commit 306fce9b5330f342b89ad5b5ddb8d62183c377ab Author: Andreas Wilms Date: Mon Sep 8 19:05:42 2025 +0200 init Update README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e2ac334 --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +.venv/ +__pycache__/ +silkmoth.egg-info/ +build/ +dist/ +site/ +reference_sets_inclusion_dependency.json +reference_sets_inclusion_dependency_reduction.json +source_sets_inclusion_dependency.json +webtable_schemas_sets_500k.json +github_webtable_schemas_sets_500k.json + +.vscode/ + +silkmoth_env/ \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..83ade5a --- /dev/null +++ b/README.md @@ -0,0 +1,152 @@ +# 🦋 LSDIPro SS2025 + +## 📄 [SilkMoth: An Efficient Method for Finding Related Sets](https://doi.org/10.14778/3115404.3115413) + +A project inspired by the SilkMoth paper, exploring efficient techniques for related set discovery. + +--- + +## 👥 Team Members +- **Andreas Wilms** +- **Sarra Daknou** +- **Amina Iqbal** +- **Jakob Berschneider** + +--- + +## 📊 Experiments & Results +➡️ [**See Experiments**](experiments/README.md) + + +--- + +## 🧪 Interactive Demo + +Follow our **step-by-step Jupyter Notebook demo** for a hands-on understanding of SilkMoth + +📓 [**Open demo_example.ipynb**](demo_example.ipynb) + +--- + +# 📘 Project Documentation + +## Table of Contents + +- [1. Large Scale Data Integration Project (LSDIPro)](#1-large-scale-data-integration-project-lsdipro) +- [2. What is SilkMoth? 🐛](#2-what-is-silkmoth) +- [3. The Problem 🧩](#3-the-problem) +- [4. SilkMoth’s Solution 🚀](#4-silkmoths-solution) +- [5. Core Pipeline Steps 🔁](#5-core-pipeline-steps) + - [5.1 Tokenization](#51-tokenization) + - [5.2 Inverted Index Construction](#52-inverted-index-construction) + - [5.3 Signature Generation](#53-signature-generation) + - [5.4 Candidate Selection](#54-candidate-selection) + - [5.5 Refinement Filters](#55-refinement-filters) + - [5.6 Verification via Maximum Matching](#56-verification-via-maximum-matching) +- [6. Modes of Operation 🧪](#6-modes-of-operation-) +- [7. Supported Similarity Functions 📐](#7-supported-similarity-functions-) +- [8. Installing from Source](#8-installing-from-source) +- [9. Experiment Results](#9-experiment-results) + +--- + +## 1. Large Scale Data Integration Project (LSDIPro) + +As part of the university project LSDIPro, our team implemented the SilkMoth paper in Python. The course focuses on large-scale data integration, where student groups reproduce and extend research prototypes. +The project emphasizes scalable algorithm design, evaluation, and handling heterogeneous data at scale. + +--- + +## 2. What is SilkMoth? + +**SilkMoth** is a system designed to efficiently discover related sets in large collections of data, even when the elements within those sets are only approximately similar. +This is especially important in **data integration**, **data cleaning**, and **information retrieval**, where messy or inconsistent data is common. + +--- + +## 3. The Problem + +Determining whether two sets are related, for example, whether two database columns should be joined, often involves comparing their elements using **similarity functions** (not just exact matches). +A powerful approach models this as a **bipartite graph** and finds the **maximum matching score** between elements. However, this method is **computationally expensive** (`O(n³)` per pair), making it impractical for large datasets. + +--- + +## 4. SilkMoth’s Solution + +SilkMoth tackles this with a three-step approach: + +1. **Signature Generation**: Creates compact signatures for each set, ensuring related sets share signature parts. +2. **Pruning**: Filters out unrelated sets early, reducing candidates. +3. **Verification**: Applies the costly matching metric only on remaining candidates, matching brute-force accuracy but faster. + +--- + +## 5. Core Pipeline Steps + +![Figure 1: SILKMOTH Framework Overview](docs/figures/Pipeline.png) + +*Figure 1. SILKMOTH pipeline framework. Source: Deng et al., "SILKMOTH: An Efficient Method for Finding Related Sets with Maximum Matching Constraints", VLDB 2017. Licensed under CC BY-NC-ND 4.0.* + +### 5.1 Tokenization + +Each element in every set is tokenized based on the selected similarity function: +- **Jaccard Similarity**: Elements are split into whitespace-delimited tokens. +- **Edit Similarity**: Elements are split into overlapping `q`-grams (e.g., 3-grams). + +### 5.2 Inverted Index Construction + +An **inverted index** is built from the reference set `R` to map each token to a list of `(set, element)` pairs in which it occurs. +This allows fast lookup of candidate sets sharing tokens with a query. + +### 5.3 Signature Generation + +A **signature** is a subset of tokens selected from each set such that: +- Any related set must share at least one signature token. +- Signature size is minimized to reduce candidate space. + +Signature selection heuristics (e.g., cost/value greedy ranking) approximate the optimal valid signature, which is NP-complete to compute exactly. + +### 5.4 Candidate Selection + +For each set `R`, retrieve from the inverted index all sets `S` sharing at least one token with `R`’s signature. These become **candidate sets** for further evaluation. + +### 5.5 Refinement Filters + +Two filters reduce false positives among candidates: +- **Check Filter**: Uses an upper bound on similarity to eliminate sets below threshold. +- **Nearest Neighbor Filter**: Approximates maximum matching score using nearest neighbor similarity for each element in `R`. + +### 5.6 Verification via Maximum Matching + +Compute **maximum weighted bipartite matching** between elements of `R` and `S` for remaining candidates using the similarity function as edge weights. +Sets meeting or exceeding threshold `δ` are considered **related**. + +--- + +## 6. Modes of Operation 🧪 + +- **Discovery Mode**: Compare all pairs of sets to find all related pairs. + *Use case:* Finding related columns in databases. + +- **Search Mode**: Given a reference set, find all related sets. + *Use case:* Schema matching or entity deduplication. + +--- + +## 7. Supported Similarity Functions 📐 + +- **Jaccard Similarity** +- **Edit Similarity** (Levenshtein-based) +- Optional minimum similarity threshold `α` on element comparisons. + +--- + +## 8. Installing from Source + +1. Run `pip install src/` to install +--- + + +## 9. Experiment Results + +[📊 See Experiments and Results](experiments/README.md) diff --git a/demo_example.ipynb b/demo_example.ipynb new file mode 100644 index 0000000..6123d0e --- /dev/null +++ b/demo_example.ipynb @@ -0,0 +1,823 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "c9f89a47", + "metadata": {}, + "source": [ + "## SilkMoth Demo" + ] + }, + { + "cell_type": "markdown", + "id": "2ca15800", + "metadata": {}, + "source": [ + "### Related Set Discovery task under Set‑Containment using Jaccard Similarity" + ] + }, + { + "cell_type": "markdown", + "id": "ea6ce5fb", + "metadata": {}, + "source": [ + "Import of all required modules:" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "id": "bdd1b92c", + "metadata": {}, + "outputs": [], + "source": [ + "import sys\n", + "sys.path.append(\"src\")\n", + "\n", + "from silkmoth.tokenizer import Tokenizer\n", + "from silkmoth.inverted_index import InvertedIndex\n", + "from silkmoth.signature_generator import SignatureGenerator\n", + "from silkmoth.candidate_selector import CandidateSelector\n", + "from silkmoth.verifier import Verifier\n", + "from silkmoth.silkmoth_engine import SilkMothEngine\n", + "\n", + "\n", + "from silkmoth.utils import jaccard_similarity, contain, edit_similarity, similar, SigType\n", + "\n", + "import matplotlib.pyplot as plt\n", + "from IPython.display import display, Markdown\n", + "\n", + "import numpy as np\n", + "import pandas as pd" + ] + }, + { + "cell_type": "markdown", + "id": "bf6bf1f5", + "metadata": {}, + "source": [ + "Define example related dataset from \"SilkMoth\" paper (reference set **R** and source sets **S**)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "id": "598a4bbf", + "metadata": {}, + "outputs": [ + { + "data": { + "text/markdown": [ + "**Reference set (R):**" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "- R[0]: “77 Mass Ave Boston MA”" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "- R[1]: “5th St 02115 Seattle WA”" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "- R[2]: “77 5th St Chicago IL”" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "**Source sets (S):**" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "- S[0]: “Mass Ave St Boston 02115 | 77 Mass 5th St Boston | 77 Mass Ave 5th 02115”" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "- S[1]: “77 Boston MA | 77 5th St Boston 02115 | 77 Mass Ave 02115 Seattle”" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "- S[2]: “77 Mass Ave 5th Boston MA | Mass Ave Chicago IL | 77 Mass Ave St”" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "- S[3]: “77 Mass Ave MA | 5th St 02115 Seattle WA | 77 5th St Boston Seattle”" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Location Dataset\n", + "reference_set = [\n", + " '77 Mass Ave Boston MA',\n", + " '5th St 02115 Seattle WA',\n", + " '77 5th St Chicago IL'\n", + "]\n", + "\n", + "# Address Dataset\n", + "source_sets = [\n", + " ['Mass Ave St Boston 02115','77 Mass 5th St Boston','77 Mass Ave 5th 02115'],\n", + " ['77 Boston MA','77 5th St Boston 02115','77 Mass Ave 02115 Seattle'],\n", + " ['77 Mass Ave 5th Boston MA','Mass Ave Chicago IL','77 Mass Ave St'],\n", + " ['77 Mass Ave MA','5th St 02115 Seattle WA','77 5th St Boston Seattle']\n", + "]\n", + "\n", + "# thresholds & q\n", + "δ = 0.7\n", + "α = 0.0\n", + "q = 3\n", + "\n", + "display(Markdown(\"**Reference set (R):**\"))\n", + "for i, r in enumerate(reference_set):\n", + " display(Markdown(f\"- R[{i}]: “{r}”\"))\n", + "display(Markdown(\"**Source sets (S):**\"))\n", + "for j, S in enumerate(source_sets):\n", + " display(Markdown(f\"- S[{j}]: “{' | '.join(S)}”\"))" + ] + }, + { + "cell_type": "markdown", + "id": "a50b350a", + "metadata": {}, + "source": [ + "### 1. Tokenization\n", + "Tokenize each element of R and each S using Jaccard Similarity (whitespace tokens)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "id": "55e7b5d0", + "metadata": {}, + "outputs": [ + { + "data": { + "text/markdown": [ + "**Tokenized Reference set (R):**" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "- Tokens of R[0]: {'Ave', 'MA', '77', 'Boston', 'Mass'}" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "- Tokens of R[1]: {'5th', 'Seattle', 'St', 'WA', '02115'}" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "- Tokens of R[2]: {'77', '5th', 'IL', 'St', 'Chicago'}" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "**Tokenized Source sets (S):**" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "- Tokens of S[0]: [{'Ave', 'Boston', 'St', 'Mass', '02115'}, {'77', 'Boston', '5th', 'St', 'Mass'}, {'Ave', '77', '5th', 'Mass', '02115'}]" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "- Tokens of S[1]: [{'Boston', 'MA', '77'}, {'77', 'Boston', '5th', 'St', '02115'}, {'Ave', '77', 'Seattle', 'Mass', '02115'}]" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "- Tokens of S[2]: [{'Ave', 'MA', '77', 'Boston', '5th', 'Mass'}, {'IL', 'Ave', 'Mass', 'Chicago'}, {'St', 'Ave', 'Mass', '77'}]" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "- Tokens of S[3]: [{'Ave', 'Mass', '77', 'MA'}, {'5th', 'Seattle', 'St', 'WA', '02115'}, {'77', 'Boston', '5th', 'Seattle', 'St'}]" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "tokenizer = Tokenizer(jaccard_similarity, q)\n", + "tokenized_R = tokenizer.tokenize(reference_set)\n", + "tokenized_S = [tokenizer.tokenize(S) for S in source_sets]\n", + "\n", + "display(Markdown(\"**Tokenized Reference set (R):**\"))\n", + "for i, toks in enumerate(tokenized_R):\n", + " display(Markdown(f\"- Tokens of R[{i}]: {toks}\"))\n", + "\n", + "display(Markdown(\"**Tokenized Source sets (S):**\"))\n", + "for i, toks in enumerate(tokenized_S):\n", + " display(Markdown(f\"- Tokens of S[{i}]: {toks}\"))" + ] + }, + { + "cell_type": "markdown", + "id": "e17b807b", + "metadata": {}, + "source": [ + "### 2. Build Inverted Index\n", + "Builds an inverted index on the tokenized source sets and shows an example lookup." + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "id": "22c7d1d6", + "metadata": {}, + "outputs": [ + { + "data": { + "text/markdown": [ + "- Index built over 4 source sets." + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "- Example: token “Mass” appears in [(0, 0), (0, 1), (0, 2), (1, 2), (2, 0), (2, 1), (2, 2), (3, 0)]" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "index = InvertedIndex(tokenized_S)\n", + "display(Markdown(f\"- Index built over {len(source_sets)} source sets.\"))\n", + "display(Markdown(f\"- Example: token “Mass” appears in {index.get_indexes('Mass')}\"))\n" + ] + }, + { + "cell_type": "markdown", + "id": "cc17daac", + "metadata": {}, + "source": [ + "### 3. Signature Generation" + ] + }, + { + "cell_type": "markdown", + "id": "1c48bac2", + "metadata": {}, + "source": [ + "Generates the weighted signature for R given δ, α (here α=0), using Jaccard Similarity." + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "id": "a36be65c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/markdown": [ + "- Selected signature tokens: **['Chicago', 'WA', 'IL', '5th']**" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "sig_gen = SignatureGenerator()\n", + "signature = sig_gen.get_signature(\n", + " tokenized_R, index,\n", + " delta=δ, alpha=α,\n", + " sig_type=SigType.WEIGHTED,\n", + " sim_fun=jaccard_similarity,\n", + " q=q\n", + ")\n", + "display(Markdown(f\"- Selected signature tokens: **{signature}**\"))" + ] + }, + { + "cell_type": "markdown", + "id": "938be3e2", + "metadata": {}, + "source": [ + "### 4. Initial Candidate Selection\n", + "\n", + "Looks up each signature token in the inverted index to form the candidate set.\n" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "id": "58017e27", + "metadata": {}, + "outputs": [ + { + "data": { + "text/markdown": [ + "- Candidate set indices: **[0, 1, 2, 3]**" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + " - S[0]: “Mass Ave St Boston 02115 | 77 Mass 5th St Boston | 77 Mass Ave 5th 02115”" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + " - S[1]: “77 Boston MA | 77 5th St Boston 02115 | 77 Mass Ave 02115 Seattle”" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + " - S[2]: “77 Mass Ave 5th Boston MA | Mass Ave Chicago IL | 77 Mass Ave St”" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + " - S[3]: “77 Mass Ave MA | 5th St 02115 Seattle WA | 77 5th St Boston Seattle”" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "cand_sel = CandidateSelector(\n", + " similarity_func=jaccard_similarity,\n", + " sim_metric=contain,\n", + " related_thresh=δ,\n", + " sim_thresh=α,\n", + " q=q\n", + ")\n", + "\n", + "initial_cands = cand_sel.get_candidates(signature, index, len(tokenized_R))\n", + "display(Markdown(f\"- Candidate set indices: **{sorted(initial_cands)}**\"))\n", + "for j in sorted(initial_cands):\n", + " display(Markdown(f\" - S[{j}]: “{' | '.join(source_sets[j])}”\"))" + ] + }, + { + "cell_type": "markdown", + "id": "d633e5f9", + "metadata": {}, + "source": [ + "### 5. Check Filter\n", + "Prunes candidates by ensuring each matched element passes the local similarity bound.\n" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "id": "9a2bfdeb", + "metadata": {}, + "outputs": [ + { + "data": { + "text/markdown": [ + "**Surviving after check filter:** **[0, 1, 3]**" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "S[0] matched:" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + " • R[2] “77 5th St Chicago IL” → sim = 0.429" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + " → Best sim: **0.429** | Matched elements: **1**" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "S[1] matched:" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + " • R[2] “77 5th St Chicago IL” → sim = 0.429" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + " → Best sim: **0.429** | Matched elements: **1**" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "S[3] matched:" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + " • R[1] “5th St 02115 Seattle WA” → sim = 1.000" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + " • R[2] “77 5th St Chicago IL” → sim = 0.429" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + " → Best sim: **1.000** | Matched elements: **2**" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "filtered_cands, match_map = cand_sel.check_filter(\n", + " tokenized_R, set(signature), initial_cands, index\n", + ")\n", + "display(Markdown(f\"**Surviving after check filter:** **{sorted(filtered_cands)}**\"))\n", + "for j in sorted(filtered_cands):\n", + " display(Markdown(f\"S[{j}] matched:\"))\n", + " for r_idx, sim in match_map[j].items():\n", + " sim_text = f\"{sim:.3f}\"\n", + " display(Markdown(f\" • R[{r_idx}] “{reference_set[r_idx]}” → sim = {sim_text}\"))\n", + " \n", + " matches = match_map.get(j, {})\n", + " if matches:\n", + " best_sim = max(matches.values())\n", + " num_matches = len(matches)\n", + " display(Markdown(f\" → Best sim: **{best_sim:.3f}** | Matched elements: **{num_matches}**\"))\n", + " else:\n", + " display(Markdown(f\"No elements passed similarity checks.\"))\n" + ] + }, + { + "cell_type": "markdown", + "id": "cc37bb7f", + "metadata": {}, + "source": [ + "### 6. Nearest‑Neighbor Filter\n", + "\n", + "Further prunes via nearest‑neighbor upper bounds on total matching score.\n" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "id": "aa9b7a63", + "metadata": {}, + "outputs": [ + { + "data": { + "text/markdown": [ + "- Surviving after NN filter: **[3]**" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + " - S[3]: “77 Mass Ave MA | 5th St 02115 Seattle WA | 77 5th St Boston Seattle”" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "nn_filtered = cand_sel.nn_filter(\n", + " tokenized_R, set(signature), filtered_cands,\n", + " index, threshold=δ, match_map=match_map\n", + ")\n", + "display(Markdown(f\"- Surviving after NN filter: **{sorted(nn_filtered)}**\"))\n", + "for j in nn_filtered:\n", + " display(Markdown(f\" - S[{j}]: “{' | '.join(source_sets[j])}”\"))\n" + ] + }, + { + "cell_type": "markdown", + "id": "8638f83a", + "metadata": {}, + "source": [ + "### 7. Verification\n", + "\n", + "Runs the bipartite max‑matching on the remaining candidates and outputs the final related sets.\n" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "id": "ebdf20fe", + "metadata": {}, + "outputs": [ + { + "data": { + "text/markdown": [ + "Final related sets (score ≥ 0.7):" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + " • S[3]: “77 Mass Ave MA | 5th St 02115 Seattle WA | 77 5th St Boston Seattle” → **0.743**" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "verifier = Verifier(δ, contain, jaccard_similarity, sim_thresh=α, reduction=False)\n", + "results = verifier.get_related_sets(tokenized_R, nn_filtered, index)\n", + "\n", + "if results:\n", + " display(Markdown(f\"Final related sets (score ≥ {δ}):\"))\n", + " for j, score in results:\n", + " display(Markdown(f\" • S[{j}]: “{' | '.join(source_sets[j])}” → **{score:.3f}**\"))\n", + "else:\n", + " display(Markdown(\"- No sets passed verification.\"))\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "silkmoth_env", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.13" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/docs/ImplementationPlan.pdf b/docs/ImplementationPlan.pdf new file mode 100644 index 0000000..913e37c Binary files /dev/null and b/docs/ImplementationPlan.pdf differ diff --git a/docs/README.md b/docs/README.md new file mode 100644 index 0000000..db36c8d --- /dev/null +++ b/docs/README.md @@ -0,0 +1,3 @@ +The initial draft of the SilkMoth system and process was created using Draw.io. Refer to the file `SilkMoth.drawio` and its exported image, `SilkMoth.png`. + +For a detailed implementation plan refer to `plan.tex` and `ImplementationPlan.pdf`. \ No newline at end of file diff --git a/docs/SilkMoth.drawio b/docs/SilkMoth.drawio new file mode 100644 index 0000000..d54bec2 --- /dev/null +++ b/docs/SilkMoth.drawio @@ -0,0 +1,406 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/SilkMoth.png b/docs/SilkMoth.png new file mode 100644 index 0000000..86d9c24 Binary files /dev/null and b/docs/SilkMoth.png differ diff --git a/docs/SilkMoth_v2.drawio b/docs/SilkMoth_v2.drawio new file mode 100644 index 0000000..de62bba --- /dev/null +++ b/docs/SilkMoth_v2.drawio @@ -0,0 +1,494 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/SilkMoth_v2.png b/docs/SilkMoth_v2.png new file mode 100644 index 0000000..45ff2d6 Binary files /dev/null and b/docs/SilkMoth_v2.png differ diff --git a/docs/figures/Pipeline.png b/docs/figures/Pipeline.png new file mode 100644 index 0000000..f3848ac Binary files /dev/null and b/docs/figures/Pipeline.png differ diff --git a/docs/plan.tex b/docs/plan.tex new file mode 100644 index 0000000..eea4fe8 --- /dev/null +++ b/docs/plan.tex @@ -0,0 +1,99 @@ +\documentclass[a4paper]{article} +\usepackage{graphicx} % Required for inserting images +\usepackage{pgfgantt} +\usepackage{hyperref} + +\title{Implementation Plan - Student Project SilkMoth} +\date{April 2025} + +\begin{document} + +\maketitle + +Figure \ref{fig:plan} shows a more detailed version of our initial project plan. Note that some tasks may take longer or could be completed earlier than this plan assumes, and we are willing to adjust the plan according to our resources. We aim to parallelize the implementation tasks during the project whenever possible. We split the project into three phases as follows. + +\begin{enumerate} + \item \textbf{(17.4 - 15.05)} - Core Pipeline + \begin{itemize} + \item Get a common understanding of the system + \item Implement the main components without major optimization + \item Prepare small data set to test correctness and larger data sets for evaluation phase + \item Goal: Runnable code for at least the base case (single search pass, similarity threshold $\alpha = 0$, similarity function $\phi = \texttt{Jac}$) + \end{itemize} + \item \textbf{(16.5 - 12.06)} - Extended Framework + \begin{itemize} + \item Improve the core pipeline + \item Refinement and optimization + \item Support for discovery mode, $\alpha \neq 0$ , $\phi = \texttt{Eds}$ and $\phi = \texttt{NEds}$ + \item Goal: Most features should be finalized and ready for expert review + \end{itemize} + \item \textbf{(13.6 - 24.07)} - Evaluation + \begin{itemize} + \item Improve the system from the feedback and finalize the last functionalities + \item Implement the applications to conduct experiments + \item Visualize experiment results + \item Write report/documentation + \item Consider bonus improvements e.g. additional data sets like GitTables\footnote{\url{https://gittables.github.io/}} or additional similarity functions like Hamming similarity\footnote{\url{https://en.wikipedia.org/wiki/Hamming_distance}} + \item Goal: Presentation and submission of the final system + \end{itemize} +\end{enumerate} + + +\begin{figure}[b!] +\begin{ganttchart}[ + vgrid, hgrid, + x unit=0.5cm, + y unit title=0.75cm, + y unit chart=0.5cm, + title height=1, + milestone left shift=.1, + milestone right shift=-.1, + group left shift=0, + group right shift=0, + group peaks tip position=0, + group peaks height=0.2, + title label font=\small, + bar label font=\small, + group label font=\small\bfseries, + milestone label font=\small\itshape, + ]{1}{14} + \gantttitle[]{Project Plan [weeks]}{14} \\ + \gantttitlelist{1,...,14}{1} \\ + + \ganttgroup{Milestone 1: Core Pipeline}{1}{4} \\ + \ganttbar{Understand SilkMoth}{1}{1} \\ + \ganttbar{System design of core pipeline}{2}{2} \\ + \ganttbar{Data collection/preparation}{2}{4} \\ + \ganttbar{Tokenizer}{3}{4} \\ + \ganttbar{Inverted Index}{3}{4} \\ + \ganttbar{Signature Generator}{3}{4} \\ + \ganttbar{Maximum Matching Verification}{3}{4} \\ + \ganttmilestone{Milestone 1 done}{4} \\ + + \ganttgroup{Milestone 2: Extended Framework}{5}{8} \\ + \ganttbar{Discovery Mode}{5}{6} \\ + \ganttbar{Check Filter}{5}{6} \\ + \ganttbar{Nearest Neighbor Filter}{6}{7} \\ + \ganttbar{Triangle Optimization}{6}{7} \\ + \ganttbar{Support for $\alpha \neq 0$}{6}{8}\\ + \ganttbar{Edit Similarity}{7}{8}\\ + \ganttbar{Prepare for Experiments}{7}{8}\\ + \ganttbar{Prepare for expert review}{8}{8} \\ + \ganttmilestone{Milestone 2 done}{8} \\ + + \ganttgroup{Milestone 3: Evaluation}{9}{14} \\ + \ganttbar{Improve system using feedback}{9}{9} \\ + \ganttbar{Experiments: Inclusion Dependency}{9}{12} \\ + \ganttbar{Experiments: String Matching}{9}{12} \\ + \ganttbar{Experiments: Schema Matching}{9}{12} \\ + \ganttbar{(Bonus)}{11}{12} \\ + \ganttbar[bar/.append style={fill=gray, solid}]{Finalize Visualization and Documentation}{12}{14} \\ + \ganttbar[bar/.append style={fill=gray, solid}]{Preparing presentation}{13}{14} \\ + \ganttmilestone{Milestone 4 done}{14} \\ + \ganttmilestone{Project done}{14} +\end{ganttchart} +\caption{Implementation Plan. First week starting from 17.04.2025.} +\label{fig:plan} +\end{figure} + +\end{document} diff --git a/docu/README.md b/docu/README.md new file mode 100644 index 0000000..90ca6b3 --- /dev/null +++ b/docu/README.md @@ -0,0 +1,8 @@ +### Generating Documentation Page + +To generate a [documentation page](https://berscjak.github.io/) from source code with mkdocs, run the following from root directory: + +``` +pip install mkdocs mkdocstrings[python] mkdocs-awesome-pages-plugin +mkdocs serve +``` \ No newline at end of file diff --git a/docu/demo_example.ipynb b/docu/demo_example.ipynb new file mode 100644 index 0000000..6123d0e --- /dev/null +++ b/docu/demo_example.ipynb @@ -0,0 +1,823 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "c9f89a47", + "metadata": {}, + "source": [ + "## SilkMoth Demo" + ] + }, + { + "cell_type": "markdown", + "id": "2ca15800", + "metadata": {}, + "source": [ + "### Related Set Discovery task under Set‑Containment using Jaccard Similarity" + ] + }, + { + "cell_type": "markdown", + "id": "ea6ce5fb", + "metadata": {}, + "source": [ + "Import of all required modules:" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "id": "bdd1b92c", + "metadata": {}, + "outputs": [], + "source": [ + "import sys\n", + "sys.path.append(\"src\")\n", + "\n", + "from silkmoth.tokenizer import Tokenizer\n", + "from silkmoth.inverted_index import InvertedIndex\n", + "from silkmoth.signature_generator import SignatureGenerator\n", + "from silkmoth.candidate_selector import CandidateSelector\n", + "from silkmoth.verifier import Verifier\n", + "from silkmoth.silkmoth_engine import SilkMothEngine\n", + "\n", + "\n", + "from silkmoth.utils import jaccard_similarity, contain, edit_similarity, similar, SigType\n", + "\n", + "import matplotlib.pyplot as plt\n", + "from IPython.display import display, Markdown\n", + "\n", + "import numpy as np\n", + "import pandas as pd" + ] + }, + { + "cell_type": "markdown", + "id": "bf6bf1f5", + "metadata": {}, + "source": [ + "Define example related dataset from \"SilkMoth\" paper (reference set **R** and source sets **S**)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "id": "598a4bbf", + "metadata": {}, + "outputs": [ + { + "data": { + "text/markdown": [ + "**Reference set (R):**" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "- R[0]: “77 Mass Ave Boston MA”" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "- R[1]: “5th St 02115 Seattle WA”" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "- R[2]: “77 5th St Chicago IL”" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "**Source sets (S):**" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "- S[0]: “Mass Ave St Boston 02115 | 77 Mass 5th St Boston | 77 Mass Ave 5th 02115”" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "- S[1]: “77 Boston MA | 77 5th St Boston 02115 | 77 Mass Ave 02115 Seattle”" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "- S[2]: “77 Mass Ave 5th Boston MA | Mass Ave Chicago IL | 77 Mass Ave St”" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "- S[3]: “77 Mass Ave MA | 5th St 02115 Seattle WA | 77 5th St Boston Seattle”" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Location Dataset\n", + "reference_set = [\n", + " '77 Mass Ave Boston MA',\n", + " '5th St 02115 Seattle WA',\n", + " '77 5th St Chicago IL'\n", + "]\n", + "\n", + "# Address Dataset\n", + "source_sets = [\n", + " ['Mass Ave St Boston 02115','77 Mass 5th St Boston','77 Mass Ave 5th 02115'],\n", + " ['77 Boston MA','77 5th St Boston 02115','77 Mass Ave 02115 Seattle'],\n", + " ['77 Mass Ave 5th Boston MA','Mass Ave Chicago IL','77 Mass Ave St'],\n", + " ['77 Mass Ave MA','5th St 02115 Seattle WA','77 5th St Boston Seattle']\n", + "]\n", + "\n", + "# thresholds & q\n", + "δ = 0.7\n", + "α = 0.0\n", + "q = 3\n", + "\n", + "display(Markdown(\"**Reference set (R):**\"))\n", + "for i, r in enumerate(reference_set):\n", + " display(Markdown(f\"- R[{i}]: “{r}”\"))\n", + "display(Markdown(\"**Source sets (S):**\"))\n", + "for j, S in enumerate(source_sets):\n", + " display(Markdown(f\"- S[{j}]: “{' | '.join(S)}”\"))" + ] + }, + { + "cell_type": "markdown", + "id": "a50b350a", + "metadata": {}, + "source": [ + "### 1. Tokenization\n", + "Tokenize each element of R and each S using Jaccard Similarity (whitespace tokens)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "id": "55e7b5d0", + "metadata": {}, + "outputs": [ + { + "data": { + "text/markdown": [ + "**Tokenized Reference set (R):**" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "- Tokens of R[0]: {'Ave', 'MA', '77', 'Boston', 'Mass'}" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "- Tokens of R[1]: {'5th', 'Seattle', 'St', 'WA', '02115'}" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "- Tokens of R[2]: {'77', '5th', 'IL', 'St', 'Chicago'}" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "**Tokenized Source sets (S):**" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "- Tokens of S[0]: [{'Ave', 'Boston', 'St', 'Mass', '02115'}, {'77', 'Boston', '5th', 'St', 'Mass'}, {'Ave', '77', '5th', 'Mass', '02115'}]" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "- Tokens of S[1]: [{'Boston', 'MA', '77'}, {'77', 'Boston', '5th', 'St', '02115'}, {'Ave', '77', 'Seattle', 'Mass', '02115'}]" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "- Tokens of S[2]: [{'Ave', 'MA', '77', 'Boston', '5th', 'Mass'}, {'IL', 'Ave', 'Mass', 'Chicago'}, {'St', 'Ave', 'Mass', '77'}]" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "- Tokens of S[3]: [{'Ave', 'Mass', '77', 'MA'}, {'5th', 'Seattle', 'St', 'WA', '02115'}, {'77', 'Boston', '5th', 'Seattle', 'St'}]" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "tokenizer = Tokenizer(jaccard_similarity, q)\n", + "tokenized_R = tokenizer.tokenize(reference_set)\n", + "tokenized_S = [tokenizer.tokenize(S) for S in source_sets]\n", + "\n", + "display(Markdown(\"**Tokenized Reference set (R):**\"))\n", + "for i, toks in enumerate(tokenized_R):\n", + " display(Markdown(f\"- Tokens of R[{i}]: {toks}\"))\n", + "\n", + "display(Markdown(\"**Tokenized Source sets (S):**\"))\n", + "for i, toks in enumerate(tokenized_S):\n", + " display(Markdown(f\"- Tokens of S[{i}]: {toks}\"))" + ] + }, + { + "cell_type": "markdown", + "id": "e17b807b", + "metadata": {}, + "source": [ + "### 2. Build Inverted Index\n", + "Builds an inverted index on the tokenized source sets and shows an example lookup." + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "id": "22c7d1d6", + "metadata": {}, + "outputs": [ + { + "data": { + "text/markdown": [ + "- Index built over 4 source sets." + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "- Example: token “Mass” appears in [(0, 0), (0, 1), (0, 2), (1, 2), (2, 0), (2, 1), (2, 2), (3, 0)]" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "index = InvertedIndex(tokenized_S)\n", + "display(Markdown(f\"- Index built over {len(source_sets)} source sets.\"))\n", + "display(Markdown(f\"- Example: token “Mass” appears in {index.get_indexes('Mass')}\"))\n" + ] + }, + { + "cell_type": "markdown", + "id": "cc17daac", + "metadata": {}, + "source": [ + "### 3. Signature Generation" + ] + }, + { + "cell_type": "markdown", + "id": "1c48bac2", + "metadata": {}, + "source": [ + "Generates the weighted signature for R given δ, α (here α=0), using Jaccard Similarity." + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "id": "a36be65c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/markdown": [ + "- Selected signature tokens: **['Chicago', 'WA', 'IL', '5th']**" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "sig_gen = SignatureGenerator()\n", + "signature = sig_gen.get_signature(\n", + " tokenized_R, index,\n", + " delta=δ, alpha=α,\n", + " sig_type=SigType.WEIGHTED,\n", + " sim_fun=jaccard_similarity,\n", + " q=q\n", + ")\n", + "display(Markdown(f\"- Selected signature tokens: **{signature}**\"))" + ] + }, + { + "cell_type": "markdown", + "id": "938be3e2", + "metadata": {}, + "source": [ + "### 4. Initial Candidate Selection\n", + "\n", + "Looks up each signature token in the inverted index to form the candidate set.\n" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "id": "58017e27", + "metadata": {}, + "outputs": [ + { + "data": { + "text/markdown": [ + "- Candidate set indices: **[0, 1, 2, 3]**" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + " - S[0]: “Mass Ave St Boston 02115 | 77 Mass 5th St Boston | 77 Mass Ave 5th 02115”" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + " - S[1]: “77 Boston MA | 77 5th St Boston 02115 | 77 Mass Ave 02115 Seattle”" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + " - S[2]: “77 Mass Ave 5th Boston MA | Mass Ave Chicago IL | 77 Mass Ave St”" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + " - S[3]: “77 Mass Ave MA | 5th St 02115 Seattle WA | 77 5th St Boston Seattle”" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "cand_sel = CandidateSelector(\n", + " similarity_func=jaccard_similarity,\n", + " sim_metric=contain,\n", + " related_thresh=δ,\n", + " sim_thresh=α,\n", + " q=q\n", + ")\n", + "\n", + "initial_cands = cand_sel.get_candidates(signature, index, len(tokenized_R))\n", + "display(Markdown(f\"- Candidate set indices: **{sorted(initial_cands)}**\"))\n", + "for j in sorted(initial_cands):\n", + " display(Markdown(f\" - S[{j}]: “{' | '.join(source_sets[j])}”\"))" + ] + }, + { + "cell_type": "markdown", + "id": "d633e5f9", + "metadata": {}, + "source": [ + "### 5. Check Filter\n", + "Prunes candidates by ensuring each matched element passes the local similarity bound.\n" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "id": "9a2bfdeb", + "metadata": {}, + "outputs": [ + { + "data": { + "text/markdown": [ + "**Surviving after check filter:** **[0, 1, 3]**" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "S[0] matched:" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + " • R[2] “77 5th St Chicago IL” → sim = 0.429" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + " → Best sim: **0.429** | Matched elements: **1**" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "S[1] matched:" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + " • R[2] “77 5th St Chicago IL” → sim = 0.429" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + " → Best sim: **0.429** | Matched elements: **1**" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + "S[3] matched:" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + " • R[1] “5th St 02115 Seattle WA” → sim = 1.000" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + " • R[2] “77 5th St Chicago IL” → sim = 0.429" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + " → Best sim: **1.000** | Matched elements: **2**" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "filtered_cands, match_map = cand_sel.check_filter(\n", + " tokenized_R, set(signature), initial_cands, index\n", + ")\n", + "display(Markdown(f\"**Surviving after check filter:** **{sorted(filtered_cands)}**\"))\n", + "for j in sorted(filtered_cands):\n", + " display(Markdown(f\"S[{j}] matched:\"))\n", + " for r_idx, sim in match_map[j].items():\n", + " sim_text = f\"{sim:.3f}\"\n", + " display(Markdown(f\" • R[{r_idx}] “{reference_set[r_idx]}” → sim = {sim_text}\"))\n", + " \n", + " matches = match_map.get(j, {})\n", + " if matches:\n", + " best_sim = max(matches.values())\n", + " num_matches = len(matches)\n", + " display(Markdown(f\" → Best sim: **{best_sim:.3f}** | Matched elements: **{num_matches}**\"))\n", + " else:\n", + " display(Markdown(f\"No elements passed similarity checks.\"))\n" + ] + }, + { + "cell_type": "markdown", + "id": "cc37bb7f", + "metadata": {}, + "source": [ + "### 6. Nearest‑Neighbor Filter\n", + "\n", + "Further prunes via nearest‑neighbor upper bounds on total matching score.\n" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "id": "aa9b7a63", + "metadata": {}, + "outputs": [ + { + "data": { + "text/markdown": [ + "- Surviving after NN filter: **[3]**" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + " - S[3]: “77 Mass Ave MA | 5th St 02115 Seattle WA | 77 5th St Boston Seattle”" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "nn_filtered = cand_sel.nn_filter(\n", + " tokenized_R, set(signature), filtered_cands,\n", + " index, threshold=δ, match_map=match_map\n", + ")\n", + "display(Markdown(f\"- Surviving after NN filter: **{sorted(nn_filtered)}**\"))\n", + "for j in nn_filtered:\n", + " display(Markdown(f\" - S[{j}]: “{' | '.join(source_sets[j])}”\"))\n" + ] + }, + { + "cell_type": "markdown", + "id": "8638f83a", + "metadata": {}, + "source": [ + "### 7. Verification\n", + "\n", + "Runs the bipartite max‑matching on the remaining candidates and outputs the final related sets.\n" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "id": "ebdf20fe", + "metadata": {}, + "outputs": [ + { + "data": { + "text/markdown": [ + "Final related sets (score ≥ 0.7):" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/markdown": [ + " • S[3]: “77 Mass Ave MA | 5th St 02115 Seattle WA | 77 5th St Boston Seattle” → **0.743**" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "verifier = Verifier(δ, contain, jaccard_similarity, sim_thresh=α, reduction=False)\n", + "results = verifier.get_related_sets(tokenized_R, nn_filtered, index)\n", + "\n", + "if results:\n", + " display(Markdown(f\"Final related sets (score ≥ {δ}):\"))\n", + " for j, score in results:\n", + " display(Markdown(f\" • S[{j}]: “{' | '.join(source_sets[j])}” → **{score:.3f}**\"))\n", + "else:\n", + " display(Markdown(\"- No sets passed verification.\"))\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "silkmoth_env", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.13" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/docu/experiments/README.md b/docu/experiments/README.md new file mode 100644 index 0000000..910c18c --- /dev/null +++ b/docu/experiments/README.md @@ -0,0 +1,155 @@ +### 🧪 Running the Experiments + +This project includes multiple experiments to evaluate the performance and accuracy of our Python implementation of **SilkMoth**. + +--- + +#### 📊 1. Experiment Types + +You can replicate and customize the following types of experiments using different configurations (e.g., filters, signature strategies, reduction techniques): + +- **String Matching (DBLP Publication Titles)** +- **Schema Matching (WebTables)** +- **Inclusion Dependency Discovery (WebTable Columns)** + +Exact descriptions can be found in the official paper. + +--- + +#### 📦 2. WebSchema Inclusion Dependency Setup + +To run the **WebSchema + Inclusion Dependency** experiments: + +1. Download the pre-extracted dataset from + [📥 this link](https://tubcloud.tu-berlin.de/s/D4ngEfdn3cJ3pxF). +2. Place the `.json` files in the `data/webtables/` directory + *(create the folder if it does not exist)*. + +--- + +#### 🚀 3. Running the Experiments + +To execute the core experiments from the paper: + +```bash +python run.py +``` + +### 📈 4. Results Overview + +We compared our results with those presented in the original SilkMoth paper. +Although exact reproduction is not possible due to language differences (Python vs C++) and dataset variations, overall **performance trends align well**. + +All the results can be found in the folder `results`. + +The **left** diagrams are from the paper and the **right** are ours. + +> 💡 *Recent performance enhancements leverage `scipy`’s C-accelerated matching, replacing the original `networkx`-based approach. +> Unless otherwise specified, the diagrams shown are generated using the `networkx` implementation.* + + +--- + +### 🔍 Inclusion Dependency + +> **Goal**: Check if each reference set is contained within source sets. + +**Filter Comparison** +

+ Our Result + Original Result +

+ +**Signature Comparison** +

+ Our Result + Original Result +

+ +**Reduction Comparison** +

+ Our Result + Original Result +

+ +**Scalability** +

+ Our Result + Original Result +

+ +--- + +### 🔍 Schema Matching (WebTables) + +> **Goal**: Detect related set pairs within a single source set. + +**Filter Comparison** +

+ Our Result + Original Result +

+ +**Signature Comparison** +

+ Our Result + Original Result +

+ +**Scalability** +

+ Our Result + Original Result +

+ +--- + +### 🔍 String Matching (DBLP Publication Titles) +>**Goal:** Detect related titles within the dataset using the extended SilkMoth pipeline +based on **edit similarity** and **q-gram** tokenization. +> SciPy was used here. + +**Filter Comparison** +

+ Our Result + Original Result +

+ +**Signature Comparison** +

+ Our Result + Original Result +

+ +**Scalability** +

+ Our Result + Original Result +

+--- + +### 🔍 Additional: Inclusion Dependency SilkMoth Filter compared with no SilkMoth + +> In this analysis, we focus exclusively on SilkMoth. But how does it compare to a +> brute-force approach that skips the SilkMoth pipeline entirely? The graph below +> shows the Filter run alongside the brute-force bipartite matching method without any +> optimization pipeline. The results clearly demonstrate a dramatic improvement +> in runtime efficiency when using SilkMoth. + + +WebTables Result + + +--- + +### 🔍 Additional: Schema Matching with GitHub WebTables + +> Similar to Schema Matching, this experiment uses a GitHub WebTable as a fixed reference set and matches it against other sets. The goal is to evaluate SilkMoth’s performance across different domains. +**Left:** Matching with one reference set. +**Right:** Matching with WebTable Corpus and GitHub WebTable datasets. +The results show no significant difference, indicating consistent behavior across varying datasets. + +

+ WebTables Result + GitHub Table Result +

diff --git a/docu/experiments/results/inclusion_dependency/inclusion_dependency_filter_combined_raw_experiment_α=0.5.png b/docu/experiments/results/inclusion_dependency/inclusion_dependency_filter_combined_raw_experiment_α=0.5.png new file mode 100644 index 0000000..86707ca Binary files /dev/null and b/docu/experiments/results/inclusion_dependency/inclusion_dependency_filter_combined_raw_experiment_α=0.5.png differ diff --git a/docu/experiments/results/inclusion_dependency/inclusion_dependency_filter_experiment_α=0.5.png b/docu/experiments/results/inclusion_dependency/inclusion_dependency_filter_experiment_α=0.5.png new file mode 100644 index 0000000..8694ae9 Binary files /dev/null and b/docu/experiments/results/inclusion_dependency/inclusion_dependency_filter_experiment_α=0.5.png differ diff --git a/docu/experiments/results/inclusion_dependency/inclusion_dependency_reduction_experiment_α=0.0.png b/docu/experiments/results/inclusion_dependency/inclusion_dependency_reduction_experiment_α=0.0.png new file mode 100644 index 0000000..2388d85 Binary files /dev/null and b/docu/experiments/results/inclusion_dependency/inclusion_dependency_reduction_experiment_α=0.0.png differ diff --git a/docu/experiments/results/inclusion_dependency/inclusion_dependency_scalability_experiment_α=0.5.png b/docu/experiments/results/inclusion_dependency/inclusion_dependency_scalability_experiment_α=0.5.png new file mode 100644 index 0000000..3e53624 Binary files /dev/null and b/docu/experiments/results/inclusion_dependency/inclusion_dependency_scalability_experiment_α=0.5.png differ diff --git a/docu/experiments/results/inclusion_dependency/inclusion_dependency_sig_experiment_α=0.5.png b/docu/experiments/results/inclusion_dependency/inclusion_dependency_sig_experiment_α=0.5.png new file mode 100644 index 0000000..852e785 Binary files /dev/null and b/docu/experiments/results/inclusion_dependency/inclusion_dependency_sig_experiment_α=0.5.png differ diff --git a/docu/experiments/results/plot.py b/docu/experiments/results/plot.py new file mode 100644 index 0000000..5a4c0e6 --- /dev/null +++ b/docu/experiments/results/plot.py @@ -0,0 +1,64 @@ +from experiments.utils import plot_elapsed_times +import csv + +import csv + +labels = [] +elapsed_times = [] + +def read_csv_add_data(filename, labels, elapsed_times): + with open(filename, newline='') as csvfile: + reader = csv.reader(csvfile) + next(reader) # skip header + times = [] + current_label = None + for row in reader: + sim_thresh = float(row[0]) + label = row[4] + elapsed = float(row[5]) + + if sim_thresh == 0.5: + if current_label != label: + # New label group started + if times: + # Save times of previous label if not empty + elapsed_times.append(times) + times = [elapsed] + current_label = label + else: + times.append(elapsed) + + # When 4 times collected, append and reset + if len(times) == 4: + elapsed_times.append(times) + times = [] + current_label = None + + if label not in labels: + labels.append(label) + + # In case last label times were not appended + if times: + elapsed_times.append(times) + +# Read first CSV +read_csv_add_data('inclusion_dependency/raw_matching_experiment_results.csv', labels, elapsed_times) + +# Read second CSV +read_csv_add_data('inclusion_dependency/inclusion_dependency_filter_experiment_results.csv', labels, elapsed_times) + +print("Labels:", labels) +print("Elapsed Times:", elapsed_times) + +# Then plot +file_name_prefix = "inclusion_dependency_filter_combined_raw" +folder_path = "" + +_ = plot_elapsed_times( + related_thresholds=[0.7, 0.75, 0.8, 0.85], + elapsed_times_list=elapsed_times, + fig_text=f"{file_name_prefix} (α = 0.5)", + legend_labels=labels, + file_name=f"{folder_path}{file_name_prefix}_experiment_α=0.5.png" +) + diff --git a/docu/experiments/results/schema_matching/github_webtable_schema_matching_experiment_α=0.5.png b/docu/experiments/results/schema_matching/github_webtable_schema_matching_experiment_α=0.5.png new file mode 100644 index 0000000..feb1094 Binary files /dev/null and b/docu/experiments/results/schema_matching/github_webtable_schema_matching_experiment_α=0.5.png differ diff --git a/docu/experiments/results/schema_matching/schema_matching_filter_experiment_α=0.5.png b/docu/experiments/results/schema_matching/schema_matching_filter_experiment_α=0.5.png new file mode 100644 index 0000000..7f41b74 Binary files /dev/null and b/docu/experiments/results/schema_matching/schema_matching_filter_experiment_α=0.5.png differ diff --git a/docu/experiments/results/schema_matching/schema_matching_filter_experiment_α=0.png b/docu/experiments/results/schema_matching/schema_matching_filter_experiment_α=0.png new file mode 100644 index 0000000..72e040b Binary files /dev/null and b/docu/experiments/results/schema_matching/schema_matching_filter_experiment_α=0.png differ diff --git a/docu/experiments/results/schema_matching/schema_matching_scalability_experiment_α=0.0.png b/docu/experiments/results/schema_matching/schema_matching_scalability_experiment_α=0.0.png new file mode 100644 index 0000000..4711282 Binary files /dev/null and b/docu/experiments/results/schema_matching/schema_matching_scalability_experiment_α=0.0.png differ diff --git a/docu/experiments/results/schema_matching/schema_matching_sig_experiment_α=0.0.png b/docu/experiments/results/schema_matching/schema_matching_sig_experiment_α=0.0.png new file mode 100644 index 0000000..c34ac81 Binary files /dev/null and b/docu/experiments/results/schema_matching/schema_matching_sig_experiment_α=0.0.png differ diff --git a/docu/experiments/results/string_matching/10k-set-size/string_matching_filter_experiment_α=0.8.png b/docu/experiments/results/string_matching/10k-set-size/string_matching_filter_experiment_α=0.8.png new file mode 100644 index 0000000..6f851a9 Binary files /dev/null and b/docu/experiments/results/string_matching/10k-set-size/string_matching_filter_experiment_α=0.8.png differ diff --git a/docu/experiments/results/string_matching/10k-set-size/string_matching_sig_experiment_α=0.8.png b/docu/experiments/results/string_matching/10k-set-size/string_matching_sig_experiment_α=0.8.png new file mode 100644 index 0000000..d54c2e1 Binary files /dev/null and b/docu/experiments/results/string_matching/10k-set-size/string_matching_sig_experiment_α=0.8.png differ diff --git a/docu/experiments/results/string_matching/string_matching_scalability_experiment_α=0.8.png b/docu/experiments/results/string_matching/string_matching_scalability_experiment_α=0.8.png new file mode 100644 index 0000000..a5ffe6e Binary files /dev/null and b/docu/experiments/results/string_matching/string_matching_scalability_experiment_α=0.8.png differ diff --git a/docu/experiments/silkmoth_results/inclusion_dep_filter.png b/docu/experiments/silkmoth_results/inclusion_dep_filter.png new file mode 100644 index 0000000..c1641aa Binary files /dev/null and b/docu/experiments/silkmoth_results/inclusion_dep_filter.png differ diff --git a/docu/experiments/silkmoth_results/inclusion_dep_red.png b/docu/experiments/silkmoth_results/inclusion_dep_red.png new file mode 100644 index 0000000..8263a80 Binary files /dev/null and b/docu/experiments/silkmoth_results/inclusion_dep_red.png differ diff --git a/docu/experiments/silkmoth_results/inclusion_dep_scal.png b/docu/experiments/silkmoth_results/inclusion_dep_scal.png new file mode 100644 index 0000000..88af998 Binary files /dev/null and b/docu/experiments/silkmoth_results/inclusion_dep_scal.png differ diff --git a/docu/experiments/silkmoth_results/inclusion_dep_sig.png b/docu/experiments/silkmoth_results/inclusion_dep_sig.png new file mode 100644 index 0000000..064f4a1 Binary files /dev/null and b/docu/experiments/silkmoth_results/inclusion_dep_sig.png differ diff --git a/docu/experiments/silkmoth_results/schema_matching_filter.png b/docu/experiments/silkmoth_results/schema_matching_filter.png new file mode 100644 index 0000000..05b62b2 Binary files /dev/null and b/docu/experiments/silkmoth_results/schema_matching_filter.png differ diff --git a/docu/experiments/silkmoth_results/schema_matching_scal.png b/docu/experiments/silkmoth_results/schema_matching_scal.png new file mode 100644 index 0000000..2b1155a Binary files /dev/null and b/docu/experiments/silkmoth_results/schema_matching_scal.png differ diff --git a/docu/experiments/silkmoth_results/schema_matching_sig.png b/docu/experiments/silkmoth_results/schema_matching_sig.png new file mode 100644 index 0000000..edb0a52 Binary files /dev/null and b/docu/experiments/silkmoth_results/schema_matching_sig.png differ diff --git a/docu/experiments/silkmoth_results/string_matching_filter.png b/docu/experiments/silkmoth_results/string_matching_filter.png new file mode 100644 index 0000000..df86363 Binary files /dev/null and b/docu/experiments/silkmoth_results/string_matching_filter.png differ diff --git a/docu/experiments/silkmoth_results/string_matching_scal.png b/docu/experiments/silkmoth_results/string_matching_scal.png new file mode 100644 index 0000000..66202ce Binary files /dev/null and b/docu/experiments/silkmoth_results/string_matching_scal.png differ diff --git a/docu/experiments/silkmoth_results/string_matching_sig.png b/docu/experiments/silkmoth_results/string_matching_sig.png new file mode 100644 index 0000000..61133c9 Binary files /dev/null and b/docu/experiments/silkmoth_results/string_matching_sig.png differ diff --git a/docu/figures/InvertedIndex.png b/docu/figures/InvertedIndex.png new file mode 100644 index 0000000..c2b4ffe Binary files /dev/null and b/docu/figures/InvertedIndex.png differ diff --git a/docu/figures/Pipeline.png b/docu/figures/Pipeline.png new file mode 100644 index 0000000..f3848ac Binary files /dev/null and b/docu/figures/Pipeline.png differ diff --git a/docu/index.md b/docu/index.md new file mode 100644 index 0000000..7ef43a4 --- /dev/null +++ b/docu/index.md @@ -0,0 +1,151 @@ +# 🦋 LSDIPro SS2025 + +## 📄 [SilkMoth: An Efficient Method for Finding Related Sets](https://doi.org/10.14778/3115404.3115413) + +A project inspired by the SilkMoth paper, exploring efficient techniques for related set discovery. + +--- + +## 👥 Team Members +- **Andreas Wilms** +- **Sarra Daknou** +- **Amina Iqbal** +- **Jakob Berschneider** + +--- + +## 📊 Experiments & Results +➡️ [**See Experiments**](experiments/README.md) + +--- + +## 🧪 Interactive Demo + +Follow our **step-by-step Jupyter Notebook demo** for a hands-on understanding of SilkMoth + +📓 [**Open demo_example.ipynb**](demo_example.ipynb) + +--- + +## Table of Contents + +- [1. Large Scale Data Integration Project (LSDIPro)](#1-large-scale-data-integration-project-lsdipro) +- [2. What is SilkMoth? 🐛](#2-what-is-silkmoth) +- [3. The Problem 🧩](#3-the-problem) +- [4. SilkMoth’s Solution 🚀](#4-silkmoths-solution) +- [5. Core Pipeline Steps 🔁](#5-core-pipeline-steps) + - [5.1 Tokenization](#51-tokenization) + - [5.2 Inverted Index Construction](#52-inverted-index-construction) + - [5.3 Signature Generation](#53-signature-generation) + - [5.4 Candidate Selection](#54-candidate-selection) + - [5.5 Refinement Filters](#55-refinement-filters) + - [5.6 Verification via Maximum Matching](#56-verification-via-maximum-matching) +- [6. Modes of Operation 🧪](#6-modes-of-operation-) +- [7. Supported Similarity Functions 📐](#7-supported-similarity-functions-) +- [8. Installing from Source](#8-installing-from-source) +- [9. Experiment Results](#9-experiment-results) + +--- + +## 1. Large Scale Data Integration Project (LSDIPro) + +As part of the university project LSDIPro, our team implemented the SilkMoth paper in Python. +The course focuses on large-scale data integration, where student groups reproduce and extend research prototypes. +The project emphasizes scalable algorithm design, evaluation, and handling heterogeneous data at scale. + +--- + +## 2. What is SilkMoth? + +**SilkMoth** is a system designed to efficiently discover related sets in large collections of data, even when the elements within those sets are only approximately similar. +This is especially important in **data integration**, **data cleaning**, and **information retrieval**, where messy or inconsistent data is common. + +--- + +## 3. The Problem + +Determining whether two sets are related, for example, whether two database columns should be joined, often involves comparing their elements using **similarity functions** (not just exact matches). +A powerful approach models this as a **bipartite graph** and finds the **maximum matching score** between elements. However, this method is **computationally expensive** (`O(n³)` per pair), making it impractical for large datasets. + +--- + +## 4. SilkMoth’s Solution + +SilkMoth tackles this with a three-step approach: + +1. **Signature Generation**: Creates compact signatures for each set, ensuring related sets share signature parts. +2. **Pruning**: Filters out unrelated sets early, reducing candidates. +3. **Verification**: Applies the costly matching metric only on remaining candidates, matching brute-force accuracy but faster. + +--- + +## 5. Core Pipeline Steps + +![Figure 1: SILKMOTH Framework Overview](figures/Pipeline.png) + +*Figure 1. SILKMOTH pipeline framework. Source: Deng et al., "SILKMOTH: An Efficient Method for Finding Related Sets with Maximum Matching Constraints", VLDB 2017. Licensed under CC BY-NC-ND 4.0.* + +### [5.1 Tokenization](pages/tokenizer.md) + +Each element in every set is tokenized based on the selected similarity function: +- **Jaccard Similarity**: Elements are split into whitespace-delimited tokens. +- **Edit Similarity**: Elements are split into overlapping `q`-grams (e.g., 3-grams). + +### [5.2 Inverted Index Construction](pages/inverted_index.md) + +An **inverted index** is built from the reference set `R` to map each token to a list of `(set, element)` pairs in which it occurs. +This allows fast lookup of candidate sets sharing tokens with a query. + +### [5.3 Signature Generation](pages/signature_generator.md) + +A **signature** is a subset of tokens selected from each set such that: +- Any related set must share at least one signature token. +- Signature size is minimized to reduce candidate space. + +Signature selection heuristics (e.g., cost/value greedy ranking) approximate the optimal valid signature, which is NP-complete to compute exactly. + +### [5.4 Candidate Selection](pages/candidate_selector.md) + +For each set `R`, retrieve from the inverted index all sets `S` sharing at least one token with `R`’s signature. These become **candidate sets** for further evaluation. + +### [5.5 Refinement Filters](pages/candidate_selector.md) + +Two filters reduce false positives among candidates: +- **Check Filter**: Uses an upper bound on similarity to eliminate sets below threshold. +- **Nearest Neighbor Filter**: Approximates maximum matching score using nearest neighbor similarity for each element in `R`. + +### [5.6 Verification via Maximum Matching](pages/verifier.md) + +Compute **maximum weighted bipartite matching** between elements of `R` and `S` for remaining candidates using the similarity function as edge weights. +Sets meeting or exceeding threshold `δ` are considered **related**. + +--- + +## 6. Modes of Operation 🧪 + +- **Discovery Mode**: Compare all pairs of sets to find all related pairs. + *Use case:* Finding related columns in databases. + +- **Search Mode**: Given a reference set, find all related sets. + *Use case:* Schema matching or entity deduplication. + +--- + +## 7. Supported Similarity Functions 📐 + +- **Jaccard Similarity** +- **Edit Similarity** (Levenshtein-based) +- Optional minimum similarity threshold `α` on element comparisons. + +--- + +## 8. Installing from Source + +1. Run `pip install src/` to install + +--- + + +## 9. Experiment Results + +[📊 See Experiments and Results](experiments/README.md) diff --git a/docu/pages/candidate_selector.md b/docu/pages/candidate_selector.md new file mode 100644 index 0000000..8dd25e6 --- /dev/null +++ b/docu/pages/candidate_selector.md @@ -0,0 +1,4 @@ +::: silkmoth.candidate_selector + rendering: + show_signature: true + show_source: true diff --git a/docu/pages/inverted_index.md b/docu/pages/inverted_index.md new file mode 100644 index 0000000..db9908d --- /dev/null +++ b/docu/pages/inverted_index.md @@ -0,0 +1,4 @@ +::: silkmoth.inverted_index + rendering: + show_signature: true + show_source: true diff --git a/docu/pages/signature_generator.md b/docu/pages/signature_generator.md new file mode 100644 index 0000000..2ab7c6a --- /dev/null +++ b/docu/pages/signature_generator.md @@ -0,0 +1,4 @@ +::: silkmoth.signature_generator + rendering: + show_signature: true + show_source: true diff --git a/docu/pages/silkmoth_engine.md b/docu/pages/silkmoth_engine.md new file mode 100644 index 0000000..e01b7bb --- /dev/null +++ b/docu/pages/silkmoth_engine.md @@ -0,0 +1,4 @@ +::: silkmoth.silkmoth_engine + rendering: + show_signature: true + show_source: true diff --git a/docu/pages/tokenizer.md b/docu/pages/tokenizer.md new file mode 100644 index 0000000..fa283d2 --- /dev/null +++ b/docu/pages/tokenizer.md @@ -0,0 +1,4 @@ +::: silkmoth.tokenizer + rendering: + show_signature: true + show_source: true diff --git a/docu/pages/utils.md b/docu/pages/utils.md new file mode 100644 index 0000000..f9105f1 --- /dev/null +++ b/docu/pages/utils.md @@ -0,0 +1,4 @@ +::: silkmoth.utils + rendering: + show_signature: true + show_source: true diff --git a/docu/pages/verifier.md b/docu/pages/verifier.md new file mode 100644 index 0000000..0d2cc90 --- /dev/null +++ b/docu/pages/verifier.md @@ -0,0 +1,4 @@ +::: silkmoth.verifier + rendering: + show_signature: true + show_source: true diff --git a/docu/write_modules.py b/docu/write_modules.py new file mode 100644 index 0000000..016e73a --- /dev/null +++ b/docu/write_modules.py @@ -0,0 +1,20 @@ +import glob, os + +MODULES = glob.glob("src/silkmoth/*.py") +OUT_DIR = "docu/pages" + +os.makedirs(OUT_DIR, exist_ok=True) + +for path in MODULES: + name = os.path.splitext(os.path.basename(path))[0] + if name == "__init__": + continue + + doc_path = os.path.join(OUT_DIR, f"{name}.md") + with open(doc_path, "w") as f: + f.write("::: silkmoth." + name + "\n") + f.write(" rendering:\n") + f.write(" show_signature: true\n") + f.write(" show_source: true\n") + + diff --git a/experiments/README.md b/experiments/README.md new file mode 100644 index 0000000..75a7089 --- /dev/null +++ b/experiments/README.md @@ -0,0 +1,155 @@ +### 🧪 Running the Experiments + +This project includes multiple experiments to evaluate the performance and accuracy of our Python implementation of **SilkMoth**. + +--- + +#### 📊 1. Experiment Types + +You can replicate and customize the following types of experiments using different configurations (e.g., filters, signature strategies, reduction techniques): + +- **String Matching (DBLP Publication Titles)** +- **Schema Matching (WebTables)** +- **Inclusion Dependency Discovery (WebTable Columns)** + +Exact descriptions can be found in the official paper. + +--- + +#### 📦 2. WebSchema Inclusion Dependency Setup + +To run the **WebSchema + Inclusion Dependency** experiments: + +1. Download the pre-extracted dataset from + [📥 this link](https://tubcloud.tu-berlin.de/s/D4ngEfdn3cJ3pxF). +2. Place the `.json` files in the `data/webtables/` directory + *(create the folder if it does not exist)*. + +--- + +#### 🚀 3. Running the Experiments + +To execute the core experiments from the paper: + +```bash +python run.py +``` + +### 📈 4. Results Overview + +We compared our results with those presented in the original SilkMoth paper. +Although exact reproduction is not possible due to language differences (Python vs C++) and dataset variations, overall **performance trends align well**. + +All the results can be found in the folder `results`. + +The **left** diagrams are from the paper and the **right** are ours. + +> 💡 *Recent performance enhancements leverage `scipy`’s C-accelerated matching, replacing the original `networkx`-based approach. +> Unless otherwise specified, the diagrams shown are generated using the `networkx` implementation.* + + +--- + +### 🔍 Inclusion Dependency + +> **Goal**: Check if each reference set is contained within source sets. + +**Filter Comparison** +

+ Our Result + Original Result +

+ +**Signature Comparison** +

+ Our Result + Original Result +

+ +**Reduction Comparison** +

+ Our Result + Original Result +

+ +**Scalability** +

+ Our Result + Original Result +

+ +--- + +### 🔍 Schema Matching (WebTables) + +> **Goal**: Detect related set pairs within a single source set. + +**Filter Comparison** +

+ Our Result + Original Result +

+ +**Signature Comparison** +

+ Our Result + Original Result +

+ +**Scalability** +

+ Our Result + Original Result +

+ +--- + +### 🔍 String Matching (DBLP Publication Titles) +>**Goal:** Detect related titles within the dataset using the extended SilkMoth pipeline +based on **edit similarity** and **q-gram** tokenization. +> SciPy was used here. + +**Filter Comparison** +

+ Our Result + Original Result +

+ +**Signature Comparison** +

+ Our Result + Original Result +

+ +**Scalability** +

+ Our Result + Original Result +

+--- + +### 🔍 Additional: Inclusion Dependency SilkMoth Filter compared with no SilkMoth + +> In this analysis, we focus exclusively on SilkMoth. But how does it compare to a +> brute-force approach that skips the SilkMoth pipeline entirely? The graph below +> shows the Filter run alongside the brute-force bipartite matching method without any +> optimization pipeline. The results clearly demonstrate a dramatic improvement +> in runtime efficiency when using SilkMoth. + + +WebTables Result + + +--- + +### 🔍 Additional: Schema Matching with GitHub WebTables + +> Similar to Schema Matching, this experiment uses a GitHub WebTable as a fixed reference set and matches it against other sets. The goal is to evaluate SilkMoth’s performance across different domains. +**Left:** Matching with one reference set. +**Right:** Matching with WebTable Corpus and GitHub WebTable datasets. +The results show no significant difference, indicating consistent behavior across varying datasets. + +

+ WebTables Result + GitHub Table Result +

diff --git a/experiments/data/__init__.py b/experiments/data/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/experiments/data/dblp/DBLP_100k.csv b/experiments/data/dblp/DBLP_100k.csv new file mode 100644 index 0000000..1f970f8 --- /dev/null +++ b/experiments/data/dblp/DBLP_100k.csv @@ -0,0 +1,132466 @@ +author,title,year,volume,journal,number,ee,url +Hans Ulrich Simon,Pattern Matching in Trees and Nets.,1983,20,Acta Inf.,,db/journals/acta/acta20.html#Simon83,https://doi.org/10.1007/BF01257084 +Nathan Goodman,NP-complete Problems Simplified on Tree Schemas.,1983,20,Acta Inf.,,db/journals/acta/acta20.html#GoodmanS83,https://doi.org/10.1007/BF00289414 +Norbert Blum,On the Power of Chain Rules in Context Free Grammars.,1982,17,Acta Inf.,,db/journals/acta/acta17.html#Blum82,https://doi.org/10.1007/BF00264161 +Juha Honkala,A characterization of rational D0L power series.,2011,48,Acta Inf.,1,db/journals/acta/acta48.html#Honkala11,https://doi.org/10.1007/s00236-010-0128-1 +Chua-Huang Huang,The Derivation of Systolic Implementations of Programs.,1987,24,Acta Inf.,6,db/journals/acta/acta24.html#HuangL87,https://doi.org/10.1007/BF00282618 +Alain Finkel,Fifo Nets Without Order Deadlock.,1988,25,Acta Inf.,1,db/journals/acta/acta25.html#FinkelC87,https://doi.org/10.1007/BF00268843 +Joachim Biskup,On the Complementation Rule for Multivalued Dependencies in Database Relations.,1978,10,Acta Inf.,,db/journals/acta/acta10.html#Biskup78,https://doi.org/10.1007/BF00264322 +Symeon Bozapalidis,Equational weighted tree transformations.,2012,49,Acta Inf.,1,db/journals/acta/acta49.html#BozapalidisFR12,https://doi.org/10.1007/s00236-011-0148-5 +Victor Khomenko,Merged processes: a new condensed representation of Petri net behaviour.,2006,43,Acta Inf.,5,db/journals/acta/acta43.html#KhomenkoKKV06,https://doi.org/10.1007/s00236-006-0023-y +Wim H. Hesselink,Verifying a simplification of mutual exclusion by Lycklama-Hadzilacos.,2013,50,Acta Inf.,3,db/journals/acta/acta50.html#Hesselink13,https://doi.org/10.1007/s00236-013-0178-2 +Christian Ronse,A Three-Stage Construction for Multiconnection Networks.,1983,20,Acta Inf.,,db/journals/acta/acta20.html#Ronse83,https://doi.org/10.1007/BF00289416 +Carol Critchlow,The Expressive Power of Delay Operators in SCCS.,1991,28,Acta Inf.,5,db/journals/acta/acta28.html#CritchlowP91,https://doi.org/10.1007/BF01178582 +Robin Milner,Calculi for Interaction.,1996,33,Acta Inf.,8,db/journals/acta/acta33.html#Milner96,https://doi.org/10.1007/BF03036472 +John Darlington,A Synthesis of Several Sorting Algorithms.,1978,11,Acta Inf.,,db/journals/acta/acta11.html#Darlington78,https://doi.org/10.1007/BF00264597 +Maria Calzarossa,A Workload Model Representative of Static and Dynamic Characteristics.,1986,23,Acta Inf.,3,db/journals/acta/acta23.html#CalzarossaIS86,https://doi.org/10.1007/BF00289113 +Walter Vogler,Trace- and failure-based semantics for responsiveness.,2014,51,Acta Inf.,8,db/journals/acta/acta51.html#VoglerS014,https://doi.org/10.1007/s00236-014-0205-y +Luc Devroye,Branching Processes in the Analysis of the Heights of Trees.,1987,24,Acta Inf.,3,db/journals/acta/acta24.html#Devroye87,https://doi.org/10.1007/BF00265991 +T. C. Hu,Least Upper Bound on the Cost of Optimum Binary Search Trees.,1972,1,Acta Inf.,,db/journals/acta/acta1.html#HuT72,https://doi.org/10.1007/BF00289510 +William R. Franta,The Mathematical Analysis of the Computer System Modeled as a Two Stage Cyclic Queue.,1976,6,Acta Inf.,,db/journals/acta/acta6.html#Franta76,https://doi.org/10.1007/BF00268500 +Ekkart Kindler,Invariants and Substitutions,1955,32,Acta Inf.,4,db/journals/acta/acta32.html#Kindler95,https://doi.org/10.1007/BF01178381 +Demetres D. Kouvatsos,Maximum Entropy and the G/G/1/N Queue.,1986,23,Acta Inf.,5,db/journals/acta/acta23.html#Kouvatsos86,https://doi.org/10.1007/BF00288469 +Roland Meyer,A theory of structural stationarity in the pi -Calculus.,2009,46,Acta Inf.,2,db/journals/acta/acta46.html#Meyer09,https://doi.org/10.1007/s00236-009-0091-x +Stefan Reisch,Hex ist PSPACE-vollständig.,1981,15,Acta Inf.,,db/journals/acta/acta15.html#Reisch81,https://doi.org/10.1007/BF00288964 +Erzsébet Csuhaj-Varjú,Evolutionary Systems: A Language Generating Device Inspired by Evolving Communities of Cells.,2000,36,Acta Inf.,11,db/journals/acta/acta36.html#Csuhaj-VarjuM00,https://doi.org/10.1007/s002360050178 +Lila Kari,Disjunctivity and other properties of sets of pseudo-bordered words.,2017,54,Acta Inf.,4,db/journals/acta/acta54.html#KariK17,https://doi.org/10.1007/s00236-016-0258-1 +Ryszard Janicki,Relational structures model of concurrency.,2008,45,Acta Inf.,4,db/journals/acta/acta45.html#Janicki08,https://doi.org/10.1007/s00236-008-0071-6 +Bruce Russell,On an Equivalence between Continuation and Stack Semantics.,1977,8,Acta Inf.,,db/journals/acta/acta8.html#Russell77,https://doi.org/10.1007/BF00289244 +Andrzej Ehrenfeucht,Nonterminals Versus Homomorphisms in Defining Languages for Some Classes of Rewriting Systems.,1974,3,Acta Inf.,,db/journals/acta/acta3.html#EhrenfeuchtR74,https://doi.org/10.1007/BF00288638 +Rainer Kemp,A Note on the Density of Inherently Ambiguous Context-free Languages.,1980,14,Acta Inf.,,db/journals/acta/acta14.html#Kemp80,https://doi.org/10.1007/BF00264258 +Yijie Han,Time Lower Bounds for Parallel Sorting on a Mesh-Conected Processor Array.,1989,26,Acta Inf.,7,db/journals/acta/acta26.html#HanI89,https://doi.org/10.1007/BF00288975 +Ian F. Akyildiz,Computational Algorithms for Networks of Queues with Rejection Blocking.,1989,26,Acta Inf.,6,db/journals/acta/acta26.html#AkyildizB89,https://doi.org/10.1007/BF00263580 +X. J. Chen,Compositional Refinements in Multiple Blackboard Systems.,1995,32,Acta Inf.,5,db/journals/acta/acta32.html#ChenM95,https://doi.org/10.1007/BF01213078 +Rob J. van Glabbeek,"Special issue on ""Combining Compositionality and Concurrency"": part 1.",2015,52,Acta Inf.,1,db/journals/acta/acta52.html#GlabbeekGO15,https://doi.org/10.1007/s00236-014-0213-y +Antonella Santone,Automatic verification of concurrent systems using a formula-based compositional approach.,2002,38,Acta Inf.,8,db/journals/acta/acta38.html#Santone02,https://doi.org/10.1007/s00236-002-0084-5 +Eric C. R. Hehner,On Removing the Machine from the Language.,1978,10,Acta Inf.,,db/journals/acta/acta10.html#Hehner78,https://doi.org/10.1007/BF00264318 +Moon-Jung Chung,Complete Problems for Space Bounded Subclasses of NP.,1985,22,Acta Inf.,4,db/journals/acta/acta22.html#ChungES85,https://doi.org/10.1007/BF00288774 +George Markowsky,Best Huffman Trees.,1981,16,Acta Inf.,,db/journals/acta/acta16.html#Markowsky81,https://doi.org/10.1007/BF00289311 +Manfred P. Stadel,Behandlung verschiedener INTEGER-Darstellungen durch optimierende Compiler.,1981,16,Acta Inf.,,db/journals/acta/acta16.html#Stadel81,https://doi.org/10.1007/BF00289589 +David A. Watt,The Parsing Problem for Affix Grammars.,1977,8,Acta Inf.,,db/journals/acta/acta8.html#Watt77,https://doi.org/10.1007/BF00276181 +Paul S. Amerins,On Efficient Entreeings.,1993,30,Acta Inf.,3,db/journals/acta/acta30.html#AmerinsBW93,https://doi.org/10.1007/BF01179370 +Ernst W. Mayr,Persistence of Vector Replacement Systems is Decidable.,1981,15,Acta Inf.,,db/journals/acta/acta15.html#Mayr81,https://doi.org/10.1007/BF00289268 +Karel Culik II,Implementing Daubechies Wavelet Transform with Weighted Finite Automata.,1997,34,Acta Inf.,5,db/journals/acta/acta34.html#CulikD97,https://doi.org/10.1007/s002360050089 +Armin B. Cremers,Functional Behavior in Data Spaces.,1978,9,Acta Inf.,,db/journals/acta/acta9.html#CremersH78a,https://doi.org/10.1007/BF00289044 +William P. R. Mitchell,Inductive Completion with Retracts.,1988,25,Acta Inf.,5,db/journals/acta/acta25.html#Mitchell88,https://doi.org/10.1007/BF00279951 +Patrick Cousot,Sometime = Always + Recursion = Always on the Equivalence of the Intermittent and Invariant Assertions Methods for Proving Inevitability Properties of Programs.,1987,24,Acta Inf.,1,db/journals/acta/acta24.html#CousotC87,https://doi.org/10.1007/BF00290704 +Isi Mitrani,Complete Parameterized Families of Job Scheduling Strategies.,1977,8,Acta Inf.,,db/journals/acta/acta8.html#MitraniH77,https://doi.org/10.1007/BF00276184 +Joseph M. Morris,Modelling higher-order dual nondeterminacy.,2008,45,Acta Inf.,6,db/journals/acta/acta45.html#MorrisT08,https://doi.org/10.1007/s00236-008-0076-1 +Jürgen Nehmer,Dispatcher Primitives for the Construction of Operating System Kernels.,1975,5,Acta Inf.,,db/journals/acta/acta5.html#Nehmer75,https://doi.org/10.1007/BF00264560 +Walter J. Savitch,A Note on Multihead Automata and Context-Sensitive Languages,1973,2,Acta Inf.,,db/journals/acta/acta2.html#Savitch73, +Karl Meinke,A Recursive Second Order Initial Algebra Specification of Primitive Recursion.,1994,31,Acta Inf.,4,db/journals/acta/acta31.html#Meinke94,https://doi.org/10.1007/BF01178510 +Mohammad Mahdi Jaghoori,Compositional schedulability analysis of real-time actor-based systems.,2017,54,Acta Inf.,4,db/journals/acta/acta54.html#JaghooriBLCS17,https://doi.org/10.1007/s00236-015-0254-x +Joost Engelfriet,Context-Free Graph Languages of Bounded Degree are Generated by Apex Graph Grammars.,1994,31,Acta Inf.,4,db/journals/acta/acta31.html#EngelfrietHL94,https://doi.org/10.1007/BF01178511 +Shyamal K. Chowdhury,Worst Case Performance of Weighted Buddy Systems.,1987,24,Acta Inf.,5,db/journals/acta/acta24.html#ChowdhuryS87,https://doi.org/10.1007/BF00263294 +Ugo Montanari,Contextual Nets.,1995,32,Acta Inf.,6,db/journals/acta/acta32.html#MontanariR95,https://doi.org/10.1007/BF01178907 +Peter E. Lauer,COSY - A System Specification Language Based on Paths and Processes.,1979,12,Acta Inf.,,db/journals/acta/acta12.html#LauerTS79,https://doi.org/10.1007/BF00266047 +Rudolf Berghammer,Applying relation algebra and Rel View to solve problems on orders and lattices.,2008,45,Acta Inf.,3,db/journals/acta/acta45.html#Berghammer08,https://doi.org/10.1007/s00236-008-0072-5 +David Pager,Eliminating Unit Productions from LR Parsers.,1977,9,Acta Inf.,,db/journals/acta/acta9.html#Pager77,https://doi.org/10.1007/BF00263764 +Peter Lipps,Attribute (Re)evaluation in OPTRAN.,1988,26,Acta Inf.,3,db/journals/acta/acta26.html#LippsMOW88,https://doi.org/10.1007/BF00299633 +Sanguthevar Rajasekaran,On Parallel Integer Sorting.,1992,29,Acta Inf.,1,db/journals/acta/acta29.html#RajasekaranS92,https://doi.org/10.1007/BF01178563 +Richard Hull 0001,Domain Independence and the Relational Calculus.,1994,31,Acta Inf.,6,db/journals/acta/acta31.html#HullS94,https://doi.org/10.1007/BF01213204 +John K. Lee,Multi-Granularity Locking for Nested Transactions: A Proof Using a Possibilities Mapping.,1996,33,Acta Inf.,2,db/journals/acta/acta33.html#LeeF96,https://doi.org/10.1007/s002360050038 +Teuvo Laurinolli,Bounded Quantification and Relations Recognizable by Finite Automata.,1978,10,Acta Inf.,,db/journals/acta/acta10.html#Laurinolli78,https://doi.org/10.1007/BF00260924 +Gary T. Leavens,A Complete Algebraic Characterization of Behavioral Subtyping.,2000,36,Acta Inf.,8,db/journals/acta/acta36.html#LeavensP00,https://doi.org/10.1007/s002360050168 +Luke Hunsberger,Efficient execution of dynamically controllable simple temporal networks with uncertainty.,2016,53,Acta Inf.,2,db/journals/acta/acta53.html#Hunsberger16,https://doi.org/10.1007/s00236-015-0227-0 +Y. Daniel Liang,Minimum Feedback Vertex Sets in Cocomparability Graphs and Convex Bipartite Graphs.,1997,34,Acta Inf.,5,db/journals/acta/acta34.html#LiangC97,https://doi.org/10.1007/s002360050088 +Gilles Bernot,Behavioural Approaches to Algebraic Specifications: A Comparative Study.,1994,31,Acta Inf.,7,db/journals/acta/acta31.html#BernotBK94,https://doi.org/10.1007/BF01177550 +Jan A. Bergstra,Instruction sequence processing operators.,2012,49,Acta Inf.,3,db/journals/acta/acta49.html#BergstraM12,https://doi.org/10.1007/s00236-012-0154-2 +Wlodzimierz Drabent,What is Failure? An Approach to Constructive Negation.,1995,32,Acta Inf.,1,db/journals/acta/acta32.html#Drabent95,https://doi.org/10.1007/BF01185404 +Victor Khomenko,STG decomposition strategies in combination with unfolding.,2009,46,Acta Inf.,6,db/journals/acta/acta46.html#KhomenkoSVW09,https://doi.org/10.1007/s00236-009-0102-y +Raphael A. Finkel,Quad Trees: A Data Structure for Retrieval on Composite Keys.,1974,4,Acta Inf.,,db/journals/acta/acta4.html#FinkelB74,https://doi.org/10.1007/BF00288933 +Alfred Schmitt,On the Number of Relational Operators Necessary to Compute Certain Functions of Real Variables.,1983,19,Acta Inf.,,db/journals/acta/acta19.html#Schmitt83,https://doi.org/10.1007/BF00265560 +Jacques Labetoulle,A Study of Queueing Networks with Deterministic Service and Application to Computer Networks.,1976,7,Acta Inf.,,db/journals/acta/acta7.html#LabetoulleP76,https://doi.org/10.1007/BF00265770 +Lijun Zhang 0001,Probabilistic bisimulation for realistic schedulers.,2018,55,Acta Inf.,6,db/journals/acta/acta55.html#ZhangYSHEJG18,https://doi.org/10.1007/s00236-018-0313-1 +Paul Pritchard,Explaining the Wheel Sieve.,1982,17,Acta Inf.,,db/journals/acta/acta17.html#Pritchard82,https://doi.org/10.1007/BF00264164 +Robert T. Moenck,Another Polynomial Homomorphism.,1976,6,Acta Inf.,,db/journals/acta/acta6.html#Moenck76,https://doi.org/10.1007/BF00268498 +Philip Heidelberger,Variance Reduction Techniques for the Simulation of Markov Process.,1980,13,Acta Inf.,,db/journals/acta/acta13.html#Heidelberger80,https://doi.org/10.1007/BF00288533 +Yo-Sub Han,State complexity of deletion and bipolar deletion.,2016,53,Acta Inf.,1,db/journals/acta/acta53.html#HanKS16,https://doi.org/10.1007/s00236-015-0245-y +Siegfried Bublitz,Decomposition of Graphs and Monotone Formula Size of Homogeneous Functions.,1986,23,Acta Inf.,6,db/journals/acta/acta23.html#Bublitz86,https://doi.org/10.1007/BF00264314 +Pierpaolo Degano,Regular and context-free nominal traces.,2017,54,Acta Inf.,4,db/journals/acta/acta54.html#DeganoFM17,https://doi.org/10.1007/s00236-016-0261-6 +Benedek Nagy,Deterministic pushdown-CD-systems of stateless deterministic R(1)-automata.,2013,50,Acta Inf.,4,db/journals/acta/acta50.html#NagyO13,https://doi.org/10.1007/s00236-012-0175-x +Krishnendu Chatterjee,Special issue: Synthesis and SYNT 2014.,2017,54,Acta Inf.,6,db/journals/acta/acta54.html#ChatterjeeE17,https://doi.org/10.1007/s00236-017-0299-0 +Gheorghe Paun,On the Synchronization in Parallel Communicating Grammar Systems.,1993,30,Acta Inf.,4,db/journals/acta/acta30.html#Paun93,https://doi.org/10.1007/BF01209710 +P. F. Schuler,Weakly Context-Sensitive Languages as Model for Programming Languages.,1974,3,Acta Inf.,,db/journals/acta/acta3.html#Schuler74,https://doi.org/10.1007/BF00264035 +George W. Ernst,Rules of Inference for Procedure Calls.,1977,8,Acta Inf.,,db/journals/acta/acta8.html#Ernst77,https://doi.org/10.1007/BF00289246 +Günther E. Pfaff,The Construction of Operator Interfaces Based on Logical Input Devices.,1983,19,Acta Inf.,,db/journals/acta/acta19.html#Pfaff83,https://doi.org/10.1007/BF00264473 +Stefan Reisch,Gobang ist PSPACE-vollständig.,1980,13,Acta Inf.,,db/journals/acta/acta13.html#Reisch80,https://doi.org/10.1007/BF00288536 +Chen-Ming Fan,A note on autodense related languages.,2010,47,Acta Inf.,4,db/journals/acta/acta47.html#FanHSC10,https://doi.org/10.1007/s00236-010-0116-5 +Linqiang Pan,Solving HPP and SAT by P Systems with Active Membranes and Separation Rules.,2006,43,Acta Inf.,2,db/journals/acta/acta43.html#PanA06,https://doi.org/10.1007/s00236-006-0018-8 +Akhil Kumar 0001,Optimizing the Costs of Hierarchical Quorum Consensus.,1996,33,Acta Inf.,3,db/journals/acta/acta33.html#KumarM96,https://doi.org/10.1007/s002360050043 +Donald P. Gaver,Multitype Multiprogramming Models.,1976,7,Acta Inf.,,db/journals/acta/acta7.html#GaverH76,https://doi.org/10.1007/BF00265765 +J.-P. Lévy,Automatic Correction of Syntax-Errors in Programming Languages.,1974,4,Acta Inf.,,db/journals/acta/acta4.html#Levy74,https://doi.org/10.1007/BF00288730 +Stavros Konstantinidis,Representation and uniformization of algebraic transductions.,2007,43,Acta Inf.,6,db/journals/acta/acta43.html#KonstantinidisSY07,https://doi.org/10.1007/s00236-006-0027-7 +Eike Best,Concurrent Bisimulations in Petri Nets.,1991,28,Acta Inf.,3,db/journals/acta/acta28.html#BestDKP91,https://doi.org/10.1007/BF01178506 +Markus Büttner,Enhanced prefetching and caching strategies for single- and multi-disk systems.,2005,42,Acta Inf.,1,db/journals/acta/acta42.html#Buttner05,https://doi.org/10.1007/s00236-005-0170-6 +Andrzej Ehrenfeucht,Recording the Use of Memory in Right-Boundary Grammars and Push-Down Automata.,1988,25,Acta Inf.,2,db/journals/acta/acta25.html#EhrenfeuchtHR88,https://doi.org/10.1007/BF00263585 +Joost Engelfriet,Extended multi bottom-up tree transducers.,2009,46,Acta Inf.,8,db/journals/acta/acta46.html#EngelfrietLM09,https://doi.org/10.1007/s00236-009-0105-8 +Andrzej Blikle,The Clean Termination of Iterative Programs.,1981,16,Acta Inf.,,db/journals/acta/acta16.html#Blikle81,https://doi.org/10.1007/BF00261259 +Fred Kröger,Infinite Proof Rules for Loops.,1980,14,Acta Inf.,,db/journals/acta/acta14.html#Kroger80,https://doi.org/10.1007/BF00286493 +Zoltán ésik,Nonfinite Axiomatizability of the Equational Theory of Shuffle.,1998,35,Acta Inf.,6,db/journals/acta/acta35.html#EsikB98,https://doi.org/10.1007/s002360050129 +Carroll Morgan,Data Refinement by Calculation.,1990,27,Acta Inf.,6,db/journals/acta/acta27.html#MorganG89,https://doi.org/10.1007/BF00277386 +Ambuj K. Singh,Program Refinement in Fair Transition Systems.,1993,30,Acta Inf.,6,db/journals/acta/acta30.html#Singh93,https://doi.org/10.1007/BF01209623 +Paul Caspi,A Functional Model for Describing and Reasoning About Time Behaviour of Computing Systems.,1986,22,Acta Inf.,6,db/journals/acta/acta22.html#CaspiH86,https://doi.org/10.1007/BF00263648 +Wuu Yang,On the Look-Ahead Problem in Lexical Analysis.,1995,32,Acta Inf.,5,db/journals/acta/acta32.html#Yang95,https://doi.org/10.1007/BF01213079 +Susmit Jha,A theory of formal synthesis via inductive learning.,2017,54,Acta Inf.,7,db/journals/acta/acta54.html#JhaS17,https://doi.org/10.1007/s00236-017-0294-5 +Kamilla Klonowska,The maximum gain of increasing the number of preemptions in multiprocessor scheduling.,2009,46,Acta Inf.,4,db/journals/acta/acta46.html#KlonowskaLL09,https://doi.org/10.1007/s00236-009-0096-5 +Arnold L. Rosenberg,Data Encodings and Their Costs.,1978,9,Acta Inf.,,db/journals/acta/acta9.html#Rosenberg78,https://doi.org/10.1007/BF00288886 +Zvi Galil,Hierarchies of Complete Problems.,1976,6,Acta Inf.,,db/journals/acta/acta6.html#Galil76,https://doi.org/10.1007/BF00263744 +Volker Claus,Ein Vollständigkeitssatz für Programme und Schaltkreise.,1971,1,Acta Inf.,,db/journals/acta/acta1.html#Claus71,https://doi.org/10.1007/BF00264292 +Jean Berstel,Sur une Conjecture de S. Greibach.,1974,3,Acta Inf.,,db/journals/acta/acta3.html#Berstel74,https://doi.org/10.1007/BF00288640 +B. Bartsch,A Conservation Law for G/G/m Queueing Systems.,1978,10,Acta Inf.,,db/journals/acta/acta10.html#BartschB78,https://doi.org/10.1007/BF00260928 +Zvi Galil,Applications of Efficient Mergeable Heaps for Optimization Problems on Trees.,1980,13,Acta Inf.,,db/journals/acta/acta13.html#Galil80,https://doi.org/10.1007/BF00288535 +Joost Engelfriet,Context-Free Graph Grammars and Concatenation of Graphs.,1997,34,Acta Inf.,10,db/journals/acta/acta34.html#EngelfrietV97,https://doi.org/10.1007/s002360050106 +Teruo Hikita,On a Class of Recursive Procedures and Equivalent Iterative Ones.,1979,12,Acta Inf.,,db/journals/acta/acta12.html#Hikita79,https://doi.org/10.1007/BF00268318 +Yuri Breitbart,Algorithms for Fast Evaluation of Boolean Expressions.,1975,4,Acta Inf.,,db/journals/acta/acta4.html#BreitbartR74,https://doi.org/10.1007/BF00288743 +Filippo Bonchi,A general account of coinduction up-to.,2017,54,Acta Inf.,2,db/journals/acta/acta54.html#BonchiPPR17,https://doi.org/10.1007/s00236-016-0271-4 +Per Brinch Hansen,A Comparison of Two Synchronizing Concepts.,1972,1,Acta Inf.,,db/journals/acta/acta1.html#Hansen72,https://doi.org/10.1007/BF00288684 +Karsten Schmidt 0004,How to Calculate Symmetries of Petri Nets.,2000,36,Acta Inf.,7,db/journals/acta/acta36.html#Schmidt00,https://doi.org/10.1007/s002360050002 +Jörg Desel,The Synthesis Problem of Petri Nets.,1996,33,Acta Inf.,4,db/journals/acta/acta33.html#DeselR96,https://doi.org/10.1007/s002360050046 +Wolfgang Merzenich,A Binary Operation on Trees and an Initial Algebra Characterization for Finite Tree Types.,1979,11,Acta Inf.,,db/journals/acta/acta11.html#Merzenich79,https://doi.org/10.1007/BF00264022 +Eleni Mandrali,On weighted first-order logics with discounting.,2014,51,Acta Inf.,2,db/journals/acta/acta51.html#MandraliR14,https://doi.org/10.1007/s00236-013-0193-3 +Dirk Janssens,A Characterization of Context-free String Languages by Directed Node-label Controlled Graph Grammars.,1981,16,Acta Inf.,,db/journals/acta/acta16.html#JanssensR81,https://doi.org/10.1007/BF00289591 +S. Arun-Kumar,An Efficiency Preorder for Processes.,1992,29,Acta Inf.,8,db/journals/acta/acta29.html#Arun-KumarH92,https://doi.org/10.1007/BF01191894 +Ricardo A. Baeza-Yates,Modeling Splits in File Structures.,1989,26,Acta Inf.,4,db/journals/acta/acta26.html#Baeza-Yates89,https://doi.org/10.1007/BF00276022 +Emanuela Fachini,Languages Accepted by Systolic Y-Tree Automata: Structural Characterizations.,1992,29,Acta Inf.,8,db/journals/acta/acta29.html#FachiniMNP92,https://doi.org/10.1007/BF01191895 +Giuseppe Della Penna,Synchronized regular expressions.,2003,39,Acta Inf.,1,db/journals/acta/acta39.html#PennaITZ03,https://doi.org/10.1007/s00236-002-0099-y +Jan Janousek,On regular tree languages and deterministic pushdown automata.,2009,46,Acta Inf.,7,db/journals/acta/acta46.html#JanousekM09,https://doi.org/10.1007/s00236-009-0104-9 +Matthew Hennessy,A Modal Logic for Message Passing Processes.,1995,32,Acta Inf.,4,db/journals/acta/acta32.html#HennessyL95,https://doi.org/10.1007/BF01178384 +Mark H. Overmars,Maintaining Range Trees in Secondary Memory. Part I: Partitions.,1990,27,Acta Inf.,5,db/journals/acta/acta27.html#OvermarsSBK89,https://doi.org/10.1007/BF00289018 +Ralph-Johan Back,Reasoning Algebraically about Loops.,1999,36,Acta Inf.,4,db/journals/acta/acta36.html#BackW99,https://doi.org/10.1007/s002360050163 +Alexandre Brandwajn,A Model of a Time Sharing Virtual Memory System Solved Using Equivalence and Decomposition Methods.,1974,4,Acta Inf.,,db/journals/acta/acta4.html#Brandwajn74,https://doi.org/10.1007/BF00288934 +Eric Badouel,Trace Nets and Process Automata.,1995,32,Acta Inf.,7,db/journals/acta/acta32.html#BadouelD95,https://doi.org/10.1007/BF01186645 +Leonidas J. Guibas,A Principle of Independence for Binary Tree Searching.,1974,4,Acta Inf.,,db/journals/acta/acta4.html#Guibas74,https://doi.org/10.1007/BF00289612 +Ralf Hartmut Güting,Optimal Divide-and-Conquer to Compute Measure and Contour for a Set of Iso-Rectangles.,1984,21,Acta Inf.,,db/journals/acta/acta21.html#Guting84,https://doi.org/10.1007/BF00264251 +Clement H. C. Leung,The Paging Drum Queue: A Uniform Perspective and Further Results.,1984,21,Acta Inf.,,db/journals/acta/acta21.html#LeungC84,https://doi.org/10.1007/BF00271643 +Stephan Heilbrunner,The Undecidability of the Unification and Matching Problem for Canonical Theories.,1987,24,Acta Inf.,2,db/journals/acta/acta24.html#HeilbrunnerH87,https://doi.org/10.1007/BF00264362 +Niklaus Wirth,The Programming Language Pascal.,1971,1,Acta Inf.,,db/journals/acta/acta1.html#Wirth71,https://doi.org/10.1007/BF00264291 +Hermann K.-G. Walter,Inhibitionsfelder.,1972,1,Acta Inf.,,db/journals/acta/acta1.html#Walter72,https://doi.org/10.1007/BF00288689 +Martin Kutrib,Head and state hierarchies for unary multi-head finite automata.,2014,51,Acta Inf.,8,db/journals/acta/acta51.html#KutribMW14,https://doi.org/10.1007/s00236-014-0206-x +Bernhard Mescheder,On the Number of Active-Operations Needed to Compute the Discrete Fourier Transform.,1980,13,Acta Inf.,,db/journals/acta/acta13.html#Mescheder80,https://doi.org/10.1007/BF00288772 +Thomas P. Murtagh,Redundant Proofs of Non-Interference in Levin-Gries CSP Program Proofs.,1987,24,Acta Inf.,2,db/journals/acta/acta24.html#Murtagh87,https://doi.org/10.1007/BF00264361 +Adam L. Buchsbaum,Lazy Structure Sharing for Query Optimization.,1995,32,Acta Inf.,3,db/journals/acta/acta32.html#BuchsbaumST95,https://doi.org/10.1007/BF01178261 +Yuxi Fu,Fair ambients.,2007,43,Acta Inf.,8,db/journals/acta/acta43.html#Fu07,https://doi.org/10.1007/s00236-007-0038-z +Norbert Ramsperger,Concurrent Access to Data.,1977,8,Acta Inf.,,db/journals/acta/acta8.html#Ramsperger77,https://doi.org/10.1007/BF00271341 +Kim S. Larsen,Relaxed red-black trees with group updates.,2002,38,Acta Inf.,8,db/journals/acta/acta38.html#Larsen02,https://doi.org/10.1007/s00236-002-0086-3 +Ikuo Nakata,Generation of Efficient LALR Parsers for Regular Right Part Grammars.,1986,23,Acta Inf.,2,db/journals/acta/acta23.html#NakataS86,https://doi.org/10.1007/BF00289495 +Tien Van Do,A Markovian queue with varying number of servers and applications to the performance comparison of HSDPA user equipment.,2011,48,Acta Inf.,4,db/journals/acta/acta48.html#DoCDP11,https://doi.org/10.1007/s00236-011-0138-7 +Hsu-Chun Yen,Priority Conflict-Free Petri Nets.,1998,35,Acta Inf.,8,db/journals/acta/acta35.html#Yen98,https://doi.org/10.1007/s002360050138 +Vijay K. Vaishnavi,Optimum Multiway Search Trees.,1980,14,Acta Inf.,,db/journals/acta/acta14.html#VaishnaviKW80,https://doi.org/10.1007/BF00288540 +Norbert Blum,Characterization of all Optimal Networks for a Simultaneous Computation of AND and NOR.,1984,21,Acta Inf.,,db/journals/acta/acta21.html#BlumS84,https://doi.org/10.1007/BF00289238 +Ramachandran Vaidyanathan,Parallel Integer Sorting Using Small Operations.,1995,32,Acta Inf.,1,db/journals/acta/acta32.html#VaidyanathanHV95,https://doi.org/10.1007/BF01185406 +Ján Gaso,Stochastic cooperative distributed grammar systems and random graphs.,2003,39,Acta Inf.,2,db/journals/acta/acta39.html#GasoN03,https://doi.org/10.1007/s00236-002-0104-5 +Andrzej Duda,Performance Evaluation of Fork and Join Synchronization Primitives.,1987,24,Acta Inf.,5,db/journals/acta/acta24.html#DudaC87,https://doi.org/10.1007/BF00263293 +Zheng-Zhu Li,Some properties of the disjunctive languages contained in Q.,2011,48,Acta Inf.,1,db/journals/acta/acta48.html#LiT11,https://doi.org/10.1007/s00236-010-0127-2 +Karel Culik II,Systolic Automata for VLSI on Balanced Trees.,1982,18,Acta Inf.,,db/journals/acta/acta18.html#CulikGS82,https://doi.org/10.1007/BF00289573 +Peter J. Denning,Optimal Multiprogramming.,1976,7,Acta Inf.,,db/journals/acta/acta7.html#DenningKLPS76,https://doi.org/10.1007/BF00265771 +Christian Choffrut,On Real-Time Cellular Automata and Trellis Automata.,1984,21,Acta Inf.,,db/journals/acta/acta21.html#ChoffrutC84,https://doi.org/10.1007/BF00264617 +Michael Schenke,Transformational Design of Real-Time Systems Part I: From Requirements to Program Specifications.,1999,36,Acta Inf.,1,db/journals/acta/acta36.html#SchenkeO99,https://doi.org/10.1007/s002360050153 +Flavio Corradini,Performance Preorder and Competitive Equivalence.,1997,34,Acta Inf.,11,db/journals/acta/acta34.html#CorradiniGR97,https://doi.org/10.1007/s002360050107 +Anton Nijholt,A Survey of Normal Form Covers for Context Free Grammars.,1980,14,Acta Inf.,,db/journals/acta/acta14.html#Nijholt80,https://doi.org/10.1007/BF00264257 +Kung-Kiu Lau,A Note on Synthesis and Classification of Sorting Algorithms.,1989,27,Acta Inf.,1,db/journals/acta/acta27.html#Lau89,https://doi.org/10.1007/BF00263502 +Flavio Corradini,Liveness of a mutex algorithm in a fair process algebra.,2009,46,Acta Inf.,3,db/journals/acta/acta46.html#CorradiniBV09,https://doi.org/10.1007/s00236-009-0092-9 +Paul Pritchard,"Another Look at the ""Longest Ascending Subsequence"" Problem.",1981,16,Acta Inf.,,db/journals/acta/acta16.html#Pritchard81,https://doi.org/10.1007/BF00289592 +Peter R. J. Asveld,Complexity Theory and the Operational Structure of Algebraic Programming Systems.,1982,17,Acta Inf.,,db/journals/acta/acta17.html#AsveldT82,https://doi.org/10.1007/BF00264163 +Zohar Manna,Models for Reactivity.,1993,30,Acta Inf.,7,db/journals/acta/acta30.html#MannaP93,https://doi.org/10.1007/BF01191722 +Ann E. Kelley Sobel,A Proof System for Distributed Processes.,1988,25,Acta Inf.,3,db/journals/acta/acta25.html#SobelS88,https://doi.org/10.1007/BF00283331 +Giora Slutzki,Finite State Relational Programs.,1982,18,Acta Inf.,,db/journals/acta/acta18.html#Slutzki82,https://doi.org/10.1007/BF00289577 +Thomas Klingler,A Gap Between the Actual Complexity of Permutations and Their Entropy Defined by Stoß.,1981,16,Acta Inf.,,db/journals/acta/acta16.html#KlinglerR81,https://doi.org/10.1007/BF00289310 +Frank Drewes,MAT learners for tree series: an abstract data type and two realizations.,2011,48,Acta Inf.,3,db/journals/acta/acta48.html#DrewesHM11,https://doi.org/10.1007/s00236-011-0135-x +Lars Jacobsen,Exponentially decreasing number of operations in balanced trees.,2005,42,Acta Inf.,1,db/journals/acta/acta42.html#JacobsenL05,https://doi.org/10.1007/s00236-005-0173-3 +Bruce Russell,Correctness of the Compiling Process Based on Axiomatic Semantics.,1980,14,Acta Inf.,,db/journals/acta/acta14.html#Russell80,https://doi.org/10.1007/BF00289061 +Jörg H. Siekmann,Paramodulated Connection Graphs.,1980,13,Acta Inf.,,db/journals/acta/acta13.html#SieckmannW80,https://doi.org/10.1007/BF00288537 +Joakim von Wright,The Lattice of Data Refinement.,1994,31,Acta Inf.,2,db/journals/acta/acta31.html#Wright94,https://doi.org/10.1007/BF01192157 +Nissim Francez,Backtracking in Recursive Computations.,1977,8,Acta Inf.,,db/journals/acta/acta8.html#FrancezKP77,https://doi.org/10.1007/BF00289245 +Chunhua Cao,A first step in characterizing three-element codes.,2018,55,Acta Inf.,5,db/journals/acta/acta55.html#CaoQY18,https://doi.org/10.1007/s00236-017-0309-2 +Charles N. Fischer,Efficient LL(1) Error Correction and Recovery Using Only Insertions.,1980,13,Acta Inf.,,db/journals/acta/acta13.html#FischerMQ80,https://doi.org/10.1007/BF00263990 +Axel van Lamsweerde,Formal Derivation of Strongly Correct Concurrent Programs.,1979,12,Acta Inf.,,db/journals/acta/acta12.html#LamsweerdeS79,https://doi.org/10.1007/BF00264015 +Jon Louis Bentley,Efficient Worst-Case Data Structures for Range Searching.,1980,13,Acta Inf.,,db/journals/acta/acta13.html#BentleyM80,https://doi.org/10.1007/BF00263991 +Inman P. de Guzmán,A Formal Identification between Tuples and Lists with an Application to List-Arithmetic Categories.,1995,32,Acta Inf.,1,db/journals/acta/acta32.html#GuzmanOV95,https://doi.org/10.1007/BF01185405 +John B. Kam,Monotone Data Flow Analysis Frameworks.,1977,7,Acta Inf.,,db/journals/acta/acta7.html#KamU77,https://doi.org/10.1007/BF00290339 +Mikkel Thorup,Disambiguating Grammars by Exclusion of Sub-Parse Trees.,1996,33,Acta Inf.,6,db/journals/acta/acta33.html#Thorup96,https://doi.org/10.1007/BF03036460 +Matthew Hennessy,Axiomatising Finite Delay Operators.,1984,21,Acta Inf.,,db/journals/acta/acta21.html#Hennessy84,https://doi.org/10.1007/BF00289140 +Joseph M. Morris,Laws of Data Refinement.,1989,26,Acta Inf.,4,db/journals/acta/acta26.html#Morris89,https://doi.org/10.1007/BF00276019 +José M. Amigó,Representing the integers with powers of 2 and 3.,2006,43,Acta Inf.,5,db/journals/acta/acta43.html#Amigo06,https://doi.org/10.1007/s00236-006-0021-0 +S. Kiran Kumar,A Linear Space Algorithm for the LCS Problem.,1987,24,Acta Inf.,3,db/journals/acta/acta24.html#KumarR87,https://doi.org/10.1007/BF00265993 +Changwook Kim,Efficient recognition algorithms for boundary and linear eNCE graph languages.,2001,37,Acta Inf.,9,db/journals/acta/acta37.html#Kim01,https://doi.org/10.1007/PL00013320 +Astrid Kiehn,Comparing Locality and Causality Based Equivalences.,1994,31,Acta Inf.,8,db/journals/acta/acta31.html#Kiehn94,https://doi.org/10.1007/BF01178730 +A. Michael Berman,Proving Relative Lower Bounds for Incremental Algorithms.,1990,27,Acta Inf.,7,db/journals/acta/acta27.html#BermanPR89,https://doi.org/10.1007/BF00259471 +Peter Kandzia,Zur Theorie der Partiell-linearen Realisierungen endlicher Automaten,1973,2,Acta Inf.,,db/journals/acta/acta2.html#Kandzia73, +Beverly A. Sanders,Data Refinement of Mixed Specifications.,1998,35,Acta Inf.,2,db/journals/acta/acta35.html#Sanders98,https://doi.org/10.1007/s002360050115 +Pedro V. Silva,A note on pure and p-pure languages.,2003,39,Acta Inf.,8,db/journals/acta/acta39.html#Silva03,https://doi.org/10.1007/s00236-003-0107-x +K. V. S. Ramarao,Complexity of Distributed Commit Protocols.,1989,26,Acta Inf.,6,db/journals/acta/acta26.html#Ramarao89,https://doi.org/10.1007/BF00263581 +Amr Elmasry,Adaptive sorting: an information theoretic perspective.,2008,45,Acta Inf.,1,db/journals/acta/acta45.html#ElmasryF08,https://doi.org/10.1007/s00236-007-0061-0 +Eric C. R. Hehner,Erratum: Predicative Methodology.,1988,26,Acta Inf.,3,db/journals/acta/acta26.html#HehnerGM88,https://doi.org/10.1007/BF00299637 +Rodney W. Topor,The Correctness of the Schorr-Waite List Marking Algorithm.,1979,11,Acta Inf.,,db/journals/acta/acta11.html#Topor79,https://doi.org/10.1007/BF00289067 +Karel Culik II,Synchronizable Deterministic Pushdown Automata and the Decidability of their Equivalence.,1986,23,Acta Inf.,5,db/journals/acta/acta23.html#CulikK86,https://doi.org/10.1007/BF00288472 +Thomas Eiter,Distance Measures for Point Sets and their Computation.,1997,34,Acta Inf.,2,db/journals/acta/acta34.html#EiterM97,https://doi.org/10.1007/s002360050075 +Raúl J. Ramírez,Optimum Reorganization Points for Arbitrary Database Costs.,1982,18,Acta Inf.,,db/journals/acta/acta18.html#RamirezTM82,https://doi.org/10.1007/BF00625278 +Chung-Hao Huang,Model-checking iterated games.,2017,54,Acta Inf.,7,db/journals/acta/acta54.html#HuangSW17,https://doi.org/10.1007/s00236-016-0277-y +Erol Gelenbe,Analyse d'un algorithme de gestion simultanée Mémoire centrale - Disque de pagination.,1974,3,Acta Inf.,,db/journals/acta/acta3.html#GelenbeLP74,https://doi.org/10.1007/BF00263587 +Paul Pritchard,Opportunistic Algorithms for Eliminating Supersets.,1991,28,Acta Inf.,8,db/journals/acta/acta28.html#Pritchard91,https://doi.org/10.1007/BF01261654 +Ferucio Laurentiu Tiplea,Synchronized extension systems.,2001,37,Acta Inf.,6,db/journals/acta/acta37.html#TipleaMA01,https://doi.org/10.1007/PL00013310 +Friedrich L. Bauer,Klaus Samelson.,1981,15,Acta Inf.,,db/journals/acta/acta15.html#BauerEPP81,https://doi.org/10.1007/BF00269806 +Wayne A. Babich,The Method of Attributes for Data Flow Analysis: Part II. Demand Analysis.,1978,10,Acta Inf.,,db/journals/acta/acta10.html#BabichJ78a,https://doi.org/10.1007/BF00264320 +Robert H. Sloan,Reduction Rules for Time Petri Nets.,1996,33,Acta Inf.,7,db/journals/acta/acta33.html#SloanB96,https://doi.org/10.1007/BF03036471 +Oded Goldreich 0001,Electing a Leader in a Ring with Link Failures.,1987,24,Acta Inf.,1,db/journals/acta/acta24.html#GoldreichS87,https://doi.org/10.1007/BF00290707 +Josep Díaz,Parallel Approximation Schemes for Problems on Planar Graphs.,1996,33,Acta Inf.,4,db/journals/acta/acta33.html#DiazST96,https://doi.org/10.1007/s002360050049 +Lorenzo Bettini,Compositional type checking of delta-oriented software product lines.,2013,50,Acta Inf.,2,db/journals/acta/acta50.html#BettiniDS13,https://doi.org/10.1007/s00236-012-0173-z +François Baccelli,On Parsing Arithmetic Expressions in a Multiprocessing Environment.,1982,17,Acta Inf.,,db/journals/acta/acta17.html#BaccelliF82,https://doi.org/10.1007/BF00264355 +Romain Brenguier,Assume-admissible synthesis.,2017,54,Acta Inf.,1,db/journals/acta/acta54.html#BrenguierRS17,https://doi.org/10.1007/s00236-016-0273-2 +Luc Devroye,A Probabilistic Analysis of the Height of Tries and of the Complexity of Triesort.,1984,21,Acta Inf.,,db/journals/acta/acta21.html#Devroye84,https://doi.org/10.1007/BF00264248 +Adrian Atanasiu,A Class of Coders Based on GSM.,1992,29,Acta Inf.,8,db/journals/acta/acta29.html#Atanasiu92,https://doi.org/10.1007/BF01191896 +Kamilla Klonowska,Optimal recovery schemes in fault tolerant distributed computing.,2005,41,Acta Inf.,6,db/journals/acta/acta41.html#KlonowskaLLS05,https://doi.org/10.1007/s00236-005-0161-7 +Klaus H. Hinrichs,An All-Round Sweep Algorithm for 2-Dimensional Nearest-Neighbor Problems.,1992,29,Acta Inf.,4,db/journals/acta/acta29.html#HinrichsNS92,https://doi.org/10.1007/BF01178779 +Robert Meersman,Two-Level Meta-Controlled Substitution Grammars.,1978,10,Acta Inf.,,db/journals/acta/acta10.html#MeersmanR78,https://doi.org/10.1007/BF00265677 +Hans Jürgen Schneider,Grammars on Partial Graphs.,1976,6,Acta Inf.,,db/journals/acta/acta6.html#SchneiderE76,https://doi.org/10.1007/BF00288659 +Wenceslas Fernandez de la Vega,Average-Case Complexity for the Execution of Recursive Definitions on Relational Databases.,1998,35,Acta Inf.,3,db/journals/acta/acta35.html#VegaPS98,https://doi.org/10.1007/s002360050119 +Ke Gu,Efficient and secure attribute-based signature for monotone predicates.,2017,54,Acta Inf.,5,db/journals/acta/acta54.html#GuJWW17,https://doi.org/10.1007/s00236-016-0270-5 +Kim Marriott,Frameworks for Abstract Interpretation.,1993,30,Acta Inf.,2,db/journals/acta/acta30.html#Marriott93,https://doi.org/10.1007/BF01178576 +Thomas Lehmann 0004,OBSCURE: A Specification Language for Abstract Data Types.,1993,30,Acta Inf.,4,db/journals/acta/acta30.html#LehmannL93,https://doi.org/10.1007/BF01209709 +M. R. Garey,Performance Bounds on the Splitting Algorithm for Binary Testing.,1974,3,Acta Inf.,,db/journals/acta/acta3.html#GareyG74,https://doi.org/10.1007/BF00263588 +G. Marque-Pucheu,Rational Set of Trees and the Algebraic Semantics of Logic Programming.,1983,20,Acta Inf.,,db/journals/acta/acta20.html#Marque-Pucheu83,https://doi.org/10.1007/BF01257085 +Hermann A. Maurer,Rational Bijection of Rational Sets.,1980,13,Acta Inf.,,db/journals/acta/acta13.html#MaurerN80,https://doi.org/10.1007/BF00288770 +Reidar Conradi,"Some Comments on ""Concurrent Readers and Writers"".",1977,8,Acta Inf.,,db/journals/acta/acta8.html#Conradi77,https://doi.org/10.1007/BF00271342 +Yuri Breitbart,A Branch-and-Bound Algorithm to Obtain an Optimal Evaluation Tree for Monotonic Boolean Functions.,1975,4,Acta Inf.,,db/journals/acta/acta4.html#BreitbartR74a,https://doi.org/10.1007/BF00289614 +Xiaoning Peng,Optimal covers in the relational database model.,2016,53,Acta Inf.,5,db/journals/acta/acta53.html#PengX16,https://doi.org/10.1007/s00236-015-0247-9 +Mahadevan Ganapathi,Integrating Code Generation and Peephole Optimization.,1988,25,Acta Inf.,1,db/journals/acta/acta25.html#GanapathiF87,https://doi.org/10.1007/BF00268846 +Aviezri S. Fraenkel,Is Text Compression by Prefixes and Suffixes Practical?,1983,20,Acta Inf.,,db/journals/acta/acta20.html#FraenkelMP83,https://doi.org/10.1007/BF00264280 +Johannes Röhrich,Methods for the Automatic Construction of Error Correcting Parsers.,1980,13,Acta Inf.,,db/journals/acta/acta13.html#Rohrich80,https://doi.org/10.1007/BF00263989 +Uwe Kastens,Ordered Attributed Grammars.,1980,13,Acta Inf.,,db/journals/acta/acta13.html#Kastens80,https://doi.org/10.1007/BF00288644 +Lars Lundberg,Optimal Bounds on the Gain of Permitting Dynamic Allocation of Communication Channels in Distributed Computing.,1999,36,Acta Inf.,6,db/journals/acta/acta36.html#LundbergL99,https://doi.org/10.1007/s002360050179 +Arnaud Carayol,Linearly bounded infinite graphs.,2006,43,Acta Inf.,4,db/journals/acta/acta43.html#CarayolM06,https://doi.org/10.1007/s00236-006-0022-z +Frank Wm. Tompa,A Practical Example of the Specification of Abstract Data Types.,1980,13,Acta Inf.,,db/journals/acta/acta13.html#Tompa80,https://doi.org/10.1007/BF00288642 +Luc Boasson,Sur diverses familles de langages fermées par transductions rationelle,1973,2,Acta Inf.,,db/journals/acta/acta2.html#BoassonN73, +Oscar H. Ibarra,On 3-Head Versus 2-Head Finite Automata.,1974,4,Acta Inf.,,db/journals/acta/acta4.html#IbarraK74,https://doi.org/10.1007/BF00288748 +Gary T. Leavens,Specification and Verification of Object-Oriented Programs Using Supertype Abstraction.,1995,32,Acta Inf.,8,db/journals/acta/acta32.html#LeavensW95,https://doi.org/10.1007/BF01178658 +Francesco Ranzato,An efficient simulation algorithm on Kripke structures.,2014,51,Acta Inf.,2,db/journals/acta/acta51.html#Ranzato14,https://doi.org/10.1007/s00236-014-0195-9 +Hans-Anton Rollik,Automaten in planaren Graphen.,1980,13,Acta Inf.,,db/journals/acta/acta13.html#Rollik80,https://doi.org/10.1007/BF00288647 +Demetres D. Kouvatsos,Maximum Entropy Two-Station Cyclic Queues with Multiple General Servers.,1988,26,Acta Inf.,3,db/journals/acta/acta26.html#KouvatsosA88,https://doi.org/10.1007/BF00299634 +Donald Sannella,Toward Formal Development of Programs from Algebraic Specifications: Implementations Revisited.,1988,25,Acta Inf.,3,db/journals/acta/acta25.html#SannellaT88,https://doi.org/10.1007/BF00283329 +Henning Bordihn,Programmed grammars and their relation to the LBA problem.,2006,43,Acta Inf.,4,db/journals/acta/acta43.html#BordihnH06,https://doi.org/10.1007/s00236-006-0017-9 +Paul M. Zislis,Semantic Decomposition of Computer Programs: An Aid to Program Testing.,1974,4,Acta Inf.,,db/journals/acta/acta4.html#Zislis74,https://doi.org/10.1007/BF00288729 +Gary Levin,A Proof Technique for Communicating Sequential Processes.,1981,15,Acta Inf.,,db/journals/acta/acta15.html#LevinG81,https://doi.org/10.1007/BF00289266 +Jan Ramon,A polynomial time computable metric between point sets.,2001,37,Acta Inf.,10,db/journals/acta/acta37.html#RamonB01,https://doi.org/10.1007/PL00013304 +Parosh Aziz Abdulla,Verification of heap manipulating programs with ordered data by extended forest automata.,2016,53,Acta Inf.,4,db/journals/acta/acta53.html#AbdullaHJLTV16,https://doi.org/10.1007/s00236-015-0235-0 +Michel Latteux,The Family of One-Counter Languages is Closed Under Quotient.,1985,22,Acta Inf.,5,db/journals/acta/acta22.html#LatteuxLR85,https://doi.org/10.1007/BF00267045 +Lila Kari,Sticky-free and overhang-free DNA languages.,2003,40,Acta Inf.,2,db/journals/acta/acta40.html#KariKLW03,https://doi.org/10.1007/s00236-003-0118-7 +Reinhold Franck,A Class of Linearly Parsable Graph Grammars.,1978,10,Acta Inf.,,db/journals/acta/acta10.html#Franck78,https://doi.org/10.1007/BF00289155 +Milan Ceska Jr.,Precise parameter synthesis for stochastic biochemical systems.,2017,54,Acta Inf.,6,db/journals/acta/acta54.html#CeskaDPKB17,https://doi.org/10.1007/s00236-016-0265-2 +Md. Enamul Kabir,Efficient systematic clustering method for k-anonymization.,2011,48,Acta Inf.,1,db/journals/acta/acta48.html#KabirWB11,https://doi.org/10.1007/s00236-010-0131-6 +Thomas Giammo,Validation of a Computer Performance Model of the Exponential Queuing Network Family.,1976,7,Acta Inf.,,db/journals/acta/acta7.html#Giammo76,https://doi.org/10.1007/BF00265767 +Jean-François Condotta,Optimization in temporal qualitative constraint networks.,2016,53,Acta Inf.,2,db/journals/acta/acta53.html#CondottaKS16,https://doi.org/10.1007/s00236-015-0228-z +Tomás Brázdil,Deciding probabilistic bisimilarity over infinite-state probabilistic systems.,2008,45,Acta Inf.,2,db/journals/acta/acta45.html#BrazdilKS08,https://doi.org/10.1007/s00236-007-0066-8 +Antonella Santone,Abstract reduction in directed model checking CCS processes.,2012,49,Acta Inf.,5,db/journals/acta/acta49.html#SantoneV12,https://doi.org/10.1007/s00236-012-0161-3 +Ferruccio Damiani,A core calculus for dynamic delta-oriented programming.,2018,55,Acta Inf.,4,db/journals/acta/acta55.html#DamianiPSS18,https://doi.org/10.1007/s00236-017-0293-6 +Edward G. Belaga,Through the Mincing Machine with a Boolean Layer Cake.,1989,26,Acta Inf.,4,db/journals/acta/acta26.html#Belaga89,https://doi.org/10.1007/BF00276024 +John P. Kearns,The Implementation of Retention in a Coroutine Environment.,1983,19,Acta Inf.,,db/journals/acta/acta19.html#KearnsS83,https://doi.org/10.1007/BF00265556 +Hsien-Kuei Hwang,Asymptotic Expansions of the Mergesort Recurrences.,1998,35,Acta Inf.,11,db/journals/acta/acta35.html#Hwang98,https://doi.org/10.1007/s002360050147 +Jean-Marie Nicolas 0001,Logic for Improving Integrity Checking in Relational Data Bases.,1982,18,Acta Inf.,,db/journals/acta/acta18.html#Nicolas82,https://doi.org/10.1007/BF00263192 +Hermann A. Maurer,EOL Forms.,1977,8,Acta Inf.,,db/journals/acta/acta8.html#MaurerSW77,https://doi.org/10.1007/BF00276185 +Hans Langmaack,On Procedures as Open Subroutines. I,1973,2,Acta Inf.,,db/journals/acta/acta2.html#Langmaack73a, +Róbert Szelepcsényi,The Method of Forced Enumeration for Nondeterministic Automata.,1988,26,Acta Inf.,3,db/journals/acta/acta26.html#Szelepcsenyi88,https://doi.org/10.1007/BF00299636 +G. Bauer,Finite Complete Rewriting Systems and the Complexity of the Word Problem.,1984,21,Acta Inf.,,db/journals/acta/acta21.html#BauerO84,https://doi.org/10.1007/BF00271645 +Lucian Ilie,On the Expressiveness of Subset-Sum Representations.,2000,36,Acta Inf.,8,db/journals/acta/acta36.html#IlieS00,https://doi.org/10.1007/s002360050169 +Hisao Kameda,A Note on Multi-queue Scheduling of Two Tasks.,1983,20,Acta Inf.,,db/journals/acta/acta20.html#Kameda83,https://doi.org/10.1007/BF00289409 +Dirk Hauschildt,Petri Net Algorithms in the Theory of Matrix Grammars.,1994,31,Acta Inf.,8,db/journals/acta/acta31.html#HauschildtJ94,https://doi.org/10.1007/BF01178731 +Juha Honkala,Decision Problems Concerning Thinness and Slenderness of Formal Languages.,1998,35,Acta Inf.,7,db/journals/acta/acta35.html#Honkala98,https://doi.org/10.1007/s002360050134 +Dean Jacobs,General Correctness: A Unification of Partial and Total Correctness.,1985,22,Acta Inf.,1,db/journals/acta/acta22.html#JacobsG85,https://doi.org/10.1007/BF00290146 +Jan van Leeuwen,Stratified Balanced Search Trees.,1982,18,Acta Inf.,,db/journals/acta/acta18.html#LeeuwenO82,https://doi.org/10.1007/BF00289574 +Thomas Ottmann,Purely Top-Down Updating Algorithms for Stratified Search Trees.,1985,22,Acta Inf.,1,db/journals/acta/acta22.html#OttmannSW85,https://doi.org/10.1007/BF00290147 +Friedrich L. Bauer,Crypt-Equivalent Algebraic Specifications.,1988,25,Acta Inf.,2,db/journals/acta/acta25.html#BauerW88,https://doi.org/10.1007/BF00263582 +Alan J. Demers,On Some Decidable Properties of Finite State Translations.,1982,17,Acta Inf.,,db/journals/acta/acta17.html#DemersKR82,https://doi.org/10.1007/BF00264358 +Beate Commentz-Walter,Size-Depth Tradeoff in Monotone Boolean Formulae.,1979,12,Acta Inf.,,db/journals/acta/acta12.html#Comments-Walter79,https://doi.org/10.1007/BF00264580 +Lawrence T. Kou,On Efficient Implementation of an Approximation Algorithm for the Steiner Tree Problem.,1990,27,Acta Inf.,4,db/journals/acta/acta27.html#Kou89,https://doi.org/10.1007/BF00264613 +Alexander Meduna,Coincidental extension of scattered context languages.,2003,39,Acta Inf.,5,db/journals/acta/acta39.html#Meduna03,https://doi.org/10.1007/s00236-003-0112-0 +Henning Fernau,Parallel communicating grammar systems with terminal transmission.,2001,37,Acta Inf.,7,db/journals/acta/acta37.html#Fernau01,https://doi.org/10.1007/PL00013312 +M. Kempf,Time Optimal Left to Right Construction of Position Trees.,1987,24,Acta Inf.,4,db/journals/acta/acta24.html#KempfBG87,https://doi.org/10.1007/BF00292114 +Kim S. Larsen,Relaxed balance for search trees with local rebalancing.,2001,37,Acta Inf.,10,db/journals/acta/acta37.html#LarsenOS01,https://doi.org/10.1007/PL00013303 +Yennun Huang,Analytic Models for the Primary Site Approach to Fault-Tolerance.,1989,26,Acta Inf.,6,db/journals/acta/acta26.html#HuangJ89,https://doi.org/10.1007/BF00263579 +Egon Börger,Concurrent abstract state machines.,2016,53,Acta Inf.,5,db/journals/acta/acta53.html#BorgerS16,https://doi.org/10.1007/s00236-015-0249-7 +Yiwei Jiang,Preemptive online algorithms for scheduling with machine cost.,2005,41,Acta Inf.,6,db/journals/acta/acta41.html#JiangH05,https://doi.org/10.1007/s00236-004-0156-9 +Iain A. Stewart,Logical and Schematic Characterization of Complexity Classes.,1993,30,Acta Inf.,1,db/journals/acta/acta30.html#Stewart93,https://doi.org/10.1007/BF01200263 +Klaus Küspert,Storage Utilization in B*-Trees with a Generalized Overflow Technique.,1983,19,Acta Inf.,,db/journals/acta/acta19.html#Kuspert83,https://doi.org/10.1007/BF00263927 +Foto N. Afrati,View selection for real conjunctive queries.,2007,44,Acta Inf.,5,db/journals/acta/acta44.html#AfratiCGP07,https://doi.org/10.1007/s00236-007-0046-z +Didier Y. Hinz,A Run-Time Load Balancing Strategy for Highly Parallel Systems.,1992,29,Acta Inf.,1,db/journals/acta/acta29.html#Hinz92,https://doi.org/10.1007/BF01178566 +Jesús N. Ravelo,Two Graph Algorithms Derived.,1999,36,Acta Inf.,6,db/journals/acta/acta36.html#Ravelo99,https://doi.org/10.1007/s002360050182 +Javier Esparza,Preface for the special issue GandALF 2015.,2018,55,Acta Inf.,2,db/journals/acta/acta55.html#EsparzaT18,https://doi.org/10.1007/s00236-018-0315-z +Shmuel Sagiv,A Logic-Based Approach to Program Flow Analysis.,1998,35,Acta Inf.,6,db/journals/acta/acta35.html#SagivFRW98,https://doi.org/10.1007/s002360050128 +Jean-François Perrot,Monoïdes syntactiques des langages algébriques.,1977,7,Acta Inf.,,db/journals/acta/acta7.html#Perrot77,https://doi.org/10.1007/BF00289471 +Gaston H. Gonnet,An Algorithmic and Complexity Analysis of Interpolation Search.,1980,13,Acta Inf.,,db/journals/acta/acta13.html#GonnetRG80,https://doi.org/10.1007/BF00288534 +Arturo Carpi,Strongly transitive automata and the Cerný conjecture.,2009,46,Acta Inf.,8,db/journals/acta/acta46.html#CarpiD09,https://doi.org/10.1007/s00236-009-0106-7 +Gadi Taubenfeld,Possibility and Impossibility Results in a Shared Memory Environment.,1996,33,Acta Inf.,1,db/journals/acta/acta33.html#TaubenfeldM96,https://doi.org/10.1007/s002360050034 +Hans-Dieter Ehrich,Specifying Communication in Distributed Information Systems.,2000,36,Acta Inf.,8,db/journals/acta/acta36.html#EhrichC00,https://doi.org/10.1007/s002360050167 +Mike Paterson,Nearly Optimal Hierarchies for Network and Formula Size.,1986,23,Acta Inf.,2,db/journals/acta/acta23.html#PatersonW86,https://doi.org/10.1007/BF00289499 +Martin Zimmermann 0002,Parameterized linear temporal logics meet costs: still not costlier than LTL.,2018,55,Acta Inf.,2,db/journals/acta/acta55.html#Zimmermann18,https://doi.org/10.1007/s00236-016-0279-9 +Jürgen Dingel,Compositional Analysis of C/C++ Programs with VeriSoft.,2006,43,Acta Inf.,1,db/journals/acta/acta43.html#Dingel06,https://doi.org/10.1007/s00236-006-0016-x +Laurent Alonso,On the tree inclusion problem.,2001,37,Acta Inf.,9,db/journals/acta/acta37.html#AlonsoS01,https://doi.org/10.1007/PL00013317 +Alexander Meduna,Controlled finite automata.,2014,51,Acta Inf.,5,db/journals/acta/acta51.html#MedunaZ14,https://doi.org/10.1007/s00236-014-0199-5 +Neal A. Harman,Algebraic Models of Microprocessors: Architecture and Organisation.,1996,33,Acta Inf.,5,db/journals/acta/acta33.html#HarmanT96,https://doi.org/10.1007/s002360050051 +Terrence W. Pratt,Program Analysis and Optimization through Kernel-Control Decomposition.,1978,9,Acta Inf.,,db/journals/acta/acta9.html#Pratt78,https://doi.org/10.1007/BF00288882 +Stéphane Coulondre,A top-down proof procedure for generalized data dependencies.,2003,39,Acta Inf.,1,db/journals/acta/acta39.html#Coulondre03,https://doi.org/10.1007/s00236-002-0095-2 +Toshiro Araki,Flow Languages Equal Recursively Enumerable Languages.,1981,15,Acta Inf.,,db/journals/acta/acta15.html#ArakiT81,https://doi.org/10.1007/BF00289261 +Sibsankar Haldar,Simple Extensions of 1-writer Atomic Variable Constructions to Multiwriter Ones.,1996,33,Acta Inf.,2,db/journals/acta/acta33.html#HaldarV96,https://doi.org/10.1007/s002360050040 +Donna J. Brown,Lower Bounds for On-Line Two-Dimensional Packing Algorithms.,1982,18,Acta Inf.,,db/journals/acta/acta18.html#BrownBK82,https://doi.org/10.1007/BF00264439 +Demetres D. Kouvatsos,A Maximum Entropy Priority Approximation for a Stable G/G/ 1 Queue.,1990,27,Acta Inf.,3,db/journals/acta/acta27.html#KouvatsosT89,https://doi.org/10.1007/BF00572990 +Andrea Maggiolo-Schettini,A Kernel Language for Programmed Rewriting of (Hyper)graphs.,1996,33,Acta Inf.,6,db/journals/acta/acta33.html#Maggiolo-SchettiniW96,https://doi.org/10.1007/BF03036461 +Gerardo Costa,A Fair Calculus of Communicating Systems.,1984,21,Acta Inf.,,db/journals/acta/acta21.html#CostaS84,https://doi.org/10.1007/BF00271640 +Madhu Mutyam,Generalized normal form for rewriting P systems.,2002,38,Acta Inf.,10,db/journals/acta/acta38.html#MutyamK02,https://doi.org/10.1007/s00236-002-0091-6 +Werner Pohlmann,A Fixed Point Approach to Parallel Discrete Event Simulation.,1991,28,Acta Inf.,7,db/journals/acta/acta28.html#Pohlmann91,https://doi.org/10.1007/BF01178679 +Aart Middeldorp,Type Introduction for Equational Rewriting.,2000,36,Acta Inf.,12,db/journals/acta/acta36.html#MiddeldorpO00,https://doi.org/10.1007/PL00013300 +Laura Bozzelli,On decidability of LTL model checking for process rewrite systems.,2009,46,Acta Inf.,1,db/journals/acta/acta46.html#BozzelliKRS09,https://doi.org/10.1007/s00236-008-0082-3 +Michiel H. M. Smid,Maintaining Range Trees in Secondary Memory. Part II: Lower Bounds.,1990,27,Acta Inf.,5,db/journals/acta/acta27.html#SmidO89,https://doi.org/10.1007/BF00289019 +J. W. Cohen,The Multiple Phase Service Network with Generalized Processor Sharing.,1979,12,Acta Inf.,,db/journals/acta/acta12.html#Cohen79,https://doi.org/10.1007/BF00264581 +Richard N. Taylor,Complexity of Analyzing the Synchronization Structure of Concurrent Programs.,1983,19,Acta Inf.,,db/journals/acta/acta19.html#Taylor83,https://doi.org/10.1007/BF00263928 +William E. Wright,Binary Search Trees in Secondary Memory.,1981,15,Acta Inf.,,db/journals/acta/acta15.html#Wright81,https://doi.org/10.1007/BF00269807 +Catherine Mongenet,Geometrical Tools to Map Systems of Affine Recurrence Equations on Regular Arrays.,1994,31,Acta Inf.,2,db/journals/acta/acta31.html#MongenetCP94,https://doi.org/10.1007/BF01192158 +Armin B. Cremers,Orthogonality of Information Structures.,1978,9,Acta Inf.,,db/journals/acta/acta9.html#CremersH78,https://doi.org/10.1007/BF00288884 +Parosh Aziz Abdulla,Stateless model checking for TSO and PSO.,2017,54,Acta Inf.,8,db/journals/acta/acta54.html#AbdullaAAJLS17,https://doi.org/10.1007/s00236-016-0275-0 +Lefteris M. Kirousis,Efficient Algorithms for Checking the Atomicity of a Run of Read and Write Operations.,1995,32,Acta Inf.,2,db/journals/acta/acta32.html#KirousisV95,https://doi.org/10.1007/BF01177745 +Erkki Mäkinen,Minimally adequate teacher synthesizes statechart diagrams.,2002,38,Acta Inf.,4,db/journals/acta/acta38.html#MakinenS02,https://doi.org/10.1007/s236-002-8033-8 +J. W. de Bakker,Order and Metric in the Stream Semantics of Elemental Concurrency.,1987,24,Acta Inf.,5,db/journals/acta/acta24.html#BakkerM87,https://doi.org/10.1007/BF00263291 +Levent V. Orman,Relational Database Constraints as Counterexamples.,1997,34,Acta Inf.,3,db/journals/acta/acta34.html#Orman97,https://doi.org/10.1007/s002360050078 +Fred B. Schneider,Thrifty Execution of Task Pipelines.,1985,22,Acta Inf.,1,db/journals/acta/acta22.html#SchneiderCS85,https://doi.org/10.1007/BF00290144 +Thomas J. Marlowe,Properties of Data Flow Frameworks.,1990,28,Acta Inf.,2,db/journals/acta/acta28.html#MarloweR90,https://doi.org/10.1007/BF01237234 +Gennadi Falin,Information Theoretic Approximations for the M/G/ 1 Retrial Queue.,1994,31,Acta Inf.,6,db/journals/acta/acta31.html#FalinDA94,https://doi.org/10.1007/BF01213207 +Donald E. Knuth,Top-Down Syntax Analysis.,1971,1,Acta Inf.,,db/journals/acta/acta1.html#Knuth71a,https://doi.org/10.1007/BF00289517 +John-Jules Ch. Meyer,Hiding in Stream Semantics of Uniform Concurrency.,1990,27,Acta Inf.,5,db/journals/acta/acta27.html#MeyerO89,https://doi.org/10.1007/BF00289016 +Rudolf Bayer,Data Management Support for Database Management.,1984,21,Acta Inf.,,db/journals/acta/acta21.html#BayerS84,https://doi.org/10.1007/BF00289137 +Chen-Ming Fan,d-Words and d-Languages.,1998,35,Acta Inf.,8,db/journals/acta/acta35.html#FanSY98,https://doi.org/10.1007/s002360050140 +S. O. Anderson,An Alternative Implementation of an Insertion-Only Recovery Technique.,1982,18,Acta Inf.,,db/journals/acta/acta18.html#AndersonB82,https://doi.org/10.1007/BF00263195 +Leah Epstein,Approximation schemes for the Min-Max Starting Time Problem.,2004,40,Acta Inf.,9,db/journals/acta/acta40.html#EpsteinT04,https://doi.org/10.1007/s00236-004-0145-z +Peter G. Harrison,On the Expansion of Non-Linear Functions.,1991,28,Acta Inf.,6,db/journals/acta/acta28.html#Harrison91,https://doi.org/10.1007/BF01463945 +Vincent D. Blondel,Structured Numbers: Properties of a Hierarchy of Operations on Binary Trees.,1998,35,Acta Inf.,1,db/journals/acta/acta35.html#Blondel98,https://doi.org/10.1007/s002360050113 +Mogens Nielsen,EOL Systems with Control Devices.,1974,4,Acta Inf.,,db/journals/acta/acta4.html#Nielsen74,https://doi.org/10.1007/BF00289618 +Clement H. C. Leung,Analysis of Space Allocation in a Generally Fragmented Linear Store.,1987,24,Acta Inf.,1,db/journals/acta/acta24.html#Leung87,https://doi.org/10.1007/BF00290708 +Karel Culik II,Computational Fractal Geometry with WFA.,1997,34,Acta Inf.,2,db/journals/acta/acta34.html#CulikK97,https://doi.org/10.1007/s002360050077 +Thomas J. Ostrand,Parsing Regular Grammars with Finite Lookahead.,1981,16,Acta Inf.,,db/journals/acta/acta16.html#OstrandPW81,https://doi.org/10.1007/BF00261256 +Mark Reynolds,Metric temporal logic revisited.,2016,53,Acta Inf.,3,db/journals/acta/acta53.html#Reynolds16,https://doi.org/10.1007/s00236-015-0243-0 +Ivana Cerná,Comparing Expressibility of Normed BPA and Normed BPP Processes.,1999,36,Acta Inf.,3,db/journals/acta/acta36.html#CernaKK99,https://doi.org/10.1007/s002360050159 +Pascal Caron,Multi-tilde-bar expressions and their automata.,2012,49,Acta Inf.,6,db/journals/acta/acta49.html#CaronCM12,https://doi.org/10.1007/s00236-012-0167-x +Hosam M. Mahmoud,Erratum: The size of random bucket trees via urn models.,2004,41,Acta Inf.,1,db/journals/acta/acta41.html#Mahmoud04a,https://doi.org/10.1007/s00236-004-0148-9 +Luca Aceto,Special issue: Selected papers from the 26th International Conference on Concurrency Theory (CONCUR 2015).,2017,54,Acta Inf.,1,db/journals/acta/acta54.html#AcetoF17,https://doi.org/10.1007/s00236-017-0292-7 +Steven Delvaux,On best transitive approximations to simple graphs.,2004,40,Acta Inf.,9,db/journals/acta/acta40.html#DelvauxH04,https://doi.org/10.1007/s00236-004-0144-0 +Erol Gelenbe,Page Size in Demand-Paging Systems.,1973,3,Acta Inf.,,db/journals/acta/acta3.html#GenlebeTB73,https://doi.org/10.1007/BF00288648 +Martin Wirsing,On Hierarchies of Abstract Data Types.,1983,20,Acta Inf.,,db/journals/acta/acta20.html#WirsingPPD83,https://doi.org/10.1007/BF00264293 +Riccardo Torlone,Update Operations in Deductive Databases with Functional Dependencies.,1994,31,Acta Inf.,6,db/journals/acta/acta31.html#Torlone94,https://doi.org/10.1007/BF01213208 +Joost Engelfriet,Apex Graph Grammars and Attribute Grammars.,1988,25,Acta Inf.,5,db/journals/acta/acta25.html#EngelfrietLR88,https://doi.org/10.1007/BF00279953 +Masahiro Miyakawa,Optimum Decision Trees - An Optimal Variable Theorem and its Related Applications.,1985,22,Acta Inf.,5,db/journals/acta/acta22.html#Miyakawa85,https://doi.org/10.1007/BF00267042 +Jörg-Rüdiger Sack,An Algorithm for Merging Heaps.,1985,22,Acta Inf.,2,db/journals/acta/acta22.html#SackS85,https://doi.org/10.1007/BF00264229 +Balakrishnan Krishnamurthy,Short Proofs for Tricky Formulas.,1985,22,Acta Inf.,3,db/journals/acta/acta22.html#Krishnamurthy85,https://doi.org/10.1007/BF00265682 +William E. Wright,Some Average Performance Measures for the B-Tree.,1985,21,Acta Inf.,,db/journals/acta/acta21.html#Wright85,https://doi.org/10.1007/BF00289710 +Leslie Lamport,The 'Hoare Logic' of Concurrent Programs.,1980,14,Acta Inf.,,db/journals/acta/acta14.html#Lamport80,https://doi.org/10.1007/BF00289062 +Flaviu Cristian,Robust Data Types.,1982,17,Acta Inf.,,db/journals/acta/acta17.html#Cristian82,https://doi.org/10.1007/BF00264158 +Rudolf Bayer,Concurrency of Operations on B-Trees.,1977,9,Acta Inf.,,db/journals/acta/acta9.html#BayerS77,https://doi.org/10.1007/BF00263762 +Otto Nurmi,Chromatic Binary Search Trees. A Structure for Concurrent Rebalancing.,1996,33,Acta Inf.,6,db/journals/acta/acta33.html#NurmiS96,https://doi.org/10.1007/BF03036462 +Markku Tamminen,Constructing Maximal Slicings from Geometry.,1986,23,Acta Inf.,3,db/journals/acta/acta23.html#TamminenLSWW86,https://doi.org/10.1007/BF00289114 +Amir M. Ben-Amram,A complexity tradeoff in ranking-function termination proofs.,2009,46,Acta Inf.,1,db/journals/acta/acta46.html#Ben-Amram09,https://doi.org/10.1007/s00236-008-0085-0 +Roberto Barbuti,Timed automata with urgent transitions.,2004,40,Acta Inf.,5,db/journals/acta/acta40.html#BarbutiT04,https://doi.org/10.1007/s00236-003-0135-6 +Jean-Michel Autebert,Formes de langages et de grammaires.,1982,17,Acta Inf.,,db/journals/acta/acta17.html#AutebertBB82,https://doi.org/10.1007/BF00288970 +Edward A. Bender,Optimal Worst Case Trees.,1987,24,Acta Inf.,4,db/journals/acta/acta24.html#BenderPW87,https://doi.org/10.1007/BF00292115 +Edward G. Coffman Jr.,An efficient algorithm for finding ideal schedules.,2012,49,Acta Inf.,1,db/journals/acta/acta49.html#CoffmanDK12,https://doi.org/10.1007/s00236-011-0146-7 +José Luiz Fiadeiro,Specification and Verification of Database Dynamics.,1988,25,Acta Inf.,6,db/journals/acta/acta25.html#FiadeiroS88,https://doi.org/10.1007/BF00291052 +John E. Shore,Information Theoretic Approximations for M/G/ 1 und G/G/ 1 Queuing Systems.,1982,17,Acta Inf.,,db/journals/acta/acta17.html#Shore82,https://doi.org/10.1007/BF00262975 +Peter Klein,A Lower Time Bound for the Knapsack Problem on Random Access Machines.,1983,19,Acta Inf.,,db/journals/acta/acta19.html#KleinH83,https://doi.org/10.1007/BF00290735 +Alistair Moffat,A Tree-Based Mergesort.,1998,35,Acta Inf.,9,db/journals/acta/acta35.html#MoffatPW98,https://doi.org/10.1007/s002360050142 +Ashok K. Agrawala,On an Exponential Server with General Cyclic Arrivals.,1982,18,Acta Inf.,,db/journals/acta/acta18.html#AtrawalaT82,https://doi.org/10.1007/BF00263197 +Lutz Eichner,Total lineare Realisierbarkeit endlicher Automaten.,1974,3,Acta Inf.,,db/journals/acta/acta3.html#Eichner74,https://doi.org/10.1007/BF00263591 +Peter Deussen,A Decidability Criterion for van Wijngaarden Grammars.,1975,5,Acta Inf.,,db/journals/acta/acta5.html#Deussen75,https://doi.org/10.1007/BF00264566 +Leah Epstein,Online square and cube packing.,2005,41,Acta Inf.,9,db/journals/acta/acta41.html#EpsteinS05,https://doi.org/10.1007/s00236-005-0169-z +Meurig Beynon,Replaceability and Computational Equivalence for Monotone Boolean Functions.,1985,22,Acta Inf.,4,db/journals/acta/acta22.html#Beynon85,https://doi.org/10.1007/BF00288777 +Jürgen Avenhaus,Subrekursive Komplexität bei Gruppen: II. Der Einbettungssatz von Higman für entscheidbare Gruppen.,1978,9,Acta Inf.,,db/journals/acta/acta9.html#AvenhausM78,https://doi.org/10.1007/BF00289077 +M. W. Du,A Model and a Fast Algorithm for Multiple Errors Spelling Correction.,1992,29,Acta Inf.,3,db/journals/acta/acta29.html#DuC92,https://doi.org/10.1007/BF01185682 +Jan van Leeuwen,A Useful Lemma for Context-Free Programmed Grammars.,1979,11,Acta Inf.,,db/journals/acta/acta11.html#Leeuwen79,https://doi.org/10.1007/BF00289095 +Ichiro Suzuki,Three Measures for Synchronic Dependence in Petri Nets.,1983,19,Acta Inf.,,db/journals/acta/acta19.html#SuzukiK83,https://doi.org/10.1007/BF00290730 +Desh Ranjan,Data structures for order-sensitive predicates in parallel nondeterministic systems.,2000,37,Acta Inf.,1,db/journals/acta/acta37.html#RanjanPG00,https://doi.org/10.1007/PL00013301 +Anthony E. Krzesinski,A Multiclass Networt Model of a Demand Paging Computer System.,1978,9,Acta Inf.,,db/journals/acta/acta9.html#KrzesinskiT78,https://doi.org/10.1007/BF00289046 +Rza Bashirov,Exploiting colored Petri nets to decide on permutation admissibility.,2009,46,Acta Inf.,1,db/journals/acta/acta46.html#BashirovKL09,https://doi.org/10.1007/s00236-008-0084-1 +Aris M. Ouksel,A Robust and Efficient Spatial Data Structure.,1992,29,Acta Inf.,4,db/journals/acta/acta29.html#OukselM92,https://doi.org/10.1007/BF01178777 +Robert E. Shostak,On the Role of Unification in Mechanical Theorem Proving.,1977,7,Acta Inf.,,db/journals/acta/acta7.html#Shostak77,https://doi.org/10.1007/BF00290340 +Hosam M. Mahmoud,On the Average Internal Path Length of m -ary Search Trees.,1986,23,Acta Inf.,1,db/journals/acta/acta23.html#Mahmoud86,https://doi.org/10.1007/BF00268078 +Jetty Kleijn,Step semantics of boolean nets.,2013,50,Acta Inf.,1,db/journals/acta/acta50.html#KleijnKPR13,https://doi.org/10.1007/s00236-012-0170-2 +Anthony J. Bonner,Querying Sequence Databases with Transducers.,2000,36,Acta Inf.,7,db/journals/acta/acta36.html#BonnerM00,https://doi.org/10.1007/s002360050001 +Karl Unterauer,Dynamic Weighted Binary Search Trees.,1979,11,Acta Inf.,,db/journals/acta/acta11.html#Unterauer79,https://doi.org/10.1007/BF00289093 +Huei-Jan Shyr,Bi-Catenation and Shuffle Product of Languages.,1998,35,Acta Inf.,8,db/journals/acta/acta35.html#ShyrY98,https://doi.org/10.1007/s002360050139 +Juris Hartmanis,On Non-Determinancy in Simple Computing Devices.,1972,1,Acta Inf.,,db/journals/acta/acta1.html#Hartmanis72,https://doi.org/10.1007/BF00289513 +Johannes Reichardt,Deterministic Grammars and Grammar Morphisms.,1986,23,Acta Inf.,5,db/journals/acta/acta23.html#Reichardt86,https://doi.org/10.1007/BF00288470 +Danny Dubé,Efficiently building a parse tree from a regular expression.,2000,37,Acta Inf.,2,db/journals/acta/acta37.html#DubeF00,https://doi.org/10.1007/s002360000037 +Javier Esparza,Verification of population protocols.,2017,54,Acta Inf.,2,db/journals/acta/acta54.html#EsparzaGLM17,https://doi.org/10.1007/s00236-016-0272-3 +Wim H. Hesselink,Refinement verification of the lazy caching algorithm.,2006,43,Acta Inf.,3,db/journals/acta/acta43.html#Hesselink06a,https://doi.org/10.1007/s00236-006-0020-1 +Eric C. R. Hehner,do Considered od: A Contribution to the Programming Calculus.,1979,11,Acta Inf.,,db/journals/acta/acta11.html#Hehner79,https://doi.org/10.1007/BF00289091 +Dongfeng Chen,Query optimization in information integration.,2013,50,Acta Inf.,4,db/journals/acta/acta50.html#ChenCSS13,https://doi.org/10.1007/s00236-013-0179-1 +Xiaolei Qian,The Expressive Power of the Bounded-Iteration Construct.,1991,28,Acta Inf.,7,db/journals/acta/acta28.html#Qian91,https://doi.org/10.1007/BF01178680 +Hessam Khoshnevisan,Efficient Memo-Table Management Strategies.,1990,28,Acta Inf.,1,db/journals/acta/acta28.html#Khoshnevisan90,https://doi.org/10.1007/BF02983374 +Volker Claus,Die mittlere Additionsdauer eines Paralleladdierwerks,1973,2,Acta Inf.,,db/journals/acta/acta2.html#Claus73, +Peter Deussen,Van Wijngaarden Grammars and Space Complexity Classs EXSPACE.,1977,8,Acta Inf.,,db/journals/acta/acta8.html#DeussenM77,https://doi.org/10.1007/BF00289249 +Bennett L. Fox,Reducing the Number of Multiplikations in Iterative Processes.,1973,3,Acta Inf.,,db/journals/acta/acta3.html#Fox73,https://doi.org/10.1007/BF00288651 +Werner Kuich,The Characterization of Parallel Ultralinear Grammars by Rational Power Series.,1981,15,Acta Inf.,,db/journals/acta/acta15.html#Kuich81,https://doi.org/10.1007/BF00288960 +Joachim Biskup,Optimization of a Subclass of Conjunctive Queries.,1995,32,Acta Inf.,1,db/journals/acta/acta32.html#BiskupDS95,https://doi.org/10.1007/BF01185403 +Zohar Manna,Axiomatic Approach to Total Correctness of Programs.,1974,3,Acta Inf.,,db/journals/acta/acta3.html#MannaP74,https://doi.org/10.1007/BF00288637 +James D. Currie,On Abelian 2-avoidable binary patterns.,2007,43,Acta Inf.,8,db/journals/acta/acta43.html#CurrieV07,https://doi.org/10.1007/s00236-006-0030-z +Matthew Hennessy,Concurrent Testing of Processes.,1995,32,Acta Inf.,6,db/journals/acta/acta32.html#Hennessy95,https://doi.org/10.1007/BF01178906 +Salvatore La Torre,Timed tree automata with an application to temporal logic.,2001,38,Acta Inf.,2,db/journals/acta/acta38.html#TorreN01,https://doi.org/10.1007/s002360100067 +Susan Horwitz,Efficient Comparison of Program Slices.,1991,28,Acta Inf.,8,db/journals/acta/acta28.html#HorwitzR91,https://doi.org/10.1007/BF01261653 +Per Brinch Hansen,"A Reply to Comments on ""A Comparison of Two Synchronizing Concepts""",1973,2,Acta Inf.,,db/journals/acta/acta2.html#Hansen73, +Victor Mitrana,New bounds for the query complexity of an algorithm that learns DFAs with correction and equivalence queries.,2011,48,Acta Inf.,1,db/journals/acta/acta48.html#MitranaT11,https://doi.org/10.1007/s00236-010-0130-7 +Alexandru Mateescu,On Simplest Possible Solutions for Post Correspondence Problems.,1993,30,Acta Inf.,5,db/journals/acta/acta30.html#MateescuS93,https://doi.org/10.1007/BF01210595 +A. J. Kfoury,Necessary and Sufficient Conditions for the Universality of Programming Formalisms.,1985,22,Acta Inf.,4,db/journals/acta/acta22.html#KfouryU85,https://doi.org/10.1007/BF00288773 +Sheldon Shen,Cooperative Distributed Dynamic Load Balancing.,1988,25,Acta Inf.,6,db/journals/acta/acta25.html#Shen88,https://doi.org/10.1007/BF00291053 +Aivars Lorencs,The identity problem of finitely generated bi-ideals.,2012,49,Acta Inf.,2,db/journals/acta/acta49.html#Lorencs12,https://doi.org/10.1007/s00236-012-0152-4 +Martin Kutrib,The Boolean closure of linear context-free languages.,2008,45,Acta Inf.,3,db/journals/acta/acta45.html#KutribMW08,https://doi.org/10.1007/s00236-007-0068-6 +Gerd Kaufholz,über die Vernetzungsstruktur von Maschinen.,1974,3,Acta Inf.,,db/journals/acta/acta3.html#Kaufholz74,https://doi.org/10.1007/BF00264036 +Mila E. Majster-Cederbaum,Towards action refinement for true concurrent real time.,2003,39,Acta Inf.,8,db/journals/acta/acta39.html#Majster-CederbaumW03,https://doi.org/10.1007/s00236-003-0117-8 +Rance Cleaveland,Tableau-Based Model Checking in the Propositional Mu-Calculus.,1990,27,Acta Inf.,8,db/journals/acta/acta27.html#Cleaveland89,https://doi.org/10.1007/BF00264284 +John H. Reif,The Complexity of Reachability in Distributed Communicating Processes.,1988,25,Acta Inf.,3,db/journals/acta/acta25.html#ReifS88,https://doi.org/10.1007/BF00283332 +Leah Epstein,Bin stretching revisited.,2003,39,Acta Inf.,2,db/journals/acta/acta39.html#Epstein03,https://doi.org/10.1007/s00236-002-0102-7 +Paolo Zuliani,Reasoning about faulty quantum programs.,2009,46,Acta Inf.,6,db/journals/acta/acta46.html#Zuliani09,https://doi.org/10.1007/s00236-009-0100-0 +Henk Alblas,A Characterization of Attribute Evaluation in Passes.,1981,16,Acta Inf.,,db/journals/acta/acta16.html#Alblas81,https://doi.org/10.1007/BF00264495 +Ralph-Johan Back,A Calculus of Refinements for Program Derivations.,1988,25,Acta Inf.,6,db/journals/acta/acta25.html#Back88,https://doi.org/10.1007/BF00291051 +Ladislav Vagner,Parallel LL parsing.,2007,44,Acta Inf.,1,db/journals/acta/acta44.html#VagnerM07a,https://doi.org/10.1007/s00236-006-0032-x +Krzysztof R. Apt,Recursive Assertions and Parallel Programs.,1981,15,Acta Inf.,,db/journals/acta/acta15.html#Apt81,https://doi.org/10.1007/BF00289262 +Petr A. Golovach,Finding vertex-surjective graph homomorphisms.,2012,49,Acta Inf.,6,db/journals/acta/acta49.html#GolovachLMP12,https://doi.org/10.1007/s00236-012-0164-0 +Jeffrey D. Ullman,Fast Algorithms for the Elimination of Common Subexpressions,1973,2,Acta Inf.,,db/journals/acta/acta2.html#Ullman73, +Piotr Rudnicki,Erratum: Proving Properties of Pascal Programs in MIZAR 2.,1986,22,Acta Inf.,6,db/journals/acta/acta22.html#RudnickiD86,https://doi.org/10.1007/BF00263652 +Henning Fernau,Unconditional Transfer in Regulated Rewriting.,1997,34,Acta Inf.,11,db/journals/acta/acta34.html#Fernau97,https://doi.org/10.1007/s002360050108 +Lynn Robert Carter,Further Analysis of Code Generation for a Single Register Machine.,1982,18,Acta Inf.,,db/journals/acta/acta18.html#Carter82,https://doi.org/10.1007/BF00264435 +Leslie Lamport,The Synchronization of Independent Processes.,1976,7,Acta Inf.,,db/journals/acta/acta7.html#Lamport76,https://doi.org/10.1007/BF00265219 +Tsutomu Kamimura,An Effectively Given Initial Semigroup.,1985,22,Acta Inf.,2,db/journals/acta/acta22.html#Kamimura85,https://doi.org/10.1007/BF00264231 +Victor Khomenko,Canonical prefixes of Petri net unfoldings.,2003,40,Acta Inf.,2,db/journals/acta/acta40.html#KhomenkoKV03,https://doi.org/10.1007/s00236-003-0122-y +Zdenek Sawa,Hardness of equivalence checking for composed finite-state systems.,2009,46,Acta Inf.,3,db/journals/acta/acta46.html#SawaJ09,https://doi.org/10.1007/s00236-008-0088-x +Luc Duponcheel,Acceptable Functional Programming Systems.,1986,23,Acta Inf.,1,db/journals/acta/acta23.html#DuponcheelD86,https://doi.org/10.1007/BF00268076 +Wim H. Hesselink,Preference rankings in the face of uncertainty.,2003,39,Acta Inf.,3,db/journals/acta/acta39.html#Hesselink03,https://doi.org/10.1007/s00236-003-0108-9 +Stephan Heilbrunner,Truly Prefix-Correct Chain-Free LR (1) Parsers.,1985,22,Acta Inf.,5,db/journals/acta/acta22.html#Heilbrunner85,https://doi.org/10.1007/BF00267043 +Vernon Rego,Some Efficient Computational Algorithms Related to Phase Models.,1989,27,Acta Inf.,2,db/journals/acta/acta27.html#Rego89,https://doi.org/10.1007/BF00265152 +Tomasz Kowaltowski,Axiomatic Approach to Side Effects and General Jumps.,1977,7,Acta Inf.,,db/journals/acta/acta7.html#Kowaltowski77,https://doi.org/10.1007/BF00289468 +Xavier Nicollin,From ATP to Timed Graphs and Hybrid Systems.,1993,30,Acta Inf.,2,db/journals/acta/acta30.html#NicollinSY93,https://doi.org/10.1007/BF01178579 +Vladimir G. Deineko,On the Recognition of Permuted Supnick and Incomplete Monge Matrices.,1996,33,Acta Inf.,6,db/journals/acta/acta33.html#DeinekoRW96,https://doi.org/10.1007/BF03036463 +Jürgen Dassow,Tree-systems of morphisms.,2001,38,Acta Inf.,2,db/journals/acta/acta38.html#DassowPTY01,https://doi.org/10.1007/s002360100072 +Christian Choffrut,First-order logics: some characterizations and closure properties.,2012,49,Acta Inf.,4,db/journals/acta/acta49.html#ChoffrutMMP12,https://doi.org/10.1007/s00236-012-0157-z +Wen-Jing Hsu,Parallel Tree Contraction and Prefix Computations on a Large Family of Interconnection Topologies.,1995,32,Acta Inf.,2,db/journals/acta/acta32.html#HsuP95,https://doi.org/10.1007/BF01177744 +Grzegorz Rozenberg,Developmental Systems with Locally Catenative Formulas,1973,2,Acta Inf.,,db/journals/acta/acta2.html#RozenbergL73, +Shlomi Dolev,Self-stabilizing group communication in directed networks.,2004,40,Acta Inf.,9,db/journals/acta/acta40.html#DolevS04,https://doi.org/10.1007/s00236-004-0143-1 +Artem Polyvyanyy,Connectivity of workflow nets: the foundations of stepwise verification.,2011,48,Acta Inf.,4,db/journals/acta/acta48.html#PolyvyanyyWW11,https://doi.org/10.1007/s00236-011-0137-8 +Fred Kröger,LAR: A Logic of Algorithmic Reasoning.,1977,8,Acta Inf.,,db/journals/acta/acta8.html#Kroger77,https://doi.org/10.1007/BF00264469 +Armin Kühnemann,Synthesized and Inherited Functions. A new Computational Model for Syntax-Directed Semantic.,1994,31,Acta Inf.,5,db/journals/acta/acta31.html#KuhnemannV94,https://doi.org/10.1007/BF01178667 +Andrzej Ehrenfeucht,On Proving that Certain Languages are not ETOL.,1976,6,Acta Inf.,,db/journals/acta/acta6.html#EhrenfeuchtR76,https://doi.org/10.1007/BF00268142 +Ole Eriksen,Concurrent Algorithms for Root Searching.,1982,18,Acta Inf.,,db/journals/acta/acta18.html#EriksenS82,https://doi.org/10.1007/BF00289575 +Christel Baier,Stochastic game logic.,2012,49,Acta Inf.,4,db/journals/acta/acta49.html#BaierBGK12,https://doi.org/10.1007/s00236-012-0156-0 +D. T. Lee,Worst-Case Analysis for Region and Partial Region Searches in Multidimensional Binary Search Trees and Balanced Quad Trees.,1977,9,Acta Inf.,,db/journals/acta/acta9.html#LeeW77,https://doi.org/10.1007/BF00263763 +Jay Earley,Ambiguity and Precedence in Syntax Description.,1974,4,Acta Inf.,,db/journals/acta/acta4.html#Earley74,https://doi.org/10.1007/BF00288747 +Athanasios K. Tsakalidis,Maintaining Order in a Generalized Linked List.,1984,21,Acta Inf.,,db/journals/acta/acta21.html#Tsakalidis84,https://doi.org/10.1007/BF00289142 +George W. Ernst,Verification of Programs with Procedure-Type Parameter.,1982,18,Acta Inf.,,db/journals/acta/acta18.html#ErnstNO82,https://doi.org/10.1007/BF00264436 +Sadegh Esmaeil Zadeh Soudjani,Dynamic Bayesian networks for formal verification of structured stochastic processes.,2017,54,Acta Inf.,2,db/journals/acta/acta54.html#SoudjaniAM17,https://doi.org/10.1007/s00236-016-0287-9 +Peter J. L. Wallis,The Design of a Portable Programming Language.,1978,10,Acta Inf.,,db/journals/acta/acta10.html#Wallis78,https://doi.org/10.1007/BF00289153 +Betty Salzberg,Merging Sorted Runs Using Large Main Memory.,1990,27,Acta Inf.,3,db/journals/acta/acta27.html#Salzberg89,https://doi.org/10.1007/BF00572988 +Ali Mili,Strongest Invariant Functions: Their Use in the Systematic Analysis of While Statements.,1985,22,Acta Inf.,1,db/journals/acta/acta22.html#MiliDG85,https://doi.org/10.1007/BF00290145 +Hing Leung,On Finite Automata with Limited Nondeterminism.,1998,35,Acta Inf.,7,db/journals/acta/acta35.html#Leung98,https://doi.org/10.1007/s002360050133 +Chen-Ming Fan,Some properties of involution binary relations.,2015,52,Acta Inf.,6,db/journals/acta/acta52.html#FanWH15,https://doi.org/10.1007/s00236-014-0208-8 +Karl Meinke,Correctness of dataflow and systolic algorithms using algebras of streams.,2001,38,Acta Inf.,1,db/journals/acta/acta38.html#MeinkeS01,https://doi.org/10.1007/PL00013322 +Stefan Hertel,Space Sweep Solves Intersection of Convex Polyhedra.,1984,21,Acta Inf.,,db/journals/acta/acta21.html#HertelMMN84,https://doi.org/10.1007/BF00271644 +Joseph A. Bannister,Task Allocation in Fault-Tolerant Distributed Systems.,1983,20,Acta Inf.,,db/journals/acta/acta20.html#BannisterT83,https://doi.org/10.1007/BF01257086 +Ulf R. Schmerl,Resolution on Formula-Trees.,1988,25,Acta Inf.,4,db/journals/acta/acta25.html#Schmerl88,https://doi.org/10.1007/BF02737109 +Marek J. Lao,Combinator-Based Compilation of Recursive Functions with Different Parameter Passing Modes.,1987,24,Acta Inf.,6,db/journals/acta/acta24.html#Lao87,https://doi.org/10.1007/BF00282620 +Jacques Cohen,On the Implementation of Strassen's Fast Multiplication Algorithm.,1976,6,Acta Inf.,,db/journals/acta/acta6.html#CohenR76,https://doi.org/10.1007/BF00268135 +Chung-Yee Lee,Single Machine Flow-Time Scheduling with Scheduled Maintenance.,1992,29,Acta Inf.,4,db/journals/acta/acta29.html#LeeL92,https://doi.org/10.1007/BF01178778 +Wolfgang J. Paul,On Alternation.,1980,14,Acta Inf.,,db/journals/acta/acta14.html#PaulPR80,https://doi.org/10.1007/BF00264255 +Jean-Pierre Banâtre,A Network for the Detection of Words in Continuous Speech.,1982,18,Acta Inf.,,db/journals/acta/acta18.html#BanatreFQ82,https://doi.org/10.1007/BF00289579 +Wilf R. LaLonde,Constructing LR Parsers for Regular Right Part Grammars.,1979,11,Acta Inf.,,db/journals/acta/acta11.html#LaLonde79,https://doi.org/10.1007/BF00264024 +Manuel Sorge,Exploiting a hypergraph model for finding Golomb rulers.,2014,51,Acta Inf.,7,db/journals/acta/acta51.html#SorgeMNW14,https://doi.org/10.1007/s00236-014-0202-1 +Hendrik Jan Hoogeboom,Fair sticker languages.,2000,37,Acta Inf.,3,db/journals/acta/acta37.html#HoogeboomV00,https://doi.org/10.1007/PL00006050 +Hirokazu Nishimura,Descriptively Complete Process Logic.,1980,14,Acta Inf.,,db/journals/acta/acta14.html#Nishimura80,https://doi.org/10.1007/BF00286492 +Wim H. Hesselink,Predicate-Transformer Semantics of General Recursion.,1989,26,Acta Inf.,4,db/journals/acta/acta26.html#Hesselink89,https://doi.org/10.1007/BF00276020 +Dimitrios Kouzapas,Characteristic bisimulation for higher-order session processes.,2017,54,Acta Inf.,3,db/journals/acta/acta54.html#KouzapasPY17,https://doi.org/10.1007/s00236-016-0289-7 +Paulo Tabuada,Symbolic models for control systems.,2007,43,Acta Inf.,7,db/journals/acta/acta43.html#Tabuada07,https://doi.org/10.1007/s00236-006-0036-6 +James E. Donahue,Locations Considered Unnecessary.,1977,8,Acta Inf.,,db/journals/acta/acta8.html#Donahue77,https://doi.org/10.1007/BF00264468 +Wolfgang K. Giloi,Interactaive Graphics on Intelligent Terminals in a Time-Sharing Environment.,1975,5,Acta Inf.,,db/journals/acta/acta5.html#GiloiES75,https://doi.org/10.1007/BF00264561 +Anthony J. Fisher,"A ""Yo-Yo"" Parsing Algorithm for a Large Class of van Wijngaarden Grammars.",1992,29,Acta Inf.,5,db/journals/acta/acta29.html#Fisher92,https://doi.org/10.1007/BF01193578 +Friedrich Otto,Decision Problems for Finite Special String-Rewriting Systems that are Confluent on Some Congruence Class.,1991,28,Acta Inf.,5,db/journals/acta/acta28.html#OttoZ91,https://doi.org/10.1007/BF01178585 +Suoping Li,Delay and energy efficiency analysis of multicast cooperative ARQ over wireless networks.,2014,51,Acta Inf.,1,db/journals/acta/acta51.html#LiZZ14,https://doi.org/10.1007/s00236-013-0192-4 +Symeon Bozapalidis,Effective Construction of the Syntactic Algebra of a Recognizable Series on Trees.,1991,28,Acta Inf.,4,db/journals/acta/acta28.html#Bozapalidis91,https://doi.org/10.1007/BF01893886 +Alexander Tuzhilin,Querying Datalog Programs with Temporal Logic.,1993,30,Acta Inf.,7,db/journals/acta/acta30.html#Tuzhilin93,https://doi.org/10.1007/BF01191723 +Patricia Bouyer,Average-energy games.,2018,55,Acta Inf.,2,db/journals/acta/acta55.html#BouyerMRLL18,https://doi.org/10.1007/s00236-016-0274-1 +Hans-Dieter Ehrich,Grundlagen einer Theorie der Datenstrukturen und Zugriffssysteme. Teil I: Datenstrukturen und Schemata.,1974,4,Acta Inf.,,db/journals/acta/acta4.html#Ehrich74,https://doi.org/10.1007/BF00288726 +Tero Harju,Periods in Extensions of Words.,2006,43,Acta Inf.,3,db/journals/acta/acta43.html#HarjuN06,https://doi.org/10.1007/s00236-006-0014-z +Andrea Marin,On the relations between Markov chain lumpability and reversibility.,2017,54,Acta Inf.,5,db/journals/acta/acta54.html#MarinR17,https://doi.org/10.1007/s00236-016-0266-1 +Michele Boreale,A Fully Abstract Semantics for Causality in the \pi-Calculus.,1998,35,Acta Inf.,5,db/journals/acta/acta35.html#BorealeS98,https://doi.org/10.1007/s002360050124 +David Pager,A Practical General Method for Constructing LR(k) Parsers.,1977,7,Acta Inf.,,db/journals/acta/acta7.html#Pager77a,https://doi.org/10.1007/BF00290336 +Volker Strassen,Berechnung und Programm. I.,1972,1,Acta Inf.,,db/journals/acta/acta1.html#Strassen72,https://doi.org/10.1007/BF00289512 +Frank K. Hwang,Optimal Merging of 2 Elements with n Elements.,1971,1,Acta Inf.,,db/journals/acta/acta1.html#HwangL71,https://doi.org/10.1007/BF00289521 +Gunnar Stålmarck,Short Resolution Proofs for a Sequence of Tricky Formulas.,1996,33,Acta Inf.,3,db/journals/acta/acta33.html#Stalmarck96,https://doi.org/10.1007/s002360050044 +Jay Earley,Relational Level Data Structures for Programming Languages,1973,2,Acta Inf.,,db/journals/acta/acta2.html#Earley73, +J. Eve,On Computing the Transitive Closure of a Relation.,1977,8,Acta Inf.,,db/journals/acta/acta8.html#EveK77,https://doi.org/10.1007/BF00271339 +Alain J. Martin,A General Proof Rule for Procedures in Predicate Transformer Semantics.,1983,20,Acta Inf.,,db/journals/acta/acta20.html#Martin83,https://doi.org/10.1007/BF00264276 +Colin Adams,An Experimentally Validated Model of the Paging Drum.,1979,11,Acta Inf.,,db/journals/acta/acta11.html#AdamsGV79,https://doi.org/10.1007/BF00264019 +Ronald V. Book,Inherently Nonplanar Automata.,1976,6,Acta Inf.,,db/journals/acta/acta6.html#BookC76,https://doi.org/10.1007/BF00263745 +Edward G. Coffman Jr.,Packing rectangles in a strip.,2002,38,Acta Inf.,10,db/journals/acta/acta38.html#CoffmanDW02,https://doi.org/10.1007/s00236-002-0089-0 +Amrinder Arora,Throughput analysis in wireless networks with multiple users and multiple channels.,2006,43,Acta Inf.,3,db/journals/acta/acta43.html#AroraJSMC06,https://doi.org/10.1007/s00236-006-0012-1 +Peter Deussen,A Unified Approach to the Generation and the Acception of Formal Languages.,1978,9,Acta Inf.,,db/journals/acta/acta9.html#Deussen78,https://doi.org/10.1007/BF00289049 +Tamás Gergely,A Theory of Interactive Programming.,1982,17,Acta Inf.,,db/journals/acta/acta17.html#GergelyU82,https://doi.org/10.1007/BF00262972 +Suoping Li,Analysis of dual-hop and multiple relays cooperative truncated ARQ with relay selection in WSNs.,2016,53,Acta Inf.,1,db/journals/acta/acta53.html#LiZPDZ16,https://doi.org/10.1007/s00236-015-0232-3 +Paul E. S. Dunne,A 2.5n Lower Bound on the Monotone Network Complexity of T_3^n.,1985,22,Acta Inf.,2,db/journals/acta/acta22.html#Dunne85,https://doi.org/10.1007/BF00264232 +Oscar H. Ibarra,A Characterization of Systolic Binary Tree Automata and Applications.,1984,21,Acta Inf.,,db/journals/acta/acta21.html#IbarraK84,https://doi.org/10.1007/BF00289240 +Elvira Locuratolo,Conceptual Classes and System Classes in Object Databases.,1998,35,Acta Inf.,3,db/journals/acta/acta35.html#LocuratoloR98,https://doi.org/10.1007/s002360050118 +Jakob Gonczarowski,Decidable Properties of Monadic Recursive Schemas With a Depth Parameter.,1985,22,Acta Inf.,3,db/journals/acta/acta22.html#Gonczarowski85,https://doi.org/10.1007/BF00265683 +P. Bouchet,Procédures de reprise dans les systèmes de gestion de base de données réparties.,1979,11,Acta Inf.,,db/journals/acta/acta11.html#Bouchet79,https://doi.org/10.1007/BF00289092 +Alexandre Brandwajn,A Model of a Virtual Memory System.,1976,6,Acta Inf.,,db/journals/acta/acta6.html#Brandwajn76,https://doi.org/10.1007/BF00268138 +Frank Tip,Class Hierarchy Specialization.,2000,36,Acta Inf.,12,db/journals/acta/acta36.html#TipS00,https://doi.org/10.1007/PL00013298 +Maurice Clint,Program Proving: Coroutines.,1973,2,Acta Inf.,,db/journals/acta/acta2.html#Clint73,https://doi.org/10.1007/BF00571463 +édouard Bonnet,Sparsification and subexponential approximation.,2018,55,Acta Inf.,1,db/journals/acta/acta55.html#BonnetP18,https://doi.org/10.1007/s00236-016-0281-2 +Jan Van den Bussche,Converting Untyped Formulas to Typed Ones.,1998,35,Acta Inf.,8,db/journals/acta/acta35.html#BusscheC98,https://doi.org/10.1007/s002360050135 +Karel Culík,Sequential and Jumping Machines and their Relation to Computers,1973,2,Acta Inf.,,db/journals/acta/acta2.html#CulikA73, +Zvi M. Kedem,A Characterization of Database Graphs Admitting a Simple Locking Protocol.,1981,16,Acta Inf.,,db/journals/acta/acta16.html#KedemS81,https://doi.org/10.1007/BF00289586 +Robert B. K. Dewar,Some Modified Algorithms for Dijkstra's Longest Upsequence Problem.,1982,18,Acta Inf.,,db/journals/acta/acta18.html#DewarMS82,https://doi.org/10.1007/BF00625277 +Dominique Perrin,Congruences et Automorphismes des Automates Finis.,1971,1,Acta Inf.,,db/journals/acta/acta1.html#PerrinP71,https://doi.org/10.1007/BF00289522 +Luc Boasson,Familles de langages translatables et fermées par crochet,1973,2,Acta Inf.,,db/journals/acta/acta2.html#BoassonCN73, +Philippe Nain,Partage de tâches entre processeurs homogenes.,1982,18,Acta Inf.,,db/journals/acta/acta18.html#Nain82,https://doi.org/10.1007/BF00289580 +Carl Langenhop,A Model of the Dynamic Behavior of B-Trees.,1989,27,Acta Inf.,1,db/journals/acta/acta27.html#LangenhopW89,https://doi.org/10.1007/BF00263500 +Eljas Soisalon-Soininen,A Method for Transforming Grammars into LL(k) Form.,1979,12,Acta Inf.,,db/journals/acta/acta12.html#Soisalon-SoininenU79,https://doi.org/10.1007/BF00268320 +Mirko Krivánek, NP -Hard Problems in Hierarchical-Tree Clustering.,1986,23,Acta Inf.,3,db/journals/acta/acta23.html#KrivanekM86,https://doi.org/10.1007/BF00289116 +Joost Engelfriet,The time complexity of typechecking tree-walking tree transducers.,2009,46,Acta Inf.,2,db/journals/acta/acta46.html#Engelfriet09,https://doi.org/10.1007/s00236-008-0087-y +Jifeng He,General Predicate Transformer and the Semantics of a Programming Language With Go To Statement.,1983,20,Acta Inf.,,db/journals/acta/acta20.html#He83,https://doi.org/10.1007/BF00264294 +Hans Langmaack,Application of Regular Canonical Systems to Grammars Translatable from Left to Right.,1971,1,Acta Inf.,,db/journals/acta/acta1.html#Langmaack71,https://doi.org/10.1007/BF00289518 +Klaus Ecker,Eigenschaften der von linearen Automaten erkennbaren Worte.,1974,3,Acta Inf.,,db/journals/acta/acta3.html#EckerR74,https://doi.org/10.1007/BF00263590 +Edward G. Coffman Jr.,Optimal Scheduling for Two-Processor Systems.,1972,1,Acta Inf.,,db/journals/acta/acta1.html#CoffmanG72,https://doi.org/10.1007/BF00288685 +Shigeru Igarashi,Automatic Program Verification I: A Logical Basis and its Implementation.,1974,4,Acta Inf.,,db/journals/acta/acta4.html#IgarashiLL74,https://doi.org/10.1007/BF00288746 +Paul Helman,A Family of NP-Complete Data Aggregation Problems.,1989,26,Acta Inf.,5,db/journals/acta/acta26.html#Helman89,https://doi.org/10.1007/BF00289148 +Béatrice Bérard,Accepting Zeno words: a way toward timed refinements.,2000,37,Acta Inf.,1,db/journals/acta/acta37.html#BerardP00,https://doi.org/10.1007/s002360050003 +Onno J. Boxma,Approximate Analysis of Exponential Queueing Systems with Blocking.,1981,15,Acta Inf.,,db/journals/acta/acta15.html#BoxmaK81,https://doi.org/10.1007/BF00269808 +Carlton J. Maxson,Linear Regular Sets.,1978,10,Acta Inf.,,db/journals/acta/acta10.html#Maxson78,https://doi.org/10.1007/BF00289156 +Paul Walton Purdom Jr.,Parsing Extended LR(k) Grammars.,1981,15,Acta Inf.,,db/journals/acta/acta15.html#PurdomB81,https://doi.org/10.1007/BF00288959 +Luc Devroye,On the Expected Height of Fringe-Balanced Trees.,1993,30,Acta Inf.,5,db/journals/acta/acta30.html#Devroye93,https://doi.org/10.1007/BF01210596 +C. Samuel Hsieh,A Fine-Grained Data-Flow Analysis Framework.,1997,34,Acta Inf.,9,db/journals/acta/acta34.html#Hsieh97,https://doi.org/10.1007/s002360050101 +Abraham Silberschatz,"Remarks on ""Some Comments on Concurrent Readers and Writers"" by Reidar Conradi.",1978,11,Acta Inf.,,db/journals/acta/acta11.html#SilberschatzJ78,https://doi.org/10.1007/BF00264599 +Wim H. Hesselink,Bounded Delay for a Free Address.,1996,33,Acta Inf.,3,db/journals/acta/acta33.html#Hesselink96,https://doi.org/10.1007/s002360050042 +Stefano Bilotta,Avoiding cross-bifix-free binary words.,2013,50,Acta Inf.,3,db/journals/acta/acta50.html#BilottaGPP13,https://doi.org/10.1007/s00236-013-0176-4 +Frank Drewes,Contextual hyperedge replacement.,2015,52,Acta Inf.,6,db/journals/acta/acta52.html#DrewesH15,https://doi.org/10.1007/s00236-015-0223-4 +Kenichi Morita,A Hierarchy of Uniquely Parsable Grammar Classes and Deterministic Acceptors.,1997,34,Acta Inf.,5,db/journals/acta/acta34.html#MoritaNYZ97,https://doi.org/10.1007/s002360050091 +Patrick E. O'Neil,The SB-Tree: An Index-Sequential Structure for High-Performance Sequential Access.,1992,29,Acta Inf.,3,db/journals/acta/acta29.html#ONeil92,https://doi.org/10.1007/BF01185680 +Ali Mili,Relational Heuristics for the Design of Deterministic Programs.,1987,24,Acta Inf.,3,db/journals/acta/acta24.html#MiliDM87,https://doi.org/10.1007/BF00265990 +Mark H. Overmars,Dynamic Multi-Dimensional Data Structures Based on Quad- and K - D Trees.,1982,17,Acta Inf.,,db/journals/acta/acta17.html#OvermarsL82,https://doi.org/10.1007/BF00264354 +Edsger W. Dijkstra,On a Gauntlet Thrown by David Gries.,1976,6,Acta Inf.,,db/journals/acta/acta6.html#Dijkstra76,https://doi.org/10.1007/BF00268136 +Kazuo Iwama,The Universe Problem for Unrestricted Flow Languages.,1983,19,Acta Inf.,,db/journals/acta/acta19.html#Iwama83,https://doi.org/10.1007/BF00263929 +Rainer Kemp,The Expected Additive Weight of Trees.,1989,26,Acta Inf.,8,db/journals/acta/acta26.html#Kemp89,https://doi.org/10.1007/BF00289158 +Carlo Montangero,Information Management in Context Trees.,1978,10,Acta Inf.,,db/journals/acta/acta10.html#MontangeroPST78,https://doi.org/10.1007/BF00260926 +Gerda Schott,Automatic Analysis of Inflectional Morphems in German Nouns.,1972,1,Acta Inf.,,db/journals/acta/acta1.html#Schott72,https://doi.org/10.1007/BF00289515 +Stephan Heilbrunner,A Direct Complement Construction for LR(1) Grammars.,1996,33,Acta Inf.,8,db/journals/acta/acta33.html#Heilbrunner96,https://doi.org/10.1007/s002360050070 +Vijay K. Garg,Using the Causal Domain to Specify and verify Distributed Programs.,1997,34,Acta Inf.,9,db/journals/acta/acta34.html#GargT97,https://doi.org/10.1007/s002360050102 +Ryszard Janicki,A Formal Semantics for Concurrent Systems with a Priority Relation.,1987,24,Acta Inf.,1,db/journals/acta/acta24.html#Janicki87,https://doi.org/10.1007/BF00290705 +Guy Fayolle,The Stability Problem of Broadcast Packet Switching Computer Networks.,1974,4,Acta Inf.,,db/journals/acta/acta4.html#FayolleGLB74,https://doi.org/10.1007/BF00288935 +R. M. Wharton,Resolution of Ambiguity in Parsing.,1976,6,Acta Inf.,,db/journals/acta/acta6.html#Wharton76,https://doi.org/10.1007/BF00268139 +Klaus Indermark,Algebraic Correctness Proofs for Compiling Recursive Function Definitions with Strictness Information.,2006,43,Acta Inf.,1,db/journals/acta/acta43.html#IndermarkN06,https://doi.org/10.1007/s00236-006-0013-0 +Mohammad Mahdi Jaghoori,Symmetry and partial order reduction techniques in model checking Rebeca.,2010,47,Acta Inf.,1,db/journals/acta/acta47.html#JaghooriSMKM10,https://doi.org/10.1007/s00236-009-0111-x +César Sánchez,Special issue on temporal representation and reasoning (TIME'13).,2016,53,Acta Inf.,2,db/journals/acta/acta53.html#SanchezVZ16,https://doi.org/10.1007/s00236-016-0260-7 +Maurice Schlumberger,Optimal Disk Merge Patterns.,1973,3,Acta Inf.,,db/journals/acta/acta3.html#SchlumbergerV73,https://doi.org/10.1007/BF00288649 +K. Narayan Kumar,Infinitary Parallelism without Unbounded Nondeterminism in CSP.,1993,30,Acta Inf.,5,db/journals/acta/acta30.html#KumarP93,https://doi.org/10.1007/BF01210597 +Catherine Rosenberg,Files d'attente exponentielles ayant des parametres non-stationnaires dans le temps.,1986,23,Acta Inf.,2,db/journals/acta/acta23.html#Rosenberg86,https://doi.org/10.1007/BF00289497 +Carla Schlatter Ellis,Concurrent Search and Insertion in 2-3 Trees.,1980,14,Acta Inf.,,db/journals/acta/acta14.html#Ellis80,https://doi.org/10.1007/BF00289064 +Uwe Kastens,An Abstract Data Type for Name Analysis.,1991,28,Acta Inf.,6,db/journals/acta/acta28.html#KastensW91,https://doi.org/10.1007/BF01463944 +Mingsheng Ying,pi-calculus with noisy channels.,2005,41,Acta Inf.,9,db/journals/acta/acta41.html#Ying05,https://doi.org/10.1007/s00236-005-0168-0 +Yunhe Wang,Using transition set sequences to partition behaviors of petri nets.,2012,49,Acta Inf.,1,db/journals/acta/acta49.html#WangJ12,https://doi.org/10.1007/s00236-011-0147-6 +David A. Basin,Algorithms for monitoring real-time properties.,2018,55,Acta Inf.,4,db/journals/acta/acta55.html#BasinKZ18,https://doi.org/10.1007/s00236-017-0295-4 +Burkhard Monien,Ramsey Numbers and an Approximation Algorithm for the Vertex Cover Problem.,1985,22,Acta Inf.,1,db/journals/acta/acta22.html#MonienS85,https://doi.org/10.1007/BF00290149 +Remco Loos,Small universal accepting hybrid networks of evolutionary processors.,2010,47,Acta Inf.,2,db/journals/acta/acta47.html#LoosMM10,https://doi.org/10.1007/s00236-009-0113-8 +Bing-Chao Huang,Stable Duplicate-Key Extraction with Optimal Time and Space Bounds.,1989,26,Acta Inf.,5,db/journals/acta/acta26.html#HuangL89,https://doi.org/10.1007/BF00289147 +Susan Horwitz,An Efficient General Iterative Algorithm for Dataflow Analysis.,1987,24,Acta Inf.,6,db/journals/acta/acta24.html#HorwitzDT87,https://doi.org/10.1007/BF00282621 +Chandra M. R. Kintala,Amounts of Nondeterminism in Finite Automata.,1980,13,Acta Inf.,,db/journals/acta/acta13.html#KintalaW80,https://doi.org/10.1007/BF00263994 +Kingshuk Chatterjee,Reversible Watson-Crick automata.,2017,54,Acta Inf.,5,db/journals/acta/acta54.html#ChatterjeeR17,https://doi.org/10.1007/s00236-016-0267-0 +Wilfred J. Hansen,The Report on the Standard Hardware Representation for ALGOL 68.,1978,9,Acta Inf.,,db/journals/acta/acta9.html#HansenB78,https://doi.org/10.1007/BF00289072 +Lutz Eichner,The Semigroups of Linearly Realizable Finite Automata I.,1978,10,Acta Inf.,,db/journals/acta/acta10.html#Eichner78,https://doi.org/10.1007/BF00265678 +Augusto Celentano,Incremental LR Parers.,1978,10,Acta Inf.,,db/journals/acta/acta10.html#Celentano78,https://doi.org/10.1007/BF00265676 +Bastian Katz,An algorithmic study of switch graphs.,2012,49,Acta Inf.,5,db/journals/acta/acta49.html#KatzRW12,https://doi.org/10.1007/s00236-012-0160-4 +Vince Bárány,Semi-synchronous transductions.,2009,46,Acta Inf.,1,db/journals/acta/acta46.html#Barany09,https://doi.org/10.1007/s00236-008-0083-2 +Ferri Abolhassan,On the Cost-Effectiveness of PRAMs.,1999,36,Acta Inf.,6,db/journals/acta/acta36.html#AbolhassanKP99,https://doi.org/10.1007/s002360050181 +Joost Engelfriet,Branching Processes of Petri Nets.,1991,28,Acta Inf.,6,db/journals/acta/acta28.html#Engelfriet91,https://doi.org/10.1007/BF01463946 +Rafik Aguech,Distances in random digital search trees.,2006,43,Acta Inf.,4,db/journals/acta/acta43.html#AguechLM06,https://doi.org/10.1007/s00236-006-0019-7 +C. L. Liu 0001,Scheduling with Slack Time.,1982,17,Acta Inf.,,db/journals/acta/acta17.html#LiuLL82,https://doi.org/10.1007/BF00262974 +Rainer Kemp,The Average Number of Registers Needed to Evaluate a Binary Tree Optimally.,1979,11,Acta Inf.,,db/journals/acta/acta11.html#Kemp79,https://doi.org/10.1007/BF00289094 +Pierpaolo Degano,Axiomatizing the Algebra of Net Computations and Processes.,1996,33,Acta Inf.,7,db/journals/acta/acta33.html#DeganoMM96,https://doi.org/10.1007/BF03036469 +Alfredo Burrieza,A functional approach for temporal * modal logics.,2003,39,Acta Inf.,2,db/journals/acta/acta39.html#BurriezaG03,https://doi.org/10.1007/s00236-002-0098-z +Symeon Bozapalidis,Picture deformation.,2008,45,Acta Inf.,1,db/journals/acta/acta45.html#Bozapalidis08,https://doi.org/10.1007/s00236-007-0059-7 +Arne Andersson,Binary Search Trees of Almost Optimal Height.,1990,28,Acta Inf.,2,db/journals/acta/acta28.html#AnderssonIKO90,https://doi.org/10.1007/BF01237235 +Helmut Seidl,On the Finite Degree of Ambiguity of Finite Tree Automata.,1989,26,Acta Inf.,6,db/journals/acta/acta26.html#Seidl89,https://doi.org/10.1007/BF00263578 +Joel I. Seiferas,Iterative Arrays with Direct Central Control.,1977,8,Acta Inf.,,db/journals/acta/acta8.html#Seiferas77,https://doi.org/10.1007/BF00289248 +Tian-Shyr Dai,An exact subexponential-time lattice algorithm for Asian options.,2007,44,Acta Inf.,1,db/journals/acta/acta44.html#DaiL07,https://doi.org/10.1007/s00236-006-0033-9 +Bernd Becker 0001,An Easily Testable Optimal-Time VLSI-Multiplier.,1987,24,Acta Inf.,4,db/journals/acta/acta24.html#Becker87,https://doi.org/10.1007/BF00292108 +A. Nico Habermann,Critical Comments on the Programming Language Pascal.,1973,3,Acta Inf.,,db/journals/acta/acta3.html#Habermann73,https://doi.org/10.1007/BF00288652 +Thomas W. Reps,Incremental Evaluation for Attribute Grammars with Unrestricted Movement Between Tree Modifications.,1988,25,Acta Inf.,2,db/journals/acta/acta25.html#Reps88,https://doi.org/10.1007/BF00263583 +Hans-Dieter Ehrich,Minimale und m-minimale Variablenmengen für partielle Boole'sche Funktionen,1973,2,Acta Inf.,,db/journals/acta/acta2.html#Ehrich73, +Arnold Schönhage,Schnelle Berechnung von Kettenbruchentwicklungen.,1971,1,Acta Inf.,,db/journals/acta/acta1.html#Schonhage71,https://doi.org/10.1007/BF00289520 +Ernst-Rüdiger Olderog,Sound and Complete Hoare-like Calculi Based on Copy Rules.,1981,16,Acta Inf.,,db/journals/acta/acta16.html#Olderog81,https://doi.org/10.1007/BF00261258 +Claus-Peter Schnorr,The Network Complexity and the Turing Machine Complexity of Finite Functions.,1976,7,Acta Inf.,,db/journals/acta/acta7.html#Schnorr76,https://doi.org/10.1007/BF00265223 +Benny Godlin,Inference rules for proving the equivalence of recursive procedures.,2008,45,Acta Inf.,6,db/journals/acta/acta45.html#GodlinS08,https://doi.org/10.1007/s00236-008-0075-2 +Lutz Eichner,The Semigroups of Linearly Realizable Finite Automata II.,1978,10,Acta Inf.,,db/journals/acta/acta10.html#Eichner78a,https://doi.org/10.1007/BF00265679 +Nicole Lesley,Providing view synchrony for group communication services.,2003,40,Acta Inf.,3,db/journals/acta/acta40.html#LesleyF03,https://doi.org/10.1007/s00236-003-0129-4 +Mark B. Josephs,Receptive Process Theory.,1992,29,Acta Inf.,1,db/journals/acta/acta29.html#Josephs92,https://doi.org/10.1007/BF01178564 +Ernst-Rüdiger Olderog,Letter from the Managing Editor.,2015,52,Acta Inf.,1,db/journals/acta/acta52.html#Olderog15,https://doi.org/10.1007/s00236-014-0212-z +Peter E. Lauer,Addenda and Corrigenda: Formal Semantics of a Class of High-Level Primitives for Coordinating Concurrent Processes,1977,7,Acta Inf.,,db/journals/acta/acta7.html#LauerC77,https://doi.org/10.1007/BF00290341 +Juraj Hromkovic,On-Way Multihead Deterministic Finite Automata.,1983,19,Acta Inf.,,db/journals/acta/acta19.html#Hromkovic83,https://doi.org/10.1007/BF00290734 +Ricardo A. Baeza-Yates,The Expected Behaviour of B+-Trees.,1989,26,Acta Inf.,5,db/journals/acta/acta26.html#Baeza-Yates89a,https://doi.org/10.1007/BF00289146 +Piotr Wyrostek,Precedence Technique is not Worse than SLR(1).,1986,23,Acta Inf.,4,db/journals/acta/acta23.html#Wyrostek86,https://doi.org/10.1007/BF00267864 +Jan A. Bergstra,Standard Model Semantics for DSL A Data Type Specification Language.,1983,19,Acta Inf.,,db/journals/acta/acta19.html#BergstraT83,https://doi.org/10.1007/BF00263930 +Dirk Taubner,Step Failures Semantics and a Complete Proof System.,1989,27,Acta Inf.,2,db/journals/acta/acta27.html#TaubnerV89,https://doi.org/10.1007/BF00265151 +Ernst-Erich Doberkat,Deleting the Root of a Heap.,1982,17,Acta Inf.,,db/journals/acta/acta17.html#Doberkat82,https://doi.org/10.1007/BF00264353 +Gianluca Amato,Descending chains and narrowing on template abstract domains.,2018,55,Acta Inf.,6,db/journals/acta/acta55.html#AmatoMMS18,https://doi.org/10.1007/s00236-016-0291-0 +Danièle Beauquier,Polytime Model Checking for Timed Probabilistic Computation Tree Logic.,1998,35,Acta Inf.,8,db/journals/acta/acta35.html#BeauquierS98,https://doi.org/10.1007/s002360050136 +Werner Damm,A Sound and Relatively * Complete Hoare-Logic for a Language With Higher Type Procedures.,1983,20,Acta Inf.,,db/journals/acta/acta20.html#DammJ83,https://doi.org/10.1007/BF00264295 +Petr Jancar,Forgetting Automata and Context-Free Languages.,1996,33,Acta Inf.,5,db/journals/acta/acta33.html#JancarMP96,https://doi.org/10.1007/s002360050050 +Frank S. de Boer,"Preface for the special issue ""FM15"".",2018,55,Acta Inf.,6,db/journals/acta/acta55.html#BoerB18,https://doi.org/10.1007/s00236-018-0323-z +Laurent Pierre,Rational Index of Vector Addition Systems Languages.,1989,26,Acta Inf.,6,db/journals/acta/acta26.html#PierreS89,https://doi.org/10.1007/BF00263577 +A. Nahapetian,Node Flows in Graphs with Conservative Flow.,1973,3,Acta Inf.,,db/journals/acta/acta3.html#Nahapetian73,https://doi.org/10.1007/BF00288650 +Lex Bijlsma,Dijkstra-Scholten Predicate Calculus: Concepts and Misconceptions.,1998,35,Acta Inf.,12,db/journals/acta/acta35.html#BijlsmaN98,https://doi.org/10.1007/s002360050150 +Matteo Magnani,Management of interval probabilistic data.,2008,45,Acta Inf.,2,db/journals/acta/acta45.html#MagnaniM08,https://doi.org/10.1007/s00236-007-0065-9 +Sridhar Vasudevan,Inner Loops in Flowgraphs and Code Optimization.,1982,17,Acta Inf.,,db/journals/acta/acta17.html#Vasudevan82,https://doi.org/10.1007/BF00288967 +Henk Alblas,Iteration of Transformation Passes over Attributed Program Trees.,1989,27,Acta Inf.,1,db/journals/acta/acta27.html#Alblas89,https://doi.org/10.1007/BF00263499 +Leslie M. Goldschlager,Varepsilon-Productions in Context-Free Grammars.,1981,16,Acta Inf.,,db/journals/acta/acta16.html#Goldschlager81,https://doi.org/10.1007/BF00289308 +Peter D. Welch,On the Self Contained Modelling of DB/DC Systems.,1976,7,Acta Inf.,,db/journals/acta/acta7.html#Welch76,https://doi.org/10.1007/BF00265773 +Walter Bucher,Two-Symbol DOS Systems Generating Regular Languages.,1983,20,Acta Inf.,,db/journals/acta/acta20.html#Bucher83,https://doi.org/10.1007/BF00289411 +Luc Moreau,A construction of distributed reference counting.,2001,37,Acta Inf.,8,db/journals/acta/acta37.html#MoreauD01,https://doi.org/10.1007/PL00013315 +Wim H. Hesselink,A criterion for atomicity revisited.,2007,44,Acta Inf.,2,db/journals/acta/acta44.html#Hesselink07,https://doi.org/10.1007/s00236-007-0044-1 +T. Betteridge,An Analytic Storage Allocation Model.,1974,3,Acta Inf.,,db/journals/acta/acta3.html#Betteridge74,https://doi.org/10.1007/BF00264032 +Janet A. Walz,Inductive Attribute Grammars: A Basis for Incremental Program Execution.,1995,32,Acta Inf.,2,db/journals/acta/acta32.html#WalzJ95,https://doi.org/10.1007/BF01177743 +Wladyslaw M. Turski,A Model for Data Structures and Its Applications. I.,1971,1,Acta Inf.,,db/journals/acta/acta1.html#Turski71,https://doi.org/10.1007/BF00264290 +Edward G. Coffman Jr.,Performance Predictions for Extended Paged Memories.,1971,1,Acta Inf.,,db/journals/acta/acta1.html#CoffmanR71,https://doi.org/10.1007/BF00264288 +Uli Fahrenberg,General quantitative specification theories with modal transition systems.,2014,51,Acta Inf.,5,db/journals/acta/acta51.html#FahrenbergL14,https://doi.org/10.1007/s00236-014-0196-8 +David Gries,The Schorr-Waite Graph Marking Algorithm.,1979,11,Acta Inf.,,db/journals/acta/acta11.html#Gries79,https://doi.org/10.1007/BF00289068 +H. T. Kung,An Optimality Theory of Concurrency Control for Databases.,1983,19,Acta Inf.,,db/journals/acta/acta19.html#KungP83,https://doi.org/10.1007/BF00263925 +Takao Tsuda,Transposition of Large Tabular Data Structures with Applications to Physical Database Organization.,1983,19,Acta Inf.,,db/journals/acta/acta19.html#TsudaS83,https://doi.org/10.1007/BF00263926 +Hans Ulrich Simon,Continuous Reductions Among Combinatorial Optimization Problems.,1989,26,Acta Inf.,8,db/journals/acta/acta26.html#Simon89,https://doi.org/10.1007/BF00289161 +Chongkye Rhee,Finding a Maximum Matching in a Permutation Graph.,1995,32,Acta Inf.,8,db/journals/acta/acta32.html#RheeL95,https://doi.org/10.1007/BF01178659 +Satoru Miyano,A Hierarchy Theorem for Multihead Stack-Counter Automata.,1982,17,Acta Inf.,,db/journals/acta/acta17.html#Miyano82,https://doi.org/10.1007/BF00262976 +Mingsheng Ying,Reasoning about probabilistic sequential programs in a probabilistic logic.,2003,39,Acta Inf.,5,db/journals/acta/acta39.html#Ying03,https://doi.org/10.1007/s00236-003-0113-z +Amr Elmasry,On the hierarchy of distribution-sensitive properties for data structures.,2013,50,Acta Inf.,4,db/journals/acta/acta50.html#ElmasryFI13,https://doi.org/10.1007/s00236-013-0180-8 +Nissim Francez,A Proof Method for Cyclic Programs.,1978,9,Acta Inf.,,db/journals/acta/acta9.html#FrancezP78,https://doi.org/10.1007/BF00289074 +Yoshihide Igarashi,General Properties of Derivational Complexity.,1977,8,Acta Inf.,,db/journals/acta/acta8.html#Igarashi77,https://doi.org/10.1007/BF00264470 +Reiner Kolla,The Virtual Feedback Problem in Hierarchical Representations of Combinational Circuits.,1991,28,Acta Inf.,5,db/journals/acta/acta28.html#KollaS91,https://doi.org/10.1007/BF01178584 +Keijo Ruohonen,On Some Variants of Post's Correspondence Problem.,1983,19,Acta Inf.,,db/journals/acta/acta19.html#Ruohonen83,https://doi.org/10.1007/BF00290732 +Baudouin Le Charlier,Reexecution in Abstract Interpretation of Prolog.,1995,32,Acta Inf.,3,db/journals/acta/acta32.html#CharlierH95,https://doi.org/10.1007/BF01178260 +Jeremy Dick,Automating the Knuth Bendix Ordering.,1990,28,Acta Inf.,2,db/journals/acta/acta28.html#DickKM90,https://doi.org/10.1007/BF01237233 +Lawrence Snyder,Recognition and Selection of Idioms for Code Optimization.,1982,17,Acta Inf.,,db/journals/acta/acta17.html#Snyder82,https://doi.org/10.1007/BF00264357 +Alfs T. Berztiss,Depth-First K-Trees and Critical Path Analysis.,1980,13,Acta Inf.,,db/journals/acta/acta13.html#Berztiss80,https://doi.org/10.1007/BF00288768 +Reiner Philipp,über Separatoren in planaren Graphen.,1980,14,Acta Inf.,,db/journals/acta/acta14.html#PhilippP80,https://doi.org/10.1007/BF00289065 +Takehiro Tokuda,Eliminating Unit Reductions from LR(k) Parsers Using Minimum Contexts.,1981,15,Acta Inf.,,db/journals/acta/acta15.html#Tokuda81,https://doi.org/10.1007/BF00264538 +Grzegorz Rozenberg,Context-Free Grammars With Selective Rewriting.,1980,13,Acta Inf.,,db/journals/acta/acta13.html#RozenbergW80,https://doi.org/10.1007/BF00288645 +Hazem Torfah,The complexity of counting models of linear-time temporal logic.,2018,55,Acta Inf.,3,db/journals/acta/acta55.html#TorfahZ18,https://doi.org/10.1007/s00236-016-0284-z +Ronald V. Book,On the Complexity of Formal Grammars.,1978,9,Acta Inf.,,db/journals/acta/acta9.html#Book78,https://doi.org/10.1007/BF00289076 +Teodor Rus,Using Graph Coloring in an Algebraic Compiler.,1997,34,Acta Inf.,3,db/journals/acta/acta34.html#RusP97,https://doi.org/10.1007/s002360050079 +John Buckle,A Characterisation of Meet and Join Respecting Pre-Orders and Congruences on Finite Lattices.,1993,30,Acta Inf.,8,db/journals/acta/acta30.html#Buckle93,https://doi.org/10.1007/BF01191811 +Eugene Asarin,Hybridization methods for the analysis of nonlinear systems.,2007,43,Acta Inf.,7,db/journals/acta/acta43.html#AsarinDG07,https://doi.org/10.1007/s00236-006-0035-7 +Andrzej Ehrenfeucht,A Characterization of Set Representable Labeled Partial 2-Structures Through Decompositions.,1990,28,Acta Inf.,1,db/journals/acta/acta28.html#EhrenfeuchtR90,https://doi.org/10.1007/BF02983375 +Edward P. F. Chan,On Generating Database Schemes Bounded or Constant-time-maintainable by Extensibility.,1988,25,Acta Inf.,5,db/journals/acta/acta25.html#ChanH88,https://doi.org/10.1007/BF00279950 +Jixue Liu,Containment and disjointedness in partitioned normal form relations.,2002,38,Acta Inf.,5,db/journals/acta/acta38.html#LiuV02,https://doi.org/10.1007/s002360100077 +A. C. McKellar,Bounds on Algorithms for String Generation.,1972,1,Acta Inf.,,db/journals/acta/acta1.html#McKellarW72,https://doi.org/10.1007/BF00289511 +Javier Esparza,Decidability of Model Checking for Infinite-State Concurrent Systems.,1997,34,Acta Inf.,2,db/journals/acta/acta34.html#Esparza97,https://doi.org/10.1007/s002360050074 +Dominic Duggan,Object type constructors.,2002,38,Acta Inf.,6,db/journals/acta/acta38.html#Duggan02,https://doi.org/10.1007/s002360100076 +Walter Cazzola,On the incremental growth and shrinkage of LR goto-graphs.,2014,51,Acta Inf.,7,db/journals/acta/acta51.html#CazzolaV14,https://doi.org/10.1007/s00236-014-0201-2 +Francine Blanchet-Sadri,Avoidable binary patterns in partial words.,2011,48,Acta Inf.,1,db/journals/acta/acta48.html#Blanchet-SadriMSW11,https://doi.org/10.1007/s00236-010-0129-0 +Foued Ameur,Trial and Error. A New Approach to Space-Bounded Learning.,1996,33,Acta Inf.,7,db/journals/acta/acta33.html#AmeurFHH96,https://doi.org/10.1007/BF03036467 +Julien Cassaigne,Unavoidable Binary Patterns.,1993,30,Acta Inf.,4,db/journals/acta/acta30.html#Cassaigne93,https://doi.org/10.1007/BF01209712 +Laura Bozzelli,Visibly rational expressions.,2014,51,Acta Inf.,1,db/journals/acta/acta51.html#BozzelliS14,https://doi.org/10.1007/s00236-013-0190-6 +Andrea Walther,Program reversals for evolutions with non-uniform step costs.,2004,40,Acta Inf.,4,db/journals/acta/acta40.html#Walther04,https://doi.org/10.1007/s00236-003-0131-x +Kari-Jouko Räihä,Testing Attribute Grammars for Circularity.,1982,17,Acta Inf.,,db/journals/acta/acta17.html#RaihaS82,https://doi.org/10.1007/BF00288969 +Patrick E. O'Neil,The Log-Structured Merge-Tree (LSM-Tree).,1996,33,Acta Inf.,4,db/journals/acta/acta33.html#ONeilCGO96,https://doi.org/10.1007/s002360050048 +Jayme Luiz Szwarcfiter,Optimal Multiway Search Trees for Variable Size Keys.,1984,21,Acta Inf.,,db/journals/acta/acta21.html#Szwarcfiter84,https://doi.org/10.1007/BF00289139 +Davide Bresolin,A theory of ultimately periodic languages and automata with an application to time granularity.,2009,46,Acta Inf.,5,db/journals/acta/acta46.html#BresolinMP09,https://doi.org/10.1007/s00236-009-0094-7 +Carlo Meghini,Querying Fragmented Relations in a Distributed Database.,1985,22,Acta Inf.,2,db/journals/acta/acta22.html#MeghiniT85,https://doi.org/10.1007/BF00264226 +Joost Engelfriet,The Formal Power of One-Visit Attribute Grammars.,1981,16,Acta Inf.,,db/journals/acta/acta16.html#EngelfrietF81,https://doi.org/10.1007/BF00289307 +Symeon Bozapalidis,On two Families of Forests.,1994,31,Acta Inf.,3,db/journals/acta/acta31.html#BozapalidisR94,https://doi.org/10.1007/BF01218405 +Erol Gelenbe,Probabilistic Models of Computer Systems - Part I (Exact Results).,1976,7,Acta Inf.,,db/journals/acta/acta7.html#GelenbeM76,https://doi.org/10.1007/BF00265220 +Astrid R. Rühl,On Bounds of Response Time Performance Achievable by Multiclass Single-Server Queues.,1994,31,Acta Inf.,7,db/journals/acta/acta31.html#Ruhl94,https://doi.org/10.1007/BF01177549 +Hirokazu Nishimura,Sequential Method in Propositional Dynamic Logic.,1979,12,Acta Inf.,,db/journals/acta/acta12.html#Nishimura79,https://doi.org/10.1007/BF00268322 +Daniel M. Yellin,Speeding up Dynamic Transitive Closure for Bounded Degree Graphs.,1993,30,Acta Inf.,4,db/journals/acta/acta30.html#Yellin93,https://doi.org/10.1007/BF01209711 +Edward G. Coffman Jr.,Scheduling Saves in Fault-Tolerant Computations.,1993,30,Acta Inf.,5,db/journals/acta/acta30.html#CoffmanFK93,https://doi.org/10.1007/BF01210593 +Stål O. Aanderaa,The Equivalence of Horn and Network Complexity for Boolean Functions.,1981,15,Acta Inf.,,db/journals/acta/acta15.html#AnderaaB81,https://doi.org/10.1007/BF00289267 +Millist W. Vincent,Semantic Foundations of 4NF in Relational Database Design.,1999,36,Acta Inf.,3,db/journals/acta/acta36.html#Vincent99,https://doi.org/10.1007/s002360050157 +Karel Culik II,Iterative Weighted Finite Transductions.,1995,32,Acta Inf.,7,db/journals/acta/acta32.html#CulikR95,https://doi.org/10.1007/BF01186646 +Joost Engelfriet,Context-Free Hypergraph Grammars have the Same Term-Generating Power as Attribute Grammars.,1992,29,Acta Inf.,2,db/journals/acta/acta29.html#EngelfrietH92,https://doi.org/10.1007/BF01178504 +Ernst-Erich Doberkat,Pipelines: Modelling a software architecture through relations.,2003,40,Acta Inf.,1,db/journals/acta/acta40.html#Doberkat03,https://doi.org/10.1007/s00236-003-0121-z +Jan Kratochvíl,Satisfiability of Co-Nested Formulas.,1993,30,Acta Inf.,4,db/journals/acta/acta30.html#KratochvilK93,https://doi.org/10.1007/BF01209713 +Grzegorz Rozenberg,Graph Theoretic Closure Properties of the Family of Boundary NLC Graph Languages.,1986,23,Acta Inf.,3,db/journals/acta/acta23.html#RozenbergW86,https://doi.org/10.1007/BF00289115 +Wojciech Szpankowski,An Analysis of a Contention Resolution Algorithm: Another Approach.,1987,24,Acta Inf.,2,db/journals/acta/acta24.html#Szpankowski87,https://doi.org/10.1007/BF00264363 +Alexander Meduna,One-sided random context grammars.,2011,48,Acta Inf.,3,db/journals/acta/acta48.html#MedunaZ11,https://doi.org/10.1007/s00236-011-0134-y +Donald L. Iglehart,Regenerative Simulation of Response Times in Networks of Queues: Statistical Efficiency.,1981,15,Acta Inf.,,db/journals/acta/acta15.html#IglehartS81,https://doi.org/10.1007/BF00264534 +Jean Berstel,Formal properties of XML grammars and languages.,2002,38,Acta Inf.,9,db/journals/acta/acta38.html#BerstelB02,https://doi.org/10.1007/s00236-002-0085-4 +Burkhard Monien,The LBA-Problem and the Deterministic Tape Complexity of Two-Way One-Counter Languages over a One-Letter Alphabet.,1977,8,Acta Inf.,,db/journals/acta/acta8.html#Monien77,https://doi.org/10.1007/BF00271345 +Henry S. Warren Jr.,Static Main Storage Packing Problems.,1978,9,Acta Inf.,,db/journals/acta/acta9.html#Warren78,https://doi.org/10.1007/BF00289048 +Mario Coppo,On the Semantics of Polymorphism.,1983,20,Acta Inf.,,db/journals/acta/acta20.html#Coppo83,https://doi.org/10.1007/BF00289413 +Chris Giannella,Adding a path connectedness operator to FO+poly (linear).,2002,38,Acta Inf.,9,db/journals/acta/acta38.html#GiannellaG02,https://doi.org/10.1007/s00236-002-0088-1 +Paolo Atzeni,Independent Database Schemes under Functional and Inclusion Dependencies.,1991,28,Acta Inf.,8,db/journals/acta/acta28.html#AtzeniC91,https://doi.org/10.1007/BF01261656 +Cristian Ioan Vasile,On the power of enzymatic numerical P systems.,2012,49,Acta Inf.,6,db/journals/acta/acta49.html#VasilePDP12,https://doi.org/10.1007/s00236-012-0166-y +Robert Gold,A Compositional Dataflow Semantics for Petri Nets.,1995,32,Acta Inf.,7,db/journals/acta/acta32.html#Gold95,https://doi.org/10.1007/BF01186644 +Alexander Moshe Rabinovich,Modularity and Expressibility for Nets of Relations.,1998,35,Acta Inf.,4,db/journals/acta/acta35.html#Rabinovitch98,https://doi.org/10.1007/s002360050122 +Alexander Tuzhilin,Modeling Data-Intensive Reactive Systems with Relational Transition Systems.,1996,33,Acta Inf.,3,db/journals/acta/acta33.html#TuzhilinK96,https://doi.org/10.1007/s002360050041 +Roberto Barbuti,Generalized contexts for reaction systems: definition and study of dynamic causalities.,2018,55,Acta Inf.,3,db/journals/acta/acta55.html#BarbutiGLM18,https://doi.org/10.1007/s00236-017-0296-3 +Leah Epstein,Two-dimensional packing with conflicts.,2008,45,Acta Inf.,3,db/journals/acta/acta45.html#EpsteinLS08,https://doi.org/10.1007/s00236-007-0067-7 +David C. Luckham,Proof of Termination within a Weak Logic of Programs.,1977,8,Acta Inf.,,db/journals/acta/acta8.html#LuckhamS77,https://doi.org/10.1007/BF00276182 +Lawrence A. Harris,SLR(1) and LALR(1) Parsing for Unrestricted Grammars.,1987,24,Acta Inf.,2,db/journals/acta/acta24.html#Harris87,https://doi.org/10.1007/BF00264364 +Wim Janssen,On the tree-transformation power of XSLT.,2007,43,Acta Inf.,6,db/journals/acta/acta43.html#JanssenKB07,https://doi.org/10.1007/s00236-006-0026-8 +Rolf Schassberger,On the Response Time Distribution in a Discrete Round-Robin Queue.,1981,16,Acta Inf.,,db/journals/acta/acta16.html#Schassberger81,https://doi.org/10.1007/BF00289590 +Hans Albrecht Schmid,On the Efficient Implementation of Conditional Critical Regions and the Construction of Monitors.,1976,6,Acta Inf.,,db/journals/acta/acta6.html#Schmid76,https://doi.org/10.1007/BF00288656 +Ute Schürfeld,New Lower Bounds on the Formula Size of Boolean Functions.,1983,19,Acta Inf.,,db/journals/acta/acta19.html#Schurfeld83,https://doi.org/10.1007/BF00264475 +Mingsheng Ying,Quantum loop programs.,2010,47,Acta Inf.,4,db/journals/acta/acta47.html#YingF10,https://doi.org/10.1007/s00236-010-0117-4 +Gérard P. Huet,Proving and Applying Program Transformations Expressed with Second-Order Patterns.,1978,11,Acta Inf.,,db/journals/acta/acta11.html#HuetL78,https://doi.org/10.1007/BF00264598 +Werner Pohlmann,LR Parsing for Affix Grammars.,1983,20,Acta Inf.,,db/journals/acta/acta20.html#Pohlmann83,https://doi.org/10.1007/BF00264275 +Karel Culik II,HDTOL Matching of Computations of Multitape Automata.,1989,27,Acta Inf.,2,db/journals/acta/acta27.html#CulikK89,https://doi.org/10.1007/BF00265153 +Svante Carlsson,On Partitions and Presortedness of Sequences.,1992,29,Acta Inf.,3,db/journals/acta/acta29.html#CarlssonC92,https://doi.org/10.1007/BF01185681 +Francine Blanchet-Sadri,Erratum to: Avoidable binary patterns in partial words.,2012,49,Acta Inf.,1,db/journals/acta/acta49.html#Blanchet-SadriMSW12,https://doi.org/10.1007/s00236-011-0149-4 +Eric C. R. Hehner,Predicative Methodology.,1986,23,Acta Inf.,5,db/journals/acta/acta23.html#HehnerGM86,https://doi.org/10.1007/BF00288466 +Claus H. Correl,Proving Programs Correct through Refinement.,1978,9,Acta Inf.,,db/journals/acta/acta9.html#Correl78,https://doi.org/10.1007/BF00289073 +William R. Franta,Analysis of a Prioritized CSMA Protocol Based on Staggered Delays.,1980,13,Acta Inf.,,db/journals/acta/acta13.html#FrantaB80,https://doi.org/10.1007/BF00288767 +Robert D. Tennent,On a New Approach to Representation Independent Data Classes.,1977,8,Acta Inf.,,db/journals/acta/acta8.html#Tennent77a,https://doi.org/10.1007/BF00271340 +Erol Gelenbe,Optimum Checkpoints with Age Dependent Failures.,1990,27,Acta Inf.,6,db/journals/acta/acta27.html#GelenbeH89,https://doi.org/10.1007/BF00277388 +Susanne Graf,A Logic for the Specification and Proof of Regular Controllable Processes of CCS.,1986,23,Acta Inf.,5,db/journals/acta/acta23.html#GrafS86,https://doi.org/10.1007/BF00288467 +Jean-Michel Autebert,Opérations de Cylindre et applications séquentielles gauches inverses.,1979,11,Acta Inf.,,db/journals/acta/acta11.html#Autebert79,https://doi.org/10.1007/BF00289070 +Marina C. Chen,Deadlock-Freedom in Resource Contentions.,1985,21,Acta Inf.,,db/journals/acta/acta21.html#ChenR85,https://doi.org/10.1007/BF00289712 +P. F. Schuler,A Note on Degrees of Context-Sensitivity.,1975,5,Acta Inf.,,db/journals/acta/acta5.html#Schuler75,https://doi.org/10.1007/BF00264568 +Gilberto Filé,Interpretation and Reduction of Attribute Grammars.,1983,19,Acta Inf.,,db/journals/acta/acta19.html#File83,https://doi.org/10.1007/BF00264472 +Pavel Pudlák,Graph Complexity.,1988,25,Acta Inf.,5,db/journals/acta/acta25.html#PudlakRS88,https://doi.org/10.1007/BF00279952 +Volker Diekert,Deterministic Asynchronous Automata for Infinite Traces.,1994,31,Acta Inf.,4,db/journals/acta/acta31.html#DiekertM94,https://doi.org/10.1007/BF01178512 +Rudolph Sommerhalder,Parallel Language Recognition in Constant Time by Cellular Automata.,1983,19,Acta Inf.,,db/journals/acta/acta19.html#SommerhalderW83,https://doi.org/10.1007/BF00290736 +Jos C. M. Baeten,An Algebra for Process Creation.,1992,29,Acta Inf.,4,db/journals/acta/acta29.html#BaetenV92,https://doi.org/10.1007/BF01178776 +Donald E. Knuth,Nested Satisfiability.,1990,28,Acta Inf.,1,db/journals/acta/acta28.html#Knuth90,https://doi.org/10.1007/BF02983372 +Edward G. Coffman Jr.,Ideal preemptive schedules on two processors.,2003,39,Acta Inf.,8,db/journals/acta/acta39.html#CoffmanST03,https://doi.org/10.1007/s00236-003-0119-6 +Andrzej Ehrenfeucht,Context-free Text Grammars.,1994,31,Acta Inf.,2,db/journals/acta/acta31.html#EhrenfeuchtPR94,https://doi.org/10.1007/BF01192159 +Peter E. Lauer,Formal Semantics of a Class of High-Level Primitives for Coordinating Concurrent Processes,1975,5,Acta Inf.,,db/journals/acta/acta5.html#LauerC75,https://doi.org/10.1007/BF00264564 +Donald W. Gillies,Greed in Resource Scheduling.,1991,28,Acta Inf.,8,db/journals/acta/acta28.html#GilliesL91,https://doi.org/10.1007/BF01261655 +Pierre-Jacques Courtois,A Decomposable Model of Program Paging Behaviour.,1976,6,Acta Inf.,,db/journals/acta/acta6.html#CourtoisV76,https://doi.org/10.1007/BF00288657 +Walter Bucher,A Regularity Test for Dual Bordered OS Systems.,1986,23,Acta Inf.,3,db/journals/acta/acta23.html#Bucher86,https://doi.org/10.1007/BF00289112 +Ladislav Vagner,Parallel LL parsing.,2007,44,Acta Inf.,1,db/journals/acta/acta44.html#VagnerM07,https://doi.org/10.1007/s00236-006-0031-y +K. Vidyasankar,Generalized Theory of Serializability.,1987,24,Acta Inf.,1,db/journals/acta/acta24.html#Vidyasankar87,https://doi.org/10.1007/BF00290709 +Ricardo A. Baeza-Yates,Unbalanced Multiway Trees Improved by Partial Expansions.,1992,29,Acta Inf.,5,db/journals/acta/acta29.html#Baeza-YatesC92,https://doi.org/10.1007/BF01193577 +J. Xu,On-Line Multiversion Database Concurrency Control.,1992,29,Acta Inf.,2,db/journals/acta/acta29.html#Xu92,https://doi.org/10.1007/BF01178503 +Nissim Francez,Product Properties and Their Direct Verification.,1983,20,Acta Inf.,,db/journals/acta/acta20.html#Francez83,https://doi.org/10.1007/BF00264278 +Amr Elmasry,Two-tier relaxed heaps.,2008,45,Acta Inf.,3,db/journals/acta/acta45.html#ElmasryJK08,https://doi.org/10.1007/s00236-008-0070-7 +Larissa Meinicke,Algebraic reasoning for probabilistic action systems and while-loops.,2008,45,Acta Inf.,5,db/journals/acta/acta45.html#MeinickeH08,https://doi.org/10.1007/s00236-008-0073-4 +Wei-Ngan Chin,A Transformation Method for Dynamic-Sized Tabulation.,1995,32,Acta Inf.,2,db/journals/acta/acta32.html#ChinH95,https://doi.org/10.1007/BF01177742 +Marco A. Casanova,General Purpose Schedulers for Database Systems.,1980,14,Acta Inf.,,db/journals/acta/acta14.html#CasanovaB80,https://doi.org/10.1007/BF00264253 +Demetres D. Kouvatsos,Erratum: Maximum Entropy Two-Station Cyclic Queues with Multiple General Servers.,1989,26,Acta Inf.,8,db/journals/acta/acta26.html#KouvatsosA89a,https://doi.org/10.1007/BF00289162 +Ryszard Janicki,Step traces.,2016,53,Acta Inf.,1,db/journals/acta/acta53.html#JanickiKKM16,https://doi.org/10.1007/s00236-015-0244-z +James H. Anderson,A New Explanation of the Glitch Phenomenon.,1991,28,Acta Inf.,4,db/journals/acta/acta28.html#AndersonG91,https://doi.org/10.1007/BF01893884 +Ole Lehrmann Madsen,LR-Parsing of Extended Context Free Grammars.,1976,7,Acta Inf.,,db/journals/acta/acta7.html#MadsenK76,https://doi.org/10.1007/BF00265221 +José M. Bernabéu-Aubán,Resource Finding in Store-and-Forward Networks.,1991,28,Acta Inf.,7,db/journals/acta/acta28.html#Bernabeu-AubanAA91,https://doi.org/10.1007/BF01178681 +Flavio Corradini,Fairness of Actions in System Computations.,2006,43,Acta Inf.,2,db/journals/acta/acta43.html#CorradiniBV06,https://doi.org/10.1007/s00236-006-0011-2 +Juraj Hromkovic,Fooling a Two-Way Nondeterministic Multihead Automaton with Reversal Number Restriction.,1985,22,Acta Inf.,5,db/journals/acta/acta22.html#Hromkovic85,https://doi.org/10.1007/BF00267046 +Alon Itai,Representation of Graphs.,1982,17,Acta Inf.,,db/journals/acta/acta17.html#ItaiR82,https://doi.org/10.1007/BF00288971 +Arnd Rußmann,Dynamic LL(k) Parsing.,1997,34,Acta Inf.,4,db/journals/acta/acta34.html#Russmann97,https://doi.org/10.1007/s002360050085 +Anthony W. Lin,A linear-time algorithm for the orbit problem over cyclic groups.,2016,53,Acta Inf.,5,db/journals/acta/acta53.html#LinZ16,https://doi.org/10.1007/s00236-015-0251-0 +Bartek Kiepuszewski,Fundamentals of control flow in workflows.,2003,39,Acta Inf.,3,db/journals/acta/acta39.html#KiepuszewskiHA03,https://doi.org/10.1007/s00236-002-0105-4 +Li Layuan,A distributed QoS-Aware multicast routing protocol.,2003,40,Acta Inf.,3,db/journals/acta/acta40.html#LayuanC03,https://doi.org/10.1007/s00236-003-0123-x +Brigitte Plateau,Evaluation des Performances d'un Algorithme de Controle de la Cohérence d'une Base de Données Répartie.,1980,14,Acta Inf.,,db/journals/acta/acta14.html#Plateau80,https://doi.org/10.1007/BF00289063 +François Baccelli,Analysis of a Service Facility with Periodic Checkpointing.,1981,15,Acta Inf.,,db/journals/acta/acta15.html#Baccelli81,https://doi.org/10.1007/BF00269809 +Eike Best,A decomposition theorem for finite persistent transition systems.,2009,46,Acta Inf.,3,db/journals/acta/acta46.html#BestD09,https://doi.org/10.1007/s00236-009-0095-6 +Ke Wang,Weakly Independent Database Schemes.,1997,34,Acta Inf.,1,db/journals/acta/acta34.html#WangZC97,https://doi.org/10.1007/s002360050071 +Cezar Câmpeanu,On the closure of pattern expressions languages under intersection with regular languages.,2009,46,Acta Inf.,3,db/journals/acta/acta46.html#CampeanuS09,https://doi.org/10.1007/s00236-009-0090-y +Clement H. C. Leung,The Effect of Fixed-Length Record Implementation on File System Response.,1982,17,Acta Inf.,,db/journals/acta/acta17.html#LeungC82,https://doi.org/10.1007/BF00264159 +Manfred P. Stadel,Die Zeitkomplexität des Normalisierungsproblems bei kontextsensitiven Grammatiken.,1978,9,Acta Inf.,,db/journals/acta/acta9.html#Stadel78,https://doi.org/10.1007/BF00289045 +Klaus W. Wagner,The Complexity of Combinatorial Problems with Succinct Input Representation.,1986,23,Acta Inf.,3,db/journals/acta/acta23.html#Wagner86,https://doi.org/10.1007/BF00289117 +Søren Lauesen,Job Scheduling Guaranteeing Reasonable Turn-Around Times.,1973,2,Acta Inf.,,db/journals/acta/acta2.html#Lauesen73,https://doi.org/10.1007/BF00571460 +Warren Burton,Generalized Recursive Data Structures.,1979,12,Acta Inf.,,db/journals/acta/acta12.html#Burton79,https://doi.org/10.1007/BF00266046 +S. A. Bengelloun,An Incremental Primal Sieve.,1986,23,Acta Inf.,2,db/journals/acta/acta23.html#Bengelloun86,https://doi.org/10.1007/BF00289493 +Burkhard Monien,Transformational Methods and their Application to Complexity Problems.,1976,6,Acta Inf.,,db/journals/acta/acta6.html#Monien76,https://doi.org/10.1007/BF00263746 +Dana S. Scott,A. Nico Habermann 1932-1993.,1994,31,Acta Inf.,1,db/journals/acta/acta31.html#Scott94,https://doi.org/10.1007/BF01178919 +Richard S. Bird,Using Circular Programs to Eliminate Multiple Traversals of Data.,1984,21,Acta Inf.,,db/journals/acta/acta21.html#Bird84,https://doi.org/10.1007/BF00264249 +Arend Rensink,Process algebra with action dependencies.,2001,38,Acta Inf.,3,db/journals/acta/acta38.html#RensinkW01,https://doi.org/10.1007/s002360100070 +Eike Best,Free Choice Systems Have Home States.,1984,21,Acta Inf.,,db/journals/acta/acta21.html#BestV84,https://doi.org/10.1007/BF00289141 +Annegret Habel,Metatheorems for Decision Problems on Hyperedge Replacement Graph Languages.,1989,26,Acta Inf.,7,db/journals/acta/acta26.html#HabelKV89,https://doi.org/10.1007/BF00288976 +Alejandro Sánchez,Parametrized invariance for infinite state processes.,2015,52,Acta Inf.,6,db/journals/acta/acta52.html#SanchezS15,https://doi.org/10.1007/s00236-015-0222-5 +Thomas W. Reps,On the Sequential Nature of Interprocedural Program-Analysis Problems.,1996,33,Acta Inf.,8,db/journals/acta/acta33.html#Reps96,https://doi.org/10.1007/BF03036473 +Michael Bechtold,Throughput of a Satellite Channel Communication.,1985,22,Acta Inf.,1,db/journals/acta/acta22.html#BechtoldPS85,https://doi.org/10.1007/BF00290142 +C. C. Gotlieb,Choosing a Storage Schema.,1974,3,Acta Inf.,,db/journals/acta/acta3.html#GotliebT74,https://doi.org/10.1007/BF00263586 +Armin B. Cremers,Normal Forms for Context-Sensitive Grammars.,1973,3,Acta Inf.,,db/journals/acta/acta3.html#Cremers73,https://doi.org/10.1007/BF00288653 +Bo-Ting Yang,The class Steiner minimal tree problem: a lower bound and test problem generation.,2000,37,Acta Inf.,3,db/journals/acta/acta37.html#YangG00,https://doi.org/10.1007/s002360000042 +Jean Néraud,Detecting Morphic Images of a Word on the Rank of a Pattern.,1995,32,Acta Inf.,5,db/journals/acta/acta32.html#Neraud95,https://doi.org/10.1007/BF01213080 +Hartmann J. Genrich,Synchronisationsgraphen,1973,2,Acta Inf.,,db/journals/acta/acta2.html#GenrichL73, +Nicoletta De Francesco,A Transformation System for Concurrent Processes.,1998,35,Acta Inf.,12,db/journals/acta/acta35.html#FrancescoS98,https://doi.org/10.1007/s002360050151 +Jim Cunningham,Rewrite Systems on a Lattice of Types.,1985,22,Acta Inf.,2,db/journals/acta/acta22.html#CunninghamD85,https://doi.org/10.1007/BF00264228 +R. Zuczek,A New Approach to Parallel Computing.,1976,7,Acta Inf.,,db/journals/acta/acta7.html#Zuczek76,https://doi.org/10.1007/BF00265218 +Joseph G. Peters,Parallel Approximation Schemes for Subset Sum and Knapsack Problems.,1987,24,Acta Inf.,4,db/journals/acta/acta24.html#PetersR87,https://doi.org/10.1007/BF00292111 +Paul Hunter,Reactive synthesis without regret.,2017,54,Acta Inf.,1,db/journals/acta/acta54.html#HunterPR17,https://doi.org/10.1007/s00236-016-0268-z +Symeon Bozapalidis,An axiomatization of graphs.,2004,41,Acta Inf.,1,db/journals/acta/acta41.html#BozapalidisK04,https://doi.org/10.1007/s00236-004-0149-8 +Pierre Deransart,Speeding up Circularity Tests for Attribute Grammars.,1984,21,Acta Inf.,,db/journals/acta/acta21.html#DeransartJL84,https://doi.org/10.1007/BF00264616 +Ralph-Johan Back,Duality in Specification Languages: A Lattice-Theoretical Approach.,1990,27,Acta Inf.,7,db/journals/acta/acta27.html#BackW89,https://doi.org/10.1007/BF00259469 +Jan A. Bergstra,Decision problems for pushdown threads.,2007,44,Acta Inf.,2,db/journals/acta/acta44.html#BergstraBP07,https://doi.org/10.1007/s00236-007-0040-5 +Graham Farr,On Problems with Short Certificates.,1994,31,Acta Inf.,5,db/journals/acta/acta31.html#Farr94,https://doi.org/10.1007/BF01178668 +Georg Trogemann,Performance Analysis of Parallel Programs Based on Directed Acyclic Graphs.,1997,34,Acta Inf.,6,db/journals/acta/acta34.html#TrogemannG97,https://doi.org/10.1007/s002360050092 +Michael Drmota,The variance of the height of digital search trees.,2002,38,Acta Inf.,4,db/journals/acta/acta38.html#Drmota02,https://doi.org/10.1007/s236-002-8034-5 +Zohar Manna,Problematic Features of Programming Languages: A Situational-Calculus Approach.,1981,16,Acta Inf.,,db/journals/acta/acta16.html#MannaW81,https://doi.org/10.1007/BF00264494 +Dominic Duggan,Kinded Type Inference for Parametric Overloading.,1996,33,Acta Inf.,1,db/journals/acta/acta33.html#DugganCO96,https://doi.org/10.1007/s002360050035 +Klaus-Dieter Schewe,Towards a Theory of Consistency Enforcement.,1999,36,Acta Inf.,2,db/journals/acta/acta36.html#ScheweT99,https://doi.org/10.1007/s002360050155 +Kurt Mehlhorn,Some Remarks on Boolean Sums.,1979,12,Acta Inf.,,db/journals/acta/acta12.html#Mehlhorn79,https://doi.org/10.1007/BF00268321 +Tamar Aizikowitz,Conjunctive grammars and alternating pushdown automata.,2013,50,Acta Inf.,3,db/journals/acta/acta50.html#AizikowitzK13,https://doi.org/10.1007/s00236-013-0177-3 +Detlef Wotschke,A Note on Classes of Complements and the LBA Problem.,1978,10,Acta Inf.,,db/journals/acta/acta10.html#WotschkeW78,https://doi.org/10.1007/BF00289154 +Chen-Ming Fan,Prefix-primitive annihilators of languages under some operations.,2012,49,Acta Inf.,5,db/journals/acta/acta49.html#FanHTW12,https://doi.org/10.1007/s00236-012-0159-x +Gerhard J. Woeginger,Heuristics for Parallel Machine Scheduling with Delivery Times.,1994,31,Acta Inf.,6,db/journals/acta/acta31.html#Woeginger94,https://doi.org/10.1007/BF01213203 +Donald Sannella,A Set-Theoretic Semantics for Clear.,1984,21,Acta Inf.,,db/journals/acta/acta21.html#Sannella84,https://doi.org/10.1007/BF00271641 +Helmut Alt,Lower Bounds on Space Complexity for Contextfree Recognition.,1979,12,Acta Inf.,,db/journals/acta/acta12.html#Alt79,https://doi.org/10.1007/BF00264016 +Fernando Arroyo,Accepting splicing systems with permitting and forbidding words.,2013,50,Acta Inf.,1,db/journals/acta/acta50.html#ArroyoCDMS13,https://doi.org/10.1007/s00236-012-0169-8 +Heikki Mannila,On the Relationship of Minimum and Optimum Covers for a Set of Functional Dependencies.,1983,20,Acta Inf.,,db/journals/acta/acta20.html#MannilaR83,https://doi.org/10.1007/BF00289412 +Mordechai Ben-Ari,The Temporal Logic of Branching Time.,1983,20,Acta Inf.,,db/journals/acta/acta20.html#Ben-AriPM83,https://doi.org/10.1007/BF01257083 +Ingo Wegener,An Improved Complexity Hierarchy on the Depth of Boolean Functions.,1981,15,Acta Inf.,,db/journals/acta/acta15.html#Wegener81,https://doi.org/10.1007/BF00288962 +Pierpaolo Degano,Causality for Debugging Mobile Agents.,1999,36,Acta Inf.,5,db/journals/acta/acta36.html#DeganoPLT99,https://doi.org/10.1007/s002360050164 +Marcello M. Bersani,A tool for deciding the satisfiability of continuous-time metric temporal logic.,2016,53,Acta Inf.,2,db/journals/acta/acta53.html#BersaniRP16,https://doi.org/10.1007/s00236-015-0229-y +Nicoletta De Francesco,Proving Finiteness of CCS Processes by Non-Standard Semantics.,1994,31,Acta Inf.,1,db/journals/acta/acta31.html#FrancescoI94,https://doi.org/10.1007/BF01178922 +Alexander Meduna,Nonterminal complexity of one-sided random context grammars.,2012,49,Acta Inf.,2,db/journals/acta/acta49.html#MedunaZ12,https://doi.org/10.1007/s00236-012-0150-6 +Deepak Kapur,On Sufficient-Completeness and Related Properties of Term Rewriting Systems.,1987,24,Acta Inf.,4,db/journals/acta/acta24.html#KapurNZ87,https://doi.org/10.1007/BF00292110 +Jérôme Leroux,Guiding Craig interpolation with domain-specific abstractions.,2016,53,Acta Inf.,4,db/journals/acta/acta53.html#LerouxRS16,https://doi.org/10.1007/s00236-015-0236-z +Donald E. Knuth,Optimum Binary Search Trees.,1971,1,Acta Inf.,,db/journals/acta/acta1.html#Knuth71,https://doi.org/10.1007/BF00264289 +Donald L. Iglehart,Simulation Output Analysis for Local Area Computer Networks.,1984,21,Acta Inf.,,db/journals/acta/acta21.html#IglehartS84,https://doi.org/10.1007/BF00264614 +Christian Dax,On regular temporal logics with past.,2010,47,Acta Inf.,4,db/journals/acta/acta47.html#DaxKL10,https://doi.org/10.1007/s00236-010-0118-3 +Kamal Lodaya,Proof Theory for Exception Handling in a Tasking Environment.,1990,28,Acta Inf.,1,db/journals/acta/acta28.html#LodayaS90,https://doi.org/10.1007/BF02983373 +Alberto Pettorossi,Deriving very Efficient Algorithms for Evaluating Linear Recurrence Relations Using the Program Transformation Technique.,1982,18,Acta Inf.,,db/journals/acta/acta18.html#PettorossiB82,https://doi.org/10.1007/BF00264438 +Grzegorz Rozenberg,Direction Controlled Programmed Grammars.,1972,1,Acta Inf.,,db/journals/acta/acta1.html#Rozenberg72,https://doi.org/10.1007/BF00288688 +C. C. Lee,Generating Binary Trees of Bounded Height.,1986,23,Acta Inf.,5,db/journals/acta/acta23.html#LeeLW86,https://doi.org/10.1007/BF00288468 +Joseph JáJá,Space Efficient Algorithms for Some Graph Theoretical Problems.,1982,17,Acta Inf.,,db/journals/acta/acta17.html#JajaS82,https://doi.org/10.1007/BF00264160 +Masato Takeichi,Partial Parametrization Eliminates Multiple Traversals of Data Structures.,1987,24,Acta Inf.,1,db/journals/acta/acta24.html#Takeichi87,https://doi.org/10.1007/BF00290706 +Hans-Dieter Ehrich,Grundlagen einer Theorie der Datenstrukturen und Zugriffssysteme. Teil II: Zugriffssysteme.,1974,4,Acta Inf.,,db/journals/acta/acta4.html#Ehrich74a,https://doi.org/10.1007/BF00289613 +Bernd Reusch,Minimal Coverings for Incompletely Specified Sequential Machines.,1986,22,Acta Inf.,6,db/journals/acta/acta22.html#ReuschM86,https://doi.org/10.1007/BF00263650 +Robert Geist,The Reliability of Life-Critical Computer Systems.,1986,23,Acta Inf.,6,db/journals/acta/acta23.html#GeistSTD86,https://doi.org/10.1007/BF00264310 +Roni Khardon,Reasoning with Examples: Propositional Formulae and Database Dependencies.,1999,36,Acta Inf.,4,db/journals/acta/acta36.html#KhardonMR99,https://doi.org/10.1007/s002360050161 +Thomas P. Whaley,Postorder Trees and Eulerian Numbers.,1991,28,Acta Inf.,7,db/journals/acta/acta28.html#Whaley91,https://doi.org/10.1007/BF01178684 +Leonard M. Adleman,Improved Time and Space Bounds for Boolean Matrix Multiplication.,1978,11,Acta Inf.,,db/journals/acta/acta11.html#AdlemanBPR78,https://doi.org/10.1007/BF00264600 +Michael Schenke,Transformational Design of Real-Time Systems. Part II: From Program Specifications to Programs.,1999,36,Acta Inf.,1,db/journals/acta/acta36.html#Schenke99,https://doi.org/10.1007/s002360050154 +Hans Daduna,A Discrete-Time Round-Robin Queue with Bernoulli Input and General Arithmetic Service Time Distributions.,1981,15,Acta Inf.,,db/journals/acta/acta15.html#DadunaS81,https://doi.org/10.1007/BF00289264 +Ronald V. Book,On Languages Accepted by Space-Bounded Oracle Machines.,1979,12,Acta Inf.,,db/journals/acta/acta12.html#Book79,https://doi.org/10.1007/BF00266049 +C. A. R. Hoare,Normal Form Approach to Compiler Design.,1993,30,Acta Inf.,8,db/journals/acta/acta30.html#HoareHS93,https://doi.org/10.1007/BF01191809 +Hermann K.-G. Walter,Grammarforms and Grammarhomomorphisms.,1976,7,Acta Inf.,,db/journals/acta/acta7.html#Walter76,https://doi.org/10.1007/BF00265222 +Miguel R. Penabad,A general procedure to check conjunctive query containment.,2002,38,Acta Inf.,7,db/journals/acta/acta38.html#PenabadBHP02,https://doi.org/10.1007/s002360200082 +Ingo Wegener,A new Lower Bound on the Monotone Network Complexity of Boolean Sums.,1980,13,Acta Inf.,,db/journals/acta/acta13.html#Wegener80,https://doi.org/10.1007/BF00263988 +Youichi Kobuchi,Semantics analysis through elementary meanings.,2000,37,Acta Inf.,1,db/journals/acta/acta37.html#KobuchiSN00,https://doi.org/10.1007/PL00013302 +Bernard Chazelle,Some Techniques for Geometric Searching with Implicit Set Representations.,1987,24,Acta Inf.,5,db/journals/acta/acta24.html#Chazelle87,https://doi.org/10.1007/BF00263295 +Athanasios K. Tsakalidis,The Nearest Common Ancestor in a Dynamic Tree.,1988,25,Acta Inf.,1,db/journals/acta/acta25.html#Tsakalidis87,https://doi.org/10.1007/BF00268844 +Helmut Jürgensen,Local Hausdorff Dimension.,1995,32,Acta Inf.,5,db/journals/acta/acta32.html#JurgensenS95,https://doi.org/10.1007/BF01213081 +Derek Coleman,The Clean Termination of Pascal Programs.,1979,11,Acta Inf.,,db/journals/acta/acta11.html#ColemanH79,https://doi.org/10.1007/BF00289066 +Henrik Björklund,Conjunctive query containment over trees using schema information.,2018,55,Acta Inf.,1,db/journals/acta/acta55.html#BjorklundMS18,https://doi.org/10.1007/s00236-016-0282-1 +Kenneth J. Supowit,The Complexity of Drawing Trees Nicely.,1982,18,Acta Inf.,,db/journals/acta/acta18.html#SupowitR82,https://doi.org/10.1007/BF00289576 +Sumit Sur,IEH Graphs. A Novel Generalization of Hypercube Graphs.,1995,32,Acta Inf.,6,db/journals/acta/acta32.html#SurS95,https://doi.org/10.1007/BF01178908 +Eike Best,Synthesis and reengineering of persistent systems.,2015,52,Acta Inf.,1,db/journals/acta/acta52.html#BestD15,https://doi.org/10.1007/s00236-014-0209-7 +Arunabha Sen,Supercube: An Optimally Fault Tolerant Network Architecture.,1989,26,Acta Inf.,8,db/journals/acta/acta26.html#Sen89,https://doi.org/10.1007/BF00289159 +Géraud Sénizergues,On the Rational Subsets of the Free Group.,1996,33,Acta Inf.,3,db/journals/acta/acta33.html#Senizergues96,https://doi.org/10.1007/s002360050045 +Olivier Lecarme,More Comments on the Programming Language Pascal.,1974,4,Acta Inf.,,db/journals/acta/acta4.html#LecarmeD74,https://doi.org/10.1007/BF00288728 +Wolfgang J. Paul,On Alternation II. A Graph Theoretic Approach to Determinism Versus Nondeterminism.,1980,14,Acta Inf.,,db/journals/acta/acta14.html#PaulR80,https://doi.org/10.1007/BF00286494 +Jean-Michel Autebert,Iterated GSMs and Co-CFL.,1989,26,Acta Inf.,8,db/journals/acta/acta26.html#AutebertG89,https://doi.org/10.1007/BF00289160 +Luca Aceto,Timing and Causality in Process Algebra.,1996,33,Acta Inf.,4,db/journals/acta/acta33.html#AcetoM96,https://doi.org/10.1007/s002360050047 +Paul Walton Purdom Jr.,Semantic Routines and LR(k) Parsers.,1980,14,Acta Inf.,,db/journals/acta/acta14.html#PurdomB80,https://doi.org/10.1007/BF00286489 +Aldo de Luca,Well Quasi-Orders and Regular Languages.,1994,31,Acta Inf.,6,db/journals/acta/acta31.html#LucaV94,https://doi.org/10.1007/BF01213206 +David J. Kuck,Bounds on the Parallel Evaluation of Arithmetic Expressions Using Associativity and Commutativity.,1974,3,Acta Inf.,,db/journals/acta/acta3.html#KuckM74,https://doi.org/10.1007/BF00288634 +Friedrich L. Bauer,In Memoriam: Andrei Petrovich Ershov.,1990,27,Acta Inf.,3,db/journals/acta/acta27.html#Bauer89,https://doi.org/10.1007/BF00572987 +David Spuler,Optimal Search Trees Using Two-Way Key Comparisons.,1994,31,Acta Inf.,8,db/journals/acta/acta31.html#Spuler94,https://doi.org/10.1007/BF01178732 +Reiji Nakajima,Hierarchical Program Specification and Verification - a Many-sorted Logical Approach.,1980,14,Acta Inf.,,db/journals/acta/acta14.html#NakajimaHN80,https://doi.org/10.1007/BF00288541 +Chunhua Cao,Some kinds of primitive and non-primitive words.,2014,51,Acta Inf.,6,db/journals/acta/acta51.html#CaoYY14,https://doi.org/10.1007/s00236-014-0200-3 +Carl E. Landwehr,An Endogenous Priority Model for Load Control in Combined Batch-Interactive Computer Systems.,1976,7,Acta Inf.,,db/journals/acta/acta7.html#Landwehr76,https://doi.org/10.1007/BF00265768 +A. Nico Habermann,Alan J. Perlis 1922-1990.,1991,28,Acta Inf.,5,db/journals/acta/acta28.html#Habermann91,https://doi.org/10.1007/BF01178580 +Norishige Chiba,Drawing Plane Graphs Nicely.,1985,22,Acta Inf.,2,db/journals/acta/acta22.html#ChibaON85,https://doi.org/10.1007/BF00264230 +Takashi Tomita,Safraless LTL synthesis considering maximal realizability.,2017,54,Acta Inf.,7,db/journals/acta/acta54.html#TomitaUSHY17,https://doi.org/10.1007/s00236-016-0280-3 +Peter Habermehl,Automata-based verification of programs with tree updates.,2010,47,Acta Inf.,1,db/journals/acta/acta47.html#HabermehlIV10,https://doi.org/10.1007/s00236-009-0108-5 +Wladyslaw M. Turski,On Specification of Multiprocessor Computing.,1990,27,Acta Inf.,8,db/journals/acta/acta27.html#Turski89,https://doi.org/10.1007/BF00264282 +Hans Kleine Büning,Universal Asynchronous Iterative Arrays of Mealy Automata.,1980,13,Acta Inf.,,db/journals/acta/acta13.html#BuningP80,https://doi.org/10.1007/BF00288646 +Nieves R. Brisaboa,Testing Bag-Containment of Conjunctive Queries.,1997,34,Acta Inf.,7,db/journals/acta/acta34.html#BrisaboaH97,https://doi.org/10.1007/s002360050097 +Karel Culik II,L-Systems and Mutually Recursive Function Systems.,1993,30,Acta Inf.,3,db/journals/acta/acta30.html#CulikD93,https://doi.org/10.1007/BF01179375 +Jeffrey H. Kingston,Analysis of Tree Algorithms for the Simulation Event List.,1985,22,Acta Inf.,1,db/journals/acta/acta22.html#Kingston85,https://doi.org/10.1007/BF00290143 +Andreas Weber,On the Valuedness of Finite Transducers.,1990,27,Acta Inf.,8,db/journals/acta/acta27.html#Weber89,https://doi.org/10.1007/BF00264285 +Karel Culik II,The Ultimate Equivalence Problem for DOL Systems.,1978,10,Acta Inf.,,db/journals/acta/acta10.html#Culik78,https://doi.org/10.1007/BF00260925 +John V. Guttag,The Algebraic Specification of Abstract Data Types.,1978,10,Acta Inf.,,db/journals/acta/acta10.html#GuttagH78,https://doi.org/10.1007/BF00260922 +Kim S. Larsen,Amortized Constant Relaxed Rebalancing Using Standard Rotations.,1998,35,Acta Inf.,10,db/journals/acta/acta35.html#Larsen98,https://doi.org/10.1007/s002360050145 +Moshe Y. Vardi,Inferring Multivalued Dependencies From Functional and Join Dependencies.,1983,19,Acta Inf.,,db/journals/acta/acta19.html#Vardi83,https://doi.org/10.1007/BF00290729 +Peter Kirschenhofer,The Path Length of Random Skip Lists.,1994,31,Acta Inf.,8,db/journals/acta/acta31.html#KirschenhoferP94,https://doi.org/10.1007/BF01178735 +Edward Y. C. Cheng,Context-Free Languages over Infinite Alphabets.,1998,35,Acta Inf.,3,db/journals/acta/acta35.html#ChengK98,https://doi.org/10.1007/s002360050120 +Robert D. Tennent,Language Design Methods Based on Semantic Principles.,1977,8,Acta Inf.,,db/journals/acta/acta8.html#Tennent77,https://doi.org/10.1007/BF00289243 +Roland Carl Backhouse,An Alternative Approach to the Improvement of LR(k) Parsers.,1976,6,Acta Inf.,,db/journals/acta/acta6.html#Backhouse76,https://doi.org/10.1007/BF00288658 +Jean-Jacques Pansiot,Hiérarchie et fermeture de certaines classes de tag-systèmes.,1983,20,Acta Inf.,,db/journals/acta/acta20.html#Pansiot83,https://doi.org/10.1007/BF00289415 +Bin Zhang 0004,Unsafe Operations in B-Trees.,1989,26,Acta Inf.,5,db/journals/acta/acta26.html#ZhangH89,https://doi.org/10.1007/BF00289145 +John Aycock,Even faster generalized LR parsing.,2001,37,Acta Inf.,9,db/journals/acta/acta37.html#AycockHJM01,https://doi.org/10.1007/PL00013319 +Donald Sannella,Toward Formal Development of Programs from Algebraic Specifications: Parameterisation Revisited.,1992,29,Acta Inf.,8,db/journals/acta/acta29.html#SannellaST92,https://doi.org/10.1007/BF01191893 +Stephan Heilbrunner,On the Definition of ELR(k) and ELL(k) Grammars.,1979,11,Acta Inf.,,db/journals/acta/acta11.html#Heilbrunner79,https://doi.org/10.1007/BF00264023 +Paliath Narendran,Elements of Finite Order for Finite Weight-Reducing and Confluent Thue Systems.,1988,25,Acta Inf.,5,db/journals/acta/acta25.html#NarendranO88,https://doi.org/10.1007/BF00279954 +Bogdan Rembowski,A Priority Queue With Interruptions of Service Permitted After a Time Quantum.,1985,22,Acta Inf.,3,db/journals/acta/acta22.html#Rembowski85,https://doi.org/10.1007/BF00265681 +Howard Barringer,A Logic Covering Undefinedness in Program Proofs.,1984,21,Acta Inf.,,db/journals/acta/acta21.html#BarringerCJ84,https://doi.org/10.1007/BF00264250 +José R. Paramá,A semantic approach to optimize linear datalog programs.,2006,43,Acta Inf.,5,db/journals/acta/acta43.html#ParamaBPP06,https://doi.org/10.1007/s00236-006-0025-9 +Uwe Kastens,Modularity and Reusability in Attribute Grammars.,1994,31,Acta Inf.,7,db/journals/acta/acta31.html#KastensW94,https://doi.org/10.1007/BF01177548 +Juha Honkala,A new bound for the D0L language equivalence problem.,2018,55,Acta Inf.,1,db/journals/acta/acta55.html#Honkala18,https://doi.org/10.1007/s00236-016-0286-x +Donald L. Iglehart,Regenerative Simulation of Response Times in Networks of Queues with Multiple Job Types.,1979,12,Acta Inf.,,db/journals/acta/acta12.html#IglehartS79,https://doi.org/10.1007/BF00266048 +José Félix Costa,Object Inheritance Beyond Subtyping.,1994,31,Acta Inf.,1,db/journals/acta/acta31.html#CostaSS94,https://doi.org/10.1007/BF01178920 +Shou-Hsuan Stephen Huang,Generalized Binary Split Trees.,1984,21,Acta Inf.,,db/journals/acta/acta21.html#HuangW84,https://doi.org/10.1007/BF00289143 +T. Anderson,Efficient LR(1) Parsers.,1973,2,Acta Inf.,,db/journals/acta/acta2.html#AndersonEH73,https://doi.org/10.1007/BF00571461 +Robert Brijder,The fibers and range of reduction graphs in ciliates.,2008,45,Acta Inf.,5,db/journals/acta/acta45.html#BrijderH08,https://doi.org/10.1007/s00236-008-0074-3 +Eric Sanlaville,Machine Scheduling with Availability Constraints.,1998,35,Acta Inf.,9,db/journals/acta/acta35.html#SanlavilleS98,https://doi.org/10.1007/s002360050143 +Philippe Flajolet,On the Performance Evaluation of Extendible Hashing and Trie Searching.,1983,20,Acta Inf.,,db/journals/acta/acta20.html#Flajolet83,https://doi.org/10.1007/BF00264279 +David Gries,Describing an Algorithm by Hopcroft,1973,2,Acta Inf.,,db/journals/acta/acta2.html#Gries73, +Peter Roth,Every Binary Pattern of Length Six is Avoidable on the Two-Letter Alphabet.,1992,29,Acta Inf.,1,db/journals/acta/acta29.html#Roth92,https://doi.org/10.1007/BF01178567 +Ana Cavalcanti,Testing for refinement in Circus.,2011,48,Acta Inf.,2,db/journals/acta/acta48.html#CavalcantiG11,https://doi.org/10.1007/s00236-011-0133-z +Lawrence T. Kou,A Fast Algorithm for Steiner Trees.,1981,15,Acta Inf.,,db/journals/acta/acta15.html#KouMB81,https://doi.org/10.1007/BF00288961 +Alexander Meduna,Context Free Derivations on Word Monoids.,1990,27,Acta Inf.,8,db/journals/acta/acta27.html#Meduna89,https://doi.org/10.1007/BF00264286 +Maurice Clint,On the Use of History Variables.,1981,16,Acta Inf.,,db/journals/acta/acta16.html#Clint81,https://doi.org/10.1007/BF00289587 +John L. Bruno,On Scheduling Tasks with Exponential Service Times and In-Tree Precedence Constraints.,1985,22,Acta Inf.,2,db/journals/acta/acta22.html#Bruno85,https://doi.org/10.1007/BF00264227 +Chua-Huang Huang,An Incremental Mechanical Development of Systolic Solutions to the Algebraic Path Problem.,1989,27,Acta Inf.,2,db/journals/acta/acta27.html#HuangL89a,https://doi.org/10.1007/BF00265150 +Nabil A. Khabbaz,Multipass Precedence Analysis.,1974,4,Acta Inf.,,db/journals/acta/acta4.html#Khabbaz74,https://doi.org/10.1007/BF00288937 +Kenichi Taniguchi,An O(n) Algorithm for Computing the Set of Available Expressions of D-Charts.,1976,6,Acta Inf.,,db/journals/acta/acta6.html#TaniguchiK76,https://doi.org/10.1007/BF00268137 +Wolfgang Reisig,On Gurevich's theorem on sequential algorithms.,2003,39,Acta Inf.,4,db/journals/acta/acta39.html#Reisig03,https://doi.org/10.1007/s00236-002-0106-3 +Jan A. Bergstra,Machine structure oriented control code logic.,2009,46,Acta Inf.,5,db/journals/acta/acta46.html#BergstraM09,https://doi.org/10.1007/s00236-009-0099-2 +Mohamed G. Gouda,The Instability of Self-Stabilization.,1990,27,Acta Inf.,8,db/journals/acta/acta27.html#GoudaHR89,https://doi.org/10.1007/BF00264283 +Jyrki Katajainen,Sorting Multisets Stably in Minimum Space.,1994,31,Acta Inf.,4,db/journals/acta/acta31.html#KatajainenP94,https://doi.org/10.1007/BF01178508 +Thomas Buchholz,On Time Computability of Functions in One-Way Cellular Automata.,1998,35,Acta Inf.,4,db/journals/acta/acta35.html#BuchholzK98,https://doi.org/10.1007/s002360050123 +Jim Cantor,Information Theoretic Analysis for a General Queueing System at Equilibrium with Application to Queues in Tandem.,1986,23,Acta Inf.,6,db/journals/acta/acta23.html#CantorEH86,https://doi.org/10.1007/BF00264312 +José Enrique Armendáriz-Iñigo,Correctness proof of a database replication protocol under the perspective of the I/O automaton model.,2009,46,Acta Inf.,4,db/journals/acta/acta46.html#Armendariz-InigoMGM09,https://doi.org/10.1007/s00236-009-0097-4 +Bogdan Aman,Efficiently solving the Bin Packing problem through bio-inspired mobility.,2017,54,Acta Inf.,4,db/journals/acta/acta54.html#AmanC17,https://doi.org/10.1007/s00236-016-0264-3 +Marisa Navarro,Contextual Rewriting as a Sound and Complete Proof Method for Conditional LOG-Specifications.,1993,30,Acta Inf.,2,db/journals/acta/acta30.html#NavarroOR93,https://doi.org/10.1007/BF01178578 +Sheila A. Greibach,Hierarchy Theorems for Two-Way Finite State Transducers.,1978,11,Acta Inf.,,db/journals/acta/acta11.html#Greibach78,https://doi.org/10.1007/BF00264603 +Robert Stephens,A Survey of Stream Processing.,1997,34,Acta Inf.,7,db/journals/acta/acta34.html#Stephens97,https://doi.org/10.1007/s002360050095 +Zvi Galil,An O(V5/3 E2/3) Algorithm for the Maximal Flow Problem.,1980,14,Acta Inf.,,db/journals/acta/acta14.html#Galil80a,https://doi.org/10.1007/BF00264254 +Narao Nakatsu,A Longest Common Subsequence Algorithm Suitable for Similar Text Strings.,1982,18,Acta Inf.,,db/journals/acta/acta18.html#NakatsuKY82,https://doi.org/10.1007/BF00264437 +Christian von Essen,Synthesizing efficient systems in probabilistic environments.,2016,53,Acta Inf.,4,db/journals/acta/acta53.html#EssenJPV16,https://doi.org/10.1007/s00236-015-0237-y +Arto Salomaa,On Sentential Forms of Context-Free Grammars.,1973,2,Acta Inf.,,db/journals/acta/acta2.html#Salomaa73,https://doi.org/10.1007/BF00571462 +Ryszard Janicki,Fundamentals of Modelling Concurrency Using Discrete Relational Structures.,1997,34,Acta Inf.,5,db/journals/acta/acta34.html#JanickeK97,https://doi.org/10.1007/s002360050090 +Ralph-Johan Back,Refinement of Fair Action Systems.,1998,35,Acta Inf.,2,db/journals/acta/acta35.html#BackX98,https://doi.org/10.1007/s002360050116 +P. F. Schuler,WCS-Analysis of the Context-Sensitive.,1974,4,Acta Inf.,,db/journals/acta/acta4.html#Schuler74a,https://doi.org/10.1007/BF00289617 +Michael Karr,Affine Relationships Among Variables of a Program.,1976,6,Acta Inf.,,db/journals/acta/acta6.html#Karr76,https://doi.org/10.1007/BF00268497 +Lane A. Hemaspaandra,Easy Sets and Hard Certificate Schemes.,1997,34,Acta Inf.,11,db/journals/acta/acta34.html#HemaspaandraRW97,https://doi.org/10.1007/s002360050109 +Donal T. MacVeigh,Effect of Data Representation on Cost of Sparse Matrix Operations.,1977,7,Acta Inf.,,db/journals/acta/acta7.html#MacVeigh77,https://doi.org/10.1007/BF00289469 +Christian Ferdinand,Tree Automata for Code Selection.,1994,31,Acta Inf.,8,db/journals/acta/acta31.html#FerdinandSW94,https://doi.org/10.1007/BF01178733 +Giorgio Levi,Contributions to the Semantics of Logic Perpetual Processes.,1988,25,Acta Inf.,6,db/journals/acta/acta25.html#LeviP88,https://doi.org/10.1007/BF00291055 +Raymond R. Devillers,Factorisation of transition systems.,2018,55,Acta Inf.,4,db/journals/acta/acta55.html#Devillers18,https://doi.org/10.1007/s00236-017-0300-y +Alexander Meduna,Syntactic Complexity of Scattered Context Grammars.,1995,32,Acta Inf.,3,db/journals/acta/acta32.html#Meduna95,https://doi.org/10.1007/BF01178263 +Dung T. Huynh,Complexity of the Word Problem for Commutative Semigroups of Fixed Dimension.,1985,22,Acta Inf.,4,db/journals/acta/acta22.html#Huynh85,https://doi.org/10.1007/BF00288776 +Christos Levcopoulos,A Balanced Search Tree with O (1) Worst-case Update Time.,1988,26,Acta Inf.,3,db/journals/acta/acta26.html#LevcopoulosO88,https://doi.org/10.1007/BF00299635 +Johannes Köbler,On Counting and Approximation.,1989,26,Acta Inf.,4,db/journals/acta/acta26.html#KoblerST89,https://doi.org/10.1007/BF00276023 +Stefan Sokolowski,Axioms for Total Correctness.,1977,9,Acta Inf.,,db/journals/acta/acta9.html#Sokolowski77,https://doi.org/10.1007/BF00263765 +Yong He,Optimal algorithms for semi-online preemptive scheduling problems on two uniform machines.,2004,40,Acta Inf.,5,db/journals/acta/acta40.html#HeJ04,https://doi.org/10.1007/s00236-003-0134-7 +Allan G. Bromley,Memory Fragmentation in Buddy Methods for Dynamic Storage Allocation.,1980,14,Acta Inf.,,db/journals/acta/acta14.html#Bromley80,https://doi.org/10.1007/BF00288539 +Jørgen Steensgaard-Madsen,Pascal-Clarifications and Recommended Extensions.,1979,12,Acta Inf.,,db/journals/acta/acta12.html#Steensgaard-Madsen79,https://doi.org/10.1007/BF00264018 +Chi-Chung Hui,Minimal Communication Cost Software Construction in the Internet Environment.,1997,34,Acta Inf.,8,db/journals/acta/acta34.html#HuiC97,https://doi.org/10.1007/s002360050098 +Trevor I. Fenner,An Analysis of two Related Loop-free Algorithms for Generating Integer Partitions.,1981,16,Acta Inf.,,db/journals/acta/acta16.html#FennerL81,https://doi.org/10.1007/BF00261261 +Flavio Corradini,Locality Based Semantics for Process Algebras.,1997,34,Acta Inf.,4,db/journals/acta/acta34.html#CorradiniN97,https://doi.org/10.1007/s002360050086 +Ellis Horowitz,A Unified View of the Complexity of Evaluation and Interpolation.,1974,3,Acta Inf.,,db/journals/acta/acta3.html#Horowitz74,https://doi.org/10.1007/BF00264033 +Guido Proietti,An Optimal Algorithm for Decomposing a Window into Maximal Quadtree Blocks.,1999,36,Acta Inf.,4,db/journals/acta/acta36.html#Proietti99,https://doi.org/10.1007/s002360050160 +Patricio V. Poblete,The Analysis of Heuristics for Search Trees.,1993,30,Acta Inf.,3,db/journals/acta/acta30.html#Poblete93,https://doi.org/10.1007/BF01179372 +Anna Slobodová,Communication for Alternating Machines.,1992,29,Acta Inf.,5,db/journals/acta/acta29.html#Slobodova92,https://doi.org/10.1007/BF01193576 +Stefan Andrei,Self-embedded context-free grammars with regular counterparts.,2004,40,Acta Inf.,5,db/journals/acta/acta40.html#AndreiCC04,https://doi.org/10.1007/s00236-003-0133-8 +Ernst-Rüdiger Olderog,Editorial: Hybrid Systems.,2007,43,Acta Inf.,7,db/journals/acta/acta43.html#OlderogR07,https://doi.org/10.1007/s00236-006-0034-8 +Igal Adiri,Single Machine Flow-Time Scheduling With a Single Breakdown.,1989,26,Acta Inf.,7,db/journals/acta/acta26.html#AdiriBFK89,https://doi.org/10.1007/BF00288977 +Aaron Bohy,Symblicit algorithms for mean-payoff and shortest path in monotonic Markov decision processes.,2017,54,Acta Inf.,6,db/journals/acta/acta54.html#BohyBRB17,https://doi.org/10.1007/s00236-016-0255-4 +Ali Mili,A Relational Approach to the Design of Deterministic Programs.,1983,20,Acta Inf.,,db/journals/acta/acta20.html#Mili83,https://doi.org/10.1007/BF00264277 +William C. K. Yen,An Optimal Algorithm for Solving the Searchlight Guarding Problem on Weighted Two-Terminal Series-Parallel Graphs.,1999,36,Acta Inf.,2,db/journals/acta/acta36.html#YenT99,https://doi.org/10.1007/s002360050156 +Manfred Broy,Partial Abstract Types.,1982,18,Acta Inf.,,db/journals/acta/acta18.html#BroyW82,https://doi.org/10.1007/BF00625280 +Holger Bock Axelsen,On reversible Turing machines and their function universality.,2016,53,Acta Inf.,5,db/journals/acta/acta53.html#AxelsenG16,https://doi.org/10.1007/s00236-015-0253-y +Karl Winklmann,On the Complexity of some Problems Concerning the Use of Procedures II.,1982,18,Acta Inf.,,db/journals/acta/acta18.html#Winklmann82a,https://doi.org/10.1007/BF00289578 +Hans Langmaack,On Correct Procedure Parameter Transmission in Higher Programming Languages,1973,2,Acta Inf.,,db/journals/acta/acta2.html#Langmaack73, +C. J. M. Turnbull,Generalized Deterministic Left To Right Parsing.,1979,12,Acta Inf.,,db/journals/acta/acta12.html#TurnbullL79,https://doi.org/10.1007/BF00264578 +Ulrich Faigle,Some Order Dimension Bounds for Communication Complexity Problems.,1991,28,Acta Inf.,6,db/journals/acta/acta28.html#FaigleK91,https://doi.org/10.1007/BF01463947 +Luc Bougé,On the Existence of Symmetric Algorithms to Find Leaders in Networks of Communicating Sequential Processes.,1988,25,Acta Inf.,2,db/journals/acta/acta25.html#Bouge88,https://doi.org/10.1007/BF00263584 +Errol L. Lloyd,On the Worst Case Performance of Buddy Systems.,1985,22,Acta Inf.,4,db/journals/acta/acta22.html#LloydL85,https://doi.org/10.1007/BF00288778 +Andrew Chi-Chih Yao,On Random 2-3 Trees.,1978,9,Acta Inf.,,db/journals/acta/acta9.html#Yao78,https://doi.org/10.1007/BF00289075 +Michel Parent,A Note on the Influence of Program Loading on the Page Fault Rate.,1977,8,Acta Inf.,,db/journals/acta/acta8.html#ParentP77,https://doi.org/10.1007/BF00271344 +Michael O. Rabin,The Choice Coordination Problem.,1982,17,Acta Inf.,,db/journals/acta/acta17.html#Rabin82,https://doi.org/10.1007/BF00288965 +Luca Aceto,Lifting non-finite axiomatizability results to extensions of process algebras.,2010,47,Acta Inf.,3,db/journals/acta/acta47.html#AcetoFIM10,https://doi.org/10.1007/s00236-010-0114-7 +Walter Cunto,Improving Time and Space Efficiency in Generalized Binary Search Trees.,1987,24,Acta Inf.,5,db/journals/acta/acta24.html#CuntoG87,https://doi.org/10.1007/BF00263296 +Uwe Kastens,Lifetime Analysis for Attributes.,1987,24,Acta Inf.,6,db/journals/acta/acta24.html#Kastens87,https://doi.org/10.1007/BF00282619 +John R. Rice,Parallel Algorithms for Adaptive Quadrature II Metalgorithm Correctness.,1975,5,Acta Inf.,,db/journals/acta/acta5.html#Rice75,https://doi.org/10.1007/BF00264562 +Paul E. S. Dunne,A Result on k -Valent Graphs and Its Application to a Graph Embedding Problem.,1987,24,Acta Inf.,4,db/journals/acta/acta24.html#Dunne87,https://doi.org/10.1007/BF00292113 +Walter Cunto,Transforming Unbalanced Multiway Trees into a Practical External Data Structure.,1988,26,Acta Inf.,3,db/journals/acta/acta26.html#CuntoP88,https://doi.org/10.1007/BF00299632 +James H. Anderson,A Fine-Grained Solution to the Mutual Exclusion Problem.,1993,30,Acta Inf.,3,db/journals/acta/acta30.html#Anderson93,https://doi.org/10.1007/BF01179373 +Viktor Schuppan,Extracting unsatisfiable cores for LTL via temporal resolution.,2016,53,Acta Inf.,3,db/journals/acta/acta53.html#Schuppan16,https://doi.org/10.1007/s00236-015-0242-1 +Tobias Nipkow,Non-deterministic Data Types: Models and Implementations.,1986,22,Acta Inf.,6,db/journals/acta/acta22.html#Nipkow86,https://doi.org/10.1007/BF00263649 +John Darlington,A System which Automatically Improves Programs.,1976,6,Acta Inf.,,db/journals/acta/acta6.html#DarlingtonB76,https://doi.org/10.1007/BF00263742 +John Aycock,Early action in an Earley parser.,2009,46,Acta Inf.,8,db/journals/acta/acta46.html#AycockB09,https://doi.org/10.1007/s00236-009-0107-6 +Gary J. Nutt,Some Resource Allocation Policies in a Multi Associative Processor.,1976,6,Acta Inf.,,db/journals/acta/acta6.html#Nutt76,https://doi.org/10.1007/BF00288655 +Paul Walton Purdom Jr.,Backtracking with Multi-Level Dynamic Search Rearrangement.,1981,15,Acta Inf.,,db/journals/acta/acta15.html#PurdomBR81,https://doi.org/10.1007/BF00288958 +Witold Litwin,Concurrency and Trie Hashing.,1989,26,Acta Inf.,7,db/journals/acta/acta26.html#LitwinSV89,https://doi.org/10.1007/BF00288973 +Thomas Brihaye,Pseudopolynomial iterative algorithm to solve total-payoff games and min-cost reachability games.,2017,54,Acta Inf.,1,db/journals/acta/acta54.html#BrihayeGHM17,https://doi.org/10.1007/s00236-016-0276-z +William E. Howden,Algebraic Program Testing.,1978,10,Acta Inf.,,db/journals/acta/acta10.html#Howden78,https://doi.org/10.1007/BF00260923 +Edmund M. Clarke,Proving Correctness of Coroutines Without History Variables.,1980,13,Acta Inf.,,db/journals/acta/acta13.html#Clarke80,https://doi.org/10.1007/BF00263992 +Ralph-Johan Back,Fusion and Simultaneous Execution in the Refinement Calculus.,1998,35,Acta Inf.,11,db/journals/acta/acta35.html#BackB98,https://doi.org/10.1007/s002360050148 +Walter Guttmann,Algebras for iteration and infinite computations.,2012,49,Acta Inf.,5,db/journals/acta/acta49.html#Guttmann12,https://doi.org/10.1007/s00236-012-0162-2 +Edsger W. Dijkstra,A Simple Fixpoint Argument Without the Restriction to Continuity.,1986,23,Acta Inf.,1,db/journals/acta/acta23.html#DijkstraG86,https://doi.org/10.1007/BF00268074 +C. A. R. Hoare,Consistent and Complementary Formal Theories of the Semantics of Programming Languages.,1974,3,Acta Inf.,,db/journals/acta/acta3.html#HoareL74,https://doi.org/10.1007/BF00264034 +John L. Bruno,Probabilistic Bounds for Dual Bin-Packing.,1985,22,Acta Inf.,3,db/journals/acta/acta22.html#BrunoD85,https://doi.org/10.1007/BF00265685 +Eike Best,A Formal Model of Atomicity in Asynchronous Systems.,1981,16,Acta Inf.,,db/journals/acta/acta16.html#BestR81,https://doi.org/10.1007/BF00289593 +Costas S. Iliopoulos,Monte Carlo Circuits for the Abelian Permutation Group Intersection Problem.,1986,23,Acta Inf.,6,db/journals/acta/acta23.html#Iliopoulos86,https://doi.org/10.1007/BF00264315 +Rainer Kemp,Generating Words Lexicographically: An Average-Case Analysis.,1998,35,Acta Inf.,1,db/journals/acta/acta35.html#Kemp98,https://doi.org/10.1007/s002360050114 +Eberhard Bertsch,An Observation on Suffix Redundancy in LL(1) Error Repair.,1996,33,Acta Inf.,7,db/journals/acta/acta33.html#Bertsch96,https://doi.org/10.1007/BF03036468 +Shmuel Katz,A Closer Look at Termination.,1975,5,Acta Inf.,,db/journals/acta/acta5.html#KatzM75,https://doi.org/10.1007/BF00264565 +Brian Allen,On the Costs of Optimal and Near-Optimal Binary Search Trees.,1982,18,Acta Inf.,,db/journals/acta/acta18.html#Allen82,https://doi.org/10.1007/BF00263193 +Volker Strassen,Berechnung und Programm. II.,1973,2,Acta Inf.,,db/journals/acta/acta2.html#Strassen73,https://doi.org/10.1007/BF00571464 +Rodney Farrow,A Comparison of Storage Optimizations in Automatically-Generated Attribute Evaluators.,1986,23,Acta Inf.,4,db/journals/acta/acta23.html#FarrowY86,https://doi.org/10.1007/BF00267865 +Hermann A. Maurer,On Grammar Forms with Terminal Context.,1976,6,Acta Inf.,,db/journals/acta/acta6.html#MaurerW76,https://doi.org/10.1007/BF00268140 +Walter Vogler,Failures Semantics and Deadlocking of Modular Petri Nets.,1989,26,Acta Inf.,4,db/journals/acta/acta26.html#Vogler89,https://doi.org/10.1007/BF00276021 +Michael A. Arbib,Proof Rules for Gotos.,1979,11,Acta Inf.,,db/journals/acta/acta11.html#ArbibA79,https://doi.org/10.1007/BF00264021 +Rémy Belmonte,Parameterized complexity of three edge contraction problems with degree constraints.,2014,51,Acta Inf.,7,db/journals/acta/acta51.html#BelmonteGHP14,https://doi.org/10.1007/s00236-014-0204-z +Andrzej Ehrenfeucht,Partial (Set) 2-Structures. Part I: Basic Notions and the Representation Problem.,1990,27,Acta Inf.,4,db/journals/acta/acta27.html#EhrenfeuchtR89,https://doi.org/10.1007/BF00264611 +Roberto Baldoni,Consistent Records in Asynchronous Computations.,1998,35,Acta Inf.,6,db/journals/acta/acta35.html#BaldoniHR98,https://doi.org/10.1007/s002360050127 +Pierre-Jacques Courtois,"Comments on ""A Comparison of Two Synchronizing Concepts by Per Brinch Hansen"".",1972,1,Acta Inf.,,db/journals/acta/acta1.html#CourtoisHP72,https://doi.org/10.1007/BF00289516 +Wolfgang Reisig,Deterministic Buffer Synchronization of Sequential Processes.,1982,18,Acta Inf.,,db/journals/acta/acta18.html#Reisig82,https://doi.org/10.1007/BF00264434 +Rafael Wisniewski,Geometric analysis of nondeterminacy in dynamical systems.,2007,43,Acta Inf.,7,db/journals/acta/acta43.html#WisniewskiR07,https://doi.org/10.1007/s00236-006-0037-5 +Andrei P. Ershov,Axiomatics for Memory Allocation.,1976,6,Acta Inf.,,db/journals/acta/acta6.html#Ershov76,https://doi.org/10.1007/BF00263743 +Christoph Wedler,On Linear List Recursion in Parallel.,1998,35,Acta Inf.,10,db/journals/acta/acta35.html#WedlerL98,https://doi.org/10.1007/s002360050146 +Myung-Joon Lee,Boundedly LR( k )-conflictable Grammars.,1994,31,Acta Inf.,3,db/journals/acta/acta31.html#LeeC94,https://doi.org/10.1007/BF01218406 +A. Bijlsma,A Sharp Proof Rule for Procedures in wp Semantics.,1989,26,Acta Inf.,5,db/journals/acta/acta26.html#BijlsmaMW89,https://doi.org/10.1007/BF00289144 +Kurt Mehlhorn,Randomized and Deterministic Simulations of PRAMs by Parallel Machines with Restricted Granularity of Parallel Memories.,1984,21,Acta Inf.,,db/journals/acta/acta21.html#MehlhornV84,https://doi.org/10.1007/BF00264615 +Joseph M. Morris,Temporal Predicat Transformers and Fair Termination.,1990,27,Acta Inf.,4,db/journals/acta/acta27.html#Morris89a,https://doi.org/10.1007/BF00264610 +Shin-ichi Morimoto,Yet another generation of LALR parsers for regular right part grammars.,2001,37,Acta Inf.,9,db/journals/acta/acta37.html#MorimotoS01,https://doi.org/10.1007/PL00013318 +Erol Gelenbe,The Behaviour of a Single-Queue in a General Queueing Network.,1976,7,Acta Inf.,,db/journals/acta/acta7.html#GelenbeP76,https://doi.org/10.1007/BF00265766 +George Loizou,Losslessness and Project-Join Constructibility in Relational Databases.,1987,24,Acta Inf.,2,db/journals/acta/acta24.html#LoizouT87,https://doi.org/10.1007/BF00264360 +Rudolf Bayer,Symmetric Binary B-Trees: Data Structure and Maintenance Algorithms.,1972,1,Acta Inf.,,db/journals/acta/acta1.html#Bayer72,https://doi.org/10.1007/BF00289509 +Donald W. Loveland,Performance Bounds for Binary Testing with Arbitrary Weights.,1985,22,Acta Inf.,1,db/journals/acta/acta22.html#Loveland85,https://doi.org/10.1007/BF00290148 +Raymond R. Devillers,S-Invariant Analysis of General Recursive Petri Boxes.,1995,32,Acta Inf.,4,db/journals/acta/acta32.html#Devillers95,https://doi.org/10.1007/BF01178382 +Arthur H. M. ter Hofstede,Applications of a Categorical Framework for Conceptual Data Modelling.,1997,34,Acta Inf.,12,db/journals/acta/acta34.html#HofstedeLW97,https://doi.org/10.1007/s002360050112 +Andrzej Biela,Program-Substitution and Admissibility of Rules in Algorithmic Logic.,1988,25,Acta Inf.,4,db/journals/acta/acta25.html#Biela88,https://doi.org/10.1007/BF02737110 +Oscar H. Ibarra,On Communication-Bounded Synchronized Alternating Finite Automata.,1994,31,Acta Inf.,4,db/journals/acta/acta31.html#IbarraT94,https://doi.org/10.1007/BF01178509 +Anna Hac,Performance and Reliability Improvement by Using Asynchronous Algorithms in Disk Buffer Cache Memory.,1993,30,Acta Inf.,2,db/journals/acta/acta30.html#Hac93,https://doi.org/10.1007/BF01178577 +Yuzheng Ding,The Relaxed min-max Heap.,1993,30,Acta Inf.,3,db/journals/acta/acta30.html#DingW93,https://doi.org/10.1007/BF01179371 +Beate Commentz-Walter,Size-depht Tradeoff in Non-monotone Boolean Formulae.,1980,14,Acta Inf.,,db/journals/acta/acta14.html#Commentz-WalterS80,https://doi.org/10.1007/BF00264256 +Ashok K. Chandra,On Sets of Boolean n -Projections Surjective.,1983,20,Acta Inf.,,db/journals/acta/acta20.html#ChandraKMZ83,https://doi.org/10.1007/BF00264296 +André Arnold,Synchronized Behaviours of Processes and Rational Relations.,1982,17,Acta Inf.,,db/journals/acta/acta17.html#Arnold82,https://doi.org/10.1007/BF00262973 +Wayne A. Babich,The Method of Attributes for Data Flow Analysis: Part I. Exhaustive Analysis.,1978,10,Acta Inf.,,db/journals/acta/acta10.html#BabichJ78,https://doi.org/10.1007/BF00264319 +Mitchell Wand,First-Order Identities as a Defining Language.,1980,14,Acta Inf.,,db/journals/acta/acta14.html#Wand80,https://doi.org/10.1007/BF00286491 +Hadassa Daltrophe,Big data interpolation using functional representation.,2018,55,Acta Inf.,3,db/journals/acta/acta55.html#DaltropheDL18,https://doi.org/10.1007/s00236-016-0288-8 +Boris D. Lubachevsky,An Approach to Automating the Verification of Compact Parallel Coordination Programs I.,1984,21,Acta Inf.,,db/journals/acta/acta21.html#Lubachevsky84,https://doi.org/10.1007/BF00289237 +Amir M. Ben-Amram,Computational complexity via programming languages: constant factors do matter.,2000,37,Acta Inf.,2,db/journals/acta/acta37.html#Ben-AmramJ00,https://doi.org/10.1007/s002360000038 +Huimin Lin,Axiomatising timed automata.,2002,38,Acta Inf.,4,db/journals/acta/acta38.html#LinY02,https://doi.org/10.1007/s236-002-8035-2 +Falko Bause,On the Analysis of Petri Nets with Static Priorities.,1996,33,Acta Inf.,7,db/journals/acta/acta33.html#Bause96,https://doi.org/10.1007/BF03036470 +David M. Choy,Optimal alpha-beta Trees with Capacity Constraint.,1978,10,Acta Inf.,,db/journals/acta/acta10.html#ChoyW78,https://doi.org/10.1007/BF00264321 +Ludmila Cherkasova,Bounded Self-Stabilizing Petri Nets.,1995,32,Acta Inf.,3,db/journals/acta/acta32.html#CherkasovaHR95,https://doi.org/10.1007/BF01178259 +Hans Langmaack,On Termination Problems for Finitely Interpreted ALGOL-like Programs.,1982,18,Acta Inf.,,db/journals/acta/acta18.html#Langmaack82,https://doi.org/10.1007/BF00625282 +Christel Baier,Metric Semantics from Partial Order Semantics.,1997,34,Acta Inf.,9,db/journals/acta/acta34.html#BaierM97,https://doi.org/10.1007/s002360050104 +Stefan Andrei,Some results on the Collatz problem.,2000,37,Acta Inf.,2,db/journals/acta/acta37.html#AndreiKN00,https://doi.org/10.1007/s002360000039 +Wolfgang Menzel,An Extension of the Theory of Learning Systems,1973,2,Acta Inf.,,db/journals/acta/acta2.html#Menzel73, +Witold Lipski Jr.,Efficient Algorithms for Finding Maximum Matchings in Convex Bipartite Graphs and Related Problems.,1981,15,Acta Inf.,,db/journals/acta/acta15.html#LipskiP81,https://doi.org/10.1007/BF00264533 +Erol Gelenbe,Availability of a Distributed Computer System with Failures.,1986,23,Acta Inf.,6,db/journals/acta/acta23.html#GelenbeFT86,https://doi.org/10.1007/BF00264311 +Karl-Rudolf Moll,Left Context Precedence Grammars.,1980,14,Acta Inf.,,db/journals/acta/acta14.html#Moll80,https://doi.org/10.1007/BF00286490 +Ursula Schmidt,Long Unavoidable Patterns.,1987,24,Acta Inf.,4,db/journals/acta/acta24.html#Schmidt87,https://doi.org/10.1007/BF00292112 +Md. Sumon Shahriar,Preserving key in XML data transformation.,2009,46,Acta Inf.,7,db/journals/acta/acta46.html#ShahriarL09,https://doi.org/10.1007/s00236-009-0101-z +Günter Hotz,Sequentielle Analyse kontextfreier Sprachen.,1974,4,Acta Inf.,,db/journals/acta/acta4.html#Hotz74,https://doi.org/10.1007/BF00288936 +Shlomi Dolev,Memory Requirements for Silent Stabilization.,1999,36,Acta Inf.,6,db/journals/acta/acta36.html#DolevGS99,https://doi.org/10.1007/s002360050180 +Dong-wan Tcha,Processors Selection and Traffic Splitting in a Parallel Processors System.,1992,29,Acta Inf.,5,db/journals/acta/acta29.html#TchaLL92,https://doi.org/10.1007/BF01193575 +Zoltán Fülöp 0001,Minimal Equational Representations of Recognizable Tree Languages.,1997,34,Acta Inf.,1,db/journals/acta/acta34.html#FulopV97,https://doi.org/10.1007/s002360050073 +Wolfgang J. Paul,Boolesche Minimalpolynome und überdeckungsprobleme.,1974,4,Acta Inf.,,db/journals/acta/acta4.html#Paul74,https://doi.org/10.1007/BF00289615 +Rudolf Bayer,Organization and Maintenance of Large Ordered Indices.,1972,1,Acta Inf.,,db/journals/acta/acta1.html#BayerM72,https://doi.org/10.1007/BF00288683 +John L. Bruno,Optimal Fault-Tolerant Computing on Multiprocessor Systems.,1997,34,Acta Inf.,12,db/journals/acta/acta34.html#BrunoC97,https://doi.org/10.1007/s002360050110 +Volker Diekert,Investigations on Hotz Groups for Arbitrary Grammars.,1986,22,Acta Inf.,6,db/journals/acta/acta22.html#Diekert86,https://doi.org/10.1007/BF00263651 +Elizabeth Scott,BRNGLR: a cubic Tomita-style GLR parsing algorithm.,2007,44,Acta Inf.,6,db/journals/acta/acta44.html#ScottJE07,https://doi.org/10.1007/s00236-007-0054-z +Zoltán Fülöp 0001,Forward and backward application of symbolic tree transducers.,2014,51,Acta Inf.,5,db/journals/acta/acta51.html#FulopV14,https://doi.org/10.1007/s00236-014-0197-7 +Argimiro Arratia Quesada,On the power of deep pushdown stacks.,2009,46,Acta Inf.,7,db/journals/acta/acta46.html#QuesadaS09,https://doi.org/10.1007/s00236-009-0103-x +Hisao Kameda,A Feedback-Coupled Resource Allocation Policy for Multiprogrammed Computer Systems.,1977,8,Acta Inf.,,db/journals/acta/acta8.html#KamedaG77,https://doi.org/10.1007/BF00271343 +Michel Latteux,On Characterizations of Recursively Enumerable Languages.,1990,28,Acta Inf.,2,db/journals/acta/acta28.html#LatteuxT90,https://doi.org/10.1007/BF01237236 +Yael Maon,On the Equivalence of Some Transductions Involving Letter to Letter Morphisms on Regular Languages.,1986,23,Acta Inf.,5,db/journals/acta/acta23.html#Maon86,https://doi.org/10.1007/BF00288471 +Hristo Djidjev,Reduced Constants for Simple Cycle Graph Separation.,1997,34,Acta Inf.,3,db/journals/acta/acta34.html#DjidjevV97,https://doi.org/10.1007/s002360050082 +Glen E. Newton,Proving Properties of Interacting Processes.,1974,4,Acta Inf.,,db/journals/acta/acta4.html#Newton74,https://doi.org/10.1007/BF00288744 +Victor Mitrana,On the Interdependence Between Shuffle and Crossing-Over Operations.,1997,34,Acta Inf.,4,db/journals/acta/acta34.html#Mitrana97,https://doi.org/10.1007/s002360050084 +Volker Diekert,Approximating Traces.,1998,35,Acta Inf.,7,db/journals/acta/acta35.html#DiekertG98,https://doi.org/10.1007/s002360050132 +Manfred Kunde,Lower Bounds for Sorting on Mesh-Connected Architectures.,1987,24,Acta Inf.,2,db/journals/acta/acta24.html#Kunde87,https://doi.org/10.1007/BF00264359 +Michel Latteux,Intersections de langages algébriques bornés.,1979,11,Acta Inf.,,db/journals/acta/acta11.html#Latteux79,https://doi.org/10.1007/BF00289069 +Jayashree Ramanathan,Pathlistings Applied to Data Flow Analysis.,1981,16,Acta Inf.,,db/journals/acta/acta16.html#RamanathanK81,https://doi.org/10.1007/BF00289306 +Edward G. Coffman Jr.,Bin Packing: Maximizing the Number of Pieces Packed.,1978,9,Acta Inf.,,db/journals/acta/acta9.html#CoffmanLT78,https://doi.org/10.1007/BF00288885 +Kellogg S. Booth,Computing Extremal and Approximate Distances in Graphs Having Unit Cost Edges.,1981,15,Acta Inf.,,db/journals/acta/acta15.html#BoothL81,https://doi.org/10.1007/BF00264532 +Cinzia Bernardeschi,A Petri Nets Semantics for Data Flow Networks.,1995,32,Acta Inf.,4,db/journals/acta/acta32.html#BernardeschiFV95,https://doi.org/10.1007/BF01178383 +Gregor Engels,An Operational Semantics for Specifications of Abstract Data Types with Error Handling.,1983,19,Acta Inf.,,db/journals/acta/acta19.html#EngelsPE83,https://doi.org/10.1007/BF00265557 +Hila Peleg,Symbolic automata for representing big code.,2016,53,Acta Inf.,4,db/journals/acta/acta53.html#PelegSYY16,https://doi.org/10.1007/s00236-015-0234-1 +Jakob Gonczarowski,Scattered Versus Context-Sensitive Rewriting.,1989,27,Acta Inf.,1,db/journals/acta/acta27.html#GonczarowskiW89,https://doi.org/10.1007/BF00263503 +Reuven Bar-Yehuda,Partitioning a Sequence into Few Monotone Subsequences.,1998,35,Acta Inf.,5,db/journals/acta/acta35.html#Bar-YehudaF98,https://doi.org/10.1007/s002360050126 +Rüdiger Valk,The Residue of Vector Sets with Applications to Decidability Problems in Petri Nets.,1985,21,Acta Inf.,,db/journals/acta/acta21.html#ValkJ85,https://doi.org/10.1007/BF00289715 +Jianwen Su,Dependency Preservation in Semantic Databases.,1994,31,Acta Inf.,1,db/journals/acta/acta31.html#Su94,https://doi.org/10.1007/BF01178921 +M. A. El-Affendi,A Maximum Entropy Analysis of the M/G/ 1 and G/M/ 1 Queueing Systems at Equilibrium.,1983,19,Acta Inf.,,db/journals/acta/acta19.html#El-AffendiK83,https://doi.org/10.1007/BF00290731 +Rolf Hennicker,Observational Implementation of Algebraic Specifications.,1991,28,Acta Inf.,3,db/journals/acta/acta28.html#Hennicker91,https://doi.org/10.1007/BF01178505 +Hanne Riis Nielson,Computation Sequences: A Way to Characterize Classes of Attribute Grammars.,1983,19,Acta Inf.,,db/journals/acta/acta19.html#Nielson83,https://doi.org/10.1007/BF00265558 +Miquel Bertran,Formal communication elimination and sequentialization equivalence proofs for distributed system models.,2014,51,Acta Inf.,6,db/journals/acta/acta51.html#BertranBC14,https://doi.org/10.1007/s00236-014-0203-0 +Joan Boyar,Extending the accommodating function.,2003,40,Acta Inf.,1,db/journals/acta/acta40.html#BoyarFLN03,https://doi.org/10.1007/s00236-003-0124-9 +Maurice Clint,Program Proving: Jumps and Functions.,1972,1,Acta Inf.,,db/journals/acta/acta1.html#ClintH72,https://doi.org/10.1007/BF00288686 +Rakesh Agrawal 0001,An Efficient Incremental LR Parser for Grammars With Epsilon Productions.,1983,19,Acta Inf.,,db/journals/acta/acta19.html#AgrawalD83,https://doi.org/10.1007/BF00290733 +Gheorghe Paun,Prescribed Teams of Grammars.,1994,31,Acta Inf.,6,db/journals/acta/acta31.html#PaunR94,https://doi.org/10.1007/BF01213205 +Flavio Corradini,'Closed Interval Process Algebra' versus 'Interval Process Algebra'.,2001,37,Acta Inf.,7,db/journals/acta/acta37.html#CorradiniP01,https://doi.org/10.1007/PL00013313 +Jan van den Bos,PROCOL: A Concurrent Object-Oriented Language with Protocols Delegation and Constraints.,1991,28,Acta Inf.,6,db/journals/acta/acta28.html#BosL91,https://doi.org/10.1007/BF01463943 +Chunhua Cao,Characterizations of k-comma codes and k-comma intercodes.,2016,53,Acta Inf.,1,db/journals/acta/acta53.html#CaoLY16,https://doi.org/10.1007/s00236-015-0233-2 +Dirk Taubner,Representing CCS Programs by Finite Predicate/Transition Nets.,1990,27,Acta Inf.,6,db/journals/acta/acta27.html#Taubner89,https://doi.org/10.1007/BF00277389 +Jay M. Spitzen,The Verification and Synthesis of Data Structures.,1974,4,Acta Inf.,,db/journals/acta/acta4.html#SpitzenW74,https://doi.org/10.1007/BF00288745 +Vincenzo Grassi,Dependability Evaluation of Hierarchical Systems.,1994,31,Acta Inf.,3,db/journals/acta/acta31.html#Grassi94,https://doi.org/10.1007/BF01218404 +Hermann A. Maurer,On Generators and Generative Capacity of EOL Forms.,1980,13,Acta Inf.,,db/journals/acta/acta13.html#MaurerSW80,https://doi.org/10.1007/BF00288538 +Samuel N. Kamin,The Expressive Theory of Stacks.,1987,24,Acta Inf.,6,db/journals/acta/acta24.html#Kamin87,https://doi.org/10.1007/BF00282622 +Marco Bernardo 0001,Revisiting bisimilarity and its modal logic for nondeterministic and probabilistic processes.,2015,52,Acta Inf.,1,db/journals/acta/acta52.html#BernardoNL15,https://doi.org/10.1007/s00236-014-0210-1 +Arnd Poetzsch-Heffter,Prototyping Realistic Programming Languages Based on Formal Specifications.,1997,34,Acta Inf.,10,db/journals/acta/acta34.html#Poetzsch-Heffter97,https://doi.org/10.1007/s002360050105 +Michael Becker 0009,Algorithms for Routing in Planar Graphs.,1986,23,Acta Inf.,2,db/journals/acta/acta23.html#BeckerM86,https://doi.org/10.1007/BF00289496 +Robert Sedgewick,The Analysis of Quicksort Programs.,1977,7,Acta Inf.,,db/journals/acta/acta7.html#Sedgewick77,https://doi.org/10.1007/BF00289467 +Vashudha Krishnaswamy,On the Complexity of Concurrency Control Using Semantic Information.,1995,32,Acta Inf.,3,db/journals/acta/acta32.html#KrishnaswamyB95,https://doi.org/10.1007/BF01178262 +Ernst-Rüdiger Olderog,Specification-Oriented Semantics for Communicating Processes.,1986,23,Acta Inf.,1,db/journals/acta/acta23.html#OlderogH86,https://doi.org/10.1007/BF00268075 +James F. Gimpel,Nonlinear Pattern Theory.,1974,4,Acta Inf.,,db/journals/acta/acta4.html#Gimpel74,https://doi.org/10.1007/BF00288727 +Lutz Eichner,Lineare Realisierbarkeit endlicher Automaten über endlichen Körpern.,1973,3,Acta Inf.,,db/journals/acta/acta3.html#Eichner73,https://doi.org/10.1007/BF00288654 +Alex A. Aravind,A queue based mutual exclusion algorithm.,2009,46,Acta Inf.,1,db/journals/acta/acta46.html#AravindH09,https://doi.org/10.1007/s00236-008-0086-z +John Derrick,On using data abstractions for model checking refinements.,2007,44,Acta Inf.,1,db/journals/acta/acta44.html#DerrickW07,https://doi.org/10.1007/s00236-007-0042-3 +Joost Engelfriet,A comparison of pebble tree transducers with macro tree transducers.,2003,39,Acta Inf.,9,db/journals/acta/acta39.html#EngelfrietM03,https://doi.org/10.1007/s00236-003-0120-0 +A. Bijlsma,Equivalence of the Gries and Martin Proof Rules for Procedure Calls.,1986,23,Acta Inf.,4,db/journals/acta/acta23.html#BijlsmaWM86,https://doi.org/10.1007/BF00267863 +N. W. Keesmaat,Net-Based Control Versus Rational Control. The Relation Between ITNC Vector Languages and Rational Relations.,1997,34,Acta Inf.,1,db/journals/acta/acta34.html#KeesmaatK97,https://doi.org/10.1007/s002360050072 +Gunther Schmidt 0001,Describing Semantic Domains with Sprouts.,1990,27,Acta Inf.,3,db/journals/acta/acta27.html#SchmidtBZ89,https://doi.org/10.1007/BF00572989 +Shigeki Iwata,Relations among Simultaneous Complexity Classes of Nondeterministic and Alternating Turing Machines.,1993,30,Acta Inf.,3,db/journals/acta/acta30.html#IwataKM93,https://doi.org/10.1007/BF01179374 +W. Wesley Peterson,Variance of Storage Requirements for B+-trees.,1995,32,Acta Inf.,7,db/journals/acta/acta32.html#Peterson95,https://doi.org/10.1007/BF01186643 +Stefan Andrei,About the Collatz Conjecture.,1998,35,Acta Inf.,2,db/journals/acta/acta35.html#AndreiM98,https://doi.org/10.1007/s002360050117 +Jacek Blazewicz,Minimizing Mean Flow-Time with Parallel Processors and Resource Constraints.,1987,24,Acta Inf.,5,db/journals/acta/acta24.html#BlazewiczKRS87,https://doi.org/10.1007/BF00263292 +Jan Van den Bussche,On Minimizing the Forall-Not Degree of a Connective-Free Formula.,1993,30,Acta Inf.,5,db/journals/acta/acta30.html#Bussche93,https://doi.org/10.1007/BF01210598 +Davide Sangiorgi,A Theory of Bisimulation for the pi-Calculus.,1996,33,Acta Inf.,1,db/journals/acta/acta33.html#Sangiorgi96,https://doi.org/10.1007/s002360050036 +Jan Paredaens,A Class of Measures on Formal Languages.,1977,9,Acta Inf.,,db/journals/acta/acta9.html#ParedaensV77,https://doi.org/10.1007/BF00263766 +Iwona Cieslik,On-line graph coloring of P5-free graphs.,2008,45,Acta Inf.,2,db/journals/acta/acta45.html#Cieslik08,https://doi.org/10.1007/s00236-007-0064-x +Herman Akdag,Performances of an Algorithm Constructing a Nearly Optimal Binary Tree.,1983,20,Acta Inf.,,db/journals/acta/acta20.html#Akdag83,https://doi.org/10.1007/BF00289410 +Lene M. Favrholdt,Online edge coloring of paths and trees with a fixed number of colors.,2018,55,Acta Inf.,1,db/journals/acta/acta55.html#FavrholdtM18,https://doi.org/10.1007/s00236-016-0283-0 +Soma Chaudhuri,One-write algorithms for multivalued regular and atomic registers.,2000,37,Acta Inf.,3,db/journals/acta/acta37.html#ChaudhuriKW00,https://doi.org/10.1007/s002360000040 +Friedhelm Meyer auf der Heide,Efficiency of Universal Parallel Computers.,1983,19,Acta Inf.,,db/journals/acta/acta19.html#Heide83,https://doi.org/10.1007/BF00265559 +Stefan Kahrs,Infinitary rewriting: meta-theory and convergence.,2007,44,Acta Inf.,2,db/journals/acta/acta44.html#Kahrs07,https://doi.org/10.1007/s00236-007-0043-2 +Mark A. Roth,Null Values in Nested Relational Databases.,1989,26,Acta Inf.,7,db/journals/acta/acta26.html#RothKS89,https://doi.org/10.1007/BF00288974 +Rocco De Nicola,Extensional Equivalences for Transition Systems.,1987,24,Acta Inf.,2,db/journals/acta/acta24.html#Nicola87,https://doi.org/10.1007/BF00264365 +Rayna Dimitrova,Reachability analysis of reversal-bounded automata on series-parallel graphs.,2018,55,Acta Inf.,2,db/journals/acta/acta55.html#DimitrovaM18,https://doi.org/10.1007/s00236-016-0290-1 +Flemming Nielson,A Denotational Framework for Data Flow Analysis.,1982,18,Acta Inf.,,db/journals/acta/acta18.html#Nielson82,https://doi.org/10.1007/BF00263194 +Karel Culik II,On the Power of L-Systems in Image Generation.,1994,31,Acta Inf.,8,db/journals/acta/acta31.html#CulikK94,https://doi.org/10.1007/BF01178734 +Joep L. W. Kessels,Arbitration Without Common Modifiable Variables.,1982,17,Acta Inf.,,db/journals/acta/acta17.html#Kessels82,https://doi.org/10.1007/BF00288966 +Rudolf Berghammer,Embedding mappings and splittings with applications.,2010,47,Acta Inf.,2,db/journals/acta/acta47.html#BerghammerW10,https://doi.org/10.1007/s00236-009-0109-4 +Susumu Morito,Using the Blankinship Algorithm to Find the General Solution of a Linear Diophantine Equation.,1980,13,Acta Inf.,,db/journals/acta/acta13.html#MoritoS80,https://doi.org/10.1007/BF00288771 +Thorsten Akkerman,On the complexity of drawing trees nicely: corrigendum.,2004,40,Acta Inf.,8,db/journals/acta/acta40.html#AkkermanBJT04,https://doi.org/10.1007/s00236-004-0138-y +Adriaan van Wijngaarden,Revised Report on the Algorithmic Language ALGOL 68,1975,5,Acta Inf.,,db/journals/acta/acta5.html#WijngaardenMPKSLMF75,https://doi.org/10.1007/BF00265077 +Silvia Bacchelli,Exhaustive generation of combinatorial objects by ECO.,2004,40,Acta Inf.,8,db/journals/acta/acta40.html#BacchelliBGP04,https://doi.org/10.1007/s00236-004-0139-x +Grzegorz Rozenberg,Completeness of E 0 L Forms is Decidable.,1982,17,Acta Inf.,,db/journals/acta/acta17.html#RozenbergV82,https://doi.org/10.1007/BF00262977 +Michel Latteux,Sur les générateurs algébriques et linéaires.,1980,13,Acta Inf.,,db/journals/acta/acta13.html#Latteux80,https://doi.org/10.1007/BF00288769 +Jane W.-S. Liu,Performance Analysis of Multiprocessor Systems Containing Functionally Dedicated Processors.,1978,10,Acta Inf.,,db/journals/acta/acta10.html#LiuL78,https://doi.org/10.1007/BF00260927 +Eddy Bevers,Proving Termination of (Conditional) Rewrite Systems. A Semantic Approach.,1993,30,Acta Inf.,6,db/journals/acta/acta30.html#BeversL93,https://doi.org/10.1007/BF01209624 +Michel Charpentier,Specification transformers: a predicate transformer approach to composition.,2004,40,Acta Inf.,4,db/journals/acta/acta40.html#CharpentierC04,https://doi.org/10.1007/s00236-003-0130-y +Ian J. Hayes,A sequential real-time refinement calculus.,2001,37,Acta Inf.,6,db/journals/acta/acta37.html#HayesU01,https://doi.org/10.1007/PL00013311 +Pablo Cordero,Bases for closed sets of implicants and implicates in temporal logic.,2002,38,Acta Inf.,9,db/journals/acta/acta38.html#CorderoEG02,https://doi.org/10.1007/s00236-002-0087-2 +Eljas Soisalon-Soininen,On a Covering Relation for Context-Free Grammars.,1982,17,Acta Inf.,,db/journals/acta/acta17.html#Soisalon-SoininenW82,https://doi.org/10.1007/BF00264162 +Tilak Agerwala,Some Extended Semaphore Primitives.,1977,8,Acta Inf.,,db/journals/acta/acta8.html#Agerwala77,https://doi.org/10.1007/BF00264467 +Walid G. Aref,Decomposing a Window into Maximal Quadtree Blocks.,1993,30,Acta Inf.,5,db/journals/acta/acta30.html#ArefS93,https://doi.org/10.1007/BF01210594 +Stéphane Grumbach,On the equivalence and rewriting of aggregate queries.,2004,40,Acta Inf.,8,db/journals/acta/acta40.html#GrumbachRT04,https://doi.org/10.1007/s00236-004-0101-y +Ralph L. London,Proof Rules for the Programming Language Euclid.,1978,10,Acta Inf.,,db/journals/acta/acta10.html#LondonGHLMP78,https://doi.org/10.1007/BF00260921 +Will D. Gillett,On Binary Tree Encodements.,1984,21,Acta Inf.,,db/journals/acta/acta21.html#Gillett84,https://doi.org/10.1007/BF00289239 +C. A. R. Hoare,Proof of Correctness of Data Representations.,1972,1,Acta Inf.,,db/journals/acta/acta1.html#Hoare72,https://doi.org/10.1007/BF00289507 +Zheng-Zhu Li,Classifications of Dense Languages.,2006,43,Acta Inf.,3,db/journals/acta/acta43.html#LiST06,https://doi.org/10.1007/s00236-006-0015-y +Edward G. Coffman Jr.,Algorithms Minimizing Mean Flow Time: Schedule-Length Properties.,1976,6,Acta Inf.,,db/journals/acta/acta6.html#CoffmanS76,https://doi.org/10.1007/BF00263740 +Marco Carbone,Multiparty session types as coherence proofs.,2017,54,Acta Inf.,3,db/journals/acta/acta54.html#CarboneMSY17,https://doi.org/10.1007/s00236-016-0285-y +Rainer Kemp, LR (0) Grammars Generated by LR (0) Parsers.,1981,15,Acta Inf.,,db/journals/acta/acta15.html#Kemp81,https://doi.org/10.1007/BF00289265 +Floris Geerts,N-dimensional versus (N-1)-dimensional connectivity testing of first-order queries to semi-algebraic sets.,2005,42,Acta Inf.,1,db/journals/acta/acta42.html#GeertsSB05,https://doi.org/10.1007/s00236-005-0171-5 +Thomas Lengauer,Black-White Pebbles and Graph Separation.,1981,16,Acta Inf.,,db/journals/acta/acta16.html#Lengauer81,https://doi.org/10.1007/BF00264496 +Razvan Diaconescu,Category-Based Modularisation for Equational Logic Programming.,1996,33,Acta Inf.,5,db/journals/acta/acta33.html#Diaconescu96,https://doi.org/10.1007/s002360050054 +Jan A. Bergstra,The Axiomatic Semantics of Programs Based on Hoare's Logic.,1984,21,Acta Inf.,,db/journals/acta/acta21.html#BergstraT84,https://doi.org/10.1007/BF00264252 +Christel Baier,Special issue of the 21st International Conference on Tools and Algorithms for the Construction and Analysis of Systems (TACAS 2015).,2017,54,Acta Inf.,8,db/journals/acta/acta54.html#BaierT17,https://doi.org/10.1007/s00236-017-0298-1 +Beata Konikowska,Reasoning with First Order Nondeterministic Specifications.,1999,36,Acta Inf.,5,db/journals/acta/acta36.html#KonikowskaB99,https://doi.org/10.1007/s002360050165 +Kurt Mehlhorn,Nearly Optimal Binary Search Trees.,1975,5,Acta Inf.,,db/journals/acta/acta5.html#Mehlhorn75,https://doi.org/10.1007/BF00264563 +Hans Langmaack,On Procedures as Open Subroutines. II.,1974,3,Acta Inf.,,db/journals/acta/acta3.html#Langmaack74,https://doi.org/10.1007/BF00288636 +Johan Lewi,The ELL(1) Parser Generator and the Error Recovery Mechanism.,1978,10,Acta Inf.,,db/journals/acta/acta10.html#LewiVHH78,https://doi.org/10.1007/BF00264317 +José L. Balcázar,Sets with Small Generalized Kolmogorov Complexity.,1986,23,Acta Inf.,6,db/journals/acta/acta23.html#BalcazarB86,https://doi.org/10.1007/BF00264313 +Friedrich Otto,On Deciding Whether a Monoid is a Free Monoid or is a Group.,1986,23,Acta Inf.,1,db/journals/acta/acta23.html#Otto86,https://doi.org/10.1007/BF00268077 +Artiom Alhazov,On the number of nodes in universal networks of evolutionary processors.,2006,43,Acta Inf.,5,db/journals/acta/acta43.html#AlhazovMR06,https://doi.org/10.1007/s00236-006-0024-x +Joost Engelfriet,Attribute Storage Optimization by Stacks.,1990,27,Acta Inf.,6,db/journals/acta/acta27.html#EngelfrietJ89,https://doi.org/10.1007/BF00277390 +Mark A. Roth,Addendum to Null Values in Nested Relational Databases.,1991,28,Acta Inf.,6,db/journals/acta/acta28.html#RothKS91,https://doi.org/10.1007/BF01463949 +Aki Matsumoto,Alias Analysis of Pointers in Pascal and Fortran 90: Dependence Analysis Between Pointer References.,1996,33,Acta Inf.,2,db/journals/acta/acta33.html#MatsumotoHT96,https://doi.org/10.1007/s002360050037 +János Aczél,A New Formula for Speedup and its Characterization.,1997,34,Acta Inf.,8,db/journals/acta/acta34.html#AczelE97,https://doi.org/10.1007/s002360050100 +Albert Hoogewijs,Partial-Predicate Logic in Computer Science.,1987,24,Acta Inf.,4,db/journals/acta/acta24.html#Hoogewijs87,https://doi.org/10.1007/BF00292109 +Panagiotis J. Tomaras,MRE Hierarchical Decomposition of General Queueing Network Models.,1991,28,Acta Inf.,3,db/journals/acta/acta28.html#TomarasK91,https://doi.org/10.1007/BF01178507 +Héctor J. Hernández,Extended Nested Relations.,1993,30,Acta Inf.,8,db/journals/acta/acta30.html#Hernandez93,https://doi.org/10.1007/BF01191810 +Michel Martinez,Program Behavior Prediction and Prepaging.,1982,17,Acta Inf.,,db/journals/acta/acta17.html#Martinez82,https://doi.org/10.1007/BF00262979 +Victor F. Nicola,A Single Server Queue with Mixed Types of Interruptions.,1986,23,Acta Inf.,4,db/journals/acta/acta23.html#Nicola86,https://doi.org/10.1007/BF00267867 +Eljas Soisalon-Soininen,On the Space Optimizing Effect of Eliminating Single Productions from LR Parsers.,1980,14,Acta Inf.,,db/journals/acta/acta14.html#Soisalon-Soininen80,https://doi.org/10.1007/BF00288542 +Johann A. Makowsky,On the Expressive Power of Data Dependencies.,1986,23,Acta Inf.,3,db/journals/acta/acta23.html#MakowskyV86,https://doi.org/10.1007/BF00289111 +Burkhard Monien,Corrigenda: Transformational Methods and Their Application to Complexity Problems,1977,8,Acta Inf.,,db/journals/acta/acta8.html#$,https://doi.org/10.1007/BF00271346 +Zhiyi Tan,Inefficiency of equilibria for the machine covering game on uniform machines.,2012,49,Acta Inf.,6,db/journals/acta/acta49.html#TanWZR12,https://doi.org/10.1007/s00236-012-0163-1 +Jean-Pierre Queille,Fairness and Related Properties in Transition Systems - A Temporal Logic to Deal with Fairness.,1983,19,Acta Inf.,,db/journals/acta/acta19.html#QueilleS83,https://doi.org/10.1007/BF00265555 +Alexander Shapiro,A Generalized Distribution Model for Random Recursive Trees.,1997,34,Acta Inf.,3,db/journals/acta/acta34.html#Shapiro97,https://doi.org/10.1007/s002360050080 +Walter Kern,Speicheroptimale Formelübersetzung.,1977,7,Acta Inf.,,db/journals/acta/acta7.html#Kern77,https://doi.org/10.1007/BF00290337 +Paolo Bottoni,Membrane systems with promoters/inhibitors.,2002,38,Acta Inf.,10,db/journals/acta/acta38.html#BottoniMPR02,https://doi.org/10.1007/s00236-002-0090-7 +Lin Yu,Minimizing Time-Space Cost for Database Version Control.,1990,27,Acta Inf.,7,db/journals/acta/acta27.html#YuR89,https://doi.org/10.1007/BF00259470 +K. Subramani,Random walks for selected boolean implication and equivalence problems.,2009,46,Acta Inf.,2,db/journals/acta/acta46.html#SubramaniLG09,https://doi.org/10.1007/s00236-009-0089-4 +Andrew M. Gravell,Verification conditions are code.,2007,43,Acta Inf.,6,db/journals/acta/acta43.html#Gravell07,https://doi.org/10.1007/s00236-006-0029-5 +Zhenyu Qian,An Algebraic Semantics of Higher-Order Types with Subtypes.,1993,30,Acta Inf.,6,db/journals/acta/acta30.html#Qian93,https://doi.org/10.1007/BF01209625 +Kemal Efe,An Optimal Emulator and VLSI Layout for Complete Binary Trees.,1997,34,Acta Inf.,6,db/journals/acta/acta34.html#EfeE97,https://doi.org/10.1007/s002360050093 +Luca Aceto,A complete classification of the expressiveness of interval logics of Allen's relations: the general and the dense cases.,2016,53,Acta Inf.,3,db/journals/acta/acta53.html#AcetoMGIMS16,https://doi.org/10.1007/s00236-015-0231-4 +Alain J. Martin,An Axiomatic Definition of Synchronization Primitives.,1981,16,Acta Inf.,,db/journals/acta/acta16.html#Martin81,https://doi.org/10.1007/BF00261260 +Nicolas Broutin,Weighted height of random trees.,2008,45,Acta Inf.,4,db/journals/acta/acta45.html#BroutinDM08,https://doi.org/10.1007/s00236-008-0069-0 +Friedrich L. Bauer,Edsger W. Dijkstra - Acta Informatica and Marktoberdorf.,2003,39,Acta Inf.,3,db/journals/acta/acta39.html#BauerB03,https://doi.org/10.1007/s00236-003-0109-8 +Christoph M. Hoffmann,Design and Correctness of a Compiler for a Non-Procedural Language.,1978,9,Acta Inf.,,db/journals/acta/acta9.html#Hoffmann78,https://doi.org/10.1007/BF00288883 +Victor Vianu,Database Survivability Under Dynamic Constraints.,1988,25,Acta Inf.,1,db/journals/acta/acta25.html#Vianu87,https://doi.org/10.1007/BF00268845 +Valdis Berzins,On Merging Software Extensions.,1986,23,Acta Inf.,6,db/journals/acta/acta23.html#Berzins86,https://doi.org/10.1007/BF00264309 +Demetres D. Kouvatsos,Erratum: Maximum Entropy Two-Station Cyclic Queues with Multiple General Servers.,1989,26,Acta Inf.,5,db/journals/acta/acta26.html#KouvatsosA89,https://doi.org/10.1007/BF00289149 +David Spuler,The Optimal Binary Search Tree for Andersson's Search Algorithm.,1993,30,Acta Inf.,5,db/journals/acta/acta30.html#Spuler93,https://doi.org/10.1007/BF01210592 +Satish K. Tripathi,Load Sharing in Distributed Systems with Failures.,1988,25,Acta Inf.,6,db/journals/acta/acta25.html#TripathiFG88,https://doi.org/10.1007/BF00291054 +David B. Benson,An Abstract Machine Theory for Formal Language Parsers.,1974,3,Acta Inf.,,db/journals/acta/acta3.html#Benson74,https://doi.org/10.1007/BF00264037 +Sampath Rangarajan,On the Scalability and Mean-Time to Failure of k Resilient Protocols.,1997,34,Acta Inf.,7,db/journals/acta/acta34.html#RangarajanHT97,https://doi.org/10.1007/s002360050096 +Takao Tsuda,Transposition of Large Tabular Data Structures with Applications to Physical Database Organization.,1983,19,Acta Inf.,,db/journals/acta/acta19.html#TsudaUS83,https://doi.org/10.1007/BF00264474 +Venkatesan T. Chakaravarthy,On the non-approximability of points-to analysis.,2002,38,Acta Inf.,8,db/journals/acta/acta38.html#ChakaravarthyH02,https://doi.org/10.1007/s00236-002-0081-8 +Dmitry Chistikov,Approximate counting in SMT and value estimation for probabilistic programs.,2017,54,Acta Inf.,8,db/journals/acta/acta54.html#ChistikovDM17,https://doi.org/10.1007/s00236-017-0297-2 +Andrzej Ehrenfeucht,The Linear Landscape of External Contextual Languages.,1996,33,Acta Inf.,6,db/journals/acta/acta33.html#EhrenfeuchtPR96,https://doi.org/10.1007/BF03036464 +Mikhail A. Bulyonkov,Polyvariant Mixed Computation for Analyzer Programs.,1984,21,Acta Inf.,,db/journals/acta/acta21.html#Bulyonkov84,https://doi.org/10.1007/BF00271642 +Albert Nymeyer,Code Generation Based on Formal BURS Therory and Heuristic Search.,1997,34,Acta Inf.,8,db/journals/acta/acta34.html#NymeyerK97,https://doi.org/10.1007/s002360050099 +Hagen Huwig,Ein Modell des P=NP -Problems mit einer positiven Lösung.,1982,17,Acta Inf.,,db/journals/acta/acta17.html#Huwig82,https://doi.org/10.1007/BF00288972 +Hsu-Chun Yen,Priority Systems with many Identical Processes.,1991,28,Acta Inf.,7,db/journals/acta/acta28.html#Yen91,https://doi.org/10.1007/BF01178682 +Hans-Jörg Stoß,Rangierkomplexität von Permutationen,1973,2,Acta Inf.,,db/journals/acta/acta2.html#Stos73, +Jeffrey R. Spirn,Multi-Queue Scheduling of Two Tasks.,1976,7,Acta Inf.,,db/journals/acta/acta7.html#Spirn76,https://doi.org/10.1007/BF00265772 +Joseph M. Morris,A theory of bunches.,2001,37,Acta Inf.,8,db/journals/acta/acta37.html#MorrisB01,https://doi.org/10.1007/PL00013316 +Amir M. Ben-Amram,Element distinctness on one-tape Turing machines: a complete solution.,2003,40,Acta Inf.,2,db/journals/acta/acta40.html#Ben-AmramBP03,https://doi.org/10.1007/s00236-003-0125-8 +Christophe Reutenauer,An Ogden-Like Iteration Lemma for Rational Power Series.,1980,13,Acta Inf.,,db/journals/acta/acta13.html#Reutenauer80,https://doi.org/10.1007/BF00263993 +Christoph M. Hoffmann,Semantic Properties of Lucid's Compute Clause and its Compilation.,1980,13,Acta Inf.,,db/journals/acta/acta13.html#Hoffmann80,https://doi.org/10.1007/BF00288532 +Neelam Soundararajan,Total Correctness of CSP Programs.,1986,23,Acta Inf.,2,db/journals/acta/acta23.html#Soundararajan86,https://doi.org/10.1007/BF00289498 +Yonit Kesten,Verification of Clocked and Hybrid Systems.,2000,36,Acta Inf.,11,db/journals/acta/acta36.html#KestenMP00,https://doi.org/10.1007/s002360050177 +Scott Huddleston,A New Data Structure for Representing Sorted Lists.,1982,17,Acta Inf.,,db/journals/acta/acta17.html#HuddlestonM82,https://doi.org/10.1007/BF00288968 +H. C. M. Kleijn,On the Generative Power of Regular Pattern Grammars.,1983,20,Acta Inf.,,db/journals/acta/acta20.html#KleijnR83,https://doi.org/10.1007/BF00264281 +Massimo Merro,On the observational theory of the CPS-calculus.,2010,47,Acta Inf.,2,db/journals/acta/acta47.html#Merro10,https://doi.org/10.1007/s00236-009-0112-9 +Derrick G. Kourie,Lattices in Machine Learning: Complexity Issues.,1998,35,Acta Inf.,4,db/journals/acta/acta35.html#KourieO98,https://doi.org/10.1007/s002360050121 +A. J. Fisher,Practical LL(1)-Based Parsing of van Wijngaarden Grammars.,1985,21,Acta Inf.,,db/journals/acta/acta21.html#Fisher85,https://doi.org/10.1007/BF00289711 +Edsger W. Dijkstra,Hierarchical Ordering of Sequential Processes.,1971,1,Acta Inf.,,db/journals/acta/acta1.html#Dijkstra71,https://doi.org/10.1007/BF00289519 +E. R. Anderson,SEMANOL (73) A Metalanguage for Programming the Semantics of Programming Languages.,1976,6,Acta Inf.,,db/journals/acta/acta6.html#AndersonBB76,https://doi.org/10.1007/BF00268496 +Bent Thomsen,Plain CHOCS: A Second Generation Calculus for Higher Order Processes.,1993,30,Acta Inf.,1,db/journals/acta/acta30.html#Thomsen93,https://doi.org/10.1007/BF01200262 +Clemens Lautemann,The Complexity of Graph Languages Generated by Hyperedge Replacement.,1990,27,Acta Inf.,5,db/journals/acta/acta27.html#Lautemann89,https://doi.org/10.1007/BF00289017 +Antonio Cau,Parallel Composition of Assumption-Commitment Specifications: A Unifying Approach for Shared Variable and Distributed Message Passing Concurrency.,1996,33,Acta Inf.,2,db/journals/acta/acta33.html#CauC96,https://doi.org/10.1007/s002360050039 +Jeannine Leguy,Langages saturés et cones décroissants Langages et cones bifidèles.,1982,18,Acta Inf.,,db/journals/acta/acta18.html#Leguy82,https://doi.org/10.1007/BF00625281 +Egon Wanke,Undecidability of Restricted Uniform Recurrence Equations.,1996,33,Acta Inf.,5,db/journals/acta/acta33.html#Wanke96,https://doi.org/10.1007/s002360050053 +Jacques Lenfant,Permuting Data with the Omega Network.,1985,21,Acta Inf.,,db/journals/acta/acta21.html#LenfantT85,https://doi.org/10.1007/BF00289714 +Robert Giegerich,Composition and Evaluation of Attribute Coupled Grammars.,1988,25,Acta Inf.,4,db/journals/acta/acta25.html#Giegerich88,https://doi.org/10.1007/BF02737108 +Robert Cartwright,The Logic of Aliasing.,1981,15,Acta Inf.,,db/journals/acta/acta15.html#CartwrightO81,https://doi.org/10.1007/BF00264535 +Axel Wabenhorst,Stepwise development of fair distributed systems.,2003,39,Acta Inf.,4,db/journals/acta/acta39.html#Wabenhorst03,https://doi.org/10.1007/s00236-002-0103-6 +Jop F. Sibeyn,List Ranking on Meshes.,1998,35,Acta Inf.,7,db/journals/acta/acta35.html#Sibeyn98,https://doi.org/10.1007/s002360050131 +Gerd Kaufholz,Der programmierbare endliche Automat.,1972,1,Acta Inf.,,db/journals/acta/acta1.html#Kaufholz72,https://doi.org/10.1007/BF00288687 +Edsger W. Dijkstra,Some Beautiful Arguments Using Mathematical Induction.,1980,13,Acta Inf.,,db/journals/acta/acta13.html#Dijkstra80,https://doi.org/10.1007/BF00288531 +Wim H. Hesselink,An assertional criterion for atomicity.,2002,38,Acta Inf.,5,db/journals/acta/acta38.html#Hesselink02,https://doi.org/10.1007/s002360200080 +Ian J. Hayes,Multi-Relations in Z.,1992,29,Acta Inf.,1,db/journals/acta/acta29.html#Hayes92,https://doi.org/10.1007/BF01178565 +Stijn Vansummeren,On the complexity of deciding typability in the relational algebra.,2005,41,Acta Inf.,6,db/journals/acta/acta41.html#Vansummeren05,https://doi.org/10.1007/s00236-005-0162-6 +János Csirik,An On-Line Algorithm for Variable-Sized Bin Packing.,1989,26,Acta Inf.,8,db/journals/acta/acta26.html#Csirik89,https://doi.org/10.1007/BF00289157 +Elie Fares,Event algebra for transition systems composition application to timed automata.,2018,55,Acta Inf.,5,db/journals/acta/acta55.html#FaresBF18,https://doi.org/10.1007/s00236-017-0302-9 +Michael Sonnenschein,Global Storage Cells for Attributes in an Attribute Grammar.,1985,22,Acta Inf.,4,db/journals/acta/acta22.html#Sonnenschein85,https://doi.org/10.1007/BF00288775 +Gregor Snelting,The Calculus of Context Relations.,1991,28,Acta Inf.,5,db/journals/acta/acta28.html#Snelting91,https://doi.org/10.1007/BF01178581 +Sergio Greco,Extending stratified datalog to capture complexity classes ranging from P to QH.,2001,37,Acta Inf.,10,db/journals/acta/acta37.html#GrecoSZ01,https://doi.org/10.1007/PL00013306 +Salvatore Caporaso,On a Relation Between Uniform Coding and Problems of the Form DTIMEF(F) =? DSPACEF(F).,1998,35,Acta Inf.,8,db/journals/acta/acta35.html#CaporasoZ98,https://doi.org/10.1007/s002360050137 +Mirco Giacobbe,Model checking the evolution of gene regulatory networks.,2017,54,Acta Inf.,8,db/journals/acta/acta54.html#GiacobbeGGHPP17,https://doi.org/10.1007/s00236-016-0278-x +Reinhold Heckmann,An Efficient ELL(1)-Parser Generator.,1986,23,Acta Inf.,2,db/journals/acta/acta23.html#Heckmann86,https://doi.org/10.1007/BF00289494 +Piotr Rudnicki,Proving Properties of Pascal Programs in MIZAR 2.,1985,22,Acta Inf.,3,db/journals/acta/acta22.html#RudnickiD85,https://doi.org/10.1007/BF00265684 +Koichi Yamazaki,A Hierarchy of the Class of Apex NLC Graph Languages by Bounds on the Number of Nonterminal Nodes in Productions.,1997,34,Acta Inf.,5,db/journals/acta/acta34.html#Yamazaki97,https://doi.org/10.1007/s002360050087 +Marco A. Casanova,General Purpose Schedulers for Database System.,1981,15,Acta Inf.,,db/journals/acta/acta15.html#CasanovaB81,https://doi.org/10.1007/BF00264539 +Laura Bozzelli,On timed alternating simulation for concurrent timed games.,2012,49,Acta Inf.,4,db/journals/acta/acta49.html#BozzelliLP12,https://doi.org/10.1007/s00236-012-0158-y +Ik-Soon Kim,LR error repair using the A* algorithm.,2010,47,Acta Inf.,3,db/journals/acta/acta47.html#KimY10,https://doi.org/10.1007/s00236-010-0115-6 +Susan S. Owicki,An Axiomatic Proof Technique for Parallel Programs I.,1976,6,Acta Inf.,,db/journals/acta/acta6.html#OwickiG76,https://doi.org/10.1007/BF00268134 +Jürgen Avenhaus,Subrekursive Komplexität bei Gruppen: I. Gruppen mit vorgeschriebener Komplexität.,1977,9,Acta Inf.,,db/journals/acta/acta9.html#AvenhausM77,https://doi.org/10.1007/BF00263767 +Bo Munch-Andersen,Scheduling According to Job Priority with Prevention of Deadlock and Permanent Blocking.,1977,8,Acta Inf.,,db/journals/acta/acta8.html#Munch-AndersenZ77,https://doi.org/10.1007/BF00289247 +Hong Shen 0001,Finding the k Most Vital Edges with Respect to Minimum Spanning Tree.,1999,36,Acta Inf.,5,db/journals/acta/acta36.html#Shen99,https://doi.org/10.1007/s002360050166 +Amos Fiat,On-Line Scheduling on a Single Machine: Minimizing the Total Completion Time.,1999,36,Acta Inf.,4,db/journals/acta/acta36.html#FiatW99,https://doi.org/10.1007/s002360050162 +Zhang Ming-Hua,A Second Order Theory of Data Types.,1988,25,Acta Inf.,3,db/journals/acta/acta25.html#Ming-Hua88,https://doi.org/10.1007/BF00283330 +Robert Endre Tarjan,Edge-Disjoint Spanning Trees and Depth-First Search.,1976,6,Acta Inf.,,db/journals/acta/acta6.html#Tarjan76,https://doi.org/10.1007/BF00268499 +C. A. R. Hoare,An Axiomatic Definition of the Programming Language PASCAL,1973,2,Acta Inf.,,db/journals/acta/acta2.html#HoareW73, +Harald Würgers,A Specification Technique Based on Predicate Transformers.,1981,15,Acta Inf.,,db/journals/acta/acta15.html#Wurgers81,https://doi.org/10.1007/BF00264537 +Dan A. Simovici,Impurity measures in databases.,2002,38,Acta Inf.,5,db/journals/acta/acta38.html#SimoviciCC02,https://doi.org/10.1007/s002360100078 +Eric C. R. Hehner,Termination Conventions and Comparative Semantics.,1988,25,Acta Inf.,1,db/journals/acta/acta25.html#HehnerM87,https://doi.org/10.1007/BF00268842 +Maciej Koutny,The Merlin-Randell Problem of Train Journeys.,1986,23,Acta Inf.,4,db/journals/acta/acta23.html#Koutny86,https://doi.org/10.1007/BF00267866 +Sjoerd Cranen,Parity game reductions.,2018,55,Acta Inf.,5,db/journals/acta/acta55.html#CranenKW18,https://doi.org/10.1007/s00236-017-0301-x +N. Mikou,Analyse et optimisation d'une procédure de reprise dans un système de gestion de données centralisées.,1979,12,Acta Inf.,,db/journals/acta/acta12.html#MikouT79,https://doi.org/10.1007/BF00268319 +Amílcar Sernadas,Denotational Semantics of Object Specification.,1998,35,Acta Inf.,9,db/journals/acta/acta35.html#SernadasSC98,https://doi.org/10.1007/s002360050141 +Jeffrey P. Buzen,Fundamental Operational Laws of Computer System Performance.,1976,7,Acta Inf.,,db/journals/acta/acta7.html#Buzen76,https://doi.org/10.1007/BF00265769 +Seymour Ginsburg,Substitution of Grammar Forms.,1975,5,Acta Inf.,,db/journals/acta/acta5.html#GinsburgS75,https://doi.org/10.1007/BF00264567 +Jürgen Dassow,Networks of evolutionary processors: the power of subregular filters.,2013,50,Acta Inf.,1,db/journals/acta/acta50.html#DassowMT13,https://doi.org/10.1007/s00236-012-0172-0 +Mordechai Ben-Ari,Ianov Pushdown Schemes Are Contained in Boolean Recursive Schemes.,1978,10,Acta Inf.,,db/journals/acta/acta10.html#Ben-Ari78,https://doi.org/10.1007/BF00289151 +Richard G. Hamlet,Reliability Theory of Program Testing.,1981,16,Acta Inf.,,db/journals/acta/acta16.html#Hamlet81,https://doi.org/10.1007/BF00289588 +Martti Penttonen,On Derivation Languages Corresponding to Context-Free Grammars.,1974,3,Acta Inf.,,db/journals/acta/acta3.html#Penttonen74,https://doi.org/10.1007/BF00288639 +Lutz Michael Wegner,On Parsing Two-Level Grammars.,1980,14,Acta Inf.,,db/journals/acta/acta14.html#Wegner80,https://doi.org/10.1007/BF00288543 +Alexander Meduna,Erratum: Coincidental extension of scattered context languages.,2003,39,Acta Inf.,9,db/journals/acta/acta39.html#Meduna03a,https://doi.org/10.1007/s00236-003-0127-6 +Philippe Flajolet,Mellin Transforms and Asymptotics: The Mergesort Recurrence.,1994,31,Acta Inf.,7,db/journals/acta/acta31.html#FlajoletG94,https://doi.org/10.1007/BF01177551 +Erol Gelenbe,Probabilistic Models of Computer Systems.,1979,12,Acta Inf.,,db/journals/acta/acta12.html#Gelenbe79,https://doi.org/10.1007/BF00268317 +F. Rodriguez,Indépendance Forte de Certaines Opérations.,1981,15,Acta Inf.,,db/journals/acta/acta15.html#Rodriguez81,https://doi.org/10.1007/BF00288963 +Petr Savický,Efficient Algorithms for the Transformation Between Different Types of Binary Decision Diagrams.,1997,34,Acta Inf.,4,db/journals/acta/acta34.html#SavickyW97,https://doi.org/10.1007/s002360050083 +Peter G. Harrison,On the Synthesis of Function Inverses.,1992,29,Acta Inf.,3,db/journals/acta/acta29.html#HarrisonK92,https://doi.org/10.1007/BF01185679 +H. Hule,Good OL Forms.,1978,9,Acta Inf.,,db/journals/acta/acta9.html#HuleMO78,https://doi.org/10.1007/BF00289047 +Attahiru Sule Alfa,Approximating Queue Lengths in M(t)/G/1 Queue Using the Maximum Entropy Principle.,1991,28,Acta Inf.,8,db/journals/acta/acta28.html#AlfaC91,https://doi.org/10.1007/BF01261657 +Wolfgang J. Paul,Time-Space Trade-Offs in a Pebble Game.,1978,10,Acta Inf.,,db/journals/acta/acta10.html#PaulT78,https://doi.org/10.1007/BF00289150 +Zhenhua Duan,A decision procedure for propositional projection temporal logic with infinite models.,2008,45,Acta Inf.,1,db/journals/acta/acta45.html#DuanTZ08,https://doi.org/10.1007/s00236-007-0062-z +Daniel Seidel,Refined typing to localize the impact of forced strictness on free theorems.,2011,48,Acta Inf.,3,db/journals/acta/acta48.html#SeidelV11,https://doi.org/10.1007/s00236-011-0136-9 +Yangjia Li,Termination of nondeterministic quantum programs.,2014,51,Acta Inf.,1,db/journals/acta/acta51.html#LiYY14,https://doi.org/10.1007/s00236-013-0185-3 +Roberto Barbuti,Algebraic Computational Models of OR-Parallel Execution of Prolog.,1997,34,Acta Inf.,6,db/journals/acta/acta34.html#BarbutiFS97,https://doi.org/10.1007/s002360050094 +Ralph-Johan Back,Proving Total Correctness of Nondeterministic Programs in Infinitary Logic.,1981,15,Acta Inf.,,db/journals/acta/acta15.html#Back81,https://doi.org/10.1007/BF00289263 +Wen-Chiung Lee,A bi-criterion single-machine scheduling problem with learning considerations.,2004,40,Acta Inf.,4,db/journals/acta/acta40.html#LeeWS04,https://doi.org/10.1007/s00236-003-0132-9 +Tien Van Do,M/M/1 retrial queue with working vacations.,2010,47,Acta Inf.,1,db/journals/acta/acta47.html#Do10,https://doi.org/10.1007/s00236-009-0110-y +Etsuji Tomita,The Extendes Equivalence Problem for a Class of Non-Real-Time Deterministic Pushdowen Automata.,1995,32,Acta Inf.,4,db/journals/acta/acta32.html#TomitaS95,https://doi.org/10.1007/BF01178385 +Viktor K. Sabelfeld,äquivalente Transformationen für Flußdiagramme.,1978,10,Acta Inf.,,db/journals/acta/acta10.html#Sabelfeld78,https://doi.org/10.1007/BF00289152 +Christiane Frougny,On the Hotz Group of a Context-Free Grammar.,1982,18,Acta Inf.,,db/journals/acta/acta18.html#FrougnySV82,https://doi.org/10.1007/BF00625283 +Christel Baier,The Connection between an Event Structure Semantics and an Operational Semantics for TCSP.,1994,31,Acta Inf.,1,db/journals/acta/acta31.html#BaierM94,https://doi.org/10.1007/BF01178923 +Wladyslaw M. Turski,A Model for Data Structures and its Applications. (Part II).,1972,1,Acta Inf.,,db/journals/acta/acta1.html#Turski72,https://doi.org/10.1007/BF00289508 +John L. Hennessy,The Formal Definition of a Real-Time Language.,1981,16,Acta Inf.,,db/journals/acta/acta16.html#HennesyK81,https://doi.org/10.1007/BF00289309 +Paul J. M. Frederiks,Deriving and paraphrasing information grammars using object-oriented analysis models.,2002,38,Acta Inf.,7,db/journals/acta/acta38.html#FrederiksW02,https://doi.org/10.1007/s002360200083 +Claus-Peter Schnorr,Endliche Automaten und Zufallsfolgen.,1972,1,Acta Inf.,,db/journals/acta/acta1.html#SchnorrS72,https://doi.org/10.1007/BF00289514 +Aldo de Luca,On Finitely Recognizable Semigroups.,1992,29,Acta Inf.,5,db/journals/acta/acta29.html#LucaV92,https://doi.org/10.1007/BF01193579 +Jean-Michel Autebert,Bicentres de langages algébriques.,1984,21,Acta Inf.,,db/journals/acta/acta21.html#AutebertBBG84,https://doi.org/10.1007/BF00289241 +David R. Barstow,"Remarks on ""A Synthesis of Several Sorting Algorithms"" by John Darlington.",1980,13,Acta Inf.,,db/journals/acta/acta13.html#Barstow80,https://doi.org/10.1007/BF00288643 +Seymour Ginsburg,Precedence Relations in Grammar Forms.,1978,11,Acta Inf.,,db/journals/acta/acta11.html#GinsburgW78,https://doi.org/10.1007/BF00264602 +Daniel M. Berry,A Denotational Semantics for Shared-Memory Parallelism and Nondeterminism.,1985,21,Acta Inf.,,db/journals/acta/acta21.html#Berry85,https://doi.org/10.1007/BF00289713 +Daniel P. Bovet,Minimum-Delay Schedules in Layered Networks.,1991,28,Acta Inf.,5,db/journals/acta/acta28.html#BovetC91,https://doi.org/10.1007/BF01178583 +Cliff B. Jones,A Typed Logic of Partial Functions Reconstructed Classically.,1994,31,Acta Inf.,5,db/journals/acta/acta31.html#JonesM94,https://doi.org/10.1007/BF01178666 +Alex A. Aravind,Nonatomic dual bakery algorithm with bounded tokens.,2011,48,Acta Inf.,2,db/journals/acta/acta48.html#AravindH11,https://doi.org/10.1007/s00236-011-0132-0 +Mark Levene,The Additivity Problem for Functional Dependencies in Incomplete Relations.,1997,34,Acta Inf.,2,db/journals/acta/acta34.html#LeveneL97,https://doi.org/10.1007/s002360050076 +Henk Alblas,One-Pass Transformations of Attributed Program Trees.,1987,24,Acta Inf.,3,db/journals/acta/acta24.html#Alblas87,https://doi.org/10.1007/BF00265992 +Alexander Meduna,Syntactic Complexity of Context-Free Grammars Over Word Monoids.,1996,33,Acta Inf.,5,db/journals/acta/acta33.html#Meduna96,https://doi.org/10.1007/s002360050052 +Arie de Bruin,Goto Statements: Semantics and Deduction Systems.,1981,15,Acta Inf.,,db/journals/acta/acta15.html#Bruin81,https://doi.org/10.1007/BF00264536 +A. Staphylopatis,Performance Considerations in the Parallel Execution of Numerical Algorithms on two Processors.,1982,17,Acta Inf.,,db/journals/acta/acta17.html#Staphylopatis82,https://doi.org/10.1007/BF00264356 +Robert M. Colomb,Category-theoretic fibration as an abstraction mechanism in information systems.,2001,38,Acta Inf.,1,db/journals/acta/acta38.html#ColombDJ01,https://doi.org/10.1007/PL00013321 +Wolfgang J. Paul,Zur Komplexität von Sortierproblemen.,1974,3,Acta Inf.,,db/journals/acta/acta3.html#PaulS74,https://doi.org/10.1007/BF00288635 +Andrzej Ehrenfeucht,Partial (Set) 2-Structures. Part II: State Spaces of Concurrent Systems.,1990,27,Acta Inf.,4,db/journals/acta/acta27.html#EhrenfeuchtR89a,https://doi.org/10.1007/BF00264612 +Masami Ito,Group weighted finite transducers.,2001,38,Acta Inf.,2,db/journals/acta/acta38.html#ItoMM01,https://doi.org/10.1007/s002360100069 +Arnold L. Rosenberg,Storage Schemes for Boundedly Extendible Arrays.,1977,7,Acta Inf.,,db/journals/acta/acta7.html#RosenbergS77,https://doi.org/10.1007/BF00290338 +Barry K. Rosen,Deriving Graphs from Graphs by Applying a Production.,1974,4,Acta Inf.,,db/journals/acta/acta4.html#Rosen74,https://doi.org/10.1007/BF00289616 +Ying-Fung Wu,A Faster Approximation Algorithm for the Steiner Problem in Graphs.,1986,23,Acta Inf.,2,db/journals/acta/acta23.html#WuWW86,https://doi.org/10.1007/BF00289500 +Christian Stahl,A trace-based service semantics guaranteeing deadlock freedom.,2012,49,Acta Inf.,2,db/journals/acta/acta49.html#StahlV12,https://doi.org/10.1007/s00236-012-0151-5 +Peter Ruzicka,An Almost Linear Robinson Unification Algorithm.,1989,27,Acta Inf.,1,db/journals/acta/acta27.html#RuzickaP89,https://doi.org/10.1007/BF00263501 +Klaus Hülsmann,Theoretical Foundations of Handling Large Substitution Sets in Temporal Integrity Monitoring.,1991,28,Acta Inf.,4,db/journals/acta/acta28.html#HulsmannS91,https://doi.org/10.1007/BF01893887 +Karl Winklmann,On the Complexity of Some Problems Concerning the Use of Procedures I.,1982,18,Acta Inf.,,db/journals/acta/acta18.html#Winklmann82,https://doi.org/10.1007/BF00263196 +Gabriel Ciobanu,Final and sequential behaviours of M-automata.,2009,46,Acta Inf.,5,db/journals/acta/acta46.html#CiobanuR09,https://doi.org/10.1007/s00236-009-0098-3 +Apostolos Burnetas,An Analysis and Implementation of an Efficient In-Place Bucket Sort.,1997,34,Acta Inf.,9,db/journals/acta/acta34.html#BurnetasSA97,https://doi.org/10.1007/s002360050103 +Cliff B. Jones,Constructing a Theory of a Data Structure as an Aid to Program Development.,1979,11,Acta Inf.,,db/journals/acta/acta11.html#Jones79,https://doi.org/10.1007/BF00264020 +David G. Cantor,On Fast Multiplication of Polynomials over Arbitrary Algebras.,1991,28,Acta Inf.,7,db/journals/acta/acta28.html#CantorK91,https://doi.org/10.1007/BF01178683 +Erich J. Neuhold,Specification and Proving of Command Programs.,1976,6,Acta Inf.,,db/journals/acta/acta6.html#NeuholdW76,https://doi.org/10.1007/BF00263741 +Thomas Eiter,Generating Boolean mu-Expressions.,1995,32,Acta Inf.,2,db/journals/acta/acta32.html#Eiter95,https://doi.org/10.1007/BF01177746 +Daniel J. Moore,Axiomatic Data Type Specifications: A First Order Theory of Linear Lists.,1981,15,Acta Inf.,,db/journals/acta/acta15.html#MooreR81,https://doi.org/10.1007/BF00289260 +Michel Bidoit,Modular Correctness Proofs of Behavioural Implementations.,1998,35,Acta Inf.,11,db/journals/acta/acta35.html#BidoitH98,https://doi.org/10.1007/s002360050149 +Yijie Han,Parallel PROFIT/COST Algorithms Through Fast Derandomization.,1999,36,Acta Inf.,3,db/journals/acta/acta36.html#HanI99,https://doi.org/10.1007/s002360050158 +Edward G. Coffman Jr.,A Performance Guarantee for the Greedy Set-Partitioning Algorithm.,1984,21,Acta Inf.,,db/journals/acta/acta21.html#CoffmanL84,https://doi.org/10.1007/BF00264618 +Peter R. J. Asveld,Iterated Deterministic Substitution.,1977,8,Acta Inf.,,db/journals/acta/acta8.html#AsveldE77,https://doi.org/10.1007/BF00264471 +Yasuichi Horibe,On the Max-Entropy Rule for a Binary Search Tree.,1979,12,Acta Inf.,,db/journals/acta/acta12.html#HoribeN79,https://doi.org/10.1007/BF00264017 +Reinhard Wilhelm,Computation and Use of Data Flow Information in Optimizing Compilers.,1979,12,Acta Inf.,,db/journals/acta/acta12.html#Wilhelm79,https://doi.org/10.1007/BF00264579 +Thiet-Dung Huynh,Remarks on the Complexity of an Invariant of Context-Free Grammars.,1982,17,Acta Inf.,,db/journals/acta/acta17.html#Huynh82,https://doi.org/10.1007/BF00262978 +Antonio Bernini,A general exhaustive generation algorithm for Gray structures.,2007,44,Acta Inf.,5,db/journals/acta/acta44.html#BerniniGPP07,https://doi.org/10.1007/s00236-007-0053-0 +Junhu Wang,Least common container of tree pattern queries and its applications.,2012,49,Acta Inf.,3,db/journals/acta/acta49.html#WangYPL12,https://doi.org/10.1007/s00236-012-0155-1 +Andreas Gemsa,Multirow Boundary-Labeling Algorithms for Panorama Images.,2015,1,ACM Trans. Spatial Algorithms and Systems,1,db/journals/tsas/tsas1.html#GemsaHN15,http://doi.acm.org/10.1145/2794299 +Georgios Skoumas,Location Estimation Using Crowdsourced Spatial Relations.,2016,2,ACM Trans. Spatial Algorithms and Systems,2,db/journals/tsas/tsas2.html#SkoumasPKS16,http://doi.acm.org/10.1145/2894745 +Dai Hai Ton That,TRIFL: A Generic Trajectory Index for Flash Storage.,2015,1,ACM Trans. Spatial Algorithms and Systems,2,db/journals/tsas/tsas1.html#ThatPZ15,http://doi.acm.org/10.1145/2786758 +Takumi Fujino,Detecting Deviations from Intended Routes Using Vehicular GPS Tracks.,2018,4,ACM Trans. Spatial Algorithms and Systems,1,db/journals/tsas/tsas4.html#FujinoHKMIM18,http://doi.acm.org/10.1145/3204455 +Alberto Belussi,Snap Rounding with Restore: An Algorithm for Producing Robust Geometric Datasets.,2016,2,ACM Trans. Spatial Algorithms and Systems,1,db/journals/tsas/tsas2.html#BelussiMNP16,http://doi.acm.org/10.1145/2811256 +Shan-Yun Teng,Toward Mining Stop-by Behaviors in Indoor Space.,2017,3,ACM Trans. Spatial Algorithms and Systems,2,db/journals/tsas/tsas3.html#TengKC17,http://doi.acm.org/10.1145/3106736 +Hien To,A Server-Assigned Spatial Crowdsourcing Framework.,2015,1,ACM Trans. Spatial Algorithms and Systems,1,db/journals/tsas/tsas1.html#ToSK15,http://doi.acm.org/10.1145/2729713 +Heba Aly,Accurate and Energy-Efficient GPS-Less Outdoor Localization.,2017,3,ACM Trans. Spatial Algorithms and Systems,2,db/journals/tsas/tsas3.html#AlyBY17,http://doi.acm.org/10.1145/3085575 +Pankaj K. Agarwal,TerraNNI: Natural Neighbor Interpolation on 2D and 3D Grids Using a GPU.,2016,2,ACM Trans. Spatial Algorithms and Systems,2,db/journals/tsas/tsas2.html#AgarwalBM16,http://doi.acm.org/10.1145/2786757 +Alexandros Belesiotis,Analyzing and Predicting Spatial Crime Distribution Using Crowdsourced and Open Data.,2018,3,ACM Trans. Spatial Algorithms and Systems,4,db/journals/tsas/tsas3.html#BelesiotisPS18,http://doi.acm.org/10.1145/3190345 +Yuyang Dong,Weighted Aggregate Reverse Rank Queries.,2018,4,ACM Trans. Spatial Algorithms and Systems,2,db/journals/tsas/tsas4.html#DongCYFK18,http://doi.acm.org/10.1145/3225216 +Christodoulos Efstathiades,Efficient Processing of Relevant Nearest-Neighbor Queries.,2016,2,ACM Trans. Spatial Algorithms and Systems,3,db/journals/tsas/tsas2.html#EfstathiadesEP16,http://doi.acm.org/10.1145/2934675 +Nikos Pelekis,Simulating Our LifeSteps by Example.,2016,2,ACM Trans. Spatial Algorithms and Systems,3,db/journals/tsas/tsas2.html#PelekisSTT16,http://doi.acm.org/10.1145/2937753 +Daichi Amagata,A General Framework for MaxRS and MaxCRS Monitoring in Spatial Data Streams.,2017,3,ACM Trans. Spatial Algorithms and Systems,1,db/journals/tsas/tsas3.html#AmagataH17,http://doi.acm.org/10.1145/3080554 +Chaulio R. Ferreira,An Efficient External Memory Algorithm for Terrain Viewshed Computation.,2016,2,ACM Trans. Spatial Algorithms and Systems,2,db/journals/tsas/tsas2.html#FerreiraAMF16,http://doi.acm.org/10.1145/2903206 +Yuan Long,Spatial Partition-Based Particle Filtering for Data Assimilation in Wildfire Spread Simulation.,2017,3,ACM Trans. Spatial Algorithms and Systems,2,db/journals/tsas/tsas3.html#LongH17,http://doi.acm.org/10.1145/3099471 +Farhana Murtaza Choudhury,Batch Processing of Top-k Spatial-Textual Queries.,2018,3,ACM Trans. Spatial Algorithms and Systems,4,db/journals/tsas/tsas3.html#ChoudhuryCBS18,http://doi.acm.org/10.1145/3196155 +Sanjay Chawla,Classification of Passes in Football Matches Using Spatiotemporal Data.,2017,3,ACM Trans. Spatial Algorithms and Systems,2,db/journals/tsas/tsas3.html#ChawlaEGH17,http://doi.acm.org/10.1145/3105576 +Wouter van Toll,The Medial Axis of a Multi-Layered Environment and Its Application as a Navigation Mesh.,2018,4,ACM Trans. Spatial Algorithms and Systems,1,db/journals/tsas/tsas4.html#TollCKG18,http://doi.acm.org/10.1145/3204456 +Radu Mariescu-Istodor,Grid-Based Method for GPS Route Analysis for Retrieval.,2017,3,ACM Trans. Spatial Algorithms and Systems,3,db/journals/tsas/tsas3.html#Mariescu-Istodor17,http://doi.acm.org/10.1145/3125634 +Janne Kovanen,Tilewise Accumulated Cost Surface Computation with Graphics Processing Units.,2015,1,ACM Trans. Spatial Algorithms and Systems,2,db/journals/tsas/tsas1.html#KovanenS15,http://doi.acm.org/10.1145/2803172 +Suhua Tang,Efficient Geo-Fencing via Hybrid Hashing: A Combination of Bucket Selection and In-Bucket Binary Search.,2015,1,ACM Trans. Spatial Algorithms and Systems,2,db/journals/tsas/tsas1.html#TangYZO15,http://doi.acm.org/10.1145/2774219 +Mark McKenney,Generating Moving Regions from Snapshots of Complex Regions.,2015,1,ACM Trans. Spatial Algorithms and Systems,1,db/journals/tsas/tsas1.html#McKennneyF15,http://doi.acm.org/10.1145/2774220 +Benedikt Budig,Matching Labels and Markers in Historical Maps: An Algorithm with Interactive Postprocessing.,2016,2,ACM Trans. Spatial Algorithms and Systems,4,db/journals/tsas/tsas2.html#BudigDW16,http://doi.acm.org/10.1145/2994598 +Karthik Ganesan Pillai,Mining At Most Top-Kand* Spatiotemporal Co-occurrence Patterns in Datasets with Extended Spatial Representations.,2016,2,ACM Trans. Spatial Algorithms and Systems,3,db/journals/tsas/tsas2.html#PillaiABKAM16,http://doi.acm.org/10.1145/2936775 +Hui-Ju Hung,Social Influence-Aware Reverse Nearest Neighbor Search.,2016,2,ACM Trans. Spatial Algorithms and Systems,3,db/journals/tsas/tsas2.html#HungYL16,http://doi.acm.org/10.1145/2964906 +Daniel Ayala,Spatio-Temporal Matching for Urban Transportation Applications.,2018,3,ACM Trans. Spatial Algorithms and Systems,4,db/journals/tsas/tsas3.html#AyalaWDLX18,http://doi.acm.org/10.1145/3183344 +Tomoharu Iwata,Estimating People Flow from Spatiotemporal Population Data via Collective Graphical Mixture Models.,2017,3,ACM Trans. Spatial Algorithms and Systems,1,db/journals/tsas/tsas3.html#IwataSNU17,http://doi.acm.org/10.1145/3080555 +Sanjay Purushotham,Personalized Group Recommender Systems for Location- and Event-Based Social Networks.,2016,2,ACM Trans. Spatial Algorithms and Systems,4,db/journals/tsas/tsas2.html#PurushothamK16,http://doi.acm.org/10.1145/2987381 +Mahmuda Ahmed,A Path-Based Distance for Street Map Comparison.,2015,1,ACM Trans. Spatial Algorithms and Systems,1,db/journals/tsas/tsas1.html#AhmedFHW15,http://doi.acm.org/10.1145/2729977 +Mohammed Eunus Ali,Spatial Consensus Queries in a Collaborative Environment.,2016,2,ACM Trans. Spatial Algorithms and Systems,1,db/journals/tsas/tsas2.html#AliTSNK16,http://doi.acm.org/10.1145/2829943 +Ralf Hartmut Güting,Symbolic Trajectories.,2015,1,ACM Trans. Spatial Algorithms and Systems,2,db/journals/tsas/tsas1.html#GutingVD15,http://doi.acm.org/10.1145/2786756 +Liang Zhao 0002,Online Spatial Event Forecasting in Microblogs.,2016,2,ACM Trans. Spatial Algorithms and Systems,4,db/journals/tsas/tsas2.html#ZhaoCLR16,http://doi.acm.org/10.1145/2997642 +Berkay Aydin,Measuring the Significance of Spatiotemporal Co-Occurrences.,2017,3,ACM Trans. Spatial Algorithms and Systems,3,db/journals/tsas/tsas3.html#AydinKAM17,http://doi.acm.org/10.1145/3139351 +Preeti Goel,Privacy-Aware Dynamic Ride Sharing.,2016,2,ACM Trans. Spatial Algorithms and Systems,1,db/journals/tsas/tsas2.html#GoelKR16,http://doi.acm.org/10.1145/2845080 +Kevin Buchin,Area-Preserving Simplification and Schematization of Polygonal Subdivisions.,2016,2,ACM Trans. Spatial Algorithms and Systems,1,db/journals/tsas/tsas2.html#BuchinMRS16,http://doi.acm.org/10.1145/2818373 +Yifang Yin,Feature-based Map Matching for Low-Sampling-Rate GPS Trajectories.,2018,4,ACM Trans. Spatial Algorithms and Systems,2,db/journals/tsas/tsas4.html#YinSWZ18,http://doi.acm.org/10.1145/3223049 +Alan Both,Identifying Surrounds and Engulfs Relations in Mobile and Coordinate-Free Geosensor Networks.,2018,4,ACM Trans. Spatial Algorithms and Systems,2,db/journals/tsas/tsas4.html#BothDW18,http://doi.acm.org/10.1145/3234505 +María Dolores Robles-Ortega,Efficient Visibility Determination in Urban Scenes Considering Terrain Information.,2017,3,ACM Trans. Spatial Algorithms and Systems,3,db/journals/tsas/tsas3.html#Robles-OrtegaOF17,http://doi.acm.org/10.1145/3152536 +Sophia Karagiorgou,A Layered Approach for More Robust Generation of Road Network Maps from Vehicle Tracking Data.,2017,3,ACM Trans. Spatial Algorithms and Systems,1,db/journals/tsas/tsas3.html#KaragiorgouPS17,http://doi.acm.org/10.1145/3061713 +Satoshi Koide,Enhanced Indexing and Querying of Trajectories in Road Networks via String Algorithms.,2018,4,ACM Trans. Spatial Algorithms and Systems,1,db/journals/tsas/tsas4.html#KoideTYXI18,http://doi.acm.org/10.1145/3200200 +Shi-Joon Sung,The effect of bi-component acrylate prepolymers on the phase separation and electro-optical properties of pixel-isolated liquid crystals.,2011,32,Displays,5,db/journals/displays/displays32.html#SungJSKKC11,https://doi.org/10.1016/j.displa.2011.05.002 +Yusaku Sakurai,Emission and charge transport properties of thiophene-terminated thiophene/phenylene co-oligomer crystals.,2013,34,Displays,5,db/journals/displays/displays34.html#SakuraiYYH13,https://doi.org/10.1016/j.displa.2013.08.004 +Isik Isil Nugay,Instrumented film-insert injection compression molding for lens encapsulation of liquid crystal displays.,2015,38,Displays,,db/journals/displays/displays38.html#NugayC15,https://doi.org/10.1016/j.displa.2015.01.001 +Fong-Gong Wu,The enhanced navigator for the touch screen: A comparative study on navigational techniques of web maps.,2011,32,Displays,5,db/journals/displays/displays32.html#WuLY11a,https://doi.org/10.1016/j.displa.2011.05.007 +Hao Tang,Green organic light-emitting diodes with improved stability and efficiency utilizing a wide band gap material as the host.,2008,29,Displays,5,db/journals/displays/displays29.html#TangWLWS08,https://doi.org/10.1016/j.displa.2008.05.001 +Ante Poljicak,An optimized Radial Basis Function model for color characterization of a mobile device display.,2016,41,Displays,,db/journals/displays/displays41.html#PoljicakDP16,https://doi.org/10.1016/j.displa.2015.12.005 +Jae-Chul Park,Dry etch damage and recovery of gallium indium zinc oxide thin-film transistors with etch-back structures.,2012,33,Displays,3,db/journals/displays/displays33.html#ParkL12,https://doi.org/10.1016/j.displa.2012.05.001 +Rosemarie Rajae-Joordens,Paired comparisons in visual perception studies using small sample sizes.,2005,26,Displays,1,db/journals/displays/displays26.html#Rajae-JoordensE05,https://doi.org/10.1016/j.displa.2004.09.003 +Fern M. Kelly,Polyaniline: Application as solid state electrochromic in a flexible textile display.,2013,34,Displays,1,db/journals/displays/displays34.html#KellyMCK13,https://doi.org/10.1016/j.displa.2012.10.001 +Jong-Min Baek,Fabrication of an initially-focal-conic cholesteric liquid crystal cell without polymer stabilization.,2018,52,Displays,,db/journals/displays/displays52.html#BaekOKY18,https://doi.org/10.1016/j.displa.2017.10.002 +M. A. Khan,Spectral studies of white organic light-emitting devices based on multi-emitting layers.,2007,28,Displays,1,db/journals/displays/displays28.html#KhanXCBZJZ07,https://doi.org/10.1016/j.displa.2006.11.003 +Ho-Gun Ha,Gamut estimation with efficient sampling based on modified segment maxima.,2017,48,Displays,,db/journals/displays/displays48.html#HaSH17,https://doi.org/10.1016/j.displa.2017.02.001 +Anne-Emmanuelle Priot,The initial effects of hyperstereopsis on visual perception in helicopter pilots flying with see-through helmet-mounted displays.,2018,51,Displays,,db/journals/displays/displays51.html#PriotVVNR18,https://doi.org/10.1016/j.displa.2017.11.002 +Monika Pölönen,Effect of ambient illumination level on perceived autostereoscopic display quality and depth perception.,2011,32,Displays,3,db/journals/displays/displays32.html#PolonenSH11,https://doi.org/10.1016/j.displa.2011.02.003 +Ri-Hui Yao,A new compensation pixel circuit with all-p-type TFTs for AMOLED displays.,2013,34,Displays,3,db/journals/displays/displays34.html#YaoZZW13,https://doi.org/10.1016/j.displa.2013.03.002 +Jae-Geun Hong,Implementation of 21: 9 cinema mode function using two ICs supporting full HD resolution.,2015,40,Displays,,db/journals/displays/displays40.html#HongCKL15,https://doi.org/10.1016/j.displa.2015.04.003 +Hailiang Wang,A study of the relationship between color-concept association and occupational background for Chinese.,2015,38,Displays,,db/journals/displays/displays38.html#WangO15,https://doi.org/10.1016/j.displa.2015.02.003 +Dorion B. Liston,Saccade detection during smooth tracking.,2013,34,Displays,2,db/journals/displays/displays34.html#ListonKS13,https://doi.org/10.1016/j.displa.2012.10.002 +Seok-Jeong Song,Sound-of-Tapping user interface technology with medium identification.,2018,53,Displays,,db/journals/displays/displays53.html#SongN18,https://doi.org/10.1016/j.displa.2018.02.003 +Tian Quanhui,The Spectral Radiance Piecewise Partition Model for characterizing Liquid Crystal Displays.,2015,39,Displays,,db/journals/displays/displays39.html#QuanhuiZHDS15,https://doi.org/10.1016/j.displa.2015.03.003 +Alfonso Gago-Calderón,Visual quality evaluation of large LED displays based on subjective sensory perception.,2013,34,Displays,5,db/journals/displays/displays34.html#Gago-CalderonRB13,https://doi.org/10.1016/j.displa.2013.09.004 +Li Li,Visual strategies for the control of steering toward a goal.,2013,34,Displays,2,db/journals/displays/displays34.html#LiC13,https://doi.org/10.1016/j.displa.2012.10.005 +Haina Zhu,Study on the influences of quantum well structure on the performance of organic light emitting devices.,2011,32,Displays,3,db/journals/displays/displays32.html#ZhuXZZGKYW11,https://doi.org/10.1016/j.displa.2010.12.003 +S. Y. Soh,Cell parameter extraction method for AC plasma display panels.,2006,27,Displays,3,db/journals/displays/displays27.html#SohKSJK06,https://doi.org/10.1016/j.displa.2005.12.003 +Zhu Ma,Non-doped white organic light-emitting diodes consisting of three primary colors based on a bipolar emitter.,2012,33,Displays,1,db/journals/displays/displays33.html#MaYLJ12,https://doi.org/10.1016/j.displa.2012.01.003 +Ji Ma,Structure and application of polarizer film for thin-film-transistor liquid crystal displays.,2011,32,Displays,2,db/journals/displays/displays32.html#MaYJ11,https://doi.org/10.1016/j.displa.2010.12.006 +Fei Xue,Disparity-based just-noticeable-difference model for perceptual stereoscopic video coding using depth of focus blur effect.,2016,42,Displays,,db/journals/displays/displays42.html#XueJK16,https://doi.org/10.1016/j.displa.2016.03.001 +Yu-Cheng Hsiao,Temperature-dependent electrical and dielectric properties of nematic liquid crystals doped with ferroelectric particles.,2016,44,Displays,,db/journals/displays/displays44.html#HsiaoHYL16,https://doi.org/10.1016/j.displa.2015.11.004 +Mohamed Benali-Khoudja,VITAL: An electromagnetic integrated tactile display.,2007,28,Displays,3,db/journals/displays/displays28.html#Benali-KhoudjaH07,https://doi.org/10.1016/j.displa.2007.04.013 +Chuen-Ming Gee,Flexible transparent electrodes made of electrochemically exfoliated graphene sheets from low-cost graphite pieces.,2013,34,Displays,4,db/journals/displays/displays34.html#GeeTWCLHLC13,https://doi.org/10.1016/j.displa.2012.11.002 +Hwally Lee,A quantitative measurement of LCD and PDP TVs for human visual preference and fatigue.,2012,33,Displays,1,db/journals/displays/displays33.html#LeeW12,https://doi.org/10.1016/j.displa.2011.08.001 +Pao-Long Chang,Investigation of technological trends in flexible display fabrication through patent analysis.,2012,33,Displays,2,db/journals/displays/displays33.html#ChangWL12,https://doi.org/10.1016/j.displa.2012.03.003 +Monika Pölönen,Reading e-books on a near-to-eye display: Comparison between a small-sized multimedia display and a hard copy.,2012,33,Displays,3,db/journals/displays/displays33.html#PolonenJH12,https://doi.org/10.1016/j.displa.2012.06.002 +Zhaoyue Lü,Enhanced properties of organic electroluminescent devices with cesium chloride ultra-thin layer.,2013,34,Displays,1,db/journals/displays/displays34.html#LuDHZX13,https://doi.org/10.1016/j.displa.2012.12.001 +Linas Svilainis,LED brightness control for video display application.,2008,29,Displays,5,db/journals/displays/displays29.html#Svilainis08a,https://doi.org/10.1016/j.displa.2008.05.002 +Jiwon Lee,Introduction to editable visual object and its description schema for mobile applications.,2015,40,Displays,,db/journals/displays/displays40.html#LeeJJ15,https://doi.org/10.1016/j.displa.2015.06.004 +Eunji Song,Novel voltage programming n-channel TFT pixel circuit for low power and high performance AMOLED displays.,2014,35,Displays,3,db/journals/displays/displays35.html#SongN14,https://doi.org/10.1016/j.displa.2014.04.002 +Jelte E. Bos,Nuancing the relationship between motion sickness and postural stability.,2011,32,Displays,4,db/journals/displays/displays32.html#Bos11a,https://doi.org/10.1016/j.displa.2010.09.005 +Norihiro Sugita,Quantitative evaluation of effects of visually-induced motion sickness based on causal coherence functions between blood pressure and heart rate.,2008,29,Displays,2,db/journals/displays/displays29.html#SugitaYTACYN08,https://doi.org/10.1016/j.displa.2007.09.017 +Sirisilp Kongsilp,Motion parallax from head movement enhances stereoscopic displays by improving presence and decreasing visual fatigue.,2017,49,Displays,,db/journals/displays/displays49.html#KongsilpD17,https://doi.org/10.1016/j.displa.2017.07.001 +Zhongfei Mu,Synthesis of Bi3+ and Gd3+ doped ZnB2O4 for evaluation as potential materials in luminescent display applications.,2014,35,Displays,3,db/journals/displays/displays35.html#MuHCWCWFX14,https://doi.org/10.1016/j.displa.2014.04.003 +Tom Bert,Complete electrical and optical simulation of electronic paper.,2006,27,Displays,2,db/journals/displays/displays27.html#BertSBN06,https://doi.org/10.1016/j.displa.2005.10.001 +Shashank Sharma,Optimization of sustain pulse parameters for luminous efficacy improvement in an AC plasma display panel.,2010,31,Displays,3,db/journals/displays/displays31.html#SharmaSSRD10,https://doi.org/10.1016/j.displa.2010.03.001 +Frank L. Kooi,Real 3D increases perceived depth over anaglyphs but does not cancel stereo-anomaly.,2010,31,Displays,3,db/journals/displays/displays31.html#KooiDEB10,https://doi.org/10.1016/j.displa.2010.03.003 +Jae-Yong Lee,Scalar-based speckle simulation model from the angular surface scattering based on generalized Harvey-Shack theory for laser displays.,2018,51,Displays,,db/journals/displays/displays51.html#LeeJJPK18,https://doi.org/10.1016/j.displa.2017.10.003 +Chunxiao Chen,EEG-based detection and evaluation of fatigue caused by watching 3DTV.,2013,34,Displays,2,db/journals/displays/displays34.html#ChenLWWQS13,https://doi.org/10.1016/j.displa.2013.01.002 +Masaki Emoto,Viewing angle effects from wide field video projection images on the human equilibrium.,2005,26,Displays,1,db/journals/displays/displays26.html#EmotoMSO05,https://doi.org/10.1016/j.displa.2004.09.004 +An-Hsiang Wang,Effects of Palm and WinCE menu-design for PDA on users' operating performance and subjective preference.,2005,26,Displays,2,db/journals/displays/displays26.html#WangLS05,https://doi.org/10.1016/j.displa.2005.02.005 +Kees Teunissen,A new characterization method to define the viewing angle range of matrix displays.,2009,30,Displays,2,db/journals/displays/displays30.html#TeunissenZCH09,https://doi.org/10.1016/j.displa.2008.12.004 +Yueh-Hua Lee,How human perceptions of Mura affect LCD market values.,2012,33,Displays,1,db/journals/displays/displays33.html#LeeT12,https://doi.org/10.1016/j.displa.2011.12.003 +Soon Hak Kim,Synthesis of submicron-sized spherical green phosphors by reverse emulsion method and their application to phosphor inks for ink-jet process in PDP.,2008,29,Displays,4,db/journals/displays/displays29.html#KimHKHKHP08,https://doi.org/10.1016/j.displa.2007.10.002 +Susan Bruck,The factor structure of cybersickness.,2011,32,Displays,4,db/journals/displays/displays32.html#BruckW11,https://doi.org/10.1016/j.displa.2011.07.002 +Marc T. M. Lambooij,Visual discomfort of 3D TV: Assessment methods and modeling.,2011,32,Displays,4,db/journals/displays/displays32.html#LambooijIH11,https://doi.org/10.1016/j.displa.2011.05.012 +Hari M. Atkuri,Developing novel liquid crystal technologies for display and photonic applications.,2015,36,Displays,,db/journals/displays/displays36.html#AtkuriLHPSWCMZLS15,https://doi.org/10.1016/j.displa.2014.10.006 +Céline Villa,High Dynamic Range Displays improve the realism of motion cues in night driving simulators.,2018,52,Displays,,db/journals/displays/displays52.html#VillaBG18,https://doi.org/10.1016/j.displa.2018.02.006 +Kaida Xiao,Visual gamma correction for LCD displays.,2011,32,Displays,1,db/journals/displays/displays32.html#XiaoFKW11,https://doi.org/10.1016/j.displa.2010.09.003 +Yi-Jan Yau,Optimization of Chinese interface design in motion environments.,2008,29,Displays,3,db/journals/displays/displays29.html#YauCH08,https://doi.org/10.1016/j.displa.2007.04.015 +Yao-gong Wang,Two-stage dither to enhance gray scales based on real-time motion detection in plasma display panel.,2015,36,Displays,,db/journals/displays/displays36.html#WangZTL15,https://doi.org/10.1016/j.displa.2014.11.002 +Kam Leung Yeung,Effect of the field of view on perceiving world-referenced image motion during concurrent head movements.,2013,34,Displays,2,db/journals/displays/displays34.html#YeungL13,https://doi.org/10.1016/j.displa.2012.08.003 +J. Kuze,Subjective evaluation of visual fatigue caused by motion images.,2008,29,Displays,2,db/journals/displays/displays29.html#KuzeU08,https://doi.org/10.1016/j.displa.2007.09.007 +Shi-Joon Sung,Effect of sputtering condition on the surface properties of silicon oxide thin films prepared for liquid crystal alignment layers.,2010,31,Displays,2,db/journals/displays/displays31.html#SungJKKYDC10,https://doi.org/10.1016/j.displa.2010.02.005 +Zhaoyue Lü,Organic light-emitting diodes using potassium chloride as efficiency and stability enhancers.,2010,31,Displays,1,db/journals/displays/displays31.html#LuDZZCXW10,https://doi.org/10.1016/j.displa.2009.09.004 +Young-Jun Yun,Design of system-on-glass for poly-Si TFT OLEDs using mixed-signals simulation.,2009,30,Displays,1,db/journals/displays/displays30.html#YunJKLL09,https://doi.org/10.1016/j.displa.2008.05.003 +Chung-Min Yu,A distortion-free data hiding scheme for high dynamic range images.,2011,32,Displays,5,db/journals/displays/displays32.html#YuWW11,https://doi.org/10.1016/j.displa.2011.02.004 +Yoochae Chung,Power-efficient drive circuit for plasma display panel.,2014,35,Displays,2,db/journals/displays/displays35.html#ChungSKCJK14,https://doi.org/10.1016/j.displa.2014.02.001 +Jee-Gong Chang,Random dot generation scheme using molecular dynamics method for illumination design of a round plane LED source light guide.,2010,31,Displays,1,db/journals/displays/displays31.html#ChangFJH10,https://doi.org/10.1016/j.displa.2009.11.001 +Zhijun Wu,Investigation of top-emitting organic light-emitting devices with highly saturated color employing metal-mirror structure.,2008,29,Displays,3,db/journals/displays/displays29.html#WuGW08,https://doi.org/10.1016/j.displa.2007.08.007 +Jin-Ho Ahn,Implementation of an LED tile controller for high-quality image display.,2013,34,Displays,1,db/journals/displays/displays34.html#Ahn13,https://doi.org/10.1016/j.displa.2012.10.004 +Ishwar Prasad Sahu,Structural characterization and optical properties of dysprosium doped strontium calcium magnesium di-silicate phosphor by solid state reaction method.,2015,38,Displays,,db/journals/displays/displays38.html#SahuBB15,https://doi.org/10.1016/j.displa.2015.03.002 +Bo Young Kim,Effect of electron transport layer engineering based on blue phosphorescent organic light-emitting diodes.,2013,34,Displays,5,db/journals/displays/displays34.html#KimLKLLYK13,https://doi.org/10.1016/j.displa.2013.08.003 +Shuyi Luo,Reading Chinese horizontal/vertical leading display on a liquid-colour display television.,2011,32,Displays,3,db/journals/displays/displays32.html#Luo11,https://doi.org/10.1016/j.displa.2011.01.001 +Chih-Hung Lin,Color image authentication with tamper detection and remedy based on BCH and Bayer Pattern.,2013,34,Displays,1,db/journals/displays/displays34.html#LinCC13,https://doi.org/10.1016/j.displa.2012.11.004 +Bor-Jiunn Wen,Flexible-characteristics inspection system for flexible substrates by using image feedback control.,2011,32,Displays,5,db/journals/displays/displays32.html#WenL11,https://doi.org/10.1016/j.displa.2011.05.008 +Jing Xiao,An efficient and bright organic white-light-emitting device.,2005,26,Displays,3,db/journals/displays/displays26.html#XiaoDLXX05,https://doi.org/10.1016/j.displa.2005.03.001 +Po-Chang Wu,Dielectric characterization and voltage holding ratio of blue-phase cells.,2016,44,Displays,,db/journals/displays/displays44.html#WuHCL16,https://doi.org/10.1016/j.displa.2015.11.003 +M. J. Jeon,Influence of wall charge distribution on time lag of address discharge in AC plasma display panels.,2008,29,Displays,3,db/journals/displays/displays29.html#JeonSSKHK08,https://doi.org/10.1016/j.displa.2007.07.004 +Abdeldjalil Madi,Color constancy for visual compensation of projector displayed image.,2014,35,Displays,1,db/journals/displays/displays35.html#MadiZ14,https://doi.org/10.1016/j.displa.2013.10.003 +W. S. Kim,Hybrid method for modelling light leakage by a spherical object in a liquid crystal layer.,2008,29,Displays,5,db/journals/displays/displays29.html#KimER08,https://doi.org/10.1016/j.displa.2008.03.004 +C. H. Sung,Biased scan of plasma display panel for data voltage reduction.,2012,33,Displays,1,db/journals/displays/displays33.html#SungKCJSJK12,https://doi.org/10.1016/j.displa.2011.10.003 +Li Wang,Performances enhancement in OLEDs by inserting ultrathin trilayer in electron injection structure and using MoO3 as hole buffer layer.,2011,32,Displays,1,db/journals/displays/displays32.html#WangXLYD11,https://doi.org/10.1016/j.displa.2010.11.001 +Junsheng Yu,Small molecular and polymer organic light-emitting diodes based on novel iridium complex phosphor.,2008,29,Displays,5,db/journals/displays/displays29.html#YuWLWJ08,https://doi.org/10.1016/j.displa.2008.04.004 +Myung-Je Jeon,Influence of wall charge on image sticking phenomena in AC plasma display panels.,2009,30,Displays,1,db/journals/displays/displays30.html#JeonCLLKK09,https://doi.org/10.1016/j.displa.2008.10.003 +Chun-Cheng Hsu,Relationship between eye fixation patterns and Kansei evaluation of 3D chair forms.,2017,50,Displays,,db/journals/displays/displays50.html#HsuFC17,https://doi.org/10.1016/j.displa.2017.09.002 +M. S. Chung,Improvement of picture quality of high Xe content plasma display panels based on facing discharge suppression.,2007,28,Displays,2,db/journals/displays/displays28.html#ChungKJK07,https://doi.org/10.1016/j.displa.2007.04.008 +Yu-Ming Chang,Optimized PDA orientation and screen layout for Chinese vocabulary learning by young children.,2006,27,Displays,2,db/journals/displays/displays27.html#ChangLLL06,https://doi.org/10.1016/j.displa.2005.11.002 +Atanas Boev,Visual-quality evaluation methodology for multiview displays.,2012,33,Displays,2,db/journals/displays/displays33.html#BoevBG12,https://doi.org/10.1016/j.displa.2012.01.002 +Moojin Kim,Characteristics of polycrystalline Si TFTs fabricated on glass substrates by excimer laser annealing with nickel-sputtered amorphous Si films.,2014,35,Displays,1,db/journals/displays/displays35.html#KimJKS14,https://doi.org/10.1016/j.displa.2013.10.002 +Wei Lee,Recovery of the electrically resistive properties of a degraded liquid crystal.,2010,31,Displays,3,db/journals/displays/displays31.html#LeeWL10,https://doi.org/10.1016/j.displa.2010.04.003 +Chien-Yue Chen,Design of a novel symmetric microprism array for dual-view display.,2010,31,Displays,2,db/journals/displays/displays31.html#ChenHDSC10,https://doi.org/10.1016/j.displa.2010.02.001 +S. H. Kim,Drive waveform for high resolution and high Xe content AC plasma display panels.,2005,26,Displays,1,db/journals/displays/displays26.html#KimSSJKK05,https://doi.org/10.1016/j.displa.2004.12.001 +Roger J. Mortimer,Electrochromic organic and polymeric materials for display applications.,2006,27,Displays,1,db/journals/displays/displays27.html#MortimerDR06,https://doi.org/10.1016/j.displa.2005.03.003 +Tommi Heikkinen,Design and evolution of web-based screen management middleware for interactive multipurpose public displays.,2015,39,Displays,,db/journals/displays/displays39.html#HeikkinenO15,https://doi.org/10.1016/j.displa.2015.08.003 +Regina W. Y. Wang,Differentiation in the arched surface of packaging: Its influence on the findability of logo typography displays.,2011,32,Displays,1,db/journals/displays/displays32.html#WangC11,https://doi.org/10.1016/j.displa.2010.09.006 +Jong S. Park,Control of inkjet printed profiles by solvent-vapor annealing.,2010,31,Displays,3,db/journals/displays/displays31.html#ParkKSL10,https://doi.org/10.1016/j.displa.2010.04.004 +Yuhui Zheng,Design and characterization of new lanthanide fluorides and their optical properties.,2014,35,Displays,5,db/journals/displays/displays35.html#ZhengZWZLYYLW14,https://doi.org/10.1016/j.displa.2014.10.002 +Qicheng Ding,Motion games improve balance control in stroke survivors: A preliminary study based on the principle of constraint-induced movement therapy.,2013,34,Displays,2,db/journals/displays/displays34.html#DingSWLSWKW13,https://doi.org/10.1016/j.displa.2012.08.004 +Manuel Rodríguez-Vallejo,Stereopsis assessment at multiple distances with an iPad application.,2017,50,Displays,,db/journals/displays/displays50.html#Rodriguez-Vallejo17,https://doi.org/10.1016/j.displa.2017.09.001 +Eva Siegenthaler,Comparing reading processes on e-ink displays and print.,2011,32,Displays,5,db/journals/displays/displays32.html#SiegenthalerWBG11,https://doi.org/10.1016/j.displa.2011.05.005 +Stephen A. Palmisano,Vection and cybersickness generated by head-and-display motion in the Oculus Rift.,2017,46,Displays,,db/journals/displays/displays46.html#PalmisanoMK17,https://doi.org/10.1016/j.displa.2016.11.001 +Türker Tuncer,A reversible data hiding algorithm based on probabilistic DNA-XOR secret sharing scheme for color images.,2016,41,Displays,,db/journals/displays/displays41.html#TuncerA16,https://doi.org/10.1016/j.displa.2015.10.005 +Paul Hands,True stereoscopic 3D cannot be simulated by shifting 2D content off the screen plane.,2017,48,Displays,,db/journals/displays/displays48.html#HandsR17,https://doi.org/10.1016/j.displa.2017.02.002 +Taeil Jung,Performance optimization of polarized-light-emitting source based on aluminum metal grid for display application.,2018,53,Displays,,db/journals/displays/displays53.html#JungCLJH18,https://doi.org/10.1016/j.displa.2018.07.002 +Jin Song,Unlocking the potential of p-doped hole transport layers in inverted organic light emitting diodes.,2016,45,Displays,,db/journals/displays/displays45.html#SongQCWC16,https://doi.org/10.1016/j.displa.2015.12.003 +Shana Smith,The relationships between automobile head-up display presentation images and drivers' Kansei.,2011,32,Displays,2,db/journals/displays/displays32.html#SmithF11,https://doi.org/10.1016/j.displa.2010.12.001 +Der-Chyuan Lou,A novel authenticatable color visual secret sharing scheme using non-expanded meaningful shares.,2011,32,Displays,3,db/journals/displays/displays32.html#LouCWT11,https://doi.org/10.1016/j.displa.2011.02.001 +Z. G. Pan,An illumination distribution preserved colour substitution algorithm based on dichromatic reflection model.,2005,26,Displays,3,db/journals/displays/displays26.html#PanWXZS05,https://doi.org/10.1016/j.displa.2005.02.007 +Linsen Li,Low operating-voltage and high power-efficiency OLED employing MoO3-doped CuPc as hole injection layer.,2012,33,Displays,1,db/journals/displays/displays33.html#LiGCLZ12,https://doi.org/10.1016/j.displa.2011.10.002 +Rong Wang,Autostereoscopic augmented reality visualization for depth perception in endoscopic surgery.,2017,48,Displays,,db/journals/displays/displays48.html#WangGZPM17,https://doi.org/10.1016/j.displa.2017.03.003 +Joon-Young Song,Fabrication and characterization of Pb-free transparent dielectric layer for plasma display panel.,2006,27,Displays,3,db/journals/displays/displays27.html#SongC06,https://doi.org/10.1016/j.displa.2006.02.001 +Frederik Krebs,"Editorial for the special issue on ""Organic Displays"" to be published as a volume in Displays.",2006,27,Displays,1,db/journals/displays/displays27.html#Krebs06,https://doi.org/10.1016/j.displa.2005.08.001 +Tsung-Nan Lin,Adaptive-hierarchical filtering approach for noise removal.,2008,29,Displays,3,db/journals/displays/displays29.html#LinC08,https://doi.org/10.1016/j.displa.2007.08.001 +Matteo Biancardo,Electrochromic devices based on wide band-gap nanocrystalline semiconductors functionalized with mononuclear charge transfer compounds.,2006,27,Displays,1,db/journals/displays/displays27.html#BiancardoAB06,https://doi.org/10.1016/j.displa.2005.03.004 +Takehiko Bando,Visual fatigue caused by stereoscopic images and the search for the requirement to prevent them: A review.,2012,33,Displays,2,db/journals/displays/displays33.html#BandoIY12,https://doi.org/10.1016/j.displa.2011.09.001 +Chris Crockford,Modelling VCR-like video content navigation.,2005,26,Displays,2,db/journals/displays/displays26.html#CrockfordA05,https://doi.org/10.1016/j.displa.2005.02.003 +Clarence E. Rash,A 25-year retrospective review of visual complaints and illusions associated with a monocular helmet-mounted display.,2008,29,Displays,2,db/journals/displays/displays29.html#Rash08,https://doi.org/10.1016/j.displa.2007.09.011 +Hanui Yu,Effect of character contrast ratio of tablet PC and ambient device luminance ratio on readability in low ambient illuminance.,2018,52,Displays,,db/journals/displays/displays52.html#YuAKS18,https://doi.org/10.1016/j.displa.2018.03.002 +Behrang Keshavarz,Intra-visual conflict in visually induced motion sickness.,2011,32,Displays,4,db/journals/displays/displays32.html#KeshavarzHZ11,https://doi.org/10.1016/j.displa.2011.05.009 +D.-H. Lee,Highly efficient phosphorescent polymer OLEDs fabricated by screen printing.,2008,29,Displays,5,db/journals/displays/displays29.html#LeeCCCC08,https://doi.org/10.1016/j.displa.2008.02.006 +D. W. Zhao,The effect of multilayer quantum well structure on the characteristics of OLEDs.,2007,28,Displays,2,db/journals/displays/displays28.html#ZhaoSZZXX07,https://doi.org/10.1016/j.displa.2007.04.010 +Seung-Ryeol Kim,Psychophysical research on switching between light emitting and reflecting modes of light adaptable display considering equal visibility.,2017,50,Displays,,db/journals/displays/displays50.html#KimLKJL17,https://doi.org/10.1016/j.displa.2017.09.007 +Chantal N. de Boer,Added value of an autostereoscopic multiview 3-D display for advertising in a public environment.,2010,31,Displays,1,db/journals/displays/displays31.html#BoerVHH10,https://doi.org/10.1016/j.displa.2009.09.001 +Hiroyasu Ujike,Survey on motion sickness-like symptoms provoked by viewing a video movie during junior high school class.,2008,29,Displays,2,db/journals/displays/displays29.html#UjikeUN08,https://doi.org/10.1016/j.displa.2007.09.003 +Pieter Bauwens,Improved passive-matrix multiplexability with a modular display and UTCP technology.,2009,30,Displays,2,db/journals/displays/displays30.html#BauwensMCDV09,https://doi.org/10.1016/j.displa.2008.12.005 +Bor-Jiunn Wen,Non-contact resistance measurement of transparent electrodes deposited on flexible display substrates under repetitive bending test by terahertz time domain spectroscopy.,2016,45,Displays,,db/journals/displays/displays45.html#WenLYCC16,https://doi.org/10.1016/j.displa.2016.01.002 +Jin-Sung Kim,Ramp driver circuit for improving the stability of ramp slope in a flat panel display driver.,2013,34,Displays,3,db/journals/displays/displays34.html#KimMJ13,https://doi.org/10.1016/j.displa.2013.05.004 +Li Li,The applied issues in visual perception and action: Preface to a special issue.,2013,34,Displays,2,db/journals/displays/displays34.html#LiS13,https://doi.org/10.1016/j.displa.2013.02.001 +Zong Qin,Luminance enhancement without sacrificing the viewing angle in a direct-lit backlight by addressing the angle-dependent characteristic of the prism film.,2017,50,Displays,,db/journals/displays/displays50.html#Qin17,https://doi.org/10.1016/j.displa.2017.09.006 +Masaki Emoto,Viewers' optimization of preferred viewing distance by spatial resolution of TV display.,2016,45,Displays,,db/journals/displays/displays45.html#EmotoS16,https://doi.org/10.1016/j.displa.2016.07.003 +Jingang Hao,Relationship between exciton recombination zone and applied voltage in organic light-emitting diodes.,2006,27,Displays,3,db/journals/displays/displays27.html#HaoDY06,https://doi.org/10.1016/j.displa.2006.01.001 +Sunwoong Kim,An enhanced one-dimensional SPIHT algorithm and its implementation for TV systems.,2015,40,Displays,,db/journals/displays/displays40.html#KimLKTK15,https://doi.org/10.1016/j.displa.2015.05.008 +Rui Ni,Age-related difference in steering control under reduced visibility conditions.,2013,34,Displays,2,db/journals/displays/displays34.html#NiNZ13,https://doi.org/10.1016/j.displa.2012.09.001 +Gary E. Burnett,Menu hierarchies for in-vehicle user-interfaces: Modelling the depth vs. breadth trade-off.,2013,34,Displays,4,db/journals/displays/displays34.html#BurnettLDK13,https://doi.org/10.1016/j.displa.2013.07.001 +Sungwook Youn,Perceptual video quality comparison of various 3D video formats and displays.,2018,52,Displays,,db/journals/displays/displays52.html#YounBJL18,https://doi.org/10.1016/j.displa.2018.02.005 +Peter A. Howarth,The adverse health and safety effects of viewing visual images.,2008,29,Displays,2,db/journals/displays/displays29.html#Howarth08,https://doi.org/10.1016/j.displa.2007.09.012 +Xinjun Xu,Electrode modification in organic light-emitting diodes.,2006,27,Displays,1,db/journals/displays/displays27.html#XuYLZ06,https://doi.org/10.1016/j.displa.2005.02.008 +Gábor Kutas,Luminance contrast and chromaticity contrast preference on the colour display for young and elderly users.,2008,29,Displays,3,db/journals/displays/displays29.html#KutasKBPLCK08,https://doi.org/10.1016/j.displa.2007.08.012 +Roger J. Mortimer,Quantification of colour stimuli through the calculation of CIE chromaticity coordinates and luminance data for application to in situ colorimetry studies of electrochromic materials.,2011,32,Displays,1,db/journals/displays/displays32.html#MortimerV11,https://doi.org/10.1016/j.displa.2010.10.001 +Hyun Woo Lee,Blue electroluminescent materials based on phenylanthracene-substituted fluorene derivatives for organic light-emitting diodes.,2015,39,Displays,,db/journals/displays/displays39.html#LeeKKKLLKY15,https://doi.org/10.1016/j.displa.2015.05.003 +Huishan Yang,High colour rendering index white organic light-emitting devices with three emitting layers.,2008,29,Displays,4,db/journals/displays/displays29.html#YangSZMHHL08,https://doi.org/10.1016/j.displa.2007.10.001 +John P. McIntire,Stereoscopic 3D displays and human performance: A comprehensive review.,2014,35,Displays,1,db/journals/displays/displays35.html#McIntireHG14,https://doi.org/10.1016/j.displa.2013.10.004 +Tae-Ho Lee,The dependence of the thermal characteristics variation and image sticking phenomenon of PDP on the dielectric loss.,2011,32,Displays,5,db/journals/displays/displays32.html#LeeJKLKW11,https://doi.org/10.1016/j.displa.2011.05.001 +Wei Xu,The reduction of driving voltage in organic light-emitting devices by inserting step barrier layer.,2009,30,Displays,3,db/journals/displays/displays30.html#XuK09,https://doi.org/10.1016/j.displa.2009.02.001 +Zhi-Guo Wang,A real-time image processor with combining dynamic contrast ratio enhancement and inverse gamma correction for PDP.,2009,30,Displays,3,db/journals/displays/displays30.html#WangLL09,https://doi.org/10.1016/j.displa.2009.03.006 +Weilin Liu,How homepage aesthetic design influences users' satisfaction: Evidence from China.,2016,42,Displays,,db/journals/displays/displays42.html#LiuGYL16,https://doi.org/10.1016/j.displa.2016.02.004 +S. M. Huang,Enhancement of the light output of GaN-based light-emitting diodes using surface-textured indium-tin-oxide transparent ohmic contacts.,2008,29,Displays,3,db/journals/displays/displays29.html#HuangYJSD08,https://doi.org/10.1016/j.displa.2007.08.008 +Jin-Ho Kim,IGZO TFT gate driver circuit with large threshold voltage margin.,2018,53,Displays,,db/journals/displays/displays53.html#KimOPK18,https://doi.org/10.1016/j.displa.2018.03.003 +Yuki Nakayama,The sound of smile: Auditory biofeedback of facial EMG activity.,2017,47,Displays,,db/journals/displays/displays47.html#NakayamaTMST17,https://doi.org/10.1016/j.displa.2016.09.002 +Rui Li,Effects of interface layout on the usability of In-Vehicle Information Systems and driving safety.,2017,49,Displays,,db/journals/displays/displays49.html#LiCSL17,https://doi.org/10.1016/j.displa.2017.07.008 +Marc T. M. Lambooij,The impact of video characteristics and subtitles on visual comfort of 3D TV.,2013,34,Displays,1,db/journals/displays/displays34.html#LambooijMIH13,https://doi.org/10.1016/j.displa.2012.09.002 +Yu Bai,A blue organic light emitting diodes with graded junction.,2008,29,Displays,4,db/journals/displays/displays29.html#BaiKZJZ08,https://doi.org/10.1016/j.displa.2007.11.001 +J. Ibañez,Frequency-dependent light emission and extinction of electroluminescent ZnS: Cu phosphor.,2007,28,Displays,3,db/journals/displays/displays28.html#IbanezGGMM07,https://doi.org/10.1016/j.displa.2007.04.001 +Junsheng Yu,Influence of interlayer on the performance of phosphorescent white organic light-emitting devices.,2012,33,Displays,3,db/journals/displays/displays33.html#YuLJZ12,https://doi.org/10.1016/j.displa.2012.06.001 +Jun-Wei Chen,The n-alcohols liquid doping effect on the twisted nematic liquid crystals.,2016,45,Displays,,db/journals/displays/displays45.html#ChenWCCC16,https://doi.org/10.1016/j.displa.2015.11.005 +Kuo-Chen Huang,Effects of computer icons and figure/background area ratios and color combinations on visual search performance on an LCD monitor.,2008,29,Displays,3,db/journals/displays/displays29.html#Huang08,https://doi.org/10.1016/j.displa.2007.08.005 +Xin-Jia Li,Influence of ball milling parameters on blue phosphor for cathode ray tube.,2008,29,Displays,3,db/journals/displays/displays29.html#LiWS08,https://doi.org/10.1016/j.displa.2007.09.014 +Kyoung Moon Lim,A high resolution Poly-Si TFT-LCD employing analog sample and hold driver.,2008,29,Displays,5,db/journals/displays/displays29.html#LimLBLSYLJPYKKL08,https://doi.org/10.1016/j.displa.2008.04.005 +George A. Geri,Simulating time-to-contact when both target and observer are in motion.,2010,31,Displays,2,db/journals/displays/displays31.html#GeriGG10,https://doi.org/10.1016/j.displa.2009.11.002 +Chien-Yue Chen,The influence of polarized 3D display on autonomic nervous activities.,2014,35,Displays,4,db/journals/displays/displays35.html#ChenKWKPL14,https://doi.org/10.1016/j.displa.2014.05.001 +Weiwei Jiang,Blue solid state cathodoluminescence of ZnSe.,2008,29,Displays,5,db/journals/displays/displays29.html#JiangZXZ08,https://doi.org/10.1016/j.displa.2008.02.003 +Fang Cao,Hierarchical recovery for tampered images based on watermark self-embedding.,2017,46,Displays,,db/journals/displays/displays46.html#CaoAWYW17,https://doi.org/10.1016/j.displa.2017.01.001 +Elizabeth Crundall,A driving simulator study to explore the effects of text size on the visual demand of in-vehicle displays.,2016,43,Displays,,db/journals/displays/displays43.html#CrundallLB16,https://doi.org/10.1016/j.displa.2016.05.003 +Amine Laghrib,A multiframe super-resolution technique based on a nonlocal Bregman distance of bilateral total variation term.,2018,53,Displays,,db/journals/displays/displays53.html#LaghribAH18,https://doi.org/10.1016/j.displa.2018.06.002 +Pen-Cheng Wang,Integration of polymer-dispersed liquid crystal composites with conducting polymer thin films toward the fabrication of flexible display devices.,2007,28,Displays,3,db/journals/displays/displays28.html#WangM07,https://doi.org/10.1016/j.displa.2007.04.006 +Alf Ove Braseth,Visualizing complex processes on large screen displays: Design principles based on the Information Rich Design concept.,2013,34,Displays,3,db/journals/displays/displays34.html#BrasethO13,https://doi.org/10.1016/j.displa.2013.05.002 +HyungKi Hong,Change of the observed binocular disparity of the moving 3D object in 3D technology based on the time-division.,2012,33,Displays,2,db/journals/displays/displays33.html#Hong12,https://doi.org/10.1016/j.displa.2011.10.001 +Xiaoyue Ma,From action icon to knowledge icon: Objective-oriented icon taxonomy in computer science.,2015,39,Displays,,db/journals/displays/displays39.html#MaMCQC15,https://doi.org/10.1016/j.displa.2015.08.006 +Zhi Gang Chen,A new COP bonding using non-conductive adhesives for LCDs driver IC packaging.,2006,27,Displays,3,db/journals/displays/displays27.html#ChenK06,https://doi.org/10.1016/j.displa.2006.04.002 +Yasuhiro Takaki,Super multi-view and holographic displays using MEMS devices.,2015,37,Displays,,db/journals/displays/displays37.html#Takaki15,https://doi.org/10.1016/j.displa.2014.09.002 +Ting Zhang,Novel carbazole/anthracene hybrids for efficient blue organic light-emitting diodes.,2013,34,Displays,5,db/journals/displays/displays34.html#ZhangDL13,https://doi.org/10.1016/j.displa.2013.08.001 +Jason D. Moss,The effects of display delay on simulator sickness.,2011,32,Displays,4,db/journals/displays/displays32.html#MossASCWM11,https://doi.org/10.1016/j.displa.2011.05.010 +Seokhwa Jeong,UHD TV image enhancement using example-based spatially adaptive image restoration filter.,2015,40,Displays,,db/journals/displays/displays40.html#JeongCJP15,https://doi.org/10.1016/j.displa.2015.06.003 +Ta-Hsiung Cho,The comparison of accommodative response and ocular movements in viewing 3D and 2D displays.,2017,49,Displays,,db/journals/displays/displays49.html#ChoCWCY17,https://doi.org/10.1016/j.displa.2017.07.002 +Hock Chuan Chan,Empirical comparison of image retrieval color similarity methods with human judgment.,2008,29,Displays,3,db/journals/displays/displays29.html#Chan08,https://doi.org/10.1016/j.displa.2007.08.013 +Kuo-Yung Hung,"Manipulation image processing algorithmic technology to realize 1.8"" RGBW transflective TFT-LCDs with adjustable colour gamut.",2008,29,Displays,5,db/journals/displays/displays29.html#HungPHY08,https://doi.org/10.1016/j.displa.2008.07.002 +Moon-Cheol Kim,Comparative color gamut analysis of xvYCC standard.,2008,29,Displays,4,db/journals/displays/displays29.html#Kim08,https://doi.org/10.1016/j.displa.2007.12.001 +Jeongrim Seo,Robust low power DC-type shift register circuit capable of compensating threshold voltage shift of oxide TFTs.,2017,49,Displays,,db/journals/displays/displays49.html#SeoSKN17,https://doi.org/10.1016/j.displa.2017.07.004 +Jason D. Moss,Perceptual thresholds for display lag in a real visual environment are not affected by field of view or psychophysical technique.,2010,31,Displays,3,db/journals/displays/displays31.html#MossMTS10,https://doi.org/10.1016/j.displa.2010.04.002 +Tzu-Chieh Lin,Eliminating optical bounce of homeotropic liquid crystal cells with sputtered silicon dioxide alignment films by rubbing treatment.,2011,32,Displays,5,db/journals/displays/displays32.html#LinLC11,https://doi.org/10.1016/j.displa.2011.03.001 +Hyungoo Kang,Measurement of minimum angle of resolution (MAR) for the spatial grating consisting of lines of two colors.,2015,38,Displays,,db/journals/displays/displays38.html#KangH15,https://doi.org/10.1016/j.displa.2015.02.002 +An-Hsiang Wang,Effects of bending curvature and ambient illuminance on the visual performance of young and elderly participants using simulated electronic paper displays.,2012,33,Displays,1,db/journals/displays/displays33.html#WangHK12,https://doi.org/10.1016/j.displa.2011.12.002 +Bart Van Giel,LED projector with two liquid crystal on silicon light valves and a fly's eye integrator.,2008,29,Displays,5,db/journals/displays/displays29.html#GielMBMST08,https://doi.org/10.1016/j.displa.2008.03.003 +Yongduk Kim,The interlaced/progressive scan method to reduce the switching noise caused by data pulse in a plasma display.,2007,28,Displays,3,db/journals/displays/displays28.html#KimP07,https://doi.org/10.1016/j.displa.2007.04.002 +Ju-Ai Ruan,Transmission and reflection dual operational mode MEMS display device.,2015,37,Displays,,db/journals/displays/displays37.html#Ruan15,https://doi.org/10.1016/j.displa.2014.08.002 +Chien-Hsiung Chen,Effects of screen resolution and column ratio on search performance and subjective preferences.,2012,33,Displays,1,db/journals/displays/displays33.html#ChenC12,https://doi.org/10.1016/j.displa.2011.10.004 +Alexander Toet,Colorizing single band intensified nightvision images.,2005,26,Displays,1,db/journals/displays/displays26.html#Toet05,https://doi.org/10.1016/j.displa.2004.09.007 +Chien-Hsiung Chen,Reading Chinese text on a small screen with RSVP.,2005,26,Displays,3,db/journals/displays/displays26.html#ChenC05,https://doi.org/10.1016/j.displa.2005.02.004 +B. Marí,Red emitting MTiO3 (M = Ca or Sr) phosphors doped with Eu3+ or Pr3+ with some cations as co-dopants.,2013,34,Displays,4,db/journals/displays/displays34.html#MariSCSSC13,https://doi.org/10.1016/j.displa.2013.07.003 +Moon-Cheol Kim,New display concept for realistic reproduction of high-luminance colors.,2015,39,Displays,,db/journals/displays/displays39.html#Kim15,https://doi.org/10.1016/j.displa.2015.10.002 +Wenlong Xu,An improved least-significant-bit substitution method using the modulo three strategy.,2016,42,Displays,,db/journals/displays/displays42.html#XuCCW16,https://doi.org/10.1016/j.displa.2016.03.002 +Naoki Isu,Quantitative analysis of time-course development of motion sickness caused by in-vehicle video watching.,2014,35,Displays,2,db/journals/displays/displays35.html#IsuHTM14,https://doi.org/10.1016/j.displa.2014.01.003 +Xiaoqing Tang,White organic light-emitting diodes with improved performance using phosphorescent sensitizer and ultrathin fluorescent emitter.,2009,30,Displays,3,db/journals/displays/displays30.html#TangYLZJ09,https://doi.org/10.1016/j.displa.2009.03.001 +Masahiro Suzuki,New technique of obtaining visually perceived positions of 3-D images using movements of users' bodies.,2016,42,Displays,,db/journals/displays/displays42.html#SuzukiU16,https://doi.org/10.1016/j.displa.2016.02.003 +Moojin Kim,Effects of the single and double (overlap) scanned excimer laser annealing on solid phase crystallized silicon films.,2015,36,Displays,,db/journals/displays/displays36.html#KimJKS15,https://doi.org/10.1016/j.displa.2014.11.001 +Francesco Leccese,Visual ergonomics of video-display-terminal workstations: Field measurements of luminance for various display settings.,2016,42,Displays,,db/journals/displays/displays42.html#LecceseSR16,https://doi.org/10.1016/j.displa.2016.02.001 +Joonyoup Kim,Surface treatment of molybdenum oxide for performance improvement of organic light emitting diodes.,2010,31,Displays,3,db/journals/displays/displays31.html#KimSNL10,https://doi.org/10.1016/j.displa.2010.03.004 +Xinwen Zhang,White organic light-emitting devices with a solution-processed small molecular emission layer.,2012,33,Displays,3,db/journals/displays/displays33.html#ZhangWJWWH12,https://doi.org/10.1016/j.displa.2012.03.004 +Hee-Chang Jung,The effect of the illuminance of light emitting diode (LED) lamps on long-term memory.,2017,49,Displays,,db/journals/displays/displays49.html#JungKL17,https://doi.org/10.1016/j.displa.2017.05.001 +Gu-Jin Lin,Evaluating and improving color washout of vertical aligned liquid crystal display.,2014,35,Displays,3,db/journals/displays/displays35.html#LinXYYH14,https://doi.org/10.1016/j.displa.2014.05.006 +Kohei Tsugita,Formation of high-purity organic thin films by gas flow deposition and the effect of impurities on device characteristics.,2013,34,Displays,5,db/journals/displays/displays34.html#TsugitaEYA13,https://doi.org/10.1016/j.displa.2013.08.008 +Jae Kwang Lim,Analysis of luminance variation with display load and display pattern in AC-plasma display panels.,2010,31,Displays,1,db/journals/displays/displays31.html#LimCT10,https://doi.org/10.1016/j.displa.2009.09.003 +Y. Q. Zhan,Non-doped red emission: A solution for bias-independent red emission.,2008,29,Displays,5,db/journals/displays/displays29.html#ZhanZZWODH08,https://doi.org/10.1016/j.displa.2008.02.005 +Justin Mittelstaedt,Effects of display type and motion control on cybersickness in a virtual bike simulator.,2018,51,Displays,,db/journals/displays/displays51.html#MittelstaedtWS18,https://doi.org/10.1016/j.displa.2018.01.002 +Hongmei Zhang,Effect of PEDOT: PSS vs. MoO3 as the hole injection layer on performance of C545T-based green electroluminescent light-emitting diodes.,2014,35,Displays,4,db/journals/displays/displays35.html#ZhangXZH14,https://doi.org/10.1016/j.displa.2014.04.004 +Yi-Jung Liu,A low damage GaN-based light-emitting diode with textured/inclined sidewalls and an air-buffer layer.,2010,31,Displays,2,db/journals/displays/displays31.html#LiuTYGCTL10,https://doi.org/10.1016/j.displa.2010.02.003 +özge Kumoglu,The effects of correlated colour temperature on wayfinding: A study in a virtual airport environment.,2018,51,Displays,,db/journals/displays/displays51.html#KumogluOG18,https://doi.org/10.1016/j.displa.2018.01.003 +Weibin Chen,Design of non-polarizing color splitting filters used for projection display system.,2005,26,Displays,2,db/journals/displays/displays26.html#ChenG05,https://doi.org/10.1016/j.displa.2005.02.001 +Piao-Rong Xu,Threshold-voltage shift model based on electron tunneling under positive gate bias stress for amorphous InGaZnO thin-film transistors.,2018,53,Displays,,db/journals/displays/displays53.html#XuY18,https://doi.org/10.1016/j.displa.2018.04.003 +Su Hwan Kim,Nondestructive defect inspection for LCDs using optical coherence tomography.,2011,32,Displays,5,db/journals/displays/displays32.html#KimKK11,https://doi.org/10.1016/j.displa.2011.04.002 +Zhaoyue Lv,Efficient organic light-emitting diodes with C60 buffer layer.,2009,30,Displays,1,db/journals/displays/displays30.html#LvDXLJ09,https://doi.org/10.1016/j.displa.2008.10.001 +Vasilios G. Chouvardas,Tactile displays: Overview and recent advances.,2008,29,Displays,3,db/journals/displays/displays29.html#ChouvardasMH08,https://doi.org/10.1016/j.displa.2007.07.003 +Fion C. H. Lee,Ergonomics recommendations for simultaneous and delayed presentation of visual and auditory signals.,2008,29,Displays,2,db/journals/displays/displays29.html#LeeC08,https://doi.org/10.1016/j.displa.2007.09.006 +Chandan Singh,An efficient and robust multi-frame image super-resolution reconstruction using orthogonal Fourier-Mellin moments.,2017,49,Displays,,db/journals/displays/displays49.html#SinghA17,https://doi.org/10.1016/j.displa.2017.06.002 +Simon K. Rushton,Biologically-inspired heuristics for human-like walking trajectories toward targets and around obstacles.,2013,34,Displays,2,db/journals/displays/displays34.html#RushtonA13,https://doi.org/10.1016/j.displa.2012.10.006 +Christoph M. Hoffmann,Perception of surfaces from line drawings.,2007,28,Displays,1,db/journals/displays/displays28.html#HoffmannPPP07,https://doi.org/10.1016/j.displa.2006.11.001 +David A. Sanders,A pointer device for TFT display screens that determines position by detecting colours on the display using a colour sensor and an Artificial Neural Network.,2009,30,Displays,2,db/journals/displays/displays30.html#SandersT09,https://doi.org/10.1016/j.displa.2009.01.001 +Kazuki Nakamura,Electrochemically-switchable emission and absorption by using luminescent Lanthanide(III) complex and electrochromic molecule toward novel display device with dual emissive and reflective mode.,2013,34,Displays,5,db/journals/displays/displays34.html#NakamuraKK13,https://doi.org/10.1016/j.displa.2013.08.009 +HyungKi Hong,Reduction of spatially non-uniform 3D crosstalk for stereoscopic display using shutter glasses.,2012,33,Displays,3,db/journals/displays/displays33.html#Hong12a,https://doi.org/10.1016/j.displa.2012.05.003 +Robert B. Welch,Adapting to virtual environments: Visual-motor skill acquisition versus perceptual recalibration.,2008,29,Displays,2,db/journals/displays/displays29.html#WelchS08,https://doi.org/10.1016/j.displa.2007.09.013 +Der-Song Lee,Effect of character size and lighting on legibility of electronic papers.,2008,29,Displays,1,db/journals/displays/displays29.html#LeeSJS08,https://doi.org/10.1016/j.displa.2007.06.007 +Emily H. Sinitski,Postural stability and simulator sickness after walking on a treadmill in a virtual environment with a curved display.,2018,52,Displays,,db/journals/displays/displays52.html#SinitskiTGHB18,https://doi.org/10.1016/j.displa.2018.01.001 +Norihiro Sugita,Evaluation of temporal relationship between a physiological index and a subjective score using average mutual information.,2011,32,Displays,4,db/journals/displays/displays32.html#SugitaYTAHCYN11,https://doi.org/10.1016/j.displa.2011.04.003 +Masahiro Suzuki,New 3-D display that can display 3-D images at long distances and that can control their 3-D positions using changing size as a cue to depth perception.,2014,35,Displays,4,db/journals/displays/displays35.html#SuzukiU14,https://doi.org/10.1016/j.displa.2014.05.008 +Matthew E. St. Pierre,The effects of 0.2 Hz varying latency with 20-100 ms varying amplitude on simulator sickness in a helmet mounted display.,2015,36,Displays,,db/journals/displays/displays36.html#PierreBHM15,https://doi.org/10.1016/j.displa.2014.10.005 +Hyeongseok Kim,A study on the possibility of implementing a real-time stereoscopic 3D rendering TV system.,2015,40,Displays,,db/journals/displays/displays40.html#KimL15,https://doi.org/10.1016/j.displa.2015.05.001 +Min-Yuan Ma,Applying the concept of Information Mass in cognizing difficulty of Chinese word strings.,2008,29,Displays,3,db/journals/displays/displays29.html#MaH08,https://doi.org/10.1016/j.displa.2007.08.003 +Yasser Mafinejad,Characterization and optimization to improve uneven surface on MEMS bridge fabrication.,2015,37,Displays,,db/journals/displays/displays37.html#MafinejadKNLM15,https://doi.org/10.1016/j.displa.2014.08.004 +Chiuhsiang Joe Lin,Visual performance and fatigue in reading vibrating numeric displays.,2008,29,Displays,4,db/journals/displays/displays29.html#LinHCC08,https://doi.org/10.1016/j.displa.2007.12.004 +Zichuan Yi,A novel driver for active matrix electrowetting displays.,2015,37,Displays,,db/journals/displays/displays37.html#YiSWJHZ15,https://doi.org/10.1016/j.displa.2014.09.004 +Min-Cheol Oh,Hollow-core polymeric nanoparticles for the enhancement of OLED outcoupling efficiency.,2015,37,Displays,,db/journals/displays/displays37.html#OhPJG15,https://doi.org/10.1016/j.displa.2014.11.004 +Zhongfei Mu,Red phosphor Li2Mg2(WO4)3: Eu3+ with lyonsite structure for near ultraviolet light-emitting diodes.,2016,43,Displays,,db/journals/displays/displays43.html#MuSZFY16,https://doi.org/10.1016/j.displa.2016.04.001 +Jenny C. A. Read,Viewer experience with stereoscopic 3D television in the home.,2014,35,Displays,5,db/journals/displays/displays35.html#Read14,https://doi.org/10.1016/j.displa.2014.09.001 +Wan-Ting Su,Measurement of multiple JNDs for developing Mura ranking standards in LCD.,2011,32,Displays,5,db/journals/displays/displays32.html#SuH11,https://doi.org/10.1016/j.displa.2011.05.006 +Dong Hyung Lee,Improved efficiency and lifetime for green phosphorescent organic light-emitting diodes using charge control layer.,2014,35,Displays,2,db/journals/displays/displays35.html#LeeLKLLYPK14,https://doi.org/10.1016/j.displa.2014.02.002 +Xutao Sun,Etendue analysis and measurement of light source with elliptical reflector.,2006,27,Displays,2,db/journals/displays/displays27.html#SunZLG06,https://doi.org/10.1016/j.displa.2005.10.002 +Munetaka Maruyama,Hybrid crystals based on thiophene/phenylene co-oligomers.,2013,34,Displays,5,db/journals/displays/displays34.html#MaruyamaYHY13,https://doi.org/10.1016/j.displa.2013.08.010 +Jac Billington,Cortical responses to congruent and incongruent stereo cues for objects on a collision path with the observer.,2013,34,Displays,2,db/journals/displays/displays34.html#BillingtonFW13,https://doi.org/10.1016/j.displa.2012.10.008 +Cheng-Min Tsai,Identifying regions of interest in reading an image.,2015,39,Displays,,db/journals/displays/displays39.html#TsaiG15,https://doi.org/10.1016/j.displa.2015.08.001 +Wen-Hung Kuo,A framework of perceptual quality assessment on LCD-TV.,2007,28,Displays,1,db/journals/displays/displays28.html#KuoLH07,https://doi.org/10.1016/j.displa.2006.11.005 +Xiao Wang,Fabrication and characterization of double-sided organic light-emitting diodes using silver and nickel as the metal linking layer.,2016,44,Displays,,db/journals/displays/displays44.html#WangZLZWZ16,https://doi.org/10.1016/j.displa.2016.07.001 +Lu-Ping Chao,Measurement of the mechanical properties of brightness enhancement films (BEFs) for LCDs by optical interferometry.,2009,30,Displays,3,db/journals/displays/displays30.html#ChaoHTC09,https://doi.org/10.1016/j.displa.2009.03.004 +Kuo-Hao Tang,Evaluation of detection and discrimination ability of peripheral vision on notification information based on large displays.,2016,41,Displays,,db/journals/displays/displays41.html#TangL16,https://doi.org/10.1016/j.displa.2015.12.002 +Jinook Kim,Formation of the overcoat layer and column spacer for TFT-LCD using capillary force lithography.,2010,31,Displays,2,db/journals/displays/displays31.html#KimSKCYKHC10,https://doi.org/10.1016/j.displa.2010.02.002 +Xiaoming Wu,Chromatic-stable white organic light-emitting devices incorporating red color conversion layers.,2012,33,Displays,3,db/journals/displays/displays33.html#WuJHBBMYZ12,https://doi.org/10.1016/j.displa.2012.07.001 +Byung-Yun Joo,Design guidance of backlight optic for improvement of the brightness in the conventional edge-lit LCD backlight.,2010,31,Displays,2,db/journals/displays/displays31.html#JooS10,https://doi.org/10.1016/j.displa.2010.02.004 +Hanyu Lin,Red-colored products enhance the attractiveness of women.,2014,35,Displays,4,db/journals/displays/displays35.html#Lin14,https://doi.org/10.1016/j.displa.2014.05.009 +Nina Schaffert,Towards an application of interactive sonification for the forces applied on the pedals during cycling on the Wattbike ergometer.,2017,50,Displays,,db/journals/displays/displays50.html#SchaffertGSM17,https://doi.org/10.1016/j.displa.2017.09.004 +Ching-Lin Fan,3T0.5C Compensating pixel circuit with all p-type LTPS-TFTs for AMOLED displays.,2018,53,Displays,,db/journals/displays/displays53.html#FanCTYCH18,https://doi.org/10.1016/j.displa.2018.04.001 +Tom Bert,Steady state current in EPIDs.,2006,27,Displays,1,db/journals/displays/displays27.html#BertBSN06,https://doi.org/10.1016/j.displa.2005.06.008 +Haruhiko Nagai,Geometrical considerations on the directivity of reflected light from a paraboloidal mirror.,2005,26,Displays,2,db/journals/displays/displays26.html#Nagai05,https://doi.org/10.1016/j.displa.2005.01.001 +Li Wang 0037,Improvement of video playback performance of electrophoretic displays by optimized waveforms with shortened refresh time.,2017,49,Displays,,db/journals/displays/displays49.html#WangYJSZ17,https://doi.org/10.1016/j.displa.2017.07.007 +Peter A. Howarth,Characteristics of habituation to motion in a virtual environment.,2008,29,Displays,2,db/journals/displays/displays29.html#HowarthH08,https://doi.org/10.1016/j.displa.2007.09.009 +Pankaj Kumar,Synthesis and characterization of some 5-coordinated aluminum-8-hydroxyquinoline derivatives for OLED applications.,2008,29,Displays,4,db/journals/displays/displays29.html#KumarMBKJCT08,https://doi.org/10.1016/j.displa.2007.10.006 +Jan Hammerschmidt,EcoSonic: Auditory peripheral monitoring of fuel consumption for fuel-efficient driving.,2017,47,Displays,,db/journals/displays/displays47.html#HammerschmidtH17,https://doi.org/10.1016/j.displa.2016.11.002 +Chih-Long Lin,The evaluation of visuospatial performance between screen and paper.,2015,39,Displays,,db/journals/displays/displays39.html#LinWK15,https://doi.org/10.1016/j.displa.2015.08.002 +Chin-Chiuan Lin,Effects of ambient illumination conditions and background color on visual performance with TFT-LCD screens.,2013,34,Displays,4,db/journals/displays/displays34.html#LinH13,https://doi.org/10.1016/j.displa.2013.09.002 +Ronald R. Mourant,Optic flow and geometric field of view in a driving simulator display.,2007,28,Displays,3,db/journals/displays/displays28.html#MourantAJL07,https://doi.org/10.1016/j.displa.2007.04.011 +Loïc Caroux,How visual background motion and task difficulty modulate players' performance in a shooting task.,2015,38,Displays,,db/journals/displays/displays38.html#CarouxBV15,https://doi.org/10.1016/j.displa.2015.01.002 +Cyriel Diels,Visually induced motion sickness: Single- versus dual-axis motion.,2011,32,Displays,4,db/journals/displays/displays32.html#DielsH11,https://doi.org/10.1016/j.displa.2011.02.005 +Guan-Ming Li,Design of high speed gate driver employing IZO TFTs.,2015,39,Displays,,db/journals/displays/displays39.html#LiXZZXWWP15,https://doi.org/10.1016/j.displa.2015.09.002 +Gwang-Soo Hong,A local stereo matching algorithm based on weighted guided image filtering for improving the generation of depth range images.,2017,49,Displays,,db/journals/displays/displays49.html#HongK17,https://doi.org/10.1016/j.displa.2017.07.006 +Yuhei Shimada,Effect of MgZnO-bilayer/BA-CH3 combination interlayer on emission characteristics of MoO3/F8BT/ZnO hybrid light emitting diodes fabricated on ZnO/Ag/ZnO transparent cathode.,2013,34,Displays,5,db/journals/displays/displays34.html#ShimadaISIK13,https://doi.org/10.1016/j.displa.2013.08.006 +Jae-Chul Park,Analysis of the dependence of indium-gallium-zinc oxide thin-film transistor properties on the gate interface material using a two-stack gate-insulator structure.,2015,39,Displays,,db/journals/displays/displays39.html#ParkPL15,https://doi.org/10.1016/j.displa.2015.09.003 +Xia Chen,Screen-printing fabrication of electrowetting displays based on poly(imide siloxane) and polyimide.,2015,37,Displays,,db/journals/displays/displays37.html#ChenHJWCFJHZS15,https://doi.org/10.1016/j.displa.2014.09.003 +Ying-Lien Lee,Usability study of text-based CAPTCHAs.,2011,32,Displays,2,db/journals/displays/displays32.html#LeeH11,https://doi.org/10.1016/j.displa.2010.12.004 +Her-Chang Chao,XOR-based progressive visual secret sharing using generalized random grids.,2017,49,Displays,,db/journals/displays/displays49.html#ChaoF17,https://doi.org/10.1016/j.displa.2017.05.004 +S. Camille Peres,Towards a systematic approach to real-time sonification design for surface electromyography.,2017,47,Displays,,db/journals/displays/displays47.html#PeresVNR17,https://doi.org/10.1016/j.displa.2016.05.006 +Zhen Qiu,MEMS based fiber optical microendoscopes.,2015,37,Displays,,db/journals/displays/displays37.html#QiuP15,https://doi.org/10.1016/j.displa.2014.12.001 +Yongduk Kim,The improvement of the driving waveform for high-speed addressing.,2008,29,Displays,3,db/journals/displays/displays29.html#KimP08,https://doi.org/10.1016/j.displa.2007.07.005 +Kamran Babar,A scalable architecture for geometric correction of multi-projector display systems.,2015,40,Displays,,db/journals/displays/displays40.html#BabarHKKHRJ15,https://doi.org/10.1016/j.displa.2015.05.009 +Zhen-Rong Zheng,Design of reflective projection lens with Zernike polynomials surfaces.,2008,29,Displays,4,db/journals/displays/displays29.html#ZhengSLG08,https://doi.org/10.1016/j.displa.2008.01.001 +Astrid J. A. Lubeck,Equally moved and not really sick from viewing 2D and 3D motion stimuli on a TV screen.,2016,41,Displays,,db/journals/displays/displays41.html#LubeckBS16,https://doi.org/10.1016/j.displa.2015.10.004 +Hüseyin Murat,Compact LED projector with tapered light pipes for moderate light output applications.,2006,27,Displays,3,db/journals/displays/displays27.html#MuratSC06,https://doi.org/10.1016/j.displa.2006.02.002 +Fatih Basçiftçi,An interactive and multi-functional refreshable Braille device for the visually impaired.,2016,41,Displays,,db/journals/displays/displays41.html#BasciftciE16,https://doi.org/10.1016/j.displa.2015.11.001 +Harold H. Greene,Luminance contrast and the visual span during visual target localization.,2013,34,Displays,1,db/journals/displays/displays34.html#GreeneBP13,https://doi.org/10.1016/j.displa.2012.11.005 +Hein A. M. Daanen,3D whole body scanners revisited.,2013,34,Displays,4,db/journals/displays/displays34.html#DaanenH13,https://doi.org/10.1016/j.displa.2013.08.011 +Makoto Yoshizawa,Assessing comfortable 3D visual environment based on human factors.,2012,33,Displays,2,db/journals/displays/displays33.html#Yoshizawa12,https://doi.org/10.1016/j.displa.2012.04.002 +Chen Liu,Patterning cathode for organic light-emitting diode by pulsed laser ablation.,2008,29,Displays,5,db/journals/displays/displays29.html#LiuZL08,https://doi.org/10.1016/j.displa.2008.02.001 +Junsheng Yu,Film thickness influence of dual iridium complex ultrathin layers on the performance of nondoped white organic light-emitting diodes.,2011,32,Displays,2,db/journals/displays/displays32.html#YuZWLJ11,https://doi.org/10.1016/j.displa.2010.12.005 +Chien-Chih Kao,Enhanced luminescence of GaN-based light-emitting diodes by selective wet etching of GaN/sapphire interface using direct heteroepitaxy laterally overgrowth technique.,2011,32,Displays,2,db/journals/displays/displays32.html#KaoSLC11,https://doi.org/10.1016/j.displa.2011.01.003 +Chien-Yu Lin,Augmented reality in educational activities for children with disabilities.,2016,42,Displays,,db/journals/displays/displays42.html#LinCWCLCLH16,https://doi.org/10.1016/j.displa.2015.02.004 +Hyundae Hah,Ultraviolet embossed alignment layers having patterned spacers for flexible liquid crystal display.,2008,29,Displays,5,db/journals/displays/displays29.html#HahSHLP08,https://doi.org/10.1016/j.displa.2008.04.001 +Peter J. Werkhoven,Navigating virtual mazes: The benefits of audiovisual landmarks.,2014,35,Displays,3,db/journals/displays/displays35.html#WerkhovenEP14,https://doi.org/10.1016/j.displa.2014.04.001 +Tzung-Her Chen,A random grid-based cyclic access structure VSS scheme for multiple secret images.,2013,34,Displays,5,db/journals/displays/displays34.html#ChenWL13,https://doi.org/10.1016/j.displa.2013.09.005 +P. J. Feenstra,A visual display enhancing comfort by counteracting airsickness.,2011,32,Displays,4,db/journals/displays/displays32.html#FeenstraBG11,https://doi.org/10.1016/j.displa.2010.11.002 +Chien-Hsiung Chen,The effects of panel arrangement on search performance.,2011,32,Displays,5,db/journals/displays/displays32.html#ChenC11,https://doi.org/10.1016/j.displa.2011.05.003 +Dewei Zhao,The effect of organic multi-layer periodic structure on carrier balance based on OLEDs.,2008,29,Displays,4,db/journals/displays/displays29.html#ZhaoSZXXS08,https://doi.org/10.1016/j.displa.2007.12.003 +Olivier Borg,Stimulus duration thresholds for reading numerical time information: Effects of visual size and number of time units.,2015,36,Displays,,db/journals/displays/displays36.html#BorgCCBB15,https://doi.org/10.1016/j.displa.2014.11.003 +Jelte E. Bos,A theory on visually induced motion sickness.,2008,29,Displays,2,db/journals/displays/displays29.html#BosBG08,https://doi.org/10.1016/j.displa.2007.09.002 +R. M. Taylor,Red light emission from hybrid organic/inorganic quantum dot AC light emitting displays.,2007,28,Displays,2,db/journals/displays/displays28.html#TaylorCS07,https://doi.org/10.1016/j.displa.2007.04.014 +Su-Hua Yang,Synthesis and luminescence of red MEH-PPV: P3OT polymer.,2008,29,Displays,3,db/journals/displays/displays29.html#YangWLL08,https://doi.org/10.1016/j.displa.2007.08.002 +Xi Tu,The synthesis and electrochemical properties of anodic electrochromic materials phenothiazine derivatives and their electrochromic devices.,2010,31,Displays,3,db/journals/displays/displays31.html#TuFJ10,https://doi.org/10.1016/j.displa.2010.05.001 +Yongduk Kim,The relationship between the barrier-rib height of AC-PDP and address discharge characteristics.,2006,27,Displays,2,db/journals/displays/displays27.html#KimP06,https://doi.org/10.1016/j.displa.2005.10.003 +Chang-Yu Huang,A low-power scan driver employing IZO TFTs including an AC-DC type output module.,2015,38,Displays,,db/journals/displays/displays38.html#HuangZZWYP15,https://doi.org/10.1016/j.displa.2015.04.002 +Yibo Qiu,Demonstration of color filters for OLED display based on extraordinary optical transmission through periodic hole array on metallic film.,2011,32,Displays,5,db/journals/displays/displays32.html#QiuZHLX11,https://doi.org/10.1016/j.displa.2011.05.011 +Chunxiao Chen,Using Bold-fMRI to detect cortical areas and visual fatigue related to stereoscopic vision.,2017,50,Displays,,db/journals/displays/displays50.html#ChenWLC17,https://doi.org/10.1016/j.displa.2017.09.003 +Tsuneto Iwasaki,The tolerance range of binocular disparity on a 3D display based on the physiological characteristics of ocular accommodation.,2009,30,Displays,1,db/journals/displays/displays30.html#IwasakiKT09,https://doi.org/10.1016/j.displa.2008.11.001 +Xiangguo Li,Implementation of a simulated display for hexagonal image processing.,2017,50,Displays,,db/journals/displays/displays50.html#Li17,https://doi.org/10.1016/j.displa.2017.09.005 +Jun Xia,Motion adaptive deblurring filter for LCD.,2009,30,Displays,1,db/journals/displays/displays30.html#XiaSY09,https://doi.org/10.1016/j.displa.2008.10.002 +Jin Wang,Wiener filter-based wavelet domain denoising.,2017,46,Displays,,db/journals/displays/displays46.html#WangWWJJ17,https://doi.org/10.1016/j.displa.2016.12.003 +Filip A. Sala,Design of false color palettes for grayscale reproduction.,2017,46,Displays,,db/journals/displays/displays46.html#Sala17,https://doi.org/10.1016/j.displa.2016.11.005 +Anatoly Lapchuk,Impact of aberrations on speckle suppression efficiency on moving a DOE inside the optical system.,2016,43,Displays,,db/journals/displays/displays43.html#LapchukYPPKS16,https://doi.org/10.1016/j.displa.2016.03.003 +Nan-I Wu,Development of a data hiding scheme based on combination theory for lowering the visual noise in binary images.,2017,49,Displays,,db/journals/displays/displays49.html#WuH17,https://doi.org/10.1016/j.displa.2017.07.009 +Akihiro Sugiura,Effect of strategic accommodation training by wide stereoscopic movie presentation on myopic young people of visual acuity and asthenopia.,2011,32,Displays,4,db/journals/displays/displays32.html#SugiuraMYT11,https://doi.org/10.1016/j.displa.2011.04.001 +Ji Ma,Advanced MEMS-based technologies and displays.,2015,37,Displays,,db/journals/displays/displays37.html#Ma15a,https://doi.org/10.1016/j.displa.2014.10.003 +Anni Sassi,Enhanced user performance in an image gallery application with a mobile autostereoscopic touch display.,2014,35,Displays,3,db/journals/displays/displays35.html#SassiPJSCH14,https://doi.org/10.1016/j.displa.2014.05.003 +C. Alejandro Párraga,Limitations of visual gamma corrections in LCD displays.,2014,35,Displays,5,db/journals/displays/displays35.html#ParragaRKW14,https://doi.org/10.1016/j.displa.2014.07.001 +Cheng-hua Tsai,MEMS optical switches and interconnects.,2015,37,Displays,,db/journals/displays/displays37.html#TsaiT15,https://doi.org/10.1016/j.displa.2014.11.007 +Thai Son Nguyen,A reversible data hiding scheme based on the Sudoku technique.,2015,39,Displays,,db/journals/displays/displays39.html#NguyenC15,https://doi.org/10.1016/j.displa.2015.10.003 +Zheng Xu,The phase separation of polymer blends doped with low concentration probed by transient electroluminescence.,2006,27,Displays,2,db/journals/displays/displays27.html#XuLCHTMX06,https://doi.org/10.1016/j.displa.2005.09.001 +Jianyong Ouyang,Secondary doping methods to significantly enhance the conductivity of PEDOT: PSS for its application as transparent electrode of optoelectronic devices.,2013,34,Displays,5,db/journals/displays/displays34.html#Ouyang13,https://doi.org/10.1016/j.displa.2013.08.007 +Ricardo Vergaz,Impedance analysis and equivalent circuit of an all-plastic viologen based electrochromic device.,2008,29,Displays,4,db/journals/displays/displays29.html#VergazBPPSP08,https://doi.org/10.1016/j.displa.2007.12.005 +Yumeng Shi,Quantum well organic light emitting diodes with ultra thin Rubrene layer.,2007,28,Displays,2,db/journals/displays/displays28.html#ShiDXCL07,https://doi.org/10.1016/j.displa.2007.02.001 +Fengwen Kang,Enhancement of red fluorescence and afterglow in CaWO4: Eu3+ by addition of MoO3.,2013,34,Displays,4,db/journals/displays/displays34.html#KangHWJML13,https://doi.org/10.1016/j.displa.2013.01.003 +Kyung Joon Kwon,Wide color gamut and high dynamic range displays using RGBW LCDs.,2015,40,Displays,,db/journals/displays/displays40.html#KwonKHKBK15,https://doi.org/10.1016/j.displa.2015.05.010 +Chihaya Adachi,"A special issue of Displays on ""9th International Conference on Electroluminescence and Organic Optoelectronics (ICEL2012)"".",2013,34,Displays,5,db/journals/displays/displays34.html#AdachiH13,https://doi.org/10.1016/j.displa.2013.11.001 +Lúcia Gomes,IZO deposition by RF and DC sputtering on paper and application on flexible electrochromic devices.,2013,34,Displays,4,db/journals/displays/displays34.html#GomesMBASCSHLC13,https://doi.org/10.1016/j.displa.2013.06.004 +Victor Yurlov,A study of image contrast restriction in displays using diffractive spatial light modulators.,2010,31,Displays,1,db/journals/displays/displays31.html#YurlovLYSLYA10,https://doi.org/10.1016/j.displa.2009.09.005 +Akemi Tamanai,Mid-infrared characterization of thiophene-based thin polymer films.,2013,34,Displays,5,db/journals/displays/displays34.html#TamanaiBP13,https://doi.org/10.1016/j.displa.2013.08.005 +Ching-Ming Hsu,Turn-on voltage reduction of organic light-emitting diode using a nickel-doped indium tin oxide anode prepared by single target sputtering.,2008,29,Displays,3,db/journals/displays/displays29.html#HsuWL08,https://doi.org/10.1016/j.displa.2007.08.009 +Marino Menozzi,Minimum amount of time required to retrieve peripheral numeric information in augmented-reality systems using a colour sequential DLP display.,2007,28,Displays,2,db/journals/displays/displays28.html#MenozziBBSK07,https://doi.org/10.1016/j.displa.2007.04.005 +Jin Wang,Taylor series and adaptive directional selection for real time demosaicking.,2016,45,Displays,,db/journals/displays/displays45.html#WangWWJ16,https://doi.org/10.1016/j.displa.2016.09.004 +Yu-Ting Lin,Minimum ambient illumination requirement for legible electronic-paper display.,2011,32,Displays,1,db/journals/displays/displays32.html#LinHJK11,https://doi.org/10.1016/j.displa.2010.09.002 +Chul-Woo Park,Development of a new automatic gamma control system for mobile LCD applications.,2008,29,Displays,4,db/journals/displays/displays29.html#ParkR08,https://doi.org/10.1016/j.displa.2007.12.002 +Ji Ma,Towards nanoscale molecular switch-based liquid crystal displays.,2013,34,Displays,4,db/journals/displays/displays34.html#MaX13,https://doi.org/10.1016/j.displa.2013.05.005 +Masaki Emoto,The viewing angle dependency in the presence of wide field image viewing and its relationship to the evaluation indices.,2006,27,Displays,2,db/journals/displays/displays27.html#EmotoMSN06,https://doi.org/10.1016/j.displa.2005.12.001 +No Kap Park,Evaluation of TFT-LCD defects based on human visual perception.,2009,30,Displays,1,db/journals/displays/displays30.html#ParkY09,https://doi.org/10.1016/j.displa.2008.03.006 +Celine Vanhaverbeke,Microfabrication of a spherically curved liquid crystal display enabling the integration in a smart contact lens.,2017,49,Displays,,db/journals/displays/displays49.html#VanhaverbekeVSC17,https://doi.org/10.1016/j.displa.2017.05.005 +Osama Halabi,Efficient vector-oriented graphic drawing method for laser-scanned display.,2009,30,Displays,3,db/journals/displays/displays30.html#HalabiC09,https://doi.org/10.1016/j.displa.2009.03.003 +Jong-Kwon Lee,Analysis of light leakage between the adjacent pixels in a color-filter stacked white OLED display.,2016,45,Displays,,db/journals/displays/displays45.html#LeeCK16,https://doi.org/10.1016/j.displa.2016.09.001 +Paul Vickers,Sonification of a network's self-organized criticality for real-time situational awareness.,2017,47,Displays,,db/journals/displays/displays47.html#VickersLF17,https://doi.org/10.1016/j.displa.2016.05.002 +Long Xu,Pairwise comparison and rank learning for image quality assessment.,2016,44,Displays,,db/journals/displays/displays44.html#XuLLZZY16,https://doi.org/10.1016/j.displa.2016.06.002 +P. B. Devaraja,Spectroscopic and photoluminescence properties of MgO: Cr3+ nanosheets for WLEDs.,2016,41,Displays,,db/journals/displays/displays41.html#DevarajaNSNPNAP16,https://doi.org/10.1016/j.displa.2015.10.006 +Chun-Cheng Hsu,Comparison of gender differences in young people's blog interface preferences and designs.,2012,33,Displays,3,db/journals/displays/displays33.html#Hsu12,https://doi.org/10.1016/j.displa.2012.04.001 +Yun-Ying Yeh,Color combination and exposure time on legibility and EEG response of icon presented on visual display terminal.,2013,34,Displays,1,db/journals/displays/displays34.html#YehLK13,https://doi.org/10.1016/j.displa.2012.11.007 +Nana Li,Effect of alkali metal ions co-doping on the structure and luminescent properties of phosphor Zn3(BO3)2: Eu3+.,2013,34,Displays,4,db/journals/displays/displays34.html#LiHMWCW13,https://doi.org/10.1016/j.displa.2013.06.003 +Chi-Yuan Hu,The effects of screen size on rotating 3D contents using compound gestures on a mobile device.,2016,41,Displays,,db/journals/displays/displays41.html#HuLC16,https://doi.org/10.1016/j.displa.2015.11.002 +Jonathan Ling,The influence of line spacing and text alignment on visual search of web pages.,2007,28,Displays,2,db/journals/displays/displays28.html#LingS07,https://doi.org/10.1016/j.displa.2007.04.003 +Sangmoon Park,Single-phase Ce3+-Mn2+-Tb3+ tri-codoped barium-yttrium-silicate phosphors.,2017,48,Displays,,db/journals/displays/displays48.html#ParkKK17,https://doi.org/10.1016/j.displa.2017.03.001 +Ying-Yin Huang,Effects of discomfort glare on performance in attending peripheral visual information in displays.,2014,35,Displays,5,db/journals/displays/displays35.html#HuangM14,https://doi.org/10.1016/j.displa.2014.08.001 +Yanju Liu,Single cell magnetorheological fluid based tactile display.,2005,26,Displays,1,db/journals/displays/displays26.html#LiuDTNZ05,https://doi.org/10.1016/j.displa.2004.10.002 +Sangwook Lee,Shape change of Ag electrode with shrinkage difference between electrode and dielectric in PDP.,2008,29,Displays,4,db/journals/displays/displays29.html#LeePHK08,https://doi.org/10.1016/j.displa.2007.10.004 +Hyuk-Jae Lee,Next generation TV systems and technologies.,2015,40,Displays,,db/journals/displays/displays40.html#Lee15,https://doi.org/10.1016/j.displa.2015.08.005 +Di Zhang,3D visual comfort assessment by measuring the vertical disparity tolerance.,2017,50,Displays,,db/journals/displays/displays50.html#ZhangNT17,https://doi.org/10.1016/j.displa.2017.08.002 +Hiroki Ishizuka,MEMS-based tactile displays.,2015,37,Displays,,db/journals/displays/displays37.html#IshizukaM15,https://doi.org/10.1016/j.displa.2014.10.007 +Yensil Park,The effects of device structure on the performances of distyrylbiphenyl compounds based organic light emitting diodes.,2012,33,Displays,2,db/journals/displays/displays33.html#ParkCKJP12,https://doi.org/10.1016/j.displa.2012.01.001 +Jinyan Pan,Improved field emission characteristics of screen-printed CNT-FED cathode by interfusing Fe/Ni nano-grains.,2009,30,Displays,3,db/journals/displays/displays30.html#PanCGZ09,https://doi.org/10.1016/j.displa.2009.02.002 +Chin-Feng Lee,An adaptive high-fidelity steganographic scheme using edge detection and hybrid hamming codes.,2018,53,Displays,,db/journals/displays/displays53.html#LeeCXMS18,https://doi.org/10.1016/j.displa.2018.06.001 +Wenhai Zou,Colorimetric color reproduction framework for screen relaxation of projection display.,2011,32,Displays,5,db/journals/displays/displays32.html#ZouX11,https://doi.org/10.1016/j.displa.2011.06.001 +Martijn L. van Emmerik,Internal and external fields of view affect cybersickness.,2011,32,Displays,4,db/journals/displays/displays32.html#EmmerikVB11,https://doi.org/10.1016/j.displa.2010.11.003 +Sang-Hyun Kim,Ergonomic evaluation of a field-sequential colour projection system.,2008,29,Displays,2,db/journals/displays/displays29.html#KimSKU08,https://doi.org/10.1016/j.displa.2007.09.008 +Daeil Kim,Influence of CuSn thickness on the work function and optoelectrical properties of ZnO/CuSn/ZnO multilayer films.,2010,31,Displays,3,db/journals/displays/displays31.html#Kim10,https://doi.org/10.1016/j.displa.2010.05.002 +Roger J. Mortimer,An in situ colorimetric measurement study of electrochromism in the di-n-heptyl viologen system.,2008,29,Displays,5,db/journals/displays/displays29.html#MortimerR08,https://doi.org/10.1016/j.displa.2008.02.002 +Feihong Xue,Long afterglow properties of the blue emission from Pr3+-activated Sr5Ta4O15 phosphor.,2018,52,Displays,,db/journals/displays/displays52.html#XueHLF18,https://doi.org/10.1016/j.displa.2018.03.001 +Dong-Kyun Shin,Investigation of starburst phenomenon using ray tracing for touch screen panels.,2014,35,Displays,3,db/journals/displays/displays35.html#ShinP14,https://doi.org/10.1016/j.displa.2014.05.004 +Yanjun Liu 0002,Reversible data hiding for JPEG images employing all quantized non-zero AC coefficients.,2018,51,Displays,,db/journals/displays/displays51.html#LiuC18,https://doi.org/10.1016/j.displa.2018.01.004 +Avner Shahal,Brightness and contrast do not affect visually induced motion sickness in a passively-flown fixed-base flight simulator.,2016,44,Displays,,db/journals/displays/displays44.html#ShahalHH16,https://doi.org/10.1016/j.displa.2016.05.007 +Denghui Xu,A novel red organic light-emitting diode with ultrathin DCJTB and Rubrene layers.,2011,32,Displays,2,db/journals/displays/displays32.html#XuLJZD11,https://doi.org/10.1016/j.displa.2011.01.002 +Masaki Emoto,Viewing angle dependency of visually-induced motion sickness in viewing wide-field images by subjective and autonomic nervous indices.,2008,29,Displays,2,db/journals/displays/displays29.html#EmotoSN08,https://doi.org/10.1016/j.displa.2007.09.010 +Woon-Seop Choi,Effect of 2+2 dynamic drive scheme on electro-optical characteristics in cholesteric liquid crystal displays.,2006,27,Displays,1,db/journals/displays/displays27.html#ChoiS06,https://doi.org/10.1016/j.displa.2005.07.002 +Jing-Song Huang,A study on the cognitive of complexity and difficulty of chinese characters when reading and recognizing.,2007,28,Displays,1,db/journals/displays/displays28.html#HuangM07,https://doi.org/10.1016/j.displa.2006.11.002 +D. C. Donderi,Compressed file length predicts search time and errors on visual displays.,2005,26,Displays,2,db/journals/displays/displays26.html#DonderiM05,https://doi.org/10.1016/j.displa.2005.02.002 +Eun Joung Cho,Effects of stereoscopic movies: The positions of stereoscopic objects and the viewing conditions.,2014,35,Displays,2,db/journals/displays/displays35.html#ChoLCC14,https://doi.org/10.1016/j.displa.2014.01.004 +Geun-Hyung Kim,Analysis of thermo-physical and optical properties of a diffuser using PET/PC/PBT copolymer in LCD backlight units.,2005,26,Displays,1,db/journals/displays/displays26.html#KimKKS05,https://doi.org/10.1016/j.displa.2004.11.001 +Thanh Son Bui,High optical density and low dielectric constant black matrix containing graphene oxide and carbon black on color filters.,2013,34,Displays,3,db/journals/displays/displays34.html#BuiKJLNB13,https://doi.org/10.1016/j.displa.2013.03.003 +Matthew J. Pitts,Visual-haptic feedback interaction in automotive touchscreens.,2012,33,Displays,1,db/journals/displays/displays33.html#PittsBSWAW12,https://doi.org/10.1016/j.displa.2011.09.002 +Carmen Llinares,Human factors in computer simulations of urban environment. Differences between architects and non-architects' assessments.,2014,35,Displays,3,db/journals/displays/displays35.html#LlinaresI14,https://doi.org/10.1016/j.displa.2014.05.002 +Kuen-Meau Chen,Development and comparison of a full-scale car display and communication system by applying Augmented Reality.,2008,29,Displays,1,db/journals/displays/displays29.html#ChenCS08,https://doi.org/10.1016/j.displa.2007.07.002 +Zoe Falomir,A model for qualitative colour comparison using interval distances.,2013,34,Displays,4,db/journals/displays/displays34.html#FalomirCAS13,https://doi.org/10.1016/j.displa.2013.07.004 +Lawrence Bogaert,Stereoscopic projector for polarized viewing with extended color gamut.,2010,31,Displays,2,db/journals/displays/displays31.html#BogaertMVST10,https://doi.org/10.1016/j.displa.2009.12.002 +Xue Chen,Efficient co-doped white organic light-emitting diodes with high color stability and color rendering index.,2011,32,Displays,5,db/journals/displays/displays32.html#ChenZWXXZWLJZ11,https://doi.org/10.1016/j.displa.2011.03.002 +Davide Gadia,Assessing stereo blindness and stereo acuity on digital displays.,2014,35,Displays,4,db/journals/displays/displays35.html#GadiaGBAR14,https://doi.org/10.1016/j.displa.2014.05.010 +Chanho Lee,An efficient memory control method for video and image processing in digital TV.,2015,40,Displays,,db/journals/displays/displays40.html#Lee15a,https://doi.org/10.1016/j.displa.2015.05.002 +Min Zhou,Simplified dynamical model for optical response of electrofluidic displays.,2017,49,Displays,,db/journals/displays/displays49.html#ZhouZTGHZ17,https://doi.org/10.1016/j.displa.2017.05.003 +Feng-Yi Tseng,Design and evaluation of military geographical intelligence system: An ergonomics case study.,2018,51,Displays,,db/journals/displays/displays51.html#TsengCYF18,https://doi.org/10.1016/j.displa.2017.11.001 +Silvia Cruz,Analysis of the bonding process and materials optimization for mitigating the Yellow Border defect on optically bonded automotive display panels.,2017,48,Displays,,db/journals/displays/displays48.html#CruzSVM17,https://doi.org/10.1016/j.displa.2017.02.003 +Flávio P. Ferreira,Evaluating sub-pixel functional defects of a display using an arbitrary resolution camera.,2017,49,Displays,,db/journals/displays/displays49.html#FerreiraFFBBN17,https://doi.org/10.1016/j.displa.2017.06.001 +Yen-Yu Kang,Usability evaluation of E-books.,2009,30,Displays,2,db/journals/displays/displays30.html#KangWL09,https://doi.org/10.1016/j.displa.2008.12.002 +Pen-Cheng Wang,Transparent electrodes based on conducting polymers for display applications.,2013,34,Displays,4,db/journals/displays/displays34.html#WangLMLWLC13,https://doi.org/10.1016/j.displa.2013.05.003 +Ken W. L. Chan,Spatial S-R compatibility of visual and auditory signals: implications for human-machine interface design.,2005,26,Displays,3,db/journals/displays/displays26.html#ChanC05,https://doi.org/10.1016/j.displa.2005.02.006 +Thomas Rousset,Misperception of egocentric distances in virtual environments: More a question of training than a technological issue?,2018,52,Displays,,db/journals/displays/displays52.html#RoussetBGMV18,https://doi.org/10.1016/j.displa.2018.02.004 +B. K. Joung,The effects of D2 addition on the discharge characteristics of He-Ne-Xe gas mixture in an AC-PDP.,2005,26,Displays,1,db/journals/displays/displays26.html#JoungKKH05,https://doi.org/10.1016/j.displa.2004.10.001 +Fong-Gong Wu,Direct-touch vs. mouse input for navigation modes of the web map.,2011,32,Displays,5,db/journals/displays/displays32.html#WuLY11,https://doi.org/10.1016/j.displa.2011.05.004 +Junlan Bai,A high payload steganographic algorithm based on edge detection.,2017,46,Displays,,db/journals/displays/displays46.html#BaiCNZL17,https://doi.org/10.1016/j.displa.2016.12.004 +Premjit K. Sanjram,Attention and intended action in multitasking: An understanding of cognitive workload.,2013,34,Displays,4,db/journals/displays/displays34.html#Sanjram13,https://doi.org/10.1016/j.displa.2013.09.001 +Jong Hyun Choi,Giant-grain silicon (GGS) and its application to stable thin-film transistor.,2005,26,Displays,3,db/journals/displays/displays26.html#ChoiCKJ05,https://doi.org/10.1016/j.displa.2005.04.001 +Jianzhuo Zhu,Improved electrophosphorescence efficiency for organic light-emitting diodes using the cohost with stepwise blending profile.,2010,31,Displays,3,db/journals/displays/displays31.html#ZhuLCYZYLWW10,https://doi.org/10.1016/j.displa.2010.03.002 +Xiufang Li,Multilayer cathode for organic light-emitting devices.,2008,29,Displays,4,db/journals/displays/displays29.html#LiDCSX08,https://doi.org/10.1016/j.displa.2007.09.015 +J. H. Kim,Bipolar drive waveform for long-gap high-Xe plasma display panels.,2010,31,Displays,2,db/journals/displays/displays31.html#KimJHLKK10,https://doi.org/10.1016/j.displa.2009.12.001 +Ji Ma,"Editorial for Special Issue on ""Advanced MEMS-based Technologies and Displays"".",2015,37,Displays,,db/journals/displays/displays37.html#Ma15,https://doi.org/10.1016/j.displa.2014.11.005 +Minkoo Kim,Time-dependent color simulation of active-matrix liquid crystal display adopting the field sequential driving method.,2018,51,Displays,,db/journals/displays/displays51.html#KimLKYL18,https://doi.org/10.1016/j.displa.2017.10.001 +Jae Kwang Lim,Overlapped sustain waveform for improving recovery characteristics of temporal bright image sticking in ac-plasma display panels.,2012,33,Displays,3,db/journals/displays/displays33.html#LimTC12,https://doi.org/10.1016/j.displa.2012.03.005 +Kyujoong Lee,Simplified algorithms for rate-distortion optimization in high efficiency video coding.,2015,40,Displays,,db/journals/displays/displays40.html#LeeKRL15,https://doi.org/10.1016/j.displa.2015.06.001 +Y. Yao,Improvement in performance of GaN-based light-emitting diodes with indium tin oxide based transparent ohmic contacts.,2007,28,Displays,3,db/journals/displays/displays28.html#YaoJDSH07,https://doi.org/10.1016/j.displa.2007.04.012 +Linas Svilainis,LED PWM dimming linearity investigation.,2008,29,Displays,3,db/journals/displays/displays29.html#Svilainis08,https://doi.org/10.1016/j.displa.2007.08.006 +Xiaoming Wu,Utilization of a composite hole transporting layer and novel homogeneous double emitting layers for performance improvement and low efficiency roll-off in organic light-emitting diodes.,2015,38,Displays,,db/journals/displays/displays38.html#WuZBHXYY15,https://doi.org/10.1016/j.displa.2015.03.004 +Mu-Chien Chou,Displayability: An assessment of differentiation design for the findability of bottle packaging.,2012,33,Displays,3,db/journals/displays/displays33.html#ChouW12,https://doi.org/10.1016/j.displa.2012.06.003 +Dong-Wook Kim,Qualitative analysis of individual and composite content factors of stereoscopic 3D video causing visual discomfort.,2013,34,Displays,3,db/journals/displays/displays34.html#KimYS13,https://doi.org/10.1016/j.displa.2013.07.002 +Yen-Hui Lin,Visual fatigue during VDT work: Effects of time-based and environment-based conditions.,2008,29,Displays,5,db/journals/displays/displays29.html#LinCLL08,https://doi.org/10.1016/j.displa.2008.04.003 +Barbara Froner,A comparative study of fine depth perception on two-view 3D displays.,2008,29,Displays,5,db/journals/displays/displays29.html#FronerHL08,https://doi.org/10.1016/j.displa.2008.03.001 +Marc T. M. Lambooij,Reading performance as screening tool for visual complaints from stereoscopic content.,2012,33,Displays,2,db/journals/displays/displays33.html#LambooijFIH12,https://doi.org/10.1016/j.displa.2012.03.002 +Xiao-Ning Zhang,Adaptive address energy recovery circuit for reducing address power in color PDPs.,2009,30,Displays,3,db/journals/displays/displays30.html#ZhangLLD09,https://doi.org/10.1016/j.displa.2009.03.005 +Iana Iatsun,Investigation and modeling of visual fatigue caused by S3D content using eye-tracking.,2015,39,Displays,,db/journals/displays/displays39.html#IatsunLF15,https://doi.org/10.1016/j.displa.2015.07.001 +Hsien-Chu Wu,Reversible image steganographic scheme via predictive coding.,2010,31,Displays,1,db/journals/displays/displays31.html#WuWTW10,https://doi.org/10.1016/j.displa.2009.10.002 +Chan-seob Park,Performance analysis of inter-layer prediction in scalable extension of HEVC (SHVC) for adaptive media service.,2016,44,Displays,,db/journals/displays/displays44.html#ParkK16,https://doi.org/10.1016/j.displa.2016.06.003 +Cheolkon Jung,Visual comfort enhancement in stereoscopic 3D images using saliency-adaptive nonlinear disparity mapping.,2015,40,Displays,,db/journals/displays/displays40.html#JungCLK15,https://doi.org/10.1016/j.displa.2015.05.006 +Jing Li 0026,Visual discomfort of stereoscopic 3D videos: Influence of 3D motion.,2014,35,Displays,1,db/journals/displays/displays35.html#LiBC14,https://doi.org/10.1016/j.displa.2014.01.002 +Chiuhsiang Joe Lin,Distance estimation with mixed real and virtual targets in stereoscopic displays.,2015,36,Displays,,db/journals/displays/displays36.html#LinWCC15,https://doi.org/10.1016/j.displa.2014.11.006 +Arthur G. Money,Analysing user physiological responses for affective video summarisation.,2009,30,Displays,2,db/journals/displays/displays30.html#MoneyA09,https://doi.org/10.1016/j.displa.2008.12.003 +Gerd Bruder,Exploiting perceptual limitations and illusions to support walking through virtual environments in confined physical spaces.,2013,34,Displays,2,db/journals/displays/displays34.html#BruderSBWFL13,https://doi.org/10.1016/j.displa.2012.10.007 +Simon Grbec,The influence of inertial loading on color gamut properties of a TFT LCD display.,2008,29,Displays,1,db/journals/displays/displays29.html#GrbecTD08,https://doi.org/10.1016/j.displa.2007.06.008 +Fabio Solari,Natural perception in dynamic stereoscopic augmented reality environments.,2013,34,Displays,2,db/journals/displays/displays34.html#SolariCGS13,https://doi.org/10.1016/j.displa.2012.08.001 +Ales Jaklic,User interface for a better eye contact in videoconferencing.,2017,46,Displays,,db/journals/displays/displays46.html#JaklicSS17,https://doi.org/10.1016/j.displa.2016.12.002 +Jelte E. Bos,Visual image safety.,2011,32,Displays,4,db/journals/displays/displays32.html#Bos11,https://doi.org/10.1016/j.displa.2011.07.001 +Graham K. Edgar,The effect of viewing a laser-scanned display on colour perception and the visual accommodation response.,2008,29,Displays,2,db/journals/displays/displays29.html#EdgarEW08,https://doi.org/10.1016/j.displa.2007.09.001 +Chuan Qin,Perceptual image hashing with selective sampling for salient structure features.,2016,45,Displays,,db/journals/displays/displays45.html#QinCDZ16,https://doi.org/10.1016/j.displa.2016.09.003 +Yih-Shing Lee,Electrical characteristics of amorphous In-Ga-Zn-O thin-film transistors prepared by radio frequency magnetron sputtering with varying oxygen flows.,2014,35,Displays,3,db/journals/displays/displays35.html#LeeYLLY14,https://doi.org/10.1016/j.displa.2014.05.005 +Yong Deok Ahn,Backlight dimming based on saliency map acquired by visual attention analysis.,2017,50,Displays,,db/journals/displays/displays50.html#AhnK17,https://doi.org/10.1016/j.displa.2017.09.008 +E. H. Kim,LC dependent electro-optical properties of holographic polymer dispersed liquid crystals.,2008,29,Displays,5,db/journals/displays/displays29.html#KimWK08,https://doi.org/10.1016/j.displa.2008.04.002 +Ken W. L. Chan,Spatial stimulus-response compatibility for hand and foot controls with vertical plane visual signals.,2011,32,Displays,5,db/journals/displays/displays32.html#ChanC11,https://doi.org/10.1016/j.displa.2011.02.006 +Leanne S. Bohannon,Eye contact and video-mediated communication: A review.,2013,34,Displays,2,db/journals/displays/displays34.html#BohannonHPR13,https://doi.org/10.1016/j.displa.2012.10.009 +Tadao Matsunaga,Tactile display using shape memory alloy micro-coil actuator and magnetic latch mechanism.,2013,34,Displays,2,db/journals/displays/displays34.html#MatsunagaTEH13,https://doi.org/10.1016/j.displa.2013.03.001 +Guangxiang Yang,Generating Chinese characters based on stroke splitting and feature extraction.,2013,34,Displays,4,db/journals/displays/displays34.html#YangLS13,https://doi.org/10.1016/j.displa.2013.08.002 +Chang-Jing Yang,Constrained non-negative matrix factorization for multiline addressing schemes of quick-response liquid powder display.,2013,34,Displays,2,db/journals/displays/displays34.html#YangC13,https://doi.org/10.1016/j.displa.2013.01.004 +Daoyun Zhu,Synthesis of Sm3+ and Dy3+ doped LaBWO6 for evaluation as potential materials in luminescent display applications.,2014,35,Displays,5,db/journals/displays/displays35.html#ZhuM14,https://doi.org/10.1016/j.displa.2014.09.005 +Hsinfu Huang,Factors influencing the usability of icons in the LCD touchscreen.,2008,29,Displays,4,db/journals/displays/displays29.html#HuangL08,https://doi.org/10.1016/j.displa.2007.10.003 +Yu Zhao,Preparation of TiO2 coated silicate micro-spheres for enhancing the light diffusion property of polycarbonate composites.,2014,35,Displays,4,db/journals/displays/displays35.html#ZhaoDBTSLS14,https://doi.org/10.1016/j.displa.2014.06.001 +Nataliya Shkolnikova,Influence of the rigidity of the steroid core in the structure of chiral dopants on the temperature dependence of cholesteric short pitch.,2015,36,Displays,,db/journals/displays/displays36.html#ShkolnikovaYSVKPR15,https://doi.org/10.1016/j.displa.2014.10.008 +Jae Joong Yun,Method of controlling external electrode fluorescent lamps for local dimming of liquid crystal displays.,2011,32,Displays,3,db/journals/displays/displays32.html#YunSHK11,https://doi.org/10.1016/j.displa.2011.01.005 +Kai-Hsiang Tsao,Visual multiple-secret sharing for flexible general access structure by random grids.,2015,39,Displays,,db/journals/displays/displays39.html#TsaoSLLC15,https://doi.org/10.1016/j.displa.2015.09.001 +Rafal Michalski,The influence of color grouping on users' visual search behavior and preferences.,2014,35,Displays,4,db/journals/displays/displays35.html#Michalski14,https://doi.org/10.1016/j.displa.2014.05.007 +Eun Joung Cho,Effects of 3D displays: A comparison between shuttered and polarized displays.,2013,34,Displays,5,db/journals/displays/displays34.html#ChoL13,https://doi.org/10.1016/j.displa.2013.09.003 +M. S. Chung,Effect of single crystalline MgO powder treatment of phosphor surface on discharge property of high-Xe AC plasma display panels.,2007,28,Displays,2,db/journals/displays/displays28.html#ChungJLKKYKA07,https://doi.org/10.1016/j.displa.2007.04.007 +Cheng-Yao Lo,Soft materials and flexible structures for display technologies.,2016,45,Displays,,db/journals/displays/displays45.html#Lo16,https://doi.org/10.1016/j.displa.2016.11.004 +Stefano Passini,Icon-function relationship in toolbar icons.,2008,29,Displays,5,db/journals/displays/displays29.html#PassiniSB08,https://doi.org/10.1016/j.displa.2008.07.001 +Han-Kai Chen,A perceptual evaluation of grating frequencies and velocities in the analysis of dynamic images.,2014,35,Displays,1,db/journals/displays/displays35.html#ChenG14,https://doi.org/10.1016/j.displa.2013.12.001 +Hao Wu,Influence of fluoropolymer surface wettability on electrowetting display performance.,2018,53,Displays,,db/journals/displays/displays53.html#WuHLHSZ18,https://doi.org/10.1016/j.displa.2018.02.002 +Saleh Saeed,A unified panoramic stitching and multi-projector rendering scheme for immersive panoramic displays.,2015,40,Displays,,db/journals/displays/displays40.html#SaeedHRKCPC15,https://doi.org/10.1016/j.displa.2015.06.002 +Saad Hameed Abid,Anaglyph video smell presentation using micro-porous piezoelectric film olfactory display.,2015,39,Displays,,db/journals/displays/displays39.html#AbidLLW15,https://doi.org/10.1016/j.displa.2015.08.004 +Kun Sun,A LTPS-TFT pixel circuit for active matrix organic light emitting diode based on improved current mirror.,2016,44,Displays,,db/journals/displays/displays44.html#SunCGTL16,https://doi.org/10.1016/j.displa.2016.05.005 +Paul Vickers,Special Issue on Sonification.,2017,47,Displays,,db/journals/displays/displays47.html#VickersWS17,https://doi.org/10.1016/j.displa.2016.12.001 +Zhaoyue Lü,The effect of various electrodes on the properties of electroluminescent devices with potassium chloride inside tris (8-hydroxyquinoline) aluminum.,2011,32,Displays,3,db/journals/displays/displays32.html#LuDCYXXW11,https://doi.org/10.1016/j.displa.2011.01.004 +Keith Nesbitt,Correlating reaction time and nausea measures with traditional measures of cybersickness.,2017,48,Displays,,db/journals/displays/displays48.html#NesbittDBN17,https://doi.org/10.1016/j.displa.2017.01.002 +Lawrence Bogaert,Comparison of the light output of LCOS projection architectures using LEDs.,2008,29,Displays,1,db/journals/displays/displays29.html#BogaertMGMST08,https://doi.org/10.1016/j.displa.2007.06.006 +Yongduk Kim,A new driving waveform to improve the minimum data voltage.,2008,29,Displays,4,db/journals/displays/displays29.html#KimP08a,https://doi.org/10.1016/j.displa.2007.11.002 +H. W. Lee,Rating analysis and comparisons of resonant circuit based sustain drivers for PDPs.,2015,38,Displays,,db/journals/displays/displays38.html#LeeKK15,https://doi.org/10.1016/j.displa.2015.04.001 +Farrokh Janabi-Sharifi,Design and implementation of a graphic-haptic display system.,2007,28,Displays,3,db/journals/displays/displays28.html#Janabi-SharifiH07,https://doi.org/10.1016/j.displa.2007.04.004 +K. Liang,Color measurement for RGB white LEDs in solid-state lighting using a BDJ photodetector.,2009,30,Displays,3,db/journals/displays/displays30.html#LiangLRLWYH09,https://doi.org/10.1016/j.displa.2009.03.002 +Xiaobo Zhang,Obtaining high-efficiency red electrophosphorescent OLEDs by changing the thickness of light-emitting layer.,2007,28,Displays,3,db/journals/displays/displays28.html#ZhangWLZJZ07,https://doi.org/10.1016/j.displa.2007.06.001 +Jason Geng,A volumetric 3D display based on a DLP projection engine.,2013,34,Displays,1,db/journals/displays/displays34.html#Geng13,https://doi.org/10.1016/j.displa.2012.11.001 +Feng Shao,Visual discomfort relaxation for stereoscopic 3D images by adjusting zero-disparity plane for projection.,2015,39,Displays,,db/journals/displays/displays39.html#ShaoLJJYP15,https://doi.org/10.1016/j.displa.2015.10.001 +Jia Zhang,Investigation on luminescence of Na3Ca6(PO4)5: Eu2+ phosphor for LEDs.,2017,49,Displays,,db/journals/displays/displays49.html#ZhangCG17,https://doi.org/10.1016/j.displa.2017.05.002 +Yi-Jung Liu,Improved current-spreading performance of an InGaN-based light-emitting diode with a clear p-GaN/n-GaN barrier junction.,2011,32,Displays,5,db/journals/displays/displays32.html#LiuGCCLCTHCHTL11,https://doi.org/10.1016/j.displa.2011.04.004 +Chunxiao Chen,Assessment visual fatigue of watching 3DTV using EEG power spectral parameters.,2014,35,Displays,5,db/journals/displays/displays35.html#ChenWLWWQG14,https://doi.org/10.1016/j.displa.2014.10.001 +Paulo Victor R. de Carvalho,Human factors approach for evaluation and redesign of human-system interfaces of a nuclear power plant simulator.,2008,29,Displays,3,db/journals/displays/displays29.html#CarvalhoSGBG08,https://doi.org/10.1016/j.displa.2007.08.010 +Lijun Deng,Efficient bluish-green phosphorescent iridium complex for both solution-processed and vacuum-deposited organic light-emitting diodes.,2013,34,Displays,5,db/journals/displays/displays34.html#DengLL13,https://doi.org/10.1016/j.displa.2013.05.001 +Tohru Kiryu,Time-frequency structure of image motion vectors around cybersickness intervals determined with biosignals.,2008,29,Displays,2,db/journals/displays/displays29.html#KiryuNBK08,https://doi.org/10.1016/j.displa.2007.10.005 +Rain Chen,Examining design features of copyrights using hot area and track.,2017,49,Displays,,db/journals/displays/displays49.html#ChenO17,https://doi.org/10.1016/j.displa.2017.07.005 +Qianmin Ma,Facile synthesis of lanthanide vanadates and their luminescent properties.,2015,39,Displays,,db/journals/displays/displays39.html#MaW15,https://doi.org/10.1016/j.displa.2015.05.004 +Sung-Chul Shin,Removal of hot spot speckle on laser projection screen using both the running screen and the rotating diffuser.,2006,27,Displays,3,db/journals/displays/displays27.html#ShinYLPPKL06,https://doi.org/10.1016/j.displa.2005.12.002 +Pen-Cheng Wang,Innovative progress in materials for display technologies.,2013,34,Displays,4,db/journals/displays/displays34.html#Wang13,https://doi.org/10.1016/j.displa.2013.10.001 +Manuel Rodríguez-Vallejo,Visual acuity and contrast sensitivity screening with a new iPad application.,2016,44,Displays,,db/journals/displays/displays44.html#Rodriguez-Vallejo16,https://doi.org/10.1016/j.displa.2016.06.001 +Ivelina V. Piryankova,Egocentric distance perception in large screen immersive displays.,2013,34,Displays,2,db/journals/displays/displays34.html#PiryankovaRKBM13,https://doi.org/10.1016/j.displa.2013.01.001 +Hayato Kumagai,Fabrication of a thin plasmonic color sheet embedded with Al subwavelength gratings in parylene.,2016,45,Displays,,db/journals/displays/displays45.html#KumagaiHIST16,https://doi.org/10.1016/j.displa.2016.05.004 +Byung-Gyu Kim,A novel hybrid 3D video service algorithm based on scalable video coding (SVC) technology.,2015,40,Displays,,db/journals/displays/displays40.html#KimHPJ15,https://doi.org/10.1016/j.displa.2015.05.005 +Aroua Langar,Investigation of spectroscopic properties of Sm-Eu codoped phosphate glasses.,2017,48,Displays,,db/journals/displays/displays48.html#LangarBEGF17,https://doi.org/10.1016/j.displa.2017.03.004 +G. H. Huh,Floating single sustain drive method for AC plasma display panel.,2009,30,Displays,1,db/journals/displays/displays30.html#HuhLJKK09,https://doi.org/10.1016/j.displa.2008.10.004 +Zhaoyue Lü,Effects of emissive layer architecture on recombination zone and Förster resonance energy transfer in organic light-emitting diodes.,2014,35,Displays,5,db/journals/displays/displays35.html#LuHXX14,https://doi.org/10.1016/j.displa.2014.08.005 +Enguo Chen,Modified Köhler illumination for LED-based projection display.,2014,35,Displays,2,db/journals/displays/displays35.html#ChenG14a,https://doi.org/10.1016/j.displa.2014.03.001 +Ling-Guo Zhao,Alternate lightening display method for surface-conduction electron-emission display.,2012,33,Displays,2,db/journals/displays/displays33.html#ZhaoWXZ12,https://doi.org/10.1016/j.displa.2012.02.002 +Hock Chuan Chan,Perceived image similarity and quantization resolution.,2008,29,Displays,5,db/journals/displays/displays29.html#Chan08a,https://doi.org/10.1016/j.displa.2008.03.002 +Nidhi Gupta,Efficiency enhancement in blue organic light emitting diodes with a composite hole transport layer based on poly(ethylenedioxythiophene): poly(styrenesulfonate) doped with TiO2 nanoparticles.,2015,39,Displays,,db/journals/displays/displays39.html#GuptaGMS15,https://doi.org/10.1016/j.displa.2015.09.004 +Dong-Kyun Shin,Design of moiré-free metal meshes using ray tracing for touch screen panels.,2015,38,Displays,,db/journals/displays/displays38.html#ShinP15,https://doi.org/10.1016/j.displa.2015.01.004 +Po-Chun Chang,Reading performance and visual fatigue when using electronic paper displays in long-duration reading tasks under various lighting conditions.,2013,34,Displays,3,db/journals/displays/displays34.html#ChangCS13,https://doi.org/10.1016/j.displa.2013.06.001 +Zhouye Gu,Low complexity Bi-Partition mode selection for 3D video depth intra coding.,2015,40,Displays,,db/journals/displays/displays40.html#GuZLZ15,https://doi.org/10.1016/j.displa.2015.05.007 +Nathalie Bonnardel,The impact of colour on Website appeal and users' cognitive processes.,2011,32,Displays,2,db/journals/displays/displays32.html#BonnardelPB11,https://doi.org/10.1016/j.displa.2010.12.002 +H. S. Koo,Fabrication and chromatic characteristics of the greenish LCD colour-filter layer with nano-particle ink using inkjet printing technique.,2006,27,Displays,3,db/journals/displays/displays27.html#KooCPCWCK06,https://doi.org/10.1016/j.displa.2006.04.001 +Atsuhiko Iijima,Vergence eye movements signifying 3D depth perception from 2D movies.,2012,33,Displays,2,db/journals/displays/displays33.html#IijimaKKBH12,https://doi.org/10.1016/j.displa.2011.11.001 +Ishwar Prasad Sahu,Dysprosium doped di-strontium magnesium di-silicate white light emitting phosphor by solid state reaction method.,2014,35,Displays,5,db/journals/displays/displays35.html#SahuBB14,https://doi.org/10.1016/j.displa.2014.09.006 +C. H. Cheung,Angular dependence of the emission from low Q-factor organic microcavity light emitting diodes.,2008,29,Displays,4,db/journals/displays/displays29.html#CheungNDLKCTCCC08,https://doi.org/10.1016/j.displa.2007.10.007 +Mark S. Dennison,Use of physiological signals to predict cybersickness.,2016,44,Displays,,db/journals/displays/displays44.html#DennisonWD16,https://doi.org/10.1016/j.displa.2016.07.002 +Wan-Rone Liou,An improved alignment layer grown by oblique evaporation for liquid crystal devices.,2006,27,Displays,2,db/journals/displays/displays27.html#LiouCHHCHC06,https://doi.org/10.1016/j.displa.2005.11.001 +Olga Kochurova,Is the 3** reading rule appropriate for computer users?,2015,38,Displays,,db/journals/displays/displays38.html#KochurovaPR15,https://doi.org/10.1016/j.displa.2015.02.001 +Min Sup Song,Distributed circuit model for cold cathode fluorescent lamps in back-light unit of liquid crystal display.,2010,31,Displays,2,db/journals/displays/displays31.html#SongPYHK10,https://doi.org/10.1016/j.displa.2010.02.006 +Jee-Gong Chang,Feasibility study of edge-lit backlight of dual-panel display by a simple configuration model.,2008,29,Displays,3,db/journals/displays/displays29.html#ChangF08,https://doi.org/10.1016/j.displa.2007.08.011 +Tien-Jung Chen,Optimized electro-optical properties of polymer-stabilized vertical-aligned liquid crystal displays driven by an in-plane field.,2015,37,Displays,,db/journals/displays/displays37.html#ChenLCLWY15,https://doi.org/10.1016/j.displa.2014.10.004 +Dan Luo,Proceedings of the 4th Symposium on Liquid Crystal Photonics (SLCP 2015).,2016,44,Displays,,db/journals/displays/displays44.html#LuoS16,https://doi.org/10.1016/j.displa.2016.08.001 +Santosh Kumar Sahu,Sequence Analysis of a Subset of Plasma Membrane Raft Proteome Containing CXXC Metal Binding Motifs: Metal Binding Proteins.,2015,5,IJKDB,2,db/journals/ijkdb/ijkdb5.html#SahuBGS15,https://doi.org/10.4018/IJKDB.2015070101 +Wangsen Feng,Identification of Distinguishing Motifs.,2010,1,IJKDB,3,db/journals/ijkdb/ijkdb1.html#FengW10,https://doi.org/10.4018/jkdb.2010070104 +Andrew Blanchard,Wave-SOM: A Novel Wavelet-Based Clustering Algorithm for Analysis of Gene Expression Patterns.,2010,1,IJKDB,2,db/journals/ijkdb/ijkdb1.html#BlanchardWMG10,https://doi.org/10.4018/jkdb.2010040104 +Libi Hertzberg,GEView (Gene Expression View) Tool for Intuitive and High Accessible Visualization of Expression Data for Non-Programmer Biologists.,2018,8,IJKDB,1,db/journals/ijkdb/ijkdb8.html#HertzbergYP18,https://doi.org/10.4018/IJKDB.2018010107 +Juan Antonio Lossio-Ventura,Towards a Mixed Approach to Extract Biomedical Terms from Text Corpus.,2014,4,IJKDB,1,db/journals/ijkdb/ijkdb4.html#VenturaJRT14,https://doi.org/10.4018/ijkdb.2014010101 +Faisal M. Khan,Medical Survival Analysis Through Transduction of Semi-Supervised Regression Targets.,2011,2,IJKDB,3,db/journals/ijkdb/ijkdb2.html#KhanL11,https://doi.org/10.4018/jkdb.2011070104 +Evrim Acar,Coupled Matrix Factorization with Sparse Factors to Identify Potential Biomarkers in Metabolomics.,2012,3,IJKDB,3,db/journals/ijkdb/ijkdb3.html#AcarGRRDB12,https://doi.org/10.4018/jkdb.2012070102 +Xiaoyue Zhao,Prioritizing Disease Genes and Understanding Disease Pathways.,2012,3,IJKDB,4,db/journals/ijkdb/ijkdb3.html#ZhaoIZ12,https://doi.org/10.4018/ijkdb.2012100103 +Sujata Dash,Genetic Diagnosis of Cancer by Evolutionary Fuzzy-Rough based Neural-Network Ensemble.,2016,6,IJKDB,1,db/journals/ijkdb/ijkdb6.html#DashP16,https://doi.org/10.4018/IJKDB.2016010101 +Mohammed Javeed Zaki,Mining Frequent Boolean Expressions: Application to Gene Expression and Regulatory Modeling.,2010,1,IJKDB,3,db/journals/ijkdb/ijkdb1.html#ZakiRZ10,https://doi.org/10.4018/jkdb.2010070105 +Ali Azari,Healthcare Data Mining: Predicting Hospital Length of Stay (PHLOS).,2012,3,IJKDB,3,db/journals/ijkdb/ijkdb3.html#AzariJM12,https://doi.org/10.4018/jkdb.2012070103 +Meriem Zekri,Identification Methods of G Protein-Coupled Receptors.,2011,2,IJKDB,4,db/journals/ijkdb/ijkdb2.html#ZekriAS11,https://doi.org/10.4018/jkdb.2011100103 +Takeyuki Tamura,Finding Minimum Reaction Cuts of Metabolic Networks Under a Boolean Model Using Integer Programming and Feedback Vertex Sets.,2010,1,IJKDB,1,db/journals/ijkdb/ijkdb1.html#TamuraTA10,https://doi.org/10.4018/jkdb.2010100202 +Mohammad Ahsan,Sentiment Based Information Diffusion in Online Social Networks.,2018,8,IJKDB,1,db/journals/ijkdb/ijkdb8.html#AhsanKSP18,https://doi.org/10.4018/IJKDB.2018010105 +Morihiro Hayashida,Domain-Based Approaches to Prediction and Analysis of Protein-Protein Interactions.,2014,4,IJKDB,1,db/journals/ijkdb/ijkdb4.html#HayashidaA14,https://doi.org/10.4018/ijkdb.2014010103 +Sagar Ap.,Genome Sequence Analysis in Distributed Computing using Spark.,2015,5,IJKDB,2,db/journals/ijkdb/ijkdb5.html#ApMAT15,https://doi.org/10.4018/IJKDB.2015070103 +Santosh Kumar Sahu,K-NN Based Outlier Detection Technique on Intrusion Dataset.,2017,7,IJKDB,1,db/journals/ijkdb/ijkdb7.html#SahuJV17,https://doi.org/10.4018/IJKDB.2017010105 +Qiong Cheng,Combinatorial Optimization Algorithms for Metabolic Networks Alignments and Their Applications.,2011,2,IJKDB,1,db/journals/ijkdb/ijkdb2.html#ChengZ11,https://doi.org/10.4018/jkdb.2011010101 +Majid Masso,Improving Prediction Accuracy via Subspace Modeling in a Statistical Geometry Based Computational Protein Mutagenesis.,2010,1,IJKDB,4,db/journals/ijkdb/ijkdb1.html#Masso10,https://doi.org/10.4018/jkdb.2010100103 +Clyde F. Phelix,MSDC-0160 and MSDC-0602 Binding with Human Mitochondrial Pyruvate Carrier (MPC) 1 and 2 Heterodimer: PPAR* Activating and Sparing TZDs as Therapeutics.,2017,7,IJKDB,2,db/journals/ijkdb/ijkdb7.html#PhelixBDVP17,https://doi.org/10.4018/IJKDB.2017070103 +R. Gowri,Local Optima Avoidance in GA Biclustering using Map Reduce.,2016,6,IJKDB,1,db/journals/ijkdb/ijkdb6.html#GowriR16,https://doi.org/10.4018/IJKDB.2016010104 +Junming Shao,Hierarchical Density-Based Clustering of White Matter Tracts in the Human Brain.,2010,1,IJKDB,4,db/journals/ijkdb/ijkdb1.html#ShaoHYWBMP10,https://doi.org/10.4018/jkdb.2010100101 +Zhecheng Zhu,Interactive Data Visualization to Understand Data Better: Case Studies in Healthcare System.,2014,4,IJKDB,2,db/journals/ijkdb/ijkdb4.html#ZhuHT14,https://doi.org/10.4018/IJKDB.2014070101 +Sushanta Meher,Time-Aware Task Allocation for Cloud Computing Environment.,2017,7,IJKDB,1,db/journals/ijkdb/ijkdb7.html#MeherPP17,https://doi.org/10.4018/IJKDB.2017010101 +Yan-Hui Li,Predicting Aging-Genes in Drosophila Melanogaster by Integrating Network Topological Features and Functional Categories.,2012,3,IJKDB,2,db/journals/ijkdb/ijkdb3.html#LiLSFZ12,https://doi.org/10.4018/jkdb.2012040102 +Roohallah Alizadehsani,Exerting Cost-Sensitive and Feature Creation Algorithms for Coronary Artery Disease Diagnosis.,2012,3,IJKDB,1,db/journals/ijkdb/ijkdb3.html#AlizadehsaniHBGKS12,https://doi.org/10.4018/jkdb.2012010104 +Ricardo Santiago-Mozos,Revealing the Origin and Nature of Drug Resistance of Dynamic Tumour Systems.,2010,1,IJKDB,4,db/journals/ijkdb/ijkdb1.html#Santiago-MozosKM10,https://doi.org/10.4018/jkdb.2010100102 +Miao Wang,Efficient Mining Frequent Closed Discriminative Biclusters by Sample-Growth: The FDCluster Approach.,2010,1,IJKDB,4,db/journals/ijkdb/ijkdb1.html#WangSZL10,https://doi.org/10.4018/jkdb.2010100104 +Amit Kumar,Performance Assessment of Learning Algorithms on Multi-Domain Data Sets.,2018,8,IJKDB,1,db/journals/ijkdb/ijkdb8.html#KumarS18,https://doi.org/10.4018/IJKDB.2018010103 +Richipal Singh Bindra,Bioinformatics Methods for Studying MicroRNA and ARE-Mediated Regulation of Post-Transcriptional Gene Expression.,2010,1,IJKDB,3,db/journals/ijkdb/ijkdb1.html#BindraWB10,https://doi.org/10.4018/jkdb.2010070106 +Hela Ltifi,Perspective Wall Technique for Visualizing and Interpreting Medical Data.,2012,3,IJKDB,2,db/journals/ijkdb/ijkdb3.html#LtifiATA12,https://doi.org/10.4018/jkdb.2012040104 +Célia Talma Gonçalves,BioTextRetriever: A Tool to Retrieve Relevant Papers.,2011,2,IJKDB,3,db/journals/ijkdb/ijkdb2.html#GoncalvesCO11,https://doi.org/10.4018/jkdb.2011070102 +Allen K. Bourdon,In Silico Biosimulation of Isoflurane Effects on Brain Using Transcriptome-To-Metabolome™* Technology: Anesthesia Effects on Rat Amygdala and Cortex Metabolism.,2015,5,IJKDB,1,db/journals/ijkdb/ijkdb5.html#BourdonP15,https://doi.org/10.4018/IJKDB.2015010101 +Kshira Sagar Sahoo,Improving Resiliency in SDN using Routing Tree Algorithms.,2017,7,IJKDB,1,db/journals/ijkdb/ijkdb7.html#SahooSDM17,https://doi.org/10.4018/IJKDB.2017010104 +Ludmila I. Kuncheva,Classifier Ensemble Methods for Diagnosing COPD from Volatile Organic Compounds in Exhaled Air.,2012,3,IJKDB,2,db/journals/ijkdb/ijkdb3.html#KunchevaRSPL12,https://doi.org/10.4018/jkdb.2012040101 +Christopher E. Gillies,Improved Feature Selection by Incorporating Gene Similarity into the LASSO.,2012,3,IJKDB,1,db/journals/ijkdb/ijkdb3.html#GilliesGPSW12,https://doi.org/10.4018/jkdb.2012010101 +Yupu Liang,Classification of Tandem Repeats in the Human Genome.,2012,3,IJKDB,3,db/journals/ijkdb/ijkdb3.html#LiangSZL12,https://doi.org/10.4018/jkdb.2012070101 +Francesco Bruno,New Trends in Graph Mining: Structural and Node-Colored Network Motifs.,2010,1,IJKDB,1,db/journals/ijkdb/ijkdb1.html#BrunoPR10,https://doi.org/10.4018/jkdb.2010100206 +Abduljalil Mohamed,Evidence-Based Combination of Weighted Classifiers Approach for Epileptic Seizure Detection using EEG Signals.,2012,3,IJKDB,2,db/journals/ijkdb/ijkdb3.html#MohamedSM12,https://doi.org/10.4018/jkdb.2012040103 +George Tzanis,Biological and Medical Big Data Mining.,2014,4,IJKDB,1,db/journals/ijkdb/ijkdb4.html#Tzanis14,https://doi.org/10.4018/ijkdb.2014010104 +Erliang Zeng,Clustering Genes Using Heterogeneous Data Sources.,2010,1,IJKDB,2,db/journals/ijkdb/ijkdb1.html#ZengYLN10,https://doi.org/10.4018/jkdb.2010040102 +Swati Mishra 0002,Efficient Fault Tolerant Algorithms for Internet Distributed Systems.,2017,7,IJKDB,1,db/journals/ijkdb/ijkdb7.html#MishraP17,https://doi.org/10.4018/IJKDB.2017010106 +Gauri Jain,Spam Detection on Social Media Using Semantic Convolutional Neural Network.,2018,8,IJKDB,1,db/journals/ijkdb/ijkdb8.html#JainSA18,https://doi.org/10.4018/IJKDB.2018010102 +Yi Mao,Early Deterioration Warning for Hospitalized Patients by Mining Clinical Data.,2011,2,IJKDB,3,db/journals/ijkdb/ijkdb2.html#MaoCHCLKB11,https://doi.org/10.4018/jkdb.2011070101 +Rabi Narayan Behera,A Particle Swarm Optimization based Hybrid Recommendation System.,2016,6,IJKDB,2,db/journals/ijkdb/ijkdb6.html#BeheraD16,https://doi.org/10.4018/IJKDB.2016070101 +Peter E. Larsen,Incorporating Network Topology Improves Prediction of Protein Interaction Networks from Transcriptomic Data.,2010,1,IJKDB,3,db/journals/ijkdb/ijkdb1.html#LarsenCD10,https://doi.org/10.4018/jkdb.2010070101 +Brígida Mónica Faria,Knowledge Discovery and Multimodal Inputs for Driving an Intelligent Wheelchair.,2011,2,IJKDB,4,db/journals/ijkdb/ijkdb2.html#FariaRL11,https://doi.org/10.4018/jkdb.2011100102 +Oruganty Krishnadev,Prediction of Protein-Protein Interactions Between Human Host and Two Mycobacterial Organisms.,2010,1,IJKDB,1,db/journals/ijkdb/ijkdb1.html#KrishnadevBS10,https://doi.org/10.4018/jkdb.2010100201 +Sushruta Mishra,Impact of Swarm Intelligence Techniques in Diabetes Disease Risk Prediction.,2016,6,IJKDB,2,db/journals/ijkdb/ijkdb6.html#MishraMSP16,https://doi.org/10.4018/IJKDB.2016070103 +Junming Shao,Insight into Disrupted Spatial Patterns of Human Connectome in Alzheimer's Disease via Subgraph Mining.,2012,3,IJKDB,1,db/journals/ijkdb/ijkdb3.html#ShaoYWS12,https://doi.org/10.4018/jkdb.2012010102 +Bibhuti Prasad Barik,Animal Actin Phylogeny and RNA Secondary Structure Study.,2015,5,IJKDB,1,db/journals/ijkdb/ijkdb5.html#Barik15,https://doi.org/10.4018/IJKDB.2015010104 +S. Seth Long,Graph-Based Shape Analysis for MRI Classification.,2011,2,IJKDB,2,db/journals/ijkdb/ijkdb2.html#LongH11,https://doi.org/10.4018/jkdb.2011040102 +Prayag Tiwari,Implementation of n-gram Methodology for Rotten Tomatoes Review Dataset Sentiment Analysis.,2017,7,IJKDB,1,db/journals/ijkdb/ijkdb7.html#TiwariMKK17,https://doi.org/10.4018/IJKDB.2017010103 +Eshita Mutt,Search for Protein Sequence Homologues that Display Considerable Domain Length Variations.,2011,2,IJKDB,2,db/journals/ijkdb/ijkdb2.html#MuttMS11,https://doi.org/10.4018/jkdb.2011040104 +Allen K. Bourdon,Alzheimer's and Parkinson's Disease Novel Therapeutic Target: The Mitochondrial Pyruvate Carrier - Ligand Docking to Screen Natural Compounds Related to Classic Inhibitors.,2017,7,IJKDB,2,db/journals/ijkdb/ijkdb7.html#BourdonVPP17,https://doi.org/10.4018/IJKDB.2017070104 +Zeeshan Syed,Scaling Unsupervised Risk Stratification to Massive Clinical Datasets.,2011,2,IJKDB,1,db/journals/ijkdb/ijkdb2.html#SyedR11,https://doi.org/10.4018/jkdb.2011010103 +Subhendu Kumar Pani,Performance Analysis of Microarray Data Classification using Machine Learning Techniques.,2015,5,IJKDB,2,db/journals/ijkdb/ijkdb5.html#PaniRM15,https://doi.org/10.4018/IJKDB.2015070104 +Susan Fairley,Mapping Affymetrix Microarray Probes to the Rat Genome via a Persistent Index.,2010,1,IJKDB,1,db/journals/ijkdb/ijkdb1.html#FairleyMHIMDH10,https://doi.org/10.4018/jkdb.2010100204 +Sung Ho Ha,Medical Domain Knowledge and Associative Classification Rules in Diagnosis.,2011,2,IJKDB,1,db/journals/ijkdb/ijkdb2.html#Ha11,https://doi.org/10.4018/jkdb.2011010104 +Govindan Raja,Genome Subsequences Assembly Using Approximate Matching Techniques in Hadoop.,2017,7,IJKDB,2,db/journals/ijkdb/ijkdb7.html#RajaR17,https://doi.org/10.4018/IJKDB.2017070105 +Daniel Luis Notari,Dis2PPI: A Workflow Designed to Integrate Proteomic and Genetic Disease Data.,2012,3,IJKDB,3,db/journals/ijkdb/ijkdb3.html#NotariOMRB12,https://doi.org/10.4018/jkdb.2012070104 +Sumitra Kisan,Estimation of Fractal Dimension in Different Color Model.,2018,8,IJKDB,1,db/journals/ijkdb/ijkdb8.html#KisanMCN18,https://doi.org/10.4018/IJKDB.2018010106 +Truc Viet Le,Trend Analysis of Length of Stay Data via Phase-Type Models.,2011,2,IJKDB,3,db/journals/ijkdb/ijkdb2.html#LeKLT11,https://doi.org/10.4018/jkdb.2011070103 +Saeed Rouhani,Data Mining Approach for the Early Risk Assessment of Gestational Diabetes Mellitus.,2018,8,IJKDB,1,db/journals/ijkdb/ijkdb8.html#RouhaniM18,https://doi.org/10.4018/IJKDB.2018010101 +Lee Sael,Characterization and Classification of Local Protein Surfaces Using Self-Organizing Map.,2010,1,IJKDB,1,db/journals/ijkdb/ijkdb1.html#SaelK10,https://doi.org/10.4018/jkdb.2010100203 +R. Rathipriya,A Novel Evolutionary Biclustering Approach using MapReduce(EBC-MR).,2016,6,IJKDB,1,db/journals/ijkdb/ijkdb6.html#Rathipriya16,https://doi.org/10.4018/IJKDB.2016010103 +Pablo Minguez,Protein Interactions for Functional Genomics.,2012,3,IJKDB,4,db/journals/ijkdb/ijkdb3.html#MinguezD12,https://doi.org/10.4018/ijkdb.2012100102 +Hon Nian Chua,Predicting Protein Functions from Protein Interaction Networks.,2012,3,IJKDB,4,db/journals/ijkdb/ijkdb3.html#ChuaW12,https://doi.org/10.4018/ijkdb.2012100104 +Jasmine Ion Titapiccolo,Mining Medical Data to Develop Clinical Decision Making Tools in Hemodialysis: Prediction of Cardiovascular Events and Feature Selection using a Random Forest Approach.,2011,2,IJKDB,4,db/journals/ijkdb/ijkdb2.html#TitapiccoloFCBMGS11,https://doi.org/10.4018/jkdb.2011100101 +Jananee S.,Detection of Breast Cancer by the Identification of Circulating Tumor Cells Using Association Rule Mining.,2016,6,IJKDB,1,db/journals/ijkdb/ijkdb6.html#SN16,https://doi.org/10.4018/IJKDB.2016010102 +Ankit Agrawal,Association Rule Mining Based HotSpot Analysis on SEER Lung Cancer Data.,2011,2,IJKDB,2,db/journals/ijkdb/ijkdb2.html#AgrawalC11,https://doi.org/10.4018/jkdb.2011040103 +Koji Tsuda,Data Mining for Biologists.,2012,3,IJKDB,4,db/journals/ijkdb/ijkdb3.html#Tsuda12,https://doi.org/10.4018/ijkdb.2012100101 +Anamika Basu,Analysis of microRNA Regulated Seed Biology Networks in Arabidopsis.,2014,4,IJKDB,2,db/journals/ijkdb/ijkdb4.html#BasuSB14,https://doi.org/10.4018/IJKDB.2014070102 +Vardan Mkrttchian,Use Online Multi-Cloud Platform Lab with Intellectual Agents: Avatars for Study of Knowledge Visualization and Probability Theory in Bioinformatics.,2015,5,IJKDB,1,db/journals/ijkdb/ijkdb5.html#Mkrttchian15,https://doi.org/10.4018/IJKDB.2015010102 +Harikrishna G. N. Rai,Figure Based Biomedical Document Retrieval System using Structural Image Features.,2012,3,IJKDB,1,db/journals/ijkdb/ijkdb3.html#RaiDK12,https://doi.org/10.4018/jkdb.2012010103 +Ning Jin,Discriminative Subgraph Mining for Protein Classification.,2010,1,IJKDB,3,db/journals/ijkdb/ijkdb1.html#JinYW10,https://doi.org/10.4018/jkdb.2010070103 +Clyde F. Phelix,Transcriptome-To-Metabolome™* Biosimulation Reveals Human Hippocampal Hypometabolism with Age and Alzheimer's Disease.,2011,2,IJKDB,2,db/journals/ijkdb/ijkdb2.html#PhelixLRVVRSZP11,https://doi.org/10.4018/IJKDB.2011040101 +Sangharatna Godboley,Green DRCT: Measuring Energy Consumption of an Enhanced Branch Coverage and Modified Condition/Decision Coverage Technique.,2017,7,IJKDB,1,db/journals/ijkdb/ijkdb7.html#GodboleyDM17,https://doi.org/10.4018/IJKDB.2017010102 +Young-Rae Cho,Mining Protein Interactome Networks to Measure Interaction Reliability and Select Hub Proteins.,2010,1,IJKDB,3,db/journals/ijkdb/ijkdb1.html#ChoZ10,https://doi.org/10.4018/jkdb.2010070102 +Charles D. Hammack,Low Dose Pioglitazone Attenuates Oxidative Damage in Early Alzheimer's Disease by Binding mitoNEET: Transcriptome-To-Reactome™* Biosimulation of Neurons.,2015,5,IJKDB,1,db/journals/ijkdb/ijkdb5.html#HammackPLVP15,https://doi.org/10.4018/IJKDB.2015010103 +Deepali Virmani,Proficient Normalised Fuzzy K-Means With Initial Centroids Methodology.,2018,8,IJKDB,1,db/journals/ijkdb/ijkdb8.html#VirmaniJPUS18,https://doi.org/10.4018/IJKDB.2018010104 +Tsuyoshi Kato,A Transfer Learning Approach and Selective Integration of Multiple Types of Assays for Biological Network Inference.,2010,1,IJKDB,1,db/journals/ijkdb/ijkdb1.html#KatoOKS10,https://doi.org/10.4018/jkdb.2010100205 +Sushree Bibhuprada B. Priyadarshini,A Distributed Scalar Controller Selection Scheme for Redundant Data Elimination in Sensor Networks.,2017,7,IJKDB,1,db/journals/ijkdb/ijkdb7.html#PriyadarshiniP17,https://doi.org/10.4018/IJKDB.2017010107 +Xiaoxu Han,Infer Species Phylogenies Using Self-Organizing Maps.,2010,1,IJKDB,2,db/journals/ijkdb/ijkdb1.html#Han10,https://doi.org/10.4018/jkdb.2010040103 +Karuppiah Kanagarajadurai,PASS2: A Database of Structure-Based Sequence Alignments of Protein Structural Domain Superfamilies.,2011,2,IJKDB,4,db/journals/ijkdb/ijkdb2.html#KanagarajaduraiKNS11,https://doi.org/10.4018/jkdb.2011100104 +Tamar Chachibaia,Predictive Toxicity of Conventional Triazole Pesticides by Simulating Inhibitory Effect on Human Aromatase CYP19 Enzyme.,2016,6,IJKDB,2,db/journals/ijkdb/ijkdb6.html#ChachibaiaH16,https://doi.org/10.4018/IJKDB.2016070104 +C. David Butler,Pharmacy Data Integrity for Optimal Analytics.,2014,4,IJKDB,2,db/journals/ijkdb/ijkdb4.html#Butler14,https://doi.org/10.4018/IJKDB.2014070103 +Madhumita Panda,Automatic Test Data Generation using Metaheuristic Cuckoo Search Algorithm.,2015,5,IJKDB,2,db/journals/ijkdb/ijkdb5.html#PandaSD15,https://doi.org/10.4018/IJKDB.2015070102 +José Caldas,A Latent Feature Model Approach to Biclustering.,2016,6,IJKDB,2,db/journals/ijkdb/ijkdb6.html#CaldasK16,https://doi.org/10.4018/IJKDB.2016070102 +Jürgen Robienski,Property and Personality Rights with Regard to Biobanks: A Layered System with Germany as an Example.,2014,4,IJKDB,1,db/journals/ijkdb/ijkdb4.html#RobienskiS14,https://doi.org/10.4018/ijkdb.2014010102 +Samuel Selvaraj,A Web Database IR-PDB for Sequence Repeats of Proteins in the Protein Data Bank.,2017,7,IJKDB,2,db/journals/ijkdb/ijkdb7.html#SelvarajR17,https://doi.org/10.4018/IJKDB.2017070101 +Deyi Xue,An intelligent optimal production scheduling approach using constraint-based search and agent-based collaboration.,2001,46,Computers in Industry,2,db/journals/cii/cii46.html#XueSN01,https://doi.org/10.1016/S0166-3615(01)00118-X +Xiaoqiao Wang,Research on assembly quality adaptive control system for complex mechanical products assembly process under uncertainty.,2015,74,Computers in Industry,,db/journals/cii/cii74.html#WangLGLL15,https://doi.org/10.1016/j.compind.2015.09.001 +Martín G. Marchetta,A reference framework following a proactive approach for Product Lifecycle Management.,2011,62,Computers in Industry,7,db/journals/cii/cii62.html#MarchettaMF11,https://doi.org/10.1016/j.compind.2011.04.004 +João M. L. P. Caldeira,Impact of sensor nodes scaling and velocity on handover mechanisms for healthcare wireless sensor networks with mobility support.,2015,69,Computers in Industry,,db/journals/cii/cii69.html#CaldeiraRLU15,https://doi.org/10.1016/j.compind.2014.09.002 +Francis Eng Hock Tay,Product modeling for conceptual design support.,2002,48,Computers in Industry,2,db/journals/cii/cii48.html#TayG02,https://doi.org/10.1016/S0166-3615(02)00014-3 +Henry Y. K. Lau,Joint scheduling of material handling equipment in automated air cargo terminals.,2006,57,Computers in Industry,5,db/journals/cii/cii57.html#LauZ06,https://doi.org/10.1016/j.compind.2005.11.003 +Sigrid Wenzel,Classifications and conventions structure the handling of models within the Digital Factory.,2005,56,Computers in Industry,4,db/journals/cii/cii56.html#WenzelJB05,https://doi.org/10.1016/j.compind.2005.01.006 +Daniele Cerri,Proposal of a toolset for the improvement of industrial systems' lifecycle sustainability through the utilization of ICT technologies.,2016,81,Computers in Industry,,db/journals/cii/cii81.html#CerriT16,https://doi.org/10.1016/j.compind.2015.09.003 +Kevin Nagorny,A service- and multi-agent-oriented manufacturing automation architecture: An IEC 62264 level 2 compliant implementation.,2012,63,Computers in Industry,8,db/journals/cii/cii63.html#NagornyCS12,https://doi.org/10.1016/j.compind.2012.08.003 +K. Rajbabu,Industrial information extraction through multi-phase classification using ontology for unstructured documents.,2018,100,Computers in Industry,,db/journals/cii/cii100.html#RajbabuSS18,https://doi.org/10.1016/j.compind.2018.04.007 +Gang Hong,Rapid identification of the optimal product configuration and its parameters based on customer-centric product modeling for one-of-a-kind production.,2010,61,Computers in Industry,3,db/journals/cii/cii61.html#HongXT10,https://doi.org/10.1016/j.compind.2009.09.006 +Mickael Gardoni,Knowledge capitalisation based on textual and graphical semi-structured and non-structured information: case study in an industrial research centre at EADS.,2005,56,Computers in Industry,1,db/journals/cii/cii56.html#GardoniFV05,https://doi.org/10.1016/j.compind.2004.09.001 +Ihwan Song,Implementation of the direct integration from CAM to CAE for the PCB simulation.,2013,64,Computers in Industry,8,db/journals/cii/cii64.html#SongH13,https://doi.org/10.1016/j.compind.2013.06.014 +Dilip B. Kotak,Agent-based holonic design and operations environment for distributed manufacturing.,2003,52,Computers in Industry,2,db/journals/cii/cii52.html#KotakWFT03,https://doi.org/10.1016/S0166-3615(03)00101-5 +Tomaz Kosar,Debugging measurement systems using a domain-specific modeling language.,2014,65,Computers in Industry,4,db/journals/cii/cii65.html#KosarMGK14,https://doi.org/10.1016/j.compind.2014.01.013 +M. N. Islam,Functional dimensioning and tolerancing software for concurrent engineering applications.,2004,54,Computers in Industry,2,db/journals/cii/cii54.html#Islam04,https://doi.org/10.1016/j.compind.2003.09.006 +Valerie Botta-Genoulaz,A survey on the recent research literature on ERP systems.,2005,56,Computers in Industry,6,db/journals/cii/cii56.html#Botta-GenoulazMG05,https://doi.org/10.1016/j.compind.2005.02.004 +Lamine Mahdjoubi,Providing real-estate services through the integration of 3D laser scanning and building information modelling.,2013,64,Computers in Industry,9,db/journals/cii/cii64.html#MahdjoubiML13,https://doi.org/10.1016/j.compind.2013.09.003 +Chang-Suk Cho,An implementation of a garment-fitting simulation system using laser scanned 3D body data.,2010,61,Computers in Industry,6,db/journals/cii/cii61.html#ChoPBH10,https://doi.org/10.1016/j.compind.2010.03.005 +Yolanda Hernández-González,A semantic-based platform for R and D project funding management.,2014,65,Computers in Industry,5,db/journals/cii/cii65.html#Hernandez-GonzalezMRVS14,https://doi.org/10.1016/j.compind.2013.11.007 +Mari Cruz Garcia,SIMAP: Intelligent System for Predictive Maintenance: Application to the health condition monitoring of a windturbine gearbox.,2006,57,Computers in Industry,6,db/journals/cii/cii57.html#GarciaSP06,https://doi.org/10.1016/j.compind.2006.02.011 +Arturo Molina,Editorial.,2008,59,Computers in Industry,7,db/journals/cii/cii59.html#MolinaP08,https://doi.org/10.1016/j.compind.2007.12.009 +Jose María álvarez Rodríguez,New trends on e-Procurement applying semantic technologies: Current status and future challenges.,2014,65,Computers in Industry,5,db/journals/cii/cii65.html#Alvarez-RodriguezGP14,https://doi.org/10.1016/j.compind.2014.04.005 +Luciana Tricai Cavalini,Semantic interoperability of controlled vocabularies in medicine: A case study of the International Statistical Classification of Diseases 'Tuberculosis' subset.,2015,69,Computers in Industry,,db/journals/cii/cii69.html#CavaliniC15,https://doi.org/10.1016/j.compind.2014.10.002 +Ke Xu,A three-layered method for business processes discovery and its application in manufacturing industry.,2007,58,Computers in Industry,3,db/journals/cii/cii58.html#XuLW07,https://doi.org/10.1016/j.compind.2006.06.001 +Sung Kyung Hong,Stable fuzzy control system design with pole-placement constraint: an LMI approach.,2003,51,Computers in Industry,1,db/journals/cii/cii51.html#HongN03,https://doi.org/10.1016/S0166-3615(03)00057-5 +Hervé Panetto,New perspectives for the future interoperable enterprise systems.,2016,79,Computers in Industry,,db/journals/cii/cii79.html#PanettoZJRCM16,https://doi.org/10.1016/j.compind.2015.08.001 +Egon Berghout,Management of lifecycle costs and benefits: Lessons from information systems practice.,2011,62,Computers in Industry,7,db/journals/cii/cii62.html#BerghoutNP11,https://doi.org/10.1016/j.compind.2011.05.005 +Xiao-Ou Ping,A multiple measurements case-based reasoning method for predicting recurrent status of liver cancer patients.,2015,69,Computers in Industry,,db/journals/cii/cii69.html#PingTLCLLHY15,https://doi.org/10.1016/j.compind.2015.01.007 +Benjamin Langmann,Increasing the accuracy of Time-of-Flight cameras for machine vision applications.,2013,64,Computers in Industry,9,db/journals/cii/cii64.html#LangmannHL13,https://doi.org/10.1016/j.compind.2013.06.006 +Djilali Idoughi,Towards new web services based supervisory systems in complex industrial organizations: Basic principles and case study.,2010,61,Computers in Industry,3,db/journals/cii/cii61.html#IdoughiKK10,https://doi.org/10.1016/j.compind.2009.09.001 +Cafer Erhan Bozdag,Fuzzy group decision making for selection among computer integrated manufacturing systems.,2003,51,Computers in Industry,1,db/journals/cii/cii51.html#BozdagKR03,https://doi.org/10.1016/S0166-3615(03)00029-0 +Hoa Khanh Dam,Mining version histories for change impact analysis in business process model repositories.,2015,67,Computers in Industry,,db/journals/cii/cii67.html#DamG15,https://doi.org/10.1016/j.compind.2014.10.005 +Alexander Bleakie,Analytical approach to similarity-based prediction of manufacturing system performance.,2013,64,Computers in Industry,6,db/journals/cii/cii64.html#BleakieD13a,https://doi.org/10.1016/j.compind.2013.02.013 +Najam A. Anjum,Mediation of foundation ontology based knowledge sources.,2012,63,Computers in Industry,5,db/journals/cii/cii63.html#AnjumHYC12,https://doi.org/10.1016/j.compind.2012.01.009 +Ming-Jaan Wang,A solution to the unequal area facilities layout problem by genetic algorithm.,2005,56,Computers in Industry,2,db/journals/cii/cii56.html#WangHK05,https://doi.org/10.1016/j.compind.2004.06.003 +Pascal Forget,Study of the performance of multi-behaviour agents for supply chain planning.,2009,60,Computers in Industry,9,db/journals/cii/cii60.html#ForgetDFG09,https://doi.org/10.1016/j.compind.2009.05.005 +Sebastiano Battiato,On-board monitoring system for road traffic safety analysis.,2018,98,Computers in Industry,,db/journals/cii/cii98.html#BattiatoFGG18,https://doi.org/10.1016/j.compind.2018.02.014 +Laurent Thiry,Patterns for behavior modeling and integration.,2004,55,Computers in Industry,3,db/journals/cii/cii55.html#ThiryPT04,https://doi.org/10.1016/j.compind.2004.08.001 +Inho Song,A scene graph based visualization method for representing continuous simulation data.,2011,62,Computers in Industry,3,db/journals/cii/cii62.html#SongY11,https://doi.org/10.1016/j.compind.2010.09.004 +Nicholas Paul,Application of HDR algorithms to solve direct sunlight problems when autonomous vehicles using machine vision systems are driving into sun.,2018,98,Computers in Industry,,db/journals/cii/cii98.html#PaulC18,https://doi.org/10.1016/j.compind.2018.03.011 +Weishan Zhang,Multi-source data fusion using deep learning for smart refrigerators.,2018,95,Computers in Industry,,db/journals/cii/cii95.html#ZhangZZZXZLY18,https://doi.org/10.1016/j.compind.2017.09.001 +Yuri Borgianni,Business Process Reengineering driven by customer value: a support for undertaking decisions under uncertainty conditions.,2015,68,Computers in Industry,,db/journals/cii/cii68.html#BorgianniCR15,https://doi.org/10.1016/j.compind.2015.01.001 +Sudhaman Parthasarathy,Determining ERP customization choices using nominal group technique and analytical hierarchy process.,2014,65,Computers in Industry,6,db/journals/cii/cii65.html#ParthasarathyS14,https://doi.org/10.1016/j.compind.2014.03.003 +Yu-Cheng Lee,Structural approach to design user interface.,2010,61,Computers in Industry,7,db/journals/cii/cii61.html#LeeCL10,https://doi.org/10.1016/j.compind.2010.01.003 +Jiankang Liu,Mortality prediction based on imbalanced high-dimensional ICU big data.,2018,98,Computers in Industry,,db/journals/cii/cii98.html#LiuCFLYZTF18,https://doi.org/10.1016/j.compind.2018.01.017 +Chih-Hsing Chu,Exemplar-based statistical model for semantic parametric design of human body.,2010,61,Computers in Industry,6,db/journals/cii/cii61.html#ChuTWK10,https://doi.org/10.1016/j.compind.2010.03.004 +Claudio Cusano,Visual recognition of aircraft mechanical parts for smart maintenance.,2017,86,Computers in Industry,,db/journals/cii/cii86.html#CusanoN17,https://doi.org/10.1016/j.compind.2017.01.001 +Giner Alor-Hernández,BROSEMWEB: A brokerage service for e-Procurement using Semantic Web Technologies.,2014,65,Computers in Industry,5,db/journals/cii/cii65.html#Alor-HernandezSCRGC14,https://doi.org/10.1016/j.compind.2013.12.007 +E. Lardeur,Mutual enhancement of systems engineering and decision-making through process modeling: toward an integrated framework.,2004,55,Computers in Industry,3,db/journals/cii/cii55.html#LardeurL04,https://doi.org/10.1016/j.compind.2004.08.004 +W. J. Moore,An intelligent maintenance system for continuous cost-based prioritisation of maintenance activities.,2006,57,Computers in Industry,6,db/journals/cii/cii57.html#MooreS06,https://doi.org/10.1016/j.compind.2006.02.008 +Li Pheng Khoo,An investigation on a prototype customer-oriented information system for product concept development.,2002,49,Computers in Industry,2,db/journals/cii/cii49.html#KhooCY02,https://doi.org/10.1016/S0166-3615(02)00081-7 +Ian McCarthy,A classification schema of manufacturing decisions for the GRAI enterprise modelling technique.,2002,47,Computers in Industry,3,db/journals/cii/cii47.html#McCarthyM02,https://doi.org/10.1016/S0166-3615(02)00002-7 +Rasim M. Alguliyev,Cyber-physical systems and their security issues.,2018,100,Computers in Industry,,db/journals/cii/cii100.html#AlguliyevIS18,https://doi.org/10.1016/j.compind.2018.04.017 +Snehamoy Chatterjee,Image-based quality monitoring system of limestone ore grades.,2010,61,Computers in Industry,5,db/journals/cii/cii61.html#ChatterjeeBSP10,https://doi.org/10.1016/j.compind.2009.10.003 +Xuan F. Zha,Knowledge-intensive collaborative design modeling and support: Part II: System implementation and application.,2006,57,Computers in Industry,1,db/journals/cii/cii57.html#ZhaD06a,https://doi.org/10.1016/j.compind.2005.04.006 +W. Zhao,OWL/SWRL representation methodology for EXPRESS-driven product information model: Part II: Practice.,2008,59,Computers in Industry,6,db/journals/cii/cii59.html#ZhaoL08a,https://doi.org/10.1016/j.compind.2008.02.004 +Dejan Gradisar,ProOpter: An advanced platform for production analysis and optimization.,2015,70,Computers in Industry,,db/journals/cii/cii70.html#GradisarGSM15,https://doi.org/10.1016/j.compind.2015.02.010 +Mehmet çaliskan,Structural optimization with CADO method for a three-dimensional sheet-metal vehicle body.,2011,62,Computers in Industry,1,db/journals/cii/cii62.html#CaliskanU11,https://doi.org/10.1016/j.compind.2010.06.001 +Sung-Jung Hsiao,Web-based search system of pattern recognition for the pattern of industrial component by an innovative technology.,2004,53,Computers in Industry,2,db/journals/cii/cii53.html#HsiaoSO04,https://doi.org/10.1016/j.compind.2003.06.002 +Jing Li,"Corrigendum to ""Simulation of cross-border competition of free internet content providers"" [Computers in Industry 64 (6) (2013) 754-764].",2013,64,Computers in Industry,7,db/journals/cii/cii64.html#LiCC13a,https://doi.org/10.1016/j.compind.2013.07.001 +Iraj Mahdavi,Modeling an e-based real-time quality control information system in distributed manufacturing shops.,2008,59,Computers in Industry,8,db/journals/cii/cii59.html#MahdaviSCSG08,https://doi.org/10.1016/j.compind.2008.03.005 +Harinder Jagdev,A semantic web service environment for B2B and B2C auction applications within extended and virtual enterprises.,2008,59,Computers in Industry,8,db/journals/cii/cii59.html#JagdevVBZ08,https://doi.org/10.1016/j.compind.2008.04.001 +Inmaculada Plaza,Exceptions in a Programmable Logic Controller implementation based on ADA.,2007,58,Computers in Industry,4,db/journals/cii/cii58.html#PlazaM07,https://doi.org/10.1016/j.compind.2006.07.007 +Kwang-Phil Park,Validation of advanced evacuation analysis on passenger ships using experimental scenario and data of full-scale evacuation.,2015,71,Computers in Industry,,db/journals/cii/cii71.html#ParkHH15,https://doi.org/10.1016/j.compind.2015.03.009 +Mikko Kärkkäinen,The product centric approach: a solution to supply network information management problems?,2003,52,Computers in Industry,2,db/journals/cii/cii52.html#KarkkainenAF03,https://doi.org/10.1016/S0166-3615(03)00086-1 +Danilo Assmann,Towards partnership in software subcontracting.,2004,54,Computers in Industry,2,db/journals/cii/cii54.html#AssmannP04,https://doi.org/10.1016/j.compind.2003.09.005 +Zhenkai Liu,Sequencing of interacting prismatic machining features for process planning.,2007,58,Computers in Industry,4,db/journals/cii/cii58.html#LiuW07,https://doi.org/10.1016/j.compind.2006.07.003 +Gert Zülch,The Digital Factory: An instrument of the present and the future.,2005,56,Computers in Industry,4,db/journals/cii/cii56.html#ZulchS05,https://doi.org/10.1016/j.compind.2005.01.003 +Stamatis Karnouskos,Massive open online courses (MOOCs) as an enabler for competent employees and innovation in industry.,2017,91,Computers in Industry,,db/journals/cii/cii91.html#Karnouskos17,https://doi.org/10.1016/j.compind.2017.05.001 +Milagros Rolón,Agent-based modeling and simulation of an autonomic manufacturing execution system.,2012,63,Computers in Industry,1,db/journals/cii/cii63.html#RolonM12,https://doi.org/10.1016/j.compind.2011.10.005 +Jia-Wei Chang,Integrating a semantic-based retrieval agent into case-based reasoning systems: A case study of an online bookstore.,2016,78,Computers in Industry,,db/journals/cii/cii78.html#ChangLW16,https://doi.org/10.1016/j.compind.2015.10.007 +Vassilios Canellidis,Pre-processing methodology for optimizing stereolithography apparatus build performance.,2006,57,Computers in Industry,5,db/journals/cii/cii57.html#CanellidisDMS06,https://doi.org/10.1016/j.compind.2006.02.004 +Yelena Jussupova-Mariethoz,Business concepts ontology for an enterprise performance and competences monitoring.,2007,58,Computers in Industry,2,db/journals/cii/cii58.html#Jussupova-MariethozP07,https://doi.org/10.1016/j.compind.2006.09.008 +Pavlos Delias,Using multi-target feature evaluation to discover factors that affect business process behavior.,2018,99,Computers in Industry,,db/journals/cii/cii99.html#DeliasLTG18,https://doi.org/10.1016/j.compind.2018.03.022 +Irene T. P. Vanderfeesten,Evaluating workflow process designs using cohesion and coupling metrics.,2008,59,Computers in Industry,5,db/journals/cii/cii59.html#VanderfeestenRA08,https://doi.org/10.1016/j.compind.2007.12.007 +K. K. Leong,Product data allocation for distributed product data management system.,2002,47,Computers in Industry,3,db/journals/cii/cii47.html#LeongYL02,https://doi.org/10.1016/S0166-3615(01)00152-X +Injun Choi,IPM-EPDL: an XML-based executable process definition language.,2005,56,Computers in Industry,1,db/journals/cii/cii56.html#ChoiJSR05,https://doi.org/10.1016/j.compind.2004.08.011 +Giovanni Godena,A new object model of batch equipment and procedural control for better recipe reuse.,2015,70,Computers in Industry,,db/journals/cii/cii70.html#GodenaLSBS15,https://doi.org/10.1016/j.compind.2015.02.002 +Dongsheng Liu,Modeling workflow processes with colored Petri nets.,2002,49,Computers in Industry,3,db/journals/cii/cii49.html#Liu0CSZ02,https://doi.org/10.1016/S0166-3615(02)00099-4 +Alice Rondini,Standardizing delivery processes to support service transformation: A case of a multinational manufacturing firm.,2018,100,Computers in Industry,,db/journals/cii/cii100.html#RondiniPCOP18,https://doi.org/10.1016/j.compind.2018.04.010 +Karim Jaballi,"Rational method for 3D manufacturing tolerancing synthesis based on the TTRS approach ""R3DMTSyn"".",2011,62,Computers in Industry,5,db/journals/cii/cii62.html#JaballiBLRH11,https://doi.org/10.1016/j.compind.2011.02.003 +Somaya Al-Máadeed,Robust feature point detectors for car make recognition.,2018,100,Computers in Industry,,db/journals/cii/cii100.html#Al-MaadeedBKB18,https://doi.org/10.1016/j.compind.2018.04.014 +Jan Riezebos,Lean Production and information technology: Connection or contradiction?,2009,60,Computers in Industry,4,db/journals/cii/cii60.html#RiezebosKH09,https://doi.org/10.1016/j.compind.2009.01.004 +M. M. E. Alemany,An application to support the temporal and spatial distributed decision-making process in supply chain collaborative planning.,2011,62,Computers in Industry,5,db/journals/cii/cii62.html#AlemanyAEB11,https://doi.org/10.1016/j.compind.2011.02.002 +Rodolfo E. Haber,Embedded fuzzy-control system for machining processes: Results of a case study.,2003,50,Computers in Industry,3,db/journals/cii/cii50.html#HaberAAHU03,https://doi.org/10.1016/S0166-3615(03)00022-8 +Craig Fletcher,The development of an integrated haptic VR machining environment for the automatic generation of process plans.,2013,64,Computers in Industry,8,db/journals/cii/cii64.html#FletcherRLS13,https://doi.org/10.1016/j.compind.2013.07.005 +Ashwin Ittoo,Editorial: Special issue on natural language processing and text analytics in industry.,2016,78,Computers in Industry,,db/journals/cii/cii78.html#IttooNB16,https://doi.org/10.1016/j.compind.2016.01.001 +Chien-Fu Kuo,An online ergonomic evaluator for 3D product design.,2005,56,Computers in Industry,5,db/journals/cii/cii56.html#KuoC05,https://doi.org/10.1016/j.compind.2005.02.002 +Duncan C. McFarlane,Intelligent logistics: Involving the customer.,2016,81,Computers in Industry,,db/journals/cii/cii81.html#McFarlaneGL16,https://doi.org/10.1016/j.compind.2015.10.002 +Erica Fernández,Framework for modelling and simulating the supply process monitoring to detect and predict disruptive events.,2016,80,Computers in Industry,,db/journals/cii/cii80.html#FernandezBSC16,https://doi.org/10.1016/j.compind.2016.04.002 +S. H. Choi,Hierarchical slice contours for layered-manufacturing.,2002,48,Computers in Industry,3,db/journals/cii/cii48.html#ChoiK02,https://doi.org/10.1016/S0166-3615(02)00040-4 +Janus S. Liang,A Web-based automotive refrigeration troubleshooting system applying knowledge engineering approach.,2010,61,Computers in Industry,1,db/journals/cii/cii61.html#Liang10,https://doi.org/10.1016/j.compind.2009.07.001 +Xu-Zheng Liu,An offset algorithm for polyline curves.,2007,58,Computers in Industry,3,db/journals/cii/cii58.html#LiuYZS07,https://doi.org/10.1016/j.compind.2006.06.002 +Lufeng Luo,A vision methodology for harvesting robot to detect cutting points on peduncles of double overlapping grape clusters in a vineyard.,2018,99,Computers in Industry,,db/journals/cii/cii99.html#LuoTLCZZ18,https://doi.org/10.1016/j.compind.2018.03.017 +Radhika Bhargava,A best-matching protocol for order fulfillment in re-configurable supply networks.,2016,82,Computers in Industry,,db/journals/cii/cii82.html#BhargavaLN16,https://doi.org/10.1016/j.compind.2016.07.001 +Qing Li,Model-based services convergence and multi-clouds integration.,2013,64,Computers in Industry,7,db/journals/cii/cii64.html#LiWLCDL13,https://doi.org/10.1016/j.compind.2013.05.003 +Virginie Goepp,Information system design and integrated enterprise modelling through a key-problem framework.,2008,59,Computers in Industry,7,db/journals/cii/cii59.html#GoeppKA08,https://doi.org/10.1016/j.compind.2007.12.011 +Seshadhri Srinivasan,Model checking response * in Networked Automation Systems using jitter bounds.,2015,74,Computers in Industry,,db/journals/cii/cii74.html#SrinivasanBVR15,https://doi.org/10.1016/j.compind.2015.06.012 +Szu-Hao Huang,Automated visual inspection in the semiconductor industry: A survey.,2015,66,Computers in Industry,,db/journals/cii/cii66.html#HuangP15,https://doi.org/10.1016/j.compind.2014.10.006 +C. W. Liu,A web services-based multidisciplinary design optimization framework for complex engineering systems with uncertainties.,2014,65,Computers in Industry,4,db/journals/cii/cii65.html#LiuJL14,https://doi.org/10.1016/j.compind.2014.01.003 +Shafina Bibi,Automated multi-feature human interaction recognition in complex environment.,2018,99,Computers in Industry,,db/journals/cii/cii99.html#BibiAS18,https://doi.org/10.1016/j.compind.2018.03.015 +Hans-Henrik Hvolby,Special issue: stimulating manufacturing excellence in small and medium enterprises.,2002,49,Computers in Industry,1,db/journals/cii/cii49.html#HvolbyT02,https://doi.org/10.1016/S0166-3615(02)00053-2 +Y. B. Bai,Object Boundary Encoding - a new vectorisation algorithm for engineering drawings.,2001,46,Computers in Industry,1,db/journals/cii/cii46.html#BaiX01,https://doi.org/10.1016/S0166-3615(01)00115-4 +Cecilia Zanni-Merk,Use of formal ontologies as a foundation for inventive design studies.,2011,62,Computers in Industry,3,db/journals/cii/cii62.html#Zanni-MerkCR11,https://doi.org/10.1016/j.compind.2010.09.007 +Hongbo Lan,Web-based quotation system for stereolithography parts.,2008,59,Computers in Industry,8,db/journals/cii/cii59.html#LanDHHL08,https://doi.org/10.1016/j.compind.2008.03.006 +Marc Zolghadri,Power-based supplier selection in product development projects.,2011,62,Computers in Industry,5,db/journals/cii/cii62.html#ZolghadriEZG11,https://doi.org/10.1016/j.compind.2010.12.001 +Tianlong Gu,A survey of Petri net applications in batch processes.,2002,47,Computers in Industry,1,db/journals/cii/cii47.html#GuB02,https://doi.org/10.1016/S0166-3615(01)00142-7 +Antonio J. Guillén,A framework for effective management of condition based maintenance programs in the context of industrial development of E-Maintenance strategies.,2016,82,Computers in Industry,,db/journals/cii/cii82.html#GuillenCGS16,https://doi.org/10.1016/j.compind.2016.07.003 +Ju Hyun Lee,Context-aware inference in ubiquitous residential environments.,2014,65,Computers in Industry,1,db/journals/cii/cii65.html#LeeLKWL14,https://doi.org/10.1016/j.compind.2013.08.005 +Bingyin Ren,Composite freeform surface reconstruction using recursive interpolating subdivision scheme.,2003,50,Computers in Industry,3,db/journals/cii/cii50.html#RenH03,https://doi.org/10.1016/S0166-3615(03)00017-4 +Wei Ming Chiew,A heterogeneous computing system for coupling 3D endomicroscopy with volume rendering in real-time image visualization.,2014,65,Computers in Industry,2,db/journals/cii/cii65.html#ChiewLQS14,https://doi.org/10.1016/j.compind.2013.10.002 +Pradeep K. Singh,Advanced optimal tolerance design of mechanical assemblies with interrelated dimension chains and process precision limits.,2005,56,Computers in Industry,2,db/journals/cii/cii56.html#SinghJJ05,https://doi.org/10.1016/j.compind.2004.06.008 +Lilia Gzara Yesilbas,Towards a knowledge repository for collaborative design process: focus on conflict management.,2004,55,Computers in Industry,3,db/journals/cii/cii55.html#YesilbasL04,https://doi.org/10.1016/j.compind.2004.08.009 +Usman Wajid,Designing and evaluating a system of document recognition to support interoperability among collaborative enterprises.,2013,64,Computers in Industry,5,db/journals/cii/cii64.html#WajidNMM13,https://doi.org/10.1016/j.compind.2013.03.003 +Rolando Trujillo-Rasua,Predictive protocol for the scalable identification of RFID tags through collaborative readers.,2012,63,Computers in Industry,6,db/journals/cii/cii63.html#Trujillo-RasuaSPD12,https://doi.org/10.1016/j.compind.2012.03.005 +Sergio Terzi,Simulation in the supply chain context: a survey.,2004,53,Computers in Industry,1,db/journals/cii/cii53.html#TerziC04,https://doi.org/10.1016/S0166-3615(03)00104-0 +Yongqiang Lyu,Dynamic evaluation model of coronary heart disease for ubiquitous healthcare.,2015,69,Computers in Industry,,db/journals/cii/cii69.html#LyuHWYTWA15,https://doi.org/10.1016/j.compind.2014.09.008 +Sandeep K. Sood,Wearable IoT sensor based healthcare system for identifying and controlling chikungunya virus.,2017,91,Computers in Industry,,db/journals/cii/cii91.html#SoodM17,https://doi.org/10.1016/j.compind.2017.05.006 +Sébastien Dubois,A dialectical based model coherent with inventive and optimization problems.,2009,60,Computers in Industry,8,db/journals/cii/cii60.html#DuboisEG09,https://doi.org/10.1016/j.compind.2009.05.020 +Juan D. Velásquez,Computer-based collaborative training for transportation security and emergency response.,2010,61,Computers in Industry,4,db/journals/cii/cii61.html#VelasquezYN10,https://doi.org/10.1016/j.compind.2009.12.007 +Timothy N. Volonakis,Camouflage assessment: Machine and human.,2018,99,Computers in Industry,,db/journals/cii/cii99.html#VolonakisMLBSC18,https://doi.org/10.1016/j.compind.2018.03.013 +Paloma Martínez,Turning user generated health-related content into actionable knowledge through text analytics services.,2016,78,Computers in Industry,,db/journals/cii/cii78.html#MartinezMSSLR16,https://doi.org/10.1016/j.compind.2015.10.006 +Rui Huang,An effective subpart retrieval approach of 3D CAD models for manufacturing process reuse.,2015,67,Computers in Industry,,db/journals/cii/cii67.html#HuangZBXH15,https://doi.org/10.1016/j.compind.2014.12.001 +Andrés Jaramillo,Fast dimensional inspection of deformable parts from partial views.,2013,64,Computers in Industry,9,db/journals/cii/cii64.html#JaramilloPB13,https://doi.org/10.1016/j.compind.2013.03.016 +N. Palluat,A neuro-fuzzy monitoring system: Application to flexible production systems.,2006,57,Computers in Industry,6,db/journals/cii/cii57.html#PalluatRZ06,https://doi.org/10.1016/j.compind.2006.02.013 +Hans-Henrik Hvolby,Supply chain planning opportunities for small and medium sized companies.,2002,49,Computers in Industry,1,db/journals/cii/cii49.html#HvolbyT02a,https://doi.org/10.1016/S0166-3615(02)00054-4 +Juan Terán,Integration in industrial automation based on multi-agent systems using cultural algorithms for optimizing the coordination mechanisms.,2017,91,Computers in Industry,,db/journals/cii/cii91.html#TeranAC17,https://doi.org/10.1016/j.compind.2017.05.002 +Kamel Rouibah,Change management in concurrent engineering from a parameter perspective.,2003,50,Computers in Industry,1,db/journals/cii/cii50.html#RouibahC03,https://doi.org/10.1016/S0166-3615(02)00138-0 +Chengen Wang,Insights from developing a multidisciplinary design and analysis environment.,2014,65,Computers in Industry,4,db/journals/cii/cii65.html#Wang14,https://doi.org/10.1016/j.compind.2014.02.015 +Jesús Muñuzuri,An allocation-scheduling heuristic to manage train traffic in an intermodal terminal.,2016,82,Computers in Industry,,db/journals/cii/cii82.html#MunuzuriDBE16,https://doi.org/10.1016/j.compind.2016.07.006 +Yan Chen,Data quality evaluation and improvement for prognostic modeling using visual assessment based data partitioning method.,2013,64,Computers in Industry,3,db/journals/cii/cii64.html#ChenZL13,https://doi.org/10.1016/j.compind.2012.10.005 +Knut Hinkelmann,A new paradigm for the continuous alignment of business and IT: Combining enterprise architecture modelling and enterprise ontology.,2016,79,Computers in Industry,,db/journals/cii/cii79.html#HinkelmannGKTMW16,https://doi.org/10.1016/j.compind.2015.07.009 +Evandro Leonardo Silva Teixeira,A novel framework to link Prognostics and Health Management and Product-Service Systems using online simulation.,2012,63,Computers in Industry,7,db/journals/cii/cii63.html#TeixeiraTA12,https://doi.org/10.1016/j.compind.2012.03.004 +Sajad Sabzi,A fast and accurate expert system for weed identification in potato crops using metaheuristic algorithms.,2018,98,Computers in Industry,,db/journals/cii/cii98.html#SabziAG18,https://doi.org/10.1016/j.compind.2018.03.001 +Jaewook Byun,Efficient and privacy-enhanced object traceability based on unified and linked EPCIS events.,2017,89,Computers in Industry,,db/journals/cii/cii89.html#ByunWK17,https://doi.org/10.1016/j.compind.2017.04.001 +Tapio Heikkilä,An agent architecture for manufacturing control: manAge.,2001,46,Computers in Industry,3,db/journals/cii/cii46.html#HeikkilaKVB01,https://doi.org/10.1016/S0166-3615(01)00130-0 +A. J. J. (Jan) Braaksma,A review of the use of asset information standards for collaboration in the process industry.,2011,62,Computers in Industry,3,db/journals/cii/cii62.html#BraaksmaKE11,https://doi.org/10.1016/j.compind.2010.10.003 +Yevgeniya Arushanyan,Lessons learned - Review of LCAs for ICT products and services.,2014,65,Computers in Industry,2,db/journals/cii/cii65.html#ArushanyanEF14,https://doi.org/10.1016/j.compind.2013.10.003 +Liye Guo,A computer-aided healthcare system for cataract classification and grading based on fundus image analysis.,2015,69,Computers in Industry,,db/journals/cii/cii69.html#GuoYPLL15,https://doi.org/10.1016/j.compind.2014.09.005 +Nicolas Navet,Validation of in-vehicle real-time applications.,2001,46,Computers in Industry,2,db/journals/cii/cii46.html#NavetS01,https://doi.org/10.1016/S0166-3615(01)00123-3 +Joong-In Kim,Matching indirect procurement process with different B2B e-procurement systems.,2004,53,Computers in Industry,2,db/journals/cii/cii53.html#KimS04,https://doi.org/10.1016/j.compind.2003.07.002 +Shusheng Zhang,A review of Internet-based product information sharing and visualization.,2004,54,Computers in Industry,1,db/journals/cii/cii54.html#ZhangSG04,https://doi.org/10.1016/j.compind.2003.09.002 +Hsing-Chia Kuo,Automation of heat bending in shipbuilding.,2002,48,Computers in Industry,2,db/journals/cii/cii48.html#KuoW02,https://doi.org/10.1016/S0166-3615(02)00013-1 +Virgilio Quintana,Re-engineering the Engineering Change Management process for a drawing-less environment.,2012,63,Computers in Industry,1,db/journals/cii/cii63.html#QuintanaRPK12,https://doi.org/10.1016/j.compind.2011.10.003 +Vildan Kocar,ADVICE: A virtual environment for Engineering Change Management.,2010,61,Computers in Industry,1,db/journals/cii/cii61.html#KocarA10,https://doi.org/10.1016/j.compind.2009.05.008 +Juequan Chen,Real-time monitoring of high-power disk laser welding based on support vector machine.,2018,94,Computers in Industry,,db/journals/cii/cii94.html#ChenWGW18,https://doi.org/10.1016/j.compind.2017.10.003 +Milton Borsato,Bridging the gap between product lifecycle management and sustainability in manufacturing through ontology building.,2014,65,Computers in Industry,2,db/journals/cii/cii65.html#Borsato14,https://doi.org/10.1016/j.compind.2013.11.003 +S. H. Choi,RFID tag data processing in manufacturing for track-and-trace anti-counterfeiting.,2015,68,Computers in Industry,,db/journals/cii/cii68.html#ChoiYCY15,https://doi.org/10.1016/j.compind.2015.01.004 +V. K. Janardanan,Collaborative product structure management for assembly modeling.,2008,59,Computers in Industry,8,db/journals/cii/cii59.html#JanardananAR08,https://doi.org/10.1016/j.compind.2008.06.005 +Runhua Tan,Eliminating technical obstacles in innovation pipelines using CAIs.,2011,62,Computers in Industry,4,db/journals/cii/cii62.html#Tan11,https://doi.org/10.1016/j.compind.2010.12.004 +Eric W. T. Ngai,Examining the critical success factors in the adoption of enterprise resource planning.,2008,59,Computers in Industry,6,db/journals/cii/cii59.html#NgaiLW08,https://doi.org/10.1016/j.compind.2007.12.001 +Virginie Fortineau,Improving the interoperability of industrial information systems with description logic-based models - The state of the art.,2013,64,Computers in Industry,4,db/journals/cii/cii64.html#FortineauPL13,https://doi.org/10.1016/j.compind.2013.01.001 +José Barbosa,Dynamic self-organization in holonic multi-agent manufacturing systems: The ADACOR evolution.,2015,66,Computers in Industry,,db/journals/cii/cii66.html#BarbosaLAT15,https://doi.org/10.1016/j.compind.2014.10.011 +Marcin Malesa,Application of 3D digital image correlation in maintenance and process control in industry.,2013,64,Computers in Industry,9,db/journals/cii/cii64.html#MalesaMTSKS13,https://doi.org/10.1016/j.compind.2013.03.012 +Dencho N. Batanov,Advanced Web technologies for industrial applications.,2003,50,Computers in Industry,2,db/journals/cii/cii50.html#BatanovE03,https://doi.org/10.1016/S0166-3615(02)00114-8 +Carlos Mera,Automatic visual inspection: An approach with multi-instance learning.,2016,83,Computers in Industry,,db/journals/cii/cii83.html#MeraOBM16,https://doi.org/10.1016/j.compind.2016.09.002 +Thomas Gulledge,Condition-based Maintenance and the product improvement process.,2010,61,Computers in Industry,9,db/journals/cii/cii61.html#GulledgeHI10,https://doi.org/10.1016/j.compind.2010.07.007 +Muqi Wulan,A fuzzy logic based system for risk analysis and evaluation within enterprise collaborations.,2012,63,Computers in Industry,8,db/journals/cii/cii63.html#WulanP12,https://doi.org/10.1016/j.compind.2012.08.012 +Thomas Gulledge,B2B eMarketplaces and small- and medium-sized enterprises.,2002,49,Computers in Industry,1,db/journals/cii/cii49.html#Gulledge02,https://doi.org/10.1016/S0166-3615(02)00058-1 +Virginie Goepp,Design of information system architectures using a key-problem framework.,2006,57,Computers in Industry,2,db/journals/cii/cii57.html#GoeppKG06,https://doi.org/10.1016/j.compind.2005.09.001 +Séverine Blanc,Evolution management towards interoperable supply chains using performance measurement.,2007,58,Computers in Industry,7,db/journals/cii/cii58.html#BlancDV07,https://doi.org/10.1016/j.compind.2007.05.011 +Anna Formica,Semantic search for matching user requests with profiled enterprises.,2013,64,Computers in Industry,3,db/journals/cii/cii64.html#FormicaMPT13,https://doi.org/10.1016/j.compind.2012.09.007 +Petri Kannisto,System architecture for mastering machine parameter optimisation.,2017,85,Computers in Industry,,db/journals/cii/cii85.html#KannistoHK17,https://doi.org/10.1016/j.compind.2016.12.006 +Phillip N. Azariadis,An evolutionary algorithm for generating planar developments of arbitrarily curved surfaces.,2002,47,Computers in Industry,3,db/journals/cii/cii47.html#AzariadisNA02,https://doi.org/10.1016/S0166-3615(01)00155-5 +Lu Han,Detecting work-related stress with a wearable device.,2017,90,Computers in Industry,,db/journals/cii/cii90.html#HanZCZYZ17,https://doi.org/10.1016/j.compind.2017.05.004 +Joost R. Duflou,Computer aided process planning for sheet metal bending: A state of the art.,2005,56,Computers in Industry,7,db/journals/cii/cii56.html#DuflouVA05,https://doi.org/10.1016/j.compind.2005.04.001 +Yifeng Li,Research of EEG change feature under +Gz acceleration.,2015,70,Computers in Industry,,db/journals/cii/cii70.html#LiYZZDW15,https://doi.org/10.1016/j.compind.2015.01.002 +Claudia Pinna,Effect of product lifecycle management on new product development performances: Evidence from the food industry.,2018,100,Computers in Industry,,db/journals/cii/cii100.html#PinnaGRSHT18,https://doi.org/10.1016/j.compind.2018.03.036 +T. W. Lau,A new fuzzy approach to improve fashion product development.,2006,57,Computers in Industry,1,db/journals/cii/cii57.html#LauHNC06,https://doi.org/10.1016/j.compind.2005.04.003 +Namchul Do,Application of OLAP to a PDM database for interactive performance evaluation of in-progress product development.,2014,65,Computers in Industry,4,db/journals/cii/cii65.html#Do14,https://doi.org/10.1016/j.compind.2014.01.014 +Muriati Mukhtar,A hierarchical classification of co-creation models and techniques to aid in product or service design.,2012,63,Computers in Industry,4,db/journals/cii/cii63.html#MukhtarIY12,https://doi.org/10.1016/j.compind.2012.02.012 +Selim Erol,Recalling the rationale of change from process model revision comparison - A change-pattern based approach.,2017,87,Computers in Industry,,db/journals/cii/cii87.html#Erol17,https://doi.org/10.1016/j.compind.2017.02.003 +Petri T. Helo,Integrated Vehicle Configuration System - Connecting the domains of mass customization.,2010,61,Computers in Industry,1,db/journals/cii/cii61.html#HeloXKJ10,https://doi.org/10.1016/j.compind.2009.07.006 +Sun-Woh Lye,Virtual design and testing of protective packaging buffers.,2004,54,Computers in Industry,2,db/journals/cii/cii54.html#LyeLC04,https://doi.org/10.1016/j.compind.2003.01.001 +Alessio Trentin,Sales configurator capabilities to avoid the product variety paradox: Construct development and validation.,2013,64,Computers in Industry,4,db/journals/cii/cii64.html#TrentinPF13,https://doi.org/10.1016/j.compind.2013.02.006 +Denis Cavallucci,Computer-supported innovation pipelines: Current research and trends.,2011,62,Computers in Industry,4,db/journals/cii/cii62.html#CavallucciL11,https://doi.org/10.1016/j.compind.2010.12.011 +Sunday Olusanya Olatunji,Modeling the permeability of carbonate reservoir using type-2 fuzzy logic systems.,2011,62,Computers in Industry,2,db/journals/cii/cii62.html#OlatunjiSR11,https://doi.org/10.1016/j.compind.2010.10.008 +Pieter De Leenheer,Business semantics management: A case study for competency-centric HRM.,2010,61,Computers in Industry,8,db/journals/cii/cii61.html#LeenheerCM10a,https://doi.org/10.1016/j.compind.2010.05.005 +Paula Jimena Ramos Giraldo,Measurement of the ripening rate on coffee branches by using 3D images in outdoor environments.,2018,99,Computers in Industry,,db/journals/cii/cii99.html#GiraldoAP18,https://doi.org/10.1016/j.compind.2018.03.024 +Bulut Aslan,The applicability and impact of Enterprise Resource Planning (ERP) systems: Results from a mixed method study on Make-To-Order (MTO) companies.,2015,70,Computers in Industry,,db/journals/cii/cii70.html#AslanSH15,https://doi.org/10.1016/j.compind.2014.10.003 +Zineb Simeu-Abazi,Monitoring and predictive maintenance: Modeling and analyse of fault latency.,2006,57,Computers in Industry,6,db/journals/cii/cii57.html#Simeu-AbaziB06,https://doi.org/10.1016/j.compind.2006.02.017 +Marcello Braglia,Computer-aided activity planning (CAAP) in large-scale projects with an application in the yachting industry.,2014,65,Computers in Industry,4,db/journals/cii/cii65.html#BragliaCF14,https://doi.org/10.1016/j.compind.2014.02.008 +Yuh-Jen Chen,Enabling collaborative product design through distributed engineering knowledge management.,2008,59,Computers in Industry,4,db/journals/cii/cii59.html#ChenCC08,https://doi.org/10.1016/j.compind.2007.10.001 +Gülçin Büyüközkan,A novel fuzzy multi-criteria decision framework for sustainable supplier selection with incomplete information.,2011,62,Computers in Industry,2,db/journals/cii/cii62.html#BuyukozkanC11,https://doi.org/10.1016/j.compind.2010.10.009 +Kai-Ying Chen,Using SVM based method for equipment fault detection in a thermal power plant.,2011,62,Computers in Industry,1,db/journals/cii/cii62.html#ChenCCL11,https://doi.org/10.1016/j.compind.2010.05.013 +Lyndon N. Smith,Innovative 3D and 2D machine vision methods for analysis of plants and crops in the field.,2018,97,Computers in Industry,,db/journals/cii/cii97.html#SmithZHHS18,https://doi.org/10.1016/j.compind.2018.02.002 +Rafael Gouriveau,Risk management - dependability tools and case-based reasoning integration using the object formalism.,2004,55,Computers in Industry,3,db/journals/cii/cii55.html#GouriveauN04,https://doi.org/10.1016/j.compind.2004.08.003 +Christian Noon,A system for rapid creation and assessment of conceptual large vehicle designs using immersive virtual reality.,2012,63,Computers in Industry,5,db/journals/cii/cii63.html#NoonZWOGD12,https://doi.org/10.1016/j.compind.2012.02.003 +Philipp Junghanns,Engineering of secure multi-cloud storage.,2016,83,Computers in Industry,,db/journals/cii/cii83.html#JunghannsFE16,https://doi.org/10.1016/j.compind.2016.09.001 +Monika Mital,Determinants of choice of semantic web based Software as a Service: An integrative framework in the context of e-procurement and ERP.,2014,65,Computers in Industry,5,db/journals/cii/cii65.html#MitalPR14,https://doi.org/10.1016/j.compind.2014.03.002 +Andrew Greasley,Building the hybrid organisation through ERP and enterprise social software.,2016,82,Computers in Industry,,db/journals/cii/cii82.html#GreasleyW16,https://doi.org/10.1016/j.compind.2016.05.007 +Jirawan Kloypayan,Material engagement analysis of different endmills for adaptive feedrate control in milling processes.,2002,47,Computers in Industry,1,db/journals/cii/cii47.html#KloypayanL02,https://doi.org/10.1016/S0166-3615(01)00136-1 +Benjamin Fabian,Privacy-preserving data infrastructure for smart home appliances based on the Octopus DHT.,2014,65,Computers in Industry,8,db/journals/cii/cii65.html#FabianF14,https://doi.org/10.1016/j.compind.2014.07.001 +Wen-Chang Ko,Construction of house of quality for new product planning: A 2-tuple fuzzy linguistic approach.,2015,73,Computers in Industry,,db/journals/cii/cii73.html#Ko15,https://doi.org/10.1016/j.compind.2015.07.008 +Johann Weichselbaum,Accurate 3D-vision-based obstacle detection for an autonomous train.,2013,64,Computers in Industry,9,db/journals/cii/cii64.html#WeichselbaumZGP13,https://doi.org/10.1016/j.compind.2013.03.015 +Erisa Karafili,An argumentation reasoning approach for data processing.,2018,94,Computers in Industry,,db/journals/cii/cii94.html#KarafiliSL18,https://doi.org/10.1016/j.compind.2017.09.002 +Mariela Rico,OntoQualitas: A framework for ontology quality assessment in information interchanges between heterogeneous systems.,2014,65,Computers in Industry,9,db/journals/cii/cii65.html#RicoCCG14,https://doi.org/10.1016/j.compind.2014.07.010 +Bernard Grabot,Special issue on Enterprise Resource Planning (ERP) systems.,2005,56,Computers in Industry,6,db/journals/cii/cii56.html#GrabotB05,https://doi.org/10.1016/j.compind.2005.02.003 +Radu-Emil Precup,A survey on industrial applications of fuzzy control.,2011,62,Computers in Industry,3,db/journals/cii/cii62.html#PrecupH11,https://doi.org/10.1016/j.compind.2010.10.001 +Qing Li,Product whole life-cycle and omni-channels data convergence oriented enterprise networks integration in a sensing environment.,2015,70,Computers in Industry,,db/journals/cii/cii70.html#LiLXFD15,https://doi.org/10.1016/j.compind.2015.01.011 +Borhen Louhichi,Maintaining consistency between CAD elements in collaborative design using association management and propagation.,2014,65,Computers in Industry,1,db/journals/cii/cii65.html#LouhichiR14,https://doi.org/10.1016/j.compind.2013.08.003 +François Pérès,Envisioning e-logistics developments: Making spare parts in situ and on demand: State of the art and guidelines for future developments.,2006,57,Computers in Industry,6,db/journals/cii/cii57.html#PeresN06,https://doi.org/10.1016/j.compind.2006.02.010 +Jianbo Liu,Similarity based method for manufacturing process performance prediction and diagnosis.,2007,58,Computers in Industry,6,db/journals/cii/cii58.html#LiuDNCL07,https://doi.org/10.1016/j.compind.2006.12.004 +Dietmar Posselt,Database support for evolving data in product design.,2002,48,Computers in Industry,1,db/journals/cii/cii48.html#PosseltH02,https://doi.org/10.1016/S0166-3615(02)00010-6 +Shan Wan,Process and knowledge management in a collaborative maintenance planning system for high value machine tools.,2017,84,Computers in Industry,,db/journals/cii/cii84.html#WanLGRT17,https://doi.org/10.1016/j.compind.2016.11.002 +Kwangyeol Ryu,Modeling and specifications of dynamic agents in fractal manufacturing systems.,2003,52,Computers in Industry,2,db/journals/cii/cii52.html#RyuSJ03,https://doi.org/10.1016/S0166-3615(03)00099-X +Hans-Jörg Bullinger,Towards user centred design (UCD) in architecture based on immersive virtual environments.,2010,61,Computers in Industry,4,db/journals/cii/cii61.html#BullingerBWB10,https://doi.org/10.1016/j.compind.2009.12.003 +Partha Priya Datta,A simulation study on maintainer resource utilization of a fast jet aircraft maintenance line under availability contract.,2013,64,Computers in Industry,5,db/journals/cii/cii64.html#DattaSR13,https://doi.org/10.1016/j.compind.2013.02.011 +Philippe Rauffet,A dynamic methodology and associated tools to assess organizational capabilities.,2014,65,Computers in Industry,1,db/journals/cii/cii65.html#RauffetCB14,https://doi.org/10.1016/j.compind.2013.08.006 +Robert W. Brennan,Metrics for evaluating distributed manufacturing control systems.,2003,51,Computers in Industry,2,db/journals/cii/cii51.html#BrennanN03,https://doi.org/10.1016/S0166-3615(03)00038-1 +Sudhaman Parthasarathy,Efficiency analysis of ERP packages - A customization perspective.,2016,82,Computers in Industry,,db/journals/cii/cii82.html#ParthasarathyS16,https://doi.org/10.1016/j.compind.2016.05.004 +Antonio Jimeno-Morenilla,GNG based foot reconstruction for custom footwear manufacturing.,2016,75,Computers in Industry,,db/journals/cii/cii75.html#Jimeno-Morenilla16,https://doi.org/10.1016/j.compind.2015.06.002 +Gülçin Büyüközkan,Digital Supply Chain: Literature review and a proposed framework for future research.,2018,97,Computers in Industry,,db/journals/cii/cii97.html#BuyukozkanG18,https://doi.org/10.1016/j.compind.2018.02.010 +Luis Ribeiro 0001,Collaborative routing of products using a self-organizing mechatronic agent framework - A simulation study.,2015,68,Computers in Industry,,db/journals/cii/cii68.html#RibeiroRVB15,https://doi.org/10.1016/j.compind.2014.12.003 +S. K. Kwok,Physimetric identification (Physi-ID) - Applying biometric concept in physical object identification.,2011,62,Computers in Industry,1,db/journals/cii/cii62.html#KwokNTL11,https://doi.org/10.1016/j.compind.2010.05.014 +C. N. Verdouw,Towards dynamic reference information models: Readiness for ICT mass customisation.,2010,61,Computers in Industry,9,db/journals/cii/cii61.html#VerdouwBTV10,https://doi.org/10.1016/j.compind.2010.07.008 +Aurelio Montalto,Combining aesthetics and engineering specifications for fashion-driven product design: A case study on spectacle frames.,2018,95,Computers in Industry,,db/journals/cii/cii95.html#MontaltoGBL18,https://doi.org/10.1016/j.compind.2017.12.003 +John Ryan,Process modeling for simulation.,2006,57,Computers in Industry,5,db/journals/cii/cii57.html#RyanH06,https://doi.org/10.1016/j.compind.2006.02.002 +Kwan Woo Kim,Hybrid genetic algorithm with adaptive abilities for resource-constrained multiple project scheduling.,2005,56,Computers in Industry,2,db/journals/cii/cii56.html#KimYYGY05,https://doi.org/10.1016/j.compind.2004.06.006 +Jianbo Yu,Intelligent monitoring and diagnosis of manufacturing processes using an integrated approach of KBANN and GA.,2008,59,Computers in Industry,5,db/journals/cii/cii59.html#YuXZ08,https://doi.org/10.1016/j.compind.2007.12.005 +Seung Hak Kuk,An e-Engineering framework based on service-oriented architecture and agent technologies.,2008,59,Computers in Industry,9,db/journals/cii/cii59.html#KukKLHP08,https://doi.org/10.1016/j.compind.2008.07.007 +San-Yih Hwang,Discovery of temporal patterns from process instances.,2004,53,Computers in Industry,3,db/journals/cii/cii53.html#HwangWY04,https://doi.org/10.1016/j.compind.2003.10.006 +C. N. Verdouw,A control model for object virtualization in supply chain management.,2015,68,Computers in Industry,,db/journals/cii/cii68.html#VerdouwBRV15,https://doi.org/10.1016/j.compind.2014.12.011 +Bojan R. Babic,A review of automated feature recognition with rule-based pattern recognition.,2008,59,Computers in Industry,4,db/journals/cii/cii59.html#BabicNM08,https://doi.org/10.1016/j.compind.2007.09.001 +Alex Mason,Peer-to-peer inventory management of returnable transport items: A design science approach.,2012,63,Computers in Industry,3,db/journals/cii/cii63.html#MasonSA12,https://doi.org/10.1016/j.compind.2012.01.007 +Mulat Alubel Abtew,Development of comfortable and well-fitted bra pattern for customized female soft body armor through 3D design process of adaptive bust on virtual mannequin.,2018,100,Computers in Industry,,db/journals/cii/cii100.html#AbtewBBLCC18,https://doi.org/10.1016/j.compind.2018.04.004 +Lars Mönch,Special Issue on Grand Challenges for Discrete Event Logistics Systems.,2011,62,Computers in Industry,6,db/journals/cii/cii62.html#MonchLMS11,https://doi.org/10.1016/j.compind.2011.04.005 +Dieter Van Nuffel,Multi-abstraction layered business process modeling.,2012,63,Computers in Industry,2,db/journals/cii/cii63.html#NuffelB12,https://doi.org/10.1016/j.compind.2011.12.001 +László Monostori,Digital enterprise solution for integrated production planning and control.,2010,61,Computers in Industry,2,db/journals/cii/cii61.html#MonostoriEKKKPV10,https://doi.org/10.1016/j.compind.2009.10.008 +Mélanie Noyel,Reconfiguration process for neuronal classification models: Application to a quality monitoring problem.,2016,83,Computers in Industry,,db/journals/cii/cii83.html#NoyelTTC16,https://doi.org/10.1016/j.compind.2016.09.004 +Yuh-Jen Chen,Demand-driven knowledge acquisition method for enhancing domain ontology integrity.,2014,65,Computers in Industry,7,db/journals/cii/cii65.html#ChenC14,https://doi.org/10.1016/j.compind.2014.05.003 +Hans-Henrik Hvolby,Technical and industrial issues of Advanced Planning and Scheduling (APS) systems.,2010,61,Computers in Industry,9,db/journals/cii/cii61.html#HvolbyS10,https://doi.org/10.1016/j.compind.2010.07.009 +Mike Vanderroost,The digitization of a food package's life cycle: Existing and emerging computer systems in the logistics and post-logistics phase.,2017,87,Computers in Industry,,db/journals/cii/cii87.html#VanderroostRVMB17a,https://doi.org/10.1016/j.compind.2017.01.004 +Selma Limam Mansar,Best practices in business process redesign: validation of a redesign framework.,2005,56,Computers in Industry,5,db/journals/cii/cii56.html#MansarR05,https://doi.org/10.1016/j.compind.2005.01.001 +Diyar Akay,Conceptual design evaluation using interval type-2 fuzzy information axiom.,2011,62,Computers in Industry,2,db/journals/cii/cii62.html#AkayKH11,https://doi.org/10.1016/j.compind.2010.10.007 +Sergio A. Cuenca,Hardware approach to tool path computation for STEP-NC enabled CNC: A case study of turning operations.,2011,62,Computers in Industry,5,db/journals/cii/cii62.html#CuencaJMM11,https://doi.org/10.1016/j.compind.2011.02.001 +Sobhi Mejjaouli,Cold supply chain logistics: System optimization for real-time rerouting transportation solutions.,2018,95,Computers in Industry,,db/journals/cii/cii95.html#MejjaouliB18,https://doi.org/10.1016/j.compind.2017.12.006 +Damir Vucina,Classification of 3D shape deviation using feature recognition operating on parameterization control points.,2014,65,Computers in Industry,6,db/journals/cii/cii65.html#VucinaCN14,https://doi.org/10.1016/j.compind.2014.04.001 +Joze Derganc,A machine vision system for measuring the eccentricity of bearings.,2003,50,Computers in Industry,1,db/journals/cii/cii50.html#DergancLP03,https://doi.org/10.1016/S0166-3615(02)00141-0 +Noura Faci,Web 2.0 applications in the workplace: How to ensure their proper use?,2017,88,Computers in Industry,,db/journals/cii/cii88.html#FaciMBUB17,https://doi.org/10.1016/j.compind.2017.03.003 +J. Hermosillo Worley,Adding decision support to workflow systems by reusable standard software components.,2002,49,Computers in Industry,1,db/journals/cii/cii49.html#WorleyRGG02,https://doi.org/10.1016/S0166-3615(02)00063-5 +Marcin Jamro,Testing communication tasks in distributed control systems with SysML and Timed Colored Petri Nets model.,2015,71,Computers in Industry,,db/journals/cii/cii71.html#JamroRR15,https://doi.org/10.1016/j.compind.2015.03.007 +Paulo Leitão,ADACOR: A holonic architecture for agile and adaptive manufacturing control.,2006,57,Computers in Industry,2,db/journals/cii/cii57.html#LeitaoR06,https://doi.org/10.1016/j.compind.2005.05.005 +Rafal Cupek,Agent-based manufacturing execution systems for short-series production scheduling.,2016,82,Computers in Industry,,db/journals/cii/cii82.html#CupekZHE16,https://doi.org/10.1016/j.compind.2016.07.009 +Erik Hofmann,Industry 4.0 and the current status as well as future prospects on logistics.,2017,89,Computers in Industry,,db/journals/cii/cii89.html#HofmannR17,https://doi.org/10.1016/j.compind.2017.04.002 +Bernard Kamsu-Foguem,Experience modeling with graphs encoded knowledge for construction industry.,2015,70,Computers in Industry,,db/journals/cii/cii70.html#Kamsu-FoguemA15,https://doi.org/10.1016/j.compind.2015.02.004 +Hsing-Pei Kao,An event-driven approach with makespan/cost tradeoff analysis for project portfolio scheduling.,2006,57,Computers in Industry,5,db/journals/cii/cii57.html#KaoWDK06,https://doi.org/10.1016/j.compind.2005.11.004 +Gregorio López,Modeling Smart Grid neighborhoods with the ENERsip ontology.,2015,70,Computers in Industry,,db/journals/cii/cii70.html#LopezCMSMF15,https://doi.org/10.1016/j.compind.2015.01.008 +Jean-Pierre Kruth,The use of finite state machines for task-based machine tool control.,2001,46,Computers in Industry,3,db/journals/cii/cii46.html#KruthGTV01,https://doi.org/10.1016/S0166-3615(01)00132-4 +Miguel Davia-Aracil,3D printing of functional anatomical insoles.,2018,95,Computers in Industry,,db/journals/cii/cii95.html#Davia-AracilHJM18,https://doi.org/10.1016/j.compind.2017.12.001 +Tao Jin,Efficient querying of large process model repositories.,2013,64,Computers in Industry,1,db/journals/cii/cii64.html#Jin0RHW13,https://doi.org/10.1016/j.compind.2012.09.008 +Luis M. Camarinha-Matos,Elements of a base VE infrastructure.,2003,51,Computers in Industry,2,db/journals/cii/cii51.html#Camarinha-MatosA03,https://doi.org/10.1016/S0166-3615(03)00033-2 +Tsung-Yi Chen,Developing a trust evaluation method between co-workers in virtual project team for enabling resource sharing and collaboration.,2008,59,Computers in Industry,6,db/journals/cii/cii59.html#ChenCC08a,https://doi.org/10.1016/j.compind.2008.01.001 +Juan C. Arbeláez-Estrada,Crowdsourcing Augmented Reality Environment (CARE) for aesthetic evaluation of products in conceptual stage.,2018,99,Computers in Industry,,db/journals/cii/cii99.html#Arbelaez-Estrada18,https://doi.org/10.1016/j.compind.2018.03.028 +Weiming Shen 0001,Editorial of the special issue on knowledge sharing in collaborative design environments.,2003,52,Computers in Industry,1,db/journals/cii/cii52.html#Shen03,https://doi.org/10.1016/S0166-3615(03)00064-2 +Liping Gao,Maintaining time and space consistencies in hybrid CAD environments: Framework and algorithms.,2008,59,Computers in Industry,9,db/journals/cii/cii59.html#GaoSZLG08,https://doi.org/10.1016/j.compind.2008.07.005 +Amar Kumar Behera,Tool path generation framework for accurate manufacture of complex 3D sheet metal parts using single point incremental forming.,2014,65,Computers in Industry,4,db/journals/cii/cii65.html#BeheraLD14,https://doi.org/10.1016/j.compind.2014.01.002 +Chun Wang,On the tradeoff between privacy and efficiency: A bidding mechanism for scheduling non-commercial services.,2012,63,Computers in Industry,6,db/journals/cii/cii63.html#WangDB12,https://doi.org/10.1016/j.compind.2012.01.012 +Isabelle Blasquez,Undo facilities for the extended z-buffer in NC machining simulation.,2004,53,Computers in Industry,2,db/journals/cii/cii53.html#BlasquezP04,https://doi.org/10.1016/S0166-3615(03)00147-7 +Yong-Ho Shin,Modeling and implementing a real-time scheduler for dual-armed cluster tools.,2001,45,Computers in Industry,1,db/journals/cii/cii45.html#ShinLKL01,https://doi.org/10.1016/S0166-3615(01)00078-1 +Jing Xu,Fostering continuous innovation in design with an integrated knowledge management approach.,2011,62,Computers in Industry,4,db/journals/cii/cii62.html#XuHCG11,https://doi.org/10.1016/j.compind.2010.12.005 +Wei Liu,Design and implementation of a generic nonconformance tracking and recovery (GINTR) system.,2006,57,Computers in Industry,7,db/journals/cii/cii57.html#LiuC06,https://doi.org/10.1016/j.compind.2005.11.005 +Martin Necaský,Linked data support for filing public contracts.,2014,65,Computers in Industry,5,db/journals/cii/cii65.html#NecaskyKMKSS14,https://doi.org/10.1016/j.compind.2013.12.006 +Sivaram Balasubramanian,An architecture for metamorphic control of holonic manufacturing systems.,2001,46,Computers in Industry,1,db/journals/cii/cii46.html#BalasubramanianBN01,https://doi.org/10.1016/S0166-3615(01)00101-4 +Vincent Bombardier,Contribution of fuzzy reasoning method to knowledge integration in a defect recognition system.,2007,58,Computers in Industry,4,db/journals/cii/cii58.html#BombardierMLV07,https://doi.org/10.1016/j.compind.2006.07.006 +G. Pedone,Model similarity evidence and interoperability affinity in cloud-ready Industry 4.0 technologies.,2018,100,Computers in Industry,,db/journals/cii/cii100.html#PedoneM18,https://doi.org/10.1016/j.compind.2018.05.003 +Türkay Dereli,Editorial.,2011,62,Computers in Industry,2,db/journals/cii/cii62.html#DereliBT11,https://doi.org/10.1016/j.compind.2010.10.005 +Lech Birek,A novel Big Data analytics and intelligent technique to predict driver's intent.,2018,99,Computers in Industry,,db/journals/cii/cii99.html#BirekGIDC18,https://doi.org/10.1016/j.compind.2018.03.025 +Ji-Hong Yan,Scheduling approach for concurrent product development processes.,2001,46,Computers in Industry,2,db/journals/cii/cii46.html#YanW01,https://doi.org/10.1016/S0166-3615(01)00120-8 +Alexandros Bousdekis,Enabling condition-based maintenance decisions with proactive event-driven computing.,2018,100,Computers in Industry,,db/journals/cii/cii100.html#BousdekisPMAM18,https://doi.org/10.1016/j.compind.2018.04.019 +Robert Sitnik,Segmentation of unsorted cloud of points data from full field optical measurement for metrological validation.,2012,63,Computers in Industry,1,db/journals/cii/cii63.html#SitnikB12,https://doi.org/10.1016/j.compind.2011.10.002 +Michael James Dibley,Software agent reasoning supporting non-intrusive building space usage monitoring.,2013,64,Computers in Industry,6,db/journals/cii/cii64.html#DibleyLRM13,https://doi.org/10.1016/j.compind.2013.03.008 +Christopher Nwagboso,Time compression design with decision support for intelligent transport systems deployment.,2004,54,Computers in Industry,3,db/journals/cii/cii54.html#NwagbosoGD04,https://doi.org/10.1016/j.compind.2003.10.008 +Johan Woxenius,Utilising more of the loading space in intermodal line trains - Measures and decision support.,2013,64,Computers in Industry,2,db/journals/cii/cii64.html#WoxeniusPD13,https://doi.org/10.1016/j.compind.2012.11.007 +S. H. Choi,A mechanised 3D scanning method for item-level radio frequency identification of palletised products.,2015,72,Computers in Industry,,db/journals/cii/cii72.html#ChoiYC15,https://doi.org/10.1016/j.compind.2015.04.001 +Vatcharaphun Rajsiri,Knowledge-based system for collaborative process specification.,2010,61,Computers in Industry,2,db/journals/cii/cii61.html#RajsiriLBP10,https://doi.org/10.1016/j.compind.2009.10.012 +Filip Caron,A comprehensive investigation of the applicability of process mining techniques for enterprise risk management.,2013,64,Computers in Industry,4,db/journals/cii/cii64.html#CaronVB13,https://doi.org/10.1016/j.compind.2013.02.001 +Paul Valckenaers,Performance measurement.,2007,58,Computers in Industry,7,db/journals/cii/cii58.html#Valckenaers07,https://doi.org/10.1016/j.compind.2007.05.001 +Hongbo Lan,Web-based rapid prototyping and manufacturing systems: A review.,2009,60,Computers in Industry,9,db/journals/cii/cii60.html#Lan09,https://doi.org/10.1016/j.compind.2009.05.003 +Andy L. Johnson,Large-scale Internet benchmarking: Technology and application in warehousing operations.,2010,61,Computers in Industry,3,db/journals/cii/cii61.html#JohnsonCM10,https://doi.org/10.1016/j.compind.2009.10.006 +Bailin Li,A low-complexity method for authoring an interactive virtual maintenance training system of hydroelectric generating equipment.,2018,100,Computers in Industry,,db/journals/cii/cii100.html#LiBHRL18,https://doi.org/10.1016/j.compind.2018.04.018 +Xiaoguang Deng,Product decomposition using design structure matrix for intellectual property protection in supply chain outsourcing.,2012,63,Computers in Industry,6,db/journals/cii/cii63.html#DengHTF12,https://doi.org/10.1016/j.compind.2012.03.007 +Lorenzo Fiorineschi,Enhancing functional decomposition and morphology with TRIZ: Literature review.,2018,94,Computers in Industry,,db/journals/cii/cii94.html#FiorineschiFR18,https://doi.org/10.1016/j.compind.2017.09.004 +Jorge Rivera,FPGA-based startup for AC electric drives: Application to a greenhouse ventilation system.,2015,74,Computers in Industry,,db/journals/cii/cii74.html#RiveraROFB15,https://doi.org/10.1016/j.compind.2015.06.011 +Paul Valckenaers,MAS coordination and control based on stigmergy.,2007,58,Computers in Industry,7,db/journals/cii/cii58.html#ValckenaersHGVB07,https://doi.org/10.1016/j.compind.2007.05.003 +Georgios P. Dimitropoulos,Agility index of automatic production systems: Reconfigurable logic and open source as agility enablers.,2009,60,Computers in Industry,4,db/journals/cii/cii60.html#Dimitropoulos09,https://doi.org/10.1016/j.compind.2009.01.007 +Kee-hung Lai,Institutional isomorphism and the adoption of information technology for supply chain management.,2006,57,Computers in Industry,1,db/journals/cii/cii57.html#LaiWC06,https://doi.org/10.1016/j.compind.2005.05.002 +Kiran Jude Fernandes,Immersive learning system for manufacturing industries.,2003,51,Computers in Industry,1,db/journals/cii/cii51.html#FernandesRE03,https://doi.org/10.1016/S0166-3615(03)00027-7 +Olivier Kuhn,Framework for the support of knowledge-based engineering template update.,2012,63,Computers in Industry,5,db/journals/cii/cii63.html#KuhnDGC12,https://doi.org/10.1016/j.compind.2012.01.008 +Min Wang,An algorithm for transforming design text ROM diagram into FBS model.,2013,64,Computers in Industry,5,db/journals/cii/cii64.html#WangZCE13,https://doi.org/10.1016/j.compind.2013.02.007 +Mario Collotta,A fuzzy approach for power savings in both infrastructure and ad hoc WLANs.,2018,99,Computers in Industry,,db/journals/cii/cii99.html#CollottaFR18,https://doi.org/10.1016/j.compind.2018.03.031 +Yongsheng Ma,Collaborative feature-based design via operations with a fine-grain product database.,2009,60,Computers in Industry,6,db/journals/cii/cii60.html#MaTAC09,https://doi.org/10.1016/j.compind.2009.02.013 +Hai Quoc Le,Association rule hiding in risk management for retail supply chain collaboration.,2013,64,Computers in Industry,7,db/journals/cii/cii64.html#LeANA13,https://doi.org/10.1016/j.compind.2013.04.011 +Rui Wang 0024,Formal modeling and synthesis of programmable logic controllers.,2011,62,Computers in Industry,1,db/journals/cii/cii62.html#WangSZG11,https://doi.org/10.1016/j.compind.2010.05.015 +Jisoo Jung,An integration architecture for knowledge management systems and business process management systems.,2007,58,Computers in Industry,1,db/journals/cii/cii58.html#JungCS07,https://doi.org/10.1016/j.compind.2006.03.001 +Jui-Sheng Chou,Estimating software project effort for manufacturing firms.,2013,64,Computers in Industry,6,db/journals/cii/cii64.html#ChouW13,https://doi.org/10.1016/j.compind.2013.04.002 +Lars Hvam,CRC cards for product modelling.,2003,50,Computers in Industry,1,db/journals/cii/cii50.html#HvamRH03,https://doi.org/10.1016/S0166-3615(02)00143-4 +Dusan Tatic,The application of augmented reality technologies for the improvement of occupational safety in an industrial environment.,2017,85,Computers in Industry,,db/journals/cii/cii85.html#TaticT17,https://doi.org/10.1016/j.compind.2016.11.004 +Aurelio Montalto,An inspection system to master dimensional and technological variability of fashion-related products: A case study in the eyewear industry.,2016,83,Computers in Industry,,db/journals/cii/cii83.html#MontaltoGBL16,https://doi.org/10.1016/j.compind.2016.09.007 +Raymond F. Boykin,Enterprise resource planning software: a solution to the return material authorization problem.,2001,45,Computers in Industry,1,db/journals/cii/cii45.html#Boykin01,https://doi.org/10.1016/S0166-3615(01)00083-5 +Peter Nielsen,Analyzing and evaluating product demand interdependencies.,2010,61,Computers in Industry,9,db/journals/cii/cii61.html#NielsenNS10,https://doi.org/10.1016/j.compind.2010.07.012 +Alessandro Cardillo,Computer-aided embodiment design through the hybridization of mono objective optimizations for efficient innovation process.,2011,62,Computers in Industry,4,db/journals/cii/cii62.html#CardilloCFR11,https://doi.org/10.1016/j.compind.2010.12.008 +Txomin Nieva,A conceptual model for remote data acquisition systems.,2002,47,Computers in Industry,2,db/journals/cii/cii47.html#NievaW02,https://doi.org/10.1016/S0166-3615(01)00145-2 +Sangwon Lee,The effects of usability and web design attributes on user preference for e-commerce web sites.,2010,61,Computers in Industry,4,db/journals/cii/cii61.html#LeeK10,https://doi.org/10.1016/j.compind.2009.12.004 +Gert Zülch,Simulation-supported change process for product customization - A case study in a garment company.,2011,62,Computers in Industry,6,db/journals/cii/cii62.html#ZulchKB11,https://doi.org/10.1016/j.compind.2011.04.006 +C. K. M. Lee,Analyze the healthcare service requirement using fuzzy QFD.,2015,74,Computers in Industry,,db/journals/cii/cii74.html#LeeRYCI15,https://doi.org/10.1016/j.compind.2015.08.005 +Rafael Pereira,Cloud based real-time collaborative filtering for item-item recommendations.,2014,65,Computers in Industry,2,db/journals/cii/cii65.html#PereiraLBMP14,https://doi.org/10.1016/j.compind.2013.11.005 +Guido Maione,A soft computing approach for task contracting in multi-agent manufacturing control.,2003,52,Computers in Industry,3,db/journals/cii/cii52.html#MaioneN03,https://doi.org/10.1016/S0166-3615(03)00127-1 +L. H. Wu,An adaptive multi-parameter based dispatching strategy for single-loop interbay material handling systems.,2011,62,Computers in Industry,2,db/journals/cii/cii62.html#WuMZ11,https://doi.org/10.1016/j.compind.2010.10.010 +Bernard Kamsu-Foguem,Knowledge formalization in experience feedback processes: An ontology-based approach.,2008,59,Computers in Industry,7,db/journals/cii/cii59.html#FoguemCBG08,https://doi.org/10.1016/j.compind.2007.12.014 +Jinsheng Kang,Instant 3D design concept generation and visualization by real-time hand gesture recognition.,2013,64,Computers in Industry,7,db/journals/cii/cii64.html#KangZQWW13,https://doi.org/10.1016/j.compind.2013.04.012 +Yiwei Gong,An interoperable architecture and principles for implementing strategy and policy in operational processes.,2013,64,Computers in Industry,8,db/journals/cii/cii64.html#GongJ13,https://doi.org/10.1016/j.compind.2013.06.018 +Noel Leon,Computer aided innovation.,2009,60,Computers in Industry,8,db/journals/cii/cii60.html#LeonC09,https://doi.org/10.1016/j.compind.2009.05.021 +Vicente Morell-Giménez,Efficient tool path computation using multi-core GPUs.,2013,64,Computers in Industry,1,db/journals/cii/cii64.html#Morell-GimenezJG13,https://doi.org/10.1016/j.compind.2012.09.009 +Edmond Wai Yan So,3DComplete: Efficient completeness inspection using a 2.5D color scanner.,2013,64,Computers in Industry,9,db/journals/cii/cii64.html#SoMMTM13,https://doi.org/10.1016/j.compind.2013.03.014 +S. H. Choi,Item-level RFID for enhancement of customer shopping experience in apparel retail.,2015,71,Computers in Industry,,db/journals/cii/cii71.html#ChoiYYC15,https://doi.org/10.1016/j.compind.2015.03.003 +Kyunglag Kwon,A real time process management system using RFID data mining.,2014,65,Computers in Industry,4,db/journals/cii/cii65.html#KwonKYSC14,https://doi.org/10.1016/j.compind.2014.02.007 +Russ M. Dabbas,Mining semiconductor manufacturing data for productivity improvement - an integrated relational database approach.,2001,45,Computers in Industry,1,db/journals/cii/cii45.html#DabbasC01,https://doi.org/10.1016/S0166-3615(01)00079-3 +M. M. T. Giebels,Building holarchies for concurrent manufacturing planning and control in EtoPlan.,2001,46,Computers in Industry,3,db/journals/cii/cii46.html#GiebelsKZ01,https://doi.org/10.1016/S0166-3615(01)00129-4 +Wei Xiang,Agent-based composable simulation for virtual prototyping of fluid power system.,2004,54,Computers in Industry,3,db/journals/cii/cii54.html#XiangFT04,https://doi.org/10.1016/j.compind.2003.12.001 +Chih-Hsing Chu,Economical green product design based on simplified computer-aided product structure variation.,2009,60,Computers in Industry,7,db/journals/cii/cii60.html#ChuLLC09,https://doi.org/10.1016/j.compind.2009.02.003 +Yiqian Cui,Discrete Event Logistics Systems (DELS) simulation modeling incorporating two-step Remaining Useful Life (RUL) estimation.,2015,72,Computers in Industry,,db/journals/cii/cii72.html#CuiSW15,https://doi.org/10.1016/j.compind.2015.04.003 +Hao Zhong,Telerobot-enabled HUB-CI model for collaborative lifecycle management of design and prototyping.,2014,65,Computers in Industry,4,db/journals/cii/cii65.html#ZhongWN14,https://doi.org/10.1016/j.compind.2013.12.011 +Robin Chavanne,Functional tolerancing: Virtual material condition on complex junctions.,2012,63,Computers in Industry,3,db/journals/cii/cii63.html#ChavanneA12,https://doi.org/10.1016/j.compind.2011.10.004 +Chin-Bin Wang,Application of ART neural network to development of technology for functional feature-based reference design retrieval.,2005,56,Computers in Industry,5,db/journals/cii/cii56.html#WangCCC05a,https://doi.org/10.1016/j.compind.2004.12.004 +Eren özceylan,Evaluation of freight villages: A GIS-based multi-criteria decision analysis.,2016,76,Computers in Industry,,db/journals/cii/cii76.html#OzceylanETKD16,https://doi.org/10.1016/j.compind.2015.12.003 +Reddy B. Gottipolu,A simplified and efficient representation for evaluation and selection of assembly sequences.,2003,50,Computers in Industry,3,db/journals/cii/cii50.html#GottipoluG03,https://doi.org/10.1016/S0166-3615(03)00015-0 +Sarra Mamoghli,"An operational ""Risk Factor Driven"" approach for the mitigation and monitoring of the ""Misalignment Risk"" in Enterprise Resource Planning projects.",2015,70,Computers in Industry,,db/journals/cii/cii70.html#MamoghliGB15,https://doi.org/10.1016/j.compind.2015.01.010 +Weiming Shen 0001,Computer supported collaborative design: Retrospective and perspective.,2008,59,Computers in Industry,9,db/journals/cii/cii59.html#ShenHL08,https://doi.org/10.1016/j.compind.2008.07.001 +Hasan Balfaqih,Review of supply chain performance measurement systems: 1998-2015.,2016,82,Computers in Industry,,db/journals/cii/cii82.html#BalfaqihNSA16,https://doi.org/10.1016/j.compind.2016.07.002 +Gerardo Acosta,Genetic algorithms and fuzzy control: a practical synergism for industrial applications.,2003,52,Computers in Industry,2,db/journals/cii/cii52.html#AcostaT03,https://doi.org/10.1016/S0166-3615(03)00102-7 +Ying Daisy Wang,WebBlow: a Web/agent-based multidisciplinary design optimization environment.,2003,52,Computers in Industry,1,db/journals/cii/cii52.html#WangSG03,https://doi.org/10.1016/S0166-3615(03)00066-6 +Henrik Sternberg,The efficiency potential of ICT in haulier operations.,2014,65,Computers in Industry,8,db/journals/cii/cii65.html#SternbergPH14,https://doi.org/10.1016/j.compind.2014.07.002 +Donald R. Chand,A balanced scorecard based framework for assessing the strategic impacts of ERP systems.,2005,56,Computers in Industry,6,db/journals/cii/cii56.html#ChandHHOV05,https://doi.org/10.1016/j.compind.2005.02.011 +Mohamed Khalgui,A deployment methodology of real-time industrial control applications in distributed controllers.,2008,59,Computers in Industry,5,db/journals/cii/cii59.html#Khalgui08,https://doi.org/10.1016/j.compind.2007.12.008 +Salem Y. Al-Agtash,Electricity agents in smart grid markets.,2013,64,Computers in Industry,3,db/journals/cii/cii64.html#Al-Agtash13,https://doi.org/10.1016/j.compind.2012.10.009 +Dunbing Tang,STEP-based product modeling for concurrent stamped part and die development.,2001,46,Computers in Industry,1,db/journals/cii/cii46.html#TangZLC01,https://doi.org/10.1016/S0166-3615(01)00116-6 +Marco Macchi,Information requirements for e-maintenance strategic planning: A benchmark study in complex production systems.,2006,57,Computers in Industry,6,db/journals/cii/cii57.html#MacchiG06,https://doi.org/10.1016/j.compind.2006.02.015 +John Fox,OpenClinical.net: A platform for creating and sharing knowledge and promoting best practice in healthcare.,2015,66,Computers in Industry,,db/journals/cii/cii66.html#FoxGKST15,https://doi.org/10.1016/j.compind.2014.10.001 +Paul Valckenaers,Predicting the unexpected.,2011,62,Computers in Industry,6,db/journals/cii/cii62.html#ValckenaersBBGBP11,https://doi.org/10.1016/j.compind.2011.04.011 +Filippo Visintin,Providing integrated solutions in the professional printing industry: The case of Océ.,2012,63,Computers in Industry,4,db/journals/cii/cii63.html#Visintin12,https://doi.org/10.1016/j.compind.2012.02.010 +Kunpeng Zhu,3D CAD model retrieval with perturbed Laplacian spectra.,2012,63,Computers in Industry,1,db/journals/cii/cii63.html#ZhuWLL12,https://doi.org/10.1016/j.compind.2011.09.003 +Matteo Mario Savino,Dynamic workforce allocation in a constrained flow shop with multi-agent system.,2014,65,Computers in Industry,6,db/journals/cii/cii65.html#SavinoBM14,https://doi.org/10.1016/j.compind.2014.02.016 +Ping Zhu,Metamodeling development for reliability-based design optimization of automotive body structure.,2011,62,Computers in Industry,7,db/journals/cii/cii62.html#ZhuZC11,https://doi.org/10.1016/j.compind.2011.05.008 +Osman Ali,Towards online planning for open-air engineering processes.,2013,64,Computers in Industry,3,db/journals/cii/cii64.html#AliVBGVO13,https://doi.org/10.1016/j.compind.2012.10.010 +Aiko Frank,A customizable shared information space to support concurrent design.,2002,48,Computers in Industry,1,db/journals/cii/cii48.html#FrankM02,https://doi.org/10.1016/S0166-3615(02)00009-X +John Bradford,A non-linear redesign methodology for manufacturing systems in SMEs.,2002,49,Computers in Industry,1,db/journals/cii/cii49.html#BradfordC02,https://doi.org/10.1016/S0166-3615(02)00055-6 +Mohamed-Zied Ouertani,"Corrigendum to ""Supporting conflict management in collaborative design: An approach to assess engineering change impacts"" [Computers in Industry 59 (2008) 882-893].",2010,61,Computers in Industry,5,db/journals/cii/cii61.html#OuertaniG10,https://doi.org/10.1016/j.compind.2010.04.002 +Hany Omar,Towards an automated photogrammetry-based approach for monitoring and controlling construction site activities.,2018,98,Computers in Industry,,db/journals/cii/cii98.html#OmarMK18,https://doi.org/10.1016/j.compind.2018.03.012 +Michel Lutz,Information Technologies capacity planning in manufacturing systems: Proposition for a modelling process and application in the semiconductor industry.,2012,63,Computers in Industry,7,db/journals/cii/cii63.html#LutzBR12,https://doi.org/10.1016/j.compind.2012.03.003 +K. K. Leong,A security model for distributed product data management system.,2003,50,Computers in Industry,2,db/journals/cii/cii50.html#LeongYL03,https://doi.org/10.1016/S0166-3615(02)00119-7 +David Romero,Future perspectives on next generation enterprise information systems.,2016,79,Computers in Industry,,db/journals/cii/cii79.html#RomeroV16,https://doi.org/10.1016/j.compind.2016.02.001 +Amadou Coulibaly,Product modeling framework for behavioral performance evaluation at design stage.,2007,58,Computers in Industry,6,db/journals/cii/cii58.html#CoulibalyMA07,https://doi.org/10.1016/j.compind.2006.12.005 +Francesco Bianconi,A sequential machine vision procedure for assessing paper impurities.,2014,65,Computers in Industry,2,db/journals/cii/cii65.html#BianconiC0S14,https://doi.org/10.1016/j.compind.2013.12.001 +Wenai Song,Multiple facial image features-based recognition for the automatic diagnosis of turner syndrome.,2018,100,Computers in Industry,,db/journals/cii/cii100.html#SongLCPYPDCW18,https://doi.org/10.1016/j.compind.2018.03.021 +M. Bertoni,PLM paradigm: How to lead BPR within the Product Development field.,2009,60,Computers in Industry,7,db/journals/cii/cii60.html#BertoniBCRR09,https://doi.org/10.1016/j.compind.2009.02.004 +Hung-da Wan,Decision support for lean practitioners: A web-based adaptive assessment approach.,2009,60,Computers in Industry,4,db/journals/cii/cii60.html#WanC09,https://doi.org/10.1016/j.compind.2009.01.001 +Chung-Shing Wang,STL rapid prototyping bio-CAD model for CT medical image segmentation.,2010,61,Computers in Industry,3,db/journals/cii/cii61.html#WangWL10,https://doi.org/10.1016/j.compind.2009.09.005 +Peter Hehenberger,"Editorial Special Issue: ""IT-support for the development and integration of Cyber Physical System in industry"".",2017,86,Computers in Industry,,db/journals/cii/cii86.html#HehenbergerE17,https://doi.org/10.1016/j.compind.2016.12.002 +Daniele Bacciotti,An original design approach for stimulating the ideation of new product features.,2016,75,Computers in Industry,,db/journals/cii/cii75.html#BacciottiBR16,https://doi.org/10.1016/j.compind.2015.06.004 +M. B. Nor Shah,A new error handling algorithm for controller area network in networked control system.,2013,64,Computers in Industry,8,db/journals/cii/cii64.html#ShahHPD13,https://doi.org/10.1016/j.compind.2013.05.008 +Tonci Grubic,Remote monitoring technology and servitization: Exploring the relationship.,2018,100,Computers in Industry,,db/journals/cii/cii100.html#Grubic18,https://doi.org/10.1016/j.compind.2018.05.002 +Giovanny Mauricio Tarazona Bermúdez,Reverse electronic auction web tool for B2B.,2014,65,Computers in Industry,5,db/journals/cii/cii65.html#BermudezBMAR14,https://doi.org/10.1016/j.compind.2013.12.008 +M. S. Shunmugam,A method of preliminary planning for rotational components with C-axis features using genetic algorithm.,2002,48,Computers in Industry,3,db/journals/cii/cii48.html#ShunmugamMR02,https://doi.org/10.1016/S0166-3615(02)00039-8 +Sokratis Kartakis,A design-and-play approach to accessible user interface development in Ambient Intelligence environments.,2010,61,Computers in Industry,4,db/journals/cii/cii61.html#KartakisS10,https://doi.org/10.1016/j.compind.2009.12.002 +Sihem Mallek,The application of interoperability requirement specification and verification to collaborative processes in industry.,2012,63,Computers in Industry,7,db/journals/cii/cii63.html#MallekDC12,https://doi.org/10.1016/j.compind.2012.03.002 +Hervé Panetto,Editorial.,2010,61,Computers in Industry,2,db/journals/cii/cii61.html#Panetto10,https://doi.org/10.1016/j.compind.2009.10.007 +Kiyoul Lee,Simultaneous control of vehicle routing and inventory for dynamic inbound supply chain.,2014,65,Computers in Industry,6,db/journals/cii/cii65.html#LeeCJ14,https://doi.org/10.1016/j.compind.2014.03.001 +Inneke Van Nieuwenhuyse,Advanced resource planning as a decision support module for ERP.,2011,62,Computers in Industry,1,db/journals/cii/cii62.html#NieuwenhuyseBLV11,https://doi.org/10.1016/j.compind.2010.05.017 +Olivia Penas,Multi-scale approach from mechatronic to Cyber-Physical Systems for the design of manufacturing systems.,2017,86,Computers in Industry,,db/journals/cii/cii86.html#PenasPPH17,https://doi.org/10.1016/j.compind.2016.12.001 +Gerben G. Meyer,Intelligent Products: A survey.,2009,60,Computers in Industry,3,db/journals/cii/cii60.html#MeyerFH09,https://doi.org/10.1016/j.compind.2008.12.005 +Hongbo Lan,A web-based manufacturing service system for rapid product development.,2004,54,Computers in Industry,1,db/journals/cii/cii54.html#LanDHHL04,https://doi.org/10.1016/j.compind.2003.07.006 +Nursel öztürk,Neural network based non-standard feature recognition to integrate CAD and CAM.,2001,45,Computers in Industry,2,db/journals/cii/cii45.html#OzturkO01,https://doi.org/10.1016/S0166-3615(01)00090-2 +Javier Silvestre-Blanes,802.11n Performance analysis for a real multimedia industrial application.,2015,66,Computers in Industry,,db/journals/cii/cii66.html#Silvestre-BlanesBSF15,https://doi.org/10.1016/j.compind.2014.08.003 +Gofran Shukair,Towards semantically interoperable metadata repositories: The Asset Description Metadata Schema.,2013,64,Computers in Industry,1,db/journals/cii/cii64.html#ShukairLPS13,https://doi.org/10.1016/j.compind.2012.09.003 +Reza Rezaei,Interoperability evaluation models: A systematic review.,2014,65,Computers in Industry,1,db/journals/cii/cii65.html#RezaeiCLA14,https://doi.org/10.1016/j.compind.2013.09.001 +W. Zhao,OWL/SWRL representation methodology for EXPRESS-driven product information model: Part I. Implementation methodology.,2008,59,Computers in Industry,6,db/journals/cii/cii59.html#ZhaoL08,https://doi.org/10.1016/j.compind.2008.02.002 +Fei Gao,Identifying functional modules using generalized directed graphs: Definition and application.,2010,61,Computers in Industry,3,db/journals/cii/cii61.html#GaoXS10,https://doi.org/10.1016/j.compind.2009.09.007 +Tor J. Larsen,A multilevel explanation of end-user computing satisfaction with an enterprise resource planning system within an international manufacturing organization.,2009,60,Computers in Industry,9,db/journals/cii/cii60.html#Larsen09,https://doi.org/10.1016/j.compind.2009.05.004 +Hossam A. Gabbar,Computer-aided plant enterprise modeling environment (CAPE-ModE) - design initiatives.,2002,47,Computers in Industry,1,db/journals/cii/cii47.html#GabbarSS02,https://doi.org/10.1016/S0166-3615(01)00139-7 +Wei Yan 0001,A data-mining approach for product conceptualization in a web-based architecture.,2009,60,Computers in Industry,1,db/journals/cii/cii60.html#YanCHM09,https://doi.org/10.1016/j.compind.2008.09.003 +Kamal Chaharsooghi,Developing life-cycle phases for the DoDAF using ISO15704 Annex A (GERAM).,2011,62,Computers in Industry,3,db/journals/cii/cii62.html#ChaharsooghiA11,https://doi.org/10.1016/j.compind.2010.07.002 +Roger Jianxin Jiao,Development of an electronic configure-to-order platform for customized product development.,2006,57,Computers in Industry,3,db/journals/cii/cii57.html#JiaoH06,https://doi.org/10.1016/j.compind.2005.12.001 +Johan Ullberg,A language for interoperability modeling and prediction.,2012,63,Computers in Industry,8,db/journals/cii/cii63.html#UllbergJB12,https://doi.org/10.1016/j.compind.2012.08.009 +Hyerim Bae,Process based storing and reconstructing of XML form documents.,2007,58,Computers in Industry,1,db/journals/cii/cii58.html#BaeK07,https://doi.org/10.1016/j.compind.2006.04.002 +Nicolas Daclin,Writing and verifying interoperability requirements: Application to collaborative processes.,2016,82,Computers in Industry,,db/journals/cii/cii82.html#DaclinMCV16,https://doi.org/10.1016/j.compind.2016.04.001 +Michele Fiorentino,Augmented reality on large screen for interactive maintenance instructions.,2014,65,Computers in Industry,2,db/journals/cii/cii65.html#FiorentinoUGDM14,https://doi.org/10.1016/j.compind.2013.11.004 +Stefan Evert,A distributional approach to open questions in market research.,2016,78,Computers in Industry,,db/journals/cii/cii78.html#EvertGBL16,https://doi.org/10.1016/j.compind.2015.10.008 +Kun-Lin Hsieh,Optimization of multiple quality responses involving qualitative and quantitative characteristics in IC manufacturing using neural networks.,2001,46,Computers in Industry,1,db/journals/cii/cii46.html#HsiehT01,https://doi.org/10.1016/S0166-3615(01)00091-4 +Yanrong Jiang,A novel flexible activity refinement approach for improving workflow process flexibility.,2016,80,Computers in Industry,,db/journals/cii/cii80.html#JiangXZZ16,https://doi.org/10.1016/j.compind.2016.03.002 +Jing-Rong Li,An object-oriented intelligent disassembly sequence planner for maintenance.,2005,56,Computers in Industry,7,db/journals/cii/cii56.html#LiKT05,https://doi.org/10.1016/j.compind.2005.03.005 +Dongmin Shin,An analytical model for delivery evaluation of multimodal contents in pervasive computing.,2010,61,Computers in Industry,5,db/journals/cii/cii61.html#ShinHLNJ10,https://doi.org/10.1016/j.compind.2009.12.009 +Pall Jensson,Optimal sequencing of tasks in an aluminium smelter casthouse.,2005,56,Computers in Industry,2,db/journals/cii/cii56.html#JenssonKG05,https://doi.org/10.1016/j.compind.2004.06.004 +Amadou Coulibaly,Maintainability and safety indicators at design stage for mechanical products.,2008,59,Computers in Industry,5,db/journals/cii/cii59.html#CoulibalyHM08,https://doi.org/10.1016/j.compind.2007.12.006 +Michael Becker 0001,A comparative survey of business process similarity measures.,2012,63,Computers in Industry,2,db/journals/cii/cii63.html#BeckerL12,https://doi.org/10.1016/j.compind.2011.11.003 +Laszlo Nemes,Preface.,2003,51,Computers in Industry,2,db/journals/cii/cii51.html#Nemes03,https://doi.org/10.1016/S0166-3615(03)00030-7 +Suriati Akmal,Ontology-based similarity for product information retrieval.,2014,65,Computers in Industry,1,db/journals/cii/cii65.html#AkmalSB14,https://doi.org/10.1016/j.compind.2013.07.011 +Hassan Saneifar,Enhancing passage retrieval in log files by query expansion based on explicit and pseudo relevance feedback.,2014,65,Computers in Industry,6,db/journals/cii/cii65.html#SaneifarBPR14,https://doi.org/10.1016/j.compind.2014.02.010 +Tzu-An Chiang,An intelligent benchmark-based design for environment system for derivative electronic product development.,2012,63,Computers in Industry,9,db/journals/cii/cii63.html#ChiangR12,https://doi.org/10.1016/j.compind.2012.08.014 +Jean Pierre Belaud,Collaborative simulation and scientific big data analysis: Illustration for sustainability in natural hazards management and chemical process engineering.,2014,65,Computers in Industry,3,db/journals/cii/cii65.html#BelaudNDMV14,https://doi.org/10.1016/j.compind.2014.01.009 +Patrick Pujo,Wireless Holon Network for job shop isoarchic control.,2016,83,Computers in Industry,,db/journals/cii/cii83.html#PujoOPK16,https://doi.org/10.1016/j.compind.2016.08.005 +Ashutosh Tiwari,Computer assisted decision making for new product introduction investments.,2008,59,Computers in Industry,1,db/journals/cii/cii59.html#TiwariVK08,https://doi.org/10.1016/j.compind.2007.06.014 +Frédéric Segonds,Proposition of a PLM tool to support textile design: A case study applied to the definition of the early stages of design requirements.,2015,66,Computers in Industry,,db/journals/cii/cii66.html#SegondsMNG15,https://doi.org/10.1016/j.compind.2014.08.002 +François Marmier,Strategic decision-making in NPD projects according to risk: Application to satellites design projects.,2014,65,Computers in Industry,8,db/journals/cii/cii65.html#MarmierDG14,https://doi.org/10.1016/j.compind.2014.06.001 +Quan Liu,Multi-view pedestrian captioning with an attention topic CNN model.,2018,97,Computers in Industry,,db/journals/cii/cii97.html#LiuCWZ18,https://doi.org/10.1016/j.compind.2018.01.015 +Kenneth Sörensen,Bi-objective optimization of the intermodal terminal location problem as a policy-support tool.,2013,64,Computers in Industry,2,db/journals/cii/cii64.html#SorensenV13,https://doi.org/10.1016/j.compind.2012.10.012 +Jing-Rong Li,Desktop virtual reality for maintenance training: an object oriented prototype system (V-REALISM).,2003,52,Computers in Industry,2,db/journals/cii/cii52.html#LiKT03,https://doi.org/10.1016/S0166-3615(03)00103-9 +Yuliang Li,Design and implementation of a process-oriented intelligent collaborative product design system.,2004,53,Computers in Industry,2,db/journals/cii/cii53.html#LiSLL04,https://doi.org/10.1016/S0166-3615(03)00146-5 +Mickaël David,What does PLMS (product lifecycle management systems) manage: Data or documents? Complementarity and contingency for SMEs.,2016,75,Computers in Industry,,db/journals/cii/cii75.html#DavidR16,https://doi.org/10.1016/j.compind.2015.05.005 +J. C. Wu,Integrated function structure and object-oriented design framework.,2012,63,Computers in Industry,5,db/journals/cii/cii63.html#WuPLL12,https://doi.org/10.1016/j.compind.2012.01.011 +Matthew E. H. Petering,Performance analysis of a multiple vehicle tandem system with inter-vehicle buffers and blocking.,2007,58,Computers in Industry,1,db/journals/cii/cii58.html#PeteringSL07,https://doi.org/10.1016/j.compind.2005.11.007 +C. A. Costa,The application of UML and an open distributed process framework to information system design.,2001,46,Computers in Industry,1,db/journals/cii/cii46.html#CostaHY01,https://doi.org/10.1016/S0166-3615(01)00109-9 +Felix Abecassis,Performance evaluation of CUDA programming for 5-axis machining multi-scale simulation.,2015,71,Computers in Industry,,db/journals/cii/cii71.html#AbecassisLTB15,https://doi.org/10.1016/j.compind.2015.02.007 +Yannick Naudet,Towards a systemic formalisation of interoperability.,2010,61,Computers in Industry,2,db/journals/cii/cii61.html#NaudetLGC10,https://doi.org/10.1016/j.compind.2009.10.014 +Junfeng Wang,Data driven production modeling and simulation of complex automobile general assembly plant.,2011,62,Computers in Industry,7,db/journals/cii/cii62.html#WangCXWL11,https://doi.org/10.1016/j.compind.2011.05.004 +Simon Li,A matrix-based modularization approach for supporting secure collaboration in parametric design.,2012,63,Computers in Industry,6,db/journals/cii/cii63.html#LiM12,https://doi.org/10.1016/j.compind.2012.04.003 +Radu-Emil Precup,PI predictive fuzzy controllers for electrical drive speed control: methods and software for stable development.,2003,52,Computers in Industry,3,db/journals/cii/cii52.html#PrecupPF03,https://doi.org/10.1016/S0166-3615(03)00130-1 +Bernhard Mitschang,Data propagation as an enabling technology for collaboration and cooperative information systems.,2003,52,Computers in Industry,1,db/journals/cii/cii52.html#Mitschang03,https://doi.org/10.1016/S0166-3615(03)00069-1 +Paul Valckenaers,Intelligent products: Agere versus Essere.,2009,60,Computers in Industry,3,db/journals/cii/cii60.html#ValckenaersGVBHB09,https://doi.org/10.1016/j.compind.2008.12.008 +Olivier Kerbrat,A new DFM approach to combine machining and additive manufacturing.,2011,62,Computers in Industry,7,db/journals/cii/cii62.html#KerbratMH11,https://doi.org/10.1016/j.compind.2011.04.003 +Gülçin Büyüközkan,A new approach based on soft computing to accelerate the selection of new product ideas.,2004,54,Computers in Industry,2,db/journals/cii/cii54.html#BuyukozkanF04,https://doi.org/10.1016/j.compind.2003.09.007 +Akhil Kumar 0001,Design and management of flexible process variants using templates and rules.,2012,63,Computers in Industry,2,db/journals/cii/cii63.html#KumarY12,https://doi.org/10.1016/j.compind.2011.12.002 +Ameni Eltaief,Associations management and change propagation in the CAD assembly.,2018,98,Computers in Industry,,db/journals/cii/cii98.html#EltaiefLR18,https://doi.org/10.1016/j.compind.2018.02.012 +Jonice Oliveira,Epistheme: a scientific knowledge management environment in the SpeCS collaborative framework.,2003,52,Computers in Industry,1,db/journals/cii/cii52.html#OliveiraSSM03,https://doi.org/10.1016/S0166-3615(03)00071-X +Chih-Ming Hsu,Batching orders in warehouses by minimizing travel distance with genetic algorithms.,2005,56,Computers in Industry,2,db/journals/cii/cii56.html#HsuCC05,https://doi.org/10.1016/j.compind.2004.06.001 +Djamel Fawzi Hadj Sadok,A middleware for industry.,2015,71,Computers in Industry,,db/journals/cii/cii71.html#SadokGEK15,https://doi.org/10.1016/j.compind.2015.03.008 +Yong-Jin Liu,A survey on CAD methods in 3D garment design.,2010,61,Computers in Industry,6,db/journals/cii/cii61.html#LiuZY10,https://doi.org/10.1016/j.compind.2010.03.007 +Xiao Xue,Context-aware intelligent service system for coal mine industry.,2014,65,Computers in Industry,2,db/journals/cii/cii65.html#XueCL14,https://doi.org/10.1016/j.compind.2013.11.010 +Zezhong C. Chen,Automated surface subdivision and tool path generation for 3and9*and9*-axis CNC machining of sculptured parts.,2003,50,Computers in Industry,3,db/journals/cii/cii50.html#ChenDV03,https://doi.org/10.1016/S0166-3615(03)00019-8 +Marilyn M. Helms,Technologies in support of mass customization strategy: Exploring the linkages between e-commerce and knowledge management.,2008,59,Computers in Industry,4,db/journals/cii/cii59.html#HelmsAJE08,https://doi.org/10.1016/j.compind.2007.09.003 +Y. Y. Lin-Chen,A software tool development for pneumatic actuator system simulation and design.,2003,51,Computers in Industry,1,db/journals/cii/cii51.html#Lin-ChenWW03,https://doi.org/10.1016/S0166-3615(03)00026-5 +Kleanthis Thramboulidis,UML4IoT - A UML-based approach to exploit IoT in cyber-physical manufacturing systems.,2016,82,Computers in Industry,,db/journals/cii/cii82.html#ThramboulidisC16,https://doi.org/10.1016/j.compind.2016.05.010 +Kun-Jin He,Creation of user-defined freeform feature from surface models based on characteristic curves.,2014,65,Computers in Industry,4,db/journals/cii/cii65.html#HeCJW14,https://doi.org/10.1016/j.compind.2014.01.011 +Marc Chouinard,Integration of reverse logistics activities within a supply chain information system.,2005,56,Computers in Industry,1,db/journals/cii/cii56.html#ChouinardDA05,https://doi.org/10.1016/j.compind.2004.07.005 +Jan Holmström,Item dwell time in project inventories: A field experiment.,2011,62,Computers in Industry,1,db/journals/cii/cii62.html#HolmstromTK11,https://doi.org/10.1016/j.compind.2010.07.004 +Aristeidis Matsokis,An ontology-based approach for Product Lifecycle Management.,2010,61,Computers in Industry,8,db/journals/cii/cii61.html#MatsokisK10a,https://doi.org/10.1016/j.compind.2010.05.007 +Günter Wöhlke,Digital Planning Validation in automotive industry.,2005,56,Computers in Industry,4,db/journals/cii/cii56.html#WohlkeS05,https://doi.org/10.1016/j.compind.2005.01.010 +Jérôme Mendes,An architecture for adaptive fuzzy control in industrial environments.,2011,62,Computers in Industry,3,db/journals/cii/cii62.html#MendesASAA11,https://doi.org/10.1016/j.compind.2010.11.001 +Tamio Arai,Holonic assembly system with Plug and Produce.,2001,46,Computers in Industry,3,db/journals/cii/cii46.html#AraiASO01,https://doi.org/10.1016/S0166-3615(01)00111-7 +Thibaud Monteiro,Multi-site coordination using a multi-agent system.,2007,58,Computers in Industry,4,db/journals/cii/cii58.html#MonteiroRA07,https://doi.org/10.1016/j.compind.2006.07.005 +Mirka Kans,An approach for determining the requirements of computerised maintenance management systems.,2008,59,Computers in Industry,1,db/journals/cii/cii59.html#Kans08,https://doi.org/10.1016/j.compind.2007.06.003 +Virginie Goepp,Design process and data models to support the design of sustainable remanufactured products.,2014,65,Computers in Industry,3,db/journals/cii/cii65.html#GoeppZC14,https://doi.org/10.1016/j.compind.2014.02.002 +Ping Jiang,A Web services and process-view combined approach for process management of collaborative product development.,2009,60,Computers in Industry,6,db/journals/cii/cii60.html#JiangSQGL09,https://doi.org/10.1016/j.compind.2009.02.008 +Alejandro Figueroa 0001,Exploring effective features for recognizing the user intent behind web queries.,2015,68,Computers in Industry,,db/journals/cii/cii68.html#Figueroa15,https://doi.org/10.1016/j.compind.2015.01.005 +Selene Hernández-Rodríguez,A recommender system applied to the indirect materials selection process (RS-IMSP) for producing automobile spare parts.,2016,82,Computers in Industry,,db/journals/cii/cii82.html#Hernandez-Rodriguez16,https://doi.org/10.1016/j.compind.2016.07.004 +Qi Hao,Towards a cooperative distributed manufacturing management framework.,2005,56,Computers in Industry,1,db/journals/cii/cii56.html#HaoSW05,https://doi.org/10.1016/j.compind.2004.08.010 +Jingxing Wei,Design of a feature-based order acceptance and scheduling module in an ERP system.,2014,65,Computers in Industry,1,db/journals/cii/cii65.html#WeiM14,https://doi.org/10.1016/j.compind.2013.07.009 +Sungsik Park,Petri-net-based rapid development of a task execution module of equipment controller for distributed shop floor control.,2001,45,Computers in Industry,2,db/journals/cii/cii45.html#ParkJC01,https://doi.org/10.1016/S0166-3615(01)00089-6 +Lamia Berrah,Towards a unified descriptive framework for industrial objective declaration and performance measurement.,2013,64,Computers in Industry,6,db/journals/cii/cii64.html#BerrahF13,https://doi.org/10.1016/j.compind.2013.03.006 +Octavian Morariu,Redundancy and scalability for virtualized MES systems with programmable infrastructure.,2016,81,Computers in Industry,,db/journals/cii/cii81.html#MorariuBRM16,https://doi.org/10.1016/j.compind.2015.08.011 +Camille Simon Chane,Registration of arbitrary multi-view 3D acquisitions.,2013,64,Computers in Industry,9,db/journals/cii/cii64.html#ChaneSBM13,https://doi.org/10.1016/j.compind.2013.03.017 +Anis Abdmouleh,Distributed client/server architecture for CIMOSA-based enterprise components.,2004,55,Computers in Industry,3,db/journals/cii/cii55.html#AbdmoulehSV04,https://doi.org/10.1016/j.compind.2004.08.002 +Fathianathan Mervyn,Incorporating design outsourcing decisions within the design of collaborative design processes.,2009,60,Computers in Industry,6,db/journals/cii/cii60.html#FathianathanP09,https://doi.org/10.1016/j.compind.2009.02.010 +W. D. Li,A Web-based service for distributed process planning optimization.,2005,56,Computers in Industry,3,db/journals/cii/cii56.html#Li05,https://doi.org/10.1016/j.compind.2004.12.001 +Elise Gruhier,A spatiotemporal information management framework for product design and assembly process planning reconciliation.,2017,90,Computers in Industry,,db/journals/cii/cii90.html#GruhierDG17,https://doi.org/10.1016/j.compind.2017.04.004 +Te-Sheng Li,Applying robust multi-response quality engineering for parameter selection using a novel neural-genetic algorithm.,2003,50,Computers in Industry,1,db/journals/cii/cii50.html#LiSC03,https://doi.org/10.1016/S0166-3615(02)00140-9 +Vicente González-Prida Díaz,A framework for warranty management in industrial assets.,2012,63,Computers in Industry,9,db/journals/cii/cii63.html#DiazM12,https://doi.org/10.1016/j.compind.2012.09.001 +Minhua Lu,A real time displacement estimation algorithm for ultrasound elastography.,2015,69,Computers in Industry,,db/journals/cii/cii69.html#LuTSWCM15,https://doi.org/10.1016/j.compind.2014.09.006 +Han van der Aa,Designing like a Pro: The automated composition of workflow activities.,2016,75,Computers in Industry,,db/journals/cii/cii75.html#AaRV16,https://doi.org/10.1016/j.compind.2015.04.005 +Sven Meyer zu Eissen,Realization of Web-based simulation services.,2006,57,Computers in Industry,3,db/journals/cii/cii57.html#EissenS06,https://doi.org/10.1016/j.compind.2005.12.007 +Shaofeng Liu,A review of structured document retrieval (SDR) technology to improve information access performance in engineering document management.,2008,59,Computers in Industry,1,db/journals/cii/cii59.html#LiuMC08,https://doi.org/10.1016/j.compind.2007.08.001 +Jorge Luis Victória Barbosa,DeCom: A model for context-aware competence management.,2015,72,Computers in Industry,,db/journals/cii/cii72.html#BarbosaKBKR15,https://doi.org/10.1016/j.compind.2015.03.012 +Yong-Sik Kim,A multichannel visualization module for virtual manufacturing.,2006,57,Computers in Industry,7,db/journals/cii/cii57.html#KimYH06,https://doi.org/10.1016/j.compind.2006.02.005 +Guoqing Jin,A hybrid and adaptive tool-path generation approach of rapid prototyping and manufacturing for biomedical models.,2013,64,Computers in Industry,3,db/journals/cii/cii64.html#JinLGP13,https://doi.org/10.1016/j.compind.2012.12.003 +Somashekar Subrahmanyam,A method for generation of machining and fixturing features from design features.,2002,47,Computers in Industry,3,db/journals/cii/cii47.html#Subrahmanyam02,https://doi.org/10.1016/S0166-3615(01)00154-3 +Rahul Chougule,An integrated framework for effective service and repair in the automotive domain: An application of association mining and case-based-reasoning.,2011,62,Computers in Industry,7,db/journals/cii/cii62.html#ChouguleRB11,https://doi.org/10.1016/j.compind.2011.05.007 +Xi Zhang,Automatic 3D model reconstruction of cutting tools from a single camera.,2010,61,Computers in Industry,7,db/journals/cii/cii61.html#ZhangTMY10,https://doi.org/10.1016/j.compind.2010.05.009 +Mohamed Ghazel,An UML approach for the metamodelling of automated production systems for monitoring purpose.,2004,55,Computers in Industry,3,db/journals/cii/cii55.html#GhazelTB04,https://doi.org/10.1016/j.compind.2004.08.005 +Yuko Mesuda,Virtual draping by mapping.,2018,95,Computers in Industry,,db/journals/cii/cii95.html#MesudaIH18,https://doi.org/10.1016/j.compind.2017.11.004 +Luis Iribarne,Using computer modeling techniques to design tunnel greenhouse structures.,2007,58,Computers in Industry,5,db/journals/cii/cii58.html#IribarneTP07,https://doi.org/10.1016/j.compind.2006.09.001 +Samia Maza,A performance-based structural policy for conflict-free routing of bi-directional automated guided vehicles.,2005,56,Computers in Industry,7,db/journals/cii/cii56.html#MazaC05,https://doi.org/10.1016/j.compind.2005.03.003 +Somjit Arch-int,Development of industrial information systems on the Web using business components.,2003,50,Computers in Industry,2,db/journals/cii/cii50.html#Arch-intB03,https://doi.org/10.1016/S0166-3615(02)00122-7 +Cipriano Forza,Product configuration and inter-firm co-ordination: an innovative solution from a small manufacturing enterprise.,2002,49,Computers in Industry,1,db/journals/cii/cii49.html#ForzaS02,https://doi.org/10.1016/S0166-3615(02)00057-X +Milos Radenkovic,Harnessing business intelligence in smart grids: A case of the electricity market.,2018,96,Computers in Industry,,db/journals/cii/cii96.html#RadenkovicLDLB18,https://doi.org/10.1016/j.compind.2018.01.006 +Rajesh S. Ransing,A coupled penalty matrix approach and principal component based co-linearity index technique to discover product specific foundry process knowledge from in-process data in order to reduce defects.,2013,64,Computers in Industry,5,db/journals/cii/cii64.html#RansingGRJ13,https://doi.org/10.1016/j.compind.2013.02.009 +Alessio Trentin,Increasing the consumer-perceived benefits of a mass-customization experience through sales-configurator capabilities.,2014,65,Computers in Industry,4,db/journals/cii/cii65.html#TrentinPF14,https://doi.org/10.1016/j.compind.2014.02.004 +Dagný Hauksdottir,Identification of a reusable requirements structure for embedded products in a dynamic market environment.,2013,64,Computers in Industry,4,db/journals/cii/cii64.html#HauksdottirMN13,https://doi.org/10.1016/j.compind.2012.10.008 +Xiaoping Zhao,Modeling and representation of geometric tolerances information in integrated measurement processes.,2006,57,Computers in Industry,4,db/journals/cii/cii57.html#ZhaoPW06,https://doi.org/10.1016/j.compind.2005.09.004 +Da Yong Zhang,Modeling and evaluating information leakage caused by inferences in supply chains.,2011,62,Computers in Industry,3,db/journals/cii/cii62.html#ZhangZWLG11,https://doi.org/10.1016/j.compind.2010.10.002 +Julio Molleda,An improved 3D imaging system for dimensional quality inspection of rolled products in the metal industry.,2013,64,Computers in Industry,9,db/journals/cii/cii64.html#MolledaUGBEDS13,https://doi.org/10.1016/j.compind.2013.05.002 +Muwei Jian,Comprehensive assessment of non-uniform illumination for 3D heightmap reconstruction in outdoor environments.,2018,99,Computers in Industry,,db/journals/cii/cii99.html#JianYDZ18,https://doi.org/10.1016/j.compind.2018.03.034 +Ambalavanar Tharumarajah,A self-organising view of manufacturing enterprises.,2003,51,Computers in Industry,2,db/journals/cii/cii51.html#Tharumarajah03,https://doi.org/10.1016/S0166-3615(03)00035-6 +Sheng Liu,Workflow performance analysis and simulation based on multidimensional workflow net.,2014,65,Computers in Industry,2,db/journals/cii/cii65.html#LiuF14,https://doi.org/10.1016/j.compind.2013.12.002 +EunHee Kim,3D CAD model visualization on a website using the X3D standard.,2015,70,Computers in Industry,,db/journals/cii/cii70.html#KimHHL15,https://doi.org/10.1016/j.compind.2015.02.011 +Frédéric Demoly,Product relationships management enabler for concurrent engineering and product lifecycle management.,2013,64,Computers in Industry,7,db/journals/cii/cii64.html#DemolyDYEKG13,https://doi.org/10.1016/j.compind.2013.05.004 +Yingxue Yao,VMMC: a test-bed for machining.,2002,47,Computers in Industry,3,db/journals/cii/cii47.html#YaoLLCY02,https://doi.org/10.1016/S0166-3615(01)00153-1 +Hyungjun Park,Tangible augmented prototyping of digital handheld products.,2009,60,Computers in Industry,2,db/journals/cii/cii60.html#ParkML09,https://doi.org/10.1016/j.compind.2008.09.001 +Peter Bernus,Enterprise engineering and management at the crossroads.,2016,79,Computers in Industry,,db/journals/cii/cii79.html#BernusGGJKMNRRS16,https://doi.org/10.1016/j.compind.2015.07.010 +Teresa Wu,A model for inbound supply risk analysis.,2006,57,Computers in Industry,4,db/journals/cii/cii57.html#WuBC06,https://doi.org/10.1016/j.compind.2005.11.001 +Jing Li,Simulation of cross-border competitions of free Internet content providers.,2013,64,Computers in Industry,6,db/journals/cii/cii64.html#LiCC13,https://doi.org/10.1016/j.compind.2013.04.008 +Leonardo Orazi,Constrained free form deformation as a tool for rapid manufacturing.,2007,58,Computers in Industry,1,db/journals/cii/cii58.html#Orazi07,https://doi.org/10.1016/j.compind.2006.02.003 +J. Sun,A dynamic reactive scheduling mechanism for responding to changes of production orders and manufacturing resources.,2001,46,Computers in Industry,2,db/journals/cii/cii46.html#SunX01,https://doi.org/10.1016/S0166-3615(01)00119-1 +Juliana do Espírito Santo Carvalho,A method to infer the need to update situations in business process adaptation.,2015,71,Computers in Industry,,db/journals/cii/cii71.html#CarvalhoSR15,https://doi.org/10.1016/j.compind.2015.03.014 +S. A. Sadrieh,An integrated Petri net and GA based approach for scheduling of hybrid plants.,2007,58,Computers in Industry,6,db/journals/cii/cii58.html#SadriehGBL07,https://doi.org/10.1016/j.compind.2006.12.001 +Yanan Yu,3D imaging application in the studies of micro air vehicles.,2013,64,Computers in Industry,9,db/journals/cii/cii64.html#YuYW13,https://doi.org/10.1016/j.compind.2013.06.009 +Clément Mignard,Merging BIM and GIS using ontologies application to urban facility management in ACTIVe3D.,2014,65,Computers in Industry,9,db/journals/cii/cii65.html#MignardN14,https://doi.org/10.1016/j.compind.2014.07.008 +Pedro Miguel Fernandes Ruivo,Using resource-based view theory to assess the value of ERP commercial-packages in SMEs.,2015,73,Computers in Industry,,db/journals/cii/cii73.html#RuivoON15,https://doi.org/10.1016/j.compind.2015.06.001 +Laurent Tapie,Topological model for machining of parts with complex shapes.,2012,63,Computers in Industry,5,db/journals/cii/cii63.html#TapieMB12,https://doi.org/10.1016/j.compind.2012.02.005 +Elena Lloret,Analysing and evaluating the task of automatic tweet generation: Knowledge to business.,2016,78,Computers in Industry,,db/journals/cii/cii78.html#LloretP16,https://doi.org/10.1016/j.compind.2015.10.010 +Aneesh Zutshi,The Business Interoperability Quotient Measurement Model.,2012,63,Computers in Industry,5,db/journals/cii/cii63.html#ZutshiGJ12,https://doi.org/10.1016/j.compind.2012.01.002 +Rémi Pannequin,The performance of product-driven manufacturing control: An emulation-based benchmarking study.,2009,60,Computers in Industry,3,db/journals/cii/cii60.html#PannequinMT09,https://doi.org/10.1016/j.compind.2008.12.007 +K. P. Zhu,3D CAD model matching from 2D local invariant features.,2010,61,Computers in Industry,5,db/journals/cii/cii61.html#ZhuWLL10,https://doi.org/10.1016/j.compind.2009.11.001 +Wiem Elghazel,Dependability of wireless sensor networks for industrial prognostics and health management.,2015,68,Computers in Industry,,db/journals/cii/cii68.html#ElghazelBGHMZ15,https://doi.org/10.1016/j.compind.2014.10.004 +Wai Ming Wang,A Computational Knowledge Elicitation and Sharing System for mental health case management of the social service industry.,2013,64,Computers in Industry,3,db/journals/cii/cii64.html#WangC13,https://doi.org/10.1016/j.compind.2012.10.007 +Jian Xun Wang,Design and implementation of an agent-based collaborative product design system.,2009,60,Computers in Industry,7,db/journals/cii/cii60.html#WangTSJ09,https://doi.org/10.1016/j.compind.2009.03.001 +Therani Madhusudan,An agent-based approach for coordinating product design workflows.,2005,56,Computers in Industry,3,db/journals/cii/cii56.html#Madhusudan05,https://doi.org/10.1016/j.compind.2004.12.003 +Tunglun Tsai,A UML model of agile production planning and control system.,2004,53,Computers in Industry,2,db/journals/cii/cii53.html#TsaiS04,https://doi.org/10.1016/j.compind.2003.07.003 +Francis Eng Hock Tay,CyberCAD: a collaborative approach in 3D-CAD technology in a multimedia-supported environment.,2003,52,Computers in Industry,2,db/journals/cii/cii52.html#TayR03,https://doi.org/10.1016/S0166-3615(03)00100-3 +Nima Jafari Navimipour,Behavioral modeling and automated verification of a Cloud-based framework to share the knowledge and skills of human resources.,2015,68,Computers in Industry,,db/journals/cii/cii68.html#NavimipourNRH15,https://doi.org/10.1016/j.compind.2014.12.007 +Loris Barbieri,Mixed prototyping with configurable physical archetype for usability evaluation of product interfaces.,2013,64,Computers in Industry,3,db/journals/cii/cii64.html#BarbieriABM13,https://doi.org/10.1016/j.compind.2012.11.010 +Yong Zeng,Secure collaboration in global design and supply chain environment: Problem analysis and literature review.,2012,63,Computers in Industry,6,db/journals/cii/cii63.html#ZengWDCK12,https://doi.org/10.1016/j.compind.2012.05.001 +Sungyol Song,Development of a BIM-based structural framework optimization and simulation system for building construction.,2012,63,Computers in Industry,9,db/journals/cii/cii63.html#SongYK12,https://doi.org/10.1016/j.compind.2012.08.013 +Onder Ondemir,Quality management in product recovery using the Internet of Things: An optimization approach.,2014,65,Computers in Industry,3,db/journals/cii/cii65.html#OndemirG14,https://doi.org/10.1016/j.compind.2013.11.006 +Lars Taxén,Sustainable enterprise interoperability from the Activity Domain Theory perspective.,2012,63,Computers in Industry,8,db/journals/cii/cii63.html#Taxen12,https://doi.org/10.1016/j.compind.2012.08.011 +Gregory Zacharewicz,Distributed simulation platform to design advanced RFID based freight transportation systems.,2011,62,Computers in Industry,6,db/journals/cii/cii62.html#ZacharewiczDF11,https://doi.org/10.1016/j.compind.2011.04.009 +Zhihong Xu,Continuous blood pressure estimation based on multiple parameters from eletrocardiogram and photoplethysmogram by Back-propagation neural network.,2017,89,Computers in Industry,,db/journals/cii/cii89.html#XuLCWZ17,https://doi.org/10.1016/j.compind.2017.04.003 +Yih-Chih Chiou,Intelligent segmentation method for real-time defect inspection system.,2010,61,Computers in Industry,7,db/journals/cii/cii61.html#Chiou10,https://doi.org/10.1016/j.compind.2010.03.009 +Rafael Felipe V. Saracchini,Robust 3D face capture using example-based photometric stereo.,2013,64,Computers in Industry,9,db/journals/cii/cii64.html#SaracchiniSLAS13,https://doi.org/10.1016/j.compind.2013.04.003 +Jorge Luis García-Alcaraz,A systematic review/survey for JIT implementation: Mexican maquiladoras as case study.,2014,65,Computers in Industry,4,db/journals/cii/cii65.html#Garcia-AlcarazMARA14,https://doi.org/10.1016/j.compind.2014.02.013 +H. Hubel,A reference architecture for Engineering Data Control (EDC) in capital plant manufacture.,2001,46,Computers in Industry,2,db/journals/cii/cii46.html#HubelC01,https://doi.org/10.1016/S0166-3615(01)00121-X +Benoît Iung,Special issue on e-maintenance.,2006,57,Computers in Industry,6,db/journals/cii/cii57.html#IungM06,https://doi.org/10.1016/j.compind.2006.02.016 +Somashekar Subrahmanyam,Fixturing features selection in feature-based systems.,2002,48,Computers in Industry,2,db/journals/cii/cii48.html#Subrahmanyam02a,https://doi.org/10.1016/S0166-3615(02)00037-4 +Ali A. Pouyan,Synthesis a Petri net based control model for a FMS cell.,2011,62,Computers in Industry,5,db/journals/cii/cii62.html#PouyanSA11,https://doi.org/10.1016/j.compind.2011.01.001 +Xudong Li,Automatic evaluation of machining allowance of precision castings based on plane features from 3D point cloud.,2013,64,Computers in Industry,9,db/journals/cii/cii64.html#LiLJZ13,https://doi.org/10.1016/j.compind.2013.06.003 +Sylvain Kubler,P2P Data synchronization for product lifecycle management.,2015,66,Computers in Industry,,db/journals/cii/cii66.html#KublerFD15,https://doi.org/10.1016/j.compind.2014.10.009 +Chung-Shing Wang,An analysis and evaluation of fitness for shoe lasts and human feet.,2010,61,Computers in Industry,6,db/journals/cii/cii61.html#Wang10,https://doi.org/10.1016/j.compind.2010.03.003 +Kun-Yung Lu,A plug-and-play data gathering system using ZigBee-based sensor network sensor network.,2011,62,Computers in Industry,7,db/journals/cii/cii62.html#Lu11,https://doi.org/10.1016/j.compind.2011.05.002 +Yu-Hsin Lin,Preparation and evaluation of chitosan biocompatible electronic skin.,2018,100,Computers in Industry,,db/journals/cii/cii100.html#LinKXYHCLC18,https://doi.org/10.1016/j.compind.2018.03.040 +Haidong Shao,Rolling bearing fault detection using continuous deep belief network with locally linear embedding.,2018,96,Computers in Industry,,db/journals/cii/cii96.html#ShaoJXL18,https://doi.org/10.1016/j.compind.2018.01.005 +Shu Huang Sun,Optimum topology design for the stationary platen of a plastic injection machine.,2004,55,Computers in Industry,2,db/journals/cii/cii55.html#Sun04,https://doi.org/10.1016/j.compind.2004.07.001 +Jorge D. Camba,Assessing the impact of geometric design intent annotations on parametric model alteration activities.,2015,71,Computers in Industry,,db/journals/cii/cii71.html#CambaC15,https://doi.org/10.1016/j.compind.2015.03.006 +Adriana Giret,Engineering Holonic Manufacturing Systems.,2009,60,Computers in Industry,6,db/journals/cii/cii60.html#GiretB09,https://doi.org/10.1016/j.compind.2009.02.007 +Runhua Tan,UXDs-driven conceptual design process model for contradiction solving using CAIs.,2009,60,Computers in Industry,8,db/journals/cii/cii60.html#TanMLW09,https://doi.org/10.1016/j.compind.2009.05.019 +Shana Shiang-Fong Smith,Using multiple genetic operators to reduce premature convergence in genetic assembly planning.,2004,54,Computers in Industry,1,db/journals/cii/cii54.html#Smith04,https://doi.org/10.1016/j.compind.2003.08.001 +Guangzheng Hu,A deep Boltzmann machine and multi-grained scanning forest ensemble collaborative method and its application to industrial fault diagnosis.,2018,100,Computers in Industry,,db/journals/cii/cii100.html#HuLXL18,https://doi.org/10.1016/j.compind.2018.04.002 +B. M. Li,Product similarity assessment for conceptual one-of-a-kind product design: A weight distribution approach.,2013,64,Computers in Industry,6,db/journals/cii/cii64.html#LiX13,https://doi.org/10.1016/j.compind.2013.04.001 +Paul W. Prickett,The development of a modified TRIZ Technical System ontology.,2012,63,Computers in Industry,3,db/journals/cii/cii63.html#PrickettA12,https://doi.org/10.1016/j.compind.2012.01.006 +Yongxin Liao,Semantic annotation for knowledge explicitation in a product lifecycle management context: A survey.,2015,71,Computers in Industry,,db/journals/cii/cii71.html#LiaoLPBL15,https://doi.org/10.1016/j.compind.2015.03.005 +Anders Haug,A layout technique for class diagrams to be used in product configuration projects.,2010,61,Computers in Industry,5,db/journals/cii/cii61.html#HaugHM10,https://doi.org/10.1016/j.compind.2009.10.002 +Qingmai Wang,Ontology based automatic feature recognition framework.,2014,65,Computers in Industry,7,db/journals/cii/cii65.html#WangY14,https://doi.org/10.1016/j.compind.2014.04.004 +M. Bennour,Using competencies in performance estimation: From the activity to the process.,2007,58,Computers in Industry,2,db/journals/cii/cii58.html#BennourC07,https://doi.org/10.1016/j.compind.2006.09.009 +T. Chen,A hybrid fuzzy and neural approach for DRAM price forecasting.,2011,62,Computers in Industry,2,db/journals/cii/cii62.html#Chen11,https://doi.org/10.1016/j.compind.2010.10.012 +Enrico Vezzetti,3D human face soft tissues landmarking method: An advanced approach.,2013,64,Computers in Industry,9,db/journals/cii/cii64.html#VezzettiMS13,https://doi.org/10.1016/j.compind.2013.04.006 +Alok Kumar Choudhary,The needs and benefits of Text Mining applications on Post-Project Reviews.,2009,60,Computers in Industry,9,db/journals/cii/cii60.html#ChoudharyOHC09,https://doi.org/10.1016/j.compind.2009.05.006 +Alpana,Machine learning approach for automated coal characterization using scanned electron microscopic images.,2016,75,Computers in Industry,,db/journals/cii/cii75.html#AlpanaM16,https://doi.org/10.1016/j.compind.2015.10.003 +Z. M. Qiu,Dynamic workflow change in PDM systems.,2007,58,Computers in Industry,5,db/journals/cii/cii58.html#QiuW07,https://doi.org/10.1016/j.compind.2006.09.014 +Wei Zhao,Poisson based reuse of freeform features with NURBS representation.,2009,60,Computers in Industry,1,db/journals/cii/cii60.html#ZhaoGLL09,https://doi.org/10.1016/j.compind.2008.09.005 +Chih-Hsing Chu,3D streaming based on multi-LOD models for networked collaborative design.,2008,59,Computers in Industry,9,db/journals/cii/cii59.html#ChuCW08,https://doi.org/10.1016/j.compind.2008.07.006 +Hadi Kandjani,Using extended Axiomatic Design theory to reduce complexities in Global Software Development projects.,2015,67,Computers in Industry,,db/journals/cii/cii67.html#KandjaniTBWM15,https://doi.org/10.1016/j.compind.2014.10.008 +Claudia Aparecida De Mattos,Information technology adoption and assimilation: Focus on the suppliers portal.,2017,85,Computers in Industry,,db/journals/cii/cii85.html#MattosL17,https://doi.org/10.1016/j.compind.2016.12.009 +Biqing Huang,A framework for virtual enterprise control with the holonic manufacturing paradigm.,2002,49,Computers in Industry,3,db/journals/cii/cii49.html#HuangGLL002,https://doi.org/10.1016/S0166-3615(02)00098-2 +Bernard Kamsu-Foguem,Graph-based reasoning in collaborative knowledge management for industrial maintenance.,2013,64,Computers in Industry,8,db/journals/cii/cii64.html#Kamsu-FoguemN13,https://doi.org/10.1016/j.compind.2013.06.013 +Mohamed Anis Zemni,An automated approach for merging business process fragments.,2016,82,Computers in Industry,,db/journals/cii/cii82.html#ZemniMH16,https://doi.org/10.1016/j.compind.2016.05.002 +Alain Etienne,An improved approach for automatic process plan generation of complex borings.,2006,57,Computers in Industry,7,db/journals/cii/cii57.html#EtienneDSM06,https://doi.org/10.1016/j.compind.2006.03.002 +Li Pheng Khoo,A prototype genetic algorithm-enhanced rough set-based rule induction system.,2001,46,Computers in Industry,1,db/journals/cii/cii46.html#KhooZ01,https://doi.org/10.1016/S0166-3615(01)00117-8 +Florence Danglade,A priori evaluation of simulation models preparation processes using artificial intelligence techniques.,2017,91,Computers in Industry,,db/journals/cii/cii91.html#DangladePVF17,https://doi.org/10.1016/j.compind.2017.06.001 +David Reiser,Iterative individual plant clustering in maize with assembled 2D LiDAR data.,2018,99,Computers in Industry,,db/journals/cii/cii99.html#ReiserVPIG18,https://doi.org/10.1016/j.compind.2018.03.023 +Georg Weichhart,Implementing organisational interoperability - The SUddEN approach.,2010,61,Computers in Industry,2,db/journals/cii/cii61.html#WeichhartFS10,https://doi.org/10.1016/j.compind.2009.10.011 +Kristina Säfsten,Analysis of the congruence between manufacturing strategy and production system in SMME.,2002,49,Computers in Industry,1,db/journals/cii/cii49.html#SafstenW02,https://doi.org/10.1016/S0166-3615(02)00061-1 +Jorge Luis Victória Barbosa,TrailTrade: A model for trail-aware commerce support.,2016,80,Computers in Industry,,db/journals/cii/cii80.html#BarbosaMFB16,https://doi.org/10.1016/j.compind.2016.04.006 +Suk Lee,On-line fuzzy performance management of Profibus networks.,2001,46,Computers in Industry,2,db/journals/cii/cii46.html#LeeLHY01,https://doi.org/10.1016/S0166-3615(01)00127-0 +David A. Koonce,A hierarchical cost estimation tool.,2003,50,Computers in Industry,3,db/journals/cii/cii50.html#KoonceJSM03,https://doi.org/10.1016/S0166-3615(03)00016-2 +Mohamed-Zied Ouertani,"Corrigendum to ""Supporting conflict management in collaborative design: An approach to assess engineering change impacts"" [Computers in Industry 59 (9) (2008) 882-893].",2011,62,Computers in Industry,1,db/journals/cii/cii62.html#OuertaniG11,https://doi.org/10.1016/j.compind.2010.08.001 +Kriangkrai Waiyagan,Intelligent feature based process planning for five-axis mill-turn parts.,2009,60,Computers in Industry,5,db/journals/cii/cii60.html#WaiyaganB09,https://doi.org/10.1016/j.compind.2008.09.009 +Cyrille Pach,ORCA-FMS: a dynamic architecture for the optimized and reactive control of flexible manufacturing scheduling.,2014,65,Computers in Industry,4,db/journals/cii/cii65.html#PachBBT14,https://doi.org/10.1016/j.compind.2014.02.005 +Marcin Jamro,Agile and hierarchical round-trip engineering of IEC 61131-3 control software.,2018,96,Computers in Industry,,db/journals/cii/cii96.html#JamroR18,https://doi.org/10.1016/j.compind.2018.01.004 +Jonghoon Chung,A framework of collaborative design environment for injection molding.,2002,47,Computers in Industry,3,db/journals/cii/cii47.html#ChungL02,https://doi.org/10.1016/S0166-3615(02)00004-0 +Sira Yongchareon,Deriving user interface flow models for artifact-centric business processes.,2018,96,Computers in Industry,,db/journals/cii/cii96.html#YongchareonLZYN18,https://doi.org/10.1016/j.compind.2017.11.001 +Gert Zülch,Modelling of occupational health and safety aspects in the Digital Factory.,2005,56,Computers in Industry,4,db/journals/cii/cii56.html#ZulchG05,https://doi.org/10.1016/j.compind.2005.01.005 +Nicolas Figay,Interoperability framework for dynamic manufacturing networks.,2012,63,Computers in Industry,8,db/journals/cii/cii63.html#FigayGKB12,https://doi.org/10.1016/j.compind.2012.08.008 +Julio Garrido Campos,Standard process monitoring and traceability programming in collaborative CAD/CAM/CNC manufacturing scenarios.,2011,62,Computers in Industry,3,db/journals/cii/cii62.html#CamposM11,https://doi.org/10.1016/j.compind.2010.09.003 +Cristina Morariu,Customer order management in service oriented holonic manufacturing.,2013,64,Computers in Industry,8,db/journals/cii/cii64.html#MorariuMB13,https://doi.org/10.1016/j.compind.2013.07.007 +Xiao Ma,A fast and economic ontology engineering approach towards improving capability matching: Application to an online engineering collaborative platform.,2014,65,Computers in Industry,9,db/journals/cii/cii65.html#MaBI14,https://doi.org/10.1016/j.compind.2014.05.004 +Sándor Kopácsi,Some aspects of dynamic 3D representation and control of industrial processes via the Internet.,2013,64,Computers in Industry,9,db/journals/cii/cii64.html#KopacsiKN13,https://doi.org/10.1016/j.compind.2013.06.007 +Denis Cavallucci,A research agenda for computing developments associated with innovation pipelines.,2011,62,Computers in Industry,4,db/journals/cii/cii62.html#Cavallucci11,https://doi.org/10.1016/j.compind.2010.12.002 +Melina C. Vidoni,An intelligent agent for ERP's data structure analysis based on ANSI/ISA-95 standard.,2015,73,Computers in Industry,,db/journals/cii/cii73.html#VidoniV15,https://doi.org/10.1016/j.compind.2015.07.011 +Thuy Duong Oesterreich,Looking at the big picture of IS investment appraisal through the lens of systems theory: A System Dynamics approach for understanding the economic impact of BIM.,2018,99,Computers in Industry,,db/journals/cii/cii99.html#OesterreichT18,https://doi.org/10.1016/j.compind.2018.03.029 +S. W. A. Haneyah,Generic planning and control of automated material handling systems: Practical requirements versus existing theory.,2013,64,Computers in Industry,3,db/journals/cii/cii64.html#HaneyahSSZ13,https://doi.org/10.1016/j.compind.2012.11.003 +Sang Hoon Woo,An active product state tracking architecture in logistics sensor networks.,2009,60,Computers in Industry,3,db/journals/cii/cii60.html#WooCKK09,https://doi.org/10.1016/j.compind.2008.12.001 +Matthew Harker,Direct regularized surface reconstruction from gradients for Industrial Photometric Stereo.,2013,64,Computers in Industry,9,db/journals/cii/cii64.html#HarkerO13,https://doi.org/10.1016/j.compind.2013.03.013 +S. Margret Anouncia,A knowledge model for gray scale image interpretation with emphasis on welding defect classification - An ontology based approach.,2010,61,Computers in Industry,8,db/journals/cii/cii61.html#AnounciaS10a,https://doi.org/10.1016/j.compind.2010.05.003 +Amir Pirayesh Neghab,Performance evaluation of collaboration in the design process: Using interoperability measurement.,2015,72,Computers in Industry,,db/journals/cii/cii72.html#NeghabEKR15,https://doi.org/10.1016/j.compind.2015.03.011 +Da Xu,A knowledge base with modularized ontologies for eco-labeling: Application for laundry detergents.,2018,98,Computers in Industry,,db/journals/cii/cii98.html#XuKA18,https://doi.org/10.1016/j.compind.2018.02.013 +Benoît Eynard,UML based specifications of PDM product structure and workflow.,2004,55,Computers in Industry,3,db/journals/cii/cii55.html#EynardGNR04,https://doi.org/10.1016/j.compind.2004.08.006 +Raúl Rodríguez,Quantitative relationships between key performance indicators for supporting decision-making processes.,2009,60,Computers in Industry,2,db/journals/cii/cii60.html#RodriguezSB09,https://doi.org/10.1016/j.compind.2008.09.002 +Paulos J. Nyirenda,A framework for extendable freeform surface feature modelling.,2009,60,Computers in Industry,1,db/journals/cii/cii60.html#NyirendaB09,https://doi.org/10.1016/j.compind.2008.09.008 +Kim-Phuong L. Vu,Influence of the Privacy Bird® user agent on user trust of different web sites.,2010,61,Computers in Industry,4,db/journals/cii/cii61.html#VuCCCP10,https://doi.org/10.1016/j.compind.2009.12.001 +Zhiyi Pan,Computer-aided design-while-engineering technology in top-down modeling of mechanical product.,2016,75,Computers in Industry,,db/journals/cii/cii75.html#PanWTC16,https://doi.org/10.1016/j.compind.2015.05.004 +Dunbing Tang,An agent-based collaborative design system to facilitate active die-maker involvement in stamping part design.,2004,54,Computers in Industry,3,db/journals/cii/cii54.html#Tang04,https://doi.org/10.1016/j.compind.2003.11.001 +Kyu-Yeul Lee,Remeshing into normal meshes with boundaries using subdivision.,2003,50,Computers in Industry,3,db/journals/cii/cii50.html#LeeKK03,https://doi.org/10.1016/S0166-3615(03)00018-6 +Zhenkai Liu,Integrating cross-sectional imaging based reverse engineering with rapid prototyping.,2006,57,Computers in Industry,2,db/journals/cii/cii57.html#LiuWL06,https://doi.org/10.1016/j.compind.2005.05.003 +W. L. Chen,A new process knowledge representation approach using parameter flow chart.,2011,62,Computers in Industry,1,db/journals/cii/cii62.html#ChenXZL11,https://doi.org/10.1016/j.compind.2010.05.016 +Philippe Rauffet,Conceptual model and IT system for organizational capability management.,2012,63,Computers in Industry,7,db/journals/cii/cii63.html#RauffetCB12,https://doi.org/10.1016/j.compind.2012.05.004 +Claire Berchet,The implementation and deployment of an ERP system: An industrial case study.,2005,56,Computers in Industry,6,db/journals/cii/cii56.html#BerchetH05,https://doi.org/10.1016/j.compind.2005.02.009 +Radu F. Babiceanu,Big Data and virtualization for manufacturing cyber-physical systems: A survey of the current status and future outlook.,2016,81,Computers in Industry,,db/journals/cii/cii81.html#BabiceanuS16,https://doi.org/10.1016/j.compind.2016.02.004 +Sylvain Kubler,"Group fuzzy AHP approach to embed relevant data on ""communicating material"".",2014,65,Computers in Industry,4,db/journals/cii/cii65.html#KublerVDTRF14,https://doi.org/10.1016/j.compind.2014.01.018 +Lan Wei,Prediction model of outpatient flow based on behaviour data of outpatients in a Chinese tertiary hospital.,2018,97,Computers in Industry,,db/journals/cii/cii97.html#WeiLYYHYSWF18,https://doi.org/10.1016/j.compind.2018.01.016 +Danúbia Bueno Espíndola,A model-based approach for data integration to improve maintenance management by mixed reality.,2013,64,Computers in Industry,4,db/journals/cii/cii64.html#EspindolaFGPBH13,https://doi.org/10.1016/j.compind.2013.01.002 +Sergey Kornienko,Application of multi-agent planning to the assignment problem.,2004,54,Computers in Industry,3,db/journals/cii/cii54.html#KornienkoKP04,https://doi.org/10.1016/j.compind.2003.11.002 +Qi Hao,Agent-based collaborative product design engineering: An industrial case study.,2006,57,Computers in Industry,1,db/journals/cii/cii57.html#HaoSZPL06,https://doi.org/10.1016/j.compind.2005.04.008 +Marten van Sinderen,"Computer in Industry Special Issue on ""Interoperability and Future Internet for Next-Generation Enterprises"" Editorial and state of the art.",2013,64,Computers in Industry,8,db/journals/cii/cii64.html#SinderenJD13,https://doi.org/10.1016/j.compind.2013.08.002 +Stefan Hüsig,Computer aided innovation - State of the art from a new product development perspective.,2009,60,Computers in Industry,8,db/journals/cii/cii60.html#HusigK09,https://doi.org/10.1016/j.compind.2009.05.011 +Xiaoyu Yang,Intelligent products: From lifecycle data acquisition to enabling product-related services.,2009,60,Computers in Industry,3,db/journals/cii/cii60.html#YangMC09,https://doi.org/10.1016/j.compind.2008.12.009 +Dong Woo Seo,Hybrid reality-based user experience and evaluation of a context-aware smart home.,2016,76,Computers in Industry,,db/journals/cii/cii76.html#SeoKKL16,https://doi.org/10.1016/j.compind.2015.11.003 +Henrik Sternberg,Decentralized intelligence in freight transport - A critical review.,2014,65,Computers in Industry,2,db/journals/cii/cii65.html#SternbergA14,https://doi.org/10.1016/j.compind.2013.11.011 +Thar Baker,Everything as a resource: Foundations and illustration through Internet-of-things.,2018,94,Computers in Industry,,db/journals/cii/cii94.html#BakerUFSMK18,https://doi.org/10.1016/j.compind.2017.10.001 +Shuxu Jing,A method for topological entity correspondence in a replicated collaborative CAD system.,2009,60,Computers in Industry,7,db/journals/cii/cii60.html#JingHHCL09,https://doi.org/10.1016/j.compind.2009.02.005 +Stefan Preitl,Editorial.,2003,52,Computers in Industry,3,db/journals/cii/cii52.html#PreitlF03,https://doi.org/10.1016/S0166-3615(03)00126-X +Beom Suk Jin,Usability risk level evaluation for physical user interface of mobile phone.,2010,61,Computers in Industry,4,db/journals/cii/cii61.html#JinJ10,https://doi.org/10.1016/j.compind.2009.12.006 +Xavier Desforges,A prognostic function for complex systems to support production and maintenance co-operative planning based on an extension of object oriented Bayesian networks.,2017,86,Computers in Industry,,db/journals/cii/cii86.html#DesforgesDA17,https://doi.org/10.1016/j.compind.2017.01.002 +Amy J. C. Trappey,Global content management services for product providers and purchasers.,2004,53,Computers in Industry,1,db/journals/cii/cii53.html#TrappeyT04,https://doi.org/10.1016/S0166-3615(03)00125-8 +Foteini Andriopoulou,P2Care: A dynamic peer-to-peer network for collaboration in personalized healthcare service delivery.,2015,69,Computers in Industry,,db/journals/cii/cii69.html#AndriopoulouBL15,https://doi.org/10.1016/j.compind.2014.09.007 +Qingbin Liu,Experimental study on the ice pattern fabrication for the investment casting by rapid freeze prototyping (RFP).,2002,48,Computers in Industry,3,db/journals/cii/cii48.html#LiuSL02,https://doi.org/10.1016/S0166-3615(02)00042-8 +Monika Mital,Cloud based management and control system for smart communities: A practical case study.,2015,74,Computers in Industry,,db/journals/cii/cii74.html#MitalPDR15,https://doi.org/10.1016/j.compind.2015.06.009 +Ikjune Kim,Securing design checking service for the regulation-based product design.,2012,63,Computers in Industry,6,db/journals/cii/cii63.html#KimLMJHKH12,https://doi.org/10.1016/j.compind.2012.04.002 +Ján Vascák,Local weather prediction system for a heating plant using cognitive approaches.,2015,74,Computers in Industry,,db/journals/cii/cii74.html#VascakJKA15,https://doi.org/10.1016/j.compind.2015.05.002 +John G. Breslin,Editorial.,2010,61,Computers in Industry,8,db/journals/cii/cii61.html#BreslinO10a,https://doi.org/10.1016/j.compind.2010.05.001 +Diogo R. Ferreira,Using logical decision trees to discover the cause of process delays from event logs.,2015,70,Computers in Industry,,db/journals/cii/cii70.html#FerreiraV15,https://doi.org/10.1016/j.compind.2015.02.009 +Jituo Li,Customizing 3D garments based on volumetric deformation.,2011,62,Computers in Industry,7,db/journals/cii/cii62.html#LiL11,https://doi.org/10.1016/j.compind.2011.04.002 +Zhi-Gang Xu,Novel design methodology supporting product life-cycle design.,2002,49,Computers in Industry,3,db/journals/cii/cii49.html#XuFT02,https://doi.org/10.1016/S0166-3615(02)00100-8 +Reza Movahed-Khah,Analysis of interaction dynamics in collaborative and distributed design process.,2010,61,Computers in Industry,1,db/journals/cii/cii61.html#Movahed-KhahOG10,https://doi.org/10.1016/j.compind.2009.05.007 +David Concha,The e-HUB evolution: From a Custom Software Architecture to a Software-as-a-Service implementation.,2010,61,Computers in Industry,2,db/journals/cii/cii61.html#ConchaERM10,https://doi.org/10.1016/j.compind.2009.10.010 +S. H. Choi,A virtual prototyping system with reconfigurable actuators for multi-material layered manufacturing.,2014,65,Computers in Industry,1,db/journals/cii/cii65.html#ChoiC14,https://doi.org/10.1016/j.compind.2013.08.001 +Yung-I Lin,Multi-agent hierarchical negotiation based on augmented price schedules decomposition for distributed design.,2012,63,Computers in Industry,6,db/journals/cii/cii63.html#LinTC12,https://doi.org/10.1016/j.compind.2012.02.017 +Pierre Bect,Identification of abnormal events by data monitoring: Application to complex systems.,2015,68,Computers in Industry,,db/journals/cii/cii68.html#BectSM15,https://doi.org/10.1016/j.compind.2014.12.008 +Klaus H. Strobl,Portable 3-D modeling using visual pose tracking.,2018,99,Computers in Industry,,db/journals/cii/cii99.html#StroblMBKWS18,https://doi.org/10.1016/j.compind.2018.03.009 +Saïd Izza,Exploiting semantic web services in achieving flexible application integration in the microelectronics field.,2008,59,Computers in Industry,7,db/journals/cii/cii59.html#IzzaVB08,https://doi.org/10.1016/j.compind.2007.12.015 +Salvador Villena,Image super-resolution for outdoor digital forensics. Usability and legal aspects.,2018,98,Computers in Industry,,db/journals/cii/cii98.html#VillenaVMRMMK18,https://doi.org/10.1016/j.compind.2018.02.004 +Wenbo Ding,A hybrid power line and visible light communication system for indoor hospital applications.,2015,68,Computers in Industry,,db/journals/cii/cii68.html#DingYYWWZS15,https://doi.org/10.1016/j.compind.2015.01.006 +Llanos Cuenca,Structural elements of coordination mechanisms in collaborative planning processes and their assessment through maturity models: Application to a ceramic tile company.,2013,64,Computers in Industry,8,db/journals/cii/cii64.html#CuencaBAT13,https://doi.org/10.1016/j.compind.2013.06.019 +Keyvan Rahmani,A hybrid hint-based and graph-based framework for recognition of interacting milling features.,2007,58,Computers in Industry,4,db/journals/cii/cii58.html#RahmaniA07,https://doi.org/10.1016/j.compind.2006.07.001 +Paul Valckenaers,Editorial of the Special Issue on Holonic Manufacturing Systems.,2001,46,Computers in Industry,3,db/journals/cii/cii46.html#Valckenaers01,https://doi.org/10.1016/S0166-3615(01)00131-2 +Péter Baranyi,From differential equations to PDC controller design via numerical transformation.,2003,51,Computers in Industry,3,db/journals/cii/cii51.html#BaranyiTYP03,https://doi.org/10.1016/S0166-3615(03)00058-7 +Madhukar Joshi,Web-based mining of statistical information.,2001,45,Computers in Industry,1,db/journals/cii/cii45.html#JoshiP01,https://doi.org/10.1016/S0166-3615(01)00077-X +Jan Woerner,A security architecture integrated co-operative engineering platform for organised model exchange in a Digital Factory environment.,2005,56,Computers in Industry,4,db/journals/cii/cii56.html#WoernerW05,https://doi.org/10.1016/j.compind.2005.01.011 +Türkay Dereli,Buyer/seller collaboration through measurement of beliefs on innovativeness of products.,2011,62,Computers in Industry,2,db/journals/cii/cii62.html#DereliDD11,https://doi.org/10.1016/j.compind.2010.10.013 +Yuanjun Laili,A Ranking Chaos Algorithm for dual scheduling of cloud service and computing resource in private cloud.,2013,64,Computers in Industry,4,db/journals/cii/cii64.html#LailiTZCLS13,https://doi.org/10.1016/j.compind.2013.02.008 +Elisa Negri,Modelling internal logistics systems through ontologies.,2017,88,Computers in Industry,,db/journals/cii/cii88.html#NegriPFMG17,https://doi.org/10.1016/j.compind.2017.03.004 +Patrik Nilsson,Managing stakeholder requirements in a product modelling system.,2006,57,Computers in Industry,2,db/journals/cii/cii57.html#NilssonF06,https://doi.org/10.1016/j.compind.2005.06.003 +Gonca Tuncel,Risk assessment and management for supply chain networks: A case study.,2010,61,Computers in Industry,3,db/journals/cii/cii61.html#TuncelA10,https://doi.org/10.1016/j.compind.2009.09.008 +Ari-Pekka Hameri,WWW-enabled knowledge management for distributed engineering projects.,2003,50,Computers in Industry,2,db/journals/cii/cii50.html#HameriP03,https://doi.org/10.1016/S0166-3615(02)00118-5 +Adriana Giret,An engineering framework for Service-Oriented Intelligent Manufacturing Systems.,2016,81,Computers in Industry,,db/journals/cii/cii81.html#GiretGB16,https://doi.org/10.1016/j.compind.2016.02.002 +Yves Sallez,On the activeness of intelligent Physical Internet containers.,2016,81,Computers in Industry,,db/journals/cii/cii81.html#SallezPMBB16,https://doi.org/10.1016/j.compind.2015.12.006 +Antoine Brière-Côté,Adaptive generic product structure modelling for design reuse in engineer-to-order products.,2010,61,Computers in Industry,1,db/journals/cii/cii61.html#Briere-CoteRD10,https://doi.org/10.1016/j.compind.2009.07.005 +Paul W. P. J. Grefen,Dynamic business network process management in instant virtual enterprises.,2009,60,Computers in Industry,2,db/journals/cii/cii60.html#GrefenMKWE09,https://doi.org/10.1016/j.compind.2008.06.006 +Yuan-Ping Luh,Data management of green product development with generic modularized product architecture.,2010,61,Computers in Industry,3,db/journals/cii/cii61.html#LuhCP10,https://doi.org/10.1016/j.compind.2009.09.002 +Ju-Yeon Lee,Concurrent material flow analysis by P3R-driven modeling and simulation in PLM.,2012,63,Computers in Industry,5,db/journals/cii/cii63.html#LeeKKN12,https://doi.org/10.1016/j.compind.2012.02.004 +Jouni Lyly-Yrjänäinen,Effects of combining product-centric control and direct digital manufacturing: The case of preparing customized hose assembly kits.,2016,82,Computers in Industry,,db/journals/cii/cii82.html#Lyly-Yrjanainen16,https://doi.org/10.1016/j.compind.2016.05.009 +Siavash H. Khajavi,Additive manufacturing in the spare parts supply chain.,2014,65,Computers in Industry,1,db/journals/cii/cii65.html#KhajaviPH14,https://doi.org/10.1016/j.compind.2013.07.008 +Jaideep Motwani,Critical factors for successful ERP implementation: Exploratory findings from four case studies.,2005,56,Computers in Industry,6,db/journals/cii/cii56.html#MotwaniSG05,https://doi.org/10.1016/j.compind.2005.02.005 +Chih-Hsing Chu,Computer aided geometric design of strip using developable Bézier patches.,2008,59,Computers in Industry,6,db/journals/cii/cii59.html#ChuWT08,https://doi.org/10.1016/j.compind.2008.03.001 +Wenhao Zhang,Photometric stereo for three-dimensional leaf venation extraction.,2018,98,Computers in Industry,,db/journals/cii/cii98.html#ZhangHSSG18,https://doi.org/10.1016/j.compind.2018.02.006 +Sheng Feng Qin,Development of a novel 3D simulation modelling system for distributed manufacturing.,2004,54,Computers in Industry,1,db/journals/cii/cii54.html#QinHWW04,https://doi.org/10.1016/j.compind.2003.07.005 +Jeevani Samantha Goonetillake,An integrity constraint management framework in engineering design.,2002,48,Computers in Industry,1,db/journals/cii/cii48.html#GoonetillakeCG02,https://doi.org/10.1016/S0166-3615(02)00008-8 +Ronald C. Beckett,Determining the anatomy of business systems for a virtual enterprise.,2003,51,Computers in Industry,2,db/journals/cii/cii51.html#Beckett03,https://doi.org/10.1016/S0166-3615(03)00032-0 +Benjamin Fabian,Access control for semantic data federations in industrial product-lifecycle management.,2012,63,Computers in Industry,9,db/journals/cii/cii63.html#FabianKKMG12,https://doi.org/10.1016/j.compind.2012.08.015 +Yannick Bodein,Explicit reference modeling methodology in parametric CAD system.,2014,65,Computers in Industry,1,db/journals/cii/cii65.html#BodeinRC14,https://doi.org/10.1016/j.compind.2013.08.004 +Jeongsu Oh,A fuzzy-based decision-making method for evaluating product discontinuity at the product transition point.,2014,65,Computers in Industry,4,db/journals/cii/cii65.html#OhHY14,https://doi.org/10.1016/j.compind.2014.02.012 +Dursun Delen,Towards a truly integrated enterprise modeling and analysis environment.,2003,51,Computers in Industry,3,db/journals/cii/cii51.html#DelenB03,https://doi.org/10.1016/S0166-3615(03)00063-0 +Rodolfo E. Haber,Artificial cognitive control with self-x capabilities: A case study of a micro-manufacturing process.,2015,74,Computers in Industry,,db/journals/cii/cii74.html#HaberJTB15,https://doi.org/10.1016/j.compind.2015.05.001 +Weidong Li 0001,Collaborative engineering: From concurrent engineering to enterprise collaboration.,2009,60,Computers in Industry,6,db/journals/cii/cii60.html#LiS09,https://doi.org/10.1016/j.compind.2009.02.012 +Carlos Coutinho,Sustainable interoperability on space mission feasibility studies.,2013,64,Computers in Industry,8,db/journals/cii/cii64.html#CoutinhoCJ13,https://doi.org/10.1016/j.compind.2013.06.016 +Antonio Jimeno-Morenilla,Augmented and Virtual Reality techniques for footwear.,2013,64,Computers in Industry,9,db/journals/cii/cii64.html#Jimeno-MorenillaSS13,https://doi.org/10.1016/j.compind.2013.06.008 +Jens-Uwe Dolinsky,Application of genetic programming to the calibration of industrial robots.,2007,58,Computers in Industry,3,db/journals/cii/cii58.html#DolinskyJC07,https://doi.org/10.1016/j.compind.2006.06.003 +Jae Yeol Lee,Tangible authoring of 3D virtual scenes in dynamic augmented reality environment.,2011,62,Computers in Industry,1,db/journals/cii/cii62.html#LeeSR11,https://doi.org/10.1016/j.compind.2010.07.003 +Jonghwan Lee,Construction of a computer-simulated mixed reality environment for virtual factory layout planning.,2011,62,Computers in Industry,1,db/journals/cii/cii62.html#LeeHY11,https://doi.org/10.1016/j.compind.2010.07.001 +Albert Albers,Development of an engine crankshaft in a framework of computer-aided innovation.,2009,60,Computers in Industry,8,db/journals/cii/cii60.html#AlbersRTM09,https://doi.org/10.1016/j.compind.2009.05.017 +Anuradha Mathrani,Test strategies in distributed software development environments.,2013,64,Computers in Industry,1,db/journals/cii/cii64.html#MathraniM13,https://doi.org/10.1016/j.compind.2012.09.002 +Luka Selak,Condition monitoring and fault diagnostics for hydropower plants.,2014,65,Computers in Industry,6,db/journals/cii/cii65.html#SelakBS14,https://doi.org/10.1016/j.compind.2014.02.006 +Moin Hasan,Fault tolerance in cloud computing environment: A systematic survey.,2018,99,Computers in Industry,,db/journals/cii/cii99.html#HasanG18,https://doi.org/10.1016/j.compind.2018.03.027 +Orcun Yildirim,A multi-agent system for minimizing energy costs in cement production.,2014,65,Computers in Industry,7,db/journals/cii/cii65.html#YildirimK14,https://doi.org/10.1016/j.compind.2014.05.002 +Mamy Pouliquen,Virtual hands and virtual reality multimodal platform to design safer industrial systems.,2007,58,Computers in Industry,1,db/journals/cii/cii58.html#PouliquenBMC07,https://doi.org/10.1016/j.compind.2006.04.001 +Esma Yahia,Formal measures for semantic interoperability assessment in cooperative enterprise information systems.,2012,63,Computers in Industry,5,db/journals/cii/cii63.html#YahiaAP12,https://doi.org/10.1016/j.compind.2012.01.010 +Siavash H. Khajavi,Risk reduction in new product launch: A hybrid approach combining direct digital and tool-based manufacturing.,2015,74,Computers in Industry,,db/journals/cii/cii74.html#KhajaviPHT15,https://doi.org/10.1016/j.compind.2015.08.008 +Frédérique Biennier,Collaborative business and data privacy: Toward a cyber-control?,2005,56,Computers in Industry,4,db/journals/cii/cii56.html#BiennierF05,https://doi.org/10.1016/j.compind.2005.01.004 +Pedro Company,Computer-aided sketching as a tool to promote innovation in the new product development process.,2009,60,Computers in Industry,8,db/journals/cii/cii60.html#CompanyCVAN09,https://doi.org/10.1016/j.compind.2009.05.018 +Sung Ook Park,Comparative effect of company-driven SNS activity vs. consumer-driven SNS activity on firm value: Evidence from facebook.,2016,82,Computers in Industry,,db/journals/cii/cii82.html#ParkNK16,https://doi.org/10.1016/j.compind.2016.07.008 +Seppo Sierla,Automatic assembly planning based on digital product descriptions.,2018,97,Computers in Industry,,db/journals/cii/cii97.html#SierlaKAV18,https://doi.org/10.1016/j.compind.2018.01.013 +Gaëtan Blondet,An ontology for numerical design of experiments processes.,2018,94,Computers in Industry,,db/journals/cii/cii94.html#BlondetDBE18,https://doi.org/10.1016/j.compind.2017.09.005 +An-Da Li,Bi-objective variable selection for key quality characteristics selection based on a modified NSGA-II and the ideal point method.,2016,82,Computers in Industry,,db/journals/cii/cii82.html#LiHZ16,https://doi.org/10.1016/j.compind.2016.05.008 +Erica Fernández,A model driven development approach based on a reference model for predicting disruptive events in a supply process.,2012,63,Computers in Industry,5,db/journals/cii/cii63.html#FernandezSC12,https://doi.org/10.1016/j.compind.2012.02.002 +Wilhelm Dangelmaier,Virtual and augmented reality support for discrete manufacturing system simulation.,2005,56,Computers in Industry,4,db/journals/cii/cii56.html#DangelmaierFGGMM05,https://doi.org/10.1016/j.compind.2005.01.007 +Q. Yang,Assembly operation process planning by mapping a virtual assembly simulation to real operation.,2013,64,Computers in Industry,7,db/journals/cii/cii64.html#YangWZBW13,https://doi.org/10.1016/j.compind.2013.06.001 +Hyerim Bae,A document-process association model for workflow management.,2002,47,Computers in Industry,2,db/journals/cii/cii47.html#BaeK02,https://doi.org/10.1016/S0166-3615(01)00150-6 +Lars Mönch,Simulation-based assessment of machine criticality measures for a shifting bottleneck scheduling approach in complex manufacturing systems.,2007,58,Computers in Industry,7,db/journals/cii/cii58.html#MonchZ07,https://doi.org/10.1016/j.compind.2007.05.010 +Tsung-Yi Chen,Knowledge sharing in virtual enterprises via an ontology-based access control approach.,2008,59,Computers in Industry,5,db/journals/cii/cii59.html#Chen08,https://doi.org/10.1016/j.compind.2007.12.004 +Min Liu 0002,A fuzzy matchmaking approach for Semantic Web Services with application to collaborative material selection.,2012,63,Computers in Industry,3,db/journals/cii/cii63.html#LiuSHYB12,https://doi.org/10.1016/j.compind.2011.10.001 +Romana Hussain,A framework to inform PSS Conceptual Design by using system-in-use data.,2012,63,Computers in Industry,4,db/journals/cii/cii63.html#HussainLV12,https://doi.org/10.1016/j.compind.2012.02.013 +Bulut Aslan,Enterprise Resource Planning systems: An assessment of applicability to Make-To-Order companies.,2012,63,Computers in Industry,7,db/journals/cii/cii63.html#AslanSH12,https://doi.org/10.1016/j.compind.2012.05.003 +Ivanna M. Lazarte,A distributed repository for managing business process models in cross-organizational collaborations.,2013,64,Computers in Industry,3,db/journals/cii/cii64.html#LazarteTICV13,https://doi.org/10.1016/j.compind.2012.11.001 +Joachim Gingele,A modelling technique for re-engineering business processes controlled by ISO 9001.,2002,49,Computers in Industry,3,db/journals/cii/cii49.html#GingeleCM02,https://doi.org/10.1016/S0166-3615(02)00113-6 +Toshiaki Kimura,Development of a remote monitoring system for a manufacturing support system for small and medium-sized enterprises.,2005,56,Computers in Industry,1,db/journals/cii/cii56.html#KimuraK05,https://doi.org/10.1016/j.compind.2004.11.001 +David O'Sullivan,Framework for managing business development in the networked organisation.,2002,47,Computers in Industry,1,db/journals/cii/cii47.html#OSullivan02,https://doi.org/10.1016/S0166-3615(01)00135-X +Yongfu Ren,Clean-up tool path generation by contraction tool method for machining complex polyhedral models.,2004,54,Computers in Industry,1,db/journals/cii/cii54.html#RenYL04,https://doi.org/10.1016/j.compind.2003.09.003 +Fujun Wang,A conceptual approach managing design resource.,2002,47,Computers in Industry,2,db/journals/cii/cii47.html#WangMD02,https://doi.org/10.1016/S0166-3615(01)00149-X +Nadia Hamani,Verification and validation of a SSM model dedicated to mode handling of flexible manufacturing systems.,2009,60,Computers in Industry,2,db/journals/cii/cii60.html#HamaniDC09,https://doi.org/10.1016/j.compind.2008.04.002 +Shih-Wen Hsiao,A structural component-based approach for designing product family.,2005,56,Computers in Industry,1,db/journals/cii/cii56.html#HsiaoL05,https://doi.org/10.1016/j.compind.2004.10.002 +Ramzi Ben Salem,A comparison of model transformation tools: Application for Transforming GRAI Extended Actigrams into UML Activity Diagrams.,2008,59,Computers in Industry,7,db/journals/cii/cii59.html#SalemGB08,https://doi.org/10.1016/j.compind.2007.12.013 +Jalal Delaram,An architectural view to computer integrated manufacturing systems based on Axiomatic Design Theory.,2018,100,Computers in Industry,,db/journals/cii/cii100.html#DelaramV18,https://doi.org/10.1016/j.compind.2018.04.009 +Stefan Hüsig,Open CAI 2.0 - Computer Aided Innovation in the era of open innovation and Web 2.0.,2011,62,Computers in Industry,4,db/journals/cii/cii62.html#HusigK11,https://doi.org/10.1016/j.compind.2010.12.003 +Jinghua Li,Semantic multi-agent system to assist business integration: An application on supplier selection for shipbuilding yards.,2018,96,Computers in Industry,,db/journals/cii/cii96.html#LiSHWYMZ18,https://doi.org/10.1016/j.compind.2018.01.001 +Kuo-Ming Chao,An agent-based approach to engineering design.,2002,48,Computers in Industry,1,db/journals/cii/cii48.html#ChaoNAJ02,https://doi.org/10.1016/S0166-3615(02)00007-6 +Gregory Moro Puppi Wanderley,MBA: A system of systems architecture model for supporting collaborative work.,2018,100,Computers in Industry,,db/journals/cii/cii100.html#WanderleyAPB18,https://doi.org/10.1016/j.compind.2018.04.011 +Miroslav Minovic,Semantic technologies on the mission: Preventing corruption in public procurement.,2014,65,Computers in Industry,5,db/journals/cii/cii65.html#MiroslavMVBD14,https://doi.org/10.1016/j.compind.2014.02.003 +Jose Luis Marin de la Iglesia,"Alternative estimation of ""public procurement advertised in the Official Journal as % of GDP"" official indicator using open government data.",2014,65,Computers in Industry,5,db/journals/cii/cii65.html#Iglesia14,https://doi.org/10.1016/j.compind.2014.03.004 +Jared R. Ocampo,A method for estimating the influence of advanced manufacturing tools on the manufacturing competitiveness of Maquiladoras in the apparel industry in Central America.,2017,87,Computers in Industry,,db/journals/cii/cii87.html#OcampoHV17,https://doi.org/10.1016/j.compind.2017.02.001 +Olga Willner,Establishing a maturity model for design automation in sales-delivery processes of ETO products.,2016,82,Computers in Industry,,db/journals/cii/cii82.html#WillnerGS16,https://doi.org/10.1016/j.compind.2016.05.003 +Necmettin Kaya,Machining fixture locating and clamping position optimization using genetic algorithms.,2006,57,Computers in Industry,2,db/journals/cii/cii57.html#Kaya06,https://doi.org/10.1016/j.compind.2005.05.001 +Chuck C. H. Law,Managing the full ERP life-cycle: Considerations of maintenance and support requirements and IT governance practice as integral elements of the formula for successful ERP adoption.,2010,61,Computers in Industry,3,db/journals/cii/cii61.html#LawCW10,https://doi.org/10.1016/j.compind.2009.10.004 +Chun-Wei R. Lin,A fuzzy strategic alliance selection framework for supply chain partnering under limited evaluation resources.,2004,55,Computers in Industry,2,db/journals/cii/cii55.html#LinC04,https://doi.org/10.1016/j.compind.2004.02.003 +Alexander Borek,A risk based model for quantifying the impact of information quality.,2014,65,Computers in Industry,2,db/journals/cii/cii65.html#BorekPWT14,https://doi.org/10.1016/j.compind.2013.12.004 +Chen Zhang,On-line tool wear measurement for ball-end milling cutter based on machine vision.,2013,64,Computers in Industry,6,db/journals/cii/cii64.html#ZhangZ13,https://doi.org/10.1016/j.compind.2013.03.010 +Miguel Reyes,Automatic digital biometry analysis based on depth maps.,2013,64,Computers in Industry,9,db/journals/cii/cii64.html#ReyesCRRE13,https://doi.org/10.1016/j.compind.2013.04.009 +Yves Ducq,A contribution of system theory to sustainable enterprise interoperability science base.,2012,63,Computers in Industry,8,db/journals/cii/cii63.html#DucqCD12,https://doi.org/10.1016/j.compind.2012.08.005 +An Caris,Decision support in intermodal transport: A new research agenda.,2013,64,Computers in Industry,2,db/journals/cii/cii64.html#CarisMJ13,https://doi.org/10.1016/j.compind.2012.12.001 +Jean-Paul A. Barthès,Agent-supported portals and knowledge management in complex R and D projects.,2002,48,Computers in Industry,1,db/journals/cii/cii48.html#BarthesT02,https://doi.org/10.1016/S0166-3615(02)00006-4 +Daryl Powell,The concurrent application of lean production and ERP: Towards an ERP-based lean implementation process.,2013,64,Computers in Industry,3,db/journals/cii/cii64.html#PowellASD13,https://doi.org/10.1016/j.compind.2012.12.002 +Kleanthis Thramboulidis,A cyber-physical system-based approach for industrial automation systems.,2015,72,Computers in Industry,,db/journals/cii/cii72.html#Thramboulidis15,https://doi.org/10.1016/j.compind.2015.04.006 +Angelo Alessandri,Fault diagnosis for nonlinear systems using a bank of neural estimators.,2003,52,Computers in Industry,3,db/journals/cii/cii52.html#Alessandri03,https://doi.org/10.1016/S0166-3615(03)00131-3 +Yuri Borgianni,Supporting product design by anticipating the success chances of new value profiles.,2013,64,Computers in Industry,4,db/journals/cii/cii64.html#BorgianniCPR13,https://doi.org/10.1016/j.compind.2013.02.004 +L. Minh Dang,Utilizing text recognition for the defects extraction in sewers CCTV inspection videos.,2018,99,Computers in Industry,,db/journals/cii/cii99.html#DangHIMM18,https://doi.org/10.1016/j.compind.2018.03.020 +Mariela Cerrada,Agents-based design for fault management systems in industrial processes.,2007,58,Computers in Industry,4,db/journals/cii/cii58.html#CerradaCAF07,https://doi.org/10.1016/j.compind.2006.07.008 +Santiago Arroyave-Tobón,AIR-MODELLING: A tool for gesture-based solid modelling in context during early design stages in AR environments.,2015,66,Computers in Industry,,db/journals/cii/cii66.html#Arroyave-TobonOC15,https://doi.org/10.1016/j.compind.2014.10.007 +Philippe Clermont,Experience feedback in product lifecycle management.,2018,95,Computers in Industry,,db/journals/cii/cii95.html#ClermontK18,https://doi.org/10.1016/j.compind.2017.11.002 +Giuseppe Berio,Towards an integrating architecture for competence management.,2007,58,Computers in Industry,2,db/journals/cii/cii58.html#BerioH07,https://doi.org/10.1016/j.compind.2006.09.007 +Sergey Smirnov 0002,Action patterns in business process model repositories.,2012,63,Computers in Industry,2,db/journals/cii/cii63.html#SmirnovWMW12,https://doi.org/10.1016/j.compind.2011.11.001 +Ricardo Jardim-Gonçalves,Sustainable interoperability: The future of Internet based industrial enterprises.,2012,63,Computers in Industry,8,db/journals/cii/cii63.html#Jardim-GoncalvesPG12,https://doi.org/10.1016/j.compind.2012.08.016 +Ji-Jiang Yang,Guest Editorial.,2015,69,Computers in Industry,,db/journals/cii/cii69.html#YangLM15,https://doi.org/10.1016/j.compind.2015.02.001 +Leonid Sheremetov,Knowledge-based collaborative engineering of pipe networks in the upstream and downstream petroleum industry.,2008,59,Computers in Industry,9,db/journals/cii/cii59.html#SheremetovBCR08,https://doi.org/10.1016/j.compind.2008.07.004 +Chen Zheng,Multidisciplinary interface model for design of mechatronic systems.,2016,76,Computers in Industry,,db/journals/cii/cii76.html#ZhengDBE16,https://doi.org/10.1016/j.compind.2015.12.002 +Francisco Javier Delgado del Hoyo,Towards a client-oriented integration of construction processes and building GIS systems.,2015,73,Computers in Industry,,db/journals/cii/cii73.html#HoyoGRC15,https://doi.org/10.1016/j.compind.2015.07.012 +Claudia-Melania Chituc,A framework proposal for seamless interoperability in a collaborative networked environment.,2009,60,Computers in Industry,5,db/journals/cii/cii60.html#ChitucAT09,https://doi.org/10.1016/j.compind.2009.01.009 +Anbo Xiang,VPeers: A peer-to-peer service discovery framework for Virtual Manufacturing Organizations.,2008,59,Computers in Industry,5,db/journals/cii/cii59.html#XiangLL08,https://doi.org/10.1016/j.compind.2008.02.003 +Zhi-nian Zhai,Association-Based Active Access Control models with balanced scalability and flexibility.,2014,65,Computers in Industry,1,db/journals/cii/cii65.html#ZhaiLZC14,https://doi.org/10.1016/j.compind.2013.07.013 +Sun Jie,Labeling design documents based on operators' consensus - A case study of robotic design.,2010,61,Computers in Industry,1,db/journals/cii/cii61.html#JieFT10,https://doi.org/10.1016/j.compind.2009.07.002 +Seongah Chin,Facial configuration and BMI based personalized face and upper body modeling for customer-oriented wearable product design.,2010,61,Computers in Industry,6,db/journals/cii/cii61.html#ChinK10,https://doi.org/10.1016/j.compind.2010.03.006 +Wil M. P. van der Aalst,Process mining: a research agenda.,2004,53,Computers in Industry,3,db/journals/cii/cii53.html#AalstW04,https://doi.org/10.1016/j.compind.2003.10.001 +Chuan-Jun Su,Enabling successful Collaboration 2.0: A REST-based Web Service and Web 2.0 technology oriented information platform for collaborative product development.,2012,63,Computers in Industry,9,db/journals/cii/cii63.html#SuC12,https://doi.org/10.1016/j.compind.2012.08.018 +Min-Yuan Ma,A design decision-making support model for customized product color combination.,2007,58,Computers in Industry,6,db/journals/cii/cii58.html#MaCW07,https://doi.org/10.1016/j.compind.2006.11.001 +Zong-Yao Chen,Evolutionary feature and instance selection for traffic sign recognition.,2015,74,Computers in Industry,,db/journals/cii/cii74.html#ChenLKT15,https://doi.org/10.1016/j.compind.2015.08.007 +Hans Peter Lomholt Bruun,PLM system support for modular product development.,2015,67,Computers in Industry,,db/journals/cii/cii67.html#BruunMHWP15,https://doi.org/10.1016/j.compind.2014.10.010 +Hans-Jörg Bullinger,"Special issue on human-centered computing systems in industry"".",2010,61,Computers in Industry,4,db/journals/cii/cii61.html#BullingerN10,https://doi.org/10.1016/j.compind.2010.04.001 +Nitishal Chungoora,A model-driven ontology approach for manufacturing system interoperability and knowledge sharing.,2013,64,Computers in Industry,4,db/journals/cii/cii64.html#ChungooraYGPUACHC13,https://doi.org/10.1016/j.compind.2013.01.003 +Myung-Il Roh,Generation of the 3D CAD model of the hull structure at the initial ship design stage and its application.,2007,58,Computers in Industry,6,db/journals/cii/cii58.html#RohL07,https://doi.org/10.1016/j.compind.2006.12.003 +Yung-Chi Shen,A study of enterprise resource planning (ERP) system performance measurement using the quantitative balanced scorecard approach.,2016,75,Computers in Industry,,db/journals/cii/cii75.html#ShenCW16,https://doi.org/10.1016/j.compind.2015.05.006 +E. D. Talbi,Application of optimization techniques to parameter set-up in scheduling.,2004,55,Computers in Industry,2,db/journals/cii/cii55.html#TalbiGGPH04,https://doi.org/10.1016/j.compind.2004.07.002 +Ricky Andriansyah,A process algebra based simulation model of a miniload-workstation order picking system.,2011,62,Computers in Industry,3,db/journals/cii/cii62.html#AndriansyahKJER11,https://doi.org/10.1016/j.compind.2010.09.005 +Chin-Bin Wang,Design of a Meta Model for integrating enterprise systems.,2005,56,Computers in Industry,3,db/journals/cii/cii56.html#WangCCC05,https://doi.org/10.1016/j.compind.2004.10.003 +France-Anne Gruat La Forme,A framework to analyse collaborative performance.,2007,58,Computers in Industry,7,db/journals/cii/cii58.html#FormeBC07,https://doi.org/10.1016/j.compind.2007.05.007 +Chih-Hsing Chu,Applications of the Web-based collaborative visualization in distributed product development.,2006,57,Computers in Industry,3,db/journals/cii/cii57.html#ChuCW06,https://doi.org/10.1016/j.compind.2005.12.004 +Martin Bonev,Formal computer-aided product family architecture design for mass customization.,2015,74,Computers in Industry,,db/journals/cii/cii74.html#BonevHCM15,https://doi.org/10.1016/j.compind.2015.07.006 +Chengen Wang,Implementation of remote robot manufacturing over Internet.,2001,45,Computers in Industry,3,db/journals/cii/cii45.html#WangCY01,https://doi.org/10.1016/S0166-3615(01)00098-7 +Ricardo Mejía,Experiences in developing collaborative engineering environments: An action research approach.,2007,58,Computers in Industry,4,db/journals/cii/cii58.html#MejiaLM07,https://doi.org/10.1016/j.compind.2006.07.009 +Ovidiu Noran,A systematic evaluation of the C4ISR AF using ISO15704 Annex A (GERAM).,2005,56,Computers in Industry,5,db/journals/cii/cii56.html#Noran05,https://doi.org/10.1016/j.compind.2004.12.005 +Soumaya El Kadiri,Current trends on ICT technologies for enterprise information systems.,2016,79,Computers in Industry,,db/journals/cii/cii79.html#KadiriGTHECK16,https://doi.org/10.1016/j.compind.2015.06.008 +Sang C. Park,Tool path generation for a surface model with defects.,2010,61,Computers in Industry,1,db/journals/cii/cii61.html#ParkC10,https://doi.org/10.1016/j.compind.2009.07.003 +Dimitrios I. Kosmopoulos,Automated inspection of gaps on the automobile production line through stereo vision and specular reflection.,2001,46,Computers in Industry,1,db/journals/cii/cii46.html#KosmopoulosV01,https://doi.org/10.1016/S0166-3615(01)00113-0 +Davide Russo,Structural optimization strategies to design green products.,2014,65,Computers in Industry,3,db/journals/cii/cii65.html#RussoR14,https://doi.org/10.1016/j.compind.2013.12.009 +Chris J. Price,A layered approach to automated electrical safety analysis in automotive environments.,2006,57,Computers in Industry,5,db/journals/cii/cii57.html#PriceSL06,https://doi.org/10.1016/j.compind.2006.02.001 +Qing Wang,A hierarchical multi-view modeling for Networked Joint Manufacturing System.,2004,53,Computers in Industry,1,db/journals/cii/cii53.html#WangYI04,https://doi.org/10.1016/S0166-3615(03)00124-6 +Marco Alemanni,Key performance indicators for PLM benefits evaluation: The Alcatel Alenia Space case study.,2008,59,Computers in Industry,8,db/journals/cii/cii59.html#AlemanniATV08,https://doi.org/10.1016/j.compind.2008.06.003 +Kin Yeung,Development of a remote-access laboratory: a dc motor control experiment.,2003,52,Computers in Industry,3,db/journals/cii/cii52.html#YeungH03,https://doi.org/10.1016/S0166-3615(03)00133-7 +Alaaeddine Yousfi,Introducing decision-aware business processes.,2015,70,Computers in Industry,,db/journals/cii/cii70.html#YousfiDSH15,https://doi.org/10.1016/j.compind.2015.02.003 +Abdourahim Sylla,Configuration knowledge modeling: How to extend configuration from assemble/make to order towards engineer to order for the bidding process.,2018,99,Computers in Industry,,db/journals/cii/cii99.html#SyllaGVACG18,https://doi.org/10.1016/j.compind.2018.03.019 +Franci Lahajnar,Machine vision system for inspecting electric plates.,2002,47,Computers in Industry,1,db/journals/cii/cii47.html#LahajnarBPK02,https://doi.org/10.1016/S0166-3615(01)00134-8 +S. H. Choi,Modelling and optimisation of Rapid Prototyping.,2002,47,Computers in Industry,1,db/journals/cii/cii47.html#ChoiS02,https://doi.org/10.1016/S0166-3615(01)00140-3 +Filippo Chiarello,Extracting and mapping industry 4.0 technologies using wikipedia.,2018,100,Computers in Industry,,db/journals/cii/cii100.html#ChiarelloTBF18,https://doi.org/10.1016/j.compind.2018.04.006 +Jesper Momme,Framework for outsourcing manufacturing: strategic and operational implications.,2002,49,Computers in Industry,1,db/journals/cii/cii49.html#Momme02,https://doi.org/10.1016/S0166-3615(02)00059-3 +Mariagrazia Dotoli,An integrated approach for warehouse analysis and optimization: A case study.,2015,70,Computers in Industry,,db/journals/cii/cii70.html#DotoliEFCT15,https://doi.org/10.1016/j.compind.2014.12.004 +Lars Mönch,A survey of challenges in modelling and decision-making for discrete event logistics systems.,2011,62,Computers in Industry,6,db/journals/cii/cii62.html#MonchLMS11a,https://doi.org/10.1016/j.compind.2011.05.001 +Dongmin Zhang,A framework for design knowledge management and reuse for Product-Service Systems in construction machinery industry.,2012,63,Computers in Industry,4,db/journals/cii/cii63.html#ZhangHXZ12,https://doi.org/10.1016/j.compind.2012.02.008 +David Lechevalier,A methodology for the semi-automatic generation of analytical models in manufacturing.,2018,95,Computers in Industry,,db/journals/cii/cii95.html#LechevalierNRF18,https://doi.org/10.1016/j.compind.2017.12.005 +Jie Hu 0002,New CBR adaptation method combining with problem-solution relational analysis for mechanical design.,2015,66,Computers in Industry,,db/journals/cii/cii66.html#HuQP15,https://doi.org/10.1016/j.compind.2014.08.004 +Janus S. Liang,Generation of automotive troubleshooting configuration system using an ontology-based approach.,2012,63,Computers in Industry,5,db/journals/cii/cii63.html#Liang12,https://doi.org/10.1016/j.compind.2012.01.005 +Raul Poler,Dynamic modelling of Decision Systems (DMDS).,2002,49,Computers in Industry,2,db/journals/cii/cii49.html#PolerED02,https://doi.org/10.1016/S0166-3615(02)00083-0 +Uwe Bracht,The Digital Factory between vision and reality.,2005,56,Computers in Industry,4,db/journals/cii/cii56.html#BrachtM05,https://doi.org/10.1016/j.compind.2005.01.008 +Elisabeth Ilie Zudor,A survey of applications and requirements of unique identification systems and RFID techniques.,2011,62,Computers in Industry,3,db/journals/cii/cii62.html#ZudorKBMM11,https://doi.org/10.1016/j.compind.2010.10.004 +Robert W. Brennan,Evaluating the performance of reactive control architectures for manufacturing production control.,2001,46,Computers in Industry,3,db/journals/cii/cii46.html#BrennanN01,https://doi.org/10.1016/S0166-3615(01)00108-7 +Fuhua Lin,Schema-based conversation modeling for agent-oriented manufacturing systems.,2001,46,Computers in Industry,3,db/journals/cii/cii46.html#LinN01,https://doi.org/10.1016/S0166-3615(01)00133-6 +Junyi Zhou,Performance evaluation of object localization based on active radio frequency identification technology.,2009,60,Computers in Industry,9,db/journals/cii/cii60.html#ZhouS09,https://doi.org/10.1016/j.compind.2009.05.002 +François Rousselot,Towards a formal definition of contradiction in inventive design.,2012,63,Computers in Industry,3,db/journals/cii/cii63.html#RousselotZC12,https://doi.org/10.1016/j.compind.2012.01.001 +Min Li,Replicated concurrency control for collaborative feature modelling: A fine granular approach.,2008,59,Computers in Industry,9,db/journals/cii/cii59.html#LiGFZ08,https://doi.org/10.1016/j.compind.2008.07.003 +Daniela Grigori,Business Process Intelligence.,2004,53,Computers in Industry,3,db/journals/cii/cii53.html#GrigoriCCDSS04,https://doi.org/10.1016/j.compind.2003.10.007 +Martin Verwijmeren,Software component architecture in supply chain management.,2004,53,Computers in Industry,2,db/journals/cii/cii53.html#Verwijmeren04,https://doi.org/10.1016/j.compind.2003.07.004 +S. H. Choi,A versatile virtual prototyping system for rapid product development.,2008,59,Computers in Industry,5,db/journals/cii/cii59.html#ChoiC08,https://doi.org/10.1016/j.compind.2007.12.003 +Yeh-Liang Hsu,Weight reduction of aluminum disc wheels under fatigue constraints using a sequential neural network approximation method.,2001,46,Computers in Industry,2,db/journals/cii/cii46.html#HsuH01,https://doi.org/10.1016/S0166-3615(01)00125-7 +Maria Grazia Violante,Kano qualitative vs quantitative approaches: An assessment framework for products attributes analysis.,2017,86,Computers in Industry,,db/journals/cii/cii86.html#ViolanteV17,https://doi.org/10.1016/j.compind.2016.12.007 +Toshirou Iyama,Optimal strategies for corrective assembly approach applied to a high-quality relay production system.,2013,64,Computers in Industry,5,db/journals/cii/cii64.html#IyamaMMYN13,https://doi.org/10.1016/j.compind.2013.02.012 +S. H. Choi,A topological hierarchy-based approach to layered manufacturing of functionally graded multi-material objects.,2009,60,Computers in Industry,5,db/journals/cii/cii60.html#ChoiC09,https://doi.org/10.1016/j.compind.2009.01.008 +Colin Chambers,Introducing X-machine models to verify PLC ladder diagrams.,2001,45,Computers in Industry,3,db/journals/cii/cii45.html#ChambersHB01,https://doi.org/10.1016/S0166-3615(01)00085-9 +Alexandra Melike Brintrup,An interactive genetic algorithm-based framework for handling qualitative criteria in design optimization.,2007,58,Computers in Industry,3,db/journals/cii/cii58.html#BrintrupRT07,https://doi.org/10.1016/j.compind.2006.06.004 +Oliver Taminé,KaViDo - a web-based system for collaborative research and development processes.,2003,52,Computers in Industry,1,db/journals/cii/cii52.html#TamineD03,https://doi.org/10.1016/S0166-3615(03)00067-8 +Younghyun Han,A case-based framework for reuse of previous design concepts in conceptual synthesis of mechanisms.,2006,57,Computers in Industry,4,db/journals/cii/cii57.html#HanL06,https://doi.org/10.1016/j.compind.2005.09.005 +Jie Shi,SecTTS: A secure track and trace system for RFID-enabled supply chains.,2012,63,Computers in Industry,6,db/journals/cii/cii63.html#ShiLHS12,https://doi.org/10.1016/j.compind.2012.03.006 +Hans-Henrik Hvolby,Trends and challenges in Production and Supply Chain Management.,2010,61,Computers in Industry,9,db/journals/cii/cii61.html#HvolbyT10,https://doi.org/10.1016/j.compind.2010.07.005 +Ingo Zinnikus,Agent-supported collaboration and interoperability for networked enterprises: Modeling interactions and service compositions.,2013,64,Computers in Industry,8,db/journals/cii/cii64.html#ZinnikusCF13,https://doi.org/10.1016/j.compind.2013.06.020 +Haiping Zha,A workflow net similarity measure based on transition adjacency relations.,2010,61,Computers in Industry,5,db/journals/cii/cii61.html#ZhaWWWS10,https://doi.org/10.1016/j.compind.2010.01.001 +Yu-Hui Tao,An XML implementation process model for enterprise applications.,2004,55,Computers in Industry,2,db/journals/cii/cii55.html#TaoHS04,https://doi.org/10.1016/j.compind.2004.02.001 +Ping Zhu,Lightweight design of vehicle parameters under crashworthiness using conservative surrogates.,2013,64,Computers in Industry,3,db/journals/cii/cii64.html#ZhuPCV13,https://doi.org/10.1016/j.compind.2012.11.004 +Farouk Belkadi,Competency characterisation by means of work situation modelling.,2007,58,Computers in Industry,2,db/journals/cii/cii58.html#BelkadiBD07,https://doi.org/10.1016/j.compind.2006.09.005 +Sinuhé Arroyo,Choreography frameworks for business integration: Addressing heterogeneous semantics.,2007,58,Computers in Industry,6,db/journals/cii/cii58.html#ArroyoSD07,https://doi.org/10.1016/j.compind.2006.10.002 +Tijana Vuletic,The challenges in computer supported conceptual engineering design.,2018,95,Computers in Industry,,db/journals/cii/cii95.html#VuleticDHMPG18,https://doi.org/10.1016/j.compind.2017.11.003 +Julio Molleda,A fast and robust decision support system for in-line quality assessment of resistance seam welds in the steelmaking industry.,2012,63,Computers in Industry,3,db/journals/cii/cii63.html#MolledaCUGGR12,https://doi.org/10.1016/j.compind.2012.01.003 +Josiah Radcliffe,Machine vision for orchard navigation.,2018,98,Computers in Industry,,db/journals/cii/cii98.html#RadcliffeCB18,https://doi.org/10.1016/j.compind.2018.03.008 +G. L. Thimm,Towards unified modelling of product life-cycles.,2006,57,Computers in Industry,4,db/journals/cii/cii57.html#ThimmLM06,https://doi.org/10.1016/j.compind.2005.09.003 +Yongsheng Ma,Associative feature modeling for concurrent engineering integration.,2003,51,Computers in Industry,1,db/journals/cii/cii51.html#MaT03,https://doi.org/10.1016/S0166-3615(03)00025-3 +Zhoupeng Han,CAD assembly model retrieval based on multi-source semantics information and weighted bipartite graph.,2018,96,Computers in Industry,,db/journals/cii/cii96.html#HanMYH18,https://doi.org/10.1016/j.compind.2018.01.003 +M.-C. Wu,Editorial.,2005,56,Computers in Industry,2,db/journals/cii/cii56.html#WuWS05,https://doi.org/10.1016/j.compind.2004.06.007 +Hao Li,Module partition process model and method of integrated service product.,2012,63,Computers in Industry,4,db/journals/cii/cii63.html#LiJGQT12,https://doi.org/10.1016/j.compind.2012.02.015 +Sherman Y. T. Lang,Cognitive factors in distributed design.,2002,48,Computers in Industry,1,db/journals/cii/cii48.html#LangDB02,https://doi.org/10.1016/S0166-3615(02)00012-X +Luís Ramos,Towards a Machine of a Process (MOP) ontology to facilitate e-commerce of industrial machinery.,2014,65,Computers in Industry,1,db/journals/cii/cii65.html#RamosGAM14,https://doi.org/10.1016/j.compind.2013.07.012 +R. J. Kuo,A decision support system for selecting convenience store location through integration of fuzzy AHP and artificial neural network.,2002,47,Computers in Industry,2,db/journals/cii/cii47.html#KuoCK02,https://doi.org/10.1016/S0166-3615(01)00147-6 +Yong Zeng,Secure collaboration in design and supply chain management.,2012,63,Computers in Industry,6,db/journals/cii/cii63.html#ZengW12,https://doi.org/10.1016/j.compind.2012.05.002 +Charlie C. L. Wang,Computing on rays: A parallel approach for surface mesh modeling from multi-material volumetric data.,2011,62,Computers in Industry,7,db/journals/cii/cii62.html#Wang11,https://doi.org/10.1016/j.compind.2011.02.004 +Norbert Gronau,Approach for requirement oriented team building in industrial processes.,2007,58,Computers in Industry,2,db/journals/cii/cii58.html#GronauFSR07,https://doi.org/10.1016/j.compind.2006.09.011 +Jianqiang Li,Diversity-aware retrieval of medical records.,2015,69,Computers in Industry,,db/journals/cii/cii69.html#LiLLMWCYPW15,https://doi.org/10.1016/j.compind.2014.09.004 +H. K. Lin,A manufacturing system engineering ontology model on the semantic web for inter-enterprise collaboration.,2007,58,Computers in Industry,5,db/journals/cii/cii58.html#LinH07,https://doi.org/10.1016/j.compind.2006.09.015 +Janne M. Denolf,Towards a framework of critical success factors for implementing supply chain information systems.,2015,68,Computers in Industry,,db/journals/cii/cii68.html#DenolfTWVO15,https://doi.org/10.1016/j.compind.2014.12.012 +M. Zhou,Formal component-based modeling and synthesis for PLC systems.,2013,64,Computers in Industry,8,db/journals/cii/cii64.html#ZhouWWSSGS13,https://doi.org/10.1016/j.compind.2013.07.003 +Chijoo Lee,Method to reduce the gap between construction and IT companies to improve suitability before selecting an enterprise system.,2017,85,Computers in Industry,,db/journals/cii/cii85.html#LeeL17,https://doi.org/10.1016/j.compind.2016.12.005 +Deyi Xue,A fuzzy mathematics based optimal delivery scheduling approach.,2001,45,Computers in Industry,3,db/journals/cii/cii45.html#XueWN01,https://doi.org/10.1016/S0166-3615(01)00100-2 +Shlomit S. Pinter,Discovering workflow models from activities' lifespans.,2004,53,Computers in Industry,3,db/journals/cii/cii53.html#PinterG04,https://doi.org/10.1016/j.compind.2003.10.004 +C. Enríquez,Mapping the time. Method for logistics management software: Application in Spain.,2017,89,Computers in Industry,,db/journals/cii/cii89.html#EnriquezMC17,https://doi.org/10.1016/j.compind.2017.03.005 +Fu-Shiung Hsieh,Collaborative composition of processes in holonic manufacturing systems.,2011,62,Computers in Industry,1,db/journals/cii/cii62.html#HsiehC11,https://doi.org/10.1016/j.compind.2010.05.012 +Tae-Young Kim,A modeling framework for agile and interoperable virtual enterprises.,2006,57,Computers in Industry,3,db/journals/cii/cii57.html#KimLKK06,https://doi.org/10.1016/j.compind.2005.12.003 +Chao-Ton Su,A neural network based information granulation approach to shorten the cellular phone test process.,2006,57,Computers in Industry,5,db/journals/cii/cii57.html#SuCC06,https://doi.org/10.1016/j.compind.2006.01.001 +Jörn Schönberger,Decision support systems and the coordination of supply consortium partners.,2011,62,Computers in Industry,6,db/journals/cii/cii62.html#SchonbergerK11,https://doi.org/10.1016/j.compind.2011.04.008 +Shiyong Lin,Hybrid client-server architecture and control techniques for collaborative product development using haptic interfaces.,2010,61,Computers in Industry,1,db/journals/cii/cii61.html#LinNL10,https://doi.org/10.1016/j.compind.2009.07.004 +Salam Dhou,Dynamic 3D surface reconstruction and motion modeling from a pan-tilt-zoom camera.,2015,70,Computers in Industry,,db/journals/cii/cii70.html#DhouM15,https://doi.org/10.1016/j.compind.2015.02.005 +Wei Qin,Multiple-objective scheduling for interbay AMHS by using genetic-programming-based composite dispatching rules generator.,2013,64,Computers in Industry,6,db/journals/cii/cii64.html#QinZS13,https://doi.org/10.1016/j.compind.2013.03.009 +Thècle Alix,Product-service systems scenarios simulation based on G-DEVS/HLA: Generalized discrete event specification/high level architecture.,2012,63,Computers in Industry,4,db/journals/cii/cii63.html#AlixZ12,https://doi.org/10.1016/j.compind.2012.02.011 +Jan Olhager,The role of the customer order decoupling point in production and supply chain management.,2010,61,Computers in Industry,9,db/journals/cii/cii61.html#Olhager10,https://doi.org/10.1016/j.compind.2010.07.011 +ángel García-Crespo,Conceptual model for semantic representation of industrial manufacturing processes.,2010,61,Computers in Industry,7,db/journals/cii/cii61.html#Garcia-CrespoRCB10,https://doi.org/10.1016/j.compind.2010.01.004 +Amjad Fayoumi,Ecosystem-inspired enterprise modelling framework for collaborative and networked manufacturing systems.,2016,80,Computers in Industry,,db/journals/cii/cii80.html#Fayoumi16,https://doi.org/10.1016/j.compind.2016.04.003 +Ji-Jiang Yang,Emerging information technologies for enhanced healthcare.,2015,69,Computers in Industry,,db/journals/cii/cii69.html#YangLMWCWWP15,https://doi.org/10.1016/j.compind.2015.01.012 +S. K. Kwok,Design and development of a mobile EPC-RFID-based self-validation system (MESS) for product authentication.,2010,61,Computers in Industry,7,db/journals/cii/cii61.html#KwokTTLC10,https://doi.org/10.1016/j.compind.2010.02.001 +Yong Zeng,Recursive object model (ROM) - Modelling of linguistic information in engineering design.,2008,59,Computers in Industry,6,db/journals/cii/cii59.html#Zeng08,https://doi.org/10.1016/j.compind.2008.03.002 +Sylvie Galichet,Integrating expert knowledge into industrial control structures.,2003,52,Computers in Industry,3,db/journals/cii/cii52.html#GalichetF03,https://doi.org/10.1016/S0166-3615(03)00129-5 +Wen-Yau Liang,An object-oriented approach to the concurrent engineering of electronics assemblies.,2002,47,Computers in Industry,2,db/journals/cii/cii47.html#LiangO02,https://doi.org/10.1016/S0166-3615(01)00144-0 +Ta-Cheng Chen,Immune algorithms-based approach for redundant reliability problems with multiple component choices.,2005,56,Computers in Industry,2,db/journals/cii/cii56.html#ChenY05,https://doi.org/10.1016/j.compind.2004.06.002 +István Mezgár,The challenge of networked enterprises for cloud computing interoperability.,2014,65,Computers in Industry,4,db/journals/cii/cii65.html#MezgarR14,https://doi.org/10.1016/j.compind.2014.01.017 +Namchul Do,Interactive analysis of product development experiments using On-line Analytical Mining.,2015,66,Computers in Industry,,db/journals/cii/cii66.html#DoBP15,https://doi.org/10.1016/j.compind.2014.09.003 +Myung-Il Roh,Advanced ship evacuation analysis using a cell-based simulation model.,2013,64,Computers in Industry,1,db/journals/cii/cii64.html#RohH13,https://doi.org/10.1016/j.compind.2012.10.004 +Michael Niemann,Comparison and retrieval of process models using related cluster pairs.,2012,63,Computers in Industry,2,db/journals/cii/cii63.html#NiemannSSS12,https://doi.org/10.1016/j.compind.2011.11.002 +Bahattin Koc,Non-uniform offsetting and hollowing objects by using biarcs fitting for rapid prototyping processes.,2002,47,Computers in Industry,1,db/journals/cii/cii47.html#KocL02,https://doi.org/10.1016/S0166-3615(01)00141-5 +Moe Thandar Wynn,Data and process requirements for product recall coordination.,2011,62,Computers in Industry,7,db/journals/cii/cii62.html#WynnOHF11,https://doi.org/10.1016/j.compind.2011.05.003 +Dagný Hauksdottir,Identified adjustability dimensions when generating a product specific requirements specification by requirements reuse.,2014,65,Computers in Industry,6,db/journals/cii/cii65.html#HauksdottirMN14,https://doi.org/10.1016/j.compind.2014.02.011 +Chun-Yu Lin,Strategic decision making for multiple-generation product lines using dynamic state variable models: The cannibalization case.,2014,65,Computers in Industry,1,db/journals/cii/cii65.html#LinK14,https://doi.org/10.1016/j.compind.2013.07.010 +Vincent Chapurlat,UPSL-SE: A model verification framework for Systems Engineering.,2013,64,Computers in Industry,5,db/journals/cii/cii64.html#Chapurlat13,https://doi.org/10.1016/j.compind.2013.03.002 +Injun Choi,An XML-based process definition language for integrated process management.,2003,50,Computers in Industry,1,db/journals/cii/cii50.html#ChoiSPP03,https://doi.org/10.1016/S0166-3615(02)00139-2 +Michele Germani,A QFD-based method to support SMEs in benchmarking co-design tools.,2012,63,Computers in Industry,1,db/journals/cii/cii63.html#GermaniMP12,https://doi.org/10.1016/j.compind.2011.10.007 +Jaeil Park,Evaluating a mobile data-collection system for production information in SMEs.,2015,68,Computers in Industry,,db/journals/cii/cii68.html#Park15,https://doi.org/10.1016/j.compind.2014.12.006 +Qing Li,Autonomous navigation and environment modeling for MAVs in 3-D enclosed industrial environments.,2013,64,Computers in Industry,9,db/journals/cii/cii64.html#LiLWTHZC13,https://doi.org/10.1016/j.compind.2013.06.010 +Ovidiu Noran,Building a support framework for enterprise integration.,2013,64,Computers in Industry,1,db/journals/cii/cii64.html#Noran13,https://doi.org/10.1016/j.compind.2012.09.006 +Sarvesh Rawat,Multi-sensor data fusion by a hybrid methodology - A comparative study.,2016,75,Computers in Industry,,db/journals/cii/cii75.html#RawatR16,https://doi.org/10.1016/j.compind.2015.10.012 +Yuan-Jye Tseng,A model for evaluating a design change and the distributed manufacturing operations in a collaborative manufacturing environment.,2008,59,Computers in Industry,8,db/journals/cii/cii59.html#TsengKH08,https://doi.org/10.1016/j.compind.2008.06.001 +David L. Hicks,Supporting personalization and customization in a collaborative setting.,2003,52,Computers in Industry,1,db/journals/cii/cii52.html#Hicks03,https://doi.org/10.1016/S0166-3615(03)00070-8 +Euripidis N. Loukis,An empirical investigation of information systems interoperability business value in European firms.,2013,64,Computers in Industry,4,db/journals/cii/cii64.html#LoukisC13,https://doi.org/10.1016/j.compind.2013.01.005 +Jean-Philippe Pernot,Incorporating free-form features in aesthetic and engineering product design: State-of-the-art report.,2008,59,Computers in Industry,6,db/journals/cii/cii59.html#PernotFGL08,https://doi.org/10.1016/j.compind.2008.03.004 +Felipe D. Vargas-Villamil,A model predictive control approach for real-time optimization of reentrant manufacturing lines.,2001,45,Computers in Industry,1,db/journals/cii/cii45.html#Vargas-VillamilR01,https://doi.org/10.1016/S0166-3615(01)00080-X +Grégoire Pépiot,UECML: Unified Enterprise Competence Modelling Language.,2007,58,Computers in Industry,2,db/journals/cii/cii58.html#PepiotCFG07,https://doi.org/10.1016/j.compind.2006.09.010 +Bin Li,A research on open CNC system based on architecture/component software reuse technology.,2004,55,Computers in Industry,1,db/journals/cii/cii55.html#LiZT04,https://doi.org/10.1016/j.compind.2003.10.011 +Uma Jayaram,Introducing quantitative analysis methods into virtual environments for real-time and continuous ergonomic evaluations.,2006,57,Computers in Industry,3,db/journals/cii/cii57.html#JayaramJIKP06,https://doi.org/10.1016/j.compind.2005.12.005 +Shlomit S. Pinter,"Erratum to ""Discovering workflow models from activities' lifespans"": [Comput. Ind. 53(2004) 283-296].",2004,54,Computers in Industry,3,db/journals/cii/cii54.html#PinterG04a,https://doi.org/10.1016/j.compind.2004.01.001 +Richard Crowder,Evaluation of a hypermedia maintenance support application.,2003,51,Computers in Industry,3,db/journals/cii/cii51.html#CrowderWH03,https://doi.org/10.1016/S0166-3615(03)00056-3 +Mario Lezoche,Conceptualising and structuring semantics in cooperative enterprise information systems models.,2012,63,Computers in Industry,8,db/journals/cii/cii63.html#LezocheYAPZ12,https://doi.org/10.1016/j.compind.2012.08.006 +Chulsoon Park,Management of business process constraints using BPTrigger.,2004,55,Computers in Industry,1,db/journals/cii/cii55.html#ParkC04,https://doi.org/10.1016/j.compind.2003.11.003 +Antonio Jimeno,FPGA-based tool path computation: An application for shoe last machining on CNC lathes.,2006,57,Computers in Industry,2,db/journals/cii/cii57.html#JimenoSMPC06,https://doi.org/10.1016/j.compind.2005.05.004 +Xavier Boucher,Formalisation and use of competencies for industrial performance optimisation: A survey.,2007,58,Computers in Industry,2,db/journals/cii/cii58.html#BoucherBG07,https://doi.org/10.1016/j.compind.2006.09.004 +Navroop Kaur,Cognitive decision making in smart industry.,2015,74,Computers in Industry,,db/journals/cii/cii74.html#KaurS15,https://doi.org/10.1016/j.compind.2015.06.006 +Mariagrazia Dotoli,A Nash equilibrium simulation model for the competitiveness evaluation of the auction based day ahead electricity market.,2014,65,Computers in Industry,4,db/journals/cii/cii65.html#DotoliEFSC14,https://doi.org/10.1016/j.compind.2014.02.014 +Juliette Heintz,Chemical enterprise model and decision-making framework for sustainable chemical product design.,2014,65,Computers in Industry,3,db/journals/cii/cii65.html#HeintzBG14,https://doi.org/10.1016/j.compind.2014.01.010 +Shing-Han Li,Investigation on auditing principles and rules for PDM/PLM system implementation.,2013,64,Computers in Industry,6,db/journals/cii/cii64.html#LiCYL13,https://doi.org/10.1016/j.compind.2013.04.007 +Ike C. Ehie,Identifying critical issues in enterprise resource planning (ERP) implementation.,2005,56,Computers in Industry,6,db/journals/cii/cii56.html#EhieM05,https://doi.org/10.1016/j.compind.2005.02.006 +Qiuming Luo,WebGlusterFS: A web-based administration tool for GlusterFS with resource assignment for various storage demands.,2018,100,Computers in Industry,,db/journals/cii/cii100.html#LuoZLM18,https://doi.org/10.1016/j.compind.2018.04.001 +Cecilia Zanni-Merk,An ontological basis for computer aided innovation.,2009,60,Computers in Industry,8,db/journals/cii/cii60.html#Zanni-MerkCR09,https://doi.org/10.1016/j.compind.2009.05.012 +John P. T. Mo,The role of lean in the application of information technology to manufacturing.,2009,60,Computers in Industry,4,db/journals/cii/cii60.html#Mo09,https://doi.org/10.1016/j.compind.2009.01.002 +Gülçin Büyüközkan,Fuzzy group decision-making to multiple preference formats in quality function deployment.,2007,58,Computers in Industry,5,db/journals/cii/cii58.html#BuyukozkanFR07,https://doi.org/10.1016/j.compind.2006.07.002 +Yves Sallez,A stigmergic approach for dynamic routing of active products in FMS.,2009,60,Computers in Industry,3,db/journals/cii/cii60.html#SallezBT09,https://doi.org/10.1016/j.compind.2008.12.002 +Karuna Hadeli,Multi-agent coordination and control using stigmergy.,2004,53,Computers in Industry,1,db/journals/cii/cii53.html#HadeliVKB04,https://doi.org/10.1016/S0166-3615(03)00123-4 +Yevgen Biletskiy,A semantic approach to a framework for business domain software systems.,2010,61,Computers in Industry,8,db/journals/cii/cii61.html#BiletskiyR10a,https://doi.org/10.1016/j.compind.2010.05.004 +Hajer Ben Mahmoud Dammak,A multiobjective-optimization approach for a piloted quality-management system: A comparison of two approaches for a case study.,2011,62,Computers in Industry,4,db/journals/cii/cii62.html#DammakKRA11,https://doi.org/10.1016/j.compind.2010.12.010 +Serigne Diagne,Complex product modeling based on a Multi-solution eXtended Conceptual Design Semantic Matrix for behavioral performance assessment.,2016,75,Computers in Industry,,db/journals/cii/cii75.html#DiagneCB16,https://doi.org/10.1016/j.compind.2015.06.003 +Jeongsu Oh,A collaboration model for new product development through the integration of PLM and SCM in the electronics industry.,2015,73,Computers in Industry,,db/journals/cii/cii73.html#OhLY15,https://doi.org/10.1016/j.compind.2015.08.003 +Ricardo Jardim-Gonçalves,Collaborative negotiation for ontology-driven enterprise businesses.,2014,65,Computers in Industry,9,db/journals/cii/cii65.html#Jardim-GoncalvesCCSG14,https://doi.org/10.1016/j.compind.2014.01.001 +Ameersing Luximon,Shoe-last design innovation for better shoe fitting.,2009,60,Computers in Industry,8,db/journals/cii/cii60.html#LuximonL09,https://doi.org/10.1016/j.compind.2009.05.015 +Nagashree N.,An Early Risk Detection and Management System for the Cloud with Log Parser.,2018,97,Computers in Industry,,db/journals/cii/cii97.html#NTC18,https://doi.org/10.1016/j.compind.2018.01.018 +Yahui Lu,Task-activity based access control for process collaboration environments.,2009,60,Computers in Industry,6,db/journals/cii/cii60.html#LuZS09,https://doi.org/10.1016/j.compind.2009.02.009 +T. Y. Wang,A simulated annealing algorithm for facility layout problems under variable demand in Cellular Manufacturing Systems.,2001,46,Computers in Industry,2,db/journals/cii/cii46.html#WangWL01,https://doi.org/10.1016/S0166-3615(01)00107-5 +Guido Schimm,Mining exact models of concurrent workflows.,2004,53,Computers in Industry,3,db/journals/cii/cii53.html#Schimm04,https://doi.org/10.1016/j.compind.2003.10.003 +Eero Eloranta,Improved project management through improved document management.,2001,45,Computers in Industry,3,db/journals/cii/cii45.html#ElorantaHL01,https://doi.org/10.1016/S0166-3615(01)00099-9 +Khemraj Emrith,Real-time recovery of moving 3D faces for emerging applications.,2013,64,Computers in Industry,9,db/journals/cii/cii64.html#EmrithBSSM13,https://doi.org/10.1016/j.compind.2013.03.011 +Jean Wery,Simulation-optimisation based framework for Sales and Operations Planning taking into account new products opportunities in a co-production context.,2018,94,Computers in Industry,,db/journals/cii/cii94.html#WeryGTM18,https://doi.org/10.1016/j.compind.2017.10.002 +Pnina Soffer,Aligning an ERP system with enterprise requirements: An object-process based approach.,2005,56,Computers in Industry,6,db/journals/cii/cii56.html#SofferGD05,https://doi.org/10.1016/j.compind.2005.03.002 +Yi Yan,Compiling Ladder Diagram into Instruction List to comply with IEC 61131-3.,2010,61,Computers in Industry,5,db/journals/cii/cii61.html#YanZ10,https://doi.org/10.1016/j.compind.2009.12.010 +Xavier Boucher,Competence management in industrial processes.,2007,58,Computers in Industry,2,db/journals/cii/cii58.html#BoucherBM07,https://doi.org/10.1016/j.compind.2006.09.003 +Jacquie Jarvis,Achieving holonic control - an incremental approach.,2003,51,Computers in Industry,2,db/journals/cii/cii51.html#JarvisJM03,https://doi.org/10.1016/S0166-3615(03)00037-X +Christian Leyh,Sustainability management and its software support in selected Italian enterprises.,2014,65,Computers in Industry,3,db/journals/cii/cii65.html#LeyhRD14,https://doi.org/10.1016/j.compind.2014.01.005 +Christos Tranoris,A tool supported engineering process for developing control applications.,2006,57,Computers in Industry,5,db/journals/cii/cii57.html#TranorisT06,https://doi.org/10.1016/j.compind.2006.02.006 +Kary Främling,Editorial.,2009,60,Computers in Industry,3,db/journals/cii/cii60.html#FramlingM09,https://doi.org/10.1016/j.compind.2008.12.010 +Jay Lee,Intelligent prognostics tools and e-maintenance.,2006,57,Computers in Industry,6,db/journals/cii/cii57.html#LeeNDQL06,https://doi.org/10.1016/j.compind.2006.02.014 +Jonathan Gaudreault,Distributed search for supply chain coordination.,2009,60,Computers in Industry,6,db/journals/cii/cii60.html#GaudreaultFP09,https://doi.org/10.1016/j.compind.2009.02.006 +Sergio Cavalieri,Product-service system engineering: From theory to industrial applications.,2012,63,Computers in Industry,4,db/journals/cii/cii63.html#CavalieriPS12,https://doi.org/10.1016/j.compind.2012.03.001 +Kelli de Faria Cordeiro,aDApTA: Adaptive approach to information integration in dynamic environments.,2015,71,Computers in Industry,,db/journals/cii/cii71.html#CordeiroCB15,https://doi.org/10.1016/j.compind.2015.03.002 +Changhong Xu,NC process reuse oriented effective subpart retrieval approach of 3D CAD models.,2017,90,Computers in Industry,,db/journals/cii/cii90.html#XuZHLH17,https://doi.org/10.1016/j.compind.2017.04.006 +Ladjel Bellatreche,Editorial.,2014,65,Computers in Industry,9,db/journals/cii/cii65.html#BellatrecheAMS14,https://doi.org/10.1016/j.compind.2014.09.001 +Carlos Ariel Diaz,Grapevine buds detection and localization in 3D space based on Structure from Motion and 2D image classification.,2018,99,Computers in Industry,,db/journals/cii/cii99.html#DiazPMB18,https://doi.org/10.1016/j.compind.2018.03.033 +Víctor Anaya,The Unified Enterprise Modelling Language - Overview and further work.,2010,61,Computers in Industry,2,db/journals/cii/cii61.html#AnayaBHHMOPV10,https://doi.org/10.1016/j.compind.2009.10.013 +Xiaoming Zhang,Metallic materials ontology population from LOD based on conditional random field.,2018,99,Computers in Industry,,db/journals/cii/cii99.html#ZhangZWMP18,https://doi.org/10.1016/j.compind.2018.03.032 +Thongchai Chinkatham,Early feasibility evaluation of Solution Concepts in an Inventive Design Method Framework: Approach and support tool.,2015,67,Computers in Industry,,db/journals/cii/cii67.html#ChinkathamC15,https://doi.org/10.1016/j.compind.2014.11.004 +Melvyn L. Smith,Editorial.,2013,64,Computers in Industry,9,db/journals/cii/cii64.html#SmithS13,https://doi.org/10.1016/j.compind.2013.10.001 +Xin Zhong,3D dental biometrics: Alignment and matching of dental casts for human identification.,2013,64,Computers in Industry,9,db/journals/cii/cii64.html#ZhongYWSLFC13,https://doi.org/10.1016/j.compind.2013.06.005 +Gang Chen,Comprehensive evaluation method for performance of unmanned robot applied to automotive test using fuzzy logic and evidence theory and FNN.,2018,98,Computers in Industry,,db/journals/cii/cii98.html#ChenZ18,https://doi.org/10.1016/j.compind.2018.02.015 +Shouqin Zhou,Internet-based distributive knowledge integrated system for product design.,2003,50,Computers in Industry,2,db/journals/cii/cii50.html#ZhouCXY03,https://doi.org/10.1016/S0166-3615(02)00120-3 +Yongtao Luo,Integrated multi-layer representation and ant colony search for product selective disassembly planning.,2016,75,Computers in Industry,,db/journals/cii/cii75.html#LuoPG16,https://doi.org/10.1016/j.compind.2015.10.011 +Feng-Que Pei,Double-layered big data analytics architecture for solar cells series welding machine.,2018,97,Computers in Industry,,db/journals/cii/cii97.html#PeiLT18,https://doi.org/10.1016/j.compind.2018.01.019 +Paul Folan,A review of performance measurement: Towards performance management.,2005,56,Computers in Industry,7,db/journals/cii/cii56.html#FolanB05,https://doi.org/10.1016/j.compind.2005.03.001 +Ronald E. Giachetti,An object-oriented information model for manufacturability analysis of printed circuit board fabrication.,2001,45,Computers in Industry,2,db/journals/cii/cii45.html#GiachettiA01,https://doi.org/10.1016/S0166-3615(01)00092-6 +Amy Tabb,Automatic segmentation of trees in dynamic outdoor environments.,2018,98,Computers in Industry,,db/journals/cii/cii98.html#TabbM18,https://doi.org/10.1016/j.compind.2018.03.002 +Boyd A. Nicholds,An integrated performance driven manufacturing management strategy based on overall system effectiveness.,2018,97,Computers in Industry,,db/journals/cii/cii97.html#NicholdsMO18,https://doi.org/10.1016/j.compind.2018.02.008 +Michael Holm Larsen,Development of a Production Meta Product State Model.,2001,46,Computers in Industry,3,db/journals/cii/cii46.html#LarsenSL01,https://doi.org/10.1016/S0166-3615(01)00128-2 +V. B. Sunil,WebROBOT: Internet based robotic assembly planning system.,2004,54,Computers in Industry,2,db/journals/cii/cii54.html#SunilP04,https://doi.org/10.1016/j.compind.2003.07.008 +Jesús Gimeno,A new AR authoring tool using depth maps for industrial procedures.,2013,64,Computers in Industry,9,db/journals/cii/cii64.html#GimenoMOF13,https://doi.org/10.1016/j.compind.2013.06.012 +Türkay Dereli,Industrial applications of type-2 fuzzy sets and systems: A concise review.,2011,62,Computers in Industry,2,db/journals/cii/cii62.html#DereliBADT11,https://doi.org/10.1016/j.compind.2010.10.006 +Giulia Wally Scurati,Converting maintenance actions into standard symbols for Augmented Reality applications in Industry 4.0.,2018,98,Computers in Industry,,db/journals/cii/cii98.html#ScuratiGFFBU18,https://doi.org/10.1016/j.compind.2018.02.001 +Yohei Kawada,Data access control for energy-related services in smart public infrastructures.,2017,88,Computers in Industry,,db/journals/cii/cii88.html#KawadaYMTF17,https://doi.org/10.1016/j.compind.2017.03.002 +Juan José Alfaro Saiz,An information architecture for a performance management framework by collaborating SMEs.,2010,61,Computers in Industry,7,db/journals/cii/cii61.html#SaizRBV10,https://doi.org/10.1016/j.compind.2010.03.012 +Juan Diego Frutos,A framework to support customer-company interaction in mass customization environments.,2004,54,Computers in Industry,2,db/journals/cii/cii54.html#FrutosB04,https://doi.org/10.1016/j.compind.2003.09.004 +Faiza Walha,A rail-road PI-hub allocation problem: Active and reactive approaches.,2016,81,Computers in Industry,,db/journals/cii/cii81.html#WalhaBCL16,https://doi.org/10.1016/j.compind.2016.04.007 +Bon-Yeol Koo,Example-based statistical framework for parametric modeling of human body shapes.,2015,73,Computers in Industry,,db/journals/cii/cii73.html#KooPCKC15,https://doi.org/10.1016/j.compind.2015.07.007 +Barbara Weber,Refactoring large process model repositories.,2011,62,Computers in Industry,5,db/journals/cii/cii62.html#WeberRMR11,https://doi.org/10.1016/j.compind.2010.12.012 +Frederic Pereyrol,Fast assessment of production makespan using aggregate technical data.,2012,63,Computers in Industry,9,db/journals/cii/cii63.html#PereyrolFB12,https://doi.org/10.1016/j.compind.2012.09.005 +Cristina Portalés,An image-based system to preliminary assess the quality of grape harvest batches on arrival at the winery.,2015,68,Computers in Industry,,db/journals/cii/cii68.html#PortalesR15,https://doi.org/10.1016/j.compind.2014.12.010 +Toni Rodrigues,Moving from syntactic to semantic organizations using JXML2OWL.,2008,59,Computers in Industry,8,db/journals/cii/cii59.html#RodriguesRC08,https://doi.org/10.1016/j.compind.2008.06.002 +Mohammad Gholami,Evaluating alternative approaches to mobile object localization in wireless sensor networks with passive architecture.,2012,63,Computers in Industry,9,db/journals/cii/cii63.html#GholamiCB12,https://doi.org/10.1016/j.compind.2012.08.017 +Lamia Berrah,Towards an aggregation performance measurement system model in a supply chain context.,2007,58,Computers in Industry,7,db/journals/cii/cii58.html#BerrahC07,https://doi.org/10.1016/j.compind.2007.05.012 +Qianfu Ni,A configuration-based flexible reporting method for enterprise information systems.,2007,58,Computers in Industry,5,db/journals/cii/cii58.html#NiYL07,https://doi.org/10.1016/j.compind.2006.09.016 +Ovidiu Noran,Collaborative disaster management: An interdisciplinary approach.,2014,65,Computers in Industry,6,db/journals/cii/cii65.html#Noran14,https://doi.org/10.1016/j.compind.2014.04.003 +Mikko Kärkkäinen,Intelligent products - a step towards a more effective project delivery chain.,2003,50,Computers in Industry,2,db/journals/cii/cii50.html#KarkkainenHFA03,https://doi.org/10.1016/S0166-3615(02)00116-1 +In-Ho Song,Synthesis of the digital mock-up system for heterogeneous CAD assembly.,2009,60,Computers in Industry,5,db/journals/cii/cii60.html#SongC09,https://doi.org/10.1016/j.compind.2008.09.004 +Sang C. Park,A methodology for creating a virtual model for a flexible manufacturing system.,2005,56,Computers in Industry,7,db/journals/cii/cii56.html#Park05,https://doi.org/10.1016/j.compind.2005.04.002 +Mohamed-Zied Ouertani,Supporting conflict management in collaborative design: An approach to assess engineering change impacts.,2008,59,Computers in Industry,9,db/journals/cii/cii59.html#Ouertani08,https://doi.org/10.1016/j.compind.2008.07.010 +Sebastian Schmidt 0001,Text classification based filters for a domain-specific search engine.,2016,78,Computers in Industry,,db/journals/cii/cii78.html#SchmidtSR16,https://doi.org/10.1016/j.compind.2015.10.004 +Giorgio Colombo,A new design paradigm for the development of custom-fit soft sockets for lower limb prostheses.,2010,61,Computers in Industry,6,db/journals/cii/cii61.html#ColomboFRR10,https://doi.org/10.1016/j.compind.2010.03.008 +H. Y. Kan,An Internet virtual reality collaborative environment for effective product design.,2001,45,Computers in Industry,2,db/journals/cii/cii45.html#KanDS01,https://doi.org/10.1016/S0166-3615(01)00093-8 +Patrizia Garengo,Understanding the relationship between PMS and MIS in SMEs: An organizational life cycle perspective.,2007,58,Computers in Industry,7,db/journals/cii/cii58.html#GarengoNB07,https://doi.org/10.1016/j.compind.2007.05.006 +Robert W. Brennan,Developments in dynamic and intelligent reconfiguration of industrial automation.,2008,59,Computers in Industry,6,db/journals/cii/cii59.html#BrennanVTZSSM08,https://doi.org/10.1016/j.compind.2008.02.001 +Qi Zhou,A deadlock recovery strategy for unified automated material handling systems in 300 mm wafer fabrications.,2016,75,Computers in Industry,,db/journals/cii/cii75.html#ZhouZ16,https://doi.org/10.1016/j.compind.2015.10.014 +Hyerim Bae,Document configuration control processes captured in a workflow.,2004,53,Computers in Industry,2,db/journals/cii/cii53.html#BaeHYKKP04,https://doi.org/10.1016/j.compind.2003.07.001 +H. T. Goranson,Architectural support for the advanced virtual enterprise.,2003,51,Computers in Industry,2,db/journals/cii/cii51.html#Goranson03,https://doi.org/10.1016/S0166-3615(03)00031-9 +Paulo Leitão,Industrial automation based on cyber-physical systems technologies: Prototype implementations and challenges.,2016,81,Computers in Industry,,db/journals/cii/cii81.html#LeitaoCK16,https://doi.org/10.1016/j.compind.2015.08.004 +Paolo Gaiardelli,Performance measurement of the after-sales service network - Evidence from the automotive industry.,2007,58,Computers in Industry,7,db/journals/cii/cii58.html#GaiardelliSS07,https://doi.org/10.1016/j.compind.2007.05.008 +S. H. Choi,A layer-based virtual prototyping system for product development.,2003,51,Computers in Industry,3,db/journals/cii/cii51.html#ChoiC03,https://doi.org/10.1016/S0166-3615(03)00059-9 +Ravi Khadka,Model-driven approach to enterprise interoperability at the technical service level.,2013,64,Computers in Industry,8,db/journals/cii/cii64.html#KhadkaSPSJ13,https://doi.org/10.1016/j.compind.2013.07.006 +Namchul Do,Integration of engineering change objects in product data management databases to support engineering change analysis.,2015,73,Computers in Industry,,db/journals/cii/cii73.html#Do15,https://doi.org/10.1016/j.compind.2015.08.002 +Chengyi Liu,Mobile information search for location-based information.,2010,61,Computers in Industry,4,db/journals/cii/cii61.html#LiuRG10,https://doi.org/10.1016/j.compind.2009.12.008 +Thuy Duong Oesterreich,Understanding the implications of digitisation and automation in the context of Industry 4.0: A triangulation approach and elements of a research agenda for the construction industry.,2016,83,Computers in Industry,,db/journals/cii/cii83.html#OesterreichT16,https://doi.org/10.1016/j.compind.2016.09.006 +Nenad Cus-Babic,Supply-chain transparency within industrialized construction projects.,2014,65,Computers in Industry,2,db/journals/cii/cii65.html#Cus-BabicRNP14,https://doi.org/10.1016/j.compind.2013.12.003 +Navadon Sortrakul,Genetic algorithms for integrated preventive maintenance planning and production scheduling for a single machine.,2005,56,Computers in Industry,2,db/journals/cii/cii56.html#SortrakulNC05,https://doi.org/10.1016/j.compind.2004.06.005 +Thomas Bangemann,PROTEUS - Creating distributed maintenance systems through an integration platform.,2006,57,Computers in Industry,6,db/journals/cii/cii57.html#BangemannRRSSTTZ06,https://doi.org/10.1016/j.compind.2006.02.018 +Antonio Reyes-Moro,Integrating Petri Nets and hybrid heuristic search for the scheduling of FMS.,2002,47,Computers in Industry,1,db/journals/cii/cii47.html#Reyes-MoroYKL02,https://doi.org/10.1016/S0166-3615(01)00124-5 +Jan Fabian Ehmke,Interactive analysis of discrete-event logistics systems with support of a data warehouse.,2011,62,Computers in Industry,6,db/journals/cii/cii62.html#EhmkeGMS11,https://doi.org/10.1016/j.compind.2011.04.007 +Marco Garetti,Life Cycle Simulation for the design of Product-Service Systems.,2012,63,Computers in Industry,4,db/journals/cii/cii63.html#GarettiRT12,https://doi.org/10.1016/j.compind.2012.02.007 +Hongmei Gou,A framework for virtual enterprise operation management.,2003,50,Computers in Industry,3,db/journals/cii/cii50.html#GouHLL03,https://doi.org/10.1016/S0166-3615(03)00021-6 +N. C. W. M. Braspenning,Model-based system analysis using Chi and Uppaal: An industrial case study.,2008,59,Computers in Industry,1,db/journals/cii/cii59.html#BraspenningBMR08,https://doi.org/10.1016/j.compind.2007.06.002 +Mounira Harzallah,IT-based competency modeling and management: from theory to practice in enterprise engineering and operations.,2002,48,Computers in Industry,2,db/journals/cii/cii48.html#HarzallahV02,https://doi.org/10.1016/S0166-3615(02)00003-9 +Sadra Ahmadi,Managing readiness-relevant activities for the organizational dimension of ERP implementation.,2015,68,Computers in Industry,,db/journals/cii/cii68.html#AhmadiPYM15,https://doi.org/10.1016/j.compind.2014.12.009 +Zhaomin Ren,Collaborative project planning: A case study of seismic risk analysis using an e-engineering hub.,2006,57,Computers in Industry,3,db/journals/cii/cii57.html#RenAHAM06,https://doi.org/10.1016/j.compind.2005.12.002 +Bernard Kamsu-Foguem,Risk information formalisation with graphs.,2017,85,Computers in Industry,,db/journals/cii/cii85.html#Kamsu-FoguemT17,https://doi.org/10.1016/j.compind.2016.12.004 +Eelco van den Berg,Freeform feature modelling: concepts and prospects.,2002,49,Computers in Industry,2,db/journals/cii/cii49.html#BergBV02,https://doi.org/10.1016/S0166-3615(02)00080-5 +Salem Y. Al-Agtash,A trade server for electricity e-commerce.,2002,47,Computers in Industry,1,db/journals/cii/cii47.html#Al-AgtashA02,https://doi.org/10.1016/S0166-3615(01)00126-9 +Azfar Khalid,Security framework for industrial collaborative robotic cyber-physical systems.,2018,97,Computers in Industry,,db/journals/cii/cii97.html#KhalidKKGTP18,https://doi.org/10.1016/j.compind.2018.02.009 +A. Mohamadghasemi,"Erratum to ""A decision support system for selecting convenience store location through integration of fuzzy AHP and artificial neural network"" [Comput. Ind. 47(2002) 199-214].",2013,64,Computers in Industry,3,db/journals/cii/cii64.html#MohamadghasemiH13,https://doi.org/10.1016/j.compind.2012.10.003 +Björn Fagerström,Efficient collaboration between main and sub-suppliers.,2002,49,Computers in Industry,1,db/journals/cii/cii49.html#FagerstromJ02,https://doi.org/10.1016/S0166-3615(02)00056-8 +Bernard Anselmetti,Coupling experimental design - digital simulation of junctions for the development of complex tolerance chains.,2003,50,Computers in Industry,3,db/journals/cii/cii50.html#AnselmettiMM03,https://doi.org/10.1016/S0166-3615(03)00020-4 +Charlie C. L. Wang,Soft products development.,2010,61,Computers in Industry,6,db/journals/cii/cii61.html#WangC10,https://doi.org/10.1016/j.compind.2010.03.001 +Souhaiel Khalfaoui,An efficient method for fully automatic 3D digitization of unknown objects.,2013,64,Computers in Industry,9,db/journals/cii/cii64.html#KhalfaouiSFF13,https://doi.org/10.1016/j.compind.2013.04.005 +Ali Riza Yildiz,A new design optimization framework based on immune algorithm and Taguchi's method.,2009,60,Computers in Industry,8,db/journals/cii/cii60.html#Yildiz09,https://doi.org/10.1016/j.compind.2009.05.016 +Daniel Lima Gomes Jr.,Augmented visualization using homomorphic filtering and Haar-based natural markers for power systems substations.,2018,97,Computers in Industry,,db/journals/cii/cii97.html#GomesPSJAAG18,https://doi.org/10.1016/j.compind.2018.01.010 +Onur Hisarciklilar,A Speech Act Theory-based information model to support design communication through annotations.,2009,60,Computers in Industry,7,db/journals/cii/cii60.html#HisarciklilarB09,https://doi.org/10.1016/j.compind.2009.02.014 +Doru Panescu,Holonic coordination obtained by joining the contract net protocol with constraint satisfaction.,2016,81,Computers in Industry,,db/journals/cii/cii81.html#PanescuP16,https://doi.org/10.1016/j.compind.2015.08.010 +Ou Liu,An intelligent decision support approach for reviewer assignment in R and D project selection.,2016,76,Computers in Industry,,db/journals/cii/cii76.html#LiuWMS16,https://doi.org/10.1016/j.compind.2015.11.001 +Melvyn L. Smith,Special issue on: Machine vision for outdoor environments.,2018,100,Computers in Industry,,db/journals/cii/cii100.html#SmithS18,https://doi.org/10.1016/j.compind.2018.04.016 +Tianhu Liu,Detection of citrus fruit and tree trunks in natural environments using a multi-elliptical boundary model.,2018,99,Computers in Industry,,db/journals/cii/cii99.html#LiuETZW18,https://doi.org/10.1016/j.compind.2018.03.007 +John Z. Shi,Integration of multiple platforms for real-time remote model-based condition monitoring.,2007,58,Computers in Industry,6,db/journals/cii/cii58.html#ShiGGB07,https://doi.org/10.1016/j.compind.2006.12.002 +Hans-Henrik Hvolby,Challenges in business systems integration.,2010,61,Computers in Industry,9,db/journals/cii/cii61.html#HvolbyT10a,https://doi.org/10.1016/j.compind.2010.07.006 +Márcia Baptista,Comparative case study of life usage and data-driven prognostics techniques using aircraft fault messages.,2017,86,Computers in Industry,,db/journals/cii/cii86.html#BaptistaMMNPH17,https://doi.org/10.1016/j.compind.2016.12.008 +Luis Ribeiro 0001,Re-thinking diagnosis for future automation systems: An analysis of current diagnostic practices and their applicability in emerging IT based production paradigms.,2011,62,Computers in Industry,7,db/journals/cii/cii62.html#RibeiroB11,https://doi.org/10.1016/j.compind.2011.03.001 +Chulho Chung,Enabled dynamic tasks planning in Web-based virtual manufacturing environments.,2008,59,Computers in Industry,1,db/journals/cii/cii59.html#ChungP08,https://doi.org/10.1016/j.compind.2007.06.004 +Ming-Chyuan Lin,Using AHP and TOPSIS approaches in customer-driven product design process.,2008,59,Computers in Industry,1,db/journals/cii/cii59.html#LinWCC08,https://doi.org/10.1016/j.compind.2007.05.013 +Salah Baïna,New paradigms for a product oriented modelling: Case study for traceability.,2009,60,Computers in Industry,3,db/journals/cii/cii60.html#BainaPM09,https://doi.org/10.1016/j.compind.2008.12.004 +Shuh-Ren Liang,Probe-radius compensation for 3D data points in reverse engineering.,2002,48,Computers in Industry,3,db/journals/cii/cii48.html#LiangL02,https://doi.org/10.1016/S0166-3615(02)00038-6 +Eleni Zampou,Towards a framework for energy-aware information systems in manufacturing.,2014,65,Computers in Industry,3,db/journals/cii/cii65.html#ZampouPKM14,https://doi.org/10.1016/j.compind.2014.01.007 +Joan Serrat,Cost estimation of custom hoses from STL files and CAD drawings.,2013,64,Computers in Industry,3,db/journals/cii/cii64.html#SerratLL13,https://doi.org/10.1016/j.compind.2012.11.009 +Katrín Kristjánsdóttir,Return on investment from the use of product configuration systems - A case study.,2018,100,Computers in Industry,,db/journals/cii/cii100.html#Kristjansdottir18,https://doi.org/10.1016/j.compind.2018.04.003 +Jamil Ahmad,Visual features based boosted classification of weeds for real-time selective herbicide sprayer systems.,2018,98,Computers in Industry,,db/journals/cii/cii98.html#AhmadMAASSJWM18,https://doi.org/10.1016/j.compind.2018.02.005 +Uchitha Jayawickrama,Empirical evidence of an integrative knowledge competence framework for ERP systems implementation in UK industries.,2016,82,Computers in Industry,,db/journals/cii/cii82.html#JayawickramaLS16,https://doi.org/10.1016/j.compind.2016.07.005 +Philippe Fillatreau,Using virtual reality and 3D industrial numerical models for immersive interactive checklists.,2013,64,Computers in Industry,9,db/journals/cii/cii64.html#FillatreauFBCDP13,https://doi.org/10.1016/j.compind.2013.03.018 +Andreas Scheuermann,Supply chain management ontology from an ontology engineering perspective.,2014,65,Computers in Industry,6,db/journals/cii/cii65.html#ScheuermannL14,https://doi.org/10.1016/j.compind.2014.02.009 +Philipe A. Dias,Apple flower detection using deep convolutional networks.,2018,99,Computers in Industry,,db/journals/cii/cii99.html#DiasTM18,https://doi.org/10.1016/j.compind.2018.03.010 +Xiaowen Fang,Personality and enjoyment of computer game play.,2010,61,Computers in Industry,4,db/journals/cii/cii61.html#FangZ10,https://doi.org/10.1016/j.compind.2009.12.005 +N. C. W. M. Braspenning,Estimating and quantifying the impact of using models for integration and testing.,2011,62,Computers in Industry,1,db/journals/cii/cii62.html#BraspenningBMR11,https://doi.org/10.1016/j.compind.2010.05.011 +Aida Azadegan,Applying collaborative process design to user requirements elicitation: A case study.,2013,64,Computers in Industry,7,db/journals/cii/cii64.html#AzadeganPS13,https://doi.org/10.1016/j.compind.2013.05.001 +Di Wu,A framework for fast 3D solid model exchange in integrated design environment.,2005,56,Computers in Industry,3,db/journals/cii/cii56.html#WuS05,https://doi.org/10.1016/j.compind.2004.11.003 +Ma Victoria de la Fuente,Enterprise modelling methodology for forward and reverse supply chain flows integration.,2010,61,Computers in Industry,7,db/journals/cii/cii61.html#FuenteRB10,https://doi.org/10.1016/j.compind.2010.05.010 +Hao Wu,An intelligent vision-based approach for helmet identification for work safety.,2018,100,Computers in Industry,,db/journals/cii/cii100.html#WuZ18,https://doi.org/10.1016/j.compind.2018.03.037 +Anssi Käki,Impact of the shape of demand distribution in decision models for operations management.,2013,64,Computers in Industry,7,db/journals/cii/cii64.html#KakiST13,https://doi.org/10.1016/j.compind.2013.04.010 +Iraj Mahdavi,IMAQCS: Design and implementation of an intelligent multi-agent system for monitoring and controlling quality of cement production processes.,2013,64,Computers in Industry,3,db/journals/cii/cii64.html#MahdaviSGS13,https://doi.org/10.1016/j.compind.2012.11.005 +W. D. Li,A 3D simplification algorithm for distributed visualization.,2007,58,Computers in Industry,3,db/journals/cii/cii58.html#LiCL07,https://doi.org/10.1016/j.compind.2006.05.003 +Anderson Oliveira,BRCode: An interpretive model-driven engineering approach for enterprise applications.,2018,96,Computers in Industry,,db/journals/cii/cii96.html#OliveiraBGFS18,https://doi.org/10.1016/j.compind.2018.01.002 +Juan D. Velásquez,Integration of machine-vision inspection information for best-matching of distributed components and suppliers.,2008,59,Computers in Industry,1,db/journals/cii/cii59.html#VelasquezN08,https://doi.org/10.1016/j.compind.2007.06.007 +The Anh Tuan Dang,Electromagnetic modular Smart Surface architecture and control in a microfactory context.,2016,81,Computers in Industry,,db/journals/cii/cii81.html#DangBAPD16,https://doi.org/10.1016/j.compind.2016.02.003 +Siavash H. Khajavi,To kit or not to kit: Analysing the value of model-based kitting for additive manufacturing.,2018,98,Computers in Industry,,db/journals/cii/cii98.html#KhajaviBHOAJL18,https://doi.org/10.1016/j.compind.2018.01.022 +Amel Jaoua,Specification of an intelligent simulation-based real time control architecture: Application to truck control system.,2012,63,Computers in Industry,9,db/journals/cii/cii63.html#JaouaGR12,https://doi.org/10.1016/j.compind.2012.07.002 +Y. Li,A framework for early warning and proactive control systems in food supply chain networks.,2010,61,Computers in Industry,9,db/journals/cii/cii61.html#LiKBV10,https://doi.org/10.1016/j.compind.2010.07.010 +Sergio Cavalieri,Product-Service Systems Engineering: State of the art and research challenges.,2012,63,Computers in Industry,4,db/journals/cii/cii63.html#CavalieriP12,https://doi.org/10.1016/j.compind.2012.02.006 +J. Zhang,Fuzzy neural network-based rescheduling decision mechanism for semiconductor manufacturing.,2014,65,Computers in Industry,8,db/journals/cii/cii65.html#ZhangQWZ14,https://doi.org/10.1016/j.compind.2014.06.002 +Marina A. Tsili,Computer aided analysis and design of power transformers.,2008,59,Computers in Industry,4,db/journals/cii/cii59.html#TsiliKG08,https://doi.org/10.1016/j.compind.2007.09.005 +Adel Soudani,QoS and network resources management for communication in distributed manufacturing processes.,2002,48,Computers in Industry,3,db/journals/cii/cii48.html#SoudaniND02,https://doi.org/10.1016/S0166-3615(02)00041-6 +Rémy Houssin,An approach to solve contradiction problems for the safety integration in innovative design process.,2011,62,Computers in Industry,4,db/journals/cii/cii62.html#HoussinC11,https://doi.org/10.1016/j.compind.2010.12.009 +Zhenyong Wu,Semantic hyper-graph-based knowledge representation architecture for complex product development.,2018,100,Computers in Industry,,db/journals/cii/cii100.html#WuLSMHLM18,https://doi.org/10.1016/j.compind.2018.04.008 +S. W. A. Haneyah,A generic material flow control model applied in two industrial sectors.,2013,64,Computers in Industry,6,db/journals/cii/cii64.html#HaneyahSSZ13a,https://doi.org/10.1016/j.compind.2013.03.007 +Anna Fensel,Enabling customers engagement and collaboration for small and medium-sized enterprises in ubiquitous multi-channel ecosystems.,2014,65,Computers in Industry,5,db/journals/cii/cii65.html#FenselTGSF14,https://doi.org/10.1016/j.compind.2014.02.001 +Sri Krishna Kumar,Ontology mapping using description logic and bridging axioms.,2013,64,Computers in Industry,1,db/journals/cii/cii64.html#KumarH13,https://doi.org/10.1016/j.compind.2012.09.004 +Gabriella M. Acaccia,Computer simulation aids for the intelligent manufacture of quality clothing.,2003,50,Computers in Industry,1,db/journals/cii/cii50.html#AcacciaCMM03,https://doi.org/10.1016/S0166-3615(02)00142-2 +John G. Breslin,Semantic Web computing in industry.,2010,61,Computers in Industry,8,db/journals/cii/cii61.html#BreslinOPV10a,https://doi.org/10.1016/j.compind.2010.05.002 +Yacine Rezgui,Role-based service-oriented implementation of a virtual enterprise: A case study in the construction sector.,2007,58,Computers in Industry,1,db/journals/cii/cii58.html#Rezgui07,https://doi.org/10.1016/j.compind.2006.04.009 +Virgilio Quintana,Will Model-based Definition replace engineering drawings throughout the product lifecycle? A global perspective from aerospace industry.,2010,61,Computers in Industry,5,db/journals/cii/cii61.html#QuintanaRPVK10,https://doi.org/10.1016/j.compind.2010.01.005 +Titas Savickas,Belief network discovery from event logs for business process analysis.,2018,100,Computers in Industry,,db/journals/cii/cii100.html#SavickasV18,https://doi.org/10.1016/j.compind.2018.04.020 +Yang-Byung Park,Simulation-based evolutionary algorithm approach for deriving the operational planning of global supply chains from the systematic risk management.,2016,83,Computers in Industry,,db/journals/cii/cii83.html#ParkK16,https://doi.org/10.1016/j.compind.2016.09.003 +Min Xie,VOAuth: A solution to protect OAuth against phishing.,2016,82,Computers in Industry,,db/journals/cii/cii82.html#XieHYY16,https://doi.org/10.1016/j.compind.2016.06.001 +Dong-Xing Wang,Slicing of CAD models in color STL format.,2006,57,Computers in Industry,1,db/journals/cii/cii57.html#WangGJL06,https://doi.org/10.1016/j.compind.2005.03.007 +Weidong Li 0001,Collaborative design: New methodologies and technologies.,2008,59,Computers in Industry,9,db/journals/cii/cii59.html#LiS08,https://doi.org/10.1016/j.compind.2008.07.002 +János Abonyi,Process analysis and product quality estimation by Self-Organizing Maps with an application to polyethylene production.,2003,52,Computers in Industry,3,db/journals/cii/cii52.html#AbonyiNVA03,https://doi.org/10.1016/S0166-3615(03)00128-3 +Francisco Gamboa Quintanilla,A Petri net-based methodology to increase flexibility in service-oriented holonic manufacturing systems.,2016,76,Computers in Industry,,db/journals/cii/cii76.html#QuintanillaCLC16,https://doi.org/10.1016/j.compind.2015.09.002 +Ian D. Wilson,A Genetic Algorithm approach to cartographic map generalisation.,2003,52,Computers in Industry,3,db/journals/cii/cii52.html#WilsonWW03,https://doi.org/10.1016/S0166-3615(03)00132-5 +Thomas Hoegg,Time-of-Flight camera based 3D point cloud reconstruction of a car.,2013,64,Computers in Industry,9,db/journals/cii/cii64.html#HoeggLK13,https://doi.org/10.1016/j.compind.2013.06.002 +Joachim Herbst,Workflow mining with InWoLvE.,2004,53,Computers in Industry,3,db/journals/cii/cii53.html#HerbstK04,https://doi.org/10.1016/j.compind.2003.10.002 +Sheng Feng Qin,A novel form design and CAD modelling approach.,2008,59,Computers in Industry,4,db/journals/cii/cii59.html#QinPW08,https://doi.org/10.1016/j.compind.2007.09.002 +Kirk H. M. Wong,Cryptography and authentication on RFID passive tags for apparel products.,2006,57,Computers in Industry,4,db/journals/cii/cii57.html#WongHC06,https://doi.org/10.1016/j.compind.2005.09.002 +Nawel Bayar,Using immune designed ontologies to monitor disruptions in manufacturing systems.,2016,81,Computers in Industry,,db/journals/cii/cii81.html#BayarDHP16,https://doi.org/10.1016/j.compind.2015.09.004 +Yohanes Kristianto,A system level product configurator for engineer-to-order supply chains.,2015,72,Computers in Industry,,db/journals/cii/cii72.html#KristiantoHJ15,https://doi.org/10.1016/j.compind.2015.04.004 +Wei Tan 0001,Dynamic workflow model fragmentation for distributed execution.,2007,58,Computers in Industry,5,db/journals/cii/cii58.html#TanF07,https://doi.org/10.1016/j.compind.2006.07.004 +Xiaoming Zhang,A survey on knowledge representation in materials science and engineering: An ontological perspective.,2015,73,Computers in Industry,,db/journals/cii/cii73.html#ZhangZW15,https://doi.org/10.1016/j.compind.2015.07.005 +Ick-Hyun Kwon,Recommendation of e-commerce sites by matching category-based buyer query and product e-catalogs.,2008,59,Computers in Industry,4,db/journals/cii/cii59.html#KwonKKK08,https://doi.org/10.1016/j.compind.2007.10.002 +Mark F. Hansen,Towards on-farm pig face recognition using convolutional neural networks.,2018,98,Computers in Industry,,db/journals/cii/cii98.html#HansenSSSBFG18,https://doi.org/10.1016/j.compind.2018.02.016 +Marco Cantamessa,An empirical analysis of the PLM implementation effects in the aerospace industry.,2012,63,Computers in Industry,3,db/journals/cii/cii63.html#CantamessaMN12,https://doi.org/10.1016/j.compind.2012.01.004 +Mohsen Shakeri,Implementation of an automated operation planning and optimum operation sequencing and tool selection algorithms.,2004,54,Computers in Industry,3,db/journals/cii/cii54.html#Shakeri04,https://doi.org/10.1016/j.compind.2003.12.002 +Hong-Sen Yan,Karmarkar's and interaction/prediction algorithms for hierarchical production planning for the highest business benefit.,2002,49,Computers in Industry,2,db/journals/cii/cii49.html#YanZM02,https://doi.org/10.1016/S0166-3615(02)00095-7 +Matthew Simon,Modelling of the life cycle of products with data acquisition features.,2001,45,Computers in Industry,2,db/journals/cii/cii45.html#SimonBMPX01,https://doi.org/10.1016/S0166-3615(01)00088-4 +Benoît Eynard,Editorial.,2004,55,Computers in Industry,3,db/journals/cii/cii55.html#EynardB04,https://doi.org/10.1016/j.compind.2004.08.007 +Ikbal Arab-Mansour,A business repository enrichment process: A case study for manufacturing execution systems.,2017,89,Computers in Industry,,db/journals/cii/cii89.html#Arab-MansourMB17,https://doi.org/10.1016/j.compind.2017.03.006 +Alejandro Escudero,Dynamic approach to solve the daily drayage problem with transit time uncertainty.,2013,64,Computers in Industry,2,db/journals/cii/cii64.html#EscuderoMGA13,https://doi.org/10.1016/j.compind.2012.11.006 +Claudia-Melania Chituc,Interoperability in Collaborative Networks: Independent and industry-specific initiatives - The case of the footwear industry.,2008,59,Computers in Industry,7,db/journals/cii/cii59.html#ChitucTA08,https://doi.org/10.1016/j.compind.2007.12.012 +Sanjay Mathrani,Utilizing enterprise systems for managing enterprise risks.,2013,64,Computers in Industry,4,db/journals/cii/cii64.html#MathraniM13a,https://doi.org/10.1016/j.compind.2013.02.002 +Jonghun Park,High-fidelity rapid prototyping of 300 mm fabs through discrete event system modeling.,2001,45,Computers in Industry,1,db/journals/cii/cii45.html#ParkRBZWM01,https://doi.org/10.1016/S0166-3615(01)00082-3 +Luís Couto Maia,An innovative freight traffic assignment model for multimodal networks.,2013,64,Computers in Industry,2,db/journals/cii/cii64.html#MaiaC13,https://doi.org/10.1016/j.compind.2012.10.011 +Stefano Borgo,An ontological approach for reliable data integration in the industrial domain.,2014,65,Computers in Industry,9,db/journals/cii/cii65.html#Borgo14,https://doi.org/10.1016/j.compind.2013.12.010 +Yuan Di,Fault prediction of power electronics modules and systems under complex working conditions.,2018,97,Computers in Industry,,db/journals/cii/cii97.html#DiJBSATL18,https://doi.org/10.1016/j.compind.2018.01.011 +Paolo Minetola,A customer oriented methodology for reverse engineering software selection in the computer aided inspection scenario.,2015,67,Computers in Industry,,db/journals/cii/cii67.html#MinetolaIC15,https://doi.org/10.1016/j.compind.2014.11.002 +Wan Te Liew,Sustainability trends in the process industries: A text mining-based analysis.,2014,65,Computers in Industry,3,db/journals/cii/cii65.html#LiewAS14,https://doi.org/10.1016/j.compind.2014.01.004 +Alain Bignon,An integrated design flow for the joint generation of control and interfaces from a business model.,2013,64,Computers in Industry,6,db/journals/cii/cii64.html#BignonRB13,https://doi.org/10.1016/j.compind.2013.03.005 +Mualla Gonca Avci,A multi-agent system model for supply chains with lateral preventive transshipments: Application in a multi-national automotive supply chain.,2016,82,Computers in Industry,,db/journals/cii/cii82.html#AvciS16,https://doi.org/10.1016/j.compind.2016.05.005 +Jaideep Motwani,"Corrigendum to ""Critical factors for successful ERP implementation: Exploratory findings from four case studies [Computers in Industry 56 (6) (2005) 529-544].",2011,62,Computers in Industry,1,db/journals/cii/cii62.html#Motwani11,https://doi.org/10.1016/j.compind.2010.06.002 +C. Merlo,Information system modelling for engineering design co-ordination.,2004,55,Computers in Industry,3,db/journals/cii/cii55.html#MerloG04,https://doi.org/10.1016/j.compind.2004.08.008 +Leonid Chechurin,Understanding TRIZ through the review of top cited publications.,2016,82,Computers in Industry,,db/journals/cii/cii82.html#ChechurinB16,https://doi.org/10.1016/j.compind.2016.06.002 +George Q. Huang,Web-based support for collaborative product design review.,2002,48,Computers in Industry,1,db/journals/cii/cii48.html#Huang02,https://doi.org/10.1016/S0166-3615(02)00011-8 +Mario Collotta,Flexible IEEE 802.15.4 deadline-aware scheduling for DPCSs using priority-based CSMA-CA.,2014,65,Computers in Industry,8,db/journals/cii/cii65.html#CollottaGPS14,https://doi.org/10.1016/j.compind.2014.07.004 +Fumiki Tanaka,STEP-based quality diagnosis of shape data of product models for collaborative e-engineering.,2006,57,Computers in Industry,3,db/journals/cii/cii57.html#TanakaK06,https://doi.org/10.1016/j.compind.2005.12.008 +K. Martin Sagayam,ABC algorithm based optimization of 1-D hidden Markov model for hand gesture recognition applications.,2018,99,Computers in Industry,,db/journals/cii/cii99.html#SagayamH18,https://doi.org/10.1016/j.compind.2018.03.035 +Weihang Zhu,Dexel-based force-torque rendering and volume updating for 5-DOF haptic product prototyping and virtual sculpting.,2004,55,Computers in Industry,2,db/journals/cii/cii55.html#ZhuL04,https://doi.org/10.1016/j.compind.2004.07.003 +Yingbo Liu,A semi-automatic approach for workflow staff assignment.,2008,59,Computers in Industry,5,db/journals/cii/cii59.html#LiuWYS08,https://doi.org/10.1016/j.compind.2007.12.002 +Octavian Morariu,vMES: Virtualization aware manufacturing execution system.,2015,67,Computers in Industry,,db/journals/cii/cii67.html#MorariuBR15,https://doi.org/10.1016/j.compind.2014.11.003 +Perrine Pittet,An ontology change management approach for facility management.,2014,65,Computers in Industry,9,db/journals/cii/cii65.html#PittetCN14,https://doi.org/10.1016/j.compind.2014.07.006 +Jiwen Sun,Design for diagnosability of multistation manufacturing systems based on sensor allocation optimization.,2009,60,Computers in Industry,7,db/journals/cii/cii60.html#SunXPDX09,https://doi.org/10.1016/j.compind.2009.02.001 +Lars Hvam,Improving the quotation process with product configuration.,2006,57,Computers in Industry,7,db/journals/cii/cii57.html#HvamPN06,https://doi.org/10.1016/j.compind.2005.10.001 +W. D. Li,An Internet-enabled integrated system for co-design and concurrent engineering.,2004,55,Computers in Industry,1,db/journals/cii/cii55.html#LiFW04,https://doi.org/10.1016/j.compind.2003.10.010 +Cyrille Pach,Reactive and energy-aware scheduling of flexible manufacturing systems using potential fields.,2014,65,Computers in Industry,3,db/journals/cii/cii65.html#PachBSBAT14,https://doi.org/10.1016/j.compind.2013.11.008 +Qing Li,Business processes oriented heterogeneous systems integration platform for networked enterprises.,2010,61,Computers in Industry,2,db/journals/cii/cii61.html#LiZPLWWS10,https://doi.org/10.1016/j.compind.2009.10.009 +Dnyanesh G. Rajpathak,An ontology based text mining system for knowledge discovery from the diagnosis data in the automotive domain.,2013,64,Computers in Industry,5,db/journals/cii/cii64.html#Rajpathak13,https://doi.org/10.1016/j.compind.2013.03.001 +Brane Kalpic,Business process modelling in industry - the powerful tool in enterprise management.,2002,47,Computers in Industry,3,db/journals/cii/cii47.html#KalpicB02,https://doi.org/10.1016/S0166-3615(01)00151-8 +Hui Shen,Integration of business modelling methods for enterprise information system analysis and user requirements gathering.,2004,54,Computers in Industry,3,db/journals/cii/cii54.html#ShenWZCB04,https://doi.org/10.1016/j.compind.2003.07.009 +Patrick Dallasega,Industry 4.0 as an enabler of proximity for construction supply chains: A systematic literature review.,2018,99,Computers in Industry,,db/journals/cii/cii99.html#DallasegaRL18,https://doi.org/10.1016/j.compind.2018.03.039 +Viviane Laporti,Athena: A collaborative approach to requirements elicitation.,2009,60,Computers in Industry,6,db/journals/cii/cii60.html#LaportiBB09,https://doi.org/10.1016/j.compind.2009.02.011 +H. Wang,An intelligent zone-based delivery scheduling approach.,2002,48,Computers in Industry,2,db/journals/cii/cii48.html#WangX02,https://doi.org/10.1016/S0166-3615(02)00017-9 +Sai S. Nudurupati,Performance measurement in the construction industry: An action case investigating manufacturing methodologies.,2007,58,Computers in Industry,7,db/journals/cii/cii58.html#NudurupatiAT07,https://doi.org/10.1016/j.compind.2007.05.005 +Yuan Guo,Research on high creative application of case-based reasoning system on engineering design.,2013,64,Computers in Industry,1,db/journals/cii/cii64.html#GuoPH13,https://doi.org/10.1016/j.compind.2012.10.006 +H. H. Cheung,Implementation issues in RFID-based anti-counterfeiting systems.,2011,62,Computers in Industry,7,db/journals/cii/cii62.html#CheungC11,https://doi.org/10.1016/j.compind.2011.04.001 +Xun Li,Integrity validation in semantic engineering design environment.,2011,62,Computers in Industry,3,db/journals/cii/cii62.html#LiY11,https://doi.org/10.1016/j.compind.2010.09.006 +Sergio Cavalieri,A Benchmarking Service for the evaluation and comparison of scheduling techniques.,2007,58,Computers in Industry,7,db/journals/cii/cii58.html#CavalieriTM07,https://doi.org/10.1016/j.compind.2007.05.004 +H. Q. Huang,Block pattern generation: From parameterizing human bodies to fit feature-aligned and flattenable 3D garments.,2012,63,Computers in Industry,7,db/journals/cii/cii63.html#HuangMKA12,https://doi.org/10.1016/j.compind.2012.04.001 +Alira Srdoc,Machine learning applied to quality management - A study in ship repair domain.,2007,58,Computers in Industry,5,db/journals/cii/cii58.html#SrdocBS07,https://doi.org/10.1016/j.compind.2006.09.013 +V. B. Sunil,An approach to recognize interacting features from B-Rep CAD models of prismatic machined parts using a hybrid (graph and rule based) technique.,2010,61,Computers in Industry,7,db/journals/cii/cii61.html#SunilAP10,https://doi.org/10.1016/j.compind.2010.03.011 +Klaas Andries de Graaf,An exploratory study on ontology engineering for software architecture documentation.,2014,65,Computers in Industry,7,db/journals/cii/cii65.html#GraafLTHV14,https://doi.org/10.1016/j.compind.2014.04.006 +Lian Ding,Novel ANN-based feature recognition incorporating design by features.,2004,55,Computers in Industry,2,db/journals/cii/cii55.html#DingY04,https://doi.org/10.1016/j.compind.2004.02.002 +You-Min Huang,CAD/CAE/CAM integration for increasing the accuracy of mask rapid prototyping system.,2005,56,Computers in Industry,5,db/journals/cii/cii56.html#HuangL05,https://doi.org/10.1016/j.compind.2005.01.002 +Erica Fernández,Agent-based monitoring service for management of disruptive events in supply chains.,2015,70,Computers in Industry,,db/journals/cii/cii70.html#FernandezTGSC15,https://doi.org/10.1016/j.compind.2015.01.009 +Xianguang Gu,Reliability-based robust assessment for multiobjective optimization design of improving occupant restraint system performance.,2014,65,Computers in Industry,8,db/journals/cii/cii65.html#GuL14,https://doi.org/10.1016/j.compind.2014.07.003 +Joaquim Ciurana,A system based on machined volumes to reduce the number of route sheets in process planning.,2003,51,Computers in Industry,1,db/journals/cii/cii51.html#CiuranaGCA03,https://doi.org/10.1016/S0166-3615(03)00024-1 +Chien-Fu Kuo,Motion generation from MTM semantics.,2009,60,Computers in Industry,5,db/journals/cii/cii60.html#KuoW09,https://doi.org/10.1016/j.compind.2009.01.006 +Katy Tarrit,Vanishing point detection for visual surveillance systems in railway platform environments.,2018,98,Computers in Industry,,db/journals/cii/cii98.html#TarritMASWG18,https://doi.org/10.1016/j.compind.2018.03.005 +James Lapalme,Exploring the future of enterprise architecture: A Zachman perspective.,2016,79,Computers in Industry,,db/journals/cii/cii79.html#LapalmeGMZVH16,https://doi.org/10.1016/j.compind.2015.06.010 +Gert Zülch,Computer-supported competence management: Evolution of industrial processes as life cycles of organizations.,2007,58,Computers in Industry,2,db/journals/cii/cii58.html#ZulchB07,https://doi.org/10.1016/j.compind.2006.09.012 +Qing-Hui Wang,Interactive visualization of complex dynamic virtual environments for industrial assemblies.,2006,57,Computers in Industry,4,db/journals/cii/cii57.html#WangL06,https://doi.org/10.1016/j.compind.2005.11.002 +Paul-Armand Verhaegen,Identifying candidates for design-by-analogy.,2011,62,Computers in Industry,4,db/journals/cii/cii62.html#VerhaegenDVDD11,https://doi.org/10.1016/j.compind.2010.12.007 +Noel Leon,The future of computer-aided innovation.,2009,60,Computers in Industry,8,db/journals/cii/cii60.html#Leon09,https://doi.org/10.1016/j.compind.2009.05.010 +Jose María álvarez Rodríguez,New trends on e-Procurement applying semantic technologies.,2014,65,Computers in Industry,5,db/journals/cii/cii65.html#RodriguezGP14,https://doi.org/10.1016/j.compind.2014.04.002 +Eliab Z. Opiyo,Quality assurance of design support software: review and analysis of the state of the art.,2002,49,Computers in Industry,2,db/journals/cii/cii49.html#OpiyoHV02,https://doi.org/10.1016/S0166-3615(02)00082-9 +Hicham Jabrouni,Analysis reuse exploiting taxonomical information and belief assignment in industrial problem solving.,2013,64,Computers in Industry,8,db/journals/cii/cii64.html#JabrouniKGV13,https://doi.org/10.1016/j.compind.2013.07.004 +Hoo Sang Ko,A statistical analysis of interference and effective deployment strategies for facility-specific wireless sensor networks.,2010,61,Computers in Industry,5,db/journals/cii/cii61.html#KoLJN10,https://doi.org/10.1016/j.compind.2010.01.002 +Anne-Françoise Cutting-Decelle,Production information interoperability over the Internet: A standardised data acquisition tool developed for industrial enterprises.,2012,63,Computers in Industry,8,db/journals/cii/cii63.html#Cutting-DecelleBVY12,https://doi.org/10.1016/j.compind.2012.08.010 +Stefano Campanelli,An architecture to integrate IEC 61131-3 systems in an IEC 61499 distributed solution.,2015,72,Computers in Industry,,db/journals/cii/cii72.html#CampanelliFP15,https://doi.org/10.1016/j.compind.2015.04.002 +Yi-Wen Liao,Understanding the dynamics between organizational IT investment strategy and market performance: A system dynamics approach.,2015,71,Computers in Industry,,db/journals/cii/cii71.html#LiaoWWT15,https://doi.org/10.1016/j.compind.2015.02.006 +Jose M. Sola-Morena,Sustainability in Web server systems.,2014,65,Computers in Industry,3,db/journals/cii/cii65.html#Sola-MorenaGJ14,https://doi.org/10.1016/j.compind.2013.11.009 +Neng Wan,New methods of creating MBD process model: On the basis of machining knowledge.,2014,65,Computers in Industry,4,db/journals/cii/cii65.html#WanMLL14,https://doi.org/10.1016/j.compind.2013.12.005 +Jiuai Sun,Multidimensional imaging for skin tissue surface characterization.,2013,64,Computers in Industry,9,db/journals/cii/cii64.html#SunS13,https://doi.org/10.1016/j.compind.2013.06.004 +Tian Han,Development of an e-maintenance system integrating advanced techniques.,2006,57,Computers in Industry,6,db/journals/cii/cii57.html#HanY06,https://doi.org/10.1016/j.compind.2006.02.009 +Tomaz Kos,Development of data acquisition systems by using a domain-specific modeling language.,2012,63,Computers in Industry,3,db/journals/cii/cii63.html#KosKM12,https://doi.org/10.1016/j.compind.2011.09.004 +Hongyi Sun,A step-by-step performance assessment and improvement method for ERP implementation: Action case studies in Chinese companies.,2015,68,Computers in Industry,,db/journals/cii/cii68.html#SunNL15,https://doi.org/10.1016/j.compind.2014.12.005 +Petri Helo,Toward a cloud-based manufacturing execution system for distributed manufacturing.,2014,65,Computers in Industry,4,db/journals/cii/cii65.html#HeloSHA14,https://doi.org/10.1016/j.compind.2014.01.015 +Wenyan Song,Requirement management for product-service systems: Status review and future trends.,2017,85,Computers in Industry,,db/journals/cii/cii85.html#Song17,https://doi.org/10.1016/j.compind.2016.11.005 +Boris Otto,Toward a business model reference for interoperability services.,2013,64,Computers in Industry,8,db/journals/cii/cii64.html#OttoEBB13,https://doi.org/10.1016/j.compind.2013.06.017 +Vincent G. Duffy,Development of an Internet virtual layout system for improving workplace safety.,2003,50,Computers in Industry,2,db/journals/cii/cii50.html#DuffyWN03,https://doi.org/10.1016/S0166-3615(02)00121-5 +Mu-Chen Chen,Roundness measurements for discontinuous perimeters via machine visions.,2002,47,Computers in Industry,2,db/journals/cii/cii47.html#Chen02,https://doi.org/10.1016/S0166-3615(01)00143-9 +Chieh-Yuan Tsai,A two-stage fuzzy approach to feature-based design retrieval.,2005,56,Computers in Industry,5,db/journals/cii/cii56.html#TsaiC05,https://doi.org/10.1016/j.compind.2005.02.001 +Jaime Campos,Development in the application of ICT in condition monitoring and maintenance.,2009,60,Computers in Industry,1,db/journals/cii/cii60.html#Campos09,https://doi.org/10.1016/j.compind.2008.09.007 +Adil Baykasoglu,Training Fuzzy Cognitive Maps via Extended Great Deluge Algorithm with applications.,2011,62,Computers in Industry,2,db/journals/cii/cii62.html#BaykasogluDK11,https://doi.org/10.1016/j.compind.2010.10.011 +Manuele Kirsch-Pinheiro,A framework for awareness support in groupware systems.,2003,52,Computers in Industry,1,db/journals/cii/cii52.html#Kirsch-PinheiroLB03,https://doi.org/10.1016/S0166-3615(03)00068-X +Alessio Trentin,Overcoming the customization-responsiveness squeeze by using product configurators: Beyond anecdotal evidence.,2011,62,Computers in Industry,3,db/journals/cii/cii62.html#TrentinPF11,https://doi.org/10.1016/j.compind.2010.09.002 +Lianfeng (Linda) Zhang,Towards product customization: An integrated order fulfillment system.,2010,61,Computers in Industry,3,db/journals/cii/cii61.html#ZhangLX10,https://doi.org/10.1016/j.compind.2009.09.003 +Jan Holmström,Roadmap to tracking based business and intelligent products.,2009,60,Computers in Industry,3,db/journals/cii/cii60.html#HolmstromKFL09,https://doi.org/10.1016/j.compind.2008.12.006 +Weiming Shen 0001,Editorial of the Special Issue on CSCW in Design.,2002,48,Computers in Industry,1,db/journals/cii/cii48.html#Shen02,https://doi.org/10.1016/S0166-3615(02)00005-2 +Karina Rodríguez,Knowledge web-based system architecture for collaborative product development.,2005,56,Computers in Industry,1,db/journals/cii/cii56.html#RodriguezA05,https://doi.org/10.1016/j.compind.2004.07.004 +Carsten Svensson,"Limits and opportunities in mass customization for ""build to order"" SMEs.",2002,49,Computers in Industry,1,db/journals/cii/cii49.html#SvenssonB02,https://doi.org/10.1016/S0166-3615(02)00060-X +Sangmin Jeon,Automatic CAD model retrieval based on design documents using semantic processing and rule processing.,2016,77,Computers in Industry,,db/journals/cii/cii77.html#JeonLHS16,https://doi.org/10.1016/j.compind.2016.01.002 +Ethem Pekin,Location Analysis Model for Belgian Intermodal Terminals: Importance of the value of time in the intermodal transport chain.,2013,64,Computers in Industry,2,db/journals/cii/cii64.html#PekinMMR13,https://doi.org/10.1016/j.compind.2012.06.001 +Guido Urdaneta,A reference software architecture for the development of industrial automation high-level applications in the petroleum industry.,2007,58,Computers in Industry,1,db/journals/cii/cii58.html#UrdanetaCQAARCR07,https://doi.org/10.1016/j.compind.2006.04.020 +Loukas Hadellis,An integrated approach for an interoperable industrial networking architecture consisting of heterogeneous fieldbuses.,2002,49,Computers in Industry,3,db/journals/cii/cii49.html#HadellisKM02,https://doi.org/10.1016/S0166-3615(02)00097-0 +Ludovic Tanguy,Natural language processing for aviation safety reports: From classification to interactive analysis.,2016,78,Computers in Industry,,db/journals/cii/cii78.html#TanguyTUHR16,https://doi.org/10.1016/j.compind.2015.09.005 +Mohamed Khalgui,NCES-based modelling and CTL-based verification of reconfigurable embedded control systems.,2010,61,Computers in Industry,3,db/journals/cii/cii61.html#Khalgui10,https://doi.org/10.1016/j.compind.2009.09.004 +Mercedes Ramírez,Fuzzy control of a multiple hearth furnace.,2004,54,Computers in Industry,1,db/journals/cii/cii54.html#RamirezHPR04,https://doi.org/10.1016/j.compind.2003.05.001 +Víctor M. Alonso Rorís,Towards a cost-effective and reusable traceability system. A semantic approach.,2016,83,Computers in Industry,,db/journals/cii/cii83.html#RorisSSM16,https://doi.org/10.1016/j.compind.2016.08.003 +Edgar Chacón,Coordination and optimization in oil and gas production complexes.,2004,53,Computers in Industry,1,db/journals/cii/cii53.html#ChaconBH04,https://doi.org/10.1016/j.compind.2003.06.001 +Hui Wang,Assembly planning based on semantic modeling approach.,2007,58,Computers in Industry,3,db/journals/cii/cii58.html#WangXDZ07,https://doi.org/10.1016/j.compind.2006.05.002 +Chih-Hsing Chu,Computer aided parametric design for 3D tire mold production.,2006,57,Computers in Industry,1,db/journals/cii/cii57.html#ChuSL06,https://doi.org/10.1016/j.compind.2005.04.005 +Nirupam Julka,Making use of prognostics health management information for aerospace spare components logistics network optimisation.,2011,62,Computers in Industry,6,db/journals/cii/cii62.html#JulkaTLGSFW11,https://doi.org/10.1016/j.compind.2011.04.010 +Marco Cantamessa,Design for innovation - A methodology to engineer the innovation diffusion into the development process.,2016,75,Computers in Industry,,db/journals/cii/cii75.html#CantamessaMC16,https://doi.org/10.1016/j.compind.2015.10.013 +Jochen De Weerdt,Process Mining for the multi-faceted analysis of business processes - A case study in a financial services organization.,2013,64,Computers in Industry,1,db/journals/cii/cii64.html#WeerdtSVB13,https://doi.org/10.1016/j.compind.2012.09.010 +Talita da Cunha Mattos,A formal representation for context-aware business processes.,2014,65,Computers in Industry,8,db/journals/cii/cii65.html#MattosSRN14,https://doi.org/10.1016/j.compind.2014.07.005 +Lapo Governi,3D geometry reconstruction from orthographic views: A method based on 3D image processing and data fitting.,2013,64,Computers in Industry,9,db/journals/cii/cii64.html#GoverniFPV13,https://doi.org/10.1016/j.compind.2013.02.003 +Claire Palmer,Reference ontologies to support the development of global production network systems.,2016,77,Computers in Industry,,db/journals/cii/cii77.html#PalmerUPCRPY16,https://doi.org/10.1016/j.compind.2015.11.002 +Michele Di Donato,Text legibility for projected Augmented Reality on industrial workbenches.,2015,70,Computers in Industry,,db/journals/cii/cii70.html#DonatoFUGM15,https://doi.org/10.1016/j.compind.2015.02.008 +Yuh-Jen Chen,Knowledge integration and sharing for collaborative molding product design and process development.,2010,61,Computers in Industry,7,db/journals/cii/cii61.html#Chen10,https://doi.org/10.1016/j.compind.2010.03.013 +Jonathan E. Cook,Discovering models of behavior for concurrent workflows.,2004,53,Computers in Industry,3,db/journals/cii/cii53.html#CookDLW04,https://doi.org/10.1016/j.compind.2003.10.005 +Maria Grazia Violante,A methodology for supporting requirement management tools (RMt) design in the PLM scenario: An user-based strategy.,2014,65,Computers in Industry,7,db/journals/cii/cii65.html#ViolanteV14,https://doi.org/10.1016/j.compind.2014.05.001 +Mariana Dorigatti,A service-oriented framework for agent-based simulations of collaborative supply chains.,2016,83,Computers in Industry,,db/journals/cii/cii83.html#DorigattiGCS16,https://doi.org/10.1016/j.compind.2016.09.005 +Oscar González Rojas,ICT capabilities for supporting collaborative work on business processes within the digital content industry.,2016,80,Computers in Industry,,db/journals/cii/cii80.html#RojasCC16,https://doi.org/10.1016/j.compind.2016.04.004 +Hans Wortmann,Editorial.,2003,50,Computers in Industry,1,db/journals/cii/cii50.html#Wortmann03,https://doi.org/10.1016/S0166-3615(02)00144-6 +Hyungjun Park,Design evaluation of information appliances using augmented reality-based tangible interaction.,2013,64,Computers in Industry,7,db/journals/cii/cii64.html#ParkM13,https://doi.org/10.1016/j.compind.2013.05.006 +Jorge E. Hernández,A conceptual model for the production and transport planning process: An application to the automobile sector.,2008,59,Computers in Industry,8,db/journals/cii/cii59.html#HernandezMFP08,https://doi.org/10.1016/j.compind.2008.06.004 +Xinggang Luo,Optimizing customer's selection for configurable product in B2C e-commerce application.,2008,59,Computers in Industry,8,db/journals/cii/cii59.html#LuoTTK08,https://doi.org/10.1016/j.compind.2008.03.003 +Jan B. M. Goossenaerts,A multi-level model-driven regime for value-added tax compliance in ERP systems.,2009,60,Computers in Industry,9,db/journals/cii/cii60.html#GoossenaertsZS09,https://doi.org/10.1016/j.compind.2009.05.013 +Paul Folan,Performance: Its meaning and content for today's business research.,2007,58,Computers in Industry,7,db/journals/cii/cii58.html#FolanBJ07,https://doi.org/10.1016/j.compind.2007.05.002 +Umar Farooq,A multi source product reputation model.,2016,83,Computers in Industry,,db/journals/cii/cii83.html#FarooqNOQ16,https://doi.org/10.1016/j.compind.2016.08.002 +T. K. Sheeja,A novel feature selection method using fuzzy rough sets.,2018,97,Computers in Industry,,db/journals/cii/cii97.html#SheejaK18,https://doi.org/10.1016/j.compind.2018.01.014 +Lamia Ben Amor,Data accuracy aware mobile healthcare applications.,2018,97,Computers in Industry,,db/journals/cii/cii97.html#AmorLJ18,https://doi.org/10.1016/j.compind.2018.01.020 +Fiona Zhao,Computer-Aided Inspection Planning - The state of the art.,2009,60,Computers in Industry,7,db/journals/cii/cii60.html#ZhaoXX09,https://doi.org/10.1016/j.compind.2009.02.002 +Xuan F. Zha,Knowledge-intensive collaborative decision support for design processes: A hybrid decision support model and agent.,2008,59,Computers in Industry,9,db/journals/cii/cii59.html#ZhaSFM08,https://doi.org/10.1016/j.compind.2008.07.009 +Paul Pitiot,Concurrent product configuration and process planning: Some optimization experimental results.,2014,65,Computers in Industry,4,db/journals/cii/cii65.html#PitiotAV14,https://doi.org/10.1016/j.compind.2014.01.012 +Michael Zapf,From the customer to the firm: evaluating generic service process designs for incoming customer requests.,2004,55,Computers in Industry,1,db/journals/cii/cii55.html#Zapf04,https://doi.org/10.1016/j.compind.2003.10.009 +Ben Light,Going beyond 'misfit' as a reason for ERP package customisation.,2005,56,Computers in Industry,6,db/journals/cii/cii56.html#Light05,https://doi.org/10.1016/j.compind.2005.02.008 +Dunbing Tang,Energy-efficient dynamic scheduling for a flexible flow shop using an improved particle swarm optimization.,2016,81,Computers in Industry,,db/journals/cii/cii81.html#TangDSG16,https://doi.org/10.1016/j.compind.2015.10.001 +Dominic Heutelbeck,Preservation-awareness in collaborative engineering.,2014,65,Computers in Industry,1,db/journals/cii/cii65.html#HeutelbeckG14,https://doi.org/10.1016/j.compind.2013.07.002 +Svenja Kahn,Towards precise real-time 3D difference detection for industrial applications.,2013,64,Computers in Industry,9,db/journals/cii/cii64.html#KahnBKF13,https://doi.org/10.1016/j.compind.2013.04.004 +Yong-Shin Kang,Development of generic RFID traceability services.,2013,64,Computers in Industry,5,db/journals/cii/cii64.html#KangL13,https://doi.org/10.1016/j.compind.2013.03.004 +Carlos Indriago,H2CM: A holonic architecture for flexible hybrid control systems.,2016,77,Computers in Industry,,db/journals/cii/cii77.html#IndriagoCRCC16,https://doi.org/10.1016/j.compind.2015.12.005 +Ahmad Alzghoul,Comparing a knowledge-based and a data-driven method in querying data streams for system fault detection: A hydraulic drive system application.,2014,65,Computers in Industry,8,db/journals/cii/cii65.html#AlzghoulBLBL14,https://doi.org/10.1016/j.compind.2014.06.003 +Anders Skoglund,Applying process monitoring with multivariate analysis through a knowledge-based systems approach to a paperboard machine.,2005,56,Computers in Industry,5,db/journals/cii/cii56.html#SkoglundBM05,https://doi.org/10.1016/j.compind.2005.01.009 +Jeffery K. Cochran,Computers in the semiconductor industry.,2001,45,Computers in Industry,1,db/journals/cii/cii45.html#CochranF01,https://doi.org/10.1016/S0166-3615(01)00076-8 +Nikos I. Karacapilidis,A computerized knowledge management system for the manufacturing strategy process.,2006,57,Computers in Industry,2,db/journals/cii/cii57.html#KaracapilidisAE06,https://doi.org/10.1016/j.compind.2005.07.001 +Kris Braekers,Optimal shipping routes and vessel size for intermodal barge transport with empty container repositioning.,2013,64,Computers in Industry,2,db/journals/cii/cii64.html#BraekersCJ13,https://doi.org/10.1016/j.compind.2012.06.003 +P. P. Wang,Research on industrial product-service configuration driven by value demands based on ontology modeling.,2014,65,Computers in Industry,2,db/journals/cii/cii65.html#WangMWZX14,https://doi.org/10.1016/j.compind.2013.11.002 +Séverine Le Loarne,Working with ERP systems - Is big brother back?,2005,56,Computers in Industry,6,db/journals/cii/cii56.html#Loarne05,https://doi.org/10.1016/j.compind.2005.02.010 +Shuming Gao,A framework for collaborative top-down assembly design.,2013,64,Computers in Industry,8,db/journals/cii/cii64.html#GaoZCY13,https://doi.org/10.1016/j.compind.2013.05.007 +Frank Mill,Recognising 3D products and sourcing part documentation with scanned data.,2013,64,Computers in Industry,9,db/journals/cii/cii64.html#MillSPA13,https://doi.org/10.1016/j.compind.2013.03.019 +Felipe Lopez,Particle filtering on GPU architectures for manufacturing applications.,2015,71,Computers in Industry,,db/journals/cii/cii71.html#LopezZMB15,https://doi.org/10.1016/j.compind.2015.03.013 +Xiangyu Wang 0001,Mutual awareness in collaborative design: An Augmented Reality integrated telepresence system.,2014,65,Computers in Industry,2,db/journals/cii/cii65.html#WangLKW14,https://doi.org/10.1016/j.compind.2013.11.012 +Kary Främling,Agent-based model for managing composite product information.,2006,57,Computers in Industry,1,db/journals/cii/cii57.html#FramlingAKH06,https://doi.org/10.1016/j.compind.2005.04.004 +Javier Gozálvez,On the feasibility to deploy mobile industrial applications using wireless communications.,2014,65,Computers in Industry,8,db/journals/cii/cii65.html#GozalvezSP14,https://doi.org/10.1016/j.compind.2014.06.004 +Radu-Emil Precup,An overview on fault diagnosis and nature-inspired optimal control of industrial process applications.,2015,74,Computers in Industry,,db/journals/cii/cii74.html#PrecupACM15,https://doi.org/10.1016/j.compind.2015.03.001 +Qinbao Song,Mining web browsing patterns for E-commerce.,2006,57,Computers in Industry,7,db/journals/cii/cii57.html#SongS06,https://doi.org/10.1016/j.compind.2005.11.006 +Cristina Campos,A Domain-Specific Modelling Language for Corporate Social Responsibility (CSR).,2018,97,Computers in Industry,,db/journals/cii/cii97.html#CamposG18,https://doi.org/10.1016/j.compind.2018.01.007 +Sheng Feng Qin,A framework of web-based conceptual design.,2003,50,Computers in Industry,2,db/journals/cii/cii50.html#QinHWJW03,https://doi.org/10.1016/S0166-3615(02)00117-3 +Ilias P. Tatsiopoulos,A modelling and evaluation methodology for E-Commerce enabled BPR.,2002,49,Computers in Industry,1,db/journals/cii/cii49.html#TatsiopoulosPP02,https://doi.org/10.1016/S0166-3615(02)00062-3 +Fábio da Costa Albuquerque,A methodology for traffic-related Twitter messages interpretation.,2016,78,Computers in Industry,,db/journals/cii/cii78.html#AlbuquerqueCLRM16,https://doi.org/10.1016/j.compind.2015.10.005 +Bernard Grabot,ICT for sustainability in industry.,2014,65,Computers in Industry,3,db/journals/cii/cii65.html#GrabotS14,https://doi.org/10.1016/j.compind.2014.01.016 +Christoph Merschbrock,Effective digital collaboration in the construction industry - A case study of BIM deployment in a hospital construction project.,2015,73,Computers in Industry,,db/journals/cii/cii73.html#MerschbrockM15,https://doi.org/10.1016/j.compind.2015.07.003 +S. H. Choi,Multi-material virtual prototyping for product development and biomedical engineering.,2007,58,Computers in Industry,5,db/journals/cii/cii58.html#ChoiC07,https://doi.org/10.1016/j.compind.2006.09.002 +Duncan C. McFarlane,Modelling information requirements in complex engineering services.,2012,63,Computers in Industry,4,db/journals/cii/cii63.html#McFarlaneC12,https://doi.org/10.1016/j.compind.2012.02.014 +Bo Liu,Road surface temperature prediction based on gradient extreme learning machine boosting.,2018,99,Computers in Industry,,db/journals/cii/cii99.html#LiuYYDLLG18,https://doi.org/10.1016/j.compind.2018.03.026 +Fenareti Lampathaki,Infusing scientific foundations into Enterprise Interoperability.,2012,63,Computers in Industry,8,db/journals/cii/cii63.html#LampathakiKAJCP12,https://doi.org/10.1016/j.compind.2012.08.004 +Namchul Do,Identifying experts for engineering changes using product data analytics.,2018,95,Computers in Industry,,db/journals/cii/cii95.html#Do18,https://doi.org/10.1016/j.compind.2017.12.004 +Remco M. Dijkman,Managing large collections of business process models - Current techniques and challenges.,2012,63,Computers in Industry,2,db/journals/cii/cii63.html#DijkmanRR12,https://doi.org/10.1016/j.compind.2011.12.003 +Jacky S. L. Ting,A two-factor authentication system using Radio Frequency Identification and watermarking technology.,2013,64,Computers in Industry,3,db/journals/cii/cii64.html#TingT13,https://doi.org/10.1016/j.compind.2012.11.002 +Cesar Augusto Tacla,A multi-agent system for acquiring and sharing lessons learned.,2003,52,Computers in Industry,1,db/journals/cii/cii52.html#TaclaB03,https://doi.org/10.1016/S0166-3615(03)00065-4 +Valerie Botta-Genoulaz,A classification for better use of ERP systems.,2005,56,Computers in Industry,6,db/journals/cii/cii56.html#Botta-GenoulazM05,https://doi.org/10.1016/j.compind.2005.02.007 +John P. T. Mo,Tools and methods for managing intangible assets of virtual enterprise.,2003,51,Computers in Industry,2,db/journals/cii/cii51.html#MoZ03,https://doi.org/10.1016/S0166-3615(03)00036-8 +Emmanuel Francalanza,A knowledge-based tool for designing cyber physical production systems.,2017,84,Computers in Industry,,db/journals/cii/cii84.html#FrancalanzaBC17,https://doi.org/10.1016/j.compind.2016.08.001 +Carlos Agostinho,Towards a sustainable interoperability in networked enterprise information systems: Trends of knowledge and model-driven technology.,2016,79,Computers in Industry,,db/journals/cii/cii79.html#AgostinhoDZSLPJ16,https://doi.org/10.1016/j.compind.2015.07.001 +Mo Zhang,Optimization of multimodal networks including environmental costs: A model and findings for transport policy.,2013,64,Computers in Industry,2,db/journals/cii/cii64.html#ZhangWT13,https://doi.org/10.1016/j.compind.2012.11.008 +Simon Tomazic,Fusion of visual odometry and inertial navigation system on a smartphone.,2015,74,Computers in Industry,,db/journals/cii/cii74.html#TomazicS15,https://doi.org/10.1016/j.compind.2015.05.003 +Uwe V. Riss,Knowledge work support by semantic task management.,2010,61,Computers in Industry,8,db/journals/cii/cii61.html#RissGTD10a,https://doi.org/10.1016/j.compind.2010.05.008 +H. K. Mebatsion,Machine vision based automatic separation of touching convex shaped objects.,2012,63,Computers in Industry,7,db/journals/cii/cii63.html#MebatsionP12,https://doi.org/10.1016/j.compind.2012.05.005 +Hamed Orojloo,A game-theoretic approach to model and quantify the security of cyber-physical systems.,2017,88,Computers in Industry,,db/journals/cii/cii88.html#OrojlooA17,https://doi.org/10.1016/j.compind.2017.03.007 +Riccardo Accorsi,A decision-support system for the design and management of warehousing systems.,2014,65,Computers in Industry,1,db/journals/cii/cii65.html#AccorsiMM14,https://doi.org/10.1016/j.compind.2013.08.007 +Ahmed Awad,On efficient processing of BPMN-Q queries.,2012,63,Computers in Industry,9,db/journals/cii/cii63.html#AwadS12,https://doi.org/10.1016/j.compind.2012.06.002 +Alejandro S. Martínez-Sala,Tracking of Returnable Packaging and Transport Units with active RFID in the grocery supply chain.,2009,60,Computers in Industry,3,db/journals/cii/cii60.html#Martinez-SalaEGG09,https://doi.org/10.1016/j.compind.2008.12.003 +Ioan Petri,Engaging construction stakeholders with sustainability through a knowledge harvesting platform.,2014,65,Computers in Industry,3,db/journals/cii/cii65.html#PetriBRWL14,https://doi.org/10.1016/j.compind.2014.01.008 +Mircea-Bogdan Radac,Optimal behaviour prediction using a primitive-based data-driven model-free iterative learning control approach.,2015,74,Computers in Industry,,db/journals/cii/cii74.html#RadacP15,https://doi.org/10.1016/j.compind.2015.03.004 +Drazen Nadoveza,Ontology-based approach for context modeling in enterprise applications.,2014,65,Computers in Industry,9,db/journals/cii/cii65.html#NadovezaK14,https://doi.org/10.1016/j.compind.2014.07.007 +K. Rajbabu,A novel rule-centric object oriented approach for document generation.,2014,65,Computers in Industry,2,db/journals/cii/cii65.html#RajbabuS14,https://doi.org/10.1016/j.compind.2013.11.001 +Anders Haug,Definition and evaluation of product configurator development strategies.,2012,63,Computers in Industry,5,db/journals/cii/cii63.html#HaugHM12,https://doi.org/10.1016/j.compind.2012.02.001 +WenAn Tan,A methodology for dynamic enterprise process performance evaluation.,2007,58,Computers in Industry,5,db/journals/cii/cii58.html#TanSZ07,https://doi.org/10.1016/j.compind.2006.10.001 +Davy Monticolo,A meta-model for knowledge configuration management to support collaborative engineering.,2015,66,Computers in Industry,,db/journals/cii/cii66.html#MonticoloBGBC15,https://doi.org/10.1016/j.compind.2014.08.001 +Umberto Cugini,Integrated Computer-Aided Innovation: The PROSIT approach.,2009,60,Computers in Industry,8,db/journals/cii/cii60.html#CuginiCMN09,https://doi.org/10.1016/j.compind.2009.05.014 +Edmund J. Sadgrove,Real-time object detection in agricultural/remote environments using the multiple-expert colour feature extreme learning machine (MEC-ELM).,2018,98,Computers in Industry,,db/journals/cii/cii98.html#SadgroveFML18,https://doi.org/10.1016/j.compind.2018.03.014 +Jaewook Byun,Oliot EPCIS: Engineering a web information system complying with EPC Information Services standard towards the Internet of Things.,2018,94,Computers in Industry,,db/journals/cii/cii94.html#ByunWTK18,https://doi.org/10.1016/j.compind.2017.10.004 +Benny Tjahjono,Supporting shop floor workers with a multimedia task-oriented information system.,2009,60,Computers in Industry,4,db/journals/cii/cii60.html#Tjahjono09,https://doi.org/10.1016/j.compind.2009.01.003 +Jian-dong Zheng,3D curve structure reconstruction from a sparse set of unordered images.,2009,60,Computers in Industry,2,db/journals/cii/cii60.html#ZhengZDD09,https://doi.org/10.1016/j.compind.2008.09.010 +Cheol-Han Kim,The complementary use of IDEF and UML modelling approaches.,2003,50,Computers in Industry,1,db/journals/cii/cii50.html#KimWHL03,https://doi.org/10.1016/S0166-3615(02)00145-8 +Imre Horváth,Advanced computer support of engineering and service processes of virtual enterprises.,2006,57,Computers in Industry,3,db/journals/cii/cii57.html#HorvathB06,https://doi.org/10.1016/j.compind.2005.12.006 +Vagia Kaltsa,Dynamic texture recognition and localization in machine vision for outdoor environments.,2018,98,Computers in Industry,,db/journals/cii/cii98.html#KaltsaABKS18,https://doi.org/10.1016/j.compind.2018.02.007 +Elisa Negri,Requirements and languages for the semantic representation of manufacturing systems.,2016,81,Computers in Industry,,db/journals/cii/cii81.html#NegriFGT16,https://doi.org/10.1016/j.compind.2015.10.009 +José Vicente Abellán Nebot,Process-oriented tolerancing using the extended stream of variation model.,2013,64,Computers in Industry,5,db/journals/cii/cii64.html#Abellan-NebotLS13,https://doi.org/10.1016/j.compind.2013.02.005 +Pablo Giménez,I3WSN: Industrial Intelligent Wireless Sensor Networks for indoor environments.,2014,65,Computers in Industry,1,db/journals/cii/cii65.html#GimenezMCEP14,https://doi.org/10.1016/j.compind.2013.09.002 +Nuria Aleixos,Integrated modeling with top-down approach in subsidiary industries.,2004,53,Computers in Industry,1,db/journals/cii/cii53.html#AleixosCC04,https://doi.org/10.1016/S0166-3615(03)00122-2 +Katrín Kristjánsdóttir,The main challenges for manufacturing companies in implementing and utilizing configurators.,2018,100,Computers in Industry,,db/journals/cii/cii100.html#Kristjansdottir18a,https://doi.org/10.1016/j.compind.2018.05.001 +Mahroo Eftekhari,Design and performance of a rule-based controller in a naturally ventilated room.,2003,51,Computers in Industry,3,db/journals/cii/cii51.html#EftekhariMA03,https://doi.org/10.1016/S0166-3615(03)00028-9 +Christoph M. Flath,Towards a data science toolbox for industrial analytics applications.,2018,94,Computers in Industry,,db/journals/cii/cii94.html#FlathS18,https://doi.org/10.1016/j.compind.2017.09.003 +Kenn Steger-Jensen,Issues of mass customisation and supporting IT-solutions.,2004,54,Computers in Industry,1,db/journals/cii/cii54.html#Steger-JensenS04,https://doi.org/10.1016/j.compind.2003.07.007 +Tingting Huang,Peeking at the ERP Decline stage: Japanese empirical evidence.,2016,82,Computers in Industry,,db/journals/cii/cii82.html#Huang16,https://doi.org/10.1016/j.compind.2016.07.007 +Qianfu Ni,A collaborative engine for enterprise application integration.,2006,57,Computers in Industry,7,db/journals/cii/cii57.html#NiLYM06,https://doi.org/10.1016/j.compind.2006.02.007 +Petra Bosilj,Connected attribute morphology for unified vegetation segmentation and classification in precision agriculture.,2018,98,Computers in Industry,,db/journals/cii/cii98.html#BosiljDC18,https://doi.org/10.1016/j.compind.2018.02.003 +Vincent Robin,Modelling collaborative knowledge to support engineering design project manager.,2007,58,Computers in Industry,2,db/journals/cii/cii58.html#RobinRG07,https://doi.org/10.1016/j.compind.2006.09.006 +Carla Iglesias,Automated vision system for quality inspection of slate slabs.,2018,99,Computers in Industry,,db/journals/cii/cii99.html#IglesiasMT18,https://doi.org/10.1016/j.compind.2018.03.030 +Jorge Pomares,Virtual disassembly of products based on geometric models.,2004,55,Computers in Industry,1,db/journals/cii/cii55.html#PomaresMTHG04,https://doi.org/10.1016/j.compind.2004.03.001 +Gang Zhao,CLOVER: an agent-based approach to systems interoperability in cooperative design systems.,2001,45,Computers in Industry,3,db/journals/cii/cii45.html#ZhaoDS01,https://doi.org/10.1016/S0166-3615(01)00097-5 +Hang-Wai Law,Object-oriented knowledge-based computer-aided process planning system for bare circuit boards manufacturing.,2001,45,Computers in Industry,2,db/journals/cii/cii45.html#LawTCH01,https://doi.org/10.1016/S0166-3615(01)00084-7 +Guoqi Feng,Integrated data management in complex product collaborative design.,2009,60,Computers in Industry,1,db/journals/cii/cii60.html#FengCWY09,https://doi.org/10.1016/j.compind.2008.09.006 +Behnam Bahr,A real-time scheme of cubic parametric curve interpolations for CNC systems.,2001,45,Computers in Industry,3,db/journals/cii/cii45.html#BahrXK01,https://doi.org/10.1016/S0166-3615(01)00087-2 +Wanbin Pan,An approach to automatic adaptation of assembly models.,2016,75,Computers in Industry,,db/journals/cii/cii75.html#PanGC16,https://doi.org/10.1016/j.compind.2015.06.005 +Fumiya Akasaka,Development of a knowledge-based design support system for Product-Service Systems.,2012,63,Computers in Industry,4,db/journals/cii/cii63.html#AkasakaNKS12,https://doi.org/10.1016/j.compind.2012.02.009 +Juan Pedro Muñoz-Gea,Implementation of traceability using a distributed RFID-based mechanism.,2010,61,Computers in Industry,5,db/journals/cii/cii61.html#Munoz-GeaMMS10,https://doi.org/10.1016/j.compind.2010.01.006 +Xibin Zhao,Optimizing communication in mobile ad hoc network clustering.,2013,64,Computers in Industry,7,db/journals/cii/cii64.html#ZhaoHYS13,https://doi.org/10.1016/j.compind.2013.05.005 +Anna Myrodia,Impact of product configuration systems on product profitability and costing accuracy.,2017,88,Computers in Industry,,db/journals/cii/cii88.html#MyrodiaKH17,https://doi.org/10.1016/j.compind.2017.03.001 +Marcus Sandberg,A knowledge-based master model approach exemplified with jet engine structural design.,2017,85,Computers in Industry,,db/journals/cii/cii85.html#SandbergTKLI17,https://doi.org/10.1016/j.compind.2016.12.003 +Hanwu He,Web-based virtual operating of CNC milling machine tools.,2009,60,Computers in Industry,9,db/journals/cii/cii60.html#HeW09,https://doi.org/10.1016/j.compind.2009.05.009 +Han-Chung Cheng,Shape similarity measurement for 3D mechanical part using D2 shape distribution and negative feature decomposition.,2011,62,Computers in Industry,3,db/journals/cii/cii62.html#ChengLCK11,https://doi.org/10.1016/j.compind.2010.09.001 +Vincent Chapurlat,A formal verification framework and associated tools for Enterprise Modeling: Application to UEML.,2006,57,Computers in Industry,2,db/journals/cii/cii57.html#ChapurlatFP06,https://doi.org/10.1016/j.compind.2005.06.001 +João Canito,Unfolding the relations between companies and technologies under the Big Data umbrella.,2018,99,Computers in Industry,,db/journals/cii/cii99.html#CanitoRMR18,https://doi.org/10.1016/j.compind.2018.03.018 +Yongtao Hao,A knowledge-based auto-reasoning methodology in hole-machining process planning.,2006,57,Computers in Industry,4,db/journals/cii/cii57.html#YongtaoJ06,https://doi.org/10.1016/j.compind.2005.09.006 +Andrej Tibaut,A standardised approach for sustainable interoperability between public transport passenger information systems.,2012,63,Computers in Industry,8,db/journals/cii/cii63.html#TibautKR12,https://doi.org/10.1016/j.compind.2012.08.002 +Liang Hu,A VR simulation framework integrated with multisource CAE analysis data for mechanical equipment working process.,2018,97,Computers in Industry,,db/journals/cii/cii97.html#HuLT18,https://doi.org/10.1016/j.compind.2018.01.009 +Hervé Panetto,Enterprise integration and interoperability in manufacturing systems: Trends and issues.,2008,59,Computers in Industry,7,db/journals/cii/cii59.html#PanettoM08,https://doi.org/10.1016/j.compind.2007.12.010 +Gregor Kandare,Domain specific model-based development of software for programmable logic controllers.,2010,61,Computers in Industry,5,db/journals/cii/cii61.html#KandareSG10,https://doi.org/10.1016/j.compind.2009.10.001 +Petri Vasara,Arachne - adaptive network strategy in a business environment.,2003,50,Computers in Industry,2,db/journals/cii/cii50.html#VasaraKPE03,https://doi.org/10.1016/S0166-3615(02)00115-X +Ksenca Bokovec,Evaluating ERP Projects with multi-attribute decision support systems.,2015,73,Computers in Industry,,db/journals/cii/cii73.html#BokovecDR15,https://doi.org/10.1016/j.compind.2015.07.004 +Muwei Jian,FSAM: A fast self-adaptive method for correcting non-uniform illumination for 3D reconstruction.,2013,64,Computers in Industry,9,db/journals/cii/cii64.html#JianDL13,https://doi.org/10.1016/j.compind.2013.06.011 +Richard Crowder,Hypermedia maintenance support applications: Benefits and development costs.,2005,56,Computers in Industry,7,db/journals/cii/cii56.html#CrowderWH05,https://doi.org/10.1016/j.compind.2005.03.004 +Jing Bi,Real-time and short-term anomaly detection for GWAC light curves.,2018,97,Computers in Industry,,db/journals/cii/cii97.html#BiFY18,https://doi.org/10.1016/j.compind.2018.01.021 +Moohyun Cha,An interactive data-driven driving simulator using motion blending.,2008,59,Computers in Industry,5,db/journals/cii/cii59.html#ChaYH08,https://doi.org/10.1016/j.compind.2008.01.002 +Yuan Sun 0002,Assessing the impact of enterprise systems technological characteristics on user continuance behavior: An empirical study in China.,2015,70,Computers in Industry,,db/journals/cii/cii70.html#SunM15,https://doi.org/10.1016/j.compind.2015.01.003 +Mike Vanderroost,The digitization of a food package's life cycle: Existing and emerging computer systems in the pre-logistics phase.,2017,87,Computers in Industry,,db/journals/cii/cii87.html#VanderroostRVMB17,https://doi.org/10.1016/j.compind.2017.02.002 +Rohit Sharma,A Progressive design and manufacturing evaluation system incorporating STEP AP224.,2002,47,Computers in Industry,2,db/journals/cii/cii47.html#SharmaG02,https://doi.org/10.1016/S0166-3615(01)00146-4 +Xiao Yi,Generating 3D architectural models based on hand motion and gesture.,2009,60,Computers in Industry,9,db/journals/cii/cii60.html#YiQK09,https://doi.org/10.1016/j.compind.2009.05.001 +Dong Zhao,Parametric design with neural network relationships and fuzzy relationships considering uncertainties.,2010,61,Computers in Industry,3,db/journals/cii/cii61.html#ZhaoX10,https://doi.org/10.1016/j.compind.2009.10.005 +Andreas Soyland,A tale of two trajectories: bottom-up social software adoption in differing organisational contexts.,2011,7,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem7.html#SoylandH11,https://doi.org/10.1504/IJIEM.2011.044207 +Hervé Panetto,Metamodelling of production systems process models using UML stereotypes.,2005,3,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem3.html#PanettoP05,https://doi.org/10.1504/IJIEM.2005.007638 +Ryan C. LaBrie,Dynamic hierarchies for business intelligence information retrieval.,2005,3,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem3.html#LaBrieL05,https://doi.org/10.1504/IJIEM.2005.007228 +David Bell,Business grid services.,2007,5,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem5.html#BellCL07,https://doi.org/10.1504/IJIEM.2007.011589 +Axel Hahn,Web Services for semantic model integration in concurrent engineering.,2005,3,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem3.html#Hahn05,https://doi.org/10.1504/IJIEM.2005.007635 +Yuk Kuen Wong,Behaviour approach for evaluating team performance in software review: an empirical study.,2010,6,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem6.html#Wong10,https://doi.org/10.1504/IJIEM.2010.032173 +Mateja Podlogar,Simplifying the procurement process by using e-commerce.,2006,4,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem4.html#Podlogar06,https://doi.org/10.1504/IJIEM.2006.010242 +Hongfei Zhan,Research on a workflow management system for dispersed network manufacturing.,2005,3,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem3.html#ZhanGQL05,https://doi.org/10.1504/IJIEM.2005.008409 +Matteo Gaeta,Effective ontology management in virtual learning environments.,2009,6,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem6.html#GaetaOPR09,https://doi.org/10.1504/IJIEM.2009.023925 +Chwen Sheu,Performance assessment of service operations using DEA and managerial judgement: a case study.,2010,6,International Journal of Internet and Enterprise Management,4,db/journals/ijiem/ijiem6.html#SheuY10,https://doi.org/10.1504/IJIEM.2010.035628 +M. Sadiq Sohail,Creating competitive advantage through outsourcing logistics: evidence from a Middle Eastern nation.,2008,5,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem5.html#Sohail08,https://doi.org/10.1504/IJIEM.2008.018311 +Honggeng Zhou,The drivers of product return in the information age.,2006,4,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem4.html#ZhouRB06,https://doi.org/10.1504/IJIEM.2006.010237 +Martin Juhrisch,A model-driven framework for business IT alignment.,2010,6,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem6.html#JuhrischWE10,https://doi.org/10.1504/IJIEM.2010.032171 +Chi-Kuang Chen,A comprehensive study of the digital divide phenomenon in Taiwanese government agencies.,2006,4,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem4.html#ChenTH06,https://doi.org/10.1504/IJIEM.2006.010917 +Guanghui Zhou,Generating a task-driven extended enterprise for e-manufacturing.,2005,3,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem3.html#ZhouJZ05,https://doi.org/10.1504/IJIEM.2005.008412 +Princely Ifinedo,An investigation of the impacts of some external contextual factors on ERP systems success assessment: a case of firms in Baltic-Nordic region.,2006,4,International Journal of Internet and Enterprise Management,4,db/journals/ijiem/ijiem4.html#Ifinedo06,https://doi.org/10.1504/IJIEM.2006.011045 +M. D. Singh,IT-enablement of Knowledge Management: the modelling of enablers.,2008,5,International Journal of Internet and Enterprise Management,4,db/journals/ijiem/ijiem5.html#SinghK08,https://doi.org/10.1504/IJIEM.2008.020106 +Alexander Styhre,Creativity as connectivity: a rhizome model of creativity.,2003,1,International Journal of Internet and Enterprise Management,4,db/journals/ijiem/ijiem1.html#StyhreS03,https://doi.org/10.1504/IJIEM.2003.003908 +Chung-Tzer Liu,The impact of service quality and switching cost on customer loyalty in information asymmetric services.,2008,5,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem5.html#Liu08,https://doi.org/10.1504/IJIEM.2008.018310 +Gavin J. Baxter,The socialisation of organisational learning through learning technology.,2009,6,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem6.html#BaxterCS09,https://doi.org/10.1504/IJIEM.2009.023928 +Dan Zhang,Web-based digital shop floor: implementation of business service management and managerial implications.,2007,5,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem5.html#ZhangWW07,https://doi.org/10.1504/IJIEM.2007.011592 +Jingzhi Guo,Transforming ad hoc product data into canonical product representation.,2005,3,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem3.html#GuoS05,https://doi.org/10.1504/IJIEM.2005.007636 +Kevin R. Parker,Improving competitive intelligence for knowledge management systems.,2005,3,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem3.html#ParkerN05,https://doi.org/10.1504/IJIEM.2005.007229 +Boris Stavrovski,Connecting potential tenants and landlords via the internet: development and pilot testing of a transaction system for a commercial real estate enterprise.,2005,3,International Journal of Internet and Enterprise Management,4,db/journals/ijiem/ijiem3.html#Stavrovski05,https://doi.org/10.1504/IJIEM.2005.008755 +Heng-Li Yang,Market entry decision support for evaluating external environments.,2005,3,International Journal of Internet and Enterprise Management,4,db/journals/ijiem/ijiem3.html#YangC05,https://doi.org/10.1504/IJIEM.2005.008758 +Martin Meyer,Plug and do business - ERP of the next generation for efficient order processing in dynamic business networks.,2004,2,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem2.html#MeyerLS04,https://doi.org/10.1504/IJIEM.2004.004936 +Jan A. P. Hoogervorst,A framework for enterprise engineering.,2011,7,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem7.html#Hoogervorst11,https://doi.org/10.1504/IJIEM.2011.038381 +Erika Griechisch,A simulation study of public goods contributions.,2009,6,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem6.html#Griechisch09,https://doi.org/10.1504/IJIEM.2009.022935 +Moez Bellaaj,Web-based information systems success: testing the antecedents of online customer satisfaction.,2013,8,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem8.html#Bellaaj13,https://doi.org/10.1504/IJIEM.2013.055959 +Judy Drennan,The prototypal social entrepreneur: a case study about social and economic leveraging of virtual community in regional Australia.,2007,5,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem5.html#DrennanP07,https://doi.org/10.1504/IJIEM.2007.014086 +Rebecca Angeles,Pursuing organisational learning using absorptive capacity capabilities and the role of IT Infrastructure in RFID system initiatives: a cluster analysis study.,2011,7,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem7.html#Angeles11,https://doi.org/10.1504/IJIEM.2011.039912 +Maris G. Martinsons,Culture's consequences for IT application and business process change: a research agenda.,2007,5,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem5.html#MartinsonsD07,https://doi.org/10.1504/IJIEM.2007.014087 +Do Hyun Ahn,A personalised recommendation procedure based on dimensionality reduction and web mining.,2004,2,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem2.html#AhnKCC04,https://doi.org/10.1504/IJIEM.2004.005372 +Antonia Albani,Enterprise ontology based development of information systems.,2011,7,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem7.html#AlbaniD11,https://doi.org/10.1504/IJIEM.2011.038382 +David Tsou,A case study of a centrally managed ERP implementation for manufacturing plants of a global corporation.,2005,3,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem3.html#TsouHS05,https://doi.org/10.1504/IJIEM.2005.008414 +Miklos N. Szilagyi,Agent-based simulation of a simple market.,2009,6,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem6.html#SzilagyiLK09,https://doi.org/10.1504/IJIEM.2009.022934 +Majed Al-Mashari,A study of the Critical Success Factors of ERP implementation in developing countries.,2006,4,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem4.html#Al-MashariGA06,https://doi.org/10.1504/IJIEM.2006.008866 +Xin James He,Factors affecting Business Process Reengineering in China.,2011,7,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem7.html#He11,https://doi.org/10.1504/IJIEM.2011.039914 +Jalal Ashayeri,Development of an interactive framework of electronic business and global sourcing.,2004,2,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem2.html#AshayeriKS04,https://doi.org/10.1504/IJIEM.2004.005365 +Ned Kock,Web-based software contracting: an experimental study of deception identification across two different media.,2006,4,International Journal of Internet and Enterprise Management,4,db/journals/ijiem/ijiem4.html#KockVC06,https://doi.org/10.1504/IJIEM.2006.011046 +Fujun Lai,Selecting forecasting model parameters in Material Requirement Planning systems.,2006,4,International Journal of Internet and Enterprise Management,4,db/journals/ijiem/ijiem4.html#LaiZL06,https://doi.org/10.1504/IJIEM.2006.011044 +Miklos N. Szilagyi,Cars or buses: computer simulation of a social and economic dilemma.,2009,6,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem6.html#Szilagyi09,https://doi.org/10.1504/IJIEM.2009.022932 +Holger Luczak,Electronic business engineering - exploiting the potentials of a wireless world.,2003,1,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem1.html#LuczakBQ03,https://doi.org/10.1504/IJIEM.2003.002440 +Zhizhong Li,Discovering development of personnel qualification requirements by web mining: a case study.,2004,2,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem2.html#LiRM04,https://doi.org/10.1504/IJIEM.2004.004939 +Hung M. Nguyen,Electronic supply chains: an empirical study of the Australian manufacturing industry.,2004,2,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem2.html#NguyenH04,https://doi.org/10.1504/IJIEM.2004.005364 +Kanliang Wang,An empirical investigation on factors influencing the adoption of mobile phone call centre services: an integrated model.,2011,7,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem7.html#WangBY11,https://doi.org/10.1504/IJIEM.2011.044206 +Sushil K. Sharma,E-commerce adoption in small and medium enterprises (SMEs) in Asia: a study of the early stages of e-commerce uptake.,2004,2,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem2.html#SharmaAW04,https://doi.org/10.1504/IJIEM.2004.005363 +Tanyamai Chiarakul,Satisfaction with interpersonal and internet interactions in Thai corporate banking: an exploratory study.,2007,5,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem5.html#ChiarakulSI07,https://doi.org/10.1504/IJIEM.2007.014084 +Huizhang Shen,Classification of customer loyalty based on Hidden Markov Model.,2006,4,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem4.html#ShenZ06,https://doi.org/10.1504/IJIEM.2006.008865 +Pingyu Jiang,Portalet as a front end for enabling the e-service functions of CAX tool on the web.,2005,3,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem3.html#JiangZ05,https://doi.org/10.1504/IJIEM.2005.008415 +Davoud Masoumi,Foundations of cultural design in e-learning.,2009,6,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem6.html#MasoumiL09,https://doi.org/10.1504/IJIEM.2009.023926 +Kallol Kumar Bagchi,The global diffusion of internet attack incidents: analysis of a bad innovation.,2005,3,International Journal of Internet and Enterprise Management,4,db/journals/ijiem/ijiem3.html#BagchiSU05,https://doi.org/10.1504/IJIEM.2005.008754 +Kenneth David Strang,A grounded theory study of cellular phone New Product Development.,2011,7,International Journal of Internet and Enterprise Management,4,db/journals/ijiem/ijiem7.html#Strang11,https://doi.org/10.1504/IJIEM.2011.045112 +Xiao-xia Huang,Allying business process reengineering with strategy: a new perspective for BPR.,2003,1,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem1.html#HuangM03,https://doi.org/10.1504/IJIEM.2003.003821 +Eeva Heiro,Patient's medication information and its special characteristics: a case study of a Finnish primary care organisation.,2010,6,International Journal of Internet and Enterprise Management,4,db/journals/ijiem/ijiem6.html#HeiroR10,https://doi.org/10.1504/IJIEM.2010.035627 +Bill Martin,A knowledge dimension associated with e-business models: a study of internet adoption amongst Australian wineries.,2004,2,International Journal of Internet and Enterprise Management,4,db/journals/ijiem/ijiem2.html#MartinS04,https://doi.org/10.1504/IJIEM.2004.005571 +Rozalia Konkoly,Price optimisation using business risk analysis and game theory.,2005,3,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem3.html#KonkolyF05,https://doi.org/10.1504/IJIEM.2005.007231 +Mohammad Nazir Ahmad,A UML profile for perdurant ontology of domain interlocking Institutional Worlds.,2010,6,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem6.html#AhmadCS10,https://doi.org/10.1504/IJIEM.2010.032170 +Martin Juhrisch,Constraints in conceptual modelling: outlining an approach to business-driven web service composition.,2010,6,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem6.html#JuhrischD10,https://doi.org/10.1504/IJIEM.2010.032172 +Mohamed Khalifa,Explaining the intended continuance level of telecommuting.,2008,5,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem5.html#KhalifaD08,https://doi.org/10.1504/IJIEM.2008.018312 +Jian Liao,An investigation into knowledge discovery in collaborative learning communities.,2009,6,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem6.html#LiaoWLH09,https://doi.org/10.1504/IJIEM.2009.023929 +Pruthikrai Mahatanankoon,Predicting Cyber-Production deviance in the workplace.,2006,4,International Journal of Internet and Enterprise Management,4,db/journals/ijiem/ijiem4.html#Mahatanankoon06,https://doi.org/10.1504/IJIEM.2006.011043 +Hung-Ju Chien,The potential for ERP in integrating the supply chain in the UK construction industry.,2003,1,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem1.html#ChienBS03,https://doi.org/10.1504/IJIEM.2003.003245 +Carlos Malarranha,Application of quality methodologies to the development of a website.,2008,5,International Journal of Internet and Enterprise Management,4,db/journals/ijiem/ijiem5.html#MalarranhaPP08,https://doi.org/10.1504/IJIEM.2008.020104 +Chin-Chang Ho,From digital divide to digital inequality: the global perspective.,2006,4,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem4.html#HoT06,https://doi.org/10.1504/IJIEM.2006.010915 +Luc Bouganim,Fairness concerns in digital right management models.,2007,5,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem5.html#BouganimP07,https://doi.org/10.1504/IJIEM.2007.011591 +Peter Rittgen,Supporting the design of service contracts with interaction models.,2007,5,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem5.html#Rittgen07,https://doi.org/10.1504/IJIEM.2007.011588 +Hsin-Lu Chang,Developing supply chain dynamic capability to realise the value of Inter-Organisational Systems.,2011,7,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem7.html#Chang11,https://doi.org/10.1504/IJIEM.2011.039913 +Andreas Neus,Managing knowledge peer-to-peer: concepts and challenges.,2004,2,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem2.html#NeusS04,https://doi.org/10.1504/IJIEM.2004.004403 +Mark Rainbird,The demand chain and its place in the value catalyst: an e-commerce example.,2004,2,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem2.html#RainbirdW04,https://doi.org/10.1504/IJIEM.2004.004401 +Madhu Jain,A batch arrival retrial queuing system for essential and optional services with server breakdown and Bernoulli vacation.,2012,8,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem8.html#JainSS12,https://doi.org/10.1504/IJIEM.2012.049868 +Conceição Barbosa,Competitive advantages alliances under the web usage.,2016,8,International Journal of Internet and Enterprise Management,4,db/journals/ijiem/ijiem8.html#BarbosaTZ16,https://doi.org/10.1504/IJIEM.2016.10006371 +Liaoliao Li,Partial privatisation and firm performance: evidence from China's state-owned enterprises.,2013,8,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem8.html#LiTTZZ13,https://doi.org/10.1504/IJIEM.2013.055953 +Violina Ratcheva,Enabling processes for sharing knowledge in virtual business relationships.,2003,1,International Journal of Internet and Enterprise Management,4,db/journals/ijiem/ijiem1.html#Ratcheva03,https://doi.org/10.1504/IJIEM.2003.003904 +Jing Quan,Using IT to create business value in China: what can be learned from IT research and practices in the developed countries.,2006,4,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem4.html#QuanH06,https://doi.org/10.1504/IJIEM.2006.008862 +Chung-Kuang Hou,Exploring the user acceptance of business intelligence systems in Taiwan's electronics industry: applying the UTAUT model.,2014,8,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem8.html#Hou14,https://doi.org/10.1504/IJIEM.2014.059177 +Richard Discenza,User involvement to enhance expertise in system development.,2008,5,International Journal of Internet and Enterprise Management,4,db/journals/ijiem/ijiem5.html#DiscenzaTKJ08,https://doi.org/10.1504/IJIEM.2008.020107 +Vincent Chevrin,Instrumentation and measurement of multi-channel services systems.,2008,5,International Journal of Internet and Enterprise Management,4,db/journals/ijiem/ijiem5.html#ChevrinR08,https://doi.org/10.1504/IJIEM.2008.020105 +Haiyan Qiao,Agent-based simulation in market and production system.,2009,6,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem6.html#QiaoR09,https://doi.org/10.1504/IJIEM.2009.022933 +Arie Segev,A data analysis model for business intelligence.,2003,1,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem1.html#SegevSZ03,https://doi.org/10.1504/IJIEM.2003.002439 +Erastos Filos,Perspectives for Work and Business in the e-Economy: The Contribution of the European R and D Programme IST.,2003,1,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem1.html#Filos03,https://doi.org/10.1504/IJIEM.2003.002444 +Thomas W. Jackson,Optimising e-mail communication: the impact of seminar- and computer-based training.,2011,7,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem7.html#JacksonL11,https://doi.org/10.1504/IJIEM.2011.039915 +Sohail Asghar,A modular subroutine selection process in disaster management based on a needs classification scheme.,2008,5,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem5.html#AsgharAC08,https://doi.org/10.1504/IJIEM.2008.018309 +Frank M. Lillehagen,From enterprise modelling to enterprise visual scenes.,2005,3,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem3.html#LillehagenKS05,https://doi.org/10.1504/IJIEM.2005.007637 +Xiaohui Zhao 0001,Process integration based on multiple workflow domains.,2005,3,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem3.html#ZhaoL05,https://doi.org/10.1504/IJIEM.2005.007641 +Hung-Ju Chien,A survey of the potential for i-Build technology in improving the effectiveness of construction management in the Taiwanese construction industry.,2012,8,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem8.html#ChienB12,https://doi.org/10.1504/IJIEM.2012.049864 +Jirawat Damrianant,COSMOS: A discrete-event modeling methodology for construction process.,2003,1,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem1.html#Damrianant03,https://doi.org/10.1504/IJIEM.2003.003209 +Ling Li,The effects of information technology implementation on supply chain collaboration.,2006,4,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem4.html#Li06,https://doi.org/10.1504/IJIEM.2006.010238 +Max Gottlieb,Dynamic inventory database management (DIDM): a summary of an internet-based solution for managing complexity of inventory databases.,2004,2,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem2.html#GottliebMS04,https://doi.org/10.1504/IJIEM.2004.005373 +Luke Houghton,A study into the creation of feral information systems as a response to an ERP implementation within the supply chain of a large government-owned corporation.,2006,4,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem4.html#HoughtonK06,https://doi.org/10.1504/IJIEM.2006.010239 +Pablo Zoghbi Manrique de Lara,Whether satisfaction with and liking for the supervisor moderate the relationship between fair treatment and employee internet behaviour.,2012,8,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem8.html#LaraG12,https://doi.org/10.1504/IJIEM.2012.049866 +Sagren Moodley,The potential of Internet-based business-to-business electronic commerce for a 'technology follower': the case of the South African apparel sector.,2003,1,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem1.html#Moodley03,https://doi.org/10.1504/IJIEM.2003.002442 +Irma Becerra-Fernandez,Successfully implementing ERP: the IBM personal systems group experience.,2005,3,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem3.html#Becerra-FernandezME05,https://doi.org/10.1504/IJIEM.2005.007232 +Chyi-In Wu,Digital opportunity: the digital gap between openness and closeness of relational divide upon the mobile phone usage.,2006,4,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem4.html#WuCCI06,https://doi.org/10.1504/IJIEM.2006.010919 +Meng Zhang,Measuring the value of online information to hotel e-bookings: an empirical study from China.,2014,8,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem8.html#ZhangZLY14,https://doi.org/10.1504/IJIEM.2014.059178 +Dalila Boughaci,Taboo search as an intelligent agent for bid evaluation.,2005,3,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem3.html#BoughaciD05,https://doi.org/10.1504/IJIEM.2005.007639 +Ricardo Jardim-Gonçalves,Editorial: Product and process modelling in construction and related industries.,2003,1,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem1.html#Jardim-GoncalvesS03, +Qian Hao,CEO compensation and accruals management.,2014,8,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem8.html#HaoHLY14,https://doi.org/10.1504/IJIEM.2014.059179 +Daniel Hjorth,Editorial: Moving from knowledge management to organising knowledge.,2003,1,International Journal of Internet and Enterprise Management,4,db/journals/ijiem/ijiem1.html#Hjorth03,https://doi.org/10.1504/IJIEM.2003.003903 +Dmitri Roussinov,Web question answering: technology and applications to business intelligence.,2005,3,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem3.html#RoussinovR05,https://doi.org/10.1504/IJIEM.2005.007230 +Yuk Kuen Wong,Issues of software quality and management in practice: an empirical investigation of use of explicit documents in software review.,2006,4,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem4.html#Wong06,https://doi.org/10.1504/IJIEM.2006.008864 +Ricardo Jardim-Gonçalves,A meta-model based environment to assist integrated one-off production in B and C.,2003,1,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem1.html#Jardim-GoncalvesFS03,https://doi.org/10.1504/IJIEM.2003.003603 +Jonathan A. Morell,Interoperability in the service of coordination: expanding practical choices for supply chain integration.,2003,1,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem1.html#MorellP03,https://doi.org/10.1504/IJIEM.2003.002443 +Benjamin P.-C. Yen,Analysis of evaluation models for websites.,2005,3,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem3.html#Yen05,https://doi.org/10.1504/IJIEM.2005.008413 +Saeed Jahanyan,Factors influencing on knowledge-sharing behaviour in organisations.,2011,7,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem7.html#JahanyanM11,https://doi.org/10.1504/IJIEM.2011.044204 +Stephen C. North,Procession: a three-dimensional information visualisation tool for construction project statusing.,2003,1,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem1.html#North03,https://doi.org/10.1504/IJIEM.2003.003210 +Jannicke Baalsrud Hauge,Enhancing e-commerce business models of selected SMEs by a multi-mode approach.,2004,2,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem2.html#HaugeHS04,https://doi.org/10.1504/IJIEM.2004.004934 +Ajit Appari,Information security and privacy in healthcare: current state of research.,2010,6,International Journal of Internet and Enterprise Management,4,db/journals/ijiem/ijiem6.html#AppariJ10,https://doi.org/10.1504/IJIEM.2010.035624 +Arnoud De Meyer,Impact of ICT on government innovation policy: an international comparison.,2004,2,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem2.html#MeyerL04,https://doi.org/10.1504/IJIEM.2004.004398 +Taowen Le,An exploratory investigation of the impact of surprise interviews with former graduates on online students learning in an introductory IT course.,2011,7,International Journal of Internet and Enterprise Management,4,db/journals/ijiem/ijiem7.html#LeZH11,https://doi.org/10.1504/IJIEM.2011.045110 +José Luis Gómez Barroso,Public policies against the digital divide: a necessary adaptation to different degrees of development.,2006,4,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem4.html#BarrosoF06,https://doi.org/10.1504/IJIEM.2006.010918 +Yaxin Han,Modelling and simulation of e-business impact on supply chain.,2008,5,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem5.html#HanXX08,https://doi.org/10.1504/IJIEM.2008.018308 +Eldon Y. Li,Managing constrained capacity: a simulation study.,2005,3,International Journal of Internet and Enterprise Management,4,db/journals/ijiem/ijiem3.html#LiBT05,https://doi.org/10.1504/IJIEM.2005.008756 +Francisco Valera,Experiences with middleware and mobile agents in an e-commerce European project.,2004,2,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem2.html#ValeraKSSAVB04,https://doi.org/10.1504/IJIEM.2004.004937 +Xiaobing Liu,Product configuration system based on the rule base.,2005,3,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem3.html#LiuYSZ05,https://doi.org/10.1504/IJIEM.2005.008410 +Mack C. Shelley,Lost in cyberspace: barriers to bridging the digital divide in e-politics.,2006,4,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem4.html#ShelleyTS06,https://doi.org/10.1504/IJIEM.2006.010916 +Peter Maher,Customer strategies via internet commerce in the energy industry.,2007,5,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem5.html#MaherSD07,https://doi.org/10.1504/IJIEM.2007.014085 +Chuanlei Zhang,Analysing organisational structures using social network analysis: a case study.,2011,7,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem7.html#ZhangHLS11,https://doi.org/10.1504/IJIEM.2011.038390 +Xi Zhang 0009,Exchange Ideology as a moderator of Knowledge Sharing in virtual teams: a social exchange theory perspective.,2009,6,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem6.html#ZhangCVG09,https://doi.org/10.1504/IJIEM.2009.023927 +James Edwards 0003,A web-based Demand Planning System (DPS) to enable coordinated re-manufacture of automotive components.,2004,2,International Journal of Internet and Enterprise Management,4,db/journals/ijiem/ijiem2.html#EdwardsLK04,https://doi.org/10.1504/IJIEM.2004.005569 +Emil Røyrvik,Knowledge hyperstories and context sensitive knowledge enabling - the use of situated support systems in distributed organisational environments.,2003,1,International Journal of Internet and Enterprise Management,4,db/journals/ijiem/ijiem1.html#RoyrvikB03,https://doi.org/10.1504/IJIEM.2003.003906 +Yuanyuan Cao,The dynamics of a virtual community during a natural disaster: a network analysis.,2012,8,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem8.html#CaoWLQC12,https://doi.org/10.1504/IJIEM.2012.049869 +You-lin Shang,A modified T-F function method for resolving global optimisation in supply chain transportation.,2016,8,International Journal of Internet and Enterprise Management,4,db/journals/ijiem/ijiem8.html#ShangSJ16,https://doi.org/10.1504/IJIEM.2016.10006346 +Wolfgang Maass 0002,Media channels for personal business media.,2004,2,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem2.html#MaassSE04,https://doi.org/10.1504/IJIEM.2004.004935 +JunHua Li,E-Health readiness framework from Electronic Health Records perspective.,2010,6,International Journal of Internet and Enterprise Management,4,db/journals/ijiem/ijiem6.html#LiLRC10,https://doi.org/10.1504/IJIEM.2010.035626 +Fahri Karakaya,Determinants of internet adoption in small and medium-sized enterprises.,2004,2,International Journal of Internet and Enterprise Management,4,db/journals/ijiem/ijiem2.html#KarakayaK04,https://doi.org/10.1504/IJIEM.2004.005568 +Moritz Weiten,Advanced information management for process sciences: knowledge-based documentation of mathematical models.,2004,2,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem2.html#WeitenW04,https://doi.org/10.1504/IJIEM.2004.004938 +Dorothy G. Dologite,Packaged software in China: a manager's support roles during implementation.,2006,4,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem4.html#DologiteMCV06,https://doi.org/10.1504/IJIEM.2006.008863 +Yaobin Lu,Understanding mobile communication and entertainment service usage: a comparison study.,2010,6,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem6.html#LuCW10,https://doi.org/10.1504/IJIEM.2010.032169 +Arianna Dal Forno,Individual incentives in supervised work groups: from human subject experiments to agent based simulation.,2009,6,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem6.html#FornoM09,https://doi.org/10.1504/IJIEM.2009.022931 +Eldon Y. Li,Editorial: Internet and enterprise management.,2003,1,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem1.html#LiD03, +Gerard Briscoe,Self-organisation of evolving agent populations in Digital Ecosystems.,2011,7,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem7.html#BriscoeW11,https://doi.org/10.1504/IJIEM.2011.044205 +Jörg Zabel,Integration of bidding and procurement systems with e-marketplaces: case study of an Austrian tile layer.,2004,2,International Journal of Internet and Enterprise Management,4,db/journals/ijiem/ijiem2.html#ZabelPWS04,https://doi.org/10.1504/IJIEM.2004.005570 +Pat Auger,An empirical investigation of the Miles and Snow typology for small on-line businesses.,2003,1,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem1.html#Auger03,https://doi.org/10.1504/IJIEM.2003.003819 +Montri Lawkobkit,Service fairness and IS continuance model in cloud computing.,2014,8,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem8.html#LawkobkitS14,https://doi.org/10.1504/IJIEM.2014.059180 +Tim S. McLaren,Using competitive strategy patterns to determine ideal supply chain management information systems capabilities.,2004,2,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem2.html#McLarenHY04,https://doi.org/10.1504/IJIEM.2004.004400 +Nabeel A. Y. Al-Qirim,The role of the government and E-Commerce adoption in small businesses in New Zealand.,2006,4,International Journal of Internet and Enterprise Management,4,db/journals/ijiem/ijiem4.html#Al-Qirim06,https://doi.org/10.1504/IJIEM.2006.011042 +Stephan Aier,Understanding processes for model-based enterprise transformation planning.,2011,7,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem7.html#AierS11,https://doi.org/10.1504/IJIEM.2011.038384 +Samar Mouakket,Investigating the utilisation of ERP systems in the UAE.,2012,8,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem8.html#Mouakket12,https://doi.org/10.1504/IJIEM.2012.049867 +Patrick Dawson,Organizing knowledge and political process: reconfiguration in the context of BPR.,2003,1,International Journal of Internet and Enterprise Management,4,db/journals/ijiem/ijiem1.html#DawsonH03, +Bonaventura H. W. Hadikusumo,Visualisation: an aid to safety management.,2003,1,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem1.html#HadikusumoR03,https://doi.org/10.1504/IJIEM.2003.003247 +Erika Griechisch,A systematic approach of multi-person games.,2009,6,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem6.html#GriechischS09,https://doi.org/10.1504/IJIEM.2009.022936 +Bin Zhang,The impact of consumption emotions of standby customers on customer satisfaction: an empirical analysis from Chinese customers.,2013,8,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem8.html#ZhangXFY13,https://doi.org/10.1504/IJIEM.2013.055969 +Elizabeth A. Williamson,The impact of organisational factors at different levels of IOS development on supply chain partnerships.,2006,4,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem4.html#WilliamsonJH06,https://doi.org/10.1504/IJIEM.2006.010240 +A. E. Gegez,An examination of ethical concerns related to doing business on the internet: a preliminary investigation of Turkish managers.,2005,3,International Journal of Internet and Enterprise Management,4,db/journals/ijiem/ijiem3.html#GegezV05,https://doi.org/10.1504/IJIEM.2005.008757 +Edmundas Kazimieras Zavadskas,A multiple criteria decision support Web-based system for facilities management.,2004,2,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem2.html#ZavadskasKGLK04,https://doi.org/10.1504/IJIEM.2004.004399 +Kun-Lin Hsieh,Constructing an integrated framework of life-cycle model to implement relationship management in an EC environment.,2005,3,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem3.html#Hsieh05,https://doi.org/10.1504/IJIEM.2005.008411 +Stephen J. H. Yang,Service-level agreement-based QoS analysis for web services discovery and composition.,2007,5,International Journal of Internet and Enterprise Management,1,db/journals/ijiem/ijiem5.html#YangZL07,https://doi.org/10.1504/IJIEM.2007.011590 +Rajah Rasiah,Information and communication technology and GDP per capita.,2006,4,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem4.html#Rasiah06,https://doi.org/10.1504/IJIEM.2006.010914 +Rupak Rauniar,Performance evaluation of a centralised web-based integrated information system across the supply chain.,2013,8,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem8.html#RauniarHRY13,https://doi.org/10.1504/IJIEM.2013.055958 +Andrej Tibaut,Towards virtual product model.,2003,1,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem1.html#TibautR03,https://doi.org/10.1504/IJIEM.2003.003246 +Gregory E. Kersten,Aspire: an integrated negotiation support system and software agents for e-business negotiation.,2003,1,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem1.html#KerstenL03,https://doi.org/10.1504/IJIEM.2003.003822 +Rosemary H. Wild,SimPersonnel: a prototype policy simulation model for enterprise-wide manpower management in the U.S. Navy.,2003,1,International Journal of Internet and Enterprise Management,3,db/journals/ijiem/ijiem1.html#WildVG03,https://doi.org/10.1504/IJIEM.2003.003823 +António Grilo 0002,Analysis on the development of e-platforms in the AEC sector.,2005,3,International Journal of Internet and Enterprise Management,2,db/journals/ijiem/ijiem3.html#GriloJ05,https://doi.org/10.1504/IJIEM.2005.007640 +Rajiv Ranjan,A case for cooperative and incentive-based federation of distributed clusters.,2008,24,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs24.html#RanjanHB08,https://doi.org/10.1016/j.future.2007.05.006 +Alejandro Pérez-Méndez,Formal description of the SWIFT identity management framework.,2011,27,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs27.html#Perez-MendezLRG11,https://doi.org/10.1016/j.future.2011.04.003 +V. A. Luchnikov,The Voronoi-Delaunay approach for the free volume analysis of a packing of balls in a cylindrical container.,2002,18,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs18.html#LuchnikovGMV02,https://doi.org/10.1016/S0167-739X(02)00032-8 +Kenji Kaneda,Virtual private grid: a command shell for utilizing hundreds of machines efficiently.,2003,19,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs19.html#KanedaTY03,https://doi.org/10.1016/S0167-739X(03)00036-0 +Shubbhi Taneja,Thermal benchmarking and modeling for HPC using big data applications.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#TanejaZQ18,https://doi.org/10.1016/j.future.2018.05.004 +Mamadou Bilo Doumbouya,Argumentation graphs with constraint-based reasoning for collaborative expertise.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#DoumbouyaKKF18,https://doi.org/10.1016/j.future.2017.09.081 +Eunmi Choi,Performance test and analysis for an adaptive load balancing mechanism on distributed server cluster systems.,2004,20,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs20.html#Choi04,https://doi.org/10.1016/S0167-739X(03)00138-9 +Sven Schulz,COHESION - A microkernel based Desktop Grid platform for irregular task-parallel applications.,2008,24,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs24.html#SchulzBHD08,https://doi.org/10.1016/j.future.2007.06.005 +F. Allard,Artificial intelligence and space.,1992,7,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs7.html#Allard92,https://doi.org/10.1016/0167-739X(92)90049-H +Fangyong Hou,Bus and memory protection through chain-generated and tree-verified IV for multiprocessors systems.,2013,29,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs29.html#HouHXL13,https://doi.org/10.1016/j.future.2012.03.016 +Christian H. Bischof,Efficient and accurate derivatives for a software process chain in airfoil shape optimization.,2005,21,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs21.html#BischofBLRS05,https://doi.org/10.1016/j.future.2004.11.002 +Mircea Moca,Multi-criteria and satisfaction oriented scheduling for hybrid distributed computing infrastructures.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#MocaLSF16,https://doi.org/10.1016/j.future.2015.03.022 +Xiong Li 0002,A robust biometrics based three-factor authentication scheme for Global Mobility Networks in smart city.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#LiNKWC18,https://doi.org/10.1016/j.future.2017.04.012 +Sultan Alamri,A taxonomy for moving object queries in spatial databases.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#AlamriTS14,https://doi.org/10.1016/j.future.2014.02.007 +Witold Dzwinel,Method of particles in visual clustering of multi-dimensional and large data sets.,1999,15,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs15.html#DzwinelB99,https://doi.org/10.1016/S0167-739X(98)00081-8 +Gang Sun,A cost efficient framework and algorithm for embedding dynamic virtual network requests.,2013,29,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs29.html#SunYAL13,https://doi.org/10.1016/j.future.2012.08.002 +Veelasha Moonsamy,Mining permission patterns for contrasting clean and malicious android applications.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#MoonsamyRL14,https://doi.org/10.1016/j.future.2013.09.014 +Aritz Pérez Martínez,Let nature decide its nature: On the design of collaborative hyperheuristics for decentralized ephemeral environments.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#MartinezOBS18,https://doi.org/10.1016/j.future.2018.06.014 +Marc Sánchez Artigas,eSciGrid: A P2P-based e-science Grid for scalable and efficient data sharing.,2010,26,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs26.html#ArtigasL10,https://doi.org/10.1016/j.future.2009.05.013 +Hamid Arabnejad,Low-time complexity budget-deadline constrained workflow scheduling on heterogeneous resources.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#ArabnejadBP16,https://doi.org/10.1016/j.future.2015.07.021 +Nashreen Nesa,Non-parametric sequence-based learning approach for outlier detection in IoT.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#NesaGB18,https://doi.org/10.1016/j.future.2017.11.021 +Dimitri Treebushny,On the construction of a reduced rank square-root Kalman filter for efficient uncertainty propagation.,2005,21,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs21.html#TreebushnyM05,https://doi.org/10.1016/j.future.2004.03.005 +Steve Guynup,Avatar as Content Delivery Platform.,2000,17,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs17.html#GuynupC00,https://doi.org/10.1016/S0167-739X(99)00098-9 +Ming-Chang Lee,PFRF: An adaptive data replication algorithm based on star-topology data grids.,2012,28,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs28.html#LeeLC12,https://doi.org/10.1016/j.future.2011.08.015 +Alain Tchana,Two levels autonomic resource management in virtualized IaaS.,2013,29,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs29.html#TchanaTBPH13,https://doi.org/10.1016/j.future.2013.02.002 +Song Wu 0001,Time Donating Barrier for efficient task scheduling in competitive multicore systems.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#WuPJ16,https://doi.org/10.1016/j.future.2015.04.005 +Francesco Palmieri,A distributed scheduling framework based on selfish autonomous agents for federated cloud environments.,2013,29,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs29.html#PalmieriBVAM13,https://doi.org/10.1016/j.future.2013.01.012 +Krzysztof Benedyczak,Key aspects of the UNICORE 6 security model.,2011,27,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs27.html#BenedyczakBBMS11,https://doi.org/10.1016/j.future.2010.08.009 +Chenxi Zhang,Implementation of prolog databases and database operation builtins in the WAM-Plus model.,1990,6,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs6.html#ZhangCL90,https://doi.org/10.1016/0167-739X(90)90003-V +Antonio Fernández-Ares,Studying real traffic and mobility scenarios for a Smart City using a new monitoring and tracking system.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#Fernandez-AresG17,https://doi.org/10.1016/j.future.2016.11.021 +Thomas L. Casavant,A parallel/distributed architecture for hierarchically heterogeneous web-based cooperative applications.,2001,17,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs17.html#CasavantBKSMB01,https://doi.org/10.1016/S0167-739X(00)00104-7 +Alfredo Cuzzocrea,Mining constrained frequent itemsets from distributed uncertain data.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#CuzzocreaLM14,https://doi.org/10.1016/j.future.2013.10.026 +Emile H. L. Aarts,Parallel computing.,1992,8,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs8.html#AartsLR92,https://doi.org/10.1016/0167-739X(92)90062-G +Wei Liu 0061,Dynamic metric embedding model for point-of-interest prediction.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#LiuWSY18,https://doi.org/10.1016/j.future.2017.12.014 +Jingqiang Chen,Summarization of scientific documents by detecting common facts in citations.,2014,32,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs32.html#ChenZ14,https://doi.org/10.1016/j.future.2013.07.018 +Jiannong Cao,A framework of using cooperating mobile agents to achieve load sharing in distributed web server groups.,2004,20,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs20.html#CaoWD04,https://doi.org/10.1016/S0167-739X(03)00175-4 +Mark Tennant,Scalable real-time classification of data streams with concept drift.,2017,75,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs75.html#TennantSRG17,https://doi.org/10.1016/j.future.2017.03.026 +Sadeka Islam,Empirical prediction models for adaptive resource provisioning in the cloud.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#IslamKLL12,https://doi.org/10.1016/j.future.2011.05.027 +Hailong Yang,iMeter: An integrated VM power model based on performance profiling.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#YangZLQ14,https://doi.org/10.1016/j.future.2013.07.008 +César Cárdenas,Evaluation of Flow-Aware Networking (FAN) architectures under GridFTP traffic.,2009,25,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs25.html#CardenasG09,https://doi.org/10.1016/j.future.2008.08.002 +Yi Pan 0001,Order statistics on a linear array with a reconfigurable bus.,1995,11,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs11.html#Pan95,https://doi.org/10.1016/0167-739X(94)00066-N +Chettupally Anil Carie,Hybrid Directional CR-MAC based on Q-Learning with Directional Power Control.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#CarieLLRJ18,https://doi.org/10.1016/j.future.2017.11.014 +Yan Wang 0015,Identification of the normal and abnormal heart sounds using wavelet-time entropy features based on OMS-WPD.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#WangLZLP14,https://doi.org/10.1016/j.future.2014.02.009 +Jan Henrik Ziegeldorf,Secure and anonymous decentralized Bitcoin mixing.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#ZiegeldorfMHGW18,https://doi.org/10.1016/j.future.2016.05.018 +Uwe Schwiegelshohn,Perspectives on grid computing.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#SchwiegelshohnBBDDGGHKLPRRRRRSTUY10,https://doi.org/10.1016/j.future.2010.05.010 +Claudio Cacciari,SLA-based management of software licenses as web service resources in distributed computing infrastructures.,2012,28,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs28.html#CacciariMZDHRZM12,https://doi.org/10.1016/j.future.2011.11.005 +Yangfan Li,RIMS: A Real-time and Intelligent Monitoring System for live-broadcasting platforms.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#LiRZRQJ18,https://doi.org/10.1016/j.future.2018.04.012 +Antonio Laganà,Parallelization strategies for quantum reactive scattering codes.,2004,20,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs20.html#LaganaPB04,https://doi.org/10.1016/j.future.2003.11.022 +Xiaofei Liao,A novel data replication mechanism in P2P VoD system.,2012,28,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs28.html#LiaoJY12,https://doi.org/10.1016/j.future.2011.10.006 +Gyungho Lee,Special section: Trusting software behavior.,2012,28,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs28.html#Lee12,https://doi.org/10.1016/j.future.2011.03.009 +Holger Veit,The FTA design paradigm for distributed systems.,2000,16,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs16.html#VeitR00,https://doi.org/10.1016/S0167-739X(99)00069-2 +Markus Held,Structured collaborative workflow design.,2009,25,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs25.html#HeldB09,https://doi.org/10.1016/j.future.2008.12.005 +Yuri Demchenko,Dynamic security context management in Grid-based applications.,2008,24,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs24.html#DemchenkoMGLW08,https://doi.org/10.1016/j.future.2007.07.015 +Matías Hirsch,Augmenting computing capabilities at the edge by jointly exploiting mobile devices: A survey.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#HirschMZ18,https://doi.org/10.1016/j.future.2018.06.005 +Jemal H. Abawajy,Special section: Parallel input/output management techniques (PIOMT) in cluster and grid computing.,2006,22,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs22.html#Abawajy06,https://doi.org/10.1016/j.future.2005.09.002 +Javier Navarro,Fuzzy adaptive cognitive stimulation therapy generation for Alzheimer's sufferers: Towards a pervasive dementia care monitoring platform.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#NavarroDZISL18,https://doi.org/10.1016/j.future.2018.06.018 +Nut Taesombut,Collaborative data visualization for Earth Sciences with the OptIPuter.,2006,22,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs22.html#TaesombutWCNSKISKO06,https://doi.org/10.1016/j.future.2006.03.023 +Juan José Durillo,Multi-objective energy-efficient workflow scheduling using list-based heuristics.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#DurilloNP14,https://doi.org/10.1016/j.future.2013.07.005 +Long Hu,SCAI-SVSC: Smart clothing for effective interaction with a sustainable vital sign collection.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#HuYCQR18,https://doi.org/10.1016/j.future.2018.03.042 +Peter Hinrich,Collaborative Research Using eScience Infrastructure and High Speed Networks.,2015,45,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs45.html#HinrichGM15,https://doi.org/10.1016/j.future.2014.12.007 +Fabio Petroni,Exploiting user feedback for online filtering in event-based systems.,2017,71,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs71.html#PetroniQBP17,https://doi.org/10.1016/j.future.2016.10.017 +Bartosz Balis,LGF: A flexible framework for exposing legacy codes as services.,2008,24,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs24.html#BalisBW08,https://doi.org/10.1016/j.future.2007.12.001 +B. Prathusha Laxmi,GSR: Geographic Secured Routing using SHA-3 algorithm for node and message authentication in wireless sensor networks.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#LaxmiC17,https://doi.org/10.1016/j.future.2017.05.015 +Min Li,Evolutionary virus immune strategy for temporal networks based on community vitality.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#LiFLYZH17,https://doi.org/10.1016/j.future.2016.05.015 +Emiliano Casalicchio,Research challenges in legal-rule and QoS-aware cloud service brokerage.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#CasalicchioCIP18,https://doi.org/10.1016/j.future.2016.11.025 +Ravindra Boojhawon,Restarted Simpler GMRES augmented with harmonic Ritz vectors.,2004,20,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs20.html#BoojhawonB04,https://doi.org/10.1016/j.future.2003.07.004 +Wen Ji,Power-efficient video encoding on resource-limited systems: A game-theoretic approach.,2012,28,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs28.html#JiLCC12,https://doi.org/10.1016/j.future.2011.04.002 +Silvio D. Cardoso,SWI: A Semantic Web Interactive Gazetteer to support Linked Open Data.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#CardosoASSM16,https://doi.org/10.1016/j.future.2015.05.006 +Michael A. Murphy,Virtual Organization Clusters: Self-provisioned clouds on the grid.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#MurphyG10,https://doi.org/10.1016/j.future.2010.02.011 +David De Roure,The design and realisation of the myExperiment Virtual Research Environment for social sharing of workflows.,2009,25,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs25.html#RoureGS09,https://doi.org/10.1016/j.future.2008.06.010 +Hai Jin 0001,Flubber: Two-level disk scheduling in virtualized environment.,2013,29,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs29.html#JinLICWA13,https://doi.org/10.1016/j.future.2013.06.010 +Brian S. Wherrett,Optical components for digital optical circuits.,1987,3,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs3.html#WherrettSTW87,https://doi.org/10.1016/0167-739X(87)90029-X +Lijun Liao,Tree-based group key agreement framework for mobile ad-hoc networks.,2007,23,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs23.html#LiaoM07,https://doi.org/10.1016/j.future.2007.01.001 +K. Sunil Rao,Heuristics based server consolidation with residual resource defragmentation in cloud data centers.,2015,50,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs50.html#RaoT15,https://doi.org/10.1016/j.future.2014.09.009 +David Taniar,Concurrency control issues in Grid databases.,2007,23,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs23.html#TaniarG07,https://doi.org/10.1016/j.future.2006.06.002 +Qublai Khan Ali Mirza,CloudIntell: An intelligent malware detection system.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#MirzaAY18,https://doi.org/10.1016/j.future.2017.07.016 +Mohammed Abdullahi,Symbiotic Organism Search optimization based task scheduling in cloud computing environment.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#AbdullahiNA16,https://doi.org/10.1016/j.future.2015.08.006 +Jerry P. Greenberg,Incorporation of middleware and grid technologies to enhance usability in Computational Chemistry applications.,2005,21,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs21.html#GreenbergMBKBSPB05,https://doi.org/10.1016/j.future.2004.09.027 +Asmat Ullah Khan,Software architecture and algorithm for reliable RPC for geo-distributed mobile computing systems.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#KhanB18,https://doi.org/10.1016/j.future.2018.04.023 +Neetu Kushwaha,Link based BPSO for feature selection in big data text clustering.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#KushwahaP18,https://doi.org/10.1016/j.future.2017.12.005 +Todd E. Scheetz,Gene transcript clustering: a comparison of parallel approaches.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#ScheetzTPBC05,https://doi.org/10.1016/j.future.2004.05.014 +Yohei Matsuhashi,Transparent VPN failure recovery with virtualization.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#MatsuhashiSIHK12,https://doi.org/10.1016/j.future.2011.05.020 +Feng Zhao 0003,A personalized hashtag recommendation approach using LDA-based topic model in microblog environment.,2016,65,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs65.html#ZhaoZJY16,https://doi.org/10.1016/j.future.2015.10.012 +Amanda Calatrava,Self-managed cost-efficient virtual elastic clusters on hybrid Cloud infrastructures.,2016,61,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs61.html#CalatravaRMCA16,https://doi.org/10.1016/j.future.2016.01.018 +Jian J. Zhang 0001,Analytical C2 smooth blending surfaces.,2004,20,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs20.html#ZhangY04,https://doi.org/10.1016/j.future.2004.05.023 +Adriana Budura,From bioinformatic web portals to semantically integrated Data Grid networks.,2007,23,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs23.html#BuduraCA07,https://doi.org/10.1016/j.future.2006.03.002 +Johan J. Lukkien,Some experience in distributed programming using shortest path spanning trees.,1989,4,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs4.html#Lukkien89,https://doi.org/10.1016/0167-739X(89)90004-6 +Ning Xi,Secure service composition with information flow control in service clouds.,2015,49,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs49.html#XiSMS15,https://doi.org/10.1016/j.future.2014.12.009 +Ghulam Jillani Ansari,A novel machine learning approach for scene text extraction.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#AnsariSYSF18,https://doi.org/10.1016/j.future.2018.04.074 +Hongjun Liu,A structured hierarchical P2P model based on a rigorous binary tree code algorithm.,2007,23,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs23.html#LiuLZ07,https://doi.org/10.1016/j.future.2006.04.016 +Xavier Masip-Bruin,Managing resources continuity from the edge to the cloud: Architecture and performance.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#Masip-BruinMJR18,https://doi.org/10.1016/j.future.2017.09.036 +Shu Qin Ren,Secure searching on cloud storage enhanced by homomorphic indexing.,2016,65,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs65.html#RenTSWN0A16,https://doi.org/10.1016/j.future.2016.03.013 +Hua Guo,Self-healing group key distribution protocol in wireless sensor networks for secure IoT communications.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#GuoZLLX18,https://doi.org/10.1016/j.future.2018.07.009 +Xiang Fan,Modeling the propagation of Peer-to-Peer worms.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#FanX10,https://doi.org/10.1016/j.future.2010.04.009 +Xiaohua Jia,Special section: Scalable information systems.,2008,24,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs24.html#JiaL08,https://doi.org/10.1016/j.future.2008.06.002 +Dipak Ghosal,P2P contracts: a framework for resource and service exchange.,2005,21,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs21.html#GhosalPK05,https://doi.org/10.1016/j.future.2004.04.013 +Kaili Mao,Mining of marital distress from microblogging social networks: A case study on Sina Weibo.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#MaoNCWA18,https://doi.org/10.1016/j.future.2017.05.030 +Tuan Anh Trinh,Energy efficiency in large-scale distributed systems.,2012,28,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs28.html#TrinhHT12,https://doi.org/10.1016/j.future.2011.11.011 +Sangmi Lee Pallickara,Towards efficient data search and subsetting of large-scale atmospheric datasets.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#PallickaraPZ12,https://doi.org/10.1016/j.future.2011.05.010 +W. Dekker,Issues basic to the development of a European information technology.,1986,2,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs2.html#Dekker86,https://doi.org/10.1016/0167-739X(86)90036-1 +Emna Fki,Automated and flexible composition based on abstract services for a better adaptation to user intentions.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#FkiTD17,https://doi.org/10.1016/j.future.2016.07.008 +Xiaolong Xu,Predatory Search-based Chaos Turbo Particle Swarm Optimisation (PS-CTPSO): A new particle swarm optimisation algorithm for Web service combination problems.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#XuRPT18,https://doi.org/10.1016/j.future.2018.07.002 +David Rodenas-Herraiz,On the improvement of wireless mesh sensor network performance under hidden terminal problems.,2015,45,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs45.html#Rodenas-Herraiz15,https://doi.org/10.1016/j.future.2014.11.012 +Victor P. Gergel,Parallel computing for globally optimal decision making on cluster systems.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#GergelS05,https://doi.org/10.1016/j.future.2004.05.007 +Miguel A. Martínez-Prieto,The Solid architecture for real-time management of big semantic data.,2015,47,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs47.html#Martinez-Prieto15,https://doi.org/10.1016/j.future.2014.10.016 +Absalom E. Ezugwu,Soft sets based symbiotic organisms search algorithm for resource discovery in cloud computing environment.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#EzugwuA17,https://doi.org/10.1016/j.future.2017.05.024 +Suchuan Dong,Simulating and visualizing the human arterial system on the TeraGrid.,2006,22,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs22.html#DongIKPBK06,https://doi.org/10.1016/j.future.2006.03.019 +Ryan Ghanbari,Correlation of cascade failures and centrality measures in complex networks.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#GhanbariJY18,https://doi.org/10.1016/j.future.2017.09.007 +József Kovács,Application and middleware transparent checkpointing with TCKPT on ClusterGrids.,2010,26,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs26.html#KovacsKJJ10,https://doi.org/10.1016/j.future.2009.07.013 +Mehmet Fatih Aktas,Scheduling and flexible control of bandwidth and in-transit services for end-to-end application workflows.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#AktasHP16,https://doi.org/10.1016/j.future.2015.09.011 +Javier López,Evolving privacy: From sensors to the Internet of Things.,2017,75,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs75.html#LopezRBW17,https://doi.org/10.1016/j.future.2017.04.045 +Tony R. Martinez,Smart memory architecture and methods.,1990,6,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs6.html#Martinez90,https://doi.org/10.1016/0167-739X(90)90030-H +Waralak Chongdarakul,Theoretical and heuristic aspects of heterogeneous system scheduling with constraints on client's multiple I/O ports.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#ChongdarakulSL18,https://doi.org/10.1016/j.future.2017.07.052 +Bidyut Mukherjee,Flexible IoT security middleware for end-to-end cloud-fog communication.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#MukherjeeWLNDRS18,https://doi.org/10.1016/j.future.2017.12.031 +Toshiya Naka,WonderSpace: web based humanoid animation.,2000,17,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs17.html#NakaMA00,https://doi.org/10.1016/S0167-739X(99)00096-5 +Ok-Hyeong Cho,Associative random access machines and data-parallel multiway binary-search join.,1998,13,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs13.html#ChoC98,https://doi.org/10.1016/S0167-739X(97)00024-1 +Ehab Nabiel Alkhanak,Cost-aware challenges for workflow scheduling approaches in cloud computing environments: Taxonomy and opportunities.,2015,50,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs50.html#AlkhanakLK15,https://doi.org/10.1016/j.future.2015.01.007 +Mahmoud Naghibzadeh,Modeling and scheduling hybrid workflows of tasks and task interaction graphs on the cloud.,2016,65,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs65.html#Naghibzadeh16,https://doi.org/10.1016/j.future.2016.05.029 +Wanchun Dou,A confidence-based filtering method for DDoS attack defense in cloud environment.,2013,29,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs29.html#DouCC13,https://doi.org/10.1016/j.future.2012.12.011 +Vishakha Singh,A novel cost-efficient approach for deadline-constrained workflow scheduling by dynamic provisioning of resources.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#SinghGJ18,https://doi.org/10.1016/j.future.2017.09.054 +Francesco Palmieri,Scalable service discovery in ubiquitous and pervasive computing architectures: A percolation-driven approach.,2013,29,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs29.html#Palmieri13,https://doi.org/10.1016/j.future.2012.08.004 +Guangwu Hu,TrueID: A practical solution to enhance Internet accountability by assigning packets with creditable user identity code.,2017,72,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs72.html#HuCLJX17,https://doi.org/10.1016/j.future.2016.09.005 +Yang-Lang Chang,A modular eigen subspace scheme for high-dimensional data classification.,2004,20,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs20.html#ChangHJFCC04,https://doi.org/10.1016/j.future.2003.11.003 +Takaji Inamuro,Numerical simulation of bubble flows by the lattice Boltzmann method.,2004,20,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs20.html#InamuroOO04,https://doi.org/10.1016/j.future.2003.12.008 +Aldo Dall'Osso,Using computer algebra systems in the development of scientific computer codes.,2003,19,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs19.html#DallOsso03,https://doi.org/10.1016/S0167-739X(02)00126-7 +Christian Berkhoff,Clairvoyance: A framework to integrate shared displays and mobile computing devices.,2014,34,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs34.html#BerkhoffOPFOG14,https://doi.org/10.1016/j.future.2013.10.013 +Daniel Díaz López,Dynamic counter-measures for risk-based access control systems: An evolutive approach.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#LopezTMP16,https://doi.org/10.1016/j.future.2014.10.012 +Miki Fukunari,JavaBean-based simulation with operational procedure table (OPT).,2001,17,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs17.html#FukunariCW01,https://doi.org/10.1016/S0167-739X(00)00037-6 +Fasma Diele,The global error of Magnus methods based on the Cayley map for some oscillatory problems.,2003,19,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs19.html#DieleR03,https://doi.org/10.1016/S0167-739X(02)00165-6 +Leandro Soares Indrusiak,3D integrated circuit layout visualization using VRML.,2001,17,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs17.html#IndrusiakR01,https://doi.org/10.1016/S0167-739X(00)00036-4 +Tina Balke,Analysing energy-incentivized cooperation in next generation mobile networks using normative frameworks and an agent-based simulation.,2011,27,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs27.html#BalkeVP11,https://doi.org/10.1016/j.future.2011.04.006 +Ashok Kumar Das,Taxonomy and analysis of security protocols for Internet of Things.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#DasZH18,https://doi.org/10.1016/j.future.2018.06.027 +Anand Natrajan,"Erratum to: ""The Legion support for advanced parameter-space studies on a grid"" [Future Generation Computer Systems 18 (2002) 1033-1052].",2003,19,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs19.html#NatrajanHG03,https://doi.org/10.1016/S0167-739X(03)00059-1 +T. J. Reynolds,BRAVE - a parallel logic language for artificial intelligence.,1988,4,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs4.html#ReynoldsBCDS88,https://doi.org/10.1016/0167-739X(88)90020-9 +Theodora A. Varvarigou,Special section: Real-time attributes in grids.,2009,25,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs25.html#VarvarigouLK09,https://doi.org/10.1016/j.future.2009.03.003 +Young-Sik Lee,ActiveSort: Efficient external sorting using active SSDs in the MapReduce framework.,2016,65,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs65.html#LeeQKKM16,https://doi.org/10.1016/j.future.2016.03.003 +Unil Yun,Mining of high average-utility itemsets using novel list structure and pruning strategy.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#YunK17,https://doi.org/10.1016/j.future.2016.10.027 +Jianfeng Lu 0002,Supporting user authorization queries in RBAC systems by role-permission reassignment.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#LuXZPH18,https://doi.org/10.1016/j.future.2018.01.010 +Mingxin Gan,FLOWER: Fusing global and local associations towards personalized social recommendation.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#GanJ18,https://doi.org/10.1016/j.future.2017.02.027 +Bahman Javadi,Characterizing spot price dynamics in public cloud environments.,2013,29,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs29.html#JavadiTB13,https://doi.org/10.1016/j.future.2012.06.012 +Hong Linh Truong,Performance metrics and ontologies for Grid workflows.,2007,23,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs23.html#TruongDF07,https://doi.org/10.1016/j.future.2007.01.003 +Allen D. Malony,Computational experiments using distributed tools in a web-based electronic notebook environment.,2000,16,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs16.html#MalonyCSS00,https://doi.org/10.1016/S0167-739X(99)00135-1 +Saeed Parsa,Cooperative decision making in a knowledge grid environment.,2007,23,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs23.html#ParsaP07,https://doi.org/10.1016/j.future.2007.03.003 +Hua Ma,Multi-valued collaborative QoS prediction for cloud service via time series analysis.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#MaZHTD17,https://doi.org/10.1016/j.future.2016.10.012 +Abbas Eslami Kiasari,An accurate mathematical performance model of adaptive routing in the star graph.,2008,24,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs24.html#KiasariSO08,https://doi.org/10.1016/j.future.2007.06.010 +Pascale Launay,Easing parallel programming for clusters with Java.,2001,18,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs18.html#LaunayP01,https://doi.org/10.1016/S0167-739X(00)00096-0 +Nicoletta Del Buono,A differential approach to solve the inverse eigenvalue problem derived from a neural network.,2006,22,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs22.html#Buono06,https://doi.org/10.1016/j.future.2004.11.023 +Tom Peterka,Personal Varrier: Autostereoscopic virtual reality display for distributed scientific visualization.,2006,22,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs22.html#PeterkaSGGKLJTD06,https://doi.org/10.1016/j.future.2006.03.011 +José-Jesús Fernández,Floating point arithmetic teaching for computational science.,2003,19,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs19.html#FernandezGG03,https://doi.org/10.1016/S0167-739X(03)00090-6 +Intae Hwang,Performance analysis of adaptive modulation and coding combined with transmit diversity in next generation mobile communication systems.,2004,20,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs20.html#HwangJKNSHK04,https://doi.org/10.1016/S0167-739X(03)00133-X +Minggang Dou,Modeling and simulation for natural disaster contingency planning driven by high-resolution remote sensing images.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#DouCCCDZXW14,https://doi.org/10.1016/j.future.2013.12.018 +Ladislau Bölöni,Value of information based scheduling of cloud computing resources.,2017,71,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs71.html#BoloniT17,https://doi.org/10.1016/j.future.2016.10.024 +Young-Chul Shim,Performance evaluation of scheduling schemes for NOW with heterogeneous computing power.,2004,20,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs20.html#Shim04,https://doi.org/10.1016/S0167-739X(03)00137-7 +Nicoletta Del Buono,Geometric numerical algorithms.,2003,19,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs19.html#BuonoP03,https://doi.org/10.1016/S0167-739X(02)00159-0 +Zheng Xu 0001,Special section on intelligent sensing and applications for cyber-physical systems.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#XuLZ18,https://doi.org/10.1016/j.future.2017.12.018 +Denghui Liu,Scheduling para-virtualized virtual machines based on events.,2013,29,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs29.html#LiuC13,https://doi.org/10.1016/j.future.2012.12.014 +Mike Fagan,Reducing reverse-mode memory requirements by using profile-driven checkpointing.,2005,21,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs21.html#FaganC05,https://doi.org/10.1016/j.future.2004.11.005 +K. Subramani,A greedy strategy for detecting negative cost cycles in networks.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#SubramaniK05,https://doi.org/10.1016/j.future.2004.09.001 +Anne E. James,Business and Industry Specific Cloud: Challenges and opportunities.,2015,48,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs48.html#JamesC15,https://doi.org/10.1016/j.future.2014.12.006 +Kaijun Leng,Research on agricultural supply chain system with double chain architecture based on blockchain technology.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#LengBJFN18,https://doi.org/10.1016/j.future.2018.04.061 +Amritpal Singh,Bloom filter based optimization scheme for massive data handling in IoT environment.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#SinghGBKR18,https://doi.org/10.1016/j.future.2017.12.016 +Andrej Podzimek,Robust partial-load experiments with Showstopper.,2016,64,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs64.html#PodzimekBCBT16,https://doi.org/10.1016/j.future.2016.04.020 +Stefano Ferretti,Gossiping for resource discovering: An analysis based on complex network theory.,2013,29,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs29.html#Ferretti13,https://doi.org/10.1016/j.future.2012.06.002 +Feng Zhu,A high performance framework for modeling and simulation of large-scale complex systems.,2015,51,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs51.html#ZhuYTC15,https://doi.org/10.1016/j.future.2014.11.018 +Sergio Trilles,Deployment of an open sensorized platform in a smart city context.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#TrillesCBTMH17,https://doi.org/10.1016/j.future.2016.11.005 +Peter Ansell,Model and prototype for querying multiple linked scientific datasets.,2011,27,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs27.html#Ansell11,https://doi.org/10.1016/j.future.2010.08.016 +Abdel Monim M. Artoli,Lattice BGK simulations of flow in a symmetric bifurcation.,2004,20,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs20.html#ArtoliKHHS04,https://doi.org/10.1016/j.future.2003.12.002 +Dan C. Marinescu,Biological metaphors in the design of complex software systems.,2001,17,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs17.html#MarinescuB01,https://doi.org/10.1016/S0167-739X(99)00116-8 +Olaf Schenk,Solving unsymmetric sparse systems of linear equations with PARDISO.,2004,20,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs20.html#SchenkG04,https://doi.org/10.1016/j.future.2003.07.011 +Ximeng Liu,Efficient and privacy-preserving skyline computation framework across domains.,2016,62,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs62.html#LiuLMCB16,https://doi.org/10.1016/j.future.2015.10.005 +Muhammad Al-Qurishi,A prediction system of Sybil attack in social network using deep-regression model.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#Al-QurishiARAH18,https://doi.org/10.1016/j.future.2017.08.030 +Mary Moore,The evolution of telemedicine.,1999,15,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs15.html#Moore99,https://doi.org/10.1016/S0167-739X(98)00067-3 +Todd Eavis,Parallel OLAP with the Sidera server.,2010,26,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs26.html#EavisDDCLT10,https://doi.org/10.1016/j.future.2008.10.007 +Erica Y. Yang,Enhancing the core scientific metadata model to incorporate derived data.,2013,29,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs29.html#YangMW13,https://doi.org/10.1016/j.future.2011.08.003 +Richard Olejnik,Webservices oriented data mining in knowledge architecture.,2009,25,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs25.html#OlejnikFT09,https://doi.org/10.1016/j.future.2008.09.011 +Ad Emmen,The ITIS'98 forums.,1999,15,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs15.html#EmmenV99,https://doi.org/10.1016/S0167-739X(98)00060-0 +Spiros Koulouzis,SDN-aware federation of distributed data.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#KoulouzisBBZZL16,https://doi.org/10.1016/j.future.2015.09.032 +Bhawna Goyal,Two-dimensional gray scale image denoising via morphological operations in NSST domain and bitonic filtering.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#GoyalDAS18,https://doi.org/10.1016/j.future.2017.12.034 +Alexandru Sirbu,Predicting provisioning and booting * in a Metal-as-a-service system.,2017,72,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs72.html#SirbuPSP17,https://doi.org/10.1016/j.future.2016.07.001 +Qin Liu 0003,Optimal precomputation for mapping service level agreements in grid computing.,2008,24,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs24.html#LiuJW08,https://doi.org/10.1016/j.future.2007.11.002 +Qunzhi Zhou,Knowledge-infused and consistent Complex Event Processing over real-time and persistent streams.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#ZhouSP17,https://doi.org/10.1016/j.future.2016.10.030 +Sebti Bousri,A parallel nodal method of second order.,1995,11,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs11.html#Bousri95,https://doi.org/10.1016/0167-739X(95)00056-X +Fangxiaoqi Yu,DMPO: Dynamic mobility-aware partial offloading in mobile edge computing.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#YuCX18,https://doi.org/10.1016/j.future.2018.07.032 +Edward Seidel,GridLab--a grid application toolkit and testbed.,2002,18,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs18.html#SeidelAMN02,https://doi.org/10.1016/S0167-739X(02)00091-2 +Evangelos Pournaras,Self-regulating supply-demand systems.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#PournarasYH17,https://doi.org/10.1016/j.future.2017.05.018 +Fabio López-Pires,Virtual machine placement for elastic infrastructures in overbooked cloud computing datacenters under uncertainty.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#Lopez-PiresBBZA18,https://doi.org/10.1016/j.future.2017.09.021 +Marek R. Ogiela,New paradigms for information and services management in grid and pervasive computing.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#OgielaB17,https://doi.org/10.1016/j.future.2016.10.011 +Kenneth A. Hawick,Interfacing to distributed active data archives.,1999,16,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs16.html#HawickC99,https://doi.org/10.1016/S0167-739X(99)00037-0 +Jun Murai,Current status of JUNET.,1988,4,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs4.html#MuraiK88,https://doi.org/10.1016/0167-739X(88)90004-0 +Yahya Hassanzadeh-Nazarabadi,Decentralized and locality aware replication method for DHT-based P2P storage systems.,2018,84,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs84.html#Hassanzadeh-Nazarabadi18,https://doi.org/10.1016/j.future.2018.02.007 +Robert H. Deng,Cryptography in Cloud Computing.,2014,30,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs30.html#DengXA14,https://doi.org/10.1016/j.future.2013.10.009 +Shubham Goel,Brownian Motus and Clustered Binary Insertion Sort methods: An efficient progress over traditional methods.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#GoelK18,https://doi.org/10.1016/j.future.2018.04.038 +John Fulcher,Neural networks: Promise for the future?,1991,6,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs6.html#Fulcher91,https://doi.org/10.1016/0167-739X(91)90004-H +Fan Zhang 0003,Multi-objective scheduling of many tasks in cloud platforms.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#ZhangCLKH14,https://doi.org/10.1016/j.future.2013.09.006 +Tomasz Buchert,A survey of general-purpose experiment management tools for distributed systems.,2015,45,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs45.html#BuchertRNR15,https://doi.org/10.1016/j.future.2014.10.007 +Samet Tonyali,Privacy-preserving protocols for secure and reliable data aggregation in IoT-enabled Smart Metering systems.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#TonyaliASUN18,https://doi.org/10.1016/j.future.2017.04.031 +Giancarlo Fortino,Integration of Cloud computing and body sensor networks.,2014,35,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs35.html#FortinoP14,https://doi.org/10.1016/j.future.2014.02.001 +Zhen Chen,Exploiting Web service geographical neighborhood for collaborative QoS prediction.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#ChenSL17,https://doi.org/10.1016/j.future.2016.09.022 +Long Zheng 0001,Architecture-based design and optimization of genetic algorithms on multi- and many-core systems.,2014,38,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs38.html#ZhengLGGX14,https://doi.org/10.1016/j.future.2013.09.029 +Oscar Ardaiz,Grid-based dynamic service overlays.,2008,24,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs24.html#ArdaizN08,https://doi.org/10.1016/j.future.2008.04.004 +Luis de-la-Fuente-Valentín,Technological support for the enactment of collaborative scripted learning activities across multiple spatial locations.,2014,31,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs31.html#de-la-Fuente-ValentinPHPBK14,https://doi.org/10.1016/j.future.2013.05.007 +Riichiro Mizoguchi,A brief overview of the current status of expert systems in Japan.,1989,5,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs5.html#Mizoguchi89a,https://doi.org/10.1016/0167-739X(89)90014-9 +Rafah M. Almuttairi,A two phased service oriented Broker for replica selection in data grids.,2013,29,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs29.html#AlmuttairiWNRAB13,https://doi.org/10.1016/j.future.2012.09.007 +álvaro Herrero,RT-MOVICAB-IDS: Addressing real-time intrusion detection.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#HerreroNCJ13,https://doi.org/10.1016/j.future.2010.12.017 +K. Lue,Graphics supercomputer benchmark : Basic performance of two graphics supercomputers: Stellar GS1000 and Ardent Titan-2.,1990,5,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs5.html#LueM90,https://doi.org/10.1016/0167-739X(90)90039-G +Luis M. Camarinha-Matos,Execution system for distributed business processes in a virtual enterprise.,2001,17,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs17.html#Camarinha-Matos01,https://doi.org/10.1016/S0167-739X(01)00044-9 +Piotr Mrówczynski,Benchmarking and monitoring framework for interconnected file synchronization and sharing services.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#MrowczynskiMLO18,https://doi.org/10.1016/j.future.2017.03.006 +Ivanoe De Falco,Two new fast heuristics for mapping parallel applications on cloud computing.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#FalcoST14,https://doi.org/10.1016/j.future.2014.02.019 +Jan Prins,A virtual environment for steered molecular dynamics.,1999,15,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs15.html#PrinsHMNS99,https://doi.org/10.1016/S0167-739X(99)00005-9 +Tundong Liu,An energy-efficient task scheduling for mobile devices based on cloud assistant.,2016,61,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs61.html#LiuCMX16,https://doi.org/10.1016/j.future.2016.02.004 +Najla Sassi,DOC-BRelax: A new multi-agent system to solve Distributed Constraint Optimization Problems.,2017,73,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs73.html#SassiSG17,https://doi.org/10.1016/j.future.2016.04.021 +Yin Zhang 0002,iDoctor: Personalized and professionalized medical recommendations based on hybrid matrix factorization.,2017,66,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs66.html#ZhangCHWL17,https://doi.org/10.1016/j.future.2015.12.001 +Péter Kacsuk,Distributed and parallel systems.,2000,16,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs16.html#KacsukK00,https://doi.org/10.1016/S0167-739X(99)00067-9 +Young Choon Lee,Rescheduling for reliable job completion with the support of clouds.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#LeeZ10,https://doi.org/10.1016/j.future.2010.02.010 +Björn Schiemann,A new approach for load balancing in high-performance decision support systems.,1997,12,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs12.html#SchiemannB97,https://doi.org/10.1016/S0167-739X(97)00030-7 +Marian Bubak,Convenient use of legacy software in Java with Janet package.,2001,17,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs17.html#BubakKL01,https://doi.org/10.1016/S0167-739X(01)00041-3 +Pascale Vicat-Blanc Primet,Experiments with equivalent differentiated services in a grid context.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#PrimetEG05,https://doi.org/10.1016/j.future.2004.10.009 +Pascale Vicat-Blanc Primet,Grid high performance networking in the DataGRID project.,2003,19,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs19.html#Vicat-Blanc-Primet03,https://doi.org/10.1016/S0167-739X(02)00146-2 +Sergio Andreozzi,GridICE: a monitoring service for Grid systems.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#AndreozziBFGRTV05,https://doi.org/10.1016/j.future.2004.10.005 +Kuo-Ming Chao,Cloud E-learning for Mechatronics: CLEM.,2015,48,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs48.html#ChaoJNCSMFRBVCC15,https://doi.org/10.1016/j.future.2014.10.033 +Xiaoyong Xu,QoS-guaranteed resource provisioning for cloud-based MapReduce in dynamical environments.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#XuTT18,https://doi.org/10.1016/j.future.2017.08.005 +Azzedine Boukerche,Alternative approaches to multicast group management in large-scale distributed interactive simulation systems.,2006,22,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs22.html#BoukercheDL06,https://doi.org/10.1016/j.future.2006.02.001 +Antonio J. Rubio-Montero,Scheduling multiple virtual environments in cloud federations for distributed calculations.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#Rubio-MonteroHG17,https://doi.org/10.1016/j.future.2016.03.021 +Ahmed Al-Dubi,Special Issue on Ubiquitous Computing and Future Communication Systems.,2014,39,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs39.html#Al-DubiALZ14,https://doi.org/10.1016/j.future.2014.05.003 +Maria Mirto,A Bioinfomatics Grid Alignment Toolkit.,2008,24,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs24.html#MirtoFECMBA08,https://doi.org/10.1016/j.future.2008.02.001 +Hongjuan Li,Secure and energy-efficient data aggregation with malicious aggregator identification in wireless sensor networks.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#LiLQS14,https://doi.org/10.1016/j.future.2013.12.021 +Bin Zhang,The optimization for recurring queries in big data analysis system with MapReduce.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#ZhangWZ18,https://doi.org/10.1016/j.future.2017.09.063 +Shunxiang Zhang,Sentiment analysis of Chinese micro-blog text based on extended sentiment dictionary.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#ZhangWWL18,https://doi.org/10.1016/j.future.2017.09.048 +Shuai Gao,Scalable control plane for intra-domain communication in software defined information centric networking.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#GaoZLZ16,https://doi.org/10.1016/j.future.2015.10.017 +Yongjian Yang,Beaconing Control strategy based on Game Theory in mobile crowdsensing.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#YangLWW18,https://doi.org/10.1016/j.future.2018.04.013 +Alexander Wöhrer,Modeling and optimizing large-scale data flows.,2014,31,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs31.html#WohrerBJM14,https://doi.org/10.1016/j.future.2013.10.004 +Ben Niu 0001,A novel attack to spatial cloaking schemes in location-based services.,2015,49,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs49.html#NiuZLC015,https://doi.org/10.1016/j.future.2014.10.026 +Jean-Marie Cadiou,ESPRIT in action.,1986,2,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs2.html#Cadiou86,https://doi.org/10.1016/0167-739X(86)90039-7 +Ruben Van den Bossche,An evaluation of the benefits of fine-grained value-based scheduling on general purpose clusters.,2011,27,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs27.html#BosscheVB11,https://doi.org/10.1016/j.future.2010.06.009 +Monir Abdullah,Optimal workload allocation model for scheduling divisible data grid applications.,2010,26,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs26.html#AbdullahOIS10,https://doi.org/10.1016/j.future.2010.04.003 +P. M. Meijer,Parallel magnetohydrodynamics on the Cray T3D.,1996,12,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs12.html#MeijerPG96,https://doi.org/10.1016/0167-739X(95)00029-R +Ajit Kumar,FAMOUS: Forensic Analysis of MObile devices Using Scoring of application permissions.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#KumarKA18,https://doi.org/10.1016/j.future.2018.02.001 +Xiaomin Li,Proactive caching for edge computing-enabled industrial mobile wireless networks.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#LiW18,https://doi.org/10.1016/j.future.2018.06.017 +Hong Linh Truong,DIPAS: A distributed performance analysis service for grid service-based workflows.,2009,25,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs25.html#TruongBNF09,https://doi.org/10.1016/j.future.2008.10.005 +Hiroshi Umeo,A duality theorem for two connectivity-preserving parallel shrinking transformations.,2002,18,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs18.html#UmeoM02,https://doi.org/10.1016/S0167-739X(02)00072-9 +Guohua You,A weighted-fair-queuing (WFQ)-based dynamic request scheduling approach in a multi-core system.,2012,28,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs28.html#YouZ12,https://doi.org/10.1016/j.future.2011.07.006 +Dong Xiang,Fault-tolerant routing in hypercubes using partial path set-up.,2006,22,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs22.html#Xiang06,https://doi.org/10.1016/j.future.2006.02.004 +Masahiro Takatsuka,A component-oriented software authoring system for exploratory visualization.,2005,21,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs21.html#Takatsuka05,https://doi.org/10.1016/j.future.2004.04.008 +Long Thai,A survey and taxonomy of resource optimisation for executing bag-of-task applications on public clouds.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#ThaiVB18,https://doi.org/10.1016/j.future.2017.11.038 +Zhen Liu,Extending labeled mobile network traffic data by three levels traffic identification fusion.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#LiuWT18,https://doi.org/10.1016/j.future.2018.05.079 +Rubén Trapero,A novel approach to manage cloud security SLA incidents.,2017,72,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs72.html#TraperoMSTS17,https://doi.org/10.1016/j.future.2016.06.004 +J. Jesu Vedha Nayahi,Privacy and utility preserving data clustering for data anonymization and distribution on Hadoop.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#NayahiK17,https://doi.org/10.1016/j.future.2016.10.022 +Shams Al Ajrawi,Bi-directional channel modeling for implantable UHF-RFID transceivers in brain-computer interface applications.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#AjrawiBSRA18,https://doi.org/10.1016/j.future.2018.03.036 +Hamdi Yahyaoui,A novel non-functional matchmaking approach between fuzzy user queries and real world web services based on rough sets.,2014,35,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs35.html#YahyaouiAO14,https://doi.org/10.1016/j.future.2013.12.033 +Eddy Caron,Design of plug-in schedulers for a GridRPC environment.,2008,24,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs24.html#CaronCDS08,https://doi.org/10.1016/j.future.2007.02.005 +Zhiyuan Shao,VSA: An offline scheduling analyzer for Xen virtual machine monitor.,2013,29,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs29.html#ShaoHLJ13,https://doi.org/10.1016/j.future.2012.12.004 +Ciprian Dobre,Intelligent services for Big Data science.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#DobreX14,https://doi.org/10.1016/j.future.2013.07.014 +Mohamed Abdel-Basset,NMCDA: A framework for evaluating cloud computing services.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#Abdel-BassetMC18,https://doi.org/10.1016/j.future.2018.03.014 +Wei Xing,An ActOn-based semantic information service for Grids.,2010,26,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs26.html#XingCGD10,https://doi.org/10.1016/j.future.2009.10.003 +Paolo D'Onorio De Meo,A high performance grid-web service framework for the identification of 'conserved sequence tags'.,2007,23,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs23.html#MeoCSCGLLRMP07,https://doi.org/10.1016/j.future.2006.07.012 +Yuexin Zhang,A variant of password authenticated key exchange protocol.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#ZhangXWA18,https://doi.org/10.1016/j.future.2017.02.016 +Stephen A. Jarvis,Performance prediction and its use in parallel and distributed computing systems.,2006,22,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs22.html#JarvisSKCSN06,https://doi.org/10.1016/j.future.2006.02.008 +Md. Mahmud Hossain,An Internet of Things-based health prescription assistant and its security system design.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#HossainIAKH18,https://doi.org/10.1016/j.future.2017.11.020 +Zhan Shi 0001,Partitioning dynamic graph asynchronously with distributed FENNEL.,2017,71,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs71.html#ShiLGLFS17,https://doi.org/10.1016/j.future.2017.01.014 +Jorge Merino,A Data Quality in Use model for Big Data.,2016,63,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs63.html#MerinoCRSP16,https://doi.org/10.1016/j.future.2015.11.024 +Martin Polak,Interactive videostreaming visualization on grids.,2008,24,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs24.html#PolakK08,https://doi.org/10.1016/j.future.2007.03.006 +Piotr Wasiewicz,DNA computing: implementation of data flow logical operations.,2001,17,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs17.html#WasiewiczMNMBWP01,https://doi.org/10.1016/S0167-739X(99)00117-X +Abdullah Alamri,The mediator authorization-security model for heterogeneous semantic knowledge bases.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#AlamriBTF16,https://doi.org/10.1016/j.future.2015.03.004 +Jianxin Li,Eagle+: A fast incremental approach to automaton and table online updates for cloud services.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#LiPYHZW18,https://doi.org/10.1016/j.future.2017.02.002 +Gangin Lee,Single-pass based efficient erasable pattern mining using list data structure on dynamic incremental databases.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#LeeY18,https://doi.org/10.1016/j.future.2017.07.035 +Neeraj Yadav,Two-way Ranking Based Service Mapping in Cloud Environment.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#YadavG18,https://doi.org/10.1016/j.future.2017.11.027 +Ralph Vigne,A structured marketplace for arbitrary services.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#VigneMSR12,https://doi.org/10.1016/j.future.2011.05.024 +Rego Granlund,Designing web-based simulation for learning.,2000,17,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs17.html#GranlundBE00,https://doi.org/10.1016/S0167-739X(99)00112-0 +José C. Cunha,Future trends in distributed applications and problem-solving environments.,2005,21,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs21.html#CunhaRM05,https://doi.org/10.1016/j.future.2003.12.015 +Jiuyuan Huo,An improved multi-cores parallel artificial Bee colony optimization algorithm for parameters calibration of hydrological model.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#HuoLZ18,https://doi.org/10.1016/j.future.2017.07.020 +Lanxiang Chen,Using algebraic signatures to check data possession in cloud storage.,2013,29,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs29.html#Chen13,https://doi.org/10.1016/j.future.2012.01.004 +Pinar Alper,Static analysis of Taverna workflows to predict provenance patterns.,2017,75,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs75.html#AlperBG17,https://doi.org/10.1016/j.future.2017.01.004 +Rafael Ferreira da Silva,A characterization of workflow management systems for extreme-scale applications.,2017,75,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs75.html#SilvaFPJSD17,https://doi.org/10.1016/j.future.2017.02.026 +Chen Gu,A decision theoretic framework for selecting source location privacy aware routing protocols in wireless sensor networks.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#GuBKJ18,https://doi.org/10.1016/j.future.2018.01.046 +Boris Vaisband,Heterogeneous 3-D ICs as a platform for hybrid energy harvesting in IoT systems.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#VaisbandF18,https://doi.org/10.1016/j.future.2018.04.092 +Gao Jun,Newton-Gauss curvature matrix based cDBN for online edible fungus drying prediction model.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#Jun18,https://doi.org/10.1016/j.future.2017.10.004 +Yongsheng Hao,An enhanced load balancing mechanism based on deadline control on GridSim.,2012,28,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs28.html#HaoLW12,https://doi.org/10.1016/j.future.2011.10.010 +J. H. J. van Opheusden,Induced flocculation of casein micelles: A Brownian Dynamics simulation on the Parsytec GCel MPP.,1995,11,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs11.html#OpheusdenB95,https://doi.org/10.1016/0167-739X(94)00053-H +Florin Pop,MidHDC: Advanced Topics on Middleware Services for Heterogeneous Distributed Computing. Part 1.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#PopZY16,https://doi.org/10.1016/j.future.2015.11.020 +Nikola Rajovic,Tibidabo: Making the case for an ARM-based HPC system.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#RajovicRPAR14,https://doi.org/10.1016/j.future.2013.07.013 +Claudio M. de Farias,COMFIT: A development environment for the Internet of Things.,2017,75,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs75.html#FariasBPDPRSCB17,https://doi.org/10.1016/j.future.2016.06.031 +Aske Plaat,Sensitivity of parallel applications to large differences in bandwidth and latency in two-layer interconnects.,2001,17,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs17.html#PlaatBHK01,https://doi.org/10.1016/S0167-739X(00)00103-5 +Manish Parashar,Application of Grid-enabled technologies for solving optimization problems in data-driven reservoir studies.,2005,21,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs21.html#ParasharKCKBMSW05,https://doi.org/10.1016/j.future.2004.09.028 +Antony Antony,Exploring practical limitations of TCP over transatlantic networks.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#AntonyBLL05,https://doi.org/10.1016/j.future.2004.10.004 +Anna Divoli,Special Issue on Advances in Computer Supported Collaboration: Systems and Technologies.,2014,31,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs31.html#DivoliPDS14,https://doi.org/10.1016/j.future.2013.11.001 +Pere-Pau Vázquez,Bandwidth reduction for remote navigation systems through view prediction and progressive transmission.,2004,20,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs20.html#VazquezS04,https://doi.org/10.1016/j.future.2004.05.030 +P. Victer Paul,QoS enhancements for global replication management in peer to peer networks.,2012,28,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs28.html#PaulSJDB12,https://doi.org/10.1016/j.future.2011.02.011 +Gregory Katsaros,A service framework for energy-aware monitoring and VM management in Clouds.,2013,29,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs29.html#KatsarosSFGGE13,https://doi.org/10.1016/j.future.2012.12.006 +Bahman Javadi,Analytical communication networks model for enterprise Grid computing.,2007,23,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs23.html#JavadiAA07,https://doi.org/10.1016/j.future.2006.11.002 +Lei Yu,Service composition based on multi-agent in the cooperative game.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#YuZ17,https://doi.org/10.1016/j.future.2016.06.039 +Aniello Castiglione,Exploiting mean field analysis to model performances of big data architectures.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#CastiglioneGIP14,https://doi.org/10.1016/j.future.2013.07.016 +Steven S. W. Lee,Link weight assignment and loop-free routing table update for link state routing protocols in energy-aware internet.,2012,28,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs28.html#LeeTC12,https://doi.org/10.1016/j.future.2011.05.003 +Achour Mostéfaoui,An introduction to oracles for asynchronous distributed systems.,2002,18,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs18.html#MostefaouiMR02,https://doi.org/10.1016/S0167-739X(02)00048-1 +Kun Huang 0003,DHT-based lightweight broadcast algorithms in large-scale computing infrastructures.,2010,26,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs26.html#HuangZ10,https://doi.org/10.1016/j.future.2009.08.013 +Asdrúbal López Chau,Support vector machine classification for large datasets using decision tree and Fisher linear discriminant.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#ChauL014,https://doi.org/10.1016/j.future.2013.06.021 +Chiara Curti,On advance reservation of heterogeneous network paths.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#CurtiFGORGV05,https://doi.org/10.1016/j.future.2004.10.001 +Hamed Haddad Pajouh,A deep Recurrent Neural Network based approach for Internet of Things malware threat hunting.,2018,85,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs85.html#PajouhDKC18,https://doi.org/10.1016/j.future.2018.03.007 +Luca Dieci,Continuation of eigendecomposition.,2003,19,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs19.html#DieciP03,https://doi.org/10.1016/S0167-739X(03)00039-6 +Muhammad Atif,Adaptive parallel application resource remapping through the live migration of virtual machines.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#AtifS14,https://doi.org/10.1016/j.future.2013.06.028 +Oscar Chinellato,Computation of optical modes in axisymmetric open cavity resonators.,2005,21,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs21.html#ChinellatoASW05,https://doi.org/10.1016/j.future.2004.09.008 +Zhaofeng Ma,Blockchain for digital rights management.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#MaJGW18,https://doi.org/10.1016/j.future.2018.07.029 +Chris Walton,An abstract machine model of dynamic module replacement.,2000,16,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs16.html#WaltonKG00,https://doi.org/10.1016/S0167-739X(99)00091-6 +Mao Lin Huang,A novel virtual node approach for interactive visual analytics of big datasets in parallel coordinates.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#HuangHZ16,https://doi.org/10.1016/j.future.2015.02.003 +Fabio Martinelli,On usage control for GRID systems.,2010,26,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs26.html#MartinelliM10,https://doi.org/10.1016/j.future.2009.12.005 +Yupeng Wang,Performance analysis of smart cultural heritage protection oriented wireless networks.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#WangDJC18,https://doi.org/10.1016/j.future.2017.04.007 +Marco Gribaudo,Improving reliability and performances in large scale distributed applications with erasure codes and replication.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#GribaudoIM16,https://doi.org/10.1016/j.future.2015.07.006 +Sucha Smanchat,Taxonomies of workflow scheduling problem and techniques in the cloud.,2015,52,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs52.html#SmanchatV15,https://doi.org/10.1016/j.future.2015.04.019 +Olivier Temam,Software assistance for data caches.,1995,11,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs11.html#TemamD95,https://doi.org/10.1016/0167-739X(95)00022-K +Xiao Zhu,Revisiting swapping in mobile systems with SwapBench.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#ZhuLLZLQSS17,https://doi.org/10.1016/j.future.2016.05.026 +Giuliano Taffoni,Enabling Grid technologies for Planck space mission.,2007,23,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs23.html#TaffoniMVCSZP07,https://doi.org/10.1016/j.future.2006.04.020 +Gianluca Dini,A secure and available electronic voting service for a large-scale distributed system.,2003,19,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs19.html#Dini03,https://doi.org/10.1016/S0167-739X(02)00109-7 +Arvind Pillai,Local diagonal extrema number pattern: A new feature descriptor for face recognition.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#PillaiSSSJK18,https://doi.org/10.1016/j.future.2017.09.055 +Valeria Cardellini,Decentralized self-adaptation for elastic Data Stream Processing.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#CardelliniPNR18,https://doi.org/10.1016/j.future.2018.05.025 +Dimosthenis Kyriazis,Cloud forward: From distributed to complete computing.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#KyriazisJ18,https://doi.org/10.1016/j.future.2017.09.011 +Livio Baldi,Microelectronics trends.,1991,7,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs7.html#Baldi91,https://doi.org/10.1016/0167-739X(91)90011-L +Alessio Botta,Integration of Cloud computing and Internet of Things: A survey.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#BottaDPP16,https://doi.org/10.1016/j.future.2015.09.021 +M. Hakki Eres,Implementation and utilisation of a Grid-enabled problem solving environment in Matlab.,2005,21,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs21.html#EresPJWXKC05,https://doi.org/10.1016/j.future.2003.12.016 +Lifeng Ai,Partitioning composite web services for decentralized execution using a genetic algorithm.,2011,27,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs27.html#AiTF11,https://doi.org/10.1016/j.future.2010.08.003 +Yasuo Suzuki,DYMOS (Dynamic MOnitoring System): Monitoring and real time fault diagnosis system for a ship's propelling plant.,1989,5,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs5.html#Suzuki89,https://doi.org/10.1016/0167-739X(89)90022-8 +Youhui Zhang,Automatic software deployment using user-level virtualization for cloud-computing.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#ZhangLZ13,https://doi.org/10.1016/j.future.2011.08.012 +Rubing Duan,A sequential cooperative game theoretic approach to scheduling multiple large-scale applications in grids.,2014,30,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs30.html#DuanPL14,https://doi.org/10.1016/j.future.2013.09.001 +Yu Lu,Exploring finger vein based personal authentication for secure IoT.,2017,77,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs77.html#LuWFXYP17,https://doi.org/10.1016/j.future.2017.07.013 +Nicola Zingirian,Efficiency of standard software architectures for Java-based access to remote databases.,1999,15,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs15.html#ZingirianMN99,https://doi.org/10.1016/S0167-739X(98)00085-5 +Joanna Kolodziej,Enhancing the genetic-based scheduling in computational grids by a structured hierarchical population.,2011,27,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs27.html#KolodziejX11,https://doi.org/10.1016/j.future.2011.04.011 +Miguel ángel Rodríguez-García,Creating a semantically-enhanced cloud services environment through ontology evolution.,2014,32,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs32.html#Rodriguez-GarciaVSZ14,https://doi.org/10.1016/j.future.2013.08.003 +Thomas Voith,Quality of service provisioning for distributed data center inter-connectivity enabled by network virtualization.,2012,28,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs28.html#VoithOS12,https://doi.org/10.1016/j.future.2011.03.011 +Liangliang Li,Clause representations in a compiler-based prolog database.,1990,6,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs6.html#LiC90a,https://doi.org/10.1016/0167-739X(90)90005-X +Alexandre Tiskin,Communication-efficient parallel generic pairwise elimination.,2007,23,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs23.html#Tiskin07,https://doi.org/10.1016/j.future.2006.04.017 +Chris Walshaw,Multilevel mesh partitioning for heterogeneous communication networks.,2001,17,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs17.html#WalshawC01,https://doi.org/10.1016/S0167-739X(00)00107-2 +Ralph Koning,Using ontologies for resource description in the CineGrid Exchange.,2011,27,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs27.html#KoningGL11,https://doi.org/10.1016/j.future.2010.11.027 +Hamza Turabieh,Dynamic L-RNN recovery of missing data in IoMT applications.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#TurabiehSA18,https://doi.org/10.1016/j.future.2018.07.006 +Ruay-Shiung Chang,Special Section: Grid and pervasive computing (selected papers from 2010 International Conference on Grid and Pervasive Computing).,2011,27,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs27.html#ChangC11,https://doi.org/10.1016/j.future.2010.09.010 +Rodrigo Bonacin,Special issue on Semantic Technologies for Collaborative Web.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#BonacinDFNS16,https://doi.org/10.1016/j.future.2015.06.010 +Ben van Werkhoven,Optimizing convolution operations on GPUs using adaptive tiling.,2014,30,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs30.html#WerkhovenMBS14,https://doi.org/10.1016/j.future.2013.09.003 +Jinguang Han,Identity-based data storage in cloud computing.,2013,29,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs29.html#HanSM13,https://doi.org/10.1016/j.future.2012.07.010 +Chung-Sheng Li,Composable architecture for rack scale big data computing.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#LiFPAKC17,https://doi.org/10.1016/j.future.2016.07.014 +Jean-Philippe Martin-Flatin,High-speed networks and services for data-intensive Grids: The DataTAG Project.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#Martin-FlatinP05,https://doi.org/10.1016/j.future.2005.01.001 +Neeraj Kumar 0001,Capacity and load-aware service discovery with service selection in peer-to-peer grids.,2012,28,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs28.html#KumarIC12,https://doi.org/10.1016/j.future.2011.11.008 +Adam Visegradi,Efficient extension of gLite VOs with BOINC based desktop grids.,2014,32,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs32.html#VisegradiKK14,https://doi.org/10.1016/j.future.2013.10.012 +Valerio Persico,Benchmarking big data architectures for social networks data processing using public cloud platforms.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#PersicoPPS18,https://doi.org/10.1016/j.future.2018.05.068 +Azadeh Faroughi,CANF: Clustering and anomaly detection method using nearest and farthest neighbor.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#FaroughiJ18,https://doi.org/10.1016/j.future.2018.06.031 +T. Collette,SYMPATIX: A SIMD computer performing the low and intermediate levels of image processing.,1994,10,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs10.html#ColletteEJK94,https://doi.org/10.1016/0167-739X(94)90047-7 +Piero Spinnato,Special section on networks for grid applications.,2009,25,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs25.html#SpinnatoPEW09,https://doi.org/10.1016/j.future.2009.03.006 +Ulrich Lang,CORBA security on the web - an overview.,2000,16,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs16.html#Lang00,https://doi.org/10.1016/S0167-739X(99)00065-5 +Shunichi Uchida,Parallel inference machines at ICOT.,1987,3,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs3.html#Uchida87,https://doi.org/10.1016/0167-739X(87)90028-8 +Chang Liu 0001,External integrity verification for outsourced big data in cloud and IoT: A big picture.,2015,49,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs49.html#LiuYZC15,https://doi.org/10.1016/j.future.2014.08.007 +Ciprian-Octavian Truica,Benchmarking top-k keyword and top-k document processing with T2K2 and T2K2D2.,2018,85,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs85.html#TruicaDBR18,https://doi.org/10.1016/j.future.2018.02.037 +Chao-Chin Wu,An integrated security-aware job scheduling strategy for large-scale computational grids.,2010,26,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs26.html#WuS10,https://doi.org/10.1016/j.future.2009.08.004 +Ming Tang,The impact of data replication on job scheduling performance in the Data Grid.,2006,22,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs22.html#TangLTY06,https://doi.org/10.1016/j.future.2005.08.004 +Tadeusz Szuba,A formal definition of the phenomenon of collective intelligence and its IQ measure.,2001,17,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs17.html#Szuba01,https://doi.org/10.1016/S0167-739X(99)00136-3 +Iuon-Chang Lin,A new remote user authentication scheme for multi-server architecture.,2003,19,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs19.html#LinHL03,https://doi.org/10.1016/S0167-739X(02)00093-6 +Shao-Jun Yang,Certain types of M-fuzzifying matroids: A fundamental look at the security protocols in RFID and IoT.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#YangH18,https://doi.org/10.1016/j.future.2018.04.028 +Jean-François Scariot,NetSEC: metrology-based application for network security.,2003,19,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs19.html#ScariotM03,https://doi.org/10.1016/S0167-739X(02)00155-3 +Vladimir Penenko,Methods of sensitivity theory and inverse modeling for estimation of source parameters.,2002,18,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs18.html#PenenkoBT02,https://doi.org/10.1016/S0167-739X(02)00031-6 +Hassen Riahi,Integration of end-user Cloud storage for CMS analysis.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#RiahiAABCHKMMMM18,https://doi.org/10.1016/j.future.2017.04.021 +Timo van Kessel,User transparent data and task parallel multimedia computing with Pyxis-DT.,2013,29,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs29.html#KesselWDMBS13,https://doi.org/10.1016/j.future.2013.06.005 +Feroz Zahid,Efficient network isolation and load balancing in multi-tenant HPC clusters.,2017,72,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs72.html#ZahidGBJS17,https://doi.org/10.1016/j.future.2016.04.003 +Hugo Meyer,Optical packet switching in HPC. An analysis of applications performance.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#MeyerSMMC18,https://doi.org/10.1016/j.future.2017.02.041 +Jörn Gehring,MARS - A framework for minimizing the job execution time in a metacomputing environment.,1996,12,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs12.html#GehringR96,https://doi.org/10.1016/0167-739X(95)00037-S +Chiara Bodei,Flow logic for Dolev-Yao secrecy in cryptographic processes.,2002,18,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs18.html#BodeiDNN02,https://doi.org/10.1016/S0167-739X(02)00047-X +Yijun Mo,Event recommendation in social networks based on reverse random walk and participant scale control.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#MoLWYX18,https://doi.org/10.1016/j.future.2017.02.045 +Edmund H. Durfee,Using hybrid scheduling for the semi-autonomous formation of expert teams.,2014,31,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs31.html#DurfeeBS14,https://doi.org/10.1016/j.future.2013.04.008 +Prosanta Gope,Lightweight and privacy-preserving RFID authentication scheme for distributed IoT infrastructure with secure localization services for smart city environment.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#GopeAIKB18,https://doi.org/10.1016/j.future.2017.06.023 +Chao Xu 0003,Affective experience modeling based on interactive synergetic dependence in big data.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#0003FM16,https://doi.org/10.1016/j.future.2015.02.008 +Gustavo Gonzalez Granadillo,Dynamic risk management response system to handle cyber threats.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#GranadilloDMGAM18,https://doi.org/10.1016/j.future.2017.05.043 +R. C. Braun,Parallelization of local BLAST service on workstation clusters.,2001,17,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs17.html#BraunPCSBR01,https://doi.org/10.1016/S0167-739X(00)00057-1 +CongDuc Pham,Grid infrastructures: practice and perspectives.,2005,21,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs21.html#PhamT05,https://doi.org/10.1016/j.future.2003.10.001 +Georgios Exarchakos,Cooperative stalking of transient nomadic resources on overlay networks.,2013,29,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs29.html#ExarchakosA13,https://doi.org/10.1016/j.future.2012.12.008 +Djamila Bendouda,Programmable architecture based on Software Defined Network for Internet of Things: Connected Dominated Sets approach.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#BendoudaRH18,https://doi.org/10.1016/j.future.2017.09.070 +Yacine Kessaci,A multi-start local search heuristic for an energy efficient VMs assignment on top of the OpenNebula cloud manager.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#KessaciMT14,https://doi.org/10.1016/j.future.2013.07.007 +Giovanni Aloisio,An XML architecture for high-performance web-based analysis of remote-sensing archives.,1999,16,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs16.html#AloisioMW99,https://doi.org/10.1016/S0167-739X(99)00038-2 +Tolga Dalman,Cloud MapReduce for Monte Carlo bootstrap applied to Metabolic Flux Analysis.,2013,29,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs29.html#DalmanDJWWNF13,https://doi.org/10.1016/j.future.2011.10.007 +Jin Zheng,Auction-based adaptive sensor activation algorithm for target tracking in wireless sensor networks.,2014,39,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs39.html#ZhengBLXW14,https://doi.org/10.1016/j.future.2013.12.014 +Yufeng Wang,Poisonedwater: An improved approach for accurate reputation ranking in P2P networks.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#WangN10,https://doi.org/10.1016/j.future.2009.05.001 +Yi Zhou,Parallel ant colony optimization on multi-core SIMD CPUs.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#ZhouHHQ18,https://doi.org/10.1016/j.future.2017.09.073 +Hadi Salimi,Batch scheduling of consolidated virtual machines based on their workload interference model.,2013,29,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs29.html#SalimiS13,https://doi.org/10.1016/j.future.2013.02.005 +Geoffrey C. Fox,Message-based cellular peer-to-peer grids: foundations for secure federation and autonomic services.,2005,21,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs21.html#FoxLPP05,https://doi.org/10.1016/j.future.2004.04.010 +Charilaos C. Zarakovitis,A performance comparative study on the implementation methods for OFDMA cross-layer optimization.,2012,28,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs28.html#ZarakovitisN12,https://doi.org/10.1016/j.future.2011.10.008 +Mingdong Tang,Towards a trust evaluation middleware for cloud service selection.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#TangDLC17,https://doi.org/10.1016/j.future.2016.01.009 +Florin Pop,MidHDC: Advanced topics on middleware services for heterogeneous distributed computing. Part 2.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#PopZY17,https://doi.org/10.1016/j.future.2017.05.010 +Radu Tudoran,JetStream: Enabling high throughput live event streaming on multi-site clouds.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#TudoranCNSSA16,https://doi.org/10.1016/j.future.2015.01.016 +Zuoxia Yu,Towards leakage-resilient fine-grained access control in fog computing.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#YuAXYH18,https://doi.org/10.1016/j.future.2017.01.025 +Geyong Min,Special section: Systems performance analysis and evaluation.,2006,22,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs22.html#MinO06,https://doi.org/10.1016/j.future.2006.02.010 +Manuel Pérez,Locally constrained synthetic LoDs generation for natural terrain meshes.,2004,20,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs20.html#PerezFMC04,https://doi.org/10.1016/j.future.2004.07.001 +Masao Kato,An overview of NTTs digital transmission networks - existing and planned.,1985,1,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs1.html#KatoY85,https://doi.org/10.1016/0167-739X(85)90004-4 +Juliana Oliveira de Carvalho,Evolutionary solutions for resources management in multiple clouds: State-of-the-art and future directions.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#CarvalhoTVC18,https://doi.org/10.1016/j.future.2018.05.087 +Peter V. Coveney,Large scale computational science on federated international grids: The role of switched optical networks.,2010,26,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs26.html#CoveneyGJMMPSSSTZ10,https://doi.org/10.1016/j.future.2008.09.013 +Andrew A. Chien,Integrated resource management for lambda-grids: The Distributed Virtual Computer (DVC).,2009,25,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs25.html#ChienT09,https://doi.org/10.1016/j.future.2008.07.007 +Victor A. E. de Farias,Regression based performance modeling and provisioning for NoSQL cloud databases.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#FariasSMGM18,https://doi.org/10.1016/j.future.2017.08.061 +Brahim Hamid,A model-driven approach for developing a model repository: Methodology and tool support.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#Hamid17,https://doi.org/10.1016/j.future.2016.04.018 +Ahmad Chadi Aljundi,A universal performance factor for multi-criteria evaluation of multistage interconnection networks.,2006,22,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs22.html#AljundiDKS06,https://doi.org/10.1016/j.future.2006.02.016 +Wei Zhou,Detection and defense of application-layer DDoS attacks in backbone web traffic.,2014,38,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs38.html#ZhouJWXZ14,https://doi.org/10.1016/j.future.2013.08.002 +Fang Dong,An effective data aggregation based adaptive long term CPU load prediction mechanism on computational grid.,2012,28,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs28.html#DongLSCS12,https://doi.org/10.1016/j.future.2011.10.014 +Hans-Georg Pagendarm,Visualization within environments supporting human communication.,1999,15,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs15.html#Pagendarm99,https://doi.org/10.1016/S0167-739X(98)00052-1 +Adil Fahad,PPFSCADA: Privacy preserving framework for SCADA data publishing.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#FahadTAGKM14,https://doi.org/10.1016/j.future.2014.03.002 +Gongming Li,Efficient execution of speculative threads and transactions with hardware transactional memory.,2014,30,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs30.html#LiALDD14,https://doi.org/10.1016/j.future.2013.06.017 +Efthymia Tsamoura,Decentralized execution of linear workflows over web services.,2011,27,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs27.html#TsamouraGM11,https://doi.org/10.1016/j.future.2010.07.009 +Christophe Soares,A graph-based approach for interference free integration of commercial off-the-shelf elements in pervasive computing systems.,2014,39,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs39.html#SoaresMMTS14,https://doi.org/10.1016/j.future.2013.12.035 +M. T. Chu,On robust matrix completion with prescribed eigenvalues.,2003,19,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs19.html#ChuDS03,https://doi.org/10.1016/S0167-739X(03)00040-2 +Xiaobo Yang,The Cambridge CFD grid for large-scale distributed CFD applications.,2005,21,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs21.html#YangHJC05,https://doi.org/10.1016/j.future.2004.09.012 +,To the Readers.,2005,21,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs21.html#X05,https://doi.org/10.1016/S0167-739X(05)00059-2 +Saurabh Kumar Garg,A framework for ranking of cloud computing services.,2013,29,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs29.html#GargVB13,https://doi.org/10.1016/j.future.2012.06.006 +Li Chunlin,Competitive proportional resource allocation policy for computational grid.,2004,20,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs20.html#LiL04,https://doi.org/10.1016/j.future.2003.11.029 +Xianglin Wei,Collaborative mobile jammer tracking in Multi-Hop Wireless Network.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#WeiWTF18,https://doi.org/10.1016/j.future.2016.11.032 +Andreas Schreiber,A problem solving environment for multidisciplinary coupled simulations in computational grids.,2005,21,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs21.html#SchreiberMK05,https://doi.org/10.1016/j.future.2003.10.009 +Hiroshi Kashiwagi,The Japanese super-speed computer project.,1985,1,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs1.html#Kashiwagi85,https://doi.org/10.1016/0167-739X(85)90016-0 +Victor E. Malyshkin,Parallel computing technologies.,2002,18,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs18.html#Malyshkin02,https://doi.org/10.1016/S0167-739X(02)00045-6 +Joe Mambretti,High Performance Digital Media Network (HPDMnet): An advanced international research initiative and global experimental testbed.,2011,27,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs27.html#MambrettiLCGTBHSLPCYFMSEGJBKa11,https://doi.org/10.1016/j.future.2010.12.012 +Won Kim 0002,Inference of recommendation information on the internet using improved FAM.,2004,20,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs20.html#KimKYK04,https://doi.org/10.1016/S0167-739X(03)00142-0 +Bernard Goossens,The instruction register file micro-architecture.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#GoossensD05,https://doi.org/10.1016/j.future.2004.05.017 +Osamu Ammae,Unobtrusive detection of body movements during sleep using Wi-Fi received signal strength with model adaptation technique.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#AmmaeKM18,https://doi.org/10.1016/j.future.2017.03.022 +Michiyoshi Kuwahara,Medical image processing: An overview of and case study in the diagnosis of cardiac diseases.,1985,1,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs1.html#KuwaharaE85,https://doi.org/10.1016/0167-739X(85)90006-8 +H. Howie Huang,A control-theoretic approach to automated local policy enforcement in computational grids.,2010,26,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs26.html#Huang10,https://doi.org/10.1016/j.future.2010.02.012 +Jeff Magee,A configuration approach to parallel programming.,1992,8,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs8.html#MageeD92,https://doi.org/10.1016/0167-739X(92)90067-L +Zehua Guo 0001,Balancing flow table occupancy and link utilization in software-defined networks.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#GuoXLGCWC18,https://doi.org/10.1016/j.future.2018.06.011 +Michael S. H. Heng,Why evolutionary development of expert systems appears to work.,1987,3,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs3.html#Heng87,https://doi.org/10.1016/0167-739X(87)90003-3 +David Vengerov,A gradient-based reinforcement learning approach to dynamic pricing in partially-observable environments.,2008,24,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs24.html#Vengerov08,https://doi.org/10.1016/j.future.2008.02.012 +Yong Yu,On the security of auditing mechanisms for secure cloud storage.,2014,30,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs30.html#YuNYMS14,https://doi.org/10.1016/j.future.2013.05.005 +Steve Larkin,Libraries to support distribution and processing of visualization data sets.,1997,12,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs12.html#LarkinGH97,https://doi.org/10.1016/S0167-739X(97)83342-0 +Marie-Aude Aufaure,From Business Intelligence to semantic data stream management.,2016,63,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs63.html#AufaureCCKK16,https://doi.org/10.1016/j.future.2015.11.015 +Masoom Alam,Secure policy execution using reusable garbled circuit in the cloud.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#AlamEKKJCB18,https://doi.org/10.1016/j.future.2017.12.067 +Xingang Liu,A novel face recognition algorithm via weighted kernel sparse representation.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#LiuLSL18,https://doi.org/10.1016/j.future.2016.07.007 +Yi Liu 0029,Secure and fine-grained access control on e-healthcare records in mobile cloud computing.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#LiuZLL18,https://doi.org/10.1016/j.future.2016.12.027 +Guodong Wang 0002,AppTCP: The design and evaluation of application-based TCP for e-VLBI in fast long distance networks.,2014,39,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs39.html#WangWDRL14,https://doi.org/10.1016/j.future.2013.12.016 +Xi Xiao,CenLocShare: A centralized privacy-preserving location-sharing system for mobile online social networks.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#XiaoCSHYJ18,https://doi.org/10.1016/j.future.2017.01.035 +Zhiyi Hwang,A compiling approach for exploiting AND-parallelism in logic programs.,1990,6,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs6.html#HwangH90,https://doi.org/10.1016/0167-739X(90)90007-Z +Sanguthevar Rajasekaran,Special section on invited papers from NetCoM-2009.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#RajasekaranW13,https://doi.org/10.1016/j.future.2012.05.020 +Xiuting Tao,A game-theoretic model and analysis of data exchange protocols for Internet of Things in clouds.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#TaoLSC17,https://doi.org/10.1016/j.future.2016.12.030 +Wen-Chung Shih,Ontology-based content organization and retrieval for SCORM-compliant teaching materials in data grids.,2009,25,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs25.html#ShihYT09,https://doi.org/10.1016/j.future.2009.01.005 +Md. Abdul Hamid,A key distribution scheme for secure communication in acoustic sensor networks.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#HamidAHAAKM18,https://doi.org/10.1016/j.future.2017.07.025 +John K. Tarus,A hybrid knowledge-based recommender system for e-learning based on ontology and sequential pattern mining.,2017,72,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs72.html#TarusNY17,https://doi.org/10.1016/j.future.2017.02.049 +Victor Chang,"Corrigendum to ""The business intelligence as a service in the cloud"" [Future Gener. Comput. Systems 37C (2014) 512-534].",2014,41,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs41.html#Chang14a,https://doi.org/10.1016/j.future.2014.08.001 +Jianhao Ding,An adaptive control momentum method as an optimizer in the cloud.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#DingHL18,https://doi.org/10.1016/j.future.2018.06.039 +Václav Snásel,Geometrical and topological approaches to Big Data.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#SnaselNXB17,https://doi.org/10.1016/j.future.2016.06.005 +Anthony Simonet,Active Data: A programming model to manage data life cycle across heterogeneous systems and infrastructures.,2015,53,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs53.html#SimonetFR15,https://doi.org/10.1016/j.future.2015.05.015 +M. Eduard Gröller,Visualization of dynamical systems.,1999,15,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs15.html#GrollerLW99,https://doi.org/10.1016/S0167-739X(98)00054-5 +Dayong Gao,Neural networks for event extraction from time series: a back propagation algorithm approach.,2005,21,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs21.html#GaoKIZ05,https://doi.org/10.1016/j.future.2004.03.009 +El-Ghazali Talbi,Parallel Ant Colonies for the quadratic assignment problem.,2001,17,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs17.html#TalbiRFR01,https://doi.org/10.1016/S0167-739X(99)00124-7 +Hatem Ben Sta,"Quality and the efficiency of data in ""Smart-Cities"".",2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#Sta17,https://doi.org/10.1016/j.future.2016.12.021 +Aart J. C. Bik,Iteration space partitioning.,1997,12,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs12.html#BikW97,https://doi.org/10.1016/S0167-739X(96)00027-1 +Francisco José García-Peñalvo,Informal learning recognition through a cloud ecosystem.,2014,32,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs32.html#PenalvoJAMG14,https://doi.org/10.1016/j.future.2013.08.004 +Yulai Yuan,VDB-MR: MapReduce-based distributed data integration using virtual database.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#YuanWFLYZ10,https://doi.org/10.1016/j.future.2010.04.001 +Yongli Cheng,A highly cost-effective task scheduling strategy for very large graph computation.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#ChengWJHFWZG18,https://doi.org/10.1016/j.future.2018.07.010 +Lan Wang,Advances in ubiquitous computing and communications.,2014,38,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs38.html#WangQ14,https://doi.org/10.1016/j.future.2014.04.005 +Christèle Faure,An automatic differentiation platform: Odyssée .,2005,21,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs21.html#Faure05,https://doi.org/10.1016/j.future.2004.11.006 +Jakub T. Moscicki,Processing moldable tasks on the grid: Late job binding with lightweight user-level overlay.,2011,27,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs27.html#MoscickiLBS11,https://doi.org/10.1016/j.future.2011.02.002 +Martin Alt,Adapting Java RMI for grid computing.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#AltG05,https://doi.org/10.1016/j.future.2004.05.010 +Sarbani Roy,Efficient resource management for running multiple concurrent jobs in a computational grid environment.,2011,27,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs27.html#RoyM11,https://doi.org/10.1016/j.future.2011.04.008 +Jirí Nedoma,On a solvability of contact problems with visco-plastic friction in the thermo-visco-plastic Bingham rheology.,2006,22,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs22.html#Nedoma06,https://doi.org/10.1016/j.future.2005.04.010 +Hans-Peter Wiendahl,Trends in computer-integrated manufacturing.,1991,7,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs7.html#WiendahlG91,https://doi.org/10.1016/0167-739X(91)90020-X +Alejandro Maté,A hybrid integrated architecture for energy consumption prediction.,2016,63,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs63.html#MatePFGT16,https://doi.org/10.1016/j.future.2016.03.020 +Vladislav A. Karbovskii,Multimodel agent-based simulation environment for mass-gatherings and pedestrian dynamics.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#KarbovskiiVKBG18,https://doi.org/10.1016/j.future.2016.10.002 +Christian Wieners,Distributed Point Objects: A new concept for parallel finite elements applied to a geomechanical problem.,2006,22,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs22.html#WienersAE06,https://doi.org/10.1016/j.future.2005.04.009 +Adriana Iamnitchi,P2P computing and interaction with grids.,2005,21,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs21.html#IamnitchiT05,https://doi.org/10.1016/j.future.2004.04.012 +Laizhong Cui,A novel context-aware recommendation algorithm with two-level SVD in social networks.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#CuiHYYWL18,https://doi.org/10.1016/j.future.2017.07.017 +Richard Olejnik,Special section: Grid-like distributed computing in amorphous networks.,2007,23,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs23.html#Olejnik07,https://doi.org/10.1016/j.future.2007.04.004 +Farag Azzedin,Modeling BitTorrent choking algorithm using game theory.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#AzzedinY16,https://doi.org/10.1016/j.future.2015.02.007 +Joseph P. Macker,Orchestration and analysis of decentralized workflows within heterogeneous networking infrastructures.,2017,75,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs75.html#MackerT17,https://doi.org/10.1016/j.future.2017.01.007 +Y. Sreenivasa Rao,A secure and efficient Ciphertext-Policy Attribute-Based Signcryption for Personal Health Records sharing in cloud computing.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#Rao17,https://doi.org/10.1016/j.future.2016.07.019 +Daniel Etiemble,Parallel architecture and language in Europe.,1994,10,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs10.html#EtiembleS94,https://doi.org/10.1016/0167-739X(94)90046-9 +XinDi Ma,ARMOR: A trust-based privacy-preserving framework for decentralized friend recommendation in online social networks.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#MaMLJG18,https://doi.org/10.1016/j.future.2017.09.060 +Paolo Trunfio,Peer-to-Peer resource discovery in Grids: Models and systems.,2007,23,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs23.html#TrunfioTPFMPPVH07,https://doi.org/10.1016/j.future.2006.12.003 +Chong Zhang,TeraScope: distributed visual data mining of terascale data sets over photonic networks.,2003,19,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs19.html#ZhangLDMG03,https://doi.org/10.1016/S0167-739X(03)00072-4 +Arjan J. H. Peddemors,A high performance distributed database system for enhanced Internet services.,1999,15,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs15.html#PeddemorsH99,https://doi.org/10.1016/S0167-739X(98)00084-3 +Nouredine Melab,Multi-core versus many-core computing for many-task Branch-and-Bound applied to big optimization problems.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#MelabGMT18,https://doi.org/10.1016/j.future.2016.12.039 +Johannes Linden,Scalability aspects of parallel multigrid.,1994,10,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs10.html#LindenLRS94,https://doi.org/10.1016/0167-739X(94)90007-8 +Shahrouz Aliabadi,Parallel simulation of flows in open channels.,2002,18,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs18.html#AliabadiJZAB02,https://doi.org/10.1016/S0167-739X(01)00062-0 +Craig Anderson 0001,Two techniques for improving performance on bus-based multiprocessors.,1995,11,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs11.html#AndersonB95,https://doi.org/10.1016/0167-739X(95)00023-L +Rongjun Xie,Fast and peer-to-peer vital signal learning system for cloud-based healthcare.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#XieKBA18,https://doi.org/10.1016/j.future.2018.05.042 +John D. Garofalakis,An analytical model for the performance evaluation of multistage interconnection networks with two class priorities.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#GarofalakisS13,https://doi.org/10.1016/j.future.2012.05.014 +Maciej Drozdowski,Energy trade-offs analysis using equal-energy maps.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#DrozdowskiMM14,https://doi.org/10.1016/j.future.2013.07.004 +Yulai Xie,Unifying intrusion detection and forensic analysis via provenance awareness.,2016,61,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs61.html#XieFTZ16,https://doi.org/10.1016/j.future.2016.02.005 +Raimundo Díaz-Díaz,Business model analysis of public services operating in the smart city ecosystem: The case of SmartSantander.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#Diaz-DiazMG17,https://doi.org/10.1016/j.future.2017.01.032 +Nicoletta Dessì,Smart Spaces for Adaptive Information Integration in Bioinformatics.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#DessiP17,https://doi.org/10.1016/j.future.2016.07.004 +William Hoarau,FAIL-FCI: Versatile fault injection.,2007,23,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs23.html#HoarauTV07,https://doi.org/10.1016/j.future.2007.01.005 +Zhigang Liu,PCRLB-based sensor selection for maneuvering target tracking in range-based sensor networks.,2013,29,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs29.html#LiuWX13,https://doi.org/10.1016/j.future.2012.01.003 +Dawid Polap,Multi-threaded learning control mechanism for neural networks.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#PolapWWD18,https://doi.org/10.1016/j.future.2018.04.050 +Patrick Biget,How smart cards can benefit from object-oriented technologies.,1997,13,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs13.html#BigetGV97,https://doi.org/10.1016/S0167-739X(97)00010-1 +Richard Hughes-Jones,High data rate transmission in high resolution radio astronomy - vlbiGRID.,2003,19,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs19.html#Hughes-JonesPS03,https://doi.org/10.1016/S0167-739X(03)00068-2 +Yong Xue,Geocomputation.,2004,20,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs20.html#XueSJ04,https://doi.org/10.1016/j.future.2003.11.002 +Hong Zhong 0001,LBBSRT: An efficient SDN load balancing scheme based on server response time.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#ZhongFC17,https://doi.org/10.1016/j.future.2016.10.001 +Sheng Uei Guan,Migration control for mobile agents based on passport and visa.,2003,19,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs19.html#GuanWO03,https://doi.org/10.1016/S0167-739X(02)00128-0 +Brian Tierney,Special section on high-performance networking for distributed data-intensive science.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#TierneyBL16,https://doi.org/10.1016/j.future.2015.10.006 +Ponnuram Balakrishnan,SLA enabled CARE resource broker.,2011,27,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs27.html#BalakrishnanS11,https://doi.org/10.1016/j.future.2010.09.006 +Gabriel Mateescu,Hybrid Computing - Where HPC meets grid and Cloud Computing.,2011,27,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs27.html#MateescuGR11,https://doi.org/10.1016/j.future.2010.11.003 +Jesús Montes,GMonE: A complete approach to cloud monitoring.,2013,29,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs29.html#MontesSMPA13,https://doi.org/10.1016/j.future.2013.02.011 +Preetam Ghosh,Mobility-aware cost-efficient job scheduling for single-class grid jobs in a generic mobile grid architecture.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#GhoshD10,https://doi.org/10.1016/j.future.2009.05.003 +Eryun Liu,Random local region descriptor (RLRD): A new method for fixed-length feature representation of fingerprint image and its application to template protection.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#LiuZLPCT12,https://doi.org/10.1016/j.future.2011.01.001 +Haibin Cai,A novel service-oriented intelligent seamless migration algorithm and application for pervasive computing environments.,2013,29,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs29.html#CaiPDJ13,https://doi.org/10.1016/j.future.2013.02.008 +Fu-Ching Wang,Upgrading the service capacity of video-on-demand servers with memory buffer.,1997,12,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs12.html#WangWCLLWO97,https://doi.org/10.1016/S0167-739X(97)00020-4 +María S. Pérez,An agent architecture for managing data resources in a grid environment.,2009,25,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs25.html#PerezSARP09,https://doi.org/10.1016/j.future.2008.07.011 +Christian Vecchiola,Deadline-driven provisioning of resources for scientific applications in hybrid clouds with Aneka.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#VecchiolaCKB12,https://doi.org/10.1016/j.future.2011.05.008 +Cho-Li Wang,Directed Point: a communication subsystem for commodity supercomputing with Gigabit Ethernet.,2002,18,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs18.html#WangTCZL02,https://doi.org/10.1016/S0167-739X(01)00059-0 +Sain Saginbekov,Efficient code dissemination in wireless sensor networks.,2014,39,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs39.html#SaginbekovJ14,https://doi.org/10.1016/j.future.2013.12.008 +Dick H. J. Epema,A worldwide flock of Condors: Load sharing among workstation clusters.,1996,12,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs12.html#EpemaLDEP96,https://doi.org/10.1016/0167-739X(95)00035-Q +Byungoh Ahn,Topological-order based dynamic polling scheme using biconnected component computation.,2004,20,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs20.html#AhnAC04,https://doi.org/10.1016/S0167-739X(03)00143-2 +Anton Spivak,Storage tier-aware replicative data reorganization with prioritization for efficient workload processing.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#SpivakRNBR18,https://doi.org/10.1016/j.future.2017.04.010 +Riichi Takahashi,"Automobile troubleshooting expert system ""ATREX"".",1989,5,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs5.html#Takahashi89,https://doi.org/10.1016/0167-739X(89)90025-3 +Maroua Meddeb,AFIRM: Adaptive forwarding based link recovery for mobility support in NDN/IoT networks.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#MeddebDBMDG18,https://doi.org/10.1016/j.future.2018.04.087 +Erwin Laure,Preface.,2013,29,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs29.html#LaureH13,https://doi.org/10.1016/j.future.2013.05.011 +Elif Dede,Benchmarking MapReduce implementations under different application scenarios.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#DedeFGR14,https://doi.org/10.1016/j.future.2014.01.001 +Konstantinos Douzis,Modular and generic IoT management on the cloud.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#DouzisSPA18,https://doi.org/10.1016/j.future.2016.05.041 +Junchao Wang,Planning virtual infrastructures for time critical applications with multiple deadline constraints.,2017,75,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs75.html#WangTMHZPLZ17,https://doi.org/10.1016/j.future.2017.02.001 +Byoung-Hoon Lee,Lease-based consistency schemes in the web environment.,2009,25,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs25.html#LeeLKF09,https://doi.org/10.1016/j.future.2008.06.001 +Sk. Md. Mizanur Rahman,Secure privacy vault design for distributed multimedia surveillance system.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#RahmanHHAAP16,https://doi.org/10.1016/j.future.2014.10.019 +Shuyou Li,Normalized workflow net (NWF-net): Its definition and properties.,2005,21,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs21.html#LiS05,https://doi.org/10.1016/j.future.2005.02.003 +Ladjel Bellatreche,Models and data engineering.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#BellatrecheAP17,https://doi.org/10.1016/j.future.2016.11.017 +Aleksander Byrski,Special section on functional paradigm for high performance computing.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#ByrskiRHH18,https://doi.org/10.1016/j.future.2017.09.035 +Minh Tran,A simple model generation system for computer graphics.,2005,21,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs21.html#TranDL05,https://doi.org/10.1016/j.future.2004.04.009 +Shashank Gupta 0002,Hunting for DOM-Based XSS vulnerabilities in mobile cloud-based online social network.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#GuptaGC18,https://doi.org/10.1016/j.future.2017.05.038 +Roger Les Cottrell,iGrid2002 demonstration: bandwidth from the low lands.,2003,19,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs19.html#CottrellALN03,https://doi.org/10.1016/S0167-739X(03)00063-3 +Kai Wang,Fast file dissemination in peer-to-peer networks with upstream bandwidth constraint.,2010,26,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs26.html#WangLP10,https://doi.org/10.1016/j.future.2010.04.005 +Ferucio Laurentiu Tiplea,Reasoning about minimal anonymity in security protocols.,2013,29,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs29.html#TipleaVV13,https://doi.org/10.1016/j.future.2012.02.001 +John Panneerselvam,InOt-RePCoN: Forecasting user behavioural trend in large-scale cloud environments.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#PanneerselvamLA18,https://doi.org/10.1016/j.future.2017.05.022 +Chia-Ming Wu,A green energy-efficient scheduling algorithm using the DVFS technique for cloud datacenters.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#WuCC14,https://doi.org/10.1016/j.future.2013.06.009 +Romain Giot,Fast computation of the performance evaluation of biometric systems: Application to multibiometrics.,2013,29,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs29.html#GiotER13,https://doi.org/10.1016/j.future.2012.02.003 +Chafika Benzaid,Fast authentication in wireless sensor networks.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#BenzaidLABA16,https://doi.org/10.1016/j.future.2014.07.006 +Cristian Borcea,PICADOR: End-to-end encrypted Publish-Subscribe information distribution with proxy re-encryption.,2017,71,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs71.html#BorceaGPRR17,https://doi.org/10.1016/j.future.2016.10.013 +Fahimeh Yazdanpanah,Picos: A hardware runtime architecture support for OmpSs.,2015,53,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs53.html#YazdanpanahAJBV15,https://doi.org/10.1016/j.future.2014.12.010 +Helen Wright,Steering and visualization: Enabling technologies for computational science.,2010,26,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs26.html#WrightCKW10,https://doi.org/10.1016/j.future.2008.06.015 +Alexandros Evangelidis,Performance modelling and verification of cloud-based auto-scaling policies.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#EvangelidisPB18,https://doi.org/10.1016/j.future.2017.12.047 +Chuan Zhang,PPDP: An efficient and privacy-preserving disease prediction scheme in cloud-based e-Healthcare system.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#ZhangZXL18,https://doi.org/10.1016/j.future.2017.09.002 +Yi Luo 0002,HOPE: A Hybrid Optimistic checkpointing and selective Pessimistic mEssage logging protocol for large scale distributed systems.,2012,28,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs28.html#LuoM12,https://doi.org/10.1016/j.future.2012.03.012 +Ayoub Bahnasse,Novel SDN architecture for smart MPLS Traffic Engineering-DiffServ Aware management.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#BahnasseLOTB18,https://doi.org/10.1016/j.future.2018.04.066 +Giuseppe Caggianese,Evaluation of spatial interaction techniques for virtual heritage applications: A case study of an interactive holographic projection.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#CaggianeseGN18,https://doi.org/10.1016/j.future.2017.07.047 +Fan Zhang 0003,CloudFlow: A data-aware programming model for cloud workflow applications on modern HPC systems.,2015,51,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs51.html#ZhangMEKLZ15,https://doi.org/10.1016/j.future.2014.10.028 +Michal Batko,Scalability comparison of Peer-to-Peer similarity search structures.,2008,24,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs24.html#BatkoNFZ08,https://doi.org/10.1016/j.future.2007.07.012 +Rui Tang,Clustering big IoT data by metaheuristic optimized mini-batch and parallel partition-based DGC in Hadoop.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#TangF18,https://doi.org/10.1016/j.future.2018.03.006 +Lucas Zamboulis,Query performance evaluation of an architecture for fine-grained integration of heterogeneous grid data sources.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#ZamboulisMP10,https://doi.org/10.1016/j.future.2010.05.008 +Huda Hallawi,Multi-Capacity Combinatorial Ordering GA in Application to Cloud resources allocation and efficient virtual machines consolidation.,2017,69,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs69.html#HallawiMH17,https://doi.org/10.1016/j.future.2016.10.025 +Ruey-Kai Sheu,Managing and sharing collaborative files through WWW.,2001,17,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs17.html#SheuCY01,https://doi.org/10.1016/S0167-739X(01)00045-0 +Rosy Aoun,Towards an optimized abstracted topology design in cloud environment.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#AounADNGS13,https://doi.org/10.1016/j.future.2012.03.024 +Cheng Guo,Key-aggregate authentication cryptosystem for data sharing in dynamic cloud storage.,2018,84,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs84.html#GuoLBJCFA18,https://doi.org/10.1016/j.future.2017.07.038 +Constantine Bekas,The design of a distributed MATLAB-based environment for computing pseudospectra.,2005,21,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs21.html#BekasKG05,https://doi.org/10.1016/j.future.2003.12.017 +Reginaldo Ré,An empirical study for evaluating the performance of multi-cloud APIs.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#ReMJIS18,https://doi.org/10.1016/j.future.2017.09.003 +Ehab Nabiel Alkhanak,A hyper-heuristic cost optimisation approach for Scientific Workflow Scheduling in cloud computing.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#AlkhanakL18,https://doi.org/10.1016/j.future.2018.03.055 +Sugam Sharma,Expanded cloud plumes hiding Big Data ecosystem.,2016,59,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs59.html#Sharma16,https://doi.org/10.1016/j.future.2016.01.003 +Rafael Menéndez de Llano,Study of neural net training methods in parallel and distributed architectures.,2010,26,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs26.html#LlanoB10,https://doi.org/10.1016/j.future.2009.01.001 +Bin Cao 0005,Multiobjective recommendation optimization via utilizing distributed parallel algorithm.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#CaoZLKYKY18,https://doi.org/10.1016/j.future.2017.09.005 +Jordi Arjona Aroca,Power-efficient assignment of virtual machines to physical machines.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#ArocaAMTW16,https://doi.org/10.1016/j.future.2015.01.006 +Chao Chen,Investigating the deceptive information in Twitter spam.,2017,72,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs72.html#ChenW0XOAH17,https://doi.org/10.1016/j.future.2016.05.036 +Jingwei Li,Privacy-preserving data utilization in hybrid clouds.,2014,30,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs30.html#Li00LJ14,https://doi.org/10.1016/j.future.2013.06.011 +Marian Bubak,Workflow composer and service registry for grid applications.,2005,21,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs21.html#BubakGKMR05,https://doi.org/10.1016/j.future.2004.09.021 +Pablo Basanta-Val,Improving the predictability of distributed stream processors.,2015,52,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs52.html#Basanta-ValGWA15,https://doi.org/10.1016/j.future.2015.03.023 +Donald E. Walker,Knowledge resource tools for information access.,1986,2,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs2.html#Walker86,https://doi.org/10.1016/0167-739X(86)90012-9 +Volker Sander,High-performance computer management based on Java.,1999,15,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs15.html#SanderEH99,https://doi.org/10.1016/S0167-739X(98)00087-9 +Saeed Sharifian,A content-based load balancing algorithm with admission control for cluster web servers.,2008,24,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs24.html#SharifianMA08,https://doi.org/10.1016/j.future.2008.03.005 +Massimo Benerecetti,Timed protocol insecurity problem is NP-complete.,2013,29,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs29.html#BenerecettiP13,https://doi.org/10.1016/j.future.2011.11.001 +Christopher Smowton,A cost-effective approach to improving performance of big genomic data analyses in clouds.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#SmowtonBAMPDX17,https://doi.org/10.1016/j.future.2015.11.011 +Min Liu 0002,A quality of service (QoS)-aware execution plan selection approach for a service composition process.,2012,28,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs28.html#LiuWSLY12,https://doi.org/10.1016/j.future.2011.08.017 +Vitor Barbosa C. Souza,Towards a proper service placement in combined Fog-to-Cloud (F2C) architectures.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#SouzaMMSGRJF18,https://doi.org/10.1016/j.future.2018.04.042 +Ketan Maheshwari,Workflow performance improvement using model-based scheduling over multiple clusters and clouds.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#MaheshwariJMMVK16,https://doi.org/10.1016/j.future.2015.03.017 +Ali A. Rahmanian,A learning automata-based ensemble resource usage prediction algorithm for cloud computing environment.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#RahmanianAT18,https://doi.org/10.1016/j.future.2017.09.049 +Beom-Hwan Chang,Active security management based on Secure Zone Cooperation.,2004,20,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs20.html#ChangKKNC04,https://doi.org/10.1016/S0167-739X(03)00144-4 +Jun Shen 0001,Analysis of business process integration in Web service context.,2007,23,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs23.html#ShenGYSSR07,https://doi.org/10.1016/j.future.2006.05.007 +Ciprian-Petrisor Pungila,Efficient parallel automata construction for hybrid resource-impelled data-matching.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#PungilaRN14,https://doi.org/10.1016/j.future.2013.09.008 +Guipeng Liu,SP-Partitioner: A novel partition method to handle intermediate data skew in spark streaming.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#LiuZWGBG18,https://doi.org/10.1016/j.future.2017.07.014 +Maximilian Engelsberger,Dynamic reconfiguration of service-oriented resources in cyber-physical production systems by a process-independent approach with multiple criteria and multiple resource management operations.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#EngelsbergerG18,https://doi.org/10.1016/j.future.2018.06.002 +Juan Li,Grid resource discovery based on semantically linked virtual organizations.,2010,26,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs26.html#Li10,https://doi.org/10.1016/j.future.2009.07.011 +Katarzyna Keahey,Computational Grids in action: the National Fusion Collaboratory.,2002,18,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs18.html#KeaheyFPSTFGM02,https://doi.org/10.1016/S0167-739X(02)00081-X +Gemma Sanjuan,Wind field parallelization based on Schwarz alternating domain decomposition method.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#SanjuanMC18,https://doi.org/10.1016/j.future.2016.12.041 +Dongsheng Li,An algorithm for efficient privacy-preserving item-based collaborative filtering.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#LiCLSZLG16,https://doi.org/10.1016/j.future.2014.11.003 +Shangguang Wang,Efficient and reliable service selection for heterogeneous distributed software systems.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#WangHSHY17,https://doi.org/10.1016/j.future.2015.12.013 +Gino Mirocle Crisci,PYR: a Cellular Automata model for pyroclastic flows and application to the 1991 Mt. Pinatubo eruption.,2005,21,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs21.html#CrisciGRS05,https://doi.org/10.1016/j.future.2004.03.002 +Laizhong Cui,A smart artificial bee colony algorithm with distance-fitness-based neighbor search and its application.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#CuiZLWYMHL18,https://doi.org/10.1016/j.future.2018.06.054 +Syed Taha Ali,Authentication of lossy data in body-sensor networks for cloud-based healthcare monitoring.,2014,35,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs35.html#AliSO14,https://doi.org/10.1016/j.future.2013.09.007 +Jinshu Su,ePASS: An expressive attribute-based signature scheme with privacy and an unforgeability guarantee for the Internet of Things.,2014,33,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs33.html#SuCZWY14,https://doi.org/10.1016/j.future.2013.10.016 +Yunfei Meng,Privacy-aware cloud service selection approach based on P-Spec policy models and privacy sensitivities.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#MengHZK18,https://doi.org/10.1016/j.future.2018.03.013 +Vítor Silva Sousa,Raw data queries during data-intensive parallel workflow execution.,2017,75,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs75.html#SousaLCOCVM17,https://doi.org/10.1016/j.future.2017.01.016 +Jan Modersitzki,Elastic registration of brain images on large PC-Clusters.,2001,18,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs18.html#ModersitzkiLSO01,https://doi.org/10.1016/S0167-739X(00)00081-9 +Jiao-Hong Yi,An improved NSGA-III algorithm with adaptive mutation operator for Big Data optimization problems.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#YiDDAW18,https://doi.org/10.1016/j.future.2018.06.008 +Farrukh Nadeem,Optimizing execution time predictions of scientific workflow applications in the Grid through evolutionary programming.,2013,29,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs29.html#NadeemF13,https://doi.org/10.1016/j.future.2012.10.005 +Zhixin Liu,A distributed energy-efficient clustering algorithm with improved coverage in wireless sensor networks.,2012,28,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs28.html#LiuZXG12,https://doi.org/10.1016/j.future.2011.04.019 +Douglas L. L. Moura,An evolutionary algorithm for roadside unit deployment with betweenness centrality preprocessing.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#MouraCSA18,https://doi.org/10.1016/j.future.2018.03.051 +Franco Cicirelli,An edge-based platform for dynamic Smart City applications.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#CicirelliGSV17,https://doi.org/10.1016/j.future.2017.05.034 +Qihong Shao,Efficiently discovering critical workflows in scientific explorations.,2009,25,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs25.html#ShaoSC09,https://doi.org/10.1016/j.future.2008.06.005 +Atakan Dogan,A study on performance of dynamic file replication algorithms for real-time file access in Data Grids.,2009,25,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs25.html#Dogan09,https://doi.org/10.1016/j.future.2009.02.002 +Erik Elmroth,Grid resource brokering algorithms enabling advance reservations and resource selection based on performance predictions.,2008,24,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs24.html#ElmrothT08,https://doi.org/10.1016/j.future.2007.06.001 +Wei Wang 0088,A design for cloud-assisted Fair-Play Management System of online contests with provable security.,2015,52,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs52.html#WangXYL15,https://doi.org/10.1016/j.future.2014.12.013 +Mohammad Reza Mesbahi,Highly reliable architecture using the 80/20 rule in cloud computing datacenters.,2017,77,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs77.html#MesbahiRH17,https://doi.org/10.1016/j.future.2017.06.011 +Olaf Schenk,PARDISO: a high-performance serial and parallel sparse linear solver in semiconductor device simulation.,2001,18,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs18.html#SchenkGFS01,https://doi.org/10.1016/S0167-739X(00)00076-5 +Sudharshan Vazhkudai,PODOS -- The design and implementation of a performance oriented Linux cluster.,2002,18,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs18.html#VazhkudaiSM02,https://doi.org/10.1016/S0167-739X(01)00055-3 +Tobias Scholl,Scalable community-driven data sharing in e-science grids.,2009,25,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs25.html#SchollBGKRK09,https://doi.org/10.1016/j.future.2008.05.006 +John A. Keane,Comparing distributed memory and virtual shared memory parallel programming models.,1995,11,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs11.html#KeaneGX95,https://doi.org/10.1016/0167-739X(94)00065-M +Rafael Ferreira da Silva,Self-healing of workflow activity incidents on distributed computing infrastructures.,2013,29,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs29.html#SilvaGD13,https://doi.org/10.1016/j.future.2013.06.012 +Wei Yu 0009,Recommender systems based on multiple social networks correlation.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#YuL18,https://doi.org/10.1016/j.future.2018.04.079 +Mounya Smara,Acceptance Test for Fault Detection in Component-based Cloud Computing and Systems.,2017,70,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs70.html#SmaraAPA17,https://doi.org/10.1016/j.future.2016.06.030 +Alexandros V. Gerbessiotis,Architecture independent parallel algorithm design: theory vs practice.,2002,18,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs18.html#Gerbessiotis02,https://doi.org/10.1016/S0167-739X(01)00068-1 +Dong Yuan,A data placement strategy in scientific cloud workflows.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#YuanYLC10,https://doi.org/10.1016/j.future.2010.02.004 +Kun Tang,Throughput analysis of cognitive wireless acoustic sensor networks with energy harvesting.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#TangSD18,https://doi.org/10.1016/j.future.2017.07.032 +EunJoung Byun,MJSA: Markov job scheduler based on availability in desktop grid computing environment.,2007,23,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs23.html#ByunCBGPH07,https://doi.org/10.1016/j.future.2006.09.004 +Claudio Badii,Analysis and assessment of a knowledge based smart city architecture providing service APIs.,2017,75,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs75.html#BadiiBCDNP17,https://doi.org/10.1016/j.future.2017.05.001 +Karl M. Wiig,Market trends in artificial intelligence in the United States and Japan.,1984,1,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs1.html#Wiig84,https://doi.org/10.1016/0167-739X(84)90032-3 +Zulkifly Mohd Zaki,Architecture design of a user-orientated electronic laboratory notebook: A case study within an atmospheric chemistry community.,2013,29,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs29.html#ZakiDLRYFPM13,https://doi.org/10.1016/j.future.2013.04.011 +Zsolt Németh,Abstract machine design on a multithreaded architecture.,2000,16,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs16.html#Nemeth00,https://doi.org/10.1016/S0167-739X(99)00068-0 +Pieter H. Hartel,FGCS special issue on smart cards.,1997,13,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs13.html#Hartel97,https://doi.org/10.1016/S0167-739X(97)89107-8 +Suyel Namasudra,Time efficient secure DNA based access control model for cloud computing environment.,2017,73,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs73.html#NamasudraRVAB17,https://doi.org/10.1016/j.future.2017.01.017 +Tomasz Hachaj,Clustering of trending topics in microblogging posts: A graph-based approach.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#HachajO17,https://doi.org/10.1016/j.future.2016.04.009 +Takahira Yamaguchi,A technical analysis expert system in the stock market.,1989,5,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs5.html#Yamaguchi89,https://doi.org/10.1016/0167-739X(89)90016-2 +Juan Manuel Dodero,Trade-off between interoperability and data collection performance when designing an architecture for learning analytics.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#DoderoGGPTR17,https://doi.org/10.1016/j.future.2016.06.040 +Jim Howe,Knowledge-based systems and artificial intelligence: emerging technology.,1991,7,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs7.html#Howe91,https://doi.org/10.1016/0167-739X(91)90016-Q +Balazs Gerofi,Utilizing memory content similarity for improving the performance of highly available virtual machines.,2013,29,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs29.html#GerofiVI13,https://doi.org/10.1016/j.future.2012.06.008 +Mateusz Jarus,Runtime power usage estimation of HPC servers for various classes of real-life applications.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#JarusOPW14,https://doi.org/10.1016/j.future.2013.07.012 +Jamil Ahmad,Object-oriented convolutional features for fine-grained image retrieval in large surveillance datasets.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#AhmadMBB18,https://doi.org/10.1016/j.future.2017.11.002 +Yaguang Lin,An on-demand coverage based self-deployment algorithm for big data perception in mobile sensing networks.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#LinWHWZZ18,https://doi.org/10.1016/j.future.2018.01.007 +Yujie Li,Automatic road detection system for an air-land amphibious car drone.,2018,85,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs85.html#LiLNKS18,https://doi.org/10.1016/j.future.2018.02.036 +Sergio Blanes,Optimization of Lie group methods for differential equations.,2003,19,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs19.html#BlanesC03,https://doi.org/10.1016/S0167-739X(02)00160-7 +Jie Tao,ARS: an adaptive runtime system for locality optimization.,2003,19,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs19.html#TaoSK03,https://doi.org/10.1016/S0167-739X(02)00183-8 +Haolong Fan,An integrated personalization framework for SaaS-based cloud services.,2015,53,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs53.html#FanHYH15,https://doi.org/10.1016/j.future.2015.05.011 +Muhammad S. Sarwar,Towards a virtual research environment for language and literature researchers.,2013,29,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs29.html#SarwarDWS13,https://doi.org/10.1016/j.future.2012.03.015 +Narges Roshanbin,ADAMAS: Interweaving unicode and color to enhance CAPTCHA security.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#RoshanbinM16,https://doi.org/10.1016/j.future.2014.11.004 +Maria Alejandra Rodriguez,Detecting performance anomalies in scientific workflows using hierarchical temporal memory.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#RodriguezKB18,https://doi.org/10.1016/j.future.2018.05.014 +G. Della Vecchia,An optimized broadcasting technique for WK-recursive topologies.,1990,5,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs5.html#VecchiaS90,https://doi.org/10.1016/0167-739X(90)90034-B +Norah Saleh Alghamdi,Semantic-based Structural and Content indexing for the efficient retrieval of queries over large XML data repositories.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#AlghamdiRP14,https://doi.org/10.1016/j.future.2014.02.010 +Cristina Muñoz,A Distributed Event-Based System based on Compressed Fragmented-Iterated Bloom Filters.,2017,75,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs75.html#MunozL17,https://doi.org/10.1016/j.future.2017.02.021 +Yang Li 0003,Wiki-Health: From Quantified Self to Self-Understanding.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#LiG16,https://doi.org/10.1016/j.future.2015.08.008 +Ryan Chard,Network health and e-Science in commercial clouds.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#ChardBN16,https://doi.org/10.1016/j.future.2015.06.001 +Hongyang Sun,Spatio-temporal thermal-aware scheduling for homogeneous high-performance computing datacenters.,2017,71,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs71.html#SunSP17,https://doi.org/10.1016/j.future.2017.02.005 +Kathleen Ericson,On the performance of high dimensional data clustering and classification algorithms.,2013,29,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs29.html#EricsonP13,https://doi.org/10.1016/j.future.2012.05.026 +Ozgur Balsoy,Automating metadata Web service deployment for problem solving environments.,2005,21,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs21.html#BalsoyJAPF05,https://doi.org/10.1016/j.future.2003.12.018 +Qian Zhu,Agricultural research recommendation algorithm based on consumer preference model of e-commerce.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#ZhuL18,https://doi.org/10.1016/j.future.2018.05.036 +Gen Matsumoto,Neurocomputing - neurons as microcomputers.,1988,4,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs4.html#Matsumoto88,https://doi.org/10.1016/0167-739X(88)90018-0 +Bin Li,Mimic computing for password recovery.,2018,84,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs84.html#LiZS18,https://doi.org/10.1016/j.future.2018.02.018 +Rongbin Xu,A sufficient and necessary temporal violation handling point selection strategy in cloud workflow.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#XuWLWXLY18,https://doi.org/10.1016/j.future.2018.03.056 +Daisuke Shirai,Multi-point 4K/2K layered video streaming for remote collaboration.,2011,27,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs27.html#ShiraiKFTKO11,https://doi.org/10.1016/j.future.2010.11.021 +Jyoti Sahni,Workflow-and-Platform Aware task clustering for scientific workflow execution in Cloud environment.,2016,64,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs64.html#SahniV16,https://doi.org/10.1016/j.future.2016.05.008 +Robert Dukaric,Towards a unified taxonomy and architecture of cloud frameworks.,2013,29,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs29.html#DukaricJ13,https://doi.org/10.1016/j.future.2012.09.006 +Mohamed Elshenawy,Towards a service-oriented cyber-physical systems of systems for smart city mobility applications.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#ElshenawyAE18,https://doi.org/10.1016/j.future.2017.09.047 +Ralf Groeper,A concept for attribute-based authorization on D-Grid resources.,2009,25,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs25.html#GroeperGMPZGS09,https://doi.org/10.1016/j.future.2008.05.008 +Luca Trani,Establishing Core Concepts for Information-Powered Collaborations.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#TraniABPF18,https://doi.org/10.1016/j.future.2018.07.005 +Srinidhi Varadarajan,Novel runtime systems support for adaptive compositional modeling in PSEs.,2005,21,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs21.html#VaradarajanR05,https://doi.org/10.1016/j.future.2003.12.020 +Seungwoo Jeon,Pattern graph tracking-based stock price prediction using big data.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#JeonHC18,https://doi.org/10.1016/j.future.2017.02.010 +Michela Meo,QoS content management for P2P file-sharing applications.,2008,24,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs24.html#MeoM08,https://doi.org/10.1016/j.future.2007.07.002 +Jack J. Dongarra,Special section: Cluster and computational grids for scientific computing.,2008,24,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs24.html#DongarraT08,https://doi.org/10.1016/j.future.2007.03.005 +Odette Mwilu Sangupamba,Design science research contribution to business intelligence in the cloud - A systematic literature review.,2016,63,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs63.html#SangupambaCP16,https://doi.org/10.1016/j.future.2015.11.014 +Qinlong Huang,"Corrigendum to ""Secure and efficient data collaboration with hierarchical attribute-based encryption in cloud computing"" [Future Gener. Comput. Syst. 72 (2017) 239-249].",2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#HuangYS18,https://doi.org/10.1016/j.future.2018.05.041 +Bahman Javadi,Decentralized orchestration of data-centric workflows in Cloud environments.,2013,29,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs29.html#JavadiTS13,https://doi.org/10.1016/j.future.2013.01.008 +Alexander Wöhrer,Novel mediator architectures for Grid information systems.,2005,21,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs21.html#WohrerBT05,https://doi.org/10.1016/j.future.2004.09.018 +Thomas J. Alexandre,Biometrics on smart cards: An approach to keyboard behavioral signature.,1997,13,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs13.html#Alexandre97,https://doi.org/10.1016/S0167-739X(97)00005-8 +Muan Hong Ng,BioSimGrid: Grid-enabled biomolecular simulation data storage and analysis.,2006,22,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs22.html#NgJWMTFCESJ06,https://doi.org/10.1016/j.future.2005.10.005 +Jin Ok Kim,Lip print recognition for security systems by multi-resolution architecture.,2004,20,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs20.html#KimLHBC04,https://doi.org/10.1016/S0167-739X(03)00145-6 +Shihong Yao,Sparsity estimation matching pursuit algorithm based on restricted isometry property for signal reconstruction.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#YaoSZW18,https://doi.org/10.1016/j.future.2017.09.034 +R. R. Bakker,Issues in practical model-based diagnosis.,1993,9,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs9.html#BakkerBMOS93,https://doi.org/10.1016/0167-739X(93)90035-N +José Luis Fernández-Villacañas Martín,Investigation of the importance of the genotype-phenotype mapping in information retrieval.,2003,19,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs19.html#MartinS03,https://doi.org/10.1016/S0167-739X(02)00108-5 +Li Zhang,Density-based spatial keyword querying.,2014,32,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs32.html#ZhangSZ14,https://doi.org/10.1016/j.future.2013.02.007 +Jiachen Yang,Multimedia recommendation and transmission system based on cloud platform.,2017,70,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs70.html#YangWLWSEKH17,https://doi.org/10.1016/j.future.2016.06.015 +Patrício Domingues,Sabotage-tolerance and trust management in desktop grid computing.,2007,23,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs23.html#DominguesSS07,https://doi.org/10.1016/j.future.2006.12.001 +Jianqi Liu,A time-recordable cross-layer communication protocol for the positioning of Vehicular Cyber-Physical Systems.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#LiuWWZF16,https://doi.org/10.1016/j.future.2015.08.014 +Meriem Guerar,Completely Automated Public Physical test to tell Computers and Humans Apart: A usability study on mobile devices.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#GuerarMM18,https://doi.org/10.1016/j.future.2017.03.012 +Zhengjun Liu,Evolving neural network using real coded genetic algorithm (GA) for multispectral image classification.,2004,20,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs20.html#LiuLWN04,https://doi.org/10.1016/j.future.2003.11.024 +Andrea Clematis,Job-resource matchmaking on Grid through two-level benchmarking.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#ClematisCDGQ10,https://doi.org/10.1016/j.future.2010.06.002 +ZhangBing Zhou,Assessing the replaceability of service protocols in mediated service interactions.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#ZhouGSTB13,https://doi.org/10.1016/j.future.2011.08.007 +Ralf H. Reussner,Automatic component protocol adaptation with the CoConut/J tool suite.,2003,19,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs19.html#Reussner03,https://doi.org/10.1016/S0167-739X(02)00173-5 +Kai Dong,On the limitations of existing notions of location privacy.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#DongGYLL18,https://doi.org/10.1016/j.future.2017.05.045 +Jianhua Liu,Data sharing in VANETs based on evolutionary fuzzy game.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#LiuWYS18,https://doi.org/10.1016/j.future.2017.10.037 +Alexandros Stamatakis,DRAxML at home: a distributed program for computation of large phylogenetic trees.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#StamatakisLOLM05,https://doi.org/10.1016/j.future.2004.05.013 +Roger Jardí-Cedó,Time-based low emission zones preserving drivers' privacy.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#Jardi-CedoPCCV18,https://doi.org/10.1016/j.future.2016.06.012 +Lirong Qiu,Quantum digital signature for the access control of sensitive data in the big data era.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#QiuCX18,https://doi.org/10.1016/j.future.2018.03.053 +John T. Daly,A higher order estimate of the optimum checkpoint interval for restart dumps.,2006,22,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs22.html#Daly06,https://doi.org/10.1016/j.future.2004.11.016 +Kashif Munir,Combining explicit admission control and congestion control for predictable data transfers in grids.,2012,28,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs28.html#MunirWPP12,https://doi.org/10.1016/j.future.2011.06.012 +Jiachen Yang,A distributed image-retrieval method in multi-camera system of smart city based on cloud computing.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#YangJS18,https://doi.org/10.1016/j.future.2017.11.015 +Simon J. E. Taylor,The CloudSME simulation platform and its applications: A generic multi-cloud platform for developing and executing commercial cloud-based simulations.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#TaylorKATKCF18,https://doi.org/10.1016/j.future.2018.06.006 +John C. Brown,Compilation versus abstract machines for fast parsing of typed feature structure grammars.,2000,16,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs16.html#BrownM00,https://doi.org/10.1016/S0167-739X(99)00090-4 +Wilson A. Higashino,CEPSim: Modelling and simulation of Complex Event Processing systems in cloud environments.,2016,65,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs65.html#HigashinoCB16,https://doi.org/10.1016/j.future.2015.10.023 +Yongge Wang,Garbled computation in cloud.,2016,62,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs62.html#WangMK16,https://doi.org/10.1016/j.future.2015.11.004 +Gabriele Kotsis,Graph based characterization of distributed applications.,2000,16,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs16.html#KotsisB00,https://doi.org/10.1016/S0167-739X(99)00076-X +Alexandru Uta,MemEFS: A network-aware elastic in-memory runtime distributed file system.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#UtaDWOSCK18,https://doi.org/10.1016/j.future.2017.03.017 +Miao Wang 0002,High volumes of event stream indexing and efficient multi-keyword searching for cloud monitoring.,2013,29,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs29.html#WangHMO13,https://doi.org/10.1016/j.future.2013.04.028 +Sotirios G. Ziavras,A new-generation parallel computer and its performance evaluation.,2000,17,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs17.html#ZiavrasGCM00,https://doi.org/10.1016/S0167-739X(00)00082-0 +Michael Schreckenberg,Simulation of traffic in large road networks.,2001,17,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs17.html#SchreckenbergNW01,https://doi.org/10.1016/S0167-739X(00)00033-9 +Dimosthenis Kyriazis,An innovative workflow mapping mechanism for Grids in the frame of Quality of Service.,2008,24,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs24.html#KyriazisTMLV08,https://doi.org/10.1016/j.future.2007.07.009 +James Barnett,Evaluation of ICOT's natural language research.,1993,9,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs9.html#BarnettY93,https://doi.org/10.1016/0167-739X(93)90006-B +Nicolas Verstaevel,Principles and experimentations of self-organizing embedded agents allowing learning from demonstration in ambient robotics.,2016,64,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs64.html#VerstaevelRGR16,https://doi.org/10.1016/j.future.2016.03.023 +Michael Frankel,Self-organizing networks.,1988,4,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs4.html#FrankelSM88,https://doi.org/10.1016/0167-739X(88)90010-6 +Alessandro Sarti,A physically based model to simulate maxillo-facial surgery from 3D CT images.,1999,15,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs15.html#SartiGL99,https://doi.org/10.1016/S0167-739X(98)00065-X +Junseok Hwang,Managing risks in an open computing environment using mean absolute deviation portfolio optimization.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#HwangKP10,https://doi.org/10.1016/j.future.2009.05.006 +Andreas Knüpfer,Compressible memory data structures for event-based trace analysis.,2006,22,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs22.html#KnupferN06,https://doi.org/10.1016/j.future.2004.11.021 +Nadia Ranaldo,Capacity-driven utility model for service level agreement negotiation of cloud services.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#RanaldoZ16,https://doi.org/10.1016/j.future.2015.03.007 +Ivan Rodero,Grid broker selection strategies using aggregated resource information.,2010,26,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs26.html#RoderoGCFS10,https://doi.org/10.1016/j.future.2009.07.009 +Zhiwei Wang,A privacy-preserving and accountable authentication protocol for IoT end-devices with weaker identity.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#Wang18,https://doi.org/10.1016/j.future.2017.09.042 +El-Sayed M. El-Alfy,Spam filtering framework for multimodal mobile communication based on dendritic cell algorithm.,2016,64,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs64.html#El-AlfyA16,https://doi.org/10.1016/j.future.2016.02.018 +Elahe Naserian,Personalized location prediction for group travellers from spatial-temporal trajectories.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#NaserianWDWW18,https://doi.org/10.1016/j.future.2018.01.024 +Jianxin Li,CyberLiveApp: A secure sharing and migration approach for live virtual desktop applications in a cloud environment.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#LiJLW13,https://doi.org/10.1016/j.future.2011.08.001 +Hua Wang 0002,Access control management for ubiquitous computing.,2008,24,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs24.html#WangZC08,https://doi.org/10.1016/j.future.2007.07.011 +James Brook,Loom: Complex large-scale visual insight for large hybrid IT infrastructure management.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#BrookCDGHLPLVVW18,https://doi.org/10.1016/j.future.2017.08.013 +Dingju Zhu,IOT and big data based cooperative logistical delivery scheduling method and cloud robot system.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#Zhu18,https://doi.org/10.1016/j.future.2018.04.081 +Chih Jeng Kenneth Tan,Computational science.,2002,18,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs18.html#Tan02,https://doi.org/10.1016/S0167-739X(02)00030-4 +Wes Lloyd,Performance implications of multi-tier application deployments on Infrastructure-as-a-Service clouds: Towards performance modeling.,2013,29,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs29.html#LloydPDLAR13,https://doi.org/10.1016/j.future.2012.12.007 +Ekasit Kijsipongse,Placing pipeline stages on a Grid: Single path and multipath pipeline execution.,2010,26,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs26.html#KijsipongseN10,https://doi.org/10.1016/j.future.2009.06.005 +Huacai Chen,Scheduling overcommitted VM: Behavior monitoring and dynamic switching-frequency scaling.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#ChenJHH13,https://doi.org/10.1016/j.future.2011.08.006 +Baohua Wei,Towards efficient data distribution on computational desktop grids with BitTorrent.,2007,23,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs23.html#WeiFC07,https://doi.org/10.1016/j.future.2007.04.006 +Gideon Juve,Characterizing and profiling scientific workflows.,2013,29,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs29.html#JuveCDBMV13,https://doi.org/10.1016/j.future.2012.08.015 +Mohamed Mohamed 0001,An autonomic approach to manage elasticity of business processes in the Cloud.,2015,50,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs50.html#MohamedABTM15,https://doi.org/10.1016/j.future.2014.10.017 +José ángel Bañares,Economics of computing services.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#BanaresAV16,https://doi.org/10.1016/j.future.2015.09.030 +Bartosz Balis,Holistic approach to management of IT infrastructure for environmental monitoring and decision support systems with urgent computing capabilities.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#BalisBBKKNNSZ18,https://doi.org/10.1016/j.future.2016.08.007 +Mohammad Abdollahi Azgomi,Task scheduling modelling and reliability evaluation of grid services using coloured Petri nets.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#AzgomiE10,https://doi.org/10.1016/j.future.2010.05.015 +Andrés Iglesias 0001,Introduction.,2004,20,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs20.html#Iglesias04,https://doi.org/10.1016/j.future.2004.05.020 +Chien-Ting Kuo,SFaaS: Keeping an eye on IoT fusion environment with security fusion as a service.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#KuoCCL18,https://doi.org/10.1016/j.future.2017.12.069 +Frank Munz,Performance assessment of parallel spectral analysis: towards a practical performance model for parallel medical applications.,2000,16,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs16.html#Munz0ZBSB00,https://doi.org/10.1016/S0167-739X(99)00139-9 +Silvana Castano,Exploratory analysis of textual data streams.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#CastanoFM17,https://doi.org/10.1016/j.future.2016.07.005 +Shi-Zhuan Han,Construct the prediction model for China agricultural output value based on the optimization neural network of fruit fly optimization algorithm.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#HanPZL18,https://doi.org/10.1016/j.future.2018.04.058 +Willem G. Vree,Experiments with coarse-grain parallel graph reduction.,1989,4,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs4.html#Vree89,https://doi.org/10.1016/0167-739X(89)90007-1 +Giuliano Laccetti,A framework model for grid security.,2007,23,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs23.html#LaccettiS07,https://doi.org/10.1016/j.future.2007.01.002 +Nazmus S. Nafi,Software defined neighborhood area network for smart grid applications.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#NafiAGD18,https://doi.org/10.1016/j.future.2017.09.064 +Peng Zhang 0029,An efficient access control scheme with outsourcing capability and attribute update for fog computing.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#ZhangCLLL18,https://doi.org/10.1016/j.future.2016.12.015 +Muhammad Usman Yaseen,Cloud-based scalable object detection and classification in video streams.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#YaseenARH18,https://doi.org/10.1016/j.future.2017.02.003 +Michael D. Beynon,Optimizing execution of component-based applications using group instances.,2002,18,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs18.html#BeynonKSS02,https://doi.org/10.1016/S0167-739X(01)00070-X +Marco Gribaudo,A performance modeling framework for lambda architecture based applications.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#GribaudoIK18,https://doi.org/10.1016/j.future.2017.07.033 +Elena V. Zudilova,"Special section: ""Interaction and visualisation techniques for problem solving environments"".",2005,21,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs21.html#ZudilovaAP05,https://doi.org/10.1016/j.future.2004.04.001 +Troy C. Kohwalter,Filtering irrelevant sequential data out of game session telemetry though similarity collapses.,2018,84,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs84.html#KohwalterMC18,https://doi.org/10.1016/j.future.2018.03.004 +Henri E. Bal,Heuristic search in PARLOG using replicated worker style parallelism.,1991,6,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs6.html#Bal91,https://doi.org/10.1016/0167-739X(91)90001-E +Seungmin Rho,Cyber physical systems technologies and applications.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#RhoVC16,https://doi.org/10.1016/j.future.2015.10.019 +Liqiang Wang,Atomicity and provenance support for pipelined scientific workflows.,2009,25,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs25.html#WangLFCBR09,https://doi.org/10.1016/j.future.2008.06.007 +Luis Tomás,Network-aware meta-scheduling in advance with autonomous self-tuning system.,2011,27,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs27.html#TomasCCC11,https://doi.org/10.1016/j.future.2010.12.004 +Torsten Wilde,Immersive and 3D viewers for CUMULVS: VTK/CAVE[tm] and AVS/Express.,2003,19,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs19.html#WildeKF03,https://doi.org/10.1016/S0167-739X(02)00179-6 +Cherri M. Pancake,'Split personalities' for scientific databases: targeting database middleware and interfaces to specific audiences.,1999,16,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs16.html#PancakeNH99,https://doi.org/10.1016/S0167-739X(99)00042-4 +Gour C. Karmakar,An efficient data delivery mechanism for AUV-based Ad hoc UASNs.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#KarmakarKN18,https://doi.org/10.1016/j.future.2017.10.025 +Panagiotis C. Kokkinos,Scheduling efficiency of resource information aggregation in grid networks.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#KokkinosV12,https://doi.org/10.1016/j.future.2011.06.008 +Soonuk Seol,Indoor mobile object tracking using RFID.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#SeolLK17,https://doi.org/10.1016/j.future.2016.08.005 +Khawar Hasham,Cloud infrastructure provenance collection and management to reproduce scientific workflows execution.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#HashamMM18,https://doi.org/10.1016/j.future.2017.07.015 +Drona Kandhai,Iterative momentum relaxation for fast lattice-Boltzmann simulations.,2001,18,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs18.html#KandhaiKHS01,https://doi.org/10.1016/S0167-739X(00)00078-9 +Hui Li 0025,Mining performance data for metascheduling decision support in the Grid.,2007,23,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs23.html#LiGW07,https://doi.org/10.1016/j.future.2006.04.009 +Ming Lei,An on-line replication strategy to increase availability in Data Grids.,2008,24,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs24.html#LeiVH08,https://doi.org/10.1016/j.future.2007.04.009 +Wolfgang Gassler,Guided curation of semistructured data in collaboratively-built knowledge bases.,2014,31,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs31.html#GasslerZS14,https://doi.org/10.1016/j.future.2013.05.008 +Jean-Marc Jézéquel,Programming massively parallel architectures with sequential object oriented languages.,1994,10,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs10.html#JezequelBA94,https://doi.org/10.1016/0167-739X(94)90051-5 +Denis Caromel,Peer-to-Peer and fault-tolerance: Towards deployment-based technical services.,2007,23,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs23.html#CaromelCD07,https://doi.org/10.1016/j.future.2007.01.006 +Yanming Sun,ASA: Against statistical attacks for privacy-aware users in Location Based Service.,2017,70,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs70.html#SunCHQH17,https://doi.org/10.1016/j.future.2016.06.017 +Rui Guo,Parallelizing the extraction of fresh information from online social networks.,2016,59,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs59.html#GuoWCLG16,https://doi.org/10.1016/j.future.2015.11.021 +Elena F. Sheka,Fullerenes as polyradicals.,2004,20,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs20.html#Sheka04,https://doi.org/10.1016/j.future.2003.11.025 +Sverker Holmgren,The Swedish National Graduate School in Scientific Computing (NGSSC).,2003,19,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs19.html#HolmgrenY03,https://doi.org/10.1016/S0167-739X(03)00085-2 +Qingjuan Zhao,An indicative opinion generation model for short texts on social networks.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#ZhaoNCWA18,https://doi.org/10.1016/j.future.2017.05.025 +Anthony J. G. Hey,Experiments in mimd parallelism.,1990,6,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs6.html#Hey90,https://doi.org/10.1016/0167-739X(90)90018-9 +Ikuo Keshi,A knowledge-based framework in an intelligent assistant system for making documents.,1989,5,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs5.html#KeshiFF89,https://doi.org/10.1016/0167-739X(89)90020-4 +Zhanibek Kozhirbayev,A performance comparison of container-based technologies for the Cloud.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#KozhirbayevS17,https://doi.org/10.1016/j.future.2016.08.025 +Ruben Van den Bossche,Online cost-efficient scheduling of deadline-constrained workloads on hybrid clouds.,2013,29,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs29.html#BosscheVB13,https://doi.org/10.1016/j.future.2012.12.012 +Javier Conejero,From volunteer to trustable computing: Providing QoS-aware scheduling mechanisms for multi-grid computing environments.,2014,34,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs34.html#ConejeroCCT14,https://doi.org/10.1016/j.future.2013.12.005 +David Bolton,Parallel object-oriented descriptions of graph reduction machines.,1990,6,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs6.html#BoltonHK90,https://doi.org/10.1016/0167-739X(90)90021-5 +Wasim Ahmad Bhat,Bridging data-capacity gap in big data storage.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#Bhat18,https://doi.org/10.1016/j.future.2017.12.066 +Peng Chen 0015,Temporal representation for mining scientific data provenance.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#ChenPA14,https://doi.org/10.1016/j.future.2013.09.032 +David Lizcano,Web-centred end-user component modelling.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#LizcanoASL16,https://doi.org/10.1016/j.future.2015.07.002 +Youngsong Mun,Modeling and simulation in supercomputing and telecommunications.,2004,20,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs20.html#Mun04,https://doi.org/10.1016/S0167-739X(03)00131-6 +Makoto Amamiya,Data flow computing and parallel reduction machine.,1988,4,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs4.html#Amamiya88,https://doi.org/10.1016/0167-739X(88)90019-2 +Luiz M. R. Gadelha Jr.,Provenance management in Swift.,2011,27,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs27.html#GadelhaCMWF11,https://doi.org/10.1016/j.future.2010.05.003 +Dharani Punithan,Phase transitions in two-dimensional daisyworld with small-world effects - A study of local and long-range couplings.,2014,33,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs33.html#PunithanM14,https://doi.org/10.1016/j.future.2012.12.022 +Satoshi Matsuoka,Towards performance evaluation of high-performance computing on multiple Java platforms.,2001,18,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs18.html#MatsuokaI01,https://doi.org/10.1016/S0167-739X(00)00099-6 +Jianjiang Li,Research and implementation of a distributed transaction processing middleware.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#LiGWLYM17,https://doi.org/10.1016/j.future.2016.01.021 +M. Shamim Hossain,Cloud-Based Multimedia Services for healthcare and other related applications.,2017,66,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs66.html#HossainXAMG17,https://doi.org/10.1016/j.future.2016.07.011 +Henri Casanova,On the impact of process replication on executions of large-scale parallel applications with coordinated checkpointing.,2015,51,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs51.html#CasanovaRVZ15,https://doi.org/10.1016/j.future.2015.04.003 +Ali Sajjad,A scalable and dynamic application-level secure communication framework for inter-cloud services.,2015,48,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs48.html#SajjadRZD15,https://doi.org/10.1016/j.future.2015.01.018 +Lanfranco Lopriore,A data cache for Prolog architectures.,1993,9,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs9.html#Lopriore93,https://doi.org/10.1016/0167-739X(93)90013-F +Samia Loucif,Performance analysis of deterministically-routed bi-directional torus with non-uniform traffic distribution.,2009,25,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs25.html#LoucifO09,https://doi.org/10.1016/j.future.2008.10.008 +Stefan Schamberger,Partitioning finite element meshes using space-filling curves.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#SchambergerW05,https://doi.org/10.1016/j.future.2004.05.018 +Gonzalo Sánchez-Arias,Midgar: Study of communications security among Smart Objects using a platform of heterogeneous devices for the Internet of Things.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#Sanchez-AriasGG17,https://doi.org/10.1016/j.future.2017.01.033 +Sung Lee,Bio-STEER: A Semantic Web workflow tool for Grid computing in the life sciences.,2007,23,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs23.html#LeeWHC07,https://doi.org/10.1016/j.future.2006.07.011 +Klavdiya Bochenina,Static scheduling of multiple workflows with soft deadlines in non-dedicated heterogeneous environments.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#BocheninaBB16,https://doi.org/10.1016/j.future.2015.08.009 +Ronal Muresano,An approach for an efficient execution of SPMD applications on Multi-core environments.,2017,66,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs66.html#MuresanoMRL17,https://doi.org/10.1016/j.future.2016.06.016 +Chengzheng Sun,The OR-forest-based parallel execution model of logic programs.,1990,6,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs6.html#SunC90,https://doi.org/10.1016/0167-739X(90)90006-Y +Etienne Michon,Schlouder: A broker for IaaS clouds.,2017,69,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs69.html#MichonGGUK17,https://doi.org/10.1016/j.future.2016.09.010 +V. Roshanaei,A variable neighborhood search for job shop scheduling with set-up * to minimize makespan.,2009,25,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs25.html#RoshanaeiNJK09,https://doi.org/10.1016/j.future.2009.01.004 +Shuai-Min Chen,CRFID: An RFID system with a cloud database as a back-end server.,2014,30,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs30.html#ChenWSW14,https://doi.org/10.1016/j.future.2013.05.004 +Fangliang Xu,Incremental encoding for erasure-coded cross-datacenters cloud storage.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#XuWM18,https://doi.org/10.1016/j.future.2018.04.047 +Yen-Liang Su,Variable-sized map and locality-aware reduce on public-resource grids.,2011,27,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs27.html#SuCCS11,https://doi.org/10.1016/j.future.2010.09.001 +Andrew S. Deonarine,Implementation of a multifunctional logic gate based on folding/unfolding transitions of a protein.,2003,19,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs19.html#DeonarineCK03,https://doi.org/10.1016/S0167-739X(02)00110-3 +Wojciech Turek,Erlang-based desynchronized urban traffic simulation for high-performance computing systems.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#Turek18,https://doi.org/10.1016/j.future.2017.06.003 +Gang Sun,Low-latency orchestration for workflow-oriented service function chain in edge computing.,2018,85,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs85.html#SunLLL018,https://doi.org/10.1016/j.future.2018.03.018 +Yazeed Alabdulkarim,BG: A scalable benchmark for interactive social networking actions.,2018,85,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs85.html#AlabdulkarimBG18,https://doi.org/10.1016/j.future.2018.02.031 +Peter Newman,A resource-aware framework for resource-constrained service-oriented systems.,2015,47,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs47.html#NewmanK15,https://doi.org/10.1016/j.future.2014.09.010 +Anna V. Kalyuzhnaya,Towards a scenario-based solution for extreme metocean event simulation applying urgent computing.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#KalyuzhnayaNIKB18,https://doi.org/10.1016/j.future.2017.05.049 +Jue Wang,Message scheduling for array re-decomposition on distributed memory systems.,2010,26,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs26.html#WangHZL10,https://doi.org/10.1016/j.future.2008.10.009 +Xiao Han,On exploiting social relationship and personal background for content discovery in P2P networks.,2014,40,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs40.html#HanCCCH14,https://doi.org/10.1016/j.future.2014.06.007 +Zheng Xu 0001,Mining temporal explicit and implicit semantic relations between entities using web search engines.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#XuLZWMH14,https://doi.org/10.1016/j.future.2013.09.027 +Pyoung Won Kim,Real-time bio-signal-processing of students based on an Intelligent algorithm for Internet of Things to assess engagement levels in a classroom.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#Kim18,https://doi.org/10.1016/j.future.2018.04.093 +Yuanyuan Zhang,Predict task running time in grid environments based on CPU load predictions.,2008,24,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs24.html#ZhangSI08,https://doi.org/10.1016/j.future.2007.07.003 +Fabrizio Falchi,Distance browsing in distributed multimedia databases.,2009,25,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs25.html#FalchiGRZ09,https://doi.org/10.1016/j.future.2008.02.007 +Marcus Carvalho,Capacity planning for IaaS cloud providers offering multiple service classes.,2017,77,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs77.html#CarvalhoMB17,https://doi.org/10.1016/j.future.2017.07.019 +Peter Schelkens,Wavelet-based compression of medical images: Protocols to improve resolution and quality scalability and region-of-interest coding.,1999,15,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs15.html#SchelkensMC99,https://doi.org/10.1016/S0167-739X(98)00061-2 +Deqing Zou,Constructing trusted virtual execution environment in P2P grids.,2010,26,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs26.html#ZouZLJC10,https://doi.org/10.1016/j.future.2009.05.020 +Vahid Arabnejad,Scheduling deadline constrained scientific workflows on dynamically provisioned cloud resources.,2017,75,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs75.html#ArabnejadBN17,https://doi.org/10.1016/j.future.2017.01.002 +Dennis D. Cox,On the asymptotically stochastic computational modeling of microstructures.,2004,20,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs20.html#CoxKR04,https://doi.org/10.1016/j.future.2003.07.006 +Louis O. Hertzberger,Preface.,1990,6,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs6.html#Hertzberger90,https://doi.org/10.1016/0167-739X(90)90002-U +Rodrigo N. Calheiros,A coordinator for scaling elastic applications across multiple clouds.,2012,28,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs28.html#CalheirosTVB12,https://doi.org/10.1016/j.future.2012.03.010 +Yang Lu 0001,A pairing-free certificate-based proxy re-encryption scheme for secure data sharing in public clouds.,2016,62,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs62.html#LuL16,https://doi.org/10.1016/j.future.2015.11.012 +Sharon Lloyd,Integrative Biology - the challenges of developing a collaborative research environment for heart and cancer modelling.,2007,23,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs23.html#LloydGSMSWPBRS07,https://doi.org/10.1016/j.future.2006.07.002 +Fei Han,A general transformation from KP-ABE to searchable encryption.,2014,30,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs30.html#HanQZH14,https://doi.org/10.1016/j.future.2013.09.013 +Irina Strizh,Systems Biology and grid technologies: Challenges for understanding complex cell signaling networks.,2007,23,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs23.html#StrizhJTG07,https://doi.org/10.1016/j.future.2006.10.001 +Christos Gogos,Scheduling independent tasks on heterogeneous processors using heuristics and Column Pricing.,2016,60,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs60.html#GogosVAGVH16,https://doi.org/10.1016/j.future.2016.01.016 +Martin Dimkovski,Knowledge technology through functional layered intelligence.,2007,23,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs23.html#DimkovskiD07,https://doi.org/10.1016/j.future.2006.05.006 +Serpil Aslan,Topic recommendation for authors as a link prediction problem.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#AslanK18,https://doi.org/10.1016/j.future.2018.06.050 +Lu Liu 0001,Clouds and service-oriented architectures.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#LiuX13,https://doi.org/10.1016/j.future.2012.05.002 +Laxmi N. Bhuyan,High-performance computer architecture.,1995,11,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs11.html#Bhuyan95,https://doi.org/10.1016/0167-739X(95)00020-S +Josep Subirats,Assessing and forecasting energy efficiency on Cloud computing platforms.,2015,45,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs45.html#SubiratsG15,https://doi.org/10.1016/j.future.2014.11.008 +Muhammad Younas 0001,Editorial: New developments in cloud and IoT.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#YounasAGG18,https://doi.org/10.1016/j.future.2018.05.016 +Yike Guo,Developing a distributed scalable Java component server.,2001,17,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs17.html#GuoW01,https://doi.org/10.1016/S0167-739X(01)00046-2 +Christophe Barberet,Technology transfer within the ProHPC TTN at ENS Lyon.,1999,15,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs15.html#BarberetBDLNRUH99,https://doi.org/10.1016/S0167-739X(98)00076-4 +Zoltán Farkas,Evaluation of hierarchical desktop grid scheduling algorithms.,2012,28,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs28.html#FarkasK12,https://doi.org/10.1016/j.future.2010.12.013 +Gabriel Rodríguez 0001,Performance evaluation of an application-level checkpointing solution on grids.,2010,26,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs26.html#RodriguezPMG10,https://doi.org/10.1016/j.future.2010.04.016 +Alejandro Erickson,Improved routing algorithms in the dual-port datacenter networks HCN and BCN.,2017,75,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs75.html#EricksonSPN17,https://doi.org/10.1016/j.future.2017.05.004 +Meeta Kumar,Socio evolution and learning optimization algorithm: A socio-inspired optimization methodology.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#KumarKS18,https://doi.org/10.1016/j.future.2017.10.052 +Ertem Esiner,Auditable versioned data storage outsourcing.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#EsinerD16,https://doi.org/10.1016/j.future.2015.08.001 +Zafeirios C. Papazachos,Gang scheduling in multi-core clusters implementing migrations.,2011,27,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs27.html#PapazachosK11,https://doi.org/10.1016/j.future.2011.02.010 +Adam Belloum,VLAM-G: a grid-based virtual laboratory.,2003,19,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs19.html#BelloumGHHKLV03,https://doi.org/10.1016/S0167-739X(02)00147-4 +Akira Hirano,The first functional demonstration of optical virtual concatenation as a technique for achieving Terabit networking.,2006,22,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs22.html#HiranoRJLVVSAJDLSBNTTMJTI06,https://doi.org/10.1016/j.future.2006.03.027 +Joseph Nathanael Witanto,Smart government framework with geo-crowdsourcing and social media analysis.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#WitantoLA18a,https://doi.org/10.1016/j.future.2018.06.019 +Marco Carpentieri,Stability analysis of frequency and step length dependent Runge-Kutta-Nyström methods.,2006,22,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs22.html#CarpentieriP06,https://doi.org/10.1016/j.future.2004.11.028 +Kazuyuki Shudo,Asynchronous migration of execution context in Java Virtual Machines.,2001,18,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs18.html#ShudoM01,https://doi.org/10.1016/S0167-739X(00)00100-X +Caifeng Zou,Mining and updating association rules based on fuzzy concept lattice.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#ZouDWWD18,https://doi.org/10.1016/j.future.2017.11.018 +Bernard Goossens,Typing the ISA to cluster the processor.,2002,18,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs18.html#Goossens02,https://doi.org/10.1016/S0167-739X(02)00051-1 +Adelinde M. Uhrmacher,Modeling and simulation of mobile agents.,2000,17,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs17.html#UhrmacherTT00,https://doi.org/10.1016/S0167-739X(99)00107-7 +Boguslaw Butrylo,Parallel SSOR preconditioning implemented on dynamic SMP clusters with communication on the fly.,2010,26,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs26.html#ButryloTM10,https://doi.org/10.1016/j.future.2009.05.005 +Lu Lu 0006,Morpho: A decoupled MapReduce framework for elastic cloud computing.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#LuSJWYW14,https://doi.org/10.1016/j.future.2013.12.026 +Antonios Litke,Managing service level agreement contracts in OGSA-based Grids.,2008,24,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs24.html#LitkeKACV08,https://doi.org/10.1016/j.future.2007.06.004 +Vahid Asghari,Energy and connectivity aware resource optimization of nodes traffic distribution in smart home networks.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#AsghariC18,https://doi.org/10.1016/j.future.2018.05.076 +Roberto R. Expósito,Performance analysis of HPC applications in the cloud.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#ExpositoTRTD13,https://doi.org/10.1016/j.future.2012.06.009 +Xiaohui Cui,GPU enhanced parallel computing for large scale data clustering.,2013,29,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs29.html#CuiCP13,https://doi.org/10.1016/j.future.2012.07.009 +Thuy T. Le,A detailed MPI communication model for distributed systems.,2006,22,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs22.html#LeR06,https://doi.org/10.1016/j.future.2005.08.005 +Ruixuan Li,Efficient multi-keyword ranked query over encrypted data in cloud computing.,2014,30,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs30.html#LiXKYX14,https://doi.org/10.1016/j.future.2013.06.029 +Dennis G. Perry,Network support of supercomputers.,1986,2,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs2.html#Perry86,https://doi.org/10.1016/0167-739X(86)90041-5 +Dipanjan Roy,Low overhead symmetrical protection of reusable IP core using robust fingerprinting and watermarking during high level synthesis.,2017,71,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs71.html#RoyS17,https://doi.org/10.1016/j.future.2017.01.021 +John Michopoulos,On a data-driven environment for multiphysics applications.,2005,21,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs21.html#MichopoulosTHFLRJ05,https://doi.org/10.1016/j.future.2003.12.023 +Carmen De Maio,Unfolding social content evolution along time and semantics.,2017,66,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs66.html#MaioFLO17,https://doi.org/10.1016/j.future.2016.05.039 +Lianyong Qi,A two-stage locality-sensitive hashing based approach for privacy-preserving mobile service recommendation in cross-platform edge environment.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#QiZDHYC18,https://doi.org/10.1016/j.future.2018.02.050 +Jan Ploski,Grid-based deployment and performance measurement of the Weather Research and Forecasting model.,2009,25,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs25.html#PloskiSPBH09,https://doi.org/10.1016/j.future.2008.05.003 +Ajay Kumara M. A.,Automated multi-level malware detection system based on reconstructed semantic view of executables using machine learning techniques at VMM.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#AD18,https://doi.org/10.1016/j.future.2017.06.002 +Gang Li 0009,Special issue on behavior data security issues in network information propagation.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#LiNB14,https://doi.org/10.1016/j.future.2014.02.005 +Michal Kierzynka,Energy efficiency of sequence alignment tools - Software and hardware perspectives.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#KierzynkaKBKHGP17,https://doi.org/10.1016/j.future.2016.05.006 +Ramadan Gad,Iris Recognition Using Multi-Algorithmic Approaches for Cognitive Internet of things (CIoT) Framework.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#GadTEZEEM18,https://doi.org/10.1016/j.future.2018.06.020 +Emmanuel Agullo,QCG-OMPI: MPI applications on grids.,2011,27,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs27.html#AgulloCHLPRCD11,https://doi.org/10.1016/j.future.2010.11.015 +Tom Guérout,Mixed integer linear programming for quality of service optimization in Clouds.,2017,71,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs71.html#GueroutGACLM17,https://doi.org/10.1016/j.future.2016.12.034 +Bas van Oudenaarde,Dynamic paths in multi-domain optical networks for grids.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#OudenaardeHDGLM05,https://doi.org/10.1016/j.future.2004.10.008 +Robert L. Grossman,Experimental studies using photonic data services at IGrid 2002.,2003,19,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs19.html#GrossmanGHHHLLMMW03,https://doi.org/10.1016/S0167-739X(03)00073-6 +Yi Zhou,Towards thermal-aware Hadoop clusters.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#ZhouTDQZJA18,https://doi.org/10.1016/j.future.2018.04.084 +Hessam S. Sarjoughian,Collaborative distributed network system: a lightweight middleware supporting collaborative DEVS modeling.,2000,17,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs17.html#SarjoughianZP00,https://doi.org/10.1016/S0167-739X(99)00106-5 +Tiago C. Ferreto,Server consolidation with migration control for virtualized data centers.,2011,27,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs27.html#FerretoNCR11,https://doi.org/10.1016/j.future.2011.04.016 +Yinlong Zou,A case study of large-scale parallel I/O analysis and optimization for numerical weather prediction system.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#ZouXL14,https://doi.org/10.1016/j.future.2013.12.039 +Renke Wu,EDAWS: A distributed framework with efficient data analytics workspace towards discriminative services for critical infrastructures.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#WuHYZ18,https://doi.org/10.1016/j.future.2017.11.009 +Lijun Yan,Adaptively weighted sub-directional two-dimensional linear discriminant analysis for face recognition.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#YanPCK12,https://doi.org/10.1016/j.future.2010.11.010 +Adnan Ozsoy,Optimizing LZSS compression on GPGPUs.,2014,30,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs30.html#OzsoySC14,https://doi.org/10.1016/j.future.2013.06.022 +Javad Akbari Torkestani,A highly reliable and parallelizable data distribution scheme for data grids.,2013,29,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs29.html#Torkestani13,https://doi.org/10.1016/j.future.2012.07.006 +Kim-Kwang Raymond Choo,A foggy research future: Advances and future opportunities in fog computing research.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#ChooLCY18,https://doi.org/10.1016/j.future.2017.09.014 +Yi-Fan Zhang,Scalable and efficient data distribution for distributed computing of all-to-all comparison problems.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#ZhangTKF17,https://doi.org/10.1016/j.future.2016.08.020 +Roberto Saia,Binary sieves: Toward a semantic approach to user segmentation for behavioral targeting.,2016,64,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs64.html#SaiaBCF16,https://doi.org/10.1016/j.future.2016.04.006 +Rosemary A. Renaut,Editorial.,2003,19,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs19.html#RenautR03,https://doi.org/10.1016/S0167-739X(03)00083-9 +Bastien Chopard,Computational science of lattice Boltzmann modelling.,2004,20,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs20.html#ChopardH04,https://doi.org/10.1016/j.future.2003.12.001 +José María Sierra,Low computational cost integrity for block ciphers.,2004,20,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs20.html#SierraCJR04,https://doi.org/10.1016/j.future.2003.11.006 +Roderick V. N. Melnik,Computational models for multi-scale coupled dynamic problems.,2004,20,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs20.html#MelnikR04,https://doi.org/10.1016/j.future.2003.07.009 +Nazatul Haque Sultan,ICAuth: A secure and scalable owner delegated inter-cloud authorization.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#SultanBL18,https://doi.org/10.1016/j.future.2018.05.066 +Peng Gong,Multi-information location data fusion system of railway signal based on cloud computing.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#GongCCL18,https://doi.org/10.1016/j.future.2018.05.039 +Gunasekaran Manogaran,A new architecture of Internet of Things and big data ecosystem for secured smart healthcare monitoring and alerting system.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#ManogaranVLKST18,https://doi.org/10.1016/j.future.2017.10.045 +Jay Smith,Maximizing stochastic robustness of static resource allocations in a periodic sensor driven cluster.,2014,33,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs33.html#SmithMS14,https://doi.org/10.1016/j.future.2013.10.001 +George Okeyo,Combining ontological and temporal formalisms for composite activity modelling and recognition in smart homes.,2014,39,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs39.html#OkeyoC014,https://doi.org/10.1016/j.future.2014.02.014 +Mario W. L. Moreira,Semantic interoperability and pattern classification for a service-oriented architecture in pregnancy care.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#MoreiraRSAK18,https://doi.org/10.1016/j.future.2018.04.031 +U. Raghavendra,Automated system for the detection of thoracolumbar fractures using a CNN architecture.,2018,85,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs85.html#RaghavendraBGA18,https://doi.org/10.1016/j.future.2018.03.023 +Sarogini Grace Pease,An intelligent real-time cyber-physical toolset for energy and process prediction and optimisation in the future industrial Internet of Things.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#PeaseTDGYKCW18,https://doi.org/10.1016/j.future.2017.09.026 +Dan Chen,Large scale agent-based simulation on the grid.,2008,24,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs24.html#ChenTTCMZ08,https://doi.org/10.1016/j.future.2008.01.004 +Daniel P. Spooner,Performance feature identification by comparative trace analysis.,2006,22,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs22.html#SpoonerK06,https://doi.org/10.1016/j.future.2004.11.022 +Amos R. Omondi,A model for the parallel execution of subset-equational languages.,1995,11,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs11.html#OmondiP95,https://doi.org/10.1016/0167-739X(95)00002-A +Yannan Li,Privacy preserving cloud data auditing with efficient key update.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#LiYYMW18,https://doi.org/10.1016/j.future.2016.09.003 +Mario Cannataro 0001,A parallel logic system on a multicomputer architecture.,1991,6,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs6.html#CannataroST91,https://doi.org/10.1016/0167-739X(91)90002-F +Kaiyang Liu,Multi-device task offloading with time-constraints for energy efficiency in mobile cloud computing.,2016,64,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs64.html#LiuPLZL16,https://doi.org/10.1016/j.future.2016.04.013 +Guillermo Vega-Gorgojo,A semantic approach to discovering learning services in grid-based collaborative systems.,2006,22,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs22.html#Vega-GorgojoBGDA06,https://doi.org/10.1016/j.future.2006.02.012 +Feifei Zhang,A load-aware resource allocation and task scheduling for the emerging cloudlet system.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#ZhangGLLWKLC18,https://doi.org/10.1016/j.future.2018.01.053 +Antonio Corradi,The management of cloud systems.,2014,32,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs32.html#CorradiR14,https://doi.org/10.1016/j.future.2013.10.017 +Thamarai Selvi Somasundaram,CARE Resource Broker: A framework for scheduling and supporting virtual resource management.,2010,26,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs26.html#SomasundaramAKBRRKBMM10,https://doi.org/10.1016/j.future.2009.10.005 +Kazimierz Balos,Open interface for autonomic management of virtualized resources in complex systems - construction methodology.,2008,24,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs24.html#BalosJWZ08,https://doi.org/10.1016/j.future.2007.08.005 +Xiaolin Xu,Rethink the storage of virtual machine images in clouds.,2015,50,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs50.html#XuJWW15,https://doi.org/10.1016/j.future.2014.10.004 +Marta Mattoso,Dynamic steering of HPC scientific workflows: A survey.,2015,46,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs46.html#MattosoDOOCHSO15,https://doi.org/10.1016/j.future.2014.11.017 +Dapeng Wu 0002,Security-oriented opportunistic data forwarding in Mobile Social Networks.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#WuZWW18,https://doi.org/10.1016/j.future.2017.07.028 +Shuhong Chen,Cluster-group based trusted computing for mobile social networks using implicit social behavioral graph.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#ChenWJ16,https://doi.org/10.1016/j.future.2014.06.005 +Masahisa Tabata,Finite element approximation to infinite Prandtl number Boussinesq equations with temperature-dependent coefficients - Thermal convection problems in a spherical shell.,2006,22,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs22.html#Tabata06,https://doi.org/10.1016/j.future.2005.04.008 +Shang-Pin Ma,Contextual service discovery using term expansion and binding coverage analysis.,2015,48,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs48.html#MaLL15,https://doi.org/10.1016/j.future.2014.09.013 +Louis O. Hertzberger,Trends in parallel and distributed computing.,1991,7,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs7.html#Hertzberger91,https://doi.org/10.1016/0167-739X(91)90014-O +Jean-Jacques Duby,The evolution of information technologies in the 90s and its impact on applications.,1991,7,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs7.html#Duby91,https://doi.org/10.1016/0167-739X(91)90012-M +Dieter Kranzlmüller,Error detection in large-scale parallel programs with long run*.,2003,19,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs19.html#KranzlmullerTV03,https://doi.org/10.1016/S0167-739X(02)00178-4 +Spyridon V. Gogouvitis,Workflow management for soft real-time interactive applications in virtualized environments.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#GogouvitisKWKKMKV12,https://doi.org/10.1016/j.future.2011.05.017 +Jau-Yang Chang,An energy-saving routing architecture with a uniform clustering algorithm for wireless body sensor networks.,2014,35,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs35.html#ChangJ14,https://doi.org/10.1016/j.future.2013.09.012 +Javier Palanca Cámara,Deadline prediction scheduling based on benefits.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#CamaraNGJ13,https://doi.org/10.1016/j.future.2012.05.007 +Hans Diel,System structure for parallel logic programming.,1986,2,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs2.html#DielLW86,https://doi.org/10.1016/0167-739X(86)90022-1 +Rodrigo da Rosa Righi,MigPF: Towards on self-organizing process rescheduling of Bulk-Synchronous Parallel applications.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#RighiGRCAPN18,https://doi.org/10.1016/j.future.2016.05.004 +Waleed W. Smari,Recent developments in high performance computing and security: An editorial.,2013,29,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs29.html#SmariSZ13,https://doi.org/10.1016/j.future.2012.08.006 +Muhammad Imran,Aggregated provenance and its implications in clouds.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#ImranHKJKSA18,https://doi.org/10.1016/j.future.2017.10.027 +Maozhen Li,Wrapping MPI-based legacy codes as Java/CORBA components.,2001,18,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs18.html#LiRW01,https://doi.org/10.1016/S0167-739X(00)00093-5 +Tiejiang Liu,SDMS-O: A service deployment management system for optimization in clouds while guaranteeing users' QoS requirements.,2012,28,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs28.html#LiuLWWLGD12,https://doi.org/10.1016/j.future.2011.10.015 +Heidi R. Ammerlahn,A geographically distributed enterprise simulation system.,2000,17,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs17.html#AmmerlahnGJN00,https://doi.org/10.1016/S0167-739X(99)00109-0 +Byoung-Joon Min,An approach to intrusion tolerance for mission-critical services using adaptability and diverse replication.,2004,20,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs20.html#MinC04,https://doi.org/10.1016/S0167-739X(03)00146-8 +Bruno Guazzelli Batista,"Corrigendum to ""A QoS-driven approach for cloud computing addressing attributes of performance and security"" [Future Gener. Comput. Syst. 68 (March) (2017) 260-274].",2017,73,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs73.html#BatistaFSFP17a,https://doi.org/10.1016/j.future.2016.11.018 +Isam Elayyadi,A tensor-based distributed discovery of missing association rules on the cloud.,2014,35,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs35.html#ElayyadiBOY14,https://doi.org/10.1016/j.future.2013.11.002 +Jordi Ros-Giralt,Algorithms and data structures to accelerate network analysis.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#Ros-GiraltCCL18,https://doi.org/10.1016/j.future.2018.04.034 +Iakovos Gurulian,You can't touch this: Consumer-centric android application repackaging detection.,2016,65,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs65.html#GurulianMCM16,https://doi.org/10.1016/j.future.2016.05.021 +Reza Entezari-Maleki,A probabilistic task scheduling method for grid environments.,2012,28,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs28.html#Entezari-MalekiM12,https://doi.org/10.1016/j.future.2011.09.005 +Gregory Giuliani,Grid-enabled Spatial Data Infrastructure for environmental sciences: Challenges and opportunities.,2011,27,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs27.html#GiulianiRL11,https://doi.org/10.1016/j.future.2010.09.011 +Dimitrios Rafailidis,Landmark selection for spectral clustering based on Weighted PageRank.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#RafailidisCM17,https://doi.org/10.1016/j.future.2016.03.006 +Rosa M. Badia,Special section: Selected papers from the 7th IEEE/ACM international conference on grid computing (Grid2006).,2008,24,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs24.html#BadiaGL08,https://doi.org/10.1016/j.future.2007.11.001 +Vicente Blanco Pérez,AVISPA: visualizing the performance prediction of parallel iterative solvers.,2003,19,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs19.html#BlancoGCHPPR03,https://doi.org/10.1016/S0167-739X(02)00180-2 +David Antón,Real-time communication for Kinect-based telerehabilitation.,2017,75,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs75.html#AntonKGIB17,https://doi.org/10.1016/j.future.2017.05.006 +Kalpana Singh,Aggregating privatized medical data for secure querying applications.,2017,72,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs72.html#SinghB17,https://doi.org/10.1016/j.future.2016.11.028 +Ruxandra Bondarescu,The Astrophysics Simulation Collaboratory Portal: a framework for effective distributed research.,2005,21,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs21.html#BondarescuADKRSST05,https://doi.org/10.1016/j.future.2003.10.008 +Tapio Niemi,Towards Green Big Data at CERN.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#NiemiNLH18,https://doi.org/10.1016/j.future.2017.11.001 +Witold Dzwinel,Virtual particles and search for global minimum.,1997,12,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs12.html#Dzwinel97,https://doi.org/10.1016/S0167-739X(96)00024-6 +Antonio Corradi,VM consolidation: A real case based on OpenStack Cloud.,2014,32,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs32.html#CorradiFF14,https://doi.org/10.1016/j.future.2012.05.012 +Cees de Laat,The rationale of the current optical networking initiatives.,2003,19,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs19.html#LaatRW03,https://doi.org/10.1016/S0167-739X(03)00077-3 +Ki-Won Yeom,Morphological approach for autonomous and adaptive systems based on self-reconfigurable modular agents.,2012,28,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs28.html#YeomP12,https://doi.org/10.1016/j.future.2011.03.002 +Csaba Attila Marosi,Towards a volunteer cloud system.,2013,29,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs29.html#MarosiKK13,https://doi.org/10.1016/j.future.2012.03.013 +Jiatang Cheng,Cuckoo search algorithm with dynamic feedback information.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#ChengWJCX18,https://doi.org/10.1016/j.future.2018.06.056 +Fabrizio Baiardi,Integrating load balancing and locality in the parallelization of irregular problems.,2001,17,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs17.html#BaiardiCMR01,https://doi.org/10.1016/S0167-739X(01)00039-5 +Miguel Sánchez López,ANEJOS: a Java based simulator for ad hoc networks.,2001,17,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs17.html#LopezM01,https://doi.org/10.1016/S0167-739X(00)00040-6 +Claudia Bauzer Medeiros,eScience today and tomorrow.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#MedeirosK16,https://doi.org/10.1016/j.future.2015.10.016 +Chuliang Weng,Heuristic scheduling for bag-of-tasks applications in combination with QoS in the computational grid.,2005,21,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs21.html#WengL05,https://doi.org/10.1016/j.future.2003.10.004 +Leo Grange,Green IT scheduling for data center powered with renewable energy.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#GrangeCS18,https://doi.org/10.1016/j.future.2018.03.049 +Jun Wu,Energy-efficient scheduling of real-time tasks with shared resources.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#Wu16,https://doi.org/10.1016/j.future.2015.05.012 +Reind P. van de Riet,An overview and appraisal of the Fifth Generation Computer System project.,1993,9,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs9.html#Riet93a,https://doi.org/10.1016/0167-739X(93)90002-7 +Md. Shamsul Huda,A hybrid-multi filter-wrapper framework to identify run-time behaviour for fast malware detection.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#HudaIAYHF18,https://doi.org/10.1016/j.future.2017.12.037 +Robert Kukla,Intelligent storage devices for scalable information management systems.,1997,12,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs12.html#KuklaK97,https://doi.org/10.1016/S0167-739X(96)00020-9 +Nick Antonopoulos,Special section: Management and optimisation of P2P and Grid systems with network economics.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#AntonopoulosR10,https://doi.org/10.1016/j.future.2010.04.010 +Thara Angskun,Self-healing network for scalable fault-tolerant runtime environments.,2010,26,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs26.html#AngskunFBPD10,https://doi.org/10.1016/j.future.2009.04.001 +John A. Keane,Parallelising a financial system.,1993,9,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs9.html#Keane93,https://doi.org/10.1016/0167-739X(93)90025-K +George A. Papadopoulos,Modelling and implementing asynchronous timed multimedia frameworks using coordination principles.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#Papadopoulos05,https://doi.org/10.1016/j.future.2004.05.009 +Hamoun Ghanbari,Feedback-based optimization of a private cloud.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#GhanbariSLI12,https://doi.org/10.1016/j.future.2011.05.019 +Bram Stolk,Building a 100 Mpixel graphics device for the OptIPuter.,2006,22,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs22.html#StolkW06,https://doi.org/10.1016/j.future.2006.03.010 +H. Martin Bücker,Parallel programming in computational science: an introductory practical training course for computer science undergraduates at Aachen University.,2003,19,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs19.html#BuckerLB03,https://doi.org/10.1016/S0167-739X(03)00089-X +Jianxin Li,CyberGuarder: A virtualization security assurance architecture for green cloud computing.,2012,28,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs28.html#LiLWHHLL12,https://doi.org/10.1016/j.future.2011.04.012 +Hendrik Pieter Barendregt,The Dutch parallel reduction machine project.,1987,3,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs3.html#BarendregtEPHHV87,https://doi.org/10.1016/0167-739X(87)90030-6 +Mohamed Abdel-Basset,Three-way decisions based on neutrosophic sets and AHP-QFD framework for supplier selection problem.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#Abdel-BassetMMC18,https://doi.org/10.1016/j.future.2018.06.024 +Moneeb Gohar,CoAP-based group mobility management protocol for the Internet-of-Things in WBAN environment.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#GoharCK18,https://doi.org/10.1016/j.future.2018.06.003 +Zhiyi Huang 0001,Handling side-effects and cuts with selective recomputation in parallel Prolog.,2000,17,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs17.html#HuangSS00,https://doi.org/10.1016/S0167-739X(99)00083-7 +Nivethitha Somu,A computational model for ranking cloud service providers using hypergraph based techniques.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#SomuKS17,https://doi.org/10.1016/j.future.2016.08.014 +Thomas Mailund,Experiences with GeneRecon on MiG.,2007,23,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs23.html#MailundPBVK07,https://doi.org/10.1016/j.future.2006.09.003 +Bryan Raney,Iterative route planning for large-scale modular transportation simulations.,2004,20,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs20.html#RaneyN04,https://doi.org/10.1016/j.future.2003.11.001 +Yang Yang 0026,Privacy-preserving fusion of IoT and big data for e-health.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#YangZGLC18,https://doi.org/10.1016/j.future.2018.01.003 +Kang Zhang,Exploiting OR-parallelism in logic programs: A review.,1993,9,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs9.html#Zhang93,https://doi.org/10.1016/0167-739X(93)90016-I +Mohamed Khalil Hani,Biometric encryption based on a fuzzy vault scheme with a fast chaff generation algorithm.,2013,29,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs29.html#HaniMB13,https://doi.org/10.1016/j.future.2012.02.002 +Reind P. van de Riet,Problems with expert systems?,1987,3,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs3.html#Riet87,https://doi.org/10.1016/0167-739X(87)90039-2 +Antonio Celesti,Virtual machine provisioning through satellite communications in federated Cloud environments.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#CelestiFVP12,https://doi.org/10.1016/j.future.2011.05.021 +Van-Hau Pham,Honeypot trace forensics: The observation viewpoint matters.,2011,27,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs27.html#PhamD11,https://doi.org/10.1016/j.future.2010.06.004 +Hongjian You,Fast rectifying airborne infrared scanning image based on GPS and INS.,2004,20,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs20.html#HongjianSS04,https://doi.org/10.1016/j.future.2003.11.010 +Jie Tao,Special section: Tools for program development and analysis in computational science.,2010,26,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs26.html#TaoBKKVW10,https://doi.org/10.1016/j.future.2009.06.002 +Anthony Sulistio,On incorporating differentiated levels of network service into GridSim.,2007,23,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs23.html#SulistioPBT07,https://doi.org/10.1016/j.future.2006.10.006 +Hai Zhuge,A fuzzy collaborative assessment approach for Knowledge Grid.,2004,20,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs20.html#ZhugeL04a,https://doi.org/10.1016/S0167-739X(03)00167-5 +Jian Shen 0001,A lightweight multi-layer authentication protocol for wireless body area networks.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#ShenCSLS18,https://doi.org/10.1016/j.future.2016.11.033 +Seoksoo Kim,Structure design and test of enterprise security management system with advanced internal security.,2009,25,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs25.html#KimKL09a,https://doi.org/10.1016/j.future.2006.04.019 +Stefan Plantikow,Generalizing the data management of three community grids.,2009,25,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs25.html#PlantikowPHGP09,https://doi.org/10.1016/j.future.2008.05.001 +Stephen Kershaw,A study of constant bit-rate data transfer over TCP/IP.,2010,26,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs26.html#KershawH10,https://doi.org/10.1016/j.future.2009.03.007 +James Salter,An optimized two-tier P2P architecture for contextualized keyword searches.,2007,23,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs23.html#SalterA07,https://doi.org/10.1016/j.future.2006.07.014 +Kary A. C. S. Ocaña,Designing a parallel cloud based comparative genomics workflow to improve phylogenetic analyses.,2013,29,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs29.html#OcanaODOM13,https://doi.org/10.1016/j.future.2013.04.005 +Sumalatha Adabala,From virtualized resources to virtual computing grids: the In-VIGO system.,2005,21,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs21.html#AdabalaCCFFKMTZZZZ05,https://doi.org/10.1016/j.future.2003.12.021 +Wei Zhang 0049,An efficient latency monitoring scheme in software defined networks.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#ZhangZSZ18,https://doi.org/10.1016/j.future.2018.01.033 +Christian Esposito,Improving the gossiping effectiveness with distributed strategic learning (Invited paper).,2017,71,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs71.html#EspositoCPF17,https://doi.org/10.1016/j.future.2016.11.006 +Piotr Jedrzejowicz,Evolution-based scheduling of multiple variant and multiple processor programs.,2001,17,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs17.html#JedrzejowiczCSS01,https://doi.org/10.1016/S0167-739X(99)00121-1 +Jin Liu,An Embedded Co-AdaBoost based construction of software document relation coupled resource spaces for cyber-physical society.,2014,32,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs32.html#LiuLSXLH14,https://doi.org/10.1016/j.future.2012.12.017 +Jörn Altmann,Cost model based service placement in federated hybrid clouds.,2014,41,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs41.html#AltmannK14,https://doi.org/10.1016/j.future.2014.08.014 +Weifeng Pan,Structure-aware Mashup service Clustering for cloud-based Internet of Things using genetic algorithm based clustering algorithm.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#PanC18,https://doi.org/10.1016/j.future.2018.04.052 +M. Mazhar Rathore,Real-time secure communication for Smart City in high-speed Big Data environment.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#RathorePACHS18,https://doi.org/10.1016/j.future.2017.08.006 +Carlos Pérez-Miguel,High throughput computing over peer-to-peer networks.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#Perez-MiguelMM13,https://doi.org/10.1016/j.future.2011.08.011 +Khizar Hameed,Towards a formally verified zero watermarking scheme for data integrity in the Internet of Things based-wireless sensor networks.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#HameedKAAR18,https://doi.org/10.1016/j.future.2017.12.009 +Libing Wu,Efficient and secure identity-based encryption scheme with equality test in cloud computing.,2017,73,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs73.html#WuZCH17,https://doi.org/10.1016/j.future.2017.03.007 +Ivan Merelli,Low-power portable devices for metagenomics analysis: Fog computing makes bioinformatics ready for the Internet of Things.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#MerelliMCPCRZD18,https://doi.org/10.1016/j.future.2018.05.010 +Kyriakos Kritikos,"Reprint of ""Towards a security-enhanced PaaS platform for multi-cloud applications"".",2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#KritikosKKM18,https://doi.org/10.1016/j.future.2016.11.014 +Mohamed Amine Bouazzouni,Trusted mobile computing: An overview of existing solutions.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#BouazzouniCP18,https://doi.org/10.1016/j.future.2016.05.033 +Haris Pervaiz,User adaptive QoS aware selection method for cooperative heterogeneous wireless systems: A dynamic contextual approach.,2014,39,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs39.html#PervaizNZ14,https://doi.org/10.1016/j.future.2014.02.012 +Hyunwoo Joe,Effects of dynamic isolation for full virtualized RTOS and GPOS guests.,2017,70,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs70.html#JoeK17,https://doi.org/10.1016/j.future.2016.12.020 +Hai Zhuge,Extended resource space model.,2005,21,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs21.html#ZhugeYXL05,https://doi.org/10.1016/j.future.2004.09.016 +Janardhan Singaraju,Active storage networks: Using embedded computation in the network switch for cluster data processing.,2015,45,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs45.html#SingarajuTC15,https://doi.org/10.1016/j.future.2014.10.020 +Ralf H. Reussner,Using SKaMPI for developing high-performance MPI programs with performance portability.,2003,19,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs19.html#Reussner03a,https://doi.org/10.1016/S0167-739X(02)00182-6 +David Castro,Automatically deriving cost models for structured parallel processes using hylomorphisms.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#CastroHSA18,https://doi.org/10.1016/j.future.2017.04.035 +Gagangeet Singh Aujla,MEnSuS: An efficient scheme for energy management with sustainability of cloud data centers in edge-cloud environment.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#AujlaK18,https://doi.org/10.1016/j.future.2017.09.066 +Carles Pairot,Towards new load-balancing schemes for structured peer-to-peer grids.,2005,21,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs21.html#PairotGGM05,https://doi.org/10.1016/j.future.2004.09.024 +Jiwan Lee,Clustering learning model of CCTV image pattern for producing road hazard meteorological information.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#LeeHJC18,https://doi.org/10.1016/j.future.2018.03.022 +Kai Wang,Global and localized parallel preconditioning techniques for large scale solid Earth simulations.,2003,19,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs19.html#WangKZNO03,https://doi.org/10.1016/S0167-739X(03)00030-X +Louis Gesbert,Bulk synchronous parallel ML with exceptions.,2010,26,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs26.html#GesbertGLD10,https://doi.org/10.1016/j.future.2009.05.021 +Muhammad Asim Rehmat,A unified framework for automated inspection of handheld safety critical devices in production assemblies.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#RehmatSRA18,https://doi.org/10.1016/j.future.2018.05.072 +Francesco Palmieri,GRASP-based resource re-optimization for effective big data access in federated clouds.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#PalmieriFRC16,https://doi.org/10.1016/j.future.2015.01.017 +Changjun Hu,A Virtual Dataspaces Model for large-scale materials scientific data access.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#HuLCL16,https://doi.org/10.1016/j.future.2015.05.004 +Malgorzata Dudkiewicz,Correspondence between mutation and selection pressure and the genetic code degeneracy in the gene evolution.,2005,21,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs21.html#DudkiewiczMNKMPSBDC05,https://doi.org/10.1016/j.future.2004.03.003 +Despina Polemi,TTPs and biometrics for securing the payment of telemedical services.,1999,15,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs15.html#Polemi99,https://doi.org/10.1016/S0167-739X(98)00069-7 +George A. Gravvanis,Special section: Grid technology and applications.,2007,23,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs23.html#GravvanisMA07,https://doi.org/10.1016/j.future.2006.10.007 +Stuart Fiske,Thread prioritization: A thread scheduling mechanism for multiple-context parallel processors.,1995,11,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs11.html#FiskeD95,https://doi.org/10.1016/0167-739X(95)00021-J +Huaqun Wang,PAT: A precise reward scheme achieving anonymity and traceability for crowdcomputing in public clouds.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#WangHSKC18,https://doi.org/10.1016/j.future.2016.12.005 +Xiaoling Li,Resource allocation with multi-factor node ranking in data center networks.,2014,32,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs32.html#LiWDLF14,https://doi.org/10.1016/j.future.2013.09.028 +César Acevedo,A Critical Path File Location (CPFL) algorithm for data-aware multiworkflow scheduling on HPC clusters.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#AcevedoHEM17,https://doi.org/10.1016/j.future.2017.04.025 +Syed Imran Shafiq,Towards an experience based collective computational intelligence for manufacturing.,2017,66,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs66.html#ShafiqSST17,https://doi.org/10.1016/j.future.2016.04.022 +Yingxue Wang,Gait-based Human identification using acoustic sensor and deep neural network.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#WangCBHZL18,https://doi.org/10.1016/j.future.2017.07.012 +Hideo Aiso,The fifth generation computer systems project.,1988,4,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs4.html#Aiso88,https://doi.org/10.1016/0167-739X(88)90001-5 +Václav Chvalovský,Knowledge processing: Beware of stalemate.,1987,3,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs3.html#Chvalovsky87,https://doi.org/10.1016/0167-739X(87)90002-1 +Mainak Adhikari,Heuristic-based load-balancing algorithm for IaaS cloud.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#AdhikariA18,https://doi.org/10.1016/j.future.2017.10.035 +Ming Tao,Ontology-based data semantic management and application in IoT- and cloud-enabled smart homes.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#TaoOD17,https://doi.org/10.1016/j.future.2016.11.012 +Michel Raynal,Wait-free computing: an introductory lecture.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#Raynal05,https://doi.org/10.1016/j.future.2004.05.005 +Rupeng Yang,Position based cryptography with location privacy: A step for Fog Computing.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#YangXAYWZ18,https://doi.org/10.1016/j.future.2017.05.035 +Françoise Baude,Optimizing remote method invocation with communication-computation overlap.,2002,18,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs18.html#BaudeCFS02,https://doi.org/10.1016/S0167-739X(02)00049-3 +Ron Oldfield,Armada: a parallel I/O framework for computational grids.,2002,18,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs18.html#OldfieldK02,https://doi.org/10.1016/S0167-739X(01)00076-0 +Gabriele Mencagli,The home-forwarding mechanism to reduce the cache coherence overhead in next-generation CMPs.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#MencagliVL18,https://doi.org/10.1016/j.future.2017.01.009 +Jacek Rokicki,Parallel performance of overlapping mesh technique for compressible flows.,2001,18,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs18.html#RokickiZDM01,https://doi.org/10.1016/S0167-739X(00)00071-6 +Kazuo Maeda,A knowledge-based system for the wastewater treatment plant.,1989,5,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs5.html#Maeda89,https://doi.org/10.1016/0167-739X(89)90017-4 +R. Argentini,Efficiently using memory in lattice Boltzmann simulations.,2004,20,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs20.html#ArgentiniBL04,https://doi.org/10.1016/j.future.2003.12.010 +Herbert Praehofer,Concepts and architecture of a simulation framework based on the JavaBeans component model.,2001,17,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs17.html#PraehoferSS01,https://doi.org/10.1016/S0167-739X(00)00038-8 +Fagen Li,A biometric identity-based signcryption scheme.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#LiK12,https://doi.org/10.1016/j.future.2010.11.004 +Cosmin Dumitru,A user-centric execution environment for CineGrid workloads.,2015,53,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs53.html#DumitruGL15,https://doi.org/10.1016/j.future.2015.03.021 +Jue Wang,Auto tuning for new energy dispatch problem: A case study.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#WangLH16,https://doi.org/10.1016/j.future.2015.02.011 +Dieter Wybranietz,The LADY programming environment for distributed operating systems.,1990,6,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs6.html#WybranietzB90,https://doi.org/10.1016/0167-739X(90)90020-E +Qi Han,Efficient and robust attribute-based encryption supporting access policy hiding in Internet of Things.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#HanZL18,https://doi.org/10.1016/j.future.2018.01.019 +Ruay-Shiung Chang,A resource discovery tree using bitmap for grids.,2010,26,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs26.html#ChangH10,https://doi.org/10.1016/j.future.2009.06.003 +L. Javier García-Villalba,Advanced Payload Analyzer Preprocessor.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#Garcia-Villalba17a,https://doi.org/10.1016/j.future.2016.10.032 +Fatma Alali,Calibers: A bandwidth calendaring paradigm for science workflows.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#AlaliHPKKMTKG18,https://doi.org/10.1016/j.future.2018.07.030 +Javeria Amin,Big data analysis for brain tumor detection: Deep convolutional neural networks.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#AminSYF18,https://doi.org/10.1016/j.future.2018.04.065 +Prachya Chalermwat,2-phase GA-based image registration on parallel clusters.,2001,17,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs17.html#ChalermwatEM01,https://doi.org/10.1016/S0167-739X(99)00131-4 +Le Sun,Cloud-FuSeR: Fuzzy ontology and MCDM based cloud service selection.,2016,57,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs57.html#SunMZDH16,https://doi.org/10.1016/j.future.2015.11.025 +Athanasios Moralis,A Kerberos security architecture for web services based instrumentation grids.,2009,25,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs25.html#MoralisPPM09,https://doi.org/10.1016/j.future.2008.11.004 +Orcun Yildiz,Improving the Effectiveness of Burst Buffers for Big Data Processing in HPC Systems with Eley.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#YildizZI18,https://doi.org/10.1016/j.future.2018.03.029 +Xavier Aimé,Social psychology insights into ontology engineering.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#AimeC16,https://doi.org/10.1016/j.future.2015.05.002 +Anatoly E. Doroshenko,Retargetable code generation for application-specific processors.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#DoroshenkoR05,https://doi.org/10.1016/j.future.2004.05.008 +Alexander Reinefeld,GuiGen: a toolset for creating customized interfaces for grid user communities.,2002,18,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs18.html#ReinefeldSSD02,https://doi.org/10.1016/S0167-739X(02)00086-9 +H. Martin Bücker,Looking for narrow interfaces in automatic differentiation using graph drawing.,2005,21,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs21.html#Bucker05a,https://doi.org/10.1016/j.future.2004.11.007 +Amritpal Singh,Ensemble based spam detection in social IoT using probabilistic data structures.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#SinghB18,https://doi.org/10.1016/j.future.2017.09.072 +Cheng Chang,Performance analysis and optimization for workflow authorization.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#ChangHCFCSLFX17,https://doi.org/10.1016/j.future.2016.09.011 +Tao Huang,A fog computing based concept drift adaptive process mining framework for mobile APPs.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#HuangXCDCH18,https://doi.org/10.1016/j.future.2018.07.034 +Gad Aharoni,An adaptive granularity control algorithm for the parallel execution of functional programs.,1993,9,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs9.html#AharoniBF93,https://doi.org/10.1016/0167-739X(93)90010-M +Iuon-Chang Lin,A new key assignment scheme for enforcing complicated access control policies in hierarchy.,2003,19,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs19.html#LinHC03,https://doi.org/10.1016/S0167-739X(02)00200-5 +Marco Dorigo,Ant algorithms.,2000,16,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs16.html#DorigoCS00,https://doi.org/10.1016/S0167-739X(00)00041-8 +Marisol García-Valls,Low complexity reconfiguration for real-time data-intensive service-oriented applications.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#Garcia-VallsUIB14,https://doi.org/10.1016/j.future.2013.10.019 +Gang Zeng,Energy-aware task migration for multiprocessor real-time systems.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#ZengMTT16,https://doi.org/10.1016/j.future.2015.07.008 +Vittorio Maniezzo,An ANTS heuristic for the frequency assignment problem.,2000,16,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs16.html#ManiezzoC00,https://doi.org/10.1016/S0167-739X(00)00046-7 +Chengfeng Jian,An improved NBA-based STEP design intention feature recognition.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#JianLQZ18,https://doi.org/10.1016/j.future.2018.05.033 +Mieczyslaw Muraszkiewicz,Cellular array architecture for relational database implementation.,1988,4,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs4.html#Muraszkiewicz88,https://doi.org/10.1016/0167-739X(88)90017-9 +Marek J. Sergot,Contributions of FGCS technology to applications in legal reasoning.,1995,11,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs11.html#Sergot95,https://doi.org/10.1016/0167-739X(95)00003-B +Raphaël Chand,Powerful resource discovery for Arigatoni overlay network.,2008,24,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs24.html#ChandCL08,https://doi.org/10.1016/j.future.2007.02.009 +Javier Celaya,Fair scheduling of bag-of-tasks applications on large-scale platforms.,2015,49,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs49.html#CelayaA15,https://doi.org/10.1016/j.future.2015.03.002 +Daisuke Shirai,Real time switching and streaming transmission of uncompressed 4K motion pictures.,2009,25,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs25.html#ShiraiKFKOOAO09,https://doi.org/10.1016/j.future.2008.07.003 +Olfa Haggui,Harris corner detection on a NUMA manycore.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#HagguiTLSO18,https://doi.org/10.1016/j.future.2018.01.048 +Wu-Chun Chung,A new mechanism for resource monitoring in Grid computing.,2009,25,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs25.html#ChungC09,https://doi.org/10.1016/j.future.2008.04.008 +Luca Dieci,Orthonormal integrators based on Householder and Givens transformations.,2003,19,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs19.html#DieciV03,https://doi.org/10.1016/S0167-739X(02)00163-2 +Eiman Iranpour,A distributed load balancing and admission control algorithm based on Fuzzy type-2 and Game theory for large-scale SaaS cloud architectures.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#IranpourS18,https://doi.org/10.1016/j.future.2018.03.045 +Wei Liang,Modeling of cross-disciplinary collaboration for potential field discovery and recommendation based on scholarly big data.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#LiangZHHXJ18,https://doi.org/10.1016/j.future.2017.12.038 +William Tärneberg,Dynamic application placement in the Mobile Cloud Network.,2017,70,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs70.html#TarnebergMWTEKE17,https://doi.org/10.1016/j.future.2016.06.021 +Yuexin Zhang,An over-the-air key establishment protocol using keyless cryptography.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#ZhangXWWS18,https://doi.org/10.1016/j.future.2016.12.013 +Mark Sofroniou,Increment formulations for rounding error reduction in the numerical solution of structured differential systems.,2003,19,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs19.html#SofroniouS03,https://doi.org/10.1016/S0167-739X(02)00164-4 +Bogdan-Cosmin Chifor,A security authorization scheme for smart home Internet of Things devices.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#ChiforBPP18,https://doi.org/10.1016/j.future.2017.05.048 +José Duato,Improving the efficiency of virtual channels with time-dependent selection functions.,1994,10,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs10.html#Duato94,https://doi.org/10.1016/0167-739X(94)90050-7 +Jie Tao,Comprehensive cache performance tuning with a toolset.,2010,26,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs26.html#Tao10,https://doi.org/10.1016/j.future.2009.07.010 +G. Della Vecchia,A recursively scalable network VLSI implementation.,1988,4,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs4.html#VecchiaS88,https://doi.org/10.1016/0167-739X(88)90007-6 +Andrea Barisone,JSBricks: a suite of microbenchmarks for the evaluation of Java as a scientific execution environment.,2001,18,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs18.html#BarisoneBBG01,https://doi.org/10.1016/S0167-739X(00)00097-2 +Thierry D. Fualdes,A common framework for reasoning on uncertainty both at symbolic and numerical levels.,1993,9,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs9.html#FualdesB93,https://doi.org/10.1016/0167-739X(93)90036-O +Martyn F. Guest,High-performance computing in chemistry: NW Chem.,1996,12,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs12.html#GuestABFHKKLNNTWFLN96,https://doi.org/10.1016/S0167-739X(97)80002-E +Yongcai Tao,Scalable DHT- and ontology-based information service for large-scale grids.,2010,26,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs26.html#TaoJWS10,https://doi.org/10.1016/j.future.2009.06.001 +Fang-Yie Leu,Improving reliability of a heterogeneous grid-based intrusion detection platform using levels of redundancies.,2010,26,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs26.html#LeuYJ10,https://doi.org/10.1016/j.future.2009.10.008 +Wei Zhu,A three-dimensional virtual resource scheduling method for energy saving in cloud computing.,2017,69,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs69.html#ZhuZZ17,https://doi.org/10.1016/j.future.2016.10.034 +Katia Leal,Anticipating resource saturation in Federated Grids.,2015,45,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs45.html#Leal15,https://doi.org/10.1016/j.future.2014.10.025 +Jorge Bernal Bernabé,Semantic-aware multi-tenancy authorization system for cloud architectures.,2014,32,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs32.html#BernabePCCPG14,https://doi.org/10.1016/j.future.2012.05.011 +Ginés Dólera Tormo,Dynamic and flexible selection of a reputation mechanism for heterogeneous environments.,2015,49,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs49.html#TormoMP15,https://doi.org/10.1016/j.future.2014.06.006 +Jin B. Kwon,Generalized data retrieval for pyramid-based periodic broadcasting of videos.,2004,20,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs20.html#KwonY04,https://doi.org/10.1016/S0167-739X(03)00151-1 +Yutaka Ohno,Editorial.,1985,1,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs1.html#OhnoN85,https://doi.org/10.1016/0167-739X(85)90001-9 +Luis Miguel Vaquero,On Measuring Disturbances in the Force: Advanced Cloud Monitoring Systems.,2013,29,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs29.html#VaqueroLCNCAN13,https://doi.org/10.1016/j.future.2013.04.024 +Kuan Lu,Fault-tolerant Service Level Agreement lifecycle management in clouds using actor system.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#LuYWYASK16,https://doi.org/10.1016/j.future.2015.03.016 +David Antón,User experience and interaction performance in 2D/3D telecollaboration.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#AntonKB18,https://doi.org/10.1016/j.future.2017.12.055 +Jun Ye,Image search scheme over encrypted database.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#YeXD18,https://doi.org/10.1016/j.future.2018.02.045 +Péter Kacsuk,Solving the grid interoperability problem by P-GRADE portal at workflow level.,2008,24,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs24.html#KacsukKS08,https://doi.org/10.1016/j.future.2008.02.008 +Ana Zambrano,Technologies of Internet of Things applied to an Earthquake Early Warning System.,2017,75,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs75.html#ZambranoPPE17,https://doi.org/10.1016/j.future.2016.10.009 +John R. Gurd,Performance issues in dataflow machines.,1987,3,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs3.html#GurdBT87,https://doi.org/10.1016/0167-739X(87)90033-1 +Thomas Vissers,DDoS defense system for web services in a cloud environment.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#VissersSPGH14,https://doi.org/10.1016/j.future.2014.03.003 +Song Wu,Android Unikernel: Gearing mobile code offloading towards edge computing.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#WuMJW18,https://doi.org/10.1016/j.future.2018.04.069 +Giulio Iannello,Parallel software development in the DISC programming environment.,1990,5,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs5.html#IannelloMSV90,https://doi.org/10.1016/0167-739X(90)90036-D +A. Andronico,GENIUS: a simple and easy way to access computational and data grids.,2003,19,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs19.html#AndronicoBFKRPR03,https://doi.org/10.1016/S0167-739X(03)00061-X +Xiaofei Liao,Towards a green cluster through dynamic remapping of virtual machines.,2012,28,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs28.html#LiaoJL12,https://doi.org/10.1016/j.future.2011.04.013 +K. Ravikanth,A reduction architecture for the optimal scheduling of binary trees.,1988,4,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs4.html#RavikanthSRV88,https://doi.org/10.1016/0167-739X(88)90006-4 +Tarek R. Sheltami,Data compression techniques in Wireless Sensor Networks.,2016,64,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs64.html#SheltamiMS16,https://doi.org/10.1016/j.future.2016.01.015 +Przemyslaw Lenkiewicz,Energy-efficient data transfers in radio astronomy with software UDP RDMA.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#LenkiewiczBM18,https://doi.org/10.1016/j.future.2017.03.027 +Giuseppe Pirrò,A framework for distributed knowledge management: Design and implementation.,2010,26,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs26.html#PirroMT10,https://doi.org/10.1016/j.future.2009.06.004 +Josep Oriol Fitó,Business-driven management of infrastructure-level risks in Cloud providers.,2014,32,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs32.html#FitoG14,https://doi.org/10.1016/j.future.2012.05.008 +Esmail Asyabi,ppXen: A hypervisor CPU scheduler for mitigating performance variability in virtualized clouds.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#AsyabiSB18,https://doi.org/10.1016/j.future.2018.01.015 +François Flückiger,Guest editorial.,2003,19,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs19.html#Fluckiger03,https://doi.org/10.1016/S0167-739X(02)00144-9 +Edelberto F. Silva,ACROSS: A generic framework for attribute-based access control with distributed policies for virtual organizations.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#SilvaMF18,https://doi.org/10.1016/j.future.2017.07.049 +Robert van Liere,Computational steering.,1997,12,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs12.html#LiereMW97,https://doi.org/10.1016/S0167-739X(96)00029-5 +Tomasz Kajdanowicz,Parallel processing of large graphs.,2014,32,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs32.html#KajdanowiczKI14,https://doi.org/10.1016/j.future.2013.08.007 +Ayong Ye,The flexible and privacy-preserving proximity detection in mobile social network.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#YeCXW18,https://doi.org/10.1016/j.future.2016.12.012 +Francesco Palmieri,Network-aware scheduling for real-time execution support in data-intensive optical Grids.,2009,25,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs25.html#Palmieri09,https://doi.org/10.1016/j.future.2008.11.006 +Iakovos Gurulian,"Reprint of ""You can't touch this: Consumer-centric android application repackaging detection"".",2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#GurulianMCM18,https://doi.org/10.1016/j.future.2017.11.011 +Daniele De Sensi,Simplifying self-adaptive and power-aware computing with Nornir.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#SensiMD18,https://doi.org/10.1016/j.future.2018.05.012 +Sheng Uei Guan,Modeling adaptable multimedia and self-modifying protocol execution.,2004,20,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs20.html#GuanL04,https://doi.org/10.1016/S0167-739X(03)00127-4 +Cornelis Vuik,Coarse grid acceleration of a parallel block preconditioner.,2001,17,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs17.html#VuikF01,https://doi.org/10.1016/S0167-739X(01)00035-8 +Zhicheng Cai,A delay-based dynamic scheduling algorithm for bag-of-task workflows with stochastic task execution * in clouds.,2017,71,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs71.html#CaiLRL17,https://doi.org/10.1016/j.future.2017.01.020 +Milan Kabát,High-performance forward error correction: Enabling multi-gigabit flows and beyond on commodity GPU and CPU hardware in presence of packet loss.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#KabatDHP16,https://doi.org/10.1016/j.future.2015.04.007 +Asim YarKhan,Biological sequence alignment on the computational grid using the GrADS framework.,2005,21,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs21.html#YarKhanD05,https://doi.org/10.1016/j.future.2005.02.002 +Sumit Naiksatam,Elastic reservations for efficient bandwidth utilization in LambdaGrids.,2007,23,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs23.html#NaiksatamF07,https://doi.org/10.1016/j.future.2006.02.013 +Seungmin Park 0001,Improving prediction level of prefetching for location-aware mobile information service.,2004,20,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs20.html#ParkKC04,https://doi.org/10.1016/S0167-739X(03)00134-1 +Thepparit Banditwattanawong,Multi-provider cloud computing network infrastructure optimization.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#Banditwattanawong16,https://doi.org/10.1016/j.future.2015.09.002 +Maozhen Li,SGrid: a service-oriented model for the Semantic Grid.,2004,20,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs20.html#LiSWRB04,https://doi.org/10.1016/S0167-739X(03)00160-2 +Johannes G. G. van de Vorst,Solving the least squares problem using a parallel linear algebra library.,1989,4,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs4.html#Vorst89a,https://doi.org/10.1016/0167-739X(89)90006-X +Fei Shi,Seamless handoff scheme in Wi-Fi and WiMAX heterogeneous networks.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#ShiLS10,https://doi.org/10.1016/j.future.2010.04.011 +Brian Tierney,"A data intensive distributed computing architecture for ""Grid"" applications.",2000,16,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs16.html#TierneyJLT00,https://doi.org/10.1016/S0167-739X(99)00142-9 +Yang Wang,Resource allocation of wireless backhaul in heterogeneous network based on the large-scale MIMO.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#WangCW18,https://doi.org/10.1016/j.future.2018.04.082 +Andreas P. Plageras,Efficient IoT-based sensor BIG Data collection-processing and analysis in smart buildings.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#PlagerasPSWG18,https://doi.org/10.1016/j.future.2017.09.082 +Marco Maiocchi,Software engineering.,1991,7,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs7.html#Maiocchi91,https://doi.org/10.1016/0167-739X(91)90013-N +Rajiv Gupta 0001,Achieving low cost synchronization in a multiprocessor system.,1990,6,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs6.html#GuptaE90,https://doi.org/10.1016/0167-739X(90)90023-7 +Zhiling Lan,Exploring cosmology applications on distributed environments.,2003,19,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs19.html#LanTB03,https://doi.org/10.1016/S0167-739X(03)00064-5 +Tanwir Ahmad,Identifying worst-case user scenarios for performance testing of web applications using Markov-chain workload models.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#AhmadTP18,https://doi.org/10.1016/j.future.2018.01.042 +Dan Liu,A cloud service adaptive framework based on reliable resource allocation.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#LiuSLJWZZ18,https://doi.org/10.1016/j.future.2018.05.059 +Qian Wang,Remote analysis of myocardial fiber information in vivo assisted by cloud computing.,2018,85,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs85.html#WangX0PYSH18,https://doi.org/10.1016/j.future.2018.03.019 +Mark Hedges,Rule-based curation and preservation of data: A data grid approach using iRODS.,2009,25,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs25.html#HedgesBH09,https://doi.org/10.1016/j.future.2008.10.003 +Angela C. Sodan,Time and space adaptation for computational grids with the ATOP-Grid middleware.,2008,24,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs24.html#SodanGHLL08,https://doi.org/10.1016/j.future.2007.08.004 +Waleed W. Smari,An extended attribute based access control model with trust and privacy: Application to a collaborative crisis management system.,2014,31,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs31.html#SmariCL14,https://doi.org/10.1016/j.future.2013.05.010 +Senthil Murugan Balakrishnan,MIFIM - Middleware solution for service centric anomaly in future internet models.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#BalakrishnanS17,https://doi.org/10.1016/j.future.2016.08.006 +Krishna Karthik Gadiraju,Benchmarking performance for migrating a relational application to a parallel implementation.,2016,63,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs63.html#GadirajuVDT16,https://doi.org/10.1016/j.future.2015.12.015 +Tetsuya Sakurai,A parallel method for large sparse generalized eigenvalue problems using a GridRPC system.,2008,24,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs24.html#SakuraiKTTSN08,https://doi.org/10.1016/j.future.2008.01.002 +Gaurav Goswami,FaceDCAPTCHA: Face detection based color image CAPTCHA.,2014,31,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs31.html#GoswamiPVSN14,https://doi.org/10.1016/j.future.2012.08.013 +Yunfeng Liu,Validating key constraints over XML document using XPath and structure checking.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#LiuYTWG05,https://doi.org/10.1016/j.future.2004.12.001 +Robinson Rivas,A parallel algorithm for 3D reconstruction of angiographic images.,2000,16,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs16.html#RivasICW00,https://doi.org/10.1016/S0167-739X(99)00126-0 +Reda Albodour,High level QoS-driven model for Grid applications in a simulated environment.,2012,28,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs28.html#AlbodourJY12,https://doi.org/10.1016/j.future.2011.06.013 +David Lecomber,Efficient parallel algorithms for numerical simulation.,2001,17,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs17.html#LecomberR01,https://doi.org/10.1016/S0167-739X(01)00038-3 +María S. Pérez,Design and implementation of a data mining grid-aware architecture.,2007,23,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs23.html#PerezSRHP07,https://doi.org/10.1016/j.future.2006.04.008 +Yang Liu,DESRP: An efficient differential evolution algorithm for stochastic demand-oriented resource placement in heterogeneous clouds.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#LiuWZ18,https://doi.org/10.1016/j.future.2018.05.043 +Neil F. Dinn,Network architectures.,1991,7,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs7.html#Dinn91,https://doi.org/10.1016/0167-739X(91)90018-S +Rashmika Nawaratne,Self-evolving intelligent algorithms for facilitating data interoperability in IoT environments.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#NawaratneASCC18,https://doi.org/10.1016/j.future.2018.02.049 +Brian F. Cooper,Authenticity and availability in PIPE networks.,2005,21,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs21.html#CooperBDMG05,https://doi.org/10.1016/j.future.2004.04.017 +Feng Xia,BeeCup: A bio-inspired energy-efficient clustering protocol for mobile learning.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#XiaZZMK14,https://doi.org/10.1016/j.future.2013.12.030 +Antonio Laganà,Foreword.,2004,20,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs20.html#LaganaL04,https://doi.org/10.1016/j.future.2003.11.014 +Qinlong Huang,PRECISE: Identity-based private data sharing with conditional proxy re-encryption in online social networks.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#HuangYF18,https://doi.org/10.1016/j.future.2017.05.026 +Gema Bello Orgaz,Detecting discussion communities on vaccination in twitter.,2017,66,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs66.html#OrgazHC17,https://doi.org/10.1016/j.future.2016.06.032 +Bo Huang 0001,Spatio-temporal information integration in XML.,2004,20,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs20.html#HuangYC04,https://doi.org/10.1016/j.future.2003.11.005 +Shigeru Amano,The Toshiba Machine Translation System.,1986,2,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs2.html#Amano86,https://doi.org/10.1016/0167-739X(86)90006-3 +Abdur Forkan,CoCaMAAL: A cloud-oriented context-aware middleware in ambient assisted living.,2014,35,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs35.html#ForkanKT14,https://doi.org/10.1016/j.future.2013.07.009 +Chenxi Zhang,Study of mechanisms that support the implementation of nonlogical components of prolog in WAM-based systems.,1988,4,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs4.html#ZhangT88,https://doi.org/10.1016/0167-739X(88)90005-2 +Fuyuki Shimojo,A scalable molecular-dynamics algorithm suite for materials simulations: design-space diagram on 1024 Cray T3E processors.,2000,17,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs17.html#ShimojoCKNVOT00,https://doi.org/10.1016/S0167-739X(00)00087-X +Long Nguyen Hoang,SocioScope: A framework for understanding Internet of Social Knowledge.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#HoangJ18,https://doi.org/10.1016/j.future.2018.01.064 +José María Pérez,Branch replication scheme: A new model for data replication in large scale data grids.,2010,26,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs26.html#PerezCCCF10,https://doi.org/10.1016/j.future.2009.05.015 +Iain Cramb,Evaluation of a database application on a Meiko multisparc Oracle platform.,1993,9,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs9.html#CrambW93,https://doi.org/10.1016/0167-739X(93)90023-I +Kim-Kwang Raymond Choo,Measurements and security of complex networks and systems: Research advances and challenges.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#ChooSC18,https://doi.org/10.1016/j.future.2018.03.001 +Ivanoe De Falco,An adaptive multisite mapping for computationally intensive grid applications.,2010,26,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs26.html#FalcoST10,https://doi.org/10.1016/j.future.2010.02.009 +Xiang Li 0017,Holistic energy and failure aware workload scheduling in Cloud datacenters.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#LiJGW18,https://doi.org/10.1016/j.future.2017.07.044 +Abdullah Mohammed Al-Faifi,Performance prediction model for cloud service selection from smart data.,2018,85,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs85.html#Al-FaifiSHAG18,https://doi.org/10.1016/j.future.2018.03.015 +Sonia Campa,Parallel patterns for heterogeneous CPU/GPU architectures: Structured parallelism from cluster to cloud.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#CampaDGGPT14,https://doi.org/10.1016/j.future.2013.12.038 +Philip Cooper,Expert systems in management science.,1986,2,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs2.html#Cooper86,https://doi.org/10.1016/0167-739X(86)90021-X +Nicoletta Del Buono,Special section: Numerical methods for structured systems.,2006,22,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs22.html#BuonoLP06,https://doi.org/10.1016/j.future.2004.11.029 +Jean-François Dhem,Lossless compression algorithms for smart cards: A progress report.,1997,13,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs13.html#DhemQ97,https://doi.org/10.1016/S0167-739X(97)89109-1 +Gang Sun,A new technique for efficient live migration of multiple virtual machines.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#SunLAZY16,https://doi.org/10.1016/j.future.2015.09.005 +Mustafizur Rahman 0003,Cooperative and decentralized workflow scheduling in global grids.,2010,26,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs26.html#RahmanRB10,https://doi.org/10.1016/j.future.2009.07.002 +Marisol García-Valls,A dual-band priority assignment algorithm for dynamic QoS resource management.,2012,28,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs28.html#Garcia-VallsAP12,https://doi.org/10.1016/j.future.2011.10.005 +Peter J. Cleall,Use of parallel computing and visualisation techniques in the simulation of large scale geoenvironmental engineering problems.,2006,22,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs22.html#CleallTMO06,https://doi.org/10.1016/j.future.2005.04.006 +Gabriele Mencagli,Elastic-PPQ: A two-level autonomic system for spatial preference query processing over dynamic data streams.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#MencagliTD18,https://doi.org/10.1016/j.future.2017.09.004 +Louis O. Hertzberger,The architecture of fifth generation inference computers.,1984,1,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs1.html#Hertzberger84,https://doi.org/10.1016/0167-739X(84)90017-7 +Jean-Pierre Courtin,SATEXPERT: A knowledge-based system for spacecraft control.,1992,7,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs7.html#CourtinSCMMAP92,https://doi.org/10.1016/0167-739X(92)90058-J +Po-Cheng Chen,A progressive multi-layer resource reconfiguration framework for time-shared grid systems.,2009,25,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs25.html#ChenCLS09,https://doi.org/10.1016/j.future.2009.01.002 +Gang Sun,Towards provisioning hybrid virtual networks in federated cloud data centers.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#SunLZSC18,https://doi.org/10.1016/j.future.2017.09.065 +Francisco Almenar,Embedded GPU and multicore processors for emotional-based mobile robotic agents.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#AlmenarDHML16,https://doi.org/10.1016/j.future.2015.05.010 +Guanying Bu,Access control in semantic grid.,2004,20,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs20.html#BuX04,https://doi.org/10.1016/S0167-739X(03)00168-7 +Toktam Ghafarian-M.,CycloidGrid: A proximity-aware P2P-based resource discovery architecture in volunteer computing systems.,2013,29,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs29.html#Ghafarian-MDJYB13,https://doi.org/10.1016/j.future.2012.08.010 +Jinbo Chen,Research on agricultural monitoring system based on convolutional neural network.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#ChenZHSGLH18,https://doi.org/10.1016/j.future.2018.05.045 +Manuel Díaz,A parlog based real-time distributed logic environment.,1993,9,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs9.html#DiazT93,https://doi.org/10.1016/0167-739X(93)90012-E +Jérôme Gallard,Architecture for the next generation system management tools.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#GallardLMNSV12,https://doi.org/10.1016/j.future.2011.06.003 +Roberto Bellotti,Distributed medical images analysis on a Grid infrastructure.,2007,23,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs23.html#BellottiCTBCMCBBC07,https://doi.org/10.1016/j.future.2006.07.006 +Dongzhan Zhang,A benchmark approach and its toolkit for online scheduling of multiple deadline-constrained workflows in big-data processing systems.,2018,85,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs85.html#ZhangYEZC18,https://doi.org/10.1016/j.future.2018.03.046 +Xingpo Ma,Secure fine-grained spatio-temporal Top-k queries in TMWSNs.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#MaLWWWLMQ18,https://doi.org/10.1016/j.future.2018.04.010 +Ryan N. S. Widodo,A new content-defined chunking algorithm for data deduplication in cloud storage.,2017,71,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs71.html#WidodoLA17a,https://doi.org/10.1016/j.future.2017.02.013 +Bernd Jung 0001,Simulating synthetic polymer chains in parallel.,2000,16,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs16.html#JungLMR00,https://doi.org/10.1016/S0167-739X(99)00138-7 +Ioan Petri,Risk assessment in service provider communities.,2014,41,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs41.html#PetriRSR14,https://doi.org/10.1016/j.future.2014.08.013 +Elena Pagnin,HB+DB: Distance bounding meets human based authentication.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#PagninYHHM18,https://doi.org/10.1016/j.future.2016.05.031 +Olga L. Bandman,Computation properties of spatial dynamics simulation by probabilistic cellular automata.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#Bandman05,https://doi.org/10.1016/j.future.2004.05.003 +Seiichi Komiya,Automatic programming by composing program components and its realization method.,1989,5,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs5.html#Komiya89,https://doi.org/10.1016/0167-739X(89)90034-4 +Rolf Oppliger,Privacy protection and anonymity services for the World Wide Web (WWW).,2000,16,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs16.html#Oppliger00,https://doi.org/10.1016/S0167-739X(99)00062-X +Markus Meuwly,Reactions in complex biologically relevant systems: challenges for computational approaches.,2005,21,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs21.html#Meuwly05,https://doi.org/10.1016/j.future.2004.09.004 +Dietmar Sommerfeld,AUGUSTUS at MediGRID: Adaption of a bioinformatics application to grid computing for efficient genome analysis.,2009,25,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs25.html#SommerfeldLSMR09,https://doi.org/10.1016/j.future.2008.05.010 +Ignacio Blanquer Espert,Content-based organisation of virtual repositories of DICOM objects.,2009,25,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs25.html#EspertGAQ09,https://doi.org/10.1016/j.future.2008.12.004 +Allen D. Malony,A theory and architecture for automating performance diagnosis.,2001,18,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs18.html#MalonyH01,https://doi.org/10.1016/S0167-739X(01)00052-8 +Saurabh Kumar Garg,Time and cost trade-off management for scheduling parallel applications on Utility Grids.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#GargBS10,https://doi.org/10.1016/j.future.2009.07.003 +H. N. Smith,The elements of an open KBS infrastructure.,1993,9,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs9.html#SmithP93,https://doi.org/10.1016/0167-739X(93)90037-P +Mudassar Raza,Appearance based pedestrians' gender recognition by employing stacked auto encoders in deep learning.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#RazaSYKSF18,https://doi.org/10.1016/j.future.2018.05.002 +Zi Wang,User mobility aware task assignment for Mobile Edge Computing.,2018,85,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs85.html#WangZMHNW18,https://doi.org/10.1016/j.future.2018.02.014 +Yixiong Feng,Data-driven accurate design of variable blank holder force in sheet forming under interval uncertainty using sequential approximate multi-objective optimization.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#FengZTLTJ18,https://doi.org/10.1016/j.future.2017.02.048 +Thomas Pramsohler,A layered interface-adaptation architecture for distributed component-based systems.,2015,47,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs47.html#PramsohlerSBB15,https://doi.org/10.1016/j.future.2014.09.011 +Konstantinos Tserpes,A recommender mechanism for service selection in service-oriented environments.,2012,28,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs28.html#TserpesAKV12,https://doi.org/10.1016/j.future.2011.11.003 +Sven Kiljan,Evaluation of transaction authentication methods for online banking.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#KiljanVE18,https://doi.org/10.1016/j.future.2016.05.024 +Javier Conejero,Analyzing Hadoop power consumption and impact on application QoS.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#ConejeroRBMCC16,https://doi.org/10.1016/j.future.2015.03.009 +Mardochée Magolu monga Made,Implementation of parallel block preconditionings on a transputer-based multiprocessor.,1995,11,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs11.html#Made95,https://doi.org/10.1016/0167-739X(94)00058-M +Massimo Bernaschi,The requirements of a high performance implementation of PVM.,1996,12,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs12.html#Bernaschi96,https://doi.org/10.1016/0167-739X(96)84675-9 +Tobias Blanke,Arts and humanities e-science - Current practices and future challenges.,2009,25,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs25.html#BlankeHD09,https://doi.org/10.1016/j.future.2008.10.004 +Benoît Garbinato,Injecting power-awareness into epidemic information dissemination in sensor networks.,2010,26,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs26.html#GarbinatoRTV10,https://doi.org/10.1016/j.future.2010.02.016 +Sarunya Pumma,A runtime estimation framework for ALICE.,2017,72,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs72.html#PummaFPCA17,https://doi.org/10.1016/j.future.2017.02.040 +Yi Zeng,Characterization and delivery of directly coupled causal messages in distributed systems.,2004,20,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs20.html#ZengCTZL04,https://doi.org/10.1016/j.future.2003.07.013 +Christos Bouras,QoS and SLA aspects across multiple management domains: the SEQUIN approach.,2003,19,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs19.html#BourasCPS03,https://doi.org/10.1016/S0167-739X(02)00156-5 +Ariel Nahum Burton,Performance prediction of paging workloads using lightweight tracing.,2006,22,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs22.html#BurtonK06,https://doi.org/10.1016/j.future.2006.02.003 +Jacek Cala,Scalable and efficient whole-exome data processing using workflows on the cloud.,2016,65,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs65.html#CalaMXTM16,https://doi.org/10.1016/j.future.2016.01.001 +Saeed Ebadi,A new distributed and hierarchical mechanism for service discovery in a grid environment.,2011,27,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs27.html#EbadiK11,https://doi.org/10.1016/j.future.2010.11.011 +Guojun Wang,Multi-dimensional evidence-based trust management with multi-trusted paths.,2011,27,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs27.html#WangW11,https://doi.org/10.1016/j.future.2010.04.015 +Chang-Doo Lee,Design and evaluation of a block encryption algorithm using dynamic-key mechanism.,2004,20,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs20.html#LeeCP04,https://doi.org/10.1016/S0167-739X(03)00148-1 +Boris Teabe,Enforcing CPU allocation in a heterogeneous IaaS.,2015,53,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs53.html#TeabeTH15,https://doi.org/10.1016/j.future.2015.05.013 +Hector Fernandez,Rule-driven service coordination middleware for scientific applications.,2014,35,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs35.html#FernandezTP14,https://doi.org/10.1016/j.future.2013.12.023 +Cinzia Elia,Exponential monotonicity of quadratic forms in ODEs and preserving methods.,2003,19,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs19.html#EliaL03,https://doi.org/10.1016/S0167-739X(03)00044-X +Heyang Xu,An incentive-based heuristic job scheduling algorithm for utility grids.,2015,49,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs49.html#XuY15,https://doi.org/10.1016/j.future.2015.02.002 +Claudia Leopold,Structuring statement sequences in instance-based locality optimization.,2001,17,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs17.html#Leopold01,https://doi.org/10.1016/S0167-739X(99)00123-5 +Valentina Casola,The CloudGrid approach: Security analysis and performance evaluation.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#CasolaCRV13,https://doi.org/10.1016/j.future.2011.08.008 +Antonios Litke,Efficient task replication and management for adaptive fault tolerance in Mobile Grid environments.,2007,23,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs23.html#LitkeSTV07,https://doi.org/10.1016/j.future.2006.04.014 +Yankun Chen,Adaptive RTO for handshaking-based MAC protocols in underwater acoustic networks.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#ChenJGWCY18,https://doi.org/10.1016/j.future.2017.08.022 +Evan W. Patton,SemantEco: A semantically powered modular architecture for integrating distributed environmental and ecological data.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#PattonSWFDBM14,https://doi.org/10.1016/j.future.2013.09.017 +Daniel A. Reed,Reliability challenges in large systems.,2006,22,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs22.html#ReedLM06,https://doi.org/10.1016/j.future.2004.11.015 +Weimin Li,Overlap community detection using spectral algorithm based on node convergence degree.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#LiJJ18,https://doi.org/10.1016/j.future.2017.08.028 +David W. Walker,Complex problem-solving environments for Grid computing.,2005,21,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs21.html#WalkerH05,https://doi.org/10.1016/j.future.2003.12.014 +Long Wan,Pareto optimization for the two-agent scheduling problems with linear non-increasing deterioration based on Internet of Things.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#WanWXYX17,https://doi.org/10.1016/j.future.2016.09.004 +Hui He,Distributed proxy cache technology based on autonomic computing in smart cities.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#HeCZW17,https://doi.org/10.1016/j.future.2016.03.015 +Behrouz Jedari,A game-theoretic incentive scheme for social-aware routing in selfish mobile social networks.,2017,70,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs70.html#JedariLQRX17,https://doi.org/10.1016/j.future.2016.06.020 +Tao Zhang 0016,ParSA: High-throughput scientific data analysis framework with distributed file system.,2015,51,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs51.html#ZhangSXQHSZ15,https://doi.org/10.1016/j.future.2014.10.015 +W. Duinker,Synchronous processor arrays integrated in a transputer network.,1989,4,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs4.html#Duinker89,https://doi.org/10.1016/0167-739X(89)90002-2 +Mariagrazia Fugini,A web-based cooperative tool for risk management with adaptive security.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#FuginiTH16,https://doi.org/10.1016/j.future.2015.04.015 +Xiaoshan Yu,RingCube - An incrementally scale-out optical interconnect for cloud computing data center.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#YuGYW16,https://doi.org/10.1016/j.future.2015.06.008 +Sheheryar Malik,Latency based group discovery algorithm for network aware cloud scheduling.,2014,31,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs31.html#MalikHC14,https://doi.org/10.1016/j.future.2013.09.004 +Angelo Furfaro,A Cloud-based platform for the emulation of complex cybersecurity scenarios.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#FurfaroPPAS18,https://doi.org/10.1016/j.future.2018.07.025 +Tai-Hoon Kim,Smart City and IoT.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#KimRM17,https://doi.org/10.1016/j.future.2017.03.034 +Lina Barakat,Adaptive composition in dynamic service environments.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#BarakatML18,https://doi.org/10.1016/j.future.2016.12.003 +Yunhong Gu,Sector: A high performance wide area community data storage and sharing system.,2010,26,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs26.html#GuG10,https://doi.org/10.1016/j.future.2009.05.009 +Isaac D. Scherson,Federated grid clusters using service address routed optical networks.,2007,23,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs23.html#SchersonVCDW07,https://doi.org/10.1016/j.future.2007.04.012 +Wei Ni,A message efficient intersection control algorithm for intelligent transportation in smart cities.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#NiWL17,https://doi.org/10.1016/j.future.2016.10.033 +Bo Zhang 0004,A multi-criteria detection scheme of collusive fraud organization for reputation aggregation in social networks.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#ZhangZHLL18,https://doi.org/10.1016/j.future.2017.09.027 +Shang-Chia Wei,Resource allocation decision model for dependable and cost-effective grid applications based on Grid Bank.,2017,77,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs77.html#WeiY17,https://doi.org/10.1016/j.future.2017.06.019 +Ying Wu,Attribute-based multi-function verifiable computation.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#WuLXZ18,https://doi.org/10.1016/j.future.2017.02.030 +Shi-Yuan Huang,Enabled/disabled predicate encryption in clouds.,2016,62,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs62.html#HuangFT16,https://doi.org/10.1016/j.future.2015.12.008 +Guiyan Liu,Tomogravity space based traffic matrix estimation in data center networks.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#LiuGZY18,https://doi.org/10.1016/j.future.2018.03.011 +Palle F. Smidt,U.S. industrial cooperation in R and D.,1986,2,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs2.html#Smidt86,https://doi.org/10.1016/0167-739X(86)90038-5 +ömer Köksal,Obstacles in Data Distribution Service Middleware: A Systematic Review.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#KoksalT17,https://doi.org/10.1016/j.future.2016.09.020 +Kurt Vanmechelen,Economics of computing services.,2014,41,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs41.html#VanmechelenAR14,https://doi.org/10.1016/j.future.2014.09.006 +Peter M. A. Sloot,To the Readers.,2006,22,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs22.html#Sloot06a,https://doi.org/10.1016/j.future.2005.11.001 +Uthman Baroudi,Delay characterization and performance evaluation of cluster-based WSN with different deployment distributions.,2014,39,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs39.html#BaroudiAMB14,https://doi.org/10.1016/j.future.2014.02.011 +Hao Wu 0010,Collaborative QoS prediction with context-sensitive matrix factorization.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#WuYLZH18,https://doi.org/10.1016/j.future.2017.06.020 +Hossain Shahriar,Trustworthiness testing of phishing websites: A behavior model-based approach.,2012,28,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs28.html#ShahriarZ12,https://doi.org/10.1016/j.future.2011.02.001 +Haitao Wang 0008,Timetable-aware opportunistic DTN routing for vehicular communications in battlefield environments.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#WangSZC18,https://doi.org/10.1016/j.future.2018.01.013 +Simon Branford,Monte Carlo methods for matrix computations on the grid.,2008,24,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs24.html#BranfordSTWAD08,https://doi.org/10.1016/j.future.2007.07.006 +S. M. Aminul Haque,A survey of economic models in grid computing.,2011,27,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs27.html#HaqueAP11,https://doi.org/10.1016/j.future.2011.04.009 +Thijs Baars,Chargeback for cloud services.,2014,41,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs41.html#BaarsKSJBH14,https://doi.org/10.1016/j.future.2014.08.002 +Alain Tchana,Software consolidation as an efficient energy and cost saving solution.,2016,58,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs58.html#TchanaPSH16,https://doi.org/10.1016/j.future.2015.11.027 +Andrew G. West,Trust in collaborative web applications.,2012,28,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs28.html#WestCVL12,https://doi.org/10.1016/j.future.2011.02.007 +Chao-Tung Yang,A method for managing green power of a virtual machine cluster in cloud.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#YangLHJ14,https://doi.org/10.1016/j.future.2014.03.001 +Amos Brocco,Enabling efficient information discovery in a self-structured grid.,2010,26,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs26.html#BroccoMH10,https://doi.org/10.1016/j.future.2010.02.007 +Fuhui Wu,PCP-B2: Partial critical path budget balanced scheduling algorithms for scientific workflow applications.,2016,60,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs60.html#WuWTLW16,https://doi.org/10.1016/j.future.2016.01.004 +Xiangjian He,Improving cloud network security using the Tree-Rule firewall.,2014,30,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs30.html#HeCNT14,https://doi.org/10.1016/j.future.2013.06.024 +Gabriel G. Castañé,An ontology for heterogeneous resources management interoperability and HPC in the cloud.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#CastaneXDM18,https://doi.org/10.1016/j.future.2018.05.086 +Antony Antony,Microscopic examination of TCP flows over transatlantic links.,2003,19,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs19.html#AntonyBLLS03,https://doi.org/10.1016/S0167-739X(03)00079-7 +Aaron Gidding,ArchaeoSTOR: A data curation system for research on the archeological frontier.,2013,29,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs29.html#GiddingMLDK13,https://doi.org/10.1016/j.future.2013.04.007 +Daniel de Oliveira 0001,Performance evaluation of parallel strategies in public clouds: A study with phylogenomic workflows.,2013,29,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs29.html#OliveiraOODGBM13,https://doi.org/10.1016/j.future.2012.12.019 +Ligang He,Developing security-aware resource management strategies for workflows.,2014,38,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs38.html#HeCJ14,https://doi.org/10.1016/j.future.2013.09.030 +Vasco Furtado,Promoting performance and separation of concerns for data mining applications on the grid.,2007,23,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs23.html#FurtadoSC07,https://doi.org/10.1016/j.future.2006.04.013 +Yogesh Simmhan,Special Section: The third provenance challenge on using the open provenance model for interoperability.,2011,27,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs27.html#SimmhanGM11,https://doi.org/10.1016/j.future.2010.11.020 +Yuvraj Sahni,MidSHM: A Middleware for WSN-based SHM Application using Service-Oriented Architecture.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#SahniCL18,https://doi.org/10.1016/j.future.2017.01.022 +Vasa Curcin,Implementing interoperable provenance in biomedical research.,2014,34,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs34.html#CurcinMMCBT14,https://doi.org/10.1016/j.future.2013.12.001 +Daniel J. Amit,Attractor neural networks and biological reality: associative memory and learning.,1990,6,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs6.html#Amit90,https://doi.org/10.1016/0167-739X(90)90027-B +Wei Yu 0002,P2P/Grid-based overlay architecture to support VoIP services in large-scale IP networks.,2005,21,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs21.html#YuCX05,https://doi.org/10.1016/j.future.2004.10.010 +Dongyang Zhan,A high-performance virtual machine filesystem monitor in cloud-assisted cognitive IoT.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#ZhanYZFLLDG18,https://doi.org/10.1016/j.future.2018.05.055 +Wolfgang Wahlster,Cooperative access systems.,1984,1,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs1.html#Wahlster84,https://doi.org/10.1016/0167-739X(84)90031-1 +Zhou Shao,Voronoi-based Range-kNN search with Map Grid in a mobile environment.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#ShaoTA17,https://doi.org/10.1016/j.future.2016.03.005 +Emilio Pasquale Mancini,A grid-aware MIP solver: Implementation and case studies.,2008,24,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs24.html#ManciniMVV08,https://doi.org/10.1016/j.future.2007.03.011 +Jin Wang 0001,Particle swarm optimization based clustering algorithm with mobile sink for WSNs.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#WangCLKL17,https://doi.org/10.1016/j.future.2016.08.004 +Uko Maran,Mining of the chemical information in GRID environment.,2007,23,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs23.html#MaranSKT07,https://doi.org/10.1016/j.future.2006.04.018 +Satish Narayana Srirama,Adapting scientific computing problems to clouds using MapReduce.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#SriramaJV12,https://doi.org/10.1016/j.future.2011.05.025 +E. Znaty,BECAUSE European workshop Sophia-Antipolis (France) 14-16 October 1992. General presentation of the BECAUSE Benchmark Set: BBS.,1994,10,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs10.html#Znaty94,https://doi.org/10.1016/0167-739X(94)90001-9 +Sandro Bartolini,Exploring the relationship between architectures and management policies in the design of NUCA-based chip multicore systems.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#BartoliniFP18,https://doi.org/10.1016/j.future.2017.06.001 +Masataka Hiraide,Expert systems application in plant engineering.,1989,5,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs5.html#Hiraide89,https://doi.org/10.1016/0167-739X(89)90023-X +Mario Macías,SLA negotiation and enforcement policies for revenue maximization and client classification in cloud providers.,2014,41,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs41.html#MaciasG14,https://doi.org/10.1016/j.future.2014.03.004 +André Freitas,W3P: Building an OPM based provenance model for the Web.,2011,27,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs27.html#FreitasKOC11,https://doi.org/10.1016/j.future.2010.10.010 +Zhaobin Liu,A hybrid collaborative filtering recommendation mechanism for P2P networks.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#LiuQLX10,https://doi.org/10.1016/j.future.2010.04.002 +Trong-Tuan Vu,Parallel Branch-and-Bound in multi-core multi-CPU multi-GPU heterogeneous environments.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#VuD16,https://doi.org/10.1016/j.future.2015.10.009 +Riichiro Mizoguchi,Preface.,1989,5,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs5.html#Mizoguchi89,https://doi.org/10.1016/0167-739X(89)90013-7 +S. Schoemaker,Artificial intelligence in simulation.,1985,1,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs1.html#Schoemaker85,https://doi.org/10.1016/0167-739X(85)90013-5 +Shilpi Bhattacharyya,Why wait? Let us start computing while the data is still on the wire.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#BhattacharyyaKY18,https://doi.org/10.1016/j.future.2018.07.024 +Khan Muhammad,Image steganography using uncorrelated color space and its application for security of visual contents in online social networks.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#MuhammadSMRB18,https://doi.org/10.1016/j.future.2016.11.029 +Chen Yu,A semi-supervised social relationships inferred model based on mobile phone data.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#YuWYYHJ17,https://doi.org/10.1016/j.future.2016.11.027 +Mohannad J. Alhanahnah,Context-Aware Multifaceted Trust Framework For Evaluating Trustworthiness of Cloud Providers.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#AlhanahnahBTA18,https://doi.org/10.1016/j.future.2017.09.071 +Haibo Yi,Side-channel security analysis of UOV signature for cloud-based Internet of Things.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#YiN18,https://doi.org/10.1016/j.future.2018.04.083 +Mario Cannataro 0001,SIGMCC: A system for sharing meta patient records in a Peer-to-Peer environment.,2008,24,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs24.html#CannataroTTTV08,https://doi.org/10.1016/j.future.2007.06.006 +Zhanwei Du,Modeling and inferring mobile phone users' negative emotion spreading in social networks.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#DuYCZB18,https://doi.org/10.1016/j.future.2017.04.015 +Yi-Chao He,A novel binary artificial bee colony algorithm for the set-union knapsack problem.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#HeXWW18,https://doi.org/10.1016/j.future.2017.05.044 +Hui Lin,DTRM: A new reputation mechanism to enhance data trustworthiness for high-performance cloud computing.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#LinHXMY18,https://doi.org/10.1016/j.future.2018.01.026 +Ladislau Bölöni,Task distribution with a random overlay network.,2006,22,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs22.html#BoloniTM06,https://doi.org/10.1016/j.future.2005.11.004 +Lei Liu 0003,Performance measurement of data flow processing employing software defined architecture.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#LiuRCSL18,https://doi.org/10.1016/j.future.2017.12.050 +Martin T. Swain,P-found: Grid-enabling distributed repositories of protein folding and unfolding simulations for data mining.,2010,26,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs26.html#SwainSLOBRSDB10,https://doi.org/10.1016/j.future.2009.08.008 +Ruay-Shiung Chang,An ant algorithm for balanced job scheduling in grids.,2009,25,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs25.html#ChangCL09,https://doi.org/10.1016/j.future.2008.06.004 +John S. Atkinson,Your WiFi is leaking: What do your mobile apps gossip about you?,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#AtkinsonMRM18,https://doi.org/10.1016/j.future.2016.05.030 +Fagen Li,Efficient certificateless access control for industrial Internet of Things.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#LiHO17,https://doi.org/10.1016/j.future.2016.12.036 +Renke Wu,SunwayMR: A distributed parallel computing framework with convenient data-intensive applications programming.,2017,71,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs71.html#WuHYZ17,https://doi.org/10.1016/j.future.2017.01.018 +Marian Bubak,Monitoring of distributed Java applications.,2003,19,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs19.html#BubakFWMO03,https://doi.org/10.1016/S0167-739X(02)00175-9 +R. G. M. van der Sman,Diffusion on unstructured triangular grids using Lattice Boltzmann.,2004,20,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs20.html#Sman04,https://doi.org/10.1016/j.future.2003.12.009 +Chaoyi Zhang,An optimal PSO distributed precoding algorithm in QRD-based multi-relay system.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#ZhangWL13,https://doi.org/10.1016/j.future.2012.04.003 +Roger Baig,Cloudy in guifi.net: Establishing and sustaining a community cloud as open commons.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#BaigFN18,https://doi.org/10.1016/j.future.2017.12.017 +Luis Rodero-Merino,From infrastructure delivery to service management in clouds.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#Rodero-MerinoGGGFML10,https://doi.org/10.1016/j.future.2010.02.013 +Nithiapidary Muthuvelu,Task granularity policies for deploying bag-of-task applications on global grids.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#MuthuveluVCCB13,https://doi.org/10.1016/j.future.2012.03.022 +Sri Vijay Bharat Peddi,An intelligent cloud-based data processing broker for mobile e-health multimedia applications.,2017,66,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs66.html#PeddiKYPSS17,https://doi.org/10.1016/j.future.2016.03.019 +Yuzhu Wang,A scalable parallel algorithm for atmospheric general circulation models on a multi-core cluster.,2017,72,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs72.html#WangJZDWRZ17,https://doi.org/10.1016/j.future.2017.02.008 +Goldina Ghosh,State transition in communication under social network: An analysis using fuzzy logic and Density Based Clustering towards big data paradigm.,2016,65,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs65.html#GhoshBY16,https://doi.org/10.1016/j.future.2016.02.017 +Hong Huang 0002,Enhanced semi-supervised local Fisher discriminant analysis for face recognition.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#HuangLL12,https://doi.org/10.1016/j.future.2010.11.005 +Zulfiqar Ali,An intelligent healthcare system for detection and classification to discriminate vocal fold disorders.,2018,85,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs85.html#AliHMS18,https://doi.org/10.1016/j.future.2018.02.021 +Jeroen van der Ham,Using RDF to describe networks.,2006,22,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs22.html#HamDTAL06,https://doi.org/10.1016/j.future.2006.03.022 +Matthias Lieber,Highly scalable SFC-based dynamic load balancing and its application to atmospheric modeling.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#LieberN18,https://doi.org/10.1016/j.future.2017.04.042 +Limei Peng,Toward integrated Cloud-Fog networks for efficient IoT provisioning: Key challenges and solutions.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#PengDH18,https://doi.org/10.1016/j.future.2018.05.015 +Dalu Zhang,Chunk mode VM migration in XIA and triple-way pipeline for performance optimization.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#ZhangZJ17,https://doi.org/10.1016/j.future.2017.04.027 +Netsanet Haile,Value creation in software service platforms.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#HaileA16,https://doi.org/10.1016/j.future.2015.09.029 +Xiaofei Liao,ESPM: An optimized resource distribution policy in virtual user environment.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#LiaoJY10,https://doi.org/10.1016/j.future.2010.06.001 +Tevfik Kosar,A new paradigm: Data-aware scheduling in grid computing.,2009,25,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs25.html#KosarB09,https://doi.org/10.1016/j.future.2008.09.006 +Rong Zhang 0002,An efficient peer-to-peer indexing tree structure for multidimensional data.,2009,25,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs25.html#ZhangQZZ09,https://doi.org/10.1016/j.future.2008.02.010 +Gabor Kecskemeti,An approach for virtual appliance distribution for service deployment.,2011,27,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs27.html#KecskemetiTKN11,https://doi.org/10.1016/j.future.2010.09.009 +Xinwu Du,Research on divider losses with high-speed photography for foxtail millet harvesting.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#DuJJLY18,https://doi.org/10.1016/j.future.2018.05.029 +Nazanin Saadat,PDDRA: A new pre-fetching based dynamic data replication algorithm in data grids.,2012,28,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs28.html#SaadatR12,https://doi.org/10.1016/j.future.2011.10.011 +Chengzhung Sun,Advanced services for Clusters and Internet computing.,2004,20,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs20.html#SunZGC04,https://doi.org/10.1016/S0167-739X(03)00169-9 +Kevin Ponto,CGLXTouch: A multi-user multi-touch approach for ultra-high-resolution collaborative workspaces.,2011,27,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs27.html#PontoDWKK11,https://doi.org/10.1016/j.future.2010.11.026 +Osamu Komatsu,The underwriting expert system in nippon life.,1989,5,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs5.html#Komatsu89,https://doi.org/10.1016/0167-739X(89)90028-9 +Xu Chen,HIB-tree: An efficient index method for the big data analytics of large-scale human activity trajectories.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#ChenZXL18,https://doi.org/10.1016/j.future.2018.01.004 +Albert Rego,Software Defined Network-based control system for an efficient traffic management for emergency situations in smart cities.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#RegoGSL18,https://doi.org/10.1016/j.future.2018.05.054 +Shan Huang,Congestion control in high-speed lossless data center networks: A survey.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#HuangDB18,https://doi.org/10.1016/j.future.2018.06.036 +Marin Lujak,Centrality measures for evacuation: Finding agile evacuation routes.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#LujakG18,https://doi.org/10.1016/j.future.2017.05.014 +Mustafa Mat Deris,An efficient replicated data access approach for large-scale distributed systems.,2008,24,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs24.html#DerisAM08,https://doi.org/10.1016/j.future.2007.04.010 +Mariano Fons,Biometrics-based consumer applications driven by reconfigurable hardware architectures.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#FonsFC12,https://doi.org/10.1016/j.future.2010.11.007 +Jim Pruyne,Interfacing Condor and PVM to harness the cycles of workstation clusters.,1996,12,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs12.html#PruyneL96,https://doi.org/10.1016/0167-739X(95)00036-R +Gustavo G. Pascual,Self-adaptation of mobile systems driven by the Common Variability Language.,2015,47,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs47.html#PascualPF15,https://doi.org/10.1016/j.future.2014.08.015 +E. Paris,Preface.,1991,7,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs7.html#Paris91,https://doi.org/10.1016/0167-739X(91)90010-U +H. Martin Bücker,Special section: Automatic differentiation and its applications.,2005,21,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs21.html#Bucker05,https://doi.org/10.1016/j.future.2004.11.001 +Laura Díaz,Managing user-generated information in geospatial cyberinfrastructures.,2011,27,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs27.html#DiazGGH11,https://doi.org/10.1016/j.future.2010.09.002 +Pieter Thysebaert,Scalable dimensioning of resilient Lambda Grids.,2008,24,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs24.html#ThysebaertLVTDD08,https://doi.org/10.1016/j.future.2007.08.003 +Anastasios D. Doulamis,Visual understanding industrial workflows under uncertainty on distributed service oriented architectures.,2012,28,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs28.html#DoulamisM12,https://doi.org/10.1016/j.future.2011.02.008 +Leon Gommans,The Service Provider Group framework: A framework for arranging trust and power to facilitate authorization of network services.,2015,45,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs45.html#GommansVBL15,https://doi.org/10.1016/j.future.2014.06.002 +Kehua Guo,Optimized dependent file fetch middleware in transparent computing platform.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#GuoTMZ17,https://doi.org/10.1016/j.future.2015.10.010 +Roshan Kotian,Impact of Transmission Power Control in multi-hop networks.,2017,75,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs75.html#KotianESL17,https://doi.org/10.1016/j.future.2016.10.010 +Liang Chen,TruSMS: A trustworthy SMS spam control system based on trust management.,2015,49,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs49.html#ChenYZK15,https://doi.org/10.1016/j.future.2014.06.010 +Justin M. Wozniak,Making the best of a bad situation: Prioritized storage management in GEMS.,2008,24,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs24.html#WozniakBTSI08,https://doi.org/10.1016/j.future.2007.04.003 +Félix García Carballeira,A global and parallel file system for grids.,2007,23,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs23.html#CarballeiraCCGS07,https://doi.org/10.1016/j.future.2006.06.004 +Rodrigo Bonacin,Ontology models of the impacts of agriculture and climate changes on water resources: Scenarios on interoperability and information recovery.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#BonacinNJ16,https://doi.org/10.1016/j.future.2015.04.010 +Lu Liu 0001,Fault-tolerant peer-to-peer search on small-world networks.,2007,23,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs23.html#LiuAM07,https://doi.org/10.1016/j.future.2007.03.002 +Shahid Raza,SecureSense: End-to-end secure communication architecture for the cloud-connected Internet of Things.,2017,77,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs77.html#RazaHPV17,https://doi.org/10.1016/j.future.2017.06.008 +Reda Albodour,QoS within Business Grid Quality of Service (BGQoS).,2015,50,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs50.html#AlbodourJY15,https://doi.org/10.1016/j.future.2014.10.027 +J. M. Jansen,Parallel branch-and-bound algorithms.,1989,4,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs4.html#JansenS89,https://doi.org/10.1016/0167-739X(89)90003-4 +Bart Demoen,CHAT: the copy-hybrid approach to tabling.,2000,16,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs16.html#DemoenS00,https://doi.org/10.1016/S0167-739X(99)00092-8 +Muhammad Farhan,IoT-based students interaction framework using attention-scoring assessment in eLearning.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#FarhanJAHAKKH18,https://doi.org/10.1016/j.future.2017.09.037 +Mohammad Javad Rashti,Long-haul secure data transfer using hardware-assisted GridFTP.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#RashtiSK16,https://doi.org/10.1016/j.future.2015.09.014 +Yang-Lang Chang,A simulated annealing feature extraction approach for hyperspectral images.,2011,27,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs27.html#Chang11,https://doi.org/10.1016/j.future.2010.08.008 +Jari Hyväluoma,Evaluation of a lattice-Boltzmann method for mercury intrusion porosimetry simulations.,2004,20,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs20.html#HyvaluomaRJKKT04,https://doi.org/10.1016/j.future.2003.12.013 +Logesh Ravi,A hybrid quantum-induced swarm intelligence clustering for the urban trip recommendation in smart city.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#RaviSVGI18,https://doi.org/10.1016/j.future.2017.08.060 +Gianluca Dini,Risk analysis of Android applications: A user-centric solution.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#DiniMMPSS18,https://doi.org/10.1016/j.future.2016.05.035 +Jun Cai,Enhancing network capacity by weakening community structure in scale-free network.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#CaiWLLWX18,https://doi.org/10.1016/j.future.2017.08.014 +Panagiotis C. Kokkinos,A framework for providing hard delay guarantees and user fairness in Grid computing.,2009,25,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs25.html#KokkinosV09,https://doi.org/10.1016/j.future.2009.01.003 +Fabio M. Marchese,A directional diffusion algorithm on cellular automata for robot path-planning.,2002,18,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs18.html#Marchese02,https://doi.org/10.1016/S0167-739X(02)00077-8 +Fanyu Bu,An efficient fuzzy c-means approach based on canonical polyadic decomposition for clustering big data in IoT.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#Bu18,https://doi.org/10.1016/j.future.2018.04.045 +Songqiao Han,A resource aware software partitioning algorithm based on mobility constraints in pervasive grid environments.,2008,24,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs24.html#HanZCWZ08,https://doi.org/10.1016/j.future.2007.07.013 +Andriana Prentza,Intranet Health Clinic - A web-based interactive communication environment for the continuation in health care.,1999,15,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs15.html#PrentzaPAK99,https://doi.org/10.1016/S0167-739X(98)00072-7 +Rong Jiang,Achieving high performance and privacy-preserving query over encrypted multidimensional big metering data.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#JiangLC18,https://doi.org/10.1016/j.future.2016.05.005 +Ivan Dimov,Special section: Applications of distributed and grid computing.,2008,24,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs24.html#DimovDMWZ08,https://doi.org/10.1016/j.future.2007.04.014 +Ta Yuan Hsu,Causal consistency algorithms for partially replicated and fully replicated systems.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#HsuKS18,https://doi.org/10.1016/j.future.2017.04.044 +Henning Perl,Privacy/performance trade-off in private search on bio-medical data.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#PerlMBS14,https://doi.org/10.1016/j.future.2013.12.006 +Josué Pagán,Power transmission and workload balancing policies in eHealth mobile cloud computing scenarios.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#PaganZA18,https://doi.org/10.1016/j.future.2017.02.015 +Zulfiqar Ali,A zero-watermarking algorithm for privacy protection in biomedical signals.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#AliIAZS18,https://doi.org/10.1016/j.future.2017.12.007 +Ratko Jagodic,Enabling multi-user interaction in large high-resolution distributed environments.,2011,27,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs27.html#JagodicRJLD11,https://doi.org/10.1016/j.future.2010.11.018 +Shubhashis Sengupta,Multi-site data distribution for disaster recovery - A planning framework.,2014,41,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs41.html#SenguptaA14,https://doi.org/10.1016/j.future.2014.07.007 +Jianwei Ma,A classification of file placement and replication methods on grids.,2013,29,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs29.html#MaLG13,https://doi.org/10.1016/j.future.2013.02.006 +Francisco Candel,Accurately modeling the on-chip and off-chip GPU memory subsystem.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#CandelPSD18,https://doi.org/10.1016/j.future.2017.02.012 +Andreas Jacobsson,A risk analysis of a smart home automation system.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#JacobssonBC16,https://doi.org/10.1016/j.future.2015.09.003 +Sun Ying,Characteristics of human auditory model based on compensation of glottal features in speech emotion recognition.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#YingX18,https://doi.org/10.1016/j.future.2017.10.002 +Hong Yao,Mining multiple spatial-temporal paths from social media data.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#YaoXZG18,https://doi.org/10.1016/j.future.2017.08.003 +Javid Taheri,Hopfield neural network for simultaneous job scheduling and data replication in grids.,2013,29,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs29.html#TaheriZBK13,https://doi.org/10.1016/j.future.2013.04.020 +Wibke Sudholt,Application of grid computing to parameter sweeps and optimizations in molecular modeling.,2005,21,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs21.html#SudholtBAEGKN05,https://doi.org/10.1016/j.future.2004.09.010 +Roberto Ammendola,A hierarchical watchdog mechanism for systemic fault awareness on distributed systems.,2015,53,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs53.html#AmmendolaBFCLPR15,https://doi.org/10.1016/j.future.2014.12.015 +Jian Xu 0009,Signature based trouble ticket classification.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#XuZZHL18,https://doi.org/10.1016/j.future.2017.07.054 +Iñigo Goiri,Supporting CPU-based guarantees in cloud SLAs via resource-level QoS metrics.,2012,28,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs28.html#GoiriJFMG12,https://doi.org/10.1016/j.future.2011.11.004 +Huixi Li,An optimization of virtual machine selection and placement by using memory content similarity for server consolidation in cloud.,2018,84,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs84.html#LiLWW18,https://doi.org/10.1016/j.future.2018.02.026 +Michele Mazzucco,Balancing electricity bill and performance in server farms with setup costs.,2012,28,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs28.html#MazzuccoD12,https://doi.org/10.1016/j.future.2011.04.015 +Kyriakos Kritikos,Towards a security-enhanced PaaS platform for multi-cloud applications.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#KritikosKKM17,https://doi.org/10.1016/j.future.2016.10.008 +Laurent Lefèvre,IAN2 : Industrial Autonomic Network Node architecture for supporting personalized network services in the industrial context.,2008,24,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs24.html#LefevreG08,https://doi.org/10.1016/j.future.2007.02.007 +Anup Das 0001,Communication and migration energy aware task mapping for reliable multiprocessor systems.,2014,30,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs30.html#0001KV14,https://doi.org/10.1016/j.future.2013.06.016 +M. David Allen,What do we do now? Workflows for an unpredictable world.,2015,42,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs42.html#AllenCBM15,https://doi.org/10.1016/j.future.2014.08.004 +Hari Singh,A MapReduce-based scalable discovery and indexing of structured big data.,2017,73,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs73.html#SinghB17a,https://doi.org/10.1016/j.future.2017.03.028 +Franklin F. Kuo,A return visit to ICOT.,1986,2,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs2.html#Kuo86,https://doi.org/10.1016/0167-739X(86)90040-3 +Giancarlo Fortino,BodyCloud: A SaaS approach for community Body Sensor Networks.,2014,35,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs35.html#FortinoPPF14,https://doi.org/10.1016/j.future.2013.12.015 +Manuel A. Regueiro,Semantic mediation of observation datasets through Sensor Observation Services.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#RegueiroVST17,https://doi.org/10.1016/j.future.2016.08.013 +Marc Martin,Formation of an ant cemetery: swarm intelligence or statistical accident?,2002,18,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs18.html#MartinCA02,https://doi.org/10.1016/S0167-739X(02)00074-2 +Wenying Feng,Mining network data for intrusion detection through combining SVMs with ant colony networks.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#FengZHH14,https://doi.org/10.1016/j.future.2013.06.027 +Antonio González-Pardo,ACO-based clustering for Ego Network analysis.,2017,66,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs66.html#Gonzalez-PardoJ17,https://doi.org/10.1016/j.future.2016.06.033 +Bin Wang,A user mode CPU-GPU scheduling framework for hybrid workloads.,2016,63,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs63.html#WangMQYG16,https://doi.org/10.1016/j.future.2016.03.011 +Franklin F. Kuo,USERNET: A supercomputer network architecture.,1985,1,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs1.html#KuoG85,https://doi.org/10.1016/0167-739X(85)90017-2 +Joan Arnedo-Moreno,JXTA resource access control by means of advertisement encryption.,2010,26,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs26.html#Arnedo-MorenoH10,https://doi.org/10.1016/j.future.2009.05.023 +Adrián Castelló,On the adequacy of lightweight thread approaches for high-level parallel programming models.,2018,84,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs84.html#CastelloMSBBP18,https://doi.org/10.1016/j.future.2018.02.016 +Roberto Baldoni,On-line failure prediction in safety-critical systems.,2015,45,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs45.html#BaldoniMR15,https://doi.org/10.1016/j.future.2014.11.015 +Ruhul Amin,A robust and anonymous patient monitoring system using wireless medical sensor networks.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#AminIBKK18,https://doi.org/10.1016/j.future.2016.05.032 +Víctor Méndez Muñoz,Emergent algorithms for replica location and selection in data grid.,2010,26,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs26.html#MunozVCC10,https://doi.org/10.1016/j.future.2010.03.007 +Ryo Yoshida,3D web environment for knowledge management.,2000,17,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs17.html#YoshidaMM00,https://doi.org/10.1016/S0167-739X(99)00099-0 +Mohammad Mehedi Hassan,A multimedia healthcare data sharing approach through cloud-based body area network.,2017,66,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs66.html#HassanLYW17,https://doi.org/10.1016/j.future.2015.12.016 +Yong Xue,On the reconstruction of three-dimensional complex geological objects using Delaunay triangulation.,2004,20,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs20.html#XueSM04,https://doi.org/10.1016/j.future.2003.11.012 +Andrzej M. Goscinski,Towards an operating system managing parallelism of computing on clusters.,2000,17,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs17.html#Goscinski00,https://doi.org/10.1016/S0167-739X(00)00090-X +Dana Petcu,Portable Cloud applications - From theory to practice.,2013,29,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs29.html#PetcuMPC13,https://doi.org/10.1016/j.future.2012.01.009 +Sandro Fiore,Special section: Data management for eScience.,2011,27,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs27.html#FioreA11,https://doi.org/10.1016/j.future.2010.08.012 +Shaofei Wu,Research on internet information mining based on agent algorithm.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#WuWZ18,https://doi.org/10.1016/j.future.2018.04.040 +Francesco Piccialli,S-InTime: A social cloud analytical service oriented system.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#PiccialliBA18,https://doi.org/10.1016/j.future.2016.12.007 +Huakang Li,An optimized approach for massive web page classification using entity similarity based on semantic network.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#LiXLSC17,https://doi.org/10.1016/j.future.2017.03.003 +Mihai Carabas,Energy-efficient virtualized clusters.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#CarabasP17,https://doi.org/10.1016/j.future.2015.10.018 +Bartosz Balis,A monitoring system for multithreaded applications.,2003,19,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs19.html#BalisBFW03,https://doi.org/10.1016/S0167-739X(02)00174-7 +José-Jesús Fernández,Electron tomography of complex biological specimens on the Grid.,2007,23,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs23.html#FernandezGCM07,https://doi.org/10.1016/j.future.2006.07.010 +Zhigao Zheng,Guided dynamic particle swarm optimization for optimizing digital image watermarking in industry applications.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#ZhengSMS18,https://doi.org/10.1016/j.future.2018.05.027 +Xiaomin Yang,A sparse representation based pansharpening method.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#YangJYLZL18,https://doi.org/10.1016/j.future.2018.04.096 +Toktam Ghafarian,Cloud-aware data intensive workflow scheduling on volunteer computing systems.,2015,51,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs51.html#GhafarianJ15,https://doi.org/10.1016/j.future.2014.11.007 +Jitendra Kumar,Workload prediction in cloud using artificial neural network and adaptive differential evolution.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#KumarS18,https://doi.org/10.1016/j.future.2017.10.047 +Jianxun Liu,Dynamic batch processing in workflows: Model and implementation.,2007,23,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs23.html#LiuH07,https://doi.org/10.1016/j.future.2006.06.003 +Hong Liu 0006,Selective disclosure and yoking-proof based privacy-preserving authentication scheme for cloud assisted wearable devices.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#LiuNYWY18,https://doi.org/10.1016/j.future.2017.04.014 +Honghao Gao,Toward service selection for workflow reconfiguration: An interface-based computing solution.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#GaoHYDY18,https://doi.org/10.1016/j.future.2018.04.064 +Shudong Liu,A self-adaptive point-of-interest recommendation algorithm based on a multi-order Markov model.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#LiuW18,https://doi.org/10.1016/j.future.2018.07.008 +Luis F. G. Sarmenta,Sabotage-tolerance mechanisms for volunteer computing systems.,2002,18,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs18.html#Sarmenta02,https://doi.org/10.1016/S0167-739X(01)00077-2 +Mahmoud Al-Ayyoub,Resilient service provisioning in cloud based data centers.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#Al-AyyoubAJBH18,https://doi.org/10.1016/j.future.2017.07.005 +óscar Belmonte Fernández,Federate resource management in a Distributed Virtual Environment.,2010,26,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs26.html#FernandezCFGGVNS10,https://doi.org/10.1016/j.future.2009.08.014 +Qin Liu 0001,Preface: Security and privacy in big data clouds.,2017,72,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs72.html#LiuSHW17,https://doi.org/10.1016/j.future.2017.03.033 +Xiaoqun Yuan,Adaptive resource management for P2P live streaming systems.,2013,29,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs29.html#YuanMDLLYF13,https://doi.org/10.1016/j.future.2012.09.002 +Deka Ganesh Chandra,BASE analysis of NoSQL database.,2015,52,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs52.html#Chandra15,https://doi.org/10.1016/j.future.2015.05.003 +Leyli Mohammad Khanli,A new step toward load balancing based on competency rank and transitional phases in Grid networks.,2012,28,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs28.html#KhanliRZ12,https://doi.org/10.1016/j.future.2011.11.006 +Samer Al-Kiswany,A cross-layer optimized storage system for workflow applications.,2017,75,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs75.html#Al-KiswanyCYVR17,https://doi.org/10.1016/j.future.2017.02.038 +Ayush Dogra,Osseous and digital subtraction angiography image fusion via various enhancement schemes and Laplacian pyramid transformations.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#DograGA18,https://doi.org/10.1016/j.future.2017.12.052 +Priyanka Singh,Secure data deduplication using secret sharing schemes over cloud.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#SinghAR18,https://doi.org/10.1016/j.future.2018.04.097 +Lucio Grandinetti,Web based prediction for diabetes treatment.,2011,27,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs27.html#GrandinettiP11,https://doi.org/10.1016/j.future.2010.08.001 +Zhiao Shi,Scheduling workflow applications on processors with different capabilities.,2006,22,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs22.html#ShiD06,https://doi.org/10.1016/j.future.2005.11.002 +Jonas Dias,Data-centric iteration in dynamic workflows.,2015,46,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs46.html#DiasGRCVM15,https://doi.org/10.1016/j.future.2014.10.021 +Raheleh Khanduzi,Data envelopment analysis and interdiction median problem with fortification for enabling IoT technologies to relieve potential attacks.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#KhanduziPS18,https://doi.org/10.1016/j.future.2017.08.056 +B. B. Gupta,Recent research in computational intelligence paradigms into security and privacy for online social networks (OSNs).,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#GuptaSNYZS18,https://doi.org/10.1016/j.future.2018.05.017 +Bo Zhang,Hierarchy and statistical heuristic search.,1990,6,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs6.html#ZhangZ90,https://doi.org/10.1016/0167-739X(90)90008-2 +Kazunori Muraki,VENUS: Two-phase machine translation system.,1986,2,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs2.html#Muraki86,https://doi.org/10.1016/0167-739X(86)90005-1 +Beniamino Di Martino,Special section: Grid computing and the message passing interface.,2008,24,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs24.html#MartinoKD08,https://doi.org/10.1016/j.future.2007.06.002 +A. C. C. Coolen,Ising spin neural networks with spatial structure.,1990,6,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs6.html#Coolen90,https://doi.org/10.1016/0167-739X(90)90028-C +Ryszard Janicki,Invariants and paradigms of concurrency theory.,1992,8,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs8.html#JanickiK92,https://doi.org/10.1016/0167-739X(92)90073-K +Yuya Machida,Intelligent data staging with overlapped execution of grid applications.,2008,24,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs24.html#MachidaTNM08,https://doi.org/10.1016/j.future.2007.07.005 +Wei Zheng,Cost optimization for deadline-aware scheduling of big-data processing jobs on clouds.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#ZhengQEZC18,https://doi.org/10.1016/j.future.2017.12.004 +Yuyi Fang,Eavesdrop with PoKeMon: Position free keystroke monitoring using acoustic data.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#FangZWMCHY18,https://doi.org/10.1016/j.future.2017.10.039 +Evan Tick,Appraisal of parallel processing research at ICOT.,1993,9,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs9.html#Tick93,https://doi.org/10.1016/0167-739X(93)90005-A +Mingzhong Wang,Risk-aware intermediate dataset backup strategy in cloud-based data intensive workflows.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#WangZZ16,https://doi.org/10.1016/j.future.2014.08.009 +Bradley Broom,KELPIO a telescope-ready domain-specific I/O library for irregular block-structured applications.,2002,18,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs18.html#BroomFK02,https://doi.org/10.1016/S0167-739X(01)00072-3 +Md. Enamul Kabir,A novel statistical technique for intrusion detection systems.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#KabirHWZ18,https://doi.org/10.1016/j.future.2017.01.029 +Roberto Ammendola,ASIP acceleration for virtual-to-physical address translation on RDMA-enabled FPGA-based network interfaces.,2015,53,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs53.html#AmmendolaBFGGCL15,https://doi.org/10.1016/j.future.2014.12.012 +Roland Wismüller,High-level application-specific performance analysis using the G-PM tool.,2008,24,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs24.html#WismullerBF08,https://doi.org/10.1016/j.future.2007.03.008 +Babak Ravandi,A self-organized resource provisioning for cloud block storage.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#RavandiP18,https://doi.org/10.1016/j.future.2018.06.045 +Juan Luis Pérez,A resilient and distributed near real-time traffic forecasting application for Fog computing environments.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#PerezGBC18,https://doi.org/10.1016/j.future.2018.05.013 +Muhammad Younas 0001,Internet of Things and Cloud Services.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#YounasAP16,https://doi.org/10.1016/j.future.2015.11.019 +Zhiying Wang,Design and evaluation of a relational knowledge base prototype machine.,1990,6,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs6.html#WangC90,https://doi.org/10.1016/0167-739X(90)90011-2 +J. Octavio Gutiérrez-García,A family of heuristics for agent-based elastic Cloud bag-of-tasks concurrent scheduling.,2013,29,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs29.html#Gutierrez-GarciaS13,https://doi.org/10.1016/j.future.2012.01.005 +Shapna Muralidharan,MDP-IoT: MDP based interest forwarding for heterogeneous traffic in IoT-NDN environment.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#MuralidharanRS18,https://doi.org/10.1016/j.future.2017.08.058 +Xiaocheng Liu,A hybrid solution method for CFD applications on GPU-accelerated hybrid HPC platforms.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#LiuZX16,https://doi.org/10.1016/j.future.2015.08.002 +Holger Bischof,A cost-optimal parallel implementation of a tridiagonal system solver using skeletons.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#BischofG05,https://doi.org/10.1016/j.future.2004.05.015 +Dror Irony,Parallel and fully recursive multifrontal sparse Cholesky.,2004,20,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs20.html#IronyST04,https://doi.org/10.1016/j.future.2003.07.007 +Jun Ye,Controllable keyword search scheme supporting multiple users.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#YeD18,https://doi.org/10.1016/j.future.2017.09.030 +Martin Henze,A comprehensive approach to privacy in the cloud-based Internet of Things.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#HenzeHKHRW16,https://doi.org/10.1016/j.future.2015.09.016 +Claudia Misale,PiCo: High-performance data analytics pipelines in modern C++.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#MisaleDTMA18,https://doi.org/10.1016/j.future.2018.05.030 +John M. Brooke,Enabling scientific collaboration on the Grid.,2010,26,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs26.html#BrookeP10,https://doi.org/10.1016/j.future.2008.03.001 +Paul de Vrieze,Building enterprise mashups.,2011,27,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs27.html#VriezeXBYC11,https://doi.org/10.1016/j.future.2010.10.004 +Massimo Ficco,Aging-related performance anomalies in the apache storm stream processing system.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#FiccoPR18,https://doi.org/10.1016/j.future.2017.08.051 +Marta Beltrán,BECloud: A new approach to analyse elasticity enablers of cloud services.,2016,64,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs64.html#Beltran16,https://doi.org/10.1016/j.future.2016.05.014 +Klaus Röbenack,Automatic differentiation and nonlinear controller design by exact linearization.,2005,21,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs21.html#Robenack05,https://doi.org/10.1016/j.future.2004.11.004 +K. Deepa Thilak,Cellular Automata-based Improved Ant Colony-based Optimization Algorithm for mitigating DDoS attacks in VANETs.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#ThilakA18,https://doi.org/10.1016/j.future.2017.11.043 +Farzana Rahman,A privacy preserving framework for RFID based healthcare systems.,2017,72,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs72.html#RahmanBA17,https://doi.org/10.1016/j.future.2016.06.001 +David Camacho,From ephemeral computing to deep bioinspired algorithms: New trends and applications.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#CamachoLGCCLVO18,https://doi.org/10.1016/j.future.2018.07.056 +Mauro Conti,Internet of Things security and forensics: Challenges and opportunities.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#ContiDFW18,https://doi.org/10.1016/j.future.2017.07.060 +Cristina Alcaraz,WASAM: A dynamic wide-area situational awareness model for critical domains in Smart Grids.,2014,30,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs30.html#AlcarazL14,https://doi.org/10.1016/j.future.2013.06.030 +Oscar Belmonte,Efficiently using connectivity information between triangles in a mesh for real-time renderin.,2004,20,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs20.html#BelmonteRRCF04,https://doi.org/10.1016/j.future.2004.05.028 +Bei Xu,An angle-based interest model for text recommendation.,2016,64,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs64.html#XuZ16,https://doi.org/10.1016/j.future.2016.04.011 +Marcelo Soares Pimenta,Cooperative mechanisms for networked music.,2011,27,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs27.html#PimentaMFH11,https://doi.org/10.1016/j.future.2010.03.005 +Daniel Krzywicki,Computing agents for decision support systems.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#KrzywickiFBK14,https://doi.org/10.1016/j.future.2014.02.002 +Spyros Blanas,Contention-based performance evaluation of multidimensional range search in peer-to-peer networks.,2009,25,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs25.html#BlanasS09,https://doi.org/10.1016/j.future.2008.04.003 +Mark E. Stickel,Automated theorem-proving research in the Fifth Generation Computer Systems Project: Model generation theorem provers.,1993,9,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs9.html#Stickel93,https://doi.org/10.1016/0167-739X(93)90007-C +Feng Tian 0002,PWLM3-based automatic performance model estimation method for HDFS write and read operations.,2015,50,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs50.html#TianMDZ15,https://doi.org/10.1016/j.future.2015.01.011 +Ben-Jye Chang,Reward-based Markov chain analysis adaptive global resource management for inter-cloud computing.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#ChangLL18,https://doi.org/10.1016/j.future.2017.09.046 +J. J. Garcia-Luna-Aceves,Routing management in very large-scale networks.,1988,4,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs4.html#Garcia-Luna-Aceves88,https://doi.org/10.1016/0167-739X(88)90009-X +Emna Mezghani,A collaborative methodology for tacit knowledge management: Application to scientific research.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#MezghaniED16,https://doi.org/10.1016/j.future.2015.05.007 +Zhusong Liu,Server-aided anonymous attribute-based authentication in cloud computing.,2015,52,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs52.html#LiuYL15,https://doi.org/10.1016/j.future.2014.12.001 +Taesoon Park,An efficient logging and recovery scheme for lazy release consistent distributed shared memory systems.,2000,17,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs17.html#ParkY00,https://doi.org/10.1016/S0167-739X(00)00085-6 +Christian Kroiß,Logic-based modeling of information transfer in cyber-physical multi-agent systems.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#KroissB16,https://doi.org/10.1016/j.future.2015.09.013 +Luc Renambot,Enabling high resolution collaborative visualization in display rich virtual organizations.,2009,25,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs25.html#RenambotJHJL09,https://doi.org/10.1016/j.future.2008.07.004 +Anna Goy,Ontology-driven collaborative annotation in shared workspaces.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#GoyMPPS16,https://doi.org/10.1016/j.future.2015.04.013 +Bo Yang 0021,Envy-free auction mechanism for VM pricing and allocation in clouds.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#YangLJL18,https://doi.org/10.1016/j.future.2018.04.055 +SK Hafizul Islam,A robust and efficient password-based conditional privacy preserving authentication and group-key agreement protocol for VANETs.,2018,84,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs84.html#IslamOVALR18,https://doi.org/10.1016/j.future.2017.07.002 +Gianluigi Folino,An autonomic tool for building self-organizing Grid-enabled applications.,2007,23,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs23.html#FolinoS07,https://doi.org/10.1016/j.future.2006.11.003 +David W. Chadwick,A conceptual model for attribute aggregation.,2010,26,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs26.html#ChadwickIK10,https://doi.org/10.1016/j.future.2009.12.004 +Christian Grimme,Cooperative negotiation and scheduling of scientific workflows in the collaborative climate community data and processing grid.,2009,25,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs25.html#GrimmeP09,https://doi.org/10.1016/j.future.2008.05.002 +Ricardo Colomo Palacios,Special issue on exploiting semantic technologies with particularization on linked data over grid and cloud architectures.,2014,32,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs32.html#PalaciosSG14,https://doi.org/10.1016/j.future.2013.10.021 +Javier Galbally,A high performance fingerprint liveness detection method based on quality related features.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#GalballyAFO12,https://doi.org/10.1016/j.future.2010.11.024 +Armand de Callataÿ,Logic programs directly processed in a network of content addressable memories.,1988,4,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs4.html#Callatay88,https://doi.org/10.1016/0167-739X(88)90011-8 +Bruce Schneier,Remote auditing of software outputs using a trusted coprocessor.,1997,13,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs13.html#SchneierK97,https://doi.org/10.1016/S0167-739X(97)00004-6 +Son N. Han,Semantic service provisioning for smart objects: Integrating IoT applications into the web.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#HanC17,https://doi.org/10.1016/j.future.2016.12.037 +Thilina Gunarathne,Scalable parallel computing on clouds using Twister4Azure iterative MapReduce.,2013,29,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs29.html#GunarathneZWQ13,https://doi.org/10.1016/j.future.2012.05.027 +Zheng Yan 0002,Trustworthy data fusion and mining in Internet of Things.,2015,49,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs49.html#YanLVY15,https://doi.org/10.1016/j.future.2015.04.001 +Stephan Diehl 0001,Abstract machines for programming language implementation.,2000,16,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs16.html#DiehlHS00a,https://doi.org/10.1016/S0167-739X(99)00088-6 +Jan Wendler,Executing and observing CFD applications on the Grid.,2005,21,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs21.html#WendlerS05,https://doi.org/10.1016/j.future.2004.09.026 +Jiwei Xu,Efficient image restoration of virtual machines with reference count based rewriting and caching.,2017,77,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs77.html#XuWXZZ17,https://doi.org/10.1016/j.future.2017.06.026 +Michio Oki,Substation operation support system with event-driven processing.,1989,5,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs5.html#OkiNHT89,https://doi.org/10.1016/0167-739X(89)90019-8 +Biswa N. Datta,Krylov subspace methods for large-scale matrix problems in control.,2003,19,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs19.html#Datta03,https://doi.org/10.1016/S0167-739X(03)00050-5 +Farrukh Aslam Khan,A detection and prevention system against collaborative attacks in Mobile Ad hoc Networks.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#KhanIAD17,https://doi.org/10.1016/j.future.2016.07.010 +Wenke Zang,A cloud model based DNA genetic algorithm for numerical optimization problems.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#ZangRZL18,https://doi.org/10.1016/j.future.2017.07.036 +Shengzhi Zhang,Towards transparent and distributed workload management for large scale web servers.,2013,29,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs29.html#ZhangWWVL13,https://doi.org/10.1016/j.future.2012.10.004 +Zheng Yan 0002,Flexible data access control in D2D communications.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#YanXZG18,https://doi.org/10.1016/j.future.2017.08.052 +Yuan-Fang Li,An ontology-centric architecture for extensible scientific data management systems.,2013,29,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs29.html#LiKNWH13,https://doi.org/10.1016/j.future.2011.06.007 +Mark R. T. Roest,Using the GCel for simulation of flow in the continental shelf region.,1995,11,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs11.html#RoestV95,https://doi.org/10.1016/0167-739X(94)00054-I +Athina Bourdena,A resource intensive traffic-aware scheme using energy-aware routing in cognitive radio networks.,2014,39,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs39.html#BourdenaMKPMY14,https://doi.org/10.1016/j.future.2014.02.013 +Athanasia Asiki,A grid middleware for data management exploiting peer-to-peer techniques.,2009,25,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs25.html#AsikiDKZTKT09,https://doi.org/10.1016/j.future.2008.09.005 +R. Naidoo,Application of the Kurganov-Levy semi-discrete numerical scheme to hyperbolic problems with nonlinear source terms.,2004,20,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs20.html#NaidooB04,https://doi.org/10.1016/j.future.2003.07.010 +Qi Guo,MP-MID: Multi-Protocol Oriented Middleware-level Intrusion Detection method for wireless sensor networks.,2017,70,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs70.html#GuoLXF17,https://doi.org/10.1016/j.future.2016.06.010 +Dave Pape,Ygdrasil--a framework for composing shared virtual worlds.,2003,19,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs19.html#PapeADD03,https://doi.org/10.1016/S0167-739X(03)00081-5 +Thanasis G. Papaioannou,Reputation-based estimation of individual performance in collaborative and competitive grids.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#PapaioannouS10,https://doi.org/10.1016/j.future.2009.05.007 +June M. Donato,Mining multi-dimensional data for decision support.,1999,15,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs15.html#DonatoSHSLG99,https://doi.org/10.1016/S0167-739X(98)00086-7 +Yong Woo Lee,A virtual server queueing network method for component based performance modelling of metacomputing.,2004,20,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs20.html#Lee04,https://doi.org/10.1016/S0167-739X(03)00141-9 +Suraj Pandey,An autonomic cloud environment for hosting ECG data analysis services.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#PandeyVNKB12,https://doi.org/10.1016/j.future.2011.04.022 +Ruay Shiung Chang,Complete and fragmented replica selection and retrieval in Data Grids.,2007,23,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs23.html#ChangC07,https://doi.org/10.1016/j.future.2006.09.006 +Zhipeng Tan,EML: An I/O scheduling algorithm in large-scale-application environments.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#TanDFZ18,https://doi.org/10.1016/j.future.2017.04.019 +Radu Prodan,Scientific computing with Google App Engine.,2013,29,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs29.html#ProdanS13,https://doi.org/10.1016/j.future.2012.12.018 +Zhongjin Li,Energy cost minimization with job security guarantee in Internet data center.,2017,73,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs73.html#LiGLYHLC17,https://doi.org/10.1016/j.future.2016.12.017 +Feiyu Chen,Speed control of mobile chargers serving wireless rechargeable networks.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#ChenZMGCDY18,https://doi.org/10.1016/j.future.2016.12.011 +Cristian Mateos,On the evaluation of gridification effort and runtime aspects of JGRIM applications.,2010,26,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs26.html#MateosZC10,https://doi.org/10.1016/j.future.2010.02.014 +Xiaoli Wang,A new multi-objective bi-level programming model for energy and locality aware multi-job scheduling in cloud computing.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#WangWC14,https://doi.org/10.1016/j.future.2013.12.004 +Andrés García-García,SLA-driven dynamic cloud resource management.,2014,31,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs31.html#Garcia-GarciaEG14,https://doi.org/10.1016/j.future.2013.10.005 +Mohd Farhan Md Fudzee,QoS-based adaptation service selection broker.,2011,27,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs27.html#FudzeeA11,https://doi.org/10.1016/j.future.2010.09.005 +Frank G. Goethals,The data building blocks of the enterprise architect.,2007,23,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs23.html#GoethalsLSV07,https://doi.org/10.1016/j.future.2006.05.004 +Thomas A. DeFanti,iGrid 2002: The International Virtual Laboratory.,2003,19,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs19.html#DeFantiBL03,https://doi.org/10.1016/S0167-739X(03)00060-8 +Maciej Malawski,Algorithms for cost- and deadline-constrained provisioning for scientific workflow ensembles in IaaS clouds.,2015,48,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs48.html#MalawskiJDN15,https://doi.org/10.1016/j.future.2015.01.004 +Richard Hughes-Jones,Performance of 1 and 10 Gigabit Ethernet cards with server quality motherboards.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#Hughes-JonesCD05,https://doi.org/10.1016/j.future.2004.10.002 +Muhammad Khurram Khan,High performance biometrics recognition algorithms and systems.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#Khan12,https://doi.org/10.1016/j.future.2011.08.010 +Leon Gommans,Token based networking: Experiment NL-101.,2006,22,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs22.html#GommansOWLMTM06,https://doi.org/10.1016/j.future.2006.03.025 +Ji Liu 0003,Multi-objective scheduling of Scientific Workflows in multisite clouds.,2016,63,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs63.html#LiuPVOM16,https://doi.org/10.1016/j.future.2016.04.014 +Awais Ahmad,Toward modeling and optimization of features selection in Big Data based social Internet of Things.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#AhmadKPDRJC18,https://doi.org/10.1016/j.future.2017.09.028 +Sofia Guzzetti,Platform and algorithm effects on computational fluid dynamics applications in life sciences.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#GuzzettiPSVVS17,https://doi.org/10.1016/j.future.2016.03.024 +Peter Bertelsen,Dynamic semantics of Java bytecode.,2000,16,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs16.html#Bertelsen00,https://doi.org/10.1016/S0167-739X(99)00094-1 +Yen-Jen Oyang,The M2 hierarchical multiprocessor.,1993,9,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs9.html#OyangSCY93,https://doi.org/10.1016/0167-739X(93)90014-G +Dezhong Yao,Energy efficient indoor tracking on smartphones.,2014,39,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs39.html#YaoYDKMYJ14,https://doi.org/10.1016/j.future.2013.12.032 +Xi Wu 0001,Formalization and analysis of the REST architecture from the process algebra perspective.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#0001Z16,https://doi.org/10.1016/j.future.2015.09.007 +Erika Rosas,Web search results caching service for structured P2P networks.,2014,30,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs30.html#RosasHMC14,https://doi.org/10.1016/j.future.2013.06.018 +Thamarai Selvi Somasundaram,CLOUDRB: A framework for scheduling and managing High-Performance Computing (HPC) applications in science cloud.,2014,34,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs34.html#SomasundaramG14,https://doi.org/10.1016/j.future.2013.12.024 +Rongbo Zhu,Special section: Green computing.,2012,28,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs28.html#ZhuSH12,https://doi.org/10.1016/j.future.2011.06.011 +Zhihan Lv,Big data analytics for sustainability.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#LvIC18,https://doi.org/10.1016/j.future.2018.05.020 +Anne Benoit,Memory-efficient Kronecker algorithms with applications to the modelling of parallel systems.,2006,22,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs22.html#BenoitPS06,https://doi.org/10.1016/j.future.2006.02.006 +Emir Halepovic,The JXTA performance model and evaluation.,2005,21,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs21.html#HalepovicD05,https://doi.org/10.1016/j.future.2004.04.016 +Aarthi Nagarajan,Dynamic trust enhanced security model for trusted platform based services.,2011,27,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs27.html#NagarajanV11,https://doi.org/10.1016/j.future.2010.10.008 +Rajni Aron,Bacterial foraging based hyper-heuristic for resource scheduling in grid computing.,2013,29,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs29.html#AronC13,https://doi.org/10.1016/j.future.2012.09.005 +Ying Ji,Multi-objective linear programming games and applications in supply chain competition.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#JiLQ18,https://doi.org/10.1016/j.future.2018.04.041 +Paola Grosso,Dynamic photonic lightpaths in the StarPlane network.,2009,25,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs25.html#GrossoMMBXL09,https://doi.org/10.1016/j.future.2008.07.008 +Robert L. Grossman,Data mining middleware for wide-area high-performance networks.,2006,22,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs22.html#GrossmanGHSMSTKYLKS06,https://doi.org/10.1016/j.future.2006.03.024 +Caiping Guo,Application of optimization model with piecewise penalty to intensity-modulated radiation therapy.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#GuoZZGS18,https://doi.org/10.1016/j.future.2017.10.003 +Min Chen 0003,Edge cognitive computing based smart healthcare system.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#ChenLHQH18,https://doi.org/10.1016/j.future.2018.03.054 +Marco Di Stefano,Phenylium and naphtylium cations in the interstellar medium: a density functional study on their reactivity towards D2 molecules.,2004,20,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs20.html#StefanoRS04,https://doi.org/10.1016/j.future.2003.11.020 +Khondaker Abdullah-Al-Mamun,Cloud based framework for Parkinson's disease diagnosis and monitoring system for remote healthcare applications.,2017,66,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs66.html#Abdullah-Al-Mamun17,https://doi.org/10.1016/j.future.2015.11.010 +Ali Hassan Sodhro,Convergence of IoT and product lifecycle management in medical health care.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#SodhroPS18,https://doi.org/10.1016/j.future.2018.03.052 +Vlado Stankovski,Special section: Data mining in grid computing environments.,2007,23,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs23.html#StankovskiD07,https://doi.org/10.1016/j.future.2006.05.001 +Ariel Quezada-Pina,Adaptive parallel job scheduling with resource admissible allocation on two-level hierarchical grids.,2012,28,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs28.html#Quezada-PinaTGHRSYM12,https://doi.org/10.1016/j.future.2012.02.004 +Yingwei Jin,A highly available spectrum allocation service model in dynamic spectrum market.,2012,28,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs28.html#JinSSLM12,https://doi.org/10.1016/j.future.2011.10.003 +Benjamin Weyers,Interface creation and redesign techniques in collaborative learning scenarios.,2011,27,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs27.html#WeyersLB11,https://doi.org/10.1016/j.future.2010.05.001 +Timothy M. McPhillips,Scientific workflow design for mere mortals.,2009,25,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs25.html#McPhillipsBZL09,https://doi.org/10.1016/j.future.2008.06.013 +Huabing Zhu,A prototype of distributed molecular visualization on computational grids.,2004,20,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs20.html#ZhuCWCS04,https://doi.org/10.1016/j.future.2003.11.023 +Arnoud Visser,Traffic simulation.,2001,17,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs17.html#VisserN01,https://doi.org/10.1016/S0167-739X(00)00030-3 +Dominik Slezak,Special section on applications of intelligent data and knowledge processing technologies - Preface.,2014,33,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs33.html#Slezak14,https://doi.org/10.1016/j.future.2013.10.022 +Mouzhi Ge,Big Data for Internet of Things: A Survey.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#GeBB18,https://doi.org/10.1016/j.future.2018.04.053 +Mateja Dumic,Evolving priority rules for resource constrained project scheduling problem with genetic programming.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#DumicSCJ18,https://doi.org/10.1016/j.future.2018.04.029 +Agostino Forestiero,QoS-based dissemination of content in Grids.,2008,24,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs24.html#ForestieroMS08,https://doi.org/10.1016/j.future.2007.05.003 +Yulai Xie,Oasis: An active storage framework for object storage platform.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#XieF0L16,https://doi.org/10.1016/j.future.2015.08.011 +Yanan Hao,Web services discovery and rank: An information retrieval approach.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#HaoZC10,https://doi.org/10.1016/j.future.2010.04.012 +Jean-François Mainguet,Fingerprint recognition based on silicon chips.,2000,16,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs16.html#MainguetPH00,https://doi.org/10.1016/S0167-739X(99)00064-3 +Youngsong Mun,A location management scheme to provide IP mobility over wireless ATM.,2004,20,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs20.html#MunK04,https://doi.org/10.1016/S0167-739X(03)00135-3 +Dagmar Krefting,Grid based sleep research - Analysis of polysomnographies using a grid infrastructure.,2013,29,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs29.html#KreftingCHLTP13,https://doi.org/10.1016/j.future.2010.03.008 +Nicola Bicocchi,Handling dynamics in diffusive aggregation schemes: An evaporative approach.,2010,26,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs26.html#BicocchiMZ10,https://doi.org/10.1016/j.future.2010.02.008 +Hanspeter Pfister,Architectures for real-time volume rendering.,1999,15,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs15.html#Pfister99,https://doi.org/10.1016/S0167-739X(98)00051-X +Hancong Duan,Energy-aware scheduling of virtual machines in heterogeneous cloud computing systems.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#DuanCMW17,https://doi.org/10.1016/j.future.2016.02.016 +Alexandru Uta,Overcoming data locality: An in-memory runtime file system with symmetrical data distribution.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#UtaSK16,https://doi.org/10.1016/j.future.2015.01.013 +Hamid Sarbazi-Azad,Analysis of k-ary n-cubes with dimension-ordered routing.,2003,19,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs19.html#Sarbazi-AzadKO03,https://doi.org/10.1016/S0167-739X(02)00125-5 +Chao Tong,A novel deep learning method for aircraft landing speed prediction based on cloud-based sensor data.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#TongYWZ18,https://doi.org/10.1016/j.future.2018.06.023 +Mansura Habiba,A component based unified architecture for utility service in cloud.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#HabibaIA18,https://doi.org/10.1016/j.future.2017.10.017 +Tomasz Haupt,WebFlow: a framework for web based metacomputing.,2000,16,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs16.html#HauptAF00,https://doi.org/10.1016/S0167-739X(99)00133-8 +Israel Casas,A balanced scheduler with data reuse and replication for scientific workflows in cloud computing systems.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#CasasTRWZ17,https://doi.org/10.1016/j.future.2015.12.005 +Mihaela-Andreea Vasile,Resource-aware hybrid scheduling algorithm in heterogeneous distributed computing.,2015,51,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs51.html#VasilePTCK15,https://doi.org/10.1016/j.future.2014.11.019 +G. S. Badrinath,Palmprint based recognition system using phase-difference information.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#BadrinathG12,https://doi.org/10.1016/j.future.2010.11.029 +Yun Han Lee,Improving job scheduling algorithms in a grid environment.,2011,27,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs27.html#LeeLC11,https://doi.org/10.1016/j.future.2011.05.014 +Andrew Hamilton-Wright,'Cheap grid': Leveraging system failure using stochastic computation.,2007,23,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs23.html#Hamilton-WrightS07,https://doi.org/10.1016/j.future.2006.09.005 +Marina Zapater,A novel energy-driven computing paradigm for e-health scenarios.,2014,34,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs34.html#ZapaterAAMO14,https://doi.org/10.1016/j.future.2013.12.012 +Sabine Dormann,Fourier analysis of Turing-like pattern formation in cellular automaton models.,2001,17,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs17.html#DormannDL01,https://doi.org/10.1016/S0167-739X(00)00068-6 +Abdul Nasir Khan,Towards secure mobile cloud computing: A survey.,2013,29,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs29.html#KhanKKM13,https://doi.org/10.1016/j.future.2012.08.003 +Zuojie Deng,A multi-user searchable encryption scheme with keyword authorization in a cloud storage.,2017,72,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs72.html#DengLLZ17,https://doi.org/10.1016/j.future.2016.05.017 +Knut Hüper,New algorithms for the iterative refinement of estimates of invariant subspaces.,2003,19,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs19.html#HuperD03,https://doi.org/10.1016/S0167-739X(03)00048- +Jin Ok Kim,Real-time interactive motion transitions by a uniform posture map.,2005,21,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs21.html#KimLC05,https://doi.org/10.1016/j.future.2004.03.010 +Jesper Vasell,The function processor: A data-driven processor array for irregular computations.,1992,8,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs8.html#VasellV92,https://doi.org/10.1016/0167-739X(92)90066-K +Chengzheng Sun,POOSS: A Parallel Object-Oriented Stable Storage.,1991,6,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs6.html#SunHHW91,https://doi.org/10.1016/0167-739X(91)90003-G +Donglai Zhang,Web services workflow with result data forwarding as resources.,2011,27,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs27.html#ZhangCW11,https://doi.org/10.1016/j.future.2010.12.015 +Liviu Joita,A catallactic market for data mining services.,2007,23,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs23.html#JoitaRFCCNA07,https://doi.org/10.1016/j.future.2006.06.007 +Vaidy S. Sunderam,Parallel I/O for distributed systems: Issues and implementation.,1996,12,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs12.html#SunderamM96,https://doi.org/10.1016/0167-739X(95)00033-O +Ning Kang,Performance of ILU preconditioning techniques in simulating anisotropic diffusion in the human brain.,2004,20,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs20.html#KangZC04,https://doi.org/10.1016/j.future.2003.07.014 +Minwoo Kim,Architectural investigation of matrix data layout on multicore processors.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#KimR14,https://doi.org/10.1016/j.future.2013.10.020 +Altino M. Sampaio,Towards high-available and energy-efficient virtual computing environments in the cloud.,2014,40,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs40.html#SampaioB14,https://doi.org/10.1016/j.future.2014.06.008 +Maziar Nekovee,Simulations of large-scale WiFi-based wireless networks: Interdisciplinary challenges and applications.,2010,26,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs26.html#NekoveeS10,https://doi.org/10.1016/j.future.2008.05.007 +Yun Seok Chang,Nonlinear model for ECG R-R interval variation using genetic programming approach.,2005,21,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs21.html#ChangPK05,https://doi.org/10.1016/j.future.2004.03.011 +Jörn Altmann,Preface of special issue on the economics of computing services.,2012,28,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs28.html#AltmannRB12,https://doi.org/10.1016/j.future.2012.03.023 +Sajal K. Das,MinEX: a latency-tolerant dynamic partitioner for grid computing applications.,2002,18,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs18.html#DasHB02,https://doi.org/10.1016/S0167-739X(01)00073-5 +Bei Gong,A remote attestation mechanism for the sensing layer nodes of the Internet of Things.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#GongZW18,https://doi.org/10.1016/j.future.2017.07.034 +Md. Shamsul Huda,Hybrids of support vector machine wrapper and filter based framework for malware detection.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#HudaAAA0Y16,https://doi.org/10.1016/j.future.2014.06.001 +Xuan-Yi Lin,Master-worker model for MapReduce paradigm on the TILE64 many-core platform.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#LinC14,https://doi.org/10.1016/j.future.2013.05.001 +Andrea Sanna,A distributed JXTA-based architecture for searching and retrieving solar data.,2005,21,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs21.html#SannaZC05,https://doi.org/10.1016/j.future.2004.04.014 +Wenbin Jiang,FIPIP: A novel fine-grained parallel partition based intra-frame prediction on heterogeneous many-core systems.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#JiangLYLJYC18,https://doi.org/10.1016/j.future.2016.05.009 +Giancarlo Mauri,A parallel algorithm for pattern discovery in biological sequences.,2002,18,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs18.html#MauriP02,https://doi.org/10.1016/S0167-739X(02)00057-2 +Shigeru Kagayama,The fundamentals of expert systems on tort in Japan.,1989,5,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs5.html#Kagayama89,https://doi.org/10.1016/0167-739X(89)90033-2 +Alberto Sánchez,An autonomic framework for enhancing the quality of data grid services.,2012,28,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs28.html#SanchezMPC12,https://doi.org/10.1016/j.future.2011.08.016 +Walaa N. Ismail,Mining of productive periodic-frequent patterns for IoT data analytics.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#IsmailHA18,https://doi.org/10.1016/j.future.2018.05.085 +Zhenhua Wang,Analysis of user behaviors by mining large network data sets.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#WangTGYH14,https://doi.org/10.1016/j.future.2014.02.015 +Szu-Yin Lin,Dynamic fine-tuning stacked auto-encoder neural network for weather forecast.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#LinCLHC18,https://doi.org/10.1016/j.future.2018.06.052 +Vlado Stankovski,Grid-enabling data mining applications with DataMiningGrid: An architectural perspective.,2008,24,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs24.html#StankovskiSKNWKD08,https://doi.org/10.1016/j.future.2007.05.004 +Yuan Cao,Parallel processing algorithm for railway signal fault diagnosis data based on cloud computing.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#CaoLZ18,https://doi.org/10.1016/j.future.2018.05.038 +Vladimir Villarreal,Mobile and ubiquitous architecture for the medical control of chronic diseases through the use of intelligent devices: Using the architecture for patients with diabetes.,2014,34,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs34.html#VillarrealFHB14,https://doi.org/10.1016/j.future.2013.12.013 +Lourdes Araujo,Parallel execution of Prolog with granularity control.,1998,13,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs13.html#AraujoR98,https://doi.org/10.1016/S0167-739X(97)00025-3 +Christian Esposito,On the optimal tuning and placement of FEC codecs within multicasting trees for resilient publish/subscribe services in edge-IoT architectures.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#EspositoBCP18,https://doi.org/10.1016/j.future.2018.05.026 +Chiara Bodei,Authentication primitives for secure protocol specifications.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#BodeiDFP05,https://doi.org/10.1016/j.future.2004.05.004 +Ramon Sanchez-Iborra,Evolving IoT networks by the confluence of MEC and LP-WAN paradigms.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#Sanchez-IborraS18,https://doi.org/10.1016/j.future.2018.05.057 +Matt J. Fairman,Earth system modelling with Windows Workflow Foundation.,2009,25,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs25.html#FairmanPXMNLMTC09,https://doi.org/10.1016/j.future.2008.06.011 +Esma Yildirim,Modeling throughput sampling size for a cloud-hosted data scheduling and optimization service.,2013,29,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs29.html#YildirimKK13,https://doi.org/10.1016/j.future.2013.01.003 +Franciszek Seredynski,Distributed multiprocessor scheduling with decomposed optimization criterion.,2001,17,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs17.html#SeredynskiKJ01,https://doi.org/10.1016/S0167-739X(99)00119-3 +Ivan Djordjevic,Dynamic security perimeters for inter-enterprise service integration.,2007,23,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs23.html#DjordjevicDRRR07,https://doi.org/10.1016/j.future.2006.09.009 +Thierry Delaitre,EDPEPPS: an integrated environment for the parallel development life-cycle.,2000,16,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs16.html#DelaitreZJAW00,https://doi.org/10.1016/S0167-739X(99)00072-2 +Carmen Cotelo,Retelab: A geospatial grid web laboratory for the oceanographic research community.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#CoteloGLMCMV10,https://doi.org/10.1016/j.future.2010.05.018 +Zulqarnain Rashid,Using Augmented Reality and Internet of Things to improve accessibility of people with motor disabilities in the context of Smart Cities.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#RashidMPP17,https://doi.org/10.1016/j.future.2016.11.030 +Zhijie Han,A novel routing algorithm for IoT cloud based on hash offset tree.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#HanLL18,https://doi.org/10.1016/j.future.2018.02.047 +Ruijuan Zheng,A collaborative analysis method of user abnormal behavior based on reputation voting in cloud environment.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#ZhengCZWZW18,https://doi.org/10.1016/j.future.2018.01.028 +Libin Wang,Comments on a theorem on grid access control.,2006,22,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs22.html#WangC06a,https://doi.org/10.1016/j.future.2005.10.001 +David J. Power,Securing web services for deployment in health grids.,2006,22,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs22.html#PowerPSS06,https://doi.org/10.1016/j.future.2005.09.003 +Zhihua Li,Bayesian network-based Virtual Machines consolidation method.,2017,69,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs69.html#LiYYY17,https://doi.org/10.1016/j.future.2016.12.008 +Qinghua Zheng,Virtual machine consolidated placement based on multi-objective biogeography-based optimization.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#ZhengLLSZTCL16,https://doi.org/10.1016/j.future.2015.02.010 +Nahid Emad,An asynchronous algorithm on the NetSolve global computing system.,2006,22,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs22.html#EmadSD06,https://doi.org/10.1016/j.future.2005.10.003 +K. G. Begeman,LOFAR Information System.,2011,27,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs27.html#BegemanBBDHMRVV11,https://doi.org/10.1016/j.future.2010.08.010 +Hadil Al-Daoud,Power-aware linear programming based scheduling for heterogeneous computer clusters.,2012,28,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs28.html#Al-DaoudAD12,https://doi.org/10.1016/j.future.2011.04.001 +Pierluigi Amodio,On the computation of few eigenvalues of positive definite Hamiltonian matrices.,2006,22,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs22.html#Amodio06,https://doi.org/10.1016/j.future.2004.11.027 +Jemal H. Abawajy,Identifying cyber threats to mobile-IoT applications in edge computing paradigm.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#AbawajyHSHA18,https://doi.org/10.1016/j.future.2018.06.053 +Xudong Song,A workflow framework for intelligent service composition.,2011,27,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs27.html#SongDC11,https://doi.org/10.1016/j.future.2010.06.008 +Ahmed Yassin Al-Dubai,On balancing network traffic in path-based multicast communication.,2006,22,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs22.html#Al-DubaiOM06,https://doi.org/10.1016/j.future.2006.02.009 +Manuel E. Acacio,MPI-Delphi: an MPI implementation for visual programming environments and heterogeneous computing.,2002,18,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs18.html#AcacioRGL02,https://doi.org/10.1016/S0167-739X(01)00054-1 +Sotiris Pavlopoulos,An image processing and management system for radiology with telemedicine services.,1999,15,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs15.html#PavlopoulosK99,https://doi.org/10.1016/S0167-739X(98)00074-0 +Mihai Popescu,Multiresolutional distributed filtering: A novel technique that reduces the amount of data required in high resolution electrocardiography.,1999,15,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs15.html#PopescuCB99,https://doi.org/10.1016/S0167-739X(98)00063-6 +Eun-Jun Yoon,A secure broadcasting cryptosystem and its application to grid computing.,2011,27,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs27.html#YoonY11,https://doi.org/10.1016/j.future.2010.09.012 +Mahdi Daghmehchi Firoozjaei,Security challenges with network functions virtualization.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#FiroozjaeiJKK17,https://doi.org/10.1016/j.future.2016.07.002 +Johannes Wettinger,Streamlining DevOps automation for Cloud applications using TOSCA as standardized metamodel.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#WettingerBKL16,https://doi.org/10.1016/j.future.2015.07.017 +Paola Grosso,Editorial INDIS special section FGCS.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#GrossoVTL18,https://doi.org/10.1016/j.future.2017.11.004 +Muhammad Sarfraz,An automatic algorithm for approximating boundary of bitmap characters.,2004,20,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs20.html#SarfrazK04,https://doi.org/10.1016/j.future.2004.05.024 +Bruno Silva,JobPruner: A machine learning assistant for exploring parameter spaces in HPC applications.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#SilvaNC18,https://doi.org/10.1016/j.future.2018.02.002 +Kaitai Liang,A secure and efficient Ciphertext-Policy Attribute-Based Proxy Re-Encryption for cloud data sharing.,2015,52,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs52.html#LiangALSWYYY15,https://doi.org/10.1016/j.future.2014.11.016 +Gun Ho Lee,Web framework with Java and XML in multi-tiers for productivity.,2007,23,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs23.html#LeeJ07,https://doi.org/10.1016/j.future.2006.05.010 +Lucas Mello Schnorr,Triva: Interactive 3D visualization for performance analysis of parallel applications.,2010,26,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs26.html#SchnorrHN10,https://doi.org/10.1016/j.future.2009.10.006 +Reind P. van de Riet,Guest editorial: Fifth generation computer systems: Success or failure?,1993,9,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs9.html#Riet93,https://doi.org/10.1016/0167-739X(93)90001-6 +Gaurav Bhatnagar,Biometrics inspired watermarking based on a fractional dual tree complex wavelet transform.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#BhatnagarW13,https://doi.org/10.1016/j.future.2012.05.021 +Mingchuan Zhang,Smart perception and autonomic optimization: A novel bio-inspired hybrid routing protocol for MANETs.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#ZhangYWZZ18,https://doi.org/10.1016/j.future.2017.07.030 +Gregory Katsaros,Estimation and forecasting of ecological efficiency of virtual machines.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#KatsarosSSG16,https://doi.org/10.1016/j.future.2015.01.002 +Matthias Uflacker,A semantic network approach to analyzing virtual team interactions in the early stages of conceptual design.,2011,27,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs27.html#UflackerZ11,https://doi.org/10.1016/j.future.2010.05.006 +Li Xu 0002,Matrix-based pairwise key establishment for wireless mesh networks.,2014,30,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs30.html#XuZ14a,https://doi.org/10.1016/j.future.2013.06.031 +Thilo Kielmann,Programming environments for high-performance Grid computing: the Albatross project.,2002,18,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs18.html#KielmannBMNEHV02,https://doi.org/10.1016/S0167-739X(02)00089-4 +Günther Hölzl,Distributed federative QoS resource management.,2000,16,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs16.html#HolzlB00,https://doi.org/10.1016/S0167-739X(99)00070-9 +Carlo Mastroianni,A super-peer model for resource discovery services in large-scale Grids.,2005,21,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs21.html#MastroianniTV05,https://doi.org/10.1016/j.future.2005.06.001 +Fernanda Nascimento Almeida,A provenance model based on declarative specifications for intensive data analyses in hemotherapy information systems.,2016,59,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs59.html#AlmeidaTCSMF16,https://doi.org/10.1016/j.future.2015.09.019 +Sadegh Dorri Nogoorani,TIRIAC: A trust-driven risk-aware access control framework for Grid environments.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#NogooraniJ16,https://doi.org/10.1016/j.future.2015.03.003 +Weihong Chen,A novel fuzzy deep-learning approach to traffic flow prediction with uncertain spatial-temporal data features.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#ChenALFXBL18,https://doi.org/10.1016/j.future.2018.06.021 +Michael Feig,Large scale distributed data repository: design of a molecular dynamics trajectory database.,1999,16,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs16.html#FeigAJP99,https://doi.org/10.1016/S0167-739X(99)00039-4 +Jik-Soo Kim,Trade-offs in matching jobs and balancing load for distributed desktop grids.,2008,24,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs24.html#KimNKMBS08,https://doi.org/10.1016/j.future.2007.07.007 +Shahid Mahmud,Cloud enabled data analytics and visualization framework for health-shocks prediction.,2016,65,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs65.html#MahmudID16,https://doi.org/10.1016/j.future.2015.10.014 +Junbao Zhang,Immunization-based redundancy elimination in Mobile Opportunistic Networks-Generated big data.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#ZhangHLFY18,https://doi.org/10.1016/j.future.2017.08.059 +Siegfried Höfinger,Latency reduction from runtime-interference to the parallel Quantum Chemistry program GREMLIN in heterogeneous and homogeneous environments.,2003,19,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs19.html#Hofinger03,https://doi.org/10.1016/S0167-739X(02)00184-X +Yang Liu 0010,HSim: A MapReduce simulator in enabling Cloud Computing.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#LiuLAH13,https://doi.org/10.1016/j.future.2011.05.007 +Vincenzo De Maio,Modelling energy consumption of network transfers and virtual machine migration.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#MaioPBK16,https://doi.org/10.1016/j.future.2015.07.007 +Shahadat Khan,Optimal Quality of Service routing and admission control using the Utility Model.,2003,19,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs19.html#KhanLMWS03,https://doi.org/10.1016/S0167-739X(03)00110-9 +Masahiko Kitamura,Beyond 4K: 8K 60p live video streaming to multiple sites.,2011,27,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs27.html#KitamuraSKMSFT11,https://doi.org/10.1016/j.future.2010.11.025 +Ramon Bertran,Energy accounting for shared virtualized environments under DVFS using PMC-based power models.,2012,28,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs28.html#BertranBCBGMNTA12,https://doi.org/10.1016/j.future.2011.03.007 +Florin Pop,HPS-HDS: High Performance Scheduling for Heterogeneous Distributed Systems.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#PopIP18,https://doi.org/10.1016/j.future.2017.09.012 +Gustavo Zurita,Using the cloud to develop applications supporting geo-collaborative Situated Learning.,2014,34,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs34.html#ZuritaBF14,https://doi.org/10.1016/j.future.2013.10.007 +Daniel Grzonka,Artificial Neural Network support to monitoring of the evolutionary driven security aware scheduling in computational distributed environments.,2015,51,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs51.html#GrzonkaKTK15,https://doi.org/10.1016/j.future.2014.10.031 +Paraskevas Evripidou,The PaCMAn Metacomputer: parallel computing with Java mobile agents.,2001,18,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs18.html#EvripidouSPP01,https://doi.org/10.1016/S0167-739X(00)00098-4 +Emilio Pasquale Mancini,Simulation-based optimization of multiple-task GRID applications.,2008,24,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs24.html#ManciniVRM08,https://doi.org/10.1016/j.future.2007.07.016 +Bernd Schwister,SUPRENUM - A European made supercomputer.,1990,5,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs5.html#SchwisterS90,https://doi.org/10.1016/0167-739X(90)90038-F +Jun Huang,An efficient closed-form solution for joint synchronization and localization using TOA.,2013,29,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs29.html#HuangXY13,https://doi.org/10.1016/j.future.2012.10.001 +J. Mark Pullen,Using Web services to integrate heterogeneous simulations in a grid environment.,2005,21,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs21.html#PullenBBDHMT05,https://doi.org/10.1016/j.future.2004.09.031 +Wei Wang 0012,Detecting Android malicious apps and categorizing benign apps with ensemble of classifiers.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#WangLWLZ18,https://doi.org/10.1016/j.future.2017.01.019 +Chemseddine Nabti,Querying massive graph data: A compress and search approach.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#NabtiS17,https://doi.org/10.1016/j.future.2017.04.005 +Pedro Morillo,Ensuring the performance and scalability of peer-to-peer distributed virtual environments.,2010,26,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs26.html#MorilloROD10,https://doi.org/10.1016/j.future.2010.03.003 +álvaro Brandón Hernández,Using machine learning to optimize parallelism in big data applications.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#HernandezPGM18,https://doi.org/10.1016/j.future.2017.07.003 +Jaap A. Kaandorp,Particle based modelling methods applied in biology.,2001,17,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs17.html#KaandorpG01,https://doi.org/10.1016/S0167-739X(00)00060-1 +Raffaele Gravina,Cloud-based Activity-aaService cyber-physical framework for human activity monitoring in mobility.,2017,75,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs75.html#GravinaMPARLF17,https://doi.org/10.1016/j.future.2016.09.006 +Lúcia Maria de A. Drummond,An asynchronous parallel metaheuristic for the period vehicle routing problem.,2001,17,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs17.html#DrummondOV01,https://doi.org/10.1016/S0167-739X(99)00118-1 +Yikun Hu,Slack allocation algorithm for energy minimization in cluster systems.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#HuLLCL17,https://doi.org/10.1016/j.future.2016.08.022 +Lin Ma,A memory access model for highly-threaded many-core architectures.,2014,30,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs30.html#MaAC14,https://doi.org/10.1016/j.future.2013.06.020 +Kadda Bey-Beghdad,Mixture of ANFIS systems for CPU load prediction in metacomputing environment.,2010,26,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs26.html#Bey-BeghdadBMG10,https://doi.org/10.1016/j.future.2010.04.014 +Ralph H. Castain,The Open Run-Time Environment (OpenRTE): A transparent multicluster environment for high-performance computing.,2008,24,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs24.html#CastainWDSBF08,https://doi.org/10.1016/j.future.2007.03.010 +Mario Cannataro 0001,IMPRECO: Distributed prediction of protein complexes.,2010,26,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs26.html#CannataroGV10,https://doi.org/10.1016/j.future.2009.08.001 +Yulei Wu,High-Performance Computing for Big Data Processing.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#WuXGM18,https://doi.org/10.1016/j.future.2018.07.054 +Ladjel Bellatreche,Models and data engineering.,2017,70,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs70.html#BellatrecheAP17a,https://doi.org/10.1016/j.future.2016.11.019 +Cos S. Ierotheou,Using an interactive parallelisation toolkit to parallelise an ocean modelling code.,2003,19,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs19.html#IerotheouJLC03,https://doi.org/10.1016/S0167-739X(02)00185-1 +Jinjun Liu,Using provenance to efficiently improve metadata searching performance in storage systems.,2015,50,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs50.html#LiuFHPN15,https://doi.org/10.1016/j.future.2014.10.030 +Manuel Salvadores,A semantic collaborative awareness model to deal with resource sharing in grids.,2010,26,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs26.html#SalvadoresHBP10,https://doi.org/10.1016/j.future.2008.11.008 +Ramon Nou,A path to achieving a self-managed Grid middleware.,2011,27,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs27.html#NouJHT11,https://doi.org/10.1016/j.future.2010.07.002 +Yong Yu,Remote data possession checking with enhanced security for cloud storage.,2015,52,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs52.html#YuZNACL15,https://doi.org/10.1016/j.future.2014.10.006 +Suzhen Wu,PP: Popularity-based Proactive Data Recovery for HDFS RAID systems.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#WuZML18,https://doi.org/10.1016/j.future.2017.03.032 +Jurriaan D. Mulder,A survey of computational steering environments.,1999,15,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs15.html#MulderWL99,https://doi.org/10.1016/S0167-739X(98)00047-8 +Rostand Costa,Analyzing the impact of elasticity on the profit of cloud computing providers.,2013,29,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs29.html#CostaBFS13,https://doi.org/10.1016/j.future.2012.12.021 +Oyindamola O. Akande,Towards an efficient storage and retrieval mechanism for large unstructured grids.,2015,45,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs45.html#AkandeR15,https://doi.org/10.1016/j.future.2014.10.024 +Ingeborg Sølvberg,Knowledge-based information retrieval.,1992,7,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs7.html#SolvbergNA92,https://doi.org/10.1016/0167-739X(92)90053-E +Mary Mehrnoosh Eshaghian,Resource estimation for heterogeneous computing.,1997,12,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs12.html#EshaghianW97,https://doi.org/10.1016/S0167-739X(97)83069-5 +Judicael A. Zounmevo,A fast and resource-conscious MPI message queue mechanism for large-scale jobs.,2014,30,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs30.html#ZounmevoA14,https://doi.org/10.1016/j.future.2013.07.003 +Darius Buntinas,Blocking vs. non-blocking coordinated checkpointing for large-scale fault tolerant MPI Protocols.,2008,24,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs24.html#BuntinasCHLPRRC08,https://doi.org/10.1016/j.future.2007.02.002 +P. Steinfeld,First attempt to parallelise a CFD application software package: The CALIFE code.,1995,11,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs11.html#SteinfeldLZ95,https://doi.org/10.1016/0167-739X(94)00049-K +Yongquan Fu,HybridNN: An accurate and scalable network location service based on the inframetric model.,2013,29,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs29.html#FuWB13a,https://doi.org/10.1016/j.future.2012.12.002 +Tian Wang 0001,Fog-based storage technology to fight with cyber threat.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#WangZHBLXX18,https://doi.org/10.1016/j.future.2017.12.036 +Jerry Sobieski,Dynamic provisioning of LightPath services for radio astronomy applications.,2006,22,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs22.html#SobieskiLJRSW06,https://doi.org/10.1016/j.future.2006.03.012 +R. Wilmot,The market perspective.,1986,2,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs2.html#Wilmot86,https://doi.org/10.1016/0167-739X(86)90035-X +Qianhong Wu,Batch Public Key Cryptosystem with batch multi-exponentiation.,2016,62,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs62.html#WuSQHLLD16,https://doi.org/10.1016/j.future.2015.12.009 +Davide Carneiro,Using behavioral features in tablet-based auditory emotion recognition studies.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#CarneiroPPFDN18,https://doi.org/10.1016/j.future.2018.07.013 +Hyun Taek Kim,Computerized recognition of Alzheimer disease-EEG using genetic algorithms and neural network.,2005,21,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs21.html#KimKPKHHC05,https://doi.org/10.1016/j.future.2004.03.012 +Eleftherios Kofidis,Wavelet-based medical image compression.,1999,15,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs15.html#KofidisKVTC99,https://doi.org/10.1016/S0167-739X(98)00066-1 +Diego Muñoz,A social cloud-based tool to deal with time and media mismatch of intergenerational family communication.,2015,53,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs53.html#MunozCGFOT15,https://doi.org/10.1016/j.future.2014.07.003 +Michiel Ronsse,Debugging shared memory parallel programs using record/replay.,2003,19,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs19.html#RonsseCB03,https://doi.org/10.1016/S0167-739X(02)00177-2 +Andreas Menychtas,4CaaSt marketplace: An advanced business environment for trading cloud services.,2014,41,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs41.html#MenychtasVGGGMJMKSV14,https://doi.org/10.1016/j.future.2014.02.020 +Milos R. Ivanovic,Elastic grid resource provisioning with WoBinGO: A parallel framework for genetic algorithm based optimization.,2015,42,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs42.html#IvanovicSSKM15,https://doi.org/10.1016/j.future.2014.09.004 +Wenting Shen,Remote data possession checking with privacy-preserving authenticators for cloud storage.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#ShenYYZKH17,https://doi.org/10.1016/j.future.2017.04.029 +Ricardo Lent,Evaluating the cooling and computing energy demand of a datacentre with optimal server provisioning.,2016,57,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs57.html#Lent16,https://doi.org/10.1016/j.future.2015.10.008 +Takashi Kurozumi,Targets and results from phase one and two of the fifth generation computer systems study.,1989,4,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs4.html#KurozumiI89,https://doi.org/10.1016/0167-739X(89)90008-3 +Giovanni Mariani,Predicting cloud performance for HPC applications before deployment.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#MarianiAJD18,https://doi.org/10.1016/j.future.2017.10.048 +Philip Rizk,Performance of a GridFTP overlay network.,2008,24,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs24.html#RizkKSU08,https://doi.org/10.1016/j.future.2007.07.010 +Olivier Bastien,The configuration space of homologous proteins: A theoretical and practical framework to reduce the diversity of the protein sequence space after massive all-by-all sequence comparisons.,2007,23,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs23.html#BastienORM07,https://doi.org/10.1016/j.future.2006.07.016 +Yizhi Ren,Rigorous or tolerant: The effect of different reputation attitudes in complex networks.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#RenWYSHW18,https://doi.org/10.1016/j.future.2017.09.006 +Mehdi Sookhak,Attribute-based data access control in mobile cloud computing: Taxonomy and open issues.,2017,72,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs72.html#SookhakYKXB17,https://doi.org/10.1016/j.future.2016.08.018 +Alvaro L. Islas,Conservation properties of multisymplectic integrators.,2006,22,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs22.html#IslasS06,https://doi.org/10.1016/j.future.2004.11.026 +Wassim Itani,ServBGP: BGP-inspired autonomic service routing for multi-provider collaborative architectures in the cloud.,2014,32,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs32.html#ItaniGBKC14,https://doi.org/10.1016/j.future.2012.05.013 +Xu An Wang,Cost-effective secure E-health cloud system using identity based cryptographic techniques.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#WangMXZL17,https://doi.org/10.1016/j.future.2016.08.008 +Michael Maurer,Cost-benefit analysis of an SLA mapping approach for defining standardized Cloud computing goods.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#MaurerEBA12,https://doi.org/10.1016/j.future.2011.05.023 +Hai Zhuge,Semantic profile-based document logistics for cooperative research.,2004,20,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs20.html#ZhugeL04,https://doi.org/10.1016/S0167-739X(03)00164-X +Gábor Terstyánszky,Enabling scientific workflow sharing through coarse-grained interoperability.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#TerstyanszkyKKKBF14,https://doi.org/10.1016/j.future.2014.02.016 +Gianni Pucciani,A performance study on the synchronisation of heterogeneous Grid databases using CONStanza.,2010,26,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs26.html#PuccianiDDS10,https://doi.org/10.1016/j.future.2010.03.001 +Ehsan Ataie,Power-aware performance analysis of self-adaptive resource management in IaaS clouds.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#AtaieEEEAM18,https://doi.org/10.1016/j.future.2018.02.042 +Roberto Alfieri,From gridmap-file to VOMS: managing authorization in a Grid environment.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#AlfieriCCDFLS05,https://doi.org/10.1016/j.future.2004.10.006 +Catalin Meirosu,Native 10 Gigabit Ethernet experiments over long distances.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#MeirosuGHSDRADBL05,https://doi.org/10.1016/j.future.2004.10.003 +Yong Zhao 0009,Enabling scalable scientific workflow management in the Cloud.,2015,46,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs46.html#ZhaoLRLTL15,https://doi.org/10.1016/j.future.2014.10.023 +John T. Pinkston,From visionary ideas to products.,1987,3,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs3.html#Pinkston87,https://doi.org/10.1016/0167-739X(87)90027-6 +Leigh J. Little,The computational science major at SUNY Brockport.,2003,19,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs19.html#Little03,https://doi.org/10.1016/S0167-739X(03)00086-4 +Roland Wismüller,Enhanced monitoring in the GRADE programming environment by using OMIS.,2000,16,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs16.html#WismullerDD00,https://doi.org/10.1016/S0167-739X(99)00073-4 +Anna Sher,A local sensitivity analysis method for developing biological models with identifiable parameters: Application to cardiac ionic channel modelling.,2013,29,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs29.html#SherWWMMANG13,https://doi.org/10.1016/j.future.2011.09.006 +Idafen Santana Pérez,Reproducibility of execution environments in computational science using Semantics and Clouds.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#PerezSRDPC17,https://doi.org/10.1016/j.future.2015.12.017 +Laura Carrington,A performance prediction framework for scientific applications.,2006,22,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs22.html#CarringtonSW06,https://doi.org/10.1016/j.future.2004.11.019 +Fernando Koch,Optimising resource costs of cloud computing for education.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#KochACN16,https://doi.org/10.1016/j.future.2015.03.013 +Danan Thilakanathan,A platform for secure monitoring and sharing of generic health data in the Cloud.,2014,35,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs35.html#ThilakanathanCNCA14,https://doi.org/10.1016/j.future.2013.09.011 +Hui Cui,Attribute-based cloud storage with secure provenance over encrypted data.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#CuiDL18,https://doi.org/10.1016/j.future.2017.10.010 +Ashok Agarwal,GridX1: A Canadian computational grid.,2007,23,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs23.html#AgarwalABCCDDDGG07,https://doi.org/10.1016/j.future.2006.12.006 +Jayadev Misra,Loosely-coupled processes.,1992,8,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs8.html#Misra92,https://doi.org/10.1016/0167-739X(92)90063-H +Silvana Castano,Combining crowd consensus and user trustworthiness for managing collective tasks.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#CastanoFGM16,https://doi.org/10.1016/j.future.2015.04.014 +Zheli Liu,Verifiable searchable encryption with aggregate keys for data sharing system.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#LiuLLJL18,https://doi.org/10.1016/j.future.2017.02.024 +Xiu Li,MapReduce-based fast fuzzy c-means algorithm for large-scale underwater image segmentation.,2016,65,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs65.html#LiSZOK16,https://doi.org/10.1016/j.future.2016.03.004 +Huixi Li,Leveraging content similarity among VMI files to allocate virtual machines in cloud.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#LiLFZWW18,https://doi.org/10.1016/j.future.2017.09.058 +Ihn-Han Bae,An ontology-based approach to ADL recognition in smart homes.,2014,33,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs33.html#Bae14,https://doi.org/10.1016/j.future.2013.04.004 +Katsuhiko Niwa,Use of artificial intelligence confirming compliance to building codes during process of making architectural drawings.,1989,5,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs5.html#Niwa89,https://doi.org/10.1016/0167-739X(89)90030-7 +Orhan Engin,A new approach to solve hybrid flow shop scheduling problems by artificial immune system.,2004,20,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs20.html#EnginD04,https://doi.org/10.1016/j.future.2004.03.014 +Vladimir V. Shakhov,Discord model for detecting unexpected demands in mobile networks.,2004,20,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs20.html#ShakhovCB04,https://doi.org/10.1016/S0167-739X(03)00132-8 +Zemin Chao,A gray-box performance model for Apache Spark.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#ChaoSGLW18,https://doi.org/10.1016/j.future.2018.06.032 +Shuo Liu,Grid query optimizer to improve query processing in grids.,2008,24,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs24.html#LiuK08,https://doi.org/10.1016/j.future.2007.06.003 +Shaofeng Liu,CSTP: A parallel data transfer protocol using cross-stream coding.,2011,27,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs27.html#LiuSD11,https://doi.org/10.1016/j.future.2010.11.028 +Jaime Seguel,The doctoral program in Computing and Information Sciences and Engineering of the University of Puerto Rico.,2003,19,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs19.html#SeguelR03,https://doi.org/10.1016/S0167-739X(03)00087-6 +Mehmet Koseoglu,Joint resource and network scheduling with adaptive offset determination for optical burst switched grids.,2010,26,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs26.html#KoseogluK10,https://doi.org/10.1016/j.future.2009.11.002 +Shuang-Hua Yang,Development of a distributed simulator for control experiments through the Internet.,2002,18,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs18.html#YangA02,https://doi.org/10.1016/S0167-739X(01)00067-X +Behnaz Sanati,LBBA: An efficient online benefit-aware multiprocessor scheduling for QoS via online choice of approximation algorithms.,2016,59,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs59.html#SanatiC16,https://doi.org/10.1016/j.future.2015.10.024 +Massimo Bernaschi,Efficient message passing on UNIX shared memory multiprocessors.,1998,13,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs13.html#Bernaschi98,https://doi.org/10.1016/S0167-739X(98)00003-X +Choon-Han Youn,Building Problem-Solving Environments with Application Web Service toolkits.,2005,21,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs21.html#YounPF05,https://doi.org/10.1016/j.future.2003.12.019 +Junwei Cao,Grid load balancing using intelligent agents.,2005,21,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs21.html#CaoSJN05,https://doi.org/10.1016/j.future.2004.09.032 +Bangyong Sun,Design of four-band multispectral imaging system with one single-sensor.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#SunYCH18,https://doi.org/10.1016/j.future.2018.04.056 +Floyd B. Hanson,Local supercomputing training in the computational sciences using remote national centers.,2003,19,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs19.html#Hanson03,https://doi.org/10.1016/S0167-739X(03)00091-8 +Shridhar G. Domanal,An efficient cost optimized scheduling for spot instances in heterogeneous cloud environment.,2018,84,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs84.html#DomanalR18,https://doi.org/10.1016/j.future.2018.02.003 +Alvaro L. Islas,Multi-symplectic methods for generalized Schrödinger equations.,2003,19,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs19.html#IslasS03,https://doi.org/10.1016/S0167-739X(02)00167-X +Zoltán ádám Mann,Rigorous results on the effectiveness of some heuristics for the consolidation of virtual machines in a cloud data center.,2015,51,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs51.html#Mann15,https://doi.org/10.1016/j.future.2015.04.004 +Ana Carolina Barbosa,Evaluating architectures for independently auditing service level agreements.,2006,22,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs22.html#BarbosaSCC06,https://doi.org/10.1016/j.future.2006.01.001 +Antonella Di Stefano,An economic model for resource management in a Grid-based content distribution network.,2008,24,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs24.html#StefanoS08,https://doi.org/10.1016/j.future.2007.07.014 +Erwin Laure,OpusJava: A Java framework for distributed high performance computing.,2001,18,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs18.html#Laure01,https://doi.org/10.1016/S0167-739X(00)00094-7 +Yun Ji Na,A multilayered digital content distribution using a group-key based on web.,2009,25,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs25.html#NaKX09,https://doi.org/10.1016/j.future.2006.07.017 +Brian Dougherty,Model-driven auto-scaling of green cloud computing infrastructure.,2012,28,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs28.html#DoughertyWS12,https://doi.org/10.1016/j.future.2011.05.009 +Khalid Mahmood 0002,Pairing based anonymous and secure key agreement protocol for smart grid edge computing infrastructure.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#MahmoodLCNKSR18,https://doi.org/10.1016/j.future.2018.06.004 +Ana Reyna,On blockchain and its integration with IoT. Challenges and opportunities.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#ReynaMCSD18,https://doi.org/10.1016/j.future.2018.05.046 +Jun Ho Huh,Managing application whitelists in trusted distributed systems.,2011,27,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs27.html#HuhLNM11,https://doi.org/10.1016/j.future.2010.08.014 +Enas Abdulhay,Gait and tremor investigation using machine learning techniques for the diagnosis of Parkinson disease.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#AbdulhayNNVV18,https://doi.org/10.1016/j.future.2018.02.009 +Anna Ciampolini,Extending PVM to a massively parallel architecture.,1996,12,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs12.html#CiampoliniS96,https://doi.org/10.1016/0167-739X(96)84676-0 +Xing Wang,Characterizing Android apps' behavior for effective detection of malapps at large scale.,2017,75,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs75.html#WangWHLHZ17,https://doi.org/10.1016/j.future.2017.04.041 +Marc Eduard Frîncu,Scheduling highly available applications on cloud environments.,2014,32,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs32.html#Frincu14,https://doi.org/10.1016/j.future.2012.05.017 +Luc Renambot,SAGE2: A collaboration portal for scalable resolution displays.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#RenambotMANMBLJ16,https://doi.org/10.1016/j.future.2015.05.014 +Min Liu,DPRank centrality: Finding important vertices based on random walks with a new defined transition matrix.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#LiuXMZWQ18,https://doi.org/10.1016/j.future.2017.10.036 +Seokcheol Lee,Game theory-based Security Vulnerability Quantification for Social Internet of Things.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#LeeKCS18,https://doi.org/10.1016/j.future.2017.09.032 +Steven J. Johnston,Commodity single board computer clusters and their applications.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#JohnstonBPHTPMY18,https://doi.org/10.1016/j.future.2018.06.048 +David Vengerov,A reinforcement learning framework for utility-based scheduling in resource-constrained systems.,2009,25,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs25.html#Vengerov09,https://doi.org/10.1016/j.future.2008.02.006 +Giacomo Giorgi,A theoretical investigation of the Chalk-Harrod and modified Chalk-Harrod mechanisms involved in hybrid integrated circuit building.,2004,20,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs20.html#GiorgiARS04,https://doi.org/10.1016/j.future.2003.11.018 +Yajun Li,A hybrid load balancing strategy of sequential tasks for grid computing environments.,2009,25,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs25.html#LiYMZ09,https://doi.org/10.1016/j.future.2009.02.001 +Chris H. Q. Ding,High Performance Fortran for practical scientific algorithms: An up-to-date evaluation.,1999,15,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs15.html#Ding99,https://doi.org/10.1016/S0167-739X(98)00079-X +Bo Liu,Model-based sensitivity analysis of IaaS cloud availability.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#LiuCHTR18,https://doi.org/10.1016/j.future.2017.12.062 +Peter K. K. Loh,A genetic-based fault-tolerant routing strategy for multiprocessor networks.,2001,17,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs17.html#LohS01,https://doi.org/10.1016/S0167-739X(99)00122-3 +Andrej Podzimek,"Reprint of ""Robust partial-load experiments with Showstopper"".",2017,72,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs72.html#PodzimekBCBT17,https://doi.org/10.1016/j.future.2016.11.013 +Sangjoon Park,A handover scheme in clustered cellular networks.,2004,20,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs20.html#ParkSLKK04,https://doi.org/10.1016/S0167-739X(03)00136-5 +Eryk Laskowski,Byte-code scheduling of Java programs with branches for desktop grid.,2007,23,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs23.html#LaskowskiTOT07,https://doi.org/10.1016/j.future.2007.04.005 +Jingcheng Gao,A survey of communication/networking in Smart Grids.,2012,28,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs28.html#GaoXLLC12,https://doi.org/10.1016/j.future.2011.04.014 +Baker Abdalhaq,Enhancing wildland fire prediction on cluster systems applying evolutionary optimization techniques.,2005,21,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs21.html#AbdalhaqCML05,https://doi.org/10.1016/j.future.2004.09.013 +Cheng-Huang Tung,Stroke-order-free on-line Chinese character recognition by stroke adjustment of two-layer bipartite weighted matching.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#TungJ18,https://doi.org/10.1016/j.future.2017.09.074 +Antonios T. Makaratzis,Energy modeling in cloud simulation frameworks.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#MakaratzisGT18,https://doi.org/10.1016/j.future.2017.06.016 +Andreas Wächter,Large-scale nonlinear optimization in circuit tuning.,2005,21,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs21.html#WachterVC05,https://doi.org/10.1016/j.future.2005.04.002 +Nicholas T. Karonis,High-resolution remote rendering of large datasets in a collaborative environment.,2003,19,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs19.html#KaronisPBBIJL03,https://doi.org/10.1016/S0167-739X(03)00070-0 +Oisín Curran,A workflow model for heterogeneous computing environments.,2009,25,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs25.html#CurranS09,https://doi.org/10.1016/j.future.2008.09.010 +Dariusz Król 0002,Self-scalable services in service oriented software for cost-effective data farming.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#0002K16,https://doi.org/10.1016/j.future.2015.07.003 +Ricky J. Sethi,Scientific workflows in data analysis: Bridging expertise across multiple domains.,2017,75,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs75.html#SethiG17,https://doi.org/10.1016/j.future.2017.01.001 +Zitao Chen,LiReK: A lightweight and real-time key establishment scheme for wearable embedded devices by gestures or motions.,2018,84,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs84.html#Chen00C18,https://doi.org/10.1016/j.future.2017.10.008 +Sebastián Reyes,Monitoring and steering Grid applications with GRID superscalar.,2010,26,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs26.html#ReyesMNSB10,https://doi.org/10.1016/j.future.2009.12.002 +Yuhui Deng,Modeling the aging process of flash storage by leveraging semantic I/O.,2014,32,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs32.html#DengLZHZ14,https://doi.org/10.1016/j.future.2013.09.002 +Sivarama P. Dandamudi,Performance of adaptive space-sharing policies in dedicated heterogeneous cluster systems.,2004,20,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs20.html#DandamudiZ04,https://doi.org/10.1016/j.future.2004.02.001 +Muhammet Fikret Ercan,Parallel image processing with one-dimensional DSP arrays.,2000,17,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs17.html#ErcanFD00,https://doi.org/10.1016/S0167-739X(99)00081-3 +Angelo Chianese,An associative engines based approach supporting collaborative analytics in the Internet of cultural things.,2017,66,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs66.html#ChianeseMPBJ17,https://doi.org/10.1016/j.future.2016.04.015 +Weizhe Zhang,Network-aware virtual machine migration in an overcommitted cloud.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#ZhangHHC17,https://doi.org/10.1016/j.future.2016.03.009 +Siegfried Benkner,HPF+: High Performance Fortran for advanced scientific and engineering applications.,1999,15,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs15.html#Benkner99,https://doi.org/10.1016/S0167-739X(98)00082-X +Xavier León,Using economic regulation to prevent resource congestion in large-scale shared infrastructures.,2010,26,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs26.html#LeonTN10,https://doi.org/10.1016/j.future.2009.11.004 +Ching-Hsien Hsu,Locality and loading aware virtual machine mapping techniques for optimizing communications in MapReduce applications.,2015,53,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs53.html#HsuSC15,https://doi.org/10.1016/j.future.2015.04.006 +Sarbjeet Singh,Compliance-based Multi-dimensional Trust Evaluation System for determining trustworthiness of Cloud Service Providers.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#SinghS17,https://doi.org/10.1016/j.future.2016.07.013 +Yang Zhang 0026,Locality based warp scheduling in GPGPUs.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#ZhangXLTW18,https://doi.org/10.1016/j.future.2017.02.036 +Amit Kumar Singh,Multiple watermarking technique for securing online social network contents using Back Propagation Neural Network.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#SinghKSGM18,https://doi.org/10.1016/j.future.2016.11.023 +S. George Djorgovski,Real-time data mining of massive data streams from synoptic sky surveys.,2016,59,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs59.html#DjorgovskiGDMDT16,https://doi.org/10.1016/j.future.2015.10.013 +Juan Gómez-Romero,Visualizing large knowledge graphs: A performance analysis.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#Gomez-RomeroMOG18,https://doi.org/10.1016/j.future.2018.06.015 +José Luis Díaz,Optimal allocation of virtual machines in multi-cloud environments with reserved and on-demand pricing.,2017,71,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs71.html#DiazEGGM17,https://doi.org/10.1016/j.future.2017.02.004 +Kangsun Lee,Building a model for real-time simulation.,2001,17,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs17.html#LeeF01,https://doi.org/10.1016/S0167-739X(00)00086-8 +Quan Zhang,Courier: Multi-dimensional QoS guarantees for the consolidated storage system.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#ZhangFW14,https://doi.org/10.1016/j.future.2013.06.013 +Rebecca O. C. Tse,TIN meets CAD--extending the TIN concept in GIS.,2004,20,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs20.html#TseG04,https://doi.org/10.1016/j.future.2003.11.007 +Ru Wang,Modeling of large-scale social network services based on mechanisms of information diffusion: Sina Weibo as a case study.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#WangRCC17,https://doi.org/10.1016/j.future.2016.03.018 +Huiqiu Lin,A conditional edge connectivity of double-orbit networks.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#LinY18,https://doi.org/10.1016/j.future.2017.09.008 +Xiaoban Wu,Network measurement for 100 GbE network links using multicore processors.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#WuLRL18,https://doi.org/10.1016/j.future.2017.04.038 +Stein Desmet,Design of a service oriented architecture for efficient resource allocation in media environments.,2012,28,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs28.html#DesmetVT12,https://doi.org/10.1016/j.future.2011.02.009 +M. Shamim Hossain,Collaborative analysis model for trending images on social networks.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#HossainAM18,https://doi.org/10.1016/j.future.2017.01.030 +Brian E. Moore,"Erratum to: ""Multi-symplectic integration methods for Hamiltonian PDEs"" [Future Gen. Comput. Sys. 19 (2003) 395-402]",2004,20,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs20.html#MooreR04,https://doi.org/10.1016/S0167-739X(03)00150-X +Franck Cappello,Understanding performance of SMP clusters running MPI programs.,2001,17,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs17.html#CappelloRE01,https://doi.org/10.1016/S0167-739X(00)00054-6 +Kai Xie,Real-time rendering of 3D medical data sets.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#XieYZ05,https://doi.org/10.1016/j.future.2004.12.002 +Rubén Mondéjar,CloudSNAP: A transparent infrastructure for decentralized web deployment using distributed interception.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#MondejarLPP13,https://doi.org/10.1016/j.future.2011.08.013 +Robert Bentley,HELIO: Discovery and analysis of data in heliophysics.,2013,29,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs29.html#BentleyBCFBMPPS13,https://doi.org/10.1016/j.future.2013.04.006 +Pedro Morillo,Comparison of WSN and IoT approaches for a real-time monitoring system of meal distribution trolleys: A case study.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#MorilloOFG18,https://doi.org/10.1016/j.future.2018.01.032 +Pierre Soille,A versatile data-intensive computing platform for information retrieval from big geospatial data.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#SoilleBMKRSV18,https://doi.org/10.1016/j.future.2017.11.007 +David del Rio Astorga,Paving the way towards high-level parallel pattern interfaces for data stream processing.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#AstorgaDFG18,https://doi.org/10.1016/j.future.2018.05.011 +Carlo Mastroianni,A scalable super-peer approach for public scientific computation.,2009,25,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs25.html#MastroianniCTKT09,https://doi.org/10.1016/j.future.2008.08.001 +Chien-Lung Hsu,Group-oriented signature scheme with distinguished signing authoritie.,2004,20,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs20.html#HsuWW04,https://doi.org/10.1016/j.future.2003.11.013 +Vivek Garg,Architectural support for inter-stream communication in an MSIMD system.,1995,11,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs11.html#GargS95,https://doi.org/10.1016/0167-739X(95)00028-Q +Aitor Urbieta,Adaptive and context-aware service composition for IoT-based smart cities.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#UrbietaBMHC17,https://doi.org/10.1016/j.future.2016.12.038 +Matthan W. A. Caan,Evolution of grid-based services for Diffusion Tensor Image analysis.,2012,28,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs28.html#CaanSVKO12,https://doi.org/10.1016/j.future.2012.03.007 +Roberto Morabito,LEGIoT: A Lightweight Edge Gateway for the Internet of Things.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#MorabitoPLM18,https://doi.org/10.1016/j.future.2017.10.011 +Rui Liu 0002,Privacy-based recommendation mechanism in mobile participatory sensing systems using crowdsourced users' preferences.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#LiuLGY18,https://doi.org/10.1016/j.future.2017.08.055 +Zhongzhi Shi,Attribute theory in learning systems.,1990,6,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs6.html#ShiH90,https://doi.org/10.1016/0167-739X(90)90010-B +Simon Woodman,Applications of provenance in performance prediction and data storage optimisation.,2017,75,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs75.html#WoodmanHW17,https://doi.org/10.1016/j.future.2017.01.003 +Ying Li 0001,An efficient MapReduce-based rule matching method for production system.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#LiLCYY16,https://doi.org/10.1016/j.future.2015.03.010 +Feng Zhou,TODS: cluster object storage platform designed for scalable services.,2004,20,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs20.html#ZhouJWZ04,https://doi.org/10.1016/S0167-739X(03)00173-0 +Domenico Conforti,Computer implementation of a medical diagnosis problem by pattern classification.,1999,15,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs15.html#ConfortiL99,https://doi.org/10.1016/S0167-739X(98)00073-9 +Shalini Venkataraman,Kites flying in and out of space--distributed physically based art on the grid.,2003,19,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs19.html#VenkataramanLC03,https://doi.org/10.1016/S0167-739X(03)00075-X +Larry Smarr,Special section: iGrid 2005: The Global Lambda Integrated Facility.,2006,22,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs22.html#SmarrDBL06,https://doi.org/10.1016/j.future.2006.04.002 +Dhabaleswar K. Panda,Fast barrier synchronization in wormhole k-ary n-cube networks with multidestination worms.,1995,11,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs11.html#Panda95,https://doi.org/10.1016/0167-739X(95)00026-O +Zhangbing Zhou,Energy-aware composition for wireless sensor networks as a service.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#ZhouZLH18,https://doi.org/10.1016/j.future.2017.02.050 +Mohammad Ebrahimi,An adaptive meta-heuristic search for the internet of things.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#EbrahimiSWFF17,https://doi.org/10.1016/j.future.2015.12.006 +Mario Cannataro 0001,Using ontologies for preprocessing and mining spectra data on the Grid.,2007,23,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs23.html#CannataroGMTV07,https://doi.org/10.1016/j.future.2006.04.011 +Enis Afgan,Application Information Services for distributed computing environments.,2011,27,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs27.html#AfganBS11,https://doi.org/10.1016/j.future.2010.08.004 +Ching-Hsien Hsu,Special section: Peer-to-peer grid technologies.,2010,26,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs26.html#HsuJC10,https://doi.org/10.1016/j.future.2010.02.005 +Keqin Li,Scheduling parallel tasks with energy and time constraints on multiple manycore processors in a cloud computing environment.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#Li18,https://doi.org/10.1016/j.future.2017.01.010 +Baldomero Imbernón,Enhancing large-scale docking simulation on heterogeneous systems: An MPI vs rCUDA study.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#ImbernonPGCS18,https://doi.org/10.1016/j.future.2017.08.050 +Wolfgang Gentzsch,High performance computing in the cloud.,2013,29,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs29.html#GentzschGJ13,https://doi.org/10.1016/j.future.2012.05.006 +Houcine Hassan,Special Issue on: Multicore and Many-core Architectures for Future Generation Embedded Systems.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#HassanYZS16,https://doi.org/10.1016/j.future.2015.11.017 +Sounaka Mishra,Optimizing register spills for eager functional languages.,2002,18,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs18.html#MishraSS02,https://doi.org/10.1016/S0167-739X(02)00035-3 +Angel Perles,An energy-efficient internet of things (IoT) architecture for preventive conservation of cultural heritage.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#PerlesPMQBZG18,https://doi.org/10.1016/j.future.2017.06.030 +Flora Amato,Multimedia story creation on social networks.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#AmatoCMMMPS18,https://doi.org/10.1016/j.future.2018.04.006 +Michael Fromme,Architecture of a shared-image electronic whiteboard in telemedicine.,2003,19,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs19.html#FrommeP03,https://doi.org/10.1016/S0167-739X(02)00150-4 +P. Vijaya Vardhan Reddy,New scoring formula to rank hypervisors' performance complementing with statistical analysis using DOE.,2016,61,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs61.html#ReddyS16,https://doi.org/10.1016/j.future.2016.02.012 +Shiang-Feng Tzeng,A nonrepudiable threshold multi-proxy multi-signature scheme with shared verification.,2004,20,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs20.html#TzengYH04,https://doi.org/10.1016/j.future.2004.01.002 +Xiaofeng Wang 0002,Optimizing the makespan and reliability for workflow applications with reputation and a look-ahead genetic algorithm.,2011,27,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs27.html#WangYBS11,https://doi.org/10.1016/j.future.2011.03.008 +Minh Tu Ton That,Preserving architectural pattern composition information through explicit merging operators.,2015,47,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs47.html#ThatSOB15,https://doi.org/10.1016/j.future.2014.09.002 +Roberto Di Pietro,CloRExPa: Cloud resilience via execution path analysis.,2014,32,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs32.html#PietroLS14,https://doi.org/10.1016/j.future.2012.05.010 +Roberto Di Pietro,AntiCheetah: Trustworthy computing in an outsourced (cheating) environment.,2015,48,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs48.html#PietroLMS15,https://doi.org/10.1016/j.future.2015.02.004 +Pandi Vijayakumar,Key management and key distribution for secure group communication in mobile and cloud network.,2018,84,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs84.html#Vijayakumar0DK18,https://doi.org/10.1016/j.future.2018.03.027 +Ernest H. Page,Investigating the application of web-based simulation principles within the architecture for a next-generation computer generated forces model.,2000,17,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs17.html#PageO00,https://doi.org/10.1016/S0167-739X(99)00111-9 +Eui-nam Huh,An efficient event publish technique for real-time monitor on real-time grid computing.,2004,20,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs20.html#HuhMP04,https://doi.org/10.1016/S0167-739X(03)00140-7 +Nigel Thomas,Approximation in non-product form finite capacity queue systems.,2006,22,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs22.html#Thomas06,https://doi.org/10.1016/j.future.2006.02.005 +Joaquín Chung,Advance reservation access control using software-defined networking and tokens.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#ChungJKRFCO18,https://doi.org/10.1016/j.future.2017.03.010 +Corina Sas,Virtual environment trajectory analysis: a basis for navigational assistance and scene adaptivity.,2005,21,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs21.html#SasPR05,https://doi.org/10.1016/j.future.2004.04.003 +Jinyong Jo,Interactive 3D HD video transport for e-science collaboration over UCLP-enabled GLORIAD lightpath.,2006,22,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs22.html#JoHLKKB06,https://doi.org/10.1016/j.future.2006.03.006 +Ivona Brandic,Special section: Recent advances in utility and cloud computing.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#BrandicB12,https://doi.org/10.1016/j.future.2011.06.001 +Rajkumar Rajavel,Adaptive Probabilistic Behavioural Learning System for the effective behavioural decision in cloud trading negotiation market.,2016,58,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs58.html#RajavelT16,https://doi.org/10.1016/j.future.2015.12.007 +Kang Zhang,DIALOG - A dataflow model for parallel execution of logic programs.,1991,6,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs6.html#ZhangT91,https://doi.org/10.1016/0167-739X(91)90006-J +Zhaohui Wu,A C-oriented tool for building second generation expert systems.,1990,6,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs6.html#WuYN0Y90,https://doi.org/10.1016/0167-739X(90)90012-3 +Nathan Brock,A collaborative computing model for audio post-production.,2011,27,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs27.html#BrockDMO11,https://doi.org/10.1016/j.future.2011.02.005 +Yan Wang 0018,Research on anomaly detection algorithm based on generalization latency of telecommunication network.,2018,85,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs85.html#0018WZZ18,https://doi.org/10.1016/j.future.2018.02.022 +Branko Marovic,Web-based grid-enabled interaction with 3D medical data.,2006,22,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs22.html#MarovicJ06,https://doi.org/10.1016/j.future.2005.10.002 +Chih-Hua Tai,Hybrid knowledge fusion and inference on cloud environment.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#TaiCC18,https://doi.org/10.1016/j.future.2018.01.045 +Gang Sun,The efficient framework and algorithm for provisioning evolving VDC in federated data centers.,2017,73,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs73.html#SunLBYSC17,https://doi.org/10.1016/j.future.2016.12.019 +Alessio Arleo,Profiling distributed graph processing systems through visual analytics.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#ArleoDLM18,https://doi.org/10.1016/j.future.2018.04.067 +Enwen Hu,Cooperative indoor positioning with factor graph based on FIM for wireless sensor network.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#HuDHYL18,https://doi.org/10.1016/j.future.2018.05.035 +Andreas Menychtas,Real-time reconfiguration for guaranteeing QoS provisioning levels in Grid environments.,2009,25,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs25.html#MenychtasKT09,https://doi.org/10.1016/j.future.2008.11.001 +Adam D. Barwell,Finding parallel functional pearls: Automatic parallel recursion scheme detection in Haskell functions via anti-unification.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#BarwellBH18,https://doi.org/10.1016/j.future.2017.07.024 +Chen Xu,A programmable policy engine to facilitate time-efficient science DMZ management.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#XuLL18,https://doi.org/10.1016/j.future.2018.07.016 +Phan Cong Vinh,Concurrency of self-* in autonomic systems.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#Vinh16,https://doi.org/10.1016/j.future.2015.04.017 +Lu Zhou 0002,Efficiently and securely harnessing cloud to solve linear regression and other matrix operations.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#ZhouZC18,https://doi.org/10.1016/j.future.2017.09.031 +Bruno Crispo,WWW security and trusted third party services.,2000,16,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs16.html#CrispoLM00,https://doi.org/10.1016/S0167-739X(99)00057-6 +Takakazu Kurokawa,3-D VLSI technology in Japan and an example: a syndrome decoder for double error correction.,1988,4,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs4.html#KurokawaA88,https://doi.org/10.1016/0167-739X(88)90013-1 +Danilo Piparo,SWAN: A service for interactive analysis in the cloud.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#PiparoTMMML18,https://doi.org/10.1016/j.future.2016.11.035 +Ting Yang,An energy-efficient virtual machine placement and route scheduling scheme in data center networks.,2017,77,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs77.html#YangPLZ17,https://doi.org/10.1016/j.future.2017.05.047 +Mieczyslaw A. Klopotek,Very large Bayesian multinets for text classification.,2005,21,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs21.html#Klopotek05,https://doi.org/10.1016/j.future.2004.03.007 +Siew Hoon Leong,"Reprint of ""A robust reliable energy-aware urgent computing resource allocation for flash-flood ensemble forecasting on HPC infrastructures for decision support"".",2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#LeongPK18,https://doi.org/10.1016/j.future.2016.11.015 +Hyung Gu Lee,A secure biometric discretization scheme for face template protection.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#LeeTJK12,https://doi.org/10.1016/j.future.2010.11.006 +Carl M. Ellison,Protecting secret keys with personal entropy.,2000,16,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs16.html#EllisonHMS00,https://doi.org/10.1016/S0167-739X(99)00055-2 +Yong Xue,Workload and task management of Grid-enabled quantitative aerosol retrieval from remotely sensed data.,2010,26,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs26.html#XueAWLWGMXLB10,https://doi.org/10.1016/j.future.2009.11.003 +Dimitrios Papamartzivanos,Dendron : Genetic trees driven rule induction for network intrusion detection systems.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#Papamartzivanos18,https://doi.org/10.1016/j.future.2017.09.056 +Leonardo Belpassi,Parallelization of a relativistic DFT code.,2004,20,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs20.html#BelpassiSTSQ04,https://doi.org/10.1016/j.future.2003.11.016 +Matthias Janetschek,A workflow runtime environment for manycore parallel architectures.,2017,75,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs75.html#JanetschekPB17,https://doi.org/10.1016/j.future.2017.02.029 +Yezheng Liu,A crowdsourcing-based topic model for service matchmaking in Internet of Things.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#LiuDSJHZS18,https://doi.org/10.1016/j.future.2018.05.005 +Hai Jin 0001,SemreX: Efficient search in a semantic overlay for literature retrieval.,2008,24,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs24.html#JinC08,https://doi.org/10.1016/j.future.2007.07.008 +Sriram Krishnan,SOAs for scientific applications: Experiences and challenges.,2009,25,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs25.html#KrishnanB09,https://doi.org/10.1016/j.future.2008.09.001 +Seyyed Amir Asghari,Enhancing transient fault tolerance in embedded systems through an OS task level redundancy approach.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#AsghariMR18,https://doi.org/10.1016/j.future.2018.04.049 +Man Ho Au,Privacy-preserving personal data operation on mobile cloud - Chances and challenges over advanced persistent threat.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#AuLLLN18,https://doi.org/10.1016/j.future.2017.06.021 +Davide Carneiro,Quantifying the effects of external factors on individual performance.,2017,66,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs66.html#CarneiroN17,https://doi.org/10.1016/j.future.2016.05.019 +Pedro Peris-Lopez,Effect of attacker characterization in ECG-based continuous authentication mechanisms for Internet of Things.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#Peris-LopezGCF18,https://doi.org/10.1016/j.future.2017.11.037 +Derya çavdar,A simulation framework for priority scheduling on heterogeneous clusters.,2015,52,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs52.html#CavdarBCA15,https://doi.org/10.1016/j.future.2015.04.008 +Dan Mønster,Causal inference from noisy time-series data - Testing the Convergent Cross-Mapping algorithm in the presence of noise and external influence.,2017,73,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs73.html#MonsterFTRS17,https://doi.org/10.1016/j.future.2016.12.009 +Keqiu Li,Special Section: P2P and internet computing.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#LiS10,https://doi.org/10.1016/j.future.2010.05.002 +Luan Teylo,A hybrid evolutionary algorithm for task scheduling and data assignment of data-intensive scientific workflows on clouds.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#TeyloJFOD17,https://doi.org/10.1016/j.future.2017.05.017 +Péter Kacsuk,Logicflow execution model for parallel databases.,2000,16,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs16.html#KacsukP00,https://doi.org/10.1016/S0167-739X(99)00079-5 +Victor A. Debelov,Light mesh: soft shadows as interpolation of visibility.,2004,20,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs20.html#DebelovS04,https://doi.org/10.1016/j.future.2004.05.027 +Lila Kari,DNA computing in vitro and in vivo.,2001,17,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs17.html#Kari01,https://doi.org/10.1016/S0167-739X(00)00061-3 +Jinwei Hu,RAR: A role-and-risk based flexible framework for secure collaboration.,2011,27,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs27.html#HuLLLM11,https://doi.org/10.1016/j.future.2010.09.008 +Gene Cooperman,Using TOP-C and AMPIC to port large parallel applications to the Computational Grid.,2003,19,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs19.html#CoopermanCHW03,https://doi.org/10.1016/S0167-739X(03)00037-2 +Tie Qiu,A task-efficient sink node based on embedded multi-core SoC for Internet of Things.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#QiuZMCLF18,https://doi.org/10.1016/j.future.2016.12.024 +Javier Povedano-Molina,DARGOS: A highly adaptable and scalable monitoring architecture for multi-tenant Clouds.,2013,29,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs29.html#Povedano-MolinaLLCF13,https://doi.org/10.1016/j.future.2013.04.022 +Ab Shaqoor Nengroo,Machine learning based heterogeneous web advertisements detection using a diverse feature set.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#NengrooK18,https://doi.org/10.1016/j.future.2018.06.028 +Thierry Priol,A client/server approach for HPC applications within a networking environment.,2001,17,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs17.html#PriolA01,https://doi.org/10.1016/S0167-739X(00)00106-0 +Arijit Mukherjee,Case for dynamic deployment in a grid-based distributed query processor.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#MukherjeeW12,https://doi.org/10.1016/j.future.2011.05.018 +Haiyong Xu,3D visual discomfort predictor based on subjective perceived-constraint sparse representation in 3D display system.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#XuJYLPSJ18,https://doi.org/10.1016/j.future.2018.01.021 +Xiaohong Huang,Improving Quality of Experience in multimedia Internet of Things leveraging machine learning on big data.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#HuangXLYM18,https://doi.org/10.1016/j.future.2018.02.046 +Ruslan Shevchenko,A time cost model for distributed objects parallel computation.,2002,18,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs18.html#ShevchenkoD02,https://doi.org/10.1016/S0167-739X(02)00053-5 +Ruay-Shiung Chang,Accessing data from many servers simultaneously and adaptively in data grids.,2010,26,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs26.html#ChangLH10,https://doi.org/10.1016/j.future.2009.07.005 +Garrett R. Yaun,Optimistic parallel simulation of a large-scale view storage system.,2003,19,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs19.html#YaunCAS03,https://doi.org/10.1016/S0167-739X(02)00157-7 +Antonio Fernández Anta,Competitive analysis of fundamental scheduling algorithms on a fault-prone machine and the impact of resource augmentation.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#AntaGKZ18,https://doi.org/10.1016/j.future.2016.05.042 +Ahmed Yassin Al-Dubai,Editorial to special issue: Recent advances in mobile and ubiquitous computing.,2012,28,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs28.html#Al-DubaiLW12,https://doi.org/10.1016/j.future.2012.02.007 +Bertil Schmidt,A hybrid architecture for bioinformatics.,2002,18,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs18.html#SchmidtSS02,https://doi.org/10.1016/S0167-739X(02)00058-4 +Ruay-Shiung Chang,Job scheduling and data replication on data grids.,2007,23,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs23.html#ChangCL07,https://doi.org/10.1016/j.future.2007.02.008 +Jianghua Liu,Secure sharing of Personal Health Records in cloud computing: Ciphertext-Policy Attribute-Based Signcryption.,2015,52,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs52.html#LiuHL15,https://doi.org/10.1016/j.future.2014.10.014 +Szymon Bobek,Uncertain context data management in dynamic mobile environments.,2017,66,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs66.html#BobekN17,https://doi.org/10.1016/j.future.2016.06.007 +Roxana Dánger,Access control and view generation for provenance graphs.,2015,49,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs49.html#DangerCMB15,https://doi.org/10.1016/j.future.2015.01.014 +Luay Alawneh,An exchange format for representing dynamic information generated from High Performance Computing applications.,2011,27,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs27.html#AlawnehH11,https://doi.org/10.1016/j.future.2010.08.015 +Derrick Kondo,Characterizing resource availability in enterprise desktop grids.,2007,23,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs23.html#KondoFCCC07,https://doi.org/10.1016/j.future.2006.11.001 +Ivan Hlavácek,Worst scenario and domain decomposition methods in geomechanics.,2006,22,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs22.html#HlavacekND06,https://doi.org/10.1016/j.future.2005.04.004 +Barkha Javed,Cloud Market Maker: An automated dynamic pricing marketplace for cloud users.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#JavedBRMR16,https://doi.org/10.1016/j.future.2015.06.004 +Michael Kluge,Performance and quality of service of data and video movement over a 100 Gbps testbed.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#KlugeSWHGMMSWN13,https://doi.org/10.1016/j.future.2012.05.028 +Nicoletta Dessì,Special issue on advanced technologies enabling adaptive and collaborative smart systems.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#DessiFRW17,https://doi.org/10.1016/j.future.2016.08.003 +Pengyao Wang,Rapid processing of remote sensing images based on cloud computing.,2013,29,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs29.html#WangWCN13,https://doi.org/10.1016/j.future.2013.05.002 +Javier Parra-Arnau,Measuring the privacy of user profiles in personalized information systems.,2014,33,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs33.html#Parra-ArnauRF14,https://doi.org/10.1016/j.future.2013.01.001 +Adel Nadjaran Toosi,Resource provisioning for data-intensive applications with deadline constraints on hybrid clouds using Aneka.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#ToosiSB18,https://doi.org/10.1016/j.future.2017.05.042 +Amit Nathani,Policy based resource allocation in IaaS cloud.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#NathaniCS12,https://doi.org/10.1016/j.future.2011.05.016 +Hamed Janzadeh,A secure credit-based cooperation stimulating mechanism for MANETs using hash chains.,2009,25,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs25.html#JanzadehFDF09,https://doi.org/10.1016/j.future.2008.12.002 +Ke-Kun Hu,Partitioning big graph with respect to arbitrary proportions in a streaming manner.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#HuZJW18,https://doi.org/10.1016/j.future.2017.06.027 +D. G. Reina,Evolutionary deployment and local search-based movements of 0th responders in disaster scenarios.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#ReinaCMM18,https://doi.org/10.1016/j.future.2018.05.024 +Bin Wang,Modelling and developing conflict-aware scheduling on large-scale data centres.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#WangCHGRFFHL18,https://doi.org/10.1016/j.future.2017.07.043 +Sergei Gorlatch,Message passing without send-receive.,2002,18,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs18.html#Gorlatch02,https://doi.org/10.1016/S0167-739X(02)00052-3 +Alessio Bechini,Behavior investigation of concurrent Java programs: an approach based on source-code instrumentation.,2001,18,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs18.html#BechiniP01,https://doi.org/10.1016/S0167-739X(00)00095-9 +Alejandro Pérez-Méndez,Providing efficient SSO to cloud service access in AAA-based identity federations.,2016,58,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs58.html#Perez-MendezLM16,https://doi.org/10.1016/j.future.2015.12.002 +Chris Piechotta,A secure dynamic collaboration environment in a cloud context.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#PiechottaOJCL16,https://doi.org/10.1016/j.future.2015.07.018 +Somchart Fugkeaw,Scalable and secure access control policy update for outsourced big data.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#FugkeawS18,https://doi.org/10.1016/j.future.2017.06.014 +Jiangtao Zhang,Clustering based virtual machines placement in distributed cloud computing.,2017,66,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs66.html#ZhangWHC17,https://doi.org/10.1016/j.future.2016.06.018 +Walter J. Gutjahr,A Graph-based Ant System and its convergence.,2000,16,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs16.html#Gutjahr00,https://doi.org/10.1016/S0167-739X(00)00044-3 +Dries Harnie,Scaling machine learning for target prediction in drug discovery using Apache Spark.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#HarnieSVWGSCWM17,https://doi.org/10.1016/j.future.2016.04.023 +Gregory Levitin,Optimal data partitioning in cloud computing system with random server assignment.,2017,70,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs70.html#LevitinXD17,https://doi.org/10.1016/j.future.2016.12.025 +Basant Subba,A game theory based multi layered intrusion detection framework for VANET.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#SubbaBK18,https://doi.org/10.1016/j.future.2017.12.008 +Yue Hou,Fuzzy neural network optimization and network traffic forecasting based on improved differential evolution.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#HouZL18,https://doi.org/10.1016/j.future.2017.08.041 +Joe Mambretti,The Photonic TeraStream: enabling next generation applications through intelligent optical networking at iGRID2002.,2003,19,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs19.html#MambrettiWCBYLGGM03,https://doi.org/10.1016/S0167-739X(03)00069-4 +Jean-Paul A. Barthès,OMAS - a flexible multi-agent environment for CSCWD.,2011,27,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs27.html#Barthes11,https://doi.org/10.1016/j.future.2010.05.005 +Zoltán Farkas,P-GRADE Portal: A generic workflow system to support user communities.,2011,27,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs27.html#FarkasK11,https://doi.org/10.1016/j.future.2010.12.001 +Christophe Pradal,InfraPhenoGrid: A scientific workflow infrastructure for plant phenomics on the Grid.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#PradalACDFMNNPV17,https://doi.org/10.1016/j.future.2016.06.002 +Sam Nickolay,Bridging the gap between peak and average loads on science networks.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#NickolayJKF18,https://doi.org/10.1016/j.future.2017.05.012 +Sihem Loukil,An approach based on runtime models for developing dynamically adaptive systems.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#LoukilKJ17,https://doi.org/10.1016/j.future.2016.07.006 +Chunxi Chen,An adaptive grid implementation of DNA sequence alignment.,2005,21,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs21.html#ChenS05,https://doi.org/10.1016/j.future.2005.03.001 +Jean-Jacques Quisquater,The adolescence of smart cards.,1997,13,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs13.html#Quisquater97,https://doi.org/10.1016/S0167-739X(97)89108-X +Anton Selikhov,A Channel Memory based fault tolerance for MPI applications.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#SelikhovG05,https://doi.org/10.1016/j.future.2004.05.011 +Ying-Ti Liao,Data adapter for querying and transformation between SQL and NoSQL database.,2016,65,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs65.html#LiaoZLCHCJC16,https://doi.org/10.1016/j.future.2016.02.002 +Sandro Fiore,On the road to exascale: Advances in High Performance Computing and Simulations - An overview and editorial.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#FioreBS18,https://doi.org/10.1016/j.future.2018.01.034 +Alexander V. Boukhanovsky,Urgent computing for decision support in critical situations.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#BoukhanovskyKB18,https://doi.org/10.1016/j.future.2017.11.003 +Abebe Abeshu Diro,Distributed attack detection scheme using deep learning approach for Internet of Things.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#DiroC18,https://doi.org/10.1016/j.future.2017.08.043 +Kawuu W. Lin,A fast and resource efficient mining algorithm for discovering frequent patterns in distributed computing environments.,2015,52,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs52.html#LinC15,https://doi.org/10.1016/j.future.2015.05.009 +Song Fu,Coordinated access control with temporal and spatial constraints on mobile execution in coalition environments.,2007,23,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs23.html#FuX07,https://doi.org/10.1016/j.future.2006.12.002 +Jun Takamura,An expert system for computer operation and user assistance.,1989,5,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs5.html#Takamura89,https://doi.org/10.1016/0167-739X(89)90024-1 +Jean-Michel Malé,Parallel calculations on the CM-2: BBS test programs and spectral methods.,1994,10,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs10.html#Male94,https://doi.org/10.1016/0167-739X(94)90002-7 +Eric He,Quanta: a toolkit for high performance data delivery over photonic networks.,2003,19,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs19.html#HeAEKLYD03,https://doi.org/10.1016/S0167-739X(03)00071-2 +Buket Yüksel,Research issues for privacy and security of electronic health services.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#YukselKO17,https://doi.org/10.1016/j.future.2016.08.011 +Sungwon Nam,Multiuser-centered resource scheduling for collaborative display wall environments.,2015,45,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs45.html#NamRRJL15,https://doi.org/10.1016/j.future.2014.08.012 +Javier Díaz,Derivation of self-scheduling algorithms for heterogeneous distributed computer systems: Application to internet-based grids of computers.,2009,25,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs25.html#DiazRNM09,https://doi.org/10.1016/j.future.2008.12.003 +Jen-Hong Tan,Age-related Macular Degeneration detection using deep convolutional neural network.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#TanBSHBRRRSGCA18,https://doi.org/10.1016/j.future.2018.05.001 +Mauno Rönkkö,Automated preprocessing of environmental data.,2015,45,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs45.html#RonkkoHKC15,https://doi.org/10.1016/j.future.2014.10.011 +Paul T. Groth,Representing distributed systems using the Open Provenance Model.,2011,27,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs27.html#GrothM11,https://doi.org/10.1016/j.future.2010.10.001 +Chong Chen,Integration of numerical model and cloud computing.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#ChenCYZZZ18,https://doi.org/10.1016/j.future.2017.06.007 +Jiageng Chen,Special Issue on Advanced Persistent Threat.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#ChenSYY18,https://doi.org/10.1016/j.future.2017.11.005 +Germán Moltó,Automatic memory-based vertical elasticity and oversubscription on cloud platforms.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#MoltoCA16,https://doi.org/10.1016/j.future.2015.10.002 +Thomas Ludwig 0002,Tool environments in CORBA-based medical high-performance computing.,2002,18,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs18.html#LudwigLSR02,https://doi.org/10.1016/S0167-739X(02)00056-0 +Anderson Marinho,Deriving scientific workflows from algebraic experiment lines: A practical approach.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#MarinhoOOSOMBM17,https://doi.org/10.1016/j.future.2016.08.016 +Hiroshi Uchida,Fujitsu machine translation system: ATLAS.,1986,2,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs2.html#Uchida86,https://doi.org/10.1016/0167-739X(86)90003-8 +Seungwoo Jeon,Monte Carlo simulation-based traffic speed forecasting using historical big data.,2016,65,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs65.html#JeonH16,https://doi.org/10.1016/j.future.2015.11.022 +Hamideh Afsarmanesh,High-performance computing and networking enables complex applications.,2001,17,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs17.html#AfsarmaneshB01,https://doi.org/10.1016/S0167-739X(01)00031-0 +M. Alef,Integration of multiple middlewares on a single computing resource.,2009,25,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs25.html#AlefFFGGGMSSV09,https://doi.org/10.1016/j.future.2008.05.004 +Dudy Lim,Efficient Hierarchical Parallel Genetic Algorithms using Grid computing.,2007,23,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs23.html#LimOJSL07,https://doi.org/10.1016/j.future.2006.10.008 +Toyohiko Yatagai,Optical computing in Japan.,1988,4,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs4.html#Yatagai88,https://doi.org/10.1016/0167-739X(88)90002-7 +Seokcheon Lee,Efficient scheduling algorithm for component-based networks.,2007,23,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs23.html#LeeKG07,https://doi.org/10.1016/j.future.2006.09.002 +Jonatan Enes,BDWatchdog: Real-time monitoring and profiling of Big Data applications and frameworks.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#EnesET18,https://doi.org/10.1016/j.future.2017.12.068 +Soha Maad,Towards a complete grid filesystem functionality.,2007,23,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs23.html#MaadCQRKO07,https://doi.org/10.1016/j.future.2006.06.006 +Tao Hu,Depth sensor based human detection for indoor surveillance.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#HuZZCY18,https://doi.org/10.1016/j.future.2018.05.083 +Alexander V. Smirnov,Knowledge logistics in information grid environment.,2004,20,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs20.html#SmirnovPCL04,https://doi.org/10.1016/S0167-739X(03)00165-1 +Jianfeng Wang,Towards achieving flexible and verifiable search for outsourced database in cloud computing.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#WangCLZS17,https://doi.org/10.1016/j.future.2016.05.002 +A. Dupuis,Lattice Boltzmann modelling of droplets on chemically heterogeneous surfaces.,2004,20,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs20.html#DupuisY04,https://doi.org/10.1016/j.future.2003.12.012 +Nitesh Maheshwari,Dynamic energy efficient data placement and cluster reconfiguration algorithm for MapReduce framework.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#MaheshwariNV12,https://doi.org/10.1016/j.future.2011.07.001 +Ernesto Chiarantoni,Applying fixed point homotopy to nonlinear DAEs deriving from switching circuits.,2003,19,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs19.html#ChiarantoniFVP03,https://doi.org/10.1016/S0167-739X(02)00170-X +Anton Beloglazov,Energy-aware resource allocation heuristics for efficient management of data centers for Cloud computing.,2012,28,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs28.html#BeloglazovAB12,https://doi.org/10.1016/j.future.2011.04.017 +Francesco Beltrame,GEMMA - A Grid environment for microarray management and analysis in bone marrow stem cells experiments.,2007,23,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs23.html#BeltramePPSSTV07,https://doi.org/10.1016/j.future.2006.07.008 +Xiao Lv,Supporting selective undo of string-wise operations for collaborative editing systems.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#LvHCC18,https://doi.org/10.1016/j.future.2017.11.046 +Alexandre Dupuis,An object oriented approach to lattice gas modeling.,2000,16,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs16.html#DupuisC00,https://doi.org/10.1016/S0167-739X(99)00130-2 +Scott Atchley,Video IBPster.,2003,19,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs19.html#AtchleySPB03,https://doi.org/10.1016/S0167-739X(03)00066-9 +Yan Ma,Remote sensing big data computing: Challenges and opportunities.,2015,51,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs51.html#MaWWHRZJ15,https://doi.org/10.1016/j.future.2014.10.029 +Peter Arbenz,SPEEDUP workshop on distributed computing and high-speed networks.,2003,19,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs19.html#ArbenzB03,https://doi.org/10.1016/S0167-739X(02)00103-6 +Yasuo Hidaka,Architecture of parallel management kernel for PIE64.,1994,10,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs10.html#HidakaKT94,https://doi.org/10.1016/0167-739X(94)90049-3 +Franco Frattolillo,Supporting data management on cluster grids.,2008,24,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs24.html#Frattolillo08,https://doi.org/10.1016/j.future.2007.04.002 +Hongxing Wei,RT-ROS: A real-time ROS architecture on multi-core processors.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#WeiSHCGTS16,https://doi.org/10.1016/j.future.2015.05.008 +E. H. Fredriksson,Introduction.,1984,1,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs1.html#Fredriksson84,https://doi.org/10.1016/0167-739X(84)90016-5 +Mário Antunes 0001,Scalable semantic aware context storage.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#AntunesGA16,https://doi.org/10.1016/j.future.2015.09.008 +Cong Zuo,CCA-secure ABE with outsourced decryption for fog computing.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#ZuoSWXJ18,https://doi.org/10.1016/j.future.2016.10.028 +Cristina Aiftimiei,Design and implementation of the gLite CREAM job management service.,2010,26,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs26.html#AiftimieiABFDFGMMSTZ10,https://doi.org/10.1016/j.future.2009.12.006 +Klavdiya Bochenina,Scalable parallel simulation of dynamical processes on large stochastic Kronecker graphs.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#BocheninaKB18,https://doi.org/10.1016/j.future.2017.07.021 +Rajat Mehrotra,Towards an autonomic performance management approach for a cloud broker environment using a decomposition-coordination based methodology.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#MehrotraSBA16,https://doi.org/10.1016/j.future.2015.03.020 +William E. Johnston,Computational and data Grids in large-scale science and engineering.,2002,18,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs18.html#Johnston02,https://doi.org/10.1016/S0167-739X(02)00087-0 +Dariush Abbasinezhad-Mood,Design and hardware implementation of a security-enhanced elliptic curve cryptography based lightweight authentication scheme for smart grid communications.,2018,84,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs84.html#Abbasinezhad-Mood18,https://doi.org/10.1016/j.future.2018.02.034 +Jean Patrick Tsang,An AI approach to automate the preliminary design phase of electronic equipment for satellites.,1992,7,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs7.html#TsangC92,https://doi.org/10.1016/0167-739X(92)90051-C +Jorji Nonaka,234Compositor: A flexible parallel image compositing framework for massively parallel visualization environments.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#NonakaOF18,https://doi.org/10.1016/j.future.2017.02.011 +Jan Hidders,Recent advances in Scalable Workflow Enactment Engines and Technologies.,2015,46,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs46.html#HiddersMS15,https://doi.org/10.1016/j.future.2015.01.003 +Kamala Kotapati,Buffer management in wormhole-routed torus multicomputer networks.,2000,16,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs16.html#KotapatiD00,https://doi.org/10.1016/S0167-739X(99)00128-4 +Ramesh Natarajan,A grid-based approach for enterprise-scale data mining.,2007,23,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs23.html#NatarajanSP07,https://doi.org/10.1016/j.future.2006.04.003 +Zhiwei Wang,Leakage resilient ID-based proxy re-encryption scheme for access control in fog computing.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#Wang18a,https://doi.org/10.1016/j.future.2017.12.001 +Eduard Grasa,Video transcoding in a Grid network with User Controlled LightPaths.,2006,22,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs22.html#GrasaFRLPRDSJS06,https://doi.org/10.1016/j.future.2006.03.003 +Rui Han 0001,Enabling cost-aware and adaptive elasticity of multi-tier cloud applications.,2014,32,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs32.html#HanGGGO14,https://doi.org/10.1016/j.future.2012.05.018 +Javad Salimi Sartakhti,A new light-based solution to the Hamiltonian path problem.,2013,29,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs29.html#SartakhtiJR13,https://doi.org/10.1016/j.future.2012.07.008 +Stelios Sotiriadis,An inter-cloud bridge system for heterogeneous cloud platforms.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#SotiriadisB16,https://doi.org/10.1016/j.future.2015.02.005 +Ricardo Silva Campos,Approaching cardiac modeling challenges to computer science with CellML-based web tools.,2010,26,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs26.html#CamposACOBSS10,https://doi.org/10.1016/j.future.2009.09.002 +Tao Song,FastDesk: A remote desktop virtualization system for multi-tenant.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#SongWWMLGQ18,https://doi.org/10.1016/j.future.2017.07.001 +Theodora A. Varvarigou,Infrastructure and Network-aware Grids and Service Oriented Architectures.,2012,28,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs28.html#VarvarigouDTK12,https://doi.org/10.1016/j.future.2011.10.002 +Mario A. R. Dantas,Efficient scheduling of MPI applications on networks of workstations.,1998,13,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs13.html#DantasZ98,https://doi.org/10.1016/S0167-739X(97)00012-5 +Petr Holub,High-definition multimedia for multiparty low-latency interactive communication.,2006,22,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs22.html#HolubMLHDRHPRH06,https://doi.org/10.1016/j.future.2006.03.014 +Nicola Cannata,A Resourceomic Grid for bioinformatics.,2007,23,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs23.html#CannataCM07,https://doi.org/10.1016/j.future.2006.07.005 +Manfred Ruschitzka,Preface.,1990,5,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs5.html#Ruschitzka90,https://doi.org/10.1016/0167-739X(90)90033-A +Ching-Hsien Hsu,Performance effective pre-scheduling strategy for heterogeneous grid systems in the master slave paradigm.,2007,23,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs23.html#HsuCL07,https://doi.org/10.1016/j.future.2006.09.007 +Seoungjae Cho,Simulation framework of ubiquitous network environments for designing diverse network robots.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#ChoFPC17,https://doi.org/10.1016/j.future.2016.03.016 +Daqiang Zhang,Context reasoning using extended evidence theory in pervasive computing environments.,2010,26,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs26.html#ZhangGZKC10,https://doi.org/10.1016/j.future.2009.08.005 +Shangguang Wang,Offloading mobile data traffic for QoS-aware service provision in vehicular cyber-physical systems.,2016,61,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs61.html#WangLZHY16,https://doi.org/10.1016/j.future.2015.10.004 +Huey-Ling Chen,Eager scheduling with lazy retry in multiprocessors.,2000,17,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs17.html#ChenK00,https://doi.org/10.1016/S0167-739X(99)00082-5 +Dan Chen 0001,Hybrid modelling and simulation of huge crowd over a hierarchical Grid architecture.,2013,29,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs29.html#ChenWWCKKTHL13,https://doi.org/10.1016/j.future.2012.03.006 +Tristan Glatard,Large-scale functional MRI study on a production grid.,2010,26,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs26.html#GlatardSVNO10,https://doi.org/10.1016/j.future.2009.07.014 +Andy Marsh,The establishment of a pilot telemedical information society.,1999,15,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs15.html#Marsh99,https://doi.org/10.1016/S0167-739X(98)00059-4 +Marjan I. Alberda,Using formal methods to cultivate trust in smart card operating systems.,1997,13,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs13.html#AlberdaHF97,https://doi.org/10.1016/S0167-739X(97)89110-8 +P. F. Spinnato,Performance of N-body codes on hybrid machines.,2001,17,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs17.html#SpinnatoAS01,https://doi.org/10.1016/S0167-739X(01)00037-1 +Thomas Jakobs,Tuning linear algebra for energy efficiency on multicore machines by adapting the ATLAS library.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#JakobsLRS18,https://doi.org/10.1016/j.future.2017.03.009 +Alessandro Bassi,Active and logistical networking for grid computing: the e-Toile architecture.,2005,21,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs21.html#BassiBGLMPP05,https://doi.org/10.1016/j.future.2004.09.029 +Chonglin Gu,Greening cloud data centers in an economical way by energy trading with power grid.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#GuFWHJ18,https://doi.org/10.1016/j.future.2016.12.029 +Tim Verbelen,Graph partitioning algorithms for optimizing software deployment in mobile cloud computing.,2013,29,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs29.html#VerbelenSTD13,https://doi.org/10.1016/j.future.2012.07.003 +Laércio Lima Pilla,A topology-aware load balancing algorithm for clustered hierarchical multi-core machines.,2014,30,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs30.html#PillaRCBGNM14,https://doi.org/10.1016/j.future.2013.06.023 +Zhuowei Wang,Three-level performance optimization for heterogeneous systems based on software prefetching under power constraints.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#WangZWC18,https://doi.org/10.1016/j.future.2018.03.009 +Sudip S. Dosanjh,Exascale design space exploration and co-design.,2014,30,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs30.html#DosanjhBDHHHLPRTL14,https://doi.org/10.1016/j.future.2013.04.018 +Gian Paolo Lorenzetto,An almost linear-time algorithm for trapezoidation of GIS polygons.,2004,20,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs20.html#LorenzettoD04,https://doi.org/10.1016/j.future.2003.11.004 +Jemal H. Abawajy,Adaptive parallel I/O scheduling algorithm for multiprogrammed systems.,2006,22,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs22.html#Abawajy06a,https://doi.org/10.1016/j.future.2005.09.008 +Daniela Remenska,Using model checking to analyze the system behavior of the LHC production grid.,2013,29,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs29.html#RemenskaWVTB13,https://doi.org/10.1016/j.future.2013.06.004 +Jack Janssen,A parallel version of the phase space evolution model.,1995,11,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs11.html#JanssenL95,https://doi.org/10.1016/0167-739X(94)00052-G +Walayat Hussain,Comparing time series with machine learning-based prediction approaches for violation management in cloud SLAs.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#HussainHSHC18,https://doi.org/10.1016/j.future.2018.06.041 +Hanlin Sun,A parallel self-organizing overlapping community detection algorithm based on swarm intelligence for large scale complex networks.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#SunJLWMHWX18,https://doi.org/10.1016/j.future.2018.05.071 +Tarek A. El-Ghazawi,Benchmarking parallel compilers: A UPC case study.,2006,22,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs22.html#El-GhazawiCYAM06,https://doi.org/10.1016/j.future.2006.02.002 +Yifei Zhang,Data driven business rule generation based on fog computing.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#ZhangCXVH18,https://doi.org/10.1016/j.future.2018.07.003 +Arezou Soltani Panah,Towards an asynchronous aggregation-capable watermark for end-to-end protection of big data streams.,2017,72,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs72.html#PanahSS17,https://doi.org/10.1016/j.future.2016.09.001 +Davide Feltoni Gurini,Temporal people-to-people recommendation on social networks with sentiment-based matrix factorization.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#GuriniGMS18,https://doi.org/10.1016/j.future.2017.03.020 +Adolfy Hoisie,Special section: Large-scale system performance modeling and analysis.,2006,22,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs22.html#HoisieKMRS06,https://doi.org/10.1016/j.future.2004.11.014 +Ralf Giering,Generating efficient derivative code with TAF: Adjoint and tangent linear Euler flow around an airfoil.,2005,21,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs21.html#GieringKS05,https://doi.org/10.1016/j.future.2004.11.003 +Victor Chang 0001,The Business Intelligence as a Service in the Cloud.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#Chang14,https://doi.org/10.1016/j.future.2013.12.028 +Konstantinos Fysarakis,XSACd - Cross-domain resource sharing and access control for smart environments.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#FysarakisSMPA18,https://doi.org/10.1016/j.future.2016.05.023 +Thomas Brandes,Monitoring cache behavior on parallel SMP architectures and related programming tools.,2005,21,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs21.html#BrandesSGJKSBNNMTKTH05,https://doi.org/10.1016/j.future.2004.09.005 +Hugo A. D. do Nascimento,User hints: a framework for interactive optimization.,2005,21,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs21.html#NascimentoE05,https://doi.org/10.1016/j.future.2004.04.005 +Ping Luo,Distributed data mining in grid computing environments.,2007,23,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs23.html#LuoLSH07,https://doi.org/10.1016/j.future.2006.04.010 +Pallikonda Rajasekaran Murugan,Sensor grid applications in patient monitoring.,2010,26,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs26.html#RajasekaranRS10,https://doi.org/10.1016/j.future.2009.11.001 +Amarnath Gupta,An extensible information model for shared scientific data collections.,1999,16,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs16.html#GuptaB99,https://doi.org/10.1016/S0167-739X(99)00031-X +Andrés Iglesias 0001,Functional networks for B-spline surface reconstruction.,2004,20,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs20.html#IglesiasEG04,https://doi.org/10.1016/j.future.2004.05.025 +M. Nagao,Cooperative R and D of information technologies between the government and private sector in Japan.,1986,2,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs2.html#Nagao86,https://doi.org/10.1016/0167-739X(86)90037-3 +Unai Aguilera,An architecture for automatic service composition in MANET using a distributed service graph.,2014,34,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs34.html#AguileraL14,https://doi.org/10.1016/j.future.2013.07.021 +Haifeng Shen,Improving real-time collaboration with highlighting.,2004,20,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs20.html#ShenS04,https://doi.org/10.1016/S0167-739X(03)00176-6 +Chimezie Leonard Oguego,Using argumentation to manage users' preferences.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#OguegoAMS18,https://doi.org/10.1016/j.future.2017.09.040 +Minhyung Kim,High performance AAA architecture for massive IPv4 networks.,2007,23,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs23.html#KimKK07,https://doi.org/10.1016/j.future.2006.05.003 +Luca Bergamaschi,Inexact Quasi-Newton methods for sparse systems of nonlinear equations.,2001,18,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs18.html#BergamaschiMZ01,https://doi.org/10.1016/S0167-739X(00)00074-1 +Mohamed Elhoseny,A hybrid model of Internet of Things and cloud computing to manage big data in health services applications.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#ElhosenyASRMS18,https://doi.org/10.1016/j.future.2018.03.005 +Shay Gueron,Deterministic approximations for stochastic processes in population biology.,2001,17,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs17.html#Gueron01,https://doi.org/10.1016/S0167-739X(00)00067-4 +Luis Rodero-Merino,Using clouds to scale grid resources: An economic model.,2012,28,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs28.html#Rodero-MerinoCMD12,https://doi.org/10.1016/j.future.2011.10.001 +Frédéric Cabestre,Abstract machine construction through operational semantics refinements.,2000,16,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs16.html#CabestrePB00,https://doi.org/10.1016/S0167-739X(99)00089-8 +Corrie Kost,ATLAS Canada lightpath data transfer trial.,2003,19,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs19.html#KostMCH03,https://doi.org/10.1016/S0167-739X(03)00082-7 +Aniello Castiglione,CHIS: A big data infrastructure to manage digital cultural items.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#CastiglioneCMP18,https://doi.org/10.1016/j.future.2017.04.006 +Ali Reza Zamani,A computational model to support in-network data analysis in federated ecosystems.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#ZamaniZMPRP18,https://doi.org/10.1016/j.future.2017.05.032 +Deger Cenk Erdil,Autonomic cloud resource sharing for intercloud federations.,2013,29,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs29.html#Erdil13,https://doi.org/10.1016/j.future.2012.03.025 +Wai-Khuen Cheng,Resource federation in grid using automated intelligent agent negotiation.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#ChengOC10,https://doi.org/10.1016/j.future.2010.05.012 +Francisco Jiménez-Morales,Intermittent collective behavior in totalistic cellular automata with high connectivity.,2002,18,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs18.html#Jimenez-Morales02,https://doi.org/10.1016/S0167-739X(02)00071-7 +Hans-Joachim Bungartz,Computational science and engineering: a new master's program at the Technische Universität München.,2003,19,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs19.html#Bungartz03,https://doi.org/10.1016/S0167-739X(03)00084-0 +Ye Huang,Exploring decentralized dynamic scheduling for grids and clouds using the community-aware scheduling algorithm.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#HuangBNKH13,https://doi.org/10.1016/j.future.2011.05.006 +Raimondas Ciegis,On a new class of splitting type iterative methods.,2004,20,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs20.html#Ciegis04,https://doi.org/10.1016/j.future.2003.07.005 +Maciej Malawski,Cost minimization for computational applications on hybrid cloud infrastructures.,2013,29,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs29.html#MalawskiFN13,https://doi.org/10.1016/j.future.2013.01.004 +David Lee,Global Telescience featuring IPv6 at iGrid2002.,2003,19,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs19.html#LeeLHASLPE03,https://doi.org/10.1016/S0167-739X(03)00080-3 +Li Ma,Research on access control model of social network based on distributed logic.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#MaYHZ18,https://doi.org/10.1016/j.future.2017.11.041 +Rego Granlund,Web-based micro-world simulation for emergency management training.,2001,17,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs17.html#Granlund01,https://doi.org/10.1016/S0167-739X(00)00039-X +Cyrus Soleimany,Performance of a distributed architecture for query processing on workstation clusters.,2003,19,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs19.html#SoleimanyD03,https://doi.org/10.1016/S0167-739X(02)00158-9 +Noelia Uribe-Pérez,A novel communication system approach for a Smart City based on the human nervous system.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#Uribe-PerezP17,https://doi.org/10.1016/j.future.2016.12.035 +Hai Jin 0001,MECOM: Live migration of virtual machines by adaptively compressing memory pages.,2014,38,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs38.html#JinDWSCP14,https://doi.org/10.1016/j.future.2013.09.031 +Sílvia D. Olabarriaga,Special section: Medical imaging on grids.,2010,26,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs26.html#OlabarriagaM10,https://doi.org/10.1016/j.future.2009.08.015 +T. Kamae,Visual terminals and user interfaces.,1985,1,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs1.html#Kamae85,https://doi.org/10.1016/0167-739X(85)90002-0 +Christine Bassem,Multi-Capacity Bin Packing with Dependent Items and its Application to the Packing of Brokered Workloads in Virtualized Environments.,2017,72,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs72.html#BassemB17,https://doi.org/10.1016/j.future.2016.08.017 +Mattias Ellert,Advanced Resource Connector middleware for lightweight computational Grids.,2007,23,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs23.html#EllertGKKLLNNSW07,https://doi.org/10.1016/j.future.2006.05.008 +Mohammad Kalantari,A parallel solution for scheduling of real time applications on grid environments.,2009,25,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs25.html#KalantariA09,https://doi.org/10.1016/j.future.2008.01.003 +Gavin J. Pringle,Embedding a 'Treecode' on a MIMD parallel computer using a domain decomposition paradigm.,1995,11,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs11.html#Pringle95,https://doi.org/10.1016/0167-739X(95)00060-6 +A. Varga,A numerically reliable approach to robust pole assignment for descriptor system.,2003,19,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs19.html#Varga03,https://doi.org/10.1016/S0167-739X(03)00047-5 +Xiaojun Zhang,Efficient fully homomorphic encryption from RLWE with an extension to a threshold encryption scheme.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#ZhangXJXZ14,https://doi.org/10.1016/j.future.2013.10.024 +Florin Pop,ARMCO: Advanced topics in resource management for ubiquitous cloud computing: An adaptive approach.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#PopP16,https://doi.org/10.1016/j.future.2015.07.016 +Bindiya Jain,A cross layer protocol for traffic management in Social Internet of Vehicles.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#JainBMRA18,https://doi.org/10.1016/j.future.2017.11.019 +Victor Chang 0001,Cloud computing adoption framework: A security framework for business clouds.,2016,57,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs57.html#ChangKR16,https://doi.org/10.1016/j.future.2015.09.031 +Steven J. Lynden,The design and implementation of OGSA-DQP: A service-based distributed query processor.,2009,25,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs25.html#LyndenMHFPSW09,https://doi.org/10.1016/j.future.2008.08.003 +Guangjie Han,A source location protection protocol based on dynamic routing in WSNs for the Social Internet of Things.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#HanZWZC18,https://doi.org/10.1016/j.future.2017.08.044 +T. H. Li,Land-use adjustment with a modified soil loss evaluation method supported by GIS.,2004,20,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs20.html#LiNJ04,https://doi.org/10.1016/j.future.2003.11.008 +Roberto Boselli,Classifying online Job Advertisements through Machine Learning.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#BoselliCMM18,https://doi.org/10.1016/j.future.2018.03.035 +Shi-Wen Deng,Towards heart sound classification without segmentation via autocorrelation feature and diffusion maps.,2016,60,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs60.html#DengH16,https://doi.org/10.1016/j.future.2016.01.010 +Mian Ahmad Jan,A Sybil attack detection scheme for a forest wildfire monitoring application.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#JanNHL18,https://doi.org/10.1016/j.future.2016.05.034 +Zhou Zhou,Minimizing SLA violation and power consumption in Cloud data centers using adaptive energy-aware algorithms.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#ZhouACHLCEL18,https://doi.org/10.1016/j.future.2017.07.048 +Yongfeng Cui,Research on data fusion algorithm and anti-collision algorithm based on internet of things.,2018,85,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs85.html#CuiMZLLS18,https://doi.org/10.1016/j.future.2018.03.016 +PeiYun Zhang,Security and trust issues in Fog computing: A survey.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#ZhangZF18,https://doi.org/10.1016/j.future.2018.05.008 +Dimas Satria,Recovery for overloaded mobile edge computing.,2017,70,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs70.html#SatriaPJ17,https://doi.org/10.1016/j.future.2016.06.024 +Neyire Deniz Sarier,Multimodal biometric Identity Based Encryption.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#Sarier18,https://doi.org/10.1016/j.future.2017.09.078 +Taesoon Park,An efficient recovery scheme for fault-tolerant mobile computing systems.,2003,19,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs19.html#ParkWY03,https://doi.org/10.1016/S0167-739X(02)00095-X +Takfarinas Saber,VM reassignment in hybrid clouds for large decentralised companies: A multi-objective challenge.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#SaberTMV18,https://doi.org/10.1016/j.future.2017.06.015 +Madhulina Sarkar,Resource requirement prediction using clone detection technique.,2013,29,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs29.html#SarkarMRM13,https://doi.org/10.1016/j.future.2012.09.010 +Jun Yan 0005,Autonomous service level agreement negotiation for service composition provision.,2007,23,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs23.html#YanKLCGZ07,https://doi.org/10.1016/j.future.2007.02.004 +Pilar de la Torre,Towards a single model of efficient computation in real parallel machines.,1992,8,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs8.html#TorreK92,https://doi.org/10.1016/0167-739X(92)90071-I +Javid Taheri,Pareto frontier for job execution and data transfer time in hybrid clouds.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#TaheriZST14,https://doi.org/10.1016/j.future.2013.12.020 +H. Kevser Sunercan,A systematic approach to the integration of overlapping partitions in service-oriented data grids.,2011,27,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs27.html#SunercanAC11,https://doi.org/10.1016/j.future.2010.12.011 +Junwei Zhang,A model to predict the optimal performance of the Hierarchical Data Grid.,2010,26,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs26.html#ZhangLTY10,https://doi.org/10.1016/j.future.2009.05.010 +Virginie Gabrel,QoS-aware automatic syntactic service composition problem: Complexity and resolution.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#GabrelMMM18,https://doi.org/10.1016/j.future.2017.04.009 +Paulo Cesar Facin,A non-linear lattice-Boltzmann model for ideal miscible fluids.,2004,20,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs20.html#FacinPS04,https://doi.org/10.1016/j.future.2003.12.006 +Ludovico Boratto,Discovery and representation of the preferences of automatically detected groups: Exploiting the link between group modeling and clustering.,2016,64,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs64.html#BorattoCF16,https://doi.org/10.1016/j.future.2015.10.007 +Sorina Camarasu-Pop,Monte Carlo simulation on heterogeneous distributed systems: A computing framework with parallel merging and checkpointing strategies.,2013,29,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs29.html#Camarasu-PopGSGSB13,https://doi.org/10.1016/j.future.2012.09.003 +Tetsuo Tomiyama,Knowledge engineering and CAD.,1985,1,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs1.html#TomiyamaY85,https://doi.org/10.1016/0167-739X(85)90012-3 +Uwe Freiwald,The Java based cellular automata simulation system--JCASim.,2002,18,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs18.html#FreiwaldW02,https://doi.org/10.1016/S0167-739X(02)00078-X +Zakarea Alshara,CoMe4ACloud: An end-to-end framework for autonomic Cloud systems.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#AlsharaABLPL18,https://doi.org/10.1016/j.future.2018.03.039 +Souhila Mammeri,Performance study and enhancement of multichannel access methods in the future generation VHT WLAN.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#MammeriYBM18,https://doi.org/10.1016/j.future.2017.09.057 +Bo Shen,Mixed scheduling with heterogeneous delay constraints in cyber-physical systems.,2016,61,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs61.html#ShenZK16,https://doi.org/10.1016/j.future.2015.10.021 +Dag Fritzson,Adaptive scheduling strategy optimizer for parallel rolling bearing simulation.,2000,16,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs16.html#FritzsonN00,https://doi.org/10.1016/S0167-739X(99)00140-5 +Vladimir Korkhov,Dynamic workload balancing of parallel applications with user-level scheduling on the Grid.,2009,25,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs25.html#KorkhovMK09,https://doi.org/10.1016/j.future.2008.07.001 +P. Varalakshmi,Thwarting DDoS attacks in grid using information divergence.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#VaralakshmiS13,https://doi.org/10.1016/j.future.2011.10.012 +Mark Loriot,FEM/FVM calculations of compressible flows on a Meiko system.,1995,11,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs11.html#LoriotF95,https://doi.org/10.1016/0167-739X(94)00043-E +Zoltán Farkas,Interoperability of BOINC and EGEE.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#FarkasKBG10,https://doi.org/10.1016/j.future.2010.05.009 +Lizhe Wang,G-Hadoop: MapReduce across distributed data centers for data-intensive computing.,2013,29,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs29.html#WangTRMSCC13,https://doi.org/10.1016/j.future.2012.09.001 +Panagiotis D. Michailidis,Performance evaluation of load balancing strategies for approximate string matching application on an MPI cluster of heterogeneous workstations.,2003,19,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs19.html#MichailidisM03,https://doi.org/10.1016/S0167-739X(03)00109-2 +Gunupudi Rajesh Kumar,CLAPP: A self constructing feature clustering approach for anomaly detection.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#KumarMNG17,https://doi.org/10.1016/j.future.2016.12.040 +Zhihua Li,Energy-aware and multi-resource overload probability constraint-based virtual machine dynamic consolidation method.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#LiYYY18,https://doi.org/10.1016/j.future.2017.09.075 +Victor Chang 0001,Editorial for FGCS special issue: Big Data in the cloud.,2016,65,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs65.html#0001RWWLW16,https://doi.org/10.1016/j.future.2016.04.007 +Nuha El-Khalili,Surgical training on the web.,2000,17,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs17.html#El-KhaliliB00,https://doi.org/10.1016/S0167-739X(99)00110-7 +Rafael Tolosana-Calasanz,Resource management for bursty streams on multi-tenancy cloud environments.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#Tolosana-Calasanz16,https://doi.org/10.1016/j.future.2015.03.012 +Jaroslaw Bulat,Computational tasks in computer-assisted transbronchial biopsy.,2010,26,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs26.html#BulatDSTZD10,https://doi.org/10.1016/j.future.2009.08.006 +Zeger W. Hendrikse,Evaluating the VLAM-G toolkit on the DAS-2.,2003,19,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs19.html#HendrikseBJEHHKLV03,https://doi.org/10.1016/S0167-739X(03)00062-1 +John J. Helly 0001,A method for interoperable digital libraries and data repositories.,1999,16,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs16.html#HellyESM99,https://doi.org/10.1016/S0167-739X(99)00032-1 +Jay Smith,Overlay network resource allocation using a decentralized market-based approach.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#SmithCMS12,https://doi.org/10.1016/j.future.2011.07.002 +Alejandro Corbellini,DPM: A novel distributed large-scale social graph processing framework for link prediction algorithms.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#CorbelliniGMSZ18,https://doi.org/10.1016/j.future.2017.02.025 +Bin Xie 0001,Preface.,2013,29,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs29.html#XieKC13,https://doi.org/10.1016/j.future.2013.04.025 +Gianluigi Folino,Special section: Bio-inspired algorithms for distributed systems.,2010,26,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs26.html#FolinoM10,https://doi.org/10.1016/j.future.2010.03.002 +Xiaohong Li,A novel optimized vertical handover framework for seamless networking integration in cyber-enabled systems.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#LiLFXF18,https://doi.org/10.1016/j.future.2017.03.031 +Shengtao Sun,Associative retrieval in spatial big data based on spreading activation with semantic ontology.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#SunSZXCSW17,https://doi.org/10.1016/j.future.2016.10.018 +Claudia Diamantini,SemPI: A semantic framework for the collaborative construction and maintenance of a shared dictionary of performance indicators.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#DiamantiniPS16,https://doi.org/10.1016/j.future.2015.04.011 +Georgios L. Stavrinides,Scheduling real-time DAGs in heterogeneous clusters by combining imprecise computations and bin packing techniques for the exploitation of schedule holes.,2012,28,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs28.html#StavrinidesK12,https://doi.org/10.1016/j.future.2012.03.002 +Anirban Sengupta,Forensic engineering for resolving ownership problem of reusable IP core generated during high level synthesis.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#SenguptaK18,https://doi.org/10.1016/j.future.2017.08.001 +Jia Jun Tay,A tree search algorithm for low multiplicative complexity logic design.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#TayWWZH18,https://doi.org/10.1016/j.future.2018.01.063 +Jie Zhang 0037,Information-theoretical secure verifiable secret sharing with vector space access structures over bilinear groups and its applications.,2015,52,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs52.html#ZhangZ15,https://doi.org/10.1016/j.future.2014.11.013 +Julio Sahuquillo,A dynamic execution time estimation model to save energy in heterogeneous multicores running periodic tasks.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#SahuquilloHPMD16,https://doi.org/10.1016/j.future.2015.06.011 +João Paulo Just Peixoto,Wireless visual sensor networks for smart city applications: A relevance-based approach for multiple sinks mobility.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#PeixotoC17,https://doi.org/10.1016/j.future.2017.05.027 +A. de Saint Vincent,PREVISE: A knowledge-based system to support the preparation and verification of space operations procedures.,1993,9,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs9.html#VincentLLA93,https://doi.org/10.1016/0167-739X(93)90031-J +Syed Khairuzzaman Tanbeer,Scalable regular pattern mining in evolving body sensor data.,2017,75,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs75.html#TanbeerHAZJ17,https://doi.org/10.1016/j.future.2016.04.008 +Bo-Wei Chen,Privacy-preserved big data analysis based on asymmetric imputation kernels and multiside similarities.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#ChenRYG18,https://doi.org/10.1016/j.future.2016.11.008 +Jeungeun Song 0001,TOLA: Topic-oriented learning assistance based on cyber-physical system and big data.,2017,75,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs75.html#SongZDHR17,https://doi.org/10.1016/j.future.2016.05.040 +François D'Heygère,QUATRAIN - A design support tool and a data processing sequence supervisor.,1993,9,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs9.html#DHeygereMR93,https://doi.org/10.1016/0167-739X(93)90034-M +Jianliang Wei,A personalized authoritative user-based recommendation for social tagging.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#WeiMA18,https://doi.org/10.1016/j.future.2018.03.048 +Taesik Kim,Vehicular datacenter modeling for cloud computing: Considering capacity and leave rate of vehicles.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#KimMJ18,https://doi.org/10.1016/j.future.2018.05.052 +Fadi Al-Turjman,Mobile Couriers' selection for the Smart-grid in Smart-cities' Pervasive Sensing.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#Al-Turjman18a,https://doi.org/10.1016/j.future.2017.09.033 +Henri E. Bal,Evaluation of KL1 and the inference machine.,1993,9,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs9.html#Bal93,https://doi.org/10.1016/0167-739X(93)90004-9 +Marek Wieczorek,Towards a general model of the multi-criteria workflow scheduling on the grid.,2009,25,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs25.html#WieczorekHP09,https://doi.org/10.1016/j.future.2008.09.002 +Andrew Grant,An implementation of a portable instrumented communication library using CS tools.,1993,9,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs9.html#GrantD93a,https://doi.org/10.1016/0167-739X(93)90026-L +Jianjiang Li,A data-check based distributed storage model for storing hot temporary data.,2017,73,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs73.html#LiZLCLW17,https://doi.org/10.1016/j.future.2017.03.019 +Wenyin Yang,HEPart: A balanced hypergraph partitioning algorithm for big data applications.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#YangWCC18,https://doi.org/10.1016/j.future.2018.01.009 +ángel García-Crespo,SOLAR: Social Link Advanced Recommendation System.,2010,26,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs26.html#Garcia-CrespoPBS10,https://doi.org/10.1016/j.future.2009.07.008 +Javier Celaya,A task routing approach to large-scale scheduling.,2013,29,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs29.html#CelayaA13,https://doi.org/10.1016/j.future.2012.12.009 +Wenhao Fan,DEXIN: A fast content-based multi-attribute event matching algorithm using dynamic exclusive and inclusive methods.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#FanLT17,https://doi.org/10.1016/j.future.2016.10.020 +Germán Moltó,Automatic replication of WSRF-based Grid services via operation providers.,2009,25,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs25.html#MoltoHA09,https://doi.org/10.1016/j.future.2009.03.004 +Dongyoung Koo,Privacy-preserving deduplication of encrypted data with dynamic ownership management in fog computing.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#KooH18,https://doi.org/10.1016/j.future.2017.01.024 +Francisco Borges,Care HPS: A high performance simulation tool for parallel and distributed agent-based modeling.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#BorgesGLS17,https://doi.org/10.1016/j.future.2016.08.015 +SungJin Choi,Group-based adaptive result certification mechanism in Desktop Grids.,2010,26,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs26.html#ChoiB10,https://doi.org/10.1016/j.future.2009.05.025 +Andréa M. Matsunaga,Workforce-efficient consensus in crowdsourced transcription of biocollections information.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#MatsunagaMF16,https://doi.org/10.1016/j.future.2015.07.004 +Hubert L. Dreyfus,Competent systems: The only future for inference-making computers.,1986,2,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs2.html#DreyfusD86,https://doi.org/10.1016/0167-739X(86)90023-3 +Xiaokang Zhou,Cybermatics: Advanced Strategy and Technology for Cyber-Enabled Systems and Applications.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#ZhouZLR18,https://doi.org/10.1016/j.future.2017.09.052 +Ricardo Olanda,Hybrid P2P schemes for remote terrain interactive visualization systems.,2013,29,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs29.html#OlandaPO13,https://doi.org/10.1016/j.future.2012.11.002 +Jorge L. V. Barbosa,GHolo: a multiparadigm model oriented to development of grid systems.,2005,21,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs21.html#BarbosaCYG05,https://doi.org/10.1016/j.future.2004.09.014 +Maja Matijasevic,Design and evaluation of a multi-user virtual audio chat.,2003,19,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs19.html#MatijasevicS03,https://doi.org/10.1016/S0167-739X(02)00149-8 +Meikang Qiu,Proactive user-centric secure data scheme using attribute-based semantic access controls for mobile clouds in financial industry.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#QiuGTTZ18,https://doi.org/10.1016/j.future.2016.01.006 +Shadi A. Aljawarneh,Cloud security engineering: Early stages of SDLC.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#AljawarnehAJ17,https://doi.org/10.1016/j.future.2016.10.005 +Jun Shen 0001,Aligning ontology-based development with service oriented systems.,2014,32,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs32.html#ShenBLW14,https://doi.org/10.1016/j.future.2013.08.005 +Hongbo Liu,Scheduling jobs on computational grids using a fuzzy particle swarm optimization algorithm.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#LiuAH10,https://doi.org/10.1016/j.future.2009.05.022 +Thuy Dinh Duong,Fault-tolerant routing based on approximate directed routable probabilities for hypercubes.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#DuongK14,https://doi.org/10.1016/j.future.2013.12.003 +Pandi Vijayakumar,Computationally efficient privacy preserving anonymous mutual and batch authentication schemes for vehicular ad hoc networks.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#VijayakumarCDBS18,https://doi.org/10.1016/j.future.2016.11.024 +Chouki Tibermacine,Software architecture constraint reuse-by-composition.,2016,61,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs61.html#TibermacineSTD16,https://doi.org/10.1016/j.future.2016.02.006 +Georgios Ch. Sirakoulis,A cellular automaton methodology for the simulation of integrated circuit fabrication processes.,2002,18,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs18.html#SirakoulisKT02,https://doi.org/10.1016/S0167-739X(01)00061-9 +Jaime Lloret,Structuring connections between content delivery servers groups.,2008,24,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs24.html#LloretPE08,https://doi.org/10.1016/j.future.2007.06.008 +Orcan Alpar,Biometric touchstroke authentication by fuzzy proximity of touch locations.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#Alpar18,https://doi.org/10.1016/j.future.2018.03.030 +Colin Low,Decentralised application placement.,2005,21,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs21.html#Low05,https://doi.org/10.1016/j.future.2003.10.003 +Robert M. Burger,VLSI research in the U.S.A.,1984,1,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs1.html#BurgerS84,https://doi.org/10.1016/0167-739X(84)90019-0 +Shamsollah Ghanbari,Multi-objective method for divisible load scheduling in multi-level tree network.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#GhanbariOBL16,https://doi.org/10.1016/j.future.2015.03.015 +Markus Helfert,New Horizons of Cloud Computing.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#Helfert16,https://doi.org/10.1016/j.future.2015.11.007 +Seungwan Hong,An analysis of security systems for electronic information for establishing secure internet of things environments: Focusing on research trends in the security field in South Korea.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#HongPPJC18,https://doi.org/10.1016/j.future.2017.10.019 +Muhammad Babar,Smart urban planning using Big Data analytics to contend with the interoperability in Internet of Things.,2017,77,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs77.html#BabarA17,https://doi.org/10.1016/j.future.2017.07.029 +Wei Wang 0088,Secure hybrid-indexed search for high efficiency over keyword searchable ciphertexts.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#WangXLY16,https://doi.org/10.1016/j.future.2014.07.008 +Darren Quick,Digital droplets: Microsoft SkyDrive forensic data remnants.,2013,29,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs29.html#QuickC13,https://doi.org/10.1016/j.future.2013.02.001 +Wei Li 0058,System modelling and performance evaluation of a three-tier Cloud of Things.,2017,70,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs70.html#LiSDPPWSZK17,https://doi.org/10.1016/j.future.2016.06.019 +Ze Deng,An efficient online direction-preserving compression approach for trajectory streaming data.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#DengHWRZJ17,https://doi.org/10.1016/j.future.2016.09.019 +Shah Fahd,Correlation power analysis of modes of encryption in AES and its countermeasures.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#FahdAAIW18,https://doi.org/10.1016/j.future.2017.06.004 +Thomas Stützle,MAX-MIN Ant System.,2000,16,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs16.html#StutzleH00,https://doi.org/10.1016/S0167-739X(00)00043-1 +Nicholas Mills,Maximizing the performance of scientific data transfer by optimizing the interface between parallel file systems and advanced research networks.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#MillsFL18,https://doi.org/10.1016/j.future.2017.04.030 +Meera Vasudevan,Profile-based application assignment for greener and more energy-efficient data centers.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#VasudevanTTK17,https://doi.org/10.1016/j.future.2016.06.037 +Mais Nijim,StReD: A quality of security framework for storage resources in Data Grids.,2007,23,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs23.html#NijimZQ07,https://doi.org/10.1016/j.future.2006.12.007 +Haeng-Kon Kim,Convergence agent model for developing u-healthcare systems.,2014,35,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs35.html#Kim14,https://doi.org/10.1016/j.future.2013.10.025 +Sergio F. Ochoa,Distributed solutions for ubiquitous computing and ambient intelligence.,2014,34,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs34.html#OchoaL14,https://doi.org/10.1016/j.future.2014.01.004 +Pengfei Hu,A unified face identification and resolution scheme using cloud computing in Internet of Things.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#HuNQXLS18,https://doi.org/10.1016/j.future.2017.03.030 +Hong Zhong 0001,"Reprint of ""LBBSRT: An efficient SDN load balancing scheme based on server response time"".",2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#ZhongFC18,https://doi.org/10.1016/j.future.2017.11.012 +Stefania Bandini,Supporting the application of Situated Cellular Agents in non-uniform spaces.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#BandiniMS05,https://doi.org/10.1016/j.future.2004.05.002 +Yuxia Cheng,Efficient cache resource aggregation using adaptive multi-level exclusive caching policies.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#ChengXCHA18,https://doi.org/10.1016/j.future.2017.09.044 +Achour Mostéfaoui,The logically instantaneous communication mode: a communication abstraction.,2001,17,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs17.html#MostefaouiRV01,https://doi.org/10.1016/S0167-739X(00)00050-9 +Eugen Feller,Independent checkpointing in a heterogeneous grid environment.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#FellerMSM12,https://doi.org/10.1016/j.future.2011.03.012 +Sean Bechhofer,Why linked data is not enough for scientists.,2013,29,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs29.html#BechhoferBRMABCCDDGMONSG13,https://doi.org/10.1016/j.future.2011.08.004 +J. Fuchs,AI and space.,1993,9,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs9.html#Fuchs93,https://doi.org/10.1016/0167-739X(93)90030-S +Moayad Mokatren,Exploring the potential of a mobile eye tracker as an intuitive indoor pointing device: A case study in cultural heritage.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#MokatrenKS18,https://doi.org/10.1016/j.future.2017.07.007 +Jeferson S. Arcanjo,Methods for evaluating volunteers' contributions in a deforestation detection citizen science project.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#ArcanjoLFR16,https://doi.org/10.1016/j.future.2015.07.005 +Susan V. Vrbsky,Decreasing power consumption with energy efficient data aware strategies.,2013,29,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs29.html#VrbskyGCNG13,https://doi.org/10.1016/j.future.2012.12.016 +Dimitrios S. Nikolopoulos,Adaptive scheduling under memory constraints on non-dedicated computationalfarms.,2003,19,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs19.html#NikolopoulosP03,https://doi.org/10.1016/S0167-739X(03)00031-1 +Alessandro Bassi,The Internet Backplane Protocol: a study in resource sharing.,2003,19,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs19.html#BassiBMPSWF03,https://doi.org/10.1016/S0167-739X(03)00033-5 +Ping Li 0018,Multi-key privacy-preserving deep learning in cloud computing.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#LiLHLGYC17,https://doi.org/10.1016/j.future.2017.02.006 +Harald Kosch,Managing the operator ordering problem in parallel databases.,2000,16,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs16.html#Kosch00,https://doi.org/10.1016/S0167-739X(99)00080-1 +Ana Juan Ferrer,OPTIMIS: A holistic approach to cloud service provisioning.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#FerrerHTEAZSGBDZDNKKVHKWCa12,https://doi.org/10.1016/j.future.2011.05.022 +Vassiliki Andronikou,"Dynamic QoS-aware data replication in grid environments based on data ""importance"".",2012,28,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs28.html#AndronikouMTKV12,https://doi.org/10.1016/j.future.2011.02.003 +Hitoshi Yanami,The Maple package SyNRAC and its application to robust control design.,2007,23,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs23.html#YanamiA07,https://doi.org/10.1016/j.future.2006.10.009 +Giuseppe Marino,NAUTA: A network administration utility for transputer architectures.,1993,9,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs9.html#MarinoSLP93,https://doi.org/10.1016/0167-739X(93)90027-M +Massimo Cafaro,Special Section: Grid and Pervasive Computing 2009.,2011,27,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs27.html#CafaroMA11,https://doi.org/10.1016/j.future.2010.11.019 +Luca Berruti,Performance evaluation of measurement data acquisition mechanisms in a distributed computing environment integrating remote laboratory instrumentation.,2013,29,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs29.html#BerrutiDZ13,https://doi.org/10.1016/j.future.2012.07.007 +Keke Gai,Privacy-preserving multi-channel communication in Edge-of-Things.,2018,85,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs85.html#GaiQXL18,https://doi.org/10.1016/j.future.2018.03.043 +Daniel S. Katz,Special issue on eScience infrastructure and applications.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#KatzZ14,https://doi.org/10.1016/j.future.2014.03.007 +Karthick Ramachandran,Decentralized approach to resource availability prediction using group availability in a P2P desktop grid.,2012,28,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs28.html#RamachandranLP12,https://doi.org/10.1016/j.future.2010.10.006 +Mehdi Sheikhalishahi,A multi-dimensional job scheduling.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#SheikhalishahiW16,https://doi.org/10.1016/j.future.2015.03.014 +Pankaj Deep Kaur,A resource elasticity framework for QoS-aware execution of cloud applications.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#KaurC14,https://doi.org/10.1016/j.future.2014.02.018 +Amaury Lendasse,Vector quantization: a weighted version for time-series forecasting.,2005,21,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs21.html#LendasseFWV05,https://doi.org/10.1016/j.future.2004.03.006 +Johannes Starlinger,Effective and efficient similarity search in scientific workflow repositories.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#StarlingerBKDL16,https://doi.org/10.1016/j.future.2015.06.012 +David W. Chadwick,The PERMIS X.509 role based privilege management infrastructure.,2003,19,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs19.html#ChadwickO03,https://doi.org/10.1016/S0167-739X(02)00153-X +Hailong Sun 0001,RCT: A distributed tree for supporting efficient range and multi-attribute queries in grid computing.,2008,24,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs24.html#SunHLB08,https://doi.org/10.1016/j.future.2007.12.002 +Vincent C. Emeakaroha,Towards autonomic detection of SLA violations in Cloud infrastructures.,2012,28,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs28.html#EmeakarohaNCBBR12,https://doi.org/10.1016/j.future.2011.08.018 +Ralph Koning,CoreFlow: Enriching Bro security events using network traffic monitoring data.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#KoningBLG18,https://doi.org/10.1016/j.future.2017.04.017 +Manfred Ruschitzka,Two-level grammars for data conversions.,1990,5,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs5.html#Ruschitzka90a,https://doi.org/10.1016/0167-739X(90)90037-E +Jiangtao Zhang,Key based data analytics across data centers considering bi-level resource provision in cloud computing.,2016,62,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs62.html#ZhangZHJW16,https://doi.org/10.1016/j.future.2016.03.008 +Alexandru Iosup,The Grid Workloads Archive.,2008,24,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs24.html#IosupLJADWE08,https://doi.org/10.1016/j.future.2008.02.003 +Mohiuddin Ahmed,A survey of anomaly detection techniques in financial domain.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#AhmedM016,https://doi.org/10.1016/j.future.2015.01.001 +Weimin Peng,Using general master equation for feature fusion.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#PengCC18,https://doi.org/10.1016/j.future.2018.01.006 +Andre S. Gomes,Edge caching with mobility prediction in virtualized LTE mobile networks.,2017,70,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs70.html#GomesSPFZMBSC17,https://doi.org/10.1016/j.future.2016.06.022 +Saru Kumari,A user friendly mutual authentication and key agreement scheme for wireless sensor networks using chaotic maps.,2016,63,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs63.html#KumariLWDAK16,https://doi.org/10.1016/j.future.2016.04.016 +Jack J. Dongarra,Changing technologies of HPC.,1997,12,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs12.html#DongarraMSS97,https://doi.org/10.1016/S0167-739X(96)00031-3 +Thierry Porcher,Benchmarking the POMPC compiler on the Connection Machine CM-2.,1995,11,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs11.html#Porcher95,https://doi.org/10.1016/0167-739X(94)00044-F +Rune Rasmussen,A deductive system for proving workflow models from operational procedures.,2012,28,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs28.html#RasmussenB12,https://doi.org/10.1016/j.future.2012.01.001 +Helan Liang,Dynamic service selection with QoS constraints and inter-service correlations using cooperative coevolution.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#LiangD17,https://doi.org/10.1016/j.future.2017.05.019 +Rodrigo da Rosa Righi,A lightweight plug-and-play elasticity service for self-organizing resource provisioning on parallel applications.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#RighiRRCRN18,https://doi.org/10.1016/j.future.2017.02.023 +Peijie Huang,Macroeconomics based Grid resource allocation.,2008,24,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs24.html#HuangPLL08,https://doi.org/10.1016/j.future.2008.03.003 +Gregory Levitin,Optimization of dynamic spot-checking for collusion tolerance in grid computing.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#LevitinXJD18,https://doi.org/10.1016/j.future.2018.01.049 +Jinqiang Li,An insertion-deletion-compensation model with Poisson process for scale-free networks.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#LiZLL18,https://doi.org/10.1016/j.future.2017.04.011 +Daniel Lorenz 0001,Steering of sequential jobs with a distributed shared memory based model for online steering.,2010,26,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs26.html#LorenzBUWW10,https://doi.org/10.1016/j.future.2009.05.016 +Niandong Fang,MPI-DDL: A distributed-data library for MPI.,1997,12,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs12.html#FangB97,https://doi.org/10.1016/S0167-739X(96)00026-X +Gopal Gupta,Optimal implementation of and-or parallel Prolog.,1994,10,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs10.html#GuptaC94,https://doi.org/10.1016/0167-739X(94)90052-3 +Abdul Waheed,Parallelization of NAS benchmarks for shared memory multiprocessors.,1999,15,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs15.html#WaheedY99,https://doi.org/10.1016/S0167-739X(98)00080-6 +Xiaowu Deng,Support high-order tensor data description for outlier detection in high-dimensional big sensor data.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#DengJPM18,https://doi.org/10.1016/j.future.2017.10.013 +Zhikai Kuang,A quick-response framework for multi-user computation offloading in mobile cloud computing.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#KuangGLY18,https://doi.org/10.1016/j.future.2017.10.034 +Masahiro Inui,Development of a model-based intelligent training system.,1989,5,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs5.html#InuiMKB89,https://doi.org/10.1016/0167-739X(89)90021-6 +Yiming Zhang,Distance-aware bloom filters: Enabling collaborative search for efficient resource discovery.,2013,29,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs29.html#ZhangL13,https://doi.org/10.1016/j.future.2012.08.007 +In Hwan Doh,Towards greener data centers with storage class memory.,2013,29,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs29.html#DohKKCLN13,https://doi.org/10.1016/j.future.2013.05.012 +Sam Verboven,Black box scheduling for resource intensive virtual machine workloads with interference models.,2013,29,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs29.html#VerbovenVB13,https://doi.org/10.1016/j.future.2013.04.027 +Armel de La Bourdonnaye,A new technique for reducing the cost of integral equations in axisymmetric cases.,1994,10,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs10.html#Bourdonnaye94,https://doi.org/10.1016/0167-739X(94)90005-1 +Joe Mambretti,OptIPuter: Enabling advanced applications with novel optical control planes and backplanes.,2009,25,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs25.html#Mambretti09,https://doi.org/10.1016/j.future.2008.06.008 +Yunsik Son,Tag localization in a two-dimensional RFID tag matrix.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#SonJLKS17,https://doi.org/10.1016/j.future.2016.03.017 +Stefan Schulte 0002,Elastic Business Process Management: State of the art and open challenges for BPM in the cloud.,2015,46,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs46.html#0002JVWH15,https://doi.org/10.1016/j.future.2014.09.005 +Harmanjeet Kaur,An efficient multi-party scheme for privacy preserving collaborative filtering for healthcare recommender system.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#KaurKB18,https://doi.org/10.1016/j.future.2018.03.017 +Zhihui Du,Robot Cloud: Bridging the power of robotics and cloud computing.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#DuHCXGW17,https://doi.org/10.1016/j.future.2016.01.002 +Osvaldo Gervasi,VMSLab-G: a virtual laboratory prototype for molecular science on the Grid.,2004,20,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs20.html#GervasiRPL04,https://doi.org/10.1016/j.future.2003.11.015 +Henri E. Bal,Editorial.,2003,19,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs19.html#BalLRL03,https://doi.org/10.1016/S0167-739X(03)00038-4 +Yong Peng,Investigation on the injuries of drivers and copilots in rear-end crashes between trucks based on real world accident data in China.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#PengWPHTJ18,https://doi.org/10.1016/j.future.2017.07.065 +Zhao-Hong Jia,Minimizing makespan for arbitrary size jobs with release * on P-batch machines with arbitrary capacities.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#JiaLL17,https://doi.org/10.1016/j.future.2016.07.017 +Andreas C. Döring,Routing direction determination in regular networks based on configurable circuits.,2005,21,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs21.html#Doring05,https://doi.org/10.1016/j.future.2004.09.006 +Guiyeom Kang,Colorectal tumour simulation using agent based modelling and high performance computing.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#KangMBBPSC17,https://doi.org/10.1016/j.future.2016.03.026 +Ian Brackenbury,The road to multimedia.,1991,7,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs7.html#BrackenburyS91,https://doi.org/10.1016/0167-739X(91)90019-T +Hamideh Afsarmanesh,A reference architecture for scientific virtual laboratories.,2001,17,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs17.html#AfsarmaneshKBGH01,https://doi.org/10.1016/S0167-739X(01)00042-5 +Somayeh Abdi,Cost minimization for deadline-constrained bag-of-tasks applications in federated hybrid clouds.,2017,71,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs71.html#AbdiPAZ17,https://doi.org/10.1016/j.future.2017.01.036 +Alberto Sánchez,A high performance suite of data services for grids.,2010,26,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs26.html#SanchezPMC10,https://doi.org/10.1016/j.future.2009.11.006 +Paolo Bellavista,GAMESH: A grid architecture for scalable monitoring and enhanced dependable job scheduling.,2017,71,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs71.html#BellavistaCCFFP17,https://doi.org/10.1016/j.future.2016.10.023 +Zhihan Lv,Government affairs service platform for smart city.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#LvLWZHF18,https://doi.org/10.1016/j.future.2017.08.047 +Andreas Berl,An energy consumption model for virtualized office environments.,2011,27,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs27.html#BerlM11,https://doi.org/10.1016/j.future.2011.04.010 +Cheng-Hsien Tang,Shortest-linkage-based parallel hierarchical clustering on main-belt moving objects of the solar system.,2014,34,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs34.html#TangTCCW14,https://doi.org/10.1016/j.future.2013.12.029 +Orcun Yildiz,Enabling fast failure recovery in shared Hadoop clusters: Towards failure-aware scheduling.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#YildizIA17,https://doi.org/10.1016/j.future.2016.02.015 +Liu Wenyin,Discovering phishing target based on semantic link network.,2010,26,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs26.html#WenyinFQQL10,https://doi.org/10.1016/j.future.2009.07.012 +Souley Madougou,Characterizing workflow-based activity on a production e-infrastructure using provenance data.,2013,29,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs29.html#MadougouSSSBKO13,https://doi.org/10.1016/j.future.2013.04.019 +George A. Papadopoulos,Configuration and dynamic reconfiguration of components using the coordination paradigm.,2001,17,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs17.html#PapadopoulosA01,https://doi.org/10.1016/S0167-739X(01)00043-7 +Jesus Omana Iglesias,Increasing task consolidation efficiency by using more accurate resource estimations.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#IglesiasCMOM16,https://doi.org/10.1016/j.future.2015.08.018 +Huaqun Wang,Anonymous and secure aggregation scheme in fog-based public cloud computing.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#WangWD18,https://doi.org/10.1016/j.future.2017.02.032 +Gheorghe Cosmin Silaghi,A time-constrained SLA negotiation strategy in competitive computational grids.,2012,28,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs28.html#SilaghiSL12,https://doi.org/10.1016/j.future.2011.11.002 +S. Gamvroulas,A secure brokerage network for retail banking services.,2000,16,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs16.html#GamvroulasPA00,https://doi.org/10.1016/S0167-739X(99)00066-7 +Shadi Ibrahim,Governing energy consumption in Hadoop through CPU frequency scaling: An analysis.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#IbrahimPCCMA16,https://doi.org/10.1016/j.future.2015.01.005 +Jenny Forss,The Modeler's Workspace: a distributed digital library for neuroscience.,1999,16,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs16.html#ForssBBW99,https://doi.org/10.1016/S0167-739X(99)00040-0 +Caroline Japhet,The optimized order 2 method : Application to convection-diffusion problems.,2001,18,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs18.html#JaphetNR01,https://doi.org/10.1016/S0167-739X(00)00072-8 +Getzi Jeba Leelipushpam Paulraj,Resource-aware virtual machine migration in IoT cloud.,2018,85,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs85.html#PaulrajFPJ18,https://doi.org/10.1016/j.future.2018.03.024 +Vu Mai,Design and implementation of a secure cloud-based billing model for smart meters as an Internet of things using homomorphic cryptography.,2017,72,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs72.html#MaiK17,https://doi.org/10.1016/j.future.2016.06.003 +Andrés Iglesias 0001,Computer graphics for water modeling and rendering: a survey.,2004,20,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs20.html#Iglesias04a,https://doi.org/10.1016/j.future.2004.05.026 +Akemi Gálvez,Symbolic/numeric analysis of chaotic synchronization with a CAS.,2007,23,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs23.html#GalvezI07,https://doi.org/10.1016/j.future.2006.10.010 +Chahrazed Labba,A predictive approach for the efficient distribution of agent-based systems on a hybrid-cloud.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#LabbaSD18,https://doi.org/10.1016/j.future.2017.10.053 +John R. Gurd,The Manchester dataflow machine.,1985,1,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs1.html#Gurd85,https://doi.org/10.1016/0167-739X(85)90009-3 +Yukun Zhou,A similarity-aware encrypted deduplication scheme with flexible access control in the cloud.,2018,84,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs84.html#ZhouFHXFHZ18,https://doi.org/10.1016/j.future.2017.10.014 +Liangxiu Han,Semantic-supported and agent-based decentralized grid resource discovery.,2008,24,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs24.html#HanB08,https://doi.org/10.1016/j.future.2008.04.005 +Liwei Chen,Multiple-combinational-channel: A network architecture for workload balance and deadlock free.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#ChenWWWJZ16,https://doi.org/10.1016/j.future.2015.08.013 +Izzet F. Senturk,A resource provisioning framework for bioinformatics applications in multi-cloud environments.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#SenturkBAKMC18,https://doi.org/10.1016/j.future.2016.06.008 +Apostolos Nikolaos Refenes,N-Expression implementations for integrated symbolic and numeric processing.,1987,3,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs3.html#Refenes87,https://doi.org/10.1016/0167-739X(87)90011-2 +Donghua Yang,Ad-hoc aggregate query processing algorithms based on bit-store for query intensive applications in cloud computing.,2013,29,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs29.html#YangFYHWL13,https://doi.org/10.1016/j.future.2012.03.009 +Ting Liu 0002,Abnormal traffic-indexed state estimation: A cyber-physical fusion approach for Smart Grid attack detection.,2015,49,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs49.html#LiuSLGZWS15,https://doi.org/10.1016/j.future.2014.10.002 +Mark Anderson 0001,A service-oriented framework for collating retail intelligence.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#AndersonB18,https://doi.org/10.1016/j.future.2017.07.006 +Gang Sun,L2P2: A location-label based approach for privacy preserving in LBS.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#SunLLYC17,https://doi.org/10.1016/j.future.2016.08.023 +Deqing Zou,Design and implementation of a trusted monitoring framework for cloud platforms.,2013,29,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs29.html#ZouZQXYJH13,https://doi.org/10.1016/j.future.2012.12.020 +Hui Jin 0001,Performance comparison under failures of MPI and MapReduce: An analytical approach.,2013,29,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs29.html#JinS13,https://doi.org/10.1016/j.future.2013.01.013 +Alfredo Cuzzocrea,Innovative methods and algorithms for advanced data-intensive computing.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#Cuzzocrea14,https://doi.org/10.1016/j.future.2014.04.004 +Alejandro Calderón,Expanding the volunteer computing scenario: A novel approach to use parallel applications on volunteer computing.,2012,28,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs28.html#CalderonCBSC12,https://doi.org/10.1016/j.future.2011.04.004 +Kenneth Chiu,Special Section: Third IEEE International Conference on e-Science and Grid Computing.,2009,25,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs25.html#ChiuF09,https://doi.org/10.1016/j.future.2008.10.002 +Carlos de Alfonso,An economic and energy-aware analysis of the viability of outsourcing cluster computing to a cloud.,2013,29,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs29.html#AlfonsoCAM13,https://doi.org/10.1016/j.future.2012.08.014 +Saurabh Sehgal,Understanding application-level interoperability: Scaling-out MapReduce over high-performance grids and clouds.,2011,27,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs27.html#SehgalEMJ11,https://doi.org/10.1016/j.future.2010.11.001 +Jean-Marc Kuntz,Performance evaluation of cache architectures in tightly coupled multiprocessor systems.,1994,10,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs10.html#Kuntz94,https://doi.org/10.1016/0167-739X(94)90048-5 +Wenjuan Li,A collaborative filtering recommendation method based on discrete quantum-inspired shuffled frog leaping algorithms in social networks.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#LiCWHB18,https://doi.org/10.1016/j.future.2018.05.070 +Raúl Gracia Tinedo,Giving form to social cloud storage through experimentation: Issues and insights.,2014,40,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs40.html#TinedoARMLL14,https://doi.org/10.1016/j.future.2014.05.001 +Larry Smarr,Building an OptIPlanet collaboratory to support microbial metagenomics.,2009,25,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs25.html#SmarrGPDHWARF09,https://doi.org/10.1016/j.future.2008.06.009 +Ugo de Carlini,The monitoring of inter-process communications in distributed systems.,1990,5,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs5.html#CarliniVV90,https://doi.org/10.1016/0167-739X(90)90035-C +Ewa Deelman,Workflows and e-Science: An overview of workflow system features and capabilities.,2009,25,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs25.html#DeelmanGST09,https://doi.org/10.1016/j.future.2008.06.012 +Andrew Stephen McGough,Comparison of a cost-effective virtual cloud cluster with an existing campus cluster.,2014,41,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs41.html#McGoughFGWAR14,https://doi.org/10.1016/j.future.2014.07.002 +Jianliang Ma,Global register alias table: Boosting sequential program on multi-core.,2012,28,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs28.html#MaWYC12,https://doi.org/10.1016/j.future.2011.10.004 +Fei Zhang 0005,LayerMover: Fast virtual machine migration over WAN with three-layer image structure.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#ZhangFY18,https://doi.org/10.1016/j.future.2018.01.017 +Alexander Kipp,Layered Green Performance Indicators.,2012,28,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs28.html#KippJFS12,https://doi.org/10.1016/j.future.2011.05.005 +Quanwang Wu,Transactional and QoS-aware dynamic service composition based on ant colony optimization.,2013,29,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs29.html#WuZ13,https://doi.org/10.1016/j.future.2012.12.010 +Henryk Krawczyk,Suitability of the time controlled environment for race detection in distributed applications.,2000,16,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs16.html#KrawczykKP00,https://doi.org/10.1016/S0167-739X(99)00075-8 +Andrew Gibson,The data playground: An intuitive workflow specification environment.,2009,25,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs25.html#GibsonGWOGBM09,https://doi.org/10.1016/j.future.2008.09.009 +Karl Mason,Predicting host CPU utilization in the cloud using evolutionary neural networks.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#MasonDBDH18,https://doi.org/10.1016/j.future.2018.03.040 +Andrei Hutanu,Distributed and collaborative visualization of large data sets using high-speed networks.,2006,22,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs22.html#HutanuABHKKLMMPPSUV06,https://doi.org/10.1016/j.future.2006.03.026 +Yuhui Deng,LAG: Achieving transparent access to legacy data by leveraging grid environment.,2011,27,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs27.html#DengW11,https://doi.org/10.1016/j.future.2010.07.004 +Herbert H. J. Hum,A high-speed memory organization for hybrid dataflow / von Neumann computing.,1992,8,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs8.html#HumG92,https://doi.org/10.1016/0167-739X(92)90064-I +Claudia Bauzer Medeiros,eScience today and tomorrow - Part 2.,2016,59,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs59.html#MedeirosK16a,https://doi.org/10.1016/j.future.2015.12.010 +Minh Pham,Delivering home healthcare through a Cloud-based Smart Home Environment (CoSHE).,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#PhamMDS18,https://doi.org/10.1016/j.future.2017.10.040 +Jörn Künsemöller,A game-theoretic approach to the financial benefits of infrastructure-as-a-service.,2014,41,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs41.html#KunsemollerK14,https://doi.org/10.1016/j.future.2014.03.005 +K. Sashi,Dynamic replication in a data grid using a Modified BHR Region Based Algorithm.,2011,27,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs27.html#SashiT11,https://doi.org/10.1016/j.future.2010.08.011 +Ran Libeskind-Hadas,Origin-based fault-tolerant routing in the mesh.,1995,11,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs11.html#Libeskind-HadasB95,https://doi.org/10.1016/0167-739X(95)00027-P +Ioan Petri,Service level agreement as a complementary currency in peer-to-peer markets.,2012,28,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs28.html#PetriRS12,https://doi.org/10.1016/j.future.2011.09.007 +Jeroen van der Ham,The NOVI information models.,2015,42,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs42.html#HamSLKML15,https://doi.org/10.1016/j.future.2013.12.017 +Christian Engelmann,Scaling to a million cores and beyond: Using light-weight simulation to understand the challenges ahead on the road to exascale.,2014,30,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs30.html#Engelmann14,https://doi.org/10.1016/j.future.2013.04.014 +Guanglu Sun,Feature selection for IoT based on maximal information coefficient.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#SunLDSL18,https://doi.org/10.1016/j.future.2018.05.060 +Adnan Saher Mohammed,Bidirectional Conditional Insertion Sort algorithm* An efficient progress on the classical insertion sort.,2017,71,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs71.html#MohammedAC17,https://doi.org/10.1016/j.future.2017.01.034 +Gustavo Sousa Pavani,Co-scheduling in Lambda Grid Systems by means of Ant Colony Optimization.,2009,25,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs25.html#PavaniW09,https://doi.org/10.1016/j.future.2008.09.003 +Martin Kutrib,Massively parallel fault tolerant computations on syntactical patterns.,2002,18,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs18.html#KutribL02,https://doi.org/10.1016/S0167-739X(02)00070-5 +Sandra Gesing,Gathering requirements for advancing simulations in HPC infrastructures via science gateways.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#GesingDPKGHH18,https://doi.org/10.1016/j.future.2017.02.042 +Biplob R. Ray,Universal and secure object ownership transfer protocol for the Internet of Things.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#RayACA18,https://doi.org/10.1016/j.future.2017.02.020 +Chengying Mao,Search-based QoS ranking prediction for web services in cloud environments.,2015,50,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs50.html#MaoCTCX15,https://doi.org/10.1016/j.future.2015.01.008 +Antônio Marcos Alberti,Naming and name resolution in the future internet: Introducing the NovaGenesis approach.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#AlbertiCSR17,https://doi.org/10.1016/j.future.2016.07.015 +Tian Huang,Anomaly detection and identification scheme for VM live migration in cloud infrastructure.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#HuangZWBD16,https://doi.org/10.1016/j.future.2015.06.005 +Cheng-Yu Lee,Power-aware code scheduling assisted with power gating and DVS.,2014,34,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs34.html#LeeLC14,https://doi.org/10.1016/j.future.2013.12.011 +Richard O. Sinnott,From access and integration to mining of secure genomic data sets across the Grid.,2007,23,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs23.html#Sinnott07,https://doi.org/10.1016/j.future.2006.07.007 +John Panneerselvam,An investigation into the impacts of task-level behavioural heterogeneity upon energy efficiency in Cloud datacentres.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#PanneerselvamLL18,https://doi.org/10.1016/j.future.2017.12.064 +Ayman Ibaida,Cloud enabled fractal based ECG compression in wireless body sensor networks.,2014,35,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs35.html#IbaidaAK14,https://doi.org/10.1016/j.future.2013.12.025 +S. M. Aminul Haque,An optimization-based adaptive resource management framework for economic Grids: A switching mechanism.,2015,47,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs47.html#HaqueAP15,https://doi.org/10.1016/j.future.2014.10.022 +Emanuele Carlini,Flexible load distribution for hybrid distributed virtual environments.,2013,29,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs29.html#CarliniRC13,https://doi.org/10.1016/j.future.2012.09.004 +Rafael Tolosana-Calasanz,Model-driven development of data intensive applications over cloud resources.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#Tolosana-Calasanz18,https://doi.org/10.1016/j.future.2017.12.046 +Soongohn Kim,Secure verifiable non-interactive oblivious transfer protocol using RSA and Bit commitment on distributed environment.,2009,25,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs25.html#KimKL09,https://doi.org/10.1016/j.future.2006.04.006 +Thomas Fahringer,Debugging real-world data-parallel programs with SPiDER.,2002,18,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs18.html#FahringerS02,https://doi.org/10.1016/S0167-739X(02)00050-X +Sergey Pudov,Learning of cellular neural networks.,2001,17,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs17.html#Pudov01,https://doi.org/10.1016/S0167-739X(00)00052-2 +Françoise Fogelman-Soulié,Neural networks and computing.,1991,7,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs7.html#Fogelman-Soulie91,https://doi.org/10.1016/0167-739X(91)90017-R +Gunther Stuer,A commodity market algorithm for pricing substitutable Grid resources.,2007,23,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs23.html#StuerVB07,https://doi.org/10.1016/j.future.2006.11.004 +Ruhul Amin,A light weight authentication protocol for IoT-enabled devices in distributed Cloud Computing environment.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#AminKBIC18,https://doi.org/10.1016/j.future.2016.12.028 +Shuguang Dai,Memory leakage-resilient searchable symmetric encryption.,2016,62,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs62.html#DaiLZ16,https://doi.org/10.1016/j.future.2015.11.003 +Viktor Mauch,High performance cloud computing.,2013,29,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs29.html#MauchKH13,https://doi.org/10.1016/j.future.2012.03.011 +Fatemeh Rezaeimehr,TCARS: Time- and Community-Aware Recommendation System.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#RezaeimehrMAQJ18,https://doi.org/10.1016/j.future.2017.04.003 +Wenbing Chang,Research on detection methods based on Doc2vec abnormal comments.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#ChangXZC18,https://doi.org/10.1016/j.future.2018.04.059 +Mario Macías,Analysis of a trust model for SLA negotiation and enforcement in cloud markets.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#MaciasG16,https://doi.org/10.1016/j.future.2015.03.011 +Bei Xu,Automatic faceted navigation.,2014,32,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs32.html#XuZ14,https://doi.org/10.1016/j.future.2012.12.003 +Edvard Pedersen,Large-scale biological meta-database management.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#PedersenB17,https://doi.org/10.1016/j.future.2016.02.010 +Andrea Bosin,Extending the SOA paradigm to e-Science environments.,2011,27,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs27.html#BosinDP11,https://doi.org/10.1016/j.future.2010.07.003 +Yang Yang 0026,Cross-domain dynamic anonymous authenticated group key management with symptom-matching for e-health social system.,2018,84,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs84.html#0026ZLZ018,https://doi.org/10.1016/j.future.2017.06.025 +Elvira A. Kuksheva,Supercomputer simulation of self-gravitating media.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#KukshevaMNSSV05,https://doi.org/10.1016/j.future.2004.05.019 +Lung-Pin Chen,A scalable blackbox-oriented e-learning system based on desktop grid over private cloud.,2014,38,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs38.html#ChenLLHC14,https://doi.org/10.1016/j.future.2014.02.017 +Tamás Kozsik,Free the Conqueror! Refactoring divide-and-conquer functions.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#KozsikTB18,https://doi.org/10.1016/j.future.2017.05.011 +Rizwan Mian,Provisioning data analytic workloads in a cloud.,2013,29,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs29.html#MianMV13,https://doi.org/10.1016/j.future.2012.01.008 +Wanchun Dou,A Resource Co-Allocation method for load-balance scheduling over big data platforms.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#DouXLYW18,https://doi.org/10.1016/j.future.2017.07.009 +Sanaz Rahimi Moosavi,End-to-end security scheme for mobility enabled healthcare Internet of Things.,2016,64,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs64.html#MoosaviGNRVTI16,https://doi.org/10.1016/j.future.2016.02.020 +Jürgen Lenz,Many-particle simulation of ameboid motility.,2001,17,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs17.html#Lenz01,https://doi.org/10.1016/S0167-739X(00)00064-9 +Kenjiro Taura,Design and implementation of GXP make - A workflow system based on make.,2013,29,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs29.html#TauraMMKYDSJT13,https://doi.org/10.1016/j.future.2011.05.026 +Xiao Qin 0001,Design and analysis of a load balancing strategy in Data Grids.,2007,23,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs23.html#Qin07,https://doi.org/10.1016/j.future.2006.06.008 +Zaheer Abbas Khan,Towards a secure service provisioning framework in a Smart city environment.,2017,77,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs77.html#KhanPA17,https://doi.org/10.1016/j.future.2017.06.031 +Somayeh Kianpisheh,Reliability-driven scheduling of time/cost-constrained grid workflows.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#KianpishehCK16,https://doi.org/10.1016/j.future.2015.07.014 +Joanna Kolodziej,Advances in data-intensive modelling and simulation.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#KolodziejGW14,https://doi.org/10.1016/j.future.2014.02.006 +Hamid Arabnejad,"Reprint of ""Multi-QoS constrained and Profit-aware scheduling approach for concurrent workflows on heterogeneous systems"".",2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#ArabnejadB18,https://doi.org/10.1016/j.future.2016.11.016 +Konstantin Popov,An efficient incremental marshaling framework for distributed systems.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#PopovVBH05,https://doi.org/10.1016/j.future.2004.05.012 +Mário Antunes 0001,Towards IoT data classification through semantic features.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#AntunesGA18,https://doi.org/10.1016/j.future.2017.11.045 +Sayantani Basu,An intelligent/cognitive model of task scheduling for IoT applications in cloud computing environment.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#BasuKSLIHB18,https://doi.org/10.1016/j.future.2018.05.056 +Anne E. James,Special section: Computer Supported Cooperative Work in Design.,2011,27,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs27.html#JamesO11,https://doi.org/10.1016/j.future.2010.07.001 +Joe Mambretti,AMROEBA: Computational astrophysics modeling enabled by dynamic lambda switching.,2006,22,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs22.html#MambrettiGYC06,https://doi.org/10.1016/j.future.2006.03.008 +Peter C. Lockemann,Future database technology: driving forces and directions.,1991,7,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs7.html#LockemannKM91,https://doi.org/10.1016/0167-739X(91)90015-P +Rui Li,Hierarchical decomposition method and combination forecasting scheme for access load on public map service platforms.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#LiLWLDJ18,https://doi.org/10.1016/j.future.2018.03.031 +Dagmar Krefting,MediGRID: Towards a user friendly secured grid infrastructure.,2009,25,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs25.html#KreftingBBDFHHKLMPRSSSTVVW09,https://doi.org/10.1016/j.future.2008.05.005 +Xavier León,A Stackelberg game to derive the limits of energy savings for the allocation of data center resources.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#LeonN13,https://doi.org/10.1016/j.future.2012.05.022 +Jason Kimball,Low bandwidth desktop and video streaming for collaborative tiled display environments.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#KimballWK16,https://doi.org/10.1016/j.future.2015.07.009 +Xuanxia Yao,A lightweight attribute-based encryption scheme for the Internet of Things.,2015,49,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs49.html#YaoCT15,https://doi.org/10.1016/j.future.2014.10.010 +Peter Z. Kunszt,File-based replica management.,2005,21,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs21.html#KunsztLSS05,https://doi.org/10.1016/j.future.2004.09.017 +Miki Hirabayashi,A lattice Boltzmann study of blood flow in stented aneurism.,2004,20,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs20.html#HirabayashiORC04,https://doi.org/10.1016/j.future.2003.12.004 +Lihua Jian,Multi-scale image fusion through rolling guidance filter.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#JianYZZL18,https://doi.org/10.1016/j.future.2018.01.039 +Dennis Wegener,GridR: An R-based tool for scientific data analysis in grid environments.,2009,25,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs25.html#WegenerSSRA09,https://doi.org/10.1016/j.future.2008.09.004 +Minoru Ohyama,A knowledge-based directory assistance system.,1989,5,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs5.html#Ohyama89,https://doi.org/10.1016/0167-739X(89)90027-7 +Atsuko Takefusa,G-lambda: Coordination of a Grid scheduler and lambda path service over GMPLS.,2006,22,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs22.html#TakefusaHNNKMOTSS06,https://doi.org/10.1016/j.future.2006.03.005 +Toni Adame,CUIDATS: An RFID-WSN hybrid monitoring system for smart health care environments.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#AdameBCMOP18,https://doi.org/10.1016/j.future.2016.12.023 +József Kovács,Using a private desktop grid system for accelerating drug discovery.,2011,27,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs27.html#KovacsKL11,https://doi.org/10.1016/j.future.2010.12.008 +Luwei Cheng,Network performance isolation for latency-sensitive cloud applications.,2013,29,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs29.html#ChengW13,https://doi.org/10.1016/j.future.2012.05.025 +Alvaro Graves,Techniques to reduce cluttering of RDF visualizations.,2015,53,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs53.html#Graves15,https://doi.org/10.1016/j.future.2014.11.005 +T. Z. Kalamboukis,Communication performance of a message passing MIMD computer.,1994,10,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs10.html#Kalamboukis94,https://doi.org/10.1016/0167-739X(94)90004-3 +Yong Yu,Cloud data integrity checking with an identity-based auditing mechanism from RSA.,2016,62,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs62.html#YuXASNZVS16,https://doi.org/10.1016/j.future.2016.02.003 +Eleanor G. Rieffel,Private aggregation for presence streams.,2014,31,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs31.html#RieffelBLM14,https://doi.org/10.1016/j.future.2013.05.009 +Paul A. Fishwick,Preface.,2000,17,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs17.html#Fishwick00,https://doi.org/10.1016/S0167-739X(99)00105-3 +Xingang Liu,High-speed inter-view frame mode decision procedure for multi-view video coding.,2012,28,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs28.html#LiuYS12,https://doi.org/10.1016/j.future.2011.05.013 +Carmela Comito,A service-oriented system for distributed data querying and integration on Grids.,2009,25,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs25.html#ComitoGST09,https://doi.org/10.1016/j.future.2008.11.009 +Raúl G. Hazas-Izquierdo,Opening a University Fiber Highway between Mexico and the US.,2006,22,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs22.html#Hazas-IzquierdoCFDGR06,https://doi.org/10.1016/j.future.2006.03.020 +Matthew Smith 0001,Secure on-demand grid computing.,2009,25,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs25.html#SmithSFDSF09,https://doi.org/10.1016/j.future.2008.03.002 +Neil Y. Yen,"Special Issue on ""Hybrid intelligence for growing internet and its applications"".",2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#YenJHZ14,https://doi.org/10.1016/j.future.2014.04.001 +Kalyan S. Perumalla,Interactive parallel simulations with the Jane framework.,2001,17,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs17.html#PerumallaF01,https://doi.org/10.1016/S0167-739X(99)00086-2 +Jack J. Dongarra,Selected numerical algorithms.,2004,20,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs20.html#DongarraMW04,https://doi.org/10.1016/j.future.2003.07.001 +Chandrashekar Jatoth,QoS-aware Big service composition using MapReduce based evolutionary algorithm with guided mutation.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#JatothGFB18,https://doi.org/10.1016/j.future.2017.07.042 +Santosh Kumar 0006,Monitoring of pet animal in smart cities using animal biometrics.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#KumarS18a,https://doi.org/10.1016/j.future.2016.12.006 +Henk D. L. Hollmann,Protection of software algorithms executed on secure modules.,1997,13,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs13.html#HollmannLLBT97,https://doi.org/10.1016/S0167-739X(97)89111-X +Abhinandan S. Prasad,RConf(PD): Automated resource configuration of complex services in the cloud.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#PrasadKIAHF18,https://doi.org/10.1016/j.future.2018.02.027 +M. M. Arentoft,OPTIMUM-AIV: A planning and scheduling system for spacecraft AIV.,1992,7,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs7.html#ArentoftFPGSSV92,https://doi.org/10.1016/0167-739X(92)90055-G +Muhammad Al-Qurishi,An efficient key agreement protocol for Sybil-precaution in online social networks.,2018,84,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs84.html#Al-QurishiRHAAA18,https://doi.org/10.1016/j.future.2017.07.055 +Sergio Ramírez-Gallego,Online entropy-based discretization for data streaming classification.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#Ramirez-Gallego18,https://doi.org/10.1016/j.future.2018.03.008 +Antoon Goderis,Heterogeneous composition of models of computation.,2009,25,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs25.html#GoderisBALG09,https://doi.org/10.1016/j.future.2008.06.014 +Ewa Niewiadomska-Szynkiewicz,Dynamic power management in energy-aware computer networks and data intensive computing systems.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#Niewiadomska-SzynkiewiczSAKMK14,https://doi.org/10.1016/j.future.2013.10.002 +Xiaoqiang Pei,Efficient in-place update with grouped and pipelined data transmission in erasure-coded storage systems.,2017,69,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs69.html#PeiWMX17,https://doi.org/10.1016/j.future.2016.10.016 +Ruay-Shiung Chang,Selecting the most fitting resource for task execution.,2011,27,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs27.html#ChangLC11,https://doi.org/10.1016/j.future.2010.09.003 +Martin L. Ernst,Business applications of artificial intelligence knowledge based expert systems.,1986,2,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs2.html#ErnstO86,https://doi.org/10.1016/0167-739X(86)90013-0 +Costas Vassilakis,exhiSTORY: Smart exhibits that tell their own stories.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#VassilakisPAWLN18,https://doi.org/10.1016/j.future.2017.10.038 +Arthur W. Burks,The invention of the universal electronic computer--how the Electronic Computer Revolution began.,2002,18,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs18.html#Burks02,https://doi.org/10.1016/S0167-739X(02)00068-7 +Antonella Di Stefano,A P2P strategy for QoS discovery and SLA negotiation in Grid environment.,2009,25,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs25.html#StefanoMZ09,https://doi.org/10.1016/j.future.2009.03.001 +Sung Deok Cha,A safety-focused verification using software fault trees.,2012,28,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs28.html#ChaY12,https://doi.org/10.1016/j.future.2011.02.004 +Richard Weinberg,Producing and streaming high resolution digital movies of microscopic subjects.,2011,27,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs27.html#Weinberg11,https://doi.org/10.1016/j.future.2010.11.013 +H. Marchand,On commercial expert systems projects.,1986,2,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs2.html#Marchand86,https://doi.org/10.1016/0167-739X(86)90020-8 +Sadaf Monajemi,Information reliability in complex multitask networks.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#MonajemiSO18,https://doi.org/10.1016/j.future.2017.07.023 +Zhuo Tang,An intermediate data placement algorithm for load balancing in Spark computing environment.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#TangZLL18,https://doi.org/10.1016/j.future.2016.06.027 +H. Kashiwagi,Obituary.,1986,2,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs2.html#Kashiwagi86,https://doi.org/10.1016/0167-739X(86)90029-4 +Chokchai Leangsuksun,Achieving high availability and performance computing with an HA-OSCAR cluster.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#LeangsuksunSLS05,https://doi.org/10.1016/j.future.2003.12.026 +Abedalmotaleb Zadin,Neighborhood-based interference minimization for stable position-based routing in mobile ad hoc networks.,2016,64,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs64.html#ZadinF16,https://doi.org/10.1016/j.future.2016.03.022 +Phan Cong Vinh,Nature-inspired computation and communication: A formal approach.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#VinhV16,https://doi.org/10.1016/j.future.2015.10.011 +Bruno Guazzelli Batista,A QoS-driven approach for cloud computing addressing attributes of performance and security.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#BatistaFSFP17,https://doi.org/10.1016/j.future.2016.09.018 +Hendrik Moens,Allocating resources for customizable multi-tenant applications in clouds using dynamic feature placement.,2015,53,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs53.html#MoensDT15,https://doi.org/10.1016/j.future.2015.05.017 +Hermann Hellwagner,VI architecture communication features and performance on the Giganet cluster LAN.,2002,18,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs18.html#HellwagnerO02,https://doi.org/10.1016/S0167-739X(01)00060-7 +Jan A. Bergstra,Distributed strategic interleaving with load balancing.,2008,24,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs24.html#BergstraM08,https://doi.org/10.1016/j.future.2007.08.001 +J. Alemany,Estimation of privacy risk through centrality metrics.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#AlemanyNAG18,https://doi.org/10.1016/j.future.2017.12.030 +Chun-I Fan,Controllable privacy preserving search based on symmetric predicate encryption in cloud storage.,2013,29,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs29.html#FanH13,https://doi.org/10.1016/j.future.2012.05.005 +François Bodin,Overview of the KOAN programming environment for the iPSC/2 and performance evaluation of the BECAUSE test program 2.51.,1994,10,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs10.html#BodinP94,https://doi.org/10.1016/0167-739X(94)90003-5 +Hongliang Yu,Granary: A sharing oriented distributed storage system.,2014,38,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs38.html#YuZW14,https://doi.org/10.1016/j.future.2013.08.001 +Louis F. Rossi,Interactive simulation of contaminant evolution through porous media.,1999,15,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs15.html#RossiS99,https://doi.org/10.1016/S0167-739X(99)00004-7 +Luca Cinquini,The Earth System Grid Federation: An open infrastructure for access to distributed geospatial data.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#CinquiniCMHSWAMDMPBDDWKPGFS14,https://doi.org/10.1016/j.future.2013.07.002 +Weiwei Lin,Experimental and quantitative analysis of server power model for cloud data centers.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#LinWWWH18,https://doi.org/10.1016/j.future.2016.11.034 +Enrique Alba,Analyzing synchronous and asynchronous parallel distributed genetic algorithms.,2001,17,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs17.html#AlbaT01,https://doi.org/10.1016/S0167-739X(99)00129-6 +Nik Bessis,Service-Oriented System Engineering.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#BessisZS18,https://doi.org/10.1016/j.future.2017.11.025 +Fredrik Dahlgren,An evaluation of hardware-based and compiler-controlled optimizations of snooping cache protocols.,1998,13,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs13.html#DahlgrenSS98,https://doi.org/10.1016/S0167-739X(98)00002-8 +Francesco Piccialli,Editorial for FGCS special issue: The Internet of Cultural Things: Towards a Smart Cultural heritage.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#PiccialliC18,https://doi.org/10.1016/j.future.2017.12.019 +Xingkong Ma,Scalable and elastic event matching for attribute-based publish/subscribe systems.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#MaWQSP14,https://doi.org/10.1016/j.future.2013.09.019 +Emil Jovanov,EEG analysis in a telemedical virtual world.,1999,15,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs15.html#JovanovSSMO99,https://doi.org/10.1016/S0167-739X(98)00068-5 +Zhengchun Liu,Toward a smart data transfer node.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#LiuKFB18,https://doi.org/10.1016/j.future.2018.06.033 +Gang Sun,Big Data and Internet of Things - Fusion for different services and its impacts.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#SunCGRLL18,https://doi.org/10.1016/j.future.2018.05.022 +Michael Stratmann,Leader election in d-dimensional CA in time diam log(diam).,2002,18,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs18.html#StratmannW02,https://doi.org/10.1016/S0167-739X(02)00073-0 +Achille Peternier,Improving execution unit occupancy on SMT-based processors through hardware-aware thread scheduling.,2014,30,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs30.html#PeternierABPB14,https://doi.org/10.1016/j.future.2013.06.015 +K. Berket,A practical approach to the InterGroup protocols.,2002,18,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs18.html#BerketAC02,https://doi.org/10.1016/S0167-739X(02)00036-5 +Hai Zhuge,Cyber-Physical Society - The science and engineering for future society.,2014,32,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs32.html#Zhuge14,https://doi.org/10.1016/j.future.2013.10.008 +Roy Williams,High Performance Computing and Networking Europe 1999.,2000,16,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs16.html#Williams00,https://doi.org/10.1016/S0167-739X(00)00048-0 +Massimo Ficco,A coral-reefs and Game Theory-based approach for optimizing elastic cloud resource allocation.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#FiccoEPC18,https://doi.org/10.1016/j.future.2016.05.025 +Vincent Armant,Semi-online task assignment policies for workload consolidation in cloud computing systems.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#ArmantCBO18,https://doi.org/10.1016/j.future.2017.12.035 +Suchismita Satpathy,Sensing and Actuation as a Service Delivery Model in Cloud Edge centric Internet of Things.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#SatpathyST18,https://doi.org/10.1016/j.future.2018.04.015 +Luis Javier García-Villalba,A PRNU-based counter-forensic method to manipulate smartphone image source identification techniques.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#Garcia-Villalba17,https://doi.org/10.1016/j.future.2016.11.007 +Khalil Drira,Special Issue on Advanced Architectures for the Future Generation of Software-Intensive Systems.,2015,47,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs47.html#DriraO15,https://doi.org/10.1016/j.future.2015.02.006 +Oliver Bent,Modeling user behavior data in systems of engagement.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#BentDWM17,https://doi.org/10.1016/j.future.2016.05.038 +Yinhao Jiang,Ciphertext-policy attribute-based encryption against key-delegation abuse in fog computing.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#JiangSMG18,https://doi.org/10.1016/j.future.2017.01.026 +Peter Luksch 0001,Parallel and distributed implementation of large industrial applications.,2000,16,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs16.html#Luksch00,https://doi.org/10.1016/S0167-739X(99)00077-1 +Valérie Fiolet,A clustering method to distribute a database on a grid.,2007,23,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs23.html#FioletT07,https://doi.org/10.1016/j.future.2007.04.013 +Mengmeng Ge,Proactive defense mechanisms for the software-defined Internet of Things with non-patchable vulnerabilities.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#GeHYK18,https://doi.org/10.1016/j.future.2017.07.008 +Maria Alejandra Rodriguez,Scheduling dynamic workloads in multi-tenant scientific workflow as a service platforms.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#RodriguezB18,https://doi.org/10.1016/j.future.2017.05.009 +Anne E. James,Special Section: QoS in Grid and Cloud.,2012,28,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs28.html#JamesS12,https://doi.org/10.1016/j.future.2012.03.014 +Leon Gommans,Authorization of a QoS path based on generic AAA.,2003,19,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs19.html#GommansLOT03,https://doi.org/10.1016/S0167-739X(03)00078-5 +Yogesh Simmhan,Analysis of approaches for supporting the Open Provenance Model: A case study of the Trident workflow workbench.,2011,27,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs27.html#SimmhanB11,https://doi.org/10.1016/j.future.2010.10.005 +Li Ding 0001,Linked provenance data: A semantic Web-based approach to interoperable workflow traces.,2011,27,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs27.html#DingMMM11,https://doi.org/10.1016/j.future.2010.10.011 +Dingxian Wang,A novel framework for semantic entity identification and relationship integration in large scale text data.,2016,64,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs64.html#WangLLF16,https://doi.org/10.1016/j.future.2015.08.003 +Dora Blanco Heras,Modeling and improving locality for the sparse-matrix-vector product on cache memories.,2001,18,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs18.html#HerasBCR01,https://doi.org/10.1016/S0167-739X(00)00075-3 +Ming Tang,Dynamic replication algorithms for the multi-tier Data Grid.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#TangLYT05,https://doi.org/10.1016/j.future.2004.08.001 +Ralf Gruber,Parameterisation to tailor commodity clusters to applications.,2003,19,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs19.html#GruberVVST03,https://doi.org/10.1016/S0167-739X(02)00105-X +Ligang He,Developing resource consolidation frameworks for moldable virtual machines in clouds.,2014,32,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs32.html#HeZZCJJ14,https://doi.org/10.1016/j.future.2012.05.015 +Francesco Pagliarecci,Model checking grid security.,2013,29,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs29.html#PagliarecciSS13,https://doi.org/10.1016/j.future.2011.11.010 +Matteo Beccaria,High-performance road-vehicle optimised aerodynamic design: Application of parallel computing to car design.,1999,15,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs15.html#BeccariaBCLGPV99,https://doi.org/10.1016/S0167-739X(98)00077-6 +Qizhi Zhang,Optimization of virtual resource management for cloud applications to cope with traffic burst.,2016,58,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs58.html#ZhangCSML16,https://doi.org/10.1016/j.future.2015.12.011 +Bartosz Kryza,"Erratum to ""Grid organizational memory - provision of a high-level Grid abstraction layer supported by ontology alignment"" [Future Gener. Comput. Systems 23 (2007) 348-358].",2007,23,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs23.html#KryzaSMPK07a,https://doi.org/10.1016/j.future.2006.12.005 +Juan-Antonio Rico-Gallego,Extending and#964*-Lop to model concurrent MPI communications in multicore clusters.,2016,61,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs61.html#Rico-GallegoML16,https://doi.org/10.1016/j.future.2016.02.021 +Péter Kacsuk,Special Section: Grid-enabling legacy applications and supporting end users.,2008,24,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs24.html#KacsukT08,https://doi.org/10.1016/j.future.2008.04.002 +Rob H. Bisseling,Third Utrecht Computational Science Symposium.,1996,12,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs12.html#Bisseling96,https://doi.org/10.1016/S0167-739X(97)80001-D +Jiachen Yang,Marine surveying and mapping system based on Cloud Computing and Internet of Things.,2018,85,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs85.html#YangWZ0LS18,https://doi.org/10.1016/j.future.2018.02.032 +Yu-Chen Hu,Probability-based reversible image authentication scheme for image demosaicking.,2016,62,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs62.html#HuLC16,https://doi.org/10.1016/j.future.2016.04.001 +Yi Pan 0001,Efficient and scalable quicksort on a linear array with a reconfigurable pipelined bus system.,1998,13,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs13.html#PanHL98,https://doi.org/10.1016/S0167-739X(97)00013-7 +Maciej Malawski,Invocation of operations from script-based Grid applications.,2010,26,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs26.html#MalawskiBB10,https://doi.org/10.1016/j.future.2009.05.012 +Wei-Chang Yeh,Economic-based resource allocation for reliable Grid-computing service based on Grid Bank.,2012,28,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs28.html#YehW12,https://doi.org/10.1016/j.future.2012.03.005 +Ahmed Al-Theneyan,XML-based visual specification of multidisciplinary applications.,2002,18,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs18.html#Al-TheneyanJMZ02,https://doi.org/10.1016/S0167-739X(01)00069-3 +Mohamed Abdou,A semi-automated framework for semantically annotating web content.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#AbdouAF18,https://doi.org/10.1016/j.future.2017.11.008 +George A. Vouros,A semantic information system for services and traded resources in Grid e-markets.,2010,26,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs26.html#VourosPTVKQLV10,https://doi.org/10.1016/j.future.2010.03.004 +Fei Han,Secure searches in the cloud: A survey.,2016,62,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs62.html#HanQH16,https://doi.org/10.1016/j.future.2016.01.007 +Jia Ke,The retrieval of motion event by associations of temporal frequent pattern growth.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#KeZCW13,https://doi.org/10.1016/j.future.2011.06.004 +Androniki Sapountzi,Social networking data analysis tools and challenges.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#SapountziP18,https://doi.org/10.1016/j.future.2016.10.019 +Heidemarie Wernhart,The replicator coordination design pattern.,2000,16,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs16.html#WernhartKT00,https://doi.org/10.1016/S0167-739X(99)00078-3 +Alexandre Denis,PadicoTM: an open integration framework for communication middleware and run*.,2003,19,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs19.html#DenisPP03,https://doi.org/10.1016/S0167-739X(03)00034-7 +Victor E. Malyshkin,Parallel computing technologies.,2001,17,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs17.html#Malyshkin01,https://doi.org/10.1016/S0167-739X(00)00049-2 +Sebastien Soudan,Flow scheduling and endpoint rate control in GridNetworks.,2009,25,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs25.html#SoudanCP09,https://doi.org/10.1016/j.future.2008.06.006 +Jie Guo,Object detection among multimedia big data in the compressive measurement domain under mobile distributed architecture.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#GuoSYYY17,https://doi.org/10.1016/j.future.2017.03.004 +G. Ohlendorf,NEPTUNE: A new expert planning tool for users in a network environment.,1992,7,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs7.html#OhlendorfS92,https://doi.org/10.1016/0167-739X(92)90054-F +Enan A. Khalil,Evolutionary task allocation in Internet of Things-based application domains.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#KhalilOT18,https://doi.org/10.1016/j.future.2018.03.033 +Marco Aldinucci,An advanced environment supporting structured parallel programming in Java.,2003,19,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs19.html#AldinucciDT03,https://doi.org/10.1016/S0167-739X(02)00172-3 +Nakku Kim,Energy-credit scheduler: An energy-aware virtual machine scheduler for cloud systems.,2014,32,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs32.html#KimCS14,https://doi.org/10.1016/j.future.2012.05.019 +Paolo Mori,Computational science in high schools: defining curricula and environments.,2003,19,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs19.html#MoriR03,https://doi.org/10.1016/S0167-739X(03)00092-X +Seonghoon Moon,Adaptive interface selection over cloud-based split-layer video streaming via multi-wireless networks.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#MoonYK16,https://doi.org/10.1016/j.future.2015.09.022 +Prem Prakash Jayaraman,Privacy preserving Internet of Things: From privacy techniques to a blueprint architecture and efficient implementation.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#JayaramanYYGY17,https://doi.org/10.1016/j.future.2017.03.001 +Kanae Matsui,An information provision system to promote energy conservation and maintain indoor comfort in smart homes using sensed data by IoT sensors.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#Matsui18,https://doi.org/10.1016/j.future.2017.10.043 +Jing Zhou,A mechanism for grid service composition behavior specification and verification.,2009,25,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs25.html#ZhouZ09,https://doi.org/10.1016/j.future.2008.02.013 +Thomas C. Schmidt,Global serverless videoconferencing over IP.,2003,19,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs19.html#SchmidtWCP03,https://doi.org/10.1016/S0167-739X(02)00148-6 +Stephen Pickles,Metacomputing across intercontinental networks.,2001,17,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs17.html#PicklesBCGMRO01,https://doi.org/10.1016/S0167-739X(01)00032-2 +Yongzhi Wang,Toward integrity assurance of outsourced computing - a game theoretic perspective.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#WangWRS16,https://doi.org/10.1016/j.future.2015.08.010 +Hai Zhuge,Special section: Semantic grid and knowledge grid.,2007,23,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs23.html#Zhuge07,https://doi.org/10.1016/j.future.2006.07.015 +Justin T. Rough,The development of an efficient checkpointing facility exploiting operating systems services of the GENESIS cluster operating system.,2004,20,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs20.html#RoughG04,https://doi.org/10.1016/S0167-739X(03)00171-7 +Wongoo Lee,Design and implementation of secure e-mail system using elliptic curve cryptosystem.,2004,20,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs20.html#LeeL04,https://doi.org/10.1016/S0167-739X(03)00147-X +Awais Ahmad,Smart cyber society: Integration of capillary devices with high usability based on Cyber-Physical System.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#AhmadPRC16,https://doi.org/10.1016/j.future.2015.08.004 +Flora Amato,Exploiting Cloud and Workflow Patterns for the Analysis of Composite Cloud Services.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#AmatoM17,https://doi.org/10.1016/j.future.2016.06.035 +Rodrigo N. Calheiros,The Aneka platform and QoS-driven resource provisioning for elastic applications on hybrid Clouds.,2012,28,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs28.html#CalheirosVKB12,https://doi.org/10.1016/j.future.2011.07.005 +Rodrigo Surmas,Lattice Boltzmann simulation of the flow interference in bluff body wakes.,2004,20,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs20.html#SurmasSP04,https://doi.org/10.1016/j.future.2003.12.007 +M. Shamim Hossain,Cloud-assisted secure video transmission and sharing framework for smart cities.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#HossainMASG18,https://doi.org/10.1016/j.future.2017.03.029 +Junaid Shuja,Case of ARM emulation optimization for offloading mechanisms in Mobile Cloud Computing.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#ShujaGNAH17,https://doi.org/10.1016/j.future.2016.05.037 +Hans Z. Munthe-Kaas,On enumeration problems in Lie-Butcher theory.,2003,19,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs19.html#Munthe-KaasK03,https://doi.org/10.1016/S0167-739X(03)00045-1 +Evgueni Dodonov,A novel approach for distributed application scheduling based on prediction of communication events.,2010,26,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs26.html#DodonovM10,https://doi.org/10.1016/j.future.2009.05.004 +Peijie Huang,Static strategy and dynamic adjustment: An effective method for Grid task scheduling.,2009,25,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs25.html#HuangPLL09,https://doi.org/10.1016/j.future.2009.03.005 +Robert L. Grossman,Compute and storage clouds using wide area high performance networks.,2009,25,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs25.html#GrossmanGSZ09,https://doi.org/10.1016/j.future.2008.07.009 +Xicheng Lu,Internet-based Virtual Computing Environment: Beyond the data center as a computer.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#LuWWXL13,https://doi.org/10.1016/j.future.2011.08.005 +Zhidong Jia,A parallel multiple time-scale reversible integrator for dynamics simulation.,2003,19,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs19.html#JiaL03,https://doi.org/10.1016/S0167-739X(02)00168-1 +Bartosz Kryza,Grid organizational memory - provision of a high-level Grid abstraction layer supported by ontology alignment.,2007,23,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs23.html#KryzaSMPK07,https://doi.org/10.1016/j.future.2006.07.001 +Tai-Hoon Kim,Special section: Grid/distributed computing systems security.,2009,25,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs25.html#KimF09,https://doi.org/10.1016/j.future.2008.10.001 +Vitor Horta,Analyzing scientific context of researchers and communities by using complex network and semantic technologies.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#HortaSBDC18,https://doi.org/10.1016/j.future.2018.07.012 +Unai Aguilera,Citizen-centric data services for smarter cities.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#AguileraPBL17,https://doi.org/10.1016/j.future.2016.10.031 +Nicolas Monmarché,On how Pachycondyla apicalis ants suggest a new search algorithm.,2000,16,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs16.html#MonmarcheVS00,https://doi.org/10.1016/S0167-739X(00)00047-9 +Haleem Farman,Multi-criteria based zone head selection in Internet of Things based wireless sensor networks.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#FarmanJJAIAA18,https://doi.org/10.1016/j.future.2018.04.091 +Gretchen Greene,Development of the astronomical image archive and catalog database for production of GSC-II.,1999,16,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs16.html#GreeneML99,https://doi.org/10.1016/S0167-739X(99)00033-3 +Robert I. McLachlan,Lie group foliations: dynamical systems and integrators.,2003,19,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs19.html#McLachlanPQ03,https://doi.org/10.1016/S0167-739X(03)00046-3 +DaeWoo Lee,Large-scale incremental processing with MapReduce.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#LeeKM14,https://doi.org/10.1016/j.future.2013.09.010 +Shakti Mishra,Hybrid reliable load balancing with MOSIX as middleware and its formal verification using process algebra.,2011,27,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs27.html#MishraKM11,https://doi.org/10.1016/j.future.2010.12.007 +Yanling Lian,SA3: Self-adaptive anonymous authentication for dynamic authentication policies.,2014,30,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs30.html#LianHM14,https://doi.org/10.1016/j.future.2013.06.007 +Anne Benoit,Scheduling linear chain streaming applications on heterogeneous systems with failures.,2013,29,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs29.html#BenoitDNP13,https://doi.org/10.1016/j.future.2012.12.015 +Pengcheng Wei,Research on security of information sharing in Internet of Things based on key algorithm.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#WeiZ18,https://doi.org/10.1016/j.future.2018.04.035 +Weng-Long Chang,Towards solution of the set-splitting problem on gel-based DNA computing.,2004,20,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs20.html#ChangGH04,https://doi.org/10.1016/j.future.2003.10.010 +Peter Brezany,A generic interface for parallel access to large data sets from HPF applications.,2001,17,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs17.html#BrezanyCW01,https://doi.org/10.1016/S0167-739X(01)00040-1 +Zhendong Bei,Configuring in-memory cluster computing using random forest.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#BeiYLJXF18,https://doi.org/10.1016/j.future.2017.08.011 +Maria Lin,GECEM: A portal-based Grid application for computational electromagnetics.,2008,24,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs24.html#LinW08,https://doi.org/10.1016/j.future.2007.02.003 +M. Ambigavathi,Energy efficient and load balanced priority queue algorithm for Wireless Body Area Network.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#AmbigavathiS18,https://doi.org/10.1016/j.future.2018.05.044 +Bahman Javadi,Multi-cluster computing interconnection network performance modeling and analysis.,2009,25,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs25.html#JavadiAA09,https://doi.org/10.1016/j.future.2008.07.010 +Houda Lamehamedi,Decentralized data management framework for Data Grids.,2007,23,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs23.html#LamehamediS07,https://doi.org/10.1016/j.future.2006.06.005 +Martin Guggisberg,An interdisciplinary virtual laboratory on nanoscience.,2003,19,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs19.html#GuggisbergFGB03,https://doi.org/10.1016/S0167-739X(02)00107-3 +Sheng Uei Guan,Pseudorandom number generation based on controllable cellular automata.,2004,20,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs20.html#GuanZ04,https://doi.org/10.1016/S0167-739X(03)00128-6 +Christine Morin,Towards an efficient single system image cluster operating system.,2004,20,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs20.html#MorinGLV04,https://doi.org/10.1016/S0167-739X(03)00170-5 +Yueming Hu,Approaches to decentralized control of job scheduling for homogeneous and heterogeneous parallel computer systems.,1990,6,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs6.html#HuXL90,https://doi.org/10.1016/0167-739X(90)90014-5 +Xianzhang Chen,Refinery swap: An efficient swap mechanism for hybrid DRAM-NVM systems.,2017,77,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs77.html#ChenSJYWZ17,https://doi.org/10.1016/j.future.2017.06.012 +Zoran Jovanovic,A heuristic algorithm for dynamic task scheduling in highly parallel computing systems.,2001,17,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs17.html#JovanovicM01,https://doi.org/10.1016/S0167-739X(00)00055-8 +Syed Bilal Hussain Shah,Energy and interoperable aware routing for throughput optimization in clustered IoT-wireless sensor networks.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#ShahCYKA18,https://doi.org/10.1016/j.future.2017.09.043 +Mei Wang,A hybrid index for temporal big data.,2017,72,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs72.html#WangXPL17,https://doi.org/10.1016/j.future.2016.08.002 +M. Aigrain,The technological perspective.,1986,2,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs2.html#Aigrain86,https://doi.org/10.1016/0167-739X(86)90034-8 +Jason Wimmer,Analysing environmental acoustic data through collaboration and automation.,2013,29,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs29.html#WimmerTPWR13,https://doi.org/10.1016/j.future.2012.03.004 +René Brunner,Network-aware summarisation for resource discovery in P2P-content networks.,2012,28,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs28.html#BrunnerCRFN12,https://doi.org/10.1016/j.future.2011.03.004 +Michal P. Karpowicz,Design and implementation of energy-aware application-specific CPU frequency governors for the heterogeneous distributed computing systems.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#KarpowiczAN18,https://doi.org/10.1016/j.future.2016.05.011 +S. Rosswog,Computational aspects in traffic simulation problems.,2001,17,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs17.html#RosswogGHBW01,https://doi.org/10.1016/S0167-739X(00)00034-0 +J. Beer,POPE - a parallel-operating prolog engine.,1987,3,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs3.html#BeerG87,https://doi.org/10.1016/0167-739X(87)90001-X +Seif Haridi,Structural operational semantics for AKL.,1992,8,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs8.html#HaridiJP92,https://doi.org/10.1016/0167-739X(92)90072-J +Jin Li 0002,Digital provenance: Enabling secure data forensics in cloud computing.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#00020HW14,https://doi.org/10.1016/j.future.2013.10.006 +Cornelis Vuik,A parallel block-preconditioned GCR method for incompressible flow problems.,2001,18,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs18.html#VuikFS01,https://doi.org/10.1016/S0167-739X(00)00073-X +Sanjukta Bhowmick,Faster PDE-based simulations using robust composite linear solvers.,2004,20,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs20.html#BhowmickRMN04,https://doi.org/10.1016/j.future.2003.07.012 +Yufeng Wang,A novel ITö Algorithm for influence maximization in the large-scale social networks.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#WangDD18,https://doi.org/10.1016/j.future.2018.04.026 +Lizhe Wang,pipsCloud: High performance cloud computing for remote sensing big data management and processing.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#WangMYCZ18,https://doi.org/10.1016/j.future.2016.06.009 +Shihong Yao,An efficient joint compression and sparsity estimation matching pursuit algorithm for artificial intelligence application.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#YaoZWG18,https://doi.org/10.1016/j.future.2018.04.039 +Vignesh T. Ravi,Scheduling concurrent applications on a cluster of CPU-GPU nodes.,2013,29,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs29.html#RaviBJAC13,https://doi.org/10.1016/j.future.2013.06.002 +Antonio J. Rubio-Montero,GWpilot: Enabling multi-level scheduling in distributed infrastructures with GridWay and pilot jobs.,2015,45,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs45.html#Rubio-MonteroHC15,https://doi.org/10.1016/j.future.2014.10.003 +Xiong Luo,A kernel machine-based secure data sensing and fusion scheme in wireless sensor networks for the cyber-physical systems.,2016,61,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs61.html#LuoZYLCN16,https://doi.org/10.1016/j.future.2015.10.022 +Paola Belanzoni,A theoretical approach to molecular batteries: C---C bonds functioning as electron shuttles.,2004,20,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs20.html#BelanzoniRS04,https://doi.org/10.1016/j.future.2003.11.019 +Pradip Kumar Sharma,Blockchain based hybrid network architecture for the smart city.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#SharmaP18,https://doi.org/10.1016/j.future.2018.04.060 +,FY 1986 research projects sponsored by the National Science Foundation.,1987,3,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs3.html#X87,https://doi.org/10.1016/0167-739X(87)90005-7 +Brian E. Moore,Multi-symplectic integration methods for Hamiltonian PDEs.,2003,19,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs19.html#MooreR03,https://doi.org/10.1016/S0167-739X(02)00166-8 +Keqin Li 0001,Analysis of file download time in peer-to-peer networks with stochastic and time-varying service capacities.,2015,42,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs42.html#Li15,https://doi.org/10.1016/j.future.2014.09.003 +Jian Liu 0007,Secure intelligent traffic light control using fog computing.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#LiuLZDZMS18,https://doi.org/10.1016/j.future.2017.02.017 +Paul Allen,Monitoring and modelling tools for high performance database systems.,1995,11,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs11.html#AllenCU95,https://doi.org/10.1016/0167-739X(94)00061-I +Antonio Fernandez Gómez-Skarmeta,New security services based on PKI.,2003,19,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs19.html#GomezMR03,https://doi.org/10.1016/S0167-739X(02)00151-6 +Guizhong Liu,An ordered model combining dataflow with control flow and its implementation.,1990,6,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs6.html#LiuC90,https://doi.org/10.1016/0167-739X(90)90013-4 +George A. Gravvanis,Special Issue: Recent trends in cloud computing.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#GravvanisMPLF18,https://doi.org/10.1016/j.future.2017.11.006 +Meikang Qiu,Privacy-preserving wireless communications using bipartite matching in social big data.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#QiuGX18,https://doi.org/10.1016/j.future.2017.08.004 +Mario Cannataro 0001,Special section: Biomedical and bioinformatics challenges to computer science.,2010,26,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs26.html#CannataroRSS10,https://doi.org/10.1016/j.future.2009.10.002 +Yunya Zhou,Identity-based proxy re-encryption version 2: Making mobile access easy in cloud.,2016,62,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs62.html#ZhouDWQLD16,https://doi.org/10.1016/j.future.2015.09.027 +Juthasit Rohitratana,Impact of pricing schemes on a market for Software-as-a-Service and perpetual software.,2012,28,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs28.html#RohitratanaA12,https://doi.org/10.1016/j.future.2012.03.019 +Sonja Holl,A new optimization phase for scientific workflow management systems.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#HollZPMH14,https://doi.org/10.1016/j.future.2013.09.005 +Bin Cao 0005,Distributed parallel cooperative coevolutionary multi-objective large-scale immune algorithm for deployment of wireless sensor networks.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#CaoZYLLKYKA18,https://doi.org/10.1016/j.future.2017.10.015 +Yoshihiko Nitta,Problems of machine translation systems: Effect of cultural differences on sentence structure.,1986,2,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs2.html#Nitta86,https://doi.org/10.1016/0167-739X(86)90004-X +Saurabh Kumar Garg,Cloud computing based bushfire prediction for cyber-physical emergency applications.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#GargAWSKR18,https://doi.org/10.1016/j.future.2017.02.009 +Suzhen Wu,DAC: Improving storage availability with Deduplication-Assisted Cloud-of-Clouds.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#WuLML17,https://doi.org/10.1016/j.future.2016.02.001 +Steffan Berridge,An irregular grid method for high-dimensional free-boundary problems in finance.,2004,20,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs20.html#BerridgeS04,https://doi.org/10.1016/j.future.2003.07.002 +Daniel Grzonka,Using a multi-agent system and artificial intelligence for monitoring and improving the cloud performance and security.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#GrzonkaJKP18,https://doi.org/10.1016/j.future.2017.05.046 +Fengjun Shang,Service-aware adaptive link load balancing mechanism for Software-Defined Networking.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#ShangMG18,https://doi.org/10.1016/j.future.2017.08.015 +Dan Grigoras,Cost-effective mobile ad hoc networks management.,2007,23,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs23.html#GrigorasR07,https://doi.org/10.1016/j.future.2007.04.001 +Mahsa Teimourikia,Ontology development for run-time safety management methodology in Smart Work Environments using ambient knowledge.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#TeimourikiaF17,https://doi.org/10.1016/j.future.2016.07.003 +Agostino G. Bruzzone,Web-based simulation: Best of Websim99.,2001,17,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs17.html#Bruzzone01,https://doi.org/10.1016/S0167-739X(00)00035-2 +Olivier Martin,The DataTAG transatlantic testbed.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#MartinMMMNRN05,https://doi.org/10.1016/j.future.2004.10.011 +Yongfeng Qian,AIEM: AI-enabled affective experience management.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#QianLMJJS18,https://doi.org/10.1016/j.future.2018.06.044 +Christophe Cérin,On a scheme for parallel sorting on heterogeneous clusters.,2002,18,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs18.html#CerinG02,https://doi.org/10.1016/S0167-739X(01)00056-5 +M. A. Kraeva,Assembly technology for parallel realization of numerical models on MIMD-multicomputers.,2001,17,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs17.html#KraevaM01,https://doi.org/10.1016/S0167-739X(00)00058-3 +Johan Tordsson,Cloud brokering mechanisms for optimized placement of virtual machines across multiple providers.,2012,28,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs28.html#TordssonMML12,https://doi.org/10.1016/j.future.2011.07.003 +Renato L. F. Cunha,Job placement advisor based on turnaround predictions for HPC hybrid clouds.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#CunhaRTN17,https://doi.org/10.1016/j.future.2016.08.010 +Yang Xiang 0001,Special Section: Trusted computing.,2011,27,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs27.html#XiangZ11,https://doi.org/10.1016/j.future.2010.11.016 +Syed Ali Raza Shah,Performance comparison of intrusion detection systems and application of machine learning to Snort system.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#ShahI18,https://doi.org/10.1016/j.future.2017.10.016 +Javier Espadas,A tenant-based resource allocation model for scaling Software-as-a-Service applications over cloud computing infrastructures.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#EspadasMJMRC13,https://doi.org/10.1016/j.future.2011.10.013 +Liang Zhang 0009,mdtmFTP and its evaluation on ESNET SDN testbed.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#ZhangWDP18,https://doi.org/10.1016/j.future.2017.04.024 +Salekul Islam,Giving users an edge: A flexible Cloud model and its application for multimedia.,2012,28,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs28.html#IslamG12,https://doi.org/10.1016/j.future.2012.01.002 +Iñigo Goiri,Energy-efficient and multifaceted resource management for profit-driven virtualized data centers.,2012,28,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs28.html#GoiriBFJNGGT12,https://doi.org/10.1016/j.future.2011.12.002 +Tan Li,Analysis of NUMA effects in modern multicore systems for the design of high-performance data transfer applications.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#LiRYJ17,https://doi.org/10.1016/j.future.2017.04.001 +Zehong Chen,Verifiable keyword search for secure big data-based mobile healthcare networks with fine-grained authorization control.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#ChenZZLHZS18,https://doi.org/10.1016/j.future.2017.10.022 +Louis Vuurpijl,Performance prediction of large MIMD systems for parallel neural network simulations.,1995,11,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs11.html#VuurpijlSV95,https://doi.org/10.1016/0167-739X(94)00064-L +Benjamin Aziz,Verifying a delegation protocol for grid systems.,2011,27,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs27.html#AzizH11,https://doi.org/10.1016/j.future.2010.12.003 +Péter Kacsuk,Systematic macrostep debugging of message passing parallel programs.,2000,16,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs16.html#Kacsuk00,https://doi.org/10.1016/S0167-739X(99)00074-6 +Bong-Hwan Lee,Design and implementation of MPlambdaS network simulator.,2004,20,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs20.html#LeeJY04,https://doi.org/10.1016/S0167-739X(03)00149-3 +Shang-Pin Ma,QoS-aware query relaxation for service discovery with business rules.,2016,60,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs60.html#MaCLML16,https://doi.org/10.1016/j.future.2016.01.011 +Peter M. A. Sloot,Preface.,2005,21,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs21.html#Sloot05,https://doi.org/10.1016/j.future.2004.09.015 +Luc Bougé,Control structures for data-parallel SIMD languages: semantics and implementation.,1992,8,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs8.html#BougeL92,https://doi.org/10.1016/0167-739X(92)90069-N +Mais Nijim,An adaptive energy-conserving strategy for parallel disk systems.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#NijimQQL13,https://doi.org/10.1016/j.future.2012.05.003 +Ibrahim Ghafir,Detection of advanced persistent threat using machine-learning correlation analysis.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#GhafirHPHHRA18,https://doi.org/10.1016/j.future.2018.06.055 +Somnath Mazumdar,Power efficient server consolidation for Cloud data center.,2017,70,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs70.html#MazumdarP17,https://doi.org/10.1016/j.future.2016.12.022 +Oliver Bröker,Using Python for large scale linear algebra applications.,2005,21,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs21.html#BrokerCG05,https://doi.org/10.1016/j.future.2005.02.001 +Feng Zhang,Examination of load-balancing methods to improve efficiency of a composite materials manufacturing process simulation under uncertainty using distributed computing.,2006,22,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs22.html#ZhangMSPA06,https://doi.org/10.1016/j.future.2005.10.004 +Hervé Gallaire,ECRC: A joint industrial research centre.,1987,3,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs3.html#Gallaire87,https://doi.org/10.1016/0167-739X(87)90032-X +Rajkumar Kettimuthu,Transferring a petabyte in a day.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#KettimuthuLWFHC18,https://doi.org/10.1016/j.future.2018.05.051 +Simon G. M. Koo,On neighbor-selection strategy in hybrid peer-to-peer networks.,2006,22,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs22.html#KooKL06,https://doi.org/10.1016/j.future.2006.02.015 +Jorge Veiga,Flame-MR: An event-driven architecture for MapReduce applications.,2016,65,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs65.html#VeigaETT16,https://doi.org/10.1016/j.future.2016.06.006 +Wang-Chien Lee,Special Section: Scalable information systems.,2009,25,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs25.html#LeeXLS09,https://doi.org/10.1016/j.future.2008.07.012 +Michael Maurer,Adaptive resource configuration for Cloud infrastructure management.,2013,29,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs29.html#MaurerBS13,https://doi.org/10.1016/j.future.2012.07.004 +Grzegorz Chmaj,A P2P computing system for overlay networks.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#ChmajW13,https://doi.org/10.1016/j.future.2010.11.009 +Giuseppe Pirrò,A DHT-based semantic overlay network for service discovery.,2012,28,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs28.html#PirroTT12,https://doi.org/10.1016/j.future.2011.11.007 +Zulfiqar Ali,Chaos-based robust method of zero-watermarking for medical signals.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#AliIASU18,https://doi.org/10.1016/j.future.2018.05.058 +Stéphane Lanteri,Unstructured CFD computations on the KSR-1: Preliminary results.,1995,11,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs11.html#LanteriF95,https://doi.org/10.1016/0167-739X(94)00045-G +Xun Shao,An efficient load-balancing mechanism for heterogeneous range-queriable cloud storage.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#ShaoJTN18,https://doi.org/10.1016/j.future.2017.07.053 +John H. Merlin,Multiple data parallelism with HPF and KeLP.,1999,15,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs15.html#MerlinBFC99,https://doi.org/10.1016/S0167-739X(98)00083-1 +Nuno Diegues,Bumper: Sheltering distributed transactions from conflicts.,2015,51,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs51.html#DieguesR15,https://doi.org/10.1016/j.future.2015.04.002 +Christian Javier D'Orazio,A technique to circumvent SSL/TLS validations on iOS devices.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#DOrazioC17,https://doi.org/10.1016/j.future.2016.08.019 +Aleksandar Antonic,A mobile crowd sensing ecosystem enabled by CUPUS: Cloud-based publish/subscribe middleware for the Internet of Things.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#AntonicMPZ16,https://doi.org/10.1016/j.future.2015.08.005 +Gerold Wesche,Three-dimensional visualization of fluid dynamics on the Responsive Workbench.,1999,15,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs15.html#Wesche99,https://doi.org/10.1016/S0167-739X(99)00003-5 +Ahlem Kalaï,Social collaborative service recommendation approach based on user's trust and domain-specific expertise.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#KalaiZAAS18,https://doi.org/10.1016/j.future.2017.05.036 +Dang Minh Quan,T-Alloc: A practical energy efficient resource allocation algorithm for traditional data centers.,2012,28,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs28.html#QuanMSG12,https://doi.org/10.1016/j.future.2011.04.020 +Nadia Nedjah,Efficient yet robust biometric iris matching on smart cards for data high security and privacy.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#NedjahWMG17,https://doi.org/10.1016/j.future.2017.05.008 +Krishnaprasad Thirunarayan,Comparative trust management with applications: Bayesian approaches emphasis.,2014,31,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs31.html#ThirunarayanAHS14,https://doi.org/10.1016/j.future.2013.05.006 +Seng Wai Loke,Supporting ubiquitous sensor-cloudlets and context-cloudlets: Programming compositions of context-aware systems for mobile users.,2012,28,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs28.html#Loke12,https://doi.org/10.1016/j.future.2011.09.004 +Michael J. North,Oh behave! Agent-based behavioral representations in problem solving environments.,2005,21,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs21.html#NorthMC05,https://doi.org/10.1016/j.future.2004.04.006 +María S. Pérez,Special section: Security on grids and distributed systems.,2007,23,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs23.html#PerezX07,https://doi.org/10.1016/j.future.2007.02.001 +Rajkumar Buyya,Cluster computing.,2002,18,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs18.html#BuyyaJC02,https://doi.org/10.1016/S0167-739X(01)00053-X +Markus H. Gross,Compression methods for visualization.,1999,15,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs15.html#GrossLS99,https://doi.org/10.1016/S0167-739X(98)00053-3 +Jason J. Jung,Computational Collective Intelligence with Big Data: Challenges and Opportunities.,2017,66,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs66.html#Jung17,https://doi.org/10.1016/j.future.2016.08.021 +Brijesh Kashyap Chejerla,QoS guaranteeing robust scheduling in attack resilient cloud integrated cyber physical system.,2017,75,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs75.html#ChejerlaM17,https://doi.org/10.1016/j.future.2017.02.034 +Stefania Bandini,Controlled generation of two-dimensional patterns based on Stochastic Cellular Automata.,2002,18,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs18.html#BandiniP02,https://doi.org/10.1016/S0167-739X(02)00076-6 +Maozhen Li,PGGA: A predictable and grouped genetic algorithm for job scheduling.,2006,22,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs22.html#LiYQ06,https://doi.org/10.1016/j.future.2005.09.001 +Rafael Moreno-Vozmediano,A hybrid mechanism for resource/service discovery in ad-hoc grids.,2009,25,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs25.html#Moreno-Vozmediano09,https://doi.org/10.1016/j.future.2008.02.002 +Alberto Faro,Mining massive datasets by an unsupervised parallel clustering on a GRID: Novel algorithms and case study.,2011,27,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs27.html#FaroGM11,https://doi.org/10.1016/j.future.2011.01.002 +Chang Liu 0001,CCBKE - Session key negotiation for fast and secure scheduling of scientific applications in cloud computing.,2013,29,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs29.html#LiuZYC13,https://doi.org/10.1016/j.future.2012.07.001 +Chih-Yu Hsu,Automatic extraction of face contours in images and videos.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#HsuWWT12,https://doi.org/10.1016/j.future.2010.11.008 +Wolfgang K. Giloi,Advanced object oriented architectures.,1985,1,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs1.html#Giloi85,https://doi.org/10.1016/0167-739X(85)90018-4 +Alois Ferscha,Distributed simulation performance data mining.,2001,18,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs18.html#FerschaJT01,https://doi.org/10.1016/S0167-739X(01)00050-4 +Junping Xie,Rule acquisition and optimal scale selection in multi-scale formal decision contexts and their applications to smart city.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#XieYLZ18,https://doi.org/10.1016/j.future.2017.03.011 +P. J. Mitchell,Multicomputer molecular dynamics.,1993,9,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs9.html#MitchellF93,https://doi.org/10.1016/0167-739X(93)90020-P +Freek Dijkstra,A path finding implementation for multi-layer networks.,2009,25,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs25.html#DijkstraHGL09,https://doi.org/10.1016/j.future.2008.07.002 +Xinhua Dong,EDS: An Efficient Data Selection policy for search engine storage architectures.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#DongLHGSQL17,https://doi.org/10.1016/j.future.2016.02.014 +Ting Yi Chang,A threshold signature scheme for group communications without a shared distribution center.,2004,20,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs20.html#ChangYH04,https://doi.org/10.1016/j.future.2003.09.005 +Xiaoqun Yuan,A game theory-based dynamic resource allocation strategy in Geo-distributed Datacenter Clouds.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#YuanMYDF17,https://doi.org/10.1016/j.future.2017.04.046 +Katia Leal,Self-adjusting resource sharing policies in Federated Grids.,2013,29,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs29.html#Leal13,https://doi.org/10.1016/j.future.2012.07.005 +U. Rajendra Acharya,Automated identification of shockable and non-shockable life-threatening ventricular arrhythmias using convolutional neural network.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#AcharyaFORTAGH18,https://doi.org/10.1016/j.future.2017.08.039 +Joarder Kamal,Workload-aware incremental repartitioning of shared-nothing distributed databases for scalable OLTP applications.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#KamalMB16,https://doi.org/10.1016/j.future.2015.09.024 +Raúl Gracia Tinedo,Giving wings to your data: A first experience of Personal Cloud interoperability.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#TinedoCZOMALSGI18,https://doi.org/10.1016/j.future.2017.01.027 +Lei Yang 0018,Hardware-software collaboration for dark silicon heterogeneous many-core systems.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#YangLJCLCS17,https://doi.org/10.1016/j.future.2016.09.012 +Adil Fahad,An optimal and stable feature selection approach for traffic classification based on multi-criterion fusion.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#FahadTKAZ14,https://doi.org/10.1016/j.future.2013.09.015 +Robert Preissl,Transforming MPI source code based on communication patterns.,2010,26,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs26.html#PreisslSKSQ10,https://doi.org/10.1016/j.future.2009.05.017 +Tom Dhaene,Self-organizing multivariate constrained meta-modeling technique for passive microwave and RF components.,2005,21,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs21.html#DhaeneG05,https://doi.org/10.1016/j.future.2004.03.004 +Chih-Tien Fan,VM instance selection for deadline constraint job on agent-based interconnected cloud.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#FanCY18,https://doi.org/10.1016/j.future.2018.04.017 +Matthew Malensek,Exploiting geospatial and chronological characteristics in data streams to enable efficient storage and retrievals.,2013,29,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs29.html#MalensekPP13,https://doi.org/10.1016/j.future.2012.05.024 +Timo Betcke,A Jacobi-Davidson-type projection method for nonlinear eigenvalue problems.,2004,20,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs20.html#BetckeV04,https://doi.org/10.1016/j.future.2003.07.003 +Zhiming Zhao,Special section on workflow systems and applications in e-Science.,2009,25,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs25.html#ZhaoBB09,https://doi.org/10.1016/j.future.2008.10.011 +Vassilios C. Vescoukis,A service oriented architecture for decision support systems in environmental crisis management.,2012,28,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs28.html#VescoukisDK12,https://doi.org/10.1016/j.future.2011.03.010 +Randy L. Ribler,The Autopilot performance-directed adaptive control system.,2001,18,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs18.html#RiblerSR01,https://doi.org/10.1016/S0167-739X(01)00051-6 +Ruay Shiung Chang,A multiple parallel download scheme with server throughput and client bandwidth considerations for data grids.,2008,24,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs24.html#ChangGL08,https://doi.org/10.1016/j.future.2008.04.006 +Ali Afzal,Capacity planning and scheduling in Grid computing environments.,2008,24,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs24.html#AfzalMD08,https://doi.org/10.1016/j.future.2007.07.004 +Jiri Halak,Real-time long-distance transfer of uncompressed 4K video for remote collaboration.,2011,27,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs27.html#HalakKUZN11,https://doi.org/10.1016/j.future.2010.11.014 +Tristan Glatard,A Service-Oriented Architecture enabling dynamic service grouping for optimizing distributed workflow execution.,2008,24,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs24.html#GlatardMEL08,https://doi.org/10.1016/j.future.2008.02.011 +Dionisis Margaris,Query personalization using social network information and collaborative filtering techniques.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#MargarisVG18,https://doi.org/10.1016/j.future.2017.03.015 +Yunbo Li,End-to-end energy models for Edge Cloud-based IoT platforms: Application to data stream analysis in IoT.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#LiORAPM18,https://doi.org/10.1016/j.future.2017.12.048 +Francisco José Esteban 0002,Direct approaches to exploit many-core architecture in bioinformatics.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#EstebanDHCDG13,https://doi.org/10.1016/j.future.2012.03.018 +Roberto Alfieri,The INFN-Grid Testbed.,2005,21,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs21.html#AlfieriBBCCCCdDFFGGGILLMMMRSSSSTTVVF05,https://doi.org/10.1016/j.future.2003.10.002 +Dimitrios Zissis,Addressing cloud computing security issues.,2012,28,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs28.html#ZissisL12,https://doi.org/10.1016/j.future.2010.12.006 +Mario Cannataro 0001,Distributed data mining on the grid.,2002,18,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs18.html#CannataroTT02,https://doi.org/10.1016/S0167-739X(02)00088-2 +Giuseppe Ateniese,Entangled cloud storage.,2016,62,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs62.html#AtenieseDDV16,https://doi.org/10.1016/j.future.2016.01.008 +Juan Manuel Marín Pérez,Semantic-based authorization architecture for Grid.,2011,27,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs27.html#PerezBCCPG11,https://doi.org/10.1016/j.future.2010.07.008 +Takashi Shimizu,International real-time streaming of 4K digital cinema.,2006,22,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs22.html#ShimizuSTMOTIYFOOAHOWBDFBMHDOS06,https://doi.org/10.1016/j.future.2006.04.001 +Ronald van der Pol,Assessment of SDN technology for an easy-to-use VPN service.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#PolGZRK16,https://doi.org/10.1016/j.future.2015.09.010 +Danilo Ardagna,Context-aware data quality assessment for big data.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#ArdagnaCSV18,https://doi.org/10.1016/j.future.2018.07.014 +Touraj Laleh,Constraint verification failure recovery in web service composition.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#LalehPMY18,https://doi.org/10.1016/j.future.2018.06.037 +Nivethitha Somu,A trust centric optimal service ranking approach for cloud service selection.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#SomuRKS18,https://doi.org/10.1016/j.future.2018.04.033 +Sergio Briguglio,Parallelization of plasma simulation codes: gridless finite size particle versus particle in cell approach.,2000,16,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs16.html#BriguglioVMF00,https://doi.org/10.1016/S0167-739X(99)00125-9 +Kei Kobayashi,Crystal Voronoi diagram and its applications.,2002,18,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs18.html#KobayashiS02,https://doi.org/10.1016/S0167-739X(02)00033-X +J. Harshan,DiVers: An erasure code based storage architecture for versioning exploiting sparsity.,2016,59,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs59.html#HarshanDO16,https://doi.org/10.1016/j.future.2016.01.005 +Amin Shokripour,New method for scheduling heterogeneous multi-installment systems.,2012,28,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs28.html#ShokripourOIS12,https://doi.org/10.1016/j.future.2012.03.008 +Zhongjin Li,A security and cost aware scheduling algorithm for heterogeneous tasks of scientific workflow in clouds.,2016,65,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs65.html#LiGYHHHL16,https://doi.org/10.1016/j.future.2015.12.014 +John Clark,Compromise through USB-based Hardware Trojan Horse device.,2011,27,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs27.html#ClarkLK11,https://doi.org/10.1016/j.future.2010.04.008 +Andrew Grant,MeikUS 92.,1993,9,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs9.html#GrantD93,https://doi.org/10.1016/0167-739X(93)90019-L +Ruay-Shiung Chang,Special Section: Future Generation Information Technology.,2011,27,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs27.html#ChangK11,https://doi.org/10.1016/j.future.2010.10.017 +Alfonso Farruggia,A text based indexing system for mammographic image retrieval and classification.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#FarruggiaMV14,https://doi.org/10.1016/j.future.2014.02.008 +Patrick Geoffray,OPIOM: Off-Processor I/O with Myrinet.,2002,18,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs18.html#Geoffray02,https://doi.org/10.1016/S0167-739X(01)00074-7 +David Abramson,Debugging scientific applications in the .NET Framework.,2003,19,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs19.html#AbramsonW03,https://doi.org/10.1016/S0167-739X(02)00176-0 +Nicoletta Dessì,COWB: A cloud-based framework supporting collaborative knowledge management within biomedical communities.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#DessiMPP16,https://doi.org/10.1016/j.future.2015.04.012 +Marcos Dias de Assunção,Impact of user patience on auto-scaling resource capacity for cloud services.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#AssuncaoCNC16,https://doi.org/10.1016/j.future.2015.09.001 +Tien-Ho Chen,Security enhancement on an improvement on two remote user authentication schemes using smart cards.,2011,27,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs27.html#ChenHS11,https://doi.org/10.1016/j.future.2010.08.007 +Robert L. Grossman,Teraflows over Gigabit WANs with UDT.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#GrossmanGHABDL05,https://doi.org/10.1016/j.future.2004.10.007 +Jesús Carretero,A hierarchical disk scheduler for multimedia systems.,2003,19,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs19.html#CarreteroFGC03,https://doi.org/10.1016/S0167-739X(02)00094-8 +Anna Kobusinska,Big Data fingerprinting information analytics for sustainability.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#KobusinskaPB18,https://doi.org/10.1016/j.future.2017.12.061 +Giuseppe Di Modica,Matchmaking semantic security policies in heterogeneous clouds.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#ModicaT16,https://doi.org/10.1016/j.future.2015.03.008 +George Fylaktopoulos,A distributed modular platform for the development of cloud based applications.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#FylaktopoulosSP18,https://doi.org/10.1016/j.future.2017.02.035 +Heather M. Liddell,High-Performance Computing and Networking Europe 1998.,1999,15,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs15.html#Liddell99,https://doi.org/10.1016/S0167-739X(98)00075-2 +Nickolay T. Trendafilov,On the l1 Procrustes problem.,2003,19,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs19.html#Trendafilov03,https://doi.org/10.1016/S0167-739X(03)00043-8 +Christophe Bastien-Thiry,SE-TC2: Telecom 2 expert system (The first expert system in a CNES Satellite Control Centre).,1993,9,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs9.html#Bastien-Thiry93,https://doi.org/10.1016/0167-739X(93)90032-K +Joachim Parrow,The expressive power of parallelism.,1990,6,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs6.html#Parrow90,https://doi.org/10.1016/0167-739X(90)90024-8 +Serafeim Zanikolas,A taxonomy of grid monitoring systems.,2005,21,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs21.html#ZanikolasS05,https://doi.org/10.1016/j.future.2004.07.002 +Kathleen Ericson,Adaptive heterogeneous language support within a cloud runtime.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#EricsonP12,https://doi.org/10.1016/j.future.2011.05.012 +Christoph Riesinger,Non-standard pseudo random number generators revisited for GPUs.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#RiesingerNR18,https://doi.org/10.1016/j.future.2016.12.018 +M. K. Kavitha Devi,Smoothing approach to alleviate the meager rating problem in collaborative recommender systems.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#DeviV13,https://doi.org/10.1016/j.future.2011.05.011 +Jesús García-Galán,Automated configuration support for infrastructure migration to the cloud.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#Garcia-GalanTRC16,https://doi.org/10.1016/j.future.2015.03.006 +Igor V. Alekseev,Modeling and traffic analysis of the adaptive rate transport protocol.,2002,18,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs18.html#AlekseevS02,https://doi.org/10.1016/S0167-739X(02)00054-7 +O-Joun Lee,Sequence Clustering-based Automated Rule Generation for Adaptive Complex Event Processing.,2017,66,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs66.html#LeeJ17,https://doi.org/10.1016/j.future.2016.02.011 +Peter Benner,Structure preservation: a challenge in computational control.,2003,19,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs19.html#BennerKM03,https://doi.org/10.1016/S0167-739X(03)00049-9 +David M. Beazley,Automated scientific software scripting with SWIG.,2003,19,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs19.html#Beazley03,https://doi.org/10.1016/S0167-739X(02)00171-1 +Wei Dai,Geo-QTI: A quality aware truthful incentive mechanism for cyber-physical enabled Geographic crowdsensing.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#DaiWJM18,https://doi.org/10.1016/j.future.2017.04.033 +Katsuhiko Yui,Application of an expert system to blast furnace operation.,1989,5,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs5.html#YuiWATN89,https://doi.org/10.1016/0167-739X(89)90032-0 +Massimo Bernaschi,A high performance simulator of the immune response.,1999,15,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs15.html#BernaschiCS99,https://doi.org/10.1016/S0167-739X(98)00078-8 +Hao Peng,Incremental term representation learning for social network analysis.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#PengBLBLHY18,https://doi.org/10.1016/j.future.2017.05.020 +Michael Scarpa,Highly interactive distributed visualization.,2006,22,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs22.html#ScarpaBSL06,https://doi.org/10.1016/j.future.2006.03.004 +Mazin Abed Mohammed,A real time computer aided object detection of nasopharyngeal carcinoma using genetic algorithm and artificial neural network based on Haar feature fear.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#MohammedGNHAB18,https://doi.org/10.1016/j.future.2018.07.022 +Radu Prodan,Specification-correct and scalable coordination of Grid applications.,2007,23,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs23.html#Prodan07,https://doi.org/10.1016/j.future.2006.09.008 +Ruben Van den Bossche,IaaS reserved contract procurement optimisation with load prediction.,2015,53,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs53.html#BosscheVB15,https://doi.org/10.1016/j.future.2015.05.016 +Tai-Hoon Kim,Supervised chromosome clustering and image classification.,2011,27,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs27.html#KimBB11,https://doi.org/10.1016/j.future.2010.06.005 +Kirill Belyaev,Component-oriented access control - Application servers meet tuple spaces for the masses.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#BelyaevR18,https://doi.org/10.1016/j.future.2017.05.003 +Ching-Hsien Hsu,Intelligent big data processing.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#Hsu14,https://doi.org/10.1016/j.future.2014.02.003 +Knud Brandis,Towards a framework for governance architecture management in cloud environments: A semantic perspective.,2014,32,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs32.html#BrandisDH14,https://doi.org/10.1016/j.future.2013.09.022 +Leyli Mohammad Khanli,Active rule learning using decision tree for resource management in Grid computing.,2011,27,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs27.html#KhanliMI11,https://doi.org/10.1016/j.future.2010.12.016 +Daniel Garijo,Common motifs in scientific workflows: An empirical analysis.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#GarijoABCGG14,https://doi.org/10.1016/j.future.2013.09.018 +Teodor-Florin Fortis,Topics in cloud incident management.,2017,72,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs72.html#FortisM17,https://doi.org/10.1016/j.future.2016.11.003 +Gangin Lee,A new efficient approach for mining uncertain frequent patterns using minimum data structure without false positives.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#LeeY17,https://doi.org/10.1016/j.future.2016.09.007 +Günther Rackl,Airport simulation using CORBA and DIS.,2000,16,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs16.html#RacklSHPL00,https://doi.org/10.1016/S0167-739X(99)00141-7 +Christopher P. Lowe,A hybrid particle/continuum model for micro-organism motility.,2001,17,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs17.html#Lowe01,https://doi.org/10.1016/S0167-739X(00)00063-7 +Tsung-Hsi Weng,Exploiting fine-grain parallelism in the H.264 deblocking filter by operation reordering.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#WengC14,https://doi.org/10.1016/j.future.2013.10.018 +Ghislain Landry Tsafack Chetsa,Exploiting performance counters to predict and improve energy performance of HPC systems.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#ChetsaLPSC14,https://doi.org/10.1016/j.future.2013.07.010 +Richard Knepper,Forward Observer system for radar data workflows: Big data management in the field.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#KnepperS17,https://doi.org/10.1016/j.future.2017.05.031 +Luc Moreau,The Open Provenance Model core specification (v1.1).,2011,27,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs27.html#MoreauCFFGGKMMMPSSB11,https://doi.org/10.1016/j.future.2010.07.005 +Daniel S. Katz,Recent advances in e-Science.,2013,29,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs29.html#KatzA13,https://doi.org/10.1016/j.future.2012.05.001 +C. P. Riley,The serial performance standards for the BBS test program.,1994,10,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs10.html#RileyS94,https://doi.org/10.1016/0167-739X(94)90006-X +Gyung-Leen Park,Performance evaluation of a list scheduling algorithm in distributed memory multiprocessor systems.,2004,20,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs20.html#Park04,https://doi.org/10.1016/S0167-739X(03)00139-0 +Dimitrios Kourtesis,Semantic-based QoS management in cloud systems: Current status and future challenges.,2014,32,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs32.html#KourtesisAP14,https://doi.org/10.1016/j.future.2013.10.015 +Long Chen,Idle block based methods for cloud workflow scheduling with preemptive and non-preemptive tasks.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#ChenLR18,https://doi.org/10.1016/j.future.2018.07.037 +Ting Chen,State of the art: Dynamic symbolic execution for automated test generation.,2013,29,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs29.html#ChenZGLW13,https://doi.org/10.1016/j.future.2012.02.006 +Nathan Hanford,Improving network performance on multicore systems: Impact of core affinities on high throughput flows.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#HanfordAFGBPT16,https://doi.org/10.1016/j.future.2015.09.012 +M. Shamim Hossain,Improving consumer satisfaction in smart cities using edge computing and caching: A case study of date fruits classification.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#HossainMA18,https://doi.org/10.1016/j.future.2018.05.050 +Yi-Rong Wang,Scheduling online mixed-parallel workflows of rigid tasks in heterogeneous multi-cluster environments.,2016,60,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs60.html#WangHW16,https://doi.org/10.1016/j.future.2016.01.013 +Eduardo Huedo,A modular meta-scheduling architecture for interfacing with pre-WS and WS Grid resource management services.,2007,23,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs23.html#HuedoML07,https://doi.org/10.1016/j.future.2006.07.013 +Reind P. van de Riet,Expert database systems.,1986,2,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs2.html#Riet86,https://doi.org/10.1016/0167-739X(86)90015-4 +Janez Kranjc,ClowdFlows: Online workflows for distributed big data mining.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#KranjcOPLR17,https://doi.org/10.1016/j.future.2016.07.018 +Saeid Abrishami,Deadline-constrained workflow scheduling algorithms for Infrastructure as a Service Clouds.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#AbrishamiNE13,https://doi.org/10.1016/j.future.2012.05.004 +ünal Ufuktepe,Applying Mathematica and webMathematica to graph coloring.,2007,23,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs23.html#UfuktepeB07,https://doi.org/10.1016/j.future.2006.10.011 +Francesco Palmieri,GMPLS-based service differentiation for scalable QoS support in all-optical Grid applications.,2006,22,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs22.html#Palmieri06,https://doi.org/10.1016/j.future.2005.11.003 +Reind P. van de Riet,The state of the art of knowledge engineering at five Japanese Research Institutes - a travel report.,1987,3,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs3.html#Riet87a,https://doi.org/10.1016/0167-739X(87)90041-0 +Liang Zhang 0010,Efficient finer-grained incremental processing with MapReduce for big data.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#ZhangFSZWSSB18,https://doi.org/10.1016/j.future.2017.09.079 +V. Kris Murthy,Probabilistic parallel programming based on multiset transformation.,1995,11,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs11.html#MurthyK95,https://doi.org/10.1016/0167-739X(94)00068-P +Yan Huang,GSiB: PSE infrastructure for dynamic service-oriented Grid applications.,2005,21,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs21.html#Huang05,https://doi.org/10.1016/j.future.2003.12.022 +María Teresa González-Aparicio,Testing of transactional services in NoSQL key-value databases.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#Gonzalez-Aparicio18,https://doi.org/10.1016/j.future.2017.07.004 +Dominique Méry,Playing with state-based models for designing better algorithms.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#Mery17,https://doi.org/10.1016/j.future.2016.04.019 +T. J. Dekker,Algorithms for solving numerical linear algebra problems on supercomputers.,1989,4,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs4.html#DekkerHR89,https://doi.org/10.1016/0167-739X(89)90001-0 +Xuejun Yang,Processor self-scheduling for parallel loops in preemptive environments.,1990,6,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs6.html#YangCCCC90,https://doi.org/10.1016/0167-739X(90)90015-6 +Ahmed Lounis,Healing on the cloud: Secure cloud architecture for medical wireless sensor networks.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#LounisHBC16,https://doi.org/10.1016/j.future.2015.01.009 +Shima Rashidi,A hybrid heuristic queue based algorithm for task assignment in mobile cloud.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#RashidiS17,https://doi.org/10.1016/j.future.2016.10.014 +Thomas Lawrence Sterling,An initial evaluation of the Convex SPP-1000 for earth and space science applications.,1995,11,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs11.html#SterlingSMG95,https://doi.org/10.1016/0167-739X(95)00025-N +Péter Kacsuk,The GRED graphical editor for the GRADE parallel program development environment.,1999,15,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs15.html#KacsukDFL99,https://doi.org/10.1016/S0167-739X(98)00088-0 +Jorge Veiga,BDEv 3.0: Energy efficiency and microarchitectural characterization of Big Data processing frameworks.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#VeigaEET18,https://doi.org/10.1016/j.future.2018.04.030 +Luis Tomás,A GridWay-based autonomic network-aware metascheduler.,2012,28,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs28.html#TomasCRCC12,https://doi.org/10.1016/j.future.2011.08.019 +John G. Vaughan,A logical-time-based approach to decentralised resource allocation in distributed systems.,1993,9,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs9.html#Vaughan93,https://doi.org/10.1016/0167-739X(93)90015-H +Reind P. van de Riet,Welcome.,1985,1,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs1.html#Riet85,https://doi.org/10.1016/0167-739X(85)90015-9 +Xukai Zou,Dual-Level Key Management for secure grid communication in dynamic and hierarchical groups.,2007,23,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs23.html#ZouDR07,https://doi.org/10.1016/j.future.2006.12.004 +François Coron,Rarefied gas flow computational with a 3D unstructured mesh on a Connection Machine (CM2).,1995,11,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs11.html#CoronH95,https://doi.org/10.1016/0167-739X(94)00042-D +Stephen R. Donaldson,Communication performance optimisation requires minimising variance.,1999,15,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs15.html#DonaldsonHS99,https://doi.org/10.1016/S0167-739X(98)00089-2 +Youngjoo Han,A new grid resource management mechanism with resource-aware policy administrator for SLA-constrained applications.,2009,25,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs25.html#HanY09,https://doi.org/10.1016/j.future.2008.11.005 +Gergely Sipos,Protecting the consistency of workflow applications in collaborative development environments.,2012,28,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs28.html#Sipos12,https://doi.org/10.1016/j.future.2011.09.003 +Derrick Kondo,Preface to the special issue on volunteer computing and desktop grids.,2012,28,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs28.html#KondoJ12,https://doi.org/10.1016/j.future.2011.11.009 +Deepsubhra Guha Roy,Application-aware end-to-end delay and message loss estimation in Internet of Things (IoT) - MQTT-SN protocols.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#RoyMDB18,https://doi.org/10.1016/j.future.2018.06.040 +Rodolfo E. Haber,Controlling a complex electromechanical process on the basis of a neurofuzzy approach.,2005,21,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs21.html#HaberAAH05,https://doi.org/10.1016/j.future.2004.03.008 +Andrea G. M. Cilio,Link-time effective whole-program optimizations.,2000,16,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs16.html#CilioC00,https://doi.org/10.1016/S0167-739X(99)00127-2 +Jeremy T. Bradley,Distributed computation of transient state distributions and passage time quantiles in large semi-Markov models.,2006,22,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs22.html#BradleyDHK06,https://doi.org/10.1016/j.future.2006.02.011 +Katia Leal,A decentralized model for scheduling independent tasks in Federated Grids.,2009,25,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs25.html#LealHL09,https://doi.org/10.1016/j.future.2009.02.003 +Keke Gai,In-memory big data analytics under space constraints using dynamic programming.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#GaiQLX18,https://doi.org/10.1016/j.future.2017.12.033 +Peter Arbenz,Special section: SPEEDUP Workshop on Modern algorithms in computational science and information technology.,2005,21,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs21.html#ArbenzBMS05,https://doi.org/10.1016/j.future.2004.09.002 +Hamid Arabnejad,Multi-QoS constrained and Profit-aware scheduling approach for concurrent workflows on heterogeneous systems.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#ArabnejadB17,https://doi.org/10.1016/j.future.2016.10.003 +Jianliang Gao,QoS analysis of medium access control in LR-WPANs under bursty error channels.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#GaoHMX10,https://doi.org/10.1016/j.future.2010.04.006 +Christos K. Filelis-Papadopoulos,A framework for simulating large scale cloud infrastructures.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#Filelis-Papadopoulos18,https://doi.org/10.1016/j.future.2017.06.017 +Shaofeng Liu,CineGrid Exchange: A workflow-based peta-scale distributed storage platform on a high-speed network.,2011,27,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs27.html#LiuSHWZOPW11,https://doi.org/10.1016/j.future.2010.11.017 +Ximeng Liu,Hybrid privacy-preserving clinical decision support system in fog-cloud computing.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#LiuDYTZ18,https://doi.org/10.1016/j.future.2017.03.018 +Jun Liu,Energy efficient scheduling of real-time tasks on multi-core processors with voltage islands.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#LiuG16,https://doi.org/10.1016/j.future.2015.06.003 +Zhe Lin,Modelling and forecasting the stock market volatility of SSE Composite Index using GARCH models.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#Lin18,https://doi.org/10.1016/j.future.2017.08.033 +Eun-Kyu Byun,Cost optimized provisioning of elastic resources for application workflows.,2011,27,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs27.html#ByunKKM11,https://doi.org/10.1016/j.future.2011.05.001 +Mu-En Wu,On the improvement of Fermat factorization using a continued fraction technique.,2014,30,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs30.html#WuTS14,https://doi.org/10.1016/j.future.2013.06.008 +Simone G. O. Fiori,Fixed-point neural independent component analysis algorithms on the orthogonal group.,2006,22,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs22.html#Fiori06,https://doi.org/10.1016/j.future.2004.11.024 +Vaibhav Deshpande,Virtual engineering of multi-disciplinary applications and the significance of seamless accessibility of geometry data.,2000,16,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs16.html#DeshpandeFGHMMW00,https://doi.org/10.1016/S0167-739X(99)00132-6 +Lorena González-Manzano,Encryption by Heart (EbH) - Using ECG for time-invariant symmetric key generation.,2017,77,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs77.html#Gonzalez-Manzano17,https://doi.org/10.1016/j.future.2017.07.018 +Roger da Silva Machado,EXEHDA-HM: A compositional approach to explore contextual information on hybrid models.,2017,73,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs73.html#MachadoARLPY17,https://doi.org/10.1016/j.future.2017.03.005 +Saru Kumari,Design of a provably secure biometrics-based multi-cloud-server authentication scheme.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#KumariLWDCS17,https://doi.org/10.1016/j.future.2016.10.004 +Mustafa Kaiiali,Grid Authorization Graph.,2013,29,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs29.html#KaiialiWRAB13,https://doi.org/10.1016/j.future.2013.04.010 +Thomas Ertl,Multiresolution and hierarchical methods for the visualization of volume data.,1999,15,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs15.html#ErtlWG99,https://doi.org/10.1016/S0167-739X(98)00046-6 +Philip C. Treleaven,Fifth generation and VLSI architectures.,1985,1,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs1.html#TreleavenR85,https://doi.org/10.1016/0167-739X(85)90022-6 +Kai Lin,Balancing energy consumption with mobile agents in wireless sensor networks.,2012,28,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs28.html#LinCZR12,https://doi.org/10.1016/j.future.2011.03.001 +Hawazin Badawi,Mobile cloud-based physical activity advisory system using biofeedback sensors.,2017,66,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs66.html#BadawiDE17,https://doi.org/10.1016/j.future.2015.11.005 +Bernard Goossens,Handling 16 instructions per cycle in a superscalar processor.,2001,17,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs17.html#Goossens01,https://doi.org/10.1016/S0167-739X(00)00053-4 +Maria Calzarossa,Performance issues of an HPF-like compiler.,2001,18,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs18.html#CalzarossaMT01,https://doi.org/10.1016/S0167-739X(01)00049-8 +Kerry-Louise Skillen,Ontological user modelling and semantic rule-based reasoning for personalisation of Help-On-Demand services in pervasive environments.,2014,34,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs34.html#SkillenCNDBS14,https://doi.org/10.1016/j.future.2013.10.027 +Yuan-Shun Dai,Optimal task partition and distribution in grid service system with common cause failures.,2007,23,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs23.html#DaiLW07,https://doi.org/10.1016/j.future.2006.05.002 +George Kousiouris,An integrated information lifecycle management framework for exploiting social network data to identify dynamic large crowd concentration events in smart cities applications.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#KousiourisASTPK18,https://doi.org/10.1016/j.future.2017.07.026 +Alessandro Bassi,Enhancing grid capabilities: IBP over IPv6.,2005,21,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs21.html#BassiBLP05,https://doi.org/10.1016/j.future.2003.10.007 +Darren Quick,Digital forensic intelligence: Data subsets and Open Source Intelligence (DFINT+OSINT): A timely and cohesive mix.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#QuickC18,https://doi.org/10.1016/j.future.2016.12.032 +Wanqing Wu,Optimization of signal quality over comfortability of textile electrodes for ECG monitoring in fog computing based medical applications.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#WuPSML18,https://doi.org/10.1016/j.future.2018.04.024 +Hamid Reza Naji,Creating an adaptive embedded system by applying multi-agent techniques to reconfigurable hardware.,2004,20,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs20.html#NajiWE04,https://doi.org/10.1016/j.future.2004.02.002 +Lin Ma,Analysis of classic algorithms on highly-threaded many-core architectures.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#MaCATH18,https://doi.org/10.1016/j.future.2017.02.007 +Amos R. Omondi,On function languages and parallel computers.,1991,6,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs6.html#Omondi91,https://doi.org/10.1016/0167-739X(91)90005-I +Xia Xie,DTA: Dynamic topology algorithms in content-based Publish/Subscribe.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#XieWJZKY16,https://doi.org/10.1016/j.future.2015.01.010 +Tiejun Wu,Optimizing peer selection in BitTorrent networks with genetic algorithms.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#WuLQ10,https://doi.org/10.1016/j.future.2010.05.016 +Jörg Nolte,Exploiting cluster networks for distributed object groups and collective operations.,2002,18,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs18.html#NolteSI02,https://doi.org/10.1016/S0167-739X(01)00075-9 +Emrah çem,ProFID: Practical frequent items discovery in peer-to-peer networks.,2013,29,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs29.html#CemO13,https://doi.org/10.1016/j.future.2012.10.002 +Hesam Izakian,An auction method for resource allocation in computational grids.,2010,26,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs26.html#IzakianAL10,https://doi.org/10.1016/j.future.2009.08.010 +Radu Prodan,Prediction-based real-time resource provisioning for massively multiplayer online games.,2009,25,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs25.html#ProdanN09,https://doi.org/10.1016/j.future.2008.11.002 +Marc Bux,DynamicCloudSim: Simulating heterogeneity in computational clouds.,2015,46,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs46.html#BuxL15,https://doi.org/10.1016/j.future.2014.09.007 +Rosario M. Piro,Using historical accounting information to predict the resource usage of grid jobs.,2009,25,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs25.html#PiroGPW09,https://doi.org/10.1016/j.future.2008.11.003 +Li Chunlin,Combine concept of agent and service to build distributed object-oriented system.,2003,19,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs19.html#LiL03,https://doi.org/10.1016/S0167-739X(02)00127-9 +Longting Zhu,Efficient hybrid multicast approach in wireless data center network.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#ZhuWJCL18,https://doi.org/10.1016/j.future.2018.01.012 +Lu Zhou 0002,Stag hunt and trust emergence in social networks.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#ZhouSSZC18,https://doi.org/10.1016/j.future.2018.05.053 +S. N. Bharath Bhushan,Classification of compressed and uncompressed text documents.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#BhushanD18,https://doi.org/10.1016/j.future.2018.04.054 +Florin Pop,RM-BDP: Resource management for Big Data platforms.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#PopPA18,https://doi.org/10.1016/j.future.2018.05.018 +Blesson Varghese,Next generation cloud computing: New trends and research directions.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#VargheseB18,https://doi.org/10.1016/j.future.2017.09.020 +Qingyong Li,A cyber-enabled visual inspection system for rail corrugation.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#LiSZTRDL18,https://doi.org/10.1016/j.future.2017.04.032 +A. Gómez,Fault-tolerant virtual cluster experiments on federated sites using BonFIRE.,2014,34,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs34.html#GomezCVMC14,https://doi.org/10.1016/j.future.2013.12.027 +Deborah Silver,Visualizing evolving scalar phenomena.,1999,15,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs15.html#SilverW99,https://doi.org/10.1016/S0167-739X(98)00048-X +Netsanet Haile,Evaluating investments in portability and interoperability between software service platforms.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#HaileA18,https://doi.org/10.1016/j.future.2017.04.040 +Sandro Fiore,The data access layer in the GRelC system architecture.,2011,27,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs27.html#FioreNA11,https://doi.org/10.1016/j.future.2010.07.006 +Yudong Sun,Distributed particle simulation method on adaptive collaborative system.,2001,18,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs18.html#SunLW01,https://doi.org/10.1016/S0167-739X(00)00077-7 +Ferdinand Peper,Self-Timed Cellular Automata and their computational ability.,2002,18,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs18.html#PeperIKM02,https://doi.org/10.1016/S0167-739X(02)00069-9 +Jose M. Alcaraz Calero,Comparative analysis of architectures for monitoring cloud computing infrastructures.,2015,47,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs47.html#CaleroG15,https://doi.org/10.1016/j.future.2014.12.008 +Erik Elmroth,Distributed usage logging for federated Grids.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#ElmrothH10,https://doi.org/10.1016/j.future.2010.02.001 +Bernabé Dorronsoro,Special issue: Energy-efficiency in large distributed computing architectures.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#DorronsoroDB14,https://doi.org/10.1016/j.future.2014.03.006 +Feng Gao 0003,Automated discovery and integration of semantic urban data streams: The ACEIS middleware.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#GaoACM17,https://doi.org/10.1016/j.future.2017.03.002 +Kiyohiko Nakamura,Associative learning using similarity knowledge bases for relational database search.,1984,1,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs1.html#NakamuraSI84,https://doi.org/10.1016/0167-739X(84)90034-7 +Woochul Kang,Achieving high job execution reliability using underutilized resources in a computational economy.,2013,29,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs29.html#KangHG13,https://doi.org/10.1016/j.future.2012.09.008 +M. G. A. Verhoeven,A parallel 2-opt algorithm for the Traveling Salesman Problem.,1995,11,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs11.html#VerhoevenAS95,https://doi.org/10.1016/0167-739X(94)00059-N +Liangliang Li,An integrated implementation of prolog database operations.,1990,6,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs6.html#LiC90,https://doi.org/10.1016/0167-739X(90)90004-W +Raymond Plante,The NCSA astronomy digital image library: from data archiving to data publishing.,1999,16,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs16.html#PlanteCM99,https://doi.org/10.1016/S0167-739X(99)00035-7 +Jihe Wang,High reliable real-time bandwidth scheduling for virtual machines with hidden Markov predicting in telehealth platform.,2015,49,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs49.html#WangQG15,https://doi.org/10.1016/j.future.2014.08.006 +Zeinab Shmeis,Fine and coarse grained composition and adaptation of spark applications.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#ShmeisJ18,https://doi.org/10.1016/j.future.2018.04.048 +Kuniaki Uehara,An intelligent on-line help system: ASSIST.,1989,5,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs5.html#Uehara89,https://doi.org/10.1016/0167-739X(89)90015-0 +Shusaku Tsumoto,Similarity-based behavior and process mining of medical practices.,2014,33,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs33.html#TsumotoIHT14,https://doi.org/10.1016/j.future.2013.10.014 +Ihtisham Ali,Designing hybrid graph model and algorithmic analysis of workflow decomposition in mobile distributed systems.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#AliB18,https://doi.org/10.1016/j.future.2018.03.012 +John O'Loughlin,A performance brokerage for heterogeneous clouds.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#OLoughlinG18,https://doi.org/10.1016/j.future.2017.05.005 +Abdul Wahid,Big data analytics for mitigating broadcast storm in Vehicular Content Centric networks.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#WahidSQMIC18,https://doi.org/10.1016/j.future.2017.10.005 +Kevin Ponto,Giga-stack: A method for visualizing giga-pixel layered imagery on massively tiled displays.,2010,26,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs26.html#PontoDK10,https://doi.org/10.1016/j.future.2009.12.007 +Luciano Lopez,Structural dynamical systems in linear algebra and control: computational aspects.,2003,19,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs19.html#Lopez03,https://doi.org/10.1016/S0167-739X(03)00051-7 +Paul Anderson,The feasibility of a general-purpose parallel computer using WSI.,1990,6,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs6.html#AndersonKW90,https://doi.org/10.1016/0167-739X(90)90022-6 +Georgia Kougka,Practical algorithms for execution engine selection in data flows.,2015,45,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs45.html#KougkaGT15,https://doi.org/10.1016/j.future.2014.11.011 +Vangipuram Radhakrishna,A novel fuzzy similarity measure and prevalence estimation approach for similarity profiled temporal association pattern mining.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#RadhakrishnaAKJ18,https://doi.org/10.1016/j.future.2017.03.016 +Gianluigi Folino,A grid portal for solving geoscience problems using distributed knowledge discovery services.,2010,26,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs26.html#FolinoFPS10,https://doi.org/10.1016/j.future.2009.08.002 +Rahul Ghosh,Modeling and performance analysis of large scale IaaS Clouds.,2013,29,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs29.html#GhoshLNT13,https://doi.org/10.1016/j.future.2012.06.005 +Toyoki Kozai,Intelligent information systems for production management in agriculture and horticulture.,1989,5,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs5.html#KozaiH89,https://doi.org/10.1016/0167-739X(89)90031-9 +Hyunwoo Joe,Output-oriented power saving mode for mobile devices.,2017,72,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs72.html#JoeKLK17,https://doi.org/10.1016/j.future.2016.05.012 +Volker Strumpen,Perspectives on high performance network computing.,1997,12,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs12.html#StrumpenRCR97,https://doi.org/10.1016/S0167-739X(97)83343-2 +Emanuele Carlini,dragon: Multidimensional range queries on distributed aggregation trees.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#CarliniLR16,https://doi.org/10.1016/j.future.2015.07.020 +Hong Wang 0006,A dependable Peer-to-Peer computing platform.,2007,23,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs23.html#WangTK07,https://doi.org/10.1016/j.future.2007.03.004 +Madhuri Karnik,A comparative study of Dirichlet and Neumann conditions for path planning through harmonic functions.,2004,20,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs20.html#KarnikDE04,https://doi.org/10.1016/j.future.2003.07.008 +Jürgen Reuter,Logging kernel events on clusters.,2006,22,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs22.html#ReuterT06,https://doi.org/10.1016/j.future.2004.11.017 +Shunji Matsumoto,ES/SDEM Software development engineering methodology for expert systems.,1989,5,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs5.html#Matsumoto89,https://doi.org/10.1016/0167-739X(89)90018-6 +Sebastian Gutierrez-Nolasco,Tailoring consistency in group membership for mobile networks.,2014,31,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs31.html#Gutierrez-NolascoVST14,https://doi.org/10.1016/j.future.2013.06.014 +Sandip Tikar,Efficient reuse of replicated parallel data segments in computational grids.,2008,24,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs24.html#TikarV08,https://doi.org/10.1016/j.future.2008.01.001 +Yoshiaki Shirai,Robot vision.,1985,1,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs1.html#Shirai85,https://doi.org/10.1016/0167-739X(85)90005-6 +Terence K. L. Hui,Major requirements for building Smart Homes in Smart Cities based on Internet of Things technologies.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#HuiSS17,https://doi.org/10.1016/j.future.2016.10.026 +Ed Clune,Implementation and performance of a complex vision system on a systolic array machine.,1988,4,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs4.html#CluneCKW88,https://doi.org/10.1016/0167-739X(88)90016-7 +Zhenhua Wang,Workload balancing and adaptive resource management for the swift storage system on cloud.,2015,51,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs51.html#WangCFLB15,https://doi.org/10.1016/j.future.2014.11.006 +Phillip C.-Y. Sheu,Efficient processing of integrity constraints in deductive databases.,1987,3,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs3.html#SheuL87,https://doi.org/10.1016/0167-739X(87)90013-6 +J. C. van Vliet,STARS and stripes.,1985,1,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs1.html#Vliet85,https://doi.org/10.1016/0167-739X(85)90025-1 +Henk A. van der Vorst,Practical aspects of parallel scientific computing.,1989,4,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs4.html#Vorst89,https://doi.org/10.1016/0167-739X(89)90005-8 +Duc T. Nguyen,Real-time event detection for online behavioral analysis of big social data.,2017,66,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs66.html#NguyenJ17,https://doi.org/10.1016/j.future.2016.04.012 +Reind P. van de Riet,An impression of the research activities of MCC in the area of data- and knowledge base systems - a travel report.,1987,3,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs3.html#Riet87b,https://doi.org/10.1016/0167-739X(87)90006-9 +Takahiko Fukinuki,Data reduction of picture signals: Review on the studies in Japan.,1985,1,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs1.html#Fukinuki85,https://doi.org/10.1016/0167-739X(85)90003-2 +Chih Jeng Kenneth Tan,The PLFG parallel pseudo-random number generator.,2002,18,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs18.html#Tan02a,https://doi.org/10.1016/S0167-739X(02)00034-1 +Chien-Min Wang,Dynamic resource selection heuristics for a non-reserved bidding-based Grid environment.,2010,26,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs26.html#WangCHL10,https://doi.org/10.1016/j.future.2009.08.003 +Yu Tang,Achieving convergent causal consistency and high availability for cloud storage.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#TangSWL17,https://doi.org/10.1016/j.future.2017.04.016 +Oleg Bessonov,Development of efficient computational kernels and linear algebra routines for out-of-order superscalar processors.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#BessonovFR05,https://doi.org/10.1016/j.future.2004.05.016 +Juan Yang,A decentralized resource allocation policy in minigrid.,2007,23,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs23.html#YangBQ07,https://doi.org/10.1016/j.future.2006.07.003 +Tom Kirkham,Risk driven Smart Home resource management using cloud services.,2014,38,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs38.html#KirkhamADJ14,https://doi.org/10.1016/j.future.2013.08.006 +Todd Margolis,Tri-continental premiere of 4K feature movie via network streaming at FILE 2009.,2011,27,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs27.html#MargolisBCBSCRCKASS11,https://doi.org/10.1016/j.future.2010.11.023 +Giancarlo Fortino,Cooperative control of multicast-based streaming on-demand systems.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#FortinoMR05,https://doi.org/10.1016/j.future.2004.08.002 +Nicolai Mallig,Modelling the weekly electricity demand caused by electric cars.,2016,64,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs64.html#MalligHWCV16,https://doi.org/10.1016/j.future.2016.01.014 +Ligang He,Modeling and analyzing the impact of authorization on workflow executions.,2012,28,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs28.html#HeHDLCSJ12,https://doi.org/10.1016/j.future.2012.03.003 +Alessio Merlo,Secure cooperative access control on grid.,2013,29,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs29.html#Merlo13,https://doi.org/10.1016/j.future.2012.08.001 +In-Chul Hwang,Home-based Cooperative Cache for parallel I/O applications.,2006,22,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs22.html#HwangMC06,https://doi.org/10.1016/j.future.2005.09.004 +Jen-Hsiang Chen,A hybrid model for cloud providers and consumers to agree on QoS of cloud services.,2015,50,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs50.html#ChenACGLT15,https://doi.org/10.1016/j.future.2014.12.003 +R. Vidhyalakshmi,CORE framework for evaluating the reliability of SaaS products.,2017,72,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs72.html#VidhyalakshmiK17,https://doi.org/10.1016/j.future.2017.02.039 +Joanna Jakubowska,VisGenome with CartoonPlus: Supporting large scale genomic analyses via physical space deformation.,2010,26,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs26.html#JakubowskaHC10,https://doi.org/10.1016/j.future.2009.08.007 +Oliver Yu,Multi-domain Lambda Grid data portal for collaborative Grid applications.,2006,22,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs22.html#YuLCYLX06,https://doi.org/10.1016/j.future.2006.03.016 +Nishank Trivedi,Parallel creation of non-redundant gene indices from partial mRNA transcripts.,2002,18,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs18.html#TrivediBDPSBRRSSC02,https://doi.org/10.1016/S0167-739X(02)00059-6 +Ryan N. S. Widodo,SDM: Smart deduplication for mobile cloud storage.,2017,70,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs70.html#WidodoLA17,https://doi.org/10.1016/j.future.2016.06.023 +Athanasia Evangelinou,Enterprise applications cloud rightsizing through a joint benchmarking and optimization approach.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#EvangelinouCAKK18,https://doi.org/10.1016/j.future.2016.11.002 +Rade Kutil,Parallel adaptive wavelet analysis.,2001,18,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs18.html#KutilU01,https://doi.org/10.1016/S0167-739X(00)00079-0 +Giovanna Sannino,A deep learning approach for ECG-based heartbeat classification for arrhythmia detection.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#SanninoP18,https://doi.org/10.1016/j.future.2018.03.057 +Jemal H. Abawajy,An efficient adaptive scheduling policy for high-performance computing.,2009,25,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs25.html#Abawajy09,https://doi.org/10.1016/j.future.2006.04.007 +Seungmin Rho,Cyber-physical systems technologies and application - Part II.,2016,61,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs61.html#RhoVC16a,https://doi.org/10.1016/j.future.2016.03.007 +Kais Mekki,USEE: A uniform data dissemination and energy efficient protocol for communicating materials.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#MekkiZDRTA16,https://doi.org/10.1016/j.future.2015.09.015 +Kaigui Wu,State-based search strategy in unstructured P2P.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#WuW13,https://doi.org/10.1016/j.future.2011.08.002 +Anna Kobusinska,Towards increasing reliability of clouds environments with RESTful web services.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#KobusinskaH18,https://doi.org/10.1016/j.future.2017.10.050 +Wolfgang Wiechert,The role of modeling in computational science education.,2003,19,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs19.html#Wiechert03,https://doi.org/10.1016/S0167-739X(03)00093-1 +Tyng-Yeu Liang,A grid-enabled software distributed shared memory system on a wide area network.,2007,23,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs23.html#LiangWSC07,https://doi.org/10.1016/j.future.2006.10.003 +Claudia Rosas,Dynamic tuning of the workload partition factor and the resource utilization in data-intensive applications.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#RosasSJMEC14,https://doi.org/10.1016/j.future.2013.12.002 +Shaohua Tang,Towards provably secure proxy signature scheme based on Isomorphisms of Polynomials.,2014,30,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs30.html#TangX14,https://doi.org/10.1016/j.future.2013.06.003 +Anjia Yang,Exploring relationship between indistinguishability-based and unpredictability-based RFID privacy models.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#YangZWHWY18,https://doi.org/10.1016/j.future.2017.12.044 +Norman W. Paton,Utility-driven adaptive query workload execution.,2012,28,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs28.html#PatonAF12,https://doi.org/10.1016/j.future.2011.08.014 +Huidong Qiao,Compulsory traceable ciphertext-policy attribute-based encryption against privilege abuse in fog computing.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#QiaoRWBZ18,https://doi.org/10.1016/j.future.2018.05.032 +Olga L. Bandman,Cellular-neural automaton: a hybrid model for reaction-diffusion simulation.,2002,18,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs18.html#Bandman02,https://doi.org/10.1016/S0167-739X(02)00046-8 +Marcel Beemster,Experience with a clustered parallel reduction machine.,1993,9,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs9.html#BeemsterHHHLLMV93,https://doi.org/10.1016/0167-739X(93)90011-D +Fan Wu 0003,A lightweight and robust two-factor authentication scheme for personalized healthcare systems using wireless medical sensor networks.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#WuLSXKWS18,https://doi.org/10.1016/j.future.2017.08.042 +Shehroz Riaz,FRP: A novel fast rerouting protocol with multi-link-failure recovery for mission-critical WSN.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#RiazRUARMI18,https://doi.org/10.1016/j.future.2018.06.029 +Frédéric Gava,A static analysis for Bulk Synchronous Parallel ML to avoid parallel nesting.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#GavaL05,https://doi.org/10.1016/j.future.2004.05.006 +Yoshiyuki Kido,SAGE-based Tiled Display Wall enhanced with dynamic routing functionality triggered by user interaction.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#KidoIDWAYKTS16,https://doi.org/10.1016/j.future.2015.09.033 +Ling Tian,Video big data in smart city: Background construction and optimization for surveillance video processing.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#TianWZP18,https://doi.org/10.1016/j.future.2017.12.065 +D. Morale,Modeling and simulating animal grouping : Individual-based models.,2001,17,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs17.html#Morale01,https://doi.org/10.1016/S0167-739X(00)00066-2 +Artur Andrzejak,Special section: Paradigms for scalable and dependable grids.,2007,23,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs23.html#AndrzejakR07,https://doi.org/10.1016/j.future.2007.03.001 +Sangkyun Kim,Special section: Information engineering and enterprise architecture in distributed computing environments.,2007,23,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs23.html#Kim07,https://doi.org/10.1016/j.future.2006.06.001 +Dagmar Krefting,Simplified implementation of medical image processing algorithms into a grid using a workflow management system.,2010,26,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs26.html#KreftingVHT10,https://doi.org/10.1016/j.future.2009.07.004 +Young Jin Nam,Design and evaluation of an efficient proportional-share disk scheduling algorithm.,2006,22,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs22.html#NamP06,https://doi.org/10.1016/j.future.2005.09.009 +Maximilian Beier,Multicenter data sharing for collaboration in sleep medicine.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#BeierJMPRSWWK17,https://doi.org/10.1016/j.future.2016.03.025 +Mhamed Zineddine,Optimizing security and quality of service in a real-time operating system using multi-objective Bat algorithm.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#Zineddine18,https://doi.org/10.1016/j.future.2018.02.043 +Yang Cai 0002,BioSim--a biomedical character-based problem solving environment.,2005,21,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs21.html#CaiSCBKK05,https://doi.org/10.1016/j.future.2004.04.002 +Ahmad Khonsari,An analytical model of adaptive wormhole routing with time-out.,2003,19,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs19.html#KhonsariSO03,https://doi.org/10.1016/S0167-739X(02)00092-4 +Priyan Malarvizhi Kumar,Cloud and IoT based disease prediction and diagnosis system for healthcare using Fuzzy neural classifier.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#KumarLVBP18,https://doi.org/10.1016/j.future.2018.04.036 +Rajarathinam Jeyarani,Design and implementation of adaptive power-aware virtual machine provisioner (APA-VMP) using swarm intelligence.,2012,28,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs28.html#JeyaraniNR12,https://doi.org/10.1016/j.future.2011.06.002 +Kunitake Kaneko,Design and implementation of live image file feeding to dome theaters.,2011,27,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs27.html#KanekoO11,https://doi.org/10.1016/j.future.2010.12.014 +Attila Kertész,GMBS: A new middleware service for making grids interoperable.,2010,26,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs26.html#KerteszK10,https://doi.org/10.1016/j.future.2009.10.007 +Jing Wen,Distributed multipliers in MWM for analyzing job arrival processes in massive HPC workload datasets.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#WenMLS14,https://doi.org/10.1016/j.future.2013.12.009 +Mina Sedaghat,Decentralized cloud datacenter reconsolidation through emergent and topology-aware behavior.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#SedaghatHE16,https://doi.org/10.1016/j.future.2015.09.023 +Pierfrancesco Bellini,Managing cloud via Smart Cloud Engine and Knowledge Base.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#BelliniBCN18,https://doi.org/10.1016/j.future.2016.10.006 +Per-Olov östberg,GJMF - a composable service-oriented grid job management framework.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#OstbergE13,https://doi.org/10.1016/j.future.2012.04.004 +Susmit Bagchi,Distributed scheduling with probabilistic and fuzzy classifications of processes.,2016,62,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs62.html#Bagchi16,https://doi.org/10.1016/j.future.2016.03.001 +Carlo Zinzani,"Virtual Computer Project ""Delivering content in a VRML world"".",2000,17,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs17.html#Zinzani00,https://doi.org/10.1016/S0167-739X(99)00104-1 +Guillermo Oyarzun,Efficient CFD code implementation for the ARM-based Mont-Blanc architecture.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#OyarzunBGMO18,https://doi.org/10.1016/j.future.2017.09.029 +Enrico Carniani,Usage Control on Cloud systems.,2016,63,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs63.html#CarnianiDLMM16,https://doi.org/10.1016/j.future.2016.04.010 +Javier Panadero,Multi criteria biased randomized method for resource allocation in distributed systems: Application in a volunteer computing system.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#PanaderoASM18,https://doi.org/10.1016/j.future.2017.11.039 +Hai Zhuge,Automatic maintenance of category hierarchy.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#ZhugeH17,https://doi.org/10.1016/j.future.2016.06.038 +Kshira Sagar Sahoo,An early detection of low rate DDoS attack to SDN based data center networks using information distance metrics.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#SahooPTRSD18,https://doi.org/10.1016/j.future.2018.07.017 +Ashley Saulsbury,An argument for simple COMA.,1995,11,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs11.html#SaulsburyWCL95,https://doi.org/10.1016/0167-739X(95)00024-M +Bei Wang,Efficient consolidation-aware VCPU scheduling on multicore virtualization platform.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#WangCCHXHA16,https://doi.org/10.1016/j.future.2015.08.007 +Luc Steels,Second generation expert systems.,1985,1,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs1.html#Steels85,https://doi.org/10.1016/0167-739X(85)90010-X +Weifeng Pan,Identifying key classes in object-oriented software using generalized k-core decomposition.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#PanSLZ18,https://doi.org/10.1016/j.future.2017.10.006 +Daniel Lorenz 0001,Job monitoring and steering in D-Grid's High Energy Physics Community Grid.,2009,25,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs25.html#LorenzBBEHMMMNRUWWW09,https://doi.org/10.1016/j.future.2008.05.009 +Will Rourk,Virtual biochemistry - a case study.,2000,17,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs17.html#Rourk00,https://doi.org/10.1016/S0167-739X(99)00095-3 +Pasu Poonpakdee,Robust and efficient membership management in large-scale dynamic networks.,2017,75,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs75.html#PoonpakdeeF17,https://doi.org/10.1016/j.future.2017.02.033 +Gaetano F. Anastasi,QoS-aware genetic Cloud Brokering.,2017,75,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs75.html#AnastasiCCD17,https://doi.org/10.1016/j.future.2017.04.026 +R. A. A. Bruce,CHIMP and PUL: Support for portable parallel computing.,1995,11,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs11.html#BruceCMTT95,https://doi.org/10.1016/0167-739X(94)00063-K +Karl Fürlinger,Recording the control flow of parallel applications to determine iterative and phase-based behavior.,2010,26,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs26.html#FurlingerM10,https://doi.org/10.1016/j.future.2009.05.008 +Robert A. Kowalski,Software engineering and artificial intelligence in new generation computing.,1984,1,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs1.html#Kowalski84,https://doi.org/10.1016/0167-739X(84)90020-7 +Sérgio E. D. Dias,Multi-GPU-based detection of protein cavities using critical points.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#DiasNJG17,https://doi.org/10.1016/j.future.2016.07.009 +Yi Liu 0029,Attribute-based handshake protocol for mobile healthcare social networks.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#LiuWLLL18,https://doi.org/10.1016/j.future.2016.12.010 +Matthias Geiger,BPMN 2.0: The state of support and implementation.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#GeigerHLW18,https://doi.org/10.1016/j.future.2017.01.006 +Agostino Forestiero,Reorganization and discovery of grid information with epidemic tuning.,2008,24,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs24.html#ForestieroMS08a,https://doi.org/10.1016/j.future.2008.04.001 +Jingsheng Lei,Towards building a social emotion detection system for online news.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#LeiRLQW14,https://doi.org/10.1016/j.future.2013.09.024 +Yuzhong Qu,A predicate-ordered logic for knowledge representation on the web.,2004,20,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs20.html#Qu04,https://doi.org/10.1016/S0167-739X(03)00161-4 +Venkatesan Rajinikanth,An approach to examine Magnetic Resonance Angiography based on Tsallis entropy and deformable snake model.,2018,85,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs85.html#RajinikanthDSA18,https://doi.org/10.1016/j.future.2018.03.025 +P. Victer Paul,Efficient service cache management in mobile P2P networks.,2013,29,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs29.html#PaulRSBD13,https://doi.org/10.1016/j.future.2012.12.001 +Kenji Saito,The brighter side of risks in peer-to-peer barter relationships.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#SaitoM10,https://doi.org/10.1016/j.future.2009.05.018 +Torben Hagerup,FORK: A high-level language for PRAMs.,1992,8,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs8.html#HagerupSS92,https://doi.org/10.1016/0167-739X(92)90070-R +Andrzej Tarczynski,Application of Grid computing for designing a class of optimal periodic nonuniform sampling sequences.,2008,24,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs24.html#TarczynskiKTDQW08,https://doi.org/10.1016/j.future.2008.02.005 +Christian Javier D'Orazio,Circumventing iOS security mechanisms for APT forensic investigations: A security taxonomy for cloud apps.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#DOrazioC18,https://doi.org/10.1016/j.future.2016.11.010 +Wolfgang Gentzsch,Special Section D-Grid.,2009,25,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs25.html#GentzschR09,https://doi.org/10.1016/j.future.2008.09.008 +Gerardo Severino,The IoT as a tool to combine the scheduling of the irrigation with the geostatistics of the soils.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#SeverinoDST18,https://doi.org/10.1016/j.future.2017.12.058 +Simon Casey,VLBI_UDP: An application for transporting VLBI data using the UDP protocol.,2010,26,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs26.html#CaseyHSSBSG10,https://doi.org/10.1016/j.future.2008.10.006 +Giovanni Aloisio,Early experiences with the GridFTP protocol using the GRB-GSIFTP library.,2002,18,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs18.html#AloisioCE02,https://doi.org/10.1016/S0167-739X(02)00084-5 +Jie Tao,A note on new trends in data-aware scheduling and resource provisioning in modern HPC systems.,2015,51,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs51.html#TaoKRJB15,https://doi.org/10.1016/j.future.2015.04.016 +Imran Khan,A thin client friendly trusted execution framework for infrastructure-as-a-service clouds.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#KhanRAAA18,https://doi.org/10.1016/j.future.2018.06.038 +Chariklis Pittaras,Resource discovery and allocation for federated virtualized infrastructures.,2015,42,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs42.html#PittarasPLGHP15,https://doi.org/10.1016/j.future.2014.01.003 +Diego Fustes,A cloud-integrated web platform for marine monitoring using GIS and remote sensing. Application to oil spill detection through SAR images.,2014,34,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs34.html#FustesCDVIM14,https://doi.org/10.1016/j.future.2013.09.020 +Junpeng Guo,Recommend products with consideration of multi-category inter-purchase time and price.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#GuoGLW18,https://doi.org/10.1016/j.future.2017.02.031 +Tehmina Amjad,A survey of dynamic replication strategies for improving data availability in data grids.,2012,28,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs28.html#AmjadSD12,https://doi.org/10.1016/j.future.2011.06.009 +Jean-Marie Jacquet,On the semantics of and#956* Log.,1994,10,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs10.html#JacquetB94,https://doi.org/10.1016/0167-739X(94)90053-1 +A. J. C. Beliën,Spectral calculations in magnetohydrodynamics using the Jacobi-Davidson method.,2001,17,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs17.html#BelienHNPG01,https://doi.org/10.1016/S0167-739X(01)00033-4 +Neeraj Kumar 0001,Bayesian Coalition Game for Contention-Aware Reliable Data Forwarding in Vehicular Mobile Cloud.,2015,48,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs48.html#KumarIMR15,https://doi.org/10.1016/j.future.2014.10.013 +F. Ferstl,Job- and resource-management systems in heterogeneous clusters.,1996,12,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs12.html#Ferstl96,https://doi.org/10.1016/0167-739X(96)84677-2 +Vincent Van Dongen,Mapping uniform recurrences onto small size arrays.,1992,8,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs8.html#Dongen92,https://doi.org/10.1016/0167-739X(92)90068-M +Hong Zheng,Learning to detect texture objects by artificial immune approaches.,2004,20,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs20.html#ZhengZN04,https://doi.org/10.1016/j.future.2003.11.009 +Stefania Bandini,Cellular automata.,2002,18,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs18.html#Bandini02,https://doi.org/10.1016/S0167-739X(02)00067-5 +Gregor Pipan,Use of the TRIPOD overlay network for resource discovery.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#Pipan10,https://doi.org/10.1016/j.future.2010.02.002 +Mark M. Mathis,A performance model of non-deterministic particle transport on large-scale systems.,2006,22,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs22.html#MathisKH06,https://doi.org/10.1016/j.future.2004.11.018 +Shojiro Nishio,An evaluation of the FGCS data and knowledge base system - expectations and achievements.,1993,9,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs9.html#Nishio93,https://doi.org/10.1016/0167-739X(93)90008-D +Roger L. King,An artificial immune system model for intelligent agents.,2001,17,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs17.html#KingRLR01,https://doi.org/10.1016/S0167-739X(99)00115-6 +Tao Wang,Self-adaptive cloud monitoring with online anomaly detection.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#WangXZGZ18,https://doi.org/10.1016/j.future.2017.09.067 +Jining Yan,A cloud-based remote sensing data production system.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#YanMWCJ18,https://doi.org/10.1016/j.future.2017.02.044 +Martin Rumpf,Recent numerical methods - A challenge for efficient visualization.,1999,15,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs15.html#Rumpf99,https://doi.org/10.1016/S0167-739X(98)00049-1 +Hai Xiang Lin,Combining the power of high speed computer systems and efficient algorithms.,2001,18,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs18.html#LinC01,https://doi.org/10.1016/S0167-739X(00)00089-3 +Shadi A. Aljawarneh,Investigations of automatic methods for detecting the polymorphic worms signatures.,2016,60,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs60.html#AljawarnehMM16,https://doi.org/10.1016/j.future.2016.01.020 +Burkhard Stiller,Charging and accounting in high-speed networks.,2003,19,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs19.html#StillerRGHF03,https://doi.org/10.1016/S0167-739X(02)00104-8 +Andrea Dessi,A machine-learning approach to ranking RDF properties.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#DessiA16,https://doi.org/10.1016/j.future.2015.04.018 +Mohamed Ben Belgacem,MUSCLE-HPC: A new high performance API to couple multiscale parallel applications.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#BelgacemC17,https://doi.org/10.1016/j.future.2016.08.009 +Dian Shen,Stochastic modeling of dynamic right-sizing for energy-efficiency in cloud data centers.,2015,48,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs48.html#ShenLDFWJL15,https://doi.org/10.1016/j.future.2014.09.012 +Ryo Kanbayashi,A distributed architecture of Sensing Web for sharing open sensor nodes.,2011,27,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs27.html#KanbayashiS11,https://doi.org/10.1016/j.future.2010.11.022 +Chin-Feng Lai,CPRS: A cloud-based program recommendation system for digital TV platforms.,2011,27,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs27.html#LaiCHHC11,https://doi.org/10.1016/j.future.2010.10.002 +A. Peakall,Strategies for the implementation of the BBS communication tests on the supernode and their implications for efficiency.,1995,11,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs11.html#PeakallR95,https://doi.org/10.1016/0167-739X(94)00046-H +Andrei Tchernykh,Adaptive energy efficient scheduling in Peer-to-Peer desktop grids.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#TchernykhPBS14,https://doi.org/10.1016/j.future.2013.07.011 +Elhadi M. Shakshuki,WSN in cyber physical systems: Enhanced energy management routing approach using software agents.,2014,31,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs31.html#ShakshukiMS14,https://doi.org/10.1016/j.future.2013.03.001 +Zhenqiu Huang,Building edge intelligence for online activity recognition in service-oriented IoT systems.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#HuangLTYS18,https://doi.org/10.1016/j.future.2018.03.003 +Alfons G. Hoekstra,Unsteady flow in a 2D elastic tube with the LBGK method.,2004,20,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs20.html#HoekstraHAS04,https://doi.org/10.1016/j.future.2003.12.003 +Salvatore Di Gregorio,High performance scientific computing by a parallel cellular environment.,1997,12,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs12.html#GregorioRSST97,https://doi.org/10.1016/S0167-739X(96)00023-4 +Makoto Nagao,Science and technology agency's Mu machine translation project.,1986,2,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs2.html#NagaoTN86,https://doi.org/10.1016/0167-739X(86)90007-5 +Rajiv Ranjan,Model-driven provisioning of application services in hybrid computing environments.,2013,29,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs29.html#RanjanBN13,https://doi.org/10.1016/j.future.2013.01.007 +Hugo Jonkers,On the use of VRML in educational software: Experiences from the project: JIMM Problem Solver.,2000,17,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs17.html#Jonkers00,https://doi.org/10.1016/S0167-739X(99)00103-X +Qi Feng,Anonymous biometrics-based authentication scheme with key distribution for mobile multi-server environment.,2018,84,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs84.html#FengHZW18,https://doi.org/10.1016/j.future.2017.07.040 +Annunziata D'Orazio,Simulating two-dimensional thermal channel flows by means of a lattice Boltzmann method with new boundary conditions.,2004,20,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs20.html#DOrazioS04,https://doi.org/10.1016/j.future.2003.12.005 +Runhe Huang,The contours of a human individual model based empathetic u-pillbox system for humanistic geriatric healthcare.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#HuangZM14,https://doi.org/10.1016/j.future.2013.09.026 +Huansheng Ning,Cybermatics: Cyber-physical-social-thinking hyperspace based science and technology.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#NingLMYH16,https://doi.org/10.1016/j.future.2015.07.012 +Eva Kern,Sustainable software products - Towards assessment criteria for resource and energy efficiency.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#KernHGMFGN18,https://doi.org/10.1016/j.future.2018.02.044 +Osvaldo Gervasi,SIMBEX: a portal for the a priori simulation of crossed beam experiments.,2004,20,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs20.html#GervasiL04,https://doi.org/10.1016/j.future.2003.11.028 +Khalid Mahmood 0002,An elliptic curve cryptography based lightweight authentication scheme for smart grid communication.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#MahmoodCNKLS18,https://doi.org/10.1016/j.future.2017.05.002 +Sébastien Canard,Highly privacy-protecting data sharing in a tree structure.,2016,62,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs62.html#CanardD16,https://doi.org/10.1016/j.future.2016.01.019 +Rifaqat Ali,A secure user authentication and key-agreement scheme using wireless sensor networks for agriculture monitoring.,2018,84,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs84.html#AliPKKC18,https://doi.org/10.1016/j.future.2017.06.018 +Reginald Cushing,Towards a data processing plane: An automata-based distributed dynamic data processing model.,2016,59,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs59.html#CushingBBL16,https://doi.org/10.1016/j.future.2015.11.016 +Ira Pohl,Should robots have nuclear arms? AI technology and SDI software.,1987,3,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs3.html#Pohl87,https://doi.org/10.1016/0167-739X(87)90004-5 +Chien-Chung Shen,Discrete-event simulation on the Internet and the Web.,2000,17,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs17.html#Shen00,https://doi.org/10.1016/S0167-739X(99)00113-2 +Jenn-Wei Lin,Integrating QoS awareness with virtualization in cloud computing systems for delay-sensitive applications.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#LinCL14,https://doi.org/10.1016/j.future.2013.12.034 +Panagiotis C. Kokkinos,Efficient data consolidation in grid networks and performance analysis.,2011,27,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs27.html#KokkinosCV11,https://doi.org/10.1016/j.future.2010.08.005 +F. Reale,A parallel 2-d hydrodynamic FORTRAN code for astrophysical applications on a Meiko computing surface.,1993,9,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs9.html#RealeBS93,https://doi.org/10.1016/0167-739X(93)90022-H +Michel Carpentier,Community strategy in information technology and telecommunications.,1986,2,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs2.html#Carpentier86,https://doi.org/10.1016/0167-739X(86)90033-6 +Sangyoon Oh,Optimizing Web Service messaging performance in mobile computing.,2007,23,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs23.html#OhF07,https://doi.org/10.1016/j.future.2006.10.004 +Gustavo Sousa Pavani,Distributed meta-scheduling in lambda grids by means of Ant Colony Optimization.,2016,63,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs63.html#PavaniT16,https://doi.org/10.1016/j.future.2016.04.005 +Robert P. Biuk-Aghai,Visualizing large-scale human collaboration in Wikipedia.,2014,31,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs31.html#Biuk-AghaiPS14,https://doi.org/10.1016/j.future.2013.04.001 +Rui Li,A Load-balancing method for network GISs in a heterogeneous cluster-based system using access density.,2013,29,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs29.html#LiZXW13,https://doi.org/10.1016/j.future.2012.08.005 +Jiageng Li,A scalable authorization approach for the Globus grid system.,2005,21,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs21.html#LiC05,https://doi.org/10.1016/j.future.2003.10.005 +Hongjun Dai,Security enhancement of cloud servers with a redundancy-based fault-tolerant cache structure.,2015,52,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs52.html#DaiZZQT15,https://doi.org/10.1016/j.future.2015.03.001 +Elena V. Zudilova,Bringing combined interaction to a problem solving environment for vascular reconstruction.,2005,21,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs21.html#ZudilovaS05,https://doi.org/10.1016/j.future.2004.04.004 +Christophe Cérin,Sequential in-core sorting performance for a SQL data service and for parallel sorting on heterogeneous clusters.,2006,22,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs22.html#CerinKFJ06,https://doi.org/10.1016/j.future.2006.02.014 +Vicki H. Allan,Convert2Java: semi-automatic conversion of C to Java.,2001,18,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs18.html#AllanC01,https://doi.org/10.1016/S0167-739X(00)00092-3 +Daniel Meana-Llorián,IoFClime: The fuzzy logic and the Internet of Things to control indoor temperature regarding the outdoor ambient conditions.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#Meana-LlorianGG17,https://doi.org/10.1016/j.future.2016.11.020 +Xiaoyu Yang,A business-oriented Cloud federation model for real-time applications.,2012,28,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs28.html#YangNSM12,https://doi.org/10.1016/j.future.2012.02.005 +Sundari M. Sivagama,Grids with multiple batch systems for performance enhancement of multi-component and parameter sweep parallel applications.,2010,26,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs26.html#SundariVN10,https://doi.org/10.1016/j.future.2009.08.009 +Mohammad Hamdaqa,An approach based on citation analysis to support effective handling of regulatory compliance.,2011,27,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs27.html#HamdaqaH11,https://doi.org/10.1016/j.future.2010.09.007 +Mehiar Dabbagh,Fast dynamic internet mapping.,2014,39,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs39.html#DabbaghSKEC14,https://doi.org/10.1016/j.future.2014.04.006 +Damián Serrano,SLA guarantees for cloud services.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#SerranoBKOLLSAS16,https://doi.org/10.1016/j.future.2015.03.018 +Vikrant Bhateja,Unsharp masking approaches for HVS based enhancement of mammographic masses: A comparative evaluation.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#BhatejaMU18,https://doi.org/10.1016/j.future.2017.12.006 +Len Dekker,Optical link in the Delft Parallel Processor - an example of MOMI-connection in MIMD-supercomputers.,1988,4,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs4.html#DekkerFSZ88,https://doi.org/10.1016/0167-739X(88)90003-9 +Eddy Caron,When self-stabilization meets real platforms: An experimental study of a peer-to-peer service discovery system.,2013,29,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs29.html#CaronCT13,https://doi.org/10.1016/j.future.2012.10.003 +Claus-Peter Alberts,Surface reconstruction from scan paths.,2004,20,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs20.html#Alberts04,https://doi.org/10.1016/j.future.2004.05.022 +Giancarlo Fortino,Using trust and local reputation for group formation in the Cloud of Things.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#FortinoMRS18,https://doi.org/10.1016/j.future.2018.07.021 +Lifang Zhang,Privacy-preserving trust management for unwanted traffic control.,2017,72,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs72.html#ZhangYK17,https://doi.org/10.1016/j.future.2016.06.036 +Giovanni Merlino,Mobile crowdsensing as a service: A platform for applications on top of sensing Clouds.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#MerlinoADPPP16,https://doi.org/10.1016/j.future.2015.09.017 +Herwig A. Laue,ATOS - An AI-based space mission operations system.,1992,7,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs7.html#Laue92,https://doi.org/10.1016/0167-739X(92)90057-I +D. Golby,Implementation of a cell-vertex FV code for turbulent transonic flows on a Meiko computing surface.,1995,11,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs11.html#GolbyL95,https://doi.org/10.1016/0167-739X(94)00055-J +Jean-Claude Charr,JACEP2P-V2: A fully decentralized and fault tolerant environment for executing parallel iterative asynchronous applications on volatile distributed architectures.,2011,27,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs27.html#CharrCL11,https://doi.org/10.1016/j.future.2010.04.013 +A. Pudner,DLM - a powerful ai computer for embedded expert systems.,1987,3,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs3.html#Pudner87,https://doi.org/10.1016/0167-739X(87)90034-3 +Carlo Manuali,GriF: A new collaborative framework for a web service approach to grid empowered calculations.,2011,27,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs27.html#ManualiL11,https://doi.org/10.1016/j.future.2010.08.006 +Jernej Trnkoczy,Improving the performance of Federated Digital Library services.,2008,24,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs24.html#TrnkoczyS08,https://doi.org/10.1016/j.future.2008.04.007 +Chao-Tung Yang,A Recursively-Adjusting Co-allocation scheme with a Cyber-Transformer in Data Grids.,2009,25,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs25.html#YangYWHL09,https://doi.org/10.1016/j.future.2006.11.005 +Kai Schweinsberg,Advantages of complex SQL types in storing XML documents.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#SchweinsbergW17,https://doi.org/10.1016/j.future.2016.02.013 +Chih-Chiang Hsu,Online scheduling of workflow applications in grid environments.,2011,27,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs27.html#HsuHW11,https://doi.org/10.1016/j.future.2010.10.015 +Rui-Yang Chen,A traceability chain algorithm for artificial neural networks using T-S fuzzy cognitive maps in blockchain.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#Chen18,https://doi.org/10.1016/j.future.2017.09.077 +Johannes Schneider,Searching for Backbones--a high-performance parallel algorithm for solving combinatorial optimization problems.,2003,19,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs19.html#Schneider03,https://doi.org/10.1016/S0167-739X(02)00106-1 +Xiong Li 0002,A secure chaotic map-based remote authentication scheme for telecare medicine information systems.,2018,84,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs84.html#00020KX0018,https://doi.org/10.1016/j.future.2017.08.029 +Jian Wang,Resisting free-riding behavior in BitTorrent.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#WangSULN10,https://doi.org/10.1016/j.future.2009.05.014 +Arcangelo Castiglione,Secure group communication schemes for dynamic heterogeneous distributed computing.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#CastiglioneDSR17,https://doi.org/10.1016/j.future.2015.11.026 +Mirko Mariotti,Strategies and systems towards grids and clouds integration: A DBMS-based solution.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#MariottiGVCC18,https://doi.org/10.1016/j.future.2017.02.047 +Hui Lin,A reliable recommendation and privacy-preserving based cross-layer reputation mechanism for mobile cloud computing.,2015,52,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs52.html#LinXMW15,https://doi.org/10.1016/j.future.2014.10.032 +Jean-Marc Brenot,ARIANEXPERT: A knowledge based system to analyze ARIANE's mission data.,1992,7,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs7.html#BrenotPAP92,https://doi.org/10.1016/0167-739X(92)90052-D +Bahar Farahani,Towards fog-driven IoT eHealth: Promises and challenges of IoT in medicine and healthcare.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#FarahaniFCBCM18,https://doi.org/10.1016/j.future.2017.04.036 +Ward Van Heddeghem,Distributed computing for carbon footprint reduction by exploiting low-footprint energy availability.,2012,28,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs28.html#HeddeghemVCPD12,https://doi.org/10.1016/j.future.2011.05.004 +Elena Celledoni,Commutator-free Lie group methods.,2003,19,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs19.html#CelledoniMO03,https://doi.org/10.1016/S0167-739X(02)00161-9 +Julio C. S. dos Anjos,MRA++: Scheduling and data placement on MapReduce for heterogeneous environments.,2015,42,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs42.html#AnjosIKTAG15,https://doi.org/10.1016/j.future.2014.09.001 +Sangyoon Oh,Real-time performance analysis for publish/subscribe systems.,2010,26,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs26.html#OhKF10,https://doi.org/10.1016/j.future.2009.09.001 +Tim Stevens,Multi-cost job routing and scheduling in Grid networks.,2009,25,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs25.html#StevensLDDCKV09,https://doi.org/10.1016/j.future.2008.08.004 +Antonio Coronato,MiPeG: A middleware infrastructure for pervasive grids.,2008,24,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs24.html#CoronatoP08,https://doi.org/10.1016/j.future.2007.04.007 +Ioanna Lytra,Harmonizing architectural decisions with component view models using reusable architectural knowledge transformations and constraints.,2015,47,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs47.html#LytraTZ15,https://doi.org/10.1016/j.future.2014.11.010 +Markus Baumann,Singular value decomposition of time-varying matrices.,2003,19,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs19.html#BaumannH03,https://doi.org/10.1016/S0167-739X(02)00162-0 +YangSun Lee,Design and implementation of the secure compiler and virtual machine for developing secure IoT services.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#LeeJS17,https://doi.org/10.1016/j.future.2016.03.014 +Jianyong Wang,Cluster file systems: a case study.,2002,18,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs18.html#WangX02,https://doi.org/10.1016/S0167-739X(01)00057-7 +Dieter Kranzlmüller,Tools for program development and analysis.,2003,19,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs19.html#KranzlmullerV03,https://doi.org/10.1016/S0167-739X(02)00186-3 +Tahir Maqsood,Congestion-aware core mapping for Network-on-Chip based systems using betweenness centrality.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#MaqsoodBM18,https://doi.org/10.1016/j.future.2016.12.031 +Lansheng Han,Owner based malware discrimination.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#HanLHJL18,https://doi.org/10.1016/j.future.2016.05.020 +Marjorie Bardeen,The QuarkNet/Grid Collaborative Learning e-Lab.,2006,22,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs22.html#BardeenGJNQWZ06,https://doi.org/10.1016/j.future.2006.03.001 +Zhixing Huang,Resource trading using cognitive agents: A hybrid perspective and its simulation.,2007,23,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs23.html#HuangQ07,https://doi.org/10.1016/j.future.2007.02.006 +Benno J. Overeinder,A dynamic load balancing system for parallel cluster computing.,1996,12,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs12.html#OvereinderSHH96,https://doi.org/10.1016/0167-739X(95)00038-T +Andrew Tokmakoff,AusPlots Rangelands field data collection and publication: Infrastructure for ecological monitoring.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#TokmakoffSTL16,https://doi.org/10.1016/j.future.2015.08.016 +K. Kanagaraj,Structure aware resource estimation for effective scheduling and execution of data intensive workflows in cloud.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#KanagarajS18,https://doi.org/10.1016/j.future.2017.09.001 +Jan F. de Ronde,Load balancing by redundant decomposition and mapping.,1997,12,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs12.html#RondeSS97,https://doi.org/10.1016/S0167-739X(97)83341-9 +Per-Olov östberg,Decentralized scalable fairshare scheduling.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#OstbergEE13,https://doi.org/10.1016/j.future.2012.06.001 +Chris Caerts,PDG: A process-level debugger for concurrent programs in the GRAPE parallel programming environment.,1995,11,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs11.html#CaertsLP95,https://doi.org/10.1016/0167-739X(94)00062-J +Daniel S. Katz,Application skeletons: Construction and use in eScience.,2016,59,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs59.html#KatzMZJ16,https://doi.org/10.1016/j.future.2015.10.001 +Chao-Tung Yang,Implementation of a medical image file accessing system in co-allocation data grids.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#YangCY10,https://doi.org/10.1016/j.future.2010.05.013 +Jun Wu,A novel multi-agent reinforcement learning approach for job scheduling in Grid computing.,2011,27,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs27.html#WuXZL11,https://doi.org/10.1016/j.future.2010.10.009 +Rajiv Ranjan,A note on exploration of IoT generated big data using semantics.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#RanjanTHB17,https://doi.org/10.1016/j.future.2017.06.032 +Enrico Barbierato,Performance evaluation of NoSQL big-data applications using multi-formalism models.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#BarbieratoGI14,https://doi.org/10.1016/j.future.2013.12.036 +Ting Chen,FPM: Four-factors Propagation Model for passive P2P worms.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#ChenZW14,https://doi.org/10.1016/j.future.2013.06.025 +Allaa R. Hilal,A distributed sensor management for large-scale IoT indoor acoustic surveillance.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#HilalSTKB18,https://doi.org/10.1016/j.future.2018.01.020 +Paola Grosso,CineGrid: Super high definition media over optical networks.,2011,27,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs27.html#GrossoHOHL11,https://doi.org/10.1016/j.future.2011.03.003 +Zacharia Fadika,MARIANE: Using MApReduce in HPC environments.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#FadikaDGR14,https://doi.org/10.1016/j.future.2013.12.007 +Marco Dorigo,Ant algorithms and stigmergy.,2000,16,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs16.html#DorigoBT00,https://doi.org/10.1016/S0167-739X(00)00042-X +Zhenghua Xue,A performance and energy optimization mechanism for cooperation-oriented multiple server clusters.,2012,28,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs28.html#XueDHL12,https://doi.org/10.1016/j.future.2011.04.021 +Flora Amato,Improving security in cloud by formal modeling of IaaS resources.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#AmatoMMC18,https://doi.org/10.1016/j.future.2017.08.016 +Daniel Lombraña Gonzalez,Characterizing fault tolerance in genetic programming.,2010,26,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs26.html#GonzalezVC10,https://doi.org/10.1016/j.future.2010.02.006 +Geoffrey C. Fox,Recent work in utility and cloud computing.,2013,29,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs29.html#FoxP13,https://doi.org/10.1016/j.future.2013.01.002 +Rainer Steiger,Using automatic differentiation to compute derivatives for a quantum-chemical computer program.,2005,21,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs21.html#SteigerBLT05,https://doi.org/10.1016/j.future.2004.11.011 +Stefan Wesner,Special Section on Terascale Computing.,2015,53,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs53.html#WesnerSBRPG15,https://doi.org/10.1016/j.future.2015.07.015 +Hao Jin,Full integrity and freshness for cloud data.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#JinZJLWL18,https://doi.org/10.1016/j.future.2016.06.013 +Wei Ye,Role mining using answer set programming.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#YeLGLW16,https://doi.org/10.1016/j.future.2014.10.018 +Mohamed Ben Belgacem,A hybrid HPC/cloud distributed infrastructure: Coupling EC2 cloud resources with HPC clusters to run large tightly coupled multiscale applications.,2015,42,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs42.html#BelgacemC15,https://doi.org/10.1016/j.future.2014.08.003 +Marcus Rickert,Dynamic traffic assignment on parallel computers in TRANSIMS.,2001,17,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs17.html#RickertN01,https://doi.org/10.1016/S0167-739X(00)00032-7 +Wenjun Jiang,Generating trusted graphs for trust evaluation in online social networks.,2014,31,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs31.html#JiangW014,https://doi.org/10.1016/j.future.2012.06.010 +Muhammad Faheem,MQRP: Mobile sinks-based QoS-aware data gathering protocol for wireless sensor networks-based smart grid applications in the context of industry 4.0-based on internet of things.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#FaheemG18,https://doi.org/10.1016/j.future.2017.10.009 +Francesco Palmieri,Towards a federated Metropolitan Area Grid environment: The SCoPE network-aware infrastructure.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#PalmieriP10,https://doi.org/10.1016/j.future.2010.02.003 +R. E. Spencer,The Role of ESLEA in the development of eVLBI.,2010,26,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs26.html#SpencerHSCRBKG10,https://doi.org/10.1016/j.future.2008.09.014 +Ying Dong,HyO-XTM: a set of hyper-graph operations on XML Topic Map toward knowledge management.,2004,20,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs20.html#DongL04,https://doi.org/10.1016/S0167-739X(03)00166-3 +Simon Price,SubSift web services and workflows for profiling and comparing scientists and their published works.,2013,29,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs29.html#PriceFSBR13,https://doi.org/10.1016/j.future.2011.10.016 +Eduardo Javier Huerta Yero,JoiN: The implementation of a Java-based massively parallel grid.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#YeroLSZH05,https://doi.org/10.1016/j.future.2004.12.004 +S. Mounir Alaoui,Mapping tasks onto nodes: a parallel local neighborhood approach.,2001,17,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs17.html#AlaouiEFBB01,https://doi.org/10.1016/S0167-739X(99)00120-X +Xiaofei Xu,S-ABC: A paradigm of service domain-oriented artificial bee colony algorithms for service selection and composition.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#XuLWSYW17,https://doi.org/10.1016/j.future.2016.09.008 +Bin Dong,Towards minimizing disk I/O contention: A partitioned file assignment approach.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#DongLXR14,https://doi.org/10.1016/j.future.2013.12.022 +Nicolas Hidalgo,Measuring stream processing systems adaptability under dynamic workloads.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#HidalgoRVW18,https://doi.org/10.1016/j.future.2018.05.084 +Sheng-Yao Su,DARS: A dynamic adaptive replica strategy under high load Cloud-P2P.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#SuYL18,https://doi.org/10.1016/j.future.2017.07.046 +Hideo Aiso,Editorial.,1986,2,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs2.html#AisoKR86,https://doi.org/10.1016/0167-739X(86)90030-0 +Ed Dawson,Key management in a non-trusted distributed environment.,2000,16,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs16.html#DawsonCL00,https://doi.org/10.1016/S0167-739X(99)00056-4 +John Oyekan,Remote real-time collaboration through synchronous exchange of digitised human-workpiece interactions.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#OyekanPTBBM17,https://doi.org/10.1016/j.future.2016.08.012 +Gaurav Bhatnagar,Fractional dual tree complex wavelet transform and its application to biometric security during communication and transmission.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#BhatnagarWR12,https://doi.org/10.1016/j.future.2010.11.012 +Ashley D. Lloyd,Embedded systems for global e-Social Science: Moving computation rather than data.,2013,29,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs29.html#LloydSAM13,https://doi.org/10.1016/j.future.2012.12.013 +Larry Smarr,Special section: OptIPlanet - The OptIPuter global collaboratory.,2009,25,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs25.html#SmarrBL09,https://doi.org/10.1016/j.future.2008.07.014 +Hanhua Chen,Top-k followee recommendation over microblogging systems by exploiting diverse information sources.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#ChenCJ16,https://doi.org/10.1016/j.future.2014.05.002 +Kewei Sha,On security challenges and open issues in Internet of Things.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#ShaWYWS18,https://doi.org/10.1016/j.future.2018.01.059 +Ping Li 0018,Privacy-preserving machine learning with multiple data providers.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#LiLYLCX18,https://doi.org/10.1016/j.future.2018.04.076 +Josef Spillner,Creating optimal cloud storage systems.,2013,29,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs29.html#SpillnerMS13,https://doi.org/10.1016/j.future.2012.06.004 +Tudor Cioara,Expert system for nutrition care process of older adults.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#CioaraASBMRTDP18,https://doi.org/10.1016/j.future.2017.05.037 +Weihong Chen,Efficient task scheduling for budget constrained parallel applications on heterogeneous cloud computing systems.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#ChenXLBFL17,https://doi.org/10.1016/j.future.2017.03.008 +Clive Sinclair,Sir Clive Sinclair on the third industrial revolution.,1984,1,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs1.html#Sinclair84,https://doi.org/10.1016/0167-739X(84)90033-5 +Huaqun Guo,DINCast: a hop efficient dynamic multicast infrastructure for P2P computing.,2005,21,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs21.html#GuoNWT05,https://doi.org/10.1016/j.future.2004.04.015 +Germán Moltó,A service-oriented WSRF-based architecture for metascheduling on computational Grids.,2008,24,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs24.html#MoltoHA08,https://doi.org/10.1016/j.future.2007.05.001 +Ivan Breskovic,Creating standardized products for electronic markets.,2013,29,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs29.html#BreskovicAB13,https://doi.org/10.1016/j.future.2012.06.007 +Yang Gao 0001,Adaptive grid job scheduling with genetic algorithms.,2005,21,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs21.html#GaoRH05,https://doi.org/10.1016/j.future.2004.09.033 +Albert Y. Zomaya,Parallel computing problems and nature-inspired solutions.,2001,17,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs17.html#ZomayaEO01,https://doi.org/10.1016/S0167-739X(99)00114-4 +Huimin Lu,Low illumination underwater light field images reconstruction using deep convolutional neural networks.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#LuLUKS18,https://doi.org/10.1016/j.future.2018.01.001 +Louis O. Hertzberger,Progress in the fifth generation inference architectures.,1984,1,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs1.html#HertzbergerR84,https://doi.org/10.1016/0167-739X(84)90030-X +Frans Middelham,Predictability: some thoughts on modeling.,2001,17,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs17.html#Middelham01,https://doi.org/10.1016/S0167-739X(00)00031-5 +R. F. Fowler,Porting a three-dimensional semiconductor device modelling program to the Intel iPSC/860 hypercube.,1995,11,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs11.html#FowlerHG95a,https://doi.org/10.1016/0167-739X(94)00048-J +Laxmikant V. Kalé,Scaling applications to massively parallel machines using Projections performance analysis tool.,2006,22,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs22.html#KaleZLK06,https://doi.org/10.1016/j.future.2004.11.020 +Fabian Monrose,Keystroke dynamics as a biometric for authentication.,2000,16,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs16.html#MonroseR00,https://doi.org/10.1016/S0167-739X(99)00059-X +Maryam Amiri,An online learning model based on episode mining for workload prediction in cloud.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#AmiriKM18,https://doi.org/10.1016/j.future.2018.04.044 +Wei Xiong,Automating smart recommendation from natural language API descriptions via representation learning.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#XiongLLHW18,https://doi.org/10.1016/j.future.2018.05.006 +Yujue Wang,Provably secure robust optimistic fair exchange of distributed signatures.,2016,62,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs62.html#WangWWQMD16,https://doi.org/10.1016/j.future.2016.03.012 +Kan Zhang,A novel bartering exchange ring based incentive mechanism for peer-to-peer systems.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#ZhangA13,https://doi.org/10.1016/j.future.2011.06.005 +Hai Zhuge,The schema theory for semantic link network.,2010,26,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs26.html#ZhugeS10,https://doi.org/10.1016/j.future.2009.08.012 +Motohiko Matsuda,Network interface active messages for low overhead communication on SMP PC clusters.,2000,16,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs16.html#MatsudaTKS00,https://doi.org/10.1016/S0167-739X(99)00137-5 +Jean Duprat,LAIOS: a parallel execution of PROLOG by data copies.,1990,6,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs6.html#Duprat90,https://doi.org/10.1016/0167-739X(90)90029-D +Kashif Bilal,A taxonomy and survey on Green Data Center Networks.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#BilalMKHAWISDAKAJK14,https://doi.org/10.1016/j.future.2013.07.006 +Esin Onbasioglu,A comparative workload-based methodology for performance evaluation of parallel computers.,1997,12,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs12.html#OnbasiogluP97,https://doi.org/10.1016/S0167-739X(97)83070-1 +Xiaoyong Tang,A stochastic scheduling algorithm for precedence constrained tasks on Grid.,2011,27,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs27.html#TangLLFW11,https://doi.org/10.1016/j.future.2011.04.007 +Mariam Kiran,Enabling intent to configure scientific networks for high performance demands.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#KiranPMTGM18,https://doi.org/10.1016/j.future.2017.04.020 +David Gil,Modeling and Management of Big Data: Challenges and opportunities.,2016,63,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs63.html#GilS16,https://doi.org/10.1016/j.future.2015.07.019 +Bo-Wei Chen,Efficient multiple incremental computation for Kernel Ridge Regression with Bayesian uncertainty modeling.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#ChenAPG18,https://doi.org/10.1016/j.future.2017.08.053 +Kornel Skalkowski,QoS-based storage resources provisioning for grid applications.,2013,29,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs29.html#SkalkowskiS0K13,https://doi.org/10.1016/j.future.2012.08.011 +Vít Rusnák,Toward natural multi-user interaction in advanced collaborative display environments.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#RusnakRH16,https://doi.org/10.1016/j.future.2015.03.019 +Masha Sosonkina,Using the parallel algebraic recursive multilevel solver in modern physical applications.,2004,20,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs20.html#SosonkinaSC04,https://doi.org/10.1016/S0167-739X(03)00189-4 +Karl-Heinz Narjes,Perspectives for European Cooperation.,1986,2,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs2.html#Narjes86,https://doi.org/10.1016/0167-739X(86)90032-4 +Eduardo Huedo,A recursive architecture for hierarchical grid resource management.,2009,25,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs25.html#HuedoML09,https://doi.org/10.1016/j.future.2008.09.007 +Kun Huang 0003,Optimizing the BitTorrent performance using an adaptive peer selection strategy.,2008,24,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs24.html#HuangWZL08,https://doi.org/10.1016/j.future.2007.10.001 +Yongquan Fu,A general scalable and accurate decentralized level monitoring method for large-scale dynamic service provision in hybrid clouds.,2013,29,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs29.html#FuWB13,https://doi.org/10.1016/j.future.2012.11.001 +Wissem Inoubli,An experimental survey on big data frameworks.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#InoubliAMMN18,https://doi.org/10.1016/j.future.2018.04.032 +Bassam Jamil Mohd,Hardware design and modeling of lightweight block ciphers for secure communications.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#MohdHYKB18,https://doi.org/10.1016/j.future.2017.03.025 +Liwen Ma,Localization of a high-speed train using a speed model based on the gradient descent algorithm.,2018,85,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs85.html#MaWL18,https://doi.org/10.1016/j.future.2018.03.041 +Bo Yuan 0004,Efficient service discovery in decentralized online social networks.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#YuanLA18,https://doi.org/10.1016/j.future.2017.04.022 +Leyli Mohammad Khanli,FRDT: Footprint Resource Discovery Tree for grids.,2011,27,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs27.html#KhanliK11,https://doi.org/10.1016/j.future.2010.08.002 +Lluis Pamies-Juarez,In-network redundancy generation for opportunistic speedup of data backup.,2013,29,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs29.html#Pamies-JuarezDO13,https://doi.org/10.1016/j.future.2013.02.009 +Bangyu Wu,Workflow-based resource allocation to optimize overall performance of composite services.,2009,25,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs25.html#WuCCGS09,https://doi.org/10.1016/j.future.2008.06.003 +Alexandru E. Mizeranschi,MultiGrain/MAPPER: A distributed multiscale computing approach to modeling and simulating gene regulation networks.,2016,63,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs63.html#MizeranschiSSFB16,https://doi.org/10.1016/j.future.2016.04.002 +Roberto Giorgi,A scalable thread scheduling co-processor based on data-flow principles.,2015,53,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs53.html#GiorgiS15,https://doi.org/10.1016/j.future.2014.12.014 +Unil Yun,Sliding window based weighted erasable stream pattern mining for stream data applications.,2016,59,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs59.html#YunL16,https://doi.org/10.1016/j.future.2015.12.012 +Shu Tezuka,Monte Carlo grid for financial risk management.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#TezukaMTY05,https://doi.org/10.1016/j.future.2004.12.003 +Xiao Wei,Concept evolution analysis based on the Dissipative Structure of Concept Semantic Space.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#WeiZL18,https://doi.org/10.1016/j.future.2017.10.042 +Johann Dréo,Continuous interacting ant colony algorithm based on dense heterarchy.,2004,20,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs20.html#DreoS04,https://doi.org/10.1016/j.future.2003.07.015 +Gabriele Costa,Automatic security verification of mobile app configurations.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#CostaMVA18,https://doi.org/10.1016/j.future.2016.06.014 +Alexandru-Adrian Tantar,A parallel hybrid genetic algorithm for protein structure prediction on the computational grid.,2007,23,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs23.html#TantarMTPH07,https://doi.org/10.1016/j.future.2006.09.001 +Feng Wang,Maximizing positive influence spread in online social networks via fluid dynamics.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#WangJLW18,https://doi.org/10.1016/j.future.2017.05.050 +David Camacho,Bioinspired Algorithms in Complex Ephemeral Environments.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#CamachoCGV18,https://doi.org/10.1016/j.future.2018.07.055 +Alois Ferscha,N-MAP - an environment for the performance oriented development process of efficient distributed programs.,2000,16,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs16.html#FerschaJ00,https://doi.org/10.1016/S0167-739X(99)00071-0 +Gunther Stuer,Towards OGSA compatibility in the H2O metacomputing framework.,2005,21,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs21.html#StuerSB05,https://doi.org/10.1016/j.future.2004.09.011 +David Abramson,An Atmospheric Sciences Workflow and its implementation with Web Services.,2005,21,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs21.html#AbramsonKMK05,https://doi.org/10.1016/j.future.2004.09.025 +Andrei Poenaru,AFT: Adaptive and fault tolerant peer-to-peer overlay - A user-centric solution for data sharing.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#PoenaruIP18,https://doi.org/10.1016/j.future.2016.05.022 +Jin Li 0002,Internet of Things: Security and privacy in a connected world.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#LiYC18,https://doi.org/10.1016/j.future.2017.09.017 +Shiwen Zhang,Anonymizing popularity in online social networks with full utility.,2017,72,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs72.html#ZhangLL17,https://doi.org/10.1016/j.future.2016.05.007 +Tobias Blanke,Scholarly primitives: Building institutional infrastructure for humanities e-Science.,2013,29,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs29.html#BlankeH13,https://doi.org/10.1016/j.future.2011.06.006 +Jingyu Zhou,Preference-based mining of top-K influential nodes in social networks.,2014,31,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs31.html#ZhouZC14,https://doi.org/10.1016/j.future.2012.06.011 +Syeda ZarAfshan Goher,Cloud provider capacity augmentation through automated resource bartering.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#GoherBRM18,https://doi.org/10.1016/j.future.2017.09.080 +Zelei Liu,A novel process-based association rule approach through maximal frequent itemsets for big data processing.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#LiuHWDWZ18,https://doi.org/10.1016/j.future.2017.08.017 +öznur özkasap,Flat and hierarchical epidemics in P2P systems: Energy cost models and analysis.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#OzkasapCCK14,https://doi.org/10.1016/j.future.2013.09.009 +Christopher A. Bohn,Load balancing for heterogeneous clusters of PCs.,2002,18,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs18.html#BohnL02,https://doi.org/10.1016/S0167-739X(01)00058-9 +Zhicheng Cai,Price forecasting for spot instances in Cloud computing.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#CaiLRL18,https://doi.org/10.1016/j.future.2017.09.038 +Ragib Hasan,Aura: An incentive-driven ad-hoc IoT cloud framework for proximal mobile computation offloading.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#HasanHK18,https://doi.org/10.1016/j.future.2017.11.024 +Nicoletta Del Buono,Differential approaches for computing Euclidean diagonal norm balanced realizations in control theory.,2003,19,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs19.html#BuonoL03,https://doi.org/10.1016/S0167-739X(03)00041-4 +Jebaveerasingh Jebadurai,Super-resolution of retinal images using multi-kernel SVR for IoT healthcare applications.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#JebaduraiP18,https://doi.org/10.1016/j.future.2018.01.058 +Georgios Theodoropoulos,Editorial: Special Issue on Extreme Scale Parallel Architectures and Systems.,2014,30,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs30.html#TheodoropoulosKRA14,https://doi.org/10.1016/j.future.2013.10.010 +Fabio Farina,Distributed semantic document retrieval using O-FCN.,2009,25,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs25.html#FarinaC09,https://doi.org/10.1016/j.future.2009.03.002 +Weifeng Pan,Analyzing the structure of Java software systems by weighted K-core decomposition.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#PanLLMH18,https://doi.org/10.1016/j.future.2017.09.039 +Peter Kokol,Nursing informatics education for the next millenium.,1999,15,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs15.html#KokolZBK99,https://doi.org/10.1016/S0167-739X(98)00064-8 +John T. O'Donnell,A VLSI implementation of an architecture for applicative programming.,1988,4,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs4.html#ODonnellBK88,https://doi.org/10.1016/0167-739X(88)90008-8 +Sucha Smanchat,Scheduling parameter sweep workflow in the Grid based on resource competition.,2013,29,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs29.html#SmanchatILEA13,https://doi.org/10.1016/j.future.2013.01.005 +Jason Leigh,The global lambda visualization facility: An international ultra-high-definition wide-area visualization collaboratory.,2006,22,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs22.html#LeighRJJJSSSAWVLSPGKGLVDBCPDWLTRPCDWSKKHKCZBG06,https://doi.org/10.1016/j.future.2006.03.009 +Mehmet S. Aktas,Fault tolerant high performance Information Services for dynamic collections of Grid and Web services.,2007,23,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs23.html#AktasFP07,https://doi.org/10.1016/j.future.2006.05.009 +Wanlei Zhou,An analysis of update ordering in distributed replication systems.,2004,20,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs20.html#ZhouWJ04,https://doi.org/10.1016/S0167-739X(03)00174-2 +George Bosilca,OVM: Out-of-order execution parallel virtual machine.,2002,18,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs18.html#BosilcaFC02,https://doi.org/10.1016/S0167-739X(01)00071-1 +Yizhi Liu,Fusing audio vocabulary with visual features for pornographic video detection.,2014,31,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs31.html#LiuYXT14,https://doi.org/10.1016/j.future.2012.08.012 +Chin-Ling Chen,Combining quality of services path first routing and admission control to support VoIP traffic.,2013,29,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs29.html#Chen13a,https://doi.org/10.1016/j.future.2012.03.026 +Tudor Cioara,Optimized flexibility management enacting Data Centres participation in Smart Demand Response programs.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#CioaraABSAMVA18,https://doi.org/10.1016/j.future.2016.05.010 +John F. Gilmore,Military applications of expert systems.,1985,1,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs1.html#Gilmore85,https://doi.org/10.1016/0167-739X(85)90024-X +Kian Farsandaj,Scatter/Gather browsing of web service QoS data.,2012,28,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs28.html#FarsandajD12,https://doi.org/10.1016/j.future.2011.08.020 +Daniel C. Vanderster,Resource allocation on computational grids using a utility model and the knapsack problem.,2009,25,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs25.html#VandersterDPS09,https://doi.org/10.1016/j.future.2008.07.006 +Deok-Soo Kim,Normal vector compression of 3D mesh model based on clustering and relative indexing.,2004,20,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs20.html#KimCK04,https://doi.org/10.1016/j.future.2004.05.029 +Satish Anamalamudi,AODV routing protocol for Cognitive radio access based Internet of Things (IoT).,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#AnamalamudiSAA18,https://doi.org/10.1016/j.future.2017.12.060 +Yousaf Bin Zikria,A survey on routing protocols supported by the Contiki Internet of things operating system.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#ZikriaAIKY18,https://doi.org/10.1016/j.future.2017.12.045 +Michael T. Krieger,Building an open source cloud environment with auto-scaling resources for executing bioinformatics and biomedical workflows.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#KriegerTTK17,https://doi.org/10.1016/j.future.2016.02.008 +Massimo Ficco,Optimized task allocation on private cloud for hybrid simulation of large-scale critical systems.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#FiccoMPR17,https://doi.org/10.1016/j.future.2016.01.022 +Jesús Sánchez-Oro,Iterated Greedy algorithm for performing community detection in social networks.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#Sanchez-OroD18,https://doi.org/10.1016/j.future.2018.06.010 +Jinpeng Huai,ROST: Remote and hot service deployment with trustworthiness in CROWN Grid.,2007,23,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs23.html#HuaiSHZLL07,https://doi.org/10.1016/j.future.2007.01.004 +Steven Van den Berghe,Distributed policy-based management of measurement-based traffic engineering: design and implementation.,2003,19,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs19.html#BergheHCTD03,https://doi.org/10.1016/S0167-739X(02)00154-1 +Maristella Agosti,Digital library interoperability at high level of abstraction.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#AgostiFS16,https://doi.org/10.1016/j.future.2015.09.020 +J. T. Thirukrishna,Revamp energy efficiency in Homogeneous Wireless Sensor Networks using Optimized Radio Energy Algorithm (OREA) and Power-Aware Distance Source Routing protocol.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#ThirukrishnaKA18,https://doi.org/10.1016/j.future.2017.11.042 +Lin Wu 0002,DWARM: A wear-aware memory management scheme for in-memory file systems.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#WuZSCC18,https://doi.org/10.1016/j.future.2018.02.038 +Ahcène Bendjoudi,Hierarchical branch and bound algorithm for computational grids.,2012,28,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs28.html#BendjoudiMT12,https://doi.org/10.1016/j.future.2012.03.001 +Stephen L. Scott,System-level virtualization research at Oak Ridge National Laboratory.,2010,26,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs26.html#ScottVNTEO10,https://doi.org/10.1016/j.future.2009.07.001 +Peter M. A. Sloot,Resource management in distributed systems.,1996,12,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs12.html#Sloot96,https://doi.org/10.1016/0167-739X(95)00030-V +Rajkumar Buyya,Special section: Federated resource management in grid and cloud computing systems.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#BuyyaR10,https://doi.org/10.1016/j.future.2010.06.003 +Yutaka Watanobe,Hybrid intelligence aspects of programming in *AIDA algorithmic pictures.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#WatanobeM14,https://doi.org/10.1016/j.future.2013.12.031 +Hua Liu 0001,Rule-based visualization in the Discover computational steering collaboratory.,2005,21,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs21.html#LiuJPS05,https://doi.org/10.1016/j.future.2004.09.020 +K. Ravikanth,Simulation studies on the performance of an organizational model for graph reduction.,1990,6,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs6.html#RavikanthSV90,https://doi.org/10.1016/0167-739X(90)90031-8 +Sena Seneviratne,Task profiling model for load profile prediction.,2011,27,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs27.html#SeneviratneL11,https://doi.org/10.1016/j.future.2010.09.004 +Mahesh Pal,Assessment of the effectiveness of support vector machines for hyperspectral data.,2004,20,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs20.html#PalM04,https://doi.org/10.1016/j.future.2003.11.011 +Miroslaw Kupczyk,Applications on demand as the exploitation of the Migrating Desktop.,2005,21,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs21.html#KupczykLMPPW05,https://doi.org/10.1016/j.future.2004.09.009 +Chi-Hung Chi,Load-balancing data prefetching techniques.,2001,17,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs17.html#ChiY01,https://doi.org/10.1016/S0167-739X(00)00056-X +Tuan-Anh Nguyen,Programming the Grid with POP-C ++.,2007,23,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs23.html#NguyenK07,https://doi.org/10.1016/j.future.2006.04.012 +Andrew J. Bennett,Efficient shared-memory support for parallel graph reduction.,1997,12,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs12.html#BennettK97,https://doi.org/10.1016/S0167-739X(96)00019-2 +Jorge Gonzalez-Lopez,Distributed nearest neighbor classification for large-scale multi-label data on spark.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#Gonzalez-LopezV18,https://doi.org/10.1016/j.future.2018.04.094 +Faycal Bouhafs,Designing and evaluating an active grid architecture.,2005,21,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs21.html#BouhafsGLMPPT05,https://doi.org/10.1016/j.future.2004.09.023 +Padam Kumar,CTDNet III-An eager reduction model with laziness features.,1995,11,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs11.html#KumarGW95,https://doi.org/10.1016/0167-739X(95)00004-C +Jing Jian Li,Symmetric graphs and interconnection networks.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#LiL18,https://doi.org/10.1016/j.future.2017.05.016 +Entao Luo,Privacy-preserving multi-hop profile-matching protocol for proximity mobile social networks.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#LuoLAW17,https://doi.org/10.1016/j.future.2016.09.013 +Zhixing Huang,A multiple-perspective approach to constructing and aggregating Citation Semantic Link Network.,2010,26,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs26.html#HuangQ10,https://doi.org/10.1016/j.future.2009.07.006 +Shaobo Zhang,Enhancing privacy through uniform grid and caching in location-based services.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#ZhangCLW18,https://doi.org/10.1016/j.future.2017.06.022 +Zhiyong Zhang,Social media security and trustworthiness: Overview and new direction.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#ZhangG18,https://doi.org/10.1016/j.future.2016.10.007 +James S. Pascoe,Middleware enhancements for metropolitan area wireless Internet access.,2002,18,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs18.html#PascoeSVL02,https://doi.org/10.1016/S0167-739X(02)00037-7 +Marcelo Costa Oliveira,Towards applying content-based image retrieval in the clinical routine.,2007,23,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs23.html#OliveiraCM07,https://doi.org/10.1016/j.future.2006.06.009 +Kurt B. Ferreira,Accelerating incremental checkpointing for extreme-scale computing.,2014,30,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs30.html#FerreiraRBAB14,https://doi.org/10.1016/j.future.2013.04.017 +Xiaofeng Chen 0001,New and efficient conditional e-payment systems with transferability.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#00010MLW14,https://doi.org/10.1016/j.future.2013.07.015 +Juan Rodríguez-Covili,Towards a reference architecture for the design of mobile shared workspaces.,2011,27,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs27.html#Rodriguez-CoviliOPHFMM11,https://doi.org/10.1016/j.future.2010.05.014 +Andrew Burkimsher,A survey of scheduling metrics and an improved ordering policy for list schedulers operating on workloads with dependencies and a wide variation in execution *.,2013,29,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs29.html#BurkimsherBI13,https://doi.org/10.1016/j.future.2012.12.005 +Alexander A. Tulub,Coherent triplet and singlet states in tubulin dynamics.,2004,20,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs20.html#Tulub04,https://doi.org/10.1016/j.future.2003.11.026 +Chee Shin Yeo,Autonomic metered pricing for a utility computing service.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#YeoVCB10,https://doi.org/10.1016/j.future.2009.05.024 +Mathias Slawik,Establishing User-centric Cloud Service Registries.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#SlawikZK18,https://doi.org/10.1016/j.future.2018.03.010 +Jonas Lätt,VLADYMIR--a C++ matrix library for data-parallel applications.,2004,20,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs20.html#LattC04,https://doi.org/10.1016/j.future.2003.11.027 +Tomaz Amon,VRML - enhanced learning in biology and medicine.,2000,17,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs17.html#AmonV00,https://doi.org/10.1016/S0167-739X(99)00097-7 +Weiwei Chen 0002,Using imbalance metrics to optimize task clustering in scientific workflow executions.,2015,46,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs46.html#ChenSDS15,https://doi.org/10.1016/j.future.2014.09.014 +Kyle Benson,On the powerful use of simulations in the Quake-Catcher Network to efficiently position low-cost earthquake sensors.,2013,29,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs29.html#BensonSETLC13,https://doi.org/10.1016/j.future.2013.04.012 +Lee Samuel Finn,The laser interferometer gravitational-wave observatory scientific data archive.,1999,16,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs16.html#Finn99,https://doi.org/10.1016/S0167-739X(99)00041-2 +Aysan Rasooli Oskooei,COSHH: A classification and optimization based scheduler for heterogeneous Hadoop systems.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#OskooeiD14,https://doi.org/10.1016/j.future.2014.01.002 +Dawei Feng,Efficient distributed monitoring with active Collaborative Prediction.,2013,29,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs29.html#FengGG13,https://doi.org/10.1016/j.future.2013.06.001 +A. P. Varvitsiotis,Scaling issues in large PKI communities.,2000,16,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs16.html#Varvitsiotis00,https://doi.org/10.1016/S0167-739X(99)00060-6 +Hung Phi Nguyen,Hydrodynamic properties of fractal aggregates in 2D using Lattice Boltzmann simulation.,2004,20,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs20.html#NguyenCS04,https://doi.org/10.1016/j.future.2003.12.011 +Steve C. Chiu,Distributed smart disks for I/O-intensive workloads on switched interconnects.,2006,22,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs22.html#ChiuLC06,https://doi.org/10.1016/j.future.2005.09.007 +Freek Dijkstra,Using zero configuration technology for IP addressing in optical networks.,2006,22,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs22.html#DijkstraHL06,https://doi.org/10.1016/j.future.2006.03.021 +Tianqing Zhu,Answering differentially private queries for continual datasets release.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#ZhuLXZ18,https://doi.org/10.1016/j.future.2017.05.007 +Antonio Solano,Smart vending machines in the era of internet of things.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#SolanoDDG17,https://doi.org/10.1016/j.future.2016.10.029 +Xiaogang Wang,A potential HTTP-based application-level attack against Tor.,2011,27,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs27.html#WangLYL11,https://doi.org/10.1016/j.future.2010.04.007 +Jacques Chassin de Kergommeaux,Flexible performance visualization of parallel and distributed applications.,2003,19,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs19.html#KergommeauxS03,https://doi.org/10.1016/S0167-739X(02)00181-4 +Dominik Meiländer,Modeling the Scalability of Real-Time Online Interactive Applications on Clouds.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#MeilanderG18,https://doi.org/10.1016/j.future.2017.07.041 +Hao Wu 0010,Deviation-based neighborhood model for context-aware QoS prediction of cloud and IoT services.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#WuYHZZZ17,https://doi.org/10.1016/j.future.2016.10.015 +R. F. Fowler,BBS results for the iPSC/2 and iPSC/860.,1995,11,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs11.html#FowlerHG95,https://doi.org/10.1016/0167-739X(94)00047-I +Hui Huang 0010,Bitcoin-based fair payments for outsourcing computations of fog devices.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#HuangCWHS18,https://doi.org/10.1016/j.future.2016.12.016 +Kang Yang,Sensor attack detection using history based pairwise inconsistency.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#YangWJSLGLS18,https://doi.org/10.1016/j.future.2018.03.050 +Fredy Juarez,Dynamic energy-aware scheduling for parallel task-based application in cloud computing.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#JuarezEB18,https://doi.org/10.1016/j.future.2016.06.029 +Yuemei Xu,An adaptive per-application storage management scheme based on manifold learning in information centric networks.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#XuLLWZTC14,https://doi.org/10.1016/j.future.2013.09.016 +Shrideep Pallickara,Some Recent Advances in Utility and Cloud Computing.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#Pallickara16,https://doi.org/10.1016/j.future.2015.11.018 +Catalin Gosman,Controlling and filtering users data in Intelligent Transportation System.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#GosmanCDPC18,https://doi.org/10.1016/j.future.2016.12.014 +Deshi Ye,Non-cooperative games on multidimensional resource allocation.,2013,29,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs29.html#YeC13,https://doi.org/10.1016/j.future.2013.02.004 +Håkan Grahn,Implementation and evaluation of update-based cache protocols under relaxed memory consistency models.,1995,11,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs11.html#GrahnSD95,https://doi.org/10.1016/0167-739X(94)00067-O +Gleb Skobeltsyn,Query-driven indexing for scalable peer-to-peer text retrieval.,2009,25,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs25.html#SkobeltsynLZRA09,https://doi.org/10.1016/j.future.2008.03.006 +Alfonso Perez,Serverless computing for container-based architectures.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#PerezMCC18,https://doi.org/10.1016/j.future.2018.01.022 +Alexandru-Florian Antonescu,Simulation of SLA-based VM-scaling algorithms for cloud-distributed applications.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#AntonescuB16,https://doi.org/10.1016/j.future.2015.01.015 +Muhammad Ajmal Azad,PrivBox: Verifiable decentralized reputation system for online marketplaces.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#AzadBH18,https://doi.org/10.1016/j.future.2018.05.069 +K. Vivekanandan,Bacteria foraging optimization for protein sequence analysis on the grid.,2012,28,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs28.html#VivekanandanR12,https://doi.org/10.1016/j.future.2011.10.009 +Mohammad Hasanzadeh,Service level agreement based adaptive Grid superscheduling.,2016,55,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs55.html#HasanzadehJRM16,https://doi.org/10.1016/j.future.2015.08.012 +Wei Li,A type-theoretic approach for program development.,1990,6,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs6.html#Li90,https://doi.org/10.1016/0167-739X(90)90009-3 +Jin Li,A novel parallel distance metric-based approach for diversified ranking on large graphs.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#LiYWZL18,https://doi.org/10.1016/j.future.2018.05.031 +Po-Cheng Chen,A DSM-based fragmented data sharing framework for grids.,2010,26,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs26.html#ChenCSLZ10,https://doi.org/10.1016/j.future.2009.12.008 +Christos Stergiou,Secure integration of IoT and Cloud Computing.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#StergiouPKG18,https://doi.org/10.1016/j.future.2016.11.031 +Vicente Olmedo,Network mobility support for Web Service-based Grids through the Session Initiation Protocol.,2009,25,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs25.html#OlmedoVKBB09,https://doi.org/10.1016/j.future.2008.11.007 +Christoph Evers,The user in the loop: Enabling user participation for self-adaptive applications.,2014,34,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs34.html#EversKGS14,https://doi.org/10.1016/j.future.2013.12.010 +Guan Xu,Bandwidth-aware energy efficient flow scheduling with SDN in data center networks.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#XuDHYW17,https://doi.org/10.1016/j.future.2016.08.024 +Vanga Odelu,Provably secure authenticated key agreement scheme for distributed mobile cloud computing services.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#OdeluDKHW17,https://doi.org/10.1016/j.future.2016.09.009 +Jixian Zhang,An online auction mechanism for cloud computing resource allocation and pricing based on user evaluation and cost.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#ZhangXZL18,https://doi.org/10.1016/j.future.2018.06.034 +E. Palsson,A three-dimensional model of cell movement in multicellular systems.,2001,17,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs17.html#Palsson01,https://doi.org/10.1016/S0167-739X(00)00062-5 +Anubhav Choudhary,A GSA based hybrid algorithm for bi-objective workflow scheduling in cloud computing.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#ChoudharyGSJ18,https://doi.org/10.1016/j.future.2018.01.005 +Goodhead Tomvie Abraham,Group-based Parallel Multi-scheduler for Grid computing.,2015,50,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs50.html#AbrahamJY15,https://doi.org/10.1016/j.future.2015.01.012 +Jan-Torsten Milde,Educational use of VRML and Java in agent-based AI and computer graphics.,2000,17,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs17.html#MildeJ00,https://doi.org/10.1016/S0167-739X(99)00102-8 +M. Small,Practical applications involving uncertainty.,1986,2,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs2.html#SmallPM86,https://doi.org/10.1016/0167-739X(86)90011-7 +Xiaoping Sun,OSLN: An Object-Oriented Semantic Link Network language for complex object description and operation.,2010,26,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs26.html#Sun10,https://doi.org/10.1016/j.future.2009.07.007 +Lesandro Ponciano,Agreement-based credibility assessment and task replication in human computation systems.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#PoncianoB18,https://doi.org/10.1016/j.future.2018.05.028 +Shadi A. Aljawarneh,G-SPAMINE: An approach to discover temporal association patterns and trends in internet of things.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#AljawarnehRKJ17,https://doi.org/10.1016/j.future.2017.01.013 +Sasmita Kumari Nayak,A novel algorithm for dynamic task scheduling.,2012,28,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs28.html#NayakPP12,https://doi.org/10.1016/j.future.2011.12.001 +Sergey V. Kovalchuk,Distributed data-driven platform for urgent decision making in cardiological ambulance control.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#KovalchukKSNY18,https://doi.org/10.1016/j.future.2016.09.017 +Hai Jiang,A secure and scalable storage system for aggregate data in IoT.,2015,49,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs49.html#JiangSCLJ15,https://doi.org/10.1016/j.future.2014.11.009 +Saul Alonso Monsalve,A heterogeneous mobile cloud computing model for hybrid clouds.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#MonsalveCC18,https://doi.org/10.1016/j.future.2018.04.005 +Jason H. Li,A scalable key management and clustering scheme for wireless ad hoc and sensor networks.,2008,24,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs24.html#LiBYL08,https://doi.org/10.1016/j.future.2008.03.007 +Kwang-Hoon Kim,A layered workflow knowledge Grid/P2P architecture and its models for future generation workflow systems.,2007,23,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs23.html#Kim07a,https://doi.org/10.1016/j.future.2006.05.005 +Stelios Sotiriadis,Virtual machine cluster mobility in inter-cloud platforms.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#SotiriadisBPANM17,https://doi.org/10.1016/j.future.2016.02.007 +Valerie Hendrix,CAMP: Community Access MODIS Pipeline.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#HendrixRRIJA14,https://doi.org/10.1016/j.future.2013.09.023 +Attila Kertész,An interoperable and self-adaptive approach for SLA-based service virtualization in heterogeneous Cloud environments.,2014,32,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs32.html#KerteszKB14,https://doi.org/10.1016/j.future.2012.05.016 +Paola Grosso,The network infrastructure at iGrid2005: Lambda networking in action.,2006,22,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs22.html#GrossoBW06,https://doi.org/10.1016/j.future.2006.03.013 +Joseph Nathanael Witanto,Adaptive selection of dynamic VM consolidation algorithm using neural network for cloud resource management.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#WitantoLA18,https://doi.org/10.1016/j.future.2018.04.075 +Damien Borgetto,Energy-aware service allocation.,2012,28,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs28.html#BorgettoCCP12,https://doi.org/10.1016/j.future.2011.04.018 +Rouaa Wannous,Trajectory ontology inference considering domain and temporal dimensions - Application to marine mammals.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#WannousMBV17,https://doi.org/10.1016/j.future.2016.01.012 +Zhifeng Xiao,Achieving Accountable MapReduce in cloud computing.,2014,30,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs30.html#XiaoX14,https://doi.org/10.1016/j.future.2013.07.001 +Kyungtae Kim,Securing heap memory by data pointer encoding.,2012,28,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs28.html#KimP12,https://doi.org/10.1016/j.future.2011.02.006 +Mu-Yen Chen,A high-order fuzzy time series forecasting model for internet stock trading.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#Chen14,https://doi.org/10.1016/j.future.2013.09.025 +Raheel Hassan Syed,Protecting grids from cross-domain attacks using security alert sharing mechanisms.,2013,29,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs29.html#SyedSB13,https://doi.org/10.1016/j.future.2012.07.002 +Constantino Vázquez,On the use of clouds for grid resource provisioning.,2011,27,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs27.html#VazquezHML11,https://doi.org/10.1016/j.future.2010.10.003 +Philippe Deves,An alternative to expert systems for electrical diagnosis.,1992,7,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs7.html#DevesFT92,https://doi.org/10.1016/0167-739X(92)90050-L +Soguy Mak Karé Gueye,Coordinating self-sizing and self-repair managers for multi-tier systems.,2014,35,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs35.html#GueyePRTB14,https://doi.org/10.1016/j.future.2013.12.037 +Diogo Telmo Neves,Parallel SuperFine - A tool for fast and accurate supertree estimation: Features and limitations.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#NevesS17,https://doi.org/10.1016/j.future.2016.04.004 +Michael Wurst,Distributed feature extraction in a p2p setting - a case study.,2007,23,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs23.html#WurstM07,https://doi.org/10.1016/j.future.2006.04.004 +JinHo Ahn,A causal message logging protocol for mobile nodes in mobile computing systems.,2004,20,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs20.html#AhnMH04,https://doi.org/10.1016/S0167-739X(03)00130-4 +Laurent Hascoët,To be recorded analysis in reverse-mode automatic differentiation.,2005,21,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs21.html#HascoetNP05,https://doi.org/10.1016/j.future.2004.11.009 +Mardochée Magolu monga Made,A generalized domain decomposition paradigm for parallel incomplete LU factorization preconditionings.,2001,17,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs17.html#MadeV01,https://doi.org/10.1016/S0167-739X(01)00034-6 +Christopher J. Pettit,Building an ecoinformatics platform to support climate change adaptation in Victoria.,2013,29,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs29.html#PettitWBARMSHCEBA13,https://doi.org/10.1016/j.future.2011.07.004 +Antonio Congiusta,Distributed data mining services leveraging WSRF.,2007,23,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs23.html#CongiustaTT07,https://doi.org/10.1016/j.future.2006.04.005 +Giovanni Ciriello,Algorithmic re-structuring and data replication for protein structure comparison on a GRID.,2007,23,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs23.html#CirielloCG07,https://doi.org/10.1016/j.future.2006.03.029 +Tiziano Politi,Numerical methods for computing SVD in the D-orthogonal group.,2006,22,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs22.html#PolitiP06,https://doi.org/10.1016/j.future.2004.11.025 +Radim Blaheta,Large scale parallel FEM computations of far/near stress field changes in rocks.,2006,22,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs22.html#BlahetaBJKKKS06,https://doi.org/10.1016/j.future.2005.04.005 +Nicoletta Del Buono,Computation of few Lyapunov exponents by geodesic based algorithms.,2003,19,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs19.html#BuonoE03,https://doi.org/10.1016/S0167-739X(02)00169-3 +Filip De Turck,A generic middleware-based platform for scalable cluster computing.,2002,18,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs18.html#TurckVVD02,https://doi.org/10.1016/S0167-739X(01)00078-4 +Michael Okun,Atomic Writes for data integrity and consistency in shared storage devices for clusters.,2004,20,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs20.html#OkunB04,https://doi.org/10.1016/S0167-739X(03)00172-9 +Wentong Cai,Federate migration in HLA-based simulation.,2005,21,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs21.html#CaiYLT05,https://doi.org/10.1016/j.future.2004.09.019 +Tao Jiang,Towards secure and reliable cloud storage against data re-outsourcing.,2015,52,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs52.html#Jiang00WML15,https://doi.org/10.1016/j.future.2014.11.002 +Lizhe Wang,Energy-aware parallel task scheduling in a cluster.,2013,29,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs29.html#WangKCKRXZ13,https://doi.org/10.1016/j.future.2013.02.010 +José-Vicente Pitarch Ruiz,Local orbitals for excited states.,2004,20,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs20.html#RuizEM04,https://doi.org/10.1016/j.future.2003.11.021 +Amir M. Rahmani,Exploiting smart e-Health gateways at the edge of healthcare Internet-of-Things: A fog computing approach.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#RahmaniGNAAJL18,https://doi.org/10.1016/j.future.2017.02.014 +Achim Basermann,Parallel iterative solvers for sparse linear systems in circuit simulation.,2005,21,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs21.html#BasermannJNH05,https://doi.org/10.1016/j.future.2004.09.007 +Derek Kueter,Business insights in e-commerce and trusted services.,2000,16,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs16.html#KueterF00,https://doi.org/10.1016/S0167-739X(99)00061-8 +Lien Deboosere,Grid design for mobile thin client computing.,2011,27,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs27.html#DeboosereSWVTDD11,https://doi.org/10.1016/j.future.2010.12.010 +Shaohua Tang,Efficient hardware implementation of PMI+ for low-resource devices in mobile cloud computing.,2015,52,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs52.html#TangLCPD015,https://doi.org/10.1016/j.future.2014.11.014 +Junnan Li,SERAC3: Smart and economical resource allocation for big data clusters in community clouds.,2018,85,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs85.html#LiLZ0QLH18,https://doi.org/10.1016/j.future.2018.03.044 +Youwei Ding,Energy efficient scheduling of virtual machines in cloud with deadline constraint.,2015,50,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs50.html#DingQLW15,https://doi.org/10.1016/j.future.2015.02.001 +Imma Boada,An octree-based multiresolution hybrid framework.,2004,20,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs20.html#Boada04,https://doi.org/10.1016/j.future.2004.05.021 +Tristan Glatard,Software architectures to integrate workflow engines in science gateways.,2017,75,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs75.html#GlatardRCABDSKK17,https://doi.org/10.1016/j.future.2017.01.005 +Jasim A. Ghaeb,A high performance data integrity assurance based on the determinant technique.,2011,27,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs27.html#GhaebSC11,https://doi.org/10.1016/j.future.2010.05.011 +Wentai Wu,Energy-efficient hadoop for big data analytics and computing: A systematic review and research insights.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#WuLHH18,https://doi.org/10.1016/j.future.2017.11.010 +Christopher D. Carothers,Visualizing parallel simulations that execute in network computing environments.,1999,15,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs15.html#CarothersTFSS99,https://doi.org/10.1016/S0167-739X(98)00057-0 +José Luis Lucas-Simarro,Scheduling strategies for optimal service deployment across multiple clouds.,2013,29,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs29.html#Lucas-SimarroMML13,https://doi.org/10.1016/j.future.2012.01.007 +A. Bagheri,An artificial immune algorithm for the flexible job-shop scheduling problem.,2010,26,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs26.html#BagheriZMY10,https://doi.org/10.1016/j.future.2009.10.004 +Jörn Altmann,Economics of Computing Services: A literature survey about technologies for an economy of fungible cloud services.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#AltmannBP18,https://doi.org/10.1016/j.future.2018.05.075 +Joarder Kamruzzaman,Acoustic sensor networks in the Internet of Things applications.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#KamruzzamanWKAB18,https://doi.org/10.1016/j.future.2018.05.019 +Waheed Iqbal,Adaptive resource provisioning for read intensive multi-tier applications in the cloud.,2011,27,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs27.html#IqbalDCJ11,https://doi.org/10.1016/j.future.2010.10.016 +Artem M. Chirkin,Execution time estimation for workflow scheduling.,2017,75,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs75.html#ChirkinBKMMVN17,https://doi.org/10.1016/j.future.2017.01.011 +Paul D. Hovland,Making automatic differentiation truly automatic: coupling PETSc with ADIC.,2005,21,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs21.html#HovlandNS05,https://doi.org/10.1016/j.future.2004.11.008 +Hui Zhao 0002,A novel pre-cache schema for high performance Android system.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#ZhaoCQGL16,https://doi.org/10.1016/j.future.2015.05.005 +Zheng Li 0001,Towards understanding the runtime configuration management of do-it-yourself content delivery network applications over public clouds.,2014,37,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs37.html#LiMZRGZOS14,https://doi.org/10.1016/j.future.2013.12.019 +Jun Cui,Searching databases using parallel genetic algorithms on a transputer computing surface.,1993,9,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs9.html#CuiFG93,https://doi.org/10.1016/0167-739X(93)90024-J +Leili Mohammad Khanli,An approach to grid resource selection and fault management based on ECA rules.,2008,24,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs24.html#KhanliA08,https://doi.org/10.1016/j.future.2007.05.002 +Maria Przybylska,Isospectral-like flows and eigenvalue problem.,2003,19,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs19.html#Przybylska03,https://doi.org/10.1016/S0167-739X(03)00042-6 +David Abramson,A computational economy for grid computing and its implementation in the Nimrod-G resource broker.,2002,18,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs18.html#AbramsonBG02,https://doi.org/10.1016/S0167-739X(02)00085-7 +Xiangjie Kong,Urban traffic congestion estimation and prediction based on floating car trajectory data.,2016,61,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs61.html#KongXSWYZ16,https://doi.org/10.1016/j.future.2015.11.013 +Ziyuan Liu,A generalizable knowledge framework for semantic indoor mapping based on Markov logic networks and data driven MCMC.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#LiuW14,https://doi.org/10.1016/j.future.2013.06.026 +Kris Bubendorfer,eScience in the Social Cloud.,2013,29,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs29.html#BubendorferCKT13,https://doi.org/10.1016/j.future.2013.04.003 +Siew Hoon Leong,A robust reliable energy-aware urgent computing resource allocation for flash-flood ensemble forecasting on HPC infrastructures for decision support.,2017,68,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs68.html#LeongPK17,https://doi.org/10.1016/j.future.2016.09.014 +Eduardo Jacob,PKIX-based certification infrastructure implementation adapted to non-personal end entities.,2003,19,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs19.html#JacobLU03,https://doi.org/10.1016/S0167-739X(02)00152-8 +Baokang Zhao,Privacy aware publishing of successive location information in sensor networks.,2012,28,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs28.html#ZhaoWSCS12,https://doi.org/10.1016/j.future.2011.09.001 +Miroslaw Czyrnek,Large-scale multimedia content delivery over optical networks for interactive TV services.,2006,22,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs22.html#CzyrnekKMS06,https://doi.org/10.1016/j.future.2006.03.018 +Rajesh Kumar Pal,Dynamic core allocation for energy efficient video decoding in homogeneous and heterogeneous multicore architectures.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#PalSPP16,https://doi.org/10.1016/j.future.2015.09.018 +Francesco Gregoretti,MGF: A grid-enabled MPI library.,2008,24,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs24.html#GregorettiLMOS08,https://doi.org/10.1016/j.future.2007.03.009 +Changxi Liu,T1000: Mitigating the memory footprint of convolution neural networks with decomposition and re-fusion.,2018,84,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs84.html#LiuY0LQ18,https://doi.org/10.1016/j.future.2018.02.024 +Matthieu Dorier,On the energy footprint of I/O management in Exascale HPC systems.,2016,62,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs62.html#DorierYIOA16,https://doi.org/10.1016/j.future.2016.03.002 +Soodeh Farokhi,A hybrid cloud controller for vertical memory elasticity: A control-theoretic approach.,2016,65,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs65.html#FarokhiJLBE16,https://doi.org/10.1016/j.future.2016.05.028 +Ivan Walulya,Viper: A module for communication-layer determinism and scaling in low-latency stream processing.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#WalulyaPNGPT18,https://doi.org/10.1016/j.future.2018.05.067 +Rasmeet S. Bali,Secure clustering for efficient data dissemination in vehicular cyber-physical systems.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#BaliK16,https://doi.org/10.1016/j.future.2015.09.004 +Niroshinie Fernando,Mobile cloud computing: A survey.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#FernandoLR13,https://doi.org/10.1016/j.future.2012.05.023 +Xin Su 0002,Power domain NOMA to support group communication in public safety networks.,2018,84,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs84.html#SuCEC18,https://doi.org/10.1016/j.future.2017.06.029 +Jean-Pierre Banâtre,A parallel machine for multiset transformation and its programming style.,1988,4,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs4.html#BanatreCM88,https://doi.org/10.1016/0167-739X(88)90012-X +Michal Witkowski,Practical power consumption estimation for real life HPC applications.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#WitkowskiOPW13,https://doi.org/10.1016/j.future.2012.06.003 +Michael Schroeder 0001,Towards a visualization of arguing agents.,2000,17,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs17.html#Schroeder00,https://doi.org/10.1016/S0167-739X(99)00101-6 +Hamed Orojloo,A method for evaluating the consequence propagation of security attacks in cyber-physical systems.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#OrojlooA17,https://doi.org/10.1016/j.future.2016.07.016 +Jun Song 0003,QRFence: A flexible and scalable QR link security detection framework for Android devices.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#SongGSQLC18,https://doi.org/10.1016/j.future.2018.05.082 +Lucio Grandinetti,An approximate ϵ**ϵ**-constraint method for a multi-objective job scheduling in the cloud.,2013,29,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs29.html#GrandinettiPS13,https://doi.org/10.1016/j.future.2013.04.023 +Zheng Yan 0002,Two Schemes of Privacy-Preserving Trust Evaluation.,2016,62,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs62.html#YanDNV16,https://doi.org/10.1016/j.future.2015.11.006 +Zulfiqar Ali,Edge-centric multimodal authentication system using encrypted biometric templates.,2018,85,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs85.html#AliHMUAA18,https://doi.org/10.1016/j.future.2018.02.040 +Brian K. Livezey,ASPEN: a concurrent stream processing environment.,1990,6,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs6.html#LivezeyM90,https://doi.org/10.1016/0167-739X(90)90019-A +Gio Wiederhold,Knowledge bases.,1985,1,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs1.html#Wiederhold85,https://doi.org/10.1016/0167-739X(85)90011-1 +Hongfei Zhu,A round-optimal lattice-based blind signature scheme for cloud services.,2017,73,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs73.html#ZhuTZZZZ17,https://doi.org/10.1016/j.future.2017.01.031 +Craig A. Lee,The best papers from CCGrid 2001.,2002,18,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs18.html#LeeBR02,https://doi.org/10.1016/S0167-739X(01)00079-6 +Meisong Wang,A multi-layered performance analysis for cloud-based topic detection and tracking in Big Data applications.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#WangJSCLSGR18,https://doi.org/10.1016/j.future.2018.01.047 +Jingcheng Fu,Multipolarization versus unification in community networks.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#FuLNWW18,https://doi.org/10.1016/j.future.2017.05.023 +Xu Yu,A framework for automated construction of resource space based on background knowledge.,2014,32,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs32.html#YuPHZ14,https://doi.org/10.1016/j.future.2013.07.017 +Lu Zhou 0002,Towards practical white-box lightweight block cipher implementations for IoTs.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#ZhouSWLG18,https://doi.org/10.1016/j.future.2018.04.011 +Miguel L. Bote-Lorenzo,Special section: Collaborative and learning applications of grid technology.,2006,22,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs22.html#Bote-LorenzoA06,https://doi.org/10.1016/j.future.2006.02.007 +Hui Li,Model-based simulation and performance evaluation of grid scheduling strategies.,2009,25,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs25.html#LiB09,https://doi.org/10.1016/j.future.2008.09.012 +Yuhui Deng,Self-similarity: Behind workload reshaping and prediction.,2012,28,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs28.html#DengMZ12,https://doi.org/10.1016/j.future.2011.06.010 +Roman Neruda,Learning methods for radial basis function networks.,2005,21,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs21.html#NerudaK05,https://doi.org/10.1016/j.future.2004.03.013 +Mohamed Abdel-Basset,A hybrid whale optimization algorithm based on local search strategy for the permutation flow shop scheduling problem.,2018,85,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs85.html#Abdel-BassetMEM18,https://doi.org/10.1016/j.future.2018.03.020 +Min Woo Woo,A reliable IoT system for Personal Healthcare Devices.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#WooLP18,https://doi.org/10.1016/j.future.2017.04.004 +Ranieri Baraglia,An optimized task-farm model to integrate reduced dimensionality Schrödinger equations on distributed memory architectures.,1999,15,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs15.html#BaragliaFLL99,https://doi.org/10.1016/S0167-739X(98)00056-9 +Augusto Ciuffoletti,The wandering token: Congestion avoidance of a shared resource.,2010,26,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs26.html#Ciuffoletti10,https://doi.org/10.1016/j.future.2009.05.002 +Jia Hu,Performance analysis of a threshold-based dynamic TXOP scheme for intra-AC QoS in wireless LANs.,2014,38,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs38.html#HuMW14,https://doi.org/10.1016/j.future.2013.09.021 +Han Yu,Data service generation framework from heterogeneous printed forms using semantic link discovery.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#YuCZJ18,https://doi.org/10.1016/j.future.2017.09.059 +Eugenio Cesario,Distributed volunteer computing for solving ensemble learning problems.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#CesarioMT16,https://doi.org/10.1016/j.future.2015.07.010 +Francisco Torrens,Effect of size and deformation on polarizabilities of carbon nanotubes from atomic increments.,2004,20,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs20.html#Torrens04,https://doi.org/10.1016/j.future.2003.11.017 +Vasileios A. Memos,An Efficient Algorithm for Media-based Surveillance System (EAMSuS) in IoT Smart City Framework.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#MemosPIKG18,https://doi.org/10.1016/j.future.2017.04.039 +Radim Blaheta,Special section: Numerical modelling in geomechanics and geodynamics.,2006,22,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs22.html#BlahetaN06,https://doi.org/10.1016/j.future.2005.04.003 +Malek Smaoui,Improving volunteer computing scheduling for evolutionary algorithms.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#SmaouiG13,https://doi.org/10.1016/j.future.2012.04.002 +Cristian Mateos,JGRIM: An approach for easy gridification of applications.,2008,24,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs24.html#MateosZC08,https://doi.org/10.1016/j.future.2007.04.011 +Hans-Joachim Bungartz,A precompiler to reduce the memory footprint of multiscale PDE solvers in C++.,2010,26,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs26.html#BungartzEWZ10,https://doi.org/10.1016/j.future.2009.05.011 +César A. F. De Rose,Allocation strategies for utilization of space-shared resources in Bag of Tasks grids.,2008,24,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs24.html#RoseFCCCF08,https://doi.org/10.1016/j.future.2007.05.005 +Despina Polemi,Internet race is on but security holds the key.,2000,16,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs16.html#PolemiM00,https://doi.org/10.1016/S0167-739X(99)00054-0 +Xu Yang 0002,Efficient handover authentication with user anonymity and untraceability for Mobile Cloud Computing.,2016,62,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs62.html#YangHL16,https://doi.org/10.1016/j.future.2015.09.028 +Rajvikram Singh,TeraVision: a high resolution graphics streaming device for amplified collaboration environments.,2003,19,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs19.html#SinghLDK03,https://doi.org/10.1016/S0167-739X(03)00074-8 +Jun Song 0003,Secure authentication in motion: A novel online payment framework for drive-thru Internet.,2017,76,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs76.html#SongYW17,https://doi.org/10.1016/j.future.2016.06.011 +Jilin Zhang,Efficient sparse matrix-vector multiplication using cache oblivious extension quadtree storage format.,2016,54,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs54.html#ZhangWLMZYLY16,https://doi.org/10.1016/j.future.2015.03.005 +Stephan Diehl 0001,Visualizing principles of abstract machines by generating interactive animations.,2000,16,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs16.html#DiehlK00,https://doi.org/10.1016/S0167-739X(99)00093-X +Falak Nawaz,Event-driven approach for predictive and proactive management of SLA violations in the Cloud of Things.,2018,84,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs84.html#NawazJHHCS18,https://doi.org/10.1016/j.future.2018.02.025 +Neetesh Kumar,An Energy Aware Cost Effective Scheduling Framework for Heterogeneous Cluster System.,2017,71,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs71.html#KumarV17,https://doi.org/10.1016/j.future.2017.01.015 +Ming Tao,Multi-layer cloud architectural model and ontology-based security service framework for IoT-based smart homes.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#TaoZLCP18,https://doi.org/10.1016/j.future.2016.11.011 +Victor Chang 0001,A model to compare cloud and non-cloud storage of Big Data.,2016,57,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs57.html#0001W16,https://doi.org/10.1016/j.future.2015.10.003 +Jin Xin,Design and implementation of Intelligent transplanting system based on photoelectric sensor and PLC.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#XinKJXHZ18,https://doi.org/10.1016/j.future.2018.05.034 +Xi Chen,A novel maximum margin neighborhood preserving embedding for face recognition.,2012,28,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs28.html#ChenZ12,https://doi.org/10.1016/j.future.2010.11.002 +Eric Jui-Lin Lu,Design and implementation of a fine-grained menu control processor for web-based information systems.,2003,19,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs19.html#LuC03,https://doi.org/10.1016/S0167-739X(03)00108-0 +Humphrey Waita Njogu,A comprehensive vulnerability based alert management approach for large networks.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#NjoguLKH13,https://doi.org/10.1016/j.future.2012.04.001 +Sanghyuk Park,Effective real-time scheduling algorithm for cyber physical systems society.,2014,32,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs32.html#ParkKF14,https://doi.org/10.1016/j.future.2013.10.003 +Makota Nagao,Current status and future trends in machine translation.,1986,2,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs2.html#Nagao86a,https://doi.org/10.1016/0167-739X(86)90001-4 +Ke Zhou 0001,Deep sentiment hashing for text retrieval in social CIoT.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#ZhouZLZ18,https://doi.org/10.1016/j.future.2018.03.047 +Tomaz Amon,Educational applications of VRML.,2000,17,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs17.html#AmonD00,https://doi.org/10.1016/S0167-739X(00)00101-1 +Peter M. A. Sloot,Massive parallel computing.,1995,11,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs11.html#SlootG95,https://doi.org/10.1016/0167-739X(94)00051-F +Jun Zhang,Recent advances in security and privacy in Social Big Data.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#ZhangCYZ18,https://doi.org/10.1016/j.future.2018.05.074 +Reham Gharbia,Multi-spectral and panchromatic image fusion approach using stationary wavelet transform and swarm flower pollination optimization for remote sensing applications.,2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#GharbiaHBEG18,https://doi.org/10.1016/j.future.2018.06.022 +Nikolay Avgoustinov,VRML as means of expressive 4D illustration in CAM education.,2000,17,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs17.html#Avgoustinov00,https://doi.org/10.1016/S0167-739X(99)00100-4 +Ivan Farris,MIFaaS: A Mobile-IoT-Federation-as-a-Service Model for dynamic cooperation of IoT Cloud Providers.,2017,70,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs70.html#FarrisMNAI17,https://doi.org/10.1016/j.future.2016.06.028 +Bartosz Balis,Real-time Grid monitoring based on complex event processing.,2011,27,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs27.html#BalisKB11,https://doi.org/10.1016/j.future.2011.04.005 +Ali Ghaffarinejad,An incentive compatible and distributed reputation mechanism based on context similarity for service oriented systems.,2013,29,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs29.html#GhaffarinejadA13,https://doi.org/10.1016/j.future.2012.03.021 +Stephan Diehl 0001,Principles of abstract machines.,2000,16,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs16.html#DiehlHS00,https://doi.org/10.1016/S0167-739X(99)00087-4 +Mahmood Ahmadi,Collaboration of reconfigurable processors in grid computing: Theory and application.,2011,27,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs27.html#AhmadiSW11,https://doi.org/10.1016/j.future.2010.10.014 +Baolei Cheng,Constructing independent spanning trees with height n on the n-dimensional crossed cube.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#ChengFLZL18,https://doi.org/10.1016/j.future.2018.02.010 +Javier Navarro,"Corrigendum to ""Fuzzy adaptive cognitive stimulation therapy generation for Alzheimer's sufferers: Towards a pervasive dementia care monitoring platform"" [Future Gener. Comput. Syst. 88 (2018) 479-490].",2018,88,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs88.html#NavarroDZISL18a,https://doi.org/10.1016/j.future.2018.07.059 +C.-J. Tang,A load control method for small data centers participating in demand response programs.,2014,32,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs32.html#TangDCCL14,https://doi.org/10.1016/j.future.2013.07.020 +Dan Liao,Energy-efficient virtual content distribution network provisioning in cloud-based data centers.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#LiaoSYC18,https://doi.org/10.1016/j.future.2018.01.057 +Franco Travostino,Seamless live migration of virtual machines over the MAN/WAN.,2006,22,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs22.html#TravostinoDGJLMMORW06,https://doi.org/10.1016/j.future.2006.03.007 +Martin Waite,Parallel associative combinator evaluation II.,1992,8,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs8.html#WaiteGL92,https://doi.org/10.1016/0167-739X(92)90065-J +Alexander S. Szalay,Astronomical archives of the future: a Virtual Observatory.,1999,16,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs16.html#SzalayB99,https://doi.org/10.1016/S0167-739X(99)00036-9 +Andres Quiroz,A framework for distributed content-based web services notification in Grid systems.,2008,24,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs24.html#QuirozP08,https://doi.org/10.1016/j.future.2007.07.001 +Jun Shen 0001,Extending RDF in distributed knowledge-intensive applications.,2004,20,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs20.html#ShenY04,https://doi.org/10.1016/S0167-739X(03)00163-8 +Weizhong Qiang,MUC: Updating cloud applications dynamically via multi-version execution.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#QiangCYJ17,https://doi.org/10.1016/j.future.2015.12.003 +Kazuteru Garatani,GeoFEM: high performance parallel FEM for solid earth.,2001,18,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs18.html#GarataniNOY01,https://doi.org/10.1016/S0167-739X(00)00080-7 +Shuo Wang,Privacy-protected statistics publication over social media user trajectory streams.,2018,87,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs87.html#WangSN18,https://doi.org/10.1016/j.future.2017.08.002 +Jerline Sheebha Anni,Wireless Integrated Sensor Network: Boundary Intellect system for elephant detection via cognitive theory and Fuzzy Cognitive Maps.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#AnniS18,https://doi.org/10.1016/j.future.2017.02.019 +Jihe Wang,A locality-aware shuffle optimization on fat-tree data centers.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#WangWQCG18,https://doi.org/10.1016/j.future.2018.06.016 +Yuqing Zhu,Client-centric consistency formalization and verification for system with large-scale distributed data storage.,2010,26,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs26.html#ZhuW10,https://doi.org/10.1016/j.future.2010.06.006 +F. Orujov,Smartphone based intelligent indoor positioning using fuzzy logic.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#OrujovMDWL18,https://doi.org/10.1016/j.future.2018.06.030 +Yiwei Jiang,Makespan minimization for MapReduce systems with different servers.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#JiangZWL17,https://doi.org/10.1016/j.future.2016.07.012 +Andrew Stephen McGough,A standards based approach to enabling legacy applications on the Grid.,2008,24,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs24.html#McGoughLD08,https://doi.org/10.1016/j.future.2008.02.004 +Leila Eskandari,T3-Scheduler: A topology and Traffic aware two-level Scheduler for stream processing systems in a heterogeneous cluster.,2018,89,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs89.html#EskandariMHE18,https://doi.org/10.1016/j.future.2018.07.011 +Fadi Al-Turjman,Information-centric framework for the Internet of Things (IoT): Traffic modeling and optimization.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#Al-Turjman18,https://doi.org/10.1016/j.future.2017.08.018 +Alexander A. Visheratin,Hybrid scheduling algorithm in early warning systems.,2018,79,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs79.html#VisheratinMNBB18,https://doi.org/10.1016/j.future.2017.04.002 +A. M. Alkindi,Optimisation of application execution on dynamic systems.,2001,17,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs17.html#AlkindiKPN01,https://doi.org/10.1016/S0167-739X(01)00036-X +Jianhua Jiang,DataABC: A fast ABC based energy-efficient live VM consolidation policy with data-intensive energy evaluation model.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#JiangFZL17,https://doi.org/10.1016/j.future.2016.05.013 +Baojiang Cui,Uploading multiply deferrable big data to the cloud platform using cost-effective online algorithms.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#CuiSQL17,https://doi.org/10.1016/j.future.2016.05.001 +Dinh Phuoc Vo,A use of case-based reasoning technique in building expert systems.,1993,9,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs9.html#VoM93,https://doi.org/10.1016/0167-739X(93)90033-L +Laura Ricci,Editorial.,2013,29,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs29.html#RicciB13,https://doi.org/10.1016/j.future.2013.03.002 +Lifang Ren,An SVM-based collaborative filtering approach for Top-N web services recommendation.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#RenW18,https://doi.org/10.1016/j.future.2017.07.027 +Hajime Sasaki,Trends of VLSI in Japan.,1985,1,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs1.html#Sasaki85,https://doi.org/10.1016/0167-739X(85)90023-8 +Kirill Belyaev,On the design and analysis of protocols for Personal Health Record storage on Personal Data Server devices.,2018,80,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs80.html#BelyaevSRR18,https://doi.org/10.1016/j.future.2016.05.027 +Peter Simon Sapaty,WAVE-1: A new ideology of parallel and distributed processing on graphs and networks.,1988,4,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs4.html#Sapaty88,https://doi.org/10.1016/0167-739X(88)90015-5 +Jesús Sánchez-García,On-siteDriverID: A secure authentication scheme based on Spanish eID cards for vehicular ad hoc networks.,2016,64,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs64.html#Sanchez-GarciaG16,https://doi.org/10.1016/j.future.2016.04.024 +Yi-Pin Liao,A novel multi-server remote user authentication scheme using self-certified public keys for mobile clients.,2013,29,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs29.html#LiaoH13,https://doi.org/10.1016/j.future.2012.03.017 +Ricardo M. L. Barros,A collaborative approach to build evaluated web page datasets.,2011,27,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs27.html#BarrosNXS11,https://doi.org/10.1016/j.future.2010.06.007 +Pawan Kumar Tiwari,Improved auto control ant colony optimization using lazy ant approach for grid scheduling problem.,2016,60,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs60.html#TiwariV16,https://doi.org/10.1016/j.future.2016.01.017 +Yoshitomo Hanakuma,An expert system for fault diagnosis at petrochemical plants.,1989,5,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs5.html#Hanakuma89,https://doi.org/10.1016/0167-739X(89)90026-5 +Yuebin Bai,MOVE: A mobile personalized virtual computing environment.,2012,28,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs28.html#BaiJ12,https://doi.org/10.1016/j.future.2010.12.009 +Yongjun Li,Matching user accounts based on user generated content across social networks.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#LiZPYX18,https://doi.org/10.1016/j.future.2018.01.041 +Benno J. Overeinder,Wide-area distributed applications in high performance computing.,2001,17,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs17.html#OvereinderS01,https://doi.org/10.1016/S0167-739X(00)00102-3 +Victor E. Malyshkin,Parallel computing technologies.,2005,21,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs21.html#Malyshkin05,https://doi.org/10.1016/j.future.2004.05.001 +Bruno Volckaert,Gridification of collaborative audiovisual organizations through the MediaGrid framework.,2008,24,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs24.html#VolckaertWLTTDD08,https://doi.org/10.1016/j.future.2007.06.009 +Daniela Loreti,A distributed approach to compliance monitoring of business process event streams.,2018,82,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs82.html#LoretiCCM18,https://doi.org/10.1016/j.future.2017.12.043 +Yongmao Ren,Modeling content transfer performance in information-centric networking.,2017,74,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs74.html#RenLLSZW17,https://doi.org/10.1016/j.future.2017.04.013 +Yining Liu,A novel reputation computation model based on subjective logic for mobile ad hoc networks.,2011,27,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs27.html#LiuLJZQ11,https://doi.org/10.1016/j.future.2010.03.006 +Riccardo Rapuzzi,Building situational awareness for network threats in fog/edge computing: Emerging paradigms beyond the security perimeter model.,2018,85,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs85.html#RapuzziR18,https://doi.org/10.1016/j.future.2018.04.007 +So Yamaoka,Visualization of high-resolution image collections on large tiled display walls.,2011,27,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs27.html#YamaokaDK11,https://doi.org/10.1016/j.future.2010.12.005 +Anne E. James,Special Issue: Quality of Service in Grid and Cloud 2015.,2015,50,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs50.html#JamesY15,https://doi.org/10.1016/j.future.2015.05.001 +Muhammad Khurram Khan,Challenge-response-based biometric image scrambling for secure personal identification.,2011,27,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs27.html#KhanZA11,https://doi.org/10.1016/j.future.2010.05.019 +Fatos Xhafa,Computational models and heuristic methods for Grid scheduling problems.,2010,26,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs26.html#XhafaA10,https://doi.org/10.1016/j.future.2009.11.005 +Hai Zhuge,Special section: Semantic Link Network.,2010,26,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs26.html#Zhuge10,https://doi.org/10.1016/j.future.2009.10.010 +Tony Hey,The UK e-Science Core Programme and the Grid.,2002,18,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs18.html#HeyT02,https://doi.org/10.1016/S0167-739X(02)00082-1 +Danilo Carastan-Santos,Finding exact hitting set solutions for systems biology applications using heterogeneous GPU clusters.,2017,67,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs67.html#Carastan-Santos17,https://doi.org/10.1016/j.future.2016.02.009 +Robert F. Simmons,Technologies for machine translation.,1986,2,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs2.html#Simmons86,https://doi.org/10.1016/0167-739X(86)90002-6 +Takeshi Yoshimura,A rule-based and algorithmic approach for logic synthesis.,1989,5,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs5.html#Yoshimura89,https://doi.org/10.1016/0167-739X(89)90029-0 +Yusuo Hu,Efficient and incentive-compatible resource allocation mechanism for P2P-assisted content delivery systems.,2013,29,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs29.html#HuDLW13,https://doi.org/10.1016/j.future.2012.08.008 +Rafaelli de C. Coutinho,Optimizing virtual machine allocation for parallel scientific workflows in federated clouds.,2015,46,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs46.html#CoutinhoDFO15,https://doi.org/10.1016/j.future.2014.10.009 +Tianqing Zhu,An effective privacy preserving algorithm for neighborhood-based collaborative filtering.,2014,36,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs36.html#ZhuRZRX14,https://doi.org/10.1016/j.future.2013.07.019 +Andrei Borshchev,Distributed simulation of hybrid systems with AnyLogic and HLA.,2002,18,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs18.html#BorshchevKK02,https://doi.org/10.1016/S0167-739X(02)00055-9 +Valliyammai Chinnaiah,A Grid resource brokering strategy based on resource and network performance in Grid.,2012,28,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs28.html#ChinnaiahS12,https://doi.org/10.1016/j.future.2011.09.002 +Qinlong Huang,Secure and efficient data collaboration with hierarchical attribute-based encryption in cloud computing.,2017,72,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs72.html#HuangYS17,https://doi.org/10.1016/j.future.2016.09.021 +Iftikhar Hussain,Organizational-based model and agent-based simulation for long-term carpooling.,2016,64,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs64.html#HussainKGYBJW16,https://doi.org/10.1016/j.future.2016.02.019 +André Luckow,Migol: A fault-tolerant service framework for MPI applications in the grid.,2008,24,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs24.html#LuckowS08,https://doi.org/10.1016/j.future.2007.03.007 +John A. Miller,The JSIM web-based simulation environment.,2000,17,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs17.html#MillerSX00,https://doi.org/10.1016/S0167-739X(99)00108-9 +Umesh Deshpande,Traffic-sensitive Live Migration of Virtual Machines.,2017,72,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs72.html#DeshpandeK17,https://doi.org/10.1016/j.future.2016.05.003 +JinHo Ahn,Scalable and efficient fault-tolerant protocol for mobility agents in mobile IP-based systems.,2002,18,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs18.html#AhnMH02,https://doi.org/10.1016/S0167-739X(01)00066-8 +Tuan Anh Nguyen 0002,Availability modeling and analysis of a data center for disaster tolerance.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#NguyenKP16,https://doi.org/10.1016/j.future.2015.08.017 +Zhe Zhang,Lark: An effective approach for software-defined networking in high throughput computing clusters.,2017,72,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs72.html#ZhangBCT17,https://doi.org/10.1016/j.future.2016.03.010 +Magdalini Eirinaki,Recommender Systems for Large-Scale Social Networks: A review of challenges and solutions.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#EirinakiGVT18,https://doi.org/10.1016/j.future.2017.09.015 +Weidong Liu 0008,Discovering the core semantics of event from social media.,2016,64,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs64.html#LiuLGXKX16,https://doi.org/10.1016/j.future.2015.11.023 +Mohammad Mehedi Hassan,A robust human activity recognition system using smartphone sensors and deep learning.,2018,81,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs81.html#HassanUMA18,https://doi.org/10.1016/j.future.2017.11.029 +Gunasekaran Manogaran,In-Mapper combiner based MapReduce algorithm for processing of big climate data.,2018,86,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs86.html#ManogaranLC18,https://doi.org/10.1016/j.future.2018.02.048 +Jacek Cala,Cloud computing for fast prediction of chemical activity.,2013,29,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs29.html#CalaHWW13,https://doi.org/10.1016/j.future.2013.01.011 +Rodolfo E. Haber,"Special section: ""Soft-computing and advanced techniques in new algorithmic approaches to existing application areas"".",2005,21,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs21.html#Haber05,https://doi.org/10.1016/j.future.2004.03.001 +Jingjing Wang,Model matching of input/output asynchronous sequential machines based on the semi-tensor product of matrices.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#WangHCZ18,https://doi.org/10.1016/j.future.2017.03.023 +Luc Renambot,Griz: experience with remote visualization over an optical grid.,2003,19,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs19.html#RenambotSBGS03,https://doi.org/10.1016/S0167-739X(03)00067-0 +F. S. de Boer,Compositionality in the temporal logic of concurrent systems (extended abstract).,1990,6,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs6.html#Boer90,https://doi.org/10.1016/0167-739X(90)90025-9 +Karsten M. Decker,Matching user requirements in parallel programming.,1996,12,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs12.html#DeckerDRR96,https://doi.org/10.1016/S0167-739X(96)00015-5 +R. Cornubert,Benchmark of application software kernels on the SUPERNODE SN1000 using the 3P PARLIB.,1995,11,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs11.html#CornubertGSZ95,https://doi.org/10.1016/0167-739X(94)00050-O +Johannes-Y. Lohrer,A generic framework for synchronized distributed data management in archaeological related disciplines.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#LohrerKKMO16,https://doi.org/10.1016/j.future.2015.07.001 +P. E. L. Clarke,Special section: Switched lightpaths.,2010,26,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs26.html#ClarkeGD10,https://doi.org/10.1016/j.future.2009.05.019 +Lianne G. C. Crone,The conjugate gradient method on the Parsytec GCel-3/512.,1995,11,Future Generation Comp. Syst.,2,db/journals/fgcs/fgcs11.html#Crone95,https://doi.org/10.1016/0167-739X(95)00057-Y +Stefania Bandini,Parallel simulation of reaction-diffusion phenomena in percolation processes : A model based on cellular automata.,2001,17,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs17.html#BandiniMPS01,https://doi.org/10.1016/S0167-739X(00)00051-0 +Giovanni Aloisio,Special section: Life science grids for biomedicine and bioinformatics.,2007,23,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs23.html#AloisioBMMS07,https://doi.org/10.1016/j.future.2006.10.005 +Anand Natrajan,The Legion support for advanced parameter-space studies on a grid.,2002,18,Future Generation Comp. Syst.,8,db/journals/fgcs/fgcs18.html#NatrajanHG02,https://doi.org/10.1016/S0167-739X(02)00083-3 +Augusto Ciuffoletti,Secure token passing at application level.,2010,26,Future Generation Comp. Syst.,7,db/journals/fgcs/fgcs26.html#Ciuffoletti10a,https://doi.org/10.1016/j.future.2009.12.003 +Sebastian Wandelt,QRE: Quick Robustness Estimation for large complex networks.,2018,83,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs83.html#WandeltSZH18,https://doi.org/10.1016/j.future.2017.02.018 +Simon Miles,Mapping attribution metadata to the Open Provenance Model.,2011,27,Future Generation Comp. Syst.,6,db/journals/fgcs/fgcs27.html#Miles11,https://doi.org/10.1016/j.future.2010.10.007 +Weiqi Dai,TEE: A virtual DRTM based execution environment for secure cloud-end computing.,2015,49,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs49.html#DaiJZXZSY15,https://doi.org/10.1016/j.future.2014.08.005 +Junaid Arshad,A novel intrusion severity analysis approach for Clouds.,2013,29,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs29.html#ArshadTX13,https://doi.org/10.1016/j.future.2011.08.009 +Dieter Gollmann,New paradigms - old paradigms?,2000,16,Future Generation Comp. Syst.,4,db/journals/fgcs/fgcs16.html#Gollmann00,https://doi.org/10.1016/S0167-739X(99)00058-8 +Mostafa Ghobaei Arani,An autonomic resource provisioning approach for service-based cloud applications: A hybrid approach.,2018,78,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs78.html#AraniJP18,https://doi.org/10.1016/j.future.2017.02.022 +Georgios I. Doukidis,Developing and running expert systems with PESYS.,1987,3,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs3.html#DoukidisW87,https://doi.org/10.1016/0167-739X(87)90012-4 +Wolfgang Bibel,Towards a connection machine for logical inference.,1985,1,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs1.html#BibelB85,https://doi.org/10.1016/0167-739X(85)90019-6 +George E. Lindamood,The structure of the Japanese fifth generation computer project - then and now.,1984,1,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs1.html#Lindamood84,https://doi.org/10.1016/0167-739X(84)90021-9 +Derek Partridge,The scope and limitations of first generation expert systems.,1987,3,Future Generation Comp. Syst.,1,db/journals/fgcs/fgcs3.html#Partridge87,https://doi.org/10.1016/0167-739X(87)90038-0 +María S. Pérez,MAPFS: A flexible multiagent parallel file system for clusters.,2006,22,Future Generation Comp. Syst.,5,db/journals/fgcs/fgcs22.html#PerezCCPR06,https://doi.org/10.1016/j.future.2005.09.006 +Simon Scheider,Why good data analysts need to be critical synthesists. Determining the role of semantics in data analysis.,2017,72,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs72.html#ScheiderOA17,https://doi.org/10.1016/j.future.2017.02.046 +Domenico Cotroneo,Automated root cause identification of security alerts: Evaluation in a SaaS Cloud.,2016,56,Future Generation Comp. Syst.,,db/journals/fgcs/fgcs56.html#CotroneoPP16,https://doi.org/10.1016/j.future.2015.09.009 +Mathieu Blanc,Improving Mandatory Access Control for HPC clusters.,2013,29,Future Generation Comp. Syst.,3,db/journals/fgcs/fgcs29.html#BlancL13,https://doi.org/10.1016/j.future.2012.03.020 +Cormac Callanan,User awareness and tolerance of privacy abuse on mobile Internet: An exploratory study.,2016,33,Telematics and Informatics,1,db/journals/tele/tele33.html#CallananJJ16,https://doi.org/10.1016/j.tele.2015.04.009 +Farid Shirazi,Interrogating Iran's restricted public cloud: An Actor Network Theory perspective.,2014,31,Telematics and Informatics,2,db/journals/tele/tele31.html#Shirazi14,https://doi.org/10.1016/j.tele.2013.08.005 +Lawrie Hallett,Digital broadcasting - Challenges and opportunities for European community radio broadcasters.,2010,27,Telematics and Informatics,2,db/journals/tele/tele27.html#HallettH10,https://doi.org/10.1016/j.tele.2009.06.005 +Po-Ling Sun,An implementation framework for E-Government 2.0.,2015,32,Telematics and Informatics,3,db/journals/tele/tele32.html#SunKS15,https://doi.org/10.1016/j.tele.2014.12.003 +Julia Pohle,UNESCO and INFOethics: Seeking global ethical values in the Information Society.,2015,32,Telematics and Informatics,2,db/journals/tele/tele32.html#Pohle15,https://doi.org/10.1016/j.tele.2014.05.006 +Claudio Feijóo,Exploring a heterogeneous and fragmented digital ecosystem: Mobile content.,2009,26,Telematics and Informatics,3,db/journals/tele/tele26.html#FeijooMAB09,https://doi.org/10.1016/j.tele.2008.11.009 +Ian MacInnes,Business models and operational issues in the Chinese online game industry.,2007,24,Telematics and Informatics,2,db/journals/tele/tele24.html#MacInnesH07,https://doi.org/10.1016/j.tele.2006.04.002 +Gary W. Ozanich,3-G wireless auctions as an economic barrier to entry: the western european experience.,2004,21,Telematics and Informatics,3,db/journals/tele/tele21.html#OzanichHP04,https://doi.org/10.1016/S0736-5853(03)00057-1 +Rocci Luppicini,Special issue on ethics in the information society.,2015,32,Telematics and Informatics,2,db/journals/tele/tele32.html#LuppiciniD15,https://doi.org/10.1016/j.tele.2014.11.001 +Mikko V. J. Heikkinen,Energy efficiency of mobile handsets: Measuring user attitudes and behavior.,2012,29,Telematics and Informatics,4,db/journals/tele/tele29.html#HeikkinenNSH12,https://doi.org/10.1016/j.tele.2012.01.005 +Tuncay Sevindik,Future's learning environments in health education: The effects of smart classrooms on the academic achievements of the students at health college.,2010,27,Telematics and Informatics,3,db/journals/tele/tele27.html#Sevindik10,https://doi.org/10.1016/j.tele.2009.08.001 +Minghua Xu,Television reform in the era of globalization: New trends and patterns in post-WTO China.,2013,30,Telematics and Informatics,4,db/journals/tele/tele30.html#Xu13,https://doi.org/10.1016/j.tele.2012.01.002 +Sandra Soroa-Koury,Factors affecting consumers' responses to mobile advertising from a social norm theoretical perspective.,2010,27,Telematics and Informatics,1,db/journals/tele/tele27.html#Soroa-KouryY10,https://doi.org/10.1016/j.tele.2009.06.001 +Vasilis Kostakis,Open source 3D printing as a means of learning: An educational experiment in two high schools in Greece.,2015,32,Telematics and Informatics,1,db/journals/tele/tele32.html#KostakisNG15,https://doi.org/10.1016/j.tele.2014.05.001 +B. Hull,ICT and social exclusion: the role of libraries.,2003,20,Telematics and Informatics,2,db/journals/tele/tele20.html#Hull03,https://doi.org/10.1016/S0736-5853(02)00020-5 +M. Soledad Janita,Quality in e-Government services: A proposal of dimensions from the perspective of public sector employees.,2018,35,Telematics and Informatics,2,db/journals/tele/tele35.html#JanitaG18,https://doi.org/10.1016/j.tele.2018.01.004 +Debbie Goh,Protesting the Singapore government: The role of collective action frames in social media mobilization.,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#GohP16,https://doi.org/10.1016/j.tele.2015.07.008 +Vânia Gonçalves,Adding value to the network: Mobile operators' experiments with Software-as-a-Service and Platform-as-a-Service models.,2011,28,Telematics and Informatics,1,db/journals/tele/tele28.html#GoncalvesB11,https://doi.org/10.1016/j.tele.2010.05.005 +Khawar Hameed,The application of mobile computing and technology to health care services.,2003,20,Telematics and Informatics,2,db/journals/tele/tele20.html#Hameed03,https://doi.org/10.1016/S0736-5853(02)00018-7 +Cheng-Hsiung Weng,Disease prediction with different types of neural network classifiers.,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#WengHH16,https://doi.org/10.1016/j.tele.2015.08.006 +Andrew Barendse,Innovative regulatory and policy initiatives at increasing ICT connectivity in South Africa.,2004,21,Telematics and Informatics,,db/journals/tele/tele21.html#Barendse04,https://doi.org/10.1016/S0736-5853(03)00022-4 +Suaini Sura,Factors influencing intention to donate via social network site (SNS): From Asian's perspective.,2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#SuraAL17,https://doi.org/10.1016/j.tele.2016.04.007 +Michel Walrave,Whether or not to engage in sexting: Explaining adolescent sexting behaviour by applying the prototype willingness model.,2015,32,Telematics and Informatics,4,db/journals/tele/tele32.html#WalravePOGHV15,https://doi.org/10.1016/j.tele.2015.03.008 +Vimala Balakrishnan,Exploring the relationship between urbanized Malaysian youth and their mobile phones: A quantitative approach.,2012,29,Telematics and Informatics,3,db/journals/tele/tele29.html#BalakrishnanR12,https://doi.org/10.1016/j.tele.2011.11.001 +António Madureira,Factors that hinder the success of SIM-based mobile NFC service deployments.,2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#Madureira17,https://doi.org/10.1016/j.tele.2016.05.003 +Euripidis N. Loukis,The effect of hard and soft information and communication technologies investment on manufacturing business performance in Greece - A preliminary econometric study.,2009,26,Telematics and Informatics,2,db/journals/tele/tele26.html#LoukisSM09,https://doi.org/10.1016/j.tele.2008.02.002 +Christian Fuchs,Sustainability and community networks.,2017,34,Telematics and Informatics,2,db/journals/tele/tele34.html#Fuchs17,https://doi.org/10.1016/j.tele.2016.10.003 +Kimmo Karhu,Analyzing competitive and collaborative differences among mobile ecosystems using abstracted strategy networks.,2014,31,Telematics and Informatics,2,db/journals/tele/tele31.html#KarhuTH14,https://doi.org/10.1016/j.tele.2013.09.003 +Han-Chung Huang,How to create flow experience in exergames? Perspective of flow theory.,2018,35,Telematics and Informatics,5,db/journals/tele/tele35.html#HuangPWCYT18,https://doi.org/10.1016/j.tele.2018.03.001 +Cheng-Yuan Ku,Policy satisfaction for separation of dispensing from medical practices in Taiwan: Success of the prescription-release information system.,2014,31,Telematics and Informatics,2,db/journals/tele/tele31.html#KuSH14,https://doi.org/10.1016/j.tele.2013.09.004 +Flávio Nunes,The Portuguese urban system: An opposition between its hierarchical organization in cyberspace vs. physical space.,2006,23,Telematics and Informatics,2,db/journals/tele/tele23.html#Nunes06,https://doi.org/10.1016/j.tele.2005.05.001 +Francis L. F. Lee,The impact of online user-generated satire on young people's political attitudes: Testing the moderating role of knowledge and discussion.,2014,31,Telematics and Informatics,3,db/journals/tele/tele31.html#Lee14a,https://doi.org/10.1016/j.tele.2013.08.002 +Ville Salonen,Web personalization: The state of the art and future avenues for research and practice.,2016,33,Telematics and Informatics,4,db/journals/tele/tele33.html#SalonenK16,https://doi.org/10.1016/j.tele.2016.03.004 +Kenneth C. C. Yang,Factors influencing Internet users' perceived credibility of news-related blogs in Taiwan.,2007,24,Telematics and Informatics,2,db/journals/tele/tele24.html#Yang07a,https://doi.org/10.1016/j.tele.2006.04.001 +Aqdas Malik,Uses and Gratifications of digital photo sharing on Facebook.,2016,33,Telematics and Informatics,1,db/journals/tele/tele33.html#MalikDN16,https://doi.org/10.1016/j.tele.2015.06.009 +Lidwien van de Wijngaert,Would you share? Predicting the potential use of a new technology.,2009,26,Telematics and Informatics,1,db/journals/tele/tele26.html#WijngaertB09,https://doi.org/10.1016/j.tele.2008.01.002 +Hissam Tawfik,Evaluating practice-centered awareness in cross-boundary telehealth decision support systems.,2015,32,Telematics and Informatics,3,db/journals/tele/tele32.html#TawfikA15,https://doi.org/10.1016/j.tele.2014.11.002 +Qun Zhao,Determinants of backers' funding intention in crowdfunding: Social exchange theory and regulatory focus.,2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#ZhaoCWC17,https://doi.org/10.1016/j.tele.2016.06.006 +Ibrahim M. Al-Jabri,Adoption of ERP systems: Does information transparency matter?,2015,32,Telematics and Informatics,2,db/journals/tele/tele32.html#Al-JabriR15,https://doi.org/10.1016/j.tele.2014.09.005 +Viraj Samaranayake,Employee perception towards electronic monitoring at work place and its impact on job satisfaction of software professionals in Sri Lanka.,2012,29,Telematics and Informatics,2,db/journals/tele/tele29.html#SamaranayakeG12,https://doi.org/10.1016/j.tele.2011.08.003 +Last Moyo,The digital turn in radio: A critique of institutional and organizational modeling of new radio practices and cultures.,2013,30,Telematics and Informatics,3,db/journals/tele/tele30.html#Moyo13a,https://doi.org/10.1016/j.tele.2012.10.003 +Adriane Borger,From coexistence to cooperation: Experiments in intercultural broadcasting in Swiss community radios.,2010,27,Telematics and Informatics,2,db/journals/tele/tele27.html#BorgerB10,https://doi.org/10.1016/j.tele.2009.06.015 +Vicente Benjumea,Specification of a framework for the anonymous use of privileges.,2006,23,Telematics and Informatics,3,db/journals/tele/tele23.html#BenjumeaLL06,https://doi.org/10.1016/j.tele.2005.07.004 +Francisco J. García-Peñalvo,An adaptive hybrid MOOC model: Disrupting the MOOC concept in higher education.,2018,35,Telematics and Informatics,4,db/journals/tele/tele35.html#Garcia-PenalvoB18,https://doi.org/10.1016/j.tele.2017.09.012 +Michael Mudrick,The influence of social media on fan reactionary behaviors.,2016,33,Telematics and Informatics,4,db/journals/tele/tele33.html#MudrickMA16,https://doi.org/10.1016/j.tele.2016.01.005 +Pejman Goudarzi,Stochastic total cost of ownership optimization for video streaming services.,2014,31,Telematics and Informatics,1,db/journals/tele/tele31.html#Goudarzi14,https://doi.org/10.1016/j.tele.2013.02.001 +JungHwan Lee,Conjoint analysis on preferences of HRD managers and employees for effective implementation of m-learning: The case of South Korea.,2015,32,Telematics and Informatics,4,db/journals/tele/tele32.html#LeeKZ15,https://doi.org/10.1016/j.tele.2015.04.010 +Barrie Axford,Towards a political sociology of the Internet and local governance.,2003,20,Telematics and Informatics,3,db/journals/tele/tele20.html#AxfordH03,https://doi.org/10.1016/S0736-5853(03)00013-3 +Gaurav Kabra,Understanding behavioural intention to use information technology: Insights from humanitarian practitioners.,2017,34,Telematics and Informatics,7,db/journals/tele/tele34.html#KabraRAD17,https://doi.org/10.1016/j.tele.2017.05.010 +Stefan Tenner,GAST: ARBAJTERSKI R: ADIO - Migration and media in Serbia.,2010,27,Telematics and Informatics,2,db/journals/tele/tele27.html#Tenner10,https://doi.org/10.1016/j.tele.2009.06.003 +Mehmet Gürol,Profile of Internet Cafe users in Turkey.,2007,24,Telematics and Informatics,1,db/journals/tele/tele24.html#GurolS07,https://doi.org/10.1016/j.tele.2005.12.004 +Beulah Christalin Latha Christudas,An evolutionary approach for personalization of content delivery in e-learning systems based on learner behavior forcing compatibility of learning materials.,2018,35,Telematics and Informatics,3,db/journals/tele/tele35.html#ChristudasKT18,https://doi.org/10.1016/j.tele.2017.02.004 +Stephen Musgrave,The community portal challenge--is there a technology barrier for local authorities?.,2004,21,Telematics and Informatics,3,db/journals/tele/tele21.html#Musgrave04,https://doi.org/10.1016/j.tele.2003.12.001 +Nasrin Dastranj Mamaghani,Customer oriented enterprise IT architecture framework.,2012,29,Telematics and Informatics,2,db/journals/tele/tele29.html#MamaghaniMS12,https://doi.org/10.1016/j.tele.2011.07.001 +Francesc Valls,Urban data and urban design: A data mining approach to architecture education.,2018,35,Telematics and Informatics,4,db/journals/tele/tele35.html#VallsRFKVM18,https://doi.org/10.1016/j.tele.2017.09.015 +Patricio E. Ramírez-Correa,Moderating effect of learning styles on a learning management system's success.,2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#Ramirez-CorreaR17,https://doi.org/10.1016/j.tele.2016.04.006 +Abinash Panda,Compulsive smartphone usage and users' ill-being among young Indians: Does personality matter?,2018,35,Telematics and Informatics,5,db/journals/tele/tele35.html#PandaJ18,https://doi.org/10.1016/j.tele.2018.03.006 +Wei-Yen Hsu,Brain-computer interface: The next frontier of telemedicine in human-computer interaction.,2015,32,Telematics and Informatics,1,db/journals/tele/tele32.html#Hsu15,https://doi.org/10.1016/j.tele.2014.07.001 +Muhammad Z. I. Lallmahomed,Factors influencing the adoption of e-Government services in Mauritius.,2017,34,Telematics and Informatics,4,db/journals/tele/tele34.html#LallmahomedLL17,https://doi.org/10.1016/j.tele.2017.01.003 +Zaryab Sheikh,Acceptance of social commerce framework in Saudi Arabia.,2017,34,Telematics and Informatics,8,db/journals/tele/tele34.html#SheikhIRHS17,https://doi.org/10.1016/j.tele.2017.08.003 +Noriko Igari,How to successfully promote ICT usage: A comparative analysis of Denmark and Japan.,2014,31,Telematics and Informatics,1,db/journals/tele/tele31.html#Igari14,https://doi.org/10.1016/j.tele.2012.10.001 +Cheryl Campanella Bracken,Parameter estimation validity and relationship robustness: A comparison of telephone and internet survey techniques.,2009,26,Telematics and Informatics,2,db/journals/tele/tele26.html#BrackenJNA09,https://doi.org/10.1016/j.tele.2008.03.001 +Kenneth C. C. Yang,The aborted Green dam-youth escort censor-ware project in China: A case study of emerging civic participation in China's internet policy-making process.,2011,28,Telematics and Informatics,2,db/journals/tele/tele28.html#Yang11,https://doi.org/10.1016/j.tele.2010.07.001 +Peter G. Mwesige,Cyber elites: a survey of Internet Cafe' users in Uganda.,2004,21,Telematics and Informatics,,db/journals/tele/tele21.html#Mwesige04,https://doi.org/10.1016/S0736-5853(03)00024-8 +Francisco Ortin,Design and evaluation of an alternative programming paradigms course.,2017,34,Telematics and Informatics,6,db/journals/tele/tele34.html#OrtinRQ17,https://doi.org/10.1016/j.tele.2016.09.014 +Erik Bohlin,Business models and financial impacts of future mobile broadband networks.,2007,24,Telematics and Informatics,3,db/journals/tele/tele24.html#Bohlin07,https://doi.org/10.1016/j.tele.2007.04.002 +Giner Alor-Hernández,Preface Special Issue on Educational Applications on the Web of Data: New trends and perspectives.,2018,35,Telematics and Informatics,3,db/journals/tele/tele35.html#Alor-HernandezR18,https://doi.org/10.1016/j.tele.2018.03.015 +António Abreu,The electronic booklet on teaching-learning process: Teacher vision and parents of students in primary and secondary education.,2017,34,Telematics and Informatics,6,db/journals/tele/tele34.html#AbreuRCC17,https://doi.org/10.1016/j.tele.2016.08.011 +Asta Tarute,Mobile application driven consumer engagement.,2017,34,Telematics and Informatics,4,db/journals/tele/tele34.html#TaruteNG17,https://doi.org/10.1016/j.tele.2017.01.006 +Manoj A. Thomas,Nuances of development contexts for ICT4D research in least developed countries: An empirical investigation in Haiti.,2017,34,Telematics and Informatics,7,db/journals/tele/tele34.html#ThomasLO17,https://doi.org/10.1016/j.tele.2017.05.001 +Sophia Kaitatzi-Whitlock,Implementing strategies for digital pay television in Europe: The case of Greece.,1999,16,Telematics and Informatics,3,db/journals/tele/tele16.html#Kaitatzi-Whitlock99,https://doi.org/10.1016/S0736-5853(99)00025-8 +Teck-Soon Hew,Predicting the acceptance of cloud-based virtual learning environment: The roles of Self Determination and Channel Expansion Theory.,2016,33,Telematics and Informatics,4,db/journals/tele/tele33.html#HewK16,https://doi.org/10.1016/j.tele.2016.01.004 +Ignacio Redondo,To use or not to use ad blockers? The roles of knowledge of ad blockers and attitude toward online advertising.,2018,35,Telematics and Informatics,6,db/journals/tele/tele35.html#RedondoA18,https://doi.org/10.1016/j.tele.2018.04.008 +Theo Dunnewijk,A brief history of mobile communication in Europe.,2007,24,Telematics and Informatics,3,db/journals/tele/tele24.html#DunnewijkH07,https://doi.org/10.1016/j.tele.2007.01.013 +Chiao-Chen Chang,Examining users** intention to continue using social network games: A flow experience perspective.,2013,30,Telematics and Informatics,4,db/journals/tele/tele30.html#Chang13,https://doi.org/10.1016/j.tele.2012.10.006 +Jan Servaes,The impact of rankings. At the start of Volume 35.,2018,35,Telematics and Informatics,1,db/journals/tele/tele35.html#Servaes18,https://doi.org/10.1016/j.tele.2017.12.008 +Fernando Moreira,Evolution and use of mobile devices in higher education: A case study in Portuguese Higher Education Institutions between 2009/2010 and 2014/2015.,2017,34,Telematics and Informatics,6,db/journals/tele/tele34.html#MoreiraFPD17,https://doi.org/10.1016/j.tele.2016.08.010 +Ho Seoung Na,Efficiency comparison of digital content providers with different pricing strategies.,2017,34,Telematics and Informatics,2,db/journals/tele/tele34.html#NaHHL17,https://doi.org/10.1016/j.tele.2016.10.006 +Hui Na Chua,Compliance to personal data protection principles: A study of how organizations frame privacy policy notices.,2017,34,Telematics and Informatics,4,db/journals/tele/tele34.html#ChuaHWC17,https://doi.org/10.1016/j.tele.2017.01.008 +Matti Haverila,What do we want specifically from the cell phone? An age related study.,2012,29,Telematics and Informatics,1,db/journals/tele/tele29.html#Haverila12,https://doi.org/10.1016/j.tele.2011.02.004 +Wei-Yen Hsu,An integrated-mental brainwave system for analyses and judgments of consumer preference.,2017,34,Telematics and Informatics,5,db/journals/tele/tele34.html#Hsu17b,https://doi.org/10.1016/j.tele.2016.11.002 +Volker Leib,ICANN - EU can't: Internet governance and Europe's role in the formation of the Internet Corporation for Assigned Names and Numbers (ICANN).,2002,19,Telematics and Informatics,2,db/journals/tele/tele19.html#Leib02,https://doi.org/10.1016/S0736-5853(01)00011-9 +Vincent Menger,DEDUCE: A pattern matching method for automatic de-identification of Dutch medical text.,2018,35,Telematics and Informatics,4,db/journals/tele/tele35.html#MengerSWS18,https://doi.org/10.1016/j.tele.2017.08.002 +Samson Struckmann,News consumption in a changing media ecology: An MESM-study on mobile news.,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#StruckmannK16,https://doi.org/10.1016/j.tele.2015.08.012 +Emily Lowe-Calverley,Self-ie love: Predictors of image editing intentions on Facebook.,2018,35,Telematics and Informatics,1,db/journals/tele/tele35.html#Lowe-CalverleyG18,https://doi.org/10.1016/j.tele.2017.10.011 +Wei-Yen Hsu,Segmentation-based compression: New frontiers of telemedicine in telecommunication.,2015,32,Telematics and Informatics,3,db/journals/tele/tele32.html#Hsu15a,https://doi.org/10.1016/j.tele.2014.11.003 +Tony Cheng-Kui Huang,Change discovery of learning performance in dynamic educational environments.,2016,33,Telematics and Informatics,3,db/journals/tele/tele33.html#HuangHC16,https://doi.org/10.1016/j.tele.2015.10.005 +Aijaz A. Shaikh,Mobile banking adoption: A literature review.,2015,32,Telematics and Informatics,1,db/journals/tele/tele32.html#ShaikhK15,https://doi.org/10.1016/j.tele.2014.05.003 +Daniel Halpern,The online ideal persona vs. the jealousy effect: Two explanations of why selfies are associated with lower-quality romantic relationships.,2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#HalpernKC17,https://doi.org/10.1016/j.tele.2016.04.014 +Dimitri Schuurman,A Living Lab research approach for mobile TV.,2011,28,Telematics and Informatics,4,db/journals/tele/tele28.html#SchuurmanMME11,https://doi.org/10.1016/j.tele.2010.11.004 +Last Moyo,Introduction: Critical reflections on technological convergence on radio and the emerging digital cultures and practices.,2013,30,Telematics and Informatics,3,db/journals/tele/tele30.html#Moyo13,https://doi.org/10.1016/j.tele.2012.10.005 +Tien-Chi Huang,From 3D modeling to 3D printing: Development of a differentiated spatial ability teaching model.,2017,34,Telematics and Informatics,2,db/journals/tele/tele34.html#HuangL17,https://doi.org/10.1016/j.tele.2016.10.005 +Fadly Hamka,Mobile customer segmentation based on smartphone measurement.,2014,31,Telematics and Informatics,2,db/journals/tele/tele31.html#HamkaBRK14,https://doi.org/10.1016/j.tele.2013.08.006 +Filipe Sá,Potential dimensions for a local e-Government services quality model.,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#SaRC16,https://doi.org/10.1016/j.tele.2015.08.005 +Nagapavan Chintalapati,Examining the use of YouTube as a Learning Resource in higher education: Scale development and validation of TAM model.,2017,34,Telematics and Informatics,6,db/journals/tele/tele34.html#ChintalapatiD17,https://doi.org/10.1016/j.tele.2016.08.008 +Richard W. S. Wu,Hong Kong and Singapore: Two models of telecommunications regulations?,2009,26,Telematics and Informatics,4,db/journals/tele/tele26.html#WuL09,https://doi.org/10.1016/j.tele.2008.05.001 +Hans-Jürgen Engelbrecht,Internet-based 'social sharing' as a new form of global production: The case of SETI@home.,2008,25,Telematics and Informatics,3,db/journals/tele/tele25.html#Engelbrecht08,https://doi.org/10.1016/j.tele.2006.08.003 +Jesús Díaz-Campo,Journalism ethics in a digital environment: How journalistic codes of ethics have been adapted to the Internet and ICTs in countries around the world.,2015,32,Telematics and Informatics,4,db/journals/tele/tele32.html#Diaz-CampoS15,https://doi.org/10.1016/j.tele.2015.03.004 +Mayank Yadav,Measuring consumer perception of social media marketing activities in e-commerce industry: Scale development and validation.,2017,34,Telematics and Informatics,7,db/journals/tele/tele34.html#YadavR17,https://doi.org/10.1016/j.tele.2017.06.001 +Apollos Patricks Oghuma,An expectation-confirmation model of continuance intention to use mobile instant messaging.,2016,33,Telematics and Informatics,1,db/journals/tele/tele33.html#OghumaSWC16,https://doi.org/10.1016/j.tele.2015.05.006 +Giuseppe D'Aniello,"Corrigendum to ""An approach based on semantic stream reasoning to support decision processes in smart cities"" [Telemat. Informat. 35(1) (2018) 68-81].",2018,35,Telematics and Informatics,6,db/journals/tele/tele35.html#DAnielloGOS18,https://doi.org/10.1016/j.tele.2018.03.008 +Matti Haverila,Cell phone usage and broad feature preferences: A study among Finnish undergraduate students.,2013,30,Telematics and Informatics,2,db/journals/tele/tele30.html#Haverila13,https://doi.org/10.1016/j.tele.2012.05.002 +Thomas Frissen,Capitalizing on the Koran to fuel online violent radicalization: A taxonomy of Koranic references in ISIS's Dabiq.,2018,35,Telematics and Informatics,2,db/journals/tele/tele35.html#FrissenTOD18,https://doi.org/10.1016/j.tele.2018.01.008 +Eun Go,But not all social media are the same: Analyzing organizations' social media usage patterns.,2016,33,Telematics and Informatics,1,db/journals/tele/tele33.html#GoY16,https://doi.org/10.1016/j.tele.2015.06.016 +Zaoyi Sun,Automatic labeling of mobile apps by the type of psychological needs they satisfy.,2017,34,Telematics and Informatics,5,db/journals/tele/tele34.html#SunJZCQDW17,https://doi.org/10.1016/j.tele.2017.03.001 +Tawanda Blessing Chiyangwa,Rapidly co-evolving technology adoption and diffusion models.,2016,33,Telematics and Informatics,1,db/journals/tele/tele33.html#ChiyangwaA16,https://doi.org/10.1016/j.tele.2015.05.004 +Alejandro Vera Baquero,Real-time business activity monitoring and analysis of process performance on big-data domains.,2016,33,Telematics and Informatics,3,db/journals/tele/tele33.html#BaqueroPM16,https://doi.org/10.1016/j.tele.2015.12.005 +Muneo Kaigo,Exploring fluctuations in citizen engagement on a local government Facebook page in Japan.,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#KaigoO16,https://doi.org/10.1016/j.tele.2015.07.011 +Panagiotis Demestichas,Introducing cognitive systems in the wireless B3G world: Motivations and basic engineering challenges.,2010,27,Telematics and Informatics,3,db/journals/tele/tele27.html#Demestichas10,https://doi.org/10.1016/j.tele.2009.08.002 +Morten Falch,Tele-centres in Ghana.,2004,21,Telematics and Informatics,,db/journals/tele/tele21.html#Falch04,https://doi.org/10.1016/S0736-5853(03)00025-X +Elizabeth M. LaRue,Assessing mobile phone communication utility preferences in a social support network.,2010,27,Telematics and Informatics,4,db/journals/tele/tele27.html#LaRueMTK10,https://doi.org/10.1016/j.tele.2010.03.002 +Po-Lin Pan,Exploring perceptions of online sport commentary: A test of disposition effects hypothesis.,2013,30,Telematics and Informatics,2,db/journals/tele/tele30.html#Pan13,https://doi.org/10.1016/j.tele.2012.04.001 +Christos Bouras,Methodology for Public Administrators for selecting between open source and proprietary software.,2013,30,Telematics and Informatics,2,db/journals/tele/tele30.html#BourasKT13,https://doi.org/10.1016/j.tele.2012.03.001 +David Wortley,Community Informatics: Enabling Communities with Information and Communication Technologies.,2002,19,Telematics and Informatics,1,db/journals/tele/tele19.html#Wortley02,https://doi.org/10.1016/S0736-5853(00)00030-7 +Oscar Peters,Always connected: a longitudinal field study of mobile communication.,2005,22,Telematics and Informatics,3,db/journals/tele/tele22.html#PetersA05,https://doi.org/10.1016/j.tele.2004.11.002 +Amandeep Dhir,Understanding the relationship between intensity and gratifications of Facebook use among adolescents and young adults.,2017,34,Telematics and Informatics,4,db/journals/tele/tele34.html#DhirT17,https://doi.org/10.1016/j.tele.2016.08.017 +Chuang-Chun Liu,Model of online game addiction: The role of computer-mediated communication motives.,2016,33,Telematics and Informatics,4,db/journals/tele/tele33.html#LiuC16,https://doi.org/10.1016/j.tele.2016.02.002 +Henrique Damasceno Vianna,In search of computer-aided social support in non-communicable diseases care.,2017,34,Telematics and Informatics,8,db/journals/tele/tele34.html#ViannaB17,https://doi.org/10.1016/j.tele.2017.06.005 +Mehrbakhsh Nilashi,A knowledge-based system for breast cancer classification using fuzzy logic method.,2017,34,Telematics and Informatics,4,db/journals/tele/tele34.html#NilashiIAS17,https://doi.org/10.1016/j.tele.2017.01.007 +Qun Zhao,Determinants of live streamers' continuance broadcasting intentions on Twitch: A self-determination theory perspective.,2018,35,Telematics and Informatics,2,db/journals/tele/tele35.html#ZhaoCCW18,https://doi.org/10.1016/j.tele.2017.12.018 +Salvatore Scifo,Conference report: Community media at ECREA's ECC08.,2010,27,Telematics and Informatics,2,db/journals/tele/tele27.html#Scifo10,https://doi.org/10.1016/j.tele.2009.06.014 +Devendra Potnis,Culture's consequences: Economic barriers to owning mobile phones experienced by women in India.,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#Potnis16,https://doi.org/10.1016/j.tele.2015.09.002 +Raúl Tabarés-Gutiérrez,Understanding the role of digital commons in the web* The making of HTML5.,2018,35,Telematics and Informatics,5,db/journals/tele/tele35.html#Tabares-Gutierrez18,https://doi.org/10.1016/j.tele.2018.03.013 +Yavuz Akbulut,Predictors of digital piracy among Turkish undergraduate students.,2018,35,Telematics and Informatics,5,db/journals/tele/tele35.html#AkbulutD18,https://doi.org/10.1016/j.tele.2018.03.004 +Weiyu Zhang,The structural features and the deliberative quality of online discussions.,2013,30,Telematics and Informatics,2,db/journals/tele/tele30.html#ZhangCT13,https://doi.org/10.1016/j.tele.2012.06.001 +Dandison C. Ukpabi,Consumers' acceptance of information and communications technology in tourism: A review.,2017,34,Telematics and Informatics,5,db/journals/tele/tele34.html#UkpabiK17,https://doi.org/10.1016/j.tele.2016.12.002 +Junghwan Kim,Competitive dynamics in the Korean video platform market: Traditional pay TV platforms vs. OTT platforms.,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#KimKN16,https://doi.org/10.1016/j.tele.2015.06.014 +Janice Penni,The future of online social networks (OSN): A measurement analysis using social media tools and application.,2017,34,Telematics and Informatics,5,db/journals/tele/tele34.html#Penni17,https://doi.org/10.1016/j.tele.2016.10.009 +Junseok Hwang,Interprovider differentiated service interconnection management models in the Internet bandwidth commodity markets.,2002,19,Telematics and Informatics,4,db/journals/tele/tele19.html#HwangKW02,https://doi.org/10.1016/S0736-5853(01)00025-9 +Syed Zamberi Ahmad,Reflections of entrepreneurs of small and medium-sized enterprises concerning the adoption of social media and its impact on performance outcomes: Evidence from the UAE.,2018,35,Telematics and Informatics,1,db/journals/tele/tele35.html#AhmadAA18,https://doi.org/10.1016/j.tele.2017.09.006 +Shaojung Sharon Wang,Discourse behind the Forbidden Realm: Internet surveillance and its implications on China's blogosphere.,2010,27,Telematics and Informatics,1,db/journals/tele/tele27.html#WangH10,https://doi.org/10.1016/j.tele.2009.03.004 +T. Y. Lau,An examination of factors contributing to South Korea's global leadership in broadband adoption.,2005,22,Telematics and Informatics,4,db/journals/tele/tele22.html#LauKA05,https://doi.org/10.1016/j.tele.2004.11.004 +Kamil Kopecký,"Online blackmail of Czech children focused on so-called ""sextortion"" (analysis of culprit and victim behaviors).",2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#Kopecky17,https://doi.org/10.1016/j.tele.2016.04.004 +Chia-Chen Chen,What drives impulse buying behaviors in a mobile auction? The perspective of the Stimulus-Organism-Response model.,2018,35,Telematics and Informatics,5,db/journals/tele/tele35.html#ChenY18,https://doi.org/10.1016/j.tele.2018.02.007 +Tatiana Tropina,Functional separation within the European Union: Debates and challenges.,2010,27,Telematics and Informatics,3,db/journals/tele/tele27.html#TropinaWC10,https://doi.org/10.1016/j.tele.2009.09.001 +Dong Hee Shin,A study of mobile number portability effects in the United States.,2007,24,Telematics and Informatics,1,db/journals/tele/tele24.html#Shin07,https://doi.org/10.1016/j.tele.2005.11.002 +Sorin Adam Matei,Globalization and heterogenization: Cultural and civilizational clustering in telecommunicative space (1989-1999).,2006,23,Telematics and Informatics,4,db/journals/tele/tele23.html#Matei06,https://doi.org/10.1016/j.tele.2005.09.002 +Hongjin Shim,Peer-group pressure as a moderator of the relationship between attitude toward cyberbullying and cyberbullying behaviors on mobile instant messengers.,2016,33,Telematics and Informatics,1,db/journals/tele/tele33.html#ShimS16,https://doi.org/10.1016/j.tele.2015.06.002 +Yunusa Olufadi,Social networking time use scale (SONTUS): A new instrument for measuring the time spent on the social networking sites.,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#Olufadi16,https://doi.org/10.1016/j.tele.2015.11.002 +Charalampos Doukas,Digital cities of the future: Extending @home assistive technologies for the elderly and the disabled.,2011,28,Telematics and Informatics,3,db/journals/tele/tele28.html#DoukasMBLMM11,https://doi.org/10.1016/j.tele.2010.08.001 +Catherine Chassay,Talking shop--contact centres and dimensions of 'social exclusion'.,2003,20,Telematics and Informatics,4,db/journals/tele/tele20.html#ChassayC03,https://doi.org/10.1016/S0736-5853(02)00022-9 +Tze Wei Liew,Exploring the effects of specialist versus generalist embodied virtual agents in a multi-product category online store.,2018,35,Telematics and Informatics,1,db/journals/tele/tele35.html#LiewT18,https://doi.org/10.1016/j.tele.2017.10.005 +Marika Steenkamp,The use of Facebook for political commentary in South Africa.,2014,31,Telematics and Informatics,1,db/journals/tele/tele31.html#SteenkampH14,https://doi.org/10.1016/j.tele.2012.10.002 +John W. Cheng,Cultivation effects of mass and social media on perceptions and behavioural intentions in post-disaster recovery - The case of the 2011 Great East Japan Earthquake.,2016,33,Telematics and Informatics,3,db/journals/tele/tele33.html#ChengMOJ16,https://doi.org/10.1016/j.tele.2015.12.001 +Alekos Pantazis,3D printing as a means of learning and communication: The 3Ducation project revisited.,2017,34,Telematics and Informatics,8,db/journals/tele/tele34.html#PantazisP17,https://doi.org/10.1016/j.tele.2017.06.010 +Yi Mou,"The influence of online forum and SNS use on online political discussion in China: Assessing ""Spirals of Trust"".",2013,30,Telematics and Informatics,4,db/journals/tele/tele30.html#MouAFLL13,https://doi.org/10.1016/j.tele.2013.04.002 +Shahla Asadi,Organizational research in the field of Green IT: A systematic literature review from 2007 to 2016.,2017,34,Telematics and Informatics,7,db/journals/tele/tele34.html#AsadiHD17,https://doi.org/10.1016/j.tele.2017.05.009 +Elizabeth A. Mack,Businesses and the need for speed: The impact of broadband speed on business presence.,2014,31,Telematics and Informatics,4,db/journals/tele/tele31.html#Mack14,https://doi.org/10.1016/j.tele.2013.12.001 +Boreum Choi,Trust in open versus closed social media: The relative influence of user- and marketer-generated content in social network services on customer trust.,2017,34,Telematics and Informatics,5,db/journals/tele/tele34.html#ChoiL17,https://doi.org/10.1016/j.tele.2016.11.005 +Pieter Ballon,Changing business models for Europe's mobile telecommunications industry: The impact of alternative wireless technologies.,2007,24,Telematics and Informatics,3,db/journals/tele/tele24.html#Ballon07,https://doi.org/10.1016/j.tele.2007.01.007 +Daejin Choi,Bit.ly/practice: Uncovering content publishing and sharing through URL shortening services.,2018,35,Telematics and Informatics,5,db/journals/tele/tele35.html#ChoiHCRRK18,https://doi.org/10.1016/j.tele.2018.03.003 +Chia-Lin Hsu,Do website features matter in an online gamification context? Focusing on the mediating roles of user experience and attitude.,2017,34,Telematics and Informatics,4,db/journals/tele/tele34.html#HsuCYL17,https://doi.org/10.1016/j.tele.2017.01.009 +Jinhee Kim,Political disagreement and ambivalence in new information environment: Exploring conditional indirect effects of partisan news use and heterogeneous discussion networks on SNSs on political participation.,2017,34,Telematics and Informatics,8,db/journals/tele/tele34.html#KimH17,https://doi.org/10.1016/j.tele.2017.07.005 +Pathamanathan Pitchay Muthu,E-Government service delivery by a local government agency: The case of E-Licensing.,2016,33,Telematics and Informatics,4,db/journals/tele/tele33.html#MuthuTAAA16,https://doi.org/10.1016/j.tele.2016.02.003 +Namho Chung,Examining information sharing in social networking communities: Applying theories of social capital and attachment.,2016,33,Telematics and Informatics,1,db/journals/tele/tele33.html#ChungNK16,https://doi.org/10.1016/j.tele.2015.05.005 +Francis L. F. Lee,Social media use and university students' participation in a large-scale protest campaign: The case of Hong Kong's Umbrella Movement.,2017,34,Telematics and Informatics,2,db/journals/tele/tele34.html#LeeCC17,https://doi.org/10.1016/j.tele.2016.08.005 +Princely Ifinedo,Business undergraduates' perceived use outcomes of Moodle in a blended learning environment: The roles of usability factors and external support.,2018,35,Telematics and Informatics,1,db/journals/tele/tele35.html#IfinedoPA18,https://doi.org/10.1016/j.tele.2017.10.001 +Mohammed Aal-Nouman,Transmission of medical messages of patient using control signal of cellular network.,2018,35,Telematics and Informatics,1,db/journals/tele/tele35.html#Aal-NoumanTH18,https://doi.org/10.1016/j.tele.2017.11.008 +Adnan H. Aldholay,The role of transformational leadership as a mediating variable in DeLone and McLean information system success model: The context of online learning usage in Yemen.,2018,35,Telematics and Informatics,5,db/journals/tele/tele35.html#AldholayIAR18,https://doi.org/10.1016/j.tele.2018.03.012 +Young Wook Ha,Use and gratifications of mobile SNSs: Facebook and KakaoTalk in Korea.,2015,32,Telematics and Informatics,3,db/journals/tele/tele32.html#HaKSCP15,https://doi.org/10.1016/j.tele.2014.10.006 +Matti Kinnunen,Wearable and mobile sensors connected to social media in human well-being applications.,2016,33,Telematics and Informatics,1,db/journals/tele/tele33.html#KinnunenMORJEAA16,https://doi.org/10.1016/j.tele.2015.06.008 +Wenzhi Zheng,Business intelligence for patient-centeredness: A systematic review.,2018,35,Telematics and Informatics,4,db/journals/tele/tele35.html#ZhengWC18,https://doi.org/10.1016/j.tele.2017.06.015 +Sulaiman Al-Rafee,The fight against digital piracy: An experiment.,2010,27,Telematics and Informatics,3,db/journals/tele/tele27.html#Al-RafeeR10,https://doi.org/10.1016/j.tele.2009.12.002 +Seon-Kyou Choi,Network spillovers as an alternative efficiency argument for universal service policy.,1998,15,Telematics and Informatics,4,db/journals/tele/tele15.html#ChoiKK98,https://doi.org/10.1016/S0736-5853(98)00017-3 +Dongsuk Kang,Mobile services with handset bundling and governmental policies for competitive market.,2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#KangPLR17,https://doi.org/10.1016/j.tele.2016.04.015 +Dong-Hong Zhu,Understanding the influence of C2C communication on purchase decision in online communities from a perspective of information adoption model.,2016,33,Telematics and Informatics,1,db/journals/tele/tele33.html#ZhuCL16,https://doi.org/10.1016/j.tele.2015.06.001 +Chin Saik Yoon,Diverging information societies of the Asia Pacific.,2005,22,Telematics and Informatics,4,db/journals/tele/tele22.html#Yoon05,https://doi.org/10.1016/j.tele.2005.01.004 +Iftikhar Ahmed Khan,Job search website for illiterate users of Pakistan.,2017,34,Telematics and Informatics,2,db/journals/tele/tele34.html#KhanHSIS17,https://doi.org/10.1016/j.tele.2016.08.015 +Chien-Yuan Su,Patterns of motives for social network site use among sixth grade pupils in Taiwan.,2018,35,Telematics and Informatics,6,db/journals/tele/tele35.html#SuCCC18,https://doi.org/10.1016/j.tele.2018.05.008 +Sindy R. Sumter,Love me Tinder: Untangling emerging adults' motivations for using the dating application Tinder.,2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#SumterVL17,https://doi.org/10.1016/j.tele.2016.04.009 +Frank Hellemans,Napoleon and Internet. A historical and anthropological view on the culture of punctuality and instantaneity.,1998,15,Telematics and Informatics,3,db/journals/tele/tele15.html#Hellemans98,https://doi.org/10.1016/S0736-5853(98)00009-4 +Veronika Karnowski,When lifestyle becomes behavior: A closer look at the situational context of mobile communication.,2014,31,Telematics and Informatics,2,db/journals/tele/tele31.html#KarnowskiJ14,https://doi.org/10.1016/j.tele.2013.11.001 +Stefanos Gritzalis,Developing a culture of privacy in the Global Village.,2006,23,Telematics and Informatics,3,db/journals/tele/tele23.html#Gritzalis06,https://doi.org/10.1016/j.tele.2005.07.002 +Taeyang Kim,The survival strategy of branded content in the over-the-top (OTT) environment: Eye-tracking and Q-methodology approach in digital product placement.,2017,34,Telematics and Informatics,7,db/journals/tele/tele34.html#KimS17,https://doi.org/10.1016/j.tele.2017.04.016 +Haider M. Al-Khateeb,Cyberstalking: Investigating formal intervention and the role of Corporate Social Responsibility.,2017,34,Telematics and Informatics,4,db/journals/tele/tele34.html#Al-KhateebEABS17,https://doi.org/10.1016/j.tele.2016.08.016 +Seongcheol Kim,Firm characteristics influencing the extent of electronic billing adoption: an empirical study in the US telecommunication industry.,2002,19,Telematics and Informatics,3,db/journals/tele/tele19.html#Kim02,https://doi.org/10.1016/S0736-5853(00)00011-3 +Ralf De Wolf,Who's my audience again? Understanding audience management strategies for designing privacy management technologies.,2014,31,Telematics and Informatics,4,db/journals/tele/tele31.html#WolfP14,https://doi.org/10.1016/j.tele.2013.11.004 +Francesco Diasio,AMARC and more than 25 years of community media activism.,2010,27,Telematics and Informatics,2,db/journals/tele/tele27.html#Diasio10,https://doi.org/10.1016/j.tele.2009.06.010 +Rey G. Rosales,Citizen participation and the uses of mobile technology in radio broadcasting.,2013,30,Telematics and Informatics,3,db/journals/tele/tele30.html#Rosales13,https://doi.org/10.1016/j.tele.2012.04.006 +Carlos Flavián,The influence of online product presentation videos on persuasion and purchase channel preference: The role of imagery fluency and need for touch.,2017,34,Telematics and Informatics,8,db/journals/tele/tele34.html#FlavianGO17,https://doi.org/10.1016/j.tele.2017.07.002 +Yasemin Koçak Usluel,English version of Social Networks Adoption Scale: A validation study.,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#UsluelKSA16,https://doi.org/10.1016/j.tele.2015.10.007 +Sungjoon Lee,An integrated adoption model for e-books in a mobile environment: Evidence from South Korea.,2013,30,Telematics and Informatics,2,db/journals/tele/tele30.html#Lee13,https://doi.org/10.1016/j.tele.2012.01.006 +Felix Olu Bankole,The effects of cultural dimension on ICT innovation: Empirical analysis of mobile phone services.,2017,34,Telematics and Informatics,2,db/journals/tele/tele34.html#BankoleB17,https://doi.org/10.1016/j.tele.2016.08.004 +Junghun Kim,Public trust in a mobile device and service policy in South Korea: The Mobile Device Distribution Improvement Act.,2017,34,Telematics and Informatics,2,db/journals/tele/tele34.html#KimPCKC17,https://doi.org/10.1016/j.tele.2016.08.020 +Hun Choi,An empirical study on the adoption of information appliances with a focus on interactive TV.,2003,20,Telematics and Informatics,2,db/journals/tele/tele20.html#ChoiCKY03,https://doi.org/10.1016/S0736-5853(02)00024-2 +Jiyoung Lee 0003,Informed public against false rumor in the social media era: Focusing on social media dependency.,2018,35,Telematics and Informatics,5,db/journals/tele/tele35.html#LeeC18,https://doi.org/10.1016/j.tele.2017.12.017 +Giovanni M. de Holanda,Mapping users' perspectives and outlining social impacts from digitalization of terrestrial TV in Brazil.,2008,25,Telematics and Informatics,1,db/journals/tele/tele25.html#HolandaAM08,https://doi.org/10.1016/j.tele.2006.01.001 +Isma Masood,Privacy management of patient physiological parameters.,2018,35,Telematics and Informatics,4,db/journals/tele/tele35.html#MasoodWDAD18,https://doi.org/10.1016/j.tele.2017.12.020 +Konstantinos Pazalos,A structured methodology for assessing and improving e-services in digital cities.,2012,29,Telematics and Informatics,1,db/journals/tele/tele29.html#PazalosLN12,https://doi.org/10.1016/j.tele.2010.05.002 +Sugam Sharma,eFeed-Hungers.com: Mitigating global hunger crisis using next generation technologies.,2018,35,Telematics and Informatics,2,db/journals/tele/tele35.html#SharmaSTW18,https://doi.org/10.1016/j.tele.2018.01.003 +ángel García-Crespo,SPETA: Social pervasive e-Tourism advisor.,2009,26,Telematics and Informatics,3,db/journals/tele/tele26.html#Garcia-CrespoCRMPB09,https://doi.org/10.1016/j.tele.2008.11.008 +Ahmed Ibrahim Alzahrani,Extending the theory of planned behavior (TPB) to explain online game playing among Malaysian undergraduate students.,2017,34,Telematics and Informatics,4,db/journals/tele/tele34.html#AlzahraniMRAA17,https://doi.org/10.1016/j.tele.2016.07.001 +Hanne Kristine Hallingby,Convergence in action: A case study of the Norwegian Internet.,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#HallingbyHES16,https://doi.org/10.1016/j.tele.2015.08.011 +Xuguang Li,A comparative study of knowledge construction within online user support discussion forums in Chinese and English-language cultural contexts.,2016,33,Telematics and Informatics,4,db/journals/tele/tele33.html#LiC16,https://doi.org/10.1016/j.tele.2016.02.004 +Gaël Gueguen,The borders of mobile handset ecosystems: Is coopetition inevitable?,2011,28,Telematics and Informatics,1,db/journals/tele/tele28.html#GueguenI11,https://doi.org/10.1016/j.tele.2010.05.007 +Erik Bohlin,Special issue on mobile communications: From cellular to ad-hoc and beyond.,2007,24,Telematics and Informatics,3,db/journals/tele/tele24.html#BohlinBC07,https://doi.org/10.1016/j.tele.2007.01.001 +Craig E. Kuziemsky,The e-Hospice - Beyond traditional boundaries of palliative care.,2006,23,Telematics and Informatics,2,db/journals/tele/tele23.html#KuziemskyJL06,https://doi.org/10.1016/j.tele.2005.05.003 +Jeeyun Oh,Harnessing the persuasive potential of data: The combinatory effects of data visualization and interactive narratives on obesity perceptions and policy attitudes.,2018,35,Telematics and Informatics,6,db/journals/tele/tele35.html#OhLCC18,https://doi.org/10.1016/j.tele.2018.05.004 +Dazzelyn Baltazar Zapata,Inayan/nga-ag and other indigenous codes: How the Applai and Bontok Igorot's indigeneity found its way into the mobile world.,2017,34,Telematics and Informatics,7,db/journals/tele/tele34.html#Zapata17,https://doi.org/10.1016/j.tele.2016.05.019 +Goretti Linda Nassanga,ICTs and radio in Africa: How the uptake of ICT has influenced the newsroom culture among community radio journalists.,2013,30,Telematics and Informatics,3,db/journals/tele/tele30.html#NassangaML13,https://doi.org/10.1016/j.tele.2012.04.005 +Tahereh Hasani,Investigating the antecedents to the adoption of SCRM technologies by start-up companies.,2017,34,Telematics and Informatics,5,db/journals/tele/tele34.html#HasaniBD17,https://doi.org/10.1016/j.tele.2016.12.004 +Chalita Srinuan,An analysis of mobile Internet access in Thailand: Implications for bridging the digital divide.,2012,29,Telematics and Informatics,3,db/journals/tele/tele29.html#SrinuanSB12,https://doi.org/10.1016/j.tele.2011.10.003 +Trisha T. C. Lin,Responding to media convergence: Regulating multi-screen television services in Thailand.,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#LinO16,https://doi.org/10.1016/j.tele.2015.07.005 +Junhui He,Examining the dynamic effects of social network advertising: A semiotic perspective.,2018,35,Telematics and Informatics,2,db/journals/tele/tele35.html#HeS18,https://doi.org/10.1016/j.tele.2018.01.014 +Jinyun Chen,Can online social networks foster young adults' civic engagement?,2017,34,Telematics and Informatics,5,db/journals/tele/tele34.html#Chen17,https://doi.org/10.1016/j.tele.2016.09.013 +Vaggelis Saprikis,Suppliers' behavior on the post-adoption stage of business-to-business e-reverse auctions: An empirical study.,2013,30,Telematics and Informatics,2,db/journals/tele/tele30.html#Saprikis13,https://doi.org/10.1016/j.tele.2012.04.002 +Jeonghoon Mo,Impacts of subsidy regulation on the mobile market in Korea : Major provider's diversification of handset quality.,2017,34,Telematics and Informatics,4,db/journals/tele/tele34.html#MoKK17,https://doi.org/10.1016/j.tele.2016.12.005 +Antonio Fratini,Medical emergency alarm dissemination in urban environments.,2014,31,Telematics and Informatics,3,db/journals/tele/tele31.html#FratiniC14,https://doi.org/10.1016/j.tele.2013.11.007 +Catherine A. Middleton,An exploration of user-generated wireless broadband infrastructures in digital cities.,2011,28,Telematics and Informatics,3,db/journals/tele/tele28.html#MiddletonB11,https://doi.org/10.1016/j.tele.2010.08.003 +Lin Xiao,Analyzing consumer online group buying motivations: An interpretive structural modeling approach.,2018,35,Telematics and Informatics,4,db/journals/tele/tele35.html#Xiao18,https://doi.org/10.1016/j.tele.2018.01.010 +I-Chiu Chang,Assessing the performance of long-term care information systems and the continued use intention of users.,2015,32,Telematics and Informatics,2,db/journals/tele/tele32.html#ChangCWH15,https://doi.org/10.1016/j.tele.2014.08.006 +Panagiotis Kokkinakos,Digital technology and innovation trajectories in the Mediterranean region: A casualty of or an antidote to the economic crisis?,2017,34,Telematics and Informatics,5,db/journals/tele/tele34.html#KokkinakosMKP17,https://doi.org/10.1016/j.tele.2016.08.024 +Jan Servaes,What is so special about the Asia-Pacific region?,2005,22,Telematics and Informatics,4,db/journals/tele/tele22.html#ServaesO05,https://doi.org/10.1016/j.tele.2005.01.003 +Weonseek Kim,Economic analysis of the media representative's bundling strategy and program quality: The Korean experience.,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#KimL16,https://doi.org/10.1016/j.tele.2015.09.003 +Núria Reguero Jiménez,Community media in the context of European media policies.,2010,27,Telematics and Informatics,2,db/journals/tele/tele27.html#JimenezS10,https://doi.org/10.1016/j.tele.2009.06.004 +Olivine Wai-Yu Lo,Effects of gratification-opportunities and gratifications-obtained on preferences of instant messaging and e-mail among college students.,2009,26,Telematics and Informatics,2,db/journals/tele/tele26.html#LoL09,https://doi.org/10.1016/j.tele.2008.06.001 +Yong Jin Park,Personal network on the Internet: How the socially marginalized stay marginalized in personal network diversity and multiplicity.,2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#ParkY17,https://doi.org/10.1016/j.tele.2016.04.001 +Junseok Hwang,Service differentiation economic models and analysis of market-based QoS interconnections.,2008,25,Telematics and Informatics,4,db/journals/tele/tele25.html#HwangW08,https://doi.org/10.1016/j.tele.2007.07.002 +John O'Sullivan,Beyond solutions: Students' rationales for print and screen reading in Irish higher education.,2018,35,Telematics and Informatics,2,db/journals/tele/tele35.html#OSullivan18,https://doi.org/10.1016/j.tele.2017.12.012 +Josep M. Basart,New ethical challenges for today engineering and technology.,2015,32,Telematics and Informatics,2,db/journals/tele/tele32.html#BasartFS15,https://doi.org/10.1016/j.tele.2014.05.008 +Sasidhar Malladi,Decision support models for the selection of internet access technologies in rural communities.,2005,22,Telematics and Informatics,3,db/journals/tele/tele22.html#MalladiM05,https://doi.org/10.1016/j.tele.2004.10.001 +Guangchao Charles Feng,Tracing the route of China's Internet censorship: An empirical study.,2013,30,Telematics and Informatics,4,db/journals/tele/tele30.html#FengG13,https://doi.org/10.1016/j.tele.2012.09.002 +Annemijn F. van Gorp,The impact of facilities and service-based competition on internet services provision in the Canadian broadband market.,2010,27,Telematics and Informatics,3,db/journals/tele/tele27.html#GorpM10,https://doi.org/10.1016/j.tele.2009.12.001 +Lia Puspitasari,Digital divides and mobile Internet in Indonesia: Impact of smartphones.,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#PuspitasariI16,https://doi.org/10.1016/j.tele.2015.11.001 +Sasan Adibi,A remote interactive non-repudiation multimedia-based m-learning system.,2010,27,Telematics and Informatics,4,db/journals/tele/tele27.html#Adibi10,https://doi.org/10.1016/j.tele.2010.01.001 +Hamzah Elrehail,The impact of Transformational and Authentic leadership on innovation in higher education: The contingent role of knowledge sharing.,2018,35,Telematics and Informatics,1,db/journals/tele/tele35.html#ElrehailEAA18,https://doi.org/10.1016/j.tele.2017.09.018 +Alan T. Murray,Critical infrastructure protection: The vulnerability conundrum.,2012,29,Telematics and Informatics,1,db/journals/tele/tele29.html#MurrayG12,https://doi.org/10.1016/j.tele.2011.05.001 +Asoke K. Talukder,Mobile web for under-privileged in developing countries.,2010,27,Telematics and Informatics,3,db/journals/tele/tele27.html#TalukderD10,https://doi.org/10.1016/j.tele.2009.07.002 +Emad A. Abu-Shanab,E-government familiarity influence on Jordanians' perceptions.,2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#Abu-Shanab17,https://doi.org/10.1016/j.tele.2016.05.001 +Melanie Revilla,An experiment comparing grids and item-by-item formats in web surveys completed through PCs and smartphones.,2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#RevillaTO17,https://doi.org/10.1016/j.tele.2016.04.002 +Dongnyok Shim,Identifying key drivers and bottlenecks in the adoption of E-book readers in Korea.,2016,33,Telematics and Informatics,3,db/journals/tele/tele33.html#ShimKA16,https://doi.org/10.1016/j.tele.2015.12.009 +Joke Bauwens,Introduction: Ready for use? An old medium in new *.,2011,28,Telematics and Informatics,4,db/journals/tele/tele28.html#BauwensPG11,https://doi.org/10.1016/j.tele.2010.11.006 +Jin Qi,A cognitive mobile sensor network for environment observation.,2012,29,Telematics and Informatics,1,db/journals/tele/tele29.html#QiS12,https://doi.org/10.1016/j.tele.2011.03.001 +Eunhwa Jung,Social networking in the aging context: Why older adults use or avoid Facebook.,2017,34,Telematics and Informatics,7,db/journals/tele/tele34.html#JungWJS17,https://doi.org/10.1016/j.tele.2017.04.015 +Madini O. Alassafi,A framework for critical security factors that influence the decision of cloud adoption by Saudi government agencies.,2017,34,Telematics and Informatics,7,db/journals/tele/tele34.html#AlassafiAWW17,https://doi.org/10.1016/j.tele.2017.04.010 +Gabriel M. Ramirez,All-Learning: The state of the art of the models and the methodologies educational with ICT.,2018,35,Telematics and Informatics,4,db/journals/tele/tele35.html#RamirezCM18,https://doi.org/10.1016/j.tele.2017.10.004 +Harry Bouwman,Introduction to the special issue on Lifestyle and Mobile Communication.,2014,31,Telematics and Informatics,2,db/journals/tele/tele31.html#BouwmanRSW14,https://doi.org/10.1016/S0736-5853(13)00077-4 +Rolien Hoyng,A socio-technical contract: Network governance and ICT4D in Turkey.,2016,33,Telematics and Informatics,1,db/journals/tele/tele33.html#Hoyng16,https://doi.org/10.1016/j.tele.2015.06.011 +Claudio Feijóo,Techno-economic implications of the mass-market uptake of mobile data services: Requirements for next generation mobile networks.,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#FeijooBR16,https://doi.org/10.1016/j.tele.2015.10.001 +Kamil Kopecký,Czech Children and Facebook - A quantitative survey.,2016,33,Telematics and Informatics,4,db/journals/tele/tele33.html#Kopecky16a,https://doi.org/10.1016/j.tele.2016.02.008 +Konstantinos Chorianopoulos,Coping with TiVo: Opportunities of the networked digital video recorder.,2007,24,Telematics and Informatics,1,db/journals/tele/tele24.html#ChorianopoulosS07,https://doi.org/10.1016/j.tele.2005.12.003 +Yoonmo Sang,Understanding the intentions behind illegal downloading: A comparative study of American and Korean college students.,2015,32,Telematics and Informatics,2,db/journals/tele/tele32.html#SangLKW15,https://doi.org/10.1016/j.tele.2014.09.007 +W. Lemstra,License-exempt: Wi-Fi complement to 3G.,2009,26,Telematics and Informatics,3,db/journals/tele/tele26.html#LemstraH09,https://doi.org/10.1016/j.tele.2008.11.003 +Mark de Reuver,Should mobile Internet be an extension to the fixed web? Fixed-mobile reinforcement as mediator between context of use and future use.,2013,30,Telematics and Informatics,2,db/journals/tele/tele30.html#ReuverOB13,https://doi.org/10.1016/j.tele.2012.02.002 +Hua Jiang,Leading in the digital age: A study of how social media are transforming the work of communication professionals.,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#JiangLK16,https://doi.org/10.1016/j.tele.2015.10.006 +Carla Cavichiolo Flores,Twitter information for contributing to the strategic digital city: Towards citizens as co-managers.,2018,35,Telematics and Informatics,5,db/journals/tele/tele35.html#FloresR18,https://doi.org/10.1016/j.tele.2018.01.005 +Shahrokh Nikou,Ubiquitous use of mobile social network services.,2014,31,Telematics and Informatics,3,db/journals/tele/tele31.html#NikouB14,https://doi.org/10.1016/j.tele.2013.11.002 +Jan Servaes,Editorial.,2009,26,Telematics and Informatics,2,db/journals/tele/tele26.html#Servaes09,https://doi.org/10.1016/j.tele.2008.10.001 +Claudio Feijóo,The emergence of IP interactive multimedia services and the evolution of the traditional audiovisual public service regulatory approach.,2007,24,Telematics and Informatics,4,db/journals/tele/tele24.html#FeijooFBMR07,https://doi.org/10.1016/j.tele.2007.01.009 +Hak J. Kim,Real options and technology management: Assessing technology migration options in wireless industry.,2009,26,Telematics and Informatics,2,db/journals/tele/tele26.html#KimWM09,https://doi.org/10.1016/j.tele.2008.05.004 +Vasilis Niaros,Making (in) the smart city: The emergence of makerspaces.,2017,34,Telematics and Informatics,7,db/journals/tele/tele34.html#NiarosKD17,https://doi.org/10.1016/j.tele.2017.05.004 +Jeffrey James,Product use and welfare: The case of mobile phones in Africa.,2014,31,Telematics and Informatics,3,db/journals/tele/tele31.html#James14a,https://doi.org/10.1016/j.tele.2013.08.007 +Kostas D. Karatzas,Development of a hierarchical system for the teletransmission of environmental and energy data.,2000,17,Telematics and Informatics,2,db/journals/tele/tele17.html#KaratzasPMKB00,https://doi.org/10.1016/S0736-5853(00)00013-7 +Jeffrey James,The distributional effects of leapfrogging in mobile phones.,2012,29,Telematics and Informatics,3,db/journals/tele/tele29.html#James12a,https://doi.org/10.1016/j.tele.2011.09.001 +António Abreu,The electronic Individual Student Process (e-ISP).,2018,35,Telematics and Informatics,4,db/journals/tele/tele35.html#AbreuACR18,https://doi.org/10.1016/j.tele.2017.11.011 +Thomas A. Hemphill,Technology standards-setting in the US wireless telecommunications industry: A study of three generations of digital standards development.,2009,26,Telematics and Informatics,1,db/journals/tele/tele26.html#Hemphill09a,https://doi.org/10.1016/j.tele.2008.01.003 +Andreea Molnar,Video quality vs. mobile data billing plans.,2016,33,Telematics and Informatics,1,db/journals/tele/tele33.html#Molnar16,https://doi.org/10.1016/j.tele.2015.07.009 +Frank J. van Rijnsoever,Interdependent technology attributes and the diffusion of consumer electronics.,2009,26,Telematics and Informatics,4,db/journals/tele/tele26.html#RijnsoeverHWD09,https://doi.org/10.1016/j.tele.2009.01.001 +Toks Dele Oyedemi,Digital inequalities and implications for social inequalities: A study of Internet penetration amongst university students in South Africa.,2012,29,Telematics and Informatics,3,db/journals/tele/tele29.html#Oyedemi12,https://doi.org/10.1016/j.tele.2011.12.001 +Euripidis N. Loukis,Editorial of special issue 'Digital Technologies in the Mediterranean Region'.,2017,34,Telematics and Informatics,5,db/journals/tele/tele34.html#LoukisFA17,https://doi.org/10.1016/j.tele.2016.12.008 +Ivan Forenbacher,Hedonic modeling to explore the relationship of cell phone plan price and quality in Croatia.,2016,33,Telematics and Informatics,4,db/journals/tele/tele33.html#ForenbacherPH16,https://doi.org/10.1016/j.tele.2016.03.008 +Ji Won Kim,Personality traits and psychological motivations predicting selfie posting behaviors on social networking sites.,2017,34,Telematics and Informatics,5,db/journals/tele/tele34.html#KimC17,https://doi.org/10.1016/j.tele.2016.11.006 +Jieun Park,Why has a Korean telecommunications technology failed: A case study on WiBro.,2015,32,Telematics and Informatics,4,db/journals/tele/tele32.html#ParkKN15,https://doi.org/10.1016/j.tele.2015.01.002 +Dorien Baelden,Using new technologies for stimulating interpersonal communication on HIV and AIDS.,2012,29,Telematics and Informatics,2,db/journals/tele/tele29.html#BaeldenAV12,https://doi.org/10.1016/j.tele.2011.05.002 +Anastasios A. Economides,Students' thoughts about the importance and costs of their mobile devices' features and services.,2009,26,Telematics and Informatics,1,db/journals/tele/tele26.html#EconomidesG09,https://doi.org/10.1016/j.tele.2008.01.001 +Dusan Barac,E-business technologies for xRM: Exploring the readiness of public broadcasters.,2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#BaracRDLB17,https://doi.org/10.1016/j.tele.2016.04.005 +Emmanouil Ergazakis,Digital Cities: Towards an integrated decision support methodology.,2011,28,Telematics and Informatics,3,db/journals/tele/tele28.html#ErgazakisEAC11,https://doi.org/10.1016/j.tele.2010.09.002 +Morten Falch,Penetration of broadband services - The role of policies.,2007,24,Telematics and Informatics,4,db/journals/tele/tele24.html#Falch07,https://doi.org/10.1016/j.tele.2007.01.008 +Tom Evens,Access to premium content on mobile television platforms: The case of mobile sports.,2011,28,Telematics and Informatics,1,db/journals/tele/tele28.html#EvensLVSM11,https://doi.org/10.1016/j.tele.2010.05.004 +Leopoldina Fortunati,Sociological insights on the comparison of writing/reading on paper with writing/reading digitally.,2014,31,Telematics and Informatics,1,db/journals/tele/tele31.html#FortunatiV14,https://doi.org/10.1016/j.tele.2013.02.005 +Rafael Coomonte,A simplified energy consumption model for fiber-based Next Generation Access Networks.,2012,29,Telematics and Informatics,4,db/journals/tele/tele29.html#CoomonteLFM12,https://doi.org/10.1016/j.tele.2011.11.005 +Antonio Ghezzi,Towards a Future Internet infrastructure: Analyzing the multidimensional impacts of assured quality Internet interconnection.,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#GhezziD16,https://doi.org/10.1016/j.tele.2015.10.003 +Marlen Komorowski,Lowering the barriers for online cross-media usage: Scenarios for a Belgian single sign-on solution.,2016,33,Telematics and Informatics,4,db/journals/tele/tele33.html#KomorowskiCBB16,https://doi.org/10.1016/j.tele.2016.02.005 +Harry Bouwman,Mobile services put in context: A Q-sort analysis.,2012,29,Telematics and Informatics,1,db/journals/tele/tele29.html#BouwmanBN12,https://doi.org/10.1016/j.tele.2011.04.001 +Rosalie Hooi,Virtual world continuance intention.,2017,34,Telematics and Informatics,8,db/journals/tele/tele34.html#HooiC17,https://doi.org/10.1016/j.tele.2017.06.009 +YoungChan Hwang,The impact of engagement motives for social TV on social presence and sports channel commitment.,2015,32,Telematics and Informatics,4,db/journals/tele/tele32.html#HwangL15,https://doi.org/10.1016/j.tele.2015.03.006 +Cristina Calvo-Porral,Satisfaction and switching intention in mobile services: Comparing lock-in and free contracts in the Spanish market.,2017,34,Telematics and Informatics,5,db/journals/tele/tele34.html#Calvo-PorralFN17,https://doi.org/10.1016/j.tele.2016.08.022 +Ching-Wei Ho,Identify with community or company? An investigation on the consumer behavior in Facebook brand community.,2015,32,Telematics and Informatics,4,db/journals/tele/tele32.html#Ho15,https://doi.org/10.1016/j.tele.2015.05.002 +Jan Servaes,At the start of a new volume.,2012,29,Telematics and Informatics,1,db/journals/tele/tele29.html#Servaes12,https://doi.org/10.1016/j.tele.2011.08.001 +Guido Ongena,Threats and opportunities for new audiovisual cultural heritage archive services: The Dutch case.,2012,29,Telematics and Informatics,2,db/journals/tele/tele29.html#OngenaHW12,https://doi.org/10.1016/j.tele.2011.05.005 +Oussama Saafein,Factors affecting virtual team performance in telecommunication support environment.,2014,31,Telematics and Informatics,3,db/journals/tele/tele31.html#SaafeinS14,https://doi.org/10.1016/j.tele.2013.10.004 +Patchanee Malikhao,The media use of American youngsters in the age of narcissism: Surviving in a 24/7 media shock and awe - distracted by everything.,2011,28,Telematics and Informatics,2,db/journals/tele/tele28.html#MalikhaoS11,https://doi.org/10.1016/j.tele.2010.09.005 +Simon Forge,Managed Innovation in Korea in telecommunications - Moving towards 4G mobile at a national level.,2008,25,Telematics and Informatics,4,db/journals/tele/tele25.html#ForgeB08,https://doi.org/10.1016/j.tele.2007.10.002 +Donghee Shin,A socio-technical framework for Internet-of-Things design: A human-centered design for the Internet of Things.,2014,31,Telematics and Informatics,4,db/journals/tele/tele31.html#Shin14,https://doi.org/10.1016/j.tele.2014.02.003 +Ali A. Al-Kandari,The impact of the Internet on political attitudes in Kuwait and Egypt.,2012,29,Telematics and Informatics,3,db/journals/tele/tele29.html#Al-KandariH12,https://doi.org/10.1016/j.tele.2011.10.005 +Taeyang Kim,Social platform innovation of open source hardware in South Korea.,2016,33,Telematics and Informatics,1,db/journals/tele/tele33.html#KimS16,https://doi.org/10.1016/j.tele.2015.07.004 +Torsten J. Gerpott,Choosing a wrong mobile communication price plan: An empirical analysis of predictors of the degree of tariff misfit among flat rate subscribers in Germany.,2017,34,Telematics and Informatics,4,db/journals/tele/tele34.html#GerpottM17,https://doi.org/10.1016/j.tele.2016.08.003 +Hodjat Hamidi,Analysis of the essential factors for the adoption of mobile learning in higher education: A case study of students of the University of Technology.,2018,35,Telematics and Informatics,4,db/journals/tele/tele35.html#HamidiC18,https://doi.org/10.1016/j.tele.2017.09.016 +Adonai Teles,Assessment of digital inclusion via the actor-network theory: The case of the Brazilian municipality of Piraí.,2011,28,Telematics and Informatics,3,db/journals/tele/tele28.html#TelesJ11,https://doi.org/10.1016/j.tele.2010.09.003 +Louisa Ha,Internet experience and time displacement of traditional news media use: An application of the theory of the niche.,2012,29,Telematics and Informatics,2,db/journals/tele/tele29.html#HaF12,https://doi.org/10.1016/j.tele.2011.06.001 +Carrie Buchanan,Revisiting the UNESCO debate on a New World Information and Communication Order: Has the NWICO been achieved by other means?,2015,32,Telematics and Informatics,2,db/journals/tele/tele32.html#Buchanan15,https://doi.org/10.1016/j.tele.2014.05.007 +Arlene Bailey,The challenge of e-participation in the digital city: Exploring generational influences among community telecentre users.,2011,28,Telematics and Informatics,3,db/journals/tele/tele28.html#BaileyN11,https://doi.org/10.1016/j.tele.2010.09.004 +Jeffrey James,Which developing countries have done the most to close the digital divide?,2012,29,Telematics and Informatics,1,db/journals/tele/tele29.html#James12,https://doi.org/10.1016/j.tele.2011.05.003 +Yungeng Xie,Research on Chinese social media users' communication behaviors during public emergency events.,2017,34,Telematics and Informatics,3,db/journals/tele/tele34.html#XieQSC17,https://doi.org/10.1016/j.tele.2016.05.023 +Yoonhyuk Jung,Response to potential information technology risk: Users' valuation of electromagnetic field from mobile phones.,2015,32,Telematics and Informatics,1,db/journals/tele/tele32.html#JungK15,https://doi.org/10.1016/j.tele.2014.03.002 +Jiyoung Cha,Usage of video sharing websites: Drivers and barriers.,2014,31,Telematics and Informatics,1,db/journals/tele/tele31.html#Cha14,https://doi.org/10.1016/j.tele.2012.01.003 +Jung-Hua Chang,Would you change your mind? An empirical study of social impact theory on Facebook.,2018,35,Telematics and Informatics,1,db/journals/tele/tele35.html#ChangZWL18,https://doi.org/10.1016/j.tele.2017.11.009 +Yung-Ting Chuang,SSCLS: A Smartphone-Supported Collaborative Learning System.,2015,32,Telematics and Informatics,3,db/journals/tele/tele32.html#Chuang15,https://doi.org/10.1016/j.tele.2014.10.004 +Jose Picatoste,A new educational pattern in response to new technologies and sustainable development. Enlightening ICT skills for youth employability in the European Union.,2018,35,Telematics and Informatics,4,db/journals/tele/tele35.html#PicatostePR18,https://doi.org/10.1016/j.tele.2017.09.014 +Hongjin Shim,Why do people access news with mobile devices? Exploring the role of suitability perception and motives on mobile news use.,2015,32,Telematics and Informatics,1,db/journals/tele/tele32.html#ShimYLG15,https://doi.org/10.1016/j.tele.2014.05.002 +Luc Soete,Towards the digital economy: scenarios for business.,2000,17,Telematics and Informatics,2,db/journals/tele/tele17.html#Soete00,https://doi.org/10.1016/S0736-5853(00)00008-3 +Muneo Kaigo,Can the WSIS declaration principle and plan of action work in Japan? Digital stratification of Japanese society.,2005,22,Telematics and Informatics,4,db/journals/tele/tele22.html#Kaigo05,https://doi.org/10.1016/j.tele.2005.01.006 +Susanne Barth,The privacy paradox - Investigating discrepancies between expressed privacy concerns and actual online behavior - A systematic literature review.,2017,34,Telematics and Informatics,7,db/journals/tele/tele34.html#BarthJ17,https://doi.org/10.1016/j.tele.2017.04.013 +Aysun Gürol,Comparison of the internet usage levels amongst final year students of faculty of medicine and health colleges in Turkey: According to the gender variable.,2010,27,Telematics and Informatics,4,db/journals/tele/tele27.html#Gurol10,https://doi.org/10.1016/j.tele.2010.04.001 +Leonardo Heidrich,Diagnosis of learner dropout based on learning styles for online distance learning.,2018,35,Telematics and Informatics,6,db/journals/tele/tele35.html#HeidrichBCRMS18,https://doi.org/10.1016/j.tele.2018.04.007 +Namho Chung,The use of social media in travel information search.,2015,32,Telematics and Informatics,2,db/journals/tele/tele32.html#ChungK15,https://doi.org/10.1016/j.tele.2014.08.005 +Shu-Chu Sarrina Li,Electronic newspaper and its adopters: examining the factors influencing the adoption of electronic newspapers in Taiwan.,2003,20,Telematics and Informatics,1,db/journals/tele/tele20.html#Li03,https://doi.org/10.1016/S0736-5853(02)00002-3 +Maria A. Lambrou,Ambient intelligence technologies in support of shipping markets' operations.,2008,25,Telematics and Informatics,2,db/journals/tele/tele25.html#LambrouFSN08,https://doi.org/10.1016/j.tele.2006.06.001 +Kostas Stathis,Internet Commerce Developmnent* Craig Standing.,2002,19,Telematics and Informatics,1,db/journals/tele/tele19.html#Stathis02,https://doi.org/10.1016/S0736-5853(01)00001-6 +Muzammil Hussain,Conceptual framework for the security of mobile health applications on Android platform.,2018,35,Telematics and Informatics,5,db/journals/tele/tele35.html#HussainZZIAAA18,https://doi.org/10.1016/j.tele.2018.03.005 +Younghoon Lee,Smartphone user segmentation based on app usage sequence with neural networks.,2018,35,Telematics and Informatics,2,db/journals/tele/tele35.html#LeePCC18,https://doi.org/10.1016/j.tele.2017.12.007 +Taewoo Nam,A tool for liberty or oppression? A cross-national study of the Internet's influence on democracy.,2017,34,Telematics and Informatics,5,db/journals/tele/tele34.html#Nam17,https://doi.org/10.1016/j.tele.2016.11.004 +Yi-Hui Christine Huang,Does research on digital public relations indicate a paradigm shift? An analysis and critique of recent trends.,2017,34,Telematics and Informatics,7,db/journals/tele/tele34.html#HuangWH17,https://doi.org/10.1016/j.tele.2016.08.012 +Morten Falch,ICT and the future conditions for democratic governance.,2006,23,Telematics and Informatics,2,db/journals/tele/tele23.html#Falch06,https://doi.org/10.1016/j.tele.2005.06.001 +Costas Vassilakis,A framework for managing the lifecycle of transactional e-government services.,2003,20,Telematics and Informatics,4,db/journals/tele/tele20.html#VassilakisLLRG03,https://doi.org/10.1016/S0736-5853(03)00011-X +Sangwon Lee,An empirical analysis of tablet PC diffusion.,2017,34,Telematics and Informatics,2,db/journals/tele/tele34.html#LeeLC17,https://doi.org/10.1016/j.tele.2016.09.007 +Daekyung Kim,Political blog readers: Predictors of motivations for accessing political blogs.,2012,29,Telematics and Informatics,1,db/journals/tele/tele29.html#KimJ12,https://doi.org/10.1016/j.tele.2011.04.003 +Ilias O. Pappas,The interplay of online shopping motivations and experiential factors on personalized e-commerce: A complexity theory approach.,2017,34,Telematics and Informatics,5,db/journals/tele/tele34.html#PappasKGL17,https://doi.org/10.1016/j.tele.2016.08.021 +Tiance Dong,Social media and internet public events.,2017,34,Telematics and Informatics,3,db/journals/tele/tele34.html#DongLH17,https://doi.org/10.1016/j.tele.2016.05.024 +Steven Sam,Towards an empowerment framework for evaluating mobile phone use and impact in developing countries.,2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#Sam17,https://doi.org/10.1016/j.tele.2016.06.003 +Ulrika Sjöberg,The rise of the electronic individual: A study of how young Swedish teenagers use and perceive Internet.,1999,16,Telematics and Informatics,3,db/journals/tele/tele16.html#Sjoberg99,https://doi.org/10.1016/S0736-5853(99)00023-4 +Nils Walravens,From high hopes to high deficit and back: A historic overview of Europe's HDTV policy and reflections towards the future of HDTV.,2011,28,Telematics and Informatics,4,db/journals/tele/tele28.html#WalravensP11,https://doi.org/10.1016/j.tele.2010.11.005 +Anthony Cawley,Broadband and digital 'content' in the EU-25: Recent trends and challenges.,2007,24,Telematics and Informatics,4,db/journals/tele/tele24.html#CawleyP07,https://doi.org/10.1016/j.tele.2007.01.015 +John Olatunji Adeoti,Easing the burden of fixed telephone lines on small-scale entrepreneurs in Nigeria: GSM lines to the rescue.,2008,25,Telematics and Informatics,1,db/journals/tele/tele25.html#AdeotiA08,https://doi.org/10.1016/j.tele.2005.12.002 +David Rodrigues 0001,A frown emoji can be worth a thousand words: Perceptions of emoji use in text messages exchanged between romantic partners.,2017,34,Telematics and Informatics,8,db/journals/tele/tele34.html#RodriguesLPTG17,https://doi.org/10.1016/j.tele.2017.07.001 +Garry Wei-Han Tan,Gender and age: Do they really moderate mobile tourism shopping behavior?,2018,35,Telematics and Informatics,6,db/journals/tele/tele35.html#TanO18,https://doi.org/10.1016/j.tele.2018.04.009 +Giuseppe D'Aniello,An approach based on semantic stream reasoning to support decision processes in smart cities.,2018,35,Telematics and Informatics,1,db/journals/tele/tele35.html#DAnielloGO18,https://doi.org/10.1016/j.tele.2017.09.019 +Carolyn A. Lin,Perceived gratifications of online media service use among potential users.,2002,19,Telematics and Informatics,1,db/journals/tele/tele19.html#Lin02,https://doi.org/10.1016/S0736-5853(01)00014-4 +Covadonga Gijón,Exploring the differences in broadband access speeds across Glasgow.,2016,33,Telematics and Informatics,4,db/journals/tele/tele33.html#GijonWA16,https://doi.org/10.1016/j.tele.2015.11.003 +Ajay Kumar,Analyzing customer preference and measuring relative efficiency in telecom sector: A hybrid fuzzy AHP/DEA study.,2015,32,Telematics and Informatics,3,db/journals/tele/tele32.html#KumarSD15,https://doi.org/10.1016/j.tele.2014.10.003 +Johannes M. Bauer,Internet access in the European Union and in the United States.,2002,19,Telematics and Informatics,2,db/journals/tele/tele19.html#BauerBM02,https://doi.org/10.1016/S0736-5853(01)00009-0 +Jong-Chul Oh,Validation of Haptic Enabling Technology Acceptance Model (HE-TAM): Integration of IDT and TAM.,2014,31,Telematics and Informatics,4,db/journals/tele/tele31.html#OhY14,https://doi.org/10.1016/j.tele.2014.01.002 +Jan Servaes,The 'new' ICTs environment in Europe: closing or widening the gaps?,2002,19,Telematics and Informatics,2,db/journals/tele/tele19.html#ServaesH02,https://doi.org/10.1016/S0736-5853(01)00008-9 +Montgomery Van Wart,Integrating ICT adoption issues into (e-)leadership theory.,2017,34,Telematics and Informatics,5,db/journals/tele/tele34.html#WartRWL17,https://doi.org/10.1016/j.tele.2016.11.003 +Nesrin özdener,Gamification for enhancing Web 2.0 based educational activities: The case of pre-service grade school teachers using educational Wiki pages.,2018,35,Telematics and Informatics,3,db/journals/tele/tele35.html#Ozdener18,https://doi.org/10.1016/j.tele.2017.04.003 +Muhammad Yaseen,Secure sensors data acquisition and communication protection in eHealthcare: Review on the state of the art.,2018,35,Telematics and Informatics,4,db/journals/tele/tele35.html#YaseenSODAAIR18,https://doi.org/10.1016/j.tele.2017.08.005 +María Teresa González-Aparicio,Measuring temporal redundancy in sequences of video requests in a News-on-Demand service.,2014,31,Telematics and Informatics,3,db/journals/tele/tele31.html#Gonzalez-AparicioGBPMC14,https://doi.org/10.1016/j.tele.2013.10.006 +Li Huang,"Functions and roles of social media in media transformation in China: A case study of ""@CCTV NEWS"".",2017,34,Telematics and Informatics,3,db/journals/tele/tele34.html#HuangL17a,https://doi.org/10.1016/j.tele.2016.05.015 +Patrick Kanyi Wamuyu,Bridging the digital divide among low income urban communities. Leveraging use of Community Technology Centers.,2017,34,Telematics and Informatics,8,db/journals/tele/tele34.html#Wamuyu17,https://doi.org/10.1016/j.tele.2017.08.004 +Wonsang Yoo,Drone delivery: Factors affecting the public's attitude and intention to adopt.,2018,35,Telematics and Informatics,6,db/journals/tele/tele35.html#YooYJ18,https://doi.org/10.1016/j.tele.2018.04.014 +Boukaye Boubacar Traore,Integrating MDA and SOA for improving telemedicine services.,2016,33,Telematics and Informatics,3,db/journals/tele/tele33.html#TraoreKT16,https://doi.org/10.1016/j.tele.2015.11.009 +Marisol Sandoval,Towards a critical theory of alternative media.,2010,27,Telematics and Informatics,2,db/journals/tele/tele27.html#SandovalF10,https://doi.org/10.1016/j.tele.2009.06.011 +Benjamin W. Cramer,Man's need or man's greed: The human rights ramifications of green ICTs.,2012,29,Telematics and Informatics,4,db/journals/tele/tele29.html#Cramer12,https://doi.org/10.1016/j.tele.2011.11.003 +Hazuki Ishida,The effect of ICT development on economic growth and energy consumption in Japan.,2015,32,Telematics and Informatics,1,db/journals/tele/tele32.html#Ishida15,https://doi.org/10.1016/j.tele.2014.04.003 +P. Sotiriades,Premises and application of a commercial tele-working platform.,2004,21,Telematics and Informatics,3,db/journals/tele/tele21.html#SotiriadesEL04,https://doi.org/10.1016/j.tele.2004.01.002 +Azi Lev-On,The third-person effect on Facebook: The significance of perceived proficiency.,2017,34,Telematics and Informatics,4,db/journals/tele/tele34.html#Lev-On17,https://doi.org/10.1016/j.tele.2016.07.002 +Taewoo Nam,Does ideology matter for surveillance concerns?,2017,34,Telematics and Informatics,8,db/journals/tele/tele34.html#Nam17a,https://doi.org/10.1016/j.tele.2017.07.004 +Jahidul Hasan,Effective telemedicine project in Bangladesh: Special focus on diabetes health care delivery in a tertiary care in Bangladesh.,2012,29,Telematics and Informatics,2,db/journals/tele/tele29.html#Hasan12,https://doi.org/10.1016/j.tele.2011.02.002 +Yu-Hsiang Hsiao,Logistics service design for cross-border E-commerce using Kansei engineering with text-mining-based online content analysis.,2017,34,Telematics and Informatics,4,db/journals/tele/tele34.html#HsiaoCL17,https://doi.org/10.1016/j.tele.2016.08.002 +Yiouli Kritikou,A management scheme for improving transportation efficiency and contributing to the enhancement of the social fabric.,2009,26,Telematics and Informatics,4,db/journals/tele/tele26.html#KritikouDDD09,https://doi.org/10.1016/j.tele.2008.10.002 +Seok Chan Jeong,Domain-specific innovativeness and new product adoption: A case of wearable devices.,2017,34,Telematics and Informatics,5,db/journals/tele/tele34.html#JeongKPC17,https://doi.org/10.1016/j.tele.2016.09.001 +Einar Braathen,Institutions matter: engineers and telecommunication development in Mozambique and Zimbabwe.,2004,21,Telematics and Informatics,,db/journals/tele/tele21.html#Braathen04,https://doi.org/10.1016/S0736-5853(03)00021-2 +Timmy H. Tseng,Facilitation of consumer loyalty toward branded applications: The dual-route perspective.,2018,35,Telematics and Informatics,5,db/journals/tele/tele35.html#TsengL18,https://doi.org/10.1016/j.tele.2018.03.002 +Ramzi A. Haraty,Recovery of business intelligence systems: Towards guaranteed continuity of patient centric healthcare systems through a matrix-based recovery approach.,2018,35,Telematics and Informatics,4,db/journals/tele/tele35.html#HaratyKZ18,https://doi.org/10.1016/j.tele.2017.12.010 +Sang Yup Lee,Examining the factors that influence early adopters' smartphone adoption: The case of college students.,2014,31,Telematics and Informatics,2,db/journals/tele/tele31.html#Lee14,https://doi.org/10.1016/j.tele.2013.06.001 +Chin Lay Gan,Enhancing classroom interaction via IMMAP - An Interactive Mobile Messaging App.,2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#GanB17,https://doi.org/10.1016/j.tele.2016.05.007 +Inge Røpke,Energy impacts of ICT - Insights from an everyday life perspective.,2012,29,Telematics and Informatics,4,db/journals/tele/tele29.html#RopkeC12,https://doi.org/10.1016/j.tele.2012.02.001 +Silas Formunyuy Verkijika,Factors influencing the adoption of mobile commerce applications in Cameroon.,2018,35,Telematics and Informatics,6,db/journals/tele/tele35.html#Verkijika18,https://doi.org/10.1016/j.tele.2018.04.012 +Torsten J. Gerpott,Personal characteristics and mobile Internet use intensity of consumers with computer-centric communication devices: An exploratory empirical study of iPad and laptop users in Germany.,2013,30,Telematics and Informatics,2,db/journals/tele/tele30.html#GerpottTW13,https://doi.org/10.1016/j.tele.2012.03.008 +Lilian Mitrou,Employees' privacy vs. employers' security: Can they be balanced?,2006,23,Telematics and Informatics,3,db/journals/tele/tele23.html#MitrouK06,https://doi.org/10.1016/j.tele.2005.07.003 +Pallavi Sharma,Effectiveness of web-based social sensing in health information dissemination - A review.,2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#SharmaK17,https://doi.org/10.1016/j.tele.2016.04.012 +Jeffrey James,Mechanisms of access to the Internet in rural areas of developing countries.,2010,27,Telematics and Informatics,4,db/journals/tele/tele27.html#James10,https://doi.org/10.1016/j.tele.2010.02.002 +Min-Jae Park,Trust in government's social media service and citizen's patronage behavior.,2015,32,Telematics and Informatics,4,db/journals/tele/tele32.html#ParkCKR15,https://doi.org/10.1016/j.tele.2015.02.006 +Hongliang Chen,Third person effect and Internet pornography in China.,2015,32,Telematics and Informatics,4,db/journals/tele/tele32.html#ChenWA15,https://doi.org/10.1016/j.tele.2015.04.004 +Saifuddin Ahmed,The 2014 Indian elections on Twitter: A comparison of campaign strategies of political parties.,2016,33,Telematics and Informatics,4,db/journals/tele/tele33.html#AhmedJC16,https://doi.org/10.1016/j.tele.2016.03.002 +Andrea Hoplight Tapia,A Critical Discourse Analysis of three US municipal wireless network initiatives for enhancing social inclusion.,2011,28,Telematics and Informatics,3,db/journals/tele/tele28.html#TapiaKO11,https://doi.org/10.1016/j.tele.2010.07.002 +Ali Abdallah Alalwan,Social media in marketing: A review and analysis of the existing literature.,2017,34,Telematics and Informatics,7,db/journals/tele/tele34.html#AlalwanRDA17,https://doi.org/10.1016/j.tele.2017.05.008 +Hernán Galperín,Localizing Internet infrastructure: Cooperative peering in Latin America.,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#Galperin16,https://doi.org/10.1016/j.tele.2015.08.010 +Lukasz Tomczyk,Children and youth safety on the Internet: Experiences from Czech Republic and Poland.,2016,33,Telematics and Informatics,3,db/journals/tele/tele33.html#TomczykK16,https://doi.org/10.1016/j.tele.2015.12.003 +Martha Garcia-Murillo,A model of wireless broadband diffusion in Latin America.,2009,26,Telematics and Informatics,3,db/journals/tele/tele26.html#Garcia-MurilloR09,https://doi.org/10.1016/j.tele.2008.11.007 +Nouf Alkhater,An empirical study of factors influencing cloud adoption among private sector organisations.,2018,35,Telematics and Informatics,1,db/journals/tele/tele35.html#AlkhaterWW18,https://doi.org/10.1016/j.tele.2017.09.017 +Minghua Xu,Commercial reform and the political function of Chinese television.,2015,32,Telematics and Informatics,2,db/journals/tele/tele32.html#Xu15a,https://doi.org/10.1016/j.tele.2013.09.002 +Pantea Keikhosrokiani,Success factors in developing iHeart as a patient-centric healthcare system: A multi-group analysis.,2018,35,Telematics and Informatics,4,db/journals/tele/tele35.html#KeikhosrokianiM18,https://doi.org/10.1016/j.tele.2017.11.006 +Sandip Mukhopadhyay,Effectiveness of control mechanisms in mobile platform ecosystem.,2016,33,Telematics and Informatics,3,db/journals/tele/tele33.html#MukhopadhyayRB16,https://doi.org/10.1016/j.tele.2015.12.008 +Sang-Yeal Han,Understanding makerspace continuance: A self-determination perspective.,2017,34,Telematics and Informatics,4,db/journals/tele/tele34.html#HanYZC17,https://doi.org/10.1016/j.tele.2017.02.003 +Hongliang Chen,An empirical study of a social network site: Exploring the effects of social capital and information disclosure.,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#ChenB16,https://doi.org/10.1016/j.tele.2015.09.001 +Anna Sell,An attitude-based latent class segmentation analysis of mobile phone users.,2014,31,Telematics and Informatics,2,db/journals/tele/tele31.html#SellMW14,https://doi.org/10.1016/j.tele.2013.08.004 +Guangchao Charles Feng,Factors affecting Internet diffusion in China: A multivariate time series analysis.,2015,32,Telematics and Informatics,4,db/journals/tele/tele32.html#Feng15,https://doi.org/10.1016/j.tele.2015.02.009 +Dong-Hee Shin,Application of actor-network theory to network neutrality in Korea: Socio-ecological understanding of network dynamics.,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#Shin16,https://doi.org/10.1016/j.tele.2015.10.002 +Ruiqu Ma,Potential pitfalls of smart city development: A study on parking mobile applications (apps) in Hong Kong.,2018,35,Telematics and Informatics,6,db/journals/tele/tele35.html#MaLL18,https://doi.org/10.1016/j.tele.2018.04.004 +Dong-Hee Shin,The role of affordance in the experience of virtual reality learning: Technological and affective affordances in virtual reality.,2017,34,Telematics and Informatics,8,db/journals/tele/tele34.html#Shin17,https://doi.org/10.1016/j.tele.2017.05.013 +Mark de Reuver,Designing viable business models for context-aware mobile services.,2009,26,Telematics and Informatics,3,db/journals/tele/tele26.html#ReuverH09,https://doi.org/10.1016/j.tele.2008.11.002 +Adam S. Hayes,Cryptocurrency value formation: An empirical study leading to a cost of production model for valuing bitcoin.,2017,34,Telematics and Informatics,7,db/journals/tele/tele34.html#Hayes17,https://doi.org/10.1016/j.tele.2016.05.005 +John Olurotimi Ayoade,Breakthrough in privacy concerns and lawful access conflicts.,2002,19,Telematics and Informatics,4,db/journals/tele/tele19.html#AyoadeK02,https://doi.org/10.1016/S0736-5853(01)00017-X +Eunil Park,Determinants of player acceptance of mobile social network games: An application of extended technology acceptance model.,2014,31,Telematics and Informatics,1,db/journals/tele/tele31.html#ParkBOC14,https://doi.org/10.1016/j.tele.2013.07.001 +Ijaz Ahmad,Towards gadget-free internet services: A roadmap of the Naked world.,2018,35,Telematics and Informatics,1,db/journals/tele/tele35.html#AhmadKLYKBAPSH18,https://doi.org/10.1016/j.tele.2017.09.020 +Yoonhyuk Jung,The meaning of virtual entrepreneurship in social virtual worlds.,2015,32,Telematics and Informatics,1,db/journals/tele/tele32.html#JungP15,https://doi.org/10.1016/j.tele.2014.07.002 +Ljiljana Biukovic,Unification of cyber-jurisdiction rules: just how close are the EU and the US?,2002,19,Telematics and Informatics,2,db/journals/tele/tele19.html#Biukovic02,https://doi.org/10.1016/S0736-5853(01)00010-7 +Subba Rao Siriginidi,Achieving millennium development goals: Role of ICTS innovations in India.,2009,26,Telematics and Informatics,2,db/journals/tele/tele26.html#Siriginidi09,https://doi.org/10.1016/j.tele.2008.02.001 +Subba Rao Siriginidi,Bridging digital divide: Efforts in India.,2005,22,Telematics and Informatics,4,db/journals/tele/tele22.html#Rao05,https://doi.org/10.1016/j.tele.2005.01.007 +Stelios Dritsas,Protecting privacy and anonymity in pervasive computing: trends and perspectives.,2006,23,Telematics and Informatics,3,db/journals/tele/tele23.html#DritsasGL06,https://doi.org/10.1016/j.tele.2005.07.005 +Daewon Kim,Newspaper journalists' attitudes towards robot journalism.,2018,35,Telematics and Informatics,2,db/journals/tele/tele35.html#KimK18,https://doi.org/10.1016/j.tele.2017.12.009 +Francisco G. Montoya,A fast method for identifying worldwide scientific collaborations using the Scopus database.,2018,35,Telematics and Informatics,1,db/journals/tele/tele35.html#MontoyaABM18,https://doi.org/10.1016/j.tele.2017.10.010 +Yun Jung Choi,Emergence of the viewing public: Does social television viewing transform individual viewers into a viewing public?,2017,34,Telematics and Informatics,7,db/journals/tele/tele34.html#Choi17,https://doi.org/10.1016/j.tele.2017.04.014 +Shu-Chu Sarrina Li,Digital television adoption: Comparing the adoption of digital terrestrial television with the adoption of digital cable in Taiwan.,2014,31,Telematics and Informatics,1,db/journals/tele/tele31.html#Li14,https://doi.org/10.1016/j.tele.2013.02.003 +Peiren Shao,How does social media change Chinese political culture? The formation of fragmentized public sphere.,2017,34,Telematics and Informatics,3,db/journals/tele/tele34.html#ShaoW17,https://doi.org/10.1016/j.tele.2016.05.018 +Pekka Kekolahti,Features as predictors of phone popularity: An analysis of trends and structural breaks.,2016,33,Telematics and Informatics,4,db/journals/tele/tele33.html#KekolahtiKHR16,https://doi.org/10.1016/j.tele.2016.03.001 +Kun Chang Lee,Understanding continued ubiquitous decision support system usage behaviour.,2015,32,Telematics and Informatics,4,db/journals/tele/tele32.html#LeeCB15,https://doi.org/10.1016/j.tele.2015.05.001 +Sangkyu Park,An empirical study on consumer online shopping channel choice behavior in omni-channel environment.,2017,34,Telematics and Informatics,8,db/journals/tele/tele34.html#ParkL17,https://doi.org/10.1016/j.tele.2017.06.003 +Wee-Kheng Tan,An exploratory investigation of the investment information search behavior of individual domestic investors.,2012,29,Telematics and Informatics,2,db/journals/tele/tele29.html#TanT12,https://doi.org/10.1016/j.tele.2011.09.002 +Manuel Au-Yong Oliveira,The social impact of technology on millennials and consequences for higher education and leadership.,2018,35,Telematics and Informatics,4,db/journals/tele/tele35.html#OliveiraGMB18,https://doi.org/10.1016/j.tele.2017.10.007 +Louis Leung,Unwillingness-to-communicate and college students' motives in SMS mobile messaging.,2007,24,Telematics and Informatics,2,db/journals/tele/tele24.html#Leung07,https://doi.org/10.1016/j.tele.2006.01.002 +Loes Witteveen,Design and development of a digital farmer field school. Experiences with a digital learning environment for cocoa production and certification in Sierra Leone.,2017,34,Telematics and Informatics,8,db/journals/tele/tele34.html#WitteveenLGI17,https://doi.org/10.1016/j.tele.2017.07.013 +Zouhaïer M'Chirgui,Oligopolistic competition and concentration in the smart card industry.,2006,23,Telematics and Informatics,4,db/journals/tele/tele23.html#MChirgui06,https://doi.org/10.1016/j.tele.2005.07.001 +Michael Keane,Worlds apart? Finance and investment in creative industries in the People's Republic of China and Latin America.,2005,22,Telematics and Informatics,4,db/journals/tele/tele22.html#KeaneRC05,https://doi.org/10.1016/j.tele.2005.01.005 +Richard B. Kielbowicz,Regulating the Internet: EU and US perspectives.,2002,19,Telematics and Informatics,2,db/journals/tele/tele19.html#Kielbowicz02,https://doi.org/10.1016/S0736-5853(01)00006-5 +Hao-Yun Kao,Integrating a mobile health applications for self-management to enhance Telecare system.,2018,35,Telematics and Informatics,4,db/journals/tele/tele35.html#KaoWYLWW18,https://doi.org/10.1016/j.tele.2017.12.011 +Tieying Liu,Interdisciplinary study on popularity prediction of social classified hot online events in China.,2017,34,Telematics and Informatics,3,db/journals/tele/tele34.html#LiuZC17,https://doi.org/10.1016/j.tele.2016.05.022 +Sindy R. Sumter,"To be able to change, you have to take risks #fitspo: Exploring correlates of fitspirational social media use among young women.",2018,35,Telematics and Informatics,5,db/journals/tele/tele35.html#SumterCA18,https://doi.org/10.1016/j.tele.2018.01.013 +Heather E. Hudson,Municipal wireless broadband: Lessons from San Francisco and Silicon Valley.,2010,27,Telematics and Informatics,1,db/journals/tele/tele27.html#Hudson10,https://doi.org/10.1016/j.tele.2009.01.002 +Francesca Toni,Automated information management via abductive logic agents.,2001,18,Telematics and Informatics,1,db/journals/tele/tele18.html#Toni01,https://doi.org/10.1016/S0736-5853(00)00020-4 +Kyung Han You,Participatory or deliberative democracy? Exploring the mediation effects of perceived online deliberation and online interactive activities on social outcomes.,2015,32,Telematics and Informatics,2,db/journals/tele/tele32.html#YouLKG15,https://doi.org/10.1016/j.tele.2014.08.004 +Daeho Lee,The effects of network neutrality on the diffusion of new Internet application services.,2014,31,Telematics and Informatics,3,db/journals/tele/tele31.html#LeeK14,https://doi.org/10.1016/j.tele.2013.10.001 +Louis Leung,Mapping ICT use at home and telecommuting practices: A perspective from work/family border theory.,2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#LeungZ17,https://doi.org/10.1016/j.tele.2016.06.001 +Charles G. C. Feng,Exploring the evolution of digital television in China: An interplay between economic and political interests.,2009,26,Telematics and Informatics,4,db/journals/tele/tele26.html#FengLAL09,https://doi.org/10.1016/j.tele.2008.05.002 +Morten Falch,The impact of ICT on market organisation - A case of 3D-models in engineering consultancy.,2014,31,Telematics and Informatics,2,db/journals/tele/tele31.html#Falch14,https://doi.org/10.1016/j.tele.2013.08.001 +Ioanna D. Constantiou,Consumer behaviour in the mobile telecommunications' market: The individual's adoption decision of innovative services.,2009,26,Telematics and Informatics,3,db/journals/tele/tele26.html#Constantiou09,https://doi.org/10.1016/j.tele.2008.11.005 +Tom Evens,"It's the services, stupid!: Identifying killer applications for next-generation networks.",2013,30,Telematics and Informatics,2,db/journals/tele/tele30.html#EvensSBVVM13,https://doi.org/10.1016/j.tele.2012.03.009 +Bobby D. Gerardo,A framework for discovering relevant patterns using aggregation and intelligent data mining agents in telematics systems.,2009,26,Telematics and Informatics,4,db/journals/tele/tele26.html#GerardoL09,https://doi.org/10.1016/j.tele.2008.05.003 +Angelica B. Ortiz de Gortari,Empirical study on Game Transfer Phenomena in a location-based augmented reality game.,2018,35,Telematics and Informatics,2,db/journals/tele/tele35.html#Gortari18,https://doi.org/10.1016/j.tele.2017.12.015 +Guanyu Liu,Technological innovation systems and IT industry sustainability in China: A case study of mobile system innovation.,2018,35,Telematics and Informatics,5,db/journals/tele/tele35.html#LiuGCYZ18,https://doi.org/10.1016/j.tele.2018.01.012 +Ruoxu Wang,Let me take a selfie: Exploring the psychological effects of posting and viewing selfies and groupies on social media.,2017,34,Telematics and Informatics,4,db/journals/tele/tele34.html#WangYH17,https://doi.org/10.1016/j.tele.2016.07.004 +Vlad C. Coroama,Effects of Internet-based multiple-site conferences on greenhouse gas emissions.,2012,29,Telematics and Informatics,4,db/journals/tele/tele29.html#CoroamaHB12,https://doi.org/10.1016/j.tele.2011.11.006 +Tsai-Yuan Chung,Exchanging social support on online teacher groups: Relation to teacher self-efficacy.,2018,35,Telematics and Informatics,5,db/journals/tele/tele35.html#ChungC18,https://doi.org/10.1016/j.tele.2018.03.022 +Ana Uzelac,System for recognizing lecture quality based on analysis of physical parameters.,2018,35,Telematics and Informatics,3,db/journals/tele/tele35.html#UzelacGK18,https://doi.org/10.1016/j.tele.2017.06.014 +Katerina Kabassi,Personalizing recommendations for tourists.,2010,27,Telematics and Informatics,1,db/journals/tele/tele27.html#Kabassi10,https://doi.org/10.1016/j.tele.2009.05.003 +Diego González Rodríguez,Information literacy and peer-to-peer infrastructures: An autopoietic perspective.,2015,32,Telematics and Informatics,4,db/journals/tele/tele32.html#RodriguezK15,https://doi.org/10.1016/j.tele.2015.01.001 +Nadine Mumporeze,Gender digital divide in Rwanda: A qualitative analysis of socioeconomic factors.,2017,34,Telematics and Informatics,7,db/journals/tele/tele34.html#MumporezeP17,https://doi.org/10.1016/j.tele.2017.05.014 +Banji Oyelaran-Oyeyinka,Internet access in Africa: empirical evidence from Kenya and Nigeria.,2004,21,Telematics and Informatics,,db/journals/tele/tele21.html#Oyelaran-OyeyinkaA04,https://doi.org/10.1016/S0736-5853(03)00023-6 +Hyunjoo Lee,Acceptance and rejection of mobile TV among young adults: A case of college students in South Korea.,2011,28,Telematics and Informatics,4,db/journals/tele/tele28.html#LeeKRL11,https://doi.org/10.1016/j.tele.2010.04.002 +Anna J. D. (Nadia) Bij de Vaate,Show your best self(ie): An exploratory study on selfie-related motivations and behavior in emerging adulthood.,2018,35,Telematics and Informatics,5,db/journals/tele/tele35.html#VaateVAKH18,https://doi.org/10.1016/j.tele.2018.03.010 +M. Shamim Hossain,Cloud-supported framework for patients in post-stroke disability rehabilitation.,2018,35,Telematics and Informatics,4,db/journals/tele/tele35.html#HossainHMAA18,https://doi.org/10.1016/j.tele.2017.12.001 +Nebojsa Stankovic,Innovating and management of the knowledge base on the example of IT applications.,2018,35,Telematics and Informatics,5,db/journals/tele/tele35.html#StankovicM18,https://doi.org/10.1016/j.tele.2018.02.010 +A. K. M. Najmul Islam,E-learning system use and its outcomes: Moderating role of perceived compatibility.,2016,33,Telematics and Informatics,1,db/journals/tele/tele33.html#Islam16,https://doi.org/10.1016/j.tele.2015.06.010 +Jun-Jie Hew,Generating travel-related contents through mobile social tourism: Does privacy paradox persist?,2017,34,Telematics and Informatics,7,db/journals/tele/tele34.html#HewTLO17,https://doi.org/10.1016/j.tele.2017.04.001 +Hana Kim,The effect of online platform maturity on the efficiency of offline industry.,2018,35,Telematics and Informatics,1,db/journals/tele/tele35.html#KimLH18,https://doi.org/10.1016/j.tele.2017.10.003 +Brian E. Whitacre,Fixed broadband or mobile: What makes us more civically engaged?,2017,34,Telematics and Informatics,5,db/journals/tele/tele34.html#Whitacre17,https://doi.org/10.1016/j.tele.2017.02.006 +Changjun Lee,Ex-post evaluation of illegalizing juvenile online game after midnight: A case of shutdown policy in South Korea.,2017,34,Telematics and Informatics,8,db/journals/tele/tele34.html#LeeKH17,https://doi.org/10.1016/j.tele.2017.07.006 +Jan Servaes,Quantity = quality? At the start of volume 34.,2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#Servaes17,https://doi.org/10.1016/j.tele.2016.06.008 +Ran Wei,Examining user behavioral response to SMS ads: Implications for the evolution of the mobile phone as a bona-fide medium.,2010,27,Telematics and Informatics,1,db/journals/tele/tele27.html#WeiXP10,https://doi.org/10.1016/j.tele.2009.03.005 +Michael Glykas,Next generation of methods and tools for team work based care in speech and language therapy.,2005,22,Telematics and Informatics,3,db/journals/tele/tele22.html#GlykasC05,https://doi.org/10.1016/j.tele.2004.04.002 +M. Avgoulea,Policies for content filtering in educational networks: the case of Greece.,2003,20,Telematics and Informatics,1,db/journals/tele/tele20.html#AvgouleaBPS03,https://doi.org/10.1016/S0736-5853(02)00004-7 +Christian Fuchs,Africa and the digital divide.,2008,25,Telematics and Informatics,2,db/journals/tele/tele25.html#FuchsH08,https://doi.org/10.1016/j.tele.2006.06.004 +Yongyoon Suh,Developing ecological index for identifying roles of ICT industries in mobile ecosystems: The inter-industry analysis approach.,2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#SuhL17,https://doi.org/10.1016/j.tele.2016.06.007 +Thomas Kupfer,CMFE - Community Media Forum Europe.,2010,27,Telematics and Informatics,2,db/journals/tele/tele27.html#Kupfer10,https://doi.org/10.1016/j.tele.2009.06.009 +Wadee Alhalabi,Patient monitoring at home using 32-channel cost-effective data acquisition device.,2018,35,Telematics and Informatics,4,db/journals/tele/tele35.html#Alhalabi18,https://doi.org/10.1016/j.tele.2017.12.004 +Natalie Pang,Can blogs function as rhetorical publics in Asian democracies? An analysis using the case of Singapore.,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#PangG16,https://doi.org/10.1016/j.tele.2015.08.001 +Daniel Mehrad,Word of Mouth impact on the adoption of mobile banking in Iran.,2017,34,Telematics and Informatics,7,db/journals/tele/tele34.html#MehradM17,https://doi.org/10.1016/j.tele.2016.08.009 +Christos Bouras,Evaluation of teleteaching services over ATM and IP networks.,2003,20,Telematics and Informatics,1,db/journals/tele/tele20.html#BourasGKT03,https://doi.org/10.1016/S0736-5853(01)00026-0 +Andrea Ricci,Towards a systematic study of Internet-based political and social communication in Europe.,1998,15,Telematics and Informatics,3,db/journals/tele/tele15.html#Ricci98,https://doi.org/10.1016/S0736-5853(98)00010-0 +Tomas Coppens,Digital public broadcasting in Flanders: walking the tightrope.,2003,20,Telematics and Informatics,2,db/journals/tele/tele20.html#Coppens03,https://doi.org/10.1016/S0736-5853(02)00021-7 +Ufuoma Akpojivi,Mobile advertisements and information privacy perception amongst South African Generation Y students.,2015,32,Telematics and Informatics,1,db/journals/tele/tele32.html#AkpojiviB15,https://doi.org/10.1016/j.tele.2014.08.001 +Sangwon Lee,Determinants of IPTV diffusion.,2015,32,Telematics and Informatics,3,db/journals/tele/tele32.html#LeePLB15,https://doi.org/10.1016/j.tele.2014.10.005 +Emílio José Montero Arruda-Filho,Green attributes converged within multifunctional technology products.,2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#Arruda-FilhoB17,https://doi.org/10.1016/j.tele.2016.04.008 +David Zeitlyn,Access denied: the politics of new communications media.,1998,15,Telematics and Informatics,3,db/journals/tele/tele15.html#ZeitlynBD98,https://doi.org/10.1016/S0736-5853(98)00014-8 +Eva Lievens,Protecting children in the new media environment: Rising to the regulatory challenge?,2007,24,Telematics and Informatics,4,db/journals/tele/tele24.html#Lievens07,https://doi.org/10.1016/j.tele.2007.01.005 +Gillian Anderson,Public library internet access in areas of deprivation: The case of Glasgow.,2015,32,Telematics and Informatics,3,db/journals/tele/tele32.html#AndersonW15,https://doi.org/10.1016/j.tele.2014.12.001 +Mamadou Bilo Doumbouya,Telemedicine using mobile telecommunication: Towards syntactic interoperability in teleexpertise.,2014,31,Telematics and Informatics,4,db/journals/tele/tele31.html#DoumbouyaKKF14,https://doi.org/10.1016/j.tele.2014.01.003 +Christos Bouras,Policy recommendations for public administrators on free and open source software usage.,2014,31,Telematics and Informatics,2,db/journals/tele/tele31.html#BourasFKMPT14,https://doi.org/10.1016/j.tele.2013.06.003 +Tom Evens,Forecasting broadband Internet adoption on trains in Belgium.,2010,27,Telematics and Informatics,1,db/journals/tele/tele27.html#EvensSMV10,https://doi.org/10.1016/j.tele.2009.02.001 +Ioannis Neokosmidis,Assessment of socio-techno-economic factors affecting the market adoption and evolution of 5G networks: Evidence from the 5G-PPP CHARISMA project.,2017,34,Telematics and Informatics,5,db/journals/tele/tele34.html#NeokosmidisRPKW17,https://doi.org/10.1016/j.tele.2016.11.007 +John H. Parmelee,Exploring social and psychological factors that influence the gathering of political information online.,2012,29,Telematics and Informatics,1,db/journals/tele/tele29.html#ParmeleeP12,https://doi.org/10.1016/j.tele.2010.12.001 +Hannu Verkasalo,Analysis of users and non-users of smartphone applications.,2010,27,Telematics and Informatics,3,db/journals/tele/tele27.html#VerkasaloLMB10,https://doi.org/10.1016/j.tele.2009.11.001 +Kenichi Ishii,A comparative study of media cultures among Taiwanese and Japanese youth.,2006,23,Telematics and Informatics,2,db/journals/tele/tele23.html#IshiiW06,https://doi.org/10.1016/j.tele.2005.05.002 +Junhao Hong,A split and swaying approach to building information society: The case of Internet cafes in China.,2005,22,Telematics and Informatics,4,db/journals/tele/tele22.html#HongH05,https://doi.org/10.1016/j.tele.2004.11.005 +Ruoxu Wang,Friending instructors on Facebook: Exploring the role of privacy on student-instructor connection on cyberspace.,2018,35,Telematics and Informatics,5,db/journals/tele/tele35.html#WangY18,https://doi.org/10.1016/j.tele.2018.02.004 +Barbara K. Kaye,A Web for all reasons: uses and gratifications of Internet components for political information.,2004,21,Telematics and Informatics,3,db/journals/tele/tele21.html#KayeJ04,https://doi.org/10.1016/S0736-5853(03)00037-6 +Junhao Hong,Social media in China: An unprecedented force for an unprecedented social change?,2017,34,Telematics and Informatics,3,db/journals/tele/tele34.html#Hong17,https://doi.org/10.1016/j.tele.2016.12.006 +José Luis Gómez Barroso,Simulating digital dividend auctions: Service neutrality versus dedicated licences.,2012,29,Telematics and Informatics,1,db/journals/tele/tele29.html#BarrosoMSF12,https://doi.org/10.1016/j.tele.2011.04.005 +Jamin Casselman,Wearable healthcare: Lessons from the past and a peek into the future.,2017,34,Telematics and Informatics,7,db/journals/tele/tele34.html#CasselmanOK17,https://doi.org/10.1016/j.tele.2017.04.011 +Pieter Ballon,Introduction: Mobile service architecture and middleware.,2011,28,Telematics and Informatics,1,db/journals/tele/tele28.html#BallonHT11,https://doi.org/10.1016/j.tele.2010.05.003 +Byeng-Hee Chang,Toward an integrated model of software piracy determinants: A cross-national longitudinal study.,2017,34,Telematics and Informatics,7,db/journals/tele/tele34.html#ChangNKC17,https://doi.org/10.1016/j.tele.2017.05.002 +HoKyu Lee,Analysis of regulatory systems of broadcasting and telecommunications: A comparative study focusing on Korea and the United States.,2016,33,Telematics and Informatics,3,db/journals/tele/tele33.html#LeeK16a,https://doi.org/10.1016/j.tele.2015.12.006 +Ki Joon Kim,Can smartphones be specialists? Effects of specialization in mobile advertising.,2014,31,Telematics and Informatics,4,db/journals/tele/tele31.html#Kim14,https://doi.org/10.1016/j.tele.2013.12.003 +Kumiko Aoki,An analysis of young people's use of and attitudes toward cell phones.,2003,20,Telematics and Informatics,4,db/journals/tele/tele20.html#AokiD03,https://doi.org/10.1016/S0736-5853(03)00018-2 +Wei-Yen Hsu,Brain-computer interface connected to telemedicine and telecommunication in virtual reality applications.,2017,34,Telematics and Informatics,4,db/journals/tele/tele34.html#Hsu17a,https://doi.org/10.1016/j.tele.2016.01.003 +Salah Kabanda,A structuration analysis of Small and Medium Enterprise (SME) adoption of E-Commerce: The case of Tanzania.,2017,34,Telematics and Informatics,4,db/journals/tele/tele34.html#KabandaB17,https://doi.org/10.1016/j.tele.2017.01.002 +Wei-Yen Hsu,Clustering-based compression connected to cloud databases in telemedicine and long-term care applications.,2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#Hsu17,https://doi.org/10.1016/j.tele.2016.05.010 +Heetae Yang,User acceptance of wearable devices: An extended perspective of perceived value.,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#YangYZC16,https://doi.org/10.1016/j.tele.2015.08.007 +Thomas Adelaar,Enhancing customer value through click-and-mortar e-commerce: implications for geographical market reach and customer type.,2004,21,Telematics and Informatics,2,db/journals/tele/tele21.html#AdelaarBS04,https://doi.org/10.1016/S0736-5853(03)00055-8 +Yu-Hsiang Lin,New gratifications for social word-of-mouth spread via mobile SNSs: Uses and gratifications approach with a perspective of media technology.,2017,34,Telematics and Informatics,4,db/journals/tele/tele34.html#LinHCF17,https://doi.org/10.1016/j.tele.2016.08.019 +Eunil Park,Factors influencing users' employment of mobile map services.,2014,31,Telematics and Informatics,2,db/journals/tele/tele31.html#ParkO14,https://doi.org/10.1016/j.tele.2013.07.002 +Ana Raquel Faria,A global perspective on an emotional learning model proposal.,2017,34,Telematics and Informatics,6,db/journals/tele/tele34.html#FariaAMGMB17,https://doi.org/10.1016/j.tele.2016.08.007 +Thomas A. Hemphill,The telecommunication and information industries: US patent policy and the criterion of non-obviousness.,2009,26,Telematics and Informatics,1,db/journals/tele/tele26.html#Hemphill09,https://doi.org/10.1016/j.tele.2007.10.001 +Torsten J. Gerpott,SMS use intensity changes in the age of ubiquitous mobile Internet access - A two-level investigation of residential mobile communications customers in Germany.,2015,32,Telematics and Informatics,4,db/journals/tele/tele32.html#Gerpott15,https://doi.org/10.1016/j.tele.2015.03.005 +Pieter Ballon,Flexible spectrum and future business models for the mobile industry.,2009,26,Telematics and Informatics,3,db/journals/tele/tele26.html#BallonD09,https://doi.org/10.1016/j.tele.2008.11.006 +Nianfeng Shi,Effects of visualizing roles of variables with animation and IDE in novice program construction.,2017,34,Telematics and Informatics,5,db/journals/tele/tele34.html#ShiMZ17,https://doi.org/10.1016/j.tele.2017.02.005 +Wee-Kheng Tan,Investigation of temporal dissociation and focused immersion as moderators of satisfaction-continuance intention relationship: Smartphone as an example.,2015,32,Telematics and Informatics,4,db/journals/tele/tele32.html#TanLH15,https://doi.org/10.1016/j.tele.2015.03.007 +Spyros Arvanitis,Why do firms adopt cloud computing? A comparative analysis based on South and North Europe firm data.,2017,34,Telematics and Informatics,7,db/journals/tele/tele34.html#ArvanitisKL17,https://doi.org/10.1016/j.tele.2016.05.013 +Sulaiman Ainin,Evaluating portal performance: A study of the National Higher Education Fund Corporation (PTPTN) portal.,2012,29,Telematics and Informatics,3,db/journals/tele/tele29.html#AininZA12,https://doi.org/10.1016/j.tele.2011.11.004 +Qin Li,Characteristics and social impact of the use of social media by Chinese Dama.,2017,34,Telematics and Informatics,3,db/journals/tele/tele34.html#Li17,https://doi.org/10.1016/j.tele.2016.05.020 +Tonderai Maswera,Recommendations for e-commerce systems in the tourism industry of sub-Saharan Africa.,2009,26,Telematics and Informatics,1,db/journals/tele/tele26.html#MasweraED09,https://doi.org/10.1016/j.tele.2007.12.001 +Sandra P. Cano,Towards a methodology for user experience assessment of serious games with children with cochlear implants.,2018,35,Telematics and Informatics,4,db/journals/tele/tele35.html#CanoCAGM18,https://doi.org/10.1016/j.tele.2017.09.011 +Naomi S. Baron,The persistence of print among university students: An exploratory study.,2017,34,Telematics and Informatics,5,db/journals/tele/tele34.html#BaronCH17,https://doi.org/10.1016/j.tele.2016.11.008 +Denis Alcides Rezende,Information and Telecommunications Project for a Digital City: A Brazilian case study.,2014,31,Telematics and Informatics,1,db/journals/tele/tele31.html#RezendeMMBZF14,https://doi.org/10.1016/j.tele.2013.05.001 +Asharul Islam Khan,Mobile Learning (M-Learning) adoption in the Middle East: Lessons learned from the educationally advanced countries.,2015,32,Telematics and Informatics,4,db/journals/tele/tele32.html#KhanAAS15,https://doi.org/10.1016/j.tele.2015.04.005 +Kuo-Lun Hsiao,Exploring the effect of compulsive social app usage on technostress and academic performance: Perspectives from personality traits.,2017,34,Telematics and Informatics,2,db/journals/tele/tele34.html#HsiaoSH17,https://doi.org/10.1016/j.tele.2016.11.001 +Kostas Stathis,Community-based interactive systems.,2001,18,Telematics and Informatics,1,db/journals/tele/tele18.html#StathisP01,https://doi.org/10.1016/S0736-5853(00)00015-0 +Daewon Kim,Consumer welfare of informative messages via mobile instant messenger: A case of KakaoTalk's Info-Talk.,2018,35,Telematics and Informatics,6,db/journals/tele/tele35.html#Kim18a,https://doi.org/10.1016/j.tele.2018.04.010 +Cheng-Che Shen,How business intelligence maturity enabling hospital agility.,2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#ShenCHC17,https://doi.org/10.1016/j.tele.2016.06.009 +Nico Carpentier,Introduction: Community media's long march.,2010,27,Telematics and Informatics,2,db/journals/tele/tele27.html#CarpentierS10,https://doi.org/10.1016/j.tele.2009.06.006 +Michael Friedewald,Ubiquitous computing: An overview of technology impacts.,2011,28,Telematics and Informatics,2,db/journals/tele/tele28.html#FriedewaldR11,https://doi.org/10.1016/j.tele.2010.09.001 +Ken Kwong-Kay Wong,Financial implications of rate plan optimization in the post-paid mobile market.,2012,29,Telematics and Informatics,1,db/journals/tele/tele29.html#Wong12,https://doi.org/10.1016/j.tele.2010.11.007 +Jason Whalley,Equality of access and local loop unbundling in the UK broadband telecommunications market.,2008,25,Telematics and Informatics,4,db/journals/tele/tele25.html#WhalleyC08,https://doi.org/10.1016/j.tele.2007.07.001 +Rajan Parajuli,Exploring the role of telemedicine in improving access to healthcare services by women and girls in rural Nepal.,2017,34,Telematics and Informatics,7,db/journals/tele/tele34.html#ParajuliD17,https://doi.org/10.1016/j.tele.2017.05.006 +Sang Woo Lee,A comparative study of KakaoStory and Facebook: Focusing on use patterns and use motives.,2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#LeeL17,https://doi.org/10.1016/j.tele.2016.04.013 +Taeyoung Kang,Beyond the numbers: The effect of 10-K tone on firms' performance predictions using text analytics.,2018,35,Telematics and Informatics,2,db/journals/tele/tele35.html#KangPH18,https://doi.org/10.1016/j.tele.2017.12.014 +Bill Vassiliadis,From application service provision to service-oriented computing: A study of the IT outsourcing evolution.,2006,23,Telematics and Informatics,4,db/journals/tele/tele23.html#VassiliadisSTT06,https://doi.org/10.1016/j.tele.2005.09.001 +Sakari Taipale,The affordances of reading/writing on paper and digitally in Finland.,2014,31,Telematics and Informatics,4,db/journals/tele/tele31.html#Taipale14,https://doi.org/10.1016/j.tele.2013.11.003 +Gerhard Steinke,Data privacy approaches from US and EU perspectives.,2002,19,Telematics and Informatics,2,db/journals/tele/tele19.html#Steinke02,https://doi.org/10.1016/S0736-5853(01)00013-2 +Jeremy Pitt,The open agent society and its enemies: a position statement and research programme.,2001,18,Telematics and Informatics,1,db/journals/tele/tele18.html#PittMC01,https://doi.org/10.1016/S0736-5853(00)00019-8 +Vesna Dolnicar,The role of social support networks in proxy Internet use from the intergenerational solidarity perspective.,2018,35,Telematics and Informatics,2,db/journals/tele/tele35.html#DolnicarGHVP18,https://doi.org/10.1016/j.tele.2017.12.005 +Hyunsuk Im,A survival analysis of songs on digital music platform.,2018,35,Telematics and Informatics,6,db/journals/tele/tele35.html#ImSJ18,https://doi.org/10.1016/j.tele.2018.04.013 +Mohammadreza Hazhirpasand Barkadehi,Authentication systems: A literature review and classification.,2018,35,Telematics and Informatics,5,db/journals/tele/tele35.html#BarkadehiNIFS18,https://doi.org/10.1016/j.tele.2018.03.018 +Minkyoung Kim,The effects of service interactivity on the satisfaction and the loyalty of smartphone users.,2015,32,Telematics and Informatics,4,db/journals/tele/tele32.html#KimCPL15,https://doi.org/10.1016/j.tele.2015.05.003 +Wei-Lun Chang,A two-step model for self-organized social network pre-construction.,2016,33,Telematics and Informatics,1,db/journals/tele/tele33.html#Chang16,https://doi.org/10.1016/j.tele.2015.06.013 +Ronald Davie,Mobile phone ownership and usage among pre-adolescents.,2004,21,Telematics and Informatics,4,db/journals/tele/tele21.html#DaviePC04,https://doi.org/10.1016/j.tele.2004.04.001 +Lies De Kimpe,You've got mail! Explaining individual differences in becoming a phishing target.,2018,35,Telematics and Informatics,5,db/journals/tele/tele35.html#KimpeWHPP18,https://doi.org/10.1016/j.tele.2018.02.009 +Hoon Lee,Mobile communication and cross-cutting discussion: A cross-national study of South Korea and the US.,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#LeeK16,https://doi.org/10.1016/j.tele.2015.07.006 +Christos Bouras,Broadband municipal optical networks in Greece: A suitable business model.,2009,26,Telematics and Informatics,4,db/journals/tele/tele26.html#BourasGPTT09,https://doi.org/10.1016/j.tele.2009.03.003 +Fernando Moreira,A Special Issue on New Technologies and the Future of Education and Training.,2017,34,Telematics and Informatics,6,db/journals/tele/tele34.html#MoreiraR17,https://doi.org/10.1016/j.tele.2017.07.008 +Miguel ángel Conde González,Teamwork assessment in the educational web of data: A learning analytics approach towards ISO 10018.,2018,35,Telematics and Informatics,3,db/journals/tele/tele35.html#GonzalezPGL18,https://doi.org/10.1016/j.tele.2017.02.001 +Mohamed Sami Ben Ali,Does ICT diffusion matter for corruption? An Economic Development Perspective.,2017,34,Telematics and Informatics,8,db/journals/tele/tele34.html#AliG17,https://doi.org/10.1016/j.tele.2017.06.008 +Wee-Kheng Tan,Internet applications use and personality.,2014,31,Telematics and Informatics,1,db/journals/tele/tele31.html#TanY14,https://doi.org/10.1016/j.tele.2013.02.006 +Jiaming Fang,Posting-related attributes driving differential engagement behaviors in online travel communities.,2018,35,Telematics and Informatics,5,db/journals/tele/tele35.html#FangLP18,https://doi.org/10.1016/j.tele.2018.02.008 +Minghua Xu,Chinese TV drama in a regional market: Aspiring to be a cultural actor?,2015,32,Telematics and Informatics,1,db/journals/tele/tele32.html#Xu15,https://doi.org/10.1016/j.tele.2014.04.001 +Doug Williams,Video mediated social interaction between groups: System requirements and technology challenges.,2011,28,Telematics and Informatics,4,db/journals/tele/tele28.html#WilliamsUMCKB11,https://doi.org/10.1016/j.tele.2010.11.001 +Wei-Yen Hsu,A wireless brainwave-driven system for daily-life analyses and applications.,2017,34,Telematics and Informatics,8,db/journals/tele/tele34.html#Hsu17d,https://doi.org/10.1016/j.tele.2017.09.001 +Jørn Støvring,'The Washington Consensus' in relation to the telecommunication sector in African developing countries.,2004,21,Telematics and Informatics,,db/journals/tele/tele21.html#Stovring04,https://doi.org/10.1016/S0736-5853(03)00020-0 +Kamil Kopecký,Misuse of web cameras to manipulate children within the so-called webcam trolling.,2016,33,Telematics and Informatics,1,db/journals/tele/tele33.html#Kopecky16,https://doi.org/10.1016/j.tele.2015.06.005 +Janice M. Barrett,Computer focused communication: changes and challenges for the contemporary organization.,1998,15,Telematics and Informatics,4,db/journals/tele/tele15.html#BarrettT98,https://doi.org/10.1016/S0736-5853(99)00003-9 +Yu Xu,Modeling the adoption of social media by newspaper organizations: An organizational ecology approach.,2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#Xu17,https://doi.org/10.1016/j.tele.2016.05.002 +Fan-Chen Tseng,Enhancing customer loyalty to mobile instant messaging: Perspectives of network effect and self-determination theories.,2018,35,Telematics and Informatics,5,db/journals/tele/tele35.html#TsengPCT18,https://doi.org/10.1016/j.tele.2018.01.011 +Halldór Matthías Sigurðsson,Potentials and challenges of peer-to-peer based content distribution.,2007,24,Telematics and Informatics,4,db/journals/tele/tele24.html#SigurdssonHH07,https://doi.org/10.1016/j.tele.2007.01.006 +Nazan öztürk,Sentiment analysis on Twitter: A text mining approach to the Syrian refugee crisis.,2018,35,Telematics and Informatics,1,db/journals/tele/tele35.html#OzturkA18,https://doi.org/10.1016/j.tele.2017.10.006 +Mariella Berra,Information communications technology and local development.,2003,20,Telematics and Informatics,3,db/journals/tele/tele20.html#Berra03,https://doi.org/10.1016/S0736-5853(03)00015-7 +Erik Bohlin,The future of mobile communications in the EU.,2007,24,Telematics and Informatics,3,db/journals/tele/tele24.html#BohlinBC07a,https://doi.org/10.1016/j.tele.2007.01.011 +Hitoshi Mitomo,Rich information on environmental issues and the poor reflections on consumers' green actions: A behavioral economic approach.,2012,29,Telematics and Informatics,4,db/journals/tele/tele29.html#MitomoO12,https://doi.org/10.1016/j.tele.2012.01.001 +Jiyoung Cha,Predictors of television and online video platform use: A coexistence model of old and new video platforms.,2013,30,Telematics and Informatics,4,db/journals/tele/tele30.html#Cha13a,https://doi.org/10.1016/j.tele.2013.01.001 +Jiyoung Chae,Reexamining the relationship between social media and happiness: The effects of various social media platforms on reconceptualized happiness.,2018,35,Telematics and Informatics,6,db/journals/tele/tele35.html#Chae18,https://doi.org/10.1016/j.tele.2018.04.011 +Jun-Jie Hew,Hall of fame for mobile commerce and its applications: A bibliometric evaluation of a decade and a half (2000-2015).,2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#Hew17,https://doi.org/10.1016/j.tele.2016.04.003 +Tuncay Bayrak,IT support services for telecommuting workforce.,2012,29,Telematics and Informatics,3,db/journals/tele/tele29.html#Bayrak12,https://doi.org/10.1016/j.tele.2011.10.002 +Maaika Santana,Mapping the rhizome. Organizational and informational networks of two Brussels alternative radio stations.,2010,27,Telematics and Informatics,2,db/journals/tele/tele27.html#SantanaC10,https://doi.org/10.1016/j.tele.2009.07.003 +Marcos Wander Rodrigues,Educational Data Mining: A review of evaluation process in the e-learning.,2018,35,Telematics and Informatics,6,db/journals/tele/tele35.html#RodriguesIZ18,https://doi.org/10.1016/j.tele.2018.04.015 +Mijke Slot,Changing user roles in ICT developments* the case of digital television.,2007,24,Telematics and Informatics,4,db/journals/tele/tele24.html#Slot07,https://doi.org/10.1016/j.tele.2007.01.003 +Xigen Li,Perceived channel efficiency and motivation and orientation of information seeking as predictors of media dependency.,2014,31,Telematics and Informatics,4,db/journals/tele/tele31.html#Li14a,https://doi.org/10.1016/j.tele.2013.11.009 +Garry Wei-Han Tan,NFC mobile credit card: The next frontier of mobile payment?,2014,31,Telematics and Informatics,2,db/journals/tele/tele31.html#TanOCH14,https://doi.org/10.1016/j.tele.2013.06.002 +Young-shin Lim,When retweets persuade: The persuasive effects of dialogic retweeting and the role of social presence in organizations' Twitter-based communication.,2017,34,Telematics and Informatics,5,db/journals/tele/tele34.html#LimL17,https://doi.org/10.1016/j.tele.2016.09.003 +Abdulrahman Alharthi,An exploratory study for investigating the critical success factors for cloud migration in the Saudi Arabian higher education context.,2017,34,Telematics and Informatics,2,db/journals/tele/tele34.html#AlharthiAWW17,https://doi.org/10.1016/j.tele.2016.10.008 +Pei-Ju Wu,Unstructured big data analytics for retrieving e-commerce logistics knowledge.,2018,35,Telematics and Informatics,1,db/journals/tele/tele35.html#WuL18,https://doi.org/10.1016/j.tele.2017.11.004 +Fan Wu,Clustering results of image searches by annotations and visual features.,2014,31,Telematics and Informatics,3,db/journals/tele/tele31.html#WuPYC14,https://doi.org/10.1016/j.tele.2013.10.002 +Leopoldina Fortunati,Mobilities and the network of personal technologies: Refining the understanding of mobility structure.,2017,34,Telematics and Informatics,2,db/journals/tele/tele34.html#FortunatiT17,https://doi.org/10.1016/j.tele.2016.09.011 +Sang Yup Lee,Homophily and social influence among online casual game players.,2015,32,Telematics and Informatics,4,db/journals/tele/tele32.html#Lee15,https://doi.org/10.1016/j.tele.2015.02.007 +Yves Poullet,Freedom and information highways or how to ensure electronic democracy.,1998,15,Telematics and Informatics,3,db/journals/tele/tele15.html#Poullet98,https://doi.org/10.1016/S0736-5853(98)00011-2 +Arash Khosravi,Toward software quality enhancement by Customer Knowledge Management in software companies.,2018,35,Telematics and Informatics,1,db/journals/tele/tele35.html#KhosraviHN18,https://doi.org/10.1016/j.tele.2017.09.007 +Sara Ferlander,Local nets and social capital.,2001,18,Telematics and Informatics,1,db/journals/tele/tele18.html#FerlanderT01,https://doi.org/10.1016/S0736-5853(00)00018-6 +Peggy Valcke,Graduated regulation of 'regulatable' content and the European Audiovisual Media Services Directive: One small step for the industry and one giant leap for the legislator?,2007,24,Telematics and Informatics,4,db/journals/tele/tele24.html#ValckeS07,https://doi.org/10.1016/j.tele.2007.01.004 +Changjun Lee,Effect of a policy intervention on handset subsidies on the intention to change handsets and households' expenses in mobile telecommunications.,2017,34,Telematics and Informatics,8,db/journals/tele/tele34.html#LeeJK17,https://doi.org/10.1016/j.tele.2017.06.017 +Ran Wei,Motivations for using the mobile phone for mass communications and entertainment.,2008,25,Telematics and Informatics,1,db/journals/tele/tele25.html#Wei08,https://doi.org/10.1016/j.tele.2006.03.001 +Milad Dehghani,Will smartwatches last? factors contributing to intention to keep using smart wearable technology.,2018,35,Telematics and Informatics,2,db/journals/tele/tele35.html#DehghaniKD18,https://doi.org/10.1016/j.tele.2018.01.007 +Dong Hee Shin,Virtual gratifications of wireless Internet: Is wireless portable Internet reinforced by unrealized gratifications?,2009,26,Telematics and Informatics,1,db/journals/tele/tele26.html#Shin09,https://doi.org/10.1016/j.tele.2007.12.003 +Dimitri Schuurman,New media adoption and usage among Flemish youngsters.,2011,28,Telematics and Informatics,2,db/journals/tele/tele28.html#SchuurmanCM11,https://doi.org/10.1016/j.tele.2010.10.001 +Donghee Shin,Beyond user experience of cloud service: Implication for value sensitive approach.,2015,32,Telematics and Informatics,1,db/journals/tele/tele32.html#Shin15,https://doi.org/10.1016/j.tele.2014.02.002 +Ran Wei,Owning and using new media technology as predictors of quality of life.,1998,15,Telematics and Informatics,4,db/journals/tele/tele15.html#WeiL98,https://doi.org/10.1016/S0736-5853(98)00008-2 +Malin Brännback,Value systems and intentions to interact in social media: The digital natives.,2017,34,Telematics and Informatics,4,db/journals/tele/tele34.html#BrannbackNB17,https://doi.org/10.1016/j.tele.2016.08.018 +Anas Aloudat,Social acceptance of location-based mobile government services for emergency management.,2014,31,Telematics and Informatics,1,db/journals/tele/tele31.html#AloudatMCA14,https://doi.org/10.1016/j.tele.2013.02.002 +Benoit Pierre Freyens,Shared or exclusive radio waves? A dilemma gone astray.,2010,27,Telematics and Informatics,3,db/journals/tele/tele27.html#Freyens10,https://doi.org/10.1016/j.tele.2009.11.002 +Howard H. Frederick,New Zealand and its competitors in the knowledge economy.,1999,16,Telematics and Informatics,4,db/journals/tele/tele16.html#FrederickM99,https://doi.org/10.1016/S0736-5853(00)00004-6 +Paul M. A. Baker,Communities of participation: A comparison of disability and aging identified groups on Facebook and LinkedIn.,2013,30,Telematics and Informatics,1,db/journals/tele/tele30.html#BakerBMCP13,https://doi.org/10.1016/j.tele.2012.03.004 +Kevin Curran,Investigating text input methods for mobile phones.,2006,23,Telematics and Informatics,1,db/journals/tele/tele23.html#CurranWR06,https://doi.org/10.1016/j.tele.2004.12.001 +Alicia Izquierdo Yusta,Attitudes toward mobile advertising among users versus non-users of the mobile Internet.,2015,32,Telematics and Informatics,2,db/journals/tele/tele32.html#YustaOR15,https://doi.org/10.1016/j.tele.2014.10.001 +Bongseok Choi,Location-based system: Comparative effects of personalization vs ease of use.,2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#ChoiKS17,https://doi.org/10.1016/j.tele.2016.04.011 +Namho Chung,Understanding communication types on travel information sharing in social media: A transactive memory systems perspective.,2015,32,Telematics and Informatics,4,db/journals/tele/tele32.html#ChungLH15,https://doi.org/10.1016/j.tele.2015.02.002 +Jun-Jie Hew,Crafting a smartphone repurchase decision making process: Do brand attachment and gender matter?,2017,34,Telematics and Informatics,4,db/journals/tele/tele34.html#HewBM17,https://doi.org/10.1016/j.tele.2016.12.009 +Patricio E. Ramírez-Correa,Predicting behavioral intention of mobile Internet usage.,2015,32,Telematics and Informatics,4,db/journals/tele/tele32.html#Ramirez-CorreaR15,https://doi.org/10.1016/j.tele.2015.04.006 +Fan Wu,An adaptable and scalable group access control scheme for managing wireless sensor networks.,2013,30,Telematics and Informatics,2,db/journals/tele/tele30.html#WuPZHH13,https://doi.org/10.1016/j.tele.2012.03.011 +Levi Obijiofor,Mapping theoretical and practical issues in the relationship between ICTs and Africa's socioeconomic development.,2009,26,Telematics and Informatics,1,db/journals/tele/tele26.html#Obijiofor09,https://doi.org/10.1016/j.tele.2007.12.002 +Chanchai Phonthanukitithaworn,Facebook as a second screen: An influence on sport consumer satisfaction and behavioral intention.,2017,34,Telematics and Informatics,8,db/journals/tele/tele34.html#Phonthanukitithaworn17,https://doi.org/10.1016/j.tele.2017.06.011 +Dolores Añón Higón,ICT and environmental sustainability: A global perspective.,2017,34,Telematics and Informatics,4,db/journals/tele/tele34.html#HigonGS17,https://doi.org/10.1016/j.tele.2017.01.001 +Cory Robinson,Disclosure of personal data in ecommerce: A cross-national comparison of Estonia and the United States.,2017,34,Telematics and Informatics,2,db/journals/tele/tele34.html#Robinson17,https://doi.org/10.1016/j.tele.2016.09.006 +Faramarz Givehki,Mobile control and management of computer networks using SMS services.,2010,27,Telematics and Informatics,3,db/journals/tele/tele27.html#GivehkiN10,https://doi.org/10.1016/j.tele.2009.09.002 +Joris Van Ouytsel,Adolescent sexting from a social learning perspective.,2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#OuytselPWD17,https://doi.org/10.1016/j.tele.2016.05.009 +Barrie Axford,Anti-politics or the triumph of postmodern populism in promotional cultures?,1998,15,Telematics and Informatics,3,db/journals/tele/tele15.html#AxfordH98,https://doi.org/10.1016/S0736-5853(98)00012-4 +Rabeeh Ayaz Abbasi,Saving lives using social media: Analysis of the role of twitter for personal blood donation requests and dissemination.,2018,35,Telematics and Informatics,4,db/journals/tele/tele35.html#AbbasiMMADAS18,https://doi.org/10.1016/j.tele.2017.01.010 +Chi-Ying Chen,User-orientated perspective of social media used by campaigns.,2017,34,Telematics and Informatics,3,db/journals/tele/tele34.html#ChenC17,https://doi.org/10.1016/j.tele.2016.05.016 +Xiudian Dai,A new mode of governance? Transnationalisation of European regions and cities in the information age.,2003,20,Telematics and Informatics,3,db/journals/tele/tele20.html#Dai03,https://doi.org/10.1016/S0736-5853(03)00014-5 +Peter McBurney,Forecasting market demand for new telecommunications services: an introduction.,2002,19,Telematics and Informatics,3,db/journals/tele/tele19.html#McBurneyPG02,https://doi.org/10.1016/S0736-5853(01)00004-1 +Tony H. Grubesic,The geodemographic correlates of broadband access and availability in the United States.,2004,21,Telematics and Informatics,4,db/journals/tele/tele21.html#Grubesic04,https://doi.org/10.1016/j.tele.2004.02.003 +Michael Friedewald,Perspectives of ambient intelligence in the home environment.,2005,22,Telematics and Informatics,3,db/journals/tele/tele22.html#FriedewaldCPAH05,https://doi.org/10.1016/j.tele.2004.11.001 +Ya-Ching Lee,Strategic practices by clicks-and-bricks and pure-play audio webcasters.,2010,27,Telematics and Informatics,3,db/journals/tele/tele27.html#Lee10,https://doi.org/10.1016/j.tele.2009.06.012 +José Luis Gómez Barroso,Experiments on personal information disclosure: Past and future avenues.,2018,35,Telematics and Informatics,5,db/journals/tele/tele35.html#Barroso18,https://doi.org/10.1016/j.tele.2018.03.017 +Leopoldina Fortunati,The mobile phone use in Mainland China: Some insights from an exploratory study in Beijing.,2010,27,Telematics and Informatics,4,db/journals/tele/tele27.html#FortunatiMLY10,https://doi.org/10.1016/j.tele.2010.04.003 +Philip E. Agre,Building an Internet culture.,1998,15,Telematics and Informatics,3,db/journals/tele/tele15.html#Agre98,https://doi.org/10.1016/S0736-5853(98)00015-X +Anthony A. Olorunnisola,Influences of media on social movements: Problematizing hyperbolic inferences about impacts.,2013,30,Telematics and Informatics,3,db/journals/tele/tele30.html#OlorunnisolaM13,https://doi.org/10.1016/j.tele.2012.02.005 +Gregory Moro Puppi Wanderley,CONSIGNELA: A multidisciplinary patient-centered project to improve drug prescription comprehension and execution in elderly people and parkinsonian patients.,2018,35,Telematics and Informatics,4,db/journals/tele/tele35.html#WanderleyVABHML18,https://doi.org/10.1016/j.tele.2017.11.010 +Myung Ja Kim,Dual-route of persuasive communications in mobile tourism shopping.,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#KimCLP16,https://doi.org/10.1016/j.tele.2015.08.009 +Chatchai Kongaut,Investigating mobile broadband adoption and usage: A case of smartphones in Sweden.,2016,33,Telematics and Informatics,3,db/journals/tele/tele33.html#KongautB16,https://doi.org/10.1016/j.tele.2015.12.002 +Bernard Kamsu-Foguem,Modeling for effective collaboration in telemedicine.,2015,32,Telematics and Informatics,4,db/journals/tele/tele32.html#Kamsu-FoguemTFF15,https://doi.org/10.1016/j.tele.2015.03.009 +Euripidis N. Loukis,Editorial of the Special Issue on Digital Cities.,2011,28,Telematics and Informatics,3,db/journals/tele/tele28.html#LoukisCS11,https://doi.org/10.1016/j.tele.2010.10.002 +Ralf De Wolf,The promise of audience transparency. Exploring users' perceptions and behaviors towards visualizations of networked audiences on Facebook.,2015,32,Telematics and Informatics,4,db/journals/tele/tele32.html#WolfGBP15,https://doi.org/10.1016/j.tele.2015.04.007 +Farzana Parveen,Social media usage and organizational performance: Reflections of Malaysian social media managers.,2015,32,Telematics and Informatics,1,db/journals/tele/tele32.html#ParveenJA15,https://doi.org/10.1016/j.tele.2014.03.001 +Jyh-Jeng Wu,Why should I pay? Exploring the determinants influencing smartphone users' intentions to download paid app.,2017,34,Telematics and Informatics,5,db/journals/tele/tele34.html#WuCL17,https://doi.org/10.1016/j.tele.2016.12.003 +Siddhartha Menon,A features analysis of vertical integration on American television network websites.,2008,25,Telematics and Informatics,2,db/journals/tele/tele25.html#Menon08,https://doi.org/10.1016/j.tele.2006.07.001 +John W. Cheng,The underlying factors of the perceived usefulness of using smart wearable devices for disaster applications.,2017,34,Telematics and Informatics,2,db/journals/tele/tele34.html#ChengM17,https://doi.org/10.1016/j.tele.2016.09.010 +Se Jung Park,Expanding the presidential debate by tweeting: The 2012 presidential election debate in South Korea.,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#ParkPLP16,https://doi.org/10.1016/j.tele.2015.08.004 +Matthew S. Eastin,Diffusion of e-commerce: an analysis of the adoption of four e-commerce activities.,2002,19,Telematics and Informatics,3,db/journals/tele/tele19.html#Eastin02,https://doi.org/10.1016/S0736-5853(01)00005-3 +Shenja van der Graaf,Imaginaries of ownership: The logic of participation in the moral economy of 3D software design.,2015,32,Telematics and Informatics,2,db/journals/tele/tele32.html#Graaf15,https://doi.org/10.1016/j.tele.2014.05.004 +Yu-Hui Fang,Involuntary migration in cyberspaces: The case of MSN messenger discontinuation.,2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#FangT17,https://doi.org/10.1016/j.tele.2016.05.004 +Lucas Pfeiffer Salomão Dias,Gamification and serious games in depression care: A systematic mapping study.,2018,35,Telematics and Informatics,1,db/journals/tele/tele35.html#DiasBV18,https://doi.org/10.1016/j.tele.2017.11.002 +Syed Nasirin,Re-examining fundamental GIS implementation constructs through the grounded theory approach.,2003,20,Telematics and Informatics,4,db/journals/tele/tele20.html#NasirinBJ03,https://doi.org/10.1016/S0736-5853(03)00012-1 +Moon-Koo Kim,Determinants of customer loyalty in the Korean smartphone market: Moderating effects of usage characteristics.,2016,33,Telematics and Informatics,4,db/journals/tele/tele33.html#KimWCP16,https://doi.org/10.1016/j.tele.2016.02.006 +Farid Shirazi,Information and communication technology and women empowerment in Iran.,2012,29,Telematics and Informatics,1,db/journals/tele/tele29.html#Shirazi12,https://doi.org/10.1016/j.tele.2011.02.001 +Hanlong Fu,DTV standards and transition: A comparative policy analysis.,2013,30,Telematics and Informatics,4,db/journals/tele/tele30.html#FuA13,https://doi.org/10.1016/j.tele.2011.10.001 +DongBack Seo,Web_2.0 and five years since: How the combination of technological and organizational initiatives influences an organization's long-term Web_2.0 performance.,2016,33,Telematics and Informatics,1,db/journals/tele/tele33.html#SeoL16,https://doi.org/10.1016/j.tele.2015.07.010 +Walter Dettling,Mobile Communication Price Parity and index: Making money off the poor.,2016,33,Telematics and Informatics,1,db/journals/tele/tele33.html#DettlingH16,https://doi.org/10.1016/j.tele.2015.07.003 +Qingjiang Yao,What are shaping the ethical bottom line?: Identifying factors influencing young readers' acceptance of digital news photo alteration.,2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#YaoPL17,https://doi.org/10.1016/j.tele.2016.04.010 +Seung-Yeop Lee,Time displacement effect of online video services on other media in South Korea.,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#LeeLK16,https://doi.org/10.1016/j.tele.2015.08.002 +Georgios N. Angelou,A compound real option and AHP methodology for evaluating ICT business alternatives.,2009,26,Telematics and Informatics,4,db/journals/tele/tele26.html#AngelouE09,https://doi.org/10.1016/j.tele.2008.02.004 +Maya Samaha Rupert,Associations between screen media parenting practices and children's screen time in Lebanon.,2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#RupertH17,https://doi.org/10.1016/j.tele.2016.06.002 +Pedro Soto-Acosta,Evaluating Internet technologies business effectiveness.,2009,26,Telematics and Informatics,2,db/journals/tele/tele26.html#Soto-AcostaM09,https://doi.org/10.1016/j.tele.2008.01.004 +Fabio Gasparetti,Prerequisites between learning objects: Automatic extraction based on a machine learning approach.,2018,35,Telematics and Informatics,3,db/journals/tele/tele35.html#GasparettiMLST18,https://doi.org/10.1016/j.tele.2017.05.007 +Carmen Gómez Mont,The social uses of Internet in Mexico: A case study.,1999,16,Telematics and Informatics,3,db/journals/tele/tele16.html#Mont99,https://doi.org/10.1016/S0736-5853(99)00021-0 +Reza Tadayoni,From IPv4 to IPv6: Lost in translation?,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#TadayoniH16,https://doi.org/10.1016/j.tele.2015.10.004 +Shahrokh Nikou,Digital natives' intention to interact with social media: Value systems and gender.,2018,35,Telematics and Informatics,2,db/journals/tele/tele35.html#NikouMB18,https://doi.org/10.1016/j.tele.2017.12.019 +Giannis F. Marias,Applying privacy on the dissemination of location information.,2006,23,Telematics and Informatics,3,db/journals/tele/tele23.html#MariasKDG06,https://doi.org/10.1016/j.tele.2005.07.006 +Tooran Alizadeh,Urban governance and big corporations in the digital economy: An investigation of socio-spatial implications of Google Fiber in Kansas City.,2017,34,Telematics and Informatics,7,db/journals/tele/tele34.html#AlizadehGH17,https://doi.org/10.1016/j.tele.2017.04.007 +May-Ching Ding,Handling online service recovery: Effects of perceived justice on online games.,2016,33,Telematics and Informatics,4,db/journals/tele/tele33.html#DingL16,https://doi.org/10.1016/j.tele.2016.02.001 +Lisha Chen,Integrating guanxi into technology acceptance: An empirical investigation of WeChat.,2017,34,Telematics and Informatics,7,db/journals/tele/tele34.html#ChenGSR17,https://doi.org/10.1016/j.tele.2017.05.003 +Hui Na Chua,Impact of employees' demographic characteristics on the awareness and compliance of information security policy in organizations.,2018,35,Telematics and Informatics,6,db/journals/tele/tele35.html#ChuaWLC18,https://doi.org/10.1016/j.tele.2018.05.005 +Andreas Klein 0005,Consumers' willingness-to-pay for mobile telecommunication service bundles.,2014,31,Telematics and Informatics,3,db/journals/tele/tele31.html#KleinJ14,https://doi.org/10.1016/j.tele.2013.11.006 +Adrian Holzer,Mobile application market: A developer's perspective.,2011,28,Telematics and Informatics,1,db/journals/tele/tele28.html#HolzerO11,https://doi.org/10.1016/j.tele.2010.05.006 +José Luis Gómez Barroso,ADSL deployment in the Community of Madrid: Investigating the geographical factors of the digital divide.,2007,24,Telematics and Informatics,2,db/journals/tele/tele24.html#BarrosoM07,https://doi.org/10.1016/j.tele.2006.01.003 +Saifuddin Ahmed,Leveling the playing field: The use of Twitter by politicians during the 2014 Indian general election campaign.,2017,34,Telematics and Informatics,7,db/journals/tele/tele34.html#AhmedCJ17,https://doi.org/10.1016/j.tele.2017.09.005 +Moon-Koo Kim,Investigating the determinants of low adoption of tablet PCs in Korean firms: Effects of value perception and alternative attractiveness.,2017,34,Telematics and Informatics,8,db/journals/tele/tele34.html#KimJP17,https://doi.org/10.1016/j.tele.2017.07.003 +Ibeawuchi K. Enwereuzor,Capturing consumers' experiences of unsolicited mobile advertising.,2017,34,Telematics and Informatics,7,db/journals/tele/tele34.html#Enwereuzor17,https://doi.org/10.1016/j.tele.2017.04.004 +Jarice Hanson,The Facebook Phenomenon.,2013,30,Telematics and Informatics,1,db/journals/tele/tele30.html#Hanson13,https://doi.org/10.1016/j.tele.2012.03.007 +María Teresa García-álvarez,The effects of social networks on the assessment of virtual learning environments: A study for social sciences degrees.,2018,35,Telematics and Informatics,4,db/journals/tele/tele35.html#Garcia-AlvarezN18,https://doi.org/10.1016/j.tele.2017.09.013 +Yet Mee Lim,A profile of the Internet shoppers: Evidence from nine countries.,2015,32,Telematics and Informatics,2,db/journals/tele/tele32.html#LimC15,https://doi.org/10.1016/j.tele.2014.10.002 +Pei-Ju Lee,Assessing the helpfulness of online hotel reviews: A classification-based approach.,2018,35,Telematics and Informatics,2,db/journals/tele/tele35.html#LeeHL18,https://doi.org/10.1016/j.tele.2018.01.001 +Tao (Jennifer) Ma,User generated content and credibility evaluation of online health information: A meta analytic study.,2017,34,Telematics and Informatics,5,db/journals/tele/tele34.html#MaA17,https://doi.org/10.1016/j.tele.2016.09.009 +Marlen Komorowski,Twitter data analysis for studying communities of practice in the media industry.,2018,35,Telematics and Informatics,1,db/journals/tele/tele35.html#KomorowskiHD18,https://doi.org/10.1016/j.tele.2017.11.001 +Marco Spruit,Applied data science in patient-centric healthcare: Adaptive analytic systems for empowering physicians and patients.,2018,35,Telematics and Informatics,4,db/journals/tele/tele35.html#SpruitL18,https://doi.org/10.1016/j.tele.2018.04.002 +Andreas Klein 0005,Social activity and structural centrality in online social networks.,2015,32,Telematics and Informatics,2,db/journals/tele/tele32.html#KleinAS15,https://doi.org/10.1016/j.tele.2014.09.008 +Kimberly Speight,Gaps in the worldwide information explosion: How the Internet is affecting the worldwide knowledge gap.,1999,16,Telematics and Informatics,3,db/journals/tele/tele16.html#Speight99,https://doi.org/10.1016/S0736-5853(99)00024-6 +Ya-Ching Lee,Effects of branded e-stickers on purchase intentions: The perspective of social capital theory.,2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#Lee17,https://doi.org/10.1016/j.tele.2016.06.005 +Bikram Acharya,Users' perspective on the adoption of e-learning in developing countries: The case of Nepal with a conjoint-based discrete choice approach.,2018,35,Telematics and Informatics,6,db/journals/tele/tele35.html#AcharyaL18,https://doi.org/10.1016/j.tele.2018.05.002 +Michael Chan,Digital communications and psychological well-being across the life span: Examining the intervening roles of social capital and civic engagement.,2018,35,Telematics and Informatics,6,db/journals/tele/tele35.html#Chan18,https://doi.org/10.1016/j.tele.2018.05.003 +Bing Zhang,Understanding China's telecommunications policymaking and reforms: a tale of transition toward liberalization.,2002,19,Telematics and Informatics,4,db/journals/tele/tele19.html#Zhang02a,https://doi.org/10.1016/S0736-5853(01)00022-3 +Ramón Tirado Morueta,Empirical study of a sequence of access to Internet use in Ecuador.,2017,34,Telematics and Informatics,4,db/journals/tele/tele34.html#MoruetaMGM17,https://doi.org/10.1016/j.tele.2016.12.012 +Plácido Rogério Pinheiro,Evaluation of the Alzheimer's disease clinical stages under the optics of hybrid approaches in Verbal Decision Analysis.,2018,35,Telematics and Informatics,4,db/journals/tele/tele35.html#PinheiroTPA18,https://doi.org/10.1016/j.tele.2017.04.008 +Tony H. Grubesic,A geographic perspective on commercial Internet survivability.,2003,20,Telematics and Informatics,1,db/journals/tele/tele20.html#GrubesicOM03,https://doi.org/10.1016/S0736-5853(02)00003-5 +Anne Marie Jennifer E. Eligio,Communication imperatives for indigenous peoples' representation in policy making: Lessons from the IPRA (Indigenous Peoples Rights Act) experience.,2012,29,Telematics and Informatics,3,db/journals/tele/tele29.html#Eligio12,https://doi.org/10.1016/j.tele.2011.10.004 +Dorien Baelden,Participative ICT4D and living lab research: The case study of a mobile social media application in a rural Tanzanian University setting.,2015,32,Telematics and Informatics,4,db/journals/tele/tele32.html#BaeldenA15,https://doi.org/10.1016/j.tele.2015.04.012 +Marcia Wilson,The development of the Internet in South Africa.,1999,16,Telematics and Informatics,3,db/journals/tele/tele16.html#Wilson99,https://doi.org/10.1016/S0736-5853(99)00022-2 +Rich Ling,From ubicomp to ubiex(pectations).,2014,31,Telematics and Informatics,2,db/journals/tele/tele31.html#Ling14,https://doi.org/10.1016/j.tele.2013.09.001 +Jong-Hyun Park,Factors influencing the low usage of smart TV services by the terminal buyers in Korea.,2016,33,Telematics and Informatics,4,db/journals/tele/tele33.html#ParkK16,https://doi.org/10.1016/j.tele.2016.01.001 +Amit M. Schejter,Policy implications of market segmentation as a determinant of fixed-mobile service substitution: What it means for carriers and policy makers.,2010,27,Telematics and Informatics,1,db/journals/tele/tele27.html#SchejterSTZ10,https://doi.org/10.1016/j.tele.2009.05.002 +Payam Hanafizadeh,A systematic review of Internet banking adoption.,2014,31,Telematics and Informatics,3,db/journals/tele/tele31.html#HanafizadehKK14,https://doi.org/10.1016/j.tele.2013.04.003 +Jamid Ul Islam,The impact of online brand community characteristics on customer engagement: An application of Stimulus-Organism-Response paradigm.,2017,34,Telematics and Informatics,4,db/journals/tele/tele34.html#IslamR17,https://doi.org/10.1016/j.tele.2017.01.004 +Jan Fernback,Sousveillance: Communities of resistance to the surveillance environment.,2013,30,Telematics and Informatics,1,db/journals/tele/tele30.html#Fernback13,https://doi.org/10.1016/j.tele.2012.03.003 +Chia-Lin Hsu,Elucidating the determinants of purchase intention toward social shopping sites: A comparative study of Taiwan and Japan.,2017,34,Telematics and Informatics,4,db/journals/tele/tele34.html#HsuCKM17,https://doi.org/10.1016/j.tele.2016.04.016 +Felix Mata,A cross-domain framework for designing healthcare mobile applications mining social networks to generate recommendations of training and nutrition planning.,2018,35,Telematics and Informatics,4,db/journals/tele/tele35.html#MataRZGMQ18,https://doi.org/10.1016/j.tele.2017.04.005 +Qun Zhao,The effects of psychological ownership and TAM on social media loyalty: An integrated model.,2016,33,Telematics and Informatics,4,db/journals/tele/tele33.html#ZhaoCW16,https://doi.org/10.1016/j.tele.2016.02.007 +John Simpson 0001,The impact of the Internet in banking: observations and evidence from developed and emerging markets.,2002,19,Telematics and Informatics,4,db/journals/tele/tele19.html#Simpson02,https://doi.org/10.1016/S0736-5853(01)00019-3 +Jon Iden,The drivers of services on next-generation networks.,2012,29,Telematics and Informatics,2,db/journals/tele/tele29.html#IdenM12,https://doi.org/10.1016/j.tele.2011.05.004 +Changjun Lee,Does social media use really make people politically polarized? Direct and indirect effects of social media use on political polarization in South Korea.,2018,35,Telematics and Informatics,1,db/journals/tele/tele35.html#LeeSH18,https://doi.org/10.1016/j.tele.2017.11.005 +Tien Wang,What drives electronic word-of-mouth on social networking sites? Perspectives of social capital and self-determination.,2016,33,Telematics and Informatics,4,db/journals/tele/tele33.html#WangYCT16,https://doi.org/10.1016/j.tele.2016.03.005 +Vagia Kyriakidou,Business modeling and financial analysis for Metropolitan Area Networks: Evidence from Greece.,2011,28,Telematics and Informatics,2,db/journals/tele/tele28.html#KyriakidouKOCV11,https://doi.org/10.1016/j.tele.2010.05.001 +Maria Sourbati,The digital switchover as an information society initiative: The role of public policy in promoting access to digital ICTs.,2011,28,Telematics and Informatics,4,db/journals/tele/tele28.html#Sourbati11,https://doi.org/10.1016/j.tele.2010.11.002 +Rebecca Kern,R.I.P.: Remain in perpetuity. Facebook memorial pages.,2013,30,Telematics and Informatics,1,db/journals/tele/tele30.html#KernFG13,https://doi.org/10.1016/j.tele.2012.03.002 +Fábio Pittoli,An intelligent system for prognosis of noncommunicable diseases' risk factors.,2018,35,Telematics and Informatics,5,db/journals/tele/tele35.html#PittoliVBBGCS18,https://doi.org/10.1016/j.tele.2018.02.005 +Janice Hua Xu,Online news reports of air quality issues in Beijing.,2012,29,Telematics and Informatics,4,db/journals/tele/tele29.html#Xu12,https://doi.org/10.1016/j.tele.2011.01.001 +Angela M. Cirucci,First person paparazzi: Why social media should be studied more like video games.,2013,30,Telematics and Informatics,1,db/journals/tele/tele30.html#Cirucci13,https://doi.org/10.1016/j.tele.2012.03.006 +Sun Sun Lim,The influence of social and cultural factors on mothers' domestication of household ICTs - Experiences of Chinese and Korean women.,2010,27,Telematics and Informatics,3,db/journals/tele/tele27.html#LimS10,https://doi.org/10.1016/j.tele.2009.07.001 +Torsten J. Gerpott,Biased choice of a mobile telephony tariff type: : Exploring usage boundary perceptions as a cognitive cause in choosing between a use-based or a flat rate plan.,2009,26,Telematics and Informatics,2,db/journals/tele/tele26.html#Gerpott09,https://doi.org/10.1016/j.tele.2008.02.003 +Pei-Luen Patrick Rau,The influence of repetition and time pressure on effectiveness of mobile advertising messages.,2014,31,Telematics and Informatics,3,db/journals/tele/tele31.html#RauZCL14,https://doi.org/10.1016/j.tele.2013.10.003 +Paul S. N. Lee,Assessing the displacement effects of the Internet.,2008,25,Telematics and Informatics,3,db/journals/tele/tele25.html#LeeL08,https://doi.org/10.1016/j.tele.2006.08.002 +Vimala Balakrishnan,Students' learning styles and their effects on the use of social media technology for learning.,2016,33,Telematics and Informatics,3,db/journals/tele/tele33.html#BalakrishnanG16,https://doi.org/10.1016/j.tele.2015.12.004 +Václav Simandl,Influences on ICT teachers knowledge and routines in a technical e-safety context.,2017,34,Telematics and Informatics,8,db/journals/tele/tele34.html#SimandlV17,https://doi.org/10.1016/j.tele.2017.06.012 +Nate Sutter,Perceptions of public mobile phone conversations and conversationalists.,2013,30,Telematics and Informatics,2,db/journals/tele/tele30.html#SutterH13,https://doi.org/10.1016/j.tele.2012.09.001 +Brett M. Harnett,Redundant wireless communication technologies for real-time surveillance.,2004,21,Telematics and Informatics,4,db/journals/tele/tele21.html#HarnettDZM04,https://doi.org/10.1016/j.tele.2004.04.004 +Kenneth C. C. Yang,The influence of humanlike navigation interface on users' responses to Internet advertising.,2006,23,Telematics and Informatics,1,db/journals/tele/tele23.html#Yang06,https://doi.org/10.1016/j.tele.2005.03.001 +Sangho Seo,VOIP-telephone service: Economic efficiencies and policy implications.,2008,25,Telematics and Informatics,1,db/journals/tele/tele25.html#Seo08,https://doi.org/10.1016/j.tele.2006.09.001 +Arho Suominen,Young mobile users: Radical and individual - Not.,2014,31,Telematics and Informatics,2,db/journals/tele/tele31.html#SuominenHK14,https://doi.org/10.1016/j.tele.2013.08.003 +Marko M. Skoric,Contextualizing the role of technologies in the process of civic and political change in Asia.,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#SkoricK16,https://doi.org/10.1016/j.tele.2015.11.007 +Thomas Holtgraves,Texting versus talking: An exploration in telecommunication language.,2013,30,Telematics and Informatics,4,db/journals/tele/tele30.html#HoltgravesP13,https://doi.org/10.1016/j.tele.2013.01.002 +Sasan Adibi,A low overhead scaled equalized harmonic-based voice authentication system.,2014,31,Telematics and Informatics,1,db/journals/tele/tele31.html#Adibi14,https://doi.org/10.1016/j.tele.2013.02.004 +Kuo-Lun Hsiao,Value-based adoption of e-book subscription services: The roles of environmental concerns and reading habits.,2017,34,Telematics and Informatics,5,db/journals/tele/tele34.html#HsiaoC17,https://doi.org/10.1016/j.tele.2016.09.004 +Ahmad Tabeh Khalilian,Integrated feedback control reporting for improving quality of technical service reporting in IT service management.,2017,34,Telematics and Informatics,8,db/journals/tele/tele34.html#KhalilianIN17,https://doi.org/10.1016/j.tele.2017.08.007 +Esra Ilbahar,Classification of design parameters for E-commerce websites: A novel fuzzy Kano approach.,2017,34,Telematics and Informatics,8,db/journals/tele/tele34.html#IlbaharC17,https://doi.org/10.1016/j.tele.2017.09.004 +Fernando Moreira,A comparative study about mobile learning in Iberian Peninsula Universities: Are professors ready?,2018,35,Telematics and Informatics,4,db/journals/tele/tele35.html#MoreiraPDF18,https://doi.org/10.1016/j.tele.2017.09.010 +Kaushalesh Lal,Determinants of the adoption of e-business technologies.,2005,22,Telematics and Informatics,3,db/journals/tele/tele22.html#Lal05,https://doi.org/10.1016/j.tele.2004.07.001 +Wannes Heirman,Applying the theory of planned behavior to adolescents' acceptance of online friendship requests sent by strangers.,2016,33,Telematics and Informatics,4,db/journals/tele/tele33.html#HeirmanWVPVH16,https://doi.org/10.1016/j.tele.2016.01.002 +T. Ramayah,Factors influencing SMEs website continuance intention in Malaysia.,2016,33,Telematics and Informatics,1,db/journals/tele/tele33.html#RamayahLTR16,https://doi.org/10.1016/j.tele.2015.06.007 +Tanko Ishaya,A service oriented approach to Business Intelligence in Telecoms industry.,2012,29,Telematics and Informatics,3,db/journals/tele/tele29.html#IshayaF12,https://doi.org/10.1016/j.tele.2012.01.004 +Yves Wautelet,Developing a multi-agent platform supporting patient hospital stays following a socio-technical approach: Management and governance benefits.,2018,35,Telematics and Informatics,4,db/journals/tele/tele35.html#WauteletKHP18,https://doi.org/10.1016/j.tele.2017.12.013 +Payam Hanafizadeh,Mobile-banking adoption by Iranian bank clients.,2014,31,Telematics and Informatics,1,db/journals/tele/tele31.html#HanafizadehBKT14,https://doi.org/10.1016/j.tele.2012.11.001 +Dong-Hee Shin,Disruptive innovation for social change: how technology innovation can be best managed in social context.,2011,28,Telematics and Informatics,2,db/journals/tele/tele28.html#ShinL11,https://doi.org/10.1016/j.tele.2010.08.002 +Eun Kim,Online movie success in sequential markets: Determinants of video-on-demand film success in Korea.,2017,34,Telematics and Informatics,7,db/journals/tele/tele34.html#KimK17,https://doi.org/10.1016/j.tele.2017.04.009 +Robert Hinson,The value chain and e-business in exporting: Case studies from Ghana's non-traditional export (NTE) sector.,2010,27,Telematics and Informatics,3,db/journals/tele/tele27.html#Hinson10,https://doi.org/10.1016/j.tele.2009.06.013 +Jeffrey James,Relative and absolute components of leapfrogging in mobile phones by developing countries.,2014,31,Telematics and Informatics,1,db/journals/tele/tele31.html#James14,https://doi.org/10.1016/j.tele.2013.03.001 +Yonghwan Kim,Social media and online political participation: The mediating role of exposure to cross-cutting and like-minded perspectives.,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#KimC16,https://doi.org/10.1016/j.tele.2015.08.008 +Colin Blackman,Forecasting user demand for wireless services: A socio-economic approach for Europe.,2007,24,Telematics and Informatics,3,db/journals/tele/tele24.html#BlackmanFBC07,https://doi.org/10.1016/j.tele.2007.01.010 +Ahmad N. Al-Raisi,Iris recognition and the challenge of homeland and border control security in UAE.,2008,25,Telematics and Informatics,2,db/journals/tele/tele25.html#Al-RaisiA08,https://doi.org/10.1016/j.tele.2006.06.005 +Kimberly A. Neuendorf,The television of abundance arrives: cable choices and interest maximization.,2000,17,Telematics and Informatics,2,db/journals/tele/tele17.html#NeuendorfJA00,https://doi.org/10.1016/S0736-5853(00)00007-1 +Karamollah Bagherifard,Performance improvement for recommender systems using ontology.,2017,34,Telematics and Informatics,8,db/journals/tele/tele34.html#BagherifardRNR17,https://doi.org/10.1016/j.tele.2017.08.008 +Xiaoqun Zhang,Exploring the patterns and determinants of the global mobile divide.,2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#Zhang17,https://doi.org/10.1016/j.tele.2016.06.010 +Jan Servaes,On Impact Factors and Research Assessment. At the Start of Volume 31 of Telematics and Informatics.,2014,31,Telematics and Informatics,1,db/journals/tele/tele31.html#Servaes14,https://doi.org/10.1016/j.tele.2013.09.005 +Ahreum Hong,A customer-based indirect approach to determine the value of news provided to Internet portals in Korea.,2018,35,Telematics and Informatics,6,db/journals/tele/tele35.html#HongNK18,https://doi.org/10.1016/j.tele.2018.05.001 +Lampros Ntalkos,Let's Meet! A participatory-based discovery and rendezvous mobile marketing framework.,2015,32,Telematics and Informatics,4,db/journals/tele/tele32.html#NtalkosKD15,https://doi.org/10.1016/j.tele.2014.12.002 +Dong Hee Shin,VoIP: A debate over information service or telephone application in US: A new perspective in convergence era.,2006,23,Telematics and Informatics,2,db/journals/tele/tele23.html#Shin06,https://doi.org/10.1016/j.tele.2005.04.001 +Mary Prior,The ethical attitudes of information systems professionals: outcomes of an initial survey.,2002,19,Telematics and Informatics,1,db/journals/tele/tele19.html#PriorRF02,https://doi.org/10.1016/S0736-5853(00)00014-9 +David Morley,On living in a techno-globalised world: Questions of history and geography.,2013,30,Telematics and Informatics,2,db/journals/tele/tele30.html#Morley13,https://doi.org/10.1016/j.tele.2012.08.001 +I-Chiu Chang,Factors influencing Chinese tourists' intentions to use the Taiwan Medical Travel App.,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#ChangCYT16,https://doi.org/10.1016/j.tele.2015.09.007 +A. Uguz,Robots for kids.,2003,20,Telematics and Informatics,1,db/journals/tele/tele20.html#Uguz03,https://doi.org/10.1016/S0736-5853(02)00001-1 +Jesús Cendrós Guasch,The Digital Gap in Maracaibo city in Venezuela.,2007,24,Telematics and Informatics,1,db/journals/tele/tele24.html#GuaschU07,https://doi.org/10.1016/j.tele.2006.06.003 +Maria Michalis,The relation between content providers and distributors: Lessons from the regulation of television distribution in the United Kingdom.,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#MichalisS16,https://doi.org/10.1016/j.tele.2015.07.001 +,Factors affecting the e-learning outcomes: An integration of TAM and IS success model.,2015,32,Telematics and Informatics,4,db/journals/tele/tele32.html#Mohammadi15,https://doi.org/10.1016/j.tele.2015.03.002 +Paul Skalski,Predictors of support for doctoral programs in media information technologies.,2006,23,Telematics and Informatics,4,db/journals/tele/tele23.html#SkalskiNA06,https://doi.org/10.1016/j.tele.2005.10.001 +P. Aparicio-Martínez,Social networks' unnoticed influence on body image in Spanish university students.,2017,34,Telematics and Informatics,8,db/journals/tele/tele34.html#Aparicio-Martinez17,https://doi.org/10.1016/j.tele.2017.08.001 +Yongyoon Suh,Dynamic change of manufacturing and service industries network in mobile ecosystems: The case of Korea.,2015,32,Telematics and Informatics,4,db/journals/tele/tele32.html#SuhK15,https://doi.org/10.1016/j.tele.2015.02.004 +Harry Bouwman,Barriers and drivers in the adoption of current and future mobile services in Finland.,2007,24,Telematics and Informatics,2,db/journals/tele/tele24.html#BouwmanCMW07,https://doi.org/10.1016/j.tele.2006.08.001 +Saibal Ghosh,Broadband penetration and economic growth: Do policies matter?,2017,34,Telematics and Informatics,5,db/journals/tele/tele34.html#Ghosh17,https://doi.org/10.1016/j.tele.2016.12.007 +Jaehee Cho,Contextualization of motivations determining the continuance intention to use smart devices among people with physical disabilities.,2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#ChoL17,https://doi.org/10.1016/j.tele.2016.05.011 +Dong Hee Shin,Prospectus of mobile TV: Another bubble or killer application?,2006,23,Telematics and Informatics,4,db/journals/tele/tele23.html#Shin06a,https://doi.org/10.1016/j.tele.2005.08.001 +Morten Falch,Next generation broadband - Content and user perspectives.,2007,24,Telematics and Informatics,4,db/journals/tele/tele24.html#FalchT07,https://doi.org/10.1016/j.tele.2007.01.002 +Se-Eun Kim,Examining the antecedents and consequences of mobile app engagement.,2018,35,Telematics and Informatics,1,db/journals/tele/tele35.html#KimB18,https://doi.org/10.1016/j.tele.2017.10.008 +Jared Strauss,Policies for online privacy in the United States and the European Union.,2002,19,Telematics and Informatics,2,db/journals/tele/tele19.html#StraussR02,https://doi.org/10.1016/S0736-5853(01)00012-0 +Claudio de A. Loural,Technological development of Brazilian telecommunications in past decades.,2006,23,Telematics and Informatics,4,db/journals/tele/tele23.html#LouralFRO06,https://doi.org/10.1016/j.tele.2005.09.003 +Leonor Adriana Cárdenas-Robledo,Ubiquitous learning: A systematic review.,2018,35,Telematics and Informatics,5,db/journals/tele/tele35.html#Cardenas-Robledo18,https://doi.org/10.1016/j.tele.2018.01.009 +Wonsuk Jung,Differences between LTE and 3G service customers: Business and policy implications.,2015,32,Telematics and Informatics,4,db/journals/tele/tele32.html#JungK15a,https://doi.org/10.1016/j.tele.2015.03.001 +Jiyoung Lee,Understanding social viewing through discussion network and emotion: A focus on South Korean presidential debates.,2018,35,Telematics and Informatics,5,db/journals/tele/tele35.html#LeeC18a,https://doi.org/10.1016/j.tele.2018.03.009 +Francis L. F. Lee,Digital media use and participation leadership in social protests: The case of Tiananmen commemoration in Hong Kong.,2015,32,Telematics and Informatics,4,db/journals/tele/tele32.html#LeeC15,https://doi.org/10.1016/j.tele.2015.04.013 +Cheng Chen,Are you addicted to Candy Crush Saga? An exploratory study linking psychological factors to mobile social game addiction.,2016,33,Telematics and Informatics,4,db/journals/tele/tele33.html#ChenL16,https://doi.org/10.1016/j.tele.2015.11.005 +Song Shi,The use of Web2.0 style technologies among Chinese civil society organizations.,2013,30,Telematics and Informatics,4,db/journals/tele/tele30.html#Shi13,https://doi.org/10.1016/j.tele.2012.04.003 +Wei-Yen Hsu,Interactive e-billboard combined with guide system: Using Kinect.,2017,34,Telematics and Informatics,8,db/journals/tele/tele34.html#Hsu17c,https://doi.org/10.1016/j.tele.2017.06.004 +Taehyun Ha,Examining user perceptions of smartwatch through dynamic topic modeling.,2017,34,Telematics and Informatics,7,db/journals/tele/tele34.html#HaBKLK17,https://doi.org/10.1016/j.tele.2017.05.011 +Kathleen Van Royen,Automatic monitoring of cyberbullying on social networking sites: From technological feasibility to desirability.,2015,32,Telematics and Informatics,1,db/journals/tele/tele32.html#RoyenPDV15,https://doi.org/10.1016/j.tele.2014.04.002 +Christos Bouras,An electronic voting service to support decision-making in local government.,2003,20,Telematics and Informatics,3,db/journals/tele/tele20.html#BourasKT03,https://doi.org/10.1016/S0736-5853(03)00017-0 +Gillian Doyle,Resistance of channels: Television distribution in the multiplatform era.,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#Doyle16,https://doi.org/10.1016/j.tele.2015.06.015 +I-Chiu Chang,An empirical study of the factors affecting Internet security for the financial industry in Taiwan.,2006,23,Telematics and Informatics,4,db/journals/tele/tele23.html#ChangHYH06,https://doi.org/10.1016/j.tele.2005.11.001 +Sangwon Lee,Early diffusion of smartphones in OECD and BRICS countries: An examination of the effects of platform competition and indirect network effects.,2014,31,Telematics and Informatics,3,db/journals/tele/tele31.html#LeeL14,https://doi.org/10.1016/j.tele.2013.12.002 +Wei-Hsi Hung,Does the proactive personality mitigate the adverse effect of technostress on productivity in the mobile environment?,2015,32,Telematics and Informatics,1,db/journals/tele/tele32.html#HungCL15,https://doi.org/10.1016/j.tele.2014.06.002 +Eilat Chen Levy,The effect of online interruptions on the quality of cognitive performance.,2016,33,Telematics and Informatics,4,db/journals/tele/tele33.html#LevyRA16,https://doi.org/10.1016/j.tele.2016.03.003 +Fernando Moreira,A Special Issue on Disruption of higher education in the 21st century due to ICTs.,2018,35,Telematics and Informatics,4,db/journals/tele/tele35.html#MoreiraR18,https://doi.org/10.1016/j.tele.2018.05.007 +Wee-Kheng Tan,Smartphone application personality and its relationship to personalities of smartphone users and social capital accrued through use of smartphone social applications.,2018,35,Telematics and Informatics,1,db/journals/tele/tele35.html#TanHTC18,https://doi.org/10.1016/j.tele.2017.11.007 +Sanna-Mari Kuoppamäki,The use of mobile technology for online shopping and entertainment among older adults in Finland.,2017,34,Telematics and Informatics,4,db/journals/tele/tele34.html#KuoppamakiTW17,https://doi.org/10.1016/j.tele.2017.01.005 +George M. Moutafides,Demand for broadband access in Greece.,2011,28,Telematics and Informatics,2,db/journals/tele/tele28.html#MoutafidesE11,https://doi.org/10.1016/j.tele.2010.10.003 +Josip Zoric,Connecting business models with service platform designs: Exploiting potential of scenario modeling.,2011,28,Telematics and Informatics,1,db/journals/tele/tele28.html#Zoric11,https://doi.org/10.1016/j.tele.2010.05.008 +Kaeun Song,Dissecting movie performance across multiple distribution channels: An elastic justification theory perspective.,2018,35,Telematics and Informatics,1,db/journals/tele/tele35.html#SongKLK18,https://doi.org/10.1016/j.tele.2017.10.009 +Mohammad Dalvi Esfahani,Modelling upper echelons' behavioural drivers of Green IT/IS adoption using an integrated Interpretive Structural Modelling - Analytic Network Process approach.,2017,34,Telematics and Informatics,2,db/journals/tele/tele34.html#EsfahaniRN17,https://doi.org/10.1016/j.tele.2016.10.002 +Amal Al-Abri,Comprehensive classification of collaboration approaches in E-learning.,2017,34,Telematics and Informatics,6,db/journals/tele/tele34.html#Al-AbriJKA17,https://doi.org/10.1016/j.tele.2016.08.006 +Yung-Ting Chuang,MEMIS: A Mobile-Supported English-Medium Instruction System.,2017,34,Telematics and Informatics,2,db/journals/tele/tele34.html#Chuang17,https://doi.org/10.1016/j.tele.2016.10.007 +Pan Ji,"Emotional criticism as public engagement: How weibo users discuss ""Peking University statues wear face-masks"".",2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#Ji16,https://doi.org/10.1016/j.tele.2015.06.017 +Harina Suk-Ching Tang,Growth in adversity: non-economic factors in telecommunications development in China.,2003,20,Telematics and Informatics,1,db/journals/tele/tele20.html#TangL03,https://doi.org/10.1016/S0736-5853(01)00027-2 +Wendy W. L. Goh,Young school children's use of digital devices and parental rules.,2015,32,Telematics and Informatics,4,db/journals/tele/tele32.html#GohBC15,https://doi.org/10.1016/j.tele.2015.04.002 +Yang Lu,Semantic privacy-preserving framework for electronic health record linkage.,2018,35,Telematics and Informatics,4,db/journals/tele/tele35.html#LuS18,https://doi.org/10.1016/j.tele.2017.06.007 +Jeffrey James,Information technology use among individuals in rich and poor countries: The disappearing divide.,2009,26,Telematics and Informatics,4,db/journals/tele/tele26.html#James09,https://doi.org/10.1016/j.tele.2009.03.002 +Sakari Taipale,Bodily dimensions of reading and writing practices on paper and digitally.,2015,32,Telematics and Informatics,4,db/journals/tele/tele32.html#Taipale15,https://doi.org/10.1016/j.tele.2015.04.001 +Indrek Ibrus,Evolutionary dynamics of media convergence: Early mobile web and its standardisation at W3C.,2013,30,Telematics and Informatics,2,db/journals/tele/tele30.html#Ibrus13,https://doi.org/10.1016/j.tele.2012.04.004 +Yasser Mattar,Post-industrialism and Silicon Valley as models of industrial governance in Australian public policy.,2008,25,Telematics and Informatics,4,db/journals/tele/tele25.html#Mattar08,https://doi.org/10.1016/j.tele.2007.04.001 +Hana Machácková,The perceived importance of credibility cues for the assessment of the trustworthiness of online information by visitors of health-related websites: The role of individual factors.,2018,35,Telematics and Informatics,5,db/journals/tele/tele35.html#MachackovaS18,https://doi.org/10.1016/j.tele.2018.03.021 +Ni Ding,Emotional effect of cinematic VR compared with traditional 2D film.,2018,35,Telematics and Informatics,6,db/journals/tele/tele35.html#DingZF18,https://doi.org/10.1016/j.tele.2018.04.003 +Mark Turner,Understanding emotions experienced when using a mobile phone in public: The social usability of mobile (cellular) telephones.,2008,25,Telematics and Informatics,3,db/journals/tele/tele25.html#TurnerLH08,https://doi.org/10.1016/j.tele.2007.03.001 +Sheikh Taher Abu,Technological innovations and 3G mobile phone diffusion: Lessons learned from Japan.,2010,27,Telematics and Informatics,4,db/journals/tele/tele27.html#Abu10,https://doi.org/10.1016/j.tele.2010.03.001 +Igor A. Ambalov,A meta-analysis of IT continuance: An evaluation of the expectation-confirmation model.,2018,35,Telematics and Informatics,6,db/journals/tele/tele35.html#Ambalov18,https://doi.org/10.1016/j.tele.2018.03.016 +Jason Whalley,From phones to football: The changing strategic focus of BT.,2017,34,Telematics and Informatics,5,db/journals/tele/tele34.html#WhalleyC17,https://doi.org/10.1016/j.tele.2017.03.003 +Yachana,A trustworthy system for secure access to patient centric sensitive information.,2018,35,Telematics and Informatics,4,db/journals/tele/tele35.html#YachanaKS18,https://doi.org/10.1016/j.tele.2017.09.008 +Lilia Filipova-Neumann,Reducing asymmetric information in insurance markets: Cars with black boxes.,2010,27,Telematics and Informatics,4,db/journals/tele/tele27.html#Filipova-NeumannW10,https://doi.org/10.1016/j.tele.2010.03.003 +Ramón Zataraín-Cabada,An affective and Web 3.0-based learning environment for a programming language.,2018,35,Telematics and Informatics,3,db/journals/tele/tele35.html#Zatarain-Cabada18,https://doi.org/10.1016/j.tele.2017.03.005 +Anders Henten,Telecommunications development in Africa: filling the gap.,2004,21,Telematics and Informatics,,db/journals/tele/tele21.html#HentenFA04,https://doi.org/10.1016/S0736-5853(03)00019-4 +Carolyn A. Lin,Technology fluidity and on-demand webcasting adoption.,2008,25,Telematics and Informatics,2,db/journals/tele/tele25.html#Lin08,https://doi.org/10.1016/j.tele.2006.06.002 +Marianne C. Bickle,Creating a virtual community to enhance member services: credit unions and e-commerce.,2004,21,Telematics and Informatics,2,db/journals/tele/tele21.html#BickleMMM04,https://doi.org/10.1016/S0736-5853(03)00054-6 +Patrick Chin-Hooi Soh,Parents vs peers' influence on teenagers' Internet addiction and risky online activities.,2018,35,Telematics and Informatics,1,db/journals/tele/tele35.html#SohCKA18,https://doi.org/10.1016/j.tele.2017.11.003 +Jia-Jia Sim,Understanding and predicting the motivators of mobile music acceptance - A multi-stage MRA-artificial neural network approach.,2014,31,Telematics and Informatics,4,db/journals/tele/tele31.html#SimTWOH14,https://doi.org/10.1016/j.tele.2013.11.005 +Leo W. Jeffres,The influence of expanding media menus on audience content selection.,2004,21,Telematics and Informatics,4,db/journals/tele/tele21.html#JeffresANL04,https://doi.org/10.1016/j.tele.2004.02.002 +Olumide Sunday Adewale,The generic architecture for data/internet telephony in Nigeria.,2003,20,Telematics and Informatics,4,db/journals/tele/tele20.html#AdewaleF03,https://doi.org/10.1016/S0736-5853(02)00023-0 +Wendy Van den Broeck,The promises of iDTV: Between push marketing and consumer needs.,2011,28,Telematics and Informatics,4,db/journals/tele/tele28.html#BroeckBP11,https://doi.org/10.1016/j.tele.2010.11.003 +Olivier Braet,Cooperation models for mobile television in Europe.,2008,25,Telematics and Informatics,3,db/journals/tele/tele25.html#BraetB08,https://doi.org/10.1016/j.tele.2007.03.003 +Harry Bouwman,A dynamic model of Cyber-entrepreneurship and cluster formation: applications in the United States and in the Low Countries.,2002,19,Telematics and Informatics,4,db/journals/tele/tele19.html#BouwmanH02,https://doi.org/10.1016/S0736-5853(01)00018-1 +Pieter Ballon,The effectiveness of involving users in digital innovation: Measuring the impact of living labs.,2018,35,Telematics and Informatics,5,db/journals/tele/tele35.html#BallonHS18,https://doi.org/10.1016/j.tele.2018.02.003 +Jieun Yu,User acceptance of media tablets: An empirical examination of perceived value.,2017,34,Telematics and Informatics,4,db/journals/tele/tele34.html#YuLHZ17,https://doi.org/10.1016/j.tele.2015.11.004 +Orhan Dagli,Consumer preferences for improvements in mobile telecommunication services.,2016,33,Telematics and Informatics,1,db/journals/tele/tele33.html#DagliJ16,https://doi.org/10.1016/j.tele.2015.07.002 +Jan Servaes,Introduction to 'Green ICT'.,2012,29,Telematics and Informatics,4,db/journals/tele/tele29.html#Servaes12a,https://doi.org/10.1016/j.tele.2012.05.001 +Bing Zhang,Understanding impact of convergence on broadband industry regulation: a case study of the United States.,2002,19,Telematics and Informatics,1,db/journals/tele/tele19.html#Zhang02,https://doi.org/10.1016/S0736-5853(01)00015-6 +Filipe Sá,Model for the quality of local government online services.,2017,34,Telematics and Informatics,5,db/journals/tele/tele34.html#SaRGC17,https://doi.org/10.1016/j.tele.2016.09.002 +Shin-Il Moon,A normative approach to reducing illegal music downloading: The persuasive effects of normative message framing.,2015,32,Telematics and Informatics,1,db/journals/tele/tele32.html#MoonKFS15,https://doi.org/10.1016/j.tele.2014.06.003 +Shah Jahan Miah,On-Cloud Healthcare Clinic: An e-health consultancy approach for remote communities in a developing country.,2017,34,Telematics and Informatics,1,db/journals/tele/tele34.html#MiahHG17,https://doi.org/10.1016/j.tele.2016.05.008 +Karol Jakubowicz,"Community media: ""Flavour of the decade"" worldwide. A keynote address at the AMARC Europe Conference.",2010,27,Telematics and Informatics,2,db/journals/tele/tele27.html#Jakubowicz10,https://doi.org/10.1016/j.tele.2009.06.007 +Christos Bouras,Efficient web-based open and distance learning services.,2000,17,Telematics and Informatics,2,db/journals/tele/tele17.html#BourasDGGSSTT00,https://doi.org/10.1016/S0736-5853(00)00012-5 +Seyed Peyman Shariatpanahi,Assessing the effectiveness of disease awareness programs: Evidence from Google Trends data for the world awareness dates.,2017,34,Telematics and Informatics,7,db/journals/tele/tele34.html#ShariatpanahiJS17,https://doi.org/10.1016/j.tele.2017.03.007 +Kenneth C. C. Yang,Exploring factors affecting the adoption of mobile commerce in Singapore.,2005,22,Telematics and Informatics,3,db/journals/tele/tele22.html#Yang05,https://doi.org/10.1016/j.tele.2004.11.003 +Sahar Afshan,Acceptance of mobile banking framework in Pakistan.,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#AfshanS16,https://doi.org/10.1016/j.tele.2015.09.005 +Choy-Har Wong,Mobile advertising: The changing landscape of the advertising industry.,2015,32,Telematics and Informatics,4,db/journals/tele/tele32.html#WongTTO15,https://doi.org/10.1016/j.tele.2015.03.003 +Siriginidi Subba Rao,Internet telephony in India.,2008,25,Telematics and Informatics,2,db/journals/tele/tele25.html#Rao08,https://doi.org/10.1016/j.tele.2006.04.003 +Xinping Shi,Online consumer review and group-buying participation: The mediating effects of consumer beliefs.,2017,34,Telematics and Informatics,5,db/journals/tele/tele34.html#ShiL17,https://doi.org/10.1016/j.tele.2016.12.001 +Jiyoung Cha,Does genre type influence choice of video platform? A study of college student use of internet and television for specific video genres.,2013,30,Telematics and Informatics,2,db/journals/tele/tele30.html#Cha13,https://doi.org/10.1016/j.tele.2012.09.003 +Stefania Milan,On the edge. AMARC Europe between 'movement entrepreneurs' and the grassroots. Notes from the Bucharest meeting.,2010,27,Telematics and Informatics,2,db/journals/tele/tele27.html#Milan10,https://doi.org/10.1016/j.tele.2009.06.002 +Ahmad A. Sharif,The use of online bulletin boards by females in the Gulf Cooperation Council Countries.,2010,27,Telematics and Informatics,1,db/journals/tele/tele27.html#SharifA10,https://doi.org/10.1016/j.tele.2009.03.001 +Robert G. Picard,Platform proliferation and its implications for domestic content policies.,2016,33,Telematics and Informatics,2,db/journals/tele/tele33.html#PicardDPP16,https://doi.org/10.1016/j.tele.2015.06.018 +Aindrila Chakraborty,Predictive models to measure the impact of fiber-optic broadband speeds on local towns and communities.,2018,35,Telematics and Informatics,5,db/journals/tele/tele35.html#ChakrabortyBMSK18,https://doi.org/10.1016/j.tele.2018.03.011 +Dong-Hee Shin,Ecological views of big data: Perspectives and issues.,2015,32,Telematics and Informatics,2,db/journals/tele/tele32.html#ShinC15,https://doi.org/10.1016/j.tele.2014.09.006 +Perin ünal,What installed mobile applications tell about their owners and how they affect users' download behavior.,2017,34,Telematics and Informatics,7,db/journals/tele/tele34.html#UnalTE17,https://doi.org/10.1016/j.tele.2017.05.005 +Isidora Milosevic,Facebook as virtual classroom - Social networking in learning and teaching among Serbian students.,2015,32,Telematics and Informatics,4,db/journals/tele/tele32.html#MilosevicZAM15,https://doi.org/10.1016/j.tele.2015.02.003 +Andraz Petrovcic,Mobile phone communication in social support networks of older adults in Slovenia.,2015,32,Telematics and Informatics,4,db/journals/tele/tele32.html#PetrovcicFVKD15,https://doi.org/10.1016/j.tele.2015.02.005 +Reza Tadayoni,Development of alternative broadband infrastructures - Case studies from Denmark.,2007,24,Telematics and Informatics,4,db/journals/tele/tele24.html#TadayoniS07,https://doi.org/10.1016/j.tele.2007.01.016 +Eunil Park,An Integrated Adoption Model of Mobile Cloud Services: Exploration of Key Determinants and Extension of Technology Acceptance Model.,2014,31,Telematics and Informatics,3,db/journals/tele/tele31.html#ParkK14,https://doi.org/10.1016/j.tele.2013.11.008 +Eun Yu,Impact of viewer engagement on gift-giving in live video streaming.,2018,35,Telematics and Informatics,5,db/journals/tele/tele35.html#YuJKJ18,https://doi.org/10.1016/j.tele.2018.03.014 +,Book Reviews.,1996,3,Object Oriented Systems,,db/journals/oos/oos3.html#X96a, +Evalyn N. Wafula,FOOM: a diagrammatic illustration of Object-Z specifications.,1996,3,Object Oriented Systems,,db/journals/oos/oos3.html#WafulaS96, +Mahesh H. Dodani,A reliable and flexible type system for object-oriented programming.,1996,3,Object Oriented Systems,,db/journals/oos/oos3.html#DodaniT96, +Jin Song Dong,An object-oriented denotational semantics of a small programming language.,1997,4,Object Oriented Systems,,db/journals/oos/oos4.html#DongDR97, +Steven D. Sheetz,Perceptual complexity of object oriented systems: a student view.,1996,3,Object Oriented Systems,,db/journals/oos/oos3.html#SheetzT96, +Brian Henderson-Sellers,Coupling and cohesion (towards a valid metrics suite for object-oriented analysis and design).,1996,3,Object Oriented Systems,,db/journals/oos/oos3.html#Henderson-SellersCG96, +Jan Bosch,Abstracting object state.,1997,4,Object Oriented Systems,,db/journals/oos/oos4.html#Bosch97, +Marc Van Limberghen,Encapsulation and composition as orthogonal operators on mixins: a solution to multiple inheritance problems.,1996,3,Object Oriented Systems,,db/journals/oos/oos3.html#LimberghenM96, +Jacques Malenfant,ObjVProlog-D: distributed object-oriented programming in logic.,1996,3,Object Oriented Systems,,db/journals/oos/oos3.html#MalenfantLV96, +,Book Reviews.,1996,3,Object Oriented Systems,,db/journals/oos/oos3.html#X96, +Russell Bradford,An implementation of Telos in Common Lisp.,1996,3,Object Oriented Systems,,db/journals/oos/oos3.html#Bradford96, +Yariv Aridor,SYMPAL: a software environment for implicit concurrent object-oriented programming.,1997,4,Object Oriented Systems,,db/journals/oos/oos4.html#AridorCY97, +Gail C. Murphy,On the use of static typing to support operations on frameworks.,1996,3,Object Oriented Systems,,db/journals/oos/oos3.html#MurphyN96, +Steven Butler,Defining composition operators for object interaction.,1998,5,Object Oriented Systems,,db/journals/oos/oos5.html#ButlerD98, +Martin Beckinsale,E-Business Among Ethnic Minority Businesses: The Case of Ethnic Entrepreneurs.,2009,1,IJEA,4,db/journals/ijea/ijea1.html#Beckinsale09,https://doi.org/10.4018/jea.2009100104 +M. Makris,Quantifying Factors Influencing the Adoption of Internet Banking Services in Greece.,2009,1,IJEA,1,db/journals/ijea/ijea1.html#MakrisKKKK09,https://doi.org/10.4018/jea.2009010102 +Ibrahim Arpaci,Innovation in Learning: Innovative Tools and Techniques for Learning.,2011,3,IJEA,1,db/journals/ijea/ijea3.html#ArpaciG11,https://doi.org/10.4018/jea.2011010104 +Poornima Narayan R.,An ICT Enabled Conceptual Framework for Determining Epidemic Susceptibility and Acute Type Response: An Exemplar from India.,2012,4,IJEA,4,db/journals/ijea/ijea4.html#RU12,https://doi.org/10.4018/jea.2012100104 +Paul Lam,Costs of E-Learning Support: An Investigation Across 139 Small Projects.,2009,1,IJEA,1,db/journals/ijea/ijea1.html#LamCM09,https://doi.org/10.4018/jea.2009010105 +Zeki özen,The Examination of User Habits through the Google Analytic Data of Academic Education Platforms.,2014,6,IJEA,2,db/journals/ijea/ijea6.html#OzenBB14,https://doi.org/10.4018/ijea.2014070103 +Ali Acilar,Factors Affecting the E-Commerce Adoption by Small Hotels: A Comparative Case Study.,2012,4,IJEA,1,db/journals/ijea/ijea4.html#AcilarK12,https://doi.org/10.4018/jea.2012010101 +Catherine Chen,The Validity and Reliability Study of a Revised Motivated Strategy for Learning Questionnaire (MSLQ) for Assessing Computer Software Learning Strategies.,2012,4,IJEA,2,db/journals/ijea/ijea4.html#ChenW12,https://doi.org/10.4018/jea.2012040103 +Arne Tauber,Requirements and Properties of Qualified Electronic Delivery Systems in eGovernment: An Austrian Experience.,2010,2,IJEA,1,db/journals/ijea/ijea2.html#Tauber10,https://doi.org/10.4018/jea.2010010104 +Mohammad Reza Hanafizadeh,The Pros and Cons of Digital Divide and E-Readiness Assessments.,2009,1,IJEA,3,db/journals/ijea/ijea1.html#HanafizadehHS09,https://doi.org/10.4018/jea.2009092901 +Henk Eijkman,E-Assessment as a Driver for Cultural Change in Network-Centric Learning.,2010,2,IJEA,3,db/journals/ijea/ijea2.html#EijkmanHS10,https://doi.org/10.4018/jea.2010070102 +Farhod P. Karimov,Factors Influencing E-Commerce Growth: A Comparative Study of Central Asian Transition Economies.,2011,3,IJEA,4,db/journals/ijea/ijea3.html#Karimov11,https://doi.org/10.4018/jea.2011100103 +Chorng-Shyong Ong,Evaluating the Effects of Personality on Continuance Intention of Online User: An Empirical Study of Online Forum System in Taiwan.,2018,10,IJEA,1,db/journals/ijea/ijea10.html#OngL18,https://doi.org/10.4018/IJEA.2018010103 +Burcu Adigüzel Mercangöz,Measuring Lecturers' Perception of Transition to E-Learning Systems and Digital Divide: A Case Study in School of Business Administration of Istanbul University.,2011,3,IJEA,1,db/journals/ijea/ijea3.html#MercangozCB11,https://doi.org/10.4018/jea.2011010102 +Li-Chun Huang,A Model of Leadership Behavior in Massively Multiplayer Online Role-Playing Games.,2015,7,IJEA,2,db/journals/ijea/ijea7.html#HuangY15,https://doi.org/10.4018/IJEA.2015070102 +Donald L. Amoroso,Measuring the Acceptance of Internet Technology by Consumers.,2009,1,IJEA,3,db/journals/ijea/ijea1.html#AmorosoH09,https://doi.org/10.4018/jea.2009092903 +Fatma önay Koçoglu Bakioglu,Observation of Success Status of Employees in E-Learning Courses in Organizations with Data Mining.,2017,9,IJEA,1,db/journals/ijea/ijea9.html#BakiogluEE17,https://doi.org/10.4018/IJEA.2017010104 +Tzu-Hong Lin,Why do People Continue to Play Social Network Game (SNG)?: An Empirical Study by Social and Emotional Perspectives.,2013,5,IJEA,4,db/journals/ijea/ijea5.html#LinLHHH13,https://doi.org/10.4018/ijea.2013100102 +Shawn Oluwafemi Ogunseye,Preventing Social Engineering and Espionage in Collaborative Knowledge Management Systems (KMSs).,2011,3,IJEA,4,db/journals/ijea/ijea3.html#OgunseyeFZ11,https://doi.org/10.4018/jea.2011100104 +Essa Alfahel,Teachers' Perceptions of the Interactive Boards for Teaching and Learning: The Case of Arab Teachers in Israel.,2012,4,IJEA,1,db/journals/ijea/ijea4.html#AlfahelDA12,https://doi.org/10.4018/jea.2012010103 +Khaled Saleh Al Omoush,The Adoption of Web-Based Supply Chain Management Applications: An Institutional Perspective.,2012,4,IJEA,3,db/journals/ijea/ijea4.html#OmoushA12,https://doi.org/10.4018/jea.2012070104 +Nazim U. Ahmed,Strategy and Structure in a Virtual Organization.,2010,2,IJEA,4,db/journals/ijea/ijea2.html#AhmedMS10,https://doi.org/10.4018/jea.2010100104 +Bhanu Bhakta Acharya,A Systematic Literature Review on Immigrants' Motivation for ICT Adoption and Use.,2016,8,IJEA,2,db/journals/ijea/ijea8.html#Acharya16,https://doi.org/10.4018/IJEA.2016070103 +Chengbo Wang,Exploration on E-learning Methods and Factors Hindering their Usage: An Empirical Case Investigation.,2009,1,IJEA,2,db/journals/ijea/ijea1.html#Wang09,https://doi.org/10.4018/IJEA.2009040102 +Abdulwasiu Kailani AbdulRahim,An Improved Dynavote E-Voting Protocol Implementation.,2011,3,IJEA,3,db/journals/ijea/ijea3.html#AbdulRahimFS11,https://doi.org/10.4018/IJEA.2011070104 +Daniel John Doiron,Internet Marketing and SMEs.,2009,1,IJEA,4,db/journals/ijea/ijea1.html#Doiron09,https://doi.org/10.4018/jea.2009100102 +Chia-Wen Tsai,Investigation of Student Learning Assistance through Online Academic Help-Seeking and a Mobile Application: A Quasi-Experimental Approach.,2015,7,IJEA,1,db/journals/ijea/ijea7.html#TsaiSF15,https://doi.org/10.4018/IJEA.2015010101 +Zerrin Ayvaz-Reis,Investigating the Attitude of Students Towards Online Learning.,2010,2,IJEA,4,db/journals/ijea/ijea2.html#Ayvaz-Reis10,https://doi.org/10.4018/jea.2010100103 +Rui K. Chen,Theorizing Intercultural Accommodation in Consumer E-Commerce.,2009,1,IJEA,3,db/journals/ijea/ijea1.html#ChenS09,https://doi.org/10.4018/jea.2009092904 +A. K. M. Najmul Islam,Understanding the Continued Usage Intention of Educators toward an e-Learning System.,2011,3,IJEA,2,db/journals/ijea/ijea3.html#Islam11,https://doi.org/10.4018/jea.2011040106 +Chia-Ping Yu,Knowledge Presentation in a Virtual Learning Group Context.,2016,8,IJEA,2,db/journals/ijea/ijea8.html#Yu16,https://doi.org/10.4018/IJEA.2016070101 +Paul Lam,Examining Diffusion and Sustainability of E-Learning Strategies through Weblog Data.,2010,2,IJEA,3,db/journals/ijea/ijea2.html#LamLYM10,https://doi.org/10.4018/jea.2010070104 +Vaggelis Saprikis,An Empirical Investigation of Internet Users' Perceptions towards National and International e-Shops.,2015,7,IJEA,2,db/journals/ijea/ijea7.html#Saprikis15,https://doi.org/10.4018/IJEA.2015070104 +Keith Thomas,Diffusion of E-Learning Practice in an Educational Institution: Organizational Learning Attributes and Capabilities.,2010,2,IJEA,3,db/journals/ijea/ijea2.html#ThomasLH10,https://doi.org/10.4018/jea.2010070101 +Wajeeh Daher,Wiki Interaction Tracks in Geometry Learning.,2010,2,IJEA,4,db/journals/ijea/ijea2.html#Daher10,https://doi.org/10.4018/jea.2010100102 +Pi-Fang Hsu,Evaluating Mobile Application Development Firms: Comparing Views of Advertisers and Advertising Agencies.,2014,6,IJEA,1,db/journals/ijea/ijea6.html#HsuLT14,https://doi.org/10.4018/ijea.2014010104 +Shinyi Lin,Perceived Innovation and Quick Response Codes in an Online-to-Offline E-Commerce Service Model.,2017,9,IJEA,2,db/journals/ijea/ijea9.html#LinCC17,https://doi.org/10.4018/IJEA.2017070101 +Vaggelis Saprikis,Consumers' Perceptions towards E-Shopping Advertisements and Promotional Actions in Social Networking Sites.,2013,5,IJEA,4,db/journals/ijea/ijea5.html#Saprikis13,https://doi.org/10.4018/ijea.2013100103 +Yi-Fen Chen,Who Likes to Meet Blind Dating on the Internet?,2013,5,IJEA,3,db/journals/ijea/ijea5.html#ChenTC13,https://doi.org/10.4018/ijea.2013070101 +Robert Williams 0002,Small Business Sales Growth and Internationalization Links to Web Site Functions in the United Kingdom.,2009,1,IJEA,4,db/journals/ijea/ijea1.html#WilliamsPTT09,https://doi.org/10.4018/jea.2009100103 +Alper özpinar,E-Commerce Training with Virtual Commerce Simulation.,2011,3,IJEA,2,db/journals/ijea/ijea3.html#OzpinarY11,https://doi.org/10.4018/jea.2011040103 +Thamer Alhussain,Employees' Perceptions of Biometric Technology Adoption in E-Government: An Exploratory Study in the Kingdom of Saudi Arabia.,2010,2,IJEA,1,db/journals/ijea/ijea2.html#AlhussainD10,https://doi.org/10.4018/jea.2010010105 +Jeanne C. Samuel,"From ""S"" to ""J"": A Theoretical Technology Adoption Rate Model.",2009,1,IJEA,2,db/journals/ijea/ijea1.html#Samuel09,https://doi.org/10.4018/jea.2009040104 +Sadia Jabeen,Students' Satisfaction from E-Learning System: A Case Study of Virtual University of Pakistan.,2014,6,IJEA,2,db/journals/ijea/ijea6.html#JabeenDS14,https://doi.org/10.4018/ijea.2014070101 +Salih Gümüs,Use of Virtual Classrooms in Online Learning Environments.,2011,3,IJEA,2,db/journals/ijea/ijea3.html#GumusO11,https://doi.org/10.4018/jea.2011040102 +Tonjia S. Coverdale,The Impact of In-Group Membership on e-Loyalty of Women Online Shoppers: An Application of the Social Identity Approach to Website Design.,2013,5,IJEA,1,db/journals/ijea/ijea5.html#CoverdaleW13,https://doi.org/10.4018/jea.2013010102 +Zeki özen,A Case Study on Improving E-Learning Services Using Google Analytics in Turkey.,2017,9,IJEA,1,db/journals/ijea/ijea9.html#OzenKE17,https://doi.org/10.4018/IJEA.2017010103 +Saleh Alwahaishi,Modeling the Determinants Affecting Consumers' Acceptance and Use of Information and Communications Technology.,2013,5,IJEA,2,db/journals/ijea/ijea5.html#AlwahaishiS13,https://doi.org/10.4018/jea.2013040103 +Shang Gao 0002,An Empirical Study on Users' Continuous Usage Intention of QR Code Mobile Payment Services in China.,2018,10,IJEA,1,db/journals/ijea/ijea10.html#GaoYGJ18,https://doi.org/10.4018/IJEA.2018010102 +Chia-Ping Yu,Applying a Security Management Mechanism to a System Development Lifecycle.,2018,10,IJEA,1,db/journals/ijea/ijea10.html#YuCL18,https://doi.org/10.4018/IJEA.2018010101 +Chris Evans,Interactive Self-Assessment Questions within a Virtual Environment.,2011,3,IJEA,2,db/journals/ijea/ijea3.html#EvansP11,https://doi.org/10.4018/jea.2011040101 +Stephen Asunka,Are We There Yet?: An Exploratory Predictive Study of Instructor Acceptance of an Educational Tablet Computer.,2016,8,IJEA,1,db/journals/ijea/ijea8.html#Asunka16,https://doi.org/10.4018/IJEA.2016010103 +Almaaf Bader Ali A,B2B E-Commerce Institutionalization in SMEs in Less Developed Countries: A Model and Instrument.,2013,5,IJEA,4,db/journals/ijea/ijea5.html#AMT13,https://doi.org/10.4018/ijea.2013100101 +Kamel Rouibah,User Acceptance of Internet Banking In Malaysia: Test of Three Competing Models.,2009,1,IJEA,1,db/journals/ijea/ijea1.html#RouibahTM09,https://doi.org/10.4018/jea.2009010101 +Fiona McMahon,Electronic Customer Relationship Management and SME Marketing Practice: Exploring Potential Synergies.,2009,1,IJEA,4,db/journals/ijea/ijea1.html#McMahonO09,https://doi.org/10.4018/jea.2009100105 +Indu Nair,Are ICT/Web 2.0 Tools Influencing Civic Engagement in Modern Democracies?: An Exploratory Analysis from India.,2012,4,IJEA,4,db/journals/ijea/ijea4.html#NairFU12,https://doi.org/10.4018/jea.2012100105 +Ashok Darisipudi,Usability Testing of an Interactive Online Movie Download Service: A HCI Study.,2013,5,IJEA,4,db/journals/ijea/ijea5.html#DarisipudiSZHS13,https://doi.org/10.4018/ijea.2013100104 +Pi-Fang Hsu,Developing a Hierarchy Model for Selection of Social Media Manager.,2015,7,IJEA,1,db/journals/ijea/ijea7.html#HsuST15,https://doi.org/10.4018/ijea.2015010102 +Almaaf Bader Ali A,Study on E-Commerce Adoption in SMEs Under the Institutional Perspective: The Case of Saudi Arabia.,2018,10,IJEA,1,db/journals/ijea/ijea10.html#AMT18,https://doi.org/10.4018/IJEA.2018010104 +Olusegun Folorunso,Towards Active Citizen-Centric E-Government Systems for Developing Countries.,2012,4,IJEA,2,db/journals/ijea/ijea4.html#FolorunsoCAH12,https://doi.org/10.4018/jea.2012040104 +Olusegun Folorunso,Knowledge Sharing Adoption Model Based on Artificial Neural Networks.,2010,2,IJEA,4,db/journals/ijea/ijea2.html#FolorunsoVOA10,https://doi.org/10.4018/jea.2010100101 +Adeyinka Tella,Determinants of E-Payment Systems Success: A User's Satisfaction Perspective.,2012,4,IJEA,3,db/journals/ijea/ijea4.html#Tella12,https://doi.org/10.4018/jea.2012070102 +Abbas Keramati,Role of Subjective Norms and Perceived Behavioral Control of Tax Payers in Acceptance of E-Tax Payment System.,2012,4,IJEA,3,db/journals/ijea/ijea4.html#KeramatiSAS12,https://doi.org/10.4018/jea.2012070101 +Thomas Rössler,Electronic Voting Using Identity Domain Separation and Hardware Security Modules.,2010,2,IJEA,1,db/journals/ijea/ijea2.html#Rossler10,https://doi.org/10.4018/jea.2010010103 +Hsien-Tang Ko,Determinants of Adopting Intelligent Broadband Services in Residential Community.,2012,4,IJEA,1,db/journals/ijea/ijea4.html#KoL12,https://doi.org/10.4018/jea.2012010102 +Tsui-Yii Shih,Determinates of Consumer Adoption Attitudes: An Empirical Study of Smart Home Services.,2013,5,IJEA,2,db/journals/ijea/ijea5.html#Shih13,https://doi.org/10.4018/jea.2013040104 +Yi-Fen Chen,Factors Influencing Consumer Adoption for Network Fellowship Auction in Taiwan.,2016,8,IJEA,1,db/journals/ijea/ijea8.html#ChenTT16,https://doi.org/10.4018/IJEA.2016010104 +Thurasamy Ramayah,Identifying Priority Using an Importance-Performance Matrix Analysis (IPMA): The Case of Internet Banking in Malaysia.,2014,6,IJEA,1,db/journals/ijea/ijea6.html#RamayahCRM14,https://doi.org/10.4018/ijea.2014010101 +Lee Wilson,Big Data Management Challenges in a Meteorological Organisation.,2012,4,IJEA,2,db/journals/ijea/ijea4.html#WilsonGW12,https://doi.org/10.4018/jea.2012040101 +Morten Hjelholt,Performative Actions in E-Adoption Processes: Strategic Efforts in a Local Government.,2015,7,IJEA,2,db/journals/ijea/ijea7.html#Hjelholt15,https://doi.org/10.4018/IJEA.2015070103 +Juha Kettunen,Intranet as a Quality Manual in Higher Education.,2011,3,IJEA,3,db/journals/ijea/ijea3.html#Kettunen11,https://doi.org/10.4018/jea.2011070103 +Ibrahim Arpaci,A Qualitative Study on the Adoption of Bring Your Own Device (BYOD) Practice.,2015,7,IJEA,2,db/journals/ijea/ijea7.html#Arpaci15,https://doi.org/10.4018/IJEA.2015070101 +Hany Abdelghaffar,Assessing Citizens Acceptance of Mobile Voting System in Developing Countries: The Case of Egypt.,2012,4,IJEA,2,db/journals/ijea/ijea4.html#AbdelghaffarG12,https://doi.org/10.4018/jea.2012040102 +Emad Ahmed Abu-Shanab,Gender and Age: Moderators or Predictors of E-Government Acceptance?,2015,7,IJEA,1,db/journals/ijea/ijea7.html#Abu-Shanab15,https://doi.org/10.4018/IJEA.2015010103 +Sebnem özdemir,An Analysis of the Education Category in App Markets.,2014,6,IJEA,2,db/journals/ijea/ijea6.html#OzdemirAA14,https://doi.org/10.4018/ijea.2014070102 +Chia-Wen Tsai,Improving Students' Computing Skills and Attitudes toward Learning via Web-Mediated Self-Regulated Learning with Feedback in an Online Problem-Solving Environment.,2011,3,IJEA,2,db/journals/ijea/ijea3.html#TsaiS11,https://doi.org/10.4018/jea.2011040105 +Nitish Singh,Web Site Localization Practices: Some Insights into the Localization Industry.,2009,1,IJEA,2,db/journals/ijea/ijea1.html#SinghSL09,https://doi.org/10.4018/jea.2009091803 +Adeyinka Tella,Determinants of Continuance Intention of Facebook Usage Among Library and Information Science Female Undergraduates in Selected Nigerian Universities.,2017,9,IJEA,2,db/journals/ijea/ijea9.html#TellaB17,https://doi.org/10.4018/IJEA.2017070104 +Fahri Unsal,Trust in E-Commerce: Social Networks vs. Institutional Credibility.,2011,3,IJEA,4,db/journals/ijea/ijea3.html#UnsalKE11,https://doi.org/10.4018/jea.2011100101 +Pi-Fang Hsu,Optimal Selection of Korean Dramas for Commercial TV Stations in Taiwan by Using the AHP.,2013,5,IJEA,2,db/journals/ijea/ijea5.html#HsuLT13,https://doi.org/10.4018/jea.2013040102 +Badreya Al-Jenaibi,Satisfying Public Relations: The Promise of Social Media in the UAE.,2013,5,IJEA,1,db/journals/ijea/ijea5.html#Al-Jenaibi13,https://doi.org/10.4018/jea.2013010101 +Po-Chien Chang,Relationships between Individuals' Convergence Readiness and Performance in Using Mobile Phones.,2016,8,IJEA,1,db/journals/ijea/ijea8.html#Chang16,https://doi.org/10.4018/IJEA.2016010102 +Ali Bayir,Determination of Voting Tendencies in Turkey through Data Mining Algorithms.,2017,9,IJEA,1,db/journals/ijea/ijea9.html#BayirOG17,https://doi.org/10.4018/IJEA.2017010105 +Geoffrey Roulet,Supporting Online Collaborative Mathematical Exploration: Studying the Development of Collective Knowledge within Math-Towers.,2011,3,IJEA,2,db/journals/ijea/ijea3.html#Roulet11,https://doi.org/10.4018/jea.2011040104 +Mohammad Reza Hanafizadeh,Digital Divide and e-Readiness: Trends and Gaps.,2013,5,IJEA,3,db/journals/ijea/ijea5.html#HanafizadehHB13,https://doi.org/10.4018/ijea.2013070103 +Peter Woodhead,Digital Natives and H1N1: How Adversity Can Drive Change.,2010,2,IJEA,3,db/journals/ijea/ijea2.html#WoodheadK10,https://doi.org/10.4018/jea.2010070105 +Tao Zhou 0007,Examining Mobile Banking User Trust: A Tripartite Perspective.,2013,5,IJEA,3,db/journals/ijea/ijea5.html#Zhou13,https://doi.org/10.4018/ijea.2013070102 +Boumediene Ramdani,Information Systems Innovations Adoption and Diffusion Among SMEs: Current Status and Future Prospects.,2009,1,IJEA,1,db/journals/ijea/ijea1.html#RamdaniLK09,https://doi.org/10.4018/jea.2009010103 +T. Eugene Day,Discrete Event Simulation and Real Time Locating Systems: Technology Integration for Process Improvement.,2012,4,IJEA,4,db/journals/ijea/ijea4.html#DayBKR12,https://doi.org/10.4018/jea.2012100102 +Malgorzata Pankowska,MOOCs as Supplement of Informal Education.,2017,9,IJEA,1,db/journals/ijea/ijea9.html#Pankowska17,https://doi.org/10.4018/IJEA.2017010102 +Kiyana Zolfaghar,User Acceptance of Location-Based Mobile Advertising: An Empirical Study in Iran.,2010,2,IJEA,2,db/journals/ijea/ijea2.html#ZolfagharKR10,https://doi.org/10.4018/jea.2010040103 +Nesrin özsoy,The Effect of Online Collaboration Environment on Prospective Teachers' Attitude and the Evaluation of Their Opinions.,2011,3,IJEA,1,db/journals/ijea/ijea3.html#OzsoyAOY11,https://doi.org/10.4018/jea.2011010105 +Hany Abdelghaffar,The Use of Social Networks in Achieving e-Democracy in the Arab Spring Countries.,2016,8,IJEA,2,db/journals/ijea/ijea8.html#AbdelghaffarH16,https://doi.org/10.4018/IJEA.2016070102 +Sibylle Mabry,Driving IT Architecture Innovation: The Roles of Competing Organizational Cultures and Collaborating Upper Echelons.,2010,2,IJEA,2,db/journals/ijea/ijea2.html#Mabry10,https://doi.org/10.4018/jea.2010040101 +Fatih Gursul,Adoption of PBL to Online Environments: Student's Perspectives.,2010,2,IJEA,2,db/journals/ijea/ijea2.html#GursulKG10,https://doi.org/10.4018/jea.2010040102 +Christèle Joly,Impact of E-Adoption on Teaching and Learning in the Context of Teaching French.,2010,2,IJEA,3,db/journals/ijea/ijea2.html#JolyI10,https://doi.org/10.4018/jea.2010070103 +Pi-Fang Hsu,Evaluating the Virtual Products for Online Games via the Grey Relational Analysis.,2012,4,IJEA,3,db/journals/ijea/ijea4.html#HsuT12,https://doi.org/10.4018/jea.2012070103 +Hany Abdelghaffar,Exploring the Factors Affecting the Intention to Use C2C Auction Websites in Egypt.,2013,5,IJEA,2,db/journals/ijea/ijea5.html#AbdelghaffarM13,https://doi.org/10.4018/jea.2013040101 +Changsoo Sohn,Enablers for Patients to Adopt Web-Based Personal Health Records (PHR).,2016,8,IJEA,1,db/journals/ijea/ijea8.html#SohnY16,https://doi.org/10.4018/IJEA.2016010101 +Alina Christova,Future Developments of E-Modules: The Role of Interactive Tools and Multimedia in Teaching European Studies Online.,2011,3,IJEA,1,db/journals/ijea/ijea3.html#Christova11,https://doi.org/10.4018/jea.2011010103 +Quangdung Tran,An Assessment Method of the Integrated E-Commerce Readiness for Construction Organizations in Developing Countries.,2013,5,IJEA,1,db/journals/ijea/ijea5.html#TranHZ13,https://doi.org/10.4018/jea.2013010103 +Alireza Abroud,A Conceptual Framework for Online Stock Trading Service Adoption.,2013,5,IJEA,1,db/journals/ijea/ijea5.html#AbroudCM13,https://doi.org/10.4018/jea.2013010104 +Adeyinka Tella,An Evaluation of WebCT Course Content Management System at the University of Botswana.,2010,2,IJEA,2,db/journals/ijea/ijea2.html#TellaMMT10,https://doi.org/10.4018/jea.2010040104 +Sheila M. Smith,Social Commerce from a Theory of Planned Behavior Paradigm: An Analysis of Purchase Intention.,2013,5,IJEA,3,db/journals/ijea/ijea5.html#SmithZA13,https://doi.org/10.4018/ijea.2013070104 +Afzaal H. Seyal,Determinants of E-Banking Among Bruneian Corporate Customers: An Application of Theory of Planned Behavior.,2011,3,IJEA,4,db/journals/ijea/ijea3.html#Seyal11,https://doi.org/10.4018/jea.2011100102 +Malliga Marimuthu,Readiness to Adopt E-Business Among SMEs in Malaysia: Antecedents and Consequence.,2011,3,IJEA,3,db/journals/ijea/ijea3.html#MarimuthuORM11,https://doi.org/10.4018/jea.2011070101 +Tao Zhou 0007,The Effect of Social Support on Post-Adoption of Mobile SNS.,2017,9,IJEA,2,db/journals/ijea/ijea9.html#Zhou17,https://doi.org/10.4018/IJEA.2017070102 +Elise McAuley,Implementing Scanned Medical Record Systems in Australia: A Structured Case Study on Envisioned Changes to Elective Admissions Process in a Victorian Hospital.,2012,4,IJEA,4,db/journals/ijea/ijea4.html#McAuleyUK12,https://doi.org/10.4018/jea.2012100103 +Sinawong Sang,Adoption of E-Government Services: The Case of Electronic Approval System.,2009,1,IJEA,2,db/journals/ijea/ijea1.html#SangLL09,https://doi.org/10.4018/jea.2009040101 +Sim Chia Hua,Determinants of E-Commerce Adoption Among Small and Medium-Sized Enterprises in Malaysia.,2009,1,IJEA,4,db/journals/ijea/ijea1.html#HuaRT09,https://doi.org/10.4018/jea.2009100101 +Renato Iannella,Towards E-Society Policy Interoperability for Social Web Networks.,2010,2,IJEA,1,db/journals/ijea/ijea2.html#Iannella10,https://doi.org/10.4018/jea.2010010102 +Kun Chang Lee,Exploring Antecedents of Behavior Intention to Use Internet Banking in Korea: Adoption Perspective.,2009,1,IJEA,3,db/journals/ijea/ijea1.html#LeeC09,https://doi.org/10.4018/jea.2009092902 +M. Erdal Balaban,A Roadmap to Implement Rapid Transition as a Proposal of e-Learning Model.,2014,6,IJEA,2,db/journals/ijea/ijea6.html#BalabanK14,https://doi.org/10.4018/ijea.2014070104 +Ajit N. Babu,Utility of a Technology Allocation Matrix for Optimizing Telehealth Services: A Case Study of Telemonitoring in Congestive Heart Failure.,2012,4,IJEA,4,db/journals/ijea/ijea4.html#BabuRS12,https://doi.org/10.4018/jea.2012100101 +Staffan Björk,Not a Casual Review: Reading Jesper Juul's A Casual Revolution.,2011,11,Game Studies,2,db/journals/gamestudies/gamestudies11.html#Bjork11,http://gamestudies.org/1102/articles/bjork +Matt Barton,How's the Weather: Simulating Weather in Virtual Environments.,2008,8,Game Studies,1,db/journals/gamestudies/gamestudies8.html#Barton08,http://gamestudies.org/0801/articles/barton +Mikael Jakobsson,The Achievement Machine: Understanding Xbox 360 Achievements in Gaming Practices.,2011,11,Game Studies,1,db/journals/gamestudies/gamestudies11.html#Jakobsson11,http://gamestudies.org/1101/articles/jakobsson +Thaddeus Griebel,Self-Portrayal in a Simulated Life: Projecting Personality and Values in The Sims 2.,2006,6,Game Studies,1,db/journals/gamestudies/gamestudies6.html#Griebel06,http://gamestudies.org/0601/articles/griebel +Jesper Juul,Where the Action is.,2005,5,Game Studies,1,db/journals/gamestudies/gamestudies5.html#Juul05,http://www.gamestudies.org/0501/editorial/ +Markku Eskelinen,The Gaming Situation.,2001,1,Game Studies,1,db/journals/gamestudies/gamestudies1.html#Eskelinen01,http://www.gamestudies.org/0101/eskelinen/ +Johan Höglund,Electronic Empire: Orientalism Revisited in the Military Shooter.,2008,8,Game Studies,1,db/journals/gamestudies/gamestudies8.html#Hoglund08,http://gamestudies.org/0801/articles/hoeglund +Marie-Laure Ryan,Beyond Myth and Metaphor - The Case of Narrative in Digital Media.,2001,1,Game Studies,1,db/journals/gamestudies/gamestudies1.html#Ryan01,http://www.gamestudies.org/0101/ryan/ +Castulus Kolo,Living a Virtual Life: Social Dynamics of Online Gaming.,2004,4,Game Studies,1,db/journals/gamestudies/gamestudies4.html#KoloB04,http://www.gamestudies.org/0401/kolo/ +Frans Mäyrä,Gaming Culture at the Boundaries of Play.,2010,10,Game Studies,1,db/journals/gamestudies/gamestudies10.html#Mayra10,http://gamestudies.org/1001/articles/mayra +Timothy Burke,Can A Table Stand On One Leg? Critical and Ludological Thoughts on Star Wars: Galaxies.,2005,5,Game Studies,1,db/journals/gamestudies/gamestudies5.html#Burke05,http://www.gamestudies.org/0501/burke/ +Tom Tyler,A Procrustean Probe.,2008,8,Game Studies,2,db/journals/gamestudies/gamestudies8.html#Tyler08,http://gamestudies.org/0802/articles/tyler +Laurie Taylor,When Seams Fall Apart - Video Game Space and the Player.,2003,3,Game Studies,2,db/journals/gamestudies/gamestudies3.html#Taylor03,http://www.gamestudies.org/0302/taylor/ +Magy Seif El-Nasr,Dynamic Lighting for Tension in Games.,2007,7,Game Studies,1,db/journals/gamestudies/gamestudies7.html#El-NasrNKAZ07,http://gamestudies.org/0701/articles/elnasr_niedenthal_knez_almeida_zupko +Miguel Sicart,Defining Game Mechanics.,2008,8,Game Studies,2,db/journals/gamestudies/gamestudies8.html#Sicart08,http://gamestudies.org/0802/articles/sicart +Ian Bogost,Pretty Hate Machines: A Review of Gameplay Mode.,2012,12,Game Studies,1,db/journals/gamestudies/gamestudies12.html#Bogost12,http://gamestudies.org/1201/articles/bogost_book_review +Diane Carr,Play Dead - Genre and Affect in Silent Hill and Planescape Torment.,2003,3,Game Studies,1,db/journals/gamestudies/gamestudies3.html#Carr03,http://www.gamestudies.org/0301/carr/ +Alexander Wharton,Subjective Measures of the Influence of Music Customization on the Video Game Play Experience: A Pilot Study.,2011,11,Game Studies,2,db/journals/gamestudies/gamestudies11.html#WhartonC11,http://gamestudies.org/1102/articles/wharton_collins +Cynthia Haynes,Unplaying an Unreview of Critical Play.,2010,10,Game Studies,1,db/journals/gamestudies/gamestudies10.html#Haynes10,http://gamestudies.org/1001/articles/haynes +Tony Manninen,Interaction Forms and Communicative Actions in Multiplayer Games.,2003,3,Game Studies,1,db/journals/gamestudies/gamestudies3.html#Manninen03,http://www.gamestudies.org/0301/manninen/ +Miguel Sicart,http: //gamestudies.org/1103/articles/sicart_ap.,2011,11,Game Studies,3,db/journals/gamestudies/gamestudies11.html#Sicart11,http://gamestudies.org/1103/articles/sicart_ap +Benjamin Wai-ming Ng,Street Fighter and The King of Fighters in Hong Kong: A Study of Cultural Consumption and Localization of Japanese Games in an Asian Context.,2006,6,Game Studies,1,db/journals/gamestudies/gamestudies6.html#Ng06,http://gamestudies.org/0601/articles/ng +Christopher A. Paul,Optimizing Play: How Theorycraft Changes Gameplay and Design.,2011,11,Game Studies,2,db/journals/gamestudies/gamestudies11.html#Paul11,http://gamestudies.org/1102/articles/paul +Ragnhild Tronstad,The Productive Paradox of Critical Play.,2010,10,Game Studies,1,db/journals/gamestudies/gamestudies10.html#Tronstad10,http://gamestudies.org/1001/articles/tronstad +Adam W. Ruch,World of Warcraft: Service or Space?,2009,9,Game Studies,2,db/journals/gamestudies/gamestudies9.html#Ruch09,http://gamestudies.org/0902/articles/ruch +Kristine Jørgensen,Audio and Gameplay: An Analysis of PvP Battlegrounds in World of Warcraft.,2008,8,Game Studies,2,db/journals/gamestudies/gamestudies8.html#Jorgensen08,http://gamestudies.org/0802/articles/jorgensen +Faltin Karlsen,Quests in Context: A Comparative Analysis of Discworld and World of Warcraft.,2008,8,Game Studies,1,db/journals/gamestudies/gamestudies8.html#Karlsen08,http://gamestudies.org/0801/articles/karlsen +Stefan M. Grünvogel,Formal Models and Game Design.,2005,5,Game Studies,1,db/journals/gamestudies/gamestudies5.html#Grunvogel05,http://www.gamestudies.org/0501/gruenvogel/ +Celia Pearce,The Ending is Not Yet Written: A Conversation with Rand Miller.,2010,10,Game Studies,1,db/journals/gamestudies/gamestudies10.html#Pearce10,http://gamestudies.org/1001/articles/pearce_celia +Lisbeth Klastrup,The Worldness of EverQuest: Exploring a 21st Century Fiction.,2009,9,Game Studies,1,db/journals/gamestudies/gamestudies9.html#Klastrup09,http://gamestudies.org/0901/articles/klastrup +Mia Consalvo,Game analysis: Developing a methodological toolkit for the qualitative study of games.,2006,6,Game Studies,1,db/journals/gamestudies/gamestudies6.html#ConsalvoD06,http://gamestudies.org/0601/articles/consalvo_dutton +Eric Hayot,Interview with Brad McQuaid and Kevin McPherson.,2009,9,Game Studies,1,db/journals/gamestudies/gamestudies9.html#HayotW09b,http://gamestudies.org/0901/articles/interview_mcquaid_mcpherson +Eric Hayot,Towards a Critical Aesthetic of Virtual-World Geographies.,2009,9,Game Studies,1,db/journals/gamestudies/gamestudies9.html#HayotW09a,http://gamestudies.org/0901/articles/hayot_wesp_space +Jesper Juul,Games Telling stories? - A brief note on games and narratives.,2001,1,Game Studies,1,db/journals/gamestudies/gamestudies1.html#Juul01,http://www.gamestudies.org/0101/juul-gts/ +Stewart Woods,Loading the Dice: The Challenge of Serious Videogames.,2004,4,Game Studies,1,db/journals/gamestudies/gamestudies4.html#Woods04,http://www.gamestudies.org/0401/woods/ +Patrick W. Galbraith,Bishō**jo Games: 'Techno-Intimacy' and the Virtually Human in Japan.,2011,11,Game Studies,2,db/journals/gamestudies/gamestudies11.html#Galbraith11,http://gamestudies.org/1102/articles/galbraith +Celia Pearce,Game Noir - A Conversation with Tim Schafer.,2003,3,Game Studies,1,db/journals/gamestudies/gamestudies3.html#Pearce03,http://www.gamestudies.org/0301/pearce/ +Anja Rau,Review: Germans at Play.,2004,4,Game Studies,1,db/journals/gamestudies/gamestudies4.html#Rau04,http://www.gamestudies.org/0401/rau/ +Hector Rodriguez,The Playful and the Serious: An approximation to Huizinga's Homo Ludens.,2006,6,Game Studies,1,db/journals/gamestudies/gamestudies6.html#Rodriguez06,http://gamestudies.org/0601/articles/rodriges +Jan H. G. Klabbers,Tensions Between Meaning Construction and Persuasion in Games.,2011,11,Game Studies,2,db/journals/gamestudies/gamestudies11.html#Klabbers11,http://gamestudies.org/1102/articles/klabbers_book_review +Nick Yee,Befriending Ogres and Wood-Elves: Relationship Formation and The Social Architecture of Norrath.,2009,9,Game Studies,1,db/journals/gamestudies/gamestudies9.html#Yee09,http://gamestudies.org/0901/articles/yee +Raine Koskimaa,Reading Processes: Groundwork for Software Studies.,2011,11,Game Studies,2,db/journals/gamestudies/gamestudies11.html#Koskimaa11,http://gamestudies.org/1102/articles/koskima +Espen Aarseth,The Dungeon and the Ivory Tower: Vive La Difference ou Liaison Dangereuse?,2002,2,Game Studies,1,db/journals/gamestudies/gamestudies2.html#Aarseth02,http://www.gamestudies.org/0102/editorial.html +Mikael Jakobsson,Special Issue - Game Reward Systems.,2011,11,Game Studies,1,db/journals/gamestudies/gamestudies11.html#JakobssonS11,http://gamestudies.org/1101/articles/editorial_game_reward_systems +Chaim Gingold,What WarioWare can teach us about Game Design.,2005,5,Game Studies,1,db/journals/gamestudies/gamestudies5.html#Gingold05,http://www.gamestudies.org/0501/gingold/ +Ethan Ham,Rarity and Power: Balance in Collectible Object Games.,2010,10,Game Studies,1,db/journals/gamestudies/gamestudies10.html#Ham10,http://gamestudies.org/1001/articles/ham +Jan Van Looy,Uneasy lies the head that wears a crown - Interactivity and signification in Head Over Heels.,2003,3,Game Studies,2,db/journals/gamestudies/gamestudies3.html#Looy03,http://www.gamestudies.org/0302/vanlooy/ +John P. Davis,A survey method for assessing perceptions of a game: The consumer playtest in game design.,2005,5,Game Studies,1,db/journals/gamestudies/gamestudies5.html#DavisSP05,http://www.gamestudies.org/0501/davis_steury_pagulayan/ +Zach Whalen,Play Along - An Approach to Videogame Music.,2004,4,Game Studies,1,db/journals/gamestudies/gamestudies4.html#Whalen04,http://www.gamestudies.org/0401/whalen/ +Geoffrey Rockwell,The Leisure of Serious Games: A Dialogue.,2011,11,Game Studies,2,db/journals/gamestudies/gamestudies11.html#RockwellK11,http://gamestudies.org/1102/articles/geoffrey_rockwell_kevin_kee +Paul Williams,Balancing Risk and Reward to Develop an Optimal Hot-Hand Game.,2011,11,Game Studies,1,db/journals/gamestudies/gamestudies11.html#WilliamsNEE11,http://gamestudies.org/1101/articles/williams_nesbitt_eidels_elliott +Lars Konzack,The fun is back!.,2011,11,Game Studies,2,db/journals/gamestudies/gamestudies11.html#Konzack11,http://gamestudies.org/1102/articles/konzack +Torill Mortensen,Playing With Players - Potential Methodologies for MUDs.,2002,2,Game Studies,1,db/journals/gamestudies/gamestudies2.html#Mortensen02,http://www.gamestudies.org/0102/mortensen/ +Jonathan Dovey,Guest Editor's Introduction: Selected Papers from the Game Cultures Conference at Bristol 2001.,2002,2,Game Studies,2,db/journals/gamestudies/gamestudies2.html#Dovey02,http://www.gamestudies.org/0202/editorial/ +Richard Hall,Improving Computer Game Narrative Using Polti Ratios.,2008,8,Game Studies,1,db/journals/gamestudies/gamestudies8.html#HallB08,http://gamestudies.org/0801/articles/hall_baird +Alison Gazzard,Unlocking the Gameworld: The Rewards of Space and Time in Videogames.,2011,11,Game Studies,1,db/journals/gamestudies/gamestudies11.html#Gazzard11,http://gamestudies.org/1101/articles/gazzard_alison +Alexander R. Galloway,Social Realism in Gaming.,2004,4,Game Studies,1,db/journals/gamestudies/gamestudies4.html#Galloway04,http://www.gamestudies.org/0401/galloway/ +Kurt Squire,Cultural Framing of Computer/Video Games.,2002,2,Game Studies,1,db/journals/gamestudies/gamestudies2.html#Squire02,http://www.gamestudies.org/0102/squire/ +Marcus Schulzke,Moral Decision Making in Fallout.,2009,9,Game Studies,2,db/journals/gamestudies/gamestudies9.html#Schulzke09,http://gamestudies.org/0902/articles/schulzke +Jonas Heide Smith,The Games Economists Play - Implications of Economic Game Theory for the Study of Computer Games.,2006,6,Game Studies,1,db/journals/gamestudies/gamestudies6.html#Smith06,http://gamestudies.org/0601/articles/heide_smith +Hans Christian Arnseth,Learning to Play or Playing to Learn - A Critical Account of the Models of Communication Informing Educational Research on Computer Gameplay.,2006,6,Game Studies,1,db/journals/gamestudies/gamestudies6.html#Arnseth06,http://gamestudies.org/0601/articles/arnseth +Mark L. Sample,Virtual Torture: Videogames and the War on Terror.,2008,8,Game Studies,2,db/journals/gamestudies/gamestudies8.html#Sample08,http://gamestudies.org/0802/articles/sample +Andrew Hutchison,Making the Water Move: Techno-Historic Limits in the Game Aesthetics of Myst and Doom.,2008,8,Game Studies,1,db/journals/gamestudies/gamestudies8.html#Hutchison08,http://gamestudies.org/0801/articles/hutch +Celia Pearce,A Conversation with Raph Koster.,2005,5,Game Studies,1,db/journals/gamestudies/gamestudies5.html#Pearce05,http://www.gamestudies.org/0501/pearce/ +Nick Montfort,Combat in Context.,2006,6,Game Studies,1,db/journals/gamestudies/gamestudies6.html#Montfort06,http://gamestudies.org/0601/articles/montfort +Eric Hayot,Interview with Chris Lena.,2009,9,Game Studies,1,db/journals/gamestudies/gamestudies9.html#Hayot09,http://gamestudies.org/0901/articles/interview_lena +Bart Simon,Two Players: Biography and 'Played Sociality' in EverQuest.,2009,9,Game Studies,1,db/journals/gamestudies/gamestudies9.html#SimonBS09,http://gamestudies.org/0901/articles/simon_boudreau_silverman +Carly A. Kocurek,The Agony and the Exidy: A History of Video Game Violence and the Legacy of Death Race.,2012,12,Game Studies,1,db/journals/gamestudies/gamestudies12.html#Kocurek12,http://gamestudies.org/1201/articles/carly_kocurek +Eric Hayot,Special Issue - EQ: 10 Years Later.,2009,9,Game Studies,1,db/journals/gamestudies/gamestudies9.html#HayotW09,http://gamestudies.org/0901/articles/hayot_wesp +Jussi Parikka,Victorian Snakes? Towards A Cultural History of Mobile Games and the Experience of Movement.,2006,6,Game Studies,1,db/journals/gamestudies/gamestudies6.html#ParikkaS06,http://gamestudies.org/0601/articles/parikka_suominen +Graeme Kirkpatrick,Constitutive Tensions of Gaming's Field: UK gaming magazines and the formation of gaming culture 1981-1995.,2012,12,Game Studies,1,db/journals/gamestudies/gamestudies12.html#Kirkpatrick12,http://gamestudies.org/1201/articles/kirkpatrick +Olli Tapio Leino,What is Love?,2011,11,Game Studies,2,db/journals/gamestudies/gamestudies11.html#Leino11,http://gamestudies.org/1102/articles/leino +Michael Hitchens,A Survey of First-person Shooters and their Avatars.,2011,11,Game Studies,3,db/journals/gamestudies/gamestudies11.html#Hitchens11,http://gamestudies.org/1103/articles/michael_hitchens +James Newman,The Myth of the Ergodic Videogame - Some thoughts on player-character relationships in videogames.,2002,2,Game Studies,1,db/journals/gamestudies/gamestudies2.html#Newman02,http://www.gamestudies.org/0102/newman/ +Jonas Heide Smith,Tragedies of the ludic commons - understanding cooperation in multiplayer games.,2007,7,Game Studies,1,db/journals/gamestudies/gamestudies7.html#Smith07,http://gamestudies.org/0701/articles/smith +Craig A. Lindley,The Semiotics of Time Structure in Ludic Space As a Foundation for Analysis and Design.,2005,5,Game Studies,1,db/journals/gamestudies/gamestudies5.html#Lindley05,http://www.gamestudies.org/0501/lindley/ +Aki Järvinen,Halo and the Anatomy of the FPS.,2002,2,Game Studies,1,db/journals/gamestudies/gamestudies2.html#Jarvinen02,http://www.gamestudies.org/0102/jarvinen/ +Bo Kampmann Walther,Playing and Gaming - Reflections and Classifications.,2003,3,Game Studies,1,db/journals/gamestudies/gamestudies3.html#Walther03,http://www.gamestudies.org/0301/walther/ +Aki Järvinen,A Meaningful Read: Rules of Play reviewed.,2004,4,Game Studies,1,db/journals/gamestudies/gamestudies4.html#Jarvinen04,http://www.gamestudies.org/0401/jarvinen/ +Jesper Juul,The repeatedly lost art of studying games.,2001,1,Game Studies,1,db/journals/gamestudies/gamestudies1.html#Juul01a,http://www.gamestudies.org/0101/juul-review/ +Paul Martin 0003,The Pastoral and the Sublime in Elder Scrolls IV: Oblivion.,2011,11,Game Studies,3,db/journals/gamestudies/gamestudies11.html#Martin11,http://gamestudies.org/1103/articles/martin +Laura Ermi,Player-Centred Game Design: Experiences in Using Scenario Study to Inform Mobile Game Design.,2005,5,Game Studies,1,db/journals/gamestudies/gamestudies5.html#ErmiM05,http://www.gamestudies.org/0501/ermi_mayra/ +Tony Manninen,The Hunt for Collaborative War Gaming - CASE: Battlefield 1942.,2005,5,Game Studies,1,db/journals/gamestudies/gamestudies5.html#ManninenK05,http://www.gamestudies.org/0501/manninen_kujanpaa/ +Talmadge Wright,Creative Player Actions in FPS Online Video Games - Playing Counter-Strike.,2002,2,Game Studies,2,db/journals/gamestudies/gamestudies2.html#WrightBB02,http://www.gamestudies.org/0202/wright/ +Marc A. Ouellette,"I Hope You Never See Another Day Like This: Pedagogy and Allegory in ""Post 9/11"" Video Games.",2008,8,Game Studies,1,db/journals/gamestudies/gamestudies8.html#Ouellette08,http://gamestudies.org/0801/articles/ouellette_m +Helen W. Kennedy,Lara Croft: Feminist Icon or Cyberbimbo? On the Limits of Textual Analysis.,2002,2,Game Studies,2,db/journals/gamestudies/gamestudies2.html#Kennedy02,http://www.gamestudies.org/0202/kennedy/ +Douglas Wilson,Brutally Unfair Tactics Totally OK Now: On Self-Effacing Games and Unachievements.,2011,11,Game Studies,1,db/journals/gamestudies/gamestudies11.html#Wilson11,http://gamestudies.org/1101/articles/wilson +Tuur Ghys,Technology Trees: Freedom and Determinism in Historical Strategy Games.,2012,12,Game Studies,1,db/journals/gamestudies/gamestudies12.html#Ghys12,http://gamestudies.org/1201/articles/tuur_ghys +Stewart Woods,Congenial by Design: A Review of A Casual Revolution.,2011,11,Game Studies,2,db/journals/gamestudies/gamestudies11.html#Woods11,http://gamestudies.org/1102/articles/woods +Gonzalo Frasca,The Sims: Grandmothers are cooler than trolls.,2001,1,Game Studies,1,db/journals/gamestudies/gamestudies1.html#Frasca01,http://www.gamestudies.org/0101/frasca/ +Steven Malliet,Adapting the Principles of Ludology to the Method of Video Game Content Analysis.,2007,7,Game Studies,1,db/journals/gamestudies/gamestudies7.html#Malliet07,http://gamestudies.org/0701/articles/malliet +Ben Medler,Player Dossiers: Analyzing Gameplay Data as a Reward.,2011,11,Game Studies,1,db/journals/gamestudies/gamestudies11.html#Medler11,http://gamestudies.org/1101/articles/medler +Gonzalo Frasca,Sim Sin City: some thoughts about Grand Theft Auto 3.,2003,3,Game Studies,2,db/journals/gamestudies/gamestudies3.html#Frasca03,http://www.gamestudies.org/0302/frasca/ +Shuen-shing Lee,"I Lose, Therefore I Think - A Search for Contemplation amid Wars of Push-Button Glare.",2003,3,Game Studies,2,db/journals/gamestudies/gamestudies3.html#Lee03,http://www.gamestudies.org/0302/lee/ +Julian Kücklich,Perspectives of Computer Game Philology.,2003,3,Game Studies,1,db/journals/gamestudies/gamestudies3.html#Kucklich03,http://www.gamestudies.org/0301/kucklich/ +Charles Paulk,Signifying Play: The Sims and the Sociology of Interior Design.,2006,6,Game Studies,1,db/journals/gamestudies/gamestudies6.html#Paulk06,http://gamestudies.org/0601/articles/paulk +Vili Lehdonvirta,Virtual Worlds Don't Exist: Questioning the Dichotomous Approach in MMO Studies.,2010,10,Game Studies,1,db/journals/gamestudies/gamestudies10.html#Lehdonvirta10,http://gamestudies.org/1001/articles/lehdonvirta +Joris Dormans,On the Role of the Die: A brief ludologic study of pen-and-paper roleplaying games and their rules.,2006,6,Game Studies,1,db/journals/gamestudies/gamestudies6.html#Dormans06,http://gamestudies.org/0601/articles/dormans +Johannes Fromme,Computer Games as a Part of Children's Culture.,2003,3,Game Studies,1,db/journals/gamestudies/gamestudies3.html#Fromme03,http://www.gamestudies.org/0301/fromme/ +Edward Castronova,On Virtual Economies.,2003,3,Game Studies,2,db/journals/gamestudies/gamestudies3.html#Castronova03,http://www.gamestudies.org/0302/castronova/ +Celia Pearce,The Player with Many Faces - A Conversation with Louis Castle.,2002,2,Game Studies,2,db/journals/gamestudies/gamestudies2.html#Pearce02a,http://www.gamestudies.org/0202/pearce/ +Siong Choy Chong,Exploring Knowledge Management (KM) issues and KM performance outcomes: empirical evidence from Malaysian Multimedia Super Corridor companies.,2008,43,IJTM,4,db/journals/ijtm/ijtm43.html#ChongL08,https://doi.org/10.1504/IJTM.2008.020552 +Charles V. Trappey,Marketing intellectual property using electronic libraries: a survey of system-on-chip engineers and managers in Sweden and Taiwan.,2006,36,IJTM,4,db/journals/ijtm/ijtm36.html#TrappeySH06,https://doi.org/10.1504/IJTM.2006.010273 +Roel W. Schuring,Reinventing suggestion systems for continuous improvement.,2001,22,IJTM,4,db/journals/ijtm/ijtm22.html#SchuringL01,https://doi.org/10.1504/IJTM.2001.002969 +Frank Keuper,E-entrepreneurship strategies to overcome barriers to market entry - a system theory and cybernetics perspective.,2006,33,IJTM,4,db/journals/ijtm/ijtm33.html#KeuperBH06,https://doi.org/10.1504/IJTM.2006.009251 +Ingrid Matthai,Cross-border networking in the Saar-Lor-Lux Region? Risks and opportunities of regional economic policies.,2004,27,IJTM,5,db/journals/ijtm/ijtm27.html#Matthai04,https://doi.org/10.1504/IJTM.2004.004286 +Robert Phaal,Visualising strategy: a classification of graphical roadmap forms.,2009,47,IJTM,4,db/journals/ijtm/ijtm47.html#PhaalFP09,https://doi.org/10.1504/IJTM.2009.024431 +Caroline Mothe,Trust in European-Japanese R and D partnerships: a case study.,2002,24,IJTM,4,db/journals/ijtm/ijtm24.html#MotheI02,https://doi.org/10.1504/IJTM.2002.003064 +Yuan-Chieh Chang,Universities as patent- and licensing income-generating institutions: a survey in Taiwan.,2008,42,IJTM,3,db/journals/ijtm/ijtm42.html#ChangCYH08,https://doi.org/10.1504/IJTM.2008.018108 +Fernando G. Alberti,The entrepreneurial growth of firms located in clusters: a cross-case study.,2011,54,IJTM,1,db/journals/ijtm/ijtm54.html#AlbertiSTV11,https://doi.org/10.1504/IJTM.2011.038829 +Reuven R. Levary,Country attractiveness for foreign direct investment in e-commerce.,2004,27,IJTM,4,db/journals/ijtm/ijtm27.html#LevaryZ04,https://doi.org/10.1504/IJTM.2004.004274 +Alexander Bassen,Performance measurement of corporate venture capital - balanced scorecard in theory and practice.,2006,33,IJTM,4,db/journals/ijtm/ijtm33.html#BassenBFH06,https://doi.org/10.1504/IJTM.2006.009253 +Ana M. Romero-Martinez,The role of regional location in innovativeness.,2011,54,IJTM,1,db/journals/ijtm/ijtm54.html#Romero-MartinezO11,https://doi.org/10.1504/IJTM.2011.038831 +Marc Gruber,New ventures based on open innovation - an empirical analysis of start-up firms in embedded Linux.,2006,33,IJTM,4,db/journals/ijtm/ijtm33.html#GruberH06,https://doi.org/10.1504/IJTM.2006.009249 +Christian Jensen,"Narrating the Triple Helix concept in ""weak"" regions: lessons from Sweden.",2004,27,IJTM,5,db/journals/ijtm/ijtm27.html#JensenT04,https://doi.org/10.1504/IJTM.2004.004287 +Adamantia G. Pateli,Governance contingencies for strategic technology alliances: a case in wireless business.,2007,40,IJTM,4,db/journals/ijtm/ijtm40.html#PateliG07,https://doi.org/10.1504/IJTM.2007.015755 +Bhaskar Prasad,Top management team advice-seeking and environmental competitiveness impacts on technological innovation.,2015,69,IJTM,1,db/journals/ijtm/ijtm69.html#PrasadM15,https://doi.org/10.1504/IJTM.2015.071032 +Ferdinando Chiaromonte,Innovation and R and D management: are new paradigms observable?,2002,23,IJTM,5,db/journals/ijtm/ijtm23.html#Chiaromonte02,https://doi.org/10.1504/IJTM.2002.003016 +Jie Yang,The determinants of corporate growth: evidence from Chinese high technology firms.,2011,56,IJTM,1,db/journals/ijtm/ijtm56.html#Yang11,https://doi.org/10.1504/IJTM.2011.042461 +Barry Shore,Maintaining funding in large-scale international science projects.,2004,27,IJTM,4,db/journals/ijtm/ijtm27.html#ShoreC04,https://doi.org/10.1504/IJTM.2004.004106 +C. S. Tang,Formation of a generic technique for manufacturing systems monitoring.,2007,38,IJTM,4,db/journals/ijtm/ijtm38.html#TangCY07,https://doi.org/10.1504/IJTM.2007.013408 +Theresa Michl,Managing strategic ambidexterity: the spin-along approach.,2013,61,IJTM,1,db/journals/ijtm/ijtm61.html#MichlGP13,https://doi.org/10.1504/IJTM.2013.050243 +Timo Kaski,Measuring product structures to improve demand-supply chain efficiency.,2002,23,IJTM,6,db/journals/ijtm/ijtm23.html#KaskiH02,https://doi.org/10.1504/IJTM.2002.003027 +Harry Nyström,From low tech to high tech: product development strategies for finding new markets and technologies.,2002,23,IJTM,5,db/journals/ijtm/ijtm23.html#NystromL02,https://doi.org/10.1504/IJTM.2002.003020 +Goery Delacote,Apoptosis: the way for science centres to thrive.,2003,25,IJTM,5,db/journals/ijtm/ijtm25.html#Delacote03,https://doi.org/10.1504/IJTM.2003.003106 +Karl-Heinz Leitner,The effect of intellectual capital on product innovativeness in SMEs.,2011,53,IJTM,1,db/journals/ijtm/ijtm53.html#Leitner11,https://doi.org/10.1504/IJTM.2011.037235 +Li-Hsing Ho,The effects of government SMS in Taiwan.,2010,51,IJTM,1,db/journals/ijtm/ijtm51.html#HoCCL10,https://doi.org/10.1504/IJTM.2010.033126 +Kathryn Cormican,A collaborative knowledge management tool for product innovation management.,2003,26,IJTM,1,db/journals/ijtm/ijtm26.html#CormicanO03,https://doi.org/10.1504/IJTM.2003.003144 +Ming Qi,The diffusion pattern of non-cash payments: evidence from China.,2016,70,IJTM,1,db/journals/ijtm/ijtm70.html#QiCR16,https://doi.org/10.1504/IJTM.2016.074652 +Eduardo Bueno Campos,Tangible slack versus intangible resources: the influence of technology slack and tacit knowledge on the capability of organisational learning to generate innovation and performance.,2010,49,IJTM,4,db/journals/ijtm/ijtm49.html#CamposASG10,https://doi.org/10.1504/IJTM.2010.030161 +Robert Huggins,Knowledge alliances and innovation performance: an empirical perspective on the role of network resources.,2012,57,IJTM,4,db/journals/ijtm/ijtm57.html#HugginsJ12,https://doi.org/10.1504/IJTM.2012.045547 +Carla C. J. M. Millar,Technology standards and increasing returns: Microsoft versus Nokia and Linux.,2010,49,IJTM,4,db/journals/ijtm/ijtm49.html#MillarMC10,https://doi.org/10.1504/IJTM.2010.030163 +Philippe Rauffet,Managing resource learning in distributed organisations with the organisational capability approach.,2016,70,IJTM,4,db/journals/ijtm/ijtm70.html#RauffetCB16,https://doi.org/10.1504/IJTM.2016.075902 +Ruey-Shyang Wu,A reference model and integration framework for building enterprise computing platform.,2007,38,IJTM,4,db/journals/ijtm/ijtm38.html#WuLYL07,https://doi.org/10.1504/IJTM.2007.013410 +Clare J. P. Farrukh,Valuing technology along a timeline of technological maturity.,2009,48,IJTM,1,db/journals/ijtm/ijtm48.html#FarrukhDJPP09,https://doi.org/10.1504/IJTM.2009.024599 +Marcus Matthias Keupp,How do foreign R and D units in China manage their Chinese R and D staff? An empirical exploration.,2011,56,IJTM,1,db/journals/ijtm/ijtm56.html#KeuppG11,https://doi.org/10.1504/IJTM.2011.042459 +Helen Niemann,The development of business method patenting in the logistics industry - insights from the case of intelligent sensor networks.,2013,61,IJTM,2,db/journals/ijtm/ijtm61.html#NiemannMW13,https://doi.org/10.1504/IJTM.2013.052174 +Brian Taylor,Survival of science centres in New Zealand: what we can learn.,2003,25,IJTM,5,db/journals/ijtm/ijtm25.html#Taylor03,https://doi.org/10.1504/IJTM.2003.003115 +Charles V. Trappey,Improving the global competitiveness of retailers using a cultural analysis of in-store digital innovations.,2016,70,IJTM,1,db/journals/ijtm/ijtm70.html#TrappeyTM16,https://doi.org/10.1504/IJTM.2016.074647 +Junmo Kim,Why 'design' does not work well for cluster policy: with the implications for Science and Technology (S and T) manpower policy.,2007,38,IJTM,3,db/journals/ijtm/ijtm38.html#KimY07,https://doi.org/10.1504/IJTM.2007.012716 +Matthew Paul Mount,Exploring the knowledge complexities of innovation intermediaries: the case of nanotechnology in the UK.,2015,69,IJTM,1,db/journals/ijtm/ijtm69.html#MountMF15,https://doi.org/10.1504/IJTM.2015.071029 +Ching-Sung Wu,The asymmetries in strategic alliances of MNEs subsidiaries in Taiwan.,2009,48,IJTM,3,db/journals/ijtm/ijtm48.html#WuLC09,https://doi.org/10.1504/IJTM.2009.024952 +Govindan Parayil,Industrial development and the dynamics of innovation in Hong Kong.,2004,27,IJTM,4,db/journals/ijtm/ijtm27.html#ParayilS04,https://doi.org/10.1504/IJTM.2004.004276 +Peter Cebon,Product modularity and the product life cycle: new dynamics in the interactions of product and process technologies.,2008,42,IJTM,4,db/journals/ijtm/ijtm42.html#CebonHS08,https://doi.org/10.1504/IJTM.2008.019381 +Eliezer Geisler,The metrics of technology evaluation: where we stand and where we should go from here.,2002,24,IJTM,4,db/journals/ijtm/ijtm24.html#Geisler02a,https://doi.org/10.1504/IJTM.2002.003060 +Riitta Smeds,Continuous learning in global product development: a cross-cultural comparison.,2001,22,IJTM,4,db/journals/ijtm/ijtm22.html#SmedsOC01,https://doi.org/10.1504/IJTM.2001.002970 +Nusa Fain,The effect of R and D-marketing integration on NPD success - the case of SMEs in the growing economy of Slovenia.,2011,56,IJTM,1,db/journals/ijtm/ijtm56.html#FainSD11,https://doi.org/10.1504/IJTM.2011.042458 +François Therin,Learning for innovation in high-technology small firms.,2010,50,IJTM,1,db/journals/ijtm/ijtm50.html#Therin10,https://doi.org/10.1504/IJTM.2010.031918 +André Spithoven,Open innovation practices and innovative performances: an international comparative perspective.,2013,62,IJTM,1,db/journals/ijtm/ijtm62.html#Spithoven13,https://doi.org/10.1504/IJTM.2013.053037 +Guus Berkhout,New ways of innovation: an application of the cyclic innovation model to the mobile telecom industry.,2007,40,IJTM,4,db/journals/ijtm/ijtm40.html#BerkhoutD07,https://doi.org/10.1504/IJTM.2007.015754 +Mariano Nieto-Antolín,Technological assets accumulation and organisational structure in Spanish telecommunications equipment manufacturing companies: a case study.,2004,27,IJTM,1,db/journals/ijtm/ijtm27.html#NietoP04,https://doi.org/10.1504/IJTM.2004.003880 +Rajneesh Narula,Technological catch-up and strategic technology partnering in developing countries.,2002,23,IJTM,6,db/journals/ijtm/ijtm23.html#NarulaS02,https://doi.org/10.1504/IJTM.2002.003028 +Lung-Far Hsieh,The buyer-supplier long-term partnership effects upon the buyer's operational performance in the Taiwan center-satellite factory system.,2004,28,IJTM,2,db/journals/ijtm/ijtm28.html#Hsieh04,https://doi.org/10.1504/IJTM.2004.005064 +Jian Chen,The determinants of the choice of innovation source for Chinese firms.,2011,53,IJTM,1,db/journals/ijtm/ijtm53.html#ChenGHZ11,https://doi.org/10.1504/IJTM.2011.037237 +Dilek Cetindamar,The diffusion of environmental technologies: the case of the Turkish fertiliser industry.,2003,26,IJTM,1,db/journals/ijtm/ijtm26.html#Cetindamar03,https://doi.org/10.1504/IJTM.2003.003145 +Hong Joo Lee,A study on the development methodology of the business model in ubiquitous technology.,2007,38,IJTM,4,db/journals/ijtm/ijtm38.html#LeeK07,https://doi.org/10.1504/IJTM.2007.013409 +Shuo She,The impact of KIBS on Japanese manufacturing corporations from the client-side point of view.,2012,57,IJTM,4,db/journals/ijtm/ijtm57.html#SheN12,https://doi.org/10.1504/IJTM.2012.045536 +Jie Yang,Enhancing the firm's innovation capability through knowledge management: a study of high technology firms in China.,2006,36,IJTM,4,db/journals/ijtm/ijtm36.html#YangRW06,https://doi.org/10.1504/IJTM.2006.010269 +Philippe Byosiere,Diffusion of organisational innovation: knowledge transfer through social networks.,2010,49,IJTM,4,db/journals/ijtm/ijtm49.html#ByosiereLVS10,https://doi.org/10.1504/IJTM.2010.030166 +Hyun Woo Park,The internal attributes of technology as determinants of economic valuation of technology.,2015,69,IJTM,2,db/journals/ijtm/ijtm69.html#ParkK15,https://doi.org/10.1504/IJTM.2015.071555 +Christopher Lettl,Learning from users for radical innovation.,2006,33,IJTM,1,db/journals/ijtm/ijtm33.html#LettlHG06,https://doi.org/10.1504/IJTM.2006.008190 +Saurav K. Dutta,A tale of two technologies: the financial chapter.,2008,42,IJTM,3,db/journals/ijtm/ijtm42.html#DuttaL08,https://doi.org/10.1504/IJTM.2008.018104 +Davide Aloini,Exploring the exploratory search for innovation: a structural equation modelling test for practices and performance.,2013,61,IJTM,1,db/journals/ijtm/ijtm61.html#AloiniM13,https://doi.org/10.1504/IJTM.2013.050242 +Clare J. P. Farrukh,Technology roadmapping: linking technology resources into business planning.,2003,26,IJTM,1,db/journals/ijtm/ijtm26.html#FarrukhPP03,https://doi.org/10.1504/IJTM.2003.003140 +Suodi Zhang,Instant messaging adoption in China: implications for young entrepreneurs.,2014,66,IJTM,4,db/journals/ijtm/ijtm66.html#ZhangGL14,https://doi.org/10.1504/IJTM.2014.064968 +Alessandro Sala,R and D networks: an evaluation framework.,2011,53,IJTM,1,db/journals/ijtm/ijtm53.html#SalaLV11,https://doi.org/10.1504/IJTM.2011.037236 +John Mylonakis,Functions and responsibilities of marketing auditors in measuring organisational performance.,2003,25,IJTM,8,db/journals/ijtm/ijtm25.html#Mylonakis03,https://doi.org/10.1504/IJTM.2003.003139 +Edmundas Kazimieras Zavadskas,Quantitative evaluation of the organisation of manufacturing and technological processes.,2009,48,IJTM,4,db/journals/ijtm/ijtm48.html#ZavadskasAP09,https://doi.org/10.1504/IJTM.2009.026693 +Ellen de Lange-Ros,Theory and practice of continuous improvement in shop-floor teams.,2001,22,IJTM,4,db/journals/ijtm/ijtm22.html#Lange-RosB01,https://doi.org/10.1504/IJTM.2001.002968 +Andrea Fernandez-Ribas,The role of national and regional innovation programmes in stimulating international cooperation in innovation.,2009,48,IJTM,4,db/journals/ijtm/ijtm48.html#Fernandez-RibasS09,https://doi.org/10.1504/IJTM.2009.026690 +Shih-Chia Chang,Aligning manufacturing capabilities with business strategy: an empirical study in high-tech industry.,2002,24,IJTM,1,db/journals/ijtm/ijtm24.html#ChangLWS02,https://doi.org/10.1504/IJTM.2002.003045 +Chinho Lin,A relational model of medical knowledge sharing and medical decision-making quality.,2008,43,IJTM,4,db/journals/ijtm/ijtm43.html#LinC08,https://doi.org/10.1504/IJTM.2008.020554 +Maria Olsson,Leadership style and action routines: best practice manufacturing and R and D projects.,2001,22,IJTM,4,db/journals/ijtm/ijtm22.html#OlssonW01,https://doi.org/10.1504/IJTM.2001.002967 +Marina Fiedler,Commercialisation of technology innovations: an empirical study on the influence of clusters and innovation networks.,2011,54,IJTM,4,db/journals/ijtm/ijtm54.html#FiedlerW11,https://doi.org/10.1504/IJTM.2011.041582 +Christina Raasch,The sticks and carrots of integrating users into product development.,2011,56,IJTM,1,db/journals/ijtm/ijtm56.html#Raasch11,https://doi.org/10.1504/IJTM.2011.042460 +Oliver Hamilton,The growth patterns of Canadian high-tech firms.,2002,24,IJTM,4,db/journals/ijtm/ijtm24.html#HamiltonSV02,https://doi.org/10.1504/IJTM.2002.003065 +Ian P. McCarthy,Technology management - a complex adaptive systems approach.,2003,25,IJTM,8,db/journals/ijtm/ijtm25.html#McCarthy03,https://doi.org/10.1504/IJTM.2003.003134 +Ville Brummer,A methodology for the identification of prospective collaboration networks in international R and D programmes.,2011,54,IJTM,4,db/journals/ijtm/ijtm54.html#BrummerSNL11,https://doi.org/10.1504/IJTM.2011.041580 +Martin Kloyer,Compensation preferences of R and D-suppliers: some empirical results.,2007,40,IJTM,4,db/journals/ijtm/ijtm40.html#KloyerHB07,https://doi.org/10.1504/IJTM.2007.015758 +Salem Y. Lakhal,The governance of international technology transfer: evidence from case-based analyses.,2009,48,IJTM,3,db/journals/ijtm/ijtm48.html#LakhalH09,https://doi.org/10.1504/IJTM.2009.024951 +Elie Geisler,Tacit and explicit knowledge: empirical investigation in an emergency regime.,2009,47,IJTM,4,db/journals/ijtm/ijtm47.html#Geisler09,https://doi.org/10.1504/IJTM.2009.024430 +Iuan-Yuan Lu,Intrafirm technology and knowledge transfer: a best practice perspective.,2010,49,IJTM,4,db/journals/ijtm/ijtm49.html#LuMW10,https://doi.org/10.1504/IJTM.2010.030162 +Kuo-Chang Ting,Why are bloggers willing to share their thoughts via travel blogs?,2014,64,IJTM,1,db/journals/ijtm/ijtm64.html#TingTH14,https://doi.org/10.1504/IJTM.2014.059237 +Robert E. McDonald,Technological innovations in hospitals: what kind of competitive advantage does adoption lead to?,2004,28,IJTM,1,db/journals/ijtm/ijtm28.html#McDonaldS04,https://doi.org/10.1504/IJTM.2004.005055 +Atsushi Inuzuka,Management by the cognitive range: a perspective on knowledge management.,2010,49,IJTM,4,db/journals/ijtm/ijtm49.html#Inuzuka10,https://doi.org/10.1504/IJTM.2010.030165 +Dion A. M. M. Metzemaekers,Critical success factors in technology management.,2000,19,IJTM,6,db/journals/ijtm/ijtm19.html#Metzemaekers00,https://doi.org/10.1504/IJTM.2000.002836 +Robert Phaal,A framework for supporting the management of technological knowledge.,2004,27,IJTM,1,db/journals/ijtm/ijtm27.html#PhaalFP04,https://doi.org/10.1504/IJTM.2004.003878 +Rob Raven,Transitions and strategic niche management: towards a competence kit for practitioners.,2010,51,IJTM,1,db/journals/ijtm/ijtm51.html#RavenBW10,https://doi.org/10.1504/IJTM.2010.033128 +Michael D. J. Clements,Socially shaping supply chain integration through learning.,2010,51,IJTM,1,db/journals/ijtm/ijtm51.html#ClementsS10,https://doi.org/10.1504/IJTM.2010.033130 +Umut Asan,Scenario-driven modular design in managing market uncertainty.,2008,42,IJTM,4,db/journals/ijtm/ijtm42.html#AsanPS08,https://doi.org/10.1504/IJTM.2008.019386 +Satoshi Yoshida,Effective reactions against disruptive innovations - the case of Japan's electronics industry.,2010,50,IJTM,2,db/journals/ijtm/ijtm50.html#Yoshida10,https://doi.org/10.1504/IJTM.2010.032269 +Carlos A. S. Passos,Improving university-industry partnership - the Brazilian experience through the scientific and technological development support program (PADCT III).,2004,27,IJTM,5,db/journals/ijtm/ijtm27.html#PassosTFVP04,https://doi.org/10.1504/IJTM.2004.004284 +Tae Kyung Sung,Incubators and business ventures in Korea: implications for manpower policy.,2007,38,IJTM,3,db/journals/ijtm/ijtm38.html#Sung07,https://doi.org/10.1504/IJTM.2007.012713 +Ronen Mir,Outdoor science centres.,2003,25,IJTM,5,db/journals/ijtm/ijtm25.html#Mir03,https://doi.org/10.1504/IJTM.2003.003108 +Paolo Neirotti,Is it all about size? Comparing organisational and environmental antecedents of IT assimilation in small and medium-sized enterprises.,2013,61,IJTM,1,db/journals/ijtm/ijtm61.html#NeirottiPR13,https://doi.org/10.1504/IJTM.2013.050245 +Alexander K. Arrow,Intangible asset deployment in technology-rich companies: how does innovation affect return on assets?,2002,24,IJTM,4,db/journals/ijtm/ijtm24.html#Arrow02,https://doi.org/10.1504/IJTM.2002.003061 +Eugenio Corti,Renewal strategies in the IPM Group: the role of the new research centre.,2002,23,IJTM,5,db/journals/ijtm/ijtm23.html#CortiSGR02,https://doi.org/10.1504/IJTM.2002.003021 +Jean-Jacques Chanaron,Technological management: a tentative research agenda.,2002,23,IJTM,6,db/journals/ijtm/ijtm23.html#ChanaronJS02,https://doi.org/10.1504/IJTM.2002.003029 +Rosa Grimaldi,Sectoral determinants of performance in collaborative R and D projects.,2003,25,IJTM,8,db/journals/ijtm/ijtm25.html#GrimaldiT03,https://doi.org/10.1504/IJTM.2003.003136 +Robert Hawley,Future skill requirements for UK engineers and technologists: a review of the current position.,2002,23,IJTM,6,db/journals/ijtm/ijtm23.html#HawleyR02,https://doi.org/10.1504/IJTM.2002.003030 +Bilge Erdogan,An innovative integrated framework towards effective collaboration environments in construction.,2010,50,IJTM,2,db/journals/ijtm/ijtm50.html#ErdoganABN10,https://doi.org/10.1504/IJTM.2010.032270 +Lynn D. Dierking,Science and technology centres - rich resources for free-choice learning in a knowledge-based society.,2003,25,IJTM,5,db/journals/ijtm/ijtm25.html#DierkingLB03,https://doi.org/10.1504/IJTM.2003.003112 +Luca Vincenzo Ballestra,An analysis of a model for the diffusion of engineering innovations under multi-firm competition.,2014,66,IJTM,4,db/journals/ijtm/ijtm66.html#BallestraGP14,https://doi.org/10.1504/IJTM.2014.064992 +C. Annique Un,R and D investment and entrepreneurial technological capabilities: existing capabilities as determinants of new capabilities.,2011,54,IJTM,1,db/journals/ijtm/ijtm54.html#UnM11,https://doi.org/10.1504/IJTM.2011.038828 +Peter Gammeltoft,Embedded flexible collaboration and development of local capabilities: a case study of the Indonesian electronics industry.,2003,26,IJTM,7,db/journals/ijtm/ijtm26.html#Gammeltoft03,https://doi.org/10.1504/IJTM.2003.003454 +Henry Chesbrough,Networks of innovation and modularity: a dynamic perspective.,2008,42,IJTM,4,db/journals/ijtm/ijtm42.html#ChesbroughP08,https://doi.org/10.1504/IJTM.2008.019383 +Tzu-An Chiang,An evaluation and enhancement approach of the carbon footprints-based environmentally sustainable service competitiveness for coffee shops.,2016,70,IJTM,1,db/journals/ijtm/ijtm70.html#ChiangW16,https://doi.org/10.1504/IJTM.2016.074646 +Wen-Hsien Tsai,The relationship between implementation variables and performance improvement of ERP systems.,2007,38,IJTM,4,db/journals/ijtm/ijtm38.html#TsaiFLCY07,https://doi.org/10.1504/IJTM.2007.013406 +Totti Könnölä,Foresight for European coordination: developing national priorities for the Forest-Based Sector Technology Platform.,2011,54,IJTM,4,db/journals/ijtm/ijtm54.html#KonnolaSB11,https://doi.org/10.1504/IJTM.2011.041583 +María Pilar Latorre-Martínez,Image-focused social media for a market analysis of tourism consumption.,2014,64,IJTM,1,db/journals/ijtm/ijtm64.html#Latorre-MartinezIP14,https://doi.org/10.1504/IJTM.2014.059234 +Marcela Miozzo,Networks and innovation in European construction: benefits from inter-organisational cooperation in a fragmented industry.,2004,27,IJTM,1,db/journals/ijtm/ijtm27.html#MiozzoD04,https://doi.org/10.1504/IJTM.2004.003882 +Sajed M. Abukhader,E-commerce and the environment: a gateway to the renewal of greening supply chains.,2004,28,IJTM,2,db/journals/ijtm/ijtm28.html#AbukhaderJ04,https://doi.org/10.1504/IJTM.2004.005066 +Victor Tang,International joint venture of two giants in the CRT industry: strategy analysis using system dynamics.,2002,23,IJTM,6,db/journals/ijtm/ijtm23.html#TangL02,https://doi.org/10.1504/IJTM.2002.003024 +J. David Roessner,A comparison of recent assessments of the high-tech competitiveness of nations.,2002,23,IJTM,6,db/journals/ijtm/ijtm23.html#RoessnerPNJ02,https://doi.org/10.1504/IJTM.2002.003025 +N. R. Srinivasa Raghavan,Object-oriented design and implementation of a web-enabled beer game for illustrating the bullwhip effect in supply chains.,2004,28,IJTM,2,db/journals/ijtm/ijtm28.html#RaghavanSR04,https://doi.org/10.1504/IJTM.2004.005061 +Hans Dietmar Burgel,Reorganisation and restructuring methods in R and D.,2007,40,IJTM,4,db/journals/ijtm/ijtm40.html#Burgel07,https://doi.org/10.1504/IJTM.2007.015753 +Dilupa Nakandala,Responses of successful local firms to changing foreign partnership characteristics: a model of dynamic technology management strategies.,2013,61,IJTM,2,db/journals/ijtm/ijtm61.html#NakandalaT13,https://doi.org/10.1504/IJTM.2013.052153 +Jai-Beom Kim,Innovation management and intellectual property in knowledge-oriented economies.,2006,36,IJTM,4,db/journals/ijtm/ijtm36.html#KimCC06,https://doi.org/10.1504/IJTM.2006.010268 +Eliezer Geisler,On the ubiquitous inadequacy of co-variation design in strategy research.,2002,23,IJTM,6,db/journals/ijtm/ijtm23.html#Geisler02,https://doi.org/10.1504/IJTM.2002.003026 +Vincent Cho,A study on the impact of Organisational Learning to the effectiveness of Electronic Document Management Systems.,2010,50,IJTM,2,db/journals/ijtm/ijtm50.html#Cho10,https://doi.org/10.1504/IJTM.2010.032272 +Jens Ove Riis,Orchestrating industrial development.,2002,23,IJTM,4,db/journals/ijtm/ijtm23.html#Riis02,https://doi.org/10.1504/IJTM.2002.003009 +Shuchih Ernest Chang,A virtual enterprise based information system architecture for the tourism industry.,2007,38,IJTM,4,db/journals/ijtm/ijtm38.html#ChangC07,https://doi.org/10.1504/IJTM.2007.013407 +Susan M. Stocklmayer,What makes a successful outreach program? An outline of the Shell Questacon Science Circus.,2003,25,IJTM,5,db/journals/ijtm/ijtm25.html#Stocklmayer03,https://doi.org/10.1504/IJTM.2003.003109 +Emiel F. M. Wubben,Profiting from external knowledge: the impact of different external knowledge acquisition strategies on innovation performance.,2015,69,IJTM,2,db/journals/ijtm/ijtm69.html#WubbenBKKO15,https://doi.org/10.1504/IJTM.2015.071552 +Marcus Wagner,Determinants of acquisition value: the role of target and acquirer characteristics.,2013,62,IJTM,1,db/journals/ijtm/ijtm62.html#Wagner13,https://doi.org/10.1504/IJTM.2013.053031 +John Cantwell,Innovation and location in the multinational firm.,2011,54,IJTM,1,db/journals/ijtm/ijtm54.html#CantwellZ11,https://doi.org/10.1504/IJTM.2011.038832 +Dilani Jayawarna,Application of Integrated Quality Management Systems to promote CI and learning in R and D organisations.,2003,26,IJTM,8,db/journals/ijtm/ijtm26.html#JayawarnaP03,https://doi.org/10.1504/IJTM.2003.003392 +Yusen Xu,Innovation catch-up enabled by the window of opportunity in high-velocity markets and the intrinsic capabilities of an enterprise: the case of HTC.,2015,69,IJTM,2,db/journals/ijtm/ijtm69.html#XuML15,https://doi.org/10.1504/IJTM.2015.071550 +Stefano Ronchi,Knowledge management in continuous product innovation: a contingent approach.,2003,26,IJTM,8,db/journals/ijtm/ijtm26.html#RonchiCC03,https://doi.org/10.1504/IJTM.2003.003395 +Hsien-Chang Kuo,Strategic change for the banking industry under financial deregulation: implications from Taiwan evidence.,2004,27,IJTM,4,db/journals/ijtm/ijtm27.html#Kuo04,https://doi.org/10.1504/IJTM.2004.004270 +Wen-Pai Wang,Determining product differentiation strategies under uncertain environment.,2010,50,IJTM,2,db/journals/ijtm/ijtm50.html#Wang10,https://doi.org/10.1504/IJTM.2010.032271 +Thierry Rayna,Open innovation 2.0: is co-creation the ultimate challenge?,2015,69,IJTM,1,db/journals/ijtm/ijtm69.html#RaynaS15,https://doi.org/10.1504/IJTM.2015.071030 +David William Birchall,Assessing the firm's strategic knowledge portfolio: a framework and methodology.,2002,24,IJTM,4,db/journals/ijtm/ijtm24.html#BirchallT02,https://doi.org/10.1504/IJTM.2002.003063 +Gilles Neubert,Collaboration and integration through information technologies in supply chains.,2004,28,IJTM,2,db/journals/ijtm/ijtm28.html#NeubertOB04,https://doi.org/10.1504/IJTM.2004.005065 +Yu-Chung Tsao,Production and payment policies for an imperfect manufacturing system with machine maintenance and credit policies.,2009,48,IJTM,2,db/journals/ijtm/ijtm48.html#Tsao09,https://doi.org/10.1504/IJTM.2009.024918 +Bronwyn Bevan,Science centre on a screen.,2003,25,IJTM,5,db/journals/ijtm/ijtm25.html#BevanW03,https://doi.org/10.1504/IJTM.2003.003111 +Woodrow W. Clark II,Investment and capitalisation of firms in the USA.,2002,24,IJTM,4,db/journals/ijtm/ijtm24.html#ClarkD02,https://doi.org/10.1504/IJTM.2002.003062 +Jeffrey James,The human development report 2001 and information technology for developing countries: an evaluation.,2002,23,IJTM,6,db/journals/ijtm/ijtm23.html#James02,https://doi.org/10.1504/IJTM.2002.003031 +Shunzhong Liu,Determinants of service innovative dimensions in Knowledge Intensive Business Services: evidence from PR China.,2009,48,IJTM,1,db/journals/ijtm/ijtm48.html#Liu09,https://doi.org/10.1504/IJTM.2009.024602 +Istemi S. Demirag,R and D management under short term pressures: a comparative study of the UK and Japan.,2007,40,IJTM,4,db/journals/ijtm/ijtm40.html#DemiragD07,https://doi.org/10.1504/IJTM.2007.015752 +Bilge Bilgen,Strategic tactical and operational production-distribution models: a review.,2004,28,IJTM,2,db/journals/ijtm/ijtm28.html#BilgenO04,https://doi.org/10.1504/IJTM.2004.005059 +Ben-Jeng Wang,Analysis of efficiency of lean production implemented in multi-national optic enterprises.,2008,43,IJTM,4,db/journals/ijtm/ijtm43.html#Wang08,https://doi.org/10.1504/IJTM.2008.020553 +Meng-Hsun Shih,A holistic knowledge sharing framework in high-tech firms: game and co-opetition perspectives.,2006,36,IJTM,4,db/journals/ijtm/ijtm36.html#ShihTWL06,https://doi.org/10.1504/IJTM.2006.010272 +Jasper Veldman,Applicability of the capability maturity model for engineer-to-order firms.,2009,48,IJTM,2,db/journals/ijtm/ijtm48.html#VeldmanK09,https://doi.org/10.1504/IJTM.2009.024917 +Theano Moussouri,Negotiated agendas: families in science and technology museums.,2003,25,IJTM,5,db/journals/ijtm/ijtm25.html#Moussouri03,https://doi.org/10.1504/IJTM.2003.003114 +Diana Angelis,An option model for R and D valuation.,2002,24,IJTM,1,db/journals/ijtm/ijtm24.html#Angelis02,https://doi.org/10.1504/IJTM.2002.003043 +Christopher Durugbo,Overcoming barriers to participation during requirements elicitation.,2014,66,IJTM,1,db/journals/ijtm/ijtm66.html#DurugboRP14,https://doi.org/10.1504/IJTM.2014.064025 +Puay Tang,Intellectual Property in collaborative projects: navigating the maze.,2009,47,IJTM,4,db/journals/ijtm/ijtm47.html#TangM09,https://doi.org/10.1504/IJTM.2009.024435 +Paul Shrivastava,Strategic technological innovation for sustainable development.,2016,70,IJTM,1,db/journals/ijtm/ijtm70.html#ShrivastavaII16,https://doi.org/10.1504/IJTM.2016.074672 +Ioanna Kastelli,Cooperative R and D as a means for knowledge creation. Experience from European publicly funded partnerships.,2004,27,IJTM,8,db/journals/ijtm/ijtm27.html#KastelliCI04,https://doi.org/10.1504/IJTM.2004.004990 +Gregory Tassey,Complex standards and innovation in the digital economy: the Internet Protocol.,2009,48,IJTM,4,db/journals/ijtm/ijtm48.html#TasseyGR09,https://doi.org/10.1504/IJTM.2009.026689 +Patricia Sandmeier,Customer integration strategies for innovation projects: anticipation and brokering.,2009,48,IJTM,1,db/journals/ijtm/ijtm48.html#Sandmeier09,https://doi.org/10.1504/IJTM.2009.024597 +Kah-Hin Chai,Bridging islands of knowledge: a framework of knowledge sharing mechanisms.,2003,25,IJTM,8,db/journals/ijtm/ijtm25.html#ChaiGS03,https://doi.org/10.1504/IJTM.2003.003133 +Benjamin Zimmer,A methodology for the development of innovation clusters: application in the healthcare sector.,2014,66,IJTM,1,db/journals/ijtm/ijtm66.html#ZimmerCYCPB14,https://doi.org/10.1504/IJTM.2014.064017 +Ricardo Jardim-Gonçalves,Enabling interoperability of STEP Application Protocols at meta-data and knowledge level.,2006,36,IJTM,4,db/journals/ijtm/ijtm36.html#Jardim-GoncalvesFS06,https://doi.org/10.1504/IJTM.2006.010275 +Juan-Luis Klein,Social economy-based local initiatives and social innovation: a Montreal case study.,2010,51,IJTM,1,db/journals/ijtm/ijtm51.html#KleinTB10,https://doi.org/10.1504/IJTM.2010.033132 +Jin Chen,A new measurement of intellectual capital and its impact on innovation performance in an open innovation paradigm.,2015,67,IJTM,1,db/journals/ijtm/ijtm67.html#ChenZW15,https://doi.org/10.1504/IJTM.2015.065885 +Shih-Chang Hung,The Taiwanese system of innovation in the information industry.,2003,26,IJTM,7,db/journals/ijtm/ijtm26.html#Hung03,https://doi.org/10.1504/IJTM.2003.003456 +Chang Liu 0005,Evaluation model for e-tourism product: a hidden Markov model-based algorithm.,2014,64,IJTM,1,db/journals/ijtm/ijtm64.html#LiuONBZ14,https://doi.org/10.1504/IJTM.2014.059235 +J. W. Stoelhorst,Transition strategies for managing technological discontinuities: lessons from the history of the semiconductor industry.,2002,23,IJTM,4,db/journals/ijtm/ijtm23.html#Stoelhorst02,https://doi.org/10.1504/IJTM.2002.003010 +John De La Mothe,Local knowledge and the strategy of constructing advantage: the role of community alliances.,2004,27,IJTM,8,db/journals/ijtm/ijtm27.html#MotheM04,https://doi.org/10.1504/IJTM.2004.004995 +Hans Pohl,Japanese automakers' approach to electric and hybrid electric vehicles: from incremental to radical innovation.,2012,57,IJTM,4,db/journals/ijtm/ijtm57.html#Pohl12,https://doi.org/10.1504/IJTM.2012.045546 +Anastasia Constantelou,Inter-country technological linkages in European Framework Programmes: a spur to European integration?,2004,27,IJTM,8,db/journals/ijtm/ijtm27.html#ConstantelouTC04,https://doi.org/10.1504/IJTM.2004.004993 +Harry Boer,From continuous improvement to continuous innovation: a (retro)(per)spective.,2003,26,IJTM,8,db/journals/ijtm/ijtm26.html#BoerG03,https://doi.org/10.1504/IJTM.2003.003391 +Sora Lee,Identification of a technological chance in product-service system using KeyGraph and text mining on business method patents.,2016,70,IJTM,4,db/journals/ijtm/ijtm70.html#LeeKPK16,https://doi.org/10.1504/IJTM.2016.075884 +Mats R. K. Lindstedt,Participatory development of a strategic product portfolio in a telecommunication company.,2008,42,IJTM,3,db/journals/ijtm/ijtm42.html#LindstedtLS08,https://doi.org/10.1504/IJTM.2008.018106 +Hans Wortmann,Product platform life cycles: a multiple case study.,2009,48,IJTM,2,db/journals/ijtm/ijtm48.html#WortmannA09,https://doi.org/10.1504/IJTM.2009.024915 +Jose Garcia-Quevedo,The heterogeneity of services and the differential effects on business and territorial innovation.,2011,54,IJTM,1,db/journals/ijtm/ijtm54.html#Garcia-QuevedoMS11,https://doi.org/10.1504/IJTM.2011.038830 +Chi-Cheng Huang,Using the fuzzy analytic network process for selecting technology R and D projects.,2011,53,IJTM,1,db/journals/ijtm/ijtm53.html#HuangC11,https://doi.org/10.1504/IJTM.2011.037239 +Oliver Gassmann,Extreme customer innovation in the front-end: learning from a new software paradigm.,2006,33,IJTM,1,db/journals/ijtm/ijtm33.html#GassmannSW06,https://doi.org/10.1504/IJTM.2006.008191 +Hans Berends,Thinking along: a process for tapping into knowledge across boundaries.,2011,53,IJTM,1,db/journals/ijtm/ijtm53.html#BerendsGDW11,https://doi.org/10.1504/IJTM.2011.037238 +Po-Young Chu,Externality evaluation: an empirical study of ITRI.,2009,48,IJTM,3,db/journals/ijtm/ijtm48.html#ChuLHL09,https://doi.org/10.1504/IJTM.2009.024949 +Harm-Jan Steenhuis,Agile manufacturing and technology transfer to industrialising countries.,2003,26,IJTM,1,db/journals/ijtm/ijtm26.html#SteenhuisB03,https://doi.org/10.1504/IJTM.2003.003141 +Suchul Lee,Measuring the change in knowledge sharing efficiency of virtual communities of practice: a case study.,2016,70,IJTM,1,db/journals/ijtm/ijtm70.html#LeeHS16,https://doi.org/10.1504/IJTM.2016.074675 +Bruno Motte,The One-Chip TV way.,2000,19,IJTM,6,db/journals/ijtm/ijtm19.html#Motte00,https://doi.org/10.1504/IJTM.2000.002837 +Barry Shore,Managing large-scale science and technology projects at the edge of knowledge: the Manhattan Project as a learning organisation.,2015,67,IJTM,1,db/journals/ijtm/ijtm67.html#ShoreZ15,https://doi.org/10.1504/IJTM.2015.065895 +Sheng-Hsun Hsu,A dyadic perspective on knowledge exchange.,2010,49,IJTM,4,db/journals/ijtm/ijtm49.html#HsuT10,https://doi.org/10.1504/IJTM.2010.030164 +Ajay Das,E-provider evaluation: an exploratory study.,2004,28,IJTM,1,db/journals/ijtm/ijtm28.html#Das04,https://doi.org/10.1504/IJTM.2004.005052 +Jose Manoel Carvalho de Mello,Networking for regional innovation and economic growth: the Brazilian Petropolis technopole.,2004,27,IJTM,5,db/journals/ijtm/ijtm27.html#MelloR04,https://doi.org/10.1504/IJTM.2004.004285 +Elisabeth Eppinger,Intellectual property management practices at small and medium-sized enterprises.,2013,61,IJTM,1,db/journals/ijtm/ijtm61.html#EppingerV13,https://doi.org/10.1504/IJTM.2013.050244 +Petteri Piippo,Development needs and means of product innovation management in Finnish manufacturing companies.,2002,23,IJTM,5,db/journals/ijtm/ijtm23.html#PiippoIKT02,https://doi.org/10.1504/IJTM.2002.003023 +Letizia Mortara,A toolbox of elements to build Technology Intelligence systems.,2009,47,IJTM,4,db/journals/ijtm/ijtm47.html#MortaraKPP09a,https://doi.org/10.1504/IJTM.2009.024433 +Jorgen Dahlgren,Modes and mechanisms of control in Multi-Project Organisations: the R and D case.,2010,50,IJTM,1,db/journals/ijtm/ijtm50.html#DahlgrenS10,https://doi.org/10.1504/IJTM.2010.031915 +Her-Jiun Sheu,Cost-system choice in a multidimensional knowledge space: traditional versus activity-based costing.,2009,48,IJTM,3,db/journals/ijtm/ijtm48.html#SheuP09,https://doi.org/10.1504/IJTM.2009.024953 +Phil Cooke,How benchmarking can lever cluster competitiveness.,2007,38,IJTM,3,db/journals/ijtm/ijtm38.html#Cooke07,https://doi.org/10.1504/IJTM.2007.012715 +Tugrul U. Daim,Exploring the role of technology evaluation in the competitiveness of US electronics manufacturing companies.,2009,48,IJTM,1,db/journals/ijtm/ijtm48.html#DaimK09,https://doi.org/10.1504/IJTM.2009.024601 +Mai Anttila,The role of marketing and innovation management in the Finnish electrical and electronics industry.,2002,23,IJTM,5,db/journals/ijtm/ijtm23.html#Anttila02,https://doi.org/10.1504/IJTM.2002.003018 +Les Tien-Shang Lee,The influences of leadership style and market orientation on export performance: an empirical study of small and medium enterprises in Taiwan.,2008,43,IJTM,4,db/journals/ijtm/ijtm43.html#Lee08,https://doi.org/10.1504/IJTM.2008.020558 +Can Uslay,Unique marketing challenges at the frontiers of technology: an integrated perspective.,2004,28,IJTM,1,db/journals/ijtm/ijtm28.html#UslayMC04,https://doi.org/10.1504/IJTM.2004.005050 +Gary K. Jones,Factors affecting foreign R and D location decisions: management and host policy implications.,2003,25,IJTM,8,db/journals/ijtm/ijtm25.html#JonesT03,https://doi.org/10.1504/IJTM.2003.003138 +Harri Haapasalo,Managing creativity: is it possible to control the birth of innovation in product design?,2002,24,IJTM,1,db/journals/ijtm/ijtm24.html#HaapasaloK02,https://doi.org/10.1504/IJTM.2002.003044 +Horst Geschka,The idea and project database of WELLA AG.,2002,23,IJTM,5,db/journals/ijtm/ijtm23.html#GeschkaLV02,https://doi.org/10.1504/IJTM.2002.003017 +Padmanav Acharya,Manpower shortage crisis in Indian information technology industry.,2007,38,IJTM,3,db/journals/ijtm/ijtm38.html#AcharyaM07,https://doi.org/10.1504/IJTM.2007.012712 +Hong Zhang,Social shopping communities as an emerging business model of youth entrepreneurship: exploring the effects of website characteristics.,2014,66,IJTM,4,db/journals/ijtm/ijtm66.html#ZhangLGC14,https://doi.org/10.1504/IJTM.2014.064987 +Eui-Sun Paik,Knowledge transfer of government research institute: the case of ETRI in Korea.,2009,47,IJTM,4,db/journals/ijtm/ijtm47.html#PaikPK09,https://doi.org/10.1504/IJTM.2009.024436 +Paulo N. Figueiredo,Learning processes features: how do they influence inter-firm differences in technological capability-accumulation paths and operational performance improvement? [1].,2003,26,IJTM,7,db/journals/ijtm/ijtm26.html#Figueiredo03,https://doi.org/10.1504/IJTM.2003.003451 +Jens Mueller,Social media platforms and technology education: Facebook on the way to graduate school.,2014,66,IJTM,4,db/journals/ijtm/ijtm66.html#MuellerPG14,https://doi.org/10.1504/IJTM.2014.065005 +Rick Middel,Action research in collaborative improvement.,2006,33,IJTM,1,db/journals/ijtm/ijtm33.html#MiddelCCBM06,https://doi.org/10.1504/IJTM.2006.008192 +Thomas Hering,Valuation of start-up internet companies.,2006,33,IJTM,4,db/journals/ijtm/ijtm33.html#HeringOS06,https://doi.org/10.1504/IJTM.2006.009252 +Francesco Schiavone,Extending the DART model for social media.,2014,66,IJTM,4,db/journals/ijtm/ijtm66.html#SchiavoneMA14,https://doi.org/10.1504/IJTM.2014.064967 +Patrick Dawson,Understanding social innovation: a provisional framework.,2010,51,IJTM,1,db/journals/ijtm/ijtm51.html#DawsonD10,https://doi.org/10.1504/IJTM.2010.033125 +Miriam Delgado-Verde,The moderating role of social networks within the radical innovation process: a multidimensionality of human capital-based analysis.,2015,69,IJTM,2,db/journals/ijtm/ijtm69.html#Delgado-VerdeCC15,https://doi.org/10.1504/IJTM.2015.071551 +Ricardo Alaez,Technology and inter-firm relationships in the automotive industry: the case of the Basque Country and Navarre (Spain).,2008,42,IJTM,3,db/journals/ijtm/ijtm42.html#AlaezBCL08,https://doi.org/10.1504/IJTM.2008.018107 +Henk Post,Built to last: why BAAN continues to be successful.,2000,19,IJTM,6,db/journals/ijtm/ijtm19.html#Post00,https://doi.org/10.1504/IJTM.2000.002838 +Carla C. J. M. Millar,Reverse knowledge and technology transfer: imbalances caused by cognitive barriers in asymmetric relationships.,2009,48,IJTM,3,db/journals/ijtm/ijtm48.html#MillarC09,https://doi.org/10.1504/IJTM.2009.024954 +Leo Tan Wee Hin,Science and technology centres as agents for promoting science culture in developing nations.,2003,25,IJTM,5,db/journals/ijtm/ijtm25.html#HinS03,https://doi.org/10.1504/IJTM.2003.003110 +Tobias Kollmann,What is e-entrepreneurship? - fundamentals of company founding in the net economy.,2006,33,IJTM,4,db/journals/ijtm/ijtm33.html#Kollmann06,https://doi.org/10.1504/IJTM.2006.009247 +Michael Stephan,Modularity in cooperative product development: the case of the MCC 'smart' car.,2008,42,IJTM,4,db/journals/ijtm/ijtm42.html#StephanPS08,https://doi.org/10.1504/IJTM.2008.019385 +Jianhuai Shi,Synchronised Design for X platform for performance measurement on the WWW.,2003,26,IJTM,1,db/journals/ijtm/ijtm26.html#ShiHM03,https://doi.org/10.1504/IJTM.2003.003142 +Doug Love,Evaluating approaches to product design and sourcing decisions in multinational companies.,2003,26,IJTM,1,db/journals/ijtm/ijtm26.html#LoveBT03,https://doi.org/10.1504/IJTM.2003.003147 +Oliver Gassmann,Negative side effects of customer integration.,2010,50,IJTM,1,db/journals/ijtm/ijtm50.html#GassmannKE10,https://doi.org/10.1504/IJTM.2010.031917 +Angeles Montoro-Sánchez,Editorial.,2011,54,IJTM,1,db/journals/ijtm/ijtm54.html#Montoro-SanchezS11,https://doi.org/10.1504/IJTM.2011.038882 +Russ Price,The role of service providers in establishing networked regional business accelerators in Utah.,2004,27,IJTM,5,db/journals/ijtm/ijtm27.html#Price04,https://doi.org/10.1504/IJTM.2004.004283 +Pier A. Abetti,General Electric at the crossroads: the end of the last US conglomerate?,2011,54,IJTM,4,db/journals/ijtm/ijtm54.html#Abetti11,https://doi.org/10.1504/IJTM.2011.041579 +Shinya Kinukawa,What determines the outcome of licensing deals in market for technology? Empirical analysis of sellers and buyers in biotechnology alliances.,2016,70,IJTM,4,db/journals/ijtm/ijtm70.html#KinukawaM16,https://doi.org/10.1504/IJTM.2016.075885 +Wen-Tsao Pan,Using data mining for service satisfaction performance analysis for mainland tourists in Taiwan.,2014,64,IJTM,1,db/journals/ijtm/ijtm64.html#Pan14,https://doi.org/10.1504/IJTM.2014.059236 +Johannes B. Crol,Creating support for a change in strategy.,2000,19,IJTM,6,db/journals/ijtm/ijtm19.html#Crol00,https://doi.org/10.1504/IJTM.2000.002833 +Tung-Hsiang Chou,eTOM and e-services based trouble-management operations: a large scale telecom case study.,2008,43,IJTM,4,db/journals/ijtm/ijtm43.html#ChouSL08,https://doi.org/10.1504/IJTM.2008.020557 +Moreno Muffatto,Product architecture and platforms: a conceptual framework.,2002,24,IJTM,1,db/journals/ijtm/ijtm24.html#MuffattoR02,https://doi.org/10.1504/IJTM.2002.003040 +Valerie Merindol,Dual-use as Knowledge-Oriented Policy: France during the 1990-2000s.,2010,50,IJTM,1,db/journals/ijtm/ijtm50.html#MerindolV10,https://doi.org/10.1504/IJTM.2010.031919 +Albert Antoine,Acquisitions and alliances in the aerospace industry: an unusual triad.,2003,25,IJTM,8,db/journals/ijtm/ijtm25.html#AntoineFMR03,https://doi.org/10.1504/IJTM.2003.003137 +G. Shainesh,Understanding buyer behaviour in software services - strategies for Indian firms.,2004,28,IJTM,1,db/journals/ijtm/ijtm28.html#Shainesh04,https://doi.org/10.1504/IJTM.2004.005056 +João Vaz Estêvão,Destination management systems: creation of value for visitors of tourism destinations.,2014,64,IJTM,1,db/journals/ijtm/ijtm64.html#EstevaoCT14,https://doi.org/10.1504/IJTM.2014.059233 +Yair Berson,Leadership style and quality climate perceptions: contrasting project vs. process environments.,2006,33,IJTM,1,db/journals/ijtm/ijtm33.html#BersonL06,https://doi.org/10.1504/IJTM.2006.008193 +Ron Sanchez,Modularity in the mediation of market and technology change.,2008,42,IJTM,4,db/journals/ijtm/ijtm42.html#Sanchez08,https://doi.org/10.1504/IJTM.2008.019380 +José F. B. Gieskes,Learning barriers in continuous product innovation.,2003,26,IJTM,8,db/journals/ijtm/ijtm26.html#GieskesH03,https://doi.org/10.1504/IJTM.2003.003394 +Gianluca Spina,A model of co-design relationships: definitions and contingencies.,2002,23,IJTM,4,db/journals/ijtm/ijtm23.html#SpinaVZ02,https://doi.org/10.1504/IJTM.2002.003012 +Umberto Del Canuto,Innovation management in Finmeccanica: experiencing a technology matrix.,2002,23,IJTM,5,db/journals/ijtm/ijtm23.html#Canuto02,https://doi.org/10.1504/IJTM.2002.003019 +King Lun Choy,An intelligent supplier relationship management system for selecting and benchmarking suppliers.,2003,26,IJTM,7,db/journals/ijtm/ijtm26.html#ChoyLL03,https://doi.org/10.1504/IJTM.2003.003453 +Caroline Mothe,Non-technological and technological innovations: do services differ from manufacturing? An empirical analysis of Luxembourg firms.,2012,57,IJTM,4,db/journals/ijtm/ijtm57.html#MotheN12,https://doi.org/10.1504/IJTM.2012.045544 +Lou Y. Liang,Grouping decomposition under constraints for design/build life cycle in project delivery system.,2009,48,IJTM,2,db/journals/ijtm/ijtm48.html#Liang09,https://doi.org/10.1504/IJTM.2009.024914 +Ignacio Tamayo-Torres,Innovation and operative real options as ways to affect organisational learning.,2010,49,IJTM,4,db/journals/ijtm/ijtm49.html#Tamayo-TorresGH10,https://doi.org/10.1504/IJTM.2010.030167 +Fu-Chiang Hsu,Technology and knowledge document cluster analysis for enterprise R and D strategic planning.,2006,36,IJTM,4,db/journals/ijtm/ijtm36.html#HsuTTHL06,https://doi.org/10.1504/IJTM.2006.010271 +Christian Serarols-Tarrés,The influence of entrepreneur characteristics on the success of pure dot.com firms.,2006,33,IJTM,4,db/journals/ijtm/ijtm33.html#Serarols-TarresPO06,https://doi.org/10.1504/IJTM.2006.009250 +Stine Jessen Haakonsson,Configuration of technology networks in the wind turbine industry. A comparative study of technology management models in European and Chinese lead firms.,2016,70,IJTM,4,db/journals/ijtm/ijtm70.html#HaakonssonK16,https://doi.org/10.1504/IJTM.2016.075892 +Ulrike Rehn,Transition of R and D and product development procedures after mergers and acquisitions: a case study of Intermagnetics General and Philips Healthcare.,2013,61,IJTM,2,db/journals/ijtm/ijtm61.html#RehnA13,https://doi.org/10.1504/IJTM.2013.052167 +Elena Moline,Innovation management: experience from the perspective of the electric power industry.,2002,23,IJTM,5,db/journals/ijtm/ijtm23.html#MolineF02,https://doi.org/10.1504/IJTM.2002.003022 +Pei-Shun Ho,Data interchange services: use of XML hub approach for the aerospace supply chain.,2004,28,IJTM,2,db/journals/ijtm/ijtm28.html#HoTT04,https://doi.org/10.1504/IJTM.2004.005063 +Terry Sloan,Learning as a competitive advantage: innovative training in the Australian aerospace industry.,2002,23,IJTM,4,db/journals/ijtm/ijtm23.html#SloanHB02,https://doi.org/10.1504/IJTM.2002.003014 +Ping Gao,R and D knowledge management in a telecommunications consortium: an actor-network perspective.,2006,36,IJTM,4,db/journals/ijtm/ijtm36.html#Gao06,https://doi.org/10.1504/IJTM.2006.010274 +Timothy M. Quey,Technology transformation and purposed play: model development and implications for high tech product development.,2004,28,IJTM,1,db/journals/ijtm/ijtm28.html#QueyM04,https://doi.org/10.1504/IJTM.2004.005053 +Alfred Shiu-ho Wong,Commitment and conflict management for relational marketing in China.,2002,24,IJTM,1,db/journals/ijtm/ijtm24.html#WongTP02,https://doi.org/10.1504/IJTM.2002.003046 +Hong Kim,Business incubators as economic development tools: rethinking models based on the Korea experience.,2006,33,IJTM,1,db/journals/ijtm/ijtm33.html#KimA06,https://doi.org/10.1504/IJTM.2006.008189 +Junmo Kim,Will technology fusion induce the paradigm change of university education?,2007,38,IJTM,3,db/journals/ijtm/ijtm38.html#Kim07,https://doi.org/10.1504/IJTM.2007.012711 +William H. A. Johnson,Organisational knowledge creating processes and the performance of university-industry collaborative R and D projects.,2004,27,IJTM,1,db/journals/ijtm/ijtm27.html#JohnsonJ04,https://doi.org/10.1504/IJTM.2004.003883 +John J. Liu,Performance improvement of third-party logistics providers - an integrated approach with a logistics information system.,2008,42,IJTM,3,db/journals/ijtm/ijtm42.html#LiuSCLK08,https://doi.org/10.1504/IJTM.2008.018105 +Denis Cormier,The impact of the web on information and communication modes: the case of corporate environmental disclosure.,2004,27,IJTM,4,db/journals/ijtm/ijtm27.html#CormierM04,https://doi.org/10.1504/IJTM.2004.004278 +Christian Hicks,Product life cycle management in engineer-to-order industries.,2009,48,IJTM,2,db/journals/ijtm/ijtm48.html#HicksM09,https://doi.org/10.1504/IJTM.2009.024913 +Chris Ivory,Who is the customer? Maintaining a customer orientation in long-term service-focused projects.,2009,48,IJTM,2,db/journals/ijtm/ijtm48.html#IvoryA09,https://doi.org/10.1504/IJTM.2009.024912 +Tony Kinder,Social innovation in services: technologically assisted new care models for people with dementia and their usability.,2010,51,IJTM,1,db/journals/ijtm/ijtm51.html#Kinder10,https://doi.org/10.1504/IJTM.2010.033131 +Xueli Huang,Innovation in China's high-tech industries: barriers and their impact on innovation performance.,2013,62,IJTM,1,db/journals/ijtm/ijtm62.html#HuangC13,https://doi.org/10.1504/IJTM.2013.053044 +Neil Jones,Developing and assessing radical technological changes: lessons from the PBX industry.,2002,23,IJTM,4,db/journals/ijtm/ijtm23.html#Jones02,https://doi.org/10.1504/IJTM.2002.003011 +Eleonora Pantano,Tourists' acceptance of advanced technology-based innovations for promoting arts and culture.,2014,64,IJTM,1,db/journals/ijtm/ijtm64.html#PantanoC14,https://doi.org/10.1504/IJTM.2014.059232 +Charles V. Trappey,A strategic product portfolio management methodology considering R and D resource constraints for engineering-to-order industries.,2009,48,IJTM,2,db/journals/ijtm/ijtm48.html#TrappeyTCK09,https://doi.org/10.1504/IJTM.2009.024919 +Charles Gregory,Global product development in the ceramic tiles industry.,2002,24,IJTM,1,db/journals/ijtm/ijtm24.html#GregoryS02,https://doi.org/10.1504/IJTM.2002.003041 +Sarah Caffyn,Fostering Continuous Improvement within new product development processes.,2003,26,IJTM,8,db/journals/ijtm/ijtm26.html#CaffynG03,https://doi.org/10.1504/IJTM.2003.003393 +Roel W. Schuring,The problem of using hierarchy for implementing organisational innovation.,2003,26,IJTM,8,db/journals/ijtm/ijtm26.html#SchuringHKRB03,https://doi.org/10.1504/IJTM.2003.003416 +Teresa L. Ju,A strategic examination of Radio Frequency Identification in Supply Chain Management.,2008,43,IJTM,4,db/journals/ijtm/ijtm43.html#JuJS08,https://doi.org/10.1504/IJTM.2008.020555 +Peter Galvin,A case study of knowledge protection and diffusion for innovation: managing knowledge in the mobile telephone industry.,2008,42,IJTM,4,db/journals/ijtm/ijtm42.html#GalvinR08,https://doi.org/10.1504/IJTM.2008.019384 +Pier A. Abetti,The globalisation of an Italian family company: Zobele Chemical Industries (1919-2006).,2007,40,IJTM,4,db/journals/ijtm/ijtm40.html#Abetti07,https://doi.org/10.1504/IJTM.2007.015756 +Paul Coughlan,Continuous improvement through collaborative action learning.,2001,22,IJTM,4,db/journals/ijtm/ijtm22.html#CoughlanHDD01,https://doi.org/10.1504/IJTM.2001.002965 +Bianca Piachaud,A study of shareholder reaction to technology motivated joint ventures and strategic alliances: strategic and financial perspectives.,2004,27,IJTM,4,db/journals/ijtm/ijtm27.html#PiachaudM04,https://doi.org/10.1504/IJTM.2004.004271 +Richard C. M. Yam,Enhancement of global competitiveness for Hong Kong/China manufacturing industries through i-agile virtual enterprising.,2003,26,IJTM,1,db/journals/ijtm/ijtm26.html#YamLST03,https://doi.org/10.1504/IJTM.2003.003146 +Sarah Guillou,Defense financing of private R and D: evidences from French firms.,2010,50,IJTM,1,db/journals/ijtm/ijtm50.html#GuillouL10,https://doi.org/10.1504/IJTM.2010.031920 +Alain Halley,The impact of the supply chain on core competencies and knowledge management: directions for future research.,2010,49,IJTM,4,db/journals/ijtm/ijtm49.html#HalleyNBRB10,https://doi.org/10.1504/IJTM.2010.030160 +Ian McLoughlin,'Last orders' at the rural 'cyber pub': a failure of 'social learning'?,2010,51,IJTM,1,db/journals/ijtm/ijtm51.html#McLoughlinP10,https://doi.org/10.1504/IJTM.2010.033129 +Inge Ivarsson,Learning from foreign TNCs: a study of technology upgrading by local suppliers to AB Volvo in Asia and Latin America.,2009,48,IJTM,1,db/journals/ijtm/ijtm48.html#IvarssonA09,https://doi.org/10.1504/IJTM.2009.024600 +Riitta Smeds,Bottom-up or top-down? Evolutionary change management in NPD processes.,2003,26,IJTM,8,db/journals/ijtm/ijtm26.html#SmedsHA03,https://doi.org/10.1504/IJTM.2003.003415 +Victor Konde,Internet development in Zambia: a triple helix of government-university-partners.,2004,27,IJTM,5,db/journals/ijtm/ijtm27.html#Konde04,https://doi.org/10.1504/IJTM.2004.004280 +Seung-Hoon Yoo,Information technology and economic development in Korea: a causality study.,2004,27,IJTM,1,db/journals/ijtm/ijtm27.html#YooK04,https://doi.org/10.1504/IJTM.2004.003881 +Frank Gertsen,How continuous improvement evolves as companies gain experience.,2001,22,IJTM,4,db/journals/ijtm/ijtm22.html#Gertsen01,https://doi.org/10.1504/IJTM.2001.002966 +Ole Broberg,Workspace design: a case study applying participatory design principles of healthy workplaces in an industrial setting.,2010,51,IJTM,1,db/journals/ijtm/ijtm51.html#Broberg10,https://doi.org/10.1504/IJTM.2010.033127 +Lambert T. Koch,Entrepreneurial success and low-budget internet exposure: the case of online-retailing.,2006,33,IJTM,4,db/journals/ijtm/ijtm33.html#KochS06,https://doi.org/10.1504/IJTM.2006.009254 +Fernando Enrique Garcia Muina,The effect of knowledge complexity on the strategic value of technological capabilities.,2011,54,IJTM,4,db/journals/ijtm/ijtm54.html#MuinaPN11,https://doi.org/10.1504/IJTM.2011.041581 +Sangkyun Kim,Framework for e-mail records management in corporate environments.,2007,38,IJTM,4,db/journals/ijtm/ijtm38.html#Kim07a,https://doi.org/10.1504/IJTM.2007.013405 +Luis Suarez-Villa,Collaboration in biotechnology: how inter-firm relations strengthen research efforts in the USA.,2004,27,IJTM,5,db/journals/ijtm/ijtm27.html#Suarez-Villa04,https://doi.org/10.1504/IJTM.2004.004281 +Donald Gerwin,Coordinating new product development in an international joint venture.,2002,24,IJTM,1,db/journals/ijtm/ijtm24.html#GerwinM02,https://doi.org/10.1504/IJTM.2002.003042 +Jiann-Chyuan Wang,Science and technology manpower policy and an estimation of high tech manpower demand for the regional operation centre: the case of Taiwan.,2007,38,IJTM,3,db/journals/ijtm/ijtm38.html#WangLT07,https://doi.org/10.1504/IJTM.2007.012714 +Stefano Breschi,Unveiling the texture of a European Research Area: emergence of oligarchic networks under EU Framework Programmes.,2004,27,IJTM,8,db/journals/ijtm/ijtm27.html#BreschiC04,https://doi.org/10.1504/IJTM.2004.004992 +Feng-Jyh Lin,Innovation and firm performance: an application of determinants in Taiwan.,2011,54,IJTM,1,db/journals/ijtm/ijtm54.html#Lin11,https://doi.org/10.1504/IJTM.2011.038827 +Jongsu Lee,A practical approach for beginning the process of technology roadmapping.,2009,47,IJTM,4,db/journals/ijtm/ijtm47.html#LeeLK09,https://doi.org/10.1504/IJTM.2009.024432 +Christian Hicks,Applying different control approaches for resources with high and low utilisation: a case study of the production of complex products with stochastic processing *.,2009,48,IJTM,2,db/journals/ijtm/ijtm48.html#HicksP09,https://doi.org/10.1504/IJTM.2009.024916 +Jose M. J. Loeffen,IT challenges organisational design: how to connect manufacturing concepts to IT.,2000,19,IJTM,6,db/journals/ijtm/ijtm19.html#LoeffenW00,https://doi.org/10.1504/IJTM.2000.002835 +Lisa K. Gundry,Leveraging the 'E' in entrepreneurship: test of an integrative model of e-commerce new venture growth.,2006,33,IJTM,4,db/journals/ijtm/ijtm33.html#GundryK06,https://doi.org/10.1504/IJTM.2006.009248 +Su-lee Tsai,The effectiveness of learning from strategic alliances: a case study of the Taiwanese textile industry.,2008,42,IJTM,3,db/journals/ijtm/ijtm42.html#TsaiDR08,https://doi.org/10.1504/IJTM.2008.018109 +Jay Lee,Smart products and service systems for e-business transformation.,2003,26,IJTM,1,db/journals/ijtm/ijtm26.html#Lee03,https://doi.org/10.1504/IJTM.2003.003143 +Mariano Corso,From product development to Continuous Product Innovation: mapping the routes of corporate knowledge.,2002,23,IJTM,4,db/journals/ijtm/ijtm23.html#Corso02,https://doi.org/10.1504/IJTM.2002.003013 +Letizia Mortara,Technology Intelligence practice in UK technology-based companies.,2009,48,IJTM,1,db/journals/ijtm/ijtm48.html#MortaraKPP09,https://doi.org/10.1504/IJTM.2009.024603 +Hsin-Min Hung,Competitive advantages of managing an effective social network structure to stimulate innovation from a knowledge management perspective.,2008,43,IJTM,4,db/journals/ijtm/ijtm43.html#HungWWW08,https://doi.org/10.1504/IJTM.2008.020556 +Eliezer Geisler,Benchmarking inter-organisational technology cooperation: the link between infrastructure and sustained performance.,2003,25,IJTM,8,db/journals/ijtm/ijtm25.html#Geisler03,https://doi.org/10.1504/IJTM.2003.003132 +Inge Kerssens-van Drongelen,Organisation and management of research and development facilities - from cost to profit focus.,2003,25,IJTM,8,db/journals/ijtm/ijtm25.html#DrongelenPN03,https://doi.org/10.1504/IJTM.2003.003135 +Cheng-Ru Lin,Combining Partitional and Hierarchical Algorithms for Robust and Efficient Data Clustering with Cohesion Self-Merging.,2005,17,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde17.html#LinC05,https://doi.org/10.1109/TKDE.2005.21 +Afsin Akdogan,D-ToSS: A Distributed Throwaway Spatial Index Structure for Dynamic Location Data.,2016,28,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde28.html#AkdoganSD16,https://doi.org/10.1109/TKDE.2016.2572697 +Hong-Han Shuai,A Comprehensive Study on Willingness Maximization for Social Activity Planning with Quality Guarantee.,2016,28,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde28.html#ShuaiYYC16,https://doi.org/10.1109/TKDE.2015.2468728 +Xiaowei Ying,A Spectrum-Based Framework for Quantifying Randomness of Social Networks.,2011,23,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde23.html#YingWW11,https://doi.org/10.1109/TKDE.2010.218 +Fernando Gomez,Automatic Programming for End Users: The TOAD System.,1989,1,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde1.html#GomezW89,https://doi.org/10.1109/69.87984 +Dario Bruneo,GridVideo: A Practical Example of Nonscientific Application on the Grid.,2009,21,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde21.html#BruneoIMP09,https://doi.org/10.1109/TKDE.2008.191 +Endre Boros,An Implementation of Logical Analysis of Data.,2000,12,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde12.html#BorosHIKMM00,https://doi.org/10.1109/69.842268 +Andrii Cherniak,Signature-Based Detection of Notable Transitions in Numeric Data Streams.,2013,25,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde25.html#CherniakZ13,https://doi.org/10.1109/TKDE.2012.241 +Tao Jiang 0011,Mining Generalized Associations of Semantic Relations from Textual Web Content.,2007,19,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde19.html#JiangTW07,https://doi.org/10.1109/TKDE.2007.36 +Konstantinos Georgoulas,User-Centric Similarity Search.,2017,29,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde29.html#GeorgoulasVDK17,https://doi.org/10.1109/TKDE.2016.2602345 +Li Gong,Enriching the Expressive Power of Security Labels.,1995,7,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde7.html#GongQ95,https://doi.org/10.1109/69.469837 +Jun Zhang,Inferring Directions of Undirected Social Ties.,2016,28,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde28.html#ZhangWWYCW16,https://doi.org/10.1109/TKDE.2016.2605081 +Chih-Cheng Hsu,A Knowledge-Based Approach for Retrieving Images by Content.,1996,8,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde8.html#HsuCT96,https://doi.org/10.1109/69.536245 +Mohammad Rezaei,Set Matching Measures for External Cluster Validity.,2016,28,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde28.html#RezaeiF16,https://doi.org/10.1109/TKDE.2016.2551240 +Olcay Taner Yildiz,Omnivariate Rule Induction Using a Novel Pairwise Statistical Test.,2013,25,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde25.html#Yildiz13,https://doi.org/10.1109/TKDE.2012.155 +Feihu Huang,Learning Dynamic Conditional Gaussian Graphical Models.,2018,30,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde30.html#HuangC18,https://doi.org/10.1109/TKDE.2017.2777462 +Tangjian Deng,ReFinder: A Context-Based Information Refinding System.,2013,25,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde25.html#DengZWLF13,https://doi.org/10.1109/TKDE.2012.157 +Thanh Tran 0001,Keyword Query Routing.,2014,26,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde26.html#Tran014,https://doi.org/10.1109/TKDE.2013.13 +Ken C. K. Lee,Efficient Index-Based Approaches for Skyline Queries in Location-Based Applications.,2013,25,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde25.html#LeeZCC13,https://doi.org/10.1109/TKDE.2012.216 +Weinan Zhang,Capturing the Semantics of Key Phrases Using Multiple Languages for Question Retrieval.,2016,28,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde28.html#ZhangMZLC16,https://doi.org/10.1109/TKDE.2015.2502944 +Jang-Jong Fan,"Corrections to ""An Efficient Algorithm for Matching Multiple Patterns"".",1993,5,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde5.html#FanS93a, +Yong Shi,A Shrinking-Based Clustering Approach for Multidimensional Data.,2005,17,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde17.html#ShiSZ05,https://doi.org/10.1109/TKDE.2005.157 +Ke Wang,Pushing Support Constraints Into Association Rules Mining.,2003,15,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde15.html#WangHH03,https://doi.org/10.1109/TKDE.2003.1198396 +Laks V. S. Lakshmanan,A Parametric Approach to Deductive Databases with Uncertainty.,2001,13,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde13.html#LakshmananS01,https://doi.org/10.1109/69.940732 +Danushka Bollegala,Minimally Supervised Novel Relation Extraction Using a Latent Relational Mapping.,2013,25,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde25.html#BollegalaMI13,https://doi.org/10.1109/TKDE.2011.250 +Paul Ammann,Recovery from Malicious Transactions.,2002,14,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde14.html#AmmannJL02,https://doi.org/10.1109/TKDE.2002.1033782 +Xiuyao Song,Conditional Anomaly Detection.,2007,19,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde19.html#SongWJR07,https://doi.org/10.1109/TKDE.2007.1009 +Fa-Chung Fred Chen,Common Subexpression Processing in Multiple-Query Processing.,1998,10,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde10.html#ChenD98,https://doi.org/10.1109/69.687980 +Abderrahmane Maaradji,Detecting Sudden and Gradual Drifts in Business Processes from Execution Traces.,2017,29,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde29.html#MaaradjiDRO17,https://doi.org/10.1109/TKDE.2017.2720601 +Philip S. Yu,Editorial: New AE Introduction.,2003,15,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde15.html#Yu03,http://doi.ieeecomputersociety.org/10.1109/TKDE.2003.10000 +Albert Mo Kim Cheng,Response Time Analysis of OPS5 Production Systems.,2000,12,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde12.html#ChengC00,https://doi.org/10.1109/69.846292 +Elisa Bertino,MPGS: An Interactive Tool for the Specification and Generation of Multimedia Presentations.,2000,12,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde12.html#BertinoFS00,https://doi.org/10.1109/69.842254 +Wendy Chang,Data Resource Selection in Distributed Visual Information Systems.,1998,10,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde10.html#ChangSWZ98,https://doi.org/10.1109/69.738358 +Hao-Ping Hung,Efficient Process of Top-k Range-Sum Queries over Multiple Streams with Minimized Global Error.,2007,19,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde19.html#HungCC07,https://doi.org/10.1109/TKDE.2007.1070 +Chenyi Xia,BORDER: Efficient Computation of Boundary Points.,2006,18,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde18.html#XiaHLO06,https://doi.org/10.1109/TKDE.2006.38 +Akhil Kumar 0001,G-Tree: A New Data Structure for Organizing Multidimensional Data.,1994,6,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde6.html#Kumar94,https://doi.org/10.1109/69.277778 +Xin Li 0032,Uncertainty Quantification in Mathematics-Embedded Ontologies Using Stochastic Reduced Order Model.,2017,29,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde29.html#LiMER17,https://doi.org/10.1109/TKDE.2017.2651819 +Kun-Lung Wu,Divergence Control Algorithms for Epsilon Serializability.,1997,9,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde9.html#WuYP97,https://doi.org/10.1109/69.591451 +Cheng-Zhong Xu,A Keyword-Based Semantic Prefetching Approach in Internet News Services.,2004,16,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde16.html#XuI04,https://doi.org/10.1109/TKDE.2004.1277820 +Ziyu Guan,Co-Occurrence-Based Diffusion for Expert Search on the Web.,2013,25,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde25.html#GuanMMYC13,https://doi.org/10.1109/TKDE.2012.49 +Kyuseok Shim,High-Dimensional Similarity Joins.,2002,14,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde14.html#ShimSA02,https://doi.org/10.1109/69.979979 +Shixia Liu,Evolutionary Bayesian Rose Trees.,2015,27,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde27.html#LiuWSG15,https://doi.org/10.1109/TKDE.2014.2373384 +Tuukka Haapasalo,On the Recovery of R-Trees.,2013,25,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde25.html#HaapasaloJSS13,https://doi.org/10.1109/TKDE.2011.182 +Mirsad Hadzikadic,Learning to Predict: INC2.5.,1997,9,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde9.html#HadzikadicB97,https://doi.org/10.1109/69.567059 +Nikos A. Lorentzos,SQL Extension for Interval Data.,1997,9,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde9.html#LorentzosM97,https://doi.org/10.1109/69.599935 +Charu C. Aggarwal,On Change Diagnosis in Evolving Data Streams.,2005,17,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde17.html#Aggarwal05,https://doi.org/10.1109/TKDE.2005.78 +Wei-Shinn Ku,A Bayesian Inference-Based Framework for RFID Data Cleansing.,2013,25,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde25.html#KuCWS13,https://doi.org/10.1109/TKDE.2012.116 +Yu-Chi Chung,Design and Performance Evaluation of Broadcast Algorithms for Time-Constrained Data Retrieval.,2006,18,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde18.html#ChungCL06,https://doi.org/10.1109/TKDE.2006.171 +Marian H. Nodine,Scalable Semantic Brokering over Dynamic Heterogeneous Data Sources in InfoSleuthTM.,2003,15,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde15.html#NodineNCB03,https://doi.org/10.1109/TKDE.2003.1232266 +Wei-Min Shen,A Metapattern-Based Automated Discovery Loop for Integrated Data Mining - Unsupervised Learning of Relational Patterns.,1996,8,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde8.html#ShenL96,https://doi.org/10.1109/69.553157 +Michaela Götz,Publishing Search Logs - A Comparative Study of Privacy Guarantees.,2012,24,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde24.html#GotzMWXG12,https://doi.org/10.1109/TKDE.2011.26 +David Sathiaraj,On Identifying Critical Nuggets of Information during Classification Tasks.,2013,25,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde25.html#SathiarajT13,https://doi.org/10.1109/TKDE.2012.112 +Henderik Alex Proper,A General Theory for Evolving Application Models.,1995,7,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde7.html#ProperW95,https://doi.org/10.1109/69.476503 +Meng Fang,TrGraph: Cross-Network Transfer Learning via Common Signature Subgraphs.,2015,27,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde27.html#FangYZZ15,https://doi.org/10.1109/TKDE.2015.2413789 +Massimo Melucci,Relevance Feedback Algorithms Inspired By Quantum Detection.,2016,28,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde28.html#Melucci16,https://doi.org/10.1109/TKDE.2015.2507132 +Bettina Kemme,Using Optimistic Atomic Broadcast in Transaction Processing Systems.,2003,15,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde15.html#KemmePASW03,https://doi.org/10.1109/TKDE.2003.1209016 +Fabrizio Angiulli,Distributed Strategies for Mining Outliers in Large Data Sets.,2013,25,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde25.html#AngiulliBLS13,https://doi.org/10.1109/TKDE.2012.71 +Kuan-Yu Chen,Hot Topic Extraction Based on Timeline Analysis and Multidimensional Sentence Modeling.,2007,19,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde19.html#ChenLC07,https://doi.org/10.1109/TKDE.2007.1040 +Yoshiaki Seki,DOLPHIN: Digital Online Library Providing Human-Like Interactive Navigation.,2001,13,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde13.html#SekiH01,https://doi.org/10.1109/69.940741 +Guangyou Zhou,Modeling and Learning Distributed Word Representation with Metadata for Question Retrieval.,2017,29,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde29.html#ZhouH17,https://doi.org/10.1109/TKDE.2017.2665625 +Elisa Bertino,A Temporal Access Control Mechanism for Database Systems.,1996,8,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde8.html#BertinoBFS96,https://doi.org/10.1109/69.485637 +Ludmila I. Kuncheva,Change Detection in Streaming Multivariate Data Using Likelihood Detectors.,2013,25,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde25.html#Kuncheva13a,https://doi.org/10.1109/TKDE.2011.226 +Veda C. Storey,A Methodology for Learning Across Application Domains for Database Design Systems.,2002,14,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde14.html#StoreyD02,https://doi.org/10.1109/69.979970 +Ee-Peng Lim,An Evidential Reasoning Approach to Attribute Value Conflict Resolution in Database Integration.,1996,8,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde8.html#LimSS96,https://doi.org/10.1109/69.542025 +Gultekin özsoyoglu,Guest Editors' Introduction to Special Section On Temporal and Real-Time Databases.,1995,7,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde7.html#OzsoyogluS95,http://doi.ieeecomputersociety.org/10.1109/TKDE.1995.1 +Elisa Bertino,Trust-X: A Peer-to-Peer Framework for Trust Establishment.,2004,16,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde16.html#BertinoFS04,https://doi.org/10.1109/TKDE.2004.1318565 +Benjamin W. Wah,Editorial: Introducing the New Editor-in-Chief of IEEE Transactions on Knowledge and Data Engineering.,1996,8,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde8.html#Wah96a,http://doi.ieeecomputersociety.org/10.1109/TKDE.1996.10003 +Colin O'Reilly,Adaptive Anomaly Detection with Kernel Eigenspace Splitting and Merging.,2015,27,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde27.html#OReillyGI15,https://doi.org/10.1109/TKDE.2014.2324594 +Subodha Kumar,Optimal Scheduling and Placement of Internet Banner Advertisements.,2007,19,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde19.html#KumarDM07,https://doi.org/10.1109/TKDE.2007.190640 +Francesco Bergadano,Inductive Database Relations.,1993,5,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde5.html#Bergadano93,https://doi.org/10.1109/69.250079 +Guido Proietti,Accurate Modeling of Region Data.,2001,13,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde13.html#ProiettiF01,https://doi.org/10.1109/69.971184 +Anoop George Ninan,Scalable Consistency Maintenance in Content Distribution Networks Using Cooperative Leases.,2003,15,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde15.html#NinanKSRT03,https://doi.org/10.1109/TKDE.2003.1209001 +Murat Kalender,THINKER - Entity Linking System for Turkish Language.,2018,30,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde30.html#KalenderK18,https://doi.org/10.1109/TKDE.2017.2761743 +Tobin J. Lehman,An Evaluation of Starburst's Memory Resident Storage Component.,1992,4,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde4.html#LehmanSC92,https://doi.org/10.1109/69.180606 +Yue Hu,PPSGen: Learning-Based Presentation Slides Generation for Academic Papers.,2015,27,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde27.html#HuW15,https://doi.org/10.1109/TKDE.2014.2359652 +Leting Wu,On Spectral Analysis of Signed and Dispute Graphs: Application to Community Structure.,2017,29,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde29.html#WuWLL17,https://doi.org/10.1109/TKDE.2017.2684809 +Daniel A. Keim,Visualization Techniques for Mining Large Databases: A Comparison.,1996,8,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde8.html#KeimK96,https://doi.org/10.1109/69.553159 +P. Krishna Reddy,Asynchronous Operations in Distributed Concurrency Control.,2003,15,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde15.html#ReddyB03,https://doi.org/10.1109/TKDE.2003.1198401 +Tien Tuan Anh Dinh,Untangling Blockchain: A Data Processing View of Blockchain Systems.,2018,30,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde30.html#DinhLZCOW18,https://doi.org/10.1109/TKDE.2017.2781227 +Tomasz Imielinski,Data on Air: Organization and Access.,1997,9,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde9.html#ImielinskiVB97,https://doi.org/10.1109/69.599926 +Xuan Hieu Phan,A Hidden Topic-Based Framework toward Building Applications with Short Web Documents.,2011,23,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde23.html#PhanNLNHH11,https://doi.org/10.1109/TKDE.2010.27 +Hamad Alhammady,Using Emerging Patterns to Construct Weighted Decision Trees.,2006,18,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde18.html#AlhammadyR06,https://doi.org/10.1109/TKDE.2006.116 +Zhian He,Efficient Pattern-Based Aggregation on Sequence Data.,2017,29,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde29.html#HeWKLCF17,https://doi.org/10.1109/TKDE.2016.2618856 +Jiefeng Cheng,Graph Pattern Matching: A Join/Semijoin Approach.,2011,23,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde23.html#ChengYY11,https://doi.org/10.1109/TKDE.2010.169 +Tamir Tassa,Anonymization of Centralized and Distributed Social Networks by Sequential Clustering.,2013,25,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde25.html#TassaC13,https://doi.org/10.1109/TKDE.2011.232 +Ying Cai,An Overlay Subscription Network for Live Internet TV Broadcast.,2006,18,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde18.html#CaiZ06,https://doi.org/10.1109/TKDE.2006.181 +Michele Risi,CoDe Modeling of Graph Composition for Data Warehouse Report Visualization.,2014,26,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde26.html#RisiSTT14,https://doi.org/10.1109/TKDE.2013.24 +Anna C. Gilbert,One-Pass Wavelet Decompositions of Data Streams.,2003,15,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde15.html#GilbertKMS03,https://doi.org/10.1109/TKDE.2003.1198389 +Chih-Lin Hu,Online Scheduling Sequential Objects with Periodicity for Dynamic Information Dissemination.,2009,21,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde21.html#HuC09,https://doi.org/10.1109/TKDE.2008.148 +Dixin Luo,Learning Mixtures of Markov Chains from Aggregate Data with Structural Constraints.,2016,28,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde28.html#LuoXZDZY016,https://doi.org/10.1109/TKDE.2016.2522426 +Cheng-Ying Liu,IncreSTS: Towards Real-Time Incremental Short Text Summarization on Comment Streams from Social Network Services.,2015,27,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde27.html#LiuCT15,https://doi.org/10.1109/TKDE.2015.2405553 +Zhenjun Tang,Robust Perceptual Image Hashing Based on Ring Partition and NMF.,2014,26,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde26.html#TangZZ14,https://doi.org/10.1109/TKDE.2013.45 +Jing Zhang 0001,"Diffusion of ""Following"" Links in Microblogging Networks.",2015,27,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde27.html#ZhangFCT15,https://doi.org/10.1109/TKDE.2015.2407351 +Jian Pei,State of the Journal Editorial.,2015,27,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde27.html#Pei15,https://doi.org/10.1109/TKDE.2014.2370791 +Jian Pei,Editorial.,2017,29,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde29.html#PeiL17,https://doi.org/10.1109/TKDE.2016.2619598 +Wesley W. Chu,Knowledge-Based Image Retrieval with Spatial and Temporal Constructs.,1998,10,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde10.html#ChuHCT98,https://doi.org/10.1109/69.738355 +Evi Yulianti,Document Summarization for Answering Non-Factoid Queries.,2018,30,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde30.html#YuliantiCSCS18,https://doi.org/10.1109/TKDE.2017.2754373 +Baogang Wei,Using Hybrid Knowledge Engineering and Image Processing in Color Virtual Restoration of Ancient Murals.,2003,15,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde15.html#WeiLP03,https://doi.org/10.1109/TKDE.2003.1232282 +LuoQuan Zheng,Speeding up External Mergesort.,1996,8,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde8.html#ZhengL96,https://doi.org/10.1109/69.494169 +Robert Nowicki,On Combining Neuro-Fuzzy Architectures with the Rough Set Theory to Solve Classification Problems with Incomplete Data.,2008,20,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde20.html#Nowicki08,https://doi.org/10.1109/TKDE.2008.64 +Philip S. Yu,Editorial: Introducing the New AEs.,2001,13,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde13.html#Yu01a,https://doi.org/10.1109/TKDE.2001.929897 +Stephen J. H. Yang,Fuzzy Rule Base Systems Verification Using High-Level Petri Nets.,2003,15,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde15.html#YangTC03,https://doi.org/10.1109/TKDE.2003.1185845 +Wang Lian,An Efficient and Scalable Algorithm for Clustering XML Documents by Structure.,2004,16,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde16.html#LianCMY04,https://doi.org/10.1109/TKDE.2004.1264824 +Xin Jin 0001,Reinforced Similarity Integration in Image-Rich Information Networks.,2013,25,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde25.html#JinLYWJH13,https://doi.org/10.1109/TKDE.2011.228 +Marina Drosou,Diverse Set Selection Over Dynamic Data.,2014,26,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde26.html#DrosouP14,https://doi.org/10.1109/TKDE.2013.44 +Kristian Torp,Efficient Differential Timeslice Computation.,1998,10,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde10.html#TorpMJ98,https://doi.org/10.1109/69.706059 +Xike Xie,Enabling Scalable Geographic Service Sharing with Weighted Imprecise Voronoi Cells.,2016,28,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde28.html#XieJYDYJ16,https://doi.org/10.1109/TKDE.2015.2464804 +Zhengkui Wang,COSAC: A Framework for Combinatorial Statistical Analysis on Cloud.,2013,25,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde25.html#WangAT13,https://doi.org/10.1109/TKDE.2012.113 +Yufei Tao,Maintaining Sliding Window Skylines on Data Streams.,2006,18,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde18.html#TaoP06,https://doi.org/10.1109/TKDE.2006.48 +Tamer Ahmed Farrag,Toward SWSs Discovery: Mapping from WSDL to OWL-S Based on Ontology Search and Standardization Engine.,2013,25,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde25.html#FarragSA13,https://doi.org/10.1109/TKDE.2012.25 +Chih-Chieh Hung,Energy-Aware Set-Covering Approaches for Approximate Data Collection in Wireless Sensor Networks.,2012,24,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde24.html#HungPL12,https://doi.org/10.1109/TKDE.2011.224 +Wenjie Zhang,Efficient Probabilistic Supergraph Search.,2016,28,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde28.html#ZhangLZZZ16,https://doi.org/10.1109/TKDE.2015.2499201 +Spyros I. Zoumpoulis,Right-Protected Data Publishing with Provable Distance-Based Mining.,2014,26,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde26.html#ZoumpoulisVFL14,https://doi.org/10.1109/TKDE.2013.90 +Hui Yan,Aggregate Estimation in Hidden Databases with Checkbox Interfaces.,2015,27,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde27.html#YanG0HZW15,https://doi.org/10.1109/TKDE.2014.2365800 +Paul E. van der Vet,Bottom-Up Construction of Ontologies.,1998,10,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde10.html#VetM98,https://doi.org/10.1109/69.706054 +Jack Jingshuang Yang,JPernLite: Extensible Transaction Services for the WWW.,1999,11,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde11.html#YangK99,https://doi.org/10.1109/69.790823 +Meng Chang Chen,On the Data Model and Access Method of Summary Data Management.,1989,1,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde1.html#ChenM89,https://doi.org/10.1109/69.43426 +Nguyen Quoc Viet Hung,Computing Crowd Consensus with Partial Agreement.,2018,30,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde30.html#HungVTWYZ18,https://doi.org/10.1109/TKDE.2017.2750683 +Yi-Cheng Tu,Multiquality Data Replication in Multimedia Databases.,2007,19,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde19.html#TuYSP07,https://doi.org/10.1109/TKDE.2007.1013 +Ming-Ling Lo,The Design and Implementation of Seeded Trees: An Efficient Method for Spatial Joins.,1998,10,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde10.html#LoR98,https://doi.org/10.1109/69.667097 +Olivier Van Laere,Spatially Aware Term Selection for Geotagging.,2014,26,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde26.html#LaereQSD14,https://doi.org/10.1109/TKDE.2013.42 +Huaijie Zhu,Range-Based Nearest Neighbor Queries with Complex-Shaped Obstacles.,2018,30,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde30.html#Zhu0WL18,https://doi.org/10.1109/TKDE.2017.2779487 +Ik Rae Jeong,Ring Signature with Weak Linkability and Its Applications.,2008,20,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde20.html#JeongKL08,https://doi.org/10.1109/TKDE.2008.19 +Jun Du,Asking Generalized Queries to Domain Experts to Improve Learning.,2010,22,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde22.html#DuL10,https://doi.org/10.1109/TKDE.2010.33 +Jang-Jong Fan,An Efficient Algorithm for Matching Multiple Patterns.,1993,5,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde5.html#FanS93,https://doi.org/10.1109/69.219740 +Harold Boley,A Guide to the Basic Logic Dialect for Rule Interchange on the Web.,2010,22,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde22.html#BoleyK10,https://doi.org/10.1109/TKDE.2010.84 +Bin Wu 0003,Counting Triangles in Large Graphs by Random Sampling.,2016,28,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde28.html#WuYL16,https://doi.org/10.1109/TKDE.2016.2556663 +Man Lung Yiu,Efficient Evaluation of Probabilistic Advanced Spatial Queries on Existentially Uncertain Data.,2009,21,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde21.html#YiuMDTV09,https://doi.org/10.1109/TKDE.2008.135 +Antonella Guzzo,Malevolent Activity Detection with Hypergraph-Based Models.,2017,29,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde29.html#GuzzoPRSP17,https://doi.org/10.1109/TKDE.2017.2658621 +Peter Bock,Gray-Scale ALIAS.,1992,4,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde4.html#BockKKRS92,https://doi.org/10.1109/69.134248 +Alberto Paccanaro,Learning Distributed Representations of Concepts Using Linear Relational Embedding.,2001,13,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde13.html#PaccanaroH01,https://doi.org/10.1109/69.917563 +Chengzhang Zhu,Heterogeneous Metric Learning of Categorical Data with Hierarchical Couplings.,2018,30,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde30.html#ZhuCLYK18,https://doi.org/10.1109/TKDE.2018.2791525 +Nevenka Dimitrova,Video Content Management in Consumer Devices.,1998,10,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde10.html#DimitrovaMEM98,https://doi.org/10.1109/69.738361 +Georgios Meditskos,A Rule-Based Object-Oriented OWL Reasoner.,2008,20,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde20.html#MeditskosB08,https://doi.org/10.1109/TKDE.2007.190699 +Gianluigi Greco,Discovering Expressive Process Models by Clustering Log Traces.,2006,18,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde18.html#GrecoGPS06,https://doi.org/10.1109/TKDE.2006.123 +Tianyi Jiang,Segmenting Customers from Population to Individuals: Does 1-to-1 Keep Your Customers Forever?,2006,18,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde18.html#JiangT06,https://doi.org/10.1109/TKDE.2006.164 +Zhou Zhao,Graph Regularized Feature Selection with Data Reconstruction.,2016,28,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde28.html#ZhaoHCZNZ16,https://doi.org/10.1109/TKDE.2015.2493537 +Daniel Dajun Zeng,Guest Editors' Introduction: Special Section on Intelligence and Security Informatics.,2008,20,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde20.html#ZengCWK08,https://doi.org/10.1109/TKDE.2008.124 +Paul M. Bober,Indexing for Multiversion Locking: Alternatives and Performance Evaluation.,1997,9,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde9.html#BoberC97,https://doi.org/10.1109/69.567048 +Chengyuan Zhang,Inverted Linear Quadtree: Efficient Top K Spatial Keyword Search.,2016,28,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde28.html#ZhangZZL16,https://doi.org/10.1109/TKDE.2016.2530060 +Dahlia Malkhi,An Architecture for Survivable Coordination in Large Distributed Systems.,2000,12,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde12.html#MalkhiR00,https://doi.org/10.1109/69.842262 +Dan Lin 0001,A Similarity Measure for Comparing XACML Policies.,2013,25,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde25.html#LinRFBL13,https://doi.org/10.1109/TKDE.2012.174 +Jiawei Han 0001,Intelligent Query Answering by Knowledge Discovery Techniques.,1996,8,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde8.html#HanHCF96,https://doi.org/10.1109/69.506706 +Wenhao Ying,Scaling Up Synchronization-Inspired Partitioning Clustering.,2014,26,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde26.html#YingCW14,https://doi.org/10.1109/TKDE.2013.178 +Yan Huang 0002,A Framework for Mining Sequential Patterns from Spatio-Temporal Event Data Sets.,2008,20,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde20.html#HuangZZ08,https://doi.org/10.1109/TKDE.2007.190712 +Katerina Kabassi,A Knowledge-Based Software Life-Cycle Framework for the Incorporation of Multicriteria Analysis in Intelligent User Interfaces.,2006,18,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde18.html#KabassiV06,https://doi.org/10.1109/TKDE.2006.134 +Charu C. Aggarwal,On the Analytical Properties of High-Dimensional Randomization.,2013,25,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde25.html#Aggarwal13,https://doi.org/10.1109/TKDE.2012.98 +Gang Chen 0001,Time-Aware Boolean Spatial Keyword Queries.,2017,29,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde29.html#ChenZGCC17,https://doi.org/10.1109/TKDE.2017.2742956 +Kasun Wickramaratna,Predicting Missing Items in Shopping Carts.,2009,21,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde21.html#WickramaratnaKP09,https://doi.org/10.1109/TKDE.2008.229 +Mohammed Kayed,FiVaTech: Page-Level Web Data Extraction from Template Pages.,2010,22,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde22.html#KayedC10,https://doi.org/10.1109/TKDE.2009.82 +Paolo Ciaccia,Block Access Estimation for Clustered Data.,1993,5,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde5.html#Ciaccia93,https://doi.org/10.1109/69.234782 +Jia Zhou,On the Customization of Components: A Rule-Based Approach.,2007,19,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde19.html#ZhouCMY07,https://doi.org/10.1109/TKDE.2007.1059 +Longbing Cao,Domain-Driven Data Mining: Challenges and Prospects.,2010,22,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde22.html#Cao10,https://doi.org/10.1109/TKDE.2010.32 +Wangchao Le,Scalable Keyword Search on Large RDF Data.,2014,26,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde26.html#LeLKD14,https://doi.org/10.1109/TKDE.2014.2302294 +Jiuyong Li,Anonymization by Local Recoding in Data with Attribute Hierarchical Taxonomies.,2008,20,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde20.html#LiWFP08,https://doi.org/10.1109/TKDE.2008.52 +Mohammed Javeed Zaki,Efficient Algorithms for Mining Closed Itemsets and Their Lattice Structure.,2005,17,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde17.html#ZakiH05,https://doi.org/10.1109/TKDE.2005.60 +Ruchir Gupta,Reputation Aggregation in Peer-to-Peer Network Using Differential Gossip Algorithm.,2015,27,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde27.html#GuptaS15,https://doi.org/10.1109/TKDE.2015.2427793 +M. Srinivas,Genetic Search: Analysis Using Fitness Moments.,1996,8,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde8.html#SrinivasP96,https://doi.org/10.1109/69.485641 +Michihiro Kuramochi,An Efficient Algorithm for Discovering Frequent Subgraphs.,2004,16,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde16.html#KuramochiK04,https://doi.org/10.1109/TKDE.2004.33 +Binbin Gu,The Interaction Between Schema Matching and Record Matching in Data Integration.,2017,29,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde29.html#GuLZLLZZZ17,https://doi.org/10.1109/TKDE.2016.2611577 +Xiang Wang,Topic Mining over Asynchronous Text Sequences.,2012,24,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde24.html#WangJCZS12,https://doi.org/10.1109/TKDE.2010.229 +Thilina Buddhika,Synopsis: A Distributed Sketch over Voluminous Spatiotemporal Observational Streams.,2017,29,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde29.html#BuddhikaMPP17,https://doi.org/10.1109/TKDE.2017.2734661 +Ye Yuan 0001,Efficient Keyword Search on Uncertain Graph Data.,2013,25,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde25.html#YuanWCW13,https://doi.org/10.1109/TKDE.2012.222 +Ahmed K. Elmagarmid,Global Committability in Multidatabase Systems.,1996,8,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde8.html#ElmagarmidJKBZ96,https://doi.org/10.1109/69.542032 +Yu-Ling Hsueh,Caching Support for Skyline Query Processing with Partially Ordered Domains.,2014,26,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde26.html#HsuehH14,https://doi.org/10.1109/TKDE.2014.2309125 +Jinyan Li,Using Fixed Point Theorems to Model the Binding in Protein-Protein Interactions.,2005,17,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde17.html#LiL05,https://doi.org/10.1109/TKDE.2005.134 +Claudio Bettini,Temporal Semantic Assumptions and Their Use in Databases.,1998,10,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde10.html#BettiniWJ98,https://doi.org/10.1109/69.683757 +Yu Yang,Tracking Influential Individuals in Dynamic Networks.,2017,29,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde29.html#YangWPC17,https://doi.org/10.1109/TKDE.2017.2734667 +Zhiyong Huang,Continuous Skyline Queries for Moving Objects.,2006,18,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde18.html#HuangLOT06,https://doi.org/10.1109/TKDE.2006.185 +Hao Wang,Durable Queries over Historical Time Series.,2014,26,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde26.html#WangCYZM14,https://doi.org/10.1109/TKDE.2013.10 +Filip Perich,On Data Management in Pervasive Computing Environments.,2004,16,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde16.html#PerichJFY04,https://doi.org/10.1109/TKDE.2004.1277823 +Edward P. F. Chan,A Possible World Semantics for Disjunctive Databases.,1993,5,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde5.html#Chan93,https://doi.org/10.1109/69.219736 +Maria Vanina Martinez,Customized Policies for Handling Partial Information in Relational Databases.,2013,25,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde25.html#MartinezMGS13,https://doi.org/10.1109/TKDE.2012.91 +Furong Li,Profiling Entities over Time in the Presence of Unreliable Sources.,2017,29,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde29.html#LiLH17,https://doi.org/10.1109/TKDE.2017.2684804 +Divyesh Jadav,Techniques for Increasing the Stream Capacity of A High-Performance Multimedia Server.,1999,11,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde11.html#JadavCB99,https://doi.org/10.1109/69.761664 +Long Guo,Influence Maximization in Trajectory Databases.,2017,29,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde29.html#GuoZCWT17,https://doi.org/10.1109/TKDE.2016.2621038 +Lee Dee Miller,Cluster-Based Boosting.,2015,27,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde27.html#MillerS15,https://doi.org/10.1109/TKDE.2014.2382598 +Lin Yu,Ancestor Controlled Submodule Inclusion in Design Databases.,1993,5,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde5.html#YuR93,https://doi.org/10.1109/69.219741 +Bin Cui 0001,A Framework for Similarity Search of Time Series Cliques with Natural Relations.,2012,24,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde24.html#CuiZT12,https://doi.org/10.1109/TKDE.2010.270 +Pasquale Foggia,Symbolic vs. Connectionist Learning: An Experimental Comparison in a Structured Domain.,2001,13,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde13.html#FoggiaGV01,https://doi.org/10.1109/69.917559 +Christian S. Jensen,Incremental Implementation Model for Relational Databases with Transaction Time.,1991,3,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde3.html#JensenMR91,https://doi.org/10.1109/69.109107 +Ram D. Gopal,Criss-Cross Hash Joins: Design and Analysis.,2001,13,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde13.html#GopalRZ01,https://doi.org/10.1109/69.940737 +Ioannis Hatzilygeroudis,Integrated Rule-Based Learning and Inference.,2010,22,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde22.html#HatzilygeroudisP10,https://doi.org/10.1109/TKDE.2010.79 +Mustafa Jarrar,A Query Formulation Language for the Data Web.,2012,24,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde24.html#JarrarD12,https://doi.org/10.1109/TKDE.2011.41 +Yufei Tao,Fast Nearest Neighbor Search with Keywords.,2014,26,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde26.html#TaoS14,https://doi.org/10.1109/TKDE.2013.66 +Bo Cheng 0001,A Web Services Discovery Approach Based on Mining Underlying Interface Semantics.,2017,29,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde29.html#ChengZLC17,https://doi.org/10.1109/TKDE.2016.2645769 +Vittorio Maniezzo,The Ant System Applied to the Quadratic Assignment Problem.,1999,11,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde11.html#ManiezzoC99,https://doi.org/10.1109/69.806935 +Amitabha Bagchi,Achieving Communication Efficiency through Push-Pull Partitioning of Semantic Spaces to Disseminate Dynamic Information.,2006,18,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde18.html#BagchiCGLS06,https://doi.org/10.1109/TKDE.2006.153 +David B. Lomet,Guest Editor's Introduction: Cloud Data Management.,2011,23,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde23.html#Lomet11,https://doi.org/10.1109/TKDE.2011.156 +Bojan Groselj,Combinatorial Optimization of Distributed Queries.,1995,7,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde7.html#GroseljM95,https://doi.org/10.1109/69.476497 +Deept Kumar,Algorithms for Storytelling.,2008,20,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde20.html#KumarRHP08,https://doi.org/10.1109/TKDE.2008.32 +Athman Bouguettaya,Supporting Dynamic Interactions among Web-Based Information Sources.,2000,12,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde12.html#BouguettayaBHOB00,https://doi.org/10.1109/69.877508 +Ronghua Liang,Scaling Hop-Based Reachability Indexing for Fast Graph Pattern Query Processing.,2014,26,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde26.html#LiangZJZH14,https://doi.org/10.1109/TKDE.2014.2310207 +Jeffrey J. P. Tsai,A Logic-Based Transformation System.,1998,10,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde10.html#TsaiLW98,https://doi.org/10.1109/69.667092 +Magesh Jayapandian,Automating the Design and Construction of Query Forms.,2009,21,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde21.html#JayapandianJ09,https://doi.org/10.1109/TKDE.2008.237 +Peng Zhang 0001,E-Tree: An Efficient Indexing Structure for Ensemble Models on Data Streams.,2015,27,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde27.html#ZhangZWGZG15,https://doi.org/10.1109/TKDE.2014.2298018 +Veda C. Storey,Naive Semantics to Support Automated Database Design.,2002,14,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde14.html#StoreyGU02,https://doi.org/10.1109/69.979969 +Yanfeng Zhang,i2 MapReduce: Incremental MapReduce for Mining Evolving Big Data.,2015,27,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde27.html#ZhangCWY15,https://doi.org/10.1109/TKDE.2015.2397438 +Muhammed Miah,Determining Attributes to Maximize Visibility of Objects.,2009,21,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde21.html#MiahDHM09,https://doi.org/10.1109/TKDE.2009.72 +Lisa Cingiser DiPippo,Object-Based Semantic Real-Time Concurrency Control with Bounded Imprecision.,1997,9,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde9.html#DiPippoW97,https://doi.org/10.1109/69.567056 +Xindong Wu,EIC Editorial: TKDE Editorial Board Changes.,2005,17,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde17.html#Wu05,https://doi.org/10.1109/TKDE.2005.61 +Spiros Skiadopoulos,"Correction to ""A Family of Directional Relation Models for Extended Objects"".",2007,19,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde19.html#SkiadopoulosSSK07a,https://doi.org/10.1109/TKDE.2007.190653 +Eric Hsueh-Chan Lu,A Framework for Personal Mobile Commerce Pattern Mining and Prediction.,2012,24,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde24.html#LuLT12,https://doi.org/10.1109/TKDE.2011.65 +Yong-Bin Kang,TaxoFinder: A Graph-Based Approach for Taxonomy Learning.,2016,28,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde28.html#KangHB16,https://doi.org/10.1109/TKDE.2015.2475759 +Haishuai Wang,Incremental Subgraph Feature Selection for Graph Classification.,2017,29,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde29.html#WangZZTCZW17,https://doi.org/10.1109/TKDE.2016.2616305 +Dongsheng Duan,LIMTopic: A Framework of Incorporating Link Based Importance into Topic Modeling.,2014,26,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde26.html#DuanLLZGW14,https://doi.org/10.1109/TKDE.2013.2297912 +Francesco M. Malvestuto,Query Evaluability in Statistical Databases.,1990,2,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde2.html#MalvestutoM90,https://doi.org/10.1109/69.63254 +Spiros Skiadopoulos,A Family of Directional Relation Models for Extended Objects.,2007,19,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde19.html#SkiadopoulosSSK07,https://doi.org/10.1109/TKDE.2007.1046 +Stephen T. C. Wong,Design Guidelines for Object-Oriented Deductive Systems.,1993,5,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde5.html#WongW93,https://doi.org/10.1109/69.243518 +Xiaofeng Zhu,Local and Global Structure Preservation for Robust Unsupervised Spectral Feature Selection.,2018,30,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde30.html#ZhuZHZS18,https://doi.org/10.1109/TKDE.2017.2763618 +Daniel Alexander Ford,Dismountable Media Management in Tertiary Storage Systems.,1997,9,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde9.html#Ford97,https://doi.org/10.1109/69.591459 +Rohit Ananthakrishna,Efficient Approximation of Correlated Sums on Data Streams.,2003,15,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde15.html#AnanthakrishnaDGKMS03,https://doi.org/10.1109/TKDE.2003.1198391 +Xiaotong Zhang 0003,Multi-Task Multi-View Clustering.,2016,28,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde28.html#ZhangZLL16,https://doi.org/10.1109/TKDE.2016.2603983 +Diane J. Cook,Graph-Based Analysis of Human Transfer Learning Using a Game Testbed.,2007,19,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde19.html#CookHY07,https://doi.org/10.1109/TKDE.2007.190634 +Du Zhang,PREPARE: A Toll for Knowledge Base Verification.,1994,6,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde6.html#ZhangN94,https://doi.org/10.1109/69.334887 +W. Marco Schorlemmer,Reasoning about Distributed Knowledge-Transforming Peer Interactions.,2011,23,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde23.html#SchorlemmerR11,https://doi.org/10.1109/TKDE.2010.265 +Balaji Padmanabhan,On Characterization and Discovery of Minimal Unexpected Patterns in Rule Discovery.,2006,18,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde18.html#PadmanabhanT06,https://doi.org/10.1109/TKDE.2006.32 +Sudhir Kaushik,SEE: A Spatial Exploration Environment Based on a Direct-Manipulation Paradigm.,2001,13,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde13.html#KaushikR01,https://doi.org/10.1109/69.940738 +Vassilis J. Tsotras,Efficient Management of Time-Evolving Databases.,1995,7,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde7.html#TsotrasGH95,https://doi.org/10.1109/69.404032 +Le Gruenwald,Effects of Update Techniques on Main Memory Database System Performance.,1998,10,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde10.html#GruenwaldCH98,https://doi.org/10.1109/69.729750 +Yingxia Shao,PAGE: A Partition Aware Engine for Parallel Graph Computation.,2015,27,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde27.html#ShaoCM15,https://doi.org/10.1109/TKDE.2014.2327037 +Dizza Beimel,The Context and the SitBAC Models for Privacy Preservation—*An Experimental Comparison of Model Comprehension and Synthesis.,2010,22,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde22.html#BeimelP10,https://doi.org/10.1109/TKDE.2009.161 +Bifan Wei,Motif-Based Hyponym Relation Extraction from Wikipedia Hyperlinks.,2014,26,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde26.html#WeiLMZZF14,https://doi.org/10.1109/TKDE.2013.183 +Jiming Liu 0001,Characterizing Web Usage Regularities with Information Foraging Agents.,2004,16,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde16.html#LiuZY04,https://doi.org/10.1109/TKDE.2004.1277818 +Christopher J. Hazard,Intertemporal Discount Factors as a Measure of Trustworthiness in Electronic Commerce.,2011,23,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde23.html#HazardS11,https://doi.org/10.1109/TKDE.2010.141 +Saladi Rahul,A General Technique for Top-$k$ Geometric Intersection Query Problems.,2014,26,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde26.html#RahulJ14,https://doi.org/10.1109/TKDE.2014.2316807 +Dingming Wu 0001,Density-Based Place Clustering Using Geo-Social Network Data.,2018,30,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde30.html#0001SM18,https://doi.org/10.1109/TKDE.2017.2782256 +Junbo Zhang,A Parallel Matrix-Based Method for Computing Approximations in Incomplete Information Systems.,2015,27,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde27.html#ZhangWPL15,https://doi.org/10.1109/TKDE.2014.2330821 +Lakshmish Ramaswamy,An Expiration Age-Based Document Placement Scheme for Cooperative Web Caching.,2004,16,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde16.html#RamaswamyL04,https://doi.org/10.1109/TKDE.2004.1277819 +Colin O'Reilly,Distributed Anomaly Detection Using Minimum Volume Elliptical Principal Component Analysis.,2016,28,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde28.html#OReillyGI16,https://doi.org/10.1109/TKDE.2016.2555804 +Le Wu,Product Adoption Rate Prediction in a Competitive Market.,2018,30,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde30.html#WuLHCGXW18,https://doi.org/10.1109/TKDE.2017.2763944 +Norifumi Nishikawa,Application Sensitive Energy Management Framework for Storage Systems.,2015,27,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde27.html#NishikawaNK15,https://doi.org/10.1109/TKDE.2015.2416737 +Yin-Fu Huang,A New Methodology to Evaluate Locking Protocols.,1990,2,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde2.html#HuangC90,https://doi.org/10.1109/69.63255 +Sheng Li 0001,Learning Balanced and Unbalanced Graphs via Low-Rank Coding.,2015,27,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde27.html#LiF15,https://doi.org/10.1109/TKDE.2014.2365793 +Davide Martinenghi,Cost-Aware Rank Join with Random and Sorted Access.,2012,24,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde24.html#MartinenghiT12,https://doi.org/10.1109/TKDE.2011.161 +Carlos Ordonez 0001,Statistical Model Computation with UDFs.,2010,22,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde22.html#Ordonez10a,https://doi.org/10.1109/TKDE.2010.44 +Ye-In Chang,Linear Spiral Hashing for Expansible Files.,1999,11,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde11.html#ChangLC99,https://doi.org/10.1109/69.824617 +Reza Akbarinia,Efficient Evaluation of SUM Queries over Probabilistic Data.,2013,25,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde25.html#AkbariniaVV13,https://doi.org/10.1109/TKDE.2012.62 +Wen-Syan Li,Query Relaxation by Structure and Semantics for Retrieval of Logical Web Documents.,2002,14,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde14.html#LiCVA02,https://doi.org/10.1109/TKDE.2002.1019213 +Zhenjie Zhang,Continuous k-Means Monitoring over Moving Objects.,2008,20,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde20.html#ZhangYTP08,https://doi.org/10.1109/TKDE.2008.54 +Shih-Hao Li,Boolean Similarity Measures for Resource Discovery.,1997,9,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde9.html#LiD97,https://doi.org/10.1109/69.649313 +Nan Zhang 0004,Privacy Protection Against Malicious Adversaries in Distributed Information Sharing Systems.,2008,20,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde20.html#ZhangZ08,https://doi.org/10.1109/TKDE.2007.1069 +K. Selçuk Candan,Collaborative Multimedia Systems: Synthesis of Media Objects.,1998,10,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde10.html#CandanRS98,https://doi.org/10.1109/69.687977 +Chang-Hung Lee,Progressive Partition Miner: An Efficient Algorithm for Mining General Temporal Association Rules.,2003,15,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde15.html#LeeCL03,https://doi.org/10.1109/TKDE.2003.1209015 +Arun Ross,A Thin-Plate Spline Calibration Model For Fingerprint Sensor Interoperability.,2008,20,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde20.html#RossN08,https://doi.org/10.1109/TKDE.2007.190696 +Sam Yuan Sung,Forecasting Association Rules Using Existing Data Sets.,2003,15,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde15.html#SungLTN03,https://doi.org/10.1109/TKDE.2003.1245284 +Anthony J. Bagnall,Time-Series Classification with COTE: The Collective of Transformation-Based Ensembles.,2015,27,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde27.html#BagnallLHB15,https://doi.org/10.1109/TKDE.2015.2416723 +Zhiqiang Wang 0005,An Approach to Cold-Start Link Prediction: Establishing Connections between Non-Topological and Topological Information.,2016,28,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde28.html#WangLLQ16,https://doi.org/10.1109/TKDE.2016.2597823 +Arko Provo Mukherjee,Enumeration of Maximal Cliques from an Uncertain Graph.,2017,29,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde29.html#MukherjeeXT17,https://doi.org/10.1109/TKDE.2016.2527643 +Douglas B. Lenat,"Correction to ""Ontological Versus Knowledge Engineering"".",1989,1,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde1.html#Lenat89a,https://doi.org/10.1109/69.87986 +Abdulaziz Alali,PruDent: A Pruned and Confident Stacking Approach for Multi-Label Classification.,2015,27,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde27.html#AlaliK15,https://doi.org/10.1109/TKDE.2015.2416731 +Jing Tang 0004,Profit Maximization for Viral Marketing in Online Social Networks: Algorithms and Analysis.,2018,30,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde30.html#TangTY18,https://doi.org/10.1109/TKDE.2017.2787757 +Pavlos Kefalas,A Graph-Based Taxonomy of Recommendation Algorithms and Systems in LBSNs.,2016,28,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde28.html#KefalasSM16,https://doi.org/10.1109/TKDE.2015.2496344 +Hai Huong Dam,Neural-Based Learning Classifier Systems.,2008,20,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde20.html#DamALY08,https://doi.org/10.1109/TKDE.2007.190671 +Mehmet Ercan Nergiz,d-Presence without Complete World Knowledge.,2010,22,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde22.html#NergizC10,https://doi.org/10.1109/TKDE.2009.125 +Fuzhen Zhuang,Cross-Domain Learning from Multiple Sources: A Consensus Regularization Perspective.,2010,22,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde22.html#ZhuangLXXHS10,https://doi.org/10.1109/TKDE.2009.205 +Michael E. Houle,Effective and Efficient Algorithms for Flexible Aggregate Similarity Search in High Dimensional Spaces.,2015,27,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde27.html#HouleMO15,https://doi.org/10.1109/TKDE.2015.2475740 +Leong Hou U,Towards Online Shortest Path Computation.,2014,26,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde26.html#UZYLG14,https://doi.org/10.1109/TKDE.2013.176 +Yun Chi,Mining Closed and Maximal Frequent Subtrees from Databases of Labeled Rooted Trees.,2005,17,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde17.html#ChiXYM05,https://doi.org/10.1109/TKDE.2005.30 +Show-Jane Yen,A Graph-Based Approach for Discovering Various Types of Association Rules.,2001,13,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde13.html#YenC01,https://doi.org/10.1109/69.956106 +Arnab Nandi 0001,Data Cube Materialization and Mining over MapReduce.,2012,24,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde24.html#NandiYBR12,https://doi.org/10.1109/TKDE.2011.257 +Vo Ngoc Anh,Improved Word-Aligned Binary Compression for Text Indexing.,2006,18,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde18.html#AnhM06,https://doi.org/10.1109/TKDE.2006.99 +Kai-wei Sun,Multilabel Classification via Co-Evolutionary Multilabel Hypernetwork.,2016,28,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde28.html#SunLW16,https://doi.org/10.1109/TKDE.2016.2566621 +Vincent S. Tseng,Efficient Algorithms for Mining High Utility Itemsets from Transactional Databases.,2013,25,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde25.html#TsengSWY13,https://doi.org/10.1109/TKDE.2012.59 +Vilas Wuwongse,Declarative Programs with Implicit Implications.,2002,14,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde14.html#WuwongseN02,https://doi.org/10.1109/TKDE.2002.1019217 +Daniel Delling,Customizable Point-of-Interest Queries in Road Networks.,2015,27,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde27.html#DellingW15,https://doi.org/10.1109/TKDE.2014.2345386 +XiuXia Tian,CloudKeyBank: Privacy and Owner Authorization Enforced Key Management Framework.,2015,27,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde27.html#TianHWWZ15,https://doi.org/10.1109/TKDE.2015.2457903 +Sergio Flesca,A Fuzzy Logic Approach to Wrapping PDF Documents.,2011,23,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde23.html#FlescaMT11,https://doi.org/10.1109/TKDE.2010.220 +Weili Wu,New Algorithm for Computing Cube on Very Large Compressed Data Sets.,2006,18,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde18.html#WuGL06,https://doi.org/10.1109/TKDE.2006.195 +David Eppstein,Straggler Identification in Round-Trip Data Streams via Newton's Identities and Invertible Bloom Filters.,2011,23,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde23.html#EppsteinG11,https://doi.org/10.1109/TKDE.2010.132 +Tao Chen,Optimizing Multi-Top-k Queries over Uncertain Data Streams.,2013,25,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde25.html#ChenCOX13,https://doi.org/10.1109/TKDE.2012.126 +Benjamin W. Wah,Generalization and Generalizability Measures.,1999,11,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde11.html#Wah99,https://doi.org/10.1109/69.755626 +Matthias Leinweber,CavSimBase: A Database for Large Scale Comparison of Protein Binding Sites.,2016,28,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde28.html#LeinweberFSBKFH16,https://doi.org/10.1109/TKDE.2016.2520484 +Mohammed Javeed Zaki,Efficiently Mining Frequent Trees in a Forest: Algorithms and Applications.,2005,17,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde17.html#Zaki05,https://doi.org/10.1109/TKDE.2005.125 +Hong-Bae Jun,Product Life-Cycle Metadata Modeling and Its Application with RDF.,2007,19,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde19.html#JunKX07,https://doi.org/10.1109/TKDE.2007.190661 +Panos Kalnis,Preventing Location-Based Identity Inference in Anonymous Spatial Queries.,2007,19,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde19.html#KalnisGMP07,https://doi.org/10.1109/TKDE.2007.190662 +Bin Cui 0001,Exploring Correlated Subspaces for Efficient Query Processing in Sparse Databases.,2010,22,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde22.html#CuiZY10,https://doi.org/10.1109/TKDE.2009.66 +Amir Bar-Or,Hierarchical Decision Tree Induction in Distributed Genomic Databases.,2005,17,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde17.html#Bar-OrKSW05,https://doi.org/10.1109/TKDE.2005.129 +Marco Vanetti,A System to Filter Unwanted Messages from OSN User Walls.,2013,25,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde25.html#VanettiBFCC13,https://doi.org/10.1109/TKDE.2011.230 +Ruichu Cai,What is Unequal among the Equals? Ranking Equivalent Rules from Gene Expression Data.,2011,23,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde23.html#CaiTZH11,https://doi.org/10.1109/TKDE.2010.207 +Jianliang Xu,The D-Tree: An Index Structure for Planar Point Queries in Location-Based Wireless Services.,2004,16,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde16.html#XuZLL04,https://doi.org/10.1109/TKDE.2004.97 +Junjie Wu,K-Means-Based Consensus Clustering: A Unified View.,2015,27,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde27.html#WuLXCC15,https://doi.org/10.1109/TKDE.2014.2316512 +Sriram Rao,The Cost of Recovery in Message Logging Protocols.,2000,12,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde12.html#RaoAV00,https://doi.org/10.1109/69.842260 +Edi Winarko,A Signature-Based Indexing Method for Efficient Content-Based Retrieval of Relative Temporal Patterns.,2008,20,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde20.html#WinarkoR08,https://doi.org/10.1109/TKDE.2008.20 +Siu-Kai So,Response Time Driven Multimedia Data Objects Allocation for Browsing Documents in Distributed Environments.,1999,11,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde11.html#SoAK99,https://doi.org/10.1109/69.774100 +Hee Beng Kuan Tan,Recovery of PTUIE Handling from Source Codes through Recognizing Its Probable Properties.,2004,16,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde16.html#TanT04,https://doi.org/10.1109/TKDE.2004.62 +Donald P. Ballou,Modeling Completeness versus Consistency Tradeoffs in Information Decision Contexts.,2003,15,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde15.html#BallouP03,https://doi.org/10.1109/TKDE.2003.1161595 +Shen Gao,PCMLogging: Optimizing Transaction Logging and Recovery Performance with PCM.,2015,27,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde27.html#GaoXHHCH15,https://doi.org/10.1109/TKDE.2015.2453154 +Jong Hwan Park,Efficient Hidden Vector Encryption for Conjunctive Queries on Encrypted Data.,2011,23,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde23.html#Park11,https://doi.org/10.1109/TKDE.2010.206 +Sougata Mukherjea,Information Retrieval and Knowledge Discovery Utilizing a BioMedical Patent Semantic Web.,2005,17,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde17.html#MukherjeaBK05,https://doi.org/10.1109/TKDE.2005.130 +Donald G. Marks,Inference in MLS Database Systems.,1996,8,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde8.html#Marks96,https://doi.org/10.1109/69.485628 +Bin Xu 0005,EMR: A Scalable Graph-Based Ranking Model for Content-Based Image Retrieval.,2015,27,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde27.html#XuBCWCH15,https://doi.org/10.1109/TKDE.2013.70 +Yinan Jing,Authentication of k Nearest Neighbor Query on Road Networks.,2014,26,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde26.html#JingHKS14,https://doi.org/10.1109/TKDE.2013.174 +Lei Tang 0001,Scalable Learning of Collective Behavior.,2012,24,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde24.html#TangWL12,https://doi.org/10.1109/TKDE.2011.38 +Yi Cai,Typicality-Based Collaborative Filtering Recommendation.,2014,26,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde26.html#CaiLLMTL14,https://doi.org/10.1109/TKDE.2013.7 +Hassan A. Sleiman,A Survey on Region Extractors from Web Documents.,2013,25,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde25.html#SleimanC13,https://doi.org/10.1109/TKDE.2012.135 +Alexandros Iosifidis,Multidimensional Sequence Classification Based on Fuzzy Distances and Discriminant Analysis.,2013,25,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde25.html#IosifidisTP13,https://doi.org/10.1109/TKDE.2012.223 +Gennaro Costagliola,Monitoring Online Tests through Data Visualization.,2009,21,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde21.html#CostagliolaFGP09,https://doi.org/10.1109/TKDE.2008.133 +Xiaowan Zhang,A New Strategy of Cost-Free Learning in the Class Imbalance Problem.,2014,26,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde26.html#ZhangH14,https://doi.org/10.1109/TKDE.2014.2312336 +Kanoksri Sarinnapakorn,Combining Subclassifiers in Text Categorization: A DST-Based Solution and a Case Study.,2007,19,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde19.html#SarinnapakornK07,https://doi.org/10.1109/TKDE.2007.190663 +Jiangtao Yin,Scalable Distributed Nonnegative Matrix Factorization with Block-Wise Updates.,2018,30,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde30.html#Yin0Z18,https://doi.org/10.1109/TKDE.2017.2785326 +Irène Guessarian,Linearizing Some Recursive Logic Programs.,1995,7,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde7.html#GuessarianP95,https://doi.org/10.1109/69.368513 +Meng Wang 0007,Selecting Optimal Subset to Release Under Differentially Private M-Estimators from Hybrid Datasets.,2018,30,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde30.html#WangJKWXJ18,https://doi.org/10.1109/TKDE.2017.2773545 +Lida Abdi,To Combat Multi-Class Imbalanced Problems by Means of Over-Sampling Techniques.,2016,28,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde28.html#AbdiH16,https://doi.org/10.1109/TKDE.2015.2458858 +Jia Wu,Bag Constrained Structure Pattern Mining for Multi-Graph Classification.,2014,26,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde26.html#WuZZY14,https://doi.org/10.1109/TKDE.2013.2297923 +Xiang Li,Learning in an Ambient Intelligent World: Enabling Technologies and Practices.,2009,21,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde21.html#LiFZS09,https://doi.org/10.1109/TKDE.2008.143 +Sushma Kumari,Measuring Concentration of Distances - An Effective and Efficient Empirical Index.,2017,29,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde29.html#KumariJ17,https://doi.org/10.1109/TKDE.2016.2622270 +JoAnne Holliday,Epidemic Algorithms for Replicated Databases.,2003,15,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde15.html#HollidaySAA03,https://doi.org/10.1109/TKDE.2003.1232274 +Qing Li 0001,Guest Editors' Introduction: Knowledge and Data Engineering for E-Learning.,2009,21,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde21.html#LiLML09,https://doi.org/10.1109/TKDE.2009.104 +Debabrata Dey,Generalized Normal Forms for Probabilistic Relational Data.,2002,14,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde14.html#DeyS02,https://doi.org/10.1109/TKDE.2002.1000338 +Jing Zhang 0015,Multi-Class Ground Truth Inference in Crowdsourcing with Clustering.,2016,28,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde28.html#ZhangSWW16,https://doi.org/10.1109/TKDE.2015.2504974 +Xinhai Liu,Multiview Partitioning via Tensor Methods.,2013,25,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde25.html#LiuJGM13,https://doi.org/10.1109/TKDE.2012.95 +Clifton Phua,Resilient Identity Crime Detection.,2012,24,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde24.html#PhuaSLG12,https://doi.org/10.1109/TKDE.2010.262 +Chuanfei Xu,Group Location Selection Queries over Uncertain Objects.,2013,25,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde25.html#Xu0ZLY13,https://doi.org/10.1109/TKDE.2012.160 +Lefteris Zervakis,Query Reorganization Algorithms for Efficient Boolean Information Filtering.,2017,29,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde29.html#ZervakisTSK17,https://doi.org/10.1109/TKDE.2016.2620140 +Sudha Ram,A Model for Database Allocation Incorporating a Concurrency Control Mechanism.,1991,3,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde3.html#RamM91,https://doi.org/10.1109/69.91051 +Wei-Zhi Wu,Granular Computing and Knowledge Reduction in Formal Contexts.,2009,21,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde21.html#WuLM09,https://doi.org/10.1109/TKDE.2008.223 +Zhiwen Yu 0002,Adaptive Noise Immune Cluster Ensemble Using Affinity Propagation.,2015,27,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde27.html#YuLLZH15,https://doi.org/10.1109/TKDE.2015.2453162 +Jing Yang 0008,A Partial Correlation Statistic Structure Learning Algorithm Under Linear Structural Equation Models.,2016,28,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde28.html#YangAA16,https://doi.org/10.1109/TKDE.2016.2578315 +Euripides G. M. Petrakis,Similarity Searching in Medical Image Databases.,1997,9,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde9.html#PetrakisF97,https://doi.org/10.1109/69.599932 +Huan Liu,Toward Integrating Feature Selection Algorithms for Classification and Clustering.,2005,17,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde17.html#LiuY05,https://doi.org/10.1109/TKDE.2005.66 +Sreekumar T. Shenoy,Design and Implementation of a Semantic Query Optimizer.,1989,1,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde1.html#ShenoyO89,https://doi.org/10.1109/69.87980 +Chih-Chin Liu,3D-List: A Data Structure for Efficient Video Query Processing.,2002,14,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde14.html#LiuC02,https://doi.org/10.1109/69.979976 +Federico Divina,Biclustering of Expression Data with Evolutionary Computation.,2006,18,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde18.html#DivinaA06,https://doi.org/10.1109/TKDE.2006.74 +Bharat K. Bhargava,A Model for Adaptable Systems for Transaction Processing.,1989,1,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde1.html#BhargavaR89,https://doi.org/10.1109/69.43419 +Pedro Antonio Gutiérrez,Ordinal Regression Methods: Survey and Experimental Study.,2016,28,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde28.html#GutierrezPSFH16,https://doi.org/10.1109/TKDE.2015.2457911 +Yuxin Chen,iLike: Bridging the Semantic Gap in Vertical Image Search by Integrating Text and Visual Features.,2013,25,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde25.html#ChenSLC13,https://doi.org/10.1109/TKDE.2012.192 +Ben D. Fulcher,Highly Comparative Feature-Based Time-Series Classification.,2014,26,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde26.html#FulcherJ14,https://doi.org/10.1109/TKDE.2014.2316504 +Leopoldo E. Bertossi,Achieving Data Privacy through Secrecy Views and Null-Based Virtual Updates.,2013,25,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde25.html#BertossiL13,https://doi.org/10.1109/TKDE.2012.86 +Ming-Syan Chen,Optimizing Index Allocation for Sequential Data Broadcasting in Wireless Mobile Computing.,2003,15,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde15.html#ChenWY03,https://doi.org/10.1109/TKDE.2003.1161588 +Guofei Jiang,Efficient and Scalable Algorithms for Inferring Likely Invariants in Distributed Systems.,2007,19,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde19.html#JiangCY07,https://doi.org/10.1109/TKDE.2007.190648 +Yang Hong,Efficient R-Tree Based Indexing Scheme for Server-Centric Cloud Storage System.,2016,28,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde28.html#HongTG0CT16,https://doi.org/10.1109/TKDE.2016.2526006 +Elisa Bertino,Advanced Transaction Processing in Multilevel Secure File Stores.,1998,10,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde10.html#BertinoJMR98,https://doi.org/10.1109/69.667095 +Rinku Dewri,k-Anonymization in the Presence of Publisher Preferences.,2011,23,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde23.html#DewriRRW11,https://doi.org/10.1109/TKDE.2011.106 +ömer Egecioglu,Dimensionality Reduction and Similarity Computation by Inner-Product Approximations.,2004,16,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde16.html#EgeciogluFO04,https://doi.org/10.1109/TKDE.2004.9 +André Santanchè,A Component Model and Infrastructure for a Fluid Web.,2007,19,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde19.html#SantancheM07,https://doi.org/10.1109/TKDE.2007.16 +Donghun Lee,A Performance Anomaly Detection and Analysis Framework for DBMS Development.,2012,24,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde24.html#LeeCL12,https://doi.org/10.1109/TKDE.2011.88 +Mete Celik,Mixed-Drove Spatiotemporal Co-Occurrence Pattern Mining.,2008,20,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde20.html#CelikSRS08,https://doi.org/10.1109/TKDE.2008.97 +Qingyao Wu,Online Transfer Learning with Multiple Homogeneous or Heterogeneous Sources.,2017,29,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde29.html#WuWZTXYH17,https://doi.org/10.1109/TKDE.2017.2685597 +Lakshmish Ramaswamy,Scalable Delivery of Dynamic Content Using a Cooperative Edge Cache Grid.,2007,19,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde19.html#RamaswamyLI07,https://doi.org/10.1109/TKDE.2007.1031 +Reynold Cheng,Guest Editors' Introduction: Special Section on Mining Large Uncertain and Probabilistic Databases.,2010,22,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde22.html#ChengCGY10,https://doi.org/10.1109/TKDE.2010.118 +Yun Xiong,NetCycle+: A Framework for Collective Evolution Inference in Dynamic Heterogeneous Networks.,2018,30,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde30.html#XiongZKZ18,https://doi.org/10.1109/TKDE.2018.2792020 +Jong P. Yoon,A Framework for Knowledge Discovery and Evolution in Databases.,1993,5,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde5.html#YoonK93,https://doi.org/10.1109/69.250080 +Ke Yi,The World in a Nutshell: Concise Range Queries.,2011,23,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde23.html#YiLLC11,https://doi.org/10.1109/TKDE.2010.35 +Kamalika Das,Distributed Identification of Top-l Inner Product Elements and its Application in a Peer-to-Peer Network.,2008,20,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde20.html#DasBLK08,https://doi.org/10.1109/TKDE.2007.190714 +George Diehr,Estimating Block Accesses in Database Organizations.,1994,6,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde6.html#DiehrS94,https://doi.org/10.1109/69.334866 +Shuyao Qi,Location Aware Keyword Query Suggestion Based on Document Proximity.,2016,28,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde28.html#QiWM16,https://doi.org/10.1109/TKDE.2015.2465391 +Xiaochun Yang 0001,A Novel Representation and Compression for Queries on Trajectories in Road Networks.,2018,30,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde30.html#YangWYLZ18,https://doi.org/10.1109/TKDE.2017.2776927 +Yuhua Li,Sentence Similarity Based on Semantic Nets and Corpus Statistics.,2006,18,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde18.html#LiMBOC06,https://doi.org/10.1109/TKDE.2006.130 +Shun Yan Cheung,The Grid Protocol: A High Performance Scheme for Maintaining Replicated Data.,1992,4,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde4.html#CheungAA92,https://doi.org/10.1109/69.180609 +Philip Bohannon,Detection and Recovery Techniques for Database Corruption.,2003,15,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde15.html#BohannonRSSS03,https://doi.org/10.1109/TKDE.2003.1232268 +George Harhalakis,Implementation of Rule-Based Information Systems for Integrated Manufacturing.,1994,6,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde6.html#HarhalakisLMM94,https://doi.org/10.1109/69.334880 +Lei Xu 0016,Microblog Dimensionality Reduction - A Deep Learning Approach.,2016,28,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde28.html#XuJRC16,https://doi.org/10.1109/TKDE.2016.2540639 +Austin Parker,SPOT Databases: Efficient Consistency Checking and Optimistic Selection in Probabilistic Spatial Databases.,2009,21,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde21.html#ParkerIGS09,https://doi.org/10.1109/TKDE.2008.93 +Murat Koyuncu,IFOOD: An Intelligent Fuzzy Object-Oriented Database Architecture.,2003,15,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde15.html#KoyuncuY03,https://doi.org/10.1109/TKDE.2003.1232269 +Tias Guns,k-Pattern Set Mining under Constraints.,2013,25,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde25.html#GunsNR13,https://doi.org/10.1109/TKDE.2011.204 +Kevin Chen-Chuan Chang,Boolean Query Mapping Across Heterogeneous Information Sources.,1996,8,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde8.html#ChangGP96,https://doi.org/10.1109/69.536244 +Robert W. P. Luk,Time-Space Trade-Off Analysis of Morphic Trie Images.,2001,13,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde13.html#Luk01,https://doi.org/10.1109/69.971194 +Daniel E. Cooke,Towards a Formalism to Produce a Programmer Assistant CASE Tool.,1990,2,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde2.html#Cooke90,https://doi.org/10.1109/69.60795 +Oliver Günther,Tree-Based Access Methods for Spatial Databases: Implementation and Performance Evaluation.,1991,3,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde3.html#GuntherB91,https://doi.org/10.1109/69.91064 +Bagus Jati Santoso,Close Dominance Graph: An Efficient Framework for Answering Continuous Top- \(k\) Dominating Queries.,2014,26,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde26.html#SantosoC14,https://doi.org/10.1109/TKDE.2013.172 +Yufei Tao,Performance Analysis of R*-Trees with Arbitrary Node Extents .,2004,16,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde16.html#TaoP04,https://doi.org/10.1109/TKDE.2004.13 +Xiao Pan,Protecting Location Privacy against Location-Dependent Attacks in Mobile Services.,2012,24,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde24.html#PanXM12,https://doi.org/10.1109/TKDE.2011.105 +Shangsong Liang,Efficient Structured Learning for Personalized Diversification.,2016,28,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde28.html#LiangCRR16,https://doi.org/10.1109/TKDE.2016.2594064 +C. V. Ramamoorthy,Foreword.,1992,4,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde4.html#Ramamoorthy92,http://doi.ieeecomputersociety.org/10.1109/TKDE.1992.10002 +Ganggao Zhu,Computing Semantic Similarity of Concepts in Knowledge Graphs.,2017,29,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde29.html#ZhuI17,https://doi.org/10.1109/TKDE.2016.2610428 +Zahir Tari,Guest Editors' Introduction: Special Section on Semantic Issues of Multimedia Systems.,2001,13,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde13.html#TariM01,https://doi.org/10.1109/TKDE.2001.929892 +Ioana Stanoi,WhiteWater: Distributed Processing of Fast Streams.,2007,19,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde19.html#StanoiMPL07,https://doi.org/10.1109/TKDE.2007.1056 +Antonio Albano,View Operations on Objects with Roles for a Statically Typed Database Language.,2000,12,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde12.html#AlbanoAG00,https://doi.org/10.1109/69.868907 +Yuefeng Li,Mining Ontology for Automatically Acquiring Web User Information Needs.,2006,18,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde18.html#LiZ06,http://doi.ieeecomputersociety.org/10.1109/TKDE.2006.62 +Peiguang Jing,Low-Rank Multi-View Embedding Learning for Micro-Video Popularity Prediction.,2018,30,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde30.html#JingSNBLW18,https://doi.org/10.1109/TKDE.2017.2785784 +Xindong Wu,Induction By Attribute Elimination.,1999,11,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde11.html#WuU99,https://doi.org/10.1109/69.806938 +Hui Yan,Crawling Hidden Objects with kNN Queries.,2016,28,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde28.html#YanGZHZW16,https://doi.org/10.1109/TKDE.2015.2502947 +Zhou Zhao,Mining Probabilistically Frequent Sequential Patterns in Large Uncertain Databases.,2014,26,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde26.html#ZhaoYN14,https://doi.org/10.1109/TKDE.2013.124 +Shashi Shekhar,Declustering and Load-Balancing Methods for Parallelizing Geographic Information Systems.,1998,10,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde10.html#ShekharRKCT98,https://doi.org/10.1109/69.706061 +Wai Yin Mok,A Comparative Study of Various Nested Normal Forms.,2002,14,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde14.html#Mok02,https://doi.org/10.1109/69.991722 +Chung-Hua Chu,A General Framework of Time-Variant Bandwidth Allocation in the Data Broadcasting Environment.,2010,22,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde22.html#ChuHC10,https://doi.org/10.1109/TKDE.2009.71 +Jeremy H. Wright,CoCITe - Coordinating Changes in Text.,2012,24,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde24.html#WrightG12,https://doi.org/10.1109/TKDE.2010.250 +Xiaolei Qian,A Semantic Framework of the Multilevel Secure Relational Model.,1997,9,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde9.html#QianL97,https://doi.org/10.1109/69.591453 +Xi Li 0001,Learning Bregman Distance Functions for Structural Learning to Rank.,2017,29,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde29.html#LiPZZWLY17,https://doi.org/10.1109/TKDE.2017.2654250 +Ing-Ray Chen,On the Reliability of AI Planning Software in Real-Time Applications.,1995,7,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde7.html#ChenBT95,https://doi.org/10.1109/69.368522 +Chuan-Xian Ren,Sample Weighting: An Inherent Approach for Outlier Suppressing Discriminant Analysis.,2015,27,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde27.html#RenDHY15,https://doi.org/10.1109/TKDE.2015.2448547 +Bichen Shi,Hashtagger+: Efficient High-Coverage Social Tagging of Streaming News.,2018,30,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde30.html#ShiPIH18,https://doi.org/10.1109/TKDE.2017.2754253 +Lei Wu,Learning Bregman Distance Functions for Semi-Supervised Clustering.,2012,24,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde24.html#WuHJZY12,https://doi.org/10.1109/TKDE.2010.215 +Yi-Hung Wu,Hiding Sensitive Association Rules with Limited Side Effects.,2007,19,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde19.html#WuCC07,https://doi.org/10.1109/TKDE.2007.250583 +Lina Zhou,A Statistical Language Modeling Approach to Online Deception Detection.,2008,20,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde20.html#ZhouSZ08,https://doi.org/10.1109/TKDE.2007.190624 +Thomas Verbraken,A Novel Profit Maximizing Metric for Measuring Classification Performance of Customer Churn Prediction Models.,2013,25,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde25.html#VerbrakenVB13,https://doi.org/10.1109/TKDE.2012.50 +Yang Yang,Discrete Nonnegative Spectral Clustering.,2017,29,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde29.html#YangSHSL17,https://doi.org/10.1109/TKDE.2017.2701825 +Alexander J. Pasik,A Source-to-Source Transformation for Increasing Rule-Based System Parallelism.,1992,4,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde4.html#Pasik92,https://doi.org/10.1109/69.149929 +Jianpeng Xu,Online Multi-Task Learning Framework for Ensemble Forecasting.,2017,29,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde29.html#XuTZL17,https://doi.org/10.1109/TKDE.2017.2662006 +Liqiang Nie,Bridging the Vocabulary Gap between Health Seekers and Healthcare Knowledge.,2015,27,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde27.html#NieZASC15,https://doi.org/10.1109/TKDE.2014.2330813 +Song Han,Online Mode Switch Algorithms for Maintaining Data Freshness in Dynamic Cyber-Physical Systems.,2016,28,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde28.html#HanLCXWRM16,https://doi.org/10.1109/TKDE.2015.2496199 +Hsiao-Ping Tsai,Exploring Application-Level Semantics for Data Compression.,2011,23,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde23.html#TsaiYC11,https://doi.org/10.1109/TKDE.2010.30 +Jian Pei,Editorial.,2015,27,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde27.html#Pei15a,https://doi.org/10.1109/TKDE.2015.2440511 +Kensuke Koshijima,Change-Point Detection in a Sequence of Bags-of-Data.,2015,27,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde27.html#KoshijimaHM15,https://doi.org/10.1109/TKDE.2015.2426693 +Mitzi McCarthy,Evaluation of Range Queries With Predicates on Moving Objects.,2014,26,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde26.html#McCarthyHW14,https://doi.org/10.1109/TKDE.2013.95 +Ing-Ray Chen,Performance Evaluation of Rule Grouping on a Real-Time Expert System Architecture.,1994,6,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde6.html#ChenP94,https://doi.org/10.1109/69.334879 +Yuichi Motai,Principal Composite Kernel Feature Analysis: Data-Dependent Kernel Approach.,2013,25,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde25.html#MotaiY13,https://doi.org/10.1109/TKDE.2012.110 +Manolis Terrovitis,Local Suppression and Splitting Techniques for Privacy Preserving Publication of Trajectories.,2017,29,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde29.html#TerrovitisPMS17,https://doi.org/10.1109/TKDE.2017.2675420 +Yuhua Li,An Approach for Measuring Semantic Similarity between Words Using Multiple Information Sources.,2003,15,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde15.html#LiBM03,https://doi.org/10.1109/TKDE.2003.1209005 +Vincent S. Tseng,Efficient Algorithms for Mining the Concise and Lossless Representation of High Utility Itemsets.,2015,27,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde27.html#TsengWFY15,https://doi.org/10.1109/TKDE.2014.2345377 +Eric N. Hanson,The Design and Implementation of the Ariel Active Database Rule System.,1996,8,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde8.html#Hanson96,https://doi.org/10.1109/69.485644 +Ge Song,K Nearest Neighbour Joins for Big Data on MapReduce: A Theoretical and Experimental Analysis.,2016,28,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde28.html#SongRBHM16,https://doi.org/10.1109/TKDE.2016.2562627 +Jie Tang 0001,A Unified Probabilistic Framework for Name Disambiguation in Digital Library.,2012,24,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde24.html#TangFWZ12,https://doi.org/10.1109/TKDE.2011.13 +Wayne Xin Zhao,Connecting Social Media to E-Commerce: Cold-Start Product Recommendation Using Microblogging Information.,2016,28,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde28.html#ZhaoLHCWL16,https://doi.org/10.1109/TKDE.2015.2508816 +Khanh Vu,Bounded Approximation: A New Criterion for Dimensionality Reduction Approximation in Similarity Search.,2008,20,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde20.html#VuHCL08,https://doi.org/10.1109/TKDE.2008.30 +Hyejin Shin,Privacy Enhanced Matrix Factorization for Recommendation with Local Differential Privacy.,2018,30,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde30.html#ShinKSX18,https://doi.org/10.1109/TKDE.2018.2805356 +Jixue Liu,Discover Dependencies from Data - A Review.,2012,24,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde24.html#LiuLLC12,https://doi.org/10.1109/TKDE.2010.197 +Guangxia Li,Collaborative Online Multitask Learning.,2014,26,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde26.html#LiHCLJ14,https://doi.org/10.1109/TKDE.2013.139 +Nicolas Anciaux,DiSC: Benchmarking Secure Chip DBMS.,2008,20,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde20.html#AnciauxBPV08,https://doi.org/10.1109/TKDE.2008.67 +Paolo Frasconi,Data Categorization Using Decision Trellises.,1999,11,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde11.html#FrasconiGS99,https://doi.org/10.1109/69.806931 +Nguyen Quoc Viet Hung,An Evaluation of Model-Based Approaches to Sensor Data Compression.,2013,25,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde25.html#HungJA13,https://doi.org/10.1109/TKDE.2012.237 +José Fernando Rodrigues Jr.,Large Graph Analysis in the GMine System.,2013,25,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde25.html#RodriguesTPTTF13,https://doi.org/10.1109/TKDE.2011.199 +Benjamin W. Wah,Editorial.,1995,7,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde7.html#Wah95,https://doi.org/10.1109/TKDE.1995.476492 +Thanaa M. Ghanem,Incremental Evaluation of Sliding-Window Queries over Data Streams.,2007,19,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde19.html#GhanemHMAE07,https://doi.org/10.1109/TKDE.2007.250585 +Xuemin Lin,New EIC Editorial.,2017,29,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde29.html#Lin17,https://doi.org/10.1109/TKDE.2016.2646898 +Albert Yu,Subscriber Assignment for Wide-Area Content-Based Publish/Subscribe.,2012,24,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde24.html#YuAY12,https://doi.org/10.1109/TKDE.2012.65 +Jiang-Liang Hou,Knowledge Reuse Enhancement with Motional Visual Representation.,2008,20,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde20.html#HouT08,https://doi.org/10.1109/TKDE.2008.75 +Weiguo Zheng,Online Subgraph Skyline Analysis over Knowledge Graphs.,2016,28,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde28.html#ZhengLZHZ16,https://doi.org/10.1109/TKDE.2016.2530063 +Monidipa Das,FORWARD: A Model for FOrecasting Reservoir WAteR Dynamics Using Spatial Bayesian Network (SpaBN).,2017,29,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde29.html#DasGGCND17,https://doi.org/10.1109/TKDE.2016.2647240 +Huiwen Zeng,Constrained Dimensionality Reduction Using a Mixed-Norm Penalty Function with Neural Networks.,2010,22,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde22.html#ZengT10,https://doi.org/10.1109/TKDE.2009.107 +György J. Simon,Extending Association Rule Summarization Techniques to Assess Risk of Diabetes Mellitus.,2015,27,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde27.html#SimonCTCCL15,https://doi.org/10.1109/TKDE.2013.76 +Wei Wu 0011,K-Ary Tree Hashing for Fast Graph Classification.,2018,30,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde30.html#WuLCZZ18,https://doi.org/10.1109/TKDE.2017.2782278 +Mihael Ankerst,A Multistep Approach for Shape Similarity Search in Image Databases.,1998,10,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde10.html#AnkerstKS98,https://doi.org/10.1109/69.738362 +Huan Liu,Critics for Knowledge-Based Design Systems.,1995,7,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde7.html#LiuRW95,https://doi.org/10.1109/69.469823 +Yang Yang 0002,Discriminative Nonnegative Spectral Clustering with Out-of-Sample Extension.,2013,25,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde25.html#YangYSZDZ13,https://doi.org/10.1109/TKDE.2012.118 +Ning Jing,Hierarchical Encoded Path Views for Path Query Processing: An Optimal Model and Its Performance Evaluation.,1998,10,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde10.html#JingHR98,https://doi.org/10.1109/69.687976 +Nicholas A. Arnosti,Cutting Plane Training for Linear Support Vector Machines.,2013,25,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde25.html#ArnostiK13,https://doi.org/10.1109/TKDE.2011.247 +Chye-Lin Chee,Adaptive Prefetching and Storage Reorganization In A Log-Structured Storage System.,1998,10,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde10.html#CheeLTR98,https://doi.org/10.1109/69.729739 +Silvia Riedel,Pooling for Combination of Multilevel Forecasts.,2009,21,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde21.html#RiedelG09,https://doi.org/10.1109/TKDE.2009.18 +Edith Cohen,Finding Interesting Associations without Support Pruning.,2001,13,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde13.html#CohenDFGIMUY01,https://doi.org/10.1109/69.908981 +Wei Wang 0042,Probabilistic Topic Models for Learning Terminological Ontologies.,2010,22,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde22.html#WeiBB10,https://doi.org/10.1109/TKDE.2009.122 +Philippe Fournier-Viger,Mining Partially-Ordered Sequential Rules Common to Multiple Sequences.,2015,27,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde27.html#Fournier-VigerW15,https://doi.org/10.1109/TKDE.2015.2405509 +K. Vidyasankar,A Non-Two Phase Locking Protocol for Global Concurrency Control in Distributed Heterogeneous Database Systems.,1991,3,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde3.html#Vidyasankar91,https://doi.org/10.1109/69.88006 +Changqing Chen,The BoND-Tree: An Efficient Indexing Method for Box Queries in Nonordered Discrete Data Spaces.,2013,25,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde25.html#ChenWPZ13,https://doi.org/10.1109/TKDE.2012.132 +Jiacai Ni,Adaptive Database Schema Design for Multi-Tenant Data Management.,2014,26,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde26.html#NiLWFZL14,https://doi.org/10.1109/TKDE.2013.94 +Peter Triantafillou,Optimal Data Placement on Disks: A Comprehensive Solution for Different Technologies.,2000,12,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde12.html#TriantafillouCG00,https://doi.org/10.1109/69.842270 +Paolo Terenziani,Reconciling Point-Based and Interval-Based Semantics in Temporal Relational Databases: A Treatment of the Telic/Atelic Distinction.,2004,16,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde16.html#TerenzianiS04,https://doi.org/10.1109/TKDE.2004.1277816 +Sheng Li 0011,SDE: A Novel Clustering Framework Based on Sparsity-Density Entropy.,2018,30,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde30.html#LiLYH18,https://doi.org/10.1109/TKDE.2018.2792021 +Rudi Cilibrasi,The Google Similarity Distance.,2007,19,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde19.html#CilibrasiV07,https://doi.org/10.1109/TKDE.2007.48 +Fuzhen Zhuang,"Erratum to ""Mining Distinction and Commonality across Multiple Domains Using Generative Model for Text Classification"".",2012,24,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde24.html#ZhuangLSHXSX12a,https://doi.org/10.1109/TKDE.2012.209 +Paolo Frasconi,Unified Integration of Explicit Knowledge and Learning by Example in Recurrent Networks.,1995,7,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde7.html#FrasconiGMS95,https://doi.org/10.1109/69.382304 +C. V. Ramamoorthy,Editors' Comments.,1991,3,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde3.html#RamamoorthyW91,http://doi.ieeecomputersociety.org/10.1109/TKDE.1991.10003 +Eric Mays,A Persistent Store for Large Shared Knowledge Bases.,1991,3,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde3.html#MaysLDW91,https://doi.org/10.1109/69.75886 +HweeHwa Pang,Multiclass Query Scheduling in Real-Time Database Systems.,1995,7,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde7.html#PangCL95,https://doi.org/10.1109/69.404028 +Xin Feng,A Fuzzy-Set-Based Reconstructed Phase Space Method for Idenitification of Temporal Patterns in Complex Time Series.,2005,17,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde17.html#FengH05,https://doi.org/10.1109/TKDE.2005.68 +Khoi-Nguyen Tran,Cross-Language Learning from Bots and Users to Detect Vandalism on Wikipedia.,2015,27,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde27.html#TranC15,https://doi.org/10.1109/TKDE.2014.2339844 +Yanmin Sun,Boosting an Associative Classifier.,2006,18,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde18.html#SunWW06,https://doi.org/10.1109/TKDE.2006.105 +Jan Chomicki,Implementing Temporal Integrity Constraints Using an Active DBMS.,1995,7,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde7.html#ChomickiT95,https://doi.org/10.1109/69.404030 +Dmitri A. Rachkovskij,Representation and Processing of Structures with Binary Sparse Distributed Codes.,2001,13,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde13.html#Rachkovskij01,https://doi.org/10.1109/69.917565 +Venkata Duvvuri,Adaptive Leases: A Strong Consistency Mechanism for the World Wide Web.,2003,15,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde15.html#DuvvuriST03,https://doi.org/10.1109/TKDE.2003.1232277 +Quang Hieu Vu,Histogram-Based Global Load Balancing in Structured Peer-to-Peer Systems.,2009,21,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde21.html#VuORT09,https://doi.org/10.1109/TKDE.2008.182 +Keng-Pei Lin,On the Design and Analysis of the Privacy-Preserving SVM Classifier.,2011,23,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde23.html#LinC11,https://doi.org/10.1109/TKDE.2010.193 +Yiu-ming Cheung,On Rival Penalization Controlled Competitive Learning for Clustering with Automatic Cluster Number Selection.,2005,17,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde17.html#Cheung05a,https://doi.org/10.1109/TKDE.2005.184 +Sourav S. Bhowmick,VISUAL: Simulation of Visual Subgraph Query Formulation to Enable Automated Performance Benchmarking.,2017,29,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde29.html#BhowmickCCD17,https://doi.org/10.1109/TKDE.2017.2690392 +Seung-won Hwang,Probe Minimization by Schedule Optimization: Supporting Top-K Queries with Expensive Predicates.,2007,19,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde19.html#HwangC07,https://doi.org/10.1109/TKDE.2007.1007 +Douglas Burdick,MAFIA: A Maximal Frequent Itemset Algorithm.,2005,17,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde17.html#BurdickCFGY05,https://doi.org/10.1109/TKDE.2005.183 +Paul Wu,The Efficacy of Commutativity-Based Semantic Locking in a Real-World Application.,2008,20,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde20.html#WuFR08,https://doi.org/10.1109/TKDE.2007.190728 +Kashif Javed,Feature Selection Based on Class-Dependent Densities for High-Dimensional Binary Data.,2012,24,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde24.html#JavedBS12,https://doi.org/10.1109/TKDE.2010.263 +Dan I. Moldovan,Parallel Knowledge Processing in SNAP.,1993,5,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde5.html#MoldovanLL93,https://doi.org/10.1109/69.204092 +Alexander Artikis,An Event Calculus for Event Recognition.,2015,27,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde27.html#ArtikisSP15,https://doi.org/10.1109/TKDE.2014.2356476 +Ying Zhang 0001,Effectively Indexing the Multidimensional Uncertain Objects.,2014,26,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde26.html#ZhangZLLS14,https://doi.org/10.1109/TKDE.2013.21 +Chih-Hua Tai,Identity Protection in Sequential Releases of Dynamic Networks.,2014,26,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde26.html#TaiTYC14,https://doi.org/10.1109/TKDE.2013.12 +Harry Kai-Ho Chan,On Generalizing Collective Spatial Keyword Queries.,2018,30,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde30.html#ChanLW18,https://doi.org/10.1109/TKDE.2018.2800746 +Tahseen Al-Khateeb,Recurring and Novel Class Detection Using Class-Based Ensemble for Evolving Data Stream.,2016,28,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde28.html#Al-KhateebMASMK16,https://doi.org/10.1109/TKDE.2015.2507123 +Enrique Leyva,A Set of Complexity Measures Designed for Applying Meta-Learning to Instance Selection.,2015,27,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde27.html#LeyvaGP15,https://doi.org/10.1109/TKDE.2014.2327034 +Ying Zhang 0001,Duplicate-Insensitive Order Statistics Computation over Data Streams.,2010,22,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde22.html#ZhangLYKZY10,https://doi.org/10.1109/TKDE.2009.68 +Jennifer Widom,The Starburst Active Database Rule System.,1996,8,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde8.html#Widom96,https://doi.org/10.1109/69.536251 +Jin Soung Yoo,A Joinless Approach for Mining Spatial Colocation Patterns.,2006,18,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde18.html#YooS06,https://doi.org/10.1109/TKDE.2006.150 +Zhi-Hua Zhou,Training Cost-Sensitive Neural Networks with Methods Addressing the Class Imbalance Problem.,2006,18,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde18.html#ZhouL06,https://doi.org/10.1109/TKDE.2006.17 +Chen Xu,On the Feasibility of Distributed Kernel Regression for Big Data.,2016,28,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde28.html#XuZLW16,https://doi.org/10.1109/TKDE.2016.2594060 +Carlos Ordonez 0001,Efficient Disk-Based K-Means Clustering for Relational Databases.,2004,16,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde16.html#OrdonezO04,https://doi.org/10.1109/TKDE.2004.25 +Liqiang Nie,Disease Inference from Health-Related Questions via Sparse Deep Learning.,2015,27,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde27.html#NieWZYZC15,https://doi.org/10.1109/TKDE.2015.2399298 +Azadeh Ghari Neiat,Crowdsourced Coverage as a Service: Two-Level Composition of Sensor Cloud Services.,2017,29,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde29.html#NeiatBSM17,https://doi.org/10.1109/TKDE.2017.2672738 +David Botzer,Optimization of Materialization Strategies for Derived Data Elements.,1996,8,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde8.html#BotzerE96,https://doi.org/10.1109/69.494165 +Junbeom Hur,Improving Security and Efficiency in Attribute-Based Data Sharing.,2013,25,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde25.html#Hur13,https://doi.org/10.1109/TKDE.2011.78 +Timothy Griffin,An Improved Algorithm for the Incremental Recomputation of Active Relational Expressions.,1997,9,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde9.html#GriffinLT97,https://doi.org/10.1109/69.599937 +Giansalvatore Mecca,Query Languages for Sequence Databases: Termination and Complexity.,2001,13,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde13.html#MeccaB01,https://doi.org/10.1109/69.929906 +Beng Chin Ooi,EIC Editorial.,2009,21,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde21.html#Ooi09a,https://doi.org/10.1109/TKDE.2009.103 +Sylvia L. Osborn,The Role of Polymorphism in Schema Evolution in an Object-Oriented Database.,1989,1,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde1.html#Osborn89,https://doi.org/10.1109/69.87977 +Hong Cao,Integrated Oversampling for Imbalanced Time Series Classification.,2013,25,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde25.html#CaoLWN13,https://doi.org/10.1109/TKDE.2013.37 +Parag C. Pendharkar,A Data Envelopment Analysis-Based Approach for Data Preprocessing.,2005,17,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde17.html#Pendharkar05,https://doi.org/10.1109/TKDE.2005.155 +Khaled M. Hammouda,Hierarchically Distributed Peer-to-Peer Document Clustering and Cluster Summarization.,2009,21,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde21.html#HammoudaK09,https://doi.org/10.1109/TKDE.2008.189 +Dieter Fensel,The Knowledge Acquisition and Representation Language KARL.,1998,10,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde10.html#FenselAS98,https://doi.org/10.1109/69.706055 +Xindong Wu,EIC Editorial: 2007 TKDE Editorial Board Changes.,2007,19,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde19.html#Wu07,https://doi.org/10.1109/TKDE.2007.190658 +Seung-Hyun Seo,An Efficient Certificateless Encryption for Secure Data Sharing in Public Clouds.,2014,26,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde26.html#SeoNDB14,https://doi.org/10.1109/TKDE.2013.138 +Hai Zhuge,Distributed Suffix Tree Overlay for Peer-to-Peer Search.,2008,20,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde20.html#ZhugeF08,https://doi.org/10.1109/TKDE.2007.190688 +Yanming Nie,SPIRE: Efficient Data Inference and Compression over RFID Streams.,2012,24,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde24.html#NieCCDS12,https://doi.org/10.1109/TKDE.2011.79 +Jianxin Li,Geo-Social Influence Spanning Maximization.,2017,29,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde29.html#LiSCHLW17,https://doi.org/10.1109/TKDE.2017.2690288 +Fangju Wang,Relational-Linear Quadtree Approach for Two-Dimensional Spatial Representation and Manipulation.,1991,3,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde3.html#Wang91,https://doi.org/10.1109/69.75895 +Meng Wang 0001,Visual Classification by and#8467*1-Hypergraph Modeling.,2015,27,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde27.html#WangLW15,https://doi.org/10.1109/TKDE.2015.2415497 +Lu Yu 0001,Inferring Statistically Significant Hidden Markov Models.,2013,25,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde25.html#YuSCBG13,https://doi.org/10.1109/TKDE.2012.93 +Bing-Yu Sun,Kernel Discriminant Learning for Ordinal Regression.,2010,22,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde22.html#SunLWZL10,https://doi.org/10.1109/TKDE.2009.170 +Thanh Tho Quan,Automatic Fuzzy Ontology Generation for Semantic Web.,2006,18,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde18.html#ThoHFC06,https://doi.org/10.1109/TKDE.2006.87 +Moisés G. de Carvalho,A Genetic Programming Approach to Record Deduplication.,2012,24,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde24.html#CarvalhoLGS12,https://doi.org/10.1109/TKDE.2010.234 +Jörg Liebeherr,The Effect of Index Partitioning Schemes on the Performance of Distributed Query Processing.,1993,5,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde5.html#LiebeherrOA93,https://doi.org/10.1109/69.224201 +Chung-Kuang Chou,Learning Multiple Factors-Aware Diffusion Models in Social Networks.,2018,30,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde30.html#ChouC18,https://doi.org/10.1109/TKDE.2017.2786209 +María Dolores Rodríguez-Moreno,IPSS: A Hybrid Approach to Planning and Scheduling Integration.,2006,18,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde18.html#Rodriguez-MorenoOBC06,https://doi.org/10.1109/TKDE.2006.191 +Burak C. Civek,Efficient Implementation of Newton-Raphson Methods for Sequential Data Prediction.,2017,29,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde29.html#CivekK17,https://doi.org/10.1109/TKDE.2017.2754380 +Sumit Ganguly,Mapping Datalog Program Execution to Networks of Procesors.,1995,7,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde7.html#GangulyST95,https://doi.org/10.1109/69.390243 +Chun-Guo Li,Unsupervised Ranking of Multi-Attribute Objects Based on Principal Curves.,2015,27,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde27.html#LiMH15,https://doi.org/10.1109/TKDE.2015.2441692 +Sergio Greco,Checking Chase Termination: Cyclicity Analysis and Rewriting Techniques.,2015,27,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde27.html#GrecoST15,https://doi.org/10.1109/TKDE.2014.2339816 +Zhi-Hua Zhou,NeC4.5: Neural Ensemble Based C4.5.,2004,16,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde16.html#ZhouJ04,https://doi.org/10.1109/TKDE.2004.11 +Ricardo A. Baeza-Yates,Performance of B+-Trees with Partial Expansions.,1989,1,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde1.html#Baeza-YatesL89,https://doi.org/10.1109/69.87964 +Ivo Majetic,Authorization and Revocation in Object-Oriented Databases.,1997,9,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde9.html#MajeticL97,https://doi.org/10.1109/69.617060 +Jingwei Xu,RaPare: A Generic Strategy for Cold-Start Rating Prediction Problem.,2017,29,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde29.html#XuYTTL17,https://doi.org/10.1109/TKDE.2016.2615039 +V. M. Megler,Are Data Sets Like Documents?: Evaluating Similarity-Based Ranked Search over Scientific Data.,2015,27,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde27.html#MeglerM15,https://doi.org/10.1109/TKDE.2014.2320737 +Dengyao Mo,Fractal-Based Intrinsic Dimension Estimation and Its Application in Dimensionality Reduction.,2012,24,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde24.html#MoH12,https://doi.org/10.1109/TKDE.2010.225 +M. B. O'Neal,Complexity Measures for Rule-Based Programs.,1994,6,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde6.html#ONealE94,https://doi.org/10.1109/69.317699 +Shou-Chih Lo,An Adaptive Access Method for Broadcast Data under an Error-Prone Mobile Environment.,2000,12,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde12.html#LoC00,https://doi.org/10.1109/69.868910 +Dietmar Jannach,Modeling and Solving Distributed Configuration Problems: A CSP-Based Approach.,2013,25,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde25.html#JannachZ13,https://doi.org/10.1109/TKDE.2011.236 +Piero A. Bonatti,Foundations of Secure Deductive Databases.,1995,7,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde7.html#BonattiKS95,https://doi.org/10.1109/69.390247 +Ehud Gudes,Discovering Frequent Graph Patterns Using Disjoint Paths.,2006,18,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde18.html#GudesSV06,https://doi.org/10.1109/TKDE.2006.173 +Mohammad M. Masud,Classification and Novel Class Detection in Concept-Drifting Data Streams under Time Constraints.,2011,23,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde23.html#MasudGKHT11,https://doi.org/10.1109/TKDE.2010.61 +Yuzhe Tang,Privacy-Preserving Multi-Keyword Search in Information Networks.,2015,27,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde27.html#TangL15,https://doi.org/10.1109/TKDE.2015.2407330 +F. Bukhari,Two Fully Distributed Concurrency Control Algorithms.,1993,5,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde5.html#BukhariO93,https://doi.org/10.1109/69.243515 +Chih-Yueh Chou,An Approach of Implementing General Learning Companions for Problem Solving.,2002,14,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde14.html#ChouCL02,https://doi.org/10.1109/TKDE.2002.1047774 +George Kollios,Efficient Biased Sampling for Approximate Clustering and Outlier Detection in Large Data Sets.,2003,15,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde15.html#KolliosGKB03,https://doi.org/10.1109/TKDE.2003.1232271 +Susan Darling Urban,Constraint Analysis: A Design Process for Specifying Operations on Objects.,1990,2,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde2.html#UrbanD90,https://doi.org/10.1109/69.63251 +Wei Wang 0014,Efficient Multidimensional Fuzzy Search for Personal Information Management Systems.,2012,24,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde24.html#WangPMN12,https://doi.org/10.1109/TKDE.2011.126 +Sakti P. Ghosh,Statistical Relational Databases: Normal Forms.,1991,3,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde3.html#Ghosh91,https://doi.org/10.1109/69.75889 +Makoto Yokoo,The Distributed Constraint Satisfaction Problem: Formalization and Algorithms.,1998,10,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde10.html#YokooDIK98,https://doi.org/10.1109/69.729707 +Stavros Papastavrou,Mobile Agents for World Wide Web Distributed Database Access.,2000,12,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde12.html#PapastavrouSP00,https://doi.org/10.1109/69.877509 +Lizhen Wang,Finding Probabilistic Prevalent Colocations in Spatially Uncertain Data Sets.,2013,25,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde25.html#WangWC13,https://doi.org/10.1109/TKDE.2011.256 +José Luis Cabral de Moura Borges,Evaluating Variable-Length Markov Chain Models for Analysis of User Web Navigation Sessions.,2007,19,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde19.html#BorgesL07,https://doi.org/10.1109/TKDE.2007.1012 +Na Ta,Signature-Based Trajectory Similarity Join.,2017,29,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde29.html#TaLXLHF17,https://doi.org/10.1109/TKDE.2017.2651821 +Masaru Kitsuregawa,Guest Editors' Introduction - Papers from ICDE 1999.,2000,12,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde12.html#KitsuregawaPP00,https://doi.org/10.1109/TKDE.2000.877501 +Mohamed R. Fouad,A Supermodularity-Based Differential Privacy Preserving Algorithm for Data Anonymization.,2014,26,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde26.html#FouadEB14,https://doi.org/10.1109/TKDE.2013.107 +Yue Suo,Open Smart Classroom: Extensible and Scalable Learning System in Smart Space Using Web Service Technology.,2009,21,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde21.html#SuoMMIS09,https://doi.org/10.1109/TKDE.2008.117 +Minghua He,On Agent-Mediated Electronic Commerce.,2003,15,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde15.html#HeJL03,https://doi.org/10.1109/TKDE.2003.1209014 +Norman E. Fenton,Using Ranked Nodes to Model Qualitative Judgments in Bayesian Networks.,2007,19,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde19.html#FentonNC07,https://doi.org/10.1109/TKDE.2007.1073 +Zheng Yu,Understanding Short Texts through Semantic Enrichment and Hashing.,2016,28,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde28.html#YuWLW16,https://doi.org/10.1109/TKDE.2015.2485224 +Manghui Tu,Replica Placement Algorithms for Mobile Transaction Systems.,2006,18,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde18.html#TuLXYB06,https://doi.org/10.1109/TKDE.2006.114 +Bo Tang 0011,Toward Optimal Feature Selection in Naive Bayes for Text Categorization.,2016,28,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde28.html#TangKH16,https://doi.org/10.1109/TKDE.2016.2563436 +M. H. Afifi,Privacy Characterization and Quantification in Data Publishing.,2018,30,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde30.html#AfifiZR18,https://doi.org/10.1109/TKDE.2018.2797092 +Gediminas Adomavicius,Toward the Next Generation of Recommender Systems: A Survey of the State-of-the-Art and Possible Extensions.,2005,17,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde17.html#AdomaviciusT05,https://doi.org/10.1109/TKDE.2005.99 +Levent V. Orman,Transaction Repair for Integrity Enforcement.,2001,13,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde13.html#Orman01,https://doi.org/10.1109/69.971192 +Martin Erwig,Spatio-Temporal Predicates.,2002,14,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde14.html#ErwigS02,https://doi.org/10.1109/TKDE.2002.1019220 +Chunkai Wang,Automating Characterization Deployment in Distributed Data Stream Management Systems.,2017,29,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde29.html#WangMGWY17,https://doi.org/10.1109/TKDE.2017.2751606 +Meng Wang,PINOCCHIO: Probabilistic Influence-Based Location Selection over Moving Objects.,2016,28,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde28.html#Wang0CDBD16,https://doi.org/10.1109/TKDE.2016.2580138 +Kyoung-Don Kang,Estimating and Enhancing Real-Time Data Service Delays: Control-Theoretic Approaches.,2011,23,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde23.html#KangZO11,https://doi.org/10.1109/TKDE.2010.138 +Stamatis Vassiliadis,Establishing the Relevancy of the Bookkeeping Libraries to the Functional Testing of Computer Implementations.,1997,9,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde9.html#VassiliadisTK97,https://doi.org/10.1109/69.617057 +Hirotoshi Maegawa,ConClass: A Framework for Real-Time Distributed Knowledge-Based Processing.,1994,6,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde6.html#Maegawa94,https://doi.org/10.1109/69.334881 +Zhen Hai,Identifying Features in Opinion Mining via Intrinsic and Extrinsic Domain Relevance.,2014,26,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde26.html#HaiCKY14,https://doi.org/10.1109/TKDE.2013.26 +Surajit Chaudhuri,Correction to 'Automating Statistics Management for Query Optimizers'.,2001,13,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde13.html#ChaudhuriN01a,https://doi.org/10.1109/TKDE.2001.929907 +Xiaoye Miao,On Efficiently Answering Why-Not Range-Based Skyline Queries in Road Networks.,2018,30,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde30.html#MiaoGGC18,https://doi.org/10.1109/TKDE.2018.2803821 +Xin Lin,Range-Based Skyline Queries in Mobile Environments.,2013,25,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde25.html#LinXH13,https://doi.org/10.1109/TKDE.2011.229 +Martin Doerr,A Method for Estimating the Precision of Placename Matching.,2007,19,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde19.html#DoerrP07,https://doi.org/10.1109/TKDE.2007.1033 +Rui Chang,Quantitative Inference by Qualitative Semantic Knowledge Mining with Bayesian Model Averaging.,2008,20,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde20.html#ChangSB08,https://doi.org/10.1109/TKDE.2008.89 +Xin Lin,Reducing Uncertainty of Probabilistic Top-k Ranking via Pairwise Crowdsourcing.,2017,29,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde29.html#LinXHF17,https://doi.org/10.1109/TKDE.2017.2717830 +Sicheng Xiong,Active Learning of Constraints for Semi-Supervised Clustering.,2014,26,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde26.html#XiongAF14,https://doi.org/10.1109/TKDE.2013.22 +Jehoshua Eliashberg,Assessing Box Office Performance Using Movie Scripts: A Kernel-Based Approach.,2014,26,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde26.html#EliashbergHZ14,https://doi.org/10.1109/TKDE.2014.2306681 +Shuang-Hong Yang,Discriminative Feature Selection by Nonparametric Bayes Error Minimization.,2012,24,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde24.html#YangH12,https://doi.org/10.1109/TKDE.2011.92 +Gap-Joo Na,Dynamic In-Page Logging for B⁺**-tree Index.,2012,24,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde24.html#NaLM12,https://doi.org/10.1109/TKDE.2011.32 +Ming Xiong,Quality of Service Guarantee for Temporal Consistency of Real-Time Transactions.,2006,18,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde18.html#XiongLLG06,https://doi.org/10.1109/TKDE.2006.128 +Rafiul Ahad,RQL: A Recursive Query Language.,1993,5,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde5.html#AhadY93,https://doi.org/10.1109/69.224197 +Hung-Leng Chen,On Data Labeling for Clustering Categorical Data.,2008,20,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde20.html#ChenCC08,https://doi.org/10.1109/TKDE.2008.81 +Kian-Lee Tan,Exploiting Spatial Indexes for Semijoin-Based Join Processing in Distributed Spatial Databases.,2000,12,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde12.html#TanOA00,https://doi.org/10.1109/69.895802 +Huanhuan Wu,Efficient Algorithms for Temporal Path Computation.,2016,28,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde28.html#WuCKHHW16,https://doi.org/10.1109/TKDE.2016.2594065 +Frans Coenen,Data Structure for Association Rule Mining: T-Trees and P-Trees.,2004,16,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde16.html#CoenenLA04,https://doi.org/10.1109/TKDE.2004.8 +Bettina Fazzinga,Top- \(k\) Approximate Answers to XPath Queries with Negation.,2014,26,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde26.html#FazzingaFP14,https://doi.org/10.1109/TKDE.2013.150 +Douglas Turnbull,Fast Recognition of Musical Genres Using RBF Networks.,2005,17,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde17.html#TurnbullE05,https://doi.org/10.1109/TKDE.2005.62 +Usue Mori,Similarity Measure Selection for Clustering Time Series Databases.,2016,28,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde28.html#MoriML16,https://doi.org/10.1109/TKDE.2015.2462369 +Xiaoyan Li,Modeling Image Data for Effective Indexing and Retrieval in Large General Image Databases.,2008,20,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde20.html#LiSCHD08,https://doi.org/10.1109/TKDE.2008.56 +Eui-Hong Han,Scalable Parallel Data Mining for Association Rules.,2000,12,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde12.html#HanKK00,https://doi.org/10.1109/69.846289 +Jingyu Hou,Effectively Finding Relevant Web Pages from Linkage Information.,2003,15,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde15.html#HouZ03,https://doi.org/10.1109/TKDE.2003.1209010 +Hiroko Fujihara,Knowledge Conceptualization Tool.,1997,9,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde9.html#FujiharaSES97,https://doi.org/10.1109/69.591447 +Xubo Zhang,Implication and Referential Constraints: A New Formal Reasoning.,1997,9,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde9.html#ZhangO97,https://doi.org/10.1109/69.649315 +Xu Zhou,Adaptive Processing for Distributed Skyline Queries over Uncertain Data.,2016,28,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde28.html#ZhouLZL16,https://doi.org/10.1109/TKDE.2015.2475764 +Tzy-Hey Chang,A Universal Relation Data Model with Semantic Abstraction.,1992,4,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde4.html#ChangS92,https://doi.org/10.1109/69.124895 +Ole J. Mengshoel,Initialization and Restart in Stochastic Local Search: Computing a Most Probable Explanation in Bayesian Networks.,2011,23,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde23.html#MengshoelWR11,https://doi.org/10.1109/TKDE.2010.98 +Elke A. Rundensteiner,Set Restrictions for Semantic Groupings.,1994,6,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde6.html#RundensteinerBGY94,https://doi.org/10.1109/69.277765 +Raymond Heatherly,Preventing Private Information Inference Attacks on Social Networks.,2013,25,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde25.html#HeatherlyKT13,https://doi.org/10.1109/TKDE.2012.120 +Kais Allab,A Semi-NMF-PCA Unified Framework for Data Clustering.,2017,29,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde29.html#AllabLN17,https://doi.org/10.1109/TKDE.2016.2606098 +Wook-Shin Han,A Formal Framework for Prefetching Based on the Type-Level Access Pattern in Object-Relational DBMSs.,2005,17,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde17.html#HanWM05,https://doi.org/10.1109/TKDE.2005.156 +Stephen J. Green,Building Hypertext Links By Computing Semantic Similarity.,1999,11,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde11.html#Green99,https://doi.org/10.1109/69.806932 +Zohra Bellahsene,View Adaptation in the Fragment-Based Approach.,2004,16,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde16.html#Bellahsene04,https://doi.org/10.1109/TKDE.2004.79 +Salmin Sultana,Secure Provenance Transmission for Streaming Data.,2013,25,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde25.html#SultanaSB13,https://doi.org/10.1109/TKDE.2012.31 +James J. Lu,Hybrid Knowledge Bases.,1996,8,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde8.html#LuNS96,https://doi.org/10.1109/69.542029 +MingJie Tang,Similarity Group-by Operators for Multi-Dimensional Relational Data.,2016,28,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde28.html#TangTAAMOS16,https://doi.org/10.1109/TKDE.2015.2480400 +Toru Ishida,An Optimization Algorithm for Production Systems.,1994,6,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde6.html#Ishida94,https://doi.org/10.1109/69.298172 +Paul K. Amalaman,Supervised Taxonomies - Algorithms and Applications.,2017,29,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde29.html#AmalamanEW17,https://doi.org/10.1109/TKDE.2017.2698451 +Dantong Yu,ClusterTree: Integration of Cluster Representation and Nearest-Neighbor Search for Large Data Sets with High Dimensions.,2003,15,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde15.html#YuZ03,https://doi.org/10.1109/TKDE.2003.1232281 +Surajit Chaudhuri,Guest Editors Introduction: Special Section on Keyword Search on Structured Data.,2011,23,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde23.html#ChaudhuriCY11,https://doi.org/10.1109/TKDE.2011.216 +Xiaohui Yu,Mining Online Reviews for Predicting Sales Performance: A Case Study in the Movie Domain.,2012,24,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde24.html#YuLHA12,https://doi.org/10.1109/TKDE.2010.269 +Victor C. Cheng,Probabilistic Aspect Mining Model for Drug Reviews.,2014,26,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde26.html#ChengLLM14,https://doi.org/10.1109/TKDE.2013.175 +Bahar Qarabaqi,Merlin: Exploratory Analysis with Imprecise Queries.,2016,28,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde28.html#QarabaqiR16,https://doi.org/10.1109/TKDE.2015.2496270 +José Antonio Iglesias,Creating Evolving User Behavior Profiles Automatically.,2012,24,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde24.html#IglesiasALS12,https://doi.org/10.1109/TKDE.2011.17 +Shady Shehata,An Efficient Concept-Based Mining Model for Enhancing Text Clustering.,2010,22,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde22.html#ShehataKK10,https://doi.org/10.1109/TKDE.2009.174 +MoonBae Song,Managing Frequent Updates in R-Trees for Update-Intensive Applications.,2009,21,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde21.html#SongK09,https://doi.org/10.1109/TKDE.2008.225 +Philip S. Yu,Introducing the New AEs.,2002,14,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde14.html#Yu02a,https://doi.org/10.1109/TKDE.2002.1033765 +Xu Sun,Large-Scale Personalized Human Activity Recognition Using Online Multitask Learning.,2013,25,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde25.html#SunKU13,https://doi.org/10.1109/TKDE.2012.246 +Su-Chen Lin,Non-Overlapping Subsequence Matching of Stream Synopses.,2018,30,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde30.html#LinYC18,https://doi.org/10.1109/TKDE.2017.2725833 +Paolo Terenziani,Integrating Calendar Dates and Qualitative Temporal Constraints in the Treatment of Periodic Events.,1997,9,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde9.html#Terenziani97,https://doi.org/10.1109/69.634754 +Taiping Zhang,Learning Proximity Relations for Feature Selection.,2016,28,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde28.html#ZhangRGZTC16,https://doi.org/10.1109/TKDE.2016.2515588 +Mustaque Ahamad,Flexible Robust Programming in Distributed Object Systems.,2002,14,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde14.html#AhamadC02,https://doi.org/10.1109/TKDE.2002.1033779 +Jinfeng Ni,Indexing Spatio-Temporal Trajectories with Efficient Polynomial Approximations.,2007,19,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde19.html#NiR07,https://doi.org/10.1109/TKDE.2007.1006 +Michael Simpson,Clearing Contamination in Large Networks.,2016,28,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde28.html#SimpsonST16,https://doi.org/10.1109/TKDE.2016.2525993 +Liang Zhao 0002,Feature Constrained Multi-Task Learning Models for Spatiotemporal Event Forecasting.,2017,29,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde29.html#ZhaoSYCLR17,https://doi.org/10.1109/TKDE.2017.2657624 +Jiwon Seo,SociaLite: An Efficient Graph Query Language Based on Datalog.,2015,27,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde27.html#SeoGL15,https://doi.org/10.1109/TKDE.2015.2405562 +Marco Muselli,Coupling Logical Analysis of Data and Shadow Clustering for Partially Defined Positive Boolean Function Reconstruction.,2011,23,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde23.html#MuselliF11,https://doi.org/10.1109/TKDE.2009.206 +Junfeng Zhou,Top-Down XML Keyword Query Processing.,2016,28,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde28.html#Zhou0CYTLL16,https://doi.org/10.1109/TKDE.2016.2516536 +Reza Rawassizadeh,Scalable Daily Human Behavioral Pattern Mining from Multivariate Temporal Data.,2016,28,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde28.html#RawassizadehMDG16,https://doi.org/10.1109/TKDE.2016.2592527 +Michael J. Mior,NoSE: Schema Design for NoSQL Applications.,2017,29,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde29.html#MiorSAL17,https://doi.org/10.1109/TKDE.2017.2722412 +Defu Lian,Scalable Content-Aware Collaborative Filtering for Location Recommendation.,2018,30,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde30.html#LianGZY0ZR18,https://doi.org/10.1109/TKDE.2018.2789445 +Shashi Shekhar,Learning Transformation Rules for Semantic Query Optimization: A Data-Driven Approach.,1993,5,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde5.html#ShekharHKC93,https://doi.org/10.1109/69.250077 +Min-Ling Zhang,A Review on Multi-Label Learning Algorithms.,2014,26,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde26.html#ZhangZ14,https://doi.org/10.1109/TKDE.2013.39 +Kathryn B. Laskey,Network Engineering for Agile Belief Network Models.,2000,12,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde12.html#LaskeyM00,https://doi.org/10.1109/69.868902 +Gennaro Petraglia,Virtual Images for Similarity Retrieval in Image Databases.,2001,13,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde13.html#PetragliaSTT01,https://doi.org/10.1109/69.971189 +Ying Zhang,Projective Distribution of XQuery with Updates.,2010,22,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde22.html#ZhangTB10,https://doi.org/10.1109/TKDE.2010.62 +M. V. Ramakrishna,Optimal Distribution of Signatures in Signature Hashing.,1992,4,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde4.html#RamakrishnaR92,https://doi.org/10.1109/69.124899 +Laura M. Haas,Starburst Mid-Flight: As the Dust Clears.,1990,2,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde2.html#HaasCLMWLLPCS90,https://doi.org/10.1109/69.50910 +Ron Sacks-Davis,Atlas: A Nested Relational Database System for Text Applications.,1995,7,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde7.html#Sacks-DavisKRTZ95,https://doi.org/10.1109/69.390250 +Mi-Yen Yeh,Clustering over Multiple Evolving Streams by Events and Correlations.,2007,19,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde19.html#YehDC07,https://doi.org/10.1109/TKDE.2007.1071 +Amihai Motro,FLEX: A Tolerant and Cooperative User Interface to Databases.,1990,2,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde2.html#Motro90,https://doi.org/10.1109/69.54722 +Salvador García,A Survey of Discretization Techniques: Taxonomy and Empirical Analysis in Supervised Learning.,2013,25,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde25.html#GarciaLSLH13,https://doi.org/10.1109/TKDE.2012.35 +Kyriakos Mouratidis,A Threshold-Based Algorithm for Continuous Monitoring of k Nearest Neighbors.,2005,17,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde17.html#MouratidisPBT05,https://doi.org/10.1109/TKDE.2005.172 +Kin-pong Chan,Haar Wavelets for Efficient Similarity Search of Time-Series: With and Without Time Warping.,2003,15,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde15.html#ChanFY03,https://doi.org/10.1109/TKDE.2003.1198399 +Kwok-Wa Lam,On Consistent Reading of Entire Databases.,2006,18,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde18.html#LamL06,http://doi.ieeecomputersociety.org/10.1109/TKDE.2006.64 +Richard Jensen,Semantics-Preserving Dimensionality Reduction: Rough and Fuzzy-Rough-Based Approaches.,2004,16,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde16.html#JensenS04,https://doi.org/10.1109/TKDE.2004.96 +Jacek Sroka,Translating Relational Queries into Spreadsheets.,2015,27,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde27.html#SrokaPST15,https://doi.org/10.1109/TKDE.2015.2397440 +Yuefeng Li,Enhancing Binary Classification by Modeling Uncertain Boundary in Three-Way Decisions.,2017,29,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde29.html#LiZXYLW17,https://doi.org/10.1109/TKDE.2017.2681671 +Krithi Ramamritham,A Formal Characterization of Epsilon Serializability.,1995,7,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde7.html#RamamrithamP95,https://doi.org/10.1109/69.476504 +Elisa Bertino,On Modeling Cost Functions for Object-Oriented Databases.,1997,9,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde9.html#Bertino97,https://doi.org/10.1109/69.599936 +Lawrence B. Holder,Discovery of Inexact Concepts from Structural Data.,1993,5,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde5.html#HolderC93,https://doi.org/10.1109/69.250085 +Shaul Dar,Extending SQL with Generalized Transitive Closure Functionality.,1993,5,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde5.html#DarA93,https://doi.org/10.1109/69.243510 +Shuai Ma,Extending Conditional Dependencies with Built-in Predicates.,2015,27,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde27.html#MaDFHC15,https://doi.org/10.1109/TKDE.2015.2451632 +Inés Fernando Vega López,Spatiotemporal aggregate computation: a survey.,2005,17,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde17.html#LopezSM05,https://doi.org/10.1109/TKDE.2005.34 +Pavel Shvaiko,Ontology Matching: State of the Art and Future Challenges.,2013,25,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde25.html#ShvaikoE13,https://doi.org/10.1109/TKDE.2011.253 +Haitao Jiang,WVTDB - A Semantic Content-Based Video Database System on the World Wide Web.,1998,10,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde10.html#JiangE98,https://doi.org/10.1109/69.738359 +Toru Ishida,Parallel Rule Firing in Production Systems.,1991,3,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde3.html#Ishida91,https://doi.org/10.1109/69.75883 +Ran Wolff,A Generic Local Algorithm for Mining Data Streams in Large Distributed Systems.,2009,21,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde21.html#WolffBK09,https://doi.org/10.1109/TKDE.2008.169 +Wei Wang 0010,An Approach to Active Spatial Data Mining Based on Statistical Information.,2000,12,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde12.html#WangYM00,https://doi.org/10.1109/69.877504 +Robert C. Goldstein,Materialization.,1994,6,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde6.html#GoldsteinS94,https://doi.org/10.1109/69.317711 +Theodoros Evgeniou,Image Representations and Feature Selection for Multimedia Database Search.,2003,15,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde15.html#EvgeniouPPP03,https://doi.org/10.1109/TKDE.2003.1209008 +Hillol Kargupta,A Fourier Spectrum-Based Approach to Represent Decision Trees for Mining Data Streams in Mobile Environments.,2004,16,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde16.html#KarguptaP04,https://doi.org/10.1109/TKDE.2004.1269599 +Tiziana Catarci,A Graph-Based Framework for Multiparadigmatic Visual Access to Databases.,1996,8,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde8.html#CatarciCCLS96,https://doi.org/10.1109/69.506712 +Hillol Kargupta,Orthogonal Decision Trees.,2006,18,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde18.html#KarguptaPD06,https://doi.org/10.1109/TKDE.2006.127 +Filippo Furfaro,Managing Multidimensional Historical Aggregate Data in Unstructured P2P Networks.,2010,22,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde22.html#FurfaroMP10,https://doi.org/10.1109/TKDE.2009.160 +Imad Khoury,An Efficient Web Page Change Detection System Based on an Optimized Hungarian Algorithm.,2007,19,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde19.html#KhouryEEMA07,https://doi.org/10.1109/TKDE.2007.1014 +Jongwuk Lee,Toward Scalable Indexing for Top-k Queries.,2014,26,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde26.html#LeeCLH14,https://doi.org/10.1109/TKDE.2013.149 +Can Lu,Exploring Hierarchies in Online Social Networks.,2016,28,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde28.html#LuYLW16,https://doi.org/10.1109/TKDE.2016.2546243 +Xiping Liu,Returning Clustered Results for Keyword Search on XML Documents.,2011,23,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde23.html#LiuWC11,https://doi.org/10.1109/TKDE.2011.183 +Feng Yan 0003,Distributed Autonomous Online Learning: Regrets and Intrinsic Privacy-Preserving Properties.,2013,25,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde25.html#YanSVQ13,https://doi.org/10.1109/TKDE.2012.191 +Hock Hee Ang,Predictive Handling of Asynchronous Concept Drifts in Distributed Environments.,2013,25,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde25.html#AngGZPH13,https://doi.org/10.1109/TKDE.2012.172 +Surnjani Djoko,An Emprirical Study of Domain Knowledge and Its Benefits to Substructure Discovery.,1997,9,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde9.html#DjokoCH97,https://doi.org/10.1109/69.617051 +Navneet Panda,KDX: An Indexer for Support Vector Machines.,2006,18,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde18.html#PandaC06,https://doi.org/10.1109/TKDE.2006.101 +Joo-Hwee Lim,Learning Similarity Matching in Multimedia Content-Based Retrieval.,2001,13,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde13.html#LimWSN01,https://doi.org/10.1109/69.956107 +Yi Zhang 0006,Bagging with Adaptive Costs.,2008,20,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde20.html#ZhangS08,https://doi.org/10.1109/TKDE.2007.190724 +John F. Roddick,Schema Vacuuming in Temporal Databases.,2009,21,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde21.html#Roddick09,https://doi.org/10.1109/TKDE.2008.201 +Robert Kessl,Probabilistic Static Load-Balancing of Parallel Mining of Frequent Sequences.,2016,28,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde28.html#Kessl16,https://doi.org/10.1109/TKDE.2016.2515622 +Zeng Zeng,On the Design of Distributed Object Placement and Load Balancing Strategies in Large-Scale Networked Multimedia Storage Systems.,2008,20,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde20.html#ZengV08,https://doi.org/10.1109/TKDE.2007.190694 +Susan E. Lander,Sharing Metainformation to Guide Cooperative Search Among Heterogeneous Reusable Agents.,1997,9,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde9.html#LanderL97,https://doi.org/10.1109/69.591446 +Xiaodong Liu,The Development of Fuzzy Rough Sets with the Use of Structures and Algebras of Axiomatic Fuzzy Sets.,2009,21,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde21.html#LiuPCS09,https://doi.org/10.1109/TKDE.2008.147 +Guojie Song,Overlapping Decomposition for Gaussian Graphical Modeling.,2015,27,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde27.html#SongHX15,https://doi.org/10.1109/TKDE.2015.2407358 +Pedro Pereira Rodrigues,Hierarchical Clustering of Time-Series Data Streams.,2008,20,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde20.html#RodriguesGP08,https://doi.org/10.1109/TKDE.2007.190727 +Ajay D. Kshemkalyani,A One-Phase Algorithm to Detect Distributed Deadlocks in Replicated Databases.,1999,11,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde11.html#KshemkalyaniS99,https://doi.org/10.1109/69.824601 +Huan Gui,Embedding Learning with Events in Heterogeneous Information Networks.,2017,29,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde29.html#GuiLTJNK017,https://doi.org/10.1109/TKDE.2017.2733530 +Debabrata Dey,A Distance-Based Approach to Entity Reconciliation in Heterogeneous Databases.,2002,14,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde14.html#DeySD02,https://doi.org/10.1109/TKDE.2002.1000343 +Hotham Altwaijry,QDA: A Query-Driven Approach to Entity Resolution.,2017,29,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde29.html#AltwaijryKM17,https://doi.org/10.1109/TKDE.2016.2623607 +Howard W. Beck,A Conceptual Clustering Algorithm for Database Schema Design.,1994,6,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde6.html#BeckAN94,https://doi.org/10.1109/69.334862 +Mikel Larrañaga,Automatic Generation of the Domain Module from Electronic Textbooks: Method and Validation.,2014,26,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde26.html#LarranagaCCEL14,https://doi.org/10.1109/TKDE.2013.36 +Ming Fan,Evaluation and Design of Online Cooperative Feedback Mechanisms for Reputation Management.,2005,17,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde17.html#FanTW05,https://doi.org/10.1109/TKDE.2005.26 +Lizhen Wang,Redundancy Reduction for Prevalent Co-Location Patterns.,2018,30,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde30.html#WangBZ18,https://doi.org/10.1109/TKDE.2017.2759110 +Ulrik Brandes,On Modularity Clustering.,2008,20,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde20.html#BrandesDGGHNW08,https://doi.org/10.1109/TKDE.2007.190689 +Qijun Zhu,Querying Distributed Spatial Datasets with Unknown Regions.,2014,26,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde26.html#ZhuLL14,https://doi.org/10.1109/TKDE.2013.169 +Stanley Y. W. Su,Association Algebra: A Mathematical Foundation for Object-Oriented Databases.,1993,5,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde5.html#SuGL93,https://doi.org/10.1109/69.243509 +Md. Saiful Islam 0003,Efficient Answering of Why-Not Questions in Similar Graph Matching.,2015,27,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde27.html#0003LL15,https://doi.org/10.1109/TKDE.2015.2432798 +Byron J. Gao,On the Deep Order-Preserving Submatrix Problem: A Best Effort Approach.,2012,24,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde24.html#GaoGEXZJ12,https://doi.org/10.1109/TKDE.2010.244 +Jeffrey J. P. Tsai,Model and Algorithm for Efficient Verification of High-Assurance Properties of Real-Time Systems.,2003,15,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde15.html#TsaiJS03,https://doi.org/10.1109/TKDE.2003.1185842 +Jianzhong Li,Efficient Aggregation Algorithms for Compressed Data Warehouses.,2002,14,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde14.html#LiS02,https://doi.org/10.1109/TKDE.2002.1000340 +Liming Zhan,Finding Top k Most Influential Spatial Facilities over Uncertain Objects.,2015,27,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde27.html#ZhanZZL15,https://doi.org/10.1109/TKDE.2015.2457899 +Jim Diederich,Creating Domain Specific Metadata for Scientific and Knowledge Bases.,1991,3,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde3.html#DiederichM91,https://doi.org/10.1109/69.109104 +Hua Wang 0002,A Flexible Payment Scheme and Its Role-Based Access Control.,2005,17,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde17.html#WangCZ05,https://doi.org/10.1109/TKDE.2005.35 +Mohamed Sarwat,LARS*: An Efficient and Scalable Location-Aware Recommender System.,2014,26,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde26.html#SarwatLEM14,https://doi.org/10.1109/TKDE.2013.29 +Guo-Jun Qi,Breaking the Barrier to Transferring Link Information across Networks.,2015,27,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde27.html#QiAH15,https://doi.org/10.1109/TKDE.2014.2313871 +Yunjun Gao,Optimal-Location-Selection Query Processing in Spatial Databases.,2009,21,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde21.html#GaoZCL09,https://doi.org/10.1109/TKDE.2009.81 +Aditya Tayal,RankRC: Large-Scale Nonlinear Rare Class Ranking.,2015,27,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde27.html#TayalCL15,https://doi.org/10.1109/TKDE.2015.2453171 +Xiang Lian,General Cost Models for Evaluating Dimensionality Reduction in High-Dimensional Spaces.,2009,21,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde21.html#LianC09,https://doi.org/10.1109/TKDE.2008.170 +Sara Hajian,A Methodology for Direct and Indirect Discrimination Prevention in Data Mining.,2013,25,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde25.html#HajianD13,https://doi.org/10.1109/TKDE.2012.72 +Qingxiang Wu,A Distribution-Index-Based Discretizer for Decision-Making with Symbolic AI Approaches.,2007,19,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde19.html#WuBPM07,https://doi.org/10.1109/TKDE.2007.250582 +Dalie Sun,Approximate Aggregations in Structured P2P Networks.,2011,23,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde23.html#SunWJL11,https://doi.org/10.1109/TKDE.2010.198 +Liang Wang,Efficient Mining of Frequent Item Sets on Large Uncertain Databases.,2012,24,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde24.html#WangCCLY12,https://doi.org/10.1109/TKDE.2011.165 +Robert Rush,Elecitation of Knowledge from Multiple Experts Using Network Inference.,1997,9,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde9.html#RushW97,https://doi.org/10.1109/69.634748 +Josep Carmona,Process Discovery Algorithms Using Numerical Abstract Domains.,2014,26,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde26.html#CarmonaC14,https://doi.org/10.1109/TKDE.2013.156 +Yuxing Han,GALLOP: GlobAL Feature Fused LOcation Prediction for Different Check-in Scenarios.,2017,29,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde29.html#HanYLW17,https://doi.org/10.1109/TKDE.2017.2705083 +Fabrizio Angiulli,Indexing Uncertain Data in General Metric Spaces.,2012,24,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde24.html#AngiulliF12,https://doi.org/10.1109/TKDE.2011.93 +Yinlai Jiang,Knowledge Acquisition Method Based on Singular Value Decomposition for Human Motion Analysis.,2014,26,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde26.html#JiangHW14,https://doi.org/10.1109/TKDE.2014.2316521 +Kjetil Nørvåg,The Vagabond Approach to Logging and Recovery in Transaction-Time Temporal Object Database Systems.,2004,16,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde16.html#Norvag04,https://doi.org/10.1109/TKDE.2004.1269673 +Leana Golubchik,Sync Classes: A Framework for Optimal Scheduling of Requests in Multimedia Storage Servers.,2000,12,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde12.html#GolubchikSMB00,https://doi.org/10.1109/69.842251 +Xiaofei He,Laplacian Regularized Gaussian Mixture Model for Data Clustering.,2011,23,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde23.html#HeCSBH11,https://doi.org/10.1109/TKDE.2010.259 +Bin Liu 0020,A General Geographical Probabilistic Factor Model for Point of Interest Recommendation.,2015,27,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde27.html#LiuXPFY15,https://doi.org/10.1109/TKDE.2014.2362525 +G. Sudhakar,Design and Performance Evaluation Considerations of a Multimedia Medical Database.,1993,5,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde5.html#SudhakarKG93,https://doi.org/10.1109/69.243517 +Stefano Ceri,Providing Flexible Process Support to Project-Centered Learning.,2009,21,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde21.html#CeriDMR09,https://doi.org/10.1109/TKDE.2008.134 +Debabrata Dey,A Decision Model for Choosing the Optimal Level of Storage in Temporal Databases.,1998,10,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde10.html#DeyBS98,https://doi.org/10.1109/69.683758 +Chee Yong Chan,Efficient Scheduling of Page Access in Index-Based Join Processing.,1997,9,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde9.html#Chano97,https://doi.org/10.1109/69.649322 +Steven C. H. Hoi,A Unified Log-Based Relevance Feedback Scheme for Image Retrieval.,2006,18,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde18.html#HoiLJ06,https://doi.org/10.1109/TKDE.2006.1599389 +Shicong Meng,State Monitoring in Cloud Datacenters.,2011,23,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde23.html#MengLW11,https://doi.org/10.1109/TKDE.2011.70 +Yung-Chun Chang,SPIRIT: A Tree Kernel-Based Method for Topic Person Interaction Detection.,2016,28,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde28.html#ChangCH16,https://doi.org/10.1109/TKDE.2016.2566620 +Alexander Borgida,Description Logics in Data Management.,1995,7,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde7.html#Borgida95,https://doi.org/10.1109/69.469829 +Amitava Chatterjee,Influential Rule Search Scheme (IRSS)-A New Fuzzy Pattern Classifier.,2004,16,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde16.html#ChatterjeeR04,https://doi.org/10.1109/TKDE.2004.26 +Guozhu Dong,Pattern-Aided Regression Modeling and Prediction Model Analysis.,2015,27,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde27.html#DongT15,https://doi.org/10.1109/TKDE.2015.2411609 +Iman Barjasteh,Cold-Start Recommendation with Provable Guarantees: A Decoupled Approach.,2016,28,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde28.html#BarjastehFRER16,https://doi.org/10.1109/TKDE.2016.2522422 +Kui Yu,Bridging Causal Relevance and Pattern Discriminability: Mining Emerging Patterns from High-Dimensional Data.,2013,25,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde25.html#YuDWW13,https://doi.org/10.1109/TKDE.2012.218 +Reynold Cheng,Querying Imprecise Data in Moving Object Environments.,2004,16,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde16.html#ChengKP04,https://doi.org/10.1109/TKDE.2004.46 +Wai Yin Mok,Generating Compact Redundancy-Free XML Documents from Conceptual-Model Hypergraphs.,2006,18,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde18.html#MokE06,https://doi.org/10.1109/TKDE.2006.125 +Pauray S. M. Tsai,Optimizing Queries with Foreign Functions in a Distributed Environment.,2002,14,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde14.html#TsaiC02,https://doi.org/10.1109/TKDE.2002.1019215 +Hao Huang,Diverse Power Iteration Embeddings: Theory and Practice.,2016,28,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde28.html#HuangYYQ16,https://doi.org/10.1109/TKDE.2015.2499184 +Brian R. Gaines,Induction of Meta-knowledge about Knowledge Discovery.,1993,5,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde5.html#GainesC93,https://doi.org/10.1109/69.250084 +Derek Batty,Automating Knowledge Acquisition: A Propositional Approach to Representing Expertise as an Alternative to Repertory Grid Technique.,1995,7,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde7.html#BattyK95,https://doi.org/10.1109/69.368518 +Jianyong Wang,TFP: An Efficient Algorithm for Mining Top-K Frequent Closed Itemsets.,2005,17,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde17.html#WangHLT05,https://doi.org/10.1109/TKDE.2005.81 +Jia-Huai You,Nonmonotonic Reasoning as Prioritized Argumentation.,2001,13,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde13.html#YouWY01,https://doi.org/10.1109/69.971190 +Yu Gu 0002,Effective and Efficient Clustering Methods for Correlated Probabilistic Graphs.,2014,26,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde26.html#0002GCY14,https://doi.org/10.1109/TKDE.2013.123 +Yakup Yildirim,Automatic Semantic Content Extraction in Videos Using a Fuzzy Ontology and Rule-Based Model.,2013,25,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde25.html#YildirimYY13,https://doi.org/10.1109/TKDE.2011.189 +Xiang Lian,Efficient Similarity Join over Multiple Stream Time Series.,2009,21,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde21.html#LianC09a,https://doi.org/10.1109/TKDE.2009.27 +A. Nur Zincir-Heywood,Object-Orientated Design of Digital Library Platforms for Multiagent Environments.,2002,14,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde14.html#Zincir-HeywoodHC02,https://doi.org/10.1109/69.991717 +Battista Biggio,Security Evaluation of PatternClassifiers under Attack.,2014,26,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde26.html#BiggioFR14,https://doi.org/10.1109/TKDE.2013.57 +Hanady Abdulsalam,Classification Using Streaming Random Forests.,2011,23,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde23.html#AbdulsalamSM11,https://doi.org/10.1109/TKDE.2010.36 +Jialei Wang,Online Feature Selection and Its Applications.,2014,26,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde26.html#WangZHJ14,https://doi.org/10.1109/TKDE.2013.32 +Zechao Li,Clustering-Guided Sparse Structural Learning for Unsupervised Feature Selection.,2014,26,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde26.html#LiLYZL14,https://doi.org/10.1109/TKDE.2013.65 +Yuan Yao 0001,Multi-Aspect + Transitivity + Bias: An Integral Trust Inference Model.,2014,26,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde26.html#YaoTYXL14,https://doi.org/10.1109/TKDE.2013.147 +Yingming Li,Bayesian Multi-Task Relationship Learning with Link Structure.,2016,28,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde28.html#LiYQZ16,https://doi.org/10.1109/TKDE.2015.2502958 +Xiang Cheng 0003,Co-ClusterD: A Distributed Framework for Data Co-Clustering with Sequential Updates.,2015,27,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde27.html#ChengSGY15,https://doi.org/10.1109/TKDE.2015.2451634 +Nabil R. Adam,A New Dynamic Voting Algorithm for Distributed Database Systems.,1994,6,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde6.html#Adam94,https://doi.org/10.1109/69.334856 +Le Wu,Modeling the Evolution of Users' Preferences and Social Links in Social Networking Services.,2017,29,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde29.html#WuGLCHDW17,https://doi.org/10.1109/TKDE.2017.2663422 +Changping Wang,Efficient Computation of G-Skyline Groups.,2018,30,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde30.html#WangWGYY18,https://doi.org/10.1109/TKDE.2017.2777994 +Zhaohui Wu 0001,Subontology-Based Resource Management for Web-Based e-Learning.,2009,21,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde21.html#WuMC09,https://doi.org/10.1109/TKDE.2008.127 +Markian M. Gooley,Efficient Reordering of Prolog Programs.,1989,1,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde1.html#GooleyW89,https://doi.org/10.1109/69.43422 +Fernando Benites,Evaluation of Hierarchical Interestingness Measures for Mining Pairwise Generalized Association Rules.,2014,26,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde26.html#BenitesS14,https://doi.org/10.1109/TKDE.2014.2320722 +Giorgios Kollias,Network Similarity Decomposition (NSD): A Fast and Scalable Approach to Network Alignment.,2012,24,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde24.html#KolliasMG12,https://doi.org/10.1109/TKDE.2011.174 +Carlos Ordonez 0001,Optimization of Linear Recursive Queries in SQL.,2010,22,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde22.html#Ordonez10,https://doi.org/10.1109/TKDE.2009.83 +Hengshu Zhu,Discovery of Ranking Fraud for Mobile Apps.,2015,27,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde27.html#ZhuXGC15,https://doi.org/10.1109/TKDE.2014.2320733 +Pradipta Maji,Rough-Fuzzy C-Medoids Algorithm and Selection of Bio-Basis for Amino Acid Sequence Analysis.,2007,19,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde19.html#MajiP07,https://doi.org/10.1109/TKDE.2007.190609 +Chuan Hu,Aspect-Level Influence Discovery from Graphs.,2016,28,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde28.html#HuC16,https://doi.org/10.1109/TKDE.2016.2538223 +Shashi K. Gadia,Algebraic Identities and Query Optimization in a Parametric Model for Relational Temporal Databases.,1998,10,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde10.html#GadiaN98,https://doi.org/10.1109/69.729733 +Alessandro Colantonio,Visual Role Mining: A Picture Is Worth a Thousand Roles.,2012,24,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde24.html#ColantonioPOV12,https://doi.org/10.1109/TKDE.2011.37 +Jianyuan Li,Scalable Constrained Spectral Clustering.,2015,27,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde27.html#LiXSL15,https://doi.org/10.1109/TKDE.2014.2356471 +Fereidoon Sadri,Reliability of Answers to Queries in Relational Databases.,1991,3,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde3.html#Sadri91,https://doi.org/10.1109/69.88004 +Ke Zhou 0002,Learning with Positive and Unlabeled Examples Using Topic-Sensitive PLSA.,2010,22,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde22.html#ZhouXYY10,https://doi.org/10.1109/TKDE.2009.56 +Jianxin Li,Quasi-SLCA Based Keyword QueryProcessing over Probabilistic XML Data.,2014,26,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde26.html#LiL0Y14,https://doi.org/10.1109/TKDE.2013.67 +Mohand-Said Hacid,A Database Approach for Modeling and Querying Video Data.,2000,12,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde12.html#HacidDK00,https://doi.org/10.1109/69.877505 +David L. Spooner,Guest Editor's Introduction: Research Surveys on Building Systems with Knowledge and Data Engineering Techniques.,1997,9,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde9.html#Spooner97,https://doi.org/10.1109/TKDE.1997.634746 +Colin L. Carter,Efficient Attribute-Oriented Generalization for Knowledge Discovery from Large Databases.,1998,10,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde10.html#CarterH98,https://doi.org/10.1109/69.683752 +Sihem Amer-Yahia,Composite Retrieval of Diverse and Complementary Bundles.,2014,26,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde26.html#Amer-YahiaBCFMZ14,https://doi.org/10.1109/TKDE.2014.2306678 +Takeshi Sakaki,Tweet Analysis for Real-Time Event Detection and Earthquake Reporting System Development.,2013,25,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde25.html#SakakiOM13,https://doi.org/10.1109/TKDE.2012.29 +Wisam Dakka,Answering General Time-Sensitive Queries.,2012,24,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde24.html#DakkaGI12,https://doi.org/10.1109/TKDE.2010.187 +Siyuan Liu,Structured Learning from Heterogeneous Behavior for Social Identity Linkage.,2015,27,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde27.html#LiuWZ15,https://doi.org/10.1109/TKDE.2015.2397434 +Chun-Nan Hsu,Semantic Query Optimization for Query Plans of Heterogeneous Multidatabase Systems.,2000,12,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde12.html#HsuK00,https://doi.org/10.1109/69.895804 +Binh Han,A Systematic Approach to Clustering Whole Trajectories of Mobile Objects in Road Networks.,2017,29,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde29.html#HanLO17,https://doi.org/10.1109/TKDE.2017.2652454 +Lei Chen 0031,Towards Why-Not Spatial Keyword Top-k Queries: A Direction-Aware Approach.,2018,30,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde30.html#ChenLXJ18,https://doi.org/10.1109/TKDE.2017.2778731 +Sheng Wang 0007,Reverse k Nearest Neighbor Search over Trajectories.,2018,30,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde30.html#WangBCSC18,https://doi.org/10.1109/TKDE.2017.2776268 +Yuan Yan Tang,Document Processing for Automatic Knowledge Acquisition.,1994,6,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde6.html#TangYS94,https://doi.org/10.1109/69.273022 +Steven Euijong Whang,Pay-As-You-Go Entity Resolution.,2013,25,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde25.html#WhangMG13,https://doi.org/10.1109/TKDE.2012.43 +Huey-Ru Wu,Profiling Moving Objects by Dividing and Clustering Trajectories Spatiotemporally.,2013,25,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde25.html#WuYC13,https://doi.org/10.1109/TKDE.2012.249 +Michael J. Carey 0001,On Transaction Boundaries in Active Databases: A Performance Perspective.,1991,3,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde3.html#CareyJL91,https://doi.org/10.1109/69.91062 +Fosca Giannotti,Specifying Mining Algorithms with Iterative User-Defined Aggregates.,2004,16,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde16.html#GiannottiMT04,https://doi.org/10.1109/TKDE.2004.64 +Yunjun Gao,Visible Reverse k-Nearest Neighbor Query Processing in Spatial Databases.,2009,21,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde21.html#GaoZCLLL09,https://doi.org/10.1109/TKDE.2009.113 +Ah Chung Tsoi,Pattern Discovery on Australian Medical Claims Data-A Systematic Approach.,2005,17,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde17.html#TsoiZH05,https://doi.org/10.1109/TKDE.2005.168 +Kien A. Hua,Dynamic Load Balancing in Multicomputer Database Systems Using Partition Tuning.,1995,7,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde7.html#HuaLH95,https://doi.org/10.1109/69.476502 +Thomas P. Trappenberg,Input Variable Selection: Mutual Information and Linear Mixing Measures.,2006,18,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde18.html#TrappenbergOB06,https://doi.org/10.1109/TKDE.2006.11 +Huiqi Xu,Building Confidential and Efficient Query Services in the Cloud with RASP Data Perturbation.,2014,26,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde26.html#XuGC14,https://doi.org/10.1109/TKDE.2012.251 +Christian S. Jensen,Queries on Change in an Extended Relational Model.,1992,4,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde4.html#JensenM92,https://doi.org/10.1109/69.134258 +V. S. Subrahmanian,Nonmonotonic Logic Programming.,1999,11,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde11.html#Subrahmanian99,https://doi.org/10.1109/69.755623 +Ning Xu,Heterogeneous Environment Aware Streaming Graph Partitioning.,2015,27,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde27.html#XuC0HS15,https://doi.org/10.1109/TKDE.2014.2377743 +Laurynas Siksnys,Aggregating and Disaggregating Flexibility Objects.,2015,27,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde27.html#SiksnysVHP15,https://doi.org/10.1109/TKDE.2015.2445755 +Stanley Y. W. Su,Temporal Association Algebra: A Mathematical Foundation for Processing Object-Oriented Temporal Databases.,1998,10,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde10.html#SuHC98,https://doi.org/10.1109/69.687975 +Xi Li 0001,Context-Aware Hypergraph Construction for Robust Spectral Clustering.,2014,26,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde26.html#LiHSDZ14,https://doi.org/10.1109/TKDE.2013.126 +Deb Dutta Ganguly,A Space-and-Time-Efficient Codeing Algorithm for Lattice Computations.,1994,6,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde6.html#GangulyMR94,https://doi.org/10.1109/69.317709 +Duo Zhang,Principled Graph Matching Algorithms for Integrating Multiple Data Sources.,2015,27,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde27.html#ZhangRG15,https://doi.org/10.1109/TKDE.2015.2426714 +Liwu Li 0001,High-Level Petri Net Model of Logic Program with Negation.,1994,6,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde6.html#Li94,https://doi.org/10.1109/69.334863 +Yingxia Shao,Fast Parallel Path Concatenation for Graph Extraction.,2017,29,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde29.html#ShaoLCHCLTX17,https://doi.org/10.1109/TKDE.2017.2716939 +Rakesh Agrawal 0001,Algorithms for Searching Massive Graphs.,1994,6,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde6.html#AgrawalJ94,https://doi.org/10.1109/69.277767 +Kingshy Goh,Using One-Class and Two-Class SVMs for Multiclass Image Annotation.,2005,17,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde17.html#GohCL05,https://doi.org/10.1109/TKDE.2005.170 +Dingjiang Huang,Robust Median Reversion Strategy for Online Portfolio Selection.,2016,28,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde28.html#HuangZLHZ16,https://doi.org/10.1109/TKDE.2016.2563433 +Chih-Hua Tai,Structural Diversity for Resisting Community Identification in Published Social Networks.,2014,26,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde26.html#TaiYYC14,https://doi.org/10.1109/TKDE.2013.40 +Sitong Liu,A Prefix-Filter based Method for Spatio-Textual Similarity Join.,2014,26,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde26.html#LiuLF14,https://doi.org/10.1109/TKDE.2013.83 +Thanuka Wickramarathne,CoFiDS: A Belief-Theoretic Approach for Automated Collaborative Filtering.,2011,23,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde23.html#WickramarathnePKJ11,https://doi.org/10.1109/TKDE.2010.88 +Dmitri V. Kalashnikov,Web People Search via Connection Analysis.,2008,20,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde20.html#KalashnikovCMN08,https://doi.org/10.1109/TKDE.2008.78 +Goetz Graefe,Volcano - An Extensible and Parallel Query Evaluation System.,1994,6,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde6.html#Graefe94,https://doi.org/10.1109/69.273032 +Franz G. Amador,"Electronic ""How Things Work"" Articles: Two Early Prototypes.",1993,5,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde5.html#AmadorBBDFNNSSSSWW93,https://doi.org/10.1109/69.234773 +Ahmet Bulut,Optimization Techniques for Reactive Network Monitoring.,2009,21,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde21.html#BulutKMSS09,https://doi.org/10.1109/TKDE.2008.203 +Dick B. Simmons,Manager Associate.,1993,5,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde5.html#SimmonsEE93,https://doi.org/10.1109/69.224195 +Chiung-Hon Leon Lee,Pattern Discovery of Fuzzy Time Series for Financial Prediction.,2006,18,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde18.html#LeeLC06,https://doi.org/10.1109/TKDE.2006.80 +Jianbin Huang,Backward Path Growth for Efficient Mobile Sequential Recommendation.,2015,27,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde27.html#HuangHSLZCS15,https://doi.org/10.1109/TKDE.2014.2298012 +Yue-Hsun Lin,CDAMA: Concealed Data Aggregation Scheme for Multiple Applications in Wireless Sensor Networks.,2013,25,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde25.html#LinCS13,https://doi.org/10.1109/TKDE.2012.94 +Sen Su,Differentially Private Frequent Itemset Mining via Transaction Splitting.,2015,27,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde27.html#SuXCLY15,https://doi.org/10.1109/TKDE.2015.2399310 +Kenneth P. Smith,Correctness Criteria for Multilevel Secure Transactions.,1996,8,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde8.html#SmithBJN96,https://doi.org/10.1109/69.485627 +Yao-Chung Fan,A Framework for Enabling User Preference Profiling through Wi-Fi Logs.,2016,28,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde28.html#FanCTWC16,https://doi.org/10.1109/TKDE.2015.2489657 +Won Kim 0001,Architecture of the ORION Next-Generation Database System.,1990,2,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde2.html#KimGBW90,https://doi.org/10.1109/69.50909 +Verena Kantere,Storing and Indexing Spatial Data in P2P Systems.,2009,21,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde21.html#KantereSS09,https://doi.org/10.1109/TKDE.2008.139 +Yuan Wang,Using Hashtag Graph-Based Topic Model to Connect Semantically-Related Words Without Co-Occurrence in Microblogs.,2016,28,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde28.html#WangLHF16,https://doi.org/10.1109/TKDE.2016.2531661 +Samur Araújo,SERIMI: Class-Based Matching for Instance Matching Across Heterogeneous Datasets.,2015,27,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde27.html#AraujoTVS15,https://doi.org/10.1109/TKDE.2014.2365779 +Fereidoon Sadri,Information Source Tracking Method: Efficiency Issues,1995,7,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde7.html#Sadri95a,https://doi.org/10.1109/69.476500 +Luca Console,Local Reasoning and Knowledge Compilation for Efficient Temporal Abduction.,2002,14,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde14.html#ConsoleTD02,https://doi.org/10.1109/TKDE.2002.1047764 +Jianqiu Xu,Range Queries on Multi-Attribute Trajectories.,2018,30,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde30.html#Xu0G18,https://doi.org/10.1109/TKDE.2017.2787711 +Indranil Palit,Scalable and Parallel Boosting with MapReduce.,2012,24,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde24.html#PalitR12,https://doi.org/10.1109/TKDE.2011.208 +Wei Guo 0008,Sparse-TDA: Sparse Realization of Topological Data Analysis for Multi-Way Classification.,2018,30,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde30.html#GuoMBB18,https://doi.org/10.1109/TKDE.2018.2790386 +Weiwei Sun,An Air Index for Spatial Query Processing in Road Networks.,2015,27,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde27.html#SunCZCL15,https://doi.org/10.1109/TKDE.2014.2330836 +Wesley W. Chu,A Structured Approach for Cooperative Query Answering.,1994,6,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde6.html#ChuC94,https://doi.org/10.1109/69.317704 +Xun Yi,Security of Chien's Efficient Time-Bound Hierarchical Key Assignment Scheme.,2005,17,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde17.html#Yi05,https://doi.org/10.1109/TKDE.2005.152 +Kikuo Fujimura,On Robustness of B-Trees.,1993,5,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde5.html#FujimuraJ93,https://doi.org/10.1109/69.224204 +Evrim Acar,Unsupervised Multiway Data Analysis: A Literature Survey.,2009,21,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde21.html#AcarY09,https://doi.org/10.1109/TKDE.2008.112 +Alok Watve,Topological Transformation Approaches to Database Query Processing.,2015,27,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde27.html#WatvePSML15,https://doi.org/10.1109/TKDE.2014.2363658 +Richard Y. Wang,A Framework for Analysis of Data Quality Research.,1995,7,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde7.html#WangSF95,https://doi.org/10.1109/69.404034 +Matteo Spiotta,Temporal Conformance Analysis and Explanation of Clinical Guidelines Execution: An Answer Set Programming Approach.,2017,29,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde29.html#SpiottaTD17,https://doi.org/10.1109/TKDE.2017.2734084 +Paul D. Stachour,Design of LDV: A Multilevel Secure Relational Database Management System.,1990,2,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde2.html#StachourT90,https://doi.org/10.1109/69.54719 +Peter Triantafillou,A Comprehensive Analytical Performance Model for Disk Devices under Random Workloads.,2002,14,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde14.html#TriantafillouCG02,https://doi.org/10.1109/69.979978 +Jin-Mao Wei,Ensemble Rough Hypercuboid Approach for Classifying Cancers.,2010,22,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde22.html#WeiWY10,https://doi.org/10.1109/TKDE.2009.114 +Lelin Zhang,A Scalable Approach for Content-Based Image Retrieval in Peer-to-Peer Networks.,2016,28,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde28.html#ZhangWMF16,https://doi.org/10.1109/TKDE.2015.2505284 +Nicolas Kourtellis,Scalable Online Betweenness Centrality in Evolving Graphs.,2015,27,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde27.html#KourtellisMB15,https://doi.org/10.1109/TKDE.2015.2419666 +Daniel Barbará,Mobile Computing and Databases - A Survey.,1999,11,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde11.html#Barbara99,https://doi.org/10.1109/69.755619 +Anand Kumar 0001,Computing Spatial Distance Histograms for Large Scientific Data Sets On-the-Fly.,2014,26,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde26.html#0002GYHT014,https://doi.org/10.1109/TKDE.2014.2298015 +Gary J. Nutt,Dynamically Negotiated Resource Management for Data Intensive Application Suites.,2000,12,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde12.html#NuttBGSHB00,https://doi.org/10.1109/69.842252 +Atul Prakash,Data Management Issues and Trade-Offs in CSCW Systems.,1999,11,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde11.html#PrakashSL99,https://doi.org/10.1109/69.755630 +Salvatore Ruggieri,Efficient C4.5.,2002,14,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde14.html#Ruggieri02,https://doi.org/10.1109/69.991727 +Elisa Bertino,Navigational Accesses in a Temporal Object Model.,1998,10,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde10.html#BertinoFG98,https://doi.org/10.1109/69.706062 +Ying Chen,Efficient Global Optimization for Image Registration.,2002,14,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde14.html#ChenBIRB02,https://doi.org/10.1109/69.979974 +Soumitra Dutta,Case-Based Reasoning Systems: From Automation to Decision-Aiding and Simulation.,1997,9,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde9.html#DuttaWD97,https://doi.org/10.1109/69.649316 +Sergio Flesca,Rewriting Queries Using Views.,2001,13,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde13.html#FlescaG01,https://doi.org/10.1109/69.971191 +Akrivi Vlachou,Efficient Routing of Subspace Skyline Queries over Highly Distributed Data.,2010,22,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde22.html#VlachouDKV10,https://doi.org/10.1109/TKDE.2009.204 +Bi-Ru Dai,Adaptive Clustering for Multiple Evolving Streams.,2006,18,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde18.html#DaiHYC06,https://doi.org/10.1109/TKDE.2006.137 +Jiajun Liu,On the Influence Propagation of Web Videos.,2014,26,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde26.html#LiuYHYS14,https://doi.org/10.1109/TKDE.2013.142 +Se June Hong,Use of Contextaul Information for Feature Ranking and Discretization.,1997,9,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde9.html#Hong97a,https://doi.org/10.1109/69.634751 +Andrew Skabar,Clustering Sentence-Level Text Using a Novel Fuzzy Relational Clustering Algorithm.,2013,25,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde25.html#SkabarA13,https://doi.org/10.1109/TKDE.2011.205 +Susanne Boll,ZYX-A Multimedia Document Model for Reuse and Adaptation of Multimedia Content.,2001,13,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde13.html#BollK01,https://doi.org/10.1109/69.929895 +Xiaojun Chen 0006,TW-k-Means: Automated Two-Level Variable Weighting Clustering Algorithm for Multiview Data.,2013,25,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde25.html#ChenXHY13,https://doi.org/10.1109/TKDE.2011.262 +Chiang Lee,Optimizing Large Join Queries Using A Graph-Based Approach.,2001,13,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde13.html#LeeSC01,https://doi.org/10.1109/69.917567 +Xinjie Zhou,CMiner: Opinion Extraction and Summarization for Chinese Microblogs.,2016,28,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde28.html#ZhouWX16,https://doi.org/10.1109/TKDE.2016.2541148 +Tan Apaydin,Access Structures for Angular Similarity Queries.,2006,18,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde18.html#ApaydinF06,https://doi.org/10.1109/TKDE.2006.165 +Xiaochi Wei,I Know What You Want to Express: Sentence Element Inference by Incorporating External Knowledge Base.,2017,29,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde29.html#WeiHNZMC17,https://doi.org/10.1109/TKDE.2016.2622705 +Bo Liu 0002,An Efficient Approach for Outlier Detection with Imperfect Data Labels.,2014,26,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde26.html#LiuXYHC14,https://doi.org/10.1109/TKDE.2013.108 +Meng Jiang 0001,Scalable Recommendation with Social Contextual Information.,2014,26,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde26.html#JiangCWZY14,https://doi.org/10.1109/TKDE.2014.2300487 +Lijiang Chen,Constrained Skyline Query Processing against Distributed Data Sites.,2011,23,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde23.html#ChenCL11,https://doi.org/10.1109/TKDE.2010.103 +Yoshikane Takahashi,Fuzzy Database Query Languages and Their Relational Completeness Theorem.,1993,5,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde5.html#Takahashi93,https://doi.org/10.1109/69.204096 +Luca Anselma,A Comprehensive Approach to 'Now' in Temporal Relational Databases: Semantics and Representation.,2016,28,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde28.html#AnselmaPSST16,https://doi.org/10.1109/TKDE.2016.2588490 +Panagiotis Papadimitriou 0002,TACI: Taxonomy-Aware Catalog Integration.,2013,25,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde25.html#PapadimitriouTFG13,https://doi.org/10.1109/TKDE.2012.54 +Ilaria Bartolini,The Skyline of a Probabilistic Relation.,2013,25,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde25.html#BartoliniCP13,https://doi.org/10.1109/TKDE.2012.102 +Andranik Khachatryan,Improving Accuracy and Robustness of Self-Tuning Histograms by Subspace Clustering.,2015,27,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde27.html#KhachatryanMSB15,https://doi.org/10.1109/TKDE.2015.2416725 +Nick Bassiliades,InterBase-KB: Integrating a Knowledge Base System with a Multidatabase System for Data Warehousing.,2003,15,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde15.html#BassiliadesVEH03,https://doi.org/10.1109/TKDE.2003.1232272 +Raymond T. Yeh,Professor Ramamoorthy: A Personal Introduction.,1999,11,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde11.html#Yeh99,http://doi.ieeecomputersociety.org/10.1109/TKDE.1999.10001 +Wei Shen 0004,SHINE+: A General Framework for Domain-Specific Entity Linking with Heterogeneous Information Networks.,2018,30,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde30.html#ShenHWYY18,https://doi.org/10.1109/TKDE.2017.2730862 +Alberto Abelló,Using Semantic Web Technologies for Exploratory OLAP: A Survey.,2015,27,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde27.html#AbelloRPLNCS15,https://doi.org/10.1109/TKDE.2014.2330822 +Yufei Tao,ANGEL: Enhancing the Utility of Generalization for Privacy Preserving Publication.,2009,21,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde21.html#TaoCXZZ09,https://doi.org/10.1109/TKDE.2009.65 +Josif Grabocka,Scalable Classification of Repetitive Time Series Through Frequencies of Local Polynomials.,2015,27,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde27.html#GrabockaWS15,https://doi.org/10.1109/TKDE.2014.2377746 +Fabio Fassetti,Mining Loosely Structured Motifs from Biological Data.,2008,20,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde20.html#FassettiGT08,https://doi.org/10.1109/TKDE.2008.65 +Xiohui Song,Maintaining Temporal Consistency: Pessimistic vs. Optimitic Concurrency Control.,1995,7,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde7.html#SongL95,https://doi.org/10.1109/69.469820 +Jeffrey R. Bach,A Visual Information Management System for the Interactive Retrieval of Faces.,1993,5,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde5.html#BachPJ93,https://doi.org/10.1109/69.234774 +Ding-An Chiang,The Cyclic Model Analysis on Sequential Patterns.,2009,21,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde21.html#ChiangWCC09,https://doi.org/10.1109/TKDE.2009.36 +Sang-Bum Kim,Some Effective Techniques for Naive Bayes Text Classification.,2006,18,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde18.html#KimHRM06,https://doi.org/10.1109/TKDE.2006.180 +Knuth Stener Grimsrud,Multiple Prefetch Adaptive Disk Caching.,1993,5,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde5.html#GrimsrudAN93,https://doi.org/10.1109/69.204094 +Paul Ammann,The Partitioned Synchronization Rule for Planar Extendible Partial Orders.,1995,7,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde7.html#AmmannAJ95,https://doi.org/10.1109/69.469819 +Jayant R. Haritsa,Real-Time Index Concurrency Control.,2000,12,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde12.html#HaritsaS00,https://doi.org/10.1109/69.846294 +Kai Yu,Robust Model-Based Learning via Spatial-EM Algorithm.,2015,27,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde27.html#YuDBC15,https://doi.org/10.1109/TKDE.2014.2373355 +Wei Liu,ViDE: A Vision-Based Approach for Deep Web Data Extraction.,2010,22,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde22.html#LiuMM10,https://doi.org/10.1109/TKDE.2009.109 +Rakesh Agrawal 0001,Parallel Mining of Association Rules.,1996,8,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde8.html#AgrawalS96,https://doi.org/10.1109/69.553164 +Faiz Currim,Adding Temporal Constraints to XML Schema.,2012,24,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde24.html#CurrimCDSTZ12,https://doi.org/10.1109/TKDE.2011.74 +Andrew Hamilton-Wright,Transparent Decision Support Using Statistical Reasoning and Fuzzy Inference.,2006,18,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde18.html#Hamilton-WrightS06,https://doi.org/10.1109/TKDE.2006.132 +Huaiqing Wang,A Framework of Fuzzy Diagnosis.,2004,16,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde16.html#WangMXZ04,https://doi.org/10.1109/TKDE.2004.80 +Yufei Tao,Reverse Nearest Neighbor Search in Metric Spaces.,2006,18,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde18.html#TaoYM06,https://doi.org/10.1109/TKDE.2006.148 +Zhiting Lin,Clarifying Trust in Social Internet of Things.,2018,30,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde30.html#LinD18,https://doi.org/10.1109/TKDE.2017.2762678 +Xin Lin,Reverse Keyword Search for Spatio-Textual Top-$k$ Queries in Location-Based Services.,2015,27,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde27.html#LinXH15,https://doi.org/10.1109/TKDE.2015.2436933 +U. Kang,HEigen: Spectral Analysis for Billion-Scale Graphs.,2014,26,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde26.html#KangMPF14,https://doi.org/10.1109/TKDE.2012.244 +Junzhong Ji,Survey: Functional Module Detection from Protein-Protein Interaction Networks.,2014,26,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde26.html#JiZLQL14,https://doi.org/10.1109/TKDE.2012.225 +Chia-Hui Chang,Enabling Concept-Based Relevance Feedback for Information Retrieval on the WWW.,1999,11,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde11.html#ChangH99,https://doi.org/10.1109/69.790812 +Lu Chen,Metric All-k-Nearest-Neighbor Search.,2016,28,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde28.html#ChenGCZ16,https://doi.org/10.1109/TKDE.2015.2453954 +Wenjian Xu,Explaining Missing Answers to Top-k SQL Queries.,2016,28,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde28.html#XuHLC16,https://doi.org/10.1109/TKDE.2016.2547398 +Nick Koudas,High Dimensional Similarity Joins: Algorithms and Performance Evaluation.,2000,12,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde12.html#KoudasS00,https://doi.org/10.1109/69.842246 +Chenxia Wu,Semi-Supervised Nonlinear Hashing Using Bootstrap Sequential Projection Learning.,2013,25,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde25.html#WuZCCB13,https://doi.org/10.1109/TKDE.2012.76 +Y. C. Tay,Load Sharing in Distributed Multimedia-on-Demand Systems.,2000,12,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde12.html#TayP00,https://doi.org/10.1109/69.846293 +Deron Liang,Performance Analysis of Long-Lived Transaction Processing Systems with Rollbacks and Aborts.,1996,8,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde8.html#LiangT96,https://doi.org/10.1109/69.542031 +Ruey-Kai Sheu,A New Architecture for Integration of CORBA and OODB.,1999,11,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde11.html#SheuLYL99,https://doi.org/10.1109/69.806934 +Jun-Tae Kim,Classification and Retrieval of Knowledge on Parallel Marker Passing Architecture.,1993,5,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde5.html#KimKM93,https://doi.org/10.1109/69.243507 +Geoffrey I. Webb,Multistrategy Ensemble Learning: Reducing Error by Combining Ensemble Learning Techniques.,2004,16,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde16.html#WebbZ04,https://doi.org/10.1109/TKDE.2004.29 +Hong Huang 0001,Triadic Closure Pattern Analysis and Prediction in Social Networks.,2015,27,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde27.html#HuangTLLF15,https://doi.org/10.1109/TKDE.2015.2453956 +Yilun Cai,Maximizing a Record's Standing in a Relation.,2015,27,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde27.html#CaiTM15,https://doi.org/10.1109/TKDE.2015.2407329 +Cheng-Ru Young,Efficient Dissemination of Transaction-Consistent Data in Broadcast Environments.,2007,19,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde19.html#YoungC07,https://doi.org/10.1109/TKDE.2007.42 +Patrice Buche,Fuzzy Web Data Tables Integration Guided by an Ontological and Terminological Resource.,2013,25,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde25.html#BucheDIS13,https://doi.org/10.1109/TKDE.2011.245 +Alison McKay,A Framework for Product Data.,1996,8,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde8.html#McKayBP96,https://doi.org/10.1109/69.542033 +Tzong-An Su,Controlling FD and MVD Inferences in Multilevel Relational Database Systems.,1991,3,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde3.html#SuO91,https://doi.org/10.1109/69.109108 +M. Brian Blake,Knowledge Discovery in Services (KDS): Aggregating Software Services to Discover Enterprise Mashups.,2011,23,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde23.html#BlakeN11,https://doi.org/10.1109/TKDE.2010.168 +Chabane Djeraba,Association and Content-Based Retrieval.,2003,15,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde15.html#Djeraba03,https://doi.org/10.1109/TKDE.2003.1161586 +Georgios Chatzimilioudis,Distributed In-Memory Processing of All k Nearest Neighbor Queries.,2016,28,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde28.html#Chatzimilioudis16,https://doi.org/10.1109/TKDE.2015.2503768 +Bo Liu,Influence Spreading Path and Its Application to the Time Constrained Social Influence Maximization Problem and Beyond.,2014,26,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde26.html#LiuCZXC14,https://doi.org/10.1109/TKDE.2013.106 +Ahsan Habib,A Tree-Based Forward Digest Protocol to Verify Data Integrity in Distributed Media Streaming.,2005,17,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde17.html#HabibXABC05,https://doi.org/10.1109/TKDE.2005.102 +Michelangelo Diligenti,A Unified Probabilistic Framework for Web Page Scoring Systems.,2004,16,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde16.html#DiligentiGM04,https://doi.org/10.1109/TKDE.2004.1264818 +Daxin Jiang,An Interactive Approach to Mining Gene Expression Data.,2005,17,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde17.html#JiangPZ05,https://doi.org/10.1109/TKDE.2005.159 +Wei Lu,Efficiently Supporting Edit Distance Based String Similarity Search Using B $^+$-Trees.,2014,26,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde26.html#LuDHO14,https://doi.org/10.1109/TKDE.2014.2309131 +Mohammad Nabil,Picture Similarity Retrieval Using 2D Projection Interval Representation.,1996,8,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde8.html#NabilNS96,https://doi.org/10.1109/69.536246 +Kaio Wagner Lima Rodrigues,Removing DUST Using Multiple Alignment of Sequences.,2015,27,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde27.html#RodriguesCMS15,https://doi.org/10.1109/TKDE.2015.2407354 +W. Kevin Wilkinson,The Iris Architecture and Implementation.,1990,2,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde2.html#WilkinsonLH90,https://doi.org/10.1109/69.50906 +Shang-Ming Zhou,Extracting Takagi-Sugeno Fuzzy Rules with Interpretable Submodels via Regularization of Linguistic Modifiers.,2009,21,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde21.html#ZhouG09,https://doi.org/10.1109/TKDE.2008.208 +Yanqing Ji,A Method for Mining Infrequent Causal Associations and Its Application in Finding Adverse Drug Reaction Signal Pairs.,2013,25,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde25.html#JiYTDMM13,https://doi.org/10.1109/TKDE.2012.28 +Jiao Su,Reachability Querying: Can It Be Even Faster?,2017,29,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde29.html#SuZWY17,https://doi.org/10.1109/TKDE.2016.2631160 +Takao Yamashita,Distributed View Divergence Control of Data Freshness in Replicated Database Systems.,2009,21,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde21.html#Yamashita09,https://doi.org/10.1109/TKDE.2008.230 +Li Xiong 0001,PeerTrust: Supporting Reputation-Based Trust for Peer-to-Peer Electronic Communities.,2004,16,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde16.html#XiongL04,https://doi.org/10.1109/TKDE.2004.1318566 +Hung-Yu Chien,Efficient Time-Bound Hierarchical Key Assignment Scheme.,2004,16,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde16.html#Chien04,https://doi.org/10.1109/TKDE.2004.59 +Runfang Zhou,GossipTrust for Fast Reputation Aggregation in Peer-to-Peer Networks.,2008,20,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde20.html#ZhouHC08,https://doi.org/10.1109/TKDE.2008.48 +Zhefeng Wang,Activity Maximization by Effective Information Diffusion in Social Networks.,2017,29,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde29.html#WangYPCC17,https://doi.org/10.1109/TKDE.2017.2740284 +Ling Chen 0004,Mining Health Examination Records - A Graph-Based Approach.,2016,28,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde28.html#ChenLSPBHH16,https://doi.org/10.1109/TKDE.2016.2561278 +Nicolas Bruno,The Threshold Algorithm: From Middleware Systems to the Relational Engine.,2007,19,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde19.html#BrunoW07,https://doi.org/10.1109/TKDE.2007.1011 +Lukasz Golab,Scalable Scheduling of Updates in Streaming Data Warehouses.,2012,24,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde24.html#GolabJS12,https://doi.org/10.1109/TKDE.2011.45 +Jiuyong Li,Causal Decision Trees.,2017,29,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde29.html#LiML0L17,https://doi.org/10.1109/TKDE.2016.2619350 +Ming Xiong,Scheduling Transactions with Temporal Constraints: Exploiting Data Semantics.,2002,14,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde14.html#XiongRSTS02,https://doi.org/10.1109/TKDE.2002.1033781 +Vaibhav Arora,Janus: A Hybrid Scalable Multi-Representation Cloud Datastore.,2018,30,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde30.html#AroraNAA18,https://doi.org/10.1109/TKDE.2017.2773607 +Matthew Malensek,Analytic Queries over Geospatial Time-Series Data Using Distributed Hash Tables.,2016,28,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde28.html#MalensekPP16,https://doi.org/10.1109/TKDE.2016.2520475 +Luis M. de Campos,Using Personalization to Improve XML Retrieval.,2014,26,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde26.html#CamposFHV14,https://doi.org/10.1109/TKDE.2013.75 +C. V. Ramamoorthy,Knowledge and Data Engineering.,1989,1,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde1.html#Ramamoorthy89,https://doi.org/10.1109/69.43400 +Jing He 0004,Domain-Driven Classification Based on Multiple Criteria and Multiple Constraint-Level Programming for Intelligent Credit Scoring.,2010,22,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde22.html#HeZSH10,https://doi.org/10.1109/TKDE.2010.43 +Amal Zouaq,Evaluating the Generation of Domain Ontologies in the Knowledge Puzzle Project.,2009,21,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde21.html#ZouaqN09a,https://doi.org/10.1109/TKDE.2009.25 +Sakti Pramanik,Description and Identification of Distributed Fragments of Recursive Relations.,1996,8,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde8.html#PramanikJ96,https://doi.org/10.1109/69.553168 +Wei Wang 0038,Adaptive Broadcasting for Similarity Queries in Wireless Content Delivery Systems.,2008,20,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde20.html#WangR08,https://doi.org/10.1109/TKDE.2007.190717 +Ravi Mukkamala,Measuring the Effects of Data Distribution Models on Performance Evaluation of Distributed Database Systems.,1989,1,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde1.html#Mukkamala89,https://doi.org/10.1109/69.43424 +Liang Xu,Labeling Dynamic XML Documents: An Order-Centric Approach.,2012,24,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde24.html#XuLW12,https://doi.org/10.1109/TKDE.2010.221 +Sicheng Xiong,Active Learning from Relative Comparisons.,2015,27,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde27.html#XiongPRF15,https://doi.org/10.1109/TKDE.2015.2462365 +Peter Van Weert,Efficient Lazy Evaluation of Rule-Based Programs.,2010,22,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde22.html#Weert10,https://doi.org/10.1109/TKDE.2009.208 +Jan Chomicki,Conflict Resolution Using Logic Programming.,2003,15,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde15.html#ChomickiLN03,https://doi.org/10.1109/TKDE.2003.1161596 +Victor B. Lortz,MDARTS: A Multiprocessor Database Architecture for Hard Real-Time Systems.,2000,12,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde12.html#LortzSK00,https://doi.org/10.1109/69.868911 +Hongfu Liu,Spectral Ensemble Clustering via Weighted K-Means: Theoretical and Practical Evidence.,2017,29,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde29.html#LiuWLTF17,https://doi.org/10.1109/TKDE.2017.2650229 +Marcelo Arenas,"Some Remarks on the Paper ""semQA: SPARQL with Idempotent Disjunction"".",2011,23,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde23.html#ArenasGP11,https://doi.org/10.1109/TKDE.2010.139 +María Pérez-Ortiz,Graph-Based Approaches for Over-Sampling in the Context of Ordinal Regression.,2015,27,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde27.html#Perez-OrtizGHY15,https://doi.org/10.1109/TKDE.2014.2365780 +Dan Olteanu,SPEX: Streamed and Progressive Evaluation of XPath.,2007,19,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde19.html#Olteanu07,https://doi.org/10.1109/TKDE.2007.1063 +Wu-Jun Li,MILD: Multiple-Instance Learning via Disambiguation.,2010,22,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde22.html#LiY10,https://doi.org/10.1109/TKDE.2009.58 +Yu Li,Route-Saver: Leveraging Route APIs for Accurate and Efficient Query Processing at Location-Based Services.,2015,27,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde27.html#LiY15,https://doi.org/10.1109/TKDE.2014.2324597 +Krishnaprasad Thirunarayan,On Embedding Machine-Processable Semantics into Documents.,2005,17,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde17.html#Thirunarayan05,https://doi.org/10.1109/TKDE.2005.113 +Bin Yang 0002,Using Incomplete Information for Complete Weight Annotation of Road Networks.,2014,26,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde26.html#YangKJ14,https://doi.org/10.1109/TKDE.2013.89 +Songting Chen,A Compensation-Based Approach for View Maintenance in Distributed Environments.,2006,18,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde18.html#ChenZR06,https://doi.org/10.1109/TKDE.2006.117 +Pou-yung Lee,HAL: A Faster Match Algorithm.,2002,14,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde14.html#LeeC02,https://doi.org/10.1109/TKDE.2002.1033773 +Wenfei Fan,Answering Pattern Queries Using Views.,2016,28,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde28.html#FanWW16,https://doi.org/10.1109/TKDE.2015.2429138 +Edward Omiecinski,Hash-Based and Index-Based Join Algorithms for Cube and Ring Connected Multicomputers.,1989,1,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde1.html#OmiecinskiL89,https://doi.org/10.1109/69.87979 +Huijia Li,Fast and Accurate Mining the Community Structure: Integrating Center Locating and Membership Optimization.,2016,28,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde28.html#LiBLLS16,https://doi.org/10.1109/TKDE.2016.2563425 +Shuguo Han,Privacy-Preserving Gradient-Descent Methods.,2010,22,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde22.html#HanNWL10,https://doi.org/10.1109/TKDE.2009.153 +Wen-Yuan Zhu,Exploring Sequential Probability Tree for Movement-Based Community Discovery.,2014,26,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde26.html#ZhuPHLC14,https://doi.org/10.1109/TKDE.2014.2304458 +Hiranmay Ghosh,Distributed and Reactive Query Planning in R-MAGIC: An Agent-Based Multimedia Retrieval System.,2004,16,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde16.html#GhoshC04,https://doi.org/10.1109/TKDE.2004.40 +Gultekin özsoyoglu,Near-Optimum Storage Models for Nested Relations Based on Workload Information.,1993,5,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde5.html#OzsoyogluH93,https://doi.org/10.1109/69.250089 +Wentao Fan,Unsupervised Hybrid Feature Extraction Selection for High-Dimensional Non-Gaussian Data Clustering with Variational Inference.,2013,25,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde25.html#FanBZ13,https://doi.org/10.1109/TKDE.2012.101 +Henry H. Bi,Comprehensive Citation Index for Research Networks.,2011,23,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde23.html#BiWL11,https://doi.org/10.1109/TKDE.2010.167 +Chin-Teng Lin,Minority Oversampling in Kernel Adaptive Subspaces for Class Imbalanced Datasets.,2018,30,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde30.html#LinHLLFWYPC18,https://doi.org/10.1109/TKDE.2017.2779849 +Gultekin özsoyoglu,On Automated Lesson Construction from Electronic Textbooks.,2004,16,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde16.html#OzsoyogluBOC04,https://doi.org/10.1109/TKDE.2003.1262184 +Hongmei Chen,A Rough Set-Based Method for Updating Decision Rules on Attribute Values' Coarsening and Refining.,2014,26,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde26.html#ChenLLHW14,https://doi.org/10.1109/TKDE.2014.2320740 +Sourav Medya,Making a Small World Smaller: Path Optimization in Networks.,2018,30,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde30.html#MedyaBS18,https://doi.org/10.1109/TKDE.2018.2792470 +Amihai Motro,Intensional Answers to Database Queries.,1994,6,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde6.html#Motro94,https://doi.org/10.1109/69.334858 +L. Venkata Subramaniam,Enriching One Taxonomy Using Another.,2010,22,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde22.html#SubramaniamNM10,https://doi.org/10.1109/TKDE.2009.189 +Abhijith Kashyap,Effective Navigation of Query Results Based on Concept Hierarchies.,2011,23,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde23.html#KashyapHPT11,https://doi.org/10.1109/TKDE.2010.135 +Dunren Che,Holistic Boolean-Twig Pattern Matching for Efficient XML Query Processing.,2012,24,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde24.html#CheLH12,https://doi.org/10.1109/TKDE.2011.128 +Tim Menzies,Applications of Abduction: Testing Very Long Qualitative Simulations.,2002,14,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde14.html#MenziesCWG02,https://doi.org/10.1109/TKDE.2002.1047773 +Kuo-Qin Yan,Optimal Agreement Protocol in Malicious Faulty Processors and Faulty Links.,1992,4,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde4.html#YanCW92,https://doi.org/10.1109/69.142017 +Mohammad Sadoghi,Safe Distribution and Parallel Execution of Data-Centric Workflows over the Publish/Subscribe Abstraction.,2015,27,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde27.html#SadoghiJJHV15,https://doi.org/10.1109/TKDE.2015.2421331 +Qiang Yang 0001,Web-Log Mining for Predictive Web Caching.,2003,15,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde15.html#YangZ03,https://doi.org/10.1109/TKDE.2003.1209022 +Shouyi Wang,Online Seizure Prediction Using an Adaptive Learning Approach.,2013,25,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde25.html#WangCW13,https://doi.org/10.1109/TKDE.2013.151 +Chen-Yi Lin,Determining $(k)$-Most Demanding Products with Maximum Expected Number of Total Customers.,2013,25,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde25.html#LinKC13,https://doi.org/10.1109/TKDE.2012.53 +Ana Granados,Reducing the Loss of Information through Annealing Text Distortion.,2011,23,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde23.html#GranadosCCR11,https://doi.org/10.1109/TKDE.2010.173 +Aloke Gupta,Garbage Collection in a Distributed Object-Oriented System.,1993,5,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde5.html#GuptaF93,https://doi.org/10.1109/69.219734 +Pieta Brown,Probabilistic Keys.,2017,29,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde29.html#BrownL17,https://doi.org/10.1109/TKDE.2016.2633342 +Degang Chen,Sample Pair Selection for Attribute Reduction with Rough Set.,2012,24,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde24.html#ChenZZYZ12,https://doi.org/10.1109/TKDE.2011.89 +Rong-Hua Li,Efficient Core Maintenance in Large Dynamic Graphs.,2014,26,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde26.html#LiYM14,https://doi.org/10.1109/TKDE.2013.158 +Cosimo Palmisano,Using Context to Improve Predictive Modeling of Customers in Personalization Applications.,2008,20,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde20.html#PalmisanoTG08,https://doi.org/10.1109/TKDE.2008.110 +Shen Huang,Multitype Features Coselection for Web Document Clustering.,2006,18,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde18.html#HuangCYM06,https://doi.org/10.1109/TKDE.2006.1599384 +Ronaldo C. Prati,A Survey on Graphical Methods for Classification Predictive Performance Evaluation.,2011,23,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde23.html#PratiBM11,https://doi.org/10.1109/TKDE.2011.59 +Timon C. Du,Building a Multiple-Criteria Negotiation Support System.,2007,19,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde19.html#DuC07,https://doi.org/10.1109/TKDE.2007.190618 +Ariel Cohen 0003,Segmented Information Dispersal (SID) Data Layouts for Digital Video Servers.,2001,13,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde13.html#CohenB01,https://doi.org/10.1109/69.940734 +Kiam Tian Seow,Decentralized Assignment Reasoning Using Collaborative Local Mediation.,2006,18,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde18.html#SeowS06,https://doi.org/10.1109/TKDE.2006.170 +Sumeet Bajaj,TrustedDB: A Trusted Hardware-Based Database with Privacy and Data Confidentiality.,2014,26,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde26.html#BajajS14,https://doi.org/10.1109/TKDE.2013.38 +Bhavani M. Thuraisingham,Guest Editors' Introduction to the Special Issue on Secure Database Systems Technology.,1996,8,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde8.html#ThuraisinghamT96,https://doi.org/10.1109/TKDE.1996.485624 +Peng Wang 0027,A Low-Granularity Classifier for Data Streams with Concept Drifts and Biased Class Distribution.,2007,19,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde19.html#WangWWWS07,https://doi.org/10.1109/TKDE.2007.1057 +David K. Y. Chiu,NHOP: A Nested Associative Pattern for Analysis of Consensus Sequence Ensembles.,2013,25,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde25.html#ChiuL13,https://doi.org/10.1109/TKDE.2012.151 +Mohammed Ahmed Muharram,Evolutionary Constructive Induction.,2005,17,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde17.html#MuharramS05,https://doi.org/10.1109/TKDE.2005.182 +Dániel Fogaras,Practical Algorithms and Lower Bounds for Similarity Search in Massive Graphs.,2007,19,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde19.html#FogarasR07,https://doi.org/10.1109/TKDE.2007.1008 +Zhuo Hao,A Privacy-Preserving Remote Data Integrity Checking Protocol with Data Dynamics and Public Verifiability.,2011,23,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde23.html#HaoZY11,https://doi.org/10.1109/TKDE.2011.62 +Juan Lu,A Novel and Fast SimRank Algorithm.,2017,29,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde29.html#LuGL17,https://doi.org/10.1109/TKDE.2016.2626282 +Sanghamitra Bandyopadhyay,A Point Symmetry-Based Clustering Technique for Automatic Evolution of Clusters.,2008,20,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde20.html#BandyopadhyayS08,https://doi.org/10.1109/TKDE.2008.79 +Ankush Mittal,Addressing the Problems of Bayesian Network Classification of Video Using High-Dimensional Features.,2004,16,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde16.html#MittalC04,https://doi.org/10.1109/TKDE.2004.1269600 +Weifeng Su,Combining Tag and Value Similarity for Data Extraction and Alignment.,2012,24,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde24.html#SuWLL12,https://doi.org/10.1109/TKDE.2011.66 +Kyoung-Don Kang,Managing Deadline Miss Ratio and Sensor Data Freshness in Real-Time Databases.,2004,16,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde16.html#KangSS04,https://doi.org/10.1109/TKDE.2004.61 +Kush R. Varshney,Practical Ensemble Classification Error Bounds for Different Operating Points.,2013,25,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde25.html#VarshneyPMCH13,https://doi.org/10.1109/TKDE.2012.219 +Stamatis Vassiliadis,A Fuzzy Reasoning Database Question Answering System.,1994,6,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde6.html#VassiliadisTK94,https://doi.org/10.1109/69.334878 +Yen-Cheng Lu,Discovering Anomalies on Mixed-Type Data Using a Generalized Student- t Based Approach.,2016,28,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde28.html#LuCWL16,https://doi.org/10.1109/TKDE.2016.2583429 +Chuanren Liu,A Proactive Workflow Model for Healthcare Operation and Management.,2017,29,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde29.html#LiuXPGX17,https://doi.org/10.1109/TKDE.2016.2631537 +Yuhua Qian,Fusing Monotonic Decision Trees.,2015,27,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde27.html#QianXLLW15,https://doi.org/10.1109/TKDE.2015.2429133 +Luca Console,Using Compiled Knowledge to Guide and Focus Abductive Diagnosis.,1996,8,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde8.html#ConsolePD96,https://doi.org/10.1109/69.542024 +Yu Peng,Finding Top-k Preferable Products.,2012,24,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde24.html#PengWW12,https://doi.org/10.1109/TKDE.2012.52 +Bolong Zheng,Efficient Clue-Based Route Search on Road Networks.,2017,29,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde29.html#ZhengSHZZL17,https://doi.org/10.1109/TKDE.2017.2703848 +Xixian Han,Efficient Top-k Dominating Computation on Massive Data.,2017,29,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde29.html#HanLG17,https://doi.org/10.1109/TKDE.2017.2665619 +Miroslav Kubat,Itemset Trees for Targeted Association Querying.,2003,15,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde15.html#KubatHRLC03,https://doi.org/10.1109/TKDE.2003.1245290 +Amit Gupta,Generalized Analytic Rule Extraction for Feedforward Neural Networks.,1999,11,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde11.html#GuptaPL99,https://doi.org/10.1109/69.824621 +Praveen Rao,Locating XML Documents in a Peer-to-Peer Network Using Distributed Hash Tables.,2009,21,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde21.html#RaoM09,https://doi.org/10.1109/TKDE.2009.26 +Tianqing Zhu,Differentially Private Data Publishing and Analysis: A Survey.,2017,29,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde29.html#ZhuLZY17,https://doi.org/10.1109/TKDE.2017.2697856 +Jiuyong Li,Robust Rule-Based Prediction.,2006,18,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde18.html#Li06a,https://doi.org/10.1109/TKDE.2006.129 +Xiaoyan Liu,A Discretization Algorithm Based on a Heterogeneity Criterion.,2005,17,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde17.html#LiuW05,https://doi.org/10.1109/TKDE.2005.135 +Peter M. G. Apers,PRISMA/DB: A Parallel Main Memory Relational DBMS.,1992,4,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde4.html#ApersBFGKW92,https://doi.org/10.1109/69.180605 +Toby J. Teorey,Dependability and Performance Measures for the Database Practitioner.,1998,10,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde10.html#TeoreyN98,https://doi.org/10.1109/69.687981 +Adegbeniga Ola,Incomplete Relational Database Models Based on Intervals.,1993,5,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde5.html#OlaO93,https://doi.org/10.1109/69.219737 +Sudipto Guha,A Note on Linear Time Algorithms for Maximum Error Histograms.,2007,19,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde19.html#GuhaS07,https://doi.org/10.1109/TKDE.2007.1039 +Chulyun Kim,TEXT: Automatic Template Extraction from Heterogeneous Web Pages.,2011,23,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde23.html#KimS11,https://doi.org/10.1109/TKDE.2010.140 +Paolo Ciancarini,Managing Complex Documents Over the WWW: A Case Study for XML.,1999,11,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde11.html#CiancariniVM99,https://doi.org/10.1109/69.790821 +Bhavani M. Thuraisingham,Security Constraints in a Multilevel Secure Distributed Database Management System.,1995,7,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde7.html#ThuraisinghamF95,https://doi.org/10.1109/69.382297 +Darrell Conklin,Knowledge Discovery in Molecular Databases.,1993,5,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde5.html#ConklinFG93,https://doi.org/10.1109/69.250082 +Chang-Dong Wang,NEIWalk: Community Discovery in Dynamic Content-Based Networks.,2014,26,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde26.html#WangLY14,https://doi.org/10.1109/TKDE.2013.153 +Anthony Tomasic,Scaling Access to Heterogeneous Data Sources with DISCO.,1998,10,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde10.html#TomasicRV98,https://doi.org/10.1109/69.729736 +Andreas Koeller,Incremental Maintenance of Schema-Restructuring Views in SchemaSQL .,2004,16,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde16.html#KoellerR04,https://doi.org/10.1109/TKDE.2004.42 +Minghe Yu,Efficient Filtering Algorithms for Location-Aware Publish/Subscribe.,2015,27,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde27.html#YuLWFG15,https://doi.org/10.1109/TKDE.2014.2349906 +Yaping Li,Enabling Multilevel Trust in Privacy Preserving Data Mining.,2012,24,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde24.html#LiCLZ12,https://doi.org/10.1109/TKDE.2011.124 +Cen Li,Unsupervised Learning with Mixed Numeric and Nominal Data.,2002,14,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde14.html#LiB02,https://doi.org/10.1109/TKDE.2002.1019208 +Lukasz A. Kurgan,CAIM Discretization Algorithm.,2004,16,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde16.html#KurganC04,https://doi.org/10.1109/TKDE.2004.1269594 +Xingjie Liu,U-Skyline: A New Skyline Query for Uncertain Databases.,2013,25,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde25.html#LiuYYL13,https://doi.org/10.1109/TKDE.2012.33 +Mohamed Shehab,Watermarking Relational Databases Using Optimization-Based Techniques.,2008,20,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde20.html#ShehabBG08,https://doi.org/10.1109/TKDE.2007.190668 +Fehime Nihan Kesim,A Logic Programming Framework for Modeling Temporal Objects.,1996,8,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde8.html#KesimS96,https://doi.org/10.1109/69.542026 +Qin Chen,TAKer: Fine-Grained Time-Aware Microblog Search with Kernel Density Estimation.,2018,30,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde30.html#ChenHHH18,https://doi.org/10.1109/TKDE.2018.2794538 +M. P. Reddy,A Methodology for Integration of Heterogeneous Databases.,1994,6,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde6.html#ReddyPRG94,https://doi.org/10.1109/69.334882 +Carlos Ordonez 0001,The Gamma Matrix to Summarize Dense and Sparse Data Sets for Big Data Analytics.,2016,28,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde28.html#OrdonezZC16,https://doi.org/10.1109/TKDE.2016.2545664 +Jianguo Lu,Bias Correction in a Small Sample from Big Data.,2013,25,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde25.html#LuL13,https://doi.org/10.1109/TKDE.2012.220 +Reynold Cheng,Filtering Data Streams for Entity-Based Continuous Queries.,2010,22,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde22.html#ChengKKPT10,https://doi.org/10.1109/TKDE.2009.63 +Min-Ling Zhang,Disambiguation-Free Partial Label Learning.,2017,29,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde29.html#ZhangYT17,https://doi.org/10.1109/TKDE.2017.2721942 +Wei Zhang 0010,Learning Semi-Riemannian Metrics for Semisupervised Feature Extraction.,2011,23,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde23.html#ZhangLT11,https://doi.org/10.1109/TKDE.2010.143 +Tadao Murata,A Petri Net Model for Reasoning in the Presence of Inconsistency.,1991,3,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde3.html#MurataSW91,https://doi.org/10.1109/69.91059 +Vincent S. Tseng,Efficient Algorithms for Mining Top-K High Utility Itemsets.,2016,28,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde28.html#TsengWFY16,https://doi.org/10.1109/TKDE.2015.2458860 +Elisa Bertino,An Extended Authorization Model for Relational Databases.,1997,9,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde9.html#BertinoSJ97,https://doi.org/10.1109/69.567051 +Srivatsan Laxman,Discovering Frequent Episodes and Learning Hidden Markov Models: A Formal Connection.,2005,17,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde17.html#LaxmanSU05,https://doi.org/10.1109/TKDE.2005.181 +Jeng-Rung Chen,Response Time Analysis of EQL Real-Time Rule-Based Systems.,1995,7,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde7.html#ChenC95,https://doi.org/10.1109/69.368520 +Lukasz Golab,Discovering Conservation Rules.,2014,26,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde26.html#GolabKKSS14,https://doi.org/10.1109/TKDE.2012.171 +Xiang Cheng 0003,A Two-Phase Algorithm for Differentially Private Frequent Subgraph Mining.,2018,30,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde30.html#ChengSXXXZ18,https://doi.org/10.1109/TKDE.2018.2793862 +Haifeng Chen,Monitoring High-Dimensional Data for Failure Detection and Localization in Large-Scale Computing Systems.,2008,20,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde20.html#ChenJY08,https://doi.org/10.1109/TKDE.2007.190674 +Gabriel Matsliach,A Combined Method for Maintaining Large Indices in Multiprocessor Multidisk Environments.,1994,6,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde6.html#MatsliachS94,https://doi.org/10.1109/69.334867 +Elisa Bertino,Guest Editorial: Introduction to the Special Section.,2000,12,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde12.html#BertinoMR00,https://doi.org/10.1109/TKDE.2000.842250 +Suhang Wang,Exploring Hierarchical Structures for Recommender Systems.,2018,30,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde30.html#WangTW018,https://doi.org/10.1109/TKDE.2018.2789443 +Hao Zhang 0029,In-Memory Big Data Management and Processing: A Survey.,2015,27,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde27.html#ZhangCOTZ15,https://doi.org/10.1109/TKDE.2015.2427795 +Se June Hong,R-MINI: An Iterative Approach for Generating Minimal Rules from Examples.,1997,9,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde9.html#Hong97,https://doi.org/10.1109/69.634750 +Benjamin W. Wah,Editorial: Four Named to Join Editorial Board of IEEE Transactions on Knowledge and Data Engineering.,1996,8,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde8.html#Wah96,http://doi.ieeecomputersociety.org/10.1109/TKDE.1996.10000 +Alfonso F. Cardenas,The Knowledge-Based Object-Oriented PICQUERY+ Language.,1993,5,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde5.html#CardenasITBB93,https://doi.org/10.1109/69.234776 +özgür Kabak,A Cumulative Belief Degree-Based Approach for Missing Values in Nuclear Safeguards Evaluation.,2011,23,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde23.html#KabakR11,https://doi.org/10.1109/TKDE.2010.60 +Paolo Terenziani,Symbolic User-Defined Periodicity in Temporal Relational Databases.,2003,15,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde15.html#Terenziani03,https://doi.org/10.1109/TKDE.2003.1185847 +Rallou Thomopoulos,Fuzzy Sets Defined on a Hierarchical Domain.,2006,18,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde18.html#ThomopoulosBH06,https://doi.org/10.1109/TKDE.2006.161 +Antonio Badia,Complex SQL Predicates as Quantifiers.,2014,26,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde26.html#BadiaW14,https://doi.org/10.1109/TKDE.2013.55 +Thanh Le Van,Semiring Rank Matrix Factorization.,2017,29,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde29.html#VanNLR17,https://doi.org/10.1109/TKDE.2017.2688374 +Charu C. Aggarwal,A Survey of Uncertain Data Algorithms and Applications.,2009,21,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde21.html#AggarwalY09,https://doi.org/10.1109/TKDE.2008.190 +Chi-Wai Fung,An Evaluation of Vertical Class Partitioning for Query Processing in Object-Oriented Databases.,2002,14,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde14.html#FungKL02,https://doi.org/10.1109/TKDE.2002.1033777 +Jemma Wu,A Framework for Learning Comprehensible Theories in XML Document Classification.,2012,24,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde24.html#Wu12,https://doi.org/10.1109/TKDE.2011.158 +Xingquan Zhu,Class Noise Handling for Effective Cost-Sensitive Learning by Cost-Guided Iterative Classification Filtering.,2006,18,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde18.html#ZhuW06,https://doi.org/10.1109/TKDE.2006.155 +HweeHwa Pang,Steganographic Schemes for File System and B-Tree.,2004,16,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde16.html#PangTZ04,https://doi.org/10.1109/TKDE.2004.15 +Silvano Mussi,Strategic Reasoning Under Trade-Offs Between Action Costs and Advantages.,1997,9,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde9.html#Mussi97,https://doi.org/10.1109/69.649317 +Fabrizio Angiulli,Fast Nearest Neighbor Condensation for Large Data Sets Classification.,2007,19,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde19.html#Angiulli07,https://doi.org/10.1109/TKDE.2007.190645 +Danilo Montesi,Transactions and Updates in Deductive Databases.,1997,9,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde9.html#MontesiBM97,https://doi.org/10.1109/69.634755 +Ning Zhong 0001,Peculiarity Oriented Multidatabase Mining.,2003,15,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde15.html#ZhongYO03,https://doi.org/10.1109/TKDE.2003.1209011 +Arun Iyengar,Guest Editors' Introduction.,2003,15,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde15.html#IyengarR03,https://doi.org/10.1109/TKDE.2003.1208997 +Jiajun Liu,A Novel Framework for Online Amnesic Trajectory Compression in Resource-Constrained Environments.,2016,28,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde28.html#LiuZSSKLJ16,https://doi.org/10.1109/TKDE.2016.2598171 +James M. Kang,Incremental and General Evaluation of Reverse Nearest Neighbors.,2010,22,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde22.html#KangMSXZ10,https://doi.org/10.1109/TKDE.2009.133 +Jesús Camacho-Rodríguez,PAXQuery: Efficient Parallel Processing of Complex XQuery.,2015,27,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde27.html#Camacho-Rodriguez15,https://doi.org/10.1109/TKDE.2015.2391110 +Albert Croker,A Knowledge Representation for Constraint Satisfaction Problems.,1993,5,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde5.html#DharV93,https://doi.org/10.1109/69.243506 +Hai Zhuge,A Scalable P2P Platform for the Knowledge Grid.,2005,17,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde17.html#ZhugeSLYC05,https://doi.org/10.1109/TKDE.2005.190 +George Trimponias,Skyline Processing on Distributed Vertical Decompositions.,2013,25,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde25.html#TrimponiasBPY13,https://doi.org/10.1109/TKDE.2011.266 +Francisco Martínez-álvarez,Energy Time Series Forecasting Based on Pattern Sequence Similarity.,2011,23,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde23.html#AlvarezLRA11,https://doi.org/10.1109/TKDE.2010.227 +Staal A. Vinterbo,Privacy: A Machine Learning View.,2004,16,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde16.html#Vinterbo04,https://doi.org/10.1109/TKDE.2004.31 +Chao Lan,Learning Social Circles in Ego-Networks Based on Multi-View Network Structure.,2017,29,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde29.html#LanYLLH17,https://doi.org/10.1109/TKDE.2017.2685385 +Arbee L. P. Chen,Evaluating Aggregate Operations Over Imprecise Data.,1996,8,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde8.html#ChenCT96,https://doi.org/10.1109/69.494166 +Marion G. Ceruti,Data Management Challenges and Development for Military Information Systems.,2003,15,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde15.html#Ceruti03,https://doi.org/10.1109/TKDE.2003.1232263 +Ke Wang,Discovering Structural Association of Semistructured Data.,2000,12,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde12.html#WangL00,https://doi.org/10.1109/69.846290 +Alexandros Nanopoulos,A Data Mining Algorithm for Generalized Web Prefetching.,2003,15,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde15.html#NanopoulosKM03,https://doi.org/10.1109/TKDE.2003.1232270 +Bo Li 0026,Scalable Iterative Classification for Sanitizing Large-Scale Datasets.,2017,29,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde29.html#LiVLM17,https://doi.org/10.1109/TKDE.2016.2628180 +Lotfi A. Zadeh,Knowledge Representation in Fuzzy Logic.,1989,1,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde1.html#Zadeh89,https://doi.org/10.1109/69.43406 +Guanfeng Liu,MCS-GPM: Multi-Constrained Simulation Based Graph Pattern Matching in Contextual Social Graphs.,2018,30,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde30.html#LiuL00LWZ18,https://doi.org/10.1109/TKDE.2017.2785824 +Jian Pei,Editorial [State of the Transactions].,2014,26,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde26.html#Pei14,https://doi.org/10.1109/TKDE.2014.3 +Ningnan Zhou,A General Multi-Context Embedding Model for Mining Human Trajectory Data.,2016,28,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde28.html#ZhouZZWW16,https://doi.org/10.1109/TKDE.2016.2550436 +Zhisheng Li,IR-Tree: An Efficient Index for Geographic Document Search.,2011,23,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde23.html#LiLZLLW11,https://doi.org/10.1109/TKDE.2010.149 +Senqiang Zhou,Localization Site Prediction for Membrane Proteins by Integrating Rule and SVM Classification.,2005,17,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde17.html#ZhouW05,https://doi.org/10.1109/TKDE.2005.201 +Hyunsoo Kim,Adaptive Nonlinear Discriminant Analysis by Regularized Minimum Squared Errors.,2006,18,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde18.html#KimDP06,https://doi.org/10.1109/TKDE.2006.72 +Jian Tang 0001,Obtaining Coteries That Optimize the Availability of Replicated Databases.,1993,5,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde5.html#TangN93,https://doi.org/10.1109/69.219738 +Shih-Hau Fang,Location Fingerprinting In A Decorrelated Space.,2008,20,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde20.html#FangLL08,https://doi.org/10.1109/TKDE.2007.190731 +Jun Zhang 0003,Chaotic Time Series Prediction Using a Neuro-Fuzzy System with Time-Delay Coordinates.,2008,20,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde20.html#ZhangCL08,https://doi.org/10.1109/TKDE.2008.35 +Mirjana Mazuran,Data Mining for XML Query-Answering Support.,2012,24,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde24.html#MazuranQT12,https://doi.org/10.1109/TKDE.2011.80 +Joseph K. Liu,Linkable Ring Signature with Unconditional Anonymity.,2014,26,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde26.html#LiuASZ14,https://doi.org/10.1109/TKDE.2013.17 +Xiang Lian,Trip Planner Over Probabilistic Time-Dependent Road Networks.,2014,26,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde26.html#Lian014,https://doi.org/10.1109/TKDE.2013.159 +Mao Ye 0002,Querying Uncertain Minimum in Wireless Sensor Networks.,2012,24,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde24.html#YeLLLC12,https://doi.org/10.1109/TKDE.2011.166 +Shen-Tat Goh,Demand-Driven Caching in Multiuser Environment.,2004,16,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde16.html#GohOT04,https://doi.org/10.1109/TKDE.2004.1264826 +Chen Chen 0022,Node Immunization on Large Graphs: Theory and Algorithms.,2016,28,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde28.html#ChenTPTEFC16,https://doi.org/10.1109/TKDE.2015.2465378 +Harumi A. Kuno,Incremental Maintenance of Materialized Object-Oriented Views in MultiView: Strategies and Performance Evaluation.,1998,10,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde10.html#KunoR98,https://doi.org/10.1109/69.729731 +Seppe K. L. M. vanden Broucke,Determining Process Model Precision and Generalization with Weighted Artificial Negative Events.,2014,26,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde26.html#BrouckeWVB14,https://doi.org/10.1109/TKDE.2013.130 +Eric P. Kasten,MESO: Supporting Online Decision Making in Autonomic Computing Systems.,2007,19,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde19.html#KastenM07,https://doi.org/10.1109/TKDE.2007.1000 +Dino Isa,Text Document Preprocessing with the Bayes Formula for Classification Using the Support Vector Machine.,2008,20,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde20.html#IsaLKR08,https://doi.org/10.1109/TKDE.2008.76 +Linda Sirounian,A Knowledge Model For Unifying Deductive and Non-Deductive Heterogeneous Databases.,1995,7,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde7.html#SirounianG95,https://doi.org/10.1109/69.368516 +Vassilios Petridis,Clustering and Classification in Structured Data Domains Using Fuzzy Lattice Neurocomputing (FLN).,2001,13,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde13.html#PetridisK01,https://doi.org/10.1109/69.917564 +Xiang Lian,Subspace Similarity Search under Lp-Norm.,2012,24,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde24.html#LianC12,https://doi.org/10.1109/TKDE.2010.219 +Milan Vojnovic,Ranking and Suggesting Popular Items.,2009,21,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde21.html#VojnovicCGM09,https://doi.org/10.1109/TKDE.2009.34 +Russell Paulet,Privacy-Preserving and Content-Protecting Location Based Queries.,2014,26,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde26.html#PauletKYB14,https://doi.org/10.1109/TKDE.2013.87 +Dongsheng Li,Efficient Range Query Processing in Peer-to-Peer Systems.,2009,21,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde21.html#LiCLC09,https://doi.org/10.1109/TKDE.2008.99 +Daniel Nikovski,Constructing Bayesian Networks for Medical Diagnosis from Incomplete and Partially Correct Statistics.,2000,12,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde12.html#Nikovski00,https://doi.org/10.1109/69.868904 +Dayong Wang,Mining Weakly Labeled Web Facial Images for Search-Based Face Annotation.,2014,26,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde26.html#WangH0Z14,https://doi.org/10.1109/TKDE.2012.240 +Ke Deng,On Group Nearest Group Query Processing.,2012,24,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde24.html#DengSZXFL12,https://doi.org/10.1109/TKDE.2010.230 +Shahram Ghandeharizadeh,Guest Editors' Introduction to the Special Section on the 26th International Conference on Data Engineering.,2011,23,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde23.html#GhandeharizadehHW11,https://doi.org/10.1109/TKDE.2011.135 +Max J. Egenhofer,Spatial SQL: A Query and Presentation Language.,1994,6,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde6.html#Egenhofer94,https://doi.org/10.1109/69.273029 +Weidong Chen 0005,Computation of Stable Models and Its Integration with Logical Query Processing.,1996,8,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde8.html#ChenW96,https://doi.org/10.1109/69.542027 +Chen Li 0001,Clustering for Approximate Similarity Search in High-Dimensional Spaces.,2002,14,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde14.html#LiCGW02,https://doi.org/10.1109/TKDE.2002.1019214 +Tzu-Tsung Wong,Dependency Analysis of Accuracy Estimates in k-Fold Cross Validation.,2017,29,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde29.html#WongY17,https://doi.org/10.1109/TKDE.2017.2740926 +Rok Sosic,Efficient Local Search with Conflict Minimization: A Case Study of the n-Queens Problem.,1994,6,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde6.html#SosicG94,https://doi.org/10.1109/69.317698 +Bin Shyan Jong,Dynamic Grouping Strategies Based on a Conceptual Graph for Cooperative Learning.,2006,18,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde18.html#JongWC06,https://doi.org/10.1109/TKDE.2006.93 +Carlos Ordonez 0001,Bayesian Classifiers Programmed in SQL.,2010,22,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde22.html#OrdonezP10,https://doi.org/10.1109/TKDE.2009.127 +Man Lung Yiu,Iterative Projected Clustering by Subspace Mining.,2005,17,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde17.html#YiuM05,https://doi.org/10.1109/TKDE.2005.29 +Nizar Bouguila,A Model-Based Approach for Discrete Data Clustering and Feature Weighting Using MAP and Stochastic Complexity.,2009,21,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde21.html#Bouguila09,https://doi.org/10.1109/TKDE.2009.42 +Bhavani M. Thuraisingham,Information Survivability for Evolvable and Adaptable Real-Time Command and Control Systems.,1999,11,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde11.html#ThuraisinghamM99,https://doi.org/10.1109/69.755631 +Bo Liu 0002,Uncertain One-Class Learning and Concept Summarization Learning on Uncertain Data Streams.,2014,26,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde26.html#LiuXYCZH14,https://doi.org/10.1109/TKDE.2012.235 +Mehmet Ercan Nergiz,Multirelational k-Anonymity.,2009,21,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde21.html#NergizCN09,https://doi.org/10.1109/TKDE.2008.210 +Nebojsa Stefanovic,Object-Based Selective Materialization for Efficient Implementation of Spatial Data Cubes.,2000,12,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde12.html#StefanovicHK00,https://doi.org/10.1109/69.895803 +Alistair Moffat,Text Compression for Dynamic Document Databases.,1997,9,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde9.html#MoffatZS97,https://doi.org/10.1109/69.591454 +Xiang Lian,Similarity Join Processing on Uncertain Data Streams.,2011,23,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde23.html#LianC11,https://doi.org/10.1109/TKDE.2010.208 +Longbing Cao,Mining Impact-Targeted Activity Patterns in Imbalanced Data.,2008,20,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde20.html#CaoZZ08,https://doi.org/10.1109/TKDE.2007.190635 +Daewon Lee,Dynamic Dissimilarity Measure for Support-Based Clustering.,2010,22,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde22.html#LeeL10,https://doi.org/10.1109/TKDE.2009.140 +Sang Ho Lee,Dynamic Buffer Allocation in Video-on-Demand Systems.,2003,15,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde15.html#LeeWMHS03,https://doi.org/10.1109/TKDE.2003.1245291 +Juzar Motiwalla,Artificial Intelligence in Management: Future Challenges.,1991,3,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde3.html#Motiwalla91,http://doi.ieeecomputersociety.org/10.1109/TKDE.1991.10002 +Kevin Y. Yip,Mining Order-Preserving Submatrices from Data with Repeated Measurements.,2013,25,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde25.html#YipKZCLC13,https://doi.org/10.1109/TKDE.2011.167 +Jun Chen 0004,Recommendation for Repeat Consumption from User Implicit Feedback.,2016,28,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde28.html#ChenW0Y16,https://doi.org/10.1109/TKDE.2016.2593720 +Chenping Hou,Multi-View Unsupervised Feature Selection with Adaptive Similarity and View Weight.,2017,29,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde29.html#HouNTY17,https://doi.org/10.1109/TKDE.2017.2681670 +Bhanukiran Vinzamuri,Pre-Processing Censored Survival Data Using Inverse Covariance Matrix Based Calibration.,2017,29,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde29.html#VinzamuriLR17,https://doi.org/10.1109/TKDE.2017.2719028 +Yu-Ling Hsueh,An Efficient Indexing Method for Skyline Computations with Partially Ordered Domains.,2017,29,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde29.html#HsuehLC17,https://doi.org/10.1109/TKDE.2017.2656906 +Narayan L. Bhamidipati,Comparing Scores Intended for Ranking.,2009,21,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde21.html#BhamidipatiP09,https://doi.org/10.1109/TKDE.2008.111 +Deke Guo,False Negative Problem of Counting Bloom Filter.,2010,22,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde22.html#GuoLLY10,https://doi.org/10.1109/TKDE.2009.209 +Elisa Bertino,Extending the ODMG Object Model with Triggers.,2004,16,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde16.html#BertinoGM04,https://doi.org/10.1109/TKDE.2004.1269596 +Anuj R. Jaiswal,Uninterpreted Schema Matching with Embedded Value Mapping under Opaque Column Names and Data Values.,2010,22,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde22.html#JaiswalMM10,https://doi.org/10.1109/TKDE.2009.69 +Pawan Lingras,Rough Cluster Quality Index Based on Decision Theory.,2009,21,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde21.html#LingrasCM09,https://doi.org/10.1109/TKDE.2008.236 +Qingxiang Wu,A Self-Organizing Computing Network for Decision-Making in Data Sets with a Diversity of Data Types.,2006,18,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde18.html#WuMBP06,https://doi.org/10.1109/TKDE.2006.103 +Kyriakos Mouratidis,Anonymous Query Processing in Road Networks.,2010,22,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde22.html#MouratidisY10,https://doi.org/10.1109/TKDE.2009.48 +David M. Dilts,Using Knowledge-Based Technology to Integrate CIM Databases.,1991,3,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde3.html#DiltsW91,https://doi.org/10.1109/69.88003 +Mohamed Bouguessa,Mining Projected Clusters in High-Dimensional Spaces.,2009,21,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde21.html#BouguessaW09,https://doi.org/10.1109/TKDE.2008.162 +Leonard Leibovici,A Causal Probabilistic Network for Optimal Treatment of Bacterial Infections.,2000,12,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde12.html#LeiboviciFSRKSA00,https://doi.org/10.1109/69.868905 +Michael V. Mannino,Probability Bounds for Goal Directed Queries in Bayesian Networks.,2002,14,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde14.html#ManninoM02,https://doi.org/10.1109/TKDE.2002.1033865 +Xiang Lian,Ranked Query Processing in Uncertain Databases.,2010,22,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde22.html#LianC10,https://doi.org/10.1109/TKDE.2009.112 +Haifeng Chen,Failure Detection in Large-Scale Internet Services by Principal Subspace Mapping.,2007,19,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde19.html#ChenJY07,https://doi.org/10.1109/TKDE.2007.190633 +Xindong Wu,Data Mining with Big Data.,2014,26,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde26.html#WuZW014,https://doi.org/10.1109/TKDE.2013.109 +Vagelis Hristidis,Keyword Proximity Search in XML Trees.,2006,18,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde18.html#HristidisKPS06,https://doi.org/10.1109/TKDE.2006.1599390 +De-Nian Yang,On Bandwidth-Efficient Data Broadcast.,2008,20,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde20.html#YangC08,https://doi.org/10.1109/TKDE.2008.42 +Da Yan,Probabilistic Convex Hull Queries over Uncertain Data.,2015,27,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde27.html#YanZNL15,https://doi.org/10.1109/TKDE.2014.2340408 +Toru Ishida,A Meta-Level Control Architecture for Production Systems.,1995,7,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde7.html#IshidaSNF95,https://doi.org/10.1109/69.368519 +Shiuh-Pyng Shieh,On a Pattern-Oriented Model for Intrusion Detection.,1997,9,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde9.html#ShiehG97,https://doi.org/10.1109/69.617059 +Jianxin Li,Context-Based Diversification for Keyword Queries Over XML Data.,2015,27,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde27.html#LiLY15,https://doi.org/10.1109/TKDE.2014.2334297 +Khanh Vu,Image Retrieval Based on Regions of Interest.,2003,15,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde15.html#VuHT03,https://doi.org/10.1109/TKDE.2003.1209021 +Nima Asadi 0001,Runtime Optimizations for Tree-Based Machine Learning Models.,2014,26,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde26.html#AsadiLV14,https://doi.org/10.1109/TKDE.2013.73 +Evdoxios Baratis,Automatic Website Summarization by Image Content: A Case Study with Logo and Trademark Images.,2008,20,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde20.html#BaratisPM08,https://doi.org/10.1109/TKDE.2008.34 +Eric N. Hanson,Trigger Condition Testing and View Maintenance Using Optimized Discrimination Networks.,2002,14,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde14.html#HansonBC02,https://doi.org/10.1109/69.991716 +Li Xiao 0001,Building a Large and Efficient Hybrid Peer-to-Peer Internet Caching System.,2004,16,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde16.html#XiaoZAC04,https://doi.org/10.1109/TKDE.2004.1 +Alexander Thomasian,Checkpointing for Optimistic Concurrency Control Methods.,1995,7,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde7.html#Thomasian95,https://doi.org/10.1109/69.382303 +Khaled A. S. Abdel-Ghaffar,The Optimality of Allocation Methods for Bounded Disagreement Search Queries: The Possible and the Impossible.,2006,18,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde18.html#Abdel-GhaffarA06,https://doi.org/10.1109/TKDE.2006.149 +Xin Zheng,A Survey of Location Prediction on Twitter.,2018,30,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde30.html#ZhengHS18,https://doi.org/10.1109/TKDE.2018.2807840 +Jiun-Long Huang,A Proxy-Based Approach to Continuous Location-Based Spatial Queries in Mobile Environments.,2013,25,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde25.html#HuangH13,https://doi.org/10.1109/TKDE.2011.203 +Divyakant Agrawal,The Performance of Protocols Based on Locks with Ordered Sharing.,1994,6,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde6.html#AgrawalAL94,https://doi.org/10.1109/69.317708 +Po-Whei Huang,Image Database Design Based on 9D-SPA Representation for Spatial Relations.,2004,16,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde16.html#HuangL04,https://doi.org/10.1109/TKDE.2004.92 +Lina Peng,Object and Combination Shedding Schemes for Adaptive Media Workflow Execution.,2010,22,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde22.html#PengYCW10,https://doi.org/10.1109/TKDE.2009.44 +Hua Lu 0001,On Computing Farthest Dominated Locations.,2011,23,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde23.html#LuY11,https://doi.org/10.1109/TKDE.2010.45 +Guoliang Li 0001,Supporting Search-As-You-Type Using SQL in Databases.,2013,25,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde25.html#LiFL13,https://doi.org/10.1109/TKDE.2011.148 +Luís Leitão,Efficient and Effective Duplicate Detection in Hierarchical Data.,2013,25,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde25.html#LeitaoCH13,https://doi.org/10.1109/TKDE.2012.60 +Andreas Hapfelmeier,Pruning Incremental Linear Model Trees with Approximate Lookahead.,2014,26,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde26.html#HapfelmeierPK14,https://doi.org/10.1109/TKDE.2013.132 +Niloofar Arshadi,Data Mining for Case-Based Reasoning in High-Dimensional Biological Domains.,2005,17,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde17.html#ArshadiJ05,https://doi.org/10.1109/TKDE.2005.124 +Jasbir Dhaliwal,Practical Efficient String Mining.,2012,24,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde24.html#DhaliwalPT12,https://doi.org/10.1109/TKDE.2010.242 +Min-Shiang Hwang,An ElGamal-Like Cryptosystem for Enciphering Large Messages.,2002,14,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde14.html#HwangCH02,https://doi.org/10.1109/69.991728 +Pengcheng Wu,Online Multi-Modal Distance Metric Learning with Application to Image Retrieval.,2016,28,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde28.html#WuHZML16,https://doi.org/10.1109/TKDE.2015.2477296 +Zhiwen Yu 0001,Tree-Based Mining for Discovering Patterns of Human Interaction in Meetings.,2012,24,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde24.html#YuYZBN12,https://doi.org/10.1109/TKDE.2010.224 +Chung-Wei Yeh,Molecular Verification of Rule-Based Systems Based on DNA Computation.,2008,20,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde20.html#YehC08,https://doi.org/10.1109/TKDE.2007.190743 +Qing Li 0005,Web Media and Stock Markets : A Survey and Future Directions from a Big Data Perspective.,2018,30,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde30.html#LiCWCC18,https://doi.org/10.1109/TKDE.2017.2763144 +Deng Cai,Locally Consistent Concept Factorization for Document Clustering.,2011,23,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde23.html#CaiHH11,https://doi.org/10.1109/TKDE.2010.165 +Rajeev Rastogi,Guest Editor Introduction: Special Section on Online Analysis and Querying of Continuous Data Streams.,2003,15,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde15.html#Rastogi03,https://doi.org/10.1109/TKDE.2003.1198386 +Marko Robnik-Sikonja,Explaining Classifications For Individual Instances.,2008,20,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde20.html#Robnik-SikonjaK08,https://doi.org/10.1109/TKDE.2007.190734 +Zhenyu Lu,Active Learning through Adaptive Heterogeneous Ensembling.,2015,27,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde27.html#LuWB15,https://doi.org/10.1109/TKDE.2014.2304474 +Bin Liu 0005,Optimizing Cyclic Join View Maintenance over Distributed Data Sources.,2006,18,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde18.html#LiuR06,https://doi.org/10.1109/TKDE.2006.50 +Wengen Li,Efficient Retrieval of Bounded-Cost Informative Routes.,2017,29,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde29.html#LiCGYZ17,https://doi.org/10.1109/TKDE.2017.2721408 +Wonhee Sull,A Self-Organizing Knowledge Representation Scheme for Extensible Heterogenous Information Environment.,1992,4,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde4.html#SullK92,https://doi.org/10.1109/69.134257 +Wen-Hui Yang,Feature Extraction and Uncorrelated Discriminant Analysis for High-Dimensional Data.,2008,20,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde20.html#YangDY08,https://doi.org/10.1109/TKDE.2007.190720 +Longbing Cao,Coupled Behavior Analysis with Applications.,2012,24,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde24.html#CaoOY12,https://doi.org/10.1109/TKDE.2011.129 +Elizabeth Ashley Durham,Composite Bloom Filters for Secure Record Linkage.,2014,26,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde26.html#DurhamKXTKM14,https://doi.org/10.1109/TKDE.2013.91 +Feng Tian 0002,Mining Suspicious Tax Evasion Groups in Big Data.,2016,28,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde28.html#TianLCGZSZ16,https://doi.org/10.1109/TKDE.2016.2571686 +John V. Carlis,Guest Editor's Introduction: The Fourth International Conference on Data Engineering (1988).,1989,1,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde1.html#Carlis89,http://doi.ieeecomputersociety.org/10.1109/TKDE.1989.10006 +Vassilis Spiliopoulos,Synthesizing Ontology Alignment Methods Using the Max-Sum Algorithm.,2012,24,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde24.html#SpiliopoulosV12,https://doi.org/10.1109/TKDE.2011.42 +Joel Coffman,An Empirical Performance Evaluation of Relational Keyword Search Techniques.,2014,26,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde26.html#CoffmanW14,https://doi.org/10.1109/TKDE.2012.228 +Jung-Hua Wang,Principal Interconnections in Higher Order Hebbian-Type Associative Memories.,1998,10,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde10.html#Wang98,https://doi.org/10.1109/69.683763 +Lawrence V. Saxton,Design of an Integrated Information Retrieval/Database Management System.,1990,2,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde2.html#SaxtonR90,https://doi.org/10.1109/69.54720 +Ziyu Guan,Fine-Grained Knowledge Sharing in Collaborative Environments.,2015,27,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde27.html#GuanYSSY15,https://doi.org/10.1109/TKDE.2015.2411283 +Hwanjo Yu,PEBL: Web Page Classification without Negative Examples.,2004,16,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde16.html#YuHC04,https://doi.org/10.1109/TKDE.2004.1264823 +Jiaqing Liang,Probase+: Inferring Missing Links in Conceptual Taxonomies.,2017,29,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde29.html#LiangXWZW17,https://doi.org/10.1109/TKDE.2017.2653115 +Shi-Kuo Chang,Guest Editor's Introduction to Special Section on Knowledge Engineering and Software Engineering.,1990,2,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde2.html#Chang90,http://doi.ieeecomputersociety.org/10.1109/TKDE.1990.10001 +Sergey Brin,Mining Optimized Gain Rules for Numeric Attributes.,2003,15,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde15.html#BrinRS03,https://doi.org/10.1109/TKDE.2003.1185837 +Anne Patrikainen,Comparing Subspace Clusterings.,2006,18,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde18.html#PatrikainenM06,https://doi.org/10.1109/TKDE.2006.106 +Weiren Yu,Fast All-Pairs SimRank Assessment on Large Graphs and Bipartite Domains.,2015,27,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde27.html#YuLZM15,https://doi.org/10.1109/TKDE.2014.2339828 +Elisa Bertino,Correction to 'MPGS: An Interactive Tool for the Specification and Generation of Multimedia Presentations'.,2001,13,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde13.html#BertinoFS01,https://doi.org/10.1109/TKDE.2001.917569 +Jun Pyo Park,Lineage Encoding: An Efficient Wireless XML Streaming Supporting Twig Pattern Queries.,2013,25,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde25.html#ParkPC13,https://doi.org/10.1109/TKDE.2011.202 +Shirui Pan,CogBoost: Boosting for Fast Cost-Sensitive Graph Classification.,2015,27,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde27.html#PanWZ15,https://doi.org/10.1109/TKDE.2015.2391115 +Gong Cheng,An Empirical Evaluation of Techniques for Ranking Semantic Associations.,2017,29,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde29.html#ChengSQ17,https://doi.org/10.1109/TKDE.2017.2735970 +Janice I. Glasgow,Logic Programming with Arrays.,1991,3,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde3.html#GlasgowJBF91,https://doi.org/10.1109/69.91061 +Scott T. Leutenegger,Efficient Bulk-Loading of Gridfiles.,1997,9,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde9.html#LeuteneggerN97,https://doi.org/10.1109/69.599930 +Yuqiang Fang,Graph-Based Learning via Auto-Grouped Sparse Regularization and Kernelized Extension.,2015,27,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde27.html#FangWDW15,https://doi.org/10.1109/TKDE.2014.2312322 +Tom Chau,Pattern Discovery by Residual Analysis and Recursive Partitioning.,1999,11,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde11.html#ChauW99,https://doi.org/10.1109/69.824592 +Ming Hua 0001,Continuous K-Means Monitoring with Low Reporting Cost in Sensor Networks.,2009,21,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde21.html#HuaLPW09,https://doi.org/10.1109/TKDE.2009.41 +Soojung Lee,Performance Analysis of Distributed Deadlock Detection Algorithms.,2001,13,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde13.html#LeeK01,https://doi.org/10.1109/69.940736 +Hanhua Chen,Optimizing Bloom Filter Settings in Peer-to-Peer Multikeyword Searching.,2012,24,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde24.html#ChenJCLN12,https://doi.org/10.1109/TKDE.2011.14 +Haibo Hu,Range Nearest-Neighbor Query.,2006,18,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde18.html#HuL06,https://doi.org/10.1109/TKDE.2006.15 +Tamir Tassa,Secure Mining of Association Rules inHorizontally Distributed Databases.,2014,26,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde26.html#Tassa14,https://doi.org/10.1109/TKDE.2013.41 +Ken C. K. Lee,ROAD: A New Spatial Object Search Framework for Road Networks.,2012,24,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde24.html#LeeLZT12,https://doi.org/10.1109/TKDE.2010.243 +Sihem Amer-Yahia,Distributed Evaluation of Network Directory Queries.,2004,16,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde16.html#Amer-YahiaSS04,https://doi.org/10.1109/TKDE.2004.1269671 +Nader Bagherzadeh,A Parallel Asynchronous Garbage Collection Algorithm for Distributed Systems.,1991,3,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde3.html#BagherzadehHW91,https://doi.org/10.1109/69.75893 +Hui Yan,Robust Joint Feature Weights Learning Framework.,2016,28,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde28.html#YanYY16,https://doi.org/10.1109/TKDE.2016.2515613 +Srinka Basu,A Game Theory Inspired Approach to Stable Core Decomposition on Weighted Networks.,2016,28,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde28.html#BasuM16,https://doi.org/10.1109/TKDE.2015.2508817 +Shengzhi Xu,Differentially Private Frequent Sequence Mining.,2016,28,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde28.html#XuCSX016,https://doi.org/10.1109/TKDE.2016.2601106 +Glenn S. Himes,Automatic Target Recognition Using a Neocognitron.,1992,4,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde4.html#HimesI92,https://doi.org/10.1109/69.134254 +Shu Guo,SSE: Semantically Smooth Embedding for Knowledge Graphs.,2017,29,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde29.html#GuoWWWG17,https://doi.org/10.1109/TKDE.2016.2638425 +Aditya Telang,One Size Does Not Fit All: Toward User- and Query-Dependent Ranking for Web Databases.,2012,24,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde24.html#TelangLC12,https://doi.org/10.1109/TKDE.2011.36 +Fatih Altiparmak,Incremental Maintenance of Online Summaries Over Multiple Streams.,2008,20,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde20.html#AltiparmakTF08,https://doi.org/10.1109/TKDE.2007.190693 +Sukarna Barua,MWMOTE-Majority Weighted Minority Oversampling Technique for Imbalanced Data Set Learning.,2014,26,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde26.html#BaruaIYM14,https://doi.org/10.1109/TKDE.2012.232 +Vincent Ranwez,Subontology Extraction Using Hyponym and Hypernym Closure on is-a Directed Acyclic Graphs.,2012,24,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde24.html#RanwezRJ12,https://doi.org/10.1109/TKDE.2011.173 +Xiang Lian,Multiscale Representations for Fast Pattern Matching in Stream Time Series.,2009,21,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde21.html#LianCYHM09,https://doi.org/10.1109/TKDE.2008.184 +Chun-Hee Lee,RFID Data Processing in Supply Chain Management Using a Path Encoding Scheme.,2011,23,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde23.html#LeeC11,https://doi.org/10.1109/TKDE.2010.136 +Lushan Han,Improving Word Similarity by Augmenting PMI with Estimates of Word Polysemy.,2013,25,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde25.html#HanFMJY13,https://doi.org/10.1109/TKDE.2012.30 +Xiao-Jie Wang,Search Result Diversity Evaluation Based on Intent Hierarchies.,2018,30,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde30.html#WangWDSZ18,https://doi.org/10.1109/TKDE.2017.2729559 +Hsiao-Wei Hu,A Dynamic Discretization Approach for Constructing Decision Trees with a Continuous Label.,2009,21,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde21.html#HuCT09,https://doi.org/10.1109/TKDE.2009.24 +Chitta Baral,Combining Multiple Knowledge Bases.,1991,3,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde3.html#BaralKM91,https://doi.org/10.1109/69.88001 +Dieter Fensel,Structured Development of Problem Solving Methods.,2001,13,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde13.html#FenselM01,https://doi.org/10.1109/69.971187 +Hongteng Xu,Patient Flow Prediction via Discriminative Learning of Mutually-Correcting Processes.,2017,29,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde29.html#XuWNZ17,https://doi.org/10.1109/TKDE.2016.2618925 +Dinh-Mao Bui,Adaptive Replication Management in HDFS Based on Supervised Learning.,2016,28,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde28.html#BuiHHL16,https://doi.org/10.1109/TKDE.2016.2523510 +Qi Yang,Efficient Processing of Nested Fuzzy SQL Queries in a Fuzzy Database.,2001,13,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde13.html#YangZLWYNR01,https://doi.org/10.1109/69.971185 +Caetano Traina Jr.,Fast Indexing and Visualization of Metric Data Sets using Slim-Trees.,2002,14,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde14.html#TrainaTFS02,https://doi.org/10.1109/69.991715 +Jong P. Yoon,Presto Authorization: A Bitmap Indexing Scheme for High-Speed Access Control to XML Documents.,2006,18,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde18.html#Yoon06,https://doi.org/10.1109/TKDE.2006.113 +Shiming Xiang,Nonlinear Dimensionality Reduction with Local Spline Embedding.,2009,21,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde21.html#XiangNZZ09,https://doi.org/10.1109/TKDE.2008.204 +Li Wang,NUMA-Aware Scalable and Efficient In-Memory Aggregation on Large Domains.,2015,27,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde27.html#WangZZSZ15,https://doi.org/10.1109/TKDE.2014.2359675 +Zhenhui Li,ePeriodicity: Mining Event Periodicity from Incomplete Observations.,2015,27,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde27.html#LiWH15,https://doi.org/10.1109/TKDE.2014.2365801 +Yu-Xiong Wang,Nonnegative Matrix Factorization: A Comprehensive Review.,2013,25,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde25.html#WangZ13,https://doi.org/10.1109/TKDE.2012.51 +Gook-Pil Roh,Supporting Pattern-Matching Queries over Trajectories on Road Networks.,2011,23,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde23.html#RohRHY11,https://doi.org/10.1109/TKDE.2010.189 +Wei Wang 0011,VChunkJoin: An Efficient Algorithm for Edit Similarity Joins.,2013,25,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde25.html#WangQXLS13,https://doi.org/10.1109/TKDE.2012.79 +Chung-Chian Hsu,An Integrated Framework for Visualized and Exploratory Pattern Discovery in Mixed Data.,2006,18,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde18.html#HsuW06,https://doi.org/10.1109/TKDE.2006.23 +Jiming Liu 0001,A Method of Learning Implication Networks from Empirical Data: Algorithm and Monte-Carlo Simulation-Based Validation.,1997,9,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde9.html#LiuD97,https://doi.org/10.1109/69.649321 +Chao-Ton Su,Multiclass MTS for Simultaneous Feature Selection and Classification.,2009,21,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde21.html#SuH09,https://doi.org/10.1109/TKDE.2008.128 +Pasquale De Meo,Integration of the HL7 Standard in a Multiagent System to Support Personalized Access to e-Health Services.,2011,23,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde23.html#MeoQU11,https://doi.org/10.1109/TKDE.2010.174 +Neil C. Rowe,Load Balancing of Parallelized Information Filters.,2002,14,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde14.html#RoweZ02,https://doi.org/10.1109/69.991730 +Jianbin Huang,Revealing Density-Based Clustering Structure from the Core-Connected Tree of a Network.,2013,25,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde25.html#HuangSSDH13,https://doi.org/10.1109/TKDE.2012.100 +David M. Johnson,Semi-Supervised Nonlinear Distance Metric Learning via Forests of Max-Margin Cluster Hierarchies.,2016,28,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde28.html#JohnsonXC16,https://doi.org/10.1109/TKDE.2015.2507130 +Yi Zhang,Failure-Aware Cascaded Suppression in Wireless Sensor Networks.,2013,25,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde25.html#ZhangLY13,https://doi.org/10.1109/TKDE.2012.26 +Witold Litwin,Main Memory Oriented Optimization of OO Queries Using Typed Datalog with Foreign Predicates.,1992,4,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde4.html#LitwinR92,https://doi.org/10.1109/69.180603 +Xin Chen,Maintaining Strong Cache Consistency for the Domain Name System.,2007,19,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde19.html#ChenWRZ07,https://doi.org/10.1109/TKDE.2007.1049 +Arjen Hommersom,Verification of Medical Guidelines Using Background Knowledge in Task Networks.,2007,19,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde19.html#HommersomGLBS07,https://doi.org/10.1109/TKDE.2007.190611 +Alberto Bartoli,Semisupervised Wrapper Choice and Generation for Print-Oriented Documents.,2014,26,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde26.html#BartoliDMS14,https://doi.org/10.1109/TKDE.2012.254 +Matteo Catena,Energy-Efficient Query Processing in Web Search Engines.,2017,29,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde29.html#CatenaT17,https://doi.org/10.1109/TKDE.2017.2681279 +Dymitr Ruta,A Generic Multilevel Architecture for Time Series Prediction.,2011,23,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde23.html#RutaGL11,https://doi.org/10.1109/TKDE.2010.137 +Tengke Xiong,A Novel Variable-order Markov Model for Clustering Categorical Sequences.,2014,26,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde26.html#XiongWJH14,https://doi.org/10.1109/TKDE.2013.104 +Taher H. Haveliwala,Topic-Sensitive PageRank: A Context-Sensitive Ranking Algorithm for Web Search.,2003,15,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde15.html#Haveliwala03,https://doi.org/10.1109/TKDE.2003.1208999 +Mahmudur Rahman,Search Rank Fraud and Malware Detection in Google Play.,2017,29,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde29.html#RahmanRCC17,https://doi.org/10.1109/TKDE.2017.2667658 +Christian Frey,Efficient Information Flow Maximization in Probabilistic Graphs.,2018,30,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde30.html#FreyZER18,https://doi.org/10.1109/TKDE.2017.2780123 +Javier Herranz,Optimal Symbol Alignment Distance: A New Distance for Sequences of Symbols.,2011,23,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde23.html#HerranzNS11,https://doi.org/10.1109/TKDE.2010.190 +Gadi Solotorevsky,RAPS: A Rule-Based Language for Specifying Resource Allocation and Time-Tabling.,1994,6,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde6.html#SolotorevskyGM94,https://doi.org/10.1109/69.317700 +Rafae Bhatti,Engineering a Policy-Based System for Federated Healthcare Databases.,2007,19,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde19.html#BhattiSEAG07,https://doi.org/10.1109/TKDE.2007.1050 +Ke Wang 0001,Divide-and-Approximate: A Novel Constraint Push Strategy for Iceberg Cube Mining.,2005,17,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde17.html#WangJYDH05,https://doi.org/10.1109/TKDE.2005.45 +Chenghua Lin,Weakly Supervised Joint Sentiment-Topic Detection from Text.,2012,24,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde24.html#LinHER12,https://doi.org/10.1109/TKDE.2011.48 +Luigi Palopoli,Generalized Production Rules as a Basis for Integrating Active and Deductive Databases.,1997,9,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde9.html#PalopoliT97,https://doi.org/10.1109/69.649312 +Lidan Shou,Supporting Privacy Protection in Personalized Web Search.,2014,26,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde26.html#ShouB0014,https://doi.org/10.1109/TKDE.2012.201 +Upavan Gupta,A Game Theoretic Approach for Simultaneous Compaction and Equipartitioning of Spatial Data Sets.,2010,22,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde22.html#GuptaR10,https://doi.org/10.1109/TKDE.2009.110 +S. Manivannan,A Knowledge-Based Fatal Incident Decision Model.,1994,6,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde6.html#Manivannan94,https://doi.org/10.1109/69.298171 +Wray L. Buntine,A Guide to the Literature on Learning Probabilistic Networks from Data.,1996,8,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde8.html#Buntine96,https://doi.org/10.1109/69.494161 +Monami Banerjee,Unsupervised Feature Selection with Controlled Redundancy (UFeSCoR).,2015,27,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde27.html#BanerjeeP15,https://doi.org/10.1109/TKDE.2015.2455509 +Yew Kwong Woon,A Support-Ordered Trie for Fast Frequent Itemset Discovery.,2004,16,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde16.html#WoonNL04,https://doi.org/10.1109/TKDE.2004.1318569 +David Wai-Lok Cheung,Efficient Mining of Association Rules in Distributed Databases.,1996,8,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde8.html#CheungNFF96,https://doi.org/10.1109/69.553158 +Yoones A. Sekhavat,SEDEX: Scalable Entity Preserving Data Exchange.,2016,28,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde28.html#SekhavatP16,https://doi.org/10.1109/TKDE.2016.2535351 +Tzi-cker Chiueh,A History Approach of Automatic Relationships Establisment for VLSI Design Database.,1993,5,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde5.html#ChiuehK93,https://doi.org/10.1109/69.250083 +Chaitanya K. Baru,Join and Data Redistribution Algorithms for Hypercubes.,1993,5,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde5.html#BaruP93,https://doi.org/10.1109/69.204100 +Chao-Ton Su,An Extended Chi2 Algorithm for Discretization of Real Value Attributes.,2005,17,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde17.html#SuH05,https://doi.org/10.1109/TKDE.2005.39 +Marguerite C. Murphy,Multiprocessor Join Scheduling.,1993,5,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde5.html#MurphyR93,https://doi.org/10.1109/69.219739 +Massimiliano Albanese,Discovering the Top-k Unexplained Sequences in Time-Stamped Observation Data.,2014,26,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde26.html#AlbaneseMPPS14,https://doi.org/10.1109/TKDE.2013.33 +Tomoya Mori,Similar Subtree Search Using Extended Tree Inclusion.,2015,27,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde27.html#MoriTJHTA15,https://doi.org/10.1109/TKDE.2015.2457922 +Christos Theoharatos,A Generic Scheme for Color Image Retrieval Based on the Multivariate Wald-Wolfowitz Test.,2005,17,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde17.html#TheoharatosLEF05,https://doi.org/10.1109/TKDE.2005.85 +Sharadh Ramaswamy,Adaptive Cluster Distance Bounding for High-Dimensional Indexing.,2011,23,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde23.html#RamaswamyR11,https://doi.org/10.1109/TKDE.2010.59 +Liang Yao,A Topic Modeling Approach for Traditional Chinese Medicine Prescriptions.,2018,30,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde30.html#Yao0WZJ18,https://doi.org/10.1109/TKDE.2017.2787158 +Xiaoye Miao,Top-k Dominating Queries on Incomplete Data.,2016,28,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde28.html#MiaoGZCC16,https://doi.org/10.1109/TKDE.2015.2460742 +Mahtab Jahanbani Fard,A Bayesian Perspective on Early Stage Event Prediction in Longitudinal Data.,2016,28,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde28.html#FardWCR16,https://doi.org/10.1109/TKDE.2016.2608347 +Yingfei Wang,Learning Online Trends for Interactive Query Auto-Completion.,2017,29,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde29.html#WangODC17,https://doi.org/10.1109/TKDE.2017.2738639 +Jieying She,Conflict-Aware Event-Participant Arrangement and Its Variant for Online Setting.,2016,28,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde28.html#SheTCC16,https://doi.org/10.1109/TKDE.2016.2565468 +Antoon Bronselaer,Propagation of Data Fusion.,2015,27,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde27.html#BronselaerBT15,https://doi.org/10.1109/TKDE.2014.2365807 +Luca Cagliero,Infrequent Weighted Itemset Mining Using Frequent Pattern Growth.,2014,26,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde26.html#CaglieroG14,https://doi.org/10.1109/TKDE.2013.69 +Shyi-Ming Chen,Knowledge Representation Using Fuzzy Petri Nets.,1990,2,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde2.html#ChenKC90,https://doi.org/10.1109/69.60794 +Yun Xiong,Top-k Similarity Join in Heterogeneous Information Networks.,2015,27,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde27.html#XiongZY15,https://doi.org/10.1109/TKDE.2014.2373385 +Dong Xin,Computing Iceberg Cubes by Top-Down and Bottom-Up Integration: The StarCubing Approach.,2007,19,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde19.html#XinHLSW07,https://doi.org/10.1109/TKDE.2007.250589 +Freddy Lécué,Seeking Quality of Web Service Composition in a Semantic Dimension.,2011,23,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde23.html#LecueM11,https://doi.org/10.1109/TKDE.2010.237 +Jianliang Xu,Performance Analysis of Location-Dependent Cache Invalidation Schemes for Mobile Environments.,2003,15,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde15.html#XuTL03,https://doi.org/10.1109/TKDE.2003.1185846 +Elias Frentzos,On the Effect of Location Uncertainty in Spatial Querying.,2009,21,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde21.html#FrentzosGT09,https://doi.org/10.1109/TKDE.2008.164 +Sharma Chakravarthy,Early Active Database Efforts: A Capsule Summary.,1995,7,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde7.html#Chakravarthy95,https://doi.org/10.1109/69.476505 +S. Selvan,Efficient Mining of Large Maximal Bicliques from 3D Symmetric Adjacency Matrix.,2010,22,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde22.html#SelvanN10,https://doi.org/10.1109/TKDE.2010.97 +Joonsoo Bae,Automatic Control of Workflow Processes Using ECA Rules.,2004,16,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde16.html#BaeBKK04,https://doi.org/10.1109/TKDE.2004.20 +Elke A. Rundensteiner,Set Operations in Object-Based Data Models.,1992,4,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde4.html#RundensteinerB92,https://doi.org/10.1109/69.149933 +Maha Alsayasneh,Personalized and Diverse Task Composition in Crowdsourcing.,2018,30,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde30.html#AlsayasnehAGLPB18,https://doi.org/10.1109/TKDE.2017.2755660 +Youhuan Li,Longest Increasing Subsequence Computation over Streaming Sequences.,2018,30,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde30.html#Li0ZZ18,https://doi.org/10.1109/TKDE.2017.2761345 +Chien Chin Chen,TSCAN: A Content Anatomy Approach to Temporal Topic Summarization.,2012,24,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde24.html#ChenC12,https://doi.org/10.1109/TKDE.2010.228 +Eduard C. Dragut,Polarity Consistency Checking for Domain Independent Sentiment Dictionaries.,2015,27,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde27.html#DragutWSYM15,https://doi.org/10.1109/TKDE.2014.2339855 +Paolo Romano 0002,A Lightweight and Scalable e-Transaction Protocol for Three-Tier Systems with Centralized Back-End Database.,2005,17,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde17.html#RomanoQC05,https://doi.org/10.1109/TKDE.2005.171 +Salvatore T. March,Allocating Data and Operations to Nodes in Distributed Database Design.,1995,7,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde7.html#MarchR95,https://doi.org/10.1109/69.382299 +Quanzhong Li,Skyline Index for Time Series Data.,2004,16,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde16.html#LiLM04,https://doi.org/10.1109/TKDE.2004.14 +Piero Fraternali,Ordering and Selecting Production Rules for Constraint Maintenance: Complexity and Heuristic Solution.,1997,9,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde9.html#FraternaliP97,https://doi.org/10.1109/69.567060 +Yu Liu,Microscopic and Macroscopic Spatio-Temporal Topic Models for Check-in Data.,2017,29,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde29.html#LiuEQHC17,https://doi.org/10.1109/TKDE.2017.2703825 +Pradumn Kumar Pandey,A Parametric Model Approach for Structural Reconstruction of Scale-Free Networks.,2017,29,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde29.html#PandeyA17,https://doi.org/10.1109/TKDE.2017.2725264 +Xiangnan He 0001,BiRank: Towards Ranking on Bipartite Graphs.,2017,29,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde29.html#HeGKW17,https://doi.org/10.1109/TKDE.2016.2611584 +Amr El Abbadi,The Group Paradigm for Concurrency Control Protocols.,1989,1,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde1.html#AbbadiT89,https://doi.org/10.1109/69.87982 +Himanshu Gupta,Selection of Views to Materialize in a Data Warehouse.,2005,17,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde17.html#GuptaM05,https://doi.org/10.1109/TKDE.2005.16 +Chuitian Rong,Efficient and Scalable Processing of String Similarity Join.,2013,25,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde25.html#RongLWDCT13,https://doi.org/10.1109/TKDE.2012.195 +Slawomir Goryczka,\(m\) -Privacy for Collaborative Data Publishing.,2014,26,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde26.html#GoryczkaXF14,https://doi.org/10.1109/TKDE.2013.18 +Jian Pei,Mining Sequential Patterns by Pattern-Growth: The PrefixSpan Approach.,2004,16,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde16.html#PeiHMWPCDH04,https://doi.org/10.1109/TKDE.2004.77 +Jiang Bian,User Action Interpretation for Online Content Optimization.,2013,25,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde25.html#BianDHRC13,https://doi.org/10.1109/TKDE.2012.130 +J. Javier Samper,Visualization of Ontologies to Specify Semantic Descriptions of Services.,2008,20,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde20.html#SamperTCN08,https://doi.org/10.1109/TKDE.2007.190698 +Ho Jin Woo,estMax: Tracing Maximal Frequent Item Sets Instantly over Online Transactional Data Streams.,2009,21,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde21.html#WooL09,https://doi.org/10.1109/TKDE.2008.233 +Gholamhosein Sheikholeslami,SemQuery: Semantic Clustering and Querying on Heterogeneous Features for Visual Data.,2002,14,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde14.html#SheikholeslamiCZ02,https://doi.org/10.1109/TKDE.2002.1033769 +Zhizhou Yin,Sparse Feature Attacks in Adversarial Learning.,2018,30,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde30.html#YinW0C18,https://doi.org/10.1109/TKDE.2018.2790928 +Jie Chen 0007,Dense Subgraph Extraction with Application to Community Detection.,2012,24,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde24.html#ChenS12,https://doi.org/10.1109/TKDE.2010.271 +Wenyu Lu,A Study on the Structure of Linear Recursion.,1994,6,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde6.html#LuLH94,https://doi.org/10.1109/69.317703 +Sheng-Ke Yu,"Comments on ""Knowledge Representation Using Fuzzy Petri Nets"".",1995,7,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde7.html#Yu95, +He Wang,Static and Dynamic Delegation in the Role Graph Model.,2011,23,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde23.html#WangO11,https://doi.org/10.1109/TKDE.2010.205 +Jiaoyun Yang,A Space-Bounded Anytime Algorithm for the Multiple Longest Common Subsequence Problem.,2014,26,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde26.html#YangXSC14,https://doi.org/10.1109/TKDE.2014.2304464 +Avigdor Gal,Toward Web-Based Application Management Systems.,2001,13,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde13.html#GalM01,https://doi.org/10.1109/69.940740 +O. Deux,The Story of O2.,1990,2,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde2.html#Deux90,https://doi.org/10.1109/69.50908 +Anastasios Arvanitis,PrefDB: Supporting Preferences as First-Class Citizens in Relational Databases.,2014,26,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde26.html#ArvanitisK14,https://doi.org/10.1109/TKDE.2013.28 +Anuj Karpatne,Theory-Guided Data Science: A New Paradigm for Scientific Discovery from Data.,2017,29,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde29.html#KarpatneAFSBGSS17,https://doi.org/10.1109/TKDE.2017.2720168 +Willis Lang,Towards Multi-Tenant Performance SLOs.,2014,26,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde26.html#LangSPK14,https://doi.org/10.1109/TKDE.2013.74 +Bijaya Adhikari,Propagation-Based Temporal Network Summarization.,2018,30,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde30.html#AdhikariZABP18,https://doi.org/10.1109/TKDE.2017.2776282 +Sangdi Lin,CRAFTER: A Tree-Ensemble Clustering Algorithm for Static Datasets with Mixed Attributes and High Dimensionality.,2018,30,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde30.html#LinAR18,https://doi.org/10.1109/TKDE.2018.2807444 +Uday R. Kulkarni,Independently Updated Views.,1997,9,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde9.html#KulkarniR97,https://doi.org/10.1109/69.634756 +Alberto Belussi,An Extended Algebra for Constraint Databases.,1998,10,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde10.html#BelussiBC98,https://doi.org/10.1109/69.729722 +Peng Yang,Robust Online Multi-Task Learning with Correlative and Personalized Structures.,2017,29,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde29.html#YangZG17,https://doi.org/10.1109/TKDE.2017.2703106 +Qinyuan Feng,Voting Systems with Trust Mechanisms in Cyberspace: Vulnerabilities and Defenses.,2010,22,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde22.html#FengSLYD10,https://doi.org/10.1109/TKDE.2009.214 +Jing Zhang 0015,Imbalanced Multiple Noisy Labeling.,2015,27,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde27.html#ZhangWS15,https://doi.org/10.1109/TKDE.2014.2327039 +Jeffrey J. P. Tsai,Dependability of AI Systems - Guest Editor's Introduction.,1995,7,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde7.html#Tsai95,http://doi.ieeecomputersociety.org/10.1109/TKDE.1995.10001 +Cagri Balkesen,Main-Memory Hash Joins on Modern Processor Architectures.,2015,27,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde27.html#BalkesenTAO15,https://doi.org/10.1109/TKDE.2014.2313874 +Raymond Y. K. Lau,Toward a Fuzzy Domain Ontology Extraction Method for Adaptive e-Learning.,2009,21,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde21.html#LauSLCH09,https://doi.org/10.1109/TKDE.2008.137 +Xiuzhen Zhang,Efficient Computation of Iceberg Cubes by Bounding Aggregate Functions.,2007,19,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde19.html#ZhangCD07,https://doi.org/10.1109/TKDE.2007.1053 +Doron Rotem,Data Allocation for Multi-Disk Databases.,1993,5,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde5.html#RotemSS93,https://doi.org/10.1109/69.243516 +Xiaoxin Yin,Truth Discovery with Multiple Conflicting Information Providers on the Web.,2008,20,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde20.html#YinHY08,https://doi.org/10.1109/TKDE.2007.190745 +Elisa Bertino,Object-Oriented Query Languages: The Notion and the Issues.,1992,4,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde4.html#BertinoNPS92,https://doi.org/10.1109/69.142014 +Lorenzo De Nardo,The Subgraph Similarity Problem.,2009,21,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde21.html#NardoRT09,https://doi.org/10.1109/TKDE.2008.205 +Qiang Zeng 0001,Enforcement of Autonomous Authorizations in Collaborative Distributed Query Evaluation.,2015,27,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde27.html#ZengZLYCL15,https://doi.org/10.1109/TKDE.2014.2357018 +Liping Jing,An Entropy Weighting k-Means Algorithm for Subspace Clustering of High-Dimensional Sparse Data.,2007,19,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde19.html#JingNH07,https://doi.org/10.1109/TKDE.2007.1048 +Guoliang Li 0001,Crowdsourced Data Management: A Survey.,2016,28,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde28.html#LiWZF16,https://doi.org/10.1109/TKDE.2016.2535242 +Guy W. Mineau,Automatic Structuring of Knowledge Bases by Conceptual Clustering.,1995,7,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde7.html#MineauG95,https://doi.org/10.1109/69.469834 +Prahlad Fogla,q-Gram Matching Using Tree Models.,2006,18,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde18.html#FoglaL06,https://doi.org/10.1109/TKDE.2006.1599383 +KwangSoo Yang,Capacity-Constrained Network-Voronoi Diagram.,2015,27,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde27.html#YangSOS15,https://doi.org/10.1109/TKDE.2015.2445756 +Jianshu Weng,Credibility: How Agents Can Handle Unfair Third-Party Testimonies in Computational Trust Models.,2010,22,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde22.html#WengSMGL10,https://doi.org/10.1109/TKDE.2009.138 +Shirui Pan,Joint Structure Feature Exploration and Regularization for Multi-Task Graph Classification.,2016,28,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde28.html#PanWZZY16,https://doi.org/10.1109/TKDE.2015.2492567 +William H. Deason,A Rule-Based Software Test Data Generator.,1991,3,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde3.html#DeasonBCC91,https://doi.org/10.1109/69.75894 +Chung-Hsien Wu,Semantic Segment Extraction and Matching for Internet FAQ Retrieval.,2006,18,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde18.html#WuYL06,https://doi.org/10.1109/TKDE.2006.115 +Jiaping Zhao,Classifying Time Series Using Local Descriptors with Hybrid Sampling.,2016,28,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde28.html#ZhaoI16,https://doi.org/10.1109/TKDE.2015.2492558 +Carl S. Hartzman,A Relational Approach to Querying Streams.,1990,2,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde2.html#HartzmanW90,https://doi.org/10.1109/69.63252 +Zheng-Jun Zha,Product Aspect Ranking and Its Applications.,2014,26,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde26.html#ZhaYTWC14,https://doi.org/10.1109/TKDE.2013.136 +Junqiang Liu,Mining High Utility Patterns in One Phase without Generating Candidates.,2016,28,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde28.html#LiuWF16,https://doi.org/10.1109/TKDE.2015.2510012 +Mingyi Zhang,Workload Management in Database Management Systems: A Taxonomy.,2018,30,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde30.html#ZhangMPC18,https://doi.org/10.1109/TKDE.2017.2767044 +Jian Pei,EIC Editorial.,2014,26,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde26.html#Pei14a,https://doi.org/10.1109/TKDE.2014.2327286 +Shiyong Lu,Correct Execution of Transactions at Different Isolation Levels.,2004,16,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde16.html#LuBL04,https://doi.org/10.1109/TKDE.2004.34 +Siyuan Liu,Trajectory Community Discovery and Recommendation by Multi-Source Diffusion Modeling.,2017,29,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde29.html#LiuW17,https://doi.org/10.1109/TKDE.2016.2637898 +Longbing Cao,Flexible Frameworks for Actionable Knowledge Discovery.,2010,22,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde22.html#CaoZZLZP10,https://doi.org/10.1109/TKDE.2009.143 +Rong-Hua Li,Scalable Diversified Ranking on Large Graphs.,2013,25,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde25.html#LiY13,https://doi.org/10.1109/TKDE.2012.170 +Chunyu Yang,Closing the Loop in Webpage Understanding.,2010,22,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde22.html#YangCNZW10,https://doi.org/10.1109/TKDE.2009.155 +Ke Sun 0001,Mining Weighted Association Rules without Preassigned Weights.,2008,20,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde20.html#SunB08,https://doi.org/10.1109/TKDE.2007.190723 +Xixian Han,Efficient Skyline Computation on Big Data.,2013,25,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde25.html#HanLYW13,https://doi.org/10.1109/TKDE.2012.203 +Abdelhamid Malki,Composing Data Services with Uncertain Semantics.,2015,27,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde27.html#MalkiBBBM15,https://doi.org/10.1109/TKDE.2014.2359661 +Beng Chin Ooi,State of the Journal.,2012,24,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde24.html#Ooi12,https://doi.org/10.1109/TKDE.2012.15 +Basit Shafiq,Secure Interoperation in a Multidomain Environment Employing RBAC Policies.,2005,17,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde17.html#ShafiqJBG05,https://doi.org/10.1109/TKDE.2005.185 +Faraz Rasheed,Efficient Periodicity Mining in Time Series Databases Using Suffix Trees.,2011,23,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde23.html#RasheedAA11,https://doi.org/10.1109/TKDE.2010.76 +Lei Shi,VEGAS: Visual influEnce GrAph Summarization on Citation Networks.,2015,27,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde27.html#ShiTTL15,https://doi.org/10.1109/TKDE.2015.2453957 +Gyu Sang Choi,PB+-Tree: PCM-Aware B+-Tree.,2015,27,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde27.html#ChoiOL15,https://doi.org/10.1109/TKDE.2015.2419660 +Ludmila I. Kuncheva,A Bound on Kappa-Error Diagrams for Analysis of Classifier Ensembles.,2013,25,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde25.html#Kuncheva13,https://doi.org/10.1109/TKDE.2011.234 +Haibo He,Learning from Imbalanced Data.,2009,21,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde21.html#HeG09,https://doi.org/10.1109/TKDE.2008.239 +Liang Bai,An Optimization Model for Clustering Categorical Data Streams with Drifting Concepts.,2016,28,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde28.html#BaiCLS16,https://doi.org/10.1109/TKDE.2016.2594068 +Leong Hou U,Continuous Top-k Monitoring on Document Streams.,2017,29,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde29.html#UZML17,https://doi.org/10.1109/TKDE.2017.2657622 +Qing Xie 0002,Optimizing Cost of Continuous Overlapping Queries over Data Streams by Filter Adaption.,2016,28,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde28.html#XieZLZ16,https://doi.org/10.1109/TKDE.2016.2516541 +Kacem Zeroual,KBMS: A Knowledge-Based System for Modeling Software System Specifications.,1992,4,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde4.html#ZeroualR92,https://doi.org/10.1109/69.142015 +Abdullah Uz Tansel,Temporal Relational Data Model.,1997,9,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde9.html#Tansel97,https://doi.org/10.1109/69.599934 +Ernesto Damiani,Managing and Sharing Servents' Reputations in P2P Systems.,2003,15,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde15.html#DamianiVPS03,https://doi.org/10.1109/TKDE.2003.1209003 +Sergio Greco,Binding Propagation Techniques for the Optimization of Bound Disjunctive Queries.,2003,15,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde15.html#Greco03,https://doi.org/10.1109/TKDE.2003.1185840 +Jens Teubner,Frequent Item Computation on a Chip.,2011,23,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde23.html#TeubnerMA11,https://doi.org/10.1109/TKDE.2010.216 +Xianyuan Zhan,Citywide Traffic Volume Estimation Using Trajectory Data.,2017,29,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde29.html#ZhanZYU17,https://doi.org/10.1109/TKDE.2016.2621104 +Raymond T. Ng,CLARANS: A Method for Clustering Objects for Spatial Data Mining.,2002,14,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde14.html#NgH02,https://doi.org/10.1109/TKDE.2002.1033770 +Nicolas Bruno,Generating Queries with Cardinality Constraints for DBMS Testing.,2006,18,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde18.html#BrunoCT06,https://doi.org/10.1109/TKDE.2006.190 +Minhwa Chung,Parallel Natural Language Processing on a Semantic Network Array Processor.,1995,7,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde7.html#ChungM95,https://doi.org/10.1109/69.390246 +Ramadhana Bramandia,Incremental Maintenance of 2-Hop Labeling of Large Graphs.,2010,22,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde22.html#BramandiaCN10,https://doi.org/10.1109/TKDE.2009.117 +Jukka Teuhola,Path Signatures: A Way to Speed Up Recursion in Relational Databases.,1996,8,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde8.html#Teuhola96,https://doi.org/10.1109/69.506711 +Radu Sion,Rights Protection for Categorical Data.,2005,17,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde17.html#SionAP05,https://doi.org/10.1109/TKDE.2005.116 +M. Seetha Lakshmi,Effectiveness of Parallel Joins.,1990,2,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde2.html#LakshmiY90,https://doi.org/10.1109/69.63253 +P. Venkat Rangan,Efficient Storage Techniques for Digital Continuous Multimedia.,1993,5,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde5.html#RanganV93,https://doi.org/10.1109/69.234769 +Lei Zhu,Incremental and Decremental Max-Flow for Online Semi-Supervised Learning.,2016,28,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde28.html#ZhuPSBI16,https://doi.org/10.1109/TKDE.2016.2550042 +Pei Yang,A Generalized Hierarchical Multi-Latent Space Model for Heterogeneous Learning.,2016,28,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde28.html#YangDZH16,https://doi.org/10.1109/TKDE.2016.2611514 +Stan Danforth,A FAD for Data Intensive Applications.,1992,4,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde4.html#DanforthV92,https://doi.org/10.1109/69.124896 +Sunoh Choi,Secure kNN Query Processing in Untrusted Cloud Environments.,2014,26,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde26.html#ChoiGLB14,https://doi.org/10.1109/TKDE.2014.2302434 +Eunji Lee,On-Demand Snapshot: An Efficient Versioning File System for Phase-Change Memory.,2013,25,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde25.html#LeeJKB13,https://doi.org/10.1109/TKDE.2013.35 +Ming-Syan Chen,Optimal Design of Multiple Hash Tables for Concurrency Control.,1997,9,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde9.html#ChenY97,https://doi.org/10.1109/69.599928 +Yi Luo 0001,SPARK2: Top-k Keyword Query in Relational Databases.,2011,23,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde23.html#LuoWLZWL11,https://doi.org/10.1109/TKDE.2011.60 +Krishna Kant,"Correction to ""Server Capacity Planning for Web Traffic Workload"".",2000,12,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde12.html#KantW00,https://doi.org/10.1109/TKDE.2000.842256 +Yin Yang,HybMig: A Hybrid Approach to Dynamic Plan Migration for Continuous Queries.,2007,19,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde19.html#YangKPS07,https://doi.org/10.1109/TKDE.2007.43 +Dezhao Song,Linking Heterogeneous Data in the Semantic Web Using Scalable and Domain-Independent Candidate Selection.,2017,29,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde29.html#SongLH17,https://doi.org/10.1109/TKDE.2016.2606399 +Manogna Thimma,HyXAC: Hybrid XML Access Control Integrating View-Based and Query-Rewriting Approaches.,2015,27,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde27.html#ThimmaLLL15,https://doi.org/10.1109/TKDE.2015.2407366 +Loredana Caruccio,Relaxed Functional Dependencies - A Survey of Approaches.,2016,28,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde28.html#CaruccioDP16,https://doi.org/10.1109/TKDE.2015.2472010 +Yufei Tao,An Efficient Cost Model for Optimization of Nearest Neighbor Search in Low and Medium Dimensional Spaces.,2004,16,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde16.html#TaoZPM04,https://doi.org/10.1109/TKDE.2004.48 +Xian Liu,A Stochastic Programming Approach for Range Query Retrieval Problems.,2002,14,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde14.html#LiuX02,https://doi.org/10.1109/TKDE.2002.1019219 +Ninghui Li,Closeness: A New Privacy Measure for Data Publishing.,2010,22,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde22.html#LiLV10,https://doi.org/10.1109/TKDE.2009.139 +Sally I. McClean,Aggregation of Imprecise and Uncertain Information in Databases.,2001,13,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde13.html#McCleanSS01,https://doi.org/10.1109/69.971186 +Margaret H. Eich,Foreword.,1992,4,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde4.html#Eich92,http://doi.ieeecomputersociety.org/10.1109/TKDE.1992.10005 +Grigoris Antoniou,DR-Prolog: A System for Defeasible Reasoning with Rules and Ontologies on the Semantic Web.,2007,19,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde19.html#AntoniouB07,https://doi.org/10.1109/TKDE.2007.29 +Justin J. Levandoski,On Producing High and Early Result Throughput in Multijoin Query Plans.,2011,23,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde23.html#LevandoskiKM11,https://doi.org/10.1109/TKDE.2010.182 +Jonathan Lee,New Approach to Requirements Trade-Off Analysis for Complex Systems.,1998,10,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde10.html#LeeK98,https://doi.org/10.1109/69.706056 +Wenjing Zhang,Event Characterization and Prediction Based on Temporal Patterns in Dynamic Data System.,2014,26,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde26.html#ZhangF14,https://doi.org/10.1109/TKDE.2013.60 +Liang Wang 0001,Enhanced Visual Analysis for Cluster Tendency Assessment and Data Partitioning.,2010,22,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde22.html#WangGBLR10,https://doi.org/10.1109/TKDE.2009.192 +Tzung-Pei Hong,Splitting and Merging Version Spaces to Learn Disjunctive Concepts.,1999,11,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde11.html#HongT99,https://doi.org/10.1109/69.806939 +Elena Demidova,A Probabilistic Scheme for Keyword-Based Incremental Query Construction.,2012,24,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde24.html#DemidovaZN12,https://doi.org/10.1109/TKDE.2011.40 +Jiun-Long Huang,Dependent Data Broadcasting for Unordered Queries in a Multiple Channel Mobile Environment.,2004,16,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde16.html#HuangC04,https://doi.org/10.1109/TKDE.2004.39 +Minji Wu,Top-k Monitoring in Wireless Sensor Networks.,2007,19,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde19.html#WuXTL07,https://doi.org/10.1109/TKDE.2007.1038 +Yongli Wang,AOBA: Recognizing Object Behavior in Pervasive Urban Management.,2014,26,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde26.html#WangH14,https://doi.org/10.1109/TKDE.2013.155 +Shuaiqiang Wang,A Cooperative Coevolution Framework for Parallel Learning to Rank.,2015,27,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde27.html#WangWGWLM15,https://doi.org/10.1109/TKDE.2015.2453952 +Wai-Ho Au,A Fuzzy Approach to Partitioning Continuous Attributes for Classification.,2006,18,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde18.html#AuCW06,https://doi.org/10.1109/TKDE.2006.70 +Zhou Zhao,User Preference Learning for Online Social Recommendation.,2016,28,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde28.html#ZhaoLCHZ16,https://doi.org/10.1109/TKDE.2016.2569096 +Raymond Wai-Man Lo,A Probabilistic Limit on the Virtual Size of Replicated Disk Systems.,1992,4,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde4.html#LoM92,https://doi.org/10.1109/69.124901 +Yiu-ming Cheung,Local Kernel Regression Score for Selecting Features of High-Dimensional Data.,2009,21,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde21.html#CheungZ09,https://doi.org/10.1109/TKDE.2009.23 +Hector Garcia-Molina,Challenges in Data Crowdsourcing.,2016,28,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde28.html#Garcia-MolinaJM16,https://doi.org/10.1109/TKDE.2016.2518669 +Sungwon Jung,A Tree-Structured Index Allocation Method with Replication over Multiple Broadcast Channels in Wireless Environments.,2005,17,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde17.html#JungLP05,https://doi.org/10.1109/TKDE.2005.36 +Sourav S. Bhowmick,Detecting and Representing Relevant Web Deltas in WHOWEDA.,2003,15,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde15.html#BhowmickMN03,https://doi.org/10.1109/TKDE.2003.1185843 +Dimitrios Katsaros 0001,CDNs Content Outsourcing via Generalized Communities.,2009,21,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde21.html#KatsarosPSVSM09,https://doi.org/10.1109/TKDE.2008.92 +Kun-Ta Chuang,Quality-Aware Sampling and Its Applications in Incremental Data Mining.,2007,19,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde19.html#ChuangLC07,https://doi.org/10.1109/TKDE.2007.1005 +Tomoharu Iwata,Modeling Noisy Annotated Data with Application to Social Annotation.,2013,25,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde25.html#IwataYU13,https://doi.org/10.1109/TKDE.2012.96 +Ye Chen,Bayesian Networks for Knowledge-Based Authentication.,2007,19,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde19.html#ChenL07,https://doi.org/10.1109/TKDE.2007.1024 +Chengkai Li,Set Predicates in SQL: Enabling Set-Level Comparisons for Dynamically Formed Groups.,2014,26,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde26.html#LiHYS14,https://doi.org/10.1109/TKDE.2012.156 +Huimin Zhao,Constrained Cascade Generalization of Decision Trees.,2004,16,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde16.html#ZhaoR04,https://doi.org/10.1109/TKDE.2004.3 +Shuang Hao,A Novel Cost-Based Model for Data Repairing.,2017,29,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde29.html#Hao0LHTF17,https://doi.org/10.1109/TKDE.2016.2637928 +Raffaele Conforti,Filtering Out Infrequent Behavior from Business Process Event Logs.,2017,29,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde29.html#ConfortiRH17,https://doi.org/10.1109/TKDE.2016.2614680 +Martin Neil,Optimizing the Calculation of Conditional Probability Tables in Hybrid Bayesian Networks Using Binary Factorization.,2012,24,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde24.html#NeilCF12,https://doi.org/10.1109/TKDE.2011.87 +Shixia Liu,Exploring Topical Lead-Lag across Corpora.,2015,27,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde27.html#LiuCWYZD15,https://doi.org/10.1109/TKDE.2014.2324581 +Chih-Yu Wang 0001,Game-Theoretic Cross Social Media Analytic: How Yelp Ratings Affect Deal Selection on Groupon?,2018,30,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde30.html#00010L18,https://doi.org/10.1109/TKDE.2017.2779494 +Binxing Fang,Big Search in Cyberspace.,2017,29,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde29.html#FangJLLW17,https://doi.org/10.1109/TKDE.2017.2699675 +Lei Tang 0001,Identifying Evolving Groups in Dynamic Multimode Networks.,2012,24,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde24.html#TangLZ12,https://doi.org/10.1109/TKDE.2011.159 +Myunggwon Hwang,Automatic Enrichment of Semantic Relation Network and Its Application to Word Sense Disambiguation.,2011,23,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde23.html#HwangCK11,https://doi.org/10.1109/TKDE.2010.163 +Georgios I. Papadimitriou,Hierarchical Discretized Pursuit Nonlinear Learning Automata with Rapid Convergence and High Accuracy.,1994,6,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde6.html#Papadimitriou94a,https://doi.org/10.1109/69.298184 +Ludmila I. Kuncheva,Classifier Ensembles with a Random Linear Oracle.,2007,19,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde19.html#KunchevaR07,https://doi.org/10.1109/TKDE.2007.1016 +Jianzhong Li,AMS: A Declarative Formalism for Hierarchical Representation of Procedural Knowledge.,1994,6,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde6.html#LiATT94,https://doi.org/10.1109/69.298180 +Sergio Greco,COMPLEX: An Object-Oriented Logic Programming System.,1992,4,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde4.html#GrecoLR92,https://doi.org/10.1109/69.149930 +Timothy M. Hospedales,Finding Rare Classes: Active Learning with Generative and Discriminative Models.,2013,25,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde25.html#HospedalesGX13,https://doi.org/10.1109/TKDE.2011.231 +Philip S. Yu,Editorial: AE Introduction.,2003,15,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde15.html#Yu03a,http://doi.ieeecomputersociety.org/10.1109/TKDE.2003.10005 +Surajit Chaudhuri,Optimizing Top-k Selection Queries over Multimedia Repositories.,2004,16,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde16.html#ChaudhuriGM04,https://doi.org/10.1109/TKDE.2004.30 +Karen Trovato,Differential A*.,2002,14,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde14.html#TrovatoD02,https://doi.org/10.1109/TKDE.2002.1047763 +Amy J. Lee,The EVE Approach: View Synchronization in Dynamic Distributed Environments.,2002,14,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde14.html#LeeNR02,https://doi.org/10.1109/TKDE.2002.1033766 +George Valkanas,Mining Competitors from Large Unstructured Datasets.,2017,29,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde29.html#ValkanasLG17,https://doi.org/10.1109/TKDE.2017.2705101 +Marcus Chen,A Unified Feature Selection Framework for Graph Embedding on High Dimensional Data.,2015,27,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde27.html#ChenTTJ15,https://doi.org/10.1109/TKDE.2014.2382599 +Hongmei Chen,A Rough-Set-Based Incremental Approach for Updating Approximations under Dynamic Maintenance Environments.,2013,25,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde25.html#ChenLRLH13,https://doi.org/10.1109/TKDE.2011.220 +Edward Omiecinski,Performance Analysis of a Concurrent File Reorganization Algorithm for Record Clustering.,1994,6,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde6.html#OmiecinskiLS94,https://doi.org/10.1109/69.277769 +Rakesh Agrawal 0001,Searching with Numbers.,2003,15,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde15.html#AgrawalS03,https://doi.org/10.1109/TKDE.2003.1209004 +Pável Calado,An Information Retrieval Approach for Approximate Queries.,2003,15,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde15.html#CaladoR03,https://doi.org/10.1109/TKDE.2003.1161593 +Yücel Saygin,Exploiting Data Mining Techniques for Broadcasting Data in Mobile Computing Environments.,2002,14,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde14.html#SayginU02,https://doi.org/10.1109/TKDE.2002.1047775 +Beng Chin Ooi,EIC Editorial.,2011,23,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde23.html#Ooi11,https://doi.org/10.1109/TKDE.2011.7 +Tanmoy Chakraborty 0002,GenPerm: A Unified Method for Detecting Non-Overlapping and Overlapping Communities.,2016,28,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde28.html#0002KGMB16,https://doi.org/10.1109/TKDE.2016.2554119 +Smith Tsang,Decision Trees for Uncertain Data.,2011,23,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde23.html#TsangKYHL11,https://doi.org/10.1109/TKDE.2009.175 +Renchu Guan,Text Clustering with Seeds Affinity Propagation.,2011,23,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde23.html#GuanSMYL11,https://doi.org/10.1109/TKDE.2010.144 +Wentao Robin Ouyang,Truth Discovery in Crowdsourced Detection of Spatial Events.,2016,28,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde28.html#OuyangSTN16,https://doi.org/10.1109/TKDE.2015.2504928 +Georgios Meditskos,Structural and Role-Oriented Web Service Discovery with Taxonomies in OWL-S.,2010,22,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde22.html#MeditskosB10,https://doi.org/10.1109/TKDE.2009.89 +Hongyu Guo,Accelerated Continuous Conditional Random Fields For Load Forecasting.,2015,27,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde27.html#Guo15,https://doi.org/10.1109/TKDE.2015.2399311 +Zi Huang,Localized Co-Occurrence Model for Fast Approximate Search in 3D Structure Databases.,2008,20,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde20.html#HuangSZ08,https://doi.org/10.1109/TKDE.2007.190729 +Lu Lin,Road Traffic Speed Prediction: A Probabilistic Model Fusing Multi-Source Data.,2018,30,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde30.html#LinLCYH18,https://doi.org/10.1109/TKDE.2017.2718525 +Yufei Tao,Random Sampling for Continuous Streams with Arbitrary Updates.,2007,19,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde19.html#TaoLPH07,https://doi.org/10.1109/TKDE.2007.250588 +Humaira Ehsan,Efficient Recommendation of Aggregate Data Visualizations.,2018,30,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde30.html#EhsanSC18,https://doi.org/10.1109/TKDE.2017.2765634 +Philip S. Yu,EIC Editorial.,2004,16,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde16.html#Yu04b,https://doi.org/10.1109/TKDE.2004.41 +Lijun Chang,pSCAN: Fast and Exact Structural Graph Clustering.,2017,29,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde29.html#ChangLQZY17,https://doi.org/10.1109/TKDE.2016.2618795 +Sara Comai,Termination and Confluence by Rule Prioritization.,2003,15,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde15.html#ComaiT03,https://doi.org/10.1109/TKDE.2003.1185831 +Nabil R. Adam,Guest Editors' Introduction: Special Section on Digital Libraries.,1996,8,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde8.html#AdamY96,https://doi.org/10.1109/TKDE.1996.536243 +Min-Soo Kim 0002,DSP-CC-: I/O Efficient Parallel Computation of Connected Components in Billion-Scale Networks.,2015,27,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde27.html#0002LHPL15,https://doi.org/10.1109/TKDE.2015.2419665 +Jianyong Wang,Frequent Closed Sequence Mining without Candidate Maintenance.,2007,19,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde19.html#WangHL07,https://doi.org/10.1109/TKDE.2007.1043 +Michael Ortega,Supporting Ranked Boolean Similarity Queries in MARS.,1998,10,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde10.html#OrtegaRCPMH98,https://doi.org/10.1109/69.738357 +Ju Fan,CrowdOp: Query Optimization for Declarative Crowdsourcing Systems.,2015,27,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde27.html#FanZKLO15,https://doi.org/10.1109/TKDE.2015.2407353 +Hanqiang Cheng,ISC: An Iterative Social Based Classifier for Adult Account Detection on Twitter.,2015,27,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde27.html#ChengXLL15,https://doi.org/10.1109/TKDE.2014.2357012 +Deyu Zhou,Discriminative Training of the Hidden Vector State Model for Semantic Parsing.,2009,21,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde21.html#ZhouH09,https://doi.org/10.1109/TKDE.2008.95 +Taesung Lee,Overcoming Asymmetry in Entity Graphs.,2014,26,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde26.html#LeeCH14,https://doi.org/10.1109/TKDE.2014.2316799 +Di Cai,An Information-Theoretic Foundation for the Measurement of Discrimination Information.,2010,22,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde22.html#Cai10,https://doi.org/10.1109/TKDE.2009.134 +Jun-ichi Aoe,A Trie Compaction Algorithm for a Large Set of Keys.,1996,8,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde8.html#AoeMSP96,https://doi.org/10.1109/69.506713 +Zhao Zhang 0001,Binary- and Multi-class Group Sparse Canonical Correlation Analysis for Feature Extraction and Classification.,2013,25,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde25.html#ZhangZC13,https://doi.org/10.1109/TKDE.2012.217 +Mark Junjie Li,Agglomerative Fuzzy K-Means Clustering Algorithm with Selection of Number of Clusters.,2008,20,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde20.html#LiNCH08,https://doi.org/10.1109/TKDE.2008.88 +Puwei Wang,Building toward Capability Specifications of Web Services Based on an Environment Ontology.,2008,20,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde20.html#WangJLC08,https://doi.org/10.1109/TKDE.2007.190719 +Cyrus Shahabi,On Scheduling Atomic and Composite Continuous Media Objects.,2002,14,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde14.html#ShahabiGC02,https://doi.org/10.1109/69.991729 +Xutao Li,MultiComm: Finding Community Structurein Multi-Dimensional Networks.,2014,26,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde26.html#LiNY14,https://doi.org/10.1109/TKDE.2013.48 +Benjamin W. Wah,Genetics-Based Learning of New Heuristics: Rational Scheduling of Experiments and Generalization.,1995,7,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde7.html#WahICA95,https://doi.org/10.1109/69.469821 +Matthias Weidlich,Optimizing Event Pattern Matching Using Business Process Models.,2014,26,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde26.html#WeidlichZGMW14,https://doi.org/10.1109/TKDE.2014.2302306 +Richard J. Povinelli,Time Series Classification Using Gaussian Mixture Models of Reconstructed Phase Spaces.,2004,16,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde16.html#PovinelliJLY04,https://doi.org/10.1109/TKDE.2004.17 +John F. Roddick,Linear Temporal Sequences and Their Interpretation Using Midpoint Relationships.,2005,17,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde17.html#RoddickM05,https://doi.org/10.1109/TKDE.2005.12 +John R. Smith,A Wavelet Framework for Adapting Data Cube Views for OLAP.,2004,16,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde16.html#SmithLJ04,https://doi.org/10.1109/TKDE.2004.1277817 +George Papadakis 0001,Meta-Blocking: Taking Entity Resolutionto the Next Level.,2014,26,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde26.html#PapadakisKPN14,https://doi.org/10.1109/TKDE.2013.54 +Rakesh Agrawal 0001,Database Mining: A Performance Perspective.,1993,5,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde5.html#AgrawalIS93,https://doi.org/10.1109/69.250074 +Johannes Gehrke,Guest Editorial: Special Section on the International Conference on Data Engineering.,2014,26,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde26.html#GehrkeOP14,https://doi.org/10.1109/TKDE.2014.2314529 +Ismail A. Taha,Symbolic Interpretation of Artificial Neural Networks.,1999,11,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde11.html#TahaG99,https://doi.org/10.1109/69.774103 +Kian-Lee Tan,Query Rewriting for SWIFT (First) Answers.,2000,12,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde12.html#TanGO00,https://doi.org/10.1109/69.877503 +Cheng Zhou,Pattern Based Sequence Classification.,2016,28,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde28.html#ZhouCG16,https://doi.org/10.1109/TKDE.2015.2510010 +Alberto Caprara,Exact and Approximate Algorithms for the Index Selection Problem in Physical Database Design.,1995,7,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde7.html#CapraraFM95,https://doi.org/10.1109/69.476501 +Huan Liu 0001,Toward Multidatabase Mining: Identifying Relevant Databases.,2001,13,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde13.html#LiuLY01,https://doi.org/10.1109/69.940731 +Juan Manuel Pérez,Integrating Data Warehouses with Web Data: A Survey.,2008,20,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde20.html#PerezLAP08,https://doi.org/10.1109/TKDE.2007.190746 +Emre Eftelioglu,Ring-Shaped Hotspot Detection.,2016,28,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde28.html#EfteliogluSKF16,https://doi.org/10.1109/TKDE.2016.2607202 +Ramazan Savas Aygün,SynchRuler: A Rule-Based Flexible Synchronization Model with Model Checking.,2005,17,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde17.html#AygunZ05,https://doi.org/10.1109/TKDE.2005.205 +Li Jin,Personal Web Revisitation by Context and Content Keywords with Relevance Feedback.,2017,29,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde29.html#JinFLW17,https://doi.org/10.1109/TKDE.2017.2672747 +Srinivasan Raghunathan,A Planning Aid: An Intelligent Modeling System for Planning Problems Based on Constraint Satisfaction.,1992,4,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde4.html#Raghunathan92,https://doi.org/10.1109/69.149927 +Marta Capdevila Dalmau,A Communication Perspective on Automatic Text Categorization.,2009,21,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde21.html#DalmauF09,https://doi.org/10.1109/TKDE.2009.22 +Richang Hong,User Vitality Ranking and Prediction in Social Networking Services: A Dynamic Network Perspective.,2017,29,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde29.html#HongHGWW17,https://doi.org/10.1109/TKDE.2017.2672749 +Yongwook Shin,Joint Optimization of Index Freshness and Coverage in Real-Time Search Engines.,2012,24,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde24.html#ShinLP12,https://doi.org/10.1109/TKDE.2011.144 +Hong Zeng,Semi-Supervised Maximum Margin Clustering with Pairwise Constraints.,2012,24,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde24.html#ZengC12,https://doi.org/10.1109/TKDE.2011.68 +Xiong Wang,Finding Patterns on Protein Surfaces: Algorithms and Applications to Protein Classification.,2005,17,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde17.html#Wang05,https://doi.org/10.1109/TKDE.2005.126 +Scott T. Leutenegger,The Effect of Buffering on the Performance of R-Trees.,2000,12,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde12.html#LeuteneggerL00,https://doi.org/10.1109/69.842248 +Giuseppe Di Battista,Deductive Entity-Relationship Modeling.,1993,5,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde5.html#BattistaL93,https://doi.org/10.1109/69.224196 +Hon Wai Chun,Intelligent Critic System for Architectural Design.,1997,9,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde9.html#ChunL97,https://doi.org/10.1109/69.617054 +Yubao Wu,Efficient and Exact Local Search for Random Walk Based Top-K Proximity Query in Large Graphs.,2016,28,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde28.html#WuJZ16,https://doi.org/10.1109/TKDE.2016.2515579 +Marco Muselli,Binary Rule Generation via Hamming Clustering.,2002,14,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde14.html#MuselliL02,https://doi.org/10.1109/TKDE.2002.1047766 +Fabrizio Lamberti,A Relation-Based Page Rank Algorithm for Semantic Web Search Engines.,2009,21,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde21.html#LambertiSD09,https://doi.org/10.1109/TKDE.2008.113 +Lei Chen 0002,Continuous Subgraph Pattern Search over Certain and Uncertain Graph Streams.,2010,22,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde22.html#ChenW10,https://doi.org/10.1109/TKDE.2010.67 +Ziqiang Yu,Scalable Distributed Processing of K Nearest Neighbor Queries over Moving Objects.,2015,27,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde27.html#Yu0YP15,https://doi.org/10.1109/TKDE.2014.2364046 +Kazuyuki Tsuda,MORE: An Object-Oriented Data Model with a Facility for Changing Object Structures.,1991,3,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde3.html#TsudaYHTI91,https://doi.org/10.1109/69.109106 +Adetokunbo Makanju,A Lightweight Algorithm for Message Type Extraction in System Application Logs.,2012,24,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde24.html#MakanjuZM12,https://doi.org/10.1109/TKDE.2011.138 +Michael Stonebraker,The Integration of Rule Systems and Database Systems.,1992,4,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde4.html#Stonebraker92,https://doi.org/10.1109/69.166984 +De Wang,Feature Selection via Global Redundancy Minimization.,2015,27,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde27.html#WangNH15,https://doi.org/10.1109/TKDE.2015.2426703 +Javier Parra-Arnau,Privacy-Preserving Enhanced Collaborative Tagging.,2014,26,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde26.html#Parra-ArnauPFFR14,https://doi.org/10.1109/TKDE.2012.248 +Saeed Hashemi,Linear-Time Wrappers to Identify Atypical Points: Two Subset Generation Methods.,2005,17,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde17.html#Hashemi05,https://doi.org/10.1109/TKDE.2005.150 +Verena Kantere,Optimal Service Pricing for a Cloud Cache.,2011,23,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde23.html#KantereDFKA11,https://doi.org/10.1109/TKDE.2011.35 +Wolfgang Nejdl,Evaluating Recursive Queries in Distributed Databases.,1993,5,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde5.html#NejdlCW93,https://doi.org/10.1109/69.204095 +Hendrik Decker,Inconsistency-Tolerant Integrity Checking.,2011,23,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde23.html#DeckerM11,https://doi.org/10.1109/TKDE.2010.87 +Zhi-Hua Zhou,Tri-Training: Exploiting Unlabeled Data Using Three Classifiers.,2005,17,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde17.html#ZhouL05,https://doi.org/10.1109/TKDE.2005.186 +Weifeng Su,Record Matching over Query Results from Multiple Web Databases.,2010,22,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde22.html#SuWL10,https://doi.org/10.1109/TKDE.2009.90 +Stephen Lee Hansen,A Polynomial Algorithm for Optimal Univariate Microaggregation.,2003,15,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde15.html#HansenM03,https://doi.org/10.1109/TKDE.2003.1209020 +Qingguo Wang,A Fast Multiple Longest Common Subsequence (MLCS) Algorithm.,2011,23,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde23.html#WangKS11,https://doi.org/10.1109/TKDE.2010.123 +Aristides Gionis,Bump Hunting in the Dark: Local Discrepancy Maximization on Graphs.,2017,29,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde29.html#GionisMU17,https://doi.org/10.1109/TKDE.2016.2571693 +Wen-Chi Hou,Extraction and Applications of Statistical Relationships in Relational Databases.,1996,8,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde8.html#Hou96,https://doi.org/10.1109/69.553160 +Hung-Leng Chen,Catching the Trend: A Framework for Clustering Concept-Drifting Categorical Data.,2009,21,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde21.html#ChenCL09,https://doi.org/10.1109/TKDE.2008.192 +David Wai-Lok Cheung,Effect of Data Skewness and Workload Balance in Parallel Data Mining.,2002,14,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde14.html#CheungLX02,https://doi.org/10.1109/TKDE.2002.1000339 +Elaine Ribeiro de Faria,Evaluation of Multiclass Novelty Detection Algorithms for Data Streams.,2015,27,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde27.html#FariaGGC15,https://doi.org/10.1109/TKDE.2015.2441713 +Ryan Shaw,Building a Scalable Database-Driven Reverse Dictionary.,2013,25,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde25.html#ShawDVD13,https://doi.org/10.1109/TKDE.2011.225 +Zhitao Shen,A Generic Framework for Top-${\schmi k}$ Pairs and Top- ${\schmi k}$ Objects Queries over Sliding Windows.,2014,26,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde26.html#ShenCLZW14,https://doi.org/10.1109/TKDE.2012.181 +Hung Chim,Efficient Phrase-Based Document Similarity for Clustering.,2008,20,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde20.html#ChimD08,https://doi.org/10.1109/TKDE.2008.50 +Heng Tao Shen,Efficient Semantic-Based Content Search in P2P Network.,2004,16,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde16.html#ShenSY04,https://doi.org/10.1109/TKDE.2004.1318564 +Wei Sun 0002,Semantic Query Optimization for Tree and Chain Queries.,1994,6,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde6.html#SunY94,https://doi.org/10.1109/69.273033 +Xu Yang,Adaptive Data Access in Broadcast-Based Wireless Environments.,2005,17,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde17.html#YangB05,https://doi.org/10.1109/TKDE.2005.37 +Ophir Frieder,Multiprocessor Document Allocation: A Genetic Algorithm Approach.,1997,9,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde9.html#FriederS97,https://doi.org/10.1109/69.617055 +Wenfei Fan,Incremental Detection of Inconsistencies in Distributed Data.,2014,26,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde26.html#FanL0Y14,https://doi.org/10.1109/TKDE.2012.138 +Ye Yuan 0001,RSkNN: kNN Search on Road Networks by Incorporating Social Influence.,2016,28,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde28.html#YuanLCSW16,https://doi.org/10.1109/TKDE.2016.2518692 +Claire J. Thie,Learning Concept Descriptions with Typed Evolutionary Programming.,2005,17,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde17.html#ThieG05,https://doi.org/10.1109/TKDE.2005.199 +Xuebing Yang,AMDO: An Over-Sampling Technique for Multi-Class Imbalanced Problems.,2018,30,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde30.html#YangKZZ18,https://doi.org/10.1109/TKDE.2017.2761347 +Hyung Joon Kook,Representation of Models for Expert Problem Solving in Physics.,1991,3,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde3.html#KookN91,https://doi.org/10.1109/69.75888 +Pasquale Rullo,Olex: Effective Rule Learning for Text Categorization.,2009,21,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde21.html#RulloPCI09,https://doi.org/10.1109/TKDE.2008.206 +Toshimitsu Takahashi,Discovering Emerging Topics in Social Streams via Link-Anomaly Detection.,2014,26,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde26.html#TakahashiTY14,https://doi.org/10.1109/TKDE.2012.239 +Bin Cui 0001,Main Memory Indexing: The Case for BD-Tree.,2004,16,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde16.html#CuiOST04,https://doi.org/10.1109/TKDE.2004.1318568 +Kun-Lung Wu,Incremental Processing of Continual Range Queries over Moving Objects.,2006,18,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde18.html#WuCY06,https://doi.org/10.1109/TKDE.2006.176 +Mohamed G. Elfeky,Periodicity Detection in Time Series Databases.,2005,17,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde17.html#ElfekyAE05,https://doi.org/10.1109/TKDE.2005.114 +Jiang He,A Flexible Content Adaptation System Using a Rule-Based Approach.,2007,19,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde19.html#HeGHYB07,https://doi.org/10.1109/TKDE.2007.250590 +Xiaohui Tao,A Personalized Ontology Model for Web Information Gathering.,2011,23,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde23.html#TaoLZ11,https://doi.org/10.1109/TKDE.2010.145 +Xiaofei He,Learning a Maximum Margin Subspace for Image Retrieval.,2008,20,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde20.html#HeCH08,https://doi.org/10.1109/TKDE.2007.190692 +Yanhong Zhai,Structured Data Extraction from the Web Based on Partial Tree Alignment.,2006,18,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde18.html#ZhaiL06,https://doi.org/10.1109/TKDE.2006.197 +Xin Zhang,Fast Low-Rank Subspace Segmentation.,2014,26,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde26.html#ZhangSLM14,https://doi.org/10.1109/TKDE.2013.114 +Toru Ishida,Organization Self-Design of Distributed Production Systems.,1992,4,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde4.html#IshidaY92,https://doi.org/10.1109/69.134249 +Xiang Lian,Keyword Search Over Probabilistic RDF Graphs.,2015,27,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde27.html#Lian0H15,https://doi.org/10.1109/TKDE.2014.2365791 +Anand Inasu Chittilappilly,A Survey of General-Purpose Crowdsourcing Techniques.,2016,28,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde28.html#ChittilappillyC16,https://doi.org/10.1109/TKDE.2016.2555805 +álvaro Rodrigo,On Evaluating the Contribution of Validation for Question Answering.,2015,27,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde27.html#RodrigoP15,https://doi.org/10.1109/TKDE.2014.2373363 +Mao Ye 0002,Distributed Processing of Probabilistic Top-k Queries in Wireless Sensor Networks.,2013,25,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde25.html#YeLLL13,https://doi.org/10.1109/TKDE.2011.145 +Paul Ammann,On-The-Fly Reading of Entire Databases.,1995,7,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde7.html#AmmannJM95,https://doi.org/10.1109/69.469836 +Chang-Tien Lu,GLIP: A Concurrency Control Protocol for Clipping Indexing.,2009,21,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde21.html#LuDJM09,https://doi.org/10.1109/TKDE.2008.183 +Qi Fan,Discovering Newsworthy Themes from Sequenced Data: A Step Towards Computational Journalism.,2017,29,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde29.html#FanLZT17,https://doi.org/10.1109/TKDE.2017.2685587 +Leszek Rutkowski,Decision Trees for Mining Data Streams Based on the McDiarmid's Bound.,2013,25,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde25.html#RutkowskiPDJ13,https://doi.org/10.1109/TKDE.2012.66 +Sung-Won Jung,A Scalable Hybrid Approach for Extracting Head Components from Web Tables.,2006,18,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde18.html#JungK06,https://doi.org/10.1109/TKDE.2006.19 +Qiang Yang 0001,Test-Cost Sensitive Classification on Data with Missing Values.,2006,18,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde18.html#YangLCP06,https://doi.org/10.1109/TKDE.2006.84 +Saso Dzeroski,Inductive Learning in Deductive Databases.,1993,5,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde5.html#DzeroskiL93,https://doi.org/10.1109/69.250076 +Avigdor Gal,A Multiagent Update Process in a Database with Temporal Data Dependencies and Schema Versioning.,1998,10,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde10.html#GalE98,https://doi.org/10.1109/69.667083 +Evaggelia Pitoura,Locating Objects in Mobile Computing.,2001,13,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde13.html#PitouraS01,https://doi.org/10.1109/69.940733 +Nikos Mamoulis,Slot Index Spatial Join.,2003,15,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde15.html#MamoulisP03,https://doi.org/10.1109/TKDE.2003.1161591 +Long Yuan,Index-Based Densest Clique Percolation Community Search in Networks.,2018,30,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde30.html#YuanQZCY18,https://doi.org/10.1109/TKDE.2017.2783933 +Yuzhe Tang,LIGHT: A Query-Efficient Yet Low-Maintenance Indexing Scheme over DHTs.,2010,22,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde22.html#TangZX10,https://doi.org/10.1109/TKDE.2009.47 +Chung-Ching Yu,Mining Sequential Patterns from Multidimensional Sequence Data.,2005,17,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde17.html#YuC05,https://doi.org/10.1109/TKDE.2005.13 +Mehmet Fatih Amasyali,Classifier Ensembles with the Extended Space Forest.,2014,26,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde26.html#AmasyaliE14,https://doi.org/10.1109/TKDE.2013.9 +Zhaonian Zou,Mining Frequent Subgraph Patterns from Uncertain Graph Data.,2010,22,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde22.html#ZouLGZ10,https://doi.org/10.1109/TKDE.2010.80 +Anna Cinzia Squicciarini,Privacy Policy Inference of User-Uploaded Images on Content Sharing Sites.,2015,27,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde27.html#SquicciariniLSW15,https://doi.org/10.1109/TKDE.2014.2320729 +Vijay Varadharajan,An Access Control Model and Its Use in Representing Mental Health Application Access Policy.,1996,8,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde8.html#VaradharajanC96,https://doi.org/10.1109/69.485638 +Yiping Li,Dealing with Uncertainty: A Survey of Theories and Practices.,2013,25,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde25.html#LiCF13,https://doi.org/10.1109/TKDE.2012.179 +Robert G. Reynolds,PM: A System to Support the Automatic Acquisition of Programming Knowledge.,1990,2,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde2.html#ReynoldsMP90,https://doi.org/10.1109/69.60791 +Yannis E. Ioannidis,Guest Editor's Introduction to the Special Section on the IEEE International Conference on Data Engineering.,2010,22,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde22.html#IoannidisLN10,https://doi.org/10.1109/TKDE.2010.109 +,Call for Papers: Cloud Data Management.,2010,22,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde22.html#X10,https://doi.org/10.1109/TKDE.2010.17 +Ming-Syan Chen,Applying Segmented Right-Deep Trees to Pipelining Multiple Hash Joins.,1995,7,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde7.html#ChenLYY95,https://doi.org/10.1109/69.404036 +Zhiling Luo,Deep Learning of Graphs with Ngram Convolutional Neural Networks.,2017,29,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde29.html#LuoLYLW17,https://doi.org/10.1109/TKDE.2017.2720734 +Lei Zhou,Schema Evolution of an Object-Oriented Real-Time Database System for Manufacturing Automation.,1997,9,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde9.html#ZhouRS97,https://doi.org/10.1109/69.649319 +Ouri Wolfson,Parallel and Distributed Processing of Rules by Data Reduction.,1993,5,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde5.html#WolfsonO93,https://doi.org/10.1109/69.224203 +Chang Yao,Exploiting Single-Threaded Model in Multi-Core In-Memory Systems.,2016,28,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde28.html#YaoA0LOWZ16,https://doi.org/10.1109/TKDE.2016.2578319 +Jisu Oh,A Predictive-Reactive Method for Improving the Robustness of Real-Time Data Services.,2013,25,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde25.html#OhK13,https://doi.org/10.1109/TKDE.2012.44 +Simone Santini,Emergent Semantics through Interaction in Image Databases.,2001,13,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde13.html#SantiniGJ01,https://doi.org/10.1109/69.929893 +Yong Luo,Tensor Canonical Correlation Analysis for Multi-View Dimension Reduction.,2015,27,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde27.html#LuoTR0W15,https://doi.org/10.1109/TKDE.2015.2445757 +Chunyang Ma,KSQ: Top-(k) Similarity Query on Uncertain Trajectories.,2013,25,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde25.html#MaLS013,https://doi.org/10.1109/TKDE.2012.152 +Sang Ho Lee,Evaluation of Recursive Queries with Extended Rules in Deductive Databases.,1995,7,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde7.html#LeeH95,https://doi.org/10.1109/69.382302 +Mohamed Nabeel,Privacy Preserving Delegated Access Control in Public Clouds.,2014,26,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde26.html#NabeelB14,https://doi.org/10.1109/TKDE.2013.68 +Kamal Taha,XCDSearch: An XML Context-Driven Search Engine.,2010,22,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde22.html#TahaE10,https://doi.org/10.1109/TKDE.2009.210 +Hao Wang 0014,Relational Collaborative Topic Regression for Recommender Systems.,2015,27,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde27.html#WangL15,https://doi.org/10.1109/TKDE.2014.2365789 +Goa Ji,Representing Inference Control by Hypothesis-Based Association.,1993,5,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde5.html#Ji93,https://doi.org/10.1109/69.219743 +Eenjun Hwang,Presentation Planning for Distributed VoD Systems.,2002,14,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde14.html#HwangPS02,https://doi.org/10.1109/TKDE.2002.1033774 +Leilei Sun,Incremental Affinity Propagation Clustering Based on Message Passing.,2014,26,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde26.html#SunG14,https://doi.org/10.1109/TKDE.2014.2310215 +Hong-Sen Yan,A New Complicated-Knowledge Representation Approach Based on Knowledge Meshes.,2006,18,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde18.html#Yan06,https://doi.org/10.1109/TKDE.2006.2 +Michael Gibas,Online Index Recommendations for High-Dimensional Databases Using Query Workloads.,2008,20,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde20.html#GibasCF08,https://doi.org/10.1109/TKDE.2007.190690 +Gerald A. Sullivan,A Knowledge-Based Control Architecture with Interactive Reasoning Functions.,1996,8,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde8.html#Sullivan96,https://doi.org/10.1109/69.485646 +Meng Jiang 0001,Spotting Suspicious Behaviors in Multimodal Data: A General Metric and Algorithms.,2016,28,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde28.html#JiangBCHYF16,https://doi.org/10.1109/TKDE.2016.2555310 +Sankar K. Pal,A Web Surfer Model Incorporating Topic Continuity.,2005,17,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde17.html#PalND05,https://doi.org/10.1109/TKDE.2005.69 +Chi-Yao Tseng,Cosdes: A Collaborative Spam Detection System with a Novel E-Mail Abstraction Scheme.,2011,23,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde23.html#TsengSC11,https://doi.org/10.1109/TKDE.2010.147 +Xiaoping Zhou,Structure Based User Identification across Social Networks.,2018,30,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde30.html#ZhouLDZ18,https://doi.org/10.1109/TKDE.2017.2784430 +Pai Peng,KISS: Knowing Camera Prototype System for Recognizing and Annotating Places-of-Interest.,2016,28,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde28.html#PengS0CW16,https://doi.org/10.1109/TKDE.2015.2489647 +Ali Shahbazi,Extended Subtree: A New SimilarityFunction for Tree Structured Data.,2014,26,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde26.html#ShahbaziM14,https://doi.org/10.1109/TKDE.2013.53 +Jianhua Feng,Efficient Fuzzy Type-Ahead Search in XML Data.,2012,24,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde24.html#FengL12,https://doi.org/10.1109/TKDE.2010.264 +Luca Cagliero,Discovering Temporal Change Patterns in the Presence of Taxonomies.,2013,25,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde25.html#Cagliero13,https://doi.org/10.1109/TKDE.2011.233 +Feng Yang,Emphasizing Minority Class in LDA for Feature Subset Selection on High-Dimensional Small-Sized Problems.,2015,27,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde27.html#YangMLT15,https://doi.org/10.1109/TKDE.2014.2320732 +Jia Xu,Efficient Similarity Join Based on Earth Mover's Distance Using MapReduce.,2015,27,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde27.html#XuL0WYZ15,https://doi.org/10.1109/TKDE.2015.2411281 +Yadong Mu,Stochastic Gradient Made Stable: A Manifold Propagation Approach for Large-Scale Optimization.,2017,29,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde29.html#MuLLF17,https://doi.org/10.1109/TKDE.2016.2604302 +Zhengbao Jiang,Generating Query Facets Using Knowledge Bases.,2017,29,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde29.html#JiangDW17,https://doi.org/10.1109/TKDE.2016.2623782 +Farokh B. Bastani,Acknowledging TKDE's Fine Past and Looking to an Even Better Future.,1997,9,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde9.html#Bastani97,http://doi.ieeecomputersociety.org/10.1109/TKDE.1997.10000 +Manli Zhu,Top-k Spatial Joins.,2005,17,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde17.html#ZhuPZL05,https://doi.org/10.1109/TKDE.2005.65 +Manos Papagelis,Sampling Online Social Networks.,2013,25,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde25.html#PapagelisDK13,https://doi.org/10.1109/TKDE.2011.254 +Shaoxu Song,Matching Heterogeneous Events with Patterns.,2017,29,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde29.html#SongGWZWY17,https://doi.org/10.1109/TKDE.2017.2690912 +Jiawei Han 0001,Mining Multiple-Level Association Rules in Large Databases.,1999,11,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde11.html#HanF99,https://doi.org/10.1109/69.806937 +Pierangela Samarati,Information Flow Control in Object-Oriented Systems.,1997,9,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde9.html#SamaratiBCJ97,https://doi.org/10.1109/69.617048 +Eric Hsueh-Chan Lu,Mining Cluster-Based Temporal Mobile Sequential Patterns in Location-Based Service Environments.,2011,23,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde23.html#LuTY11,https://doi.org/10.1109/TKDE.2010.155 +Madhukar R. Korupolu,Coordinated Placement and Replacement for Large-Scale Distributed Caches.,2002,14,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde14.html#KorupoluD02,https://doi.org/10.1109/TKDE.2002.1047770 +Bo Yuan,On the Optimal Robot Routing Problem in Wireless Sensor Networks.,2007,19,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde19.html#YuanOS07,https://doi.org/10.1109/TKDE.2007.1062 +Boyu Li 0003,Cross-Bucket Generalization for Information and Privacy Preservation.,2018,30,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde30.html#LiLHZ18,https://doi.org/10.1109/TKDE.2017.2773069 +Lipika Deka,Consistent Online Backup in Transactional File Systems.,2014,26,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde26.html#DekaB14,https://doi.org/10.1109/TKDE.2014.2302297 +Daichi Amagata,Space Filling Approach for Distributed Processing of Top-k Dominating Queries.,2018,30,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde30.html#AmagataHO18,https://doi.org/10.1109/TKDE.2018.2790387 +Kuang Chen,Usher: Improving Data Quality with Dynamic Forms.,2011,23,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde23.html#ChenCCHP11,https://doi.org/10.1109/TKDE.2011.31 +Pinghui Wang,MOSS-5: A Fast Method of Approximating Counts of 5-Node Graphlets in Large Graphs.,2018,30,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde30.html#WangZZLCLTTG18,https://doi.org/10.1109/TKDE.2017.2756836 +Shuji Hao,Second-Order Online Active Learning and Its Applications.,2018,30,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde30.html#HaoLZZHM18,https://doi.org/10.1109/TKDE.2017.2778097 +Leana Golubchik,Introduction to the Special Section on the Fifth International Workshop on Multimedia Information Systems.,2001,13,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde13.html#GolubchikTT01,https://doi.org/10.1109/TKDE.2001.956095 +Ming Liu 0004,APP Relationship Calculation: An Iterative Process.,2015,27,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde27.html#LiuWZLW15,https://doi.org/10.1109/TKDE.2015.2405557 +Leonidas Fegaras,Incremental Query Processing on Big Data Streams.,2016,28,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde28.html#Fegaras16,https://doi.org/10.1109/TKDE.2016.2601103 +Thomas F. Keefe,Database Concurrency Control in Multilevel Secure Database Management Systems.,1993,5,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde5.html#KeefeTS93,https://doi.org/10.1109/69.250090 +Elena Baralis,A Lazy Approach to Associative Classification.,2008,20,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde20.html#BaralisCG08,https://doi.org/10.1109/TKDE.2007.190677 +Indre Zliobaite,Adaptive Preprocessing for Streaming Data.,2014,26,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde26.html#ZliobaiteG14,https://doi.org/10.1109/TKDE.2012.147 +Themis Palpanas,Using Datacube Aggregates for Approximate Querying and Deviation Detection.,2005,17,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde17.html#PalpanasKM05,https://doi.org/10.1109/TKDE.2005.187 +Olfa Nasraoui,A Web Usage Mining Framework for Mining Evolving User Profiles in Dynamic Web Sites.,2008,20,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde20.html#NasraouiSSBG08,https://doi.org/10.1109/TKDE.2007.190667 +David B. Blumenthal,Improved Lower Bounds for Graph Edit Distance.,2018,30,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde30.html#BlumenthalG18,https://doi.org/10.1109/TKDE.2017.2772243 +Lifei Chen,Model-Based Method for Projective Clustering.,2012,24,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde24.html#ChenJW12,https://doi.org/10.1109/TKDE.2010.256 +C. Y. Chen,Optimal Bucket Allocation Design of k-ary MKH Files for Partial Match Retrieval.,1997,9,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde9.html#ChenLCL97,https://doi.org/10.1109/69.567057 +Pai-Cheng Chu,Cell Suppression Methodology: The Importance of Suppressing Marginal Totals.,1997,9,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde9.html#Chu97,https://doi.org/10.1109/69.617047 +Lei Meng,Semi-Supervised Heterogeneous Fusion for Multimedia Data Co-Clustering.,2014,26,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde26.html#MengTX14,https://doi.org/10.1109/TKDE.2013.47 +Qing Wang,Semantic-Aware Blocking for Entity Resolution.,2016,28,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde28.html#WangCL16,https://doi.org/10.1109/TKDE.2015.2468711 +Minos N. Garofalakis,Mining Sequential Patterns with Regular Expression Constraints.,2002,14,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde14.html#GarofalakisRS02,https://doi.org/10.1109/TKDE.2002.1000341 +Guangtao Wang,Automatic Clustering via Outward Statistical Testing on Density Metrics.,2016,28,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde28.html#WangS16,https://doi.org/10.1109/TKDE.2016.2535209 +Charu C. Aggarwal,Redefining Clustering for High-Dimensional Applications.,2002,14,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde14.html#AggarwalY02,https://doi.org/10.1109/69.991713 +Ma'ayan Dror,OCCT: A One-Class Clustering Tree for Implementing One-to-Many Data Linkage.,2014,26,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde26.html#DrorSRE14,https://doi.org/10.1109/TKDE.2013.23 +Jiuyong Li,On Optimal Rule Discovery.,2006,18,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde18.html#Li06,https://doi.org/10.1109/TKDE.2006.1599385 +Jonathan C. L. Liu,Design and Evaluation of a Generic Software Architecture for On-Demand Video Servers.,1999,11,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde11.html#LiuDSHL99,https://doi.org/10.1109/69.774101 +Hongxin Hu,Multiparty Access Control for Online Social Networks: Model and Mechanisms.,2013,25,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde25.html#HuAJ13,https://doi.org/10.1109/TKDE.2012.97 +Vijay S. Mookerjee,Sequential Decision Models for Expert System Optimization.,1997,9,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde9.html#MookerjeeM97,https://doi.org/10.1109/69.634747 +Abdul Mohsen Almalawi,kNNVWC: An Efficient k-Nearest Neighbors Approach Based on Various-Widths Clustering.,2016,28,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde28.html#AlmalawiFTCK16,https://doi.org/10.1109/TKDE.2015.2460735 +Krishna Kant,Server Capacity Planning for Web Traffic Workload.,1999,11,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde11.html#KantW99,https://doi.org/10.1109/69.806933 +Farshad Fotouhi,Optimal Secondary Storage Access Sequence for Performing Relational Join.,1989,1,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde1.html#FotouhiP89,https://doi.org/10.1109/69.87978 +Dacheng Tao,Negative Samples Analysis in Relevance Feedback.,2007,19,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde19.html#TaoLM07,https://doi.org/10.1109/TKDE.2007.1003 +Chuang Lin,Logical Inference of Horn Clauses in Petri Net Models.,1993,5,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde5.html#LinCWM93,https://doi.org/10.1109/69.224194 +Shaoxu Song,Answering Frequent Probabilistic Inference Queries in Databases.,2011,23,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde23.html#SongCY11,https://doi.org/10.1109/TKDE.2010.146 +Thanit Puthpongsiriporn,Attribute-Level Neighbor Hierarchy Construction Using Evolved Pattern-Based Knowledge Induction.,2006,18,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde18.html#PuthpongsiripornPBWB06,https://doi.org/10.1109/TKDE.2006.104 +Atsuo Yoshitaka,A Survey on Content-Based Retrieval for Multimedia Databases.,1999,11,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde11.html#YoshitakaI99,https://doi.org/10.1109/69.755617 +Dominique Laurent,A Partition Model Approach to Updating Universal Scheme Interfaces.,1994,6,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde6.html#LaurentS94,https://doi.org/10.1109/69.277774 +Sarana Nutanong,Incremental Evaluation of Visible Nearest Neighbor Queries.,2010,22,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde22.html#NutanongTZ10,https://doi.org/10.1109/TKDE.2009.158 +Kai Yu 0001,Probabilistic Memory-Based Collaborative Filtering.,2004,16,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde16.html#YuSTXK04,https://doi.org/10.1109/TKDE.2004.1264822 +Matteo Golfarelli,myOLAP: An Approach to Express and Evaluate OLAP Preferences.,2011,23,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde23.html#GolfarelliRB11,https://doi.org/10.1109/TKDE.2010.196 +Heasoo Hwang,BinRank: Scaling Dynamic Authority-Based Search Using Materialized Subgraphs.,2010,22,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde22.html#HwangBRN10,https://doi.org/10.1109/TKDE.2010.85 +Xike Xie,Scalable Evaluation of Trajectory Queries over Imprecise Location Data.,2014,26,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde26.html#XieYCL14,https://doi.org/10.1109/TKDE.2013.77 +Aris Gkoulalas-Divanis,Exact Knowledge Hiding through Database Extension.,2009,21,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde21.html#Gkoulalas-DivanisV09,https://doi.org/10.1109/TKDE.2008.199 +Andrew J. Worth,A Recurrent Cooperative/Competitive Field for Segmentation of Magnetic Brain Images.,1992,4,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde4.html#WorthLK92,https://doi.org/10.1109/69.134252 +Spiros Skiadopoulos,Computing and Managing Cardinal Direction Relations.,2005,17,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde17.html#SkiadopoulosGSVSK05,https://doi.org/10.1109/TKDE.2005.192 +Sujeet Pradhan,A Query Model to Synthesize Answer Intervals from Indexed Video Units.,2001,13,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde13.html#PradhanTT01,https://doi.org/10.1109/69.956104 +Wang Lian,Indexing Useful Structural Patterns for XML Query Processing.,2005,17,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde17.html#LianMCY05,https://doi.org/10.1109/TKDE.2005.110 +Zahid Pervaiz,Accuracy-Constrained Privacy-Preserving Access Control Mechanismfor Relational Data.,2014,26,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde26.html#PervaizAGP14,https://doi.org/10.1109/TKDE.2013.71 +Juanzi Li,RiMOM: A Dynamic Multistrategy Ontology Alignment Framework.,2009,21,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde21.html#LiTLL09,https://doi.org/10.1109/TKDE.2008.202 +Apostol Natsev,WALRUS: A Similarity Retrieval Algorithm for Image Databases.,2004,16,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde16.html#NatsevRS04,https://doi.org/10.1109/TKDE.2003.1262183 +Mo Li,Nonthreshold-Based Event Detection for 3D Environment Monitoring in Sensor Networks.,2008,20,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde20.html#LiLC08a,https://doi.org/10.1109/TKDE.2008.114 +Paolo Frasconi,Guest Editors' Introduction: Special Section on Connectionist Models for Learning in Structured Domains.,2001,13,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde13.html#FrasconiGS01,https://doi.org/10.1109/TKDE.2001.917554 +Evan Wei Xiang,Bridging Domains Using World Wide Knowledge for Transfer Learning.,2010,22,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde22.html#XiangCHY10,https://doi.org/10.1109/TKDE.2010.31 +Wen-Guey Tzeng,A Time-Bound Cryptographic Key Assignment Scheme for Access Control in a Hierarchy.,2002,14,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde14.html#Tzeng02,https://doi.org/10.1109/69.979981 +Carlos Ordonez 0001,Horizontal Aggregations in SQL to Prepare Data Sets for Data Mining Analysis.,2012,24,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde24.html#OrdonezC12,https://doi.org/10.1109/TKDE.2011.16 +Neil C. Rowe,Finding and Labeling the Subject of a Captioned Depictive Natural Photograph.,2002,14,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde14.html#Rowe02,https://doi.org/10.1109/69.979983 +Ahmed K. Elmagarmid,Scalable Cache Invalidation Algorithms for Mobile Data Access.,2003,15,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde15.html#ElmagarmidJHL03,https://doi.org/10.1109/TKDE.2003.1245288 +Mansurul Bhuiyan,An Iterative MapReduce Based Frequent Subgraph Mining Algorithm.,2015,27,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde27.html#BhuiyanH15,https://doi.org/10.1109/TKDE.2014.2345408 +Santhanakrishnan Anand,Spatio-Temporal Analysis of Passive Consumption in Internet Media.,2015,27,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde27.html#AnandVSC15,https://doi.org/10.1109/TKDE.2015.2419653 +Sattar Hashemi,Adapted One-versus-All Decision Trees for Data Stream Classification.,2009,21,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde21.html#HashemiYMK09,https://doi.org/10.1109/TKDE.2008.181 +Wen-Chih Peng,Developing Data Allocation Schemes by Incremental Mining of User Moving Patterns in a Mobile Computing System.,2003,15,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde15.html#PengC03,https://doi.org/10.1109/TKDE.2003.1161583 +Charu C. Aggarwal,Fast Algorithms for Online Generation of Profile Association Rules.,2002,14,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde14.html#AggarwalSY02,https://doi.org/10.1109/TKDE.2002.1033771 +Chengxi Zang,On Power Law Growth of Social Networks.,2018,30,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde30.html#ZangCFZ18,https://doi.org/10.1109/TKDE.2018.2801844 +Jae-Gil Lee 0001,A Unifying Framework of Mining Trajectory Patterns of Various Temporal Tightness.,2015,27,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde27.html#LeeHL15,https://doi.org/10.1109/TKDE.2014.2377742 +Claudio Lucchese,A Unifying Framework for Mining Approximate Top- \(k\) Binary Patterns.,2014,26,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde26.html#LuccheseOP14,https://doi.org/10.1109/TKDE.2013.181 +Elisa Bertino,The Indispensability of Dispensable Indexes.,1999,11,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde11.html#BertinoO99,https://doi.org/10.1109/69.755611 +Chenbo Fu,Link Weight Prediction Using Supervised Learning Methods and Its Application to Yelp Layered Network.,2018,30,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde30.html#FuZFCCWXX18,https://doi.org/10.1109/TKDE.2018.2801854 +Nobuhisa Ueda,A Probabilistic Model for Mining Labeled Ordered Trees: Capturing Patterns in Carbohydrate Sugar Chains.,2005,17,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde17.html#UedaAYAM05,https://doi.org/10.1109/TKDE.2005.117 +Pornpit Wongthongtham,Development of a Software Engineering Ontology for Multisite Software Development.,2009,21,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde21.html#WongthongthamCDS09,https://doi.org/10.1109/TKDE.2008.209 +Shengxun Yang,Workload-Based Ordering of Multi-Dimensional Data.,2016,28,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde28.html#YangHC16,https://doi.org/10.1109/TKDE.2015.2496252 +Min-Jae Lee,Transform-Space View: Performing Spatial Join in the Transform Space Using Original-Space Indexes.,2006,18,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde18.html#LeeWHS06,https://doi.org/10.1109/TKDE.2006.33 +Andreas Pashalidis,Evaluating Tag-Based Preference Obfuscation Systems.,2012,24,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde24.html#PashalidisP12,https://doi.org/10.1109/TKDE.2011.118 +Masayuki Okabe,Semisupervised Query Expansion with Minimal Feedback.,2007,19,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde19.html#OkabeY07,https://doi.org/10.1109/TKDE.2007.190646 +Gediminas Adomavicius,Improving Stability of Recommender Systems: A Meta-Algorithmic Approach.,2015,27,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde27.html#AdomaviciusZ15,https://doi.org/10.1109/TKDE.2014.2384502 +Weining Zhang,An Efficient Evaluation of a Fuzzy Equi-Join Using Fuzzy Equality Indicators.,2000,12,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde12.html#ZhangW00,https://doi.org/10.1109/69.842264 +Jian Pei,EIC Editorial.,2016,28,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde28.html#PeiALLLMOPPCWW016,https://doi.org/10.1109/TKDE.2016.2592658 +Daniel Keren,Shape Sensitive Geometric Monitoring.,2012,24,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde24.html#KerenSSL12,https://doi.org/10.1109/TKDE.2011.102 +Mingjun Song,A Transaction Mapping Algorithm for Frequent Itemsets Mining.,2006,18,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde18.html#SongR06,https://doi.org/10.1109/TKDE.2006.1599386 +Jing Li,Optimal Route Queries with Arbitrary Order Constraints.,2013,25,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde25.html#LiYM13,https://doi.org/10.1109/TKDE.2012.36 +Alex Delis,Techniques for Update Handling in the Enhanced Client-Server DBMS.,1998,10,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde10.html#DelisR98,https://doi.org/10.1109/69.687978 +Ke Deng,Access Time Oracle for Planar Graphs.,2016,28,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde28.html#DengLPLZ16,https://doi.org/10.1109/TKDE.2016.2547382 +Qinghua Hu,Kernelized Fuzzy Rough Sets and Their Applications.,2011,23,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde23.html#HuYPC11,https://doi.org/10.1109/TKDE.2010.260 +Guoren Wang,Energy-Efficient Reverse Skyline Query Processing over Wireless Sensor Networks.,2012,24,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde24.html#WangXCL12,https://doi.org/10.1109/TKDE.2011.64 +Shuiwang Ji,Kernel Uncorrelated and Regularized Discriminant Analysis: A Theoretical and Computational Study.,2008,20,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde20.html#JiY08,https://doi.org/10.1109/TKDE.2008.57 +Weiyi Meng,Performance Analysis of Three Text-Join Algorithms.,1998,10,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde10.html#MengYWR98,https://doi.org/10.1109/69.687979 +Harry S. Delugach,Wizard: A Database Inference Analysis and Detection System.,1996,8,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde8.html#DelugachH96,https://doi.org/10.1109/69.485629 +Clara Pizzuti,P-AutoClass: Scalable Parallel Clustering for Mining Large Data Sets.,2003,15,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde15.html#PizzutiT03,https://doi.org/10.1109/TKDE.2003.1198395 +Xin Mu,Classification Under Streaming Emerging New Classes: A Solution Using Completely-Random Trees.,2017,29,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde29.html#MuTZ17,https://doi.org/10.1109/TKDE.2017.2691702 +Anna Jurek,Clustering-Based Ensembles as an Alternative to Stacking.,2014,26,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde26.html#JurekBWN14,https://doi.org/10.1109/TKDE.2013.49 +Hugh E. Williams,Indexing and Retrieval for Genomic Databases.,2002,14,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde14.html#WilliamsZ02,https://doi.org/10.1109/69.979973 +Maria Salamó Llorente,Increasing Retrieval Quality in Conversational Recommenders.,2012,24,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde24.html#LlorenteG12,https://doi.org/10.1109/TKDE.2011.116 +Jianhua Feng,Finding Top-k Answers in Keyword Search over Relational Databases Using Tuple Units.,2011,23,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde23.html#FengLW11,https://doi.org/10.1109/TKDE.2011.61 +Vittorio Castelli,CSVD: Clustering and Singular Value Decomposition for Approximate Similarity Search in High-Dimensional Spaces.,2003,15,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde15.html#CastelliTL03,https://doi.org/10.1109/TKDE.2003.1198398 +Joan Peckham,Towards the Correctness and Consistency of Update Semantics in Semantic Database Schema.,1996,8,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde8.html#PeckhamMD96,https://doi.org/10.1109/69.506716 +Nguyen Duc Thang,Clustering with Multiviewpoint-Based Similarity Measure.,2012,24,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde24.html#ThangCC12,https://doi.org/10.1109/TKDE.2011.86 +Qingyao Wu,ML-FOREST: A Multi-Label Tree Ensemble Method for Multi-Label Classification.,2016,28,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde28.html#WuTSCN16,https://doi.org/10.1109/TKDE.2016.2581161 +Pallab Dasgupta,Solving Constraint Optimization Problems from CLP-Style Specifications Using Heuristic Search Techniques.,2002,14,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde14.html#DasguptaCDGB02,https://doi.org/10.1109/69.991721 +S. K. Michael Wong,Constructing the Dependency Structure of a Multiagent Probabilistic Network.,2001,13,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde13.html#WongB01,https://doi.org/10.1109/69.929898 +Tsz Nam Chan,Efficient Sub-Window Nearest Neighbor Search on Matrix.,2017,29,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde29.html#ChanYH17,https://doi.org/10.1109/TKDE.2016.2633357 +Martha Escobar-Molano,An Optimal Resource Scheduler for Continuous Display of Structured Video Objects.,1996,8,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde8.html#Escobar-MolanoGI96,https://doi.org/10.1109/69.506717 +Kim Schouten,Survey on Aspect-Level Sentiment Analysis.,2016,28,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde28.html#SchoutenF16,https://doi.org/10.1109/TKDE.2015.2485209 +Man Lung Yiu,Measuring the Sky: On Computing Data Cubes via Skylining the Measures.,2012,24,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde24.html#YiuLY12,https://doi.org/10.1109/TKDE.2010.253 +Ananth Grama,State of the Art in Parallel Search Techniques for Discrete Optimization Problems.,1999,11,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde11.html#GramaK99,https://doi.org/10.1109/69.755612 +Yangqiu Song,Automatic Taxonomy Construction from Keywords via Scalable Bayesian Rose Trees.,2015,27,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde27.html#SongLLW15,https://doi.org/10.1109/TKDE.2015.2397432 +Matthijs van Leeuwen,Association Discovery in Two-View Data.,2015,27,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde27.html#LeeuwenG15,https://doi.org/10.1109/TKDE.2015.2453159 +Xiaoyang Wang 0002,Efficient Distance-Aware Influence Maximization in Geo-Social Networks.,2017,29,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde29.html#WangZZL17,https://doi.org/10.1109/TKDE.2016.2633472 +Luca Anselma,Extending BCDM to Cope with Proposals and Evaluations of Updates.,2013,25,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde25.html#AnselmaBMT13,https://doi.org/10.1109/TKDE.2011.170 +Xiaochun Wang,A Divide-and-Conquer Approach for Minimum Spanning Tree-Based Clustering.,2009,21,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde21.html#WangWW09,https://doi.org/10.1109/TKDE.2009.37 +Ke Yi,Efficient Processing of Top-k Queries in Uncertain Databases with x-Relations.,2008,20,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde20.html#YiLKS08,https://doi.org/10.1109/TKDE.2008.90 +Yanjun Li,Text Clustering with Feature Selection by Using Statistical Data.,2008,20,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde20.html#LiLC08,https://doi.org/10.1109/TKDE.2007.190740 +Yongjun Li,"A Comment on ""Cross-Platform Identification of Anonymous Identical Users in Multiple Social Media Networks"".",2018,30,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde30.html#LiS18,https://doi.org/10.1109/TKDE.2018.2828812 +Christoph F. Eick,Rule-Based Consistency Enforcement for Knowledge-Based Systems.,1993,5,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde5.html#EickW93,https://doi.org/10.1109/69.204091 +Hossein Soleimani,Parsimonious Topic Models with Salient Word Discovery.,2015,27,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde27.html#SoleimaniM15,https://doi.org/10.1109/TKDE.2014.2345378 +Fangzhao Wu,Collaboratively Training Sentiment Classifiers for Multiple Domains.,2017,29,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde29.html#WuYH17,https://doi.org/10.1109/TKDE.2017.2669975 +Thomas Lukasiewicz,A Novel Combination of Answer Set Programming with Description Logics for the Semantic Web.,2010,22,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde22.html#Lukasiewicz10,https://doi.org/10.1109/TKDE.2010.111 +Azin Arya,Radio Database Compression for Accurate Energy-Efficient Localization in Fingerprinting Systems.,2013,25,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde25.html#AryaGCC13,https://doi.org/10.1109/TKDE.2011.241 +Søren Kejser Jensen,Time Series Management Systems: A Survey.,2017,29,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde29.html#JensenPT17,https://doi.org/10.1109/TKDE.2017.2740932 +K. Ravindran,Delay Compensation Protocols for Synchronization of Multimedia Data Streams.,1993,5,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde5.html#RavindranB93,https://doi.org/10.1109/69.234770 +Kenneth M. Ford,An Approach to Knowledge Acquisition Based on the Structure of Personal Construct Systems.,1991,3,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde3.html#FordPAC91,https://doi.org/10.1109/69.75891 +Akhilesh Bajaj,SEAM: A State-Entity-Activity-Model for a Well-Defined Workflow Development Methodology.,2002,14,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde14.html#BajajR02,https://doi.org/10.1109/69.991725 +Shashi Shekhar,Generalization by Neural Networks.,1992,4,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde4.html#ShekharA92,https://doi.org/10.1109/69.134256 +Jie Yin,Sensor-Based Abnormal Human-Activity Detection.,2008,20,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde20.html#YinYP08,https://doi.org/10.1109/TKDE.2007.1042 +Santosh S. Venkatesh,The Science of Making ERORS: What Error Tolerance Implies for Capacity in Neural Networks.,1992,4,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde4.html#Venkatesh92,https://doi.org/10.1109/69.134250 +Wilma Penzo,Rewriting Rules To Permeate Complex Similarity and Fuzzy Queries within a Relational Database System.,2005,17,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde17.html#Penzo05,https://doi.org/10.1109/TKDE.2005.33 +George Kollios,Indexing Animated Objects Using Spatiotemporal Access Methods.,2001,13,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde13.html#KolliosTGDH01,https://doi.org/10.1109/69.956099 +Yufei Tao,I/O-Efficient Bundled Range Aggregation.,2014,26,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde26.html#TaoS14a,https://doi.org/10.1109/TKDE.2013.152 +James Caverlee,QA-Pagelet: Data Preparation Techniques for Large-Scale Data Analysis of the Deep Web.,2005,17,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde17.html#CaverleeL05,https://doi.org/10.1109/TKDE.2005.151 +Willi Gotthard,System Guided View Integration for Object-Oriented Databases.,1992,4,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde4.html#GotthardLN92,https://doi.org/10.1109/69.124894 +Bharath K. Samanthula,k-Nearest Neighbor Classification over Semantically Secure Encrypted Relational Data.,2015,27,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde27.html#SamanthulaEJ15,https://doi.org/10.1109/TKDE.2014.2364027 +Xiaobai Liu,Learning Multi-Instance Deep Ranking and Regression Network for Visual House Appraisal.,2018,30,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde30.html#LiuXYTYL18,https://doi.org/10.1109/TKDE.2018.2791611 +Shuo Shang,Collective Travel Planning in Spatial Networks.,2016,28,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde28.html#ShangCWJWK16,https://doi.org/10.1109/TKDE.2015.2509998 +Yuh-Jzer Joung,Wildcard Search in Structured Peer-to-Peer Networks.,2007,19,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde19.html#JoungY07,https://doi.org/10.1109/TKDE.2007.190641 +Alexandra Stefan,The Move-Split-Merge Metric for Time Series.,2013,25,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde25.html#StefanAD13,https://doi.org/10.1109/TKDE.2012.88 +Martin F. van Bommel,Reasoning About Equations and Functional Dependencies on Complex Objects.,1994,6,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde6.html#BommelW94,https://doi.org/10.1109/69.334857 +Yuh-Jye Lee,Anomaly Detection via Online Oversampling Principal Component Analysis.,2013,25,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde25.html#LeeYW13,https://doi.org/10.1109/TKDE.2012.99 +Steven C. H. Hoi,Batch Mode Active Learning with Applications to Text Categorization and Image Retrieval.,2009,21,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde21.html#HoiJL09,https://doi.org/10.1109/TKDE.2009.60 +Luigi Palopoli,Uniform Techniques for Deriving Similarities of Objects and Subschemes in Heterogeneous Databases.,2003,15,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde15.html#PalopoliSTU03,https://doi.org/10.1109/TKDE.2003.1185834 +Nikos A. Lorentzos,DBMS Support for Nonmetric Measurement Systems.,1994,6,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde6.html#Lorentzos94,https://doi.org/10.1109/69.334884 +Zaiqing Nie,Effectively Mining and Using Coverage and Overlap Statistics for Data Integration.,2005,17,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde17.html#NieKN05,https://doi.org/10.1109/TKDE.2005.76 +Stratis Viglas,A Comparative Study of Implementation Techniques for Query Processing in Multicore Systems.,2014,26,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde26.html#Viglas14,https://doi.org/10.1109/TKDE.2012.243 +Xiang Ao,Mining Precise-Positioning Episode Rules from Event Sequences.,2018,30,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde30.html#AoLWZH18,https://doi.org/10.1109/TKDE.2017.2773493 +Lijun Zhang 0005,Locally Discriminative Coclustering.,2012,24,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde24.html#ZhangCBCCH12,https://doi.org/10.1109/TKDE.2011.71 +Yan Li 0003,Combining Feature Reduction and Case Selection in Building CBR Classifiers.,2006,18,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde18.html#LiSP06,https://doi.org/10.1109/TKDE.2006.40 +Guoliang Li 0001,KEMB: A Keyword-Based XML Message Broker.,2011,23,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde23.html#LiFWZ11,https://doi.org/10.1109/TKDE.2010.159 +Jian Yin,Volume Leases for Consistency in Large-Scale Systems.,1999,11,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde11.html#YinADL99,https://doi.org/10.1109/69.790806 +M. Kamran,An Information-Preserving Watermarking Scheme for Right Protection of EMR Systems.,2012,24,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde24.html#KamranF12,https://doi.org/10.1109/TKDE.2011.223 +Jan Paredaens,G-Log: A Graph-Based Query Language.,1995,7,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde7.html#ParedaensPT95,https://doi.org/10.1109/69.390249 +Dingming Wu 0001,Joint Top-K Spatial Keyword Query Processing.,2012,24,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde24.html#WuYCJ12,https://doi.org/10.1109/TKDE.2011.172 +Jung-Hsien Chiang,Literature Extraction of Protein Functions Using Sentence Pattern Mining.,2005,17,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde17.html#ChiangY05,https://doi.org/10.1109/TKDE.2005.132 +Xiaolin Wang,A Meta-Top-Down Method for Large-Scale Hierarchical Classification.,2014,26,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde26.html#WangZL14,https://doi.org/10.1109/TKDE.2013.30 +Hung-Yu Kao,Mining Web Informative Structures and Contents Based on Entropy Analysis.,2004,16,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde16.html#KaoLHC04,https://doi.org/10.1109/TKDE.2004.1264821 +Arnulfo P. Azcarraga,Evaluating Keyword Selection Methods for WEBSOM Text Archives.,2004,16,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde16.html#AzcarragaYTC04,https://doi.org/10.1109/TKDE.2003.1262193 +Yiming Zhang,Distributed Line Graphs: A Universal Technique for Designing DHTs Based on Arbitrary Regular Graphs.,2012,24,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde24.html#ZhangL12,https://doi.org/10.1109/TKDE.2011.258 +Amir Ahmad,Random Projection Random Discretization Ensembles - Ensembles of Linear Multivariate Decision Trees.,2014,26,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde26.html#AhmadB14,https://doi.org/10.1109/TKDE.2013.134 +Berna Bakir Batu,A Non-Parametric Algorithm for Discovering Triggering Patterns of Spatio-Temporal Event Types.,2017,29,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde29.html#BatuTD17,https://doi.org/10.1109/TKDE.2017.2754252 +Ying Zhang 0001,Consensus-Based Ranking of Multivalued Objects: A Generalized Borda Count Approach.,2014,26,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde26.html#ZhangZPLLL14,https://doi.org/10.1109/TKDE.2012.250 +Niki Pissinou,Spatio-Temporal Composition of Video Objects: Representation and Querying in Video Database Systems.,2001,13,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde13.html#PissinouRMC01,https://doi.org/10.1109/69.971195 +Stefano Spaccapietra,View Integration: A Step Forward in Solving Structural Conflicts.,1994,6,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde6.html#SpaccapietraP94,https://doi.org/10.1109/69.277770 +Hui Xiong,TAPER: A Two-Step Approach for All-Strong-Pairs Correlation Query in Large Databases.,2006,18,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde18.html#XiongSTK06,https://doi.org/10.1109/TKDE.2006.1599388 +Sorour E. Amiri,Automatic Segmentation of Dynamic Network Sequences with Node Labels.,2018,30,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde30.html#AmiriCP18,https://doi.org/10.1109/TKDE.2017.2771776 +S. K. Michael Wong,Representation of Qualitative User Preference by Quantitative Belief Functions.,1994,6,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde6.html#WongL94,https://doi.org/10.1109/69.273027 +Beng Chin Ooi,Guest Editors' Introduction: Special Section on Peer-to-Peer-Based Data Management.,2004,16,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde16.html#OoiT04,https://doi.org/10.1109/TKDE.2004.1318561 +Devendra Kumar,Development of a Class of Distributed Termination Detection Algorithms.,1992,4,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde4.html#Kumar92,https://doi.org/10.1109/69.134251 +Xiaoyang Wang 0002,Bring Order into the Samples: A Novel Scalable Method for Influence Maximization.,2017,29,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde29.html#WangZZLC17,https://doi.org/10.1109/TKDE.2016.2624734 +Deepti Joshi,Redistricting Using Constrained Polygonal Clustering.,2012,24,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde24.html#JoshiSS12,https://doi.org/10.1109/TKDE.2011.140 +Kenneth Wai-Ting Leung,Deriving Concept-Based User Profiles from Search Engine Logs.,2010,22,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde22.html#LeungL10,https://doi.org/10.1109/TKDE.2009.144 +Wenyuan Li,Enhancing the Effectiveness of Clustering with Spectra Analysis.,2007,19,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde19.html#LiNLO07,https://doi.org/10.1109/TKDE.2007.1066 +Motoki Shiga,Non-Negative Matrix Factorization with Auxiliary Information on Overlapping Groups.,2015,27,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde27.html#ShigaM15,https://doi.org/10.1109/TKDE.2014.2373361 +Lei Chen 0002,Efficient Processing of Metric Skyline Queries.,2009,21,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde21.html#ChenL09,https://doi.org/10.1109/TKDE.2008.146 +Shan-Hung Wu,On Generalizable Low False-Positive Learning Using Asymmetric Support Vector Machines.,2013,25,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde25.html#WuLCCC13,https://doi.org/10.1109/TKDE.2012.46 +Douglas B. Lenat,Ontological Versus Knowledge Engineering.,1989,1,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde1.html#Lenat89,https://doi.org/10.1109/69.43405 +Sameer Singh 0002,An Approach to Novelty Detection Applied to the Classification of Image Regions.,2004,16,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde16.html#SinghM04,https://doi.org/10.1109/TKDE.2004.1269665 +P. Bruce Berra,Guest Editors' Introduction: Multimedia Information Systems.,1993,5,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde5.html#BerraGMS93,http://doi.ieeecomputersociety.org/10.1109/TKDE.1993.10002 +Yu Wang,Confidence Interval for F1 Measure of Algorithm Performance Based on Blocked 3*2 Cross-Validation.,2015,27,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde27.html#WangLLWY15,https://doi.org/10.1109/TKDE.2014.2359667 +Shui Yu,Malware Propagation in Large-Scale Networks.,2015,27,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde27.html#YuGBGS15,https://doi.org/10.1109/TKDE.2014.2320725 +Qinghua Hu,Rank Entropy-Based Decision Trees for Monotonic Classification.,2012,24,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde24.html#HuCZZGY12,https://doi.org/10.1109/TKDE.2011.149 +Dimitrios Karapiperis,An LSH-Based Blocking Approach with a Homomorphic Matching Technique for Privacy-Preserving Record Linkage.,2015,27,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde27.html#KarapiperisV15,https://doi.org/10.1109/TKDE.2014.2349916 +Yi-Hong Chu,Density Conscious Subspace Clustering for High-Dimensional Data.,2010,22,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde22.html#ChuHCYC10,https://doi.org/10.1109/TKDE.2008.224 +Kuo-Yu Huang,SMCA: A General Model for Mining Asynchronous Periodic Patterns in Temporal Databases.,2005,17,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde17.html#HuangC05,https://doi.org/10.1109/TKDE.2005.98 +Julien Lafaye,Watermill: An Optimized Fingerprinting System for Databases under Constraints.,2008,20,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde20.html#LafayeGCG08,https://doi.org/10.1109/TKDE.2007.190713 +Ning An,Toward an Accurate Analysis of Range Queries on Spatial Data.,2003,15,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde15.html#AnJS03,https://doi.org/10.1109/TKDE.2003.1185836 +Nick Cercone,Rule-Induction and Case-Based Reasoning: Hybrid Architectures Appear Advantageous.,1999,11,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde11.html#CerconeAC99,https://doi.org/10.1109/69.755625 +Jerry C. Yan,The Post-Game Analysis Framework - Developing Resource Management Strategies for Concurrent Systems.,1989,1,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde1.html#YanL89,https://doi.org/10.1109/69.87976 +Edmund H. Durfee,Trends in Cooperative Distributed Problem Solving.,1989,1,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde1.html#DurfeeLC89,https://doi.org/10.1109/69.43404 +Philip S. Yu,Editorial: State of the Transactions.,2004,16,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde16.html#Yu04,https://doi.org/10.1109/TKDE.2004.1264816 +Takushi Tanaka,Parsing Electronic Circuits in a Logic Grammar.,1993,5,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde5.html#Tanaka93,https://doi.org/10.1109/69.219732 +Christoph Heinz,Cluster Kernels: Resource-Aware Kernel Density Estimators over Streaming Data.,2008,20,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde20.html#HeinzS08,https://doi.org/10.1109/TKDE.2008.21 +Oznur Kirmemis Alkan,CRoM and HuspExt: Improving Efficiency of High Utility Sequential Pattern Extraction.,2015,27,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde27.html#AlkanK15,https://doi.org/10.1109/TKDE.2015.2420557 +Gopi K. Attaluri,The Presumed-Either Two-Phase Commit Protocol.,2002,14,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde14.html#AttaluriS02,https://doi.org/10.1109/TKDE.2002.1033784 +Bina Ramamurthy,Design and Analysis of an Integrated Checkpointing Recovery Scheme for Distributed Applications.,2000,12,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde12.html#RamamurthyUB00,https://doi.org/10.1109/69.842261 +Wei Zhang 0056,Integrating Topic and Latent Factors for Scalable Personalized Review-based Rating Prediction.,2016,28,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde28.html#ZhangW16,https://doi.org/10.1109/TKDE.2016.2598740 +Waheed Noor,Learning Predictive Choice Models for Decision Optimization.,2014,26,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde26.html#NoorDH14,https://doi.org/10.1109/TKDE.2013.173 +Suyun Zhao,Building a Rule-Based Classifier—*A Fuzzy-Rough Set Approach.,2010,22,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde22.html#ZhaoTCW10,https://doi.org/10.1109/TKDE.2009.118 +Se June Hong,Guest Editors' Introduction Enabling Technology for Knowledge-Based Systems Development.,1991,3,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde3.html#Hong91,http://doi.ieeecomputersociety.org/10.1109/TKDE.1991.10000 +Robert N. Smith,Cascade of Distributed and Cooperating Firewalls in a Secure Data Network.,2003,15,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde15.html#SmithCB03,https://doi.org/10.1109/TKDE.2003.1232280 +Ye-In Chang,Alternating Hashing for Expansible Files.,1997,9,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde9.html#Chang97,https://doi.org/10.1109/69.567061 +Kazuhiko Kato,An Approach to Mobile Software Robots for the WWW.,1999,11,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde11.html#KatoMTA99,https://doi.org/10.1109/69.790801 +Gulrukh Ahanger,Data Semantics for Improving Retrieval Performance of Digital News Video Systems.,2001,13,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde13.html#AhangerL01,https://doi.org/10.1109/69.929894 +Robert P. Cheetham,Adaptive Structuring of Binary Search Trees Using Conditional Rotations.,1993,5,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde5.html#CheethamON93,https://doi.org/10.1109/69.234780 +Ka Cheung Sia,Efficient Monitoring Algorithm for Fast News Alerts.,2007,19,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde19.html#SiaCC07,https://doi.org/10.1109/TKDE.2007.1041 +Randal C. Burns,In-Place Reconstruction of Version Differences.,2003,15,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde15.html#BurnsSL03,https://doi.org/10.1109/TKDE.2003.1209013 +Marcelo Tallis,A Deductive Spreadsheet System for End Users.,2010,22,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde22.html#TallisB10,https://doi.org/10.1109/TKDE.2010.81 +Sarana Nutanong,Continuous Detour Queries in Spatial Networks.,2012,24,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde24.html#NutanongTSZR12,https://doi.org/10.1109/TKDE.2011.52 +Terry R. Payne,Experience with Rule Induction and k-Nearest Neighbor Methods for Interface Agents that Learn.,1997,9,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde9.html#PayneEG97,https://doi.org/10.1109/69.591456 +Marshall D. Brain,Using Tries to Eliminate Pattern Collisions in Perfect Hashing.,1994,6,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde6.html#BrainT94,https://doi.org/10.1109/69.277768 +Deke Guo,Set Reconciliation via Counting Bloom Filters.,2013,25,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde25.html#GuoL13,https://doi.org/10.1109/TKDE.2012.215 +Freddy Chong Tat Chua,Generative Models for Item Adoptions Using Social Correlation.,2013,25,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde25.html#ChuaLL13,https://doi.org/10.1109/TKDE.2012.137 +Gautam Bhargava,Relational Database Systems with Zero Information Loss.,1993,5,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde5.html#BhargavaG93,https://doi.org/10.1109/69.204093 +Yun Peng,Side-Effect Estimation: A Filtering Approach to the View Update Problem.,2014,26,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde26.html#PengCXHB14,https://doi.org/10.1109/TKDE.2013.115 +Taowei David Wang,A Temporal Pattern Search Algorithm for Personal History Event Visualization.,2012,24,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde24.html#WangDS12,https://doi.org/10.1109/TKDE.2010.257 +Shekhar R. Gaddam,K-Means+ID3: A Novel Method for Supervised Anomaly Detection by Cascading K-Means Clustering and ID3 Decision Tree Learning Methods.,2007,19,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde19.html#GaddamPB07,https://doi.org/10.1109/TKDE.2007.44 +Martin Hardwick,The ROSE Data Manager: Using Object Technology to Support Interactive Engineering Applications.,1989,1,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde1.html#HardwickS89,https://doi.org/10.1109/69.87967 +Ye Yuan 0001,Keyword Search over Distributed Graphs with Compressed Signature.,2017,29,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde29.html#YuanLCYWS17,https://doi.org/10.1109/TKDE.2017.2656079 +Yoon-Joo Park,The Adaptive Clustering Method for the Long Tail Problem of Recommender Systems.,2013,25,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde25.html#Park13,https://doi.org/10.1109/TKDE.2012.119 +Gediminas Adomavicius,C-TREND: Temporal Cluster Graphs for Identifying and Visualizing Trends in Multiattribute Transactional Data.,2008,20,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde20.html#AdomaviciusB08,https://doi.org/10.1109/TKDE.2008.31 +Guoming He,Using Graphics Processors for High Performance SimRank Computation.,2012,24,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde24.html#HeLCDF12,https://doi.org/10.1109/TKDE.2011.91 +David B. Lomet,Guest Editorial Introduction to the Special Section on the 16th International Conference on Data Engineering.,2001,13,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde13.html#LometW01,https://doi.org/10.1109/TKDE.2001.908977 +Elif Albuz,Scalable Color Image Indexing and Retrieval Using Vector Wavelets.,2001,13,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde13.html#AlbuzKK01,https://doi.org/10.1109/69.956109 +Haibin Cheng,Efficient Algorithm for Localized Support Vector Machine.,2010,22,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde22.html#ChengTJ10,https://doi.org/10.1109/TKDE.2009.116 +Debarun Bhattacharjya,A Myopic Approach to OrderingNodes for Parameter Elicitationin Bayesian Belief Networks.,2014,26,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde26.html#BhattacharjyaDR14,https://doi.org/10.1109/TKDE.2013.72 +Christopher M. Jermaine,Online Random Shuffling of Large Database Tables.,2007,19,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde19.html#Jermaine07,https://doi.org/10.1109/TKDE.2007.250586 +M. Andrea Rodríguez,Determining Semantic Similarity among Entity Classes from Different Ontologies.,2003,15,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde15.html#RodriguezE03,https://doi.org/10.1109/TKDE.2003.1185844 +Deng Cai,Document Clustering Using Locality Preserving Indexing.,2005,17,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde17.html#CaiHH05,https://doi.org/10.1109/TKDE.2005.198 +Hongchan Roh,Advanced Block Nested Loop Join for Extending SSD Lifetime.,2017,29,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde29.html#RohSJP17,https://doi.org/10.1109/TKDE.2017.2651803 +Angelos Yannopoulos,Moving E-Commerce with PIVOTS: Private Information Viewing Offering Total Safety.,2004,16,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde16.html#YannopoulosSV04,https://doi.org/10.1109/TKDE.2004.10 +Susan Darling Urban,Delta Abstractions: A Technique for Managing Database States in Runtime Debugging of Active Database Rules.,2003,15,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde15.html#UrbanADS03,https://doi.org/10.1109/TKDE.2003.1198393 +Carlos R. Rivero,Benchmarking Data Exchange among Semantic-Web Ontologies.,2013,25,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde25.html#RiveroHRC13,https://doi.org/10.1109/TKDE.2012.175 +Sang Hyuk Son,Correction to 'Integrating Security and Real-Time Requirements Using Covert Channel Capacity'.,2001,13,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde13.html#SonMD01,https://doi.org/10.1109/TKDE.2001.956110 +Danushka Bollegala,Automatic Discovery of Personal Name Aliases from the Web.,2011,23,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde23.html#BollegalaMI11,https://doi.org/10.1109/TKDE.2010.162 +Xueyi Zhao,Joint Structural Learning to Rank with Deep Linear Feature Learning.,2015,27,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde27.html#ZhaoLZ15,https://doi.org/10.1109/TKDE.2015.2426707 +Khaled M. Hammouda,Efficient Phrase-Based Document Indexing for Web Document Clustering.,2004,16,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde16.html#HammoudaK04,https://doi.org/10.1109/TKDE.2004.58 +Kazuhiko Kato,Persistently Cached B-Trees.,2003,15,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde15.html#Kato03,https://doi.org/10.1109/TKDE.2003.1198400 +Xiaoping Zhou,Cross-Platform Identification of Anonymous Identical Users in Multiple Social Media Networks.,2016,28,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde28.html#ZhouLZM16,https://doi.org/10.1109/TKDE.2015.2485222 +P. Punitha,An Effective and Efficient Exact Match Retrieval Scheme for Symbolic Image Database Systems Based on Spatial Reasoning: A Logarithmic Search Time Approach.,2006,18,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde18.html#PunithaG06,https://doi.org/10.1109/TKDE.2006.154 +Motoki Shiga,A Variational Bayesian Framework for Clustering with Multiple Graphs.,2012,24,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde24.html#ShigaM12,https://doi.org/10.1109/TKDE.2010.272 +Liang Tang,Dynamic Query Forms for Database Queries.,2014,26,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde26.html#TangLJC14,https://doi.org/10.1109/TKDE.2013.62 +Xun Yi,Security of Tzeng's Time-Bound Key Assignment Scheme for Access Control in a Hierarchy.,2003,15,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde15.html#YiY03,https://doi.org/10.1109/TKDE.2003.1209023 +Laurence Anthony F. Park,Visual Assessment of Clustering Tendency for Incomplete Data.,2016,28,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde28.html#ParkBLRBP16,https://doi.org/10.1109/TKDE.2016.2608821 +HweeHwa Pang,Resource Scheduling In A High-Performance Multimedia Server.,1999,11,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde11.html#PangJK99,https://doi.org/10.1109/69.761665 +Flip Korn,On the 'Dimensionality Curse' and the 'Self-Similarity Blessing'.,2001,13,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde13.html#KornPF01,https://doi.org/10.1109/69.908983 +Pedro Bizarro,Progressive Parametric Query Optimization.,2009,21,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde21.html#BizarroBD09,https://doi.org/10.1109/TKDE.2008.160 +Y. Alp Aslandogan,Techniques and Systems for Image and Video Retrieval.,1999,11,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde11.html#AslandoganY99,https://doi.org/10.1109/69.755615 +Zhenyue Zhang,On Weight Design of Maximum Weighted Likelihood and an Extended EM Algorithm.,2006,18,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde18.html#ZhangC06,https://doi.org/10.1109/TKDE.2006.163 +Nevzat Hurkan Balkir,A Graphical Query Language: VISUAL and Its Query Processing.,2002,14,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde14.html#BalkirOO02,https://doi.org/10.1109/TKDE.2002.1033767 +Junbeom Hur,Secure Data Deduplication with Dynamic Ownership Management in Cloud Storage.,2016,28,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde28.html#HurKSK16,https://doi.org/10.1109/TKDE.2016.2580139 +Yixin Chen,Regression Cubes with Lossless Compression and Aggregation.,2006,18,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde18.html#ChenDHPWW06,https://doi.org/10.1109/TKDE.2006.196 +Wu Wang,Learning by Discovering Problem Solving Heuristics Through Experience.,1991,3,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde3.html#WangC91,https://doi.org/10.1109/69.109103 +Tianhao Zhang,Patch Alignment for Dimensionality Reduction.,2009,21,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde21.html#ZhangTLY09,https://doi.org/10.1109/TKDE.2008.212 +Mengmeng Liu,Maintaining Recursive Views of Regions and Connectivity in Networks.,2010,22,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde22.html#LiuTZIL10,https://doi.org/10.1109/TKDE.2010.65 +Jonathan E. Cook,A Highly Effective Partition Selection Policy for Object Database Garbage Collection.,1998,10,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde10.html#CookWZ98,https://doi.org/10.1109/69.667100 +Xueqi Cheng,Ranking on Data Manifold with Sink Points.,2013,25,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde25.html#ChengDGZC13,https://doi.org/10.1109/TKDE.2011.190 +Jun-Wong Song,Spatial Join Processing Using Corner Transformation.,1999,11,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde11.html#SongWLLK99,https://doi.org/10.1109/69.790844 +Shian-Hua Lin,ACIRD: Intelligent Internet Document Organization and Retrieval.,2002,14,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde14.html#LinCHH02,https://doi.org/10.1109/TKDE.2002.1000345 +Chao-Ton Su,An Evaluation of the Robustness of MTS for Imbalanced Data.,2007,19,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde19.html#SuH07,https://doi.org/10.1109/TKDE.2007.190623 +Shan Jiang,NATERGM: A Model for Examining the Role of Nodal Attributes in Dynamic Social Media Networks.,2016,28,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde28.html#JiangC16,https://doi.org/10.1109/TKDE.2015.2493549 +Si Si,Bregman Divergence-Based Regularization for Transfer Subspace Learning.,2010,22,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde22.html#SiTG10,https://doi.org/10.1109/TKDE.2009.126 +Yuanbo Guo,A Requirements Driven Framework for Benchmarking Semantic Web Knowledge Base Systems.,2007,19,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde19.html#GuoQPH07,https://doi.org/10.1109/TKDE.2007.19 +Jason Tsong-Li Wang,A System for Approximate Tree Matching.,1994,6,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde6.html#WangZJS94,https://doi.org/10.1109/69.298173 +Beng Chin Ooi,State of the Transactions Editorial.,2010,22,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde22.html#Ooi10,https://doi.org/10.1109/TKDE.2010.10 +Qinbao Song,A Fast Clustering-Based Feature Subset Selection Algorithm for High-Dimensional Data.,2013,25,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde25.html#SongNW13,https://doi.org/10.1109/TKDE.2011.181 +Pinghui Wang,Efficiently Estimating Statistics of Points of Interests on Maps.,2016,28,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde28.html#WangHL16,https://doi.org/10.1109/TKDE.2015.2480397 +Bolin Ding,Efficient Keyword-Based Search for Top-K Cells in Text Cube.,2011,23,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde23.html#DingZLHZSO11,https://doi.org/10.1109/TKDE.2011.34 +Shaoxu Song,Efficient Determination of Distance Thresholds for Differential Dependencies.,2014,26,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde26.html#Song0C14,https://doi.org/10.1109/TKDE.2013.84 +Chih-Ming Hsu,On the Design and Applicability of Distance Functions in High-Dimensional Data Space.,2009,21,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde21.html#HsuC09,https://doi.org/10.1109/TKDE.2008.178 +Eyke Hüllermeier,Credible Case-Based Inference Using Similarity Profiles.,2007,19,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde19.html#Hullermeier07,https://doi.org/10.1109/TKDE.2007.190620 +S. Misbah Deen,An Architectural Framework for CKBS Applications.,1996,8,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde8.html#Deen96,https://doi.org/10.1109/69.536257 +Dilhan Perera,Clustering and Sequential Pattern Mining of Online Collaborative Learning Data.,2009,21,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde21.html#PereraKKYZ09,https://doi.org/10.1109/TKDE.2008.138 +Weiguo Fan,Discovery of Context-Specific Ranking Functions for Effective Information Retrieval Using Genetic Programming.,2004,16,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde16.html#FanGP04,https://doi.org/10.1109/TKDE.2004.1269663 +Marco Cadoli,Default Logic as a Query Language.,1997,9,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde9.html#CadoliEG97,https://doi.org/10.1109/69.599933 +Murat Kantarcioglu,Privacy-Preserving Distributed Mining of Association Rules on Horizontally Partitioned Data.,2004,16,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde16.html#KantarciogluC04,https://doi.org/10.1109/TKDE.2004.45 +Jun Huang 0003,Learning Label-Specific Features and Class-Dependent Labels for Multi-Label Classification.,2016,28,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde28.html#HuangLHW16,https://doi.org/10.1109/TKDE.2016.2608339 +Tao-Yang Fu,Parallelizing Itinerary-Based KNN Query Processing in Wireless Sensor Networks.,2010,22,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde22.html#FuPL10,https://doi.org/10.1109/TKDE.2009.146 +Roman Slowinski,A Generalized Definition of Rough Approximations Based on Similarity.,2000,12,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde12.html#SlowinskiV00,https://doi.org/10.1109/69.842271 +Xiang Lian,Quality-Aware Subgraph Matching Over Inconsistent Probabilistic Graph Databases.,2016,28,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde28.html#LianCW16,https://doi.org/10.1109/TKDE.2016.2518683 +Xiong Wang,Finding Patterns in Three-Dimensional Graphs: Algorithms and Applications to Scientific Data Mining.,2002,14,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde14.html#WangWSSRZ02,https://doi.org/10.1109/TKDE.2002.1019211 +Wil M. P. van der Aalst,Workflow Mining: Discovering Process Models from Event Logs.,2004,16,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde16.html#AalstWM04,https://doi.org/10.1109/TKDE.2004.47 +Bo Yang 0002,On the Spectral Characterization and Scalable Mining of Network Communities.,2012,24,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde24.html#YangLF12,https://doi.org/10.1109/TKDE.2010.233 +Peter J. Varman,An Efficient Multiversion Access STructure.,1997,9,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde9.html#VarmanV97,https://doi.org/10.1109/69.599929 +Andrew K. C. Wong,High-Order Pattern Discovery from Discrete-Valued Data.,1997,9,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde9.html#WongW97,https://doi.org/10.1109/69.649314 +Arturo Crespo,Query Merging: Improving Query Subscription Processing in a Multicast Environment.,2003,15,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde15.html#CrespoBG03,https://doi.org/10.1109/TKDE.2003.1161589 +Hoyoung Jeung,Managing Evolving Uncertainty in Trajectory Databases.,2014,26,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde26.html#JeungLSY14,https://doi.org/10.1109/TKDE.2013.141 +Jagan Sankaranarayanan,Query Processing Using Distance Oracles for Spatial Networks.,2010,22,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde22.html#SankaranarayananS10,https://doi.org/10.1109/TKDE.2010.75 +Li-min Liu,Using OODB Modeling to Partition a Vocabulary in Structurally and Semantically Uniform Concept Groups.,2002,14,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde14.html#LiuHGP02,https://doi.org/10.1109/TKDE.2002.1019218 +Tatiana A. S. Coelho,Image Retrieval Using Multiple Evidence Ranking.,2004,16,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde16.html#CoelhoCSRM04,https://doi.org/10.1109/TKDE.2004.1269666 +Kan Ren,Bidding Machine: Learning to Bid for Directly Optimizing Profits in Display Advertising.,2018,30,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde30.html#RenZCRYW18,https://doi.org/10.1109/TKDE.2017.2775228 +Kai Zheng 0001,Online Discovery of Gathering Patterns over Trajectories.,2014,26,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde26.html#ZhengZYSZ14,https://doi.org/10.1109/TKDE.2013.160 +Yung-Yu Chung,A Simple Message-Optimal Algorithm for Random Sampling from a Distributed Stream.,2016,28,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde28.html#ChungTW16,https://doi.org/10.1109/TKDE.2016.2518679 +Peter Christen,A Survey of Indexing Techniques for Scalable Record Linkage and Deduplication.,2012,24,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde24.html#Christen12,https://doi.org/10.1109/TKDE.2011.127 +Thomas J. Weigert,A Computationally Tractable Nonmonotonic Logic.,1994,6,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde6.html#WeigertT94,https://doi.org/10.1109/69.273025 +Farokh B. Bastani,Editorial.,2000,12,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde12.html#Bastani00,https://doi.org/10.1109/TKDE.2000.842253 +Nandlal L. Sarda,Extensions to SQL for Historical Databases.,1990,2,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde2.html#Sarda90,https://doi.org/10.1109/69.54721 +HweeHwa Pang,Enhancing Access Privacy of Range Retrievals over (𝔹**+)-Trees.,2013,25,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde25.html#PangZM13,https://doi.org/10.1109/TKDE.2012.77 +Hai Zhuge,Peer-to-Peer in Metric Space and Semantic Space.,2007,19,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde19.html#ZhugeL07,https://doi.org/10.1109/TKDE.2007.190614 +Freya H. Lin,An Implementation of the CORDRA Architecture Enhanced for Systematic Reuse of Learning Objects.,2009,21,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde21.html#LinSK09,https://doi.org/10.1109/TKDE.2008.130 +Bingbing Jiang,Scalable Graph-Based Semi-Supervised Learning through Sparse Bayesian Model.,2017,29,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde29.html#JiangCYY17,https://doi.org/10.1109/TKDE.2017.2749574 +Jianyong Wang,Closed Constrained Gradient Mining in Retail Databases.,2006,18,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde18.html#WangHP06,https://doi.org/10.1109/TKDE.2006.88 +Prashant Dewan,P2P Reputation Management Using Distributed Identities and Decentralized Recommendation Chains.,2010,22,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde22.html#DewanD10,https://doi.org/10.1109/TKDE.2009.45 +Stefano Monti,Dealing with the Expert Inconsistency in Probability Elicitation.,2000,12,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde12.html#MontiC00,https://doi.org/10.1109/69.868903 +Arkaitz Zubiaga,Harnessing Folksonomies to Produce a Social Classification of Resources.,2013,25,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde25.html#ZubiagaFMG13,https://doi.org/10.1109/TKDE.2012.115 +Liming Chen 0001,A Semantic Web-Based Approach to Knowledge Management for Grid Applications.,2007,19,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde19.html#ChenSG07,https://doi.org/10.1109/TKDE.2007.20 +Dong Zhou,Query Expansion with Enriched User Profiles for Personalized Search Utilizing Folksonomy Data.,2017,29,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde29.html#ZhouWZLL17,https://doi.org/10.1109/TKDE.2017.2668419 +Derek L. Eager,Minimizing Bandwidth Requirements for On-Demand Data Delivery.,2001,13,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde13.html#EagerVZ01,https://doi.org/10.1109/69.956098 +Mihaela A. Bornea,Adaptive Join Operators for Result Rate Optimization on Streaming Inputs.,2010,22,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde22.html#BorneaVKD10,https://doi.org/10.1109/TKDE.2010.64 +Hui Guo,Cooperative Media Data Streaming with Scalable Video Coding.,2008,20,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde20.html#GuoL08,https://doi.org/10.1109/TKDE.2008.18 +Mohammad Farhan Husain,Heuristics-Based Query Processing for Large RDF Graphs Using Cloud Computing.,2011,23,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde23.html#HusainMMKT11,https://doi.org/10.1109/TKDE.2011.103 +Eduardo J. Ruiz,Facilitating Document Annotation Using Content and Querying Value.,2014,26,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde26.html#RuizHI14,https://doi.org/10.1109/TKDE.2012.224 +Chung-Min Chen,Analysis and Comparison of Declustering Schemes for Interactive Navigation Queries.,2000,12,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde12.html#ChenS00,https://doi.org/10.1109/69.877507 +Shetal Shah,Resilient and Coherence Preserving Dissemination of Dynamic Data Using Cooperating Peers.,2004,16,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde16.html#ShahRS04,https://doi.org/10.1109/TKDE.2004.1318563 +Kevin C. Almeroth,An Alternative Paradigm for Scalable On-Demand Applications: Evaluating and Deploying the Interactive Multimedia Jukebox.,1999,11,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde11.html#AlmerothA99,https://doi.org/10.1109/69.790835 +Arvind K. Tripathi,Mobile Advertising in Capacitated Wireless Networks.,2006,18,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde18.html#TripathiN06,https://doi.org/10.1109/TKDE.2006.144 +Heasoo Hwang,Organizing User Search Histories.,2012,24,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde24.html#HwangLGN12,https://doi.org/10.1109/TKDE.2010.251 +Tomoharu Iwata,Recommendation Method for Improving Customer Lifetime Value.,2008,20,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde20.html#IwataSY08,https://doi.org/10.1109/TKDE.2008.55 +Arun K. Majumdar,An Object-Oriented Fuzzy Data Model for Similarity Detection in Image Databases.,2002,14,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde14.html#MajumdarBS02,https://doi.org/10.1109/TKDE.2002.1033783 +Huidong Jin,Signaling Potential Adverse Drug Reactions from Administrative Health Databases.,2010,22,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde22.html#JinCHKMO10,https://doi.org/10.1109/TKDE.2009.212 +Muhammad U. Arshad,Efficient and Scalable Integrity Verification of Data and Query Results for Graph Databases.,2018,30,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde30.html#ArshadKBGK18,https://doi.org/10.1109/TKDE.2017.2776221 +Sally I. McClean,A Scalable Approach to Integrating Heterogeneous Aggregate Views of Distributed Databases.,2003,15,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde15.html#McCleanSG03,https://doi.org/10.1109/TKDE.2003.1161592 +Carlos Ordonez 0001,Integrating K-Means Clustering with a Relational DBMS Using SQL.,2006,18,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde18.html#Ordonez06,https://doi.org/10.1109/TKDE.2006.31 +Zhixu Li,AML: Efficient Approximate Membership Localization within a Web-Based Join Framework.,2013,25,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde25.html#LiSWZD13,https://doi.org/10.1109/TKDE.2011.178 +Pierangela Samarati,Protecting Respondents' Identities in Microdata Release.,2001,13,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde13.html#Samarati01,https://doi.org/10.1109/69.971193 +Mukesh Singhal,Analysis of the Probability of Transaction Abort and Throughput of Two Timestamp Ordering Algorithms for Database Systems.,1991,3,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde3.html#Singhal91,https://doi.org/10.1109/69.88007 +Jing Yuan,T-Drive: Enhancing Driving Directions with Taxi Drivers' Intelligence.,2013,25,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde25.html#YuanZXS13,https://doi.org/10.1109/TKDE.2011.200 +Reinhard Klemm,WebCompanion: A Friendly Client-Side Web Prefetching Agent.,1999,11,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde11.html#Klemm99,https://doi.org/10.1109/69.790809 +Young-Gook Ra,A Transparent Schema-Evolution System Based on Object-Oriented View Technology.,1997,9,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde9.html#RaR97,https://doi.org/10.1109/69.617053 +Rui Meng,Knowledge Base Semantic Integration Using Crowdsourcing.,2017,29,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde29.html#MengCTZ17,https://doi.org/10.1109/TKDE.2017.2656086 +Li-Yan Yuan,Coherence Approach to Logic Program Revision.,1998,10,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde10.html#YuanY98,https://doi.org/10.1109/69.667094 +Sudipto Guha,Clustering Data Streams: Theory and Practice.,2003,15,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde15.html#GuhaMMMO03,https://doi.org/10.1109/TKDE.2003.1198387 +Luciano Caroprese,Active Integrity Constraints for Database Consistency Maintenance.,2009,21,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde21.html#CaropreseGZ09,https://doi.org/10.1109/TKDE.2008.226 +Rui-zhang Huang,Dirichlet Process Mixture Model for Document Clustering with Feature Partition.,2013,25,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde25.html#HuangYWZS13,https://doi.org/10.1109/TKDE.2012.27 +Neha Sengupta,Sampling and Reconstruction Using Bloom Filters.,2018,30,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde30.html#SenguptaBBR18,https://doi.org/10.1109/TKDE.2017.2785803 +Xiaolei Qian,Incremental Recomputation of Active Relational Expressions.,1991,3,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde3.html#QianW91,https://doi.org/10.1109/69.91063 +Milos Radovanovic,Reverse Nearest Neighbors in Unsupervised Distance-Based Outlier Detection.,2015,27,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde27.html#RadovanovicNI15,https://doi.org/10.1109/TKDE.2014.2365790 +Oscar N. Garcia,Foreword - Knowledge and Data Engineering: An Outlook.,1989,1,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde1.html#Garcia89,http://doi.ieeecomputersociety.org/10.1109/TKDE.1989.10000 +Ting Wang 0006,Indexing Earth Mover's Distance over Network Metrics.,2015,27,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde27.html#WangMB15,https://doi.org/10.1109/TKDE.2014.2373359 +Hongyan Liu,Measuring Similarity Based on Link Information: A Comparative Study.,2013,25,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde25.html#LiuHZLD13,https://doi.org/10.1109/TKDE.2012.194 +Yang Zhang,Citation Networks and the Emergence of Knowledge Core.,2015,27,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde27.html#ZhangZ15,https://doi.org/10.1109/TKDE.2015.2454512 +Lei Gao,Improving Availability and Performance with Application-Specific Data Replication.,2005,17,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde17.html#GaoDNZI05,https://doi.org/10.1109/TKDE.2005.10 +David Jiang,MAP-JOIN-REDUCE: Toward Scalable and Efficient Data Analysis on Large Clusters.,2011,23,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde23.html#JiangTC11,https://doi.org/10.1109/TKDE.2010.248 +Kai Ming Ting,An Instance-Weighting Method to Induce Cost-Sensitive Trees.,2002,14,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde14.html#Ting02,https://doi.org/10.1109/TKDE.2002.1000348 +Leandro L. Minku,DDD: A New Ensemble Approach for Dealing with Concept Drift.,2012,24,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde24.html#MinkuY12,https://doi.org/10.1109/TKDE.2011.58 +Dong-Ho Lee,An Efficient Technique for Nearest-Neighbor Query Processing on the SPY-TEC.,2003,15,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde15.html#LeeK03,https://doi.org/10.1109/TKDE.2003.1245286 +Jieping Ye,IDR/QR: An Incremental Dimension Reduction Algorithm via QR Decomposition.,2005,17,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde17.html#YeLXPJK05,https://doi.org/10.1109/TKDE.2005.148 +Huamao Gu,Manifold Learning by Curved Cosine Mapping.,2017,29,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde29.html#GuWCDS17,https://doi.org/10.1109/TKDE.2017.2728790 +Wang-Chien Lee,Dictionary: A New Access Method for Query Processing in Object-Oriented Databases.,1998,10,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde10.html#LeeL98,https://doi.org/10.1109/69.687974 +V. D'Orangeville,Efficient Cluster Labeling for Support Vector Clustering.,2013,25,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde25.html#DOrangevilleMMW13,https://doi.org/10.1109/TKDE.2012.190 +Xingquan Zhu,Video Data Mining: Semantic Indexing and Event Detection from the Association Perspective.,2005,17,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde17.html#ZhuWEFW05,https://doi.org/10.1109/TKDE.2005.83 +Hong Lu,Hierarchical Indexing Structure for Efficient Similarity Search in Video Retrieval.,2006,18,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde18.html#LuOSX06,https://doi.org/10.1109/TKDE.2006.174 +Himawan Gunadhi,Efficient Indexing Methods for Temporal Relations.,1993,5,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde5.html#GunadhiS93,https://doi.org/10.1109/69.224200 +H. V. Jagadish,Federation in Cloud Data Management: Challenges and Opportunities.,2014,26,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde26.html#JagadishJMOTT14,https://doi.org/10.1109/TKDE.2014.2326659 +Alex Tze Hiang Sim,Logic-Based Pattern Discovery.,2010,22,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde22.html#SimIZS10,https://doi.org/10.1109/TKDE.2010.49 +Yifan Fu,Active Learning without Knowing Individual Instance Labels: A Pairwise Label Homogeneity Query Approach.,2014,26,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde26.html#FuLZZ14,https://doi.org/10.1109/TKDE.2013.165 +Ken C. K. Lee,Nearest Surrounder Queries.,2010,22,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde22.html#LeeLL10,https://doi.org/10.1109/TKDE.2009.172 +Baljeet Malhotra,Exact Top-K Queries in Wireless Sensor Networks.,2011,23,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde23.html#MalhotraNN11,https://doi.org/10.1109/TKDE.2010.186 +Eladio Domínguez,Occurrence-Oriented Design Strategy for Developing Business Process Monitoring Systems.,2014,26,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde26.html#DominguezPRZLA14,https://doi.org/10.1109/TKDE.2013.166 +Rakesh Agrawal 0001,Moving Selections into Linear Least Fixpoint Queries.,1989,1,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde1.html#AgrawalD89,https://doi.org/10.1109/69.43418 +Arif Merchant,Performance Analysis of Dynamic Finite Versioning Schemes: Storage Cost vs. Obsolescence.,1996,8,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde8.html#MerchantWYC96,https://doi.org/10.1109/69.553167 +Jianzhong Li,Efficient Algorithms for Summarizing Graph Patterns.,2011,23,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde23.html#LiLG11,https://doi.org/10.1109/TKDE.2010.249 +David J. DeWitt,The Gamma Database Machine Project.,1990,2,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde2.html#DeWittGSBHR90,https://doi.org/10.1109/69.50905 +Jian Pei,State of the Journal Editorial.,2016,28,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde28.html#Pei16,https://doi.org/10.1109/TKDE.2015.2500298 +Matthew Butler 0001,SAX Discretization Does Not Guarantee Equiprobable Symbols.,2015,27,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde27.html#ButlerK15,https://doi.org/10.1109/TKDE.2014.2382882 +Xiping Liu,LINQ: A Framework for Location-Aware Indexing and Query Processing.,2015,27,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde27.html#Liu0W15,https://doi.org/10.1109/TKDE.2014.2365792 +Gregory Ditzler,Incremental Learning of Concept Drift from Streaming Imbalanced Data.,2013,25,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde25.html#DitzlerP13,https://doi.org/10.1109/TKDE.2012.136 +Peter Lane,Incremental Syntactic Parsing of Natural Language Corpora with Simple Synchrony Networks.,2001,13,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde13.html#LaneH01,https://doi.org/10.1109/69.917562 +Chenliang Li,Tweet Segmentation and Its Application to Named Entity Recognition.,2015,27,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde27.html#LiSWH15,https://doi.org/10.1109/TKDE.2014.2327042 +Chih-Ya Shen,Socio-Spatial Group Queries for Impromptu Activity Planning.,2016,28,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde28.html#ShenYHLC16,https://doi.org/10.1109/TKDE.2015.2468726 +Per-åke Larson,External Sorting: Run Formation Revisited.,2003,15,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde15.html#Larson03,https://doi.org/10.1109/TKDE.2003.1209012 +James Joshi,A Generalized Temporal Role-Based Access Control Model.,2005,17,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde17.html#JoshiBLG05,https://doi.org/10.1109/TKDE.2005.1 +Zhen Hai,Analyzing Sentiments in One Go: A Supervised Joint Topic Modeling Approach.,2017,29,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde29.html#HaiCCCM17,https://doi.org/10.1109/TKDE.2017.2669027 +M. W. Du,An Approach to Designing Very Fast Approximate String Matching Algorithms.,1994,6,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde6.html#DuC94,https://doi.org/10.1109/69.298177 +Wentao Robin Ouyang,Aggregating Crowdsourced Quantitative Claims: Additive and Multiplicative Models.,2016,28,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde28.html#OuyangKTSN16,https://doi.org/10.1109/TKDE.2016.2535383 +Manish Aggarwal,On Learning of Choice Models with Interactive Attributes.,2016,28,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde28.html#Aggarwal16,https://doi.org/10.1109/TKDE.2016.2563434 +Christian S. Jensen,Continuous Clustering of Moving Objects.,2007,19,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde19.html#JensenLO07,https://doi.org/10.1109/TKDE.2007.1054 +Yibei Ling,A Hybrid Estimator for Selectivity Estimation.,1999,11,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde11.html#LingSRX99,https://doi.org/10.1109/69.761667 +Xindong Wu,EIC Editorial: TKDE Editorial Board Changes.,2006,18,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde18.html#Wu06a,https://doi.org/10.1109/TKDE.2006.143 +Caroline C. Hayes,Agents in a Nutshell - A Very Brief Introduction.,1999,11,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde11.html#Hayes99,https://doi.org/10.1109/69.755621 +Alhussein Fawzi,Structured Dimensionality Reduction for Additive Model Regression.,2016,28,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde28.html#FawziFCSF16,https://doi.org/10.1109/TKDE.2016.2525996 +Hector Garcia-Molina,Main Memory Database Systems: An Overview.,1992,4,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde4.html#Garcia-MolinaS92,https://doi.org/10.1109/69.180602 +Guimei Liu,A Flexible Approach to Finding Representative Pattern Sets.,2014,26,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde26.html#LiuZW14,https://doi.org/10.1109/TKDE.2013.27 +Paolino Di Felice,Reducing the Storage Requirements of a Perfect Hash Function.,1998,10,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde10.html#FeliceM98,https://doi.org/10.1109/69.738363 +Zheng Lin,Frame-Sliced Signature Files.,1992,4,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde4.html#LinF92,https://doi.org/10.1109/69.142018 +Jun Yan 0001,Effective and Efficient Dimensionality Reduction for Large-Scale and Streaming Data Preprocessing.,2006,18,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde18.html#YanZLYCFYXC06,https://doi.org/10.1109/TKDE.2006.45 +Renato Bruni,Effective Classification Using a Small Training Set Based on Discretization and Statistical Analysis.,2015,27,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde27.html#BruniB15,https://doi.org/10.1109/TKDE.2015.2416727 +Mingsheng Long,Deep Learning of Transferable Representation for Scalable Domain Adaptation.,2016,28,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde28.html#LongWCSY16,https://doi.org/10.1109/TKDE.2016.2554549 +Arif Mahmood,Subspace Based Network Community Detection Using Sparse Linear Coding.,2016,28,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde28.html#MahmoodS16,https://doi.org/10.1109/TKDE.2015.2496345 +Sanghamitra Bandyopadhyay,FOCS: Fast Overlapped Community Search.,2015,27,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde27.html#BandyopadhyayCS15,https://doi.org/10.1109/TKDE.2015.2445775 +Rui Zhu 0003,SAP: Improving Continuous Top-K Queries Over Streaming Data.,2017,29,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde29.html#ZhuWYZW17,https://doi.org/10.1109/TKDE.2017.2662236 +Mohammad Akbari,Wellness Representation of Users in Social Media: Towards Joint Modelling of Heterogeneity and Temporality.,2017,29,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde29.html#AkbariHWC17,https://doi.org/10.1109/TKDE.2017.2722411 +Jun Gao,Holistic Top-k Simple Shortest Path Join in Graphs.,2012,24,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde24.html#GaoYQJWY12,https://doi.org/10.1109/TKDE.2011.117 +Pascal van Eck,A Survey of Languages for Specifying Dynamics: A Knowledge Engineering Perspective.,2001,13,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde13.html#EckEFHVW01,https://doi.org/10.1109/69.929903 +Agnès Voisard,A Database Perspective on Geospatial Data Modeling.,2002,14,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde14.html#VoisardD02,https://doi.org/10.1109/69.991714 +Panagiotis Papadimitriou 0002,Data Leakage Detection.,2011,23,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde23.html#PapadimitriouG11,https://doi.org/10.1109/TKDE.2010.100 +Shuo Shang,Searching Trajectories by Regions of Interest.,2017,29,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde29.html#ShangCJWK17,https://doi.org/10.1109/TKDE.2017.2685504 +Vishweshwar V. Dixit,Minimal State Space Search in Parallel Production Systems.,1991,3,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde3.html#DixitM91,https://doi.org/10.1109/69.109105 +Nick Cercone,Guest Editors' Introduction.,1993,5,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde5.html#CerconeT93,http://doi.ieeecomputersociety.org/10.1109/TKDE.1993.10004 +Dennis E. H. Zhuang,Discovery of Temporal Associations in Multivariate Time Series.,2014,26,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde26.html#ZhuangLW14,https://doi.org/10.1109/TKDE.2014.2310219 +Claudio Gutiérrez 0001,Introducing Time into RDF.,2007,19,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde19.html#GutierrezHV07,https://doi.org/10.1109/TKDE.2007.34 +Cyril S. Ku,An Efficient Indefiniteness Inference Scheme in Indefinite Deductive Databases.,1994,6,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde6.html#KuKH94,https://doi.org/10.1109/69.317702 +Oliver Haase,A Hybrid Representation of Vague Collections for Distributed Object Management Systems.,2000,12,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde12.html#HaaseH00,https://doi.org/10.1109/69.846295 +Yao Zhang,Near-Optimal Algorithms for Controlling Propagation at Group Scale on Networks.,2016,28,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde28.html#ZhangASVP16,https://doi.org/10.1109/TKDE.2016.2605088 +Heyan Huang,Leveraging Conceptualization for Short-Text Embedding.,2018,30,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde30.html#HuangWFLZ18,https://doi.org/10.1109/TKDE.2017.2787709 +Xu Wu,KDA: A Knowledge-Base Database Assistant with a Query Guiding Facility.,1992,4,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde4.html#WuI92,https://doi.org/10.1109/69.166987 +Minyoung Kim,Probabilistic Sequence Translation-Alignment Model for Time-Series Classification.,2014,26,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde26.html#Kim14,https://doi.org/10.1109/TKDE.2013.8 +Jan Luts,Real-Time Semiparametric Regression for Distributed Data Sets.,2015,27,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde27.html#Luts15,https://doi.org/10.1109/TKDE.2014.2334326 +Liang Duan,An Ensemble Approach to Link Prediction.,2017,29,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde29.html#DuanMAMH17,https://doi.org/10.1109/TKDE.2017.2730207 +Didi Surian,App Miscategorization Detection: A Case Study on Google Play.,2017,29,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde29.html#SurianSSC17,https://doi.org/10.1109/TKDE.2017.2686851 +Carl G. Looney,Advances in Feedforward Neural Networks: Demystifying Knowledge Acquiring Black Boxes.,1996,8,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde8.html#Looney96,https://doi.org/10.1109/69.494162 +Mei Bai,Discovering the k Representative Skyline Over a Sliding Window.,2016,28,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde28.html#BaiXWZZYW16,https://doi.org/10.1109/TKDE.2016.2546242 +Jae-Gil Lee 0001,Mining Discriminative Patterns for Classifying Trajectories on Road Networks.,2011,23,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde23.html#LeeHLC11,https://doi.org/10.1109/TKDE.2010.153 +Paolo Ciaccia,Domains and Active Domains: What This Distinction Implies for the Estimation of Projection Sizes in Relational Databases.,1995,7,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde7.html#CiacciaM95,https://doi.org/10.1109/69.404035 +Ziyu Guan,Multi-View Concept Learning for Data Representation.,2015,27,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde27.html#GuanZPF15,https://doi.org/10.1109/TKDE.2015.2448542 +Marcin Wylot,DiploCloud: Efficient and Scalable Management of RDF Data in the Cloud.,2016,28,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde28.html#WylotC16,https://doi.org/10.1109/TKDE.2015.2499202 +Ricardo R. Gudwin,Knowledge Processing in Control Systems.,1996,8,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde8.html#GudwinGNM96,https://doi.org/10.1109/69.485640 +Andrew K. C. Wong,Simultaneous Pattern and Data Clustering for Pattern Cluster Analysis.,2008,20,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde20.html#WongL08,https://doi.org/10.1109/TKDE.2008.38 +Nikolaos Passalis,Entropy Optimized Feature-Based Bag-of-Words Representation for Information Retrieval.,2016,28,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde28.html#PassalisT16,https://doi.org/10.1109/TKDE.2016.2545657 +Yuexian Hou,Beyond Redundancies: A Metric-Invariant Method for Unsupervised Feature Selection.,2010,22,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde22.html#HouZYLS10,https://doi.org/10.1109/TKDE.2009.84 +Aristides Gionis,k-Anonymization with Minimal Loss of Information.,2009,21,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde21.html#GionisT09,https://doi.org/10.1109/TKDE.2008.129 +Sze Man Yuen,Superseding Nearest Neighbor Search on Uncertain Spatial Databases.,2010,22,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde22.html#YuenTXPZ10,https://doi.org/10.1109/TKDE.2009.137 +Ming-Syan Chen,Efficient Data Mining for Path Traversal Patterns.,1998,10,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde10.html#ChenPY98,https://doi.org/10.1109/69.683753 +Yue Zhu,Multi-Label Learning with Global and Local Label Correlation.,2018,30,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde30.html#ZhuKZ18,https://doi.org/10.1109/TKDE.2017.2785795 +Robert C. Goldstein,Database Management with Sequence Trees and Tokens.,1997,9,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde9.html#GoldsteinW97,https://doi.org/10.1109/69.567062 +Ye Chen,User Satisfaction Prediction with Mouse Movement Information in Heterogeneous Search Environment.,2017,29,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde29.html#ChenLZM17,https://doi.org/10.1109/TKDE.2017.2739151 +Yunjun Gao,Efficient Reverse Top-k Boolean Spatial Keyword Queries on Road Networks.,2015,27,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde27.html#GaoQZ015,https://doi.org/10.1109/TKDE.2014.2365820 +Stanley Y. W. Su,Performance Analysis of Parallel Query Processing Algorithms for Object-Oriented Databases.,2000,12,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde12.html#SuRH00,https://doi.org/10.1109/69.895805 +Haiquan Chen,Scaling Up Markov Logic Probabilistic Inference for Social Graphs.,2017,29,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde29.html#ChenKWTS17,https://doi.org/10.1109/TKDE.2016.2625251 +Seok Il Song,An Enhanced Concurrency Control Scheme for Multidimensional Index Structures.,2004,16,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde16.html#SongKY04,https://doi.org/10.1109/TKDE.2004.1264825 +Nick Bassiliades,E-DEVICE: An Extensible Active Knowledge Base System with Multiple Rule Type Support.,2000,12,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde12.html#BassiliadesVE00,https://doi.org/10.1109/69.877511 +Donald E. Brown,Reliability Estimation During Prototyping of Knowledge-Based Systems.,1995,7,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde7.html#BrownP95,https://doi.org/10.1109/69.390245 +Yan Zheng Wei,Learning Users' Interests by Quality Classification in Market-Based Recommender Systems.,2005,17,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde17.html#WeiMJ05,https://doi.org/10.1109/TKDE.2005.200 +Thomas Bernecker,Scalable Probabilistic Similarity Ranking in Uncertain Databases.,2010,22,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde22.html#BerneckerKMRZ10,https://doi.org/10.1109/TKDE.2010.78 +Brijesh Verma,Cluster-Oriented Ensemble Classifier: Impact of Multicluster Characterization on Ensemble Classifier Learning.,2012,24,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde24.html#VermaR12,https://doi.org/10.1109/TKDE.2011.28 +Gulrukh Ahanger,Automatic Composition Techniques for Video Production.,1998,10,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde10.html#AhangerL98,https://doi.org/10.1109/69.738360 +Qi Yu,Efficient Service Skyline Computation for Composite Service Selection.,2013,25,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde25.html#YuB13,https://doi.org/10.1109/TKDE.2011.268 +Rong Zhu,SimRank on Uncertain Graphs.,2017,29,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde29.html#ZhuZL17,https://doi.org/10.1109/TKDE.2017.2725275 +Marlon Dumas,TEMPOS: A Platform for Developing Temporal Applications on Top of Object DBMS.,2004,16,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde16.html#DumasFS04,https://doi.org/10.1109/TKDE.2003.1262189 +Jay I. Minnix,A Multilayered Self-Organizing Artificial Neural Network for Invariant Pattern Recognition.,1992,4,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde4.html#MinnixMI92,https://doi.org/10.1109/69.134253 +Bingsheng He,Adaptive Index Utilization in Memory-Resident Structural Joins.,2007,19,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde19.html#HeLC07,https://doi.org/10.1109/TKDE.2007.190616 +Albert Yu,Top-k Preferences in High Dimensions.,2016,28,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde28.html#YuAY16,https://doi.org/10.1109/TKDE.2015.2451630 +Ekaterini Ioannou,Query Analytics over Probabilistic Databases with Unmerged Duplicates.,2015,27,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde27.html#IoannouG15,https://doi.org/10.1109/TKDE.2015.2405507 +Zahid Pervaiz,Precision-Bounded Access Control Using Sliding-Window Query Views for Privacy-Preserving Data Streams.,2015,27,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde27.html#PervaizGA15,https://doi.org/10.1109/TKDE.2015.2391098 +Shun Yan Cheung,Optimizing Vote and Quorum Assignments for Reading and Writing Replicated Data.,1989,1,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde1.html#CheungAA89,https://doi.org/10.1109/69.87983 +Fei Cai,Prefix-Adaptive and Time-Sensitive Personalized Query Auto Completion.,2016,28,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde28.html#CaiLR16,https://doi.org/10.1109/TKDE.2016.2568179 +Weixiong Rao,Toward Efficient Filter Privacy-Aware Content-Based Pub/Sub Systems.,2013,25,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde25.html#Rao0T13,https://doi.org/10.1109/TKDE.2012.177 +Marc Gyssens,A Graph-Oriented Object Database Model.,1994,6,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde6.html#GyssensPBG94,https://doi.org/10.1109/69.298174 +LiMin Fu,Knowledge Discovery by Inductive Neural Networks.,1999,11,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde11.html#Fu99,https://doi.org/10.1109/69.824623 +Zhifeng Bao,Towards an Effective XML Keyword Search.,2010,22,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde22.html#BaoLLC10,https://doi.org/10.1109/TKDE.2010.63 +Weining Zhang,Data Partition and Parallel Evaluation of Datalog Programs.,1995,7,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde7.html#ZhangWC95,https://doi.org/10.1109/69.368511 +Tzu-Chuan Chou,Using Incremental PLSI for Threshold-Resilient Online Event Analysis.,2008,20,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde20.html#ChouC08,https://doi.org/10.1109/TKDE.2007.190702 +Siyao Cheng,Extracting Kernel Dataset from Big Sensory Data in Wireless Sensor Networks.,2017,29,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde29.html#ChengCLG17,https://doi.org/10.1109/TKDE.2016.2645212 +Rui Xia,Dual Sentiment Analysis: Considering Two Sides of One Review.,2015,27,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde27.html#XiaXZLQL15,https://doi.org/10.1109/TKDE.2015.2407371 +Rongjian Li,Sparsity Learning Formulations for Mining Time-Varying Data.,2015,27,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde27.html#LiZZZJ15,https://doi.org/10.1109/TKDE.2014.2373411 +Anna Formica,Finite Satisfiability of Integrity Constraints in Object-Oriented Database Schemas.,2002,14,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde14.html#Formica02,https://doi.org/10.1109/69.979977 +Yannis Theodoridis,Efficient Cost Models for Spatial Queries Using R-Trees.,2000,12,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde12.html#TheodoridisSS00,https://doi.org/10.1109/69.842247 +Teruhiro Shimura,An Extended Petri Net Model for Normal Logic Programs.,1995,7,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde7.html#ShimuraLM95,https://doi.org/10.1109/69.368512 +Philip S. Yu,Editorial.,2002,14,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde14.html#Yu02,http://doi.ieeecomputersociety.org/10.1109/TKDE.2002.10001 +Yuening Hu,Large-Scale Location Prediction for Web Pages.,2017,29,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde29.html#HuKTYC17,https://doi.org/10.1109/TKDE.2017.2702631 +Nick Roussopoulos,ADMS: A Testbed for Incremental Access Methods.,1993,5,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde5.html#RoussopoulosES93,https://doi.org/10.1109/69.243508 +Benjamin W. Wah,Editorial.,1993,5,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde5.html#Wah93,http://doi.ieeecomputersociety.org/10.1109/TKDE.1993.10000 +Jie Bai,Associated Activation-Driven Enrichment: Understanding Implicit Information from a Cognitive Perspective.,2017,29,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde29.html#BaiLZL17,https://doi.org/10.1109/TKDE.2017.2745565 +Yun Zheng,Clustering Based on Enhanced (α)-Expansion Move.,2013,25,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde25.html#ZhengC13,https://doi.org/10.1109/TKDE.2012.202 +Shikui Wei,Multimodal Fusion for Video Search Reranking.,2010,22,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde22.html#WeiZZL10,https://doi.org/10.1109/TKDE.2009.145 +Xiao-Tong Yuan,Agglomerative Mean-Shift Clustering.,2012,24,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde24.html#YuanHH12,https://doi.org/10.1109/TKDE.2010.232 +Yuh-Jye Lee,epsilon-SSVR: A Smooth Support Vector Machine for epsilon-Insensitive Regression.,2005,17,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde17.html#LeeHH05,https://doi.org/10.1109/TKDE.2005.77 +Martin Gogolla,A Development Environment for an Object Specification Language.,1995,7,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde7.html#GogollaCDHV95,https://doi.org/10.1109/69.390254 +Saman Iftikhar,RRW - A Robust and Reversible Watermarking Technique for Relational Data.,2015,27,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde27.html#IftikharKA15,https://doi.org/10.1109/TKDE.2014.2349911 +Luh Yen,A Link Analysis Extension of Correspondence Analysis for Mining Relational Databases.,2011,23,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde23.html#YenSF11,https://doi.org/10.1109/TKDE.2010.142 +Vandana Pursnani Janeja,Random Walks to Identify Anomalous Free-Form Spatial Scan Windows.,2008,20,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde20.html#JanejaA08,https://doi.org/10.1109/TKDE.2008.96 +Tomoharu Iwata,Topic Models for Unsupervised Cluster Matching.,2018,30,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde30.html#IwataHU18,https://doi.org/10.1109/TKDE.2017.2778720 +Elaine M. Newton,Preserving Privacy by De-Identifying Face Images.,2005,17,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde17.html#NewtonSM05,https://doi.org/10.1109/TKDE.2005.32 +Ying Zhang,Efficient Cache-Supported Path Planning on Roads.,2016,28,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde28.html#ZhangHLJ16,https://doi.org/10.1109/TKDE.2015.2507581 +Xinpeng Zhang,A Generalized Flow-Based Method for Analysis of Implicit Relationships on Wikipedia.,2013,25,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde25.html#ZhangAY13,https://doi.org/10.1109/TKDE.2011.227 +Xi-Zhao Wang,Maximum Ambiguity-Based Sample Selection in Fuzzy Decision Tree Induction.,2012,24,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde24.html#WangDY12,https://doi.org/10.1109/TKDE.2011.67 +Junyu Xuan,Bayesian Nonparametric Relational Topic Model through Dependent Gamma Processes.,2017,29,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde29.html#XuanLZXL17,https://doi.org/10.1109/TKDE.2016.2636182 +Jun'ichi Takeuchi,A Unifying Framework for Detecting Outliers and Change Points from Time Series.,2006,18,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde18.html#TakeuchiY06,https://doi.org/10.1109/TKDE.2006.1599387 +John R. Bourne,Organizing and Understanding Beliefs in Advice-Giving Diagnostic Systems.,1991,3,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde3.html#BourneLOCUB91,https://doi.org/10.1109/69.91058 +Daniel Barbará,The Management of Probabilistic Data.,1992,4,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde4.html#BarbaraGP92,https://doi.org/10.1109/69.166990 +Xiao-Jia M. Zhou,"Correction to a Footnote in ""Theoretical and Practical Considerations of Uncertainty and Complexity in Automated Knowledge Acquisition"".",1996,8,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde8.html#ZhouD96,https://doi.org/10.1109/TKDE.1996.494173 +Eugenio Cesario,Top-Down Parameter-Free Clustering of High-Dimensional Categorical Data.,2007,19,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde19.html#CesarioMO07,https://doi.org/10.1109/TKDE.2007.190649 +Hillol Kargupta,Learning Functions Using Randomized Genetic Code-Like Transformations: Probabilistic Properties and Experimentations.,2004,16,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde16.html#KarguptaAG04,https://doi.org/10.1109/TKDE.2004.27 +Danushka Bollegala,Cross-Domain Sentiment Classification Using Sentiment Sensitive Embeddings.,2016,28,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde28.html#BollegalaMG16,https://doi.org/10.1109/TKDE.2015.2475761 +Sungwon Jung,An Efficient Path Computation Model for Hierarchically Structured Topographical Road Maps.,2002,14,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde14.html#JungP02,https://doi.org/10.1109/TKDE.2002.1033772 +Yixiang Fang,Scalable Algorithms for Nearest-Neighbor Joins on Big Trajectory Data.,2016,28,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde28.html#FangCTMY16,https://doi.org/10.1109/TKDE.2015.2492561 +Yu Zhang 0027,FBSGraph: Accelerating Asynchronous Graph Processing via Forward and Backward Sweeping.,2018,30,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde30.html#ZhangLJGZ18,https://doi.org/10.1109/TKDE.2017.2781241 +James P. Davis,Propositional Logic Constraint Patterns and Their Use in UML-Based Conceptual Modeling and Analysis.,2007,19,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde19.html#DavisB07,https://doi.org/10.1109/TKDE.2007.45 +Ruqian Lu,An Exact Data Mining Method for Finding Center Strings and All Their Instances.,2007,19,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde19.html#LuJZCZ07,https://doi.org/10.1109/TKDE.2007.1001 +Debabrata Dey,Efficient Techniques for Online Record Linkage.,2011,23,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde23.html#DeyML11,https://doi.org/10.1109/TKDE.2010.134 +Yang Cao,A User-Friendly Patent Search Paradigm.,2013,25,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde25.html#CaoFL13,https://doi.org/10.1109/TKDE.2012.63 +Elías F. Combarro,Introducing a Family of Linear Measures for Feature Selection in Text Categorization.,2005,17,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde17.html#CombarroMDRM05,https://doi.org/10.1109/TKDE.2005.149 +Elisa Bertino,Indexing Techniques for Queries on Nested Objects.,1989,1,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde1.html#BertinoK89,https://doi.org/10.1109/69.87960 +Jun Yan 0001,Trace-Oriented Feature Analysis for Large-Scale Text Data Dimension Reduction.,2011,23,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde23.html#YanLYYFWC11,https://doi.org/10.1109/TKDE.2010.34 +Ruoyi Jiang,A Family of Joint Sparse PCA Algorithms for Anomaly Localization in Network Data Streams.,2013,25,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde25.html#JiangFH13,https://doi.org/10.1109/TKDE.2012.176 +Athman Bouguettaya,On-Line Clustering.,1996,8,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde8.html#Bouguetta96,https://doi.org/10.1109/69.494170 +Arif Mahmood,Using Geodesic Space Density Gradients for Network Community Detection.,2017,29,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde29.html#MahmoodSAR17,https://doi.org/10.1109/TKDE.2016.2632716 +Guanghao Yan,Product Schema Integration for Electronic Commerce - A Synonym Comparison Approach.,2002,14,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde14.html#YanNL02,https://doi.org/10.1109/TKDE.2002.1000344 +Silvana Castano,Global Viewing of Heterogeneous Data Sources.,2001,13,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde13.html#CastanoAV01,https://doi.org/10.1109/69.917566 +Weiguo Zheng,Efficient Graph Similarity Search Over Large Graph Databases.,2015,27,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde27.html#ZhengZLWZ15,https://doi.org/10.1109/TKDE.2014.2349924 +Sameep Mehta,Toward Unsupervised Correlation Preserving Discretization.,2005,17,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde17.html#MehtaPY05,https://doi.org/10.1109/TKDE.2005.153 +François Goasdoué,Robust Module-Based Data Management.,2013,25,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde25.html#GoasdoueR13,https://doi.org/10.1109/TKDE.2011.255 +Chia-Hui Chang,A Survey of Web Information Extraction Systems.,2006,18,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde18.html#ChangKGS06,https://doi.org/10.1109/TKDE.2006.152 +Veronica Biazzo,Temporal Probabilistic Object Bases.,2003,15,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde15.html#BiazzoGLS03,https://doi.org/10.1109/TKDE.2003.1209009 +Levent V. Orman,Differential Relational Calculus for Integrity Maintenance.,1998,10,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde10.html#Orman98,https://doi.org/10.1109/69.683760 +Curtis E. Dyreson,Efficiently Supported Temporal Granularities.,2000,12,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde12.html#DyresonELS00,https://doi.org/10.1109/69.868908 +Alberto Calzada,A New Dynamic Rule Activation Method for Extended Belief Rule-Based Systems.,2015,27,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde27.html#CalzadaLWK15,https://doi.org/10.1109/TKDE.2014.2356460 +Bruno T. Messmer,Efficient Subgraph Isomorphism Detection: A Decomposition Approach.,2000,12,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde12.html#MessmerB00,https://doi.org/10.1109/69.842269 +Yunyao Qu,Supporting Movement Pattern Queries in User-Specified Scales.,2003,15,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde15.html#QuWGW03,https://doi.org/10.1109/TKDE.2003.1161580 +Yuxia Yao,An Energy-Efficient and Access Latency Optimized Indexing Scheme for Wireless Data Broadcast.,2006,18,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde18.html#YaoTLS06,https://doi.org/10.1109/TKDE.2006.118 +P. Bruce Berra,Guest Editors' Introduction to Part I of the Special Section on Data and Knowledge Management in Multimedia Systems.,1998,10,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde10.html#BerraG98,https://doi.org/10.1109/TKDE.1998.738354 +George Kollios,Clustering Large Probabilistic Graphs.,2013,25,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde25.html#KolliosPT13,https://doi.org/10.1109/TKDE.2011.243 +Gang Chen 0001,BestPeer++: A Peer-to-Peer BasedLarge-Scale Data Processing Platform.,2014,26,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde26.html#ChenHJLTVW14,https://doi.org/10.1109/TKDE.2012.236 +Peter Dawyndt,Knowledge Accumulation and Resolution of Data Inconsistencies during the Integration of Microbial Information Sources.,2005,17,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde17.html#DawyndtVMS05,https://doi.org/10.1109/TKDE.2005.131 +Jenn-Yang Tien,Comments on 'Hash-Based and Index-Based Join Algorithms for Cube and Ring Connected Multicomputers'.,1991,3,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde3.html#TienY91,https://doi.org/10.1109/69.91050 +Goetz Graefe,Sort versus Hash Revisited.,1994,6,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde6.html#GraefeLS94,https://doi.org/10.1109/69.334883 +Prithviraj Dasgupta,MAgNET: Mobile Agents for Networked Electronic Trading.,1999,11,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde11.html#DasguptaNMM99,https://doi.org/10.1109/69.790796 +Thanh Tran 0001,Managing Structured and Semistructured RDF Data Using Structure Indexes.,2013,25,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde25.html#TranLR13,https://doi.org/10.1109/TKDE.2012.134 +Senjuti Basu Roy,Fast Best-Effort Search on Graphs with Multiple Attributes.,2015,27,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde27.html#RoyEP15,https://doi.org/10.1109/TKDE.2014.2345482 +Chung-Min Chen,Multidimensional Declustering Schemes Using Golden Ratio and Kronecker Sequences.,2003,15,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde15.html#ChenBS03,https://doi.org/10.1109/TKDE.2003.1198397 +Min Chen,Facilitating Effective User Navigation through Website Structure Improvement.,2013,25,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde25.html#ChenR13,https://doi.org/10.1109/TKDE.2011.238 +Shipeng Yu,Multi-Output Regularized Feature Projection.,2006,18,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde18.html#YuYTK06,https://doi.org/10.1109/TKDE.2006.194 +Yuan He 0006,Discovering Canonical Correlations between Topical and Topological Information in Document Networks.,2018,30,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde30.html#HeWJ18,https://doi.org/10.1109/TKDE.2017.2767599 +Tobias Kuhn,Making Digital Artifacts on the Web Verifiable and Reliable.,2015,27,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde27.html#KuhnD15,https://doi.org/10.1109/TKDE.2015.2419657 +Fabrizio Angiulli,Discovering Characterizations of the Behavior of Anomalous Subpopulations.,2013,25,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde25.html#AngiulliFP13,https://doi.org/10.1109/TKDE.2012.58 +Zhe Jiang 0001,Focal-Test-Based Spatial Decision Tree Learning.,2015,27,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde27.html#JiangSZKC15,https://doi.org/10.1109/TKDE.2014.2373383 +Santosh K. Ray,A Review and Future Perspectives of Arabic Question Answering Systems.,2016,28,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde28.html#RayS16,https://doi.org/10.1109/TKDE.2016.2607201 +Guoren Wang,Efficiently Indexing Large Sparse Graphs for Similarity Search.,2012,24,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde24.html#WangWYY12,https://doi.org/10.1109/TKDE.2010.28 +Yon Dohn Chung,Energy- and Latency-Efficient Processing of Full-Text Searches on a Wireless Broadcast Stream.,2010,22,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde22.html#ChungYK10,https://doi.org/10.1109/TKDE.2009.67 +Jian Pei,Editorial [2012 and 2013 Associate Editors].,2013,25,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde25.html#Pei13,https://doi.org/10.1109/TKDE.2013.99 +Yun Peng,Authenticated Subgraph Similarity Searchin Outsourced Graph Databases.,2015,27,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde27.html#PengFCXB15,https://doi.org/10.1109/TKDE.2014.2316818 +Sergio Flesca,Fast Detection of XML Structural Similarity.,2005,17,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde17.html#FlescaMMPP05,https://doi.org/10.1109/TKDE.2005.27 +Barry Smyth,Hierarchical Case-Based Reasoning Integrating Case-Based and Decompositional Problem-Solving Techniques for Plant-Control Software Design.,2001,13,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde13.html#SmythKC01,https://doi.org/10.1109/69.956101 +William Hoiles,Engagement and Popularity Dynamics of YouTube Videos and Sensitivity to Meta-Data.,2017,29,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde29.html#HoilesAK17,https://doi.org/10.1109/TKDE.2017.2682858 +Eitetsu Oomoto,OVID: Design and Implementation of a Video-Object Database System.,1993,5,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde5.html#OomotoT93,https://doi.org/10.1109/69.234775 +Vijayalakshmi Atluri,Transaction Processing in Multilevel Secure Databases with Kernelized Architectures: Challenges and Solutions.,1997,9,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde9.html#AtluriJB97,https://doi.org/10.1109/69.634749 +Jiaqi Zhu,Mining User-Aware Rare Sequential Topic Patterns in Document Streams.,2016,28,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde28.html#ZhuWWHW16,https://doi.org/10.1109/TKDE.2016.2541149 +Silvano Mussi,Causal Knowledge Elicitation Based on Elicitation Failures.,1995,7,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde7.html#Mussi95,https://doi.org/10.1109/69.469824 +Rajeev Gupta,Query Planning for Continuous Aggregation Queries over a Network of Data Aggregators.,2012,24,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde24.html#GuptaR12,https://doi.org/10.1109/TKDE.2011.12 +Melissa Ailem,Sparse Poisson Latent Block Model for Document Clustering.,2017,29,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde29.html#AilemRN17,https://doi.org/10.1109/TKDE.2017.2681669 +Muhammad Aamir Cheema,Continuous Monitoring of Distance-Based Range Queries.,2011,23,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde23.html#CheemaBLZW11,https://doi.org/10.1109/TKDE.2010.246 +Khurram Shehzad,EDISC: A Class-Tailored Discretization Technique for Rule-Based Classification.,2012,24,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde24.html#Shehzad12,https://doi.org/10.1109/TKDE.2011.101 +Kyong-Ho Lee,Logical Structure Analysis and Generation for Structured Documents: A Syntactic Approach.,2003,15,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde15.html#LeeCC03,https://doi.org/10.1109/TKDE.2003.1232278 +William Zhu,On Three Types of Covering-Based Rough Sets.,2007,19,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde19.html#ZhuW07,https://doi.org/10.1109/TKDE.2007.1044 +Carmel Domshlak,Rank Aggregation for Automatic Schema Matching.,2007,19,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde19.html#DomshlakGR07,https://doi.org/10.1109/TKDE.2007.1010 +Shuai Ma,Proxies for Shortest Path and Distance Queries.,2016,28,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde28.html#MaFLWCH16,https://doi.org/10.1109/TKDE.2016.2531667 +Leszek Rutkowski,Decision Trees for Mining Data Streams Based on the Gaussian Approximation.,2014,26,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde26.html#RutkowskiJPD14,https://doi.org/10.1109/TKDE.2013.34 +Manolis Koubarakis,Logic and Computational Complexity for Boolean Information Retrieval.,2006,18,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde18.html#KoubarakisST06,https://doi.org/10.1109/TKDE.2006.193 +Syam Menon,Effective Reformulations for Task Allocation in Distributed Systems with a Large Number of Communicating Tasks.,2004,16,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde16.html#Menon04,https://doi.org/10.1109/TKDE.2004.91 +A. B. Stephens,Optimal Allocation for Partially Replicated Database Systems on Ring Networks.,1994,6,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde6.html#StephensYH94,https://doi.org/10.1109/69.334886 +Bo Yang 0002,Stochastic Blockmodeling and Variational Bayes Learning for Signed Network Analysis.,2017,29,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde29.html#YangLLZ17,https://doi.org/10.1109/TKDE.2017.2700304 +Yi-Hong Chu,Reducing Redundancy in Subspace Clustering.,2009,21,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde21.html#ChuCYC09,https://doi.org/10.1109/TKDE.2008.207 +Eric Ka Ka Ng,Projective Clustering by Histograms.,2005,17,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde17.html#NgFW05,https://doi.org/10.1109/TKDE.2005.47 +Tzung-Pei Hong,A Generalized Version Space Learning Algorithm for Noisy and Uncertain Data.,1997,9,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde9.html#HongT97,https://doi.org/10.1109/69.591457 +Benjamin W. Wah,Editorial: Results of TKDE's 1995 Readership Survey.,1996,8,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde8.html#Wah96b,http://doi.ieeecomputersociety.org/10.1109/TKDE.1996.10002 +Biao Qin,Efficient Sensitivity Analysis for Inequality Queries in Probabilistic Databases.,2017,29,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde29.html#QinY17,https://doi.org/10.1109/TKDE.2016.2613538 +Danushka Bollegala,Cross-Domain Sentiment Classification Using a Sentiment Sensitive Thesaurus.,2013,25,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde25.html#BollegalaWC13,https://doi.org/10.1109/TKDE.2012.103 +Bruce Abramson,Towards and Art and Science of Knowledge Engineering.,1993,5,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde5.html#AbramsonN93,https://doi.org/10.1109/69.234781 +Michael Stonebraker,Introduction to the Special Issue on Database Prototype Systems.,1990,2,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde2.html#Stonebraker90,http://doi.ieeecomputersociety.org/10.1109/TKDE.1990.10000 +Hamid R. Motahari Nezhad,Deriving Protocol Models from Imperfect Service Conversation Logs.,2008,20,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde20.html#NezhadSBC08,https://doi.org/10.1109/TKDE.2008.87 +Benjamin W. Wah,Editorial: Two Named to Editorial of IEEE Transactions on Knowledge and Data Engineering.,1996,8,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde8.html#Wah96c,http://doi.ieeecomputersociety.org/10.1109/TKDE.1996.10001 +Su-Jin Shin,Guided HTM: Hierarchical Topic Model with Dirichlet Forest Priors.,2017,29,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde29.html#ShinM17,https://doi.org/10.1109/TKDE.2016.2625790 +Viviane Crestana-Jensen,Consistent Schema Version Removal: An Optimization Technique for Object-Oriented Views.,2000,12,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde12.html#Crestana-JensenLR00,https://doi.org/10.1109/69.842266 +Fabricio A. Breve,Particle Competition and Cooperation in Networks for Semi-Supervised Learning.,2012,24,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde24.html#BreveZQPL12,https://doi.org/10.1109/TKDE.2011.119 +Yan Zhou,Deadline Assignment and Feedback Control for Differentiated Real-Time Data Services.,2015,27,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde27.html#ZhouK15,https://doi.org/10.1109/TKDE.2015.2441725 +Jeff Z. Pan,A Flexible Ontology Reasoning Architecture for the Semantic Web.,2007,19,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde19.html#Pan07,https://doi.org/10.1109/TKDE.2007.17 +Hyunjin Yoon,Feature Subset Selection and Feature Ranking for Multivariate Time Series.,2005,17,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde17.html#YoonYS05,https://doi.org/10.1109/TKDE.2005.144 +David L. Spooner,Guest Editor's Introduction: The Fifth International Conference on Data Engineering (1989).,1989,1,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde1.html#Spooner89,http://doi.ieeecomputersociety.org/10.1109/TKDE.1989.10005 +Carl G. Looney,Rule Acquiring Expert Controllers.,1991,3,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde3.html#Looney91,https://doi.org/10.1109/69.88005 +Luis Tari,Incremental Information Extraction Using Relational Databases.,2012,24,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde24.html#TariTHCSGB12,https://doi.org/10.1109/TKDE.2010.214 +Themis Palpanas,Streaming Time Series Summarization Using User-Defined Amnesic Functions.,2008,20,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde20.html#PalpanasVKG08,https://doi.org/10.1109/TKDE.2007.190737 +Gianluigi Greco,A Logical Framework for Querying and Repairing Inconsistent Databases.,2003,15,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde15.html#GrecoGZ03,https://doi.org/10.1109/TKDE.2003.1245280 +Shyh-Kwei Chen,An Exact Closed-Form Formula for d-Dimensional Quadtree Decomposition of Arbitrary Hyperrectangles.,2006,18,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde18.html#Chen06,https://doi.org/10.1109/TKDE.2006.86 +Shuo Ma,Real-Time City-Scale Taxi Ridesharing.,2015,27,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde27.html#MaZW15,https://doi.org/10.1109/TKDE.2014.2334313 +Bugra Gedik,Processing Moving Queries over Moving Objects Using Motion-Adaptive Indexes.,2006,18,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde18.html#GedikWYL06,https://doi.org/10.1109/TKDE.2006.81 +Philip S. Yu,Modeling and Analysis of a Time-Stamp History Based Certification Protocol for Concurrency Control.,1991,3,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde3.html#YuHD91,https://doi.org/10.1109/69.109112 +Timothy C. Havens,An Efficient Formulation of the Improved Visual Assessment of Cluster Tendency (iVAT) Algorithm.,2012,24,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde24.html#HavensB12,https://doi.org/10.1109/TKDE.2011.33 +Vassilios S. Verykios,Association Rule Hiding.,2004,16,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde16.html#VerykiosEBSD04,https://doi.org/10.1109/TKDE.2004.1269668 +Jia Zeng,Fast Online EM for Big Topic Modeling.,2016,28,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde28.html#ZengLC16,https://doi.org/10.1109/TKDE.2015.2492565 +John F. Roddick,Handling Discovered Structure in Database Systems.,1996,8,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde8.html#RoddickCR96,https://doi.org/10.1109/69.494163 +Alfs T. Berztiss,The Query Language Vizla.,1993,5,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde5.html#Berztiss93,https://doi.org/10.1109/69.243511 +Eric L. Denna,Development and Application of Expert System in Audit Services.,1991,3,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde3.html#DennaHM91,https://doi.org/10.1109/69.87997 +Lin Zhu 0001,Distributed Skyline Retrieval with Low Bandwidth Consumption.,2009,21,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde21.html#ZhuTZ09,https://doi.org/10.1109/TKDE.2008.142 +Osman Abul,Hiding Sequential and Spatiotemporal Patterns.,2010,22,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde22.html#AbulBG10,https://doi.org/10.1109/TKDE.2009.213 +Na Ta,An Efficient Ride-Sharing Framework for Maximizing Shared Route.,2018,30,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde30.html#TaLZFMG18,https://doi.org/10.1109/TKDE.2017.2760880 +Arvind K. Tripathi,Optimal Lot Sizing Policies For Sequential Online Auctions.,2009,21,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde21.html#TripathiNK09,https://doi.org/10.1109/TKDE.2008.145 +Fang Liu,Personalized Web Search For Improving Retrieval Effectiveness.,2004,16,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde16.html#LiuYM04,https://doi.org/10.1109/TKDE.2004.1264820 +Chiang Lee,Query Optimization in Multidatabase Systems Considering Schema Conflicts.,1997,9,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde9.html#LeeC97,https://doi.org/10.1109/69.649318 +Deke Guo,The Dynamic Bloom Filters.,2010,22,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde22.html#GuoWCYL10,https://doi.org/10.1109/TKDE.2009.57 +Alok Sharma,Rotational Linear Discriminant Analysis Technique for Dimensionality Reduction.,2008,20,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde20.html#SharmaP08,https://doi.org/10.1109/TKDE.2008.101 +David Martens,Decompositional Rule Extraction from Support Vector Machines by Active Learning.,2009,21,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde21.html#MartensBG09,https://doi.org/10.1109/TKDE.2008.131 +Michael J. Laszlo,Minimum Spanning Tree Partitioning Algorithm for Microaggregation.,2005,17,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde17.html#LaszloM05,https://doi.org/10.1109/TKDE.2005.112 +Khanh P. V. Doan,SHAPES: A Novel Approach for Learning Search Heuristics in Under-Constrained Optimization Problems.,1997,9,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde9.html#DoanW97,https://doi.org/10.1109/69.634752 +Nabil R. Adam,A Dynamic Manifestation Approach for Providing Universal Access to Digital Library Objects.,2001,13,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde13.html#AdamAABH01,https://doi.org/10.1109/69.940742 +T. V. Manoj,Knowledge Representation Using Fuzzy Petri Nets - Revisited.,1998,10,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde10.html#ManojLS98,https://doi.org/10.1109/69.706063 +Mikalai Tsytsarau,Managing Diverse Sentiments at Large Scale.,2016,28,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde28.html#TsytsarauP16,https://doi.org/10.1109/TKDE.2016.2597848 +Jiali Mao,Feature Grouping-Based Outlier Detection Upon Streaming Trajectories.,2017,29,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde29.html#MaoWJZ17,https://doi.org/10.1109/TKDE.2017.2744619 +Gang Gou,Efficiently Querying Large XML Data Repositories: A Survey.,2007,19,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde19.html#GouC07,https://doi.org/10.1109/TKDE.2007.1060 +José Manuél Gómez-Pérez,A Formalism and Method for Representing and Reasoning with Process Models Authored by Subject Matter Experts.,2013,25,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde25.html#Gomez-PerezEGC13,https://doi.org/10.1109/TKDE.2012.127 +Mohamed Y. Eltabakh,HandsOn DB: Managing Data Dependencies Involving Human Actions.,2014,26,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde26.html#EltabakhAEO14,https://doi.org/10.1109/TKDE.2013.117 +Xiangyu Tang,Dynamic Personalized Recommendation on Sparse Data.,2013,25,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde25.html#TangZ13,https://doi.org/10.1109/TKDE.2012.229 +Hongjian Fan,Fast Discovery and the Generalization of Strong Jumping Emerging Patterns for Building Compact and Accurate Classifiers.,2006,18,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde18.html#FanR06,https://doi.org/10.1109/TKDE.2006.95 +Chin-Wan Chung,Access to Indexed Hierarchical Databases Using a Relational Query Language.,1993,5,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde5.html#ChungM93,https://doi.org/10.1109/69.204099 +Xuan Liu,Object-Based Directional Query Processing in Spatial Databases.,2003,15,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde15.html#LiuSC03,https://doi.org/10.1109/TKDE.2003.1185835 +Bettina Fazzinga,XPath Query Relaxation through Rewriting Rules.,2011,23,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde23.html#FazzingaFF11,https://doi.org/10.1109/TKDE.2010.203 +Donald P. Ballou,Sample-Based Quality Estimation of Query Results in Relational Database Environments.,2006,18,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde18.html#BallouCW06,https://doi.org/10.1109/TKDE.2006.83 +Tianyi Jiang,Improving Personalization Solutions through Optimal Segmentation of Customer Bases.,2009,21,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde21.html#JiangT09a,https://doi.org/10.1109/TKDE.2008.163 +Murat Can Ganiz,Higher Order Naïve Bayes: A Novel Non-IID Approach to Text Classification.,2011,23,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde23.html#GanizGP11,https://doi.org/10.1109/TKDE.2010.160 +Qiang Liu 0006,Multi-Behavioral Sequential Prediction with Recurrent Log-Bilinear Model.,2017,29,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde29.html#LiuWW17,https://doi.org/10.1109/TKDE.2017.2661760 +Victor R. Lesser,Cooperative Multiagent Systems: A Personal View of the State of the Art.,1999,11,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde11.html#Lesser99,https://doi.org/10.1109/69.755622 +Avrilia Floratou,Efficient and Accurate Discovery of Patterns in Sequence Data Sets.,2011,23,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde23.html#FloratouTP11,https://doi.org/10.1109/TKDE.2011.69 +Hye-Kyeong Ko,A Binary String Approach for Updates in Dynamic Ordered XML Data.,2010,22,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde22.html#KoL10,https://doi.org/10.1109/TKDE.2009.87 +Giovanni Maria Sacco,Dynamic Taxonomies: A Model for Large Information Bases.,2000,12,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde12.html#Sacco00,https://doi.org/10.1109/69.846296 +Surajit Chaudhuri,Index Selection for Databases: A Hardness Study and a Principled Heuristic Solution.,2004,16,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde16.html#ChaudhuriDN04,https://doi.org/10.1109/TKDE.2004.75 +Zhiyuan Chen 0003,A Learning Approach to SQL Query Results Ranking Using Skyline and Users' Current Navigational Behavior.,2013,25,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde25.html#ChenLS13,https://doi.org/10.1109/TKDE.2012.128 +Neoklis Polyzotis,Meshing Streaming Updates with Persistent Data in an Active Data Warehouse.,2008,20,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde20.html#PolyzotisSVSF08,https://doi.org/10.1109/TKDE.2008.27 +Tak-Lam Wong,Learning to Adapt Web Information Extraction Knowledge and Discovering New Attributes via a Bayesian Approach.,2010,22,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde22.html#WongL10,https://doi.org/10.1109/TKDE.2009.111 +Neil MacParthalain,A Distance Measure Approach to Exploring the Rough Set Boundary Region for Attribute Reduction.,2010,22,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde22.html#MacParthalainSJ10,https://doi.org/10.1109/TKDE.2009.119 +Xiaoke Ma,Evolutionary Nonnegative Matrix Factorization Algorithms for Community Detection in Dynamic Networks.,2017,29,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde29.html#MaD17,https://doi.org/10.1109/TKDE.2017.2657752 +Yuxin Zheng,INSPIRE: A Framework for Incremental Spatial Prefix Query Relaxation.,2015,27,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde27.html#ZhengBST15,https://doi.org/10.1109/TKDE.2015.2391107 +Wenjun Zhou,Paradoxical Correlation Pattern Mining.,2018,30,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde30.html#ZhouXDXM18,https://doi.org/10.1109/TKDE.2018.2791602 +Charu C. Aggarwal,Caching on the World Wide Web.,1999,11,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde11.html#AggarwalWY99,https://doi.org/10.1109/69.755618 +Claudia Diamantini,Bayes Vector Quantizer for Class-Imbalance Problem.,2009,21,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde21.html#DiamantiniP09,https://doi.org/10.1109/TKDE.2008.187 +Venkata M. V. Gunturi,A Critical-Time-Point Approach to All-Departure-Time Lagrangian Shortest Paths.,2015,27,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde27.html#GunturiSY15,https://doi.org/10.1109/TKDE.2015.2426701 +Qiong Fang,Mining Bucket Order-Preserving SubMatrices in Gene Expression Data.,2012,24,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde24.html#FangNFL12,https://doi.org/10.1109/TKDE.2011.180 +Isabel F. Cruz,Guest Editorial: Special Section on the International Conference on Data Engineering.,2016,28,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde28.html#CruzFT16,https://doi.org/10.1109/TKDE.2015.2495958 +Sudha Ram,Semantic Conflict Resolution Ontology (SCROL): An Ontology for Detecting and Resolving Data and Schema-Level Semantic Conflicts.,2004,16,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde16.html#RamP04,https://doi.org/10.1109/TKDE.2004.1269597 +Michael Cammert,A Cost-Based Approach to Adaptive Resource Management in Data Stream Systems.,2008,20,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde20.html#CammertKSV08,https://doi.org/10.1109/TKDE.2007.190686 +Shiwen Cheng,Efficient Prediction of Difficult Keyword Queries over Databases.,2014,26,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde26.html#ChengTH14,https://doi.org/10.1109/TKDE.2013.140 +David R. Parker,Development of a Bayesian Framework for Determining Uncertainty in Receiver Operating Characteristic Curve Estimates.,2010,22,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde22.html#ParkerGOR10,https://doi.org/10.1109/TKDE.2009.50 +Yongxin Tong,SLADE: A Smart Large-Scale Task Decomposer in Crowdsourcing.,2018,30,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde30.html#TongCZJSL18,https://doi.org/10.1109/TKDE.2018.2797962 +Guolei Yang,Querying a Collection of Continuous Functions.,2018,30,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde30.html#YangC18,https://doi.org/10.1109/TKDE.2018.2802936 +Francesco Corcoglioniti,Frame-Based Ontology Population with PIKES.,2016,28,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde28.html#CorcoglionitiRA16,https://doi.org/10.1109/TKDE.2016.2602206 +Onur Kucuktunc,λ*-Diverse Nearest Neighbors Browsing for Multidimensional Data.,2013,25,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde25.html#KucuktuncF13,https://doi.org/10.1109/TKDE.2011.251 +Bharadwaj Veeravalli,Network Caching Strategies for a Shared Data Distribution for a Predefined Service Demand Sequence.,2003,15,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde15.html#Veeravalli03,https://doi.org/10.1109/TKDE.2003.1245287 +Wijnand Nuij,An Automated Framework for Incorporating News into Stock Trading Strategies.,2014,26,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde26.html#NuijMHFK14,https://doi.org/10.1109/TKDE.2013.133 +Boyu Wang,Online Bagging and Boosting for Imbalanced Data Streams.,2016,28,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde28.html#WangP16,https://doi.org/10.1109/TKDE.2016.2609424 +Gao Cong,On the Complexity of View Update Analysis and Its Application to Annotation Propagation.,2012,24,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde24.html#CongFGLL12,https://doi.org/10.1109/TKDE.2011.27 +Won Kim 0001,Object-Oriented Databases: Definition and Research Directions.,1990,2,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde2.html#Kim90,https://doi.org/10.1109/69.60796 +Austin Parker,A Logical Formulation of Probabilistic Spatial Databases.,2007,19,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde19.html#ParkerSG07,https://doi.org/10.1109/TKDE.2007.190631 +Bo Long,Active Learning for Ranking through Expected Loss Optimization.,2015,27,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde27.html#LongBCZIC15,https://doi.org/10.1109/TKDE.2014.2365785 +Glenn Healey,Modeling the Probability of a Strikeout for a Batter/Pitcher Matchup.,2015,27,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde27.html#Healey15,https://doi.org/10.1109/TKDE.2015.2416735 +Lisa F. Rau,Calculating Salience and Breath of Knowledge.,1993,5,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde5.html#Rau93,https://doi.org/10.1109/69.250087 +Lars Bækgaard,Incremental Computation of Set Difference Views.,1997,9,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde9.html#BaekgaardM97,https://doi.org/10.1109/69.591450 +Gary W. Rosenwald,Rule-Based System Validation through Automatic Identification of Equivalence Classes.,1997,9,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde9.html#RosenwaldL97,https://doi.org/10.1109/69.567043 +Eleonora Ciceri,Crowdsourcing for Top-K Query Processing over Uncertain Data.,2016,28,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde28.html#CiceriFMT16,https://doi.org/10.1109/TKDE.2015.2462357 +Renate Motschnig-Pitrik,Part-Whole Relationship Categories and Their Application in Object-Oriented Analysis.,1999,11,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde11.html#Motschnig-PitrikK99,https://doi.org/10.1109/69.806936 +Jiong Yang,Mining Asynchronous Periodic Patterns in Time Series Data.,2003,15,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde15.html#YangWY03,https://doi.org/10.1109/TKDE.2003.1198394 +Liqiang Nie,Data-Driven Answer Selection in Community QA Systems.,2017,29,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde29.html#NieWZWGY17,https://doi.org/10.1109/TKDE.2017.2669982 +Zeyuan Shang,K-Join: Knowledge-Aware Similarity Join.,2016,28,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde28.html#ShangLLF16,https://doi.org/10.1109/TKDE.2016.2601325 +Li Weng,Privacy-Preserving Outsourced Media Search.,2016,28,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde28.html#WengAF16,https://doi.org/10.1109/TKDE.2016.2587258 +Gultekin özsoyoglu,Time-Constrained Query Processing in CASE-DB.,1995,7,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde7.html#OzsoyogluGDH95,https://doi.org/10.1109/69.476494 +Ram D. Gopal,The Query Clustering Problem: A Set Partitioning Approach.,1995,7,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde7.html#GopalR95,https://doi.org/10.1109/69.476495 +Raghotham Murthy,Making Aggregation Work in Uncertain and Probabilistic Databases.,2011,23,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde23.html#MurthyIW11,https://doi.org/10.1109/TKDE.2010.166 +Paolo Terenziani,Irregular Indeterminate Repeated Facts in Temporal Relational Databases.,2016,28,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde28.html#Terenziani16,https://doi.org/10.1109/TKDE.2015.2509976 +Ke Deng,Best Keyword Cover Search.,2015,27,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde27.html#DengLLZ15,https://doi.org/10.1109/TKDE.2014.2324897 +Jingbo Shang,DPPred: An Effective Prediction Framework with Concise Discriminative Patterns.,2018,30,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde30.html#ShangJTXPH18,https://doi.org/10.1109/TKDE.2017.2757476 +Keh-Chang Guh,Efficient Management of Materialized Generalized Transitive Closure in Centralized and Parallel Environments.,1992,4,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde4.html#GuhY92,https://doi.org/10.1109/69.149932 +Mehmet Ercan Nergiz,A Look-Ahead Approach to Secure Multiparty Protocols.,2012,24,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde24.html#NergizCPS12,https://doi.org/10.1109/TKDE.2011.44 +Kian-Lee Tan,Generating Broadcast Programs that Support Range Queries.,1998,10,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde10.html#TanY98,https://doi.org/10.1109/69.706064 +Jianyong Wang,On Mining Instance-Centric Classification Rules.,2006,18,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde18.html#WangK06,https://doi.org/10.1109/TKDE.2006.179 +Ming-Syan Chen,A Graph Theoretical Approach to Determine a Join Reducer Sequence in Distributed Query Processing.,1994,6,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde6.html#ChenY94,https://doi.org/10.1109/69.273034 +Ming-Syan Chen,Data Mining: An Overview from a Database Perspective.,1996,8,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde8.html#ChenHY96,https://doi.org/10.1109/69.553155 +Peter F. Patel-Schneider,The Yin/Yang Web: A Unified Model for XML Syntax and RDF Semantics.,2003,15,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde15.html#Patel-SchneiderS03,https://doi.org/10.1109/TKDE.2003.1209000 +Graham Cormode,Histograms and Wavelets on Probabilistic Data.,2010,22,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde22.html#CormodeG10,https://doi.org/10.1109/TKDE.2010.66 +Qun Ren,Semantic Caching and Query Processing.,2003,15,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde15.html#RenDK03,https://doi.org/10.1109/TKDE.2003.1161590 +Wasfi Al-Khatib,Semantic Modeling and Knowledge Representation in Multimedia Databases.,1999,11,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde11.html#Al-KhatibDGB99,https://doi.org/10.1109/69.755616 +Haojun Wang,Processing of Continuous Location-Based Range Queries on Moving Objects in Road Networks.,2011,23,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde23.html#WangZ11,https://doi.org/10.1109/TKDE.2010.171 +Ehab Abdelhamid,Incremental Frequent Subgraph Mining on Large Evolving Graphs.,2017,29,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde29.html#AbdelhamidCSBCK17,https://doi.org/10.1109/TKDE.2017.2743075 +Pavlos Delias,Optimizing Resource Conflicts in Workflow Management Systems.,2011,23,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde23.html#DeliasDDM11,https://doi.org/10.1109/TKDE.2010.113 +Cheng Xu 0004,Authenticating Aggregate Queries over Set-Valued Data with Confidentiality.,2018,30,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde30.html#XuCHXH18,https://doi.org/10.1109/TKDE.2017.2773541 +Dao-I Lin,Pincer-Search: An Efficient Algorithm for Discovering the Maximum Frequent Set.,2002,14,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde14.html#LinK02,https://doi.org/10.1109/TKDE.2002.1000342 +Shashi Shekhar,Efficient Join-Index-Based Spatial-Join Processing: A Clustering Approach.,2002,14,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde14.html#ShekharLCR02,https://doi.org/10.1109/TKDE.2002.1047776 +Michael Stonebraker,The Implementation of Postgres.,1990,2,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde2.html#StonebrakerRH90,https://doi.org/10.1109/69.50912 +Xiaokui Xiao,Differential Privacy via Wavelet Transforms.,2011,23,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde23.html#XiaoWG11,https://doi.org/10.1109/TKDE.2010.247 +Yizhou Sun,Co-Evolution of Multi-Typed Objects in Dynamic Star Networks.,2014,26,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde26.html#SunTHCG14,https://doi.org/10.1109/TKDE.2013.103 +Yu Chen,Protection of Database Security via Collaborative Inference Detection.,2008,20,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde20.html#ChenC08,https://doi.org/10.1109/TKDE.2007.190642 +Wai Lam,Automatic Text Categorization and Its Application to Text Retrieval.,1999,11,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde11.html#LamRS99,https://doi.org/10.1109/69.824599 +Xudong Luo,Proof of the Correctness of EMYCIN Sequential Propagation Under Conditional Independence Assumptions.,1999,11,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde11.html#LuoZ99,https://doi.org/10.1109/69.761668 +Song-Yi Yi,Effective Generation of Data Broadcast Schedules with Different Allocation Numbers for Multiple Wireless Channels.,2008,20,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde20.html#YiNJ08,https://doi.org/10.1109/TKDE.2007.190736 +Kyriakos Mouratidis,Continuous Nearest Neighbor Queries over Sliding Windows.,2007,19,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde19.html#MouratidisP07,https://doi.org/10.1109/TKDE.2007.190617 +Sudeshna Sarkar,A Framework for Learning in Search-Based Systems.,1998,10,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde10.html#SarkarCG98,https://doi.org/10.1109/69.706057 +Mladen A. Vouk,Workflow and End-User Quality of Service Issues in Web-Based Education.,1999,11,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde11.html#VoukBK99,https://doi.org/10.1109/69.790839 +K. H. Kim,The PSTR/SNS Scheme for Real-Time Fault Tolerance via Active Object Replication and Network Surveillance.,2000,12,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde12.html#KimS00,https://doi.org/10.1109/69.842258 +Sangho Kim 0001,Contraflow Transportation Network Reconfiguration for Evacuation Route Planning.,2008,20,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde20.html#KimSM08,https://doi.org/10.1109/TKDE.2007.190722 +Saurabh Bagchi,Hierarchical Error Detection in a Software Implemented Fault Tolerance (SIFT) Environment.,2000,12,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde12.html#BagchiSWKI00,https://doi.org/10.1109/69.842263 +Elisa Bertino,Guest Editorial: Introduction to the Special Section.,2000,12,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde12.html#BertinoU00,https://doi.org/10.1109/TKDE.2000.842245 +Jianguo Wang 0001,Identifying the Most Connected Vertices in Hidden Bipartite Graphs Using Group Testing.,2013,25,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde25.html#WangLY13,https://doi.org/10.1109/TKDE.2012.178 +Xinyu Wei,Forecasting the Next Shot Location in Tennis Using Fine-Grained Spatiotemporal Tracking Data.,2016,28,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde28.html#WeiLMS16,https://doi.org/10.1109/TKDE.2016.2594787 +Chi-Jen Wu,A Novel Pipeline Approach for Efficient Big Data Broadcasting.,2016,28,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde28.html#WuKHC16,https://doi.org/10.1109/TKDE.2015.2468714 +Agostino Dovier,The Subgraph Bisimulation Problem.,2003,15,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde15.html#DovierP03,https://doi.org/10.1109/TKDE.2003.1209024 +Luca Maria Aiello,Beautiful and Damned. Combined Effect of Content Quality and Social Ties on User Engagement.,2017,29,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde29.html#AielloSRSLO17,https://doi.org/10.1109/TKDE.2017.2747552 +Shuo Wang,Resampling-Based Ensemble Methods for Online Class Imbalance Learning.,2015,27,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde27.html#WangMY15,https://doi.org/10.1109/TKDE.2014.2345380 +John Yen,Fuzzy Logic - A Modern Perspective.,1999,11,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde11.html#Yen99,https://doi.org/10.1109/69.755624 +Euripides G. M. Petrakis,ImageMap: An Image Indexing Method Based on Spatial Similarity.,2002,14,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde14.html#PetrakisFL02,https://doi.org/10.1109/TKDE.2002.1033768 +George H. L. Fletcher,On the Expressive Power of the Relational Algebra on Finite Sets of Relation Pairs.,2009,21,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde21.html#FletcherGPG09,https://doi.org/10.1109/TKDE.2008.221 +Raymond S. T. Lee,iJADE Web-Miner: An Intelligent Agent Framework for Internet Shopping.,2004,16,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde16.html#LeeL04,https://doi.org/10.1109/TKDE.2004.1269670 +Francis Eng Hock Tay,A Modified Chi2 Algorithm for Discretization.,2002,14,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde14.html#TayS02,https://doi.org/10.1109/TKDE.2002.1000349 +Chong Wang,Probabilistic Models for Ad Viewability Prediction on the Web.,2017,29,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde29.html#WangKZBC17,https://doi.org/10.1109/TKDE.2017.2705688 +Ophir Frieder,Site and Query Scheduling Policies in Multicomputer Database Systems.,1994,6,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde6.html#FriederB94,https://doi.org/10.1109/69.298176 +Bugra Gedik,Disk-Based Management of Interaction Graphs.,2014,26,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde26.html#GedikB14,https://doi.org/10.1109/TKDE.2013.2297930 +Chengqi Zhang,Guest Editors' Introduction: Special Section on Intelligent Data Preparation.,2005,17,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde17.html#ZhangYL05,https://doi.org/10.1109/TKDE.2005.146 +Segev Wasserkrug,Efficient Processing of Uncertain Events in Rule-Based Systems.,2012,24,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde24.html#WasserkrugGET12,https://doi.org/10.1109/TKDE.2010.204 +Jing Li,Efficient Notification of Meeting Points for Moving Groups via Independent Safe Regions.,2015,27,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde27.html#LiTYM15,https://doi.org/10.1109/TKDE.2014.2334304 +Libin Zheng,Maximizing Acceptance in Rejection-Aware Spatial Crowdsourcing.,2017,29,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde29.html#ZhengC17,https://doi.org/10.1109/TKDE.2017.2676771 +Lei Shi,Anomalous Window Discovery for Linear Intersecting Paths.,2011,23,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde23.html#ShiJ11,https://doi.org/10.1109/TKDE.2010.212 +Dmitry Pavlov,Beyond Independence: Probabilistic Models for Query Approximation on Binary Transaction Data.,2003,15,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde15.html#PavlovMS03,https://doi.org/10.1109/TKDE.2003.1245281 +Barbara Catania,Static Analysis of Logical Languages with Deferred Update Semantics.,2003,15,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde15.html#CataniaB03,https://doi.org/10.1109/TKDE.2003.1185841 +Fabrizio Angiulli,Distance-Based Detection and Prediction of Outliers.,2006,18,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde18.html#AngiulliBP06,https://doi.org/10.1109/TKDE.2006.29 +Zhicheng Dou,Automatically Mining Facets for Queries from Their Search Results.,2016,28,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde28.html#DouJHWS16,https://doi.org/10.1109/TKDE.2015.2475735 +Elisa Bertino,Index Organizations for Object-Oriented Database Systems.,1995,7,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde7.html#BertinoF95,https://doi.org/10.1109/69.382292 +Anne H. H. Ngu,Conceptual Transaction Modeling.,1989,1,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde1.html#Ngu89,https://doi.org/10.1109/69.43425 +Zhihui Li,Beyond Trace Ratio: Weighted Harmonic Mean of Trace Ratios for Multiclass Discriminant Analysis.,2017,29,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde29.html#LiNCY17,https://doi.org/10.1109/TKDE.2017.2728531 +Ming-Syan Chen,Combining Join and Semi-Join Operations for Distributed Query Processing.,1993,5,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde5.html#ChenY93,https://doi.org/10.1109/69.224205 +Shan-Hung Wu,Toward the Optimal Itinerary-Based KNN Query Processing in Mobile Sensor Networks.,2008,20,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde20.html#WuCCC08,https://doi.org/10.1109/TKDE.2008.80 +Chowdhury Farhan Ahmed,Efficient Tree Structures for High Utility Pattern Mining in Incremental Databases.,2009,21,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde21.html#AhmedTJL09,https://doi.org/10.1109/TKDE.2009.46 +Meng Wang 0001,Scalable Semi-Supervised Learning by Efficient Anchor Graph Regularization.,2016,28,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde28.html#WangFHTW16,https://doi.org/10.1109/TKDE.2016.2535367 +Odysseas Papapetrou,Decentralized Probabilistic Text Clustering.,2012,24,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde24.html#PapapetrouSF12,https://doi.org/10.1109/TKDE.2011.120 +Sven Groppe,Result Merging Technique for Answering XPath Query over XSLT Transformed Data.,2009,21,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde21.html#GroppeGM09,https://doi.org/10.1109/TKDE.2008.211 +Yao-Chung Fan,Energy Efficient Schemes for Accuracy-Guaranteed Sensor Data Aggregation Using Scalable Counting.,2012,24,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde24.html#FanC12,https://doi.org/10.1109/TKDE.2011.76 +M. V. Ramakrishna,Bounded Disorder File Organization.,1994,6,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde6.html#Ramakrishna94,https://doi.org/10.1109/69.273028 +Ahmet Bulut,TopicMachine: Conversion Prediction in Search Advertising Using Latent Topic Models.,2014,26,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde26.html#Bulut14,https://doi.org/10.1109/TKDE.2014.2313868 +Gang Luo,Locking Protocols for Materialized Aggregate Join Views.,2005,17,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde17.html#LuoNEW05,https://doi.org/10.1109/TKDE.2005.96 +Zhiwei Lin 0002,A Multidimensional Sequence Approach to Measuring Tree Similarity.,2012,24,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde24.html#LinWM12,https://doi.org/10.1109/TKDE.2010.239 +Jacob D. Abernethy,Eliciting Consumer Preferences Using Robust Adaptive Choice Questionnaires.,2008,20,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde20.html#AbernethyETV08,https://doi.org/10.1109/TKDE.2007.190632 +Min-Ling Zhang,Multi-Label Neural Networks with Applications to Functional Genomics and Text Categorization.,2006,18,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde18.html#ZhangZ06,https://doi.org/10.1109/TKDE.2006.162 +Eric K. Garcia,Completely Lazy Learning.,2010,22,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde22.html#GarciaFGS10,https://doi.org/10.1109/TKDE.2009.159 +Amit Basu,Using a Relational Database System to Support Explanation in a Knowledge-Based System.,1992,4,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde4.html#BasuA92,https://doi.org/10.1109/69.180608 +Gilbert Babin,Decomposition of Knowledge for Concurrent Processing.,1996,8,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde8.html#BabinH96,https://doi.org/10.1109/69.542028 +Viviana Mascardi,Automatic Ontology Matching via Upper Ontologies: A Systematic Evaluation.,2010,22,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde22.html#MascardiLR10,https://doi.org/10.1109/TKDE.2009.154 +Louis-François Pau,Artificial Intelligence and Financial Services.,1991,3,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde3.html#Pau91,https://doi.org/10.1109/69.87994 +David Hung-Chang Du,Multilevel Extendible Hashing: A File Structure for Very Large Databases.,1991,3,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde3.html#DuT91,https://doi.org/10.1109/69.91065 +Xueqi Cheng,BTM: Topic Modeling over Short Texts.,2014,26,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde26.html#ChengYLG14,https://doi.org/10.1109/TKDE.2014.2313872 +Kun Liu,Random Projection-Based Multiplicative Data Perturbation for Privacy Preserving Distributed Data Mining.,2006,18,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde18.html#LiuKR06,https://doi.org/10.1109/TKDE.2006.14 +Yufei Tao,Range Aggregate Processing in Spatial Databases.,2004,16,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde16.html#TaoP04a,https://doi.org/10.1109/TKDE.2004.93 +Ata Turk,Temporal Workload-Aware Replicated Partitioning for Social Networks.,2014,26,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde26.html#TurkSFA14,https://doi.org/10.1109/TKDE.2014.2302291 +Shang-Ming Zhou,Alpha-Level Aggregation: A Practical Approach to Type-1 OWA Operation for Aggregating Uncertain Information with Applications to Breast Cancer Treatments.,2011,23,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde23.html#ZhouCJG11,https://doi.org/10.1109/TKDE.2010.191 +Lei Zou 0001,Pareto-Based Dominant Graph: An Efficient Indexing Structure to Answer Top-K Queries.,2011,23,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde23.html#ZouC11,https://doi.org/10.1109/TKDE.2010.240 +Fei Wang 0001,Label Propagation through Linear Neighborhoods.,2008,20,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde20.html#WangZ08,https://doi.org/10.1109/TKDE.2007.190672 +Hao Xia,MKBoost: A Framework of Multiple Kernel Boosting.,2013,25,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde25.html#XiaH13,https://doi.org/10.1109/TKDE.2012.89 +Guoliang Li 0002,Translation Initiation Sites Prediction with Mixture Gaussian Models in Human cDNA Sequences.,2005,17,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde17.html#LiLZ05,https://doi.org/10.1109/TKDE.2005.133 +Grigorios Tsoumakas,Random k-Labelsets for Multilabel Classification.,2011,23,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde23.html#TsoumakasKV11,https://doi.org/10.1109/TKDE.2010.164 +Steven Walczak,Knowledge-Based Search in Competitive Domains.,2003,15,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde15.html#Walczak03,https://doi.org/10.1109/TKDE.2003.1198402 +Yiyao Lu,Annotating Search Results from Web Databases.,2013,25,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde25.html#LuHZMY13,https://doi.org/10.1109/TKDE.2011.175 +Arantza Illarramendi,Making the Knowledge Base System More Efficient: A Method to Detect Inconsistent Queries.,1994,6,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde6.html#IllarramendiBG94,https://doi.org/10.1109/69.298179 +Yonghui Xu,A Unified Framework for Metric Transfer Learning.,2017,29,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde29.html#XuPXWLMS17,https://doi.org/10.1109/TKDE.2017.2669193 +Mehmet Gönen,Supervised Multiple Kernel Embedding for Learning Predictive Subspaces.,2013,25,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde25.html#Gonen13,https://doi.org/10.1109/TKDE.2012.213 +June Sung Park,Probabilistic Model and Optimal Reorganization of B+-Tree with Physical Clustering.,1997,9,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde9.html#ParkS97,https://doi.org/10.1109/69.634758 +Zhicheng Dou,Evaluating the Effectiveness of Personalized Web Search.,2009,21,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde21.html#DouSWY09,https://doi.org/10.1109/TKDE.2008.172 +Yuan Yao 0001,Scalable Algorithms for CQA Post Voting Prediction.,2017,29,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde29.html#YaoTXL17,https://doi.org/10.1109/TKDE.2017.2696535 +Qi Liu,A Cocktail Approach for Travel Package Recommendation.,2014,26,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde26.html#LiuCXGLW14,https://doi.org/10.1109/TKDE.2012.233 +Charu C. Aggarwal,Toward Exploratory Test-Instance-Centered Diagnosis in High-Dimensional Classification.,2007,19,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde19.html#Aggarwal07,https://doi.org/10.1109/TKDE.2007.1034 +Aidong Zhang,Global Scheduling for Flexible Transactions in Heterogeneous Distributed Database Systems.,2001,13,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde13.html#ZhangNB01,https://doi.org/10.1109/69.929901 +Farokh B. Bastani,Editorial.,2000,12,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde12.html#Bastani00a,https://doi.org/10.1109/TKDE.2000.877510 +Philip S. Yu,EIC Editorial.,2004,16,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde16.html#Yu04a,https://doi.org/10.1109/TKDE.2004.1307300 +Lean Yu,An Integrated Data Preparation Scheme for Neural Network Data Analysis.,2006,18,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde18.html#YuWL06,https://doi.org/10.1109/TKDE.2006.22 +Miho Ohsaki,Confusion-Matrix-Based Kernel Logistic Regression for Imbalanced Data Classification.,2017,29,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde29.html#OhsakiWMKWR17,https://doi.org/10.1109/TKDE.2017.2682249 +Dimitra Papadimitriou,Finding Related Forum Posts through Content Similarity over Intention-Based Segmentation.,2017,29,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde29.html#PapadimitriouKV17,https://doi.org/10.1109/TKDE.2017.2699965 +Xiang Lian,Probabilistic Group Nearest Neighbor Queries in Uncertain Databases.,2008,20,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde20.html#LianC08a,https://doi.org/10.1109/TKDE.2008.41 +Jia Wu,Multi-Instance Learning with Discriminative Bag Mapping.,2018,30,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde30.html#WuPZZW18,https://doi.org/10.1109/TKDE.2017.2788430 +Ling Feng,Using Fuzzy Linguistic Representations to Provide Explanatory Semantics for Data Warehouses.,2003,15,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde15.html#FengD03,https://doi.org/10.1109/TKDE.2003.1161584 +Yong-Hyuk Kim,Multicampaign Assignment Problem.,2006,18,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde18.html#KimM06,https://doi.org/10.1109/TKDE.2006.49 +Qishi Wu,On Computing Mobile Agent Routes for Data Fusion in Distributed Sensor Networks.,2004,16,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde16.html#WuRBIVQC04,https://doi.org/10.1109/TKDE.2004.12 +Martin Erwig,Explicit Graphs in a Functional Model for Spatial Databases.,1994,6,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde6.html#ErwigG94,https://doi.org/10.1109/69.317707 +Edward Omiecinski,Alternative Interest Measures for Mining Associations in Databases.,2003,15,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde15.html#Omiecinski03,https://doi.org/10.1109/TKDE.2003.1161582 +Xue-Miao Lu,An Algebraic Theory of Object-Oriented Systems.,1994,6,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde6.html#LuD94,https://doi.org/10.1109/69.334861 +Aixin Sun,Blocking Reduction Strategies in Hierarchical Text Classification.,2004,16,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde16.html#SunLNS04,https://doi.org/10.1109/TKDE.2004.50 +Bongki Moon,Efficient Algorithms for Large-Scale Temporal Aggregation.,2003,15,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde15.html#MoonLI03,https://doi.org/10.1109/TKDE.2003.1198403 +Jun Gu,Global Optimization for Satisfiability (SAT) Problem.,1994,6,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde6.html#Gu94,https://doi.org/10.1109/69.334864 +Varun Chandola,Anomaly Detection for Discrete Sequences: A Survey.,2012,24,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde24.html#ChandolaBK12,https://doi.org/10.1109/TKDE.2010.235 +Lingli Li,Rule-Based Method for Entity Resolution.,2015,27,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde27.html#LiLG15,https://doi.org/10.1109/TKDE.2014.2320713 +Rafael C. Carrasco,Simple Strategies to Encode Tree Automata in Sigmoid Recursive Neural Networks.,2001,13,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde13.html#CarrascoF01,https://doi.org/10.1109/69.917555 +Sen Wang,Diagnosis Code Assignment Using Sparsity-Based Disease Correlation Embedding.,2016,28,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde28.html#WangCLLYS16,https://doi.org/10.1109/TKDE.2016.2605687 +Liming Chen 0001,A Knowledge-Driven Approach to Activity Recognition in Smart Homes.,2012,24,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde24.html#ChenNW12,https://doi.org/10.1109/TKDE.2011.51 +Natalia Arzamasova,Cleaning Antipatterns in an SQL Query Log.,2018,30,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde30.html#ArzamasovaSB18,https://doi.org/10.1109/TKDE.2017.2772252 +Fereidoon Sadri,Integrity Constraints in the Information Source Tracking Method.,1995,7,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde7.html#Sadri95,https://doi.org/10.1109/69.368515 +Naresh Kumar Nagwani,"A Comment on ""A Similarity Measure for Text Classification and Clustering"".",2015,27,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde27.html#Nagwani15,https://doi.org/10.1109/TKDE.2015.2451616 +Hanning Yuan,Hierarchical Sampling for Multi-Instance Ensemble Learning.,2013,25,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde25.html#YuanFZ13,https://doi.org/10.1109/TKDE.2012.245 +Emilio Miguelanez,Semantic Knowledge-Based Framework to Improve the Situation Awareness of Autonomous Underwater Vehicles.,2011,23,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde23.html#MiguelanezPBPL11,https://doi.org/10.1109/TKDE.2010.46 +Xiaoyan Liu,Novel Online Methods for Time Series Segmentation.,2008,20,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde20.html#LiuLW08,https://doi.org/10.1109/TKDE.2008.29 +Larry M. Stephens,Principles for Organizing Semantic Relations in Large Knowledge Bases.,1996,8,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde8.html#StephensC96,https://doi.org/10.1109/69.506714 +Bo Geng,Ranking Model Adaptation for Domain-Specific Search.,2012,24,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde24.html#GengYXH12,https://doi.org/10.1109/TKDE.2010.252 +özden Gür-Ali,Induction of Rules Subject to a Quality Constraint: Probabilistic Inductive Learning.,1993,5,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde5.html#Gur-AliW93,https://doi.org/10.1109/69.250081 +Shi-Kuo Chang,A Normalization Framework for Multimedia Databases.,2007,19,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde19.html#ChangDPV07,https://doi.org/10.1109/TKDE.2007.190651 +Francesco Folino,An Evolutionary Multiobjective Approach for Community Discovery in Dynamic Networks.,2014,26,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde26.html#FolinoP14,https://doi.org/10.1109/TKDE.2013.131 +Man Lung Yiu,Reverse Nearest Neighbors in Large Graphs.,2006,18,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde18.html#YiuPMT06,http://doi.ieeecomputersociety.org/10.1109/TKDE.2006.67 +Xindong Wu,TKDE 20(12) (December 2008) EIC Editorial: State of the Transactions.,2008,20,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde20.html#Wu08a,https://doi.org/10.1109/TKDE.2008.219 +Georgios I. Papadimitriou,A New Approach to the Design of Reinforcement Schemes for Learning Automata: Stochastic Estimator Learning Algorithms.,1994,6,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde6.html#Papadimitriou94,https://doi.org/10.1109/69.298183 +Mario A. Nascimento,Indexing Valid Time Databases via B+-Trees.,1999,11,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde11.html#NascimentoD99,https://doi.org/10.1109/69.824609 +Ching-Fung Cheung,Constructing Suffix Tree for Gigabyte Sequences with Megabyte Memory.,2005,17,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde17.html#CheungYL05,https://doi.org/10.1109/TKDE.2005.3 +George Papadakis 0001,A Blocking Framework for Entity Resolution in Highly Heterogeneous Information Spaces.,2013,25,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde25.html#PapadakisIPNN13,https://doi.org/10.1109/TKDE.2012.150 +Xindong Wu,Editorial: TKDE Topic Area Revisions.,2005,17,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde17.html#WuF05,https://doi.org/10.1109/TKDE.2005.94 +Chien-Chih Chen,BibPro: A Citation Parser Based on Sequence Alignment.,2012,24,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde24.html#ChenYCH12,https://doi.org/10.1109/TKDE.2010.231 +A. Prasad Sistla,Temporal Triggers in Active Databases.,1995,7,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde7.html#SistlaW95,https://doi.org/10.1109/69.390251 +Jialei Wang,Cost-Sensitive Online Classification.,2014,26,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde26.html#WangZH14,https://doi.org/10.1109/TKDE.2013.157 +KwangJin Park,Energy Efficient Data Access in Mobile P2P Networks.,2011,23,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde23.html#ParkV11,https://doi.org/10.1109/TKDE.2010.194 +Kang Liu 0001,Co-Extracting Opinion Targets and Opinion Words from Online Reviews Based on the Word Alignment Model.,2015,27,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde27.html#LiuXZ15,https://doi.org/10.1109/TKDE.2014.2339850 +Yongsub Lim,SlashBurn: Graph Compression and Mining beyond Caveman Communities.,2014,26,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde26.html#LimKF14,https://doi.org/10.1109/TKDE.2014.2320716 +Nicola Leone,A Deductive Environment for Dealing with Objects and Nonmonotonic Reasoning.,1997,9,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde9.html#LeoneRMR97,https://doi.org/10.1109/69.617049 +Vijay K. Vaishnavi,A Data/Knowledge Paradigm for the Modeling and Design of Operations Support Systems.,1997,9,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde9.html#VaishnaviBK97,https://doi.org/10.1109/69.591452 +Buyue Qian,A Reconstruction Error Based Framework for Multi-Label and Multi-View Learning.,2015,27,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde27.html#QianWYD15,https://doi.org/10.1109/TKDE.2014.2339860 +Lijun Wang,Low-Rank Kernel Matrix Factorization for Large-Scale Evolutionary Clustering.,2012,24,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde24.html#WangRDD12,https://doi.org/10.1109/TKDE.2010.258 +Shahram Ghandeharizadeh,Continuous Retrieval of Multimedia Data Using Parallelism.,1993,5,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde5.html#GhandeharizadehR93,https://doi.org/10.1109/69.234777 +Pekka Laitila,Improving Construction of Conditional Probability Tables for Ranked Nodes in Bayesian Networks.,2016,28,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde28.html#LaitilaV16,https://doi.org/10.1109/TKDE.2016.2535229 +Ronald R. Yager,Deductive Approximate Reasoning Systems.,1991,3,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde3.html#Yager91,https://doi.org/10.1109/69.109102 +Pawan Goyal,A Context-Based Word Indexing Model for Document Summarization.,2013,25,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde25.html#GoyalBM13,https://doi.org/10.1109/TKDE.2012.114 +Christian A. Lang,Making the Threshold Algorithm Access Cost Aware.,2004,16,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde16.html#LangCS04,https://doi.org/10.1109/TKDE.2004.60 +Yasuaki Nakamura,A Balanced Hierarchical Data Structure for Multidimensional Data with Highly Efficient Dynamic Characteristics.,1993,5,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde5.html#NakamuraAOS93,https://doi.org/10.1109/69.234779 +John Grant,Logic-Based Query Optimization for Object Databases.,2000,12,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde12.html#GrantGMR00,https://doi.org/10.1109/69.868906 +Jingchao Ni,ComClus: A Self-Grouping Framework for Multi-Network Clustering.,2018,30,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde30.html#NiCFZ18,https://doi.org/10.1109/TKDE.2017.2771762 +SzeWang Fong,Detecting Word Substitutions in Text.,2008,20,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde20.html#FongRS08,https://doi.org/10.1109/TKDE.2008.94 +Venkatesh Ganti,DEMON: Mining and Monitoring Evolving Data.,2001,13,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde13.html#GantiGR01,https://doi.org/10.1109/69.908980 +Yujie He,Nonlinear Metric Learning with Kernel Density Estimation.,2015,27,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde27.html#HeMCC15,https://doi.org/10.1109/TKDE.2014.2384522 +Alon Y. Halevy,The Piazza Peer Data Management System.,2004,16,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde16.html#HalevyIMMST04,https://doi.org/10.1109/TKDE.2004.1318562 +Lars-Olof Burchard,Analysis of Data Structures for Admission Control of Advance Reservation Requests.,2005,17,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde17.html#Burchard05,https://doi.org/10.1109/TKDE.2005.40 +Like Gao,Continuous Similarity-Based Queries on Streaming Time Series.,2005,17,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde17.html#GaoW05,https://doi.org/10.1109/TKDE.2005.161 +King-Lup Liu,A Statistical Method for Estimating the Usefulness of Text Databases.,2002,14,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde14.html#LiuYMWR02,https://doi.org/10.1109/TKDE.2002.1047777 +Indrajit Ray,ASEP: A Secure and Flexible Commit Protocol for MLS Distributed Database Systems.,2000,12,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde12.html#RayMJB00,https://doi.org/10.1109/69.895800 +Jiawei Han 0001,Chain-Split Evaluation in Deductive Databases.,1995,7,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde7.html#Han95,https://doi.org/10.1109/69.382296 +Xingsi Xue,Using Memetic Algorithm for Instance Coreference Resolution.,2016,28,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde28.html#XueW16,https://doi.org/10.1109/TKDE.2015.2475755 +Wentao Wu 0001,Semantic Bootstrapping: A Theoretical Perspective.,2017,29,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde29.html#WuLWZ17,https://doi.org/10.1109/TKDE.2016.2619347 +Deng Cai,Manifold Adaptive Experimental Design for Text Categorization.,2012,24,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde24.html#CaiH12,https://doi.org/10.1109/TKDE.2011.104 +Qiang Shen 0001,Fuzzy Orders-of-Magnitude-Based Link Analysis for Qualitative Alias Detection.,2012,24,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde24.html#ShenB12,https://doi.org/10.1109/TKDE.2010.255 +Yang Mu,Bipart: Learning Block Structurefor Activity Detection.,2014,26,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde26.html#MuL0AC14,https://doi.org/10.1109/TKDE.2014.2300480 +Raghu Krishnapuram,Content-Based Image Retrieval Based on a Fuzzy Approach.,2004,16,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde16.html#KrishnapuramMJCB04,https://doi.org/10.1109/TKDE.2004.53 +Charu C. Aggarwal,Finding Localized Associations in Market Basket Data.,2002,14,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde14.html#AggarwalPY02,https://doi.org/10.1109/69.979972 +Daniel D. Corkill,Embedable Problem-Solving Architectures: A Study of Integrating OPS5 with UMass GBB.,1991,3,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde3.html#Corkill91,https://doi.org/10.1109/69.75884 +Vladimir Grupcev,Approximate Algorithms for Computing Spatial Distance Histograms with Accuracy Guarantees.,2013,25,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde25.html#GrupcevYTHCPW13,https://doi.org/10.1109/TKDE.2012.149 +Partha S. Bishnu,Software Fault Prediction Using Quad Tree-Based K-Means Clustering Algorithm.,2012,24,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde24.html#BishnuB12,https://doi.org/10.1109/TKDE.2011.163 +Wei Cheng,Searching Dimension Incomplete Databases.,2014,26,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde26.html#ChengJSLZW14,https://doi.org/10.1109/TKDE.2013.14 +Chung-Hsien Yu,Hierarchical Spatio-Temporal Pattern Discovery and Predictive Modeling.,2016,28,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde28.html#Yu0MC16,https://doi.org/10.1109/TKDE.2015.2507570 +Linhong Zhu,Scalable Temporal Latent Space Inference for Link Prediction in Dynamic Social Networks.,2016,28,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde28.html#ZhuGYSG16,https://doi.org/10.1109/TKDE.2016.2591009 +John F. Roddick,A Survey of Temporal Knowledge Discovery Paradigms and Methods.,2002,14,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde14.html#RoddickS02,https://doi.org/10.1109/TKDE.2002.1019212 +Divyakant Agrawal,Storage Efficient Replicated Databases.,1990,2,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde2.html#AgrawalA90,https://doi.org/10.1109/69.60797 +Liangxiao Jiang,A Novel Bayes Model: Hidden Naive Bayes.,2009,21,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde21.html#JiangZC09,https://doi.org/10.1109/TKDE.2008.234 +Takahiro Hara,Database Migration: A New Architecture for Transaction Processing in Broadband Networks.,1998,10,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde10.html#HaraHTN98,https://doi.org/10.1109/69.729745 +Khurram Shehzad,Simple Hybrid and Incremental Postpruning Techniques for Rule Induction.,2013,25,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde25.html#Shehzad13,https://doi.org/10.1109/TKDE.2011.237 +Sushil Jajodia,A Hybrid Replica Control Algorithm Combining Static and Dynamic Voting.,1989,1,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde1.html#JajodiaM89,https://doi.org/10.1109/69.43421 +Jayanta Basak,Interpretable Hierarchical Clustering by Constructing an Unsupervised Decision Tree.,2005,17,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde17.html#BasakK05,https://doi.org/10.1109/TKDE.2005.11 +Jordi Soria-Comas,t-Closeness through Microaggregation: Strict Privacy with Enhanced Utility Preservation.,2015,27,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde27.html#Soria-ComasDSM15,https://doi.org/10.1109/TKDE.2015.2435777 +Qing Li 0001,Conceptual Database Evolution Through Learning in Object Databases.,1994,6,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde6.html#LiM94,https://doi.org/10.1109/69.277766 +Gang Wu,KBA: Kernel Boundary Alignment Considering Imbalanced Data Distribution.,2005,17,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde17.html#WuC05,https://doi.org/10.1109/TKDE.2005.95 +Jieping Ye,Feature Reduction via Generalized Uncorrelated Linear Discriminant Analysis.,2006,18,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde18.html#YeJLP06,https://doi.org/10.1109/TKDE.2006.160 +Can Lu,Exploring Triangle-Free Dense Structures.,2018,30,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde30.html#LuYW18,https://doi.org/10.1109/TKDE.2017.2764468 +Alina Bialkowski,Discovering Team Structures in Soccer from Spatiotemporal Data.,2016,28,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde28.html#BialkowskiL0MSF16,https://doi.org/10.1109/TKDE.2016.2581158 +Minghua He,A Fuzzy-Logic Based Bidding Strategy for Autonomous Agents in Continuous Double Auctions.,2003,15,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde15.html#HeLJ03,https://doi.org/10.1109/TKDE.2003.1245277 +Bin He,Efficient Iceberg Query Evaluation Using Compressed Bitmap Index.,2012,24,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde24.html#HeHLHC12,https://doi.org/10.1109/TKDE.2011.73 +Mohamed Nabeel,Privacy Preserving Policy-Based Content Sharing in Public Clouds.,2013,25,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde25.html#NabeelSB13,https://doi.org/10.1109/TKDE.2012.180 +Yi Deng,An Approach for Modeling and Analysis of Security System Architectures.,2003,15,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde15.html#DengWTB03,https://doi.org/10.1109/TKDE.2003.1232267 +Elisa Bertino,Temporal Synchronization Models for Multimedia Data.,1998,10,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde10.html#BertinoF98,https://doi.org/10.1109/69.706060 +Yang Wang 0007,From Association to Classification: Inference Using Weight of Evidence.,2003,15,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde15.html#WangW03,https://doi.org/10.1109/TKDE.2003.1198405 +Xu Yang,Semantic Access to Multichannel M-Services.,2009,21,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde21.html#YangB09,https://doi.org/10.1109/TKDE.2008.157 +Bo Tang 0011,A Bayesian Classification Approach Using Class-Specific Features for Text Categorization.,2016,28,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde28.html#TangHBK16,https://doi.org/10.1109/TKDE.2016.2522427 +Jiawei Han 0001,Constraint-Based Query Evaluation in Deductive Databases.,1994,6,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde6.html#Han94,https://doi.org/10.1109/69.273030 +William E. Spangler,The Role of Artificial Intelligence in Understanding the Strategic Decision-Making Process.,1991,3,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde3.html#Spangler91,https://doi.org/10.1109/69.87995 +Patrizia Bonaventura,A Hybrid Model for the Prediction of the Linguistic Origin of Surnames.,2003,15,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde15.html#BonaventuraGMSS03,https://doi.org/10.1109/TKDE.2003.1198404 +Weili Wu,Localized Outlying and Boundary Data Detection in Sensor Networks.,2007,19,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde19.html#WuCDXLD07,https://doi.org/10.1109/TKDE.2007.1067 +Linda G. DeMichiel,Resolving Database Incompatibility: An Approach to Performing Relational Operations over Mismatched Domains.,1989,1,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde1.html#DeMichiel89,https://doi.org/10.1109/69.43423 +Divyakant Agrawal,Using Reconfiguration for Efficient Management of Replicated Data.,1996,8,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde8.html#AgrawalA96,https://doi.org/10.1109/69.542030 +Jiliang Tang,Trust Evolution: Modeling and Its Applications.,2015,27,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde27.html#TangGSBL15,https://doi.org/10.1109/TKDE.2014.2382576 +Roy L. Russo,A Foreword to Knowledge and Data Engineering.,1989,1,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde1.html#Russo89,http://doi.ieeecomputersociety.org/10.1109/TKDE.1989.10002 +John Jeffrey,A High-Level Petri Net for Goal-Directed Semantics of Horn Clause Logic.,1996,8,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde8.html#JeffreyLM96,https://doi.org/10.1109/69.494164 +Junming Shao,Synchronization-Inspired Partitioning and Hierarchical Clustering.,2013,25,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde25.html#ShaoHBYP13,https://doi.org/10.1109/TKDE.2012.32 +Graham Cormode,Comparing Data Streams Using Hamming Norms (How to Zero In).,2003,15,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde15.html#CormodeDIM03,https://doi.org/10.1109/TKDE.2003.1198388 +Benjamin W. Wah,Population-Based Learning: A Method for Learning from Examples Under Resource Constraints.,1992,4,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde4.html#Wah92,https://doi.org/10.1109/69.166988 +Costas Panagiotakis,Successive Group Selection for Microaggregation.,2013,25,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde25.html#PanagiotakisT13,https://doi.org/10.1109/TKDE.2011.242 +Vitaliy L. Khizder,Reasoning about Uniqueness Constraints in Object Relational Databases.,2003,15,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde15.html#KhizderW03,https://doi.org/10.1109/TKDE.2003.1232279 +Haifeng Chen,Experience Transfer for the Configuration Tuning in Large-Scale Computing Systems.,2011,23,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde23.html#ChenZJ11,https://doi.org/10.1109/TKDE.2010.121 +Ling Hu,Spatial Query Integrity with Voronoi Neighbors.,2013,25,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde25.html#HuKBS13,https://doi.org/10.1109/TKDE.2011.267 +Alberto Bartoli,"Correction to ""Inference of Regular Expressions for Text Extraction from Examples"".",2016,28,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde28.html#BartoliLMT16a,https://doi.org/10.1109/TKDE.2016.2557978 +Mark A. Hall,Benchmarking Attribute Selection Techniques for Discrete Class Data Mining.,2003,15,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde15.html#HallH03,https://doi.org/10.1109/TKDE.2003.1245283 +Dongwon Kim,Computing Exact Skyline Probabilities for Uncertain Databases.,2012,24,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde24.html#KimIP12,https://doi.org/10.1109/TKDE.2011.164 +Elaheh Pourabbas,The Composite Data Model: A Unified Approach for Combining and Querying Multiple Data Models.,2015,27,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde27.html#PourabbasS15,https://doi.org/10.1109/TKDE.2014.2365815 +Chenyun Yu,A Generic Method for Accelerating LSH-Based Similarity Join Processing.,2017,29,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde29.html#YuNLWY17,https://doi.org/10.1109/TKDE.2016.2638838 +Ming-Syan Chen,Optimization of Parallel Execution for Multi-Join Queries.,1996,8,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde8.html#ChenYW96,https://doi.org/10.1109/69.506709 +Peiwei Mi,A Knowledge-Based Environment for Modeling and Simulating Software Engineering Processes.,1990,2,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde2.html#MiS90,https://doi.org/10.1109/69.60792 +Georgios John Fakas,Versatile Size-$l$ Object Summariesfor Relational Keyword Search.,2014,26,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde26.html#FakasCM14,https://doi.org/10.1109/TKDE.2013.110 +Yafei Li,Geo-Social K-Cover Group Queries for Collaborative Spatial Computing.,2015,27,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde27.html#LiCXHHC15,https://doi.org/10.1109/TKDE.2015.2419663 +Nicholas Jing Yuan,Discovering Urban Functional ZonesUsing Latent Activity Trajectories.,2015,27,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde27.html#YuanZXWZX15,https://doi.org/10.1109/TKDE.2014.2345405 +Alessandro Artale,Describing Database Objects in a Concept Language Environment.,1996,8,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde8.html#ArtaleCS96,https://doi.org/10.1109/69.494172 +Hai Zhuge,Communities and Emerging Semantics in Semantic Link Network: Discovery and Learning.,2009,21,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde21.html#Zhuge09,https://doi.org/10.1109/TKDE.2008.141 +Eliseo Clementini,Topological Invariants for Lines.,1998,10,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde10.html#ClementiniF98,https://doi.org/10.1109/69.667085 +Olga Gkountouna,Anonymizing Collections of Tree-Structured Data.,2015,27,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde27.html#GkountounaT15,https://doi.org/10.1109/TKDE.2015.2405563 +Qinpei Zhao,Centroid Ratio for a Pairwise Random Swap Clustering Algorithm.,2014,26,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde26.html#ZhaoF14,https://doi.org/10.1109/TKDE.2013.113 +Padraig Cunningham,A Taxonomy of Similarity Mechanisms for Case-Based Reasoning.,2009,21,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde21.html#Cunningham09,https://doi.org/10.1109/TKDE.2008.227 +Paula Brito,Order Structure of Symbolic Assertion Objects.,1994,6,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde6.html#Brito94,https://doi.org/10.1109/69.317710 +Xu Sun,Latent Structured Perceptrons for Large-Scale Learning with Hidden Information.,2013,25,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde25.html#SunML13,https://doi.org/10.1109/TKDE.2012.129 +Alistair Moffat,Computing Maximized Effectiveness Distance for Recall-Based Metrics.,2018,30,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde30.html#Moffat18,https://doi.org/10.1109/TKDE.2017.2754371 +S. J. Noronha,Knowledge-Based Approaches to Scheduling Problems: A Survey.,1991,3,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde3.html#NoronhaS91,https://doi.org/10.1109/69.87996 +Jaideep Srivastava,TBSAM: An Access Method for Efficient Processing of Statistical Queries.,1989,1,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde1.html#SrivastavaTL89,https://doi.org/10.1109/69.43417 +Zhen Guo,A Two-Level Topic Model Towards Knowledge Discovery from Citation Networks.,2014,26,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde26.html#GuoZZCG14,https://doi.org/10.1109/TKDE.2013.56 +Xiaoxiao Shi,Transfer across Completely Different Feature Spaces via Spectral Embedding.,2013,25,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde25.html#ShiLFY13,https://doi.org/10.1109/TKDE.2011.252 +Hao-Ping Hung,MULS: A General Framework of Providing Multilevel Service Quality in Sequential Data Broadcasting.,2007,19,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde19.html#HungC07,https://doi.org/10.1109/TKDE.2007.1072 +Shenghua Bao,Mining Social Emotions from Affective Text.,2012,24,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde24.html#BaoXZYSHY12,https://doi.org/10.1109/TKDE.2011.188 +Jiliang Tang,An Unsupervised Feature Selection Framework for Social Media Data.,2014,26,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde26.html#TangL14,https://doi.org/10.1109/TKDE.2014.2320728 +Abraham Silberschatz,What Makes Patterns Interesting in Knowledge Discovery Systems.,1996,8,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde8.html#SilberschatzT96,https://doi.org/10.1109/69.553165 +Srinivasan Parthasarathy 0001,On the Use of Conceptual Reconstruction for Mining Massively Incomplete Data Sets.,2003,15,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde15.html#ParthasarathyA03,https://doi.org/10.1109/TKDE.2003.1245289 +Paul C. Smits,Resource Discovery in a European Spatial Data Infrastructure.,2007,19,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde19.html#SmitsF07,https://doi.org/10.1109/TKDE.2007.250587 +Elisa Bertino,Trigger Inheritance and Overriding in an Active Object Database System.,2000,12,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde12.html#BertinoGM00,https://doi.org/10.1109/69.868909 +Man Lung Yiu,Aggregate Nearest Neighbor Queries in Road Networks.,2005,17,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde17.html#YiuMP05,https://doi.org/10.1109/TKDE.2005.87 +Claudio Sartori 0001,Partial Indexing for Nonuniform Data Distributions in relational DBMS's.,1994,6,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde6.html#SartoriS94,https://doi.org/10.1109/69.334860 +Yu-Hang Zhou,Large Margin Distribution Learning with Cost Interval and Unlabeled Data.,2016,28,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde28.html#ZhouZ16,https://doi.org/10.1109/TKDE.2016.2535283 +Sebastian García Galán,Swarm Fuzzy Systems: Knowledge Acquisition in Fuzzy Systems and Its Applications in Grid Computing.,2014,26,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde26.html#GalanPE14,https://doi.org/10.1109/TKDE.2013.118 +Marc Solé,Region-Based Foldings in Process Discovery.,2013,25,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde25.html#SoleC13,https://doi.org/10.1109/TKDE.2011.192 +Oana Frunza,A Machine Learning Approach for Identifying Disease-Treatment Relations in Short Texts.,2011,23,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde23.html#FrunzaIT11,https://doi.org/10.1109/TKDE.2010.152 +Huiping Liu,Finding Top-k Shortest Paths with Diversity.,2018,30,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde30.html#LiuJYZ18,https://doi.org/10.1109/TKDE.2017.2773492 +Huan Liu 0001,Feature Selection via Discretization.,1997,9,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde9.html#LiuS97,https://doi.org/10.1109/69.617056 +Robert J. K. Jacob,A Software Engineering Methodology for Rule-Based Systems.,1990,2,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde2.html#JacobF90,https://doi.org/10.1109/69.54718 +Yanhua Chen,Non-Negative Matrix Factorization for Semisupervised Heterogeneous Data Coclustering.,2010,22,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde22.html#ChenWD10,https://doi.org/10.1109/TKDE.2009.169 +Joel L. Wolf,Scheduling Algorithms for the Broadcast Delivery of Digital Products.,2001,13,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde13.html#WolfSTYS01,https://doi.org/10.1109/69.956097 +Jinyoung Yeo,Multimodal KB Harvesting for Emerging Spatial Entities.,2017,29,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde29.html#YeoCPH17,https://doi.org/10.1109/TKDE.2017.2651805 +Murat Kantarcioglu,Incentive Compatible Privacy-Preserving Data Analysis.,2013,25,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde25.html#KantarciogluJ13,https://doi.org/10.1109/TKDE.2012.61 +Pauli Miettinen,The Discrete Basis Problem.,2008,20,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde20.html#MiettinenMGDM08,https://doi.org/10.1109/TKDE.2008.53 +Hai Zhuge,A Virtual Ring Method for Building Small-World Structured P2P Overlays.,2008,20,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde20.html#ZhugeS08,https://doi.org/10.1109/TKDE.2008.102 +Jun-Tae Kim,Acquisition of Linguistic Patterns for Knowledge-Based Information Extraction.,1995,7,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde7.html#KimM95,https://doi.org/10.1109/69.469825 +Kenneth Salem,System M: A Transaction Processing Testbed for Memory Resident Data.,1990,2,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde2.html#SalemG90,https://doi.org/10.1109/69.50911 +Jayanta K. Dutta,RODS: Rarity based Outlier Detection in a Sparse Coding Framework.,2016,28,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde28.html#DuttaBR16,https://doi.org/10.1109/TKDE.2015.2475748 +Huanhuan Chen,Multiobjective Neural Network Ensembles Based on Regularized Negative Correlation Learning.,2010,22,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde22.html#ChenY10,https://doi.org/10.1109/TKDE.2010.26 +Zhian He,Answering Why-Not Questions on Top-K Queries.,2014,26,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde26.html#HeL14,https://doi.org/10.1109/TKDE.2012.158 +Alexander Thomasian,Distributed Optimistic Concurrency Control Methods for High-Performance Transaction Processing.,1998,10,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde10.html#Thomasian98,https://doi.org/10.1109/69.667102 +Cornelia E. Dowling,Automata for the Assessment of Knowledge.,2001,13,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde13.html#DowlingH01,https://doi.org/10.1109/69.929902 +Ahmed Abbasi,Selecting Attributes for Sentiment Classification Using Feature Relation Networks.,2011,23,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde23.html#AbbasiFZC11,https://doi.org/10.1109/TKDE.2010.110 +Siyuan Zhang,Effective and Efficient: Large-Scale Dynamic City Express.,2016,28,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde28.html#ZhangQZC16,https://doi.org/10.1109/TKDE.2016.2604806 +Yaliang Li,Conflicts to Harmony: A Framework for Resolving Conflicts in Heterogeneous Data by Truth Discovery.,2016,28,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde28.html#LiLGSZFH16,https://doi.org/10.1109/TKDE.2016.2559481 +Radu Sion,Rights Protection for Discrete Numeric Streams.,2006,18,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde18.html#SionAP06,https://doi.org/10.1109/TKDE.2006.82 +Khamisi Kalegele,Four Decades of Data Mining in Network and Systems Management.,2015,27,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde27.html#KalegeleSTKK15,https://doi.org/10.1109/TKDE.2015.2426713 +Heng Tao Shen,Effective and Efficient Query Processing for Video Subsequence Identification.,2009,21,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde21.html#ShenSHZ09,https://doi.org/10.1109/TKDE.2008.168 +Arie Segev,Updating Distributed Materialized Views.,1989,1,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde1.html#SegevP89,https://doi.org/10.1109/69.87958 +Pradipta Maji,Feature Selection Using f-Information Measures in Fuzzy Approximation Spaces.,2010,22,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde22.html#MajiP10,https://doi.org/10.1109/TKDE.2009.124 +Myungsun Kim,Private Over-Threshold Aggregation Protocols over Distributed Datasets.,2016,28,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde28.html#KimMCK16,https://doi.org/10.1109/TKDE.2016.2572686 +Luca Anselma,Valid-Time Indeterminacy in Temporal Relational Databases: Semantics and Representations.,2013,25,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde25.html#AnselmaTS13,https://doi.org/10.1109/TKDE.2012.199 +Yinghui Yang,GHIC: A Hierarchical Pattern-Based Clustering Algorithm for Grouping Web Transactions.,2005,17,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde17.html#YangP05,https://doi.org/10.1109/TKDE.2005.145 +Foto N. Afrati,Optimizing Multiway Joins in a Map-Reduce Environment.,2011,23,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde23.html#AfratiU11,https://doi.org/10.1109/TKDE.2011.47 +Marek J. Druzdzel,"Building Probabilistic Networks: ""Where Do the Numbers Come From?"" Guest Editors Introduction.",2000,12,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde12.html#DruzdelG00,https://doi.org/10.1109/TKDE.2000.868901 +Sang Wan Lee,A Nonsupervised Learning Framework of Human Behavior Patterns Based on Sequential Actions.,2010,22,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde22.html#LeeKB10,https://doi.org/10.1109/TKDE.2009.123 +Liangyue Li,Enhancing Team Composition in Professional Networks: Problem Definitions and Fast Solutions.,2017,29,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde29.html#LiTCELB17,https://doi.org/10.1109/TKDE.2016.2633464 +Raymond Chi-Wing Wong,Online Skyline Analysis with Dynamic Preferences on Nominal Attributes.,2009,21,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde21.html#WongPFW09,https://doi.org/10.1109/TKDE.2008.115 +Anne P. Massey,Focus Groups as a Knowledge Elicitation Technique: An Exploratory Survey.,1991,3,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde3.html#MasseyW91,https://doi.org/10.1109/69.87999 +John Yen,CLASP: Integrating Term Subsumption Systems and Production Systems.,1991,3,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde3.html#YenNM91,https://doi.org/10.1109/69.75885 +Barnan Das,RACOG and wRACOG: Two Probabilistic Oversampling Techniques.,2015,27,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde27.html#DasKC15,https://doi.org/10.1109/TKDE.2014.2324567 +Ron Sun,Structuring Knowledge In Vague Domains.,1995,7,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde7.html#Sun95,https://doi.org/10.1109/69.368514 +Hassan A. Sleiman,Trinity: On Using Trinary Trees for Unsupervised Web Data Extraction.,2014,26,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde26.html#SleimanC14,https://doi.org/10.1109/TKDE.2013.161 +Jiawei Han 0001,Join Index Hierarchy: An Indexing Structure for Efficient Navigation in Object-Oriented Databases.,1999,11,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde11.html#HanXF99,https://doi.org/10.1109/69.761666 +Hongjun Lu,On Sort-Merge Algorithm for Band Joins.,1995,7,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde7.html#LuT95,https://doi.org/10.1109/69.390255 +Hui Wang 0001,A Study of the Neighborhood Counting Similarity.,2008,20,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde20.html#WangM08,https://doi.org/10.1109/TKDE.2007.190721 +Yonghong Tian 0001,Learning Contextual Dependency Network Models for Link-Based Classification.,2006,18,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde18.html#TianYHLG06,https://doi.org/10.1109/TKDE.2006.178 +Jing Liu 0001,Domain-Sensitive Recommendation with User-Item Subgroup Analysis.,2016,28,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde28.html#LiuJLZL16,https://doi.org/10.1109/TKDE.2015.2492540 +Michel Benaroch,Goal-Directed Reasoning with ACE-SSM.,1998,10,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde10.html#Benaroch98,https://doi.org/10.1109/69.729726 +Cheng Chen,Conflict-Aware Weighted Bipartite B-Matching and Its Application to E-Commerce.,2016,28,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde28.html#ChenZSTWS16,https://doi.org/10.1109/TKDE.2016.2527003 +Varun Mithal,RAPT: Rare Class Prediction in Absence of True Labels.,2017,29,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde29.html#MithalNKKON17,https://doi.org/10.1109/TKDE.2017.2739739 +Xiaojun Chen 0006,PurTreeClust: A Clustering Algorithm for Customer Segmentation from Massive Customer Transaction Data.,2018,30,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde30.html#ChenFYNZH18,https://doi.org/10.1109/TKDE.2017.2763620 +Arif Hidayat,Reverse Approximate Nearest Neighbor Queries.,2018,30,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde30.html#HidayatYCT18,https://doi.org/10.1109/TKDE.2017.2766065 +Claus Pahl,Interactive Correction and Recommendation for Computer Language Learning and Training.,2009,21,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde21.html#PahlK09,https://doi.org/10.1109/TKDE.2008.144 +Chuan Zhou,On the Upper Bounds of Spread for Greedy Algorithms in Social Network Influence Maximization.,2015,27,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde27.html#ZhouZZG15,https://doi.org/10.1109/TKDE.2015.2419659 +Thierry Denoeux,Maximum Likelihood Estimation from Uncertain Data in the Belief Function Framework.,2013,25,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde25.html#Denoeux13,https://doi.org/10.1109/TKDE.2011.201 +Song Bong Yoo,Evaluation and Optimization of Query Programs in an Object-Oriented and Symbolic Information System.,1993,5,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde5.html#YooS93,https://doi.org/10.1109/69.224199 +Guangzhi Qu,A New Dependency and Correlation Analysis for Features.,2005,17,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde17.html#QuHY05,https://doi.org/10.1109/TKDE.2005.136 +Sourav S. Bhowmick,Clustering and Summarizing Protein-Protein Interaction Networks: A Survey.,2016,28,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde28.html#BhowmickS16,https://doi.org/10.1109/TKDE.2015.2492559 +Dong Li,Modeling Information Diffusion over Social Networks for Temporal Dynamic Prediction.,2017,29,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde29.html#LiZSZLL17,https://doi.org/10.1109/TKDE.2017.2702162 +Piero Montanari,Pattern Similarity Search in Genomic Sequences.,2016,28,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde28.html#MontanariBCPCM16,https://doi.org/10.1109/TKDE.2016.2595582 +C. A. Murthy,Bridging Feature Selection and Extraction: Compound Feature Generation.,2017,29,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde29.html#Murthy17,https://doi.org/10.1109/TKDE.2016.2619712 +Veda C. Storey,Comparing Relationships in Conceptual Modeling: Mapping to Semantic Classifications.,2005,17,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde17.html#Storey05,https://doi.org/10.1109/TKDE.2005.175 +Konstantinos Raftopoulos,Mining User Queries with Markov Chains: Application to Online Image Retrieval.,2013,25,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde25.html#RaftopoulosNSK13,https://doi.org/10.1109/TKDE.2011.219 +Valeria Fionda,Community Deception or: How to Stop Fearing Community Detection Algorithms.,2018,30,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde30.html#FiondaP18,https://doi.org/10.1109/TKDE.2017.2776133 +Dominik Fisch,SwiftRule: Mining Comprehensible Classification Rules for Time Series Analysis.,2011,23,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde23.html#FischGS11,https://doi.org/10.1109/TKDE.2010.161 +Mankuan Michael Vai,Representing Knowledge by Neural Networks for Qualitative Analysis and Reasoning.,1995,7,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde7.html#VaiX95,https://doi.org/10.1109/69.469828 +Yue-Ming Huan,An Efficient Inductive Learning Method for Object-Oriented Database Using Attribute Entropy.,1996,8,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde8.html#HuanL96,https://doi.org/10.1109/69.553161 +Isvani Inocencio Frías Blanco,Online and Non-Parametric Drift Detection Methods Based on Hoeffding's Bounds.,2015,27,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde27.html#BlancoCRBDM15,https://doi.org/10.1109/TKDE.2014.2345382 +Chen Xu 0001,On Fault Tolerance for Distributed Iterative Dataflow Processing.,2017,29,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde29.html#XuHKSM17,https://doi.org/10.1109/TKDE.2017.2690431 +Jiaying Wang,LS-Join: Local Similarity Join on String Collections.,2017,29,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde29.html#WangYWL17,https://doi.org/10.1109/TKDE.2017.2687460 +Satoshi Oyama,Domain-Specific Web Search with Keyword Spices.,2004,16,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde16.html#OyamaKI04,https://doi.org/10.1109/TKDE.2004.1264819 +John Riedl,SuiteSound: A System for Distributed Collaborative Multimedia.,1993,5,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde5.html#RiedlMSCF93,https://doi.org/10.1109/69.234772 +Yu Sun,Online Ensemble Learning of Data Streams with Gradually Evolved Classes.,2016,28,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde28.html#SunTMWY16,https://doi.org/10.1109/TKDE.2016.2526675 +Raymond A. Paul,Software Metrics Knowledge and Databases for Project Management.,1999,11,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde11.html#PaulKSK99,https://doi.org/10.1109/69.755633 +Pradeep Mohan,Cascading Spatio-Temporal Pattern Discovery.,2012,24,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde24.html#MohanSSR12,https://doi.org/10.1109/TKDE.2011.146 +Feifei Li 0001,Spatial Approximate String Search.,2013,25,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde25.html#Li0TH13,https://doi.org/10.1109/TKDE.2012.48 +Subrata Mazumdar,Objective-Driven Monitoring for Broadband Networks.,1996,8,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde8.html#MazumdarL96,https://doi.org/10.1109/69.506707 +Albert Mo Kim Cheng,Self-Stabilizing Real-Time OPS5 Production Systems.,2004,16,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde16.html#ChengF04,https://doi.org/10.1109/TKDE.2004.95 +Ramakrishnan Kannan,MPI-FAUN: An MPI-Based Framework for Alternating-Updating Nonnegative Matrix Factorization.,2018,30,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde30.html#KannanBP18,https://doi.org/10.1109/TKDE.2017.2767592 +Pierangela Samarati,An Authorization Model for a Distributed Hypertext System.,1996,8,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde8.html#SamaratiBJ96,https://doi.org/10.1109/69.536249 +Qiang Qu,Efficient Online Summarization of Large-Scale Dynamic Networks.,2016,28,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde28.html#QuLZJ16,https://doi.org/10.1109/TKDE.2016.2601611 +Amey Desai,Improved Practical Matrix Sketching with Guarantees.,2016,28,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde28.html#DesaiGP16,https://doi.org/10.1109/TKDE.2016.2539943 +Guohong Cao,A Scalable Low-Latency Cache Invalidation Strategy for Mobile.,2003,15,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde15.html#Cao03,https://doi.org/10.1109/TKDE.2003.1232276 +Eliezer Levy,Incremental Recovery in Main Memory Database Systems.,1992,4,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde4.html#LevyS92,https://doi.org/10.1109/69.180604 +Mahmudur Rahman,Graft: An Efficient Graphlet Counting Method for Large Graph Analysis.,2014,26,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde26.html#RahmanBH14,https://doi.org/10.1109/TKDE.2013.2297929 +Sen Hu,Answering Natural Language Questions by Subgraph Matching over Knowledge Graphs.,2018,30,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde30.html#Hu0YWZ18,https://doi.org/10.1109/TKDE.2017.2766634 +Parke Godfrey,Interactive Visualization of Large Data Sets.,2016,28,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde28.html#GodfreyGL16,https://doi.org/10.1109/TKDE.2016.2557324 +Eileen Tien Lin,Large Join Optimization on a Hypercube Multiprocessor.,1994,6,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde6.html#LinOY94,https://doi.org/10.1109/69.277773 +Taieb Znati,A Network Level Channel Abstraction for Multimedia Communication in Real-Time Networks.,1993,5,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde5.html#ZnatiF93,https://doi.org/10.1109/69.234771 +Marouane Hachicha,A Survey of XML Tree Patterns.,2013,25,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde25.html#HachichaD13,https://doi.org/10.1109/TKDE.2011.209 +Jan Chomicki,Variable Independence in Constraint Databases.,2003,15,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde15.html#ChomickiGKT03,https://doi.org/10.1109/TKDE.2003.1245282 +Giorgios Kollias,Surfing the Network for Ranking by Multidamping.,2014,26,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde26.html#KolliasGG14,https://doi.org/10.1109/TKDE.2013.15 +Costas Panagiotakis,Segmentation and Sampling of Moving Object Trajectories Based on Representativeness.,2012,24,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde24.html#PanagiotakisPKRT12,https://doi.org/10.1109/TKDE.2011.39 +Damir Vandic,Dynamic Facet Ordering for Faceted Product Search Engines.,2017,29,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde29.html#VandicAFK17,https://doi.org/10.1109/TKDE.2017.2652461 +Anindya Datta,Parallel Star Join + DataIndexes: Efficient Query Processing in Data Warehouses and OLAP.,2002,14,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde14.html#DattaVR02,https://doi.org/10.1109/TKDE.2002.1047769 +Guillaume Bagan,gMark: Schema-Driven Generation of Graphs and Queries.,2017,29,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde29.html#BaganBCFLA17,https://doi.org/10.1109/TKDE.2016.2633993 +Yu Ting Wen,Efficient Keyword-Aware Representative Travel Route Recommendation.,2017,29,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde29.html#WenYPH17,https://doi.org/10.1109/TKDE.2017.2690421 +Xiao-Bai Li,A Tree-Based Data Perturbation Approach for Privacy-Preserving Data Mining.,2006,18,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde18.html#LiS06,https://doi.org/10.1109/TKDE.2006.136 +Bongki Moon,Scalability Analysis of Declustering Methods for Multidimensional Range Queries.,1998,10,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde10.html#MoonS98,https://doi.org/10.1109/69.683759 +Melanie Herschel,Scalable Iterative Graph Duplicate Detection.,2012,24,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde24.html#HerschelNST12,https://doi.org/10.1109/TKDE.2011.99 +Dingming Wu 0001,Authentication of Moving Top-k Spatial Keyword Queries.,2015,27,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde27.html#WuCXJ15,https://doi.org/10.1109/TKDE.2014.2350252 +David Hung-Chang Du,An Efficient File Structure for Document Retrieval in the Automated Office Environment.,1989,1,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde1.html#DuGMS89,https://doi.org/10.1109/69.87965 +Sakti Pramanik,The NUMA with Clusters of Processors for Parallel Join.,1997,9,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde9.html#PramanikT97,https://doi.org/10.1109/69.617058 +Xin Lin,Human-Powered Data Cleaning for Probabilistic Reachability Queries on Uncertain Graphs.,2017,29,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde29.html#LinPCX17,https://doi.org/10.1109/TKDE.2017.2684166 +Suh-Yin Lee,A Multi-Granularity Locking Model for Concurrency Control in Object-Oriented Database Systems.,1996,8,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde8.html#LeeL96,https://doi.org/10.1109/69.485643 +Ana Granados,Discovering Data Set Nature through Algorithmic Clustering Based on String Compression.,2015,27,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde27.html#GranadosKO15,https://doi.org/10.1109/TKDE.2014.2345396 +Ming-Syan Chen,On Coupling Multiple Systems With A Global Buffer.,1996,8,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde8.html#ChenYY96,https://doi.org/10.1109/69.494171 +Matthias Wiesmann,Comparison of Database Replication Techniques Based on Total Order Broadcast.,2005,17,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde17.html#WiesmannS05,https://doi.org/10.1109/TKDE.2005.54 +Xingquan Zhu,Cost-Constrained Data Acquisition for Intelligent Data Preparation.,2005,17,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde17.html#ZhuW05,https://doi.org/10.1109/TKDE.2005.176 +Ben Kao,Clustering Uncertain Data Using Voronoi Diagrams and R-Tree Index.,2010,22,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde22.html#KaoLLCH10,https://doi.org/10.1109/TKDE.2010.82 +Jingtian Jiang,FoCUS: Learning to Crawl Web Forums.,2013,25,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde25.html#JiangSYL13,https://doi.org/10.1109/TKDE.2012.56 +Gabriel Pui Cheong Fung,Text Classification without Negative Examples Revisit.,2006,18,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde18.html#FungYLY06,https://doi.org/10.1109/TKDE.2006.16 +Nizar Bouguila,Clustering of Count Data Using Generalized Dirichlet Multinomial Distributions.,2008,20,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde20.html#Bouguila08,https://doi.org/10.1109/TKDE.2007.190726 +Daxin Jiang,Cluster Analysis for Gene Expression Data: A Survey.,2004,16,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde16.html#JiangTZ04,https://doi.org/10.1109/TKDE.2004.68 +Vasant Dhar,Abstract-Driven Pattern Discovery in Databases.,1993,5,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde5.html#DharT93,https://doi.org/10.1109/69.250075 +Roshan K. Thomas,A Trusted Subject Architecture for Multilevel Secure Object-Oriented Databases.,1996,8,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde8.html#ThomasS96,https://doi.org/10.1109/69.485626 +Alexander Thomasian,A Performance Comparison of Locking Methods with Limited Wait Depth.,1997,9,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde9.html#Thomasian97,https://doi.org/10.1109/69.599931 +Arie Segev,A Framework for Join Pattern Indexing in Intelligent Database Systems.,1995,7,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde7.html#SegevZ95,https://doi.org/10.1109/69.476499 +Wen-Hui Yang,Finding Correlated Biclusters from Gene Expression Data.,2011,23,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde23.html#YangDY11,https://doi.org/10.1109/TKDE.2010.150 +Charu C. Aggarwal,On Using Partial Supervision for Text Categorization.,2004,16,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde16.html#AggarwalGY04,https://doi.org/10.1109/TKDE.2004.1269601 +Wei Bi,Bayes-Optimal Hierarchical Multilabel Classification.,2015,27,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde27.html#BiK15,https://doi.org/10.1109/TKDE.2015.2441707 +Yangjun Chen,On the Signature Tree Construction and Analysis.,2006,18,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde18.html#ChenC06,https://doi.org/10.1109/TKDE.2006.146 +Shasha Li,Comparable Entity Mining from Comparative Questions.,2013,25,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde25.html#LiLSL13,https://doi.org/10.1109/TKDE.2011.210 +Xiao-Bing Xue,Distributional Features for Text Categorization.,2009,21,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde21.html#XueZ09,https://doi.org/10.1109/TKDE.2008.166 +Chanjung Park,Multiversion Locking Protocol with Freezing for Secure Real-Time Database Systems.,2002,14,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde14.html#ParkPS02,https://doi.org/10.1109/TKDE.2002.1033780 +Nabil R. Adam,A Content-Based Authorization Model for Digital Libraries.,2002,14,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde14.html#AdamABF02,https://doi.org/10.1109/69.991718 +Nimit Kumar,Semisupervised Clustering with Metric Learning using Relative Comparisons.,2008,20,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde20.html#KumarK08,https://doi.org/10.1109/TKDE.2007.190715 +Pui Kuen Fong,Privacy Preserving Decision Tree Learning Using Unrealized Data Sets.,2012,24,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde24.html#FongW12,https://doi.org/10.1109/TKDE.2010.226 +William Perrizo,Algorithms for Distributed Query Processing in Broadcast Local Area Networks.,1989,1,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde1.html#PerrizoLH89,https://doi.org/10.1109/69.87961 +Avory Bryant,RNN-DBSCAN: A Density-Based Clustering Algorithm Using Reverse Nearest Neighbor Density Estimates.,2018,30,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde30.html#BryantC18,https://doi.org/10.1109/TKDE.2017.2787640 +Weiyi Meng,A Theory of Translation From Relational Queries to Hierarchical Queries.,1995,7,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde7.html#MengYK95,https://doi.org/10.1109/69.382294 +Jaideep Srivastava,Warehouse Creation - A Potential Roadblock to Data Warehousing.,1999,11,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde11.html#SrivastavaC99,https://doi.org/10.1109/69.755620 +Rong-Hua Li,Optimal Multi-Meeting-Point Route Search.,2016,28,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde28.html#LiQYM16,https://doi.org/10.1109/TKDE.2015.2492554 +Ken C. K. Lee,Ranked Reverse Nearest Neighbor Search.,2008,20,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde20.html#LeeZL08,https://doi.org/10.1109/TKDE.2008.36 +Steve Lawrence,Natural Language Grammatical Inference with Recurrent Neural Networks.,2000,12,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde12.html#LawrenceGF00,https://doi.org/10.1109/69.842255 +Wolfgang Lehner,Special Section on the International Conference on Data Engineering 2015.,2017,29,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde29.html#LehnerGS17,https://doi.org/10.1109/TKDE.2016.2639978 +Ismail H. Toroslu,The Strong Partial Transitive-Closure Problem: Algorithms and Performance Evaluation.,1996,8,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde8.html#TorosluQ96,https://doi.org/10.1109/69.536254 +Huiqi Hu,Top-k Spatio-Textual Similarity Join.,2016,28,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde28.html#HuLBFWGX16,https://doi.org/10.1109/TKDE.2015.2485213 +Mingsheng Long,Adaptation Regularization: A General Framework for Transfer Learning.,2014,26,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde26.html#LongWDPY14,https://doi.org/10.1109/TKDE.2013.111 +Jiaheng Lu,Extended XML Tree Pattern Matching: Theories and Algorithms.,2011,23,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde23.html#LuLBW11,https://doi.org/10.1109/TKDE.2010.126 +Nicholas Jing Yuan,T-Finder: A Recommender System for Finding Passengers and Vacant Taxis.,2013,25,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde25.html#YuanZZX13,https://doi.org/10.1109/TKDE.2012.153 +Roberto Maiocchi,Temporal Data Management Systems: A Comparative View.,1991,3,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde3.html#MaiocchiP91,https://doi.org/10.1109/69.109111 +François Fouss,Random-Walk Computation of Similarities between Nodes of a Graph with Application to Collaborative Recommendation.,2007,19,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde19.html#FoussPRS07,https://doi.org/10.1109/TKDE.2007.46 +Beng Chin Ooi,New EIC Editorial.,2009,21,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde21.html#Ooi09,https://doi.org/10.1109/TKDE.2009.9 +Gianluigi Greco,Mining and Reasoning on Workflows.,2005,17,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde17.html#GrecoGMS05,https://doi.org/10.1109/TKDE.2005.63 +Michael A. Sartori,A Multilayer Perceptron Solution to the Match Phase Problem in Rule-Based Artificial Intelligence Systems.,1992,4,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde4.html#SartoriPA92,https://doi.org/10.1109/69.142019 +Yin-Ling Cheung,Mining Frequent Itemsets without Support Threshold: With and without Item Constraints.,2004,16,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde16.html#CheungF04,https://doi.org/10.1109/TKDE.2004.44 +Andrew B. Williams,Experimentation with Local Consensus Ontologies with Implications for Automated Service Composition.,2005,17,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde17.html#WilliamsPB05,https://doi.org/10.1109/TKDE.2005.109 +Chihping Wang,On the Complexity of Distributed Query Optimization.,1996,8,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde8.html#WangC96,https://doi.org/10.1109/69.536256 +Guilherme Dal Bianco,A Practical and Effective Sampling Selection Strategy for Large Scale Deduplication.,2015,27,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde27.html#BiancoGGCH15,https://doi.org/10.1109/TKDE.2015.2416734 +Ingo Feinerer,Lossless Selection Views under Conditional Domain Constraints.,2015,27,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde27.html#FeinererFG15,https://doi.org/10.1109/TKDE.2014.2334327 +Xiao-Jia M. Zhou,Theoretical and Practical Considerations of Uncertainty and Complexity in Automated Knowledge Acquisition.,1995,7,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde7.html#ZhouD95,https://doi.org/10.1109/69.469826 +Zhiyuan Wang,The Prediction of Venture Capital Co-Investment Based on Structural Balance Theory.,2016,28,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde28.html#WangZTL16,https://doi.org/10.1109/TKDE.2015.2477304 +Surong Yan,An Approach for Building Efficient and Accurate Social Recommender Systems Using Individual Relationship Networks.,2017,29,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde29.html#YanLZZF17,https://doi.org/10.1109/TKDE.2017.2717984 +Sergio Consoli,Heuristic Approaches for the Quartet Method of Hierarchical Clustering.,2010,22,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde22.html#ConsoliDGKP10,https://doi.org/10.1109/TKDE.2009.188 +Amitava Dutta,Integrating Heuristic Knowledge and Optimization Models for Communications Network Design.,1993,5,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde5.html#DuttaM93,https://doi.org/10.1109/69.250088 +Karthik Ramachandra 0002,Program Transformations for Asynchronous and Batched Query Submission.,2015,27,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde27.html#Ramachandra0G015,https://doi.org/10.1109/TKDE.2014.2334302 +Hong Liu,A Segmentation and Graph-Based Video Sequence Matching Method for Video Copy Detection.,2013,25,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde25.html#LiuLX13,https://doi.org/10.1109/TKDE.2012.92 +H. V. Jagadish,Toward Efficient Multifeature Query Processing.,2006,18,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde18.html#JagadishOST06,https://doi.org/10.1109/TKDE.2006.51 +Zhixu Li,TRIP: An Interactive Retrieving-Inferring Data Imputation Approach.,2015,27,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde27.html#LiQCZZ15,https://doi.org/10.1109/TKDE.2015.2411276 +Pasi Saari,Semantic Computing of Moods Based on Tags in Social Media of Music.,2014,26,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde26.html#SaariE14,https://doi.org/10.1109/TKDE.2013.128 +Xiaofei Zhang 0002,Efficient Parallel Processing of Distance Join Queries Over Distributed Graphs.,2015,27,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde27.html#ZhangCW15,https://doi.org/10.1109/TKDE.2014.2345383 +Giedrius Slivinskas,A Foundation for Conventional and Temporal Query Optimization Addressing Duplicates and Ordering.,2001,13,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde13.html#SlivinskasJS01,https://doi.org/10.1109/69.908979 +Xiaohui Liu,Analyzing Outliers Cautiously.,2002,14,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde14.html#LiuCW02,https://doi.org/10.1109/69.991726 +Nizar Bouguila,Hybrid Generative/Discriminative Approaches for Proportional Data Modeling and Classification.,2012,24,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde24.html#Bouguila12,https://doi.org/10.1109/TKDE.2011.162 +Minder Chen,The Use of Integrated Organization and Information Systems Models in Building and Delivering Business Applications.,1989,1,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde1.html#ChenNW89,https://doi.org/10.1109/69.87985 +Chang-Dong Wang,Multi-View Clustering Based on Belief Propagation.,2016,28,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde28.html#WangLY16,https://doi.org/10.1109/TKDE.2015.2503743 +Xiangliang Zhang,Data Stream Clustering With Affinity Propagation.,2014,26,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde26.html#ZhangFGS14,https://doi.org/10.1109/TKDE.2013.146 +Christopher W. Clifton,TKDE Guidelines for Survey Papers.,2007,19,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde19.html#CliftonWF07,https://doi.org/10.1109/TKDE.2007.190685 +Gottfried Vossen,Editorial: Revisiting the (Machine) Semantic Web: The Missing Layers for the Human Semantic Web.,2007,19,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde19.html#VossenLK07,https://doi.org/10.1109/TKDE.2007.30 +Jang-Jong Fan,The Design of Efficient Algorithms for Two-Dimensional Pattern Matching.,1995,7,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde7.html#FanS95,https://doi.org/10.1109/69.382300 +Hongjun Lu,Effective Data Mining Using Neural Networks.,1996,8,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde8.html#LuSL96,https://doi.org/10.1109/69.553163 +Zheng Lu 0003,A New Algorithm for Inferring User Search Goals with Feedback Sessions.,2013,25,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde25.html#LuZYLZ13,https://doi.org/10.1109/TKDE.2011.248 +Anil Kumar,Designing Access Methods for Bitemporal Databases.,1998,10,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde10.html#KumarTF98,https://doi.org/10.1109/69.667079 +Federico Cavalieri,XSPath: Navigation on XML Schemas Made Easy.,2014,26,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde26.html#CavalieriGM14,https://doi.org/10.1109/TKDE.2012.247 +Michele Nitti,Trustworthiness Management in the Social Internet of Things.,2014,26,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde26.html#NittiGA14,https://doi.org/10.1109/TKDE.2013.105 +Dominik Fisch,Knowledge Fusion for Probabilistic Generative Classifiers with Data Mining Applications.,2014,26,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde26.html#FischKS14,https://doi.org/10.1109/TKDE.2013.20 +Sangun Park,Using Rule Ontology in Repeated Rule Acquisition from Similar Web Sites.,2012,24,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde24.html#ParkK12,https://doi.org/10.1109/TKDE.2011.72 +Hsin-Min Lu,Prospective Infectious Disease Outbreak Detection Using Markov Switching Models.,2010,22,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde22.html#LuZC10,https://doi.org/10.1109/TKDE.2009.115 +Junshuai Song,UniWalk: Unidirectional Random Walk Based Scalable SimRank Computation over Large Graph.,2018,30,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde30.html#SongLGZWY18,https://doi.org/10.1109/TKDE.2017.2779126 +Luchen Tan,A Family of Rank Similarity Measures Based on Maximized Effectiveness Difference.,2015,27,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde27.html#TanC15,https://doi.org/10.1109/TKDE.2015.2448541 +Wei Sun 0002,An Improved Algorithm for Implication Testing Involving Arithmetic Inequalities.,1994,6,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde6.html#SunW94,https://doi.org/10.1109/69.334889 +Xun Yi,Practical Approximate k Nearest Neighbor Queries with Location and Query Privacy.,2016,28,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde28.html#YiPBV16,https://doi.org/10.1109/TKDE.2016.2520473 +Kaushik Chakrabarti,Evaluating Refined Queries in Top-k Retrieval Systems.,2004,16,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde16.html#ChakrabartiOMP04,https://doi.org/10.1109/TKDE.2004.1269602 +Thorsten Papenbrock,Progressive Duplicate Detection.,2015,27,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde27.html#PapenbrockHN15,https://doi.org/10.1109/TKDE.2014.2359666 +Crystal Maung,Improved Greedy Algorithms for Sparse Approximation of a Matrix in Terms of Another Matrix.,2015,27,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde27.html#MaungS15,https://doi.org/10.1109/TKDE.2014.2349910 +Gabriel Ghinita,Anonymous Publication of Sensitive Transactional Data.,2011,23,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde23.html#GhinitaKT11,https://doi.org/10.1109/TKDE.2010.101 +Lei Zhang,Multi-View Missing Data Completion.,2018,30,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde30.html#ZhangZZSJ18,https://doi.org/10.1109/TKDE.2018.2791607 +Jose M. Such,Resolving Multi-Party Privacy Conflicts in Social Media.,2016,28,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde28.html#SuchC16,https://doi.org/10.1109/TKDE.2016.2539165 +Yung-Shen Lin,A Similarity Measure for Text Classification and Clustering.,2014,26,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde26.html#LinJL14,https://doi.org/10.1109/TKDE.2013.19 +Alexander T. Ihler,Understanding Errors in Approximate Distributed Latent Dirichlet Allocation.,2012,24,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde24.html#IhlerN12,https://doi.org/10.1109/TKDE.2011.29 +Jochen De Weerdt,Active Trace Clustering for Improved Process Discovery.,2013,25,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde25.html#WeerdtBVB13,https://doi.org/10.1109/TKDE.2013.64 +Byung Suk Lee,Outer Joins and Filters for Instantiating Objects from Relational Databases Through Views.,1994,6,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde6.html#LeeW94,https://doi.org/10.1109/69.273031 +Deyu Meng,Detecting Intrinsic Loops Underlying Data Manifold.,2013,25,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde25.html#MengLX13,https://doi.org/10.1109/TKDE.2011.191 +Luís E. T. Rodrigues,Atomic Broadcast in Asynchronous Crash-Recovery Distributed Systems and Its Use in Quorum-Based Replication.,2003,15,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde15.html#RodriguesR03,https://doi.org/10.1109/TKDE.2003.1232273 +Jianxin Li,Personalized Influential Topic Search via Social Network Summarization.,2016,28,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde28.html#LiLYCSC16,https://doi.org/10.1109/TKDE.2016.2542804 +Farokh B. Bastani,Editor-in-Chief Prefaces Special-Edition Tribute.,1999,11,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde11.html#Bastani99,http://doi.ieeecomputersociety.org/10.1109/TKDE.1999.10000 +Willis Lang,Dictionary-Based Compression for Long Time-Series Similarity.,2010,22,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde22.html#LangMP10,https://doi.org/10.1109/TKDE.2009.201 +Shiren Ye,Learning Object Models from Semistructured Web Documents.,2006,18,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde18.html#YeC06,https://doi.org/10.1109/TKDE.2006.47 +Simon Parsons,"Addendum to ""Current Approaches to Handling Imperfect Information in Data and Knowledge Bases"".",1998,10,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde10.html#Parsons98, +George Kollios,Hashing Methods for Temporal Data.,2002,14,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde14.html#KolliosT02,https://doi.org/10.1109/TKDE.2002.1019221 +Richard T. Snodgrass,Aggregates in the Temporal Query Language TQuel.,1993,5,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde5.html#SnodgrassGM93,https://doi.org/10.1109/69.243512 +Yong-Hyuk Kim,A Lagrangian Approach for Multiple Personalized Campaigns.,2008,20,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde20.html#KimYM08,https://doi.org/10.1109/TKDE.2007.190701 +Haiqin Yang,Boosting Response Aware Model-Based Collaborative Filtering.,2015,27,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde27.html#YangLSLK15,https://doi.org/10.1109/TKDE.2015.2405556 +Kevin Y. Yip,HARP: A Practical Projected Clustering Algorithm.,2004,16,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde16.html#YipCN04,https://doi.org/10.1109/TKDE.2004.74 +Zhao Zhang 0001,Graph Based Constrained Semi-Supervised Learning Framework via Label Propagation over Adaptive Neighborhood.,2015,27,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde27.html#ZhangZC15,https://doi.org/10.1109/TKDE.2013.182 +Clement T. Yu,A Methodology to Retrieve Text Documents from Multiple Databases.,2002,14,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde14.html#YuLMWR02,https://doi.org/10.1109/TKDE.2002.1047772 +Beth Trushkowsky,Crowdsourcing Enumeration Queries: Estimators and Interfaces.,2015,27,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde27.html#TrushkowskyKFSR15,https://doi.org/10.1109/TKDE.2014.2339857 +Shu Wu,Information-Theoretic Outlier Detection for Large-Scale Categorical Data.,2013,25,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde25.html#WuW13,https://doi.org/10.1109/TKDE.2011.261 +Charalampos Konstantopoulos,Effective Determination of Mobile Agent Itineraries for Data Aggregation on Sensor Networks.,2010,22,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde22.html#KonstantopoulosMGP10,https://doi.org/10.1109/TKDE.2009.203 +Hyoseop Shin,Adaptive and Incremental Processing for Distance Join Queries.,2003,15,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde15.html#ShinML03,https://doi.org/10.1109/TKDE.2003.1245293 +Bailong Liao,Beyond Millisecond Latency kNN Search on Commodity Machine.,2015,27,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde27.html#LiaoUYG15,https://doi.org/10.1109/TKDE.2015.2426702 +Marco Scarpa,A Modeling Technique for the Performance Analysis of Web Searching Applications.,2004,16,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde16.html#ScarpaPVZ04,https://doi.org/10.1109/TKDE.2004.65 +Edoardo Serra,An Effective GPU-Based Approach to Probabilistic Query Confidence Computation.,2015,27,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde27.html#SerraS15,https://doi.org/10.1109/TKDE.2014.2324571 +Weiwei Hu,\(\mathsf{B}^{p}\) - \(\mathsf{Tree}\) : A Predictive \(\mathsf{B}^{+}\) - \(\mathsf{Tree}\) for Reducing Writes on Phase Change Memory.,2014,26,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde26.html#HuLNST14,https://doi.org/10.1109/TKDE.2014.5 +Man Lung Yiu,Outsourced Similarity Search on Metric Data Assets.,2012,24,IEEE Trans. Knowl. Data Eng.,2,db/journals/tkde/tkde24.html#YiuAJK12,https://doi.org/10.1109/TKDE.2010.222 +Tariq Samad,A Browser for Large Knowledge Bases Based on a Hybrid Distributed/Local Connectionist Architecture.,1991,3,IEEE Trans. Knowl. Data Eng.,1,db/journals/tkde/tkde3.html#SamadI91,https://doi.org/10.1109/69.75892 +Sajid Yousuf Bhat,HOCTracker: Tracking the Evolution of Hierarchical and Overlapping Communities in Dynamic Social Networks.,2015,27,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde27.html#BhatA15,https://doi.org/10.1109/TKDE.2014.2349918 +Elena Baralis,IMine: Index Support for Item Set Mining.,2009,21,IEEE Trans. Knowl. Data Eng.,4,db/journals/tkde/tkde21.html#BaralisCC09,https://doi.org/10.1109/TKDE.2008.180 +Nizar Bouguila,Unsupervised Selection of a Finite Dirichlet Mixture Model: An MML-Based Approach.,2006,18,IEEE Trans. Knowl. Data Eng.,8,db/journals/tkde/tkde18.html#BouguilaZ06,https://doi.org/10.1109/TKDE.2006.133 +Ying Zhang 0001,Effectively Indexing the Uncertain Space.,2010,22,IEEE Trans. Knowl. Data Eng.,9,db/journals/tkde/tkde22.html#ZhangLZWL10,https://doi.org/10.1109/TKDE.2010.77 +Panagiotis Bouros,Evaluating Path Queries over Frequently Updated Route Collections.,2012,24,IEEE Trans. Knowl. Data Eng.,7,db/journals/tkde/tkde24.html#BourosSDSS12,https://doi.org/10.1109/TKDE.2011.30 +Sai Wu,HM: A Column-Oriented MapReduce System on Hybrid Storage.,2015,27,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde27.html#WuC0LS15,https://doi.org/10.1109/TKDE.2015.2453961 +Chen Chen 0022,Towards Optimal Connectivity on Multi-Layered Networks.,2017,29,IEEE Trans. Knowl. Data Eng.,10,db/journals/tkde/tkde29.html#ChenHBT17,https://doi.org/10.1109/TKDE.2017.2719026 +Bin Cui 0001,Indexing High-Dimensional Data for Efficient In-Memory Similarity Search.,2005,17,IEEE Trans. Knowl. Data Eng.,3,db/journals/tkde/tkde17.html#CuiOST05,https://doi.org/10.1109/TKDE.2005.46 +Mo Li,Iso-Map: Energy-Efficient Contour Mapping in Wireless Sensor Networks.,2010,22,IEEE Trans. Knowl. Data Eng.,5,db/journals/tkde/tkde22.html#LiL10,https://doi.org/10.1109/TKDE.2009.157 +Nikolaos Papadakis,STAVIES: A System for Information Extraction from Unknown Web Data Sources through Automatic Web Wrapper Generation Using Clustering Techniques.,2005,17,IEEE Trans. Knowl. Data Eng.,12,db/journals/tkde/tkde17.html#PapadakisSRV05,https://doi.org/10.1109/TKDE.2005.203 +Yue Lu,Information Retrieval in Document Image Databases,2004,16,IEEE Trans. Knowl. Data Eng.,11,db/journals/tkde/tkde16.html#LuT04,https://doi.org/10.1109/TKDE.2004.76 +Christian S. Jensen,Temporal Specialization and Generalization.,1994,6,IEEE Trans. Knowl. Data Eng.,6,db/journals/tkde/tkde6.html#JensenS94,https://doi.org/10.1109/69.334885 +Weixuan Tang,Adaptive Steganalysis Based on Embedding Probabilities of Pixels.,2016,11,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs11.html#TangLLH16,https://doi.org/10.1109/TIFS.2015.2507159 +Yuqiao Cheng,Improved Visual Secret Sharing Scheme for QR Code Applications.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#ChengFY18,https://doi.org/10.1109/TIFS.2018.2819125 +Qiao Li,Using Perceptual Models to Improve Fidelity and Provide Resistance to Valumetric Scaling for Quantization Index Modulation Watermarking.,2007,2,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs2.html#LiC07,https://doi.org/10.1109/TIFS.2007.897266 +Liang Xiao 0003,A Secure Mobile Crowdsensing Game With Deep Reinforcement Learning.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#XiaoLHDP18,https://doi.org/10.1109/TIFS.2017.2737968 +Quanxue Gao,Joint Global and Local Structure Discriminant Analysis.,2013,8,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs8.html#GaoLZGL13,https://doi.org/10.1109/TIFS.2013.2246786 +Gorjan Nadzinski,Experimental Realization of the Coupling Function Secure Communications Protocol and Analysis of Its Noise Robustness.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#NadzinskiDAMSSS18,https://doi.org/10.1109/TIFS.2018.2825147 +Hang Long,Secrecy Capacity Enhancement With Distributed Precoding in Multirelay Wiretap Systems.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#LongXZLW13,https://doi.org/10.1109/TIFS.2012.2229988 +Eran Eidinger,Age and Gender Estimation of Unfiltered Faces.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#EidingerEH14,https://doi.org/10.1109/TIFS.2014.2359646 +Po-Yen Lee,MDSClone: Multidimensional Scaling Aided Clone Detection in Internet of Things.,2018,13,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs13.html#LeeYDC018,https://doi.org/10.1109/TIFS.2018.2805291 +Zahra Ahmadian,Linear Subspace Cryptanalysis of Harn's Secret Sharing-Based Group Authentication Scheme.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#AhmadianJ18,https://doi.org/10.1109/TIFS.2017.2757454 +Prosanta Gope,Lightweight and Practical Anonymous Authentication Protocol for RFID Systems Using Physically Unclonable Functions.,2018,13,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs13.html#GopeLQ18,https://doi.org/10.1109/TIFS.2018.2832849 +Jun Zhang 0023,Large System Secrecy Rate Analysis for SWIPT MIMO Wiretap Channels.,2016,11,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs11.html#ZhangYWJWZ16,https://doi.org/10.1109/TIFS.2015.2477050 +Marcus Karlsson,Jamming a TDD Point-to-Point Link Using Reciprocity-Based MIMO.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#KarlssonBL17,https://doi.org/10.1109/TIFS.2017.2725823 +Ester Gonzalez-Sosa,Exploring Body Shape From mmW Images for Person Recognition.,2017,12,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs12.html#Gonzalez-SosaVF17,https://doi.org/10.1109/TIFS.2017.2695979 +Sunpreet S. Arora,Gold Fingers: 3D Targets for Evaluating Capacitive Readers.,2017,12,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs12.html#AroraJP17,https://doi.org/10.1109/TIFS.2017.2695166 +Jan Kohout,Network Traffic Fingerprinting Based on Approximated Kernel Two-Sample Test.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#KohoutP18,https://doi.org/10.1109/TIFS.2017.2768018 +Harjinder Singh Lallie,An Empirical Evaluation of the Effectiveness of Attack Graphs and Fault Trees in Cyber-Attack Perception.,2018,13,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs13.html#LallieDB18,https://doi.org/10.1109/TIFS.2017.2771238 +Qiang Tang 0001,Nothing is for Free: Security in Searching Shared and Encrypted Data.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#000114,https://doi.org/10.1109/TIFS.2014.2359389 +Ying Wang,Optimized Feature Extraction for Learning-Based Image Steganalysis.,2007,2,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs2.html#WangM07,https://doi.org/10.1109/TIFS.2006.890517 +David Chaum,Corrections to scantegrity II: end-to-end verifiability by voters of optical scan elections through confirmation codes.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#ChaumCCEPRRSSV10,https://doi.org/10.1109/TIFS.2010.2040672 +Shervin Rahimzadeh Arashloo,Face Spoofing Detection Based on Multiple Descriptor Fusion Using Multiscale Dynamic Binarized Statistical Image Features.,2015,10,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs10.html#ArashlooKC15,https://doi.org/10.1109/TIFS.2015.2458700 +Irene Amerini,Smartphone Fingerprinting Combining Features of On-Board Sensors.,2017,12,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs12.html#AmeriniBCMN17,https://doi.org/10.1109/TIFS.2017.2708685 +Frodo Kin-Sun Chan,A Study of Distinctiveness of Skin Texture for Forensic Applications Through Comparison With Blood Vessels.,2017,12,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs12.html#ChanLK17,https://doi.org/10.1109/TIFS.2017.2692684 +Luís Filipe da Cruz Nassif,Document Clustering for Forensic Analysis: An Approach for Improving Computer Inspection.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#NassifH13,https://doi.org/10.1109/TIFS.2012.2223679 +Patrick P. K. Chan,Face Liveness Detection Using a Flash Against 2D Spoofing Attack.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#ChanLCYZWH18,https://doi.org/10.1109/TIFS.2017.2758748 +Shen-Zheng Wang,A Cascade Framework for a Real-Time Statistical Plate Recognition System.,2007,2,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs2.html#WangL07,https://doi.org/10.1109/TIFS.2007.897251 +Wei Dai,Implementation and Evaluation of a Lattice-Based Key-Policy ABE Scheme.,2018,13,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs13.html#DaiDPRSSS18,https://doi.org/10.1109/TIFS.2017.2779427 +Wenchang Tang,Estimating Infection Sources in Networks Using Partial Timestamps.,2018,13,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs13.html#TangJT18,https://doi.org/10.1109/TIFS.2018.2837655 +Peter Y. A. Ryan,Prêt à voter: a voter-verifiable voting system.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#RyanBHSX09,https://doi.org/10.1109/TIFS.2009.2033233 +Chao Shen 0001,Performance Analysis of Multi-Motion Sensor Behavior for Active Smartphone Authentication.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#ShenLCGM18,https://doi.org/10.1109/TIFS.2017.2737969 +Pan Zhou,Near-Optimal and Practical Jamming-Resistant Energy-Efficient Cognitive Radio Communications.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#ZhouWWHW17,https://doi.org/10.1109/TIFS.2017.2721931 +Fanglin Chen,Separating Overlapped Fingerprints.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#ChenFJZZ11,https://doi.org/10.1109/TIFS.2011.2114345 +Kan Yang 0001,DAC-MACS: Effective Data Access Control for Multiauthority Cloud Storage Systems.,2013,8,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs8.html#YangJRZX13,https://doi.org/10.1109/TIFS.2013.2279531 +Daniel Schonberg,EyeCerts.,2006,1,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs1.html#SchonbergK06,https://doi.org/10.1109/TIFS.2006.873604 +Lijun Dong,A Data-Centric Approach to Quality Estimation of Role Mining Results.,2016,11,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs11.html#DongWT16,https://doi.org/10.1109/TIFS.2016.2594137 +Kaushal Solanki,'Print and Scan' Resilient Data Hiding in Images.,2006,1,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs1.html#SolankiMMCE06,https://doi.org/10.1109/TIFS.2006.885032 +Enrico Bondi,Reconstructing High-Resolution Face Models From Kinect Depth Sequences.,2016,11,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs11.html#BondiPBB16,https://doi.org/10.1109/TIFS.2016.2601059 +Feng Yue,Hashing Based Fast Palmprint Identification for Large-Scale Databases.,2013,8,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs8.html#YueLYW13,https://doi.org/10.1109/TIFS.2013.2253321 +Lino Coria-Mendoza,A Video Watermarking Scheme Based on the Dual-Tree Complex Wavelet Transform.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#Coria-MendozaPNW08,https://doi.org/10.1109/TIFS.2008.927421 +Marina A. Oikawa,Manifold Learning and Spectral Clustering for Image Phylogeny Forests.,2016,11,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs11.html#OikawaDRG16,https://doi.org/10.1109/TIFS.2015.2442527 +Shihao Yan,Secret Channel Training to Enhance Physical Layer Security With a Full-Duplex Receiver.,2018,13,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs13.html#YanZYAS18,https://doi.org/10.1109/TIFS.2018.2834301 +Avinash L. Varna,Fingerprinting compressed multimedia signals.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#VarnaHSW09,https://doi.org/10.1109/TIFS.2009.2025860 +Kyung-Ah Shim,BASIS: A Practical Multi-User Broadcast Authentication Scheme in Wireless Sensor Networks.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#Shim17,https://doi.org/10.1109/TIFS.2017.2668062 +Zhe Jin,Ranking-Based Locality Sensitive Hashing-Enabled Cancelable Biometrics: Index-of-Max Hashing.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#JinHLKT18,https://doi.org/10.1109/TIFS.2017.2753172 +Tobias Senst,Crowd Violence Detection Using Global Motion-Compensated Lagrangian Features and Scale-Sensitive Video-Level Representation.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#SenstEKS17,https://doi.org/10.1109/TIFS.2017.2725820 +Sushil Jajodia,A Probabilistic Logic of Cyber Deception.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#JajodiaPPPSSS17,https://doi.org/10.1109/TIFS.2017.2710945 +Ryan W. Gardner,Detecting code alteration by creating a temporary memory bottleneck.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#GardnerGR09,https://doi.org/10.1109/TIFS.2009.2033231 +Athanasios Papadopoulos,IllusionPIN: Shoulder-Surfing Resistant Authentication Using Hybrid Images.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#PapadopoulosNDM17,https://doi.org/10.1109/TIFS.2017.2725199 +Xin Ruan,Profiling Online Social Behaviors for Compromised Account Detection.,2016,11,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs11.html#RuanWWJ16,https://doi.org/10.1109/TIFS.2015.2482465 +Robin Doss,Secure RFID Tag Ownership Transfer Based on Quadratic Residues.,2013,8,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs8.html#DossZY13,https://doi.org/10.1109/TIFS.2012.2235834 +Keshav Seshadri,An Analysis of the Sensitivity of Active Shape Models to Initialization When Applied to Automatic Facial Landmarking.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#SeshadriS12,https://doi.org/10.1109/TIFS.2012.2195175 +Hugo Proença,Toward Covert Iris Biometric Recognition: Experimental Results From the NICE Contests.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#ProencaA12,https://doi.org/10.1109/TIFS.2011.2177659 +Gabriel Domínguez-Conde,Performance analysis of Fridrich-Goljan self-embedding authentication method.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#Dominguez-CondeCP09,https://doi.org/10.1109/TIFS.2009.2026463 +Zhili Zhou,Effective and Efficient Global Context Verification for Image Copy Detection.,2017,12,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs12.html#ZhouWWYS17,https://doi.org/10.1109/TIFS.2016.2601065 +Sha Ma,Efficient Public Key Encryption With Equality Test Supporting Flexible Authorization.,2015,10,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs10.html#MaHZY15,https://doi.org/10.1109/TIFS.2014.2378592 +Nisha Srinivas,Analysis of Facial Marks to Distinguish Between Identical Twins.,2012,7,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs7.html#SrinivasAFB12,https://doi.org/10.1109/TIFS.2012.2206027 +Jingwen Zhang,Specific Emitter Identification via Hilbert-Huang Transform in Single-Hop and Relaying Scenarios.,2016,11,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs11.html#ZhangWDZ16,https://doi.org/10.1109/TIFS.2016.2520908 +Aparna Bharati,Detecting Facial Retouching Using Supervised Deep Learning.,2016,11,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs11.html#BharatiSVB16,https://doi.org/10.1109/TIFS.2016.2561898 +Suryadipta Majumdar,User-Level Runtime Security Auditing for the Cloud.,2018,13,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs13.html#MajumdarMWJPWD18,https://doi.org/10.1109/TIFS.2017.2779444 +Jun Yu 0002,iPrivacy: Image Privacy Protection by Identifying Sensitive Objects via Deep Multi-Task Learning.,2017,12,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs12.html#YuZKLF17,https://doi.org/10.1109/TIFS.2016.2636090 +Muhammad R. A. Khandaker,Masked Beamforming in the Presence of Energy-Harvesting Eavesdroppers.,2015,10,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs10.html#KhandakerW15,https://doi.org/10.1109/TIFS.2014.2363033 +Chao Chen,Statistical Features-Based Real-Time Detection of Drifted Twitter Spam.,2017,12,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs12.html#ChenWZXZM17,https://doi.org/10.1109/TIFS.2016.2621888 +Richard M. Jiang,Face recognition in global harmonic subspace.,2010,5,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs5.html#JiangCL10,https://doi.org/10.1109/TIFS.2010.2051544 +Francesco G. B. De Natale,Detecting Morphological Filtering of Binary Images.,2017,12,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs12.html#NataleB17,https://doi.org/10.1109/TIFS.2017.2656472 +Jessica J. Fridrich,Matrix embedding for large payloads.,2006,1,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs1.html#FridrichS06,https://doi.org/10.1109/TIFS.2006.879281 +Wei Fan 0004,JPEG Anti-Forensics With Improved Tradeoff Between Forensic Undetectability and Image Quality.,2014,9,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs9.html#FanWCX14,https://doi.org/10.1109/TIFS.2014.2317949 +Gaojie Chen,Physical Layer Network Security in the Full-Duplex Relay System.,2015,10,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs10.html#ChenGXC15,https://doi.org/10.1109/TIFS.2015.2390136 +Jiantao Zhou,Designing an Efficient Image Encryption-Then-Compression System via Prediction Error Clustering and Random Permutation.,2014,9,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs9.html#ZhouLAT14,https://doi.org/10.1109/TIFS.2013.2291625 +Muhammad R. A. Khandaker,Probabilistically Robust SWIPT for Secrecy MISOME Systems.,2017,12,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs12.html#KhandakerWZZ17,https://doi.org/10.1109/TIFS.2016.2611478 +Hussein A. Aly,Data Hiding in Motion Vectors of Compressed Video Based on Their Associated Prediction Error.,2011,6,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs6.html#Aly11,https://doi.org/10.1109/TIFS.2010.2090520 +Holger Boche,Capacity Results and Super-Activation for Wiretap Channels With Active Wiretappers.,2013,8,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs8.html#BocheS13a,https://doi.org/10.1109/TIFS.2013.2276049 +Filippo Gandino,A Key Distribution Scheme for Mobile Wireless Sensor Networks: q-Composite.,2017,12,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs12.html#GandinoFR17,https://doi.org/10.1109/TIFS.2016.2601061 +Mustafa Ozmen,Secure Transmission of Delay-Sensitive Data Over Wireless Fading Channels.,2017,12,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs12.html#OzmenG17,https://doi.org/10.1109/TIFS.2017.2692749 +Tomás Denemark,Steganalysis Features for Content-Adaptive JPEG Steganography.,2016,11,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs11.html#DenemarkBF16,https://doi.org/10.1109/TIFS.2016.2555281 +Daigo Muramatsu,A Markov chain Monte Carlo algorithm for bayesian dynamic signature verification.,2006,1,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs1.html#MuramatsuKSTM06,https://doi.org/10.1109/TIFS.2005.863507 +Natalia A. Schmid,On Empirical Recognition Capacity of Biometric Systems Under Global PCA and ICA Encoding.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#SchmidN08,https://doi.org/10.1109/TIFS.2008.924607 +Yuanman Li,SIFT Keypoint Removal and Injection via Convex Relaxation.,2016,11,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs11.html#LiZCLT16,https://doi.org/10.1109/TIFS.2016.2553645 +Hartwig Fronthaler,Fingerprint Image-Quality Estimation and its Application to Multialgorithm Verification.,2008,3,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs3.html#FronthalerKBFAOG08,https://doi.org/10.1109/TIFS.2008.920725 +Mohammad H. Mahoor,A Multimodal Approach for Face Modeling and Recognition.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#MahoorA08,https://doi.org/10.1109/TIFS.2008.924597 +Jiao Jiao Jiang,K-Center: An Approach on the Multi-Source Identification of Information Diffusion.,2015,10,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs10.html#JiangWYXZ15,https://doi.org/10.1109/TIFS.2015.2469256 +Zhenjun Tang,Robust Image Hashing With Ring Partition and Invariant Vector Distance.,2016,11,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs11.html#TangZLZ16,https://doi.org/10.1109/TIFS.2015.2485163 +Takao Murakami,Group Sparsity Tensor Factorization for Re-Identification of Open Mobility Traces.,2017,12,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs12.html#MurakamiKH17,https://doi.org/10.1109/TIFS.2016.2631952 +Jiawei Yuan,Public Integrity Auditing for Dynamic Data Sharing With Multiuser Modification.,2015,10,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs10.html#YuanY15,https://doi.org/10.1109/TIFS.2015.2423264 +Pang Du,Statistical Estimation of Malware Detection Metrics in the Absence of Ground Truth.,2018,13,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs13.html#DuSCCX18,https://doi.org/10.1109/TIFS.2018.2833292 +Renato Villán,Multilevel 2-D Bar Codes: Toward High-Capacity Storage Modules for Multimedia Security and Management.,2006,1,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs1.html#VillnVKP06,https://doi.org/10.1109/TIFS.2006.885022 +Hugo Proença,Soft Biometrics: Globally Coherent Solutions for Hair Segmentation and Style Recognition Based on Hierarchical MRFs.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#ProencaN17,https://doi.org/10.1109/TIFS.2017.2680246 +Manas Baveja,Asymptotic Biometric Analysis for Large Gallery Sizes.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#BavejaYW10,https://doi.org/10.1109/TIFS.2010.2058105 +Quanzhong Li,Artificial Noise Aided Secure Precoding for MIMO Untrusted Two-Way Relay Systems With Perfect and Imperfect Channel State Information.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#LiY18,https://doi.org/10.1109/TIFS.2018.2825944 +Yiliang Liu,Secrecy Capacity Analysis of Artificial Noisy MIMO Channels - An Approach Based on Ordered Eigenvalues of Wishart Matrices.,2017,12,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs12.html#LiuCW17,https://doi.org/10.1109/TIFS.2016.2627219 +Stefan Popa,Hardware Acceleration of Background Modeling in the Compressed Domain.,2013,8,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs8.html#PopaCM13,https://doi.org/10.1109/TIFS.2013.2276753 +Yahya S. Khiabani,Enhancement of Secrecy of Block Ciphered Systems by Deliberate Noise.,2012,7,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs7.html#KhiabaniWYW12,https://doi.org/10.1109/TIFS.2012.2204983 +Nitesh Saxena,Noninteractive self-certification for long-lived mobile ad hoc networks.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#SaxenaY09,https://doi.org/10.1109/TIFS.2009.2031946 +Bahman Rashidi,A Collaborative DDoS Defence Framework Using Network Function Virtualization.,2017,12,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs12.html#RashidiFB17,https://doi.org/10.1109/TIFS.2017.2708693 +Giulio Giaconi,Smart Meter Privacy With Renewable Energy and an Energy Storage Device.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#GiaconiGP18,https://doi.org/10.1109/TIFS.2017.2744601 +Yuan Zhang 0004,Designing Secure and Dependable Mobile Sensing Mechanisms With Revenue Guarantees.,2016,11,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs11.html#ZhangZTZ16,https://doi.org/10.1109/TIFS.2015.2478739 +Xiangui Kang,Enhancing Source Camera Identification Performance With a Camera Reference Phase Sensor Pattern Noise.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#KangLQH12,https://doi.org/10.1109/TIFS.2011.2168214 +Guang Yao,Passive IP Traceback: Disclosing the Locations of IP Spoofers From Path Backscatter.,2015,10,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs10.html#YaoBV15,https://doi.org/10.1109/TIFS.2014.2381873 +Lacey Best-Rowden,Unconstrained Face Recognition: Identifying a Person of Interest From a Media Collection.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#Best-RowdenHOKJ14,https://doi.org/10.1109/TIFS.2014.2359577 +Wenxiong Kang,Contactless Palm Vein Recognition Using a Mutual Foreground-Based Local Binary Pattern.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#KangW14,https://doi.org/10.1109/TIFS.2014.2361020 +Mitsugu Iwamoto,A Weak Security Notion for Visual Secret Sharing Schemes.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#Iwamoto12,https://doi.org/10.1109/TIFS.2011.2170975 +Heng Cui,On the Fingerprinting of Software-Defined Networks.,2016,11,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs11.html#CuiKKB16,https://doi.org/10.1109/TIFS.2016.2573756 +Ximeng Liu,Privacy-Preserving Outsourced Calculation on Floating Point Numbers.,2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#LiuDDLQ16,https://doi.org/10.1109/TIFS.2016.2585121 +Wei Yu 0003,Secure Cooperation in Autonomous Mobile Ad-Hoc Networks Under Noise and Imperfect Monitoring: A Game-Theoretic Approach.,2008,3,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs3.html#YuL08,https://doi.org/10.1109/TIFS.2008.922453 +Tran Viet Xuan Phuong,Hidden Ciphertext Policy Attribute-Based Encryption Under Standard Assumptions.,2016,11,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs11.html#PhuongYS16,https://doi.org/10.1109/TIFS.2015.2475723 +Jian Shen 0001,Anonymous and Traceable Group Data Sharing in Cloud Computing.,2018,13,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs13.html#ShenZCLS18,https://doi.org/10.1109/TIFS.2017.2774439 +Feng Hao,A Fast Search Algorithm for a Large Fuzzy Database.,2008,3,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs3.html#HaoDZ08,https://doi.org/10.1109/TIFS.2008.920726 +Abhishek Basak,Security Assurance for System-on-Chip Designs With Untrusted IPs.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#BasakBTR17,https://doi.org/10.1109/TIFS.2017.2658544 +Lifeng Lai,Privacy-Security Trade-Offs in Biometric Security Systems - Part I: Single Use Case.,2011,6,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs6.html#LaiHP11,https://doi.org/10.1109/TIFS.2010.2098872 +Cai-Ping Yan,Quaternion-Based Image Hashing for Adaptive Tampering Localization.,2016,11,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs11.html#YanPY16,https://doi.org/10.1109/TIFS.2016.2594136 +Maria V. Ruiz-Blondet,CEREBRE: A Novel Method for Very High Accuracy Event-Related Potential Biometric Identification.,2016,11,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs11.html#Ruiz-BlondetJL16,https://doi.org/10.1109/TIFS.2016.2543524 +Hans Georg Schaathun,The Boneh-Shaw fingerprinting scheme is better than we thought.,2006,1,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs1.html#Schaathun06,https://doi.org/10.1109/TIFS.2006.873596 +Jaroslaw Duda,Image-Like 2D Barcodes Using Generalizations of the Kuznetsov-Tsybakov Problem.,2016,11,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs11.html#DudaKGTD16,https://doi.org/10.1109/TIFS.2015.2506002 +Nicholas W. D. Evans,Guest Editorial Special Issue on Biometric Spoofing and Countermeasures.,2015,10,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs10.html#EvansLMR15,https://doi.org/10.1109/TIFS.2015.2406111 +Xiaofeng Chen 0001,Efficient Fair Conditional Payments for Outsourcing Computations.,2012,7,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs7.html#ChenLS12,https://doi.org/10.1109/TIFS.2012.2210880 +Andrey Garnaev,A Bandwidth Monitoring Strategy Under Uncertainty of the Adversary's Activity.,2016,11,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs11.html#GarnaevT16,https://doi.org/10.1109/TIFS.2015.2510959 +Amir Sonee,On the Secrecy Rate Region of Multiple-Access Wiretap Channel With Noncausal Side Information.,2015,10,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs10.html#SoneeH15,https://doi.org/10.1109/TIFS.2015.2400416 +Bogdan Carbunar,Write-Once Read-Many Oblivious RAM.,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#CarbunarS11,https://doi.org/10.1109/TIFS.2011.2160169 +Junjie Zhang,Building a Scalable System for Stealthy P2P-Botnet Detection.,2014,9,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs9.html#ZhangPLLS14,https://doi.org/10.1109/TIFS.2013.2290197 +Matteo Ferrara,On the Feasibility of Creating Double-Identity Fingerprints.,2017,12,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs12.html#FerraraCM17,https://doi.org/10.1109/TIFS.2016.2639345 +Joan Enric Barceló-Lladó,Amplify-and-Forward Compressed Sensing as a Physical-Layer Secrecy Solution in Wireless Sensor Networks.,2014,9,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs9.html#Barcelo-LladoMS14,https://doi.org/10.1109/TIFS.2014.2309855 +Eduardo José da S. Luz,Learning Deep Off-the-Person Heart Biometrics Representations.,2018,13,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs13.html#LuzMOSM18,https://doi.org/10.1109/TIFS.2017.2784362 +Dominik Engel,An Analysis of Lightweight Encryption Schemes for Fingerprint Images.,2008,3,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs3.html#EngelPU08,https://doi.org/10.1109/TIFS.2008.922058 +Reza Soosahabi,Optimal Probabilistic Encryption for Secure Detection in Wireless Sensor Networks.,2014,9,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs9.html#SoosahabiNPB14,https://doi.org/10.1109/TIFS.2014.2298813 +Omaima Nomir,Human Identification From Dental X-Ray Images Based on the Shape and Appearance of the Teeth.,2007,2,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs2.html#NomirA07,https://doi.org/10.1109/TIFS.2007.897245 +Wei Liu 0025,Optimum Detection for Spread-Spectrum Watermarking That Employs Self-Masking.,2007,2,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs2.html#LiuDZ07,https://doi.org/10.1109/TIFS.2007.908226 +Han Su,A Study on Low Resolution Androgenic Hair Patterns for Criminal and Victim Identification.,2014,9,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs9.html#SuK14,https://doi.org/10.1109/TIFS.2014.2306591 +Sen-ching Samson Cheung,Guest Editorial: Special issue on privacy and trust management in cloud and distributed systems.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#CheungSAHHH13,https://doi.org/10.1109/TIFS.2013.2259431 +Diaa Eldin M. Nassar,Automatic Construction of Dental Charts for Postmortem Identification.,2008,3,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs3.html#NassarALA08,https://doi.org/10.1109/TIFS.2008.922452 +Yanling Chen,Collective Secrecy Over the K-Transmitter Multiple Access Channel.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#ChenKV18,https://doi.org/10.1109/TIFS.2018.2818067 +Hongbin Xu,Cooperative Privacy Preserving Scheme for Downlink Transmission in Multiuser Relay Networks.,2017,12,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs12.html#XuSRDW17,https://doi.org/10.1109/TIFS.2016.2636091 +Shaoquan Jiang,On the Size of Source Space in a Secure MAC.,2015,10,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs10.html#Jiang15a,https://doi.org/10.1109/TIFS.2015.2442523 +Lemonia Dritsoula,A Game-Theoretic Analysis of Adversarial Classification.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#DritsoulaLM17,https://doi.org/10.1109/TIFS.2017.2718494 +Zarrin Montazeri,Achieving Perfect Location Privacy in Wireless Devices Using Anonymization.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#MontazeriHP17,https://doi.org/10.1109/TIFS.2017.2713341 +Shize Guo,Exploiting the Incomplete Diffusion Feature: A Specialized Analytical Side-Channel Attack Against the AES and Its Application to Microcontroller Implementations.,2014,9,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs9.html#GuoZZWSSM14,https://doi.org/10.1109/TIFS.2014.2315534 +Jeroen van de Graaf,Voting with unconditional privacy by merging Prêt à voter and PunchScan.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#Graaf09,https://doi.org/10.1109/TIFS.2009.2034207 +Yen-Wei Huang,On the Saddle-Point Solution and the Large-Coalition Asymptotics of Fingerprinting Games.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#HuangM12,https://doi.org/10.1109/TIFS.2011.2168212 +Anil K. Jain 0001,Biometrics: a tool for information security.,2006,1,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs1.html#JainRP06,https://doi.org/10.1109/TIFS.2006.873653 +Jiwen Lu,Cost-Sensitive Semi-Supervised Discriminant Analysis for Face Recognition.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#LuZTSZ12,https://doi.org/10.1109/TIFS.2012.2188389 +Zhongliu Zhuo,Website Fingerprinting Attack on Anonymity Networks Based on Profile Hidden Markov Model.,2018,13,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs13.html#ZhuoZZZZ18,https://doi.org/10.1109/TIFS.2017.2762825 +Tao Xiong,MIO: Enhancing Wireless Communications Security Through Physical Layer Multiple Inter-Symbol Obfuscation.,2015,10,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs10.html#XiongLZT15,https://doi.org/10.1109/TIFS.2015.2422264 +Linyuan Zhang,Spectrum Sensing Under Spectrum Misuse Behaviors: A Multi-Hypothesis Test Perspective.,2018,13,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs13.html#ZhangDWH18,https://doi.org/10.1109/TIFS.2017.2774770 +Biao He,Secure On-Off Transmission Design With Channel Estimation Errors.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#HeZ13,https://doi.org/10.1109/TIFS.2013.2284754 +Nesli Erdogmus,Spoofing Face Recognition With 3D Masks.,2014,9,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs9.html#ErdogmusM14,https://doi.org/10.1109/TIFS.2014.2322255 +Sian-Jheng Lin,The Scalar Scheme for Reversible Information-Embedding in Gray-Scale Signals: Capacity Evaluation and Code Constructions.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#LinC12a,https://doi.org/10.1109/TIFS.2012.2197614 +Mohsen Zandi,Iterative Copy-Move Forgery Detection Based on a New Interest Point Detector.,2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#ZandiAT16,https://doi.org/10.1109/TIFS.2016.2585118 +Gaojie Chen,Secrecy Outage Analysis for Downlink Transmissions in the Presence of Randomly Located Eavesdroppers.,2017,12,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs12.html#ChenCR17,https://doi.org/10.1109/TIFS.2017.2656462 +Xuan Zha,The Impact of Link Duration on the Integrity of Distributed Mobile Networks.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#ZhaNWLGNZ18,https://doi.org/10.1109/TIFS.2018.2812714 +Fernando Alonso-Fernandez,A Comparative Study of Fingerprint Image-Quality Estimation Methods.,2007,2,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs2.html#Alonso-FernandezFOGFKB07,https://doi.org/10.1109/TIFS.2007.908228 +Yuxi Liu,Earprint: Transient Evoked Otoacoustic Emission for Biometrics.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#LiuH14,https://doi.org/10.1109/TIFS.2014.2361205 +Giuseppe Valenzise,Revealing the Traces of JPEG Compression Anti-Forensics.,2013,8,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs8.html#ValenziseTT13,https://doi.org/10.1109/TIFS.2012.2234117 +Tianlong Song,CDMA System Design and Capacity Analysis Under Disguised Jamming.,2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#SongZL16,https://doi.org/10.1109/TIFS.2016.2585089 +Arik Vartanian,TM-Score: A Misuseability Weight Measure for Textual Content.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#VartanianS14,https://doi.org/10.1109/TIFS.2014.2359370 +Wen Tao Zhu,Generating Correlated Digital Certificates: Framework and Applications.,2016,11,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs11.html#ZhuL16,https://doi.org/10.1109/TIFS.2016.2516818 +Yanpei Liu,Exploiting Channel Diversity in Secret Key Generation From Multipath Fading Randomness.,2012,7,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs7.html#LiuDS12,https://doi.org/10.1109/TIFS.2012.2206385 +Chenxu Wang,SkyShield: A Sketch-Based Defense System Against Application Layer DDoS Attacks.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#WangMLW18,https://doi.org/10.1109/TIFS.2017.2758754 +Takashi Nakamura,In-Ear EEG Biometrics for Feasible and Readily Collectable Real-World Person Authentication.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#NakamuraGM18,https://doi.org/10.1109/TIFS.2017.2763124 +Xiaozheng Zhang 0002,Heterogeneous Specular and Diffuse 3-D Surface Approximation for Face Recognition Across Pose.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#ZhangG12,https://doi.org/10.1109/TIFS.2011.2170068 +Onur Tan,Privacy-Cost Trade-offs in Demand-Side Management With Storage.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#TanGG17,https://doi.org/10.1109/TIFS.2017.2656469 +Hang Su,The Large-Scale Crowd Behavior Perception Based on Spatio-Temporal Viscous Fluid Field.,2013,8,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs8.html#SuYZFW13,https://doi.org/10.1109/TIFS.2013.2277773 +Emanuele Maiorana,Hill-Climbing Attacks on Multibiometrics Recognition Systems.,2015,10,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs10.html#MaioranaHC15,https://doi.org/10.1109/TIFS.2014.2384735 +Lifeng Wang 0002,Physical Layer Security of Maximal Ratio Combining in Two-Wave With Diffuse Power Fading Channels.,2014,9,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs9.html#WangYEYY14,https://doi.org/10.1109/TIFS.2013.2296991 +Chugui Xu,DPPro: Differentially Private High-Dimensional Data Release via Random Projection.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#XuRZQR17,https://doi.org/10.1109/TIFS.2017.2737966 +Julian Fiérrez,Benchmarking Touchscreen Biometrics for Mobile Authentication.,2018,13,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs13.html#FierrezPMGM18,https://doi.org/10.1109/TIFS.2018.2833042 +Cristina Comaniciu,On Energy-Secrecy Trade-Offs for Gaussian Wiretap Channels.,2013,8,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs8.html#ComaniciuP13,https://doi.org/10.1109/TIFS.2012.2232910 +Sadaf Salehkalaibar,One-Receiver Two-Eavesdropper Broadcast Channel With Degraded Message Sets.,2013,8,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs8.html#SalehkalaibarMA13,https://doi.org/10.1109/TIFS.2013.2264675 +Feng Liu,Distal-Interphalangeal-Crease-Based User Authentication System.,2013,8,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs8.html#LiuZG13,https://doi.org/10.1109/TIFS.2013.2272787 +Xiangui Kang,Efficient general print-scanning resilient data hiding based on uniform log-polar mapping.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#KangHZ10,https://doi.org/10.1109/TIFS.2009.2039604 +Hong Liu 0006,Role-Dependent Privacy Preservation for Secure V2G Networks in the Smart Grid.,2014,9,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs9.html#LiuNZXY14,https://doi.org/10.1109/TIFS.2013.2295032 +Parag Agarwal,Robust blind watermarking of point-sampled geometry.,2009,4,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs4.html#AgarwalP09,https://doi.org/10.1109/TIFS.2008.2011081 +Shan He 0002,Joint coding and embedding techniques for MultimediaFingerprinting.,2006,1,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs1.html#HeW06,https://doi.org/10.1109/TIFS.2006.873597 +Lilian Bossuet,"Comments on ""A PUF-FSM Binding Scheme for FPGA IP Protection and Pay-per-Device Licensing"".",2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#BossuetC16,https://doi.org/10.1109/TIFS.2016.2553454 +Jong-Uk Hou,Blind 3D Mesh Watermarking for 3D Printed Model by Analyzing Layering Artifact.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#HouKL17,https://doi.org/10.1109/TIFS.2017.2718482 +Kamal Taha,Using the Spanning Tree of a Criminal Network for Identifying Its Leaders.,2017,12,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs12.html#TahaY17,https://doi.org/10.1109/TIFS.2016.2622226 +Vaibhav Rastogi,Catch Me If You Can: Evaluating Android Anti-Malware Against Transformation Attacks.,2014,9,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs9.html#RastogiCJ14,https://doi.org/10.1109/TIFS.2013.2290431 +Matthew Edman,On the Security of Key Extraction From Measuring Physical Quantities.,2016,11,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs11.html#EdmanKTY16,https://doi.org/10.1109/TIFS.2016.2543687 +Dalwon Jang,Distance Metric Learning for Content Identification.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#JangYK10,https://doi.org/10.1109/TIFS.2010.2064769 +Sikhar Patranabis,Fault Space Transformation: A Generic Approach to Counter Differential Fault Analysis and Differential Fault Intensity Analysis on AES-Like Block Ciphers.,2017,12,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs12.html#PatranabisCMC17,https://doi.org/10.1109/TIFS.2016.2646638 +Iordanis Mpiperis,Bilinear Models for 3-D Face and Facial Expression Recognition.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#MpiperisMS08,https://doi.org/10.1109/TIFS.2008.924598 +Yuanman Li,SIFT Keypoint Removal via Directed Graph Construction for Color Images.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#LiZC17,https://doi.org/10.1109/TIFS.2017.2730362 +Xiaoyu Chu,Information Theoretical Limit of Media Forensics: The Forensicability.,2016,11,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs11.html#ChuCSL16,https://doi.org/10.1109/TIFS.2015.2510820 +Takao Murakami,Localization Attacks Using Matrix and Tensor Factorization.,2016,11,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs11.html#MurakamiW16,https://doi.org/10.1109/TIFS.2016.2547865 +Tairan Wang,Mutual Information Jammer-Relay Games.,2008,3,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs3.html#WangG08,https://doi.org/10.1109/TIFS.2008.920730 +Yan Zhao,Robust Hashing for Image Authentication Using Zernike Moments and Local Features.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#ZhaoWZY13,https://doi.org/10.1109/TIFS.2012.2223680 +Yongfeng Huang,Steganography in Inactive Frames of VoIP Streams Encoded by Source Codec.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#HuangTY11,https://doi.org/10.1109/TIFS.2011.2108649 +Tiziano Bianchi,TTP-Free Asymmetric Fingerprinting Based on Client Side Embedding.,2014,9,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs9.html#BianchiP14,https://doi.org/10.1109/TIFS.2014.2340581 +Cong Chen,Horizontal and Vertical Side Channel Analysis of a McEliece Cryptosystem.,2016,11,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs11.html#ChenEMS16,https://doi.org/10.1109/TIFS.2015.2509944 +Kai Cao 0001,Learning Fingerprint Reconstruction: From Minutiae to Image.,2015,10,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs10.html#0001J15,https://doi.org/10.1109/TIFS.2014.2363951 +Alireza Alaei,An Efficient Signature Verification Method Based on an Interval Symbolic Representation and a Fuzzy Similarity Measure.,2017,12,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs12.html#AlaeiPPB17,https://doi.org/10.1109/TIFS.2017.2707332 +Wael Louis,Continuous Authentication Using One-Dimensional Multi-Resolution Local Binary Patterns (1DMRLBP) in ECG Biometrics.,2016,11,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs11.html#LouisKH16,https://doi.org/10.1109/TIFS.2016.2599270 +E-yong Kim,Secure Interdomain Routing Registry.,2008,3,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs3.html#KimXNP08,https://doi.org/10.1109/TIFS.2008.922050 +Xiaoli Li 0004,A wavelet-PCA-based fingerprinting scheme for peer-to-peer video file sharing.,2010,5,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs5.html#LiKM10,https://doi.org/10.1109/TIFS.2010.2051255 +Vinod Pankajakshan,Detection of motion-incoherent components in video streams.,2009,4,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs4.html#PankajakshanDB09,https://doi.org/10.1109/TIFS.2008.2012199 +R. Raghavendra,Exploring the Usefulness of Light Field Cameras for Biometrics: An Empirical Study on Face and Iris Recognition.,2016,11,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs11.html#RaghavendraRB16,https://doi.org/10.1109/TIFS.2015.2512559 +Andrew Nadeau,An Audio Watermark Designed for Efficient and Robust Resynchronization After Analog Playback.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#NadeauS17,https://doi.org/10.1109/TIFS.2017.2661724 +Sina Lashgari,Secrecy DoF of Blind MIMOME Wiretap Channel With Delayed CSIT.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#LashgariA18,https://doi.org/10.1109/TIFS.2017.2756602 +Juan M. Estévez-Tapiador,On the Distinguishability of Distance-Bounded Permutations in Ordered Channels.,2008,3,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs3.html#Estevez-TapiadorCAR08,https://doi.org/10.1109/TIFS.2008.920724 +Tarique Anwar,Ranking Radically Influential Web Forum Users.,2015,10,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs10.html#AnwarA15,https://doi.org/10.1109/TIFS.2015.2407313 +Guilin Wang,An abuse-free fair contract-signing protocol based on the RSA signature.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#Wang10,https://doi.org/10.1109/TIFS.2009.2035972 +Radu Sion,Fighting Mallory the Insider: Strong Write-Once Read-Many Storage Assurances.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#SionC12,https://doi.org/10.1109/TIFS.2011.2172207 +Xinjian Chen,An algorithm for distorted fingerprint matching based on local triangle feature set.,2006,1,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs1.html#ChenTYZ06,https://doi.org/10.1109/TIFS.2006.873605 +Rodrigo Frassetto Nogueira,Fingerprint Liveness Detection Using Convolutional Neural Networks.,2016,11,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs11.html#NogueiraLM16,https://doi.org/10.1109/TIFS.2016.2520880 +Willy Susilo,EACSIP: Extendable Access Control System With Integrity Protection for Enhancing Collaboration in the Cloud.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#SusiloJGYYM17,https://doi.org/10.1109/TIFS.2017.2737960 +Xiaokui Shu,Fast Detection of Transformed Data Leaks.,2016,11,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs11.html#ShuZYF16,https://doi.org/10.1109/TIFS.2015.2503271 +Yang Wang,Revisiting Optimistic Fair Exchange Based on Ring Signatures.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#WangAS14,https://doi.org/10.1109/TIFS.2014.2354986 +Rig Das,Convolutional Neural Network for Finger-Vein-Based Biometric Identification.,2019,14,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs14.html#DasPMC19,https://doi.org/10.1109/TIFS.2018.2850320 +Natalia A. Schmid,Performance analysis of iris-based identification system at the matching score level.,2006,1,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs1.html#SchmidKSC06,https://doi.org/10.1109/TIFS.2006.873603 +Yajuan Tang,Modeling the Vulnerability of Feedback-Control Based Internet Services to Low-Rate DoS Attacks.,2014,9,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs9.html#TangLHC14,https://doi.org/10.1109/TIFS.2013.2291970 +Ke Li,Security Analysis on One-to-Many Order Preserving Encryption-Based Cloud Data Search.,2015,10,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs10.html#LiZYY15,https://doi.org/10.1109/TIFS.2015.2435697 +Elena Veronica Belmega,Protecting Secret Key Generation Systems Against Jamming: Energy Harvesting and Channel Hopping Approaches.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#BelmegaC17,https://doi.org/10.1109/TIFS.2017.2713342 +Siwei Lyu,Steganalysis using higher-order image statistics.,2006,1,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs1.html#LyuF06,https://doi.org/10.1109/TIFS.2005.863485 +Antitza Dantcheva,What Else Does Your Biometric Data Reveal? A Survey on Soft Biometrics.,2016,11,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs11.html#DantchevaER16,https://doi.org/10.1109/TIFS.2015.2480381 +Minoru Kuribayashi,Impact of Rounding Error on Spread Spectrum Fingerprinting Scheme.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#KuribayashiK10,https://doi.org/10.1109/TIFS.2010.2082535 +Jacob R. Scanlon,Forecasting Violent Extremist Cyber Recruitment.,2015,10,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs10.html#ScanlonG15,https://doi.org/10.1109/TIFS.2015.2464775 +Wei-Che Wang,Design and Analysis of Stability-Guaranteed PUFs.,2018,13,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs13.html#WangYDG18,https://doi.org/10.1109/TIFS.2017.2774761 +Jung Hee Cheon,A Hybrid Scheme of Public-Key Encryption and Somewhat Homomorphic Encryption.,2015,10,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs10.html#CheonK15,https://doi.org/10.1109/TIFS.2015.2398359 +Yu-Hao Chin,Speaker Identification Using Discriminative Features and Sparse Representation.,2017,12,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs12.html#ChinWHWW17,https://doi.org/10.1109/TIFS.2017.2678458 +Mohammad Sayad Haghighi,On the Race of Worms and Patches: Modeling the Spread of Information in Wireless Sensor Networks.,2016,11,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs11.html#HaghighiWXQZ16,https://doi.org/10.1109/TIFS.2016.2594130 +Matteo Ferrara,Face Image Conformance to ISO/ICAO Standards in Machine Readable Travel Documents.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#FerraraFMM12,https://doi.org/10.1109/TIFS.2012.2198643 +Himanshu S. Bhatt,Recognizing Surgically Altered Face Images Using Multiobjective Evolutionary Algorithm.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#BhattBSV13,https://doi.org/10.1109/TIFS.2012.2223684 +Po-Chyi Su,Geometrically Resilient Digital Image Watermarking by Using Interest Point Extraction and Extended Pilot Signals.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#SuCW13,https://doi.org/10.1109/TIFS.2013.2282121 +Sotiris Malassiotis,Personal authentication using 3-D finger geometry.,2006,1,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs1.html#MalassiotisAS06,https://doi.org/10.1109/TIFS.2005.863508 +Pascal Schöttle,Game Theory and Adaptive Steganography.,2016,11,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs11.html#SchottleB16,https://doi.org/10.1109/TIFS.2015.2509941 +Sunpreet S. Arora,Design and Fabrication of 3D Fingerprint Targets.,2016,11,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs11.html#Arora0JP16,https://doi.org/10.1109/TIFS.2016.2581306 +Ritendra Datta,Exploiting the human-machine gap in image recognition for designing CAPTCHAs.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#DattaLW09,https://doi.org/10.1109/TIFS.2009.2022709 +Russell A. Fink,TPM meets DRE: reducing the trust base for electronic voting using trusted platform modules.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#FinkSC09,https://doi.org/10.1109/TIFS.2009.2034900 +Lan Zhou,Trust Enhanced Cryptographic Role-Based Access Control for Secure Cloud Data Storage.,2015,10,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs10.html#ZhouVH15,https://doi.org/10.1109/TIFS.2015.2455952 +Chao Yang,Empirical Evaluation and New Design for Fighting Evolving Twitter Spammers.,2013,8,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs8.html#YangHG13,https://doi.org/10.1109/TIFS.2013.2267732 +Yu Zhu,Still-to-Video Face Matching Using Multiple Geodesic Flows.,2016,11,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs11.html#ZhuLMSG16,https://doi.org/10.1109/TIFS.2016.2601060 +Ode Ojowu,ENF Extraction From Digital Recordings Using Adaptive Techniques and Frequency Tracking.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#OjowuKLL12,https://doi.org/10.1109/TIFS.2012.2197391 +Yi Cheng Feng,A hybrid approach for generating secure and discriminating face template.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#FengYJ10,https://doi.org/10.1109/TIFS.2009.2038760 +Zhaohong Wang,Information-Theoretic Secure Multi-Party Computation With Collusion Deterrence.,2017,12,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs12.html#WangCL17,https://doi.org/10.1109/TIFS.2016.2598533 +Tomás Pevný,Steganalysis by subtractive pixel adjacency matrix.,2010,5,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs5.html#PevnyBF10,https://doi.org/10.1109/TIFS.2010.2045842 +Ning Zhang 0017,Memory Forensic Challenges Under Misused Architectural Features.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#ZhangZSLHJ18,https://doi.org/10.1109/TIFS.2018.2819119 +Yier Jin,Data Secrecy Protection Through Information Flow Tracking in Proof-Carrying Hardware IP - Part I: Framework Fundamentals.,2017,12,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs12.html#JinGDBM17,https://doi.org/10.1109/TIFS.2017.2707323 +Michail Tsikerdekis,Identity Deception Prevention Using Common Contribution Network Data.,2017,12,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs12.html#Tsikerdekis17,https://doi.org/10.1109/TIFS.2016.2607697 +Vincenzo Matta,Cyber-Threat Mitigation Exploiting the Birth-Death-Immigration Model.,2018,13,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs13.html#MattaMLF18,https://doi.org/10.1109/TIFS.2018.2838084 +Sheng Gao,TrPF: A Trajectory Privacy-Preserving Framework for Participatory Sensing.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#GaoMSZS13,https://doi.org/10.1109/TIFS.2013.2252618 +Bin Dai 0003,Finite State Markov Wiretap Channel With Delayed Feedback.,2017,12,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs12.html#DaiML17,https://doi.org/10.1109/TIFS.2016.2636085 +Arfika Nurhudatiana,The Individuality of Relatively Permanent Pigmented or Vascular Skin Marks (RPPVSM) in Independently and Uniformly Distributed Patterns.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#NurhudatianaKMCACC13,https://doi.org/10.1109/TIFS.2013.2258338 +Ronny Merkel,A First Public Research Collection of High-Resolution Latent Fingerprint Time Series for Short- and Long-Term Print Age Estimation.,2017,12,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs12.html#MerkelDV17,https://doi.org/10.1109/TIFS.2017.2705622 +Chin-Chen Chang 0001,A Novel Electronic English Auction System With a Secure On-Shelf Mechanism.,2013,8,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs8.html#ChangCC13,https://doi.org/10.1109/TIFS.2013.2250431 +Diksha Golait,Detecting Anomalous Behavior in VoIP Systems: A Discrete Event System Modeling.,2017,12,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs12.html#GolaitH17,https://doi.org/10.1109/TIFS.2016.2632071 +Xinpeng Zhang,Separable Reversible Data Hiding in Encrypted Image.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#Zhang12a,https://doi.org/10.1109/TIFS.2011.2176120 +David P. Montminy,Differential Electromagnetic Attacks on a 32-bit Microprocessor Using Software Defined Radios.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#MontminyBTO13,https://doi.org/10.1109/TIFS.2013.2287600 +Mun-Kyu Lee,Security Notions and Advanced Method for Human Shoulder-Surfing Resistant PIN-Entry.,2014,9,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs9.html#Lee14,https://doi.org/10.1109/TIFS.2014.2307671 +Ghassan Karame,On the Security of End-to-End Measurements Based on Packet-Pair Dispersions.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#KarameDBC13,https://doi.org/10.1109/TIFS.2012.2226579 +Pietro Guccione,Hyperbolic RDM for nonlinear valumetric distortions.,2009,4,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs4.html#GuccioneS09,https://doi.org/10.1109/TIFS.2008.2011080 +Jun Zhao 0007,On Resilience and Connectivity of Secure Wireless Sensor Networks Under Node Capture Attacks.,2017,12,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs12.html#Zhao17,https://doi.org/10.1109/TIFS.2016.2613841 +Amir Ameli,Attack Detection for Load Frequency Control Systems Using Stochastic Unknown Input Estimators.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#AmeliHYEY18,https://doi.org/10.1109/TIFS.2018.2824253 +Erkam Uzun,Carving Orphaned JPEG File Fragments.,2015,10,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs10.html#UzunS15,https://doi.org/10.1109/TIFS.2015.2416685 +Karen Hollingsworth,Human and Machine Performance on Periocular Biometrics Under Near-Infrared Light and Visible Light.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#HollingsworthDMWBF12,https://doi.org/10.1109/TIFS.2011.2173932 +Seungwon Shin,A First Step Toward Network Security Virtualization: From Concept To Prototype.,2015,10,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs10.html#ShinWG15,https://doi.org/10.1109/TIFS.2015.2453936 +Yang Hu 0004,Optimal Generation of Iris Codes for Iris Recognition.,2017,12,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs12.html#HuSH17,https://doi.org/10.1109/TIFS.2016.2606083 +Amin Merati,User-Specific Cohort Selection and Score Normalization for Biometric Systems.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#MeratiPK12,https://doi.org/10.1109/TIFS.2012.2198469 +Jing (Dave) Tian,Securing ARP/NDP From the Ground Up.,2017,12,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs12.html#TianBCMK17,https://doi.org/10.1109/TIFS.2017.2695983 +Ajay Kumar 0001,Personal Identification Using Minor Knuckle Patterns From Palm Dorsal Surface.,2016,11,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs11.html#KumarX16,https://doi.org/10.1109/TIFS.2016.2574309 +Mohammad Mahdi Khalili,Designing Cyber Insurance Policies: The Role of Pre-Screening and Security Interdependence.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#KhaliliNL18,https://doi.org/10.1109/TIFS.2018.2812205 +Julien Bringer,Theoretical and Practical Boundaries of Binary Secure Sketches.,2008,3,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs3.html#BringerCCKZ08,https://doi.org/10.1109/TIFS.2008.2002937 +Hao Wu 0008,A Game Theory Based Collaborative Security Detection Method for Internet of Things Systems.,2018,13,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs13.html#WuW18,https://doi.org/10.1109/TIFS.2018.2790382 +Gaurav Goswami,Face Verification via Learned Representation on Feature-Rich Video Frames.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#GoswamiVS17,https://doi.org/10.1109/TIFS.2017.2668221 +Kaitai Liang,Privacy-Preserving Ciphertext Multi-Sharing Control for Big Data Storage.,2015,10,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs10.html#LiangSL15,https://doi.org/10.1109/TIFS.2015.2419186 +Jessica J. Fridrich,Wet paper codes with improved embedding efficiency.,2006,1,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs1.html#FridrichGS06,https://doi.org/10.1109/TIFS.2005.863487 +Li Zhang,A Pragmatic Per-Device Licensing Scheme for Hardware IP Cores on SRAM-Based FPGAs.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#ZhangC14,https://doi.org/10.1109/TIFS.2014.2355043 +Haowei Wang,Polar Coding for the Wiretap Channel With Shared Key.,2018,13,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs13.html#WangTLH18,https://doi.org/10.1109/TIFS.2017.2774499 +Xueqing Gong,A Zigzag-Decodable Ramp Secret Sharing Scheme.,2018,13,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs13.html#GongHSS18,https://doi.org/10.1109/TIFS.2018.2806922 +Andrey Garnaev,One-Time Spectrum Coexistence in Dynamic Spectrum Access When the Secondary User May Be Malicious.,2015,10,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs10.html#GarnaevT15,https://doi.org/10.1109/TIFS.2015.2398360 +Sebastiano Battiato,Robust Image Alignment for Tampering Detection.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#BattiatoFMP12,https://doi.org/10.1109/TIFS.2012.2194285 +Chao Shen 0001,User Authentication Through Mouse Dynamics.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#ShenCGDM13,https://doi.org/10.1109/TIFS.2012.2223677 +Mohammad Hashem Haghighat,Payload Attribution via Character Dependent Multi-Bloom Filters.,2013,8,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs8.html#HaghighatTK13,https://doi.org/10.1109/TIFS.2013.2252341 +Xiangqian Wu,Offline Text-Independent Writer Identification Based on Scale Invariant Feature Transform.,2014,9,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs9.html#WuTB14,https://doi.org/10.1109/TIFS.2014.2301274 +Aditi Roy,MasterPrint: Exploring the Vulnerability of Partial Fingerprint-Based Authentication Systems.,2017,12,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs12.html#RoyMR17,https://doi.org/10.1109/TIFS.2017.2691658 +David A. Karpuk,Perfect Secrecy in Physical-Layer Network Coding Systems From Structured Interference.,2016,11,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs11.html#KarpukC16,https://doi.org/10.1109/TIFS.2016.2563165 +Parthajit Mohapatra,Secure Communications for the Two-User Broadcast Channel With Random Traffic.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#MohapatraPLQA18,https://doi.org/10.1109/TIFS.2018.2818076 +Jianting Ning,Auditable and#963*-Time Outsourced Attribute-Based Encryption for Access Control in Cloud Computing.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#NingCDLMW18,https://doi.org/10.1109/TIFS.2017.2738601 +Pranab K. Mohanty,Subspace Approximation of Face Recognition Algorithms: An Empirical Study.,2008,3,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs3.html#MohantySKP08,https://doi.org/10.1109/TIFS.2008.2007242 +Zhen Liu,Traceable CP-ABE: How to Trace Decryption Devices Found in the Wild.,2015,10,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs10.html#LiuCW15a,https://doi.org/10.1109/TIFS.2014.2363562 +Huaqun Wang,Identity-Based Proxy-Oriented Data Uploading and Remote Data Integrity Checking in Public Cloud.,2016,11,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs11.html#WangHT16,https://doi.org/10.1109/TIFS.2016.2520886 +Hidehisa Nakayama,Network-based traitor-tracing technique using traffic pattern.,2010,5,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs5.html#NakayamaJK10,https://doi.org/10.1109/TIFS.2010.2046961 +Nasir D. Memon,Editorial.,2009,4,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs4.html#Memon09,https://doi.org/10.1109/TIFS.2009.2014407 +Anthony Tung Shuen Ho,Fragile Watermarking Based on Encoding of the Zeroes of the z-Transform.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#HoZSM08,https://doi.org/10.1109/TIFS.2008.926994 +Somnath Dey,Iris Data Indexing Method Using Gabor Energy Features.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#DeyS12,https://doi.org/10.1109/TIFS.2012.2196515 +Alfredo Rial,A Privacy-Preserving Buyer-Seller Watermarking Protocol Based on Priced Oblivious Transfer.,2011,6,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs6.html#RialBP11,https://doi.org/10.1109/TIFS.2010.2095844 +Thijs Laarhoven,Asymptotics of Fingerprinting and Group Testing: Tight Bounds From Channel Capacities.,2015,10,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs10.html#Laarhoven15,https://doi.org/10.1109/TIFS.2015.2440190 +João P. Vilela,Wireless Secrecy Regions With Friendly Jamming.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#VilelaBBM11,https://doi.org/10.1109/TIFS.2011.2111370 +Mu Li,Compact Video Fingerprinting via Structural Graphical Models.,2013,8,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs8.html#LiM13,https://doi.org/10.1109/TIFS.2013.2278100 +Evgeny A. Verbitskiy,Key extraction from general nondiscrete signals.,2010,5,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs5.html#VerbitskiyTOSS10,https://doi.org/10.1109/TIFS.2010.2046965 +Yuan Hong,Privacy Preserving Smart Meter Streaming Against Information Leakage of Appliance Status.,2017,12,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs12.html#HongLW17,https://doi.org/10.1109/TIFS.2017.2704904 +Ning Wang,Cooperative Key Agreement for Wireless Networking: Key Rates and Practical Protocol Design.,2014,9,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs9.html#WangZG14,https://doi.org/10.1109/TIFS.2013.2293113 +Xiaoming Xu,Secure Transmission Design for Cognitive Radio Networks With Poisson Distributed Eavesdroppers.,2016,11,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs11.html#XuHYZC16,https://doi.org/10.1109/TIFS.2015.2500178 +Boris Skoric,The Spammed Code Offset Method.,2014,9,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs9.html#SkoricV14,https://doi.org/10.1109/TIFS.2014.2312851 +Assia Hamadene,One-Class Writer-Independent Offline Signature Verification Using Feature Dissimilarity Thresholding.,2016,11,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs11.html#HamadeneC16,https://doi.org/10.1109/TIFS.2016.2521611 +Mohammad-Mahdi Bidmeshki,Data Secrecy Protection Through Information Flow Tracking in Proof-Carrying Hardware IP - Part II: Framework Automation.,2017,12,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs12.html#BidmeshkiGDJM17,https://doi.org/10.1109/TIFS.2017.2707327 +Chau-Wai Wong,Counterfeit Detection Based on Unclonable Feature of Paper Using Mobile Camera.,2017,12,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs12.html#Wong017,https://doi.org/10.1109/TIFS.2017.2694404 +Weiming Zhang,Generalization of the ZZW embedding construction for steganography.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#ZhangW09,https://doi.org/10.1109/TIFS.2009.2024720 +Jung Yeon Hwang,Short Dynamic Group Signature Scheme Supporting Controllable Linkability.,2015,10,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs10.html#HwangCCN15,https://doi.org/10.1109/TIFS.2015.2390497 +Himanshu S. Bhatt,Memetically Optimized MCWLD for Matching Sketches With Digital Face Images.,2012,7,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs7.html#BhattBSV12,https://doi.org/10.1109/TIFS.2012.2204252 +Zohaib Hassan Awan,Secure Communication Over Parallel Relay Channel.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#AwanZV12,https://doi.org/10.1109/TIFS.2012.2185493 +Junzuo Lai,Attribute-Based Encryption With Verifiable Outsourced Decryption.,2013,8,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs8.html#LaiDGW13,https://doi.org/10.1109/TIFS.2013.2271848 +Fei Chen 0003,Secure Hashing-Based Verifiable Pattern Matching.,2018,13,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs13.html#ChenWLCMLDWQ18,https://doi.org/10.1109/TIFS.2018.2825141 +Vahid Sedighi,Content-Adaptive Steganography by Minimizing Statistical Detectability.,2016,11,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs11.html#SedighiCF16,https://doi.org/10.1109/TIFS.2015.2486744 +Yunlian Sun,Complementary Cohort Strategy for Multimodal Face Pair Matching.,2016,11,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs11.html#SunNST16,https://doi.org/10.1109/TIFS.2015.2512561 +Sarat C. Dass,Assessing fingerprint individuality in presence of noisy minutiae.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#Dass10,https://doi.org/10.1109/TIFS.2009.2039598 +Zhongmin Wang,Halftone visual cryptography via error diffusion.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#WangAC09,https://doi.org/10.1109/TIFS.2009.2024721 +Erik Miehling,A POMDP Approach to the Dynamic Defense of Large-Scale Cyber Networks.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#MiehlingRT18,https://doi.org/10.1109/TIFS.2018.2819967 +Kathryn Bonnen,Component-Based Representation in Automated Face Recognition.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#BonnenKJ13,https://doi.org/10.1109/TIFS.2012.2226580 +Javier Franco-Contreras,Robust Watermarking of Relational Databases With Ontology-Guided Distortion Control.,2015,10,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs10.html#Franco-Contreras15,https://doi.org/10.1109/TIFS.2015.2439962 +Saman Feghhi,An Efficient Web Traffic Defence Against Timing-Analysis Attacks.,2019,14,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs14.html#FeghhiL19,https://doi.org/10.1109/TIFS.2018.2855655 +Matthias Kirchner,Hiding Traces of Resampling in Digital Images.,2008,3,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs3.html#KirchnerB08,https://doi.org/10.1109/TIFS.2008.2008214 +Le Zhang,Highly Reliable Spin-Transfer Torque Magnetic RAM-Based Physical Unclonable Function With Multi-Response-Bits Per Cell.,2015,10,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs10.html#ZhangFCKR15,https://doi.org/10.1109/TIFS.2015.2421481 +Alireza Jolfaei,On the Security of Permutation-Only Image Encryption Schemes.,2016,11,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs11.html#JolfaeiWM16,https://doi.org/10.1109/TIFS.2015.2489178 +Patrizio Campisi,Editorial.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#Campisi18,https://doi.org/10.1109/TIFS.2017.2788318 +Simson L. Garfinkel,An Automated Solution to the Multiuser Carved Data Ascription Problem.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#GarfinkelPHM10,https://doi.org/10.1109/TIFS.2010.2060484 +Nianfeng Liu,A Code-Level Approach to Heterogeneous Iris Recognition.,2017,12,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs12.html#LiuLST17,https://doi.org/10.1109/TIFS.2017.2686013 +Wei Wang 0012,Exploring Permission-Induced Risk in Android Applications for Malicious Application Detection.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#WangWFLHZ14,https://doi.org/10.1109/TIFS.2014.2353996 +Kan Chen,Secret Key Generation Rate With Power Allocation in Relay-Based LTE-A Networks.,2015,10,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs10.html#ChenNS15,https://doi.org/10.1109/TIFS.2015.2462756 +Guang Hua,Cepstral Analysis for the Application of Echo-Based Audio Watermark Detection.,2015,10,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs10.html#HuaGT15,https://doi.org/10.1109/TIFS.2015.2431997 +Yuan Zhang 0004,Privacy-Preserving Data Aggregation in Mobile Phone Sensing.,2016,11,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs11.html#ZhangCZ16,https://doi.org/10.1109/TIFS.2016.2515513 +Shaoquan Jiang,Keyless Authentication in a Noisy Model.,2014,9,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs9.html#Jiang14,https://doi.org/10.1109/TIFS.2014.2320634 +Jinho Choi 0001,On Channel-Aware Secure HARQ-IR.,2017,12,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs12.html#Choi17,https://doi.org/10.1109/TIFS.2016.2613846 +Lichun Li,Privacy-Preserving-Outsourced Association Rule Mining on Vertically Partitioned Databases.,2016,11,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs11.html#LiLCDS16,https://doi.org/10.1109/TIFS.2016.2561241 +Hung-Min Sun,On the security of the secure arithmetic code.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#SunWT09,https://doi.org/10.1109/TIFS.2009.2031944 +Nima Tavangaran,Secret-Key Generation Using Compound Sources and One-Way Public Communication.,2017,12,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs12.html#TavangaranBS17,https://doi.org/10.1109/TIFS.2016.2611484 +Mengyun Tang,Research on Deep Learning Techniques in Breaking Text-Based Captchas and Designing Image-Based Captcha.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#TangGZLZW18,https://doi.org/10.1109/TIFS.2018.2821096 +Kede Ma,Reversible Data Hiding in Encrypted Images by Reserving Room Before Encryption.,2013,8,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs8.html#MaZZYL13,https://doi.org/10.1109/TIFS.2013.2248725 +Hee-seung Choi,Mosaicing touchless and mirror-reflected fingerprint images.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#ChoiCK10,https://doi.org/10.1109/TIFS.2009.2038758 +Yuan Zhang,Permission Use Analysis for Vetting Undesirable Behaviors in Android Apps.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#ZhangYYGNZ14,https://doi.org/10.1109/TIFS.2014.2347206 +Igor Bilogrevic,Privacy-Preserving Optimal Meeting Location Determination on Mobile Devices.,2014,9,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs9.html#BilogrevicJJKHA14,https://doi.org/10.1109/TIFS.2014.2318435 +Yuan Cao,A Cluster-Based Distributed Active Current Sensing Circuit for Hardware Trojan Detection.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#CaoCC14,https://doi.org/10.1109/TIFS.2014.2360432 +Azzam Al-Nahari,Beamforming With Artificial Noise for Secure MISOME Cognitive Radio Transmissions.,2018,13,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs13.html#Al-NahariGAAY18,https://doi.org/10.1109/TIFS.2018.2797055 +Jun Du,Community-Structured Evolutionary Game for Privacy Protection in Social Networks.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#DuJCRP18,https://doi.org/10.1109/TIFS.2017.2758756 +Xuan Zha,Collaborative Authentication in Decentralized Dense Mobile Networks With Key Predistribution.,2017,12,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs12.html#ZhaNZLN17,https://doi.org/10.1109/TIFS.2017.2705584 +Mehdi Boroumand,Applications of Explicit Non-Linear Feature Maps in Steganalysis.,2018,13,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs13.html#BoroumandF18,https://doi.org/10.1109/TIFS.2017.2766580 +Mario Frank,Touchalytics: On the Applicability of Touchscreen Input as a Behavioral Biometric for Continuous Authentication.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#FrankBMMS13,https://doi.org/10.1109/TIFS.2012.2225048 +Yihai Zhu,Resilience Analysis of Power Grids Under the Sequential Attack.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#ZhuYTSH14,https://doi.org/10.1109/TIFS.2014.2363786 +Asem M. Ali,A 3D-Based Pose Invariant Face Recognition at a Distance Framework.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#Ali14,https://doi.org/10.1109/TIFS.2014.2362299 +Xuefeng Liang,A Robust Fingerprint Indexing Scheme Using Minutia Neighborhood Structure and Low-Order Delaunay Triangles.,2007,2,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs2.html#LiangBA07,https://doi.org/10.1109/TIFS.2007.910242 +Di Wen,Face Spoof Detection With Image Distortion Analysis.,2015,10,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs10.html#WenHJ15,https://doi.org/10.1109/TIFS.2015.2400395 +Gaurav Bansod,Implementation of a New Lightweight Encryption Design for Embedded Security.,2015,10,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs10.html#BansodRP15,https://doi.org/10.1109/TIFS.2014.2365734 +Linjie Guo,Using Statistical Image Model for JPEG Steganography: Uniform Embedding Revisited.,2015,10,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs10.html#GuoNSTS15,https://doi.org/10.1109/TIFS.2015.2473815 +Jianhua Liu,Energy-Efficient Two-Layer Cooperative Defense Scheme to Secure Sensor-Clouds.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#LiuYS18,https://doi.org/10.1109/TIFS.2017.2756344 +Tiziano Bianchi,Detection of Nonaligned Double JPEG Compression Based on Integer Periodicity Maps.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#BianchiP12,https://doi.org/10.1109/TIFS.2011.2170836 +Yu-Feng Hsu,Camera Response Functions for Image Forensics: An Automatic Algorithm for Splicing Detection.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#HsuC10,https://doi.org/10.1109/TIFS.2010.2077628 +Shaoquan Jiang,(Im)possibility of Deterministic Commitment Over a Discrete Memoryless Channel.,2014,9,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs9.html#Jiang14a,https://doi.org/10.1109/TIFS.2014.2335113 +Hua Sun,Optimal Download Cost of Private Information Retrieval for Arbitrary Message Length.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#SunJ17,https://doi.org/10.1109/TIFS.2017.2725225 +Napa Sae-Bae,Multitouch Gesture-Based Authentication.,2014,9,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs9.html#Sae-BaeMIA14,https://doi.org/10.1109/TIFS.2014.2302582 +Xinwei Qiu,Finger Vein Presentation Attack Detection Using Total Variation Decomposition.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#QiuKTJH18,https://doi.org/10.1109/TIFS.2017.2756598 +Worapan Kusakunniran,Recognizing Gaits on Spatio-Temporal Feature Domain.,2014,9,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs9.html#Kusakunniran14,https://doi.org/10.1109/TIFS.2014.2336379 +Xiaotian Wu,Extended Capabilities for XOR-Based Visual Cryptography.,2014,9,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs9.html#WuS14,https://doi.org/10.1109/TIFS.2014.2346014 +Jingchao Chen,Joint Relay and Jammer Selection for Secure Two-Way Relay Networks.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#ChenZSHJ12,https://doi.org/10.1109/TIFS.2011.2166386 +Yubao Zhang,Twitter Trends Manipulation: A First Look Inside the Security of Twitter Trending.,2017,12,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs12.html#ZhangRWWH17,https://doi.org/10.1109/TIFS.2016.2604226 +Sri-Kaushik Pavani,An Experimental Evaluation of Three Classifiers for Use in Self-Updating Face Recognition Systems.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#PavaniSGBPF12,https://doi.org/10.1109/TIFS.2012.2186292 +Yuanwen Huang,Scalable Test Generation for Trojan Detection Using Side Channel Analysis.,2018,13,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs13.html#HuangBM18,https://doi.org/10.1109/TIFS.2018.2833059 +Ashkan Kalantari,Secrecy Analysis on Network Coding in Bidirectional Multibeam Satellite Communications.,2015,10,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs10.html#KalantariZGHO15,https://doi.org/10.1109/TIFS.2015.2432732 +Yuhong Liu,Efficiently Promoting Product Online Outcome: An Iterative Rating Attack Utilizing Product and Market Property.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#LiuZC17,https://doi.org/10.1109/TIFS.2017.2668992 +Yi-Lei Chen,Subspace Learning for Facial Age Estimation Via Pairwise Age Ranking.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#ChenH13,https://doi.org/10.1109/TIFS.2013.2286265 +Lei Xue,LinkScope: Toward Detecting Target Link Flooding Attacks.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#XueMLCMG18,https://doi.org/10.1109/TIFS.2018.2815555 +Wenjun Gu,Scaling Laws of Key Predistribution Protocols in Wireless Sensor Networks.,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#GuCBW11,https://doi.org/10.1109/TIFS.2011.2159001 +Zanoni Dias,Image Phylogeny by Minimal Spanning Trees.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#DiasRG12,https://doi.org/10.1109/TIFS.2011.2169959 +William E. Cobb,Intrinsic Physical-Layer Authentication of Integrated Circuits.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#CobbLBTK12,https://doi.org/10.1109/TIFS.2011.2160170 +Xiaohong Guan,Dynamic Feature Analysis and Measurement for Large-Scale Network Traffic Monitoring.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#GuanQLW10,https://doi.org/10.1109/TIFS.2010.2066970 +Mauro Mangia,Low-Cost Security of IoT Sensor Nodes With Rakeness-Based Compressed Sensing: Statistical and Known-Plaintext Attacks.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#MangiaPRS18,https://doi.org/10.1109/TIFS.2017.2749982 +Asma Rabaoui,Using One-Class SVMs and Wavelets for Audio Surveillance.,2008,3,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs3.html#RabaouiDRE08,https://doi.org/10.1109/TIFS.2008.2008216 +Yun-Fu Liu,Sample Space Dimensionality Refinement for Symmetrical Object Detection.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#LiuGHSL14,https://doi.org/10.1109/TIFS.2014.2355495 +Alexandros Iosifidis,Activity-Based Person Identification Using Fuzzy Representation and Discriminant Learning.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#IosifidisTP12,https://doi.org/10.1109/TIFS.2011.2175921 +Hu Xiong,Cost-Effective Scalable and Anonymous Certificateless Remote Authentication Protocol.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#Xiong14,https://doi.org/10.1109/TIFS.2014.2363553 +Stefano Tomasin,Resource Allocation for Secret Key Agreement Over Parallel Channels With Full and Partial Eavesdropper CSI.,2015,10,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs10.html#TomasinD15,https://doi.org/10.1109/TIFS.2015.2455412 +Parinaz Naghizadeh,Opting Out of Incentive Mechanisms: A Study of Security as a Non-Excludable Public Good.,2016,11,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs11.html#NaghizadehL16,https://doi.org/10.1109/TIFS.2016.2599005 +Siavash Bayat,Physical-Layer Security in Distributed Wireless Networks Using Matching Theory.,2013,8,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs8.html#BayatLHVL13,https://doi.org/10.1109/TIFS.2013.2251335 +Francesco Marra,Blind PRNU-Based Image Clustering for Source Identification.,2017,12,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs12.html#MarraPSV17,https://doi.org/10.1109/TIFS.2017.2701335 +Peng Xu 0003,Generating Searchable Public-Key Ciphertexts With Hidden Structures for Fast Keyword Search.,2015,10,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs10.html#XuWWSDJ15,https://doi.org/10.1109/TIFS.2015.2442220 +Vincent Y. F. Tan,Information Spectrum Approach to Strong Converse Theorems for Degraded Wiretap Channels.,2015,10,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs10.html#TanB15,https://doi.org/10.1109/TIFS.2015.2434592 +Norman Poh,Benchmarking quality-dependent and cost-sensitive score-level multimodal biometric fusion algorithms.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#PohBKAAABDFFGOMSSV09,https://doi.org/10.1109/TIFS.2009.2034885 +Félix Balado,Performance Analysis of Robust Audio Hashing.,2007,2,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs2.html#BaladoHMS07,https://doi.org/10.1109/TIFS.2007.897258 +Jia Yu,Strong Key-Exposure Resilient Auditing for Secure Cloud Storage.,2017,12,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs12.html#YuW17,https://doi.org/10.1109/TIFS.2017.2695449 +Meng-Hui Lim,An Analytic Performance Estimation Framework for Multibit Biometric Discretization Based on Equal-Probable Quantization and Linearly Separable Subcode Encoding.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#LimT12,https://doi.org/10.1109/TIFS.2012.2191962 +Shih-Chun Lin,Coded Quickest Classification With Applications in Bandwidth-Efficient Smart Grid Monitoring.,2018,13,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs13.html#LinLHSC18,https://doi.org/10.1109/TIFS.2018.2837658 +Song Fang,Mimicry Attacks Against Wireless Link Signature and New Defense Using Time-Synched Link Signature.,2016,11,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs11.html#FangLN16,https://doi.org/10.1109/TIFS.2016.2541307 +Adi Hajj-Ahmad,Flicker Forensics for Camcorder Piracy.,2017,12,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs12.html#Hajj-AhmadBCDW17,https://doi.org/10.1109/TIFS.2016.2603603 +Saeedreza Shehnepoor,NetSpam: A Network-Based Spam Detection Framework for Reviews in Online Social Media.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#ShehnepoorSFC17,https://doi.org/10.1109/TIFS.2017.2675361 +Vivek Balachandran,Potent and Stealthy Control Flow Obfuscation by Stack Based Self-Modifying Code.,2013,8,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs8.html#BalachandranE13,https://doi.org/10.1109/TIFS.2013.2250964 +Renwei Ge,Approximate Message Authentication Codes for N-ary Alphabets.,2006,1,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs1.html#GeAC06,https://doi.org/10.1109/TIFS.2005.863504 +Zhenhua Guo 0001,Feature Band Selection for Online Multispectral Palmprint Recognition.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#GuoZZL12,https://doi.org/10.1109/TIFS.2012.2189206 +Fabio Pareschi,On Statistical Tests for Randomness Included in the NIST SP800-22 Test Suite and Based on the Binomial Distribution.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#PareschiRS12,https://doi.org/10.1109/TIFS.2012.2185227 +Lin Chen 0002,A game theoretical framework on intrusion detection in heterogeneous networks.,2009,4,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs4.html#ChenL09,https://doi.org/10.1109/TIFS.2009.2019154 +Xi Zhang,Enhancing Secrecy With Multi-Antenna Transmission in Wireless Ad Hoc Networks.,2013,8,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs8.html#ZhangZM13,https://doi.org/10.1109/TIFS.2013.2279842 +Bin Li 0011,A Strategy of Clustering Modification Directions in Spatial Image Steganography.,2015,10,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs10.html#LiWLTH15,https://doi.org/10.1109/TIFS.2015.2434600 +Yonggang Huang,Camera Model Identification With Unknown Models.,2015,10,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs10.html#HuangZH15,https://doi.org/10.1109/TIFS.2015.2474836 +Neil Zhenqiang Gong,SybilBelief: A Semi-Supervised Learning Approach for Structure-Based Sybil Detection.,2014,9,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs9.html#GongFM14,https://doi.org/10.1109/TIFS.2014.2316975 +Fei Peng,An ROI Privacy Protection Scheme for H.264 Video Based on FMO and Chaos.,2013,8,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs8.html#PengZL13,https://doi.org/10.1109/TIFS.2013.2259819 +Yazhuo Gong,An Optimized Wavelength Band Selection for Heavily Pigmented Iris Recognition.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#GongZSY13,https://doi.org/10.1109/TIFS.2012.2223682 +Yang Hu 0004,Signal-Level Information Fusion for Less Constrained Iris Recognition Using Sparse-Error Low Rank Matrix Factorization.,2016,11,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs11.html#HuSH16,https://doi.org/10.1109/TIFS.2016.2541612 +Yingbo Zhou,Human Identification Using Palm-Vein Images.,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#ZhouK11,https://doi.org/10.1109/TIFS.2011.2158423 +Zhen Liu,White-Box Traceable Ciphertext-Policy Attribute-Based Encryption Supporting Any Monotone Access Structures.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#LiuCW13,https://doi.org/10.1109/TIFS.2012.2223683 +Hung-Min Sun,oPass: A User Authentication Protocol Resistant to Password Stealing and Password Reuse Attacks.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#SunCL12,https://doi.org/10.1109/TIFS.2011.2169958 +Stanislaw Jarecki,On the Insecurity of Proactive RSA in the URSA Mobile Ad Hoc Network Access Control Protocol.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#JareckiS10,https://doi.org/10.1109/TIFS.2010.2058104 +Tao Zhang 0011,Dynamic Differential Privacy for ADMM-Based Distributed Classification Learning.,2017,12,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs12.html#ZhangZ17,https://doi.org/10.1109/TIFS.2016.2607691 +André Schaller,Eliminating Leakage in Reverse Fuzzy Extractors.,2018,13,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs13.html#SchallerSSK18,https://doi.org/10.1109/TIFS.2017.2774500 +Shreyas Venugopalan,How to Generate Spoofed Irises From an Iris Code Template.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#VenugopalanS11,https://doi.org/10.1109/TIFS.2011.2108288 +Jongkil Kim,Adaptively Secure Identity-Based Broadcast Encryption With a Constant-Sized Ciphertext.,2015,10,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs10.html#KimSAS15,https://doi.org/10.1109/TIFS.2014.2388156 +Fengyong Li,Steganalysis Over Large-Scale Social Networks With High-Order Joint Features and Clustering Ensembles.,2016,11,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs11.html#LiWLWBG16,https://doi.org/10.1109/TIFS.2015.2496910 +Lan Zhou,Achieving Secure Role-Based Access Control on Encrypted Data in Cloud Storage.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#ZhouVH13,https://doi.org/10.1109/TIFS.2013.2286456 +Haris B. C.,Robust Speaker Verification With Joint Sparse Coding Over Learned Dictionaries.,2015,10,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs10.html#CS15,https://doi.org/10.1109/TIFS.2015.2450674 +Hussein Moosavi,Delay-Aware Optimization of Physical Layer Security in Multi-Hop Wireless Body Area Networks.,2016,11,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs11.html#MoosaviB16,https://doi.org/10.1109/TIFS.2016.2566446 +Paulo Antonio Andrade Esquef,Edit Detection in Speech Recordings via Instantaneous Electric Network Frequency Variations.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#EsquefAB14,https://doi.org/10.1109/TIFS.2014.2363524 +Irene G. Karybali,Efficient spatial image watermarking via new perceptual masking and blind detection schemes.,2006,1,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs1.html#KarybaliB06,https://doi.org/10.1109/TIFS.2006.873652 +Nam Yul Yu,Indistinguishability and Energy Sensitivity of Gaussian and Bernoulli Compressed Encryption.,2018,13,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs13.html#Yu18,https://doi.org/10.1109/TIFS.2018.2800726 +Gerson de Souza Faria,Identification of Pressed Keys From Mechanical Vibrations.,2013,8,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs8.html#FariaK13,https://doi.org/10.1109/TIFS.2013.2266775 +Anindya Sarkar,Matrix embedding with pseudorandom coefficient selection and error correction for robust and secure steganography.,2010,5,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs5.html#SarkarMM10,https://doi.org/10.1109/TIFS.2010.2046218 +Kai Bu,Unreconciled Collisions Uncover Cloning Attacks in Anonymous RFID Systems.,2013,8,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs8.html#BuLLXW13,https://doi.org/10.1109/TIFS.2012.2237395 +Shota Saito,A Theoretical Framework for Estimating False Acceptance Rate of PRNU-Based Camera Identification.,2017,12,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs12.html#SaitoTK17,https://doi.org/10.1109/TIFS.2017.2692683 +Huazhu Fu,Forgery Authentication in Extreme Wide-Angle Lens Using Distortion Cue and Fake Saliency Map.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#FuC12,https://doi.org/10.1109/TIFS.2012.2195492 +Huafeng Qin,Deep Representation-Based Feature Extraction and Recovering for Finger-Vein Verification.,2017,12,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs12.html#QinE17,https://doi.org/10.1109/TIFS.2017.2689724 +Hong Zhang 0005,A Steganalytic Approach to Detect Motion Vector Modification Using Near-Perfect Estimation for Local Optimality.,2017,12,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs12.html#ZhangCZ17,https://doi.org/10.1109/TIFS.2016.2623587 +Joseph K. Liu,Fine-Grained Two-Factor Access Control for Web-Based Cloud Computing Services.,2016,11,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs11.html#LiuAHL016,https://doi.org/10.1109/TIFS.2015.2493983 +Liang Xiao 0003,Channel-based detection of Sybil attacks in wireless networks.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#XiaoGMT09,https://doi.org/10.1109/TIFS.2009.2026454 +Takao Murakami,Toward Optimal Fusion Algorithms With Security Against Wolves and Lambs in Biometrics.,2014,9,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs9.html#MurakamiTM14,https://doi.org/10.1109/TIFS.2013.2296993 +Aleksandr Sizov,Joint Speaker Verification and Antispoofing in the i-Vector Space.,2015,10,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs10.html#SizovKKWM15,https://doi.org/10.1109/TIFS.2015.2407362 +Lahoucine Ballihi,Boosting 3-D-Geometric Features for Efficient Face Recognition and Gender Classification.,2012,7,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs7.html#BallihiADSA12,https://doi.org/10.1109/TIFS.2012.2209876 +H. Vicky Zhao,Traitor-Within-Traitor Behavior Forensics: Strategy and Risk Minimization.,2006,1,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs1.html#ZhaoL06a,https://doi.org/10.1109/TIFS.2006.885023 +Georg T. Becker,Detecting Software Theft in Embedded Systems: A Side-Channel Approach.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#BeckerSPB12,https://doi.org/10.1109/TIFS.2012.2191964 +Jun Yan 0007,Integrated Security Analysis on Cascading Failure in Complex Networks.,2014,9,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs9.html#YanHS14,https://doi.org/10.1109/TIFS.2014.2299404 +Nicholas Kolokotronis,Secretly Pruned Convolutional Codes: Security Analysis and Performance Results.,2016,11,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs11.html#KolokotronisKK16,https://doi.org/10.1109/TIFS.2016.2537262 +Valentina Conotter,Exposing Digital Forgeries in Ballistic Motion.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#ConotterOF12,https://doi.org/10.1109/TIFS.2011.2165843 +Derek Justice,Estimation of message source and destination from network intercepts.,2006,1,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs1.html#JusticeH06,https://doi.org/10.1109/TIFS.2006.879291 +Zulfiqar Hassan Khan,Joint feature correspondences and appearance similarity for robust visual object tracking.,2010,5,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs5.html#KhanG10,https://doi.org/10.1109/TIFS.2010.2050312 +Alessio Zappone,Optimal Energy-Efficient Design of Confidential Multiple-Antenna Systems.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#ZapponeLJ18,https://doi.org/10.1109/TIFS.2017.2746009 +Heejung Yu,Wireless Secure Communication With Beamforming and Jamming in Time-Varying Wiretap Channels.,2018,13,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs13.html#YuKJ18,https://doi.org/10.1109/TIFS.2018.2809695 +Xavier Rolland-Nevière,Triangle Surface Mesh Watermarking Based on a Constrained Optimization Framework.,2014,9,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs9.html#Rolland-NeviereDA14,https://doi.org/10.1109/TIFS.2014.2336376 +Yuhao Wang,DW-AES: A Domain-Wall Nanowire-Based AES for High Throughput and Energy-Efficient Data Encryption in Non-Volatile Memory.,2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#WangNCY16,https://doi.org/10.1109/TIFS.2016.2576903 +Graeme Bell,A method for automatic identification of signatures of steganography software.,2010,5,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs5.html#BellL10,https://doi.org/10.1109/TIFS.2010.2046985 +John D. Roth,On Location Privacy in LTE Networks.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#RothTMS17,https://doi.org/10.1109/TIFS.2017.2656470 +Xuebin Ren,LoPub: High-Dimensional Crowdsourced Data Publication With Local Differential Privacy.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#RenYYYYMY18,https://doi.org/10.1109/TIFS.2018.2812146 +Devi Parikh,Data Fusion and Cost Minimization for Intrusion Detection.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#ParikhC08,https://doi.org/10.1109/TIFS.2008.928539 +Tsung-Yuan Liu,A New Steganographic Method for Data Hiding in Microsoft Word Documents by a Change Tracking Technique.,2007,2,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs2.html#LiuT07,https://doi.org/10.1109/TIFS.2006.890310 +Wei Wang 0100,Artificial Noise Aided Physical Layer Security in Multi-Antenna Small-Cell Networks.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#0100TL17,https://doi.org/10.1109/TIFS.2017.2663336 +Michael Arnold,A Phase-Based Audio Watermarking System Robust to Acoustic Path Propagation.,2014,9,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs9.html#ArnoldCBGD14,https://doi.org/10.1109/TIFS.2013.2293952 +Wencheng Yang,A Delaunay Quadrangle-Based Fingerprint Authentication System With Template Protection Using Topology Code for Local Registration and Security Enhancement.,2014,9,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs9.html#YangHW14,https://doi.org/10.1109/TIFS.2014.2328095 +Fuqing Duan,Skull Identification via Correlation Measure Between Skull and Face Shape.,2014,9,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs9.html#DuanYLTLWZ14,https://doi.org/10.1109/TIFS.2014.2332981 +Xu Wang 0004,Virus Propagation Modeling and Convergence Analysis in Large-Scale Networks.,2016,11,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs11.html#WangNZLN16,https://doi.org/10.1109/TIFS.2016.2581305 +Saeedeh Parsaeefard,Improving Wireless Secrecy Rate via Full-Duplex Relay-Assisted Protocols.,2015,10,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs10.html#ParsaeefardL15,https://doi.org/10.1109/TIFS.2015.2446436 +Gaurav Goswami,RGB-D Face Recognition With Texture and Attribute Features.,2014,9,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs9.html#GoswamiVS14,https://doi.org/10.1109/TIFS.2014.2343913 +Zhenhua Chai,Gabor Ordinal Measures for Face Recognition.,2014,9,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs9.html#ChaiSVHT14,https://doi.org/10.1109/TIFS.2013.2290064 +Chun-Hsiang Huang,Unseen visible watermarking: a novel methodology for auxiliary information delivery via visual contents.,2009,4,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs4.html#HuangCHW09,https://doi.org/10.1109/TIFS.2009.2020778 +Asem A. Othman,On Mixing Fingerprints.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#OthmanR13,https://doi.org/10.1109/TIFS.2012.2223676 +Fabrizio Guerrini,High Dynamic Range Image Watermarking Robust Against Tone-Mapping Operators.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#GuerriniOAL11,https://doi.org/10.1109/TIFS.2011.2109383 +Farzad Farhadzadeh,Performance Analysis of Content-Based Identification Using Constrained List-Based Decoding.,2012,7,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs7.html#FarhadzadehVK12,https://doi.org/10.1109/TIFS.2012.2206026 +Rémi Cogranne,Modeling and Extending the Ensemble Classifier for Steganalysis of Digital Images Using Hypothesis Testing Theory.,2015,10,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs10.html#CogranneF15,https://doi.org/10.1109/TIFS.2015.2470220 +Wei Fan 0004,Median Filtered Image Quality Enhancement and Anti-Forensics via Variational Deconvolution.,2015,10,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs10.html#FanWCX15,https://doi.org/10.1109/TIFS.2015.2398362 +Nicole Lang Beebe,Sceadan: Using Concatenated N-Gram Vectors for Improved File and Data Type Classification.,2013,8,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs8.html#BeebeMLS13,https://doi.org/10.1109/TIFS.2013.2274728 +Azadeh Mansouri,A Low Complexity Video Watermarking in H.264 Compressed Domain.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#MansouriATK10,https://doi.org/10.1109/TIFS.2010.2076280 +Jianfeng Lu 0002,Game-Theoretic Design of Optimal Two-Sided Rating Protocols for Service Exchange Dilemma in Crowdsourcing.,2018,13,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs13.html#LuXZLL18,https://doi.org/10.1109/TIFS.2018.2834318 +Kaiping Xue,Two-Cloud Secure Database for Numeric-Related SQL Range Queries With Privacy Preserving.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#XueLHXYH17,https://doi.org/10.1109/TIFS.2017.2675864 +Stefano Tomasin,Secure HARQ With Multiple Encoding Over Block Fading Channels: Channel Set Characterization and Outage Analysis.,2014,9,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs9.html#TomasinL14,https://doi.org/10.1109/TIFS.2014.2346397 +Haojun Wu,Identification of Electronic Disguised Voices.,2014,9,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs9.html#WuWH14,https://doi.org/10.1109/TIFS.2014.2301912 +Qi Xiong,Secure Transmission Against Pilot Spoofing Attack: A Two-Way Training-Based Scheme.,2016,11,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs11.html#XiongLLGH16,https://doi.org/10.1109/TIFS.2016.2516825 +Chen Li 0019,"Comments on ""An Efficient Privacy-Preserving Outsourced Calculation Toolkit With Multiple Keys"".",2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#LiM18,https://doi.org/10.1109/TIFS.2018.2825143 +Anindya Roy,A Fast Parts-Based Approach to Speaker Verification Using Boosted Slice Classifiers.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#RoyMM12,https://doi.org/10.1109/TIFS.2011.2166387 +Jianwei Hu,A New Secure Transmission Scheme With Outdated Antenna Selection.,2015,10,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs10.html#HuCYY15,https://doi.org/10.1109/TIFS.2015.2464703 +Chin-Chen Chang 0001,Reversible Steganography for VQ-Compressed Images Using Side Matching and Relocation.,2006,1,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs1.html#ChangL06,https://doi.org/10.1109/TIFS.2006.885034 +Yujue Wang,Online/Offline Provable Data Possession.,2017,12,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs12.html#WangWQTS17,https://doi.org/10.1109/TIFS.2017.2656461 +Patrick P. F. Chan,Heap Graph Based Software Theft Detection.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#ChanHY13,https://doi.org/10.1109/TIFS.2012.2223685 +Wei Tong,A Jointly Differentially Private Scheduling Protocol for Ridesharing Services.,2017,12,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs12.html#TongHZ17,https://doi.org/10.1109/TIFS.2017.2707334 +Ming Fan,Android Malware Familial Classification and Representative Sample Selection via Frequent Subgraph Analysis.,2018,13,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs13.html#Fan0LCTZL18,https://doi.org/10.1109/TIFS.2018.2806891 +Hsin-Yi Tsai,A graph approach to quantitative analysis of control-flow obfuscating transformations.,2009,4,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs4.html#TsaiHW09,https://doi.org/10.1109/TIFS.2008.2011077 +Dima Bykhovsky,Electrical Network Frequency (ENF) Maximum-Likelihood Estimation Via a Multitone Harmonic Model.,2013,8,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs8.html#BykhovskyC13,https://doi.org/10.1109/TIFS.2013.2253462 +Scott Klum,The FaceSketchID System: Matching Facial Composites to Mugshots.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#KlumHKJ14,https://doi.org/10.1109/TIFS.2014.2360825 +Mohammed Alzaabi,CISRI: A Crime Investigation System Using the Relative Importance of Information Spreaders in Networks Depicting Criminals Communications.,2015,10,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs10.html#AlzaabiTM15,https://doi.org/10.1109/TIFS.2015.2451073 +Darko S. Matovski,The Effect of Time on Gait Recognition Performance.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#MatovskiNMC12,https://doi.org/10.1109/TIFS.2011.2176118 +Christos Liaskos,Network Topology Effects on the Detectability of Crossfire Attacks.,2018,13,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs13.html#LiaskosI18,https://doi.org/10.1109/TIFS.2018.2799425 +Dong-Hua Chen,Both Worst-Case and Chance-Constrained Robust Secure SWIPT in MISO Interference Channels.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#ChenHLZ18,https://doi.org/10.1109/TIFS.2017.2746063 +Xiaofeng Chen 0001,New Algorithms for Secure Outsourcing of Large-Scale Systems of Linear Equations.,2015,10,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs10.html#ChenHLMLW15,https://doi.org/10.1109/TIFS.2014.2363765 +Marcello Ferro,A sensing seat for human authentication.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#FerroPTCR09,https://doi.org/10.1109/TIFS.2009.2019156 +Victor Prokhorenko,Intent-Based Extensible Real-Time PHP Supervision Framework.,2016,11,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs11.html#ProkhorenkoCA16,https://doi.org/10.1109/TIFS.2016.2569063 +Samiran Bag,Bitcoin Block Withholding Attack: Analysis and Mitigation.,2017,12,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs12.html#BagRS17,https://doi.org/10.1109/TIFS.2016.2623588 +Tomás Filler,Gibbs Construction in Steganography.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#FillerF10,https://doi.org/10.1109/TIFS.2010.2077629 +Ivan Ivanov,Comparative Study of Trust Modeling for Automatic Landmark Tagging.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#IvanovVKE13,https://doi.org/10.1109/TIFS.2013.2242889 +Miroslav Goljan,"Erratum to ""Defending Against Fingerprint-Copy Attack in Sensor-Based Camera Identification"" [Mar 11 227-236].",2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#GoljanFC11a,https://doi.org/10.1109/TIFS.2011.2138530 +Yongchang Wang,Data Acquisition and Processing of 3-D Fingerprints.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#WangHL10,https://doi.org/10.1109/TIFS.2010.2062177 +Mauro Barni,Source Distinguishability Under Distortion-Limited Attack: An Optimal Transport Perspective.,2016,11,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs11.html#BarniT16,https://doi.org/10.1109/TIFS.2016.2570739 +Tomás Denemark,Steganography With Multiple JPEG Images of the Same Scene.,2017,12,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs12.html#DenemarkF17,https://doi.org/10.1109/TIFS.2017.2705625 +Santhanakrishnan Anand,On the location of an eavesdropper in multiterminal networks.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#AnandC10,https://doi.org/10.1109/TIFS.2009.2038571 +Saman Feghhi,A Web Traffic Analysis Attack Using Only Timing Information.,2016,11,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs11.html#FeghhiL16,https://doi.org/10.1109/TIFS.2016.2551203 +Dongrun Qin,Exploiting Multi-Antenna Non-Reciprocal Channels for Shared Secret Key Generation.,2016,11,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs11.html#QinD16,https://doi.org/10.1109/TIFS.2016.2594143 +Mahmoud M. Elmesalawy,New Forensic ENF Reference Database for Media Recording Authentication Based on Harmony Search Technique Using GIS and Wide Area Frequency Measurements.,2014,9,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs9.html#ElmesalawyE14,https://doi.org/10.1109/TIFS.2014.2304838 +Chong Hee Kim,Improved Differential Fault Analysis on AES Key Schedule.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#Kim12,https://doi.org/10.1109/TIFS.2011.2161289 +Philip O'Kane,SVM Training Phase Reduction Using Dataset Feature Filtering for Malware Detection.,2013,8,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs8.html#OKaneSMI13,https://doi.org/10.1109/TIFS.2013.2242890 +Zhihua Xia,A Privacy-Preserving and Copy-Deterrence Content-Based Image Retrieval Scheme in Cloud Computing.,2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#XiaWZQSR16,https://doi.org/10.1109/TIFS.2016.2590944 +Omaima Nomir,Fusion of Matching Algorithms for Human Identification Using Dental X-Ray Radiographs.,2008,3,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs3.html#NomirA08,https://doi.org/10.1109/TIFS.2008.919343 +Yifeng Zheng,Privacy-Preserving Image Denoising From External Cloud Databases.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#ZhengCWZ17,https://doi.org/10.1109/TIFS.2017.2656824 +Noura Alomar,Someone in Your Contact List: Cued Recall-Based Textual Passwords.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#AlomarAA17,https://doi.org/10.1109/TIFS.2017.2712126 +Mo Chen,Determining Image Origin and Integrity Using Sensor Noise.,2008,3,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs3.html#ChenFGL08,https://doi.org/10.1109/TIFS.2007.916285 +Marta Gomez-Barrero,General Framework to Evaluate Unlinkability in Biometric Template Protection Systems.,2018,13,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs13.html#Gomez-BarreroGR18,https://doi.org/10.1109/TIFS.2017.2788000 +Shan-Chun Liu,Line-Based Cubism-Like Image - A New Type of Art Image and its Application to Lossless Data Hiding.,2012,7,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs7.html#LiuT12,https://doi.org/10.1109/TIFS.2012.2204250 +Tung Le,Graphical Inference for Multiple Intrusion Detection.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#LeH08,https://doi.org/10.1109/TIFS.2008.928536 +Kai Zhou,PassBio: Privacy-Preserving User-Centric Biometric Authentication.,2018,13,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs13.html#ZhouR18,https://doi.org/10.1109/TIFS.2018.2838540 +Boris Skoric,Tally-Based Simple Decoders for Traitor Tracing and Group Testing.,2015,10,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs10.html#Skoric15,https://doi.org/10.1109/TIFS.2015.2403575 +Tiziano Bianchi,Composite signal representation for fast and storage-efficient processing of encrypted signals.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#BianchiPB10,https://doi.org/10.1109/TIFS.2009.2036230 +Luis Cardoso,Iris Biometrics: Synthesis of Degraded Ocular Images.,2013,8,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs8.html#CardosoBSPP13,https://doi.org/10.1109/TIFS.2013.2262942 +Prashanth Krishnamurthy,Process-Aware Covert Channels Using Physical Instrumentation in Cyber-Physical Systems.,2018,13,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs13.html#KrishnamurthyKK18,https://doi.org/10.1109/TIFS.2018.2833063 +Ishan Manjani,Detecting Silicone Mask-Based Presentation Attack via Deep Dictionary Learning.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#ManjaniTVSM17,https://doi.org/10.1109/TIFS.2017.2676720 +Fan Zhang 0010,A Framework for the Analysis and Evaluation of Algebraic Fault Attacks on Lightweight Block Ciphers.,2016,11,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs11.html#ZhangGZWYSG16,https://doi.org/10.1109/TIFS.2016.2516905 +Sung-Uk Jung,On Using Gait to Enhance Frontal Face Extraction.,2012,7,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs7.html#JungN12,https://doi.org/10.1109/TIFS.2012.2218598 +Matthieu R. Bloch,Network Security for Client-Server Architecture Using Wiretap Codes.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#BlochNM08,https://doi.org/10.1109/TIFS.2008.927688 +Farid Movahedi Naini,Where You Are Is Who You Are: User Identification by Matching Statistics.,2016,11,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs11.html#NainiUTV16,https://doi.org/10.1109/TIFS.2015.2498131 +Tao Jiang,Secure and Efficient Cloud Data Deduplication With Randomized Tag.,2017,12,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs12.html#Jiang0WMSL17,https://doi.org/10.1109/TIFS.2016.2622013 +Lei Zhang 0009,Round-Efficient and Sender-Unrestricted Dynamic Group Key Agreement Protocol for Secure Group Communications.,2015,10,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs10.html#ZhangWDQD15,https://doi.org/10.1109/TIFS.2015.2447933 +Alireza Jolfaei,A 3D Object Encryption Scheme Which Maintains Dimensional and Spatial Stability.,2015,10,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs10.html#JolfaeiWM15,https://doi.org/10.1109/TIFS.2014.2378146 +Taeho Jung,"Rebuttal to ""Comments on 'Control Cloud Data Access Privilege and Anonymity With Fully Anonymous Attribute-Based Encryption""'.",2016,11,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs11.html#JungLWW16,https://doi.org/10.1109/TIFS.2015.2509946 +Xiaoyan Sun,Using Bayesian Networks for Probabilistic Identification of Zero-Day Attack Paths.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#SunDLSY18,https://doi.org/10.1109/TIFS.2018.2821095 +Philip B. Stark,CAST: Canvass audits by sampling and testing.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#Stark09,https://doi.org/10.1109/TIFS.2009.2034210 +Fagen Li,Efficient Deniably Authenticated Encryption and Its Application to E-Mail.,2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#LiZT16,https://doi.org/10.1109/TIFS.2016.2585086 +Jun Xiong,Secrecy Performance Analysis for TAS-MRC System With Imperfect Feedback.,2015,10,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs10.html#XiongTMXW15,https://doi.org/10.1109/TIFS.2015.2421358 +Matthew C. Stamm,Forensic detection of image manipulation using statistical intrinsic fingerprints.,2010,5,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs5.html#StammL10,https://doi.org/10.1109/TIFS.2010.2053202 +Hussein Moosavi,A Game-Theoretic Framework for Robust Optimal Intrusion Detection in Wireless Sensor Networks.,2014,9,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs9.html#MoosaviB14,https://doi.org/10.1109/TIFS.2014.2332816 +Giacomo Cancelli,MPSteg-color: data hiding through redundant basis decomposition.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#CancelliB09,https://doi.org/10.1109/TIFS.2009.2024028 +Mostafa M. I. Taha,Key Updating for Leakage Resiliency With Application to AES Modes of Operation.,2015,10,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs10.html#TahaS15,https://doi.org/10.1109/TIFS.2014.2383359 +Jun Yan 0007,Q-Learning-Based Vulnerability Analysis of Smart Grid Against Sequential Topology Attacks.,2017,12,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs12.html#YanHZT17,https://doi.org/10.1109/TIFS.2016.2607701 +Parth Pradhan,Stealthy Attacks in Dynamical Systems: Tradeoffs Between Utility and Detectability With Application in Anonymous Systems.,2017,12,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs12.html#PradhanV17,https://doi.org/10.1109/TIFS.2016.2607695 +Eryun Liu,Minutiae Extraction From Level 1 Features of Fingerprint.,2016,11,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs11.html#Liu016,https://doi.org/10.1109/TIFS.2016.2541345 +Miguel A. Ferrer,Robustness of Offline Signature Verification Based on Gray Level Features.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#FerrerVMO12,https://doi.org/10.1109/TIFS.2012.2190281 +Naoufel Werghi,Boosting 3D LBP-Based Face Recognition by Fusing Shape and Texture Descriptors on the Mesh.,2016,11,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs11.html#WerghiTBB16,https://doi.org/10.1109/TIFS.2016.2515505 +Shari Lawrence Pfleeger,Insiders behaving badly: addressing bad actors and their actions.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#PfleegerPHB10,https://doi.org/10.1109/TIFS.2009.2039591 +Wei-Hong Chuang,Anti-Forensics and Countermeasures of Electrical Network Frequency Analysis.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#ChuangG013,https://doi.org/10.1109/TIFS.2013.2285515 +Ming Tang,An Efficient SCA Leakage Model Construction Method Under Predictable Evaluation.,2018,13,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs13.html#TangWXWZPD18,https://doi.org/10.1109/TIFS.2018.2837644 +Roneel V. Sharan,Subband Time-Frequency Image Texture Features for Robust Audio Surveillance.,2015,10,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs10.html#SharanM15,https://doi.org/10.1109/TIFS.2015.2469254 +Chi Cheng,Security Analysis and Improvements on Two Homomorphic Authentication Schemes for Network Coding.,2016,11,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs11.html#ChengLJT16,https://doi.org/10.1109/TIFS.2016.2515517 +Xingjie Wei,Dynamic Image-to-Class Warping for Occluded Face Recognition.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#WeiLLYL14,https://doi.org/10.1109/TIFS.2014.2359632 +Weiqi Luo,Detection of Quantization Artifacts and Its Applications to Transform Encoder Identification.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#LuoWH10,https://doi.org/10.1109/TIFS.2010.2074195 +Augusto Ferrante,On the Error Region for Channel Estimation-Based Physical Layer Authentication Over Rayleigh Fading.,2015,10,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs10.html#FerranteLMPT15,https://doi.org/10.1109/TIFS.2015.2392565 +Chuhong Fei,Analysis and design of secure watermark-based authentication systems.,2006,1,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs1.html#FeiKK06,https://doi.org/10.1109/TIFS.2005.863505 +Nesli Erdogmus,3D Assisted Face Recognition: Dealing With Expression Variations.,2014,9,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs9.html#ErdogmusD14,https://doi.org/10.1109/TIFS.2014.2309851 +Nese Alyüz,3-D Face Recognition Under Occlusion Using Masked Projection.,2013,8,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs8.html#AlyuzGA13,https://doi.org/10.1109/TIFS.2013.2256130 +Javier Franco-Contreras,Robust Lossless Watermarking of Relational Databases Based on Circular Histogram Modulation.,2014,9,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs9.html#Franco-ContrerasCCCR14,https://doi.org/10.1109/TIFS.2013.2294240 +Jean-Camille Birget,Graphical passwords based on robust discretization.,2006,1,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs1.html#BirgetHM06,https://doi.org/10.1109/TIFS.2006.879305 +Mike Burmester,"Comments on ""Unreconciled Collisions Uncover Cloning Attacks in Anonymous RFID Systems"".",2018,13,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs13.html#BurmesterMO18,https://doi.org/10.1109/TIFS.2018.2834876 +Fei Huo,Analysis and Validation of Active Eavesdropping Attacks in Passive FHSS RFID Systems.,2016,11,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs11.html#HuoMG16,https://doi.org/10.1109/TIFS.2016.2541309 +Chun-Yi Wei,Local Threshold Design for Target Localization Using Error Correcting Codes in Wireless Sensor Networks in the Presence of Byzantine Attacks.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#WeiCHV17,https://doi.org/10.1109/TIFS.2017.2670531 +Zhiyong Su,Robust 2D Engineering CAD Graphics Hashing for Joint Topology and Geometry Authentication via Covariance-Based Descriptors.,2018,13,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs13.html#SuYZLD18,https://doi.org/10.1109/TIFS.2017.2777341 +Jingu Heo,3-D Generic Elastic Models for Fast and Texture Preserving 2-D Novel Pose Synthesis.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#HeoS12,https://doi.org/10.1109/TIFS.2012.2184755 +Neil Zhenqiang Gong,On the Security of Trustee-Based Social Authentications.,2014,9,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs9.html#GongW14,https://doi.org/10.1109/TIFS.2014.2330311 +Matthieu Urvoy,Perceptual DFT Watermarking With Improved Detection and Robustness to Geometrical Distortions.,2014,9,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs9.html#UrvoyGA14,https://doi.org/10.1109/TIFS.2014.2322497 +Yan Gao,A Comprehensive Approach to Image Spam Detection: From Server to Client Solution.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#GaoCH10,https://doi.org/10.1109/TIFS.2010.2080267 +Xiaotian Wu,Generalized Random Grid and Its Applications in Visual Cryptography.,2013,8,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs8.html#WuS13,https://doi.org/10.1109/TIFS.2013.2274955 +Jiann-Der Lee,Reversible Data Hiding Based on Histogram Modification of SMVQ Indices.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#LeeCG10,https://doi.org/10.1109/TIFS.2010.2066971 +Ahmet Emir Dirik,Digital Single Lens Reflex Camera Identification From Traces of Sensor Dust.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#DirikSM08,https://doi.org/10.1109/TIFS.2008.926987 +Jiwen Lu,Cost-Sensitive Subspace Analysis and Extensions for Face Recognition.,2013,8,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs8.html#LuT13,https://doi.org/10.1109/TIFS.2013.2243146 +Liang Xiao 0003,Proximity-Based Security Techniques for Mobile Users in Wireless Networks.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#XiaoYLCH13,https://doi.org/10.1109/TIFS.2013.2286269 +Hafiz Malik,Acoustic Environment Identification and Its Applications to Audio Forensics.,2013,8,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs8.html#Malik13,https://doi.org/10.1109/TIFS.2013.2280888 +Qi Xiong,An Energy-Ratio-Based Approach for Detecting Pilot Spoofing Attack in Multiple-Antenna Systems.,2015,10,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs10.html#XiongLLG15,https://doi.org/10.1109/TIFS.2015.2392564 +Arun K. Kanuparthi,Architecture Support for Dynamic Integrity Checking.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#KanuparthiZK12,https://doi.org/10.1109/TIFS.2011.2166960 +Massoud Masoumi,Novel Approach to Protect Advanced Encryption Standard Algorithm Implementation Against Differential Electromagnetic and Power Analysis.,2015,10,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs10.html#MasoumiR15,https://doi.org/10.1109/TIFS.2014.2371237 +Zhenghao Zhang,A New Bound on the Performance of the Bandwidth Puzzle.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#Zhang12,https://doi.org/10.1109/TIFS.2012.2186294 +Syed Taha Ali,Securing First-Hop Data Provenance for Bodyworn Devices Using Wireless Link Fingerprints.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#AliSOTJ14,https://doi.org/10.1109/TIFS.2014.2357998 +Ravi Garg,An Efficient Gradient Descent Approach to Secure Localization in Resource Constrained Wireless Sensor Networks.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#GargVW12,https://doi.org/10.1109/TIFS.2012.2184094 +Hang Zhang,Interference Improves PHY Security for Cognitive Radio Networks.,2016,11,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs11.html#ZhangWSH16,https://doi.org/10.1109/TIFS.2015.2500184 +Antitza Dantcheva,Gender Estimation Based on Smile-Dynamics.,2017,12,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs12.html#DantchevaB17,https://doi.org/10.1109/TIFS.2016.2632070 +Sankardas Roy,Secure Data Aggregation in Wireless Sensor Networks.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#RoyCSJ12,https://doi.org/10.1109/TIFS.2012.2189568 +Adi Hajj-Ahmad,Factors Affecting ENF Capture in Audio.,2019,14,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs14.html#Hajj-AhmadWGZYW19,https://doi.org/10.1109/TIFS.2018.2837645 +Hai-Dong Yuan,Blind Forensics of Median Filtering in Digital Images.,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#Yuan11,https://doi.org/10.1109/TIFS.2011.2161761 +Fangjun Huang,New Framework for Reversible Data Hiding in Encrypted Domain.,2016,11,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs11.html#HuangHS16,https://doi.org/10.1109/TIFS.2016.2598528 +Jianjiang Feng,Robust and Efficient Algorithms for Separating Latent Overlapped Fingerprints.,2012,7,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs7.html#FengSZ12,https://doi.org/10.1109/TIFS.2012.2204254 +Maxim Chernyshev,On 802.11 Access Point Locatability and Named Entity Recognition in Service Set Identifiers.,2016,11,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs11.html#ChernyshevVH16,https://doi.org/10.1109/TIFS.2015.2507542 +Fuchun Guo,CP-ABE With Constant-Size Keys for Lightweight Devices.,2014,9,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs9.html#GuoMSWV14,https://doi.org/10.1109/TIFS.2014.2309858 +Jean-Philippe Boyer,Performance Analysis of Scalar DC-QIM for Zero-Bit Watermarking.,2007,2,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs2.html#BoyerDB07,https://doi.org/10.1109/TIFS.2007.897279 +Bo Zhu,Providing witness anonymity under peer-to-peer settings.,2010,5,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs5.html#ZhuSJW10,https://doi.org/10.1109/TIFS.2010.2041821 +Vojtech Holub,Low-Complexity Features for JPEG Steganalysis Using Undecimated DCT.,2015,10,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs10.html#HolubF15,https://doi.org/10.1109/TIFS.2014.2364918 +Hong Cao,Accurate detection of demosaicing regularity for digital image forensics.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#CaoK09,https://doi.org/10.1109/TIFS.2009.2033749 +Jian Chen,Resource Allocation for a Massive MIMO Relay Aided Secure Communication.,2016,11,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs11.html#ChenCGN16,https://doi.org/10.1109/TIFS.2016.2551685 +Weijiang Liu,Detection of Superpoints Using a Vector Bloom Filter.,2016,11,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs11.html#LiuQGL16,https://doi.org/10.1109/TIFS.2015.2503269 +Sabrina Gerbracht,Secrecy Outage in MISO Systems With Partial Channel Information.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#GerbrachtSJ12,https://doi.org/10.1109/TIFS.2011.2181946 +Jianwei Yang,Person-Specific Face Antispoofing With Subject Domain Adaptation.,2015,10,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs10.html#YangLYL15,https://doi.org/10.1109/TIFS.2015.2403306 +Ravichandran Subramanian,Evaluation of Algorithms for Orientation Invariant Inertial Gait Matching.,2019,14,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs14.html#SubramanianS19,https://doi.org/10.1109/TIFS.2018.2850032 +Jingyu Hua,We Can Track You if You Take the Metro: Tracking Metro Riders Using Accelerometers on Smartphones.,2017,12,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs12.html#HuaSZ17,https://doi.org/10.1109/TIFS.2016.2611489 +Chi-Yuan Chen,Transaction-Pattern-Based Anomaly Detection Algorithm for IP Multimedia Subsystem.,2011,6,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs6.html#ChenCC11,https://doi.org/10.1109/TIFS.2010.2095845 +Marius Senftleben,On the Privacy and Performance of Mobile Anonymous Microblogging.,2016,11,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs11.html#SenftlebenBBH0T16,https://doi.org/10.1109/TIFS.2016.2541633 +Zhengyu Zhu,Beamforming and Power Splitting Designs for AN-Aided Secure Multi-User MIMO SWIPT Systems.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#ZhuCWHWL17,https://doi.org/10.1109/TIFS.2017.2721908 +Daw-Tung Lin,Collaborative Pedestrian Tracking and Data Fusion With Multiple Cameras.,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#LinH11,https://doi.org/10.1109/TIFS.2011.2159972 +Shengzhi Zhang,PEDA: Comprehensive Damage Assessment for Production Environment Server Systems.,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#ZhangJLJ11,https://doi.org/10.1109/TIFS.2011.2162062 +Qian Wang 0002,PROST: Privacy-Preserving and Truthful Online Double Auction for Spectrum Allocation.,2019,14,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs14.html#WangHCWXL19,https://doi.org/10.1109/TIFS.2018.2850330 +Andrea Costanzo,Forensic Analysis of SIFT Keypoint Removal and Injection.,2014,9,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs9.html#CostanzoACB14,https://doi.org/10.1109/TIFS.2014.2337654 +Jessica J. Fridrich,Asymptotic behavior of the ZZW embedding construction.,2009,4,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs4.html#Fridrich09,https://doi.org/10.1109/TIFS.2008.2011082 +Bruno P. S. Rocha,Hybrid Static-Runtime Information Flow and Declassification Enforcement.,2013,8,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs8.html#RochaCEC13,https://doi.org/10.1109/TIFS.2013.2267798 +Mengyuan Zhang,Network Diversity: A Security Metric for Evaluating the Resilience of Networks Against Zero-Day Attacks.,2016,11,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs11.html#ZhangWJSA16,https://doi.org/10.1109/TIFS.2016.2516916 +Jan Kodovský,Effect of Image Downsampling on Steganographic Security.,2014,9,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs9.html#KodovskyF14,https://doi.org/10.1109/TIFS.2014.2309054 +Zhi-Ming Li,A Customized Sparse Representation Model With Mixed Norm for Undersampled Face Recognition.,2016,11,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs11.html#LiHS16,https://doi.org/10.1109/TIFS.2016.2567318 +Huu-Tuan Nguyen,Local Patterns of Gradients for Face Recognition.,2015,10,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs10.html#NguyenC15,https://doi.org/10.1109/TIFS.2015.2426144 +Anil K. Jain 0001,Fingerprint Recognition of Young Children.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#JainA0BB17,https://doi.org/10.1109/TIFS.2016.2639346 +Mohammad Reza Khalili Shoja,On the Secret Key Capacity of Sibling Hidden Markov Models.,2019,14,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs14.html#ShojaAWWD19,https://doi.org/10.1109/TIFS.2018.2855638 +Heng Zhou,Secret Key Generation in the Two-Way Relay Channel With Active Attackers.,2014,9,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs9.html#ZhouHL14,https://doi.org/10.1109/TIFS.2014.2301233 +Li Li 0029,Understanding Android App Piggybacking: A Systematic Study of Malicious Code Grafting.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#0029LBKTLC17,https://doi.org/10.1109/TIFS.2017.2656460 +Diego Gragnaniello,An Investigation of Local Descriptors for Biometric Spoofing Detection.,2015,10,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs10.html#GragnanielloPSV15,https://doi.org/10.1109/TIFS.2015.2404294 +Benedetta Tondi,Smart Detection of Line-Search Oracle Attacks.,2017,12,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs12.html#TondiAPB17,https://doi.org/10.1109/TIFS.2016.2624280 +Xiaojun Zhai,A Method for Detecting Abnormal Program Behavior on Embedded Devices.,2015,10,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs10.html#ZhaiAEHHGM15,https://doi.org/10.1109/TIFS.2015.2422674 +Ruohan Cao,Detecting Byzantine Attacks Without Clean Reference.,2016,11,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs11.html#CaoWLGY16,https://doi.org/10.1109/TIFS.2016.2596140 +Daniel Patricio Nicolalde Rodríguez,Audio authenticity: detecting ENF discontinuity with high precision phase analysis.,2010,5,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs5.html#RodriguezAB10,https://doi.org/10.1109/TIFS.2010.2051270 +Gee-Sern Hsu,RGB-D-Based Face Reconstruction and Recognition.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#HsuLPW14,https://doi.org/10.1109/TIFS.2014.2361028 +Yansong (Jennifer) Ren,Authenticating Lossy Surveillance Video.,2013,8,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs8.html#RenOWCWZ13,https://doi.org/10.1109/TIFS.2013.2279542 +Tony Thomas,Joint watermarking scheme for multiparty multilevel DRM architecture.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#ThomasESK09,https://doi.org/10.1109/TIFS.2009.2033229 +Wei Tong,A Unified Resource Allocation Framework for Defending Against Pollution Attacks in Wireless Network Coding Systems.,2016,11,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs11.html#TongZ16,https://doi.org/10.1109/TIFS.2016.2581313 +David Irakiza,A Non-Interactive Dual Channel Continuous Traffic Authentication Protocol.,2014,9,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs9.html#IrakizaKP14,https://doi.org/10.1109/TIFS.2014.2323700 +Nirattaya Khamsemanan,Human Identification From Freestyle Walks Using Posture-Based Gait Feature.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#KhamsemananNJ18,https://doi.org/10.1109/TIFS.2017.2738611 +Yupeng Liu,Destination Assisted Cooperative Jamming for Wireless Physical-Layer Security.,2013,8,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs8.html#LiuLP13,https://doi.org/10.1109/TIFS.2013.2248730 +Kapil M. Borle,Physical Layer Spectrum Usage Authentication in Cognitive Radio: Analysis and Implementation.,2015,10,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs10.html#BorleCD15,https://doi.org/10.1109/TIFS.2015.2452893 +Diego Valsesia,User Authentication via PRNU-Based Physical Unclonable Functions.,2017,12,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs12.html#ValsesiaCBM17,https://doi.org/10.1109/TIFS.2017.2697402 +Sevil Sen,Coevolution of Mobile Malware and Anti-Malware.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#SenAA18,https://doi.org/10.1109/TIFS.2018.2824250 +Ziad Ismail,Auditing a Cloud Provider's Compliance With Data Backup Requirements: A Game Theoretical Analysis.,2016,11,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs11.html#IsmailKLC16,https://doi.org/10.1109/TIFS.2016.2549002 +Gabriel Emile Hine,A Zero-Leakage Fuzzy Embedder From the Theoretical Formulation to Real Data.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#HineMC17,https://doi.org/10.1109/TIFS.2017.2686005 +Johannes Richter,Weak Secrecy in the Multiway Untrusted Relay Channel With Compute-and-Forward.,2015,10,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs10.html#RichterSEJ15,https://doi.org/10.1109/TIFS.2015.2405903 +Y. Zhu,A Local-Concentration-Based Feature Extraction Approach for Spam Filtering.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#ZhuT11,https://doi.org/10.1109/TIFS.2010.2103060 +Muhammad Umar Karim Khan,Rejecting Motion Outliers for Efficient Crowd Anomaly Detection.,2019,14,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs14.html#KhanPK19,https://doi.org/10.1109/TIFS.2018.2856189 +Jan Kodovský,Quantitative Structural Steganalysis of Jsteg.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#KodovskyF10,https://doi.org/10.1109/TIFS.2010.2056684 +Zhichun Li,Towards Situational Awareness of Large-Scale Botnet Probing Events.,2011,6,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs6.html#LiGCP11,https://doi.org/10.1109/TIFS.2010.2086445 +Erik Matlin,Non-Invasive Recognition of Poorly Resolved Integrated Circuit Elements.,2014,9,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs9.html#MatlinAS14,https://doi.org/10.1109/TIFS.2013.2297518 +Y. Ma,Reconstructing Synchronous Scrambler With Robust Detection Capability in the Presence of Noise.,2015,10,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs10.html#MaZW15,https://doi.org/10.1109/TIFS.2014.2378143 +Arcangelo Castiglione,Hierarchical and Shared Access Control.,2016,11,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs11.html#CastiglioneSMPC16,https://doi.org/10.1109/TIFS.2015.2512533 +Oleg V. Komogortsev,Attack of Mechanical Replicas: Liveness Detection With Eye Movements.,2015,10,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs10.html#KomogortsevKH15,https://doi.org/10.1109/TIFS.2015.2405345 +Ximeng Liu,An Efficient Privacy-Preserving Outsourced Calculation Toolkit With Multiple Keys.,2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#LiuDCW16,https://doi.org/10.1109/TIFS.2016.2573770 +Mohsen Zareian,A Novel Gain Invariant Quantization-Based Watermarking Approach.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#ZareianT14,https://doi.org/10.1109/TIFS.2014.2355912 +Worapan Kusakunniran,A New View-Invariant Feature for Cross-View Gait Recognition.,2013,8,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs8.html#KusakunniranWZML13,https://doi.org/10.1109/TIFS.2013.2252342 +Pravin Kakar,Verifying Temporal Data in Geotagged Images Via Sun Azimuth Estimation.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#KakarS12a,https://doi.org/10.1109/TIFS.2012.2188796 +Kyle Guan,Secrecy Capacities in Space-Division Multiplexed Fiber Optic Communication Systems.,2015,10,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs10.html#GuanTWS15,https://doi.org/10.1109/TIFS.2015.2405897 +Xu Zhang 0004,Pilot Distortion Attack and Zero-Startup-Cost Detection in Massive MIMO Network: From Analysis to Experiments.,2018,13,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs13.html#ZhangK18,https://doi.org/10.1109/TIFS.2018.2837641 +Sheng Huang,Cross-Speed Gait Recognition Using Speed-Invariant Gait Templates and Globality-Locality Preserving Projections.,2015,10,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs10.html#HuangELY15,https://doi.org/10.1109/TIFS.2015.2445315 +Zi-xing Lin,A Low-Distortion Reversible Watermarking for 2D Engineering Graphics Based on Region Nesting.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#LinPL18,https://doi.org/10.1109/TIFS.2018.2819122 +Zhengmin Kong,Iterative Distributed Minimum Total MSE Approach for Secure Communications in MIMO Interference Channels.,2016,11,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs11.html#KongYWPZH16,https://doi.org/10.1109/TIFS.2015.2493888 +Allan da Silva Pinto,Using Visual Rhythms for Detecting Video-Based Facial Spoof Attacks.,2015,10,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs10.html#PintoSPR15,https://doi.org/10.1109/TIFS.2015.2395139 +Mauro Barni,Privacy-Preserving ECG Classification With Branching Programs and Neural Networks.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#BarniFLS011,https://doi.org/10.1109/TIFS.2011.2108650 +Yong Li,Learning Robust Face Representation With Classwise Block-Diagonal Structure.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#LiLLM14,https://doi.org/10.1109/TIFS.2014.2361936 +Bing Zeng,A Practical Framework for $t$-Out-of- $n$ Oblivious Transfer With Security Against Covert Adversaries.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#ZengTXJT12,https://doi.org/10.1109/TIFS.2012.2184096 +Teddy Furon,A Constructive and Unifying Framework for Zero-Bit Watermarking.,2007,2,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs2.html#Furon07,https://doi.org/10.1109/TIFS.2007.897272 +Tiziano Bianchi,On the implementation of the discrete Fourier transform in the encrypted domain.,2009,4,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs4.html#BianchiPB09,https://doi.org/10.1109/TIFS.2008.2011087 +Hao Deng,Secrecy Transmission With a Helper: To Relay or to Jam.,2015,10,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs10.html#DengWGW15,https://doi.org/10.1109/TIFS.2014.2374356 +Jiahui Hou,CASTLE: Enhancing the Utility of Inequality Query Auditing Without Denial Threats.,2018,13,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs13.html#HouLJWZ18,https://doi.org/10.1109/TIFS.2018.2797802 +Haoran Guo,Exploiting Path Diversity for Thwarting Pollution Attacks in Named Data Networking.,2016,11,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs11.html#GuoWCT16,https://doi.org/10.1109/TIFS.2016.2574307 +Bahman Moraffah,Privacy-Guaranteed Two-Agent Interactions Using Information-Theoretic Mechanisms.,2017,12,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs12.html#MoraffahS17,https://doi.org/10.1109/TIFS.2017.2701278 +Wenting Shen,Enabling Identity-Based Integrity Auditing and Data Sharing With Sensitive Information Hiding for Secure Cloud Storage.,2019,14,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs14.html#ShenQYHH19,https://doi.org/10.1109/TIFS.2018.2850312 +Mauro Barni,The Source Identification Game: An Information-Theoretic Perspective.,2013,8,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs8.html#BarniT13,https://doi.org/10.1109/TIFS.2012.2237397 +Seung-Jin Ryu,Rotation Invariant Localization of Duplicated Image Regions Based on Zernike Moments.,2013,8,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs8.html#RyuKLL13,https://doi.org/10.1109/TIFS.2013.2272377 +Ivana Chingovska,On the Use of Client Identity Information for Face Antispoofing.,2015,10,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs10.html#ChingovskaA15,https://doi.org/10.1109/TIFS.2015.2400392 +Xu Zhao,Multiple Subcategories Parts-Based Representation for One Sample Face Identification.,2013,8,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs8.html#ZhaoLWFL13,https://doi.org/10.1109/TIFS.2013.2263498 +Cai Li,A Security-Enhanced Alignment-Free Fuzzy Vault-Based Fingerprint Cryptosystem Using Pair-Polar Minutiae Structures.,2016,11,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs11.html#LiH16,https://doi.org/10.1109/TIFS.2015.2505630 +Ajay Kumar 0001,Personal authentication using finger knuckle surface.,2009,4,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs4.html#KumarR09,https://doi.org/10.1109/TIFS.2008.2011089 +Xinpeng Zhang,Lossy Compression and Iterative Reconstruction for Encrypted Image.,2011,6,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs6.html#Zhang11,https://doi.org/10.1109/TIFS.2010.2099114 +Taha A. Khalaf,Tradeoff Between Reliability and Security in Multiple Access Relay Networks Under Falsified Data Injection Attack.,2014,9,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs9.html#KhalafKA14,https://doi.org/10.1109/TIFS.2014.2299401 +C.-C. Jay Kuo,Editorial.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#Kuo12,https://doi.org/10.1109/TIFS.2012.2189290 +Adam Czajka,Pupil Dynamics for Iris Liveness Detection.,2015,10,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs10.html#Czajka15,https://doi.org/10.1109/TIFS.2015.2398815 +Richard E. Harang,Burstiness of Intrusion Detection Process: Empirical Evidence and a Modeling Approach.,2017,12,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs12.html#HarangK17,https://doi.org/10.1109/TIFS.2017.2705629 +Arunan Ramalingam,Gaussian Mixture Modeling of Short-Time Fourier Transform Features for Audio Fingerprinting.,2006,1,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs1.html#RamalingamK06,https://doi.org/10.1109/TIFS.2006.885036 +Nawaf Yousef Almudhahka,Semantic Face Signatures: Recognizing and Retrieving Faces by Verbal Descriptions.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#AlmudhahkaNH18,https://doi.org/10.1109/TIFS.2017.2765519 +Andrey Garnaev,Incorporating Attack-Type Uncertainty Into Network Protection.,2014,9,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs9.html#GarnaevBP14,https://doi.org/10.1109/TIFS.2014.2329241 +Lingyun Wen,Automated Depression Diagnosis Based on Facial Dynamic Analysis and Sparse Coding.,2015,10,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs10.html#WenLGZ15,https://doi.org/10.1109/TIFS.2015.2414392 +Tanya Ignatenko,Biometric systems: privacy and secrecy aspects.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#IgnatenkoW09,https://doi.org/10.1109/TIFS.2009.2033228 +Hanif Rahbari,Full Frame Encryption and Modulation Obfuscation Using Channel-Independent Preamble Identifier.,2016,11,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs11.html#RahbariK16,https://doi.org/10.1109/TIFS.2016.2582560 +Vivek Venugopal,Online Writer Identification With Sparse Coding-Based Descriptors.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#VenugopalS18,https://doi.org/10.1109/TIFS.2018.2823276 +Andrew D. Ker,Steganalysis of Embedding in Two Least-Significant Bits.,2007,2,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs2.html#Ker07,https://doi.org/10.1109/TIFS.2006.890519 +Hong Cao,On Establishing Edge Adaptive Grid for Bilevel Image Data Hiding.,2013,8,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs8.html#CaoK13,https://doi.org/10.1109/TIFS.2013.2274041 +He Fang,Coordinated Multiple-Relays Based Physical-Layer Security Improvement: A Single-Leader Multiple-Followers Stackelberg Game Scheme.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#FangXW18,https://doi.org/10.1109/TIFS.2017.2746001 +Jinho Choi 0001,Physical Layer Security for Channel-Aware Random Access With Opportunistic Jamming.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#Choi17a,https://doi.org/10.1109/TIFS.2017.2714842 +Ran Dubin,I Know What You Saw Last Minute - Encrypted HTTP Adaptive Video Streaming Title Classification.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#DubinDPH17,https://doi.org/10.1109/TIFS.2017.2730819 +Marco Baldi,Secrecy Transmission on Parallel Channels: Theoretical Limits and Performance of Practical Codes.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#BaldiCLTR14,https://doi.org/10.1109/TIFS.2014.2348915 +Chuhong Fei,A hypothesis testing approach to semifragile watermark-based authentication.,2009,4,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs4.html#FeiKK09,https://doi.org/10.1109/TIFS.2009.2015039 +Justin L. Rice,Using Mussel-Inspired Self-Organization and Account Proxies to Obfuscate Workload Ownership and Placement in Clouds.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#RicePR13,https://doi.org/10.1109/TIFS.2013.2259158 +Wen-Nung Lie,Dual protection of JPEG images based on informed embedding and two-stage watermark extraction techniques.,2006,1,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs1.html#LieLC06,https://doi.org/10.1109/TIFS.2006.879297 +Yoichi Tomioka,Robust Digital Camera Identification Based on Pairwise Magnitude Relations of Clustered Sensor Pattern Noise.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#TomiokaIK13,https://doi.org/10.1109/TIFS.2013.2284761 +Andrew Chi-Chih Yao,Privacy-Preserving Authenticated Key-Exchange Over Internet.,2014,9,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs9.html#YaoZ14,https://doi.org/10.1109/TIFS.2013.2293457 +Roy Wallace,Cross-Pollination of Normalization Techniques From Speaker to Face Authentication Using Gaussian Mixture Models.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#WallaceMMM12,https://doi.org/10.1109/TIFS.2012.2184095 +Vahid Heydari,Scalable Anti-Censorship Framework Using Moving Target Defense for Web Servers.,2017,12,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs12.html#HeydariKY17,https://doi.org/10.1109/TIFS.2016.2647218 +Seunghwan Park,New Constructions of Revocable Identity-Based Encryption From Multilinear Maps.,2015,10,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs10.html#ParkLL15,https://doi.org/10.1109/TIFS.2015.2419180 +Lacey Best-Rowden,Learning Face Image Quality From Human Assessments.,2018,13,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs13.html#Best-RowdenJ18,https://doi.org/10.1109/TIFS.2018.2799585 +Jinguang Han,AAC-OT: Accountable Oblivious Transfer With Access Control.,2015,10,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs10.html#HanSMAC15,https://doi.org/10.1109/TIFS.2015.2464781 +Guopu Zhu,Fragility analysis of adaptive quantization-based image hashing.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#ZhuHKY10,https://doi.org/10.1109/TIFS.2009.2038742 +Jon Sánchez,Toward a Universal Synthetic Speech Spoofing Detection Using Phase Information.,2015,10,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs10.html#SanchezSHNER15,https://doi.org/10.1109/TIFS.2015.2398812 +Marc Sánchez Artigas,Enhancing Tree-Based ORAM Using Batched Request Reordering.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#Artigas18,https://doi.org/10.1109/TIFS.2017.2762824 +Shaoquan Jiang,On the Optimality of Keyless Authentication in a Noisy Model.,2015,10,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs10.html#Jiang15,https://doi.org/10.1109/TIFS.2015.2405891 +Johan de Bock,JPGcarve: An Advanced Tool for Automated Recovery of Fragmented JPEG Files.,2016,11,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs11.html#BockS16,https://doi.org/10.1109/TIFS.2015.2475238 +Paul L. Yu,Physical-Layer Authentication.,2008,3,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs3.html#YuBS08,https://doi.org/10.1109/TIFS.2007.916273 +Mauro Conti,Analyzing Android Encrypted Network Traffic to Identify User Actions.,2016,11,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs11.html#ContiMSV16,https://doi.org/10.1109/TIFS.2015.2478741 +Wenbo He,SMOCK: a scalable method of cryptographic key management for mission-critical wireless ad-hoc networks.,2009,4,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs4.html#HeHSNL09,https://doi.org/10.1109/TIFS.2008.2009601 +Alessandro Cilardo,Exploiting Vulnerabilities in Cryptographic Hash Functions Based on Reconfigurable Hardware.,2013,8,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs8.html#CilardoM13,https://doi.org/10.1109/TIFS.2013.2256898 +Yen-Wei Huang,On the Fingerprinting Capacity Games for Arbitrary Alphabets and Their Asymptotics.,2014,9,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs9.html#HuangM14,https://doi.org/10.1109/TIFS.2014.2338739 +Shouling Ji,Seed-Based De-Anonymizability Quantification of Social Networks.,2016,11,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs11.html#JiLGMB16,https://doi.org/10.1109/TIFS.2016.2529591 +Shih-Chun Lin,Fingerprinting with minimum distance decoding.,2009,4,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs4.html#LinSG09,https://doi.org/10.1109/TIFS.2008.2012201 +Paulo F. Oliveira,Coding for Trusted Storage in Untrusted Networks.,2012,7,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs7.html#OliveiraLVBM12,https://doi.org/10.1109/TIFS.2012.2217331 +Bo Fu,Multibiometric cryptosystem: model structure and performance analysis.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#FuYLH09,https://doi.org/10.1109/TIFS.2009.2033227 +Minoru Kuribayashi,Simplified MAP Detector for Binary Fingerprinting Code Embedded by Spread Spectrum Watermarking Scheme.,2014,9,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs9.html#Kuribayashi14,https://doi.org/10.1109/TIFS.2014.2305799 +Valentina Conotter,Forensic Detection of Processing Operator Chains: Recovering the History of Filtered JPEG Images.,2015,10,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs10.html#ConotterAP15,https://doi.org/10.1109/TIFS.2015.2424195 +Xun Yi,Private Cell Retrieval From Data Warehouses.,2016,11,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs11.html#YiPBX16,https://doi.org/10.1109/TIFS.2016.2527620 +Kaveh Shamsi,On the Approximation Resiliency of Logic Locking and IC Camouflaging Schemes.,2019,14,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs14.html#ShamsiMLPJ19,https://doi.org/10.1109/TIFS.2018.2850319 +Chunfang Yang,Steganalysis Frameworks of Embedding in Multiple Least-Significant Bits.,2008,3,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs3.html#YangLLL08,https://doi.org/10.1109/TIFS.2008.2007240 +Aglika Gyaourova,Index Codes for Multibiometric Pattern Retrieval.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#GyaourovaR12,https://doi.org/10.1109/TIFS.2011.2172429 +Pardeep Kumar,Anonymous Secure Framework in Connected Smart Home Environments.,2017,12,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs12.html#KumarBGIH17,https://doi.org/10.1109/TIFS.2016.2647225 +Di Huang 0001,3-D Face Recognition Using eLBP-Based Facial Description and Local Feature Hybrid Matching.,2012,7,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs7.html#HuangAWC12,https://doi.org/10.1109/TIFS.2012.2206807 +Andrew D. Ker,Derivation of Error Distribution in Least Squares Steganalysis.,2007,2,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs2.html#Ker07a,https://doi.org/10.1109/TIFS.2007.897265 +Yang Cong,Video Anomaly Search in Crowded Scenes via Spatio-Temporal Motion Context.,2013,8,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs8.html#CongYT13,https://doi.org/10.1109/TIFS.2013.2272243 +Alberto Compagno,Modeling Enlargement Attacks Against UWB Distance Bounding Protocols.,2016,11,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs11.html#CompagnoCDDPT16,https://doi.org/10.1109/TIFS.2016.2541613 +Pravin Kakar,Exposing Postprocessed Copy-Paste Forgeries Through Transform-Invariant Features.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#KakarS12,https://doi.org/10.1109/TIFS.2012.2188390 +Zoe L. Jiang,Maintaining Hard Disk Integrity With Digital Legal Professional Privilege (LPP) Data.,2013,8,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs8.html#JiangFLLIKCHYP13,https://doi.org/10.1109/TIFS.2013.2256784 +Yan Shi,Improved Radiometric Identification of Wireless Devices Using MIMO Transmission.,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#ShiJ11,https://doi.org/10.1109/TIFS.2011.2162949 +Jung Hee Cheon,Optimized Search-and-Compute Circuits and Their Application to Query Evaluation on Encrypted Data.,2016,11,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs11.html#CheonKK16,https://doi.org/10.1109/TIFS.2015.2483486 +Honghai Yu,Regularized Adaboost Learning for Identification of Time-Varying Content.,2014,9,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs9.html#YuM14,https://doi.org/10.1109/TIFS.2014.2347808 +Soo-Chang Pei,A Novel Image Recovery Algorithm for Visible Watermarked Images.,2006,1,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs1.html#PeiZ06,https://doi.org/10.1109/TIFS.2006.885031 +Chuntao Wang,Efficient Compression of Encrypted Binary Images Using the Markov Random Field.,2018,13,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs13.html#WangNZH18,https://doi.org/10.1109/TIFS.2017.2784379 +Bin Li 0011,Revealing the Trace of High-Quality JPEG Compression Through Quantization Noise Analysis.,2015,10,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs10.html#LiNLTH15,https://doi.org/10.1109/TIFS.2015.2389148 +Qi Zhang 0015,Deep Feature Fusion for Iris and Periocular Biometrics on Mobile Devices.,2018,13,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs13.html#ZhangLST18,https://doi.org/10.1109/TIFS.2018.2833033 +Qi Li 0002,LIVE: Lightweight Integrity Verification and Content Access Control for Named Data Networking.,2015,10,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs10.html#LiZZSF15,https://doi.org/10.1109/TIFS.2014.2365742 +Tomás Pevný,From Blind to Quantitative Steganalysis.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#PevnyFK12,https://doi.org/10.1109/TIFS.2011.2175918 +Joseph Roth,Investigating the Discriminative Power of Keystroke Sound.,2015,10,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs10.html#RothLRM15,https://doi.org/10.1109/TIFS.2014.2374424 +Farshad Naghibi,The CEO Problem With Secrecy Constraints.,2015,10,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs10.html#NaghibiSS15,https://doi.org/10.1109/TIFS.2015.2404134 +Marco Fontani,A Framework for Decision Fusion in Image Forensics Based on Dempster-Shafer Theory of Evidence.,2013,8,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs8.html#FontaniBRPB13,https://doi.org/10.1109/TIFS.2013.2248727 +Nir Nissim,ALDOCX: Detection of Unknown Malicious Microsoft Office Documents Using Designated Active Learning Methods Based on New Structural Feature Extraction Methodology.,2017,12,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs12.html#NissimCE17,https://doi.org/10.1109/TIFS.2016.2631905 +Stefanos Zafeiriou,Learning Discriminant Person-Specific Facial Models Using Expandable Graphs.,2007,2,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs2.html#ZafeiriouTP07,https://doi.org/10.1109/TIFS.2006.890308 +Xiaoyong Li 0003,T-Broker: A Trust-Aware Service Brokering Scheme for Multiple Cloud Collaborative Services.,2015,10,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs10.html#LiMZY15,https://doi.org/10.1109/TIFS.2015.2413386 +Weiqi Luo,Edge adaptive image steganography based on LSB matching revisited.,2010,5,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs5.html#LuoHH10,https://doi.org/10.1109/TIFS.2010.2041812 +Manoranjan Mohanty,$2DCrypt$ : Image Scaling and Cropping in Encrypted Domains.,2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#MohantyAR16,https://doi.org/10.1109/TIFS.2016.2585085 +Seyyedeh Atefeh Musavi,Back to Static Analysis for Kernel-Level Rootkit Detection.,2014,9,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs9.html#MusaviK14,https://doi.org/10.1109/TIFS.2014.2337256 +Wien Hong,A Novel Data Embedding Method Using Adaptive Pixel Pair Matching.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#HongC12,https://doi.org/10.1109/TIFS.2011.2155062 +Seungwon Shin,A Large-Scale Empirical Study of Conficker.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#ShinGRL12,https://doi.org/10.1109/TIFS.2011.2173486 +Jian Shen 0001,An Efficient Public Auditing Protocol With Novel Dynamic Structure for Cloud Data.,2017,12,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs12.html#ShenSCHS17,https://doi.org/10.1109/TIFS.2017.2705620 +Bingwen Feng,Secure Binary Image Steganography Based on Minimizing the Distortion on the Texture.,2015,10,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs10.html#FengL015,https://doi.org/10.1109/TIFS.2014.2368364 +Cong Zuo,Fine-Grained Two-Factor Protection Mechanism for Data Sharing in Cloud Storage.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#ZuoSLWL18,https://doi.org/10.1109/TIFS.2017.2746000 +Zhan-Li Sun,Depth Estimation of Face Images Based on the Constrained ICA Model.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#SunL11,https://doi.org/10.1109/TIFS.2011.2118207 +Oya çeliktutan,Blind Identification of Source Cell-Phone Model.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#CeliktutanSA08,https://doi.org/10.1109/TIFS.2008.926993 +Alessandra A. Paulino,Latent Fingerprint Matching Using Descriptor-Based Hough Transform.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#PaulinoFJ13,https://doi.org/10.1109/TIFS.2012.2223678 +Liang Xiao 0003,Jamming-Resistant Collaborative Broadcast Using Uncoordinated Frequency Hopping.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#XiaoDN12,https://doi.org/10.1109/TIFS.2011.2165948 +Tamer Shanableh,Data Hiding in MPEG Video Files Using Multivariate Regression and Flexible Macroblock Ordering.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#Shanableh12,https://doi.org/10.1109/TIFS.2011.2177087 +Amir Valizadeh,Correlation-and-Bit-Aware Spread Spectrum Embedding for Data Hiding.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#ValizadehW11,https://doi.org/10.1109/TIFS.2010.2103061 +Darren Hurley-Smith,Certifiably Biased: An In-Depth Analysis of a Common Criteria EAL4+ Certified TRNG.,2018,13,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs13.html#Hurley-SmithH18,https://doi.org/10.1109/TIFS.2017.2777342 +Vishal M. Patel,Dictionary-Based Face Recognition Under Variable Lighting and Pose.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#PatelWBPC12,https://doi.org/10.1109/TIFS.2012.2189205 +Jean-François Jourdas,High-rate random-like spherical fingerprinting codes with linear decoding complexity.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#JourdasM09,https://doi.org/10.1109/TIFS.2009.2034188 +Da Luo,Band Energy Difference for Source Attribution in Audio Forensics.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#LuoKH18,https://doi.org/10.1109/TIFS.2018.2812185 +Wei Fan 0004,"Corrections to ""JPEG Anti-Forensics With Improved Tradeoff Between Forensic Undetectability and Image Quality"".",2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#FanWCX16,https://doi.org/10.1109/TIFS.2016.2585398 +Yingpeng Sang,Achieving Probabilistic Anonymity in a Linear and Hybrid Randomization Model.,2016,11,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs11.html#SangSTZ16,https://doi.org/10.1109/TIFS.2016.2562605 +Iuliia Tkachenko,Two-Level QR Code for Private Message Sharing and Document Authentication.,2016,11,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs11.html#TkachenkoPDSGG16,https://doi.org/10.1109/TIFS.2015.2506546 +Chester Rebeiro,Boosting Profiled Cache Timing Attacks With A Priori Analysis.,2012,7,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs7.html#RebeiroM12,https://doi.org/10.1109/TIFS.2012.2217333 +Fangjun Huang,New Channel Selection Rule for JPEG Steganography.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#HuangHS12,https://doi.org/10.1109/TIFS.2012.2198213 +C.-M. Yu,Practical and Secure Multidimensional Query Framework in Tiered Sensor Networks.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#YuTLK11,https://doi.org/10.1109/TIFS.2011.2109384 +Andrew Chi-Chih Yao,Online/Offline Signatures for Low-Power Devices.,2013,8,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs8.html#YaoZ13,https://doi.org/10.1109/TIFS.2012.2232653 +Raffaele Cappelli,On the Operational Quality of Fingerprint Scanners.,2008,3,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs3.html#CappelliFM08,https://doi.org/10.1109/TIFS.2008.919336 +Jia Yu,Enabling Cloud Storage Auditing With Key-Exposure Resistance.,2015,10,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs10.html#YuRWV15,https://doi.org/10.1109/TIFS.2015.2400425 +Ngoc-Son Vu,Exploring Patterns of Gradient Orientations and Magnitudes for Face Recognition.,2013,8,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs8.html#Vu13,https://doi.org/10.1109/TIFS.2012.2224866 +Sara Motahari,Online anonymity protection in computer-mediated communication.,2010,5,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs5.html#MotahariZJ10,https://doi.org/10.1109/TIFS.2010.2051261 +Yuanfang Guo,Fake Colorized Image Detection.,2018,13,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs13.html#GuoCZW18,https://doi.org/10.1109/TIFS.2018.2806926 +Hong Zhao,Audio Recording Location Identification Using Acoustic Environment Signature.,2013,8,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs8.html#ZhaoM13,https://doi.org/10.1109/TIFS.2013.2278843 +Thanh-Ha Le,Noise Reduction in Side Channel Attack Using Fourth-Order Cumulant.,2007,2,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs2.html#LeCSL07,https://doi.org/10.1109/TIFS.2007.910252 +Ligang Zheng,Near-Duplicate Image Detection in a Visually Salient Riemannian Space.,2012,7,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs7.html#ZhengLQH12,https://doi.org/10.1109/TIFS.2012.2206386 +Tolga Inan,3-D Face Recognition With Local Shape Descriptors.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#InanH12,https://doi.org/10.1109/TIFS.2012.2186293 +Javier Galbally,A New Multimodal Approach for Password Strength Estimation - Part II: Experimental Evaluation.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#GalballyCS17a,https://doi.org/10.1109/TIFS.2017.2730359 +Libing Wu,Secure Key Agreement and Key Protection for Mobile Device User Authentication.,2019,14,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs14.html#WuWCH19,https://doi.org/10.1109/TIFS.2018.2850299 +Slim Rekhis,A System for Formal Digital Forensic Investigation Aware of Anti-Forensic Attacks.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#RekhisB12,https://doi.org/10.1109/TIFS.2011.2176117 +Tomás Pevný,Detection of Double-Compression in JPEG Images for Applications in Steganography.,2008,3,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs3.html#PevnyF08,https://doi.org/10.1109/TIFS.2008.922456 +Weili Han,Regional Patterns and Vulnerability Analysis of Chinese Web Passwords.,2016,11,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs11.html#HanLYX16,https://doi.org/10.1109/TIFS.2015.2490620 +Quratulain Alam,Formal Verification of the xDAuth Protocol.,2016,11,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs11.html#AlamTMAAAKVB16,https://doi.org/10.1109/TIFS.2016.2561909 +Ruei-Hau Hsu,GRAAD: Group Anonymous and Accountable D2D Communication in Mobile Networks.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#HsuLQC18,https://doi.org/10.1109/TIFS.2017.2756567 +Qinyi Xu,Radio Biometrics: Human Recognition Through a Wall.,2017,12,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs12.html#XuCWL17,https://doi.org/10.1109/TIFS.2016.2647224 +Shuangqing Wei,Trade-Off Between Security and Performance in Block Ciphered Systems With Erroneous Ciphertexts.,2013,8,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs8.html#WeiWYY13,https://doi.org/10.1109/TIFS.2013.2248724 +Chunsheng Zhu,An Authenticated Trust and Reputation Calculation and Management System for Cloud and Sensor Networks Integration.,2015,10,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs10.html#ZhuNLY15,https://doi.org/10.1109/TIFS.2014.2364679 +Noboru Babaguchi,Guest Editorial: Special issue on intelligent video surveillance for public security and personal privacy.,2013,8,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs8.html#BabaguchiCCDW13,https://doi.org/10.1109/TIFS.2013.2279945 +Matteo Ferrara,Face Demorphing.,2018,13,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs13.html#FerraraFM18,https://doi.org/10.1109/TIFS.2017.2777340 +Chao Shen 0001,Performance Analysis of Touch-Interaction Behavior for Active Smartphone Authentication.,2016,11,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs11.html#ShenZGM16,https://doi.org/10.1109/TIFS.2015.2503258 +Emiliano De Cristofaro,Extended Capabilities for a Privacy-Enhanced Participatory Sensing Infrastructure (PEPSI).,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#CristofaroS13,https://doi.org/10.1109/TIFS.2013.2287092 +Maneesh Upmanyu,Blind authentication: a secure crypto-biometric verification protocol.,2010,5,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs5.html#UpmanyuNSJ10,https://doi.org/10.1109/TIFS.2010.2043188 +Eric Love,Proof-Carrying Hardware Intellectual Property: A Pathway to Trusted Module Acquisition.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#LoveJM12,https://doi.org/10.1109/TIFS.2011.2160627 +Ravi Garg,Seeing ENF: Power-Signature-Based Timestamp for Digital Multimedia via Optical Sensing and Signal Processing.,2013,8,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs8.html#GargVH013,https://doi.org/10.1109/TIFS.2013.2272217 +Raj S. Katti,On the Security of Randomized Arithmetic Codes Against Ciphertext-Only Attacks.,2011,6,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs6.html#KattiSV11,https://doi.org/10.1109/TIFS.2010.2096809 +Huiming Wang,Joint Source-Relay Precoding and Power Allocation for Secure Amplify-and-Forward MIMO Relay Networks.,2014,9,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs9.html#WangLX14,https://doi.org/10.1109/TIFS.2014.2327480 +Jessica J. Fridrich,Rich Models for Steganalysis of Digital Images.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#FridrichK12,https://doi.org/10.1109/TIFS.2012.2190402 +Aijiao Cui,Static and Dynamic Obfuscations of Scan Data Against Scan-Based Side-Channel Attacks.,2017,12,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs12.html#CuiLC17,https://doi.org/10.1109/TIFS.2016.2613847 +Sharad Joshi,Single Classifier-Based Passive System for Source Printer Classification Using Local Texture Features.,2018,13,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs13.html#JoshiK18,https://doi.org/10.1109/TIFS.2017.2779441 +Lingxiang Li,Linear Precoder Design for an MIMO Gaussian Wiretap Channel With Full-Duplex Source and Destination Nodes.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#LiCPF18,https://doi.org/10.1109/TIFS.2017.2756350 +Wei Yu 0003,Securing Cooperative Ad-Hoc Networks Under Noise and Imperfect Monitoring: Strategies and Game Theoretic Analysis.,2007,2,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs2.html#YuJL07,https://doi.org/10.1109/TIFS.2007.897270 +Hamid Alipour,Wireless Anomaly Detection Based on IEEE 802.11 Behavior Analysis.,2015,10,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs10.html#AlipourASH15,https://doi.org/10.1109/TIFS.2015.2433898 +Jun Wang,Quality-Specific Hand Vein Recognition System.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#WangW17,https://doi.org/10.1109/TIFS.2017.2713340 +Mohammad Haghighat,Discriminant Correlation Analysis: Real-Time Feature Level Fusion for Multimodal Biometric Recognition.,2016,11,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs11.html#HaghighatAA16,https://doi.org/10.1109/TIFS.2016.2569061 +J. Benito Camiña,Temporal and Spatial Locality: An Abstraction for Masquerade Detection.,2016,11,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs11.html#CaminaMTM16,https://doi.org/10.1109/TIFS.2016.2571679 +Quanxue Gao,"Rebuttal to ""Comments on 'Joint Global and Local Structure Discriminant Analysis""'.",2016,11,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs11.html#Gao16,https://doi.org/10.1109/TIFS.2015.2490622 +David Vazquez-Padin,A Random Matrix Approach to the Forensic Analysis of Upscaled Images.,2017,12,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs12.html#Vazquez-PadinPA17,https://doi.org/10.1109/TIFS.2017.2699638 +Sankardas Roy,Secure Data Aggregation in Wireless Sensor Networks: Filtering out the Attacker's Impact.,2014,9,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs9.html#RoyCSJ14,https://doi.org/10.1109/TIFS.2014.2307197 +Kaitai Liang,Privacy-Preserving and Regular Language Search Over Encrypted Cloud Data.,2016,11,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs11.html#LiangHGL16,https://doi.org/10.1109/TIFS.2016.2581316 +Quratulain Alam,A Cross Tenant Access Control (CTAC) Model for Cloud Computing: Formal Specification and Verification.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#AlamMACTA17,https://doi.org/10.1109/TIFS.2016.2646639 +John Daugman,Information Theory and the IrisCode.,2016,11,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs11.html#Daugman16,https://doi.org/10.1109/TIFS.2015.2500196 +Lourdes Araujo,Web spam detection: new classification features based on qualified link analysis and language models.,2010,5,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs5.html#AraujoM10,https://doi.org/10.1109/TIFS.2010.2050767 +Kai Wang 0002,Hierarchical Watermarking of Semiregular Meshes Based on Wavelet Transform.,2008,3,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs3.html#WangLDB08,https://doi.org/10.1109/TIFS.2008.2007229 +Miao Xie,Distributed Segment-Based Anomaly Detection With Kullback-Leibler Divergence in Wireless Sensor Networks.,2017,12,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs12.html#XieHGZ17,https://doi.org/10.1109/TIFS.2016.2603961 +Yu Fu,Stealthy Domain Generation Algorithms.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#FuYHOHSSDBB17,https://doi.org/10.1109/TIFS.2017.2668361 +Smita Naval,Employing Program Semantics for Malware Detection.,2015,10,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs10.html#NavalLRGC15,https://doi.org/10.1109/TIFS.2015.2469253 +Yezekael Hayel,Epidemic Protection Over Heterogeneous Networks Using Evolutionary Poisson Games.,2017,12,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs12.html#HayelZ17,https://doi.org/10.1109/TIFS.2017.2687883 +Jinguang Han,Improving Privacy and Security in Decentralized Ciphertext-Policy Attribute-Based Encryption.,2015,10,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs10.html#HanSMZA15,https://doi.org/10.1109/TIFS.2014.2382297 +Le Zhang,Exploiting Process Variations and Programming Sensitivity of Phase Change Memory for Reconfigurable Physical Unclonable Functions.,2014,9,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs9.html#ZhangKCCT14,https://doi.org/10.1109/TIFS.2014.2315743 +Ting He,Distributed Detection of Information Flows.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#HeT08,https://doi.org/10.1109/TIFS.2008.928537 +Onur Günlü,Controllable Identifier Measurements for Private Authentication With Secret Keys.,2018,13,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs13.html#GunluKSC18,https://doi.org/10.1109/TIFS.2018.2806937 +Won Taek Song,Perfect Secrecy Over Binary Erasure Wiretap Channel of Type II.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#SongCH12,https://doi.org/10.1109/TIFS.2012.2199629 +Mauro Barni,Farewell Message.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#Barni17,https://doi.org/10.1109/TIFS.2017.2755979 +Abdulmohsen Almalawi,An Efficient Data-Driven Clustering Technique to Detect Attacks in SCADA Systems.,2016,11,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs11.html#AlmalawiFTAAZ16,https://doi.org/10.1109/TIFS.2015.2512522 +Wouter Biesmans,Private Mobile Pay-TV From Priced Oblivious Transfer.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#BiesmansBRPV18,https://doi.org/10.1109/TIFS.2017.2746058 +Wei Wang 0100,Relay Selection for Secure Successive AF Relaying Networks With Untrusted Nodes.,2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#WangTL16,https://doi.org/10.1109/TIFS.2016.2584006 +Yichun Shi,Face Clustering: Representation and Pairwise Constraints.,2018,13,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs13.html#ShiOJ18,https://doi.org/10.1109/TIFS.2018.2796999 +Jian Li,Segmentation-Based Image Copy-Move Forgery Detection Scheme.,2015,10,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs10.html#LiLYS15,https://doi.org/10.1109/TIFS.2014.2381872 +Mahdi Jafari Siavoshani,Multi-Party Secret Key Agreement Over State-Dependent Wireless Broadcast Channels.,2017,12,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs12.html#SiavoshaniMFD17,https://doi.org/10.1109/TIFS.2016.2612649 +Hung D. Ly,Security Embedding Codes.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#LyLB12,https://doi.org/10.1109/TIFS.2011.2163713 +Riccardo Lazzeretti,Piecewise Function Approximation With Private Data.,2016,11,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs11.html#LazzerettiPB16,https://doi.org/10.1109/TIFS.2015.2503268 +Patrick Bas,A New Measure of Watermarking Security: The Effective Key Length.,2013,8,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs8.html#BasF13,https://doi.org/10.1109/TIFS.2013.2267960 +Hassan Salmani,Vulnerability Analysis of a Circuit Layout to Hardware Trojan Insertion.,2016,11,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs11.html#SalmaniT16,https://doi.org/10.1109/TIFS.2016.2520910 +Peng Xu 0002,Group Secret Key Generation in Wireless Networks: Algorithms and Rate Optimization.,2016,11,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs11.html#XuCDDL16,https://doi.org/10.1109/TIFS.2016.2553643 +Song Han,PPM-HDA: Privacy-Preserving and Multifunctional Health Data Aggregation With Fault Tolerance.,2016,11,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs11.html#HanZLJZ16,https://doi.org/10.1109/TIFS.2015.2472369 +Oleg Mazonka,Cryptoleq: A Heterogeneous Abstract Machine for Encrypted and Unencrypted Computation.,2016,11,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs11.html#MazonkaTM16,https://doi.org/10.1109/TIFS.2016.2569062 +Kai-Hui Lee,Digital Image Sharing by Diverse Image Media.,2014,9,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs9.html#LeeC14,https://doi.org/10.1109/TIFS.2013.2292509 +Jessica J. Fridrich,Effect of Cover Quantization on Steganographic Fisher Information.,2013,8,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs8.html#Fridrich13,https://doi.org/10.1109/TIFS.2012.2235832 +Jun Zhang 0010,Internet Traffic Classification by Aggregating Correlated Naive Bayes Predictions.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#ZhangCXZX13,https://doi.org/10.1109/TIFS.2012.2223675 +Miodrag Potkonjak,Guest Editorial Integrated Circuit and System Security.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#PotkonjakKVI12,https://doi.org/10.1109/TIFS.2011.2180833 +Jim Aarestad,Detecting Trojans Through Leakage Current Analysis Using Multiple Supply Pad IDDQ s.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#AarestadARP10,https://doi.org/10.1109/TIFS.2010.2061228 +Qing Li,Reducing delay and enhancing DoS resistance in multicast authentication through multigrade security.,2006,1,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs1.html#LiT06,https://doi.org/10.1109/TIFS.2006.873599 +Qian Tao,Robust Biometric Score Fusion by Naive Likelihood Ratio via Receiver Operating Characteristics.,2013,8,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs8.html#TaoV13,https://doi.org/10.1109/TIFS.2012.2231862 +Abhishek Sharma,A Novel Online Signature Verification System Based on GMM Features in a DTW Framework.,2017,12,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs12.html#SharmaS17,https://doi.org/10.1109/TIFS.2016.2632063 +Yuan Zhang 0004,On Designing Satisfaction-Ratio-Aware Truthful Incentive Mechanisms for k-Anonymity Location Privacy.,2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#ZhangTZ16,https://doi.org/10.1109/TIFS.2016.2587241 +Xinpeng Zhang,Watermarking With Flexible Self-Recovery Quality Based on Compressive Sensing and Compositive Reconstruction.,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#ZhangQRF11,https://doi.org/10.1109/TIFS.2011.2159208 +Yongfeng Huang,Steganography Integration Into a Low-Bit Rate Speech Codec.,2012,7,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs7.html#HuangLTB12,https://doi.org/10.1109/TIFS.2012.2218599 +Hiroki Okada,Randomness Evaluation With the Discrete Fourier Transform Test Based on Exact Analysis of the Reference Distribution.,2017,12,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs12.html#OkadaU17,https://doi.org/10.1109/TIFS.2017.2656473 +Juan Ramón Troncoso-Pastoriza,Secure Adaptive Filtering.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#Troncoso-PastorizaP11,https://doi.org/10.1109/TIFS.2011.2109385 +Bing Zeng,Perceptual Encryption of H.264 Videos: Embedding Sign-Flips Into the Integer-Based Transforms.,2014,9,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs9.html#ZengAZG14,https://doi.org/10.1109/TIFS.2013.2293955 +Yongzhi Wang,Practical Verifiable Computation-A MapReduce Case Study.,2018,13,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs13.html#WangSJ18,https://doi.org/10.1109/TIFS.2017.2787993 +Jiajun Wen 0001,Directional Gaussian Model for Automatic Speeding Event Detection.,2017,12,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs12.html#WenLMWZ17,https://doi.org/10.1109/TIFS.2017.2705623 +Yafei Yang,Securing rating aggregation systems using statistical detectors and trust.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#YangSKY09,https://doi.org/10.1109/TIFS.2009.2033741 +Kousha Kalantari,Robust Privacy-Utility Tradeoffs Under Differential Privacy and Hamming Distortion.,2018,13,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs13.html#KalantariSS18,https://doi.org/10.1109/TIFS.2018.2831619 +Giulia Boato,Watermarking robustness evaluation based on perceptual quality via genetic algorithms.,2009,4,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs4.html#BoatoCNF09,https://doi.org/10.1109/TIFS.2009.2020362 +Hang Long,Precoding and Cooperative Jamming in Multi- Antenna Two-Way Relaying Wiretap Systems Without Eavesdropper's Channel State Information.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#LongXL17,https://doi.org/10.1109/TIFS.2017.2656846 +Khosro Bahrami,Blurred Image Splicing Localization by Exposing Blur Type Inconsistency.,2015,10,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs10.html#BahramiKLL15,https://doi.org/10.1109/TIFS.2015.2394231 +Chao Wang,Fast Matrix Embedding by Matrix Extending.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#WangZLY12,https://doi.org/10.1109/TIFS.2011.2164907 +Jeffrey R. Paone,Double Trouble: Differentiating Identical Twins by Face Recognition.,2014,9,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs9.html#PaoneFPBBGQPG14,https://doi.org/10.1109/TIFS.2013.2296373 +Carmen Campomanes-Alvarez,Modeling Skull-Face Anatomical/Morphological Correspondence for Craniofacial Superimposition-Based Identification.,2018,13,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs13.html#Campomanes-Alvarez18,https://doi.org/10.1109/TIFS.2018.2791434 +Ikenna Odinaka,ECG Biometric Recognition: A Comparative Analysis.,2012,7,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs7.html#OdinakaLKOSR12,https://doi.org/10.1109/TIFS.2012.2215324 +Mu Li,Twofold Video Hashing With Automatic Synchronization.,2015,10,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs10.html#LiM15,https://doi.org/10.1109/TIFS.2015.2425362 +Luke Miratrix,Election audits using a trinomial bound.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#MiratrixS09,https://doi.org/10.1109/TIFS.2009.2034189 +Francis Minhthang Bui,Fuzzy key binding strategies based on quantization index modulation (QIM) for biometric encryption (BE) applications.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#BuiMLPH10,https://doi.org/10.1109/TIFS.2009.2037662 +Jun Yan 0007,Multi-Contingency Cascading Analysis of Smart Grid Based on Self-Organizing Map.,2013,8,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs8.html#YanZHS13,https://doi.org/10.1109/TIFS.2013.2249065 +Michail Tsikerdekis,Multiple Account Identity Deception Detection in Social Media Using Nonverbal Behavior.,2014,9,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs9.html#TsikerdekisZ14,https://doi.org/10.1109/TIFS.2014.2332820 +Xiangui Kang,Robust Median Filtering Forensics Using an Autoregressive Model.,2013,8,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs8.html#KangSPL13,https://doi.org/10.1109/TIFS.2013.2273394 +Unsang Park,Face Tracking and Recognition at a Distance: A Coaxial and Concentric PTZ Camera System.,2013,8,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs8.html#ParkCJL13,https://doi.org/10.1109/TIFS.2013.2261061 +Juan E. Tapia,Gender Classification From the Same Iris Code Used for Recognition.,2016,11,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs11.html#TapiaPB16,https://doi.org/10.1109/TIFS.2016.2550418 +Na Wang 0003,Efficient Retrieval Over Documents Encrypted by Attributes in Cloud Computing.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#WangFBZ18,https://doi.org/10.1109/TIFS.2018.2825952 +Mathias Payer,What You Submit Is Who You Are: A Multimodal Approach for Deanonymizing Scientific Publications.,2015,10,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs10.html#PayerHGBF15,https://doi.org/10.1109/TIFS.2014.2368355 +Belhassen Bayar,Constrained Convolutional Neural Networks: A New Approach Towards General Purpose Image Manipulation Detection.,2018,13,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs13.html#BayarS18,https://doi.org/10.1109/TIFS.2018.2825953 +Ajay Kumar 0001,Toward More Accurate Matching of Contactless Palmprint Images Under Less Constrained Environments.,2019,14,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs14.html#Kumar19,https://doi.org/10.1109/TIFS.2018.2837669 +Giovanni Chierchia,A Bayesian-MRF Approach for PRNU-Based Image Forgery Detection.,2014,9,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs9.html#ChierchiaPSV14,https://doi.org/10.1109/TIFS.2014.2302078 +Philip B. Stark,Risk-limiting postelection audits: conservative P-values from common probability inequalities.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#Stark09a,https://doi.org/10.1109/TIFS.2009.2034190 +Nhan Duy Truong,Machine Learning Cryptanalysis of a Quantum Random Number Generator.,2019,14,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs14.html#TruongHALK19,https://doi.org/10.1109/TIFS.2018.2850770 +Jiangshan Yu,An Efficient Generic Framework for Three-Factor Authentication With Provably Secure Instantiation.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#YuWMG14,https://doi.org/10.1109/TIFS.2014.2362979 +Kwangtaek Kim,Roughness-Adaptive 3-D Watermarking Based on Masking Effect of Surface Roughness.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#KimBT10,https://doi.org/10.1109/TIFS.2010.2068546 +Jindan Zhou,An Efficient 3-D Ear Recognition System Employing Local and Holistic Features.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#ZhouCA12,https://doi.org/10.1109/TIFS.2012.2189005 +Huiming Wang,Hybrid Cooperative Beamforming and Jamming for Physical-Layer Security of Two-Way Relay Networks.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#WangLYX13,https://doi.org/10.1109/TIFS.2013.2287046 +Sinjini Mitra,Face identification using novel frequency-domain representation of facial asymmetry.,2006,1,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs1.html#MitraSK06,https://doi.org/10.1109/TIFS.2006.879301 +Jia Yu,Enabling Cloud Storage Auditing With Verifiable Outsourcing of Key Updates.,2016,11,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs11.html#YuRW16,https://doi.org/10.1109/TIFS.2016.2528500 +Sandra Zancajo-Blazquez,Segmentation of Indoor Mapping Point Clouds Applied to Crime Scenes Reconstruction.,2015,10,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs10.html#Zancajo-Blazquez15,https://doi.org/10.1109/TIFS.2015.2407699 +Alberto A. de Oliveira,Multiple Parenting Phylogeny Relationships in Digital Images.,2016,11,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs11.html#OliveiraFRPBGDR16,https://doi.org/10.1109/TIFS.2015.2493989 +Peng Xu 0002,Achievable Secrecy Rates for Relay-Eavesdropper Channel Based on the Application of Noisy Network Coding.,2018,13,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs13.html#XuDD18,https://doi.org/10.1109/TIFS.2018.2805601 +Weijia Wang,Ridge-Based DPA: Improvement of Differential Power Analysis For Nanoscale Chips.,2018,13,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs13.html#WangYSLGG18,https://doi.org/10.1109/TIFS.2017.2787985 +Jesús Gómez-Vilardebó,Smart Meter Privacy for Multiple Users in the Presence of an Alternative Energy Source.,2015,10,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs10.html#Gomez-VilardeboG15,https://doi.org/10.1109/TIFS.2014.2365365 +Yongbo Li,SARRE: Semantics-Aware Rule Recommendation and Enforcement for Event Paths on Android.,2016,11,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs11.html#LiYLV16,https://doi.org/10.1109/TIFS.2016.2596141 +Sairul I. Safie,Electrocardiogram (ECG) Biometric Authentication Using Pulse Active Ratio (PAR).,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#SafieSP11,https://doi.org/10.1109/TIFS.2011.2162408 +Abdellatif Zaidi,Secure Degrees of Freedom of MIMO X-Channels With Output Feedback and Delayed CSIT.,2013,8,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs8.html#ZaidiASV13,https://doi.org/10.1109/TIFS.2013.2278936 +Meng Shen,Classification of Encrypted Traffic With Second-Order Markov Chains and Application Attribute Bigrams.,2017,12,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs12.html#ShenWZW17,https://doi.org/10.1109/TIFS.2017.2692682 +Ulrich Rührmair,PUF Modeling Attacks on Simulated and Silicon Data.,2013,8,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs8.html#RuhrmairSSXMSDSBD13,https://doi.org/10.1109/TIFS.2013.2279798 +Haoxi Li,Age-Related Factor Guided Joint Task Modeling Convolutional Neural Network for Cross-Age Face Recognition.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#LiHY18,https://doi.org/10.1109/TIFS.2018.2819124 +Shui Yu,Predicted Packet Padding for Anonymous Web Browsing Against Traffic Analysis Attacks.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#YuZDJ12,https://doi.org/10.1109/TIFS.2012.2197392 +Florian Wilde,Spatial Correlation Analysis on Physical Unclonable Functions.,2018,13,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs13.html#WildeGP18,https://doi.org/10.1109/TIFS.2018.2791341 +Shengshan Hu,Outsourced Biometric Identification With Privacy.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#HuLWCD18,https://doi.org/10.1109/TIFS.2018.2819128 +Attila Altay Yavuz,Real-Time Digital Signatures for Time-Critical Networks.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#YavuzMSPB17,https://doi.org/10.1109/TIFS.2017.2716911 +Peng Xu 0002,Simultaneously Generating Secret and Private Keys in a Cooperative Pairwise-Independent Network.,2016,11,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs11.html#XuDDK16,https://doi.org/10.1109/TIFS.2016.2516970 +Imad M. Abbadi,Towards Trustworthy Resource Scheduling in Clouds.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#AbbadiR13,https://doi.org/10.1109/TIFS.2013.2248726 +Shanshan Wang,Detecting Android Malware Leveraging Text Semantics of Network Flows.,2018,13,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs13.html#WangYCYZC18,https://doi.org/10.1109/TIFS.2017.2771228 +Tianqing Zhu,Correlated Differential Privacy: Hiding Information in Non-IID Data Set.,2015,10,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs10.html#ZhuXLZ15,https://doi.org/10.1109/TIFS.2014.2368363 +Qijun Zhao,Model Based Separation of Overlapping Latent Fingerprints.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#ZhaoJ12,https://doi.org/10.1109/TIFS.2012.2187281 +Waziha Kabir,Normalization and Weighting Techniques Based on Genuine-Impostor Score Fusion in Multi-Biometric Systems.,2018,13,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs13.html#KabirAS18,https://doi.org/10.1109/TIFS.2018.2807790 +Kevin Lin,Abandoned Object Detection via Temporal Consistency Modeling and Back-Tracing Verification for Visual Surveillance.,2015,10,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs10.html#LinCCLH15,https://doi.org/10.1109/TIFS.2015.2408263 +Baocang Wang,Cryptanalysis of a Symmetric Fully Homomorphic Encryption Scheme.,2018,13,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs13.html#WangZZ18,https://doi.org/10.1109/TIFS.2018.2790916 +Daoshun Wang,Optimal Contrast Grayscale Visual Cryptography Schemes With Reversing.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#WangSDY13,https://doi.org/10.1109/TIFS.2013.2281108 +Y.-W. Peter Hong,Vector Quantization and Clustered Key Mapping for Channel-Based Secret Key Generation.,2017,12,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs12.html#HongHL17,https://doi.org/10.1109/TIFS.2017.2656459 +I-Ting Lien,A Novel Privacy Preserving Location-Based Service Protocol With Secret Circular Shift for k-NN Search.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#LienLSW13,https://doi.org/10.1109/TIFS.2013.2252011 +Xin Liu 0011,Learning Multi-Boosted HMMs for Lip-Password Based Speaker Verification.,2014,9,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs9.html#LiuC14,https://doi.org/10.1109/TIFS.2013.2293025 +Honghai Yu,SNR Maximization Hashing.,2015,10,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs10.html#YuM15,https://doi.org/10.1109/TIFS.2015.2436871 +Ronald L. Rivest,Guest editorial: special issue on electronic voting.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#RivestCPRSV09,https://doi.org/10.1109/TIFS.2009.2034721 +Hongbin Luo,Preventing Distributed Denial-of-Service Flooding Attacks With Dynamic Path Identifiers.,2017,12,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs12.html#LuoCLV17,https://doi.org/10.1109/TIFS.2017.2688414 +Ling Fu,An Improved Discrete Fourier Transform-Based Algorithm for Electric Network Frequency Extraction.,2013,8,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs8.html#FuMCL13,https://doi.org/10.1109/TIFS.2013.2265088 +Xiang Wu,A Light CNN for Deep Face Representation With Noisy Labels.,2018,13,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs13.html#WuHST18,https://doi.org/10.1109/TIFS.2018.2833032 +Zhuo Wei,A Hybrid Scheme for Authenticating Scalable Video Codestreams.,2014,9,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs9.html#WeiWDD14,https://doi.org/10.1109/TIFS.2014.2301916 +Jeffrey Pawlick,Strategic Trust in Cloud-Enabled Cyber-Physical Systems With an Application to Glucose Control.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#PawlickZ17,https://doi.org/10.1109/TIFS.2017.2725224 +Brice Colombier,Key Reconciliation Protocols for Error Correction of Silicon PUF Responses.,2017,12,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs12.html#ColombierBFH17,https://doi.org/10.1109/TIFS.2017.2689726 +Yang Wang,Collusion-Resistance in Optimistic Fair Exchange.,2014,9,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs9.html#WangSAW14,https://doi.org/10.1109/TIFS.2014.2326294 +Wenchao Huang,Fine-Grained Refinement on TPM-Based Protocol Applications.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#HuangXWMWGL13,https://doi.org/10.1109/TIFS.2013.2258915 +Zhangjie Fu,Semantic-Aware Searching Over Encrypted Data for Cloud Computing.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#FuXSLX18,https://doi.org/10.1109/TIFS.2018.2819121 +Aythami Morales,Synthesis and Evaluation of High Resolution Hand-Prints.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#MoralesCFM14,https://doi.org/10.1109/TIFS.2014.2357757 +Peter K. K. Loh,Fuzzy Classification Metrics for Scanner Assessment and Vulnerability Reporting.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#LohS10,https://doi.org/10.1109/TIFS.2010.2075926 +Jun Wang,Bimodal Vein Data Mining via Cross-Selected-Domain Knowledge Transfer.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#WangWZ18,https://doi.org/10.1109/TIFS.2017.2766039 +Vojtech Holub,Random Projections of Residuals for Digital Image Steganalysis.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#HolubF13,https://doi.org/10.1109/TIFS.2013.2286682 +Antonis Mairgiotis,New Additive Watermark Detectors Based On A Hierarchical Spatially Adaptive Image Model.,2008,3,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs3.html#MairgiotisGY08,https://doi.org/10.1109/TIFS.2007.916290 +F. Liu,Embedded Extended Visual Cryptography Schemes.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#LiuW11,https://doi.org/10.1109/TIFS.2011.2116782 +Gabriel Maciá-Fernández,Mathematical model for low-rate DoS attacks against application servers.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#Macia-FernandezDT09,https://doi.org/10.1109/TIFS.2009.2024719 +Linjie Guo,Uniform Embedding for Efficient JPEG Steganography.,2014,9,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs9.html#GuoNS14,https://doi.org/10.1109/TIFS.2014.2312817 +Qi Xie,Provably Secure Dynamic ID-Based Anonymous Two-Factor Authenticated Key Exchange Protocol With Extended Security Model.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#XieWWTCF17,https://doi.org/10.1109/TIFS.2017.2659640 +Vishal Monga,A clustering based approach to perceptual image hashing.,2006,1,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs1.html#MongaBE06,https://doi.org/10.1109/TIFS.2005.863502 +Shu Zhang,DeMeshNet: Blind Face Inpainting for Deep MeshFace Verification.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#ZhangHST18,https://doi.org/10.1109/TIFS.2017.2763119 +Arfika Nurhudatiana,On Criminal Identification in Color Skin Images Using Skin Marks (RPPVSM) and Fusion With Inferred Vein Patterns.,2015,10,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs10.html#NurhudatianaK15,https://doi.org/10.1109/TIFS.2014.2387575 +Tiago Jose de Carvalho,Exposing Digital Image Forgeries by Illumination Color Classification.,2013,8,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs8.html#CarvalhoRAPR13,https://doi.org/10.1109/TIFS.2013.2265677 +Minxin Du,Privacy-Preserving Indexing and Query Processing for Secure Dynamic Cloud Storage.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#DuWHW18,https://doi.org/10.1109/TIFS.2018.2818651 +Feng Liu 0001,Step construction of visual cryptography schemes.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#LiuWL10,https://doi.org/10.1109/TIFS.2009.2037660 +Matthias Hiller,Cherry-Picking Reliable PUF Bits With Differential Sequence Coding.,2016,11,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs11.html#HillerYS16,https://doi.org/10.1109/TIFS.2016.2573766 +Hiranmoy Roy,Local-Gravity-Face (LG-face) for Illumination-Invariant and Heterogeneous Face Recognition.,2016,11,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs11.html#RoyB16,https://doi.org/10.1109/TIFS.2016.2530043 +Bin Lian,Periodic K-Times Anonymous Authentication With Efficient Revocation of Violator's Credential.,2015,10,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs10.html#LianCML15,https://doi.org/10.1109/TIFS.2014.2386658 +Baris Coskun,(Un)wisdom of Crowds: Accurately Spotting Malicious IP Clusters Using Not-So-Accurate IP Blacklists.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#Coskun17,https://doi.org/10.1109/TIFS.2017.2663333 +Chunfang Yang,Pixel Group Trace Model-Based Quantitative Steganalysis for Multiple Least-Significant Bits Steganography.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#YangLLZ13,https://doi.org/10.1109/TIFS.2012.2229987 +Kai-Hui Lee,An Extended Visual Cryptography Algorithm for General Access Structures.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#LeeC12,https://doi.org/10.1109/TIFS.2011.2167611 +Fengjun Li,Enforcing Secure and Privacy-Preserving Information Brokering in Distributed Information Sharing.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#LiLLLC13,https://doi.org/10.1109/TIFS.2013.2247398 +Fangjun Huang,An experimental study on the security performance of YASS.,2010,5,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs5.html#HuangHS10,https://doi.org/10.1109/TIFS.2010.2054082 +Tiziano Bianchi,Analysis of One-Time Random Projections for Privacy Preserving Compressed Sensing.,2016,11,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs11.html#BianchiBM16,https://doi.org/10.1109/TIFS.2015.2493982 +Yinian Mao,Tracing Malicious Relays in Cooperative Wireless Communications.,2007,2,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs2.html#MaoW07,https://doi.org/10.1109/TIFS.2007.897242 +Sanjeev Das,Semantics-Based Online Malware Detection: Towards Efficient Real-Time Protection Against Malware.,2016,11,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs11.html#DasLZC16,https://doi.org/10.1109/TIFS.2015.2491300 +Ning Zhang 0015,Adaptive Orientation Model Fitting for Latent Overlapped Fingerprints Separation.,2014,9,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs9.html#ZhangZYJT14,https://doi.org/10.1109/TIFS.2014.2340573 +Siva K. Gorantla,Characterizing the Efficacy of the NRL Network Pump in Mitigating Covert Timing Channels.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#GorantlaKKCMK12,https://doi.org/10.1109/TIFS.2011.2163398 +Shuangyu Luo,Uncoordinated Cooperative Jamming for Secret Communications.,2013,8,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs8.html#LuoLP13,https://doi.org/10.1109/TIFS.2013.2261060 +Yi Cheng Feng,Binary Discriminant Analysis for Generating Binary Face Template.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#FengY12,https://doi.org/10.1109/TIFS.2011.2170422 +Minho Jin,Quantum hashing for multimedia.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#JinY09,https://doi.org/10.1109/TIFS.2009.2033221 +Wenwen Tu,On Simultaneously Generating Multiple Keys in a Joint Source-Channel Model.,2017,12,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs12.html#TuGLP17,https://doi.org/10.1109/TIFS.2016.2612172 +Zhaoxiang Zhang,Transferring Training Instances for Convenient Cross-View Object Classification in Surveillance.,2013,8,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs8.html#ZhangZWLYT13,https://doi.org/10.1109/TIFS.2013.2265089 +Ravikant Saini,Jammer-Assisted Resource Allocation in Secure OFDMA With Untrusted Users.,2016,11,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs11.html#SainiJD16,https://doi.org/10.1109/TIFS.2016.2516912 +Tiziano Bianchi,Image Forgery Localization via Block-Grained Analysis of JPEG Artifacts.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#BianchiP12a,https://doi.org/10.1109/TIFS.2012.2187516 +Hugo Proença,Iris Recognition: What Is Beyond Bit Fragility?,2015,10,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs10.html#Proenca15,https://doi.org/10.1109/TIFS.2014.2371691 +Vivek K. Singh,Adversary aware surveillance systems.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#SinghK09,https://doi.org/10.1109/TIFS.2009.2026459 +Yujue Wang,Identity-Based Data Outsourcing With Comprehensive Auditing in Clouds.,2017,12,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs12.html#WangWQSDH17,https://doi.org/10.1109/TIFS.2016.2646913 +Xiaobei Liu,Reconstructing a Linear Scrambler With Improved Detection Capability and in the Presence of Noise.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#LiuKWC12,https://doi.org/10.1109/TIFS.2011.2169790 +Shengmin Xu,Secure Fine-Grained Access Control and Data Sharing for Dynamic Groups in the Cloud.,2018,13,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs13.html#XuYMD18,https://doi.org/10.1109/TIFS.2018.2810065 +Xiao-chun Yun,SMS Worm Propagation Over Contact Social Networks: Modeling and Validation.,2015,10,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs10.html#YunL015,https://doi.org/10.1109/TIFS.2015.2455413 +Joao Sa Sousa,Uncoordinated Frequency Hopping for Wireless Secrecy Against Non-Degraded Eavesdroppers.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#SousaV18,https://doi.org/10.1109/TIFS.2017.2737963 +Edoardo Ardizzone,Copy-Move Forgery Detection by Matching Triangles of Keypoints.,2015,10,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs10.html#ArdizzoneBM15,https://doi.org/10.1109/TIFS.2015.2445742 +Alex X. Liu,Firewall Fingerprinting and Denial of Firewalling Attacks.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#LiuKHGPW17,https://doi.org/10.1109/TIFS.2017.2668602 +Pietro Lovato,Faved! Biometrics: Tell Me Which Image You Like and I'll Tell You Who You Are.,2014,9,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs9.html#LovatoBSPSC14,https://doi.org/10.1109/TIFS.2014.2298370 +Jordi Soria-Comas,Individual Differential Privacy: A Utility-Preserving Formulation of Differential Privacy Guarantees.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#Soria-ComasDSM17,https://doi.org/10.1109/TIFS.2017.2663337 +Arunkumar Vijayakumar,Physical Design Obfuscation of Hardware: A Comprehensive Investigation of Device and Logic-Level Techniques.,2017,12,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs12.html#VijayakumarPHPK17,https://doi.org/10.1109/TIFS.2016.2601067 +Quang Do,A Data Exfiltration and Remote Exploitation Attack on Consumer 3D Printers.,2016,11,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs11.html#DoMC16,https://doi.org/10.1109/TIFS.2016.2578285 +Ajay Kumar 0001,Importance of Being Unique From Finger Dorsal Patterns: Exploring Minor Finger Knuckle Patterns in Verifying Human Identities.,2014,9,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs9.html#Kumar14,https://doi.org/10.1109/TIFS.2014.2328869 +Shuhua Deng,Packet Injection Attack and Its Defense in Software-Defined Networks.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#DengGLG18,https://doi.org/10.1109/TIFS.2017.2765506 +Wei Yang 0008,Multi-Channel Fusion Attacks.,2017,12,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs12.html#YangZC0ZW17,https://doi.org/10.1109/TIFS.2017.2672521 +Shyong Jian Shyu,General Constructions for Threshold Multiple-Secret Visual Cryptographic Schemes.,2013,8,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs8.html#ShyuJ13,https://doi.org/10.1109/TIFS.2013.2250432 +Xiaofeng Wang,A Visual Model-Based Perceptual Image Hash for Content Authentication.,2015,10,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs10.html#WangPZZLX15,https://doi.org/10.1109/TIFS.2015.2407698 +Jiantao Zhou,Scalable Compression of Stream Cipher Encrypted Images Through Context-Adaptive Sampling.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#ZhouAZTL14,https://doi.org/10.1109/TIFS.2014.2352455 +Ta-Yuan Liu,On the Role of Artificial Noise in Training and Data Transmission for Secret Communications.,2017,12,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs12.html#LiuLH17,https://doi.org/10.1109/TIFS.2016.2620281 +Qinghua Li,Mitigating Routing Misbehavior in Disruption Tolerant Networks.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#LiC12,https://doi.org/10.1109/TIFS.2011.2173195 +Ali H. Sayed,Free electronic access to SP publications.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#Sayed09,https://doi.org/10.1109/TIFS.2009.2036059 +Ming Wan,Double Behavior Characteristics for One-Class Classification Anomaly Detection in Networked Control Systems.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#WanSZ17,https://doi.org/10.1109/TIFS.2017.2730581 +Peng Xu 0002,A General Framework of Wiretap Channel With Helping Interference and State Information.,2014,9,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs9.html#XuDDL14,https://doi.org/10.1109/TIFS.2013.2295031 +Wenbo Zhou,A New Rule for Cost Reassignment in Adaptive Steganography.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#ZhouZY17,https://doi.org/10.1109/TIFS.2017.2718480 +Bin Dai 0003,Relay Broadcast Channel With Confidential Messages.,2016,11,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs11.html#DaiYM16,https://doi.org/10.1109/TIFS.2015.2503259 +H. Choi,Fingerprint Matching Incorporating Ridge Features With Minutiae.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#ChoiCK11,https://doi.org/10.1109/TIFS.2010.2103940 +Levent Ozparlak,Differentiating Between Images Using Wavelet-Based Transforms: A Comparative Study.,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#OzparlakA11,https://doi.org/10.1109/TIFS.2011.2162830 +Abhishek Das,An FPGA-Based Network Intrusion Detection Architecture.,2008,3,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs3.html#DasNZMC08,https://doi.org/10.1109/TIFS.2007.916288 +Hu Han,Matching Composite Sketches to Face Photos: A Component-Based Approach.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#HanKBJ13,https://doi.org/10.1109/TIFS.2012.2228856 +Yongdong Wu,Software Puzzle: A Countermeasure to Resource-Inflated Denial-of-Service Attacks.,2015,10,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs10.html#WuZBD15,https://doi.org/10.1109/TIFS.2014.2366293 +Xiaoyu Chu,Compressive Sensing Forensics.,2015,10,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs10.html#ChuSL15,https://doi.org/10.1109/TIFS.2015.2413389 +Mohamed Grissa,Preserving the Location Privacy of Secondary Users in Cooperative Spectrum Sensing.,2017,12,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs12.html#GrissaYH17,https://doi.org/10.1109/TIFS.2016.2622000 +Chunxuan Ye,Information-theoretically secret key generation for fading wireless channels.,2010,5,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs5.html#YeMRSTM10,https://doi.org/10.1109/TIFS.2010.2043187 +Minoru Kuribayashi,Interference Removal Operation for Spread Spectrum Fingerprinting Scheme.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#Kuribayashi12,https://doi.org/10.1109/TIFS.2011.2170421 +Maneli Noorkami,Digital Video Watermarking in P-Frames With Controlled Video Bit-Rate Increase.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#NoorkamiM08,https://doi.org/10.1109/TIFS.2008.923825 +M. Francisca Hinarejos,RiskLaine: A Probabilistic Approach for Assessing Risk in Certificate-Based Security.,2018,13,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs13.html#HinarejosACFL18,https://doi.org/10.1109/TIFS.2018.2807788 +Yong Yu,Identity-Based Remote Data Integrity Checking With Perfect Data Privacy Preserving for Cloud Storage.,2017,12,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs12.html#YuAAHSDM17,https://doi.org/10.1109/TIFS.2016.2615853 +Lei Zhang 0009,OTIBAAGKA: A New Security Tool for Cryptographic Mix-Zone Establishment in Vehicular Ad Hoc Networks.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#Zhang17,https://doi.org/10.1109/TIFS.2017.2730479 +Gang Zheng,Application of Projective Invariants in Hand Geometry Biometrics.,2007,2,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs2.html#ZhengWB07,https://doi.org/10.1109/TIFS.2007.908239 +Hao Liu 0019,Label-Sensitive Deep Metric Learning for Facial Age Estimation.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#LiuLFZ18,https://doi.org/10.1109/TIFS.2017.2746062 +Andrew D. Ker,The Steganographer is the Outlier: Realistic Large-Scale Steganalysis.,2014,9,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs9.html#KerP14,https://doi.org/10.1109/TIFS.2014.2336380 +Kamal Taha,SIIMCO: A Forensic Investigation Tool for Identifying the Influential Members of a Criminal Organization.,2016,11,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs11.html#TahaY16,https://doi.org/10.1109/TIFS.2015.2510826 +C.-M. Yu,Constrained Function-Based Message Authentication for Sensor Networks.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#YuTLK11a,https://doi.org/10.1109/TIFS.2011.2106120 +Gang Cao,Contrast Enhancement-Based Forensics in Digital Images.,2014,9,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs9.html#CaoZNL14,https://doi.org/10.1109/TIFS.2014.2300937 +Jianxu Chen,Iris Recognition Based on Human-Interpretable Features.,2016,11,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs11.html#ChenSCF16,https://doi.org/10.1109/TIFS.2016.2535901 +Jingran Lin,Physical-Layer Security for Proximal Legitimate User and Eavesdropper: A Frequency Diverse Array Beamforming Approach.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#LinLYSW18,https://doi.org/10.1109/TIFS.2017.2765500 +M. Kamran,A Formal Usability Constraints Model for Watermarking of Outsourced Datasets.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#KamranF13,https://doi.org/10.1109/TIFS.2013.2259234 +Tuncer C. Aysal,Sensor Data Cryptography in Wireless Sensor Networks.,2008,3,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs3.html#AysalB08,https://doi.org/10.1109/TIFS.2008.919119 +Luis Pérez-Freire,An accurate analysis of scalar quantization-based data hiding.,2006,1,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs1.html#Perez-FreirePV06,https://doi.org/10.1109/TIFS.2005.863488 +Ryota Nakai,Physical Layer Security in Buffer-State-Based Max-Ratio Relay Selection Exploiting Broadcasting With Cooperative Beamforming and Jamming.,2019,14,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs14.html#NakaiS19,https://doi.org/10.1109/TIFS.2018.2854711 +Himanshu S. Bhatt,On Recognizing Faces in Videos Using Clustering-Based Re-Ranking and Fusion.,2014,9,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs9.html#BhattSV14,https://doi.org/10.1109/TIFS.2014.2318433 +Suqing Lin,Revisiting Attribute-Based Encryption With Verifiable Outsourced Decryption.,2015,10,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs10.html#LinZMW15,https://doi.org/10.1109/TIFS.2015.2449264 +Kun Xie,Increasing Security Degree of Freedom in Multiuser and Multieve Systems.,2013,8,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs8.html#Xie0W13,https://doi.org/10.1109/TIFS.2012.2237396 +Nate Goergen,Extrinsic Channel-Like Fingerprinting Overlays Using Subspace Embedding.,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#GoergenLLC11,https://doi.org/10.1109/TIFS.2011.2172208 +Stefano Berretti,Sparse Matching of Salient Facial Curves for Recognition of 3-D Faces With Missing Parts.,2013,8,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs8.html#BerrettiBP13,https://doi.org/10.1109/TIFS.2012.2235833 +Zhe Cui,2-D Phase Demodulation for Deformable Fingerprint Registration.,2018,13,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs13.html#CuiFLLZ18,https://doi.org/10.1109/TIFS.2018.2841849 +Wenhao Wang,Wireless Physical-Layer Identification: Modeling and Validation.,2016,11,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs11.html#WangSPZR16,https://doi.org/10.1109/TIFS.2016.2552146 +Li Weng,A Privacy-Preserving Framework for Large-Scale Content-Based Information Retrieval.,2015,10,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs10.html#WengAMM15,https://doi.org/10.1109/TIFS.2014.2365998 +Ajita Rattani,Open Set Fingerprint Spoof Detection Across Novel Fabrication Materials.,2015,10,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs10.html#RattaniSR15,https://doi.org/10.1109/TIFS.2015.2464772 +Fausto Galvan,First Quantization Matrix Estimation From Double Compressed JPEG Images.,2014,9,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs9.html#GalvanPBB14,https://doi.org/10.1109/TIFS.2014.2330312 +Juan Ramón Troncoso-Pastoriza,Fully Private Noninteractive Face Verification.,2013,8,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs8.html#Troncoso-PastorizaGP13,https://doi.org/10.1109/TIFS.2013.2262273 +Xudong Lv,Compressed Binary Image Hashes Based on Semisupervised Spectral Embedding.,2013,8,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs8.html#LvW13,https://doi.org/10.1109/TIFS.2013.2281219 +Masoud Ghoreishi Madiseh,Applying Beamforming to Address Temporal Correlation in Wireless Channel Characterization-Based Secret Key Generation.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#MadisehNM12,https://doi.org/10.1109/TIFS.2012.2195176 +Juan Lopez,Enhancing Critical Infrastructure and Key Resources (CIKR) Level-0 Physical Process Security Using Field Device Distinct Native Attribute Features.,2018,13,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs13.html#LopezLBT18,https://doi.org/10.1109/TIFS.2017.2779447 +Konstantinos Koufos,Boundaries as an Enhancement Technique for Physical Layer Security.,2019,14,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs14.html#KoufosD19,https://doi.org/10.1109/TIFS.2018.2841870 +Xi Zhao,Mobile User Authentication Using Statistical Touch Dynamics Images.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#ZhaoFSK14,https://doi.org/10.1109/TIFS.2014.2350916 +Xiaocheng Hu,Minimum Rate Prediction and Optimized Histograms Modification for Reversible Data Hiding.,2015,10,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs10.html#HuZLY15,https://doi.org/10.1109/TIFS.2015.2392556 +W. Sabrina Lin,Behavior forensics with side information for multimedia fingerprinting social networks.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#LinZL09,https://doi.org/10.1109/TIFS.2009.2033224 +Mingxing Duan,An Ensemble CNN2ELM for Age Estimation.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#DuanLL18,https://doi.org/10.1109/TIFS.2017.2766583 +Vincent Christlein,An Evaluation of Popular Copy-Move Forgery Detection Approaches.,2012,7,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs7.html#ChristleinRJRA12,https://doi.org/10.1109/TIFS.2012.2218597 +Hong Cao,Manipulation Detection on Image Patches Using FusionBoost.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#CaoK12,https://doi.org/10.1109/TIFS.2012.2185696 +Haibin Ling,Face verification across age progression using discriminative methods.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#LingSRJ10,https://doi.org/10.1109/TIFS.2009.2038751 +Cecilia Pasquini,Statistical Detection of JPEG Traces in Digital Images in Uncompressed Formats.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#PasquiniBP17,https://doi.org/10.1109/TIFS.2017.2725201 +Rongmao Chen,Server-Aided Public Key Encryption With Keyword Search.,2016,11,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs11.html#ChenMYGHWW16,https://doi.org/10.1109/TIFS.2016.2599293 +Thanh Hai Thai,JPEG Quantization Step Estimation and Its Applications to Digital Image Forensics.,2017,12,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs12.html#ThaiCRD17,https://doi.org/10.1109/TIFS.2016.2604208 +Craig Belcher,A Selective Feature Information Approach for Iris Image-Quality Measure.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#BelcherD08,https://doi.org/10.1109/TIFS.2008.924606 +Holger Boche,On the Continuity of the Secrecy Capacity of Compound and Arbitrarily Varying Wiretap Channels.,2015,10,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs10.html#BocheSP15,https://doi.org/10.1109/TIFS.2015.2465937 +Massimo Tistarelli,On the Use of Discriminative Cohort Score Normalization for Unconstrained Face Recognition.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#TistarelliSP14,https://doi.org/10.1109/TIFS.2014.2362007 +Ikenna Odinaka,Cardiovascular Biometrics: Combining Mechanical and Electrical Signals.,2015,10,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs10.html#OdinakaOSR15,https://doi.org/10.1109/TIFS.2014.2361261 +Charles G. Boncelet Jr.,The NTMAC for authentication of noisy messages.,2006,1,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs1.html#Boncelet06,https://doi.org/10.1109/TIFS.2005.863506 +Jens-Matthias Bohli,Enhancing electronic voting machines on the example of Bingo voting.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#BohliHKMR09,https://doi.org/10.1109/TIFS.2009.2033755 +Le Trieu Phong,Privacy-Preserving Deep Learning via Additively Homomorphic Encryption.,2018,13,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs13.html#PhongAHWM18,https://doi.org/10.1109/TIFS.2017.2787987 +Lianying Zhao,Deceptive Deletion Triggers Under Coercion.,2016,11,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs11.html#ZhaoM16,https://doi.org/10.1109/TIFS.2016.2598523 +Steven Cadavid,3-D Ear Modeling and Recognition From Video Sequences Using Shape From Shading.,2008,3,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs3.html#CadavidA08,https://doi.org/10.1109/TIFS.2008.2007239 +Oktay Altun,A Set Theoretic Framework for Watermarking and Its Application to Semifragile Tamper Detection.,2006,1,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs1.html#AltunSCB06,https://doi.org/10.1109/TIFS.2006.885018 +Mario Preishuber,Depreciating Motivation and Empirical Security Analysis of Chaos-Based Image and Video Encryption.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#PreishuberHKU18,https://doi.org/10.1109/TIFS.2018.2812080 +Anh Truong,Optimal Attack Strategies Against Predictors - Learning From Expert Advice.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#TruongEEK18,https://doi.org/10.1109/TIFS.2017.2718488 +HongJie He,Performance Analysis of a Block-Neighborhood-Based Self-Recovery Fragile Watermarking Scheme.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#HeCTKZ12,https://doi.org/10.1109/TIFS.2011.2162950 +Nicolas Bruneau,Stochastic Collision Attack.,2017,12,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs12.html#BruneauCGHPR17,https://doi.org/10.1109/TIFS.2017.2697401 +Jian Cao,Controllable Secure Watermarking Technique for Tradeoff Between Robustness and Security.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#CaoH12,https://doi.org/10.1109/TIFS.2012.2184093 +Zi Li,Secret Key Establishment via RSS Trajectory Matching Between Wearable Devices.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#LiPMLZ18,https://doi.org/10.1109/TIFS.2017.2768020 +Stefano Berretti,Face Recognition by Super-Resolved 3D Models From Consumer Depth Cameras.,2014,9,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs9.html#BerrettiPB14,https://doi.org/10.1109/TIFS.2014.2337258 +Ly-Minh-Duy Le,Jamming Rejection Using FFH/MFSK ML Receiver Over Fading Channels With the Presence of Timing and Frequency Offsets.,2013,8,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs8.html#LeTL13,https://doi.org/10.1109/TIFS.2013.2264053 +Y.-L. Chen,Detecting Recompression of JPEG Images via Periodicity Analysis of Compression Artifacts for Tampering Detection.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#ChenH11,https://doi.org/10.1109/TIFS.2011.2106121 +Yansha Deng,Physical Layer Security in Three-Tier Wireless Sensor Networks: A Stochastic Geometry Approach.,2016,11,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs11.html#DengWENM16,https://doi.org/10.1109/TIFS.2016.2516917 +Chris G. Zeinstra,Grid-Based Likelihood Ratio Classifiers for the Comparison of Facial Marks.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#ZeinstraVS18,https://doi.org/10.1109/TIFS.2017.2746013 +Jianfeng Lu 0002,Designing Socially-Optimal Rating Protocols for Crowdsourcing Contest Dilemma.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#LuTLW17,https://doi.org/10.1109/TIFS.2017.2656468 +Roberto Caldelli,Image Origin Classification Based on Social Network Provenance.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#CaldelliBA17,https://doi.org/10.1109/TIFS.2017.2656842 +Hugo Proença,Quality Assessment of Degraded Iris Images Acquired in the Visible Wavelength.,2011,6,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs6.html#Proenca11,https://doi.org/10.1109/TIFS.2010.2086446 +Hongwen Zhang,Combining Data-Driven and Model-Driven Methods for Robust Facial Landmark Detection.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#ZhangLSL18,https://doi.org/10.1109/TIFS.2018.2800901 +Babak Mahdian,Blind Authentication Using Periodic Properties of Interpolation.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#MahdianS08,https://doi.org/10.1109/TIFS.2004.924603 +Daniel González-Jiménez,Shape-Driven Gabor Jets for Face Description and Authentication.,2007,2,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs2.html#Gonzalez-JimenezA07a,https://doi.org/10.1109/TIFS.2007.910238 +Qingyou Yang,AnFRA: Anonymous and Fast Roaming Authentication for Space Information Network.,2019,14,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs14.html#YangXXWLY19,https://doi.org/10.1109/TIFS.2018.2854740 +Zhen Xu,Proof-Carrying Cloud Computation: The Case of Convex Optimization.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#XuWRWZ14,https://doi.org/10.1109/TIFS.2014.2352457 +Huang Lin,CAM: Cloud-Assisted Privacy Preserving Mobile Health Monitoring.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#LinSZF13,https://doi.org/10.1109/TIFS.2013.2255593 +Qi Li 0002,Enhancing the Trust of Internet Routing With Lightweight Route Attestation.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#LiXWZLX12,https://doi.org/10.1109/TIFS.2011.2177822 +Benjamin Tams,Security Considerations in Minutiae-Based Fuzzy Vaults.,2015,10,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs10.html#TamsMM15,https://doi.org/10.1109/TIFS.2015.2392559 +Haiyun Xu,Fingerprint verification using spectral minutiae representations.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#XuVBKAG09,https://doi.org/10.1109/TIFS.2009.2021692 +Yihai Zhu,Joint Substation-Transmission Line Vulnerability Assessment Against the Smart Grid.,2015,10,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs10.html#ZhuYTSH15,https://doi.org/10.1109/TIFS.2015.2394240 +Richard M. Jiang,Face Recognition in the Scrambled Domain via Salience-Aware Ensembles of Many Kernels.,2016,11,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs11.html#JiangABCC16,https://doi.org/10.1109/TIFS.2016.2555792 +Vireshwar Kumar,PHY-Layer Authentication Using Duobinary Signaling for Spectrum Enforcement.,2016,11,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs11.html#KumarPB16,https://doi.org/10.1109/TIFS.2016.2516904 +Arun Ross,Visual Cryptography for Biometric Privacy.,2011,6,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs6.html#RossO11,https://doi.org/10.1109/TIFS.2010.2097252 +Yonggang Huang,Exploring Feature Coupling and Model Coupling for Image Source Identification.,2018,13,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs13.html#HuangCZPL18,https://doi.org/10.1109/TIFS.2018.2838079 +Tao Wu,Age Estimation and Face Verification Across Aging Using Landmarks.,2012,7,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs7.html#WuTC12,https://doi.org/10.1109/TIFS.2012.2213812 +Hafiz Malik,Nonparametric Steganalysis of QIM Steganography Using Approximate Entropy.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#MalikSC12,https://doi.org/10.1109/TIFS.2011.2169058 +Hao Dong 0003,Dropping Activation Outputs With Localized First-Layer Deep Network for Enhancing User Privacy and Data Security.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#DongWWG18,https://doi.org/10.1109/TIFS.2017.2763126 +Yi Jin,Coupled Discriminative Feature Learning for Heterogeneous Face Recognition.,2015,10,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs10.html#JinLR15,https://doi.org/10.1109/TIFS.2015.2390414 +Qian Wang,Darknet-Based Inference of Internet Worm Temporal Characteristics.,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#WangCC11,https://doi.org/10.1109/TIFS.2011.2161288 +Kazuo Sakiyama,Information-Theoretic Approach to Optimal Differential Fault Analysis.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#SakiyamaLIO12,https://doi.org/10.1109/TIFS.2011.2174984 +Sílvia Cristina Dias Pinto,Two-Dimensional Wavelet Analysis of Supraorbital Margins of the Human Skull for Characterizing Sexual Dimorphism.,2016,11,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs11.html#PintoUC16,https://doi.org/10.1109/TIFS.2016.2541611 +Enping Li,Capacity Limits of Pseudorandom Channels in Deception Problems.,2015,10,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs10.html#LiCY15,https://doi.org/10.1109/TIFS.2015.2423656 +Yuxin Liu,ActiveTrust: Secure and Trustable Routing in Wireless Sensor Networks.,2016,11,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs11.html#LiuDOL16,https://doi.org/10.1109/TIFS.2016.2570740 +Jiayuan Fan,Estimating EXIF Parameters Based on Noise Features for Image Manipulation Detection.,2013,8,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs8.html#FanCK13,https://doi.org/10.1109/TIFS.2013.2249064 +Pasquale Ferrara,Image Forgery Localization via Fine-Grained Analysis of CFA Artifacts.,2012,7,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs7.html#FerraraBRP12,https://doi.org/10.1109/TIFS.2012.2202227 +Y. Liang,Advanced Joint Bayesian Method for Face Verification.,2015,10,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs10.html#LiangDX15,https://doi.org/10.1109/TIFS.2014.2375552 +Weiming Zhang,Generalization and Analysis of the Paper Folding Method for Steganography.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#ZhangLWY10,https://doi.org/10.1109/TIFS.2010.2065804 +Omar Hasan,A Decentralized Privacy Preserving Reputation Protocol for the Malicious Adversarial Model.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#HasanBBS13,https://doi.org/10.1109/TIFS.2013.2258914 +Mitchell McLaren,A Comparison of Session Variability Compensation Approaches for Speaker Verification.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#McLarenVBS10,https://doi.org/10.1109/TIFS.2010.2068290 +Wei Hu 0008,On the Complexity of Generating Gate Level Information Flow Tracking Logic.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#HuOITSMK12,https://doi.org/10.1109/TIFS.2012.2189105 +Haichang Gao,Research on the Security of Microsoft's Two-Layer Captcha.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#GaoTLZL17,https://doi.org/10.1109/TIFS.2017.2682704 +Kai Zhou,ExpSOS: Secure and Verifiable Outsourcing of Exponentiation Operations for Mobile Cloud Computing.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#ZhouAR17,https://doi.org/10.1109/TIFS.2017.2710941 +Benjamin Mathon,Impacts of Watermarking Security on Tardos-Based Fingerprinting.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#MathonBCM13,https://doi.org/10.1109/TIFS.2013.2260158 +Negar Kiyavash,A Timing Channel Spyware for the CSMA/CA Protocol.,2013,8,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs8.html#KiyavashKCR13,https://doi.org/10.1109/TIFS.2013.2238930 +Ryan M. Gerdes,Physical-Layer Identification of Wired Ethernet Devices.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#GerdesMRD12,https://doi.org/10.1109/TIFS.2012.2197746 +Nitin Khanna,Scanner identification using feature-based processing and analysis.,2009,4,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs4.html#KhannaMD09,https://doi.org/10.1109/TIFS.2008.2009604 +Mohammad Sayad Haghighi,Stochastic Modeling of Hello Flooding in Slotted CSMA/CA Wireless Sensor Networks.,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#HaghighiMVQ11,https://doi.org/10.1109/TIFS.2011.2163306 +Kuo Cao,Secure Communication for Amplify-and-Forward Relay Networks With Finite Alphabet Input.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#CaoCWY18,https://doi.org/10.1109/TIFS.2018.2818065 +Rui Tan,Modeling and Mitigating Impact of False Data Injection Attacks on Automatic Generation Control.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#TanNFYKIG17,https://doi.org/10.1109/TIFS.2017.2676721 +Anselmo Ferreira,Data-Driven Feature Characterization Techniques for Laser Printer Attribution.,2017,12,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs12.html#FerreiraBBBHSTR17,https://doi.org/10.1109/TIFS.2017.2692722 +Ali Moharrer,Extractable Common Randomness From Gaussian Trees: Topological and Algebraic Perspectives.,2016,11,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs11.html#MoharrerWAD16,https://doi.org/10.1109/TIFS.2016.2543688 +Osman Hilmi Koçal,Chaotic-Type Features for Speech Steganalysis.,2008,3,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs3.html#KocalYA08,https://doi.org/10.1109/TIFS.2008.2004289 +Norman Poh,Generalizing DET Curves Across Application Scenarios.,2015,10,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs10.html#PohC15,https://doi.org/10.1109/TIFS.2015.2434320 +Junghwan Rhee,Data-Centric OS Kernel Malware Characterization.,2014,9,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs9.html#RheeRLJX14,https://doi.org/10.1109/TIFS.2013.2291964 +Vincent F. Taylor,Robust Smartphone App Identification via Encrypted Network Traffic Analysis.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#TaylorSCM18,https://doi.org/10.1109/TIFS.2017.2737970 +Qing Li,Detecting Spoofing and Anomalous Traffic in Wireless Networks via Forge-Resistant Relationships.,2007,2,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs2.html#LiT07a,https://doi.org/10.1109/TIFS.2007.910236 +Agusti Solanas,Distributed Architecture With Double-Phase Microaggregation for the Private Sharing of Biomedical Data in Mobile Health.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#SolanasMM13,https://doi.org/10.1109/TIFS.2013.2248728 +Ashwin Swaminathan,Robust and secure image hashing.,2006,1,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs1.html#SwaminathanMW06,https://doi.org/10.1109/TIFS.2006.873601 +Pedro C. Pinto,Secure Communication in Stochastic Wireless Networks - Part II: Maximum Rate and Collusion.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#PintoBW12a,https://doi.org/10.1109/TIFS.2011.2165947 +Shuicheng Yan,Regression From Uncertain Labels and Its Applications to Soft Biometrics.,2008,3,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs3.html#YanWTLH08,https://doi.org/10.1109/TIFS.2008.2006585 +Chuntao Wang,An Informed Watermarking Scheme Using Hidden Markov Model in the Wavelet Domain.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#WangNH12,https://doi.org/10.1109/TIFS.2012.2188797 +Ding Wang 0002,Zipf's Law in Passwords.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#WangCWHJ17,https://doi.org/10.1109/TIFS.2017.2721359 +Jun Zhou,Secure and privacy preserving protocol for cloud-based vehicular DTNs.,2015,10,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs10.html#ZhouDCV15,https://doi.org/10.1109/TIFS.2015.2407326 +Luca Caviglione,Seeing the Unseen: Revealing Mobile Malware Hidden Communications via Energy Consumption and Artificial Intelligence.,2016,11,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs11.html#CaviglioneGLMU16,https://doi.org/10.1109/TIFS.2015.2510825 +Adi Hajj-Ahmad,ENF-Based Region-of-Recording Identification for Media Signals.,2015,10,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs10.html#Hajj-AhmadG015,https://doi.org/10.1109/TIFS.2015.2398367 +Seungkwang Lee,A Masked White-Box Cryptographic Implementation for Protecting Against Differential Computation Analysis.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#LeeKK18,https://doi.org/10.1109/TIFS.2018.2825939 +Rémi Cogranne,An Asymptotically Uniformly Most Powerful Test for LSB Matching Detection.,2013,8,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs8.html#CogranneR13,https://doi.org/10.1109/TIFS.2013.2238232 +Tan Tai Do,Jamming-Resistant Receivers for the Massive MIMO Uplink.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#DoBLR18,https://doi.org/10.1109/TIFS.2017.2746007 +William Luh,Distributed Secret Sharing for Discrete Memoryless Networks.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#LuhK08,https://doi.org/10.1109/TIFS.2008.927422 +Alexandros Iosifidis,Scaling Up Class-Specific Kernel Discriminant Analysis for Large-Scale Face Verification.,2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#IosifidisG16,https://doi.org/10.1109/TIFS.2016.2582562 +Xiaoyong Li 0003,LDTS: A Lightweight and Dependable Trust System for Clustered Wireless Sensor Networks.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#LiZD13,https://doi.org/10.1109/TIFS.2013.2240299 +Pengfei Zhu,Image Set-Based Collaborative Representation for Face Recognition.,2014,9,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs9.html#ZhuZZSZ14,https://doi.org/10.1109/TIFS.2014.2324277 +Wei Wang 0025,Exploring DCT Coefficient Quantization Effects for Local Tampering Detection.,2014,9,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs9.html#WangDT14,https://doi.org/10.1109/TIFS.2014.2345479 +Mahalingam Ramkumar,The subset keys and identity tickets (SKIT) key distribution scheme.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#Ramkumar10,https://doi.org/10.1109/TIFS.2009.2039603 +Xiaoyu Chu,Detectability of the Order of Operations: An Information Theoretic Approach.,2016,11,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs11.html#ChuCL16,https://doi.org/10.1109/TIFS.2015.2510958 +Kuan-Hsien Liu,Age Estimation via Grouping and Decision Fusion.,2015,10,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs10.html#LiuYK15,https://doi.org/10.1109/TIFS.2015.2462732 +Guang Hua,Audio Authentication by Exploring the Absolute-Error-Map of ENF Signals.,2016,11,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs11.html#HuaZGT16,https://doi.org/10.1109/TIFS.2016.2516824 +Feng Hao,Analyzing and Patching SPEKE in ISO/IEC.,2018,13,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs13.html#HaoMSD18,https://doi.org/10.1109/TIFS.2018.2832984 +Jiangyang Zhang,Adaptive Directional Total-Variation Model for Latent Fingerprint Segmentation.,2013,8,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs8.html#ZhangLK13,https://doi.org/10.1109/TIFS.2013.2267491 +Rajiv Bagai,Measuring Anonymity of Pseudonymized Data After Probabilistic Background Attacks.,2017,12,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs12.html#BagaiMJ17,https://doi.org/10.1109/TIFS.2017.2656458 +Jishen Zeng,Large-Scale JPEG Image Steganalysis Using Hybrid Deep-Learning Framework.,2018,13,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs13.html#ZengTLH18,https://doi.org/10.1109/TIFS.2017.2779446 +Qing Zhang,A Novel Serial Multimodal Biometrics Framework Based on Semisupervised Learning Techniques.,2014,9,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs9.html#ZhangYZP14,https://doi.org/10.1109/TIFS.2014.2346703 +Mehmet Celenk,Predictive network anomaly detection and visualization.,2010,5,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs5.html#CelenkCWG10,https://doi.org/10.1109/TIFS.2010.2041808 +Gouenou Coatrieux,Reversible Watermarking Based on Invariant Image Classification and Dynamic Histogram Shifting.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#CoatrieuxPCCR13,https://doi.org/10.1109/TIFS.2012.2224108 +Fu-Hau Hsu,Antivirus Software Shield Against Antivirus Terminators.,2012,7,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs7.html#HsuWTHC12,https://doi.org/10.1109/TIFS.2012.2206028 +Siavash Ahmadi,Low-Data Complexity Biclique Cryptanalysis of Block Ciphers With Application to Piccolo and HIGHT.,2014,9,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs9.html#AhmadiAMA14,https://doi.org/10.1109/TIFS.2014.2344445 +Larry A. Dunning,Privacy Preserving Data Sharing With Anonymous ID Assignment.,2013,8,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs8.html#DunningK13,https://doi.org/10.1109/TIFS.2012.2235831 +Nan (Jonas) Yang,Physical Layer Security of TAS/MRC With Antenna Correlation.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#YangSCY13,https://doi.org/10.1109/TIFS.2012.2223681 +Nandita M. Nayak,Exploiting Spatio-Temporal Scene Structure for Wide-Area Activity Analysis in Unconstrained Environments.,2013,8,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs8.html#NayakZR13,https://doi.org/10.1109/TIFS.2013.2277669 +Meng-Hsi Chen,On Cooperative and Malicious Behaviors in Multirelay Fading Channels.,2013,8,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs8.html#ChenLHZ13,https://doi.org/10.1109/TIFS.2013.2262941 +Weiguo Sheng,Template-Free Biometric-Key Generation by Means of Fuzzy Genetic Clustering.,2008,3,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs3.html#ShengHFD08,https://doi.org/10.1109/TIFS.2008.922056 +Sotirios Karachontzitis,Security-Aware Max-Min Resource Allocation in Multiuser OFDMA Downlink.,2015,10,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs10.html#KarachontzitisTKB15,https://doi.org/10.1109/TIFS.2014.2384392 +Pin-Hsun Lin,On the Fast Fading Gaussian Wiretap Channel With Statistical Channel State Information at the Transmitter.,2016,11,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs11.html#LinJ16,https://doi.org/10.1109/TIFS.2015.2476464 +Rafael F. Wyrembelski,Strong Secrecy in Bidirectional Broadcast Channels With Confidential Messages.,2013,8,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs8.html#WyrembelskiWB13,https://doi.org/10.1109/TIFS.2012.2233473 +Yuhong Nan,Identifying User-Input Privacy in Mobile Applications at a Large Scale.,2017,12,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs12.html#NanYYZZGWS17,https://doi.org/10.1109/TIFS.2016.2631949 +Jiwen Lu,Gait-Based Human Age Estimation.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#LuT10a,https://doi.org/10.1109/TIFS.2010.2069560 +Jinyu Zuo,Adaptive Quality-Based Performance Prediction and Boosting for Iris Authentication: Methodology and Its Illustration.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#ZuoS13,https://doi.org/10.1109/TIFS.2013.2259157 +Negar Kiyavash,Performance of orthogonal fingerprinting codes under worst-case noise.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#KiyavashM09,https://doi.org/10.1109/TIFS.2009.2026462 +Emile J. C. Kelkboom,Maximum Key Size and Classification Performance of Fuzzy Commitment for Gaussian Modeled Biometric Sources.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#KelkboomBBV12,https://doi.org/10.1109/TIFS.2012.2191961 +Ashref Lawgaly,Sensor Pattern Noise Estimation Based on Improved Locally Adaptive DCT Filtering and Weighted Averaging for Source Camera Identification and Verification.,2017,12,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs12.html#LawgalyK17,https://doi.org/10.1109/TIFS.2016.2620280 +Ajaya Neupane,Neural Markers of Cybersecurity: An fMRI Study of Phishing and Malware Warnings.,2016,11,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs11.html#NeupaneSMK16,https://doi.org/10.1109/TIFS.2016.2566265 +Jiwen Lu,Reconstruction-Based Metric Learning for Unconstrained Face Verification.,2015,10,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs10.html#LuWDJ15,https://doi.org/10.1109/TIFS.2014.2363792 +Shan Gu,Efficient Rectification of Distorted Fingerprints.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#GuFLZ18,https://doi.org/10.1109/TIFS.2017.2745685 +Karen Hollingsworth,Iris recognition using signal-level fusion of frames from video.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#HollingsworthPBF09,https://doi.org/10.1109/TIFS.2009.2033759 +Masahiro Kaminaga,Double Counting in 2t-ary RSA Precomputation Reveals the Secret Exponent.,2015,10,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs10.html#KaminagaYS15,https://doi.org/10.1109/TIFS.2015.2411213 +Manhua Liu,Latent Fingerprint Enhancement via Multi-Scale Patch Based Sparse Representation.,2015,10,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs10.html#LiuCW15,https://doi.org/10.1109/TIFS.2014.2360582 +Bin Dai 0003,Multiple-Access Relay Wiretap Channel.,2015,10,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs10.html#DaiM15,https://doi.org/10.1109/TIFS.2015.2431992 +C.-C. Jay Kuo,Editorial.,2014,9,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs9.html#Kuo14,https://doi.org/10.1109/TIFS.2014.2300292 +SaiDhiraj Amuru,Optimal Jamming Against Digital Modulation.,2015,10,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs10.html#AmuruB15,https://doi.org/10.1109/TIFS.2015.2451081 +Maxim Chernyshev,Revisiting Urban War Nibbling: Mobile Passive Discovery of Classic Bluetooth Devices Using Ubertooth One.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#ChernyshevVJ17,https://doi.org/10.1109/TIFS.2017.2678463 +Hyoungsuk Jeon,Channel Aware Encryption and Decision Fusion for Wireless Sensor Networks.,2013,8,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs8.html#Jeon0MH13,https://doi.org/10.1109/TIFS.2013.2243145 +Kevin J. Henry,The effectiveness of receipt-based attacks on ThreeBallot.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#HenrySS09,https://doi.org/10.1109/TIFS.2009.2031914 +Bin Yan,Security of autoregressive speech watermarking model under guessing attack.,2006,1,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs1.html#YanLS06,https://doi.org/10.1109/TIFS.2006.879285 +Stefan Katzenbeisser 0001,A Buyer-Seller Watermarking Protocol Based on Secure Embedding.,2008,3,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs3.html#KatzenbeisserLCVM08,https://doi.org/10.1109/TIFS.2008.2002939 +Abhishek Nagar,Evidential Value of Automated Latent Fingerprint Comparison: An Empirical Approach.,2012,7,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs7.html#NagarCJ12,https://doi.org/10.1109/TIFS.2012.2210216 +Michel Abdalla,Generalized Key Delegation for Wildcarded Identity-Based and Inner-Product Encryption.,2012,7,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs7.html#AbdallaCP12,https://doi.org/10.1109/TIFS.2012.2213594 +Debiao He,An Efficient Identity-Based Conditional Privacy-Preserving Authentication Scheme for Vehicular Ad Hoc Networks.,2015,10,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs10.html#HeZXH15,https://doi.org/10.1109/TIFS.2015.2473820 +Pauline Puteaux,An Efficient MSB Prediction-Based Method for High-Capacity Reversible Data Hiding in Encrypted Images.,2018,13,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs13.html#PuteauxP18,https://doi.org/10.1109/TIFS.2018.2799381 +Zhenxin Zhan,Predicting Cyber Attack Rates With Extreme Values.,2015,10,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs10.html#ZhanXX15,https://doi.org/10.1109/TIFS.2015.2422261 +Jiwen Lu,Joint Feature Learning for Face Recognition.,2015,10,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs10.html#LuLWM15,https://doi.org/10.1109/TIFS.2015.2408431 +Hany Farid,Exposing digital forgeries from JPEG ghosts.,2009,4,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs4.html#Farid09,https://doi.org/10.1109/TIFS.2008.2012215 +Kaiping Xue,RAAC: Robust and Auditable Access Control With Multiple Attribute Authorities for Public Cloud Storage.,2017,12,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs12.html#XueXHLYWH17,https://doi.org/10.1109/TIFS.2016.2647222 +Tarang Chugh,Fingerprint Spoof Buster: Use of Minutiae-Centered Patches.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#ChughCJ18,https://doi.org/10.1109/TIFS.2018.2812193 +Thomas Plantard,Fully Homomorphic Encryption Using Hidden Ideal Lattice.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#PlantardSZ13,https://doi.org/10.1109/TIFS.2013.2287732 +Meng Yang,Monogenic Binary Coding: An Efficient Local Feature Extraction Approach to Face Recognition.,2012,7,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs7.html#YangZSZ12,https://doi.org/10.1109/TIFS.2012.2217332 +Wonsuk Choi,VoltageIDS: Low-Level Communication Characteristics for Automotive Intrusion Detection System.,2018,13,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs13.html#ChoiJJP018,https://doi.org/10.1109/TIFS.2018.2812149 +Tarang Chugh,Latent Fingerprint Value Prediction: Crowd-Based Learning.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#ChughCZTJ18,https://doi.org/10.1109/TIFS.2017.2721099 +Neetesh Saxena,Authentication Scheme for Flexible Charging and Discharging of Mobile Vehicles in the V2G Networks.,2016,11,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs11.html#SaxenaC16,https://doi.org/10.1109/TIFS.2016.2532840 +Yuan Zhang,Rethinking Permission Enforcement Mechanism on Mobile Systems.,2016,11,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs11.html#ZhangYG016,https://doi.org/10.1109/TIFS.2016.2581304 +Xiaokui Shu,Privacy-Preserving Detection of Sensitive Data Exposure.,2015,10,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs10.html#ShuYB15,https://doi.org/10.1109/TIFS.2015.2398363 +Shang Li,Cooperative Change Detection for Voltage Quality Monitoring in Smart Grids.,2016,11,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs11.html#LiW16,https://doi.org/10.1109/TIFS.2015.2477796 +Mehran Kafai,Reference Face Graph for Face Recognition.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#KafaiAB14,https://doi.org/10.1109/TIFS.2014.2359548 +Norman Poh,An Evaluation of Video-to-Video Face Verification.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#PohCKMMAAVPSPSFC10,https://doi.org/10.1109/TIFS.2010.2077627 +Xunyu Pan,Region Duplication Detection Using Image Feature Matching.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#PanL10,https://doi.org/10.1109/TIFS.2010.2078506 +Francesco Renna,Physical-Layer Secrecy for OFDM Transmissions Over Fading Channels.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#RennaLP12,https://doi.org/10.1109/TIFS.2012.2195491 +Xudong Lv,Perceptual Image Hashing Based on Shape Contexts and Local Feature Points.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#LvW12,https://doi.org/10.1109/TIFS.2012.2190594 +Amir Akhavan,Detection of Concealed Information Using Multichannel Discriminative Dictionary and Spatial Filter Learning.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#AkhavanM18,https://doi.org/10.1109/TIFS.2018.2825940 +Chi-Man Pun,Image Alignment-Based Multi-Region Matching for Object-Level Tampering Detection.,2017,12,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs12.html#PunYY17,https://doi.org/10.1109/TIFS.2016.2615272 +Zhiyong Shan,Growing Grapes in Your Computer to Defend Against Malware.,2014,9,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs9.html#Shan014,https://doi.org/10.1109/TIFS.2013.2291066 +Lei Tang,Information Divergence-Based Matching Strategy for Online Signature Verification.,2018,13,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs13.html#TangKF18,https://doi.org/10.1109/TIFS.2017.2769023 +Wen Zhou,Human Action Recognition With Multiple-Instance Markov Model.,2014,9,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs9.html#ZhouZ14,https://doi.org/10.1109/TIFS.2014.2344448 +Long Cheng,Opportunistic Piggyback Marking for IP Traceback.,2016,11,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs11.html#ChengDLT16,https://doi.org/10.1109/TIFS.2015.2491299 +Tomás Pevný,Multiclass Detector of Current Steganographic Methods for JPEG Format.,2008,3,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs3.html#PevnyF08a,https://doi.org/10.1109/TIFS.2008.2002936 +Hua Shen,Efficient Privacy-Preserving Cube-Data Aggregation Scheme for Smart Grids.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#ShenZS17,https://doi.org/10.1109/TIFS.2017.2656475 +D. Wang,Towards Shift Tolerant Visual Secret Sharing Schemes.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#WangDL11,https://doi.org/10.1109/TIFS.2011.2117419 +Sadhana Jha,Specification and Verification of Separation of Duty Constraints in Attribute-Based Access Control.,2018,13,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs13.html#JhaSAV18,https://doi.org/10.1109/TIFS.2017.2771492 +Jiliang Zhang 0002,"Rebuttal to ""Comments on 'A PUF-FSM Binding Scheme for FPGA IP Protection and Pay-Per-Device Licensing""'.",2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#ZhangQ16,https://doi.org/10.1109/TIFS.2016.2553443 +Mayank Vatsa,On the dynamic selection of biometric fusion algorithms.,2010,5,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs5.html#VatsaSNR10,https://doi.org/10.1109/TIFS.2010.2056683 +Brent MacRae,An Exploration of Geographic Authentication Schemes.,2016,11,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs11.html#MacRaeST16,https://doi.org/10.1109/TIFS.2016.2570681 +Wuqiong Pan,An Efficient Elliptic Curve Cryptography Signature Server With GPU Acceleration.,2017,12,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs12.html#PanZZZJ17,https://doi.org/10.1109/TIFS.2016.2603974 +Zhangjie Fu,Privacy-Preserving Smart Semantic Search Based on Conceptual Graphs Over Encrypted Outsourced Data.,2017,12,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs12.html#FuHRWW17,https://doi.org/10.1109/TIFS.2017.2692728 +Lin Ding 0001,Cryptanalysis of Lightweight WG-8 Stream Cipher.,2014,9,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs9.html#DingJGW14,https://doi.org/10.1109/TIFS.2014.2307202 +Ivana Chingovska,Biometrics Evaluation Under Spoofing Attacks.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#ChingovskaAM14,https://doi.org/10.1109/TIFS.2014.2349158 +Gokhan Gul,SVD-based universal spatial domain image steganalysis.,2010,5,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs5.html#GulK10,https://doi.org/10.1109/TIFS.2010.2041826 +Alberto López Toledo,Robust Detection of MAC Layer Denial-of-Service Attacks in CSMA/CA Wireless Networks.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#ToledoW08,https://doi.org/10.1109/TIFS.2008.926098 +Donald R. Reising,Authorized and Rogue Device Discrimination Using Dimensionally Reduced RF-DNA Fingerprints.,2015,10,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs10.html#ReisingTJ15,https://doi.org/10.1109/TIFS.2015.2400426 +Filipe de O. Costa,Image Phylogeny Forests Reconstruction.,2014,9,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs9.html#CostaODGR14,https://doi.org/10.1109/TIFS.2014.2340017 +Ran Tao,Image Encryption With Multiorders of Fractional Fourier Transforms.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#TaoMW10,https://doi.org/10.1109/TIFS.2010.2068289 +Bin B. Zhu,Captcha as Graphical Passwords - A New Security Primitive Based on Hard AI Problems.,2014,9,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs9.html#ZhuYBYX14,https://doi.org/10.1109/TIFS.2014.2312547 +Hassan Zivari-Fard,Imperfect and Perfect Secrecy in Compound Multiple Access Channel With Confidential Message.,2016,11,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs11.html#Zivari-FardAAA16,https://doi.org/10.1109/TIFS.2016.2523813 +Fernando Pérez-González,A Least Squares Approach to the Static Traffic Analysis of High-Latency Anonymous Communication Systems.,2014,9,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs9.html#Perez-GonzalezTO14,https://doi.org/10.1109/TIFS.2014.2330696 +Rui Zhang 0002,Further Improving Efficiency of Higher Order Masking Schemes by Decreasing Randomness Complexity.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#ZhangQZ17,https://doi.org/10.1109/TIFS.2017.2713323 +Pu Zhao,Robust Beamforming Design for Sum Secrecy Rate Optimization in MU-MISO Networks.,2015,10,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs10.html#ZhaoZYL015,https://doi.org/10.1109/TIFS.2015.2423263 +Shenghua Gao,Single Sample Face Recognition via Learning Deep Supervised Autoencoders.,2015,10,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs10.html#GaoZJLZ15,https://doi.org/10.1109/TIFS.2015.2446438 +Jeeson Kim,A Physical Unclonable Function With Redox-Based Nanoionic Resistive Memory.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#KimANYJBSRK18,https://doi.org/10.1109/TIFS.2017.2756562 +Lifeng Lai,A Unified Framework for Key Agreement Over Wireless Fading Channels.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#LaiLP12,https://doi.org/10.1109/TIFS.2011.2180527 +Yunlong Mao,Towards Privacy-Preserving Aggregation for Collaborative Spectrum Sensing.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#MaoCZWZ17,https://doi.org/10.1109/TIFS.2017.2668219 +Ciza Thomas,Improvement in intrusion detection with advances in sensor fusion.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#ThomasB09,https://doi.org/10.1109/TIFS.2009.2026954 +Zhe Yao,Anomaly Detection Using Proximity Graph and PageRank Algorithm.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#YaoMR12,https://doi.org/10.1109/TIFS.2012.2191963 +John Daugman,Effect of Severe Image Compression on Iris Recognition Performance.,2008,3,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs3.html#DaugmanD08,https://doi.org/10.1109/TIFS.2007.916009 +Bin Li 0011,Investigation on Cost Assignment in Spatial Image Steganography.,2014,9,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs9.html#LiTWH14,https://doi.org/10.1109/TIFS.2014.2326954 +François Cayre,Kerckhoffs-Based Embedding Security Classes for WOA Data Hiding.,2008,3,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs3.html#CayreB08,https://doi.org/10.1109/TIFS.2007.916006 +Ke Cui,A Real-Time Design Based on FPGA for Expeditious Error Reconciliation in QKD System.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#CuiWZLJC13,https://doi.org/10.1109/TIFS.2012.2228855 +Vaishakh Ravindrakumar,Private Coded Caching.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#RavindrakumarPK18,https://doi.org/10.1109/TIFS.2017.2765503 +Lang Lin,Design and Validation of Arbiter-Based PUFs for Sub-45-nm Low-Power Security Applications.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#LinSKSB12,https://doi.org/10.1109/TIFS.2012.2195174 +David Sánchez 0001,Automatic General-Purpose Sanitization of Textual Documents.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#SanchezBV13,https://doi.org/10.1109/TIFS.2013.2239641 +Xiangyang Wang,A New Digital Image Watermarking Algorithm Resilient to Desynchronization Attacks.,2007,2,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs2.html#WangWN07,https://doi.org/10.1109/TIFS.2007.908233 +Kenneth Sullivan,Steganalysis for Markov cover data with applications to images.,2006,1,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs1.html#SullivanMCM06,https://doi.org/10.1109/TIFS.2006.873595 +Jing Chen 0003,Uncovering the Face of Android Ransomware: Characterization and Real-Time Detection.,2018,13,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs13.html#ChenWZCDA18,https://doi.org/10.1109/TIFS.2017.2787905 +Rafael F. Schaefer,Robust Broadcasting of Common and Confidential Messages Over Compound Channels: Strong Secrecy and Decoding Performance.,2014,9,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs9.html#SchaeferB14,https://doi.org/10.1109/TIFS.2014.2348193 +Babak Mahdian,Blind Verification of Digital Image Originality: A Statistical Approach.,2013,8,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs8.html#MahdianNS13,https://doi.org/10.1109/TIFS.2013.2276000 +Pramuditha Perera,Efficient and Low Latency Detection of Intruders in Mobile Active Authentication.,2018,13,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs13.html#PereraP18,https://doi.org/10.1109/TIFS.2017.2787995 +Xiaolong Li,Efficient Reversible Data Hiding Based on Multiple Histograms Modification.,2015,10,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs10.html#LiZGY15,https://doi.org/10.1109/TIFS.2015.2444354 +Athanasios Tsitsoulis,Modeling of Multi-Image/Video Flow on a Multiprocessor Surveillance System.,2013,1,IJMSTR,1,db/journals/ijmstr/ijmstr1.html#TsitsoulisB13,https://doi.org/10.4018/ijmstr.2013010101 +Ryan Patrick,A Survey and Surveillance Issues in Smart Homes Environment for Assistive Living.,2015,3,IJMSTR,1,db/journals/ijmstr/ijmstr3.html#PatrickB15,https://doi.org/10.4018/IJMSTR.2015010101 +Pola Lydia Lagari,Application of Artificial Neural Networks to Reliable Nuclear Data for Nonproliferation Modeling and Simulation.,2016,4,IJMSTR,4,db/journals/ijmstr/ijmstr4.html#LagariSAT16,https://doi.org/10.4018/IJMSTR.2016100104 +Hussin K. Ragb,Local Phase Features in Chromatic Domain for Human Detection.,2016,4,IJMSTR,3,db/journals/ijmstr/ijmstr4.html#RagbA16,https://doi.org/10.4018/IJMSTR.2016070104 +George Kalliris,Emotional Aspects and Quality of Experience for Multifactor Evaluation of Audiovisual Content.,2014,2,IJMSTR,4,db/journals/ijmstr/ijmstr2.html#KallirisMDV14,https://doi.org/10.4018/IJMSTR.2014100103 +Irina-Emilia Nicolae,An Improved Stimuli System for Brain-Computer Interface Applications.,2013,1,IJMSTR,4,db/journals/ijmstr/ijmstr1.html#Nicolae13,https://doi.org/10.4018/ijmstr.2013100101 +Raghudeep Kannavara,Design and Performance Evaluation of the SCAN Secure Processor.,2015,3,IJMSTR,2,db/journals/ijmstr/ijmstr3.html#KannavaraB15,https://doi.org/10.4018/IJMSTR.2015040105 +Nikolaos G. Bourbakis,Detecting Facial Expressions for Monitoring Patterns of Emotional Behavior.,2013,1,IJMSTR,2,db/journals/ijmstr/ijmstr1.html#Bourbakis13,https://doi.org/10.4018/ijmstr.2013040101 +Amol Dattatraya Mali,On Automated Generation of Keyboard Layout to Reduce Finger-Travel Distance.,2017,5,IJMSTR,2,db/journals/ijmstr/ijmstr5.html#MaliY17,https://doi.org/10.4018/IJMSTR.2017040103 +Gowtham Muniraju,A Cyber-Physical Photovoltaic Array Monitoring and Control System.,2017,5,IJMSTR,3,db/journals/ijmstr/ijmstr5.html#MunirajuRKSTTBS17,https://doi.org/10.4018/IJMSTR.2017070103 +Marius Rosu,WBAN Based Long Term ECG Monitoring.,2013,1,IJMSTR,3,db/journals/ijmstr/ijmstr1.html#RosuP13,https://doi.org/10.4018/ijmstr.2013070102 +Sreehari Gopalakrishnan,Curve Fitting Methods: A Survey.,2016,4,IJMSTR,4,db/journals/ijmstr/ijmstr4.html#GopalakrishnanB16,https://doi.org/10.4018/IJMSTR.2016100103 +Almabrok E. Essa,Efficient Key Frame Selection Approach for Object Detection in Wide Area Surveillance Applications.,2015,3,IJMSTR,2,db/journals/ijmstr/ijmstr3.html#EssaSA15,https://doi.org/10.4018/IJMSTR.2015040102 +Mihai Tarata,Comparison of SEMG Derived Parameters and Blood Oxygen Saturation in Monitoring Neuromuscular Fatigue in Humans.,2013,1,IJMSTR,4,db/journals/ijmstr/ijmstr1.html#TarataWGAS13,https://doi.org/10.4018/ijmstr.2013100102 +Baudouin Dafflon,Using Physics Inspired Wave Agents in a Virtual Environment: Longitudinal Distance Control in Robots Platoon.,2017,5,IJMSTR,2,db/journals/ijmstr/ijmstr5.html#DafflonGG17,https://doi.org/10.4018/IJMSTR.2017040102 +Md. Zahangir Alom,Intrusion Detection Using Deep Belief Network and Extreme Learning Machine.,2015,3,IJMSTR,2,db/journals/ijmstr/ijmstr3.html#AlomBT15,https://doi.org/10.4018/IJMSTR.2015040103 +Lucas G. Nachtigall,Use of Images of Leaves and Fruits of Apple Trees for Automatic Identification of Symptoms of Diseases and Nutritional Disorders.,2017,5,IJMSTR,2,db/journals/ijmstr/ijmstr5.html#NachtigallAN17,https://doi.org/10.4018/IJMSTR.2017040101 +Almabrok E. Essa,Histogram of Oriented Directional Features for Robust Face Recognition.,2016,4,IJMSTR,3,db/journals/ijmstr/ijmstr4.html#EssaA16,https://doi.org/10.4018/IJMSTR.2016070103 +Robert Keefer,From Image to XML: Monitoring a Page Layout Analysis Approach for the Visually Impaired.,2014,2,IJMSTR,1,db/journals/ijmstr/ijmstr2.html#KeeferB14,https://doi.org/10.4018/ijmstr.2014010102 +Amol Dattatraya Mali,Recent Advances in Minimally-Obtrusive Monitoring of People's Health.,2017,5,IJMSTR,2,db/journals/ijmstr/ijmstr5.html#Mali17,https://doi.org/10.4018/IJMSTR.2017040104 +Amavey Tamunobarafiri,Data Security and Privacy Assurance Considerations in Cloud Computing for Health Insurance Providers.,2017,5,IJMSTR,4,db/journals/ijmstr/ijmstr5.html#TamunobarafiriA17,https://doi.org/10.4018/IJMSTR.2017100101 +Pola Lydia Lagari,Evaluation of Human Machine Interface (HMI) on a Digital and Analog Control Room in Nuclear Power Plants Using a Fuzzy Logic Approach.,2016,4,IJMSTR,2,db/journals/ijmstr/ijmstr4.html#LagariNA16,https://doi.org/10.4018/IJMSTR.2016040104 +Pierre Vieyres,An Anticipative Control Approach and Interactive GUI to Enhance the Rendering of the Distal Robot Interaction with its Environment during Robotized Tele-Echography: Interactive Platform for Robotized Tele-Echography.,2013,1,IJMSTR,3,db/journals/ijmstr/ijmstr1.html#VieyresSJNCMFAVK13,https://doi.org/10.4018/ijmstr.2013070101 +Juan Manuel Fernandez Montenegro,Virtual Environments and Cognitive Tests for Dementia Diagnosis.,2016,4,IJMSTR,1,db/journals/ijmstr/ijmstr4.html#MontenegroA16,https://doi.org/10.4018/IJMSTR.2016010102 +D. Michael Franklin,SiMAMT: A Framework for Strategy-Based Multi-Agent Multi-Team Systems.,2017,5,IJMSTR,1,db/journals/ijmstr/ijmstr5.html#FranklinH17,https://doi.org/10.4018/IJMSTR.2017010101 +Zenonas Theodosiou,Attention-Based Health Monitoring.,2013,1,IJMSTR,3,db/journals/ijmstr/ijmstr1.html#TheodosiouT13,https://doi.org/10.4018/ijmstr.2013070105 +Aphrodite Ktena,Estimation of the Energy Potential of the Euripus' Gulf Tidal Stream Using Channel Sea-surface Slope.,2015,3,IJMSTR,4,db/journals/ijmstr/ijmstr3.html#KtenaMBKSK15,https://doi.org/10.4018/IJMSTR.2015100102 +Jie Wei,Vehicle Engine Classification Using Spectral Tone-Pitch Vibration Indexing and Neural Network.,2014,2,IJMSTR,3,db/journals/ijmstr/ijmstr2.html#WeiVML14,https://doi.org/10.4018/IJMSTR.2014070102 +Erik Philip Blasch,QuEST for Information Fusion in Multimedia Reports.,2014,2,IJMSTR,3,db/journals/ijmstr/ijmstr2.html#BlaschRHTJH14,https://doi.org/10.4018/IJMSTR.2014070101 +Rafik Fainti,Backpropagation Neural Network for Interval Prediction of Three-Phase Ampacity Level in Power Systems.,2016,4,IJMSTR,3,db/journals/ijmstr/ijmstr4.html#FaintiAT16,https://doi.org/10.4018/IJMSTR.2016070101 +Miltiadis Alamaniotis,Fuzzy Integration of Support Vector Regression Models for Anticipatory Control of Complex Energy Systems.,2014,2,IJMSTR,2,db/journals/ijmstr/ijmstr2.html#AlamaniotisA14,https://doi.org/10.4018/ijmstr.2014040102 +Vasiliki Chrysikou,A Review of Incentive Based Demand Response Methods in Smart Electricity Grids.,2015,3,IJMSTR,4,db/journals/ijmstr/ijmstr3.html#ChrysikouAT15,https://doi.org/10.4018/IJMSTR.2015100104 +Julien Maitre,A Black-Box Model for Estimation of the Induction Machine Parameters Based on Stochastic Algorithms.,2015,3,IJMSTR,3,db/journals/ijmstr/ijmstr3.html#MaitreGBB15,https://doi.org/10.4018/IJMSTR.2015070103 +Swetha Reddy,Performance Evaluation of Geolocation Based Opportunistic Spectrum Access in Cloud-Assisted Cognitive Radio Networks.,2016,4,IJMSTR,1,db/journals/ijmstr/ijmstr4.html#ReddyCRS16,https://doi.org/10.4018/IJMSTR.2016010103 +Kostas Kolomvatsos,Contextual Reasoning under Uncertainty in Sensor Data Stream Monitoring.,2015,3,IJMSTR,2,db/journals/ijmstr/ijmstr3.html#KolomvatsosAH15,https://doi.org/10.4018/IJMSTR.2015040101 +Kaylyn McCoy,A Conceptual Model for Integrative Monitoring of Nuclear Power Plants Operational Activities Based on Historical Nuclear Incidents and Accidents.,2013,1,IJMSTR,1,db/journals/ijmstr/ijmstr1.html#McCoyAJ13,https://doi.org/10.4018/ijmstr.2013010105 +Dimitrios C. Tselios,Phased Method for Solving Multi-Objective MPM Job Shop Scheduling Problem.,2016,4,IJMSTR,1,db/journals/ijmstr/ijmstr4.html#TseliosSK16,https://doi.org/10.4018/IJMSTR.2016010104 +Rafik Fainti,Design and Early Simulations of Next Generation Intelligent Energy Systems.,2014,2,IJMSTR,2,db/journals/ijmstr/ijmstr2.html#FaintiNTV14,https://doi.org/10.4018/ijmstr.2014040104 +Jörg Piper,Modular Technical Concepts for Ambulatory Monitoring of Risk Patients Based on Multiple Parameters and an Automatic Alarm Function.,2016,4,IJMSTR,1,db/journals/ijmstr/ijmstr4.html#PiperM16,https://doi.org/10.4018/IJMSTR.2016010101 +Stylianos Chatzidakis,Creep Rupture Forecasting: A Machine Learning Approach to Useful Life Estimation.,2014,2,IJMSTR,2,db/journals/ijmstr/ijmstr2.html#ChatzidakisAT14,https://doi.org/10.4018/ijmstr.2014040101 +Miltiadis Alamaniotis,Integration of Gaussian Processes and Particle Swarm Optimization for Very-Short Term Wind Speed Forecasting in Smart Power.,2017,5,IJMSTR,3,db/journals/ijmstr/ijmstr5.html#AlamaniotisK17,https://doi.org/10.4018/IJMSTR.2017070101 +Stephen R. Sweetnich,Skin Detection with Small Unmanned Aerial Systems by Integration of Area Scan Multispectral Imagers and Factors Affecting their Design and Operation.,2014,2,IJMSTR,3,db/journals/ijmstr/ijmstr2.html#SweetnichJ14,https://doi.org/10.4018/IJMSTR.2014070104 +Miltiadis Alamaniotis,Neuro-SVM Anticipatory System for Online Monitoring of Radiation and Abrupt Change Detection.,2013,1,IJMSTR,2,db/journals/ijmstr/ijmstr1.html#AlamaniotisT13,https://doi.org/10.4018/ijmstr.2013040103 +Eleni S. Vergini,A Critical Overview of Net Zero Energy Buildings and Fuzzy Cognitive Maps.,2015,3,IJMSTR,3,db/journals/ijmstr/ijmstr3.html#VerginiG15,https://doi.org/10.4018/IJMSTR.2015070102 +Monica Sam,Improving In-Flight Learning in a Flapping Wing Micro Air Vehicle.,2016,4,IJMSTR,1,db/journals/ijmstr/ijmstr4.html#SamBDBG16,https://doi.org/10.4018/IJMSTR.2016010105 +Evangelia Pippa,EEG-based Classification of Epileptic and Non-Epileptic Events using Multi-Array Decomposition.,2016,4,IJMSTR,2,db/journals/ijmstr/ijmstr4.html#PippaKZTKM16,https://doi.org/10.4018/IJMSTR.2016040101 +Alexandros Bousdekis,Information Processing for Generating Recommendations Ahead of Time in an IoT-Based Environment.,2017,5,IJMSTR,4,db/journals/ijmstr/ijmstr5.html#BousdekisPMAM17,https://doi.org/10.4018/IJMSTR.2017100103 +Damian M. Lyons,Establishing A-Priori Performance Guarantees for Robot Missions that Include Localization Software.,2017,5,IJMSTR,1,db/journals/ijmstr/ijmstr5.html#LyonsAJOTT17,https://doi.org/10.4018/IJMSTR.2017010103 +Michail G. Kounelakis,Measurement Methodologies for Assessing the Glycolysis Effect in the Discrimination and Therapy of Brain Gliomas.,2013,1,IJMSTR,1,db/journals/ijmstr/ijmstr1.html#KounelakisBZGZNK13,https://doi.org/10.4018/ijmstr.2013010103 +Rafik Fainti,Hierarchical Method Based on Artificial Neural Networks for Power Output Prediction of a Combined Cycle Power Plant.,2016,4,IJMSTR,4,db/journals/ijmstr/ijmstr4.html#FaintiNAT16,https://doi.org/10.4018/IJMSTR.2016100102 +Kumar Yelamarthi,A Perceptual Computing based Gesture Controlled Quadcopter for Visual Tracking and Transportation.,2015,3,IJMSTR,2,db/journals/ijmstr/ijmstr3.html#YelamarthiKB15,https://doi.org/10.4018/IJMSTR.2015040104 +Christos P. Loizou,Despeckle Filtering Toolbox for Medical Ultrasound Video.,2013,1,IJMSTR,4,db/journals/ijmstr/ijmstr1.html#LoizouTPKCNP13,https://doi.org/10.4018/ijmstr.2013100106 +Federico Delfino,Planning and Management of Distributed Energy Resources and Loads in a Smart Microgrid.,2014,2,IJMSTR,2,db/journals/ijmstr/ijmstr2.html#DelfinoRBPMZ14,https://doi.org/10.4018/ijmstr.2014040103 +Abdollah Arasteh,Evaluation of Multi-Target Human Sperm Tracking Algorithms in Synthesized Dataset.,2016,4,IJMSTR,2,db/journals/ijmstr/ijmstr4.html#ArastehV16,https://doi.org/10.4018/IJMSTR.2016040102 +Chris Litsas,Profile-Based Text Classification for Children with Dyslexia.,2015,3,IJMSTR,1,db/journals/ijmstr/ijmstr3.html#LitsasMS15,https://doi.org/10.4018/ijmstr.2015010102 +George Vavoulas,The MobiFall Dataset: Fall Detection and Classification with a Smartphone.,2014,2,IJMSTR,1,db/journals/ijmstr/ijmstr2.html#VavoulasPCST14,https://doi.org/10.4018/ijmstr.2014010103 +Christine Largouët,Extended Automata for Temporal Planning of Interacting Agents.,2017,5,IJMSTR,1,db/journals/ijmstr/ijmstr5.html#LargouetKZ17,https://doi.org/10.4018/IJMSTR.2017010102 +Miltiadis Alamaniotis,Assessment of Fuzzy Logic Radioisotopic Pattern Identifier on Gamma-Ray Signals with Application to Security.,2014,2,IJMSTR,1,db/journals/ijmstr/ijmstr2.html#AlamaniotisYT14,https://doi.org/10.4018/ijmstr.2014010101 +Theodora Slini,Energy Consumption in Greek Households During the Economic Recession.,2014,2,IJMSTR,4,db/journals/ijmstr/ijmstr2.html#SliniGP14,https://doi.org/10.4018/IJMSTR.2014100102 +Efthyvoulos C. Kyriacou,An mHealth System for Monitoring of Children with Suspected Cardiac Arrhythmias.,2013,1,IJMSTR,2,db/journals/ijmstr/ijmstr1.html#KyriacouHCMMKJP13,https://doi.org/10.4018/ijmstr.2013040104 +Rigas Kotsakis,Emotional Prediction and Content Profile Estimation in Evaluating Audiovisual Mediated Communication.,2014,2,IJMSTR,4,db/journals/ijmstr/ijmstr2.html#KotsakisDKV14,https://doi.org/10.4018/IJMSTR.2014100104 +Osita Eziolisa,Investigation of Human Monitoring Capabilities for Multiple Watch Windows.,2016,4,IJMSTR,3,db/journals/ijmstr/ijmstr4.html#EziolisaEF16,https://doi.org/10.4018/IJMSTR.2016070102 +Nicholas Skapura,Class Distribution Curve Based Discretization With Application to Wearable Sensors and Medical Monitoring.,2017,5,IJMSTR,4,db/journals/ijmstr/ijmstr5.html#SkapuraD17,https://doi.org/10.4018/IJMSTR.2017100102 +Cristina Marghescu,An Experimental Investigation of Pulse Measurement by Means of a Plethysmographic Sensor Integrated in a ZigBee Medical Network.,2013,1,IJMSTR,3,db/journals/ijmstr/ijmstr1.html#MarghescuPP13,https://doi.org/10.4018/ijmstr.2013070103 +Ming Yang,Optimization of Power Allocation in Multimedia Wireless Sensor Networks.,2013,1,IJMSTR,1,db/journals/ijmstr/ijmstr1.html#YangWB13,https://doi.org/10.4018/ijmstr.2013010104 +Roman Ilin,Learning with Privileged Information for Improved Target Classification.,2014,2,IJMSTR,3,db/journals/ijmstr/ijmstr2.html#IlinSI14,https://doi.org/10.4018/IJMSTR.2014070103 +Vassiliki Mpelogianni,Using Fuzzy Control Methods for Increasing the Energy Efficiency of Buildings.,2015,3,IJMSTR,4,db/journals/ijmstr/ijmstr3.html#MpelogianniG15,https://doi.org/10.4018/IJMSTR.2015100101 +Apostolos Demertzis,Braided Routing Technique to Balance Traffic Load in Wireless Sensor Networks.,2016,4,IJMSTR,4,db/journals/ijmstr/ijmstr4.html#DemertzisO16,https://doi.org/10.4018/IJMSTR.2016100101 +Luan Fonseca Garcia,A Conceptual Framework for Rock Data Integration in Reservoir Models Based on Ontologies.,2017,5,IJMSTR,1,db/journals/ijmstr/ijmstr5.html#GarciaGRA17,https://doi.org/10.4018/IJMSTR.2017010104 +Antti Vehkaoja,Combining the Information of Unconstrained Electrocardiography and Ballistography in the Detection of Night-Time Heart Rate and Respiration Rate.,2013,1,IJMSTR,3,db/journals/ijmstr/ijmstr1.html#VehkaojaPVL13,https://doi.org/10.4018/ijmstr.2013070104 +George Tzagkarakis,Uncertainty-Aware Sensor Data Management and Early Warning for Monitoring Industrial Infrastructures.,2014,2,IJMSTR,4,db/journals/ijmstr/ijmstr2.html#TzagkarakisSCT14,https://doi.org/10.4018/IJMSTR.2014100101 +Nicos Mylonas,A Prototype MR Compatible Positioning Device for Guiding a Focused Ultrasound System for the Treatment of Abdominal and Thyroid Cancer.,2013,1,IJMSTR,4,db/journals/ijmstr/ijmstr1.html#MylonasD13,https://doi.org/10.4018/ijmstr.2013100105 +Magda Foti,Intelligent Bidding in Smart Electricity Markets.,2015,3,IJMSTR,3,db/journals/ijmstr/ijmstr3.html#FotiV15,https://doi.org/10.4018/IJMSTR.2015070104 +Alexandru Morega,An Adaptive Magnetic Field Source for Magnetic Drug Fixation.,2013,1,IJMSTR,4,db/journals/ijmstr/ijmstr1.html#MoregaSM13,https://doi.org/10.4018/ijmstr.2013100103 +Rüdiger W. Brause,An Alarm System for Death Prediction.,2013,1,IJMSTR,2,db/journals/ijmstr/ijmstr1.html#BrauseH13,https://doi.org/10.4018/ijmstr.2013040102 +Theodoros Koutsandreas,Analyzing and Visualizing Genomic Complexity for the Derivation of the Emergent Molecular Networks.,2016,4,IJMSTR,2,db/journals/ijmstr/ijmstr4.html#KoutsandreasBPV16,https://doi.org/10.4018/IJMSTR.2016040103 +Lidia Dobrescu,Radiation Safety of the Patients Investigated by Radiological Imaging Methods.,2013,1,IJMSTR,4,db/journals/ijmstr/ijmstr1.html#DobrescuSR13,https://doi.org/10.4018/ijmstr.2013100104 +Olga Mendoza-Schrock,Manifold Transfer Subspace Learning (MTSL) for Applications in Aided Target Recognition.,2017,5,IJMSTR,3,db/journals/ijmstr/ijmstr5.html#Mendoza-Schrock17,https://doi.org/10.4018/IJMSTR.2017070102 +Maria Hadjinicolaou,Studying the Blood Plasma Flow past a Red Blood Cell with the Mathematical Method of Kelvin's Transformation.,2014,2,IJMSTR,1,db/journals/ijmstr/ijmstr2.html#HadjinicolaouP14,https://doi.org/10.4018/ijmstr.2014010104 +Athanasios Fevgas,A Study of Sparse Matrix Methods on New Hardware: Advances and Challenges.,2015,3,IJMSTR,3,db/journals/ijmstr/ijmstr3.html#FevgasDTB15,https://doi.org/10.4018/IJMSTR.2015070101 +Irina Petrova 0002,Modeling of the Physical Principle of the Processes that is Occurring in Bioselective Elements.,2015,3,IJMSTR,4,db/journals/ijmstr/ijmstr3.html#PetrovaZLS15,https://doi.org/10.4018/IJMSTR.2015100103 +Anna Trikalinou,An Enhanced Dynamic Information Flow Tracking Method with Reverse Stack Execution.,2015,3,IJMSTR,1,db/journals/ijmstr/ijmstr3.html#TrikalinouB15,https://doi.org/10.4018/IJMSTR.2015010103 +Miguel ângelo Abrantes Costa,Uma Comparação Sistemática de Diferentes Abordagens para a Sumarização Automática Extrativa de Textos em Português.,2015,7,Linguamática,1,db/journals/linguamatica/linguamatica7.html#CostaM15,http://www.linguamatica.com/index.php/linguamatica/article/view/V7N1-2 +Jânio Freire,FlexSTS: Um Framework para Similaridade Semântica Textual.,2016,8,Linguamática,2,db/journals/linguamatica/linguamatica8.html#FreirePF16,http://www.linguamatica.com/index.php/linguamatica/article/view/v8n2-3 +Miguel Anxo Solla Portela,Verificación ortográfica de formas verbais e secuencias de pronomes enclíticos en lingua galega.,2009,1,Linguamática,1,db/journals/linguamatica/linguamatica1.html#Portela09,http://www.linguamatica.com/index.php/linguamatica/article/view/13 +Vládia Pinheiro,Um Analisador Semântico Inferencialista de Sentenças em Linguagem Natural.,2010,2,Linguamática,1,db/journals/linguamatica/linguamatica2.html#PinheiroPF10,http://www.linguamatica.com/index.php/linguamatica/article/view/49 +,Editorial.,2014,6,Linguamática,2,db/journals/linguamatica/linguamatica6.html#X14a,http://www.linguamatica.com/index.php/linguamatica/article/view/v6n2-0 +Mikel L. Forcada,Apertium: traducció automàtica de codi obert per a les llengües romàniques.,2009,1,Linguamática,1,db/journals/linguamatica/linguamatica1.html#Forcada09,http://www.linguamatica.com/index.php/linguamatica/article/view/18 +,Editorial.,2017,9,Linguamática,1,db/journals/linguamatica/linguamatica9.html#X17,http://www.linguamatica.com/index.php/linguamatica/article/view/v9n1p0 +Pablo Gamallo 0001,LinguaKit: uma ferramenta multilingue para a análise linguística e a extração de informação.,2017,9,Linguamática,1,db/journals/linguamatica/linguamatica9.html#GamalloG17,http://www.linguamatica.com/index.php/linguamatica/article/view/v9n1p2 +Deni Yuzo Kasama,Do termo à estruturação semântica: representação ontológica do domínio da Nanociência e Nanotecnologia utilizando a Estrutura Quali.,2010,2,Linguamática,3,db/journals/linguamatica/linguamatica2.html#KasamaZA10,http://www.linguamatica.com/index.php/linguamatica/article/view/73 +Juan Aparicio,Hacia un tratamiento computacional del Aktionsart.,2013,5,Linguamática,2,db/journals/linguamatica/linguamatica5.html#AparicioCC13,http://www.linguamatica.com/index.php/linguamatica/article/view/162 +Vera Vasilévski,Tratamento dos sufixos modo-temporais na depreensão automática da morfologia dos verbos do português.,2011,3,Linguamática,2,db/journals/linguamatica/linguamatica3.html#Vasilevski11,http://www.linguamatica.com/index.php/linguamatica/article/view/113 +Evandro Brasil da Fonseca,CORP: Uma Abordagem Baseada em Regras e Conhecimento Semântico para a Resolução de Correferências.,2017,9,Linguamática,1,db/journals/linguamatica/linguamatica9.html#FonsecaSAVV17,http://www.linguamatica.com/index.php/linguamatica/article/view/v9n1p1 +,Editorial.,2012,4,Linguamática,2,db/journals/linguamatica/linguamatica4.html#X12a,http://www.linguamatica.com/index.php/linguamatica/article/view/151 +Diana Santos,PoNTE: apontando para corpos de aprendizes de tradução avançados.,2014,6,Linguamática,1,db/journals/linguamatica/linguamatica6.html#Santos14,http://www.linguamatica.com/index.php/linguamatica/article/view/v6n1-05 +João Miranda,Desafios na recolha de informação baseada na Wikipédia portuguesa com o Págico.,2012,4,Linguamática,1,db/journals/linguamatica/linguamatica4.html#Miranda12,http://www.linguamatica.com/index.php/linguamatica/article/view/126 +Indira Gandi Mascarenhas de Brito,Realização de Previsões com Conteúdos Textuais em Português.,2014,6,Linguamática,1,db/journals/linguamatica/linguamatica6.html#BritoM14,http://www.linguamatica.com/index.php/linguamatica/article/view/v6n1-04 +Daniela Oliveira Ferreira do Amaral,NERP-CRF: uma ferramenta para o reconhecimento de entidades nomeadas por meio de Conditional Random Fields.,2014,6,Linguamática,1,db/journals/linguamatica/linguamatica6.html#AmaralV14,http://www.linguamatica.com/index.php/linguamatica/article/view/v6n1-03 +Patricia Sotelo Dios,Corpus multimedia VEIGA inglés-galego de subtitulación cinematográfica.,2011,3,Linguamática,2,db/journals/linguamatica/linguamatica3.html#Dios11,http://www.linguamatica.com/index.php/linguamatica/article/view/110 +Antoni Oliver González,inLéctor: creación de libros electrónicos bilingües interactivos.,2012,4,Linguamática,2,db/journals/linguamatica/linguamatica4.html#GonzalezC12,http://www.linguamatica.com/index.php/linguamatica/article/view/135 +Olga Lidia Acosta López,Reconocimiento de términos en español mediante la aplicación de un enfoque de comparación entre corpus.,2015,7,Linguamática,2,db/journals/linguamatica/linguamatica7.html#LopezAI15,http://www.linguamatica.com/index.php/linguamatica/article/view/V7N2.2 +Iker Zulaica-Hernandez,Hacia una semántica computacional de las anáforas demostrativas.,2009,1,Linguamática,2,db/journals/linguamatica/linguamatica1.html#Zulaica-Hernandez09,http://www.linguamatica.com/index.php/linguamatica/article/view/24 +Leonardo Zilio,Desenvolvimento de um recurso léxico com papéis semânticos para o português.,2013,5,Linguamática,2,db/journals/linguamatica/linguamatica5.html#ZilioRF13,http://www.linguamatica.com/index.php/linguamatica/article/view/167 +,Editorial.,2011,3,Linguamática,1,db/journals/linguamatica/linguamatica3.html#X11,http://www.linguamatica.com/index.php/linguamatica/article/view/93 +Carolina Evaristo Scarton,Análise da Inteligibilidade de textos via ferramentas de Processamento de Língua Natural: adaptando as métricas do Coh-Metrix para o Português.,2010,2,Linguamática,1,db/journals/linguamatica/linguamatica2.html#ScartonA10,http://www.linguamatica.com/index.php/linguamatica/article/view/44 +,Editorial.,2015,7,Linguamática,2,db/journals/linguamatica/linguamatica7.html#X15a,http://www.linguamatica.com/index.php/linguamatica/article/view/V7N2.0 +Diana Santos,Porquê o Págico? Razões para uma avaliação conjunta.,2012,4,Linguamática,1,db/journals/linguamatica/linguamatica4.html#Santos12,http://www.linguamatica.com/index.php/linguamatica/article/view/119 +Hristo Tanev,Exploiting Machine Learning Techniques to Build an Event Extraction System for Portuguese and Spanish.,2009,1,Linguamática,2,db/journals/linguamatica/linguamatica1.html#TanevZLKPAS09,http://www.linguamatica.com/index.php/linguamatica/article/view/37 +Luciano Barbosa,Blue Man Group no ASSIN: Usando Representações Distribuídas para Similaridade Semântica e Inferência Textual.,2016,8,Linguamática,2,db/journals/linguamatica/linguamatica8.html#BarbosaCGK16,http://www.linguamatica.com/index.php/linguamatica/article/view/v8n2-2 +Alba Cerrudo,ASinEs: Prolegómenos de un atlas de la variación sintáctica del español.,2015,7,Linguamática,2,db/journals/linguamatica/linguamatica7.html#CerrudoGPR15,http://www.linguamatica.com/index.php/linguamatica/article/view/V7N2.5 +Itziar Gonzalez-Dios,Testuen sinplifikazio automatikoa: arloaren egungo egoera.,2013,5,Linguamática,2,db/journals/linguamatica/linguamatica5.html#Gonzalez-DiosAI13,http://www.linguamatica.com/index.php/linguamatica/article/view/163 +Nuno Cardoso,Medindo o precipício semântico.,2012,4,Linguamática,1,db/journals/linguamatica/linguamatica4.html#Cardoso12,http://www.linguamatica.com/index.php/linguamatica/article/view/123 +Hernani Costa,Compilação de Corpos Comparáveis Especializados: Devemos sempre confiar nas Ferramentas de Compilação Semi-automáticas?,2016,8,Linguamática,1,db/journals/linguamatica/linguamatica8.html#CostaMPM16,http://www.linguamatica.com/index.php/linguamatica/article/view/v8n1-1 +Benjamín Ramírez González,Hacia un modelo computacional unificado del lenguaje natural.,2013,5,Linguamática,2,db/journals/linguamatica/linguamatica5.html#Gonzalez13,http://www.linguamatica.com/index.php/linguamatica/article/view/161 +Alberto Manuel Brandão Simões,Desenvolvimento de Aplicações em Perl com FreeLing 3.,2012,4,Linguamática,2,db/journals/linguamatica/linguamatica4.html#SimoesC12,http://www.linguamatica.com/index.php/linguamatica/article/view/132 +Pedro Fialho,INESC-ID@ASSIN: Medição de Similaridade Semântica e Reconhecimento de Inferência Textual.,2016,8,Linguamática,2,db/journals/linguamatica/linguamatica8.html#FialhoMMCQ16,http://www.linguamatica.com/index.php/linguamatica/article/view/v8n2-4 +,Editorial.,2009,1,Linguamática,1,db/journals/linguamatica/linguamatica1.html#X09,http://www.linguamatica.com/index.php/linguamatica/article/view/54 +Larraitz Uria,BASYQUE: Aplicación para el estudio de la variación sintáctica.,2011,3,Linguamática,1,db/journals/linguamatica/linguamatica3.html#UriaE11,http://www.linguamatica.com/index.php/linguamatica/article/view/85 +José Ramom Pichel Campos,imaxin|software - 16 anos desenvolvendo aplicações no campo do processamento da linguagem natural multilingue.,2013,5,Linguamática,2,db/journals/linguamatica/linguamatica5.html#CamposRCP13,http://www.linguamatica.com/index.php/linguamatica/article/view/170 +,Prefácio.,2012,4,Linguamática,1,db/journals/linguamatica/linguamatica4.html#X12,http://www.linguamatica.com/index.php/linguamatica/article/view/129 +José María Gómez Hidalgo,Un método de análisis de lenguaje tipo SMS para el castellano.,2013,5,Linguamática,1,db/journals/linguamatica/linguamatica5.html#HidalgoDR13,http://www.linguamatica.com/index.php/linguamatica/article/view/156 +,Editorial.,2013,5,Linguamática,1,db/journals/linguamatica/linguamatica5.html#X13,http://www.linguamatica.com/index.php/linguamatica/article/view/160 +Gianfranco Fronteddu,Una eina per a una llengua en procés d'estandardització: el traductor automàtic català-sard.,2017,9,Linguamática,2,db/journals/linguamatica/linguamatica9.html#FrontedduFT17,http://www.linguamatica.com/index.php/linguamatica/article/view/v9n2p1 +Hugo Gonçalo Oliveira,Extracção de relações semânticas entre palavras a partir de um dicionário: o PAPEL e a sua avaliação.,2010,2,Linguamática,1,db/journals/linguamatica/linguamatica2.html#OliveiraSG10,http://www.linguamatica.com/index.php/linguamatica/article/view/39 +Diana Santos,Caminhos percorridos no mapa da portuguesificação: A Linguateca em perspectiva.,2009,1,Linguamática,1,db/journals/linguamatica/linguamatica1.html#Santos09,http://www.linguamatica.com/index.php/linguamatica/article/view/20 +Patrícia Cunha França,Os dicionários onomasiológicos e as ontologias computorizadas.,2009,1,Linguamática,2,db/journals/linguamatica/linguamatica1.html#Franca09a,http://www.linguamatica.com/index.php/linguamatica/article/view/34 +,Editorial.,2010,2,Linguamática,2,db/journals/linguamatica/linguamatica2.html#X10a,http://www.linguamatica.com/index.php/linguamatica/article/view/67 +Nathan Siegle Hartmann,Solo Queue at ASSIN: Combinando Abordagens Tradicionais e Emergentes.,2016,8,Linguamática,2,db/journals/linguamatica/linguamatica8.html#Hartmann16,http://www.linguamatica.com/index.php/linguamatica/article/view/v8n2-6 +Xavier Gómez Guinovart,O dicionario de sinónimos como recurso para a expansión de WordNet.,2014,6,Linguamática,2,db/journals/linguamatica/linguamatica6.html#GuinovartP14,http://www.linguamatica.com/index.php/linguamatica/article/view/v6n2-5 +,Prefaci.,2017,9,Linguamática,2,db/journals/linguamatica/linguamatica9.html#X17a,http://www.linguamatica.com/index.php/linguamatica/article/view/v9n2p0 +Carlos-Emiliano González-Gallardo,Perfilado de autor multilingüe en redes sociales a partir de n-gramas de caracteres y de etiquetas gramaticales.,2016,8,Linguamática,1,db/journals/linguamatica/linguamatica8.html#Gonzalez-Gallardo16,http://www.linguamatica.com/index.php/linguamatica/article/view/v8n1-2 +,Editorial.,2013,5,Linguamática,2,db/journals/linguamatica/linguamatica5.html#X13a,http://www.linguamatica.com/index.php/linguamatica/article/view/169 +Cláudia Freitas,A lusofonia na Wikipédia em 150 tópicos.,2012,4,Linguamática,1,db/journals/linguamatica/linguamatica4.html#Freitas12,http://www.linguamatica.com/index.php/linguamatica/article/view/120 +,Editorial e Prefácio.,2016,8,Linguamática,2,db/journals/linguamatica/linguamatica8.html#X16a,http://www.linguamatica.com/index.php/linguamatica/article/view/v8n2-0 +Sabrina Bonqueves Fadanelli Bonqueves Fadanelli,A arquitetura de um glossário terminológico Inglês-Português na área de Eletrotécnica.,2015,7,Linguamática,1,db/journals/linguamatica/linguamatica7.html#FadanelliF15,http://www.linguamatica.com/index.php/linguamatica/article/view/V7N1-5 +Mário Rodrigues,Criação e Acesso a Informação Semântica Aplicada ao Governo Eletrónico.,2011,3,Linguamática,2,db/journals/linguamatica/linguamatica3.html#RodriguesDT11,http://www.linguamatica.com/index.php/linguamatica/article/view/101 +José Casimiro Pereira,Geração de Linguagem Natural para Conversão de Dados em Texto - Aplicação a um Assistente de Medicação para o Português.,2015,7,Linguamática,1,db/journals/linguamatica/linguamatica7.html#PereiraT15,http://www.linguamatica.com/index.php/linguamatica/article/view/V7N1-1 +,Editorial.,2010,2,Linguamática,1,db/journals/linguamatica/linguamatica2.html#X10,http://www.linguamatica.com/index.php/linguamatica/article/view/62 +Xavier Gómez Guinovart,Galnet: WordNet 3.0 do galego.,2011,3,Linguamática,1,db/journals/linguamatica/linguamatica3.html#Guinovart11,http://www.linguamatica.com/index.php/linguamatica/article/view/91 +Fernando Samuel Peregrino,Estudio sobre el impacto de los componentes de un sistema de recuperación de información geográfica y temporal.,2011,3,Linguamática,2,db/journals/linguamatica/linguamatica3.html#PeregrinoDP11,http://www.linguamatica.com/index.php/linguamatica/article/view/100 +Begoña Altuna,Euskarazko denbora-egiturak. Azterketa eta etiketatze-esperimentua.,2014,6,Linguamática,2,db/journals/linguamatica/linguamatica6.html#AltunaAI14,http://www.linguamatica.com/index.php/linguamatica/article/view/v6n2-1 +Cristina Mota,O passar do TEMPO no HAREM.,2011,3,Linguamática,1,db/journals/linguamatica/linguamatica3.html#MotaC11,http://www.linguamatica.com/index.php/linguamatica/article/view/86 +Vanessa Marquiafavel Serrani,Bancos de Fala para o Português Brasileiro.,2011,3,Linguamática,1,db/journals/linguamatica/linguamatica3.html#SerraniU11,http://www.linguamatica.com/index.php/linguamatica/article/view/82 +Maria Lucía del Rosario Castro Jorge,Estratégias de Seleção de Conteúdo com Base na CST (Cross-document Structure Theory) para Sumarização Automática Multidocumento.,2010,2,Linguamática,1,db/journals/linguamatica/linguamatica2.html#JorgeP10,http://www.linguamatica.com/index.php/linguamatica/article/view/52 +Matías Guzmán Naranjo,La subjetivización del de que en el español de Colombia.,2013,5,Linguamática,2,db/journals/linguamatica/linguamatica5.html#Naranjo13,http://www.linguamatica.com/index.php/linguamatica/article/view/158 +Alberto Manuel Brandão Simões,Apresentação do projecto Per-Fide: Paralelizando o Português com seis outras línguas.,2010,2,Linguamática,2,db/journals/linguamatica/linguamatica2.html#SimoesDAA10,http://www.linguamatica.com/index.php/linguamatica/article/view/65 +élen Cátia Tomazela,Avaliação da anotação semântica do PALAVRAS e sua pós-edição manual para o Corpus Summ-it.,2010,2,Linguamática,3,db/journals/linguamatica/linguamatica2.html#TomazelaBR10,http://www.linguamatica.com/index.php/linguamatica/article/view/74 +David Tomás,Kernels para la clasificacíon de preguntas en español y catalán.,2009,1,Linguamática,2,db/journals/linguamatica/linguamatica1.html#TomasV09,http://www.linguamatica.com/index.php/linguamatica/article/view/31 +,Editorial e Prefácio.,2014,6,Linguamática,1,db/journals/linguamatica/linguamatica6.html#X14,http://www.linguamatica.com/index.php/linguamatica/article/view/v6n1-00 +Alejandro Molina-Villegas,La compresión de frases: un recurso para la optimización de resumen automático de documentos.,2010,2,Linguamática,3,db/journals/linguamatica/linguamatica2.html#MolinaCTV10,http://www.linguamatica.com/index.php/linguamatica/article/view/72 +Caroline Hagège,Caracterização e Processamento de Expressões Temporais em Português.,2010,2,Linguamática,1,db/journals/linguamatica/linguamatica2.html#HagegeBM10,http://www.linguamatica.com/index.php/linguamatica/article/view/47 +,Editorial.,2010,2,Linguamática,3,db/journals/linguamatica/linguamatica2.html#X10b,http://www.linguamatica.com/index.php/linguamatica/article/view/81 +John Roberto Rodríguez,Clasificación automática del registro lingüístico en textos del español: un análisis contrastivo.,2013,5,Linguamática,1,db/journals/linguamatica/linguamatica5.html#RodriguezLA13,http://www.linguamatica.com/index.php/linguamatica/article/view/153 +,Editorial.,2011,3,Linguamática,2,db/journals/linguamatica/linguamatica3.html#X11a,http://www.linguamatica.com/index.php/linguamatica/article/view/118 +Arlindo Veiga,Conversão de Grafemas para Fonemas em Português Europeu - Abordagem Híbrida com Modelos Probabilísticos e Regras Fonológicas.,2011,3,Linguamática,2,db/journals/linguamatica/linguamatica3.html#VeigaCP11,http://www.linguamatica.com/index.php/linguamatica/article/view/102 +Erick Nilsen Pereira de Souza,Extração de Relações utilizando Features Diferenciadas para Português.,2014,6,Linguamática,2,db/journals/linguamatica/linguamatica6.html#SouzaC14,http://www.linguamatica.com/index.php/linguamatica/article/view/v6n2-4 +Fábio Santos,Descoberta de Synsets Difusos com base na Redundância em vários Dicionários.,2015,7,Linguamática,2,db/journals/linguamatica/linguamatica7.html#SantosO15,http://www.linguamatica.com/index.php/linguamatica/article/view/V7N2.1 +Ana Oliveira Alves,ASAPP: Alinhamento Semântico Automático de Palavras aplicado ao Português.,2016,8,Linguamática,2,db/journals/linguamatica/linguamatica8.html#AlvesRO16,http://www.linguamatica.com/index.php/linguamatica/article/view/v8n2-5 +Antoni Oliver González,WN-Toolkit: un toolkit per a la creació de WordNets a partir de diccionaris bilingües.,2012,4,Linguamática,2,db/journals/linguamatica/linguamatica4.html#Gonzalez12,http://www.linguamatica.com/index.php/linguamatica/article/view/136 +Alison Rafael Polpeta Freitas,Usando Grades de Entidades na Análise Automática de Coerência Local em Textos Científicos.,2014,6,Linguamática,1,db/journals/linguamatica/linguamatica6.html#FreitasF14,http://www.linguamatica.com/index.php/linguamatica/article/view/v6n1-02 +,Editorial.,2009,1,Linguamática,2,db/journals/linguamatica/linguamatica1.html#X09a,http://www.linguamatica.com/index.php/linguamatica/article/view/55 +Adrià Martín,Creació d'un motor de TAE especialitzat en farmàcia i medicina per a la combinació romanés-castellà.,2017,9,Linguamática,2,db/journals/linguamatica/linguamatica9.html#MartinP17,http://www.linguamatica.com/index.php/linguamatica/article/view/v9n2p4 +Iñaki Alegria,Teknologia garatzeko estrategiak baliabide urriko hizkuntzetarako: euskararen eta Ixa taldearen adibidea.,2011,3,Linguamática,1,db/journals/linguamatica/linguamatica3.html#AlegriaAISA11,http://www.linguamatica.com/index.php/linguamatica/article/view/92 +Cláudia Freitas,O que é uma resposta? Notas de uns avaliadores estafados.,2012,4,Linguamática,1,db/journals/linguamatica/linguamatica4.html#FreitasRMCS12,http://www.linguamatica.com/index.php/linguamatica/article/view/127 +Brett Drury,BrAgriNews: Um Corpus Temporal-Causal (Português-Brasileiro) para a Agricultura.,2017,9,Linguamática,1,db/journals/linguamatica/linguamatica9.html#DruryFL17,http://www.linguamatica.com/index.php/linguamatica/article/view/v9n1p4 +Aitor Gonzalez-Agirre,Construcción de una base de conocimiento léxico multilíngüe de amplia cobertura: Multilingual Central Repository.,2013,5,Linguamática,1,db/journals/linguamatica/linguamatica5.html#Gonzalez-Agirre13,http://www.linguamatica.com/index.php/linguamatica/article/view/159 +Arlindo Veiga,O desafio da participação humana do IT-Coimbra no Págico.,2012,4,Linguamática,1,db/journals/linguamatica/linguamatica4.html#VeigaLCPPC12,http://www.linguamatica.com/index.php/linguamatica/article/view/124 +Susana Bautista,Análisis de la Simplificación de Expresiones Numéricas en Español mediante un Estudio Empírico.,2012,4,Linguamática,2,db/journals/linguamatica/linguamatica4.html#BautistaDHSG12,http://www.linguamatica.com/index.php/linguamatica/article/view/137 +Lara Gil-Vallejo,Hacia una clasificación verbal automática para el español: estudio sobre la relevancia de los diferentes tipos y configuraciones de información sintáctico-semántica.,2015,7,Linguamática,1,db/journals/linguamatica/linguamatica7.html#Gil-VallejoCCT15,http://www.linguamatica.com/index.php/linguamatica/article/view/V7N1-3 +Diana Santos,Balanço do Págico e perspetivas de futuro.,2012,4,Linguamática,1,db/journals/linguamatica/linguamatica4.html#SantosMSCF12,http://www.linguamatica.com/index.php/linguamatica/article/view/130 +,Editorial.,2015,7,Linguamática,1,db/journals/linguamatica/linguamatica7.html#X15,http://www.linguamatica.com/index.php/linguamatica/article/view/V7N1-0 +Diana Santos,Uma incursão pelo universo das publicações em Portugal.,2011,3,Linguamática,2,db/journals/linguamatica/linguamatica3.html#SantosR11,http://www.linguamatica.com/index.php/linguamatica/article/view/112 +José Manuel Martínez Martínez,ECPC: el discurso parlamentario europeo desde la perspectiva de los estudios traductológicos de corpus.,2012,4,Linguamática,2,db/journals/linguamatica/linguamatica4.html#MartinezR12,http://www.linguamatica.com/index.php/linguamatica/article/view/131 +Rafael Pereira,Geração Automática de Sentenças em Língua Natural para Sequências de Pictogramas como Apoio à Comunicação Alternativa e Ampliada.,2017,9,Linguamática,1,db/journals/linguamatica/linguamatica9.html#PereiraMGC17,http://www.linguamatica.com/index.php/linguamatica/article/view/v9n1p3 +Larissa Picoli,Uso de uma Ferramenta de Processamento de Linguagem Natural como Auxílio à Coleta de Exemplos para o Estudo de Propriedades Sintático-Semânticas de Verbos.,2015,7,Linguamática,2,db/journals/linguamatica/linguamatica7.html#PicoliPOL15,http://www.linguamatica.com/index.php/linguamatica/article/view/V7N2.3 +óscar Alcón,Estudio de la influencia de incorporar conocimiento léxico-semántico a la técnica de Análisis de Componentes Principales para la generación de resúmenes multilingües.,2015,7,Linguamática,1,db/journals/linguamatica/linguamatica7.html#AlconL15,http://www.linguamatica.com/index.php/linguamatica/article/view/V7N1-4 +Luiz Arthur Pagani,Escopo in situ.,2012,4,Linguamática,2,db/journals/linguamatica/linguamatica4.html#Pagani12,http://www.linguamatica.com/index.php/linguamatica/article/view/133 +Duarte Dias,Geocodificação de Documentos Textuais com Classificadores Hierárquicos Baseados em Modelos de Linguagem.,2012,4,Linguamática,2,db/journals/linguamatica/linguamatica4.html#DiasAM12,http://www.linguamatica.com/index.php/linguamatica/article/view/139 +Rogelio Nazar,Detección automática de nombres eventivos no deverbales en castellano: un enfoque cuantitativo basado en corpus.,2017,9,Linguamática,2,db/journals/linguamatica/linguamatica9.html#NazarSU17,http://www.linguamatica.com/index.php/linguamatica/article/view/v9n2p2 +Bruno Barufaldi,Classificação Automática de Textos por Período Literário Utilizando Compressão de Dados Através do PPM-C.,2010,2,Linguamática,1,db/journals/linguamatica/linguamatica2.html#BarufaldiJSPFB10,http://www.linguamatica.com/index.php/linguamatica/article/view/50 +,Editorial.,2016,8,Linguamática,1,db/journals/linguamatica/linguamatica8.html#X16,http://www.linguamatica.com/index.php/linguamatica/article/view/v8n1-0 +Erick Rocha Fonseca,Visão Geral da Avaliação de Similaridade Semântica e Inferência Textual.,2016,8,Linguamática,2,db/journals/linguamatica/linguamatica8.html#FonsecaSCA16,http://www.linguamatica.com/index.php/linguamatica/article/view/v8n2-1 +Paulo Malvar Fernández,Vencendo a escassez de recursos computacionais. Carvalho: Tradutor Automático Estatístico Inglês-Galego a partir do corpus paralelo Europarl Inglês-Português.,2010,2,Linguamática,2,db/journals/linguamatica/linguamatica2.html#FernandezCGGG10,http://www.linguamatica.com/index.php/linguamatica/article/view/57 +Iria da Cunha,Un algoritmo lingüístico-estadístico para resumen automático de textos especializados.,2009,1,Linguamática,2,db/journals/linguamatica/linguamatica1.html#CunhaTVV09,http://www.linguamatica.com/index.php/linguamatica/article/view/33 +Luísa Coheur,Do tópico às respostas: do processo humano à sua simulação.,2012,4,Linguamática,1,db/journals/linguamatica/linguamatica4.html#CoheurC12,http://www.linguamatica.com/index.php/linguamatica/article/view/125 +Ricardo Rodrigues,Uma Abordagem ao Págico baseada no Processamento e Análise de Sintagmas dos Tópicos.,2012,4,Linguamática,1,db/journals/linguamatica/linguamatica4.html#RodriguesOG12,http://www.linguamatica.com/index.php/linguamatica/article/view/122 +Eloize Rossi Marques Seno,Reconhecimento de Informações Comuns para a Fusão de Sentenças Comparáveis do Português.,2009,1,Linguamática,1,db/journals/linguamatica/linguamatica1.html#SenoN09,http://www.linguamatica.com/index.php/linguamatica/article/view/5 +Miguel Alejandro Dorantes,Extracción automática de definiciones analíticas y relaciones semánticas de hiponimia-hiperonimia con un sistema basado en patrones lingüísticos.,2017,9,Linguamática,2,db/journals/linguamatica/linguamatica9.html#DorantesPSEM17,http://www.linguamatica.com/index.php/linguamatica/article/view/v9n2p3 +Liliana da Silva Ferreira,Extracção de Informação de Relatórios Médicos.,2009,1,Linguamática,1,db/journals/linguamatica/linguamatica1.html#FerreiraOTC09,http://www.linguamatica.com/index.php/linguamatica/article/view/12 +Diego dos Santos Silva,Geração de Expressões de Referência em Ambientes Virtuais.,2014,6,Linguamática,1,db/journals/linguamatica/linguamatica6.html#SilvaP14,http://www.linguamatica.com/index.php/linguamatica/article/view/v6n1-01 +Aline Villavicencio,Identificação de Expressões Multipalavra em Domínios Específicos.,2010,2,Linguamática,1,db/journals/linguamatica/linguamatica2.html#VillavicencioRM10,http://www.linguamatica.com/index.php/linguamatica/article/view/43 +Alberto Simões,Tirando o chapéu à Wikipédia: A coleção do Págico e o Cartola.,2012,4,Linguamática,1,db/journals/linguamatica/linguamatica4.html#SimoesCM12,http://www.linguamatica.com/index.php/linguamatica/article/view/121 +Lluís Padró,Analizadores Multilingües en FreeLing.,2011,3,Linguamática,2,db/journals/linguamatica/linguamatica3.html#Padro11,http://www.linguamatica.com/index.php/linguamatica/article/view/115 +Anabela Barreiro,Projetos sobre Tradução Automática do Português no Laboratório de Sistemas de Língua Falada do INESC-ID.,2014,6,Linguamática,2,db/journals/linguamatica/linguamatica6.html#BarreiroLCBT14,http://www.linguamatica.com/index.php/linguamatica/article/view/v6n2-6 +Alejandro Molina-Villegas,El Test de Turing para la evaluación de resumen automático de texto.,2015,7,Linguamática,2,db/journals/linguamatica/linguamatica7.html#Molina-Villegas15,http://www.linguamatica.com/index.php/linguamatica/article/view/V7N2.4 +Gerardo Sierra,Extracción de contextos definitorios en textos de especialidad a partir del reconocimiento de patrones lingüísticos.,2009,1,Linguamática,2,db/journals/linguamatica/linguamatica1.html#Sierra09,http://www.linguamatica.com/index.php/linguamatica/article/view/38 +David Soares Batista,Extracção de Relações Semânticas de Textos em Português Explorando a DBpédia e a Wikipédia.,2013,5,Linguamática,1,db/journals/linguamatica/linguamatica5.html#BatistaFSMS13,http://www.linguamatica.com/index.php/linguamatica/article/view/157 +Fernanda López-Escobedo,Propuesta de clasificación de un banco de voces con fines de identificación forense.,2016,8,Linguamática,1,db/journals/linguamatica/linguamatica8.html#Lopez-EscobedoS16,http://www.linguamatica.com/index.php/linguamatica/article/view/v8n1-3 +Gustavo Laboreiro,Avaliação de métodos de desofuscação de palavrões.,2014,6,Linguamática,2,db/journals/linguamatica/linguamatica6.html#LaboreiroO14,http://www.linguamatica.com/index.php/linguamatica/article/view/v6n2-2 +Ana Paula Soares,P-PAL: Uma base lexical com índices psicolinguísticos do Português Europeu.,2010,2,Linguamática,3,db/journals/linguamatica/linguamatica2.html#SoaresCSASCFM10,http://www.linguamatica.com/index.php/linguamatica/article/view/80 +Maria das Graças Volpe Nunes,Um panorama do Núcleo Interinstitucional de Linguística Computacional às vésperas de sua maioridade.,2010,2,Linguamática,2,db/journals/linguamatica/linguamatica2.html#NunesAP10,http://www.linguamatica.com/index.php/linguamatica/article/view/66 +Xavier Gómez Guinovart,Anotación morfosintáctica do Corpus Técnico do Galego.,2009,1,Linguamática,1,db/journals/linguamatica/linguamatica1.html#GuinovartF09,http://www.linguamatica.com/index.php/linguamatica/article/view/8 +Fernando Balbachan,Inducción de constituyentes sintácticos en español con técnicas de clustering y filtrado por información mutua.,2010,2,Linguamática,2,db/journals/linguamatica/linguamatica2.html#BalbachanD10,http://www.linguamatica.com/index.php/linguamatica/article/view/60 +Miguel Anxo Solla Portela,Módulo de acentuación para o galego en Freeling.,2010,2,Linguamática,3,db/journals/linguamatica/linguamatica2.html#Portela10,http://www.linguamatica.com/index.php/linguamatica/article/view/70 +William A. Pearlman,Set Partition Coding: Part I of Set Partition Coding and Image Wavelet Coding Systems.,2008,2,Foundations and Trends in Signal Processing,2,db/journals/ftsig/ftsig2.html#PearlmanS08,https://doi.org/10.1561/2000000013 +Robert M. Gray,A History of Realtime Digital Speech on Packet Networks: Part II of Linear Predictive Coding and the Internet Protocol.,2010,3,Foundations and Trends in Signal Processing,4,db/journals/ftsig/ftsig3.html#Gray10,https://doi.org/10.1561/2000000036 +Yariv Ephraim,Bivariate Markov Processes and Their Estimation.,2013,6,Foundations and Trends in Signal Processing,1,db/journals/ftsig/ftsig6.html#EphraimM13,https://doi.org/10.1561/2000000043 +James E. Fowler,Block-Based Compressed Sensing of Images and Video.,2012,4,Foundations and Trends in Signal Processing,4,db/journals/ftsig/ftsig4.html#FowlerMT12,https://doi.org/10.1561/2000000033 +Athanasios Leontaris,Multiple Reference Motion Compensation: A Tutorial Introduction and Survey.,2009,2,Foundations and Trends in Signal Processing,4,db/journals/ftsig/ftsig2.html#LeontarisCT09,https://doi.org/10.1561/2000000019 +Milind S. Gide,Computational Visual Attention Models.,2017,10,Foundations and Trends in Signal Processing,4,db/journals/ftsig/ftsig10.html#GideK17,https://doi.org/10.1561/2000000055 +Nuno Vasconcelos,Minimum Probability of Error Image Retrieval: From Visual Features to Image Semantics.,2012,5,Foundations and Trends in Signal Processing,4,db/journals/ftsig/ftsig5.html#VasconcelosV12,https://doi.org/10.1561/2000000015 +Ami Wiesel,Structured Robust Covariance Estimation.,2015,8,Foundations and Trends in Signal Processing,3,db/journals/ftsig/ftsig8.html#WieselZ15,https://doi.org/10.1561/2000000053 +Jelena Kovacevic,An Introduction to Frames.,2008,2,Foundations and Trends in Signal Processing,1,db/journals/ftsig/ftsig2.html#KovacevicC08,https://doi.org/10.1561/2000000006 +Bernhard Etzlinger,Synchronization and Localization in Wireless Networks.,2018,12,Foundations and Trends in Signal Processing,1,db/journals/ftsig/ftsig12.html#EtzlingerW18,https://doi.org/10.1561/2000000096 +Lianlin Li,A Survey on the Low-Dimensional-Model-based Electromagnetic Imaging.,2018,12,Foundations and Trends in Signal Processing,2,db/journals/ftsig/ftsig12.html#LiHXZJXSN18,https://doi.org/10.1561/2000000103 +William A. Pearlman,Set Partition Coding: Part II of Set Partition Coding and Image Wavelet Coding Systems.,2008,2,Foundations and Trends in Signal Processing,3,db/journals/ftsig/ftsig2.html#PearlmanS08a,https://doi.org/10.1561/2000000014 +Minh N. Do,Multidimensional Filter Banks and Multiscale Geometric Representations.,2012,5,Foundations and Trends in Signal Processing,3,db/journals/ftsig/ftsig5.html#DoL12,https://doi.org/10.1561/2000000012 +Mark J. F. Gales,The Application of Hidden Markov Models in Speech Recognition.,2007,1,Foundations and Trends in Signal Processing,3,db/journals/ftsig/ftsig1.html#GalesY07,https://doi.org/10.1561/2000000004 +Dongning Guo,The Interplay Between Information and Estimation Measures.,2013,6,Foundations and Trends in Signal Processing,4,db/journals/ftsig/ftsig6.html#GuoV13,https://doi.org/10.1561/2000000018 +Maya R. Gupta,Theory and Use of the EM Algorithm.,2010,4,Foundations and Trends in Signal Processing,3,db/journals/ftsig/ftsig4.html#GuptaC10,https://doi.org/10.1561/2000000034 +Robert M. Gray,A Survey of Linear Predictive Coding: Part I of Linear Predictive Coding and the Internet Protocol.,2009,3,Foundations and Trends in Signal Processing,3,db/journals/ftsig/ftsig3.html#Gray09,https://doi.org/10.1561/2000000029 +Yonina C. Eldar,Rethinking Biased Estimation: Improving Maximum Likelihood and the Cramér-Rao Bound.,2007,1,Foundations and Trends in Signal Processing,4,db/journals/ftsig/ftsig1.html#Eldar07,https://doi.org/10.1561/2000000008 +Huan Wang,An empirical molecular docking study of a di-iron binding protein with iron ions.,2013,14,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc14.html#WangLX13,https://doi.org/10.1631/jzus.C1200072 +Qionghai Dai,Special feature on computational photography.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#Dai17,https://doi.org/10.1631/FITEE.1730000 +Chang-cheng Wu,Improved switching based filter for protecting thin lines of color images.,2010,11,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc11.html#WuZC10,https://doi.org/10.1631/jzus.C0910145 +Shuo Wang,FlowTrace: measuring round-trip time and tracing path in software-defined networking with low communication overhead.,2017,18,Frontiers of IT and EE,2,db/journals/jzusc/jzusc18.html#WangZHLLY17,https://doi.org/10.1631/FITEE.1601280 +Alireza Rezazadeh,Coordination of PSS and TCSC controller using modified particle swarm optimization algorithm to improve power system dynamic performance.,2010,11,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc11.html#RezazadehSH10,https://doi.org/10.1631/jzus.C0910551 +Jian-wen Jiang,Effect of chip rate on the ranging accuracy in a regenerative pseudo-noise ranging system.,2011,12,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc12.html#JiangYZJJ11,https://doi.org/10.1631/jzus.C1000132 +Shahab Pourtalebi,Information schema constructs for defining warehouse databases of genotypes and phenotypes of system manifestation features.,2016,17,Frontiers of IT and EE,9,db/journals/jzusc/jzusc17.html#PourtalebiH16,https://doi.org/10.1631/FITEE.1600997 +Xiao Lin,A survey for image resizing.,2014,15,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc15.html#LinMMZ14,https://doi.org/10.1631/jzus.C1400102 +Junhong Zhang,Application of complete ensemble intrinsic time-scale decomposition and least-square SVM optimized using hybrid DE and PSO to fault diagnosis of diesel engines.,2017,18,Frontiers of IT and EE,2,db/journals/jzusc/jzusc18.html#ZhangL17,https://doi.org/10.1631/FITEE.1500337 +Yang Zhang 0026,CWLP: coordinated warp scheduling and locality-protected cache allocation on GPUs.,2018,19,Frontiers of IT and EE,2,db/journals/jzusc/jzusc19.html#ZhangXLT18,https://doi.org/10.1631/FITEE.1700059 +Jian Wu,A digital moiré fringe method for displacement sensors.,2016,17,Frontiers of IT and EE,9,db/journals/jzusc/jzusc17.html#WuZYW16,https://doi.org/10.1631/FITEE.1500270 +Shih-Kung Lai,Erratum to: Theoretical foundation of a decision network for urban development.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#LaiH17a,https://doi.org/10.1631/FITEE.15e0000 +Guohai Situ,Phase problems in optical imaging.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#SituW17,https://doi.org/10.1631/FITEE.1700298 +Zhao Wang,ARAP++: an extension of the local/global approach to mesh parameterization.,2016,17,Frontiers of IT and EE,6,db/journals/jzusc/jzusc17.html#WangLZS16,https://doi.org/10.1631/FITEE.1500184 +Yang-ming Guo,Adaptive online prediction method based on LS-SVR and its application in an electronic system.,2012,13,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc13.html#GuoRLM12,https://doi.org/10.1631/jzus.C1200156 +Md Nishat Anwar,A frequency domain design of PID controller for an AVR system.,2014,15,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc15.html#AnwarP14,https://doi.org/10.1631/jzus.C1300218 +Yu-ming Liu,Multiscale classification and its application to process monitoring.,2010,11,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc11.html#LiuYZSHL10,https://doi.org/10.1631/jzus.C0910430 +Shi-yan Wang,Convex relaxation for a 3D spatiotemporal segmentation model using the primal-dual method.,2012,13,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc13.html#WangY12,https://doi.org/10.1631/jzus.C1100331 +Meng Li,A surrogate-based optimization algorithm for network design problems.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#LiLC17,https://doi.org/10.1631/FITEE.1601403 +Xin Yuan 0004,Secure connectivity analysis in unmanned aerial vehicle networks.,2018,19,Frontiers of IT and EE,3,db/journals/jzusc/jzusc19.html#YuanFXWL18,https://doi.org/10.1631/FITEE.1700032 +Longxiang Wang,TextGen: a realistic text data content generation method for modern storage system benchmarks.,2016,17,Frontiers of IT and EE,10,db/journals/jzusc/jzusc17.html#WangDZWJF16,https://doi.org/10.1631/FITEE.1500332 +Yi Guo,DGR: dynamic gradient-based routing protocol for unbalanced and persistent data transmission in wireless sensor and actor networks.,2011,12,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc12.html#GuoXCG11,https://doi.org/10.1631/jzus.C1000184 +Chao Su,Incorporating target language semantic roles into a string-to-tree translation model.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#SuGHSF17,https://doi.org/10.1631/FITEE.1601349 +Hongwu Lv,Analyzing the service availability of mobile cloud computing systems by fluid-flow approximation.,2015,16,Frontiers of IT and EE,7,db/journals/jzusc/jzusc16.html#LvLWFZ15,https://doi.org/10.1631/FITEE.1400410 +Tao Huang 0005,Special issue on future network: software-defined networking.,2016,17,Frontiers of IT and EE,7,db/journals/jzusc/jzusc17.html#HuangYL16,https://doi.org/10.1631/FITEE.SDN2016 +Jizhou Luo,FrepJoin: an efficient partition-based algorithm for edit similarity join.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#LuoSWL17,https://doi.org/10.1631/FITEE.1601347 +Zhengmin Kong,A novel differential multiuser detection algorithm for multiuser MIMO-OFDM systems.,2010,11,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc11.html#KongZTL10,https://doi.org/10.1631/jzus.C0910735 +Mohd Amin At-Tasneem,A computing capability test for a switched system control design using the Haris-Rogers method.,2012,13,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc13.html#AT-TasneemHN12,https://doi.org/10.1631/jzus.C1200074 +Qiang Lan,Stochastic extra-gradient based alternating direction methods for graph-guided regularized minimization.,2018,19,Frontiers of IT and EE,6,db/journals/jzusc/jzusc19.html#LanQW18,https://doi.org/10.1631/FITEE.1601771 +Minghui Shi,Electroencephalogram-based brain-computer interface for the Chinese spelling system: a survey.,2018,19,Frontiers of IT and EE,3,db/journals/jzusc/jzusc19.html#ShiZXLHJCRLZY18,https://doi.org/10.1631/FITEE.1601509 +Qing-long Dai,Performance improvement for applying network virtualization in fiber-wireless (FiWi) access networks.,2014,15,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc15.html#DaiSHG14,https://doi.org/10.1631/jzus.C1400044 +Li Lu,Improving the real-time performance of Ethernet for plant automation (EPA) based industrial networks.,2013,14,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc14.html#LuFC13,https://doi.org/10.1631/jzus.C1200363 +Libing Wu,Cryptanalysis of an identity-based public auditing protocol for cloud storage.,2017,18,Frontiers of IT and EE,12,db/journals/jzusc/jzusc18.html#WuWHK17,https://doi.org/10.1631/FITEE.1601530 +Leilei Kong,A machine learning approach to query generation in plagiarism source retrieval.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#KongLQH17,https://doi.org/10.1631/FITEE.1601344 +Wei Yang,Human hip joint center analysis for biomechanical design of a hip joint exoskeleton.,2016,17,Frontiers of IT and EE,8,db/journals/jzusc/jzusc17.html#YangYX16,https://doi.org/10.1631/FITEE.1500286 +Mengdi Jiang,Properties of a general quaternion-valued gradient operator and its applications to signal processing.,2016,17,Frontiers of IT and EE,2,db/journals/jzusc/jzusc17.html#JiangLL16,https://doi.org/10.1631/FITEE.1500334 +Xin-tao Xia,Hypothesis testing for reliability with a three-parameter Weibull distribution using minimum weighted relative entropy norm and bootstrap.,2013,14,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc14.html#XiaJXSC13,https://doi.org/10.1631/jzus.C12a0241 +Pei-yih Ting,A secure threshold Paillier proxy signature scheme.,2010,11,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc11.html#TingHWH10,https://doi.org/10.1631/jzus.C0910493 +Choon Lih Hoo,A floating point conversion algorithm for mixed precision computations.,2012,13,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc13.html#HooHM12,https://doi.org/10.1631/jzus.C1200043 +Zhenxin Wang,Curve length estimation based on cubic spline interpolation in gray-scale images.,2013,14,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc14.html#WangO13,https://doi.org/10.1631/jzus.C1300056 +Hyeon Chang Lee,Finger vein recognition using weighted local binary pattern code based on a support vector machine.,2010,11,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc11.html#LeeKLP10,https://doi.org/10.1631/jzus.C0910550 +Ellips Masehian,Multi-objective robot motion planning using a particle swarm optimization model.,2010,11,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc11.html#MasehianS10,https://doi.org/10.1631/jzus.C0910525 +Bo-hu Li,A swarm intelligence design based on a workshop of meta-synthetic engineering.,2017,18,Frontiers of IT and EE,1,db/journals/jzusc/jzusc18.html#LiQLHZSZR17,https://doi.org/10.1631/FITEE.1700002 +Xie Wang,A novel approach of noise statistics estimate using H ∞ filter in target tracking.,2016,17,Frontiers of IT and EE,5,db/journals/jzusc/jzusc17.html#WangLFZ16,https://doi.org/10.1631/FITEE.1500262 +Nanning Zheng,Hybrid-augmented intelligence: collaboration and cognition.,2017,18,Frontiers of IT and EE,2,db/journals/jzusc/jzusc18.html#ZhengLRMCYXCW17,https://doi.org/10.1631/FITEE.1700053 +Zhaoyun Chen,Exploiting a depth context model in visual tracking with correlation filter.,2017,18,Frontiers of IT and EE,5,db/journals/jzusc/jzusc18.html#ChenLHWZ17,https://doi.org/10.1631/FITEE.1500389 +Yan Gui,Preserving global features of fluid animation from a single image using video examples.,2012,13,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc13.html#GuiMYC12,https://doi.org/10.1631/jzus.C1100342 +Hui Zhang,Effects of residual motion compensation errors on the performance of airborne along-track interferometric SAR.,2016,17,Frontiers of IT and EE,10,db/journals/jzusc/jzusc17.html#ZhangHQLLM16,https://doi.org/10.1631/FITEE.1500311 +Young-Mo Kwon,Monitoring continuous k-nearest neighbor queries in the hybrid wireless network.,2011,12,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc12.html#KwonJC11,https://doi.org/10.1631/jzus.C1000080 +Zu-sheng Ho,Extracting DC bus current information for optimal phase correction and current ripple in sensorless brushless DC motor drive.,2014,15,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc15.html#HoUW14,https://doi.org/10.1631/jzus.C1300247 +Jingfa Liu,A new energy landscape paving heuristic for satellite module layouts.,2016,17,Frontiers of IT and EE,10,db/journals/jzusc/jzusc17.html#LiuHLLGH16,https://doi.org/10.1631/FITEE.1500302 +Lei Zhang 0057,A hybrid genetic algorithm to optimize device allocation in industrial Ethernet networks with real-time constraints.,2011,12,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc12.html#ZhangLW11,https://doi.org/10.1631/jzus.C1100045 +Jian-cheng Fang,Composite disturbance attenuation based saturated control for maintenance of low Earth orbit (LEO) formations.,2012,13,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc13.html#FangS12,https://doi.org/10.1631/jzus.C1100350 +Zhouzhou He,Overlapping community detection combining content and link.,2012,13,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc13.html#HeZY12,https://doi.org/10.1631/jzus.C1200049 +Xiao-Li Zhang,Exponential stability of nonlinear impulsive switched systems with stable and unstable subsystems.,2014,15,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc15.html#ZhangLZ14,https://doi.org/10.1631/jzus.C1300123 +Xisheng Xiao,Optimizing checkpoint for scientific simulations.,2012,13,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc13.html#XiaoHZ12,https://doi.org/10.1631/jzus.C1200135 +Chunjie Zhang,Boundedness of Marcinkiewicz integral with rough kernel on Triebel-Lizorkin spaces.,2015,16,Frontiers of IT and EE,8,db/journals/jzusc/jzusc16.html#ZhangRZG15,https://doi.org/10.1631/FITEE.1500082 +Junjie Cao 0001,Measured boundary parameterization based on Poisson's equation.,2010,11,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc11.html#CaoSLB10,https://doi.org/10.1631/jzus.C0910460 +Jin-yi Liu,Proportional directional valve based automatic steering system for tractors.,2016,17,Frontiers of IT and EE,5,db/journals/jzusc/jzusc17.html#LiuTMSZ16,https://doi.org/10.1631/FITEE.1500172 +Hai Li,Micro-angle tilt detection for the rotor of a novel rotational gyroscope with a 0.47*3* resolution.,2017,18,Frontiers of IT and EE,5,db/journals/jzusc/jzusc18.html#LiLWZ17,https://doi.org/10.1631/FITEE.1500454 +Lei Wang 0023,Automatic pectoral muscle boundary detection in mammograms based on Markov chain and active contour model.,2010,11,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc11.html#WangZDY10,https://doi.org/10.1631/jzus.C0910025 +Mohammad Hossein Moaiyeri,Design and analysis of carbon nanotube FET based quaternary full adders.,2016,17,Frontiers of IT and EE,10,db/journals/jzusc/jzusc17.html#MoaiyeriSSN16,https://doi.org/10.1631/FITEE.1500214 +Zhongfei Zhang,Societally connected multimedia across cultures.,2012,13,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc13.html#ZhangZJZCHJLLMSTTWXYY12,https://doi.org/10.1631/jzus.C1200279 +Fuxiang Lu,Beyond bag of latent topics: spatial pyramid matching for scene category recognition.,2015,16,Frontiers of IT and EE,10,db/journals/jzusc/jzusc16.html#LuH15,https://doi.org/10.1631/FITEE.1500070 +Qian-qian Hu,Representing conics by low degree rational DP curves.,2010,11,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc11.html#HuW10,https://doi.org/10.1631/jzus.C0910148 +Ehsan Saeedi,Side-channel attacks and learning-vector quantization.,2017,18,Frontiers of IT and EE,4,db/journals/jzusc/jzusc18.html#SaeediKH17,https://doi.org/10.1631/FITEE.1500460 +Yonggang Peng,Model predictive control of servo motor driven constant pump hydraulic system in injection molding process based on neurodynamic optimization.,2014,15,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc15.html#PengWW14,https://doi.org/10.1631/jzus.C1300182 +Xiaochao Wang,Feature detection of triangular meshes via neighbor supporting.,2012,13,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc13.html#WangCLLSS12,https://doi.org/10.1631/jzus.C1100324 +Li-rong Shen,A novel period estimation method for X-ray pulsars based on frequency subdivision.,2015,16,Frontiers of IT and EE,10,db/journals/jzusc/jzusc16.html#ShenLSFX15,https://doi.org/10.1631/FITEE.1500052 +Lei He,Driving intention recognition and behaviour prediction based on a double-layer hidden Markov model.,2012,13,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc13.html#HeZW12,https://doi.org/10.1631/jzus.C11a0195 +Yan Liu 0015,Negative effects of sufficiently small initialweights on back-propagation neural networks.,2012,13,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc13.html#LiuYLW12,https://doi.org/10.1631/jzus.C1200008 +Peng Huang,Multi-instance learning for software quality estimation in object-oriented systems: a case study.,2010,11,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc11.html#HuangZ10,https://doi.org/10.1631/jzus.C0910084 +Yue Xie,New Technique: Sketch-based rotation editing.,2011,12,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc12.html#XieXYW11,https://doi.org/10.1631/jzus.C1000373 +Ye Yuan,Model-free adaptive control for three-degree-of-freedom hybrid magnetic bearings.,2017,18,Frontiers of IT and EE,12,db/journals/jzusc/jzusc18.html#YuanSXHZ17,https://doi.org/10.1631/FITEE.1700324 +Caihong Li,A chaotic coverage path planner for the mobile robot based on the Chebyshev map for special missions.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#LiSWWL17,https://doi.org/10.1631/FITEE.1601253 +Yun-he Pan,2018 special issue on artificial intelligence 2.0: theories and applications.,2018,19,Frontiers of IT and EE,1,db/journals/jzusc/jzusc19.html#Pan18,https://doi.org/10.1631/FITEE.1810000 +Zhi-qiang Song,Coordinated standoff tracking of moving targets using differential geometry.,2014,15,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc15.html#SongLCZX14,https://doi.org/10.1631/jzus.C1300287 +Hamid Tabatabaee,Erratum to: Dynamic task scheduling modeling in unstructured heterogeneous multiprocessor systems.,2014,15,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc15.html#TabatabaeeAP14a,https://doi.org/10.1631/jzus.C13e0204 +Dongrong Xu,A platform of digital brain using crowd power.,2018,19,Frontiers of IT and EE,1,db/journals/jzusc/jzusc19.html#XuDL18,https://doi.org/10.1631/FITEE.1700800 +Wei Cai,On-chip optical interconnect using visible light.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#CaiZGYYZWG17,https://doi.org/10.1631/FITEE.1601720 +Houkui Zhou,Topic discovery and evolution in scientific literature based on content and citations.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#ZhouYH17,https://doi.org/10.1631/FITEE.1601125 +Yuan-di Zhao,Efficient reconstruction of non-simple curves.,2011,12,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc12.html#ZhaoCSL11,https://doi.org/10.1631/jzus.C1000308 +Liming Yang,Time-series prediction based on global fuzzy measure in social networks.,2015,16,Frontiers of IT and EE,10,db/journals/jzusc/jzusc16.html#YangZC15,https://doi.org/10.1631/FITEE.1500025 +Xing-chen Wu,Using improved particle swarm optimization to tune PID controllers in cooperative collision avoidance systems.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#WuQSYX17,https://doi.org/10.1631/FITEE.1601427 +Hang Zhang 0003,VDoc+: a virtual document based approach for matching large ontologies using MapReduce.,2012,13,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc13.html#ZhangHQ12,https://doi.org/10.1631/jzus.C1101007 +Shi-cang Zhang,Amultiplemaneuvering targets tracking algorithm based on a generalized pseudo-Bayesian estimator of first order.,2013,14,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc14.html#ZhangLWS13,https://doi.org/10.1631/jzus.C1200310 +Ling-yue Liu,An improved parallel contrast-aware halftoning.,2013,14,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc14.html#LiuCWZG13,https://doi.org/10.1631/jzus.C1300142 +Ya-tao Zhang,ECG quality assessment based on a kernel support vector machine and genetic algorithm with a feature matrix.,2014,15,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc15.html#ZhangLWWL14,https://doi.org/10.1631/jzus.C1300264 +Ping Xie,An efficient data layout scheme for better I/O balancing in RAID-6 storage systems.,2015,16,Frontiers of IT and EE,5,db/journals/jzusc/jzusc16.html#XieHDCX15,https://doi.org/10.1631/FITEE.1400362 +Mau-Luen Tham,Seamless handover between unicast and multicast multimedia streams.,2014,15,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc15.html#ThamCXCL14,https://doi.org/10.1631/jzus.C1400052 +Jian Shi,Credit scoring by feature-weighted support vector machines.,2013,14,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc14.html#ShiZQ13,https://doi.org/10.1631/jzus.C1200205 +Gongjun Liu,Adaptive tracking control for air-breathing hypersonic vehicles with state constraints.,2017,18,Frontiers of IT and EE,5,db/journals/jzusc/jzusc18.html#Liu17,https://doi.org/10.1631/FITEE.1500464 +Xin Li,An efficient prediction framework for multi-parametric yield analysis under parameter variations.,2016,17,Frontiers of IT and EE,12,db/journals/jzusc/jzusc17.html#LiSX16,https://doi.org/10.1631/FITEE.1601225 +Raf Guns,Unnormalized and normalized forms of gefura measures in directed and undirected networks.,2015,16,Frontiers of IT and EE,4,db/journals/jzusc/jzusc16.html#GunsR15,https://doi.org/10.1631/FITEE.1400425 +Maiquel de Brito,Supporting flexible regulation of crisis management by means of situated artificial institution.,2016,17,Frontiers of IT and EE,4,db/journals/jzusc/jzusc17.html#BritoTGBH16,https://doi.org/10.1631/FITEE.1500369 +Kai Huang 0002,Profiling and annotation combined method for multimedia application specific MPSoC performance estimation.,2015,16,Frontiers of IT and EE,2,db/journals/jzusc/jzusc16.html#HuangZXZYMHCY15,https://doi.org/10.1631/FITEE.1400239 +Shi-jin Ren,A novel multimode process monitoring method integrating LDRSKM with Bayesian inference.,2015,16,Frontiers of IT and EE,8,db/journals/jzusc/jzusc16.html#RenLZY15,https://doi.org/10.1631/FITEE.1400263 +Jingjing Wang,A micro-machined thin film electro-acoustic biosensor for detection of pesticide residuals.,2014,15,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc15.html#WangLCXZ14,https://doi.org/10.1631/jzus.C1300289 +Reng-Mao Wu,Ray targeting for optimizing smooth freeform surfaces for LED non-rotational illumination.,2013,14,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc14.html#WuLZZLL13,https://doi.org/10.1631/jzus.C1300032 +Jadav Chandra Das,Quantum-dot cellular automata based reversible low power parity generator and parity checker design for nanocommunication.,2016,17,Frontiers of IT and EE,3,db/journals/jzusc/jzusc17.html#DasD16,https://doi.org/10.1631/FITEE.1500079 +Reza Rezaei,A review of interoperability assessment models.,2013,14,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc14.html#RezaeiCL13,https://doi.org/10.1631/jzus.C1300013 +Yu Qing Chen,Time-dependent changes in eye-specific segregation in the dorsal lateral geniculate nucleus and superior colliculus of postnatal mice.,2014,15,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc15.html#ChenDDCZ14,https://doi.org/10.1631/jzus.C1400153 +,An interview with Dr. Raj Reddy on artificial intelligence.,2018,19,Frontiers of IT and EE,1,db/journals/jzusc/jzusc19.html#X18,https://doi.org/10.1631/FITEE.1700860 +Rui Song 0003,Statistically uniform intra-block refresh algorithm for very low delay video communication.,2013,14,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc14.html#SongWHL13,https://doi.org/10.1631/jzus.C1200333 +Jiliang Zhang 0003,Secrecy outage performance for wireless-powered relaying systems with nonlinear energy harvesters.,2017,18,Frontiers of IT and EE,2,db/journals/jzusc/jzusc18.html#ZhangPX17,https://doi.org/10.1631/FITEE.1601352 +Dong-ling Li,Low temperature Si/Si wafer direct bonding using a plasma activated method.,2013,14,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc14.html#LiSWW13,https://doi.org/10.1631/jzus.C12MNT02 +Rong Li,Procedural generation and real-time rendering of a marine ecosystem.,2014,15,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc15.html#LiDYGZWB14,https://doi.org/10.1631/jzus.C1300342 +Jie Shi,A fine-grained access control model for relational databases.,2010,11,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc11.html#ShiZ10,https://doi.org/10.1631/jzus.C0910466 +Jia Li 0003,Salient object extraction for user-targeted video content association.,2010,11,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc11.html#LiYTHG10,https://doi.org/10.1631/jzus.C1001004 +Bing Tian,Initial position estimation strategy for a surface permanent magnet synchronous motor used in hybrid electric vehicles.,2016,17,Frontiers of IT and EE,8,db/journals/jzusc/jzusc17.html#TianASSD16,https://doi.org/10.1631/FITEE.1500298 +Jia-Yin Song,Segmentation and focus-point location based on boundary analysis in forest canopy hemispherical photography.,2016,17,Frontiers of IT and EE,8,db/journals/jzusc/jzusc17.html#SongSHZ16,https://doi.org/10.1631/FITEE.1601169 +Melanie D. Myers,Tactical planning: improving performance for information technology (IT) groups creating digital projects.,2010,11,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc11.html#Myers10,https://doi.org/10.1631/jzus.C1001012 +Jamal Ghasemi,Brain tissue segmentation based on spatial information fusion by Dempster-Shafer theory.,2012,13,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc13.html#GhasemiMGH12,https://doi.org/10.1631/jzus.C1100288 +Kai Huang,High throughput VLSI architecture for H.264/AVC context-based adaptive binary arithmetic coding (CABAC) decoding.,2013,14,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc14.html#HuangMYGY13,https://doi.org/10.1631/jzus.C1200250 +Changbin Yu,Optimization of formation for multi-agent systems based on LQR.,2016,17,Frontiers of IT and EE,2,db/journals/jzusc/jzusc17.html#YuWS16,https://doi.org/10.1631/FITEE.1500490 +Xiurui Geng,Non-negative matrix factorization based unmixing for principal component transformed hyperspectral data.,2016,17,Frontiers of IT and EE,5,db/journals/jzusc/jzusc17.html#GengJS16,https://doi.org/10.1631/FITEE.1600028 +Feng Liu 0013,On 3D face reconstruction via cascaded regression in shape space.,2017,18,Frontiers of IT and EE,12,db/journals/jzusc/jzusc18.html#LiuZLZ17,https://doi.org/10.1631/FITEE.1700253 +Bin-bin Lei,Derivation and analysis on the analytical structure of interval type-2 fuzzy controller with two nonlinear fuzzy sets for each input variable.,2016,17,Frontiers of IT and EE,6,db/journals/jzusc/jzusc17.html#LeiDBX16,https://doi.org/10.1631/FITEE.1601019 +Dan Wu,Implementation and evaluation of parallel FFT on Engineering and Scientific Computation Accelerator (ESCA) architecture.,2011,12,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc12.html#WuZDRCZ11,https://doi.org/10.1631/jzus.C1100027 +Li-gang Ma,Urban landscape classification using Chinese advanced high-resolution satellite imagery and an object-oriented multi-variable model.,2015,16,Frontiers of IT and EE,3,db/journals/jzusc/jzusc16.html#MaDYHW15,https://doi.org/10.1631/FITEE.1400083 +Sahar Moghimi,Studying pressure sores through illuminant invariant assessment of digital color images.,2010,11,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc11.html#MoghimiBTKFA10,https://doi.org/10.1631/jzus.C0910552 +He Hao,Torque characteristics in a large permanent magnet synchronous generator with stator radial ventilating air ducts.,2016,17,Frontiers of IT and EE,8,db/journals/jzusc/jzusc17.html#HaoFMJS16,https://doi.org/10.1631/FITEE.1500238 +Qing-feng Li,Improving the efficiency of magnetic coupling energy transfer by etching fractal patterns in the shielding metals.,2016,17,Frontiers of IT and EE,1,db/journals/jzusc/jzusc17.html#LiCWHL16,https://doi.org/10.1631/FITEE.1500114 +Osama A. Khashan,ImgFS: a transparent cryptography for stored images using a filesystem in userspace.,2015,16,Frontiers of IT and EE,1,db/journals/jzusc/jzusc16.html#KhashanZS15,https://doi.org/10.1631/FITEE.1400133 +Lun-Yao Wang,Reed-Muller function optimization techniques with onset table.,2011,12,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc12.html#WangXCA11,https://doi.org/10.1631/jzus.C1000193 +Gang Dong,Antenna-in-package system integrated with meander line antenna based on LTCC technology.,2016,17,Frontiers of IT and EE,1,db/journals/jzusc/jzusc17.html#DongXWY16,https://doi.org/10.1631/FITEE.1500167 +Hai Huang 0004,An anthropomorphic controlled hand prosthesis system.,2012,13,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc13.html#0004LLJYWPH12,https://doi.org/10.1631/jzus.C1100257 +Kuo-Hui Yeh,Analysis and design of a smart card based authentication protocol.,2013,14,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc14.html#YehTH13,https://doi.org/10.1631/jzus.C1300158 +Lei Zhang,Using concurrent lines in central catadioptric camera calibration.,2011,12,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc12.html#ZhangDL11,https://doi.org/10.1631/jzus.C1000043 +Kangli Zhang,Efficient detection methods for amplify-and-forward relay-aided device-to-device systems with full-rate space-time block code.,2017,18,Frontiers of IT and EE,6,db/journals/jzusc/jzusc18.html#ZhangZGW17,https://doi.org/10.1631/FITEE.1700018 +Fadi M. Albatsh,Enhancing power transfer capability through flexible AC transmission system devices: a review.,2015,16,Frontiers of IT and EE,8,db/journals/jzusc/jzusc16.html#AlbatshMAMH15,https://doi.org/10.1631/FITEE.1500019 +Ching-chau Su,Detection and location of partial discharge in cast-resin dry-type transformers using a waveguide and a new acoustic emission sensor pair design.,2011,12,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc12.html#SuTTC11,https://doi.org/10.1631/jzus.C1000126 +Lin-rong Xiao,Design of dual-edge triggered flip-flops based on quantum-dot cellular automata.,2012,13,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc13.html#XiaoCY12,https://doi.org/10.1631/jzus.C1100287 +Xiao-fang Huang,A method of shadow puppet figure modeling and animation.,2015,16,Frontiers of IT and EE,5,db/journals/jzusc/jzusc16.html#HuangSZXWZ15,https://doi.org/10.1631/FITEE.1400351 +Rodrigo Méndez-Ramírez,Chaotic digital cryptosystem using serial peripheral interface protocol and its dsPIC implementation.,2018,19,Frontiers of IT and EE,2,db/journals/jzusc/jzusc19.html#Mendez-RamirezA18,https://doi.org/10.1631/FITEE.1601346 +Yu Qi,Abidirectional brain-computer interface for effective epilepsy control.,2014,15,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc15.html#QiMGWZZZW14,https://doi.org/10.1631/jzus.C1400152 +Dan Zeng,Three-dimensional deformation in curl vector field.,2012,13,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc13.html#ZengZ12,https://doi.org/10.1631/jzus.C1200004 +Jia Xie,Efficient identity-based signature over NTRU lattice.,2016,17,Frontiers of IT and EE,2,db/journals/jzusc/jzusc17.html#XieHGG16,https://doi.org/10.1631/FITEE.1500197 +Yuanping Nie,Attention-based encoder-decoder model for answer selection in question answering.,2017,18,Frontiers of IT and EE,4,db/journals/jzusc/jzusc18.html#NieHHJL17,https://doi.org/10.1631/FITEE.1601232 +Ji-chuan Li,Moving target detection in the cepstrum domain for passive coherent location (PCL) radar.,2015,16,Frontiers of IT and EE,9,db/journals/jzusc/jzusc16.html#LiLZYLX15,https://doi.org/10.1631/FITEE.1500036 +Deyuan Meng,Motion synchronization of dual-cylinder pneumatic servo systems with integration of adaptive robust control and cross-coupling approach.,2014,15,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc15.html#MengTLL14,https://doi.org/10.1631/jzus.C1300360 +Rabia Irfan,TIE algorithm: a layer over clustering-based taxonomy generation for handling evolving data.,2018,19,Frontiers of IT and EE,6,db/journals/jzusc/jzusc19.html#IrfanKRQ18,https://doi.org/10.1631/FITEE.1700517 +Chunxue Wang,Feature matching using quasi-conformal maps.,2017,18,Frontiers of IT and EE,5,db/journals/jzusc/jzusc18.html#WangL17,https://doi.org/10.1631/FITEE.1500411 +Enzhong Yang,A video conferencing system based on SDN-enabled SVC multicast.,2016,17,Frontiers of IT and EE,7,db/journals/jzusc/jzusc17.html#YangZYY16,https://doi.org/10.1631/FITEE.1601087 +Qianshan Li,Building a dense surface map incrementally from semi-dense point cloud and RGBimages.,2015,16,Frontiers of IT and EE,7,db/journals/jzusc/jzusc16.html#LiXHH15,https://doi.org/10.1631/FITEE.14a0260 +Lin Cao,Flight control for air-breathing hypersonic vehicles using linear quadratic regulator design based on stochastic robustness analysis.,2017,18,Frontiers of IT and EE,7,db/journals/jzusc/jzusc18.html#CaoTZ17,https://doi.org/10.1631/FITEE.1601363 +Chao Huang,Minimal role mining method for Web service composition.,2010,11,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc11.html#HuangSWS10,https://doi.org/10.1631/jzus.C0910186 +Yujun Xiao,NIPAD: a non-invasive power-based anomaly detection scheme for programmable logic controllers.,2017,18,Frontiers of IT and EE,4,db/journals/jzusc/jzusc18.html#XiaoXJMQ17,https://doi.org/10.1631/FITEE.1601540 +Hua-shan Liu,Saturated output feedback tracking control for robot manipulators via fuzzy self-tuning.,2010,11,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc11.html#LiuZC10,https://doi.org/10.1631/jzus.C0910772 +Shuang Li 0008,Layer-wise domain correction for unsupervised domain adaptation.,2018,19,Frontiers of IT and EE,1,db/journals/jzusc/jzusc19.html#LiSW18,https://doi.org/10.1631/FITEE.1700774 +Wei Wang 0067,Animmune local concentration based virus detection approach.,2011,12,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc12.html#WangZTH11,https://doi.org/10.1631/jzus.C1000445 +Qian Bi,Human-machine interaction force control: using a model-referenced adaptive impedance device to control an index finger exoskeleton.,2014,15,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc15.html#BiY14,https://doi.org/10.1631/jzus.C1300259 +Tianqi Wu,Dolphin swarm algorithm.,2016,17,Frontiers of IT and EE,8,db/journals/jzusc/jzusc17.html#WuYY16,https://doi.org/10.1631/FITEE.1500287 +Bo Mao,Beyond mirroring: multi-version disk arraywith improved performance and energy efficiency.,2011,12,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc12.html#MaoWF11,https://doi.org/10.1631/jzus.C1000407 +Hui Huang 0003,Cooperative spectrum sensing in cognitive radio systems with limited sensing ability.,2010,11,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc11.html#HuangZCHQ10,https://doi.org/10.1631/jzus.C0910027 +Mohammad Alshayeb,A framework for an integrated unified modeling language.,2016,17,Frontiers of IT and EE,2,db/journals/jzusc/jzusc17.html#AlshayebKM16,https://doi.org/10.1631/FITEE.1500094 +Jiao-jiao Zhu,Scratch-concerned yield modeling for IC manufacturing involved with a chemical mechanical polishing process.,2012,13,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc13.html#ZhuLCYY12,https://doi.org/10.1631/jzus.C1100242 +Jie Yuan,CMSOF: a structured data organization framework for scanned Chinese medicine books in digital libraries.,2010,11,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc11.html#YuanWWLZ10,https://doi.org/10.1631/jzus.C1001007 +Bin Lin 0003,A sparse matrix model-based optical proximity correction algorithm with model-based mapping between segments and control sites.,2011,12,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc12.html#LinYSY11,https://doi.org/10.1631/jzus.C1000219 +Lin-jun Fan,Quantitative evaluation of model consistency evolution in compositional service-oriented simulation using a connected hyper-digraph.,2014,15,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc15.html#FanLZT14,https://doi.org/10.1631/jzus.C1300089 +Xiao-hua Wang,Adaptive dynamic programming for linear impulse systems.,2014,15,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc15.html#WangYHWM14,https://doi.org/10.1631/jzus.C1300145 +Angela Hsiang-Ling Chen,Economic optimization of resource-constrained project scheduling: a two-phase metaheuristic approach.,2010,11,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc11.html#ChenC10,https://doi.org/10.1631/jzus.C0910633 +Yong-ping Du,A new item-based deep network structure using a restricted Boltzmann machine for collaborative filtering.,2017,18,Frontiers of IT and EE,5,db/journals/jzusc/jzusc18.html#DuYHL17,https://doi.org/10.1631/FITEE.1601732 +Ping Yang,Parameter estimation in exponential models by linear and nonlinear fitting methods.,2017,18,Frontiers of IT and EE,3,db/journals/jzusc/jzusc18.html#YangWGLHWZTMWS17,https://doi.org/10.1631/FITEE.1601683 +Ratna Sanyal,Importance of retrieving noun phrases and named entities from digital library content.,2010,11,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc11.html#SanyalKN10,https://doi.org/10.1631/jzus.C1001003 +Xiao-xia Zhang,Overlap maximum matching ratio (OMMR): a new measure to evaluate overlaps of essential modules.,2015,16,Frontiers of IT and EE,4,db/journals/jzusc/jzusc16.html#ZhangXLHXZ15,https://doi.org/10.1631/FITEE.1400282 +Lam-for Kwok,Building an e-Portfolio with a learning plan centric approach.,2012,13,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc13.html#KwokC12,https://doi.org/10.1631/jzus.C1100073 +Rui Zhao,A rectangle bin packing optimization approach to the signal scheduling problem in the FlexRay static segment.,2016,17,Frontiers of IT and EE,4,db/journals/jzusc/jzusc17.html#ZhaoQL16,https://doi.org/10.1631/FITEE.1500232 +Gaetano C. La Delfa,Performance analysis of visualmarkers for indoor navigation systems.,2016,17,Frontiers of IT and EE,8,db/journals/jzusc/jzusc17.html#DelfaMCPB16,https://doi.org/10.1631/FITEE.1500324 +Chang Xu,Index and retrieve the skyline based on dominance relationship.,2011,12,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc12.html#XuSCG11,https://doi.org/10.1631/jzus.C0900003 +Yun-he Pan,Important developments for the digital library: Data Ocean and Smart Library.,2010,11,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc11.html#Pan10,https://doi.org/10.1631/jzus.C1001000 +Wenzhe Zhang,Versionized process based on non-volatile random-access memory for fine-grained fault tolerance.,2018,19,Frontiers of IT and EE,2,db/journals/jzusc/jzusc19.html#ZhangLW18,https://doi.org/10.1631/FITEE.1601477 +Jie Shen 0011,End-to-end delay analysis for networked systems.,2015,16,Frontiers of IT and EE,9,db/journals/jzusc/jzusc16.html#ShenHLWWY15,https://doi.org/10.1631/FITEE.1400414 +Qiao Yu,A feature selection approach based on a similarity measure for software defect prediction.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#YuJWW17,https://doi.org/10.1631/FITEE.1601322 +Jingming Kuang,Joint DOA and channel estimation with data detection based on 2D unitary ESPRIT in massive MIMO systems.,2017,18,Frontiers of IT and EE,6,db/journals/jzusc/jzusc18.html#KuangZF17,https://doi.org/10.1631/FITEE.1700025 +Shoubiao Tan,Multi-stage dual replica bit-line delay technique for process-variation-robust timing of low voltage SRAM sense amplifier.,2015,16,Frontiers of IT and EE,8,db/journals/jzusc/jzusc16.html#TanLPLTC15,https://doi.org/10.1631/FITEE.1400439 +Elaheh Mashhour,Mathematical modeling of electrochemical storage for incorporation in methods to optimize the operational planning of an interconnected micro grid.,2010,11,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc11.html#MashhourT10,https://doi.org/10.1631/jzus.C0910721 +Chuhua Huang,A multiscale-contour-based interpolation framework for generating a time-varying quasi-dense point cloud sequence.,2016,17,Frontiers of IT and EE,5,db/journals/jzusc/jzusc17.html#HuangLD16,https://doi.org/10.1631/FITEE.1500316 +Hong Liu,Inertial measurement unit-camera calibration based on incomplete inertial sensor information.,2014,15,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc15.html#LiuZG14,https://doi.org/10.1631/jzus.C1400038 +Zheng Liu,Scale-aware shape manipulation.,2014,15,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc15.html#LiuWLL14,https://doi.org/10.1631/jzus.C1400122 +Zhi-Qiang Feng,Knowledge modeling based on interval-valued fuzzy rough set and similarity inference: prediction of welding distortion.,2014,15,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc15.html#FengLH14,https://doi.org/10.1631/jzus.C1300370 +Yu-Hua Cheng,Third harmonic distortion calculation of a self-oscillating power amplifier.,2011,12,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc12.html#ChengT11,https://doi.org/10.1631/jzus.C1000097 +Fu-qiang Zhou,Dust collector localization in trouble of moving freight car detection system.,2013,14,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc14.html#ZhouZG13,https://doi.org/10.1631/jzus.C1200223 +Xiuxiu Wen,Performance analysis and optimization for chunked network coding based wireless cooperative downloading systems.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#WenWLFLH17,https://doi.org/10.1631/FITEE.1601361 +Lei Wang 0055,Number estimation of controllers for pinning a complex dynamical network.,2011,12,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc12.html#WangSS11,https://doi.org/10.1631/jzus.C1010247 +Mounir Hadef,Moments and Pasek's methods for parameter identification of a DC motor.,2011,12,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc12.html#HadefM11,https://doi.org/10.1631/jzus.C0910795 +Jin Zhang 0005,Interactive image segmentation with a regression based ensemble learning paradigm.,2017,18,Frontiers of IT and EE,7,db/journals/jzusc/jzusc18.html#ZhangTGCL17,https://doi.org/10.1631/FITEE.1601401 +Xibin Jia,Words alignment based on association rules for cross-domain sentiment classification.,2018,19,Frontiers of IT and EE,2,db/journals/jzusc/jzusc19.html#JiaJLSCB18,https://doi.org/10.1631/FITEE.1601679 +Mengni Zhang,A sampling method based on URL clustering for fast web accessibility evaluation.,2015,16,Frontiers of IT and EE,6,db/journals/jzusc/jzusc16.html#ZhangWBYZC15,https://doi.org/10.1631/FITEE.1400377 +Jijun Tong,Kernel sparse representation for MRI image analysis in automatic brain tumor segmentation.,2018,19,Frontiers of IT and EE,4,db/journals/jzusc/jzusc19.html#TongZWZ18,https://doi.org/10.1631/FITEE.1620342 +Yong-zhao Zhan,A blind watermarking algorithm for 3D mesh models based on vertex curvature.,2014,15,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc15.html#ZhanLWQ14,https://doi.org/10.1631/jzus.C1300306 +Heng Nian,Multiple target implementation for a doubly fed induction generator based on direct power control under unbalanced and distorted grid voltage.,2015,16,Frontiers of IT and EE,4,db/journals/jzusc/jzusc16.html#NianS15,https://doi.org/10.1631/FITEE.1400170 +Fengyu Zhou,A high precision visual localization sensor and its working methodology for an indoor mobile robot.,2016,17,Frontiers of IT and EE,4,db/journals/jzusc/jzusc17.html#ZhouYYJZ16,https://doi.org/10.1631/FITEE.1500272 +Bo Liu,An OpenFlow-based performance-oriented multipath forwarding scheme in datacenters.,2016,17,Frontiers of IT and EE,7,db/journals/jzusc/jzusc17.html#Liu0XHHZX16,https://doi.org/10.1631/FITEE.1601059 +Chang-Il Son,Diffusion tensor interpolation profile control using non-uniform motion on a Riemannian geodesic.,2012,13,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc13.html#SonX12,https://doi.org/10.1631/jzus.C1100098 +László Lengyel,Test-driven verification/validation of model transformations.,2015,16,Frontiers of IT and EE,2,db/journals/jzusc/jzusc16.html#LengyelC15,https://doi.org/10.1631/FITEE.1400111 +Wenjia Liu,Enhanced uplink non-orthogonal multiple access for 5G and beyond systems.,2018,19,Frontiers of IT and EE,3,db/journals/jzusc/jzusc19.html#LiuHC18,https://doi.org/10.1631/FITEE.1700842 +Quan-bo Ge,SCKF-STF-CN: a universal nonlinear filter for maneuver target tracking.,2011,12,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc12.html#GeLW11,https://doi.org/10.1631/jzus.C10a0353 +Yuxiang Li,Optimization of thread partitioning parameters in speculative multithreading based on artificial immune algorithm.,2015,16,Frontiers of IT and EE,3,db/journals/jzusc/jzusc16.html#LiZLJ15,https://doi.org/10.1631/FITEE.1400172 +Ralf Mueller,Enterprise applications of semantic technologies for business process management.,2012,13,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc13.html#Mueller12,https://doi.org/10.1631/jzus.C1101011 +Friederike Wall,Organizational dynamics in adaptive distributed search processes: effects on performance and the role of complexity.,2016,17,Frontiers of IT and EE,4,db/journals/jzusc/jzusc17.html#Wall16,https://doi.org/10.1631/FITEE.1500306 +Zoe L. Jiang,k-Dimensional hashing scheme for hard disk integrity verification in computer forensics.,2011,12,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc12.html#JiangFHYCS11,https://doi.org/10.1631/jzus.C1000425 +Ying-wei Zhang,Adaptive multiblock kernel principal component analysis for monitoring complex industrial processes.,2010,11,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc11.html#ZhangT10,https://doi.org/10.1631/jzus.C1000148 +Xian Zang,Fast global kernel fuzzy c-means clustering algorithm for consonant/vowel segmentation of speech signal.,2014,15,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc15.html#ZangVC14,https://doi.org/10.1631/jzus.C1300320 +Xiaosong Zhang,Proactive worm propagation modeling and analysis in unstructured peer-to-peer networks.,2010,11,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc11.html#ZhangCZL10,https://doi.org/10.1631/jzus.C0910488 +Jun Huang,Tracking control of the linear differential inclusion.,2011,12,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc12.html#HuangH11,https://doi.org/10.1631/jzus.C1000240 +Shuang-shuang Fan,Underwater glider design based on dynamic model analysis and prototype development.,2013,14,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc14.html#FanYPLXZ13,https://doi.org/10.1631/jzus.C1300001 +Sun-Hee Kim,Incremental expectation maximization principal component analysis for missing value imputation for coevolving EEG data.,2011,12,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc12.html#KimYN11,https://doi.org/10.1631/jzus.C10b0359 +Nan Chen,PRISMO: predictive skyline query processing over moving objects.,2012,13,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc13.html#ChenSCGD12,https://doi.org/10.1631/jzus.C10a0728 +Tao Huang 0005,Capacity analysis for cognitive heterogeneous networks with ideal/non-ideal sensing.,2015,16,Frontiers of IT and EE,1,db/journals/jzusc/jzusc16.html#HuangTLL15,https://doi.org/10.1631/FITEE.1400129 +Guoliang Tao,Posture control of a 3-RPS pneumatic parallel platform with parameter initialization and an adaptive robust method.,2017,18,Frontiers of IT and EE,3,db/journals/jzusc/jzusc18.html#TaoSMZ17,https://doi.org/10.1631/FITEE.1500353 +Xiao Liu 0003,HAPE3D - a new constructive algorithm for the 3D irregular packing problem.,2015,16,Frontiers of IT and EE,5,db/journals/jzusc/jzusc16.html#LiuLCY15,https://doi.org/10.1631/FITEE.1400421 +Yun-he Pan,Special issue on artificial intelligence 2.0.,2017,18,Frontiers of IT and EE,1,db/journals/jzusc/jzusc18.html#Pan17,https://doi.org/10.1631/FITEE.1710000 +Yang Guo,A new parallel meshing technique integrated into the conformal FDTD method for solving complex electromagnetic problems.,2014,15,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc15.html#GuoWH14,https://doi.org/10.1631/jzus.C1400135 +Yi Wei,Design of a novel low power 8-transistor 1-bit full adder cell.,2011,12,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc12.html#WeiS11,https://doi.org/10.1631/jzus.C1000372 +Xin Sun 0003,Electrical characterization of integrated passive devices using thin film technology for 3D integration.,2013,14,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc14.html#SunZLCMCMJ13,https://doi.org/10.1631/jzus.C12MNT01 +Zhi-zhong Tan,Characteristic of the equivalent impedance for an m*n RLC network with an arbitrary boundary.,2017,18,Frontiers of IT and EE,12,db/journals/jzusc/jzusc18.html#TanZAXT17,https://doi.org/10.1631/FITEE.1700037 +Bin Yu,Artificial intelligence and statistics.,2018,19,Frontiers of IT and EE,1,db/journals/jzusc/jzusc19.html#YuK18,https://doi.org/10.1631/FITEE.1700813 +Yi-die Ye,New Technique: A low drift current reference based on PMOS temperature correction technology.,2012,13,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc13.html#YeHS12,https://doi.org/10.1631/jzus.C1200112 +Aftab Ahmed Chandio,Towards adaptable and tunable cloud-based map-matching strategy for GPS trajectories.,2016,17,Frontiers of IT and EE,12,db/journals/jzusc/jzusc17.html#ChandioTZYX16,https://doi.org/10.1631/FITEE.1600027 +Yuwen Qian,Performance analysis for a two-way relaying power line network with analog network coding.,2015,16,Frontiers of IT and EE,10,db/journals/jzusc/jzusc16.html#QianTJSSL15,https://doi.org/10.1631/FITEE.1500135 +Bo-hu Li,Applications of artificial intelligence in intelligent manufacturing: a review.,2017,18,Frontiers of IT and EE,1,db/journals/jzusc/jzusc18.html#LiHYLY17,https://doi.org/10.1631/FITEE.1601885 +Zhang Liang,Synthesizing style-preserving cartoons via non-negative style factorization.,2012,13,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc13.html#LiangXZ12,https://doi.org/10.1631/jzus.C1100202 +Dongwei Xu,Real-time road traffic state prediction based on ARIMA and Kalman filter.,2017,18,Frontiers of IT and EE,2,db/journals/jzusc/jzusc18.html#XuWJQD17,https://doi.org/10.1631/FITEE.1500381 +Chung-Fu Lu,A three-level authenticated conference key establishment protocol for UMTS networks.,2011,12,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc12.html#LuWH11,https://doi.org/10.1631/jzus.C1000194 +Shih-Kung Lai,Theoretical foundation of a decision network for urban development.,2017,18,Frontiers of IT and EE,8,db/journals/jzusc/jzusc18.html#LaiH17,https://doi.org/10.1631/FITEE.1510000 +Jue Wang 0008,Joint compressed sensing imaging and phase adjustment via an iterative method for multistatic passive radar.,2018,19,Frontiers of IT and EE,4,db/journals/jzusc/jzusc19.html#WangW18,https://doi.org/10.1631/FITEE.1601423 +Xuesong Chen,Galerkin approximationwith Legendre polynomials for a continuous-time nonlinear optimal control problem.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#Chen17,https://doi.org/10.1631/FITEE.1601101 +Lin-Bo Qiao,A systematic review of structured sparse learning.,2017,18,Frontiers of IT and EE,4,db/journals/jzusc/jzusc18.html#QiaoZSL17,https://doi.org/10.1631/FITEE.1601489 +Ting Guo,A 37 GHz wide-band programmable divide-by-N frequency divider for millimeter-wave silicon-based phase-locked loop frequency synthesizers.,2014,15,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc15.html#GuoLLW14,https://doi.org/10.1631/jzus.C1400091 +Jian Cao,A review of object representation based on local features.,2013,14,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc14.html#CaoMCLD13,https://doi.org/10.1631/jzus.CIDE1303 +Peng-kang Xie,Influence of motor cable on common-mode currents in an inverter-fed motor drive system.,2018,19,Frontiers of IT and EE,2,db/journals/jzusc/jzusc19.html#XieLCC18,https://doi.org/10.1631/FITEE.1601518 +Guanghui Song,Two-level hierarchical feature learning for image classification.,2016,17,Frontiers of IT and EE,9,db/journals/jzusc/jzusc17.html#Song0CN16,https://doi.org/10.1631/FITEE.1500346 +Meiqin Liu,H∞ reference tracking control design for a class of nonlinear systems with time-varying delays.,2015,16,Frontiers of IT and EE,9,db/journals/jzusc/jzusc16.html#LiuCZ15,https://doi.org/10.1631/FITEE.1500053 +Salvador Ibarra-Martínez,Optimizing urban traffic control using a rational agent.,2014,15,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc15.html#Ibarra-MartinezCL14,https://doi.org/10.1631/jzus.C1400037 +Yong Ding 0003,Efficient scheme of low-dose CT reconstruction using TV minimization with an adaptive stopping strategy and sparse dictionary learning for post-processing.,2017,18,Frontiers of IT and EE,12,db/journals/jzusc/jzusc18.html#DingH17,https://doi.org/10.1631/FITEE.1700287 +Huajun Chen,A multi-agent framework for mining semantic relations from linked data.,2012,13,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc13.html#ChenYZGZ12,https://doi.org/10.1631/jzus.C1101010 +Fa-en Liu,A 31-45.5 GHz injection-locked frequency divider in 90-nm CMOS technology.,2014,15,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc15.html#LiuWLLTY14,https://doi.org/10.1631/jzus.C1400080 +Wei Xia,An enhanced mixed modulated Lagrange explicit time delay estimator with noisy input.,2016,17,Frontiers of IT and EE,10,db/journals/jzusc/jzusc17.html#XiaZJZ16,https://doi.org/10.1631/FITEE.1500417 +Jing Chen,Feature-based initial population generation for the optimization of job shop problems.,2010,11,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc11.html#ChenZGY10,https://doi.org/10.1631/jzus.C0910707 +Xi-chuan Zhou,Notifiable infectious disease surveillance with data collected by search engine.,2010,11,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc11.html#ZhouS10,https://doi.org/10.1631/jzus.C0910371 +Partha Pratim Roy 0001,Tandem hidden Markov models using deep belief networks for offline handwriting recognition.,2017,18,Frontiers of IT and EE,7,db/journals/jzusc/jzusc18.html#RoyZC17,https://doi.org/10.1631/FITEE.1600996 +Behrooz Rezaie,Global stability analysis of computer networks with arbitrary topology and time-varying delays.,2010,11,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc11.html#RezaieMKA10,https://doi.org/10.1631/jzus.C0910216 +Le-Qing Zhu,Insect recognition based on integrated region matching and dual tree complex wavelet transform.,2011,12,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc12.html#ZhuZ11,https://doi.org/10.1631/jzus.C0910740 +Li Weigang,First and Others credit-assignment schema for evaluating the academic contribution of coauthors.,2017,18,Frontiers of IT and EE,2,db/journals/jzusc/jzusc18.html#Weigang17,https://doi.org/10.1631/FITEE.1600991 +Shan Cheng,Optimal placement of distributed generation units in distribution systems via an enhanced multi-objective particle swarm optimization algorithm.,2014,15,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc15.html#ChengCWW14,https://doi.org/10.1631/jzus.C1300250 +Abbas Koochari,Exemplar-based video inpainting with large patches.,2010,11,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc11.html#KoochariS10,https://doi.org/10.1631/jzus.C0910308 +Juan Jose Cuadrado-Gallego,An experimental study on the conversion between IFPUG and UCP functional size measurement units.,2014,15,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc15.html#Cuadrado-GallegoARL14,https://doi.org/10.1631/jzus.C1300102 +Hasan Abbasi Nozari,Intelligent non-linear modelling of an industrial winding process using recurrent local linear neuro-fuzzy networks.,2012,13,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc13.html#NozariBMV12,https://doi.org/10.1631/jzus.C11a0278 +Yueting Zhuang,Challenges and opportunities: from big data to knowledge in AI 2.0.,2017,18,Frontiers of IT and EE,1,db/journals/jzusc/jzusc18.html#ZhuangWCP17,https://doi.org/10.1631/FITEE.1601883 +Yihu Xu,Spectrum sensing using multiple dual polarization antennas for cognitive radio systems in microcell environments.,2013,14,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc14.html#XuL13,https://doi.org/10.1631/jzus.C1300086 +Ian Horrocks,Semantics and#8851* scalability and#8872* and#8869*?,2012,13,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc13.html#Horrocks12,https://doi.org/10.1631/jzus.C1101001 +Ximing Li,Topic modeling for large-scale text data.,2015,16,Frontiers of IT and EE,6,db/journals/jzusc/jzusc16.html#LiOL15,https://doi.org/10.1631/FITEE.1400352 +Qiyan Tian,Adaptive fuzzy integral sliding mode velocity control for the cutting system of a trench cutter.,2016,17,Frontiers of IT and EE,1,db/journals/jzusc/jzusc17.html#TianWFG16,https://doi.org/10.1631/FITEE.15a0160 +Zhen Geng,Regularized level-set-based inverse lithography algorithm for IC mask synthesis.,2013,14,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc14.html#GengSYL13,https://doi.org/10.1631/jzus.C1300050 +Yuan Liang,Friendship-aware task planning in mobile crowdsourcing.,2017,18,Frontiers of IT and EE,1,db/journals/jzusc/jzusc18.html#LiangLWX17,https://doi.org/10.1631/FITEE.1601860 +Wei Xiang,Crowdsourcing intelligent design.,2018,19,Frontiers of IT and EE,1,db/journals/jzusc/jzusc19.html#XiangSYY18,https://doi.org/10.1631/FITEE.1700810 +Mahmoud Reza Shakarami,Robust design of static synchronous series compensator-based stabilizer for damping inter-area oscillations using quadratic mathematical programming.,2010,11,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc11.html#ShakaramiK10,https://doi.org/10.1631/jzus.C0910428 +Zhixiang Chen,Schedule refinement for homogeneous multi-core processors in the presence of manufacturing-caused heterogeneity.,2015,16,Frontiers of IT and EE,12,db/journals/jzusc/jzusc16.html#ChenLCWZ15,https://doi.org/10.1631/FITEE.1500035 +Behrouz Afzal,An accurate analytical I-V model for sub-90-nm MOSFETs and its application to read static noise margin modeling.,2012,13,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc13.html#AfzalEAP12,https://doi.org/10.1631/jzus.C1100090 +Huizong Li,A social tag clustering method based on common co-occurrence group similarity.,2016,17,Frontiers of IT and EE,2,db/journals/jzusc/jzusc17.html#LiHLHP16,https://doi.org/10.1631/FITEE.1500187 +Bowei Yang,An incentive model for voting based on information-hiding in P2P networks.,2010,11,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc11.html#YangSZ10,https://doi.org/10.1631/jzus.C0910727 +Jian Cheng 0001,Recent advances in efficient computation of deep convolutional neural networks.,2018,19,Frontiers of IT and EE,1,db/journals/jzusc/jzusc19.html#ChengWLHL18,https://doi.org/10.1631/FITEE.1700789 +Xiaohong Tan,Personalized course generation and evolution based on genetic algorithms.,2012,13,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc13.html#TanSW12,https://doi.org/10.1631/jzus.C1200174 +Wei Wang,Robust optical flow estimation based on brightness correction fields.,2011,12,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc12.html#WangSPWS11,https://doi.org/10.1631/jzus.C1100062 +Mustafa Gokdag,A novel PV sub-module-level power-balancing topology for maximum power point tracking under partial shading and mismatch conditions.,2016,17,Frontiers of IT and EE,12,db/journals/jzusc/jzusc17.html#GokdagA16,https://doi.org/10.1631/FITEE.1500322 +Weidong Chen 0002,A P300 based online brain-computer interface system for virtual hand control.,2010,11,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc11.html#ChenZZLQSWZDZ10,https://doi.org/10.1631/jzus.C0910530 +Omid Abbaszadeh,An ensemble method for data stream classification in the presence of concept drift.,2015,16,Frontiers of IT and EE,12,db/journals/jzusc/jzusc16.html#Abbaszadeh0K15,https://doi.org/10.1631/FITEE.1400398 +Wei Zhang,Design and simulation of a standing wave oscillator based PLL.,2016,17,Frontiers of IT and EE,3,db/journals/jzusc/jzusc17.html#ZhangHZ16,https://doi.org/10.1631/FITEE.1500210 +Zhe-jing Bao,Control of cascading failures in coupled map lattices based on adaptive predictive pinning control.,2011,12,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc12.html#BaoWY11,https://doi.org/10.1631/jzus.C1000369 +Maode Yan,Consensus-based three-dimensionalmulti-UAV formation control strategy with high precision.,2017,18,Frontiers of IT and EE,7,db/journals/jzusc/jzusc18.html#YanZZQ17,https://doi.org/10.1631/FITEE.1600004 +Mei Wen,Improving performance portability for GPU-specific OpenCL kernels on multi-core/many-core CPUs by analysis-based transformations.,2015,16,Frontiers of IT and EE,11,db/journals/jzusc/jzusc16.html#WenHXC15,https://doi.org/10.1631/FITEE.1500032 +Guijie Wang,Joint adaptive power allocation and interference suppression algorithms based on theMSER criterion for wireless sensor networks.,2014,15,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc15.html#WangCZZ14,https://doi.org/10.1631/jzus.C1400034 +Sadegh Jamali,A wavelet packet based method for adaptive single-pole auto-reclosing.,2010,11,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc11.html#JamaliG10,https://doi.org/10.1631/jzus.C0910617 +Shu-you Zhang,A knowledge push technology based on applicable probability matching and multidimensional context driving.,2018,19,Frontiers of IT and EE,2,db/journals/jzusc/jzusc19.html#ZhangGLT18,https://doi.org/10.1631/FITEE.1700763 +Quanshi Zhang,Visual interpretability for deep learning: a survey.,2018,19,Frontiers of IT and EE,1,db/journals/jzusc/jzusc19.html#ZhangZ18,https://doi.org/10.1631/FITEE.1700808 +Zhi-ping Zeng,Computational methods in super-resolution microscopy.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#ZengXCZZYX17,https://doi.org/10.1631/FITEE.1601628 +Kai-sheng Luo,SVM based layout retargeting for fast and regularized inverse lithography.,2014,15,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc15.html#LuoSYG14,https://doi.org/10.1631/jzus.C1300357 +Shuiqing Gong,An efficient and coordinated mapping algorithm in virtualized SDN networks.,2016,17,Frontiers of IT and EE,7,db/journals/jzusc/jzusc17.html#GongCKMZZ16,https://doi.org/10.1631/FITEE.1500387 +Myung-Jae Kim,Histogram equalization using a reduced feature set of background speakers' utterances for speaker recognition.,2017,18,Frontiers of IT and EE,5,db/journals/jzusc/jzusc18.html#KimYKY17,https://doi.org/10.1631/FITEE.1500380 +Cheng-gang Cui,A relative feasibility degree based approach for constrained optimization problems.,2010,11,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc11.html#CuiLW10,https://doi.org/10.1631/jzus.C0910072 +Xingguo Zhu,A reversibility-gain model for integer Karhunen-Loève transform design in video coding.,2015,16,Frontiers of IT and EE,10,db/journals/jzusc/jzusc16.html#ZhuY15,https://doi.org/10.1631/FITEE.1500071 +Jiwoong Bang,Effective operation and performance improvement methods for OMTP BONDI-based mobile Web widget resources.,2011,12,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc12.html#BangK11,https://doi.org/10.1631/jzus.C1000379 +Sheng-chao Deng,Nonlinear programming control using differential aerodynamic drag for CubeSat formation flying.,2017,18,Frontiers of IT and EE,7,db/journals/jzusc/jzusc18.html#DengMJ17,https://doi.org/10.1631/FITEE.1500493 +Hui Zhao,Ergodic secrecy capacity of MRC/SC in single-input multiple-output wiretap systems with imperfect channel state information.,2017,18,Frontiers of IT and EE,4,db/journals/jzusc/jzusc18.html#ZhaoTPC17,https://doi.org/10.1631/FITEE.1500430 +Weidong Zhu,Development of a monocular vision system for robotic drilling.,2014,15,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc15.html#ZhuMYK14,https://doi.org/10.1631/jzus.C1300379 +Xian Zang,Erratum to: Fast global kernel fuzzy c-means clustering algorithm for consonant/vowel segmentation of speech signal.,2014,15,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc15.html#ZangVC14a,https://doi.org/10.1631/jzus.C13e0320 +Bing-kun Wang,Short text classification based on strong feature thesaurus.,2012,13,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc13.html#WangHYL12,https://doi.org/10.1631/jzus.C1100373 +Lu Wang 0007,Portrait drawing from corresponding range and intensity images.,2013,14,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc14.html#WangLYHM13,https://doi.org/10.1631/jzus.CIDE1306 +Jingyu Lin,Transient imaging with a time-of-flight camera and its applications.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#LinWWL17,https://doi.org/10.1631/FITEE.1700556 +Yongwei Miao,Visual salience guided feature-aware shape simplification.,2014,15,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc15.html#MiaoHCLS14,https://doi.org/10.1631/jzus.C1400097 +Hong-Tao Wang,Coordinated control of an intelligentwheelchair based on a brain-computer interface and speech recognition.,2014,15,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc15.html#WangLY14,https://doi.org/10.1631/jzus.C1400150 +Tong-yang Jiang,An efficient measurement-driven sequential Monte Carlo multi-Bernoulli filter for multi-target filtering.,2014,15,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc15.html#JiangLWZ14,https://doi.org/10.1631/jzus.C1400025 +Reza Ebrahimi,U-shaped energy loss curves utilization for distributed generation optimization in distribution networks.,2013,14,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc14.html#EbrahimiEN13,https://doi.org/10.1631/jzus.C1200282 +Hongze Leng,Notes and correspondence on ensemble-based three-dimensional variational filters.,2013,14,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc14.html#LengSYC13,https://doi.org/10.1631/jzus.C1300024 +Jianru Xue,A vision-centered multi-sensor fusing approach to self-localization and obstacle perception for robotic cars.,2017,18,Frontiers of IT and EE,1,db/journals/jzusc/jzusc18.html#XueWDCHZ17,https://doi.org/10.1631/FITEE.1601873 +Tian-liang Yang,Feedback analysis and design of inductive power links driven by Class-E amplifiers with variable coupling coefficients.,2010,11,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc11.html#YangZC10,https://doi.org/10.1631/jzus.C0910607 +Ya-li Cao,A ranking SVM based fusion model for cross-media meta-search engine.,2010,11,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc11.html#CaoHT10,https://doi.org/10.1631/jzus.C1001009 +Huanzhao Wang,A secure and high-performance multi-controller architecture for software-defined networking.,2016,17,Frontiers of IT and EE,7,db/journals/jzusc/jzusc17.html#WangZXLH16,https://doi.org/10.1631/FITEE.1500321 +Yi-nan Wang,On modeling of electrical cyber-physical systems considering cyber security.,2016,17,Frontiers of IT and EE,5,db/journals/jzusc/jzusc17.html#WangLLXYY16,https://doi.org/10.1631/FITEE.1500446 +Zhenyu Liu 0005,Assembly variation analysis of flexible curved surfaces based on Bézier curves.,2018,19,Frontiers of IT and EE,6,db/journals/jzusc/jzusc19.html#LiuZCQT18,https://doi.org/10.1631/FITEE.1601619 +Lei-lei Kou,Effect of orbital errors on the geosynchronous circular synthetic aperture radar imaging and interferometric processing.,2011,12,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc12.html#KouWXCZ11,https://doi.org/10.1631/jzus.C1000170 +Zhaohui Wu,Recent advances of the Semantic Web.,2012,13,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc13.html#Wu12,https://doi.org/10.1631/jzus.C1101000 +Vignesh Renganathan Raja,A subtree-based approach to failure detection and protection for multicast in SDN.,2016,17,Frontiers of IT and EE,7,db/journals/jzusc/jzusc17.html#RajaLPWS16,https://doi.org/10.1631/FITEE.1601135 +Xiao-hua Luo,A new via chain design method considering confidence level and estimation precision.,2012,13,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc13.html#LuoCZY12,https://doi.org/10.1631/jzus.C1200079 +Nannan Zhao,A reliable power management scheme for consistent hashing based distributed key value storage systems.,2016,17,Frontiers of IT and EE,10,db/journals/jzusc/jzusc17.html#ZhaoW0X16,https://doi.org/10.1631/FITEE.1601162 +Vahid Bastani,Image compression based on spatial redundancy removal and image inpainting.,2010,11,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc11.html#BastaniHK10,https://doi.org/10.1631/jzus.C0910182 +Huan Shi,Blinking adaptation for synchronizing a mobile agent network.,2011,12,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc12.html#ShiDS11,https://doi.org/10.1631/jzus.C1000338 +Jian Niu,Model predictive control with an on-line identification model of a supply chain unit.,2010,11,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc11.html#NiuXZSQ10,https://doi.org/10.1631/jzus.C0910270 +Razieh Sadat Sadjady,A self-routing load balancing algorithm in parallel computing: comparison to the central algorithm.,2011,12,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc12.html#SadjadyZ11,https://doi.org/10.1631/jzus.C1000211 +Bo-Yang Qu,Multi-objective differential evolution with diversity enhancement.,2010,11,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc11.html#QuS10,https://doi.org/10.1631/jzus.C0910481 +Bo Jin,A differential control method for the proportional directional valve.,2014,15,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc15.html#JinZLZZC14,https://doi.org/10.1631/jzus.C1400056 +Gaoqi He,Shadow obstacle model for realistic corner-turning behavior in crowd simulation.,2016,17,Frontiers of IT and EE,3,db/journals/jzusc/jzusc17.html#HeJCLYL16,https://doi.org/10.1631/FITEE.1500253 +Ji-ming Li,Clustering-based hyperspectral band selection using sparse nonnegative matrix factorization.,2011,12,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc12.html#LiQ11,https://doi.org/10.1631/jzus.C1000304 +Pingping Wu,Spontaneous versus posed smile recognition via region-specific texture descriptor and geometric facial dynamics.,2017,18,Frontiers of IT and EE,7,db/journals/jzusc/jzusc18.html#WuLZG17,https://doi.org/10.1631/FITEE.1600041 +Hui Zhao,Physical layer security of underlay cognitive radio using maximal ratio combining.,2016,17,Frontiers of IT and EE,9,db/journals/jzusc/jzusc17.html#ZhaoWTLPLC16,https://doi.org/10.1631/FITEE.1500351 +Le-kui Zhou,Disambiguating named entities with deep supervised learning via crowd labels.,2017,18,Frontiers of IT and EE,1,db/journals/jzusc/jzusc18.html#ZhouTXWZ17,https://doi.org/10.1631/FITEE.1601835 +Zi-ang Ma,Robust object tracking with RGBD-based sparse learning.,2017,18,Frontiers of IT and EE,7,db/journals/jzusc/jzusc18.html#MaX17,https://doi.org/10.1631/FITEE.1601338 +Eunsung Kim,Asymmetry-aware load balancing for parallel applications in single-ISA multi-core systems.,2012,13,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc13.html#KimEY12,https://doi.org/10.1631/jzus.C1100198 +Mao-hua Zhang,Turning mechanism and composite control of stratospheric airships.,2012,13,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc13.html#ZhangDC12,https://doi.org/10.1631/jzus.C1200084 +Hui Zhou,Exploring the mechanism of neural-function reconstruction by reinnervated nerves in targeted muscles.,2014,15,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc15.html#ZhouYWHZYL14,https://doi.org/10.1631/jzus.C1400154 +Ziyang Li,VirtMan: design and implementation of a fast booting system for homogeneous virtual machines in iVCE.,2016,17,Frontiers of IT and EE,2,db/journals/jzusc/jzusc17.html#LiZLZL16,https://doi.org/10.1631/FITEE.1500216 +Yanhong Liu,Ray-triangular Bézier patch intersection using hybrid clipping algorithm.,2016,17,Frontiers of IT and EE,10,db/journals/jzusc/jzusc17.html#LiuCCZ16,https://doi.org/10.1631/FITEE.1500390 +Yong Cheng,Efficient revocation in ciphertext-policy attribute-based encryption based cryptographic cloud storage.,2013,14,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc14.html#ChengWMWMR13,https://doi.org/10.1631/jzus.C1200240 +Ke Jin,Ultra-wideband FMCW ISAR imaging with a large rotation angle based on block-sparse recovery.,2017,18,Frontiers of IT and EE,12,db/journals/jzusc/jzusc18.html#JinLLWZ17,https://doi.org/10.1631/FITEE.1601310 +Ruoyu Zhang,Compressed sensing-based structured joint channel estimation in a multi-user massive MIMO system.,2017,18,Frontiers of IT and EE,12,db/journals/jzusc/jzusc18.html#ZhangZJ17,https://doi.org/10.1631/FITEE.1601635 +Ye-tian Fan,A pruning algorithm with L 1/2 regularizer for extreme learning machine.,2014,15,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc15.html#FanWYFW14,https://doi.org/10.1631/jzus.C1300197 +Jian Hao,Determination of cut-off time of accelerated aging test under temperature stress for LED lamps.,2017,18,Frontiers of IT and EE,8,db/journals/jzusc/jzusc18.html#HaoJKWGWSX17,https://doi.org/10.1631/FITEE.1500483 +Minghao Hu,Meeting deadlines for approximation processing in MapReduce environments.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#HuWP17,https://doi.org/10.1631/FITEE.1601056 +Qiong Hu,Zipfian interpretation of textbook vocabulary lists: comments on Xiao et al.'s Corpus-based research on English word recognition rates in primary school and word selection strategy.,2017,18,Frontiers of IT and EE,7,db/journals/jzusc/jzusc18.html#HuY17,https://doi.org/10.1631/FITEE.1700418 +Yu-xi Wang,Colocated MIMO radar waveform-design based on two-step optimizations in spatial and spectral domains.,2017,18,Frontiers of IT and EE,7,db/journals/jzusc/jzusc18.html#WangHLL17,https://doi.org/10.1631/FITEE.1601726 +Gang Wu,Improving SPARQL query performance with algebraic expression tree based caching and entity caching.,2012,13,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc13.html#WuY12,https://doi.org/10.1631/jzus.C1101009 +Dan Wu,Scale-free brain ensemble modulated by phase synchronization.,2014,15,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc15.html#WuLLLY14,https://doi.org/10.1631/jzus.C1400199 +Youwei Wang,A new feature selection method for handling redundant information in text classification.,2018,19,Frontiers of IT and EE,2,db/journals/jzusc/jzusc19.html#WangF18,https://doi.org/10.1631/FITEE.1601761 +Zheng Zhu,Optimizing inter-view prediction structures for multi-view video coding using simulated annealing.,2011,12,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc12.html#ZhuLZ11,https://doi.org/10.1631/jzus.C1000016 +Xiang Wang,Efficient implementation of a cubic-convolution based image scaling engine.,2011,12,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc12.html#WangDLY11,https://doi.org/10.1631/jzus.C1100040 +Guo-peng Xu,Affective rating ranking based on face images in arousal-valence dimensional space.,2018,19,Frontiers of IT and EE,6,db/journals/jzusc/jzusc19.html#XuLZM18,https://doi.org/10.1631/FITEE.1700270 +Najam Muhammad Amin,Folded down-conversion mixer for a 60 GHz receiver architecture in 65-nm CMOS technology.,2014,15,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc15.html#AminWL14,https://doi.org/10.1631/jzus.C1400087 +Qianqi Le,Performance-driven assignment and mapping for reliable networks-on-chips.,2014,15,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc15.html#LeYHSF14,https://doi.org/10.1631/jzus.C1400055 +Ke Guo,A new constrained maximum margin approach to discriminative learning of Bayesian classifiers.,2018,19,Frontiers of IT and EE,5,db/journals/jzusc/jzusc19.html#GuoLGLG18,https://doi.org/10.1631/FITEE.1700007 +Kui-kang Cao,A parallel and scalable digital architecture for training support vector machines.,2010,11,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc11.html#CaoSC10,https://doi.org/10.1631/jzus.C0910500 +Kyong-il Kim,Active steering control strategy for articulated vehicles.,2016,17,Frontiers of IT and EE,6,db/journals/jzusc/jzusc17.html#KimGWGL16,https://doi.org/10.1631/FITEE.1500211 +Hongyang Lu,A two-stage parametric subspace model for efficient contrast-preserving decolorization.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#LuLWD17,https://doi.org/10.1631/FITEE.1600017 +R. Annie Uthra,A probabilistic approach for predictive congestion control in wireless sensor networks.,2014,15,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc15.html#UthraRJL14,https://doi.org/10.1631/jzus.C1300175 +Rong Fan,An efficient and DoS-resistant user authentication scheme for two-tiered wireless sensor networks.,2011,12,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc12.html#FanHPP11,https://doi.org/10.1631/jzus.C1000377 +Xiao-Xiong Zhang,A consensus model for group decision making under interval type-2 fuzzy environment.,2016,17,Frontiers of IT and EE,3,db/journals/jzusc/jzusc17.html#ZhangGT16,https://doi.org/10.1631/FITEE.1500198 +Jun Wang,Optimal precoding for full-duplex base stations under strongly correlated self-interference channels.,2017,18,Frontiers of IT and EE,6,db/journals/jzusc/jzusc18.html#WangWHQ17,https://doi.org/10.1631/FITEE.1700022 +Ming-jun Ma,A combined modulated feedback and temperature compensation approach to improve bias drift of a closed-loop MEMS capacitive accelerometer.,2015,16,Frontiers of IT and EE,6,db/journals/jzusc/jzusc16.html#MaJZ15,https://doi.org/10.1631/FITEE.1400349 +Dimitris C. Theodoridis,Direct adaptive regulation of unknownnonlinear systems with analysis of themodel order problem.,2011,12,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc12.html#TheodoridisBC11,https://doi.org/10.1631/jzus.C1000224 +Yinghui Zhong,Two-step gate-recess process combining selective wet-etching and digital wet-etching for InAlAs/InGaAs InP-based HEMTs.,2017,18,Frontiers of IT and EE,8,db/journals/jzusc/jzusc18.html#ZhongSWWLDDJ17,https://doi.org/10.1631/FITEE.1601121 +Dingcheng Feng,Learning robust principal components from L1-normmaximization.,2012,13,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc13.html#FengCX12,https://doi.org/10.1631/jzus.C1200180 +Yang Zhou 0002,Biologically inspired model of path integration based on head direction cells and grid cells.,2016,17,Frontiers of IT and EE,5,db/journals/jzusc/jzusc17.html#ZhouW16,https://doi.org/10.1631/FITEE.1500364 +Gopi Ram,Optimal array factor radiation pattern synthesis for linear antenna array using cat swarm optimization: validation by an electromagnetic simulator.,2017,18,Frontiers of IT and EE,4,db/journals/jzusc/jzusc18.html#RamMGK17,https://doi.org/10.1631/FITEE.1500371 +Bahareh Zibanezhad,Applying gravitational search algorithm in the QoS-based Web service selection problem.,2011,12,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc12.html#ZibanezhadZSR11,https://doi.org/10.1631/jzus.C1000305 +You-bo Liu,Situational awareness architecture for smart grids developed in accordance with dispatcher's thought process: a review.,2016,17,Frontiers of IT and EE,11,db/journals/jzusc/jzusc17.html#LiuLTLGZ16,https://doi.org/10.1631/FITEE.1601516 +Guangjia Song,Anonymous-address-resolution model.,2016,17,Frontiers of IT and EE,10,db/journals/jzusc/jzusc17.html#SongJ16,https://doi.org/10.1631/FITEE.1500382 +Gabrielle V. Michalek,Requirements and characteristics of a preservation quality information management system.,2010,11,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc11.html#Michalek10,https://doi.org/10.1631/jzus.C1001013 +Li Yao,Accurate real-time stereo correspondence using intra- and inter-scanline optimization.,2012,13,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc13.html#YaoLZWZ12,https://doi.org/10.1631/jzus.C1100311 +Xiao-xin Fu,Intelligent computing budget allocation for on-road trajectory planning based on candidate curves.,2016,17,Frontiers of IT and EE,6,db/journals/jzusc/jzusc17.html#FuJHWH16,https://doi.org/10.1631/FITEE.1500269 +Hui Sun,Exploring optimal combination of a file system and an I/O scheduler for underlying solid state disks.,2014,15,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc15.html#SunQX14,https://doi.org/10.1631/jzus.C1300314 +Song-bin Li,Detection of quantization index modulation steganography in G.723.1 bit stream based on quantization index sequence analysis.,2012,13,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc13.html#LiTH12,https://doi.org/10.1631/jzus.C1100374 +Fei-wei Qin,A deep learning approach to the classification of 3D CAD models.,2014,15,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc15.html#QinLGYC14,https://doi.org/10.1631/jzus.C1300185 +Chao Li,Push recovery for the standing under-actuated bipedal robot using the hip strategy.,2015,16,Frontiers of IT and EE,7,db/journals/jzusc/jzusc16.html#LiXZWWH15,https://doi.org/10.1631/FITEE.14a0230 +He-Xiu Xu,Miniaturized fractal-shaped branch-line coupler for dual-band applications based on composite right/left handed transmission lines.,2011,12,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc12.html#XuWCL11,https://doi.org/10.1631/jzus.C1000343 +Shun-wai Zhang,An LDPC coded cooperative MIMO scheme over Rayleigh fading channels with unknown channel state information.,2013,14,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc14.html#ZhangYT13,https://doi.org/10.1631/jzus.C1200207 +Zhi-hua Ning,A low drift curvature-compensated bandgap reference with trimming resistive circuit.,2011,12,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc12.html#NingH11,https://doi.org/10.1631/jzus.C1000440 +Xingru Peng,A pipelined Reed-Solomon decoder based on a modified step-by-step algorithm.,2016,17,Frontiers of IT and EE,9,db/journals/jzusc/jzusc17.html#PengZL16,https://doi.org/10.1631/FITEE.1500303 +You Liu,Steering control for underwater gliders.,2017,18,Frontiers of IT and EE,7,db/journals/jzusc/jzusc18.html#LiuSMY17,https://doi.org/10.1631/FITEE.1601735 +Amir Heidary,Series transformer based diode-bridge-type solid state fault current limiter.,2015,16,Frontiers of IT and EE,9,db/journals/jzusc/jzusc16.html#HeidaryRFG15,https://doi.org/10.1631/FITEE.1400428 +Jia-qiang Yang,Exponential response electrical pole-changing method for a five-phase induction machine with a current sliding mode control strategy.,2017,18,Frontiers of IT and EE,8,db/journals/jzusc/jzusc18.html#YangYZH17,https://doi.org/10.1631/FITEE.1601728 +Hamid Reza Ahmadi,A low-power and low-energy flexible GF(p) elliptic-curve cryptography processor.,2010,11,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc11.html#AhmadiA10,https://doi.org/10.1631/jzus.C0910660 +Chih-ho Chou,Efficient and secure three-party authenticated key exchange protocol for mobile environments.,2013,14,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc14.html#ChouTWY13,https://doi.org/10.1631/jzus.C1200273 +Jie Zhou,Automatically building large-scale named entity recognition corpora from Chinese Wikipedia.,2015,16,Frontiers of IT and EE,11,db/journals/jzusc/jzusc16.html#ZhouLC15,https://doi.org/10.1631/FITEE.1500067 +Huajuan Huang,Primal least squares twin support vector regression.,2013,14,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc14.html#HuangDS13,https://doi.org/10.1631/jzus.CIIP1301 +Yunxiang Zhao,Pegasus: a distributed and load-balancing fingerprint identification system.,2016,17,Frontiers of IT and EE,8,db/journals/jzusc/jzusc17.html#ZhaoZLHLL16,https://doi.org/10.1631/FITEE.1500487 +Peng Li 0010,A numerical local orthogonal transform method for stratified waveguides.,2010,11,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc11.html#LiZLC10,https://doi.org/10.1631/jzus.C0910732 +Xin-Hao Chen,Hash signature saving in distributed video coding.,2011,12,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc12.html#ChenZSY11,https://doi.org/10.1631/jzus.C1000008 +Xian-Ting Zeng,Robust lossless data hiding scheme.,2010,11,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc11.html#ZengPPL10,https://doi.org/10.1631/jzus.C0910177 +Xiao-wei Liu,Ball-disk rotor gyroscope adaptive quick-start technique.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#LiuWLZ17,https://doi.org/10.1631/FITEE.1600035 +Yingmei Wei,Applications of structure from motion: a survey.,2013,14,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc14.html#WeiKYW13,https://doi.org/10.1631/jzus.CIDE1302 +Liang Wei,An efficient hardware design for HDTV H.264/AVC encoder.,2011,12,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc12.html#WeiDDYY11,https://doi.org/10.1631/jzus.C1000201 +Hui-pin Lin,A new variable-mode control strategy for LLC resonant converters operating in a wide input voltage range.,2017,18,Frontiers of IT and EE,3,db/journals/jzusc/jzusc18.html#LinJXHL17,https://doi.org/10.1631/FITEE.1600029 +Hao Zhou 0003,Anefficient quadrature demodulator for medical ultrasound imaging.,2015,16,Frontiers of IT and EE,4,db/journals/jzusc/jzusc16.html#ZhouZ15,https://doi.org/10.1631/FITEE.1400205 +MyoungBeom Chung,An algorithm that minimizes audio fingerprints using the difference of Gaussians.,2011,12,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc12.html#ChungK11,https://doi.org/10.1631/jzus.C1000396 +Zhu Zhang,An IP mobility management scheme with dual location areas for IP/LEO satellite network.,2012,13,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc13.html#ZhangG12,https://doi.org/10.1631/jzus.C1100293 +Hui Chen,An easy-to-use evaluation framework for benchmarking entity recognition and disambiguation systems.,2017,18,Frontiers of IT and EE,2,db/journals/jzusc/jzusc18.html#ChenWLLZ17,https://doi.org/10.1631/FITEE.1500473 +Zong-feng Qi,Battle damage assessment based on an improved Kullback-Leibler divergence sparse autoencoder.,2017,18,Frontiers of IT and EE,12,db/journals/jzusc/jzusc18.html#QiLWL17,https://doi.org/10.1631/FITEE.1601395 +Bin Ju,Preference transfer model in collaborative filtering for implicit data.,2016,17,Frontiers of IT and EE,6,db/journals/jzusc/jzusc17.html#JuQY16,https://doi.org/10.1631/FITEE.1500313 +Mahdi Samadi,Modeling the effects of demand response on generation expansion planning in restructured power systems.,2013,14,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc14.html#SamadiJG13,https://doi.org/10.1631/jzus.C1300008 +Jia-geng Feng,View-invariant human action recognition via robust locally adaptive multi-view learning.,2015,16,Frontiers of IT and EE,11,db/journals/jzusc/jzusc16.html#FengX15,https://doi.org/10.1631/FITEE.1500080 +Xiao-hu Ma,Local uncorrelated local discriminant embedding for face recognition.,2016,17,Frontiers of IT and EE,3,db/journals/jzusc/jzusc17.html#MaYZ16,https://doi.org/10.1631/FITEE.1500255 +Javier G.-Escribano,Human condition monitoring in hazardous locations using pervasive RFID sensor tags and energy-efficient wireless networks.,2012,13,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc13.html#G-EscribanoG12,https://doi.org/10.1631/jzus.C1100318 +Javed Ahmed Laghari,A new technique for islanding operation of distribution network connected with mini hydro.,2015,16,Frontiers of IT and EE,5,db/journals/jzusc/jzusc16.html#LaghariMKBM15,https://doi.org/10.1631/FITEE.1400309 +Hua-rong Gu,A two-dimensional constant-weight sparse modulation code for volume holographic data storage.,2011,12,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc12.html#GuCHJ11,https://doi.org/10.1631/jzus.C1010246 +Izabela Nielsen,Multimodal processes optimization subject to fuzzy operation time constraints: declarative modeling approach.,2016,17,Frontiers of IT and EE,4,db/journals/jzusc/jzusc17.html#NielsenWBB16,https://doi.org/10.1631/FITEE.1500359 +Enkhbaatar Tumenjargal,Embedded software and hardware implementation system for a human machine interface based on ISOAgLib.,2013,14,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc14.html#TumenjargalBKH13,https://doi.org/10.1631/jzus.C1200270 +Xin-Hao Chen,Distributed video coding with adaptive selection of hash functions.,2011,12,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc12.html#ChenY11,https://doi.org/10.1631/jzus.C1000198 +Hong Hong,Centroid-based sifting for empiricalmode decomposition.,2011,12,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc12.html#HongWTD11,https://doi.org/10.1631/jzus.C1000037 +Mi Lin,Design of ternary D flip-flop with pre-set and pre-reset functions based on resonant tunneling diode literal circuit.,2011,12,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc12.html#LinLS11,https://doi.org/10.1631/jzus.C1000222 +Rui Wang 0004,Harmonic coordinates for real-time image cloning.,2010,11,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc11.html#WangCPB10,https://doi.org/10.1631/jzus.C1000067 +Parul Dawar,Miniaturized UWB multi-resonance patch antenna loaded with novel modified H-shape SRR metamaterial for microspacecraft applications.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#DawarRD17,https://doi.org/10.1631/FITEE.1601193 +Lei Zhang,High quality multi-focus polychromatic composite image fusion algorithm based on filtering in frequency domain and synthesis in space domain.,2010,11,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc11.html#ZhangLLY10,https://doi.org/10.1631/jzus.C0910344 +Qiang Liu,Subspace-based identification of discrete time-delay system.,2016,17,Frontiers of IT and EE,6,db/journals/jzusc/jzusc17.html#LiuM16,https://doi.org/10.1631/FITEE.1500358 +Yanwei Zhou,Aleakage-resilient certificateless public key encryption scheme with CCA2 security.,2018,19,Frontiers of IT and EE,4,db/journals/jzusc/jzusc19.html#ZhouYCW18,https://doi.org/10.1631/FITEE.1601849 +Jian Hao,Erratum to: Determination of cut-off time of accelerated aging test under temperature stress for LED lamps.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#HaoJKWGWSX17a,https://doi.org/10.1631/FITEE.15e0483 +Horng-Twu Liaw,Efficient password authentication schemes based on a geometric approach for a multi-server environment.,2010,11,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc11.html#LiawYCH10,https://doi.org/10.1631/jzus.C0910712 +Yingjie Xia,Accelerating geospatial analysis on GPUs using CUDA.,2011,12,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc12.html#XiaKL11,https://doi.org/10.1631/jzus.C1100051 +Hossein Aghababa,High-performance low-leakage regions of nano-scaled CMOS digital gates under variations of threshold voltage and mobility.,2012,13,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc13.html#AghababaFA12,https://doi.org/10.1631/jzus.C1100273 +Chun-hua He,Tabu search based resource allocation in radiological examination process execution.,2018,19,Frontiers of IT and EE,3,db/journals/jzusc/jzusc19.html#He18,https://doi.org/10.1631/FITEE.1601802 +Yuxin Peng,Cross-media analysis and reasoning: advances and directions.,2017,18,Frontiers of IT and EE,1,db/journals/jzusc/jzusc18.html#PengZZXHLZHG17,https://doi.org/10.1631/FITEE.1601787 +Gaoli Sang,Unseen head pose prediction using dense multivariate label distribution.,2016,17,Frontiers of IT and EE,6,db/journals/jzusc/jzusc17.html#SangCHZ16,https://doi.org/10.1631/FITEE.1500235 +Qingzheng Xu,Recent advances in the artificial endocrine system.,2011,12,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc12.html#XuW11,https://doi.org/10.1631/jzus.C1000044 +Yaoye Zhang,Extracting 3D model feature lines based on conditional random fields.,2013,14,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc14.html#ZhangSLSZ13,https://doi.org/10.1631/jzus.CIDE1308 +J. Divya Udayan,Animage-based approach to the reconstruction of ancient architectures by extracting and arranging 3D spatial components.,2015,16,Frontiers of IT and EE,1,db/journals/jzusc/jzusc16.html#UdayanKK15,https://doi.org/10.1631/FITEE.1400141 +Yue-Bin Luo,A keyed-hashing based self-synchronization mechanism for port address hopping communication.,2017,18,Frontiers of IT and EE,5,db/journals/jzusc/jzusc18.html#LuoWWZ17,https://doi.org/10.1631/FITEE.1601548 +Xiao-Hua Li,An algorithm for identifying symmetric variables in the canonical OR-coincidence algebra system.,2014,15,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc15.html#LiS14,https://doi.org/10.1631/jzus.C1400093 +MyoungBeom Chung,Identical-video retrieval using the low-peak feature of a video's audio information.,2010,11,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc11.html#ChungK10,https://doi.org/10.1631/jzus.C0910472 +Kok-Seng Wong,Towards a respondent-preferred k i -anonymity model.,2015,16,Frontiers of IT and EE,9,db/journals/jzusc/jzusc16.html#WongK15,https://doi.org/10.1631/FITEE.1400395 +Hong-xia Pang,Novel linear search for support vector machine parameter selection.,2011,12,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc12.html#PangDXFLC11,https://doi.org/10.1631/jzus.C1100006 +Yi Liu,Statistical assessment of selection-based dual-hop semi-blind amplify-and-forward cooperative networks.,2010,11,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc11.html#LiuZXL10,https://doi.org/10.1631/jzus.C1010020 +Rui Wang 0034,Sparse fast Clifford Fourier transform.,2017,18,Frontiers of IT and EE,8,db/journals/jzusc/jzusc18.html#WangZJC17,https://doi.org/10.1631/FITEE.1500452 +Shang Liu,Multi-user rate and power analysis in a cognitive radio network with massive multi-input multi-output.,2018,19,Frontiers of IT and EE,5,db/journals/jzusc/jzusc19.html#LiuAZZ18,https://doi.org/10.1631/FITEE.1700081 +Gloria Bueno García,Three-dimensional organ modeling based on deformable surfaces applied to radio-oncology.,2010,11,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc11.html#BuenoDSCD10,https://doi.org/10.1631/jzus.C0910402 +Xiao-juan Duan,Degree elevation of unified and extended spline curves.,2014,15,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc15.html#DuanW14,https://doi.org/10.1631/jzus.C1400076 +Lei Ke,Coupling analysis of transcutaneous energy transfer coils with planar sandwich structure for a novel artificial anal sphincter.,2014,15,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc15.html#KeYYWL14,https://doi.org/10.1631/jzus.C1400062 +Jr-Shian Chen,Extracting classification rules based on a cumulative probability distribution approach.,2011,12,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc12.html#Chen11,https://doi.org/10.1631/jzus.C1000205 +Lu Yu,Review of the current and future technologies for video compression.,2010,11,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc11.html#YuW10,https://doi.org/10.1631/jzus.C0910684 +Wenzhe Zhang,Fine-grained checkpoint based on non-volatile memory.,2017,18,Frontiers of IT and EE,2,db/journals/jzusc/jzusc18.html#ZhangLLWZ17,https://doi.org/10.1631/FITEE.1500352 +Guang-yu Fan,Funneling media access control (MAC) protocol for underwater acoustic sensor networks.,2011,12,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc12.html#FanCXW11,https://doi.org/10.1631/jzus.C1000388 +Min Yuan,Multi-scale UDCT dictionary learning based highly undersampled MR image reconstruction using patch-based constraint splitting augmented Lagrangian shrinkage algorithm.,2015,16,Frontiers of IT and EE,12,db/journals/jzusc/jzusc16.html#YuanYMZLZ15,https://doi.org/10.1631/FITEE.1400423 +De-long Feng,Finite-sensor fault-diagnosis simulation study of gas turbine engine using information entropy and deep belief networks.,2016,17,Frontiers of IT and EE,12,db/journals/jzusc/jzusc17.html#FengXLSYH16,https://doi.org/10.1631/FITEE.1601365 +Di Li 0003,Design of a low power GPS receiver in 0.18 andmicro*m CMOS technology with a SigmaDeltafractional-N synthesizer.,2010,11,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc11.html#LiYWLLWWWLZ10,https://doi.org/10.1631/jzus.C0910381 +Yang Yi,Stability and agility: biped running over varied and unknown terrain.,2015,16,Frontiers of IT and EE,4,db/journals/jzusc/jzusc16.html#YiL15,https://doi.org/10.1631/FITEE.1400284 +Hamza Khan,Longitudinal and lateral slip control of autonomous wheeled mobile robot for trajectory tracking.,2015,16,Frontiers of IT and EE,2,db/journals/jzusc/jzusc16.html#KhanIBZ15,https://doi.org/10.1631/FITEE.1400183 +Maoqun Yao,Function synthesis algorithm based on RTD-based three-variable universal logic gates.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#YaoYSX17,https://doi.org/10.1631/FITEE.1601730 +Najam Muhammad Amin,Erratum to: Folded down-conversion mixer for a 60 GHz receiver architecture in 65-nm CMOS technology.,2015,16,Frontiers of IT and EE,5,db/journals/jzusc/jzusc16.html#AminWL15,https://doi.org/10.1631/FITEE.14e0087 +Huan-gang Wang,Generative adversarial network based novelty detection usingminimized reconstruction error.,2018,19,Frontiers of IT and EE,1,db/journals/jzusc/jzusc19.html#WangLZ18,https://doi.org/10.1631/FITEE.1700786 +Shuang Tan,NaEPASC: a novel and efficient public auditing scheme for cloud data.,2014,15,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc15.html#TanJ14,https://doi.org/10.1631/jzus.C1400045 +Xiao-qing Zhang,An optimized grey wolf optimizer based on a mutation operator and eliminating-reconstructing mechanism and its application.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#ZhangM17,https://doi.org/10.1631/FITEE.1601555 +Gaurav Bansod,BORON: an ultra-lightweight and low power encryption design for pervasive computing.,2017,18,Frontiers of IT and EE,3,db/journals/jzusc/jzusc18.html#BansodPP17,https://doi.org/10.1631/FITEE.1500415 +Hao-wei Zhang,A scheduling method based on a hybrid genetic particle swarm algorithm for multifunction phased array radar.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#ZhangXLSZ17,https://doi.org/10.1631/FITEE.1601358 +Tzung-Her Chen,A new protocol of wide use for e-mail with perfect forward secrecy.,2010,11,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc11.html#ChenW10,https://doi.org/10.1631/jzus.A0910126 +Miguel Oliver,Multi-camera systems for rehabilitation therapies: a study of the precision of Microsoft Kinect sensors.,2016,17,Frontiers of IT and EE,4,db/journals/jzusc/jzusc17.html#OliverMMGF16,https://doi.org/10.1631/FITEE.1500347 +Yin Zhao,An analysis in metal barcode label design for reference.,2016,17,Frontiers of IT and EE,2,db/journals/jzusc/jzusc17.html#ZhaoXZ16,https://doi.org/10.1631/FITEE.1500212 +Jian-guang Shi,Design and analysis of an underwater inductive coupling power transfer system for autonomous underwater vehicle docking applications.,2014,15,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc15.html#ShiLY14,https://doi.org/10.1631/jzus.C1300171 +Chao Li 0012,A methodology for measuring the preservation durability of digital formats.,2010,11,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc11.html#LiZMWX10,https://doi.org/10.1631/jzus.C1001006 +Xue-mei Hu,Emerging theories and technologies on computational imaging.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#HuWSD17,https://doi.org/10.1631/FITEE.1700211 +Mingjie Feng,Enhancing the performance of futurewireless networks with software-defined networking.,2016,17,Frontiers of IT and EE,7,db/journals/jzusc/jzusc17.html#FengM016,https://doi.org/10.1631/FITEE.1500336 +Wenyan Xiao,Corpus-based research on English word recognition rates in primary school and word selection strategy.,2017,18,Frontiers of IT and EE,3,db/journals/jzusc/jzusc18.html#XiaoWWZZ17,https://doi.org/10.1631/FITEE.1601118 +Da-peng Tan,An embedded lightweight GUI component library and ergonomics optimization method for industry process monitoring.,2018,19,Frontiers of IT and EE,5,db/journals/jzusc/jzusc19.html#TanCBZ18,https://doi.org/10.1631/FITEE.1601660 +Guilin Cai,Game theoretic analysis for the mechanism of moving target defense.,2017,18,Frontiers of IT and EE,12,db/journals/jzusc/jzusc18.html#CaiWX17,https://doi.org/10.1631/FITEE.1601797 +Jing Li,Fast implementation of kernel simplex volume analysis based on modified Cholesky factorization for endmember extraction.,2016,17,Frontiers of IT and EE,3,db/journals/jzusc/jzusc17.html#LiLWZ16,https://doi.org/10.1631/FITEE.1500244 +Wei Chen 0005,Online detection of bursty events and their evolution in news streams.,2010,11,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc11.html#ChenCZWB10,https://doi.org/10.1631/jzus.C0910245 +Tang-tang Guo,Analysis and design of pulse frequency modulation dielectric barrier discharge for low power applications.,2015,16,Frontiers of IT and EE,3,db/journals/jzusc/jzusc16.html#GuoLHZH15,https://doi.org/10.1631/FITEE.1400185 +Yunfei Guo,A modified variable rate particle filter for maneuvering target tracking.,2015,16,Frontiers of IT and EE,11,db/journals/jzusc/jzusc16.html#GuoFPLH15,https://doi.org/10.1631/FITEE.1500149 +Liu Liu 0004,Automatic malware classification and new malware detection using machine learning.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#LiuWYZ17,https://doi.org/10.1631/FITEE.1601325 +Linsen Chen,High-resolution spectral video acquisition.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#ChenYCMB17,https://doi.org/10.1631/FITEE.1700098 +Pejman Mowlaee,Split vector quantization for sinusoidal amplitude and frequency.,2011,12,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc12.html#MowlaeeSS11,https://doi.org/10.1631/jzus.C1000020 +Bai Ying Lei,A multipurpose audio watermarking algorithm with synchronization and encryption.,2012,13,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc13.html#LeiS12,https://doi.org/10.1631/jzus.C1100085 +Li-li Li,Robust synchronization of chaotic systems using slidingmode and feedback control.,2014,15,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc15.html#LiLY14,https://doi.org/10.1631/jzus.C1300266 +Qiang Guo,Principles and applications of high-speed single-pixel imaging technology.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#GuoWCCYX17,https://doi.org/10.1631/FITEE.1601719 +Hong-chao Ma,Intelligent optimization of seam-line finding for orthophoto mosaicking with LiDAR point clouds.,2011,12,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc12.html#MaS11,https://doi.org/10.1631/jzus.C1000235 +Omid Abedi,Mobility assisted spectrum aware routing protocol for cognitive radio ad hoc networks.,2013,14,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc14.html#AbediB13,https://doi.org/10.1631/jzus.C1200334 +Jun Xu,High-precision low-power quartz tuning fork temperature sensor with optimized resonance excitation.,2013,14,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc14.html#XuLDX13,https://doi.org/10.1631/jzus.C12MNT05 +Juan-juan He,A membrane-inspired algorithm with a memory mechanism for knapsack problems.,2013,14,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc14.html#HeXSS13,https://doi.org/10.1631/jzus.C1300005 +Shahab Pourtalebi,Information schema constructs for instantiation and composition of system manifestation features.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#PourtalebiH17,https://doi.org/10.1631/FITEE.1601235 +Alireza Parvizi-Mosaed,Towards a self-adaptive service-oriented methodology based on extended SOMA.,2015,16,Frontiers of IT and EE,1,db/journals/jzusc/jzusc16.html#Parvizi-MosaedMHBN15,https://doi.org/10.1631/FITEE.1400040 +Long-zheng Cai,A new data normalization method for unsupervised anomaly intrusion detection.,2010,11,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc11.html#CaiCKCL10,https://doi.org/10.1631/jzus.C0910625 +Momeng Liu,Quantum security analysis of a lattice-based oblivious transfer protocol.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#LiuKHB17,https://doi.org/10.1631/FITEE.1700039 +Javad Nikoukar,Transmission pricing and recovery of investment costs in the deregulated power system based on optimal circuit prices.,2012,13,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc13.html#NikoukarH12,https://doi.org/10.1631/jzus.C1100076 +Juan M. Corchado,Special issue on distributed computing and artificial intelligence.,2016,17,Frontiers of IT and EE,4,db/journals/jzusc/jzusc17.html#CorchadoWBWL16,https://doi.org/10.1631/FITEE.DCAI2015 +Meng Wang,Accurate two-degree-of-freedom discrete-time current controller design for PMSM using complex vectors.,2018,19,Frontiers of IT and EE,4,db/journals/jzusc/jzusc19.html#WangYZZ18,https://doi.org/10.1631/FITEE.1601390 +Gabriela Magureanu,Validation of static properties in unified modeling language models for cyber physical systems.,2013,14,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc14.html#MagureanuGP13,https://doi.org/10.1631/jzus.C1200263 +Xiao-chuan Sun,Modeling deterministic echo state network with loop reservoir.,2012,13,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc13.html#SunCLCL12,https://doi.org/10.1631/jzus.C1200069 +Imran Ghani,Semantics-oriented approach for information interoperability and governance: towards user-centric enterprise architecture management.,2010,11,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc11.html#GhaniLJJ10,https://doi.org/10.1631/jzus.C0910508 +Jia Lu,An independent but not identically distributed bit error model for heavy-tailed wireless channels.,2013,14,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc14.html#LuYWLD13,https://doi.org/10.1631/jzus.C1200175 +Xiao-hong Mao,Structural visualization of sequential DNA data.,2011,12,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc12.html#MaoFCYFP11,https://doi.org/10.1631/jzus.C1000091 +Aisha Siddiqa,Big data storage technologies: a survey.,2017,18,Frontiers of IT and EE,8,db/journals/jzusc/jzusc18.html#SiddiqaKG17,https://doi.org/10.1631/FITEE.1500441 +Muhammad Kamran,On the role of optimization algorithms in ownership-preserving data mining.,2018,19,Frontiers of IT and EE,2,db/journals/jzusc/jzusc19.html#KamranM18,https://doi.org/10.1631/FITEE.1601479 +Ming-Chen Zhao,Design and derivation of the dual transponder carrier ranging system.,2013,14,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc14.html#ZhaoWJ13,https://doi.org/10.1631/jzus.C1200266 +Jian-qiao Chen,A non-stationary channel model for 5G massive MIMO systems.,2017,18,Frontiers of IT and EE,12,db/journals/jzusc/jzusc18.html#ChenZTH17,https://doi.org/10.1631/FITEE.1700028 +Rong Jiao,Orbit determination using incremental phase and TDOA of X-ray pulsar.,2016,17,Frontiers of IT and EE,6,db/journals/jzusc/jzusc17.html#JiaoX0L16,https://doi.org/10.1631/FITEE.1500365 +Di Xiao,High-payload completely reversible data hiding in encrypted images by an interpolation technique.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#XiaoWXB17,https://doi.org/10.1631/FITEE.1601067 +Rongfeng Zhang,A robust object tracking framework based on a reliable point assignment algorithm.,2017,18,Frontiers of IT and EE,4,db/journals/jzusc/jzusc18.html#ZhangDWSG17,https://doi.org/10.1631/FITEE.1601464 +Qing-long Wang,A quality requirements model and verification approach for system of systems based on description logic.,2017,18,Frontiers of IT and EE,3,db/journals/jzusc/jzusc18.html#WangWZZ17,https://doi.org/10.1631/FITEE.1500309 +Ding Wang 0003,A performance analysis of multi-satellite joint geolocation.,2016,17,Frontiers of IT and EE,12,db/journals/jzusc/jzusc17.html#WangWW16,https://doi.org/10.1631/FITEE.1500285 +Zhengwei Huang,Speech emotion recognition with unsupervised feature learning.,2015,16,Frontiers of IT and EE,5,db/journals/jzusc/jzusc16.html#HuangXM15,https://doi.org/10.1631/FITEE.1400323 +Ming-wei Tang,Resource allocation algorithm with limited feedback for multicast single frequency networks.,2012,13,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc13.html#TangW12,https://doi.org/10.1631/jzus.C1100108 +Jing Liao,Procedural modeling of water caustics and foamy water for cartoon animation.,2011,12,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc12.html#LiaoYJ11,https://doi.org/10.1631/jzus.C1000228 +Bin Shen 0001,Mining item-item and between-set correlated association rules.,2011,12,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc12.html#ShenYXZT11,https://doi.org/10.1631/jzus.C0910717 +Xichuan Zhou,Global influenza surveillance with Laplacian multidimensional scaling.,2016,17,Frontiers of IT and EE,5,db/journals/jzusc/jzusc17.html#ZhouTLHLJLF16,https://doi.org/10.1631/FITEE.1500356 +Young Joon Ahn,A note on circle packing.,2012,13,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc13.html#AhnHR12,https://doi.org/10.1631/jzus.C1200010 +Fang-wen Li,A component-based aircraft instrument rapid modeling tool.,2010,11,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc11.html#LiS10,https://doi.org/10.1631/jzus.C1001010 +Can Wang,Contact-free and pose-invariant hand-biometric-based personal identification system using RGB and depth data.,2014,15,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc15.html#WangLL14,https://doi.org/10.1631/jzus.C1300190 +Jie He,Fine-grained P2P traffic classification by simply counting flows.,2015,16,Frontiers of IT and EE,5,db/journals/jzusc/jzusc16.html#HeYQD15,https://doi.org/10.1631/FITEE.1400267 +Mostafa Hosseinpour,A probabilistic model for assessing the reliability of wind farms in a power system.,2013,14,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc14.html#HosseinpourMH13,https://doi.org/10.1631/jzus.C1200317 +Haojie Zhang,An iterative linear quadratic regulator based trajectory tracking controller for wheeled mobile robot.,2012,13,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc13.html#ZhangGJXC12,https://doi.org/10.1631/jzus.C1100379 +Ozoemena Anthony Ani,Modeling and multiobjective optimization of traction performance for autonomous wheeled mobile robot in rough terrain.,2013,14,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc14.html#AniXSLX13,https://doi.org/10.1631/jzus.C12a0200 +Erfan Shaghaghi,Adaptive green traffic signal controlling using vehicular communication.,2017,18,Frontiers of IT and EE,3,db/journals/jzusc/jzusc18.html#ShaghaghiJNYJ17,https://doi.org/10.1631/FITEE.1500355 +Liefu Ai,High-dimensional indexing technologies for large scale content-based image retrieval: a review.,2013,14,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc14.html#AiYHG13,https://doi.org/10.1631/jzus.CIDE1304 +Kun Jiang,Efficient dynamic pruning on largest scores first (LSF) retrieval.,2016,17,Frontiers of IT and EE,1,db/journals/jzusc/jzusc17.html#JiangY16,https://doi.org/10.1631/FITEE.1500190 +Zhibo Wang,HierTrack: an energy-efficient cluster-based target tracking system forwireless sensor networks.,2013,14,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc14.html#WangWCLLS13,https://doi.org/10.1631/jzus.C1200318 +Zhen-guo Ma,An efficient radix-2 fast Fourier transform processor with ganged butterfly engines on field programmable gate arrays.,2011,12,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc12.html#MaYGW11,https://doi.org/10.1631/jzus.C1000258 +Ali Tofighi,Interconnection and damping assignment and Euler-Lagrange passivity-based control of photovoltaic/battery hybrid power source for stand-alone applications.,2011,12,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc12.html#TofighiK11,https://doi.org/10.1631/jzus.C1000368 +Najmeh Eghbal,Uniform modeling of parameter dependent nonlinear systems.,2012,13,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc13.html#EghbalPK12,https://doi.org/10.1631/jzus.C1200096 +Yi-Kuei Lin,Stochastic computer network with multiple terminals under total accuracy rate.,2013,14,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc14.html#LinH13,https://doi.org/10.1631/jzus.C1200220 +Bo Lu,A virtual network mapping algorithm based on integer programming.,2013,14,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc14.html#LuCCHL13,https://doi.org/10.1631/jzus.C1300120 +Ali Darvish Falehi,Dynamic stability enhancement of interconnected multi-source power systems using hierarchical ANFIS controller-TCSC based on multi-objective PSO.,2017,18,Frontiers of IT and EE,3,db/journals/jzusc/jzusc18.html#FalehiM17,https://doi.org/10.1631/FITEE.1500317 +Xiaoming Gou,Filtering and tracking with trinion-valued adaptive algorithms.,2016,17,Frontiers of IT and EE,8,db/journals/jzusc/jzusc17.html#GouL0X16,https://doi.org/10.1631/FITEE.1601164 +Chen-hua Ma,An authorization model for collaborative access control.,2010,11,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc11.html#MaLQ10,https://doi.org/10.1631/jzus.C0910564 +Saeid Arish,FICA: fuzzy imperialist competitive algorithm.,2014,15,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc15.html#ArishAN14,https://doi.org/10.1631/jzus.C1300088 +Arash Khoshkbar Sadigh,New method for estimating flying capacitor voltages in stacked multicell and flying capacitor multicell converters.,2010,11,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc11.html#SadighGH10,https://doi.org/10.1631/jzus.C0910559 +Cheng Zhao,Joint throughput and transmission range optimization for triple-hop networks with cognitive relay.,2017,18,Frontiers of IT and EE,2,db/journals/jzusc/jzusc18.html#ZhaoWYY17,https://doi.org/10.1631/FITEE.1601414 +Yong Qiao,Detecting P2P bots by mining the regional periodicity.,2013,14,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc14.html#QiaoYHTZ13,https://doi.org/10.1631/jzus.C1300053 +Eneko Osaba,A multi-crossover and adaptive island based population algorithm for solving routing problems.,2013,14,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc14.html#OsabaOCDPZ13,https://doi.org/10.1631/jzus.C1300184 +Chao Wu,A block zero-padding method based on DCFT for L1 parameter estimations in weak signal and high dynamic environments.,2015,16,Frontiers of IT and EE,9,db/journals/jzusc/jzusc16.html#WuXZZ15,https://doi.org/10.1631/FITEE.1500058 +Zhiguo Ding,Embracing non-orthogonalmultiple access in future wireless networks.,2018,19,Frontiers of IT and EE,3,db/journals/jzusc/jzusc19.html#DingXCPP18,https://doi.org/10.1631/FITEE.1800051 +Hao Fang 0001,Coalition formation based on a task-oriented collaborative ability vector.,2017,18,Frontiers of IT and EE,1,db/journals/jzusc/jzusc18.html#FangLCC17,https://doi.org/10.1631/FITEE.1601608 +Xiaoyu Zhang,Application of direct adaptive fuzzy slidingmode control into a class of non-affine discrete nonlinear systems.,2016,17,Frontiers of IT and EE,12,db/journals/jzusc/jzusc17.html#Zhang16,https://doi.org/10.1631/FITEE.1500318 +Yong-yi Shou,Combinatorial auction algorithm for project portfolio selection and scheduling to maximize the net present value.,2010,11,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc11.html#ShouH10,https://doi.org/10.1631/jzus.C0910479 +Peng Xiao,A K self-adaptive SDN controller placement for wide area networks.,2016,17,Frontiers of IT and EE,7,db/journals/jzusc/jzusc17.html#XiaoLGQQY16,https://doi.org/10.1631/FITEE.1500350 +Xu Liu,Analysis of vibration reduction level in an 8/6 switched reluctance machine by active vibration cancellation.,2010,11,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc11.html#LiuPZ10,https://doi.org/10.1631/jzus.C0910697 +Zhichun Wang,Knowledge extraction from Chinese wiki encyclopedias.,2012,13,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc13.html#WangWLP12,https://doi.org/10.1631/jzus.C1101008 +Lan Huang,An improved fruit fly optimization algorithm for solving traveling salesman problem.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#HuangWBW17,https://doi.org/10.1631/FITEE.1601364 +Xiao Hu,Removal of baseline wander from ECG signal based on a statistical weighted moving average filter.,2011,12,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc12.html#HuXZ11,https://doi.org/10.1631/jzus.C1010311 +Yi-zhou He,Modeling correlated samples via sparsematrix Gaussian graphical models.,2013,14,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc14.html#HeCW13,https://doi.org/10.1631/jzus.C1200316 +Liang Dou,A metamodeling approach for pattern specification and management.,2013,14,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc14.html#DouLY13,https://doi.org/10.1631/jzus.C1300040 +Shao-Hu Peng,Void defect detection in ball grid array X-ray images using a new blob filter.,2012,13,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc13.html#PengN12,https://doi.org/10.1631/jzus.C1200065 +Jiang Liu 0010,A new algorithm based on the proximity principle for the virtual network embedding problem.,2011,12,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc12.html#LiuHCL11,https://doi.org/10.1631/jzus.C1100003 +Wei Lu,Design of an enhanced visual odometry by building and matching compressive panoramic landmarks online.,2015,16,Frontiers of IT and EE,2,db/journals/jzusc/jzusc16.html#LuXL15,https://doi.org/10.1631/FITEE.1400139 +Jing Chen,Stochastic gradient algorithm for a dual-rate Box-Jenkins model based on auxiliary model and FIRmode.,2014,15,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc15.html#ChenD14,https://doi.org/10.1631/jzus.C1300072 +Xuguang Zuo,Long-term prediction for hierarchical-B-picture-based coding of video with repeated shots.,2018,19,Frontiers of IT and EE,3,db/journals/jzusc/jzusc19.html#ZuoY18,https://doi.org/10.1631/FITEE.1601552 +Jian-gang Liang,Harmonic suppressed bandpass filter using composite right/left handed transmission line.,2012,13,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc13.html#LiangX12,https://doi.org/10.1631/jzus.C1100386 +Yuan-jun Wang,Multi-affine registration using local polynomial expansion.,2010,11,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc11.html#WangFW10,https://doi.org/10.1631/jzus.C0910658 +Li-Wei Liu,K-nearest neighborhood based integration of time-of-flight cameras and passive stereo for high-accuracy depth maps.,2014,15,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc15.html#LiuLZWL14,https://doi.org/10.1631/jzus.C1300194 +Xin Wang 0035,Building trust networks in the absence of trust relations.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#WangWG17,https://doi.org/10.1631/FITEE.1601341 +Lian Zhou,Optimal multi-degree reduction of C-Bézier surfaces with constraints.,2017,18,Frontiers of IT and EE,12,db/journals/jzusc/jzusc18.html#ZhouLZC17,https://doi.org/10.1631/FITEE.1700458 +Gurmanik Kaur,Using hybrid models to predict blood pressure reactivity to unsupported back based on anthropometric characteristics.,2015,16,Frontiers of IT and EE,6,db/journals/jzusc/jzusc16.html#KaurAJ15,https://doi.org/10.1631/FITEE.1400295 +Peng Chen 0008,Optimized simulated annealing algorithm for thinning and weighting large planar arrays.,2010,11,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc11.html#ChenSZC10,https://doi.org/10.1631/jzus.C0910037 +Jian Bao,A regeneratable dynamic differential evolution algorithm for neural networks with integer weights.,2010,11,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc11.html#BaoCY10,https://doi.org/10.1631/jzus.C1000137 +Jie Chen,A robust optical/inertial data fusion system for motion tracking of the robot manipulator.,2014,15,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc15.html#ChenYHJZ14,https://doi.org/10.1631/jzus.C1300302 +Peng Zhou,Improved direct power control of a grid-connected voltage source converter during network unbalance.,2010,11,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc11.html#ZhouZHZ10,https://doi.org/10.1631/jzus.C0910702 +Zhouzhou He,E-commerce business model mining and prediction.,2015,16,Frontiers of IT and EE,9,db/journals/jzusc/jzusc16.html#HeZCW15,https://doi.org/10.1631/FITEE.1500148 +Zhao-jian Zhang,Deceptive jamming discrimination based on range-angle localization of a frequency diverse array.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#ZhangXST17,https://doi.org/10.1631/FITEE.1601577 +Hong Shao,Face recognition based on subset selection via metric learning on manifold.,2015,16,Frontiers of IT and EE,12,db/journals/jzusc/jzusc16.html#ShaoCZCY15,https://doi.org/10.1631/FITEE.1500085 +Muhammad Tayyab Chaudhry,Thermal-aware relocation of servers in green data centers.,2015,16,Frontiers of IT and EE,2,db/journals/jzusc/jzusc16.html#ChaudhryLHL15,https://doi.org/10.1631/FITEE.1400174 +Haihua Xu,Aniterative approach to Bayes risk decoding and system combination.,2011,12,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc12.html#XuZ11,https://doi.org/10.1631/jzus.C1000045 +Michaelraj Kingston Roberts,An improved low-complexity sum-product decoding algorithm for low-density parity-check codes.,2015,16,Frontiers of IT and EE,6,db/journals/jzusc/jzusc16.html#RobertsJ15,https://doi.org/10.1631/FITEE.1400269 +Gao-qi He,A review of behavior mechanisms and crowd evacuation animation in emergency exercises.,2013,14,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc14.html#HeYCGP13,https://doi.org/10.1631/jzus.CIDE1301 +Yang Liu,Strip-oriented asynchronous prefetching for parallel disk systems.,2012,13,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc13.html#LiuHSCX12,https://doi.org/10.1631/jzus.C1200085 +Deng Chen,Efficient vulnerability detection based on an optimized rule-checking static analysis technique.,2017,18,Frontiers of IT and EE,3,db/journals/jzusc/jzusc18.html#ChenZWWHLQJ17,https://doi.org/10.1631/FITEE.1500379 +Xiaogang Jin 0002,Modeling dual-scale epidemic dynamics on complex networks with reaction diffusion processes.,2014,15,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc15.html#JinM14,https://doi.org/10.1631/jzus.C1300243 +Jian Xu 0002,A 20 and#956*W 95 dB dynamic range 4th-order Delta-Sigma modulator with novel power efficient operational transconductance amplifier and resonator.,2011,12,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc12.html#XuWZS11,https://doi.org/10.1631/jzus.C1000239 +Zhaohui Wu 0001,From Semantic Grid to knowledge service cloud.,2012,13,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc13.html#WuC12,https://doi.org/10.1631/jzus.C1101006 +Pawel Czarnul,Comparison of selected algorithms for scheduling workflow applications with dynamically changing service availability.,2014,15,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc15.html#Czarnul14,https://doi.org/10.1631/jzus.C1300270 +Mohammad Mohajer Tabrizi,Supply chain network design under uncertainty with new insights from contracts.,2014,15,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc15.html#TabriziK14,https://doi.org/10.1631/jzus.C1300279 +Shibiao Xu,Statistical learning based facial animation.,2013,14,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc14.html#XuMMZ13,https://doi.org/10.1631/jzus.CIDE1307 +Jing Wang 0025,A novel confidence estimation method for heterogeneous implicit feedback.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#WangLZTY17,https://doi.org/10.1631/FITEE.1601468 +Xiao-hua Li,An algorithm for identifying symmetric variables based on the order eigenvalue matrix.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#LiS17,https://doi.org/10.1631/FITEE.1601052 +Sepehr Tabrizchi,A novel ternary half adder and multiplier based on carbon nanotube field effect transistors.,2017,18,Frontiers of IT and EE,3,db/journals/jzusc/jzusc18.html#TabrizchiAN17,https://doi.org/10.1631/FITEE.1500366 +Deng Chen,An oversampling approach for mining program specifications.,2018,19,Frontiers of IT and EE,6,db/journals/jzusc/jzusc19.html#ChenZWWLLWZ18,https://doi.org/10.1631/FITEE.1601783 +Lai Teng,A composite optimization method for separation parameters of large-eccentricity pico-satellites.,2018,19,Frontiers of IT and EE,5,db/journals/jzusc/jzusc19.html#TengJ18,https://doi.org/10.1631/FITEE.1700416 +Hüseyin Oktay Erkol,A VHDL application for kinematic equation solutions of multi-degree-of-freedom systems.,2014,15,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc15.html#ErkolD14,https://doi.org/10.1631/jzus.C1400120 +Yang Yang,CCA2 secure biometric identity based encryption with constant-size ciphertext.,2011,12,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc12.html#YangHZS11,https://doi.org/10.1631/jzus.C1000429 +Yi Xie,Probabilistic hypergraph based hash codes for social image search.,2014,15,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc15.html#XieYH14,https://doi.org/10.1631/jzus.C1300268 +Jinsong Su,Topic-aware pivot language approach for statisticalmachine translation.,2014,15,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc15.html#SuSHLWCD14,https://doi.org/10.1631/jzus.C1300208 +Zhen-ming Yuan,A microblog recommendation algorithm based on social tagging and a temporal interest evolution model.,2015,16,Frontiers of IT and EE,7,db/journals/jzusc/jzusc16.html#YuanHSLX15,https://doi.org/10.1631/FITEE.1400368 +Du Wan Cheun,A taxonomic framework for autonomous service management in Service-Oriented Architecture.,2012,13,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc13.html#CheunLK12,https://doi.org/10.1631/jzus.C1100359 +Rui-Rong Wang,Hardware design of a localization system for staff in high-risk manufacturing areas.,2013,14,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc14.html#WangYXWX13,https://doi.org/10.1631/jzus.C1200229 +Farnaz Sabahi,A framework for analysis of extended fuzzy logic.,2014,15,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc15.html#SabahiA14,https://doi.org/10.1631/jzus.C1300217 +Ali Uysal,Real-time condition monitoring and fault diagnosis in switched reluctance motors with Kohonen neural network.,2013,14,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc14.html#UysalB13,https://doi.org/10.1631/jzus.C1300085 +Chao Ma,A highly efficient reconfigurable rotation unit based on an inverse butterfly network.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#MaDLZ17,https://doi.org/10.1631/FITEE.1601265 +Mi Lin,A novel ternary JK flip-flop using the resonant tunneling diode literal circuit.,2012,13,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc13.html#LinS12,https://doi.org/10.1631/jzus.C1200214 +Yongqiang Ma,A novel spiking neural network of receptive field encoding with groups of neurons decision.,2018,19,Frontiers of IT and EE,1,db/journals/jzusc/jzusc19.html#MaWYCZR18,https://doi.org/10.1631/FITEE.1700714 +Bo Li,Maximizing power saving with state transition overhead for multiple mobile subscriber stations in WiMAX.,2016,17,Frontiers of IT and EE,10,db/journals/jzusc/jzusc17.html#LiP16,https://doi.org/10.1631/FITEE.1500314 +Hamid Tabatabaee,Dynamic task scheduling modeling in unstructured heterogeneous multiprocessor systems.,2014,15,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc15.html#TabatabaeeAP14,https://doi.org/10.1631/jzus.C1300204 +Sandeep Sarowa,A novel energy-efficient ICI cancellation technique for bandwidth improvements through cyclic prefix reuse in an OFDM system.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#SarowaSAS17,https://doi.org/10.1631/FITEE.1601333 +Jiong Fu,Enterprise-level business component identification in business architecture integration.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#FuLLL17,https://doi.org/10.1631/FITEE.1601836 +Chao Guo 0003,A virtual 3D interactive painting method for Chinese calligraphy and painting based on real-time force feedback technology.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#GuoHSXY17,https://doi.org/10.1631/FITEE.1601283 +Xin Li,An efficient bi-objective optimization framework for statistical chip-level yield analysis under parameter variations.,2016,17,Frontiers of IT and EE,2,db/journals/jzusc/jzusc17.html#LiSXT16,https://doi.org/10.1631/FITEE.1500168 +Shengkang Yu,Joint entity-relation knowledge embedding via cost-sensitive learning.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#YuZLZ17,https://doi.org/10.1631/FITEE.1601255 +Mahmoud Modaresi,New method to determine optimum impedance of fault current limiters for symmetrical and/or asymmetrical faults in power systems.,2018,19,Frontiers of IT and EE,2,db/journals/jzusc/jzusc19.html#ModaresiL18,https://doi.org/10.1631/FITEE.1601689 +Min Du,Accelerated k-nearest neighbors algorithm based on principal component analysis for text categorization.,2013,14,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc14.html#DuC13,https://doi.org/10.1631/jzus.C1200303 +Yuan-Ko Huang,Designing a location update strategy for free-moving and network-constrained objects with varying velocity.,2014,15,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc15.html#HuangL14,https://doi.org/10.1631/jzus.C1300337 +Wen-yin Ni,Predicting overlapping protein complexes in weighted interactome networks.,2013,14,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc14.html#NiXZH13,https://doi.org/10.1631/jzus.C13b0097 +Nabiollah Ramezani,Calculating the transient behavior of grounding systems using inverse Laplace transform.,2011,12,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc12.html#RamezaniS11,https://doi.org/10.1631/jzus.C0910777 +Yan Deng,Application of artificial neural network for switching loss modeling in power IGBTs.,2010,11,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc11.html#DengHZXSJ10,https://doi.org/10.1631/jzus.C0910442 +Ming Yang,Scientific articles recommendation with topic regression and relational matrix factorization.,2014,15,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc15.html#YangLZ14,https://doi.org/10.1631/jzus.C1300374 +Bo Yu 0008,A survey of malware behavior description and analysis.,2018,19,Frontiers of IT and EE,5,db/journals/jzusc/jzusc19.html#YuFYTL18,https://doi.org/10.1631/FITEE.1601745 +Da-hui Gao,Distributed fault-tolerant strategy for electric swing system of hybrid excavators under communication errors.,2017,18,Frontiers of IT and EE,7,db/journals/jzusc/jzusc18.html#GaoWL17,https://doi.org/10.1631/FITEE.1601021 +Sara Haghighatnia,Enlarging the guaranteed region of attraction in nonlinear systems with bounded parametric uncertainty.,2013,14,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc14.html#HaghighatniaM13,https://doi.org/10.1631/jzus.C1200213 +Gwang-Min Choe,Anadvanced integrated framework for moving object tracking.,2014,15,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc15.html#ChoeWLCSP14,https://doi.org/10.1631/jzus.C1400006 +Yuan-hong Shen,A self-optimizing QoS-aware service composition approach in a context sensitive environment.,2011,12,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc12.html#ShenY11,https://doi.org/10.1631/jzus.C1000031 +Junhong Zhao,Exploiting articulatory features for pitch accent detection.,2013,14,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc14.html#ZhaoXZYLX13,https://doi.org/10.1631/jzus.C1300104 +Ozlem Karaca,A cross-layer fault tolerance management module for wireless sensor networks.,2012,13,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc13.html#KaracaS12,https://doi.org/10.1631/jzus.C1200029 +Bei Zhang,High-precision time domain reactive power measurement in the presence of interharmonics.,2011,12,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc12.html#ZhangWS11,https://doi.org/10.1631/jzus.C1000145 +Jin Wang,Adaptive robust beamformer formulti-pair two-way relay networks with imperfect channel state information.,2016,17,Frontiers of IT and EE,3,db/journals/jzusc/jzusc17.html#WangSCCCL16,https://doi.org/10.1631/FITEE.1500134 +Muhammad Asif Zahoor Raja,Bio-inspired heuristics hybrid with interior-point method for active noise control systems without identification of secondary path.,2018,19,Frontiers of IT and EE,2,db/journals/jzusc/jzusc19.html#RajaACK18,https://doi.org/10.1631/FITEE.1601028 +Sheng-kai Yang,Preservation of local linearity by neighborhood subspace scaling for solving the pre-image problem.,2014,15,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc15.html#YangMS14,https://doi.org/10.1631/jzus.C1300248 +Mark Greaves,Semantics and the crowd.,2012,13,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc13.html#Greaves12,https://doi.org/10.1631/jzus.C1101003 +Xiao-dong Tan,Fault evolution-test dependency modeling for mechanical systems.,2015,16,Frontiers of IT and EE,10,db/journals/jzusc/jzusc16.html#TanLLLQ15,https://doi.org/10.1631/FITEE.1500011 +Ling Zhou,A fractional-order multifunctional n-step honeycomb RLC circuit network.,2017,18,Frontiers of IT and EE,8,db/journals/jzusc/jzusc18.html#ZhouTZ17,https://doi.org/10.1631/FITEE.1601560 +Hongchao Hu,A forwarding graph embedding algorithm exploiting regional topology information.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#HuZMW17,https://doi.org/10.1631/FITEE.1601404 +Jianhua Dai,Attribute reduction in interval-valued information systems based on information entropies.,2016,17,Frontiers of IT and EE,9,db/journals/jzusc/jzusc17.html#DaiHZHHS16,https://doi.org/10.1631/FITEE.1500447 +Zhenhua Yuan,Correlated channel model-based secure communications in dual-hop wireless communication networks.,2017,18,Frontiers of IT and EE,6,db/journals/jzusc/jzusc18.html#YuanCCLYJ17,https://doi.org/10.1631/FITEE.1700023 +Zhaohui Wu 0001,Brain-machine interface (BMI) and cyborg intelligence.,2014,15,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc15.html#Wu14,https://doi.org/10.1631/jzus.C1400325 +Maoqun Yao,Design of a novel RTD-based three-variable universal logic gate.,2015,16,Frontiers of IT and EE,8,db/journals/jzusc/jzusc16.html#YaoYXS15,https://doi.org/10.1631/FITEE.1500102 +Zhiyong Feng,Joint user association and resource partition for downlink-uplink decoupling inmulti-tier HetNets.,2017,18,Frontiers of IT and EE,6,db/journals/jzusc/jzusc18.html#FengFG17,https://doi.org/10.1631/FITEE.1700031 +Yu Su,A hybrid brain-computer interface control strategy in a virtual environment.,2011,12,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc12.html#SuQLWYLZZC11,https://doi.org/10.1631/jzus.C1000208 +Riichiro Mizoguchi,On scalability of the Semantic Web.,2012,13,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc13.html#Mizoguchi12,https://doi.org/10.1631/jzus.C1101005 +Jing Fan,A GPU-based multi-resolution algorithm for simulation of seed dispersal.,2012,13,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc13.html#FanJGT12,https://doi.org/10.1631/jzus.C1200147 +Yonghong Tian 0001,Towards human-like and transhuman perception in AI 2.0: a review.,2017,18,Frontiers of IT and EE,1,db/journals/jzusc/jzusc18.html#TianCXLDCXCWHHH17,https://doi.org/10.1631/FITEE.1601804 +Mofei Song,Synthesis of 3D models by Petri net.,2013,14,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc14.html#SongSZZ13,https://doi.org/10.1631/jzus.CIDE1305 +Zhonglin Ye,Syntactic word embedding based on dependency syntax and polysemous analysis.,2018,19,Frontiers of IT and EE,4,db/journals/jzusc/jzusc19.html#YeZ18,https://doi.org/10.1631/FITEE.1601846 +Mian Cheng,Real-time pre-processing system with hardware accelerator for mobile core networks.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#ChengSX17,https://doi.org/10.1631/FITEE.1700507 +Dexuan Zou,Volterra filter modeling of a nonlinear discrete-time system based on a ranked differential evolution algorithm.,2014,15,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc15.html#ZouGL14,https://doi.org/10.1631/jzus.C1300350 +Jingfa Liu,Multi-objective layout optimization of a satellite module using the Wang-Landau sampling method with local search.,2016,17,Frontiers of IT and EE,6,db/journals/jzusc/jzusc17.html#LiuHLXLH16,https://doi.org/10.1631/FITEE.1500292 +Li-chun Yang,Speech enhancement with a GSC-like structure employing sparse coding.,2014,15,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc15.html#YangQ14,https://doi.org/10.1631/jzus.C1400085 +Shenyi Chen,Modified reward function on abstract features in inverse reinforcement learning.,2010,11,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc11.html#ChenQFJZ10,https://doi.org/10.1631/jzus.C0910486 +Zhilu Yuan,Simulation model of self-organizing pedestrian movement considering following behavior.,2017,18,Frontiers of IT and EE,8,db/journals/jzusc/jzusc18.html#YuanJLZFT17,https://doi.org/10.1631/FITEE.1601592 +Hwa Jen Yap,A generic approach of integrating 3D models into virtual manufacturing.,2012,13,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc13.html#YapTD12,https://doi.org/10.1631/jzus.C11a0077 +Xue Liu,A pipelined architecture for normal I/O order FFT.,2011,12,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc12.html#LiuYW11,https://doi.org/10.1631/jzus.C1000234 +Li Weigang,Querying dynamic communities in online social networks.,2014,15,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc15.html#WeigangSZMU14,https://doi.org/10.1631/jzus.C1300281 +Xinyu Duan,Temporality-enhanced knowledgememory network for factoid question answering.,2018,19,Frontiers of IT and EE,1,db/journals/jzusc/jzusc19.html#DuanTZZZXZW18,https://doi.org/10.1631/FITEE.1700788 +Hamid Reza Boveiri,An incremental ant colony optimization based approach to task assignment to processors for multiprocessor scheduling.,2017,18,Frontiers of IT and EE,4,db/journals/jzusc/jzusc18.html#Boveiri17,https://doi.org/10.1631/FITEE.1500394 +Rong Zhu,Learning a hierarchical image manifold for Web image classification.,2012,13,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc13.html#ZhuYYX12,https://doi.org/10.1631/jzus.C1200032 +Juan Yu 0002,AGCD: a robust periodicity analysis method based on approximate greatest common divisor.,2015,16,Frontiers of IT and EE,6,db/journals/jzusc/jzusc16.html#YuL15,https://doi.org/10.1631/FITEE.1400345 +De-Xuan Zou,A modified simulated annealing algorithm and an excessive area model for floorplanning using fixed-outline constraints.,2016,17,Frontiers of IT and EE,11,db/journals/jzusc/jzusc17.html#ZouWPQ16,https://doi.org/10.1631/FITEE.1500386 +Hehao Niu,Joint cooperative beamforming and artificial noise design for secure AF relay networks with energy-harvesting eavesdroppers.,2017,18,Frontiers of IT and EE,6,db/journals/jzusc/jzusc18.html#NiuZGHL17,https://doi.org/10.1631/FITEE.1601832 +Hong Hong,Detection of time varying pitch in tonal languages: an approach based on ensemble empirical mode decomposition.,2012,13,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc13.html#HongZSGW12,https://doi.org/10.1631/jzus.C1100092 +Michael G. Danikas,Partial discharge diagnostics in wind turbine insulation.,2011,12,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc12.html#DanikasK11,https://doi.org/10.1631/jzus.C1000256 +De-jun Li,IEEE 1588 based time synchronization system for a seafloor observatory network.,2013,14,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc14.html#LiWYJC13,https://doi.org/10.1631/jzus.C1300084 +Fan Yang,Cooperative transport strategy for formation control of multiple mobile robots.,2010,11,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc11.html#YangLL10,https://doi.org/10.1631/jzus.C1000136 +Liang-fang Qian,A slotted floor acquisition multiple access based MAC protocol for underwater acoustic networks with RTS competition.,2015,16,Frontiers of IT and EE,3,db/journals/jzusc/jzusc16.html#QianZL15,https://doi.org/10.1631/FITEE.1400187 +Congdao Han,An adaptive fast search algorithm for block motion estimation in H.264.,2010,11,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc11.html#HanLX10,https://doi.org/10.1631/jzus.C0910561 +Xin Ma 0001,State-chain sequential feedback reinforcement learning for path planning of autonomous mobile robots.,2013,14,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc14.html#MaXSDL13,https://doi.org/10.1631/jzus.C1200226 +Leiming Zhang,Controller area network node reliability assessment based on observable node information.,2017,18,Frontiers of IT and EE,5,db/journals/jzusc/jzusc18.html#ZhangTL17,https://doi.org/10.1631/FITEE.1601029 +Parteek Kumar,Punjabi DeConverter for generating Punjabi from Universal Networking Language.,2013,14,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc14.html#KumarS13,https://doi.org/10.1631/jzus.C1200061 +Rasha Shoitan,Improving the reconstruction efficiency of sparsity adaptive matching pursuit based on the Wilkinson matrix.,2018,19,Frontiers of IT and EE,4,db/journals/jzusc/jzusc19.html#ShoitanNIT18,https://doi.org/10.1631/FITEE.1601588 +Yaojie Lu,Cross-lingual implicit discourse relation recognition with co-training.,2018,19,Frontiers of IT and EE,5,db/journals/jzusc/jzusc19.html#LuXWXWS18,https://doi.org/10.1631/FITEE.1601865 +Rashid Naseem,Improved binary similarity measures for software modularization.,2017,18,Frontiers of IT and EE,8,db/journals/jzusc/jzusc18.html#NaseemDMLSS17,https://doi.org/10.1631/FITEE.1500373 +Hong Yin,Symbolic representation based on trend features for knowledge discovery in long time series.,2015,16,Frontiers of IT and EE,9,db/journals/jzusc/jzusc16.html#YinYZMZ15,https://doi.org/10.1631/FITEE.1400376 +Jin Hu,Flexible resonant tank for a combined converter to achieve an HPS and LED compatible driver.,2015,16,Frontiers of IT and EE,8,db/journals/jzusc/jzusc16.html#HuLLZ15,https://doi.org/10.1631/FITEE.1500054 +Guoqiang Zeng,Modified extremal optimization for the hard maximum satisfiability problem.,2011,12,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc12.html#ZengLM11,https://doi.org/10.1631/jzus.C1000313 +Kai Zhu,Label fusion for segmentation via patch based on local weighted voting.,2017,18,Frontiers of IT and EE,5,db/journals/jzusc/jzusc18.html#ZhuLZZ17,https://doi.org/10.1631/FITEE.1500457 +Lu Chen,Hybrid full-/half-duplex cellular networks: user admission and power control.,2018,19,Frontiers of IT and EE,3,db/journals/jzusc/jzusc19.html#ChenWZY18,https://doi.org/10.1631/FITEE.1700027 +Feng Wei,Suboptimal network coding subgraph algorithms for 5G minimum-cost multicast networks.,2018,19,Frontiers of IT and EE,5,db/journals/jzusc/jzusc19.html#WeiZ18,https://doi.org/10.1631/FITEE.1700020 +Yu-shi Zhu,A space-saving steering method for underwater gliders in lake monitoring.,2017,18,Frontiers of IT and EE,4,db/journals/jzusc/jzusc18.html#ZhuYWLX17,https://doi.org/10.1631/FITEE.1500399 +Di-qing Ying,Residual intensity modulation in resonator fiber optic gyros with sinusoidal wave phase modulation.,2014,15,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc15.html#YingLMJ14,https://doi.org/10.1631/jzus.C1400036 +Cheng Jin,A new scheme of coded ultrasound using Golay codes.,2010,11,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc11.html#JinCQW10,https://doi.org/10.1631/jzus.C0910353 +Xiaobo Li,A multi-paradigm decision modeling framework for combat system effectiveness measurement based on domain-specific modeling.,2013,14,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc14.html#LiLVWL13,https://doi.org/10.1631/jzus.C1200374 +Biligsaikhan Batjargal,Providing universal access to Japanese humanities digital libraries: an approach to federated searching system using automatic metadata mapping.,2010,11,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc11.html#BatjargalKM10,https://doi.org/10.1631/jzus.C1001001 +Seyed Mehdi Rakhtala,Proton exchange membrane fuel cell voltage-tracking using artificial neural networks.,2011,12,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc12.html#RakhtalaGN11,https://doi.org/10.1631/jzus.C0910683 +Zhimin Han,Distributed coordination in multi-agent systems: a graph Laplacian perspective.,2015,16,Frontiers of IT and EE,6,db/journals/jzusc/jzusc16.html#HanLFC15,https://doi.org/10.1631/FITEE.1500118 +Xiao Chen,A driving pulse edge modulation technique and its complex programming logic devices implementation.,2015,16,Frontiers of IT and EE,12,db/journals/jzusc/jzusc16.html#ChenQGC15,https://doi.org/10.1631/FITEE.1500111 +Zhi-qiang Luo,Numerical solution of potential flow equations with a predictor-corrector finite difference method.,2012,13,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc13.html#Luo12,https://doi.org/10.1631/jzus.C1100313 +Jia-ming Zhang,Nonlinear path-following method for fixed-wing unmanned aerial vehicles.,2013,14,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc14.html#ZhangLCL13,https://doi.org/10.1631/jzus.C1200195 +Shanzhi Chen,A tutorial on 5G and the progress in China.,2018,19,Frontiers of IT and EE,3,db/journals/jzusc/jzusc19.html#ChenK18,https://doi.org/10.1631/FITEE.1800070 +Mehdi Fallah Kazemi,Level-direction decomposition analysis with a focus on image watermarking framework.,2016,17,Frontiers of IT and EE,11,db/journals/jzusc/jzusc17.html#KazemiPM16,https://doi.org/10.1631/FITEE.1500165 +Oscar Déniz,Computer vision based eyewear selector.,2010,11,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc11.html#DenizSLAHB10,https://doi.org/10.1631/jzus.C0910377 +Na-e Zheng,Sub-channel shared resource allocation for multi-user distributed MIMO-OFDM systems.,2014,15,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc15.html#ZhengZHW14,https://doi.org/10.1631/jzus.C1400049 +Adel Khosravi,Autonomous fault-diagnosis and decision-making algorithm for determining faulty nodes in distributed wireless networks.,2016,17,Frontiers of IT and EE,9,db/journals/jzusc/jzusc17.html#KhosraviK16,https://doi.org/10.1631/FITEE.1500176 +Xinzheng Xu,Optimizing radial basis function neural network based on rough sets and affinity propagation clustering algorithm.,2012,13,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc13.html#XuDSZ12,https://doi.org/10.1631/jzus.C1100176 +Jian Xu,Quantized innovations Kalman filter: stability and modificationwith scaling quantization.,2012,13,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc13.html#XuLX12,https://doi.org/10.1631/jzus.C1100161 +A-Ram Choi,Controlling the contact levels of details for fast and precise haptic collision detection.,2017,18,Frontiers of IT and EE,8,db/journals/jzusc/jzusc18.html#ChoiKS17,https://doi.org/10.1631/FITEE.1500498 +Jeff Z. Pan,Local closed world reasoning: a personal view on current status and trends.,2012,13,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc13.html#PanR12,https://doi.org/10.1631/jzus.C1101004 +Mao-qun Yao,Emitter-couple logic circuit design based on the threshold-arithmetic algebraic system.,2013,14,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc14.html#YaoZ13,https://doi.org/10.1631/jzus.C1300069 +João Carneiro,Intelligent negotiation model for ubiquitous group decision scenarios.,2016,17,Frontiers of IT and EE,4,db/journals/jzusc/jzusc17.html#CarneiroMMN16,https://doi.org/10.1631/FITEE.1500344 +Yi-Han Xu,An enhanced framework for providing multimedia broadcast/multicast service over heterogeneous networks.,2014,15,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc15.html#XuCTI14,https://doi.org/10.1631/jzus.C1300205 +Li Chen,Mismatched feature detection with finer granularity for emotional speaker recognition.,2014,15,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc15.html#ChenYW14,https://doi.org/10.1631/jzus.C1400002 +Xing-zheng Li,Power control for two-way amplify-and-forward relaying over Rayleigh fading channels.,2011,12,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc12.html#LiLXDL11,https://doi.org/10.1631/jzus.C1000179 +Changqing Xun,Efficient fine-grained shared buffer management for multiple OpenCL devices.,2013,14,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc14.html#XunCLZ13,https://doi.org/10.1631/jzus.C1300078 +Xiao-lei Ma,Transit smart card data mining for passenger origin information extraction.,2012,13,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc13.html#MaWCL12,https://doi.org/10.1631/jzus.C12a0049 +Bo Zhu,An efficient projection defocus algorithm based on multi-scale convolution kernel templates.,2013,14,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc14.html#ZhuXSZ13,https://doi.org/10.1631/jzus.C1300080 +Qirong Mao,Speaker-independent speech emotion recognition by fusion of functional and accompanying paralanguage features.,2013,14,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc14.html#MaoZHZ13,https://doi.org/10.1631/jzus.CIDE1310 +Fenghe Wang,Efficient hierarchical identity based encryption scheme in the standard model over lattices.,2016,17,Frontiers of IT and EE,8,db/journals/jzusc/jzusc17.html#WangWL16,https://doi.org/10.1631/FITEE.1500219 +Peng Liu,Optimized design of LED freeform lens for uniform circular illumination.,2012,13,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc13.html#LiuWZLL12,https://doi.org/10.1631/jzus.C12a0116 +Gang Xiong,A virtual service placement approach based on improved quantum genetic algorithm.,2016,17,Frontiers of IT and EE,7,db/journals/jzusc/jzusc17.html#XiongHTLLZ16,https://doi.org/10.1631/FITEE.1500494 +Yong-ping Du,Using heterogeneous patent network features to rank and discover influential inventors.,2015,16,Frontiers of IT and EE,7,db/journals/jzusc/jzusc16.html#DuYL15,https://doi.org/10.1631/FITEE.1400394 +Li-sheng Chen,Novel serpentine structure design method considering confidence level and estimation precision.,2013,14,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc14.html#ChenLZJY13,https://doi.org/10.1631/jzus.C1200297 +Yang Ren,Optimization of the resonant frequency servo loop technique in the resonator micro optic gyro.,2011,12,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc12.html#RenJCM11,https://doi.org/10.1631/jzus.C1000441 +Che-Wei Lin,A power-aware code-compression design for RISC/VLIW architecture.,2011,12,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc12.html#LinLW11,https://doi.org/10.1631/jzus.C1000321 +Reza Sookhtsaraei,A locality-based replication manager for data cloud.,2016,17,Frontiers of IT and EE,12,db/journals/jzusc/jzusc17.html#SookhtsaraeiAGF16,https://doi.org/10.1631/FITEE.1500391 +Jianxin Zhu,New computational treatment of optical wave propagation in lossy waveguides.,2015,16,Frontiers of IT and EE,8,db/journals/jzusc/jzusc16.html#ZhuW15,https://doi.org/10.1631/FITEE.1400406 +Neda Kazemy Najafabadi,Design of MMIC oscillators using GaAs 0.2 and#956*m PHEMT technology.,2012,13,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc13.html#NajafabadiND12,https://doi.org/10.1631/jzus.C1200013 +Wen-de Dong,Image stabilization with support vector machine.,2011,12,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc12.html#DongCXFL11,https://doi.org/10.1631/jzus.C1000236 +Gang Xu 0001,Quasi-angle-preserving mesh deformation using the least-squares approach.,2014,15,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc15.html#XuDGHWW14,https://doi.org/10.1631/jzus.C1400103 +Xin Guan,An extended processing scheme for coherent integration and parameter estimation based on matched filtering in passive radar.,2014,15,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc15.html#GuanZHD14,https://doi.org/10.1631/jzus.C1400074 +Ignacio Marín 0002,Generating native user interfaces for multiple devices by means of model transformation.,2015,16,Frontiers of IT and EE,12,db/journals/jzusc/jzusc16.html#0003OPR15,https://doi.org/10.1631/FITEE.1500083 +Ming Tang,Self-sensing active magnetic bearing using real-time duty cycle.,2013,14,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc14.html#TangZY13,https://doi.org/10.1631/jzus.C1300023 +Jian-ping Qiu,A multimode digital controller IC for flyback converter with high accuracy primary-side feedback.,2013,14,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc14.html#QiuHW13,https://doi.org/10.1631/jzus.C1200344 +Yahong Han,Multiple hypergraph ranking for video concept detection.,2010,11,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc11.html#HanSWW10,https://doi.org/10.1631/jzus.C0910453 +Ahmet Sayar,Kd-tree and quad-tree decompositions for declustering of 2D range queries over uncertain space.,2015,16,Frontiers of IT and EE,2,db/journals/jzusc/jzusc16.html#SayarEO15,https://doi.org/10.1631/FITEE.1400165 +Roger Bostelman,Cross-industry standard test method developments: from manufacturing to wearable robots.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#BostelmanMF17,https://doi.org/10.1631/FITEE.1601316 +Yi-peng Song,Comparison of resonant current regulators for DFIG during grid voltage distortion.,2013,14,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc14.html#SongN13,https://doi.org/10.1631/jzus.C1300125 +Yang Chen 0005,Gradient-based compressive image fusion.,2015,16,Frontiers of IT and EE,3,db/journals/jzusc/jzusc16.html#ChenQ15,https://doi.org/10.1631/FITEE.1400217 +Chunlin Zhou,Dynamic modeling of a wave glider.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#ZhouWZLX17,https://doi.org/10.1631/FITEE.1700294 +Shuang-Quan Wen,Grasp evaluation and contact points planning for polyhedral objects using a ray-shooting algorithm.,2012,13,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc13.html#WenW12,https://doi.org/10.1631/jzus.C1100151 +Yong Ding 0003,Current oscillations and low-frequency noises in GaAs MESFET channels with sidegating bias.,2011,12,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc12.html#DingLY11,https://doi.org/10.1631/jzus.C1000312 +Peihong Wang,Resin-bonded NdFeB micromagnets for integration into electromagnetic vibration energy harvesters.,2013,14,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc14.html#WangTYD13,https://doi.org/10.1631/jzus.C12MNT08 +Bahador Fani,Waveform feature monitoring scheme for transformer differential protection.,2011,12,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc12.html#FaniGA11,https://doi.org/10.1631/jzus.C1010042 +Nu Wen,Adaptive contourlet-wavelet iterative shrinkage/thresholding for remote sensing image restoration.,2014,15,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc15.html#WenYZC14,https://doi.org/10.1631/jzus.C1300377 +Osama A. Khashan,Performance study of selective encryption in comparison to full encryption for still visual images.,2014,15,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc15.html#KhashanZS14,https://doi.org/10.1631/jzus.C1300262 +Rui-rui Liu,Passive source localization using importance sampling based on TOA and FOA measurements.,2017,18,Frontiers of IT and EE,8,db/journals/jzusc/jzusc18.html#LiuWYWW17,https://doi.org/10.1631/FITEE.1601657 +Wen-yi Wang,Is playing-as-downloading feasible in an eMule P2P file sharing system?,2010,11,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc11.html#WangC10,https://doi.org/10.1631/jzus.C0910408 +Xiong-bin Peng,Quantitative feedback controller design and test for an electro-hydraulic position control system in a large-scale reflecting telescope.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#PengGYLWL17,https://doi.org/10.1631/FITEE.1601104 +Mohammad Mosleh,A robust intelligent audio watermarking scheme using support vector machine.,2016,17,Frontiers of IT and EE,12,db/journals/jzusc/jzusc17.html#MoslehLKMH16,https://doi.org/10.1631/FITEE.1500297 +Karima Rabah,Bifurcation-based fractional-order PI and#955* D and#956* controller design approach for nonlinear chaotic systems.,2018,19,Frontiers of IT and EE,2,db/journals/jzusc/jzusc19.html#RabahLL18,https://doi.org/10.1631/FITEE.1601543 +Ze-song Li,Design considerations for electromagnetic couplers in contactless power transmission systems for deep-sea applications.,2010,11,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc11.html#LiLLC10,https://doi.org/10.1631/jzus.C0910711 +Heung-Yeung Shum,From Eliza to XiaoIce: challenges and opportunities with social chatbots.,2018,19,Frontiers of IT and EE,1,db/journals/jzusc/jzusc19.html#ShumHL18,https://doi.org/10.1631/FITEE.1700826 +Jiying Xiang,Non-ideal space division multiple access and its application.,2018,19,Frontiers of IT and EE,3,db/journals/jzusc/jzusc19.html#Xiang18,https://doi.org/10.1631/FITEE.1700827 +Jianzhi Li,Indoor massive multiple-input multiple-output channel characterization and performance evaluation.,2017,18,Frontiers of IT and EE,6,db/journals/jzusc/jzusc18.html#LiAHWYZGHZZL17,https://doi.org/10.1631/FITEE.1700021 +Zhenkun Zhou,Javelin: an access and manipulation interface for large displays.,2010,11,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc11.html#ZhouWZXZ10,https://doi.org/10.1631/jzus.C1001008 +Amin Jajarmi,Solving infinite horizon nonlinear optimal control problems using an extended modal series method.,2011,12,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc12.html#JajarmiPEK11,https://doi.org/10.1631/jzus.C1000325 +Wei Li 0022,Crowd intelligence in AI 2.0 era.,2017,18,Frontiers of IT and EE,1,db/journals/jzusc/jzusc18.html#LiWWCCZD17,https://doi.org/10.1631/FITEE.1601859 +Hui-fang Yu,Low-computation certificateless hybrid signcryption scheme.,2017,18,Frontiers of IT and EE,7,db/journals/jzusc/jzusc18.html#YuY17,https://doi.org/10.1631/FITEE.1601054 +Wen-yan Cui,An efficient lossy link localization approach for wireless sensor networks.,2017,18,Frontiers of IT and EE,5,db/journals/jzusc/jzusc18.html#CuiMYYZ17,https://doi.org/10.1631/FITEE.1601247 +Nan Luo,Feasibility analysis for attitude estimation based on pulsar polarization measurement.,2013,14,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc14.html#LuoXZX13,https://doi.org/10.1631/jzus.C1200291 +Yan-xia Jin,Fast and accurate kernel density approximation using a divide-and-conquer approach.,2010,11,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc11.html#JinZKZ10,https://doi.org/10.1631/jzus.C0910668 +Wan-qiang Shen,Triangular domain extension of linear Bernstein-like trigonometric polynomial basis.,2010,11,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc11.html#ShenW10,https://doi.org/10.1631/jzus.C0910347 +Ayaz Isazadeh,An analytical model for source code distributability verification.,2014,15,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc15.html#IsazadehKEI14,https://doi.org/10.1631/jzus.C1300066 +Jianqiang Han,Microfabrication technology for non-coplanar resonant beams and crab-leg supporting beams of dual-axis bulk micromachined resonant accelerometers.,2013,14,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc14.html#HanFLLL13,https://doi.org/10.1631/jzus.C1200251 +Kedi Wu,Serial decoding of rateless code over noisy channels.,2011,12,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc12.html#WuZCYQ11,https://doi.org/10.1631/jzus.C1000340 +Yuan-hui Zhang,A tracking and predicting scheme for ping pong robot.,2011,12,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc12.html#ZhangWYZ11,https://doi.org/10.1631/jzus.C0910528 +Jie Ding,Consensus-reaching methods for hesitant fuzzy multiple criteria group decision making with hesitant fuzzy decision making matrices.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#DingXL17,https://doi.org/10.1631/FITEE.1601546 +Zhaoyun Ding,Measuring the spreadability of users in microblogs.,2013,14,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc14.html#DingJZHHZ13,https://doi.org/10.1631/jzus.CIIP1302 +Chu He,A statistical distribution texton feature for synthetic aperture radar image classification.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#HeYTYC17,https://doi.org/10.1631/FITEE.1601051 +Qiang Meng,Dynamic modeling of a 6-degree-of-freedom Stewart platform driven by a permanent magnet synchronous motor.,2010,11,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc11.html#MengZHSH10,https://doi.org/10.1631/jzus.C0910714 +Ji-nan Leng,A novel 3780-point FFT processor scheme for the time domain synchronous OFDM system.,2011,12,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc12.html#LengXCW11,https://doi.org/10.1631/jzus.C1100071 +Xiao-Ying Wang,GaAs pHEMT multi-band/multi-mode SP9T switch for quad-band GSM and UMTS handsets applications.,2011,12,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc12.html#WangGPS11,https://doi.org/10.1631/jzus.C1000178 +Bin Chen 0003,Activity-based simulation using DEVS: increasing performance by an activity model in parallel DEVS simulation.,2014,15,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc15.html#ChenZLV14,https://doi.org/10.1631/jzus.C1300121 +Yi-xiong Zhang,Video coding using geometry based block partitioning and reordering discrete cosine transform.,2012,13,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc13.html#ZhangSW12,https://doi.org/10.1631/jzus.C1100218 +Xun Liu,Detection of engineering vehicles in high-resolution monitoring images.,2015,16,Frontiers of IT and EE,5,db/journals/jzusc/jzusc16.html#LiuZZWLY15,https://doi.org/10.1631/FITEE.1500026 +Jawad Aslam,Design of a hybrid magnetomotive force electromechanical valve actuator.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#AslamLJ17,https://doi.org/10.1631/FITEE.1601215 +Geliang Yang,Ka-band ultra low voltage miniature sub-harmonic resistive mixer with a new broadside coupled Marchand balun in 0.18-λ6*m CMOS technology.,2013,14,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc14.html#YangWLLLL13,https://doi.org/10.1631/jzus.C1200369 +Wei Zhang,Personalized topic modeling for recommending user-generated content.,2017,18,Frontiers of IT and EE,5,db/journals/jzusc/jzusc18.html#ZhangZYLCL17,https://doi.org/10.1631/FITEE.1500402 +Yue-neng Yang,Trajectory tracking for an autonomous airship using fuzzy adaptive sliding mode control.,2012,13,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc13.html#YangWZ12,https://doi.org/10.1631/jzus.C1100371 +Dafang Zhang,A splitting-after-merging approach to multi-FIB compression and fast refactoring in virtual routers.,2016,17,Frontiers of IT and EE,12,db/journals/jzusc/jzusc17.html#ZhangCLXS16,https://doi.org/10.1631/FITEE.1500499 +Xiao-hu Ma,A fast classification scheme and its application to face recognition.,2013,14,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc14.html#MaTZ13,https://doi.org/10.1631/jzus.CIDE1309 +Jadav Chandra Das,Reversible binary subtractor design using quantum dot-cellular automata.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#DasD17,https://doi.org/10.1631/FITEE.1600999 +Guoliang Han,A scalable and efficient IPv4 address sharing approach in IPv6 transition scenarios.,2015,16,Frontiers of IT and EE,8,db/journals/jzusc/jzusc16.html#HanBL15,https://doi.org/10.1631/FITEE.1500022 +Ying Cai,Multiclass classification based on a deep convolutional network for head pose estimation.,2015,16,Frontiers of IT and EE,11,db/journals/jzusc/jzusc16.html#CaiYL15,https://doi.org/10.1631/FITEE.1500125 +Xiao Ding,BUEES: a bottom-up event extraction system.,2015,16,Frontiers of IT and EE,7,db/journals/jzusc/jzusc16.html#DingQL15,https://doi.org/10.1631/FITEE.1400405 +Alireza Askarzadeh,A new artificial bee swarm algorithm for optimization of proton exchange membrane fuel cell model parameters.,2011,12,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc12.html#AskarzadehR11,https://doi.org/10.1631/jzus.C1000355 +Ziying Dai,Automatic recovery from resource exhaustion exceptions by collecting leaked resources.,2014,15,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc15.html#DaiMCL14,https://doi.org/10.1631/jzus.C1300352 +Ashkan Tashk,A Chebyshev/Legendre polynomial interpolation approach for fingerprint orientation estimation smoothing and prediction.,2010,11,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc11.html#TashkHD10,https://doi.org/10.1631/jzus.C0910749 +Liang Geng,Power-efficient dual-edge implicit pulse-triggered flip-flop with an embedded clock-gating scheme.,2016,17,Frontiers of IT and EE,9,db/journals/jzusc/jzusc17.html#GengSX16,https://doi.org/10.1631/FITEE.1500293 +Da-jun Feng,Determination of inter-satellite relative position using X-ray pulsars.,2013,14,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc14.html#FengXZS13,https://doi.org/10.1631/jzus.C12a0142 +Qiao-mu Jiang,On detecting primary user emulation attack using channel impulse response in the cognitive radio network.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#JiangCXW17,https://doi.org/10.1631/FITEE.1700203 +Wenhua Xu,Clustering feature decision trees for semi-supervised classification from high-speed data streams.,2011,12,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc12.html#XuQC11,https://doi.org/10.1631/jzus.C1000330 +Tianming Yang,Scalable high performance de-duplication backup via hash join.,2010,11,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc11.html#YangFNW10,https://doi.org/10.1631/jzus.C0910445 +Yuan Sun 0004,A survey on run-time supporting platforms for cyber physical systems.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#SunYZ17,https://doi.org/10.1631/FITEE.1601579 +Jia Tang,New technique: Design and calibration of a new high-definition three-dimensional laparoscopic system.,2015,16,Frontiers of IT and EE,1,db/journals/jzusc/jzusc16.html#TangWYJZ15,https://doi.org/10.1631/FITEE.1400149 +Qi-rong Mao,Using Kinect for real-time emotion recognition via facial expressions.,2015,16,Frontiers of IT and EE,4,db/journals/jzusc/jzusc16.html#MaoPZS15,https://doi.org/10.1631/FITEE.1400209 +Jing Zhang 0009,Task mapper and application-aware virtual machine scheduler oriented for parallel computing.,2012,13,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc13.html#ZhangCLL12,https://doi.org/10.1631/jzus.C1100217 +Pejman Mowlaee,Evaluating single-channel speech separation performance in transform-domain.,2010,11,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc11.html#MowlaeeSS10,https://doi.org/10.1631/jzus.C0910087 +Yong-Xing Liu,Energy-aware schedulingwith reconstruction and frequency equalization on heterogeneous systems.,2015,16,Frontiers of IT and EE,7,db/journals/jzusc/jzusc16.html#LiuLTL15,https://doi.org/10.1631/FITEE.1400399 +Jian-yu Bao,A power conversion system for PMSG-based WECS operating with fully-controlled current-source converters.,2014,15,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc15.html#BaoBL14,https://doi.org/10.1631/jzus.C1300231 +Yu Liu,Deformable image registration with geometric changes.,2015,16,Frontiers of IT and EE,10,db/journals/jzusc/jzusc16.html#LiuZ15,https://doi.org/10.1631/FITEE.1500045 +Jun Wang,Developing a power monitoring and protection system for the junction boxes of an experimental seafloor observatory network.,2015,16,Frontiers of IT and EE,12,db/journals/jzusc/jzusc16.html#WangLYZJC15,https://doi.org/10.1631/FITEE.1500099 +Duo Zhang 0003,Mutual-information based weighted fusion for target tracking in underwater wireless sensor networks.,2018,19,Frontiers of IT and EE,4,db/journals/jzusc/jzusc19.html#ZhangLZFZ18,https://doi.org/10.1631/FITEE.1601695 +Hamed Bozorgi,Fast uniform content-based satellite image registration using the scale-invariant feature transform descriptor.,2017,18,Frontiers of IT and EE,8,db/journals/jzusc/jzusc18.html#BozorgiJ17,https://doi.org/10.1631/FITEE.1500295 +Muhammad Asif Zahoor Raja,Neuro-heuristic computational intelligence for solving nonlinear pantograph systems.,2017,18,Frontiers of IT and EE,4,db/journals/jzusc/jzusc18.html#RajaAKSW17,https://doi.org/10.1631/FITEE.1500393 +Jin-He Shi,A submatrix-based P300 brain-computer interface stimulus presentation paradigm.,2012,13,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc13.html#ShiSJD12,https://doi.org/10.1631/jzus.C1100328 +Sheng-Zheng Wang,Cranio-maxillofacial surgery simulation based on pre-specified target face configurations.,2010,11,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc11.html#WangYG10,https://doi.org/10.1631/jzus.C0910349 +Bin Lin 0003,Erratum to: A sparse matrix model-based optical proximity correction algorithm with model-based mapping between segments and control sites.,2011,12,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc12.html#LinYSY11a,https://doi.org/10.1631/jzus.C10e0219 +Huajun Chen,National semantic infrastructure for traditional Chinese medicine.,2012,13,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc13.html#Chen12,https://doi.org/10.1631/jzus.C1101012 +Wei Yang,Resource allocation for physical-layer security in OFDMAdownlinkwith imperfect CSI.,2018,19,Frontiers of IT and EE,3,db/journals/jzusc/jzusc19.html#YangMCCYX18,https://doi.org/10.1631/FITEE.1700026 +Fengfei Zhao,Greedy feature replacement for online value function approximation.,2014,15,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc15.html#ZhaoQSFR14,https://doi.org/10.1631/jzus.C1300246 +Suiang-Shyan Lee,An accelerated K-means clustering algorithm using selection and erasure rules.,2012,13,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc13.html#LeeL12,https://doi.org/10.1631/jzus.C1200078 +Saif ur Rehman Khan,RePizer: a framework for prioritization of software requirements.,2016,17,Frontiers of IT and EE,8,db/journals/jzusc/jzusc17.html#KhanLDTKA16,https://doi.org/10.1631/FITEE.1500162 +Di Guo,Controllability analysis of second-ordermulti-agent systemswith directed andweighted interconnection.,2015,16,Frontiers of IT and EE,10,db/journals/jzusc/jzusc16.html#GuoZLY15,https://doi.org/10.1631/FITEE.1500069 +Huajun Feng,Real-time motion deblurring algorithm with robust noise suppression.,2010,11,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc11.html#FengWXLLZ10,https://doi.org/10.1631/jzus.C0910201 +Shaofan Wang,Extracting hand articulations from monocular depth images using curvature scale space descriptors.,2016,17,Frontiers of IT and EE,1,db/journals/jzusc/jzusc17.html#WangLKY16,https://doi.org/10.1631/FITEE.1500126 +Yunzheng Tao,Aprojected gradient based game theoretic approach for multi-user power control in cognitive radio network.,2018,19,Frontiers of IT and EE,3,db/journals/jzusc/jzusc19.html#TaoWHZ18,https://doi.org/10.1631/FITEE.1700067 +Lian-hua Chi,Comprehensive and efficient discovery of time series motifs.,2011,12,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc12.html#ChiCFWC11,https://doi.org/10.1631/jzus.C1100037 +Rongrit Chatthaworn,An approach for evaluating the impact of an intermittent renewable energy source on transmission expansion planning.,2015,16,Frontiers of IT and EE,10,db/journals/jzusc/jzusc16.html#ChatthawornC15,https://doi.org/10.1631/FITEE.1500049 +Huanfeng Peng,Preserving privacy information flow security in composite service evolution.,2018,19,Frontiers of IT and EE,5,db/journals/jzusc/jzusc19.html#PengHLLFW18,https://doi.org/10.1631/FITEE.1700359 +Alicia Cantón,Interpolation of a spline developable surface between a curve and two rulings.,2015,16,Frontiers of IT and EE,3,db/journals/jzusc/jzusc16.html#CantonF15,https://doi.org/10.1631/FITEE.14a0210 +Hong Zhou,Automatic inspection of LED indicators on automobile meters based on a seeded region growing algorithm.,2010,11,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc11.html#ZhouXHSG10,https://doi.org/10.1631/jzus.C0910144 +Ahmad Firdaus,Discovering optimal features using static analysis and a genetic search based method for Android malware detection.,2018,19,Frontiers of IT and EE,6,db/journals/jzusc/jzusc19.html#FirdausAKR18,https://doi.org/10.1631/FITEE.1601491 +J. A. Rincon,Using emotions for the development of human-agent societies.,2016,17,Frontiers of IT and EE,4,db/journals/jzusc/jzusc17.html#RinconBFJC16,https://doi.org/10.1631/FITEE.1500343 +Hong Song,Modeling of a dynamic dual-input dual-output fast steeringmirror system.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#SongZYHZLGWHMFY17,https://doi.org/10.1631/FITEE.1601221 +Iraj Arghand Lafmajani,A novel frequency-selective metamaterial to improve helix antenna.,2012,13,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc13.html#LafmajaniR12,https://doi.org/10.1631/jzus.C1100239 +Xi-chuan Zhou,Integrating outlier filtering in large margin training.,2011,12,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc12.html#ZhouSY11,https://doi.org/10.1631/jzus.C1000361 +Dipayan Dev,Dr. Hadoop: an infinite scalable metadata management for Hadoop - How the baby elephant becomes immortal.,2016,17,Frontiers of IT and EE,1,db/journals/jzusc/jzusc17.html#DevP16,https://doi.org/10.1631/FITEE.1500015 +Xi-chuan Zhou,Largemargin classification for combating disguise attacks on spam filters.,2012,13,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc13.html#ZhouSHL12,https://doi.org/10.1631/jzus.C1100259 +Xiang Pan,Robust time reversal processing for active detection of a small bottom target in a shallow water waveguide.,2010,11,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc11.html#PanLXG10,https://doi.org/10.1631/jzus.C0910212 +Banghua Yang,Fast removal of ocular artifacts from electroencephalogram signals using spatial constraint independent component analysis based recursive least squares in brain-computer interface.,2015,16,Frontiers of IT and EE,6,db/journals/jzusc/jzusc16.html#YangHLW15,https://doi.org/10.1631/FITEE.1400299 +Zheng-wei Zhang,Biologically inspired collective construction with visual landmarks.,2012,13,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc13.html#ZhangZL12,https://doi.org/10.1631/jzus.C1100243 +Guo-Jiang Shen,A dynamic signal coordination control method for urban arterial roads and its application.,2016,17,Frontiers of IT and EE,9,db/journals/jzusc/jzusc17.html#ShenY16,https://doi.org/10.1631/FITEE.1500227 +Guangdong Tian,Fuzzy cost-profit tradeoff model for locating a vehicle inspection station considering regional constraints.,2014,15,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc15.html#TianKC14,https://doi.org/10.1631/jzus.C1400116 +Hao-liang Li,Designing a novel consensus protocol for multiagent systems with general dynamics under directed networks.,2017,18,Frontiers of IT and EE,8,db/journals/jzusc/jzusc18.html#LiYL17,https://doi.org/10.1631/FITEE.1601422 +Juan Cao,Non-uniform B-spline curveswith multiple shape parameters.,2011,12,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc12.html#CaoW11,https://doi.org/10.1631/jzus.C1000381 +Yi-jian Liu,Modeling of hydraulic turbine systems based on a Bayesian-Gaussian neural network driven by sliding window data.,2010,11,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc11.html#LiuFZ10,https://doi.org/10.1631/jzus.C0910176 +Zheng-Wei Zhu,Shipborne radar maneuvering target tracking based on the variable structure adaptive grid interacting multiple model.,2013,14,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc14.html#Zhu13,https://doi.org/10.1631/jzus.C1200335 +Xia Zhang,Modeling and noise analysis of a fence structure micromachined capacitive accelerometer system.,2010,11,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc11.html#ZhangWZHJ10,https://doi.org/10.1631/jzus.C0910757 +Lu-jun Wang,A high performance simulation methodology for multilevel grid-connected inverters.,2012,13,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc13.html#WangYZL12,https://doi.org/10.1631/jzus.C1100315 +Guang-hua Tan,Image driven shape deformation using styles.,2010,11,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc11.html#TanCL10,https://doi.org/10.1631/jzus.C0910089 +Yi-qi Xie,A multistandard and resource-efficient Viterbi decoder for a multimode communication system.,2018,19,Frontiers of IT and EE,4,db/journals/jzusc/jzusc19.html#XieYFZG18,https://doi.org/10.1631/FITEE.1601596 +Chun-Meng Kang,A survey of photon mapping state-of-the-art research and future challenges.,2016,17,Frontiers of IT and EE,3,db/journals/jzusc/jzusc17.html#KangWXM16,https://doi.org/10.1631/FITEE.1500251 +Ling-jian Ye,New loop pairing criterion based on interaction and integrity considerations.,2010,11,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc11.html#YeS10,https://doi.org/10.1631/jzus.C0910217 +Dongli Wang,Binary tree of posterior probability support vector machines.,2011,12,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc12.html#WangZZ11,https://doi.org/10.1631/jzus.C1000022 +Ping Zhang 0003,Special issue on 5G wireless communication systems and technologies.,2017,18,Frontiers of IT and EE,6,db/journals/jzusc/jzusc18.html#Zhang17,https://doi.org/10.1631/FITEE.1720000 +Hongjiang Lei,Secrecy performance analysis of single-input multiple-output generalized-K fading channels.,2016,17,Frontiers of IT and EE,10,db/journals/jzusc/jzusc17.html#LeiAGGPQ16,https://doi.org/10.1631/FITEE.1601070 +Jun-feng Xie,Caching resource sharing in radio access networks: a game theoretic approach.,2016,17,Frontiers of IT and EE,12,db/journals/jzusc/jzusc17.html#XieXHLYL16,https://doi.org/10.1631/FITEE.1500497 +Do Yeun Kim,A fast and simple system performance emulator for enhanced solid state disks: a case study of long read operations.,2010,11,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc11.html#KimPCC10,https://doi.org/10.1631/jzus.C0910505 +Zhi-yong Yan,Improving naive Bayes classifier by dividing its decision regions.,2011,12,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc12.html#YanXP11,https://doi.org/10.1631/jzus.C1000437 +G. R. Brindha,Performance analysis of new word weighting procedures for opinion mining.,2016,17,Frontiers of IT and EE,11,db/journals/jzusc/jzusc17.html#BrindhaSS16,https://doi.org/10.1631/FITEE.1500283 +Jie Zhou,A controllable stitch layout strategy for random needle embroidery.,2014,15,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc15.html#ZhouSY14,https://doi.org/10.1631/jzus.C1400099 +Yong Wang,A two-stage heuristic method for vehicle routing problem with split deliveries and pickups.,2014,15,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc15.html#WangMLYL14,https://doi.org/10.1631/jzus.C1300177 +Jia-xin Jiang,Using information flow analysis to detect implicit information leaks for web service composition.,2018,19,Frontiers of IT and EE,4,db/journals/jzusc/jzusc19.html#JiangHMC18,https://doi.org/10.1631/FITEE.1601371 +Jun-peng Zhan,Generation maintenance scheduling based on multiple objectives and their relationship analysis.,2014,15,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc15.html#ZhanGWZF14,https://doi.org/10.1631/jzus.C1400030 +Guangxi Zhu,Joint bandwidth allocation and power control with interference constraints in multi-hop cognitive radio networks.,2010,11,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc11.html#ZhuPQLWS10,https://doi.org/10.1631/jzus.C0910070 +Feng Sheng,Mechanized semantics and refinement of UML-Statecharts.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#ShengDY17,https://doi.org/10.1631/FITEE.1601196 +Mehdi Ahmadi Jirdehi,A multi-functional dynamic state estimator for error validation: measurement and parameter errors and sudden load changes.,2016,17,Frontiers of IT and EE,11,db/journals/jzusc/jzusc17.html#JirdehiHAS16,https://doi.org/10.1631/FITEE.1500301 +Jian-zhong Chen,Numerical solutions of a multi-class traffic flow model on an inhomogeneous highway using a high-resolution relaxed scheme.,2012,13,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc13.html#ChenSH12,https://doi.org/10.1631/jzus.C10a0406 +Wen-hui Zuo,Road model prediction based unstructured road detection.,2013,14,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc14.html#ZuoY13,https://doi.org/10.1631/jzus.C1300090 +Li-Fang Feng,A construction of inter-group complementary codes with flexible ZCZ length.,2011,12,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc12.html#FengZF11,https://doi.org/10.1631/jzus.C1000360 +Da-min Zhang,Predictive current control of multi-pulse flexible-topology thyristor AC-DC converter.,2013,14,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc14.html#ZhangWLL13,https://doi.org/10.1631/jzus.C1200283 +Feng Shu 0002,Spatial channel pairing based coherent combining for relay networks.,2016,17,Frontiers of IT and EE,9,db/journals/jzusc/jzusc17.html#ShuHHLCYLW16,https://doi.org/10.1631/FITEE.1500436 +Weiming Lu,Efficient shape matching for Chinese calligraphic character retrieval.,2011,12,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc12.html#LuWWZ11,https://doi.org/10.1631/jzus.C1100005 +Zhengmin Kong,Differential multiuser detection using a novel genetic algorithm for ultra-wideband systems in lognormal fading channel.,2011,12,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc12.html#KongZZD11,https://doi.org/10.1631/jzus.C1000257 +Zhaoxia Wang,Verification of workflow nets with transition conditions.,2012,13,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc13.html#WangWZW12,https://doi.org/10.1631/jzus.C1100364 +Zheng Wang,Retransmission in the network-coding-based packet network.,2010,11,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc11.html#WangCXW10,https://doi.org/10.1631/jzus.C0910475 +Suparerk Janjarasjitt,Examination of the wavelet-based approach for measuring self-similarity of epileptic electroencephalogram data.,2014,15,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc15.html#Janjarasjitt14,https://doi.org/10.1631/jzus.C1400126 +Rong Zou,Real-time monitoring of brake shoe keys in freight cars.,2015,16,Frontiers of IT and EE,3,db/journals/jzusc/jzusc16.html#ZouXLZ15,https://doi.org/10.1631/FITEE.1400305 +Hua Zhang 0015,A new maximum-likelihood phase estimation method for X-ray pulsar signals.,2014,15,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc15.html#ZhangXSJS14,https://doi.org/10.1631/jzus.C1300347 +Peng-Fei Qian,A modified direct adaptive robust motion trajectory tracking controller of a pneumatic system.,2014,15,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc15.html#QianTML14,https://doi.org/10.1631/jzus.C1400003 +Wei Liu,A subband excitation substitute based scheme for narrowband speech watermarking.,2017,18,Frontiers of IT and EE,5,db/journals/jzusc/jzusc18.html#LiuH17,https://doi.org/10.1631/FITEE.1601503 +Ai-lian Cheng,A general communication performance evaluation model based on routing path decomposition.,2011,12,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc12.html#ChengPYH11,https://doi.org/10.1631/jzus.C1000281 +Ning Du,Anovel resource optimization scheme for multi-cellOFDMArelay network.,2016,17,Frontiers of IT and EE,8,db/journals/jzusc/jzusc17.html#DuL16,https://doi.org/10.1631/FITEE.1500294 +Jian-Ping Yu,A planar capacitive sensor for 2D long-range displacement measurement.,2013,14,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc14.html#YuWLMC13,https://doi.org/10.1631/jzus.C12MNT03 +Aqun Zhao,A new forwarding address for next generation networks.,2012,13,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc13.html#ZhaoL12,https://doi.org/10.1631/jzus.C1100096 +Zhengong Cai,Afuzzy formal concept analysis based approach for business component identification.,2011,12,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc12.html#CaiYWK11,https://doi.org/10.1631/jzus.C1000337 +Dan Li,Optimal signal design strategy with improper Gaussian signaling in the Z-interference channel.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#LiWG17,https://doi.org/10.1631/FITEE.1700030 +Shafqat Ullah Khan,Detecting faulty sensors in an array using symmetrical structure and cultural algorithm hybridized with differential evolution.,2017,18,Frontiers of IT and EE,2,db/journals/jzusc/jzusc18.html#KhanQZK17,https://doi.org/10.1631/FITEE.1500315 +Hao Shao,Transfer active learning by querying committee.,2014,15,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc15.html#ShaoTX14,https://doi.org/10.1631/jzus.C1300167 +Yong Ding,Image quality assessment method based on nonlinear feature extraction in kernel space.,2016,17,Frontiers of IT and EE,10,db/journals/jzusc/jzusc17.html#DingLZH16,https://doi.org/10.1631/FITEE.1500439 +Yun Pan,Discrete-time charge analysis for a digital RF charge sampling mixer.,2010,11,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc11.html#PanGYY10,https://doi.org/10.1631/jzus.C0910390 +Yi Shen,Multi-taskmulti-labelmultiple instance learning.,2010,11,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc11.html#ShenF10,https://doi.org/10.1631/jzus.C1001005 +Jia-Lun Tsai,A novel multisignature scheme for a special verifier group against clerk and rogue-key attacks.,2010,11,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc11.html#TsaiWT10,https://doi.org/10.1631/jzus.C0910457 +Peng Chen,Extremal optimization for optimizing kernel function and its parameters in support vector regression.,2011,12,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc12.html#ChenL11,https://doi.org/10.1631/jzus.C1000110 +Lei Yan,New separation algorithm for touching grain kernels based on contour segments and ellipse fitting.,2011,12,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc12.html#YanPLL11,https://doi.org/10.1631/jzus.C0910797 +Liwei Huang,Enhancing recommender systems by incorporating social information.,2013,14,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc14.html#HuangCLL13,https://doi.org/10.1631/jzus.CIIP1303 +Jiao-na Wan,Reduced precision solution criteria for nonlinear model predictive control with the feasibility-perturbed sequential quadratic programming algorithm.,2011,12,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc12.html#WanSWFWQ11,https://doi.org/10.1631/jzus.C10a0512 +Jorge A. Ruiz-Vanoye,Application of formal languages in polynomial transformations of instances between NP-complete problems.,2013,14,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc14.html#Ruiz-VanoyeORDHSSR13,https://doi.org/10.1631/jzus.C1200349 +Xu-dong Jiang,Image anti-aliasing techniques for Internet visual media processing: a review.,2014,15,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc15.html#JiangSLLM14,https://doi.org/10.1631/jzus.C1400100 +Qi-Huai Chen,Optimization design of an interior permanent-magnet synchronous machine for a hybrid hydraulic excavator.,2015,16,Frontiers of IT and EE,11,db/journals/jzusc/jzusc16.html#ChenWW15,https://doi.org/10.1631/FITEE.1500056 +Wei Feng,Cross-layer resource allocation in wireless multi-hop networks with outdated channel state information.,2014,15,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc15.html#FengFDH14,https://doi.org/10.1631/jzus.C1300315 +Rui Yin,Centralized and distributed resource allocation in OFDM based multi-relay system.,2010,11,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc11.html#YinZYZZ10,https://doi.org/10.1631/jzus.C0910405 +Xiao-yan Huang,A fault tolerant single sided matrix converter for flight control actuation systems.,2012,13,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc13.html#HuangJZLFGG12,https://doi.org/10.1631/jzus.C1200164 +Junsheng Lv,Wide-range tracking technique for process-variation-robust clock and data recovery applications.,2017,18,Frontiers of IT and EE,5,db/journals/jzusc/jzusc18.html#LvLZZSZ17,https://doi.org/10.1631/FITEE.1500410 +Divya Pandove,An intuitive general rank-based correlation coefficient.,2018,19,Frontiers of IT and EE,6,db/journals/jzusc/jzusc19.html#PandoveGR18,https://doi.org/10.1631/FITEE.1601549 +Xin Hao,Automatic mass segmentation on mammograms combining random walks and active contour.,2012,13,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc13.html#HaoSX12,https://doi.org/10.1631/jzus.C1200052 +Yu-hang Xia,Carbon emission impact on the operation of virtual power plant with combined heat and power system.,2016,17,Frontiers of IT and EE,5,db/journals/jzusc/jzusc17.html#XiaLHZ16,https://doi.org/10.1631/FITEE.1500467 +Fang Li,Laplacian sparse dictionary learning for image classification based on sparse representation.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#LiSZ17,https://doi.org/10.1631/FITEE.1600039 +Huiyong Hu,Hierarchical control for parallel bidirectional power converters of a grid-connected DC microgrid.,2017,18,Frontiers of IT and EE,12,db/journals/jzusc/jzusc18.html#HuPXWWY17,https://doi.org/10.1631/FITEE.1601497 +Qiao-Song Chen,Contrast evaluation methods for natural color images in display systems: within- and cross-content evaluations.,2011,12,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc12.html#ChenK11,https://doi.org/10.1631/jzus.C1100004 +Eun-Jung Yoon,Thermal energy harvesting circuit with maximum power point tracking control for self-powered sensor node applications.,2018,19,Frontiers of IT and EE,2,db/journals/jzusc/jzusc19.html#YoonPY18,https://doi.org/10.1631/FITEE.1601181 +Tahir Nadeem Malik,An improved chaotic hybrid differential evolution for the short-term hydrothermal scheduling problem considering practical constraints.,2015,16,Frontiers of IT and EE,5,db/journals/jzusc/jzusc16.html#MalikZH15,https://doi.org/10.1631/FITEE.1400189 +Fanglin Gu,Standard-independent I/Q imbalance estimation and compensation scheme inOFDM.,2018,19,Frontiers of IT and EE,3,db/journals/jzusc/jzusc19.html#GuWW18,https://doi.org/10.1631/FITEE.1700003 +Yang Ren,Erratum to: Optimization of the resonant frequency servo loop technique in the resonator micro optic gyro.,2012,13,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc13.html#RenJCM12,https://doi.org/10.1631/jzus.C10e0441 +Yan-hu Chen,Development of a direct current power system for a multi-node cabled ocean observatory system.,2012,13,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc13.html#ChenYLJC12,https://doi.org/10.1631/jzus.C1100381 +Chao Fang 0004,A general method of designing phase-shifting algorithms for grating lateral shearing interferometry.,2018,19,Frontiers of IT and EE,6,db/journals/jzusc/jzusc19.html#FangXQ18,https://doi.org/10.1631/FITEE.1601692 +Taocheng Hu,Max-margin based Bayesian classifier.,2016,17,Frontiers of IT and EE,10,db/journals/jzusc/jzusc17.html#HuY16,https://doi.org/10.1631/FITEE.1601078 +Yujing Wu,Efficient controller area network data compression for automobile applications.,2015,16,Frontiers of IT and EE,1,db/journals/jzusc/jzusc16.html#WuC15,https://doi.org/10.1631/FITEE.1400136 +Jian Ding,Virtual network embedding based on real-time topological attributes.,2015,16,Frontiers of IT and EE,2,db/journals/jzusc/jzusc16.html#DingHLL15,https://doi.org/10.1631/FITEE.1400147 +Yu-tang Zhu,Low complexity robust adaptive beamforming for general-rank signal model with positive semidefinite constraint.,2016,17,Frontiers of IT and EE,11,db/journals/jzusc/jzusc17.html#ZhuZLS16,https://doi.org/10.1631/FITEE.1601112 +Wajdi S. Aboud,Advances in the control of mechatronic suspension systems.,2014,15,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc15.html#AboudHY14,https://doi.org/10.1631/jzus.C14a0027 +Yue-Ting Zhuang,Data-driven digital entertainment: a computational perspective.,2013,14,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc14.html#Zhuang13,https://doi.org/10.1631/jzus.CIDE1300 +Yanzhe Che,EDA: an enhanced dual-active algorithm for location privacy preservation inmobile P2P networks.,2013,14,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc14.html#CheCHYH13,https://doi.org/10.1631/jzus.C1200267 +Zhi-xun Su,Curvature-aware simplification for point-sampled geometry.,2011,12,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc12.html#SuLZC11,https://doi.org/10.1631/jzus.C1000068 +Jianzong Wang,Optimizing storage performance in public cloud platforms.,2011,12,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc12.html#WangVX11,https://doi.org/10.1631/jzus.C1100097 +Jiguang Wan,A reliable and energy-efficient storage system with erasure coding cache.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#WanLQYWX17,https://doi.org/10.1631/FITEE.1600972 +Tao Zhang,Current trends in the development of intelligent unmanned autonomous systems.,2017,18,Frontiers of IT and EE,1,db/journals/jzusc/jzusc18.html#ZhangLZLLWLZW17,https://doi.org/10.1631/FITEE.1601650 +Zhenhua Li,A gain-flatness optimization solution for feedback technology of wideband low noise amplifiers.,2011,12,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc12.html#LiGWLCWGY11,https://doi.org/10.1631/jzus.C1010300 +Tao Li 0007,Efficient mesh denoising via robust normal filtering and alternate vertex updating.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#LiWLL17,https://doi.org/10.1631/FITEE.1601229 +Tianran Hu,Home location inference from sparse and noisy data: models and applications.,2016,17,Frontiers of IT and EE,5,db/journals/jzusc/jzusc17.html#HuLKS16,https://doi.org/10.1631/FITEE.1500385 +Yin Tian,A vehicle re-identification algorithm based on multi-sensor correlation.,2014,15,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc15.html#TianDJL14,https://doi.org/10.1631/jzus.C1300291 +Yu Zhou,Non-interactive automatic video segmentation of moving targets.,2012,13,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc13.html#ZhouSX12,https://doi.org/10.1631/jzus.C1200071 +Zamshed I. Chowdhury,Electrical analysis of single-walled carbon nanotube as gigahertz on-chip interconnects.,2017,18,Frontiers of IT and EE,2,db/journals/jzusc/jzusc18.html#ChowdhuryRK17,https://doi.org/10.1631/FITEE.1500349 +Hong-yuan Chen,A robust watermarking algorithm based on QR factorization and DCT using quantization index modulation technique.,2012,13,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc13.html#ChenZ12,https://doi.org/10.1631/jzus.C1100338 +Wei Hu,Storage wall for exascale supercomputing.,2016,17,Frontiers of IT and EE,11,db/journals/jzusc/jzusc17.html#HuLLJC16,https://doi.org/10.1631/FITEE.1601336 +Jie Ren,Array based HV/VH tree: an effective data structure for layout representation.,2012,13,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc13.html#RenPZSY12,https://doi.org/10.1631/jzus.C1100193 +Xiao-Ling Li,Topology awareness algorithm for virtual network mapping.,2012,13,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc13.html#LiWGDLBT12,https://doi.org/10.1631/jzus.C1100282 +Yue-peng Zou,Supervised topic models with weighted words: multi-label document classification.,2018,19,Frontiers of IT and EE,4,db/journals/jzusc/jzusc19.html#ZouOL18,https://doi.org/10.1631/FITEE.1601668 +Pritesh Shah,Design of a fractional PIλ*Dλ6* controller using the cohort intelligence method.,2018,19,Frontiers of IT and EE,3,db/journals/jzusc/jzusc19.html#ShahAK18,https://doi.org/10.1631/FITEE.1601495 +Zhi Yu,Finding map regions with high density of query keywords.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#YuWBHWJ17,https://doi.org/10.1631/FITEE.1600043 +Ke-shi Ge,Efficient parallel implementation of a density peaks clustering algorithm on graphics processing unit.,2017,18,Frontiers of IT and EE,7,db/journals/jzusc/jzusc18.html#GeSLL17,https://doi.org/10.1631/FITEE.1601786 +Tian-hao Xia,Quasi-distributed sensing network based on coherence multiplexing and spatial division multiplexing for coal mine security monitoring.,2010,11,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc11.html#XiaLZGY10,https://doi.org/10.1631/jzus.C0910716 +Zhaoyang Zhang 0001,Interference coordination in full-duplex HetNet with large-scale antenna arrays.,2017,18,Frontiers of IT and EE,6,db/journals/jzusc/jzusc18.html#ZhangL17a,https://doi.org/10.1631/FITEE.1700047 +Hossein Ghaffarian,Planning VANET infrastructures to improve safety awareness in curved roads.,2012,13,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc13.html#GhaffarianSF12,https://doi.org/10.1631/jzus.C1200082 +Hao Xie,Image meshing via hierarchical optimization.,2016,17,Frontiers of IT and EE,1,db/journals/jzusc/jzusc17.html#XieT16,https://doi.org/10.1631/FITEE.1500171 +Jijun Xiong,Measurement of wireless pressure sensors fabricated in high temperature co-fired ceramic MEMS technology.,2013,14,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc14.html#XiongZHLWWT13,https://doi.org/10.1631/jzus.C12MNT04 +Rui-xing Zeng,Design and analysis of a mode-hop-free tunable laser based on etched diffraction grating.,2010,11,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc11.html#ZengWH10,https://doi.org/10.1631/jzus.C0910622 +Jingli Gao,Detecting slowly moving infrared targets using temporal filtering and association strategy.,2016,17,Frontiers of IT and EE,11,db/journals/jzusc/jzusc17.html#GaoWBL16,https://doi.org/10.1631/FITEE.1601203 +Yun-hua Qu,Using an integrated feature set to generalize and justify the Chinese-to-English transferring rule of the 'ZHE' aspect.,2010,11,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc11.html#QuTSJGZYX10,https://doi.org/10.1631/jzus.C1000104 +Libo Zhao,A trapezoidal cantilever density sensor based on MEMS technology.,2013,14,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc14.html#ZhaoXZZWLJ13,https://doi.org/10.1631/jzus.C12MNT06 +Wen-fei Wang,Mapbuilding for dynamic environments using grid vectors.,2011,12,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc12.html#WangXC11,https://doi.org/10.1631/jzus.C1000255 +Omid Bushehrian,Automatic actor-based program partitioning.,2010,11,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc11.html#Bushehrian10,https://doi.org/10.1631/jzus.C0910096 +Zi-Wu Ren,A hybrid biogeography-based optimization method for the inverse kinematics problem of an 8-DOF redundant humanoid manipulator.,2015,16,Frontiers of IT and EE,7,db/journals/jzusc/jzusc16.html#RenWS15,https://doi.org/10.1631/FITEE.14a0335 +Gui-Lin Cai,Moving target defense: state of the art and characteristics.,2016,17,Frontiers of IT and EE,11,db/journals/jzusc/jzusc17.html#CaiWHW16,https://doi.org/10.1631/FITEE.1601321 +Kuo-Hui Yeh,A lightweight authentication scheme with user untraceability.,2015,16,Frontiers of IT and EE,4,db/journals/jzusc/jzusc16.html#Yeh15,https://doi.org/10.1631/FITEE.1400232 +Yun Niu,A 10 Gbps in-line network security processor based on configurable hetero-multi-cores.,2013,14,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc14.html#NiuWLZC13,https://doi.org/10.1631/jzus.C1200370 +Yu-Lei Geng,Sketch based garment modeling on an arbitrary view of a 3D virtual human model.,2011,12,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc12.html#GengWLLC11,https://doi.org/10.1631/jzus.C1000049 +Meijuan Jia,DGTM: a dynamic grouping based trust model for mobile peer-to-peer networks.,2017,18,Frontiers of IT and EE,4,db/journals/jzusc/jzusc18.html#JiaWLFY17,https://doi.org/10.1631/FITEE.1601535 +Ji-Hoon Park,Reliable beacon transmission based MAC protocol for LR-WPANs over WLAN interferences.,2014,15,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc15.html#ParkK14,https://doi.org/10.1631/jzus.C1300269 +Jian-yu Bao,Generalized multilevel current source inverter topology with self-balancing current.,2010,11,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc11.html#BaoBZ10,https://doi.org/10.1631/jzus.C0910605 +Li-heng Lou,An efficient PSP-based model for optimized cross-coupled MOSFETs in voltage controlled oscillator.,2013,14,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc14.html#LouSLG13,https://doi.org/10.1631/jzus.C1200268 +Luciano da Fontoura Costa,Effective Detection of Digital Bar Segments with Hough Transform.,1993,55,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip55.html#CostaS93,https://doi.org/10.1006/cgip.1993.1013 +James H. McClellan,A modified alpha-root technique for image processing.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#McClellan82,https://doi.org/10.1016/0146-664X(82)90112-5 +Lionel Untereiner,n-Dimensional multiresolution representation of subdivision meshes with arbitrary topology.,2013,75,Graphical Models,5,db/journals/cvgip/cvgip75.html#UntereinerCB13,https://doi.org/10.1016/j.gmod.2013.03.003 +Wei Yu 0012,Fragmented skull modeling using heat kernels.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#YuLL12,https://doi.org/10.1016/j.gmod.2012.03.011 +Søren I. Olsen,Estimation of Noise in Images: An Evaluation.,1993,55,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip55.html#Olsen93,https://doi.org/10.1006/cgip.1993.1022 +Andre Schmeißer,Smooth convolution-based distance functions.,2015,82,Graphical Models,,db/journals/cvgip/cvgip82.html#SchmeisserWHH15,https://doi.org/10.1016/j.gmod.2015.06.004 +Charles Kervrann,A Hierarchical Markov Modeling Approach for the Segmentation and Tracking of Deformable Shapes.,1998,60,Graphical Models and Image Processing,3,db/journals/cvgip/cvgip60.html#KervrannH98,https://doi.org/10.1006/gmip.1998.0469 +Alan P. Schaum,Theory and Design of Local Interpolators.,1993,55,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip55.html#Schaum93,https://doi.org/10.1006/cgip.1993.1035 +I. K. Sethi,Edge detection using charge analogy.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Sethi82a,https://doi.org/10.1016/0146-664X(82)90165-4 +Chee Sun Won,Unsupervised segmentation of noisy and textured images using Markov random fields.,1992,54,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip54.html#WonD92,https://doi.org/10.1016/1049-9652(92)90078-C +Helmut Pottmann,Rational Ruled Surfaces and Their Offsets.,1996,58,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip58.html#PottmannLR96,https://doi.org/10.1006/gmip.1996.0045 +Yi-Jun Yang,Equiareal parameterizations of NURBS surfaces.,2014,76,Graphical Models,1,db/journals/cvgip/cvgip76.html#YangZC14,https://doi.org/10.1016/j.gmod.2013.10.007 +Kestutis Karciauskas,Rational G2 splines.,2011,73,Graphical Models,5,db/journals/cvgip/cvgip73.html#KarciauskasP11,https://doi.org/10.1016/j.gmod.2011.05.004 +A. Ravishankar Rao,Computing oriented texture fields.,1991,53,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip53.html#RaoS91,https://doi.org/10.1016/1049-9652(91)90059-S +K. Prazdny,Waveform segmentation and description using edge preserving smoothing.,1982,20,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip20.html#Prazdny82,https://doi.org/10.1016/0146-664X(82)90066-1 +Louis R. Chow,A New Dynamic Approach for Finding the Contour of Bi-level Images.,1994,56,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip56.html#ChowLHW94,https://doi.org/10.1006/cgip.1994.1045 +Michael H. F. Wilkinson,Optimizing Edge Detectors for Robust Automatic Threshold Selection: Coping with Edge Curvature and Noise.,1998,60,Graphical Models and Image Processing,5,db/journals/cvgip/cvgip60.html#Wilkinson98,https://doi.org/10.1006/gmip.1998.0478 +Ron Aharoni,Jordan Graphs.,1996,58,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip58.html#AharoniHL96,https://doi.org/10.1006/gmip.1996.0028 +Minying Zhang,Perception-based model simplification for motion blur rendering.,2014,76,Graphical Models,3,db/journals/cvgip/cvgip76.html#ZhangWSH14,https://doi.org/10.1016/j.gmod.2013.10.003 +Ming Ma,Robust surface registration using optimal mass transport and Teichmüller mapping.,2017,90,Graphical Models,,db/journals/cvgip/cvgip90.html#MaLCSG17,https://doi.org/10.1016/j.gmod.2017.01.002 +Yang Zhang,de Boor-suitable (DS) T-splines.,2018,97,Graphical Models,,db/journals/cvgip/cvgip97.html#ZhangPG18,https://doi.org/10.1016/j.gmod.2018.03.003 +Maurence M. Anguh,A Truncation Method for Computing Walsh Transforms with Applications to Image Processing.,1993,55,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip55.html#AnguhM93,https://doi.org/10.1006/cgip.1993.1036 +Sriram Dayanand,A Particle System Model for Combining Edge Information from Multiple Segmentation Modules.,1994,56,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip56.html#DayanandUSL94,https://doi.org/10.1006/cgip.1994.1020 +Jared Go,Autonomous behaviors for interactive vehicle animations.,2006,68,Graphical Models,2,db/journals/cvgip/cvgip68.html#GoVK06,https://doi.org/10.1016/j.gmod.2005.04.003 +Jinesh Machchhar,9*-Guarantee of a covering of 2D domains using random-looking curves.,2017,89,Graphical Models,,db/journals/cvgip/cvgip89.html#MachchharE17,https://doi.org/10.1016/j.gmod.2016.12.001 +Debargha Mukherjee,Adaptive Neighborhood Extended Contrast Enhancement and Its Modifications.,1995,57,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip57.html#MukherjeeC95,https://doi.org/10.1006/gmip.1995.1024 +Azriel Rosenfeld,Topology-Preserving Deformations of Two-Valued Digital Pictures.,1998,60,Graphical Models and Image Processing,1,db/journals/cvgip/cvgip60.html#RosenfeldKN98,https://doi.org/10.1006/gmip.1997.0459 +Ramon F. Sarraga,Algebraic methods for intersections of quadric surface om gmsolid.,1982,19,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip19.html#Sarraga82,https://doi.org/10.1016/0146-664X(82)90027-2 +Friedrich M. Wahl,A new distance mapping and its use for shape measurement on binary patterns.,1982,20,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip20.html#Wahl82,https://doi.org/10.1016/0146-664X(82)90067-3 +Hock Lim,Edge errors in inverse and Wiener filter restorations of motion-blurred images and their windowing treatment.,1991,53,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip53.html#LimTT91,https://doi.org/10.1016/1049-9652(91)90060-W +Jovisa D. Zunic,A General Coding Scheme for Families of Digital Curve Segments.,1998,60,Graphical Models and Image Processing,6,db/journals/cvgip/cvgip60.html#ZunicA98,https://doi.org/10.1006/gmip.1998.0482 +Gilles Bertrand 0001,Isthmus based parallel and symmetric 3D thinning algorithms.,2015,80,Graphical Models,,db/journals/cvgip/cvgip80.html#BertrandC15,https://doi.org/10.1016/j.gmod.2015.05.001 +P. Lobaz,Hierarchical Laplacian-based compression of triangle meshes.,2014,76,Graphical Models,6,db/journals/cvgip/cvgip76.html#LobazV14,https://doi.org/10.1016/j.gmod.2014.09.003 +Hong Yan,Skew Correction of Document Images Using Interline Cross-Correlation.,1993,55,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip55.html#Yan93,https://doi.org/10.1006/cgip.1993.1041 +Didier Lattard,A VLSI implementation of parallel image reconstruction.,1991,53,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip53.html#LattardM91,https://doi.org/10.1016/1049-9652(91)90008-8 +F. Kammoun,Optimum Edge Detection for Object-Background Picture.,1994,56,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip56.html#KammounA94,https://doi.org/10.1006/cgip.1994.1004 +Marco Fratarcangeli,Facial motion cloning with radial basis functions in MPEG-4 FBA.,2007,69,Graphical Models,2,db/journals/cvgip/cvgip69.html#FratarcangeliSF07,https://doi.org/10.1016/j.gmod.2006.09.006 +Raman B. Paranjape,Adaptive-neighborhood histogram equalization for image enhancement.,1992,54,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip54.html#ParanjapeMR92,https://doi.org/10.1016/1049-9652(92)90056-4 +Ran Luo,Interactive design and simulation of tubular supporting structure.,2015,80,Graphical Models,,db/journals/cvgip/cvgip80.html#LuoZXKSY15,https://doi.org/10.1016/j.gmod.2015.05.002 +Chung-Nim Lee,Winding and Euler numbers for 2D and 3D digital images.,1991,53,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip53.html#LeePR91a,https://doi.org/10.1016/1049-9652(91)90003-3 +Guillaume Dewaele,Interactive global and local deformations for virtual clay.,2004,66,Graphical Models,6,db/journals/cvgip/cvgip66.html#DewaeleC04,https://doi.org/10.1016/j.gmod.2004.06.008 +Lee R. Nackman,Curvature relations in three-dimensional symmetric axes.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Nackman82a,https://doi.org/10.1016/0146-664X(82)90122-8 +Kang Zhang,A graph-based optimization algorithm for fragmented image reassembly.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#ZhangL14,https://doi.org/10.1016/j.gmod.2014.03.001 +Yutaka Ohtake,3D scattered data interpolation and approximation with multilevel compactly supported RBFs.,2005,67,Graphical Models,3,db/journals/cvgip/cvgip67.html#OhtakeBS05,https://doi.org/10.1016/j.gmod.2004.06.003 +Hiromasa Suzuki,Special Issue on the Ninth Pacific Graphics Conference (PG 2001).,2002,64,Graphical Models,2,db/journals/cvgip/cvgip64.html#SuzukiRK02,https://doi.org/10.1006/gmod.2002.0579 +Hari B. Bidasaria,A method for ray tracing a wide class of generalized cylinders with straight line trajectories.,1991,53,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip53.html#Bidasaria91,https://doi.org/10.1016/1049-9652(91)90053-M +Athanassios Ikonomopoulos,An approach to local-edge detection based on the direction of edge elements.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Ikonomopoulos82,https://doi.org/10.1016/0146-664X(82)90152-6 +Punam K. Saha,The Digital Topology of Sets of Convex Voxels.,2000,62,Graphical Models,5,db/journals/cvgip/cvgip62.html#SahaR00,https://doi.org/10.1006/gmod.2000.0527 +J. J. Hwang,Matching of featured objects using relational tables from stereo images.,1982,20,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip20.html#HwangH82,https://doi.org/10.1016/0146-664X(82)90071-5 +Lejun Shao,Curve Fitting with Bézier Cubics.,1996,58,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip58.html#ShaoZ96,https://doi.org/10.1006/gmip.1996.0019 +Christopher Weber,Sharp feature preserving MLS surface reconstruction based on local feature line approximations.,2012,74,Graphical Models,6,db/journals/cvgip/cvgip74.html#WeberHHB12,https://doi.org/10.1016/j.gmod.2012.04.012 +Frédéric Chazal,"The ""lambda-medial axis"".",2005,67,Graphical Models,4,db/journals/cvgip/cvgip67.html#ChazalL05,https://doi.org/10.1016/j.gmod.2005.01.002 +Felix G. Hamza-Lup,Web3D graphics enabled through sensor networks for cost-effective assessment and management of energy efficiency in buildings.,2016,88,Graphical Models,,db/journals/cvgip/cvgip88.html#Hamza-LupM16,https://doi.org/10.1016/j.gmod.2016.03.005 +Thomas W. Sederberg,Pyramids That Bound Surface Patches.,1996,58,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip58.html#SederbergZ96,https://doi.org/10.1006/gmip.1996.0005 +Wolfgang Boehm,On cubics: A survey.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Boehm82,https://doi.org/10.1016/0146-664X(82)90125-3 +Shi-Kuo Chang,Picture information measures for similarity retrieval.,1982,20,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip20.html#ChangY82,https://doi.org/10.1016/0146-664X(82)90068-5 +S. Chattopadhyay,Parameter estimation and reconstruction of digital conics in normal positions.,1992,54,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip54.html#ChattopadhyayD92,https://doi.org/10.1016/1049-9652(92)90023-Q +Wenhua Wan,Segmentation of Planar Curves into Straight-Line Segments and Elliptical Arcs.,1997,59,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip59.html#WanV97,https://doi.org/10.1006/gmip.1997.0450 +Dong Xu,Poisson shape interpolation.,2006,68,Graphical Models,3,db/journals/cvgip/cvgip68.html#XuZWB06,https://doi.org/10.1016/j.gmod.2006.03.001 +Jinliang Wu,Mesh saliency with global rarity.,2013,75,Graphical Models,5,db/journals/cvgip/cvgip75.html#WuSZL13,https://doi.org/10.1016/j.gmod.2013.05.002 +S. Arnemann,Generating halftone pictures on graphic computer terminals using run length coding.,1973,2,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip2.html#ArnemannT73,https://doi.org/10.1016/0146-664X(73)90028-2 +Frank P. Kuhl,Elliptic Fourier features of a closed contour.,1982,18,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip18.html#KuhlG82,https://doi.org/10.1016/0146-664X(82)90034-X +Jean-Daniel Boissonnat,Provably good sampling and meshing of surfaces.,2005,67,Graphical Models,5,db/journals/cvgip/cvgip67.html#BoissonnatO05,https://doi.org/10.1016/j.gmod.2005.01.004 +Jun-ichiro Toriwaki,A generalized distance transformation of a line pattern with gray values and its applications.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Toriwaki82,https://doi.org/10.1016/0146-664X(82)90129-0 +Jiwen Zhang,Extending cubic uniform B-splines by unified trigonometric and hyperbolic basis.,2005,67,Graphical Models,2,db/journals/cvgip/cvgip67.html#ZhangK05,https://doi.org/10.1016/j.gmod.2004.06.001 +Robert L. Stafford,A model building approach to property measurement in black and white pictures.,1973,2,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip2.html#Stafford73,https://doi.org/10.1016/0146-664X(73)90031-2 +André Maximo,A robust and rotationally invariant local surface descriptor with applications to non-local mesh processing.,2011,73,Graphical Models,5,db/journals/cvgip/cvgip73.html#MaximoPVF11,https://doi.org/10.1016/j.gmod.2011.05.002 +In-Kwon Lee,Polynomial/Rational Approximation of Minkowski Sum Boundary Curves.,1998,60,Graphical Models and Image Processing,2,db/journals/cvgip/cvgip60.html#LeeKE98,https://doi.org/10.1006/gmip.1998.0464 +Sei-Wang Chen,Two-Stage Dynamic Deformation for Construction of 3D Models.,1996,58,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip58.html#ChenSDC96,https://doi.org/10.1006/gmip.1996.0040 +Yanshu Zhu,Computing a compact spline representation of the medial axis transform of a 2D shape.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#ZhuSCJW14,https://doi.org/10.1016/j.gmod.2014.03.007 +Ergun Akleman,A minimal and complete set of operators for the development of robust manifold mesh modelers.,2003,65,Graphical Models,5,db/journals/cvgip/cvgip65.html#AklemanCS03,https://doi.org/10.1016/S1524-0703(03)00047-X +Kento Miyaoku,Approximating Polygonal Curves in Two and Three Dimensions.,1998,60,Graphical Models and Image Processing,3,db/journals/cvgip/cvgip60.html#MiyaokuH98,https://doi.org/10.1006/gmip.1997.0468 +Greg Reese,Image enhancement by intensity-dependent spread functions.,1992,54,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip54.html#Reese92,https://doi.org/10.1016/1049-9652(92)90033-T +B. Rosenberg,The analysis of convex blobs.,1972,1,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip1.html#Rosenberg72,https://doi.org/10.1016/S0146-664X(72)80014-5 +Mohamed Chaouch,Alignment of 3D models.,2009,71,Graphical Models,2,db/journals/cvgip/cvgip71.html#ChaouchV09,https://doi.org/10.1016/j.gmod.2008.12.006 +Ravi Malladi,Image Processing: Flows under Min/Max Curvature and Mean Curvature.,1996,58,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip58.html#MalladiS96,https://doi.org/10.1006/gmip.1996.0011 +Xavier Rolland-Nevière,Robust diameter-based thickness estimation of 3D objects.,2013,75,Graphical Models,6,db/journals/cvgip/cvgip75.html#Rolland-NeviereDA13,https://doi.org/10.1016/j.gmod.2013.06.001 +Kwang Hee Ko,Algorithms for optimal partial matching of free-form objects with scaling effects.,2005,67,Graphical Models,2,db/journals/cvgip/cvgip67.html#KoMP05,https://doi.org/10.1016/j.gmod.2004.05.005 +Yoshisuke Kurozumi,Polygonal approximation by the minimax method.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Kurozumi82,https://doi.org/10.1016/0146-664X(82)90132-0 +Ye Duan,Geometrically exact physics-based modeling and computer animation of highly flexible 1D mechanical systems.,2013,75,Graphical Models,2,db/journals/cvgip/cvgip75.html#DuanLP13,https://doi.org/10.1016/j.gmod.2013.01.001 +Qiong Zeng,Region-based bas-relief generation from a single image.,2014,76,Graphical Models,3,db/journals/cvgip/cvgip76.html#ZengMWQST14,https://doi.org/10.1016/j.gmod.2013.10.001 +Mark de Berg,On Levels of Detail in Terrains.,1998,60,Graphical Models and Image Processing,1,db/journals/cvgip/cvgip60.html#BergD98,https://doi.org/10.1006/gmip.1997.0460 +Jiwen Zhang,C-Bézier Curves and Surfaces.,1999,61,Graphical Models and Image Processing,1,db/journals/cvgip/cvgip61.html#Zhang99,https://doi.org/10.1006/gmip.1999.0490 +Gilles Burel,Determination of the Orientation of 3D Objects Using Spherical Harmonics.,1995,57,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip57.html#BurelH95,https://doi.org/10.1006/gmip.1995.1034 +Satoru Kawai,On the topology preservation property of local parallel operations.,1982,19,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip19.html#Kawai82b,https://doi.org/10.1016/0146-664X(82)90012-0 +Azriel Rosenfeld,Picture Processing: 1981.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Rosenfeld82,https://doi.org/10.1016/0146-664X(82)90113-7 +Takashi Michikawa,Sparse grid distance transforms.,2010,72,Graphical Models,4,db/journals/cvgip/cvgip72.html#MichikawaS10,https://doi.org/10.1016/j.gmod.2010.05.001 +Chin-Hung Teng,Constructing a 3D trunk model from two images.,2007,69,Graphical Models,1,db/journals/cvgip/cvgip69.html#TengCH07,https://doi.org/10.1016/j.gmod.2006.06.001 +Chung-Ming Wu,Statistical feature matrix for texture analysis.,1992,54,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip54.html#WuC92,https://doi.org/10.1016/1049-9652(92)90025-S +Paul L. Rosin,Ellipse Fitting Using Orthogonal Hyperbolae and Stirling's Oval.,1998,60,Graphical Models and Image Processing,3,db/journals/cvgip/cvgip60.html#Rosin98,https://doi.org/10.1006/gmip.1998.0471 +Rachel Alter-Gartenberg,Compact Image Representation by Edge Primitives.,1994,56,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip56.html#Alter-GartenbergHN94,https://doi.org/10.1006/cgip.1994.1001 +Georg Heygster,Rank filters in digital image processing.,1982,19,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip19.html#Heygster82a,https://doi.org/10.1016/0146-664X(82)90105-8 +R. Brons,Linguistic Methods for the Description of a Straight Line on a Grid.,1974,3,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip3.html#Brons74,https://doi.org/10.1016/0146-664X(74)90010-0 +Esdras Medeiros,Fast adaptive blue noise on polygonal surfaces.,2014,76,Graphical Models,1,db/journals/cvgip/cvgip76.html#MedeirosIPS14,https://doi.org/10.1016/j.gmod.2013.10.004 +Antonio Robles-Kelly,Estimating the surface radiance function from single images.,2005,67,Graphical Models,6,db/journals/cvgip/cvgip67.html#Robles-KellyH05,https://doi.org/10.1016/j.gmod.2004.12.003 +Jean-Philippe Thirion,Realistic 3D simulation of shapes and shadows for image processing.,1992,54,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip54.html#Thirion92,https://doi.org/10.1016/1049-9652(92)90036-W +Friedrich O. Huck,Image gathering and digital restoration for fidelity and visual quality.,1991,53,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip53.html#HuckAR91,https://doi.org/10.1016/1049-9652(91)90021-B +Jiansong Deng,Preface.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#DengHK12,https://doi.org/10.1016/j.gmod.2012.05.003 +Thomas Takacs,H2 regularity properties of singular parameterizations in isogeometric analysis.,2012,74,Graphical Models,6,db/journals/cvgip/cvgip74.html#TakacsJ12,https://doi.org/10.1016/j.gmod.2012.05.006 +Jean-Philippe Thirion,The 3D Marching Lines Algorithm.,1996,58,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip58.html#ThirionG96,https://doi.org/10.1006/gmip.1996.0042 +Chia-Wei Liao,Surface Approximation of a Cloud of 3D Points.,1995,57,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip57.html#LiaoM95,https://doi.org/10.1006/gmip.1995.1007 +Xiangrong Wang,Swendsen-Wang Cuts sampling for spatially constrained Dirichlet process mixture models.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#WangZ14,https://doi.org/10.1016/j.gmod.2014.03.008 +Gabriel Taubin,Dual Mesh Resampling.,2002,64,Graphical Models,2,db/journals/cvgip/cvgip64.html#Taubin02,https://doi.org/10.1006/gmod.2002.0571 +Ge Cong,An Algebraic Solution to Surface Recovery from Cross-Sectional Contours.,1999,61,Graphical Models and Image Processing,4,db/journals/cvgip/cvgip61.html#CongP99,https://doi.org/10.1006/gmip.1999.0499 +Jayaram K. Udupa,Multidimensional Digital Boundaries.,1994,56,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip56.html#Udupa94,https://doi.org/10.1006/cgip.1994.1028 +Eric Andres,Generalized Perpendicular Bisector and exhaustive discrete circle recognition.,2011,73,Graphical Models,6,db/journals/cvgip/cvgip73.html#AndresLR11,https://doi.org/10.1016/j.gmod.2011.06.005 +Ming Zeng,Octree-based fusion for realtime 3D reconstruction.,2013,75,Graphical Models,3,db/journals/cvgip/cvgip75.html#ZengZZL13,https://doi.org/10.1016/j.gmod.2012.09.002 +P. V. Sankar,Curve and Surface Generation and Refinement Based on a High Speed Derivative Algorithm.,1994,56,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip56.html#SankarSF94,https://doi.org/10.1006/cgip.1994.1008 +D. J. Langridge,Curve encoding and the detection of discontinuities.,1982,20,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip20.html#Langridge82,https://doi.org/10.1016/0146-664X(82)90073-9 +Haixia Du,Dynamic PDE-based surface design using geometric and physical constraints.,2005,67,Graphical Models,1,db/journals/cvgip/cvgip67.html#DuQ05,https://doi.org/10.1016/j.gmod.2004.06.002 +David Eu,On Approximating Polygonal Curves in Two and Three Dimensions.,1994,56,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip56.html#EuT94,https://doi.org/10.1006/cgip.1994.1021 +Qaiser Riaz,Motion reconstruction using very few accelerometers and ground contacts.,2015,79,Graphical Models,,db/journals/cvgip/cvgip79.html#RiazTK015,https://doi.org/10.1016/j.gmod.2015.04.001 +Leila De Floriani,An on-line algorithm for constrained Delaunay triangulation.,1992,54,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip54.html#FlorianiP92,https://doi.org/10.1016/1049-9652(92)90076-A +Shunji Mori,Sequential tracking extraction of shape features and its constructive description.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Mori82,https://doi.org/10.1016/0146-664X(82)90127-7 +Takashi Maekawa,Surface construction by fitting unorganized curves.,2002,64,Graphical Models,5,db/journals/cvgip/cvgip64.html#MaekawaK02,https://doi.org/10.1016/S1077-3169(02)00006-0 +László Varga,Direction-dependency of binary tomographic reconstruction algorithms.,2011,73,Graphical Models,6,db/journals/cvgip/cvgip73.html#VargaBN11,https://doi.org/10.1016/j.gmod.2011.06.006 +Lawrence O'Gorman,Binarization and Multithresholding of Document Images Using Connectivity.,1994,56,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip56.html#OGorman94,https://doi.org/10.1006/cgip.1994.1044 +Charles R. Dyer,The space efficiency of quadtrees.,1982,19,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip19.html#Dyer82a,https://doi.org/10.1016/0146-664X(82)90020-X +W. Richard Stevens,Software pipelines in image processing.,1982,20,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip20.html#StevensH82,https://doi.org/10.1016/0146-664X(82)90076-4 +Theo Pavlidis,An asynchronous thinning algorithm.,1982,20,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip20.html#Pavlidis82,https://doi.org/10.1016/0146-664X(82)90041-7 +Hyeong-Seok Ko,The International Workshop on Human Modeling and Animation in Graphical Models.,2001,63,Graphical Models,2,db/journals/cvgip/cvgip63.html#KoB01,https://doi.org/10.1006/gmod.2001.0550 +David H. Eberly,On gray scale image measurements : II. Surface area and volume.,1991,53,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip53.html#EberlyLA91,https://doi.org/10.1016/1049-9652(91)90005-5 +Ricard Campos,Splat-based surface reconstruction from defect-laden point sets.,2013,75,Graphical Models,6,db/journals/cvgip/cvgip75.html#CamposGAY13,https://doi.org/10.1016/j.gmod.2013.08.001 +Hirobumi Nishida,A Structural Model of Curve Deformation by Discontinuous Transformations.,1996,58,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip58.html#Nishida96,https://doi.org/10.1006/gmip.1996.0014 +H.-Y. Chen,On Surface Approximation Using Developable Surfaces.,1999,61,Graphical Models and Image Processing,2,db/journals/cvgip/cvgip61.html#ChenLLPRW99,https://doi.org/10.1006/gmip.1999.0487 +Michael H. Brill,Closed-form extension of the anharmonic ratio toN-space.,1982,20,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip20.html#BrillB82,https://doi.org/10.1016/0146-664X(82)90094-6 +Ardeshir Goshtasby,Curve Fitting by a Sum of Gaussians.,1994,56,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip56.html#GoshtasbyO94,https://doi.org/10.1006/cgip.1994.1025 +Alberto Martelli,Edge detection using heuristic search methods.,1972,1,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip1.html#Martelli72,https://doi.org/10.1016/S0146-664X(72)80013-3 +Ioannis Z. Emiris,Geometric operations using sparse interpolation matrices.,2015,82,Graphical Models,,db/journals/cvgip/cvgip82.html#EmirisKK15,https://doi.org/10.1016/j.gmod.2015.06.007 +Long Yang 0001,Multi-scale geometric detail enhancement for time-varying surfaces.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#YangXF14,https://doi.org/10.1016/j.gmod.2014.03.010 +HyeongYeop Kang,Terrain rendering with unlimited detail and resolution.,2018,97,Graphical Models,,db/journals/cvgip/cvgip97.html#KangSH18,https://doi.org/10.1016/j.gmod.2018.04.001 +Chen Li,Pore-scale flow simulation in anisotropic porous material via fluid-structure coupling.,2018,95,Graphical Models,,db/journals/cvgip/cvgip95.html#LiWZQQ18,https://doi.org/10.1016/j.gmod.2017.12.001 +Jason Sewall,Visual simulation of shockwaves.,2009,71,Graphical Models,4,db/journals/cvgip/cvgip71.html#SewallGTL09,https://doi.org/10.1016/j.gmod.2009.03.002 +Deepak Tolani,Real-Time Inverse Kinematics Techniques for Anthropomorphic Limbs.,2000,62,Graphical Models,5,db/journals/cvgip/cvgip62.html#TolaniGB00,https://doi.org/10.1006/gmod.2000.0528 +Anthony P. Reeves,The local median and other window operations in SIMD computers.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Reeves82,https://doi.org/10.1016/0146-664X(82)90154-X +Shivkumar Chandrasekaran,An Eigenspace Update Algorithm for Image Analysis.,1997,59,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip59.html#ChandrasekaranMWWZ97,https://doi.org/10.1006/gmip.1997.0425 +Reinhard Klein,Reconstruction and Simplification of Surfaces from Contours.,2000,62,Graphical Models,6,db/journals/cvgip/cvgip62.html#KleinSS00,https://doi.org/10.1006/gmod.2000.0530 +Ricardo Uribe Lobello,Out-of-core adaptive iso-surface extraction from binary volume data.,2014,76,Graphical Models,6,db/journals/cvgip/cvgip76.html#LobelloDD14,https://doi.org/10.1016/j.gmod.2014.06.001 +Larry S. Davis,Contour-based motion estimation.,1982,20,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip20.html#DavisWS82,https://doi.org/10.1016/0146-664X(82)90062-4 +Anthony P. Reeves,The local median and other window operations on SIMD computers.,1982,19,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip19.html#Reeves82a,https://doi.org/10.1016/0146-664X(82)90106-X +E. V. Krishnamurthy,Reconstruction of objects from their projections using generalized inverses.,1974,3,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip3.html#KrishnamurthyRS74,https://doi.org/10.1016/0146-664X(74)90027-6 +Günther F. Schrack,Computer graphics: A keyword-indexed bibliography for the year 1980.,1982,18,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip18.html#Schrack82,https://doi.org/10.1016/0146-664X(82)90170-8 +Claudio Montani,Using Marching Cubes on Small Machines.,1994,56,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip56.html#MontaniS94,https://doi.org/10.1006/cgip.1994.1017 +Thiago Pereira,Sketch-based warping of RGBN images.,2011,73,Graphical Models,4,db/journals/cvgip/cvgip73.html#PereiraBMSFV11,https://doi.org/10.1016/j.gmod.2010.11.001 +Pascale Gerlot-Chiron,Registration of multimodality medical images using a region overlap criterion.,1992,54,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip54.html#Gerlot-ChironB92,https://doi.org/10.1016/1049-9652(92)90024-R +Gabor T. Herman,Discrete multidimensional Jordan surfaces.,1992,54,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip54.html#Herman92,https://doi.org/10.1016/1049-9652(92)90070-E +Hendrik James Antonisse,Image segmentation in pyramids.,1982,19,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip19.html#Antonisse82a,https://doi.org/10.1016/0146-664X(82)90022-3 +Aldo Cumani,An edge-based description of color images.,1991,53,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip53.html#CumaniGG91,https://doi.org/10.1016/1049-9652(91)90035-I +Tamás Várady,Transfinite surface interpolation with interior control.,2012,74,Graphical Models,6,db/journals/cvgip/cvgip74.html#VaradySR12,https://doi.org/10.1016/j.gmod.2012.03.003 +Alain Bretto,Combinatorics and Image Processing.,1997,59,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip59.html#BrettoACL97,https://doi.org/10.1006/gmip.1997.0437 +Julian R. Ullmann,A compiler for simple boolean functions of binary patterns.,1973,2,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip2.html#Ullmann73,https://doi.org/10.1016/0146-664X(73)90021-X +Chengjun Sun,Neighboring gray level dependence matrix for texture classification.,1982,20,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip20.html#SunW82,https://doi.org/10.1016/0146-664X(82)90093-4 +Alexander A. Pasko,Constructive Hypervolume Modeling.,2001,63,Graphical Models,6,db/journals/cvgip/cvgip63.html#PaskoASS01,https://doi.org/10.1006/gmod.2001.0560 +Ernesto Bribiesca,Digital Elevation Model Data Analysis Using the Contact Surface Area.,1998,60,Graphical Models and Image Processing,2,db/journals/cvgip/cvgip60.html#Bribiesca98,https://doi.org/10.1006/gmip.1998.0463 +R. Williams,Ex. FRAF: An extensible language including graphical operations.,1972,1,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip1.html#WilliamsK72,https://doi.org/10.1016/0146-664X(72)90019-6 +T. Huang,Stochastic syntactic analysis for programmed grammars and syntactic pattern recognition.,1972,1,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip1.html#HuangF72,https://doi.org/10.1016/S0146-664X(72)80018-2 +Hyewon Seo,An example-based approach to human body manipulation.,2004,66,Graphical Models,1,db/journals/cvgip/cvgip66.html#SeoM04,https://doi.org/10.1016/j.gmod.2003.07.004 +Yizi Wu,A double layer method for constructing signed distance fields from triangle meshes.,2014,76,Graphical Models,4,db/journals/cvgip/cvgip76.html#WuMX14,https://doi.org/10.1016/j.gmod.2014.04.011 +Baldemar Gil,Experiments in combining intensity and range-edge maps.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#GilMA82,https://doi.org/10.1016/0146-664X(82)90167-8 +John C. Handley,Maximum-Likelihood Estimation for the Two-Dimensional Discrete Boolean Random Set and Function Models Using Multidimensional Linear Samples.,1997,59,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip59.html#HandleyD97,https://doi.org/10.1006/gmip.1997.0432 +Min Chen,Special Issue on Volume Modeling.,2001,63,Graphical Models,6,db/journals/cvgip/cvgip63.html#ChenNK01,https://doi.org/10.1006/gmod.2002.0564 +Hyeong In Choi,New Algorithm for Medial Axis Transform of Plane Domain.,1997,59,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip59.html#ChoiCMW97,https://doi.org/10.1006/gmip.1997.0444 +Manolya Eyiyurekli,Detail-preserving level set surface editing and geometric texture transfer.,2017,93,Graphical Models,,db/journals/cvgip/cvgip93.html#EyiyurekliB17,https://doi.org/10.1016/j.gmod.2017.08.002 +Ken D. Sauer,Enhancement of low bit-rate coded images using edge detection and estimation.,1991,53,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip53.html#Sauer91,https://doi.org/10.1016/1049-9652(91)90019-G +Min-Ho Kyung,A New Approach to Through-the-Lens Camera Control.,1996,58,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip58.html#KyungKH96,https://doi.org/10.1006/gmip.1996.0022 +Jean Françon,Discrete Combinatorial Surfaces.,1995,57,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip57.html#Francon95,https://doi.org/10.1006/gmip.1995.1003 +Ta-Chih Lee,Building Skeleton Models via 3-D Medial Surface/Axis Thinning Algorithms.,1994,56,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip56.html#LeeKC94,https://doi.org/10.1006/cgip.1994.1042 +Arash Bahrehmand,Optimizing layout using spatial quality metrics and user preferences.,2017,93,Graphical Models,,db/journals/cvgip/cvgip93.html#BahrehmandBMEB17,https://doi.org/10.1016/j.gmod.2017.08.003 +B. Prescott,Line-Based Correction of Radial Lens Distortion.,1997,59,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip59.html#PrescottM97,https://doi.org/10.1006/gmip.1996.0407 +David Pickup,An evaluation of canonical forms for non-rigid 3D shape retrieval.,2018,97,Graphical Models,,db/journals/cvgip/cvgip97.html#PickupLSRMCLNJS18,https://doi.org/10.1016/j.gmod.2018.02.002 +Gerald E. Farin,Agnostic G1 Gregory surfaces.,2012,74,Graphical Models,6,db/journals/cvgip/cvgip74.html#FarinH12,https://doi.org/10.1016/j.gmod.2012.05.004 +Nikhil Gagvani,Parameter-Controlled Volume Thinning.,1999,61,Graphical Models and Image Processing,3,db/journals/cvgip/cvgip61.html#GagvaniS99,https://doi.org/10.1006/gmip.1999.0495 +Reinhard Klette,Digital Approximation of Moments of Convex Regions.,1999,61,Graphical Models and Image Processing,5,db/journals/cvgip/cvgip61.html#KletteZ99,https://doi.org/10.1006/gmip.1999.0501 +Michael Barton,Spiral fat arcs - Bounding regions with cubic convergence.,2011,73,Graphical Models,2,db/journals/cvgip/cvgip73.html#BartonE11,https://doi.org/10.1016/j.gmod.2010.10.005 +Martin Isenburg,Compressing hexahedral volume meshes.,2003,65,Graphical Models,4,db/journals/cvgip/cvgip65.html#IsenburgA03,https://doi.org/10.1016/S1524-0703(03)00044-4 +Yu-Wei Zhang,Line-based sunken relief generation from a 3D mesh.,2013,75,Graphical Models,6,db/journals/cvgip/cvgip75.html#ZhangZLZ13,https://doi.org/10.1016/j.gmod.2013.07.002 +Gábor Kiss,Adaptive CAD model (re-)construction with THB-splines.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#KissGZJGB14,https://doi.org/10.1016/j.gmod.2014.03.017 +Achille J.-P. Braquelaire,A color model for rendering linear passive graphic 2D objects.,2004,66,Graphical Models,2,db/journals/cvgip/cvgip66.html#BraquelaireS04,https://doi.org/10.1016/j.gmod.2003.11.002 +Longin Jan Latecki,3D Well-Composed Pictures.,1997,59,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip59.html#Latecki97,https://doi.org/10.1006/gmip.1997.0422 +C. P. Liu,A New Two Successive Process Image Compression Technique Using Subband Coding and JPEG Discrete Cosine Transform Coding.,1997,59,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip59.html#Liu97,https://doi.org/10.1006/gmip.1997.0430 +Hua Zhu,Adaptive tetrahedral remeshing for modified solid models.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#ZhuGLP12,https://doi.org/10.1016/j.gmod.2012.03.005 +Eugene Fiume,Coverage masks and convolution tables for fast area sampling.,1991,53,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip53.html#Fiume91a,https://doi.org/10.1016/1049-9652(91)90016-D +J. J. Hwang,Matching of featured objects relational tables from stereo images.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Hwang82,https://doi.org/10.1016/0146-664X(82)90124-1 +Minqi Zhang,Automatic registration of vestibular systems with exact landmark correspondence.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#ZhangLWWXLSWH14,https://doi.org/10.1016/j.gmod.2014.04.010 +Falai Chen,Special Issue of selected papers from the 2014 Dagstuhl seminar on Geometric Modeling.,2015,82,Graphical Models,,db/journals/cvgip/cvgip82.html#ChenDGH15,https://doi.org/10.1016/j.gmod.2015.11.001 +Juan José Jiménez-Delgado,Tetra-trees properties in graphic interaction.,2011,73,Graphical Models,5,db/journals/cvgip/cvgip73.html#JimenezFS11,https://doi.org/10.1016/j.gmod.2011.03.003 +Maria Boschiroli,G1 rational blend interpolatory schemes: A comparative study.,2012,74,Graphical Models,1,db/journals/cvgip/cvgip74.html#BoschiroliFRA12,https://doi.org/10.1016/j.gmod.2011.11.002 +Juan Gerardo Alcázar,Algebraic surfaces invariant under scissor shears.,2016,87,Graphical Models,,db/journals/cvgip/cvgip87.html#AlcazarGH16,https://doi.org/10.1016/j.gmod.2016.09.001 +Yongchoel Choi,Injectivity Conditions of 2D and 3D Uniform Cubic B-Spline Functions.,2000,62,Graphical Models,6,db/journals/cvgip/cvgip62.html#ChoiL00,https://doi.org/10.1006/gmod.2000.0531 +Robert M. Haralick,Understanding engineering drawings.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#HaralickQ82a,https://doi.org/10.1016/0146-664X(82)90146-0 +Jean-Christophe Olivo,Automatic Threshold Selection Using the Wavelet Transform.,1994,56,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip56.html#Olivo94,https://doi.org/10.1006/cgip.1994.1019 +Gill Barequet,Contour interpolation by straight skeletons.,2004,66,Graphical Models,4,db/journals/cvgip/cvgip66.html#BarequetGLS04,https://doi.org/10.1016/j.gmod.2004.05.001 +Mustafa Hajij,Segmenting a surface mesh into pants using Morse theory.,2016,88,Graphical Models,,db/journals/cvgip/cvgip88.html#HajijDL16,https://doi.org/10.1016/j.gmod.2016.09.003 +Christoph Lürig,Hierarchical Solutions for the Deformable Surface Problem in Visualization.,2000,62,Graphical Models,1,db/journals/cvgip/cvgip62.html#LurigKE00,https://doi.org/10.1006/gmod.1999.0515 +Marie-Paule Cani,SCA 2006 Symposium.,2009,71,Graphical Models,6,db/journals/cvgip/cvgip71.html#CaniPOO09,https://doi.org/10.1016/j.gmod.2009.10.002 +Carlo Arcelli,Concavity Point Detection by Iterative Arrays.,1974,3,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip3.html#ArcelliC74,https://doi.org/10.1016/0146-664X(74)90009-4 +Jefferey A. Shufelt,Texture Analysis for Enhanced Color Image Quantization.,1997,59,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip59.html#Shufelt97,https://doi.org/10.1006/gmip.1997.0428 +Dang-Manh Nguyen,Isogeometric segmentation. Part II: On the segmentability of contractible solids with non-convex edges.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#NguyenPJ14,https://doi.org/10.1016/j.gmod.2014.03.013 +Rolf Adams,Radial Decomposition of Discs and Spheres.,1993,55,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip55.html#Adams93,https://doi.org/10.1006/cgip.1993.1024 +Long Zhang 0001,Efficient and robust 3D line drawings using difference-of-Gaussian.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#ZhangXYHMS12,https://doi.org/10.1016/j.gmod.2012.03.006 +Shaoting Zhang,Robust mesh editing using Laplacian coordinates.,2011,73,Graphical Models,1,db/journals/cvgip/cvgip73.html#ZhangHM11,https://doi.org/10.1016/j.gmod.2010.10.003 +Emily G. Johnston,Printed Text Discrimination.,1974,3,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip3.html#Johnston74,https://doi.org/10.1016/0146-664X(74)90012-4 +Innchyn Her,Resampling on a Pseudohexagonal Grid.,1994,56,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip56.html#HerY94,https://doi.org/10.1006/cgip.1994.1030 +Guo-Xin Zhang,Efficient synthesis of gradient solid textures.,2013,75,Graphical Models,3,db/journals/cvgip/cvgip75.html#ZhangLH13,https://doi.org/10.1016/j.gmod.2012.10.006 +J. G. Jones,Multiresolution statistical analysis of computer-generated fractal imagery.,1991,53,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip53.html#JonesTEA91,https://doi.org/10.1016/1049-9652(91)90038-L +Chia-Yiu Maa,Identifying the Existence of Bar Codes in Compressed Images.,1994,56,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip56.html#Maa94,https://doi.org/10.1006/cgip.1994.1032 +Björn Gudmundsson,An interactive high-level language system for picture processing.,1982,18,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip18.html#Gudmundsson82,https://doi.org/10.1016/0146-664X(82)90007-7 +Byron Bashforth,Physics-Based Explosion Modeling.,2001,63,Graphical Models,1,db/journals/cvgip/cvgip63.html#BashforthY01,https://doi.org/10.1006/gmod.2000.0536 +Rein van den Boomgaard,Methods for fast morphological image transforms using bitmapped binary images.,1992,54,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip54.html#BoomgaardB92,https://doi.org/10.1016/1049-9652(92)90055-3 +Romain Arcila,Segmentation of temporal mesh sequences into rigidly moving components.,2013,75,Graphical Models,1,db/journals/cvgip/cvgip75.html#ArcilaCHBD13,https://doi.org/10.1016/j.gmod.2012.10.004 +José L. Marroquín,Deterministic Interactive Particle Models for Image Processing and Computer Graphics.,1993,55,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip55.html#Marroquin93,https://doi.org/10.1006/cgip.1993.1031 +Russell M. Mersereau,Recovering multidimensional signals from their projections.,1973,2,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip2.html#Mersereau73,https://doi.org/10.1016/0146-664X(73)90026-9 +Jonàs Martínez,Skeletal representations of orthogonal shapes.,2013,75,Graphical Models,4,db/journals/cvgip/cvgip75.html#MartinezGA13,https://doi.org/10.1016/j.gmod.2013.03.005 +Jie Yang,Biharmonic deformation transfer with automatic key point selection.,2018,98,Graphical Models,,db/journals/cvgip/cvgip98.html#YangGLRX18,https://doi.org/10.1016/j.gmod.2018.05.003 +Sunil Kumar Kopparapu,The Effect of Noise on Camera Calibration Parameters.,2001,63,Graphical Models,5,db/journals/cvgip/cvgip63.html#KopparapuC01,https://doi.org/10.1006/gmod.2001.0551 +Bo Li 0013,Efficient 3D reflection symmetry detection: A view-based approach.,2016,83,Graphical Models,,db/journals/cvgip/cvgip83.html#0013JYL16,https://doi.org/10.1016/j.gmod.2015.09.003 +S. N. Jayaramamurthy,An approach to the segmentation of textured dynamic scenes.,1982,20,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip20.html#JayaramamurthyJ82,https://doi.org/10.1016/0146-664X(82)90050-8 +Minglun Gong,Layer-Based Morphing.,2001,63,Graphical Models,1,db/journals/cvgip/cvgip63.html#GongY01,https://doi.org/10.1006/gmod.2000.0537 +Giuseppe Patanè,Families of cut-graphs for bordered meshes with arbitrary genus.,2007,69,Graphical Models,2,db/journals/cvgip/cvgip69.html#PataneSF07,https://doi.org/10.1016/j.gmod.2006.09.004 +Franz-Erich Wolter,Special Issue for CGI '98.,2000,62,Graphical Models,1,db/journals/cvgip/cvgip62.html#WolterP00,https://doi.org/10.1006/gmod.1999.0516 +Anais Badoual,A non-stationary subdivision scheme for the construction of deformable models with sphere-like topology.,2017,94,Graphical Models,,db/journals/cvgip/cvgip94.html#BadoualNRSU17,https://doi.org/10.1016/j.gmod.2017.10.001 +Luiz Velho,Constructing Implicit Shape Models from Boundary Data.,1995,57,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip57.html#VelhoTG95,https://doi.org/10.1006/gmip.1995.1021 +Xiaohua Zhou,Generation of noise in binary images.,1991,53,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip53.html#ZhouG91,https://doi.org/10.1016/1049-9652(91)90031-E +Ying He 0001,Harmonic 1-form based skeleton extraction from examples.,2009,71,Graphical Models,2,db/journals/cvgip/cvgip71.html#HeXS09,https://doi.org/10.1016/j.gmod.2008.12.008 +Demetri Terzopoulos,Detection of osteogenesis imperfecta by automated texture analysis.,1982,20,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip20.html#TerzopoulosZ82,https://doi.org/10.1016/0146-664X(82)90082-X +Ye Duan,A subdivision-based deformable model for surface reconstruction of unknown topology.,2004,66,Graphical Models,4,db/journals/cvgip/cvgip66.html#DuanQ04,https://doi.org/10.1016/j.gmod.2004.05.004 +Steven M. Rubin,The representation and display of scenes with a wide range o f detail.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Rubin82,https://doi.org/10.1016/0146-664X(82)90155-1 +Tommy Elfving,Some properties of stochastic labeling procedures.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#ElfvingE82a,https://doi.org/10.1016/0146-664X(82)90141-1 +Frank Y. Shih,An Improved Fast Algorithm for the Restoration of Images Based on Chain Codes Description.,1994,56,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip56.html#ShihW94,https://doi.org/10.1006/cgip.1994.1031 +Ken-ichi Kanatani,Cramer-Rao Lower Bounds for Curve Fitting.,1998,60,Graphical Models and Image Processing,2,db/journals/cvgip/cvgip60.html#Kanatani98,https://doi.org/10.1006/gmip.1998.0466 +Mark Berman,Estimating Band-to-Band Misregistrations in Aliased Imagery.,1994,56,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip56.html#BermanBDGC94,https://doi.org/10.1006/cgip.1994.1043 +James D. Foley,Review of Graphic Languages (1972).,1973,2,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip2.html#FoleyP73,https://doi.org/10.1016/0146-664X(73)90027-0 +Antoni Chica,Example-guided segmentation.,2012,74,Graphical Models,6,db/journals/cvgip/cvgip74.html#ChicaMBNV12,https://doi.org/10.1016/j.gmod.2012.03.002 +Kálmán Palágyi,A Parallel 3D 12-Subiteration Thinning Algorithm.,1999,61,Graphical Models and Image Processing,4,db/journals/cvgip/cvgip61.html#PalagyiK99,https://doi.org/10.1006/gmip.1999.0498 +Caroline Houle,Light-Source Modeling Using Pyramidal Light Maps.,1993,55,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip55.html#HouleF93,https://doi.org/10.1006/cgip.1993.1026 +Soo-Chang Pei,An Efficient Class of Alternating Sequential Filters in Morphology.,1997,59,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip59.html#PeiLS97,https://doi.org/10.1006/gmip.1996.0416 +Paul L. Rosin,Further Five-Point Fit Ellipse Fitting.,1999,61,Graphical Models and Image Processing,5,db/journals/cvgip/cvgip61.html#Rosin99,https://doi.org/10.1006/gmip.1999.0500 +Bingcheng Li,Pascal triangle transform approach to the calculation of 3D moments.,1992,54,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip54.html#LiS92,https://doi.org/10.1016/1049-9652(92)90077-B +Azriel Rosenfeld,Picture processing: 1973.,1974,3,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip3.html#Rosenfeld74,https://doi.org/10.1016/S0146-664X(74)80006-7 +Susan M. Haynes,Detection of moving edges.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#HayneJ82,https://doi.org/10.1016/0146-664X(82)90147-2 +Robert P. Loce,Mean-Absolute-Error Representation and Optimization of Computational-Morphological Filters.,1995,57,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip57.html#Loce95,https://doi.org/10.1006/gmip.1995.1004 +J. F. O'Callaghan,Recovery of perceptual shape organizations from simple closed boundaries.,1974,3,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip3.html#OCallaghan74a,https://doi.org/10.1016/0146-664X(74)90023-9 +Finian Mwalongo,GPU-based remote visualization of dynamic molecular data on the web.,2016,88,Graphical Models,,db/journals/cvgip/cvgip88.html#MwalongoKBRE16,https://doi.org/10.1016/j.gmod.2016.05.001 +John Mylopoulos,On the recognition of topological invariants by 4-way finite automata.,1972,1,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip1.html#Mylopoulos72,https://doi.org/10.1016/S0146-664X(72)80020-0 +Yuan Liu,Globally consistent rigid registration.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#LiuZYDL14,https://doi.org/10.1016/j.gmod.2014.04.003 +Jonathan Starck,Virtual view synthesis of people from multiple view video sequences.,2005,67,Graphical Models,6,db/journals/cvgip/cvgip67.html#StarckH05,https://doi.org/10.1016/j.gmod.2005.01.008 +Stefano Marras,Motion-based mesh segmentation using augmented silhouettes.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#MarrasBHSS12,https://doi.org/10.1016/j.gmod.2012.04.001 +Jie Shen,Deformable Object Modeling Using the Time-Dependent Finite Element Method.,1998,60,Graphical Models and Image Processing,6,db/journals/cvgip/cvgip60.html#ShenY98,https://doi.org/10.1006/gmip.1998.0484 +Sudhakar Yalamanchili,Extraction of moving object descriptions via differencing.,1982,18,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip18.html#YalamanchiliMA82,https://doi.org/10.1016/0146-664X(82)90171-X +Nilo Stolte,Novel Techniques for Robust Voxelization and Visualization of Implicit Surfaces.,2001,63,Graphical Models,6,db/journals/cvgip/cvgip63.html#StolteK01,https://doi.org/10.1006/gmod.2001.0559 +Juan Gerardo Alcázar,Recognizing projections of algebraic curves.,2016,87,Graphical Models,,db/journals/cvgip/cvgip87.html#AlcazarH16,https://doi.org/10.1016/j.gmod.2016.07.002 +Xinyu Zhang 0002,Efficient texture synthesis using strict Wang Tiles.,2008,70,Graphical Models,3,db/journals/cvgip/cvgip70.html#ZhangK08,https://doi.org/10.1016/j.gmod.2007.10.002 +Jinyuan Jia,Quadric decomposition for computing the intersections of surfaces of revolution.,2004,66,Graphical Models,5,db/journals/cvgip/cvgip66.html#JinyuanBK04,https://doi.org/10.1016/j.gmod.2004.05.007 +Minjung Son,Structure grid for directional stippling.,2011,73,Graphical Models,3,db/journals/cvgip/cvgip73.html#SonLKL11,https://doi.org/10.1016/j.gmod.2010.12.001 +Xianfang Sun,Noise analysis and synthesis for 3D laser depth scanners.,2009,71,Graphical Models,2,db/journals/cvgip/cvgip71.html#SunRML09,https://doi.org/10.1016/j.gmod.2008.12.002 +T. Yung Kong,A justification of a fast surface tracking algorithm.,1992,54,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip54.html#KongU92,https://doi.org/10.1016/1049-9652(92)90063-4 +A. Mokrane,A new image contrast enhancement technique based on a contrast discrimination model.,1992,54,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip54.html#Mokrane92,https://doi.org/10.1016/1049-9652(92)90064-5 +Alexis Angelidis,Sweepers: Swept deformation defined by gesture.,2006,68,Graphical Models,1,db/journals/cvgip/cvgip68.html#AngelidisWC06,https://doi.org/10.1016/j.gmod.2005.08.002 +Vincenzo Caglioti,On the Uncertainty of Straight Lines in Digital Images.,1993,55,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip55.html#Caglioti93,https://doi.org/10.1006/cgip.1993.1018 +Nahum Kiryati,Antialiasing the Hough transform.,1991,53,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip53.html#KiryatiB91a,https://doi.org/10.1016/1049-9652(91)90043-J +Antonio J. Rueda Ruiz,Rasterizing complex polygons without tessellations.,2004,66,Graphical Models,3,db/journals/cvgip/cvgip66.html#RuizSFM04,https://doi.org/10.1016/j.gmod.2004.01.001 +Kestutis Karciauskas,Point-augmented biquadratic C1 subdivision surfaces.,2015,77,Graphical Models,,db/journals/cvgip/cvgip77.html#KarciauskasP15,https://doi.org/10.1016/j.gmod.2014.10.003 +Saibal Banerjee,Pyramid computation of neighbor distance statistics in dot patterns.,1991,53,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip53.html#BanerjeeMR91,https://doi.org/10.1016/1049-9652(91)90040-Q +Yiu-Tong Chan,An Approximate Maximum Likelihood Linear Estimator of Circle Parameters.,1997,59,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip59.html#ChanT97,https://doi.org/10.1006/gmip.1997.0424 +Tao Liao,Structure-aligned guidance estimation in surface parameterization using eigenfunction-based cross field.,2014,76,Graphical Models,6,db/journals/cvgip/cvgip76.html#LiaoXZ14,https://doi.org/10.1016/j.gmod.2014.08.001 +Yehuda E. Kalay,Determining the spatial containment of a point in general polyhedra.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Kalay82,https://doi.org/10.1016/0146-664X(82)90135-6 +Florian Buchegger,Total curvature variation fairing for medial axis regularization.,2014,76,Graphical Models,6,db/journals/cvgip/cvgip76.html#BucheggerJK14,https://doi.org/10.1016/j.gmod.2014.06.004 +M. Barrat,Recursive Wavelet Transform for 2D Signals.,1994,56,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip56.html#BarratL94,https://doi.org/10.1006/cgip.1994.1010 +Wenqi Huang,A Quasi-mechanical Method for Solving the Rectangle Covering Problem An Approach to Tackling NP Hard Problems.,1994,56,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip56.html#WenqiG94,https://doi.org/10.1006/cgip.1994.1023 +Brian A. Barsky,Special Issue on Pacific Graphics 2000.,2001,63,Graphical Models,4,db/journals/cvgip/cvgip63.html#BarskySW01,https://doi.org/10.1006/gmod.2001.0561 +W. Eric L. Grimson,Surface consistency constraints in vision.,1982,20,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip20.html#Grimson82,https://doi.org/10.1016/0146-664X(82)90064-8 +Tao Ju,Preface.,2014,76,Graphical Models,3,db/journals/cvgip/cvgip76.html#JuB14,https://doi.org/10.1016/j.gmod.2014.02.001 +Lennart Thurfjell,A Boundary Approach for Fast Neighborhood Operations on Three-Dimensional Binary Data.,1995,57,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip57.html#ThurfjellBN95,https://doi.org/10.1006/gmip.1995.1002 +Oscar Argudo,Biharmonic fields and mesh completion.,2015,82,Graphical Models,,db/journals/cvgip/cvgip82.html#ArgudoBCV15,https://doi.org/10.1016/j.gmod.2015.06.010 +Ken Knowlton,Computer-produced grey scales.,1972,1,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip1.html#KnowltonH72,https://doi.org/10.1016/S0146-664X(72)80003-0 +Gábor Németh,Thinning combined with iteration-by-iteration smoothing for 3D binary images.,2011,73,Graphical Models,6,db/journals/cvgip/cvgip73.html#NemethKP11,https://doi.org/10.1016/j.gmod.2011.02.001 +Francesco Bonarrigo,Deformable registration using patch-wise shape matching.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#BonarrigoSB14,https://doi.org/10.1016/j.gmod.2014.04.004 +Cornelis H. Slump,A network flow approach to reconstruction of the left ventricle from two projections.,1982,18,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip18.html#SlumpG82,https://doi.org/10.1016/0146-664X(82)90097-1 +Eugene Fiume,A mathematical semantics of rendering : II. Approximation.,1991,53,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip53.html#Fiume91,https://doi.org/10.1016/1049-9652(91)90015-C +Guo-Zhao Wang,Bounds on the Moving Control Points of Hybrid Curves.,1997,59,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip59.html#WangZ97,https://doi.org/10.1006/gmip.1996.0411 +Ilya Braude,Contour-based surface reconstruction using MPU implicit models.,2007,69,Graphical Models,2,db/journals/cvgip/cvgip69.html#BraudeMMNB07,https://doi.org/10.1016/j.gmod.2006.09.007 +Xiaopeng Sun,3D ear recognition using local salience and principal manifold.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#SunWWSW14,https://doi.org/10.1016/j.gmod.2014.03.003 +I. S. I. Abuhaiba,Processing of Off-Line Handwritten Text: Polygonal Approximation and Enforcement of Temporal Information.,1994,56,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip56.html#AbuhaibaHD94,https://doi.org/10.1006/cgip.1994.1029 +Thomas C. M. Lee,Nonparametric Estimation and Simulation of Two-Dimensional Gaussian Image Textures.,1997,59,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip59.html#LeeB97,https://doi.org/10.1006/gmip.1997.0439 +James R. Miller,Geometric Algorithms for Detecting and Calculating All Conic Sections in the Intersection of Any 2 Natural Quadric Surfaces.,1995,57,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip57.html#MillerG95,https://doi.org/10.1006/gmip.1995.1006 +Vishwakumara Kayargadde,Estimation of Edge Parameters and Image Blur Using Polynomial Transforms.,1994,56,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip56.html#KayargaddeM94,https://doi.org/10.1006/cgip.1994.1041 +Jiansong Deng,Polynomial splines over hierarchical T-meshes.,2008,70,Graphical Models,4,db/journals/cvgip/cvgip70.html#DengCLHTYF08,https://doi.org/10.1016/j.gmod.2008.03.001 +Joel S. Welling,Rotation of 3D volumes by Fourier-interpolated shears.,2006,68,Graphical Models,4,db/journals/cvgip/cvgip68.html#WellingEY06,https://doi.org/10.1016/j.gmod.2005.11.004 +Wen-Yen Wu,A dynamic method for dominant point detection.,2002,64,Graphical Models,5,db/journals/cvgip/cvgip64.html#Wu02,https://doi.org/10.1016/S1077-3169(02)00008-4 +Jean-Pierre Crettez,A model for cell receptive fields in the visual striate cortex.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#CrettezS82a,https://doi.org/10.1016/0146-664X(82)90126-5 +Wolf-Dieter Groch,Extraction of line shaped objects from aerial images using a special operator to analyze the profiles of functions.,1982,18,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip18.html#Groch82,https://doi.org/10.1016/0146-664X(82)90003-X +Sylvain Paris,Robust acquisition of 3D informations from short image sequences.,2003,65,Graphical Models,4,db/journals/cvgip/cvgip65.html#ParisS03,https://doi.org/10.1016/S1524-0703(03)00041-9 +Peter Meer,Multiresolution Adaptive Image Smoothing.,1994,56,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip56.html#MeerPC94,https://doi.org/10.1006/cgip.1994.1013 +Donna J. Williams,Edge Characterization Using Normalized Edge Detector.,1993,55,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip55.html#WilliamsS93,https://doi.org/10.1006/cgip.1993.1021 +Jianmin Zheng,Perturbing Bézier coefficients for best constrained degree reduction in the L2-norm.,2003,65,Graphical Models,6,db/journals/cvgip/cvgip65.html#ZhengW03,https://doi.org/10.1016/j.gmod.2003.07.001 +Michiel van de Panne,Physically Based Modeling and Control of Turning.,1993,55,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip55.html#PanneFV93,https://doi.org/10.1006/cgip.1993.1038 +Shiguang Liu,Simulation of atmospheric binary mixtures based on two-fluid model.,2008,70,Graphical Models,6,db/journals/cvgip/cvgip70.html#LiuWGP08,https://doi.org/10.1016/j.gmod.2008.04.002 +Patrick Moreau,Generation of Shading-Off in Images by Extrapolation of Lipschitz Functions.,1996,58,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip58.html#MoreauR96,https://doi.org/10.1006/gmip.1996.0026 +A. R. Forrest,On coons and other methods for the representation of curved surfaces.,1972,1,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip1.html#Forrest72,https://doi.org/10.1016/0146-664X(72)90020-2 +Paul Dierckx,Algorithms for smoothing data with periodic and parametric splines.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Dierckx82a,https://doi.org/10.1016/0146-664X(82)90144-7 +Nahum Kiryati,Gray levels can improve the performance of binary image digitizers.,1991,53,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip53.html#KiryatiB91,https://doi.org/10.1016/1049-9652(91)90017-E +Wei Zeng,Discrete heat kernel determines discrete Riemannian metric.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#ZengGLG12,https://doi.org/10.1016/j.gmod.2012.03.009 +Alexander A. Pasko,Procedural function-based modelling of volumetric microstructures.,2011,73,Graphical Models,5,db/journals/cvgip/cvgip73.html#PaskoFVFA11,https://doi.org/10.1016/j.gmod.2011.03.001 +Joseph O'Rourke,On the Scaling Heuristic for Reconstruction from Slices.,1994,56,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip56.html#ORourke94,https://doi.org/10.1006/cgip.1994.1038 +Josildo Pereira da Silva,A new optimization approach for mass-spring models parameterization.,2015,81,Graphical Models,,db/journals/cvgip/cvgip81.html#SilvaGA15,https://doi.org/10.1016/j.gmod.2015.07.001 +George K. Knopf,Interpolating scattered data using 2D self-organizing feature maps.,2004,66,Graphical Models,1,db/journals/cvgip/cvgip66.html#KnopfS04,https://doi.org/10.1016/j.gmod.2003.08.001 +Ami Steiner,Planar Shape Enhancement and Exaggeration.,1998,60,Graphical Models and Image Processing,2,db/journals/cvgip/cvgip60.html#SteinerKB98,https://doi.org/10.1006/gmip.1998.0461 +Gerald E. Farin,A construction for visualC1 continuity of polynomial surface patches.,1982,20,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip20.html#Farin82,https://doi.org/10.1016/0146-664X(82)90085-5 +John L. Pfaltz,Web grammars and picture description.,1972,1,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip1.html#Pfaltz72,https://doi.org/10.1016/S0146-664X(72)80015-7 +WuJun Che,"Corrigendum to ""Skeleton-driven 2D distance field metamorphosis using intrinsic shape parameters.",2004,66,Graphical Models,4,db/journals/cvgip/cvgip66.html#CheYW04a,https://doi.org/10.1016/j.gmod.2004.04.001 +Kestutis Karciauskas,Free-form splines combining NURBS and basic shapes.,2012,74,Graphical Models,6,db/journals/cvgip/cvgip74.html#KarciauskasP12,https://doi.org/10.1016/j.gmod.2012.05.005 +Baba C. Vemuri,Efficient and Accurate Collision Detection for Granular Flow Simulation.,1998,60,Graphical Models and Image Processing,6,db/journals/cvgip/cvgip60.html#VemuriCVZW98,https://doi.org/10.1006/gmip.1998.0479 +Alla Sheffer,Skinning 3D meshes.,2003,65,Graphical Models,5,db/journals/cvgip/cvgip65.html#Sheffer03,https://doi.org/10.1016/S1524-0703(03)00049-3 +Allen V. Hershey,A computer system for scientific typography.,1972,1,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip1.html#Hershey72,https://doi.org/10.1016/0146-664X(72)90022-6 +Phillip J. Barry,Interpolation and approximation of curves and surfaces using Pólya polynomials.,1991,53,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip53.html#BarryG91,https://doi.org/10.1016/1049-9652(91)90057-Q +Xavier Granier,A simple layered RGB BRDF model.,2003,65,Graphical Models,4,db/journals/cvgip/cvgip65.html#GranierH03,https://doi.org/10.1016/S1524-0703(03)00042-0 +Wen-Yen Wu,Performance evaluation of some noise reduction methods.,1992,54,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip54.html#WuWL92,https://doi.org/10.1016/1049-9652(92)90061-2 +Anupam N. Shah,Pebble automata on arrays.,1974,3,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip3.html#Shah74,https://doi.org/10.1016/0146-664X(74)90017-3 +Han Kyul Joo,Differential geometry properties of lines of curvature of parametric surfaces and their visualization.,2014,76,Graphical Models,4,db/journals/cvgip/cvgip76.html#JooYTM14,https://doi.org/10.1016/j.gmod.2014.05.001 +Jason Williams,Mason: morphological simplification.,2005,67,Graphical Models,4,db/journals/cvgip/cvgip67.html#WilliamsR05,https://doi.org/10.1016/j.gmod.2004.10.001 +Yves Bertrand,Algebraic Specification of a 3D-Modeler Based on Hypermaps.,1994,56,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip56.html#BertrandD94,https://doi.org/10.1006/cgip.1994.1005 +S. F. Burch,Image restoration by a powerful maximum entropy method.,1982,20,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip20.html#BurchGS82,https://doi.org/10.1016/0146-664X(82)90045-4 +Seiichi Nishihara,False contour removal by random blurring.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#NishiharaI82a,https://doi.org/10.1016/0146-664X(82)90162-9 +Georges-Pierre Bonneau,Flexible G1 interpolation of quad meshes.,2014,76,Graphical Models,6,db/journals/cvgip/cvgip76.html#BonneauH14,https://doi.org/10.1016/j.gmod.2014.09.001 +Donald Meagher,Geometric modeling using octree encoding.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Meagher82,https://doi.org/10.1016/0146-664X(82)90128-9 +Ku-Jin Kim,Torus/Sphere Intersection Based on a Configuration Space Approach.,1998,60,Graphical Models and Image Processing,1,db/journals/cvgip/cvgip60.html#KimKO98,https://doi.org/10.1006/gmip.1997.0451 +Gift Siromoney,Array Grammars and Kolam.,1974,3,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip3.html#SiromoneySK74,https://doi.org/10.1016/0146-664X(74)90011-2 +Reinhard Klette,A Parametrization of Digital Planes by Least-Squares Fits and Generalizations.,1996,58,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip58.html#KletteSZ96,https://doi.org/10.1006/gmip.1996.0024 +Lubin Fan,Sketch-based mesh cutting: A comparative study.,2012,74,Graphical Models,6,db/journals/cvgip/cvgip74.html#FanML12,https://doi.org/10.1016/j.gmod.2012.03.001 +Polina Golland,Why R.G.B.? Or How to Design Color Displays for Martians.,1996,58,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip58.html#GollandB96,https://doi.org/10.1006/gmip.1996.0034 +Bohumír Bastl,Simple and branched skins of systems of circles and convex shapes.,2015,78,Graphical Models,,db/journals/cvgip/cvgip78.html#BastlKL15,https://doi.org/10.1016/j.gmod.2014.12.001 +Xufang Pang,An effective quad-dominant meshing method for unorganized point clouds.,2014,76,Graphical Models,2,db/journals/cvgip/cvgip76.html#PangSL14,https://doi.org/10.1016/j.gmod.2013.11.004 +Zoltan Kato,A Hierarchical Markov Random Field Model and Multitemperature Annealing for Parallel Image Classification.,1996,58,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip58.html#KatoBZ96,https://doi.org/10.1006/gmip.1996.0002 +Sven Linden,The LIR space partitioning system applied to the Stokes equations.,2015,82,Graphical Models,,db/journals/cvgip/cvgip82.html#LindenWH15,https://doi.org/10.1016/j.gmod.2015.06.003 +Jingjing Deng,A bag of words approach to subject specific 3D human pose interaction classification with random decision forests.,2014,76,Graphical Models,3,db/journals/cvgip/cvgip76.html#DengXD14,https://doi.org/10.1016/j.gmod.2013.10.006 +Dragana Brzakovic,Rule-based multitemplate edge detector.,1991,53,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip53.html#BrzakovicPW91,https://doi.org/10.1016/1049-9652(91)90047-N +Rae Kyoung Lee,On Enhancing the Speed of Splatting Using Both Object- and Image-Space Coherence.,2000,62,Graphical Models,4,db/journals/cvgip/cvgip62.html#LeeI00,https://doi.org/10.1006/gmod.2000.0524 +Jihong Kim,Efficient 2-D Convolution Algorithm with the Single-Data Multiple Kernel Approach.,1995,57,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip57.html#KimK95,https://doi.org/10.1006/gmip.1995.1017 +Ireneusz Defée,Median-based zero-crossing edge detectors for closely spaced edges.,1991,53,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip53.html#DefeeN91,https://doi.org/10.1016/1049-9652(91)90061-N +Min Zhang,The unified discrete surface Ricci flow.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#ZhangGZ0YG14,https://doi.org/10.1016/j.gmod.2014.04.008 +Marco Tarini,3D acquisition of mirroring objects using striped patterns.,2005,67,Graphical Models,4,db/journals/cvgip/cvgip67.html#TariniLGS05,https://doi.org/10.1016/j.gmod.2004.11.002 +Toshiyuki Sakai,Extraction of invariant picture sub-structures by computer.,1972,1,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip1.html#SakaiNM72,https://doi.org/10.1016/S0146-664X(72)80008-X +Amlan Kundu,Texture classification using QMF bank-based subband decomposition.,1992,54,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip54.html#KunduC92,https://doi.org/10.1016/1049-9652(92)90022-P +Peter B. Henderson,Considerations for efficient picture output via lineprinter.,1974,3,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip3.html#HendersonT74,https://doi.org/10.1016/0146-664X(74)90026-4 +Mofei Song,Accumulative categorization: Online 3D shape classification for progressive collections.,2017,89,Graphical Models,,db/journals/cvgip/cvgip89.html#SongSL17,https://doi.org/10.1016/j.gmod.2017.01.001 +Chul E. Kim,On cellular straight line segments.,1982,18,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip18.html#Kim82,https://doi.org/10.1016/0146-664X(82)90005-3 +Feng Wang,A new sketch-based 3D model retrieval approach by using global and local features.,2014,76,Graphical Models,3,db/journals/cvgip/cvgip76.html#WangLT14,https://doi.org/10.1016/j.gmod.2013.11.002 +Hiroshi Aoyama,A piecewise linear approximation method preserving visual feature points of original figures.,1991,53,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip53.html#AoyamaK91,https://doi.org/10.1016/1049-9652(91)90028-I +JingJing Shen,Detailed traffic animation for urban road networks.,2012,74,Graphical Models,5,db/journals/cvgip/cvgip74.html#ShenJ12,https://doi.org/10.1016/j.gmod.2012.04.002 +Hans-Hellmut Nagel,Displacement vectors derived from second order intensity variations in image sequences.,1982,20,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip20.html#Nagel82,https://doi.org/10.1016/0146-664X(82)90089-2 +Siegfried J. Pöppl,Boundary detection in scintigraphic images.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#PopplH82,https://doi.org/10.1016/0146-664X(82)90160-5 +Mehran Moshfeghi,Elastic matching of multimodality medical images.,1991,53,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip53.html#Moshfeghi91,https://doi.org/10.1016/1049-9652(91)90049-P +Friedrich M. Wahl,Block segmentation and text extraction in mixed text/image documents.,1982,20,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip20.html#WahlWC82,https://doi.org/10.1016/0146-664X(82)90059-4 +Hari B. Bidasaria,Defining and rendering of textured objects through the use of exponential functions.,1992,54,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip54.html#Bidasaria92,https://doi.org/10.1016/1049-9652(92)90058-6 +Gokul Varadhan,Accurate Minkowski sum approximation of polyhedral models.,2006,68,Graphical Models,4,db/journals/cvgip/cvgip68.html#VaradhanM06,https://doi.org/10.1016/j.gmod.2005.11.003 +Hyejin Kim,Reconstructing whole-body motions with wrist trajectories.,2013,75,Graphical Models,6,db/journals/cvgip/cvgip75.html#KimL13,https://doi.org/10.1016/j.gmod.2013.08.002 +Frederik Nilsson,Finding the Minimal Set of Maximum Disks for Binary Objects.,1997,59,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip59.html#NilssonD97,https://doi.org/10.1006/gmip.1996.0412 +Yung-Sheng Chen,Compression of Color Image via the Technique of Surface Fitting.,1994,56,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip56.html#ChenYH94,https://doi.org/10.1006/cgip.1994.1024 +Teng Ma,Visible neighborhood graph of point clouds.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#MaLFLW12,https://doi.org/10.1016/j.gmod.2012.04.007 +Jisang Yoo,The Nonlinear Prefiltering and Difference of Estimates Approaches to Edge Detection: Applications of Stack Filters.,1993,55,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip55.html#YooBDC93,https://doi.org/10.1006/cgip.1993.1010 +Doo-Won Lee,Natural Hairstyle Modeling and Animation.,2001,63,Graphical Models,2,db/journals/cvgip/cvgip63.html#LeeK01,https://doi.org/10.1006/gmod.2001.0547 +Cheng-Chi Yu,A global energy optimization framework for 2.1D sketch extraction from monocular images.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#YuLWLF14,https://doi.org/10.1016/j.gmod.2014.03.015 +Y. Kita,Extraction of accurate stomach contours from X-ray images of barium-filled stomachs and its application to detect potential abnormalities.,1991,53,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip53.html#KitaS91,https://doi.org/10.1016/1049-9652(91)90029-J +A. Murat Tekalp,Comparative study of some statistical and set-theoretic methods for image restoration.,1991,53,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip53.html#TekalpT91,https://doi.org/10.1016/1049-9652(91)90054-N +Gabor T. Herman,Two direct methods for reconstructingpictures from their projections: A comparative study.,1972,1,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip1.html#Herman72,https://doi.org/10.1016/S0146-664X(72)80011-X +Ron Goldman 0002,Understanding quaternions.,2011,73,Graphical Models,2,db/journals/cvgip/cvgip73.html#Goldman11,https://doi.org/10.1016/j.gmod.2010.10.004 +David W. Paglieroni,Directional Distance Transforms and Height Field Preprocessing for Efficient Ray Tracing.,1997,59,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip59.html#Paglieroni97,https://doi.org/10.1006/gmip.1997.0434 +Laurent Favreau,Animal gaits from video: Comparative studies.,2006,68,Graphical Models,2,db/journals/cvgip/cvgip68.html#FavreauRDC06,https://doi.org/10.1016/j.gmod.2005.04.002 +Michael E. Hohmeyer,Skinning rational B-spline curves to construct an interpolatory surface.,1991,53,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip53.html#HohmeyerB91,https://doi.org/10.1016/1049-9652(91)90002-2 +Su Liang,A Morphological Approach to Text String Extraction from Regular Periodic Overlapping Text/Background Images.,1994,56,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip56.html#LiangAS94,https://doi.org/10.1006/cgip.1994.1036 +Zohra Z. Manseur,Decomposition methods for convolution operators.,1991,53,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip53.html#ManseurW91,https://doi.org/10.1016/1049-9652(91)90027-H +Ran Zhang,An efficient volumetric method for non-rigid registration.,2015,79,Graphical Models,,db/journals/cvgip/cvgip79.html#ZhangCSTL15,https://doi.org/10.1016/j.gmod.2015.01.003 +John A. Stuller,An algebraic approach to image restoration filter design.,1972,1,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip1.html#Stuller72,https://doi.org/10.1016/S0146-664X(72)80010-8 +Theodosios Pavlidis,Page segmentation and classification.,1992,54,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip54.html#PavlidisZ92,https://doi.org/10.1016/1049-9652(92)90068-9 +Shi-Min Hu,Preface of special issue on computational visual media.,2013,75,Graphical Models,3,db/journals/cvgip/cvgip75.html#HuM13,https://doi.org/10.1016/j.gmod.2013.02.001 +Jakub Flotynski,Customization of 3D content with semantic meta-scenes.,2016,88,Graphical Models,,db/journals/cvgip/cvgip88.html#FlotynskiW16,https://doi.org/10.1016/j.gmod.2016.07.001 +Leonard A. Ferrari,Efficient Algorithms for the Implementation of General B-Splines.,1994,56,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip56.html#FerrariSS94,https://doi.org/10.1006/cgip.1994.1009 +Lin Zhou,Extending Superquadrics with Exponent Functions: Modeling and Reconstruction.,2001,63,Graphical Models,1,db/journals/cvgip/cvgip63.html#ZhouK01,https://doi.org/10.1006/gmod.2000.0529 +Wei Jiang,Skeleton-based intrinsic symmetry detection on point clouds.,2013,75,Graphical Models,4,db/journals/cvgip/cvgip75.html#Jiang0CZ13,https://doi.org/10.1016/j.gmod.2013.03.001 +Linus Källberg,Improved pruning of large data sets for the minimum enclosing ball problem.,2014,76,Graphical Models,6,db/journals/cvgip/cvgip76.html#KallbergL14,https://doi.org/10.1016/j.gmod.2014.06.003 +Eusebio J. Aguilera-Aguilera,Fast computation of optimal polygonal approximations of digital planar closed curves.,2016,84,Graphical Models,,db/journals/cvgip/cvgip84.html#Aguilera-Aguilera16,https://doi.org/10.1016/j.gmod.2016.01.004 +Michael Barton,Stretch-minimising stream surfaces.,2015,79,Graphical Models,,db/journals/cvgip/cvgip79.html#BartonKC15,https://doi.org/10.1016/j.gmod.2015.01.002 +Norberto Ezquerra,Knowledge-Guided Segmentation of 3D Imagery.,1996,58,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip58.html#EzquerraM96,https://doi.org/10.1006/gmip.1996.0043 +Stefanie Wuhrer,Finite element based tracking of deforming surfaces.,2015,77,Graphical Models,,db/journals/cvgip/cvgip77.html#WuhrerLT015,https://doi.org/10.1016/j.gmod.2014.10.002 +Jerry L. Prince,Convex set reconstruction using prior shape information.,1991,53,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip53.html#PrinceW91,https://doi.org/10.1016/1049-9652(91)90026-G +Richard Haberstroh,Line Detection in Noisy and Structured Backgrounds Using Græco-Latin Squares.,1993,55,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip55.html#HaberstrohK93,https://doi.org/10.1006/cgip.1993.1012 +Igor Guskov,Manifold-based approach to semi-regular remeshing.,2007,69,Graphical Models,1,db/journals/cvgip/cvgip69.html#Guskov07,https://doi.org/10.1016/j.gmod.2006.05.001 +Min Ki Park,Multi-scale tensor voting for feature extraction from unstructured point clouds.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#ParkLL12,https://doi.org/10.1016/j.gmod.2012.04.008 +,5th Eurographics Workshop on Rendering.,1994,56,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip56.html#X94, +Satoru Kawai,Topology quasi-preservation by local parallel operations.,1982,20,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip20.html#Kawai82,https://doi.org/10.1016/0146-664X(82)90065-X +Charles A. Harlow,Image analysis and graphs.,1973,2,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip2.html#Harlow73,https://doi.org/10.1016/0146-664X(73)90032-4 +Nils Thürey,Detail-preserving fluid control.,2009,71,Graphical Models,6,db/journals/cvgip/cvgip71.html#ThureyKPR09,https://doi.org/10.1016/j.gmod.2008.12.007 +Vassili A. Kovalev,Multidimensional Co-occurrence Matrices for Object Recognition and Matching.,1996,58,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip58.html#KovalevP96,https://doi.org/10.1006/gmip.1996.0016 +Theodosios Pavlidis,Segmentation of pictures and maps through functional approximation.,1972,1,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip1.html#Pavlidis72,https://doi.org/10.1016/0146-664X(72)90021-4 +Bo Wu 0020,Skeleton-guided 3D shape distance field metamorphosis.,2016,85,Graphical Models,,db/journals/cvgip/cvgip85.html#WuXZXH16,https://doi.org/10.1016/j.gmod.2016.03.003 +Luren Yang,Fast Computation of Three-Dimensional Geometric Moments Using a Discrete Divergence Theorem and a Generalization to Higher Dimensions.,1997,59,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip59.html#YangAT97,https://doi.org/10.1006/gmip.1997.0418 +Takis Sakkalis,Approximating Curves via Alpha Shapes.,1999,61,Graphical Models and Image Processing,3,db/journals/cvgip/cvgip61.html#SakkalisC99,https://doi.org/10.1006/gmip.1999.0496 +Franca Giannini,Special issue: Shape Modeling International 2004.,2006,68,Graphical Models,1,db/journals/cvgip/cvgip68.html#GianniniP06,https://doi.org/10.1016/j.gmod.2005.09.002 +Benoît Le Callennec,Interactive motion deformation with prioritized constraints.,2006,68,Graphical Models,2,db/journals/cvgip/cvgip68.html#CallennecB06,https://doi.org/10.1016/j.gmod.2005.03.001 +Wencheng Wang,Stick textures for image-based rendering.,2006,68,Graphical Models,3,db/journals/cvgip/cvgip68.html#WangLW06,https://doi.org/10.1016/j.gmod.2006.02.002 +Kikuo Fujimura,Shape Reconstruction from Contours Using Isotopic Deformation.,1999,61,Graphical Models and Image Processing,3,db/journals/cvgip/cvgip61.html#FujimuraK99,https://doi.org/10.1006/gmip.1999.0494 +Kuo-Liang Chung,A cost-optimal parallel algorithm for B-spline surface fitting.,1991,53,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip53.html#ChungL91,https://doi.org/10.1016/1049-9652(91)90010-H +Jianhui Nie,An algorithm for the rapid generation of bas-reliefs based on point clouds.,2017,94,Graphical Models,,db/journals/cvgip/cvgip94.html#Nie17,https://doi.org/10.1016/j.gmod.2017.09.002 +Tianshu Wang,Learning kernel-based HMMs for dynamic sequence synthesis.,2003,65,Graphical Models,4,db/journals/cvgip/cvgip65.html#WangZLXS03,https://doi.org/10.1016/S1524-0703(03)00040-7 +Paul L. Rosin,Salience Distance Transforms.,1995,57,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip57.html#RosinW95,https://doi.org/10.1006/gmip.1995.1041 +Wenping Wang,Computing quadric surface intersections based on an analysis of plane cubic curves.,2002,64,Graphical Models,6,db/journals/cvgip/cvgip64.html#WangJG02,https://doi.org/10.1016/S1077-3169(02)00018-7 +Gershon Elber,Solid Modeling Theory and Applications.,2005,67,Graphical Models,5,db/journals/cvgip/cvgip67.html#ElberPB05,https://doi.org/10.1016/j.gmod.2005.02.001 +Jacques-Olivier Lachaud,Continuous Analogs of Digital Boundaries: A Topological Approach to Iso-Surfaces.,2000,62,Graphical Models,3,db/journals/cvgip/cvgip62.html#LachaudM00,https://doi.org/10.1006/gmod.2000.0522 +Kan Guo,Image-guided 3D model labeling via multiview alignment.,2018,96,Graphical Models,,db/journals/cvgip/cvgip96.html#GuoCZZ18,https://doi.org/10.1016/j.gmod.2018.02.001 +Dinesh Manocha,Algorithms for Intersecting Parametric and Algebraic Curves II: Multiple Intersections.,1995,57,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip57.html#ManochaD95,https://doi.org/10.1006/gmip.1995.1010 +Zhenyu Wu,Homogeneity Testing for Unlabeled Data: A Performance Evaluation.,1993,55,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip55.html#Wu93,https://doi.org/10.1006/cgip.1993.1028 +Jim X. Chen,Toward Interactive-Rate Simulation of Fluids with Moving Obstacles Using Navier-Stokes Equations.,1995,57,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip57.html#ChenL95,https://doi.org/10.1006/gmip.1995.1012 +Jean-Luc Starck,Multiresolution Support Applied to Image Filtering and Restoration.,1995,57,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip57.html#StarckMB95,https://doi.org/10.1006/gmip.1995.1036 +Arcangelo Distante,A two-pass filling algorithm for raster graphics.,1982,20,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip20.html#DistanteV82,https://doi.org/10.1016/0146-664X(82)90087-9 +Jeffrey J. Rodríguez,High-Resolution Histogram Modification of Color Images.,1995,57,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip57.html#RodriguezY95,https://doi.org/10.1006/gmip.1995.1037 +Yang Wang 0001,Estimation of multiple directional light sources for synthesis of augmented reality images.,2003,65,Graphical Models,4,db/journals/cvgip/cvgip65.html#WangS03,https://doi.org/10.1016/S1524-0703(03)00043-2 +Irene Gargantini,Linear octtres for fast processing of three-dimensional objects.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Gargantini82a,https://doi.org/10.1016/0146-664X(82)90140-X +Shi-Min Hu,Special issue on Pacific Graphics 2002.,2003,65,Graphical Models,4,db/journals/cvgip/cvgip65.html#HuCS03,https://doi.org/10.1016/S1524-0703(03)00058-4 +Michael J. Laszlo,Fast generation and display of iso-surface wireframes.,1992,54,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip54.html#Laszlo92,https://doi.org/10.1016/1049-9652(92)90067-8 +Yeuhi Abe,Momentum-based parameterization of dynamic character motion.,2006,68,Graphical Models,2,db/journals/cvgip/cvgip68.html#AbeLP06,https://doi.org/10.1016/j.gmod.2005.03.006 +Tingbo Hou,"Corrigendum to ""Continuous and discrete Mexican hat wavelet transforms on manifolds"" [Graphical Models 74 (2012) 221-232].",2012,74,Graphical Models,6,db/journals/cvgip/cvgip74.html#HouQ12a,https://doi.org/10.1016/j.gmod.2012.07.001 +Roland T. Chin,Quantitative evaluationof some edge-preserving noisse-smoothing techniques.,1982,19,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip19.html#ChinY82,https://doi.org/10.1016/0146-664X(82)90031-4 +Kai Tang,On Computing Contact Configurations of a Curved Chain.,1999,61,Graphical Models and Image Processing,6,db/journals/cvgip/cvgip61.html#Tang99,https://doi.org/10.1006/gmip.1999.0507 +Justin Jang,OCTOR: Subset selection in recursive pattern hierarchies.,2009,71,Graphical Models,2,db/journals/cvgip/cvgip71.html#JangR09,https://doi.org/10.1016/j.gmod.2008.12.001 +Ronald Lumia,A new three dimensional connected components algorithm.,1982,20,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip20.html#Lumia82,https://doi.org/10.1016/0146-664X(82)90080-6 +Rida T. Farouki,Exact rotation-minimizing frames for spatial Pythagorean-hodograph curves.,2002,64,Graphical Models,6,db/journals/cvgip/cvgip64.html#Farouki02,https://doi.org/10.1016/S1524-0703(03)00002-X +Nikolaos Sarris,Building Three Dimensional Head Models.,2001,63,Graphical Models,5,db/journals/cvgip/cvgip63.html#SarrisGS01,https://doi.org/10.1006/gmod.2001.0563 +Zishun Liu,Upright orientation of 3D shapes with Convolutional Networks.,2016,85,Graphical Models,,db/journals/cvgip/cvgip85.html#LiuZL16,https://doi.org/10.1016/j.gmod.2016.03.001 +Paul Dierckx,Algorithms for smoothing data with periodic and parametric splines.,1982,20,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip20.html#Dierckx82,https://doi.org/10.1016/0146-664X(82)90043-0 +Jens Gravesen,The metric of colour space.,2015,82,Graphical Models,,db/journals/cvgip/cvgip82.html#Gravesen15,https://doi.org/10.1016/j.gmod.2015.06.005 +Dragana Carevic,Region-Based Coding of Color Images Using Karhunen-Loeve Transform.,1997,59,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip59.html#CarevicC97,https://doi.org/10.1006/gmip.1996.0402 +D. J. Langridge,Curve encoding and the detection of discontinuities.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Langridge82a,https://doi.org/10.1016/0146-664X(82)90137-X +Yuefeng Zhang,Adaptive Ordered Dither.,1997,59,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip59.html#Zhang97,https://doi.org/10.1006/gmip.1996.0414 +Kikuo Fujimura,Visibility Computation on Reconfigurable Meshes.,1997,59,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip59.html#Fujimura97,https://doi.org/10.1006/gmip.1997.0440 +Blake Hannaford,Resolution-First Scanning of Multidimensional Spaces.,1993,55,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip55.html#Hannaford93,https://doi.org/10.1006/cgip.1993.1027 +Troy F. Alderson,Multiresolution on spherical curves.,2016,86,Graphical Models,,db/journals/cvgip/cvgip86.html#AldersonMS16,https://doi.org/10.1016/j.gmod.2016.05.002 +Mohamed Kamel,Extraction of Binary Character/Graphics Images from Grayscale Document Images.,1993,55,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip55.html#KamelZ93,https://doi.org/10.1006/cgip.1993.1015 +Yutaka Ohtake,A composite approach to meshing scattered data.,2006,68,Graphical Models,3,db/journals/cvgip/cvgip68.html#OhtakeBS06a,https://doi.org/10.1016/j.gmod.2006.03.002 +A. Ikonomopoulos,An approach to edge detection based on the direction of edge elements.,1982,19,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip19.html#Ikonomopoulos82a,https://doi.org/10.1016/0146-664X(82)90107-1 +Andreas Voigtmann,A Hierarchical Model for Multiresolution Surface Reconstruction.,1997,59,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip59.html#VoigtmannBH97,https://doi.org/10.1006/gmip.1997.0436 +Martin Fuhrer,Modeling hairy plants.,2006,68,Graphical Models,4,db/journals/cvgip/cvgip68.html#FuhrerJP06,https://doi.org/10.1016/j.gmod.2005.11.002 +O. Stahlhut,Extending natural textures with multi-scale synthesis.,2005,67,Graphical Models,6,db/journals/cvgip/cvgip67.html#Stahlhut05,https://doi.org/10.1016/j.gmod.2005.01.006 +Shoichi Tsuchie,Surface mesh denoising with normal tensor framework.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#TsuchieH12,https://doi.org/10.1016/j.gmod.2012.03.010 +Theodosios Pavlidis,Techniques for optimal compaction of pictures and maps.,1974,3,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip3.html#Pavlidis74,https://doi.org/10.1016/0146-664X(74)90015-X +W. Richard Stevens,Software pipelines in image processing.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#StevensH82a,https://doi.org/10.1016/0146-664X(82)90164-2 +Richard Cole 0001,On the Detection of Robust Curves.,1994,56,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip56.html#ColeV94,https://doi.org/10.1006/cgip.1994.1018 +William Stallings,Recognition of printed chinese characters by automatic pattern analysis.,1972,1,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip1.html#Stallings72,https://doi.org/10.1016/S0146-664X(72)80006-6 +Xiuping Liu,Generating sparse self-supporting wireframe models for 3D printing using mesh simplification.,2018,98,Graphical Models,,db/journals/cvgip/cvgip98.html#LiuLWWYW18,https://doi.org/10.1016/j.gmod.2018.05.001 +Berthold K. P. Horn,Determining lightness from an image.,1974,3,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip3.html#Horn74,https://doi.org/10.1016/0146-664X(74)90022-7 +Pierre Alliez,Preface.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#AlliezHZ14,https://doi.org/10.1016/j.gmod.2014.06.002 +Yanjun Zhong,Computing medial axis transformations of 2D point clouds.,2018,97,Graphical Models,,db/journals/cvgip/cvgip97.html#ZhongC18,https://doi.org/10.1016/j.gmod.2018.03.004 +Georg Heygster,Rank filters in digital image processing.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Heygster82,https://doi.org/10.1016/0146-664X(82)90159-9 +Daniel Cohen-Or,Fundamentals of Surface Voxelization.,1995,57,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip57.html#Cohen-OrK95,https://doi.org/10.1006/gmip.1995.1039 +Yong-Kui Liu,"Comment on ""Generation of Noise in Binary Images"".",1993,55,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip55.html#Liu93,https://doi.org/10.1006/cgip.1993.1011 +Kenichi Arakawa,Fractal Modeling of Natural Terrain: Analysis and Surface Reconstruction with Range Data.,1996,58,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip58.html#ArakawaK96,https://doi.org/10.1006/gmip.1996.0035 +Nur Arad,Image Warping by Radial Basis Functions: Application to Facial Expressions.,1994,56,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip56.html#AradDRY94,https://doi.org/10.1006/cgip.1994.1015 +Larry F. Palazzi,Counting and Reporting Red/Blue Segment Intersections.,1994,56,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip56.html#PalazziS94,https://doi.org/10.1006/cgip.1994.1027 +Tamar Peli,A study of edge detection algorithms.,1982,20,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip20.html#PeliM82,https://doi.org/10.1016/0146-664X(82)90070-3 +A. N. Rajagopalan,Locating Human Faces in a Cluttered Scene.,2000,62,Graphical Models,5,db/journals/cvgip/cvgip62.html#RajagopalanKKMPDPC00,https://doi.org/10.1006/gmod.1999.0511 +Victoria Hernández-Mederos,Generalization of the incenter subdivision scheme.,2013,75,Graphical Models,2,db/journals/cvgip/cvgip75.html#Hernandez-MederosEI13,https://doi.org/10.1016/j.gmod.2012.12.001 +Rémy Malgouyres,Topology Preservation Within Digital Surfaces.,2000,62,Graphical Models,2,db/journals/cvgip/cvgip62.html#MalgouyresL00,https://doi.org/10.1006/gmod.1999.0517 +Binay K. Bhattacharya,An optimal algorithm to translate a convex polyhedron through a two-dimensional convex window.,1991,53,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip53.html#Bhattacharya91,https://doi.org/10.1016/1049-9652(91)90048-O +Guoling Shen,Boundary Representation Model Rectification.,2001,63,Graphical Models,3,db/journals/cvgip/cvgip63.html#ShenSP01,https://doi.org/10.1006/gmod.2001.0543 +Ming Li,Normalized quadtrees with respect to translations.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#LiGJ82a,https://doi.org/10.1016/0146-664X(82)90150-2 +Chen Changsong,Blending Quadric Surfaces with Piecewise Algebraic Surfaces.,2001,63,Graphical Models,4,db/journals/cvgip/cvgip63.html#ChangsongCF01,https://doi.org/10.1006/gmod.2001.0552 +Hongmei Kang,A new basis for PHT-splines.,2015,82,Graphical Models,,db/journals/cvgip/cvgip82.html#KangXCD15,https://doi.org/10.1016/j.gmod.2015.06.011 +Leif Kobbelt,Special issue on SPM 05.,2006,68,Graphical Models,3,db/journals/cvgip/cvgip68.html#KobbeltSMFDHSBMO06,https://doi.org/10.1016/j.gmod.2006.03.003 +Frederick H. Raab,Binary data compression by linear transformation.,1973,2,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip2.html#Raab73,https://doi.org/10.1016/0146-664X(73)90029-4 +Nikhil Gagvani,Animating Volumetric Models.,2001,63,Graphical Models,6,db/journals/cvgip/cvgip63.html#GagvaniS01,https://doi.org/10.1006/gmod.2001.0557 +Ron Goldman 0002,Formulas and algorithms for quantum differentiation of quantum Bernstein bases and quantum Bézier curves based on quantum blossoming.,2012,74,Graphical Models,6,db/journals/cvgip/cvgip74.html#0002S12,https://doi.org/10.1016/j.gmod.2012.04.004 +Lidija Comic,Dimension-independent simplification and refinement of Morse complexes.,2011,73,Graphical Models,5,db/journals/cvgip/cvgip73.html#ComicF11,https://doi.org/10.1016/j.gmod.2011.05.001 +Ho Chao Huang,Adaptive Early Jump-Out Technique for Fast Motion Estimation in Video Coding.,1997,59,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip59.html#HuangH97,https://doi.org/10.1006/gmip.1997.0449 +Zhanheng Gao,Feature-preserving surface mesh smoothing via suboptimal Delaunay triangulation.,2013,75,Graphical Models,1,db/journals/cvgip/cvgip75.html#GaoYH13,https://doi.org/10.1016/j.gmod.2012.10.007 +F. R. Hansen,Image segmentation using simple Markov field models.,1982,20,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip20.html#HansenE82,https://doi.org/10.1016/0146-664X(82)90040-5 +Robert L. Haar,Sketching: Estimating object positions from relational descriptions.,1982,19,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip19.html#Haar82a,https://doi.org/10.1016/0146-664X(82)90010-7 +Charles W. Therrien,An estimation-theoric approach to terrain image segmentation.,1982,19,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip19.html#Therrien82,https://doi.org/10.1016/0146-664X(82)90025-9 +Tsz-Ho Kwok,Constructing common base domain by cues from Voronoi diagram.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#KwokZW12,https://doi.org/10.1016/j.gmod.2012.03.012 +Victor B. Zordan,Breathe easy: Model and control of human respiration for computer animation.,2006,68,Graphical Models,2,db/journals/cvgip/cvgip68.html#ZordanCCD06,https://doi.org/10.1016/j.gmod.2005.03.005 +Yunxin Zhao,Parameter estimation and restoration of noisy images using Gibbs distributions in hidden Markov models.,1992,54,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip54.html#ZhaoZAA92,https://doi.org/10.1016/1049-9652(92)90050-8 +I. K. Sethi,Edge detection using charge analogy.,1982,20,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip20.html#Sethi82,https://doi.org/10.1016/0146-664X(82)90044-2 +Eli Saber,Automatic Image Annotation Using Adaptive Color Classification.,1996,58,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip58.html#SaberTEK96,https://doi.org/10.1006/gmip.1996.0010 +Yao Jin,Content-aware texture mapping.,2014,76,Graphical Models,3,db/journals/cvgip/cvgip76.html#JinSSHT14,https://doi.org/10.1016/j.gmod.2013.11.001 +Van-Toan Cao,A two-stage approach to align two surfaces of deformable objects.,2015,82,Graphical Models,,db/journals/cvgip/cvgip82.html#CaoTL15,https://doi.org/10.1016/j.gmod.2015.09.002 +Minho Kim,GPU isosurface raycasting of FCC datasets.,2013,75,Graphical Models,2,db/journals/cvgip/cvgip75.html#Kim13,https://doi.org/10.1016/j.gmod.2012.11.001 +Hendrik P. A. Lensch,A Silhouette-Based Algorithm for Texture Registration and Stitching.,2001,63,Graphical Models,4,db/journals/cvgip/cvgip63.html#LenschHS01,https://doi.org/10.1006/gmod.2001.0554 +Hyeong-Seok Ko,Special Issue: PG2004.,2006,68,Graphical Models,4,db/journals/cvgip/cvgip68.html#KoCTW06,https://doi.org/10.1016/j.gmod.2006.01.001 +Hendrik James Antonisse,Image segmentation in pyramids.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Antonisse82,https://doi.org/10.1016/0146-664X(82)90139-3 +Ron Kimmel,Intrinsic Scale Space for Images on Surfaces: The Geodesic Curvature Flow.,1997,59,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip59.html#Kimmel97,https://doi.org/10.1006/gmip.1997.0442 +Amar Mitiche,Contour registration by shape-specific points for shape matching.,1982,19,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip19.html#MiticheA82,https://doi.org/10.1016/0146-664X(82)90030-2 +Xiaoguang Han,A fast propagation scheme for approximate geodesic paths.,2017,91,Graphical Models,,db/journals/cvgip/cvgip91.html#HanYYZ17,https://doi.org/10.1016/j.gmod.2017.02.004 +John F. O'Callaghan,Computing the perceptual boundaries of dot patterns.,1974,3,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip3.html#OCallaghan74,https://doi.org/10.1016/S0146-664X(74)80004-3 +David Eriksson,Fast exact shortest distance queries for massive point clouds.,2016,84,Graphical Models,,db/journals/cvgip/cvgip84.html#ErikssonS16,https://doi.org/10.1016/j.gmod.2016.02.002 +Guo-Xin Zhang,Sketch guided solid texturing.,2011,73,Graphical Models,3,db/journals/cvgip/cvgip73.html#ZhangDLNH11,https://doi.org/10.1016/j.gmod.2010.10.006 +Alberto Bartesaghi,Three-dimensional shape rendering from multiple images.,2005,67,Graphical Models,4,db/journals/cvgip/cvgip67.html#BartesaghiSMG05,https://doi.org/10.1016/j.gmod.2005.02.002 +Muthu Kumaran,A Dynamic Window-Based Runlength Coding Algorithm Applied to Gray-Level Images.,1995,57,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip57.html#KumaranU95,https://doi.org/10.1006/gmip.1995.1025 +R. Paquin,A spatio-temporal gradient method for estimating the displacement field in time-varying imagery.,1982,20,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip20.html#PaquinD82,https://doi.org/10.1016/0146-664X(82)90048-X +P. W. Hawkes,Electron image processing: 1978-1980.,1982,18,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip18.html#Hawkes82,https://doi.org/10.1016/0146-664X(82)90099-5 +Jonathan D. Michel,Unified 3D Models for Multisensor Image Synthesis.,1995,57,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip57.html#MichelN95,https://doi.org/10.1006/gmip.1995.1026 +Zichun Zhong,Anisotropic surface meshing with conformal embedding.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#ZhongSJG14,https://doi.org/10.1016/j.gmod.2014.03.011 +Paul M. Margosian,Streak removal method for CT based digital X-ray images.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Margosian82,https://doi.org/10.1016/0146-664X(82)90115-0 +Xianfeng Gu,Manifold splines.,2006,68,Graphical Models,3,db/journals/cvgip/cvgip68.html#GuHQ06,https://doi.org/10.1016/j.gmod.2006.03.004 +Stephen P. Smith,Chord distributions for shape matching.,1982,20,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip20.html#SmithJ82,https://doi.org/10.1016/0146-664X(82)90084-3 +Alan Brunton,A low-dimensional representation for robust partial isometric correspondences computation.,2014,76,Graphical Models,2,db/journals/cvgip/cvgip76.html#BruntonWWSW14,https://doi.org/10.1016/j.gmod.2013.11.003 +W. O. Saxton,A new computer language for electron image processing.,1974,3,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip3.html#Saxton74,https://doi.org/10.1016/0146-664X(74)90021-5 +Xin Liu,Shape from silhouettes based on a centripetal pentahedron model.,2008,70,Graphical Models,6,db/journals/cvgip/cvgip70.html#LiuYCG08,https://doi.org/10.1016/j.gmod.2006.06.003 +Xuejie Qin,Estimating Parameters for Procedural Texturing by Genetic Algorithms.,2002,64,Graphical Models,1,db/journals/cvgip/cvgip64.html#QinY02,https://doi.org/10.1006/gmod.2002.0565 +Brian A. Barsky,Elimination of artifacts due to occlusion and discretization problems in image space blurring techniques.,2005,67,Graphical Models,6,db/journals/cvgip/cvgip67.html#BarskyTCH05,https://doi.org/10.1016/j.gmod.2005.01.009 +Fernand S. Cohen,Maximum likelihood unsupervised textured image segmentation.,1992,54,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip54.html#CohenF92,https://doi.org/10.1016/1049-9652(92)90054-2 +Zi-Cai Li,Harmonic models of shape transformations in digital images and patterns.,1992,54,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip54.html#LiSBG92,https://doi.org/10.1016/1049-9652(92)90051-X +Nick Foster,Realistic Animation of Liquids.,1996,58,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip58.html#FosterM96,https://doi.org/10.1006/gmip.1996.0039 +Dominique Astruc,The Cone of Vision: A New Technique for Interactive Volumetric Display.,1996,58,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip58.html#AstrucAV96,https://doi.org/10.1006/gmip.1996.0031 +Eng-Wee Chionh,On the Existence and the Coefficients of the Implicit Equation of Rational Surfaces.,1994,56,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip56.html#ChionhG94,https://doi.org/10.1006/cgip.1994.1003 +Yehuda E. Kalay,Determining the spatial containment of a point in general polyhedra.,1982,19,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip19.html#Kalay82a,https://doi.org/10.1016/0146-664X(82)90019-3 +Jean-Pierre Crettez,A model for cell receptive fields in the visual striate cortex.,1982,20,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip20.html#CrettezS82,https://doi.org/10.1016/0146-664X(82)90055-7 +Irving Cruz-Matías,A new lossless orthogonal simplification method for 3D objects based on bounding structures.,2014,76,Graphical Models,4,db/journals/cvgip/cvgip76.html#Cruz-MatiasA14,https://doi.org/10.1016/j.gmod.2014.01.002 +Azeddine Beghdadi,Entropic Thresholding Using a Block Source Model.,1995,57,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip57.html#BeghdadiNL95,https://doi.org/10.1006/gmip.1995.1019 +Theo Pavlidis,An asynchronous thinning algorithm.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Pavlidis82a,https://doi.org/10.1016/0146-664X(82)90145-9 +Minfeng Xu,Building binary orientation octree for an arbitrary scattered point set.,2016,85,Graphical Models,,db/journals/cvgip/cvgip85.html#XuTW16,https://doi.org/10.1016/j.gmod.2016.03.002 +Sung Woo Choi,Hyperbolic Hausdorff Distance for Medial Axis Transform.,2001,63,Graphical Models,5,db/journals/cvgip/cvgip63.html#ChoiS01,https://doi.org/10.1006/gmod.2001.0556 +Gill Barequet,Optimizing a Strip Separating Two Polygons.,1998,60,Graphical Models and Image Processing,3,db/journals/cvgip/cvgip60.html#BarequetW98,https://doi.org/10.1006/gmip.1998.0470 +Viorel Mihalef,Interaction of two-phase flow with animated models.,2008,70,Graphical Models,3,db/journals/cvgip/cvgip70.html#MihalefKSMH08,https://doi.org/10.1016/j.gmod.2007.10.001 +Sen Wang,Robust curve skeleton extraction for vascular structures.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#WangWWM12,https://doi.org/10.1016/j.gmod.2012.03.008 +Shigeo Takahashi,Topological volume skeletonization and its application to transfer function design.,2004,66,Graphical Models,1,db/journals/cvgip/cvgip66.html#TakahashiTF04,https://doi.org/10.1016/10.1016/j.gmod.2003.08.002 +Chi-Kin Leung,Maximum Segmented Image Information Thresholding.,1998,60,Graphical Models and Image Processing,1,db/journals/cvgip/cvgip60.html#LeungL98,https://doi.org/10.1006/gmip.1997.0455 +Ruzena Bajcsy,Computer identification of visual surfaces.,1973,2,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip2.html#Bajcsy73,https://doi.org/10.1016/0146-664X(73)90023-3 +Yu-Wei Zhang,Real-time bas-relief generation from a 3D mesh.,2013,75,Graphical Models,1,db/journals/cvgip/cvgip75.html#ZhangZZY13,https://doi.org/10.1016/j.gmod.2012.10.003 +Eric Ferley,Resolution Adaptive Volume Sculpting.,2001,63,Graphical Models,6,db/journals/cvgip/cvgip63.html#FerleyCG01,https://doi.org/10.1006/gmod.2001.0558 +Chunxue Wang,As-rigid-as-possible spherical parametrization.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#WangLL14,https://doi.org/10.1016/j.gmod.2014.03.016 +F. Holdermann,Preprocessing of gray-scale pictures.,1972,1,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip1.html#HoldermannK72,https://doi.org/10.1016/S0146-664X(72)80007-8 +Arcangelo Distante,A two-pass filling algorithm for raster graphics.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#DistanteV82a,https://doi.org/10.1016/0146-664X(82)90161-7 +Azriel Rosenfeld,Digital surfaces.,1991,53,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip53.html#RosenfeldKW91,https://doi.org/10.1016/1049-9652(91)90034-H +Kevin T. McDonnell,DigitalSculpture: a subdivision-based approach to interactive implicit surface modeling.,2005,67,Graphical Models,4,db/journals/cvgip/cvgip67.html#McDonnellCQ05,https://doi.org/10.1016/j.gmod.2004.11.001 +Guillaume Picinbono,Non-linear anisotropic elasticity for real-time surgery simulation.,2003,65,Graphical Models,5,db/journals/cvgip/cvgip65.html#PicinbonoDA03,https://doi.org/10.1016/S1524-0703(03)00045-6 +Eric Andres,Discrete Analytical Hyperplanes.,1997,59,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip59.html#AndresAS97,https://doi.org/10.1006/gmip.1997.0427 +Emanuel Levitan,Image-Modeling Gibbs Priors.,1995,57,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip57.html#LevitanCH95,https://doi.org/10.1006/gmip.1995.1013 +Yanlin Weng,Real-time facial animation on mobile devices.,2014,76,Graphical Models,3,db/journals/cvgip/cvgip76.html#WengCHZ14,https://doi.org/10.1016/j.gmod.2013.10.002 +H. Y. Fend,"Finding ""Vertices"" in a picture"".",1973,2,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip2.html#FendP73,https://doi.org/10.1016/0146-664X(73)90022-1 +Michela Spagnuolo,SMI 2008 Special Issue.,2009,71,Graphical Models,2,db/journals/cvgip/cvgip71.html#SpagnuoloCG09,https://doi.org/10.1016/j.gmod.2009.03.001 +M. L. V. Pitteway,"Integer Circles, Etc. - some further thoughts.",1974,3,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip3.html#Pitteway74,https://doi.org/10.1016/0146-664X(74)90020-3 +Ireneusz Tobor,Reconstructing multi-scale variational partition of unity implicit surfaces with attributes.,2006,68,Graphical Models,1,db/journals/cvgip/cvgip68.html#ToborRS06,https://doi.org/10.1016/j.gmod.2005.09.003 +Hsien-Che Lee,Using the FFT to determine digital straight line chain codes.,1982,18,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip18.html#LeeF82,https://doi.org/10.1016/0146-664X(82)90004-1 +Aviv Segall,Line accessibility of free form surfaces.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#SegallMKE14,https://doi.org/10.1016/j.gmod.2014.03.014 +Takashi Matsuyama,A structural analyzer for regularly arranged textures.,1982,18,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip18.html#MatsuyamaSN82,https://doi.org/10.1016/0146-664X(82)90035-1 +Robert Laganière,Visual reconstruction of ground plane obstacles in a sparse view robot environment.,2006,68,Graphical Models,3,db/journals/cvgip/cvgip68.html#LaganiereHM06,https://doi.org/10.1016/j.gmod.2006.02.001 +Alexander Greß,Efficient representation and extraction of 2-manifold isosurfaces using kd-trees.,2004,66,Graphical Models,6,db/journals/cvgip/cvgip66.html#GressK04,https://doi.org/10.1016/j.gmod.2004.06.010 +Geoffrey Irving,Tetrahedral and hexahedral invertible finite elements.,2006,68,Graphical Models,2,db/journals/cvgip/cvgip68.html#IrvingTF06,https://doi.org/10.1016/j.gmod.2005.03.007 +Kokichi Sugihara,Approximation of Generalized Voronoi Diagrams by Ordinary Voronoi Diagrams.,1993,55,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip55.html#Sugihara93,https://doi.org/10.1006/cgip.1993.1039 +Punam K. Saha,Local Topological Parameters in a Tetrahedral Representation.,1998,60,Graphical Models and Image Processing,6,db/journals/cvgip/cvgip60.html#SahaMR98,https://doi.org/10.1006/gmip.1998.0481 +Michael L. Baird,Recognizing Objects by Rules of Inference on Sequentially Thresholded Gray-Level Pictures.,1974,3,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip3.html#BairdK74,https://doi.org/10.1016/0146-664X(74)90007-0 +Igor S. Pandzic,Facial motion cloning.,2003,65,Graphical Models,6,db/journals/cvgip/cvgip65.html#Pandzic03,https://doi.org/10.1016/j.gmod.2003.07.002 +Ralph M. Ford,Image Models for 2-D Flow Visualization and Compression.,1994,56,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip56.html#FordST94,https://doi.org/10.1006/cgip.1994.1007 +Christophe Pradal,PlantGL: A Python-based geometric library for 3D plant modelling at different scales.,2009,71,Graphical Models,1,db/journals/cvgip/cvgip71.html#PradalBNCG09,https://doi.org/10.1016/j.gmod.2008.10.001 +,CSG 96: Set-Theoretic Solid Modelling: Techniques and Applications.,1995,57,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip57.html#X95,https://doi.org/10.1006/gmip.1995.1031 +José Pedro Aguerre,Computing urban radiation: A sparse matrix approach.,2017,91,Graphical Models,,db/journals/cvgip/cvgip91.html#AguerreFBB17,https://doi.org/10.1016/j.gmod.2017.05.002 +Hanoch Ur,Improved resolution from subpixel shifted pictures.,1992,54,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip54.html#UrG92,https://doi.org/10.1016/1049-9652(92)90065-6 +Peyman Milanfar,Reconstructing Binary Polygonal Objects from Projections: A Statistical View.,1994,56,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip56.html#MilanfarKW94,https://doi.org/10.1006/cgip.1994.1034 +Changgu Kang,Scene reconstruction and analysis from motion.,2017,94,Graphical Models,,db/journals/cvgip/cvgip94.html#KangL17,https://doi.org/10.1016/j.gmod.2017.10.002 +Yan Wen,A model synthesis method based on single building facade.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#WenZWSS14,https://doi.org/10.1016/j.gmod.2014.03.018 +William Clement Karl,Reconstructing Ellipsoids from Projections.,1994,56,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip56.html#KarlVW94,https://doi.org/10.1006/cgip.1994.1012 +Dao Thi Phuong Quynh,An intrinsic algorithm for computing geodesic distance fields on triangle meshes with holes.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#QuynhHXC12,https://doi.org/10.1016/j.gmod.2012.04.009 +Wayne Niblack,Generating skeletons and centerlines from the distance transform.,1992,54,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip54.html#NiblackGC92,https://doi.org/10.1016/1049-9652(92)90026-T +Jonathan Mizrahi,Minkowski sum computation of B-spline surfaces.,2017,91,Graphical Models,,db/journals/cvgip/cvgip91.html#MizrahiKHKE17,https://doi.org/10.1016/j.gmod.2017.02.003 +Shankar Krishnan,Partitioning Trimmed Spline Surfaces into NonSelf-Occluding Regions for Visibility Computation.,2000,62,Graphical Models,4,db/journals/cvgip/cvgip62.html#KrishnanM00,https://doi.org/10.1006/gmod.2000.0526 +Andrew Edie Johnson,Control of Polygonal Mesh Resolution for 3-D Computer Vision.,1998,60,Graphical Models and Image Processing,4,db/journals/cvgip/cvgip60.html#JohnsonH98,https://doi.org/10.1006/gmip.1998.0474 +L. Gibson,Vectorization of raster images using hierarchcial methods.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#GibsonL82a,https://doi.org/10.1016/0146-664X(82)90158-7 +Qian-Yi Zhou,Complete residential urban area reconstruction from dense aerial LiDAR point clouds.,2013,75,Graphical Models,3,db/journals/cvgip/cvgip75.html#ZhouN13,https://doi.org/10.1016/j.gmod.2012.09.001 +Jianhui Nie,Extracting feature lines from point clouds based on smooth shrink and iterative thinning.,2016,84,Graphical Models,,db/journals/cvgip/cvgip84.html#Nie16,https://doi.org/10.1016/j.gmod.2016.04.001 +Baoquan Chen,3D Volume Rotation Using Shear Transformations.,2000,62,Graphical Models,4,db/journals/cvgip/cvgip62.html#ChenK00,https://doi.org/10.1006/gmod.2000.0525 +Yucel Altunbasak,Region-Based Parametric Motion Segmentation Using Color Information.,1998,60,Graphical Models and Image Processing,1,db/journals/cvgip/cvgip60.html#AltunbasakET98,https://doi.org/10.1006/gmip.1997.0453 +Carmen Olga Acuna,Texture modeling using Gibbs distributions.,1992,54,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip54.html#Acuna92,https://doi.org/10.1016/1049-9652(92)90052-Y +Candemir Toklu,Tracking Motion and Intensity Variations Using Hierarchical 2-D Mesh Modeling for Synthetic Object Transfiguration.,1996,58,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip58.html#TokluEST96,https://doi.org/10.1006/gmip.1996.0046 +Rocco Furferi,From 2D to 2.5D i.e. from painting to tactile model.,2014,76,Graphical Models,6,db/journals/cvgip/cvgip76.html#FurferiGVPVC14,https://doi.org/10.1016/j.gmod.2014.10.001 +Nikos Papamarkos,A New Approach for Multilevel Threshold Selection.,1994,56,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip56.html#PapamarkosG94,https://doi.org/10.1006/cgip.1994.1033 +Gabor T. Herman,A topological proof of a surface tracking algorithm.,1982,19,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip19.html#Herman82,https://doi.org/10.1016/0146-664X(82)90028-4 +Dorota Kozinska,Multidimensional Alignment Using the Euclidean Distance Transform.,1997,59,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip59.html#KozinskaTNO97,https://doi.org/10.1006/gmip.1997.0447 +Evan Shellshear,PDQ: Parallel Distance Queries for deformable meshes.,2013,75,Graphical Models,2,db/journals/cvgip/cvgip75.html#ShellshearBA13,https://doi.org/10.1016/j.gmod.2012.12.002 +Sun-Young Lee,Temporally coherent video matting.,2010,72,Graphical Models,3,db/journals/cvgip/cvgip72.html#LeeYL10,https://doi.org/10.1016/j.gmod.2010.03.001 +Carlo Arcelli,Parallel shrinking in three dimensions.,1972,1,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip1.html#ArcelliL72,https://doi.org/10.1016/S0146-664X(72)80004-2 +Ken D. Sauer,Bayesian Block-Wise Segmentation of Interframe Differences in Video Sequences.,1993,55,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip55.html#SauerJ93,https://doi.org/10.1006/cgip.1993.1009 +,Pacific Graphics 2003.,2004,66,Graphical Models,6,db/journals/cvgip/cvgip66.html#X04,https://doi.org/10.1016/j.gmod.2004.07.002 +M. Imme,A noise peak elimination filter.,1991,53,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip53.html#Imme91,https://doi.org/10.1016/1049-9652(91)90062-O +Nelson Max,Unified sun and sky illumination for shadows under trees.,1991,53,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip53.html#Max91,https://doi.org/10.1016/1049-9652(91)90044-K +István Kovács,Applying geometric constraints for perfecting CAD models in reverse engineering.,2015,82,Graphical Models,,db/journals/cvgip/cvgip82.html#KovacsVS15,https://doi.org/10.1016/j.gmod.2015.06.002 +Hanan Samet,Neighbor finding techniques for images represented by quadtrees.,1982,18,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip18.html#Samet82,https://doi.org/10.1016/0146-664X(82)90098-3 +Thomas W. Sederberg,Rational-Ruled Surfaces: Implicitization and Section Curves.,1995,57,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip57.html#SederbergS95,https://doi.org/10.1006/gmip.1995.1029 +Nina Amenta,The Crust and the beta-Skeleton: Combinatorial Curve Reconstruction.,1998,60,Graphical Models and Image Processing,2,db/journals/cvgip/cvgip60.html#AmentaBE98,https://doi.org/10.1006/gmip.1998.0465 +Sílvio César Lizana Terra,A performance-based technique for timing keyframe animations.,2007,69,Graphical Models,2,db/journals/cvgip/cvgip69.html#TerraM07,https://doi.org/10.1016/j.gmod.2006.09.002 +Andrea Baraldi,An Alternative Form of the Lee Filter for Speckle Suppression in SAR Images.,1995,57,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip57.html#BaraldiP95,https://doi.org/10.1006/gmip.1995.1008 +Kestutis Karciauskas,Improved shape for multi-surface blends.,2015,82,Graphical Models,,db/journals/cvgip/cvgip82.html#KarciauskasP15a,https://doi.org/10.1016/j.gmod.2015.06.006 +Min Tang 0001,MCCD: Multi-core collision detection between deformable models using front-based decomposition.,2010,72,Graphical Models,2,db/journals/cvgip/cvgip72.html#TangMT10,https://doi.org/10.1016/j.gmod.2010.01.001 +Hui Li,Multisensor Image Fusion Using the Wavelet Transform.,1995,57,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip57.html#LiMM95,https://doi.org/10.1006/gmip.1995.1022 +Yoshisuke Kurozumi,Polygonal approximation by the minimax method.,1982,19,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip19.html#KurozumiD82,https://doi.org/10.1016/0146-664X(82)90011-9 +Jie Guo 0001,A retroreflective BRDF model based on prismatic sheeting and microfacet theory.,2018,96,Graphical Models,,db/journals/cvgip/cvgip96.html#GuoGP18,https://doi.org/10.1016/j.gmod.2018.01.002 +Svetha Venkatesh,Edge evaluation using necessary components.,1992,54,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip54.html#VenkateshK92,https://doi.org/10.1016/1049-9652(92)90031-R +George Merrill Chaikin,An algorithm for high-speed curve generation.,1974,3,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip3.html#Chaikin74,https://doi.org/10.1016/0146-664X(74)90028-8 +Marianna Saba,Curvature-based blending of closed planar curves.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#SabaSHS14,https://doi.org/10.1016/j.gmod.2014.04.005 +E. North Coleman Jr.,Obtaining 3-dimensional shape of textured and specular surfaces using four-source photometry.,1982,18,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip18.html#ColemanJ82,https://doi.org/10.1016/0146-664X(82)90001-6 +Paul L. Rosin,Assessing Error of Fit Functions for Ellipses.,1996,58,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip58.html#Rosin96a,https://doi.org/10.1006/gmip.1996.0041 +James C. Mullikin,The vector distance transform in two and three dimensions.,1992,54,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip54.html#Mullikin92,https://doi.org/10.1016/1049-9652(92)90072-6 +Gerald M. Radack,Jigsaw puzzle matching using a boundary-centered polar encoding.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#RadackB82,https://doi.org/10.1016/0146-664X(82)90111-3 +Yasmina Chitti,Detection of Small Local Intensity Changes in CCD Images with Nonuniform Illumination and Large Signal Dependent Noise.,1997,59,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip59.html#Chitti97,https://doi.org/10.1006/gmip.1997.0426 +Jean-Pierre Braquelaire,Euclidean Paths: A New Representation of Boundary of Discrete Regions.,1999,61,Graphical Models and Image Processing,1,db/journals/cvgip/cvgip61.html#BraquelaireV99,https://doi.org/10.1006/gmip.1999.0488 +Yutaka Ohtake,Sparse surface reconstruction with adaptive partition of unity and radial basis functions.,2006,68,Graphical Models,1,db/journals/cvgip/cvgip68.html#OhtakeBS06,https://doi.org/10.1016/j.gmod.2005.08.001 +Dimitris N. Metaxas,Reconstruction of a color image from nonuniformly distributed sparse and noisy data.,1992,54,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip54.html#MetaxasM92,https://doi.org/10.1016/1049-9652(92)90059-7 +Hao Liu,Extract feature curves on noisy triangular meshes.,2017,93,Graphical Models,,db/journals/cvgip/cvgip93.html#LiuDZLW17,https://doi.org/10.1016/j.gmod.2017.05.003 +Erkan Gunpinar,A shape sampling technique via particle tracing for CAD models.,2018,96,Graphical Models,,db/journals/cvgip/cvgip96.html#GunpinarG18,https://doi.org/10.1016/j.gmod.2018.01.003 +Lee R. Nackman,Curvature relations in three-dimensional symmetric axes.,1982,20,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip20.html#Nackman82,https://doi.org/10.1016/0146-664X(82)90072-7 +Songhua Xu,Virtual hairy brush for painterly rendering.,2004,66,Graphical Models,5,db/journals/cvgip/cvgip66.html#XuTLP04,https://doi.org/10.1016/j.gmod.2004.05.006 +Paul L. Rosin,Augmenting Corner Descriptors.,1996,58,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip58.html#Rosin96,https://doi.org/10.1006/gmip.1996.0023 +Xiaoyi Jiang 0001,A simple and efficient algorithm for determining the symmetries of polyhedra.,1992,54,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip54.html#JiangB92,https://doi.org/10.1016/1049-9652(92)90037-X +Johji Tajima,Uniform color scale applications to computer graphics.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Tajima82,https://doi.org/10.1016/0146-664X(82)90120-4 +Jon A. Webb,Shape and correspondence.,1982,20,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip20.html#WebbA82,https://doi.org/10.1016/0146-664X(82)90091-0 +Hee-Seok Heo,The Intersection of Two Ringed Surfaces and Some Related Problems.,2001,63,Graphical Models,4,db/journals/cvgip/cvgip63.html#HeoHSKE01,https://doi.org/10.1006/gmod.2001.0553 +Xiaojun Liu,Lightweighting for Web3D visualization of large-scale BIM scenes in real-time.,2016,88,Graphical Models,,db/journals/cvgip/cvgip88.html#LiuXTJ16,https://doi.org/10.1016/j.gmod.2016.06.001 +Gift Siromoney,Stochastic table arrays.,1982,18,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip18.html#SiromoneySS82,https://doi.org/10.1016/0146-664X(82)90172-1 +Roberto Brunelli,SpotIt!An Interactive Identikit System.,1996,58,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip58.html#BrunelliM96,https://doi.org/10.1006/gmip.1996.0033 +Jong-Chul Yoon,Visualization of graphical data in a user-specified 2D space using a weighted Isomap method.,2014,76,Graphical Models,2,db/journals/cvgip/cvgip76.html#YoonL14,https://doi.org/10.1016/j.gmod.2014.01.001 +Xuekun Guo,Creature grammar for creative modeling of 3D monsters.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#GuoLXJ14,https://doi.org/10.1016/j.gmod.2014.03.019 +Fu-Nian Ku,The principles and methods of histogram modification adapte for visual perception.,1982,20,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip20.html#Ku82,https://doi.org/10.1016/0146-664X(82)90053-3 +Michael Neff,Methods for exploring expressive stance.,2006,68,Graphical Models,2,db/journals/cvgip/cvgip68.html#NeffF06,https://doi.org/10.1016/j.gmod.2005.03.003 +Severinas Zube,Representation of Dupin cyclides using quaternions.,2015,82,Graphical Models,,db/journals/cvgip/cvgip82.html#ZubeK15,https://doi.org/10.1016/j.gmod.2015.06.008 +Mario Aiello,Optimal matching of wheat chromosomes.,1974,3,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip3.html#AielloLM74,https://doi.org/10.1016/0146-664X(74)90016-1 +Gabor T. Herman,Oriented Surfaces in Digital Spaces.,1993,55,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip55.html#Herman93,https://doi.org/10.1006/cgip.1993.1029 +Yi-Jun Yang,Projection of curves on B-spline surfaces using quadratic reparameterization.,2010,72,Graphical Models,5,db/journals/cvgip/cvgip72.html#YangZZYP10,https://doi.org/10.1016/j.gmod.2010.08.001 +John K. Goutsias,Unilateral approximation of Gibbs random field images.,1991,53,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip53.html#Goutsias91,https://doi.org/10.1016/1049-9652(91)90046-M +Javad Sadeghi,Smooth reverse Loop and Catmull-Clark subdivision.,2011,73,Graphical Models,5,db/journals/cvgip/cvgip73.html#SadeghiS11,https://doi.org/10.1016/j.gmod.2011.03.004 +Daniel Schmitter,Compactly-supported smooth interpolators for shape modeling with varying resolution.,2017,94,Graphical Models,,db/journals/cvgip/cvgip94.html#SchmitterFBGU17,https://doi.org/10.1016/j.gmod.2017.11.001 +David W. Paglieroni,A Complexity Analysis for Directional Parametric Height Field Ray Tracing.,1999,61,Graphical Models and Image Processing,5,db/journals/cvgip/cvgip61.html#Paglieroni99,https://doi.org/10.1006/gmip.1999.0503 +Peter J. Burt,Fast algorithms for estimating local image properties.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Burt82,https://doi.org/10.1016/0146-664X(82)90148-4 +Robert M. Haralick,Model-based morphology: the opening spectrum.,1995,57,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip57.html#HaralickK95,https://doi.org/10.1006/gmip.1995.1001 +Chung-Nim Lee,Holes and Genus of 2D and 3D Digital Images.,1993,55,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip55.html#LeePR93,https://doi.org/10.1006/cgip.1993.1002 +Jun-Wei Hsieh,Wavelet-Based Shape from Shading.,1995,57,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip57.html#HsiehLKF95,https://doi.org/10.1006/gmip.1995.1030 +Dragana Brzakovic,Spline models for boundary detection/description: Formulation and performance evaluation.,1991,53,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip53.html#BrzakovicLH91,https://doi.org/10.1016/1049-9652(91)90042-I +Hannu Olkkonen,Discrete Binomial Splines.,1995,57,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip57.html#Olkkonen95,https://doi.org/10.1006/gmip.1995.1011 +G. F. McLean,Codebook Edge Detection.,1993,55,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip55.html#McLean93,https://doi.org/10.1006/cgip.1993.1003 +Shi-Min Hu,Generalized Subdivision of Bézier Surfaces.,1996,58,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip58.html#HuWJ96,https://doi.org/10.1006/gmip.1996.0018 +Anton Bardera,Multiresolution image registration based on tree data structures.,2011,73,Graphical Models,4,db/journals/cvgip/cvgip73.html#BarderaBFRS11,https://doi.org/10.1016/j.gmod.2011.01.001 +Chi Hau Chen,On Digital Mammogram Segmentation and Microcalcification Detection Using Multiresolution Wavelet Analysis.,1997,59,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip59.html#ChenL97,https://doi.org/10.1006/gmip.1997.0443 +Urs Ramer,An iterative procedure for the polygonal approximation of plane curves.,1972,1,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip1.html#Ramer72,https://doi.org/10.1016/S0146-664X(72)80017-0 +Liming Zhao,Achieving good connectivity in motion graphs.,2009,71,Graphical Models,4,db/journals/cvgip/cvgip71.html#ZhaoS09,https://doi.org/10.1016/j.gmod.2009.04.001 +Antonio Albano,Representation of Digitized Contours in Terms of Conic Arcs and Straight-Line Segments.,1974,3,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip3.html#Albano74,https://doi.org/10.1016/0146-664X(74)90008-2 +Yong-Joon Kim,Precise continuous contact motion for planar freeform geometric curves.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#KimEK14,https://doi.org/10.1016/j.gmod.2014.04.007 +C. Konstantopoulos,Novel Deconvolution of Noisy Gaussian Filters with a Modified Hermite Expansion.,1994,56,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip56.html#KonstantopoulosHS94,https://doi.org/10.1006/cgip.1994.1040 +Ling Tony Chen,A Parallel Algorithm for the Visibility of a Simple Polygon Using Scan Operations.,1993,55,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip55.html#ChenD93,https://doi.org/10.1006/cgip.1993.1014 +Terrance E. Boult,Local Image Reconstruction and Subpixel Restoration Algorithms.,1993,55,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip55.html#BoultW93,https://doi.org/10.1006/cgip.1993.1005 +Lidija Comic,A combinatorial coordinate system for the body-centered cubic grid.,2016,87,Graphical Models,,db/journals/cvgip/cvgip87.html#ComicN16,https://doi.org/10.1016/j.gmod.2016.08.001 +Haiyong Jiang,Symmetrization of facade layouts.,2016,85,Graphical Models,,db/journals/cvgip/cvgip85.html#JiangYDWNZ16,https://doi.org/10.1016/j.gmod.2016.01.003 +Ji-yong Kwon,An animation bilateral filter for slow-in and slow-out effects.,2011,73,Graphical Models,5,db/journals/cvgip/cvgip73.html#KwonL11,https://doi.org/10.1016/j.gmod.2011.02.002 +Yitzhak Yitzhaky,Identification of Blur Parameters from Motion Blurred Images.,1997,59,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip59.html#YitzhakyK97,https://doi.org/10.1006/gmip.1997.0435 +Seiichi Nishihara,False-contour removal by random blurring.,1982,20,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip20.html#NishiharaI82,https://doi.org/10.1016/0146-664X(82)90060-0 +R. J. Whatmough,"Automatic threshold selection from a histogram using the ""exponential hull"".",1991,53,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip53.html#Whatmough91,https://doi.org/10.1016/1049-9652(91)90009-9 +Ariel Shamir,Skeleton based solid representation with topology preservation.,2006,68,Graphical Models,3,db/journals/cvgip/cvgip68.html#ShamirS06,https://doi.org/10.1016/j.gmod.2005.10.001 +Vahid Taimouri,Deformation similarity measurement in quasi-conformal shape space.,2014,76,Graphical Models,2,db/journals/cvgip/cvgip76.html#TaimouriH14,https://doi.org/10.1016/j.gmod.2013.12.001 +Sterling J. Crabtree Jr.,A fast and accurate erosion-dilation method suitable for microcomputers.,1991,53,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip53.html#CrabtreeYE91,https://doi.org/10.1016/1049-9652(91)90050-T +Fu-kun Wu,A comprehensive geometrical optics application for wave rendering.,2013,75,Graphical Models,6,db/journals/cvgip/cvgip75.html#WuZ13,https://doi.org/10.1016/j.gmod.2013.07.004 +Tingbo Hou,Continuous and discrete Mexican hat wavelet transforms on manifolds.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#HouQ12,https://doi.org/10.1016/j.gmod.2012.04.010 +Joseph O'Rourke,Polygon decomposition and switching function minimization.,1982,18,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip18.html#RRourke82,https://doi.org/10.1016/0146-664X(82)90006-5 +Valentin E. Brimkov,Computational modeling of objects represented in images.,2011,73,Graphical Models,6,db/journals/cvgip/cvgip73.html#BrimkovB11,https://doi.org/10.1016/j.gmod.2011.06.003 +Hannu Olkkonen,Gaussian Pyramid Wavelet Transform for Multiresolution Analysis of Images.,1996,58,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip58.html#OlkkonenP96,https://doi.org/10.1006/gmip.1996.0032 +Robert G. Aykroyd,Unexpected Spatial Patterns in Exponential Family Auto Models.,1996,58,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip58.html#AykroydHZ96,https://doi.org/10.1006/gmip.1996.0037 +Pierre Landau,Subset Warping: Rubber Sheeting with Cuts.,1994,56,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip56.html#LandauS94,https://doi.org/10.1006/cgip.1994.1022 +Jing Wu 0004,Use of non-photorealistic rendering and photometric stereo in making bas-reliefs from photographs.,2014,76,Graphical Models,4,db/journals/cvgip/cvgip76.html#WuMRSLLW14,https://doi.org/10.1016/j.gmod.2014.02.002 +Shi-Kuo Chang,A triangular scanning technique for locating boundary curves.,1974,3,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip3.html#Chang74,https://doi.org/10.1016/0146-664X(74)90024-0 +Takis Sakkalis,Topological and Geometric Properties of Interval Solid Models.,2001,63,Graphical Models,3,db/journals/cvgip/cvgip63.html#SakkalisSP01,https://doi.org/10.1006/gmod.2001.0539 +Fu-kun Wu,Microfacet-based interference simulation for multilayer films.,2015,78,Graphical Models,,db/journals/cvgip/cvgip78.html#WuZ15,https://doi.org/10.1016/j.gmod.2014.12.003 +Thomas A. Grandine,Special Issue of selected papers from the 8th Dagstuhl seminar on Geometric Modeling.,2012,74,Graphical Models,6,db/journals/cvgip/cvgip74.html#GrandineHPW12,https://doi.org/10.1016/j.gmod.2012.08.001 +Yinhui Yang,ExploreTree: Interactive tree modeling in semantic trait space with online intent learning.,2017,91,Graphical Models,,db/journals/cvgip/cvgip91.html#YangWZB17,https://doi.org/10.1016/j.gmod.2017.02.002 +Pei Zhou 0002,Blending multiple parametric normal ringed surfaces using implicit functional splines and auxiliary spheres.,2011,73,Graphical Models,4,db/journals/cvgip/cvgip73.html#ZhouQ11,https://doi.org/10.1016/j.gmod.2010.12.002 +Michael Gleicher,Comparing Constraint-Based Motion Editing Methods.,2001,63,Graphical Models,2,db/journals/cvgip/cvgip63.html#Gleicher01,https://doi.org/10.1006/gmod.2001.0549 +Martin Isenburg,Compressing the Property Mapping of Polygon Meshes.,2002,64,Graphical Models,2,db/journals/cvgip/cvgip64.html#IsenburgS02,https://doi.org/10.1006/gmod.2002.0573 +K. Raghunath Rao,Nonorthogonal Image Expansion Related to Optimal Template Matching in Complex Images.,1994,56,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip56.html#RaoB94,https://doi.org/10.1006/cgip.1994.1014 +Xiao-Diao Chen,Computing the minimum distance between a point and a clamped B-spline surface.,2009,71,Graphical Models,3,db/journals/cvgip/cvgip71.html#ChenXYWP09,https://doi.org/10.1016/j.gmod.2009.01.001 +Barbara E. Schmitz,Color Palette Restoratio.,1995,57,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip57.html#SchmitzS95,https://doi.org/10.1006/gmip.1995.1035 +Ernst Denert,A method for computing points of a circle using only integers.,1973,2,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip2.html#Denert73,https://doi.org/10.1016/0146-664X(73)90033-6 +C. M. Hoffmann,Accuracy and semantics in shape-interrogation applications.,2005,67,Graphical Models,5,db/journals/cvgip/cvgip67.html#HoffmannS05,https://doi.org/10.1016/j.gmod.2005.01.001 +Koichi Harada,An isotropic four-point interpolation based on cubic splines.,1982,20,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip20.html#HaradaN82,https://doi.org/10.1016/0146-664X(82)90086-7 +Brian Wyvill,Special Issue on the International Conference of Shape Modeling (SMI) 2002.,2003,65,Graphical Models,5,db/journals/cvgip/cvgip65.html#Wyvill03,https://doi.org/10.1016/S1524-0703(03)00086-9 +Gershon Elber,The Convex Hull of Rational Plane Curves.,2001,63,Graphical Models,3,db/journals/cvgip/cvgip63.html#ElberKH01,https://doi.org/10.1006/gmod.2001.0546 +Adriano N. Raposo,3D molecular assembling of B-DNA sequences using nucleotides as building blocks.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#RaposoG12,https://doi.org/10.1016/j.gmod.2012.05.001 +Jehee Lee,Precomputing avatar behavior from human motion data.,2006,68,Graphical Models,2,db/journals/cvgip/cvgip68.html#LeeL06,https://doi.org/10.1016/j.gmod.2005.03.004 +Dirk Janssens,On sequential and parallel node-rewriting graph grammars.,1982,18,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip18.html#JanssensRV82,https://doi.org/10.1016/0146-664X(82)90036-3 +Siegfried J. Pöppl,Boundary detection in scintigraphic images.,1982,19,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip19.html#PopplH82a,https://doi.org/10.1016/0146-664X(82)90013-2 +Xin Feng,Compact combinatorial maps: A volume mesh data structure.,2013,75,Graphical Models,3,db/journals/cvgip/cvgip75.html#FengWWT13,https://doi.org/10.1016/j.gmod.2012.10.001 +Paul D. Sampson,"Fitting conic sections to ""very scattered"" data: An iterative refinement of the bookstein algorithm.",1982,18,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip18.html#Sampson82,https://doi.org/10.1016/0146-664X(82)90101-0 +Tommaso Toffoli,Three-Dimensional Rotations by Three Shears.,1997,59,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip59.html#ToffoliQ97,https://doi.org/10.1006/gmip.1997.0420 +Chandrajit L. Bajaj,Compression-Based 3D Texture Mapping for Real-Time Rendering.,2000,62,Graphical Models,6,db/journals/cvgip/cvgip62.html#BajajIP00,https://doi.org/10.1006/gmod.2000.0532 +Kah-Chye Tan,Restoration of real-world motion-blurred images.,1991,53,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip53.html#TanLT91,https://doi.org/10.1016/1049-9652(91)90051-K +Juha Ylä-Jääski,Fast direct display of volume data for medical diagnosis.,1991,53,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip53.html#Yla-JaaskiKK91,https://doi.org/10.1016/1049-9652(91)90014-B +Hongmei Kang,Hierarchical B-splines on regular triangular partitions.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#KangCD14,https://doi.org/10.1016/j.gmod.2014.03.002 +Wallace S. Rutkowski,Recognition of occluded shapes using relaxation.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Rutkowski82,https://doi.org/10.1016/0146-664X(82)90133-2 +Koichi Harada,An isotropic four-point interpolation based on cubic splines.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#HaradaN82a,https://doi.org/10.1016/0146-664X(82)90151-4 +Philip R. Thrift,Approximating point set images by line segments using a variation of the hough transform.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#ThriftD82,https://doi.org/10.1016/0146-664X(82)90149-6 +Donald Meagher,Geometric modeling using octree encoding.,1982,19,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip19.html#Meagher82a,https://doi.org/10.1016/0146-664X(82)90104-6 +Kai Tang,An optimization algorithm for free-form surface partitioning based on weighted gaussian image.,2005,67,Graphical Models,1,db/journals/cvgip/cvgip67.html#TangL05,https://doi.org/10.1016/j.gmod.2004.07.001 +Richard J. Prokop,A survey of moment-based techniques for unoccluded object representation and recognition.,1992,54,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip54.html#ProkopR92,https://doi.org/10.1016/1049-9652(92)90027-U +Gershon Elber,Curve Evaluation and Interrogation on Surfaces.,2001,63,Graphical Models,3,db/journals/cvgip/cvgip63.html#Elber01,https://doi.org/10.1006/gmod.2001.0541 +Mona Mahmoudi,Three-dimensional point cloud recognition via distributions of geometric distances.,2009,71,Graphical Models,1,db/journals/cvgip/cvgip71.html#MahmoudiS09,https://doi.org/10.1016/j.gmod.2008.10.002 +Cherng-Min Ma,Connectivity Preservation of 3D 6-Subiteration Thinning Algorithms.,1996,58,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip58.html#Ma96,https://doi.org/10.1006/gmip.1996.0030 +Gonzalo Hernandez,Cellular Automata for Elementary Image Enhancement.,1996,58,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip58.html#HernandezH96,https://doi.org/10.1006/gmip.1996.0006 +A. Ravishankar Rao,Identifying High Level Features of Texture Perception.,1993,55,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip55.html#RaoL93,https://doi.org/10.1006/cgip.1993.1016 +Wonjoon Cho,Topologically Reliable Approximation of Trimmed Polynomial Surface Patches.,1999,61,Graphical Models and Image Processing,2,db/journals/cvgip/cvgip61.html#ChoMPP99,https://doi.org/10.1006/gmip.1999.0483 +Zhonggui Chen,Approximation by piecewise polynomials on Voronoi tessellation.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#ChenXC14,https://doi.org/10.1016/j.gmod.2014.04.006 +Emilio Camahort,A line-space analysis of light-field representations.,2009,71,Graphical Models,5,db/journals/cvgip/cvgip71.html#CamahortAF09,https://doi.org/10.1016/j.gmod.2009.02.003 +Martin D. Levine,Understanding blood cell motion.,1982,20,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip20.html#LevineY82,https://doi.org/10.1016/0146-664X(82)90049-1 +Chris A. Glasbey,An Analysis of Histogram-Based Thresholding Algorithms.,1993,55,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip55.html#Glasbey93,https://doi.org/10.1006/cgip.1993.1040 +Greg Kay,Estimating the Parameters of an Illumination Model Using Photometric Stereo.,1995,57,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip57.html#KayC95,https://doi.org/10.1006/gmip.1995.1032 +Jong-Chul Yoon,Stable and controllable noise.,2008,70,Graphical Models,5,db/journals/cvgip/cvgip70.html#YoonL08,https://doi.org/10.1016/j.gmod.2008.04.001 +W. M. Krueger,On Synthesizing Discrete Fractional Brownian Motion with Applications to Image Processing.,1996,58,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip58.html#KruegerJRA96,https://doi.org/10.1006/gmip.1996.0027 +Supanut Chaidee,Spherical Laguerre Voronoi diagram approximation to tessellations without generators.,2018,95,Graphical Models,,db/journals/cvgip/cvgip95.html#ChaideeS18,https://doi.org/10.1016/j.gmod.2017.11.002 +Myung-Soo Kim,Special Issue on Pacific Graphics '99.,2000,62,Graphical Models,6,db/journals/cvgip/cvgip62.html#KimS00,https://doi.org/10.1006/gmod.2000.0533 +Virginio Cantoni,Matching the task to an I. P. architecture.,1982,19,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip19.html#Cantoni82,https://doi.org/10.1016/0146-664X(82)90029-6 +Shu-Yu Chen,Rigidity controllable as-rigid-as-possible shape deformation.,2017,91,Graphical Models,,db/journals/cvgip/cvgip91.html#ChenGLX17,https://doi.org/10.1016/j.gmod.2017.02.005 +Joseph O'Rourke,A new linear algorithm for intersecting convex polygons.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#ORourkeCON82,https://doi.org/10.1016/0146-664X(82)90156-3 +M. Senasli,3D Reconstruction of Vessel Lumen from Very Few Angiograms by Dynamic Contours Using a Stochastic Approach.,2000,62,Graphical Models,2,db/journals/cvgip/cvgip62.html#SenasliGHM00,https://doi.org/10.1006/gmod.1999.0520 +John D. Hobby,Space-Efficient Outlines from Image Data via Vertex Minimization and Grid Constraints.,1997,59,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip59.html#Hobby97,https://doi.org/10.1006/gmip.1997.0419 +Lennart Thurfjell,A new three-dimensional connected components labeling algorithm with simultaneous object feature extraction capability.,1992,54,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip54.html#ThurfjellBN92,https://doi.org/10.1016/1049-9652(92)90083-A +Nicole Lehmann,Notes on the curvature tensor.,2012,74,Graphical Models,6,db/journals/cvgip/cvgip74.html#LehmannR12,https://doi.org/10.1016/j.gmod.2012.04.003 +Guo Li,Geometry curves: A compact representation for 3D shapes.,2013,75,Graphical Models,5,db/journals/cvgip/cvgip75.html#LiL13,https://doi.org/10.1016/j.gmod.2013.05.001 +Stephen P. Smith,Chord distributions for shape matching.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#SmithJ82a,https://doi.org/10.1016/0146-664X(82)90163-0 +Robert M. Haralick,Understanding engineering drawings.,1982,20,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip20.html#HaralickQ82,https://doi.org/10.1016/0146-664X(82)90083-1 +Denis Steinemann,Splitting meshless deforming objects with explicit surface tracking.,2009,71,Graphical Models,6,db/journals/cvgip/cvgip71.html#SteinemannOG09,https://doi.org/10.1016/j.gmod.2008.12.004 +Yoichi Sato,Reflectance Analysis for 3D Computer Graphics Model Generation.,1996,58,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip58.html#SatoI96,https://doi.org/10.1006/gmip.1996.0036 +Wallace S. Rutkowski,Recognition of occluded shapes using relaxation.,1982,19,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip19.html#Rutkowski82a,https://doi.org/10.1016/0146-664X(82)90103-4 +Hui Wang 0018,Empirical mode decomposition on surfaces.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#WangSCWZ12,https://doi.org/10.1016/j.gmod.2012.04.005 +Gershon Elber,Generalized filleting and blending operations toward functional and decorative applications.,2005,67,Graphical Models,3,db/journals/cvgip/cvgip67.html#Elber05,https://doi.org/10.1016/j.gmod.2004.06.005 +Lori Belcastro,Tomographic Reconstruction of Polygons from Knot Location and Chord Length Measurements.,1996,58,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip58.html#BelcastroCW96,https://doi.org/10.1006/gmip.1996.0020 +Hirobumi Nishida,Boundary Extraction from Gray-Scale Document Images Based on Surface Data Structures.,1998,60,Graphical Models and Image Processing,1,db/journals/cvgip/cvgip60.html#Nishida98,https://doi.org/10.1006/gmip.1997.0452 +Tommy Elfving,Some properties of stochastic labeling procedures.,1982,20,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip20.html#ElfvingE82,https://doi.org/10.1016/0146-664X(82)90042-9 +Dan Lelescu,Representation and coding of light field data.,2004,66,Graphical Models,4,db/journals/cvgip/cvgip66.html#LelescuB04,https://doi.org/10.1016/j.gmod.2004.05.003 +Scott Krusemark,Image random file access routines.,1982,20,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip20.html#KrusemarkH82,https://doi.org/10.1016/0146-664X(82)90061-2 +L. Hayat,Candidate Functions for a Parallel Multi-level Thresholding Technique.,1996,58,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip58.html#HayatFC96,https://doi.org/10.1006/gmip.1996.0029 +Fernand S. Cohen,Modeling and synthesis of images of 3D textured surfaces.,1991,53,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip53.html#CohenP91,https://doi.org/10.1016/1049-9652(91)90001-Z +P. C. Maxwell,The perception and description of line drawings by computer.,1972,1,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip1.html#Maxwell72,https://doi.org/10.1016/S0146-664X(72)80005-4 +Sudhir S. Dixit,Hierarchical address vector quantization for image coding.,1991,53,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip53.html#DixitF91,https://doi.org/10.1016/1049-9652(91)90020-K +Benoit Beckers,"Editorial for Special issue on ""Massive 3D Urban Models"".",2018,95,Graphical Models,,db/journals/cvgip/cvgip95.html#BeckersAA18,https://doi.org/10.1016/j.gmod.2017.07.001 +Frédéric Chazal,A condition for isotopic approximation.,2005,67,Graphical Models,5,db/journals/cvgip/cvgip67.html#ChazalC05,https://doi.org/10.1016/j.gmod.2005.01.005 +Chandrajit L. Bajaj,Arbitrary Topology Shape Reconstruction from Planar Cross Sections.,1996,58,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip58.html#BajajCL96,https://doi.org/10.1006/gmip.1996.0044 +Robert L. Haar,Sketching: Estimating object positions from relational descriptions.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Haar82,https://doi.org/10.1016/0146-664X(82)90142-3 +Eric Plante,Capturing the Complexity of Hair Motion.,2002,64,Graphical Models,1,db/journals/cvgip/cvgip64.html#PlanteCP02,https://doi.org/10.1006/gmod.2002.0568 +Jun-ichiro Toriwaki,A generalized distance transformation of a line pattern with gray values and its applications.,1982,20,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip20.html#ToriwakiTF82,https://doi.org/10.1016/0146-664X(82)90056-9 +Hock Lim,New methods for restoring motion-blurred images derived from edge error considerations.,1991,53,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip53.html#LimTT91a,https://doi.org/10.1016/1049-9652(91)90032-F +Christopher C. Pu,Threshold Decomposition of Gray-Scale Soft Morphology into Binary Soft Morphology.,1995,57,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip57.html#PuS95,https://doi.org/10.1006/gmip.1995.1042 +P. L. J. Siero,Cell division patterns: Syntactical description and implementation.,1982,18,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip18.html#SieroRL82,https://doi.org/10.1016/0146-664X(82)90002-8 +Manyi Li,Class-sensitive shape dissimilarity metric.,2018,98,Graphical Models,,db/journals/cvgip/cvgip98.html#LiFCTCZC18,https://doi.org/10.1016/j.gmod.2018.06.002 +Demetri Terzopoulos,Detection of osteogenesis imperfecta by automated texture analysis.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#TerzopoulosZ82a,https://doi.org/10.1016/0146-664X(82)90121-6 +B. Kartikeyan,An identification approach for 2-D autoregressive models in describing textures.,1991,53,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip53.html#KartikeyanS91,https://doi.org/10.1016/1049-9652(91)90055-O +Ming Li,Normalized quadtrees with respect to translations.,1982,20,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip20.html#LiGJ82,https://doi.org/10.1016/0146-664X(82)90074-0 +Minho Kim,Analysis of symmetry groups of box-splines for evaluation on GPUs.,2017,93,Graphical Models,,db/journals/cvgip/cvgip93.html#Kim17,https://doi.org/10.1016/j.gmod.2017.08.001 +B. L. Yen,Determining 3-D motion and structure of a rigid body using the spherical projection.,1982,20,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip20.html#YenH82,https://doi.org/10.1016/0146-664X(82)90047-8 +Kah-Chye Tan,Windowing techniques for image restoration.,1991,53,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip53.html#TanLT91a,https://doi.org/10.1016/1049-9652(91)90033-G +Minoru Asada,Representation of three-dimensional motion in dynamic scenes.,1982,20,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip20.html#AsadaT82,https://doi.org/10.1016/0146-664X(82)90090-9 +Qinghuai Gao,Two-Dimensional Direction-Based Interpolation with Local Centered Moments.,1999,61,Graphical Models and Image Processing,6,db/journals/cvgip/cvgip61.html#GaoY99,https://doi.org/10.1006/gmip.1999.0504 +Jorge Ernesto Rodríguez,A connected-component-labeling-based approach to virtual porosimetry.,2011,73,Graphical Models,5,db/journals/cvgip/cvgip73.html#RodriguezCVA11,https://doi.org/10.1016/j.gmod.2011.06.001 +Ralph M. Ford,Representing and Visualizing Fluid Flow Images and Velocimetry Data by Nonlinear Dynamical Systems.,1995,57,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip57.html#FordS95,https://doi.org/10.1006/gmip.1995.1040 +Jayaram K. Udupa,Interactive segmentation and boundary surface formation for 3-D digital images.,1982,18,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip18.html#Udupa82,https://doi.org/10.1016/0146-664X(82)90033-8 +Martin D. Levine,Computer determination of depth maps.,1973,2,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip2.html#LevineOY73,https://doi.org/10.1016/0146-664X(73)90024-5 +Irene Gargantini,Multiple-seed 3D connectivity filling for inaccurate borders.,1991,53,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip53.html#GargantiniAS91,https://doi.org/10.1016/1049-9652(91)90006-6 +Zhaohui Wu,Data acquisition and simulation of dynamic flame with temperature distribution.,2018,98,Graphical Models,,db/journals/cvgip/cvgip98.html#WuWWHYK18,https://doi.org/10.1016/j.gmod.2018.06.001 +Boris Kronrod,Efficient Coding of Nontriangular Mesh Connectivity.,2001,63,Graphical Models,4,db/journals/cvgip/cvgip63.html#KronrodG01,https://doi.org/10.1006/gmod.2001.0555 +Shunji Mori,A sequential tracking extraction of shape features and its constructive description.,1982,19,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip19.html#MoriD82,https://doi.org/10.1016/0146-664X(82)90021-1 +Jason Lawrence,A painting interface for interactive surface deformations.,2004,66,Graphical Models,6,db/journals/cvgip/cvgip66.html#LawrenceF04,https://doi.org/10.1016/j.gmod.2004.05.008 +Gabor T. Herman,Three methods for reconstructing objects from x rays: A comparative study.,1973,2,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip2.html#HermanR73,https://doi.org/10.1016/0146-664X(73)90025-7 +Shiuh-Yung Chen,Split-and-merge image segmentation based on localized feature analysis and statistical tests.,1991,53,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip53.html#ChenLC91,https://doi.org/10.1016/1049-9652(91)90030-N +Marco Attene,Direct repair of self-intersecting meshes.,2014,76,Graphical Models,6,db/journals/cvgip/cvgip76.html#Attene14,https://doi.org/10.1016/j.gmod.2014.09.002 +Mateu Sbert,Optimal Absorption Probabilities for Random Walk Radiosity.,2000,62,Graphical Models,1,db/journals/cvgip/cvgip62.html#Sbert00,https://doi.org/10.1006/gmod.1999.0513 +C. Goresnic,Texture classification using the cortex transform.,1992,54,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip54.html#GoresnicR92,https://doi.org/10.1016/1049-9652(92)90079-D +Bernard Chalmond,PSF estimation for image deblurring.,1991,53,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip53.html#Chalmond91,https://doi.org/10.1016/1049-9652(91)90039-M +Henrik Zimmer,Zometool shape approximation.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#ZimmerLAK14,https://doi.org/10.1016/j.gmod.2014.03.009 +Satoru Kawai,On the topology preservation property of local parallel operations.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Kawai82a,https://doi.org/10.1016/0146-664X(82)90131-9 +Gonzalo Besuievsky,Skyline-based geometric simplification for urban solar analysis.,2018,95,Graphical Models,,db/journals/cvgip/cvgip95.html#BesuievskyBP18,https://doi.org/10.1016/j.gmod.2017.06.002 +Chinching Yen,Degraded Gray-Scale Text Recognition Using Pseudo-2D Hidden Markov Models and N-Best Hypotheses.,1995,57,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip57.html#YenK95,https://doi.org/10.1006/gmip.1995.1014 +Alexander A. Pasko,SMI 2003 special issue.,2005,67,Graphical Models,3,db/journals/cvgip/cvgip67.html#PaskoS05,https://doi.org/10.1016/j.gmod.2004.08.001 +Shervin Daneshpajouh,Computing polygonal path simplification under area measures.,2012,74,Graphical Models,5,db/journals/cvgip/cvgip74.html#DaneshpajouhGZ12,https://doi.org/10.1016/j.gmod.2012.04.006 +Irene Gargantini,Linear octtrees for fast processing of three-dimensional objects.,1982,20,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip20.html#Gargantini82,https://doi.org/10.1016/0146-664X(82)90058-2 +Leonie Dreschler,Volumetric model and 3D trajectory of a moving car derived from monocular TV frame sequences of a street scence.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#DreschlerN82a,https://doi.org/10.1016/0146-664X(82)90138-1 +Evan C. Sherbrooke,Differential and Topological Properties of Medial Axis Transforms.,1996,58,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip58.html#SherbrookePW96,https://doi.org/10.1006/gmip.1996.0047 +Yi-King Choi,Continuous collision detection for composite quadric models.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#ChoiWMTJS14,https://doi.org/10.1016/j.gmod.2014.03.005 +Hyung Woo Kang,Enhanced lane: interactive image segmentation by incremental path map construction.,2002,64,Graphical Models,5,db/journals/cvgip/cvgip64.html#KangS02,https://doi.org/10.1016/S1077-3169(02)00007-2 +Falai Chen,The andmicro*-basis of a planar rational curve - properties and computation.,2002,64,Graphical Models,6,db/journals/cvgip/cvgip64.html#ChenW02,https://doi.org/10.1016/S1077-3169(02)00017-5 +Venera Adanova,Beyond symmetry groups: A grouping study on Escher's Euclidean ornaments.,2016,83,Graphical Models,,db/journals/cvgip/cvgip83.html#AdanovaT16,https://doi.org/10.1016/j.gmod.2015.09.001 +Liwei Zhao,Acquiring and validating motion qualities from live limb gestures.,2005,67,Graphical Models,1,db/journals/cvgip/cvgip67.html#ZhaoB05,https://doi.org/10.1016/j.gmod.2004.08.002 +Huub van de Wetering,Chain Codes and Their Application in Curve Design.,1996,58,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip58.html#WeteringO96,https://doi.org/10.1006/gmip.1996.0038 +Sadakazu Watanabe,An automated apparatus for cancer prescreening: CYBEST.,1974,3,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip3.html#Watanabe74,https://doi.org/10.1016/0146-664X(74)90029-X +Fabien Salzenstein,Parameter Estimation in Hidden Fuzzy Markov Random Fields and Image Segmentation.,1997,59,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip59.html#SalzensteinP97,https://doi.org/10.1006/gmip.1997.0431 +Jacques Azencot,Deterministic and stochastic state model of right generalized cylinder (RGC-sm): application in computer phantoms synthesis.,2003,65,Graphical Models,6,db/journals/cvgip/cvgip65.html#AzencotO03,https://doi.org/10.1016/S1524-0703(03)00073-0 +Guowei Wan,Sorting unorganized photo sets for urban reconstruction.,2012,74,Graphical Models,1,db/journals/cvgip/cvgip74.html#WanSCZCL12,https://doi.org/10.1016/j.gmod.2011.11.001 +Wenping Wang,On the Difference Method for Drawing Conic Arcs.,1994,56,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip56.html#WangJW94,https://doi.org/10.1006/cgip.1994.1002 +Jeremy D. Wendt,Finite volume flow simulations on arbitrary domains.,2007,69,Graphical Models,1,db/journals/cvgip/cvgip69.html#WendtBOL07,https://doi.org/10.1016/j.gmod.2006.05.004 +Gary W. Howell,Quasi-circular Splines: A Shape-Preserving Approximation.,1993,55,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip55.html#HowellFF93,https://doi.org/10.1006/cgip.1993.1007 +Youngmin Kim,Vertex-transformation streams.,2006,68,Graphical Models,4,db/journals/cvgip/cvgip68.html#KimLV06,https://doi.org/10.1016/j.gmod.2006.03.005 +Scott Krusemark,An opening system interface for trasportable image processing software.,1982,19,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip19.html#KrusemarkH82a,https://doi.org/10.1016/0146-664X(82)90026-0 +Gunilla Borgefors,On the Multiscale Representation of 2D and 3D Shapes.,1999,61,Graphical Models and Image Processing,1,db/journals/cvgip/cvgip61.html#BorgeforsRBS99,https://doi.org/10.1006/gmip.1999.0489 +Michael T. Goodrich,A polygonal approach to hidden-line and hidden-surface elimination.,1992,54,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip54.html#Goodrich92,https://doi.org/10.1016/1049-9652(92)90029-W +Antoine Vacavant,A framework for dynamic implicit curve approximation by an irregular discrete approach.,2009,71,Graphical Models,3,db/journals/cvgip/cvgip71.html#VacavantCT09,https://doi.org/10.1016/j.gmod.2009.02.001 +Xinyu Zhang,A fast algebraic non-penetration filter for continuous collision detection.,2015,80,Graphical Models,,db/journals/cvgip/cvgip80.html#ZhangL15,https://doi.org/10.1016/j.gmod.2015.06.001 +Chung-Lin Huang,Directional Moving Averaging Interpolation for Texture Mapping.,1996,58,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip58.html#HuangC96,https://doi.org/10.1006/gmip.1996.0025 +Rajiv Mehrotra,A Computational Approach to Zero-Crossing-Based Two-Dimensional Edge Detection.,1996,58,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip58.html#MehrotraZ96,https://doi.org/10.1006/gmip.1996.0001 +David H. Eberly,Adaptation of group algebras to signal and image processing.,1991,53,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip53.html#EberlyW91,https://doi.org/10.1016/1049-9652(91)90037-K +Steve Capell,Physically based rigging for deformable characters.,2007,69,Graphical Models,1,db/journals/cvgip/cvgip69.html#CapellBCDP07,https://doi.org/10.1016/j.gmod.2006.09.001 +Hao Wang,Spectral 3D mesh segmentation with a novel single segmentation field.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#WangLAT14,https://doi.org/10.1016/j.gmod.2014.04.009 +Zhanpeng Huang,Reducing numerical dissipation in smoke simulation.,2015,78,Graphical Models,,db/journals/cvgip/cvgip78.html#HuangKLHG15,https://doi.org/10.1016/j.gmod.2014.12.002 +M. R. Bhatt,Robust Image Restoration Algorithm Using Markov Random Field Model.,1994,56,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip56.html#BhattD94,https://doi.org/10.1006/cgip.1994.1006 +Felipe Moura de Carvalho,Interactive cutaways of oil reservoirs.,2016,84,Graphical Models,,db/journals/cvgip/cvgip84.html#CarvalhoBMSO16,https://doi.org/10.1016/j.gmod.2016.02.001 +Stephen K. Park,Image reconstruction by parametric cubic convolution.,1982,20,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip20.html#ParkS82,https://doi.org/10.1016/0146-664X(82)90063-6 +Qiang Fu 0004,Natural lines inspired 3D shape re-design.,2016,85,Graphical Models,,db/journals/cvgip/cvgip85.html#FuCSF16,https://doi.org/10.1016/j.gmod.2016.01.002 +WuJun Che,Skeleton-driven 2D distance field metamorphosis using intrinsic shape parameters.,2004,66,Graphical Models,2,db/journals/cvgip/cvgip66.html#CheYW04,https://doi.org/10.1016/j.gmod.2003.11.001 +Frank B. ter Haar,A 3D face matching framework for facial curves.,2009,71,Graphical Models,2,db/journals/cvgip/cvgip71.html#HaarV09,https://doi.org/10.1016/j.gmod.2008.12.003 +Dongho Yun,Registration of multiview point clouds for application to ship fabrication.,2017,90,Graphical Models,,db/journals/cvgip/cvgip90.html#YunCKK17,https://doi.org/10.1016/j.gmod.2017.02.001 +Alexis Angelidis,Swirling-sweepers: Constant-volume modeling.,2006,68,Graphical Models,4,db/journals/cvgip/cvgip68.html#AngelidisCWK06,https://doi.org/10.1016/j.gmod.2005.11.001 +Shi-Sheng Huang,Structure guided interior scene synthesis via graph matching.,2016,85,Graphical Models,,db/journals/cvgip/cvgip85.html#HuangFH16,https://doi.org/10.1016/j.gmod.2016.03.004 +John C. Platt,A generalization of dynamic constraints.,1992,54,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip54.html#Platt92,https://doi.org/10.1016/1049-9652(92)90071-5 +Albert M. Vossepoel,Vector code probability and metrication error in the representation of straight lines of finite length.,1982,20,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip20.html#VossepoelS82,https://doi.org/10.1016/0146-664X(82)90057-0 +Joseph O'Rourke,A new linear algorithm for intersecting convex polygons.,1982,19,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip19.html#ORourkeCON82a,https://doi.org/10.1016/0146-664X(82)90023-5 +Ho Chao Huang,Panoramic Stereo Imaging System with Automatic Disparity Warping and Seaming.,1998,60,Graphical Models and Image Processing,3,db/journals/cvgip/cvgip60.html#HuangH98,https://doi.org/10.1006/gmip.1998.0467 +Anrong Peng,Adaptive Mixture Estimation and Unsupervised Local Bayesian Image Segmentation.,1995,57,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip57.html#PengP95,https://doi.org/10.1006/gmip.1995.1033 +Libor Vása,Optimised mesh traversal for dynamic mesh compression.,2011,73,Graphical Models,5,db/journals/cvgip/cvgip73.html#Vasa11,https://doi.org/10.1016/j.gmod.2011.03.005 +Dae-Eun Hyun,Minimizing the Distortion of Affine Spline Motions.,2002,64,Graphical Models,2,db/journals/cvgip/cvgip64.html#HyunJK02,https://doi.org/10.1006/gmod.2002.0569 +J. K. Wu,Adaptive bit allocation for image compression.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#WuB82,https://doi.org/10.1016/0146-664X(82)90157-5 +Xuhui Wang,Quaternion rational surfaces: Rational surfaces generated from the quaternion product of two rational space curves.,2015,81,Graphical Models,,db/journals/cvgip/cvgip81.html#Wang015,https://doi.org/10.1016/j.gmod.2014.04.002 +Paul L. Rosin,Artistic minimal rendering with lines and blocks.,2013,75,Graphical Models,4,db/journals/cvgip/cvgip75.html#RosinL13,https://doi.org/10.1016/j.gmod.2013.03.004 +Shixiang Jia,Mesh resizing based on hierarchical saliency detection.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#JiaZLZ14,https://doi.org/10.1016/j.gmod.2014.03.012 +Wenwu Zhu 0001,Regularized Multichannel Restoration Using Cross-Validation.,1995,57,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip57.html#ZhuGK95,https://doi.org/10.1006/gmip.1995.1005 +R. Mukundan,Estimation of quaternion parameters from two dimensional image moments.,1992,54,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip54.html#Mukundan92,https://doi.org/10.1016/1049-9652(92)90081-8 +Masahiko Yachida,Determining velocity maps by spatio-temporal neighborhoods from image sequences.,1982,20,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip20.html#Yachida82,https://doi.org/10.1016/0146-664X(82)90092-2 +Yong Jin,Unsupervised upright orientation of man-made models.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#JinWL12,https://doi.org/10.1016/j.gmod.2012.03.007 +Jun Shen 0004,On Multi-Edge Detection.,1996,58,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip58.html#Shen96,https://doi.org/10.1006/gmip.1996.0009 +David George,3D mesh segmentation via multi-branch 1D convolutional neural networks.,2018,96,Graphical Models,,db/journals/cvgip/cvgip96.html#GeorgeXT18,https://doi.org/10.1016/j.gmod.2018.01.001 +Adam Baumberg,3D S.O.M. - A commercial software solution to 3D scanning.,2005,67,Graphical Models,6,db/journals/cvgip/cvgip67.html#BaumbergLT05,https://doi.org/10.1016/j.gmod.2004.10.002 +Isabelle Bloch,A new characterization of simple elements in a tetrahedral mesh.,2005,67,Graphical Models,4,db/journals/cvgip/cvgip67.html#BlochPG05,https://doi.org/10.1016/j.gmod.2004.12.001 +Alexandre X. Falcão,User-Steered Image Segmentation Paradigms: Live Wire and Live Lane.,1998,60,Graphical Models and Image Processing,4,db/journals/cvgip/cvgip60.html#FalcaoUSSHL98,https://doi.org/10.1006/gmip.1998.0475 +Rui Wen,Topology based 2D engineering drawing and 3D model matching for process plant.,2017,92,Graphical Models,,db/journals/cvgip/cvgip92.html#WenTS17,https://doi.org/10.1016/j.gmod.2017.06.001 +David M. Mount,Computationally Efficient Algorithms for High-Dimensional Robust Estimators.,1994,56,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip56.html#MountN94,https://doi.org/10.1006/cgip.1994.1026 +Marco Attene,A mapping-independent primitive for the triangulation of parametric surfaces.,2003,65,Graphical Models,5,db/journals/cvgip/cvgip65.html#AtteneFSW03,https://doi.org/10.1016/S1524-0703(03)00048-1 +Brian Y. K. Aw,A Catalog of 1-D Features in Natural Images.,1994,56,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip56.html#AwOR94,https://doi.org/10.1006/cgip.1994.1016 +Leonard Uhr,Review of psychological processes in pattern recognition.,1974,3,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip3.html#Uhr74,https://doi.org/10.1016/0146-664X(74)90030-6 +Sai Ho Kwok,A Scalable and Adaptive Temporal Segmentation Algorithm for Video Coding.,1997,59,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip59.html#KwokSC97,https://doi.org/10.1006/gmip.1997.0423 +Eric Galin,Incremental Polygonization of Implicit Surfaces.,2000,62,Graphical Models,1,db/journals/cvgip/cvgip62.html#GalinA00,https://doi.org/10.1006/gmod.1999.0514 +Eric N. Mortensen,Interactive Segmentation with Intelligent Scissors.,1998,60,Graphical Models and Image Processing,5,db/journals/cvgip/cvgip60.html#MortensenB98,https://doi.org/10.1006/gmip.1998.0480 +Yasuaki Oishi,Topology-Oriented Divide-and-Conquer Algorithm for Voronoi Diagrams.,1995,57,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip57.html#OishiS95,https://doi.org/10.1006/gmip.1995.1027 +Dongryeol Kim,Unification of Distance and Volume Optimization in Surface Simplification.,1999,61,Graphical Models and Image Processing,6,db/journals/cvgip/cvgip61.html#KimKK99,https://doi.org/10.1006/gmip.1999.0506 +Mahmudul Hasan 0001,Balanced multiresolution for symmetric/antisymmetric filters.,2015,78,Graphical Models,,db/journals/cvgip/cvgip78.html#0001SS15,https://doi.org/10.1016/j.gmod.2015.01.001 +Kwai Hung Chan,Contour-Based Warping.,1998,60,Graphical Models and Image Processing,5,db/journals/cvgip/cvgip60.html#ChanL98,https://doi.org/10.1006/gmip.1998.0476 +Carlo Arcelli,On blob reconstruction.,1973,2,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip2.html#ArcelliL73,https://doi.org/10.1016/0146-664X(73)90030-0 +L.-M. Reissell,Wavelet Multiresolution Representation of Curves and Surfaces.,1996,58,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip58.html#Reissell96,https://doi.org/10.1006/gmip.1996.0017 +Paul L. Rosin,Multiscale Representation and Matching of Curves Using Codons.,1993,55,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip55.html#Rosin93,https://doi.org/10.1006/cgip.1993.1020 +John M. Einbu,Nonlinear reduction of data.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Einbu82,https://doi.org/10.1016/0146-664X(82)90153-8 +Remco C. Veltkamp,Boundaries through Scattered Points of Unknown Density.,1995,57,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip57.html#Veltkamp95,https://doi.org/10.1006/gmip.1995.1038 +Jehee Lee,A Coordinate-Invariant Approach to Multiresolution Motion Analysis.,2001,63,Graphical Models,2,db/journals/cvgip/cvgip63.html#LeeS01,https://doi.org/10.1006/gmod.2001.0548 +Michal Irani,Improving resolution by image registration.,1991,53,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip53.html#IraniP91,https://doi.org/10.1016/1049-9652(91)90045-L +Peter Kaufmann,Flexible simulation of deformable models using discontinuous Galerkin FEM.,2009,71,Graphical Models,4,db/journals/cvgip/cvgip71.html#KaufmannMBG09,https://doi.org/10.1016/j.gmod.2009.02.002 +D. A. Fogg,Vegetation-Limited Ground-to-Air Surveillance.,1993,55,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip55.html#Fogg93,https://doi.org/10.1006/cgip.1993.1032 +Ze-Nian Li,On edge preservation in multiresolution images.,1992,54,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip54.html#LiH92,https://doi.org/10.1016/1049-9652(92)90066-7 +Frederick M. Weinhaus,Photogrammetric Texture Mapping onto Planar Polygons.,1999,61,Graphical Models and Image Processing,2,db/journals/cvgip/cvgip61.html#WeinhausD99,https://doi.org/10.1006/gmip.1999.0491 +Rez Khan,Surface-based analysis methods for high-resolution functional magnetic resonance imaging.,2011,73,Graphical Models,6,db/journals/cvgip/cvgip73.html#KhanZDDKGBR11,https://doi.org/10.1016/j.gmod.2010.11.002 +Guo-Zhao Wang,Higher Order Derivatives of a Rational Bézier Curve.,1995,57,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip57.html#WangW95,https://doi.org/10.1006/gmip.1995.1023 +R. K. Dodd,A New Approach to the Visualization of Tensor Fields.,1998,60,Graphical Models and Image Processing,4,db/journals/cvgip/cvgip60.html#Dodd98,https://doi.org/10.1006/gmip.1998.0473 +Evelyne Hubert,Convolution surfaces based on polygons for infinite and compact support kernels.,2012,74,Graphical Models,1,db/journals/cvgip/cvgip74.html#Hubert12,https://doi.org/10.1016/j.gmod.2011.07.001 +Gilles Bertrand 0001,"A Note on ""Building Skeleton Models via 3-D Medial Surface/Axis Thinning Algorithms"".",1995,57,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip57.html#BertrandM95,https://doi.org/10.1006/gmip.1995.1045 +Qianwen Chao,Video-based personalized traffic learning.,2013,75,Graphical Models,6,db/journals/cvgip/cvgip75.html#ChaoSJ13,https://doi.org/10.1016/j.gmod.2013.07.003 +Chung-Nim Lee,Representation of orthogonal regions by vertices.,1991,53,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip53.html#LeePR91,https://doi.org/10.1016/1049-9652(91)90058-R +Marc A. Stoksik,Practical Synthesis of Accurate Fractal Images.,1995,57,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip57.html#StoksikLN95,https://doi.org/10.1006/gmip.1995.1020 +C. H. Li,Image Smoothing Using Parametric Relaxation.,1995,57,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip57.html#LiL95,https://doi.org/10.1006/gmip.1995.1016 +Bing Zhang 0005,NOTE: Blind Restoration of Degraded Binary Markov Random Field Images.,1996,58,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip58.html#ZhangSN96,https://doi.org/10.1006/gmip.1996.0007 +Paul A. Philippou,Vector Field Analysis and Synthesis Using Three-Dimensional Phase Portraits.,1997,59,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip59.html#PhilippouS97,https://doi.org/10.1006/gmip.1997.0445 +G. F. McLean,Geometric Correction of Digitized Art.,1996,58,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip58.html#McLean96,https://doi.org/10.1006/gmip.1996.0012 +Aris M. Ouksel,The Interpolation-Based Bintree and encoding of binary images.,1992,54,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip54.html#OukselY92,https://doi.org/10.1016/1049-9652(92)90035-V +Kari Pulli,Surface Reconstruction and Display from Range and Color Data.,2000,62,Graphical Models,3,db/journals/cvgip/cvgip62.html#PulliS00,https://doi.org/10.1006/gmod.1999.0519 +Ken Higuchi,Building 3-D Models from Unregistered Range Images.,1995,57,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip57.html#HiguchiHI95,https://doi.org/10.1006/gmip.1995.1028 +Robert Sedgewick,Computer graphics for drafting.,1974,3,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip3.html#Sedgewick74,https://doi.org/10.1016/S0146-664X(74)80002-X +Charles Albert Wüthrich,An algorithmic comparison between square- and hexagonal-based grids.,1991,53,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip53.html#WuthrichS91,https://doi.org/10.1016/1049-9652(91)90036-J +L. Gibson,Vectorization of raster images using hierarchical methods.,1982,20,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip20.html#GibsonL82,https://doi.org/10.1016/0146-664X(82)90075-2 +Peter Veelaert,Constructive Fitting and Extraction of Geometric Primitives.,1997,59,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip59.html#Veelaert97,https://doi.org/10.1006/gmip.1997.0433 +Sarah A. Rajala,Application of the one-dimensional fourier transform for tracking moving objects in noisy environments.,1982,20,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip20.html#RajalaRS82,https://doi.org/10.1016/0146-664X(82)90054-5 +Aldo Cumani,Edge detection in multispectral images.,1991,53,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip53.html#Cumani91,https://doi.org/10.1016/1049-9652(91)90018-F +Yi-Jun Yang,Intrinsic parameterization and registration of graph constrained surfaces.,2018,97,Graphical Models,,db/journals/cvgip/cvgip97.html#YangRZ18,https://doi.org/10.1016/j.gmod.2018.03.002 +Sun-Young Lee,CartoonModes: Cartoon stylization of video objects through modal analysis.,2012,74,Graphical Models,2,db/journals/cvgip/cvgip74.html#LeeYKL12,https://doi.org/10.1016/j.gmod.2012.02.001 +Oscar Ripolles,Rendering continuous level-of-detail meshes by Masking Strips.,2009,71,Graphical Models,5,db/journals/cvgip/cvgip71.html#RipollesCGRP09,https://doi.org/10.1016/j.gmod.2009.05.002 +N. T. Gaarder,Algorithms for reproducing objects from their X-rays.,1972,1,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip1.html#GaarderH72,https://doi.org/10.1016/S0146-664X(72)80009-1 +Yu-Kun Lai,Vertex location optimisation for improved remeshing.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#LaiM12,https://doi.org/10.1016/j.gmod.2012.04.011 +Yazid M. Sharaiha,An Optimal Algorithm for the Straight Segment Approximation of Digital Arcs.,1993,55,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip55.html#SharaihaC93,https://doi.org/10.1006/cgip.1993.1030 +Leonie Dreschler,Volumetric model and 3D trajectory of a moving car derived from monocular TV frame sequences of a street scene.,1982,20,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip20.html#DreschlerN82,https://doi.org/10.1016/0146-664X(82)90081-8 +C. K. Chow,Some computer experiments in picture processing for data compaction.,1974,3,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip3.html#ChowDL74,https://doi.org/10.1016/0146-664X(74)90014-8 +Linlin Xu,Survey on sparsity in geometric modeling and processing.,2015,82,Graphical Models,,db/journals/cvgip/cvgip82.html#XuWZYDCL15,https://doi.org/10.1016/j.gmod.2015.06.012 +Mattia Natali,Graph-based representations of point clouds.,2011,73,Graphical Models,5,db/journals/cvgip/cvgip73.html#NataliBPF11,https://doi.org/10.1016/j.gmod.2011.03.002 +Y. P. Chien,A decision function method for boundary detection.,1974,3,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip3.html#ChienF74,https://doi.org/10.1016/S0146-664X(74)80003-1 +V. S. N. Reddy,Some experiments in scene analysis and scene regeneration using COMPAX.,1972,1,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip1.html#ReddyN72,https://doi.org/10.1016/0146-664X(72)90023-8 +Guillermo Sapiro,Contrast Enhancement via Image Evolution Flow.,1997,59,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip59.html#SapiroC97,https://doi.org/10.1006/gmip.1997.0446 +Sudhanshu Kumar Semwal,Spatial Filtering Using the Active-Space Indexing Method.,2001,63,Graphical Models,3,db/journals/cvgip/cvgip63.html#SemwalO01,https://doi.org/10.1006/gmod.2001.0540 +Kwang-Jin Choi,Processing Motion Capture Data to Achieve Positional Accuracy.,1999,61,Graphical Models and Image Processing,5,db/journals/cvgip/cvgip61.html#ChoiPK99,https://doi.org/10.1006/gmip.1999.0505 +Charles R. Dyer,The space efficiency of quadtrees.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Dyer82,https://doi.org/10.1016/0146-664X(82)90143-5 +Per-Erik Danielsson,High-accuracy rotation of images.,1992,54,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip54.html#DanielssonH92,https://doi.org/10.1016/1049-9652(92)90080-H +Shuangming Chai,Stress-oriented structural optimization for frame structures.,2018,97,Graphical Models,,db/journals/cvgip/cvgip97.html#ChaiCJYLFL18,https://doi.org/10.1016/j.gmod.2018.04.002 +David W. Paglieroni,Distance transforms: Properties and machine vision applications.,1992,54,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip54.html#Paglieroni92,https://doi.org/10.1016/1049-9652(92)90034-U +Bin Sheng,Efficient non-incremental constructive solid geometry evaluation for triangular meshes.,2018,97,Graphical Models,,db/journals/cvgip/cvgip97.html#ShengLFMW18,https://doi.org/10.1016/j.gmod.2018.03.001 +Jia-Guu Leu,Image contrast enhancement based on the intensities of edge pixels.,1992,54,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip54.html#Leu92,https://doi.org/10.1016/1049-9652(92)90069-A +Chengda Yang,Efficient Stochastic Algorithms on Locally Bounded Image Space.,1993,55,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip55.html#Yang93,https://doi.org/10.1006/cgip.1993.1037 +Ron Goldman 0002,Modeling perspective projections in 3-dimensions by rotations in 4-dimensions.,2013,75,Graphical Models,2,db/journals/cvgip/cvgip75.html#Goldman13,https://doi.org/10.1016/j.gmod.2012.10.002 +Alan E. Cowart,The detection of unresolved targets using the hough transform.,1982,20,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip20.html#CowartSR82,https://doi.org/10.1016/0146-664X(82)90051-X +Jun Shen 0004,An optimal linear operator for step edge detection.,1992,54,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip54.html#ShenC92,https://doi.org/10.1016/1049-9652(92)90060-B +Jie Zhou,Improved Codebook Edge Detection.,1995,57,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip57.html#ZhouPD95,https://doi.org/10.1006/gmip.1995.1044 +Troy T. Chinen,A Performance Analysis of Fast Gabor Transform Methods.,1997,59,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip59.html#ChinenR97,https://doi.org/10.1006/gmip.1997.0421 +Xumin Liu,Hyperbolic polynomial uniform B-spline curves and surfaces with shape parameter.,2010,72,Graphical Models,1,db/journals/cvgip/cvgip72.html#LiuXGS10,https://doi.org/10.1016/j.gmod.2009.10.001 +Rasmus Tamstorf,Discrete bending forces and their Jacobians.,2013,75,Graphical Models,6,db/journals/cvgip/cvgip75.html#TamstorfG13,https://doi.org/10.1016/j.gmod.2013.07.001 +Martin Marinov,Optimization methods for scattered data approximation with subdivision surfaces.,2005,67,Graphical Models,5,db/journals/cvgip/cvgip67.html#MarinovK05,https://doi.org/10.1016/j.gmod.2005.01.003 +Franck Neycenssac,Contrast Enhancement Using the Laplacian-of-a-Gaussian Filter.,1993,55,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip55.html#Neycenssac93,https://doi.org/10.1006/cgip.1993.1034 +Svetha Venkatesh,Dynamic Threshold Determination by Local and Global Edge Evaluation.,1995,57,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip57.html#VenkateshR95,https://doi.org/10.1006/gmip.1995.1015 +Stuart Geman,A nonlinear filter for film restoration and other problems in image processing.,1992,54,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip54.html#GemanMG92,https://doi.org/10.1016/1049-9652(92)90075-9 +Lori L. Scarlatos,Hierarchical triangulation using cartographic coherence.,1992,54,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip54.html#ScarlatosP92,https://doi.org/10.1016/1049-9652(92)90062-3 +Rongjiang Pan,Color adjustment in image-based texture maps.,2015,79,Graphical Models,,db/journals/cvgip/cvgip79.html#PanT15,https://doi.org/10.1016/j.gmod.2015.04.002 +Alain Le Négrate,An image enhancement technique and its evaluation through bimodality analysis.,1992,54,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip54.html#NegrateBD92,https://doi.org/10.1016/1049-9652(92)90030-2 +Leo Levi,Unsharp masking and related image enhancement techniques.,1974,3,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip3.html#Levi74,https://doi.org/10.1016/S0146-664X(74)80005-5 +Jun Wang 0039,Quality mesh smoothing via local surface fitting and optimum projection.,2011,73,Graphical Models,4,db/journals/cvgip/cvgip73.html#WangY11,https://doi.org/10.1016/j.gmod.2011.01.002 +Christian Lovato,Automatic labelling of anatomical landmarks on 3D body scans.,2014,76,Graphical Models,6,db/journals/cvgip/cvgip76.html#LovatoCZG14,https://doi.org/10.1016/j.gmod.2014.07.001 +John M. Gauch,Investigations of image contrast space defined by variations on histogram equalization.,1992,54,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip54.html#Gauch92,https://doi.org/10.1016/1049-9652(92)90074-8 +Azriel Rosenfeld,Picture processing: 1972.,1972,1,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip1.html#Rosenfeld72,https://doi.org/10.1016/0146-664X(72)90024-X +Jean Hsu,Visible Light and X-Ray Ray Tracing of Generalized Cylinders.,1994,56,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip56.html#HsuC94,https://doi.org/10.1006/cgip.1994.1035 +Long-Wen Chang,Reconstruction of 3D medical images: A nonlinear interpolation technique for reconstruction of 3D medical images.,1991,53,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip53.html#ChangCH91,https://doi.org/10.1016/1049-9652(91)90041-H +Heidrun Mühlthaler,Computing the Minkowski sum of ruled surfaces.,2003,65,Graphical Models,6,db/journals/cvgip/cvgip65.html#MuhlthalerP03,https://doi.org/10.1016/j.gmod.2003.07.003 +Zhong Li,Skeleton-enhanced line drawings for 3D models.,2014,76,Graphical Models,6,db/journals/cvgip/cvgip76.html#LiQ0YL14,https://doi.org/10.1016/j.gmod.2014.07.002 +Samuel M. Thomas,Cramer-Rao Lower Bounds for Estimation of a Circular Arc Center and Its Radius.,1995,57,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip57.html#ThomasC95,https://doi.org/10.1006/gmip.1995.1043 +Wolfgang Boehm,On cubics: A survey.,1982,19,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip19.html#Boehm82a,https://doi.org/10.1016/0146-664X(82)90009-0 +Gershon Elber,Geometric Shape Recognition of Freeform Curves and Surfaces.,1997,59,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip59.html#ElberK97,https://doi.org/10.1006/gmip.1997.0441 +Luigi Bedini,A Deterministic Algorithm for Reconstructing Images with Interacting Discontinuities.,1994,56,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip56.html#BediniGT94,https://doi.org/10.1006/cgip.1994.1011 +Mathieu Huard,C2 interpolation of spatial data subject to arc-length constraints using Pythagorean-hodograph quintic splines.,2014,76,Graphical Models,1,db/journals/cvgip/cvgip76.html#HuardFSB14,https://doi.org/10.1016/j.gmod.2013.10.005 +Giovanni Gallo,Fuzzy B-Splines: A Surface Model Encapsulating Uncertainty.,2000,62,Graphical Models,1,db/journals/cvgip/cvgip62.html#GalloSS00,https://doi.org/10.1006/gmod.1999.0512 +Yang Gao,An efficient heat-based model for solid-liquid-gas phase transition and dynamic interaction.,2017,94,Graphical Models,,db/journals/cvgip/cvgip94.html#GaoLYQH17,https://doi.org/10.1016/j.gmod.2017.09.001 +Paolo Cignoni,Zeta: A Resolution Modeling System.,1998,60,Graphical Models and Image Processing,5,db/journals/cvgip/cvgip60.html#CignoniMRS98,https://doi.org/10.1006/gmip.1998.0477 +Kikuo Fujimura,Foldover-Free Image Warping.,1998,60,Graphical Models and Image Processing,2,db/journals/cvgip/cvgip60.html#FujimuraM98,https://doi.org/10.1006/gmip.1998.0454 +Wen Zheng,Simulation of bubbles.,2009,71,Graphical Models,6,db/journals/cvgip/cvgip71.html#ZhengYP09,https://doi.org/10.1016/j.gmod.2009.08.001 +R. Fabian,Robust identification of motion and out-of-focus blur parameters from blurred and noisy images.,1991,53,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip53.html#FabianM91,https://doi.org/10.1016/1049-9652(91)90025-F +Hongcheng Wang,Videoshop: A new framework for spatio-temporal video editing in gradient domain.,2007,69,Graphical Models,1,db/journals/cvgip/cvgip69.html#WangXRA07,https://doi.org/10.1016/j.gmod.2006.06.002 +Niloy J. Mitra,Editorial Special issue on the fifth Computational Visual Media conference (CVM 2017).,2017,91,Graphical Models,,db/journals/cvgip/cvgip91.html#MitraYC17,https://doi.org/10.1016/j.gmod.2017.05.001 +Kambiz Rahbar,Inside looking out camera pose estimation for virtual studio.,2008,70,Graphical Models,4,db/journals/cvgip/cvgip70.html#RahbarP08,https://doi.org/10.1016/j.gmod.2008.01.001 +Anna R. Bruss,Passive navigation.,1982,20,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip20.html#BrussH82,https://doi.org/10.1016/0146-664X(82)90046-6 +Devendra Jalihal,Signal Detection Theory Approach to the Multiple Parallel Moving Targets Problem.,1993,55,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip55.html#JalihalN93,https://doi.org/10.1006/cgip.1993.1017 +Luis Unzueta,Full-body performance animation with Sequential Inverse Kinematics.,2008,70,Graphical Models,5,db/journals/cvgip/cvgip70.html#UnzuetaPBS08,https://doi.org/10.1016/j.gmod.2008.03.002 +Xue Dong Yang,The Cluster Hair Model.,2000,62,Graphical Models,2,db/journals/cvgip/cvgip62.html#YangXYW00,https://doi.org/10.1006/gmod.1999.0518 +Steven M. Rubin,The representation and display of scenes with a wide range of detail.,1982,19,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip19.html#Rubin82a,https://doi.org/10.1016/0146-664X(82)90014-4 +Jens Gregor,Indoor Scene Reconstruction from Sets of Noisy Range Images.,2001,63,Graphical Models,5,db/journals/cvgip/cvgip63.html#GregorW01,https://doi.org/10.1006/gmod.2001.0562 +Weiwen Wang,Large-eddy simulations of pedestrian-level ventilation for assessing a satellite-based approach to urban geometry generation.,2018,95,Graphical Models,,db/journals/cvgip/cvgip95.html#WangXN18,https://doi.org/10.1016/j.gmod.2017.06.003 +Doug L. James,Symposium on Computer Animation 2008.,2009,71,Graphical Models,4,db/journals/cvgip/cvgip71.html#James09,https://doi.org/10.1016/j.gmod.2009.05.001 +Suriya Natsupakpong,Determination of elasticity parameters in lumped element (mass-spring) models of deformable objects.,2010,72,Graphical Models,6,db/journals/cvgip/cvgip72.html#NatsupakpongC10,https://doi.org/10.1016/j.gmod.2010.10.001 +Huazhong Shu,An Efficient Method for Computation of Legendre Moments.,2000,62,Graphical Models,4,db/journals/cvgip/cvgip62.html#ShuLBYH00,https://doi.org/10.1006/gmod.2000.0523 +Henning Biermann,Sharp Features on Multiresolution Subdivision Surfaces.,2002,64,Graphical Models,2,db/journals/cvgip/cvgip64.html#BiermannMZB02,https://doi.org/10.1006/gmod.2002.0570 +Christian Theobalt,Combining 3D flow fields with silhouette-based human motion capture for immersive video.,2004,66,Graphical Models,6,db/journals/cvgip/cvgip66.html#TheobaltCMS04,https://doi.org/10.1016/j.gmod.2004.06.009 +Gerald E. Farin,A construction for visual C1 continuity of polynomial surface patches.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Farin82a,https://doi.org/10.1016/0146-664X(82)90166-6 +Jinyuan Jia,Preface of the special issue advances in Web3D.,2016,88,Graphical Models,,db/journals/cvgip/cvgip88.html#Jia16,https://doi.org/10.1016/j.gmod.2016.10.001 +Minglun Gong,Camera field rendering for static and dynamic scenes.,2005,67,Graphical Models,2,db/journals/cvgip/cvgip67.html#GongY05,https://doi.org/10.1016/j.gmod.2004.06.004 +Lynne MacLachlan,Exploration of multi-material surfaces as weighted shapes.,2016,83,Graphical Models,,db/journals/cvgip/cvgip83.html#MacLachlanJ16,https://doi.org/10.1016/j.gmod.2015.07.002 +Friedrich M. Wahl,Block segmentation and text extraction in mixed text/image documents.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#WahlWC82a,https://doi.org/10.1016/0146-664X(82)90168-X +Wen-Yen Wu,Detecting the Dominant Points by the Curvature-Based Polygonal Approximation.,1993,55,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip55.html#WuW93,https://doi.org/10.1006/cgip.1993.1006 +J. Alex Stark,An Alternative Algorithm for Adaptive Histogram Equalization.,1996,58,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip58.html#StarkF96,https://doi.org/10.1006/gmip.1996.0015 +László G. Nyúl,Fuzzy-connected 3D image segmentation at interactive speeds.,2002,64,Graphical Models,5,db/journals/cvgip/cvgip64.html#NyulFU02,https://doi.org/10.1016/S1077-3169(02)00005-9 +John P. Collomosse,Rendering cartoon-style motion cues in post-production video.,2005,67,Graphical Models,6,db/journals/cvgip/cvgip67.html#CollomosseRH05,https://doi.org/10.1016/j.gmod.2004.12.002 +Markus Kronenberger,Gaussian curvature using fundamental forms for binary voxel data.,2015,82,Graphical Models,,db/journals/cvgip/cvgip82.html#KronenbergerWFH15,https://doi.org/10.1016/j.gmod.2015.06.009 +Marc Vigo Anglada,Efficient algorithms for boundary extraction of 2D and 3D orthogonal pseudomanifolds.,2012,74,Graphical Models,3,db/journals/cvgip/cvgip74.html#AngladaGAM12,https://doi.org/10.1016/j.gmod.2012.03.004 +Arpan Biswas,Approximate distance fields with non-vanishing gradients.,2004,66,Graphical Models,3,db/journals/cvgip/cvgip66.html#BiswasS04,https://doi.org/10.1016/j.gmod.2004.01.003 +Ron Goldman 0002,An Extension of Chaiken's Algorithm to B-Spline Curves with Knots in Geometric Progression.,1993,55,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip55.html#GoldmanW93,https://doi.org/10.1006/cgip.1993.1004 +Laurent Busé,Extraction of cylinders and cones from minimal point sets.,2016,86,Graphical Models,,db/journals/cvgip/cvgip86.html#BuseGZ16,https://doi.org/10.1016/j.gmod.2016.05.003 +Abhijit G. Shanbhag,Utilization of Information Measure as a Means of Image Thresholding.,1994,56,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip56.html#Shanbhag94,https://doi.org/10.1006/cgip.1994.1037 +Hadi Fadaifard,Multiscale 3D feature extraction and matching with an application to 3D face recognition.,2013,75,Graphical Models,4,db/journals/cvgip/cvgip75.html#FadaifardWH13,https://doi.org/10.1016/j.gmod.2013.01.002 +Ivaturi S. N. Murthy,A search algorithm for skeletonization of thick patterns.,1974,3,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip3.html#MurthyU74,https://doi.org/10.1016/0146-664X(74)90018-5 +Pierre Allain,Optimal crowd editing.,2014,76,Graphical Models,1,db/journals/cvgip/cvgip76.html#AllainCC14,https://doi.org/10.1016/j.gmod.2013.09.001 +Heewon Kye,Interactive classification for pre-integrated volume rendering of high-precision volume data.,2008,70,Graphical Models,6,db/journals/cvgip/cvgip70.html#KyeSS08,https://doi.org/10.1016/j.gmod.2008.05.001 +M. L. V. Pitteway,"Integer Circles, Etc. - three move extension of Bresenham's algorithm.",1974,3,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip3.html#PittewyB74,https://doi.org/10.1016/0146-664X(74)90019-7 +Valentin E. Brimkov,Connected distance-based rasterization of objects in arbitrary dimension.,2011,73,Graphical Models,6,db/journals/cvgip/cvgip73.html#BrimkovBB11,https://doi.org/10.1016/j.gmod.2011.06.002 +Pierre Alliez,Centroidal Voronoi diagrams for isotropic surface remeshing.,2005,67,Graphical Models,3,db/journals/cvgip/cvgip67.html#AlliezVDI05,https://doi.org/10.1016/j.gmod.2004.06.007 +Scott D. Roth,Ray casting for modeling solids.,1982,18,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip18.html#Roth82,https://doi.org/10.1016/0146-664X(82)90169-1 +S. Louis Hakimi,Fitting polygonal functions to a set of points in the plane.,1991,53,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip53.html#HakimiS91,https://doi.org/10.1016/1049-9652(91)90056-P +Daniel Bielser,A state machine for real-time cutting of tetrahedral meshes.,2004,66,Graphical Models,6,db/journals/cvgip/cvgip66.html#BielserGTG04,https://doi.org/10.1016/j.gmod.2004.05.009 +Hayley N. Iben,Generating surface crack patterns.,2009,71,Graphical Models,6,db/journals/cvgip/cvgip71.html#IbenO09,https://doi.org/10.1016/j.gmod.2008.12.005 +Javier Lluch,Modelling tree structures using a single polygonal mesh.,2004,66,Graphical Models,2,db/journals/cvgip/cvgip66.html#LluchVM04,https://doi.org/10.1016/j.gmod.2004.01.002 +Iddo Hanniel,Computing the Hausdorff distance between NURBS surfaces using numerical iteration on the GPU.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#HannielKM12,https://doi.org/10.1016/j.gmod.2012.05.002 +Michael F. Goodchild,A hierarchical spatial data structure for global geographic information systems.,1992,54,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip54.html#GoodchildS92,https://doi.org/10.1016/1049-9652(92)90032-S +Gabor T. Herman,Finitary 1-Simply Connected Digital Spaces.,1998,60,Graphical Models and Image Processing,1,db/journals/cvgip/cvgip60.html#Herman98,https://doi.org/10.1006/gmip.1997.0456 +Martin Peternell,Geometric Properties of Bisector Surfaces.,2000,62,Graphical Models,3,db/journals/cvgip/cvgip62.html#Peternell00,https://doi.org/10.1006/gmod.1999.0521 +Yachin Pnueli,Gridless Halftoning: A Reincarnation of the Old Method.,1996,58,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip58.html#PnueliB96,https://doi.org/10.1006/gmip.1996.0003 +K. B. Irani,An approach to the optimum implementation of interactive display data structures.,1972,1,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip1.html#IraniJ72,https://doi.org/10.1016/S0146-664X(72)80016-9 +Tamar Peli,A study of edge detection algorithms.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Peli82,https://doi.org/10.1016/0146-664X(82)90136-8 +Edward S. Deutsch,Texture descriptors using neighborhood information.,1972,1,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip1.html#DeutschB72,https://doi.org/10.1016/S0146-664X(72)80012-1 +Thomas S. Huang,Digital transmission of halftone pictures.,1974,3,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip3.html#Huang74,https://doi.org/10.1016/0146-664X(74)90013-6 +Thomas W. Sederberg,Approximate Implicitization Using Monoid Curves and Surfaces.,1999,61,Graphical Models and Image Processing,4,db/journals/cvgip/cvgip61.html#SederbergZKD99,https://doi.org/10.1006/gmip.1999.0497 +Guiqing Li,A unified approach for fairing arbitrary polygonal meshes.,2004,66,Graphical Models,3,db/journals/cvgip/cvgip66.html#LiBM04,https://doi.org/10.1016/j.gmod.2004.03.001 +David H. Eberly,On gray scale image measurements : I. Arc length and area.,1991,53,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip53.html#EberlyL91,https://doi.org/10.1016/1049-9652(91)90004-4 +Guojin Wang,The termination criterion for subdivision of the rational Bézier curves.,1991,53,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip53.html#WangX91,https://doi.org/10.1016/1049-9652(91)90023-D +Günther Greiner,Scattered Data Interpolation Using Data Dependant Optimization Techniques.,2002,64,Graphical Models,1,db/journals/cvgip/cvgip64.html#GreinerKR02,https://doi.org/10.1006/gmod.2001.0542 +Fabio A. Schreiber,Use of Neural Networks to Estimate the Number of Nodes of an Edge Quadtree.,1997,59,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip59.html#SchreiberW97,https://doi.org/10.1006/gmip.1996.0417 +Binh Pham 0001,Expressive brush strokes.,1991,53,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip53.html#Pham91,https://doi.org/10.1016/1049-9652(91)90013-A +Sarah H. Peckinpaugh,An improved method for computing gray-level cooccurrence matrix based texture measures.,1991,53,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip53.html#Peckinpaugh91,https://doi.org/10.1016/1049-9652(91)90007-7 +Jirí Kosinka,Creases and boundary conditions for subdivision curves.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#KosinkaSD14,https://doi.org/10.1016/j.gmod.2014.03.004 +Jan Myrheim,New algorithms for maximum entropy image restoration.,1992,54,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip54.html#MyrheimR92,https://doi.org/10.1016/1049-9652(92)90053-Z +F. R. Hansen,Image segmentation using simple markov field models.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#HansenE82a,https://doi.org/10.1016/0146-664X(82)90130-7 +Won-Ki Jeong,Direct Reconstruction of a Displaced Subdivision Surface from Unorganized Points.,2002,64,Graphical Models,2,db/journals/cvgip/cvgip64.html#JeongK02,https://doi.org/10.1006/gmod.2002.0572 +John T. Hooks Jr.,On 3-D Real-Time Perspective Generation from a Multiresolution Photo-Mosaic Data Base.,1993,55,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip55.html#HooksMD93,https://doi.org/10.1006/cgip.1993.1025 +Chun-Gang Zhu,Self-intersections of rational Bézier curves.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#ZhuZ14,https://doi.org/10.1016/j.gmod.2014.04.001 +Federico Ponchio,Multiresolution and fast decompression for optimal web-based rendering.,2016,88,Graphical Models,,db/journals/cvgip/cvgip88.html#PonchioD16,https://doi.org/10.1016/j.gmod.2016.09.002 +Shujin Lin,A new interpolation subdivision scheme for triangle/quad mesh.,2013,75,Graphical Models,5,db/journals/cvgip/cvgip75.html#LinLX013,https://doi.org/10.1016/j.gmod.2013.03.002 +Venkata Sreekanth Arikatla,An iterative predictor-corrector approach for modeling static and kinetic friction in interactive simulations.,2015,82,Graphical Models,,db/journals/cvgip/cvgip82.html#ArikatlaD15,https://doi.org/10.1016/j.gmod.2015.10.001 +Wei Jiang,Curve skeleton extraction by coupled graph contraction and surface clustering.,2013,75,Graphical Models,3,db/journals/cvgip/cvgip75.html#Jiang0CMD13,https://doi.org/10.1016/j.gmod.2012.10.005 +Nelson J. Bridwell,A discrete spatial representation for lateral motion stereo.,1982,20,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip20.html#BridwellH82,https://doi.org/10.1016/0146-664X(82)90088-0 +Gift Siromoney,Abstract families of matrices and picture languages.,1972,1,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip1.html#SiromoneySK72,https://doi.org/10.1016/S0146-664X(72)80019-4 +Wenlan Ba,Geometry of 3D MAT and its application to moulding surfaces.,2015,82,Graphical Models,,db/journals/cvgip/cvgip82.html#BaRC15,https://doi.org/10.1016/j.gmod.2015.09.004 +Mikhail Shnaider,Image Coding throughDLattice Quantization of Wavelet Coefficients.,1997,59,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip59.html#ShnaiderP97,https://doi.org/10.1006/gmip.1997.0429 +S. H. Joseph,Unbiased Least Squares Fitting of Circular Arcs.,1994,56,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip56.html#Joseph94,https://doi.org/10.1006/cgip.1994.1039 +Albert M. Vossepoel,Vector code probability and metrication error in the representation of straight lines of finite length.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#VossepoelS82a,https://doi.org/10.1016/0146-664X(82)90119-8 +J. K. Wu,Adaptive bit allocation for image compression.,1982,19,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip19.html#WuB82a,https://doi.org/10.1016/0146-664X(82)90024-7 +Jeffrey L. Posdamer,Surface measurement by space-encoded projected beam systems.,1982,18,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip18.html#PosdamerA82,https://doi.org/10.1016/0146-664X(82)90096-X +Weidong Shi,Memory-Centric Security Architecture.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#ShiLL07,https://doi.org/10.1007/978-3-540-71528-3_7 +Hans Vandierendonck,Fetch Gating Control through Speculative Instruction Window Weighting.,2009,2,Trans. HiPEAC,,db/journals/thipeac/thipeac2.html#VandierendonckS09,https://doi.org/10.1007/978-3-642-00904-4_8 +Arnaldo Azevedo,A Highly Scalable Parallel Implementation of H.264.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#AzevedoJMTHARV11,https://doi.org/10.1007/978-3-642-24568-8_6 +Nan Yuan,An Efficient and Flexible Task Management for Many Cores.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#YuanYF11,https://doi.org/10.1007/978-3-642-24568-8_15 +Subhradyuti Sarkar,Data Layout for Cache Performance on a Multithreaded Architecture.,2011,3,Trans. HiPEAC,,db/journals/thipeac/thipeac3.html#SarkarT11,https://doi.org/10.1007/978-3-642-19448-1_3 +Dominique Chanet,Linux Kernel Compaction through Cold Code Swapping.,2009,2,Trans. HiPEAC,,db/journals/thipeac/thipeac2.html#ChanetCMNB09,https://doi.org/10.1007/978-3-642-00904-4_10 +Stanley Jaddoe,Signature-Based Calibration of Analytical Performance Models for System-Level Design Space Exploration.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#JaddoeTP11,https://doi.org/10.1007/978-3-642-24568-8_21 +Iyad Al Khatib,Hardware/Software Architecture for Real-Time ECG Monitoring and Analysis Leveraging MPSoC Technology.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#KhatibBPBJBKHNJ07,https://doi.org/10.1007/978-3-540-71528-3_16 +Tobias Klug,autopin - Automated Optimization of Thread-to-Core Pinning on Multicore Systems.,2011,3,Trans. HiPEAC,,db/journals/thipeac/thipeac3.html#KlugOWT11,https://doi.org/10.1007/978-3-642-19448-1_12 +Minwook Ahn,Fast Code Generation for Embedded Processors with Aliased Heterogeneous Registers.,2009,2,Trans. HiPEAC,,db/journals/thipeac/thipeac2.html#AhnP09,https://doi.org/10.1007/978-3-642-00904-4_9 +Valeriu Beiu,On Two-Layer Brain-Inspired Hierarchical Topologies - A Rent's Rule Approach -.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#BeiuMKM11,https://doi.org/10.1007/978-3-642-24568-8_16 +Ben Cope,A Systematic Design Space Exploration Approach to Customising Multi-Processor Architectures: Exemplified Using Graphics Processors.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#CopeCLH11,https://doi.org/10.1007/978-3-642-24568-8_4 +Chun-Chieh Lin,Cache Sensitive Code Arrangement for Virtual Machine.,2011,3,Trans. HiPEAC,,db/journals/thipeac/thipeac3.html#LinC11,https://doi.org/10.1007/978-3-642-19448-1_2 +Michael F. P. O'Boyle,Introduction to Part 2.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#OBoyleBC07,https://doi.org/10.1007/978-3-540-71528-3_9 +Jan Hoogerbrugge,A Multithreaded Multicore System for Embedded Media Processing.,2011,3,Trans. HiPEAC,,db/journals/thipeac/thipeac3.html#HoogerbruggeT11,https://doi.org/10.1007/978-3-642-19448-1_9 +Aneesh Aggarwal,Complexity Effective Bypass Networks.,2009,2,Trans. HiPEAC,,db/journals/thipeac/thipeac2.html#Aggarwal09,https://doi.org/10.1007/978-3-642-00904-4_11 +Daniel Llorente,Advanced Packet Segmentation and Buffering Algorithms in Network Processors.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#LlorenteKWH11,https://doi.org/10.1007/978-3-642-24568-8_17 +Tarik Saidani,Parallelization Schemes for Memory Optimization on the Cell Processor: A Case Study on the Harris Corner Detector.,2011,3,Trans. HiPEAC,,db/journals/thipeac/thipeac3.html#SaidaniLFTB11,https://doi.org/10.1007/978-3-642-19448-1_10 +Adam Welc,Software Transactional Memory Validation - Time and Space Considerations.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#WelcS11,https://doi.org/10.1007/978-3-642-24568-8_13 +Michael B. Henry,Hybrid Super/Subthreshold Design of a Low Power Scalable-Throughput FFT Architecture.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#HenryN11,https://doi.org/10.1007/978-3-642-24568-8_9 +Vijay Nagarajan,Compiler-Assisted Memory Encryption for Embedded Processors.,2009,2,Trans. HiPEAC,,db/journals/thipeac/thipeac2.html#NagarajanGK09,https://doi.org/10.1007/978-3-642-00904-4_3 +Ghaffari Fakhreddine,Dynamic and On-Line Design Space Exploration for Reconfigurable Architectures.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#FakhreddineAAJ07,https://doi.org/10.1007/978-3-540-71528-3_12 +Omer Khan,Microvisor: A Runtime Architecture for Thermal Management in Chip Multiprocessors.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#KhanK11,https://doi.org/10.1007/978-3-642-24568-8_5 +Mohammad Ansari,Robust Adaptation to Available Parallelism in Transactional Memory Applications.,2011,3,Trans. HiPEAC,,db/journals/thipeac/thipeac3.html#AnsariLKJKW11,https://doi.org/10.1007/978-3-642-19448-1_13 +Amit Golander,Reexecution and Selective Reuse in Checkpoint Processors.,2009,2,Trans. HiPEAC,,db/journals/thipeac/thipeac2.html#GolanderW09,https://doi.org/10.1007/978-3-642-00904-4_13 +Michael J. Geiger,Specializing Cache Structures for High Performance and Energy Conservation in Embedded Systems.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#GeigerMT07,https://doi.org/10.1007/978-3-540-71528-3_5 +Shane Ryoo,Automatic Discovery of Coarse-Grained Parallelism in Media Applications.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#RyooURKFH07,https://doi.org/10.1007/978-3-540-71528-3_13 +Simon Kluyskens,Branch Predictor Warmup for Sampled Simulation through Branch History Matching.,2009,2,Trans. HiPEAC,,db/journals/thipeac/thipeac2.html#KluyskensE09,https://doi.org/10.1007/978-3-642-00904-4_4 +Frederik Vandeputte,Characterizing Time-Varying Program Behavior Using Phase Complexity Surfaces.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#VandeputteE11,https://doi.org/10.1007/978-3-642-24568-8_2 +Nan Wu 0003,Tiled Multi-Core Stream Architecture.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#WuYWHRGZ11,https://doi.org/10.1007/978-3-642-24568-8_14 +William Plishker,Heterogeneous Design in Functional DIF.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#PlishkerSKB11,https://doi.org/10.1007/978-3-642-24568-8_20 +Dries Buytaert,GCH: Hints for Triggering Garbage Collections.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#BuytaertVEB07,https://doi.org/10.1007/978-3-540-71528-3_6 +Khaled Z. Ibrahim,Power-Aware Bus Coscheduling for Periodic Realtime Applications Running on Multiprocessor SoC.,2009,2,Trans. HiPEAC,,db/journals/thipeac/thipeac2.html#IbrahimN09,https://doi.org/10.1007/978-3-642-00904-4_15 +Seung Woo Son,A Prefetching Algorithm for Multi-speed Disks.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#SonK07,https://doi.org/10.1007/978-3-540-71528-3_20 +M. M. Waliullah,Efficient Partial Roll-Backing Mechanism for Transactional Memory Systems.,2011,3,Trans. HiPEAC,,db/journals/thipeac/thipeac3.html#Waliullah11,https://doi.org/10.1007/978-3-642-19448-1_14 +Koen De Bosschere,High-Performance Embedded Architecture and Compilation Roadmap.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#BosschereLMNOPRSSST07,https://doi.org/10.1007/978-3-540-71528-3_2 +Woojin Choi,Accurate Instruction Pre-scheduling in Dynamically Scheduled Processors.,2009,2,Trans. HiPEAC,,db/journals/thipeac/thipeac2.html#ChoiPD09,https://doi.org/10.1007/978-3-642-00904-4_7 +Arquimedes Canedo,Compiler Support for Code Size Reduction Using a Queue-Based Processor.,2009,2,Trans. HiPEAC,,db/journals/thipeac/thipeac2.html#CanedoAS09,https://doi.org/10.1007/978-3-642-00904-4_14 +Guilin Chen,An Approach for Enhancing Inter-processor Data Locality on Chip Multiprocessors.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#ChenK07,https://doi.org/10.1007/978-3-540-71528-3_14 +Yiannakis Sazeides,Improving Branch Prediction by Considering Affectors and Affectees Correlations.,2011,3,Trans. HiPEAC,,db/journals/thipeac/thipeac3.html#SazeidesMCK11,https://doi.org/10.1007/978-3-642-19448-1_4 +Matthias A. Blumrich,Exploring the Architecture of a Stream Register-Based Snoop Filter.,2011,3,Trans. HiPEAC,,db/journals/thipeac/thipeac3.html#BlumrichSG11,https://doi.org/10.1007/978-3-642-19448-1_6 +Frederik Vandeputte,Finding Extreme Behaviors in Microprocessor Workloads.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#VandeputteE11a,https://doi.org/10.1007/978-3-642-24568-8_8 +Chunling Hu,Combining Edge Vector and Event Counter for Time-Dependent Power Behavior Characterization.,2009,2,Trans. HiPEAC,,db/journals/thipeac/thipeac2.html#HuJK09,https://doi.org/10.1007/978-3-642-00904-4_6 +Ke Ning,Power Aware External Bus Arbitration for System-on-a-Chip Embedded Systems.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#NingK07,https://doi.org/10.1007/978-3-540-71528-3_8 +Sandro Bartolini,Eighth MEDEA Workshop.,2011,3,Trans. HiPEAC,,db/journals/thipeac/thipeac3.html#BartoliniFP11,https://doi.org/10.1007/978-3-642-19448-1_5 +Mohammad Ansari,Transaction Reordering to Reduce Aborts in Software Transactional Memory.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#AnsariLKJKW11a,https://doi.org/10.1007/978-3-642-24568-8_10 +Christine Rochange,A Context-Parameterized Model for Static Analysis of Execution Times.,2009,2,Trans. HiPEAC,,db/journals/thipeac/thipeac2.html#RochangeS09,https://doi.org/10.1007/978-3-642-00904-4_12 +Shlomit S. Pinter,Selective Code Compression Scheme for Embedded Systems.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#PinterW07,https://doi.org/10.1007/978-3-540-71528-3_19 +Timothy M. Jones 0001,Compiler Directed Issue Queue Energy Reduction.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#JonesOAG11,https://doi.org/10.1007/978-3-642-24568-8_3 +Major Bhadauria,Data Cache Techniques to Save Power and Deliver High Performance in Embedded Systems.,2009,2,Trans. HiPEAC,,db/journals/thipeac/thipeac2.html#BhadauriaMST09,https://doi.org/10.1007/978-3-642-00904-4_5 +Alex E. Susu,Reconfiguration Strategies for Environmentally Powered Devices: Theoretical Analysis and Experimental Validation.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#SusuMAAM07,https://doi.org/10.1007/978-3-540-71528-3_21 +Nicholas Nethercote,Convergent Compilation Applied to Loop Unrolling.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#NethercoteBM07,https://doi.org/10.1007/978-3-540-71528-3_10 +William George Osborne,Energy Reduction by Systematic Run-Time Reconfigurable Hardware Deactivation.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#OsborneLCM11,https://doi.org/10.1007/978-3-642-24568-8_18 +Yasutaka Wada,A Parallelizing Compiler Cooperative Heterogeneous Multicore Processor Architecture.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#WadaHMSNSKK11,https://doi.org/10.1007/978-3-642-24568-8_11 +Magnus Jahre,A High Performance Adaptive Miss Handling Architecture for Chip Multiprocessors.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#JahreN11,https://doi.org/10.1007/978-3-642-24568-8_1 +Harald Devos,Constructing Application-Specific Memory Hierarchies on FPGAs.,2011,3,Trans. HiPEAC,,db/journals/thipeac/thipeac3.html#DevosCVS11,https://doi.org/10.1007/978-3-642-19448-1_11 +Markus Rullmann,A Cost Model for Partial Dynamic Reconfiguration.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#RullmannM11,https://doi.org/10.1007/978-3-642-24568-8_19 +Per Stenström,Introduction to Part 1.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#Stenstrom07,https://doi.org/10.1007/978-3-540-71528-3_3 +Isao Kotera,Power-Aware Dynamic Cache Partitioning for CMPs.,2011,3,Trans. HiPEAC,,db/journals/thipeac/thipeac3.html#KoteraAETK11,https://doi.org/10.1007/978-3-642-19448-1_8 +Xiongfei Liao,A Modular Simulator Framework for Network-on-Chip Based Manycore Chips Using UNISIM.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#LiaoJS11,https://doi.org/10.1007/978-3-642-24568-8_12 +Patrick Mahoney,Performance Characterization for the Implementation of Content Addressable Memories Based on Parallel Hashing Memories.,2009,2,Trans. HiPEAC,,db/journals/thipeac/thipeac2.html#MahoneySBP09,https://doi.org/10.1007/978-3-642-00904-4_16 +Georgios Keramidas,Recruiting Decay for Dynamic Power Reduction in Set-Associative Caches.,2009,2,Trans. HiPEAC,,db/journals/thipeac/thipeac2.html#KeramidasXK09,https://doi.org/10.1007/978-3-642-00904-4_2 +Miquel Moretó,Dynamic Cache Partitioning Based on the MLP of Cache Misses.,2011,3,Trans. HiPEAC,,db/journals/thipeac/thipeac3.html#MoretoCRV11,https://doi.org/10.1007/978-3-642-19448-1_1 +Sai Prashanth Muralidhara,Communication Based Proactive Link Power Management.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#MuralidharaK11,https://doi.org/10.1007/978-3-642-24568-8_7 +John Oliver,Using Application Bisection Bandwidth to Guide Tile Size Selection for the Synchroscalar Tile-Based Architecture.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#OliverFCA07,https://doi.org/10.1007/978-3-540-71528-3_17 +Sally A. McKee,Introduction to Part 3.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#McKee07,https://doi.org/10.1007/978-3-540-71528-3_15 +Maziar Goudarzi,Software-Level Instruction-Cache Leakage Reduction Using Value-Dependence of SRAM Leakage in Nanometer Technologies.,2011,3,Trans. HiPEAC,,db/journals/thipeac/thipeac3.html#GoudarziIN11,https://doi.org/10.1007/978-3-642-19448-1_15 +Maurice V. Wilkes,High Performance Processor Chips.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#Wilkes07,https://doi.org/10.1007/978-3-540-71528-3_1 +Anca Mariana Molnos,Static Cache Partitioning Robustness Analysis for Embedded On-Chip Multi-processors.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#MolnosCHE07,https://doi.org/10.1007/978-3-540-71528-3_18 +Harald Devos,Finding and Applying Loop Transformations for Generating Optimized FPGA Implementations.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#DevosBCCDS07,https://doi.org/10.1007/978-3-540-71528-3_11 +Fernando Latorre,CROB: Implementing a Large Instruction Window through Compression.,2011,3,Trans. HiPEAC,,db/journals/thipeac/thipeac3.html#LatorreMGCG11,https://doi.org/10.1007/978-3-642-19448-1_7 +Per Stenström,Introduction.,2009,2,Trans. HiPEAC,,db/journals/thipeac/thipeac2.html#StenstromW09,https://doi.org/10.1007/978-3-642-00904-4_1 +Grigori Fursin,Quick and Practical Run-Time Evaluation of Multiple Program Optimizations.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#FursinCOT07,https://doi.org/10.1007/978-3-540-71528-3_4 +Shuning Huang,Using magnetic resonance microscopy to study the growth dynamics of a glioma spheroid in collagen I: A case study.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#HuangVWSWDRD08,https://doi.org/10.1186/1471-2342-8-3 +Zhi-gang Chu,Pelvic retroperitoneal pleomorphic hyalinizing angiectatic tumor (PHAT) of soft tissue: a case report.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#ChuLZLO16,https://doi.org/10.1186/s12880-016-0130-3 +Evgeni Aizenberg,Computer-aided evaluation of inflammatory changes over time on MRI of the spine in patients with suspected axial spondyloarthritis: a feasibility study.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#AizenbergBEHRDL17,https://doi.org/10.1186/s12880-017-0226-4 +Frank J. Brooks,Quantification of heterogeneity observed in medical images.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#BrooksG13,https://doi.org/10.1186/1471-2342-13-7 +Emma Taylor,A chest radiograph scoring system in patients with severe acute respiratory infection: a validation study.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#TaylorHRBHMBFIP15,https://doi.org/10.1186/s12880-015-0103-y +Jan Norum,PET-CT in the sub-arctic region of Norway 2010-2013. At the edge of what is possible?,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#NorumSTNTAS15,https://doi.org/10.1186/s12880-015-0073-0 +Tariq Sinan,Is fasting a necessary preparation for abdominal ultrasound?,2003,3,BMC Medical Imaging,,db/journals/bmcmi/bmcmi3.html#SinanLS03,https://doi.org/10.1186/1471-2342-3-1 +Pasha Razifar,Non-isotropic noise correlation in PET data reconstructed by FBP but not by OSEM demonstrated using auto-correlation function.,2005,5,BMC Medical Imaging,,db/journals/bmcmi/bmcmi5.html#RazifarLSLBB05,https://doi.org/10.1186/1471-2342-5-3 +Zebin Xiao,Multiple paragangliomas of head and neck associated with hepatic paraganglioma: a case report.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#XiaoSC15,https://doi.org/10.1186/s12880-015-0082-z +Mads Liisberg,Abdominal ultrasound-scanning versus non-contrast computed tomography as screening method for abdominal aortic aneurysm - a validation study from the randomized DANCAVAS study.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#LiisbergDL17,https://doi.org/10.1186/s12880-017-0186-8 +Ravi K. Murthy,In-vivo high resolution imaging of optic nerve head drusen using spectral-domain Optical Coherence Tomography.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#MurthySGBC10,https://doi.org/10.1186/1471-2342-10-11 +Dazhou Guo,Automated lesion detection on MRI scans using combined unsupervised and supervised methods.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#GuoFFRYZW15,https://doi.org/10.1186/s12880-015-0092-x +Carsten Pietsch,Combined PET/CT-perfusion in patients with head and neck cancers might predict failure after radio-chemotherapy: a proof of concept study.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#PietschBHSHHSHV15,https://doi.org/10.1186/s12880-015-0102-z +Arjan P. Schouten van der Velden,Magnetic resonance imaging in size assessment of invasive breast carcinoma with an extensive intraductal component.,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#VeldenBBW09,https://doi.org/10.1186/1471-2342-9-5 +Jan Theopold,Detection of articular perforations of the proximal humerus fracture using a mobile 3D image intensifier - a cadaver study.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#TheopoldWFMJH17,https://doi.org/10.1186/s12880-017-0201-0 +Frida Lindberg,Evaluation of ultrasound Tissue Velocity Imaging: a phantom study of velocity estimation in skeletal muscle low-level contractions.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#LindbergMGB13,https://doi.org/10.1186/1471-2342-13-16 +Nicola Ingram,The use of high-frequency ultrasound imaging and biofluorescence for in vivo evaluation of gene therapy vectors.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#IngramMMSCMWC13,https://doi.org/10.1186/1471-2342-13-35 +Yiming Gao,A comparison of pediatric and adult CT organ dose estimation methods.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#GaoQMLEGPXBD17,https://doi.org/10.1186/s12880-017-0199-3 +Ha Kyoung Park,Utility of routine ultrasonography follow-up after total thyroidectomy in patients with papillary thyroid carcinoma: a single-center study.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#ParkKHHBLCLKJAA18,https://doi.org/10.1186/s12880-018-0253-9 +Stefan Buchner,Cardiovascular magnetic resonance assessment of the aortic valve stenosis: an in vivo and ex vivo study.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#BuchnerDSLD15,https://doi.org/10.1186/s12880-015-0076-x +Hideyuki Suenaga,Vision-based markerless registration using stereo vision and an augmented reality surgical navigation system: a pilot study.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#SuenagaTLMDHT15,https://doi.org/10.1186/s12880-015-0089-5 +Ali S. Arbab,Tracking of In-111-labeled human umbilical tissue-derived cells (hUTC) in a rat model of cerebral ischemia using SPECT imaging.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#ArbabTNVHZJVIC12,https://doi.org/10.1186/1471-2342-12-33 +Aysegül Altunkeser,Usefulness of grayscale inverted images in addition to standard images in digital mammography.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#AltunkeserK17,https://doi.org/10.1186/s12880-017-0196-6 +Ryousuke Kawai,Increased enhancement of the liver adjacent to the gallbladder seen with contrast ultrasound: comparison between acute cholecystitis and non-cholecystitis.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#KawaiHMIIKK16,https://doi.org/10.1186/s12880-016-0115-2 +Edward J. Kendall,Automatic detection of anomalies in screening mammograms.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#KendallBC13,https://doi.org/10.1186/1471-2342-13-43 +Yi-Chen Li,Coccidiomycosis infection of the patella mimicking a neoplasm - two case reports.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#LiCHJR14,https://doi.org/10.1186/1471-2342-14-8 +Marianna Fontana,A case report in cardiovascular magnetic resonance: the contrast agent matters in amyloid.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#FontanaTMRKGHM17,https://doi.org/10.1186/s12880-016-0173-5 +Luigi Cormio,Magnetic resonance imaging of penile paraffinoma: case report.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#CormioFSSMSMC14,https://doi.org/10.1186/1471-2342-14-39 +Robert D. Prins,Estimating radiation effective doses from whole body computed tomography scans based on U.S. soldier patient height and weight.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#PrinsTSQCD11,https://doi.org/10.1186/1471-2342-11-20 +Hirokazu Iwamuro,Atypical findings of perineural cysts on postmyelographic computed tomography: a case report of intermittent intercostal neuralgia caused by thoracic perineural cysts.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#IwamuroYTT17,https://doi.org/10.1186/s12880-017-0210-z +Ruigang Lu,Superb microvascular imaging (SMI) compared with conventional ultrasound for evaluating thyroid nodules.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#LuMZZWJG17,https://doi.org/10.1186/s12880-017-0241-5 +Gianmarco M. Balestra,Improvement of Sidestream Dark Field Imaging with an Image Acquisition Stabilizer.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#BalestraBBYSEKI10,https://doi.org/10.1186/1471-2342-10-15 +Mark A. Haidekker,Influence of gold nanoparticles on collagen fibril morphology quantified using transmission electron microscopy and image analysis.,2006,6,BMC Medical Imaging,,db/journals/bmcmi/bmcmi6.html#HaidekkerBSRG06,https://doi.org/10.1186/1471-2342-6-4 +Shoaleh Shahidi,The accuracy of a designed software for automated localization of craniofacial landmarks on CBCT images.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#ShahidiBSZOMM14,https://doi.org/10.1186/1471-2342-14-32 +Zenghui Cheng,CT characteristics of non-small cell lung cancer with epidermal growth factor receptor mutation: a systematic review and meta-analysis.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#ChengSYSZ17,https://doi.org/10.1186/s12880-016-0175-3 +Abbas K. Abbas,Intelligent neonatal monitoring based on a virtual thermal sensor.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#AbbasL14,https://doi.org/10.1186/1471-2342-14-9 +Margaret M. O'Keeffe,A workstation-integrated peer review quality assurance program: pilot study.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#OKeeffeDS13,https://doi.org/10.1186/1471-2342-13-19 +Sven Van Poucke,Automatic colorimetric calibration of human wounds.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#PouckeHVMJ10,https://doi.org/10.1186/1471-2342-10-7 +Wolf Schweitzer,Evaluation of 3D surface scanners for skin documentation in forensic medicine: comparison of benchmark surfaces.,2007,7,BMC Medical Imaging,,db/journals/bmcmi/bmcmi7.html#SchweitzerHBS07,https://doi.org/10.1186/1471-2342-7-1 +Caroline B. Boulocher,Radiographic assessment of the femorotibial joint of the CCLT rabbit experimental model of osteoarthritis.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#BoulocherVCFACMRDVR10,https://doi.org/10.1186/1471-2342-10-3 +Jocelyn Barbosa,Efficient quantitative assessment of facial paralysis using iris segmentation and active contour-based key points detection with hybrid classifier.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#BarbosaLLLCSK16,https://doi.org/10.1186/s12880-016-0117-0 +Rola Harmouche,Multimodal image registration of the scoliotic torso for surgical planning.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#HarmoucheCLD13,https://doi.org/10.1186/1471-2342-13-1 +Lars J. Petersen,Prospective evaluation of computer-assisted analysis of skeletal lesions for the staging of prostate cancer.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#PetersenMBZ17,https://doi.org/10.1186/s12880-017-0211-y +Jan L. Bruse,A statistical shape modelling framework to extract 3D shape biomarkers from medical imaging data: assessing arch morphology of repaired coarctation of the aorta.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#BruseMBNCHSPTS16,https://doi.org/10.1186/s12880-016-0142-z +Paschalis Tossios,No evidence of myocardial restoration following transplantation of mononuclear bone marrow cells in coronary bypass grafting surgery patients based upon cardiac SPECT and 18F-PET.,2006,6,BMC Medical Imaging,,db/journals/bmcmi/bmcmi6.html#TossiosMSSUMSM06,https://doi.org/10.1186/1471-2342-6-7 +Huijuan Xiao,A pilot study using low-dose Spectral CT and ASIR (Adaptive Statistical Iterative Reconstruction) algorithm to diagnose solitary pulmonary nodules.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#XiaoLTLWSWG15,https://doi.org/10.1186/s12880-015-0096-6 +Marius Iacomi,Mammographic images segmentation based on chaotic map clustering algorithm.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#IacomiCFR14,https://doi.org/10.1186/1471-2342-14-12 +Nana Dong,Comparison of coronary arterial lumen dimensions on angiography and plaque characteristics on optical coherence tomography images and their changes induced by statin.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#DongXWDSPTY16,https://doi.org/10.1186/s12880-016-0166-4 +Hennie Verburg,Validation of a measuring technique with computed tomography for cement penetration into trabecular bone underneath the tibial tray in total knee arthroplasty on a cadaver model.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#VerburgRVP14,https://doi.org/10.1186/1471-2342-14-29 +Prabhjot Juneja,Classification of fibroglandular tissue distribution in the breast based on radiotherapy planning CT.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#JunejaEWH16,https://doi.org/10.1186/s12880-016-0107-2 +Ying Yuan,Head and neck paragangliomas: diffusion weighted and dynamic contrast enhanced magnetic resonance imaging characteristics.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#YuanST16,https://doi.org/10.1186/s12880-016-0114-3 +Hiroyuki Akai,Computed tomography and magnetic resonance imaging of a plexiform angiomyxoid myofibroblastic tumor: a case report.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#AkaiKSONYO17,https://doi.org/10.1186/s12880-017-0180-1 +Thorsten Jentzsch,Osseous vitality in single photon emission computed tomography/computed tomography (SPECT/CT) after balloon tibioplasty of the tibial plateau: a case series.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#JentzschFVSSW15,https://doi.org/10.1186/s12880-015-0091-y +Wafa Allam,Excavated pulmonary nodules: an unusual clinical presentation of lung metastasis in two cases.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#AllamEALE10,https://doi.org/10.1186/1471-2342-10-13 +Sakon Noriki,Newly recognized cerebral infarctions on postmortem imaging: a report of three cases with systemic infectious disease.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#NorikiKISKYIN17,https://doi.org/10.1186/s12880-016-0174-4 +Hiroshi Matsuda,Evaluation of both perfusion and atrophy in multiple system atrophy of the cerebellar type using brain SPECT alone.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#MatsudaIKSIKYSS10,https://doi.org/10.1186/1471-2342-10-17 +William W. L. Chin,In-vivo optical detection of cancer using chlorin e6 - polyvinylpyrrolidone induced fluorescence imaging and spectroscopy.,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#ChinTBSHO09,https://doi.org/10.1186/1471-2342-9-1 +Eva C. Kaltenthaler,MRCP compared to diagnostic ERCP for diagnosis when biliary obstruction is suspected: a systematic review.,2006,6,BMC Medical Imaging,,db/journals/bmcmi/bmcmi6.html#KaltenthalerWCBVT06,https://doi.org/10.1186/1471-2342-6-9 +Judith Enders,"Reduction of claustrophobia during magnetic resonance imaging: methods and design of the ""CLAUSTRO"" randomized controlled trial.",2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#EndersZRMKAKDBTHD11,https://doi.org/10.1186/1471-2342-11-4 +Tomoyuki Tajima,Proton nuclear magnetic resonance and pattern recognition analysis of liver extracts from rats under different anesthetics.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#TajimaHKS12,https://doi.org/10.1186/1471-2342-12-28 +Enrique F. Schisterman,Coronary age as a risk factor in the modified Framingham risk score.,2004,4,BMC Medical Imaging,,db/journals/bmcmi/bmcmi4.html#SchistermanW04,https://doi.org/10.1186/1471-2342-4-1 +Narelle J. Watson,Reliability of radiographic measurements for acute distal radius fractures.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#WatsonAPRTK16,https://doi.org/10.1186/s12880-016-0147-7 +Marcel J. B. Warntjes,Rapid T1 quantification based on 3D phase sensitive inversion recovery.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#WarntjesKE10,https://doi.org/10.1186/1471-2342-10-19 +Oliver Dobrindt,Hybrid SPECT/CT for the assessment of a painful hip after uncemented total hip arthroplasty.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#DobrindtAKRWGSL15,https://doi.org/10.1186/s12880-015-0056-1 +Amy Manson,A recommended workflow methodology in the creation of an educational and training application incorporating a digital reconstruction of the cerebral ventricular system and cerebrospinal fluid circulation to aid anatomical understanding.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#MansonPR15,https://doi.org/10.1186/s12880-015-0088-6 +S. Ehsan Saffari,Regression models for analyzing radiological visual grading studies - an empirical comparison.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#SaffariLFS15,https://doi.org/10.1186/s12880-015-0083-y +John Fleming,Determination of regional lung air volume distribution at mid-tidal breathing from computed tomography: a retrospective study of normal variability and reproducibility.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#FlemingCMBCMK14,https://doi.org/10.1186/1471-2342-14-25 +Tommy Löfstedt,Dynamic ultrasound imaging - A multivariate approach for the analysis and comparison of time-dependent musculoskeletal movements.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#LofstedtAPT12,https://doi.org/10.1186/1471-2342-12-29 +Akito Yoshiko,Three-dimensional comparison of intramuscular fat content between young and old adults.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#YoshikoHKSKSOA17,https://doi.org/10.1186/s12880-017-0185-9 +Pairash Saiviroonporn,Improved R2* liver iron concentration assessment using a novel fuzzy c-mean clustering scheme.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#SaiviroonpornVK15,https://doi.org/10.1186/s12880-015-0097-5 +Doaa Mahmoud-Ghoneim,The impact of image dynamic range on texture classification of brain white matter.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#Mahmoud-GhoneimACG08,https://doi.org/10.1186/1471-2342-8-18 +Martin H. J. Busch,Reproducibility of brain metabolite concentration measurements in lesion free white matter at 1.5 T.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#BuschVMSDGG15,https://doi.org/10.1186/s12880-015-0085-9 +Nitin Mukerji,Audit of the change in the on-call practices in neuroradiology and factors affecting it.,2006,6,BMC Medical Imaging,,db/journals/bmcmi/bmcmi6.html#MukerjiWM06,https://doi.org/10.1186/1471-2342-6-13 +Youyong Kong,Automatic brain tissue segmentation based on graph filter.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#KongCWZCS18,https://doi.org/10.1186/s12880-018-0252-x +Sigurdur S. Stephensen,Agreement of left ventricular mass in steady state free precession and delayed enhancement MR images: implications for quantification of fibrosis in congenital and ischemic heart disease.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#StephensenCUEOEA10,https://doi.org/10.1186/1471-2342-10-4 +Yangyang Zhou,An assessment of the vulnerability of carotid plaques: a comparative study between intraplaque neovascularization and plaque echogenicity.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#ZhouXLBCSZW13,https://doi.org/10.1186/1471-2342-13-13 +Nobuyoshi Fukumitsu,Registration error of the liver CT using deformable image registration of MIM Maestro and Velocity AI.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#FukumitsuNTONOO17,https://doi.org/10.1186/s12880-017-0202-z +Athira J. Jacob,Estimation of myocardial deformation using correlation image velocimetry.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#JacobKM17,https://doi.org/10.1186/s12880-017-0195-7 +Basil Suter,A novel standardized algorithm using SPECT/CT evaluating unhappy patients after unicondylar knee arthroplasty- a combined analysis of tracer uptake distribution and component position.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#SuterTSKRFH15,https://doi.org/10.1186/s12880-015-0053-4 +T. William J. Moorhead,Prospective multi-centre Voxel Based Morphometry study employing scanner specific segmentations: Procedure development using CaliBrain structural MRI data.,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#MoorheadGJMRLWWBACCSWL09,https://doi.org/10.1186/1471-2342-9-8 +Ullamari Hakulinen,Repeatability and variation of region-of-interest methods using quantitative diffusion tensor MR imaging of the brain.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#HakulinenBROSHDE12,https://doi.org/10.1186/1471-2342-12-30 +Fredrik Hedeer,Gated myocardial perfusion SPECT underestimates left ventricular volumes and shows high variability compared to cardiac magnetic resonance imaging - a comparison of four different commercial automated software packages.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#HedeerPAU10,https://doi.org/10.1186/1471-2342-10-10 +Florian von Knobelsdorff-Brenkenhoff,Current T1 and T2 mapping techniques applied with simple thresholds cannot discriminate acute from chronic myocadial infarction on an individual patient basis: a pilot study.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#Knobelsdorff-Brenkenhoff16,https://doi.org/10.1186/s12880-016-0135-y +Einar Heiberg,Design and validation of Segment - freely available software for cardiovascular image analysis.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#HeibergSUCEA10,https://doi.org/10.1186/1471-2342-10-1 +Daniel Messroghli,An open-source software tool for the generation of relaxation time maps in magnetic resonance imaging.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#MessroghliRAWKDS10,https://doi.org/10.1186/1471-2342-10-16 +Pasha Razifar,Masked volume wise principal component analysis of small adrenocortical tumours in dynamic [11C]-metomidate positron emission tomography.,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#RazifarHMHLS09,https://doi.org/10.1186/1471-2342-9-6 +Stephen H. J. Andrews,An evaluation of meniscal collagenous structure using optical projection tomography.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#AndrewsRRSJ13,https://doi.org/10.1186/1471-2342-13-21 +Inyoung Song,Color radiography in lung nodule detection and characterization: comparison with conventional gray scale radiography.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#SongYPLC16,https://doi.org/10.1186/s12880-016-0155-7 +Antonio I. Cuesta-Vargas,Relationship of moderate and low isometric lumbar extension through architectural and muscular activity variables: a cross sectional study.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#Cuesta-VargasG13,https://doi.org/10.1186/1471-2342-13-38 +Xiang-ke Niu,Developing a nomogram based on multiparametric magnetic resonance imaging for forecasting high-grade prostate cancer to reduce unnecessary biopsies within the prostate-specific antigen gray zone.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#NiuLDXYP17,https://doi.org/10.1186/s12880-017-0184-x +Mehmet Bilgen,Imaging corticospinal tract connectivity in injured rat spinal cord using manganese-enhanced MRI.,2006,6,BMC Medical Imaging,,db/journals/bmcmi/bmcmi6.html#Bilgen06,https://doi.org/10.1186/1471-2342-6-15 +Boniface Moifo,Ultrasonographic prevalence and characteristics of non-palpable thyroid incidentalomas in a hospital-based population in a sub-Saharan country.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#MoifoTFDW17,https://doi.org/10.1186/s12880-017-0194-8 +Kristina Imeen Ringe,Lesion detection and assessment of extrahepatic findings in abdominal MRI using hepatocyte specific contrast agents - comparison of Gd-EOB-DTPA and Gd-BOPTA.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#RingeBHBGM13,https://doi.org/10.1186/1471-2342-13-10 +Shujun Liang,Nonlocal total variation based on symmetric Kullback-Leibler divergence for the ultrasound image despeckling.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#LiangYWYHY17,https://doi.org/10.1186/s12880-017-0231-7 +Faraz Khursheed,Artifact quantification and tractography from 3T MRI after placement of aneurysm clips in subarachnoid hemorrhage patients.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#KhursheedRSKE11,https://doi.org/10.1186/1471-2342-11-19 +Quang-Huy Tran,Deterministic compressive sampling for high-quality image reconstruction of ultrasound tomography.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#TranHTT17,https://doi.org/10.1186/s12880-017-0206-8 +Andrew L. Chan,Novel computed tomographic chest metrics to detect pulmonary hypertension.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#ChanJSMLLA11,https://doi.org/10.1186/1471-2342-11-7 +Michael T. Hirschmann,Standardized volumetric 3D-analysis of SPECT/CT imaging in orthopaedics: overcoming the limitations of qualitative 2D analysis.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#HirschmannWRH12,https://doi.org/10.1186/1471-2342-12-5 +Nathaniel Bell,Variation in type and frequency of diagnostic imaging during trauma care across multiple time points by patient insurance type.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#BellRFSL16,https://doi.org/10.1186/s12880-016-0146-8 +Ghazaleh Mehdipoor,Survey of practitioners' competency for diagnosis of acute diseases manifest on chest X-ray.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#MehdipoorSS17,https://doi.org/10.1186/s12880-017-0222-8 +Abdullah Al Shahrani,Daily routine versus on-demand chest radiograph policy and practice in adult ICU patients- clinicians' perspective.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#ShahraniA18,https://doi.org/10.1186/s12880-018-0248-6 +Lars Edenbrandt,Area of ischemia assessed by physicians and software packages from myocardial perfusion scintigrams.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#EdenbrandtHFHJJKLLMNNOSSWT14,https://doi.org/10.1186/1471-2342-14-5 +Emmanuelle Begot,Hemodynamic monitoring using a single-use indwelling transesophageal echocardiography probe in an unstable patient after open-heart surgery.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#BegotCPBFPV15,https://doi.org/10.1186/s12880-015-0070-3 +Hadi Mahmoud Haider Diab,Computed tomography scan based prediction of the vulnerable carotid plaque.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#DiabRDDJL17,https://doi.org/10.1186/s12880-017-0233-5 +Mikael Montelius,Tumour size measurement in a mouse model using high resolution MRI.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#MonteliusLHF12,https://doi.org/10.1186/1471-2342-12-12 +Oguzhan Ozdemir,Contribution of diffusion-weighted imaging to conventional MRI for detection of haemorrhagic infarction in ovary torsion.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#OzdemirMMK17,https://doi.org/10.1186/s12880-017-0232-6 +Ansgar Espeland,Are two readers more reliable than one? A study of upper neck ligament scoring on magnetic resonance images.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#EspelandVK13,https://doi.org/10.1186/1471-2342-13-4 +Irfan çelebi,Tonsillar Plasmacytoma: clues on magnetic resonance imaging.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#CelebiBP18,https://doi.org/10.1186/s12880-018-0261-9 +Krisorn Chunhapongpipat,Electronic cleansing in computed tomography colonography using AT layer identification with integration of gradient directional second derivative and material fraction model.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#Chunhapongpipat17,https://doi.org/10.1186/s12880-017-0224-6 +Sofia Brorsson,Ultrasound evaluation in combination with finger extension force measurements of the forearm musculus extensor digitorum communis in healthy subjects.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#BrorssonNHSA08,https://doi.org/10.1186/1471-2342-8-6 +Mariana Reza,A prospective study to evaluate the intra-individual reproducibility of bone scans for quantitative assessment in patients with metastatic prostate cancer.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#RezaKSBWT18,https://doi.org/10.1186/s12880-018-0257-5 +Azra Alizad,In vivo thyroid vibro-acoustography: a pilot study.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#AlizadUMRKGF13,https://doi.org/10.1186/1471-2342-13-12 +Kazuyoshi Motomura,Correlation between the area of high-signal intensity on SPIO-enhanced MR imaging and the pathologic size of sentinel node metastases in breast cancer patients with positive sentinel nodes.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#MotomuraITSNHN13,https://doi.org/10.1186/1471-2342-13-32 +Nadimpalli R. S. Varma,Differential biodistribution of intravenously administered endothelial progenitor and cytotoxic T-cells in rat bearing orthotopic human glioma.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#VarmaSIJBAA13,https://doi.org/10.1186/1471-2342-13-17 +Simona Tecco,Condylar volume and surface in Caucasian young adult subjects.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#TeccoSNPPCFI10,https://doi.org/10.1186/1471-2342-10-28 +Stefan Baumann,"Follow-up of iatrogenic aorto-coronary ""Dunning"" dissections by cardiac computed tomography imaging.",2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#BaumannBSBEFALM17,https://doi.org/10.1186/s12880-017-0227-3 +Satoko Nakano,Diagnostic imaging strategy for MDCT- or MRI-detected breast lesions: use of targeted sonography.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#NakanoOMKSY12,https://doi.org/10.1186/1471-2342-12-13 +Yung-Cheng Huang,FDG PET using SUVmax for preoperative T-staging of esophageal squamous cell carcinoma with and without neoadjuvant chemoradiotherapy.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#HuangLHHCWCL17,https://doi.org/10.1186/s12880-016-0171-7 +Elena Nicolato,Dynamic contrast-enhanced magnetic resonance imaging of the sarcopenic muscle.,2002,2,BMC Medical Imaging,,db/journals/bmcmi/bmcmi2.html#NicolatoFAMLSO02,https://doi.org/10.1186/1471-2342-2-2 +Emil Röhrich,Skin injury model classification based on shape vector analysis.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#RohrichTS12,https://doi.org/10.1186/1471-2342-12-32 +Yingwei Wu,Diagnostic value of diffusion-weighted MR imaging in thyroid disease: application in differentiating benign from malignant disease.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#WuYSDYTT13,https://doi.org/10.1186/1471-2342-13-23 +Mahsa Shokouhi,Assessment of the impact of the scanner-related factors on brain morphometry analysis with Brainvisa.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#ShokouhiBSMBJLDMMMWLDWC11,https://doi.org/10.1186/1471-2342-11-23 +Hui Yu,The segmentation of bones in pelvic CT images based on extraction of key frames.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#YuWSXYC18,https://doi.org/10.1186/s12880-018-0260-x +Keita Miyazaki,A case of meningococcal meningitis with multiple cerebellar microbleeds detected by susceptibility-weighted imaging.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#MiyazakiFKWNTO15,https://doi.org/10.1186/s12880-015-0090-z +James M. Otton,Defining the mid-diastolic imaging period for cardiac CT - lessons from tissue Doppler echocardiography.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#OttonPFYSM13,https://doi.org/10.1186/1471-2342-13-5 +H. M. M. T. B. Herath,Case report of hyperglycemic nonketotic chorea with rapid radiological resolution.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#HerathPS17,https://doi.org/10.1186/s12880-017-0228-2 +Katarzyna Olczak,The morphology of maxillary first and second molars analyzed by cone-beam computed tomography in a polish population.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#OlczakP17,https://doi.org/10.1186/s12880-017-0243-3 +Afshin Mohammadi,Non-opaque soft tissue foreign body: sonographic findings.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#MohammadiGK11,https://doi.org/10.1186/1471-2342-11-9 +Paola Di Carlo,Unusual MRI findings in an immunocompetent patient with EBV encephalitis: a case report.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#CarloTTCCMPS11,https://doi.org/10.1186/1471-2342-11-6 +Sayaka Kodaira,A case of intra-articular ganglion cysts of the knee joint: correlation between arthroscopic and magnetic resonance imaging.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#KodairaNTMNOT16,https://doi.org/10.1186/s12880-016-0138-8 +Andrei Lebovici,Evaluation of the normal-to-diseased apparent diffusion coefficient ratio as an indicator of prostate cancer aggressiveness.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#LeboviciSFCLSEIB14,https://doi.org/10.1186/1471-2342-14-15 +Xingce Wang,Skeleton-based cerebrovascular quantitative analysis.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#WangLWZZSZ16,https://doi.org/10.1186/s12880-016-0170-8 +Shaode Yu,A consistency evaluation of signal-to-noise ratio in the quality assessment of human brain magnetic resonance images.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#YuDWLWX18,https://doi.org/10.1186/s12880-018-0256-6 +Patrizia Seminara,An unusual presentation of multiple cavitated lung metastases from colon carcinoma.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#SeminaraMEIL11,https://doi.org/10.1186/1471-2342-11-13 +Sandra M. Petersen,Sidestream dark field images of the microcirculation: intra-observer reliability and correlation between two semi-quantitative methods for determining flow.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#PetersenGHH14,https://doi.org/10.1186/1471-2342-14-14 +Bingxin Yang,Local sparsity enhanced compressed sensing magnetic resonance imaging in uniform discrete curvelet domain.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#YangYMZZ15,https://doi.org/10.1186/s12880-015-0065-0 +Ilkan Tatar,Evaluating regional blood spinal cord barrier dysfunction following spinal cord injury using longitudinal dynamic contrast-enhanced MRI.,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#TatarCDSB09,https://doi.org/10.1186/1471-2342-9-10 +Clare Partridge,BMC Medical Imaging reviewer acknowledgement 2015.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#Partridge16,https://doi.org/10.1186/s12880-016-0119-y +Kristina Imeen Ringe,3D-MRCP for evaluation of intra- and extrahepatic bile ducts: comparison of different acquisition and reconstruction planes.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#RingeHFWR14,https://doi.org/10.1186/1471-2342-14-16 +Mariana A. Nogueira,An artificial neural networks approach for assessment treatment response in oncological patients using PET/CT images.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#NogueiraAMMDS17,https://doi.org/10.1186/s12880-017-0181-0 +Harald Schrader,Magnetic resonance imaging after most common form of concussion.,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#SchraderMGJSSO09,https://doi.org/10.1186/1471-2342-9-11 +Dorothy Lui,Monte Carlo-based noise compensation in coil intensity corrected endorectal MRI.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#LuiMHW15,https://doi.org/10.1186/s12880-015-0081-0 +Michele Rossi,Histologic assessment of biliary obstruction with different percutaneous endoluminal techniques.,2004,4,BMC Medical Imaging,,db/journals/bmcmi/bmcmi4.html#RossiCSRGGGPD04,https://doi.org/10.1186/1471-2342-4-3 +Zhi-Peng Zhou,Evaluating segmental liver function using T1 mapping on Gd-EOB-DTPA-enhanced MRI with a 3.0 Tesla.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#ZhouLQCHYH17,https://doi.org/10.1186/s12880-017-0192-x +Thomas Baum,Osteoporosis imaging: effects of bone preservation on MDCT-based trabecular bone microstructure parameters and finite element models.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#BaumGBGLJGZRWB15,https://doi.org/10.1186/s12880-015-0066-z +Bo Hedén,Disappearance of myocardial perfusion defects on prone SPECT imaging: Comparison with cardiac magnetic resonance imaging in patients without established coronary artery disease.,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#HedenPCPA09,https://doi.org/10.1186/1471-2342-9-16 +Arno Klein,Mindboggle: Automated brain labeling with multiple atlases.,2005,5,BMC Medical Imaging,,db/journals/bmcmi/bmcmi5.html#KleinMGTH05,https://doi.org/10.1186/1471-2342-5-7 +Kenichi Katoh,Balloon-occluded retrograde transvenous obliteration for gastric varices: the relationship between the clinical outcome and gastrorenal shunt occlusion.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#KatohSHIFO10,https://doi.org/10.1186/1471-2342-10-2 +Thorsten Jentzsch,Increased pelvic incidence may lead to arthritis and sagittal orientation of the facet joints at the lower lumbar spine.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#JentzschGBSNW13,https://doi.org/10.1186/1471-2342-13-34 +Marleen E. Graat,Chest radiography practice in critically ill patients: a postal survey in the Netherlands.,2006,6,BMC Medical Imaging,,db/journals/bmcmi/bmcmi6.html#GraatHSKSS06,https://doi.org/10.1186/1471-2342-6-8 +Kirsi Holli-Helenius,MRI texture analysis in differentiating luminal A and luminal B breast cancer molecular subtypes - a feasibility study.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#Holli-HeleniusS17,https://doi.org/10.1186/s12880-017-0239-z +Frederikke P. Fliedner,The use of matrigel has no influence on tumor development or PET imaging in FaDu human head and neck cancer xenografts.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#FliednerHJK16,https://doi.org/10.1186/s12880-016-0105-4 +G. S. Gulsin,Cardiovascular magnetic resonance in the evaluation of heart valve disease.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#GulsinSM17,https://doi.org/10.1186/s12880-017-0238-0 +Bettina Selig,Fully automatic evaluation of the corneal endothelium from in vivo confocal microscopy.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#SeligVRHH15,https://doi.org/10.1186/s12880-015-0054-3 +Sokol Petushi,Large-scale computations on histology images reveal grade-differentiating parameters for breast cancer.,2006,6,BMC Medical Imaging,,db/journals/bmcmi/bmcmi6.html#PetushiGHKT06,https://doi.org/10.1186/1471-2342-6-14 +Gianni Frisardi,Integration of 3D anatomical data obtained by CT imaging and 3D optical scanning for computer aided implant surgery.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#FrisardiCBPRF11,https://doi.org/10.1186/1471-2342-11-5 +An De Crop,Correlation of clinical and physical-technical image quality in chest CT: a human cadaver study applied on iterative reconstruction.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#CropSHVDBAVDTB15,https://doi.org/10.1186/s12880-015-0075-y +Adewole A. Adebiyi,Echocardiographic partition values and prevalence of left ventricular hypertrophy in hypertensive Nigerians.,2006,6,BMC Medical Imaging,,db/journals/bmcmi/bmcmi6.html#AdebiyiOAOAOF06,https://doi.org/10.1186/1471-2342-6-10 +Krisztián Szigeti,Radiomics-based differentiation of lung disease models generated by polluted air based on X-ray computed tomography data.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#SzigetiSKCHVGKB16,https://doi.org/10.1186/s12880-016-0118-z +Farzad Khalvati,Automated prostate cancer detection via comprehensive multi-parametric magnetic resonance imaging texture feature models.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#KhalvatiWH15,https://doi.org/10.1186/s12880-015-0069-9 +Nghi C. Nguyen,Prevalence and patterns of soft tissue metastasis: detection with true whole-body F-18 FDG PET/CT.,2007,7,BMC Medical Imaging,,db/journals/bmcmi/bmcmi7.html#NguyenCO07,https://doi.org/10.1186/1471-2342-7-8 +Hiroshi Otera,Reversed halo sign in pneumocystis pneumonia: a case report.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#OteraTSHI10,https://doi.org/10.1186/1471-2342-10-26 +Joshua Tambe,Acute pulmonary embolism in the era of multi-detector CT: a reality in sub-Saharan Africa.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#TambeMFGJ12,https://doi.org/10.1186/1471-2342-12-31 +Kiyotaka Nemoto,Lin4Neuro: a customized Linux distribution ready for neuroimaging analysis.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#NemotoDROTOYA11,https://doi.org/10.1186/1471-2342-11-3 +Akiko Jingu,Breakthrough reactions of iodinated and gadolinium contrast media after oral steroid premedication protocol.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#JinguFTT14,https://doi.org/10.1186/1471-2342-14-34 +Fuhua Wen,Semi-automatic synthesis and biodistribution of N-(2-18F-fluoropropionyl)-bis(zinc (II)-dipicolylamine) (18F-FP-DPAZn2) for AD model imaging.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#WenNHTYT17,https://doi.org/10.1186/s12880-017-0200-1 +Philippe Hujoel,Thyroid shields and neck exposures in cephalometric radiography.,2006,6,BMC Medical Imaging,,db/journals/bmcmi/bmcmi6.html#HujoelHBYCMG06,https://doi.org/10.1186/1471-2342-6-6 +Daniela Iancu,Brainstem infarction in a patient with internal carotid dissection and persistent trigeminal artery: a case report.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#IancuAB10,https://doi.org/10.1186/1471-2342-10-14 +Abbas Aroua,Exposure of the Swiss population to computed tomography.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#ArouaSBMV13,https://doi.org/10.1186/1471-2342-13-22 +Muthu Subash Kavitha,Diagnosis of osteoporosis from dental panoramic radiographs using the support vector machine method in a computer-aided system.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#KavithaATKS12,https://doi.org/10.1186/1471-2342-12-1 +Naoyuki Miyashita,Radiographic features of Mycoplasma pneumoniae pneumonia: differential diagnosis and performance timing.,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#MiyashitaSKOYOKO09,https://doi.org/10.1186/1471-2342-9-7 +Michiel Peters,An automated algorithm for the detection of cortical interruptions and its underlying loss of trabecular bone* a reproducibility study.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#PetersJSTGLWBBS18,https://doi.org/10.1186/s12880-018-0255-7 +Zhenyou Wang,Cell recognition based on topological sparse coding for microscopy imaging of focused ultrasound treatment.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#WangZXSB15,https://doi.org/10.1186/s12880-015-0087-7 +Raoying Xie,T2 relaxation time for intervertebral disc degeneration in patients with upper back pain: initial results on the clinical use of 3.0 Tesla MRI.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#XieRCZYJJHSC17,https://doi.org/10.1186/s12880-017-0182-z +Hao-Qiang Yin,Clinical value of endoluminal ultrasonography in the diagnosis of rectovaginal fistula.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#YinWPXRCLWX16,https://doi.org/10.1186/s12880-016-0131-2 +Jayakumar Jayaraman,Dental age estimation in southern Chinese population using panoramic radiographs: validation of three population specific reference datasets.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#JayaramanRWK18,https://doi.org/10.1186/s12880-018-0250-z +Yi Fang,Estimating view parameters from random projections for Tomography using spherical MDS.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#FangMR10,https://doi.org/10.1186/1471-2342-10-12 +Juliana M. Haggerty,Segmentation of epidermal tissue with histopathological damage in images of haematoxylin and eosin stained human skin.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#HaggertyWDOM14,https://doi.org/10.1186/1471-2342-14-7 +Yu Ohkura,Pancreatic cancer accompanied by a moderate-sized pseudocyst with extrapancreatic growth.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#OhkuraSMHFW15,https://doi.org/10.1186/s12880-015-0055-2 +Fernanda Philadelpho Arantes Pereira,Magnetic resonance imaging-radioguided occult lesion localization (ROLL) in breast cancer using Tc-99m macro-aggregated albumin and distilled water control.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#PereiraMCOGF13,https://doi.org/10.1186/1471-2342-13-33 +Katarina Kindberg,Myocardial strains from 3D displacement encoded magnetic resonance imaging.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#KindbergHSEIEK12,https://doi.org/10.1186/1471-2342-12-9 +Sanjay Tiwari,Assessment of anti-inflammatory tumor treatment efficacy by longitudinal monitoring employing sonographic micro morphology in a preclinical mouse model.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#TiwariEKKTGK11,https://doi.org/10.1186/1471-2342-11-15 +Erik Hedström,The effect of initial teaching on evaluation of left ventricular volumes by cardiovascular magnetic resonance imaging: comparison between complete and intermediate beginners and experienced observers.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#HedstromISSSEN17,https://doi.org/10.1186/s12880-017-0197-5 +Zikuan Chen,Volumetric BOLD fMRI simulation: from neurovascular coupling to multivoxel imaging.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#ChenC12,https://doi.org/10.1186/1471-2342-12-8 +Lin Li 0003,Automatic diagnosis of melanoma using machine learning methods on a spectroscopic system.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#LiZDJTW14,https://doi.org/10.1186/1471-2342-14-36 +Emilie Flaberg,Extended Field Laser Confocal Microscopy (EFLCM): Combining automated Gigapixel image capture with in silico virtual microscopy.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#FlabergSSS08,https://doi.org/10.1186/1471-2342-8-13 +Felicia Seemann,Time-resolved tracking of the atrioventricular plane displacement in Cardiovascular Magnetic Resonance (CMR) images.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#SeemannPSOEDJAA17,https://doi.org/10.1186/s12880-017-0189-5 +Luca Pio Stoppino,Magnetic resonance enterography changes after antibody to tumor necrosis factor (anti-TNF) alpha therapy in Crohn's disease: correlation with SES-CD and clinical-biological markers.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#StoppinoVRCCIBS16,https://doi.org/10.1186/s12880-016-0139-7 +Rasheed Zakaria,Diffusion-weighted MRI characteristics of the cerebral metastasis to brain boundary predicts patient outcomes.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#ZakariaDRBRSJ14,https://doi.org/10.1186/1471-2342-14-26 +Roman Guggenberger,Absent cervical spine pedicle and associated congenital spinal abnormalities - a diagnostic trap in a setting of acute trauma: case report.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#GuggenbergerASWLS10,https://doi.org/10.1186/1471-2342-10-25 +Yi-Shuan Hwang,Investigations of organ and effective doses of abdominal cone-beam computed tomography during transarterial chemoembolization using Monte Carlo simulation.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#HwangTLL18,https://doi.org/10.1186/s12880-018-0247-7 +Tarique Hussain,Coronary artery size and origin imaging in children: a comparative study of MRI and trans-thoracic echocardiography.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#HussainMPVBHBSG15,https://doi.org/10.1186/s12880-015-0095-7 +Yasushi Rino,Visualization of blood supply route to the reconstructed stomach by indocyanine green fluorescence imaging during esophagectomy.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#RinoYSYTHOYMI14,https://doi.org/10.1186/1471-2342-14-18 +George H. Swingler,Observer variation in chest radiography of acute lower respiratory infections in children: a systematic review.,2001,1,BMC Medical Imaging,,db/journals/bmcmi/bmcmi1.html#Swingler01,https://doi.org/10.1186/1471-2342-1-1 +Héloïse Bleton,Cognitive tasks and cerebral blood flow through anterior cerebral arteries: a study via functional transcranial Doppler ultrasound recordings.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#BletonPS16,https://doi.org/10.1186/s12880-016-0125-0 +Xin Zhou,The correlation between radiographic and pathologic grading of lumbar facet joint degeneration.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#ZhouLZFYFZD16,https://doi.org/10.1186/s12880-016-0129-9 +Konstantinos Bartziokas,Vibration Response Imaging: evaluation of rater agreement in healthy subjects and subjects with pneumonia.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#BartziokasDPZTKMGD10,https://doi.org/10.1186/1471-2342-10-6 +Michael Fiechter,Age-related normal structural and functional ventricular values in cardiac function assessed by magnetic resonance.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#FiechterFGSKSMMTGK13,https://doi.org/10.1186/1471-2342-13-6 +Johannes Budjan,Rapid Cartesian versus radial acquisition: comparison of two sequences for hepatobiliary phase MRI at 3 tesla in patients with impaired breath-hold capabilities.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#BudjanROSAH17,https://doi.org/10.1186/s12880-017-0203-y +Hong Zheng,Multi-contrast brain magnetic resonance image super-resolution using the local weight similarity.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#ZhengQBLGDPC17,https://doi.org/10.1186/s12880-016-0176-2 +Paul Territo,Evaluation of 11C-Acetate and 18 F-FDG PET/CT in mouse multidrug resistance gene-2 deficient mouse model of hepatocellular carcinoma.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#TerritoMRMFTSS15,https://doi.org/10.1186/s12880-015-0058-z +Dominik Vollherbst,"Specific CT 3D rendering of the treatment zone after Irreversible Electroporation (IRE) in a pig liver model: the ""Chebyshev Center Concept"" to define the maximum treatable tumor size.",2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#VollherbstFZWWSGBSKPKWRS14,https://doi.org/10.1186/1471-2342-14-2 +Jane Keating,Near-infrared operating lamp for intraoperative molecular imaging of a mediastinal tumor.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#KeatingJNS16,https://doi.org/10.1186/s12880-016-0120-5 +Sören Strandberg,Reliability of computed tomography measurements in assessment of thigh muscle cross-sectional area and attenuation.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#StrandbergWWS10,https://doi.org/10.1186/1471-2342-10-18 +Syuichi Tetsuka,Importance of correctly interpreting magnetic resonance imaging to diagnose posterior reversible encephalopathy syndrome associated with HELLP syndrome: a case report.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#TetsukaN17,https://doi.org/10.1186/s12880-017-0208-6 +Takeshi Ishimoto,Non-contrast coronary artery wall and plaque imaging using inversion-recovery prepared steady-state free precession.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#IshimotoTMKI15,https://doi.org/10.1186/s12880-015-0071-2 +Michael Peolsson,Modelling human musculoskeletal functional movements using ultrasound imaging.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#PeolssonLVSAT10,https://doi.org/10.1186/1471-2342-10-9 +Terri L. Lindholm,Parallel imaging: is GRAPPA a useful acquisition tool for MR imaging intended for volumetric brain analysis?,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#LindholmBEFJSJ09,https://doi.org/10.1186/1471-2342-9-15 +Bayden R. Wood,A three-dimensional multivariate image processing technique for the analysis of FTIR spectroscopic images of multiple tissue sections.,2006,6,BMC Medical Imaging,,db/journals/bmcmi/bmcmi6.html#WoodBEQM06,https://doi.org/10.1186/1471-2342-6-12 +Panli Li,Lesion based diagnostic performance of dual phase 99mTc-MIBI SPECT/CT imaging and ultrasonography in patients with secondary hyperparathyroidism.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#LiLTZXSS17,https://doi.org/10.1186/s12880-017-0235-3 +David S. Wack,Improved operator agreement and efficiency using the minimum area contour change method for delineation of hyperintense multiple sclerosis lesions on FLAIR MRI.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#WackDBRPRHMSZ13,https://doi.org/10.1186/1471-2342-13-29 +Davood Karimi,A sinogram denoising algorithm for low-dose computed tomography.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#KarimiDWF16,https://doi.org/10.1186/s12880-016-0112-5 +Robert Seifert,Statistical Permutation-based Artery Mapping (SPAM): a novel approach to evaluate imaging signals in the vessel wall.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#SeifertSKHJS17,https://doi.org/10.1186/s12880-017-0207-7 +Harry Strange,Myofibre segmentation in HandE stained adult skeletal muscle images using coherence-enhancing diffusion filtering.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#StrangeSZ14,https://doi.org/10.1186/1471-2342-14-38 +Robert Rusina,Use of fuzzy edge single-photon emission computed tomography analysis in definite Alzheimer's disease - a retrospective study.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#RusinaKBBM10,https://doi.org/10.1186/1471-2342-10-20 +Gavin S. Tan,Correlation of anterior segment optical coherence tomography measurements with graft trephine diameter following descemet stripping automated endothelial keratoplasty.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#TanHTM12,https://doi.org/10.1186/1471-2342-12-19 +Jonathan R. Weir-McCall,Whole body cardiovascular magnetic resonance imaging to stratify symptomatic and asymptomatic atherosclerotic burden in patients with isolated cardiovascular disease.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#Weir-McCallDGMM16,https://doi.org/10.1186/s12880-016-0121-4 +Duong Duc Binh,Iodine concentration calculated by dual-energy computed tomography (DECT) as a functional parameter to evaluate thyroid metabolism in patients with hyperthyroidism.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#BinhNOHT17,https://doi.org/10.1186/s12880-017-0216-6 +Gert Reiter,Counter-clockwise vortical blood flow in the main pulmonary artery in a patient with patent ductus arteriosus with pulmonary arterial hypertension: a cardiac magnetic resonance imaging case report.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#ReiterRKAGSOF16,https://doi.org/10.1186/s12880-016-0150-z +Ajediran I. Bello,Assessment of the level of agreement in the interpretation of plain radiographs of lumbar spondylosis among clinical physiotherapists in Ghana.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#BelloOAA14,https://doi.org/10.1186/1471-2342-14-13 +Chenyi Liu,Noise-compensated homotopic non-local regularized reconstruction for rapid retinal optical coherence tomography image acquisitions.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#LiuWFBB14,https://doi.org/10.1186/1471-2342-14-37 +Jiliang Ren,Differentiation of orbital lymphoma and idiopathic orbital inflammatory pseudotumor: combined diagnostic value of conventional MRI and histogram analysis of ADC maps.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#RenYWT18,https://doi.org/10.1186/s12880-018-0246-8 +Edward Li,Sparse reconstruction of compressive sensing MRI using cross-domain stochastically fully connected conditional random fields.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#LiKSHW16,https://doi.org/10.1186/s12880-016-0156-6 +Allan Hynes,Molecular mapping of periodontal tissues using infrared microspectroscopy.,2005,5,BMC Medical Imaging,,db/journals/bmcmi/bmcmi5.html#HynesSMSSL05,https://doi.org/10.1186/1471-2342-5-2 +Ylva Lilja,Impact of region-of-interest method on quantitative analysis of DTI data in the optic tracts.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#LiljaGLNS16,https://doi.org/10.1186/s12880-016-0145-9 +Arifudin Achmad,The diagnostic performance of 18F-FAMT PET and 18F-FDG PET for malignancy detection: a meta-analysis.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#AchmadBYHHT17,https://doi.org/10.1186/s12880-017-0237-1 +Alijavad Moosavi,Air column in esophagus and symptoms of gastroesophageal reflux disease.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#MoosaviRTG12,https://doi.org/10.1186/1471-2342-12-2 +Jørn Bersvendsen,Automatic measurement of aortic annulus diameter in 3-dimensional Transoesophageal echocardiography.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#BersvendsenBUAS14,https://doi.org/10.1186/1471-2342-14-31 +Martin G. Sundqvist,Kinematic analysis of diastolic function using the freely available software Echo E-waves - feasibility and reproducibility.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#SundqvistSTU16,https://doi.org/10.1186/s12880-016-0162-8 +Robert Manka,Reproducibility of small animal cine and scar cardiac magnetic resonance imaging using a clinical 3.0 tesla system.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#MankaJHDGSGP13,https://doi.org/10.1186/1471-2342-13-44 +Yunzhi Wang,Applying a computer-aided scheme to detect a new radiographic image marker for prediction of chemotherapy outcome.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#WangQTMLZ16,https://doi.org/10.1186/s12880-016-0157-5 +Kirsi K. Holli,Texture analysis of MR images of patients with Mild Traumatic Brain Injury.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#HolliHDWLLOSE10,https://doi.org/10.1186/1471-2342-10-8 +Anna Gärdin,Dynamic contrast enhanced magnetic resonance imaging in chronic Achilles tendinosis.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#GardinBMS13,https://doi.org/10.1186/1471-2342-13-39 +Soma Kumasaka,A case of multiple hepatic angiomyolipomas with high 18 F-fluorodeoxyglucose uptake.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#KumasakaATHNT14,https://doi.org/10.1186/1471-2342-14-17 +Ulfin Rethnam,Does applying the Canadian Cervical Spine rule reduce cervical spine radiography rates in alert patients with blunt trauma to the neck? A retrospective analysis.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#RethnamYG08,https://doi.org/10.1186/1471-2342-8-12 +M. Hammad Ather,Diagnostic accuracy of ultrasonography compared to unenhanced CT for stone and obstruction in patients with renal failure.,2004,4,BMC Medical Imaging,,db/journals/bmcmi/bmcmi4.html#AtherJS04,https://doi.org/10.1186/1471-2342-4-2 +Jörn Schulz,A semiautomatic tool for prostate segmentation in radiotherapy treatment planning.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#SchulzSTMG14,https://doi.org/10.1186/1471-2342-14-4 +Anuradha Roy,Comparison of measurement methods with a mixed effects procedure accounting for replicated evaluations (COM 3 PARE): method comparison algorithm implementation for head and neck IGRT positional verification.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#RoyFRT15,https://doi.org/10.1186/s12880-015-0074-z +Owen J. Arthurs,Interactive neonatal gastrointestinal magnetic resonance imaging using fruit juice as an oral contrast media.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#ArthursGEJSL14,https://doi.org/10.1186/1471-2342-14-33 +Jacqueline du Toit,The accuracy of radiology speech recognition reports in a multilingual South African teaching hospital.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#ToitHP15,https://doi.org/10.1186/s12880-015-0048-1 +Richard E. Jacob,Automated measurement of heterogeneity in CT images of healthy and diseased rat lungs using variogram analysis of an octree decomposition.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#JacobC14,https://doi.org/10.1186/1471-2342-14-1 +Piet K. Vanhoenacker,Multidetector computed tomography angiography for assessment of in-stent restenosis: meta-analysis of diagnostic performance.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#VanhoenackerDBSHWD08,https://doi.org/10.1186/1471-2342-8-14 +Sebastian Wojcinski,Diagnostic performance and inter-observer concordance in lesion detection with the automated breast volume scanner (ABVS).,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#WojcinskiGFSHD13,https://doi.org/10.1186/1471-2342-13-36 +Jens Fagertun,3D facial landmarks: Inter-operator variability of manual annotation.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#FagertunHRMWPH14,https://doi.org/10.1186/1471-2342-14-35 +Weiguang Shao,Evaluation of energy spectrum CT for the measurement of thyroid iodine content.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#ShaoLL16,https://doi.org/10.1186/s12880-016-0151-y +Bilge Karaçali,Automated detection of regions of interest for tissue microarray experiments: an image texture analysis.,2007,7,BMC Medical Imaging,,db/journals/bmcmi/bmcmi7.html#KaracaliT07,https://doi.org/10.1186/1471-2342-7-2 +Elin Trägårdh,Adding attenuation corrected images in myocardial perfusion imaging reduces the need for a rest study.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#TragardhVE13,https://doi.org/10.1186/1471-2342-13-14 +Ryan Yudistiro,Differentiation of sarcoidosis-lymphoma syndrome lesions: a case report on the use of two different positron emission tomography tracers.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#YudistiroATN16,https://doi.org/10.1186/s12880-015-0104-x +Jing-xin Zhao,A computer aided measurement method for unstable pelvic fractures based on standardized radiographs.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#ZhaoZZSDZZT15,https://doi.org/10.1186/s12880-015-0084-x +Sana Boudabbous,Ossifying metaplasia of urothelial metastases: original case with review of the literature.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#BoudabbousAPKRM15,https://doi.org/10.1186/s12880-015-0072-1 +Hongliang Wang,Comparison of three 18F-labeled carboxylic acids with 18F-FDG of the differentiation tumor from inflammation in model mice.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#WangTHHLWL16,https://doi.org/10.1186/s12880-016-0110-7 +Michael Haimerl,Added value of Gd-EOB-DTPA-enhanced Hepatobiliary phase MR imaging in evaluation of focal solid hepatic lesions.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#HaimerlWPMNHSSW13,https://doi.org/10.1186/1471-2342-13-41 +Ewa Zmyslowska-Polakowska,The assessment of accessory mental foramen in a selected polish population: a CBCT study.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#Zmyslowska-Polakowska17,https://doi.org/10.1186/s12880-017-0188-6 +Hongju Son,Extraperitoneal urine leak after renal transplantation: the role of radionuclide imaging and the value of accompanying SPECT/CT - a case report.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#SonHKM10,https://doi.org/10.1186/1471-2342-10-23 +Letizia Vivona,Fuzzy technique for microcalcifications clustering in digital mammograms.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#VivonaCFR14,https://doi.org/10.1186/1471-2342-14-23 +Roy Moncayo,In-vivo visualisation of the anatomical structures related to the acupuncture points Dai mai and Shen mai by MRI: A single-case pilot study.,2007,7,BMC Medical Imaging,,db/journals/bmcmi/bmcmi7.html#MoncayoRDK07,https://doi.org/10.1186/1471-2342-7-4 +Sima Chalavi,Quantitative and qualitative assessment of structural magnetic resonance imaging data in a two-center study.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#ChalaviSDBR12,https://doi.org/10.1186/1471-2342-12-27 +Vassiliki Lyra,The effect of patient anxiety and depression on motion during myocardial perfusion SPECT imaging.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#LyraKRLC16,https://doi.org/10.1186/s12880-016-0153-9 +Pernilla Sahlstrand-Johnson,Computed tomography measurements of different dimensions of maxillary and frontal sinuses.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#Sahlstrand-JohnsonJSA11,https://doi.org/10.1186/1471-2342-11-8 +Hannes Seuss,Osteoblastic lesion screening with an advanced post-processing package enabling in-plane rib reading in CT-images.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#SeussDCUH16,https://doi.org/10.1186/s12880-016-0141-0 +Dirk Daubner,Hibernoma - two patients with a rare lipoid soft-tissue tumour.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#DaubnerSPZPL15,https://doi.org/10.1186/s12880-015-0046-3 +Alfredo Revenaz,A semi-automated measuring system of brain diffusion and perfusion magnetic resonance imaging abnormalities in patients with multiple sclerosis based on the integration of coregistration and tissue segmentation procedures.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#RevenazRLBGRF16,https://doi.org/10.1186/s12880-016-0108-1 +Leo Ai,Application of mean-shift clustering to Blood oxygen level dependent functional MRI activation detection.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#AiGX14,https://doi.org/10.1186/1471-2342-14-6 +Jihang Sun,Image quality improvement using model-based iterative reconstruction in low dose chest CT for children with necrotizing pneumonia.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#SunYLDHlP17,https://doi.org/10.1186/s12880-017-0177-9 +Mohammad-Reza Nazem-Zadeh,Segmentation of corpus callosum using diffusion tensor imaging: validation in patients with glioblastoma.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#Nazem-ZadehSBJSRMJ12,https://doi.org/10.1186/1471-2342-12-10 +Alexandra Platon,Illegal intra-corporeal packets: can dual energy CT be used for the evaluation of cocaine concentration? A cross sectional study.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#PlatonBBLWPP16,https://doi.org/10.1186/s12880-016-0106-3 +Stina Syvänen,(R)-[11C]Verapamil PET studies to assess changes in P-glycoprotein expression and functionality in rat blood-brain barrier after exposure to kainate-induced status epilepticus.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#SyvanenLMWHLVL11,https://doi.org/10.1186/1471-2342-11-1 +Lennart Werner,The value of ultrasound-guided biopsy of fluorodeoxy-glucose positron emission tomography (FDG-PET)-positive supraclavicular lymph nodes in patients with suspected lung cancer.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#WernerKBRTPGS17,https://doi.org/10.1186/s12880-017-0214-8 +Jeffrey T. LaCroix,Quantifying light scattering with single-mode fiber -optic confocal microscopy.,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#LaCroixH09,https://doi.org/10.1186/1471-2342-9-19 +Wei-Quan Wang,New quantitative classification of the anatomical relationship between impacted third molars and the inferior alveolar nerve.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#WangCHFTH15,https://doi.org/10.1186/s12880-015-0101-0 +Melissa H. Y. Wong,Reproducibility of Corneal Graft Thickness measurements with COLGATE in patients who have undergone DSAEK (Descemet Stripping Automated Endothelial Keratoplasty).,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#WongCHLCLTM12,https://doi.org/10.1186/1471-2342-12-25 +Tomas Lapinskas,Cardiovascular magnetic resonance feature tracking in small animals - a preliminary study on reproducibility and sample size calculation.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#LapinskasGZJMGM17,https://doi.org/10.1186/s12880-017-0223-7 +Vidar Ruddox,Focused cardiac ultrasound by unselected residents - the challenges.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#RuddoxNSEO17,https://doi.org/10.1186/s12880-017-0191-y +Ali S. Arbab,MRI to assess chemoprevention in transgenic adenocarcinoma of mouse prostate (TRAMP).,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#ArbabSVDGIJAG11,https://doi.org/10.1186/1471-2342-11-21 +Brent Burbridge,Percutaneous subclavian artery stent-graft placement following failed ultrasound guided subclavian venous access.,2006,6,BMC Medical Imaging,,db/journals/bmcmi/bmcmi6.html#BurbridgeSS06,https://doi.org/10.1186/1471-2342-6-3 +Michael Behnes,#NAME?,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#BehnesASFEBHMSH16,https://doi.org/10.1186/s12880-016-0127-y +Wenxu Qi,Diffusion tensor MR imaging characteristics of cerebral white matter development in fetal pigs.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#QiGLLYG17,https://doi.org/10.1186/s12880-017-0205-9 +Emilienne Barthassat,Evaluation of patients with painful total hip arthroplasty using combined single photon emission tomography and conventional computerized tomography (SPECT/CT) - a comparison of semi-quantitative versus 3D volumetric quantitative measurements.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#BarthassatAKRH17,https://doi.org/10.1186/s12880-017-0204-x +Ulfin Rethnam,The Swimmer's view: does it really show what it is supposed to show? A retrospective study.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#RethnamYB08,https://doi.org/10.1186/1471-2342-8-2 +Zhaojun Li,An improvement of carotid intima-media thickness and pulse wave velocity in renal transplant recipients.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#LiQDL18,https://doi.org/10.1186/s12880-018-0263-7 +Laura Merlini,Concomitant septic arthritis and osteomyelitis of the hip in young children* a new pathophysiological hypothesis suggested by MRI enhancement pattern.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#MerliniAC15,https://doi.org/10.1186/s12880-015-0057-0 +Geneviève Hassink,Intra- and inter-observer reliability of a new standardized diagnostic method using SPECT/CT in patients with osteochondral lesions of the ankle joint.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#HassinkTLHRH16,https://doi.org/10.1186/s12880-016-0169-1 +Joost J. A. de Jong,Distal radius plate of CFR-PEEK has minimal effect compared to titanium plates on bone parameters in high-resolution peripheral quantitative computed tomography: a pilot study.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#JongLRAGBW17,https://doi.org/10.1186/s12880-017-0190-z +Shu-Fang Chen,"Ultrasonographic median nerve cross-section areas measured by 8-point ""inching test"" for idiopathic carpal tunnel syndrome: a correlation of nerve conduction study severity and duration of clinical symptoms.",2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#ChenLHCTCC11,https://doi.org/10.1186/1471-2342-11-22 +Shigeki Kobayashi,18F-FDG uptake in the stomach on screening PET/CT: value for predicting Helicobacter pylori infection and chronic atrophic gastritis.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#KobayashiOSHKOS16,https://doi.org/10.1186/s12880-016-0161-9 +Maria D'Amato,Assessment of thoracic ultrasound in complementary diagnosis and in follow up of community-acquired pneumonia (cap).,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#DAmatoRCGSRMDS17,https://doi.org/10.1186/s12880-017-0225-5 +Anthony J. McGoron,Post traumatic brain perfusion SPECT analysis using reconstructed ROI maps of radioactive microsphere derived cerebral blood flow and statistical parametric mapping.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#McGoronCGSSGK08,https://doi.org/10.1186/1471-2342-8-4 +Ramazan Kutlu,Endovascular treatment of huge saccular abdominal aortic aneurysm in a young Behcet patient: mid-term result.,2002,2,BMC Medical Imaging,,db/journals/bmcmi/bmcmi2.html#KutluGATB02,https://doi.org/10.1186/1471-2342-2-1 +Shousen Wang,Efficacy of sellar opening in the pituitary adenoma resection of transsphenoidal surgery influences the degree of tumor resection.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#WangQXW17,https://doi.org/10.1186/s12880-017-0217-5 +Linqi Zhang,The value of 99mTc-methylene diphosphonate single photon emission computed tomography/computed tomography in diagnosis of fibrous dysplasia.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#ZhangHLZ17,https://doi.org/10.1186/s12880-017-0218-4 +Lin Zhang,A comparative study of 18F-fluorodeoxyglucose positron emission tomography/computed tomography and 99mTc-MDP whole-body bone scanning for imaging osteolytic bone metastases.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#ZhangCXZCLW15,https://doi.org/10.1186/s12880-015-0047-2 +Zvi Kaufman,Mapping breast tissue types by miniature radio-frequency near-field spectroscopy sensor in ex-vivo freshly excised specimens.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#KaufmanPHMZKPSD16,https://doi.org/10.1186/s12880-016-0160-x +James M. Elliott,Quantification of cervical spine muscle fat: a comparison between T1-weighted and multi-echo gradient echo imaging using a variable projection algorithm (VARPRO).,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#ElliottWRP13,https://doi.org/10.1186/1471-2342-13-30 +Christian Brandt,In vivo study of experimental pneumococcal meningitis using magnetic resonance imaging.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#BrandtSLSLOFR08,https://doi.org/10.1186/1471-2342-8-1 +Edward Azavedo,Is single reading with computer-aided detection (CAD) as good as double reading in mammography screening? A systematic review.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#AzavedoZMA12,https://doi.org/10.1186/1471-2342-12-22 +John Ly,Semi-automatic analysis of standard uptake values in serial PET/CT studies in patients with lung cancer and lymphoma.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#LyGHJVEW12,https://doi.org/10.1186/1471-2342-12-6 +Beat Schnüriger,The accuracy of FAST in relation to grade of solid organ injuries: A retrospective analysis of 226 trauma patients with liver or splenic lesion.,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#SchnurigerKISKLCEZ09,https://doi.org/10.1186/1471-2342-9-3 +Frans-Thomas Fork,Small bowel enteroclysis with magnetic resonance imaging and computed tomography in patients with failed and uncertain passage of a patency capsule.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#ForkKKO12,https://doi.org/10.1186/1471-2342-12-3 +Michael Romann,Validation of digit-length ratio (2D: 4D) assessments on the basis of DXA-derived hand scans.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#RomannF15,https://doi.org/10.1186/s12880-015-0042-7 +Tom Thomaes,Reliability and validity of the ultrasound technique to measure the rectus femoris muscle diameter in older CAD-patients.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#ThomaesTOCCV12,https://doi.org/10.1186/1471-2342-12-7 +Wolf Schweitzer,Retraction: Evaluation of 3D surface scanners for skin documentation in forensic medicine: comparison of benchmark surfaces.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#SchweitzerHBS08,https://doi.org/10.1186/1471-2342-8-15 +Okello Jimmy,Breast cancer detection using sonography in women with mammographically dense breasts.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#JimmyKBG14,https://doi.org/10.1186/s12880-014-0041-0 +Lene Rosendahl,Late gadolinium uptake demonstrated with magnetic resonance in patients where automated PERFIT analysis of myocardial SPECT suggests irreversible perfusion defect.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#RosendahlBOBASE08,https://doi.org/10.1186/1471-2342-8-17 +Ruibin Huang,Unusual presentation of primary hyperparathyroidism: report of three cases.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#HuangZLLH15,https://doi.org/10.1186/s12880-015-0064-1 +Simon Tiziani,Correlation of pelvic incidence with radiographical parameters for acetabular retroversion: a retrospective radiological study.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#TizianiGFOJNW15,https://doi.org/10.1186/s12880-015-0080-1 +C. Jason Liang,An alternative method for quantifying coronary artery calcification: the multi-ethnic study of atherosclerosis (MESA).,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#LiangBKKB12,https://doi.org/10.1186/1471-2342-12-14 +Katrin Holzer,Transcranial Doppler ultrasonography predicts cardiovascular events after TIA.,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#HolzerSEBSHP09,https://doi.org/10.1186/1471-2342-9-13 +Sonal Kothari,Histological image classification using biologically interpretable shape-based features.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#KothariPYW13,https://doi.org/10.1186/1471-2342-13-9 +Marianna Vlychou,Angiographic findings and clinical implications of persistent primitive hypoglossal artery.,2003,3,BMC Medical Imaging,,db/journals/bmcmi/bmcmi3.html#VlychouGSKAZ03,https://doi.org/10.1186/1471-2342-3-2 +Ann-Christin Ostwaldt,Case report of a young stroke patient showing interim normalization of the MRI diffusion-weighted imaging lesion.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#OstwaldtUNVF15,https://doi.org/10.1186/s12880-015-0077-9 +Muhammad Laiq Ur Rahman Shahid,Automatic MRI segmentation of para-pharyngeal fat pads using interactive visual feature space analysis for classification.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#ShahidCIMVL17,https://doi.org/10.1186/s12880-017-0179-7 +Alexander Wong,Homotopic non-local regularized reconstruction from sparse positron emission tomography measurements.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#WongLWFB15,https://doi.org/10.1186/s12880-015-0052-5 +Achraf Al Faraj,Intrapulmonary administration of bone-marrow derived M1/M2 macrophages to enhance the resolution of LPS-induced lung inflammation: noninvasive monitoring using free-breathing MR and CT imaging protocols.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#FarajSA15,https://doi.org/10.1186/s12880-015-0059-y +Alexander S. Somwaru,Erratum to: prostate cancer arising in ectopic prostatic tissue within the left seminal vesicle: a rare case diagnosed with multi-parametric magnetic resonance imaging and magnetic resonance imaging-transrectal ultrasound fusion biopsy.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#SomwaruAZ16a,https://doi.org/10.1186/s12880-016-0132-1 +Sven Weum,Evaluation of dynamic infrared thermography as an alternative to CT angiography for perforator mapping in breast reconstruction: a clinical study.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#WeumMW16,https://doi.org/10.1186/s12880-016-0144-x +P. Montaldo,Quantification of maceration changes using post mortem MRI in fetuses.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#MontaldoAOLTSTA16,https://doi.org/10.1186/s12880-016-0137-9 +Jonas Kalderstam,Analysis of regional bone scan index measurements for the survival of patients with prostate cancer.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#KalderstamSEO14,https://doi.org/10.1186/1471-2342-14-24 +Nicolas Sauwen,Semi-automated brain tumor segmentation on multi-parametric MRI using regularized non-negative matrix factorization.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#SauwenASVMHAH17,https://doi.org/10.1186/s12880-017-0198-4 +Erwei Nie,In silico simulation of liver crack detection using ultrasonic shear wave imaging.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#NieYDZ18,https://doi.org/10.1186/s12880-018-0249-5 +Ke-Zeng Li,The effect of a manual instrumentation technique on five types of premolar root canal geometry assessed by microcomputed tomography and three-dimensional reconstruction.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#LiGZHG11,https://doi.org/10.1186/1471-2342-11-14 +Franziska Schöppe,Structured reporting of x-rays for atraumatic shoulder pain: advantages over free text?,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#SchoppeSSPAPPSM18,https://doi.org/10.1186/s12880-018-0262-8 +Vipula R. Bataduwaarachchi,Paraneoplastic limbic encephalitis with associated hypothalamitis mimicking a hyperdense hypothalamic tumor: a case report.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#Bataduwaarachchi16,https://doi.org/10.1186/s12880-016-0113-4 +Anthony Delaney,The prevention of anaphylactoid reactions to iodinated radiological contrast media: a systematic review.,2006,6,BMC Medical Imaging,,db/journals/bmcmi/bmcmi6.html#DelaneyCF06,https://doi.org/10.1186/1471-2342-6-2 +Niladri K. Mahato,Development of a morphology-based modeling technique for tracking solid-body displacements: examining the reliability of a potential MRI-only approach for joint kinematics assessment.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#MahatoMCWTC16,https://doi.org/10.1186/s12880-016-0140-1 +Luca T. Mainardi,A method for dynamic subtraction MR imaging of the liver.,2006,6,BMC Medical Imaging,,db/journals/bmcmi/bmcmi6.html#MainardiPLPSM06,https://doi.org/10.1186/1471-2342-6-5 +Niklas Klasson,Valid and efficient manual estimates of intracranial volume from magnetic resonance images.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#KlassonOREMW15,https://doi.org/10.1186/s12880-015-0045-4 +Millicent O. Obajimi,Abdominal ultrasonography in HIV/AIDS patients in southwestern Nigeria.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#ObajimiAOAAAOOOOAA08,https://doi.org/10.1186/1471-2342-8-5 +Yoshifumi Kimizuka,A case of skeletal tuberculosis and psoas abscess: disease activity evaluated using 18 F-fluorodeoxyglucose positron emission tomography-computed tomography.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#KimizukaIMIYIWSBH13,https://doi.org/10.1186/1471-2342-13-37 +Edward Gilbert-Kawai,A comparison of the quality of image acquisition between the incident dark field and sidestream dark field video-microscopes.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#Gilbert-KawaiCB16,https://doi.org/10.1186/s12880-015-0078-8 +Eric Hildebrand,Impact of a standardized training program on midwives' ability to assess fetal heart anatomy by ultrasound.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#HildebrandDSGBJ14,https://doi.org/10.1186/1471-2342-14-20 +Lene Lillemark,Brain region's relative proximity as marker for Alzheimer's disease based on structural MRI.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#LillemarkSPDN14,https://doi.org/10.1186/1471-2342-14-21 +Petr Martynov,Testing of the assisting software for radiologists analysing head CT images: lessons learned.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#MartynovMKGKLSR17,https://doi.org/10.1186/s12880-017-0229-1 +Stina Syvänen,Synthesis of two potential NK1-receptor ligands using [1-11C]ethyl iodide and [1-11C]propyl iodide and initial PET-imaging.,2007,7,BMC Medical Imaging,,db/journals/bmcmi/bmcmi7.html#SyvanenEGLAL07,https://doi.org/10.1186/1471-2342-7-6 +Jacob Lønborg,Utility of cardiac magnetic resonance in assessing right-sided heart failure in sarcoidosis.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#LonborgWGGF13,https://doi.org/10.1186/1471-2342-13-2 +Junko Sato,Sonographic swelling of pronator quadratus muscle in patients with occult bone injury.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#SatoINT15,https://doi.org/10.1186/s12880-015-0051-6 +Farhang Sahba,Application of reinforcement learning for segmentation of transrectal ultrasound images.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#SahbaTS08,https://doi.org/10.1186/1471-2342-8-8 +Kristina Imeen Ringe,Evaluation of living liver donors using contrast enhanced multidetector CT - The radiologists impact on donor selection.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#RingeRFSBPWR12,https://doi.org/10.1186/1471-2342-12-21 +Rolf A. Heckemann,Automatic volumetry on MR brain images can support diagnostic decision making.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#HeckemannHRAHH08,https://doi.org/10.1186/1471-2342-8-9 +Sheena L. Dupuy,The effect of intramuscular interferon beta-1a on spinal cord volume in relapsing-remitting multiple sclerosis.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#DupuyKHBNTB16,https://doi.org/10.1186/s12880-016-0158-4 +Yuanbo Feng,Lipomatous metaplasia identified in rabbits with reperfused myocardial infarction by 3.0 T magnetic resonance imaging and histopathology.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#FengCXWCYLBJON13,https://doi.org/10.1186/1471-2342-13-18 +Tomoyuki Minezawa,Bronchus sign on thin-section computed tomography is a powerful predictive factor for successful transbronchial biopsy using endobronchial ultrasound with a guide sheath for small peripheral lung lesions: a retrospective observational study.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#MinezawaOYYMYMN15,https://doi.org/10.1186/s12880-015-0060-5 +Bonnie Hall,Computer-assisted assessment of the Human Epidermal Growth Factor Receptor 2 immunohistochemical assay in imaged histologic sections using a membrane isolation algorithm and quantitative analysis of positive controls.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#HallIJCGF08,https://doi.org/10.1186/1471-2342-8-11 +José Antonio Fiz,Fractal dimension analysis of malignant and benign endobronchial ultrasound nodes.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#FizMAASSBCM14,https://doi.org/10.1186/1471-2342-14-22 +Asgeir S. Jakola,Animal study assessing safety of an acoustic coupling fluid that holds the potential to avoid surgically induced artifacts in 3D ultrasound guided operations.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#JakolaJSMSTSAU14,https://doi.org/10.1186/1471-2342-14-11 +Karin Nielsen,The use of PET-MRI in the follow-up after radiofrequency- and microwave ablation of colorectal liver metastases.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#NielsenSPTWOMKHSSMCT14,https://doi.org/10.1186/1471-2342-14-27 +Klaus Gottlieb,Voting for Image Scoring and Assessment (VISA) - theory and application of a 2 + 1 reader algorithm to improve accuracy of imaging endpoints in clinical trials.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#GottliebH15,https://doi.org/10.1186/s12880-015-0049-0 +Chang Wang,The same modality medical image registration with large deformation and clinical application based on adaptive diffeomorphic multi-resolution demons.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#WangRQY18,https://doi.org/10.1186/s12880-018-0267-3 +Frank Zöllner,An open source software for analysis of dynamic contrast enhanced magnetic resonance images: UMMPerfusion revisited.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#ZollnerDSSSW16,https://doi.org/10.1186/s12880-016-0109-0 +Valentin C. Dones,The diagnostic validity of musculoskeletal ultrasound in lateral epicondylalgia: a systematic review.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#DonesGTSL14,https://doi.org/10.1186/1471-2342-14-10 +Lawrence T. Dauer,Radiation dose reduction at a price: the effectiveness of a male gonadal shield during helical CT scans.,2007,7,BMC Medical Imaging,,db/journals/bmcmi/bmcmi7.html#DauerCER07,https://doi.org/10.1186/1471-2342-7-5 +Shahin Zandieh,Characteristics of incidentally found thyroid nodules in computed tomography: comparison with thyroid scintigraphy.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#ZandiehMBHHH17,https://doi.org/10.1186/s12880-017-0178-8 +Inger Havsteen,Significance of arterial spin labeling perfusion and susceptibility weighted imaging changes in patients with transient ischemic attack: a prospective cohort study.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#HavsteenWONAMMR18,https://doi.org/10.1186/s12880-018-0264-6 +Steve Goodacre,Systematic review and meta-analysis of the diagnostic accuracy of ultrasonography for deep vein thrombosis.,2005,5,BMC Medical Imaging,,db/journals/bmcmi/bmcmi5.html#GoodacreSTBS05,https://doi.org/10.1186/1471-2342-5-6 +Daylin Góngora,Characterization of ten white matter tracts in a representative sample of Cuban population.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#GongoraDB16,https://doi.org/10.1186/s12880-016-0163-7 +Sebastian Bidhult,Validation of T1 and T2 algorithms for quantitative MRI: performance by a vendor-independent software.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#BidhultKAAHH16,https://doi.org/10.1186/s12880-016-0148-6 +Jane Tufvesson,Automatic segmentation of myocardium at risk from contrast enhanced SSFP CMR: validation against expert readers and SPECT.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#TufvessonCAEDKS16,https://doi.org/10.1186/s12880-016-0124-1 +Jürgen Rahmer,Signal encoding in magnetic particle imaging: properties of the system function.,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#RahmerWGB09,https://doi.org/10.1186/1471-2342-9-4 +Alexander C. Flint,Determining optimal medical image compression: psychometric and image distortion analysis.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#Flint12,https://doi.org/10.1186/1471-2342-12-24 +Tormod Selbekk,Comparison of contrast in brightness mode and strain ultrasonography of glial brain tumours.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#SelbekkBISU12,https://doi.org/10.1186/1471-2342-12-11 +Alle Meije Wink,Data-driven haemodynamic response function extraction using Fourier-wavelet regularised deconvolution.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#WinkHR08,https://doi.org/10.1186/1471-2342-8-7 +Lorena Esposito,MRI plaque imaging reveals high-risk carotid plaques especially in diabetic patients irrespective of the degree of stenosis.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#EspositoSHBPSFWLHPSHP10,https://doi.org/10.1186/1471-2342-10-27 +Qian Zhang,Evaluation of left atrial volume and function using single-beat real-time three-dimensional echocardiography in atrial fibrillation patients.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#ZhangWDYLWLS17,https://doi.org/10.1186/s12880-017-0215-7 +Bilge Karaçali,Automated recognition of cell phenotypes in histology images based on membrane- and nuclei-targeting biomarkers.,2007,7,BMC Medical Imaging,,db/journals/bmcmi/bmcmi7.html#KaracaliVT07,https://doi.org/10.1186/1471-2342-7-7 +Sebastian F. Baumbach,Analysis of the three-dimensional anatomical variance of the distal radius using 3D shape models.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#BaumbachBSMCELF17,https://doi.org/10.1186/s12880-017-0193-9 +Zobia Suhail,Automatic detection of abnormalities in mammograms.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#SuhailSM15,https://doi.org/10.1186/s12880-015-0094-8 +Zhenjiang Li,Texture-based classification of different single liver lesion based on SPAIR T2W MRI images.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#LiMHLZLL17,https://doi.org/10.1186/s12880-017-0212-x +Clare Partridge,BMC Medical Imaging reviewer acknowledgement 2014.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#Partridge15,https://doi.org/10.1186/s12880-015-0043-6 +Jian-Min Shen,The use of MRI apparent diffusion coefficient (ADC) in monitoring the development of brain infarction.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#ShenXKYS11,https://doi.org/10.1186/1471-2342-11-2 +Marcello Mancini,Imaging of thyroid tumor angiogenesis with microbubbles targeted to vascular endothelial growth factor receptor type 2 in mice.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#ManciniGSLMVCPBS13,https://doi.org/10.1186/1471-2342-13-31 +Ingvild Billehaug Norum,Diagnostic accuracy of left ventricular longitudinal function by speckle tracking echocardiography to predict significant coronary artery stenosis. A systematic review.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#NorumREO15,https://doi.org/10.1186/s12880-015-0067-y +Alexander S. Somwaru,Prostate cancer arising in ectopic prostatic tissue within the left seminal vesicle: a rare case diagnosed with multi-parametric magnetic resonance imaging and magnetic resonance imaging-transrectal ultrasound fusion biopsy.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#SomwaruAZ16,https://doi.org/10.1186/s12880-016-0122-3 +Charlotta Andersson,Phase-contrast MRI volume flow - a comparison of breath held and navigator based acquisitions.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#AnderssonKELCE16,https://doi.org/10.1186/s12880-016-0128-x +Carlos Menendez-Castro,Microbubbles in macrocysts - Contrast-enhanced ultrasound assisted sclerosant therapy of a congenital macrocystic lymphangioma: a case report.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#Menendez-Castro17,https://doi.org/10.1186/s12880-017-0213-9 +Peter A. McCullough,Patient Discomfort Associated with the Use of Intra-arterial Iodinated Contrast Media: A Meta-Analysis of Comparative Randomized Controlled Trials.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#McCulloughC11,https://doi.org/10.1186/1471-2342-11-12 +Thomas Westermaier,3D rotational fluoroscopy for intraoperative clip control in patients with intracranial aneurysms - assessment of feasibility and image quality.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#WestermaierLHLS16,https://doi.org/10.1186/s12880-016-0133-0 +Moyi Li,Alterations in resting-state functional connectivity of the default mode network in amnestic mild cognitive impairment: an fMRI study.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#LiZZXXZWLTC17,https://doi.org/10.1186/s12880-017-0221-9 +Karin Bloch,Quantifying coronary sinus flow and global LV perfusion at 3T.,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#BlochCAS09,https://doi.org/10.1186/1471-2342-9-9 +Armin Eilaghi,CT texture features are associated with overall survival in pancreatic ductal adenocarcinoma - a quantitative analysis.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#EilaghiBZZKGKH17,https://doi.org/10.1186/s12880-017-0209-5 +David S. Wack,Masked smoothing using separable kernels for CT perfusion images.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#WackSSS14,https://doi.org/10.1186/1471-2342-14-28 +Alireza Nejati,A deformable template method for describing and averaging the anatomical variation of the human nasal cavity.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#NejatiKJC16,https://doi.org/10.1186/s12880-016-0154-8 +Lindsey M. Polizzotti,Quantitative metric profiles capture three-dimensional temporospatial architecture to discriminate cellular functional states.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#PolizzottiHOBYP11,https://doi.org/10.1186/1471-2342-11-11 +André J. Szameitat,The functional magnetic resonance imaging (fMRI) procedure as experienced by healthy participants and stroke patients - A pilot study.,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#SzameitatSS09,https://doi.org/10.1186/1471-2342-9-14 +Janto F. Dreijer,Left ventricular segmentation from MRI datasets with edge modelling conditional random fields.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#DreijerHP13,https://doi.org/10.1186/1471-2342-13-24 +Farzad Khalvati,MPCaD: a multi-scale radiomics-driven framework for automated prostate cancer localization and detection.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#KhalvatiZCSWH18,https://doi.org/10.1186/s12880-018-0258-4 +Martin Ystad,Hippocampal volumes are important predictors for memory function in elderly women.,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#YstadLWERWAAGFRL09,https://doi.org/10.1186/1471-2342-9-17 +Trond Engjom,Contrast-enhanced ultrasonography of the pancreas shows impaired perfusion in pancreas insufficient cystic fibrosis patients.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#EngjomNESLMJGD18,https://doi.org/10.1186/s12880-018-0259-3 +Barbara Brunet-Imbault,A new anisotropy index on trabecular bone radiographic images using the fast Fourier transform.,2005,5,BMC Medical Imaging,,db/journals/bmcmi/bmcmi5.html#Brunet-ImbaultLCHB05,https://doi.org/10.1186/1471-2342-5-4 +Primoz Poredos,Determination of the human spine curve based on laser triangulation.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#PoredosCMJ15,https://doi.org/10.1186/s12880-015-0044-5 +Jamshid Sadiqi,Radiographic features of Ollier's disease - two case reports.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#SadiqiRHS17,https://doi.org/10.1186/s12880-017-0230-8 +Barbara Blasiak,Comparison of T2 and T2 *-weighted MR molecular imaging of a mouse model of glioma.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#BlasiakBFRMPWTIASOT13,https://doi.org/10.1186/1471-2342-13-20 +Brian Quinn,Radiation dosimetry of 18F-FDG PET/CT: incorporating exam-specific parameters in dose estimates.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#QuinnDPSD16,https://doi.org/10.1186/s12880-016-0143-y +Kazuyoshi Motomura,Sentinel nodes identified by computed tomography-lymphography accurately stage the axilla in patients with breast cancer.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#MotomuraSNHN13,https://doi.org/10.1186/1471-2342-13-42 +Benoit Tricot,Improving the evaluation of cardiac function in rats at 7T with denoising filters: a comparison study.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#TricotDDCTCLLL17,https://doi.org/10.1186/s12880-017-0236-2 +Katia M. Passera,Radiofrequency ablation of liver tumors: quantitative assessment of tumor coverage through CT image processing.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#PasseraSSGVM13,https://doi.org/10.1186/1471-2342-13-3 +C. Michael Dunham,Practical one-dimensional measurements of age-related brain atrophy are validated by 3-dimensional values and clinical outcomes: a retrospective study.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#DunhamCPH16,https://doi.org/10.1186/s12880-016-0136-x +Yoshito Tsushima,Radiation Exposure from CT Examinations in Japan.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#TsushimaTTOE10,https://doi.org/10.1186/1471-2342-10-24 +Elin Trägårdh,Small average differences in attenuation corrected images between men and women in myocardial perfusion scintigraphy: a novel normal stress database.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#TragardhSJE11,https://doi.org/10.1186/1471-2342-11-18 +Mei Xiao,Building generic anatomical models using virtual model cutting and iterative registration.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#XiaoSPSHS10,https://doi.org/10.1186/1471-2342-10-5 +Zhi-Cheng Liu,Combination of IVIM-DWI and 3D-ASL for differentiating true progression from pseudoprogression of Glioblastoma multiforme after concurrent chemoradiotherapy: study protocol of a prospective diagnostic trial.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#LiuYHSTNYSWC17,https://doi.org/10.1186/s12880-017-0183-y +Tariq Sinan,CT features in abdominal tuberculosis: 20 years experience.,2002,2,BMC Medical Imaging,,db/journals/bmcmi/bmcmi2.html#SinanSRSB02,https://doi.org/10.1186/1471-2342-2-3 +J. P. M. Andrews,Incidental finding of large pneumothorax on Cardiac MR scan.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#AndrewsMD18,https://doi.org/10.1186/s12880-017-0240-6 +Rhonda A. Brownbill,Measuring body composition in overweight individuals by dual energy x-ray absorptiometry.,2005,5,BMC Medical Imaging,,db/journals/bmcmi/bmcmi5.html#BrownbillI05,https://doi.org/10.1186/1471-2342-5-1 +Salam A. Al-Attar,Quantitative and qualitative differences in subcutaneous adipose tissue stores across lipodystrophy types shown by magnetic resonance imaging.,2007,7,BMC Medical Imaging,,db/journals/bmcmi/bmcmi7.html#Al-AttarPRMWLRH07,https://doi.org/10.1186/1471-2342-7-3 +Christina Baun,Quantification of FDG-PET/CT with delayed imaging in patients with newly diagnosed recurrent breast cancer.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#BaunFGHNAHH18,https://doi.org/10.1186/s12880-018-0254-8 +Salam A. Al-Attar,Semi-automated segmentation and quantification of adipose tissue in calf and thigh by MRI: a preliminary study in patients with monogenic metabolic syndrome.,2006,6,BMC Medical Imaging,,db/journals/bmcmi/bmcmi6.html#Al-AttarPRMWRH06,https://doi.org/10.1186/1471-2342-6-11 +Ying Yu,Multimodal MRI for early diabetic mild cognitive impairment: study protocol of a prospective diagnostic trial.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#YuSYHNYLWG16,https://doi.org/10.1186/s12880-016-0152-x +Hiroyuki Tokue,Multidetector-row computed tomography for evaluating the branching angle of the celiac artery: a descriptive study.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#TokueTT12,https://doi.org/10.1186/1471-2342-12-36 +Caroline De Coninck,Preoperative axillary lymph node staging by ultrasound-guided cytology using a four-level sonographic score.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#ConinckNBS16,https://doi.org/10.1186/s12880-016-0116-1 +Natalia Partain,Mammographic density changes in surgical weight loss-an indication for personalized screening.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#PartainMPPSCFRL18,https://doi.org/10.1186/s12880-017-0242-4 +Oke Gerke,How to assess intra- and inter-observer agreement with quantitative PET using variance component analysis: a proposal for standardisation.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#GerkeVSHH16,https://doi.org/10.1186/s12880-016-0159-3 +Ilse M. Purmer,Brain computer tomography in critically ill patients - a prospective cohort study.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#PurmerIBKBVSH12,https://doi.org/10.1186/1471-2342-12-34 +Joel T. Lee,Internet Image Viewer (iiV).,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#LeeMCP08,https://doi.org/10.1186/1471-2342-8-10 +Claudia Chevrefils,Quantitative evaluation of an automatic segmentation method for 3D reconstruction of intervertebral scoliotic disks from MR images.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#ChevrefilsCGMA12,https://doi.org/10.1186/1471-2342-12-26 +Xuan Yu,Cone-beam computed tomography study of root and canal morphology of mandibular premolars in a western Chinese population.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#YuGLZTWD12,https://doi.org/10.1186/1471-2342-12-18 +Shu-Fang Chen,Ultrasonographic assessment of carpal tunnel syndrome of mild and moderate severity in diabetic patients by using an 8-point measurement of median nerve cross-sectional areas.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#ChenHTCLCC12,https://doi.org/10.1186/1471-2342-12-15 +Ho NamKoong,Immune reconstitution inflammatory syndrome due to Mycobacterium avium complex successfully followed up using 18 F-fluorodeoxyglucose positron emission tomography-computed tomography in a patient with human immunodeficiency virus infection: A case report.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#NamKoongFIYHMSA15,https://doi.org/10.1186/s12880-015-0063-2 +Aristarchos Papagiannaros,Quantum dot loaded immunomicelles for tumor imaging.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#PapagiannarosUHMLT10,https://doi.org/10.1186/1471-2342-10-22 +Azra Alizad,Breast vibro-acoustography: initial experience in benign lesions.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#AlizadMGGCKWF14,https://doi.org/10.1186/s12880-014-0040-1 +Hsu-Chao Chang,Systemic air embolism after percutaneous computed tomography-guided lung biopsy due to a kink in the coaxial biopsy system: a case report.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#ChangY18,https://doi.org/10.1186/s12880-018-0245-9 +Lambros S. Athanasiou,Three-dimensional reconstruction of coronary arteries and plaque morphology using CT angiography - comparison and registration with IVUS.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#AthanasiouRSESB16,https://doi.org/10.1186/s12880-016-0111-6 +Astrid Ellen Grams,Correlation between degenerative spine disease and bone marrow density: a retrospective investigation.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#GramsRBHFKGG16,https://doi.org/10.1186/s12880-016-0123-2 +Mette Jensen,Tumor volume in subcutaneous mouse xenografts measured by microCT is more accurate and reproducible than determined by 18F-FDG-microPET or external caliper.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#JensenJBK08,https://doi.org/10.1186/1471-2342-8-16 +Parag Mahajan,Effects of extremity positioning on radiographic evaluation of femoral tunnel location with digitally reconstructed femoral lateral radiographs after anterior cruciate ligament reconstruction.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#MahajanCAH15,https://doi.org/10.1186/s12880-015-0093-9 +Anders Persson,Three-dimensional drip infusion CT cholangiography in patients with suspected obstructive biliary disease: a retrospective analysis of feasibility and adverse reaction to contrast material.,2006,6,BMC Medical Imaging,,db/journals/bmcmi/bmcmi6.html#PerssonDSB06,https://doi.org/10.1186/1471-2342-6-1 +Yuya Nogami,Anisakiasis mimics cancer recurrence: two cases of extragastrointestinal anisakiasis suspected to be recurrence of gynecological cancer on PET-CT and molecular biological investigation.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#NogamiFBSSHMYSM16,https://doi.org/10.1186/s12880-016-0134-z +Sebastian Wojcinski,Real-time ultrasound elastography in 180 axillary lymph nodes: elasticity distribution in healthy lymph nodes and prediction of breast cancer metastases.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#WojcinskiDSCH12,https://doi.org/10.1186/1471-2342-12-35 +Malin Andersson,How to measure renal artery stenosis - a retrospective comparison of morphological measurement approaches in relation to hemodynamic significance.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#AnderssonJEPGWS15,https://doi.org/10.1186/s12880-015-0086-8 +Yasutoshi Ishihara,Evaluation of magnetic nanoparticle samples made from biocompatible ferucarbotran by time-correlation magnetic particle imaging reconstruction method.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#IshiharaHNI13,https://doi.org/10.1186/1471-2342-13-15 +David S. Wack,Improved assessment of multiple sclerosis lesion segmentation agreement via detection and outline error estimates.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#WackDBPRHRPZ12,https://doi.org/10.1186/1471-2342-12-17 +And U. Turken,Multimodal surface-based morphometry reveals diffuse cortical atrophy in traumatic brain injury.,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#TurkenHKOSBW09,https://doi.org/10.1186/1471-2342-9-20 +Lucas Nacif,Significance of CT scan and color Doppler duplex ultrasound in the assessment of Abernethy malformation.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#NacifPGRACD15,https://doi.org/10.1186/s12880-015-0079-7 +Ivana Galinovic,Automated vs manual delineations of regions of interest- a comparison in commercially available perfusion MRI software.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#GalinovicOSBHBF12,https://doi.org/10.1186/1471-2342-12-16 +Juhun Lee,Eigen-disfigurement model for simulating plausible facial disfigurement after reconstructive surgery.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#LeeFBRSHM15,https://doi.org/10.1186/s12880-015-0050-7 +Zongying Lai,Joint sparse reconstruction of multi-contrast MRI images with graph based redundant wavelet transform.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#LaiZGDYGCQ18,https://doi.org/10.1186/s12880-018-0251-y +Richard Beare,Does the principle of minimum work apply at the carotid bifurcation: a retrospective cohort study.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#BeareDRCSHSP11,https://doi.org/10.1186/1471-2342-11-17 +Maija E. Rossi,Diffusion tensor imaging correlates with lesion volume in cerebral hemisphere infarctions.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#RossiJMDOS10,https://doi.org/10.1186/1471-2342-10-21 +Alexander Wong,Correlated diffusion imaging.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#WongGCH13,https://doi.org/10.1186/1471-2342-13-26 +Jennifer S. Gregory,Identification of hip fracture patients from radiographs using Fourier analysis of the trabecular structure: a cross-sectional study.,2004,4,BMC Medical Imaging,,db/journals/bmcmi/bmcmi4.html#GregorySURA04,https://doi.org/10.1186/1471-2342-4-4 +Sumeyra U. Demir,An automated method for analysis of microcirculation videos for accurate assessment of tissue perfusion.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#DemirHHWMN12,https://doi.org/10.1186/1471-2342-12-37 +Yanguang Shen,Ultra-high b-value diffusion-weighted imaging features of the prostatic leiomyoma-case report.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#ShenZWMWPSY17,https://doi.org/10.1186/s12880-017-0234-4 +Abdul-Malik Shakir,Design and Development of Standards (HL7 V3) Based Enterprise Architecture for Public Health Programs Integration at the County of Los Angeles.,2007,2,IJHISI,2,db/journals/ijhisi/ijhisi2.html#ShakirCDMBV07,https://doi.org/10.4018/jhisi.2007040104 +Wullianallur Raghupathi,Exploring a UML Profile Approach to Modeling Web Services in Healthcare.,2007,2,IJHISI,2,db/journals/ijhisi/ijhisi2.html#RaghupathiG07,https://doi.org/10.4018/jhisi.2007040103 +Agma J. M. Traina,How to Cope with the Performance Gap in Content-Based Image Retrieval Systems.,2009,4,IJHISI,1,db/journals/ijhisi/ijhisi4.html#TrainaTCRM09,https://doi.org/10.4018/jhisi.2009010104 +João M. C. Gonçalves,Real-Time Predictive Analytics for Sepsis Level and Therapeutic Plans in Intensive Care Medicine.,2014,9,IJHISI,3,db/journals/ijhisi/ijhisi9.html#GoncalvesPSS0AR14,https://doi.org/10.4018/ijhisi.2014070103 +Christos Vasilakis,Application of Unified Modelling Language (UML) to the Modelling of Health Care Systems: An Introduction and Literature Survey.,2008,3,IJHISI,4,db/journals/ijhisi/ijhisi3.html#VasilakisLL08,https://doi.org/10.4018/jhisi.2008100103 +Ahmad Alaiad,An Exploratory Study of Home Healthcare Robots Adoption Applying the UTAUT Model.,2014,9,IJHISI,4,db/journals/ijhisi/ijhisi9.html#AlaiadZK14,https://doi.org/10.4018/ijhisi.2014100104 +Wullianallur Raghupathi,Designing Clinical Decision Support Systems in Health Care: A Systemic View.,2007,2,IJHISI,1,db/journals/ijhisi/ijhisi2.html#Raghupathi07,https://doi.org/10.4018/jhisi.2007010104 +Maryann Yeo,Telehealth Organizational Implementation Guideline Issues: A Canadian Perspective.,2006,1,IJHISI,3,db/journals/ijhisi/ijhisi1.html#YeoJ06,https://doi.org/10.4018/jhisi.2006070102 +Kelvin K. F. Tsoi,Data Visualization with IBM Watson Analytics for Global Cancer Trends Comparison from World Health Organization.,2018,13,IJHISI,1,db/journals/ijhisi/ijhisi13.html#TsoiCHKKTM18,https://doi.org/10.4018/IJHISI.2018010104 +R. Kalpana,Changes in Brain White Matter Assessed Via Textural Features Using a Neural Network.,2010,5,IJHISI,2,db/journals/ijhisi/ijhisi5.html#KalpanaMA10,https://doi.org/10.4018/jhisi.2010040105 +Teemu Paavola,Exploiting Process thinking in Health Care.,2008,3,IJHISI,2,db/journals/ijhisi/ijhisi3.html#Paavola08,https://doi.org/10.4018/jhisi.2008040102 +Wullianallur Raghupathi,The Intellectual Structure of Health and Medical Informatics.,2010,5,IJHISI,4,db/journals/ijhisi/ijhisi5.html#RaghupathiN10,https://doi.org/10.4018/jhisi.2010100102 +E. Vance Wilson,Building Better E-Health Through a Personal Health Informatics Pedagogy.,2006,1,IJHISI,3,db/journals/ijhisi/ijhisi1.html#Wilson06,https://doi.org/10.4018/jhisi.2006070105 +Rocci Luppicini,Exploring the Effect of mHealth Technologies on Communication and Information Sharing in a Pediatric Critical Care Unit: A Case Study.,2011,6,IJHISI,3,db/journals/ijhisi/ijhisi6.html#LuppiciniA11,https://doi.org/10.4018/jhisi.2011070101 +Julie Ann Luiz Adrian,The New Cooperative Medical System in China: A Cure for All?,2012,7,IJHISI,3,db/journals/ijhisi/ijhisi7.html#AdrianVH12,https://doi.org/10.4018/jhisi.2012070102 +C. Vimal,Random Forest Classifier Based ECG Arrhythmia Classification.,2010,5,IJHISI,2,db/journals/ijhisi/ijhisi5.html#VimalS10,https://doi.org/10.4018/jhisi.2010040101 +Kabir Sen,Incorporating Global Medical Knowledge to Solve Healthcare Problems: A Framework for a Crowdsourcing System.,2018,13,IJHISI,1,db/journals/ijhisi/ijhisi13.html#SenG18,https://doi.org/10.4018/IJHISI.2018010101 +Wei Wang 0015,Exploring Region of Interest (ROI) to Support Quality of Service in Unreliable Wireless Electronic Healthcare Communications.,2012,7,IJHISI,4,db/journals/ijhisi/ijhisi7.html#WangZWH12,https://doi.org/10.4018/jhisi.2012100101 +Chunxiao Chigan,QoS Provisioning in Sensor Enabled Telemedicine Networks.,2007,2,IJHISI,3,db/journals/ijhisi/ijhisi2.html#ChiganO07,https://doi.org/10.4018/jhisi.2007070102 +Kevin J. Bennett,Utilizing Combined Claims and Clinical Datasets for Research Among Potential Cases of Rare Diseases.,2018,13,IJHISI,2,db/journals/ijhisi/ijhisi13.html#BennettMO18,https://doi.org/10.4018/IJHISI.2018040101 +Laura Nimmon,Telehealth Interventions for Management of Chronic Obstructive Lung Disease (COPD) and Asthma: A Critical Review.,2013,8,IJHISI,1,db/journals/ijhisi/ijhisi8.html#NimmonPF13,https://doi.org/10.4018/jhisi.2013010103 +V. Rajesh,SEMG for Human Computer Interface Using Ann to Navigate Wheel Chair.,2010,5,IJHISI,2,db/journals/ijhisi/ijhisi5.html#RajeshK10,https://doi.org/10.4018/jhisi.2010040102 +Mashhour Bani Amer,A Novel Neural Fuzzy Approach for Diagnosis of Potassium Disturbances.,2011,6,IJHISI,3,db/journals/ijhisi/ijhisi6.html#AmerAE11,https://doi.org/10.4018/jhisi.2011070102 +Alexander J. McLeod Jr.,Using Stakeholder Analysis to Identify Users in Healthcare Information Systems Research: Who is the Real User?,2009,4,IJHISI,3,db/journals/ijhisi/ijhisi4.html#McLeodC09,https://doi.org/10.4018/jhisi.2009070101 +Aman Singh,Diagnosis of Liver Disease by Using Least Squares Support Vector Machine Approach.,2016,11,IJHISI,2,db/journals/ijhisi/ijhisi11.html#SinghP16,https://doi.org/10.4018/IJHISI.2016040104 +Sabah S. Al-Fedaghi,Scrutinizing the Rule: Privacy Realization in HIPAA.,2008,3,IJHISI,2,db/journals/ijhisi/ijhisi3.html#Al-Fedaghi08,https://doi.org/10.4018/jhisi.2008040104 +Darren Woollatt,Choosing Technologies for Handheld and Ubiquitous Decision Support.,2007,2,IJHISI,3,db/journals/ijhisi/ijhisi2.html#WoollattKJW07,https://doi.org/10.4018/jhisi.2007070101 +Juanita Manning-Walsh,Effect of Practitioner Self-Care and Anxiety on Relationships within the Context of Organizational Change.,2012,7,IJHISI,2,db/journals/ijhisi/ijhisi7.html#Manning-WalshF12,https://doi.org/10.4018/jhisi.2012040104 +Abderrahmane Elbalaoui,Automatic Detection of Blood Vessel in Retinal Images Using Vesselness Enhancement Filter and Adaptive Thresholding.,2017,12,IJHISI,1,db/journals/ijhisi/ijhisi12.html#ElbalaouiFTM17,https://doi.org/10.4018/IJHISI.2017010102 +Avnish Rastogi,Charting Health Information Technology Futures for Healthcare Services Organizations.,2008,3,IJHISI,1,db/journals/ijhisi/ijhisi3.html#RastogiDT08,https://doi.org/10.4018/jhisi.2008010101 +Shyamala G. Nadathur,Formal-Transfer In and Out of Stroke Care Units: An Analysis Using Bayesian Networks.,2011,6,IJHISI,3,db/journals/ijhisi/ijhisi6.html#NadathurW11,https://doi.org/10.4018/jhisi.2011070103 +Jean E. Wallace,The Introduction of an Electronic Patient Care Information System and Health Care Providers' Job Stress: A Mixed-Methods Case Study.,2010,5,IJHISI,4,db/journals/ijhisi/ijhisi5.html#WallaceFWGL10,https://doi.org/10.4018/jhisi.2010100103 +Payam Hanafizadeh,Neural Network-based Evaluation of the Effect of the Motivation of Hospital Employees on Patients' Satisfaction.,2010,5,IJHISI,4,db/journals/ijhisi/ijhisi5.html#HanafizadehPA10,https://doi.org/10.4018/jhisi.2010100101 +Carla Teixeira Lopes,Identification and Classification of Health Queries: Co-Occurrences vs. Domain-Specific Terminologies.,2014,9,IJHISI,3,db/journals/ijhisi/ijhisi9.html#Lopes014,https://doi.org/10.4018/ijhisi.2014070104 +Roy Rada,Trends in Information Systems and Long-Term Care: A Literature Review.,2015,10,IJHISI,2,db/journals/ijhisi/ijhisi10.html#Rada15,https://doi.org/10.4018/IJHISI.2015040104 +Janice A. Osbourne,Factors Motivating the Acceptance of New Information and Communication Technologies in UK Healthcare: A Test of Three Models.,2006,1,IJHISI,4,db/journals/ijhisi/ijhisi1.html#OsbourneC06,https://doi.org/10.4018/jhisi.2006100103 +Donald C. McDermid,Factors Affecting the Sustainability of Computer Information Systems: Embedding New Information Technology into a Hospital Environment.,2010,5,IJHISI,1,db/journals/ijhisi/ijhisi5.html#McDermidKS10,https://doi.org/10.4018/jhisi.2010110301 +Shalini Gambhir,The Diagnosis of Dengue Disease: An Evaluation of Three Machine Learning Approaches.,2018,13,IJHISI,3,db/journals/ijhisi/ijhisi13.html#GambhirMK18,https://doi.org/10.4018/IJHISI.2018070101 +Harri Oinas-Kukkonen,Physicians' User Experiences of Mobile Pharmacopoeias and Evidence-Based Medical Guidelines.,2009,4,IJHISI,2,db/journals/ijhisi/ijhisi4.html#Oinas-KukkonenRLSK09,https://doi.org/10.4018/jhisi.2009040104 +Charles Chen,Measuring Patients' Perceptions and Social Influence on Home Telecare Management System Acceptance.,2010,5,IJHISI,3,db/journals/ijhisi/ijhisi5.html#ChenC10,https://doi.org/10.4018/jhisi.2010070104 +Robert C. MacGregor,Benefits Derived from ICT Adoption in Regional Medical Practices: Perceptual Differences Between Male and Female General Practitioners.,2007,2,IJHISI,1,db/journals/ijhisi/ijhisi2.html#MacGregorHHL07,https://doi.org/10.4018/jhisi.2007010101 +Djamila Marouf,The MAV-ES Data Integration Approach for Decisional Information Systems (DIS): A Case on Epidemiologic Monitoring.,2016,11,IJHISI,4,db/journals/ijhisi/ijhisi11.html#MaroufHB16,https://doi.org/10.4018/IJHISI.2016100102 +Karen A. Wager,Assessing Physician and Nurse Satisfaction with an Ambulatory Care EMR: One Facility's Approach.,2008,3,IJHISI,1,db/journals/ijhisi/ijhisi3.html#Wager08,https://doi.org/10.4018/jhisi.2008010104 +Indrajit Pan,Assessment of Anti-angiogenic Drug in Cancer Therapy.,2010,5,IJHISI,2,db/journals/ijhisi/ijhisi5.html#Pan10,https://doi.org/10.4018/jhisi.2010040103 +John Lee Reardon,Perceptions of an Organizing Vision for Electronic Medical Records by Independent Physician Practices.,2009,4,IJHISI,3,db/journals/ijhisi/ijhisi4.html#Reardon09,https://doi.org/10.4018/jhisi.2009070102 +Riadh Bouslimi,Medical Image Retrieval in Healthcare Social Networks.,2018,13,IJHISI,2,db/journals/ijhisi/ijhisi13.html#BouslimiAA18,https://doi.org/10.4018/IJHISI.2018040102 +Rishi Kanth Saripalle,UMLS Semantic Network as a UML Metamodel for Improving Biomedical Ontology and Application Modeling.,2015,10,IJHISI,2,db/journals/ijhisi/ijhisi10.html#Saripalle15,https://doi.org/10.4018/IJHISI.2015040103 +Marian Wilson,Participant Perspectives on Benefits and Challenges of Engaging in an Online Pain Self-Management Program.,2017,12,IJHISI,4,db/journals/ijhisi/ijhisi12.html#WilsonS17,https://doi.org/10.4018/IJHISI.2017100104 +James G. Anderson,Computerization of Primary Care in the United States.,2006,1,IJHISI,3,db/journals/ijhisi/ijhisi1.html#AndersonB06,https://doi.org/10.4018/jhisi.2006070101 +Joshia Tan,Biomedical Image Processing.,2012,7,IJHISI,1,db/journals/ijhisi/ijhisi7.html#Tan12,https://doi.org/10.4018/jhisi.2012010105 +Virginia Ilie,Challenges Associated with Physicians' Usage of Electronic Medical Records.,2009,4,IJHISI,3,db/journals/ijhisi/ijhisi4.html#IlieSCS09,https://doi.org/10.4018/jhisi.2009070103 +Taxiarchis Botsis,Implementation of a Computerized System in an Oncology Unit.,2007,2,IJHISI,3,db/journals/ijhisi/ijhisi2.html#BotsisS07,https://doi.org/10.4018/jhisi.2007070103 +Nastaran Hajiheydari,Proposing a Business Model in Healthcare Industry: E-Diagnosis.,2013,8,IJHISI,2,db/journals/ijhisi/ijhisi8.html#HajiheydariKF13,https://doi.org/10.4018/jhisi.2013040104 +Navneet Kaur Bajwa,Critical Success Factors in Electronic Health Records (EHR) Implementation: An Exploratory Study in North India.,2017,12,IJHISI,2,db/journals/ijhisi/ijhisi12.html#BajwaSD17,https://doi.org/10.4018/IJHISI.2017040101 +Nilmini Wickramasinghe,The Competitive Forces Facing E-Health.,2006,1,IJHISI,4,db/journals/ijhisi/ijhisi1.html#WickramasingheMJV06,https://doi.org/10.4018/jhisi.2006100106 +Alka Gautam,ECG Signal De-noising with Asynchronous Averaging and Filtering Algorithm.,2010,5,IJHISI,2,db/journals/ijhisi/ijhisi5.html#GautamLC10,https://doi.org/10.4018/jhisi.2010040104 +Tarik Abdel-Monem,Electronic Medical Records and Public Perceptions: A Deliberative Process.,2013,8,IJHISI,3,db/journals/ijhisi/ijhisi8.html#Abdel-MonemHS13,https://doi.org/10.4018/jhisi.2013070103 +Fikreyohannes Lemma,Envisioning a National e-Medicine Network Architecture in a Developing Country: A Case Study.,2008,3,IJHISI,1,db/journals/ijhisi/ijhisi3.html#LemmaDTK08,https://doi.org/10.4018/jhisi.2008010103 +Cynthia M. LeRouge,Project Initiation for Telemedicine Services.,2014,9,IJHISI,2,db/journals/ijhisi/ijhisi9.html#LeRougeTW14,https://doi.org/10.4018/ijhisi.2014040104 +Gary Sutkin,Characteristics of Good Clinical Educators from Medical Students' Perspectives: A Qualitative Inquiry using a Web-Based Survey System.,2008,3,IJHISI,2,db/journals/ijhisi/ijhisi3.html#SutkinBZA08,https://doi.org/10.4018/jhisi.2008040106 +Ricardo Villegas,A Software Tool for Reading DICOM Directory Files.,2007,2,IJHISI,1,db/journals/ijhisi/ijhisi2.html#VillegasMV07,https://doi.org/10.4018/jhisi.2007010105 +April Moreno,Assessing Utilization and Effectiveness in Public Participative and Volunteered Geographic Information Systems for Environmental Data.,2017,12,IJHISI,4,db/journals/ijhisi/ijhisi12.html#MorenoO17,https://doi.org/10.4018/IJHISI.2017100101 +Lisa A. Osborne,Identifying and Addressing the Barriers to the Use of an Internet-Register for Multiple Sclerosis.,2013,8,IJHISI,1,db/journals/ijhisi/ijhisi8.html#OsborneLMTMJFN13,https://doi.org/10.4018/jhisi.2013010101 +Abdul-Rahman Al-Ali,A Preliminary Study toward Wireless Integration of Patient Information System.,2006,1,IJHISI,4,db/journals/ijhisi/ijhisi1.html#Al-AliOL06,https://doi.org/10.4018/jhisi.2006100101 +Somsirsa Chatterjee,Characterization of HRV by Poincare Plot Analysis among the Female Tea Garden Workers of Northern Hilly Regions of West Bengal.,2010,5,IJHISI,2,db/journals/ijhisi/ijhisi5.html#ChatterjeeGB10,https://doi.org/10.4018/jhisi.2010040106 +David B. Meinert,Anticipated Use of EMR Functions and Physician Characteristics.,2009,4,IJHISI,2,db/journals/ijhisi/ijhisi4.html#MeinertP09,https://doi.org/10.4018/jhisi.2009040101 +Vasileios Syrimpeis,A Knowledge Based System for the Selection of Muscles for Gait Phase Detection using EMGs.,2017,12,IJHISI,2,db/journals/ijhisi/ijhisi12.html#SyrimpeisMAP17,https://doi.org/10.4018/IJHISI.2017040102 +Peter Adebayo Idowu,Development of a Fuzzy Logic-based Model for Monitoring Cardiovascular Risk.,2015,10,IJHISI,4,db/journals/ijhisi/ijhisi10.html#IdowuABO15,https://doi.org/10.4018/IJHISI.2015100103 +Lisa M. Nanovic,Identifying Optimal Chronic Kidney Disease Patient Education Web Sites: Assessing E-Health Technology by Content Area Experts.,2007,2,IJHISI,1,db/journals/ijhisi/ijhisi2.html#NanovicJ07,https://doi.org/10.4018/jhisi.2007010103 +Nan Zhang 0004,No Silver Bullet: Identifying Security Vulnerabilities in Anonymization Protocols for Hospital Databases.,2012,7,IJHISI,4,db/journals/ijhisi/ijhisi7.html#0004ODCH12,https://doi.org/10.4018/jhisi.2012100104 +Sharmila Banu K.,Exploring Incidence-Prevalence Patterns in Spatial Epidemiology via Neighborhood Rough Sets.,2017,12,IJHISI,1,db/journals/ijhisi/ijhisi12.html#KT17,https://doi.org/10.4018/IJHISI.2017010103 +Olufunke O. Oladipupo,On Sharp Boundary Problem in Rule Based Expert Systems in the Medical Domain.,2010,5,IJHISI,3,db/journals/ijhisi/ijhisi5.html#OlufunkeCC10,https://doi.org/10.4018/jhisi.2010070102 +Saloni,Human Voice Waveform Analysis for Categorization of Healthy and Parkinson Subjects.,2016,11,IJHISI,1,db/journals/ijhisi/ijhisi11.html#SaloniSG16,https://doi.org/10.4018/IJHISI.2016010102 +Shahid Manzoor,Implementation of a Referent Tracking System.,2007,2,IJHISI,4,db/journals/ijhisi/ijhisi2.html#ManzorrCR07,https://doi.org/10.4018/jhisi.2007100103 +Heiko Gewald,Inhibitors of Physicians' Use of Mandatory Hospital Information Systems (HIS).,2018,13,IJHISI,1,db/journals/ijhisi/ijhisi13.html#GewaldG18,https://doi.org/10.4018/IJHISI.2018010103 +Wienand A. Omta,HTS-IA: High Throughput Screening Information Architecture for Genomics.,2013,8,IJHISI,4,db/journals/ijhisi/ijhisi8.html#OmtaEKSB13,https://doi.org/10.4018/ijhisi.2013100102 +B. Dawn Medlin,An Empirical Investigation: Health Care Employee Passwords and Their Crack Times in Relationship to HIPAA Security Standards.,2007,2,IJHISI,3,db/journals/ijhisi/ijhisi2.html#MedlinC07,https://doi.org/10.4018/jhisi.2007070104 +Surya Nepal,A Trusted System for Sharing Patient Electronic Medical Records in Autonomous Distributed Health Care Systems.,2007,2,IJHISI,1,db/journals/ijhisi/ijhisi2.html#NepalZJK07,https://doi.org/10.4018/jhisi.2007010102 +Huigang Liang,User Acceptance of Computerized Physician Order Entry: An Empirical Investigation.,2006,1,IJHISI,2,db/journals/ijhisi/ijhisi1.html#LiangXW06,https://doi.org/10.4018/jhisi.2006040103 +Satya Ranjan Dash,Scaled Fuzzy Graph for Cluster Analysis in DNA Sequence of Olfactory Receptors.,2013,8,IJHISI,1,db/journals/ijhisi/ijhisi8.html#DashDS13,https://doi.org/10.4018/jhisi.2013010104 +Amar Gupta,An Information Technology Architecture for Drug Effectiveness Reporting and Post-Marketing Surveillance.,2007,2,IJHISI,3,db/journals/ijhisi/ijhisi2.html#GuptaWCS07,https://doi.org/10.4018/jhisi.2007070106 +Henning Müller,Putting the Content Into Context: Features and Gaps in Image Retrieval.,2009,4,IJHISI,1,db/journals/ijhisi/ijhisi4.html#MullerK09,https://doi.org/10.4018/jhisi.2009010106 +Marilyn M. Helms,Information Technology (IT) and the Healthcare Industry: A SWOT Analysis.,2008,3,IJHISI,1,db/journals/ijhisi/ijhisi3.html#HelmsMA08,https://doi.org/10.4018/jhisi.2008010105 +Sharie Falan,Sustaining Healthcare Through Waste Elimination: A Taxonomic Analysis with Case Illustrations.,2011,6,IJHISI,4,db/journals/ijhisi/ijhisi6.html#FalanHZTR11,https://doi.org/10.4018/jhisi.2011100101 +D. Selvathi,The SURE-LET Approach for MR Brain Image Denoising Using Different Shrinkage Rules.,2010,5,IJHISI,2,db/journals/ijhisi/ijhisi5.html#SelvathiSM10,https://doi.org/10.4018/jhisi.2010040108 +Olivia F. Lee,Virtualized Disaster Recovery Model for Large Scale Hospital and Healthcare Systems.,2010,5,IJHISI,3,db/journals/ijhisi/ijhisi5.html#LeeG10,https://doi.org/10.4018/jhisi.2010070105 +Patrícia Macedo,iReport SportsPhysio Platform: A Unifying Model for Sports Injuries Surveillance and Monitoring.,2014,9,IJHISI,3,db/journals/ijhisi/ijhisi9.html#MacedoMJ14,https://doi.org/10.4018/ijhisi.2014070102 +Thi Thanh Hai Nguyen,Critical Success Factors in Health Information Technology Implementation: The Perspective of Finnish IT Managers.,2015,10,IJHISI,1,db/journals/ijhisi/ijhisi10.html#NguyenTI15,https://doi.org/10.4018/IJHISI.2015010101 +Ahmad Alaiad,A Conceptual Framework of Smart Home Context: An Empirical Investigation.,2016,11,IJHISI,3,db/journals/ijhisi/ijhisi11.html#AlaiadAAH16,https://doi.org/10.4018/IJHISI.2016070103 +Sandeep Lakaraju,Analysis of Healthcare Workflows in Accordance with Access Control Policies.,2016,11,IJHISI,1,db/journals/ijhisi/ijhisi11.html#LakarajuXW16,https://doi.org/10.4018/IJHISI.2016010101 +Walisa Romsaiyud,Adaptive Multi-Services System for Maternal and Child Health Care on Mobile Application (AM-Care).,2010,5,IJHISI,3,db/journals/ijhisi/ijhisi5.html#RomsaiyudP10,https://doi.org/10.4018/jhisi.2010070103 +Manel Saad Saoud,A Simulation Knowledge Extraction-based Decision Support System for the Healthcare Emergency Department.,2016,11,IJHISI,2,db/journals/ijhisi/ijhisi11.html#SaoudBA16,https://doi.org/10.4018/IJHISI.2016040102 +Jordan Mitchell,Organizational Factors Associated with Health Information Technology Adoption and Utilization Among Home Health / Hospice Agencies.,2011,6,IJHISI,3,db/journals/ijhisi/ijhisi6.html#MitchellBP11,https://doi.org/10.4018/jhisi.2011070104 +Sara Paiva,Preventing Alzheimer's Wandering: The Potential of Involving Communities.,2013,8,IJHISI,4,db/journals/ijhisi/ijhisi8.html#PaivaPCA13,https://doi.org/10.4018/ijhisi.2013100103 +Jim Ryan,Using Key Performance Indicators to Reduce Perceived Perioperative Complexity and Improve Patient Workflow.,2017,12,IJHISI,4,db/journals/ijhisi/ijhisi12.html#RyanDDL17,https://doi.org/10.4018/IJHISI.2017100102 +Nebil Buyurgan,A Novel GS1 Data Standard Adoption Roadmap for Healthcare Providers.,2011,6,IJHISI,4,db/journals/ijhisi/ijhisi6.html#BuyurganRJVB11,https://doi.org/10.4018/jhisi.2011100103 +Wissem Labbadi,Efficient Algorithm for Answering Fuzzy Medical Requests in Pervasive Healthcare Information Systems.,2017,12,IJHISI,2,db/journals/ijhisi/ijhisi12.html#LabbadiA17,https://doi.org/10.4018/IJHISI.2017040103 +Iain Morrison,Decision Support With BPEL and Web Services.,2007,2,IJHISI,2,db/journals/ijhisi/ijhisi2.html#MorrisonN07,https://doi.org/10.4018/jhisi.2007040105 +Konstantinos Koumaditis,Proposing and Testing SOA Governance Process: A Case Study Approach.,2015,10,IJHISI,3,db/journals/ijhisi/ijhisi10.html#KoumaditisT15,https://doi.org/10.4018/IJHISI.2015070103 +Manel Saad Saoud,A Multi-Agent Based Modeling and Simulation Data Management and Analysis System for the Hospital Emergency Department.,2017,12,IJHISI,3,db/journals/ijhisi/ijhisi12.html#SaoudBA17,https://doi.org/10.4018/IJHISI.2017070102 +Joseph M. Woodside,Space-Time Cluster Analysis: Application of Healthcare Service Data in Epidemiological Studies.,2009,4,IJHISI,4,db/journals/ijhisi/ijhisi4.html#WoodsideS09,https://doi.org/10.4018/jhisi.2009071005 +Neset Hikmet,The Impact of Professional Certifications on Healthcare Information Technology Use.,2006,1,IJHISI,3,db/journals/ijhisi/ijhisi1.html#HikmetB06,https://doi.org/10.4018/jhisi.2006070104 +Sabah Al-Fedaghi,Design Principles in Health Information Technology: An Alternative to UML Use Case Methodology.,2014,9,IJHISI,1,db/journals/ijhisi/ijhisi9.html#Al-Fedaghi14,https://doi.org/10.4018/ijhisi.2014010102 +Diane Lending,The Effects of Confidentiality on Nursing Self-Efficacy with Information Systems.,2007,2,IJHISI,3,db/journals/ijhisi/ijhisi2.html#LendingD07,https://doi.org/10.4018/jhisi.2007070105 +William H. Horsthemke,Evaluation Challenges for Bridging Semantic Gap: Shape Disagreements on Pulmonary Nodules in the Lung Image Database Consortium.,2009,4,IJHISI,1,db/journals/ijhisi/ijhisi4.html#HorsthemkeRF09,https://doi.org/10.4018/jhisi.2009010102 +Viju Raghupathi,Exploring Cost and Quality of Medicare in the United States using Analytics.,2016,11,IJHISI,2,db/journals/ijhisi/ijhisi11.html#RaghupathiR16,https://doi.org/10.4018/IJHISI.2016040101 +Juan C. Lavariega,Monitoring and Assisting Maternity-Infant Care in Rural Areas (MAMICare).,2014,9,IJHISI,4,db/journals/ijhisi/ijhisi9.html#LavariegaCGA14,https://doi.org/10.4018/ijhisi.2014100103 +Yi Wang,Applying Dynamic Causal Mining in Health Service Management.,2008,3,IJHISI,4,db/journals/ijhisi/ijhisi3.html#Wang08,https://doi.org/10.4018/jhisi.2008100102 +Bahae Samhan,Why Do People Resist Patient Portal Systems?: An Application of the Dual Factor Model of IT Usage.,2017,12,IJHISI,4,db/journals/ijhisi/ijhisi12.html#Samhan17,https://doi.org/10.4018/IJHISI.2017100105 +Safa Attia,Development of an Emergency Response Management using Mobile Devices for Hospital Infrastructures Affected by Power Grid Failures.,2016,11,IJHISI,1,db/journals/ijhisi/ijhisi11.html#AttiaBS16,https://doi.org/10.4018/IJHISI.2016010103 +Qing Zhang 0001,Approximate Processing for Medical Record Linking and Multidatabase Analysis.,2007,2,IJHISI,4,db/journals/ijhisi/ijhisi2.html#ZhangH07,https://doi.org/10.4018/jhisi.2007100104 +Jim Ryan,A Balanced Perspective to Perioperative Process Management Aligned to Hospital Strategy.,2014,9,IJHISI,4,db/journals/ijhisi/ijhisi9.html#RyanDDL14,https://doi.org/10.4018/ijhisi.2014100101 +Anushia Inthiran,Medical Information Retrieval Strategies: An Exploratory Study on the Information Retrieval Behaviors of Non-Medical Professionals.,2012,7,IJHISI,1,db/journals/ijhisi/ijhisi7.html#InthiranAA12,https://doi.org/10.4018/jhisi.2012010103 +Yongji Yang,Kinect-Based Limb Rehabilitation Methods.,2018,13,IJHISI,3,db/journals/ijhisi/ijhisi13.html#YangXJ18,https://doi.org/10.4018/IJHISI.2018070104 +Ali Otarkhani,Analyzing the Impact of Governance of Enterprise IT on Hospital Performance: Tehran's (Iran) Hospitals - A Case Study.,2017,12,IJHISI,3,db/journals/ijhisi/ijhisi12.html#OtarkhaniSP17,https://doi.org/10.4018/IJHISI.2017070101 +Liam O'Neill,Physician Characteristics Associated with Early Adoption of Electronic Medical Records in Smaller Group Practices.,2009,4,IJHISI,2,db/journals/ijhisi/ijhisi4.html#ONeillTK09,https://doi.org/10.4018/jhisi.2009040105 +Chiranji Lal Chowdhary,A Hybrid Scheme for Breast Cancer Detection using Intuitionistic Fuzzy Rough Set Technique.,2016,11,IJHISI,2,db/journals/ijhisi/ijhisi11.html#ChowdharyA16,https://doi.org/10.4018/IJHISI.2016040103 +D. Jude Hemanth,Application of Adaptive Resonance Theory Neural Network for MR Brain Tumor Image Classification.,2010,5,IJHISI,1,db/journals/ijhisi/ijhisi5.html#HemanthSA10,https://doi.org/10.4018/jhisi.2010110304 +Reza Sherafat Kazemzadeh,A Framework for Data and Mined Knowledge Interoperability in Clinical Decision Support Systems.,2010,5,IJHISI,1,db/journals/ijhisi/ijhisi5.html#KazemzadehSJ10,https://doi.org/10.4018/jhisi.2010110303 +Joey van Angeren,Application Portfolio Management in Hospitals: Empirical Insights.,2014,9,IJHISI,1,db/journals/ijhisi/ijhisi9.html#AngerenBB14,https://doi.org/10.4018/ijhisi.2014010104 +Timothy Jay Carney,Organizational Factors Influencing the Use of Clinical Decision Support for Improving Cancer Screening Within Community Health Centers.,2014,9,IJHISI,1,db/journals/ijhisi/ijhisi9.html#CarneyWMJH14,https://doi.org/10.4018/ijhisi.2014010101 +Roy Rada,Ethnographic Discovery of Adverse Events in Patient Online Discussions: Customer Relationship Management.,2008,3,IJHISI,3,db/journals/ijhisi/ijhisi3.html#Rada08,https://doi.org/10.4018/jhisi.2008070105 +David D. Dobrzykowski,Examining Heterogeneous Patterns of Electronic Health Records Use: A Contingency Perspective and Assessment.,2012,7,IJHISI,2,db/journals/ijhisi/ijhisi7.html#Dobrzykowski12,https://doi.org/10.4018/jhisi.2012040101 +Beibei Cheng,Automatic Detection of Arrow Annotation Overlays in Biomedical Images.,2011,6,IJHISI,4,db/journals/ijhisi/ijhisi6.html#ChengSDAT11,https://doi.org/10.4018/jhisi.2011100102 +Phillip Olla,The M-Health Reference Model: An Organizing Framework for Conceptualizing Mobile Health Systems.,2006,1,IJHISI,2,db/journals/ijhisi/ijhisi1.html#OllaT06,https://doi.org/10.4018/jhisi.2006040101 +Faouzi Kamoun,Human and Organizational Factors of Healthcare Data Breaches: The Swiss Cheese Model of Data Breach Causation And Prevention.,2014,9,IJHISI,1,db/journals/ijhisi/ijhisi9.html#KamounN14,https://doi.org/10.4018/ijhisi.2014010103 +Gahangir Hossain,Design Analytics of Complex Communication Systems Involving Two Different Sensory Disabilities.,2017,12,IJHISI,2,db/journals/ijhisi/ijhisi12.html#Hossain17,https://doi.org/10.4018/IJHISI.2017040104 +Andrew Simpson,On The Development of Secure Service-Oriented Architectures to Support Medical Research.,2007,2,IJHISI,2,db/journals/ijhisi/ijhisi2.html#SimpsonPSRK07,https://doi.org/10.4018/jhisi.2007040106 +Jim P. DeMello,Factors Impacting Use of Information Technology by Physicians in Private Practice.,2012,7,IJHISI,2,db/journals/ijhisi/ijhisi7.html#DeMelloD12,https://doi.org/10.4018/jhisi.2012040102 +Hayit Greenspan,Revisiting the Feature and Content Gap for Landmark- Based and Image-to-Image Retrieval in Medical CBIR.,2009,4,IJHISI,1,db/journals/ijhisi/ijhisi4.html#Greenspan09,https://doi.org/10.4018/jhisi.2009010105 +Christina I. Serrano,An Exploratory Study of Patient Acceptance of Walk-In Telemedicine Services for Minor Conditions.,2009,4,IJHISI,4,db/journals/ijhisi/ijhisi4.html#SerranoK09,https://doi.org/10.4018/jhisi.2009071003 +Seyed Shahabeddin Sadr,Implication of E-Health and IT Governance on Healthcare Expenditure: An Econometrics Approach (Case Study Middle East Countries).,2013,8,IJHISI,2,db/journals/ijhisi/ijhisi8.html#SadrSF13,https://doi.org/10.4018/jhisi.2013040105 +Karen Chang,Nurses' Perceptions of Using a Pocket PC for Shift Reports and Patient Care.,2006,1,IJHISI,1,db/journals/ijhisi/ijhisi1.html#ChangLBN06,https://doi.org/10.4018/jhisi.2006010104 +Mourad Sarrouti,A Yes/No Answer Generator Based on Sentiment-Word Scores in Biomedical Question Answering.,2017,12,IJHISI,3,db/journals/ijhisi/ijhisi12.html#SarroutiA17,https://doi.org/10.4018/IJHISI.2017070104 +Mashhour Bani Amer,Assessment of Liver Function Using Hybrid Neuro-Fuzzy Model of Blood Albumin.,2010,5,IJHISI,4,db/journals/ijhisi/ijhisi5.html#Amer10,https://doi.org/10.4018/jhisi.2010100104 +Jim Ryan,A Case Study Perspective for Balanced Perioperative Workflow Achievement through Data-Driven Process Improvement.,2016,11,IJHISI,3,db/journals/ijhisi/ijhisi11.html#RyanDDL16,https://doi.org/10.4018/IJHISI.2016070102 +Fábio Costa,Risk Management Information System Architecture for a Hospital Center: The Case of CHTMAD.,2013,8,IJHISI,4,db/journals/ijhisi/ijhisi8.html#CostaSVPC13,https://doi.org/10.4018/ijhisi.2013100105 +Charles S. Beverley,Differences in Electronic Medical Record Implementation and Use According to Geographical Location and Organizational Characteristics of US Federally Qualified Health Centers.,2012,7,IJHISI,3,db/journals/ijhisi/ijhisi7.html#BeverleyPWRG12,https://doi.org/10.4018/jhisi.2012070101 +Jinman Kim,Bridging the Feature Gaps for Retrieval of Multi-Dimensional Images.,2009,4,IJHISI,1,db/journals/ijhisi/ijhisi4.html#KimCF09,https://doi.org/10.4018/jhisi.2009010103 +Dobin Yim,Identifying Bands in the Knowledge Exchange Spectrum in an Online Health Infomediary.,2015,10,IJHISI,3,db/journals/ijhisi/ijhisi10.html#YimKA15,https://doi.org/10.4018/IJHISI.2015070104 +Guy Paré,Internet as a Source of Health Information and its Perceived Influence on Personal Empowerment.,2009,4,IJHISI,4,db/journals/ijhisi/ijhisi4.html#PareMSL09,https://doi.org/10.4018/jhisi.2009071001 +Khouloud Safi Eljil,Predicting Hypoglycemia in Diabetic Patients Using Time-Sensitive Artificial Neural Networks.,2016,11,IJHISI,4,db/journals/ijhisi/ijhisi11.html#EljilQP16,https://doi.org/10.4018/IJHISI.2016100104 +Vivying S. Y. Cheng,Health Insurance Portability and Accountability Act (HIPPA) Compliant Access Control Model for Web Services.,2006,1,IJHISI,1,db/journals/ijhisi/ijhisi1.html#ChengH06,https://doi.org/10.4018/jhisi.2006010102 +Nebil Buyurgan,Supply Chain-Related Adverse Events and Patient Safety in Healthcare.,2015,10,IJHISI,2,db/journals/ijhisi/ijhisi10.html#BuyurganF15,https://doi.org/10.4018/IJHISI.2015040102 +Andrzej Ceglowski,Towards Process-of-Care Aware Emergency Department Information Systems: A Clustering Approach to Activity Views Elicitation.,2008,3,IJHISI,4,db/journals/ijhisi/ijhisi3.html#CeglowskiC08,https://doi.org/10.4018/jhisi.2008100101 +David Parry,Open Source Software: A Key Component of E-Health in Developing Nations.,2008,3,IJHISI,3,db/journals/ijhisi/ijhisi3.html#ParryPDS08,https://doi.org/10.4018/jhisi.2008070101 +Paul R. Harper,TreeWorks: Advances in Scalable Decision Trees.,2008,3,IJHISI,4,db/journals/ijhisi/ijhisi3.html#HarperL08,https://doi.org/10.4018/jhisi.2008100104 +Filipe Portela,Implementing a Pervasive Real-Time Intelligent System for Tracking Critical Events with Intensive Care Patients.,2013,8,IJHISI,4,db/journals/ijhisi/ijhisi8.html#PortelaGSMASR13,https://doi.org/10.4018/ijhisi.2013100101 +Synnøve Thomassen Andersen,Innovation in ICT-Based Health Care Provision.,2011,6,IJHISI,2,db/journals/ijhisi/ijhisi6.html#AndersenJ11,https://doi.org/10.4018/jhisi.2011040102 +Hussein Atoui,Ambient Intelligence and Pervasive Architecture Designed within the EPI-MEDICS Personal ECG Monitor.,2008,3,IJHISI,4,db/journals/ijhisi/ijhisi3.html#AtouiTFR08,https://doi.org/10.4018/jhisi.2008100105 +Adekunle Oluseyi Afolabi,Systematic Literature Review on Empirical Results and Practical Implementations of Healthcare Recommender Systems: Lessons Learned and a Novel Proposal.,2015,10,IJHISI,4,db/journals/ijhisi/ijhisi10.html#AfolabiTHM15,https://doi.org/10.4018/IJHISI.2015100101 +Thomas Chesney,Data Mining Medical Information: Should Artificial Neural Networks Be Used to Analyse Trauma Audit Data?,2006,1,IJHISI,2,db/journals/ijhisi/ijhisi1.html#ChesneyPODCMT06,https://doi.org/10.4018/jhisi.2006040104 +Carla Wiggins,Entrepreneurial IT Governance: Electronic Medical Records in Rural Healthcare.,2006,1,IJHISI,4,db/journals/ijhisi/ijhisi1.html#WigginsBTP06,https://doi.org/10.4018/jhisi.2006100104 +Paula Alexandra Rego,A Serious Games Framework for Health Rehabilitation.,2014,9,IJHISI,3,db/journals/ijhisi/ijhisi9.html#RegoMR14,https://doi.org/10.4018/ijhisi.2014070101 +John C. Pendergrass,A Threat Table Based Assessment of Information Security in Telemedicine.,2014,9,IJHISI,4,db/journals/ijhisi/ijhisi9.html#PendergrassHRV14,https://doi.org/10.4018/ijhisi.2014100102 +Frédérique Laforest,Documents and Topic Maps: An Original way to Manage Medical Records.,2007,2,IJHISI,4,db/journals/ijhisi/ijhisi2.html#LaforestV07,https://doi.org/10.4018/jhisi.2007100102 +Xuesong (Sonya) Zhang,A Community-Based Participatory Research Model and Web Application for Studying Health Professional Shortage Areas in the United States.,2013,8,IJHISI,3,db/journals/ijhisi/ijhisi8.html#ZhangD13,https://doi.org/10.4018/jhisi.2013070102 +Dana Schwieger,Applying Adaptive Structuration Theory to Health Information Systems Adoption: A Case Study.,2006,1,IJHISI,1,db/journals/ijhisi/ijhisi1.html#SchwiegerMRW06,https://doi.org/10.4018/jhisi.2006010106 +M. Poulymenopoulou,Document Management Mechanism for Holistic Emergency Healthcare.,2014,9,IJHISI,2,db/journals/ijhisi/ijhisi9.html#Poulymenopoulou14,https://doi.org/10.4018/ijhisi.2014040101 +Jinhyung Lee,Factors Affecting Health Information Technology Expenditure in California Hospitals.,2015,10,IJHISI,2,db/journals/ijhisi/ijhisi10.html#Lee15,https://doi.org/10.4018/IJHISI.2015040101 +Kalpdrum Passi,A Decision Support System (DSS) for Colorectal Cancer Follow-Up Program via a Semantic Framework.,2015,10,IJHISI,1,db/journals/ijhisi/ijhisi10.html#PassiZ15,https://doi.org/10.4018/IJHISI.2015010102 +Mohamad Soltani Delgosha,The Business Values of Patient Knowledge Management (PKM) in the Healthcare Industry.,2013,8,IJHISI,2,db/journals/ijhisi/ijhisi8.html#DelgoshaOF13,https://doi.org/10.4018/jhisi.2013040106 +Stacy Bourgeois,Electronic Health Records: Improving Patient Safety and Quality of Care in Texas Acute Care Hospitals.,2010,5,IJHISI,3,db/journals/ijhisi/ijhisi5.html#BourgeoisY10,https://doi.org/10.4018/jhisi.2010070101 +Diane C. Davis,Perceived Level of Benefits and Risks of Core Functionalities of an EHR System.,2006,1,IJHISI,4,db/journals/ijhisi/ijhisi1.html#DavisT06,https://doi.org/10.4018/jhisi.2006100105 +Calvin K. L. Or,Pre-Implementation Case Studies Evaluating Workflow and Informatics Challenges in Private Primary Care Clinics for Electronic Medical Record Implementation.,2015,10,IJHISI,4,db/journals/ijhisi/ijhisi10.html#Or15,https://doi.org/10.4018/IJHISI.2015100104 +Basmah Almoaber,Barriers to Successful Health Information Exchange Systems in Canada and the USA: A Systematic Review.,2017,12,IJHISI,1,db/journals/ijhisi/ijhisi12.html#AlmoaberA17,https://doi.org/10.4018/IJHISI.2017010104 +Raquel da Luz Dias,Video Production and Video Tutorials in Professional Health Education: A Mobile Learning Experience.,2014,9,IJHISI,3,db/journals/ijhisi/ijhisi9.html#DiasML14,https://doi.org/10.4018/ijhisi.2014070105 +Fred K. Weigel,Use of Diffusion of Innovations Theory in Medical Informatics Research.,2012,7,IJHISI,3,db/journals/ijhisi/ijhisi7.html#WeigelRHCF12,https://doi.org/10.4018/jhisi.2012070104 +Stefan Jablonski,Integrated Process and Data Management for Healthcare Applications.,2007,2,IJHISI,4,db/journals/ijhisi/ijhisi2.html#JablonskiLMFVDGM07,https://doi.org/10.4018/jhisi.2007100101 +Tobias Mettler,Transformation of the Hospital Supply Chain: How to Measure the Maturity of Supplier Relationship Management Systems in Hospitals?,2011,6,IJHISI,2,db/journals/ijhisi/ijhisi6.html#Mettler11,https://doi.org/10.4018/jhisi.2011040101 +John D. Ainsworth,The PsyGrid Experience: Using Web Services in the Study of Schizophrenia.,2007,2,IJHISI,2,db/journals/ijhisi/ijhisi2.html#AinsworthH07,https://doi.org/10.4018/jhisi.2007040101 +Elad Harison,Measuring the Effects of Information Systems on the Performance of Operating Rooms (OR).,2010,5,IJHISI,1,db/journals/ijhisi/ijhisi5.html#HarisonB10,https://doi.org/10.4018/jhisi.2010110302 +Andik Setyono,The Development and Implementation of a Multimedia Messaging Service for an Enhanced Mobile Telemedicine System.,2012,7,IJHISI,1,db/journals/ijhisi/ijhisi7.html#SetyonoAE12,https://doi.org/10.4018/jhisi.2012010102 +Rola El Halabieh,From E-Prescribing to Drug Management System: Impacts of Stress on Usage Continuance.,2018,13,IJHISI,1,db/journals/ijhisi/ijhisi13.html#HalabiehBT18,https://doi.org/10.4018/IJHISI.2018010105 +Steven Walczak,An Artificial Neural Network Classification of Prescription Nonadherence.,2017,12,IJHISI,1,db/journals/ijhisi/ijhisi12.html#WalczakO17,https://doi.org/10.4018/IJHISI.2017010101 +Dickson K. W. Chiu,Alerts in Healthcare Applications: Process and Data Integration.,2009,4,IJHISI,2,db/journals/ijhisi/ijhisi4.html#ChiuKWKCKH09,https://doi.org/10.4018/jhisi.2009040103 +Rui Rijo,Multiple Approaches to the Diagnosis of Attention Deficit Hyperactivity Disorder.,2013,8,IJHISI,4,db/journals/ijhisi/ijhisi8.html#RijoMG13,https://doi.org/10.4018/ijhisi.2013100104 +Viju Raghupathi,Exploring the Relationship between ICTs and Public Health at Country Level: A Health Analytics Approach.,2013,8,IJHISI,3,db/journals/ijhisi/ijhisi8.html#RaghupathiR13,https://doi.org/10.4018/jhisi.2013070101 +Rajasvaran Logeswaran,Load Balancing Algorithms in Distributed Service Architectures for Medical Applications.,2010,5,IJHISI,1,db/journals/ijhisi/ijhisi5.html#LogeswaranC10,https://doi.org/10.4018/jhisi.2010110305 +Ahmad Al-Khasawneh,A Method for Classification Using Data Mining Technique for Diabetes: A Study of Health Care Information System.,2015,10,IJHISI,3,db/journals/ijhisi/ijhisi10.html#Al-Khasawneh15,https://doi.org/10.4018/IJHISI.2015070101 +Farzad Jahedi,A Novel Graphical-Oriented Framework for Capturing Data within Clinical Information Systems.,2013,8,IJHISI,2,db/journals/ijhisi/ijhisi8.html#JahediMA13,https://doi.org/10.4018/jhisi.2013040103 +Rennie Naidoo,Exploring the Social Dynamics of Implementing Self-Managed Web-Based Wellness Tools: A Structuration Analysis.,2012,7,IJHISI,4,db/journals/ijhisi/ijhisi7.html#Naidoo12,https://doi.org/10.4018/jhisi.2012100102 +Ding Xiong,An Athletic Training Analysis System Research Based on Physiological Computation.,2018,13,IJHISI,2,db/journals/ijhisi/ijhisi13.html#XiongYQ18,https://doi.org/10.4018/IJHISI.2018040104 +Mana Tarjoman,A Content-Based Approach to Medical Images Retrieval.,2013,8,IJHISI,2,db/journals/ijhisi/ijhisi8.html#TarjomanFB13,https://doi.org/10.4018/jhisi.2013040102 +Peter A. Lichtenberg,Enhancing Cognitive Screening in Geriatric Care: Use of an Internet-Based System.,2006,1,IJHISI,3,db/journals/ijhisi/ijhisi1.html#LichtenbergJEKMIBW06,https://doi.org/10.4018/jhisi.2006070103 +Aman Singh,An Efficient Diagnosis System for Detection of Liver Disease Using a Novel Integrated Method Based on Principal Component Analysis and K-Nearest Neighbor (PCA-KNN).,2016,11,IJHISI,4,db/journals/ijhisi/ijhisi11.html#SinghP16a,https://doi.org/10.4018/IJHISI.2016100103 +Michael Dohan,Lose It!,2011,6,IJHISI,2,db/journals/ijhisi/ijhisi6.html#DohanT11,https://doi.org/10.4018/jhisi.2011040105 +Peter Hoonakker,Development and Psychometric Qualities of the SEIPS Survey to Evaluate CPOE/EHR Implementation in ICUs.,2011,6,IJHISI,1,db/journals/ijhisi/ijhisi6.html#HoonakkerCCW11,https://doi.org/10.4018/jhisi.2011010104 +Jongtae Yu,Developing a User Centered Model for Ubiquitous Healthcare System Implementation: An Empirical Study.,2008,3,IJHISI,3,db/journals/ijhisi/ijhisi3.html#YuGK08,https://doi.org/10.4018/jhisi.2008070104 +Nilmini Wickramasinghe,A Transaction Cost Assessment of a Pervasive Technology Solution for Gestational Diabetes.,2011,6,IJHISI,4,db/journals/ijhisi/ijhisi6.html#WickramasingheTHHG11,https://doi.org/10.4018/jhisi.2011100104 +Stephan Kudyba,Informatics Application Challenges for Managed Care Organizations: The Three Faces of Population Segmentation and a Proposed Classification System.,2008,3,IJHISI,2,db/journals/ijhisi/ijhisi3.html#KudybaP08,https://doi.org/10.4018/jhisi.2008040103 +Alan C. Gillies,Information as Change Agent or Barrier in Health Care Reform?,2011,6,IJHISI,1,db/journals/ijhisi/ijhisi6.html#GilliesH11,https://doi.org/10.4018/jhisi.2011010102 +Ned Kock,Exploring Free Questionnaire Data with Anchor Variables: An Illustration Based on a Study of IT in Healthcare.,2012,7,IJHISI,1,db/journals/ijhisi/ijhisi7.html#KockV12,https://doi.org/10.4018/jhisi.2012010104 +Marion G. Sobol,Differences in Computer Usage of U.S. Group Medical Practices: 1994 vs. 2003.,2006,1,IJHISI,1,db/journals/ijhisi/ijhisi1.html#SobolP06,https://doi.org/10.4018/jhisi.2006010105 +Alireza Mirbagheri,Medical Robotics: State-of-the-Art Applications and Research Challenges.,2013,8,IJHISI,2,db/journals/ijhisi/ijhisi8.html#MirbagheriBFBA13,https://doi.org/10.4018/jhisi.2013040101 +Viju Raghupathi,An Unstructured Information Management Architecture Approach to Text Analytics of Cancer Blogs.,2014,9,IJHISI,2,db/journals/ijhisi/ijhisi9.html#RaghupathiR14,https://doi.org/10.4018/ijhisi.2014040102 +Therese Al Kareh,The Impact of Health Information Digitization on the Physiotherapist-Patient Relationship: A Pilot Study of the Lebanese Community.,2018,13,IJHISI,2,db/journals/ijhisi/ijhisi13.html#KarehT18,https://doi.org/10.4018/IJHISI.2018040103 +Carolyn McGregor,A Framework for the Design of Web Service Based Clinical Management Systems to Support Inter and Intra Organizational Patient Journeys.,2007,2,IJHISI,2,db/journals/ijhisi/ijhisi2.html#McGregor07,https://doi.org/10.4018/jhisi.2007040102 +Priscilla Arling,Improving the Implementation of Evidence-Based Practice and Information Systems in Healthcare: A Social Network Approach.,2011,6,IJHISI,2,db/journals/ijhisi/ijhisi6.html#ArlingDF11,https://doi.org/10.4018/jhisi.2011040104 +Evangelos Katsamakas,A Classification Analysis of the Success of Open Source Health Information Technology Projects.,2009,4,IJHISI,4,db/journals/ijhisi/ijhisi4.html#KatsamakasJRG09,https://doi.org/10.4018/jhisi.2009071002 +Farath N. Arshad,Improving Healthcare System Usability Without Real Users: A Semi-Parallel Design Approach.,2015,10,IJHISI,1,db/journals/ijhisi/ijhisi10.html#ArshadNWRT15,https://doi.org/10.4018/IJHISI.2015010104 +Shiu-chung Au,Gastrointestinal Motility Online Educational Endeavor.,2008,3,IJHISI,1,db/journals/ijhisi/ijhisi3.html#AuG08,https://doi.org/10.4018/jhisi.2008010102 +Mudasser F. Wyne,HIPAA Compliant HIS in J2EE Environment.,2007,2,IJHISI,4,db/journals/ijhisi/ijhisi2.html#WyneH07,https://doi.org/10.4018/jhisi.2007100105 +B. Gopinath,Classification of Thyroid Carcinoma in FNAB Cytological Microscopic Images.,2010,5,IJHISI,2,db/journals/ijhisi/ijhisi5.html#GopinathG10,https://doi.org/10.4018/jhisi.2010040107 +Elizabeth A. Regan,Realizing the Value of EHR Systems Critical Success Factors.,2016,11,IJHISI,3,db/journals/ijhisi/ijhisi11.html#ReganW16,https://doi.org/10.4018/IJHISI.2016070101 +Tsz-Wai (Iris) Lui,A Framework for Conceptualizing the Current Role and Future Trends of Information Systems in Medical Training.,2012,7,IJHISI,1,db/journals/ijhisi/ijhisi7.html#LuiG12,https://doi.org/10.4018/jhisi.2012010101 +George E. Heilman,Predicting Voluntary Participation in a Public Health Program Using a Neural Network.,2008,3,IJHISI,2,db/journals/ijhisi/ijhisi3.html#HeilmanCM08,https://doi.org/10.4018/jhisi.2008040101 +David Parry,Evaluation of a Fuzzy Ontology-Based Medical Information System.,2006,1,IJHISI,1,db/journals/ijhisi/ijhisi1.html#Parry06,https://doi.org/10.4018/jhisi.2006010103 +Stavros T. Ponis,Applying Discrete Event Simulation (DES) in Healthcare: The Case for Outpatient Facility Capacity Planning.,2013,8,IJHISI,3,db/journals/ijhisi/ijhisi8.html#PonisDGKT13,https://doi.org/10.4018/jhisi.2013070104 +Shobha Rekh,Implementation of an Error-Coding Scheme for Teleradiology System.,2006,1,IJHISI,4,db/journals/ijhisi/ijhisi1.html#RekhRCS06,https://doi.org/10.4018/jhisi.2006100102 +Maged N. Kamel Boulos,LiveWell - Promoting Healthy Living and Wellbeing for Parkinson Patients through Social Network and ICT Training: Lessons Learnt and Best Practices.,2015,10,IJHISI,3,db/journals/ijhisi/ijhisi10.html#BoulosIEZCCDMSG15,https://doi.org/10.4018/IJHISI.2015070102 +Sid Vatharkar,Factors Affecting Business and Information Technology Alignment at the Lower Levels of a Public Organisation.,2018,13,IJHISI,3,db/journals/ijhisi/ijhisi13.html#VatharkarGF18,https://doi.org/10.4018/IJHISI.2018070103 +Ali R. Montazemi,State of IS Integration in the Context of Patient-Centered Care: A Network Analysis and Research Directions.,2011,6,IJHISI,1,db/journals/ijhisi/ijhisi6.html#MontazemiPK11,https://doi.org/10.4018/jhisi.2011010101 +Joseph Tan,Non-Traditional Data Mining Applications in Taiwan National Health Insurance (NHI) Databases: A Hybrid Mining (HM) Case for the Framing of NHI Decisions.,2017,12,IJHISI,4,db/journals/ijhisi/ijhisi12.html#TanW17,https://doi.org/10.4018/IJHISI.2017100103 +Masoud Mohammadian,Intelligent Agent Framework for Secure Patient-Doctor Profiling and Profile Matching.,2008,3,IJHISI,3,db/journals/ijhisi/ijhisi3.html#MohammadianJ08,https://doi.org/10.4018/jhisi.2008070103 +Md. Rakibul Hoque,Factors Influencing Physicians' Acceptance of e-Health in Developing Country: An Empirical Study.,2016,11,IJHISI,1,db/journals/ijhisi/ijhisi11.html#HoqueAZ16,https://doi.org/10.4018/IJHISI.2016010104 +Michael J. Hine,Decision Making by Emergency Room Physicians and Residents: Implications for the Design of Clinical Decision Support Systems.,2009,4,IJHISI,2,db/journals/ijhisi/ijhisi4.html#HineFMW09,https://doi.org/10.4018/jhisi.2009040102 +álvaro Rocha,Evolution of Information Systems and Technologies Maturity in Healthcare.,2011,6,IJHISI,2,db/journals/ijhisi/ijhisi6.html#Rocha11,https://doi.org/10.4018/jhisi.2011040103 +Gilberto Munoz-Cornejo,An Empirical Investigation into the Adoption of Open Source Software in Hospitals.,2008,3,IJHISI,3,db/journals/ijhisi/ijhisi3.html#Munoz-CornejoSK08,https://doi.org/10.4018/jhisi.2008070102 +Valeria Hart,Hospital IT Sophistication Profiles and Patient Safety Outcomes: A Comparison of Three States.,2013,8,IJHISI,1,db/journals/ijhisi/ijhisi8.html#Hart13,https://doi.org/10.4018/jhisi.2013010102 +Steven Walczak,Nonparametric Decision Support Systems in Medical Diagnosis: Modeling Pulmonary Embolism.,2006,1,IJHISI,2,db/journals/ijhisi/ijhisi1.html#WalczakBL06,https://doi.org/10.4018/jhisi.2006040105 +Judy E. Scott,Models for Drone Delivery of Medications and Other Healthcare Items.,2018,13,IJHISI,3,db/journals/ijhisi/ijhisi13.html#ScottS18,https://doi.org/10.4018/IJHISI.2018070102 +Soumya De,Automated Text Detection and Recognition in Annotated Biomedical Publication Images.,2014,9,IJHISI,2,db/journals/ijhisi/ijhisi9.html#DeSCALT14,https://doi.org/10.4018/ijhisi.2014040103 +George Eisler,A Metric for Healthcare Technology Management (HCTM): E-Surveying Key Executives and Administrators of Canadian Teaching Hospitals.,2006,1,IJHISI,1,db/journals/ijhisi/ijhisi1.html#EislerTS06,https://doi.org/10.4018/jhisi.2006010101 +Pierre Michaud,Revisiting Clustered Microarchitecture for Future Superscalar Cores: A Case for Wide Issue Clusters.,2015,12,TACO,3,db/journals/taco/taco12.html#MichaudMS15,http://doi.acm.org/10.1145/2800787 +Kishore Kumar Pusukuri,Thread Tranquilizer: Dynamically reducing performance variation.,2012,8,TACO,4,db/journals/taco/taco8.html#PusukuriGB12,http://doi.acm.org/10.1145/2086696.2086725 +Amanieu D'Antras,Optimizing Indirect Branches in Dynamic Binary Translators.,2016,13,TACO,1,db/journals/taco/taco13.html#DAntrasGGL16,http://doi.acm.org/10.1145/2866573 +Chunhua Xiao,Stream arbitration: Towards efficient bandwidth utilization for emerging on-chip interconnects.,2013,9,TACO,4,db/journals/taco/taco9.html#XiaoCCGHLRW13,http://doi.acm.org/10.1145/2400682.2400719 +Yan Luo,Conserving network processor power consumption by exploiting traffic variability.,2007,4,TACO,1,db/journals/taco/taco4.html#LuoYYB07,http://doi.acm.org/10.1145/1216544.1216547 +Amit Golander,Hiding the misprediction penalty of a resource-efficient high-performance processor.,2008,4,TACO,4,db/journals/taco/taco4.html#GolanderW08,http://doi.acm.org/10.1145/1328195.1328201 +Tae Jun Ham,Decoupling Data Supply from Computation for Latency-Tolerant Communication in Heterogeneous Architectures.,2017,14,TACO,2,db/journals/taco/taco14.html#HamAM17,http://doi.acm.org/10.1145/3075620 +Chung-Hsiang Lin,SECRET: A Selective Error Correction Framework for Refresh Energy Reduction in DRAMs.,2015,12,TACO,2,db/journals/taco/taco12.html#LinSCYW15,http://doi.acm.org/10.1145/2747876 +Hong-Phuc Trinh,Efficient Data Encoding for Convolutional Neural Network application.,2014,11,TACO,4,db/journals/taco/taco11.html#TrinhDP14,http://doi.acm.org/10.1145/2685394 +Daniel Sánchez 0004,Modeling the impact of permanent faults in caches.,2013,10,TACO,4,db/journals/taco/taco10.html#SanchezSCGA13,http://doi.acm.org/10.1145/2541228.2541236 +Yuan-Shin Hwang,Snug set-associative caches: Reducing leakage power of instruction and data caches with no performance penalties.,2007,4,TACO,1,db/journals/taco/taco4.html#HwangL07,http://doi.acm.org/10.1145/1216544.1216549 +Daniel Sánchez 0003,An analysis of on-chip interconnection networks for large-scale chip multiprocessors.,2010,7,TACO,1,db/journals/taco/taco7.html#SanchezMK10,http://doi.acm.org/10.1145/1736065.1736069 +Julien Proy,Compiler-Assisted Loop Hardening Against Fault Attacks.,2017,14,TACO,4,db/journals/taco/taco14.html#ProyHBC17,http://doi.acm.org/10.1145/3141234 +Xiuyi Zhou,Performance-aware thermal management via task scheduling.,2010,7,TACO,1,db/journals/taco/taco7.html#ZhouYCZ10,http://doi.acm.org/10.1145/1736065.1736070 +Pavlos M. Mattheakis,Significantly reducing MPI intercommunication latency and power overhead in both embedded and HPC systems.,2013,9,TACO,4,db/journals/taco/taco9.html#MattheakisP13,http://doi.acm.org/10.1145/2400682.2400710 +Ruchira Sasanka,ALP: Efficient support for all levels of parallelism for complex media applications.,2007,4,TACO,1,db/journals/taco/taco4.html#SasankaLACD07,http://doi.acm.org/10.1145/1216544.1216546 +Heiner Litz,Efficient Correction of Anomalies in Snapshot Isolation Transactions.,2014,11,TACO,4,db/journals/taco/taco11.html#LitzDC14,http://doi.acm.org/10.1145/2693260 +Chuanjun Zhang,A way-halting cache for low-energy high-performance systems.,2005,2,TACO,1,db/journals/taco/taco2.html#ZhangVYN05,http://doi.acm.org/10.1145/1061267.1061270 +Gert-Jan van den Braak,R-GPU: A Reconfigurable GPU Architecture.,2016,13,TACO,1,db/journals/taco/taco13.html#BraakC16,http://doi.acm.org/10.1145/2890506 +Chen-Yong Cher,Exploring the effects of on-chip thermal variation on high-performance multicore architectures.,2011,8,TACO,1,db/journals/taco/taco8.html#CherK11,http://doi.acm.org/10.1145/1952998.1953000 +Guru Venkataramani,DeFT: Design space exploration for on-the-fly detection of coherence misses.,2011,8,TACO,2,db/journals/taco/taco8.html#VenkataramaniHKP11,http://doi.acm.org/10.1145/1970386.1970389 +Priya Nagpurkar,Efficient remote profiling for resource-constrained devices.,2006,3,TACO,1,db/journals/taco/taco3.html#NagpurkarMKS06,http://doi.acm.org/10.1145/1132462.1132465 +Yu Du,Delta-compressed caching for overcoming the write bandwidth limitation of hybrid main memory.,2013,9,TACO,4,db/journals/taco/taco9.html#DuZCMM13,http://doi.acm.org/10.1145/2400682.2400714 +Thejas Ramashekar,Automatic data allocation and buffer management for multi-GPU machines.,2013,10,TACO,4,db/journals/taco/taco10.html#RamashekarB13,http://doi.acm.org/10.1145/2544100 +Ajay Joshi,Distilling the essence of proprietary workloads into miniature benchmarks.,2008,5,TACO,2,db/journals/taco/taco5.html#JoshiEBJ08,http://doi.acm.org/10.1145/1400112.1400115 +Zheng Wang 0001,Using machine learning to partition streaming programs.,2013,10,TACO,3,db/journals/taco/taco10.html#WangO13,http://doi.acm.org/10.1145/2512436 +Gulay Yalcin,Exploiting Existing Comparators for Fine-Grained Low-Cost Error Detection.,2014,11,TACO,3,db/journals/taco/taco11.html#YalcinEIUC14,http://doi.acm.org/10.1145/2656341 +Timothy M. Jones 0001,Exploring the limits of early register release: Exploiting compiler analysis.,2009,6,TACO,3,db/journals/taco/taco6.html#JonesOAGE09,http://doi.acm.org/10.1145/1582710.1582714 +Mario Kicherer,Seamlessly portable applications: Managing the diversity of modern heterogeneous systems.,2012,8,TACO,4,db/journals/taco/taco8.html#KichererNBK12,http://doi.acm.org/10.1145/2086696.2086721 +Chuntao Jiang,Two-Level Hybrid Sampled Simulation of Multithreaded Applications.,2016,12,TACO,4,db/journals/taco/taco12.html#JiangYEJLX16,http://doi.acm.org/10.1145/2818353 +Grigorios Chrysos,HC-CART: A parallel system implementation of data mining classification and regression tree (CART) algorithm on a multi-FPGA system.,2013,9,TACO,4,db/journals/taco/taco9.html#ChrysosDPD13,http://doi.acm.org/10.1145/2400682.2400706 +Mojtaba Mehrara,Exploiting selective placement for low-cost memory protection.,2008,5,TACO,3,db/journals/taco/taco5.html#MehraraA08,http://doi.acm.org/10.1145/1455650.1455653 +Jonathan A. Winter,Addressing thermal nonuniformity in SMT workloads.,2008,5,TACO,1,db/journals/taco/taco5.html#WinterA08,http://doi.acm.org/10.1145/1369396.1369400 +Jian Li,Power-performance considerations of parallel computing on chip multiprocessors.,2005,2,TACO,4,db/journals/taco/taco2.html#LiM05,http://doi.acm.org/10.1145/1113841.1113844 +Hsing Min Chen,RATT-ECC: Rate Adaptive Two-Tiered Error Correction Codes for Reliable 3D Die-Stacked Memory.,2016,13,TACO,3,db/journals/taco/taco13.html#ChenWMC16,http://doi.acm.org/10.1145/2957758 +Cosmin Gorgovan,MAMBO: A Low-Overhead Dynamic Binary Modification Tool for ARM.,2016,13,TACO,1,db/journals/taco/taco13.html#GorgovanDL16,http://doi.acm.org/10.1145/2896451 +Mehmet Can Kurt,User-Assisted Store Recycling for Dynamic Task Graph Schedulers.,2016,13,TACO,4,db/journals/taco/taco13.html#KurtKAR16,http://doi.acm.org/10.1145/3018111 +Christoph Kerschbaumer,Information flow tracking meets just-in-time compilation.,2013,10,TACO,4,db/journals/taco/taco10.html#KerschbaumerHLBF13,http://doi.acm.org/10.1145/2541228.2555295 +Matteo Ferroni,Power Consumption Models for Multi-Tenant Server Infrastructures.,2017,14,TACO,4,db/journals/taco/taco14.html#FerroniCDBCHKS17,http://doi.acm.org/10.1145/3148965 +Davide Zoni,DarkCache: Energy-Performance Optimization of Tiled Multi-Cores by Adaptively Power-Gating LLC Banks.,2018,15,TACO,2,db/journals/taco/taco15.html#ZoniCF18,http://doi.acm.org/10.1145/3186895 +Raghuraman Balasubramanian,Enabling GPGPU Low-Level Hardware Explorations with MIAOW: An Open-Source RTL Implementation of a GPGPU.,2015,12,TACO,2,db/journals/taco/taco12.html#Balasubramanian15,http://doi.acm.org/10.1145/2764908 +Seyed Majid Zahedi,Managing Heterogeneous Datacenters with Tokens.,2018,15,TACO,2,db/journals/taco/taco15.html#ZahediFL18,http://doi.acm.org/10.1145/3191821 +Alberto Scolari,A Software Cache Partitioning System for Hash-Based Caches.,2016,13,TACO,4,db/journals/taco/taco13.html#ScolariBS16,http://doi.acm.org/10.1145/3018113 +Jianjun Li,Efficient and effective misaligned data access handling in a dynamic binary translation system.,2011,8,TACO,2,db/journals/taco/taco8.html#LiWH11,http://doi.acm.org/10.1145/1970386.1970388 +Prashant J. Nair,Citadel: Efficiently Protecting Stacked Memory from TSV and Large Granularity Failures.,2016,12,TACO,4,db/journals/taco/taco12.html#NairRQ16a,http://doi.acm.org/10.1145/2840807 +Kim M. Hazelwood,Managing bounded code caches in dynamic binary optimization systems.,2006,3,TACO,3,db/journals/taco/taco3.html#HazelwoodS06,http://doi.acm.org/10.1145/1162690.1162692 +Pablo de Oliveira Castro,CERE: LLVM-Based Codelet Extractor and REplayer for Piecewise Benchmarking and Optimization.,2015,12,TACO,1,db/journals/taco/taco12.html#CastroAPPJ15,http://doi.acm.org/10.1145/2724717 +Yulong Ao,Performance Optimization of the HPCG Benchmark on the Sunway TaihuLight Supercomputer.,2018,15,TACO,1,db/journals/taco/taco15.html#AoYLYJS18,http://doi.acm.org/10.1145/3182177 +Huimin Cui,Extendable pattern-oriented optimization directives.,2012,9,TACO,3,db/journals/taco/taco9.html#CuiXWYFF12,http://doi.acm.org/10.1145/2355585.2355587 +Pengcheng Li,LD: Low-Overhead GPU Race Detection Without Access Monitoring.,2017,14,TACO,1,db/journals/taco/taco14.html#LiHCBLZD17,http://doi.acm.org/10.1145/3046678 +Karthik Sangaiah,SynchroTrace: Synchronization-Aware Architecture-Agnostic Traces for Lightweight Multicore Simulation of CMP and HPC Workloads.,2018,15,TACO,1,db/journals/taco/taco15.html#SangaiahLJDNMTH18,http://doi.acm.org/10.1145/3158642 +Shiwen Hu,Effective management of multiple configurable units using dynamic optimization.,2006,3,TACO,4,db/journals/taco/taco3.html#HuVJ06,http://doi.acm.org/10.1145/1187976.1187981 +Alexandra Angerd,A Framework for Automated and Controlled Floating-Point Accuracy Reduction in Graphics Applications on GPUs.,2017,14,TACO,4,db/journals/taco/taco14.html#AngerdSS17,http://doi.acm.org/10.1145/3151032 +Ahmad Anbar,Exploiting Hierarchical Locality in Deep Parallel Architectures.,2016,13,TACO,2,db/journals/taco/taco13.html#AnbarSKBE16,http://doi.acm.org/10.1145/2897783 +Vishwesh Jatala,Scratchpad Sharing in GPUs.,2017,14,TACO,2,db/journals/taco/taco14.html#JatalaAK17,http://doi.acm.org/10.1145/3075619 +Christian Andreetta,FinPar: A Parallel Financial Benchmark.,2016,13,TACO,2,db/journals/taco/taco13.html#AndreettaBBEHHN16,http://doi.acm.org/10.1145/2898354 +Dan He,Improving Hybrid FTL by Fully Exploiting Internal SSD Parallelism with Virtual Blocks.,2014,11,TACO,4,db/journals/taco/taco11.html#HeWJFLTZ14,http://doi.acm.org/10.1145/2677160 +Dong Hyuk Woo,Chameleon: Virtualizing idle acceleration cores of a heterogeneous multicore processor for caching and prefetching.,2010,7,TACO,1,db/journals/taco/taco7.html#WooFKL10,http://doi.acm.org/10.1145/1736065.1736068 +Jung Ho Ahn,Scalable high-radix router microarchitecture using a network switch organization.,2013,10,TACO,3,db/journals/taco/taco10.html#AhnSK13,http://doi.acm.org/10.1145/2512433 +Mingzhou Zhou,Examining and Reducing the Influence of Sampling Errors on Feedback-Driven Optimizations.,2016,13,TACO,1,db/journals/taco/taco13.html#ZhouWSGY16,http://doi.acm.org/10.1145/2851502 +Abdul Rahman Kaitoua,Hadoop Extensions for Distributed Computing on Reconfigurable Active SSD Clusters.,2014,11,TACO,2,db/journals/taco/taco11.html#KaitouaHSAAASM14,http://doi.acm.org/10.1145/2608199 +Kevin Stock,Using machine learning to improve automatic vectorization.,2012,8,TACO,4,db/journals/taco/taco8.html#StockPS12,http://doi.acm.org/10.1145/2086696.2086729 +Wenlei Bao,Static and Dynamic Frequency Scaling on Multicore CPUs.,2016,13,TACO,4,db/journals/taco/taco13.html#BaoHCKPRS16,http://doi.acm.org/10.1145/3011017 +Cecilia González-Alvarez,Accelerating an application domain with specialized functional units.,2013,10,TACO,4,db/journals/taco/taco10.html#Gonzalez-AlvarezSAJE13,http://doi.acm.org/10.1145/2541228.2555303 +Olivier Serres,Enabling PGAS Productivity with Hardware Support for Shared Address Mapping: A UPC Case Study.,2016,12,TACO,4,db/journals/taco/taco12.html#SerresKAE16,http://doi.acm.org/10.1145/2842686 +Christian Wimmer,Automatic feedback-directed object fusing.,2010,7,TACO,2,db/journals/taco/taco7.html#WimmerM10,http://doi.acm.org/10.1145/1839667.1839669 +Stephen Dolan,Compiler support for lightweight context switching.,2013,9,TACO,4,db/journals/taco/taco9.html#DolanMG13,http://doi.acm.org/10.1145/2400682.2400695 +Antonio García-Guirado,DAPSCO: Distance-aware partially shared cache organization.,2012,8,TACO,4,db/journals/taco/taco8.html#Garcia-GuiradoPRG12,http://doi.acm.org/10.1145/2086696.2086704 +Amir Yazdanbakhsh,RFVP: Rollback-Free Value Prediction with Safe-to-Approximate Loads.,2016,12,TACO,4,db/journals/taco/taco12.html#YazdanbakhshPTE16,http://doi.acm.org/10.1145/2836168 +Nathanaël Prémillieu,Efficient Out-of-Order Execution of Guarded ISAs.,2014,11,TACO,4,db/journals/taco/taco11.html#PremillieuS14,http://doi.acm.org/10.1145/2677037 +Tanima Dey,ReSense: Mapping dynamic workloads of colocated multithreaded applications using resource sensitivity.,2013,10,TACO,4,db/journals/taco/taco10.html#DeyWDS13,http://doi.acm.org/10.1145/2541228.2555298 +Brad Calder,Editorial.,2008,5,TACO,1,db/journals/taco/taco5.html#CalderT08,http://doi.acm.org/10.1145/1369396.1369397 +María Jesús Garzarán,Tradeoffs in buffering speculative memory state for thread-level speculation in multiprocessors.,2005,2,TACO,3,db/journals/taco/taco2.html#GarzaranPLVRT05,http://doi.acm.org/10.1145/1089008.1089010 +Tomi äijö,Integer Linear Programming-Based Scheduling for Transport Triggered Architectures.,2016,12,TACO,4,db/journals/taco/taco12.html#AijoJEKT16,http://doi.acm.org/10.1145/2845082 +Yuanwu Lei,VLIW coprocessor for IEEE-754 quadruple-precision elementary functions.,2013,10,TACO,3,db/journals/taco/taco10.html#LeiDGXZDL13,http://doi.acm.org/10.1145/2512430 +Chencheng Ye,Cache Exclusivity and Sharing: Theory and Optimization.,2017,14,TACO,4,db/journals/taco/taco14.html#YeDLBCJ17,http://doi.acm.org/10.1145/3134437 +Jue Wang,Preventing STT-RAM Last-Level Caches from Port Obstruction.,2014,11,TACO,3,db/journals/taco/taco11.html#WangD014,http://doi.acm.org/10.1145/2633046 +Gülfem Savrun-Yeniçeri,Efficient hosted interpreters on the JVM.,2014,11,TACO,1,db/journals/taco/taco11.html#Savrun-YeniceriZZSLBLF14,http://doi.acm.org/10.1145/2532642 +Amir Morad,GP-SIMD Processing-in-Memory.,2014,11,TACO,4,db/journals/taco/taco11.html#MoradYG14,http://doi.acm.org/10.1145/2686875 +Zhong-Ho Chen,A hardware/software framework for instruction and data scratchpad memory allocation.,2010,7,TACO,1,db/journals/taco/taco7.html#ChenS10,http://doi.acm.org/10.1145/1736065.1736067 +Daniel A. Jiménez,Generalizing neural branch prediction.,2009,5,TACO,4,db/journals/taco/taco5.html#Jimenez09,http://doi.acm.org/10.1145/1498690.1498692 +Naghmeh Karimi,MAGIC: Malicious Aging in Circuits/Cores.,2015,12,TACO,1,db/journals/taco/taco12.html#KarimiKWSK15,http://doi.acm.org/10.1145/2724718 +Lev Mukhanov,ALEA: A Fine-Grained Energy Profiling Tool.,2017,14,TACO,1,db/journals/taco/taco14.html#MukhanovPWPNSL17,http://doi.acm.org/10.1145/3050436 +Tao Li,Adapting branch-target buffer to improve the target predictability of java code.,2005,2,TACO,2,db/journals/taco/taco2.html#LiBJ05,http://doi.acm.org/10.1145/1071604.1071605 +Guru Venkataramani,MemTracker: An accelerator for memory debugging and monitoring.,2009,6,TACO,2,db/journals/taco/taco6.html#VenkataramaniDSP09,http://doi.acm.org/10.1145/1543753.1543754 +Qin Zhao,PiPA: Pipelined profiling and analysis on multicore systems.,2010,7,TACO,3,db/journals/taco/taco7.html#ZhaoCW10,http://doi.acm.org/10.1145/1880037.1880038 +Andrés Goens,Symmetry in Software Synthesis.,2017,14,TACO,2,db/journals/taco/taco14.html#GoensSC17,http://doi.acm.org/10.1145/3095747 +Fabien Coelho,API compilation for image hardware accelerators.,2013,9,TACO,4,db/journals/taco/taco9.html#CoelhoI13,http://doi.acm.org/10.1145/2400682.2400708 +Wankang Zhao,Improving WCET by applying a WC code-positioning optimization.,2005,2,TACO,4,db/journals/taco/taco2.html#ZhaoWHM05,http://doi.acm.org/10.1145/1113841.1113842 +Bartosz Bogdanski,sFtree: A fully connected and deadlock-free switch-to-switch routing algorithm for fat-trees.,2012,8,TACO,4,db/journals/taco/taco8.html#BogdanskiRSG12,http://doi.acm.org/10.1145/2086696.2086734 +Hans Vandierendonck,Analysis of dependence tracking algorithms for task dataflow execution.,2013,10,TACO,4,db/journals/taco/taco10.html#VandierendonckTN13,http://doi.acm.org/10.1145/2541228.2555316 +Qixiao Liu,Hardware support for accurate per-task energy metering in multicore systems.,2013,10,TACO,4,db/journals/taco/taco10.html#LiuMJACV13,http://doi.acm.org/10.1145/2541228.2555291 +Boubacar Diouf,A decoupled local memory allocator.,2013,9,TACO,4,db/journals/taco/taco9.html#DioufHCOP13,http://doi.acm.org/10.1145/2400682.2400693 +Kristof Du Bois,Per-thread cycle accounting in multicore processors.,2013,9,TACO,4,db/journals/taco/taco9.html#BoisEE13,http://doi.acm.org/10.1145/2400682.2400688 +Brad Calder,Introduction.,2004,1,TACO,1,db/journals/taco/taco1.html#CalderT04,http://doi.acm.org/10.1145/980152.980153 +Prasad A. Kulkarni,Fast and efficient searches for effective optimization-phase sequences.,2005,2,TACO,2,db/journals/taco/taco2.html#KulkarniHWHDJ05,http://doi.acm.org/10.1145/1071604.1071607 +Pierre Michaud,A study of thread migration in temperature-constrained multicores.,2007,4,TACO,2,db/journals/taco/taco4.html#MichaudSFSC07,http://doi.acm.org/10.1145/1250727.1250729 +George Patsilaras,ReDirect: Reconfigurable Directories for Multicore Architectures.,2017,14,TACO,4,db/journals/taco/taco14.html#PatsilarasT17,http://doi.acm.org/10.1145/3162015 +Junwhan Ahn,AIM: Energy-Efficient Aggregation Inside the Memory Hierarchy.,2016,13,TACO,4,db/journals/taco/taco13.html#AhnYC16,http://doi.acm.org/10.1145/2994149 +Sriraman Tallam,Unified control flow and data dependence traces.,2007,4,TACO,3,db/journals/taco/taco4.html#TallamG07,http://doi.acm.org/10.1145/1275937.1275943 +Mihai Pricopi,Bahurupi: A polymorphic heterogeneous multi-core architecture.,2012,8,TACO,4,db/journals/taco/taco8.html#PricopiM12,http://doi.acm.org/10.1145/2086696.2086701 +Jongwon Lee,Dynamic code duplication with vulnerability awareness for soft error detection on VLIW architectures.,2013,9,TACO,4,db/journals/taco/taco9.html#LeeKLYP13,http://doi.acm.org/10.1145/2400682.2400707 +Lukasz Strozek,Energy- and area-efficient architectures through application clustering and architectural heterogeneity.,2009,6,TACO,1,db/journals/taco/taco6.html#StrozekB09,http://doi.acm.org/10.1145/1509864.1509868 +Yuanyuan Zhou,Efficient and flexible architectural support for dynamic monitoring.,2005,2,TACO,1,db/journals/taco/taco2.html#ZhouZQLT05,http://doi.acm.org/10.1145/1061267.1061269 +Davide B. Bartolini,Automated Fine-Grained CPU Provisioning for Virtual Machines.,2014,11,TACO,3,db/journals/taco/taco11.html#BartoliniSSS14,http://doi.acm.org/10.1145/2637480 +Vijay Janapa Reddi,Eliminating voltage emergencies via software-guided code transformations.,2010,7,TACO,2,db/journals/taco/taco7.html#ReddiCGSWBH10,http://doi.acm.org/10.1145/1839667.1839674 +Yi Yang,A unified optimizing compiler framework for different GPGPU architectures.,2012,9,TACO,2,db/journals/taco/taco9.html#YangXKMZ12,http://doi.acm.org/10.1145/2207222.2207225 +Andrew J. McPherson,Fence Placement for Legacy Data-Race-Free Programs via Synchronization Read Detection.,2016,12,TACO,4,db/journals/taco/taco12.html#McPhersonNSC16,http://doi.acm.org/10.1145/2835179 +Wenhao Jia,GPU Performance and Power Tuning Using Regression Trees.,2015,12,TACO,2,db/journals/taco/taco12.html#JiaGSM15,http://doi.acm.org/10.1145/2736287 +Milan Stanic,An Integrated Vector-Scalar Design on an In-Order ARM Core.,2017,14,TACO,2,db/journals/taco/taco14.html#StanicPHRCUV17,http://doi.acm.org/10.1145/3075618 +Lihang Zhao,A Filtering Mechanism to Reduce Network Bandwidth Utilization of Transaction Execution.,2016,12,TACO,4,db/journals/taco/taco12.html#ZhaoCCD16,http://doi.acm.org/10.1145/2837028 +Yangchun Luo,The design and implementation of heterogeneous multicore systems for energy-efficient speculative thread execution.,2013,10,TACO,4,db/journals/taco/taco10.html#LuoHZ13,http://doi.acm.org/10.1145/2541228.2541233 +Bart Coppens,Feedback-driven binary code diversification.,2013,9,TACO,4,db/journals/taco/taco9.html#CoppensSM13,http://doi.acm.org/10.1145/2400682.2400683 +Martin Kong,Compiler/Runtime Framework for Dynamic Dataflow Parallelization of Tiled Programs.,2014,11,TACO,4,db/journals/taco/taco11.html#KongPPGCS14,http://doi.acm.org/10.1145/2687652 +Adrià Armejach,Techniques to improve performance in requester-wins hardware transactional memory.,2013,10,TACO,4,db/journals/taco/taco10.html#ArmejachGNUC13,http://doi.acm.org/10.1145/2541228.2555299 +Brad Calder,Introduction.,2007,4,TACO,1,db/journals/taco/taco4.html#CalderT07,http://doi.acm.org/10.1145/1216544.1229348 +Kuan-Chung Chen,Enabling SIMT Execution Model on Homogeneous Multi-Core System.,2018,15,TACO,1,db/journals/taco/taco15.html#ChenC18,http://doi.acm.org/10.1145/3177960 +Tom M. Bruintjes,Sabrewing: A lightweight architecture for combined floating-point and integer arithmetic.,2012,8,TACO,4,db/journals/taco/taco8.html#BruintjesWGMS12,http://doi.acm.org/10.1145/2086696.2086720 +Leonid Domnitser,Non-monopolizable caches: Low-complexity mitigation of cache side channel attacks.,2012,8,TACO,4,db/journals/taco/taco8.html#DomnitserJLAP12,http://doi.acm.org/10.1145/2086696.2086714 +V. Krishna Nandivada,Improved bitwidth-aware variable packing.,2013,10,TACO,3,db/journals/taco/taco10.html#NandivadaB13,http://doi.acm.org/10.1145/2509420.2509427 +Saurabh Sharma,Spectral prefetcher: An effective mechanism for L2 cache prefetching.,2005,2,TACO,4,db/journals/taco/taco2.html#SharmaBC05,http://doi.acm.org/10.1145/1113841.1113845 +Timothy M. Jones 0001,Energy-efficient register caching with compiler assistance.,2009,6,TACO,4,db/journals/taco/taco6.html#JonesOAGE09a,http://doi.acm.org/10.1145/1596510.1596511 +Jun Yan 0008,Exploiting virtual registers to reduce pressure on real registers.,2008,4,TACO,4,db/journals/taco/taco4.html#YanZ08,http://doi.acm.org/10.1145/1328195.1328198 +Theo Kluter,Virtual Ways: Low-Cost Coherence for Instruction Set Extensions with Architecturally Visible Storage.,2014,11,TACO,2,db/journals/taco/taco11.html#KluterBBCI14,http://doi.acm.org/10.1145/2576877 +Michael R. Jantz,Exploring single and multilevel JIT compilation policy for modern machines.,2013,10,TACO,4,db/journals/taco/taco10.html#JantzK13,http://doi.acm.org/10.1145/2541228.2541229 +Yunhe Shi,Virtual machine showdown: Stack versus registers.,2008,4,TACO,4,db/journals/taco/taco4.html#ShiCEG08,http://doi.acm.org/10.1145/1328195.1328197 +Ali Galip Bayrak,An architecture-independent instruction shuffler to protect against side-channel attacks.,2012,8,TACO,4,db/journals/taco/taco8.html#BayrakVIB12,http://doi.acm.org/10.1145/2086696.2086699 +Rong Chen 0001,Tiled-MapReduce: Efficient and Flexible MapReduce Processing on Multicore with Tiling.,2013,10,TACO,1,db/journals/taco/taco10.html#ChenC13,http://doi.acm.org/10.1145/2445572.2445575 +Andrei Terechko,Inter-cluster communication in VLIW architectures.,2007,4,TACO,2,db/journals/taco/taco4.html#TerechkoC07,http://doi.acm.org/10.1145/1250727.1250731 +Allan Hartstein,The optimum pipeline depth considering both power and performance.,2004,1,TACO,4,db/journals/taco/taco1.html#HartsteinP04,http://doi.acm.org/10.1145/1044823.1044824 +Hongbo Rong,Single-dimension software pipelining for multidimensional loops.,2007,4,TACO,1,db/journals/taco/taco4.html#RongTGDG07,http://doi.acm.org/10.1145/1216544.1216550 +Jorge Albericio,ABS: A low-cost adaptive controller for prefetching in a banked shared last-level cache.,2012,8,TACO,4,db/journals/taco/taco8.html#AlbericioTIVL12,http://doi.acm.org/10.1145/2086696.2086698 +Amir Kavyan Ziabari,UMH: A Hardware-Based Unified Memory Hierarchy for Systems with Multiple Discrete GPUs.,2016,13,TACO,4,db/journals/taco/taco13.html#ZiabariSMSAUKJK16,http://doi.acm.org/10.1145/2996190 +Tao Zhang,Buddy SM: Sharing Pipeline Front-End for Improved Energy Efficiency in GPGPUs.,2015,12,TACO,2,db/journals/taco/taco12.html#ZhangJJSWL15,http://doi.acm.org/10.1145/2744202 +Huimin Cui,Layout-oblivious compiler optimization for matrix computations.,2013,9,TACO,4,db/journals/taco/taco9.html#CuiYXF13,http://doi.acm.org/10.1145/2400682.2400694 +Esther Salamí,Dynamic memory interval test vs. interprocedural pointer analysis in multimedia applications.,2005,2,TACO,2,db/journals/taco/taco2.html#SalamiV05,http://doi.acm.org/10.1145/1071604.1071608 +Muhammad Waqar Azhar,SLOOP: QoS-Supervised Loop Execution to Reduce Energy on Heterogeneous Architectures.,2017,14,TACO,4,db/journals/taco/taco14.html#AzharSP17,http://doi.acm.org/10.1145/3148053 +Gabriel Rodríguez 0001,Volatile STT-RAM Scratchpad Design and Data Allocation for Low Energy.,2014,11,TACO,4,db/journals/taco/taco11.html#RodriguezTK14,http://doi.acm.org/10.1145/2669556 +Stefan Ganser,Iterative Schedule Optimization for Parallelization in the Polyhedron Model.,2017,14,TACO,3,db/journals/taco/taco14.html#GanserGSAL17,http://doi.acm.org/10.1145/3109482 +Lei Liu,BPM/BPM+: Software-based dynamic memory partitioning mechanisms for mitigating DRAM bank-/channel-level interferences in multicore systems.,2014,11,TACO,1,db/journals/taco/taco11.html#LiuCLBCW14,http://doi.acm.org/10.1145/2579672 +Bor-Yeh Shen,A Retargetable Static Binary Translator for the ARM Architecture.,2014,11,TACO,2,db/journals/taco/taco11.html#ShenHY14,http://doi.acm.org/10.1145/2629335 +Kypros Constantinides,Architecting a reliable CMP switch architecture.,2007,4,TACO,1,db/journals/taco/taco4.html#ConstantinidesPBBMAZO07,http://doi.acm.org/10.1145/1216544.1216545 +Jeroen V. Cleemput,Compiler mitigations for time attacks on modern x86 processors.,2012,8,TACO,4,db/journals/taco/taco8.html#CleemputCS12,http://doi.acm.org/10.1145/2086696.2086702 +Jue Wang,Building and Optimizing MRAM-Based Commodity Memories.,2014,11,TACO,4,db/journals/taco/taco11.html#WangD014a,http://doi.acm.org/10.1145/2667105 +Joseph J. Sharkey,Instruction packing: Toward fast and energy-efficient instruction scheduling.,2006,3,TACO,2,db/journals/taco/taco3.html#SharkeyPGE06,http://doi.acm.org/10.1145/1138035.1138037 +Benoît Pradelle,Polyhedral parallelization of binary code.,2012,8,TACO,4,db/journals/taco/taco8.html#PradelleKC12,http://doi.acm.org/10.1145/2086696.2086718 +Nicolas Weber,MATOG: Array Layout Auto-Tuning for CUDA.,2017,14,TACO,3,db/journals/taco/taco14.html#WeberG17,http://doi.acm.org/10.1145/3106341 +Miao Zhou,Symmetry-Agnostic Coordinated Management of the Memory Hierarchy in Multicore Systems.,2016,12,TACO,4,db/journals/taco/taco12.html#ZhouDCMM16,http://doi.acm.org/10.1145/2847254 +Christophe Dubach,Dynamic microarchitectural adaptation using machine learning.,2013,10,TACO,4,db/journals/taco/taco10.html#DubachJB13,http://doi.acm.org/10.1145/2541228.2541238 +Michele Tartara,Continuous learning of compiler heuristics.,2013,9,TACO,4,db/journals/taco/taco9.html#TartaraC13,http://doi.acm.org/10.1145/2400682.2400705 +Min Feng 0001,PLDS: Partitioning linked data structures for parallelism.,2012,8,TACO,4,db/journals/taco/taco8.html#FengLG12,http://doi.acm.org/10.1145/2086696.2086717 +Stijn Eyerman,Probabilistic modeling for job symbiosis scheduling on SMT processors.,2012,9,TACO,2,db/journals/taco/taco9.html#EyermanE12,http://doi.acm.org/10.1145/2207222.2207223 +Antoniu Pop,OpenStream: Expressiveness and data-flow compilation of OpenMP streaming programs.,2013,9,TACO,4,db/journals/taco/taco9.html#PopC13,http://doi.acm.org/10.1145/2400682.2400712 +Saumay Dublish,Cooperative Caching for GPUs.,2016,13,TACO,4,db/journals/taco/taco13.html#DublishNT16,http://doi.acm.org/10.1145/3001589 +Qingchuan Shi,LDAC: Locality-Aware Data Access Control for Large-Scale Multicore Cache Hierarchies.,2016,13,TACO,4,db/journals/taco/taco13.html#ShiKHDK16,http://doi.acm.org/10.1145/2983632 +Mingzhe Zhang,SIMPO: A Scalable In-Memory Persistent Object Framework Using NVRAM for Reliable Big Data Computing.,2018,15,TACO,1,db/journals/taco/taco15.html#ZhangLYW18,http://doi.acm.org/10.1145/3167972 +Shu Xiao,VLIW instruction scheduling for minimal power variation.,2007,4,TACO,3,db/journals/taco/taco4.html#XiaoL07,http://doi.acm.org/10.1145/1275937.1275942 +Walid J. Ghandour,Leveraging Strength-Based Dynamic Information Flow Analysis to Enhance Data Value Prediction.,2012,9,TACO,1,db/journals/taco/taco9.html#GhandourAM12,http://doi.acm.org/10.1145/2133382.2133383 +Yu Bai,A low-power in-order/out-of-order issue queue.,2004,1,TACO,2,db/journals/taco/taco1.html#BaiB04,http://doi.acm.org/10.1145/1011528.1011530 +George A. Reis,Software-controlled fault tolerance.,2005,2,TACO,4,db/journals/taco/taco2.html#ReisCVRAM05,http://doi.acm.org/10.1145/1113841.1113843 +Chao Wang 0003,MP-Tomasulo: A Dependency-Aware Automatic Parallel Execution Engine for Sequential Programs.,2013,10,TACO,2,db/journals/taco/taco10.html#WangLZZN13,http://doi.acm.org/10.1145/2459316.2459320 +Erik Tomusk,Four Metrics to Evaluate Heterogeneous Multicores.,2016,12,TACO,4,db/journals/taco/taco12.html#TomuskDO16,http://doi.acm.org/10.1145/2829950 +Kris Venstermans,Java object header elimination for reduced memory consumption in 64-bit virtual machines.,2007,4,TACO,3,db/journals/taco/taco4.html#VenstermansEB07,http://doi.acm.org/10.1145/1275937.1275941 +Sven Verdoolaege,Polyhedral parallel code generation for CUDA.,2013,9,TACO,4,db/journals/taco/taco9.html#VerdoolaegeJCGTC13,http://doi.acm.org/10.1145/2400682.2400713 +Erik Vermij,An Architecture for Integrated Near-Data Processors.,2017,14,TACO,3,db/journals/taco/taco14.html#VermijFJHLB17,http://doi.acm.org/10.1145/3127069 +Zhen Lin,GPU Performance vs. Thread-Level Parallelism: Scalability Analysis and a Novel Way to Improve TLP.,2018,15,TACO,1,db/journals/taco/taco15.html#LinMZ18,http://doi.acm.org/10.1145/3177964 +Marvin Damschen,Extending the WCET Problem to Optimize for Runtime-Reconfigurable Processors.,2016,13,TACO,4,db/journals/taco/taco13.html#DamschenBH16,http://doi.acm.org/10.1145/3014059 +Wenjia Ruan,Boosting *tamp-based transactional memory by exploiting hardware cycle counters.,2013,10,TACO,4,db/journals/taco/taco10.html#RuanLS13,http://doi.acm.org/10.1145/2541228.2555297 +Zhenjiang Wang,On-the-fly structure splitting for heap objects.,2012,8,TACO,4,db/journals/taco/taco8.html#WangWYLX12,http://doi.acm.org/10.1145/2086696.2086705 +John W. Haskins Jr.,Accelerated warmup for sampled microarchitecture simulation.,2005,2,TACO,1,db/journals/taco/taco2.html#HaskinsS05,http://doi.acm.org/10.1145/1061267.1061272 +Eri Rubin,MAPS: Optimizing Massively Parallel Applications Using Device-Level Memory Abstraction.,2014,11,TACO,4,db/journals/taco/taco11.html#RubinLBB14,http://doi.acm.org/10.1145/2680544 +Mark Gottscho,DPCS: Dynamic Power/Capacity Scaling for SRAM Caches in the Nanoscale Era.,2015,12,TACO,3,db/journals/taco/taco12.html#GottschoBDNG15,http://doi.acm.org/10.1145/2792982 +Yeoul Na,JavaScript Parallelizing Compiler for Exploiting Parallelism from Data-Parallel HTML5 Applications.,2016,12,TACO,4,db/journals/taco/taco12.html#NaKH16,http://doi.acm.org/10.1145/2846098 +Matthew Benjamin Olson,Cross-Layer Memory Management to Improve DRAM Energy Efficiency.,2018,15,TACO,2,db/journals/taco/taco15.html#OlsonTRJDK18,http://doi.acm.org/10.1145/3196886 +Betul Buyukkurt,Impact of high-level transformations within the ROCCC framework.,2010,7,TACO,4,db/journals/taco/taco7.html#BuyukkurtCVN10,http://doi.acm.org/10.1145/1880043.1880044 +Dongwoo Lee,Dirty-Block Tracking in a Direct-Mapped DRAM Cache with Self-Balancing Dispatch.,2017,14,TACO,2,db/journals/taco/taco14.html#LeeLRC17,http://doi.acm.org/10.1145/3068460 +Karthik Sankaranarayanan,Profile-based adaptation for cache decay.,2004,1,TACO,3,db/journals/taco/taco1.html#SankaranarayananS04,http://doi.acm.org/10.1145/1022969.1022972 +Andrei Hagiescu,GPU code generation for ODE-based applications with phased shared-data access patterns.,2013,10,TACO,4,db/journals/taco/taco10.html#Hagiescu0RPCCTW13,http://doi.acm.org/10.1145/2541228.2555311 +Etem Deniz,MINIME-GPU: Multicore Benchmark Synthesizer for GPUs.,2016,12,TACO,4,db/journals/taco/taco12.html#Deniz016,http://doi.acm.org/10.1145/2818693 +Alessandro Cilardo,Improving Multibank Memory Access Parallelism with Lattice-Based Partitioning.,2014,11,TACO,4,db/journals/taco/taco11.html#CilardoG14,http://doi.acm.org/10.1145/2675359 +Buse Yilmaz,Autotuning Runtime Specialization for Sparse Matrix-Vector Multiplication.,2016,13,TACO,1,db/journals/taco/taco13.html#YilmazAGKK16,http://doi.acm.org/10.1145/2851500 +Aravind Sukumaran-Rajam,The Polyhedral Model of Nonlinear Loops.,2016,12,TACO,4,db/journals/taco/taco12.html#Sukumaran-Rajam16,http://doi.acm.org/10.1145/2838734 +Philo Juang,Implementing branch-predictor decay using quasi-static memory cells.,2004,1,TACO,2,db/journals/taco/taco1.html#JuangSMHCDK04,http://doi.acm.org/10.1145/1011528.1011531 +Xiangyu Dong,A circuit-architecture co-optimization framework for exploring nonvolatile memory hierarchies.,2013,10,TACO,4,db/journals/taco/taco10.html#DongJX13,http://doi.acm.org/10.1145/2541228.2541230 +Ryan N. Rakvic,Thread-management techniques to maximize efficiency in multicore and simultaneous multithreaded microprocessors.,2010,7,TACO,2,db/journals/taco/taco7.html#RakvicCGMCG10,http://doi.acm.org/10.1145/1839667.1839671 +Michele Co,Evaluating trace cache energy efficiency.,2006,3,TACO,4,db/journals/taco/taco3.html#CoWS06,http://doi.acm.org/10.1145/1187976.1187980 +Jinho Suh,Dynamic MIPS Rate Stabilization for Complex Processors.,2015,12,TACO,1,db/journals/taco/taco12.html#SuhHD15,http://doi.acm.org/10.1145/2714575 +Weifeng Xu,Tetris-XL: A performance-driven spill reduction technique for embedded VLIW processors.,2009,6,TACO,3,db/journals/taco/taco6.html#XuT09,http://doi.acm.org/10.1145/1582710.1582713 +Li Tan,Scalable Energy Efficiency with Resilience for High Performance Computing Systems: A Quantitative Methodology.,2016,12,TACO,4,db/journals/taco/taco12.html#TanCS16,http://doi.acm.org/10.1145/2822893 +Kishore Kumar Pusukuri,ADAPT: A framework for coscheduling multithreaded programs.,2013,9,TACO,4,db/journals/taco/taco9.html#PusukuriGB13,http://doi.acm.org/10.1145/2400682.2400704 +Yangchun Luo,Dynamically dispatching speculative threads to improve sequential execution.,2012,9,TACO,3,db/journals/taco/taco9.html#LuoZ12,http://doi.acm.org/10.1145/2355585.2355586 +Jaime Arteaga,Generating Fine-Grain Multithreaded Applications Using a Multigrain Approach.,2017,14,TACO,4,db/journals/taco/taco14.html#ArteagaZG17,http://doi.acm.org/10.1145/3155288 +Junghee Lee,TornadoNoC: A lightweight and scalable on-chip network architecture for the many-core era.,2013,10,TACO,4,db/journals/taco/taco10.html#LeeNLK13,http://doi.acm.org/10.1145/2541228.2555312 +Kornilios Kourtis,Exploiting compression opportunities to improve SpMxV performance on shared memory systems.,2010,7,TACO,3,db/journals/taco/taco7.html#KourtisGK10,http://doi.acm.org/10.1145/1880037.1880041 +Lei Jiang 0001,Hardware-Assisted Cooperative Integration of Wear-Leveling and Salvaging for Phase Change Memory.,2013,10,TACO,2,db/journals/taco/taco10.html#JiangDZZCY13,http://doi.acm.org/10.1145/2459316.2459318 +Jimmy Cleary,Fast asymmetric thread synchronization.,2013,9,TACO,4,db/journals/taco/taco9.html#ClearyCPG13,http://doi.acm.org/10.1145/2400682.2400686 +Andreas Diavastos,SWITCHES: A Lightweight Runtime for Dataflow Execution of Tasks on Many-Cores.,2017,14,TACO,3,db/journals/taco/taco14.html#DiavastosT17,http://doi.acm.org/10.1145/3127068 +Rajshekar Kalayappan,FluidCheck: A Redundant Threading-Based Approach for Reliable Execution in Manycore Processors.,2016,12,TACO,4,db/journals/taco/taco12.html#KalayappanS16,http://doi.acm.org/10.1145/2842620 +Dorit Nuzman,JIT technology with C/C++: Feedback-directed dynamic recompilation for statically compiled languages.,2013,10,TACO,4,db/journals/taco/taco10.html#NuzmanEDZC13,http://doi.acm.org/10.1145/2541228.2555315 +Riyadh Baghdadi,Improved loop tiling based on the removal of spurious false dependences.,2013,9,TACO,4,db/journals/taco/taco9.html#BaghdadiCVT13,http://doi.acm.org/10.1145/2400682.2400711 +Chien-Chi Chen,An efficient multicharacter transition string-matching engine based on the aho-corasick algorithm.,2013,10,TACO,4,db/journals/taco/taco10.html#ChenW13,http://doi.acm.org/10.1145/2541228.2541232 +Amit Golander,Checkpoint allocation and release.,2009,6,TACO,3,db/journals/taco/taco6.html#GolanderW09,http://doi.acm.org/10.1145/1582710.1582712 +Samuel Antao,The CRNS framework and its application to programmable and reconfigurable cryptography.,2013,9,TACO,4,db/journals/taco/taco9.html#AntaoS13,http://doi.acm.org/10.1145/2400682.2400692 +Rathijit Sen,Pareto Governors for Energy-Optimal Computing.,2017,14,TACO,1,db/journals/taco/taco14.html#SenW17,http://doi.acm.org/10.1145/3046682 +Jinseong Jeon,Abstracting access patterns of dynamic memory using regular expressions.,2009,5,TACO,4,db/journals/taco/taco5.html#JeonSH09,http://doi.acm.org/10.1145/1498690.1498693 +Beayna Grigorian,Accelerating Divergent Applications on SIMD Architectures Using Neural Networks.,2015,12,TACO,1,db/journals/taco/taco12.html#GrigorianR15,http://doi.acm.org/10.1145/2717311 +Tom Spink,Hardware-Accelerated Cross-Architecture Full-System Virtualization.,2016,13,TACO,4,db/journals/taco/taco13.html#SpinkWF16,http://doi.acm.org/10.1145/2996798 +Rakesh Komuravelli,Revisiting the Complexity of Hardware Cache Coherence and Some Implications.,2014,11,TACO,4,db/journals/taco/taco11.html#KomuravelliAC14,http://doi.acm.org/10.1145/2663345 +Jin Lin,A compiler framework for speculative optimizations.,2004,1,TACO,3,db/journals/taco/taco1.html#LinCHYJNC04,http://doi.acm.org/10.1145/1022969.1022970 +Yan Cui,Lock-contention-aware scheduler: A scalable and energy-efficient method for addressing scalability collapse on multicore systems.,2013,9,TACO,4,db/journals/taco/taco9.html#CuiWCS13,http://doi.acm.org/10.1145/2400682.2400703 +,TACO Reviewers 2012.,2013,10,TACO,3,db/journals/taco/taco10.html#X13,http://doi.acm.org/10.1145/2509420.2509421 +Christophe Alias,Optimizing Affine Control With Semantic Factorizations.,2017,14,TACO,4,db/journals/taco/taco14.html#AliasP17,http://doi.acm.org/10.1145/3162017 +Nathanaël Prémillieu,SYRANT: SYmmetric resource allocation on not-taken and taken paths.,2012,8,TACO,4,db/journals/taco/taco8.html#PremillieuS12,http://doi.acm.org/10.1145/2086696.2086722 +Ahsen Ejaz,DDRNoC: Dual Data-Rate Network-on-Chip.,2018,15,TACO,2,db/journals/taco/taco15.html#EjazPS18,http://doi.acm.org/10.1145/3200201 +Morteza Mohajjel Kafshdooz,A Compile-Time Optimization Method for WCET Reduction in Real-Time Embedded Systems through Block Formation.,2016,12,TACO,4,db/journals/taco/taco12.html#KafshdoozTAE16,http://doi.acm.org/10.1145/2845083 +Xiaohang Wang,A power-aware mapping approach to map IP cores onto NoCs under bandwidth and latency constraints.,2010,7,TACO,1,db/journals/taco/taco7.html#WangYJL10,http://doi.acm.org/10.1145/1736065.1736066 +Anurag Negi,SCIN-cache: Fast speculative versioning in multithreaded cores.,2013,9,TACO,4,db/journals/taco/taco9.html#NegiG13,http://doi.acm.org/10.1145/2400682.2400717 +Xiaodong Li,Cross-component energy management: Joint adaptation of processor and memory.,2007,4,TACO,3,db/journals/taco/taco4.html#LiGAZ07,http://doi.acm.org/10.1145/1275937.1275938 +Javier Lira,The migration prefetcher: Anticipating data promotion in dynamic NUCA caches.,2012,8,TACO,4,db/journals/taco/taco8.html#LiraJMG12,http://doi.acm.org/10.1145/2086696.2086724 +Prashant J. Nair,Refresh pausing in DRAM memory systems.,2014,11,TACO,1,db/journals/taco/taco11.html#NairCQ14,http://doi.acm.org/10.1145/2579669 +Cristobal Camarero,Topological Characterization of Hamming and Dragonfly Networks and Its Implications on Routing.,2014,11,TACO,4,db/journals/taco/taco11.html#Camarero0B14,http://doi.acm.org/10.1145/2677038 +Jacob Leverich,Comparative evaluation of memory models for chip multiprocessors.,2008,5,TACO,3,db/journals/taco/taco5.html#LeverichASFHK08,http://doi.acm.org/10.1145/1455650.1455651 +Hsiang-Yun Cheng,EECache: A Comprehensive Study on the Architectural Design for Energy-Efficient Last-Level Caches in Chip Multiprocessors.,2015,12,TACO,2,db/journals/taco/taco12.html#ChengPSSIKS015,http://doi.acm.org/10.1145/2756552 +Donghyuk Lee,Simultaneous Multi-Layer Access: Improving 3D-Stacked Memory Bandwidth at Low Cost.,2016,12,TACO,4,db/journals/taco/taco12.html#LeeGPKM16,http://doi.acm.org/10.1145/2832911 +Kenzo Van Craeynest,Understanding fundamental design choices in single-ISA heterogeneous multicore architectures.,2013,9,TACO,4,db/journals/taco/taco9.html#CraeynestE13,http://doi.acm.org/10.1145/2400682.2400691 +Hyukwoo Park,Concurrent JavaScript Parsing for Faster Loading of Web Apps.,2016,13,TACO,4,db/journals/taco/taco13.html#ParkCM16,http://doi.acm.org/10.1145/3004281 +Bita Mazloom,Dataflow Tomography: Information Flow Tracking For Understanding and Visualizing Full Systems.,2012,9,TACO,1,db/journals/taco/taco9.html#MazloomMTAS12,http://doi.acm.org/10.1145/2133382.2133385 +Giorgis Georgakoudis,SCALO: Scalability-Aware Parallelism Orchestration for Multi-Threaded Workloads.,2017,14,TACO,4,db/journals/taco/taco14.html#GeorgakoudisVTS17,http://doi.acm.org/10.1145/3158643 +Hongyeol Lim,Triple Engine Processor (TEP): A Heterogeneous Near-Memory Processor for Diverse Kernel Operations.,2017,14,TACO,4,db/journals/taco/taco14.html#LimP17,http://doi.acm.org/10.1145/3155920 +Wenjia Ruan,Transactional Read-Modify-Write Without Aborts.,2014,11,TACO,4,db/journals/taco/taco11.html#RuanLS14,http://doi.acm.org/10.1145/2688904 +Rachid Seghir,Integer affine transformations of parametric ™4*-polytopes and applications to loop nest optimization.,2012,9,TACO,2,db/journals/taco/taco9.html#SeghirLM12,http://doi.acm.org/10.1145/2207222.2207224 +Erik Tomusk,Selecting Heterogeneous Cores for Diversity.,2016,13,TACO,4,db/journals/taco/taco13.html#TomuskDO16a,http://doi.acm.org/10.1145/3014165 +Libo Huang,Improving the Efficiency of GPGPU Work-Queue Through Data Awareness.,2017,14,TACO,4,db/journals/taco/taco14.html#HuangLSW17,http://doi.acm.org/10.1145/3151035 +Daniel A. Orozco,Toward high-throughput algorithms on many-core architectures.,2012,8,TACO,4,db/journals/taco/taco8.html#OrozcoGKLG12,http://doi.acm.org/10.1145/2086696.2086728 +Oleksandr Zinenko,Visual Program Manipulation in the Polyhedral Model.,2018,15,TACO,1,db/journals/taco/taco15.html#ZinenkoHB18,http://doi.acm.org/10.1145/3177961 +Stijn Eyerman,Memory-level parallelism aware fetch policies for simultaneous multithreading processors.,2009,6,TACO,1,db/journals/taco/taco6.html#EyermanE09,http://doi.acm.org/10.1145/1509864.1509867 +Xuejun Yang,Comparability Graph Coloring for Optimizing Utilization of Software-Managed Stream Register Files for Stream Processors.,2012,9,TACO,1,db/journals/taco/taco9.html#YangWXW12,http://doi.acm.org/10.1145/2133382.2133387 +Angeliki Kritikakou,A scalable and near-optimal representation of access schemes for memory management.,2014,11,TACO,1,db/journals/taco/taco11.html#KritikakouCKG14,http://doi.acm.org/10.1145/2579677 +Zhigang Wang,Dynamic Memory Balancing for Virtualization.,2016,13,TACO,1,db/journals/taco/taco13.html#WangWHLW16,http://doi.acm.org/10.1145/2851501 +Suresh Purini,Finding good optimization sequences covering program space.,2013,9,TACO,4,db/journals/taco/taco9.html#PuriniJ13,http://doi.acm.org/10.1145/2400682.2400715 +Kyriakos Georgiou,Energy Transparency for Deeply Embedded Programs.,2017,14,TACO,1,db/journals/taco/taco14.html#GeorgiouKCE17,http://doi.acm.org/10.1145/3046679 +Yu Chen,Code reordering on limited branch offset.,2007,4,TACO,2,db/journals/taco/taco4.html#ChenZ07,http://doi.acm.org/10.1145/1250727.1250730 +Christopher Zimmer,NoCMsg: A Scalable Message-Passing Abstraction for Network-on-Chips.,2015,12,TACO,1,db/journals/taco/taco12.html#ZimmerM15,http://doi.acm.org/10.1145/2701426 +Amir Morad,Resistive GP-SIMD Processing-In-Memory.,2016,12,TACO,4,db/journals/taco/taco12.html#MoradYKG16,http://doi.acm.org/10.1145/2845084 +Sanghoon Lee 0006,Automatic parallelization of fine-grained metafunctions on a chip multiprocessor.,2013,10,TACO,4,db/journals/taco/taco10.html#0006T13,http://doi.acm.org/10.1145/2541228.2541237 +Mickaël Dardaillon,A New Compilation Flow for Software-Defined Radio Applications on Heterogeneous MPSoCs.,2016,13,TACO,2,db/journals/taco/taco13.html#DardaillonMRMC16,http://doi.acm.org/10.1145/2910583 +Jawad Haj-Yihia,Fine-Grain Power Breakdown of Modern Out-of-Order Cores and Its Implications on Skylake-Based Systems.,2016,13,TACO,4,db/journals/taco/taco13.html#Haj-YihiaYBM16,http://doi.acm.org/10.1145/3018112 +Jianwei Liao,Dynamic Process Migration Based on Block Access Patterns Occurring in Storage Servers.,2016,13,TACO,2,db/journals/taco/taco13.html#LiaoTX16,http://doi.acm.org/10.1145/2899002 +Rupesh Nasre,Time- and space-efficient flow-sensitive points-to analysis.,2013,10,TACO,4,db/journals/taco/taco10.html#Nasre13,http://doi.acm.org/10.1145/2541228.2555296 +Jue Wang,Endurance-aware cache line management for non-volatile caches.,2014,11,TACO,1,db/journals/taco/taco11.html#WangDXJ14,http://doi.acm.org/10.1145/2579671 +Neeraj Goel,Shared-port register file architecture for low-energy VLIW processors.,2014,11,TACO,1,db/journals/taco/taco11.html#GoelKP14,http://doi.acm.org/10.1145/2533397 +Diego Andrade,Precise automatable analytical modeling of the cache behavior of codes with indirections.,2007,4,TACO,3,db/journals/taco/taco4.html#AndradeFD07,http://doi.acm.org/10.1145/1275937.1275940 +Xiaolin Wang,Revisiting memory management on virtualized environments.,2013,10,TACO,4,db/journals/taco/taco10.html#WangWWL13,http://doi.acm.org/10.1145/2541228.2555304 +Yuan-Shin Hwang,DisIRer: Converting a retargetable compiler into a multiplatform binary translator.,2010,7,TACO,4,db/journals/taco/taco7.html#HwangLC10,http://doi.acm.org/10.1145/1880043.1880045 +Jorge Albericio,Exploiting reuse locality on inclusive shared last-level caches.,2013,9,TACO,4,db/journals/taco/taco9.html#AlbericioIVL13,http://doi.acm.org/10.1145/2400682.2400697 +Kanakagiri Raghavendra,MBZip: Multiblock Data Compression.,2017,14,TACO,4,db/journals/taco/taco14.html#RaghavendraPM17,http://doi.acm.org/10.1145/3151033 +Bobin Deng,Extending Moore's Law via Computationally Error-Tolerant Computing.,2018,15,TACO,1,db/journals/taco/taco15.html#DengSHCDCF18,http://doi.acm.org/10.1145/3177837 +Stijn Eyerman,Fine-grained DVFS using on-chip regulators.,2011,8,TACO,1,db/journals/taco/taco8.html#EyermanE11,http://doi.acm.org/10.1145/1952998.1952999 +Kevin Skadron,Temperature-aware microarchitecture: Modeling and implementation.,2004,1,TACO,1,db/journals/taco/taco1.html#SkadronSSHVT04,http://doi.acm.org/10.1145/980152.980157 +Chris Bentley,Implicit array bounds checking on 64-bit architectures.,2006,3,TACO,4,db/journals/taco/taco3.html#BentleyWLR06,http://doi.acm.org/10.1145/1187976.1187982 +Michael J. Lyons,The accelerator store: A shared memory framework for accelerator-based systems.,2012,8,TACO,4,db/journals/taco/taco8.html#LyonsHWB12,http://doi.acm.org/10.1145/2086696.2086727 +Zhichao Yan,An integrated pseudo-associativity and relaxed-order approach to hardware transactional memory.,2013,9,TACO,4,db/journals/taco/taco9.html#YanJTF13,http://doi.acm.org/10.1145/2400682.2400701 +Haitham Akkary,An analysis of a resource efficient checkpoint architecture.,2004,1,TACO,4,db/journals/taco/taco1.html#AkkaryRS04,http://doi.acm.org/10.1145/1044823.1044826 +Gleison Souza Diniz Mendonca,DawnCC: Automatic Annotation for Data Parallelism and Offloading.,2017,14,TACO,2,db/journals/taco/taco14.html#MendoncaGAPAP17,http://doi.acm.org/10.1145/3084540 +Hyunjin Lee,DEFCAM: A design and evaluation framework for defect-tolerant cache memories.,2011,8,TACO,3,db/journals/taco/taco8.html#LeeCC11,http://doi.acm.org/10.1145/2019608.2019616 +Erven Rohou,Vectorization technology to improve interpreter performance.,2013,9,TACO,4,db/journals/taco/taco9.html#RohouWY13,http://doi.acm.org/10.1145/2400682.2400685 +Fernando A. Endo,On the Interactions Between Value Prediction and Compiler Optimizations in the Context of EOLE.,2017,14,TACO,2,db/journals/taco/taco14.html#EndoPS17,http://doi.acm.org/10.1145/3090634 +Quan Chen 0002,Locality-Aware Work Stealing Based on Online Profiling and Auto-Tuning for Multisocket Multicore Architectures.,2015,12,TACO,2,db/journals/taco/taco12.html#ChenG15,http://doi.acm.org/10.1145/2766450 +Ghassan Shobaki,Preallocation instruction scheduling with register pressure minimization using a combinatorial optimization approach.,2013,10,TACO,3,db/journals/taco/taco10.html#ShobakiSR13,http://doi.acm.org/10.1145/2512432 +Per Stenström,Introduction to the special issue on high-performance and embedded architectures and compilers.,2012,8,TACO,4,db/journals/taco/taco8.html#StenstromB12,http://doi.acm.org/10.1145/2086696.2086697 +Wilson W. L. Fung,Dynamic warp formation: Efficient MIMD control flow on SIMD graphics hardware.,2009,6,TACO,2,db/journals/taco/taco6.html#FungSYA09,http://doi.acm.org/10.1145/1543753.1543756 +Dongrui She,An energy-efficient method of supporting flexible special instructions in an embedded processor with compact ISA.,2013,10,TACO,3,db/journals/taco/taco10.html#SheHC13,http://doi.acm.org/10.1145/2509420.2509426 +Xin Tong,Optimizing Memory Translation Emulation in Full System Emulators.,2014,11,TACO,4,db/journals/taco/taco11.html#TongKKM14,http://doi.acm.org/10.1145/2686034 +Jawad Haj-Yihia,Compiler-Directed Power Management for Superscalars.,2014,11,TACO,4,db/journals/taco/taco11.html#Haj-YihiaBRYG14,http://doi.acm.org/10.1145/2685393 +Alejandro Valero,Combining recency of information with selective random and a victim cache in last-level caches.,2012,9,TACO,3,db/journals/taco/taco9.html#ValeroSPLD12,http://doi.acm.org/10.1145/2355585.2355589 +Ram Rangan,Performance scalability of decoupled software pipelining.,2008,5,TACO,2,db/journals/taco/taco5.html#RanganVOA08,http://doi.acm.org/10.1145/1400112.1400113 +Dongliang Xiong,Memory Access Scheduling Based on Dynamic Multilevel Priority in Shared DRAM Systems.,2016,13,TACO,4,db/journals/taco/taco13.html#XiongHJY16,http://doi.acm.org/10.1145/3007647 +Luiz G. A. Martins,Clustering-Based Selection for the Exploration of Compiler Optimization Sequences.,2016,13,TACO,1,db/journals/taco/taco13.html#MartinsNCDM16,http://doi.acm.org/10.1145/2883614 +Benjamin C. Lee,Applied inference: Case studies in microarchitectural design.,2010,7,TACO,2,db/journals/taco/taco7.html#LeeB10,http://doi.acm.org/10.1145/1839667.1839670 +Mehmet E. Belviranli,A dynamic self-scheduling scheme for heterogeneous multiprocessor architectures.,2013,9,TACO,4,db/journals/taco/taco9.html#BelviranliBG13,http://doi.acm.org/10.1145/2400682.2400716 +Xuejun Yang,Exploiting the reuse supplied by loop-dependent stream references for stream processors.,2010,7,TACO,2,db/journals/taco/taco7.html#YangZLXRLWF10,http://doi.acm.org/10.1145/1839667.1839673 +Zhengwei Qi,VGRIS: Virtualized GPU Resource Isolation and Scheduling in Cloud Gaming.,2014,11,TACO,2,db/journals/taco/taco11.html#QiYZYYG14,http://doi.acm.org/10.1145/2632216 +Vincenzo Catania,Reducing complexity of multiobjective design space exploration in VLIW-based embedded systems.,2008,5,TACO,2,db/journals/taco/taco5.html#CataniaPP08,http://doi.acm.org/10.1145/1400112.1400116 +Ilya Ganusov,Future execution: A prefetching mechanism that uses multiple cores to speed up single threads.,2006,3,TACO,4,db/journals/taco/taco3.html#GanusovB06,http://doi.acm.org/10.1145/1187976.1187979 +Do-Heon Lee,A New Memory-Disk Integrated System with HW Optimizer.,2015,12,TACO,2,db/journals/taco/taco12.html#LeeYKWK15,http://doi.acm.org/10.1145/2738053 +Apala Guha,Memory optimization of dynamic binary translators for embedded systems.,2012,9,TACO,3,db/journals/taco/taco9.html#GuhaHS12,http://doi.acm.org/10.1145/2355585.2355595 +George Matheou,Data-Driven Concurrency for High Performance Computing.,2017,14,TACO,4,db/journals/taco/taco14.html#MatheouE17,http://doi.acm.org/10.1145/3162014 +Angeliki Kritikakou,Near-Optimal Microprocessor and Accelerators Codesign with Latency and Throughput Constraints.,2013,10,TACO,2,db/journals/taco/taco10.html#KritikakouCAKG13,http://doi.acm.org/10.1145/2459316.2459317 +Dimitrios Mbakoyiannis,Energy-Performance Considerations for Data Offloading to FPGA-Based Accelerators Over PCIe.,2018,15,TACO,1,db/journals/taco/taco15.html#MbakoyiannisTK18,http://doi.acm.org/10.1145/3180263 +Jedidiah R. Crandall,Minos: Architectural support for protecting control data.,2006,3,TACO,4,db/journals/taco/taco3.html#CrandallWC06,http://doi.acm.org/10.1145/1187976.1187977 +Saurav Muralidharan,Designing a Tunable Nested Data-Parallel Programming System.,2016,13,TACO,4,db/journals/taco/taco13.html#MuralidharanGSH16,http://doi.acm.org/10.1145/3012011 +Bogdan Prisacari,Fast pattern-specific routing for fat tree networks.,2013,10,TACO,4,db/journals/taco/taco10.html#PrisacariRMH13,http://doi.acm.org/10.1145/2541228.2555293 +Malik Murtaza Khan,A script-based autotuning compiler system to generate high-performance CUDA code.,2013,9,TACO,4,db/journals/taco/taco9.html#KhanBRHCC13,http://doi.acm.org/10.1145/2400682.2400690 +Dongliang Xiong,Providing Predictable Performance via a Slowdown Estimation Model.,2017,14,TACO,3,db/journals/taco/taco14.html#XiongHJY17,http://doi.acm.org/10.1145/3124451 +Jesse Elwell,Rethinking Memory Permissions for Protection Against Cross-Layer Attacks.,2016,12,TACO,4,db/journals/taco/taco12.html#ElwellRAPC16,http://doi.acm.org/10.1145/2842621 +Venmugil Elango,On Using the Roofline Model with Lower Bounds on Data Movement.,2014,11,TACO,4,db/journals/taco/taco11.html#ElangoSRPRTS14,http://doi.acm.org/10.1145/2693656 +Andreas Lankes,Benefits of selective packet discard in networks-on-chip.,2012,9,TACO,2,db/journals/taco/taco9.html#LankesWWH12,http://doi.acm.org/10.1145/2207222.2207228 +Doris Chen,Profile-guided floating- to fixed-point conversion for hybrid FPGA-processor applications.,2013,9,TACO,4,db/journals/taco/taco9.html#ChenS13,http://doi.acm.org/10.1145/2400682.2400702 +Asadollah Shahbahrami,Versatility of extended subwords and the matrix register file.,2008,5,TACO,1,db/journals/taco/taco5.html#ShahbahramiJV08,http://doi.acm.org/10.1145/1369396.1369401 +Bin Ren,A Portable Optimization Engine for Accelerating Irregular Data-Traversal Applications on SIMD Architectures.,2014,11,TACO,2,db/journals/taco/taco11.html#RenMA14,http://doi.acm.org/10.1145/2632215 +Pierre Michaud,Some Mathematical Facts About Optimal Cache Replacement.,2016,13,TACO,4,db/journals/taco/taco13.html#Michaud16,http://doi.acm.org/10.1145/3017992 +Jung Ho Ahn,Improving System Energy Efficiency with Memory Rank Subsetting.,2012,9,TACO,1,db/journals/taco/taco9.html#AhnJKLS12,http://doi.acm.org/10.1145/2133382.2133386 +Trevor E. Carlson,An Evaluation of High-Level Mechanistic Core Models.,2014,11,TACO,3,db/journals/taco/taco11.html#CarlsonHEHE14,http://doi.acm.org/10.1145/2629677 +Konstantinos Koukos,Building Heterogeneous Unified Virtual Memories (UVMs) without the Overhead.,2016,13,TACO,1,db/journals/taco/taco13.html#KoukosRHK16,http://doi.acm.org/10.1145/2889488 +Zhenman Fang,Measuring Microarchitectural Details of Multi- and Many-Core Memory Systems through Microbenchmarking.,2014,11,TACO,4,db/journals/taco/taco11.html#FangMYZGBZ14,http://doi.acm.org/10.1145/2687356 +Vassos Soteriou,Software-directed power-aware interconnection networks.,2007,4,TACO,1,db/journals/taco/taco4.html#SoteriouEP07,http://doi.acm.org/10.1145/1216544.1216548 +Farrukh Hijaz,NUCA-L1: A Non-Uniform Access Latency Level-1 Cache Architecture for Multicores Operating at Near-Threshold Voltages.,2014,11,TACO,3,db/journals/taco/taco11.html#HijazK14,http://doi.acm.org/10.1145/2631918 +Konstantinos Parasyris,Significance-Aware Program Execution on Unreliable Hardware.,2017,14,TACO,2,db/journals/taco/taco14.html#ParasyrisVALB17,http://doi.acm.org/10.1145/3058980 +Derek Chi-Wai Pao,A memory-efficient pipelined implementation of the aho-corasick string-matching algorithm.,2010,7,TACO,2,db/journals/taco/taco7.html#PaoLL10,http://doi.acm.org/10.1145/1839667.1839672 +Shuangde Fang,Performance Portability Across Heterogeneous SoCs Using a Generalized Library-Based Approach.,2014,11,TACO,2,db/journals/taco/taco11.html#FangDFHCETLCW14,http://doi.acm.org/10.1145/2608253 +Long Zheng 0003,Efficient and Scalable Graph Parallel Processing With Symbolic Execution.,2018,15,TACO,1,db/journals/taco/taco15.html#ZhengLJ18,http://doi.acm.org/10.1145/3170434 +Thomas Kotzmann,Design of the Java HotSpot™* client compiler for Java 6.,2008,5,TACO,1,db/journals/taco/taco5.html#KotzmannWMRRC08,http://doi.acm.org/10.1145/1369396.1370017 +Ron Gabor,Service level agreement for multithreaded processors.,2009,6,TACO,2,db/journals/taco/taco6.html#GaborMW09,http://doi.acm.org/10.1145/1543753.1543755 +J. Rubén Titos Gil,Hardware transactional memory with software-defined conflicts.,2012,8,TACO,4,db/journals/taco/taco8.html#GilAGHCUHV12,http://doi.acm.org/10.1145/2086696.2086710 +Byeongcheol Lee,Adaptive Correction of Sampling Bias in Dynamic Call Graphs.,2016,12,TACO,4,db/journals/taco/taco12.html#Lee16,http://doi.acm.org/10.1145/2840806 +Shuangde Fang,Practical Iterative Optimization for the Data Center.,2015,12,TACO,2,db/journals/taco/taco12.html#FangXCETCW015,http://doi.acm.org/10.1145/2739048 +Hiroyuki Usui,DASH: Deadline-Aware High-Performance Memory Scheduler for Heterogeneous Systems with Hardware Accelerators.,2016,12,TACO,4,db/journals/taco/taco12.html#UsuiSCM16,http://doi.acm.org/10.1145/2847255 +Kyuseung Han,Power-Efficient Predication Techniques for Acceleration of Control Flow Execution on CGRA.,2013,10,TACO,2,db/journals/taco/taco10.html#HanAC13,http://doi.acm.org/10.1145/2459316.2459319 +Wei Wei,HAP: Hybrid-Memory-Aware Partition in Shared Last-Level Cache.,2017,14,TACO,3,db/journals/taco/taco14.html#WeiJXC17,http://doi.acm.org/10.1145/3106340 +Stefano Di Carlo,FLARES: An Aging Aware Algorithm to Autonomously Adapt the Error Correction Capability in NAND Flash Memories.,2014,11,TACO,3,db/journals/taco/taco11.html#CarloGIPBOZ14,http://doi.acm.org/10.1145/2631919 +Shoaib Akram,Boosting the Priority of Garbage: Scheduling Collection on Heterogeneous Multicore Processors.,2016,13,TACO,1,db/journals/taco/taco13.html#AkramSCHE16,http://doi.acm.org/10.1145/2875424 +Richard Neill,Fuse: Accurate Multiplexing of Hardware Performance Counters Across Executions.,2017,14,TACO,4,db/journals/taco/taco14.html#NeillDP17,http://doi.acm.org/10.1145/3148054 +Wonsub Kim,Fast modulo scheduler utilizing patternized routes for coarse-grained reconfigurable architectures.,2013,10,TACO,4,db/journals/taco/taco10.html#KimCP13,http://doi.acm.org/10.1145/2541228.2555314 +Nicolai Stawinoga,Predictable Thread Coarsening.,2018,15,TACO,2,db/journals/taco/taco15.html#StawinogaF18,http://doi.acm.org/10.1145/3194242 +Zoe C. H. Yu,Object co-location and memory reuse for Java programs.,2008,4,TACO,4,db/journals/taco/taco4.html#YuLW08,http://doi.acm.org/10.1145/1328195.1328199 +Somayeh Sardashti,Could Compression Be of General Use? Evaluating Memory Compression across Domains.,2017,14,TACO,4,db/journals/taco/taco14.html#SardashtiW17,http://doi.acm.org/10.1145/3138805 +Ahmad Zmily,Block-aware instruction set architecture.,2006,3,TACO,3,db/journals/taco/taco3.html#ZmilyK06,http://doi.acm.org/10.1145/1162690.1162694 +Chang-Ching Yeh,Maintaining performance on power gating of microprocessor functional units by using a predictive pre-wakeup strategy.,2011,8,TACO,3,db/journals/taco/taco8.html#YehCCY11,http://doi.acm.org/10.1145/2019608.2019615 +Michael R. Jantz,Impact of Intrinsic Profiling Limitations on Effectiveness of Adaptive Optimizations.,2016,13,TACO,4,db/journals/taco/taco13.html#JantzRK16,http://doi.acm.org/10.1145/3008661 +Yongbing Huang,HMTT: A hybrid hardware/software tracing system for bridging the DRAM access trace's semantic gap.,2014,11,TACO,1,db/journals/taco/taco11.html#HuangCCRBCS14,http://doi.acm.org/10.1145/2579668 +Benedict R. Gaster,HRF-Relaxed: Adapting HRF to the Complexities of Industrial Heterogeneous Memory Models.,2015,12,TACO,1,db/journals/taco/taco12.html#GasterHH15,http://doi.acm.org/10.1145/2701618 +Michael Boyer,Federation: Boosting per-thread performance of throughput-oriented manycore architectures.,2010,7,TACO,4,db/journals/taco/taco7.html#BoyerTS10,http://doi.acm.org/10.1145/1880043.1880046 +Motohiro Kawahito,Idiom recognition framework using topological embedding.,2013,10,TACO,3,db/journals/taco/taco10.html#KawahitoKMIN13,http://doi.acm.org/10.1145/2512431 +Carole-Jean Wu,Adaptive timekeeping replacement: Fine-grained capacity management for shared CMP caches.,2011,8,TACO,1,db/journals/taco/taco8.html#WuM11,http://doi.acm.org/10.1145/1952998.1953001 +Pradeep Ramachandran,Hardware Fault Recovery for I/O Intensive Applications.,2014,11,TACO,3,db/journals/taco/taco11.html#RamachandranHLA14,http://doi.acm.org/10.1145/2656342 +Samantika Subramaniam,Design and optimization of the store vectors memory dependence predictor.,2009,6,TACO,4,db/journals/taco/taco6.html#SubramaniamL09,http://doi.acm.org/10.1145/1596510.1596514 +Alejandro Rico,On the simulation of large-scale architectures using multiple application abstraction levels.,2012,8,TACO,4,db/journals/taco/taco8.html#RicoCVPVERV12,http://doi.acm.org/10.1145/2086696.2086715 +Michela Becchi,A-DFA: A Time- and Space-Efficient DFA Compression Algorithm for Fast Regular Expression Evaluation.,2013,10,TACO,1,db/journals/taco/taco10.html#BecchiC13,http://doi.acm.org/10.1145/2445572.2445576 +Brad Calder,Introduction.,2006,3,TACO,1,db/journals/taco/taco3.html#CalderT06,http://doi.acm.org/10.1145/1132462.1132463 +Mageda Sharafeddine,Disjoint out-of-order execution processor.,2012,9,TACO,3,db/journals/taco/taco9.html#SharafeddineJA12,http://doi.acm.org/10.1145/2355585.2355592 +Choonki Jang,Automatic code overlay generation and partially redundant code fetch elimination.,2012,9,TACO,2,db/journals/taco/taco9.html#JangLER12,http://doi.acm.org/10.1145/2207222.2207226 +Alex Aletà,Removing communications in clustered microarchitectures through instruction replication.,2004,1,TACO,2,db/journals/taco/taco1.html#AletaCGK04,http://doi.acm.org/10.1145/1011528.1011529 +Madan Das,Section-Based Program Analysis to Reduce Overhead of Detecting Unsynchronized Thread Communication.,2015,12,TACO,2,db/journals/taco/taco12.html#DasSR15,http://doi.acm.org/10.1145/2766451 +Lois Orosa,FlexSig: Implementing flexible hardware signatures.,2012,8,TACO,4,db/journals/taco/taco8.html#OrosaAB12,http://doi.acm.org/10.1145/2086696.2086709 +Kanit Therdsteerasukdi,Utilizing RF-I and intelligent scheduling for better throughput/watt in a mobile GPU memory system.,2012,8,TACO,4,db/journals/taco/taco8.html#TherdsteerasukdiBCCR12,http://doi.acm.org/10.1145/2086696.2086730 +Cedric Nugteren,Bones: An Automatic Skeleton-Based C-to-CUDA Compiler for GPUs.,2014,11,TACO,4,db/journals/taco/taco11.html#NugterenC14,http://doi.acm.org/10.1145/2665079 +Probir Roy,NUMA-Caffe: NUMA-Aware Deep Learning Neural Networks.,2018,15,TACO,2,db/journals/taco/taco15.html#RoySKVSL18,http://doi.acm.org/10.1145/3199605 +Daniel Lustig,TLB Improvements for Chip Multiprocessors: Inter-Core Cooperative Prefetchers and Shared Last-Level TLBs.,2013,10,TACO,1,db/journals/taco/taco10.html#LustigBM13,http://doi.acm.org/10.1145/2445572.2445574 +Anup Holey,Performance-Energy Considerations for Shared Cache Management in a Heterogeneous Multicore Processor.,2015,12,TACO,1,db/journals/taco/taco12.html#HoleyMYZ15,http://doi.acm.org/10.1145/2710019 +Kevin Streit,Generalized Task Parallelism.,2015,12,TACO,1,db/journals/taco/taco12.html#StreitDHZH15,http://doi.acm.org/10.1145/2723164 +Ahmad Samih,Evaluating placement policies for managing capacity sharing in CMP architectures with private caches.,2011,8,TACO,3,db/journals/taco/taco8.html#SamihSK11,http://doi.acm.org/10.1145/2019608.2019614 +Arjun Suresh,Intercepting Functions for Memoization: A Case Study Using Transcendental Functions.,2015,12,TACO,2,db/journals/taco/taco12.html#SureshSRS15,http://doi.acm.org/10.1145/2751559 +Brian P. Railing,Contech: Efficiently Generating Dynamic Task Graphs for Arbitrary Parallel Programs.,2015,12,TACO,2,db/journals/taco/taco12.html#RailingHC15,http://doi.acm.org/10.1145/2776893 +Alen Bardizbanyan,Designing a practical data filter cache to improve both energy efficiency and performance.,2013,10,TACO,4,db/journals/taco/taco10.html#BardizbanyanSWL13,http://doi.acm.org/10.1145/2541228.2555310 +Hochan Lee,Improving Energy Efficiency of Coarse-Grain Reconfigurable Arrays Through Modulo Schedule Compression/Decompression.,2018,15,TACO,1,db/journals/taco/taco15.html#LeeMSE18,http://doi.acm.org/10.1145/3162018 +Pablo Abad Fidalgo,LIGERO: A light but efficient router conceived for cache-coherent chip multiprocessors.,2013,9,TACO,4,db/journals/taco/taco9.html#AbadPG13,http://doi.acm.org/10.1145/2400682.2400696 +Peng Liu 0016,Thread-Aware Adaptive Prefetcher on Multicore Systems: Improving the Performance for Multithreaded Workloads.,2016,13,TACO,1,db/journals/taco/taco13.html#0016YH16,http://doi.acm.org/10.1145/2890505 +Jialin Dou,A compiler cost model for speculative parallelization.,2007,4,TACO,2,db/journals/taco/taco4.html#DouC07,http://doi.acm.org/10.1145/1250727.1250732 +Hamed Tabkhi,A Joint SW/HW Approach for Reducing Register File Vulnerability.,2015,12,TACO,2,db/journals/taco/taco12.html#TabkhiS15,http://doi.acm.org/10.1145/2733378 +Jishen Zhao,Buri: Scaling Big-Memory Computing with Hardware-Based Memory Expansion.,2015,12,TACO,3,db/journals/taco/taco12.html#ZhaoLCBRL0F15,http://doi.acm.org/10.1145/2808233 +Miao Zhou,Writeback-aware partitioning and replacement for last-level caches in phase change main memory systems.,2012,8,TACO,4,db/journals/taco/taco8.html#ZhouDCMM12,http://doi.acm.org/10.1145/2086696.2086732 +Wei Zhang 0002,Reducing instruction cache energy consumption using a compiler-based strategy.,2004,1,TACO,1,db/journals/taco/taco1.html#ZhangHDKVI04,http://doi.acm.org/10.1145/980152.980154 +Zahra Abbasi,TACOMA: Server and workload management in internet data centers considering cooling-computing power trade-off and energy proportionality.,2012,9,TACO,2,db/journals/taco/taco9.html#AbbasiVG12,http://doi.acm.org/10.1145/2207222.2207227 +Cecilia González-Alvarez,MInGLE: An Efficient Framework for Domain Acceleration Using Low-Power Specialized Functional Units.,2016,13,TACO,2,db/journals/taco/taco13.html#Gonzalez-Alvarez16,http://doi.acm.org/10.1145/2898356 +Paraskevas Yiapanis,Optimizing software runtime systems for speculative parallelization.,2013,9,TACO,4,db/journals/taco/taco9.html#YiapanisRBL13,http://doi.acm.org/10.1145/2400682.2400698 +Christina Peterson,A Transactional Correctness Tool for Abstract Data Types.,2017,14,TACO,4,db/journals/taco/taco14.html#PetersonD17,http://doi.acm.org/10.1145/3148964 +Naznin Fauzia,Beyond reuse distance analysis: Dynamic analysis for characterization of data locality potential.,2013,10,TACO,4,db/journals/taco/taco10.html#FauziaERRRRPS13,http://doi.acm.org/10.1145/2541228.2555309 +Nilay Vaish,Optimization Models for Three On-Chip Network Problems.,2016,13,TACO,3,db/journals/taco/taco13.html#VaishFW16,http://doi.acm.org/10.1145/2943781 +Rajkishore Barik,A decoupled non-SSA global register allocation using bipartite liveness graphs.,2013,10,TACO,4,db/journals/taco/taco10.html#BarikZS13,http://doi.acm.org/10.1145/2544101 +Thomas Schaub,The Impact of the SIMD Width on Control-Flow and Memory Divergence.,2014,11,TACO,4,db/journals/taco/taco11.html#SchaubMKH14,http://doi.acm.org/10.1145/2687355 +Jing Pu,Programming Heterogeneous Systems from an Image Processing DSL.,2017,14,TACO,3,db/journals/taco/taco14.html#PuBYSRRH17,http://doi.acm.org/10.1145/3107953 +Long Chen,E3CC: A memory error protection scheme with novel address mapping for subranked and low-power memories.,2013,10,TACO,4,db/journals/taco/taco10.html#ChenCZ13,http://doi.acm.org/10.1145/2541228.2541239 +Atieh Lotfi,Aging-Aware Compilation for GP-GPUs.,2015,12,TACO,2,db/journals/taco/taco12.html#LotfiRBG15,http://doi.acm.org/10.1145/2778984 +Fang Liu,Understanding the behavior and implications of context switch misses.,2010,7,TACO,4,db/journals/taco/taco7.html#LiuS10,http://doi.acm.org/10.1145/1880043.1880048 +Lucas Vespa,Deterministic finite automata characterization and optimization for scalable pattern matching.,2011,8,TACO,1,db/journals/taco/taco8.html#VespaW11,http://doi.acm.org/10.1145/1952998.1953002 +Marco Gerards,Optimal DPM and DVFS for frame-based real-time systems.,2013,9,TACO,4,db/journals/taco/taco9.html#GerardsK13,http://doi.acm.org/10.1145/2400682.2400700 +Zheng Li 0005,MaxPB: Accelerating PCM Write by Maximizing the Power Budget Utilization.,2016,13,TACO,4,db/journals/taco/taco13.html#LiWFHLT16,http://doi.acm.org/10.1145/3012007 +Selma Saidi,Optimizing explicit data transfers for data parallel applications on the cell architecture.,2012,8,TACO,4,db/journals/taco/taco8.html#SaidiTLM12,http://doi.acm.org/10.1145/2086696.2086716 +Yunji Chen,Deterministic Replay Using Global Clock.,2013,10,TACO,1,db/journals/taco/taco10.html#ChenCLWLH13,http://doi.acm.org/10.1145/2445572.2445573 +Unnikrishnan C.,Falcon: A Graph Manipulation Language for Heterogeneous Systems.,2016,12,TACO,4,db/journals/taco/taco12.html#CNS16,http://doi.acm.org/10.1145/2842618 +Sandeep D'Souza,Integrated Mapping and Synthesis Techniques for Network-on-Chip Topologies with Express Channels.,2016,12,TACO,4,db/journals/taco/taco12.html#DSouzaJC16,http://doi.acm.org/10.1145/2831233 +Daniele De Sensi,A Reconfiguration Algorithm for Power-Aware Parallel Applications.,2016,13,TACO,4,db/journals/taco/taco13.html#SensiTD16,http://doi.acm.org/10.1145/3004054 +Ron Gabor,Fairness enforcement in switch on event multithreading.,2007,4,TACO,3,db/journals/taco/taco4.html#GaborWM07,http://doi.acm.org/10.1145/1275937.1275939 +Viacheslav V. Fedorov,ARI: Adaptive LLC-memory traffic management.,2013,10,TACO,4,db/journals/taco/taco10.html#FedorovQRG13,http://doi.acm.org/10.1145/2543697 +Grigori Fursin,Collective optimization: A practical collaborative approach.,2010,7,TACO,4,db/journals/taco/taco7.html#FursinT10,http://doi.acm.org/10.1145/1880043.1880047 +Riccardo Cattaneo,On How to Accelerate Iterative Stencil Loops: A Scalable Streaming-Based Approach.,2016,12,TACO,4,db/journals/taco/taco12.html#CattaneoNSSS16,http://doi.acm.org/10.1145/2842615 +Nicolas Melot,Fast Crown Scheduling Heuristics for Energy-Efficient Mapping and Scaling of Moldable Streaming Tasks on Manycore Systems.,2014,11,TACO,4,db/journals/taco/taco11.html#MelotK0E14,http://doi.acm.org/10.1145/2687653 +Samantika Subramaniam,Using in-flight chains to build a scalable cache coherence protocol.,2013,10,TACO,4,db/journals/taco/taco10.html#SubramaniamSHJBFE13,http://doi.acm.org/10.1145/2541228.2541235 +Morteza Hoseinzadeh,SPCM: The Striped Phase Change Memory.,2016,12,TACO,4,db/journals/taco/taco12.html#HoseinzadehAS16,http://doi.acm.org/10.1145/2829951 +Maximilien Breughe,Selecting representative benchmark inputs for exploring microprocessor design spaces.,2013,10,TACO,4,db/journals/taco/taco10.html#BreugheE13,http://doi.acm.org/10.1145/2541228.2555294 +Rahul Shrivastava,Energy-Efficient Compilation of Irregular Task-Parallel Loops.,2017,14,TACO,4,db/journals/taco/taco14.html#ShrivastavaN17,http://doi.acm.org/10.1145/3136063 +Chi Ching Chi,Low-Power High-Efficiency Video Decoding using General-Purpose Processors.,2014,11,TACO,4,db/journals/taco/taco11.html#ChiMJ14,http://doi.acm.org/10.1145/2685551 +Sanyam Mehta,Tile size selection revisited.,2013,10,TACO,4,db/journals/taco/taco10.html#MehtaBY13,http://doi.acm.org/10.1145/2541228.2555292 +Toufik Baroudi,Optimization of Triangular and Banded Matrix Operations Using 2d-Packed Layouts.,2017,14,TACO,4,db/journals/taco/taco14.html#BaroudiSL17,http://doi.acm.org/10.1145/3162016 +Tiago M. Vale,Pot: Deterministic Transactional Execution.,2016,13,TACO,4,db/journals/taco/taco13.html#ValeSDL16,http://doi.acm.org/10.1145/3017993 +Antonia Zhai,Compiler and hardware support for reducing the synchronization of speculative threads.,2008,5,TACO,1,db/journals/taco/taco5.html#ZhaiSCM08,http://doi.acm.org/10.1145/1369396.1369399 +Almutaz Adileh,Maximizing Heterogeneous Processor Performance Under Power Constraints.,2016,13,TACO,3,db/journals/taco/taco13.html#AdilehEJE16,http://doi.acm.org/10.1145/2976739 +Mehrzad Samadi,Leveraging GPUs using cooperative loop speculation.,2014,11,TACO,1,db/journals/taco/taco11.html#SamadiHLM14,http://doi.acm.org/10.1145/2579617 +Jaume Abella,IATAC: a smart predictor to turn-off L2 cache lines.,2005,2,TACO,1,db/journals/taco/taco2.html#AbellaGVO05,http://doi.acm.org/10.1145/1061267.1061271 +Venkata Kalyan Tawa,EFGR: An Enhanced Fine Granularity Refresh Feature for High-Performance DDR4 DRAM Devices.,2014,11,TACO,3,db/journals/taco/taco11.html#TawaKM14,http://doi.acm.org/10.1145/2656340 +Lin Tan,Bit-split string-matching engines for intrusion detection and prevention.,2006,3,TACO,1,db/journals/taco/taco3.html#TanBS06,http://doi.acm.org/10.1145/1132462.1132464 +Arun Raghavan,Token tenure and PATCH: A predictive/adaptive token-counting hybrid.,2010,7,TACO,2,db/journals/taco/taco7.html#RaghavanBM10,http://doi.acm.org/10.1145/1839667.1839668 +Zhi Guo,Efficient hardware code generation for FPGAs.,2008,5,TACO,1,db/journals/taco/taco5.html#GuoNB08,http://doi.acm.org/10.1145/1369396.1369402 +Dong-song Zhang,TL-plane-based multi-core energy-efficient real-time scheduling algorithm for sporadic tasks.,2012,8,TACO,4,db/journals/taco/taco8.html#ZhangGCWWCJ12,http://doi.acm.org/10.1145/2086696.2086726 +Zheng Wang 0001,Automatic and Portable Mapping of Data Parallel Programs to OpenCL for GPU-Based Heterogeneous Systems.,2014,11,TACO,4,db/journals/taco/taco11.html#WangGO14,http://doi.acm.org/10.1145/2677036 +Shivam Swami,ECS: Error-Correcting Strings for Lifetime Improvements in Nonvolatile Memories.,2017,14,TACO,4,db/journals/taco/taco14.html#SwamiPM17,http://doi.acm.org/10.1145/3151083 +Adrián Cristal,Toward kilo-instruction processors.,2004,1,TACO,4,db/journals/taco/taco1.html#CristalSVM04,http://doi.acm.org/10.1145/1044823.1044825 +Eduardo H. M. Cruz,Hardware-Assisted Thread and Data Mapping in Hierarchical Multicore Architectures.,2016,13,TACO,3,db/journals/taco/taco13.html#CruzDPN16,http://doi.acm.org/10.1145/2975587 +Nicklas Bo Jensen,Improving Loop Dependence Analysis.,2017,14,TACO,3,db/journals/taco/taco14.html#JensenK17,http://doi.acm.org/10.1145/3095754 +Aswinkumar Sridharan,Band-Pass Prefetching: An Effective Prefetch Management Mechanism Using Prefetch-Fraction Metric in Multi-Core Systems.,2017,14,TACO,2,db/journals/taco/taco14.html#SridharanPS17,http://doi.acm.org/10.1145/3090635 +David Tarjan,Merging path and gshare indexing in perceptron branch prediction.,2005,2,TACO,3,db/journals/taco/taco2.html#TarjanS05,http://doi.acm.org/10.1145/1089008.1089011 +Min Zhao,An approach toward profit-driven optimization.,2006,3,TACO,3,db/journals/taco/taco3.html#ZhaoCS06,http://doi.acm.org/10.1145/1162690.1162691 +Irshad Pananilath,An Optimizing Code Generator for a Class of Lattice-Boltzmann Computations.,2015,12,TACO,2,db/journals/taco/taco12.html#PananilathAVB15,http://doi.acm.org/10.1145/2739047 +Hans Vandierendonck,Speculative return address stack management revisited.,2008,5,TACO,3,db/journals/taco/taco5.html#VandierendonckS08,http://doi.acm.org/10.1145/1455650.1455654 +Jishen Zhao,Optimizing GPU energy efficiency with 3D die-stacking graphics memory and reconfigurable memory interface.,2013,10,TACO,4,db/journals/taco/taco10.html#ZhaoSLX13,http://doi.acm.org/10.1145/2541228.2541231 +Bin Li 0018,Dynamic QoS management for chip multiprocessors.,2012,9,TACO,3,db/journals/taco/taco9.html#LiPZI12,http://doi.acm.org/10.1145/2355585.2355590 +Yang Chen,Deconstructing iterative optimization.,2012,9,TACO,3,db/journals/taco/taco9.html#ChenFHEFTW12,http://doi.acm.org/10.1145/2355585.2355594 +Ragavendra Natarajan,Leveraging Transactional Execution for Memory Consistency Model Emulation.,2015,12,TACO,3,db/journals/taco/taco12.html#NatarajanZ15,http://doi.acm.org/10.1145/2786980 +Ding-Yong Hong,Optimizing Control Transfer and Memory Virtualization in Full System Emulators.,2016,12,TACO,4,db/journals/taco/taco12.html#HongHCHLW16,http://doi.acm.org/10.1145/2837027 +Wenguang Zheng,WCET-Aware Dynamic I-Cache Locking for a Single Task.,2017,14,TACO,1,db/journals/taco/taco14.html#ZhengWY17,http://doi.acm.org/10.1145/3046683 +Qingping Wang,A transactional memory with automatic performance tuning.,2012,8,TACO,4,db/journals/taco/taco8.html#WangKCS12,http://doi.acm.org/10.1145/2086696.2086733 +Hans Vandierendonck,Managing SMT resource usage through speculative instruction window weighting.,2011,8,TACO,3,db/journals/taco/taco8.html#VandierendonckS11,http://doi.acm.org/10.1145/2019608.2019611 +Sang Wook Stephen Do,Power Efficient Hardware Transactional Memory: Dynamic Issue of Transactions.,2016,13,TACO,1,db/journals/taco/taco13.html#DoD16,http://doi.acm.org/10.1145/2875425 +Yaohua Wang,Iteration Interleaving-Based SIMD Lane Partition.,2016,12,TACO,4,db/journals/taco/taco12.html#WangWCLCCZ16,http://doi.acm.org/10.1145/2847253 +Chuanjun Zhang,Reducing cache misses through programmable decoders.,2008,4,TACO,4,db/journals/taco/taco4.html#Zhang08,http://doi.acm.org/10.1145/1328195.1328200 +Dibyendu Das 0005,Efficient liveness computation using merge sets and DJ-graphs.,2012,8,TACO,4,db/journals/taco/taco8.html#DasDU12,http://doi.acm.org/10.1145/2086696.2086706 +Ehsan K. Ardestani,Managing Mismatches in Voltage Stacking with CoreUnfolding.,2016,12,TACO,4,db/journals/taco/taco12.html#ArdestaniPBR16,http://doi.acm.org/10.1145/2835178 +Yosi Ben-Asher,Hybrid type legalization for a sparse SIMD instruction set.,2013,10,TACO,3,db/journals/taco/taco10.html#Ben-AsherR13,http://doi.acm.org/10.1145/2509420.2509422 +Oliverio J. Santana,A low-complexity fetch architecture for high-performance superscalar processors.,2004,1,TACO,2,db/journals/taco/taco1.html#SantanaRLV04,http://doi.acm.org/10.1145/1011528.1011532 +Shashidhar Mysore,Formulating and implementing profiling over adaptive ranges.,2008,5,TACO,1,db/journals/taco/taco5.html#MysoreANSSS08,http://doi.acm.org/10.1145/1369396.1369398 +Sander Vocke,Extending Halide to Improve Software Development for Imaging DSPs.,2017,14,TACO,3,db/journals/taco/taco14.html#VockeCJCN17,http://doi.acm.org/10.1145/3106343 +Keval Vora,Synergistic Analysis of Evolving Graphs.,2016,13,TACO,4,db/journals/taco/taco13.html#VoraGX16,http://doi.acm.org/10.1145/2992784 +Quentin Colombet,Studying Optimal Spilling in the Light of SSA.,2014,11,TACO,4,db/journals/taco/taco11.html#ColombetBD14,http://doi.acm.org/10.1145/2685392 +Madhura Purnaprajna,Making wide-issue VLIW processors viable on FPGAs.,2012,8,TACO,4,db/journals/taco/taco8.html#PurnaprajnaI12,http://doi.acm.org/10.1145/2086696.2086712 +Hao Zhou,A Compiler Approach for Exploiting Partial SIMD Parallelism.,2016,13,TACO,1,db/journals/taco/taco13.html#ZhouX16,http://doi.acm.org/10.1145/2886101 +Hugh Leather,Automatic feature generation for machine learning-based optimising compilation.,2014,11,TACO,1,db/journals/taco/taco11.html#LeatherBO14,http://doi.acm.org/10.1145/2536688 +Brian A. Fields,Interaction cost and shotgun profiling.,2004,1,TACO,3,db/journals/taco/taco1.html#FieldsBHN04,http://doi.acm.org/10.1145/1022969.1022971 +Yoonseo Choi,Optimal register reassignment for register stack overflow minimization.,2006,3,TACO,1,db/journals/taco/taco3.html#ChoiH06,http://doi.acm.org/10.1145/1132462.1132467 +Sanyam Mehta,Variable Liberalization.,2016,13,TACO,3,db/journals/taco/taco13.html#MehtaY16,http://doi.acm.org/10.1145/2963101 +Fen Xie,Intraprogram dynamic voltage scaling: Bounding opportunities with analytic modeling.,2004,1,TACO,3,db/journals/taco/taco1.html#XieMM04,http://doi.acm.org/10.1145/1022969.1022973 +Adarsh Patil,HAShCache: Heterogeneity-Aware Shared DRAMCache for Integrated Heterogeneous Systems.,2017,14,TACO,4,db/journals/taco/taco14.html#PatilG17,http://doi.acm.org/10.1145/3158641 +Darío Suárez Gracia,Revisiting LP-NUCA Energy Consumption: Cache Access Policies and Adaptive Block Dropping.,2014,11,TACO,2,db/journals/taco/taco11.html#GraciaFCAY14,http://doi.acm.org/10.1145/2632217 +Jingling Xue,A lifetime optimal algorithm for speculative PRE.,2006,3,TACO,2,db/journals/taco/taco3.html#XueC06,http://doi.acm.org/10.1145/1138035.1138036 +Yeonghun Jeong,Evaluator-executor transformation for efficient pipelining of loops with conditionals.,2013,10,TACO,4,db/journals/taco/taco10.html#JeongSL13,http://doi.acm.org/10.1145/2541228.2555317 +Ismail Akturk,Accuracy Bugs: A New Class of Concurrency Bugs to Exploit Algorithmic Noise Tolerance.,2016,13,TACO,4,db/journals/taco/taco13.html#AkturkAIMK16,http://doi.acm.org/10.1145/3017991 +Bagus Wibowo,An Accurate Cross-Layer Approach for Online Architectural Vulnerability Estimation.,2016,13,TACO,3,db/journals/taco/taco13.html#WibowoAST16,http://doi.acm.org/10.1145/2975588 +Fernando Fernandes,Evaluation of Histogram of Oriented Gradients Soft Errors Criticality for Automotive Applications.,2016,13,TACO,4,db/journals/taco/taco13.html#FernandesWJNCR16,http://doi.acm.org/10.1145/2998573 +Mainak Chaudhuri,Micro-Sector Cache: Improving Space Utilization in Sectored DRAM Caches.,2017,14,TACO,1,db/journals/taco/taco14.html#ChaudhuriAGS17,http://doi.acm.org/10.1145/3046680 +Jieyi Long,Thermal monitoring mechanisms for chip multiprocessors.,2008,5,TACO,2,db/journals/taco/taco5.html#LongMMM08,http://doi.acm.org/10.1145/1400112.1400114 +Joseph J. Sharkey,Reducing register pressure in SMT processors through L2-miss-driven early register release.,2008,5,TACO,3,db/journals/taco/taco5.html#SharkeyLP08,http://doi.acm.org/10.1145/1455650.1455652 +Saeed Rashidi,Improving MLC PCM Performance through Relaxed Write and Read for Intermediate Resistance Levels.,2018,15,TACO,1,db/journals/taco/taco15.html#RashidiJS18,http://doi.acm.org/10.1145/3177965 +,List of Distinguished Reviewers ACM TACO 2014.,2016,13,TACO,3,db/journals/taco/taco13.html#Acacio16,http://dl.acm.org/citation.cfm?id=2989990 +Darko Zivanovic,Main Memory in HPC: Do We Need More or Could We Live with Less?,2017,14,TACO,1,db/journals/taco/taco14.html#ZivanovicPRSSMC17,http://doi.acm.org/10.1145/3023362 +Yongjoo Kim,Improving performance of nested loops on reconfigurable array processors.,2012,8,TACO,4,db/journals/taco/taco8.html#KimLMP12,http://doi.acm.org/10.1145/2086696.2086711 +Ying Cai,Extreme-Scale High-Order WENO Simulations of 3-D Detonation Wave with 10 Million Cores.,2018,15,TACO,2,db/journals/taco/taco15.html#CaiAYMZ18,http://doi.acm.org/10.1145/3209208 +Rajeev Balasubramonian,CACTI 7: New Tools for Interconnect Exploration in Innovative Off-Chip Memories.,2017,14,TACO,2,db/journals/taco/taco14.html#Balasubramonian17,http://doi.acm.org/10.1145/3085572 +Anuj Pathania,Defragmentation of Tasks in Many-Core Architecture.,2017,14,TACO,1,db/journals/taco/taco14.html#PathaniaVSMH17,http://doi.acm.org/10.1145/3050437 +Lian Li 0002,Compiler-directed scratchpad memory management via graph coloring.,2009,6,TACO,3,db/journals/taco/taco6.html#LiFX09,http://doi.acm.org/10.1145/1582710.1582711 +Fei Guo,Quality of service shared cache management in chip multiprocessor architecture.,2010,7,TACO,3,db/journals/taco/taco7.html#GuoSZI10,http://doi.acm.org/10.1145/1880037.1880039 +Vivek Seshadri,Mitigating Prefetcher-Caused Pollution Using Informed Caching Policies for Prefetched Blocks.,2014,11,TACO,4,db/journals/taco/taco11.html#SeshadriYXMGKM14,http://doi.acm.org/10.1145/2677956 +Abhishek Bhattacharjee,Parallelization libraries: Characterizing and reducing overheads.,2011,8,TACO,1,db/journals/taco/taco8.html#BhattacharjeeCM11,http://doi.acm.org/10.1145/1952998.1953003 +Eran Shifer,Low-latency adaptive mode transitions and hierarchical power management in asymmetric clustered cores.,2013,10,TACO,3,db/journals/taco/taco10.html#ShiferW13,http://doi.acm.org/10.1145/2499901 +Ali Bakhoda,Designing on-chip networks for throughput accelerators.,2013,10,TACO,3,db/journals/taco/taco10.html#BakhodaKA13,http://doi.acm.org/10.1145/2512429 +Somayeh Sardashti,Yet Another Compressed Cache: A Low-Cost Yet Effective Compressed Cache.,2016,13,TACO,3,db/journals/taco/taco13.html#SardashtiSW16,http://doi.acm.org/10.1145/2976740 +Namhyung Kim,Benzene: An Energy-Efficient Distributed Hybrid Cache Architecture for Manycore Systems.,2018,15,TACO,1,db/journals/taco/taco15.html#KimACSYR18,http://doi.acm.org/10.1145/3177963 +George Patsilaras,Efficiently exploiting memory level parallelism on asymmetric coupled cores in the dark silicon era.,2012,8,TACO,4,db/journals/taco/taco8.html#PatsilarasCT12,http://doi.acm.org/10.1145/2086696.2086707 +Fabio Luporini,Cross-Loop Optimization of Arithmetic Intensity for Finite Element Local Assembly.,2014,11,TACO,4,db/journals/taco/taco11.html#LuporiniVRBRHK14,http://doi.acm.org/10.1145/2687415 +Dave Dice,Improving Parallelism in Hardware Transactional Memory.,2018,15,TACO,1,db/journals/taco/taco15.html#DiceHK18,http://doi.acm.org/10.1145/3177962 +John Demme,Approximate graph clustering for program characterization.,2012,8,TACO,4,db/journals/taco/taco8.html#DemmeS12,http://doi.acm.org/10.1145/2086696.2086700 +Yingying Tian,Temporal-based multilevel correlating inclusive cache replacement.,2013,10,TACO,4,db/journals/taco/taco10.html#TianKJ13,http://doi.acm.org/10.1145/2541228.2555290 +Frederick Ryckbosch,VSim: Simulating multi-server setups at near native hardware speed.,2012,8,TACO,4,db/journals/taco/taco8.html#RyckboschPE12,http://doi.acm.org/10.1145/2086696.2086731 +Wenlai Zhao,Optimizing Convolutional Neural Networks on the Sunway TaihuLight Supercomputer.,2018,15,TACO,1,db/journals/taco/taco15.html#ZhaoFFZGY18,http://doi.acm.org/10.1145/3177885 +Peter Gavin,Reducing instruction fetch energy in multi-issue processors.,2013,10,TACO,4,db/journals/taco/taco10.html#GavinWS13,http://doi.acm.org/10.1145/2541228.2555318 +Dmitry Evtyushkin,Understanding and Mitigating Covert Channels Through Branch Predictors.,2016,13,TACO,1,db/journals/taco/taco13.html#EvtyushkinPA16,http://doi.acm.org/10.1145/2870636 +Doug Simon,Snippets: Taking the High Road to a Low Level.,2015,12,TACO,2,db/journals/taco/taco12.html#SimonWUDSW15,http://doi.acm.org/10.1145/2764907 +Jaydeep Marathe,Analysis of cache-coherence bottlenecks with hybrid hardware/software techniques.,2006,3,TACO,4,db/journals/taco/taco3.html#MaratheMS06,http://doi.acm.org/10.1145/1187976.1187978 +Maximilien Breughe,Mechanistic Analytical Modeling of Superscalar In-Order Processor Performance.,2014,11,TACO,4,db/journals/taco/taco11.html#BreugheEE14,http://doi.acm.org/10.1145/2678277 +Zhonghai Lu,Aggregate Flow-Based Performance Fairness in CMPs.,2016,13,TACO,4,db/journals/taco/taco13.html#LuY16,http://doi.acm.org/10.1145/3014429 +Panagiotis Theocharis,A Bimodal Scheduler for Coarse-Grained Reconfigurable Arrays.,2016,13,TACO,2,db/journals/taco/taco13.html#TheocharisS16,http://doi.acm.org/10.1145/2893475 +Miquel Pericàs,Elastic Places: An Adaptive Resource Manager for Scalable and Portable Performance.,2018,15,TACO,2,db/journals/taco/taco15.html#Pericas18,http://doi.acm.org/10.1145/3185458 +Kishore Kumar Pusukuri,Tumbler: An Effective Load-Balancing Technique for Multi-CPU Multicore Systems.,2016,12,TACO,4,db/journals/taco/taco12.html#PusukuriGB16,http://doi.acm.org/10.1145/2827698 +Srdan Stipic,Profile-guided transaction coalescing - lowering transactional overheads by merging transactions.,2013,10,TACO,4,db/journals/taco/taco10.html#StipicSUCV13,http://doi.acm.org/10.1145/2541228.2555306 +Jason McCandless,Compiler techniques to improve dynamic branch prediction for indirect jump and call instructions.,2012,8,TACO,4,db/journals/taco/taco8.html#McCandlessG12,http://doi.acm.org/10.1145/2086696.2086703 +Byung-Sun Yang,Exceptionization: A Java VM Optimization for Non-Java Languages.,2017,14,TACO,1,db/journals/taco/taco14.html#YangKM17,http://doi.acm.org/10.1145/3046681 +Mustafa Shihab,ReveNAND: A Fast-Drift-Aware Resilient 3D NAND Flash Design.,2018,15,TACO,2,db/journals/taco/taco15.html#ShihabZJK18,http://doi.acm.org/10.1145/3184744 +Nemanja Isailovic,Datapath and control for quantum wires.,2004,1,TACO,1,db/journals/taco/taco1.html#IsailovicWPKCCCO04,http://doi.acm.org/10.1145/980152.980155 +Ghassan Shobaki,Optimal trace scheduling using enumeration.,2009,5,TACO,4,db/journals/taco/taco5.html#ShobakiWH09,http://doi.acm.org/10.1145/1498690.1498694 +Qixiao Liu,Sensible Energy Accounting with Abstract Metering for Multicore Systems.,2016,12,TACO,4,db/journals/taco/taco12.html#LiuMACJV16,http://doi.acm.org/10.1145/2842616 +HanBin Yoon,Efficient Data Mapping and Buffering Techniques for Multilevel Cell Phase-Change Memories.,2014,11,TACO,4,db/journals/taco/taco11.html#YoonMMJM14,http://doi.acm.org/10.1145/2669365 +Ayman Hroub,Efficient Generation of Compact Execution Traces for Multicore Architectural Simulations.,2017,14,TACO,3,db/journals/taco/taco14.html#HroubEMK17,http://doi.acm.org/10.1145/3106342 +Jae-Eon Jo,DiagSim: Systematically Diagnosing Simulators for Healthy Simulations.,2018,15,TACO,1,db/journals/taco/taco15.html#JoLJLAK18,http://doi.acm.org/10.1145/3177959 +Xiaoxia Wu,Design exploration of hybrid caches with disparate memory technologies.,2010,7,TACO,3,db/journals/taco/taco7.html#WuLZSRX10,http://doi.acm.org/10.1145/1880037.1880040 +Milad Mohammadi,CG-OoO: Energy-Efficient Coarse-Grain Out-of-Order Execution Near In-Order Energy with Near Out-of-Order Performance.,2017,14,TACO,4,db/journals/taco/taco14.html#MohammadiAD17,http://doi.acm.org/10.1145/3151034 +Jan Kasper Martinsen,The Effects of Parameter Tuning in Software Thread-Level Speculation in JavaScript Engines.,2014,11,TACO,4,db/journals/taco/taco11.html#MartinsenGI14,http://doi.acm.org/10.1145/2686036 +Avinash Malik,Orchestrating stream graphs using model checking.,2013,10,TACO,3,db/journals/taco/taco10.html#MalikG13,http://doi.acm.org/10.1145/2512435 +Yunquan Zhang,A Cross-Platform SpMV Framework on Many-Core Architectures.,2016,13,TACO,4,db/journals/taco/taco13.html#Zhang0YZ16,http://doi.acm.org/10.1145/2994148 +Thibaut Lutz,PARTANS: An autotuning framework for stencil computation on multi-GPU systems.,2013,9,TACO,4,db/journals/taco/taco9.html#LutzFC13,http://doi.acm.org/10.1145/2400682.2400718 +William Hasenplaugh,The gradient-based cache partitioning algorithm.,2012,8,TACO,4,db/journals/taco/taco8.html#HasenplaughAJSE12,http://doi.acm.org/10.1145/2086696.2086723 +Amir Hossein Ashouri,MiCOMP: Mitigating the Compiler Phase-Ordering Problem Using Optimization Sub-Sequences and Machine Learning.,2017,14,TACO,3,db/journals/taco/taco14.html#AshouriBPSKC17,http://doi.acm.org/10.1145/3124452 +Fred A. Bower,Online diagnosis of hard faults in microprocessors.,2007,4,TACO,2,db/journals/taco/taco4.html#BowerSO07,http://doi.acm.org/10.1145/1250727.1250728 +Polychronis Xekalakis,Mixed speculative multithreaded execution models.,2012,9,TACO,3,db/journals/taco/taco9.html#XekalakisIC12,http://doi.acm.org/10.1145/2355585.2355591 +Myeongjae Jeon,Reducing DRAM row activations with eager read/write clustering.,2013,10,TACO,4,db/journals/taco/taco10.html#JeonLCR13,http://doi.acm.org/10.1145/2541228.2555300 +Quan Chen 0002,Adaptive workload-aware task scheduling for single-ISA asymmetric multicore architectures.,2014,11,TACO,1,db/journals/taco/taco11.html#ChenG14,http://doi.acm.org/10.1145/2579674 +Jason Hiser,Evaluating indirect branch handling mechanisms in software dynamic translation systems.,2011,8,TACO,2,db/journals/taco/taco8.html#HiserWHDMC11,http://doi.acm.org/10.1145/1970386.1970390 +Marios Kleanthous,CATCH: A mechanism for dynamically detecting cache-content-duplication in instruction caches.,2011,8,TACO,3,db/journals/taco/taco8.html#KleanthousS11,http://doi.acm.org/10.1145/2019608.2019610 +Lixin Zhang 0002,Efficient address remapping in distributed shared-memory systems.,2006,3,TACO,2,db/journals/taco/taco3.html#ZhangPC06,http://doi.acm.org/10.1145/1138035.1138039 +Wolfram Amme,SSA-based mobile code: Implementation and empirical evaluation.,2007,4,TACO,2,db/journals/taco/taco4.html#AmmeRF07,http://doi.acm.org/10.1145/1250727.1250733 +Luis Ceze,CAVA: Using checkpoint-assisted value prediction to hide L2 misses.,2006,3,TACO,2,db/journals/taco/taco3.html#CezeSTTR06,http://doi.acm.org/10.1145/1138035.1138038 +Arun K. Kanuparthi,Reliable Integrity Checking in Multicore Processors.,2015,12,TACO,2,db/journals/taco/taco12.html#KanuparthiK15,http://doi.acm.org/10.1145/2738052 +Zhibin Liang,Deadline-Constrained Clustered Scheduling for VLIW Architectures using Power-Gated Register Files.,2014,11,TACO,2,db/journals/taco/taco11.html#LiangZM14,http://doi.acm.org/10.1145/2632218 +Jan Lucas,Spatiotemporal SIMT and Scalarization for Improving GPU Efficiency.,2015,12,TACO,3,db/journals/taco/taco12.html#LucasAMJ15,http://doi.acm.org/10.1145/2811402 +Subhasis Das,Reuse Distance-Based Probabilistic Cache Replacement.,2016,12,TACO,4,db/journals/taco/taco12.html#DasAD16,http://doi.acm.org/10.1145/2818374 +Chuntao Jiang,PCantorSim: Accelerating parallel architecture simulation through fractal-based sampling.,2013,10,TACO,4,db/journals/taco/taco10.html#JiangYJXEHCL13,http://doi.acm.org/10.1145/2541228.2555305 +Dyer Rolán,Virtually split cache: An efficient mechanism to distribute instructions and data.,2013,10,TACO,4,db/journals/taco/taco10.html#RolanFD13,http://doi.acm.org/10.1145/2541228.2541234 +Ramyad Hadidi,CAIRO: A Compiler-Assisted Technique for Enabling Instruction-Level Offloading of Processing-In-Memory.,2017,14,TACO,4,db/journals/taco/taco14.html#HadidiNKK17,http://doi.acm.org/10.1145/3155287 +Andrew Anderson 0001,Automatic Vectorization of Interleaved Data Revisited.,2016,12,TACO,4,db/journals/taco/taco12.html#AndersonMG16,http://doi.acm.org/10.1145/2838735 +Daniele De Sensi,Bringing Parallel Patterns Out of the Corner: The P3 ARSEC Benchmark Suite.,2017,14,TACO,4,db/journals/taco/taco14.html#SensiMTMD17,http://doi.acm.org/10.1145/3132710 +Weijia Li,Towards update-conscious compilation for energy-efficient code dissemination in WSNs.,2009,6,TACO,4,db/journals/taco/taco6.html#LiZYZ09,http://doi.acm.org/10.1145/1596510.1596512 +Engin Ipek,Efficient architectural design space exploration via predictive modeling.,2008,4,TACO,4,db/journals/taco/taco4.html#IpekMSCSS08,http://doi.acm.org/10.1145/1328195.1328196 +Biswabandan Panda,CAFFEINE: A Utility-Driven Prefetcher Aggressiveness Engine for Multicores.,2015,12,TACO,3,db/journals/taco/taco12.html#PandaB15,http://doi.acm.org/10.1145/2806891 +Helge Bahmann,Perfect Reconstructability of Control Flow from Demand Dependence Graphs.,2014,11,TACO,4,db/journals/taco/taco11.html#BahmannRJM14,http://doi.acm.org/10.1145/2693261 +Morteza Mohajjel Kafshdooz,Dynamic Shared SPM Reuse for Real-Time Multicore Embedded Systems.,2015,12,TACO,2,db/journals/taco/taco12.html#KafshdoozE15,http://doi.acm.org/10.1145/2738051 +Christian Häubl,Trace transitioning and exception handling in a trace-based JIT compiler for java.,2014,11,TACO,1,db/journals/taco/taco11.html#HaublWM14,http://doi.acm.org/10.1145/2579673 +Adam Wade Lewis,Runtime energy consumption estimation for server workloads based on chaotic time-series approximation.,2012,9,TACO,3,db/journals/taco/taco9.html#LewisTG12,http://doi.acm.org/10.1145/2355585.2355588 +George Matheou,Architectural Support for Data-Driven Execution.,2014,11,TACO,4,db/journals/taco/taco11.html#MatheouE14,http://doi.acm.org/10.1145/2686874 +Zhijia Zhao 0001,HPar: A practical parallel parser for HTML-taming HTML complexities for parallel parsing.,2013,10,TACO,4,db/journals/taco/taco10.html#ZhaoBHSS13,http://doi.acm.org/10.1145/2541228.2555301 +Siddhartha Chhabra,Making secure processors OS- and performance-friendly.,2009,5,TACO,4,db/journals/taco/taco5.html#ChhabraRSP09,http://doi.acm.org/10.1145/1498690.1498691 +Zia Ul Huda,Using Template Matching to Infer Parallel Design Patterns.,2014,11,TACO,4,db/journals/taco/taco11.html#HudaJW14,http://doi.acm.org/10.1145/2688905 +Yigit Demir,Energy-Proportional Photonic Interconnects.,2016,13,TACO,4,db/journals/taco/taco13.html#DemirH16,http://doi.acm.org/10.1145/3018110 +Yan Meng,Exploring the limits of leakage power reduction in caches.,2005,2,TACO,3,db/journals/taco/taco2.html#MengSK05,http://doi.acm.org/10.1145/1089008.1089009 +Rakesh Kumar 0003,Efficient Power Gating of SIMD Accelerators Through Dynamic Selective Devectorization in an HW/SW Codesigned Environment.,2014,11,TACO,3,db/journals/taco/taco11.html#KumarMG14,http://doi.acm.org/10.1145/2629681 +Komal Jothi,Tuning the continual flow pipeline architecture with virtual register renaming.,2014,11,TACO,1,db/journals/taco/taco11.html#JothiA14,http://doi.acm.org/10.1145/2579675 +Andi Drebes,Topology-Aware and Dependence-Aware Scheduling and Memory Allocation for Task-Parallel Languages.,2014,11,TACO,3,db/journals/taco/taco11.html#DrebesHDPC14,http://doi.acm.org/10.1145/2641764 +Amir Hossein Ashouri,COBAYN: Compiler Autotuning Framework Using Bayesian Networks.,2016,13,TACO,2,db/journals/taco/taco13.html#AshouriMPPCS16,http://doi.acm.org/10.1145/2928270 +Miguel A. Gonzalez-Mesa,Effective Transactional Memory Execution Management for Improved Concurrency.,2014,11,TACO,3,db/journals/taco/taco11.html#Gonzalez-MesaGZP14,http://doi.acm.org/10.1145/2633048 +Zhe Wang,WADE: Writeback-aware dynamic cache management for NVM-based main memory system.,2013,10,TACO,4,db/journals/taco/taco10.html#WangSCGXM0J13,http://doi.acm.org/10.1145/2541228.2555307 +Xing Zhou,Optimal Parallelogram Selection for Hierarchical Tiling.,2014,11,TACO,4,db/journals/taco/taco11.html#ZhouGP14,http://doi.acm.org/10.1145/2687414 +Cedric Nugteren,Algorithmic species: A classification of affine loop nests for parallel programming.,2013,9,TACO,4,db/journals/taco/taco9.html#NugterenCC13,http://doi.acm.org/10.1145/2400682.2400699 +Petar Radojkovic,On the evaluation of the impact of shared resources in multithreaded COTS processors in time-critical environments.,2012,8,TACO,4,db/journals/taco/taco8.html#RadojkovicGGQYC12,http://doi.acm.org/10.1145/2086696.2086713 +Kypros Chrysanthou,An Online and Real-Time Fault Detection and Localization Mechanism for Network-on-Chip Architectures.,2016,13,TACO,2,db/journals/taco/taco13.html#ChrysanthouEPPN16,http://doi.acm.org/10.1145/2930670 +Zheng Wang 0001,Integrating profile-driven parallelism detection and machine-learning-based mapping.,2014,11,TACO,1,db/journals/taco/taco11.html#WangTFO14,http://doi.acm.org/10.1145/2579561 +Dimitrios Chasapis,PARSECSs: Evaluating the Impact of Task Parallelism in the PARSEC Benchmark Suite.,2016,12,TACO,4,db/journals/taco/taco12.html#ChasapisCMVALV16,http://doi.acm.org/10.1145/2829952 +Nikolaos Tampouratzis,Accelerating Intercommunication in Highly Parallel Systems.,2016,13,TACO,4,db/journals/taco/taco13.html#TampouratzisMP16,http://doi.acm.org/10.1145/3005717 +Prasad A. Kulkarni,Practical exhaustive optimization phase order exploration and evaluation.,2009,6,TACO,1,db/journals/taco/taco6.html#KulkarniWTD09,http://doi.acm.org/10.1145/1509864.1509865 +Manuel Hohenauer,A SIMD optimization framework for retargetable compilers.,2009,6,TACO,1,db/journals/taco/taco6.html#HohenauerELAM09,http://doi.acm.org/10.1145/1509864.1509866 +Diego Andrade,Static analysis of the worst-case memory performance for irregular codes with indirections.,2012,9,TACO,3,db/journals/taco/taco9.html#AndradeFD12,http://doi.acm.org/10.1145/2355585.2355593 +Po-Han Wang,Power gating strategies on GPUs.,2011,8,TACO,3,db/journals/taco/taco8.html#WangYCC11,http://doi.acm.org/10.1145/2019608.2019612 +Xiangyu Zhang 0001,Whole execution traces and their applications.,2005,2,TACO,3,db/journals/taco/taco2.html#ZhangG05,http://doi.acm.org/10.1145/1089008.1089012 +Francisco Gaspar,A Framework for Application-Guided Task Management on Heterogeneous Embedded Systems.,2016,12,TACO,4,db/journals/taco/taco12.html#GasparTTIS16,http://doi.acm.org/10.1145/2835177 +Xueyang Wang,Hardware Performance Counter-Based Malware Identification and Detection with Adaptive Compressive Sensing.,2016,13,TACO,1,db/journals/taco/taco13.html#WangCILK16,http://doi.acm.org/10.1145/2857055 +Libo Huang,Adaptive communication mechanism for accelerating MPI functions in NoC-based multicore processors.,2013,10,TACO,3,db/journals/taco/taco10.html#HuangWXWD13,http://doi.acm.org/10.1145/2512434 +Xiangyu Dong,Hybrid checkpointing using emerging nonvolatile memories for future exascale systems.,2011,8,TACO,2,db/journals/taco/taco8.html#DongXMJ11,http://doi.acm.org/10.1145/1970386.1970387 +Min Feng 0001,Dynamic access distance driven cache replacement.,2011,8,TACO,3,db/journals/taco/taco8.html#FengTLG11,http://doi.acm.org/10.1145/2019608.2019613 +Stijn Eyerman,Multiprogram Throughput Metrics: A Systematic Approach.,2014,11,TACO,3,db/journals/taco/taco11.html#EyermanMR14,http://doi.acm.org/10.1145/2663346 +Wenjie Chen,Implementing Dense Optical Flow Computation on a Heterogeneous FPGA SoC in C.,2016,13,TACO,3,db/journals/taco/taco13.html#ChenWWLC16,http://doi.acm.org/10.1145/2948976 +Mahdad Davari,The Effects of Granularity and Adaptivity on Private/Shared Classification for Coherence.,2015,12,TACO,3,db/journals/taco/taco12.html#DavariRHK15,http://doi.acm.org/10.1145/2790301 +Chia-Lin Yang,Tolerating memory latency through push prefetching for pointer-intensive applications.,2004,1,TACO,4,db/journals/taco/taco1.html#YangLTL04,http://doi.acm.org/10.1145/1044823.1044827 +Roman Malits,Exploring the limits of GPGPU scheduling in control flow bound applications.,2012,8,TACO,4,db/journals/taco/taco8.html#MalitsBKM12,http://doi.acm.org/10.1145/2086696.2086708 +Leo Porter,Making the Most of SMT in HPC: System- and Application-Level Perspectives.,2014,11,TACO,4,db/journals/taco/taco11.html#PorterLTJWCC14,http://doi.acm.org/10.1145/2687651 +Michal Wegiel,The single-referent collector: Optimizing compaction for the common case.,2009,6,TACO,4,db/journals/taco/taco6.html#WegielK09,http://doi.acm.org/10.1145/1596510.1596513 +Brad Calder,Introduction.,2005,2,TACO,1,db/journals/taco/taco2.html#CalderT05,http://doi.acm.org/10.1145/1061267.1061268 +Jin Lin,Recovery code generation for general speculative optimizations.,2006,3,TACO,1,db/journals/taco/taco3.html#LinHYJN06,http://doi.acm.org/10.1145/1132462.1132466 +Yaozu Dong,ReNIC: Architectural extension to SR-IOV I/O virtualization for efficient replication.,2012,8,TACO,4,db/journals/taco/taco8.html#DongCPDJ12,http://doi.acm.org/10.1145/2086696.2086719 +James R. Geraci,A transpose-free in-place SIMD optimized FFT.,2012,9,TACO,3,db/journals/taco/taco9.html#GeraciS12,http://doi.acm.org/10.1145/2355585.2355596 +A. Y. M. Atiquil Islam,Validation of the Technology Satisfaction Model (TSM) Developed in Higher Education: The Application of Structural Equation Modeling.,2014,10,IJTHI,3,db/journals/ijthi/ijthi10.html#Islam14,https://doi.org/10.4018/ijthi.2014070104 +Ardion Beldad,Sealing One's Online Wall Off From Outsiders: Determinants of the Use of Facebook's Privacy Settings among Young Dutch Users.,2016,12,IJTHI,1,db/journals/ijthi/ijthi12.html#Beldad16,https://doi.org/10.4018/IJTHI.2016010102 +Luciano Floridi,Global Information Ethics: The Importance of Being Environmentally Earnest.,2007,3,IJTHI,3,db/journals/ijthi/ijthi3.html#Floridi07,https://doi.org/10.4018/jthi.2007070101 +Steve Sawyer,The Sociotechnical Nature of Mobile Computing Work: Evidence from a Study of Policing in the United State.,2005,1,IJTHI,3,db/journals/ijthi/ijthi1.html#SawyerT05,https://doi.org/10.4018/jthi.2005070101 +Bernard Fallery,Acceptance and Appropriation of Videoconferencing for E-training: An Empirical Investigation.,2010,6,IJTHI,3,db/journals/ijthi/ijthi6.html#FalleryTG10,https://doi.org/10.4018/jthi.2010070103 +Yuechuan Wei,Security Analysis of Cipher ICEBERG against Bit-pattern Based Integral Attack.,2016,12,IJTHI,2,db/journals/ijthi/ijthi12.html#WeiRW16,https://doi.org/10.4018/IJTHI.2016040105 +Philip Brey,Is Information Ethics Culture-Relative?,2007,3,IJTHI,3,db/journals/ijthi/ijthi3.html#Brey07,https://doi.org/10.4018/jthi.2007070102 +Jennifer Stein,Location-Based Mobile Storytelling.,2009,5,IJTHI,1,db/journals/ijthi/ijthi5.html#SteinRF09,https://doi.org/10.4018/jthi.2009010104 +Mats Edenius,"The Function of Representation in a ""Smart Home Context"".",2006,2,IJTHI,3,db/journals/ijthi/ijthi2.html#Edenius06,https://doi.org/10.4018/jthi.2006070101 +Mariarosaria Taddeo,Defining Trust and E-Trust: From Old Theories to New Problems.,2009,5,IJTHI,2,db/journals/ijthi/ijthi5.html#Taddeo09,https://doi.org/10.4018/jthi.2009040102 +Jean-Eric Pelet,Consumer Behavior in the Mobile Environment: An Exploratory Study of M-Commerce and Social Media.,2014,10,IJTHI,4,db/journals/ijthi/ijthi10.html#PeletP14,https://doi.org/10.4018/ijthi.2014100103 +Donghee Yvette Wohn,Social Contributors and Consequences of Habitual and Compulsive Game Play.,2015,11,IJTHI,3,db/journals/ijthi/ijthi11.html#WohnLO15,https://doi.org/10.4018/ijthi.2015070102 +Gareth Peevers,Multimedia Technology in the Financial Services Sector: Customer Satisfaction with Alternatives to Face-to-Face Interaction in Mortgage Sales.,2011,7,IJTHI,4,db/journals/ijthi/ijthi7.html#PeeversDJ11,https://doi.org/10.4018/jthi.2011100102 +Duncan R. Shaw,Electronic Commerce Strategy in the UK Electricity Industry: The Case of Electric Co and Dataflow Software.,2006,2,IJTHI,3,db/journals/ijthi/ijthi2.html#ShawHKSW06,https://doi.org/10.4018/jthi.2006070103 +Ewan Oiry,The Role of the Organizational Structure in the IT Appropriation: Explorative Case Studies into the Interaction between IT and Workforce Management.,2010,6,IJTHI,4,db/journals/ijthi/ijthi6.html#OiryOB10,https://doi.org/10.4018/jthi.2010100103 +Saad Ghaleb Yaseen,Investigating the Engage in Electronic Societies via Facebook in the Arab World.,2013,9,IJTHI,2,db/journals/ijthi/ijthi9.html#YaseenO13,https://doi.org/10.4018/jthi.2013040102 +Philip T. Kortum,The Effect of Choice and Announcement Duration on the Estimation of Telephone Hold Time.,2008,4,IJTHI,4,db/journals/ijthi/ijthi4.html#KortumBKB08,https://doi.org/10.4018/jthi.2008100102 +Mohammed Arif,Assessing the Usability for Arabic Language Websites.,2014,10,IJTHI,3,db/journals/ijthi/ijthi10.html#ArifG14,https://doi.org/10.4018/ijthi.2014070106 +Matthew W. Guah,Web Services in National Healthcare: The Impact of Public and Private Collaboration.,2005,1,IJTHI,2,db/journals/ijthi/ijthi1.html#GuahC05,https://doi.org/10.4018/jthi.2005040103 +Hannakaisa Isomäki,Different Levels of Information Systems Designers' Forms of Thought and Potential for Human-Centered Design.,2007,3,IJTHI,1,db/journals/ijthi/ijthi3.html#Isomaki07,https://doi.org/10.4018/jthi.2007010103 +Amon Rapp,A Qualitative Investigation of Gamification: Motivational Factors in Online Gamified Services and Applications.,2015,11,IJTHI,1,db/journals/ijthi/ijthi11.html#Rapp15,https://doi.org/10.4018/ijthi.2015010105 +Meriem Laifa,Forgiveness Predictors and Trust in a Digital Age.,2018,14,IJTHI,4,db/journals/ijthi/ijthi14.html#LaifaGAM18,https://doi.org/10.4018/IJTHI.2018100102 +Marie Eneman,Counter-Surveillance Strategies Adopted By Child Pornographers.,2009,5,IJTHI,4,db/journals/ijthi/ijthi5.html#Eneman09,https://doi.org/10.4018/jthi.2009062501 +Federica Cena,A Study on User Preferential Choices about Rating Scales.,2015,11,IJTHI,1,db/journals/ijthi/ijthi11.html#CenaV15,https://doi.org/10.4018/ijthi.2015010103 +Susana Bernardino,Unleashing the Intelligence of Cities by Social Innovation and Civic Crowdfunding: An Exploratory Study.,2018,14,IJTHI,2,db/journals/ijthi/ijthi14.html#BernardinoS18,https://doi.org/10.4018/IJTHI.2018040104 +Netta Iivari,Exploring the Rhetoric on Representing the User: Discourses on User Involvement in Academia and the IT Artifact Product Development Industry.,2006,2,IJTHI,4,db/journals/ijthi/ijthi2.html#Iivari06,https://doi.org/10.4018/jthi.2006100104 +Joanne Kuzma,Empirical Study of Cyber Harassment among Social Networks.,2013,9,IJTHI,2,db/journals/ijthi/ijthi9.html#Kuzma13,https://doi.org/10.4018/jthi.2013040104 +Giuseppina Pellegrino,Misunderstandings Around the Artifact: A KMS Failure Story.,2005,1,IJTHI,3,db/journals/ijthi/ijthi1.html#Pellegrino05,https://doi.org/10.4018/jthi.2005070102 +Haiyan Fan,Developing and Validating a Measure of Web Personalization Strategy.,2008,4,IJTHI,4,db/journals/ijthi/ijthi4.html#FanD08,https://doi.org/10.4018/jthi.2008100101 +Janet C. Dunlop,The U.S. Video Game Industry: Analyzing Representation of Gender and Race.,2007,3,IJTHI,2,db/journals/ijthi/ijthi3.html#Dunlop07,https://doi.org/10.4018/jthi.2007040106 +Niamh McNamara,Measuring the Human Element in Complex Technologies.,2008,4,IJTHI,1,db/journals/ijthi/ijthi4.html#McNamaraK08,https://doi.org/10.4018/jthi.2008010101 +Claire Gauzente,Does Anybody Read SMS-Advertising?: A Qualitative and Quantitative Study of Mobile Users' Attitudes and Perceived Ad-Clutter.,2010,6,IJTHI,2,db/journals/ijthi/ijthi6.html#Gauzente10,https://doi.org/10.4018/jthi.2010040102 +Zhang Wei,A Pairing-based Homomorphic Encryption Scheme for Multi-User Settings.,2016,12,IJTHI,2,db/journals/ijthi/ijthi12.html#Wei16,https://doi.org/10.4018/IJTHI.2016040106 +Nae-Wen Kuo,Applying the Theory of Planned Behavior to Predict Low-Carbon Tourism Behavior: A Modified Model from Taiwan.,2012,8,IJTHI,4,db/journals/ijthi/ijthi8.html#KuoD12,https://doi.org/10.4018/jthi.2012100103 +Philip D. Carter,The Emerging Story of the Machine.,2010,6,IJTHI,2,db/journals/ijthi/ijthi6.html#Carter10,https://doi.org/10.4018/jthi.2010040101 +Chang-Huei Lin,Study on the Performance and Exhaust Emissions of Motorcycle Engine Fuelled with Hydrogen-Gasoline Compound Fuel.,2012,8,IJTHI,3,db/journals/ijthi/ijthi8.html#LinCH12,https://doi.org/10.4018/jthi.2012070107 +Brian M. Kleiner,Human Factors in Organizational Design and Management of Industrial Plants.,2008,4,IJTHI,1,db/journals/ijthi/ijthi4.html#KleinerH08,https://doi.org/10.4018/jthi.2008010107 +Carina Andrade,Sentiment Analysis with Text Mining in Contexts of Big Data.,2017,13,IJTHI,3,db/journals/ijthi/ijthi13.html#AndradeS17,https://doi.org/10.4018/IJTHI.2017070104 +Khalid Alemerien,User-Friendly Security Patterns for Designing Social Network Websites.,2017,13,IJTHI,1,db/journals/ijthi/ijthi13.html#Alemerien17,https://doi.org/10.4018/IJTHI.2017010103 +Panagiotis Zaharias,Usability in the Context of e-Learning: A Framework Augmenting 'Traditional' Usability Constructs with Instructional Design and Motivation to Learn.,2009,5,IJTHI,4,db/journals/ijthi/ijthi5.html#Zaharias09,https://doi.org/10.4018/jthi.2009062503 +Mírian Oliveira,Infrastructure Profiles and Knowledge Sharing.,2017,13,IJTHI,3,db/journals/ijthi/ijthi13.html#OliveiraMCN17,https://doi.org/10.4018/IJTHI.2017070101 +Netta Iivari,'Listening to the Voices of the Users' in Product Based Software Development.,2009,5,IJTHI,3,db/journals/ijthi/ijthi5.html#IivariM09,https://doi.org/10.4018/jthi.2009070103 +Kevin P. Gallagher,Reframing Information System Design as Learning Across Communities of Practice.,2007,3,IJTHI,4,db/journals/ijthi/ijthi3.html#GallagherM07,https://doi.org/10.4018/jthi.2007100102 +Lin Lin,Multiple Dimensions of Multitasking Phenomenon.,2013,9,IJTHI,1,db/journals/ijthi/ijthi9.html#Lin13,https://doi.org/10.4018/jthi.2013010103 +Chia-Wen Tsai,How Much Can Computers and Internet Help?: A Long-Term Study of Web-Mediated Problem-Based Learning and Self-Regulated Learning.,2011,7,IJTHI,1,db/journals/ijthi/ijthi7.html#Tsai11,https://doi.org/10.4018/jthi.2011010105 +Clive Sanford,IT Implementation in a Developing Country Municipality: A Sociocognitive Analysis.,2008,4,IJTHI,3,db/journals/ijthi/ijthi4.html#SanfordB08,https://doi.org/10.4018/jthi.2008070104 +Sherina Idrish,Mobile Health Technology Evaluation: Innovativeness and Efficacy vs. Cost Effectiveness.,2017,13,IJTHI,2,db/journals/ijthi/ijthi13.html#IdrishRIN17,https://doi.org/10.4018/IJTHI.2017040101 +T. S. Amer,Earcons Versus Auditory Icons in Communicating Computing Events: Learning and User Preference.,2018,14,IJTHI,4,db/journals/ijthi/ijthi14.html#AmerJ18,https://doi.org/10.4018/IJTHI.2018100106 +Nancie Gunson,Usability Evaluation of Dialogue Designs for Voiceprint Authentication in Automated Telephone Banking.,2014,10,IJTHI,2,db/journals/ijthi/ijthi10.html#GunsonMMMJ14,https://doi.org/10.4018/ijthi.2014040104 +One-Soon Her,Optimality-Theoretic Lexical Mapping Theory: A Case Study of Locative Inversion.,2006,2,IJTHI,1,db/journals/ijthi/ijthi2.html#Her06,https://doi.org/10.4018/jthi.2006010105 +Edward Spence,Luciano Floridi's Metaphysical Theory of Information Ethics: A Critical Appraisal and an Alternative Neo-Gewirthian Information Ethics.,2010,6,IJTHI,1,db/journals/ijthi/ijthi6.html#Spence10,https://doi.org/10.4018/jthi.2010091701 +Rachel McLean,"Pixel Chix and Digi Guys: Exploring the Experience of the ""Digital Citizens"" in Two Contexts.",2008,4,IJTHI,2,db/journals/ijthi/ijthi4.html#McLean08,https://doi.org/10.4018/jthi.2008040101 +Ruth Chatelain-Jardón,An Extension to Simulated Web-Based Threats and Their Impact on Knowledge Communication Effectiveness.,2016,12,IJTHI,3,db/journals/ijthi/ijthi12.html#Chatelain-Jardon16,https://doi.org/10.4018/IJTHI.2016070105 +Sue Conger,New Pedagogical Approaches with Technologies.,2017,13,IJTHI,4,db/journals/ijthi/ijthi13.html#CongerKS17,https://doi.org/10.4018/IJTHI.2017100105 +Ian F. Alexander,A Taxonomy of Stakeholders: Human Roles in System Development.,2005,1,IJTHI,1,db/journals/ijthi/ijthi1.html#Alexander05,https://doi.org/10.4018/jthi.2005010102 +Yiqun Liu,An Improved Security 3D Watermarking Method Using Computational Integral Imaging Cryptosystem.,2016,12,IJTHI,2,db/journals/ijthi/ijthi12.html#LiuWZZLW16,https://doi.org/10.4018/IJTHI.2016040101 +Aikaterini Manthiou,Identifying and Responding to Customer Needs on Facebook Fan Pages.,2013,9,IJTHI,3,db/journals/ijthi/ijthi9.html#ManthiouCT13,https://doi.org/10.4018/jthi.2013070103 +Adams Bodomo,A Unicode Keyboard for African Languages: The Case of Dagaare and Twi.,2006,2,IJTHI,1,db/journals/ijthi/ijthi2.html#BodomoMCM06,https://doi.org/10.4018/jthi.2006010101 +Daniel M. Eveleth,The Influence of Recruitment Websites on Job-Seeker Perceptions of Organization and Job Fit.,2018,14,IJTHI,4,db/journals/ijthi/ijthi14.html#EvelethSB18,https://doi.org/10.4018/IJTHI.2018100101 +Pertti Saariluoma,Mental Contents in Interacting with a Multiobjective Optimization Program.,2008,4,IJTHI,3,db/journals/ijthi/ijthi4.html#SaariluomaKMM08,https://doi.org/10.4018/jthi.2008070103 +Norazah Mohd Suki,Factors Enhancing Employed Job Seekers Intentions to Use Social Networking Sites as a Job Search Tool.,2011,7,IJTHI,2,db/journals/ijthi/ijthi7.html#SukiRMS11,https://doi.org/10.4018/jthi.2011040105 +Margreet B. Michel-Verkerke,USE IT to Create Patient-Relation Management for Multiple Sclerosis Patients.,2005,1,IJTHI,4,db/journals/ijthi/ijthi1.html#Michel-VerkerkeSS05,https://doi.org/10.4018/jthi.2005100104 +Probir Kumar Banerjee,IT Pay-Off: Tracing the Antecedents.,2015,11,IJTHI,1,db/journals/ijthi/ijthi11.html#Banerjee15,https://doi.org/10.4018/ijthi.2015010101 +Tanya V. Bondarouk,Successes and Failures of SAP Implementation: A Learning Perspective.,2007,3,IJTHI,4,db/journals/ijthi/ijthi3.html#BondaroukR07,https://doi.org/10.4018/jthi.2007100103 +Mary R. Lind,A De-Construction of Wireless Device Usage.,2007,3,IJTHI,2,db/journals/ijthi/ijthi3.html#Lind07,https://doi.org/10.4018/jthi.2007040103 +Olfa Bouzaabia,Determinants of Internet Use by Senior Generation: A Cross Cultural Study.,2016,12,IJTHI,1,db/journals/ijthi/ijthi12.html#BouzaabiaBC16,https://doi.org/10.4018/IJTHI.2016010105 +Nuno Carvalho,E-Rulemaking: Lessons from the Literature.,2018,14,IJTHI,2,db/journals/ijthi/ijthi14.html#CarvalhoL18,https://doi.org/10.4018/IJTHI.2018040103 +Sheng-Yi Hsiao,Chemical-Free and Reusable Cellular Analysis: Electrochemical Impedance Spectroscopy with a Transparent ITO Culture Chip.,2012,8,IJTHI,3,db/journals/ijthi/ijthi8.html#HsiaoCYHLHLL12,https://doi.org/10.4018/jthi.2012070101 +Andree E. Widjaja,Investigating Factors Affecting Central Bank Information Systems Success: The Case of the Central Bank of Mongolia.,2018,14,IJTHI,4,db/journals/ijthi/ijthi14.html#WidjajaCG18,https://doi.org/10.4018/IJTHI.2018100103 +T. S. Amer,Information Technology Exception Messages: A Proposed Set of Information Elements and Format for Consistency and Informativeness.,2010,6,IJTHI,1,db/journals/ijthi/ijthi6.html#AmerM10,https://doi.org/10.4018/jthi.2010091704 +Shu-Hui Chuang,Behavioral Intention of Using Social Networking Site: A Comparative Study of Taiwanese and Thai Facebook Users.,2017,13,IJTHI,1,db/journals/ijthi/ijthi13.html#ChuangLCK17,https://doi.org/10.4018/IJTHI.2017010104 +Dragos Vieru,The Resilience of Pre-Merger Fields of Practice During Post-Merger Information Systems Development.,2018,14,IJTHI,3,db/journals/ijthi/ijthi14.html#VieruR18,https://doi.org/10.4018/IJTHI.2018070104 +Tanya J. McGill,From Beliefs to Success: Utilizing an Expanded TAM to Predict Web Page Development Success.,2007,3,IJTHI,3,db/journals/ijthi/ijthi3.html#McGillB07,https://doi.org/10.4018/jthi.2007070104 +Mie Nørgaard,Working Together to Improve Usability: Exploring Challenges and Successful Practices.,2010,6,IJTHI,1,db/journals/ijthi/ijthi6.html#NorgaardH10,https://doi.org/10.4018/jthi.2010091703 +Vincent Dutot,Adoption of Social Media Using Technology Acceptance Model: The Generational Effect.,2014,10,IJTHI,4,db/journals/ijthi/ijthi10.html#Dutot14,https://doi.org/10.4018/ijthi.2014100102 +Geoffrey S. Hubona,The Paleolithic Stone Age Effect? : Gender Differences Performing Specific Computer-Generated Spatial Tasks.,2006,2,IJTHI,2,db/journals/ijthi/ijthi2.html#HubonaS06,https://doi.org/10.4018/jthi.2006040102 +Angel M. Ojeda-Castro,Learning Management System Use to Increase Mathematics Knowledge and Skills in Puerto Rico.,2017,13,IJTHI,2,db/journals/ijthi/ijthi13.html#Ojeda-CastroMS17,https://doi.org/10.4018/IJTHI.2017040106 +Bolanle A. Olaniran,Organizational Communication: Assessment of Videoconferencing as a Medium for Meetings in the Workplace.,2009,5,IJTHI,2,db/journals/ijthi/ijthi5.html#Olaniran09,https://doi.org/10.4018/jthi.2009040104 +Panagiotis Zaharias,Cross-Cultural Differences in Perceptions of E-Learning Usability: An Empirical Investigation.,2008,4,IJTHI,3,db/journals/ijthi/ijthi4.html#Zaharias08,https://doi.org/10.4018/jthi.2008070101 +Nancy M. Chase,Effects of Email Utilization on Higher Education Professionals.,2011,7,IJTHI,4,db/journals/ijthi/ijthi7.html#ChaseC11,https://doi.org/10.4018/jthi.2011100103 +Gareth Peevers,Usability Study of Fingerprint and Palmvein Biometric Technologies at the ATM.,2013,9,IJTHI,1,db/journals/ijthi/ijthi9.html#PeeversWDJ13,https://doi.org/10.4018/jthi.2013010106 +Charlie C. Chen,Differential Impacts of Social Presence on the Behavior Modeling Approach.,2005,1,IJTHI,2,db/journals/ijthi/ijthi1.html#ChenOH05,https://doi.org/10.4018/jthi.2005040104 +Cynthia L. Corritore,Online Trust and Health Information Websites.,2012,8,IJTHI,4,db/journals/ijthi/ijthi8.html#CorritoreWKM12,https://doi.org/10.4018/jthi.2012100106 +Panayiotis Koutsabasis,Perceived Website Aesthetics by Users and Designers: Implications for Evaluation Practice.,2013,9,IJTHI,2,db/journals/ijthi/ijthi9.html#KoutsabasisI13,https://doi.org/10.4018/jthi.2013040103 +Ted (Tainyi) Luor,Minding the Gap Between First and Continued Usage of a Corporate E-Learning English-language Program.,2012,8,IJTHI,1,db/journals/ijthi/ijthi8.html#LuorLJY12,https://doi.org/10.4018/jthi.2012010104 +Ajax Persaud,Quality and Acceptance of Crowdsourced Translation of Web Content.,2017,13,IJTHI,1,db/journals/ijthi/ijthi13.html#PersaudO17,https://doi.org/10.4018/IJTHI.2017010106 +Sylvie Albert,Collaboration Challenges in Community Telecommunication Networks.,2007,3,IJTHI,2,db/journals/ijthi/ijthi3.html#AlbertL07,https://doi.org/10.4018/jthi.2007040102 +Swadesh Kumar Samanta,Automatic Language Translation: An Enhancement to the Mobile Messaging Services.,2011,7,IJTHI,1,db/journals/ijthi/ijthi7.html#SamantaWG11,https://doi.org/10.4018/jthi.2011010101 +Hao-Chiang Koong Lin,Influence of Cognitive Style and Cooperative Learning on Application of Augmented Reality to Natural Science Learning.,2015,11,IJTHI,4,db/journals/ijthi/ijthi11.html#LinSWT15,https://doi.org/10.4018/IJTHI.2015100103 +Yi-Fen Chen,Influence of Website Design on Consumer Emotion and Purchase Intention in Travel Websites.,2016,12,IJTHI,4,db/journals/ijthi/ijthi12.html#ChenW16,https://doi.org/10.4018/IJTHI.2016100102 +Chia-Ying Li,Understanding University Students' System Acceptance Behavior: The Roles of Personality Trait and Subjective Norms.,2016,12,IJTHI,3,db/journals/ijthi/ijthi12.html#Li16,https://doi.org/10.4018/IJTHI.2016070107 +Steffen Roth,Fashionable Functions: A Google Ngram View of Trends in Functional Differentiation (1800-2000).,2014,10,IJTHI,2,db/journals/ijthi/ijthi10.html#Roth14,https://doi.org/10.4018/ijthi.2014040103 +Peerayuth Charoensukmongkol,Contribution of Mindfulness to Individuals' Tendency to Believe and Share Social Media Content.,2016,12,IJTHI,3,db/journals/ijthi/ijthi12.html#Charoensukmongkol16,https://doi.org/10.4018/IJTHI.2016070104 +Tao Lin,Markov Chain Models for Menu Item Prediction.,2013,9,IJTHI,4,db/journals/ijthi/ijthi9.html#LinXMT13,https://doi.org/10.4018/ijthi.2013100105 +Petteri Repo,Inventing Use for a Novel Mobile Service.,2006,2,IJTHI,2,db/journals/ijthi/ijthi2.html#RepoHPT06,https://doi.org/10.4018/jthi.2006040103 +Susan E. George,Believe It or Not: Virtual Religion in the 21st Century.,2005,1,IJTHI,1,db/journals/ijthi/ijthi1.html#George05,https://doi.org/10.4018/jthi.2005010103 +Andrea Carugati,Development of E-Government Services For Cultural Heritage: Examining the Key Dimensions.,2007,3,IJTHI,2,db/journals/ijthi/ijthi3.html#AndreaE07,https://doi.org/10.4018/jthi.2007040104 +Osemeke Mosindi,An Exploratory Theoretical Framework for Understanding Information Behaviour.,2011,7,IJTHI,2,db/journals/ijthi/ijthi7.html#MosindiS11,https://doi.org/10.4018/jthi.2011040101 +Cécile Godé,Improving Decision Making in Extreme Situations: The Case of a Military Decision Support System.,2013,9,IJTHI,1,db/journals/ijthi/ijthi9.html#GodeL13,https://doi.org/10.4018/jthi.2013010101 +Mohsin Ikram,An Empirical Investigation of Smartphone Adoption in Pakistan.,2018,14,IJTHI,3,db/journals/ijthi/ijthi14.html#IkramKJ18,https://doi.org/10.4018/IJTHI.2018070101 +Jessica Lichy,Understanding the Culture of Young Internet Users in a Rapidly Changing Society.,2014,10,IJTHI,4,db/journals/ijthi/ijthi10.html#LichyK14,https://doi.org/10.4018/ijthi.2014100101 +Kai Yang,D-S Evidence Theory Based Trust Detection Scheme in Wireless Sensor Networks.,2016,12,IJTHI,2,db/journals/ijthi/ijthi12.html#YangLLW16,https://doi.org/10.4018/IJTHI.2016040104 +Mario Bourgault,Moderating Effect of Team Distributedness on Organizational Dimensions for Innovation Project Success.,2010,6,IJTHI,4,db/journals/ijthi/ijthi6.html#BourgaultDSD10,https://doi.org/10.4018/jthi.2010100102 +Sen-Chi Yu,Does Happiness in the Cyberspace Promote That in the Real-World?: Testing on Reciprocal Relationships Using Cross-Lagged Structural Equation Modeling.,2015,11,IJTHI,2,db/journals/ijthi/ijthi11.html#YuC15,https://doi.org/10.4018/ijthi.2015040102 +Anastasia Papazafeiropoulou,Interpretive Flexibility Along the Innovation Decision Process of the UK NHS Care Records Service (NCRS): Insights from a Local Implementation Case Study.,2007,3,IJTHI,2,db/journals/ijthi/ijthi3.html#PapazafeiropoulouG07,https://doi.org/10.4018/jthi.2007040101 +Sarah Spiekermann,The Desire for Privacy: Insights into the Views and Nature of the Early Adopters of Privacy Services.,2005,1,IJTHI,1,db/journals/ijthi/ijthi1.html#Spiekermann05,https://doi.org/10.4018/jthi.2005010104 +Abram L. J. Walton,Graduate Students' Perceptions of Privacy and Closed Circuit Television Systems in Public Settings.,2011,7,IJTHI,3,db/journals/ijthi/ijthi7.html#WaltonDS11,https://doi.org/10.4018/jthi.2011070104 +Reima Suomi,GSM-Based SMS Time Reservation System for Dental Care.,2007,3,IJTHI,3,db/journals/ijthi/ijthi3.html#SuomiSM07,https://doi.org/10.4018/jthi.2007070105 +Richard Diamond,Several Simple Shared Stable Decision Premises for Technochange.,2007,3,IJTHI,4,db/journals/ijthi/ijthi3.html#Diamond07,https://doi.org/10.4018/jthi.2007100105 +Claus Hohmann,Emotional Digitalization as Technology of the Postmodern: A Reflexive Examination from the View of the Industry.,2007,3,IJTHI,1,db/journals/ijthi/ijthi3.html#Hohmann07,https://doi.org/10.4018/jthi.2007010102 +A. Y. M. Atiquil Islam,Efficacy of the Technology Satisfaction Model (TSM): An Empirical Study.,2015,11,IJTHI,2,db/journals/ijthi/ijthi11.html#IslamLS15,https://doi.org/10.4018/ijthi.2015040103 +Luisa Domingues,The Relevance of Intellectual Capital in Shared Service Centres: An Exploratory Research on the Contribution of Three Models from Different Areas of Knowledge.,2018,14,IJTHI,2,db/journals/ijthi/ijthi14.html#DominguesPS18,https://doi.org/10.4018/IJTHI.2018040101 +Michail Tsikerdekis,Designing a Successful Collaborative Wiki: The Choice between Outcome Quality and Online Community Needs.,2017,13,IJTHI,2,db/journals/ijthi/ijthi13.html#Tsikerdekis17,https://doi.org/10.4018/IJTHI.2017040102 +Sylvaine Castellano,The Influence of Social Networks on E-Reputation: How Sportspersons Manage the Relationship with Their Online Community.,2014,10,IJTHI,4,db/journals/ijthi/ijthi10.html#CastellanoKCK14,https://doi.org/10.4018/ijthi.2014100105 +Fauzia Jabeen,Understanding the Technology Receptivity in Higher Education: Evidence From the UAE.,2018,14,IJTHI,3,db/journals/ijthi/ijthi14.html#JabeenKA18,https://doi.org/10.4018/IJTHI.2018070103 +Zhiming Wu,Explore the Use of Handwriting Information and Machine Learning Techniques in Evaluating Mental Workload.,2016,12,IJTHI,3,db/journals/ijthi/ijthi12.html#WuLT16,https://doi.org/10.4018/IJTHI.2016070102 +Gokhan Aydin,Effect of Demographics on Use Intention of Gamified Systems.,2018,14,IJTHI,1,db/journals/ijthi/ijthi14.html#Aydin18,https://doi.org/10.4018/IJTHI.2018010101 +Li-Ling Chao,The Development and Learning Effectiveness of a Teaching Module for the Algal Fuel Cell: A Renewable and Sustainable Battery.,2012,8,IJTHI,4,db/journals/ijthi/ijthi8.html#ChaoWCLLGW12,https://doi.org/10.4018/jthi.2012100101 +Shari R. Veil,Adoption Barriers in a High-Risk Agricultural Environment.,2010,6,IJTHI,2,db/journals/ijthi/ijthi6.html#Veil10a,https://doi.org/10.4018/jthi.2010040103 +Dick Stenmark,Organisational Creativity in Context: Learning from a Failing Attempt to Introduce IT Support for Creativity.,2005,1,IJTHI,4,db/journals/ijthi/ijthi1.html#Stenmark05,https://doi.org/10.4018/jthi.2005100105 +Vimala Balakrishnan,Hand Measurements and Gender Effect on Mobile Phone Messaging Satisfaction: A Study Based on Keypad Design Factors.,2008,4,IJTHI,4,db/journals/ijthi/ijthi4.html#BalakrishnanY08,https://doi.org/10.4018/jthi.2008100103 +Lars Göran Wallgren,IT Managers' Narratives on Subordinates' Motivation at Work: A Case Study.,2011,7,IJTHI,3,db/journals/ijthi/ijthi7.html#WallgrenLA11,https://doi.org/10.4018/jthi.2011070103 +Wong Ping-Wai,The Specification of POS Tagging of the Hong Kong University Cantonese Corpus.,2006,2,IJTHI,1,db/journals/ijthi/ijthi2.html#Ping-Wai06,https://doi.org/10.4018/jthi.2006010102 +Zaid I. Al-Shqairat,The Role of Partnership in E-Government Readiness: The Knowledge Stations (KSs) Initiative in Jordan.,2011,7,IJTHI,3,db/journals/ijthi/ijthi7.html#Al-ShqairatA11,https://doi.org/10.4018/jthi.2011070102 +Bendik Bygstad,Managing Socio-Technical Integration in Iterative Information System Development Projects.,2006,2,IJTHI,4,db/journals/ijthi/ijthi2.html#Bygstad06,https://doi.org/10.4018/jthi.2006100101 +Kristina Lauche,Overcoming Remoteness: Human Factors Assessment of Real-Time Monitoring and Supporting in Drilling Operations.,2008,4,IJTHI,1,db/journals/ijthi/ijthi4.html#Lauche08,https://doi.org/10.4018/jthi.2008010106 +Mei-Shiu Chiu,Gaps Between Valuing and Purchasing Green-Technology Products: Product and Gender Differences.,2012,8,IJTHI,3,db/journals/ijthi/ijthi8.html#Chiu12,https://doi.org/10.4018/jthi.2012070106 +Abdou Illia,The Moderating Effect of Motivation to Comply and Perceived Critical Mass in Smartphones' Adoption.,2018,14,IJTHI,3,db/journals/ijthi/ijthi14.html#IlliaLLA18,https://doi.org/10.4018/IJTHI.2018070102 +Jessica Lichy,Understanding How Students Interact With Technology For Knowledge-Sharing: The Emergence of a New 'Social' Divide in France.,2016,12,IJTHI,1,db/journals/ijthi/ijthi12.html#LichyK16,https://doi.org/10.4018/IJTHI.2016010106 +Thomas Stenger,Social Media and Online Reputation Management as Practice: First Steps Towards Social CRM?,2014,10,IJTHI,4,db/journals/ijthi/ijthi10.html#Stenger14,https://doi.org/10.4018/ijthi.2014100104 +Michael S. Geary,Smart Phone Keyboard Layout Usability.,2018,14,IJTHI,4,db/journals/ijthi/ijthi14.html#GearyL18,https://doi.org/10.4018/IJTHI.2018100107 +Yi-Lin Jan,Development of an Evaluation Instrument for Green Building Literacy among College Students in Taiwan.,2012,8,IJTHI,3,db/journals/ijthi/ijthi8.html#JanLSWHS12,https://doi.org/10.4018/jthi.2012070104 +Pankaj Kamthan,A Framework for Integrating the Social Web Environment in Pattern Engineering.,2009,5,IJTHI,2,db/journals/ijthi/ijthi5.html#Kamthan09,https://doi.org/10.4018/jthi.2009092303 +Jordi Vallverdú,Fake Empathy and Human-Robot Interaction (HRI): A Preliminary Study.,2018,14,IJTHI,1,db/journals/ijthi/ijthi14.html#VallverduNOML18,https://doi.org/10.4018/IJTHI.2018010103 +Shang Gao 0002,An Empirical Study of the Adoption of an Indoor Location-Based Service: Finding Reading Rooms.,2017,13,IJTHI,2,db/journals/ijthi/ijthi13.html#GaoKTT17,https://doi.org/10.4018/IJTHI.2017040105 +Xiuguang Li,An Exact and Efficient Privacy-Preserving Spatiotemporal Matching in Mobile Social Networks.,2016,12,IJTHI,2,db/journals/ijthi/ijthi12.html#LiHNYL16,https://doi.org/10.4018/IJTHI.2016040103 +Anis Khedhaouria,Perceived Enjoyment and the Effect of Gender on Continuance Intention for Mobile Internet Services.,2014,10,IJTHI,2,db/journals/ijthi/ijthi10.html#KhedhaouriaB14,https://doi.org/10.4018/ijthi.2014040101 +Han-Jen Niu,Shopping in Cyberspace: Adolescent Technology Acceptance Attitude with Decision-Making Styles.,2014,10,IJTHI,3,db/journals/ijthi/ijthi10.html#Niu14,https://doi.org/10.4018/ijthi.2014070101 +Michael S. Wogalter,Trusting the Internet: Cues Affecting Perceived Credibility.,2008,4,IJTHI,1,db/journals/ijthi/ijthi4.html#WogalterM08,https://doi.org/10.4018/jthi.2008010105 +Seppo Vayrnen,Finish Occupational Safety Card System: Special Training Intervention and its Preliminary Effects.,2008,4,IJTHI,1,db/journals/ijthi/ijthi4.html#VayrnenHKL08,https://doi.org/10.4018/jthi.2008010102 +Debra Howcroft,An Ethnographic Study of Is Investment Appraisal.,2007,3,IJTHI,3,db/journals/ijthi/ijthi3.html#HowcroftM07,https://doi.org/10.4018/jthi.2007070106 +Ming-Ying Hsu,Simulation-Aided Optimal Microfluidic Sorting for Monodispersed Microparticles.,2012,8,IJTHI,3,db/journals/ijthi/ijthi8.html#HsuYWL12,https://doi.org/10.4018/jthi.2012070102 +Ryan Lange,Grand Theft Auto(mation): Travel Mode Habits and Video Games.,2015,11,IJTHI,3,db/journals/ijthi/ijthi11.html#LangeBBL15,https://doi.org/10.4018/ijthi.2015070103 +Barbara Jones,Tacit Knowledge in Rapidly Evolving Organisational Environments.,2007,3,IJTHI,1,db/journals/ijthi/ijthi3.html#JonesFM07,https://doi.org/10.4018/jthi.2007010104 +Rui Chen 0003,Adaptive Windows Layout Based on Evolutionary Multi-Objective Optimization.,2013,9,IJTHI,3,db/journals/ijthi/ijthi9.html#ChenXLC13,https://doi.org/10.4018/jthi.2013070105 +Jih-Hsuan Lin,The Contributions of Perceived Graphic and Enactive Realism to Enjoyment and Engagement in Active Video Games.,2015,11,IJTHI,3,db/journals/ijthi/ijthi11.html#LinP15,https://doi.org/10.4018/ijthi.2015070101 +Pradeep Waychal,Universality of Egoless Behavior of Software Engineering Students.,2018,14,IJTHI,1,db/journals/ijthi/ijthi14.html#WaychalC18,https://doi.org/10.4018/IJTHI.2018010106 +Frank G. Goethals,Exploring the Choice for Default Systems.,2017,13,IJTHI,1,db/journals/ijthi/ijthi13.html#Goethals17,https://doi.org/10.4018/IJTHI.2017010102 +A. Y. M. Atiquil Islam,Development and Validation of the Technology Adoption and Gratification (TAG) Model in Higher Education: A Cross-Cultural Study Between Malaysia and China.,2016,12,IJTHI,3,db/journals/ijthi/ijthi12.html#Islam16,https://doi.org/10.4018/IJTHI.2016070106 +José Bessa,Information Management Through a Multidimensional Information Systems Architecture: A University of Trás-os-Montes e Alto Douro Case Study.,2017,13,IJTHI,4,db/journals/ijthi/ijthi13.html#BessaBCMG17,https://doi.org/10.4018/IJTHI.2017100101 +Hua-Yueh Liu,From Cold War Island to Low Carbon Island: A Study of Kinmen Island.,2012,8,IJTHI,4,db/journals/ijthi/ijthi8.html#Liu12,https://doi.org/10.4018/jthi.2012100104 +Garry L. White,Relationship Between Information Privacy Concerns and Computer Self-Efficacy.,2008,4,IJTHI,2,db/journals/ijthi/ijthi4.html#WhiteSCM08,https://doi.org/10.4018/jthi.2008040104 +Tao Zhou 0007,An Empirical Examination of Users' Switch from Online Payment to Mobile Payment.,2015,11,IJTHI,1,db/journals/ijthi/ijthi11.html#Zhou15,https://doi.org/10.4018/ijthi.2015010104 +Liliana Vale Costa,Factors Influencing the Adoption of Video Games in Late Adulthood: A Survey of Older Adult Gamers.,2016,12,IJTHI,1,db/journals/ijthi/ijthi12.html#CostaV16,https://doi.org/10.4018/IJTHI.2016010103 +Judy Chuan-Chuan Lin,A Multi-Facet Analysis of Factors Affecting the Adoption of Multimedia Messaging Service (MMS).,2009,5,IJTHI,4,db/journals/ijthi/ijthi5.html#LinH09,https://doi.org/10.4018/jthi.2009062502 +Don Gotterbarn,Developing Software in Bicultural Context: The Role of a SoDIS Inspection.,2006,2,IJTHI,2,db/journals/ijthi/ijthi2.html#Gotterbarn06,https://doi.org/10.4018/jthi.2006040101 +Jialin Ma,A Message Topic Model for Multi-Grain SMS Spam Filtering.,2016,12,IJTHI,2,db/journals/ijthi/ijthi12.html#MaZWY16,https://doi.org/10.4018/IJTHI.2016040107 +Kirsty Williamson,To Choose or Not to Choose: Exploring Australians' Views about Internet Banking.,2006,2,IJTHI,4,db/journals/ijthi/ijthi2.html#WilliamsonLSS06,https://doi.org/10.4018/jthi.2006100102 +Sen-Chi Yu,Happiness or Addiction: An Example of Taiwanese College Students' Use of Facebook.,2015,11,IJTHI,4,db/journals/ijthi/ijthi11.html#Yu15,https://doi.org/10.4018/IJTHI.2015100102 +Omar Salameh Al-Hujran,Factors Influencing Citizen Adoption of E-Government in Developing Countries: The Case of Jordan.,2013,9,IJTHI,2,db/journals/ijthi/ijthi9.html#HujranAA13,https://doi.org/10.4018/jthi.2013040101 +Bangaly Kaba,An Empirical Investigation of External Factors Influencing Mobile Technology Use in Canada: A Preliminary Study.,2012,8,IJTHI,2,db/journals/ijthi/ijthi8.html#KabaO12,https://doi.org/10.4018/jthi.2012040101 +Ramón Tirado Morueta,B-Learning at Universities in Andalusia (Spain): From Traditional to Student-Centred Learning.,2012,8,IJTHI,2,db/journals/ijthi/ijthi8.html#MoruetaGG12,https://doi.org/10.4018/jthi.2012040104 +Ned Kock,Incorporating Simulated Animal Attacks in Human Technology Interaction Interfaces: The Predictive Power of Biosemiotics and Evolutionary Psychology.,2008,4,IJTHI,4,db/journals/ijthi/ijthi4.html#Kock08,https://doi.org/10.4018/jthi.2008100104 +Manel Guechtouli,E-HRM's Impact on an Environmental Scanning Process: How Can Technology Support the Selection of Information?,2010,6,IJTHI,3,db/journals/ijthi/ijthi6.html#Guechtouli10,https://doi.org/10.4018/jthi.2010070104 +Arminda Pata,Applying Metaheuristics to Minimize Work-Related Musculoskeletal Disorders.,2018,14,IJTHI,2,db/journals/ijthi/ijthi14.html#PataM18,https://doi.org/10.4018/IJTHI.2018040102 +Malte Geib,Toward Improved Community-Supporting Systems Design: A Study of Professional Community Activity.,2005,1,IJTHI,4,db/journals/ijthi/ijthi1.html#GeibBKB05,https://doi.org/10.4018/jthi.2005100102 +Alenka Zabukovec,The Impact of Information Visualisation on the Quality of Information in Business Decision-Making.,2015,11,IJTHI,2,db/journals/ijthi/ijthi11.html#ZabukovecJ15,https://doi.org/10.4018/ijthi.2015040104 +Damian Okaibedi Eke,ICT Integration in Nigeria: The Socio-Cultural Constraints.,2011,7,IJTHI,2,db/journals/ijthi/ijthi7.html#Eke11,https://doi.org/10.4018/jthi.2011040103 +Moutusy Maity,The Role of Information Quality of a Website: Examining Consumer Information Search through the IS Success Model.,2014,10,IJTHI,1,db/journals/ijthi/ijthi10.html#Maity14,https://doi.org/10.4018/ijthi.2014010105 +Anita Greenhill,"Exploring ""Events"" as an Information Systems Research Methodology.",2007,3,IJTHI,1,db/journals/ijthi/ijthi3.html#GreenhillF07,https://doi.org/10.4018/jthi.2007010101 +George E. Heilman,Validating the End-User Computing Satisfaction Survey Instrument in Mexico.,2006,2,IJTHI,4,db/journals/ijthi/ijthi2.html#HeilmanB06,https://doi.org/10.4018/jthi.2006100105 +Wei-Tsong Lee,Using the Kalman Filter for Auto Bit-rate H.264 Streaming Based on Human Interaction.,2013,9,IJTHI,4,db/journals/ijthi/ijthi9.html#LeeWCCS13,https://doi.org/10.4018/ijthi.2013100104 +Masa Inakage,Designing Ubiquitous Content for Daily Lifestyle.,2009,5,IJTHI,1,db/journals/ijthi/ijthi5.html#InakageUTK09,https://doi.org/10.4018/jthi.2009010103 +John Weckert,Giving and Taking Offence in a Global Context.,2007,3,IJTHI,3,db/journals/ijthi/ijthi3.html#Weckert07,https://doi.org/10.4018/jthi.2007070103 +Tiko Iyamu,The Interplay Between Human and Structure in IT Strategy.,2014,10,IJTHI,1,db/journals/ijthi/ijthi10.html#Iyamu14,https://doi.org/10.4018/ijthi.2014010106 +Tsang-Hsiung Lee,Enhance Students' Computing Skills via Web-Mediated Self-Regulated Learning with Feedback in Blended Environment.,2010,6,IJTHI,1,db/journals/ijthi/ijthi6.html#LeeST10,https://doi.org/10.4018/jthi.2010091702 +Chin-Lung Hsu,Exploring the Player Flow Experience in E-Game Playing.,2010,6,IJTHI,2,db/journals/ijthi/ijthi6.html#Hsu10,https://doi.org/10.4018/jthi.2010040104 +Sajjad M. Jasimuddin,Face-to-Face Interface in Software Development: Empirical Evidence from a Geographically Dispersed High-Tech Laboratory.,2014,10,IJTHI,1,db/journals/ijthi/ijthi10.html#Jasimuddin14,https://doi.org/10.4018/ijthi.2014010104 +Jia Shen,An Examination of Factors Associated with User Acceptance of Social Shopping Websites.,2011,7,IJTHI,1,db/journals/ijthi/ijthi7.html#ShenE11,https://doi.org/10.4018/jthi.2011010102 +Olli Pitkänen,Humans and Emerging RFID Systems: Evaluating Data Protection Law on the User Scenario Basis.,2009,5,IJTHI,2,db/journals/ijthi/ijthi5.html#PitkanenN09,https://doi.org/10.4018/jthi.2009040105 +John C. McCarthy,A Practitioner-Centered Assessment of a User-Experience Framework.,2005,1,IJTHI,2,db/journals/ijthi/ijthi1.html#McCarthyWM05,https://doi.org/10.4018/jthi.2005040101 +Florian Fischer,Local Search Applications and Urban Public Space: Interfacing Networked Individualism and Tangible Urbanism.,2014,10,IJTHI,1,db/journals/ijthi/ijthi10.html#Fischer14,https://doi.org/10.4018/ijthi.2014010103 +Yonggao Yang,Use Mobile Devices to Wirelessly Operate Computers.,2013,9,IJTHI,1,db/journals/ijthi/ijthi9.html#YangWL13,https://doi.org/10.4018/jthi.2013010105 +Per Arne Godejord,Getting Involved: Perspectives on the Use of True Projects as Tools for Developing Ethical Thinking in Computer Science Students.,2008,4,IJTHI,2,db/journals/ijthi/ijthi4.html#Godejord08,https://doi.org/10.4018/jthi.2008040102 +John R. Drake,Searching for Alternatives: Does Your Disposition Matter?,2013,9,IJTHI,1,db/journals/ijthi/ijthi9.html#DrakeB13,https://doi.org/10.4018/jthi.2013010102 +Ishraga Khattab,Mobile Phone Use Across Cultures: A Comparison Between the United Kingdom and Sudan.,2008,4,IJTHI,2,db/journals/ijthi/ijthi4.html#KhattabL08,https://doi.org/10.4018/jthi.2008040103 +Tao Lin,Automatic Cognitive Load Classification Using High-Frequency Interaction Events: An Exploratory Study.,2013,9,IJTHI,3,db/journals/ijthi/ijthi9.html#LinLWT13,https://doi.org/10.4018/jthi.2013070106 +Linwu Gu,The Influence of Information Control upon On-line Shopping Behavior.,2011,7,IJTHI,1,db/journals/ijthi/ijthi7.html#GuAWW11,https://doi.org/10.4018/jthi.2011010104 +Niousha Shahidi,Assessment of A Mobile Educational Coaching App: Exploring Adoption Patterns and Barriers in France.,2018,14,IJTHI,1,db/journals/ijthi/ijthi14.html#ShahidiTC18,https://doi.org/10.4018/IJTHI.2018010102 +Ingerid Rødseth,A Motive Analysis as a First Step in Designing Technology for the use of Intuition in Criminal Investigation.,2009,5,IJTHI,1,db/journals/ijthi/ijthi5.html#Rodseth09,https://doi.org/10.4018/jthi.2009010102 +Stephanie Moser,Public Representation of Ubiquitous ICT Applications in the Outpatient Health Sector.,2011,7,IJTHI,4,db/journals/ijthi/ijthi7.html#MoserBS11,https://doi.org/10.4018/jthi.2011100105 +Hilkka Poutanen,The Many Sides of Human Resource Information Systems.,2010,6,IJTHI,4,db/journals/ijthi/ijthi6.html#PoutanenP10,https://doi.org/10.4018/jthi.2010100101 +Alan J. Reid,A Case Study in Smartphone Usage and Gratification in the Age of Narcissism.,2017,13,IJTHI,2,db/journals/ijthi/ijthi13.html#ReidT17,https://doi.org/10.4018/IJTHI.2017040103 +Shun-Mei Wang,Sustainable Campus Project: Potential for Energy Conservation and Carbon Reduction Education in Taiwan.,2012,8,IJTHI,3,db/journals/ijthi/ijthi8.html#WangKC12,https://doi.org/10.4018/jthi.2012070103 +Wei Liu 0009,Internet-Enabled User Interfaces for Distance Learning.,2009,5,IJTHI,1,db/journals/ijthi/ijthi5.html#LiuTPCCLTNQV09,https://doi.org/10.4018/jthi.2009010105 +Jan Gulliksen,User-Centred Systems Design as Organizational Change: A Longitudinal Action Research Project to Improve Usability and the Computerized Work Environment in a Public Authority.,2009,5,IJTHI,3,db/journals/ijthi/ijthi5.html#GulliksenCSEK09,https://doi.org/10.4018/jthi.2009070102 +Karim Mezghani,Factors Explaining IS Managers Attitudes toward Cloud Computing Adoption.,2016,12,IJTHI,1,db/journals/ijthi/ijthi12.html#MezghaniA16,https://doi.org/10.4018/IJTHI.2016010101 +Pertti Saariluoma,Appraisal and Mental Contents in Human-Technology Interaction.,2015,11,IJTHI,2,db/journals/ijthi/ijthi11.html#SaariluomaJ15,https://doi.org/10.4018/ijthi.2015040101 +Etienne Denoual,A Method to Quantify Corpus Similarity and its Application to Quantifying the Degree of Literality in a Document.,2006,2,IJTHI,1,db/journals/ijthi/ijthi2.html#Denoual06,https://doi.org/10.4018/jthi.2006010104 +Ivo Pedro Gonzalez Junior,A Proposal for UTAUT Model Extension in the Virtual Learning Environments use as Presential Learning Support Context.,2017,13,IJTHI,3,db/journals/ijthi/ijthi13.html#JuniorS17,https://doi.org/10.4018/IJTHI.2017070103 +Jan Erik Vinnem,Human-Technical Interface of Collision Risk Under Dynamic Conditions: An Exploratory Learning Case from the North Sea.,2008,4,IJTHI,1,db/journals/ijthi/ijthi4.html#VinnemL08,https://doi.org/10.4018/jthi.2008010103 +Andrew McDonald 0002,A Comparative Case Study of Indonesian and UK Organisational Culture Differences in IS Project Management.,2011,7,IJTHI,2,db/journals/ijthi/ijthi7.html#McDonaldH11,https://doi.org/10.4018/jthi.2011040104 +Li-Jen Wang,English Teachers' Practice and Perspectives on Using Educational Computer Games in EIL Context.,2016,12,IJTHI,3,db/journals/ijthi/ijthi12.html#WangWH16,https://doi.org/10.4018/IJTHI.2016070103 +Thomas B. Cavanagh,The Work of Art in the Age of Mechanical Production.,2008,4,IJTHI,3,db/journals/ijthi/ijthi4.html#Cavanagh08,https://doi.org/10.4018/jthi.2008070102 +Eitel J. M. Lauría,Exploring the Behavioral Dimension of Client/Server Technology Implementation: An Empirical Investigation.,2006,2,IJTHI,3,db/journals/ijthi/ijthi2.html#Lauria06,https://doi.org/10.4018/jthi.2006070104 +Laurence Brooks,Organisations and Information Systems: Investigating Their Dynamic Complexities Using Repertory Grids and Cognitive Mapping.,2005,1,IJTHI,4,db/journals/ijthi/ijthi1.html#BrooksDL05,https://doi.org/10.4018/jthi.2005100103 +Hong-Mei Huang,Design and Analysis of the Secure Scheme for Quantum Positioning based on Entangled Photon Pair.,2016,12,IJTHI,2,db/journals/ijthi/ijthi12.html#HuangX16,https://doi.org/10.4018/IJTHI.2016040102 +Norazah Mohd Suki,Consumer Intention to Use Anti-Spyware Software: An Application of Structural Equation Modeling.,2014,10,IJTHI,3,db/journals/ijthi/ijthi10.html#SukiRNS14,https://doi.org/10.4018/ijthi.2014070102 +Gary Douglas,Remote Channel Customer Contact Strategies for Complaint Update Messages.,2012,8,IJTHI,2,db/journals/ijthi/ijthi8.html#DouglasMJ12,https://doi.org/10.4018/jthi.2012040103 +Hea-Jin Lee,Facilitating Deep Learning in a Learning Community.,2012,8,IJTHI,1,db/journals/ijthi/ijthi8.html#LeeB12,https://doi.org/10.4018/jthi.2012010101 +Ludivine Martin,IT Outsourcing and Firm Characteristics: Empirical Evidence from Survey Data.,2014,10,IJTHI,1,db/journals/ijthi/ijthi10.html#MartinP14,https://doi.org/10.4018/ijthi.2014010101 +Wen-Tien Tsai,An Investigation on Undergraduate's Bio-Energy Engineering Education Program at the Taiwan Technical University.,2012,8,IJTHI,3,db/journals/ijthi/ijthi8.html#Tsai12,https://doi.org/10.4018/jthi.2012070105 +Guohong Fu,Chinese POS Disambiguation and Unknown Word Guessing with Lexicalized HMMs.,2006,2,IJTHI,1,db/journals/ijthi/ijthi2.html#FuL06,https://doi.org/10.4018/jthi.2006010103 +Elfi Furtmüller,Sustainable e-Recruiting Portals: How to Motivate Applicants to Stay Connected throughout their Careers?,2010,6,IJTHI,3,db/journals/ijthi/ijthi6.html#FurtmullerWD10,https://doi.org/10.4018/jthi.2010070101 +Robert Hurling,The Benefits of (Automated) Dialogue.,2009,5,IJTHI,4,db/journals/ijthi/ijthi5.html#HurlingBR09,https://doi.org/10.4018/jthi.2009062504 +Don Flournoy,The Case for Open Access Networks.,2009,5,IJTHI,1,db/journals/ijthi/ijthi5.html#FlournoyLA09,https://doi.org/10.4018/jthi.2009010101 +Mohammad A. Awwal,Influence of Age and Genders on the Relationship between Computer Self-Efficacy and Information Privacy Concerns.,2012,8,IJTHI,1,db/journals/ijthi/ijthi8.html#Awwal12,https://doi.org/10.4018/jthi.2012010102 +Vincent Dutot,Impact of Cross-Channel Strategy on Brand's Commitment: A Case Study in an Affordable Luxury Industry.,2016,12,IJTHI,4,db/journals/ijthi/ijthi12.html#Dutot16,https://doi.org/10.4018/IJTHI.2016100105 +Marcus Foth,Analyzing the Factors Influencing the Successful Design and Uptake of Interactive Systems to Support Social Networks in Urban Neighborhoods.,2006,2,IJTHI,2,db/journals/ijthi/ijthi2.html#Foth06,https://doi.org/10.4018/jthi.2006040104 +Tao Lin,Exploring the Effects of Display Characteristics on Presence and Emotional Responses of Game Players.,2013,9,IJTHI,1,db/journals/ijthi/ijthi9.html#LinWTW13,https://doi.org/10.4018/jthi.2013010104 +Eun Kyung Park,Social Responses to Conversational TV VUI: Apology and Voice.,2015,11,IJTHI,1,db/journals/ijthi/ijthi11.html#ParkLS15,https://doi.org/10.4018/ijthi.2015010102 +Yann Truong,Antecedents of Consumer Acceptance of Mobile Television Advertising.,2011,7,IJTHI,3,db/journals/ijthi/ijthi7.html#Truong11,https://doi.org/10.4018/jthi.2011070105 +Winfred Yaokumah,Inter-Organizational Study of Access Control Security Measures.,2018,14,IJTHI,1,db/journals/ijthi/ijthi14.html#YaokumahO18,https://doi.org/10.4018/IJTHI.2018010104 +Nabila Jawadi,E-Leadership and Trust Management: Exploring the Moderating Effects of Team Virtuality.,2013,9,IJTHI,3,db/journals/ijthi/ijthi9.html#Jawadi13,https://doi.org/10.4018/jthi.2013070102 +Célio Gonçalo Cardoso Marques,Using Mobile Technologies in Education: A New Pedagogical Approach to Promote Reading Literacy.,2017,13,IJTHI,4,db/journals/ijthi/ijthi13.html#MarquesMFM17,https://doi.org/10.4018/IJTHI.2017100106 +Anan Alssbaiheen,m-Government Adoption in Saudi Arabia: Challenges and Opportunities.,2015,11,IJTHI,3,db/journals/ijthi/ijthi11.html#AlssbaiheenL15,https://doi.org/10.4018/ijthi.2015070104 +Yi-Fen Chen,An Empirical Study of the Factors Affecting Mobile Shopping in Taiwan.,2014,10,IJTHI,1,db/journals/ijthi/ijthi10.html#ChenL14,https://doi.org/10.4018/ijthi.2014010102 +Pekka Ketola,On User Experience Measurement Needs: Case Nokia.,2009,5,IJTHI,3,db/journals/ijthi/ijthi5.html#KetolaR09,https://doi.org/10.4018/jthi.2009070104 +Lynette Kvasny,Giving Voice to Feminist Projects in MIS Research.,2005,1,IJTHI,1,db/journals/ijthi/ijthi1.html#KvasnyGT05,https://doi.org/10.4018/jthi.2005010101 +Ladislav Kunc,Avatar and Dialog Turn-Yielding Phenomena.,2013,9,IJTHI,2,db/journals/ijthi/ijthi9.html#KuncMS13,https://doi.org/10.4018/jthi.2013040105 +Anabela Mesquita,Human-Information Interaction and Technical Communication: Concepts and Frameworks.,2013,9,IJTHI,1,db/journals/ijthi/ijthi9.html#Mesquita13,https://doi.org/10.4018/jthi.2013010107 +Lars Göran Wallgren,A Two-Wave Study of the Impact of Job Characteristics and Motivators on Perceived Stress among Information Technology (IT) Consultants.,2012,8,IJTHI,4,db/journals/ijthi/ijthi8.html#WallgrenH12,https://doi.org/10.4018/jthi.2012100105 +Judith Partouche-Sebban,Online Interactions as a Terror Management Mechanism: How Death Anxiety Affects Facebook Use.,2016,12,IJTHI,4,db/journals/ijthi/ijthi12.html#Partouche-Sebban16,https://doi.org/10.4018/IJTHI.2016100103 +Hein Pieterse,Guidelines for Error Message Design.,2018,14,IJTHI,1,db/journals/ijthi/ijthi14.html#PieterseG18,https://doi.org/10.4018/IJTHI.2018010105 +Fong-Hao Liu,High Performance Reversible Data Hiding for Mobile Applications and Human Interaction.,2013,9,IJTHI,4,db/journals/ijthi/ijthi9.html#LiuLSLL13,https://doi.org/10.4018/ijthi.2013100103 +Norazah Mohd Suki,Modelling Factors Influencing Early Adopters' Purchase Intention Towards Online Music.,2011,7,IJTHI,4,db/journals/ijthi/ijthi7.html#Suki11,https://doi.org/10.4018/jthi.2011100104 +Neena Sinha,The Role of Favoring and Inhibiting Factors in Developing Attitude towards Mobile Application based Agricultural Extension Services: A Structural Relationship.,2018,14,IJTHI,4,db/journals/ijthi/ijthi14.html#SinhaV18,https://doi.org/10.4018/IJTHI.2018100104 +Anne Marie Kanstrup,User-Driven Innovation as Mutual but Asymmetrical Learning.,2009,5,IJTHI,3,db/journals/ijthi/ijthi5.html#KanstrupC09,https://doi.org/10.4018/jthi.2009070101 +Andry Rakotonirainy,In-Vehicle Avatars to Elicit Social Response and Change Driving Behaviour.,2009,5,IJTHI,4,db/journals/ijthi/ijthi5.html#RakotonirainyFH09,https://doi.org/10.4018/jthi.2009062505 +Minhong Wang,Enhancing Interaction with Dynamic Environments: An Adaptive Approach to Process Management.,2006,2,IJTHI,4,db/journals/ijthi/ijthi2.html#WangW06,https://doi.org/10.4018/jthi.2006100103 +Marcus Bengtsson,Supporting Implementation of Condition Based Maintenance: Highlighting the Interplay between Technical Constituents and Human and Organizational Factors.,2008,4,IJTHI,1,db/journals/ijthi/ijthi4.html#Bengtsson08,https://doi.org/10.4018/jthi.2008010104 +Alistair Mutch,"Concerns with ""Mutual Constitution"": A Critical Realist Commentary.",2005,1,IJTHI,3,db/journals/ijthi/ijthi1.html#Mutch05,https://doi.org/10.4018/jthi.2005070105 +Gareth Peevers,A Usability Comparison of SMS and IVR as Digital Banking Channels.,2011,7,IJTHI,4,db/journals/ijthi/ijthi7.html#PeeversDJM11,https://doi.org/10.4018/jthi.2011100101 +Danae V. Holmes,Alternative Review Screen Design for Electronic Voting Systems.,2017,13,IJTHI,1,db/journals/ijthi/ijthi13.html#HolmesK17,https://doi.org/10.4018/IJTHI.2017010105 +Christine Sarah Fidler,Barriers to e-Government Implementation in Jordan: The Role of Wasta.,2011,7,IJTHI,2,db/journals/ijthi/ijthi7.html#FidlerKR11,https://doi.org/10.4018/jthi.2011040102 +Tao Zhou 0007,The Effects of Network Externality and Flow Experience on Mobile SNS Continuance.,2017,13,IJTHI,2,db/journals/ijthi/ijthi13.html#Zhou17,https://doi.org/10.4018/IJTHI.2017040104 +José Esteves,Monitoring User Involvement and Participation in ERP Projects.,2005,1,IJTHI,4,db/journals/ijthi/ijthi1.html#EstevesPC05,https://doi.org/10.4018/jthi.2005100101 +François-Xavier de Vaujany,Modeling Sociotechnical Change in IS with a Quantitative Longitudinal Approach: The PPR Method.,2007,3,IJTHI,2,db/journals/ijthi/ijthi3.html#Vaujany07,https://doi.org/10.4018/jthi.2007040105 +Savdeep Vasudeva,Impact of E-Core Service Quality Dimensions on Perceived Value of M-Banking in Case of Three Socio-Economic Variables.,2017,13,IJTHI,1,db/journals/ijthi/ijthi13.html#VasudevaS17,https://doi.org/10.4018/IJTHI.2017010101 +Saifeddin Alimamy,The Role of Augmented Reality in the Interactivity of Co-Creation: A Critical Review.,2018,14,IJTHI,3,db/journals/ijthi/ijthi14.html#AlimamyDG18,https://doi.org/10.4018/IJTHI.2018070106 +Ming Lin,Automated Video Segmentation for Lecture Videos: A Linguistics-Based Approach.,2005,1,IJTHI,2,db/journals/ijthi/ijthi1.html#LinCCN05,https://doi.org/10.4018/jthi.2005040102 +Fernando Moreira,Teaching and Learning Modelling and Specification Based on Mobile Devices and Cloud: A Case Study.,2017,13,IJTHI,4,db/journals/ijthi/ijthi13.html#MoreiraF17,https://doi.org/10.4018/IJTHI.2017100103 +Chantal Fuhrer,Relations Between Social Capital and Use of ICT: A Social Network Analysis Approach.,2012,8,IJTHI,2,db/journals/ijthi/ijthi8.html#FuhrerC12,https://doi.org/10.4018/jthi.2012040102 +Alison Adam,Trusting Computers Through Trusting Humans: Software Verification in a Safety-Critical Information System.,2007,3,IJTHI,4,db/journals/ijthi/ijthi3.html#AdamS07,https://doi.org/10.4018/jthi.2007100101 +Stéphanie Gauttier,Exploring the Similarities Between Users and Non-Users of Consumer Mobile Internet Services: Towards a Porosity Model of Technology Acceptance.,2018,14,IJTHI,3,db/journals/ijthi/ijthi14.html#GauttierG18,https://doi.org/10.4018/IJTHI.2018070105 +Jamie Murphy,Student Perceptions and Adoption of University Smart Card Systems.,2011,7,IJTHI,3,db/journals/ijthi/ijthi7.html#MurphyLS11,https://doi.org/10.4018/jthi.2011070101 +Régis Meissonierm,Toward an Enacted Approach to Understanding OSS Developer's Motivations.,2012,8,IJTHI,1,db/journals/ijthi/ijthi8.html#MeissoniermBAB12,https://doi.org/10.4018/jthi.2012010103 +Shari R. Veil,Adoption Barriers in a High-Risk Agricultural Environment.,2010,6,IJTHI,1,db/journals/ijthi/ijthi6.html#Veil10,http://www.igi-global.com/Bookstore/Article.aspx?TitleId=39015 +Jean-Loup Richet,From Young Hackers to Crackers.,2013,9,IJTHI,3,db/journals/ijthi/ijthi9.html#Richet13,https://doi.org/10.4018/jthi.2013070104 +Hazel Beadle,The Significance of Trust to the Adoption of E-Working Practices Within Local Government.,2018,14,IJTHI,4,db/journals/ijthi/ijthi14.html#Beadle18,https://doi.org/10.4018/IJTHI.2018100105 +Alysson Bolognesi Prado,Using OLAP Tools for e-HRM: A Case Study.,2010,6,IJTHI,4,db/journals/ijthi/ijthi6.html#PradoFS10,https://doi.org/10.4018/jthi.2010100104 +Panayiotis Koutsabasis,Perceived Website Aesthetics by Users and Designers: Implications for Evaluation Practice.,2014,10,IJTHI,2,db/journals/ijthi/ijthi10.html#KoutsabasisI14,https://doi.org/10.4018/ijthi.2014040102 +Wafa M'Sallem,Resistance to Internet Banking Adoption in Tunisia: A Grounded Theory Approach.,2014,10,IJTHI,3,db/journals/ijthi/ijthi10.html#MSallemM14,https://doi.org/10.4018/ijthi.2014070103 +Silvia Cacho-Elizondo,Intention to Adopt a Text Message-based Mobile Coaching Service to Help Stop Smoking: Which Explanatory Variables?,2013,9,IJTHI,4,db/journals/ijthi/ijthi9.html#Cacho-ElizondoST13,https://doi.org/10.4018/ijthi.2013100101 +Gundars Kaupins,Legal and Ethical Implications of Employee Location Monitoring.,2006,2,IJTHI,3,db/journals/ijthi/ijthi2.html#KaupinsM06,https://doi.org/10.4018/jthi.2006070102 +Isidro Navarro,Virtual Reality Using Smart-Devices in Educational Frameworks: Case Study: Museum Casa Batlló.,2017,13,IJTHI,4,db/journals/ijthi/ijthi13.html#NavarroRFGF17,https://doi.org/10.4018/IJTHI.2017100104 +Bettina Eick,The isomorphism problem for torsion free nilpotent groups of Hirsch length at most 5.,2017,9,Groups Complexity Cryptology,1,db/journals/gcc/gcc9.html#EickE17,https://doi.org/10.1515/gcc-2017-0004 +Jack O. Button,Free by cyclic groups and linear groups with restricted unipotent elements.,2017,9,Groups Complexity Cryptology,2,db/journals/gcc/gcc9.html#Button17,https://doi.org/10.1515/gcc-2017-0009 +Delaram Kahrobaei,Non-commutative digital signatures.,2012,4,Groups Complexity Cryptology,2,db/journals/gcc/gcc4.html#KahrobaeiK12,https://doi.org/10.1515/gcc-2012-0019 +Benjamin Atchison,Symmetries of finite graphs and homology.,2015,7,Groups Complexity Cryptology,1,db/journals/gcc/gcc7.html#AtchisonT15,https://doi.org/10.1515/gcc-2015-0003 +Bettina Eick,The automorphism group of a finitely generated virtually abelian group.,2016,8,Groups Complexity Cryptology,1,db/journals/gcc/gcc8.html#Eick16,http://www.degruyter.com/view/j/gcc.2016.8.issue-1/gcc-2016-0007/gcc-2016-0007.xml +Volkmar große Rebel,The Tits Alternative for Tsaranov's Generalized Tetrahedron Groups.,2009,1,Groups Complexity Cryptology,2,db/journals/gcc/gcc1.html#RebelHR09,https://doi.org/10.1515/GCC.2009.207 +Alexei Miasnikov,Log-space conjugacy problem in the Grigorchuk group.,2017,9,Groups Complexity Cryptology,1,db/journals/gcc/gcc9.html#MiasnikovV17,https://doi.org/10.1515/gcc-2017-0005 +Murray R. Bremner,How to compute the Wedderburn decomposition of a finite-dimensional associative algebra.,2011,3,Groups Complexity Cryptology,1,db/journals/gcc/gcc3.html#Bremner11,https://doi.org/10.1515/gcc.2011.003 +Stephen R. Lakin,Space Complexity and Word Problems of Groups.,2009,1,Groups Complexity Cryptology,2,db/journals/gcc/gcc1.html#LakinT09,https://doi.org/10.1515/GCC.2009.261 +Marston Conder,An update on Hurwitz groups.,2010,2,Groups Complexity Cryptology,1,db/journals/gcc/gcc2.html#Conder10,https://doi.org/10.1515/gcc.2010.002 +Manik Lal Das,Key-escrow free multi-signature scheme using bilinear pairings.,2015,7,Groups Complexity Cryptology,1,db/journals/gcc/gcc7.html#Das15,https://doi.org/10.1515/gcc-2015-0002 +Tara Brough,Groups with poly-context-free word problem.,2014,6,Groups Complexity Cryptology,1,db/journals/gcc/gcc6.html#Brough14,https://doi.org/10.1515/gcc-2014-0002 +Marek Kaluba,Certifying numerical estimates of spectral gaps.,2018,10,Groups Complexity Cryptology,1,db/journals/gcc/gcc10.html#KalubaN18,https://doi.org/10.1515/gcc-2018-0004 +Arkadius G. Kalka,A Note on the Shifted Conjugacy Problem in Braid Groups.,2009,1,Groups Complexity Cryptology,2,db/journals/gcc/gcc1.html#KalkaLT09,https://doi.org/10.1515/GCC.2009.227 +Martin Kassabov,Presentations of matrix rings.,2010,2,Groups Complexity Cryptology,1,db/journals/gcc/gcc2.html#Kassabov10,https://doi.org/10.1515/gcc.2010.003 +Chi Sing Chum,The Latin squares and the secret sharing schemes.,2010,2,Groups Complexity Cryptology,2,db/journals/gcc/gcc2.html#ChumZ10,https://doi.org/10.1515/gcc.2010.011 +Alexei G. Myasnikov,Diophantine cryptography in free metabelian groups: Theoretical base.,2014,6,Groups Complexity Cryptology,2,db/journals/gcc/gcc6.html#MyasnikovR14,http://www.degruyter.com/view/j/gcc.2014.6.issue-2/gcc-2014-0011/gcc-2014-0011.xml +Daniella Bak Shnaps,The Word and Conjugacy Problem for Shuffle Groups.,2009,1,Groups Complexity Cryptology,2,db/journals/gcc/gcc1.html#Shnaps09,https://doi.org/10.1515/GCC.2009.143 +Vladimir Shpilrain,Editorial.,2014,6,Groups Complexity Cryptology,2,db/journals/gcc/gcc6.html#Shpilrain14,http://www.degruyter.com/view/j/gcc.2014.6.issue-2/gcc-2014-5001/gcc-2014-5001.xml +Andreas Distler,Group extensions with special properties.,2015,7,Groups Complexity Cryptology,1,db/journals/gcc/gcc7.html#DistlerE15,https://doi.org/10.1515/gcc-2015-0005 +Matthias Neumann-Brosig,A note on the homology of hyperbolic groups.,2010,2,Groups Complexity Cryptology,2,db/journals/gcc/gcc2.html#Neumann-BrosigR10,https://doi.org/10.1515/gcc.2010.012 +Bernhard Krön,Cutting up graphs revisited - a short proof of Stallings' structure theorem.,2010,2,Groups Complexity Cryptology,2,db/journals/gcc/gcc2.html#Kron10,https://doi.org/10.1515/gcc.2010.013 +Olga Kharlampovich,Infinite words and universal free actions.,2014,6,Groups Complexity Cryptology,1,db/journals/gcc/gcc6.html#KharlampovichMS14,https://doi.org/10.1515/gcc-2014-0005 +Amnon Rosenmann,On the intersection of subgroups in free groups: Echelon subgroups are inert.,2013,5,Groups Complexity Cryptology,2,db/journals/gcc/gcc5.html#Rosenmann13,https://doi.org/10.1515/gcc-2013-0013 +Robert H. Gilman 0001,Random equations in free groups.,2011,3,Groups Complexity Cryptology,2,db/journals/gcc/gcc3.html#GilmanMR11,https://doi.org/10.1515/gcc.2011.010 +Alexander N. Rybalov,Generic hardness of the Boolean satisfiability problem.,2017,9,Groups Complexity Cryptology,2,db/journals/gcc/gcc9.html#Rybalov17,https://doi.org/10.1515/gcc-2017-0008 +Mikhail Anokhin,Constructing a pseudo-free family of finite computational groups under the general integer factoring intractability assumption.,2013,5,Groups Complexity Cryptology,1,db/journals/gcc/gcc5.html#Anokhin13,https://doi.org/10.1515/gcc-2013-0003 +Jonathan Longrigg,A Practical Attack on a Certain Braid Group Based Shifted Conjugacy Authentication Protocol.,2009,1,Groups Complexity Cryptology,2,db/journals/gcc/gcc1.html#LongriggU09,https://doi.org/10.1515/GCC.2009.275 +Matthew J. Craven,A parallel evolutionary approach to solving systems of equations in polycyclic groups.,2016,8,Groups Complexity Cryptology,2,db/journals/gcc/gcc8.html#CravenR16,https://doi.org/10.1515/gcc-2016-0012 +Lisa Carbone,Tree lattice subgroups.,2011,3,Groups Complexity Cryptology,1,db/journals/gcc/gcc3.html#CarboneCR11,https://doi.org/10.1515/gcc.2011.001 +Maurice Chiodo,On torsion in finitely presented groups.,2014,6,Groups Complexity Cryptology,1,db/journals/gcc/gcc6.html#Chiodo14,https://doi.org/10.1515/gcc-2014-0001 +Frantisek Marko,Public-key cryptosystem based on invariants of diagonalizable groups.,2017,9,Groups Complexity Cryptology,1,db/journals/gcc/gcc9.html#MarkoZJ17,https://doi.org/10.1515/gcc-2017-0003 +Delaram Kahrobaei,Public key exchange using matrices over group rings.,2013,5,Groups Complexity Cryptology,1,db/journals/gcc/gcc5.html#KahrobaeiKS13,https://doi.org/10.1515/gcc-2013-0007 +Alexei Mishchenko,Knapsack problem for nilpotent groups.,2017,9,Groups Complexity Cryptology,1,db/journals/gcc/gcc9.html#MishchenkoT17,https://doi.org/10.1515/gcc-2017-0006 +Margaret H. Dean,Metabelian Product of a Free Nilpotent Group with a Free Abelian Group.,2009,1,Groups Complexity Cryptology,2,db/journals/gcc/gcc1.html#Dean09,https://doi.org/10.1515/GCC.2009.169 +Benjamin Fine,Generic Subgroups of Group Amalgams.,2009,1,Groups Complexity Cryptology,1,db/journals/gcc/gcc1.html#FineMR09,https://doi.org/10.1515/GCC.2009.51 +Mark L. Lewis,Isomorphism in expanding families of indistinguishable groups.,2012,4,Groups Complexity Cryptology,1,db/journals/gcc/gcc4.html#LewisW12,https://doi.org/10.1515/gcc-2012-0008 +Vladimir Shpilrain,Using Decision Problems in Public Key Cryptography.,2009,1,Groups Complexity Cryptology,1,db/journals/gcc/gcc1.html#ShpilrainZ09,https://doi.org/10.1515/GCC.2009.33 +Colin Maclachlan,Existence and Non-Existence of Torsion in Maximal Arithmetic Fuchsian Groups.,2009,1,Groups Complexity Cryptology,2,db/journals/gcc/gcc1.html#Maclachlan09,https://doi.org/10.1515/GCC.2009.287 +Kristen Pueschel,Hydra group doubles are not residually finite.,2016,8,Groups Complexity Cryptology,2,db/journals/gcc/gcc8.html#Pueschel16,https://doi.org/10.1515/gcc-2016-0015 +Vladimir Shpilrain,Search and witness problems in group theory.,2010,2,Groups Complexity Cryptology,2,db/journals/gcc/gcc2.html#Shpilrain10,https://doi.org/10.1515/gcc.2010.015 +Jennifer Seberry,A new generic digital signature algorithm.,2011,3,Groups Complexity Cryptology,2,db/journals/gcc/gcc3.html#SeberryTT11,https://doi.org/10.1515/gcc.2011.008 +Gennady A. Noskov,Generic case complexity of the Graph Isomorphism Problem.,2016,8,Groups Complexity Cryptology,1,db/journals/gcc/gcc8.html#NoskovR16,http://www.degruyter.com/view/j/gcc.2016.8.issue-1/gcc-2016-0008/gcc-2016-0008.xml +Yago Antolín,On Cayley graphs of virtually free groups.,2011,3,Groups Complexity Cryptology,2,db/journals/gcc/gcc3.html#Antolin11,https://doi.org/10.1515/gcc.2011.012 +Gideon Amir,The diameter of a random Cayley graph of ™4* q.,2010,2,Groups Complexity Cryptology,1,db/journals/gcc/gcc2.html#AmirG10,https://doi.org/10.1515/gcc.2010.004 +Alexander N. Rybalov,Generic complexity of the Diophantine problem.,2013,5,Groups Complexity Cryptology,1,db/journals/gcc/gcc5.html#Rybalov13,https://doi.org/10.1515/gcc-2013-0004 +Evgeni Begelfor,Non-abelian analogs of lattice rounding.,2015,7,Groups Complexity Cryptology,2,db/journals/gcc/gcc7.html#BegelforMV15,http://www.degruyter.com/view/j/gcc.2015.7.issue-2/gcc-2015-0010/gcc-2015-0010.xml +Sylvain Duquesne,Memory-saving computation of the pairing final exponentiation on BN curves.,2016,8,Groups Complexity Cryptology,1,db/journals/gcc/gcc8.html#DuquesneG16,http://www.degruyter.com/view/j/gcc.2016.8.issue-1/gcc-2016-0006/gcc-2016-0006.xml +Bronlyn Wassink,Subgroups of R. Thompson's group F that are isomorphic to F.,2011,3,Groups Complexity Cryptology,2,db/journals/gcc/gcc3.html#Wassink11,https://doi.org/10.1515/gcc.2011.009 +Anthony M. Gaglione,An application of elementary real analysis to a metabelian group admitting integral polynomial exponents.,2015,7,Groups Complexity Cryptology,1,db/journals/gcc/gcc7.html#GaglioneLS15,https://doi.org/10.1515/gcc-2015-0004 +Neal Koblitz,Another look at non-uniformity.,2013,5,Groups Complexity Cryptology,2,db/journals/gcc/gcc5.html#KoblitzM13,https://doi.org/10.1515/gcc-2013-0008 +Lluís Bacardit,A combinatorial algorithm to compute presentations of mapping class groups of orientable surfaces with one boundary component.,2015,7,Groups Complexity Cryptology,2,db/journals/gcc/gcc7.html#Bacardit15,http://www.degruyter.com/view/j/gcc.2015.7.issue-2/gcc-2015-0011/gcc-2015-0011.xml +Dima Grigoriev,Authentication from Matrix Conjugation.,2009,1,Groups Complexity Cryptology,2,db/journals/gcc/gcc1.html#GrigorievS09,https://doi.org/10.1515/GCC.2009.199 +Iris Anshel,A class of hash functions based on the algebraic eraser™*.,2016,8,Groups Complexity Cryptology,1,db/journals/gcc/gcc8.html#AnshelAGG16,http://www.degruyter.com/view/j/gcc.2016.8.issue-1/gcc-2016-0004/gcc-2016-0004.xml +Jennifer Taback,Tree-based language complexity of Thompson's group F.,2015,7,Groups Complexity Cryptology,2,db/journals/gcc/gcc7.html#TabackY15,http://www.degruyter.com/view/j/gcc.2015.7.issue-2/gcc-2015-0009/gcc-2015-0009.xml +Derek F. Holt,Shortlex automaticity and geodesic regularity in Artin groups.,2013,5,Groups Complexity Cryptology,1,db/journals/gcc/gcc5.html#HoltR13,https://doi.org/10.1515/gcc-2013-0001 +Vitalii Roman'kov,Cryptanalysis of a combinatorial public key cryptosystem.,2017,9,Groups Complexity Cryptology,2,db/journals/gcc/gcc9.html#Romankov17,https://doi.org/10.1515/gcc-2017-0013 +Thomas Connor,A new algorithm to find apartments in coset geometries.,2013,5,Groups Complexity Cryptology,1,db/journals/gcc/gcc5.html#ConnorL13,https://doi.org/10.1515/gcc-2013-0006 +Vitalii Roman'kov,A nonlinear decomposition attack.,2016,8,Groups Complexity Cryptology,2,db/journals/gcc/gcc8.html#Romankov16,https://doi.org/10.1515/gcc-2016-0017 +Arkadius G. Kalka,Subgroup conjugacy problem for Garside subgroups of Garside groups.,2010,2,Groups Complexity Cryptology,2,db/journals/gcc/gcc2.html#KalkaLT10,https://doi.org/10.1515/gcc.2010.010 +Benjamin Fine,Faithful representations of limit groups II.,2013,5,Groups Complexity Cryptology,1,db/journals/gcc/gcc5.html#FineR13,https://doi.org/10.1515/gcc-2013-0005 +Alexei G. Myasnikov,A linear decomposition attack.,2015,7,Groups Complexity Cryptology,1,db/journals/gcc/gcc7.html#MyasnikovR15,https://doi.org/10.1515/gcc-2015-0007 +Meng-Che Ho,The word problem of ™4* n is a multiple context-free language.,2018,10,Groups Complexity Cryptology,1,db/journals/gcc/gcc10.html#Ho18,https://doi.org/10.1515/gcc-2018-0003 +Ivo Hedtke,Search and test algorithms for triple product property triples.,2012,4,Groups Complexity Cryptology,1,db/journals/gcc/gcc4.html#HedtkeM12,https://doi.org/10.1515/gcc-2012-0006 +Fabienne Chouraqui,Rewriting Systems and Embedding of Monoids in Groups.,2009,1,Groups Complexity Cryptology,1,db/journals/gcc/gcc1.html#Chouraqui09,https://doi.org/10.1515/GCC.2009.131 +Dima Grigoriev,A Complete Public-Key Cryptosystem.,2009,1,Groups Complexity Cryptology,1,db/journals/gcc/gcc1.html#GrigorievHP09,https://doi.org/10.1515/GCC.2009.1 +Maggie Habeeb,On the dimension of matrix representations of finitely generated torsion free nilpotent groups.,2013,5,Groups Complexity Cryptology,2,db/journals/gcc/gcc5.html#HabeebK13,https://doi.org/10.1515/gcc-2013-0011 +Murray Elder,Some geodesic problems in groups.,2010,2,Groups Complexity Cryptology,2,db/journals/gcc/gcc2.html#ElderR10,https://doi.org/10.1515/gcc.2010.014 +Kenneth J. Falconer,Growth rate of an endomorphism of a group.,2011,3,Groups Complexity Cryptology,2,db/journals/gcc/gcc3.html#FalconerFK11,https://doi.org/10.1515/gcc.2011.011 +Benjamin Fine,Reflections on some aspects of infinite groups.,2014,6,Groups Complexity Cryptology,2,db/journals/gcc/gcc6.html#FineGRS14,http://www.degruyter.com/view/j/gcc.2014.6.issue-2/gcc-2014-0008/gcc-2014-0008.xml +Philipp Jovanovic,Algebraic attacks using SAT-solvers.,2010,2,Groups Complexity Cryptology,2,db/journals/gcc/gcc2.html#JovanovicK10,https://doi.org/10.1515/gcc.2010.016 +Alexander N. Rybalov,On the generic complexity of the searching graph isomorphism problem.,2015,7,Groups Complexity Cryptology,2,db/journals/gcc/gcc7.html#Rybalov15,http://www.degruyter.com/view/j/gcc.2015.7.issue-2/gcc-2015-0015/gcc-2015-0015.xml +Dima Grigoriev,Secrecy without one-way functions.,2013,5,Groups Complexity Cryptology,1,db/journals/gcc/gcc5.html#GrigorievS13,https://doi.org/10.1515/gcc-2013-0002 +Omar Akchiche,Factoring multi-power RSA moduli with primes sharing least or most significant bits.,2016,8,Groups Complexity Cryptology,1,db/journals/gcc/gcc8.html#AkchicheK16,http://www.degruyter.com/view/j/gcc.2016.8.issue-1/gcc-2016-0002/gcc-2016-0002.xml +Jordan Sahattchieve,On convex hulls and the quasiconvex subgroups of Fm*™4*n.,2015,7,Groups Complexity Cryptology,1,db/journals/gcc/gcc7.html#Sahattchieve15,https://doi.org/10.1515/gcc-2015-0006 +Alexei G. Myasnikov,Random van Kampen diagrams and algorithmic problems in groups.,2011,3,Groups Complexity Cryptology,1,db/journals/gcc/gcc3.html#MyasnikovU11,https://doi.org/10.1515/gcc.2011.006 +Dima Grigoriev,No-leak authentication by the Sherlock Holmes method.,2012,4,Groups Complexity Cryptology,1,db/journals/gcc/gcc4.html#GrigorievS12,https://doi.org/10.1515/gcc-2012-0009 +Svetla Vassileva,Polynomial time conjugacy in wreath products and free solvable groups.,2011,3,Groups Complexity Cryptology,1,db/journals/gcc/gcc3.html#Vassileva11,https://doi.org/10.1515/gcc.2011.005 +Jean-Marie Chauvet,Cryptography from the tropical Hessian pencil.,2017,9,Groups Complexity Cryptology,1,db/journals/gcc/gcc9.html#ChauvetM17,https://doi.org/10.1515/gcc-2017-0002 +Luise-Charlotte Kappe,On the covering number of small symmetric groups and some sporadic simple groups.,2016,8,Groups Complexity Cryptology,2,db/journals/gcc/gcc8.html#KappeNS16,https://doi.org/10.1515/gcc-2016-0010 +Mikhail Anokhin,Pseudo-free families of finite computationalelementary abelian p-groups.,2017,9,Groups Complexity Cryptology,1,db/journals/gcc/gcc9.html#Anokhin17,https://doi.org/10.1515/gcc-2017-0001 +Delaram Kahrobaei,Decision and Search in Non-Abelian Cramer-Shoup Public Key Cryptosystem.,2009,1,Groups Complexity Cryptology,2,db/journals/gcc/gcc1.html#KahrobaeiA09,https://doi.org/10.1515/GCC.2009.217 +Kashi Neupane,Two-party key establishment: From passive to active security without introducing new assumptions.,2012,4,Groups Complexity Cryptology,1,db/journals/gcc/gcc4.html#Neupane12,https://doi.org/10.1515/gcc-2012-0005 +Ayan Mahalanobis,The discrete logarithm problem in the group of non-singular circulant matrices.,2010,2,Groups Complexity Cryptology,1,db/journals/gcc/gcc2.html#Mahalanobis10,https://doi.org/10.1515/gcc.2010.006 +Jean-Marie Chauvet,Key agreement under tropical parallels.,2015,7,Groups Complexity Cryptology,2,db/journals/gcc/gcc7.html#ChauvetM15,http://www.degruyter.com/view/j/gcc.2015.7.issue-2/gcc-2015-0013/gcc-2015-0013.xml +Benjamin Fine,A note on faithful representations of limit groups.,2011,3,Groups Complexity Cryptology,2,db/journals/gcc/gcc3.html#FineR11,https://doi.org/10.1515/gcc.2011.014 +Kenneth R. Blaney,A PTIME solution to the restricted conjugacy problem in generalized Heisenberg groups.,2016,8,Groups Complexity Cryptology,1,db/journals/gcc/gcc8.html#BlaneyN16,http://www.degruyter.com/view/j/gcc.2016.8.issue-1/gcc-2016-0003/gcc-2016-0003.xml +Mohammad Hossein Ghaffari,More secure version of a Cayley hash function.,2018,10,Groups Complexity Cryptology,1,db/journals/gcc/gcc10.html#GhaffariM18,https://doi.org/10.1515/gcc-2018-0002 +Benjamin Fine,A secret sharing scheme based on the Closest Vector Theorem and a modification to a private key cryptosystem.,2013,5,Groups Complexity Cryptology,2,db/journals/gcc/gcc5.html#FineMR13,https://doi.org/10.1515/gcc-2013-0012 +Markus Lohrey,Algorithmics on SLP-compressed strings: A survey.,2012,4,Groups Complexity Cryptology,2,db/journals/gcc/gcc4.html#Lohrey12,https://doi.org/10.1515/gcc-2012-0016 +Alex D. Myasnikov,Cryptanalysis of the Anshel-Anshel-Goldfeld-Lemieux Key Agreement Protocol.,2009,1,Groups Complexity Cryptology,1,db/journals/gcc/gcc1.html#MyasnikovU09,https://doi.org/10.1515/GCC.2009.63 +Russell Miller,An introduction to computable model theory on groups and fields.,2011,3,Groups Complexity Cryptology,1,db/journals/gcc/gcc3.html#Miller11,https://doi.org/10.1515/gcc.2011.002 +Emmanuel Fouotsa,Faster Ate pairing computation on Selmer's model of elliptic curves.,2016,8,Groups Complexity Cryptology,1,db/journals/gcc/gcc8.html#FouotsaC16,http://www.degruyter.com/view/j/gcc.2016.8.issue-1/gcc-2016-0005/gcc-2016-0005.xml +Celine Carstensen,On asymptotic densities and generic properties in finitely generated groups.,2010,2,Groups Complexity Cryptology,2,db/journals/gcc/gcc2.html#CarstensenFR10,https://doi.org/10.1515/gcc.2010.008 +Alex D. Myasnikov,Generic Case Complexity and One-Way Functions.,2009,1,Groups Complexity Cryptology,1,db/journals/gcc/gcc1.html#Myasnikov09,https://doi.org/10.1515/GCC.2009.13 +Evgeny I. Timoshenko,A remark on spherical equations in free metabelian groups.,2017,9,Groups Complexity Cryptology,2,db/journals/gcc/gcc9.html#Timoshenko17,https://doi.org/10.1515/gcc-2017-0012 +Artyom S. Ivachev,On transitive differentiable modulo pn functions.,2015,7,Groups Complexity Cryptology,2,db/journals/gcc/gcc7.html#Ivachev15,http://www.degruyter.com/view/j/gcc.2015.7.issue-2/gcc-2015-0014/gcc-2015-0014.xml +Lluís Bacardit,The Zieschang-McCool method for generating algebraic mapping-class groups.,2011,3,Groups Complexity Cryptology,2,db/journals/gcc/gcc3.html#BacarditD11,https://doi.org/10.1515/gcc.2011.007 +Chris Monico,Cryptanalysis of a system using matrices over group rings.,2015,7,Groups Complexity Cryptology,2,db/journals/gcc/gcc7.html#MonicoN15,http://www.degruyter.com/view/j/gcc.2015.7.issue-2/gcc-2015-0008/gcc-2015-0008.xml +Stephen Majewicz,Power-Commutative Nilpotent R-Powered Groups.,2009,1,Groups Complexity Cryptology,2,db/journals/gcc/gcc1.html#MajewiczZ09,https://doi.org/10.1515/GCC.2009.297 +Jonathan Gryak,The status of polycyclic group-based cryptography: A survey and open problems.,2016,8,Groups Complexity Cryptology,2,db/journals/gcc/gcc8.html#GryakK16,https://doi.org/10.1515/gcc-2016-0013 +Natalia Mosina,Strong law of large numbers on graphs and groups.,2011,3,Groups Complexity Cryptology,1,db/journals/gcc/gcc3.html#MosinaU11,https://doi.org/10.1515/gcc.2011.004 +Artem N. Shevlyakov,On irreducible algebraic sets over linearly ordered semilattices.,2016,8,Groups Complexity Cryptology,2,db/journals/gcc/gcc8.html#Shevlyakov16,https://doi.org/10.1515/gcc-2016-0014 +Mohammad Eftekhari,A Diffie-Hellman key exchange protocol using matrices over noncommutative rings.,2012,4,Groups Complexity Cryptology,1,db/journals/gcc/gcc4.html#Eftekhari12,https://doi.org/10.1515/gcc-2012-0001 +Alexey Gribov,Practical private-key fully homomorphic encryption in rings.,2018,10,Groups Complexity Cryptology,1,db/journals/gcc/gcc10.html#GribovKS18,https://doi.org/10.1515/gcc-2018-0006 +Vitalii Roman'kov,Equations over groups.,2012,4,Groups Complexity Cryptology,2,db/journals/gcc/gcc4.html#Romankov12,https://doi.org/10.1515/gcc-2012-0015 +Gilbert Baumslag,Challenge response password security using combinatorial group theory.,2010,2,Groups Complexity Cryptology,1,db/journals/gcc/gcc2.html#BaumslagBFT10,https://doi.org/10.1515/gcc.2010.005 +Anthony M. Gaglione,Almost Locally Free Groups and a Theorem of Magnus: Some Questions.,2009,1,Groups Complexity Cryptology,2,db/journals/gcc/gcc1.html#GaglioneLS09,https://doi.org/10.1515/GCC.2009.181 +Vladimir Shpilrain,Compositions of linear functions and applications to hashing.,2016,8,Groups Complexity Cryptology,2,db/journals/gcc/gcc8.html#ShpilrainS16,https://doi.org/10.1515/gcc-2016-0016 +Murray Elder,Thompson's group F is 1-counter graph automatic.,2016,8,Groups Complexity Cryptology,1,db/journals/gcc/gcc8.html#ElderT16,http://www.degruyter.com/view/j/gcc.2016.8.issue-1/gcc-2016-0001/gcc-2016-0001.xml +Murray Elder,On the cogrowth of Thompson's group F.,2012,4,Groups Complexity Cryptology,2,db/journals/gcc/gcc4.html#ElderRW12,https://doi.org/10.1515/gcc-2012-0018 +Dima Grigoriev,Continuous hard-to-invert functions and biometric authentication.,2012,4,Groups Complexity Cryptology,1,db/journals/gcc/gcc4.html#GrigorievN12,https://doi.org/10.1515/gcc-2012-0004 +Matvei Kotov,Analysis of secret sharing schemes based on Nielsen transformations.,2018,10,Groups Complexity Cryptology,1,db/journals/gcc/gcc10.html#KotovPU18,https://doi.org/10.1515/gcc-2018-0001 +Volker Diekert,Cyclic rewriting and conjugacy problems.,2012,4,Groups Complexity Cryptology,2,db/journals/gcc/gcc4.html#DiekertDM12,https://doi.org/10.1515/gcc-2012-0020 +Artem N. Shevlyakov,Algebraic geometry over natural numbers. The classification of coordinate monoids.,2010,2,Groups Complexity Cryptology,1,db/journals/gcc/gcc2.html#Shevlyakov10,https://doi.org/10.1515/gcc.2010.007 +Martin Kreuzer,Algebraic Attacks Galore!,2009,1,Groups Complexity Cryptology,2,db/journals/gcc/gcc1.html#Kreuzer09,https://doi.org/10.1515/GCC.2009.231 +Tetsuya Ito,On finite Thurston-type orderings of braid groups.,2010,2,Groups Complexity Cryptology,2,db/journals/gcc/gcc2.html#Ito10,https://doi.org/10.1515/gcc.2010.009 +Arkadius G. Kalka,Non-associative key establishment for left distributive systems.,2013,5,Groups Complexity Cryptology,2,db/journals/gcc/gcc5.html#KalkaT13,https://doi.org/10.1515/gcc-2013-0009 +Denis Osin,On the Universal Theory of Torsion and Lacunary Hyperbolic Groups.,2009,1,Groups Complexity Cryptology,2,db/journals/gcc/gcc1.html#Osin09,https://doi.org/10.1515/GCC.2009.311 +Marianna Bonanome,Quantum algorithms for fixed points and invariant subgroups.,2011,3,Groups Complexity Cryptology,2,db/journals/gcc/gcc3.html#BonanomeM11,https://doi.org/10.1515/gcc.2011.013 +Enric Ventura,Group-theoretic orbit decidability.,2014,6,Groups Complexity Cryptology,2,db/journals/gcc/gcc6.html#Ventura14,http://www.degruyter.com/view/j/gcc.2014.6.issue-2/gcc-2014-0012/gcc-2014-0012.xml +Anthony E. Clement,Torsion-free Abelian Factor Groups of the Baumslag-Solitar Groups and Subgroups of the Additive Group of the Rational Numbers.,2009,1,Groups Complexity Cryptology,2,db/journals/gcc/gcc1.html#Clement09,https://doi.org/10.1515/GCC.2009.165 +Liljana Babinkostova,Algebraic properties of generalized Rijndael-like ciphers.,2014,6,Groups Complexity Cryptology,1,db/journals/gcc/gcc6.html#BabinkostovaBCMS14,https://doi.org/10.1515/gcc-2014-0004 +Alexander Ushakov,Authenticated commutator key agreement protocol.,2016,8,Groups Complexity Cryptology,2,db/journals/gcc/gcc8.html#Ushakov16,https://doi.org/10.1515/gcc-2016-0011 +Stefan Friedl,An elementary proof of the group law for elliptic curves.,2017,9,Groups Complexity Cryptology,2,db/journals/gcc/gcc9.html#Friedl17,https://doi.org/10.1515/gcc-2017-0010 +Vitalii Roman'kov,New probabilistic public-key encryption based on the RSA cryptosystem.,2015,7,Groups Complexity Cryptology,2,db/journals/gcc/gcc7.html#Romankov15,http://www.degruyter.com/view/j/gcc.2015.7.issue-2/gcc-2015-0016/gcc-2015-0016.xml +Uri Weiss,On Shephard groups with large triangles.,2010,2,Groups Complexity Cryptology,1,db/journals/gcc/gcc2.html#Weiss10,https://doi.org/10.1515/gcc.2010.001 +Vladimir Shpilrain,Decoy-based information security.,2014,6,Groups Complexity Cryptology,2,db/journals/gcc/gcc6.html#Shpilrain14a,http://www.degruyter.com/view/j/gcc.2014.6.issue-2/gcc-2014-0010/gcc-2014-0010.xml +Robert H. Gilman 0001,Generalized small cancellation presentations for automatic groups.,2014,6,Groups Complexity Cryptology,2,db/journals/gcc/gcc6.html#Gilman14,http://www.degruyter.com/view/j/gcc.2014.6.issue-2/gcc-2014-0007/gcc-2014-0007.xml +Stepan Yu. Orevkov,Algorithmic recognition of quasipositive 4-braids of algebraic length three.,2015,7,Groups Complexity Cryptology,2,db/journals/gcc/gcc7.html#Orevkov15,http://www.degruyter.com/view/j/gcc.2015.7.issue-2/gcc-2015-0012/gcc-2015-0012.xml +Alexey D. Myasnikov,Quantum algorithm for discrete logarithm problem for matrices over finite group rings.,2014,6,Groups Complexity Cryptology,1,db/journals/gcc/gcc6.html#MyasnikovU14,https://doi.org/10.1515/gcc-2014-0003 +Daan Krammer,An asymmetric generalisation of Artin monoids.,2013,5,Groups Complexity Cryptology,2,db/journals/gcc/gcc5.html#Krammer13,https://doi.org/10.1515/gcc-2013-0010 +Bill Faught,Natural language for PARRY.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Faught77,http://doi.acm.org/10.1145/1045283.1045331 +Gary G. Hendrix,Lifer: a natural language interface facility.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Hendrix77,http://doi.acm.org/10.1145/1045283.1045289 +Wijnand J. Schoenmakers,A problem in knowledge acquisition.,1986,95,SIGART Newsletter,,db/journals/sigart/sigartn95.html#Schoenmakers86,http://doi.acm.org/10.1145/1056563.1056572 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1985,94,SIGART Newsletter,,db/journals/sigart/sigartn94.html#HumphreyK85c,http://doi.acm.org/10.1145/1056313.1056314 +Alan M. Frisch,An overview of the HORNE logic programming system.,1983,84,SIGART Newsletter,,db/journals/sigart/sigartn84.html#FrischAG83,http://doi.acm.org/10.1145/1056623.1056624 +Peter Kugel,What can a computer learn from examples?,1976,57,SIGART Newsletter,,db/journals/sigart/sigartn57.html#Kugel76,http://doi.acm.org/10.1145/1045339.1045341 +Michael D. Rychener,Knowledge-based expert systems: a brief bibliography.,1981,78,SIGART Newsletter,,db/journals/sigart/sigartn78.html#Rychener81,http://doi.acm.org/10.1145/1056737.1056741 +Egon E. Loebner,Research in natural language processing: Hewlett-Packard Laboratories.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Loebner82,http://doi.acm.org/10.1145/1056663.1056700 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#HumphreyK89b,http://doi.acm.org/10.1145/63266.63310 +Harold Boley,A preliminary survey of artificial intelligence machines.,1980,72,SIGART Newsletter,,db/journals/sigart/sigartn72.html#Boley80,http://doi.acm.org/10.1145/1056447.1056449 +Richard E. Cullingford,SAM: a program that uses world knowledge to understand.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Cullingford77,http://doi.acm.org/10.1145/1045283.1045324 +Kenneth Basye,A Decision-Theoretic Approach to Robotic Control Systems.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Basye91,http://doi.acm.org/10.1145/122344.122349 +Christopher A. Welty,Backtracking.,2000,11,Intelligence,1,db/journals/sigart/sigart11.html#WeltyH00,http://doi.acm.org/10.1145/333175.333183 +Elaine Kant,The selection of efficient implementations for a high-level language.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#Kant77,http://doi.acm.org/10.1145/872736.806943 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1988,104,SIGART Newsletter,,db/journals/sigart/sigartn104.html#HumphreyK88b,http://doi.acm.org/10.1145/44019.1058041 +Michael L. Rhodes,Conversational text input for modifying graphics facial images.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#RhodesK77,http://doi.acm.org/10.1145/1045283.1045334 +Hans-Jochen Schneider,Automatic construction of semantic networks.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Schneider77,http://doi.acm.org/10.1145/1045283.1045320 +Tom M. Mitchell,Plan-Then-Compile Architectures.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Mitchell91,http://doi.acm.org/10.1145/122344.122372 +Luca Majocchi,The problem of a mouse in a maze.,1984,87,SIGART Newsletter,,db/journals/sigart/sigartn87.html#MajocchiS84,http://doi.acm.org/10.1145/1056648.1056652 +Edward N. Schwartz,Manhattanville College expert academic advisor-preliminary report.,1988,103,SIGART Newsletter,,db/journals/sigart/sigartn103.html#Schwartz88a,http://doi.acm.org/10.1145/44418.44424 +David R. Barstow,A knowledge base organization for rules about programming.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Barstow77,http://doi.acm.org/10.1145/1045343.1045353 +Roy Rada,Mastermind in SIGART.,1984,89,SIGART Newsletter,,db/journals/sigart/sigartn89.html#Rada84,http://doi.acm.org/10.1145/1056521.1056523 +David D. McDonald,Making subsequent references: syntatic and rhetorical constrants.,1978,66,SIGART Newsletter,,db/journals/sigart/sigartn66.html#McDonald78,http://doi.acm.org/10.1145/1045416.1045425 +Keith Price,New books.,1980,73,SIGART Newsletter,,db/journals/sigart/sigartn73.html#Price80,http://doi.acm.org/10.1145/1056768.1056774 +Dik Lee,Book review: Advanced Database Techniques by Daniel Martin (MIT Press 1986).,1987,102,SIGART Newsletter,,db/journals/sigart/sigartn102.html#Lee87a,http://doi.acm.org/10.1145/36970.1057638 +Natalie Dehn,NLP research at the Yale AI Project.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Dehn82,http://doi.acm.org/10.1145/1056663.1056734 +Giorgio P. Ingargiola,The Introductory Undergraduate AI Course as Observed on WWW.,1995,6,SIGART Bulletin,3,db/journals/sigart/sigart6.html#IngargiolaW95,http://doi.acm.org/10.1145/208628.208629 +Max Bramer,Advances in computer chess.,1978,67,SIGART Newsletter,,db/journals/sigart/sigartn67.html#Bramer78,http://doi.acm.org/10.1145/1045443.1045445 +Jaime G. Carbonell,A note on the AI tutorial at the ACM.,1982,81,SIGART Newsletter,,db/journals/sigart/sigartn81.html#Carbonell82,http://doi.acm.org/10.1145/1056803.1056805 +Erkan Tin,Computational Situation Theory.,1994,5,SIGART Bulletin,4,db/journals/sigart/sigart5.html#TinA94,http://doi.acm.org/10.1145/191604.191608 +Karen T. Sutherland,Announcements.,2001,12,Intelligence,4,db/journals/sigart/sigart12.html#Sutherland01c,http://doi.acm.org/10.1145/504313.504325 +Deepak Kumar,Curriculum descant: AI topics: organizing online knowledge sources about AI for the lay public.,2001,12,Intelligence,3,db/journals/sigart/sigart12.html#Kumar01b,http://doi.acm.org/10.1145/383824.383830 +Joseph Agassi,Winter 1988 Daedalus.,1988,105,SIGART Newsletter,,db/journals/sigart/sigartn105.html#Agassi88,http://doi.acm.org/10.1145/49093.1058127 +Elliot Soloway,Knowledge-directed learning.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#SolowayR77,http://doi.acm.org/10.1145/1045343.1045374 +Zavdi L. Lichtman,Some* an FEXPR is better than a macro.,1986,97,SIGART Newsletter,,db/journals/sigart/sigartn97.html#Lichtman86,http://doi.acm.org/10.1145/15719.15720 +John E. Laird,Preface for Special Section on Integrated Cognitive Architectures.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Laird91,http://doi.acm.org/10.1145/122344.1063801 +Steven R. LeClair,Interactive learning: a multiexpert paradigm for acquiring new knowledge.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#LeClair89,http://doi.acm.org/10.1145/63266.63271 +Alex Bykat,An evaluation of MProlog by Logicware.,1986,95,SIGART Newsletter,,db/journals/sigart/sigartn95.html#Bykat86,http://doi.acm.org/10.1145/1056563.1056567 +Fabrizio Massimo Ferrara,Socrates: a system to extract rules and knowledge from existing databases.,1988,104,SIGART Newsletter,,db/journals/sigart/sigartn104.html#Ferrara88,http://doi.acm.org/10.1145/44019.44020 +Marty Kalin,Book review: Prolog for Programmers by Feliks Kluzniak and Stanislaw Szpakowicz (Academic Press).,1988,103,SIGART Newsletter,,db/journals/sigart/sigartn103.html#Kalin88,http://doi.acm.org/10.1145/44418.1057644 +D. J. H. Brown,Concept learning by feature value interval abstraction.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Brown77a,http://doi.acm.org/10.1145/1045343.1045375 +Thomas Dean,Context-Dependent Computational Components.,1996,7,SIGART Bulletin,2,db/journals/sigart/sigart7.html#Dean96,http://doi.acm.org/10.1145/242587.242588 +Raymond Reiter,An approach to deductive question-answering systems.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Reiter77,http://doi.acm.org/10.1145/1045283.1045312 +Graeme Ritchie,Survey of natural language processing.,1982,80,SIGART Newsletter,,db/journals/sigart/sigartn80.html#Ritchie82,http://doi.acm.org/10.1145/1056176.1056184 +Douglas Blank,News.,2001,12,Intelligence,3,db/journals/sigart/sigart12.html#Blank01c,http://doi.acm.org/10.1145/383824.383829 +Allen Hedeen,The effects of restricted syntax on menu-based interaction.,1988,103,SIGART Newsletter,,db/journals/sigart/sigartn103.html#Hedeen88a,http://doi.acm.org/10.1145/44418.44422 +Fernando Gomez,Computer understanding of descriptive contexts: U. of Central Florida.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Gomez82,http://doi.acm.org/10.1145/1056663.1056693 +Michael L. Baird,Relational models for object location.,1975,55,SIGART Newsletter,,db/journals/sigart/sigartn55.html#Baird75a,http://doi.acm.org/10.1145/1045253.1045256 +Amruth N. Kumar,Announcements.,1999,10,Intelligence,2,db/journals/sigart/sigart10.html#Kumar99b,http://www.acm.org/pubs/citations/journals/intelligence/1999-10-2/p33-kumar/ +Hans J. Berliner,The 1985 Fredkin competition.,1986,96,SIGART Newsletter,,db/journals/sigart/sigartn96.html#Berliner86,http://doi.acm.org/10.1145/15715.15717 +Stanley J. Rosenschein,The production system: architecture and abstraction.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Rosenschein77,http://doi.acm.org/10.1145/1045343.1045392 +Bruce G. Buchanan,Model-directed learning of production rules.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#BuchananM77,http://doi.acm.org/10.1145/1045343.1045371 +Alfred Kobsa,First Experiences with the SB-ONE Knowledge Representation Workbench in Natural-Language Applications.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#Kobsa91,http://doi.acm.org/10.1145/122296.122306 +Leona F. Fass,Learnability of CFLs: inferring syntactic models from constituent structure.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Fass89,http://doi.acm.org/10.1145/63266.63306 +Jeffrey M. Bradshaw,Letter from the chair.,2001,12,Intelligence,1,db/journals/sigart/sigart12.html#Bradshaw01,http://doi.acm.org/10.1145/376451.376457 +Rolf Pfeifer,"Curriculum descant: teaching ""New AI"".",2000,11,Intelligence,2,db/journals/sigart/sigart11.html#PfeiferK00,http://doi.acm.org/10.1145/337897.337989 +Donald E. Walker,A progress report on speech understanding at SRI.,1972,36,SIGART Newsletter,,db/journals/sigart/sigartn36.html#Walker72,http://doi.acm.org/10.1145/1056597.1056599 +Lawrence J. Mazlack,A mechanism for natural language access to database systems: U. of Cincinnati.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#MazlackFLP82,http://doi.acm.org/10.1145/1056663.1056683 +Steve Coles,Chess.,1972,37,SIGART Newsletter,,db/journals/sigart/sigartn37.html#Coles72b,http://doi.acm.org/10.1145/1056777.1056778 +Peter G. Selfridge,Cospace.,1999,10,Intelligence,1,db/journals/sigart/sigart10.html#SelfridgeK99,http://doi.acm.org/10.1145/298475.298488 +John P. Fishburn,Another optimization of alpha-beta search.,1983,84,SIGART Newsletter,,db/journals/sigart/sigartn84.html#Fishburn83,http://doi.acm.org/10.1145/1056623.1056628 +S. Rebecca Thomas,A Consideration of Some Approaches to Course Organization.,1995,6,SIGART Bulletin,2,db/journals/sigart/sigart6.html#Thomas95,http://doi.acm.org/10.1145/201977.201991 +J. Bradley,The symptom-component approach to knowledge acquisition.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#BradleyH89,http://doi.acm.org/10.1145/63266.63275 +M. J. Smith,APRIL: a flexible production rule interpreter.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#SmithS77,http://doi.acm.org/10.1145/1045343.1045361 +Seng-cho Timothy Chou,The Implementation of a Model-based Belief Revision System.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#ChouW91,http://doi.acm.org/10.1145/122296.122301 +T. Mahadeva Rao,Algorithms to play Mastermind.,1986,95,SIGART Newsletter,,db/journals/sigart/sigartn95.html#RaoKO86,http://doi.acm.org/10.1145/1056563.1056568 +Roger C. Parkison,Conversational language comprehension: UCLA.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Parkison82,http://doi.acm.org/10.1145/1056663.1056677 +Tim Menzies,Cost benefits of ontologies.,1999,10,Intelligence,3,db/journals/sigart/sigart10.html#Menzies99,http://doi.acm.org/10.1145/318964.318969 +Reva Freedman,Links: what is an intelligent tutoring system?,2000,11,Intelligence,3,db/journals/sigart/sigart11.html#FreedmanAM00,http://doi.acm.org/10.1145/350752.350756 +David H. D. Warren,Prolog - the language and its implementation compared with Lisp.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#WarrenP077,http://doi.acm.org/10.1145/872736.806939 +Karen T. Sutherland,Book reviews.,2001,12,Intelligence,2,db/journals/sigart/sigart12.html#Sutherland01a,http://doi.acm.org/10.1145/378116.378126 +Jerry Potter,Scene segmentation.,1975,52,SIGART Newsletter,,db/journals/sigart/sigartn52.html#Potter75,http://doi.acm.org/10.1145/1045236.1045243 +Bryan M. Kramer,Implementing Telos.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#KramerCKTWM91,http://doi.acm.org/10.1145/122296.122307 +James F. Allen,Plan recognition and language.,1978,66,SIGART Newsletter,,db/journals/sigart/sigartn66.html#Allen78,http://doi.acm.org/10.1145/1045416.1045420 +H. Penny Nii,Rule-based understanding of signals.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#NiiF77,http://doi.acm.org/10.1145/1045343.1045394 +Edward J. Coyne,Weather reporting.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Coyne77,http://doi.acm.org/10.1145/1045283.1045307 +Patrick Sobalvarro,Turtles and defense.,1982,82,SIGART Newsletter,,db/journals/sigart/sigartn82.html#SobalvarroK82,http://doi.acm.org/10.1145/1056602.1056608 +James M. Crawford,Algernon - A Tractable System for Knowledge-Representation.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#CrawfordK91,http://doi.acm.org/10.1145/122296.122302 +Anthony Preston,Book review: Automated Reasoning: 33 Basic Research Problems by Larry Wos (Prentice Hall 1988).,1988,105,SIGART Newsletter,,db/journals/sigart/sigartn105.html#Preston88,http://doi.acm.org/10.1145/49093.1058124 +Rich Fikes,Fourth U.S. computer chess championship.,1974,44,SIGART Newsletter,,db/journals/sigart/sigartn44.html#Fikes74c,http://doi.acm.org/10.1145/1045183.1045188 +Karen T. Sutherland,Book reviews.,2000,11,Intelligence,2,db/journals/sigart/sigart11.html#Sutherland00a,http://doi.acm.org/10.1145/337897.338002 +Mildred L. G. Shaw,A grid-based tool for knowledge acquisition: validation with multiple experts.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Shaw89,http://doi.acm.org/10.1145/63266.63300 +Gretchen P. Brown,Indirect speech acts: characterizing multiple forms.,1978,66,SIGART Newsletter,,db/journals/sigart/sigartn66.html#Brown78,http://doi.acm.org/10.1145/1045416.1045423 +Amruth N. Kumar,Announcements.,2000,11,Intelligence,1,db/journals/sigart/sigart11.html#Kumar00,http://doi.acm.org/10.1145/333175.333882 +R. Mike Cameron-Jones,Efficient Top-Down Induction of Logic Programs.,1994,5,SIGART Bulletin,1,db/journals/sigart/sigart5.html#Cameron-JonesQ94,http://doi.acm.org/10.1145/181668.181676 +,The ninth North American computer chess championship.,1980,69,SIGART Newsletter,,db/journals/sigart/sigartn69.html#X80,http://doi.acm.org/10.1145/1056433.1056437 +Alan L. Tharp,Using a natural language interface for elementary instruction.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Tharp77,http://doi.acm.org/10.1145/1045283.1045337 +Rodney A. Brooks,Integrated Systems Based on Behaviors.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Brooks91,http://doi.acm.org/10.1145/122344.122352 +Deepak Kumar,Curriculum descant: beyond introductory AI.,1999,10,Intelligence,3,db/journals/sigart/sigart10.html#Kumar99c,http://doi.acm.org/10.1145/318964.318967 +Larry R. Harris,Status report on the ROBOT natural language query processor.,1978,66,SIGART Newsletter,,db/journals/sigart/sigartn66.html#Harris78,http://doi.acm.org/10.1145/1045416.1045417 +L. F. Pau,Conceptual graphs as a visual language for knowledge acquisition in architectural expert systems.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#PauN89,http://doi.acm.org/10.1145/63266.63291 +Philip C. Norem,Quantitative artificial intelligence: how much is enough?,1985,91,SIGART Newsletter,,db/journals/sigart/sigartn91.html#Norem85,http://doi.acm.org/10.1145/1056541.1056544 +Nada Lavrac,Methods for knowledge acquisition and refinement in second generation expert systems.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#LavracM89,http://doi.acm.org/10.1145/63266.63274 +Keith Price,Book review: Three-Dimensional Machine Vision by Takeo Kanade (Kluwer Academic Publishers).,1988,103,SIGART Newsletter,,db/journals/sigart/sigartn103.html#Price88b,http://doi.acm.org/10.1145/44418.1057647 +Philip Klahr,Planning techniques for rule selection in deductive question-answering.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Klahr77,http://doi.acm.org/10.1145/1045343.1045346 +Harry G. Barrow,Representation and use of knowledge in vision.,1975,52,SIGART Newsletter,,db/journals/sigart/sigartn52.html#BarrowT75,http://doi.acm.org/10.1145/1045236.1045242 +Toni Bollinger,The LILOG Knowledge Representation System.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#BollingerP91,http://doi.acm.org/10.1145/122296.122300 +David D. Woods,Human Interaction with Intelligent Systems: An Overview and Bibliography.,1991,2,SIGART Bulletin,5,db/journals/sigart/sigart2.html#WoodsJP91,http://doi.acm.org/10.1145/122570.122571 +Steven A. Vere,Organization of the Basic Agent.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Vere91,http://doi.acm.org/10.1145/122344.122378 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1988,103,SIGART Newsletter,,db/journals/sigart/sigartn103.html#HumphreyK88c,http://doi.acm.org/10.1145/44418.1057649 +Lundy M. Lewis,A Time-Ordered Architecture for Integrating Reflective and Deliberative Behavior.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Lewis91,http://doi.acm.org/10.1145/122344.122366 +André Valente,Knowledge-Level Analyysis of Planning Systems.,1995,6,SIGART Bulletin,1,db/journals/sigart/sigart6.html#Valente95,http://doi.acm.org/10.1145/202187.202195 +Robert Michaelson,Application of an expert computer system to federal tax planning.,1982,82,SIGART Newsletter,,db/journals/sigart/sigartn82.html#Michaelson82,http://doi.acm.org/10.1145/1056602.1056606 +Deborah A. Vastola,Interactive Learning Tool for Statistical Reasoning with Uncertainty.,1995,6,SIGART Bulletin,2,db/journals/sigart/sigart6.html#VastolaW95,http://doi.acm.org/10.1145/201977.201992 +,Problem solving information system with German as query language: a project in automated language processing.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#X77,http://doi.acm.org/10.1145/1045283.1045318 +Lee Spector,Artificial Intelligence as the Liberal Arts of Computer Science.,1995,6,SIGART Bulletin,2,db/journals/sigart/sigart6.html#Spector95,http://doi.acm.org/10.1145/201977.201981 +Lee D. Erman,Chess.,1976,60,SIGART Newsletter,,db/journals/sigart/sigartn60.html#Erman76,http://doi.acm.org/10.1145/1045276.1045279 +Stuart J. Russell,An Architecture for Bounded Rationality.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Russell91,http://doi.acm.org/10.1145/122344.122374 +Robert St. Amant,Interface agents as surrogate users.,2000,11,Intelligence,2,db/journals/sigart/sigart11.html#Amant00,http://doi.acm.org/10.1145/337897.337998 +Michael Lebowitz,Natural language processing at Columbia University.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Lebowitz82,http://doi.acm.org/10.1145/1056663.1056684 +Franz Baader,KRIS: Knowledge Representation and Inference System.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#BaaderH91,http://doi.acm.org/10.1145/122296.122298 +Narinder Singh,Epikit: A Library of Subroutines Supporting Declarative Representations and Reasoning.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#SinghG91,http://doi.acm.org/10.1145/122296.122318 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1989,109,SIGART Newsletter,,db/journals/sigart/sigartn109.html#HumphreyK89a,http://doi.acm.org/10.1145/70632.1059732 +,TOPIC: a system for automatic text condensation.,1983,83,SIGART Newsletter,,db/journals/sigart/sigartn83.html#X83,http://doi.acm.org/10.1145/1056613.1056618 +A. J. Payne,A basis for complexity measurement?,1982,82,SIGART Newsletter,,db/journals/sigart/sigartn82.html#Payne82,http://doi.acm.org/10.1145/1056602.1056605 +Jay Liebowitz,If there is artificial intelligence? Is there such a thing as artificial stupidity.,1989,109,SIGART Newsletter,,db/journals/sigart/sigartn109.html#Liebowitz89,http://doi.acm.org/10.1145/70632.70634 +Douglas Blank,News.,2000,11,Intelligence,3,db/journals/sigart/sigart11.html#Blank00a,http://doi.acm.org/10.1145/350752.350754 +Susan L. Epstein,Teaching Introductory AI from First Principles.,1995,6,SIGART Bulletin,2,db/journals/sigart/sigart6.html#EpsteinT95,http://doi.acm.org/10.1145/201977.201984 +Bertram C. Bruce,Interacting plans.,1978,66,SIGART Newsletter,,db/journals/sigart/sigartn66.html#Bruce78,http://doi.acm.org/10.1145/1045416.1045426 +Brian P. McCune,The PSI Program Model Builder - synthesis of very high-level programs.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#McCune77,http://doi.acm.org/10.1145/872736.806942 +Syed S. Ali,Links: What use is knowledge?,1999,10,Intelligence,2,db/journals/sigart/sigart10.html#Ali99a,http://doi.acm.org/10.1145/309697.309701 +Mai H. Nguyen,A Connectionist Approach to Rate Adaptation.,1994,5,SIGART Bulletin,3,db/journals/sigart/sigart5.html#NguyenC94,http://doi.acm.org/10.1145/181911.181916 +Hyungmin Michael Chung,Empirical analysis of inductive knowledge acquisition methods.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Chung89,http://doi.acm.org/10.1145/63266.63294 +David M. W. Powers,Playing Mastermind more logically or writing Prolog more efficiently.,1984,89,SIGART Newsletter,,db/journals/sigart/sigartn89.html#Powers84a,http://doi.acm.org/10.1145/1056521.1056526 +Keith Price,Books.,1984,87,SIGART Newsletter,,db/journals/sigart/sigartn87.html#Price84e,http://doi.acm.org/10.1145/1056648.1056649 +Donald Michie,AL1: a package for generating strategies from tables.,1976,59,SIGART Newsletter,,db/journals/sigart/sigartn59.html#Michie76,http://doi.acm.org/10.1145/1045270.1045272 +Michael D. Rychener,Control requirements for the design of production system architectures.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#Rychener77,http://doi.acm.org/10.1145/872736.806930 +Edward M. Riseman,AI and brain theory at the Univ. of Massachusetts.,1975,52,SIGART Newsletter,,db/journals/sigart/sigartn52.html#Riseman75,http://doi.acm.org/10.1145/1045236.1045239 +Steve Coles,Books.,1972,36,SIGART Newsletter,,db/journals/sigart/sigartn36.html#Coles72a,http://doi.acm.org/10.1145/1056597.1056600 +Maria Fox,An Efficient Algorithm for Managing Partial Orders in Planning.,1996,7,SIGART Bulletin,4,db/journals/sigart/sigart7.html#FoxL96,http://doi.acm.org/10.1145/264927.264930 +F. A. Mohammed,A Knowledge Based Arabic Question Answering System (AQAS).,1993,4,SIGART Bulletin,4,db/journals/sigart/sigart4.html#MohammedNH93,http://doi.acm.org/10.1145/165482.165488 +Clare Bates Congdon,Curriculum descant: machine learning for the masses.,2001,12,Intelligence,2,db/journals/sigart/sigart12.html#CongdonK01,http://doi.acm.org/10.1145/378116.378118 +,Counterexamples and conjectures.,1971,30,SIGART Newsletter,,db/journals/sigart/sigartn30.html#X71,http://doi.acm.org/10.1145/1056574.1056575 +Richard J. Wallace,Anytime Algorithms for Constraint Satisfaction and SAT Problems.,1996,7,SIGART Bulletin,2,db/journals/sigart/sigart7.html#WallaceF96,http://doi.acm.org/10.1145/242587.242589 +Jörg-Uwe Kietz,Inductive Logic Programming and Learnability.,1994,5,SIGART Bulletin,1,db/journals/sigart/sigart5.html#KietzD94,http://doi.acm.org/10.1145/181668.181674 +J. P. E. Hodgson,Interactive problem solving.,1986,98,SIGART Newsletter,,db/journals/sigart/sigartn98.html#Hodgson86,http://doi.acm.org/10.1145/15923.15925 +Bruce W. Ballard,"Natural Language interfaces to ""layered"" domains: Duke University.",1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Ballard82,http://doi.acm.org/10.1145/1056663.1056688 +Susanne M. Humphrey,Selected AI-Related Dissertations Assembled.,1988,106,SIGART Newsletter,,db/journals/sigart/sigartn106.html#HumphreyK88,http://doi.acm.org/10.1145/54350.1059597 +Jean T. Monterege,The creation of digital consciousness.,1989,109,SIGART Newsletter,,db/journals/sigart/sigartn109.html#Monterege89,http://doi.acm.org/10.1145/70632.70636 +Keith Price,New books.,1988,105,SIGART Newsletter,,db/journals/sigart/sigartn105.html#Price88d,http://doi.acm.org/10.1145/49093.1058126 +Carl G. Looney,Toward expert systems on a chip.,1986,98,SIGART Newsletter,,db/journals/sigart/sigartn98.html#LooneyA86,http://doi.acm.org/10.1145/15923.15927 +David Gelperin,Conjectures and counterexamples.,1972,34,SIGART Newsletter,,db/journals/sigart/sigartn34.html#Gelperin72,http://doi.acm.org/10.1145/1056587.1056592 +Karen T. Sutherland,Book reviews.,2000,11,Intelligence,3,db/journals/sigart/sigart11.html#Sutherland00b,http://doi.acm.org/10.1145/350752.350767 +Gerard Salton,Automatic indexing of natural language texts: Cornell University.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Salton82,http://doi.acm.org/10.1145/1056663.1056686 +Clark Elliott,"Hunting for the holy grail with ""emotionally intelligent"" virtual actors.",1998,9,SIGART Bulletin,1,db/journals/sigart/sigart9.html#Elliott98,http://doi.acm.org/10.1145/294828.294831 +William G. Wong,Arrays and assignment in prolog.,1987,102,SIGART Newsletter,,db/journals/sigart/sigartn102.html#Wong87,http://doi.acm.org/10.1145/36970.36971 +N. S. Shridharan,The heuristic programming/heuristic DENDRAL project.,1973,39,SIGART Newsletter,,db/journals/sigart/sigartn39.html#Shridharan73,http://doi.acm.org/10.1145/1045154.1045159 +D. Sriram,AI in engineering.,1985,92,SIGART Newsletter,,db/journals/sigart/sigartn92.html#SriramJ85,http://doi.acm.org/10.1145/1056548.1056553 +Brian M. Slator,Extracting lexical knowledge from dictionary text.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Slator89,http://doi.acm.org/10.1145/63266.63305 +Michael P. Smith,Book review: The Logical Foundations of Artificial Intelligence. by Michael R. Genesereth and Nils Nilsson (Morgan Kaufmann 1987).,1988,104,SIGART Newsletter,,db/journals/sigart/sigartn104.html#Smith88,http://doi.acm.org/10.1145/44019.1058036 +C. S. Kwok,A note on sorting Prolog assertions.,1985,91,SIGART Newsletter,,db/journals/sigart/sigartn91.html#Kwok85,http://doi.acm.org/10.1145/1056541.1056545 +Steve Coles,Computer to model nervous system of lobster at Carnegie-Mellon.,1973,38,SIGART Newsletter,,db/journals/sigart/sigartn38.html#Coles73,http://doi.acm.org/10.1145/1056781.1056783 +Carla P. Gomes,ABA: An Assignment Based Algorithm for Resource Allocation.,1996,7,SIGART Bulletin,1,db/journals/sigart/sigart7.html#GomesH96,http://doi.acm.org/10.1145/230062.230063 +Beau Sheil,Interlisp-D: further steps in the flight from time-sharing.,1981,77,SIGART Newsletter,,db/journals/sigart/sigartn77.html#Sheil81,http://doi.acm.org/10.1145/1056743.1056745 +Lee D. Erman,Overview of the hearsay speech understanding research.,1976,56,SIGART Newsletter,,db/journals/sigart/sigartn56.html#Erman76b,http://doi.acm.org/10.1145/1045259.1045262 +Nancy L. Tinkham,The Stage One Turing Test as an Artificial Intelligence Class Exercise.,1995,6,SIGART Bulletin,4,db/journals/sigart/sigart6.html#TinkhamP95,http://doi.acm.org/10.1145/222267.222269 +Roger C. Schank,The Weizenbaum controversy.,1976,59,SIGART Newsletter,,db/journals/sigart/sigartn59.html#Schank76,http://doi.acm.org/10.1145/1045270.1045271 +Karen T. Sutherland,Book reviews.,1999,10,Intelligence,4,db/journals/sigart/sigart10.html#Sutherland99a,http://doi.acm.org/10.1145/322880.322886 +Jonathan Stillman,Tachyon: A Constraint-Based Temporal Model and its Implementation.,1993,4,SIGART Bulletin,3,db/journals/sigart/sigart4.html#StillmanAD93,http://doi.acm.org/10.1145/152947.1064735 +Richard Rohwer,The Time Dimension of Neural Network Models.,1994,5,SIGART Bulletin,3,db/journals/sigart/sigart5.html#Rohwer94,http://doi.acm.org/10.1145/181911.181917 +Richard M. Young,Mixtures of strategies in structurally adaptive production systems: examples from seriation and subtraction.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Young77,http://doi.acm.org/10.1145/1045343.1045378 +Rachel Reichman,A computational module for spontaneous discourse: UCSD.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Reichman82,http://doi.acm.org/10.1145/1056663.1056678 +Lee D. Erman,Chess.,1976,56,SIGART Newsletter,,db/journals/sigart/sigartn56.html#Erman76a,http://doi.acm.org/10.1145/1045259.1045260 +Steve Coles,Fourth United States computer chess championship from ACM-73 news release.,1973,41,SIGART Newsletter,,db/journals/sigart/sigartn41.html#Coles73b,http://doi.acm.org/10.1145/1045171.1045175 +Jack Buchanan,Chess.,1975,50,SIGART Newsletter,,db/journals/sigart/sigartn50.html#Buchanan75,http://doi.acm.org/10.1145/1045215.1045218 +Wesley E. Snyder,The CSL vision system.,1974,45,SIGART Newsletter,,db/journals/sigart/sigartn45.html#Snyder74,http://doi.acm.org/10.1145/1045220.1045221 +Richard S. Wallace,An easy implementation of PiL (Prolog in Lisp).,1983,85,SIGART Newsletter,,db/journals/sigart/sigartn85.html#Wallace83,http://doi.acm.org/10.1145/1056635.1056638 +Larry R. Harris,Research at the Artificial Intelligence corp.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Harris82,http://doi.acm.org/10.1145/1056663.1056670 +Karen Sparck Jones,Research at U. of Cambridge.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#JonesBT82,http://doi.acm.org/10.1145/1056663.1056679 +Drew McDermott,Symbol-mapping: a technical problem in PLANNER-like systems.,1975,51,SIGART Newsletter,,db/journals/sigart/sigartn51.html#McDermott75,http://doi.acm.org/10.1145/1045231.1045232 +Claus-Rainer Rollinger,Projects at Technische Universitaet Berlin.,1982,80,SIGART Newsletter,,db/journals/sigart/sigartn80.html#Rollinger82,http://doi.acm.org/10.1145/1056176.1056181 +Benjamin W. Wah,Survey on special purpose computer architectures for AI.,1986,96,SIGART Newsletter,,db/journals/sigart/sigartn96.html#WahL86,http://doi.acm.org/10.1145/15715.15718 +Paul McKevitt,Conference review.,2000,11,Intelligence,3,db/journals/sigart/sigart11.html#McKevittMN00,http://doi.acm.org/10.1145/350752.350764 +Karen T. Sutherland,Book reviews.,2001,12,Intelligence,4,db/journals/sigart/sigart12.html#Sutherland01d,http://doi.acm.org/10.1145/504313.504327 +Alfonso Gerevini,Temporal Reasoning in Timegraph I-II.,1993,4,SIGART Bulletin,3,db/journals/sigart/sigart4.html#GereviniSS93,http://doi.acm.org/10.1145/152947.152953 +Lee D. Erman,Chess and Go-Moku.,1976,59,SIGART Newsletter,,db/journals/sigart/sigartn59.html#Erman76d,http://doi.acm.org/10.1145/1045270.1045274 +J. Elliott Smith,Book review: Readings in Knowledge Representation. Edited by Ronald J. Brachman and Hector J. Levesque (Morgan Kaufmann Publishers).,1986,98,SIGART Newsletter,,db/journals/sigart/sigartn98.html#Smith86,http://doi.acm.org/10.1145/15923.1058024 +Erhard Konrad,Critical remarks about a paper on limitations for artificial intelligence.,1978,67,SIGART Newsletter,,db/journals/sigart/sigartn67.html#Konrad78,http://doi.acm.org/10.1145/1045443.1045444 +Carole D. Hafner,Natural language database query project: General Motors Research Laboratories.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Hafner82,http://doi.acm.org/10.1145/1056663.1056694 +Stuart Lowry,Conference review.,1999,10,Intelligence,3,db/journals/sigart/sigart10.html#Lowry99,http://doi.acm.org/10.1145/318964.318970 +Stuart C. Shapiro,Case Studies of SNePS.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#Shapiro91,http://doi.acm.org/10.1145/122296.122316 +Ted Shortliffe,Some considerations for the implementation of knowledge-based expert systems.,1975,55,SIGART Newsletter,,db/journals/sigart/sigartn55.html#ShortliffeD75,http://doi.acm.org/10.1145/1045253.1045254 +Robert L. Causey,Book review: Artificial Minds By Stan Franklin (MIT Press).,1998,9,SIGART Bulletin,1,db/journals/sigart/sigart9.html#Causey98,http://doi.acm.org/10.1145/294828.1067898 +Deepak Kumar,Curriculum descant: pedagogical dimensions of game playing.,1999,10,Intelligence,1,db/journals/sigart/sigart10.html#Kumard99,http://doi.acm.org/10.1145/298475.298480 +Marianne LaFrance,The quality of expertise: implications of expert-novice differences for knowledge acquisition.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#LaFrance89,http://doi.acm.org/10.1145/63266.63267 +Steve Lawrence,Accessibility of information on the Web.,2000,11,Intelligence,1,db/journals/sigart/sigart11.html#LawrenceG00,http://doi.acm.org/10.1145/333175.333181 +Drew McDermott,Artificial intelligence meets natural stupidity.,1976,57,SIGART Newsletter,,db/journals/sigart/sigartn57.html#McDermott76,http://doi.acm.org/10.1145/1045339.1045340 +Deepak N. Kumar,Curriculum descant: How much programming? What kind?.,2000,11,Intelligence,4,db/journals/sigart/sigart11.html#Kumar00b,http://doi.acm.org/10.1145/355137.355140 +Christopher Riesbeck,An expectation-driven production system for natural language understanding.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Riesbeck77,http://doi.acm.org/10.1145/1045343.1045386 +Marti A. Hearst,"Overview of the Symposium ""On the Instruction of Introductory AI"".",1995,6,SIGART Bulletin,2,db/journals/sigart/sigart6.html#Hearst95,http://doi.acm.org/10.1145/201977.201979 +Joseph S. Fulda,The Logic of the Whole Truth.,1992,3,SIGART Bulletin,2,db/journals/sigart/sigart3.html#Fulda92,http://doi.acm.org/10.1145/130700.130702 +Keith Price,Performance and Evaluation of Lisp by R. Gabriel (MIT Press).,1987,99,SIGART Newsletter,,db/journals/sigart/sigartn99.html#Price87a,http://doi.acm.org/10.1145/24667.1058033 +Christian Jacquemin,A Temporal Connectionist Approach to Natural Language.,1994,5,SIGART Bulletin,3,db/journals/sigart/sigart5.html#Jacquemin94,http://doi.acm.org/10.1145/181911.181913 +Thalia Kafatou,Is the digital computer the right tool for artificial intelligence?,1980,73,SIGART Newsletter,,db/journals/sigart/sigartn73.html#Kafatou80,http://doi.acm.org/10.1145/1056768.1056771 +Harley R. Myler,Automated design data capture using relaxation techniques.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#MylerG89,http://doi.acm.org/10.1145/63266.63301 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1986,98,SIGART Newsletter,,db/journals/sigart/sigartn98.html#HumphreyK86b,http://doi.acm.org/10.1145/15923.1058026 +Larry O. Rouse,An eclectic 5th generation architecture for ultra high speed computing.,1986,95,SIGART Newsletter,,db/journals/sigart/sigartn95.html#RouseFG86,http://doi.acm.org/10.1145/1056563.1056569 +Robert Balzer,On the use of programming knowledge to understand informal process descriptions.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#BalzerGW77,http://doi.acm.org/10.1145/1045343.1045387 +Philip R. Cohen,Workshop on social plans and language.,1978,66,SIGART Newsletter,,db/journals/sigart/sigartn66.html#CohenB78,http://doi.acm.org/10.1145/1045416.1045418 +Christopher A. Welty,Backtracking: and the winner is....,2000,11,Intelligence,4,db/journals/sigart/sigart11.html#Welty00a,http://doi.acm.org/10.1145/355137.355145 +Daniel E. O'Leary,Knowledge management for best practices.,1999,10,Intelligence,4,db/journals/sigart/sigart10.html#OLearyS99,http://doi.acm.org/10.1145/322880.322879 +Steve Coles,AI in the media.,1974,47,SIGART Newsletter,,db/journals/sigart/sigartn47.html#Coles74a,http://doi.acm.org/10.1145/1045190.1045194 +Nigel Shadbolt,The empirical study of knowledge elicitation techniques.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#ShadboltB89,http://doi.acm.org/10.1145/63266.63268 +A. Bolour,The role of time in information processing: a survey.,1982,80,SIGART Newsletter,,db/journals/sigart/sigartn80.html#BolourADW82,http://doi.acm.org/10.1145/1056176.1056180 +D. R. Hobaugh,AI update.,2001,12,Intelligence,4,db/journals/sigart/sigart12.html#Hobaugh01,http://doi.acm.org/10.1145/504313.504317 +Kwok-bun Yue,Some heuristics for playing Mastermind.,1986,98,SIGART Newsletter,,db/journals/sigart/sigartn98.html#Yue86,http://doi.acm.org/10.1145/15923.15924 +Raymond D. Gumb,Reasonable breadth-biased: A algorithms.,1981,78,SIGART Newsletter,,db/journals/sigart/sigartn78.html#Gumb81,http://doi.acm.org/10.1145/1056737.1056739 +Keith Price,Book review: Lisp Lore: A Guide to Programming the Lisp Machine by: Hank Bromley Kluwer (Academic Publishers).,1987,100,SIGART Newsletter,,db/journals/sigart/sigartn100.html#Price87b,http://doi.acm.org/10.1145/24671.1057628 +Deepak Kumar,Undergraduate AI and its Non-imperative Prerequisite.,1995,6,SIGART Bulletin,2,db/journals/sigart/sigart6.html#KumarW95,http://doi.acm.org/10.1145/201977.201982 +Nitish Manocha,Cover story: structural Web search using a graph-based discovery system.,2001,12,Intelligence,1,db/journals/sigart/sigart12.html#ManochaCH01,http://doi.acm.org/10.1145/376451.376466 +Keith Price,Books.,1983,85,SIGART Newsletter,,db/journals/sigart/sigartn85.html#Price83b,http://doi.acm.org/10.1145/1056635.1056636 +Thierry Catfolis,Mapping a Complex Temporal Problem into a Combination of Static and Dynamic Neural Networks.,1994,5,SIGART Bulletin,3,db/journals/sigart/sigart5.html#Catfolis94,http://doi.acm.org/10.1145/181911.181914 +Diana F. Gordon,Using cautious heuristics to bias generlization and guide example section.,1988,105,SIGART Newsletter,,db/journals/sigart/sigartn105.html#Gordon88,http://doi.acm.org/10.1145/49093.49094 +Douglas B. Lenat,Designing a rule system that searches for scientific discoveries.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#LenatH77,http://doi.acm.org/10.1145/1045343.1045355 +William S. Faught,Conversational action patterns in dialogs.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Faught77a,http://doi.acm.org/10.1145/1045343.1045382 +Robert Nado,JOSIE: An Integration of Specialized Representation and Reasoning Tools.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#NadoBF91,http://doi.acm.org/10.1145/122296.122312 +Abdul Sakib Mondal,A multi-agent system for sales order processing.,2001,12,Intelligence,3,db/journals/sigart/sigart12.html#MondalJ01,http://doi.acm.org/10.1145/383824.383831 +Christopher A. Welty,Backtracking: still garbage collecting.,1999,10,Intelligence,3,db/journals/sigart/sigart10.html#WeltyH99,http://doi.acm.org/10.1145/318964.318975 +Keith Oatley,AISB summer school on knowledge systems.,1974,44,SIGART Newsletter,,db/journals/sigart/sigartn44.html#Oatley74,http://doi.acm.org/10.1145/1045183.1045185 +Patrick Cousot,Automatic synthesis of optimal invariant assertions: Mathematical foundations.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#CousotC77,http://doi.acm.org/10.1145/872736.806926 +Jose Ramirez G.,Use of structure-based models in the development of expert systems.,1989,109,SIGART Newsletter,,db/journals/sigart/sigartn109.html#G89,http://doi.acm.org/10.1145/70632.70638 +Daniel Weinreb,The Lisp Machine manual.,1981,78,SIGART Newsletter,,db/journals/sigart/sigartn78.html#WeinrebM81,http://doi.acm.org/10.1145/1056737.1056738 +Chuck Rieger,Spontaneous computation in cognitive models.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Rieger77,http://doi.acm.org/10.1145/1045343.1045356 +Thea Iberall,Book review: Theoretical Aspects of Reasoning about Knowledge.,1987,102,SIGART Newsletter,,db/journals/sigart/sigartn102.html#IberallM87,http://doi.acm.org/10.1145/36970.1057639 +Tom Murray,A Knowledge Acquisition Tool for Intelligent Computer Tutors.,1991,2,SIGART Bulletin,2,db/journals/sigart/sigart2.html#MurrayW91,http://doi.acm.org/10.1145/122319.122324 +Paul Creelman,Book review: L'espace en Français by Claude Vandeloise (Editions du Seuil).,1988,104,SIGART Newsletter,,db/journals/sigart/sigartn104.html#Creelman88,http://doi.acm.org/10.1145/44019.1058039 +Martha Stone,Solving mechanics problems: PAT - pulleys and things.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Stone77,http://doi.acm.org/10.1145/1045283.1045316 +Kenneth Mark Colby,Ten criticisms of parry.,1974,48,SIGART Newsletter,,db/journals/sigart/sigartn48.html#Colby74,http://doi.acm.org/10.1145/1045200.1045202 +William J. Mills,AI online: the coverage of the literature of artificial intelligence in online bibliographic databases.,1989,107,SIGART Newsletter,,db/journals/sigart/sigartn107.html#Mills89,http://doi.acm.org/10.1145/65751.65753 +Jaime G. Carbonell,PRODIGY: An Integrated Architecture for Planning and Learning.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#CarbonellEGJKMV91,http://doi.acm.org/10.1145/122344.122353 +Thomas R. Gruber,The design of an automated assistant for acquiring strategic knowledge.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#GruberC89,http://doi.acm.org/10.1145/63266.63290 +D. Sriram,Knowledge-Based Expert Systems in Engineering - An Annotated Bibliography.,1989,109,SIGART Newsletter,,db/journals/sigart/sigartn109.html#SriramL89, +Ian H. Witten,"The ""Worm"" Programs - Early Experience withh a Distributed Intelligence.",1990,1,SIGART Bulletin,2,db/journals/sigart/sigart1.html#WittenT90,http://doi.acm.org/10.1145/84234.84254 +Alexander J. Pasik,Table-driven rules in expert systems.,1984,87,SIGART Newsletter,,db/journals/sigart/sigartn87.html#PasikS84,http://doi.acm.org/10.1145/1056648.1056650 +Dennis F. Kibler,Program manipulation via an efficient production system.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#KiblerNS77,http://doi.acm.org/10.1145/872736.806946 +Robert St. Amant,Introductory AI educational resources on the web.,2001,12,Intelligence,4,db/journals/sigart/sigart12.html#AmantY01c,http://doi.acm.org/10.1145/504313.504319 +Serge Abiteboul,A systematic method to solve the Rubik's cube problem.,1981,78,SIGART Newsletter,,db/journals/sigart/sigartn78.html#AbiteboulM81,http://doi.acm.org/10.1145/1056737.1056740 +Harold M. Hastings,Biologically motivated machine intelligence.,1986,95,SIGART Newsletter,,db/journals/sigart/sigartn95.html#HastingsW86,http://doi.acm.org/10.1145/1056563.1056566 +Suresh Subramanian,Compiling rules from constraint satisfaction problem solving.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#SubramanianF89,http://doi.acm.org/10.1145/63266.63307 +Jaime G. Carbonell,Machine learning research.,1981,77,SIGART Newsletter,,db/journals/sigart/sigartn77.html#Carbonell81,http://doi.acm.org/10.1145/1056743.1056744 +Warren Teitelman,INTERLISP documentation.,1974,44,SIGART Newsletter,,db/journals/sigart/sigartn44.html#Teitelman74,http://doi.acm.org/10.1145/1045183.1045186 +Harold Boley,Contributions to a practice-relevant AI theory.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Boley77,http://doi.acm.org/10.1145/1045283.1045303 +Gregg Collins,Model-Based Integration of Planning and Learning.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#CollinsBKF91,http://doi.acm.org/10.1145/122344.122354 +Keith Price,New Books.,1987,99,SIGART Newsletter,,db/journals/sigart/sigartn99.html#Price87,http://doi.acm.org/10.1145/24667.1058030 +Neil M. Goldman,The inference of domain structure from informal process descriptions.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#GoldmanBW77,http://doi.acm.org/10.1145/1045343.1045388 +Nicola Guarino,A Concise Presentation if ITL.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#Guarino91,http://doi.acm.org/10.1145/122296.122305 +Jonathan Slocum,The LRC machine translation system: Linguistics Research Center.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Slocum82,http://doi.acm.org/10.1145/1056663.1056707 +Susan Weber McRoy,Creating natural language ouput for real-time applications.,2001,12,Intelligence,2,db/journals/sigart/sigart12.html#McRoyCA01,http://doi.acm.org/10.1145/378116.378122 +Joseph Schreiner,EXPERIPLAN: an expert system that selects statistical analyses for research studies.,1984,89,SIGART Newsletter,,db/journals/sigart/sigartn89.html#Schreiner84,http://doi.acm.org/10.1145/1056521.1056525 +J. Larson,Inductive inference of VL decision rules.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#LarsonM77,http://doi.acm.org/10.1145/1045343.1045369 +Richard R. Burton,Semantic grammar: an engineering technique for constructing natural language understanding systems.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Burton77,http://doi.acm.org/10.1145/1045283.1045290 +Frederick Hayes-Roth,The role of partial and best matches in knowledge systems.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Hayes-Roth77a,http://doi.acm.org/10.1145/1045343.1045390 +Ralph M. Weischedel,Natural language processing systems and III-formed input: University of Delaware/Sperry Univac.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#WeischedelRAS82,http://doi.acm.org/10.1145/1056663.1056687 +Ivan Bratko,Applications of Inductive Logic Programming.,1994,5,SIGART Bulletin,1,db/journals/sigart/sigart5.html#BratkoK94,http://doi.acm.org/10.1145/181668.181678 +Gian Piero Zarri,An interactive information retrieval of biographical data.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Zarri77,http://doi.acm.org/10.1145/1045283.1045310 +,Natural language research at the University of Pennsylvania.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#X82,http://doi.acm.org/10.1145/1056663.1056718 +Murali Krishnamurthi,Knowledge acquisition in a machine fault diagnosis shell.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#KrishnamurthiU89,http://doi.acm.org/10.1145/63266.63277 +Amruth N. Kumar,Announcements.,2000,11,Intelligence,2,db/journals/sigart/sigart11.html#Kumar00a,http://www.acm.org/pubs/citations/journals/intelligence/2000-11-2/p39-kumar/ +Joe Marks,Letter from the chair.,2001,12,Intelligence,3,db/journals/sigart/sigart12.html#Marks01,http://doi.acm.org/10.1145/383824.383825 +Lee D. Erman,Chess and backgammon.,1976,58,SIGART Newsletter,,db/journals/sigart/sigartn58.html#Erman76c,http://doi.acm.org/10.1145/1045264.1045268 +Alan W. Biermann,Natural Language programming: Duke University.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#BiermannBFRR82,http://doi.acm.org/10.1145/1056663.1056689 +Joe Marks,Letter from the chair.,2001,12,Intelligence,4,db/journals/sigart/sigart12.html#Marks01a,http://doi.acm.org/10.1145/504313.504315 +Syed S. Ali,Links: authoring tools for AI.,1999,10,Intelligence,3,db/journals/sigart/sigart10.html#Ali99b,http://doi.acm.org/10.1145/318964.318966 +Richard L. Taylor,A Farsi (Persian) business AID.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Taylor77,http://doi.acm.org/10.1145/1045283.1045328 +A. J. Fenanzo Jr.,Darwinian evolution as a paradigm for AI research.,1986,97,SIGART Newsletter,,db/journals/sigart/sigartn97.html#Fenanzo86,http://doi.acm.org/10.1145/15719.15721 +Andee Rubin,The communication of plans in different media.,1978,66,SIGART Newsletter,,db/journals/sigart/sigartn66.html#Rubin78,http://doi.acm.org/10.1145/1045416.1045428 +Paola Velardi,Acquisition of semantic patterns from a natural corpus of texts.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#VelardiPM89,http://doi.acm.org/10.1145/63266.63281 +Jack Buchanan,Chess and Go.,1975,51,SIGART Newsletter,,db/journals/sigart/sigartn51.html#Buchanan75a,http://doi.acm.org/10.1145/1045231.1045234 +John Dinsmore,Book review: Mental Spaces: Aspects of Meaning Construction in Natural Language. by Gilles Fauconnier (Bradford/MIT Press).,1987,99,SIGART Newsletter,,db/journals/sigart/sigartn99.html#Dinsmore87,http://doi.acm.org/10.1145/24667.1058031 +Lee D. Erman,Chess.,1975,52,SIGART Newsletter,,db/journals/sigart/sigartn52.html#Erman75,http://doi.acm.org/10.1145/1045236.1045240 +Karen T. Sutherland,Book reviews.,2000,11,Intelligence,1,db/journals/sigart/sigart11.html#Sutherland00,http://doi.acm.org/10.1145/333175.333182 +Alan M. Frisch,An investigation into inference with restricted quantification and a taxonomic representation.,1985,91,SIGART Newsletter,,db/journals/sigart/sigartn91.html#Frisch85,http://doi.acm.org/10.1145/1056541.1056546 +Christopher A. Welty,Backtracking: the eternal flame.,2001,12,Intelligence,1,db/journals/sigart/sigart12.html#Welty01,http://doi.acm.org/10.1145/376451.376470 +Aravind K. Joshi,Some extensions of a system for inferencing on partial information.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Joshi77a,http://doi.acm.org/10.1145/1045343.1045347 +David L. Sallach,Book review: Artificial Intelligence with Statistical Pattern Recognition by Edward A. Patrick and James M. Fattu (Prentice-Hall Inc.).,1989,109,SIGART Newsletter,,db/journals/sigart/sigartn109.html#Sallach89,http://doi.acm.org/10.1145/70632.1059728 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1985,92,SIGART Newsletter,,db/journals/sigart/sigartn92.html#HumphreyK85a,http://doi.acm.org/10.1145/1056548.1056549 +Lee D. Erman,Abstracts.,1975,53,SIGART Newsletter,,db/journals/sigart/sigartn53.html#Erman75a,http://doi.acm.org/10.1145/1216504.1216507 +Susanne M. Humphrey,The elucidation of non-monoTONous reasoning and related notions in artificial intelligence.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Humphrey89,http://doi.acm.org/10.1145/63266.63309 +Gonzalo de la Pena Casares,The RM-CELL: A set of old ideas that produce new results.,1986,97,SIGART Newsletter,,db/journals/sigart/sigartn97.html#Casares86,http://doi.acm.org/10.1145/15719.15723 +Karen T. Sutherland,Book reviews.,1999,10,Intelligence,1,db/journals/sigart/sigart10.html#Sutherland99,http://doi.acm.org/10.1145/298475.298494 +Barbara Brown,The taming of an expert: an anecdotal report.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Brown89a,http://doi.acm.org/10.1145/63266.63283 +Alan E. Filsinger,Photographic storage of AI information.,1980,73,SIGART Newsletter,,db/journals/sigart/sigartn73.html#Filsinger80,http://doi.acm.org/10.1145/1056768.1056773 +Marshall C. Yovits,Ohio State University.,1974,46,SIGART Newsletter,,db/journals/sigart/sigartn46.html#Yovits74,http://doi.acm.org/10.1145/1056793.1056798 +Deepak Kumar,Curriculum descant: the AI education repository.,1999,10,Intelligence,4,db/journals/sigart/sigart10.html#Kumar99f,http://doi.acm.org/10.1145/322880.322884 +Lisa Meeden,News.,1999,10,Intelligence,4,db/journals/sigart/sigart10.html#Meeden99c,http://doi.acm.org/10.1145/322880.322882 +H. J. Messerschmidt,Note on the KPK-table size.,1980,69,SIGART Newsletter,,db/journals/sigart/sigartn69.html#Messerschmidt80,http://doi.acm.org/10.1145/1056433.1056435 +Warwick Yolks,There's always room at the top or how frames gave my life meaning.,1975,53,SIGART Newsletter,,db/journals/sigart/sigartn53.html#Yolks75,http://doi.acm.org/10.1145/1216504.1216508 +John Batali,How Much AI Does a Cognitive Science Major Need to Know?,1995,6,SIGART Bulletin,2,db/journals/sigart/sigart6.html#Batali95,http://doi.acm.org/10.1145/201977.201985 +Peggy M. Karp,News from the Stanford University AI project.,1973,38,SIGART Newsletter,,db/journals/sigart/sigartn38.html#Karp73,http://doi.acm.org/10.1145/1056781.1056782 +Douglas Blank,News.,2000,11,Intelligence,4,db/journals/sigart/sigart11.html#Blank00b,http://doi.acm.org/10.1145/355137.355139 +Robert Wilensky,Research in natural language processing: U. of California at Berkeley.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Wilensky82,http://doi.acm.org/10.1145/1056663.1056675 +Ruven Brooks,Production systems as control structures for programming languages.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Brooks77,http://doi.acm.org/10.1145/1045343.1045362 +Angelo Monfroglio,Graphical interface for logic programming.,1987,101,SIGART Newsletter,,db/journals/sigart/sigartn101.html#Monfroglio87,http://doi.acm.org/10.1145/29264.29267 +Louis J. Hoebel,Backtracking: the Chinese food problem.,1999,10,Intelligence,1,db/journals/sigart/sigart10.html#HoebelW99,http://doi.acm.org/10.1145/298475.298496 +Keith Oatley,European AISB summer school on knowledge systems.,1973,43,SIGART Newsletter,,db/journals/sigart/sigartn43.html#Oatley73,http://doi.acm.org/10.1145/1056786.1056788 +Henry H. Leitner,"The determination and conceptual structuring of restricted domains of discourse for ""intelligent"" interactive systems.",1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Leitner77,http://doi.acm.org/10.1145/1045283.1045323 +Linda L. Rodi,Putting the expert in charge: graphical knowledge acquisition for fault diagnosis and repair.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#RodiPD89,http://doi.acm.org/10.1145/63266.63273 +Lisa Meeden,News.,2000,11,Intelligence,1,db/journals/sigart/sigart11.html#Meeden00,http://doi.acm.org/10.1145/333175.333177 +Philip C. Jackson,Introduction to artificial intelligence: an AI text.,1974,47,SIGART Newsletter,,db/journals/sigart/sigartn47.html#Jackson74,http://doi.acm.org/10.1145/1045190.1045191 +Francis D. Tuggle,Thoughts on Computer Programs that play Chess.,1973,43,SIGART Newsletter,,db/journals/sigart/sigartn43.html#Tuggle73,http://doi.acm.org/10.1145/1056786.1739260 +Erann Gat,Point of view: Lisp as an alternative to Java.,2000,11,Intelligence,4,db/journals/sigart/sigart11.html#Gat00,http://doi.acm.org/10.1145/355137.355142 +Barry G. Silverman,Coping with ongoing knowledge acquisition from collaborating hierarchies of experts.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#SilvermanWW89,http://doi.acm.org/10.1145/63266.63302 +Robert C. Berwick,Research at MIT: AI Laboratory.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Berwick82,http://doi.acm.org/10.1145/1056663.1056710 +Subbarao Kambhampati,A Comparative Analysis of Partial Order Planning and Task Reduction Planning.,1995,6,SIGART Bulletin,1,db/journals/sigart/sigart6.html#Kambhampati95,http://doi.acm.org/10.1145/202187.202192 +Richard Stokey,AI factory scheduling: multiple problem formulations.,1989,110,SIGART Newsletter,,db/journals/sigart/sigartn110.html#Stokey89,http://doi.acm.org/10.1145/74664.74665 +Hsin-Hsen Yao,Transformation approach for consistency in object-oriented knowledge bases.,1989,109,SIGART Newsletter,,db/journals/sigart/sigartn109.html#YaoK89,http://doi.acm.org/10.1145/70632.70639 +Bob Krovetz,Selected AI-Related Dissertations.,1986,97,SIGART Newsletter,,db/journals/sigart/sigartn97.html#KrovetzH86,http://doi.acm.org/10.1145/15719.1058002 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1988,105,SIGART Newsletter,,db/journals/sigart/sigartn105.html#HumphreyK88a,http://doi.acm.org/10.1145/49093.1058128 +John McCallum,Maintenance of expert systems: life-cycle validity.,1985,94,SIGART Newsletter,,db/journals/sigart/sigartn94.html#McCallum85,http://doi.acm.org/10.1145/1056313.1056316 +David M. W. Powers,Neurolinguistics and psycholinguistics as a basis for computer acquisition of natural language.,1983,84,SIGART Newsletter,,db/journals/sigart/sigartn84.html#Powers83,http://doi.acm.org/10.1145/1056623.1056625 +Efraim Shaket,Fuzzy semantics for a natural-like language defined over a world of blocks.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Shaket77,http://doi.acm.org/10.1145/1045283.1045322 +Drew McDermott,A deductive model of control of a problem solver.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#McDermott77,http://doi.acm.org/10.1145/1045343.1045345 +Christopher R. Westphal,A compendium of knowledge acquisition references.,1989,110,SIGART Newsletter,,db/journals/sigart/sigartn110.html#WestphalB89,http://doi.acm.org/10.1145/74664.74667 +Larry E. Travis,Data base system for AI applications.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Travis77,http://doi.acm.org/10.1145/1045283.1045311 +Mache Creeger,Lambda machine overview.,1982,80,SIGART Newsletter,,db/journals/sigart/sigartn80.html#Creeger82,http://doi.acm.org/10.1145/1056176.1056179 +Roger C. Schank,A goal-directed production system for story understanding.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#SchankW77,http://doi.acm.org/10.1145/1045343.1045385 +Jean-Cédric Chappelier,Time in Neural Networks.,1994,5,SIGART Bulletin,3,db/journals/sigart/sigart5.html#ChappelierG94,http://doi.acm.org/10.1145/181911.181912 +Austin Tate,Characterising Plans as a Set of Constraints - the andlt*I-N-OVA>*Model - A Framework for Comparative Analysis.,1995,6,SIGART Bulletin,1,db/journals/sigart/sigart6.html#Tate95,http://doi.acm.org/10.1145/202187.202193 +D. J. H. Brown,A knowledge acquisition tool for decision support systems.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Brown89,http://doi.acm.org/10.1145/63266.63278 +Donald A. Waterman,Exemplary programming in RITA.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Waterman77,http://doi.acm.org/10.1145/1045343.1045368 +Phillip G. Bradford,A Formalization of the Turing Test.,1995,6,SIGART Bulletin,4,db/journals/sigart/sigart6.html#BradfordW95,http://doi.acm.org/10.1145/222267.222268 +Nils J. Nilsson,Evolutionary Artificial Intelligence.,1995,6,SIGART Bulletin,2,db/journals/sigart/sigart6.html#Nilsson95,http://doi.acm.org/10.1145/201977.201988 +Alan E. Filsinger,Approaching problem solving type behavior via the psychological process of instrumental conditioning.,1981,77,SIGART Newsletter,,db/journals/sigart/sigartn77.html#Filsinger81,http://doi.acm.org/10.1145/1056743.1056746 +Remko J. H. Scha,Philips question-answering system PHLIQA1.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Scha77,http://doi.acm.org/10.1145/1045283.1045291 +David L. Waltz,Research at the U. of Illinois.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Waltz82,http://doi.acm.org/10.1145/1056663.1056704 +Keith Price,New books.,1989,110,SIGART Newsletter,,db/journals/sigart/sigartn110.html#Price89,http://doi.acm.org/10.1145/74664.1059788 +Jan M. Zytkow,Integration of Knowledge and Method in Real-world Discovery.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Zytkow91,http://doi.acm.org/10.1145/122344.122381 +Keith Price,A comparison of human and computer vision systems: a tutorial.,1975,50,SIGART Newsletter,,db/journals/sigart/sigartn50.html#Price75,http://doi.acm.org/10.1145/1045215.1045217 +Elaine Iodice,Book review: Expert Systems 1987 Assessment of Technology and Applications by Terri C. Walker and Richard K. Miller (SEAl Technical Publications).,1988,104,SIGART Newsletter,,db/journals/sigart/sigartn104.html#Iodice88,http://doi.acm.org/10.1145/44019.1058038 +Pauline F. Micciche,Application of neurolinguistic techniques to knowledge acquisition.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#MiccicheL89,http://doi.acm.org/10.1145/63266.63270 +Steve Coles,Chess.,1973,43,SIGART Newsletter,,db/journals/sigart/sigartn43.html#Coles73c,http://doi.acm.org/10.1145/1056786.1056789 +Marie A. Bienkowski,Conference review: the 2000 SIGART/AAAI doctoral consortium.,2000,11,Intelligence,4,db/journals/sigart/sigart11.html#Bienkowski00,http://doi.acm.org/10.1145/355137.355143 +Tetsuo Sawaragi,Ecological interface enabling human-embodied cognition in mobile robot teleoperation.,2000,11,Intelligence,3,db/journals/sigart/sigart11.html#SawaragiH00,http://doi.acm.org/10.1145/350752.350761 +Aravind K. Joshi,Natural language processing.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Joshi77,http://doi.acm.org/10.1145/1045283.1045314 +Douglas B. Moran,Computational studies of formal theories of natural language: Oregon State University.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Moran82,http://doi.acm.org/10.1145/1056663.1056715 +Sergei Nirenburg,Machine translation of natural languages.,1985,92,SIGART Newsletter,,db/journals/sigart/sigartn92.html#Nirenburg85,http://doi.acm.org/10.1145/1056548.1056555 +Vladan Devedzic,Ontologies: borrowing from software patterns.,1999,10,Intelligence,3,db/journals/sigart/sigart10.html#Devedzic99,http://doi.acm.org/10.1145/318964.318968 +K. Campbell,Book review: Expert Systems 85. Edited by Martin Merry (British Computer Society).,1987,101,SIGART Newsletter,,db/journals/sigart/sigartn101.html#Campbell87,http://doi.acm.org/10.1145/29264.1057631 +H. P. Böhm,CSSA: Language concepts and programming methodology.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#BohmFR77,http://doi.acm.org/10.1145/872736.806938 +Vasudevan Jagannathan,Distributed artificial intelligence: an annotated bibliiography.,1986,95,SIGART Newsletter,,db/journals/sigart/sigartn95.html#JagannathanD86,http://doi.acm.org/10.1145/1056563.1056571 +C. Raymond Perrault,Some problems in planning indirect speech acts.,1978,66,SIGART Newsletter,,db/journals/sigart/sigartn66.html#Perrault78,http://doi.acm.org/10.1145/1045416.1045422 +Peter E. Hart,"Correction to ""A Formal Basis for the Heuristic Determination of Minimum Cost Paths"".",1972,37,SIGART Newsletter,,db/journals/sigart/sigartn37.html#HartNR72,http://doi.acm.org/10.1145/1056777.1056779 +Joyce Friedman,Formal and computational linguistics: University of Michigan.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Friedman82,http://doi.acm.org/10.1145/1056663.1056711 +J. Strother Moore,Automatic proof of correctness of a binary addition algorithm.,1975,52,SIGART Newsletter,,db/journals/sigart/sigartn52.html#Moore75,http://doi.acm.org/10.1145/1045236.1045238 +Erann Gat,Integrating Reaction and Planning in a Heterogeneous Asynchronous Architecture for Mobile Robot Navigation.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Gat91,http://doi.acm.org/10.1145/122344.122357 +Steve Cousins,Automatic menu generation.,1987,102,SIGART Newsletter,,db/journals/sigart/sigartn102.html#Cousins87,http://doi.acm.org/10.1145/36970.36972 +Joel H. Gyllenskog,Konane as a vehicle for teaching AI.,1976,56,SIGART Newsletter,,db/journals/sigart/sigartn56.html#Gyllenskog76,http://doi.acm.org/10.1145/1045259.1045261 +Zhengxin Chen,Integrated Use of Expert Systems at the K-Tree Level.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#ChenA91,http://doi.acm.org/10.1145/122344.1063800 +Matthew L. Ginsberg,The MVL Theorem Proving System.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#Ginsberg91,http://doi.acm.org/10.1145/122296.122304 +Warren J. Plath,Request: a natural language question-answering system.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Plath77,http://doi.acm.org/10.1145/1045283.1045297 +Michael D. Rychener,AI research at CMU: a brief summary.,1973,39,SIGART Newsletter,,db/journals/sigart/sigartn39.html#Rychener73,http://doi.acm.org/10.1145/1045154.1045158 +,Automation of reasoning classical papers in computational logic vol. I and vol. II.,1982,82,SIGART Newsletter,,db/journals/sigart/sigartn82.html#X82a,http://doi.acm.org/10.1145/1056602.1056603 +H. S. Hartl,Can humans think? - a general review of HI.,1989,109,SIGART Newsletter,,db/journals/sigart/sigartn109.html#Hartl89,http://doi.acm.org/10.1145/70632.70633 +A. Patricia Ambler,The Edinbugh versatile layout and assembly program.,1973,41,SIGART Newsletter,,db/journals/sigart/sigartn41.html#Ambler73,http://doi.acm.org/10.1145/1045171.1045172 +Jeffrey M. Bradshaw,Letter from the chair.,1999,10,Intelligence,3,db/journals/sigart/sigart10.html#Bradshaw99,http://doi.acm.org/10.1145/318964.318965 +Steve Coles,University of California at Berkeley.,1974,46,SIGART Newsletter,,db/journals/sigart/sigartn46.html#Coles74b,http://doi.acm.org/10.1145/1056793.1056799 +Peter Norvig,Playing Mastermind optimally.,1984,90,SIGART Newsletter,,db/journals/sigart/sigartn90.html#Norvig84a,http://doi.acm.org/10.1145/1056531.1056533 +Danny Kopec,Towards an expert/novice learning system with application to infectious disease.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#KopecLB89,http://doi.acm.org/10.1145/63266.63286 +Thies Wittig,System HANSA.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Wittig77,http://doi.acm.org/10.1145/1045283.1045306 +Alfred Mesguich,Some specifications for a natural query language: how is it possible to meet the casual user.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#MesguichN77,http://doi.acm.org/10.1145/1045283.1045336 +Ben Choi,Book review: Parallel Execution of Logic Programs by John S. Conery (Kluwer Academic Publiishers 1987).,1988,104,SIGART Newsletter,,db/journals/sigart/sigartn104.html#ChoiL88,http://doi.acm.org/10.1145/44019.1058035 +Costas Tsatsoulis,A Review Of Artificial Intelligence In Simulation.,1991,2,SIGART Bulletin,1,db/journals/sigart/sigart2.html#Tsatsoulis91,http://doi.acm.org/10.1145/122388.1062342 +Susan Weber McRoy,Building intelligent dialog systems.,1999,10,Intelligence,1,db/journals/sigart/sigart10.html#McRoyARC99,http://doi.acm.org/10.1145/298475.298484 +Guy L. Steele Jr.,Macaroni is better than spaghetti.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#Steele77,http://doi.acm.org/10.1145/872736.806933 +Janet L. Kolodner,Intelligent fact retrieval: Georgia Tech.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#KolodnerSSM82,http://doi.acm.org/10.1145/1056663.1056695 +Jeffrey M. Bradshaw,Letter from the chair.,2000,11,Intelligence,2,db/journals/sigart/sigart11.html#Bradshaw00a,http://doi.acm.org/10.1145/337897.337979 +Ron Brachman,Laboratory description.,1983,83,SIGART Newsletter,,db/journals/sigart/sigartn83.html#Brachman83,http://doi.acm.org/10.1145/1056613.1056615 +Raymond Reiter,AI research at the University of British Columbia.,1974,45,SIGART Newsletter,,db/journals/sigart/sigartn45.html#ReiterR74a,http://doi.acm.org/10.1145/1045220.1045222 +Nicholas V. Findler,Some humor in an A.I. qualifying exam.,1981,76,SIGART Newsletter,,db/journals/sigart/sigartn76.html#Findler81,http://doi.acm.org/10.1145/1056490.1056494 +Pattie Maes,The Agent Network Architecture (ANA).,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Maes91,http://doi.acm.org/10.1145/122344.122367 +Michael L. Baird,Semantic picture recognition.,1975,52,SIGART Newsletter,,db/journals/sigart/sigartn52.html#Baird75,http://doi.acm.org/10.1145/1045236.1045245 +Joshua Grass,Anytime Algorithm Development Tools.,1996,7,SIGART Bulletin,2,db/journals/sigart/sigart7.html#GrassZ96,http://doi.acm.org/10.1145/242587.242592 +Amruth N. Kumar,Announcements.,1999,10,Intelligence,3,db/journals/sigart/sigart10.html#Kumar99d,http://doi.acm.org/10.1145/318964.318972 +John K. Dixon,Short papers.,1972,34,SIGART Newsletter,,db/journals/sigart/sigartn34.html#Dixon72,http://doi.acm.org/10.1145/1056587.1056590 +Mark A. Musen,Knowledge acquisition at the metalevel: creation of custom-tailored knowledge-acquisition tools.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Musen89,http://doi.acm.org/10.1145/63266.63272 +Kenneth M. Ford,Knowledge acquisition from repertory grids using a logic of confirmation.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#FordP89,http://doi.acm.org/10.1145/63266.63289 +Joel D. Martin,Acquiring knowledge by explaining observed problem solving.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#MartinR89,http://doi.acm.org/10.1145/63266.63276 +Henry G. Baker,The incremental garbage collection of processes.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#BakerH77,http://doi.acm.org/10.1145/872736.806932 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1989,107,SIGART Newsletter,,db/journals/sigart/sigartn107.html#HumphreyK89c,http://doi.acm.org/10.1145/65751.1059601 +Francesca Rossi,Constraint satisfaction problems in logic programming.,1988,106,SIGART Newsletter,,db/journals/sigart/sigartn106.html#Rossi88,http://doi.acm.org/10.1145/54350.54352 +James F. Allen,The RHET System.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#Allen91,http://doi.acm.org/10.1145/122296.122297 +Susanne M. Humphrey,AI related dissertations.,1987,102,SIGART Newsletter,,db/journals/sigart/sigartn102.html#HumphreyK87c,http://doi.acm.org/10.1145/36970.36973 +Randall Davis,Generalized procedure calling and content-directed invocation.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#Davis77a,http://doi.acm.org/10.1145/872736.806931 +Jeffrey M. Bradshaw,Letter from the chair.,1999,10,Intelligence,4,db/journals/sigart/sigart10.html#Bradshaw99a,http://doi.acm.org/10.1145/322880.322881 +Jack Minker,Control structure of a pattern-directed search system.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Minker77,http://doi.acm.org/10.1145/1045343.1045348 +Daniel Coulon,Knowledge representation and natural language understanding.,1982,80,SIGART Newsletter,,db/journals/sigart/sigartn80.html#Coulon82,http://doi.acm.org/10.1145/1056176.1056183 +Steven A. Vere,Inductive learning of relational productions.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Vere77,http://doi.acm.org/10.1145/1045343.1045370 +Mehmet A. Orgun,Temporal and Modal Logic Programming: An Annotated Bibliography.,1994,5,SIGART Bulletin,3,db/journals/sigart/sigart5.html#Orgun94,http://doi.acm.org/10.1145/181911.181920 +Keith Price,Books.,1984,88,SIGART Newsletter,,db/journals/sigart/sigartn88.html#Price84d,http://doi.acm.org/10.1145/1056656.1056657 +Francis D. Tuggle,Book review: Artificial Intelligence in Economics and Management. Edited by L. P. Pau (North-Holland 1986).,1987,102,SIGART Newsletter,,db/journals/sigart/sigartn102.html#Tuggle87,http://doi.acm.org/10.1145/36970.1057640 +Donald Michie,Re-organization of AI in Edinburgh.,1974,48,SIGART Newsletter,,db/journals/sigart/sigartn48.html#Michie74,http://doi.acm.org/10.1145/1045200.1045201 +Eugene Charniak,The unification of language understanding and problem solving: Brown University.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#CharniakHKW82,http://doi.acm.org/10.1145/1056663.1056674 +W. Lewis Johnson,Letter from the Chair.,1999,10,Intelligence,2,db/journals/sigart/sigart10.html#Johnson99,http://www.acm.org/pubs/citations/journals/intelligence/1999-10-2/p6-johnson/ +Patrick J. Hayes,AI at Essex University.,1974,44,SIGART Newsletter,,db/journals/sigart/sigartn44.html#Hayes74,http://doi.acm.org/10.1145/1045183.1045184 +Alan Bundy,There is no best proof procedure.,1971,31,SIGART Newsletter,,db/journals/sigart/sigartn31.html#Bundy71,http://doi.acm.org/10.1145/1056578.1056580 +Eric A. Hansen,Monitoring Anytime Algorithms.,1996,7,SIGART Bulletin,2,db/journals/sigart/sigart7.html#HansenZ96,http://doi.acm.org/10.1145/242587.242593 +Amruth N. Kumar,Links.,1999,10,Intelligence,4,db/journals/sigart/sigart10.html#Kumar99e,http://doi.acm.org/10.1145/322880.322883 +Rok Sosic,3000000 Queens in Less Than One Minute.,1991,2,SIGART Bulletin,2,db/journals/sigart/sigart2.html#SosicG91,http://doi.acm.org/10.1145/122319.122325 +Charles Rich,Computer aided evolutionary design for software engineering.,1981,76,SIGART Newsletter,,db/journals/sigart/sigartn76.html#RichW81,http://doi.acm.org/10.1145/1056490.1056493 +Jonathan J. King,Special issue on AI and Database research.,1983,86,SIGART Newsletter,,db/journals/sigart/sigartn86.html#King83,http://doi.acm.org/10.1145/1056643.1056646 +Jack Buchanan,Chess.,1974,48,SIGART Newsletter,,db/journals/sigart/sigartn48.html#Buchanan74h,http://doi.acm.org/10.1145/1045200.1045204 +W. W. Bledsoe,First U.S. computer chess tournament.,1970,24,SIGART Newsletter,,db/journals/sigart/sigartn24.html#Bledsoe70,http://doi.acm.org/10.1145/1045151.1045152 +W. W. Bledsoe,Computer chess championship in Boston.,1972,34,SIGART Newsletter,,db/journals/sigart/sigartn34.html#Bledsoe72a,http://doi.acm.org/10.1145/1056587.1056589 +Pat Langley,A Design for the Icarus Architecture.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#LangleyMAIT91,http://doi.acm.org/10.1145/122344.122365 +Maja J. Mataric,Behavioral Synergy Without Explicit Integration.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Mataric91,http://doi.acm.org/10.1145/122344.122370 +Deepak Kumar,Architecture of an Intelligent Agent in SNePS.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#KumarS91,http://doi.acm.org/10.1145/122344.122362 +Karen T. Sutherland,Book reviews.,2001,12,Intelligence,1,db/journals/sigart/sigart12.html#Sutherland01,http://doi.acm.org/10.1145/376451.376468 +Giuseppe Trautteur,A novel interaction between AI and philosophy.,1983,83,SIGART Newsletter,,db/journals/sigart/sigartn83.html#Trautteur83,http://doi.acm.org/10.1145/1056613.1056617 +Margie Templeton,EUFID description: Systems Development Corporation.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Templeton82,http://doi.acm.org/10.1145/1056663.1056726 +William J. Mills,AI: Just how scattered is the literature?,1987,99,SIGART Newsletter,,db/journals/sigart/sigartn99.html#Mills87,http://doi.acm.org/10.1145/24667.24668 +Enric Plaza,Model-based knowledge acquisition for heuristic classification systems.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#PlazaM89,http://doi.acm.org/10.1145/63266.63279 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1986,96,SIGART Newsletter,,db/journals/sigart/sigartn96.html#HumphreyK86a,http://doi.acm.org/10.1145/15715.1057991 +Steve Coles,Chess.,1972,36,SIGART Newsletter,,db/journals/sigart/sigartn36.html#Coles72,http://doi.acm.org/10.1145/1056597.1056598 +Douglas Blank,AI update.,2001,12,Intelligence,3,db/journals/sigart/sigart12.html#Blank01b,http://doi.acm.org/10.1145/383824.383827 +S. Jerrold Kaplan,Research at Stanford University.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Kaplan82,http://doi.acm.org/10.1145/1056663.1056724 +Perry W. Thorndyke,Pattern-directed processing of knowledge from texts.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Thorndyke77,http://doi.acm.org/10.1145/1045343.1045380 +Ann E. Robinson,Research on planning.,1983,83,SIGART Newsletter,,db/journals/sigart/sigartn83.html#Robinson83,http://doi.acm.org/10.1145/1056613.1056619 +Edward N. Schhwartz,Using Complete K-Trees to Generate Code in Pascal for an Expert System.,1990,1,SIGART Bulletin,2,db/journals/sigart/sigart1.html#Schhwartz90,http://doi.acm.org/10.1145/84234.84239 +Jerry R. Hobbs,Pronoun resolution.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Hobbs77,http://doi.acm.org/10.1145/1045283.1045292 +Keith Price,New Books.,1987,100,SIGART Newsletter,,db/journals/sigart/sigartn100.html#Price87c,http://doi.acm.org/10.1145/24671.1057629 +Amruth N. Kumar,Announcements.,1999,10,Intelligence,4,db/journals/sigart/sigart10.html#Kumar99g,http://doi.acm.org/10.1145/322880.322887 +John Wade Ulrich,Program synthesis by analogy.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#UlrichM77,http://doi.acm.org/10.1145/872736.806928 +Bernard Fade,State of researches on the problem solver ARGOS-II.,1987,100,SIGART Newsletter,,db/journals/sigart/sigartn100.html#FadeP87,http://doi.acm.org/10.1145/24671.24672 +Tetsuo Kinoshita,A knowledge acquisition model with applications for requirements specification and definition.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Kinoshita89,http://doi.acm.org/10.1145/63266.63299 +Edgar F. Codd,Access to relational data bases for a casual user.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Codd77,http://doi.acm.org/10.1145/1045283.1045298 +Steven A. Epstein,RiTSE: The reactor trip simulation environment.,1986,97,SIGART Newsletter,,db/journals/sigart/sigartn97.html#Epstein86,http://doi.acm.org/10.1145/15719.15722 +V. Wiktor Marek,Book review: The Art of Prolog Advanced Programming Techniques by L. Sterling and E. Shapiro (The MIT Press).,1988,105,SIGART Newsletter,,db/journals/sigart/sigartn105.html#Marek88,http://doi.acm.org/10.1145/49093.1058125 +Richard G. Epstein,Curriculum descant: stories and plays about the ethical and social implications of artificial intelligence.,2000,11,Intelligence,3,db/journals/sigart/sigart11.html#EpsteinK00,http://doi.acm.org/10.1145/350752.350758 +Barbara J. Grosz,Research on natural-language processing: SRI International.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Grosz82,http://doi.acm.org/10.1145/1056663.1056723 +Naomi Sager,Transforming medical records into a structured data base.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#SagerHGI77,http://doi.acm.org/10.1145/1045283.1045308 +Hanan Samet,A normal form for compiler testing.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#Samet77,http://doi.acm.org/10.1145/872736.806945 +Douglas Blank,News.,2001,12,Intelligence,1,db/journals/sigart/sigart12.html#Blank01,http://doi.acm.org/10.1145/376451.376458 +Rakesh Mohan,Book review: Perceptual Organziation and Visual Recognition. by David G. Lowe (Kluwer Academic Publishers).,1987,99,SIGART Newsletter,,db/journals/sigart/sigartn99.html#Mohan87,http://doi.acm.org/10.1145/24667.1058032 +David J. Mostow,A production system for speech understanding.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#MostowH77,http://doi.acm.org/10.1145/1045343.1045395 +David S. Wile,Automated derivation of program control structure from natural language program descriptions.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#WileBG77,http://doi.acm.org/10.1145/872736.806935 +Edward N. Schwartz,A pictorial aid for programming expert systems.,1988,106,SIGART Newsletter,,db/journals/sigart/sigartn106.html#Schwartz88,http://doi.acm.org/10.1145/54350.54351 +Lance A. Miller,Natural language programming.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Miller77,http://doi.acm.org/10.1145/1045283.1045299 +Keith Price,Books.,1984,89,SIGART Newsletter,,db/journals/sigart/sigartn89.html#Price84b,http://doi.acm.org/10.1145/1056521.1056522 +Douglas Blank,News.,2000,11,Intelligence,2,db/journals/sigart/sigart11.html#Blank00,http://doi.acm.org/10.1145/337897.337984 +Gabriel Valiente,Using Layered Support Graphs for Verifying External Adequacy in Rule-Based Expert Systems.,1992,3,SIGART Bulletin,1,db/journals/sigart/sigart3.html#Valiente92,http://doi.acm.org/10.1145/130836.130838 +Lee D. Erman,Symbol-mapping.,1975,53,SIGART Newsletter,,db/journals/sigart/sigartn53.html#ErmanM75,http://doi.acm.org/10.1145/1216504.1216505 +Katharina Morik,Integration issue in knowledge acquisition systems.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Morik89,http://doi.acm.org/10.1145/63266.63282 +Dave Schultz,Conversational HELP.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Schultz77,http://doi.acm.org/10.1145/1045283.1045326 +Deepak Kumar,Teaching about embedded agents.,1998,9,SIGART Bulletin,1,db/journals/sigart/sigart9.html#Kumar98,http://doi.acm.org/10.1145/294828.294830 +Syed S. Ali,Links: Java resource for artificial intelligence.,2000,11,Intelligence,2,db/journals/sigart/sigart11.html#AliM00,http://doi.acm.org/10.1145/337897.337987 +Joseph S. Fulda,Alpha-Beta pruning: they've seen it before.,1985,94,SIGART Newsletter,,db/journals/sigart/sigartn94.html#Fulda85,http://doi.acm.org/10.1145/1056313.1056315 +John V. Jackson,Idea for a mind.,1987,101,SIGART Newsletter,,db/journals/sigart/sigartn101.html#Jackson87,http://doi.acm.org/10.1145/29264.29266 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1984,88,SIGART Newsletter,,db/journals/sigart/sigartn88.html#HumphreyK84a,http://doi.acm.org/10.1145/1056656.1056659 +Philip R. Cohen,Planning speech acts and referring expressions.,1978,66,SIGART Newsletter,,db/journals/sigart/sigartn66.html#Cohen78,http://doi.acm.org/10.1145/1045416.1045424 +C. H. Thompson,On-line query system.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#ThompsonBFP77,http://doi.acm.org/10.1145/1045283.1045301 +Martha E. Williams,A hybrid framework for natural language processing of large data bases.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#WilliamsP77,http://doi.acm.org/10.1145/1045283.1045330 +Marilyn A. Walker,Design-World: A Testbed of Communicative Action and Resource Limits.,1995,6,SIGART Bulletin,2,db/journals/sigart/sigart6.html#WalkerJ95,http://doi.acm.org/10.1145/201977.201994 +Eliezer L. Lozinskii,Parallel processing of natural language: the Hebrew University.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#LozinskiiN82,http://doi.acm.org/10.1145/1056663.1056699 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1987,99,SIGART Newsletter,,db/journals/sigart/sigartn99.html#HumphreyK87,http://doi.acm.org/10.1145/24667.1058034 +Hans J. Berliner,A meta comment about the I.J. Good - Sam Rashevsky interchange.,1973,39,SIGART Newsletter,,db/journals/sigart/sigartn39.html#Berliner73,http://doi.acm.org/10.1145/1045154.1045160 +Robert H. Anderson,"The use of production systems in RITA to construct personal computer ""agents"".",1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Anderson77,http://doi.acm.org/10.1145/1045343.1045360 +Brahim Chaib-draa,Distributed Artificial Intelligence: An Annotated Bibliography.,1992,3,SIGART Bulletin,3,db/journals/sigart/sigart3.html#Chaib-draaMM92,http://doi.acm.org/10.1145/140936.140937 +Christopher A. Welty,Real science.,2001,12,Intelligence,4,db/journals/sigart/sigart12.html#Welty01b,http://doi.acm.org/10.1145/504313.504329 +Jeffrey M. Bradshaw,Letter from the chair.,2000,11,Intelligence,4,db/journals/sigart/sigart11.html#Bradshaw00c,http://doi.acm.org/10.1145/355137.355138 +,More natural language research.,1982,82,SIGART Newsletter,,db/journals/sigart/sigartn82.html#X82b,http://doi.acm.org/10.1145/1056602.1056604 +G. Alan Creak,Word games and search spaces.,1988,103,SIGART Newsletter,,db/journals/sigart/sigartn103.html#Creak88,http://doi.acm.org/10.1145/44418.44425 +Federico Barber,A Metric Time-Point and Duration-Based Temporal Model.,1993,4,SIGART Bulletin,3,db/journals/sigart/sigart4.html#Barber93,http://doi.acm.org/10.1145/152947.152955 +Mihai Barbuceanu,Object-centered representation and reasoning: an application to computer-aided design.,1984,87,SIGART Newsletter,,db/journals/sigart/sigartn87.html#Barbuceanu84,http://doi.acm.org/10.1145/1056648.1056651 +Bruce A. Pumplin,Compiling LISP procedures.,1987,99,SIGART Newsletter,,db/journals/sigart/sigartn99.html#Pumplin87,http://doi.acm.org/10.1145/24667.24669 +Michael Barbehenn,An Integrated Architecture for Learning and Planning in Robotic Domains.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#BarbehennH91,http://doi.acm.org/10.1145/122344.122348 +Keith Price,New Books.,1989,109,SIGART Newsletter,,db/journals/sigart/sigartn109.html#Price89a,http://doi.acm.org/10.1145/70632.1059731 +Rich Fikes,Chess.,1974,45,SIGART Newsletter,,db/journals/sigart/sigartn45.html#Fikes74b,http://doi.acm.org/10.1145/1045220.1045224 +Robert St. Amant,Links: Common Lisp resources on the Web.,2001,12,Intelligence,3,db/journals/sigart/sigart12.html#AmantY01b,http://doi.acm.org/10.1145/383824.383828 +Vincent R. Waldron,Investigating the communication problems encountered in knowledge acquisition.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Waldron89,http://doi.acm.org/10.1145/63266.63287 +Philippe Chatelin,Self-redefinition as a program manipulation strategy.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#Chatelin77,http://doi.acm.org/10.1145/872736.806947 +Hans J. Berliner,Fredkin Match at IJCAI-81.,1982,80,SIGART Newsletter,,db/journals/sigart/sigartn80.html#Berliner82,http://doi.acm.org/10.1145/1056176.1056177 +Pascal Van Hentenryck,A constraint approach to mastermind in logic programming.,1988,103,SIGART Newsletter,,db/journals/sigart/sigartn103.html#Hentenryck88,http://doi.acm.org/10.1145/44418.44421 +Syed S. Ali,Links: information retrieval.,2000,11,Intelligence,4,db/journals/sigart/sigart11.html#AliM00a,http://doi.acm.org/10.1145/355137.355141 +Barbara Hayes-Roth,Evaluation of Integrated Agent Architectures.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Hayes-Roth91a,http://doi.acm.org/10.1145/122344.122360 +John K. Cipolaro,A computer consultant for poker using natural language communication.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#CipolaroF77,http://doi.acm.org/10.1145/1045283.1045329 +David A. McAllester,Socratic Sequent Systems.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#McAllester91,http://doi.acm.org/10.1145/122296.122311 +P. H. Wood,Intelligent Tutoring Systems: An Annotated Bibliography.,1990,1,SIGART Bulletin,1,db/journals/sigart/sigart1.html#WoodH90, +Flo Paroli,A fine adventure.,1983,84,SIGART Newsletter,,db/journals/sigart/sigartn84.html#Paroli83,http://doi.acm.org/10.1145/1056623.1056629 +Tracy L. Wells,Hypertext as a means for knowledge acquisition.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Wells89,http://doi.acm.org/10.1145/63266.63284 +Joel H. Gyllenskog,Writing a computer program to play Mastermind that appears to be intelligent.,1983,84,SIGART Newsletter,,db/journals/sigart/sigartn84.html#Gyllenskog83,http://doi.acm.org/10.1145/1056623.1056626 +Deborah L. McGuinness,A description logic-based configurator on the web.,1998,9,SIGART Bulletin,2,db/journals/sigart/sigart9.html#McGuinnessIPPRW98,http://doi.acm.org/10.1145/1056754.1056756 +Jianlai Yan,Model-driven reasoning for diagnosis.,1986,98,SIGART Newsletter,,db/journals/sigart/sigartn98.html#Yan86,http://doi.acm.org/10.1145/15923.15926 +Kim Marriott,Book reviews.,1999,10,Intelligence,2,db/journals/sigart/sigart10.html#MarriottS99,http://www.acm.org/pubs/citations/journals/intelligence/1999-10-2/p39-marriott/ +William A. Woods,A personal view of natural language understanding.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Woods77,http://doi.acm.org/10.1145/1045283.1045286 +Ronald J. Brachman,Special issue on knowledge representation.,1980,70,SIGART Newsletter,,db/journals/sigart/sigartn70.html#BrachmanS80,http://doi.acm.org/10.1145/1056751.1056752 +Teiji Furugori,Progress report from SUNY at Buffalo.,1973,42,SIGART Newsletter,,db/journals/sigart/sigartn42.html#Furugori73,http://doi.acm.org/10.1145/1045177.1045179 +C. L. Chang,The NIH Heuristics laboratory.,1974,46,SIGART Newsletter,,db/journals/sigart/sigartn46.html#Chang74,http://doi.acm.org/10.1145/1056793.1056801 +Harry Bunt,Dialogue project.,1982,80,SIGART Newsletter,,db/journals/sigart/sigartn80.html#Bunt82,http://doi.acm.org/10.1145/1056176.1056182 +Beth Crandall,A comparative study of think-aloud and critical decision knowledge elicitation methods.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Crandall89,http://doi.acm.org/10.1145/63266.63288 +Larry R. Harris,ROBOT: a high performance natural language processor for data base query.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Harris77,http://doi.acm.org/10.1145/1045283.1045309 +Patrick Greussay,An iterative lisp solution to the samefringe problem.,1976,59,SIGART Newsletter,,db/journals/sigart/sigartn59.html#Greussay76,http://doi.acm.org/10.1145/1045270.1045273 +Lisa Meeden,News.,1999,10,Intelligence,1,db/journals/sigart/sigart10.html#Meeden99,http://doi.acm.org/10.1145/298475.298499 +Seiji Yamada,Acquisition of macro-operators from worked examples in problem solving.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#YamadaT89,http://doi.acm.org/10.1145/63266.63303 +Allen Newell,AAAI president's message.,1980,73,SIGART Newsletter,,db/journals/sigart/sigartn73.html#Newell80,http://doi.acm.org/10.1145/1056768.1056769 +W. Mark Boggs,Robust man-machine interfaces and dialog modelling: Carnegie-Mellon University.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#BoggsCFHMKMF82,http://doi.acm.org/10.1145/1056663.1056680 +Frank H. Merrem,Automatic generation of knowledge structures.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Merrem89,http://doi.acm.org/10.1145/63266.63295 +,SIGART special issue on machine learning.,1981,76,SIGART Newsletter,,db/journals/sigart/sigartn76.html#X81a,http://doi.acm.org/10.1145/1056490.1056491 +Leonard Friedman,Robot perception learning.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Friedman77,http://doi.acm.org/10.1145/1045343.1045372 +Chao-Lin Liu,On State-Space Abstraction for Anytime Evaluation of Bayesian Networks.,1996,7,SIGART Bulletin,2,db/journals/sigart/sigart7.html#LiuW96,http://doi.acm.org/10.1145/242587.242601 +Richard J. Cichelli,Reader Commentary on the Cichelli Heuristics.,1973,43,SIGART Newsletter,,db/journals/sigart/sigartn43.html#Cichelli73,http://doi.acm.org/10.1145/1056786.1739258 +Jack Buchanan,Chess.,1974,49,SIGART Newsletter,,db/journals/sigart/sigartn49.html#Buchanan74,http://doi.acm.org/10.1145/1045196.1045198 +Rok Sosic,A Polynomial Time Algorithm for the N-Queens Problem.,1990,1,SIGART Bulletin,3,db/journals/sigart/sigart1.html#SosicG90,http://doi.acm.org/10.1145/101340.101343 +Jürg Nievergelt,Information content of chess positions.,1977,62,SIGART Newsletter,,db/journals/sigart/sigartn62.html#Nievergelt77,http://doi.acm.org/10.1145/1045398.1045400 +Michel Lacroix,ILL: an English structured query language for relational data bases.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#LacroixP77,http://doi.acm.org/10.1145/1045283.1045335 +Richard Kryszak,Book Review: Common Lisp: A Tutorial by Wendy Milner (Prentice-Hall).,1989,107,SIGART Newsletter,,db/journals/sigart/sigartn107.html#Kryszak89,http://doi.acm.org/10.1145/65751.1059598 +Marion R. Finley Jr.,A system for the representation of theorems and proofs.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#FinleyH89,http://doi.acm.org/10.1145/63266.63308 +Robert F. Simmons,Rule-based computations on English.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Simmons77,http://doi.acm.org/10.1145/1045343.1045383 +Susanne M. Humphrey,Selected M-Related Dissertations.,1989,110,SIGART Newsletter,,db/journals/sigart/sigartn110.html#HumphreyK89,http://doi.acm.org/10.1145/74664.1059789 +John P. Fishburn,An optimization of alpha-beta search.,1980,72,SIGART Newsletter,,db/journals/sigart/sigartn72.html#Fishburn80,http://doi.acm.org/10.1145/1056447.1056450 +Ed Yampratoom,Performance of Temporal Reasoning Systems.,1993,4,SIGART Bulletin,3,db/journals/sigart/sigart4.html#YampratoomA93,http://doi.acm.org/10.1145/152947.152954 +David L. Waltz,Natural language interfaces.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Waltz77,http://doi.acm.org/10.1145/1045283.1045285 +Edward A. Isper Jr.,The infinite state acceptor and its application to AI.,1989,107,SIGART Newsletter,,db/journals/sigart/sigartn107.html#Isper89,http://doi.acm.org/10.1145/65751.65754 +Benjamin Kuipers,Computer power and human reason.,1976,58,SIGART Newsletter,,db/journals/sigart/sigartn58.html#KuipersMW76,http://doi.acm.org/10.1145/1045264.1045265 +John P. McDermott,Production system conflict resolution strategies.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#McDermottF77,http://doi.acm.org/10.1145/1045343.1045364 +Hans J. Berliner,First Fredkin challenge match.,1980,73,SIGART Newsletter,,db/journals/sigart/sigartn73.html#Berliner80,http://doi.acm.org/10.1145/1056768.1056770 +Christopher R. Westphal,Book review: Building Expert Systems: Cognitive Emulation by Philip E. Slatter (Ellis Horwood Limited).,1988,105,SIGART Newsletter,,db/journals/sigart/sigartn105.html#Westphal88,http://doi.acm.org/10.1145/49093.1058123 +Peter E. Hart,Directions for AI in the eighties.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Hart82,http://doi.acm.org/10.1145/1056663.1056664 +Bertram C. Bruce,Center for the study of reading: BBN branch.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Bruce82,http://doi.acm.org/10.1145/1056663.1056681 +Timothy L. Trowbridge,Book review: Rule Based Programming with OPS5 by Thomas A. Cooper and Nancy Wogrin (Morgan Kaufmann Pubtishers).,1989,109,SIGART Newsletter,,db/journals/sigart/sigartn109.html#Trowbridge89,http://doi.acm.org/10.1145/70632.1059727 +Kenneth D. Forbus,Similarity-based Cognitive Architecture.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#ForbusG91,http://doi.acm.org/10.1145/122344.122356 +Thomas G. Kyle,Using AI as a research tool.,1986,97,SIGART Newsletter,,db/journals/sigart/sigartn97.html#Kyle86,http://doi.acm.org/10.1145/15719.15724 +Steven Minton,On Modularity in Integrated Architectures.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Minton91,http://doi.acm.org/10.1145/122344.122371 +Nigel Ward,Book review: Automatic Natural Language Parsing. Edited by Karen Sparck Jones and Yorick Wilks (Ellis Horwood and John Wiley and Sons 1983).,1986,98,SIGART Newsletter,,db/journals/sigart/sigartn98.html#Ward86,http://doi.acm.org/10.1145/15923.1058022 +Deepak Kumar,Curriculum descant: A new life for AI artifacts.,1999,10,Intelligence,2,db/journals/sigart/sigart10.html#Kumar99a,http://doi.acm.org/10.1145/309697.309700 +A. Harry Klopf,A comparison of natural and artificial intelligence.,1975,52,SIGART Newsletter,,db/journals/sigart/sigartn52.html#Klopf75,http://doi.acm.org/10.1145/1045236.1045237 +Mark S. Boddy,Temporal Reasoning for Planning and Scheduling.,1993,4,SIGART Bulletin,3,db/journals/sigart/sigart4.html#Boddy93,http://doi.acm.org/10.1145/152947.152952 +A. Jean Maren,The IEEE 1st Intl. conference on neural networks.,1988,103,SIGART Newsletter,,db/journals/sigart/sigartn103.html#Maren88,http://doi.acm.org/10.1145/44418.44419 +Deepak Kumar,Curriculum Descant: Interdisciplinary artificial intelligence.,2000,11,Intelligence,1,db/journals/sigart/sigart11.html#KumarW00,http://doi.acm.org/10.1145/333175.333178 +Lisa C. Kaczmarczyk,Is AI abstract and impractical? isn't the answer obvious?,2001,12,Intelligence,4,db/journals/sigart/sigart12.html#Kaczmarczyk01,http://doi.acm.org/10.1145/504313.504321 +Camilla Schwind,Automatic thesaurus construction from natural language definitions.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#SchwindJ77,http://doi.acm.org/10.1145/1045283.1045319 +Rich Fikes,First world computer chess championship.,1974,47,SIGART Newsletter,,db/journals/sigart/sigartn47.html#Fikes74,http://doi.acm.org/10.1145/1045190.1045192 +Angelo Monfroglio,School time table scheduling in Prolog.,1986,96,SIGART Newsletter,,db/journals/sigart/sigartn96.html#Monfroglio86,http://doi.acm.org/10.1145/15715.15716 +S. Dowsey,Go and the computer.,1974,45,SIGART Newsletter,,db/journals/sigart/sigartn45.html#Dowsey74,http://doi.acm.org/10.1145/1045220.1045223 +Stuart C. Shapiro,Conference review: IFIP TC12.,2001,12,Intelligence,3,db/journals/sigart/sigart12.html#Shapiro01,http://doi.acm.org/10.1145/383824.383826 +Allen Newell,Fairytales.,1976,60,SIGART Newsletter,,db/journals/sigart/sigartn60.html#Newell76,http://doi.acm.org/10.1145/1045276.1045277 +Gerard Kiernan,Programming expert systems at the K-tree level.,1989,109,SIGART Newsletter,,db/journals/sigart/sigartn109.html#KiernanKS89,http://doi.acm.org/10.1145/70632.70635 +Eric Mays,K-Rep System Overview.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#MaysDW91,http://doi.acm.org/10.1145/122296.122310 +Jeffrey M. Bradshaw,Letter from the chair.,2000,11,Intelligence,3,db/journals/sigart/sigart11.html#Bradshaw00b,http://doi.acm.org/10.1145/350752.350753 +Scott D. Anderson,Timed Common Lisp: The Duration of Deliberation.,1996,7,SIGART Bulletin,2,db/journals/sigart/sigart7.html#AndersonC96,http://doi.acm.org/10.1145/242587.242590 +Ralph E. Griswold,Language facilities for programmable backtracking.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#GriswoldH77,http://doi.acm.org/10.1145/872736.806937 +Keith Price,New books.,1988,104,SIGART Newsletter,,db/journals/sigart/sigartn104.html#Price88c,http://doi.acm.org/10.1145/44019.1058040 +Janyce Wiebe,Conference review.,2000,11,Intelligence,2,db/journals/sigart/sigart11.html#Wiebe00,http://doi.acm.org/10.1145/337897.338001 +William F. Mann,More on Go.,1974,46,SIGART Newsletter,,db/journals/sigart/sigartn46.html#Mann74,http://doi.acm.org/10.1145/1056793.1056795 +,To the friends of Jaime Carbonell.,1973,39,SIGART Newsletter,,db/journals/sigart/sigartn39.html#X73,http://doi.acm.org/10.1145/1045154.1045155 +Kenneth R. Lee,Book review: The Elements of Artificial Intelligence An Introduction Using LISP by Steven L. Tanimoto (Computer Science Press).,1988,103,SIGART Newsletter,,db/journals/sigart/sigartn103.html#Lee88,http://doi.acm.org/10.1145/44418.1057643 +Lisa Meeden,News.,1999,10,Intelligence,3,db/journals/sigart/sigart10.html#Meeden99b,http://doi.acm.org/10.1145/318964.318971 +Leo Hartman,Is AI planning now?,1998,9,SIGART Bulletin,2,db/journals/sigart/sigart9.html#HartmanH98,http://doi.acm.org/10.1145/1056754.1056764 +W. W. Bledsoe,Books.,1972,34,SIGART Newsletter,,db/journals/sigart/sigartn34.html#Bledsoe72b,http://doi.acm.org/10.1145/1056587.1056591 +Lee D. Erman,Chess.,1975,55,SIGART Newsletter,,db/journals/sigart/sigartn55.html#Erman75c,http://doi.acm.org/10.1145/1045253.1045257 +Richard Waldinger,"ARPA ""automatic programming"" meeting.",1974,44,SIGART Newsletter,,db/journals/sigart/sigartn44.html#Waldinger74,http://doi.acm.org/10.1145/1045183.1045187 +David Brown,Some thoughts on an interactive information retrieval system.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Brown77,http://doi.acm.org/10.1145/1045283.1045287 +Christopher Johnson 0001,War stories: harnessing organizational memories to support task performance.,2000,11,Intelligence,1,db/journals/sigart/sigart11.html#JohnsonBBH00,http://doi.acm.org/10.1145/333175.333180 +,Computer Scrabble.,1981,76,SIGART Newsletter,,db/journals/sigart/sigartn76.html#X81,http://doi.acm.org/10.1145/1056490.1056495 +Frederick Jelinek,Continuous speech recognition.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Jelinek77,http://doi.acm.org/10.1145/1045283.1045302 +Ronald M. Kaplan,Research at Xerox PARC.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Kaplan82a,http://doi.acm.org/10.1145/1056663.1056735 +Chalda I. Maloff,The fourth B.,1975,54,SIGART Newsletter,,db/journals/sigart/sigartn54.html#MaloffZ75,http://doi.acm.org/10.1145/1045247.1045250 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1985,91,SIGART Newsletter,,db/journals/sigart/sigartn91.html#HumphreyK85,http://doi.acm.org/10.1145/1056541.1056543 +Walter Reitman,Pattern recognition and pattern-directed inference in a program for playing go.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#ReitmanW77,http://doi.acm.org/10.1145/1045343.1045396 +Marie A. Bienkowski,Book Review: Artificial Intelligence and Tutoring Systems: Computational and Cognitive Approaches to the Communication of Knowledge by Eitenne Wenger (Morgan Kaufmann Publishers).,1989,109,SIGART Newsletter,,db/journals/sigart/sigartn109.html#Bienkowski89,http://doi.acm.org/10.1145/70632.1059726 +Keith Price,Books.,1983,83,SIGART Newsletter,,db/journals/sigart/sigartn83.html#Price83,http://doi.acm.org/10.1145/1056613.1056614 +Angel R. Puerta,Conference review.,1999,10,Intelligence,2,db/journals/sigart/sigart10.html#Puerta99,http://doi.acm.org/10.1145/309697.309707 +Drew McDermott,The prolog phenomenon.,1980,72,SIGART Newsletter,,db/journals/sigart/sigartn72.html#McDermott80,http://doi.acm.org/10.1145/1056447.1056448 +Ehud Y. Shapiro,Playing mastermind logically.,1983,85,SIGART Newsletter,,db/journals/sigart/sigartn85.html#Shapiro83,http://doi.acm.org/10.1145/1056635.1056637 +Denis Newman,Children's understanding of interacting plans.,1978,66,SIGART Newsletter,,db/journals/sigart/sigartn66.html#Newman78,http://doi.acm.org/10.1145/1045416.1045427 +Christopher W. Fraser,A knowledge-based code generator generator.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#Fraser77,http://doi.acm.org/10.1145/872736.806941 +Leslie Pack Kaelbling,A Situated-Automata Approach to the Design of Embedded Agents.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Kaelbling91,http://doi.acm.org/10.1145/122344.122361 +Jon Doyle,A selected descriptor-indexed bibliography to the literature on belief revision.,1980,71,SIGART Newsletter,,db/journals/sigart/sigartn71.html#DoyleL80,http://doi.acm.org/10.1145/1056441.1056442 +Sture Hägglund,Uppsala University.,1974,46,SIGART Newsletter,,db/journals/sigart/sigartn46.html#Hagglund74,http://doi.acm.org/10.1145/1056793.1056800 +D. Paul Benjamin,Integrating Perception with Problem Solving.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#BenjaminCDRW91,http://doi.acm.org/10.1145/122344.122351 +Daniel D. Corkhill,Conversational program model.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Corkhill77,http://doi.acm.org/10.1145/1045283.1045327 +Joseph Bates,Broad Agents.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#BatesLR91,http://doi.acm.org/10.1145/122344.122350 +Keith Price,New books.,1988,106,SIGART Newsletter,,db/journals/sigart/sigartn106.html#Price88e,http://doi.acm.org/10.1145/10.1145/54350.1059596 +Wei-Min Shen,LIVE: An Architecture for Learning from the Environment.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Shen91,http://doi.acm.org/10.1145/122344.122375 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1985,93,SIGART Newsletter,,db/journals/sigart/sigartn93.html#HumphreyK85b,http://doi.acm.org/10.1145/1056557.1056559 +Robert R. Hoffman,A survey of methods for eliciting the knowledge of experts.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Hoffman89,http://doi.acm.org/10.1145/63266.63269 +Richard A. LeFaivre,Research resource in AI and biomedicine at Rutgers University.,1975,54,SIGART Newsletter,,db/journals/sigart/sigartn54.html#LeFaivreW75,http://doi.acm.org/10.1145/1045247.1045248 +John H. Holland,Cognitive systems based on adaptive algorithms.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#HollandR77,http://doi.acm.org/10.1145/1045343.1045373 +Charles Rich,CAKE: An Implemented Hybrid Knowledge Representation and Limited Reasoning System.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#Rich91,http://doi.acm.org/10.1145/122296.122315 +Antony Browne,Unification Using a Distributed Representation.,1994,5,SIGART Bulletin,1,db/journals/sigart/sigart5.html#BrowneP94,http://doi.acm.org/10.1145/182053.182057 +Barbara Hayes-Roth,Implications of human pattern processing for the design of artificial knowledge systems.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Hayes-Roth77,http://doi.acm.org/10.1145/1045343.1045379 +W. W. Bledsoe,Errata.,1972,34,SIGART Newsletter,,db/journals/sigart/sigartn34.html#Bledsoe72,http://doi.acm.org/10.1145/1056587.1056588 +Peter Haddawy,Focusing Attention in Anytime Decision-Theoretic Planning.,1996,7,SIGART Bulletin,2,db/journals/sigart/sigart7.html#Haddawy96,http://doi.acm.org/10.1145/242587.242596 +Dap Hartmann,Book review: Advances in Computer Chess 4. Edited by D.F. Beal (Pergamon Press 1986 ).,1987,100,SIGART Newsletter,,db/journals/sigart/sigartn100.html#Hartmann87,http://doi.acm.org/10.1145/24671.1057627 +Stanislaw Lem,The cyberiad: fables for the cybernetic age.,1974,47,SIGART Newsletter,,db/journals/sigart/sigartn47.html#LemW74,http://doi.acm.org/10.1145/1045190.1045193 +Peter Koppstein,Mastering Master Mind logically.,1984,88,SIGART Newsletter,,db/journals/sigart/sigartn88.html#Koppstein84,http://doi.acm.org/10.1145/1056656.1056658 +Chuck Schmidt,Believer project.,1978,66,SIGART Newsletter,,db/journals/sigart/sigartn66.html#SchmidtS78,http://doi.acm.org/10.1145/1045416.1045419 +Joe Jeffrey,AI and scientific revolution.,1976,60,SIGART Newsletter,,db/journals/sigart/sigartn60.html#Jeffrey76,http://doi.acm.org/10.1145/1045276.1045278 +Charles J. V. Murphy,TIMELOG-an intelligent spreadsheet for school timetabling.,1987,101,SIGART Newsletter,,db/journals/sigart/sigartn101.html#Murphy87,http://doi.acm.org/10.1145/29264.29265 +John Dore,Toward an ethnolinguistic account of conversation.,1978,66,SIGART Newsletter,,db/journals/sigart/sigartn66.html#Dore78,http://doi.acm.org/10.1145/1045416.1045421 +Hank Simon,Automated heuristic analysis of spectroscopic data.,1988,103,SIGART Newsletter,,db/journals/sigart/sigartn103.html#Simon88,http://doi.acm.org/10.1145/44418.44423 +Philip R. Cohen,Dependencies of discourse structure on the modality of communication: Oregon State University.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Cohen82,http://doi.acm.org/10.1145/1056663.1056716 +John P. McDermott,The efficiency of certain production system implementations.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#McDermottNM77,http://doi.acm.org/10.1145/1045343.1045366 +Alan Garvey,Design-to-time Scheduling and Anytime Algorithms.,1996,7,SIGART Bulletin,2,db/journals/sigart/sigart7.html#GarveyL96,http://doi.acm.org/10.1145/242587.242591 +James F. Allen,Discourse understanding at the U. of Rochester.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#AllenS82,http://doi.acm.org/10.1145/1056663.1056720 +W. W. Bledsoe,Books.,1972,35,SIGART Newsletter,,db/journals/sigart/sigartn35.html#Bledsoe72c,http://doi.acm.org/10.1145/1056594.1056595 +John E. Laird,An Analysis of Soar as an Integrated Architecture.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#LairdHHR91,http://doi.acm.org/10.1145/122344.122364 +Richard O. Duda,Semantic network representations in rule-based inference systems.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#DudaHNS77,http://doi.acm.org/10.1145/1045343.1045351 +Xie Li,General Natural Language for Operating Systems.,1992,3,SIGART Bulletin,4,db/journals/sigart/sigart3.html#LiX92,http://doi.acm.org/10.1145/141420.141425 +Steven W. Zucker,General-purpose models: expectations about the unexpected.,1975,54,SIGART Newsletter,,db/journals/sigart/sigartn54.html#ZuckerRD75,http://doi.acm.org/10.1145/1045247.1045249 +Craig A. Knoblock,Relating the Performance of Partial-Order Planning Algorithms to Domain Features.,1995,6,SIGART Bulletin,1,db/journals/sigart/sigart6.html#KnoblockY95,http://doi.acm.org/10.1145/202187.202191 +W. W. Bledsoe,Results of second annual computer chess championship.,1971,30,SIGART Newsletter,,db/journals/sigart/sigartn30.html#Bledsoe71,http://doi.acm.org/10.1145/1056574.1056576 +Peter Kugel,A theorem about automatic programming.,1975,51,SIGART Newsletter,,db/journals/sigart/sigartn51.html#Kugel75,http://doi.acm.org/10.1145/1045231.1045233 +Michael Soul,TESSA - the ESsex syntactic analyser.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Soul77,http://doi.acm.org/10.1145/1045283.1045317 +Rob Kling,Notes on the social impacts of artificial intelligence.,1973,42,SIGART Newsletter,,db/journals/sigart/sigartn42.html#Kling73,http://doi.acm.org/10.1145/1045177.1045178 +Dan Fass,Dehumanized People and Humanized Programs: A Natural Language Understanding View of Being There.,1990,1,SIGART Bulletin,2,db/journals/sigart/sigart1.html#Fass90,http://doi.acm.org/10.1145/84234.84236 +Raymond Reiter,The University of British Columbia.,1974,46,SIGART Newsletter,,db/journals/sigart/sigartn46.html#ReiterR74,http://doi.acm.org/10.1145/1056793.1056797 +Katherine W. Cochrane,Book review: The T Programming Language - A Dialect of LISP by Stephen Slade.,1988,103,SIGART Newsletter,,db/journals/sigart/sigartn103.html#Cochrane88,http://doi.acm.org/10.1145/44418.1057641 +Ruth Davis,Impermanent balance between man and computer.,1974,49,SIGART Newsletter,,db/journals/sigart/sigartn49.html#Davis74,http://doi.acm.org/10.1145/1045196.1045197 +David B. Fogel,Evolving a checkers player without relying on human experience.,2000,11,Intelligence,2,db/journals/sigart/sigart11.html#Fogel00,http://doi.acm.org/10.1145/337897.337996 +V. Wiktor Marek,Executing Temporal Logic Programs by Ben Moszkowski.,1986,98,SIGART Newsletter,,db/journals/sigart/sigartn98.html#Marek86,http://doi.acm.org/10.1145/15923.1058025 +George E. Heidorn,Natural language projects at IBM research.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Heidorn77,http://doi.acm.org/10.1145/1045283.1045296 +Steven W. Zucker,Production systems with feedback.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Zucker77,http://doi.acm.org/10.1145/1045343.1045391 +Lee A. Becker,Using simulation to compile diagnostic rules from a manufacturing process representation.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#BeckerBS89,http://doi.acm.org/10.1145/63266.63304 +Warren Teitelman,Interlisp.,1973,43,SIGART Newsletter,,db/journals/sigart/sigartn43.html#Teitelman73,http://doi.acm.org/10.1145/1056786.1056787 +Keith Price,New Books.,1986,96,SIGART Newsletter,,db/journals/sigart/sigartn96.html#Price86,http://doi.acm.org/10.1145/15715.1057989 +Michael L. Baird,GM research labs' machine perception project.,1975,55,SIGART Newsletter,,db/journals/sigart/sigartn55.html#BairdOPR75,http://doi.acm.org/10.1145/1045253.1045255 +Amruth N. Kumar,Announcements.,1999,10,Intelligence,1,db/journals/sigart/sigart10.html#Kumar99,http://doi.acm.org/10.1145/298475.298492 +Johan de Kleer,AMORD explicit control of reasoning.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#KleerDSS77,http://doi.acm.org/10.1145/872736.806940 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1984,90,SIGART Newsletter,,db/journals/sigart/sigartn90.html#HumphreyK84,http://doi.acm.org/10.1145/1056531.1056535 +Christopher A. Welty,Instances and classes in software engineering.,1999,10,Intelligence,2,db/journals/sigart/sigart10.html#WeltyF99,http://doi.acm.org/10.1145/309697.309705 +Peter F. Patel-Schneider,The CLASSIC Knowledge Representation System: Guiding Principles and Implementation Rationale.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#Patel-SchneiderMB91,http://doi.acm.org/10.1145/122296.122313 +R. Elschlager,Some sample programs currently accepted by a natural language programming system.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Elschlager77,http://doi.acm.org/10.1145/1045283.1045295 +Walter Fritz,The inteligent system.,1984,90,SIGART Newsletter,,db/journals/sigart/sigartn90.html#Fritz84,http://doi.acm.org/10.1145/1056531.1056534 +David D. McDonald,Inferential searches of knowledge networks as an approach to extensible language understanding systems.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#McDonaldH77,http://doi.acm.org/10.1145/1045343.1045384 +Patrick J. Hayes,Intellectual Archeology.,1995,6,SIGART Bulletin,2,db/journals/sigart/sigart6.html#HayesF95,http://doi.acm.org/10.1145/201977.201987 +Keith Price,Books.,1985,91,SIGART Newsletter,,db/journals/sigart/sigartn91.html#Price85,http://doi.acm.org/10.1145/1056541.1056542 +Daniel Kuokka,"MAX: A Meta-Reasoning Architecture for ""X"".",1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Kuokka91,http://doi.acm.org/10.1145/122344.122363 +Syed S. Ali,Links.,2000,11,Intelligence,1,db/journals/sigart/sigart11.html#AliMC00,http://doi.acm.org/10.1145/333175.333179 +K. C. Wong,Generalization of the Language Version Determination Problem.,1990,1,SIGART Bulletin,2,db/journals/sigart/sigart1.html#Wong90,http://doi.acm.org/10.1145/84234.84257 +Dennis de Champeaux,Challenge problem 1 without search.,1981,76,SIGART Newsletter,,db/journals/sigart/sigartn76.html#Champeaux81,http://doi.acm.org/10.1145/1056490.1056492 +Andrew J. Kornecki,Operational knowledge acquisition problems for air traffic expert controller.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Kornecki89,http://doi.acm.org/10.1145/63266.63298 +Bay Arinze,A natural language front-end for knowledge acquisition.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Arinze89,http://doi.acm.org/10.1145/63266.63280 +Louis J. Hoebel,Backtracking: Garbage collection.,1999,10,Intelligence,2,db/journals/sigart/sigart10.html#HoebelW99a,http://doi.acm.org/10.1145/309697.309710 +Mark Bernstein,Finding heuristics for flowshop scheduling.,1987,99,SIGART Newsletter,,db/journals/sigart/sigartn99.html#Bernstein87,http://doi.acm.org/10.1145/24667.24670 +Salvatore Mamone,An Expert System for Unix Problem Resolution.,1990,1,SIGART Bulletin,2,db/journals/sigart/sigart1.html#Mamone90,http://doi.acm.org/10.1145/84234.84237 +William C. Mann,Research at USC/ISI.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Mann82,http://doi.acm.org/10.1145/1056663.1056705 +Jean E. Tardy,The Monterège Collector.,1990,1,SIGART Bulletin,1,db/journals/sigart/sigart1.html#Tardy90,http://doi.acm.org/10.1145/379534.379535 +Harald Trost,An expert advising system with acoustic output.,1989,109,SIGART Newsletter,,db/journals/sigart/sigartn109.html#TrostBD89,http://doi.acm.org/10.1145/70632.70637 +Brian R. Gaines,Sixth generation computing: a conspectus of the Japanese proposals.,1986,95,SIGART Newsletter,,db/journals/sigart/sigartn95.html#Gaines86,http://doi.acm.org/10.1145/1056563.1056570 +Jacek Malec,Knowledge elicitation during dynamic scene description.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Malec89,http://doi.acm.org/10.1145/63266.63296 +Naomi Sager,Research in computational linguistics: New York University.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#SagerG82,http://doi.acm.org/10.1145/1056663.1056714 +Gonzalo de la Pena Casares,The RM-CELL vs. the earthquakes.,1989,110,SIGART Newsletter,,db/journals/sigart/sigartn110.html#Casares89,http://doi.acm.org/10.1145/74664.74666 +Zohar Manna,The automatic synthesis of recursive programs.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#MannaW77,http://doi.acm.org/10.1145/872736.806929 +Stuart C. Shapiro,Representing and locating deduction rules in a semantic network.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Shapiro77,http://doi.acm.org/10.1145/1045343.1045350 +Keith Price,New Books.,1986,97,SIGART Newsletter,,db/journals/sigart/sigartn97.html#Price86a,http://doi.acm.org/10.1145/15719.1058001 +Syed S. Ali,Links.,1999,10,Intelligence,1,db/journals/sigart/sigart10.html#Ali99,http://doi.acm.org/10.1145/298475.298482 +Stanley J. Rosenschein,Selection of representations for data structures.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#RosenscheinK77,http://doi.acm.org/10.1145/872736.806944 +Ranan B. Banerji,Progress report from Case Western Reserve University.,1973,41,SIGART Newsletter,,db/journals/sigart/sigartn41.html#Banerji73,http://doi.acm.org/10.1145/1045171.1045174 +Herbert L. Gelernter,Research at SUNY: Stony Brook.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#GelernterJSW82,http://doi.acm.org/10.1145/1056663.1056722 +Susan L. Epstein,Challenges.,1983,83,SIGART Newsletter,,db/journals/sigart/sigartn83.html#Epstein83,http://doi.acm.org/10.1145/1056613.1056616 +Bernard Meltzer,Department of A.I. - Univ. of Edinburgh.,1975,50,SIGART Newsletter,,db/journals/sigart/sigartn50.html#Meltzer75,http://doi.acm.org/10.1145/1045215.1045216 +N. S. Sridharan,Impressions from the 1982 ACM Symposium on Lisp and Functional Programming.,1982,82,SIGART Newsletter,,db/journals/sigart/sigartn82.html#Sridharan82,http://doi.acm.org/10.1145/1056602.1056609 +Alan E. Filsinger,Practical uses for AI research.,1982,80,SIGART Newsletter,,db/journals/sigart/sigartn80.html#Filsinger82,http://doi.acm.org/10.1145/1056176.1056178 +Monroe M. Newborn,JCIT hosts Israel's first major computer chess tournament.,1980,69,SIGART Newsletter,,db/journals/sigart/sigartn69.html#Newborn80,http://doi.acm.org/10.1145/1056433.1056436 +Gerald DeJong,FRUMP...FRUMP...FRUMP...,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#DeJong77,http://doi.acm.org/10.1145/1045283.1045325 +Paul Creelman,Improving Prolog programs.,1984,89,SIGART Newsletter,,db/journals/sigart/sigartn89.html#Creelman84,http://doi.acm.org/10.1145/1056521.1056524 +Charles E. Martin,An Integrated Architecture for Planning and Learning.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#MartinF91,http://doi.acm.org/10.1145/122344.122369 +Syed S. Ali,Backtracking: the nine lives of the AI.,2001,12,Intelligence,2,db/journals/sigart/sigart12.html#Ali01,http://doi.acm.org/10.1145/378116.378128 +George E. Heidorn,Automatic programming through English dialogue.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Heidorn77a,http://doi.acm.org/10.1145/1045283.1045300 +James F. Allen,A computer model of conversation.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#AllenCCPRH77,http://doi.acm.org/10.1145/1045283.1045294 +John R. Anderson,Design of a production system for cognitive modeling.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#AndersonK77,http://doi.acm.org/10.1145/1045343.1045377 +Deepak Kumar,Curriculum descant: pre-disciplinary AI.,2001,12,Intelligence,1,db/journals/sigart/sigart12.html#Kumar01,http://doi.acm.org/10.1145/376451.376461 +Herbert A. Simon,'Losing move': an information processing concept.,1974,48,SIGART Newsletter,,db/journals/sigart/sigartn48.html#Simon74,http://doi.acm.org/10.1145/1045200.1045203 +David C. Brown,Natural language graphics.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#BrownB0KS77,http://doi.acm.org/10.1145/1045283.1045333 +Michael D. Rychener,An instructable production system: basic design issues.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#RychenerN77,http://doi.acm.org/10.1145/1045343.1045365 +Hans J. Berliner,Backgammon program beats world champ.,1980,69,SIGART Newsletter,,db/journals/sigart/sigartn69.html#Berliner80a,http://doi.acm.org/10.1145/1056433.1056434 +Marie A. Bienkowski,"Review of ""A Reader's Guide to Agent Literacy by Marie A. Bienkowski"".",1998,9,SIGART Bulletin,2,db/journals/sigart/sigart9.html#Bienkowski98,http://doi.acm.org/10.1145/1056754.1056758 +J. E. Caviedes,ViewPoint: a troubleshooting-specific knowledge acquisition tool.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#CaviedesR89,http://doi.acm.org/10.1145/63266.63293 +Roger Knaus,Syntactically based classification from natural language responses.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Knaus77,http://doi.acm.org/10.1145/1045283.1045293 +Susanne M. Humphrey,AI-related dissertations.,1983,86,SIGART Newsletter,,db/journals/sigart/sigartn86.html#HumphreyK83,http://doi.acm.org/10.1145/1056643.1056644 +Amruth Kumar,Announcements.,2001,12,Intelligence,2,db/journals/sigart/sigart12.html#Kumar01a,http://doi.acm.org/10.1145/378116.378123 +Robert St. Amant,Links: AI planning resources on the Web.,2001,12,Intelligence,1,db/journals/sigart/sigart12.html#AmantY01,http://doi.acm.org/10.1145/376451.376464 +Douglas Blank,News.,2001,12,Intelligence,2,db/journals/sigart/sigart12.html#Blank01a,http://doi.acm.org/10.1145/378116.378119 +Raymond J. Mooney,Integrating ILP and EBL.,1994,5,SIGART Bulletin,1,db/journals/sigart/sigart5.html#MooneyZ94,http://doi.acm.org/10.1145/181668.181673 +John F. Burger,Conceptual processing/natural language interface.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Burger77,http://doi.acm.org/10.1145/1045283.1045313 +Juliana S. Lancaster,A cognitively valid knowledge acquisition tool.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#LancasterWM89,http://doi.acm.org/10.1145/63266.63292 +Walter A. Wolf,Knowledge acquisition from multiple experts.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Wolf89,http://doi.acm.org/10.1145/63266.63285 +Howard E. Shrobe,Providing Paradigm Orientation without Implementational Handcuffs.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#Shrobe91,http://doi.acm.org/10.1145/122296.122317 +Christof Peltason,The BACK System - An Overview.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#Peltason91,http://doi.acm.org/10.1145/122296.122314 +Andrew Ortony,Cognitive science vs. artificial intelligence?: an early Greek fragment of dialogue found on an abandoned disk area.,1980,69,SIGART Newsletter,,db/journals/sigart/sigartn69.html#OrtonyW80,http://doi.acm.org/10.1145/1056433.1056439 +Lee D. Erman,Chess and backgammon.,1975,54,SIGART Newsletter,,db/journals/sigart/sigartn54.html#Erman75b,http://doi.acm.org/10.1145/1045247.1045251 +Keith Price,New Books.,1985,93,SIGART Newsletter,,db/journals/sigart/sigartn93.html#Price85a,http://doi.acm.org/10.1145/1056557.1056558 +Robert St. Amant,Links: artificial intelligence and interactive entertainment.,2001,12,Intelligence,2,db/journals/sigart/sigart12.html#AmantY01a,http://doi.acm.org/10.1145/378116.378120 +Keith Price,New Books.,1987,101,SIGART Newsletter,,db/journals/sigart/sigartn101.html#Price87d,http://doi.acm.org/10.1145/29264.1057636 +Cathleen Wharton,An Overview of the Construction-Integration Model: A Theory of Comprehension as a Foundation for a New Cognitive Architecture.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#WhartonK91,http://doi.acm.org/10.1145/122344.122379 +Karen T. Sutherland,Book reviews.,2001,12,Intelligence,3,db/journals/sigart/sigart12.html#Sutherland01b,http://doi.acm.org/10.1145/383824.383833 +Lee D. Erman,Chess.,1977,62,SIGART Newsletter,,db/journals/sigart/sigartn62.html#Erman77,http://doi.acm.org/10.1145/1045398.1045399 +,Natural language processing at Battelle-Columbus.,1985,94,SIGART Newsletter,,db/journals/sigart/sigartn94.html#X85,http://doi.acm.org/10.1145/1056313.1056317 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1987,101,SIGART Newsletter,,db/journals/sigart/sigartn101.html#HumphreyK87b,http://doi.acm.org/10.1145/29264.1057637 +Jerry R. Hobbs,What the nature of natural language tells us about how to make natural-language-like programming languages more natural.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#Hobbs77a,http://doi.acm.org/10.1145/872736.806936 +Steve Coles,Chess.,1973,38,SIGART Newsletter,,db/journals/sigart/sigartn38.html#Coles73a,http://doi.acm.org/10.1145/1056781.1056784 +David L. Waltz,Planes: a data base question-answering system.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#WaltzG77,http://doi.acm.org/10.1145/1045283.1045288 +Karen T. Sutherland,Book reviews.,2000,11,Intelligence,4,db/journals/sigart/sigart11.html#Sutherland00c,http://doi.acm.org/10.1145/355137.355144 +Max A. Bramer,Game-playing programs: theory and practice.,1982,80,SIGART Newsletter,,db/journals/sigart/sigartn80.html#Bramer82,http://doi.acm.org/10.1145/1056176.1056190 +N. S. Sridharan,Knowledge-directed inference in believer.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#SridharanS77,http://doi.acm.org/10.1145/1045343.1045352 +Ralph M. Weischedel,Natural language processing research at the University of Delaware.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Weischedel77,http://doi.acm.org/10.1145/1045283.1045315 +Mario C. Grignetti,Intelligent terminals.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Grignetti77,http://doi.acm.org/10.1145/1045283.1045332 +Faisel Saeed,Book review: Annual Review of Computer Science. Ed. by J. F. Traub (Annual Reviews Inc.).,1989,110,SIGART Newsletter,,db/journals/sigart/sigartn110.html#Saeed89,http://doi.acm.org/10.1145/74664.1059786 +Bruce J. Schacter,Scene segmentation by cluster detection in color spaces.,1976,58,SIGART Newsletter,,db/journals/sigart/sigartn58.html#SchacterDR76,http://doi.acm.org/10.1145/1045264.1045267 +Keith Price,Books.,1984,90,SIGART Newsletter,,db/journals/sigart/sigartn90.html#Price84,http://doi.acm.org/10.1145/1056531.1056532 +Rich Fikes,AI sessions at ACM conference.,1976,58,SIGART Newsletter,,db/journals/sigart/sigartn58.html#Fikes76,http://doi.acm.org/10.1145/1045264.1045266 +Shlomo Zilberstein,The Utility of Planning.,1995,6,SIGART Bulletin,1,db/journals/sigart/sigart6.html#Zilberstein95,http://doi.acm.org/10.1145/202187.202196 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1986,95,SIGART Newsletter,,db/journals/sigart/sigartn95.html#HumphreyK86,http://doi.acm.org/10.1145/1056563.1056565 +Rich Fikes,Chess.,1974,46,SIGART Newsletter,,db/journals/sigart/sigartn46.html#Fikes74a,http://doi.acm.org/10.1145/1056793.1056794 +Oscar Firschein,Book review: Natural Language and Voice Processing by Terri C. Walker and Richard K. Miller (SEAI Technical Publications).,1988,103,SIGART Newsletter,,db/journals/sigart/sigartn103.html#Firschein88,http://doi.acm.org/10.1145/44418.1057648 +Brian R. Gaines,Empirical Investigation of Knowledge Representation Servers: Design Issues and Applications Experience with KRS.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#Gaines91,http://doi.acm.org/10.1145/122296.122303 +Yagíl Ronén,Value-Density Algorithms for the Deliberation-Scheduling Problem.,1996,7,SIGART Bulletin,2,db/journals/sigart/sigart7.html#RonenMP96,http://doi.acm.org/10.1145/242587.242598 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1987,100,SIGART Newsletter,,db/journals/sigart/sigartn100.html#HumphreyK87a,http://doi.acm.org/10.1145/24671.1057630 +Robert F. Simmons,Text knowledge bases: University of Texas at Austin.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Simmons82,http://doi.acm.org/10.1145/1056663.1056728 +Bruce Wilcox,Reflections on building two Go programs.,1985,94,SIGART Newsletter,,db/journals/sigart/sigartn94.html#Wilcox85,http://doi.acm.org/10.1145/1056313.1056318 +Sergei Nirenburg,HU2: the Hebrew University: Hebrew Understander.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#NirenburgALMS82,http://doi.acm.org/10.1145/1056663.1056698 +V. William Porto,Generating novel tactics through evolutionary computation.,1998,9,SIGART Bulletin,2,db/journals/sigart/sigart9.html#PortoFF98,http://doi.acm.org/10.1145/1056754.1056755 +Jerry Felsen,Automation of investment analysis.,1975,53,SIGART Newsletter,,db/journals/sigart/sigartn53.html#Felsen75,http://doi.acm.org/10.1145/1216504.1216506 +Wolfgang Wahlster,HAM-RPM: a knowledge-based conversationalist.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Wahlster77,http://doi.acm.org/10.1145/1045283.1045305 +Herbert A. Simon,Lessons from Perception for Chess-Playing Programs (and vice versa).,1973,43,SIGART Newsletter,,db/journals/sigart/sigartn43.html#Simon73,http://doi.acm.org/10.1145/1056786.1739259 +Jeffrey M. Bradshaw,Letter from the chair.,2000,11,Intelligence,1,db/journals/sigart/sigart11.html#Bradshaw00,http://doi.acm.org/10.1145/333175.333176 +Thomas D. Williams,The visions system.,1975,52,SIGART Newsletter,,db/journals/sigart/sigartn52.html#Williams75,http://doi.acm.org/10.1145/1045236.1045244 +Barbara Hayes-Roth,An Integrated Architecture for Intelligent Agents.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Hayes-Roth91,http://doi.acm.org/10.1145/122344.122359 +Louis J. Hoebel,Intelligence: what's in a name?,1998,9,SIGART Bulletin,2,db/journals/sigart/sigart9.html#Hoebel98,http://doi.acm.org/10.1145/1056754.1056766 +Carl Vogel,Socrates: a project integrating human science with computer science.,1988,105,SIGART Newsletter,,db/journals/sigart/sigartn105.html#Vogel88,http://doi.acm.org/10.1145/49093.49095 +David D. McDonald,Research at the U. of Massachusetts at Amherst.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#McDonald82,http://doi.acm.org/10.1145/1056663.1056709 +T. Mahadeva Rao,An algorithm to play the game of mastermind.,1982,82,SIGART Newsletter,,db/journals/sigart/sigartn82.html#Rao82,http://doi.acm.org/10.1145/1056602.1056607 +Tamio Shimizu,Efficient utilization of algorithms through heuristic learning.,1973,41,SIGART Newsletter,,db/journals/sigart/sigartn41.html#Shimizu73,http://doi.acm.org/10.1145/1045171.1045173 +D. S. Himmelman,Natural-language processing for computer-supported instruction.,2001,12,Intelligence,4,db/journals/sigart/sigart12.html#Himmelman01,http://doi.acm.org/10.1145/504313.504323 +Jerry Gleason,Robot research in Japan.,1973,39,SIGART Newsletter,,db/journals/sigart/sigartn39.html#Gleason73,http://doi.acm.org/10.1145/1045154.1045157 +Doug Lenat,Learning program helps win national fleet wargame tournament.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Lenat82,http://doi.acm.org/10.1145/1056663.1056665 +Lotfi A. Zadeh,Research on meaning-representation in natural languages: U. of California at Berkeley.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Zadeh82,http://doi.acm.org/10.1145/1056663.1056676 +Robert M. MacGregor,Inside the LOOM Description Classifier.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#MacGregor91,http://doi.acm.org/10.1145/122296.122309 +Randall Davis,Knowledge acquisition in rule-based systems: knowledge about representation as a basis for system construction and maintenance.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Davis77,http://doi.acm.org/10.1145/1045343.1045359 +Pietro Baroni,Active mental entities: a new approach to building intelligent autonomous agents.,1998,9,SIGART Bulletin,1,db/journals/sigart/sigart9.html#BaroniFGM98,http://doi.acm.org/10.1145/294828.294829 +Scott D. Anderson,Two Ways to Act.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#AndersonHC91,http://doi.acm.org/10.1145/122344.122346 +Ben Mittman,Results of the fourth annual U.S. computer chess tournament.,1973,42,SIGART Newsletter,,db/journals/sigart/sigartn42.html#MittmanN73,http://doi.acm.org/10.1145/1045177.1045181 +Wullianallur Raghupathi,Research themes and trends in artificial intelligence.,1999,10,Intelligence,2,db/journals/sigart/sigart10.html#RaghupathiN99,http://doi.acm.org/10.1145/309697.309703 +Lisa Meeden,News.,1999,10,Intelligence,2,db/journals/sigart/sigart10.html#Meeden99a,http://www.acm.org/pubs/citations/journals/intelligence/1999-10-2/p8-meeden/ +William Bregar,An intelligent tutor for high school algebra problems: Oregon State University.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#BregarF82,http://doi.acm.org/10.1145/1056663.1056717 +Keith Price,New books.,1989,107,SIGART Newsletter,,db/journals/sigart/sigartn107.html#Price89b,http://doi.acm.org/10.1145/65751.1059600 +Joe K. Clema,A progress report on project CONSIM.,1973,42,SIGART Newsletter,,db/journals/sigart/sigartn42.html#Clema73,http://doi.acm.org/10.1145/1045177.1045180 +Samuel Bayer,The Relation-Based Knowledge Representation of King Kong.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#BayerV91,http://doi.acm.org/10.1145/122296.122299 +Rainer Johanni,Optimale Bahnplanung für Industrieroboter.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#JohanniP87, +Günter Pritschow,Automatisierte Erstellung von Rückwärtstransformationen für Industrieroboter unter Anwendung eines optimierten iterativen Lösungsverfahrens.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#PritschowKB89, +Walter Schwinn,Verfahren zur Untersuchung der Bewegungsmöglichkeiten von Industrierobotern.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#SchwinnS91, +Paul Levi,Sensoren für Roboter.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#LeviV87, +W. L. Xu,Relative calibration method for improving robot accuracy.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#XuW92, +Hans-Jürgen Warnecke,Zwei Verfahren zur Kollisionserkennung und Vermeidung bei der Off-line-Programmierung von Industrierobotern.,1986,2,Robotersysteme,3,db/journals/robotersysteme/robotersysteme2.html#WarneckeA86, +J. Harzer,Entwicklung eines Manipulators für den Streckenausbau im Steinkohlebergbau.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#HarzerVEW89, +G. Dittrich,Rechnerunterstützte grafische Darstellung der Arbeitsräume von Handhabungsgeräten als Hilfsmittel zu deren Auswahl für gestellte Handhabungsaufgaben.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#DittrichS87, +B. Köhler,Kalibrierung eines Großroboters mit einem elektronischen Theodoliten.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#KohlerW90, +Andreas Hörmann,Steuerung und Systemarchitektur von fortgeschrittenen autonomen Systemen.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#Hormann89, +Günter Pritschow,Digitale Lageregelung von Industrieroboter-Bewegungsachsen.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#PritschowS88, +Stefan Türk,Das DFVLR Modell Nr. 1 des Industrieroboters Manutec r3.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#TurkO87, +H. J. Klein,Praktische Anwendung und Ergebnisse einer nichtlinearen Regelung für Industrieroboter.,1986,2,Robotersysteme,4,db/journals/robotersysteme/robotersysteme2.html#Klein86, +Wolfgang Schirmer,Zur Vermessung von Industrierobotern mit geodätischen Methoden.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#Schirmer90, +Klaus Kempkens,Optimierung der Verfahrparameter von Industrieroboter-Steuerungen.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#Kempkens90, +G. Duelen,Roboter-Kalibration durch Abstandsmessungen.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#DuelenS91, +Eckhard Freund,Expertenunterstützungssystem für die Roboterdiagnose.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#FreundS91, +Hans Kurt Tönshoff,Flexibles Steuerungssystem für Unterwasser-Handhabungsgeräte.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#TonshoffP91, +Hans-Jürgen Warnecke,Integrierte Sensoraktions-Planung als neuartige Sensor- und Steuerungsarchitektur für den mobilen autonomen Roboter IPAMAR.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#WarneckeD87, +Andreas Hörmann,Planung kollisionsfreier Greifoperationen. Analyse der Objektgeometrie.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#HormannH90, +Erika Beer,Exakte Bewegungsplanungsalgorithmen.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#BeerL90, +S. Hesse,Auswahl flexibler Greifer.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#HesseM89, +U. Süss,Eine Ergonomiestudie über den Bediener eines Master-Slave-Manipulators.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#Suss88, +Uwe Süss,M2IDI: Mensch-Maschine Interface für das digitale Telemanipulatorsteuerungssystem DISTEL.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#Suss91, +Th. Friedmann,Roboter in der Automobilindustrie.,1986,2,Robotersysteme,,db/journals/robotersysteme/robotersysteme2.html#Friedmann86, +G. Zimmer,Integration von Sensoren mit VLSI-Technologien.,1986,2,Robotersysteme,,db/journals/robotersysteme/robotersysteme2.html#ZimmerH86, +P. Drews,Prozeßrechner koordiniert verschiedene Roboter mittels Sensorinformationen.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#DrewsFWW87, +Günter Pritschow,Programmierung von roboterbestückten Produktionsanlagen.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#PritschowFSW89, +P. Drews,Optisches Sensormeßprinzip zur Erfassung der Fugengeometrie für die Automatisierung beim Lichtbogenschweißen.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#DrewsW87, +Günter Pritschow,Dynamisches Verhalten und Grenzen sensorgeführter Industrieroboter mit vorausblickendem Sensor.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#PritschowHG92, +Bekir Dizioglu,Die singulären Bahnstellen bei der räumlichen Bewegung starrer Getriebeglieder.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#Dizioglu87, +W. Backé,Programmierbare Greifer mit servopneumatischen Antrieben.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#BackeZ89, +Charles Baur,Bildanalyse mit Hilfe von CAD-Oberflächenmodellen.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#BaurB89, +Jun'ichi Takeno,Realization of a 3D vision mobile robot that can avoid collision with moving obstacles.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#TakenoMS92, +Günter Pritschow,Roboterzellen-Programmierung: Die Sprache IRL und der Zwischencode ICR.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#PritschowF92, +Karsten Berns,Die Anwendung eines Backpropagation-Algorithmus zur Steuerung einer Folgefahrt.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#BernsH91, +W. Backé,Einsatz von servopneumatischen Antrieben für flexible Handhabungstechnik.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#Backe85, +Peter Adolphs,Schnelle kollisionsvermeidende Bahnplanung im Konfigurationsraum mit Entfernungsfeldern.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#AdolphsN90, +R. Gruber,Kinematik- und Arbeitsraumuntersuchungen an einem 7-achsigen Manipulator mit schrägen und gekoppelten Gelenken.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#Gruber92, +Hans-Jürgen Warnecke,Diagnose an Industrierobotern.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#WarneckeEL90, +Michael Göhner,Einheitliche Programmierung von Industrierobotersystemen mit einem Struktureditor.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#GohnerS89, +Wolfgang Gerke,Die dynamische Programmierung zur Planung kürzester kollisionsfreier Bahnen für Industrieroboter.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#Gerke85, +Andreas Hörmann,Ein Ansatz zur Realisierung intelligenter fehlertoleranter Robotersysteme.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#HormannHM88, +Hans-Jürgen Warnecke,Vorgehensweise zur montagegerechten Produktgestaltung.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#WarneckeB87, +J. Wittenburg,MESA VERDE Ein Computerprogramm zur Simulation der nichtlinearen Dynamik von Vielkörpersystemen.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#WittenburgW85, +Bernd Freyermuth,Modellgestützte Fehlerdiagnose von Industrierobotern mittels Parameterschätzung.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#Freyermuth90, +Walter Schwinn,Mehrdeutigkeiten der inversen kinematischen Transformation.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#Schwinn89, +C. Woernle,Ein systematisches Verfahren für die Rückwärtstransformation bei Industrierobotern.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#Woernle87, +Achim Schweikard,Ein iteratives Verfahren zur Bestimmung überschneidungsfreier Teilstücke von Bewegungen.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#Schweikard90, +Achim Schweikard,Berechnung erreichbarer Effektorstellungen für Handhabungsgeräte mit weniger als sechs Freiheitsgraden.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#SchweikardH88, +I. M. Tchouchenkov,Eine effiziente Berechnungsmethode für die kürzeste Trajektorie.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#Tchouchenkov91, +Claudio Melchiorri,Sliding mode control for a robotic hand.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#MelchiorriT92, +G. W. Köhler,Historische Entwicklung der Manipulator-Technik.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#Kohler85, +J. Kleckner,Stabilitätsbetrachtung bei robotergeführter Fräsbearbeitung unter Berücksichtigung geschwindigkeitsproportionaler Prozeßkräfte.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#Kleckner92, +Hans-Jürgen Warnecke,Modellgestützte Bildverarbeitung in der Fertigungsmeßtechnik. Ein Verfahren zur sicheren Meßwertgewinnung.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#WarneckeK88, +K. Miller,The Lagrange-based model of Delta-4 robot dynamics.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#MillerC92, +Eckhard Freund,Entwurf nichtlinearer Regler für Industrieroboter aufgrund von Referenzbahnen und Sensorkorrekturen.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#FreundB89, +R. Bäckmann,Optoelektronische Sensoren - Sensoroptiken. Einige Grundsätze zur Auswahl optischer Sensor-Komponenten für die Textilidentifikation.,1986,2,Robotersysteme,,db/journals/robotersysteme/robotersysteme2.html#Backmann86, +H. Weule,Optisches Meßsystem zur Genauigkeitsprüfung von Industrierobotern.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#WeuleR87, +P. Drews,Sensorsystem mit gekreuztem Lichtschnittverfahren.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#DrewsB91, +D. Schmid,Dynamik programmgeführter und sensorgeführter Industrieroboter.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#SchmidM87, +Christoph Woenckhaus,Konzeption eines Systems zur automatischen 3D-Layoutoptimierung.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#Woenckhaus92, +H. Hesse,Die Hough-Transformation.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#HesseG88, +F. Mehner,Kartesisches Handachsenpendeln beim Bahnschweißen.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#Mehner89, +Alfons Kemper,Ein Datenbanksystem für Robotikanwendungen.,1986,2,Robotersysteme,3,db/journals/robotersysteme/robotersysteme2.html#KemperWL86, +Oskar von Dungern,Vorbereitende und begleitende Ablaufplanung für flexible Montagezellen in industrieller Umgebung.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#DungernS90, +Günter Pritschow,Aufbau von Industrierobotern mit modularen Antriebselementen.,1986,2,Robotersysteme,,db/journals/robotersysteme/robotersysteme2.html#PritschowW86, +Heinrich Niemann,Semantische Netze als Ansatz zur Repräsentation und Nutzung von Wissen für die automatische Bildanalyse.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#NiemannS85, +K. Rall,Roboterkoordinatensystem-Ursprungsbestimmung mit Hilfe der robotereigenen Sensorik unter Berücksichtigung des Genauigkeitsverhaltens.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#RallWS92, +M. Wadle,Umwelterfassung und modellgestützte Kollisionsdetektion bei hochflexiblen Handhabungsgeräten.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#WadleC89, +Faydor L. Litvin,Toward the inverse kinematics of a 7 degree-of-freedom manipulator.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#LitvinST89, +Gerhard Werling,Ein Verfahren zur automatischen Plazierung von Montage-Robotern.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#Werling90, +Klaus A. Hörmann,Ein Verfahren zur Planung von Feinbewegungen für Montageoperationen.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#HormannW89, +Fan Dai,Graphische Simulation von Robotern mit einem graphisch-funktionalen Modell.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#DaiK87, +Günter Pritschow,Schnelle adaptive Signalverarbeitung für Lichtschnittsensoren.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#PritschowH91a, +Eckhard Freund,Ein Algorithmus zur Kollisionserkennung und -vermeidung bei Robotern mit zylinderförmigem Arbeitsraum.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#FreundB90, +X. Sheng,Geometrische Modellierung für Roboter-Simulation.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#ShengH91, +U. Günzel,Kraft- und Momentenregelung für Master-Slave-Servomanipulatoren.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#GunzelW88, +Eckhard Freund,Entwicklung eines VAL-II-Compilers für die Zielsprache IRDATA.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#FreundW91, +A. Visser,Offline-Korrektur von Bewegungsbahnen mit variabler Orientierung.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#VisserK90, +D. Schmid,Zusatzachsen verbessern die Sensorführung von Robotern.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#SchmidHS89, +Günter Pritschow,Koordinierte Bahnführung zweier Roboter.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#PritschowK91, +W. Weber,Regelung/Steuerung von elektrischen Master-Slave-Manipulatoren mit dem inversen Modell.,1986,2,Robotersysteme,,db/journals/robotersysteme/robotersysteme2.html#WeberB86, +J. Müglitz,Roboterähnliche räumliche Führungsmechanismen.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#Muglitz91, +Wei Li 0006,Schnelle Abbildung von Hindernissen in den Konfigurationsraum.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#Li91, +P. Drews,Sensorsystem zur Fugenverfolgung und Fugengeometrieerfassung beim automatisierten Schutzgasschweißen.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#DrewsWSW92, +Rüdiger Dillmann,Ein CAD-unterstützter Trajektorien Entwurfseditor.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#DillmannS88, +András Siegler,Fehleranalyse von Robotermanipulatoren als Teil der Bahnberechnung.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#Siegler88, +Günter Pritschow,Methode zur Robotersimulation unter Berücksichtigung der schwingungsfähigen Mechanik und lagegeregelten Antriebe.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#PritschowH89, +G. Spur,Sensorunterstütztes Montagesystem.,1986,2,Robotersysteme,,db/journals/robotersysteme/robotersysteme2.html#SpurSFD86, +Ulrich Rembold,Autonome mobile Roboter.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#Rembold88, +U. Negretto,Erweiterte Petri-Netze in flexiblen Fertigungs- und Montagesystemen.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#NegrettoR88, +Frank Wallner,Reflexive Navigation basierend auf künstlichen Potentialfeldern.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#Wallner92, +Matthias Aner,Fügemechanismen mit Sensorik in der automatischen Montage.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#Aner92, +G. Dittrich,Optimierung der kinematischen Abmessungen von Handhabungsgeräten.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#DittrichM87, +U. Zachmann,Reinforcement-Learning bei der Steuerung eines autonomen mobilen Roboters.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#ZachmannB91, +H. Gärlich,Ausgewählte Probleme der Positionierung und mathematischen Modellierung beim Einsatz von Gleitschalungsfertigern im Zementbetonstraßenbau.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#Garlich90, +H. Loose,Simulation von Manipulatoren in Handhabungs- und Bearbeitungsprozessen.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#LooseU90, +U. Ahrens,Sensorschnittstellen für Robotersteuerungen.,1986,2,Robotersysteme,,db/journals/robotersysteme/robotersysteme2.html#AhrensDL86, +K. Dietmayer,Ein dynamisches Modell für Flurförderzeuge.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#DietmayerH92, +Hans-Jürgen Warnecke,Flexible Mehrstellenhandhabung mit mobilem Industrieroboter.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#WarneckeS85, +J. Wauer,Symbolische Generierung der Bewegungsgleichungen hybrider Robotersysteme.,1986,2,Robotersysteme,3,db/journals/robotersysteme/robotersysteme2.html#Wauer86, +Alois Tauber,Ein Verfahren zur Lösung der allgemeinen Rücktransformation unter Berücksichtigung von Randbedingungen.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#Tauber89, +M. Schweizer,Fügen von Crimpkontakten mit Industrieroboter unter Zuhilfenahme eines Bildverarbeitungssystems.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#SchweizerDG87, +Veit Held,Identifikation der Trägheitsparameter von Industrierobotern.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#Held89, +G. Duelen,Automatische Bewegungssynthese für bahnbezogen kooperierende Industrieroboter.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#DuelenKHM87, +M. C. Wanner,Manipulatoren für den Tunnel- und Streckenausbau im Untertagebetrieb.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#WannerH87, +Peter Saffe,Moderne servohydraulische Antriebe für Industrieroboter.,1986,2,Robotersysteme,4,db/journals/robotersysteme/robotersysteme2.html#Saffe86, +M. Gustmann,Modifizierter Industrieroboter geht in die Unterwasser-Erprobung.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#GustmannNAS91, +Wolfgang M. Grimm,Methoden für die Normabschätzung der Nichtlinearitäten von Roboterbewegungsgleichungen.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#GrimmF89, +M. Eppinger,Systematischer Vergleich von Verfahren zur Rückwärtstransformation bei Industrierobotern.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#EppingerK89, +Hans-Jürgen Warnecke,Musterverarbeitung mit taktilen Sensoren Konzept eines Modularen Aktiven Greifer-/Sensorensystems (MAGS).,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#WarneckeSS87, +M. Reddig,Iterative Methoden der Koordinatentransformation am Beispiel eines 6-Achsen-Gelenkroboters mit Winkelhand.,1986,2,Robotersysteme,3,db/journals/robotersysteme/robotersysteme2.html#ReddigS86, +T. Tempelmeier,Eine Roboterzelle für die Fertigung des Airbus-Seitenleitwerks.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#TempelmeierG89, +Toshihiro Tsumura,Recent development of automated guided vehicles in Japan.,1986,2,Robotersysteme,,db/journals/robotersysteme/robotersysteme2.html#Tsumura86, +Martin Frühauf,Eine Wissensbasis zur Beschreibung von Roboterarbeitszellen.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#FruhaufD88, +Andrew A. Goldenberg,On the bilateral control of master-slave teleoperators.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#GoldenbergBS91, +Siegfried Bocionek,Ein System kooperierender Regelmoduln für die aufgabenorientierte Programmierung.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#BocionekF90, +Klaus A. Hörmann,Planung kollisionsfreier Greifoperationen: Kollisionsfreie Bahnplanung für Greifer und Manipulator.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#HormannW90, +Thomas Horsch,Schnelle kollisionsvermeidende Bahnplanung für einen Roboter mit 6 rotatorischen Freiheitsgraden.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#HorschNA91, +M. Jantzer,Bahnregelung flächenbeweglicher Flurförderzeuge.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#Jantzer87, +Dimitry M. Gorinevsky,Experiments in direct learning of feedforward control for manipulator path tracking.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#Gorinevsky92, +G. Schupp,Flexible Montageautomation in der Pkw-Endmontage.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#Schupp87, +Hans-Jürgen Warnecke,Integriertes sensorgestütztes Robotersystem.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#WarneckeLG88, +Albin Dirndorfer,Industrieroboter zur förderbandsynchronen Montage.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#Dirndorfer92, +H. Petters,Bildverarbeitung unter UNIX.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#Petters85, +T. Tempelmeier,Das Steuerungskonzept für die Fertigung des Airbag-Gasgenerators. Einsatz von Montagerobotern unter extremen Anforderungen der Qualitätssicherung.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#Tempelmeier88, +Heinz Wörn,CAD-Simulation unterstützt Robotereinsatz.,1986,2,Robotersysteme,3,db/journals/robotersysteme/robotersysteme2.html#WornS86, +P. Drews,Echtzeit-Bahnplanung eines Roboters unter Sensoreinsatz.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#DrewsZ89, +Peter Rojek,Schnelle Koordinatentransformation und Führungsgrößenerzeugung für bahngeführte Industrieroboter.,1986,2,Robotersysteme,,db/journals/robotersysteme/robotersysteme2.html#RojekOL86, +E. Aust,Modifikation eines inkrementalen Drehgebers für den Unterwassereinsatz von Robotern bis zu Wassertiefen von 1200 m.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#AustD88, +D. Schmid,Taktile Sensoren für adaptive multisensorielle Greifsysteme.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#SchmidHM88, +Wolfgang Weber 0002,AGRIS: Programmsystem zur automatischen Generierung von effizienten inversen Robotermodellen.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#Weber91, +Walter Schwinn,Standpunktoptimierung von Industrierobotern in Fertigungszellen.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#Schwinn90, +E. Becker,Ausgewählte Aspekte bei der Entwicklung eines Portalroboters.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#BeckerS88, +Bernd Radig,Modellierung symmetrischer Werkstücke.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#RadigS85, +Eckhard Freund,Automatische Bahnbestimmung in Echtzeit für Robotersysteme.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#FreundH87, +Eckhard Freund,OSIRIS - Ein objektorientiertes System zur impliziten Roboterprogrammierung und Simulation.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#FreundHKM90, +Karim A. Tahboub,A reduced dynamic model for constrained robots in the task frame.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#TahboubM91, +Gerd Hirzinger,Adaptiv sensorgeführte Roboter mit besonderer Berücksichtigung der Kraft-Momenten-Rückkopplung.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#Hirzinger85, +Mamoru Mitsuishi,Diagnostic system for robot using a force-torque sensor.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#Mitsuishi89, +B. Graf,Flächenoptimale Belegung von Flachmagazinen für die Handhabungstechnik.,1986,2,Robotersysteme,,db/journals/robotersysteme/robotersysteme2.html#Graf86, +M. Hiller,Programmsystem zur Behandlung der Rückwärtstransformation bei sechsachsigen Industrierobotern.,1986,2,Robotersysteme,4,db/journals/robotersysteme/robotersysteme2.html#HillerWS86, +Günter Pritschow,Elektrische Direktantriebe für Robotergrundachsen.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#PritschowP90, +I. Cawi,Fortschrittliche Lageregelung einer Roboterachse.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#CawiW88, +Péter Kovács,Ermittlung von Triangulationen kleinsten Grades für die inverse kinematische Transformation.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#Kovacs90, +Roman Kalný,Continuous path control of non-simple robots.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#KalnyV91, +H. Tersch,Verbesserung der Positioniergenauigkeit von Industrierobotern.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#Tersch88, +P. Dietmaier,Ein Programmsystem zur automatischen Erstellung der übertragungsfunktionen räumlicher Mechanismen.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#Dietmaier92, +P. Melcher,Mathematische Modellbildung zur Befahrbarkeitssimulation einer mobilen Tiefsee-Arbeitsmaschine.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#Melcher88, +Günter Pritschow,Geometriesensoren und Sensordatenverarbeitung für die automatisierte Roboterprogrammierung.,1986,2,Robotersysteme,,db/journals/robotersysteme/robotersysteme2.html#PritschowG86, +Uwe Ahrens,Möglichkeiten und Probleme der Anwendung von Luft-Ultraschallsensoren in der Montage- und Handhabungstechnik.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#Ahrens85, +S. Faulhaber,Regelungskonzepte für schwach gedämpfte Antriebe in Handhabungssystemen.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#Faulhaber87, +Axel Köhne,Wissenbasierte Aktionsplanung und Konfigurierung. Ein überblick über den Stand der Technik.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#KohneW91, +Hans-Jürgen Warnecke,Entwicklung eines Compliance-Elements zur Montageautomatisierung.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#WarneckeF90, +Rüdiger Dillmann,Ein sensorintegrierter Greifer als modulares Teilsystem für Montageroboter.,1986,2,Robotersysteme,4,db/journals/robotersysteme/robotersysteme2.html#DillmannHM86, +E. Aust,Anpassung eines Roboterteilsystems für den Seewassereinsatz und Erprobung bis 1100 m Wassertiefe.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#AustNSMBS89, +Ralf Gutsche,MONAMOVE - Ein Navigations- und überwachungssystem für fahrerlose Transportfahrzeuge in Fabrikationsumgebungen.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#GutscheLW92, +Bernhard J. Frommherz,Spezifikation von dreidimensionalen Szenen durch graphische Definition räumlicher Beziehungen.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#FrommherzW89, +Kostas J. Kyriakopoulos,On-line collision prediction for mobile robot collision avoidance under uncertainty.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#KyriakopoulosS92, +G. W. Köhler,Vorteile von elektrischen Master-Slave-Manipulatoren.,1986,2,Robotersysteme,4,db/journals/robotersysteme/robotersysteme2.html#Kohler86a, +F. Mehner,Automatische Generierung von Rücktransformationen für nichtredundante Roboter.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#Mehner90, +Arno Behrens,Off-line-programmierte Bewegungsplanung für Industrieroboter auf der Grundlage eines fehlerkompensierenden Identifikationsverfahrens.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#BehrensT92, +D. Schmid,Sensorunterstützte Bahnprogrammierung beim Laserschweißen mit Roboter.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#SchmidSM92, +Leon Beiner,Time-optimization of point-to-point robotic motions.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#Beiner90, +G. W. Köhler,Mechanische Master-Slave-Manipulatoren.,1986,2,Robotersysteme,,db/journals/robotersysteme/robotersysteme2.html#Kohler86, +Hermann Heiß,Grundlagen der Koordinatentransformation bei Industrierobotern.,1986,2,Robotersysteme,,db/journals/robotersysteme/robotersysteme2.html#Heiss86, +P. Drews,Optische Sensorsysteme für das automatisierte Lichtbogenschweißen.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#DrewsFW85, +F. Sternheim,Computation of the direct and inverse geometric models of the Delta 4 parallel robot.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#Sternheim87, +Manfred Weck,Graphisch interaktives Programmier- und Testsystem für Industrieroboter.,1986,2,Robotersysteme,4,db/journals/robotersysteme/robotersysteme2.html#WeckNO86, +Hans-Jürgen Warnecke,Entwicklung und Anwendung rechnergestützter Konstruktionshilfen zur Auslegung von Roboterstrukturen.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#WarneckeW85, +H. Gzik,"Rationalisierungsreserven im Schweißbereich. Auswahl der ""richtigen"" Werkstücke für das Roboterschweißen.",1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#Gzik87, +G. Devaquet,A simple mechanical model for the DELTA-Robot.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#DevaquetB92, +Alessandro De Luca 0001,The reduced gradient method for solving redundancy in robot arms.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#LucaO91, +F. J. Arendts,Der Einsatz von Faserverbungwerkstoffen im Rahmen eines Roboterbaukastensystems.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#ArendtsPNW88, +Karl-Heinz Meisel,Verarbeitung von Sensorsignalen in Robotersteuerungen.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#MeiselB85, +Eckhard Freund,Ein Verfahren zur automatischen Kollisionsvermeidung für Roboter.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#FreundH85, +Rainer Stetter,Einbindung physikalischer Effekte in die 3D-Simulation eines Handhabungsprozesses.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#Stetter92, +Klaus A. Hörmann,Bewegungen unter Unsicherheit.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#HormannHS91, +Theo J. Doll,Nichttaktile Sensoren für Roboter und Sensoreinsatzplanung.,1986,2,Robotersysteme,,db/journals/robotersysteme/robotersysteme2.html#Doll86, +Hans-Jürgen Warnecke,Steuerung einer mehrdimensionalen Justage über Fuzzy-Logik.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#WarneckeK92, +Theo J. Doll,Entwicklung einer Roboterhand für die Feinmanipulation von Objekten.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#Doll87, +H. Heidenbluth,ALI: Allgemeine Software-Schnittstelle für die Off-line-Programmierung automatisierter Montagesysteme.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#Heidenbluth91, +Günter Pritschow,Dynamik derzeitiger Sensorregelkreise für Industrieroboter.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#PritschowH91, +Günter Pritschow,Erhöhung der Bahngenauigkeit von Industrierobotern.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#PritschowKBH92, +Jörg Raczkowsky,Werkstückerkennung mit einem Binärbildverarbeitungssystem.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#Raczkowsky85, +Helge-Björn Kuntze,Algorithmen zur versteifenden Regelung von elastischen Industrierobotern.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#KuntzeJ85, +Hermann Heiß,Konstruktionskriterien und Lösungsverfahren für Industrieroboter mit explizit lösbarer kinematischer Gleichung.,1986,2,Robotersysteme,3,db/journals/robotersysteme/robotersysteme2.html#Heiss86a, +Helge-Björn Kuntze,Sensorgestützte Programmierung und Steuerung von Industrierobotern.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#KuntzeJFMSB88, +Paul Levi,Ikonisches Kernsystem (IKS). Ein Ansatz zur Vereinheitlichung von Grundfunktionen der Bildverarbeitung und der Merkmalsextraction.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#Levi85, +Günter Pritschow,RDL - ein Werkzeug zur Robotermodellierung.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#PritschowBA91, +D. Popovic,Suchverfahren zur kollisionsfreien Bahnplanung für Industrieroboter.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#PopovicHSW92, +W. Kühn,Identifikation der Systemparameter 6-achsiger Gelenkarmroboter mit Hilfe der Evolutionsstrategie.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#KuhnV92, +Wei Li 0006,Modifizierung des Roberts' Algorithmus zur graphischen Darstellung von Robotern.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#LiJW90, +Rüdiger Dillmann,Ein Softwaresystem zur Simulation von robotergestützten Fertigungsprozessen.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#DillmannH85, +H. Geißelmann,Sichtsysteme in der Industrie.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#GeisselmannONT85, +M. C. Wanner,Hochflexible Handhabungssysteme. Ergebnisse einer Einsatzfalluntersuchung.,1986,2,Robotersysteme,4,db/journals/robotersysteme/robotersysteme2.html#WannerBKW86, +Manfred Weck,Prozeßnahe Roboterprogrammierung unter Einsatz eines inertialen Meßsystems.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#WeckMW88, +Bernhard J. Frommherz,Automatische Erzeugung von Vorranggraphen.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#FrommherzH88, +Jörg Raczkowsky,Multisensorik für ein Robotersystem.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#Raczkowsky88, +Andreas Jacubasch,Anwendung eines neuen Verfahrens zur schnellen und robusten Positionsregelung von Industrierobotern.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#JacubaschKAR87, +Hans-Jürgen Warnecke,Untersuchungen über die automatische Montage von Schläuchen mit Industrierobotern.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#WarneckeF88, +Christian von Albrichsfeld,Echtzeitfähige kollisionsvermeidende Bahnplanung durch Kombination globaler und lokaler Methoden.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#AlbrichsfeldH92, +Gerd Schlaich,Kabelbaummontage mit Industrierobotern.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#Schlaich89, +J. Lang,Anwendung von fortgeschrittenen Positions-Kraft-Regelungskonzepten bei einem Zweiarmrobotersystem.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#LangMT91, +Wei Li 0006,Automatische Bestimmung kollisionsfreier Bewegungsbahnen für Industrieroboter.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#Li90, +H. Breitwieser,DISTEL: Digitales Steuerungssystem für Telemanipulatoren.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#Breitwieser91, +Günter Pritschow,Steuerungsstruktur und Programmierkonzept zur On-line-Bewegungskoordinierung zweier Roboter in einer flexiblen Montagezelle.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#PritschowB90, +Alois Knoll,Akustische Holographie - ein Hilfsmittel zur Bestimmung der räumlichen Position von Objekten in der Robotik.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#Knoll88, +G. W. Köhler,"Elektrischer Master-Slave-Manipulator ""EMSM-2B"".",1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#KohlerS88, +Peter Mertens,Entwicklung und Anwendung von Expertensystemen auf Personal Computern.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#MertensS87, +D. Schmid,Autonom sensorgeführter Roboter zur Schleifbearbeitung von Behältersegmenten.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#SchmidMZ90, +Subhash Wadhwa,Analysis of collision avoidance in multirobot cells using Petri nets.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#WadhwaB88, +Leonie S. Dreschler-Fischer,Konzeption für ein Bildverarbeitungssystem zur Lösung des Korrespondenzproblems bei Stereo-Bildfolgen im Rahmen einer komfortablen ADA-Programmierumgebung.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#Dreschler-FischerH85, +Friedrich Pfeiffer,Augmented flexible link manipulator trajectory control for moving a filled glass.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#PfeifferRK92, +Karsten Berns,Anwendungen neuronaler Netze in der Robotik.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#Berns91, +Ralf Heine,Kollisionsfreie Bahnplanung für Roboter.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#HeineS91, +P. Mertens,Programming industrial robots for flexible palletizing.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#MertensD88, +Rymantas Kazys,Programmable ultrasonic range finder for mobile robot.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#KazysKDMB91, +P. B. Krause,Modellgesteuerte Bildanalyse zur Erkennung und Positionsvermessung übereinanderliegender Werkstücke.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#KrauseFH85, +Paul W. Vaughan,PRISM: An Object-Oriented System Modeling Toolkit.,1994,4,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs4.html#VaughanN94, +B. J. Doray,Design Issues for a Message-Passing Multiprocessor System for Distributed Logic Simulation.,1991,1,Int. Journal in Computer Simulation,3,db/journals/ijcs/ijcs1.html#DorayL91, +Gölgen Bengü,An Implementation of a Simulation Optimization System.,1994,4,Int. Journal in Computer Simulation,3,db/journals/ijcs/ijcs4.html#BenguH94, +Richard A. Golding,Accessing Replicated Data in a Large-Scale Distributed System.,1991,1,Int. Journal in Computer Simulation,4,db/journals/ijcs/ijcs1.html#GoldingL91, +John A. Miller,Performance of Time Warp Protocols for Transaction Management in Object Oriented Systems.,1994,4,Int. Journal in Computer Simulation,3,db/journals/ijcs/ijcs4.html#MillerG94, +Sudhakar Yalamanchili,Paradigms for Modeling and Simulation of Multiprocessor Architectures.,1996,6,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs6.html#YalamanchiliC96, +Brian Field,Simulation-Based Experimental Evaluation of Transport-Layer Protocols to Support Real-Time Applications.,1996,6,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs6.html#FieldZ96, +Vicenzo Catani,Real-Time Data Service in CIM Environments.,1996,6,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs6.html#CataniPPV96, +Jiajen M. Lin,Fast High-Level Simulation of Shared-Memory Multiprocessor Systems.,1992,2,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs2.html#LinA92, +Richard Covington,Efficient Simulation of Parallel Computer Systems.,1991,1,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs1.html#ConvingtonDJSM91, +Bharat K. Bhargava,Analyzing Availability of Replicated Database Systems.,1991,1,Int. Journal in Computer Simulation,4,db/journals/ijcs/ijcs1.html#BhargavaHF91, +Henri Pierreval,A Metamodeling Approach Based on Neural Networks.,1996,6,Int. Journal in Computer Simulation,3,db/journals/ijcs/ijcs6.html#Pierreval96, +Dirk Baezner,Parallel Simulation Environment Based on Time Warp.,1994,4,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs4.html#BaeznerLU94, +Lauren L. Smith,Use of Direct Simulation for the Visualization and Analysis of a Supercomputer Architecture.,1996,6,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs6.html#SmithG96, +Chinho Lin,A Practical Approach to Designing the Maintenance System for a Flexible Manufacturing System.,1996,6,Int. Journal in Computer Simulation,3,db/journals/ijcs/ijcs6.html#Lin96a, +Cynthia A. Funka-Lea,Q+: Interactive Visual Modeling for Performance Analysis and Simulation of Queueing Systems.,1994,4,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs4.html#Funka-LeaGY94, +Yahya Y. Al-Salqan,Performance Simulation of Hybrid-Ethernet.,1994,4,Int. Journal in Computer Simulation,3,db/journals/ijcs/ijcs4.html#Al-SalqanCKP94, +John F. Affisco,Book Review: Experimental Statistical Designs and Analysis in Simulation Modelling by Christian N. Madu and Chu-hua Kuei.,1996,6,Int. Journal in Computer Simulation,3,db/journals/ijcs/ijcs6.html#Affisco96, +Patrick W. Dowd,High-Speed Routing in a Distributed Memory Parallel Computer System: A Simulation Study.,1991,1,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs1.html#Dowd91, +Olivier Y. de Vel,Concurrent Simulation of Systolic and Wavefront Array Processor Architectures.,1994,4,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs4.html#VelT94, +Jerry Waldorf,MOOSE: A Concurrent Object-Oriented Language for Simulation.,1994,4,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs4.html#WaldorfB94, +Darrell D. E. Long,Simulation of Distributed File and Database Systems - Editorial.,1991,1,Int. Journal in Computer Simulation,4,db/journals/ijcs/ijcs1.html#Long91, +Christian N. Madu,Guest Editors' Introduction: Simulation Metamodeling of Production Systems.,1996,6,Int. Journal in Computer Simulation,3,db/journals/ijcs/ijcs6.html#MaduK96, +Donald B. Johnson,Effects of Replication on Data Availability.,1991,1,Int. Journal in Computer Simulation,4,db/journals/ijcs/ijcs1.html#JohnsonR91, +Kimming So,Guest Editors' Introduction: Computer Architecture Simulations.,1996,6,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs6.html#SoW96, +Dana L. Wyatt,SWIM: A Knowledge-Based Digital Circuit Simulator.,1994,4,Int. Journal in Computer Simulation,3,db/journals/ijcs/ijcs4.html#WyattAB94, +J. Tabler,Solution of the Power Flow Equations Using Parallel Analog Computing.,1994,4,Int. Journal in Computer Simulation,4,db/journals/ijcs/ijcs4.html#TablerBDA94,http://dl.acm.org/citation.cfm?id=202940 +Patrick W. Dowd,TDM-Based WDM Access Protocols: A Comparison of Reservation and Preallocation Strategies for a Photonic Star-Coupled Configuration.,1994,4,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs4.html#DowdB94, +Venkatesh Akella,CFSIM: A Concurrent Compiled Code Functional Simulator for hopCP.,1994,4,Int. Journal in Computer Simulation,4,db/journals/ijcs/ijcs4.html#AkellaG94,http://dl.acm.org/citation.cfm?id=202929 +Yi-Bing Lin,Estimating the Likelihood of Success of Lazy Cancellation in Time Warp Simulations.,1996,6,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs6.html#Lin96, +Giorgio Casinovi,Special-Purpose Algorithms for the Simulation of Integrated Circuits.,1994,4,Int. Journal in Computer Simulation,4,db/journals/ijcs/ijcs4.html#Casinovi94,http://dl.acm.org/citation.cfm?id=202937 +John A. Miller,Query-Driven Simulation Using Active KDL: A Functional Object-Oriented Database System.,1991,1,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs1.html#MillerKPUK91, +Oystein Gran Larsen,Emulating Message-Passing Multicomputers in a Network of Workstations.,1991,1,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs1.html#Larsen91, +C. Ruth Harris,Demand Characteristics and System Performance: Constructing a Sample Space for the Metamodel from Terminating Simulations.,1996,6,Int. Journal in Computer Simulation,3,db/journals/ijcs/ijcs6.html#Harris96, +Alain Gefflaut,SPAM: A Multiprocessor Execution-Driven Simulation Kernel.,1996,6,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs6.html#GefflautJ96, +Christopher H. de Castro,Partitioning Coarse-Grain Signal Flow Graphs for Heterogeneous DSP Architectures.,1994,4,Int. Journal in Computer Simulation,4,db/journals/ijcs/ijcs4.html#CastroY94,http://dl.acm.org/citation.cfm?id=202933 +Matt W. Mutka,Considering Deadline Constraints When Allocating the Shared Capacity of Private Workstations.,1994,4,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs4.html#Mutka94, +Barry T. W. Kwok,Simulating Continous Systems with Piecewise - Linear Signals Using Time Warp.,1991,1,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs1.html#KwokP91, +H. L. Graham,Event-Driven Waveform Relaxation Algorithm for Circuit Simulation.,1991,1,Int. Journal in Computer Simulation,3,db/journals/ijcs/ijcs1.html#GrahamCCH91, +Pavlos Konas,Chief: A Simulation Environment for Studying Parallel Systems.,1996,6,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs6.html#KonasPBBY96, +Giorgio Casinovi,Computer Simulation of Application Specific Signal Processing Systems - Guest Editorial.,1994,4,Int. Journal in Computer Simulation,4,db/journals/ijcs/ijcs4.html#CasinoviM94, +James M. Butler,Quantum Simulation of Distributed Computers Using the PSB/EPN System Model.,1991,1,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs1.html#Butler91, +Christian N. Madu,A Metamodel of Quality Performance Measure in an Urreliable FMS.,1996,6,Int. Journal in Computer Simulation,3,db/journals/ijcs/ijcs6.html#MaduK96a, +Jia-Yuan Han,Random Task Graph-Based Comparative Study of Deterministic Scheduling Algorithms.,1994,4,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs4.html#HanBWH94, +A. Mete Kabakçioglu,Symbolic Simulation for the Verification of Temporal Logic Specifications about Sequential Designs.,1991,1,Int. Journal in Computer Simulation,3,db/journals/ijcs/ijcs1.html#KabakciogluS91, +Kallol Kumar Bagchi,Simulation of Multiple Processor Systems: The State of The Art.,1991,1,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs1.html#Bagchi91, +Joseph T. Buck,Ptolemy: A Framework for Simulating and Prototyping Heterogenous Systems.,1994,4,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs4.html#BuckHLM94, +Mark A. Holliday,Techniques for Cache and Memory Simulation Using Address Reference Traces.,1991,1,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs1.html#Holliday91, +Steven G. Popovich,Simulation of a DQDB MAC Protocol Using NETWORK 11.5.,1996,6,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs6.html#PopovichAB96, +,Multivariate Simulation Metamodels for a Large Scale Maintenance Float System.,1996,6,Int. Journal in Computer Simulation,3,db/journals/ijcs/ijcs6.html#X96, +Michael J. Quinn,Implementing a Time-Driven Simulation on a MIMD Computer Using a SIMD Language.,1992,2,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs2.html#QuinnSH92, +Albert Y. Zomaya,Transputer Networks for the Dynamic Simulation of Robot Manipulators.,1992,2,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs2.html#ZomayaM92, +Douglas A. Popken,Hierarchical Modeling and Process Aggregation in Object-Oriented Simulation.,1994,4,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs4.html#Popken94, +Alok N. Choudhary,Shared-Memory Multiprocessor Simulations to Study Dynamic Characteristics of Two-Level Caches.,1992,2,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs2.html#ChoudharyK92, +Adedeji B. Badiru,Simulation and Regression Metamodels of Activity Networks in Production Systems.,1996,6,Int. Journal in Computer Simulation,3,db/journals/ijcs/ijcs6.html#Badiru96, +Yi-Bing Lin,Effect of Process Scheduling in Parallel Simulation.,1992,2,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs2.html#LinL92, +Celso Massaki Hirata,Object-Oriented Programming Architecture for Simulation Modeling.,1996,6,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs6.html#HirataP96, +Rassul Ayani,Parallel Discrete - Event Simulation on Shared Memory Multiprocessors.,1991,1,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs1.html#Ayani91, +Yung-Chang Wong,Investigation of Parallel Simulation.,1996,6,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs6.html#WongH96, +Hitendra H. Desai,An Event Scheduling Technique for Digital Logic Simulation.,1991,1,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs1.html#Desai91, +Gary Shao,Soft Prototyping in the Design of Military Electronics.,1991,1,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs1.html#Shao91, +Francesco Curatelli,Evaluation of Communication Performances in Hypercube Architectures.,1992,2,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs2.html#Curatelli92, +David R. Kaeli,Real-Time Trace Generation.,1996,6,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs6.html#KaeliLHWS96, +Richard Fujimoto,Accuracy of Multiprocessor Tracing Techniques.,1996,6,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs6.html#FujimotoH96, +Dennis Mok,Simulation Software Technology - Guest Editorial.,1994,4,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs4.html#Mok94, +Ravi Nair,Profiling IBM RS/6000 Applications.,1996,6,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs6.html#Nair96, +Giovanni Chiola,Simulation Framework for Timed and Stochastic Petri Nets.,1991,1,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs1.html#Chiola91, +Kia Makki,A Simulation Study of Token-Based Mutual-Exlusion Algorithms in Distributed Systems.,1994,4,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs4.html#MakkiBP94, +Rhys S. Francis,Compiler Integrated Multiprocessor Simulation.,1991,1,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs1.html#FrancisMP91, +Pankaj K. Agarwal,Exact and Approximation Algorithms for Clustering.,2002,33,Algorithmica,2,db/journals/algorithmica/algorithmica33.html#AgarwalP02,https://doi.org/10.1007/s00453-001-0110-y +Lukasz Kowalik,Fast 3-coloring Triangle-Free Planar Graphs.,2010,58,Algorithmica,3,db/journals/algorithmica/algorithmica58.html#Kowalik10,https://doi.org/10.1007/s00453-009-9295-2 +Binay K. Bhattacharya,Optimal Algorithms for the Path/Tree-Shaped Facility Location Problems in Trees.,2009,55,Algorithmica,4,db/journals/algorithmica/algorithmica55.html#BhattacharyaST09,https://doi.org/10.1007/s00453-007-9157-8 +Dong Kyue Kim,Linearized Suffix Tree: an Efficient Index Data Structure with the Capabilities of Suffix Trees and Suffix Arrays.,2008,52,Algorithmica,3,db/journals/algorithmica/algorithmica52.html#KimKP08,https://doi.org/10.1007/s00453-007-9061-2 +Fedor V. Fomin,Enumerating Minimal Subset Feedback Vertex Sets.,2014,69,Algorithmica,1,db/journals/algorithmica/algorithmica69.html#FominHKPV14,https://doi.org/10.1007/s00453-012-9731-6 +Renzo Sprugnoli,Recurrence Relations on Heaps.,1996,15,Algorithmica,5,db/journals/algorithmica/algorithmica15.html#Sprugnoli96,https://doi.org/10.1007/BF01955045 +Joan Boyar,A Comparison of Performance Measures for Online Algorithms.,2015,72,Algorithmica,4,db/journals/algorithmica/algorithmica72.html#BoyarIL15,https://doi.org/10.1007/s00453-014-9884-6 +Colm ó'Dúnlaing,Generalized Voronoi Diagrams for a Ladder: II. Efficient Construction of the Diagram.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#ODunlaingSY87,https://doi.org/10.1007/BF01840348 +Alok Aggarwal,Editor's Foreword.,1992,7,Algorithmica,1,db/journals/algorithmica/algorithmica7.html#Aggarwal92,https://doi.org/10.1007/BF01758748 +Guoliang Xue,An O(n log n) Average Time Algorithm for Computing the Shortest Network under a Given Topology.,1999,23,Algorithmica,4,db/journals/algorithmica/algorithmica23.html#XueD99,https://doi.org/10.1007/PL00009266 +Emeric Gioan,Practical and Efficient Split Decomposition via Graph-Labelled Trees.,2014,69,Algorithmica,4,db/journals/algorithmica/algorithmica69.html#GioanPTC14a,https://doi.org/10.1007/s00453-013-9752-9 +George Christodoulou 0001,On the Performance of Approximate Equilibria in Congestion Games.,2011,61,Algorithmica,1,db/journals/algorithmica/algorithmica61.html#ChristodoulouKS11,https://doi.org/10.1007/s00453-010-9449-2 +Bonnie Berger,A Better Performance Guarantee for Approximate Graph Coloring.,1990,5,Algorithmica,3,db/journals/algorithmica/algorithmica5.html#BergerR90,https://doi.org/10.1007/BF01840398 +Hirotatsu Kobayashi,Cheating Strategies for the Gale-Shapley Algorithm with Complete Preference Lists.,2010,58,Algorithmica,1,db/journals/algorithmica/algorithmica58.html#KobayashiM10,https://doi.org/10.1007/s00453-009-9359-3 +Masao Iri,A Multiplicative Barrier Function Method for Linear Programming.,1986,1,Algorithmica,4,db/journals/algorithmica/algorithmica1.html#IriI86,https://doi.org/10.1007/BF01840457 +Nimrod Megiddo,Introduction: New Approaches to Linear Programming.,1986,1,Algorithmica,4,db/journals/algorithmica/algorithmica1.html#Megiddo86,https://doi.org/10.1007/BF01840453 +Giorgio Ausiello,Graph Spanners in the Streaming Model: An Experimental Study.,2009,55,Algorithmica,2,db/journals/algorithmica/algorithmica55.html#AusielloDFIR09,https://doi.org/10.1007/s00453-008-9216-9 +Ahmad Biniaz,Spanning Trees in Multipartite Geometric Graphs.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#BiniazBEMMS18,https://doi.org/10.1007/s00453-017-0375-4 +Kazuhisa Makino,Derandomizing the HSSW Algorithm for 3-SAT.,2013,67,Algorithmica,2,db/journals/algorithmica/algorithmica67.html#MakinoTY13,https://doi.org/10.1007/s00453-012-9741-4 +Robert Giegerich,From Ukkonen to McCreight and Weiner: A Unifying View of Linear-Time Suffix Tree Construction.,1997,19,Algorithmica,3,db/journals/algorithmica/algorithmica19.html#GiegerichK97,https://doi.org/10.1007/PL00009177 +Britta Dorn,Multivariate Complexity Analysis of Swap Bribery.,2012,64,Algorithmica,1,db/journals/algorithmica/algorithmica64.html#DornS12,https://doi.org/10.1007/s00453-011-9568-4 +Svante Carlsson,Sublinear Merging and Natural Mergesort.,1993,9,Algorithmica,6,db/journals/algorithmica/algorithmica9.html#CarlssonLP93,https://doi.org/10.1007/BF01190160 +Neeldhara Misra,The Parameterized Complexity of Unique Coverage and Its Variants.,2013,65,Algorithmica,3,db/journals/algorithmica/algorithmica65.html#MisraMRSS13,https://doi.org/10.1007/s00453-011-9608-0 +Liming Cai,Fixed-Parameter Approximation: Conceptual Framework and Approximability Results.,2010,57,Algorithmica,2,db/journals/algorithmica/algorithmica57.html#CaiH10,https://doi.org/10.1007/s00453-008-9223-x +Paolo Ferragina,Lightweight Data Indexing and Compression in External Memory.,2012,63,Algorithmica,3,db/journals/algorithmica/algorithmica63.html#FerraginaGM12,https://doi.org/10.1007/s00453-011-9535-0 +Anshul Kothari,Bandwidth-Constrained Allocation in Grid Computing.,2008,52,Algorithmica,4,db/journals/algorithmica/algorithmica52.html#KothariSZ08,https://doi.org/10.1007/s00453-007-9085-7 +Tomasz Kociumaka,Efficient Indexes for Jumbled Pattern Matching with Constant-Sized Alphabet.,2017,77,Algorithmica,4,db/journals/algorithmica/algorithmica77.html#KociumakaRR17,https://doi.org/10.1007/s00453-016-0140-0 +Sven Schuierer,Staircase Visibility and Computation of Kernels.,1995,14,Algorithmica,1,db/journals/algorithmica/algorithmica14.html#SchuiererW95,https://doi.org/10.1007/BF01300371 +Philip N. Klein,A Parallel Algorithm for Approximating the Minimum Cycle Cover.,1993,9,Algorithmica,1,db/journals/algorithmica/algorithmica9.html#KleinS93,https://doi.org/10.1007/BF01185336 +Shiva Chaudhuri,Shortest Paths in Digraphs of Small Treewidth. Part I: Sequential Algorithms.,2000,27,Algorithmica,3,db/journals/algorithmica/algorithmica27.html#ChaudhuriZ00,https://doi.org/10.1007/s004530010016 +Christian Schwarz 0002,An Optimal Algorithm for the On-Line Closest-Pair Problem.,1994,12,Algorithmica,1,db/journals/algorithmica/algorithmica12.html#SchwarzSS94,https://doi.org/10.1007/BF01377181 +Amihood Amir,Configurations and Minority in the String Consensus Problem.,2016,74,Algorithmica,4,db/journals/algorithmica/algorithmica74.html#AmirPR16,https://doi.org/10.1007/s00453-015-9996-7 +Eyal Kaplan,Derandomized Constructions of k-Wise (Almost) Independent Permutations.,2009,55,Algorithmica,1,db/journals/algorithmica/algorithmica55.html#KaplanNR09,https://doi.org/10.1007/s00453-008-9267-y +Minghui Jiang 0001,Recognizing d-Interval Graphs and d-Track Interval Graphs.,2013,66,Algorithmica,3,db/journals/algorithmica/algorithmica66.html#Jiang13,https://doi.org/10.1007/s00453-012-9651-5 +Christos Levcopoulos,Improved Algorithms for Constructing Fault-Tolerant Spanners.,2002,32,Algorithmica,1,db/journals/algorithmica/algorithmica32.html#LevcopoulosNS02,https://doi.org/10.1007/s00453-001-0075-x +Fabio Romeo,A Theoretical Framework for Simulated Annealing.,1991,6,Algorithmica,3,db/journals/algorithmica/algorithmica6.html#RomeoS91,https://doi.org/10.1007/BF01759049 +William A. Mackaness,Automated Displacement for Large Numbers of Discrete Map Objects.,2001,30,Algorithmica,2,db/journals/algorithmica/algorithmica30.html#MackanessP01,https://doi.org/10.1007/s00453-001-0007-9 +Shayan Oveis Gharan,On Variants of the Matroid Secretary Problem.,2013,67,Algorithmica,4,db/journals/algorithmica/algorithmica67.html#GharanV13,https://doi.org/10.1007/s00453-013-9795-y +Frank Kammer,Approximation Algorithms for Intersection Graphs.,2014,68,Algorithmica,2,db/journals/algorithmica/algorithmica68.html#KammerT14,https://doi.org/10.1007/s00453-012-9671-1 +Peter Floderus,3D Rectangulations and Geometric Matrix Multiplication.,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#FloderusJLLS18,https://doi.org/10.1007/s00453-016-0247-3 +Tracy Kimbrel,Interleaved Prefetching.,2002,32,Algorithmica,1,db/journals/algorithmica/algorithmica32.html#Kimbrel02,https://doi.org/10.1007/s00453-001-0066-y +Jianxi Fan,Embedding of Cycles in Twisted Cubes with Edge-Pancyclic.,2008,51,Algorithmica,3,db/journals/algorithmica/algorithmica51.html#FanJL08,https://doi.org/10.1007/s00453-007-9024-7 +Seok-Hee Hong,Approximation Algorithms for Minimizing Edge Crossings in Radial Drawings.,2010,58,Algorithmica,2,db/journals/algorithmica/algorithmica58.html#HongN10a,https://doi.org/10.1007/s00453-009-9277-4 +Emilio Di Giacomo,The Approximate Rectangle of Influence Drawability Problem.,2015,72,Algorithmica,2,db/journals/algorithmica/algorithmica72.html#GiacomoLM15,https://doi.org/10.1007/s00453-013-9866-0 +Andrei Lissovoi,A Runtime Analysis of Parallel Evolutionary Algorithms in Dynamic Optimization.,2017,78,Algorithmica,2,db/journals/algorithmica/algorithmica78.html#LissovoiW17,https://doi.org/10.1007/s00453-016-0262-4 +Peter Damaschke,Homogeneous String Segmentation using Trees and Weighted Independent Sets.,2010,57,Algorithmica,4,db/journals/algorithmica/algorithmica57.html#Damaschke10,https://doi.org/10.1007/s00453-008-9225-8 +Madeleine Theile,Stability in the Self-Organized Evolution of Networks.,2010,57,Algorithmica,1,db/journals/algorithmica/algorithmica57.html#TheileJ10,https://doi.org/10.1007/s00453-008-9242-7 +Mark H. Overmars,An Improved Technique for Output-Sensitive Hidden Surface Removal.,1994,11,Algorithmica,5,db/journals/algorithmica/algorithmica11.html#OvermarsS94,https://doi.org/10.1007/BF01293267 +Bojan Djordjevic,Detecting Regular Visit Patterns.,2011,60,Algorithmica,4,db/journals/algorithmica/algorithmica60.html#DjordjevicGPW11,https://doi.org/10.1007/s00453-009-9376-2 +Pankaj K. Agarwal,Guarding a Terrain by Two Watchtowers.,2010,58,Algorithmica,2,db/journals/algorithmica/algorithmica58.html#AgarwalBDKNSZ10,https://doi.org/10.1007/s00453-008-9270-3 +David G. Kirkpatrick,Parallel Construction of Binary Trees with Near Optimal Weighted Path Lengt.,1996,15,Algorithmica,2,db/journals/algorithmica/algorithmica15.html#KirkpatrickP96,https://doi.org/10.1007/BF01941687 +Sebastian Böcker,Exact Algorithms for Cluster Editing: Evaluation and Experiments.,2011,60,Algorithmica,2,db/journals/algorithmica/algorithmica60.html#BockerBK11,https://doi.org/10.1007/s00453-009-9339-7 +Benjamin Doerr,Guest Editorial: Theory of Evolutionary Computation.,2016,75,Algorithmica,3,db/journals/algorithmica/algorithmica75.html#DoerrW16,https://doi.org/10.1007/s00453-016-0157-4 +Bart M. P. Jansen,Sparsification Upper and Lower Bounds for Graph Problems and Not-All-Equal SAT.,2017,79,Algorithmica,1,db/journals/algorithmica/algorithmica79.html#JansenP17,https://doi.org/10.1007/s00453-016-0189-9 +Harold N. Gabow,Editor's Foreword: Special Issur on Network Flow Algorithms.,1994,11,Algorithmica,3,db/journals/algorithmica/algorithmica11.html#Gabow94,https://doi.org/10.1007/BF01240732 +Srikrishnan Divakaran,An Online Algorithm for a Problem in Scheduling with Set-ups and Release Times.,2011,60,Algorithmica,2,db/journals/algorithmica/algorithmica60.html#DivakaranS11,https://doi.org/10.1007/s00453-009-9337-9 +Jorge L. C. Sanz,Data Reduction and Fast Routing: A Strategy for Efficient Algorithms for Message-Passing Parallel Computers.,1992,7,Algorithmica,1,db/journals/algorithmica/algorithmica7.html#SanzC92,https://doi.org/10.1007/BF01758752 +Yaron Pinto,Efficient Algorithms for Minimum-Cost Flow Problems with Piecewise-Linear Convex Costs.,1994,11,Algorithmica,3,db/journals/algorithmica/algorithmica11.html#PintoS94,https://doi.org/10.1007/BF01240736 +Amit Chakrabarti,Approximation Algorithms for the Unsplittable Flow Problem.,2007,47,Algorithmica,1,db/journals/algorithmica/algorithmica47.html#ChakrabartiCGK07,https://doi.org/10.1007/s00453-006-1210-5 +Carsten Gutwenger,Inserting an Edge into a Planar Graph.,2005,41,Algorithmica,4,db/journals/algorithmica/algorithmica41.html#GutwengerMW05,https://doi.org/10.1007/s00453-004-1128-8 +Lenwood S. Heath,New Results for the Minimum Weight Triangulation Problem.,1994,12,Algorithmica,6,db/journals/algorithmica/algorithmica12.html#HeathP94,https://doi.org/10.1007/BF01188718 +Wojciech Szpankowski,On the Height of Digital Trees and Related Problems.,1991,6,Algorithmica,2,db/journals/algorithmica/algorithmica6.html#Szpankowski91,https://doi.org/10.1007/BF01759045 +Steven Chaplick,The Partial Visibility Representation Extension Problem.,2018,80,Algorithmica,8,db/journals/algorithmica/algorithmica80.html#ChaplickGGKL18,https://doi.org/10.1007/s00453-017-0322-4 +Sanguthevar Rajasekaran,Optimal Parallel Randomized Algorithms for the Voronoi Diagram of Line Segments in the Plane.,2002,33,Algorithmica,4,db/journals/algorithmica/algorithmica33.html#RajasekaranR02,https://doi.org/10.1007/s00453-001-0115-6 +Helmut Alt,Matching Convex Shapes with Respect to the Symmetric Difference.,1998,21,Algorithmica,1,db/journals/algorithmica/algorithmica21.html#AltFRW98,https://doi.org/10.1007/PL00009210 +Alok Aggarwal,Parallel Computational Geometry.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#AggarwalCGOY88,https://doi.org/10.1007/BF01762120 +Amir M. Ben-Amram,A Generalization of a Lower Bound Technique due to Fredman and Saks.,2001,30,Algorithmica,1,db/journals/algorithmica/algorithmica30.html#Ben-AmramG01,https://doi.org/10.1007/s004530010077 +Christos Koufogiannakis,A Nearly Linear-Time PTAS for Explicit Fractional Packing and Covering Linear Programs.,2014,70,Algorithmica,4,db/journals/algorithmica/algorithmica70.html#KoufogiannakisY14,https://doi.org/10.1007/s00453-013-9771-6 +Steven S. Seiden,New Bounds for Multidimensional Packing.,2003,36,Algorithmica,3,db/journals/algorithmica/algorithmica36.html#SeidenS03,https://doi.org/10.1007/s00453-003-1016-7 +Tadao Takaoka,Foreword.,2004,38,Algorithmica,2,db/journals/algorithmica/algorithmica38.html#Takaoka03,https://doi.org/10.1007/s00453-003-1059-9 +Richard W. Kenyon,Tiling a Polygon with Parallelograms.,1993,9,Algorithmica,4,db/journals/algorithmica/algorithmica9.html#Kenyon93,https://doi.org/10.1007/BF01228510 +Frank K. H. A. Dehne,The Big Sweep: On the Power of the Wavefront Approach to Voronoi Diagrams.,1997,17,Algorithmica,1,db/journals/algorithmica/algorithmica17.html#DehneK97,https://doi.org/10.1007/BF02523236 +Christian Gießen,Optimal Mutation Rates for the (1+ and#955* ) EA on OneMax Through Asymptotically Tight Drift Analysis.,2018,80,Algorithmica,5,db/journals/algorithmica/algorithmica80.html#GiessenW18,https://doi.org/10.1007/s00453-017-0360-y +Jennie C. Hansen,Near-Optimal Bounded-Degree Spanning Trees.,2001,29,Algorithmica,1,db/journals/algorithmica/algorithmica29.html#HansenS01,https://doi.org/10.1007/BF02679617 +Attila Pór,No-Three-in-Line-in-3D.,2007,47,Algorithmica,4,db/journals/algorithmica/algorithmica47.html#PorW07,https://doi.org/10.1007/s00453-006-0158-9 +Julien Clément 0001,Dynamical Sources in Information Theory: A General Analysis of Trie Structures.,2001,29,Algorithmica,1,db/journals/algorithmica/algorithmica29.html#ClementFV01,https://doi.org/10.1007/BF02679623 +George E. Andrews,An Algorithmic Approach to Discovering and Proving q-Series Identities.,2001,29,Algorithmica,1,db/journals/algorithmica/algorithmica29.html#AndrewsK01,https://doi.org/10.1007/BF02679612 +Marshall W. Bern,Two Probabilistic Results on Rectilinear Steiner Trees.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#Bern88,https://doi.org/10.1007/BF01762114 +Charles E. Blair,The Iterative Step in the Linear Programming Algorithm of N. Karmarkar.,1986,1,Algorithmica,4,db/journals/algorithmica/algorithmica1.html#Blair86,https://doi.org/10.1007/BF01840462 +Leila De Floriani,On Sorting Triangles in a Delaunay Tessellation.,1991,6,Algorithmica,4,db/journals/algorithmica/algorithmica6.html#FlorianiFNP91,https://doi.org/10.1007/BF01759057 +Michael Jünger,New Primal and Dual Matching Heuristics.,1995,13,Algorithmica,4,db/journals/algorithmica/algorithmica13.html#JungerP95,https://doi.org/10.1007/BF01293485 +Rohit Khandekar,On the Advantage of Overlapping Clusters for Minimizing Conductance.,2014,69,Algorithmica,4,db/journals/algorithmica/algorithmica69.html#KhandekarKM14,https://doi.org/10.1007/s00453-013-9761-8 +Shiri Chechik,f-Sensitivity Distance Oracles and Routing Schemes.,2012,63,Algorithmica,4,db/journals/algorithmica/algorithmica63.html#ChechikLPR12,https://doi.org/10.1007/s00453-011-9543-0 +Uriel Feige,The Dense k-Subgraph Problem.,2001,29,Algorithmica,3,db/journals/algorithmica/algorithmica29.html#FeigePK01,https://doi.org/10.1007/s004530010050 +Leonid Khachiyan,On Enumerating Minimal Dicuts and Strongly Connected Subgraphs.,2008,50,Algorithmica,1,db/journals/algorithmica/algorithmica50.html#KhachiyanBEG08,https://doi.org/10.1007/s00453-007-9074-x +Moritz G. Maaß,Linear Bidirectional On-Line Construction of Affix Trees.,2003,37,Algorithmica,1,db/journals/algorithmica/algorithmica37.html#Maass03,https://doi.org/10.1007/s00453-003-1029-2 +Frédéric Chazal,Erratum to 'Dynamical Sources in Information Theory: Fundamental Intervals and Word Prefixes'.,2004,38,Algorithmica,4,db/journals/algorithmica/algorithmica38.html#ChazalMV04,https://doi.org/10.1007/s00453-003-1057-y +Marek Cygan,On Group Feedback Vertex Set Parameterized by the Size of the Cutset.,2016,74,Algorithmica,2,db/journals/algorithmica/algorithmica74.html#CyganPP16,https://doi.org/10.1007/s00453-014-9966-5 +Greg Aloupis,Reconfiguring Triangulations with Edge Flips and Point Moves.,2007,47,Algorithmica,4,db/journals/algorithmica/algorithmica47.html#AloupisBM07,https://doi.org/10.1007/s00453-006-0168-7 +Dimitris Fotakis,On the Competitive Ratio for Online Facility Location.,2008,50,Algorithmica,1,db/journals/algorithmica/algorithmica50.html#Fotakis08,https://doi.org/10.1007/s00453-007-9049-y +Ho-Lin Chen,Program Size and Temperature in Self-Assembly.,2015,72,Algorithmica,3,db/journals/algorithmica/algorithmica72.html#ChenDS15,https://doi.org/10.1007/s00453-014-9879-3 +Luis Barba,Space-Time Trade-offs for Stack-Based Algorithms.,2015,72,Algorithmica,4,db/journals/algorithmica/algorithmica72.html#BarbaKLSS15,https://doi.org/10.1007/s00453-014-9893-5 +Ran Bachrach,On the Competitive Theory and Practice of Online List Accessing Algorithms.,2002,32,Algorithmica,2,db/journals/algorithmica/algorithmica32.html#BachrachER02,https://doi.org/10.1007/s00453-001-0069-8 +Steven J. Phillips,On-Line Load Balancing and Network Flow.,1998,21,Algorithmica,3,db/journals/algorithmica/algorithmica21.html#PhillipsW98,https://doi.org/10.1007/PL00009214 +Mark Giesbrecht,Computing Sparse Multiples of Polynomials.,2012,64,Algorithmica,3,db/journals/algorithmica/algorithmica64.html#GiesbrechtRT12,https://doi.org/10.1007/s00453-012-9652-4 +Amihood Amir,Real Two Dimensional Scaled Matching.,2009,53,Algorithmica,3,db/journals/algorithmica/algorithmica53.html#AmirBLP09,https://doi.org/10.1007/s00453-007-9021-x +Xin Han,Online Unweighted Knapsack Problem with Removal Cost.,2014,70,Algorithmica,1,db/journals/algorithmica/algorithmica70.html#HanKM14,https://doi.org/10.1007/s00453-013-9822-z +Jop F. Sibeyn,One-by-One Cleaning for Practical Parallel List Ranking.,2002,32,Algorithmica,3,db/journals/algorithmica/algorithmica32.html#Sibeyn02,https://doi.org/10.1007/s00453-001-0077-8 +Martin Böhm,Colored Bin Packing: Online Algorithms and Lower Bounds.,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#BohmDESV18,https://doi.org/10.1007/s00453-016-0248-2 +Michel Habib,A Linear Algorithm To Decompose Inheritance Graphs Into Modules.,1995,13,Algorithmica,6,db/journals/algorithmica/algorithmica13.html#HabibHS95,https://doi.org/10.1007/BF01189070 +Sathish Govindarajan,I/O-Efficient Well-Separated Pair Decomposition and Applications.,2006,45,Algorithmica,4,db/journals/algorithmica/algorithmica45.html#GovindarajanLMZ06,https://doi.org/10.1007/s00453-005-1197-3 +Pascal Berthomé,Sorting-Based Selection Algorithms for Hypercubic Networks.,2000,26,Algorithmica,2,db/journals/algorithmica/algorithmica26.html#BerthomeFMPP00,https://doi.org/10.1007/s004539910011 +Elmar Schömer,Smallest Enclosing Cylinders.,2000,27,Algorithmica,2,db/journals/algorithmica/algorithmica27.html#SchomerSTY00,https://doi.org/10.1007/s004530010011 +Rolf H. Möhring,Complexity and Modeling Aspects of Mesh Refinement into Quadrilater.,2000,26,Algorithmica,1,db/journals/algorithmica/algorithmica26.html#MohringM00,https://doi.org/10.1007/s004539910008 +Fenghui Zhang,On the Planarization of Wireless Sensor Networks.,2011,60,Algorithmica,3,db/journals/algorithmica/algorithmica60.html#ZhangJC11,https://doi.org/10.1007/s00453-010-9476-z +Serge Gaspers,Backdoors to q-Horn.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#GaspersORSS16,https://doi.org/10.1007/s00453-014-9958-5 +Joseph Naor,Real-Time Scheduling with a Budget.,2007,47,Algorithmica,3,db/journals/algorithmica/algorithmica47.html#NaorST07,https://doi.org/10.1007/s00453-006-0191-8 +Jean-Daniel Boissonnat,Circular Separability of Polygons.,2001,30,Algorithmica,1,db/journals/algorithmica/algorithmica30.html#BoissonnatCDY01,https://doi.org/10.1007/s004530010078 +Peyman Afshani,Dynamic Connectivity for Axis-Parallel Rectangles.,2009,53,Algorithmica,4,db/journals/algorithmica/algorithmica53.html#AfshaniC09,https://doi.org/10.1007/s00453-008-9234-7 +Lukasz Kowalik,Assigning Channels Via the Meet-in-the-Middle Approach.,2016,74,Algorithmica,4,db/journals/algorithmica/algorithmica74.html#KowalikS16,https://doi.org/10.1007/s00453-015-0004-z +Saul B. Gelfand,Simulated Annealing Type Algorithms for Multivariate Optimization.,1991,6,Algorithmica,3,db/journals/algorithmica/algorithmica6.html#GelfandM91,https://doi.org/10.1007/BF01759052 +,Editor's Note: Special Issue on Combinatorial Pattern Matching.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#X17,https://doi.org/10.1007/s00453-017-0355-8 +Duc-Cuong Dang,Runtime Analysis of Non-elitist Populations: From Classical Optimisation to Partial Information.,2016,75,Algorithmica,3,db/journals/algorithmica/algorithmica75.html#DangL16,https://doi.org/10.1007/s00453-015-0103-x +Rudi Cilibrasi,The Complexity of the Single Individual SNP Haplotyping Problem.,2007,49,Algorithmica,1,db/journals/algorithmica/algorithmica49.html#CilibrasiIKT07,https://doi.org/10.1007/s00453-007-0029-z +Mohammad Ghodsi,Permutation Betting Markets: Singleton Betting with Extra Information.,2011,60,Algorithmica,4,db/journals/algorithmica/algorithmica60.html#GhodsiMMZ11,https://doi.org/10.1007/s00453-009-9378-0 +Venkatesh Raman 0001,Short Cycles Make W -hard Problems Hard: FPT Algorithms for W -hard Problems in Graphs with no Short Cycles.,2008,52,Algorithmica,2,db/journals/algorithmica/algorithmica52.html#RamanS08,https://doi.org/10.1007/s00453-007-9148-9 +Gillat Kol,Direct Sum Fails for Zero-Error Average Communication.,2016,76,Algorithmica,3,db/journals/algorithmica/algorithmica76.html#KolMSY16,https://doi.org/10.1007/s00453-016-0144-9 +Sebastian Ordyniak,A Parameterized Study of Maximum Generalized Pattern Matching Problems.,2016,75,Algorithmica,1,db/journals/algorithmica/algorithmica75.html#OrdyniakP16,https://doi.org/10.1007/s00453-015-0008-8 +Mingen Lin,Improved Approximation Algorithms for Maximum Resource Bin Packing and Lazy Bin Covering Problems.,2010,57,Algorithmica,2,db/journals/algorithmica/algorithmica57.html#LinYX10,https://doi.org/10.1007/s00453-008-9202-2 +Dorit Aharonov,A Polynomial Quantum Algorithm for Approximating the Jones Polynomial.,2009,55,Algorithmica,3,db/journals/algorithmica/algorithmica55.html#AharonovJL09,https://doi.org/10.1007/s00453-008-9168-0 +Anna Urbanska,Faster Combinatorial Algorithms for Determinant and Pfaffian.,2010,56,Algorithmica,1,db/journals/algorithmica/algorithmica56.html#Urbanska10,https://doi.org/10.1007/s00453-008-9240-9 +Vincenzo Auletta,A Linear-Time Algorithm for the Feasibility of Pebble Motion on Trees.,1999,23,Algorithmica,3,db/journals/algorithmica/algorithmica23.html#AulettaMPP99,https://doi.org/10.1007/PL00009259 +Hakan Yildiz,Computing Klee's Measure of Grounded Boxes.,2015,71,Algorithmica,2,db/journals/algorithmica/algorithmica71.html#YildizS15,https://doi.org/10.1007/s00453-013-9797-9 +Joseph S. B. Mitchell,L_1 Shortest Paths Among Polygonal Obstacles in the Plane.,1992,8,Algorithmica,1,db/journals/algorithmica/algorithmica8.html#Mitchell92,https://doi.org/10.1007/BF01758836 +David Harel,An Algorithm for Straight-Line Drawing of Planar Graphs.,1998,20,Algorithmica,2,db/journals/algorithmica/algorithmica20.html#HarelS98,https://doi.org/10.1007/PL00009189 +Ondrej Suchý,Extending the Kernel for Planar Steiner Tree to the Number of Steiner Vertices.,2017,79,Algorithmica,1,db/journals/algorithmica/algorithmica79.html#Suchy17,https://doi.org/10.1007/s00453-016-0249-1 +Sudeshna Kolay,Quick but Odd Growth of Cacti.,2017,79,Algorithmica,1,db/journals/algorithmica/algorithmica79.html#KolayLPS17,https://doi.org/10.1007/s00453-017-0317-1 +Chris Whidden,Fixed-Parameter and Approximation Algorithms for Maximum Agreement Forests of Multifurcating Trees.,2016,74,Algorithmica,3,db/journals/algorithmica/algorithmica74.html#WhiddenBZ16,https://doi.org/10.1007/s00453-015-9983-z +Shai Ben-David,On the Power of Randomization in On-Line Algorithms.,1994,11,Algorithmica,1,db/journals/algorithmica/algorithmica11.html#Ben-DavidBKTW94,https://doi.org/10.1007/BF01294260 +Richard Cole 0001,New Linear-Time Algorithms for Edge-Coloring Planar Graphs.,2008,50,Algorithmica,3,db/journals/algorithmica/algorithmica50.html#ColeK08,https://doi.org/10.1007/s00453-007-9044-3 +Noga Alon,Revenue and Reserve Prices in a Probabilistic Single Item Auction.,2017,77,Algorithmica,1,db/journals/algorithmica/algorithmica77.html#AlonFT17,https://doi.org/10.1007/s00453-015-0055-1 +Martin Aumüller 0001,Explicit and Efficient Hash Families Suffice for Cuckoo Hashing with a Stash.,2014,70,Algorithmica,3,db/journals/algorithmica/algorithmica70.html#AumullerDW14,https://doi.org/10.1007/s00453-013-9840-x +Sounaka Mishra,The Complexity of König Subgraph Problems and Above-Guarantee Vertex Cover.,2011,61,Algorithmica,4,db/journals/algorithmica/algorithmica61.html#MishraRSSS11,https://doi.org/10.1007/s00453-010-9412-2 +Alok Aggarwal,Optimal Tradeoffs for Addition on Systolic Arrays.,1991,6,Algorithmica,1,db/journals/algorithmica/algorithmica6.html#AggarwalCK91,https://doi.org/10.1007/BF01759034 +Marc J. van Kreveld,Guest Editor's Foreword.,2001,30,Algorithmica,2,db/journals/algorithmica/algorithmica30.html#Kreveld01,https://doi.org/10.1007/s00453-001-0024-8 +Marcin Bienkowski,An Optimal Lower Bound for Buffer Management in Multi-Queue Switches.,2014,68,Algorithmica,2,db/journals/algorithmica/algorithmica68.html#Bienkowski14,https://doi.org/10.1007/s00453-012-9677-8 +Colin Cooper,Random 2-SAT with Prescribed Literal Degrees.,2007,48,Algorithmica,3,db/journals/algorithmica/algorithmica48.html#CooperFS07,https://doi.org/10.1007/s00453-007-0082-7 +Claudia Bauzer Medeiros,Understanding the Implications of View Update Policies.,1986,1,Algorithmica,3,db/journals/algorithmica/algorithmica1.html#MedeirosT86,https://doi.org/10.1007/BF01840451 +Antoine Genitrini,Generalised and Quotient Models for Random And/Or Trees and Application to Satisfiability.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#GenitriniM16,https://doi.org/10.1007/s00453-016-0113-3 +Geeta Chaudhry,Slabpose Columnsort: A New Oblivious Algorithm for Out-of-Core Sorting on Distributed-Memory Clusters.,2006,45,Algorithmica,3,db/journals/algorithmica/algorithmica45.html#ChaudhryC06,https://doi.org/10.1007/s00453-006-1222-1 +Chris Calabro,On the Exact Complexity of Evaluating Quantified k -CNF.,2013,65,Algorithmica,4,db/journals/algorithmica/algorithmica65.html#CalabroIP13,https://doi.org/10.1007/s00453-012-9648-0 +Petar Popovski,A Class of Algorithms for Collision Resolution with Multiplicity Estimation.,2007,49,Algorithmica,4,db/journals/algorithmica/algorithmica49.html#PopovskiFP07,https://doi.org/10.1007/s00453-007-9082-x +Mahesh Kallahalla,Optimal Read-Once Parallel Disk Scheduling.,2005,43,Algorithmica,4,db/journals/algorithmica/algorithmica43.html#KallahallaV05,https://doi.org/10.1007/s00453-004-1129-7 +Qi Ge,The Complexity of Counting Eulerian Tours in 4-regular Graphs.,2012,63,Algorithmica,3,db/journals/algorithmica/algorithmica63.html#GeS12,https://doi.org/10.1007/s00453-010-9463-4 +Michael Lampis,Algorithmic Meta-theorems for Restrictions of Treewidth.,2012,64,Algorithmica,1,db/journals/algorithmica/algorithmica64.html#Lampis12,https://doi.org/10.1007/s00453-011-9554-x +Danny Z. Chen,Outlier Respecting Points Approximation.,2014,69,Algorithmica,2,db/journals/algorithmica/algorithmica69.html#ChenW14a,https://doi.org/10.1007/s00453-012-9738-z +Teofilo F. Gonzalez,Simple Algorithms for the On-Line Multidimensional Dictionary and Related Problems.,2000,28,Algorithmica,2,db/journals/algorithmica/algorithmica28.html#Gonzalez00,https://doi.org/10.1007/s004530010039 +Amer E. Mouawad,On the Parameterized Complexity of Reconfiguration Problems.,2017,78,Algorithmica,1,db/journals/algorithmica/algorithmica78.html#MouawadN0SS17,https://doi.org/10.1007/s00453-016-0159-2 +Chih-Hung Liu,The k-Nearest-Neighbor Voronoi Diagram Revisited.,2015,71,Algorithmica,2,db/journals/algorithmica/algorithmica71.html#LiuPL15,https://doi.org/10.1007/s00453-013-9809-9 +Klaus Jansen,New Approximability Results for Two-Dimensional Bin Packing.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#JansenP16,https://doi.org/10.1007/s00453-014-9943-z +Henrik Blunck,In-Place Algorithms for Computing (Layers of) Maxima.,2010,57,Algorithmica,1,db/journals/algorithmica/algorithmica57.html#BlunckV10,https://doi.org/10.1007/s00453-008-9193-z +Haim Kaplan,Linear Data Structures for Fast Ray-Shooting amidst Convex Polyhedra.,2009,55,Algorithmica,2,db/journals/algorithmica/algorithmica55.html#KaplanRS09,https://doi.org/10.1007/s00453-008-9220-0 +Rémy Belmonte,Detecting Fixed Patterns in Chordal Graphs in Polynomial Time.,2014,69,Algorithmica,3,db/journals/algorithmica/algorithmica69.html#BelmonteGHHKP14,https://doi.org/10.1007/s00453-013-9748-5 +Ragesh Jaiswal,A Simple D 2-Sampling Based PTAS for k-Means and Other Clustering Problems.,2014,70,Algorithmica,1,db/journals/algorithmica/algorithmica70.html#Jaiswal0S14,https://doi.org/10.1007/s00453-013-9833-9 +Eduard Eiben,Solving Problems on Graphs of High Rank-Width.,2018,80,Algorithmica,2,db/journals/algorithmica/algorithmica80.html#EibenGS18,https://doi.org/10.1007/s00453-017-0290-8 +Anne Auger,Theory of Randomized Search Heuristics.,2012,64,Algorithmica,4,db/journals/algorithmica/algorithmica64.html#AugerW12,https://doi.org/10.1007/s00453-012-9686-7 +Jiawei Qian,Online Constrained Forest and Prize-Collecting Network Design.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#QianUW18,https://doi.org/10.1007/s00453-017-0391-4 +Oded Lachish,Testing Periodicity.,2011,60,Algorithmica,2,db/journals/algorithmica/algorithmica60.html#LachishN11,https://doi.org/10.1007/s00453-009-9351-y +Ran Raz,Quantum Information and the PCP Theorem.,2009,55,Algorithmica,3,db/journals/algorithmica/algorithmica55.html#Raz09,https://doi.org/10.1007/s00453-007-9033-6 +Sergio Verdú,Computational Complexity of Optimum Multiuser Detection.,1989,4,Algorithmica,3,db/journals/algorithmica/algorithmica4.html#Verdu89,https://doi.org/10.1007/BF01553893 +Marek Karpinski,Polynomial Time Approximation Schemes for Some Dense Instances of NP-Hard Optimization Problems.,2001,30,Algorithmica,3,db/journals/algorithmica/algorithmica30.html#Karpinski01,https://doi.org/10.1007/s00453-001-0012-z +Sally A. Goldman,Can PAC Learning Algorithms Tolerate Random Attribute Noise?,1995,14,Algorithmica,1,db/journals/algorithmica/algorithmica14.html#GoldmanS95,https://doi.org/10.1007/BF01300374 +Iris Reinbacher,Delineating Boundaries for Imprecise Regions.,2008,50,Algorithmica,3,db/journals/algorithmica/algorithmica50.html#ReinbacherBKMSW08,https://doi.org/10.1007/s00453-007-9042-5 +Young C. Wee,Rectilinear Steiner Tree Heuristics and Minimum Spanning Tree Algorithms Using Geographic Nearest Neighbors.,1994,12,Algorithmica,6,db/journals/algorithmica/algorithmica12.html#WeeCR94,https://doi.org/10.1007/BF01188713 +Tomás Ebenlendr,Graph Balancing: A Special Case of Scheduling Unrelated Parallel Machines.,2014,68,Algorithmica,1,db/journals/algorithmica/algorithmica68.html#EbenlendrKS14,https://doi.org/10.1007/s00453-012-9668-9 +John H. Reif,Optimal Randomized Parallel Algorithms for Computational Geometry.,1992,7,Algorithmica,1,db/journals/algorithmica/algorithmica7.html#ReifS92,https://doi.org/10.1007/BF01758753 +Gerth Stølting Brodal,On Space Efficient Two Dimensional Range Minimum Data Structures.,2012,63,Algorithmica,4,db/journals/algorithmica/algorithmica63.html#BrodalDR12,https://doi.org/10.1007/s00453-011-9499-0 +Helmut Alt,Comparison of Distance Measures for Planar Curves.,2004,38,Algorithmica,1,db/journals/algorithmica/algorithmica38.html#AltKW03,https://doi.org/10.1007/s00453-003-1042-5 +Olgica Milenkovic,Average Case Analysis of Gosper's Algorithm for a Class of Urn Model Inputs.,2005,43,Algorithmica,3,db/journals/algorithmica/algorithmica43.html#MilenkovicC05,https://doi.org/10.1007/s00453-005-1173-y +Bhaskar DasGupta,Stochastic Budget Optimization in Internet Advertising.,2013,65,Algorithmica,3,db/journals/algorithmica/algorithmica65.html#DasGuptaM13,https://doi.org/10.1007/s00453-012-9614-x +Anil Maheshwari,A Dynamic Dictionary for Priced Information with Application.,2006,44,Algorithmica,2,db/journals/algorithmica/algorithmica44.html#MaheshwariS06,https://doi.org/10.1007/s00453-005-1204-8 +Rex A. Dwyer,A Faster Divide-and-Conquer Algorithm for Constructing Delaunay Triangulations.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#Dwyer87,https://doi.org/10.1007/BF01840356 +Carola Doerr,The (1+1) Elitist Black-Box Complexity of LeadingOnes.,2018,80,Algorithmica,5,db/journals/algorithmica/algorithmica80.html#DoerrL18,https://doi.org/10.1007/s00453-017-0304-6 +Tomasz Kociumaka,String Powers in Trees.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#KociumakaRRW17,https://doi.org/10.1007/s00453-016-0271-3 +Hari Krovi,Quantum Walks Can Find a Marked Element on Any Graph.,2016,74,Algorithmica,2,db/journals/algorithmica/algorithmica74.html#KroviMOR16,https://doi.org/10.1007/s00453-015-9979-8 +Aleksei V. Fishkin,Grouping Techniques for Scheduling Problems: Simpler and Faster.,2008,51,Algorithmica,2,db/journals/algorithmica/algorithmica51.html#FishkinJM08,https://doi.org/10.1007/s00453-007-9086-6 +Hans L. Bodlaender,Editorial.,2015,73,Algorithmica,4,db/journals/algorithmica/algorithmica73.html#BodlaenderHI15,https://doi.org/10.1007/s00453-015-0074-y +Santosh N. Kabadi,Equivalence of epsilon-Approximate Separation and Optimization in Fixed Dimensions.,2001,29,Algorithmica,4,db/journals/algorithmica/algorithmica29.html#KabadiA01,https://doi.org/10.1007/s004530010073 +Alexander Grigoriev,Algorithms for Graphs Embeddable with Few Crossings per Edge.,2007,49,Algorithmica,1,db/journals/algorithmica/algorithmica49.html#GrigorievB07,https://doi.org/10.1007/s00453-007-0010-x +Marios Mavronicolas,Cost Sharing Mechanisms for Fair Pricing of Resource Usage.,2008,52,Algorithmica,1,db/journals/algorithmica/algorithmica52.html#MavronicolasPS08,https://doi.org/10.1007/s00453-007-9108-4 +Alfredo Viola,The Analysis of Linear Probing Hashing with Buckets.,1998,21,Algorithmica,1,db/journals/algorithmica/algorithmica21.html#ViolaP98,https://doi.org/10.1007/PL00009208 +Xiaodong Hu,Recent Advances in Computation and Combinatorial Optimization.,2010,56,Algorithmica,3,db/journals/algorithmica/algorithmica56.html#HuW10,https://doi.org/10.1007/s00453-009-9374-4 +Duc-Cuong Dang,Populations Can Be Essential in Tracking Dynamic Optima.,2017,78,Algorithmica,2,db/journals/algorithmica/algorithmica78.html#DangJL17,https://doi.org/10.1007/s00453-016-0187-y +Emmanouil Pountourakis,A Complete Characterization of Group-Strategyproof Mechanisms of Cost-Sharing.,2012,63,Algorithmica,4,db/journals/algorithmica/algorithmica63.html#PountourakisV12,https://doi.org/10.1007/s00453-011-9602-6 +Bhubaneswar Mishra,On the Existence and Synthesis of Multifinger Positive Grips.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#MishraSS87,https://doi.org/10.1007/BF01840373 +Gary L. Miller,Tree-Based Parallel Algorithm Design.,1997,19,Algorithmica,4,db/journals/algorithmica/algorithmica19.html#MillerT97,https://doi.org/10.1007/PL00009179 +Radu Mihaescu,Fast Phylogeny Reconstruction Through Learning of Ancestral Sequences.,2013,66,Algorithmica,2,db/journals/algorithmica/algorithmica66.html#MihaescuHR13,https://doi.org/10.1007/s00453-012-9644-4 +Nikhil Bansal,Competitive Algorithms for Due Date Scheduling.,2011,59,Algorithmica,4,db/journals/algorithmica/algorithmica59.html#BansalCP11,https://doi.org/10.1007/s00453-009-9321-4 +Richard Cole 0001,The Accelerated Centroid Decomposition Technique for Optimal Parallel Tree Evaluation in Logarithmic Time.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#ColeV88,https://doi.org/10.1007/BF01762121 +Dimitris Papadias,Constraint-Based Processing of Multiway Spatial Joins.,2001,30,Algorithmica,2,db/journals/algorithmica/algorithmica30.html#PapadiasMT01,https://doi.org/10.1007/s00453-001-0005-y +Damon Kaller,Definability Equals Recognizability of Partial 3-Trees and k-Connected Partial k-Trees.,2000,27,Algorithmica,3,db/journals/algorithmica/algorithmica27.html#Kaller00,https://doi.org/10.1007/s004530010024 +Ashwin Arulselvan,Matchings with Lower Quotas: Algorithms and Complexity.,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#ArulselvanCGMM18,https://doi.org/10.1007/s00453-016-0252-6 +Lyle A. McGeoch,A Strongly Competitive Randomized Paging Algorithm.,1991,6,Algorithmica,6,db/journals/algorithmica/algorithmica6.html#McGeochS91,https://doi.org/10.1007/BF01759073 +Erin W. Chambers,Connectivity Graphs of Uncertainty Regions.,2017,78,Algorithmica,3,db/journals/algorithmica/algorithmica78.html#ChambersEFLSVSS17,https://doi.org/10.1007/s00453-016-0191-2 +Maarten Lipmann,On-Line Dial-a-Ride Problems Under a Restricted Information Model.,2004,40,Algorithmica,4,db/journals/algorithmica/algorithmica40.html#LipmannLPSS04,https://doi.org/10.1007/s00453-004-1116-z +David Furcy,Optimal Self-Assembly of Finite Shapes at Temperature 1 in 3D.,2018,80,Algorithmica,6,db/journals/algorithmica/algorithmica80.html#FurcyS18,https://doi.org/10.1007/s00453-016-0260-6 +Sándor P. Fekete,Online Square Packing with Gravity.,2014,68,Algorithmica,4,db/journals/algorithmica/algorithmica68.html#FeketeKS14,https://doi.org/10.1007/s00453-012-9713-8 +Frank Thomson Leighton,Efficient Algorithms for Dynamic Allocation of Distributed Memo.,1999,24,Algorithmica,2,db/journals/algorithmica/algorithmica24.html#LeightonS99,https://doi.org/10.1007/PL00009275 +Andreas Brandstädt,Tree Spanners for Bipartite Graphs and Probe Interval Graphs.,2007,47,Algorithmica,1,db/journals/algorithmica/algorithmica47.html#BrandstadtDLLU07,https://doi.org/10.1007/s00453-006-1209-y +Jean-Daniel Boissonnat,The Compressed Annotation Matrix: An Efficient Data Structure for Computing Persistent Cohomology.,2015,73,Algorithmica,3,db/journals/algorithmica/algorithmica73.html#BoissonnatDM15,https://doi.org/10.1007/s00453-015-9999-4 +Gruia Calinescu,Register Loading via Linear Programming.,2015,72,Algorithmica,4,db/journals/algorithmica/algorithmica72.html#CalinescuL15,https://doi.org/10.1007/s00453-014-9888-2 +Refael Hassin,Approximation Algorithms for Quickest Spanning Tree Problems.,2005,41,Algorithmica,1,db/journals/algorithmica/algorithmica41.html#HassinL04,https://doi.org/10.1007/s00453-004-1118-x +Bogdan S. Chlebus,O(log log n)-Time Integer Geometry on the CRCW PRAM.,1995,14,Algorithmica,1,db/journals/algorithmica/algorithmica14.html#ChlebusDK95,https://doi.org/10.1007/BF01300373 +Victor Chepoi,Mixed Covering of Trees and the Augmentation Problem with Odd Diameter Constraints.,2006,45,Algorithmica,2,db/journals/algorithmica/algorithmica45.html#ChepoiENV06,https://doi.org/10.1007/s00453-005-1183-9 +Pei-Chi Huang,Smallest Bipartite Bridge-Connectivity Augmentation.,2009,54,Algorithmica,3,db/journals/algorithmica/algorithmica54.html#HuangWLSH09,https://doi.org/10.1007/s00453-007-9127-1 +Jinhui Xu 0001,Computing the Map of Geometric Minimal Cuts.,2014,68,Algorithmica,4,db/journals/algorithmica/algorithmica68.html#Xu0P14,https://doi.org/10.1007/s00453-012-9704-9 +Patrizio Angelini,Strip Planarity Testing for Embedded Planar Graphs.,2017,77,Algorithmica,4,db/journals/algorithmica/algorithmica77.html#AngeliniLBF17,https://doi.org/10.1007/s00453-016-0128-9 +David Peleg,Randomized Approximation of Bounded Multicovering Problems.,1997,18,Algorithmica,1,db/journals/algorithmica/algorithmica18.html#PelegSW97,https://doi.org/10.1007/BF02523687 +Joachim Kneis,A New Algorithm for Finding Trees with Many Leaves.,2011,61,Algorithmica,4,db/journals/algorithmica/algorithmica61.html#KneisLR11,https://doi.org/10.1007/s00453-010-9454-5 +Chee-Keng Yap,Editor's Foreword: Special Issue on Computational Geometry.,1989,4,Algorithmica,1,db/journals/algorithmica/algorithmica4.html#Yap89,https://doi.org/10.1007/BF01553876 +David Pisinger,Dynamic Programming on the Word RAM.,2003,35,Algorithmica,2,db/journals/algorithmica/algorithmica35.html#Pisinger03,https://doi.org/10.1007/s00453-002-0989-y +Roberto Battiti,Foreword.,2002,33,Algorithmica,1,db/journals/algorithmica/algorithmica33.html#BattitiB02,https://doi.org/10.1007/PL00009289 +Alberto Policriti,LZ77 Computation Based on the Run-Length Encoded BWT.,2018,80,Algorithmica,7,db/journals/algorithmica/algorithmica80.html#PolicritiP18,https://doi.org/10.1007/s00453-017-0327-z +Thomas P. Hayes,The Quantum Black-Box Complexity of Majority.,2002,34,Algorithmica,4,db/journals/algorithmica/algorithmica34.html#HayesKM02,https://doi.org/10.1007/s00453-002-0981-6 +Kazuyuki Amano,The Monotone Circuit Complexity of Quadratic Boolean Functions.,2006,46,Algorithmica,1,db/journals/algorithmica/algorithmica46.html#AmanoM06,https://doi.org/10.1007/s00453-006-0073-0 +Olivier Beaumont,Partitioning a Square into Rectangles: NP-Completeness and Approximation Algorithms.,2002,34,Algorithmica,3,db/journals/algorithmica/algorithmica34.html#BeaumontBRR02,https://doi.org/10.1007/s00453-002-0962-9 +Hai Yu,Practical Methods for Shape Fitting and Kinetic Data Structures using Coresets.,2008,52,Algorithmica,3,db/journals/algorithmica/algorithmica52.html#YuAPV08,https://doi.org/10.1007/s00453-007-9067-9 +Tobias Friedrich 0001,Diameter and Broadcast Time of Random Geometric Graphs in Arbitrary Dimensions.,2013,67,Algorithmica,1,db/journals/algorithmica/algorithmica67.html#FriedrichSS13,https://doi.org/10.1007/s00453-012-9710-y +Lars Arge,RAM-Efficient External Memory Sorting.,2015,73,Algorithmica,4,db/journals/algorithmica/algorithmica73.html#ArgeT15,https://doi.org/10.1007/s00453-015-0032-8 +Ravindra K. Ahuja,A Cut-Based Algorithm for the Nonlinear Dual of the Minimum Cost Network Flow Problem.,2004,39,Algorithmica,3,db/journals/algorithmica/algorithmica39.html#AhujaHO04,https://doi.org/10.1007/s00453-004-1085-2 +J. C. Cogolludo,Permutation Routing on Reconfigurable Meshes.,2001,31,Algorithmica,1,db/journals/algorithmica/algorithmica31.html#CogolludoR01,https://doi.org/10.1007/s00453-001-0037-3 +Emile Ziedan,The Induced Separation Dimension of a Graph.,2018,80,Algorithmica,10,db/journals/algorithmica/algorithmica80.html#ZiedanRMGD18,https://doi.org/10.1007/s00453-017-0353-x +Giorgio Ausiello,Algorithms for the On-Line Travelling Salesman.,2001,29,Algorithmica,4,db/journals/algorithmica/algorithmica29.html#AusielloFLST01,https://doi.org/10.1007/s004530010071 +Greg N. Frederickson,Searching Among Intervals and Compact Routing Tables.,1996,15,Algorithmica,5,db/journals/algorithmica/algorithmica15.html#Frederickson96,https://doi.org/10.1007/BF01955044 +Marek Chrobak,Incremental Medians via Online Bidding.,2008,50,Algorithmica,4,db/journals/algorithmica/algorithmica50.html#ChrobakKNY08,https://doi.org/10.1007/s00453-007-9005-x +Leah Epstein,Guest Editorial: Selected Papers of European Symposium of Algorithms.,2014,70,Algorithmica,3,db/journals/algorithmica/algorithmica70.html#EpsteinF14,https://doi.org/10.1007/s00453-014-9916-2 +Michael J. Todd,On Combined Phase 1-Phase 2 Projective Methods for Linear Programming.,1993,9,Algorithmica,1,db/journals/algorithmica/algorithmica9.html#ToddW93,https://doi.org/10.1007/BF01185339 +Celina Imielinska,A General Class of Heuristics for Minimum Weight Perfect Matching and Fast Special Cases with Doubly and Triply Logarithmic Errors.,1997,18,Algorithmica,4,db/journals/algorithmica/algorithmica18.html#ImielinskaK97,https://doi.org/10.1007/PL00009172 +Gabriele Blankenagel,Internal and External Algorithms for the Points-in-Regions Problem-the INSIDE Join of Geo-Relational Algebra.,1990,5,Algorithmica,2,db/journals/algorithmica/algorithmica5.html#BlankenagelG90,https://doi.org/10.1007/BF01840388 +Kevin Buchin,Angle-Restricted Steiner Arborescences for Flow Map Layout.,2015,72,Algorithmica,2,db/journals/algorithmica/algorithmica72.html#BuchinSV15,https://doi.org/10.1007/s00453-013-9867-z +Ferdinando Cicalese,"Guest Editorial for ""Group Testing: models and applications"".",2013,67,Algorithmica,3,db/journals/algorithmica/algorithmica67.html#CicaleseP13,https://doi.org/10.1007/s00453-013-9812-1 +Giovanni Manzini,Engineering a Lightweight Suffix Array Construction Algorithm.,2004,40,Algorithmica,1,db/journals/algorithmica/algorithmica40.html#ManziniF04,https://doi.org/10.1007/s00453-004-1094-1 +Naoyuki Kamiyama,A Note on Submodular Function Minimization with Covering Type Linear Constraints.,2018,80,Algorithmica,10,db/journals/algorithmica/algorithmica80.html#Kamiyama18,https://doi.org/10.1007/s00453-017-0363-8 +Paz Carmi,Bounded-Hop Communication Networks.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#CarmiCT18,https://doi.org/10.1007/s00453-017-0370-9 +Noga Alon,Solving MAX-r-SAT Above a Tight Lower Bound.,2011,61,Algorithmica,3,db/journals/algorithmica/algorithmica61.html#AlonGKSY11,https://doi.org/10.1007/s00453-010-9428-7 +Thomas Erlebach,Routing Flow Through a Strongly Connected Graph.,2002,32,Algorithmica,3,db/journals/algorithmica/algorithmica32.html#ErlebachH02,https://doi.org/10.1007/s00453-001-0082-y +Shaunak Pawagi,Optimal Parallel Algorithms for Multiple Updates of Minimum Spanning Trees.,1993,9,Algorithmica,4,db/journals/algorithmica/algorithmica9.html#PawagiK93,https://doi.org/10.1007/BF01228509 +Hervé Fournier,A Tight Lower Bound for Computing the Diameter of a 3D Convex Polytope.,2007,49,Algorithmica,3,db/journals/algorithmica/algorithmica49.html#FournierV07,https://doi.org/10.1007/s00453-007-9010-0 +Klaus Jansen,Linear-Time Approximation Schemes for Scheduling Malleable Parallel Tasks.,2002,32,Algorithmica,3,db/journals/algorithmica/algorithmica32.html#JansenP02,https://doi.org/10.1007/s00453-001-0085-8 +Jaikumar Radhakrishnan,The Quantum Complexity of Set Membership.,2002,34,Algorithmica,4,db/journals/algorithmica/algorithmica34.html#RadhakrishnanSV02,https://doi.org/10.1007/s00453-002-0979-0 +Mireille Régnier,On Pattern Frequency Occurrences in a Markovian Sequence.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#RegnierS98,https://doi.org/10.1007/PL00009244 +Yixin Cao 0001,On Feedback Vertex Set: New Measure and New Structures.,2015,73,Algorithmica,1,db/journals/algorithmica/algorithmica73.html#CaoC015,https://doi.org/10.1007/s00453-014-9904-6 +Yossi Azar,Maximizing Throughput in Multi-Queue Switches.,2006,45,Algorithmica,1,db/journals/algorithmica/algorithmica45.html#AzarL06,https://doi.org/10.1007/s00453-005-1190-x +Andreas Brandstädt,Maximum Induced Matchings for Chordal Graphs in Linear Time.,2008,52,Algorithmica,4,db/journals/algorithmica/algorithmica52.html#BrandstadtH08,https://doi.org/10.1007/s00453-007-9045-2 +K. S. Easwarakumar,Optimal Parallel Algorithm for Finding st-Ambitus of a Planar Biconnected Graph.,1996,15,Algorithmica,3,db/journals/algorithmica/algorithmica15.html#EaswarakumarKRS96,https://doi.org/10.1007/BF01975868 +Wing-Kai Hon,Dictionary Matching with a Bounded Gap in Pattern or in Text.,2018,80,Algorithmica,2,db/journals/algorithmica/algorithmica80.html#HonLSTTY18,https://doi.org/10.1007/s00453-017-0288-2 +Samir Khuller,Broadcasting in Heterogeneous Networks.,2007,48,Algorithmica,1,db/journals/algorithmica/algorithmica48.html#KhullerK07,https://doi.org/10.1007/s00453-006-1227-9 +Jochen Könemann,A Unified Approach to Approximating Partial Covering Problems.,2011,59,Algorithmica,4,db/journals/algorithmica/algorithmica59.html#KonemannPS11,https://doi.org/10.1007/s00453-009-9317-0 +Ivan Rapaport,On Dissemination Thresholds in Regular and Irregular Graph Classes.,2011,59,Algorithmica,1,db/journals/algorithmica/algorithmica59.html#RapaportSTV11,https://doi.org/10.1007/s00453-009-9309-0 +Michel Habib,Computing H-Joins with Application to 2-Modular Decomposition.,2014,70,Algorithmica,2,db/journals/algorithmica/algorithmica70.html#HabibMM14,https://doi.org/10.1007/s00453-013-9820-1 +Martin Zachariasen,Concatenation-Based Greedy Heuristics for the Euclidean Steiner Tree Problem.,1999,25,Algorithmica,4,db/journals/algorithmica/algorithmica25.html#ZachariasenW99,https://doi.org/10.1007/PL00009287 +Aline Medeiros Saettler,Trading Off Worst and Expected Cost in Decision Tree Problems.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#SaettlerLC17,https://doi.org/10.1007/s00453-016-0211-2 +Min Chih Lin,Exact Algorithms for Minimum Weighted Dominating Induced Matching.,2017,77,Algorithmica,3,db/journals/algorithmica/algorithmica77.html#LinMS17,https://doi.org/10.1007/s00453-015-0095-6 +Guoliang Xue,A Polynomial Time Approximation Scheme for Minimum Cost Delay-Constrained Multicast Tree under a Steiner Topology.,2005,41,Algorithmica,1,db/journals/algorithmica/algorithmica41.html#XueX04,https://doi.org/10.1007/s00453-004-1119-9 +Jesper Jansson,Constructing the R* Consensus Tree of Two Trees in Subcubic Time.,2013,66,Algorithmica,2,db/journals/algorithmica/algorithmica66.html#JanssonS13,https://doi.org/10.1007/s00453-012-9639-1 +Marek Chrobak,LRU Is Better than FIFO.,1999,23,Algorithmica,2,db/journals/algorithmica/algorithmica23.html#ChrobakN99,https://doi.org/10.1007/PL00009255 +Moshe Hershcovitch,I/O Efficient Dynamic Data Structures for Longest Prefix Queries.,2013,65,Algorithmica,2,db/journals/algorithmica/algorithmica65.html#HershcovitchK13,https://doi.org/10.1007/s00453-011-9594-2 +Stephen Desalvo,Exact Sampling Algorithms for Latin Squares and Sudoku Matrices via Probabilistic Divide-and-Conquer.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#Desalvo17,https://doi.org/10.1007/s00453-016-0223-y +Bala Kalyanasundaram,Caching for Web Searching.,2002,33,Algorithmica,3,db/journals/algorithmica/algorithmica33.html#KalyanasundaramNPW02,https://doi.org/10.1007/s00453-001-0123-6 +Tak Wah Lam,Online Speed Scaling Based on Active Job Count to Minimize Flow Plus Energy.,2013,65,Algorithmica,3,db/journals/algorithmica/algorithmica65.html#LamLTW13,https://doi.org/10.1007/s00453-012-9613-y +Andrzej Lingas,A Fast Output-Sensitive Algorithm for Boolean Matrix Multiplication.,2011,61,Algorithmica,1,db/journals/algorithmica/algorithmica61.html#Lingas11,https://doi.org/10.1007/s00453-010-9441-x +Peter Eades,The Realization Problem for Euclidean Minimum Spanning Trees in NP-Hard.,1996,16,Algorithmica,1,db/journals/algorithmica/algorithmica16.html#EadesW96,https://doi.org/10.1007/BF02086608 +M. Orlowski,A New Algorithm for the Largest Empty Rectangle Problem.,1990,5,Algorithmica,1,db/journals/algorithmica/algorithmica5.html#Orlowski90,https://doi.org/10.1007/BF01840377 +Gábor Ivanyos,Polynomial Interpolation and Identity Testing from High Powers Over Finite Fields.,2018,80,Algorithmica,2,db/journals/algorithmica/algorithmica80.html#IvanyosKSSS18,https://doi.org/10.1007/s00453-016-0273-1 +Sergey Bereg,A PTAS for Cutting Out Polygons with Lines.,2009,53,Algorithmica,2,db/journals/algorithmica/algorithmica53.html#BeregDJ09,https://doi.org/10.1007/s00453-008-9182-2 +Marek Cygan,Scheduling Partially Ordered Jobs Faster than 2 n.,2014,68,Algorithmica,3,db/journals/algorithmica/algorithmica68.html#CyganPPW14,https://doi.org/10.1007/s00453-012-9694-7 +,Editor's Note: Special Issue Dedicated to the 60th Birthday of Gregory Gutin.,2018,80,Algorithmica,9,db/journals/algorithmica/algorithmica80.html#X18,https://doi.org/10.1007/s00453-018-0437-2 +Paolo D'Alberto,R-Kleene: A High-Performance Divide-and-Conquer Algorithm for the All-Pair Shortest Path for Densely Connected Networks.,2007,47,Algorithmica,2,db/journals/algorithmica/algorithmica47.html#DAlbertoN07,https://doi.org/10.1007/s00453-006-1224-z +Stacey Jeffery,Optimal Parallel Quantum Query Algorithms.,2017,79,Algorithmica,2,db/journals/algorithmica/algorithmica79.html#JefferyMW17,https://doi.org/10.1007/s00453-016-0206-z +Jaroslaw Blasiok,Chain Minors are FPT.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#BlasiokK17,https://doi.org/10.1007/s00453-016-0220-1 +Daniele Frigioni,Semidynamic Algorithms for Maintaining Single-Source Shortest Path Trees.,1998,22,Algorithmica,3,db/journals/algorithmica/algorithmica22.html#FrigioniMN98,https://doi.org/10.1007/PL00009224 +Christian A. Duncan,Optimal Polygonal Representation of Planar Graphs.,2012,63,Algorithmica,3,db/journals/algorithmica/algorithmica63.html#DuncanGHKK12,https://doi.org/10.1007/s00453-011-9525-2 +Jørgen Bang-Jensen,Algorithms and Kernels for Feedback Set Problems in Generalizations of Tournaments.,2016,76,Algorithmica,2,db/journals/algorithmica/algorithmica76.html#Bang-JensenMS16,https://doi.org/10.1007/s00453-015-0038-2 +Sándor P. Fekete,Maximum Dispersion and Geometric Maximum Weight Cliques.,2004,38,Algorithmica,3,db/journals/algorithmica/algorithmica38.html#FeketeM03,https://doi.org/10.1007/s00453-003-1074-x +Maxim A. Babenko,Improved Algorithms for Even Factors and Square-Free Simple b-Matchings.,2012,64,Algorithmica,3,db/journals/algorithmica/algorithmica64.html#Babenko12,https://doi.org/10.1007/s00453-012-9642-6 +Mordecai J. Golin,A Provably Fast Linear-Expected-Time Maxima-Finding Algorithm.,1994,11,Algorithmica,6,db/journals/algorithmica/algorithmica11.html#Golin94,https://doi.org/10.1007/BF01189991 +Chien-Chung Huang,Circular Stable Matching and 3-way Kidney Transplant.,2010,58,Algorithmica,1,db/journals/algorithmica/algorithmica58.html#Huang10,https://doi.org/10.1007/s00453-009-9356-6 +René Beier,An Experimental Study of Random Knapsack Problems.,2006,45,Algorithmica,1,db/journals/algorithmica/algorithmica45.html#BeierV06,https://doi.org/10.1007/s00453-005-1193-7 +Robert F. Cohen,Three-Dimensional Graph Drawing.,1997,17,Algorithmica,2,db/journals/algorithmica/algorithmica17.html#CohenELR97,https://doi.org/10.1007/BF02522826 +Marilyn G. Andrews,Parallel Algorithms for Maximum Matching in Complements of Interval Graphs and Related Problems.,2000,26,Algorithmica,2,db/journals/algorithmica/algorithmica26.html#AndrewsACL00,https://doi.org/10.1007/s004539910013 +Hervé Fournier,Fitting a Step Function to a Point Set.,2011,60,Algorithmica,1,db/journals/algorithmica/algorithmica60.html#FournierV11,https://doi.org/10.1007/s00453-009-9342-z +Robert L. (Scot) Drysdale III,Discrete Simulation of NC Machining.,1989,4,Algorithmica,1,db/journals/algorithmica/algorithmica4.html#DrysdaleJSH89,https://doi.org/10.1007/BF01553878 +Benjamin Grimmer,Dual-Based Approximation Algorithms for Cut-Based Network Connectivity Problems.,2018,80,Algorithmica,10,db/journals/algorithmica/algorithmica80.html#Grimmer18,https://doi.org/10.1007/s00453-017-0356-7 +Bert Besser,Erratum to: Greedy Matching: Guarantees and Limitations.,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#BesserP18,https://doi.org/10.1007/s00453-017-0281-9 +Minming Li,Tighter Approximation Bounds for Minimum CDS in Unit Disk Graphs.,2011,61,Algorithmica,4,db/journals/algorithmica/algorithmica61.html#LiWY11,https://doi.org/10.1007/s00453-011-9512-7 +Enrico Nardelli,Nearly Linear Time Minimum Spanning Tree Maintenance for Transient Node Failures.,2004,40,Algorithmica,2,db/journals/algorithmica/algorithmica40.html#NardelliPW04,https://doi.org/10.1007/s00453-004-1099-9 +Sander P. A. Alewijnse,Model-Based Segmentation and Classification of Trajectories.,2018,80,Algorithmica,8,db/journals/algorithmica/algorithmica80.html#AlewijnseBBSW18,https://doi.org/10.1007/s00453-017-0329-x +Per Kristian Lehre,Black-Box Search by Unbiased Variation.,2012,64,Algorithmica,4,db/journals/algorithmica/algorithmica64.html#LehreW12,https://doi.org/10.1007/s00453-012-9616-8 +Desh Ranjan,The Temporal Precedence Problem.,2000,28,Algorithmica,3,db/journals/algorithmica/algorithmica28.html#RanjanPGL00,https://doi.org/10.1007/s004530010036 +Amarda Shehu,Sampling Conformation Space to Model Equilibrium Fluctuations in Proteins.,2007,48,Algorithmica,4,db/journals/algorithmica/algorithmica48.html#ShehuCK07,https://doi.org/10.1007/s00453-007-0178-0 +Benjamin E. Birnbaum,An Improved Analysis for a Greedy Remote-Clique Algorithm Using Factor-Revealing LPs.,2009,55,Algorithmica,1,db/journals/algorithmica/algorithmica55.html#BirnbaumG09,https://doi.org/10.1007/s00453-007-9142-2 +Gabriele Blankenagel,External Segment Trees.,1994,12,Algorithmica,6,db/journals/algorithmica/algorithmica12.html#BlankenagelG94,https://doi.org/10.1007/BF01188717 +Wun-Tat Chan,Escaping a Grid by Edge-Disjoint Paths.,2003,36,Algorithmica,4,db/journals/algorithmica/algorithmica36.html#ChanCT03,https://doi.org/10.1007/s00453-003-1023-8 +Harald Rosenberger,Order-k Voronoi Diagrams of Sites with Additive Weights in the Plane.,1991,6,Algorithmica,4,db/journals/algorithmica/algorithmica6.html#Rosenberger91,https://doi.org/10.1007/BF01759056 +Klaus Jansen,Estimating the Makespan of the Two-Valued Restricted Assignment Problem.,2018,80,Algorithmica,4,db/journals/algorithmica/algorithmica80.html#JansenLM18,https://doi.org/10.1007/s00453-017-0314-4 +Samir Khuller,Flow in Planar Graphs with Vertex Capacities.,1994,11,Algorithmica,3,db/journals/algorithmica/algorithmica11.html#KhullerN94,https://doi.org/10.1007/BF01240733 +L. N. Coyle,Analysis of the SSAP Method for the Numerical Valuation of High-Dimensional Multivariate American Securities.,1999,25,Algorithmica,1,db/journals/algorithmica/algorithmica25.html#CoyleY99,https://doi.org/10.1007/PL00009284 +Costas Busch,Direct Routing: Algorithms and Complexity.,2006,45,Algorithmica,1,db/journals/algorithmica/algorithmica45.html#BuschMMS06,https://doi.org/10.1007/s00453-005-1189-3 +Dae Seoung Kim,Efficient Algorithms for Computing a Complete Visibility Region in Three-Dimensional Space.,1998,20,Algorithmica,2,db/journals/algorithmica/algorithmica20.html#KimYCS98,https://doi.org/10.1007/PL00009193 +S. Muthukrishnan,Detecting False Matches in String-Matching Algorithms.,1997,18,Algorithmica,4,db/journals/algorithmica/algorithmica18.html#Muthukrishnan97,https://doi.org/10.1007/PL00009168 +Abdel Krim Amoura,Scheduling Independent Multiprocessor Tasks.,2002,32,Algorithmica,2,db/journals/algorithmica/algorithmica32.html#AmouraBKM02,https://doi.org/10.1007/s00453-001-0076-9 +Marek Chrobak,Faster Information Gathering in Ad-Hoc Radio Tree Networks.,2018,80,Algorithmica,3,db/journals/algorithmica/algorithmica80.html#ChrobakC18,https://doi.org/10.1007/s00453-017-0336-y +Hong-Tai Chou,An Evaluation of Buffer Management Strategies for Relational Database Systems.,1986,1,Algorithmica,3,db/journals/algorithmica/algorithmica1.html#ChouD86,https://doi.org/10.1007/BF01840450 +Stéphan Thomassé,A Polynomial Turing-Kernel for Weighted Independent Set in Bull-Free Graphs.,2017,77,Algorithmica,3,db/journals/algorithmica/algorithmica77.html#ThomasseTV17,https://doi.org/10.1007/s00453-015-0083-x +Koki Hamada,The Hospitals/Residents Problem with Lower Quotas.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#HamadaIM16,https://doi.org/10.1007/s00453-014-9951-z +Jan Arpe,Approximability of Minimum AND-Circuits.,2009,53,Algorithmica,3,db/journals/algorithmica/algorithmica53.html#ArpeM09,https://doi.org/10.1007/s00453-007-9039-0 +Andreas Brandstädt,On Independent Vertex Sets in Subclasses of Apple-Free Graphs.,2010,56,Algorithmica,4,db/journals/algorithmica/algorithmica56.html#BrandstadtKLM10,https://doi.org/10.1007/s00453-008-9176-0 +Isolde Adler,Fast Minor Testing in Planar Graphs.,2012,64,Algorithmica,1,db/journals/algorithmica/algorithmica64.html#AdlerDFST12,https://doi.org/10.1007/s00453-011-9563-9 +Rivka Ladin,A Technique for Constructing Highly Available Services.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#LadinLS88,https://doi.org/10.1007/BF01762124 +Alex Gavryushkin,Dynamic Algorithms for Multimachine Interval Scheduling Through Analysis of Idle Intervals.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#GavryushkinKKL16,https://doi.org/10.1007/s00453-016-0148-5 +Andrea E. F. Clementi,The Minimum Range Assignment Problem on Linear Radio Networks.,2003,35,Algorithmica,2,db/journals/algorithmica/algorithmica35.html#ClementiPFPS03,https://doi.org/10.1007/s00453-002-0985-2 +Shouwei Li,Towards Flexible Demands in Online Leasing Problems.,2018,80,Algorithmica,5,db/journals/algorithmica/algorithmica80.html#LiMH18,https://doi.org/10.1007/s00453-018-0420-y +Kokichi Sugihara,Topology-Oriented Implementation - An Approach to Robust Geometric Algorithms.,2000,27,Algorithmica,1,db/journals/algorithmica/algorithmica27.html#SugiharaIII00,https://doi.org/10.1007/s004530010002 +Masato Edahiro,A Bucketing Algorithm for the Orthogonal Segment Intersection Search Problem and Its Practical Efficiency.,1989,4,Algorithmica,1,db/journals/algorithmica/algorithmica4.html#EdahiroTHA89,https://doi.org/10.1007/BF01553879 +Pankaj K. Agarwal,Selecting Distances in the Plane.,1993,9,Algorithmica,5,db/journals/algorithmica/algorithmica9.html#AgarwalASS93,https://doi.org/10.1007/BF01187037 +Bodo Rosenhahn,Free-Form Pose Estimation by Using Twist Representations.,2004,38,Algorithmica,1,db/journals/algorithmica/algorithmica38.html#RosenhahnPS03,https://doi.org/10.1007/s00453-003-1044-3 +Zhi-Zhong Chen,Recognizing Hole-Free 4-Map Graphs in Cubic Time.,2006,45,Algorithmica,2,db/journals/algorithmica/algorithmica45.html#ChenGP06,https://doi.org/10.1007/s00453-005-1184-8 +Daniel Dadush,A Randomized Sieving Algorithm for Approximate Integer Programming.,2014,70,Algorithmica,2,db/journals/algorithmica/algorithmica70.html#Dadush14,https://doi.org/10.1007/s00453-013-9834-8 +Stavros D. Nikolopoulos,Detecting Holes and Antiholes in Graphs.,2007,47,Algorithmica,2,db/journals/algorithmica/algorithmica47.html#NikolopoulosP07,https://doi.org/10.1007/s00453-006-1225-y +Doron Nussbaum,Finding Maximum Edge Bicliques in Convex Bipartite Graphs.,2012,64,Algorithmica,2,db/journals/algorithmica/algorithmica64.html#NussbaumPSUZ12,https://doi.org/10.1007/s00453-010-9486-x +Matthew J. Katz,Maintenance of a Piercing Set for Intervals with Applications.,2003,36,Algorithmica,1,db/journals/algorithmica/algorithmica36.html#KatzNS03,https://doi.org/10.1007/s00453-002-1006-1 +Tao Jiang 0001,Mapping Clones with a Given Ordering or Interleaving.,1998,21,Algorithmica,3,db/journals/algorithmica/algorithmica21.html#JiangK98,https://doi.org/10.1007/PL00009215 +Spyros C. Kontogiannis,Distance Oracles for Time-Dependent Networks.,2016,74,Algorithmica,4,db/journals/algorithmica/algorithmica74.html#KontogiannisZ16,https://doi.org/10.1007/s00453-015-0003-0 +Zhi-Zhong Chen,Randomized Fixed-Parameter Algorithms for the Closest String Problem.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#ChenMW16,https://doi.org/10.1007/s00453-014-9952-y +Peter Damaschke,Online Search with Time-Varying Price Bounds.,2009,55,Algorithmica,4,db/journals/algorithmica/algorithmica55.html#DamaschkeHT09,https://doi.org/10.1007/s00453-007-9156-9 +Haim Kaplan,Maximum Flow in Directed Planar Graphs with Vertex Capacities.,2011,61,Algorithmica,1,db/journals/algorithmica/algorithmica61.html#KaplanN11,https://doi.org/10.1007/s00453-010-9436-7 +Alfredo García Olaverri,Augmenting the Rigidity of a Graph in R2.,2011,59,Algorithmica,2,db/journals/algorithmica/algorithmica59.html#OlaverriT11,https://doi.org/10.1007/s00453-009-9300-9 +Michael Dinitz,Explicit Expanding Expanders.,2017,78,Algorithmica,4,db/journals/algorithmica/algorithmica78.html#DinitzSV17,https://doi.org/10.1007/s00453-016-0269-x +Marek Cygan,An Improved FPT Algorithm and a Quadratic Kernel for Pathwidth One Vertex Deletion.,2012,64,Algorithmica,1,db/journals/algorithmica/algorithmica64.html#CyganPPW12,https://doi.org/10.1007/s00453-011-9578-2 +Ruth Kuchem,Optimizing Area for Three-Layer Knock-Knee Channel Routing.,1996,15,Algorithmica,5,db/journals/algorithmica/algorithmica15.html#KuchemWW96,https://doi.org/10.1007/BF01955047 +Yossi Malka,A Lower Bound on the Period Length of a Distributed Scheduler.,1993,10,Algorithmica,5,db/journals/algorithmica/algorithmica10.html#MalkaMZ93,https://doi.org/10.1007/BF01769705 +Longkun Guo,On Finding Min-Min Disjoint Paths.,2013,66,Algorithmica,3,db/journals/algorithmica/algorithmica66.html#GuoS13,https://doi.org/10.1007/s00453-012-9656-0 +Takao Nishizeki,Foreword.,2000,26,Algorithmica,1,db/journals/algorithmica/algorithmica26.html#NishizekiTW00,https://doi.org/10.1007/s004539910001 +Marcin Bienkowski,Collecting Weighted Items from a Dynamic Queue.,2013,65,Algorithmica,1,db/journals/algorithmica/algorithmica65.html#BienkowskiCDHJJS13,https://doi.org/10.1007/s00453-011-9574-6 +Isolde Adler,Linear Rank-Width of Distance-Hereditary Graphs I. A Polynomial-Time Algorithm.,2017,78,Algorithmica,1,db/journals/algorithmica/algorithmica78.html#AdlerKK17,https://doi.org/10.1007/s00453-016-0164-5 +Claire Kenyon,The Data Broadcast Problem with Non-Uniform Transmission Times.,2003,35,Algorithmica,2,db/journals/algorithmica/algorithmica35.html#KenyonS03,https://doi.org/10.1007/s00453-002-0990-5 +Micha Hofri,Efficient Reorganization of Binary Search Trees.,2001,31,Algorithmica,3,db/journals/algorithmica/algorithmica31.html#HofriS01,https://doi.org/10.1007/s00453-001-0057-z +Alejandro López-Ortiz,Guest Editorial: Special Issue on Latin American Theoretical Informatics Symposium (LATIN).,2012,63,Algorithmica,3,db/journals/algorithmica/algorithmica63.html#Lopez-Ortiz12,https://doi.org/10.1007/s00453-011-9597-z +Rasmus Pagh,Cache-Oblivious Hashing.,2014,69,Algorithmica,4,db/journals/algorithmica/algorithmica69.html#PaghWYZ14,https://doi.org/10.1007/s00453-013-9763-6 +Harish Chandran,Tile Complexity of Approximate Squares.,2013,66,Algorithmica,1,db/journals/algorithmica/algorithmica66.html#ChandranGR13,https://doi.org/10.1007/s00453-012-9620-z +Adrian Kosowski,k-Chordal Graphs: From Cops and Robber to Compact Routing via Treewidth.,2015,72,Algorithmica,3,db/journals/algorithmica/algorithmica72.html#Kosowski0NS15,https://doi.org/10.1007/s00453-014-9871-y +Michael R. Fellows,The Complexity of Induced Minors and Related Problems.,1995,13,Algorithmica,3,db/journals/algorithmica/algorithmica13.html#FellowsKMP95,https://doi.org/10.1007/BF01190507 +Monaldo Mastrolilli,The Feedback Arc Set Problem with Triangle Inequality Is a Vertex Cover Problem.,2014,70,Algorithmica,2,db/journals/algorithmica/algorithmica70.html#Mastrolilli14,https://doi.org/10.1007/s00453-013-9811-2 +Sariel Har-Peled,Robust Proximity Search for Balls Using Sublinear Space.,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#Har-PeledK18,https://doi.org/10.1007/s00453-016-0254-4 +Andreas Bley,An Integer Programming Algorithm for Routing Optimization in IP Networks.,2011,60,Algorithmica,1,db/journals/algorithmica/algorithmica60.html#Bley11,https://doi.org/10.1007/s00453-009-9381-5 +Michael T. Goodrich,Sweep Methods for Parallel Computational Geometry.,1996,15,Algorithmica,2,db/journals/algorithmica/algorithmica15.html#GoodrichGB96,https://doi.org/10.1007/BF01941685 +Neeldhara Misra,The Kernelization Complexity of Connected Domination in Graphs with (no) Small Cycles.,2014,68,Algorithmica,2,db/journals/algorithmica/algorithmica68.html#MisraPRS14,https://doi.org/10.1007/s00453-012-9681-z +Ruy Luiz Milidiú,Bounding the Inefficiency of Length-Restricted Prefix Codes.,2001,31,Algorithmica,4,db/journals/algorithmica/algorithmica31.html#MilidiuL01,https://doi.org/10.1007/s00453-001-0060-4 +Mark de Berg,Realistic Input Models for Geometric Algorithms.,2002,34,Algorithmica,1,db/journals/algorithmica/algorithmica34.html#BergSVK02,https://doi.org/10.1007/s00453-002-0961-x +Joan Boyar,Online Bin Packing with Advice.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#BoyarKLL16,https://doi.org/10.1007/s00453-014-9955-8 +Giorgos Christodoulou,Improving the Price of Anarchy for Selfish Routing via Coordination Mechanisms.,2014,69,Algorithmica,3,db/journals/algorithmica/algorithmica69.html#ChristodoulouMP14,https://doi.org/10.1007/s00453-013-9753-8 +Reut Levi,Local Computation Algorithms for Graphs of Non-constant Degrees.,2017,77,Algorithmica,4,db/journals/algorithmica/algorithmica77.html#LeviRY17,https://doi.org/10.1007/s00453-016-0126-y +Alice Paul,Simple Approximation Algorithms for Balanced MAX 2SAT.,2018,80,Algorithmica,3,db/journals/algorithmica/algorithmica80.html#PaulPW18,https://doi.org/10.1007/s00453-017-0312-6 +Mira Gonen,On the Benefits of Adaptivity in Property Testing of Dense Graphs.,2010,58,Algorithmica,4,db/journals/algorithmica/algorithmica58.html#GonenR10,https://doi.org/10.1007/s00453-008-9237-4 +Chandra Chekuri,Foreword.,2009,55,Algorithmica,1,db/journals/algorithmica/algorithmica55.html#ChekuriT09,https://doi.org/10.1007/s00453-009-9324-1 +Daniela Tulone,On the Feasibility of Time Estimation under Isolation Conditions in Wireless Sensor Networks.,2007,49,Algorithmica,4,db/journals/algorithmica/algorithmica49.html#Tulone07,https://doi.org/10.1007/s00453-007-9099-1 +Bruce Randall Donald,Provably Good Approximation Algorithms for Optimal Kinodynamic Planning for Cartesian Robots and Open-Chain Manipulators.,1995,14,Algorithmica,6,db/journals/algorithmica/algorithmica14.html#DonaldX95a,https://doi.org/10.1007/BF01586637 +Stefan Nilsson,An Experimental Study of Compression Methods for Dynamic Tries.,2002,33,Algorithmica,1,db/journals/algorithmica/algorithmica33.html#NilssonT02,https://doi.org/10.1007/s00453-001-0102-y +Bernard Chazelle,Lines in Space: Combinatorics and Algorithms.,1996,15,Algorithmica,5,db/journals/algorithmica/algorithmica15.html#ChazelleEGSS96,https://doi.org/10.1007/BF01955043 +Hadas Shachnai,The List Update Problem: Improved Bounds for the Counter Scheme.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#ShachnaiH98,https://doi.org/10.1007/PL00009245 +Jurek Czyzowicz,When Patrolmen Become Corrupted: Monitoring a Graph Using Faulty Mobile Robots.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#CzyzowiczGKKKT17,https://doi.org/10.1007/s00453-016-0233-9 +Yu Li,Improved Approximation Algorithms for the Facility Location Problems with Linear/Submodular Penalties.,2015,73,Algorithmica,2,db/journals/algorithmica/algorithmica73.html#LiDXX15,https://doi.org/10.1007/s00453-014-9911-7 +A. Karim Abu-Affash,The Euclidean Bottleneck Full Steiner Tree Problem.,2015,71,Algorithmica,1,db/journals/algorithmica/algorithmica71.html#Abu-Affash15,https://doi.org/10.1007/s00453-013-9788-x +Enrico Angelelli,Semi-On-line Scheduling on Two Parallel Processors with an Upper Bound on the Items.,2003,37,Algorithmica,4,db/journals/algorithmica/algorithmica37.html#AngelelliST03,https://doi.org/10.1007/s00453-003-1037-2 +Richard Cole 0001,Suffix Trays and Suffix Trists: Structures for Faster Text Indexing.,2015,72,Algorithmica,2,db/journals/algorithmica/algorithmica72.html#0001KL15,https://doi.org/10.1007/s00453-013-9860-6 +Jie Chi,CONQUEST: A Coarse-Grained Algorithm for Constructing Summaries of Distributed Discrete Datasets.,2006,45,Algorithmica,3,db/journals/algorithmica/algorithmica45.html#ChiKG06,https://doi.org/10.1007/s00453-006-1218-x +Leah Epstein,Variable Sized Online Interval Coloring with Bandwidth.,2009,53,Algorithmica,3,db/journals/algorithmica/algorithmica53.html#EpsteinEL09,https://doi.org/10.1007/s00453-007-9071-0 +Jeff Edmonds,Multicast Pull Scheduling: When Fairness Is Fine.,2003,36,Algorithmica,3,db/journals/algorithmica/algorithmica36.html#EdmondsP03,https://doi.org/10.1007/s00453-003-1018-5 +Frank K. H. A. Dehne,Efficient External Memory Algorithms by Simulating Coarse-Grained Parallel Algorithms.,2003,36,Algorithmica,2,db/journals/algorithmica/algorithmica36.html#DehneDH03,https://doi.org/10.1007/s00453-002-1009-y +Markus Bläser,Approximating Maximum Weight Cycle Covers in Directed Graphs with Weights Zero and One.,2005,42,Algorithmica,2,db/journals/algorithmica/algorithmica42.html#BlaserM05,https://doi.org/10.1007/s00453-004-1131-0 +Colm ó'Dúnlaing,Motion Planning with Inertial Constraints.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#ODunlaing87,https://doi.org/10.1007/BF01840370 +Israel Cidon,Dynamic Detection of Subgraphs in Computer Networks.,1990,5,Algorithmica,2,db/journals/algorithmica/algorithmica5.html#CidonG90,https://doi.org/10.1007/BF01840389 +Kuo-Hua Kao,A Quadratic Algorithm for Finding Next-to-Shortest Paths in Graphs.,2011,61,Algorithmica,2,db/journals/algorithmica/algorithmica61.html#KaoCWJ11,https://doi.org/10.1007/s00453-010-9402-4 +Ahmed Helmi 0001,"Analysis of the ""Hiring Above the Median"" Selection Strategy for the Hiring Problem.",2013,66,Algorithmica,4,db/journals/algorithmica/algorithmica66.html#HelmiP13,https://doi.org/10.1007/s00453-012-9727-2 +Ching-Chi Lin,A Linear-Time Algorithm for Finding Locally Connected Spanning Trees on Circular-Arc Graphs.,2013,66,Algorithmica,2,db/journals/algorithmica/algorithmica66.html#LinCC13,https://doi.org/10.1007/s00453-012-9641-7 +Michael R. Fellows,Well Quasi Orders in Subclasses of Bounded Treewidth Graphs and Their Algorithmic Applications.,2012,64,Algorithmica,1,db/journals/algorithmica/algorithmica64.html#FellowsHR12,https://doi.org/10.1007/s00453-011-9545-y +Shahram Ghandeharizadeh,The Subset Assignment Problem for Data Placement in Caches.,2018,80,Algorithmica,7,db/journals/algorithmica/algorithmica80.html#Ghandeharizadeh18,https://doi.org/10.1007/s00453-017-0403-4 +Naoki Abe,Reinforcement Learning with Immediate Rewards and Linear Hypotheses.,2003,37,Algorithmica,4,db/journals/algorithmica/algorithmica37.html#AbeBL03,https://doi.org/10.1007/s00453-003-1038-1 +Wenceslas Fernandez de la Vega,Average-Case Analysis of the Merging Algorithm of Hwang and Lin.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#VegaFS98,https://doi.org/10.1007/PL00009235 +G. Sajith,Optimal Sublogarithmic Time Parallel Algorithms on Rooted Forests.,2000,27,Algorithmica,2,db/journals/algorithmica/algorithmica27.html#SajithS00,https://doi.org/10.1007/s004530010012 +Sheung-Hung Poon,Labeling Points with Weights.,2004,38,Algorithmica,2,db/journals/algorithmica/algorithmica38.html#PoonSSUW03,https://doi.org/10.1007/s00453-003-1063-0 +Dimitris Fotakis,Combinatorial Auctions Without Money.,2017,77,Algorithmica,3,db/journals/algorithmica/algorithmica77.html#FotakisKV17,https://doi.org/10.1007/s00453-015-0105-8 +Vincenzo Auletta,Logit Dynamics with Concurrent Updates for Local Interaction Potential Games.,2015,73,Algorithmica,3,db/journals/algorithmica/algorithmica73.html#AulettaFPPP15,https://doi.org/10.1007/s00453-014-9959-4 +Yasushi Kawase,Optimal Composition Ordering Problems for Piecewise Linear Functions.,2018,80,Algorithmica,7,db/journals/algorithmica/algorithmica80.html#KawaseMS18,https://doi.org/10.1007/s00453-017-0397-y +Zhipeng Cai,Computing and Combinatorics.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#CaiZ16,https://doi.org/10.1007/s00453-016-0176-1 +Sumit Ganguly,Hierarchical Sampling from Sketches: Estimating Functions over Data Streams.,2009,53,Algorithmica,4,db/journals/algorithmica/algorithmica53.html#GangulyB09,https://doi.org/10.1007/s00453-008-9260-5 +Ronitt Rubinfeld,Designing Checkers for Programs that Run in Parallel.,1996,15,Algorithmica,4,db/journals/algorithmica/algorithmica15.html#Rubinfeld96,https://doi.org/10.1007/BF01961540 +Luc Devroye,A Note on Point Location in Delaunay Triangulations of Random Points.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#DevroyeMZ98,https://doi.org/10.1007/PL00009234 +Carola Doerr,OneMax in Black-Box Models with Several Restrictions.,2017,78,Algorithmica,2,db/journals/algorithmica/algorithmica78.html#DoerrL17,https://doi.org/10.1007/s00453-016-0168-1 +Marek Karpinski,A Fast Algorithm for Adaptive Prefix Coding.,2009,55,Algorithmica,1,db/journals/algorithmica/algorithmica55.html#KarpinskiN09,https://doi.org/10.1007/s00453-007-9140-4 +Eun Jung Kim 0002,An FPT 2-Approximation for Tree-Cut Decomposition.,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#KimOPST18,https://doi.org/10.1007/s00453-016-0245-5 +Clyde L. Monma,Computing Euclidean Maximum Spanning Trees.,1990,5,Algorithmica,3,db/journals/algorithmica/algorithmica5.html#MonmaPSY90,https://doi.org/10.1007/BF01840396 +Michael R. Fellows,Faster Fixed-Parameter Tractable Algorithms for Matching and Packing Problems.,2008,52,Algorithmica,2,db/journals/algorithmica/algorithmica52.html#FellowsKNRRSTW08,https://doi.org/10.1007/s00453-007-9146-y +Petra Berenbrink,Communication Complexity of Quasirandom Rumor Spreading.,2015,72,Algorithmica,2,db/journals/algorithmica/algorithmica72.html#BerenbrinkES15,https://doi.org/10.1007/s00453-013-9861-5 +Radu Mihaescu,Why Neighbor-Joining Works.,2009,54,Algorithmica,1,db/journals/algorithmica/algorithmica54.html#MihaescuLP09,https://doi.org/10.1007/s00453-007-9116-4 +Jesper Jansson,Linked Dynamic Tries with Applications to LZ-Compression in Sublinear Time and Space.,2015,71,Algorithmica,4,db/journals/algorithmica/algorithmica71.html#JanssonSS15,https://doi.org/10.1007/s00453-013-9836-6 +Shou-Hsuan Stephen Huang,A New Combinatorial Approach to Optimal Embeddings of Rectangles.,1996,16,Algorithmica,2,db/journals/algorithmica/algorithmica16.html#HuangLV96,https://doi.org/10.1007/BF01940645 +Robert Beals,Equivalence of Binary and Ternary Algebraic Decision Trees.,1997,18,Algorithmica,4,db/journals/algorithmica/algorithmica18.html#Beals97,https://doi.org/10.1007/PL00009169 +Micha Streppel,Approximate Range Searching in External Memory.,2011,59,Algorithmica,2,db/journals/algorithmica/algorithmica59.html#StreppelY11,https://doi.org/10.1007/s00453-009-9297-0 +Satoru Iwata 0001,Computing the Maximum Degree of Minors in Mixed Polynomial Matrices via Combinatorial Relaxation.,2013,66,Algorithmica,2,db/journals/algorithmica/algorithmica66.html#IwataT13,https://doi.org/10.1007/s00453-012-9640-8 +Piotr Berman,Exact and Approximation Algorithms for Geometric and Capacitated Set Cover Problems.,2012,64,Algorithmica,2,db/journals/algorithmica/algorithmica64.html#BermanKL12,https://doi.org/10.1007/s00453-011-9591-5 +Pinar Heggernes,On the Parameterized Complexity of Finding Separators with Non-Hereditary Properties.,2015,72,Algorithmica,3,db/journals/algorithmica/algorithmica72.html#HeggernesHMMV15,https://doi.org/10.1007/s00453-014-9868-6 +Adrian Dumitrescu,Piercing Translates and Homothets of a Convex Body.,2011,61,Algorithmica,1,db/journals/algorithmica/algorithmica61.html#DumitrescuJ11a,https://doi.org/10.1007/s00453-010-9410-4 +John E. Hopcroft,A Paradigm for Robust Geometric Algorithms.,1992,7,Algorithmica,4,db/journals/algorithmica/algorithmica7.html#HopcroftK92,https://doi.org/10.1007/BF01758769 +Danny Z. Chen,Parallel Algorithms for Partitioning Sorted Sets and Related Problems.,2000,28,Algorithmica,2,db/journals/algorithmica/algorithmica28.html#ChenCWK00,https://doi.org/10.1007/s004530010037 +Nancy M. Amato,A Time-Optimal Parallel Algorithm for Three-Dimensional Convex Hulls.,1995,14,Algorithmica,2,db/journals/algorithmica/algorithmica14.html#AmatoP95,https://doi.org/10.1007/BF01293667 +Esther M. Arkin,Geometric Knapsack Problems.,1993,10,Algorithmica,5,db/journals/algorithmica/algorithmica10.html#ArkinKM93,https://doi.org/10.1007/BF01769706 +Ding-Zhu Du,On Heuristics for Minimum Length Rectilinear Partitions.,1990,5,Algorithmica,1,db/journals/algorithmica/algorithmica5.html#DuZ90,https://doi.org/10.1007/BF01840380 +Daniel Graf 0001,How to Sort by Walking and Swapping on Paths and Trees.,2017,78,Algorithmica,4,db/journals/algorithmica/algorithmica78.html#Graf17,https://doi.org/10.1007/s00453-017-0282-8 +Paola Bertolazzi,Quasi-Upward Planarity.,2002,32,Algorithmica,3,db/journals/algorithmica/algorithmica32.html#BertolazziBD02,https://doi.org/10.1007/s00453-001-0083-x +Martin L. Brady,Optimal Multilayer Channel Routing with Overlap.,1991,6,Algorithmica,1,db/journals/algorithmica/algorithmica6.html#BradyB91,https://doi.org/10.1007/BF01759036 +Nir Naaman,Average Case Analysis of Bounded Space Bin Packing Algorithms.,2008,50,Algorithmica,1,db/journals/algorithmica/algorithmica50.html#NaamanR08,https://doi.org/10.1007/s00453-007-9073-y +Petko Yanev,Algorithms for Computing the QR Decomposition of a Set of Matrices with Common Columns.,2004,39,Algorithmica,1,db/journals/algorithmica/algorithmica39.html#YanevFK04,https://doi.org/10.1007/s00453-003-1080-z +,Editors' Note: ISAAC 2009 Special Section.,2011,61,Algorithmica,4,db/journals/algorithmica/algorithmica61.html#X11,https://doi.org/10.1007/s00453-011-9577-3 +Uriel Feige,Approximating Min Sum Set Cover.,2004,40,Algorithmica,4,db/journals/algorithmica/algorithmica40.html#FeigeLT04,https://doi.org/10.1007/s00453-004-1110-5 +Patrick Traxler,The Relative Exponential Time Complexity of Approximate Counting Satisfying Assignments.,2016,75,Algorithmica,2,db/journals/algorithmica/algorithmica75.html#Traxler16,https://doi.org/10.1007/s00453-016-0134-y +Fedor V. Fomin,Computing Tree-Depth Faster Than 2n.,2015,73,Algorithmica,1,db/journals/algorithmica/algorithmica73.html#FominGP15,https://doi.org/10.1007/s00453-014-9914-4 +Robert E. Webber,Linear-Time Border-Tracing Algorithms for Quadtrees.,1992,8,Algorithmica,1,db/journals/algorithmica/algorithmica8.html#WebberS92,https://doi.org/10.1007/BF01758835 +Gerth Stølting Brodal,Optimal Solutions for the Temporal Precedence Problem.,2002,33,Algorithmica,4,db/journals/algorithmica/algorithmica33.html#BrodalMSTT02,https://doi.org/10.1007/s00453-002-0935-z +Leah Epstein,Vertex Cover Meets Scheduling.,2016,74,Algorithmica,3,db/journals/algorithmica/algorithmica74.html#EpsteinLW16,https://doi.org/10.1007/s00453-015-9992-y +Prasad Chalasani,Approximate Option Pricing.,1999,25,Algorithmica,1,db/journals/algorithmica/algorithmica25.html#ChalasaniJS99,https://doi.org/10.1007/PL00009280 +Tomás Ebenlendr,Preemptive Online Scheduling: Optimal Algorithms for All Speeds.,2009,53,Algorithmica,4,db/journals/algorithmica/algorithmica53.html#EbenlendrJS09,https://doi.org/10.1007/s00453-008-9235-6 +Leonidas J. Guibas,Randomized Incremental Construction of Delaunay and Voronoi Diagrams.,1992,7,Algorithmica,4,db/journals/algorithmica/algorithmica7.html#GuibasKS92,https://doi.org/10.1007/BF01758770 +David P. Dobkin,Computational Geometry in a Curved World.,1990,5,Algorithmica,3,db/journals/algorithmica/algorithmica5.html#DobkinS90,https://doi.org/10.1007/BF01840397 +Iyad A. Kanj,The Compatibility of Binary Characters on Phylogenetic Networks: Complexity and Parameterized Algorithms.,2008,51,Algorithmica,2,db/journals/algorithmica/algorithmica51.html#KanjNX08,https://doi.org/10.1007/s00453-007-9046-1 +Bruno Codenotti,The Role of Arithmetic in Fast Parallel Matrix Inversion.,2001,30,Algorithmica,4,db/journals/algorithmica/algorithmica30.html#CodenottiLP01,https://doi.org/10.1007/s00453-001-0033-7 +David Doty,Negative Interactions in Irreversible Self-assembly.,2013,66,Algorithmica,1,db/journals/algorithmica/algorithmica66.html#DotyKM13,https://doi.org/10.1007/s00453-012-9631-9 +Angelo Fanelli 0001,On the Convergence of Multicast Games in Directed Networks.,2010,57,Algorithmica,2,db/journals/algorithmica/algorithmica57.html#FanelliFM10,https://doi.org/10.1007/s00453-008-9212-0 +Danny Z. Chen,Matroid and Knapsack Center Problems.,2016,75,Algorithmica,1,db/journals/algorithmica/algorithmica75.html#ChenLLW16,https://doi.org/10.1007/s00453-015-0010-1 +Dogan Corus,On Easiest Functions for Mutation Operators in Bio-Inspired Optimisation.,2017,78,Algorithmica,2,db/journals/algorithmica/algorithmica78.html#CorusHJOSZ17,https://doi.org/10.1007/s00453-016-0201-4 +Li-Pu Yeh,Efficient Algorithms for the Problems of Enumerating Cuts by Non-decreasing Weights.,2010,56,Algorithmica,3,db/journals/algorithmica/algorithmica56.html#YehWS10,https://doi.org/10.1007/s00453-009-9284-5 +Sanguthevar Rajasekaran,Optimal Routing Algorithms for Mesh-Connected Processor Arrays.,1992,8,Algorithmica,1,db/journals/algorithmica/algorithmica8.html#RajasekaranT92,https://doi.org/10.1007/BF01758834 +Charles E. Leiserson,Retiming Synchronous Circuitry.,1991,6,Algorithmica,1,db/journals/algorithmica/algorithmica6.html#LeisersonS91,https://doi.org/10.1007/BF01759032 +Mohammad Ali Abam,Out-of-Order Event Processing in Kinetic Data Structures.,2011,60,Algorithmica,2,db/journals/algorithmica/algorithmica60.html#AbamABY11,https://doi.org/10.1007/s00453-009-9335-y +Hajo Broersma,Planar Graph Coloring Avoiding Monochromatic Subgraphs: Trees and Paths Make It Difficult.,2006,44,Algorithmica,4,db/journals/algorithmica/algorithmica44.html#BroersmaFKW06,https://doi.org/10.1007/s00453-005-1176-8 +Bernard Chazelle,Algorithms for Bichromatic Line-Segment Problems Polyhedral Terrains.,1994,11,Algorithmica,2,db/journals/algorithmica/algorithmica11.html#ChazelleEGS94,https://doi.org/10.1007/BF01182771 +Philip Bille,Substring Range Reporting.,2014,69,Algorithmica,2,db/journals/algorithmica/algorithmica69.html#BilleG14,https://doi.org/10.1007/s00453-012-9733-4 +Jiong Guo,Editing Graphs into Disjoint Unions of Dense Clusters.,2011,61,Algorithmica,4,db/journals/algorithmica/algorithmica61.html#GuoKKU11,https://doi.org/10.1007/s00453-011-9487-4 +Laurent Alonso,A Linear-Time Algorithm for the Generation of Trees.,1997,17,Algorithmica,2,db/journals/algorithmica/algorithmica17.html#AlonsoRS97,https://doi.org/10.1007/BF02522824 +Donglei Du,Editorial: Special Issue on Computing and Combinatorics.,2018,80,Algorithmica,5,db/journals/algorithmica/algorithmica80.html#DuX18,https://doi.org/10.1007/s00453-018-0422-9 +Yang Cai,Nonpreemptive Scheduling of Periodic Tasks in Uni- and Multiprocessor Systems.,1996,15,Algorithmica,6,db/journals/algorithmica/algorithmica15.html#CaiK96,https://doi.org/10.1007/BF01940882 +Hiroshi Fujiwara,On the Huffman and Alphabetic Tree Problem with General Cost Functions.,2014,69,Algorithmica,3,db/journals/algorithmica/algorithmica69.html#FujiwaraJ14,https://doi.org/10.1007/s00453-013-9755-6 +Xin He,An Efficient Parallel Algorithm for Finding Rectangular Duals of Plane Triangular Graphs.,1995,13,Algorithmica,6,db/journals/algorithmica/algorithmica13.html#He95,https://doi.org/10.1007/BF01189069 +David G. Harris,Fast Sequential Importance Sampling to Estimate the Graph Reliability Polynomial.,2014,68,Algorithmica,4,db/journals/algorithmica/algorithmica68.html#HarrisSB14,https://doi.org/10.1007/s00453-012-9703-x +Daniel Binkele-Raible,Exact and Parameterized Algorithms for Max Internal Spanning Tree.,2013,65,Algorithmica,1,db/journals/algorithmica/algorithmica65.html#Binkele-RaibleFGL13,https://doi.org/10.1007/s00453-011-9575-5 +Mark de Berg,Efficient Ray Shooting and Hidden Surface Removal.,1994,12,Algorithmica,1,db/journals/algorithmica/algorithmica12.html#BergHOSK94,https://doi.org/10.1007/BF01377182 +Feng Gao 0002,Finding Extrema with Unary Predicates.,1993,9,Algorithmica,6,db/journals/algorithmica/algorithmica9.html#GaoGKLS93,https://doi.org/10.1007/BF01190157 +Ran El-Yaniv,Competitive Optimal On-Line Leasing.,1999,25,Algorithmica,1,db/journals/algorithmica/algorithmica25.html#El-YanivKL99,https://doi.org/10.1007/PL00009279 +Fabrizio Frati,Augmenting Graphs to Minimize the Diameter.,2015,72,Algorithmica,4,db/journals/algorithmica/algorithmica72.html#FratiGGM15,https://doi.org/10.1007/s00453-014-9886-4 +Fedor V. Fomin,On the Minimum Feedback Vertex Set Problem: Exact and Enumeration Algorithms.,2008,52,Algorithmica,2,db/journals/algorithmica/algorithmica52.html#FominGPR08,https://doi.org/10.1007/s00453-007-9152-0 +Alexander Tiskin,Fast Distance Multiplication of Unit-Monge Matrices.,2015,71,Algorithmica,4,db/journals/algorithmica/algorithmica71.html#Tiskin15,https://doi.org/10.1007/s00453-013-9830-z +Ulrich Lauther,Space Efficient Algorithms for the Burrows-Wheeler Backtransformation.,2010,58,Algorithmica,2,db/journals/algorithmica/algorithmica58.html#LautherL10,https://doi.org/10.1007/s00453-008-9269-9 +Anders Dessmark,Deterministic Rendezvous in Graphs.,2006,46,Algorithmica,1,db/journals/algorithmica/algorithmica46.html#DessmarkFKP06,https://doi.org/10.1007/s00453-006-0074-2 +Dan Gusfield,A Faster Parametric Minimum-Cut Algorithm.,1994,11,Algorithmica,3,db/journals/algorithmica/algorithmica11.html#GusfieldT94,https://doi.org/10.1007/BF01240737 +Mauricio Ayala-Rincón,A Linear Time Lower Bound on McCreight and General Updating Algorithms for Suffix Trees.,2003,37,Algorithmica,3,db/journals/algorithmica/algorithmica37.html#Ayala-RinconC03,https://doi.org/10.1007/s00453-003-1034-5 +Lisa Hellerstein,Max-Throughput for (Conservative) k-of-n Testing.,2017,77,Algorithmica,2,db/journals/algorithmica/algorithmica77.html#HellersteinOS17,https://doi.org/10.1007/s00453-015-0089-4 +Elena Grigorieva,On the Fastest Vickrey Algorithm.,2010,58,Algorithmica,3,db/journals/algorithmica/algorithmica58.html#GrigorievaHMV10,https://doi.org/10.1007/s00453-009-9285-4 +David Eppstein,Asymptotic Speed-Ups in Constructive Solid Geometry.,1995,13,Algorithmica,5,db/journals/algorithmica/algorithmica13.html#Eppstein95,https://doi.org/10.1007/BF01190849 +Andreas Bärtschi,Erratum to: Conflict-Free Chromatic Art Gallery Coverage.,2014,68,Algorithmica,1,db/journals/algorithmica/algorithmica68.html#BartschiS14a,https://doi.org/10.1007/s00453-013-9852-6 +Elad Haramaty,Deterministic Compression with Uncertain Priors.,2016,76,Algorithmica,3,db/journals/algorithmica/algorithmica76.html#HaramatyS16,https://doi.org/10.1007/s00453-015-0107-6 +Philippe Jacquet,Average Profile of the Lempel-Ziv Parsing Scheme for a Markovian Source.,2001,31,Algorithmica,3,db/journals/algorithmica/algorithmica31.html#JacquetST01,https://doi.org/10.1007/s00453-001-0053-3 +Anne Condon,Upper and Lower Bounds for Selection in the Mesh.,1998,20,Algorithmica,1,db/journals/algorithmica/algorithmica20.html#CondonN98,https://doi.org/10.1007/PL00009184 +Yin Li,Computing the Cover Array in Linear Time.,2002,32,Algorithmica,1,db/journals/algorithmica/algorithmica32.html#LiS02,https://doi.org/10.1007/s00453-001-0062-2 +Victor A. Campos,Edge-b-Coloring Trees.,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#CamposS18,https://doi.org/10.1007/s00453-016-0240-x +Ning Chen,Improved Approximation Algorithms for the Spanning Star Forest Problem.,2013,65,Algorithmica,3,db/journals/algorithmica/algorithmica65.html#ChenENRRS13,https://doi.org/10.1007/s00453-011-9607-1 +Hadas Shachnai,On Two Class-Constrained Versions of the Multiple Knapsack Problem.,2001,29,Algorithmica,3,db/journals/algorithmica/algorithmica29.html#ShachnaiT01,https://doi.org/10.1007/s004530010057 +Vladimir Yanovski,A Distributed Ant Algorithm for Efficiently Patrolling a Network.,2003,37,Algorithmica,3,db/journals/algorithmica/algorithmica37.html#YanovskiWB03,https://doi.org/10.1007/s00453-003-1030-9 +Stefan Felsner,Ham-Sandwich Cuts for Abstract Order Types.,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#FelsnerP18,https://doi.org/10.1007/s00453-016-0246-4 +Vincenzo Auletta,Convergence to Equilibrium of Logit Dynamics for Strategic Games.,2016,76,Algorithmica,1,db/journals/algorithmica/algorithmica76.html#AulettaFPPP16,https://doi.org/10.1007/s00453-015-0025-7 +Philippe Flajolet,Analytic Variations on Quadtrees.,1993,10,Algorithmica,6,db/journals/algorithmica/algorithmica10.html#FlajoletGPR93,https://doi.org/10.1007/BF01891833 +Susanne Albers,Speed Scaling on Parallel Processors.,2014,68,Algorithmica,2,db/journals/algorithmica/algorithmica68.html#AlbersMS14,https://doi.org/10.1007/s00453-012-9678-7 +Leah Epstein,The (Weighted) Metric Dimension of Graphs: Hard and Easy Cases.,2015,72,Algorithmica,4,db/journals/algorithmica/algorithmica72.html#EpsteinLW15,https://doi.org/10.1007/s00453-014-9896-2 +Foto N. Afrati,The Synthesis of Communication Protocols.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#AfratiPP88,https://doi.org/10.1007/BF01762126 +Bart M. P. Jansen,On Sparsification for Computing Treewidth.,2015,71,Algorithmica,3,db/journals/algorithmica/algorithmica71.html#Jansen15,https://doi.org/10.1007/s00453-014-9924-2 +Heather Booth,A Linear Algorithm for Analysis of Minimum Spanning and Shortest-Path Trees of Planar Graphs.,1994,11,Algorithmica,4,db/journals/algorithmica/algorithmica11.html#BoothW94,https://doi.org/10.1007/BF01187017 +Ivan Bliznets,Largest Chordal and Interval Subgraphs Faster than $$2^n$$ 2 n.,2016,76,Algorithmica,2,db/journals/algorithmica/algorithmica76.html#BliznetsFPV16,https://doi.org/10.1007/s00453-015-0054-2 +Giuseppe Di Battista,On-Line Maintenance of Triconnected Components with SPQR-Trees.,1996,15,Algorithmica,4,db/journals/algorithmica/algorithmica15.html#BattistaT96,https://doi.org/10.1007/BF01961541 +Robert J. Vanderbei,A Modification of Karmarkar's Linear Programming Algorithm.,1986,1,Algorithmica,4,db/journals/algorithmica/algorithmica1.html#VanderbeiMF86,https://doi.org/10.1007/BF01840454 +Samuel Fiorini,Approximability of Clique Transversal in Perfect Graphs.,2018,80,Algorithmica,8,db/journals/algorithmica/algorithmica80.html#Fiorini0N018,https://doi.org/10.1007/s00453-017-0315-3 +Armando Castañeda,An Equivariance Theorem with Applications to Renaming.,2014,70,Algorithmica,2,db/journals/algorithmica/algorithmica70.html#CastanedaHR14,https://doi.org/10.1007/s00453-013-9855-3 +Philippe Flajolet,Analytic Variations on the Airy Distribution.,2001,31,Algorithmica,3,db/journals/algorithmica/algorithmica31.html#FlajoletL01,https://doi.org/10.1007/s00453-001-0056-0 +Ulrich Eckhardt,Polygonal Representations of Digital Sets.,2004,38,Algorithmica,1,db/journals/algorithmica/algorithmica38.html#EckhardtR03,https://doi.org/10.1007/s00453-003-1040-7 +Yusuke Kobayashi 0001,Finding a Shortest Non-zero Path in Group-Labeled Graphs via Permanent Computation.,2017,77,Algorithmica,4,db/journals/algorithmica/algorithmica77.html#KobayashiT17,https://doi.org/10.1007/s00453-016-0142-y +Kannan Balakrishnan,Computing median and antimedian sets in median graphs.,2010,57,Algorithmica,2,db/journals/algorithmica/algorithmica57.html#BalakrishnanBCKKS10,https://doi.org/10.1007/s00453-008-9200-4 +Alberto Apostolico,Parallel Construction of a Suffix Tree with Applications.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#ApostolicoILSV88,https://doi.org/10.1007/BF01762122 +Andreas Björklund,Constrained Multilinear Detection and Generalized Graph Motifs.,2016,74,Algorithmica,2,db/journals/algorithmica/algorithmica74.html#BjorklundKK16,https://doi.org/10.1007/s00453-015-9981-1 +Hanna Sumita,Parameterized Complexity of Sparse Linear Complementarity Problems.,2017,79,Algorithmica,1,db/journals/algorithmica/algorithmica79.html#SumitaKM17,https://doi.org/10.1007/s00453-016-0229-5 +Leah Epstein,Online Scheduling of Jobs with Fixed Start Times on Related Machines.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#EpsteinJSS16,https://doi.org/10.1007/s00453-014-9940-2 +Noga Alon,Algorithmic Aspects of Acyclic Edge Colorings.,2002,32,Algorithmica,4,db/journals/algorithmica/algorithmica32.html#AlonZ02,https://doi.org/10.1007/s00453-001-0093-8 +Kaizhong Zhang,A Constrained Edit Distance Between Unordered Labeled Trees.,1996,15,Algorithmica,3,db/journals/algorithmica/algorithmica15.html#Zhang96,https://doi.org/10.1007/BF01975866 +Sergey Bereg,On Covering Problems of Rado.,2010,57,Algorithmica,3,db/journals/algorithmica/algorithmica57.html#BeregDJ10,https://doi.org/10.1007/s00453-009-9298-z +Cees Duin,A Branch-Checking Algorithm for All-Pairs Shortest Paths.,2005,41,Algorithmica,2,db/journals/algorithmica/algorithmica41.html#Duin04,https://doi.org/10.1007/s00453-004-1122-1 +Lukasz Kowalik,35/44-approximation for Asymmetric Maximum TSP with Triangle Inequality.,2011,59,Algorithmica,2,db/journals/algorithmica/algorithmica59.html#KowalikM11,https://doi.org/10.1007/s00453-009-9306-3 +Susanne Albers,A Study of Integrated Document and Connection Caching in the WWW.,2007,47,Algorithmica,3,db/journals/algorithmica/algorithmica47.html#AlbersS07,https://doi.org/10.1007/s00453-006-0174-9 +Myungho Lee,Parallel Implementation of a Class of Adaptive Signal Processing Applications.,2001,30,Algorithmica,4,db/journals/algorithmica/algorithmica30.html#LeeLP01,https://doi.org/10.1007/s00453-001-0031-9 +Edith Cohen,Exploiting Regularities in Web Traffic Patterns for Cache Replacement.,2002,33,Algorithmica,3,db/journals/algorithmica/algorithmica33.html#CohenK02a,https://doi.org/10.1007/s00453-001-0121-8 +Tatsuie Tsukiji,A Limit Law for Outputs in Random Recursive Circuits.,2001,31,Algorithmica,3,db/journals/algorithmica/algorithmica31.html#TsukijiM01,https://doi.org/10.1007/s00453-001-0044-4 +Olawale Hassan,On the Ordered List Subgraph Embedding Problems.,2016,74,Algorithmica,3,db/journals/algorithmica/algorithmica74.html#HassanKLP16,https://doi.org/10.1007/s00453-015-9980-2 +Daniel Bienstock,On the Complexity of Embedding Planar Graphs To Minimize Certain Distance Measures.,1990,5,Algorithmica,1,db/journals/algorithmica/algorithmica5.html#BienstockM90,https://doi.org/10.1007/BF01840379 +Danny Ziyi Chen,Optimal Point Movement for Covering Circular Regions.,2015,72,Algorithmica,2,db/journals/algorithmica/algorithmica72.html#ChenTWW15,https://doi.org/10.1007/s00453-013-9857-1 +Tomás Feder,Network Flow and 2-Satisfiability.,1994,11,Algorithmica,3,db/journals/algorithmica/algorithmica11.html#Feder94,https://doi.org/10.1007/BF01240738 +Jeffrey M. Jaffe,Maximal Selection in Tandem Networks with Symmetric Hearing Range.,1989,4,Algorithmica,3,db/journals/algorithmica/algorithmica4.html#JaffeR89,https://doi.org/10.1007/BF01553896 +Qin Huang,Partial Sorting Problem on Evolving Data.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#HuangLSZ17,https://doi.org/10.1007/s00453-017-0295-3 +Evangelos Kranakis,Guest Editorial: Special Issue on Theoretical Informatics.,2018,80,Algorithmica,3,db/journals/algorithmica/algorithmica80.html#KranakisN18,https://doi.org/10.1007/s00453-017-0394-1 +Louay Bazzi,The Solution of Linear Probabilistic Recurrence Relations.,2003,36,Algorithmica,1,db/journals/algorithmica/algorithmica36.html#BazziM03,https://doi.org/10.1007/s00453-002-1003-4 +Michael Etscheid,Linear Kernels and Linear-Time Algorithms for Finding Large Cuts.,2018,80,Algorithmica,9,db/journals/algorithmica/algorithmica80.html#EtscheidM18,https://doi.org/10.1007/s00453-017-0388-z +Youhei Akimoto,Theoretical Foundation for CMA-ES from Information Geometry Perspective.,2012,64,Algorithmica,4,db/journals/algorithmica/algorithmica64.html#AkimotoNOK12,https://doi.org/10.1007/s00453-011-9564-8 +Michael J. Spriggs,Computing a (1+epsilon)-Approximate Geometric Minimum-Diameter Spanning Tree.,2004,38,Algorithmica,4,db/journals/algorithmica/algorithmica38.html#SpriggsKBSS04,https://doi.org/10.1007/s00453-003-1056-z +Mikhail J. Atallah,Efficient Parallel Algorithms for Planar st-Graphs.,2003,35,Algorithmica,3,db/journals/algorithmica/algorithmica35.html#AtallahCD03,https://doi.org/10.1007/s00453-002-0995-0 +Kyle Klein,Pursuit Evasion on Polyhedral Surfaces.,2015,73,Algorithmica,4,db/journals/algorithmica/algorithmica73.html#KleinS15,https://doi.org/10.1007/s00453-015-9988-7 +Erik D. Demaine,Algorithmic Graph Minor Theory: Improved Grid Minor Bounds and Wagner's Contraction.,2009,54,Algorithmica,2,db/journals/algorithmica/algorithmica54.html#DemaineHK09,https://doi.org/10.1007/s00453-007-9138-y +Clyde P. Kruskal,Efficient Parallel Algorithms for Graph Problems.,1990,5,Algorithmica,1,db/journals/algorithmica/algorithmica5.html#KruskalRS90,https://doi.org/10.1007/BF01840376 +Gonzalo Navarro,Optimal Encodings for Range Majority Queries.,2016,74,Algorithmica,3,db/journals/algorithmica/algorithmica74.html#NavarroT16,https://doi.org/10.1007/s00453-015-9987-8 +Hsien-Kuei Hwang,Asymptotics of Divide-and-Conquer Recurrences: Batcher's Sorting Algorithm and a Minimum Euclidean Matching Heuristic.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#Hwang98,https://doi.org/10.1007/PL00009238 +N. S. Narayanaswamy,Obtaining Matrices with the Consecutive Ones Property by Row Deletions.,2015,71,Algorithmica,3,db/journals/algorithmica/algorithmica71.html#NarayanaswamyS15,https://doi.org/10.1007/s00453-014-9925-1 +Daniel Kane,A Short Implicant of a CNF Formula with Many Satisfying Assignments.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#KaneW16,https://doi.org/10.1007/s00453-016-0125-z +Thomas M. Keane,Building Large Phylogenetic Trees on Coarse-Grained Parallel Machines.,2006,45,Algorithmica,3,db/journals/algorithmica/algorithmica45.html#KeanePNTM06,https://doi.org/10.1007/s00453-006-1215-0 +Helmut Prodinger,A q-Analogue of the Path Length of Binary Search Trees.,2001,31,Algorithmica,3,db/journals/algorithmica/algorithmica31.html#Prodinger01,https://doi.org/10.1007/s00453-001-0058-y +Ioannis Caragiannis,Efficient Coordination Mechanisms for Unrelated Machine Scheduling.,2013,66,Algorithmica,3,db/journals/algorithmica/algorithmica66.html#Caragiannis13,https://doi.org/10.1007/s00453-012-9650-6 +Mamadou Moustapha Kanté,An FPT Algorithm and a Polynomial Kernel for Linear Rankwidth-1 Vertex Deletion.,2017,79,Algorithmica,1,db/journals/algorithmica/algorithmica79.html#KanteKKP17,https://doi.org/10.1007/s00453-016-0230-z +Arash Farzan,Compact Navigation and Distance Oracles for Graphs with Small Treewidth.,2014,69,Algorithmica,1,db/journals/algorithmica/algorithmica69.html#FarzanK14,https://doi.org/10.1007/s00453-012-9712-9 +Lars Arge,Foreword.,2009,55,Algorithmica,2,db/journals/algorithmica/algorithmica55.html#ArgeW09,https://doi.org/10.1007/s00453-008-9222-y +David Benoit,Representing Trees of Higher Degree.,2005,43,Algorithmica,4,db/journals/algorithmica/algorithmica43.html#BenoitDMRRR05,https://doi.org/10.1007/s00453-004-1146-6 +Bang Ye Wu,A Simpler and More Efficient Algorithm for the Next-to-Shortest Path Problem.,2013,65,Algorithmica,2,db/journals/algorithmica/algorithmica65.html#Wu13,https://doi.org/10.1007/s00453-011-9601-7 +William S. Evans,Right-Triangulated Irregular Networks.,2001,30,Algorithmica,2,db/journals/algorithmica/algorithmica30.html#EvansKT01,https://doi.org/10.1007/s00453-001-0006-x +Sharat Chandran,Parallel Computational Geometry of Rectangles.,1992,7,Algorithmica,1,db/journals/algorithmica/algorithmica7.html#ChandranKM92,https://doi.org/10.1007/BF01758750 +R. Krithika 0001,Dynamic Parameterized Problems.,2018,80,Algorithmica,9,db/journals/algorithmica/algorithmica80.html#KrithikaST18,https://doi.org/10.1007/s00453-017-0349-6 +Jianer Chen,Improved Parameterized Set Splitting Algorithms: A Probabilistic Approach.,2009,54,Algorithmica,4,db/journals/algorithmica/algorithmica54.html#ChenL09a,https://doi.org/10.1007/s00453-008-9206-y +Susanne E. Hambrusch,New Algorithms for Minimizing the Longest Wire Length During Circuit Compaction.,1997,17,Algorithmica,4,db/journals/algorithmica/algorithmica17.html#HambruschT97,https://doi.org/10.1007/BF02523682 +Jinsong Tan,Algorithmic and Complexity Issues of Three Clustering Methods in Microarray Data Analysis.,2007,48,Algorithmica,2,db/journals/algorithmica/algorithmica48.html#TanCZZ07,https://doi.org/10.1007/s00453-007-0040-4 +Kyung-Yong Chwa,Guest Editorial: Special Issue on Algorithms and Computation.,2012,64,Algorithmica,3,db/journals/algorithmica/algorithmica64.html#ChwaP12,https://doi.org/10.1007/s00453-012-9673-z +Liane Lewin-Eytan,Admission Control in Networks with Advance Reservations.,2004,40,Algorithmica,4,db/journals/algorithmica/algorithmica40.html#Lewin-EytanNO04,https://doi.org/10.1007/s00453-004-1114-1 +Martin E. Dyer,The Relative Complexity of Approximate Counting Problems.,2004,38,Algorithmica,3,db/journals/algorithmica/algorithmica38.html#DyerGGJ03,https://doi.org/10.1007/s00453-003-1073-y +Andreas Björklund,Exact Algorithms for Exact Satisfiability and Number of Perfect Matchings.,2008,52,Algorithmica,2,db/journals/algorithmica/algorithmica52.html#BjorklundH08,https://doi.org/10.1007/s00453-007-9149-8 +Joseph Cheriyan,Algorithms for Dense Graphs and Networks on the Random Access Computer.,1996,15,Algorithmica,6,db/journals/algorithmica/algorithmica15.html#CheriyanM96,https://doi.org/10.1007/BF01940880 +Hsien-Kuei Hwang,Guest Editorial.,2013,66,Algorithmica,4,db/journals/algorithmica/algorithmica66.html#HwangMS13,https://doi.org/10.1007/s00453-013-9786-z +Jeffrey M. Jaffe,Distributed Deadlock Resolution in Store-and-Forward Networks.,1989,4,Algorithmica,3,db/journals/algorithmica/algorithmica4.html#JaffeS89,https://doi.org/10.1007/BF01553899 +Yijie Han,An O ( n 3(log log n /log n )5/4) Time Algorithm for All Pairs Shortest Path.,2008,51,Algorithmica,4,db/journals/algorithmica/algorithmica51.html#Han08,https://doi.org/10.1007/s00453-007-9063-0 +Susanne Albers,An Experimental Study of New and Known Online Packet Buffering Algorithms.,2010,57,Algorithmica,4,db/journals/algorithmica/algorithmica57.html#AlbersJ10,https://doi.org/10.1007/s00453-008-9230-y +Michael A. Bender,Communication-Aware Processor Allocation for Supercomputers: Finding Point Sets of Small Average Distance.,2008,50,Algorithmica,2,db/journals/algorithmica/algorithmica50.html#BenderBDFLMP08,https://doi.org/10.1007/s00453-007-9037-2 +Rom Aschner,Bounded-Angle Spanning Tree: Modeling Networks with Angular Constraints.,2017,77,Algorithmica,2,db/journals/algorithmica/algorithmica77.html#AschnerK17,https://doi.org/10.1007/s00453-015-0076-9 +Thomas Jansen 0001,Analysis of Evolutionary Algorithms for the Longest Common Subsequence Problem.,2010,57,Algorithmica,1,db/journals/algorithmica/algorithmica57.html#JansenW10,https://doi.org/10.1007/s00453-008-9243-6 +Cynthia A. Phillips,Optimal Time-Critical Scheduling via Resource Augmentation.,2002,32,Algorithmica,2,db/journals/algorithmica/algorithmica32.html#PhillipsSTW02,https://doi.org/10.1007/s00453-001-0068-9 +Michael M. Wu,An Efficient Distributed Algorithm for Maximum Matching in General Graphs.,1990,5,Algorithmica,3,db/journals/algorithmica/algorithmica5.html#WuL90,https://doi.org/10.1007/BF01840395 +Xi Chen 0001,A Simplicial Approach for Discrete Fixed Point Theorems.,2009,53,Algorithmica,2,db/journals/algorithmica/algorithmica53.html#ChenD09,https://doi.org/10.1007/s00453-008-9183-1 +Artur Czumaj,Fast Generation of Random Permutations Via Networks Simulation.,1998,21,Algorithmica,1,db/journals/algorithmica/algorithmica21.html#CzumajKKL98,https://doi.org/10.1007/PL00009206 +Pankaj K. Agarwal,Computing Approximate Shortest Paths on Convex Polytopes.,2002,33,Algorithmica,2,db/journals/algorithmica/algorithmica33.html#AgarwalHK02,https://doi.org/10.1007/s00453-001-0111-x +Michael A. Bekos,Improved Approximation Algorithms for Box Contact Representations.,2017,77,Algorithmica,3,db/journals/algorithmica/algorithmica77.html#BekosDFKKPSW17,https://doi.org/10.1007/s00453-016-0121-3 +Takeaki Uno,Fast Algorithms to Enumerate All Common Intervals of Two Permutations.,2000,26,Algorithmica,2,db/journals/algorithmica/algorithmica26.html#UnoY00,https://doi.org/10.1007/s004539910014 +Jay Belanger,Reductions Do Not Preserve Fast Convergence Rates in Average Time.,1999,23,Algorithmica,4,db/journals/algorithmica/algorithmica23.html#BelangerPW99,https://doi.org/10.1007/PL00009267 +David Fernández-Baca,On Nonlinear Parametric Search.,2001,30,Algorithmica,1,db/journals/algorithmica/algorithmica30.html#Fernandez-Baca01,https://doi.org/10.1007/s00453-001-0001-2 +Takeshi Tokuyama,Orthogonal Queries in Segments.,1997,18,Algorithmica,2,db/journals/algorithmica/algorithmica18.html#Tokuyama97,https://doi.org/10.1007/BF02526035 +Michael Luby,A Bidirectional Shortest-Path Algorithm with Good Average-Case Behavior.,1989,4,Algorithmica,4,db/journals/algorithmica/algorithmica4.html#LubyR89,https://doi.org/10.1007/BF01553908 +Mikhail J. Atallah,A Faster Parallel Algorithm for a Matrix Searching Problem.,1993,9,Algorithmica,2,db/journals/algorithmica/algorithmica9.html#Atallah93,https://doi.org/10.1007/BF01188710 +Erik D. Demaine,Exponential Speedup of Fixed-Parameter Algorithms for Classes of Graphs Excluding Single-Crossing Graphs as Minors.,2005,41,Algorithmica,4,db/journals/algorithmica/algorithmica41.html#DemaineHT05,https://doi.org/10.1007/s00453-004-1125-y +Karim Douïeb,Near-Entropy Hotlink Assignments.,2010,58,Algorithmica,2,db/journals/algorithmica/algorithmica58.html#DouiebL10,https://doi.org/10.1007/s00453-008-9259-y +Peter Damaschke,Multiple Spin-Block Decisions.,2006,44,Algorithmica,1,db/journals/algorithmica/algorithmica44.html#Damaschke06,https://doi.org/10.1007/s00453-005-1163-0 +Luciano Gualà,Exact and Approximate Truthful Mechanisms for the Shortest Paths Tree Problem.,2007,49,Algorithmica,3,db/journals/algorithmica/algorithmica49.html#GualaP07,https://doi.org/10.1007/s00453-007-9016-7 +Moses Charikar,Improved Approximation Algorithms for Label Cover Problems.,2011,61,Algorithmica,1,db/journals/algorithmica/algorithmica61.html#CharikarHK11,https://doi.org/10.1007/s00453-010-9464-3 +Dirk Sudholt,Hybridizing Evolutionary Algorithms with©0*Variable-Depth Search to Overcome Local Optima.,2011,59,Algorithmica,3,db/journals/algorithmica/algorithmica59.html#Sudholt11,https://doi.org/10.1007/s00453-009-9384-2 +Tiago Paixão,Towards a Runtime Comparison of Natural and Artificial Evolution.,2017,78,Algorithmica,2,db/journals/algorithmica/algorithmica78.html#PaixaoHST17,https://doi.org/10.1007/s00453-016-0212-1 +Esko Ukkonen,A Linear-Time Algorithm for Finding Approximate Shortest Common Superstrings.,1990,5,Algorithmica,3,db/journals/algorithmica/algorithmica5.html#Ukkonen90,https://doi.org/10.1007/BF01840391 +Uriel Feige,Oblivious Algorithms for the Maximum Directed Cut Problem.,2015,71,Algorithmica,2,db/journals/algorithmica/algorithmica71.html#FeigeJ15,https://doi.org/10.1007/s00453-013-9806-z +Shoshana Neuburger,Succinct 2D Dictionary Matching.,2013,65,Algorithmica,3,db/journals/algorithmica/algorithmica65.html#NeuburgerS13,https://doi.org/10.1007/s00453-012-9615-9 +Mark Lanthier,Approximating Shortest Paths on Weighted Polyhedral Surfaces.,2001,30,Algorithmica,4,db/journals/algorithmica/algorithmica30.html#LanthierMS01,https://doi.org/10.1007/s00453-001-0027-5 +Lusheng Wang,Approximation Algorithms for Tree Alignment with a Given Phylogeny.,1996,16,Algorithmica,3,db/journals/algorithmica/algorithmica16.html#WangJL96,https://doi.org/10.1007/BF01955679 +Karl Bringmann,De-anonymization of Heterogeneous Random Graphs in Quasilinear Time.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#BringmannFK18,https://doi.org/10.1007/s00453-017-0395-0 +S. Guha,Proximity Problems for Points on a Rectilinear Plane with Rectangular Obstacles.,1997,17,Algorithmica,3,db/journals/algorithmica/algorithmica17.html#GuhaS97,https://doi.org/10.1007/BF02523193 +Vijaya Ramachandran,Finding the Closed Partition of a Planar Graph.,1994,11,Algorithmica,5,db/journals/algorithmica/algorithmica11.html#RamachandranY94,https://doi.org/10.1007/BF01293266 +Reuven Cohen,Labeling Schemes for Tree Representation.,2009,53,Algorithmica,1,db/journals/algorithmica/algorithmica53.html#CohenFIKP09,https://doi.org/10.1007/s00453-007-9089-3 +Mariko Sakashita,Minimum Cost Source Location Problems with Flow Requirements.,2008,50,Algorithmica,4,db/journals/algorithmica/algorithmica50.html#SakashitaMF08,https://doi.org/10.1007/s00453-007-9012-y +Michael A. Bender,Reallocation Problems in Scheduling.,2015,73,Algorithmica,2,db/journals/algorithmica/algorithmica73.html#BenderFFFG15,https://doi.org/10.1007/s00453-014-9930-4 +Martin L. Brady,Hexagonal Models for Channel Routing.,1997,19,Algorithmica,3,db/journals/algorithmica/algorithmica19.html#BradyBP97,https://doi.org/10.1007/PL00009174 +Aleksander Vesel,Linear Recognition and Embedding of Fibonacci Cubes.,2015,71,Algorithmica,4,db/journals/algorithmica/algorithmica71.html#Vesel15,https://doi.org/10.1007/s00453-013-9839-3 +Guy Kortsarz,On the Hardness of Approximating Spanners.,2001,30,Algorithmica,3,db/journals/algorithmica/algorithmica30.html#Kortsarz01,https://doi.org/10.1007/s00453-001-0021-y +Stefan Fafianie,Speeding Up Dynamic Programming with Representative Sets: An Experimental Evaluation of Algorithms for Steiner Tree on Tree Decompositions.,2015,71,Algorithmica,3,db/journals/algorithmica/algorithmica71.html#FafianieBN15,https://doi.org/10.1007/s00453-014-9934-0 +Takashi Yamakawa,Self-Bilinear Map on Unknown Order Groups from Indistinguishability Obfuscation and Its Applications.,2017,79,Algorithmica,4,db/journals/algorithmica/algorithmica79.html#YamakawaYHK17,https://doi.org/10.1007/s00453-016-0250-8 +Mong-Jen Kao,Capacitated Domination: Problem Complexity and Approximation Algorithms.,2015,72,Algorithmica,1,db/journals/algorithmica/algorithmica72.html#KaoCL15,https://doi.org/10.1007/s00453-013-9844-6 +Mohsen Bayati,A Sequential Algorithm for Generating Random Graphs.,2010,58,Algorithmica,4,db/journals/algorithmica/algorithmica58.html#BayatiKS10,https://doi.org/10.1007/s00453-009-9340-1 +Vadim E. Levit,Complexity Results for Generating Subgraphs.,2018,80,Algorithmica,8,db/journals/algorithmica/algorithmica80.html#LevitT18,https://doi.org/10.1007/s00453-017-0325-1 +Martin Gavrilov,Combinatorial and Experimental Methods for Approximate Point Pattern Matching.,2004,38,Algorithmica,1,db/journals/algorithmica/algorithmica38.html#GavrilovIMV03,https://doi.org/10.1007/s00453-003-1043-4 +David Furcy,Optimal Program-Size Complexity for Self-Assembled Squares at Temperature 1 in 3D.,2017,77,Algorithmica,4,db/journals/algorithmica/algorithmica77.html#FurcyMS17,https://doi.org/10.1007/s00453-016-0147-6 +Leah Epstein,Selfish Bin Packing.,2011,60,Algorithmica,2,db/journals/algorithmica/algorithmica60.html#EpsteinK11,https://doi.org/10.1007/s00453-009-9348-6 +Meirav Zehavi,Algorithms for k-Internal Out-Branching and k-Tree in Bounded Degree Graphs.,2017,78,Algorithmica,1,db/journals/algorithmica/algorithmica78.html#Zehavi17,https://doi.org/10.1007/s00453-016-0166-3 +Timothy M. Chan,A Near-Linear Area Bound for Drawing Binary Trees.,2002,34,Algorithmica,1,db/journals/algorithmica/algorithmica34.html#Chan02,https://doi.org/10.1007/s00453-002-0937-x +Stephane Durocher,Linear-Space Data Structures for Range Frequency Queries on Arrays and Trees.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#DurocherSST16,https://doi.org/10.1007/s00453-014-9947-8 +Esteban Feuerstein,On-Line Multi-Threaded Paging.,2002,32,Algorithmica,1,db/journals/algorithmica/algorithmica32.html#FeuersteinL02,https://doi.org/10.1007/s00453-001-0073-z +Xujin Chen,An Efficient Algorithm for Finding Maximum Cycle Packings in Reducible Flow Graphs.,2006,44,Algorithmica,3,db/journals/algorithmica/algorithmica44.html#ChenZ06,https://doi.org/10.1007/s00453-005-1174-x +Vida Dujmovic,On the Parameterized Complexity of Layered Graph Drawing.,2008,52,Algorithmica,2,db/journals/algorithmica/algorithmica52.html#DujmovicFKLMNRRWW08,https://doi.org/10.1007/s00453-007-9151-1 +Kuan-Yu Chen,A Fully Compressed Algorithm for Computing the Edit Distance of Run-Length Encoded Strings.,2013,65,Algorithmica,2,db/journals/algorithmica/algorithmica65.html#ChenC13,https://doi.org/10.1007/s00453-011-9592-4 +Pankaj K. Agarwal,Improved Algorithms for Uniform Partitions of Points.,2002,32,Algorithmica,4,db/journals/algorithmica/algorithmica32.html#AgarwalBS02,https://doi.org/10.1007/s00453-001-0084-9 +Davide Bilò,Reoptimization of the Shortest Common Superstring Problem.,2011,61,Algorithmica,2,db/journals/algorithmica/algorithmica61.html#BiloBKKMSZ11,https://doi.org/10.1007/s00453-010-9419-8 +Yun Deng,Fast Compatibility Testing for Rooted Phylogenetic Trees.,2018,80,Algorithmica,8,db/journals/algorithmica/algorithmica80.html#DengF18,https://doi.org/10.1007/s00453-017-0330-4 +Michael L. Fredman,The Pairing Heap: A New Form of Self-Adjusting Heap.,1986,1,Algorithmica,1,db/journals/algorithmica/algorithmica1.html#FredmanSST86,https://doi.org/10.1007/BF01840439 +Giuseppe F. Italiano,Maintaining Spanning Trees of Small Diameter.,1998,22,Algorithmica,3,db/journals/algorithmica/algorithmica22.html#ItalianoR98,https://doi.org/10.1007/PL00009225 +Benjamin Doerr,The Impact of Random Initialization on the Runtime of Randomized Search Heuristics.,2016,75,Algorithmica,3,db/journals/algorithmica/algorithmica75.html#DoerrD16,https://doi.org/10.1007/s00453-015-0019-5 +Saverio Caminiti,Resilient Dynamic Programming.,2017,77,Algorithmica,2,db/journals/algorithmica/algorithmica77.html#CaminitiFFS17,https://doi.org/10.1007/s00453-015-0073-z +Jesper Jansson,Rooted Maximum Agreement Supertrees.,2005,43,Algorithmica,4,db/journals/algorithmica/algorithmica43.html#JanssonNSS05,https://doi.org/10.1007/s00453-004-1147-5 +Ming-Tat Ko,An Optimal Approximation Algorithm for the Rectilinear m-Center Problem.,1990,5,Algorithmica,3,db/journals/algorithmica/algorithmica5.html#KoLC90,https://doi.org/10.1007/BF01840393 +Chris Studholme,Random Matrices and Codes for the Erasure Channel.,2010,56,Algorithmica,4,db/journals/algorithmica/algorithmica56.html#StudholmeB10,https://doi.org/10.1007/s00453-008-9192-0 +Satoru Iwata 0001,Computing the Maximum Degree of Minors in Matrix Pencils via Combinatorial Relaxation.,2003,36,Algorithmica,4,db/journals/algorithmica/algorithmica36.html#Iwata03,https://doi.org/10.1007/s00453-003-1022-9 +S. Muthukrishnan,Stochastic Models for Budget Optimization in Search-Based Advertising.,2010,58,Algorithmica,4,db/journals/algorithmica/algorithmica58.html#MuthukrishnanPS10,https://doi.org/10.1007/s00453-009-9311-6 +Patrizio Angelini,Finding a Minimum-depth Embedding of a Planar Graph in O(n4) Time.,2011,60,Algorithmica,4,db/journals/algorithmica/algorithmica60.html#AngeliniBP11,https://doi.org/10.1007/s00453-009-9380-6 +Mikolaj Morzy,New Algorithms for Mining the Reputation of Participants of Online Auctions.,2008,52,Algorithmica,1,db/journals/algorithmica/algorithmica52.html#Morzy08,https://doi.org/10.1007/s00453-007-9106-6 +Gopal Pandurangan,Analysis of Randomized Protocols for Conflict-Free Distributed Access.,2007,49,Algorithmica,2,db/journals/algorithmica/algorithmica49.html#PanduranganP07,https://doi.org/10.1007/s00453-007-9027-4 +Koichi Yamazaki,Isomorphism for Graphs of Bounded Distance Width.,1999,24,Algorithmica,2,db/journals/algorithmica/algorithmica24.html#YamazakiBFT99,https://doi.org/10.1007/PL00009273 +Fedor V. Fomin,On Two Techniques of Combining Branching and Treewidth.,2009,54,Algorithmica,2,db/journals/algorithmica/algorithmica54.html#FominGSS09,https://doi.org/10.1007/s00453-007-9133-3 +Anne Benoit,Complexity Results for Throughput and Latency Optimization of Replicated and Data-parallel Workflows.,2010,57,Algorithmica,4,db/journals/algorithmica/algorithmica57.html#BenoitR10,https://doi.org/10.1007/s00453-008-9229-4 +Christopher M. Gold,A One-Step Crust and Skeleton Extraction Algorithm.,2001,30,Algorithmica,2,db/journals/algorithmica/algorithmica30.html#GoldS01,https://doi.org/10.1007/s00453-001-0014-x +Eric Anderson,Algorithms for Data Migration.,2010,57,Algorithmica,2,db/journals/algorithmica/algorithmica57.html#AndersonHHHKSSW10,https://doi.org/10.1007/s00453-008-9214-y +Holger Dell,Complexity and Approximability of Parameterized MAX-CSPs.,2017,79,Algorithmica,1,db/journals/algorithmica/algorithmica79.html#DellKLMM17,https://doi.org/10.1007/s00453-017-0310-8 +Danny Z. Chen,Computing the Visibility Polygon of an Island in a Polygonal Domain.,2017,77,Algorithmica,1,db/journals/algorithmica/algorithmica77.html#ChenW17,https://doi.org/10.1007/s00453-015-0058-y +Dan Gusfield,Extracting Maximal Information About Sets of Minimum Cuts.,1993,10,Algorithmica,1,db/journals/algorithmica/algorithmica10.html#GusfieldN93,https://doi.org/10.1007/BF01908632 +Erik D. Demaine,Worst-Case Optimal Tree Layout in External Memory.,2015,72,Algorithmica,2,db/journals/algorithmica/algorithmica72.html#DemaineIL15,https://doi.org/10.1007/s00453-013-9856-2 +Jerzy W. Jaromczyk,Numerical Stability of a Convex Hull Algorithm for Simple Polygons.,1993,10,Algorithmica,6,db/journals/algorithmica/algorithmica10.html#JaromczykW93,https://doi.org/10.1007/BF01891832 +Michela Mortara,Blowing Bubbles for Multi-Scale Analysis and Decomposition of Triangle Meshes.,2004,38,Algorithmica,1,db/journals/algorithmica/algorithmica38.html#MortaraPSFR03,https://doi.org/10.1007/s00453-003-1051-4 +Stasys Jukna,Limitations of Incremental Dynamic Programming.,2014,69,Algorithmica,2,db/journals/algorithmica/algorithmica69.html#Jukna14,https://doi.org/10.1007/s00453-013-9747-6 +Erricos John Kontoghiorghes,Parallel Strategies for Computing the Orthogonal Factorizations Used in the Estimation of Econometric Models.,1999,25,Algorithmica,1,db/journals/algorithmica/algorithmica25.html#Kontoghiorghes99,https://doi.org/10.1007/PL00009283 +Stephen V. Rice,Classes of Cost Functions for String Edit Distance.,1997,18,Algorithmica,2,db/journals/algorithmica/algorithmica18.html#RiceBN97,https://doi.org/10.1007/BF02526038 +Graham Cormode,Streaming Graph Computations with a Helpful Advisor.,2013,65,Algorithmica,2,db/journals/algorithmica/algorithmica65.html#CormodeMT13,https://doi.org/10.1007/s00453-011-9598-y +Luc Devroye,"On the Probablistic Worst-Case Time of ""Find"".",2001,31,Algorithmica,3,db/journals/algorithmica/algorithmica31.html#Devroye01,https://doi.org/10.1007/s00453-001-0046-2 +Keith E. Humenik,A Lower Bound on the Probability of Conflict Under Nonuniform Access in Database Systems.,1995,13,Algorithmica,3,db/journals/algorithmica/algorithmica13.html#HumenikMSY95,https://doi.org/10.1007/BF01190508 +Jochen Könemann,Approximating the Degree-Bounded Minimum Diameter Spanning Tree Problem.,2005,41,Algorithmica,2,db/journals/algorithmica/algorithmica41.html#KonemannLS04,https://doi.org/10.1007/s00453-004-1121-2 +MohammadHossein Bateni,Approximation Algorithms for the Directed k-Tour and k-Stroll Problems.,2013,65,Algorithmica,3,db/journals/algorithmica/algorithmica65.html#BateniC13,https://doi.org/10.1007/s00453-011-9610-6 +Subhash Suri,Compressing Two-Dimensional Routing Tables.,2003,35,Algorithmica,4,db/journals/algorithmica/algorithmica35.html#SuriSW03,https://doi.org/10.1007/s00453-002-1000-7 +Bernard Chazelle,Data Structures on Event Graphs.,2015,71,Algorithmica,4,db/journals/algorithmica/algorithmica71.html#ChazelleM15,https://doi.org/10.1007/s00453-013-9838-4 +Donatella Firmani,Strong Articulation Points and Strong Bridges in Large Scale Graphs.,2016,74,Algorithmica,3,db/journals/algorithmica/algorithmica74.html#FirmaniGILS16,https://doi.org/10.1007/s00453-015-9991-z +Nir Ailon,Property-Preserving Data Reconstruction.,2008,51,Algorithmica,2,db/journals/algorithmica/algorithmica51.html#AilonCCL08,https://doi.org/10.1007/s00453-007-9075-9 +Naoki Katoh,A Cautious Scheduler for Multistep Transactions.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#KatohKI87,https://doi.org/10.1007/BF01840347 +Nadja Betzler,On Making a Distinguished Vertex of Minimum Degree by Vertex Deletion.,2014,68,Algorithmica,3,db/journals/algorithmica/algorithmica68.html#BetzlerBBNU14,https://doi.org/10.1007/s00453-012-9695-6 +Esther M. Arkin,Optimization Problems Related to Zigzag Pocket Machining.,2000,26,Algorithmica,2,db/journals/algorithmica/algorithmica26.html#ArkinHS00,https://doi.org/10.1007/s004539910010 +David Avis,Generating Rooted Triangulations Without Repetitions.,1996,16,Algorithmica,6,db/journals/algorithmica/algorithmica16.html#Avis96,https://doi.org/10.1007/BF01944353 +Lars Arge,The Buffer Tree: A Technique for Designing Batched External Data Structures.,2003,37,Algorithmica,1,db/journals/algorithmica/algorithmica37.html#Arge03,https://doi.org/10.1007/s00453-003-1021-x +Aris Anagnostopoulos,Online Network Design with Outliers.,2016,76,Algorithmica,1,db/journals/algorithmica/algorithmica76.html#Anagnostopoulos16,https://doi.org/10.1007/s00453-015-0021-y +Flávio Keidi Miyazawa,Polynomial-Time Approximation Schemes for Circle and Other Packing Problems.,2016,76,Algorithmica,2,db/journals/algorithmica/algorithmica76.html#MiyazawaPSSW16,https://doi.org/10.1007/s00453-015-0052-4 +Donald B. Johnson,Optimal Algorithms for the Single and Multiple Vertex Updating Problems of a Minimum Spanning Tree.,1996,16,Algorithmica,6,db/journals/algorithmica/algorithmica16.html#JohnsonM96,https://doi.org/10.1007/BF01944354 +Craig Dillabaugh,I/O-Efficient Path Traversal in Succinct Planar Graphs.,2017,77,Algorithmica,3,db/journals/algorithmica/algorithmica77.html#DillabaughHMZ17,https://doi.org/10.1007/s00453-015-0086-7 +Frank K. Hwang,Comments on Bern's Probabilistic Results on Rectilinear Steiner Trees.,1990,5,Algorithmica,4,db/journals/algorithmica/algorithmica5.html#HwangY90,https://doi.org/10.1007/BF01840406 +Therese C. Biedl,On Triangulating Planar Graphs Under the Four-Connectivity Constraint.,1997,19,Algorithmica,4,db/journals/algorithmica/algorithmica19.html#BiedlKK97,https://doi.org/10.1007/PL00009182 +Yossi Azar,Fair versus Unrestricted Bin Packing.,2002,34,Algorithmica,2,db/journals/algorithmica/algorithmica34.html#AzarBFLNE02,https://doi.org/10.1007/s00453-002-0965-6 +Jin-yi Cai,Foreword.,1999,23,Algorithmica,4,db/journals/algorithmica/algorithmica23.html#CaiW99,https://doi.org/10.1007/PL00009262 +Prosenjit Bose,Computing the Greedy Spanner in Near-Quadratic Time.,2010,58,Algorithmica,3,db/journals/algorithmica/algorithmica58.html#BoseCFMS10,https://doi.org/10.1007/s00453-009-9293-4 +David Fernández-Baca,On the Efficiency of Maximum-Flow Algorithms on Networks with Small Integer Capacities.,1989,4,Algorithmica,2,db/journals/algorithmica/algorithmica4.html#Fernandez-BacaM89,https://doi.org/10.1007/BF01553885 +Hiroshi Nagamochi,Minimum Degree Orderings.,2010,56,Algorithmica,1,db/journals/algorithmica/algorithmica56.html#Nagamochi10,https://doi.org/10.1007/s00453-008-9239-2 +Xiaotie Deng,Preface.,2008,51,Algorithmica,3,db/journals/algorithmica/algorithmica51.html#DengD08,https://doi.org/10.1007/s00453-007-9000-2 +Pilar de la Torre,Optimal Edge Ranking of Trees in Polynomial Time.,1995,13,Algorithmica,6,db/journals/algorithmica/algorithmica13.html#TorreGS95,https://doi.org/10.1007/BF01189071 +Marek Cygan,Erratum to: Foreword: Special Issue on IPEC 2014.,2016,75,Algorithmica,2,db/journals/algorithmica/algorithmica75.html#CyganH16a,https://doi.org/10.1007/s00453-016-0161-8 +Rajiv Gandhi,Combinatorial Algorithms for Data Migration to Minimize Average Completion Time.,2009,54,Algorithmica,1,db/journals/algorithmica/algorithmica54.html#GandhiM09,https://doi.org/10.1007/s00453-007-9118-2 +Maria Paola Bianchi,Online Coloring of Bipartite Graphs with and without Advice.,2014,70,Algorithmica,1,db/journals/algorithmica/algorithmica70.html#BianchiBHK14,https://doi.org/10.1007/s00453-013-9819-7 +Paris C. Kanellakis,On the Analysis of Cooperation and Antagonism in Networks of Communicating Processes.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#KanellakisS88,https://doi.org/10.1007/BF01762125 +Jérémie Chalopin,Mapping Simple Polygons: How Robots Benefit from Looking Back.,2013,65,Algorithmica,1,db/journals/algorithmica/algorithmica65.html#Chalopin0DMW13,https://doi.org/10.1007/s00453-011-9572-8 +Laura A. Sanchis,Experimental Analysis of Heuristic Algorithms for the Dominating Set Problem.,2002,33,Algorithmica,1,db/journals/algorithmica/algorithmica33.html#Sanchis02,https://doi.org/10.1007/s00453-001-0101-z +Israel Cidon,Editor's Foreword: Special Issue on Algorithmic Aspects of Communications.,1989,4,Algorithmica,3,db/journals/algorithmica/algorithmica4.html#CidonG89,https://doi.org/10.1007/BF01553892 +Shlomi Dolev,Wait-Free Clock Synchronization.,1997,18,Algorithmica,4,db/journals/algorithmica/algorithmica18.html#DolevW97,https://doi.org/10.1007/PL00009167 +Roberto Battiti,Reactive Local Search for the Maximum Clique Problem.,2001,29,Algorithmica,4,db/journals/algorithmica/algorithmica29.html#BattitiP01,https://doi.org/10.1007/s004530010074 +Surender Baswana,Incremental Algorithm for Maintaining a DFS Tree for Undirected Graphs.,2017,79,Algorithmica,2,db/journals/algorithmica/algorithmica79.html#BaswanaK17,https://doi.org/10.1007/s00453-016-0204-1 +Sander P. A. Alewijnse,Distribution-Sensitive Construction of the Greedy Spanner.,2017,78,Algorithmica,1,db/journals/algorithmica/algorithmica78.html#AlewijnseBBB17,https://doi.org/10.1007/s00453-016-0160-9 +Hiroyuki Kazuyoshi,An Approximation Algorithm for a Large-Scale Facility Location Problem.,2003,35,Algorithmica,3,db/journals/algorithmica/algorithmica35.html#Kazuyoshi03,https://doi.org/10.1007/s00453-002-0996-z +Yossi Azar,On Capital Investment.,1999,25,Algorithmica,1,db/journals/algorithmica/algorithmica25.html#AzarBFFLR99,https://doi.org/10.1007/PL00009281 +Leah Epstein,Online File Caching with Rejection Penalties.,2015,71,Algorithmica,2,db/journals/algorithmica/algorithmica71.html#EpsteinILN15,https://doi.org/10.1007/s00453-013-9793-0 +David Eppstein,Diameter and Treewidth in Minor-Closed Graph Families.,2000,27,Algorithmica,3,db/journals/algorithmica/algorithmica27.html#Eppstein00,https://doi.org/10.1007/s004530010020 +Yuichi Yoshida,Testing Outerplanarity of Bounded Degree Graphs.,2015,73,Algorithmica,1,db/journals/algorithmica/algorithmica73.html#YoshidaI15,https://doi.org/10.1007/s00453-014-9897-1 +Benjamin Doerr,Editorial.,2010,57,Algorithmica,1,db/journals/algorithmica/algorithmica57.html#DoerrNW10,https://doi.org/10.1007/s00453-009-9373-5 +Richard J. Anderson,Deterministic Parallel List Ranking.,1991,6,Algorithmica,6,db/journals/algorithmica/algorithmica6.html#AndersonM91,https://doi.org/10.1007/BF01759076 +János Pach,Guest Editors' Foreword.,2007,47,Algorithmica,4,db/journals/algorithmica/algorithmica47.html#PachS07,https://doi.org/10.1007/s00453-006-0147-z +Tamara Mchedlidze,Extending Convex Partial Drawings of Graphs.,2016,76,Algorithmica,1,db/journals/algorithmica/algorithmica76.html#MchedlidzeNR16,https://doi.org/10.1007/s00453-015-0018-6 +Keith Edwards,A General Reduction Theorem with Applications to Pathwidth and the Complexity of MAX 2-CSP.,2015,72,Algorithmica,4,db/journals/algorithmica/algorithmica72.html#EdwardsM15,https://doi.org/10.1007/s00453-014-9883-7 +J. Ian Munro,Succinct Posets.,2016,76,Algorithmica,2,db/journals/algorithmica/algorithmica76.html#MunroN16,https://doi.org/10.1007/s00453-015-0047-1 +David Fernández-Baca,Editorial.,2014,70,Algorithmica,2,db/journals/algorithmica/algorithmica70.html#Fernandez-Baca14,https://doi.org/10.1007/s00453-014-9900-x +Patchrawat Uthaisombut,Generalization of EDF and LLF: Identifying All Optimal Online Algorithms for Minimizing Maximum Lateness.,2008,50,Algorithmica,3,db/journals/algorithmica/algorithmica50.html#Uthaisombut08,https://doi.org/10.1007/s00453-007-9083-9 +Marcin Peczarski,New Results in Minimum-Comparison Sorting.,2004,40,Algorithmica,2,db/journals/algorithmica/algorithmica40.html#Peczarski04,https://doi.org/10.1007/s00453-004-1100-7 +Ojas Parekh,Path Hitting in Acyclic Graphs.,2008,52,Algorithmica,4,db/journals/algorithmica/algorithmica52.html#ParekhS08,https://doi.org/10.1007/s00453-007-9087-5 +Jean R. S. Blair,Minimizing Channel Density in Standard Cell Layout.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#BlairKLS87,https://doi.org/10.1007/BF01840363 +Niv Buchbinder,Incentive Compatible Mulit-Unit Combinatorial Auctions: A Primal Dual Approach.,2015,72,Algorithmica,1,db/journals/algorithmica/algorithmica72.html#BuchbinderG15,https://doi.org/10.1007/s00453-013-9854-4 +Andreas Brandstädt,Finding Dominating Induced Matchings in P8 -Free Graphs in Polynomial Time.,2017,77,Algorithmica,4,db/journals/algorithmica/algorithmica77.html#BrandstadtM17,https://doi.org/10.1007/s00453-016-0150-y +Jannis Bulian,Graph Isomorphism Parameterized by Elimination Distance to Bounded Degree.,2016,75,Algorithmica,2,db/journals/algorithmica/algorithmica75.html#BulianD16,https://doi.org/10.1007/s00453-015-0045-3 +Petra Sparl,1-Local 7/5-Competitive Algorithm for Multicoloring Hexagonal Graphs.,2012,64,Algorithmica,4,db/journals/algorithmica/algorithmica64.html#SparlWZ12,https://doi.org/10.1007/s00453-011-9562-x +Quentin F. Stout,Isotonic Regression for Multiple Independent Variables.,2015,71,Algorithmica,2,db/journals/algorithmica/algorithmica71.html#Stout15,https://doi.org/10.1007/s00453-013-9814-z +Yefim Dinitz,Maintaining the Classes of 4-Edge-Connectivity in a Graph On-Line.,1998,20,Algorithmica,3,db/journals/algorithmica/algorithmica20.html#DinitzW98,https://doi.org/10.1007/PL00009195 +Leana Golubchik,Data Migration on Parallel Disks: Algorithms and Evaluation.,2006,45,Algorithmica,1,db/journals/algorithmica/algorithmica45.html#GolubchikKKSW06,https://doi.org/10.1007/s00453-005-1194-6 +Masafumi Yamashita,Searching for Mobile Intruders in a Polygonal Region by a Group of Mobile Searchers.,2001,31,Algorithmica,2,db/journals/algorithmica/algorithmica31.html#YamashitaUSK01,https://doi.org/10.1007/s00453-001-0045-3 +Mirela Damian,Computing Optimal Diameter-Bounded Polygon Partitions.,2004,40,Algorithmica,1,db/journals/algorithmica/algorithmica40.html#DamianP04,https://doi.org/10.1007/s00453-004-1092-3 +Vida Dujmovic,An Efficient Fixed Parameter Tractable Algorithm for 1-Sided Crossing Minimization.,2004,40,Algorithmica,1,db/journals/algorithmica/algorithmica40.html#DujmovicW04,https://doi.org/10.1007/s00453-004-1093-2 +Eric McDermid,Sex-Equal Stable Matchings: Complexity and Exact Algorithms.,2014,68,Algorithmica,3,db/journals/algorithmica/algorithmica68.html#McDermidI14,https://doi.org/10.1007/s00453-012-9672-0 +Sung-woo Cho,Pricing for Fairness: Distributed Resource Allocation for Multiple Objectives.,2010,57,Algorithmica,4,db/journals/algorithmica/algorithmica57.html#ChoG10,https://doi.org/10.1007/s00453-010-9405-1 +Keren Cohen,On Minimum Witnesses for Boolean Matrix Multiplication.,2014,69,Algorithmica,2,db/journals/algorithmica/algorithmica69.html#CohenY14,https://doi.org/10.1007/s00453-012-9742-3 +Thomas Christof,Algorithmic Aspects of Using Small Instance Relaxations in Parallel Branch-and-Cut.,2001,30,Algorithmica,4,db/journals/algorithmica/algorithmica30.html#ChristofR01,https://doi.org/10.1007/s00453-001-0029-3 +Yoshifumi Inui,Quantum Property Testing of Group Solvability.,2011,59,Algorithmica,1,db/journals/algorithmica/algorithmica59.html#InuiG11,https://doi.org/10.1007/s00453-009-9338-8 +Joseph Y.-T. Leung,Minimizing Mean Flow Time with Error Constraint.,1998,20,Algorithmica,1,db/journals/algorithmica/algorithmica20.html#LeungTWY98,https://doi.org/10.1007/PL00009185 +Michael Drmota,The Asymptotic Number of Leftist Trees.,2001,31,Algorithmica,3,db/journals/algorithmica/algorithmica31.html#Drmota01a,https://doi.org/10.1007/s00453-001-0055-1 +Pangfeng Liu,An Approximation Algorithm and Dynamic Programming for Reduction in Heterogeneous Environments.,2009,53,Algorithmica,3,db/journals/algorithmica/algorithmica53.html#LiuKW09,https://doi.org/10.1007/s00453-007-9113-7 +Julian Arz,Lempel-Ziv-78 Compressed String Dictionaries.,2018,80,Algorithmica,7,db/journals/algorithmica/algorithmica80.html#ArzF18,https://doi.org/10.1007/s00453-017-0348-7 +Danny Z. Chen,Efficient Algorithms for k-Terminal Cuts on Planar Graphs.,2004,38,Algorithmica,2,db/journals/algorithmica/algorithmica38.html#ChenW03,https://doi.org/10.1007/s00453-003-1061-2 +Lata Narayanan,Static Frequency Assignment in Cellular Networks.,2001,29,Algorithmica,3,db/journals/algorithmica/algorithmica29.html#NarayananS01,https://doi.org/10.1007/s004530010067 +Vincenzo Auletta,Metastability of Logit Dynamics for Coordination Games.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#AulettaFPP18,https://doi.org/10.1007/s00453-017-0371-8 +Prosenjit Bose,Some Aperture-Angle Optimization Problems.,2002,33,Algorithmica,4,db/journals/algorithmica/algorithmica33.html#BoseHOST02,https://doi.org/10.1007/s00453-001-0112-9 +Antonio Fernández Anta,Unbounded Contention Resolution in Multiple-Access Channels.,2013,67,Algorithmica,3,db/journals/algorithmica/algorithmica67.html#AntaMM13,https://doi.org/10.1007/s00453-013-9816-x +Martin Farach,String Matching in Lempel-Ziv Compressed Strings.,1998,20,Algorithmica,4,db/journals/algorithmica/algorithmica20.html#FarachT98,https://doi.org/10.1007/PL00009202 +Mangesh Gupte,Analyses of Cardinal Auctions.,2015,71,Algorithmica,4,db/journals/algorithmica/algorithmica71.html#GupteKM15,https://doi.org/10.1007/s00453-013-9832-x +Bruce Randall Donald,The Complexity of Planar Compliant Motion Planning Under Uncertainty.,1990,5,Algorithmica,3,db/journals/algorithmica/algorithmica5.html#Donald90,https://doi.org/10.1007/BF01840394 +Jiecao Chen,Improved Algorithms for Distributed Entropy Monitoring.,2017,78,Algorithmica,3,db/journals/algorithmica/algorithmica78.html#ChenZ17,https://doi.org/10.1007/s00453-016-0194-z +Björn Lisper,Preconditioning Index Set Transformations for Time-Optimal Affine Scheduling.,1996,15,Algorithmica,2,db/journals/algorithmica/algorithmica15.html#Lisper96,https://doi.org/10.1007/BF01941688 +Klaus Jansen,Guest Editors' Introduction.,2001,30,Algorithmica,3,db/journals/algorithmica/algorithmica30.html#JansenR01,https://doi.org/10.1007/s00453-001-0025-7 +J. F. Weng,Steiner Minimal Trees with One Polygonal Obstacle.,2001,29,Algorithmica,4,db/journals/algorithmica/algorithmica29.html#WengS01,https://doi.org/10.1007/s00453-001-0002-1 +Anne Berry,Maximum Cardinality Search for Computing Minimal Triangulations of Graphs.,2004,39,Algorithmica,4,db/journals/algorithmica/algorithmica39.html#BerryBHP04,https://doi.org/10.1007/s00453-004-1084-3 +Guy Feigenblat,Erratum to: A Grouping Approach for Succinct Dynamic Dictionary Matching.,2017,77,Algorithmica,1,db/journals/algorithmica/algorithmica77.html#FeigenblatPS17a,https://doi.org/10.1007/s00453-016-0183-2 +Jens Gramm,Fixed-Parameter Algorithms for CLOSEST STRING and Related Problems.,2003,37,Algorithmica,1,db/journals/algorithmica/algorithmica37.html#GrammNR03,https://doi.org/10.1007/s00453-003-1028-3 +Martijn van Ee,The A Priori Traveling Repairman Problem.,2018,80,Algorithmica,10,db/journals/algorithmica/algorithmica80.html#EeS18,https://doi.org/10.1007/s00453-017-0351-z +Khaled M. Elbassioni,On Randomized Fictitious Play for Approximating Saddle Points Over Convex Sets.,2015,73,Algorithmica,2,db/journals/algorithmica/algorithmica73.html#ElbassioniMMR15,https://doi.org/10.1007/s00453-014-9902-8 +Minzhu Xie,An Improved (and Practical) Parameterized Algorithm for the Individual Haplotyping Problem MFR with Mate-Pairs.,2008,52,Algorithmica,2,db/journals/algorithmica/algorithmica52.html#XieW08,https://doi.org/10.1007/s00453-007-9150-2 +Pankaj K. Agarwal,Dynamic Half-Space Range Reporting and Its Applications.,1995,13,Algorithmica,4,db/journals/algorithmica/algorithmica13.html#AgarwalM95,https://doi.org/10.1007/BF01293483 +Daniel M. Gordon,Parallel Sorting on Cayley Graphs.,1991,6,Algorithmica,4,db/journals/algorithmica/algorithmica6.html#Gordon91,https://doi.org/10.1007/BF01759059 +Xiao Zhou,Multicolorings of Series-Parallel Graphs.,2004,38,Algorithmica,2,db/journals/algorithmica/algorithmica38.html#ZhouN03,https://doi.org/10.1007/s00453-003-1060-3 +Leizhen Cai,Incompressibility of H-Free Edge Modification Problems.,2015,71,Algorithmica,3,db/journals/algorithmica/algorithmica71.html#CaiC15,https://doi.org/10.1007/s00453-014-9937-x +Martin Niemeier,Scheduling with an Orthogonal Resource Constraint.,2015,71,Algorithmica,4,db/journals/algorithmica/algorithmica71.html#NiemeierW15,https://doi.org/10.1007/s00453-013-9829-5 +Babak Behsaz,New Approximation Algorithms for the Unsplittable Capacitated Facility Location Problem.,2016,75,Algorithmica,1,db/journals/algorithmica/algorithmica75.html#BehsazSS16,https://doi.org/10.1007/s00453-015-0012-z +P. B. Ramprasad,A Linear Algorithm for the All-Bidirectional-Edges Problem on Planar Graphs.,1993,9,Algorithmica,3,db/journals/algorithmica/algorithmica9.html#RamprasadR93,https://doi.org/10.1007/BF01190896 +Ilya Baran,Optimally Adaptive Integration of Univariate Lipschitz Functions.,2008,50,Algorithmica,2,db/journals/algorithmica/algorithmica50.html#BaranDK08,https://doi.org/10.1007/s00453-007-9093-7 +Peter Eades,Straight-Line Drawing Algorithms for Hierarchical Graphs and Clustered Graphs.,2006,44,Algorithmica,1,db/journals/algorithmica/algorithmica44.html#EadesFLN06,https://doi.org/10.1007/s00453-004-1144-8 +Patrizio Angelini,Monotone Drawings of Graphs with Fixed Embedding.,2015,71,Algorithmica,2,db/journals/algorithmica/algorithmica71.html#AngeliniDKMRSW15,https://doi.org/10.1007/s00453-013-9790-3 +Aparna Das,Approximating Minimum Manhattan Networks in Higher Dimensions.,2015,71,Algorithmica,1,db/journals/algorithmica/algorithmica71.html#DasG0KSW15,https://doi.org/10.1007/s00453-013-9778-z +Bernd Gärtner,Unique Sink Orientations of Grids.,2008,51,Algorithmica,2,db/journals/algorithmica/algorithmica51.html#GartnerMR08,https://doi.org/10.1007/s00453-007-9090-x +Franz Aurenhammer,Minkowski-Type Theorems and Least-Squares Clustering.,1998,20,Algorithmica,1,db/journals/algorithmica/algorithmica20.html#AurenhammerHA98,https://doi.org/10.1007/PL00009187 +Rémy Belmonte,Induced Minor Free Graphs: Isomorphism and Clique-Width.,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#BelmonteOS18,https://doi.org/10.1007/s00453-016-0234-8 +Emilio Di Giacomo,Book Embeddability of Series-Parallel Digraphs.,2006,45,Algorithmica,4,db/journals/algorithmica/algorithmica45.html#GiacomoDLW06,https://doi.org/10.1007/s00453-005-1185-7 +Reid Andersen,Drawing Power Law Graphs Using a Local/Global Decomposition.,2007,47,Algorithmica,4,db/journals/algorithmica/algorithmica47.html#AndersenCL07a,https://doi.org/10.1007/s00453-006-3160-3 +Andreas Wiese,Independent Set of Convex Polygons: From $$n^{\epsilon }$$ n and#1013* to $$1+\epsilon $$ 1 + and#1013* via Shrinking.,2018,80,Algorithmica,3,db/journals/algorithmica/algorithmica80.html#Wiese18,https://doi.org/10.1007/s00453-017-0347-8 +Sergio De Agostino,An O(n®9*) Recognition Algorithm for Bithreshold Graphs.,1997,17,Algorithmica,4,db/journals/algorithmica/algorithmica17.html#AgostinoPS97,https://doi.org/10.1007/BF02523681 +Naveen Garg 0001,An O (log k)-Approximation Algorithm for the k Minimum Spanning Tree Problem in the Plane.,1997,18,Algorithmica,1,db/journals/algorithmica/algorithmica18.html#GargH97,https://doi.org/10.1007/BF02523691 +Valerie King,Sleeping on the Job: Energy-Efficient and Robust Broadcast for Radio Networks.,2011,61,Algorithmica,3,db/journals/algorithmica/algorithmica61.html#KingPSY11,https://doi.org/10.1007/s00453-010-9422-0 +Joachim von zur Gathen,GCD of Random Linear Combinations.,2006,46,Algorithmica,1,db/journals/algorithmica/algorithmica46.html#GathenS06,https://doi.org/10.1007/s00453-006-0072-1 +Bin Fu,A Comparison of Resource-Bounded Molecular Computation Models.,1999,24,Algorithmica,2,db/journals/algorithmica/algorithmica24.html#FuB99,https://doi.org/10.1007/PL00009276 +Feodor F. Dragan,How to Use Spanning Trees to Navigate in Graphs.,2013,66,Algorithmica,3,db/journals/algorithmica/algorithmica66.html#DraganX13,https://doi.org/10.1007/s00453-012-9647-1 +Ari Freund 0001,Improved Subquadratic 3SUM.,2017,77,Algorithmica,2,db/journals/algorithmica/algorithmica77.html#Freund17,https://doi.org/10.1007/s00453-015-0079-6 +Guy Kortsarz,Approximating Node Connectivity Problems via Set Covers.,2003,37,Algorithmica,2,db/journals/algorithmica/algorithmica37.html#KortsarzN03,https://doi.org/10.1007/s00453-003-1027-4 +Teofilo F. Gonzalez,Approximation Algorithms for Partitioning a Rectangle with Interior Points.,1990,5,Algorithmica,1,db/journals/algorithmica/algorithmica5.html#GonzalezZ90,https://doi.org/10.1007/BF01840375 +Atlas F. Cook IV,Shortest Path Problems on a Polyhedral Surface.,2014,69,Algorithmica,1,db/journals/algorithmica/algorithmica69.html#CookW14,https://doi.org/10.1007/s00453-012-9723-6 +Klaus Jansen,Scheduling Malleable Parallel Tasks: An Asymptotic Fully Polynomial Time Approximation Scheme.,2004,39,Algorithmica,1,db/journals/algorithmica/algorithmica39.html#Jansen04,https://doi.org/10.1007/s00453-003-1078-6 +Wing-Kai Hon,A Space and Time Efficient Algorithm for Constructing Compressed Suffix Arrays.,2007,48,Algorithmica,1,db/journals/algorithmica/algorithmica48.html#HonLSSY07,https://doi.org/10.1007/s00453-006-1228-8 +Theodore H. Romer,An Algorithm Reminiscent of Euclidean-gcd Computing a Function Related to Pinwheel Scheduling.,1997,17,Algorithmica,1,db/journals/algorithmica/algorithmica17.html#RomerR97,https://doi.org/10.1007/BF02523234 +Hsiao-Feng Steven Chen,A Faster One-Dimensional Topological Compaction Algorithm with Jog Insertion.,2000,28,Algorithmica,4,db/journals/algorithmica/algorithmica28.html#ChenL00,https://doi.org/10.1007/s004530010044 +Giuseppe F. Italiano,Guest Editor's Introduction.,2001,30,Algorithmica,4,db/journals/algorithmica/algorithmica30.html#Italiano01,https://doi.org/10.1007/s00453-001-0035-5 +Kurt Mehlhorn,Dynamic Fractional Cascading.,1990,5,Algorithmica,2,db/journals/algorithmica/algorithmica5.html#MehlhornN90,https://doi.org/10.1007/BF01840386 +Chris Dowden,Subgraphs of 4-Regular Planar Graphs.,2011,61,Algorithmica,3,db/journals/algorithmica/algorithmica61.html#DowdenA11,https://doi.org/10.1007/s00453-010-9435-8 +Philippe Flajolet,On the Analysis of Linear Probing Hashing.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#FlajoletPV98,https://doi.org/10.1007/PL00009236 +Ildikó Schlotter,A Connection Between Sports and Matroids: How Many Teams Can We Beat?,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#SchlotterC18,https://doi.org/10.1007/s00453-016-0256-2 +Neal E. Young,On-Line File Caching.,2002,33,Algorithmica,3,db/journals/algorithmica/algorithmica33.html#Young02,https://doi.org/10.1007/s00453-001-0124-5 +Ying Xu 0002,An O(n1.5) Deterministic Gossiping Algorithm for Radio Networks.,2003,36,Algorithmica,1,db/journals/algorithmica/algorithmica36.html#Xu03,https://doi.org/10.1007/s00453-002-1010-5 +Siu-Wing Cheng,Minimum Dominating Sets of Intervals on Lines.,1998,20,Algorithmica,3,db/journals/algorithmica/algorithmica20.html#ChengKZ98,https://doi.org/10.1007/PL00009197 +Ulrich Fößmeier,On Exact Solutions for the Rectilinear Steiner Tree Problem Part I: Theoretical Results.,2000,26,Algorithmica,1,db/journals/algorithmica/algorithmica26.html#FossmeierK00,https://doi.org/10.1007/s004539910005 +Pascal Ferraro,An Edit Distance between Quotiented Trees.,2003,36,Algorithmica,1,db/journals/algorithmica/algorithmica36.html#FerraroG03,https://doi.org/10.1007/s00453-002-1002-5 +George Christodoulou 0001,Contention Resolution under Selfishness.,2014,70,Algorithmica,4,db/journals/algorithmica/algorithmica70.html#0001LP14,https://doi.org/10.1007/s00453-013-9773-4 +Ildikó Schlotter,Correction to: A Connection Between Sports and Matroids: How Many Teams Can We Beat?,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#SchlotterC18a,https://doi.org/10.1007/s00453-017-0378-1 +Shoshana Marcus,2D Lyndon Words and Applications.,2017,77,Algorithmica,1,db/journals/algorithmica/algorithmica77.html#MarcusS17,https://doi.org/10.1007/s00453-015-0065-z +Kevin Buchin,Preprocessing Imprecise Points for Delaunay Triangulation: Simplified and Extended.,2011,61,Algorithmica,3,db/journals/algorithmica/algorithmica61.html#BuchinLMM11,https://doi.org/10.1007/s00453-010-9430-0 +Pradeesha Ashok,Multivariate Complexity Analysis of Geometric Red Blue Set Cover.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#AshokKS17,https://doi.org/10.1007/s00453-016-0216-x +Victor Chepoi,Augmenting Trees to Meet Biconnectivity and Diameter Constraints.,2002,33,Algorithmica,2,db/journals/algorithmica/algorithmica33.html#ChepoiV02,https://doi.org/10.1007/s00453-001-0113-8 +Ka Wong Chong,Approximating Biconnectivity in Parallel.,1998,21,Algorithmica,4,db/journals/algorithmica/algorithmica21.html#ChongL98,https://doi.org/10.1007/PL00009221 +Paolo Ferragina,Distribution-Aware Compressed Full-Text Indexes.,2013,67,Algorithmica,4,db/journals/algorithmica/algorithmica67.html#FerraginaSV13,https://doi.org/10.1007/s00453-013-9782-3 +Ernst Althaus,Approximation Algorithms for the Interval Constrained Coloring Problem.,2011,61,Algorithmica,2,db/journals/algorithmica/algorithmica61.html#AlthausCEKM11,https://doi.org/10.1007/s00453-010-9406-0 +Robert Dabrowski,On Word Equations in One Variable.,2011,60,Algorithmica,4,db/journals/algorithmica/algorithmica60.html#DabrowskiP11,https://doi.org/10.1007/s00453-009-9375-3 +Panagiotis Cheilaris,A Randomized Incremental Algorithm for the Hausdorff Voronoi Diagram of Non-crossing Clusters.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#CheilarisKLP16,https://doi.org/10.1007/s00453-016-0118-y +Boris V. Cherkassky,On Implementing the Push-Relabel Method for the Maximum Flow Problem.,1997,19,Algorithmica,4,db/journals/algorithmica/algorithmica19.html#CherkasskyG97,https://doi.org/10.1007/PL00009180 +Michael Drmota,A Unified Presentation of Some Urn Models.,2001,29,Algorithmica,1,db/journals/algorithmica/algorithmica29.html#DrmotaGG01,https://doi.org/10.1007/BF02679616 +Li-Sha Huang,A Primal-Dual Algorithm for the Computation of Market Equilibrium with Logarithmic Utility Functions.,2008,51,Algorithmica,3,db/journals/algorithmica/algorithmica51.html#Huang08,https://doi.org/10.1007/s00453-007-9102-x +Matthew D. Williamson,Fast Algorithms for the Undirected Negative Cost Cycle Detection Problem.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#WilliamsonES16,https://doi.org/10.1007/s00453-014-9945-x +Ruiwen Chen,An Improved Deterministic #SAT Algorithm for Small de Morgan Formulas.,2016,76,Algorithmica,1,db/journals/algorithmica/algorithmica76.html#ChenKS16,https://doi.org/10.1007/s00453-015-0020-z +Regant Y. S. Hung,Design and Analysis of Online Batching Systems.,2010,57,Algorithmica,2,db/journals/algorithmica/algorithmica57.html#HungT10,https://doi.org/10.1007/s00453-008-9201-3 +Yiling Chen,Gaming Prediction Markets: Equilibrium Strategies with a Market Maker.,2010,58,Algorithmica,4,db/journals/algorithmica/algorithmica58.html#ChenDSRPHFG10,https://doi.org/10.1007/s00453-009-9323-2 +Seok-Hee Hong,A Linear-Time Algorithm for Testing Outer-1-Planarity.,2015,72,Algorithmica,4,db/journals/algorithmica/algorithmica72.html#HongEKLSS15,https://doi.org/10.1007/s00453-014-9890-8 +Naveen Garg 0001,Primal-Dual Approximation Algorithms for Integral Flow and Multicut in Trees.,1997,18,Algorithmica,1,db/journals/algorithmica/algorithmica18.html#GargVY97,https://doi.org/10.1007/BF02523685 +Therese C. Biedl,Three-Dimensional Orthogonal Graph Drawing with Optimal Volume.,2006,44,Algorithmica,3,db/journals/algorithmica/algorithmica44.html#BiedlTW06,https://doi.org/10.1007/s00453-005-1148-z +Jens Gramm,Automated Generation of Search Tree Algorithms for Hard Graph Modification Problems.,2004,39,Algorithmica,4,db/journals/algorithmica/algorithmica39.html#GrammGHN04,https://doi.org/10.1007/s00453-004-1090-5 +Guy Even,Online Packet-Routing in Grids with Bounded Buffers.,2017,78,Algorithmica,3,db/journals/algorithmica/algorithmica78.html#EvenM17,https://doi.org/10.1007/s00453-016-0177-0 +János Csirik,Bounded Space On-Line Bin Packing: Best Is Better than First.,2001,31,Algorithmica,2,db/journals/algorithmica/algorithmica31.html#CsirikJ01,https://doi.org/10.1007/s00453-001-0041-7 +Xavier Allamigeon,On the Complexity of Strongly Connected Components in Directed Hypergraphs.,2014,69,Algorithmica,2,db/journals/algorithmica/algorithmica69.html#Allamigeon14,https://doi.org/10.1007/s00453-012-9729-0 +Neal E. Young,The k-Server Dual and Loose Competitiveness for Paging.,1994,11,Algorithmica,6,db/journals/algorithmica/algorithmica11.html#Young94,https://doi.org/10.1007/BF01189992 +Haitao Wang 0001,Computing the Center of Uncertain Points on Tree Networks.,2017,78,Algorithmica,1,db/journals/algorithmica/algorithmica78.html#WangZ17,https://doi.org/10.1007/s00453-016-0158-3 +Jochen Könemann,Improved Approximations for Tour and Tree Covers.,2004,38,Algorithmica,3,db/journals/algorithmica/algorithmica38.html#KonemannKPS03,https://doi.org/10.1007/s00453-003-1071-0 +Xiaocheng Hu,Semi-Group Range Sum Revisited: Query-Space Lower Bound Tightened.,2018,80,Algorithmica,4,db/journals/algorithmica/algorithmica80.html#HuTYZ18,https://doi.org/10.1007/s00453-017-0307-3 +Yossi Azar,Foreword.,2009,53,Algorithmica,4,db/journals/algorithmica/algorithmica53.html#AzarE09,https://doi.org/10.1007/s00453-008-9262-3 +Benjamin Niedermann,An Algorithmic Framework for Labeling Network Maps.,2018,80,Algorithmica,5,db/journals/algorithmica/algorithmica80.html#NiedermannH18,https://doi.org/10.1007/s00453-017-0350-0 +S. Anand 0002,Minimizing Maximum (Weighted) Flow-Time on Related and Unrelated Machines.,2017,77,Algorithmica,2,db/journals/algorithmica/algorithmica77.html#0002B0G017,https://doi.org/10.1007/s00453-015-0082-y +Ashish Goel,Extending Greedy Multicast Routing to Delay Sensitive Applications.,2002,33,Algorithmica,3,db/journals/algorithmica/algorithmica33.html#GoelM02,https://doi.org/10.1007/s00453-001-0122-7 +Jean-Daniel Boissonnat,The Simplex Tree: An Efficient Data Structure for General Simplicial Complexes.,2014,70,Algorithmica,3,db/journals/algorithmica/algorithmica70.html#BoissonnatM14,https://doi.org/10.1007/s00453-014-9887-3 +Yannis E. Ioannidis,A Time Bound on the Materialization of Some Recursively Defined Views.,1986,1,Algorithmica,3,db/journals/algorithmica/algorithmica1.html#Ioannidis86,https://doi.org/10.1007/BF01840452 +Sang Won Bae,Exact Algorithms for the Bottleneck Steiner Tree Problem.,2011,61,Algorithmica,4,db/journals/algorithmica/algorithmica61.html#BaeCLT11,https://doi.org/10.1007/s00453-011-9553-y +Devdatt P. Dubhashi,Localized Techniques for Broadcasting in Wireless Sensor Networks.,2007,49,Algorithmica,4,db/journals/algorithmica/algorithmica49.html#DubhashiHOPPV07,https://doi.org/10.1007/s00453-007-9092-8 +Fangqiu Han,Observability of Lattice Graphs.,2016,76,Algorithmica,2,db/journals/algorithmica/algorithmica76.html#HanSY16,https://doi.org/10.1007/s00453-015-0049-z +Yui-Bin Chen,Time-Optimal Trajectories of a Rod in the Plane Subject to Velocity Constraints.,1997,18,Algorithmica,2,db/journals/algorithmica/algorithmica18.html#ChenI97,https://doi.org/10.1007/BF02526032 +Lior Kamma,Metric Decompositions of Path-Separable Graphs.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#KammaK17,https://doi.org/10.1007/s00453-016-0213-0 +Avrim Blum,Special Issue on New Theoretical Challenges in Machine Learning.,2015,72,Algorithmica,1,db/journals/algorithmica/algorithmica72.html#BlumL15,https://doi.org/10.1007/s00453-014-9941-1 +Elliot Anshelevich,Stable Matching with Network Externalities.,2017,78,Algorithmica,3,db/journals/algorithmica/algorithmica78.html#AnshelevichBH17,https://doi.org/10.1007/s00453-016-0197-9 +Pankaj K. Agarwal,Convex Hulls Under Uncertainty.,2017,79,Algorithmica,2,db/journals/algorithmica/algorithmica79.html#AgarwalHSYZ17,https://doi.org/10.1007/s00453-016-0195-y +Zhenbo Wang,A General Bin Packing Game: Interest Taken into Account.,2018,80,Algorithmica,5,db/journals/algorithmica/algorithmica80.html#WangHDT18,https://doi.org/10.1007/s00453-017-0361-x +James Allen Fill,Analysis of the Expected Number of Bit Comparisons Required by Quickselect.,2010,58,Algorithmica,3,db/journals/algorithmica/algorithmica58.html#FillN10,https://doi.org/10.1007/s00453-009-9294-3 +Lusheng Wang,Foreword.,2007,48,Algorithmica,2,db/journals/algorithmica/algorithmica48.html#Wang07,https://doi.org/10.1007/s00453-007-0272-3 +Eric T. Bax,A Permanent Algorithm with exp[Omega (n1/3/2 ln n )] Expected Speedup for 0-1 Matrices.,2002,32,Algorithmica,1,db/journals/algorithmica/algorithmica32.html#BaxF02,https://doi.org/10.1007/s00453-001-0072-0 +Kurt Mehlhorn,Channel Routing in Knock-Knee Mode: Simplified Algorithms and Proofs.,1986,1,Algorithmica,2,db/journals/algorithmica/algorithmica1.html#MehlhornPS86,https://doi.org/10.1007/BF01840443 +Tanja Hartmann,Regular Augmentation of Planar Graphs.,2015,73,Algorithmica,2,db/journals/algorithmica/algorithmica73.html#HartmannRR15,https://doi.org/10.1007/s00453-014-9922-4 +Esha Ghosh,Faster Parameterized Algorithms for Deletion to Split Graphs.,2015,71,Algorithmica,4,db/journals/algorithmica/algorithmica71.html#GhoshK0MPRR15,https://doi.org/10.1007/s00453-013-9837-5 +Uriel Feige,PASS Approximation: A Framework for Analyzing and Designing Heuristics.,2013,66,Algorithmica,2,db/journals/algorithmica/algorithmica66.html#FeigeIMN13,https://doi.org/10.1007/s00453-012-9646-2 +John G. Del Greco,Fast Parallel Reordering and Isomorphism Testing of k-Trees.,2002,32,Algorithmica,1,db/journals/algorithmica/algorithmica32.html#GrecoSS02,https://doi.org/10.1007/s00453-001-0052-4 +Maitri Chakraborty,A Faster Exact-Counting Protocol for Anonymous Dynamic Networks.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#ChakrabortyMM18,https://doi.org/10.1007/s00453-017-0367-4 +Alfredo García Olaverri,Augmenting the Connectivity of Outerplanar Graphs.,2010,56,Algorithmica,2,db/journals/algorithmica/algorithmica56.html#OlaverriHNT10,https://doi.org/10.1007/s00453-008-9167-1 +Alexander Golynski,Optimal Indexes for Sparse Bit Vectors.,2014,69,Algorithmica,4,db/journals/algorithmica/algorithmica69.html#GolynskiOR014,https://doi.org/10.1007/s00453-013-9767-2 +Tetsuo Asano,Algorithms for Projecting Points To Give the Most Uniform Distribution with Applications to Hashing.,1993,9,Algorithmica,6,db/journals/algorithmica/algorithmica9.html#AsanoT93,https://doi.org/10.1007/BF01190156 +Yossi Azar,A Preemptive Algorithm for Maximizing Disjoint Paths on Trees.,2010,57,Algorithmica,3,db/journals/algorithmica/algorithmica57.html#AzarFG10,https://doi.org/10.1007/s00453-009-9305-4 +Mourad El Ouali,Randomized Approximation for the Set Multicover Problem in Hypergraphs.,2016,74,Algorithmica,2,db/journals/algorithmica/algorithmica74.html#OualiMS16,https://doi.org/10.1007/s00453-014-9962-9 +Takeshi Tokuyama,Foreword.,2010,56,Algorithmica,1,db/journals/algorithmica/algorithmica56.html#Tokuyama10,https://doi.org/10.1007/s00453-008-9258-z +Philipp Kindermann,Multi-sided Boundary Labeling.,2016,76,Algorithmica,1,db/journals/algorithmica/algorithmica76.html#KindermannNRS0W16,https://doi.org/10.1007/s00453-015-0028-4 +Rolf Klein,A Dynamic Fixed Windowing Problem.,1989,4,Algorithmica,4,db/journals/algorithmica/algorithmica4.html#KleinNOW89,https://doi.org/10.1007/BF01553907 +Bert Besser,Greedy Matching: Guarantees and Limitations.,2017,77,Algorithmica,1,db/journals/algorithmica/algorithmica77.html#BesserP17,https://doi.org/10.1007/s00453-015-0062-2 +János Pach,Weaving Patterns of Lines and Line Segments in Space.,1993,9,Algorithmica,6,db/journals/algorithmica/algorithmica9.html#PachPW93,https://doi.org/10.1007/BF01190155 +Uriel Feige,Approximating the Bandwidth of Caterpillars.,2009,55,Algorithmica,1,db/journals/algorithmica/algorithmica55.html#FeigeT09,https://doi.org/10.1007/s00453-007-9002-0 +Paul S. Bonsma,Counting Hexagonal Patches and Independent Sets in Circle Graphs.,2012,63,Algorithmica,3,db/journals/algorithmica/algorithmica63.html#BonsmaB12,https://doi.org/10.1007/s00453-011-9561-y +Joshua Buresh-Oppenheim,A Stronger Model of Dynamic Programming Algorithms.,2011,60,Algorithmica,4,db/journals/algorithmica/algorithmica60.html#Buresh-OppenheimDI11,https://doi.org/10.1007/s00453-009-9385-1 +Subhash Suri,Selfish Load Balancing and Atomic Congestion Games.,2007,47,Algorithmica,1,db/journals/algorithmica/algorithmica47.html#SuriTZ07,https://doi.org/10.1007/s00453-006-1211-4 +Endre Boros,Approximation Schemes for Stochastic Mean Payoff Games with Perfect Information and Few Random Positions.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#BorosEFGMM18,https://doi.org/10.1007/s00453-017-0372-7 +Mark Braverman,A Discrepancy Lower Bound for Information Complexity.,2016,76,Algorithmica,3,db/journals/algorithmica/algorithmica76.html#BravermanW16a,https://doi.org/10.1007/s00453-015-0093-8 +Otfried Cheong,On the Number of Edges of Fan-Crossing Free Graphs.,2015,73,Algorithmica,4,db/journals/algorithmica/algorithmica73.html#CheongHKK15,https://doi.org/10.1007/s00453-014-9935-z +Sashka Davis,Models of Greedy Algorithms for Graph Problems.,2009,54,Algorithmica,3,db/journals/algorithmica/algorithmica54.html#DavisI09,https://doi.org/10.1007/s00453-007-9124-4 +Roberto Solis-Oba,A 2-Approximation Algorithm for Finding a Spanning Tree with Maximum Number of Leaves.,2017,77,Algorithmica,2,db/journals/algorithmica/algorithmica77.html#Solis-ObaBL17,https://doi.org/10.1007/s00453-015-0080-0 +Francis Y. L. Chin,A Constant-Competitive Algorithm for Online OVSF Code Assignment.,2010,56,Algorithmica,1,db/journals/algorithmica/algorithmica56.html#ChinTZ10,https://doi.org/10.1007/s00453-008-9241-8 +Torben Hagerup,Dynamic Algorithms for Graphs of Bounded Treewidth.,2000,27,Algorithmica,3,db/journals/algorithmica/algorithmica27.html#Hagerup00,https://doi.org/10.1007/s004530010021 +Hubert de Fraysseix,Representations by Contact and Intersection of Segments.,2007,47,Algorithmica,4,db/journals/algorithmica/algorithmica47.html#FraysseixM07,https://doi.org/10.1007/s00453-006-0157-x +Miklos Santha,Quantum and Classical Query Complexities of Local Search Are Polynomially Related.,2009,55,Algorithmica,3,db/journals/algorithmica/algorithmica55.html#SanthaS09,https://doi.org/10.1007/s00453-008-9169-z +Kazuo Iwano,A New Scaling Algorithm for the Maximum Mean Cut Problem.,1994,11,Algorithmica,3,db/journals/algorithmica/algorithmica11.html#IwanoMTF94,https://doi.org/10.1007/BF01240735 +David M. Mount,On the Least Trimmed Squares Estimator.,2014,69,Algorithmica,1,db/journals/algorithmica/algorithmica69.html#MountNPSW14,https://doi.org/10.1007/s00453-012-9721-8 +Sanjiv Kapoor,Lower Bounds for Maximal and Convex Layers Problems.,1989,4,Algorithmica,4,db/journals/algorithmica/algorithmica4.html#KapoorR89,https://doi.org/10.1007/BF01553901 +John Augustine,Enforcing Efficient Equilibria in Network Design Games via Subsidies.,2015,72,Algorithmica,1,db/journals/algorithmica/algorithmica72.html#AugustineCFK15,https://doi.org/10.1007/s00453-013-9845-5 +Glencora Borradaile,Polynomial-Time Approximation Schemes for Subset-Connectivity Problems in Bounded-Genus Graphs.,2014,68,Algorithmica,2,db/journals/algorithmica/algorithmica68.html#BorradaileDT14,https://doi.org/10.1007/s00453-012-9662-2 +Syed Mohammad Meesum,Rank Reduction of Oriented Graphs by Vertex and Edge Deletions.,2018,80,Algorithmica,10,db/journals/algorithmica/algorithmica80.html#MeesumS18,https://doi.org/10.1007/s00453-017-0340-2 +Noga Alon,Local Correction with Constant Error Rate.,2015,71,Algorithmica,2,db/journals/algorithmica/algorithmica71.html#AlonW15,https://doi.org/10.1007/s00453-013-9817-9 +M. Praveen,Small Vertex Cover makes Petri Net Coverability and Boundedness Easier.,2013,65,Algorithmica,4,db/journals/algorithmica/algorithmica65.html#Praveen13,https://doi.org/10.1007/s00453-012-9687-6 +Costas Busch,Sparse Covers for Planar Graphs and Graphs that Exclude a Fixed Minor.,2014,69,Algorithmica,3,db/journals/algorithmica/algorithmica69.html#BuschLT14,https://doi.org/10.1007/s00453-013-9757-4 +Michel Barbeau,Location-Oblivious Distributed Unit Disk Graph Coloring.,2011,60,Algorithmica,2,db/journals/algorithmica/algorithmica60.html#BarbeauBCCK11,https://doi.org/10.1007/s00453-009-9334-z +Daniel Delling,Time-Dependent SHARC-Routing.,2011,60,Algorithmica,1,db/journals/algorithmica/algorithmica60.html#Delling11,https://doi.org/10.1007/s00453-009-9341-0 +Vikraman Arvind,Solving Linear Equations Parameterized by Hamming Weight.,2016,75,Algorithmica,2,db/journals/algorithmica/algorithmica75.html#ArvindKKT16,https://doi.org/10.1007/s00453-015-0098-3 +Sylvain Guillemot,On the (Non-)Existence of Polynomial Kernels for P l -Free Edge Modification Problems.,2013,65,Algorithmica,4,db/journals/algorithmica/algorithmica65.html#GuillemotHPP13,https://doi.org/10.1007/s00453-012-9619-5 +Luc Devroye,Universal Asymptotics for Random Tries and PATRICIA Trees.,2005,42,Algorithmica,1,db/journals/algorithmica/algorithmica42.html#Devroye05,https://doi.org/10.1007/s00453-004-1137-7 +Ross M. McConnell,Linear-Time Recognition of Circular-Arc Graphs.,2003,37,Algorithmica,2,db/journals/algorithmica/algorithmica37.html#McConnell03,https://doi.org/10.1007/s00453-003-1032-7 +Haim Kaplan,Bounded Degree Interval Sandwich Problems.,1999,24,Algorithmica,2,db/journals/algorithmica/algorithmica24.html#KaplanS99,https://doi.org/10.1007/PL00009277 +Mercè Claverol,Stabbing Circles for Sets of Segments in the Plane.,2018,80,Algorithmica,3,db/journals/algorithmica/algorithmica80.html#ClaverolKPSS18,https://doi.org/10.1007/s00453-017-0299-z +Maw-Shang Chang,Linear-Time Algorithms for Tree Root Problems.,2015,71,Algorithmica,2,db/journals/algorithmica/algorithmica71.html#ChangKL15,https://doi.org/10.1007/s00453-013-9815-y +Richard Cole 0001,Optimal Parallel Algorithms for Point-Set and Polygon Problems.,1992,7,Algorithmica,1,db/journals/algorithmica/algorithmica7.html#ColeG92,https://doi.org/10.1007/BF01758749 +T.-H. Hubert Chan,An SDP Primal-Dual Algorithm for Approximating the Lovász-Theta Function.,2014,69,Algorithmica,3,db/journals/algorithmica/algorithmica69.html#ChanCR14,https://doi.org/10.1007/s00453-013-9756-5 +Vijaya Chung,A Randomized Linear-Work EREW PRAM Algorithm to Find a Minimum Spanning Forest.,2003,35,Algorithmica,3,db/journals/algorithmica/algorithmica35.html#Chung03,https://doi.org/10.1007/s00453-002-0998-x +R. Ravi 0001,Erratum: An Approximation Algorithm for Minimum-Cost Vertex-Connectivity Problems.,2002,34,Algorithmica,1,db/journals/algorithmica/algorithmica34.html#RaviW02,https://doi.org/10.1007/s00453-002-0970-9 +James R. Knight,Approximate Regular Expression Pattern Matching with Concave Gap Penalties.,1995,14,Algorithmica,1,db/journals/algorithmica/algorithmica14.html#KnightM95a,https://doi.org/10.1007/BF01300375 +Kun-Mao Chao,Preface Algorithms and Computation (ISAAC 2012).,2014,70,Algorithmica,4,db/journals/algorithmica/algorithmica70.html#ChaoHL14,https://doi.org/10.1007/s00453-014-9933-1 +Dan Halperin,Guest Editorial: Selected Papers from European Symposium on Algorithms.,2011,60,Algorithmica,1,db/journals/algorithmica/algorithmica60.html#HalperinM11,https://doi.org/10.1007/s00453-010-9409-x +Brigitte Vallée,Dynamical Sources in Information Theory: Fundamental Intervals and Word Prefixes.,2001,29,Algorithmica,1,db/journals/algorithmica/algorithmica29.html#Vallee01,https://doi.org/10.1007/BF02679622 +Evanthia Papadopoulou,A New Approach for the Geodesic Voronoi Diagram of Points in a Simple Polygon and Other Restricted Polygonal Domains.,1998,20,Algorithmica,4,db/journals/algorithmica/algorithmica20.html#PapadopoulouL98,https://doi.org/10.1007/PL00009199 +Rajesh Chitnis,A Tight Algorithm for Strongly Connected Steiner Subgraph on Two Terminals with Demands.,2017,77,Algorithmica,4,db/journals/algorithmica/algorithmica77.html#ChitnisEHKKS17,https://doi.org/10.1007/s00453-016-0145-8 +Djamal Belazzougui,A Framework for Space-Efficient String Kernels.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#BelazzouguiC17,https://doi.org/10.1007/s00453-017-0286-4 +Jianjun Zhou,Solving Systems of Difference Constraints Incrementally with Bidirectional Search.,2004,39,Algorithmica,3,db/journals/algorithmica/algorithmica39.html#ZhouM04,https://doi.org/10.1007/s00453-004-1081-6 +Joseph B. Kruskal,A Flexible Way of Counting Large Numbers Approximately in Small Registers.,1991,6,Algorithmica,4,db/journals/algorithmica/algorithmica6.html#KruskalG91,https://doi.org/10.1007/BF01759062 +Robert Bredereck,Using Patterns to Form Homogeneous Teams.,2015,71,Algorithmica,2,db/journals/algorithmica/algorithmica71.html#BredereckKNNP15,https://doi.org/10.1007/s00453-013-9821-0 +Thomas Jansen 0001,The Analysis of Evolutionary Algorithms - A Proof That Crossover Really Can Help.,2002,34,Algorithmica,1,db/journals/algorithmica/algorithmica34.html#JansenW02,https://doi.org/10.1007/s00453-002-0940-2 +Raffaella Gentilini,Symbolic Graphs: Linear Solutions to Connectivity Related Problems.,2008,50,Algorithmica,1,db/journals/algorithmica/algorithmica50.html#GentiliniPP08,https://doi.org/10.1007/s00453-007-9079-5 +Andreas Emil Feldmann,Balanced Partitions of Trees and Applications.,2015,71,Algorithmica,2,db/journals/algorithmica/algorithmica71.html#FeldmannF15,https://doi.org/10.1007/s00453-013-9802-3 +David R. Karger,On Approximating the Longest Path in a Graph.,1997,18,Algorithmica,1,db/journals/algorithmica/algorithmica18.html#KargerMR97,https://doi.org/10.1007/BF02523689 +Lukasz Jez,A Universal Randomized Packet Scheduling Algorithm.,2013,67,Algorithmica,4,db/journals/algorithmica/algorithmica67.html#Jez13,https://doi.org/10.1007/s00453-012-9700-0 +Yuichi Asahiro,Optimal Approximation Algorithms for Maximum Distance-Bounded Subgraph Problems.,2018,80,Algorithmica,6,db/journals/algorithmica/algorithmica80.html#AsahiroDMSS18,https://doi.org/10.1007/s00453-017-0344-y +Piotr Berman,On the Computational Complexity of Measuring Global Stability of Banking Networks.,2014,70,Algorithmica,4,db/journals/algorithmica/algorithmica70.html#BermanDKK14,https://doi.org/10.1007/s00453-013-9769-0 +Hamid Zarrabi-Zadeh,An Improved Algorithm for Online Unit Clustering.,2009,54,Algorithmica,4,db/journals/algorithmica/algorithmica54.html#Zarrabi-ZadehC09,https://doi.org/10.1007/s00453-008-9208-9 +Vasundhara Puttagunta,Accuracy vs. Lifetime: Linear Sketches for Aggregate Queries in Sensor Networks.,2007,49,Algorithmica,4,db/journals/algorithmica/algorithmica49.html#PuttaguntaK07,https://doi.org/10.1007/s00453-007-9098-2 +David S. Atkinson,Using Geometry To Solve the Transportation Problem in the Plane.,1995,13,Algorithmica,5,db/journals/algorithmica/algorithmica13.html#AtkinsonV95,https://doi.org/10.1007/BF01190848 +Susanne Albers,Online Makespan Minimization with Parallel Schedules.,2017,78,Algorithmica,2,db/journals/algorithmica/algorithmica78.html#AlbersH17,https://doi.org/10.1007/s00453-016-0172-5 +Anne Auger,Continuous Lunches Are Free Plus the Design of Optimal Optimization Algorithms.,2010,57,Algorithmica,1,db/journals/algorithmica/algorithmica57.html#AugerT10,https://doi.org/10.1007/s00453-008-9244-5 +Gregory Z. Gutin,Polynomial Kernels and User Reductions for the Workflow Satisfiability Problem.,2016,75,Algorithmica,2,db/journals/algorithmica/algorithmica75.html#GutinKW16,https://doi.org/10.1007/s00453-015-9986-9 +Farhad Shahrokhi,Drawings of Graphs on Surfaces with Few Crossings.,1996,16,Algorithmica,1,db/journals/algorithmica/algorithmica16.html#ShahrokhiSSV96,https://doi.org/10.1007/BF02086611 +Julien Basch,Reporting Red - Blue Intersections between Two Sets of Connected Line Segments.,2003,35,Algorithmica,1,db/journals/algorithmica/algorithmica35.html#BaschGR03,https://doi.org/10.1007/s00453-002-0967-4 +Andrea S. LaPaugh,Editors' Introduction.,1991,6,Algorithmica,1,db/journals/algorithmica/algorithmica6.html#LaPaughL91,https://doi.org/10.1007/BF01759031 +Marek Chrobak,Caching Is Hard - Even in the Fault Model.,2012,63,Algorithmica,4,db/journals/algorithmica/algorithmica63.html#ChrobakWMX12,https://doi.org/10.1007/s00453-011-9502-9 +Péter Biró,Three-Sided Stable Matchings with Cyclic Preferences.,2010,58,Algorithmica,1,db/journals/algorithmica/algorithmica58.html#BiroM10,https://doi.org/10.1007/s00453-009-9315-2 +éric Colin de Verdière,Multicuts in Planar and Bounded-Genus Graphs with Bounded Number of Terminals.,2017,78,Algorithmica,4,db/journals/algorithmica/algorithmica78.html#Verdiere17,https://doi.org/10.1007/s00453-016-0258-0 +Martin Farach-Colton,Exact Sublinear Binomial Sampling.,2015,73,Algorithmica,4,db/journals/algorithmica/algorithmica73.html#Farach-ColtonT15,https://doi.org/10.1007/s00453-015-0077-8 +Sándor P. Fekete,Online Square-into-Square Packing.,2017,77,Algorithmica,3,db/journals/algorithmica/algorithmica77.html#FeketeH17,https://doi.org/10.1007/s00453-016-0114-2 +Gianlorenzo D'Angelo,Computing on Rings by Oblivious Robots: A Unified Approach for Different Tasks.,2015,72,Algorithmica,4,db/journals/algorithmica/algorithmica72.html#DAngeloSNNS15,https://doi.org/10.1007/s00453-014-9892-6 +Francisco J. Soulignac,Fully Dynamic Recognition of Proper Circular-Arc Graphs.,2015,71,Algorithmica,4,db/journals/algorithmica/algorithmica71.html#Soulignac15,https://doi.org/10.1007/s00453-013-9835-7 +Timothy M. Chan,All-Pairs Shortest Paths with Real Weights in O ( n 3/log n ) Time.,2008,50,Algorithmica,2,db/journals/algorithmica/algorithmica50.html#Chan08,https://doi.org/10.1007/s00453-007-9062-1 +C. Seshadhri,Is Submodularity Testable?,2014,69,Algorithmica,1,db/journals/algorithmica/algorithmica69.html#SeshadhriV14,https://doi.org/10.1007/s00453-012-9719-2 +Susanne Albers,On the Value of Job Migration in Online Makespan Minimization.,2017,79,Algorithmica,2,db/journals/algorithmica/algorithmica79.html#AlbersH17a,https://doi.org/10.1007/s00453-016-0209-9 +Donatella Merlini,Average-Case Analysis for a Simple Compression Algorithm.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#MerliniSV98,https://doi.org/10.1007/PL00009242 +Lars Engebretsen,An Explicit Lower Bound for TSP with Distances One and Two.,2003,35,Algorithmica,4,db/journals/algorithmica/algorithmica35.html#Engebretsen03,https://doi.org/10.1007/s00453-002-1001-6 +Wojciech Jawor,Competitive Analysis of Scheduling Algorithms for Aggregated Links.,2008,51,Algorithmica,4,db/journals/algorithmica/algorithmica51.html#JaworCD08,https://doi.org/10.1007/s00453-007-9053-2 +Qian-Ping Gu,Improved Bounds on the Planar Branchwidth with Respect to the Largest Grid Minor Size.,2012,64,Algorithmica,3,db/journals/algorithmica/algorithmica64.html#GuT12,https://doi.org/10.1007/s00453-012-9627-5 +Dries R. Goossens,The Focus of Attention Problem.,2016,74,Algorithmica,2,db/journals/algorithmica/algorithmica74.html#GoossensPSW16,https://doi.org/10.1007/s00453-014-9963-8 +Kazuo Iwama,Negation-Limited Complexity of Parity and Inverters.,2009,54,Algorithmica,2,db/journals/algorithmica/algorithmica54.html#IwamaMT09,https://doi.org/10.1007/s00453-007-9135-1 +Susanne Albers,Foreword.,2006,45,Algorithmica,1,db/journals/algorithmica/algorithmica45.html#AlbersR06,https://doi.org/10.1007/s00453-005-1186-6 +Edouard Bonnet,Multi-parameter Analysis for Local Graph Partitioning Problems: Using Greediness for Parameterization.,2015,71,Algorithmica,3,db/journals/algorithmica/algorithmica71.html#BonnetEPT15,https://doi.org/10.1007/s00453-014-9920-6 +Pravin M. Vaidya,Approximate Minimum Weight Matching on Points in k-Dimensional Space.,1989,4,Algorithmica,4,db/journals/algorithmica/algorithmica4.html#Vaidya89,https://doi.org/10.1007/BF01553909 +Fidaa Abed,Near-Optimal Asymmetric Binary Matrix Partitions.,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#AbedCV18,https://doi.org/10.1007/s00453-016-0238-4 +Joan Boyar,The Seat Reservation Problem.,1999,25,Algorithmica,4,db/journals/algorithmica/algorithmica25.html#BoyarL99,https://doi.org/10.1007/PL00009286 +Lusheng Wang,Approximations for a Bottleneck Steiner Tree Problem.,2002,32,Algorithmica,4,db/journals/algorithmica/algorithmica32.html#WangD02,https://doi.org/10.1007/s00453-001-0089-4 +Danny Z. Chen,Approximating Points by a Piecewise Linear Function.,2013,66,Algorithmica,3,db/journals/algorithmica/algorithmica66.html#ChenW13,https://doi.org/10.1007/s00453-012-9658-y +Jin-yi Cai,Signature Theory in Holographic Algorithms.,2011,61,Algorithmica,4,db/journals/algorithmica/algorithmica61.html#CaiL11,https://doi.org/10.1007/s00453-009-9383-3 +János Pach,Applications of the Crossing Number.,1996,16,Algorithmica,1,db/journals/algorithmica/algorithmica16.html#PachSS96,https://doi.org/10.1007/BF02086610 +Anil Maheshwari,Geometric Path Problems with Violations.,2018,80,Algorithmica,2,db/journals/algorithmica/algorithmica80.html#MaheshwariNPRS18,https://doi.org/10.1007/s00453-016-0263-3 +Jochen Könemann,Multicommodity Flow in Trees: Packing via Covering and Iterated Relaxation.,2014,68,Algorithmica,3,db/journals/algorithmica/algorithmica68.html#KonemannPP14,https://doi.org/10.1007/s00453-012-9701-z +Luca Trevisan,Parallel Approximation Algorithms by Positive Linear Programming.,1998,21,Algorithmica,1,db/journals/algorithmica/algorithmica21.html#Trevisan98,https://doi.org/10.1007/PL00009209 +Feodor F. Dragan,Collective Tree Spanners in Graphs with Bounded Parameters.,2010,57,Algorithmica,1,db/journals/algorithmica/algorithmica57.html#DraganY10,https://doi.org/10.1007/s00453-008-9194-y +Eric Torng,A Unified Analysis of Paging and Caching.,1998,20,Algorithmica,2,db/journals/algorithmica/algorithmica20.html#Torng98,https://doi.org/10.1007/PL00009192 +N. R. Aravind,On Polynomial Kernelization of H-free Edge Deletion.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#AravindSS17,https://doi.org/10.1007/s00453-016-0215-y +Ahmed Helmi 0001,"Analysis of the Strategy ""Hiring Above the $$m$$ m -th Best Candidate"".",2014,70,Algorithmica,2,db/journals/algorithmica/algorithmica70.html#HelmiMP14,https://doi.org/10.1007/s00453-014-9895-3 +Bernard Chazelle,Splitting a Delaunay Triangulation in Linear Time.,2002,34,Algorithmica,1,db/journals/algorithmica/algorithmica34.html#ChazelleDHMST02,https://doi.org/10.1007/s00453-002-0939-8 +Dana S. Richards,Fast Heuristic Algorithms for Rectilinear Steiner Trees.,1989,4,Algorithmica,2,db/journals/algorithmica/algorithmica4.html#Richards89,https://doi.org/10.1007/BF01553886 +G. Ramalingam,Solving Systems of Difference Constraints Incrementally.,1999,23,Algorithmica,3,db/journals/algorithmica/algorithmica23.html#RamalingamSJM99,https://doi.org/10.1007/PL00009261 +Thomas Bläsius,Orthogonal Graph Drawing with Flexibility Constraints.,2014,68,Algorithmica,4,db/journals/algorithmica/algorithmica68.html#BlasiusKRW14,https://doi.org/10.1007/s00453-012-9705-8 +J. Niel de Beaudrap,Sharp Quantum versus Classical Query Complexity Separations.,2002,34,Algorithmica,4,db/journals/algorithmica/algorithmica34.html#BeaudrapCW02,https://doi.org/10.1007/s00453-002-0978-1 +Monika Rauch Henzinger,Fully Dynamic Biconnectivity in Graphs.,1995,13,Algorithmica,6,db/journals/algorithmica/algorithmica13.html#Henzinger95,https://doi.org/10.1007/BF01189067 +Adrian Dumitrescu,Minimum-Perimeter Intersecting Polygons.,2012,63,Algorithmica,3,db/journals/algorithmica/algorithmica63.html#DumitrescuJ12,https://doi.org/10.1007/s00453-011-9516-3 +David Eppstein,On the Planar Split Thickness of Graphs.,2018,80,Algorithmica,3,db/journals/algorithmica/algorithmica80.html#EppsteinKKLLMMV18,https://doi.org/10.1007/s00453-017-0328-y +Peter Epstein,A Workbench for Computational Geometry.,1994,11,Algorithmica,4,db/journals/algorithmica/algorithmica11.html#EpsteinKKMNS94,https://doi.org/10.1007/BF01187021 +Bastian Degener,Kinetic Facility Location.,2010,57,Algorithmica,3,db/journals/algorithmica/algorithmica57.html#DegenerGL10,https://doi.org/10.1007/s00453-008-9250-7 +Piotr Micek,An On-line Competitive Algorithm for Coloring Bipartite Graphs Without Long Induced Paths.,2017,77,Algorithmica,4,db/journals/algorithmica/algorithmica77.html#MicekW17,https://doi.org/10.1007/s00453-016-0130-2 +Son Hoang Dau,Polynomial Time Algorithm for Min-Ranks of Graphs with Simple Tree Structures.,2015,71,Algorithmica,1,db/journals/algorithmica/algorithmica71.html#DauC15,https://doi.org/10.1007/s00453-013-9789-9 +Donald Goldfarb,Polynomial-Time Primal Simplex Algorithms for the Minimum Cost Network Flow Problem.,1992,8,Algorithmica,2,db/journals/algorithmica/algorithmica8.html#GoldfarbH92,https://doi.org/10.1007/BF01758840 +Ioannis Caragiannis,Fractional Path Coloring in Bounded Degree Trees with Applications.,2010,58,Algorithmica,2,db/journals/algorithmica/algorithmica58.html#CaragiannisFKPR10,https://doi.org/10.1007/s00453-009-9278-3 +Chung Keung Poon,Minimizing Makespan in Batch Machine Scheduling.,2004,39,Algorithmica,2,db/journals/algorithmica/algorithmica39.html#PoonZ04,https://doi.org/10.1007/s00453-004-1083-4 +Zhi-Zhong Chen,Approximation Algorithms for Reconstructing the Duplication History of Tandem Repeats.,2009,54,Algorithmica,4,db/journals/algorithmica/algorithmica54.html#ChenWW09,https://doi.org/10.1007/s00453-008-9209-8 +Tetsuo Shibuya,Generalization of a Suffix Tree for RNA Structural Pattern Matching.,2004,39,Algorithmica,1,db/journals/algorithmica/algorithmica39.html#Shibuya04,https://doi.org/10.1007/s00453-003-1067-9 +Harry K. T. Wong,Bit Transposition for Very Large Scientific and Statistical Databases.,1986,1,Algorithmica,3,db/journals/algorithmica/algorithmica1.html#WongLORW86,https://doi.org/10.1007/BF01840449 +Ashish Chiplunkar,Metrical Service Systems with Multiple Servers.,2015,71,Algorithmica,1,db/journals/algorithmica/algorithmica71.html#ChiplunkarV15,https://doi.org/10.1007/s00453-014-9903-7 +Xin He,Efficient Parallel Algorithms for r-Dominating Set and p-Center Problems on Trees.,1990,5,Algorithmica,1,db/journals/algorithmica/algorithmica5.html#HeY90,https://doi.org/10.1007/BF01840381 +Sabah al-Binali,A Risk-Reward Framework for the Competitive Analysis of Financial Games.,1999,25,Algorithmica,1,db/journals/algorithmica/algorithmica25.html#al-Binali99,https://doi.org/10.1007/PL00009285 +Tamal K. Dey,Approximating the Medial Axis from the Voronoi Diagram with a Convergence Guarantee.,2004,38,Algorithmica,1,db/journals/algorithmica/algorithmica38.html#DeyZ03,https://doi.org/10.1007/s00453-003-1049-y +Christian Gießen,Robustness of Populations in Stochastic Environments.,2016,75,Algorithmica,3,db/journals/algorithmica/algorithmica75.html#GiessenK16,https://doi.org/10.1007/s00453-015-0072-0 +George B. Mertzios,Algorithms and Almost Tight Results for 3-Colorability of Small Diameter Graphs.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#MertziosS16,https://doi.org/10.1007/s00453-014-9949-6 +Martin Held,FIST: Fast Industrial-Strength Triangulation of Polygons.,2001,30,Algorithmica,4,db/journals/algorithmica/algorithmica30.html#Held01,https://doi.org/10.1007/s00453-001-0028-4 +Aritra Banik,Fréchet Distance Between a Line and Avatar Point Set.,2018,80,Algorithmica,9,db/journals/algorithmica/algorithmica80.html#BanikPRS18,https://doi.org/10.1007/s00453-017-0352-y +Sariel Har-Peled,How Fast Is the k-Means Method?,2005,41,Algorithmica,3,db/journals/algorithmica/algorithmica41.html#Har-PeledS05,https://doi.org/10.1007/s00453-004-1127-9 +Yui-Bin Chen,The Complexity of Oblivious Plans for Orienting and Distinguishing Polygonal Parts.,1995,14,Algorithmica,5,db/journals/algorithmica/algorithmica14.html#ChenI95,https://doi.org/10.1007/BF01192046 +Jin-Yi Cai,Erratum to: Signature Theory in Holographic Algorithms.,2016,74,Algorithmica,4,db/journals/algorithmica/algorithmica74.html#CaiL16,https://doi.org/10.1007/s00453-015-0090-y +,Editorial Note.,2013,67,Algorithmica,2,db/journals/algorithmica/algorithmica67.html#X13,https://doi.org/10.1007/s00453-013-9808-x +Benson L. Joeris,Linear-Time Recognition of Helly Circular-Arc Models and Graphs.,2011,59,Algorithmica,2,db/journals/algorithmica/algorithmica59.html#JoerisLMSS11,https://doi.org/10.1007/s00453-009-9304-5 +Rohit Khandekar,Two-stage Robust Network Design with Exponential Scenarios.,2013,65,Algorithmica,2,db/journals/algorithmica/algorithmica65.html#KhandekarKMS13,https://doi.org/10.1007/s00453-011-9596-0 +Leo van Iersel,On Unrooted and Root-Uncertain Variants of Several Well-Known Phylogenetic Network Problems.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#IerselKSSB18,https://doi.org/10.1007/s00453-017-0366-5 +Xiaotie Deng,Minimizing Mean Completion Time in a Batch Processing System.,2004,38,Algorithmica,4,db/journals/algorithmica/algorithmica38.html#DengFZZZ04,https://doi.org/10.1007/s00453-003-1053-2 +Zhi-Zhong Chen,Disk Embeddings of Planar Graphs.,2004,38,Algorithmica,4,db/journals/algorithmica/algorithmica38.html#ChenH04,https://doi.org/10.1007/s00453-003-1055-0 +Gautam Das 0001,On the Complexity of Approximating Euclidean Traveling Salesman Tours and Minimum Spanning Trees.,1997,19,Algorithmica,4,db/journals/algorithmica/algorithmica19.html#DasKS97,https://doi.org/10.1007/PL00009183 +Nikhil Bansal,On the Longest Common Rigid Subsequence Problem.,2010,56,Algorithmica,2,db/journals/algorithmica/algorithmica56.html#BansalLMZ10,https://doi.org/10.1007/s00453-008-9175-1 +Kamalika Chaudhuri,Server Allocation Algorithms for Tiered Systems.,2007,48,Algorithmica,2,db/journals/algorithmica/algorithmica48.html#ChaudhuriKPSTZ07,https://doi.org/10.1007/s00453-007-0052-0 +Sofya Raskhodnikova,Sublinear Algorithms for Approximating String Compressibility.,2013,65,Algorithmica,3,db/journals/algorithmica/algorithmica65.html#RaskhodnikovaRRS13,https://doi.org/10.1007/s00453-012-9618-6 +Joan Feigenbaum,Computing Diameter in the Streaming and Sliding-Window Models.,2005,41,Algorithmica,1,db/journals/algorithmica/algorithmica41.html#FeigenbaumKZ04,https://doi.org/10.1007/s00453-004-1105-2 +Anna Galluccio,Polynomial Time Algorithms for 2-Edge-Connectivity Augmentation Problems.,2003,36,Algorithmica,4,db/journals/algorithmica/algorithmica36.html#GalluccioP03,https://doi.org/10.1007/s00453-003-1024-7 +Jakub Pawlewicz,Order Statistics in the Farey Sequences in Sublinear Time and Counting Primitive Lattice Points in Polygons.,2009,55,Algorithmica,2,db/journals/algorithmica/algorithmica55.html#PawlewiczP09,https://doi.org/10.1007/s00453-008-9221-z +Réka Albert,Inferring (Biological) Signal Transduction Networks via Transitive Reductions of Directed Graphs.,2008,51,Algorithmica,2,db/journals/algorithmica/algorithmica51.html#AlbertDDS08,https://doi.org/10.1007/s00453-007-9055-0 +Nikhil Bansal,Guest Editors' Foreword.,2017,78,Algorithmica,4,db/journals/algorithmica/algorithmica78.html#BansalF17,https://doi.org/10.1007/s00453-017-0309-1 +Shahin Kamali,Compact Representation of Graphs of Small Clique-Width.,2018,80,Algorithmica,7,db/journals/algorithmica/algorithmica80.html#Kamali18,https://doi.org/10.1007/s00453-017-0365-6 +Nicolas Gisin,Linking Classical and Quantum Key Agreement: Is There a Classical Analog to Bound Entanglement?,2002,34,Algorithmica,4,db/journals/algorithmica/algorithmica34.html#GisinRW02,https://doi.org/10.1007/s00453-002-0972-7 +V. Berry,From Constrained to Unconstrained Maximum Agreement Subtree in Linear Time.,2008,50,Algorithmica,3,db/journals/algorithmica/algorithmica50.html#BerryPT08,https://doi.org/10.1007/s00453-007-9084-8 +Egon Balas,Weighted and Unweighted Maximum Clique Algorithms with Upper Bounds from Fractional Coloring.,1996,15,Algorithmica,5,db/journals/algorithmica/algorithmica15.html#BalasX96,https://doi.org/10.1007/BF01955041 +Frank Thomson Leighton,A 2n-2 Step Algorithm for Routing in an n*n Array with Constant-Size Queues.,1995,14,Algorithmica,4,db/journals/algorithmica/algorithmica14.html#LeightonMT95,https://doi.org/10.1007/BF01294128 +Vikraman Arvind,The Parallel Complexity of Graph Canonization Under Abelian Group Action.,2013,67,Algorithmica,2,db/journals/algorithmica/algorithmica67.html#ArvindK13,https://doi.org/10.1007/s00453-013-9805-0 +Robert F. Cohen,Combine and Conquer.,1997,18,Algorithmica,3,db/journals/algorithmica/algorithmica18.html#CohenT97,https://doi.org/10.1007/PL00009160 +Hiroshi Nagamochi,A Detachment Algorithm for Inferring a Graph from Path Frequency.,2009,53,Algorithmica,2,db/journals/algorithmica/algorithmica53.html#Nagamochi09,https://doi.org/10.1007/s00453-008-9184-0 +Karim Douïeb,Dynamic Hotlinks.,2008,50,Algorithmica,2,db/journals/algorithmica/algorithmica50.html#DouiebL08,https://doi.org/10.1007/s00453-007-9060-3 +Jin-yi Cai,Random Access to Advice Strings and Collapsing Results.,2006,46,Algorithmica,1,db/journals/algorithmica/algorithmica46.html#CaiW06,https://doi.org/10.1007/s00453-006-0078-8 +Luc Devroye,A Note on the Expected Time for Finding Maxima by List Algorithms.,1999,23,Algorithmica,2,db/journals/algorithmica/algorithmica23.html#Devroye99,https://doi.org/10.1007/PL00009256 +Herbert Edelsbrunner,Incremental Topological Flipping Works for Regular Triangulations.,1996,15,Algorithmica,3,db/journals/algorithmica/algorithmica15.html#EdelsbrunnerS96,https://doi.org/10.1007/BF01975867 +Mário César San Felice,A Randomized O(log n)-Competitive Algorithm for the Online Connected Facility Location Problem.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#FeliceWL16,https://doi.org/10.1007/s00453-016-0115-1 +Djamal Belazzougui,Compressed String Dictionary Search with Edit Distance One.,2016,74,Algorithmica,3,db/journals/algorithmica/algorithmica74.html#BelazzouguiV16,https://doi.org/10.1007/s00453-015-9990-0 +Peng Zhang 0008,Improved Approximation Algorithms for the Maximum Happy Vertices and Edges Problems.,2018,80,Algorithmica,5,db/journals/algorithmica/algorithmica80.html#ZhangXJLLM18,https://doi.org/10.1007/s00453-017-0302-8 +Sebastian Böcker,A Fast and Simple Algorithm for the Money Changing Problem.,2007,48,Algorithmica,4,db/journals/algorithmica/algorithmica48.html#BockerL07,https://doi.org/10.1007/s00453-007-0162-8 +Prosenjit Bose,Clamshell Casting.,2009,55,Algorithmica,4,db/journals/algorithmica/algorithmica55.html#BoseMSW09,https://doi.org/10.1007/s00453-007-9160-0 +Marco Pellegrini 0001,On Counting Pairs of Intersecting Segments and Off-Line Triangle Range Searching.,1997,17,Algorithmica,4,db/journals/algorithmica/algorithmica17.html#Pellegrini97,https://doi.org/10.1007/BF02523679 +Telikepalli Kavitha,An [(O)\tilde](m2n)\tilde{O}(m^{2}n) Algorithm for Minimum Cycle Basis of Graphs.,2008,52,Algorithmica,3,db/journals/algorithmica/algorithmica52.html#KavithaMMP08,https://doi.org/10.1007/s00453-007-9064-z +Dora Giammarresi,Decremental 2- and 3-Connectivity on Planar Graphs.,1996,16,Algorithmica,3,db/journals/algorithmica/algorithmica16.html#GiammarresiI96,https://doi.org/10.1007/BF01955676 +Seung-Hak Choi,Characterizing and Recognizing the Visibility Graph of a Funnel-Shaped Polygon.,1995,14,Algorithmica,1,db/journals/algorithmica/algorithmica14.html#ChoiSC95,https://doi.org/10.1007/BF01300372 +Thomas Moscibroda,Topological Implications of Selfish Neighbor Selection in Unstructured Peer-to-Peer Networks.,2011,61,Algorithmica,2,db/journals/algorithmica/algorithmica61.html#MoscibrodaSW11,https://doi.org/10.1007/s00453-010-9398-9 +Florian Diedrich,Approximation Algorithms for Scheduling with Reservations.,2010,58,Algorithmica,2,db/journals/algorithmica/algorithmica58.html#DiedrichJPT10,https://doi.org/10.1007/s00453-008-9271-2 +Zhi-Zhong Chen,Parallel Algorithms for Maximal Acyclic Sets.,1997,19,Algorithmica,3,db/journals/algorithmica/algorithmica19.html#ChenH97,https://doi.org/10.1007/PL00009178 +Rudolf Fleischer,A Tight Lower Bound for the Worst Case of Bottom-Up-Heapsort.,1994,11,Algorithmica,2,db/journals/algorithmica/algorithmica11.html#Fleischer94,https://doi.org/10.1007/BF01182770 +Kyriaki Ioannidou,The Longest Path Problem Is Polynomial on Cocomparability Graphs.,2013,65,Algorithmica,1,db/journals/algorithmica/algorithmica65.html#IoannidouN13,https://doi.org/10.1007/s00453-011-9583-5 +Greg N. Frederickson,Designing Networks with Compact Routing Tables.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#FredericksonJ88,https://doi.org/10.1007/BF01762113 +Xiaoming Sun,On the Quantum Query Complexity of Local Search in Two and Three Dimensions.,2009,55,Algorithmica,3,db/journals/algorithmica/algorithmica55.html#SunY09,https://doi.org/10.1007/s00453-008-9170-6 +Udo Adamy,Call Control in Rings.,2007,47,Algorithmica,3,db/journals/algorithmica/algorithmica47.html#AdamyAAE07,https://doi.org/10.1007/s00453-006-0187-4 +Magnus Bordewich,Constructing Tree-Child Networks from Distance Matrices.,2018,80,Algorithmica,8,db/journals/algorithmica/algorithmica80.html#BordewichST18,https://doi.org/10.1007/s00453-017-0320-6 +Leah Epstein,Bin Packing with Rejection Revisited.,2010,56,Algorithmica,4,db/journals/algorithmica/algorithmica56.html#Epstein10,https://doi.org/10.1007/s00453-008-9188-9 +Lars Arge,Cache-Oblivious R-Trees.,2009,53,Algorithmica,1,db/journals/algorithmica/algorithmica53.html#ArgeBH09,https://doi.org/10.1007/s00453-007-9007-8 +Andreas Bärtschi,Conflict-Free Chromatic Art Gallery Coverage.,2014,68,Algorithmica,1,db/journals/algorithmica/algorithmica68.html#BartschiS14,https://doi.org/10.1007/s00453-012-9732-5 +David Pritchard,Approximability of Sparse Integer Programs.,2011,61,Algorithmica,1,db/journals/algorithmica/algorithmica61.html#PritchardC11,https://doi.org/10.1007/s00453-010-9431-z +Helmut Prodinger,Philippe Flajolet's Research in Analysis of Algorithms and Combinatorics.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#ProdingerS98,https://doi.org/10.1007/PL00009230 +Prabhakar Raghavan,Multiterminal Global Routing: A Deterministic Approximation Scheme.,1991,6,Algorithmica,1,db/journals/algorithmica/algorithmica6.html#RaghavanT91,https://doi.org/10.1007/BF01759035 +Prosenjit Bose,Guest Editors' Foreword.,2005,42,Algorithmica,1,db/journals/algorithmica/algorithmica42.html#BoseM05,https://doi.org/10.1007/s00453-004-1135-9 +Richard B. Borie,Generation of Polynomial-Time Algorithms for Some Optimization Problems on Tree-Decomposable Graphs.,1995,14,Algorithmica,2,db/journals/algorithmica/algorithmica14.html#Borie95,https://doi.org/10.1007/BF01293664 +Hagit Attiya,Transactional Contention Management as a Non-Clairvoyant Scheduling Problem.,2010,57,Algorithmica,1,db/journals/algorithmica/algorithmica57.html#AttiyaEST10,https://doi.org/10.1007/s00453-008-9195-x +R. Ravi 0001,Approximation Algorithms for Degree-Constrained Minimum-Cost Network-Design Problems.,2001,31,Algorithmica,1,db/journals/algorithmica/algorithmica31.html#RaviMRRH01,https://doi.org/10.1007/s00453-001-0038-2 +Bruce M. Maggs,Improved Routing and Sorting on Multibutterflies.,2000,28,Algorithmica,4,db/journals/algorithmica/algorithmica28.html#MaggsV00,https://doi.org/10.1007/s004530010049 +Joachim Reichel,Evolutionary Algorithms and Matroid Optimization Problems.,2010,57,Algorithmica,1,db/journals/algorithmica/algorithmica57.html#ReichelS10,https://doi.org/10.1007/s00453-008-9253-4 +Amitabha Bagchi,Biased Skip Lists.,2005,42,Algorithmica,1,db/journals/algorithmica/algorithmica42.html#BagchiBG05,https://doi.org/10.1007/s00453-004-1138-6 +Martin Hoefer,Non-Cooperative Tree Creation.,2009,53,Algorithmica,1,db/journals/algorithmica/algorithmica53.html#Hoefer09,https://doi.org/10.1007/s00453-007-9014-9 +Vincenzo Bonifaci,Feasibility Analysis of Sporadic Real-Time Multiprocessor Task Systems.,2012,63,Algorithmica,4,db/journals/algorithmica/algorithmica63.html#BonifaciM12,https://doi.org/10.1007/s00453-011-9505-6 +Masakazu Kojima,Determining Basic Variables of Optimal Solutions in Karmarkar's New LP Algorithm.,1986,1,Algorithmica,4,db/journals/algorithmica/algorithmica1.html#Kojima86,https://doi.org/10.1007/BF01840459 +Irene Finocchi,Sorting and Searching in Faulty Memories.,2008,52,Algorithmica,3,db/journals/algorithmica/algorithmica52.html#FinocchiI08,https://doi.org/10.1007/s00453-007-9088-4 +Kurt Mehlhorn,On the Embedding Phase of the Hopcroft and Tarjan Planarity Testing Algorithm.,1996,16,Algorithmica,2,db/journals/algorithmica/algorithmica16.html#MehlhornM96,https://doi.org/10.1007/BF01940648 +Xi Chen 0001,On Incentive Compatible Competitive Selection Protocols.,2011,61,Algorithmica,2,db/journals/algorithmica/algorithmica61.html#ChenDL11,https://doi.org/10.1007/s00453-010-9395-z +Emile H. L. Aarts,Boltzmann Machines as a Model for Parallel Annealing.,1991,6,Algorithmica,3,db/journals/algorithmica/algorithmica6.html#AartsK91,https://doi.org/10.1007/BF01759053 +Shuo-Yan Chou,A Linear-Time Algorithm for Constructing a Circular Visibility Diagram.,1995,14,Algorithmica,3,db/journals/algorithmica/algorithmica14.html#ChouW95,https://doi.org/10.1007/BF01206329 +San Ling,Hardness of k-LWE and Applications in Traitor Tracing.,2017,79,Algorithmica,4,db/journals/algorithmica/algorithmica79.html#LingPSS17,https://doi.org/10.1007/s00453-016-0251-7 +Sanjit Chatterjee,A Closer Look at Multiple Forking: Leveraging (In)Dependence for a Tighter Bound.,2016,74,Algorithmica,4,db/journals/algorithmica/algorithmica74.html#ChatterjeeK16,https://doi.org/10.1007/s00453-015-9997-6 +Christine Chung,The Power of Fair Pricing Mechanisms.,2012,63,Algorithmica,3,db/journals/algorithmica/algorithmica63.html#ChungLPR12,https://doi.org/10.1007/s00453-011-9587-1 +Michael B. Dillencourt,Using Topological Sweep to Extract the Boundaries of Regions in Maps Represented by Region Quadtrees.,1996,15,Algorithmica,1,db/journals/algorithmica/algorithmica15.html#DillencourtS96,https://doi.org/10.1007/BF01942608 +Sigve Hortemo Sæther,Between Treewidth and Clique-Width.,2016,75,Algorithmica,1,db/journals/algorithmica/algorithmica75.html#SaetherT16,https://doi.org/10.1007/s00453-015-0033-7 +Frédéric Havet,On the Grundy and b-Chromatic Numbers of a Graph.,2013,65,Algorithmica,4,db/journals/algorithmica/algorithmica65.html#HavetS13,https://doi.org/10.1007/s00453-011-9604-4 +Stephan G. Wagner,Asymptotic Enumeration of Extensional Acyclic Digraphs.,2013,66,Algorithmica,4,db/journals/algorithmica/algorithmica66.html#Wagner13,https://doi.org/10.1007/s00453-012-9725-4 +Alon Efrat,Geometry Helps in Bottleneck Matching and Related Problems.,2001,31,Algorithmica,1,db/journals/algorithmica/algorithmica31.html#EfratIK01,https://doi.org/10.1007/s00453-001-0016-8 +Richard J. Anderson,Parallel Algorithms for Arrangements.,1996,15,Algorithmica,2,db/journals/algorithmica/algorithmica15.html#AndersonBB96,https://doi.org/10.1007/BF01941684 +Nicolas Basset,Counting and Generating Permutations in Regular Classes.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#Basset16,https://doi.org/10.1007/s00453-016-0136-9 +Jerffeson Teixeira de Souza,Parallelizing Feature Selection.,2006,45,Algorithmica,3,db/journals/algorithmica/algorithmica45.html#SouzaMJ06,https://doi.org/10.1007/s00453-006-1220-3 +Kazumiti Numata,Splitting a Configuration in a Simplex.,1993,9,Algorithmica,6,db/journals/algorithmica/algorithmica9.html#NumataT93,https://doi.org/10.1007/BF01190161 +Rafael C. Carrasco,Incremental Construction of Minimal Tree Automata.,2009,55,Algorithmica,1,db/journals/algorithmica/algorithmica55.html#CarrascoDF09,https://doi.org/10.1007/s00453-008-9172-4 +Danny Hermelin,A Completeness Theory for Polynomial (Turing) Kernelization.,2015,71,Algorithmica,3,db/journals/algorithmica/algorithmica71.html#HermelinKSWW15,https://doi.org/10.1007/s00453-014-9910-8 +Dimitris Fotakis,Resolving Braess's Paradox in Random Networks.,2017,78,Algorithmica,3,db/journals/algorithmica/algorithmica78.html#FotakisKLS17,https://doi.org/10.1007/s00453-016-0175-2 +édouard Bonnet,Complexity of Token Swapping and Its Variants.,2018,80,Algorithmica,9,db/journals/algorithmica/algorithmica80.html#BonnetMR18,https://doi.org/10.1007/s00453-017-0387-0 +Amotz Bar-Noy,Average Case Network Lifetime on an Interval with Adjustable Sensing Ranges.,2015,72,Algorithmica,1,db/journals/algorithmica/algorithmica72.html#Bar-NoyB15,https://doi.org/10.1007/s00453-013-9853-5 +Joseph Cheriyan,On Rooted Node-Connectivity Problems.,2001,30,Algorithmica,3,db/journals/algorithmica/algorithmica30.html#CheriyanJN01,https://doi.org/10.1007/s00453-001-0017-7 +Frédéric Giroire,On the Complexity of Compressing Two Dimensional Routing Tables with Order.,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#GiroireHM18,https://doi.org/10.1007/s00453-016-0243-7 +Bernard Chazelle,An Algorithm for Segment-Dragging and Its Implementation.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#Chazelle88,https://doi.org/10.1007/BF01762115 +Pietro Simone Oliveto,Simplified Drift Analysis for Proving Lower Bounds in©0*Evolutionary Computation.,2011,59,Algorithmica,3,db/journals/algorithmica/algorithmica59.html#OlivetoW11,https://doi.org/10.1007/s00453-010-9387-z +Marshall W. Bern,On-Line Algorithms for Locating Checkpoints.,1994,11,Algorithmica,1,db/journals/algorithmica/algorithmica11.html#BernGRS94,https://doi.org/10.1007/BF01294262 +Veli Mäkinen,Approximate Matching of Run-Length Compressed Strings.,2003,35,Algorithmica,4,db/journals/algorithmica/algorithmica35.html#MakinenUN03,https://doi.org/10.1007/s00453-002-1005-2 +Bhubaneswar Mishra,Bidirectional Edges Problem: Part I-A Simple Algorithm.,1996,15,Algorithmica,3,db/journals/algorithmica/algorithmica15.html#Mishra96,https://doi.org/10.1007/BF01975869 +Laurent Bulteau,Triangle Counting in Dynamic Graph Streams.,2016,76,Algorithmica,1,db/journals/algorithmica/algorithmica76.html#BulteauFKP16,https://doi.org/10.1007/s00453-015-0036-4 +Mark H. Overmars,Improved Bounds for Electing a Leader in a Synchronous Ring.,1997,18,Algorithmica,2,db/journals/algorithmica/algorithmica18.html#OvermarsS97,https://doi.org/10.1007/BF02526036 +Mark de Berg,Guest Editorial.,2012,63,Algorithmica,4,db/journals/algorithmica/algorithmica63.html#Berg12,https://doi.org/10.1007/s00453-012-9617-7 +Jirí Matousek,Efficient Randomized Algorithms for the Repeated Median Line Estimator.,1998,20,Algorithmica,2,db/journals/algorithmica/algorithmica20.html#MatousekMN98,https://doi.org/10.1007/PL00009190 +Pavel Klavík,Extending Partial Representations of Proper and Unit Interval Graphs.,2017,77,Algorithmica,4,db/journals/algorithmica/algorithmica77.html#KlavikKORSSV17,https://doi.org/10.1007/s00453-016-0133-z +Michael T. Goodrich,An Addendum to Parallel Methods for Visibility and Shortest-Path Problems in Simple Polygons.,1993,9,Algorithmica,5,db/journals/algorithmica/algorithmica9.html#GoodrichSG93,https://doi.org/10.1007/BF01187038 +Vladimir Kolmogorov,A Faster Algorithm for Computing the Principal Sequence of Partitions of a Graph.,2010,56,Algorithmica,4,db/journals/algorithmica/algorithmica56.html#Kolmogorov10,https://doi.org/10.1007/s00453-008-9177-z +Michael Drmota,An Asymptotic Analysis of Labeled and Unlabeled k-Trees.,2016,75,Algorithmica,4,db/journals/algorithmica/algorithmica75.html#DrmotaJ16,https://doi.org/10.1007/s00453-015-0039-1 +Falk Hüffner,Algorithm Engineering for Color-Coding with Applications to Signaling Pathway Detection.,2008,52,Algorithmica,2,db/journals/algorithmica/algorithmica52.html#HuffnerWZ08,https://doi.org/10.1007/s00453-007-9008-7 +Itai Dinur,Improved Generic Attacks Against Hash-Based MACs and HAIFA.,2017,79,Algorithmica,4,db/journals/algorithmica/algorithmica79.html#DinurL17,https://doi.org/10.1007/s00453-016-0236-6 +Jesper Nederlof,Inclusion/Exclusion Meets Measure and Conquer.,2014,69,Algorithmica,3,db/journals/algorithmica/algorithmica69.html#NederlofRD14,https://doi.org/10.1007/s00453-013-9759-2 +Shun Sato,Combinatorial Relaxation Algorithm for the Entire Sequence of the Maximum Degree of Minors.,2017,77,Algorithmica,3,db/journals/algorithmica/algorithmica77.html#Sato17,https://doi.org/10.1007/s00453-015-0109-4 +L. Sunil Chandran,Geometric Representation of Graphs in Low Dimension Using Axis Parallel Boxes.,2010,56,Algorithmica,2,db/journals/algorithmica/algorithmica56.html#ChandranFS10,https://doi.org/10.1007/s00453-008-9163-5 +Travis Gagie,Guest Editorial: Special Issue on Compact Data Structures.,2018,80,Algorithmica,7,db/journals/algorithmica/algorithmica80.html#GagieN18,https://doi.org/10.1007/s00453-017-0381-6 +Frank Neumann 0001,Computing Minimum Cuts by Randomized Search Heuristics.,2011,59,Algorithmica,3,db/journals/algorithmica/algorithmica59.html#NeumannRS11,https://doi.org/10.1007/s00453-009-9370-8 +Gilad Goraly,Multi-Color Pebble Motion on Graphs.,2010,58,Algorithmica,3,db/journals/algorithmica/algorithmica58.html#GoralyH10,https://doi.org/10.1007/s00453-009-9290-7 +Mong-Jen Kao,Capacitated Domination Problem.,2011,60,Algorithmica,2,db/journals/algorithmica/algorithmica60.html#KaoLL11,https://doi.org/10.1007/s00453-009-9336-x +Svante Carlsson,Computing Vision Points in Polygons.,1999,24,Algorithmica,1,db/journals/algorithmica/algorithmica24.html#CarlssonN99,https://doi.org/10.1007/PL00009271 +David Eppstein,Algorithms for Coloring Quadtrees.,2002,32,Algorithmica,1,db/journals/algorithmica/algorithmica32.html#EppsteinBH02,https://doi.org/10.1007/s00453-001-0054-2 +Victor Chepoi,Seriation in the Presence of Errors: A Factor 16 Approximation Algorithm for l∞-Fitting Robinson Structures to Distances.,2011,59,Algorithmica,4,db/journals/algorithmica/algorithmica59.html#ChepoiS11,https://doi.org/10.1007/s00453-009-9319-y +Paola Bertolazzi,Upward Drawings of Triconnected Digraphs.,1994,12,Algorithmica,6,db/journals/algorithmica/algorithmica12.html#BertolazziBLM94,https://doi.org/10.1007/BF01188716 +Chung-Shou Liao,Power Domination in Circular-Arc Graphs.,2013,65,Algorithmica,2,db/journals/algorithmica/algorithmica65.html#LiaoL13,https://doi.org/10.1007/s00453-011-9599-x +Andrew M. Sutton,Superpolynomial Lower Bounds for the (1+1) EA on Some Easy Combinatorial Problems.,2016,75,Algorithmica,3,db/journals/algorithmica/algorithmica75.html#Sutton16,https://doi.org/10.1007/s00453-015-0027-5 +Martin Farach-Colton,Initializing Sensor Networks of Non-uniform Density in the Weak Sensor Model.,2015,73,Algorithmica,1,db/journals/algorithmica/algorithmica73.html#Farach-ColtonM15,https://doi.org/10.1007/s00453-014-9905-5 +Oren Salzman,Motion Planning via Manifold Samples.,2013,67,Algorithmica,4,db/journals/algorithmica/algorithmica67.html#SalzmanHRH13,https://doi.org/10.1007/s00453-012-9736-1 +Joseph Y.-T. Leung,A New Algorithm for Scheduling Periodic Real-Time Tasks.,1989,4,Algorithmica,2,db/journals/algorithmica/algorithmica4.html#Leung89,https://doi.org/10.1007/BF01553887 +Anupam Gupta,Cost-Sharing Mechanisms for Network Design.,2008,50,Algorithmica,1,db/journals/algorithmica/algorithmica50.html#GuptaST08,https://doi.org/10.1007/s00453-007-9065-y +Robon Liu,On Partitioning Rectilinear Polygons into Star-Shaped Polygons.,1991,6,Algorithmica,6,db/journals/algorithmica/algorithmica6.html#LiuN91,https://doi.org/10.1007/BF01759071 +Jesper Nederlof,Fast Polynomial-Space Algorithms Using Inclusion-Exclusion.,2013,65,Algorithmica,4,db/journals/algorithmica/algorithmica65.html#Nederlof13,https://doi.org/10.1007/s00453-012-9630-x +David M. Choy,Efficiently Extendible Mappings for Balanced Data Distribution.,1996,16,Algorithmica,2,db/journals/algorithmica/algorithmica16.html#ChoyFS96,https://doi.org/10.1007/BF01940647 +Rinat Ben Avraham,Partial-Matching RMS Distance Under Translation: Combinatorics and Algorithms.,2018,80,Algorithmica,8,db/journals/algorithmica/algorithmica80.html#AvrahamHJKRST18,https://doi.org/10.1007/s00453-017-0326-0 +Ulrik Brandes,Colored Simultaneous Geometric Embeddings and Universal Pointsets.,2011,60,Algorithmica,3,db/journals/algorithmica/algorithmica60.html#BrandesEEFFGGHKKa11,https://doi.org/10.1007/s00453-010-9433-x +Charalampos Papamanthou,Authenticated Hash Tables Based on Cryptographic Accumulators.,2016,74,Algorithmica,2,db/journals/algorithmica/algorithmica74.html#PapamanthouTT16,https://doi.org/10.1007/s00453-014-9968-3 +Hosam M. Mahmoud,Probabilistic Analysis of MULTIPLE QUICK SELECT.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#MahmoudS98,https://doi.org/10.1007/PL00009241 +Subhash Khot,Inapproximability Results for Combinatorial Auctions with Submodular Utility Functions.,2008,52,Algorithmica,1,db/journals/algorithmica/algorithmica52.html#KhotLMM08,https://doi.org/10.1007/s00453-007-9105-7 +Ross M. McConnell,An O(n®8*) Incremental Algorithm for Modular Decomposition of Graphs and 2-Structures.,1995,14,Algorithmica,3,db/journals/algorithmica/algorithmica14.html#McConnell95,https://doi.org/10.1007/BF01206330 +T. Matsui,A Flexible Algorithm for Generating All the Spanning Trees in Undirected Graphs.,1997,18,Algorithmica,4,db/journals/algorithmica/algorithmica18.html#Matsui97,https://doi.org/10.1007/PL00009171 +David R. Wood,Minimising the Number of Bends and Volume in 3-Dimensional Orthogonal Graph Drawings with a Diagonal Vertex Layout.,2004,39,Algorithmica,3,db/journals/algorithmica/algorithmica39.html#Wood04,https://doi.org/10.1007/s00453-004-1091-4 +Todd A. Brun,Remotely Prepared Entanglement: a Quantum Web Page.,2002,34,Algorithmica,4,db/journals/algorithmica/algorithmica34.html#Brun02,https://doi.org/10.1007/s00453-002-0974-5 +Matthew J. Patitz,Identifying Shapes Using Self-assembly.,2012,64,Algorithmica,3,db/journals/algorithmica/algorithmica64.html#PatitzS12,https://doi.org/10.1007/s00453-011-9549-7 +Maarten Löffler,Largest and Smallest Convex Hulls for Imprecise Points.,2010,56,Algorithmica,2,db/journals/algorithmica/algorithmica56.html#LofflerK10,https://doi.org/10.1007/s00453-008-9174-2 +Sariel Har-Peled,Fast Algorithms for Computing the Smallest k-Enclosing Circle.,2005,41,Algorithmica,3,db/journals/algorithmica/algorithmica41.html#Har-PeledM05,https://doi.org/10.1007/s00453-004-1123-0 +Kuo-Hui Tsai,Fast Algorithms for the Dominating Set Problem on Permutation Graphs.,1993,9,Algorithmica,6,db/journals/algorithmica/algorithmica9.html#TsaiH93,https://doi.org/10.1007/BF01190158 +Isabelle Sivignon,Decomposition of a Three-Dimensional Discrete Object Surface into Discrete Plane Pieces.,2004,38,Algorithmica,1,db/journals/algorithmica/algorithmica38.html#SivignonDC03,https://doi.org/10.1007/s00453-003-1041-6 +Ivan Bliznets,Parameterized Complexity of Superstring Problems.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#BliznetsFGKKS17,https://doi.org/10.1007/s00453-016-0193-0 +Tak Wah Lam,Finding Least-Weight Subsequences with Fewer Processors.,1993,9,Algorithmica,6,db/journals/algorithmica/algorithmica9.html#LamC93,https://doi.org/10.1007/BF01190159 +Marek Cygan,Foreword: Special Issue on IPEC 2014.,2016,75,Algorithmica,2,db/journals/algorithmica/algorithmica75.html#CyganH16,https://doi.org/10.1007/s00453-016-0151-x +Khaled M. Elbassioni,Improved Approximations for Guarding 1.5-Dimensional Terrains.,2011,60,Algorithmica,2,db/journals/algorithmica/algorithmica60.html#ElbassioniKMMS11,https://doi.org/10.1007/s00453-009-9358-4 +Zahed Rahmati,A Clustering-Based Approach to Kinetic Closest Pair.,2018,80,Algorithmica,10,db/journals/algorithmica/algorithmica80.html#RahmatiC18,https://doi.org/10.1007/s00453-017-0338-9 +Elon Rimon,Construction of C-Space Roadmaps from Local Sensory Data. What Should the Sensors Look For?,1997,17,Algorithmica,4,db/journals/algorithmica/algorithmica17.html#Rimon97,https://doi.org/10.1007/BF02523678 +Mingyu Xiao,A Quadratic Vertex Kernel for Feedback Arc Set in Bipartite Tournaments.,2015,71,Algorithmica,1,db/journals/algorithmica/algorithmica71.html#XiaoG15,https://doi.org/10.1007/s00453-013-9783-2 +Sariel Har-Peled,Approximating the Maximum Overlap of Polygons under Translation.,2017,78,Algorithmica,1,db/journals/algorithmica/algorithmica78.html#Har-PeledR17,https://doi.org/10.1007/s00453-016-0152-9 +Evanthia Papadopoulou,The Higher-Order Voronoi Diagram of Line Segments.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#PapadopoulouZ16,https://doi.org/10.1007/s00453-014-9950-0 +Khaled M. Elbassioni,Guest Editors' Foreword.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#ElbassioniM17,https://doi.org/10.1007/s00453-017-0359-4 +José Soares,Algorithms for Maximum Independent Set in Convex Bipartite Graphs.,2009,53,Algorithmica,1,db/journals/algorithmica/algorithmica53.html#SoaresS09,https://doi.org/10.1007/s00453-007-9006-9 +Leszek Gasieniec,Deterministic Communication in Radio Networks with Large Labels.,2007,47,Algorithmica,1,db/journals/algorithmica/algorithmica47.html#GasieniecPPR07,https://doi.org/10.1007/s00453-006-1212-3 +Alberto Apostolico,Data Structures and Algorithms for the String Statistics Problem.,1996,15,Algorithmica,5,db/journals/algorithmica/algorithmica15.html#ApostolicoP96,https://doi.org/10.1007/BF01955046 +Sanjoy Dasgupta,Randomized Partition Trees for Nearest Neighbor Search.,2015,72,Algorithmica,1,db/journals/algorithmica/algorithmica72.html#DasguptaS15,https://doi.org/10.1007/s00453-014-9885-5 +Konstantinos Kalpakis,Scheduling Tree DAGs on Parallel Architectures.,1996,15,Algorithmica,4,db/journals/algorithmica/algorithmica15.html#KalpakisY96,https://doi.org/10.1007/BF01961545 +Ioannis Caragiannis,Tight Bounds for Selfish and Greedy Load Balancing.,2011,61,Algorithmica,3,db/journals/algorithmica/algorithmica61.html#CaragiannisFKKM11,https://doi.org/10.1007/s00453-010-9427-8 +Mathew C. Francis,The Maximum Clique Problem in Multiple Interval Graphs.,2015,71,Algorithmica,4,db/journals/algorithmica/algorithmica71.html#Francis0O15,https://doi.org/10.1007/s00453-013-9828-6 +Zvika Brakerski,General Perfectly Periodic Scheduling.,2006,45,Algorithmica,2,db/journals/algorithmica/algorithmica45.html#BrakerskiNP06,https://doi.org/10.1007/s00453-005-1182-x +Francis Y. L. Chin,Online Scheduling with Partial Job Values: Does Timesharing or Randomization Help?,2003,37,Algorithmica,3,db/journals/algorithmica/algorithmica37.html#ChinF03,https://doi.org/10.1007/s00453-003-1025-6 +Ashish Goel,Simultaneous Optimization via Approximate Majorization for Concave Profits or Convex Costs.,2006,44,Algorithmica,4,db/journals/algorithmica/algorithmica44.html#GoelM06,https://doi.org/10.1007/s00453-005-1177-7 +Wiebke Höhn,How Unsplittable-Flow-Covering Helps Scheduling with Job-Dependent Cost Functions.,2018,80,Algorithmica,4,db/journals/algorithmica/algorithmica80.html#HohnMW18,https://doi.org/10.1007/s00453-017-0300-x +Michael A. Bekos,Two-Page Book Embeddings of 4-Planar Graphs.,2016,75,Algorithmica,1,db/journals/algorithmica/algorithmica75.html#BekosGR16,https://doi.org/10.1007/s00453-015-0016-8 +Bala Swaminathan,An Incremental Distributed Algorithm for Computing Biconnected Components in Dynamic Graphs.,1998,22,Algorithmica,3,db/journals/algorithmica/algorithmica22.html#SwaminathanG98,https://doi.org/10.1007/PL00009226 +Magnús M. Halldórsson,Sum Coloring Interval and k-Claw Free Graphs with Application to Scheduling Dependent Jobs.,2003,37,Algorithmica,3,db/journals/algorithmica/algorithmica37.html#HalldorssonKS03,https://doi.org/10.1007/s00453-003-1031-8 +George Karakostas,Edge Pricing of Multicommodity Networks for Selfish Users with Elastic Demands.,2009,53,Algorithmica,2,db/journals/algorithmica/algorithmica53.html#KarakostasK09a,https://doi.org/10.1007/s00453-008-9181-3 +L. Paul Chew,Sorting Helps for Voronoi Diagrams.,1997,18,Algorithmica,2,db/journals/algorithmica/algorithmica18.html#ChewF97,https://doi.org/10.1007/BF02526034 +Dimitris Fotakis,Minimum Congestion Redundant Assignments to Tolerate Random Faults.,2002,32,Algorithmica,3,db/journals/algorithmica/algorithmica32.html#FotakisS02,https://doi.org/10.1007/s00453-001-0080-0 +Andrew Chi-Chih Yao,On Selecting the k Largest with Median Tests.,1989,4,Algorithmica,2,db/journals/algorithmica/algorithmica4.html#Yao89,https://doi.org/10.1007/BF01553891 +Toshimasa Ishii,Minimum Augmentation of Edge-Connectivity between Vertices and Sets of Vertices in Undirected Graphs.,2010,56,Algorithmica,4,db/journals/algorithmica/algorithmica56.html#IshiiAN10,https://doi.org/10.1007/s00453-008-9178-y +Christoph Ambühl,Single Machine Precedence Constrained Scheduling Is a Vertex Cover Problem.,2009,53,Algorithmica,4,db/journals/algorithmica/algorithmica53.html#AmbuhlM09,https://doi.org/10.1007/s00453-008-9251-6 +Daniel S. Hirschberg,The Set-Set LCS Problem.,1989,4,Algorithmica,4,db/journals/algorithmica/algorithmica4.html#HirschbergL89,https://doi.org/10.1007/BF01553904 +Pim van 't Hof,Proper Interval Vertex Deletion.,2013,65,Algorithmica,4,db/journals/algorithmica/algorithmica65.html#HofV13,https://doi.org/10.1007/s00453-012-9661-3 +Mikhail J. Atallah,Topological Numbering of Features on a Mesh.,1991,6,Algorithmica,5,db/journals/algorithmica/algorithmica6.html#AtallahHW91,https://doi.org/10.1007/BF01759070 +Bernard Chazelle,Ray Shooting in Polygons Using Geodesic Triangulations.,1994,12,Algorithmica,1,db/journals/algorithmica/algorithmica12.html#ChazelleEGGHSS94,https://doi.org/10.1007/BF01377183 +Decheng Dai,Another Sub-exponential Algorithm for the Simple Stochastic Game.,2011,61,Algorithmica,4,db/journals/algorithmica/algorithmica61.html#DaiG11,https://doi.org/10.1007/s00453-010-9413-1 +Christos H. Papadimitriou,Designing Secure Communication Protocols from Trust Specification.,1994,11,Algorithmica,5,db/journals/algorithmica/algorithmica11.html#PapadimitriouRS94,https://doi.org/10.1007/BF01293268 +Elaine Angelino,External-Memory Multimaps.,2013,67,Algorithmica,1,db/journals/algorithmica/algorithmica67.html#AngelinoGMT13,https://doi.org/10.1007/s00453-013-9770-7 +Arvind Gupta,Finding Largest Subtrees and Smallest Supertrees.,1998,21,Algorithmica,2,db/journals/algorithmica/algorithmica21.html#GuptaN98,https://doi.org/10.1007/PL00009212 +Jacob T. Schwartz,"Finding Effective ""Force Targets"" for Two-Dimensional Multifinger Frictional Grips.",1992,8,Algorithmica,1,db/journals/algorithmica/algorithmica8.html#SchwartzS92,https://doi.org/10.1007/BF01758833 +Ee-Chien Chang,A Simultaneous Search Problem.,2000,26,Algorithmica,2,db/journals/algorithmica/algorithmica26.html#ChangY00,https://doi.org/10.1007/s004539910012 +David Bremner,Small Strictly Convex Quadrilateral Meshes of Point Sets.,2004,38,Algorithmica,2,db/journals/algorithmica/algorithmica38.html#BremnerHRS03,https://doi.org/10.1007/s00453-003-1062-1 +Rebecca Robinson,Structure and Recognition of Graphs with No 6-wheel Subdivision.,2009,55,Algorithmica,4,db/journals/algorithmica/algorithmica55.html#RobinsonF09,https://doi.org/10.1007/s00453-007-9162-y +Paul Czerwinski,Optimal VLSI Graph Embeddings in Variable Aspect Ratio Rectangles.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#CzerwinskiR88,https://doi.org/10.1007/BF01762128 +Zoltán Király,Better and Simpler Approximation Algorithms for the Stable Marriage Problem.,2011,60,Algorithmica,1,db/journals/algorithmica/algorithmica60.html#Kiraly11,https://doi.org/10.1007/s00453-009-9371-7 +Yoann Dieudonné,Anonymous Meeting in Networks.,2016,74,Algorithmica,2,db/journals/algorithmica/algorithmica74.html#DieudonneP16,https://doi.org/10.1007/s00453-015-9982-0 +Surender Baswana,Approximate Shortest Paths Avoiding a Failed Vertex: Near Optimal Data Structures for Undirected Unweighted Graphs.,2013,66,Algorithmica,1,db/journals/algorithmica/algorithmica66.html#BaswanaK13,https://doi.org/10.1007/s00453-012-9621-y +Peter Hui,Train Tracks and Confluent Drawings.,2007,47,Algorithmica,4,db/journals/algorithmica/algorithmica47.html#HuiPSS07,https://doi.org/10.1007/s00453-006-0165-x +Sergio Cabello,The Complexity of Separating Points in the Plane.,2016,74,Algorithmica,2,db/journals/algorithmica/algorithmica74.html#CabelloG16,https://doi.org/10.1007/s00453-014-9965-6 +Andrzej Lingas,A Fast Parallel Algorithm for Minimum-Cost Small Integral Flows.,2015,72,Algorithmica,2,db/journals/algorithmica/algorithmica72.html#LingasP15,https://doi.org/10.1007/s00453-013-9865-1 +Ming-Yang Kao,An Optimal Parallel Algorithm for Planar Cycle Separators.,1995,14,Algorithmica,5,db/journals/algorithmica/algorithmica14.html#KaoTT95,https://doi.org/10.1007/BF01192047 +Sreyash Kenkre,On the Approximability of Digraph Ordering.,2017,78,Algorithmica,4,db/journals/algorithmica/algorithmica78.html#KenkrePPS17,https://doi.org/10.1007/s00453-016-0227-7 +Mahdi Cheraghchi,Improved Constructions for Non-adaptive Threshold Group Testing.,2013,67,Algorithmica,3,db/journals/algorithmica/algorithmica67.html#Cheraghchi13,https://doi.org/10.1007/s00453-013-9754-7 +F. Miller Maley,A Generic Algorithm for One-Dimensional Homotopic Compaction.,1991,6,Algorithmica,1,db/journals/algorithmica/algorithmica6.html#Maley91,https://doi.org/10.1007/BF01759037 +Christoph Buchheim,Testing Planarity of Geometric Automorphisms in Linear Time.,2008,52,Algorithmica,4,db/journals/algorithmica/algorithmica52.html#BuchheimH08,https://doi.org/10.1007/s00453-007-9050-5 +Thomas Bläsius,Cliques in Hyperbolic Random Graphs.,2018,80,Algorithmica,8,db/journals/algorithmica/algorithmica80.html#Blasius0K18,https://doi.org/10.1007/s00453-017-0323-3 +Hans L. Bodlaender,Faster Parameterized Algorithms for Minimum Fill-in.,2011,61,Algorithmica,4,db/journals/algorithmica/algorithmica61.html#BodlaenderHV11,https://doi.org/10.1007/s00453-010-9421-1 +Robert Crowston,Parameterizations of Test Cover with Bounded Test Sizes.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#CrowstonGJMY16,https://doi.org/10.1007/s00453-014-9948-7 +Ronald I. Greenberg,Minimizing Channel Density with Movable Terminals.,1997,17,Algorithmica,2,db/journals/algorithmica/algorithmica17.html#GreenbergS97,https://doi.org/10.1007/BF02522820 +A. Gräf,On Coloring Unit Disk Graphs.,1998,20,Algorithmica,3,db/journals/algorithmica/algorithmica20.html#GrafSW98,https://doi.org/10.1007/PL00009196 +Chien-Chung Huang,Fair Matchings and Related Problems.,2016,74,Algorithmica,3,db/journals/algorithmica/algorithmica74.html#HuangKM016,https://doi.org/10.1007/s00453-015-9994-9 +Ruiwen Chen,Lower Bounds Against Weakly-Uniform Threshold Circuits.,2014,70,Algorithmica,1,db/journals/algorithmica/algorithmica70.html#ChenKK14,https://doi.org/10.1007/s00453-013-9823-y +Enrico Nardelli,Swapping a Failing Edge of a Single Source Shortest Paths Tree Is Good and Fast.,2003,35,Algorithmica,1,db/journals/algorithmica/algorithmica35.html#NardelliPW03,https://doi.org/10.1007/s00453-002-0988-z +Parikshit Gopalan,Algorithms for Modular Counting of Roots of Multivariate Polynomials.,2008,50,Algorithmica,4,db/journals/algorithmica/algorithmica50.html#GopalanGL08,https://doi.org/10.1007/s00453-007-9097-3 +Chính T. Hoàng,Deciding k-Colorability of P5-Free Graphs in Polynomial Time.,2010,57,Algorithmica,1,db/journals/algorithmica/algorithmica57.html#HoangKLSS10,https://doi.org/10.1007/s00453-008-9197-8 +Béla Bollobás,Eliminating Cycles in the Discrete Torus.,2008,50,Algorithmica,4,db/journals/algorithmica/algorithmica50.html#BollobasKLO08,https://doi.org/10.1007/s00453-007-9095-5 +Anna Adamaszek,Algorithmic and Hardness Results for the Colorful Components Problems.,2015,73,Algorithmica,2,db/journals/algorithmica/algorithmica73.html#AdamaszekP15,https://doi.org/10.1007/s00453-014-9926-0 +Pavel Klavík,Extending Partial Representations of Interval Graphs.,2017,78,Algorithmica,3,db/journals/algorithmica/algorithmica78.html#KlavikKOSV17,https://doi.org/10.1007/s00453-016-0186-z +Leizhen Cai,Guest Editors Foreword.,2015,73,Algorithmica,4,db/journals/algorithmica/algorithmica73.html#CaiCL15,https://doi.org/10.1007/s00453-015-0070-2 +Siu-Wing Cheng,Motorcycle Graphs and Straight Skeletons.,2007,47,Algorithmica,2,db/journals/algorithmica/algorithmica47.html#ChengV07,https://doi.org/10.1007/s00453-006-1229-7 +Sun Wu,A Subquadratic Algorithm for Approximate Limited Expression Matching.,1996,15,Algorithmica,1,db/journals/algorithmica/algorithmica15.html#WuMM96,https://doi.org/10.1007/BF01942606 +Maria-Florina Balcan,Statistical Active Learning Algorithms for Noise Tolerance and Differential Privacy.,2015,72,Algorithmica,1,db/journals/algorithmica/algorithmica72.html#BalcanF15,https://doi.org/10.1007/s00453-014-9954-9 +Gerhard J. Woeginger,Introduction.,2000,28,Algorithmica,1,db/journals/algorithmica/algorithmica28.html#Woeginger00,https://doi.org/10.1007/s004530010027 +Susan Landau 0001,Embedding Linkages on an Integer Lattice.,2002,32,Algorithmica,3,db/journals/algorithmica/algorithmica32.html#LandauI02,https://doi.org/10.1007/s00453-001-0087-6 +Moni Naor,Tight Bounds for Sliding Bloom Filters.,2015,73,Algorithmica,4,db/journals/algorithmica/algorithmica73.html#NaorY15,https://doi.org/10.1007/s00453-015-0007-9 +D. T. Lee,Fast Algorithms for the Density Finding Problem.,2009,53,Algorithmica,3,db/journals/algorithmica/algorithmica53.html#LeeLL09,https://doi.org/10.1007/s00453-007-9023-8 +Alan M. Frieze,Improved Approximation Algorithms for MAX k-CUT and MAX BISECTION.,1997,18,Algorithmica,1,db/journals/algorithmica/algorithmica18.html#FriezeJ97,https://doi.org/10.1007/BF02523688 +Michael Arnold,Linear Time Algorithms for Generalizations of the Longest Common Substring Problem.,2011,60,Algorithmica,4,db/journals/algorithmica/algorithmica60.html#ArnoldO11,https://doi.org/10.1007/s00453-009-9369-1 +Hee-Kap Ahn,A Generalization of the Convex Kakeya Problem.,2014,70,Algorithmica,2,db/journals/algorithmica/algorithmica70.html#AhnBCGTV14,https://doi.org/10.1007/s00453-013-9831-y +Rudolf Fleischer,Online Maintenance of k-Medians and k-Covers on a Line.,2006,45,Algorithmica,4,db/journals/algorithmica/algorithmica45.html#FleischerGZ06,https://doi.org/10.1007/s00453-005-1195-5 +V. S. Anil Kumar,Scheduling on Unrelated Machines under Tree-Like Precedence Constraints.,2009,55,Algorithmica,1,db/journals/algorithmica/algorithmica55.html#KumarMPS09,https://doi.org/10.1007/s00453-007-9004-y +Till Bruckdorfer,Planar Bus Graphs.,2018,80,Algorithmica,8,db/journals/algorithmica/algorithmica80.html#BruckdorferF018,https://doi.org/10.1007/s00453-017-0321-5 +Seok-Hee Hong,Drawing Trees Symmetrically in Three Dimensions.,2003,36,Algorithmica,2,db/journals/algorithmica/algorithmica36.html#HongE03,https://doi.org/10.1007/s00453-002-1011-4 +Christian Komusiewicz,A Cubic-Vertex Kernel for Flip Consensus Tree.,2014,68,Algorithmica,1,db/journals/algorithmica/algorithmica68.html#KomusiewiczU14,https://doi.org/10.1007/s00453-012-9663-1 +Thomas Sauerwald,On Mixing and Edge Expansion Properties in Randomized Broadcasting.,2010,56,Algorithmica,1,db/journals/algorithmica/algorithmica56.html#Sauerwald10,https://doi.org/10.1007/s00453-008-9245-4 +Yu-Feng Chien,Geometric BWT: Compressed Text Indexing via Sparse Suffixes and Range Searching.,2015,71,Algorithmica,2,db/journals/algorithmica/algorithmica71.html#ChienHSTV15,https://doi.org/10.1007/s00453-013-9792-1 +Shmuel Sifrony,A New Efficient Motion-Planning Algorithm for a Rod in Two-Dimensional Polygonal Space.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#SifronyS87,https://doi.org/10.1007/BF01840368 +Dimitris Fotakis,Strategyproof Facility Location for Concave Cost Functions.,2016,76,Algorithmica,1,db/journals/algorithmica/algorithmica76.html#FotakisT16,https://doi.org/10.1007/s00453-015-0026-6 +Wolfgang Dvorák,Maximizing a Submodular Function with Viability Constraints.,2017,77,Algorithmica,1,db/journals/algorithmica/algorithmica77.html#DvorakHW17,https://doi.org/10.1007/s00453-015-0066-y +Nader H. Bshouty,On Learning Decision Trees with Large Output Domains.,1998,20,Algorithmica,1,db/journals/algorithmica/algorithmica20.html#BshoutyTW98,https://doi.org/10.1007/PL00009188 +Paola Flocchini,Computing Without Communicating: Ring Exploration by Asynchronous Oblivious Robots.,2013,65,Algorithmica,3,db/journals/algorithmica/algorithmica65.html#FlocchiniIPS13,https://doi.org/10.1007/s00453-011-9611-5 +Eldar Fischer,Testing Convexity Properties of Tree Colorings.,2011,60,Algorithmica,4,db/journals/algorithmica/algorithmica60.html#FischerY11,https://doi.org/10.1007/s00453-009-9368-2 +Faisal N. Abu-Khzam,Clustering with Lower-Bounded Sizes - A General Graph-Theoretic Framework.,2018,80,Algorithmica,9,db/journals/algorithmica/algorithmica80.html#Abu-KhzamBCF18,https://doi.org/10.1007/s00453-017-0374-5 +Manfred Kunde,Packet Routing on Grids of Processors.,1993,9,Algorithmica,1,db/journals/algorithmica/algorithmica9.html#Kunde93,https://doi.org/10.1007/BF01185337 +Ornan Ori Gerstel,The Bit Complexity of Distributed Sorting.,1997,18,Algorithmica,3,db/journals/algorithmica/algorithmica18.html#GerstelZ97,https://doi.org/10.1007/PL00009163 +Paul A. Peterson,The General Maximum Matching Algorithm of Micali and Vazirani.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#PetersonL88,https://doi.org/10.1007/BF01762129 +Dong Kyue Kim,Linear-Time Construction of Two-Dimensional Suffix©0*Trees.,2011,59,Algorithmica,2,db/journals/algorithmica/algorithmica59.html#KimNSP11,https://doi.org/10.1007/s00453-009-9350-z +Prosenjit Bose,Biased Predecessor Search.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#BoseFHM16,https://doi.org/10.1007/s00453-016-0146-7 +MohammadTaghi Hajiaghayi,Local Search Algorithms for the Red-Blue Median Problem.,2012,63,Algorithmica,4,db/journals/algorithmica/algorithmica63.html#HajiaghayiKK12,https://doi.org/10.1007/s00453-011-9547-9 +Frantisek Galcík,On Computing an Optimal Semi-matching.,2017,78,Algorithmica,3,db/journals/algorithmica/algorithmica78.html#GalcikKS17,https://doi.org/10.1007/s00453-016-0182-3 +Mark Braverman,Guest Editorial for Information Complexity and Applications.,2016,76,Algorithmica,3,db/journals/algorithmica/algorithmica76.html#BravermanW16,https://doi.org/10.1007/s00453-016-0180-5 +Lata Narayanan,Corrigendum: Static Frequency Assignment in Cellular Networks.,2002,32,Algorithmica,4,db/journals/algorithmica/algorithmica32.html#NarayananS02,https://doi.org/10.1007/s00453-001-0099-2 +Michael Jünger,Maximum Planar Subgraphs and Nice Embeddings: Practical Layout Tools.,1996,16,Algorithmica,1,db/journals/algorithmica/algorithmica16.html#JungerM96,https://doi.org/10.1007/BF02086607 +Reuven Bar-Yehuda,One for the Price of Two: a Unified Approach for Approximating Covering Problems.,2000,27,Algorithmica,2,db/journals/algorithmica/algorithmica27.html#Bar-Yehuda00,https://doi.org/10.1007/s004530010009 +Richard J. Lipton,Clocked Adversaries for Hashing.,1993,9,Algorithmica,3,db/journals/algorithmica/algorithmica9.html#LiptonN93,https://doi.org/10.1007/BF01190898 +Anil Maheshwari,Improved Algorithms for Partial Curve Matching.,2014,69,Algorithmica,3,db/journals/algorithmica/algorithmica69.html#MaheshwariSSZ14,https://doi.org/10.1007/s00453-013-9758-3 +Sivaprakasam Sunder,An NC Algorithm for Finding a Minimum Weighted Completion Time Schedule on Series Parallel Graphs.,1996,16,Algorithmica,3,db/journals/algorithmica/algorithmica16.html#SunderH96,https://doi.org/10.1007/BF01955675 +Danny Hermelin,Parameterized Two-Player Nash Equilibrium.,2013,65,Algorithmica,4,db/journals/algorithmica/algorithmica65.html#HermelinHKW13,https://doi.org/10.1007/s00453-011-9609-z +Epameinondas Fritzilas,Structural Identifiability in Low-Rank Matrix Factorization.,2010,56,Algorithmica,3,db/journals/algorithmica/algorithmica56.html#FritzilasMRR10,https://doi.org/10.1007/s00453-009-9331-2 +Ian Parberry,An Optimal Time Bound for Oblivious Routing.,1990,5,Algorithmica,2,db/journals/algorithmica/algorithmica5.html#Parberry90,https://doi.org/10.1007/BF01840387 +Ferdinando Cicalese,Faster Deterministic Communication in Radio Networks.,2009,54,Algorithmica,2,db/journals/algorithmica/algorithmica54.html#CicaleseMX09,https://doi.org/10.1007/s00453-007-9136-0 +Elias Koutsoupias,A Lower Bound of 1+χ6* for Truthful Scheduling Mechanisms.,2013,66,Algorithmica,1,db/journals/algorithmica/algorithmica66.html#KoutsoupiasV13,https://doi.org/10.1007/s00453-012-9634-6 +Leah Epstein,Weighted Sum Coloring in Batch Scheduling of Conflicting Jobs.,2009,55,Algorithmica,4,db/journals/algorithmica/algorithmica55.html#EpsteinHLS09,https://doi.org/10.1007/s00453-007-9161-z +Nancy M. Amato,Finding a Closest Visible Vertex Pair Between Two Polygons.,1995,14,Algorithmica,2,db/journals/algorithmica/algorithmica14.html#Amato95,https://doi.org/10.1007/BF01293668 +John Iacono,Queaps.,2005,42,Algorithmica,1,db/journals/algorithmica/algorithmica42.html#IaconoL05,https://doi.org/10.1007/s00453-004-1139-5 +Daniel Panario,Smallest Components in Decomposable Structures: Exp-Log Class.,2001,29,Algorithmica,1,db/journals/algorithmica/algorithmica29.html#PanarioR01,https://doi.org/10.1007/BF02679619 +Shouwen Tang,Fast Algorithms for Minimum Matrix Norm with Application in Computer Graphics.,1996,15,Algorithmica,1,db/journals/algorithmica/algorithmica15.html#TangZW96,https://doi.org/10.1007/BF01942607 +Petr A. Golovach,Output-Polynomial Enumeration on Graphs of Bounded (Local) Linear MIM-Width.,2018,80,Algorithmica,2,db/journals/algorithmica/algorithmica80.html#GolovachHKKSV18,https://doi.org/10.1007/s00453-017-0289-1 +Roberto Tamassia,Optimal Cooperative Search in Fractional Cascaded Data Structures.,1996,15,Algorithmica,2,db/journals/algorithmica/algorithmica15.html#TamassiaV96,https://doi.org/10.1007/BF01941686 +Eli Ben-Sasson,Scalable Zero Knowledge Via Cycles of Elliptic Curves.,2017,79,Algorithmica,4,db/journals/algorithmica/algorithmica79.html#Ben-SassonCTV17,https://doi.org/10.1007/s00453-016-0221-0 +Kurt Mehlhorn,Scanning Multiple Sequences Via Cache Memory.,2003,35,Algorithmica,1,db/journals/algorithmica/algorithmica35.html#MehlhornS03,https://doi.org/10.1007/s00453-002-0993-2 +Sebastian Wild,Analysis of Quickselect Under Yaroslavskiy's Dual-Pivoting Algorithm.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#WildNM16,https://doi.org/10.1007/s00453-014-9953-x +Giuseppe Di Battista,Guest Editors' Introduction to the Special Issue on Graph Drwaing.,1996,16,Algorithmica,1,db/journals/algorithmica/algorithmica16.html#BattistaT96a,https://doi.org/10.1007/BF02086605 +Daniil Ryabko,Sample Complexity for Computational Classification Problems.,2007,49,Algorithmica,1,db/journals/algorithmica/algorithmica49.html#Ryabko07,https://doi.org/10.1007/s00453-007-0037-z +Mika Göös,Zero-Information Protocols and Unambiguity in Arthur-Merlin Communication.,2016,76,Algorithmica,3,db/journals/algorithmica/algorithmica76.html#GoosPW16,https://doi.org/10.1007/s00453-015-0104-9 +Joseph Cheriyan,Hardness and Approximation Results for Packing Steiner Trees.,2006,45,Algorithmica,1,db/journals/algorithmica/algorithmica45.html#CheriyanS06,https://doi.org/10.1007/s00453-005-1188-4 +B. Das,Reconstructing a Minimum Spanning Tree after Deletion of Any Node.,2001,31,Algorithmica,4,db/journals/algorithmica/algorithmica31.html#DasL01,https://doi.org/10.1007/s00453-001-0061-3 +Francis Y. L. Chin,An Improved Algorithm for Finding the Median Distributively.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#ChinT87,https://doi.org/10.1007/BF01840361 +Dennis W. G. Moore,Counting Distinct Strings.,1999,23,Algorithmica,1,db/journals/algorithmica/algorithmica23.html#MooreSM99,https://doi.org/10.1007/PL00009247 +Frank K. H. A. Dehne,Computational Geometry Algorithms for the Systolic Screen.,1991,6,Algorithmica,5,db/journals/algorithmica/algorithmica6.html#DehneHSS91,https://doi.org/10.1007/BF01759069 +Andrej Taranenko,Fast Recognition of Fibonacci Cubes.,2007,49,Algorithmica,2,db/journals/algorithmica/algorithmica49.html#TaranenkoV07,https://doi.org/10.1007/s00453-007-9026-5 +Dany Breslauer,Finding All Periods and Initial Palindromes of a String in Parallel.,1995,14,Algorithmica,4,db/journals/algorithmica/algorithmica14.html#BreslauerG95,https://doi.org/10.1007/BF01294132 +Lélia Blin,Exclusive Graph Searching.,2017,77,Algorithmica,3,db/journals/algorithmica/algorithmica77.html#BlinBN17,https://doi.org/10.1007/s00453-016-0124-0 +Miklós Csürös,Rapid Homology Search with Neighbor Seeds.,2007,48,Algorithmica,2,db/journals/algorithmica/algorithmica48.html#CsurosM07,https://doi.org/10.1007/s00453-007-0062-y +Venkatesan Guruswami,Superlinear Lower Bounds for Multipass Graph Processing.,2016,76,Algorithmica,3,db/journals/algorithmica/algorithmica76.html#GuruswamiO16,https://doi.org/10.1007/s00453-016-0138-7 +Gokarna Sharma,An Analysis Framework for Distributed Hierarchical Directories.,2015,71,Algorithmica,2,db/journals/algorithmica/algorithmica71.html#SharmaB15,https://doi.org/10.1007/s00453-013-9803-2 +Jun Wako,A Polynomial-Time Algorithm to Find von Neumann-Morgenstern Stable Matchings in Marriage Games.,2010,58,Algorithmica,1,db/journals/algorithmica/algorithmica58.html#Wako10,https://doi.org/10.1007/s00453-010-9388-y +Emanuele G. Fusco,Trade-offs Between the Size of Advice and Broadcasting Time in Trees.,2011,60,Algorithmica,4,db/journals/algorithmica/algorithmica60.html#FuscoP11,https://doi.org/10.1007/s00453-009-9361-9 +Alfredo García Olaverri,Computing a Hamiltonian Path of Minimum Euclidean Length Inside a Simple Polygon.,2013,65,Algorithmica,3,db/journals/algorithmica/algorithmica65.html#GarciaJT13,https://doi.org/10.1007/s00453-011-9603-5 +Bala Kalyanasundaram,Fault-Tolerant Real-Time Scheduling.,2000,28,Algorithmica,1,db/journals/algorithmica/algorithmica28.html#KalyanasundaramP00,https://doi.org/10.1007/s004530010034 +Mikhail J. Atallah,A Randomized Algorithm for Approximate String Matching.,2001,29,Algorithmica,3,db/journals/algorithmica/algorithmica29.html#AtallahCD01,https://doi.org/10.1007/s004530010062 +Andrei Lissovoi,MMAS Versus Population-Based EA on a Family of Dynamic Fitness Functions.,2016,75,Algorithmica,3,db/journals/algorithmica/algorithmica75.html#LissovoiW16,https://doi.org/10.1007/s00453-015-9975-z +Mark Huber,Exact Sampling from Perfect Matchings of Dense Regular Bipartite Graphs.,2006,44,Algorithmica,3,db/journals/algorithmica/algorithmica44.html#Huber06,https://doi.org/10.1007/s00453-005-1175-9 +John H. Reif,Fast Spatial Decomposition and Closest Pair Computation for Limited Precision Input.,2000,28,Algorithmica,3,db/journals/algorithmica/algorithmica28.html#Reif00,https://doi.org/10.1007/s004530010040 +Peng Zhang 0008,Simpler and Better Approximation Algorithms for the Unweighted Minimum Label s-t Cut Problem.,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#ZhangFT18,https://doi.org/10.1007/s00453-016-0265-1 +Yijie Han,Efficient Parallel Algorithms for Computing All Pair Shortest Paths in Directed Graphs.,1997,17,Algorithmica,4,db/journals/algorithmica/algorithmica17.html#HanPR97,https://doi.org/10.1007/BF02523680 +Gary M. Shute,An O(n log n) Plane-Sweep Algorithm for L_1 and L_\infty Delaunay Triangulations.,1991,6,Algorithmica,2,db/journals/algorithmica/algorithmica6.html#ShuteDT91,https://doi.org/10.1007/BF01759042 +Mohammad Ali Abam,Geometric Spanners for Weighted Point Sets.,2011,61,Algorithmica,1,db/journals/algorithmica/algorithmica61.html#AbamBFGS11,https://doi.org/10.1007/s00453-010-9465-2 +Vijaya Ramachandran,An Efficient Parallel Algorithm for the Layered Planar Monotone Circuit Value Problem.,1997,18,Algorithmica,3,db/journals/algorithmica/algorithmica18.html#RamachandranY97,https://doi.org/10.1007/PL00009162 +S. Alice Wu,Optimal Algorithms for Adjacent Side Routing.,1991,6,Algorithmica,4,db/journals/algorithmica/algorithmica6.html#WuJ91,https://doi.org/10.1007/BF01759060 +Michel Raynal,Distributed Universality.,2016,76,Algorithmica,2,db/journals/algorithmica/algorithmica76.html#RaynalST16,https://doi.org/10.1007/s00453-015-0053-3 +Gruia Calinescu,A New Approximation Algorithm for Finding Heavy Planar Subgraphs.,2003,36,Algorithmica,2,db/journals/algorithmica/algorithmica36.html#CalinescuFKZ03,https://doi.org/10.1007/s00453-002-1020-3 +Dan Gusfield,The Structure and Complexity of Sports Elimination Numbers.,2002,32,Algorithmica,1,db/journals/algorithmica/algorithmica32.html#GusfieldM02,https://doi.org/10.1007/s00453-001-0074-y +Jelena Marasevic,Max-min Fair Rate Allocation and Routing in Energy Harvesting Networks: Algorithmic Analysis.,2017,78,Algorithmica,2,db/journals/algorithmica/algorithmica78.html#MarasevicSZ17,https://doi.org/10.1007/s00453-016-0171-6 +Yossi Azar,Combinatorial Algorithms for the Unsplittable Flow Problem.,2006,44,Algorithmica,1,db/journals/algorithmica/algorithmica44.html#AzarR06,https://doi.org/10.1007/s00453-005-1172-z +Reuven Bar-Yehuda,Resource Allocation in Bounded Degree Trees.,2009,54,Algorithmica,1,db/journals/algorithmica/algorithmica54.html#Bar-YehudaBCR09,https://doi.org/10.1007/s00453-007-9121-7 +Isolde Adler,Planar Disjoint-Paths Completion.,2016,76,Algorithmica,2,db/journals/algorithmica/algorithmica76.html#AdlerKT16,https://doi.org/10.1007/s00453-015-0046-2 +Michael T. Goodrich,Spin-the-Bottle Sort and Annealing Sort: Oblivious Sorting via Round-Robin Random Comparisons.,2014,68,Algorithmica,4,db/journals/algorithmica/algorithmica68.html#Goodrich14,https://doi.org/10.1007/s00453-012-9696-5 +Nicolas Broutin,Note on the Structure of Kruskal's Algorithm.,2010,56,Algorithmica,2,db/journals/algorithmica/algorithmica56.html#BroutinDM10,https://doi.org/10.1007/s00453-008-9164-4 +Sudheer Sahu,Capabilities and Limits of Compact Error Resilience Methods for Algorithmic Self-Assembly.,2010,56,Algorithmica,4,db/journals/algorithmica/algorithmica56.html#SahuR10,https://doi.org/10.1007/s00453-008-9187-x +Mikhail J. Atallah,Parallel Algorithms for Some Functions of two Convex Polygons.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#AtallahG88,https://doi.org/10.1007/BF01762130 +R. Ravi 0001,An Approximation Algorithm for Minimum-Cost Vertex-Connectivity Problems.,1997,18,Algorithmica,1,db/journals/algorithmica/algorithmica18.html#RaviW97,https://doi.org/10.1007/BF02523686 +Eric Bach,Sieve Algorithms for Perfect Power Testing.,1993,9,Algorithmica,4,db/journals/algorithmica/algorithmica9.html#BachS93,https://doi.org/10.1007/BF01228507 +Mingyu Xiao,An Exact Algorithm for TSP in Degree-3 Graphs Via Circuit Procedure and Amortization on Connectivity Structure.,2016,74,Algorithmica,2,db/journals/algorithmica/algorithmica74.html#XiaoN16,https://doi.org/10.1007/s00453-015-9970-4 +Leszek Gasieniec,Efficiently Correcting Matrix Products.,2017,79,Algorithmica,2,db/journals/algorithmica/algorithmica79.html#GasieniecLLPT17,https://doi.org/10.1007/s00453-016-0202-3 +Aparna Das,Approximating the Generalized Minimum Manhattan Network Problem.,2018,80,Algorithmica,4,db/journals/algorithmica/algorithmica80.html#DasFKSVW18,https://doi.org/10.1007/s00453-017-0298-0 +Danny Krizanc,Fast Deterministic Selection on Mesh-Connected Processor Arrays.,1996,15,Algorithmica,4,db/journals/algorithmica/algorithmica15.html#KrizancNR96,https://doi.org/10.1007/BF01961542 +Robert B. Ellis,Random Geometric Graph Diameter in the Unit Ball.,2007,47,Algorithmica,4,db/journals/algorithmica/algorithmica47.html#EllisMY07,https://doi.org/10.1007/s00453-006-0172-y +Herbert Edelsbrunner,Edge-Skeletons in Arrangements with Applications.,1986,1,Algorithmica,1,db/journals/algorithmica/algorithmica1.html#Edelsbrunner86,https://doi.org/10.1007/BF01840438 +Cristina G. Fernandes,Approximation Algorithms for the Max-Buying Problem with Limited Supply.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#FernandesS18,https://doi.org/10.1007/s00453-017-0364-7 +Hristo Djidjev,Separators in Graphs with Negative and Multiple Vertex Weights.,1999,23,Algorithmica,1,db/journals/algorithmica/algorithmica23.html#DjidjevG99,https://doi.org/10.1007/PL00009250 +Frederic Dorn,Efficient Exact Algorithms on Planar Graphs: Exploiting Sphere Cut Decompositions.,2010,58,Algorithmica,3,db/journals/algorithmica/algorithmica58.html#DornPBF10,https://doi.org/10.1007/s00453-009-9296-1 +Michael E. Saks,Sample Spaces with Small Bias on Neighborhoods and Error-Correcting Communication Protocols.,2001,30,Algorithmica,3,db/journals/algorithmica/algorithmica30.html#SaksZ01,https://doi.org/10.1007/s00453-001-0020-z +Marcus Schaefer,Spiraling and Folding: The Word View.,2011,60,Algorithmica,3,db/journals/algorithmica/algorithmica60.html#SchaeferSS11,https://doi.org/10.1007/s00453-009-9362-8 +Oriol Farràs,On the Information Ratio of Non-perfect Secret Sharing Schemes.,2017,79,Algorithmica,4,db/journals/algorithmica/algorithmica79.html#FarrasHKP17,https://doi.org/10.1007/s00453-016-0217-9 +Tak Wah Lam,Optimal Edge Ranking of Trees in Linear Time.,2001,30,Algorithmica,1,db/journals/algorithmica/algorithmica30.html#LamY01,https://doi.org/10.1007/s004530010076 +Shin-ichi Tanigawa,Testing the Supermodular-Cut Condition.,2015,71,Algorithmica,4,db/journals/algorithmica/algorithmica71.html#TanigawaY15,https://doi.org/10.1007/s00453-013-9842-8 +Clóvis C. Gonzaga,Search Directions for Interior Linear-Programming Methods.,1991,6,Algorithmica,2,db/journals/algorithmica/algorithmica6.html#Gonzaga91,https://doi.org/10.1007/BF01759039 +Danny Hermelin,Parameterized Complexity of Induced Graph Matching on Claw-Free Graphs.,2014,70,Algorithmica,3,db/journals/algorithmica/algorithmica70.html#HermelinML14,https://doi.org/10.1007/s00453-014-9877-5 +Marek Cygan,On Cutwidth Parameterized by Vertex Cover.,2014,68,Algorithmica,4,db/journals/algorithmica/algorithmica68.html#CyganLPPS14,https://doi.org/10.1007/s00453-012-9707-6 +Jörg Derungs,Approximate Shortest Paths Guided by a Small Index.,2010,57,Algorithmica,4,db/journals/algorithmica/algorithmica57.html#DerungsJW10,https://doi.org/10.1007/s00453-008-9228-5 +Eugene W. Myers,An O(ND) Difference Algorithm and Its Variations.,1986,1,Algorithmica,2,db/journals/algorithmica/algorithmica1.html#Meyers86,https://doi.org/10.1007/BF01840446 +Pedro Jussieu de Rezende,Point Set Pattern Matching in d-Dimensions.,1995,13,Algorithmica,4,db/journals/algorithmica/algorithmica13.html#RezendeL95,https://doi.org/10.1007/BF01293487 +Eitan Zemel,A Linear Time Randomizing Algorithm for Searching Ranked Functions.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#Zemel87,https://doi.org/10.1007/BF01840350 +Benjamin Doerr,Adaptive Drift Analysis.,2013,65,Algorithmica,1,db/journals/algorithmica/algorithmica65.html#DoerrG13,https://doi.org/10.1007/s00453-011-9585-3 +Mao-cheng Cai,Minimum k Arborescences with Bandwidth Constraints.,2004,38,Algorithmica,4,db/journals/algorithmica/algorithmica38.html#CaiDW04,https://doi.org/10.1007/s00453-003-1054-1 +Amotz Bar-Noy,Competitive On-Line Switching Policies.,2003,36,Algorithmica,3,db/journals/algorithmica/algorithmica36.html#Bar-NoyFL03,https://doi.org/10.1007/s00453-003-1014-9 +Po-Shen Loh,Thresholds for Extreme Orientability.,2014,69,Algorithmica,3,db/journals/algorithmica/algorithmica69.html#LohP14,https://doi.org/10.1007/s00453-013-9749-4 +James Abello,A Functional Approach to External Graph Algorithms.,2002,32,Algorithmica,3,db/journals/algorithmica/algorithmica32.html#AbelloBW02,https://doi.org/10.1007/s00453-001-0088-5 +Helmut Prodinger,Average-Case Analysis of Algorithms - Preface.,2001,29,Algorithmica,1,db/journals/algorithmica/algorithmica29.html#ProdingerS01,https://doi.org/10.1007/BF02679610 +Kim S. Larsen,Relaxed Balance Using Standard Rotations.,2001,31,Algorithmica,4,db/journals/algorithmica/algorithmica31.html#LarsenSW01,https://doi.org/10.1007/s00453-001-0059-x +Sushmita Gupta,Stable Matching Games: Manipulation via Subgraph Isomorphism.,2018,80,Algorithmica,9,db/journals/algorithmica/algorithmica80.html#GuptaR18,https://doi.org/10.1007/s00453-017-0382-5 +Markus Bläser,Smoothed Analysis of Partitioning Algorithms for Euclidean Functionals.,2013,66,Algorithmica,2,db/journals/algorithmica/algorithmica66.html#BlaserMR13,https://doi.org/10.1007/s00453-012-9643-5 +Dimitris Chatzidimitriou,An O(log OPT)-Approximation for Covering and Packing Minor Models of and#952*r.,2018,80,Algorithmica,4,db/journals/algorithmica/algorithmica80.html#Chatzidimitriou18,https://doi.org/10.1007/s00453-017-0313-5 +Konstantinos Kalpakis,Upper and Lower Bounds on the Makespan of Schedules for Tree Dags on Linear Arrays.,1999,23,Algorithmica,2,db/journals/algorithmica/algorithmica23.html#KalpakisY99,https://doi.org/10.1007/PL00009254 +Gennaro Cordasco,Discovering Small Target Sets in Social Networks: A Fast and Effective Algorithm.,2018,80,Algorithmica,6,db/journals/algorithmica/algorithmica80.html#CordascoGMRV18,https://doi.org/10.1007/s00453-017-0390-5 +Alan M. Frieze,Greedy Algorithms for the Shortest Common Superstring That Are Asymptotically Optimal.,1998,21,Algorithmica,1,db/journals/algorithmica/algorithmica21.html#FriezeS98,https://doi.org/10.1007/PL00009207 +Gonzalo Navarro,Binary Searching with Nonuniform Costs and Its Application to Text Retrieval.,2000,27,Algorithmica,2,db/journals/algorithmica/algorithmica27.html#NavarroBBZC00,https://doi.org/10.1007/s004530010010 +Christoph Baur,Approximation of Geometric Dispersion Problems.,2001,30,Algorithmica,3,db/journals/algorithmica/algorithmica30.html#BaurF01,https://doi.org/10.1007/s00453-001-0022-x +Takuro Fukunaga,Approximation Algorithms for Highly Connected Multi-dominating Sets in Unit Disk Graphs.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#Fukunaga18,https://doi.org/10.1007/s00453-017-0385-2 +Nili Guttmann-Beck,Approximation Algorithms for Minimum K-Cut.,2000,27,Algorithmica,2,db/journals/algorithmica/algorithmica27.html#Guttmann-BeckH00,https://doi.org/10.1007/s004530010013 +Henning Bruhn,Structural Parameterizations for Boxicity.,2016,74,Algorithmica,4,db/journals/algorithmica/algorithmica74.html#BruhnCJS16,https://doi.org/10.1007/s00453-015-0011-0 +Allan Borodin,Strategyproof Mechanisms for Competitive Influence in Networks.,2017,78,Algorithmica,2,db/journals/algorithmica/algorithmica78.html#BorodinBLO17,https://doi.org/10.1007/s00453-016-0169-0 +Edith Cohen,Competitive Analysis of the LRFU Paging Algorithm.,2002,33,Algorithmica,4,db/journals/algorithmica/algorithmica33.html#CohenKZ02,https://doi.org/10.1007/s00453-002-0936-y +David Eppstein,Confluent Layered Drawings.,2007,47,Algorithmica,4,db/journals/algorithmica/algorithmica47.html#EppsteinGM07,https://doi.org/10.1007/s00453-006-0159-8 +Amol Deshpande,Energy Efficient Monitoring in Sensor Networks.,2011,59,Algorithmica,1,db/journals/algorithmica/algorithmica59.html#DeshpandeKMT11,https://doi.org/10.1007/s00453-010-9407-z +Nadia Pisanti,Further Thoughts on the Syntenic Distance between Genomes.,2002,34,Algorithmica,2,db/journals/algorithmica/algorithmica34.html#PisantiS02,https://doi.org/10.1007/s00453-002-0960-y +Baruch Awerbuch,On-Line Competitive Algorithms for Call Admission in Optical Networks.,2001,31,Algorithmica,1,db/journals/algorithmica/algorithmica31.html#AwerbuchAFLR01,https://doi.org/10.1007/s00453-001-0039-1 +,Editor's Note.,2014,69,Algorithmica,3,db/journals/algorithmica/algorithmica69.html#X14,https://doi.org/10.1007/s00453-014-9880-x +Adi Avidor,Ancient and New Algorithms for Load Balancing in the lp Norm.,2001,29,Algorithmica,3,db/journals/algorithmica/algorithmica29.html#AvidorAS01,https://doi.org/10.1007/s004530010051 +George Christodoulou 0001,On the Efficiency of All-Pay Mechanisms.,2018,80,Algorithmica,4,db/journals/algorithmica/algorithmica80.html#ChristodoulouST18,https://doi.org/10.1007/s00453-017-0296-2 +Mingyu Xiao,Tight Approximation Ratio of a General Greedy Splitting Algorithm for the Minimum k-Way Cut Problem.,2011,59,Algorithmica,4,db/journals/algorithmica/algorithmica59.html#XiaoCY11,https://doi.org/10.1007/s00453-009-9316-1 +Panagiotis Alevizos,An Optimal Algorithm for the Boundary of a Cell in a Union of Rays.,1990,5,Algorithmica,4,db/journals/algorithmica/algorithmica5.html#AlevizosBP90,https://doi.org/10.1007/BF01840405 +Timothy M. Chan,Linear-Space Data Structures for Range Minority Query in Arrays.,2015,72,Algorithmica,4,db/journals/algorithmica/algorithmica72.html#ChanDSW15,https://doi.org/10.1007/s00453-014-9881-9 +Gábor Braun,Common Information and Unique Disjointness.,2016,76,Algorithmica,3,db/journals/algorithmica/algorithmica76.html#BraunP16,https://doi.org/10.1007/s00453-016-0132-0 +Manfred Cochefert,Parameterized Algorithms for Finding Square Roots.,2016,74,Algorithmica,2,db/journals/algorithmica/algorithmica74.html#Cochefert0GKP16,https://doi.org/10.1007/s00453-014-9967-4 +Heikki Hyyrö,Bit-Parallel Witnesses and Their Applications to Approximate String Matching.,2005,41,Algorithmica,3,db/journals/algorithmica/algorithmica41.html#HyyroN05,https://doi.org/10.1007/s00453-004-1108-z +Yoko Kamidoi,A Divide-and-Conquer Approach to the Minimum k-Way Cut Problem.,2002,32,Algorithmica,2,db/journals/algorithmica/algorithmica32.html#KamidoiWY02,https://doi.org/10.1007/s00453-001-0070-2 +Guojun Li,An Algorithm for Simultaneous Backbone Threading and Side-Chain Packing.,2008,51,Algorithmica,4,db/journals/algorithmica/algorithmica51.html#LiLGX08,https://doi.org/10.1007/s00453-007-9070-1 +Antonios Antoniadis,Efficient Computation of Optimal Energy and Fractional Weighted Flow Trade-Off Schedules.,2017,79,Algorithmica,2,db/journals/algorithmica/algorithmica79.html#AntoniadisBCKNP17,https://doi.org/10.1007/s00453-016-0208-x +Bernard Chazelle,Decomposing the Boundary of a Nonconvex Polyhedron.,1997,17,Algorithmica,3,db/journals/algorithmica/algorithmica17.html#ChazelleP97,https://doi.org/10.1007/BF02523191 +Piotr Berman,Complexities of Efficient Solutions of Rectilinear Polygon Cover Problems.,1997,17,Algorithmica,4,db/journals/algorithmica/algorithmica17.html#BermanD97,https://doi.org/10.1007/BF02523677 +Arne Andersson,Suffix Trees on Words.,1999,23,Algorithmica,3,db/journals/algorithmica/algorithmica23.html#AnderssonLS99,https://doi.org/10.1007/PL00009260 +Wolfgang W. Bein,Knowledge State Algorithms.,2011,60,Algorithmica,3,db/journals/algorithmica/algorithmica60.html#BeinLNR11,https://doi.org/10.1007/s00453-009-9366-4 +Mourad Baïou,Stackelberg Bipartite Vertex Cover and the Preflow Algorithm.,2016,74,Algorithmica,3,db/journals/algorithmica/algorithmica74.html#BaiouB16,https://doi.org/10.1007/s00453-015-9993-x +Robert F. Sproull,Refinements to Nearest-Neighbor Searching in k-Dimensional Trees.,1991,6,Algorithmica,4,db/journals/algorithmica/algorithmica6.html#Sproull91,https://doi.org/10.1007/BF01759061 +Vikas Kapoor,A Tutorial for Designing Flexible Geometric Algorithms.,2002,33,Algorithmica,1,db/journals/algorithmica/algorithmica33.html#KapoorKW02,https://doi.org/10.1007/s00453-001-0104-9 +Navin Goyal,Dynamic vs. Oblivious Routing in Network Design.,2011,61,Algorithmica,1,db/journals/algorithmica/algorithmica61.html#GoyalOS11,https://doi.org/10.1007/s00453-010-9455-4 +Robert Crowston,A New Lower Bound on the Maximum Number of Satisfied Clauses in Max-SAT and Its Algorithmic Applications.,2012,64,Algorithmica,1,db/journals/algorithmica/algorithmica64.html#CrowstonGJY12,https://doi.org/10.1007/s00453-011-9550-1 +Michael J. Todd,An Extension of Karmarkar's Algorithm for Linear Programming Using Dual Variables.,1986,1,Algorithmica,4,db/journals/algorithmica/algorithmica1.html#ToddB86,https://doi.org/10.1007/BF01840455 +Srikanta Tirthapura,A General Method for Estimating Correlated Aggregates Over a Data Stream.,2015,73,Algorithmica,2,db/journals/algorithmica/algorithmica73.html#TirthapuraW15,https://doi.org/10.1007/s00453-014-9917-1 +John M. Marberg,Sorting in Constant Number of Row and Column Phases on a Mesh.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#MarbergG88,https://doi.org/10.1007/BF01762132 +Brigitte Vallée,Dynamics of the Binary Euclidean Algorithm: Functional Analysis and Operators.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#Vallee98,https://doi.org/10.1007/PL00009246 +Cameron T. Chalk,Strict Self-Assembly of Fractals Using Multiple Hands.,2016,76,Algorithmica,1,db/journals/algorithmica/algorithmica76.html#ChalkFHMSS16,https://doi.org/10.1007/s00453-015-0022-x +Pranjal Awasthi,Testing Lipschitz Functions on Hypergrid Domains.,2016,74,Algorithmica,3,db/journals/algorithmica/algorithmica74.html#AwasthiJMR16,https://doi.org/10.1007/s00453-015-9984-y +Julian Lorenz,Optimal Algorithms for k-Search with Application in Option Pricing.,2009,55,Algorithmica,2,db/journals/algorithmica/algorithmica55.html#LorenzPS09,https://doi.org/10.1007/s00453-008-9217-8 +Danny Hermelin,Unified Compression-Based Acceleration of Edit-Distance Computation.,2013,65,Algorithmica,2,db/journals/algorithmica/algorithmica65.html#HermelinLLW13,https://doi.org/10.1007/s00453-011-9590-6 +Fedor V. Fomin,Preface to Special Issue Dedicated to the 60th Birthday of Gregory Gutin.,2018,80,Algorithmica,9,db/journals/algorithmica/algorithmica80.html#FominS18,https://doi.org/10.1007/s00453-018-0416-7 +Konstantinos Panagiotou,Asynchronous Rumor Spreading on Random Graphs.,2017,78,Algorithmica,3,db/journals/algorithmica/algorithmica78.html#PanagiotouS17,https://doi.org/10.1007/s00453-016-0188-x +Sherman S. M. Chow,Zero-Knowledge Argument for Simultaneous Discrete Logarithms.,2012,64,Algorithmica,2,db/journals/algorithmica/algorithmica64.html#ChowMW12,https://doi.org/10.1007/s00453-011-9593-3 +Kazuo Iwama,Max-Stretch Reduction for Tree Spanners.,2008,50,Algorithmica,2,db/journals/algorithmica/algorithmica50.html#IwamaLO08,https://doi.org/10.1007/s00453-007-9058-x +Surender Baswana,Planar Graph Blocking for External Searching.,2002,34,Algorithmica,3,db/journals/algorithmica/algorithmica34.html#BaswanaS02,https://doi.org/10.1007/s00453-002-0969-2 +René Beier,Energy-Efficient Paths in Radio Networks.,2011,61,Algorithmica,2,db/journals/algorithmica/algorithmica61.html#BeierFMS11,https://doi.org/10.1007/s00453-010-9414-0 +Viswanath Nagarajan,Approximation Algorithms for Requirement Cut on Graphs.,2010,56,Algorithmica,2,db/journals/algorithmica/algorithmica56.html#NagarajanR10,https://doi.org/10.1007/s00453-008-9171-5 +Jianbo Qian,A Linear-Time Approximation Scheme for Maximum Weight Triangulation of Convex Polygons.,2004,40,Algorithmica,3,db/journals/algorithmica/algorithmica40.html#QianW04,https://doi.org/10.1007/s00453-004-1101-6 +Manu Basavaraju,Separation Dimension of Graphs and Hypergraphs.,2016,75,Algorithmica,1,db/journals/algorithmica/algorithmica75.html#BasavarajuCGMR16,https://doi.org/10.1007/s00453-015-0050-6 +Faith E. Fich,Simulations Among Concurrent-Write PRAMs.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#FichRW88,https://doi.org/10.1007/BF01762109 +Edith Cohen,Caching Documents with Variable Sizes and Fetching Costs: An LP-Based Approach.,2002,32,Algorithmica,3,db/journals/algorithmica/algorithmica32.html#CohenK02,https://doi.org/10.1007/s00453-001-0081-z +Lukas Folwarczny,General Caching Is Hard: Even with Small Pages.,2017,79,Algorithmica,2,db/journals/algorithmica/algorithmica79.html#FolwarcznyS17,https://doi.org/10.1007/s00453-016-0185-0 +Daniel W. Cranston,Injective Colorings of Graphs with Low Average Degree.,2011,60,Algorithmica,3,db/journals/algorithmica/algorithmica60.html#CranstonKY11,https://doi.org/10.1007/s00453-010-9425-x +Samir Khuller,Broadcasting on Networks of Workstations.,2010,57,Algorithmica,4,db/journals/algorithmica/algorithmica57.html#KhullerKW10,https://doi.org/10.1007/s00453-008-9249-0 +Samir Khuller,New Approximation Results for Resource Replication Problems.,2016,74,Algorithmica,3,db/journals/algorithmica/algorithmica74.html#KhullerSS16,https://doi.org/10.1007/s00453-015-9978-9 +Sergio Cabello,Crossing Number and Weighted Crossing Number of Near-Planar Graphs.,2011,60,Algorithmica,3,db/journals/algorithmica/algorithmica60.html#CabelloM11,https://doi.org/10.1007/s00453-009-9357-5 +Susanne Albers,New Results on Web Caching with Request Reordering.,2010,58,Algorithmica,2,db/journals/algorithmica/algorithmica58.html#Albers10,https://doi.org/10.1007/s00453-008-9276-x +Hitoshi Inamori,Security of Practical BB84 Quantum Key Distribution.,2002,34,Algorithmica,4,db/journals/algorithmica/algorithmica34.html#Inamori02a,https://doi.org/10.1007/s00453-002-0984-3 +Nir Avrahami,Minimizing Total Flow Time and Total Completion Time with Immediate Dispatching.,2007,47,Algorithmica,3,db/journals/algorithmica/algorithmica47.html#AvrahamiA07,https://doi.org/10.1007/s00453-006-0193-6 +Guojun Li,An Algorithm for Simultaneous Backbone Threading and Side-Chain Packing.,2007,48,Algorithmica,4,db/journals/algorithmica/algorithmica48.html#LiLGX07,https://doi.org/10.1007/s00453-007-0189-x +Nadav Efraty,Sparse Normalized Local Alignment.,2005,43,Algorithmica,3,db/journals/algorithmica/algorithmica43.html#EfratyL05,https://doi.org/10.1007/s00453-005-1152-3 +Masato Edahiro,Equispreading Tree in Manhattan Distance.,1996,16,Algorithmica,3,db/journals/algorithmica/algorithmica16.html#Edahiro96,https://doi.org/10.1007/BF01955680 +Friedemann Mattern,Asynchronous Distributed Termination-Parallel and Symmetric Solutions with Echo Algorithms.,1990,5,Algorithmica,3,db/journals/algorithmica/algorithmica5.html#Mattern90,https://doi.org/10.1007/BF01840392 +Danny Z. Chen,Guest Editors' Forward.,2009,53,Algorithmica,2,db/journals/algorithmica/algorithmica53.html#ChenL09,https://doi.org/10.1007/s00453-008-9186-y +D. F. Wong,Floorplan Design of VLSI Circuits.,1989,4,Algorithmica,2,db/journals/algorithmica/algorithmica4.html#WongL89,https://doi.org/10.1007/BF01553890 +Luca Foschini,On the Complexity of Time-Dependent Shortest Paths.,2014,68,Algorithmica,4,db/journals/algorithmica/algorithmica68.html#FoschiniHS14,https://doi.org/10.1007/s00453-012-9714-7 +Liam Roditty,On Bounded Leg Shortest Paths Problems.,2011,59,Algorithmica,4,db/journals/algorithmica/algorithmica59.html#RodittyS11,https://doi.org/10.1007/s00453-009-9322-3 +Takao Asano,Visibility of Disjoint Polygons.,1986,1,Algorithmica,1,db/journals/algorithmica/algorithmica1.html#AsanoAGHI86,https://doi.org/10.1007/BF01840436 +Jesper Jansson,Faster Algorithms for Computing the R* Consensus Tree.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#JanssonSVY16,https://doi.org/10.1007/s00453-016-0122-2 +Anna R. Karlin,Competitive Snoopy Caching.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#KarlinMRS88,https://doi.org/10.1007/BF01762111 +Nick Reingold,Randomized Competitive Algorithms for the List Update Problem.,1994,11,Algorithmica,1,db/journals/algorithmica/algorithmica11.html#ReingoldWS94,https://doi.org/10.1007/BF01294261 +Viliam Geffert,"Pairs of Complementary Unary Languages with ""Balanced"" Nondeterministic Automata.",2012,63,Algorithmica,3,db/journals/algorithmica/algorithmica63.html#GeffertP12,https://doi.org/10.1007/s00453-010-9479-9 +Zhi-Zhong Chen,Approximation Algorithms for Bounded Degree Phylogenetic Roots.,2008,51,Algorithmica,1,db/journals/algorithmica/algorithmica51.html#Chen08,https://doi.org/10.1007/s00453-007-9072-z +Alexander Zelikovsky,An 11/6-Approximation Algorithm for the Network Steiner Problem.,1993,9,Algorithmica,5,db/journals/algorithmica/algorithmica9.html#Zelikovsky93,https://doi.org/10.1007/BF01187035 +Songjian Lu,Finding Pathway Structures in Protein Interaction Networks.,2007,48,Algorithmica,4,db/journals/algorithmica/algorithmica48.html#LuZCS07,https://doi.org/10.1007/s00453-007-0155-7 +Jesper Jansson,A Faster and More Space-Efficient Algorithm for Inferring Arc-Annotations of RNA Sequences through Alignment.,2006,46,Algorithmica,2,db/journals/algorithmica/algorithmica46.html#JanssonNSW06,https://doi.org/10.1007/s00453-006-1207-0 +Achilleas Papakostas,Efficient Orthogonal Drawings of High Degree Graphs.,2000,26,Algorithmica,1,db/journals/algorithmica/algorithmica26.html#PapakostasT00,https://doi.org/10.1007/s004539910006 +Per Austrin,On the Impossibility of Cryptography with Tamperable Randomness.,2017,79,Algorithmica,4,db/journals/algorithmica/algorithmica79.html#AustrinCMPS17,https://doi.org/10.1007/s00453-016-0219-7 +Camil Demetrescu,Editorial.,2013,67,Algorithmica,4,db/journals/algorithmica/algorithmica67.html#DemetrescuH13,https://doi.org/10.1007/s00453-013-9824-x +Mikhail J. Atallah,On the Parallel-Decomposability of Geometric Problems.,1992,8,Algorithmica,3,db/journals/algorithmica/algorithmica8.html#AtallahT92,https://doi.org/10.1007/BF01758844 +Reuven Bar-Yehuda,A Constant Factor Approximation Algorithm for the Storage Allocation Problem.,2017,77,Algorithmica,4,db/journals/algorithmica/algorithmica77.html#Bar-YehudaBR17,https://doi.org/10.1007/s00453-016-0137-8 +Ioannis Caragiannis,Short Sequences of Improvement Moves Lead to Approximate Equilibria in Constraint Satisfaction Games.,2017,77,Algorithmica,4,db/journals/algorithmica/algorithmica77.html#Caragiannis0G17,https://doi.org/10.1007/s00453-016-0143-x +Leonid Khachiyan,Generating Cut Conjunctions in Graphs and Related Problems.,2008,51,Algorithmica,3,db/journals/algorithmica/algorithmica51.html#KhachiyanBBEGM08,https://doi.org/10.1007/s00453-007-9111-9 +Nikhil Bansal,Non-Clairvoyant Scheduling for Minimizing Mean Slowdown.,2004,40,Algorithmica,4,db/journals/algorithmica/algorithmica40.html#BansalDKS04,https://doi.org/10.1007/s00453-004-1115-0 +Greg N. Frederickson,Maintaining Regular Properties Dynamically in k-Terminal Graphs.,1998,22,Algorithmica,3,db/journals/algorithmica/algorithmica22.html#Frederickson98,https://doi.org/10.1007/PL00009227 +Yaw-Ling Lin,Synthetic Sequence Design for Signal Location Search.,2013,67,Algorithmica,3,db/journals/algorithmica/algorithmica67.html#LinWS13,https://doi.org/10.1007/s00453-013-9760-9 +Ravi Kumar 0001,Approximating Latin Square Extensions.,1999,24,Algorithmica,2,db/journals/algorithmica/algorithmica24.html#KumarRS99,https://doi.org/10.1007/PL00009274 +G. N. Srinivasa Prasanna,The Optimal Control Approach to Generalized Multiprocessor Scheduling.,1996,15,Algorithmica,1,db/journals/algorithmica/algorithmica15.html#PrasannaM96,https://doi.org/10.1007/BF01942605 +Akira Matsubayashi,Asymptotically Optimal Online Page Migration on Three Points.,2015,71,Algorithmica,4,db/journals/algorithmica/algorithmica71.html#Matsubayashi15,https://doi.org/10.1007/s00453-013-9841-9 +Paola Bonizzoni,A Linear-Time Algorithm for the Perfect Phylogeny Haplotype Problem.,2007,48,Algorithmica,3,db/journals/algorithmica/algorithmica48.html#Bonizzoni07,https://doi.org/10.1007/s00453-007-0094-3 +Joseph Wun-Tat Chan,Absolute and Asymptotic Bounds for Online Frequency Allocation in Cellular Networks.,2010,58,Algorithmica,2,db/journals/algorithmica/algorithmica58.html#ChanCYZ10,https://doi.org/10.1007/s00453-009-9279-2 +Boris Aronov,Minimum-Cost Load-Balancing Partitions.,2009,54,Algorithmica,3,db/journals/algorithmica/algorithmica54.html#AronovCK09,https://doi.org/10.1007/s00453-007-9125-3 +Ricardo A. Baeza-Yates,Faster Approximate String Matching.,1999,23,Algorithmica,2,db/journals/algorithmica/algorithmica23.html#Baeza-YatesN99,https://doi.org/10.1007/PL00009253 +Muhammad Jawaherul Alam,Linear-Time Algorithms for Hole-free Rectilinear Proportional Contact Graph Representations.,2013,67,Algorithmica,1,db/journals/algorithmica/algorithmica67.html#AlamBFGKK13,https://doi.org/10.1007/s00453-013-9764-5 +Anima Anandkumar,A Spectral Algorithm for Latent Dirichlet Allocation.,2015,72,Algorithmica,1,db/journals/algorithmica/algorithmica72.html#AnandkumarFHKL15,https://doi.org/10.1007/s00453-014-9909-1 +Amihood Amir,Swap and Mismatch Edit Distance.,2006,45,Algorithmica,1,db/journals/algorithmica/algorithmica45.html#AmirEP06,https://doi.org/10.1007/s00453-005-1192-8 +Kurt M. Anstreicher,A Monotonic Projective Algorithm for Fractional Linear Programming.,1986,1,Algorithmica,4,db/journals/algorithmica/algorithmica1.html#Anstreicher86,https://doi.org/10.1007/BF01840458 +Ding-Zhu Du,On Greedy Heuristics for Steiner Minimum Trees.,1995,13,Algorithmica,4,db/journals/algorithmica/algorithmica13.html#Du95,https://doi.org/10.1007/BF01293486 +Maw-Shang Chang,Solving the Euclidean Bottleneck Matching Problem by k-Relative Neighborhood Graphs.,1992,8,Algorithmica,3,db/journals/algorithmica/algorithmica8.html#ChangTL92,https://doi.org/10.1007/BF01758842 +Andreas Krebs,Counting Paths in VPA Is Complete for #NC 1.,2012,64,Algorithmica,2,db/journals/algorithmica/algorithmica64.html#KrebsLM12,https://doi.org/10.1007/s00453-011-9501-x +Magnús M. Halldórsson,Greed is Good: Approximating Independent Sets in Sparse and Bounded-Degree Graphs.,1997,18,Algorithmica,1,db/journals/algorithmica/algorithmica18.html#HalldorssonR97,https://doi.org/10.1007/BF02523693 +Jianer Chen,An Improved Parameterized Algorithm for the Minimum Node Multiway Cut Problem.,2009,55,Algorithmica,1,db/journals/algorithmica/algorithmica55.html#ChenLL09,https://doi.org/10.1007/s00453-007-9130-6 +Wenchang Luo,Algorithms for Communication Scheduling in Data Gathering Network with Data Compression.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#LuoXGTGL18,https://doi.org/10.1007/s00453-017-0373-6 +Aparna Das,A Quasipolynomial Time Approximation Scheme for Euclidean Capacitated Vehicle Routing.,2015,73,Algorithmica,1,db/journals/algorithmica/algorithmica73.html#DasM15,https://doi.org/10.1007/s00453-014-9906-4 +Jinsong Tan,The Consecutive Ones Submatrix Problem for Sparse Matrices.,2007,48,Algorithmica,3,db/journals/algorithmica/algorithmica48.html#TanZ07,https://doi.org/10.1007/s00453-007-0118-z +Hitoshi Suzuki,Algorithms for Multicommodity Flows in Planar Graphs.,1989,4,Algorithmica,4,db/journals/algorithmica/algorithmica4.html#SuzukiNS89,https://doi.org/10.1007/BF01553903 +Andrei Lissovoi,The Impact of a Sparse Migration Topology on the Runtime of Island Models in Dynamic Optimization.,2018,80,Algorithmica,5,db/journals/algorithmica/algorithmica80.html#LissovoiW18,https://doi.org/10.1007/s00453-017-0377-2 +Dieter Kratsch,Guest Editorial: Selected Papers from WG 2014.,2016,75,Algorithmica,1,db/journals/algorithmica/algorithmica75.html#KratschT16,https://doi.org/10.1007/s00453-016-0135-x +Seok-Hee Hong,Editorial: ISAAC 2008 Special Issue.,2011,61,Algorithmica,4,db/journals/algorithmica/algorithmica61.html#HongN11,https://doi.org/10.1007/s00453-011-9507-4 +Shang-Ching Chou,An Algorithm for Constructing Gröbner Bases from Characteristic Sets and Its Application to Geometry.,1990,5,Algorithmica,2,db/journals/algorithmica/algorithmica5.html#ChouSY90,https://doi.org/10.1007/BF01840382 +János Csirik,Online Clustering with Variable Sized Clusters.,2013,65,Algorithmica,2,db/journals/algorithmica/algorithmica65.html#CsirikEIL13,https://doi.org/10.1007/s00453-011-9586-2 +Tamás Fleiner,The Stable Roommates Problem with Choice Functions.,2010,58,Algorithmica,1,db/journals/algorithmica/algorithmica58.html#Fleiner10,https://doi.org/10.1007/s00453-009-9314-3 +Hans L. Bodlaender,Introduction.,2000,27,Algorithmica,3,db/journals/algorithmica/algorithmica27.html#Bodlaender00,https://doi.org/10.1007/s004530010015 +David Alberts,Average-Case Analysis of Dynamic Graph Algorithms.,1998,20,Algorithmica,1,db/journals/algorithmica/algorithmica20.html#AlbertsH98,https://doi.org/10.1007/PL00009186 +Fedor V. Fomin,How to Guard a Graph?,2011,61,Algorithmica,4,db/journals/algorithmica/algorithmica61.html#FominGHMVW11,https://doi.org/10.1007/s00453-009-9382-4 +Andris Ambainis,Communication Complexity in a 3-Computer Model.,1996,16,Algorithmica,3,db/journals/algorithmica/algorithmica16.html#Ambainis96,https://doi.org/10.1007/BF01955678 +Jens Jägersküpper,Combining Markov-Chain Analysis and Drift Analysis - The (1+1)©0*Evolutionary Algorithm on Linear Functions Reloaded.,2011,59,Algorithmica,3,db/journals/algorithmica/algorithmica59.html#Jagerskupper11,https://doi.org/10.1007/s00453-010-9396-y +Takehiro Ito,Minimum Cost Partitions of Trees with Supply and Demand.,2012,64,Algorithmica,3,db/journals/algorithmica/algorithmica64.html#ItoHZN12,https://doi.org/10.1007/s00453-011-9573-7 +John Iacono,Key-Independent Optimality.,2005,42,Algorithmica,1,db/journals/algorithmica/algorithmica42.html#Iacono05,https://doi.org/10.1007/s00453-004-1136-8 +Johan M. M. van Rooij,Exact Algorithms for Edge Domination.,2012,64,Algorithmica,4,db/journals/algorithmica/algorithmica64.html#RooijB12,https://doi.org/10.1007/s00453-011-9546-x +Marios Mavronicolas,The Price of Selfish Routing.,2007,48,Algorithmica,1,db/journals/algorithmica/algorithmica48.html#MavronicolasS07,https://doi.org/10.1007/s00453-006-0056-1 +Vince Grolmusz,Large Parallel Machines Can Be Extremely Slow for Small Problems.,1991,6,Algorithmica,4,db/journals/algorithmica/algorithmica6.html#Grolmusz91,https://doi.org/10.1007/BF01759055 +Henning Meyerhenke,Beyond Good Partition Shapes: An Analysis of Diffusive Graph Partitioning.,2012,64,Algorithmica,3,db/journals/algorithmica/algorithmica64.html#MeyerhenkeS12,https://doi.org/10.1007/s00453-012-9666-y +Christopher Umans,Reconstructive Dispersers and Hitting Set Generators.,2009,55,Algorithmica,1,db/journals/algorithmica/algorithmica55.html#Umans09,https://doi.org/10.1007/s00453-008-9266-z +Tatsuya Akutsu,Approximating Tree Edit Distance through String Edit Distance.,2010,57,Algorithmica,2,db/journals/algorithmica/algorithmica57.html#AkutsuFT10,https://doi.org/10.1007/s00453-008-9213-z +José R. Correa,Foreword.,2008,50,Algorithmica,4,db/journals/algorithmica/algorithmica50.html#CorreaK08,https://doi.org/10.1007/s00453-007-9034-5 +Umberto Ferraro Petrillo,The Price of Resiliency: a Case Study on Sorting with Memory Faults.,2009,53,Algorithmica,4,db/journals/algorithmica/algorithmica53.html#PetrilloFI09,https://doi.org/10.1007/s00453-008-9264-1 +Rafi Witten,Randomized Algorithms for Low-Rank Matrix Factorizations: Sharp Performance Bounds.,2015,72,Algorithmica,1,db/journals/algorithmica/algorithmica72.html#WittenC15,https://doi.org/10.1007/s00453-014-9891-7 +Anders Gidenstam,NBmalloc: Allocating Memory in a Lock-Free Manner.,2010,58,Algorithmica,2,db/journals/algorithmica/algorithmica58.html#GidenstamPT10,https://doi.org/10.1007/s00453-008-9268-x +George Christodoulou 0001,A Lower Bound for Scheduling Mechanisms.,2009,55,Algorithmica,4,db/journals/algorithmica/algorithmica55.html#ChristodoulouKV09,https://doi.org/10.1007/s00453-008-9165-3 +Serafino Cicerone,Engineering a New Algorithm for Distributed Shortest Paths on Dynamic Networks.,2013,66,Algorithmica,1,db/journals/algorithmica/algorithmica66.html#CiceroneDSFM13,https://doi.org/10.1007/s00453-012-9623-9 +Fabrizio Luccio,A New Scheme for the Deterministic Simulation of PRAMs in VLSI.,1990,5,Algorithmica,4,db/journals/algorithmica/algorithmica5.html#LuccioPP90,https://doi.org/10.1007/BF01840402 +Sanjeev Arora,Approximation Schemes for Degree-Restricted MST and Red-Blue Separation Problems.,2004,40,Algorithmica,3,db/journals/algorithmica/algorithmica40.html#AroraC04,https://doi.org/10.1007/s00453-004-1103-4 +Loïck Lhote,Gaussian Laws for the Main Parameters of the Euclid Algorithms.,2008,50,Algorithmica,4,db/journals/algorithmica/algorithmica50.html#LhoteV08,https://doi.org/10.1007/s00453-007-9009-6 +Erik Krohn,Approximate Guarding of Monotone and Rectilinear Polygons.,2013,66,Algorithmica,3,db/journals/algorithmica/algorithmica66.html#KrohnN13,https://doi.org/10.1007/s00453-012-9653-3 +Gonzalo Navarro,Improving an Algorithm for Approximate Pattern Matching.,2001,30,Algorithmica,4,db/journals/algorithmica/algorithmica30.html#NavarroB01,https://doi.org/10.1007/s00453-001-0034-6 +Nikhil Bansal,A Randomized O(log2 k)-Competitive Algorithm for Metric Bipartite Matching.,2014,68,Algorithmica,2,db/journals/algorithmica/algorithmica68.html#BansalBGN14,https://doi.org/10.1007/s00453-012-9676-9 +Hitoshi Inamori,Security of Practical Time-Reversed EPR Quantum Key Distribution.,2002,34,Algorithmica,4,db/journals/algorithmica/algorithmica34.html#Inamori02,https://doi.org/10.1007/s00453-002-0983-4 +Moses Ganardi,Tree Compression Using String Grammars.,2018,80,Algorithmica,3,db/journals/algorithmica/algorithmica80.html#GanardiHLN18,https://doi.org/10.1007/s00453-017-0279-3 +Christoph Burnikel,A Strong and Easily Computable Separation Bound for Arithmetic Expressions Involving Radicals.,2000,27,Algorithmica,1,db/journals/algorithmica/algorithmica27.html#BurnikelFMS00,https://doi.org/10.1007/s004530010005 +D. F. Wong,Probabilistic Analysis of a Grouping Algorithm.,1991,6,Algorithmica,2,db/journals/algorithmica/algorithmica6.html#WongR91,https://doi.org/10.1007/BF01759041 +Lene M. Favrholdt,On-Line Edge-Coloring with a Fixed Number of Colors.,2003,35,Algorithmica,2,db/journals/algorithmica/algorithmica35.html#FavrholdtN03,https://doi.org/10.1007/s00453-002-0992-3 +Katharina T. Huber,Reconstructing Phylogenetic Level-1 Networks from Nondense Binet and Trinet Sets.,2017,77,Algorithmica,1,db/journals/algorithmica/algorithmica77.html#HuberIMSW17,https://doi.org/10.1007/s00453-015-0069-8 +S. Thomas McCormick,Primal-Dual Algorithms for Precedence Constrained Covering Problems.,2017,78,Algorithmica,3,db/journals/algorithmica/algorithmica78.html#McCormickPVW17,https://doi.org/10.1007/s00453-016-0174-3 +Reuven Bar-Yehuda,Efficient Algorithms for Integer Programs with Two Variables per Constraint.,2001,29,Algorithmica,4,db/journals/algorithmica/algorithmica29.html#Bar-YehudaR01,https://doi.org/10.1007/s004530010075 +Liam Roditty,On Dynamic Shortest Paths Problems.,2011,61,Algorithmica,2,db/journals/algorithmica/algorithmica61.html#RodittyZ11,https://doi.org/10.1007/s00453-010-9401-5 +Leah Epstein,SONET ADMs Minimization with Divisible Paths.,2007,49,Algorithmica,1,db/journals/algorithmica/algorithmica49.html#EpsteinL07,https://doi.org/10.1007/s00453-007-0182-4 +Julián Mestre,A Primal-Dual Approximation Algorithm for Partial Vertex Cover: Making Educated Guesses.,2009,55,Algorithmica,1,db/journals/algorithmica/algorithmica55.html#Mestre09,https://doi.org/10.1007/s00453-007-9003-z +Catherine C. McGeoch,All-Pairs Shortest Paths and the Essential Subgraph.,1995,13,Algorithmica,5,db/journals/algorithmica/algorithmica13.html#McGeoch95,https://doi.org/10.1007/BF01190847 +Mireille Bousquet-Mélou,Introduction for S.I. AofA14.,2016,75,Algorithmica,4,db/journals/algorithmica/algorithmica75.html#Bousquet-MelouS16,https://doi.org/10.1007/s00453-016-0156-5 +Ben Reichardt,Error-Detection-Based Quantum Fault-Tolerance Threshold.,2009,55,Algorithmica,3,db/journals/algorithmica/algorithmica55.html#Reichardt09,https://doi.org/10.1007/s00453-007-9069-7 +Fedor V. Fomin,Nondeterministic Graph Searching: From Pathwidth to Treewidth.,2009,53,Algorithmica,3,db/journals/algorithmica/algorithmica53.html#FominFN09,https://doi.org/10.1007/s00453-007-9041-6 +Piotr Berman,Consistent Sets of Secondary Structures in Proteins.,2009,53,Algorithmica,1,db/journals/algorithmica/algorithmica53.html#BermanJ09,https://doi.org/10.1007/s00453-007-9068-8 +Ulrich Hertrampf,Resource Bounded Frequency Computations with Three Errors.,2010,56,Algorithmica,3,db/journals/algorithmica/algorithmica56.html#HertrampfM10,https://doi.org/10.1007/s00453-009-9330-3 +Christine Rüb,Line-Segment Intersection Reporting in Parallel.,1992,8,Algorithmica,2,db/journals/algorithmica/algorithmica8.html#Rub92,https://doi.org/10.1007/BF01758839 +Jan Remy,Approximation Schemes for Node-Weighted Geometric Steiner Tree Problems.,2009,55,Algorithmica,1,db/journals/algorithmica/algorithmica55.html#RemyS09,https://doi.org/10.1007/s00453-007-9114-6 +Hans L. Bodlaender,Parameterized Complexity of the Spanning Tree Congestion Problem.,2012,64,Algorithmica,1,db/journals/algorithmica/algorithmica64.html#BodlaenderFGOL12,https://doi.org/10.1007/s00453-011-9565-7 +Carlo Comin,Improved Pseudo-polynomial Bound for the Value Problem and Optimal Strategy Synthesis in Mean Payoff Games.,2017,77,Algorithmica,4,db/journals/algorithmica/algorithmica77.html#CominR17,https://doi.org/10.1007/s00453-016-0123-1 +Victor Milenkovic,Shortest Path Geometric Rounding.,2000,27,Algorithmica,1,db/journals/algorithmica/algorithmica27.html#Milenkovic00,https://doi.org/10.1007/s004530010004 +Alon Efrat,Pattern Matching for Sets of Segments.,2004,40,Algorithmica,3,db/journals/algorithmica/algorithmica40.html#EfratIV04,https://doi.org/10.1007/s00453-004-1089-y +Kurt Mehlhorn,Certifying 3-Edge-Connectivity.,2017,77,Algorithmica,2,db/journals/algorithmica/algorithmica77.html#MehlhornNS17,https://doi.org/10.1007/s00453-015-0075-x +Donald E. Knuth,Linear Probing and Graphs.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#Knuth98,https://doi.org/10.1007/PL00009240 +Marie-Louise Bruner,A Fast Algorithm for Permutation Pattern Matching Based on Alternating Runs.,2016,75,Algorithmica,1,db/journals/algorithmica/algorithmica75.html#BrunerL16,https://doi.org/10.1007/s00453-015-0013-y +Qi Cheng,Partial Lifting and the Elliptic Curve Discrete Logarithm Problem.,2006,46,Algorithmica,1,db/journals/algorithmica/algorithmica46.html#ChengH06,https://doi.org/10.1007/s00453-006-0069-9 +Peter Damaschke,Two New Perspectives on Multi-Stage Group Testing.,2013,67,Algorithmica,3,db/journals/algorithmica/algorithmica67.html#DamaschkeMT13,https://doi.org/10.1007/s00453-013-9781-4 +Daniele Frigioni,Dynamically Switching Vertices in Planar Graphs.,2000,28,Algorithmica,1,db/journals/algorithmica/algorithmica28.html#FrigioniI00,https://doi.org/10.1007/s004530010032 +Justo Puerto,On the Planar Piecewise Quadratic 1-Center Problem.,2010,57,Algorithmica,2,db/journals/algorithmica/algorithmica57.html#PuertoRT10,https://doi.org/10.1007/s00453-008-9210-2 +Babak Behsaz,On Minimum Sum of Radii and Diameters Clustering.,2015,73,Algorithmica,1,db/journals/algorithmica/algorithmica73.html#BehsazS15,https://doi.org/10.1007/s00453-014-9907-3 +Daisuke Yamaguchi,An Improved Approximation Algorithm for the Traveling Tournament Problem.,2011,61,Algorithmica,4,db/journals/algorithmica/algorithmica61.html#YamaguchiIMM11,https://doi.org/10.1007/s00453-011-9579-1 +Pankaj K. Agarwal,Streaming Algorithms for Extent Problems in High Dimensions.,2015,72,Algorithmica,1,db/journals/algorithmica/algorithmica72.html#AgarwalS15,https://doi.org/10.1007/s00453-013-9846-4 +Wim van Dam,Quantum Algorithms for Weighing Matrices and Quadratic Residues.,2002,34,Algorithmica,4,db/journals/algorithmica/algorithmica34.html#Dam02,https://doi.org/10.1007/s00453-002-0975-4 +Michael R. Fellows,On Finding Optimal and Near-Optimal Lineal Spanning Trees.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#FellowsFL88,https://doi.org/10.1007/BF01762131 +Benjamin Doerr,Theory of Evolutionary Computation.,2011,59,Algorithmica,3,db/journals/algorithmica/algorithmica59.html#DoerrJ11,https://doi.org/10.1007/s00453-010-9472-3 +Rebecca N. Wright,Experimental Performance of Shared RSA Modulus Generation.,2002,33,Algorithmica,1,db/journals/algorithmica/algorithmica33.html#WrightS02,https://doi.org/10.1007/s00453-001-0106-7 +Adam L. Buchsbaum,An Approximate Determinization Algorithm for Weighted Finite-State Automata.,2001,30,Algorithmica,4,db/journals/algorithmica/algorithmica30.html#BuchsbaumGW01,https://doi.org/10.1007/s00453-001-0026-6 +Mark de Berg,Trekking in the Alps Without Freezing or Getting Tired.,1997,18,Algorithmica,3,db/journals/algorithmica/algorithmica18.html#BergK97,https://doi.org/10.1007/PL00009159 +Martin Knauer,Better Approximation Algorithms for the Maximum Internal Spanning Tree Problem.,2015,71,Algorithmica,4,db/journals/algorithmica/algorithmica71.html#KnauerS15,https://doi.org/10.1007/s00453-013-9827-7 +Pierre Fraigniaud,Interval Routing Schemes.,1998,21,Algorithmica,2,db/journals/algorithmica/algorithmica21.html#FraigniaudG98,https://doi.org/10.1007/PL00009211 +Vikraman Arvind,Colored Hypergraph Isomorphism is Fixed Parameter Tractable.,2015,71,Algorithmica,1,db/journals/algorithmica/algorithmica71.html#ArvindDKT15,https://doi.org/10.1007/s00453-013-9787-y +Rephael Wenger,Randomized Quickhull.,1997,17,Algorithmica,3,db/journals/algorithmica/algorithmica17.html#Wenger97,https://doi.org/10.1007/BF02523195 +Hiroshi Fujiwara,Average-Case Competitive Analyses for Ski-Rental Problems.,2005,42,Algorithmica,1,db/journals/algorithmica/algorithmica42.html#FujiwaraI05,https://doi.org/10.1007/s00453-004-1142-x +Dan Gusfield,A Bounded Approximation for the Minimum Cost 2-Sat Problem.,1992,8,Algorithmica,2,db/journals/algorithmica/algorithmica8.html#GusfieldP92,https://doi.org/10.1007/BF01758838 +Emilio Di Giacomo,Ortho-polygon Visibility Representations of Embedded Graphs.,2018,80,Algorithmica,8,db/journals/algorithmica/algorithmica80.html#GiacomoDELMMW18,https://doi.org/10.1007/s00453-017-0324-2 +Troy Lee,Improved Quantum Query Algorithms for Triangle Detection and Associativity Testing.,2017,77,Algorithmica,2,db/journals/algorithmica/algorithmica77.html#LeeMS17,https://doi.org/10.1007/s00453-015-0084-9 +Timo Bingmann,Engineering Parallel String Sorting.,2017,77,Algorithmica,1,db/journals/algorithmica/algorithmica77.html#BingmannES17,https://doi.org/10.1007/s00453-015-0071-1 +Marshall W. Bern,Visibility with a Moving Point of View.,1994,11,Algorithmica,4,db/journals/algorithmica/algorithmica11.html#BernDEG94,https://doi.org/10.1007/BF01187019 +Rudolf Fleischer,Balanced Scheduling toward Loss-Free Packet Queuing and Delay Fairness.,2004,38,Algorithmica,2,db/journals/algorithmica/algorithmica38.html#FleischerK03,https://doi.org/10.1007/s00453-003-1064-z +Sandy Irani,Page Replacement with Multi-Size Pages and Applications to Web Caching.,2002,33,Algorithmica,3,db/journals/algorithmica/algorithmica33.html#Irani02a,https://doi.org/10.1007/s00453-001-0125-4 +Raphael Yuster,Maximum Matching in Regular and Almost Regular Graphs.,2013,66,Algorithmica,1,db/journals/algorithmica/algorithmica66.html#Yuster13,https://doi.org/10.1007/s00453-012-9625-7 +Viet Tung Hoang,Improved Algorithms for Maximum Agreement and©0*Compatible Supertrees.,2011,59,Algorithmica,2,db/journals/algorithmica/algorithmica59.html#HoangS11,https://doi.org/10.1007/s00453-009-9303-6 +F. Miller Maley,Testing Homotopic Routability Under Polygonal Wiring Rules.,1996,15,Algorithmica,1,db/journals/algorithmica/algorithmica15.html#Maley96,https://doi.org/10.1007/BF01942604 +Yusuke Matsumoto,On Total Unimodularity of Edge-Edge Adjacency Matrices.,2013,67,Algorithmica,2,db/journals/algorithmica/algorithmica67.html#MatsumotoKI13,https://doi.org/10.1007/s00453-013-9804-1 +Gregory Kucherov,Full-Fledged Real-Time Indexing for Constant Size Alphabets.,2017,79,Algorithmica,2,db/journals/algorithmica/algorithmica79.html#KucherovN17,https://doi.org/10.1007/s00453-016-0199-7 +Ke Yi,Optimal Tracking of Distributed Heavy Hitters and Quantiles.,2013,65,Algorithmica,1,db/journals/algorithmica/algorithmica65.html#YiZ13,https://doi.org/10.1007/s00453-011-9584-4 +Noga Alon,Finding and Counting Given Length Cycles.,1997,17,Algorithmica,3,db/journals/algorithmica/algorithmica17.html#AlonYZ97,https://doi.org/10.1007/BF02523189 +Sorina Dumitrescu,Optimal Two-Description Scalar Quantizer Design.,2005,41,Algorithmica,4,db/journals/algorithmica/algorithmica41.html#DumitrescuW05,https://doi.org/10.1007/s00453-004-1126-x +Antonis Thomas,Pure Nash Equilibria in Graphical Games and Treewidth.,2015,71,Algorithmica,3,db/journals/algorithmica/algorithmica71.html#ThomasL15,https://doi.org/10.1007/s00453-014-9923-3 +Antonis Achilleos,Parameterized Modal Satisfiability.,2012,64,Algorithmica,1,db/journals/algorithmica/algorithmica64.html#AchilleosLM12,https://doi.org/10.1007/s00453-011-9552-z +Francis Y. L. Chin,Algorithms for Placing Monitors in a Flow Network.,2014,68,Algorithmica,1,db/journals/algorithmica/algorithmica68.html#ChinCY14,https://doi.org/10.1007/s00453-012-9665-z +Takeaki Uno,An Efficient Algorithm for Solving Pseudo Clique Enumeration Problem.,2010,56,Algorithmica,1,db/journals/algorithmica/algorithmica56.html#Uno10,https://doi.org/10.1007/s00453-008-9238-3 +Levent Tunçel,On the Complexity of Preflow-Push Algorithms for Maximum-Flow Problems.,1994,11,Algorithmica,4,db/journals/algorithmica/algorithmica11.html#Tuncel94,https://doi.org/10.1007/BF01187018 +Gerth Stølting Brodal,Computing the Quartet Distance between Evolutionary Trees in Time O(n log n).,2004,38,Algorithmica,2,db/journals/algorithmica/algorithmica38.html#BrodalFP03,https://doi.org/10.1007/s00453-003-1065-y +Dániel Marx,Chordal Deletion is Fixed-Parameter Tractable.,2010,57,Algorithmica,4,db/journals/algorithmica/algorithmica57.html#Marx10,https://doi.org/10.1007/s00453-008-9233-8 +Julian Anaya,Convergecast and Broadcast by Power-Aware Mobile Agents.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#AnayaCCLPV16,https://doi.org/10.1007/s00453-014-9939-8 +Markus Lohrey,Constant-Time Tree Traversal and Subtree Equality Check for Grammar-Compressed Trees.,2018,80,Algorithmica,7,db/journals/algorithmica/algorithmica80.html#LohreyMR18,https://doi.org/10.1007/s00453-017-0331-3 +Jean-Daniel Boissonnat,A Semidynamic Construction of Higher-Order Voronoi Diagrams and Its Randomized Analysis.,1993,9,Algorithmica,4,db/journals/algorithmica/algorithmica9.html#BoissonnatDT93,https://doi.org/10.1007/BF01228508 +Bernard Chazelle,Editor's Foreword.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#Chazelle87,https://doi.org/10.1007/BF01840355 +Leah Epstein,Parametric Packing of Selfish Items and the Subset Sum Algorithm.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#EpsteinKM16,https://doi.org/10.1007/s00453-014-9942-0 +George B. Mertzios,An Intersection Model for Multitolerance Graphs: Efficient Algorithms and Hierarchy.,2014,69,Algorithmica,3,db/journals/algorithmica/algorithmica69.html#Mertzios14,https://doi.org/10.1007/s00453-012-9743-2 +Amy J. Briggs,An Efficient Algorithm for One-Step Planar Compliant Motion Planning with Uncertainty.,1992,8,Algorithmica,3,db/journals/algorithmica/algorithmica8.html#Briggs92,https://doi.org/10.1007/BF01758843 +Corinne Lucet,Evaluating Network Reliability and 2-Edge-Connected Reliability in Linear Time for Bounded Pathwidth Graphs.,2000,27,Algorithmica,3,db/journals/algorithmica/algorithmica27.html#LucetMC00,https://doi.org/10.1007/s004530010022 +Steven Kelk,Constructing Minimal Phylogenetic Networks from Softwired Clusters is Fixed Parameter Tractable.,2014,68,Algorithmica,4,db/journals/algorithmica/algorithmica68.html#KelkS14,https://doi.org/10.1007/s00453-012-9708-5 +Bengt Aspvall,Memory Requirements for Table Computations in Partial k-Tree Algorithms.,2000,27,Algorithmica,3,db/journals/algorithmica/algorithmica27.html#AspvallTP00,https://doi.org/10.1007/s004530010025 +Axel Bacher,Complexity of Anticipated Rejection Algorithms and the Darling-Mandelbrot Distribution.,2016,75,Algorithmica,4,db/journals/algorithmica/algorithmica75.html#BacherS16,https://doi.org/10.1007/s00453-015-0040-8 +Xiao Zhou,Finding Edge-Disjoint Paths in Partial k-Trees.,2000,26,Algorithmica,1,db/journals/algorithmica/algorithmica26.html#ZhouTN00,https://doi.org/10.1007/s004539910002 +Hajo Broersma,A Generalization of AT-Free Graphs and a Generic Algorithm for Solving Triangulation Problems.,2002,32,Algorithmica,4,db/journals/algorithmica/algorithmica32.html#BroersmaKKM02,https://doi.org/10.1007/s00453-001-0091-x +Ho Kyung Kim,Efficient Collision Detection among Moving Spheres with Unknown Trajectories.,2005,43,Algorithmica,3,db/journals/algorithmica/algorithmica43.html#KimGS05,https://doi.org/10.1007/s00453-005-1153-2 +Johannes Blömer,Denesting by Bounded Degree Radicals.,2000,28,Algorithmica,1,db/journals/algorithmica/algorithmica28.html#Blomer00,https://doi.org/10.1007/s004530010028 +Ishai Ben-Aroya,A Lower Bound for Nearly Minimal Adaptive and Hot Potato Algorithms.,1998,21,Algorithmica,4,db/journals/algorithmica/algorithmica21.html#Ben-AroyaCS98,https://doi.org/10.1007/PL00009219 +Petr Kolman,Simple On-Line Algorithms for the Maximum Disjoint Paths Problem.,2004,39,Algorithmica,3,db/journals/algorithmica/algorithmica39.html#KolmanS04,https://doi.org/10.1007/s00453-004-1086-1 +Amotz Bar-Noy,Set It and Forget It: Approximating the Set Once Strip Cover Problem.,2017,79,Algorithmica,2,db/journals/algorithmica/algorithmica79.html#Bar-NoyBR17,https://doi.org/10.1007/s00453-016-0198-8 +Ilan Adler,A Geometric View of Parametric Linear Programming.,1992,8,Algorithmica,2,db/journals/algorithmica/algorithmica8.html#AdlerM92,https://doi.org/10.1007/BF01758841 +Teofilo F. Gonzalez,Simple Algorithms for Mul*sage Multicasting with Forwarding.,2001,29,Algorithmica,4,db/journals/algorithmica/algorithmica29.html#Gonzalez01,https://doi.org/10.1007/s004530010072 +Frank K. H. A. Dehne,Guest Editor's Introduction.,2006,45,Algorithmica,3,db/journals/algorithmica/algorithmica45.html#Dehne06,https://doi.org/10.1007/s00453-006-1213-2 +Russ Miller,Computing Convexity Properties of Images on a Pyramid Computer.,1991,6,Algorithmica,5,db/journals/algorithmica/algorithmica6.html#MillerS91,https://doi.org/10.1007/BF01759066 +Anna R. Karlin,Algorithms for the Compilation of Regular Expressions into PLAs.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#KarlinTU87,https://doi.org/10.1007/BF01840364 +Hiroshi Kawazoe,Optimal Online Algorithms for an Electronic Commerce Money Distribution System.,2002,33,Algorithmica,3,db/journals/algorithmica/algorithmica33.html#KawazoeST02,https://doi.org/10.1007/s00453-001-0120-9 +Brandon Dixon,Optimal Parallel Verification of Minimum Spanning Trees in Logarithmic Time.,1997,17,Algorithmica,1,db/journals/algorithmica/algorithmica17.html#DixonT97,https://doi.org/10.1007/BF02523235 +Tomoya Hibi,Multi-rooted Greedy Approximation of Directed Steiner Trees with Applications.,2016,74,Algorithmica,2,db/journals/algorithmica/algorithmica74.html#HibiF16,https://doi.org/10.1007/s00453-015-9973-1 +Hervé Brönnimann,Efficient Exact Evaluation of Signs of Determinants.,2000,27,Algorithmica,1,db/journals/algorithmica/algorithmica27.html#BronnimannY00,https://doi.org/10.1007/s004530010003 +Mark de Berg,Linear Size Binary Space Partitions for Uncluttered Scenes.,2000,28,Algorithmica,3,db/journals/algorithmica/algorithmica28.html#Berg00,https://doi.org/10.1007/s004530010047 +Fang Wu,Truth-Telling Reservations.,2008,52,Algorithmica,1,db/journals/algorithmica/algorithmica52.html#WuZH08,https://doi.org/10.1007/s00453-007-9107-5 +Stefano Basagni,Editors Foreword to the Special Issue on Principles of Mobile Communications and Computing.,2007,49,Algorithmica,4,db/journals/algorithmica/algorithmica49.html#BasagniP07,https://doi.org/10.1007/s00453-007-9031-8 +Katharina T. Huber,Beyond Representing Orthology Relations by Trees.,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#HuberS18,https://doi.org/10.1007/s00453-016-0241-9 +Bernhard Bliem,Complexity of Secure Sets.,2018,80,Algorithmica,10,db/journals/algorithmica/algorithmica80.html#BliemW18,https://doi.org/10.1007/s00453-017-0358-5 +Bogdan S. Chlebus,Many-to-Many Communication in Radio Networks.,2009,54,Algorithmica,1,db/journals/algorithmica/algorithmica54.html#ChlebusKR09,https://doi.org/10.1007/s00453-007-9123-5 +Uwe Rösler,The Contraction Method for Recursive Algorithms.,2001,29,Algorithmica,1,db/journals/algorithmica/algorithmica29.html#RoslerR01,https://doi.org/10.1007/BF02679611 +Gianfranco Bilardi,Area-Time Lower-Bound Techniques with Applications to Sorting.,1986,1,Algorithmica,1,db/journals/algorithmica/algorithmica1.html#BilardiP86,https://doi.org/10.1007/BF01840437 +Shiva Chaudhuri,Computing Mimicking Networks.,2000,26,Algorithmica,1,db/journals/algorithmica/algorithmica26.html#ChaudhuriSWZ00,https://doi.org/10.1007/s004539910003 +Giorgio Ausiello,On Resilient Graph Spanners.,2016,74,Algorithmica,4,db/journals/algorithmica/algorithmica74.html#AusielloFIR16,https://doi.org/10.1007/s00453-015-0006-x +Jean Cardinal,The Stackelberg Minimum Spanning Tree Game.,2011,59,Algorithmica,2,db/journals/algorithmica/algorithmica59.html#CardinalDFJLNW11,https://doi.org/10.1007/s00453-009-9299-y +R. Z. Hwang,The Slab Dividing Approach To Solve the Euclidean P-Center Problem.,1993,9,Algorithmica,1,db/journals/algorithmica/algorithmica9.html#HwangLC93,https://doi.org/10.1007/BF01185335 +J. F. Weng,Expansion of Linear Steiner Trees.,1997,19,Algorithmica,3,db/journals/algorithmica/algorithmica19.html#Weng97,https://doi.org/10.1007/PL00009176 +N. Regnauld,Contextual Building Typification in Automated Map Generalization.,2001,30,Algorithmica,2,db/journals/algorithmica/algorithmica30.html#Regnauld01,https://doi.org/10.1007/s00453-001-0008-8 +Klaus Jansen,Maximizing the Total Profit of Rectangles Packed into a Rectangle.,2007,47,Algorithmica,3,db/journals/algorithmica/algorithmica47.html#JansenZ07,https://doi.org/10.1007/s00453-006-0194-5 +Carlos Fisch Brito,Competitive Analysis of Organization Networks or Multicast Acknowledgment: How Much to Wait?,2012,64,Algorithmica,4,db/journals/algorithmica/algorithmica64.html#BritoKV12,https://doi.org/10.1007/s00453-011-9567-5 +Nir Bitansky,On Virtual Grey Box Obfuscation for General Circuits.,2017,79,Algorithmica,4,db/journals/algorithmica/algorithmica79.html#BitanskyCKP17,https://doi.org/10.1007/s00453-016-0218-8 +Raphael Reitzig,Building Fences Straight and High: An Optimal Algorithm for Finding the Maximum Length You Can Cut k Times from Given Sticks.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#ReitzigW18,https://doi.org/10.1007/s00453-017-0392-3 +Adrian Dumitrescu,Opaque Sets.,2014,69,Algorithmica,2,db/journals/algorithmica/algorithmica69.html#DumitrescuJP14,https://doi.org/10.1007/s00453-012-9735-2 +Thomas Erlebach,An Algorithmic View on OVSF Code Assignment.,2007,47,Algorithmica,3,db/journals/algorithmica/algorithmica47.html#ErlebachJMNSW07,https://doi.org/10.1007/s00453-006-0188-3 +Richard Anderson,Single-Layer Cylindrical Compaction.,1993,9,Algorithmica,3,db/journals/algorithmica/algorithmica9.html#AndersonKS93,https://doi.org/10.1007/BF01190901 +René van Bevern,Myhill-Nerode Methods for Hypergraphs.,2015,73,Algorithmica,4,db/journals/algorithmica/algorithmica73.html#BevernDFGR15,https://doi.org/10.1007/s00453-015-9977-x +Sape J. Mullender,Distributed Match-Making.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#MullenderV88,https://doi.org/10.1007/BF01762123 +Brian C. Dean,Faster Algorithms for Stable Allocation Problems.,2010,58,Algorithmica,1,db/journals/algorithmica/algorithmica58.html#DeanM10,https://doi.org/10.1007/s00453-010-9416-y +J. Ian Munro,Top-k Term-Proximity in Succinct Space.,2017,78,Algorithmica,2,db/journals/algorithmica/algorithmica78.html#MunroNNST17,https://doi.org/10.1007/s00453-016-0167-2 +Basile Couëtoux,The Maximum Labeled Path Problem.,2017,78,Algorithmica,1,db/journals/algorithmica/algorithmica78.html#CouetouxNV17,https://doi.org/10.1007/s00453-016-0155-6 +Alok Baveja,Improved Bounds in Stochastic Matching and Optimization.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#BavejaCNSX18,https://doi.org/10.1007/s00453-017-0383-4 +Chandrajit L. Bajaj,Convex Hulls of Objects Bounded by Algebraic Curves.,1991,6,Algorithmica,4,db/journals/algorithmica/algorithmica6.html#BajajK91,https://doi.org/10.1007/BF01759058 +André Berger,Linear Time Algorithms for Generalized Edge Dominating Set Problems.,2008,50,Algorithmica,2,db/journals/algorithmica/algorithmica50.html#BergerP08,https://doi.org/10.1007/s00453-007-9057-y +Refael Hassin,Approximation Algorithms for a Capacitated Network Design Problem.,2004,38,Algorithmica,3,db/journals/algorithmica/algorithmica38.html#HassinRS03,https://doi.org/10.1007/s00453-003-1069-7 +Luca Trevisan,"Erratum: A Correction to ""Parallel Approximation Algorithms by Positive Linear Programming"".",2000,27,Algorithmica,2,db/journals/algorithmica/algorithmica27.html#Trevisan00,https://doi.org/10.1007/s004530010007 +Amos Korman,Constructing Labeling Schemes through Universal Matrices.,2010,57,Algorithmica,4,db/journals/algorithmica/algorithmica57.html#KormanPR10,https://doi.org/10.1007/s00453-008-9226-7 +Fan R. K. Chung,Oblivious and Adaptive Strategies for the Majority and Plurality Problems.,2007,48,Algorithmica,2,db/journals/algorithmica/algorithmica48.html#ChungGMY07,https://doi.org/10.1007/s00453-007-0060-0 +Anupam Gupta,Making Doubling Metrics Geodesic.,2011,59,Algorithmica,1,db/journals/algorithmica/algorithmica59.html#GuptaT11,https://doi.org/10.1007/s00453-010-9397-x +Esther M. Arkin,Approximations for Maximum Transportation with Permutable Supply Vector and Other Capacitated Star Packing Problems.,2004,39,Algorithmica,2,db/journals/algorithmica/algorithmica39.html#ArkinHRS04,https://doi.org/10.1007/s00453-004-1087-0 +Leena Salmela,Approximate Boyer-Moore String Matching for Small Alphabets.,2010,58,Algorithmica,3,db/journals/algorithmica/algorithmica58.html#SalmelaTK10,https://doi.org/10.1007/s00453-009-9286-3 +Erik D. Demaine,The Two-Handed Tile Assembly Model is not Intrinsically Universal.,2016,74,Algorithmica,2,db/journals/algorithmica/algorithmica74.html#DemainePRSSW16,https://doi.org/10.1007/s00453-015-9976-y +Pinar Heggernes,Contracting Graphs to Paths and Trees.,2014,68,Algorithmica,1,db/journals/algorithmica/algorithmica68.html#HeggernesHLLP14,https://doi.org/10.1007/s00453-012-9670-2 +Daniel S. Hirschberg,The Set LCS Problem.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#HirschbergL87,https://doi.org/10.1007/BF01840351 +Rudolf Fleischer,Foreword.,2006,46,Algorithmica,1,db/journals/algorithmica/algorithmica46.html#Fleischer06,https://doi.org/10.1007/s00453-006-0067-y +Hajo Broersma,Exact Algorithms for Finding Longest Cycles in Claw-Free Graphs.,2013,65,Algorithmica,1,db/journals/algorithmica/algorithmica65.html#BroersmaFHP13,https://doi.org/10.1007/s00453-011-9576-4 +Meng He 0001,A Framework for Succinct Labeled Ordinal Trees over Large Alphabets.,2014,70,Algorithmica,4,db/journals/algorithmica/algorithmica70.html#HeMZ14,https://doi.org/10.1007/s00453-014-9894-4 +Chaitanya Swamy,Primal-Dual Algorithms for Connected Facility Location Problems.,2004,40,Algorithmica,4,db/journals/algorithmica/algorithmica40.html#SwamyK04,https://doi.org/10.1007/s00453-004-1112-3 +Kikuo Fujimura,Planning a Time-Minimal Motion Among Moving Obstacles.,1993,10,Algorithmica,1,db/journals/algorithmica/algorithmica10.html#FujimuraS93,https://doi.org/10.1007/BF01908631 +Stephen Alstrup,Generalized Dominators for Structured Programs.,2000,27,Algorithmica,3,db/journals/algorithmica/algorithmica27.html#AlstrupLT00,https://doi.org/10.1007/s004530010018 +Matt Gibson 0001,On Metric Clustering to Minimize the Sum of Radii.,2010,57,Algorithmica,3,db/journals/algorithmica/algorithmica57.html#GibsonKKPV10,https://doi.org/10.1007/s00453-009-9282-7 +S. L. Mantzaris,"On ""An Improved Algorithm for Finding the Median Distributively"".",1993,10,Algorithmica,6,db/journals/algorithmica/algorithmica10.html#Mantzaris93,https://doi.org/10.1007/BF01891834 +Karsten Weihe,Reconstructing the Topology of a CAD Model - a Discrete Approach.,2000,26,Algorithmica,1,db/journals/algorithmica/algorithmica26.html#WeiheW00,https://doi.org/10.1007/s004539910007 +Chih-Hung Liu,Minimizing the Diameter of a Spanning Tree for Imprecise Points.,2018,80,Algorithmica,2,db/journals/algorithmica/algorithmica80.html#LiuM18,https://doi.org/10.1007/s00453-017-0292-6 +Xiaotie Deng,Competitive Distributed Decision-Making.,1996,16,Algorithmica,2,db/journals/algorithmica/algorithmica16.html#DengP96,https://doi.org/10.1007/BF01940643 +Amos Fiat,A Deterministic O(k®9*)-Competitive k-Server Algorithm for the Circle.,1994,11,Algorithmica,6,db/journals/algorithmica/algorithmica11.html#FiatRRS94,https://doi.org/10.1007/BF01189994 +Emilio Di Giacomo,Drawing Colored Graphs with Constrained Vertex Positions and Few Bends per Edge.,2010,57,Algorithmica,4,db/journals/algorithmica/algorithmica57.html#GiacomoLT10,https://doi.org/10.1007/s00453-008-9255-2 +Avrim Blum,Static Optimality and Dynamic Search-Optimality in Lists and Trees.,2003,36,Algorithmica,3,db/journals/algorithmica/algorithmica36.html#BlumCK03,https://doi.org/10.1007/s00453-003-1015-8 +Peter C. Fishburn,Pinwheel Scheduling: Achievable Densities.,2002,34,Algorithmica,1,db/journals/algorithmica/algorithmica34.html#FishburnL02,https://doi.org/10.1007/s00453-002-0938-9 +Boris Aronov,On the Geodesic Voronoi Diagram of Point Sites in a Simple Polygon.,1989,4,Algorithmica,1,db/journals/algorithmica/algorithmica4.html#Aronov89,https://doi.org/10.1007/BF01553882 +L. Paul Chew,Finding the Consensus Shape for a Protein Family.,2004,38,Algorithmica,1,db/journals/algorithmica/algorithmica38.html#ChewK03,https://doi.org/10.1007/s00453-003-1045-2 +Jean-Daniel Boissonnat,Probing a Scene of Nonconvex Polyhedra.,1992,8,Algorithmica,4,db/journals/algorithmica/algorithmica8.html#BoissonnatY92,https://doi.org/10.1007/BF01758849 +Michele Flammini,Interval Routing Schemes.,1996,16,Algorithmica,6,db/journals/algorithmica/algorithmica16.html#FlamminiGS96,https://doi.org/10.1007/BF01944351 +Michael Kaufmann 0001,Randomized Multipacket Routing and Sorting on Meshes.,1997,17,Algorithmica,3,db/journals/algorithmica/algorithmica17.html#KaufmannS97,https://doi.org/10.1007/BF02523190 +Sven Verdoolaege,Counting Integer Points in Parametric Polytopes Using Barvinok's Rational Functions.,2007,48,Algorithmica,1,db/journals/algorithmica/algorithmica48.html#VerdoolaegeSBLB07,https://doi.org/10.1007/s00453-006-1231-0 +Marios Mavronicolas,A Network Game with Attackers and a Defender.,2008,51,Algorithmica,3,db/journals/algorithmica/algorithmica51.html#MavronicolasPPS08,https://doi.org/10.1007/s00453-007-9109-3 +Cristina G. Fernandes,Improved Approximation Algorithms for Capacitated Fault-Tolerant k-Center.,2018,80,Algorithmica,3,db/journals/algorithmica/algorithmica80.html#FernandesPP18,https://doi.org/10.1007/s00453-017-0398-x +Takao Asano,Guest Editorial: Selected Papers from ISAAC 2011.,2013,67,Algorithmica,1,db/journals/algorithmica/algorithmica67.html#AsanoNO13,https://doi.org/10.1007/s00453-013-9798-8 +Mee Yee Chan,Schedulers for Larger Classes of Pinwheel Instances.,1993,9,Algorithmica,5,db/journals/algorithmica/algorithmica9.html#ChanC93,https://doi.org/10.1007/BF01187034 +Piotr Sankowski,Fast Dynamic Transitive Closure with Lookahead.,2010,56,Algorithmica,2,db/journals/algorithmica/algorithmica56.html#SankowskiM10,https://doi.org/10.1007/s00453-008-9166-2 +My T. Thai,Guest Editorial: Computing and Combinatorics.,2012,64,Algorithmica,2,db/journals/algorithmica/algorithmica64.html#Thai12,https://doi.org/10.1007/s00453-012-9649-z +René van Bevern,Towards Optimal and Expressive Kernelization for d-Hitting Set.,2014,70,Algorithmica,1,db/journals/algorithmica/algorithmica70.html#Bevern14,https://doi.org/10.1007/s00453-013-9774-3 +Rajesh Chitnis,List H-Coloring a Graph by Removing Few Vertices.,2017,78,Algorithmica,1,db/journals/algorithmica/algorithmica78.html#ChitnisEM17,https://doi.org/10.1007/s00453-016-0139-6 +Andrew McGregor 0001,Space-Efficient Estimation of Statistics Over Sub-Sampled Streams.,2016,74,Algorithmica,2,db/journals/algorithmica/algorithmica74.html#McGregorPTW16,https://doi.org/10.1007/s00453-015-9974-0 +Bruce Randall Donald,Provably Good Approximation Algorithms for Optimal Kinodynamic Planning: Robots with Decoupled Dynamics Bounds.,1995,14,Algorithmica,6,db/journals/algorithmica/algorithmica14.html#DonaldX95,https://doi.org/10.1007/BF01586636 +Amir M. Ben-Amram,Lower Bounds for Dynamic Data Structures on Algebraic RAMs.,2002,32,Algorithmica,3,db/journals/algorithmica/algorithmica32.html#Ben-AmramG02,https://doi.org/10.1007/s00453-001-0079-6 +Robert F. Cohen,Dynamic Expression Trees.,1995,13,Algorithmica,3,db/journals/algorithmica/algorithmica13.html#CohenT95,https://doi.org/10.1007/BF01190506 +Fredrik Bengtsson,Efficient Algorithms for k Maximum Sums.,2006,46,Algorithmica,1,db/journals/algorithmica/algorithmica46.html#BengtssonC06,https://doi.org/10.1007/s00453-006-0076-x +Sanjoy K. Baruah,Proportionate Progress: A Notion of Fairness in Resource Allocation.,1996,15,Algorithmica,6,db/journals/algorithmica/algorithmica15.html#BaruahCPV96,https://doi.org/10.1007/BF01940883 +Feodor F. Dragan,An Approximation Algorithm for the Tree t-Spanner Problem on Unweighted Graphs via Generalized Chordal Graphs.,2014,69,Algorithmica,4,db/journals/algorithmica/algorithmica69.html#DraganK14,https://doi.org/10.1007/s00453-013-9765-4 +Min-Te Sun,An Optimal Algorithm for the Minimum Disc Cover Problem.,2008,50,Algorithmica,1,db/journals/algorithmica/algorithmica50.html#SunYYL08,https://doi.org/10.1007/s00453-007-9043-4 +Don Coppersmith,Discrete Logarithms in GF(p).,1986,1,Algorithmica,1,db/journals/algorithmica/algorithmica1.html#CoppersmithOS86,https://doi.org/10.1007/BF01840433 +Anthony Lazanas,Landmark-Based Robot Navigation.,1995,13,Algorithmica,5,db/journals/algorithmica/algorithmica13.html#LazanasL95,https://doi.org/10.1007/BF01190850 +Gerth Stølting Brodal,D2-Tree: A New Overlay with Deterministic Bounds.,2015,72,Algorithmica,3,db/journals/algorithmica/algorithmica72.html#BrodalSTZ15,https://doi.org/10.1007/s00453-014-9878-4 +Zeev Nutov,Degree Constrained Node-Connectivity Problems.,2014,70,Algorithmica,2,db/journals/algorithmica/algorithmica70.html#Nutov14,https://doi.org/10.1007/s00453-013-9849-1 +Vida Dujmovic,A Fixed-Parameter Approach to 2-Layer Planarization.,2006,45,Algorithmica,2,db/journals/algorithmica/algorithmica45.html#DujmovicFHKLMNRRSWW06,https://doi.org/10.1007/s00453-005-1181-y +Kazuo Iwama,A (2-c(1/sqrt(N)))-Approximation Algorithm for the Stable Marriage Problem.,2008,51,Algorithmica,3,db/journals/algorithmica/algorithmica51.html#IwamaMY08,https://doi.org/10.1007/s00453-007-9101-y +Eglantine Camby,A New Characterization of Pk-Free Graphs.,2016,75,Algorithmica,1,db/journals/algorithmica/algorithmica75.html#CambyS16,https://doi.org/10.1007/s00453-015-9989-6 +Richard Cole 0001,A Nearly Optimal Deterministic Parallel Voroni Diagram Algorithm.,1996,16,Algorithmica,6,db/journals/algorithmica/algorithmica16.html#ColeGO96,https://doi.org/10.1007/BF01944352 +Jianer Chen,Foreword from the Guest Editors.,2008,52,Algorithmica,2,db/journals/algorithmica/algorithmica52.html#ChenK08,https://doi.org/10.1007/s00453-007-9153-z +Xiaotie Deng,On Walrasian Price of CPU Time.,2007,48,Algorithmica,2,db/journals/algorithmica/algorithmica48.html#DengHL07,https://doi.org/10.1007/s00453-007-0064-9 +Huy Hoang Do,Compressed Directed Acyclic Word Graph with Application in Local Alignment.,2013,67,Algorithmica,2,db/journals/algorithmica/algorithmica67.html#DoS13,https://doi.org/10.1007/s00453-013-9794-z +S. Sudarshan 0001,A Fast Algorithm for Computing Sparse Visibility Graphs.,1990,5,Algorithmica,2,db/journals/algorithmica/algorithmica5.html#SudarshanR90,https://doi.org/10.1007/BF01840385 +Giuseppe Di Battista,Small Area Drawings of Outerplanar Graphs.,2009,54,Algorithmica,1,db/journals/algorithmica/algorithmica54.html#BattistaF09,https://doi.org/10.1007/s00453-007-9117-3 +Jørgen Bang-Jensen,Parallel Algorithms for the Hamiltonian Cycle and Hamiltonian Path Problems in Semicomplete Bipartite Digraphs.,1997,17,Algorithmica,1,db/journals/algorithmica/algorithmica17.html#Bang-JensenHMP97,https://doi.org/10.1007/BF02523239 +Michael A. Bender,The Cost of Cache-Oblivious Searching.,2011,61,Algorithmica,2,db/journals/algorithmica/algorithmica61.html#BenderBFGHHIL11,https://doi.org/10.1007/s00453-010-9394-0 +Michael J. Pelsmajer,Crossing Numbers of Graphs with Rotation Systems.,2011,60,Algorithmica,3,db/journals/algorithmica/algorithmica60.html#PelsmajerSS11,https://doi.org/10.1007/s00453-009-9343-y +Michael A. Erdmann,On Multiple Moving Objects.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#ErdmannL87,https://doi.org/10.1007/BF01840371 +Meena Mahajan,Building Above Read-Once Polynomials: Identity Testing and Hardness of Representation.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#MahajanRS16,https://doi.org/10.1007/s00453-015-0101-z +Xin He,On Succinct Greedy Drawings of Plane Triangulations and 3-Connected Plane Graphs.,2014,68,Algorithmica,2,db/journals/algorithmica/algorithmica68.html#HeZ14,https://doi.org/10.1007/s00453-012-9682-y +Mark de Berg,Finding Pairwise Intersections Inside a Query Range.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#BergGM18,https://doi.org/10.1007/s00453-017-0384-3 +Joan Boyar,Scheduling Jobs on Grid Processors.,2010,57,Algorithmica,4,db/journals/algorithmica/algorithmica57.html#BoyarF10,https://doi.org/10.1007/s00453-008-9257-0 +Florian Barbero,Parameterized and Approximation Algorithms for the Load Coloring Problem.,2017,79,Algorithmica,1,db/journals/algorithmica/algorithmica79.html#BarberoGJS17,https://doi.org/10.1007/s00453-016-0259-z +Micha Hofri,Saddle Points in Random Matrices: Analysis of Knuth Search Algorithms.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#HofriJ98,https://doi.org/10.1007/PL00009237 +Hu Ding,FPTAS for Minimizing the Earth Mover's Distance Under Rigid Transformations and Related Problems.,2017,78,Algorithmica,3,db/journals/algorithmica/algorithmica78.html#DingX17,https://doi.org/10.1007/s00453-016-0173-4 +Christos Koufogiannakis,Greedy Γ6*-Approximation Algorithm for Covering with Arbitrary Constraints and Submodular Cost.,2013,66,Algorithmica,1,db/journals/algorithmica/algorithmica66.html#KoufogiannakisY13,https://doi.org/10.1007/s00453-012-9629-3 +Igor L. Markov,Constant-Degree Graph Expansions that Preserve Treewidth.,2011,59,Algorithmica,4,db/journals/algorithmica/algorithmica59.html#MarkovS11,https://doi.org/10.1007/s00453-009-9312-5 +Fedor V. Fomin,Sharp Separation and Applications to Exact and Parameterized Algorithms.,2012,63,Algorithmica,3,db/journals/algorithmica/algorithmica63.html#FominGLS12,https://doi.org/10.1007/s00453-011-9555-9 +Joachim Gehweiler,A Distributed O(1)-Approximation Algorithm for the Uniform Facility Location Problem.,2014,68,Algorithmica,3,db/journals/algorithmica/algorithmica68.html#GehweilerLS14,https://doi.org/10.1007/s00453-012-9690-y +Leonidas J. Guibas,Constructing Strongly Convex Approximate Hulls with Inaccurate Primitives.,1993,9,Algorithmica,6,db/journals/algorithmica/algorithmica9.html#GuibasSS93,https://doi.org/10.1007/BF01190154 +Stefan Kratsch,On Kernelization and Approximation for the Vector Connectivity Problem.,2017,79,Algorithmica,1,db/journals/algorithmica/algorithmica79.html#KratschS17,https://doi.org/10.1007/s00453-016-0231-y +Venkatesan Guruswami,Inapproximability Results for Set Splitting and Satisfiability Problems with No Mixed Clauses.,2004,38,Algorithmica,3,db/journals/algorithmica/algorithmica38.html#Guruswami03,https://doi.org/10.1007/s00453-003-1072-z +Sergio Cabello,Approximation Algorithms for Aligning Points.,2003,37,Algorithmica,3,db/journals/algorithmica/algorithmica37.html#CabelloK03,https://doi.org/10.1007/s00453-003-1033-6 +Markus Bläser,Fast Evaluation of Interlace Polynomials on Graphs of Bounded Treewidth.,2011,61,Algorithmica,1,db/journals/algorithmica/algorithmica61.html#BlaserH11,https://doi.org/10.1007/s00453-010-9439-4 +Anna R. Karlin,Competitive Randomized Algorithms for Nonuniform Problems.,1994,11,Algorithmica,6,db/journals/algorithmica/algorithmica11.html#KarlinMMO94,https://doi.org/10.1007/BF01189993 +Maryam Aliakbarpour,Sublinear-Time Algorithms for Counting Star Subgraphs via Edge Sampling.,2018,80,Algorithmica,2,db/journals/algorithmica/algorithmica80.html#AliakbarpourBGP18,https://doi.org/10.1007/s00453-017-0287-3 +Peyman Afshani,Optimal Deterministic Shallow Cuttings for 3-d Dominance Ranges.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#AfshaniT18,https://doi.org/10.1007/s00453-017-0376-3 +Frank K. H. A. Dehne,Editor's Foreword Special Issue on Parallel Algorithms for Geometric Problems on Digitzed Pictures.,1991,6,Algorithmica,5,db/journals/algorithmica/algorithmica6.html#Dehne91,https://doi.org/10.1007/BF01759064 +Martin R. Ehmsen,List Factoring and Relative Worst Order Analysis.,2013,66,Algorithmica,2,db/journals/algorithmica/algorithmica66.html#EhmsenKL13,https://doi.org/10.1007/s00453-012-9637-3 +Ilario Bonacina,Strong ETH and Resolution via Games and the Multiplicity of Strategies.,2017,79,Algorithmica,1,db/journals/algorithmica/algorithmica79.html#BonacinaT17,https://doi.org/10.1007/s00453-016-0228-6 +Frédéric Magniez,Property Testing of Regular Tree Languages.,2007,49,Algorithmica,2,db/journals/algorithmica/algorithmica49.html#MagniezR07,https://doi.org/10.1007/s00453-007-9028-3 +Eyal Amir,Approximation Algorithms for Treewidth.,2010,56,Algorithmica,4,db/journals/algorithmica/algorithmica56.html#Amir10,https://doi.org/10.1007/s00453-008-9180-4 +Marek Chrobak,Tile-Packing Tomography Is NP-hard.,2012,64,Algorithmica,2,db/journals/algorithmica/algorithmica64.html#ChrobakDGLT12,https://doi.org/10.1007/s00453-011-9498-1 +Claire Kenyon,Maximum Queue Size and Hashing with Lazy Deletion.,1991,6,Algorithmica,4,db/journals/algorithmica/algorithmica6.html#KenyonV91,https://doi.org/10.1007/BF01759063 +Stanislav Angelov,The Network as a Storage Device: Dynamic Routing with Bounded Buffers.,2009,55,Algorithmica,1,db/journals/algorithmica/algorithmica55.html#AngelovKK09,https://doi.org/10.1007/s00453-007-9143-1 +Chee-Keng Yap,Parallel Triangulation of a Polygon in Two Cails to the Trapezoidal Map.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#Yap88,https://doi.org/10.1007/BF01762118 +Ashwin Guha,An Algorithmic Characterization of Polynomial Functions over Zpn.,2015,71,Algorithmica,1,db/journals/algorithmica/algorithmica71.html#GuhaD15,https://doi.org/10.1007/s00453-013-9799-7 +Giuseppe Di Battista,Output-Sensitive Reporting of Disjoint Paths.,1999,23,Algorithmica,4,db/journals/algorithmica/algorithmica23.html#BattistaTV99,https://doi.org/10.1007/PL00009264 +Flavia Bonomo,b-Coloring is NP-hard on Co-bipartite Graphs and Polytime Solvable on Tree-Cographs.,2015,73,Algorithmica,2,db/journals/algorithmica/algorithmica73.html#BonomoSSV15,https://doi.org/10.1007/s00453-014-9921-5 +R. Z. Hwang,The Searching over Separators Strategy To Solve Some NP-Hard Problems in Subexponential Time.,1993,9,Algorithmica,4,db/journals/algorithmica/algorithmica9.html#HwangCL93,https://doi.org/10.1007/BF01228511 +Takeshi Hisao,A Characterization of Planar Graphs by Pseudo-Line Arrangements.,2003,35,Algorithmica,3,db/journals/algorithmica/algorithmica35.html#Hisao03,https://doi.org/10.1007/s00453-002-0999-9 +Chandrajit L. Bajaj,Generation of Configuration Space Obstacles: The Case of Moving Algebraic Curves.,1989,4,Algorithmica,2,db/journals/algorithmica/algorithmica4.html#BajajK89,https://doi.org/10.1007/BF01553884 +Steffen Heber,Common Intervals of Multiple Permutations.,2011,60,Algorithmica,2,db/journals/algorithmica/algorithmica60.html#HeberMS11,https://doi.org/10.1007/s00453-009-9332-1 +Kyle Genova,An Experimental Evaluation of the Best-of-Many Christofides' Algorithm for the Traveling Salesman Problem.,2017,78,Algorithmica,4,db/journals/algorithmica/algorithmica78.html#GenovaW17,https://doi.org/10.1007/s00453-017-0293-5 +Seok-Hee Hong,A Linear-Time Algorithm for Symmetric Convex Drawings of Internally Triconnected Plane Graphs.,2010,58,Algorithmica,2,db/journals/algorithmica/algorithmica58.html#HongN10,https://doi.org/10.1007/s00453-008-9275-y +Michael Elkin,An Approximation Algorithm for the Directed Telephone Multicast Problem.,2006,45,Algorithmica,4,db/journals/algorithmica/algorithmica45.html#ElkinK06,https://doi.org/10.1007/s00453-005-1196-4 +Otfried Schwarzkopf,Parallel Computation of Disease Transforms.,1991,6,Algorithmica,5,db/journals/algorithmica/algorithmica6.html#Schwarzkopf91,https://doi.org/10.1007/BF01759067 +Swan Dubois,Maximum Metric Spanning Tree Made Byzantine Tolerant.,2015,73,Algorithmica,1,db/journals/algorithmica/algorithmica73.html#DuboisMT15,https://doi.org/10.1007/s00453-014-9913-5 +M. Reza Khani,Improved Approximation Algorithms for the Min-max Tree Cover and Bounded Tree Cover Problems.,2014,69,Algorithmica,2,db/journals/algorithmica/algorithmica69.html#KhaniS14,https://doi.org/10.1007/s00453-012-9740-5 +Adrian Dumitrescu,On the Largest Empty Axis-Parallel Box Amidst n Points.,2013,66,Algorithmica,2,db/journals/algorithmica/algorithmica66.html#DumitrescuJ13,https://doi.org/10.1007/s00453-012-9635-5 +Kei Uchizawa,On the Rainbow Connectivity of Graphs: Complexity and FPT Algorithms.,2013,67,Algorithmica,2,db/journals/algorithmica/algorithmica67.html#UchizawaAISZ13,https://doi.org/10.1007/s00453-012-9689-4 +Edward G. Coffman Jr.,Packing Random Intervals On-Line.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#CoffmanFJP98,https://doi.org/10.1007/PL00009233 +Kurt Mehlhorn,Maintaining Dynamic Sequences under Equality Tests in Polylogarithmic Time.,1997,17,Algorithmica,2,db/journals/algorithmica/algorithmica17.html#MehlhornSU97,https://doi.org/10.1007/BF02522825 +David P. Dobkin,An Efficient Algorithm for Finding the CSG Representation of a Simple Polygon.,1993,10,Algorithmica,1,db/journals/algorithmica/algorithmica10.html#DobkinGHS93,https://doi.org/10.1007/BF01908629 +Alberto Apostolico,Optimal Parallel Detection of Squares in Strings.,1992,8,Algorithmica,4,db/journals/algorithmica/algorithmica8.html#Apostolico92,https://doi.org/10.1007/BF01758848 +Pang-Chieh Chen,Heuristic Sampling on DAGs.,1994,12,Algorithmica,6,db/journals/algorithmica/algorithmica12.html#Chen94,https://doi.org/10.1007/BF01188715 +Naveen Garg 0001,Assigning Papers to Referees.,2010,58,Algorithmica,1,db/journals/algorithmica/algorithmica58.html#GargKKMM10,https://doi.org/10.1007/s00453-009-9386-0 +Hung-Lung Wang,An Optimal Algorithm for the Weighted Backup 2-Center Problem on a Tree.,2017,77,Algorithmica,2,db/journals/algorithmica/algorithmica77.html#Wang17,https://doi.org/10.1007/s00453-015-0081-z +Yoram Moses,Programming Simultaneous Actions Using Common Knowledge.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#MosesT88,https://doi.org/10.1007/BF01762112 +Wolfgang Panny,Bottom-Up Mergesort - a Detailed Analysis.,1995,14,Algorithmica,4,db/journals/algorithmica/algorithmica14.html#PannyP95,https://doi.org/10.1007/BF01294131 +John Fearnley,Approximate Well-supported Nash Equilibria Below Two-thirds.,2016,76,Algorithmica,2,db/journals/algorithmica/algorithmica76.html#FearnleyGSS16,https://doi.org/10.1007/s00453-015-0029-3 +Franz J. Brandenburg,Recognizing Optimal 1-Planar Graphs in Linear Time.,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#Brandenburg18,https://doi.org/10.1007/s00453-016-0226-8 +Jun-ya Takahashi,Shortest Noncrossing Paths in Plane Graphs.,1996,16,Algorithmica,3,db/journals/algorithmica/algorithmica16.html#TakahashiSN96,https://doi.org/10.1007/BF01955681 +Alon Efrat,Covering with Ellipses.,2004,38,Algorithmica,1,db/journals/algorithmica/algorithmica38.html#EfratHKKRW03,https://doi.org/10.1007/s00453-003-1047-0 +C. S. Jeong,Parallel Geometric Algorithms on a Mesh-Connected Computer.,1990,5,Algorithmica,2,db/journals/algorithmica/algorithmica5.html#JeongL90,https://doi.org/10.1007/BF01840383 +Sairam Subramanian,An Efficient Parallel Algorithm for Shortest Paths in Planar Layered Digraphs.,1995,14,Algorithmica,4,db/journals/algorithmica/algorithmica14.html#SubramanianTV95,https://doi.org/10.1007/BF01294130 +Daniel Binkele-Raible,Parameterized Measure and Conquer for Problems with No Small Kernels.,2012,64,Algorithmica,1,db/journals/algorithmica/algorithmica64.html#Binkele-RaibleF12a,https://doi.org/10.1007/s00453-011-9566-6 +Daniel Krenn,Compositions into Powers of b: Asymptotic Enumeration and Parameters.,2016,75,Algorithmica,4,db/journals/algorithmica/algorithmica75.html#KrennW16,https://doi.org/10.1007/s00453-015-0061-3 +Remco C. Veltkamp,Shape Algorithmics.,2004,38,Algorithmica,1,db/journals/algorithmica/algorithmica38.html#Veltkamp03,https://doi.org/10.1007/s00453-003-1039-0 +Ildikó Schlotter,Campaign Management Under Approval-Driven Voting Rules.,2017,77,Algorithmica,1,db/journals/algorithmica/algorithmica77.html#SchlotterFE17,https://doi.org/10.1007/s00453-015-0064-0 +Christophe Crespelle,Fully Dynamic Algorithm for Recognition and Modular Decomposition of Permutation Graphs.,2010,58,Algorithmica,2,db/journals/algorithmica/algorithmica58.html#CrespelleP10,https://doi.org/10.1007/s00453-008-9273-0 +Uwe Rösler,On the Analysis of Stochastic Divide and Conquer Algorithms.,2001,29,Algorithmica,1,db/journals/algorithmica/algorithmica29.html#Rosler01,https://doi.org/10.1007/BF02679621 +Stefan Kratsch,Fixed-Parameter Evolutionary Algorithms and the Vertex Cover Problem.,2013,65,Algorithmica,4,db/journals/algorithmica/algorithmica65.html#KratschN13,https://doi.org/10.1007/s00453-012-9660-4 +Jaroslaw Byrka,An Improved Approximation Algorithm for Knapsack Median Using Sparsification.,2018,80,Algorithmica,4,db/journals/algorithmica/algorithmica80.html#ByrkaPRSST18,https://doi.org/10.1007/s00453-017-0294-4 +Carola Doerr,Preface to the Special Issue on Theory of Genetic and Evolutionary Computation.,2017,78,Algorithmica,2,db/journals/algorithmica/algorithmica78.html#DoerrC17,https://doi.org/10.1007/s00453-017-0280-x +Michael T. Goodrich,Guest Editor's Foreword.,2002,33,Algorithmica,3,db/journals/algorithmica/algorithmica33.html#Goodrich02,https://doi.org/10.1007/s00453-001-0118-3 +Ilan Adler,Polynomial Algorithms for Linear Programming over the Algebraic Numbers.,1994,12,Algorithmica,6,db/journals/algorithmica/algorithmica12.html#AdlerB94,https://doi.org/10.1007/BF01188714 +Kevin Buchin,Median Trajectories.,2013,66,Algorithmica,3,db/journals/algorithmica/algorithmica66.html#BuchinBKLSWW13,https://doi.org/10.1007/s00453-012-9654-2 +Asaf Shapira,All-Pairs Bottleneck Paths in Vertex Weighted Graphs.,2011,59,Algorithmica,4,db/journals/algorithmica/algorithmica59.html#ShapiraYZ11,https://doi.org/10.1007/s00453-009-9328-x +Nikhil Bansal,When LP Is the Cure for Your Matching Woes: Improved Bounds for Stochastic Matchings.,2012,63,Algorithmica,4,db/journals/algorithmica/algorithmica63.html#BansalGLMNR12,https://doi.org/10.1007/s00453-011-9511-8 +Emilio Di Giacomo,2-Layer Right Angle Crossing Drawings.,2014,68,Algorithmica,4,db/journals/algorithmica/algorithmica68.html#GiacomoDEL14,https://doi.org/10.1007/s00453-012-9706-7 +N. Innami,The Steiner Ratio Conjecture of Gilbert-Pollak May Still Be Open.,2010,57,Algorithmica,4,db/journals/algorithmica/algorithmica57.html#InnamiKMS10,https://doi.org/10.1007/s00453-008-9254-3 +Zhi-Zhong Chen,A Linear-Time Algorithm for 7-Coloring 1-Plane Graphs.,2005,43,Algorithmica,3,db/journals/algorithmica/algorithmica43.html#ChenK05,https://doi.org/10.1007/s00453-004-1134-x +Jiong Guo,Improved Algorithms and Complexity Results for Power Domination in Graphs.,2008,52,Algorithmica,2,db/journals/algorithmica/algorithmica52.html#GuoNR08,https://doi.org/10.1007/s00453-007-9147-x +Xi Chen 0001,Quantum Separation of Local Search and Fixed Point Computation.,2010,56,Algorithmica,3,db/journals/algorithmica/algorithmica56.html#ChenST10,https://doi.org/10.1007/s00453-009-9289-0 +Paz Carmi,Power Assignment in Radio Networks with Two Power Levels.,2007,47,Algorithmica,2,db/journals/algorithmica/algorithmica47.html#CarmiK07,https://doi.org/10.1007/s00453-006-1230-1 +Haim Kaplan,A Simpler Linear-Time Recognition of Circular-Arc Graphs.,2011,61,Algorithmica,3,db/journals/algorithmica/algorithmica61.html#KaplanN11a,https://doi.org/10.1007/s00453-010-9432-y +Michael J. Post,Scheduling Multihop CDMA Networks in the Presence of Secondary Conflicts.,1989,4,Algorithmica,3,db/journals/algorithmica/algorithmica4.html#PostKS89,https://doi.org/10.1007/BF01553897 +Arash Farzan,A Uniform Paradigm to Succinctly Encode Various Families of Trees.,2014,68,Algorithmica,1,db/journals/algorithmica/algorithmica68.html#FarzanM14,https://doi.org/10.1007/s00453-012-9664-0 +Benjamin Hescott,Tight Bounds for Active Self-Assembly Using an Insertion Primitive.,2017,77,Algorithmica,2,db/journals/algorithmica/algorithmica77.html#HescottMW17,https://doi.org/10.1007/s00453-015-0085-8 +Frédéric Magniez,Foreword from the Guest Editors.,2009,55,Algorithmica,3,db/journals/algorithmica/algorithmica55.html#MagniezN09,https://doi.org/10.1007/s00453-008-9232-9 +Thore Husfeldt,Guest Editorial: Special Issue on Parameterized and Exact Computation.,2017,79,Algorithmica,1,db/journals/algorithmica/algorithmica79.html#HusfeldtK17,https://doi.org/10.1007/s00453-017-0339-8 +Tzuoo-Hawn Yeh,Distributed and On-Line Routing on Tori.,2002,32,Algorithmica,4,db/journals/algorithmica/algorithmica32.html#YehKLY02,https://doi.org/10.1007/s00453-001-0090-y +Ilias Diakonikolas,Efficiently Testing Sparse GF(2) Polynomials.,2011,61,Algorithmica,3,db/journals/algorithmica/algorithmica61.html#DiakonikolasLMSW11,https://doi.org/10.1007/s00453-010-9426-9 +Manfred Kunde,Optimal Deterministic Sorting and Routing on Grids and Tori with Diagonals.,1999,25,Algorithmica,4,db/journals/algorithmica/algorithmica25.html#KundeNRR99,https://doi.org/10.1007/PL00009288 +Davide Bilò,A Faster Computation of All the Best Swap Edges of a Shortest Paths Tree.,2015,73,Algorithmica,3,db/journals/algorithmica/algorithmica73.html#BiloGP15,https://doi.org/10.1007/s00453-014-9912-6 +Steven S. Seiden,Online Randomized Multiprocessor Scheduling.,2000,28,Algorithmica,2,db/journals/algorithmica/algorithmica28.html#Seiden00,https://doi.org/10.1007/s004530010014 +Pasin Manurangsi,Improved Approximation Algorithms for Projection Games.,2017,77,Algorithmica,2,db/journals/algorithmica/algorithmica77.html#ManurangsiM17,https://doi.org/10.1007/s00453-015-0088-5 +Hans L. Bodlaender,Parallel Algorithms for Series Parallel Graphs and Graphs with Treewidth Two.,2001,29,Algorithmica,4,db/journals/algorithmica/algorithmica29.html#BodlaenderF01,https://doi.org/10.1007/s004530010070 +Uwe Schöning,A Probabilistic Algorithm for k -SAT Based on Limited Local Search and Restart.,2002,32,Algorithmica,4,db/journals/algorithmica/algorithmica32.html#Schoning02,https://doi.org/10.1007/s00453-001-0094-7 +Fedor V. Fomin,Solving Connected Dominating Set Faster than 2 n .,2008,52,Algorithmica,2,db/journals/algorithmica/algorithmica52.html#FominGK08,https://doi.org/10.1007/s00453-007-9145-z +Eduardo Sany Laber,Guest Editorial: Special Issue on Latin American Theoretical Informatics Symposium (LATIN).,2011,59,Algorithmica,1,db/journals/algorithmica/algorithmica59.html#LaberBF11,https://doi.org/10.1007/s00453-010-9473-2 +Yakov Nekrich,Space Efficient Dynamic Orthogonal Range Reporting.,2007,49,Algorithmica,2,db/journals/algorithmica/algorithmica49.html#Nekrich07,https://doi.org/10.1007/s00453-007-9030-9 +Sanjiv Kapoor,Stochastic Rearrangement Rules for Self-Organizing Data Structures.,1991,6,Algorithmica,2,db/journals/algorithmica/algorithmica6.html#KapoorR91,https://doi.org/10.1007/BF01759046 +Peter Sanders 0001,Fast Concurrent Access to Parallel Disks.,2003,35,Algorithmica,1,db/journals/algorithmica/algorithmica35.html#SandersEK03,https://doi.org/10.1007/s00453-002-0987-0 +Kwan-Hee Yoo,Linear-Time Algorithms for Finding the Shadow Volumes from a Convex Area Light Source.,1998,20,Algorithmica,3,db/journals/algorithmica/algorithmica20.html#YooKSC98,https://doi.org/10.1007/PL00009194 +Yanjun Zhang,Efficiency of Randomized Parallel Backtrack Search.,1999,24,Algorithmica,1,db/journals/algorithmica/algorithmica24.html#ZhangO99,https://doi.org/10.1007/PL00009269 +Alessandro Panconesi,Foreword.,2007,47,Algorithmica,3,db/journals/algorithmica/algorithmica47.html#Panconesi07,https://doi.org/10.1007/s00453-006-0214-5 +Alexis C. Kaporis,Improved Bounds for Finger Search on a RAM.,2013,66,Algorithmica,2,db/journals/algorithmica/algorithmica66.html#KaporisMSTTZ13,https://doi.org/10.1007/s00453-012-9636-4 +Aline Medeiros Saettler,Correction to: Trading Off Worst and Expected Cost in Decision Tree Problems.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#SaettlerLC18,https://doi.org/10.1007/s00453-018-0423-8 +John H. Reif,Movement Planning in the Presence of Flows.,2004,39,Algorithmica,2,db/journals/algorithmica/algorithmica39.html#ReifS04,https://doi.org/10.1007/s00453-003-1079-5 +Bernard Chazelle,Fractional Cascading: II. Applications.,1986,1,Algorithmica,2,db/journals/algorithmica/algorithmica1.html#ChazelleG86a,https://doi.org/10.1007/BF01840441 +Bodo Manthey,Approximation Algorithms for Multi-Criteria Traveling Salesman Problems.,2009,53,Algorithmica,1,db/journals/algorithmica/algorithmica53.html#MantheyR09,https://doi.org/10.1007/s00453-007-9011-z +Lusheng Wang,Space Efficient Algorithms for Ordered Tree Comparison.,2008,51,Algorithmica,3,db/journals/algorithmica/algorithmica51.html#WangZ08,https://doi.org/10.1007/s00453-007-9100-z +Ulrich Faigle,Greedy Oriented Flows.,2018,80,Algorithmica,4,db/journals/algorithmica/algorithmica80.html#FaigleKP18,https://doi.org/10.1007/s00453-017-0306-4 +Alfredo Viola,Preface-S.I.: LATIN 2014.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#Viola16,https://doi.org/10.1007/s00453-016-0181-4 +Hsiao-Fei Liu,On Locating Disjoint Segments with Maximum Sum of Densities.,2009,54,Algorithmica,1,db/journals/algorithmica/algorithmica54.html#LiuC09,https://doi.org/10.1007/s00453-007-9122-6 +Petr A. Golovach,An Incremental Polynomial Time Algorithm to Enumerate All Minimal Edge Dominating Sets.,2015,72,Algorithmica,3,db/journals/algorithmica/algorithmica72.html#GolovachHKV15,https://doi.org/10.1007/s00453-014-9875-7 +Hanjo Täubig,Inequalities for the Number of Walks in Graphs.,2013,66,Algorithmica,4,db/journals/algorithmica/algorithmica66.html#TaubigWKHM13,https://doi.org/10.1007/s00453-013-9766-3 +Mohamed Jebalia,Log-Linear Convergence and Divergence of©0*the©0*Scale-Invariant (1+1)-ES in Noisy Environments.,2011,59,Algorithmica,3,db/journals/algorithmica/algorithmica59.html#JebaliaAH11,https://doi.org/10.1007/s00453-010-9403-3 +P. Krishnan,Adaptive Disk Spindown via Optimal Rent-to-Buy in Probabilistic Environments.,1999,23,Algorithmica,1,db/journals/algorithmica/algorithmica23.html#KrishnanLV99,https://doi.org/10.1007/PL00009249 +Stephan Held,Fast Prefix Adders for Non-uniform Input Arrival Times.,2017,77,Algorithmica,1,db/journals/algorithmica/algorithmica77.html#HeldS17,https://doi.org/10.1007/s00453-015-0067-x +Dana Ron,Exponentially Improved Algorithms and Lower Bounds for Testing Signed Majorities.,2015,72,Algorithmica,2,db/journals/algorithmica/algorithmica72.html#RonS15,https://doi.org/10.1007/s00453-013-9858-0 +Marwan Al-Jubeh,Augmenting the Edge Connectivity of Planar Straight Line Graphs to Three.,2011,61,Algorithmica,4,db/journals/algorithmica/algorithmica61.html#Al-JubehIRSTV11,https://doi.org/10.1007/s00453-011-9551-0 +Andrzej Lingas,Optimal Parallel Algorithms for Rectilinear Link-Distance Problems.,1995,14,Algorithmica,3,db/journals/algorithmica/algorithmica14.html#LingasMS95,https://doi.org/10.1007/BF01206332 +Reid Andersen,No-Three-in-Line-in-3D.,2007,47,Algorithmica,4,db/journals/algorithmica/algorithmica47.html#AndersenCL07,https://doi.org/10.1007/s00453-006-0160-2 +Tobias Christ,Improved Bounds for Wireless Localization.,2010,57,Algorithmica,3,db/journals/algorithmica/algorithmica57.html#ChristHOU10,https://doi.org/10.1007/s00453-009-9287-2 +Ran El-Yaniv,Optimal Search and One-Way Trading Online Algorithms.,2001,30,Algorithmica,1,db/journals/algorithmica/algorithmica30.html#El-YanivFKT01,https://doi.org/10.1007/s00453-001-0003-0 +Fedor V. Fomin,Minimum Fill-in of Sparse Graphs: Kernelization and Approximation.,2015,71,Algorithmica,1,db/journals/algorithmica/algorithmica71.html#FominPV15,https://doi.org/10.1007/s00453-013-9776-1 +Nimrod Megiddo,Extending NC and RNC Algorithms.,1989,4,Algorithmica,4,db/journals/algorithmica/algorithmica4.html#Megiddo89,https://doi.org/10.1007/BF01553905 +Christian Gießen,The Interplay of Population Size and Mutation Probability in the (1 + and#955*) EA on OneMax.,2017,78,Algorithmica,2,db/journals/algorithmica/algorithmica78.html#GiessenW17,https://doi.org/10.1007/s00453-016-0214-z +Refael Hassin,The Complexity of Bottleneck Labeled Graph Problems.,2010,58,Algorithmica,2,db/journals/algorithmica/algorithmica58.html#HassinMS10,https://doi.org/10.1007/s00453-008-9261-4 +Steven M. Kautz,Self-Assembling Rulers for Approximating Generalized Sierpinski Carpets.,2013,67,Algorithmica,2,db/journals/algorithmica/algorithmica67.html#KautzS13,https://doi.org/10.1007/s00453-012-9691-x +Andrew Chi-Chih Yao,Minimean Optimal Key Arrangements in Hash Tables.,1995,14,Algorithmica,5,db/journals/algorithmica/algorithmica14.html#Yao95,https://doi.org/10.1007/BF01192048 +Robert Crowston,Max-Cut Parameterized Above the Edwards-Erdō*7*s Bound.,2015,72,Algorithmica,3,db/journals/algorithmica/algorithmica72.html#CrowstonJM15,https://doi.org/10.1007/s00453-014-9870-z +Eduardo Sany Laber,An Approximation Algorithm for Binary Searching in Trees.,2011,59,Algorithmica,4,db/journals/algorithmica/algorithmica59.html#LaberM11,https://doi.org/10.1007/s00453-009-9325-0 +Yixin Cao 0001,Cluster Editing: Kernelization Based on Edge Cuts.,2012,64,Algorithmica,1,db/journals/algorithmica/algorithmica64.html#CaoC12,https://doi.org/10.1007/s00453-011-9595-1 +Mark H. Nodine,Blocking for External Graph Searching.,1996,16,Algorithmica,2,db/journals/algorithmica/algorithmica16.html#NodineGV96,https://doi.org/10.1007/BF01940646 +Bruno Escoffier,The Price of Optimum: Complexity and Approximation for a Matching Game.,2017,77,Algorithmica,3,db/journals/algorithmica/algorithmica77.html#EscoffierGM17,https://doi.org/10.1007/s00453-015-0108-5 +Djamal Belazzougui,Improved Space-Time Tradeoffs for Approximate Full-Text Indexing with One Edit Error.,2015,72,Algorithmica,3,db/journals/algorithmica/algorithmica72.html#Belazzougui15,https://doi.org/10.1007/s00453-014-9873-9 +Xiaotie Deng,Preface.,2008,52,Algorithmica,1,db/journals/algorithmica/algorithmica52.html#DengY08,https://doi.org/10.1007/s00453-007-9001-1 +Ulrich Laube,Maximum Likelihood Analysis of the Ford-Fulkerson Method on Special Graphs.,2016,74,Algorithmica,4,db/journals/algorithmica/algorithmica74.html#LaubeN16,https://doi.org/10.1007/s00453-015-9998-5 +John Dabney,An Efficient Algorithm for Batch Stability Testing.,2010,58,Algorithmica,1,db/journals/algorithmica/algorithmica58.html#DabneyD10,https://doi.org/10.1007/s00453-009-9320-5 +Yossi Azar,How to Allocate Goods in an Online Market?,2016,74,Algorithmica,2,db/journals/algorithmica/algorithmica74.html#AzarBJ16,https://doi.org/10.1007/s00453-014-9964-7 +Tak Wah Lam,Improved Approximate String Matching Using Compressed Suffix Data Structures.,2008,51,Algorithmica,3,db/journals/algorithmica/algorithmica51.html#LamSW08,https://doi.org/10.1007/s00453-007-9104-8 +Faisal N. Abu-Khzam,Scalable Parallel Algorithms for FPT Problems.,2006,45,Algorithmica,3,db/journals/algorithmica/algorithmica45.html#Abu-KhzamLSS06,https://doi.org/10.1007/s00453-006-1214-1 +Joseph Wun-Tat Chan,On Dynamic Bin Packing: An Improved Lower Bound and Resource Augmentation Analysis.,2009,53,Algorithmica,2,db/journals/algorithmica/algorithmica53.html#ChanWY09,https://doi.org/10.1007/s00453-008-9185-z +Rahul Jain 0001,A Direct Product Theorem for Two-Party Bounded-Round Public-Coin Communication Complexity.,2016,76,Algorithmica,3,db/journals/algorithmica/algorithmica76.html#JainPY16,https://doi.org/10.1007/s00453-015-0100-0 +Arvind Gupta,Linear-Time Algorithms for Partial k-Tree Complements.,2000,27,Algorithmica,3,db/journals/algorithmica/algorithmica27.html#GuptaKS00,https://doi.org/10.1007/s004530010019 +Neelima Gupta,An Efficient Output-Size Sensitive Parallel Algorithm for Hidden-Surface Removal for Terrains.,2001,31,Algorithmica,2,db/journals/algorithmica/algorithmica31.html#GuptaS01,https://doi.org/10.1007/s00453-001-0042-6 +Daniel König,Evaluation of Circuits Over Nilpotent and Polycyclic Groups.,2018,80,Algorithmica,5,db/journals/algorithmica/algorithmica80.html#KonigL18,https://doi.org/10.1007/s00453-017-0343-z +Esko Ukkonen,On-Line Construction of Suffix Trees.,1995,14,Algorithmica,3,db/journals/algorithmica/algorithmica14.html#Ukkonen95,https://doi.org/10.1007/BF01206331 +Hamid Zarrabi-Zadeh,An Almost Space-Optimal Streaming Algorithm for Coresets in Fixed Dimensions.,2011,60,Algorithmica,1,db/journals/algorithmica/algorithmica60.html#Zarrabi-Zadeh11,https://doi.org/10.1007/s00453-010-9392-2 +L. Paul Chew,Constrained Delaunay Triangulations.,1989,4,Algorithmica,1,db/journals/algorithmica/algorithmica4.html#Chew89,https://doi.org/10.1007/BF01553881 +Lars Arge,External-Memory Algorithms for Processing Line Segments in Geographic Information Systems.,2007,47,Algorithmica,1,db/journals/algorithmica/algorithmica47.html#ArgeVV07,https://doi.org/10.1007/s00453-006-1208-z +Michael Kaufmann 0001,Parity Conditions in Homotopic Knock-Knee Routing.,1993,9,Algorithmica,1,db/journals/algorithmica/algorithmica9.html#KaufmannM93,https://doi.org/10.1007/BF01185338 +Kamal Jain,An Approximation Algorithm for the Fault Tolerant Metric Facility Location Problem.,2004,38,Algorithmica,3,db/journals/algorithmica/algorithmica38.html#JainV03,https://doi.org/10.1007/s00453-003-1070-1 +Tomasz Radzik,Tight Bounds on the Number of Minimum-Mean Cycle Cancellations and Related Results.,1994,11,Algorithmica,3,db/journals/algorithmica/algorithmica11.html#RadzikG94,https://doi.org/10.1007/BF01240734 +T.-H. Hubert Chan,Sparse Fault-Tolerant Spanners for Doubling Metrics with Bounded Hop-Diameter or Degree.,2015,71,Algorithmica,1,db/journals/algorithmica/algorithmica71.html#ChanLN15,https://doi.org/10.1007/s00453-013-9779-y +Louis Ibarra,A Fully Dynamic Graph Algorithm for Recognizing Interval Graphs.,2010,58,Algorithmica,3,db/journals/algorithmica/algorithmica58.html#Ibarra10,https://doi.org/10.1007/s00453-009-9291-6 +Yen-Tai Lai,A Theory of Rectangular Dual Graphs.,1990,5,Algorithmica,4,db/journals/algorithmica/algorithmica5.html#LaiL90,https://doi.org/10.1007/BF01840399 +George Karakostas,Emergency Connectivity in Ad-hoc Networks with Selfish Nodes.,2014,68,Algorithmica,2,db/journals/algorithmica/algorithmica68.html#KarakostasM14,https://doi.org/10.1007/s00453-012-9675-x +Benjamin Doerr,Static and Self-Adjusting Mutation Strengths for Multi-valued Decision Variables.,2018,80,Algorithmica,5,db/journals/algorithmica/algorithmica80.html#DoerrDK18,https://doi.org/10.1007/s00453-017-0341-1 +Mark Shand,Algorithms for Corner Stitched Data-Structures.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#Shand87,https://doi.org/10.1007/BF01840349 +Xuemin Lin,Delay Optimization in Quorum Consensus.,2004,38,Algorithmica,2,db/journals/algorithmica/algorithmica38.html#Lin03,https://doi.org/10.1007/s00453-003-1066-x +Michael Drmota,A Central Limit Theorem for the Number of Degree-k Vertices in Random Maps.,2013,66,Algorithmica,4,db/journals/algorithmica/algorithmica66.html#DrmotaP13,https://doi.org/10.1007/s00453-013-9751-x +Bang Ye Wu,The Swap Edges of a Multiple-Sources Routing Tree.,2008,50,Algorithmica,3,db/journals/algorithmica/algorithmica50.html#WuHC08,https://doi.org/10.1007/s00453-007-9080-z +H. Bast,A Heuristic for Dijkstra's Algorithm with Many Targets and Its Use in Weighted Matching Algorithms.,2003,36,Algorithmica,1,db/journals/algorithmica/algorithmica36.html#BastMS03,https://doi.org/10.1007/s00453-002-1008-z +Jozef Hales,Combinatorial RNA Design: Designability and Structure-Approximating Algorithm in Watson-Crick and Nussinov-Jacobson Energy Models.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#HalesHMPS17,https://doi.org/10.1007/s00453-016-0196-x +Charles Knessl,A Note on the Asymptotic Behavior of the Depth of Tries.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#Knessl98,https://doi.org/10.1007/PL00009239 +Kazuo Iwama,A 25/17-Approximation Algorithm for the Stable Marriage Problem with One-Sided Ties.,2014,68,Algorithmica,3,db/journals/algorithmica/algorithmica68.html#IwamaMY14,https://doi.org/10.1007/s00453-012-9699-2 +Timo von Oertzen,Exact Computation of Polynomial Zeros Expressible by Square Roots.,2006,46,Algorithmica,1,db/journals/algorithmica/algorithmica46.html#Oertzen06,https://doi.org/10.1007/s00453-006-0071-2 +Vladimir Pestov,Lower Bounds on Performance of Metric Tree Indexing Schemes for Exact Similarity Search in High Dimensions.,2013,66,Algorithmica,2,db/journals/algorithmica/algorithmica66.html#Pestov13,https://doi.org/10.1007/s00453-012-9638-2 +Sepehr Assadi,The Minimum Vulnerability Problem.,2014,70,Algorithmica,4,db/journals/algorithmica/algorithmica70.html#AssadiENYZ14,https://doi.org/10.1007/s00453-014-9927-z +Hervé Daudé,Random 2 XORSAT Phase Transition.,2011,59,Algorithmica,1,db/journals/algorithmica/algorithmica59.html#DaudeR11,https://doi.org/10.1007/s00453-009-9308-1 +Shang-Ching Chou,On the Algebraic Formulation of Certain Geometry Statements and Mechanical Geometry Theorem Proving.,1989,4,Algorithmica,2,db/journals/algorithmica/algorithmica4.html#ChouY89,https://doi.org/10.1007/BF01553889 +Chandra Chekuri,A Note on Multiflows and Treewidth.,2009,54,Algorithmica,3,db/journals/algorithmica/algorithmica54.html#ChekuriKS09,https://doi.org/10.1007/s00453-007-9129-z +Nili Guttmann-Beck,Approximation Algorithms with Bounded Performance Guarantees for the Clustered Traveling Salesman Problem.,2000,28,Algorithmica,4,db/journals/algorithmica/algorithmica28.html#Guttmann-BeckHKR00,https://doi.org/10.1007/s004530010045 +Katharina T. Huber,Encoding and Constructing 1-Nested Phylogenetic Networks with Trinets.,2013,66,Algorithmica,3,db/journals/algorithmica/algorithmica66.html#HuberM13,https://doi.org/10.1007/s00453-012-9659-x +Daniel J. Harvey,Design and Performance of a Heterogeneous Grid Partitioner.,2006,45,Algorithmica,3,db/journals/algorithmica/algorithmica45.html#HarveyDB06,https://doi.org/10.1007/s00453-006-1223-0 +Oded Goldreich 0001,Property Testing in Bounded Degree Graphs.,2002,32,Algorithmica,2,db/journals/algorithmica/algorithmica32.html#GoldreichR02,https://doi.org/10.1007/s00453-001-0078-7 +Anup Bhattacharya,Sampling in Space Restricted Settings.,2018,80,Algorithmica,5,db/journals/algorithmica/algorithmica80.html#BhattacharyaIJK18,https://doi.org/10.1007/s00453-017-0335-z +Mohammad Ali Abam,Spanners for Geodesic Graphs and Visibility Graphs.,2018,80,Algorithmica,2,db/journals/algorithmica/algorithmica80.html#Abam18,https://doi.org/10.1007/s00453-016-0268-y +Lee R. Nackman,Point Placement Algorithms for Delaunay Triangulation of Polygonal Domains.,1994,12,Algorithmica,1,db/journals/algorithmica/algorithmica12.html#NackmanS94,https://doi.org/10.1007/BF01377180 +Panos M. Pardalos,Algorithms for a Class of Isotonic Regression Problems.,1999,23,Algorithmica,3,db/journals/algorithmica/algorithmica23.html#PardalosX99,https://doi.org/10.1007/PL00009258 +Xianyue Li,A Better Constant-Factor Approximation for Selected-Internal Steiner Minimum Tree.,2010,56,Algorithmica,3,db/journals/algorithmica/algorithmica56.html#LiZHKW10,https://doi.org/10.1007/s00453-009-9301-8 +Mohammad Taghi Hajiaghayi,Approximating Buy-at-Bulk and Shallow-Light k-Steiner Trees.,2009,53,Algorithmica,1,db/journals/algorithmica/algorithmica53.html#HajiaghayiKS09,https://doi.org/10.1007/s00453-007-9013-x +Gahyun Park,A Generalization of Multiple Choice Balls-into-Bins: Tight Bounds.,2017,77,Algorithmica,4,db/journals/algorithmica/algorithmica77.html#Park17,https://doi.org/10.1007/s00453-016-0141-z +Zaixin Lu,Guest Editorial: Special Issue on Combinatorial Optimization and Applications.,2018,80,Algorithmica,6,db/journals/algorithmica/algorithmica80.html#LuK18,https://doi.org/10.1007/s00453-018-0430-9 +Sixia Chen,Online Metric Tracking and Smoothing.,2014,68,Algorithmica,1,db/journals/algorithmica/algorithmica68.html#ChenR14,https://doi.org/10.1007/s00453-012-9669-8 +Toby Berger,Asymptotic Component Densities in Programmable Gate Arrays Realizing All Circuits of a Given Size.,1993,9,Algorithmica,2,db/journals/algorithmica/algorithmica9.html#BergerHO93,https://doi.org/10.1007/BF01188707 +Daniël Paulusma,Model Counting for CNF Formulas of Bounded Modular Treewidth.,2016,76,Algorithmica,1,db/journals/algorithmica/algorithmica76.html#PaulusmaSS16,https://doi.org/10.1007/s00453-015-0030-x +Joseph C. Culberson,Analysis of the Standard Deletion Algorithms in Exact Fit Domain Binary Search Trees.,1990,5,Algorithmica,3,db/journals/algorithmica/algorithmica5.html#CulbersonM90,https://doi.org/10.1007/BF01840390 +Jae-Sook Cheong,Computing All Immobilizing Grasps of a Simple Polygon with Few Contacts.,2006,44,Algorithmica,2,db/journals/algorithmica/algorithmica44.html#CheongHS06,https://doi.org/10.1007/s00453-005-1202-x +Joan Feigenbaum,Testing and Spot-Checking of Data Streams.,2002,34,Algorithmica,1,db/journals/algorithmica/algorithmica34.html#FeigenbaumKSV02,https://doi.org/10.1007/s00453-002-0959-4 +David P. Dobkin,Decomposition and Intersection of Simple Splinegons.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#DobkinSW88,https://doi.org/10.1007/BF01762127 +Brian C. Dean,Approximation Algorithms for k-hurdle Problems.,2011,59,Algorithmica,1,db/journals/algorithmica/algorithmica59.html#DeanGPW11,https://doi.org/10.1007/s00453-010-9408-y +Michael Kaufmann 0001,Routing on Meshes with Buses.,1997,18,Algorithmica,3,db/journals/algorithmica/algorithmica18.html#KaufmannRS97,https://doi.org/10.1007/PL00009164 +Conrado Martinez,Partial Match Queries in Relaxed Multidimensional Search Trees.,2001,29,Algorithmica,1,db/journals/algorithmica/algorithmica29.html#MartinezPP01,https://doi.org/10.1007/BF02679618 +Costas S. Iliopoulos,Indexing Factors with Gaps.,2009,55,Algorithmica,1,db/journals/algorithmica/algorithmica55.html#IliopoulosR09,https://doi.org/10.1007/s00453-007-9141-3 +Daniel Johannsen,Evolutionary Algorithms for Quantum Computers.,2014,68,Algorithmica,1,db/journals/algorithmica/algorithmica68.html#JohannsenKL14,https://doi.org/10.1007/s00453-013-9784-1 +Hosam M. Mahmoud,The Joint Distribution of the Three Types of Nodes in Uniform Binary Trees.,1995,13,Algorithmica,3,db/journals/algorithmica/algorithmica13.html#Mahmoud95,https://doi.org/10.1007/BF01190510 +Christos Levcopoulos,There Are Planar Graphs Almost as Good as the Complete Graphs and Almost as Cheap as Minimum Spanning Trees.,1992,8,Algorithmica,3,db/journals/algorithmica/algorithmica8.html#LevcopoulosL92,https://doi.org/10.1007/BF01758846 +Christian Boulinier,Synchronous vs. Asynchronous Unison.,2008,51,Algorithmica,1,db/journals/algorithmica/algorithmica51.html#BoulinierPV08,https://doi.org/10.1007/s00453-007-9066-x +Marcus Brazil,Generalised k-Steiner Tree Problems in Normed Planes.,2015,71,Algorithmica,1,db/journals/algorithmica/algorithmica71.html#BrazilRST15,https://doi.org/10.1007/s00453-013-9780-5 +Adam L. Buchsbaum,Three-Dimensional Layers of Maxima.,2004,39,Algorithmica,4,db/journals/algorithmica/algorithmica39.html#BuchsbaumG04,https://doi.org/10.1007/s00453-004-1082-5 +Matthias Englert,Worst Case and Probabilistic Analysis of the 2-Opt Algorithm for the TSP.,2014,68,Algorithmica,1,db/journals/algorithmica/algorithmica68.html#EnglertRV14,https://doi.org/10.1007/s00453-013-9801-4 +Hélio B. Macêdo Filho,Efficient Algorithms for Clique-Colouring and Biclique-Colouring Unichord-Free Graphs.,2017,77,Algorithmica,3,db/journals/algorithmica/algorithmica77.html#FilhoMF17,https://doi.org/10.1007/s00453-015-0106-7 +Stephen Melczer,Asymptotic Lattice Path Enumeration Using Diagonals.,2016,75,Algorithmica,4,db/journals/algorithmica/algorithmica75.html#MelczerM16,https://doi.org/10.1007/s00453-015-0063-1 +Maxim A. Babenko,An Efficient Scaling Algorithm for the Minimum Weight Bibranching Problem.,2011,61,Algorithmica,4,db/journals/algorithmica/algorithmica61.html#Babenko11,https://doi.org/10.1007/s00453-009-9377-1 +Baruch Schieber,A Theory and Algorithms for Combinatorial Reoptimization.,2018,80,Algorithmica,2,db/journals/algorithmica/algorithmica80.html#SchieberSTT18,https://doi.org/10.1007/s00453-017-0274-8 +Flávio Keidi Miyazawa,An Algorithm for the Three-Dimensional Packing Problem with Asymptotic Performance Analysis.,1997,18,Algorithmica,1,db/journals/algorithmica/algorithmica18.html#MiyazawaW97,https://doi.org/10.1007/BF02523692 +Stavros D. Nikolopoulos,Algorithms for P4-Comparability Graph Recognition and Acyclic P4-Transitive Orientation.,2004,39,Algorithmica,2,db/journals/algorithmica/algorithmica39.html#NikolopoulosP04,https://doi.org/10.1007/s00453-003-1075-9 +Franco P. Preparata,Output-Sensitive Generation of the Perspective View of Isothetic Parallelepipeds.,1992,8,Algorithmica,4,db/journals/algorithmica/algorithmica8.html#PreparataVY92,https://doi.org/10.1007/BF01758847 +Abraham P. Punnen,TSP Heuristics: Domination Analysis and Complexity.,2003,35,Algorithmica,2,db/journals/algorithmica/algorithmica35.html#PunnenMK03,https://doi.org/10.1007/s00453-002-0986-1 +Tian-Ming Bu,On Robustness of Forward-looking in Sponsored Search Auction.,2010,58,Algorithmica,4,db/journals/algorithmica/algorithmica58.html#BuLQ10,https://doi.org/10.1007/s00453-009-9280-9 +Frank Neumann 0001,Runtime Analysis of a Simple Ant Colony Optimization Algorithm.,2009,54,Algorithmica,2,db/journals/algorithmica/algorithmica54.html#NeumannW09,https://doi.org/10.1007/s00453-007-9134-2 +Shaodi Gao,Two-Layer Channel Routing with Vertical Uni-Length Overlap.,1986,1,Algorithmica,2,db/journals/algorithmica/algorithmica1.html#GaoH86,https://doi.org/10.1007/BF01840444 +Martin Hoefer,Competitive Cost Sharing with Economies of Scale.,2011,60,Algorithmica,4,db/journals/algorithmica/algorithmica60.html#Hoefer11,https://doi.org/10.1007/s00453-009-9367-3 +Benjamin Doerr,In Memoriam: Ingo Wegener.,2010,58,Algorithmica,3,db/journals/algorithmica/algorithmica58.html#DoerrN10,https://doi.org/10.1007/s00453-009-9372-6 +Frank K. H. A. Dehne,Introduction to Special Issue.,2008,50,Algorithmica,2,db/journals/algorithmica/algorithmica50.html#DehneS08,https://doi.org/10.1007/s00453-007-9038-1 +George Karakostas,Stackelberg Strategies for Selfish Routing in General Multicommodity Networks.,2009,53,Algorithmica,1,db/journals/algorithmica/algorithmica53.html#KarakostasK09,https://doi.org/10.1007/s00453-007-9018-5 +Travis Gagie,Binary Jumbled Pattern Matching on Trees and Tree-Like Structures.,2015,73,Algorithmica,3,db/journals/algorithmica/algorithmica73.html#GagieHLW15,https://doi.org/10.1007/s00453-014-9957-6 +Ei Ando,An FPTAS for the Volume Computation of 0-1 Knapsack Polytopes Based on Approximate Convolution.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#AndoK16,https://doi.org/10.1007/s00453-015-0096-5 +Mark van Hoeij,Gradual Sub-lattice Reduction and a New Complexity for Factoring Polynomials.,2012,63,Algorithmica,3,db/journals/algorithmica/algorithmica63.html#HoeijN12,https://doi.org/10.1007/s00453-011-9500-y +Matthew Johnson 0002,Finding Shortest Paths Between Graph Colourings.,2016,75,Algorithmica,2,db/journals/algorithmica/algorithmica75.html#0001KKPP16,https://doi.org/10.1007/s00453-015-0009-7 +Matthew Andrews,Approximation Algorithms for Access Network Design.,2002,34,Algorithmica,2,db/journals/algorithmica/algorithmica34.html#AndrewsZ02,https://doi.org/10.1007/s00453-002-0968-3 +John L. Nazareth,The Implementation of Linear Programming Algorithms Bases on Homotopies.,1996,15,Algorithmica,4,db/journals/algorithmica/algorithmica15.html#Nazareth96,https://doi.org/10.1007/BF01961543 +Gregory Z. Gutin,Fixed-Parameter Complexity of Minimum Profile Problems.,2008,52,Algorithmica,2,db/journals/algorithmica/algorithmica52.html#GutinSY08,https://doi.org/10.1007/s00453-007-9144-0 +Carlos E. R. Alves,A Coarse-Grained Parallel Algorithm for the All-Substrings Longest Common Subsequence Problem.,2006,45,Algorithmica,3,db/journals/algorithmica/algorithmica45.html#AlvesCS06,https://doi.org/10.1007/s00453-006-1216-z +Kamal Al-Bawani,Comparison-Based Buffer Management in QoS Switches.,2018,80,Algorithmica,3,db/journals/algorithmica/algorithmica80.html#Al-BawaniEW18,https://doi.org/10.1007/s00453-017-0393-2 +Costas S. Iliopoulos,Covering a String.,1996,16,Algorithmica,3,db/journals/algorithmica/algorithmica16.html#IliopoulosMP96,https://doi.org/10.1007/BF01955677 +Majid Sarrafzadeh,Maximum k-Covering of Weighted Transitive Graphs with Applications.,1993,9,Algorithmica,1,db/journals/algorithmica/algorithmica9.html#SarrafzadehL93,https://doi.org/10.1007/BF01185340 +Carl Barton,Crochemore's Partitioning on Weighted Strings and Applications.,2018,80,Algorithmica,2,db/journals/algorithmica/algorithmica80.html#BartonP18,https://doi.org/10.1007/s00453-016-0266-0 +Vicky Choi,An Algorithmic Approach to the Identification of Rigid Domains in Proteins.,2007,48,Algorithmica,4,db/journals/algorithmica/algorithmica48.html#ChoiG07,https://doi.org/10.1007/s00453-007-0186-0 +Micah Adler,Time-Constrained Scheduling of Weighted Packets on Trees and Meshes.,2003,36,Algorithmica,2,db/journals/algorithmica/algorithmica36.html#AdlerKR03,https://doi.org/10.1007/s00453-002-1019-9 +Francis Avnaim,Evaluating Signs of Determinants Using Single-Precision Arithmetic.,1997,17,Algorithmica,2,db/journals/algorithmica/algorithmica17.html#AvnaimBDPY97,https://doi.org/10.1007/BF02522822 +Eli Fox-Epstein,Diffuse Reflection Radius in a Simple Polygon.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#Fox-EpsteinTW16,https://doi.org/10.1007/s00453-015-0031-9 +Karl Bringmann,Efficient Sampling Methods for Discrete Distributions.,2017,79,Algorithmica,2,db/journals/algorithmica/algorithmica79.html#BringmannP17,https://doi.org/10.1007/s00453-016-0205-0 +Dániel Marx,Parameterized Complexity and Local Search Approaches for the Stable Marriage Problem with Ties.,2010,58,Algorithmica,1,db/journals/algorithmica/algorithmica58.html#MarxS10,https://doi.org/10.1007/s00453-009-9326-z +Camil Demetrescu,Mantaining Dynamic Matrices for Fully Dynamic Transitive Closure.,2008,51,Algorithmica,4,db/journals/algorithmica/algorithmica51.html#DemetrescuI08,https://doi.org/10.1007/s00453-007-9051-4 +Radu Curticapean,A Quantization Framework for Smoothed Analysis of Euclidean Optimization Problems.,2015,73,Algorithmica,3,db/journals/algorithmica/algorithmica73.html#CurticapeanK15,https://doi.org/10.1007/s00453-015-0043-5 +Robert Sedgewick,Shortest Paths in Euclidean Graphs.,1986,1,Algorithmica,1,db/journals/algorithmica/algorithmica1.html#SedgewickV86,https://doi.org/10.1007/BF01840435 +Marthe Bonamy,Linear Kernels for Outbranching Problems in Sparse Digraphs.,2017,79,Algorithmica,1,db/journals/algorithmica/algorithmica79.html#BonamyKPS17,https://doi.org/10.1007/s00453-016-0244-6 +Constantinos Daskalakis,Learning Poisson Binomial Distributions.,2015,72,Algorithmica,1,db/journals/algorithmica/algorithmica72.html#DaskalakisDS15,https://doi.org/10.1007/s00453-015-9971-3 +Amitai Armon,Temporary Tasks Assignment Resolved.,2003,36,Algorithmica,3,db/journals/algorithmica/algorithmica36.html#ArmonAE03,https://doi.org/10.1007/s00453-003-1017-6 +Chunhong Chen,Budget Management with Applications.,2002,34,Algorithmica,3,db/journals/algorithmica/algorithmica34.html#ChenBSS02,https://doi.org/10.1007/s00453-002-0964-7 +Kamalika Chaudhuri,What Would Edmonds Do? Augmenting Paths and Witnesses for Degree-Bounded MSTs.,2009,55,Algorithmica,1,db/journals/algorithmica/algorithmica55.html#ChaudhuriRRT09,https://doi.org/10.1007/s00453-007-9115-5 +Noga Alon,Linear Time Algorithms for Finding a Dominating Set of Fixed Size in Degenerated Graphs.,2009,54,Algorithmica,4,db/journals/algorithmica/algorithmica54.html#AlonG09,https://doi.org/10.1007/s00453-008-9204-0 +Stefan Dobrev,Mobile Search for a Black Hole in an Anonymous Ring.,2007,48,Algorithmica,1,db/journals/algorithmica/algorithmica48.html#DobrevFPS07,https://doi.org/10.1007/s00453-006-1232-z +Anders Dessmark,Polynomial-Time Algorithms for the Ordered Maximum Agreement Subtree Problem.,2007,48,Algorithmica,3,db/journals/algorithmica/algorithmica48.html#DessmarkJLL07,https://doi.org/10.1007/s00453-007-0080-9 +Deeparnab Chakrabarty,Approximability of Capacitated Network Design.,2015,72,Algorithmica,2,db/journals/algorithmica/algorithmica72.html#ChakrabartyCKK15,https://doi.org/10.1007/s00453-013-9862-4 +Atsuki Nagao,A Moderately Exponential Time Algorithm for k-IBDD Satisfiability.,2018,80,Algorithmica,10,db/journals/algorithmica/algorithmica80.html#NagaoST18,https://doi.org/10.1007/s00453-017-0332-2 +Valerie King,Choosing a Random Peer in Chord.,2007,49,Algorithmica,2,db/journals/algorithmica/algorithmica49.html#KingLSY07,https://doi.org/10.1007/s00453-007-9029-2 +Viswanath Nagarajan,The Directed Orienteering Problem.,2011,60,Algorithmica,4,db/journals/algorithmica/algorithmica60.html#NagarajanR11,https://doi.org/10.1007/s00453-011-9509-2 +Krishnendu Chatterjee,Polynomial-Time Algorithms for Energy Games with Special Weight Structures.,2014,70,Algorithmica,3,db/journals/algorithmica/algorithmica70.html#ChatterjeeHKN14,https://doi.org/10.1007/s00453-013-9843-7 +Nikhil Bansal,Shape Rectangularization Problems in Intensity-Modulated Radiation Therapy.,2011,60,Algorithmica,2,db/journals/algorithmica/algorithmica60.html#BansalCCHLMSW11,https://doi.org/10.1007/s00453-009-9354-8 +Hans L. Bodlaender,Degree-Constrained Orientation of Maximum Satisfaction: Graph Classes and Parameterized Complexity.,2018,80,Algorithmica,7,db/journals/algorithmica/algorithmica80.html#BodlaenderOO18,https://doi.org/10.1007/s00453-017-0399-9 +Sanjiv Kapoor,An Algorithm for Enumerating All Spanning Trees of a Directed Graph.,2000,27,Algorithmica,2,db/journals/algorithmica/algorithmica27.html#KapoorR00,https://doi.org/10.1007/s004530010008 +Ho-Leung Chan,Compressed Indexes for Approximate String Matching.,2010,58,Algorithmica,2,db/journals/algorithmica/algorithmica58.html#ChanLSTW10,https://doi.org/10.1007/s00453-008-9263-2 +Vladlen Koltun,Matching Polyhedral Terrains Using Overlays of Envelopes.,2005,41,Algorithmica,3,db/journals/algorithmica/algorithmica41.html#KoltunW05,https://doi.org/10.1007/s00453-004-1107-0 +Hristo Djidjev,Improved Algorithms for Dynamic Shortest Paths.,2000,28,Algorithmica,4,db/journals/algorithmica/algorithmica28.html#DjidjevPZ00,https://doi.org/10.1007/s004530010043 +Nidhal Bouaynaya,Protein Communication System: Evolution and Genomic Structure.,2007,48,Algorithmica,4,db/journals/algorithmica/algorithmica48.html#BouaynayaS07,https://doi.org/10.1007/s00453-007-0180-6 +Zeev Nutov,Approximating Rooted Connectivity Augmentation Problems.,2006,44,Algorithmica,3,db/journals/algorithmica/algorithmica44.html#Nutov06,https://doi.org/10.1007/s00453-005-1150-5 +Marc J. van Kreveld,Approximate Unions of Lines and Minkowski Sums.,2006,45,Algorithmica,1,db/journals/algorithmica/algorithmica45.html#KreveldS06,https://doi.org/10.1007/s00453-005-1191-9 +Telikepalli Kavitha,New Approximation Algorithms for Minimum Cycle Bases of Graphs.,2011,59,Algorithmica,4,db/journals/algorithmica/algorithmica59.html#KavithaMM11,https://doi.org/10.1007/s00453-009-9313-4 +Henning Fernau,A Top-Down Approach to Search-Trees: Improved Algorithmics for 3-Hitting Set.,2010,57,Algorithmica,1,db/journals/algorithmica/algorithmica57.html#Fernau10,https://doi.org/10.1007/s00453-008-9199-6 +Adrian Bock,The School Bus Problem on Trees.,2013,67,Algorithmica,1,db/journals/algorithmica/algorithmica67.html#BockGKS13,https://doi.org/10.1007/s00453-012-9711-x +Hee-Kap Ahn,Casting with Skewed Ejection Direction.,2006,44,Algorithmica,4,db/journals/algorithmica/algorithmica44.html#AhnCC06,https://doi.org/10.1007/s00453-005-1179-5 +Hiroshi Imai,A Linear-Time Algorithm for Linear L_1 Approximation of Points.,1989,4,Algorithmica,1,db/journals/algorithmica/algorithmica4.html#ImaiKY89,https://doi.org/10.1007/BF01553880 +Guy Feigenblat,A Grouping Approach for Succinct Dynamic Dictionary Matching.,2017,77,Algorithmica,1,db/journals/algorithmica/algorithmica77.html#FeigenblatPS17,https://doi.org/10.1007/s00453-015-0056-0 +Stefano Leonardi,On-Line Resource Management with Application to Routing and Scheduling.,1999,24,Algorithmica,1,db/journals/algorithmica/algorithmica24.html#LeonardiM99,https://doi.org/10.1007/PL00009270 +Frank van den Eijkhof,Safe Reduction Rules for Weighted Treewidth.,2007,47,Algorithmica,2,db/journals/algorithmica/algorithmica47.html#EijkhofBK07,https://doi.org/10.1007/s00453-006-1226-x +Esther M. Arkin,The Freeze-Tag Problem: How to Wake Up a Swarm ofRobots.,2006,46,Algorithmica,2,db/journals/algorithmica/algorithmica46.html#ArkinBFMS06,https://doi.org/10.1007/s00453-006-1206-1 +François Le Gall,Quantum Algorithm for Triangle Finding in Sparse Graphs.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#GallN17,https://doi.org/10.1007/s00453-016-0267-z +Tim Nonner,Clique Clustering Yields a PTAS for Max-Coloring Interval Graphs.,2018,80,Algorithmica,10,db/journals/algorithmica/algorithmica80.html#Nonner18,https://doi.org/10.1007/s00453-017-0362-9 +Petra Berenbrink,On the Stability of Dynamic Diffusion Load Balancing.,2008,50,Algorithmica,3,db/journals/algorithmica/algorithmica50.html#BerenbrinkFM08,https://doi.org/10.1007/s00453-007-9081-y +Benjamin Doerr,Time Complexity Analysis of Evolutionary Algorithms on Random Satisfiable k-CNF Formulas.,2017,78,Algorithmica,2,db/journals/algorithmica/algorithmica78.html#DoerrNS17,https://doi.org/10.1007/s00453-016-0190-3 +Lasse Kliemann,The Price of Anarchy in Bilateral Network Formation in an Adversary Model.,2017,77,Algorithmica,3,db/journals/algorithmica/algorithmica77.html#Kliemann17,https://doi.org/10.1007/s00453-016-0120-4 +Krzysztof Diks,Optimal Adaptive Broadcasting with a Bounded Fraction of Faulty Nodes.,2000,28,Algorithmica,1,db/journals/algorithmica/algorithmica28.html#DiksP00,https://doi.org/10.1007/s004530010030 +Klaus Jansen,Guest Editors' Introduction.,2004,38,Algorithmica,3,db/journals/algorithmica/algorithmica38.html#JansenK03,https://doi.org/10.1007/s00453-003-1068-8 +Sanjeev Khanna,On Certificates and Lookahead in Dynamic Graph Problems.,1998,21,Algorithmica,4,db/journals/algorithmica/algorithmica21.html#KhannaMW98,https://doi.org/10.1007/PL00009220 +Pavol Duris,A Minimum-Area Circuit for l-Selection.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#DurisSTV87,https://doi.org/10.1007/BF01840362 +Esko Ukkonen,Approximate String Matching with Suffix Automata.,1993,10,Algorithmica,5,db/journals/algorithmica/algorithmica10.html#UkkonenW93,https://doi.org/10.1007/BF01769703 +Leizhen Cai,Isomorphic Tree Spanner Problems.,1995,14,Algorithmica,2,db/journals/algorithmica/algorithmica14.html#CaiC95,https://doi.org/10.1007/BF01293665 +Michael Dom,Error Compensation in Leaf Power Problems.,2006,44,Algorithmica,4,db/journals/algorithmica/algorithmica44.html#DomGHN06,https://doi.org/10.1007/s00453-005-1180-z +John Hershberger 0001,An Optimal Visibility Graph Algorithm for Triangulated Simple Polygons.,1989,4,Algorithmica,1,db/journals/algorithmica/algorithmica4.html#Hershberger89,https://doi.org/10.1007/BF01553883 +Rudolf Scheifele,Steiner Trees with Bounded RC-Delay.,2017,78,Algorithmica,1,db/journals/algorithmica/algorithmica78.html#Scheifele17,https://doi.org/10.1007/s00453-016-0149-4 +J. Ian Munro,Fast Stable In-Place Sorting with O (n) Data Moves.,1996,16,Algorithmica,2,db/journals/algorithmica/algorithmica16.html#MunroR96,https://doi.org/10.1007/BF01940644 +Michael T. Goodrich,Constructing the Voronoi Diagram of a Set of Line Segments in Parallel.,1993,9,Algorithmica,2,db/journals/algorithmica/algorithmica9.html#GoodrichOY93,https://doi.org/10.1007/BF01188708 +Jean Cardinal,Hitting All Maximal Independent Sets of a Bipartite Graph.,2015,72,Algorithmica,2,db/journals/algorithmica/algorithmica72.html#CardinalJ15,https://doi.org/10.1007/s00453-013-9847-3 +Frieda Granot,Using Quadratic Programming to Solve High Multiplicity Scheduling Problems on Parallel Machines.,1997,17,Algorithmica,2,db/journals/algorithmica/algorithmica17.html#GranotST97,https://doi.org/10.1007/BF02522821 +Cristina Bazgan,Structural and Algorithmic Properties of 2-Community Structures.,2018,80,Algorithmica,6,db/journals/algorithmica/algorithmica80.html#BazganCP18,https://doi.org/10.1007/s00453-017-0283-7 +Sándor P. Fekete,Facets for Art Gallery Problems.,2015,73,Algorithmica,2,db/journals/algorithmica/algorithmica73.html#FeketeFK015,https://doi.org/10.1007/s00453-014-9961-x +Tetsuo Asano,Editorial.,2009,54,Algorithmica,2,db/journals/algorithmica/algorithmica54.html#Asano09,https://doi.org/10.1007/s00453-007-9139-x +Xiaotie Deng,Competitive Implementation of Parallel Programs.,1999,23,Algorithmica,1,db/journals/algorithmica/algorithmica23.html#DengKM99,https://doi.org/10.1007/PL00009248 +Allan Borodin,(Incremental) Priority Algorithms.,2003,37,Algorithmica,4,db/journals/algorithmica/algorithmica37.html#BorodinNR03,https://doi.org/10.1007/s00453-003-1036-3 +Benny Chor,An Improved Parallel Algorithm for Integer GCD.,1990,5,Algorithmica,1,db/journals/algorithmica/algorithmica5.html#ChorG90,https://doi.org/10.1007/BF01840374 +Mike Paterson,Improved Sorting Networks with O(log N) Depth.,1990,5,Algorithmica,1,db/journals/algorithmica/algorithmica5.html#Paterson90,https://doi.org/10.1007/BF01840378 +Reza Dorrigiv,Parameterized Analysis of Paging and List Update Algorithms.,2015,71,Algorithmica,2,db/journals/algorithmica/algorithmica71.html#DorrigivEL15,https://doi.org/10.1007/s00453-013-9800-5 +Edith Cohen,Algorithms and Complexity Analysis for Some Flow Problems.,1994,11,Algorithmica,3,db/journals/algorithmica/algorithmica11.html#CohenM94,https://doi.org/10.1007/BF01240739 +Prosenjit Bose,Testing the Quality of Manufactured Disks and Balls.,2004,38,Algorithmica,1,db/journals/algorithmica/algorithmica38.html#BoseM03,https://doi.org/10.1007/s00453-003-1048-z +Christopher Auer,Outer 1-Planar Graphs.,2016,74,Algorithmica,4,db/journals/algorithmica/algorithmica74.html#AuerBBGHNR16,https://doi.org/10.1007/s00453-015-0002-1 +Jayaram Bhasker,A Linear Algorithm to Find a Rectangular Dual of a Planar Triangulated Graph.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#BhaskerS88,https://doi.org/10.1007/BF01762117 +Alois Panholzer,Average-Case Analysis of Priority Trees: A Structure for Priority Queue Administration.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#PanholzerP98,https://doi.org/10.1007/PL00009243 +Patricio V. Poblete,Analysis of an Adaptive Algorithm to Find the Two Nearest Neighbors.,2001,29,Algorithmica,1,db/journals/algorithmica/algorithmica29.html#Poblete01,https://doi.org/10.1007/BF02679620 +Torben Hagerup,Fast Integer Merging on the EREW PRAM.,1997,17,Algorithmica,1,db/journals/algorithmica/algorithmica17.html#HagerupK97,https://doi.org/10.1007/BF02523238 +Nikhil Bansal,Deterministic Discrepancy Minimization.,2013,67,Algorithmica,4,db/journals/algorithmica/algorithmica67.html#BansalS13,https://doi.org/10.1007/s00453-012-9728-1 +D. T. Lee,Complexity of Some Laction Problems.,1986,1,Algorithmica,2,db/journals/algorithmica/algorithmica1.html#LeeW86,https://doi.org/10.1007/BF01840442 +M. Ziaur Rahman,Integer Representation and Counting in the Bit Probe Model.,2010,56,Algorithmica,1,db/journals/algorithmica/algorithmica56.html#RahmanM10,https://doi.org/10.1007/s00453-008-9247-2 +Steven Skiena,Problems in Geometric Probing.,1989,4,Algorithmica,4,db/journals/algorithmica/algorithmica4.html#Skiena89,https://doi.org/10.1007/BF01553911 +Jianxin Wang,A Practical Exact Algorithm for the Individual Haplotyping Problem MEC/GI.,2010,56,Algorithmica,3,db/journals/algorithmica/algorithmica56.html#WangXC10,https://doi.org/10.1007/s00453-009-9288-1 +Hassan AbouEisha,Upper Domination: Towards a Dichotomy Through Boundary Properties.,2018,80,Algorithmica,10,db/journals/algorithmica/algorithmica80.html#AbouEishaHLMRZ18,https://doi.org/10.1007/s00453-017-0346-9 +Scot W. Hornick,On Problem Transformability in VLSI.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#HornickS87,https://doi.org/10.1007/BF01840352 +Alok Aggarwal,Geometric Applications of a Matrix-Searching Algorithm.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#AggarwalKMSW87,https://doi.org/10.1007/BF01840359 +Fatemeh Rajabi-Alni,An O(n2) Algorithm for the Limited-Capacity Many-to-Many Point Matching in One Dimension.,2016,76,Algorithmica,2,db/journals/algorithmica/algorithmica76.html#Rajabi-AlniB16,https://doi.org/10.1007/s00453-015-0044-4 +David Eppstein,From Discrepancy to Majority.,2018,80,Algorithmica,4,db/journals/algorithmica/algorithmica80.html#EppsteinH18,https://doi.org/10.1007/s00453-017-0303-7 +David Peleg,Relaxed Spanners for Directed Disk Graphs.,2013,65,Algorithmica,1,db/journals/algorithmica/algorithmica65.html#PelegR13,https://doi.org/10.1007/s00453-011-9580-8 +Annette Ebbers-Baumann,The Geometric Dilation of Finite Point Sets.,2006,44,Algorithmica,2,db/journals/algorithmica/algorithmica44.html#Ebbers-BaumannGK06,https://doi.org/10.1007/s00453-005-1203-9 +Steven Fortune,A Sweepline Algorithm for Voronoi Diagrams.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#Fortune87,https://doi.org/10.1007/BF01840357 +Gonzalo Navarro,New Techniques for Regular Expression Searching.,2005,41,Algorithmica,2,db/journals/algorithmica/algorithmica41.html#NavarroR04,https://doi.org/10.1007/s00453-004-1120-3 +Sergei Bespamyatnikh,On Constructing Minimum Spanning Trees in Rkl.,1997,18,Algorithmica,4,db/journals/algorithmica/algorithmica18.html#Bespamyatnikh97,https://doi.org/10.1007/PL00009170 +Jean Cardinal,Tight Results on Minimum Entropy Set Cover.,2008,51,Algorithmica,1,db/journals/algorithmica/algorithmica51.html#CardinalFJ08,https://doi.org/10.1007/s00453-007-9076-8 +Baruch Awerbuch,An Online Algorithm for the Dynamic Maximal Dense Tree Problem.,2002,32,Algorithmica,4,db/journals/algorithmica/algorithmica32.html#AwerbuchS02,https://doi.org/10.1007/s00453-001-0086-7 +Alexander E. Holroyd,Shorthand Universal Cycles for Permutations.,2012,64,Algorithmica,2,db/journals/algorithmica/algorithmica64.html#HolroydRW12,https://doi.org/10.1007/s00453-011-9544-z +Annamária Kovács,New Approximation Bounds for Lpt Scheduling.,2010,57,Algorithmica,2,db/journals/algorithmica/algorithmica57.html#Kovacs10,https://doi.org/10.1007/s00453-008-9224-9 +Michael Huber 0002,Efficient Two-Stage Group Testing Algorithms for Genetic Screening.,2013,67,Algorithmica,3,db/journals/algorithmica/algorithmica67.html#Huber13,https://doi.org/10.1007/s00453-013-9791-2 +Kuo-Hui Tsai,k Best Cuts for Circular-Arc Graphs.,1997,18,Algorithmica,2,db/journals/algorithmica/algorithmica18.html#TsaiL97,https://doi.org/10.1007/BF02526033 +Alberto L. Sangiovanni-Vincentelli,Editor's Foreword.,1991,6,Algorithmica,3,db/journals/algorithmica/algorithmica6.html#Sangiovanni-Vincentelli91,https://doi.org/10.1007/BF01759048 +Guy Even,Approximating Minimum Feedback Sets and Multicuts in Directed Graphs.,1998,20,Algorithmica,2,db/journals/algorithmica/algorithmica20.html#EvenNSS98,https://doi.org/10.1007/PL00009191 +Bram de Jager,VISOR: Vast Independence System Optimization Routine.,2001,30,Algorithmica,4,db/journals/algorithmica/algorithmica30.html#JagerB01,https://doi.org/10.1007/s00453-001-0030-x +Ghurumuruhan Ganesan,Stretch and Diameter in Random Geometric Graphs.,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#Ganesan18,https://doi.org/10.1007/s00453-016-0253-5 +Yasuaki Kobayashi,A Fast and Simple Subexponential Fixed Parameter Algorithm for One-Sided Crossing Minimization.,2015,72,Algorithmica,3,db/journals/algorithmica/algorithmica72.html#KobayashiT15,https://doi.org/10.1007/s00453-014-9872-x +Gopal Pandurangan,A Universal Online Caching Algorithm Based on Pattern Matching.,2010,57,Algorithmica,1,db/journals/algorithmica/algorithmica57.html#PanduranganS10,https://doi.org/10.1007/s00453-008-9196-9 +Xin He,Efficient Parallel and Sequential Algorithms for 4-Coloring Perfect Planar Graphs.,1990,5,Algorithmica,4,db/journals/algorithmica/algorithmica5.html#He90,https://doi.org/10.1007/BF01840403 +Anna R. Karlin,Dynamic TCP Acknowledgment and Other Stories about e/(e-1).,2003,36,Algorithmica,3,db/journals/algorithmica/algorithmica36.html#KarlinKR03, +Sumedh Tirodkar,On the Approximability of the Minimum Rainbow Subgraph Problem and Other Related Problems.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#TirodkarV17,https://doi.org/10.1007/s00453-017-0278-4 +Philip N. Klein,A Fully Dynamic Approximation Scheme for Shortest Paths in Planar Graphs.,1998,22,Algorithmica,3,db/journals/algorithmica/algorithmica22.html#KleinS98,https://doi.org/10.1007/PL00009223 +Amitai Armon,Multicriteria Global Minimum Cuts.,2006,46,Algorithmica,1,db/journals/algorithmica/algorithmica46.html#ArmonZ06,https://doi.org/10.1007/s00453-006-0068-x +Kazuhisa Makino,Max- and Min-Neighborhood Monopolies.,2002,34,Algorithmica,3,db/journals/algorithmica/algorithmica34.html#MakinoYK02,https://doi.org/10.1007/s00453-002-0963-8 +Morten Skaarup Jensen,Optimality in External Memory Hashing.,2008,52,Algorithmica,3,db/journals/algorithmica/algorithmica52.html#JensenP08,https://doi.org/10.1007/s00453-007-9155-x +Stephan Eidenbenz,Inapproximability Results for Guarding Polygons and Terrains.,2001,31,Algorithmica,1,db/journals/algorithmica/algorithmica31.html#EidenbenzSW01,https://doi.org/10.1007/s00453-001-0040-8 +Hans Rohnert,Moving a Disc Between Polygons.,1991,6,Algorithmica,2,db/journals/algorithmica/algorithmica6.html#Rohnert91,https://doi.org/10.1007/BF01759040 +Hans L. Bodlaender,Treewidth Lower Bounds with Brambles.,2008,51,Algorithmica,1,db/journals/algorithmica/algorithmica51.html#BodlaenderGK08,https://doi.org/10.1007/s00453-007-9056-z +Zhi-Zhong Chen,An Approximation Algorithm for the Minimum Co-Path Set Problem.,2011,60,Algorithmica,4,db/journals/algorithmica/algorithmica60.html#ChenLW11a,https://doi.org/10.1007/s00453-010-9389-x +Jianer Chen,Using Nondeterminism to Design Efficient Deterministic Algorithms.,2004,40,Algorithmica,2,db/journals/algorithmica/algorithmica40.html#ChenFJK04,https://doi.org/10.1007/s00453-004-1096-z +Rasmus Resen Amossen,Better Size Estimation for Sparse Matrix Products.,2014,69,Algorithmica,3,db/journals/algorithmica/algorithmica69.html#AmossenCP14,https://doi.org/10.1007/s00453-012-9692-9 +Sanjeev Mahajan,Solving Some Discrepancy Problems in NC.,2001,29,Algorithmica,3,db/journals/algorithmica/algorithmica29.html#MahajanRS01,https://doi.org/10.1007/s004530010046 +Amotz Bar-Noy,Scheduling Techniques for Media-on-Demand.,2008,52,Algorithmica,4,db/journals/algorithmica/algorithmica52.html#Bar-NoyLT08,https://doi.org/10.1007/s00453-007-9052-3 +Markus E. Nebel,Analysis of Pivot Sampling in Dual-Pivot Quicksort: A Holistic Analysis of Yaroslavskiy's Partitioning Scheme.,2016,75,Algorithmica,4,db/journals/algorithmica/algorithmica75.html#NebelWM16,https://doi.org/10.1007/s00453-015-0041-7 +Maxim Sviridenko,Best Possible Approximation Algorithm for MAX SAT with Cardinality Constraint.,2001,30,Algorithmica,3,db/journals/algorithmica/algorithmica30.html#Sviridenko01,https://doi.org/10.1007/s00453-001-0019-5 +Prosenjit Bose,Characterizing Proximity Trees.,1996,16,Algorithmica,1,db/journals/algorithmica/algorithmica16.html#BoseLL96,https://doi.org/10.1007/BF02086609 +Hans L. Bodlaender,Erratum to: Editorial.,2015,73,Algorithmica,4,db/journals/algorithmica/algorithmica73.html#BodlaenderHI15a,https://doi.org/10.1007/s00453-015-0091-x +Nicolas Bonichon,Convex Drawings of 3-Connected Plane Graphs.,2007,47,Algorithmica,4,db/journals/algorithmica/algorithmica47.html#BonichonFM07,https://doi.org/10.1007/s00453-006-0177-6 +Björn Brodén,Online and Offline Algorithms for the Time-Dependent TSP with Time Zones.,2004,39,Algorithmica,4,db/journals/algorithmica/algorithmica39.html#BrodenHN04,https://doi.org/10.1007/s00453-004-1088-z +Yossi Azar,Scheduling with Deadlines and Buffer Management with Processing Requirements.,2017,78,Algorithmica,4,db/journals/algorithmica/algorithmica78.html#AzarG17,https://doi.org/10.1007/s00453-016-0257-1 +Ernst W. Mayr,Optimal Tree Constraction and Term Matching on the Hypercube and Related Networks.,1997,18,Algorithmica,3,db/journals/algorithmica/algorithmica18.html#MayrW97,https://doi.org/10.1007/PL00009165 +Michael Paterakis,A Full Sensing Window Random-Access Algorithm for Messages with Strict Delay Constraints.,1989,4,Algorithmica,3,db/journals/algorithmica/algorithmica4.html#PaterakisGP89,https://doi.org/10.1007/BF01553894 +Spyros C. Kontogiannis,Well Supported Approximate Equilibria in Bimatrix Games.,2010,57,Algorithmica,4,db/journals/algorithmica/algorithmica57.html#KontogiannisS10,https://doi.org/10.1007/s00453-008-9227-6 +Johannes Fischer 0001,Lempel-Ziv Factorization Powered by Space Efficient Suffix Trees.,2018,80,Algorithmica,7,db/journals/algorithmica/algorithmica80.html#FischerIKS18,https://doi.org/10.1007/s00453-017-0333-1 +Andreas Emil Feldmann,An O(n4) Time Algorithm to Compute the Bisection Width of Solid Grid Graphs.,2015,71,Algorithmica,1,db/journals/algorithmica/algorithmica71.html#FeldmannW15,https://doi.org/10.1007/s00453-014-9928-y +Bundit Laekhanukit,An Improved Approximation Algorithm for the Minimum Cost Subset k-Connected Subgraph Problem.,2015,72,Algorithmica,3,db/journals/algorithmica/algorithmica72.html#Laekhanukit15,https://doi.org/10.1007/s00453-014-9869-5 +Diego Arroyuelo,Succinct Dynamic Cardinal Trees.,2016,74,Algorithmica,2,db/journals/algorithmica/algorithmica74.html#ArroyueloDS16,https://doi.org/10.1007/s00453-015-9969-x +Toshimasa Ishii,Augmenting Edge-Connectivity between Vertex Subsets.,2014,69,Algorithmica,1,db/journals/algorithmica/algorithmica69.html#IshiiM14,https://doi.org/10.1007/s00453-012-9724-5 +András Faragó,On the Fundamental Limits of Topology Control in Ad Hoc Networks.,2007,49,Algorithmica,4,db/journals/algorithmica/algorithmica49.html#Farago07,https://doi.org/10.1007/s00453-007-9078-6 +Pietro Simone Oliveto,How to Escape Local Optima in Black Box Optimisation: When Non-elitism Outperforms Elitism.,2018,80,Algorithmica,5,db/journals/algorithmica/algorithmica80.html#OlivetoPHST18,https://doi.org/10.1007/s00453-017-0369-2 +Leo van Iersel,Constructing the Simplest Possible Phylogenetic Network from Triplets.,2011,60,Algorithmica,2,db/journals/algorithmica/algorithmica60.html#IerselK11,https://doi.org/10.1007/s00453-009-9333-0 +Daniel J. Rosenkrantz,Efficient Construction of Minimum Makespan Schedules for Tasks with a Fixed Number of Distinct Execution Times.,2001,30,Algorithmica,1,db/journals/algorithmica/algorithmica30.html#RosenkrantzYR01,https://doi.org/10.1007/s004530010079 +Joan Boyar,Batch Coloring of Graphs.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#BoyarEFLL18,https://doi.org/10.1007/s00453-017-0386-1 +Benjamin A. Burton,Searching a Bitstream in Linear Time for the Longest Substring of Any Given Density.,2011,61,Algorithmica,3,db/journals/algorithmica/algorithmica61.html#Burton11,https://doi.org/10.1007/s00453-010-9424-y +Eric Ruppert,Finding the k Shortest Paths in Parallel.,2000,28,Algorithmica,2,db/journals/algorithmica/algorithmica28.html#Ruppert00,https://doi.org/10.1007/s004530010038 +Jochen Alber,Fixed Parameter Algorithms for DOMINATING SET and Related Problems on Planar Graphs.,2002,33,Algorithmica,4,db/journals/algorithmica/algorithmica33.html#AlberBFKN02,https://doi.org/10.1007/s00453-001-0116-5 +Michal Malafiejski,Sum Coloring of Bipartite Graphs with Bounded Degree.,2004,40,Algorithmica,4,db/journals/algorithmica/algorithmica40.html#MalafiejskiGJK04,https://doi.org/10.1007/s00453-004-1111-4 +Victor Y. Pan,Certification of Numerical Computation of the Sign of the Determinant of a Matrix.,2001,30,Algorithmica,4,db/journals/algorithmica/algorithmica30.html#PanY01,https://doi.org/10.1007/s00453-001-0032-8 +Matthew Andrews,New Algorithms for Disk Scheduling.,2002,32,Algorithmica,2,db/journals/algorithmica/algorithmica32.html#AndrewsBZ02,https://doi.org/10.1007/s00453-001-0071-1 +Sander P. A. Alewijnse,Computing the Greedy Spanner in Linear Space.,2015,73,Algorithmica,3,db/journals/algorithmica/algorithmica73.html#AlewijnseBBB15,https://doi.org/10.1007/s00453-015-0001-2 +Quentin F. Stout,Isotonic Regression via Partitioning.,2013,66,Algorithmica,1,db/journals/algorithmica/algorithmica66.html#Stout13,https://doi.org/10.1007/s00453-012-9628-4 +Ovidiu Daescu,New Results on Path Approximation.,2004,38,Algorithmica,1,db/journals/algorithmica/algorithmica38.html#Daescu03,https://doi.org/10.1007/s00453-003-1046-1 +Boris Aronov,Peeling Meshed Potatoes.,2011,60,Algorithmica,2,db/journals/algorithmica/algorithmica60.html#AronovKLS11,https://doi.org/10.1007/s00453-009-9346-8 +Daniel Panario,Exact Largest and Smallest Size of Components.,2001,31,Algorithmica,3,db/journals/algorithmica/algorithmica31.html#PanarioR01a,https://doi.org/10.1007/s00453-001-0047-1 +Weidong Li 0002,A Polynomial Time Approximation Scheme for the Closest Shared Center Problem.,2017,77,Algorithmica,1,db/journals/algorithmica/algorithmica77.html#LiWC17,https://doi.org/10.1007/s00453-015-0057-z +Nayantara Bhatnagar,Random Bichromatic Matchings.,2008,50,Algorithmica,4,db/journals/algorithmica/algorithmica50.html#BhatnagarRVV08,https://doi.org/10.1007/s00453-007-9096-4 +Marcel Wild,Counting or Producing All Fixed Cardinality Transversals.,2014,69,Algorithmica,1,db/journals/algorithmica/algorithmica69.html#Wild14,https://doi.org/10.1007/s00453-012-9716-5 +Alessio Orlandi,Space-Efficient Substring Occurrence Estimation.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#OrlandiV16,https://doi.org/10.1007/s00453-014-9936-y +Frédéric Magniez,Quantum Complexity of Testing Group Commutativity.,2007,48,Algorithmica,3,db/journals/algorithmica/algorithmica48.html#MagniezN07,https://doi.org/10.1007/s00453-007-0057-8 +Chee-Keng Yap,Preface Special Issue on Robotics.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#Yap87,https://doi.org/10.1007/BF01840367 +Holger Dell,AND-Compression of NP-Complete Problems: Streamlined Proof and Minor Observations.,2016,75,Algorithmica,2,db/journals/algorithmica/algorithmica75.html#Dell16,https://doi.org/10.1007/s00453-015-0110-y +Yachyang Sun,Floorplanning by Graph Dualization: L-shaped Modules.,1993,10,Algorithmica,6,db/journals/algorithmica/algorithmica10.html#SunS93,https://doi.org/10.1007/BF01891831 +Marcus Brazil,Canonical Forms and Algorithms for Steiner Trees in Uniform Orientation Metrics.,2006,44,Algorithmica,4,db/journals/algorithmica/algorithmica44.html#BrazilTWZ06,https://doi.org/10.1007/s00453-005-1178-6 +Karl Bringmann,Random Shortest Paths: Non-Euclidean Instances for Metric Optimization Problems.,2015,73,Algorithmica,1,db/journals/algorithmica/algorithmica73.html#BringmannEMR15,https://doi.org/10.1007/s00453-014-9901-9 +Susanne Albers,Exploring Unknown Environments with Obstacles.,2002,32,Algorithmica,1,db/journals/algorithmica/algorithmica32.html#AlbersKS02,https://doi.org/10.1007/s00453-001-0067-x +Emeric Gioan,Practical and Efficient Circle Graph Recognition.,2014,69,Algorithmica,4,db/journals/algorithmica/algorithmica69.html#GioanPTC14,https://doi.org/10.1007/s00453-013-9745-8 +Timo Kötzing,Concentration of First Hitting Times Under Additive Drift.,2016,75,Algorithmica,3,db/journals/algorithmica/algorithmica75.html#Kotzing16,https://doi.org/10.1007/s00453-015-0048-0 +Huaming Zhang,Planar Polyline Drawings via Graph Transformations.,2010,57,Algorithmica,2,db/journals/algorithmica/algorithmica57.html#Zhang10,https://doi.org/10.1007/s00453-008-9215-x +Chandrajit L. Bajaj,Parameterization in Finite Precision.,2000,27,Algorithmica,1,db/journals/algorithmica/algorithmica27.html#BajajR00,https://doi.org/10.1007/s004530010006 +Yong Zhang 0001,A 1-Local Asymptotic 13/9-Competitive Algorithm for Multicoloring Hexagonal Graphs.,2009,54,Algorithmica,4,db/journals/algorithmica/algorithmica54.html#ZhangCZ09,https://doi.org/10.1007/s00453-008-9203-1 +Zhi-Zhong Chen,The Parameterized Complexity of the Shared Center Problem.,2014,69,Algorithmica,2,db/journals/algorithmica/algorithmica69.html#ChenMW14,https://doi.org/10.1007/s00453-012-9730-7 +Lars Arge,Optimal External Memory Planar Point Enclosure.,2009,54,Algorithmica,3,db/journals/algorithmica/algorithmica54.html#ArgeSY09,https://doi.org/10.1007/s00453-007-9126-2 +Danny Z. Chen,A New Algorithm for a Field Splitting Problem in Intensity-Modulated Radiation Therapy.,2011,61,Algorithmica,3,db/journals/algorithmica/algorithmica61.html#ChenEW11,https://doi.org/10.1007/s00453-010-9429-6 +Valerie King,A Simpler Minimum Spanning Tree Verification Algorithm.,1997,18,Algorithmica,2,db/journals/algorithmica/algorithmica18.html#King97,https://doi.org/10.1007/BF02526037 +Evanthia Papadopoulou,The Hausdorff Voronoi Diagram of Point Clusters in the Plane.,2004,40,Algorithmica,2,db/journals/algorithmica/algorithmica40.html#Papadopoulou04,https://doi.org/10.1007/s00453-004-1095-0 +Jeffrey D. Ullman,Parallel Complexity of Logical Query Programs.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#UllmanG88,https://doi.org/10.1007/BF01762108 +Joseph Cheriyan,Approximating Minimum-Cost Connected T-Joins.,2015,72,Algorithmica,1,db/journals/algorithmica/algorithmica72.html#CheriyanFG15,https://doi.org/10.1007/s00453-013-9850-8 +Josep Díaz,Approximating Fixation Probabilities in the Generalized Moran Process.,2014,69,Algorithmica,1,db/journals/algorithmica/algorithmica69.html#DiazGMRSS14,https://doi.org/10.1007/s00453-012-9722-7 +Sergio Cabello,Algorithmic Aspects of Proportional Symbol Maps.,2010,58,Algorithmica,3,db/journals/algorithmica/algorithmica58.html#CabelloHKS10,https://doi.org/10.1007/s00453-009-9281-8 +Seok-Hee Hong,Extending Steinitz's Theorem to Upward Star-Shaped Polyhedra and Spherical Polyhedra.,2011,61,Algorithmica,4,db/journals/algorithmica/algorithmica61.html#HongN11a,https://doi.org/10.1007/s00453-011-9570-x +Marcin Mucha,Maximum Matchings in Planar Graphs via Gaussian Elimination.,2006,45,Algorithmica,1,db/journals/algorithmica/algorithmica45.html#MuchaS06,https://doi.org/10.1007/s00453-005-1187-5 +J. Friedman,Computing Betti Numbers via Combinatiorial Laplacians.,1998,21,Algorithmica,4,db/journals/algorithmica/algorithmica21.html#Friedman98,https://doi.org/10.1007/PL00009218 +Ittai Abraham,Local Embeddings of Metric Spaces.,2015,72,Algorithmica,2,db/journals/algorithmica/algorithmica72.html#AbrahamBN15,https://doi.org/10.1007/s00453-013-9864-2 +Lenwood S. Heath,Sorting by Short Block-Moves.,2000,28,Algorithmica,3,db/journals/algorithmica/algorithmica28.html#HeathV00,https://doi.org/10.1007/s004530010041 +Sandeep N. Bhatt,Partitioning Circuits for Improved Testability.,1991,6,Algorithmica,1,db/journals/algorithmica/algorithmica6.html#BhattCR91,https://doi.org/10.1007/BF01759033 +Ashley Montanaro,Quantum Pattern Matching Fast on Average.,2017,77,Algorithmica,1,db/journals/algorithmica/algorithmica77.html#Montanaro17,https://doi.org/10.1007/s00453-015-0060-4 +Shai Ben-David,A New Measure for the Study of On-Line Algorithms.,1994,11,Algorithmica,1,db/journals/algorithmica/algorithmica11.html#Ben-DavidB94,https://doi.org/10.1007/BF01294264 +Leah Epstein,Approximation Schemes for Scheduling on Uniformly Related and Identical Parallel Machines.,2004,39,Algorithmica,1,db/journals/algorithmica/algorithmica39.html#EpsteinS04,https://doi.org/10.1007/s00453-003-1077-7 +Osamu Watanabe 0001,Message Passing Algorithms for MLS-3LIN Problem.,2013,66,Algorithmica,4,db/journals/algorithmica/algorithmica66.html#Watanabe13,https://doi.org/10.1007/s00453-013-9762-7 +Evangelos Bampas,Robustness of the Rotor-Router Mechanism.,2017,78,Algorithmica,3,db/journals/algorithmica/algorithmica78.html#BampasGHIKKR17,https://doi.org/10.1007/s00453-016-0179-y +Ilya Baran,Subquadratic Algorithms for 3SUM.,2008,50,Algorithmica,4,db/journals/algorithmica/algorithmica50.html#BaranDP08,https://doi.org/10.1007/s00453-007-9036-3 +Vladimir Grebinski,Optimal Reconstruction of Graphs under the Additive Model.,2000,28,Algorithmica,1,db/journals/algorithmica/algorithmica28.html#GrebinskiK00,https://doi.org/10.1007/s004530010033 +Madhukar R. Korupolu,Quasi-Fully Dynamic Algorithms for Two-Connectivity and Cycle Equivalence.,2002,33,Algorithmica,2,db/journals/algorithmica/algorithmica33.html#KorupoluR02,https://doi.org/10.1007/s00453-001-0108-5 +Uriel Feige,The Ordered Covering Problem.,2018,80,Algorithmica,10,db/journals/algorithmica/algorithmica80.html#FeigeH18,https://doi.org/10.1007/s00453-017-0357-6 +Edward G. Coffman Jr.,Packings in Two Dimensions: Asymptotic Average-Case Analysis of Algorithms.,1993,9,Algorithmica,3,db/journals/algorithmica/algorithmica9.html#CoffmanS93,https://doi.org/10.1007/BF01190899 +Timo Kötzing,Preface to the Special Issue on Theory of Genetic and Evolutionary Computation.,2018,80,Algorithmica,5,db/journals/algorithmica/algorithmica80.html#KotzingS18,https://doi.org/10.1007/s00453-017-0379-0 +Anil Maheshwari,I/O-Efficient Algorithms for Graphs of Bounded Treewidth.,2009,54,Algorithmica,3,db/journals/algorithmica/algorithmica54.html#MaheshwariZ09,https://doi.org/10.1007/s00453-007-9131-5 +Leonidas J. Guibas,Toward Unsupervised Segmentation of Semi-Rigid Low-Resolution Molecular Surfaces.,2007,48,Algorithmica,4,db/journals/algorithmica/algorithmica48.html#GuibasW07,https://doi.org/10.1007/s00453-007-0151-y +Adrian Dumitrescu,Sweeping Points.,2011,60,Algorithmica,3,db/journals/algorithmica/algorithmica60.html#DumitrescuJ11,https://doi.org/10.1007/s00453-009-9364-6 +Ami Litman,On Centralized Smooth Scheduling.,2011,60,Algorithmica,2,db/journals/algorithmica/algorithmica60.html#LitmanM11,https://doi.org/10.1007/s00453-009-9360-x +Abbas Mehrabian,It's a Small World for Random Surfers.,2016,76,Algorithmica,2,db/journals/algorithmica/algorithmica76.html#MehrabianW16,https://doi.org/10.1007/s00453-015-0034-6 +Peichen Pan,Area Minimization for Hierarchical Floorplans.,1996,15,Algorithmica,6,db/journals/algorithmica/algorithmica15.html#PanSL96,https://doi.org/10.1007/BF01940881 +Wing-Kai Hon,Compressing Dictionary Matching Index via Sparsification Technique.,2015,72,Algorithmica,2,db/journals/algorithmica/algorithmica72.html#HonKLSTTV15,https://doi.org/10.1007/s00453-013-9863-3 +John Langford 0001,Maintaining Equilibria During Exploration in Sponsored Search Auctions.,2010,58,Algorithmica,4,db/journals/algorithmica/algorithmica58.html#LangfordLVW10,https://doi.org/10.1007/s00453-009-9318-z +Ivan D. Baev,An Experimental Study of Algorithms for Weighted Completion Time Scheduling.,2002,33,Algorithmica,1,db/journals/algorithmica/algorithmica33.html#BaevME02,https://doi.org/10.1007/s00453-001-0103-x +Juraj Hromkovic,Optimal Algorithms for Dissemination of Information in Some Interconnection Networks.,1993,10,Algorithmica,1,db/journals/algorithmica/algorithmica10.html#HromkovicJM93,https://doi.org/10.1007/BF01908630 +Rida A. Bazzi,The Complexity of Almost-Optimal Simultaneous Coordination.,1997,17,Algorithmica,3,db/journals/algorithmica/algorithmica17.html#BazziN97,https://doi.org/10.1007/BF02523194 +Uriel Feige,Optimization with Uniform Size Queries.,2017,78,Algorithmica,1,db/journals/algorithmica/algorithmica78.html#FeigeT17,https://doi.org/10.1007/s00453-016-0162-7 +Reuven Bar-Yehuda,Variations on Ray Shooting.,1994,11,Algorithmica,2,db/journals/algorithmica/algorithmica11.html#Bar-YehudaF94,https://doi.org/10.1007/BF01182772 +Anna Großwendt,Improved Analysis of Complete-Linkage Clustering.,2017,78,Algorithmica,4,db/journals/algorithmica/algorithmica78.html#GrosswendtR17,https://doi.org/10.1007/s00453-017-0284-6 +Mark Allen Weiss,Shellsort with a Constant Number of Increments.,1996,16,Algorithmica,6,db/journals/algorithmica/algorithmica16.html#Weiss96,https://doi.org/10.1007/BF01944355 +Matthew Andrews,Improved Bounds for On-Line Load Balancing.,1999,23,Algorithmica,4,db/journals/algorithmica/algorithmica23.html#AndrewsGZ99,https://doi.org/10.1007/PL00009263 +Nan Liu,A 1.5-Approximation Algorithm for Two-Sided Scaffold Filling.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#LiuZJZ16,https://doi.org/10.1007/s00453-014-9938-9 +Tobias Harks,Resource Buying Games.,2014,70,Algorithmica,3,db/journals/algorithmica/algorithmica70.html#HarksP14,https://doi.org/10.1007/s00453-014-9876-6 +Mashhood Ishaque,Relative Convex Hulls in Semi-Dynamic Arrangements.,2014,68,Algorithmica,2,db/journals/algorithmica/algorithmica68.html#IshaqueT14,https://doi.org/10.1007/s00453-012-9679-6 +Petr A. Golovach,Modifying a Graph Using Vertex Elimination.,2015,72,Algorithmica,1,db/journals/algorithmica/algorithmica72.html#GolovachHHMPP15,https://doi.org/10.1007/s00453-013-9848-2 +Sam Greenberg,Slow Mixing of Markov Chains Using Fault Lines and Fat Contours.,2010,58,Algorithmica,4,db/journals/algorithmica/algorithmica58.html#GreenbergR10,https://doi.org/10.1007/s00453-008-9246-3 +Alexander Hall,An FPTAS for Quickest Multicommodity Flows with Inflow-Dependent Transit Times.,2007,47,Algorithmica,3,db/journals/algorithmica/algorithmica47.html#HallLS07,https://doi.org/10.1007/s00453-006-0196-3 +Yuren Zhou,Performance Analysis of the (1+1) Evolutionary Algorithm for the Multiprocessor Scheduling Problem.,2015,73,Algorithmica,1,db/journals/algorithmica/algorithmica73.html#ZhouZW15,https://doi.org/10.1007/s00453-014-9898-0 +Liang-Fang Chao,Finding All Minimal Shapes in a Routing Channel.,1998,21,Algorithmica,2,db/journals/algorithmica/algorithmica21.html#ChaoL98,https://doi.org/10.1007/PL00009213 +Hristo Djidjev,Partitioning Planar Graphs with Vertex Costs: Algorithms and Applications.,2000,28,Algorithmica,1,db/journals/algorithmica/algorithmica28.html#Djidjev00,https://doi.org/10.1007/s004530010031 +Michael A. Bekos,The Book Thickness of 1-Planar Graphs is Constant.,2017,79,Algorithmica,2,db/journals/algorithmica/algorithmica79.html#BekosBKR17,https://doi.org/10.1007/s00453-016-0203-2 +Kenta Kitsunai,Computing Directed Pathwidth in O(1.89n) Time.,2016,75,Algorithmica,1,db/journals/algorithmica/algorithmica75.html#KitsunaiKKTT16,https://doi.org/10.1007/s00453-015-0015-9 +Mehul Bhatt,MOVE: A Distributed Framework for Materialized Ontology View Extraction.,2006,45,Algorithmica,3,db/journals/algorithmica/algorithmica45.html#BhattFWRT06,https://doi.org/10.1007/s00453-006-1221-2 +Eun Jung Kim 0002,A Polynomial Kernel for Block Graph Deletion.,2017,79,Algorithmica,1,db/journals/algorithmica/algorithmica79.html#KimK17,https://doi.org/10.1007/s00453-017-0316-2 +Vladimir J. Lumelsky,Path-Planning Strategies for a Point Mobile Automaton Moving Amidst Unknown Obstacles of Arbitrary Shape.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#LumelskyS87,https://doi.org/10.1007/BF01840369 +Shiri Chechik,Secluded Connectivity Problems.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#ChechikJPP17,https://doi.org/10.1007/s00453-016-0222-z +Christopher S. Martin,Minimizing Latency of Capacitated k-Tours.,2018,80,Algorithmica,8,db/journals/algorithmica/algorithmica80.html#MartinS18,https://doi.org/10.1007/s00453-017-0337-x +Oswin Aichholzer,Geodesic Order Types.,2014,70,Algorithmica,1,db/journals/algorithmica/algorithmica70.html#AichholzerKPV14,https://doi.org/10.1007/s00453-013-9818-8 +Jianer Chen,Approximating Maximum Agreement Forest on Multiple Binary Trees.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#ChenSW16,https://doi.org/10.1007/s00453-015-0087-6 +Hans Kellerer,Fully Polynomial Approximation Schemes for a Symmetric Quadratic Knapsack Problem and its Scheduling Applications.,2010,57,Algorithmica,4,db/journals/algorithmica/algorithmica57.html#KellererS10,https://doi.org/10.1007/s00453-008-9248-1 +Marek Cygan,Solving the 2-Disjoint Connected Subgraphs Problem Faster than 2 n.,2014,70,Algorithmica,2,db/journals/algorithmica/algorithmica70.html#CyganPPW14a,https://doi.org/10.1007/s00453-013-9796-x +Andreas Crauser,A Theoretical and Experimental Study on the Construction of Suffix Arrays in External Memory.,2002,32,Algorithmica,1,db/journals/algorithmica/algorithmica32.html#CrauserF02,https://doi.org/10.1007/s00453-001-0051-5 +Andrew M. Liao,Three Priority Queue Applications Revisited.,1992,7,Algorithmica,4,db/journals/algorithmica/algorithmica7.html#Liao92,https://doi.org/10.1007/BF01758771 +Fedor V. Fomin,Branch and Recharge: Exact Algorithms for Generalized Domination.,2011,61,Algorithmica,2,db/journals/algorithmica/algorithmica61.html#FominGKKL11,https://doi.org/10.1007/s00453-010-9418-9 +Alok Aggarwal,Parallel Searching in Generalized Monge Arrays.,1997,19,Algorithmica,3,db/journals/algorithmica/algorithmica19.html#AggarwalKPS97,https://doi.org/10.1007/PL00009175 +Tomasz Kociumaka,Fast Algorithm for Partial Covers in Words.,2015,73,Algorithmica,1,db/journals/algorithmica/algorithmica73.html#KociumakaPRRW15,https://doi.org/10.1007/s00453-014-9915-3 +James Chilson,Parallel Computation of High-Dimensional Robust Correlation and Covariance Matrices.,2006,45,Algorithmica,3,db/journals/algorithmica/algorithmica45.html#ChilsonNWZ06,https://doi.org/10.1007/s00453-006-1219-9 +Abram Magner,Profiles of PATRICIA Tries.,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#MagnerS18,https://doi.org/10.1007/s00453-016-0261-5 +C. G. Lambert,Efficient On-Line Nonparametric Kernel Density Estimation.,1999,25,Algorithmica,1,db/journals/algorithmica/algorithmica25.html#LambertHHG99,https://doi.org/10.1007/PL00009282 +Samir Khuller,Balancing Minimum Spanning Trees and Shortest-Path Trees.,1995,14,Algorithmica,4,db/journals/algorithmica/algorithmica14.html#KhullerRY95,https://doi.org/10.1007/BF01294129 +John L. Nazareth,Homotopy Techniques in Linear Programming.,1986,1,Algorithmica,4,db/journals/algorithmica/algorithmica1.html#Nazareth86,https://doi.org/10.1007/BF01840461 +David P. Dobkin,Primitives for the Manipulation of Three-Dimensional Subdivisions.,1989,4,Algorithmica,1,db/journals/algorithmica/algorithmica4.html#DobkinL89,https://doi.org/10.1007/BF01553877 +Stacey Jeffery,Improving Quantum Query Complexity of Boolean Matrix Multiplication Using Graph Collision.,2016,76,Algorithmica,1,db/journals/algorithmica/algorithmica76.html#JefferyKGM16,https://doi.org/10.1007/s00453-015-9985-x +Panagiotis Alevizos,An Optimal Algorithm for the Boundary of a Cell in a Union of Rays-Corrigendum.,1991,6,Algorithmica,2,db/journals/algorithmica/algorithmica6.html#AlevizosBP91,https://doi.org/10.1007/BF01759047 +Dipen Moitra,Finding a Minimal Cover for Binary Images: An Optimal Parallel Algorithm.,1991,6,Algorithmica,5,db/journals/algorithmica/algorithmica6.html#Moitra91,https://doi.org/10.1007/BF01759065 +Michael Jünger,Practical Performance of Efficient Minimum Cut Algorithms.,2000,26,Algorithmica,1,db/journals/algorithmica/algorithmica26.html#JungerR00,https://doi.org/10.1007/s004539910009 +Gregory B. Sorkin,Efficient Simulated Annealing on Fractal Energy Landscapes.,1991,6,Algorithmica,3,db/journals/algorithmica/algorithmica6.html#Sorkin91,https://doi.org/10.1007/BF01759051 +Prosenjit Bose,Improved Spanning Ratio for Low Degree Plane Spanners.,2018,80,Algorithmica,3,db/journals/algorithmica/algorithmica80.html#BoseHS18,https://doi.org/10.1007/s00453-017-0305-5 +Peter A. Beling,Exact Algorithms for Linear Programming over Algebraic Extensions.,2001,31,Algorithmica,4,db/journals/algorithmica/algorithmica31.html#Beling01,https://doi.org/10.1007/s00453-001-0049-z +Philip N. Strenski,Analysis of Finite Length Annealing Schedules.,1991,6,Algorithmica,3,db/journals/algorithmica/algorithmica6.html#StrenskiK91,https://doi.org/10.1007/BF01759050 +David P. Dobkin,Computing the Intersection-Depth of Polyhedra.,1993,9,Algorithmica,6,db/journals/algorithmica/algorithmica9.html#DobkinHKS93,https://doi.org/10.1007/BF01190153 +Narayan Vikas,Algorithms for Partition of Some Class of Graphs under Compaction and Vertex-Compaction.,2013,67,Algorithmica,2,db/journals/algorithmica/algorithmica67.html#Vikas13,https://doi.org/10.1007/s00453-012-9720-9 +Hee-Kap Ahn,Casting an Object with a Core.,2009,54,Algorithmica,1,db/journals/algorithmica/algorithmica54.html#AhnBCC09,https://doi.org/10.1007/s00453-007-9120-8 +Athanassios Koutsonas,Planar Feedback Vertex Set and Face Cover: Combinatorial Bounds and Subexponential Algorithms.,2011,60,Algorithmica,4,db/journals/algorithmica/algorithmica60.html#KoutsonasT11,https://doi.org/10.1007/s00453-010-9390-4 +Erik D. Demaine,Confluently Persistent Tries for Efficient Version Control.,2010,57,Algorithmica,3,db/journals/algorithmica/algorithmica57.html#DemaineLP10,https://doi.org/10.1007/s00453-008-9274-z +Prasad Tetali,Random Sampling of Euler Tours.,2001,30,Algorithmica,3,db/journals/algorithmica/algorithmica30.html#TetaliV01,https://doi.org/10.1007/s00453-001-0018-6 +Peter Eades,Edge Crossings in Drawings of Bipartite Graphs.,1994,11,Algorithmica,4,db/journals/algorithmica/algorithmica11.html#EadesW94,https://doi.org/10.1007/BF01187020 +Frank K. H. A. Dehne,Efficient Parallel Graph Algorithms for Coarse-Grained Multicomputers and BSP.,2002,33,Algorithmica,2,db/journals/algorithmica/algorithmica33.html#DehneFCSR02,https://doi.org/10.1007/s00453-001-0109-4 +Juha Kärkkäinen,Lempel-Ziv Index for q-Grams.,1998,21,Algorithmica,1,db/journals/algorithmica/algorithmica21.html#KarkkainenS98,https://doi.org/10.1007/PL00009205 +Antonio Fernández 0001,A Timing Assumption and Two t-Resilient Protocols for Implementing an Eventual Leader Service in Asynchronous Shared Memory Systems.,2010,56,Algorithmica,4,db/journals/algorithmica/algorithmica56.html#FernandezJRT10,https://doi.org/10.1007/s00453-008-9190-2 +Vladimir Estivill-Castro,Robust Distance-Based Clustering with Applications to Spatial Data Mining.,2001,30,Algorithmica,2,db/journals/algorithmica/algorithmica30.html#Estivill-CastroH01,https://doi.org/10.1007/s00453-001-0010-1 +Franziska Berger,Minimum Cycle Bases for Network Graphs.,2004,40,Algorithmica,1,db/journals/algorithmica/algorithmica40.html#BergerGV04,https://doi.org/10.1007/s00453-004-1098-x +Hans L. Bodlaender,Computing the Treewidth and the Minimum Fill-In with the Modular Decomposition.,2003,36,Algorithmica,4,db/journals/algorithmica/algorithmica36.html#BodlaenderR03,https://doi.org/10.1007/s00453-003-1026-5 +Ferdinando Cicalese,Decision Trees for Function Evaluation: Simultaneous Optimization of Worst and Expected Cost.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#CicaleseLS17,https://doi.org/10.1007/s00453-016-0225-9 +Hiroshi Nagamochi,A Simplified õ(nm) Time Edge-Splitting Algorithm in Undirected Graphs.,2000,26,Algorithmica,1,db/journals/algorithmica/algorithmica26.html#NagamochiNI00,https://doi.org/10.1007/s004539910004 +Guy de Ghellinck,A Polynomial Newton Method for Linear Programming.,1986,1,Algorithmica,4,db/journals/algorithmica/algorithmica1.html#GhellinckV86,https://doi.org/10.1007/BF01840456 +Bernard Chazelle,Computing on a Free Tree via Complexity-Preserving Mappings.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#Chazelle87a,https://doi.org/10.1007/BF01840366 +Pankaj K. Agarwal,Connected Component and Simple Polygon Intersection Searching.,1996,15,Algorithmica,6,db/journals/algorithmica/algorithmica15.html#AgarwalK96,https://doi.org/10.1007/BF01940884 +Sang Ho Lee,Some Chain Visibility Problems in a Simple Polygon.,1990,5,Algorithmica,4,db/journals/algorithmica/algorithmica5.html#LeeC90,https://doi.org/10.1007/BF01840400 +Jørgen Bang-Jensen,Parameterized Algorithms for Non-separating Trees and Branchings in Digraphs.,2016,76,Algorithmica,1,db/journals/algorithmica/algorithmica76.html#Bang-JensenSS16,https://doi.org/10.1007/s00453-015-0037-3 +Carla D. Savage,Solving Some Combinatorial Problems on Arrays with One-Way Dataflow.,1990,5,Algorithmica,2,db/journals/algorithmica/algorithmica5.html#SavageSP90,https://doi.org/10.1007/BF01840384 +Michael Drmota,An Analytic Approach to the Height of Binary Search Trees.,2001,29,Algorithmica,1,db/journals/algorithmica/algorithmica29.html#Drmota01,https://doi.org/10.1007/BF02679615 +David Manlove,Guest Editorial: Special Issue on Matching Under Preferences.,2010,58,Algorithmica,1,db/journals/algorithmica/algorithmica58.html#ManloveII10,https://doi.org/10.1007/s00453-010-9415-z +Stefano Leonardi,Preface.,2004,40,Algorithmica,4,db/journals/algorithmica/algorithmica40.html#Leonardi04,https://doi.org/10.1007/s00453-004-1109-y +Jannis Bulian,Fixed-Parameter Tractable Distances to Sparse Graph Classes.,2017,79,Algorithmica,1,db/journals/algorithmica/algorithmica79.html#BulianD17,https://doi.org/10.1007/s00453-016-0235-7 +Jianer Chen,Labeled Search Trees and Amortized Analysis: Improved Upper Bounds for NP-Hard Problems.,2005,43,Algorithmica,4,db/journals/algorithmica/algorithmica43.html#ChenKX05,https://doi.org/10.1007/s00453-004-1145-7 +Natalia V. Shakhlevich,Preemptive Scheduling on Uniform Parallel Machines with Controllable Job Processing Times.,2008,51,Algorithmica,4,db/journals/algorithmica/algorithmica51.html#ShakhlevichS08,https://doi.org/10.1007/s00453-007-9091-9 +Shun-Shii Lin,A Pinwheel Scheduler for Three Distinct Numbers with a Tight Schedulability Bound.,1997,19,Algorithmica,4,db/journals/algorithmica/algorithmica19.html#LinL97,https://doi.org/10.1007/PL00009181 +Friedrich Eisenbrand,Multiline Addressing by Network Flow.,2009,53,Algorithmica,4,db/journals/algorithmica/algorithmica53.html#EisenbrandKSX09,https://doi.org/10.1007/s00453-008-9252-5 +Sumanta Guha,Reconstructing Curves without Delaunay Computation.,2005,42,Algorithmica,1,db/journals/algorithmica/algorithmica42.html#GuhaT05,https://doi.org/10.1007/s00453-004-1141-y +Boaz Farbstein,Discounted Reward TSP.,2018,80,Algorithmica,2,db/journals/algorithmica/algorithmica80.html#FarbsteinL18,https://doi.org/10.1007/s00453-016-0264-2 +Takehiro Ito,Route-Enabling Graph Orientation Problems.,2013,65,Algorithmica,2,db/journals/algorithmica/algorithmica65.html#ItoMOTU13,https://doi.org/10.1007/s00453-011-9589-z +V. Kumar,An Approximation Algorithm for Circular Arc Colouring.,2001,30,Algorithmica,3,db/journals/algorithmica/algorithmica30.html#Kumar01,https://doi.org/10.1007/s00453-001-0023-9 +Shirley Halevy,Distribution-Free Connectivity Testing for Sparse Graphs.,2008,51,Algorithmica,1,db/journals/algorithmica/algorithmica51.html#HalevyK08,https://doi.org/10.1007/s00453-007-9054-1 +Yaron I. Gold,A Correction Algorithm for Token-Passing Sequences in Mobile Communication Networks.,1989,4,Algorithmica,3,db/journals/algorithmica/algorithmica4.html#GoldM89,https://doi.org/10.1007/BF01553895 +Yoshiharu Kohayakawa,Multidimensional Cube Packing.,2004,40,Algorithmica,3,db/journals/algorithmica/algorithmica40.html#KohayakawaMRW04,https://doi.org/10.1007/s00453-004-1102-5 +Bjarni V. Halldórsson,Streaming Algorithms for Independent Sets in Sparse Hypergraphs.,2016,76,Algorithmica,2,db/journals/algorithmica/algorithmica76.html#HalldorssonHLS16,https://doi.org/10.1007/s00453-015-0051-5 +Paul Benioff,The Representation of Numbers in Quantum Mechanics.,2002,34,Algorithmica,4,db/journals/algorithmica/algorithmica34.html#Benioff02,https://doi.org/10.1007/s00453-002-0982-5 +Dániel Marx,Cleaning Interval Graphs.,2013,65,Algorithmica,2,db/journals/algorithmica/algorithmica65.html#MarxS13,https://doi.org/10.1007/s00453-011-9588-0 +Uri Zwick,A Slightly Improved Sub-Cubic Algorithm for the All PairsShortest Paths Problem with Real Edge Lengths.,2006,46,Algorithmica,2,db/journals/algorithmica/algorithmica46.html#Zwick06,https://doi.org/10.1007/s00453-005-1199-1 +Luca Trevisan,Approximating Satisfiable Satisfiability Problems.,2000,28,Algorithmica,1,db/journals/algorithmica/algorithmica28.html#Trevisan00a,https://doi.org/10.1007/s004530010035 +Panagiotis Cheilaris,Strong Conflict-Free Coloring for Intervals.,2014,70,Algorithmica,4,db/journals/algorithmica/algorithmica70.html#CheilarisGRS14,https://doi.org/10.1007/s00453-014-9929-x +Noga Alon,On-Line and Off-Line Approximation Algorithms for Vector Covering Problems.,1998,21,Algorithmica,1,db/journals/algorithmica/algorithmica21.html#AlonACESVW98,https://doi.org/10.1007/PL00009203 +Hyeong-Ah Choi,Data Transfers in Networks.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#ChoiH88,https://doi.org/10.1007/BF01762116 +Katerina Asdre,The 1-Fixed-Endpoint Path Cover Problem is Polynomial on Interval Graphs.,2010,58,Algorithmica,3,db/journals/algorithmica/algorithmica58.html#AsdreN10,https://doi.org/10.1007/s00453-009-9292-5 +Chih-En Kuo,Resequencing a Set of Strings Based on a Target String.,2015,72,Algorithmica,2,db/journals/algorithmica/algorithmica72.html#KuoWLK15,https://doi.org/10.1007/s00453-013-9859-z +Ashley Montanaro,On Exact Quantum Query Complexity.,2015,71,Algorithmica,4,db/journals/algorithmica/algorithmica71.html#MontanaroJM15,https://doi.org/10.1007/s00453-013-9826-8 +David P. Dobkin,Searching for Empty Convex Polygons.,1990,5,Algorithmica,4,db/journals/algorithmica/algorithmica5.html#DobkinEO90,https://doi.org/10.1007/BF01840404 +Ferdinando Cicalese,Improved Approximation Algorithms for the Average-Case Tree Searching Problem.,2014,68,Algorithmica,4,db/journals/algorithmica/algorithmica68.html#CicaleseJLM14,https://doi.org/10.1007/s00453-012-9715-6 +Martin Charles Golumbic,Uniquely Restricted Matchings.,2001,31,Algorithmica,2,db/journals/algorithmica/algorithmica31.html#GolumbicHL01,https://doi.org/10.1007/s00453-001-0004-z +Jinhee Chun,Linear Time Algorithm for Approximating a Curve by a Single-Peaked Curve.,2006,44,Algorithmica,2,db/journals/algorithmica/algorithmica44.html#ChunST06,https://doi.org/10.1007/s00453-005-1201-y +Gill Barequet,Efficiently Approximating Polygonal Paths in Three and Higher Dimensions.,2002,33,Algorithmica,2,db/journals/algorithmica/algorithmica33.html#BarequetCDGS02,https://doi.org/10.1007/s00453-001-0096-5 +Erik D. Demaine,Geometric Restrictions on Producible Polygonal Protein Chains.,2006,44,Algorithmica,2,db/journals/algorithmica/algorithmica44.html#DemaineLO06,https://doi.org/10.1007/s00453-005-1205-7 +Kyriaki Ioannidou,The Longest Path Problem has a Polynomial Solution on Interval Graphs.,2011,61,Algorithmica,2,db/journals/algorithmica/algorithmica61.html#IoannidouMN11,https://doi.org/10.1007/s00453-010-9411-3 +David Aldous,A. Metropolis-Type Optimization Algorithm on the Infinite Tree.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#Aldous98,https://doi.org/10.1007/PL00009231 +M. Lonergan,An Iterative Displacement Method for Conflict Resolution in Map Generalization.,2001,30,Algorithmica,2,db/journals/algorithmica/algorithmica30.html#LonerganJ01,https://doi.org/10.1007/s00453-001-0011-0 +Paolo Ferragina,On Optimally Partitioning a Text to Improve Its Compression.,2011,61,Algorithmica,1,db/journals/algorithmica/algorithmica61.html#FerraginaNV11,https://doi.org/10.1007/s00453-010-9437-6 +Toshimasa Ishii,Augmenting a (k-1)-Vertex-Connected Multigraph l-Edge-Connected and k-Vertex-Connected Multigraph.,2006,44,Algorithmica,3,db/journals/algorithmica/algorithmica44.html#IshiiNI06,https://doi.org/10.1007/s00453-005-1151-4 +Benjamin Doerr,Ranking-Based Black-Box Complexity.,2014,68,Algorithmica,3,db/journals/algorithmica/algorithmica68.html#DoerrW14,https://doi.org/10.1007/s00453-012-9684-9 +Mohammad Ali Abam,Kinetic Collision Detection for Convex Fat Objects.,2009,53,Algorithmica,4,db/journals/algorithmica/algorithmica53.html#AbamBPS09,https://doi.org/10.1007/s00453-007-9019-4 +Anke van Zuylen,Deterministic Sampling Algorithms for Network Design.,2011,60,Algorithmica,1,db/journals/algorithmica/algorithmica60.html#Zuylen11,https://doi.org/10.1007/s00453-009-9344-x +Robert T. Smythe,Stochastic Analysis of Shell Sort.,2001,31,Algorithmica,3,db/journals/algorithmica/algorithmica31.html#SmytheW01,https://doi.org/10.1007/s00453-001-0048-0 +Xiaotie Deng,Introduction to the Special Section on Internet and Network Economics.,2010,58,Algorithmica,4,db/journals/algorithmica/algorithmica58.html#DengG10,https://doi.org/10.1007/s00453-010-9444-7 +Chien-Chung Huang,Donation Center Location Problem.,2013,66,Algorithmica,1,db/journals/algorithmica/algorithmica66.html#HuangS13,https://doi.org/10.1007/s00453-012-9633-7 +Robert Crowston,Fixed-Parameter Tractability of Satisfying Beyond the Number of Variables.,2014,68,Algorithmica,3,db/journals/algorithmica/algorithmica68.html#CrowstonGJRSY14,https://doi.org/10.1007/s00453-012-9697-4 +Bhaskar DasGupta,Effect of Gromov-Hyperbolicity Parameter on Cuts and Expansions in Graphs and Some Algorithmic Implications.,2018,80,Algorithmica,2,db/journals/algorithmica/algorithmica80.html#DasGuptaKMY18,https://doi.org/10.1007/s00453-017-0291-7 +Amihood Amir,Faster Two Dimensional Scaled Matching.,2010,56,Algorithmica,2,db/journals/algorithmica/algorithmica56.html#AmirC10,https://doi.org/10.1007/s00453-008-9173-3 +Sergei Bespamyatnikh,Fast Algorithms for Approximating Distances.,2002,33,Algorithmica,2,db/journals/algorithmica/algorithmica33.html#BespamyatnikhS02,https://doi.org/10.1007/s00453-001-0114-7 +Bill Jackson,Rigid Components in Molecular Graphs.,2007,48,Algorithmica,4,db/journals/algorithmica/algorithmica48.html#JacksonJ07,https://doi.org/10.1007/s00453-007-0170-8 +Juraj Stacho,3-Colouring AT-Free Graphs in Polynomial Time.,2012,64,Algorithmica,3,db/journals/algorithmica/algorithmica64.html#Stacho12,https://doi.org/10.1007/s00453-012-9624-8 +Saswata Shannigrahi,Efficient Prüfer-Like Coding and Counting Labelled Hypertrees.,2009,54,Algorithmica,2,db/journals/algorithmica/algorithmica54.html#ShannigrahiP09,https://doi.org/10.1007/s00453-007-9137-z +Michael T. Goodrich,Efficient Authenticated Data Structures for Graph Connectivity and Geometric Search Problems.,2011,60,Algorithmica,3,db/journals/algorithmica/algorithmica60.html#GoodrichTT11,https://doi.org/10.1007/s00453-009-9355-7 +Craig A. Morgenstern,Heuristics for Rapidly Four-Coloring Large Planar Graphs.,1991,6,Algorithmica,6,db/journals/algorithmica/algorithmica6.html#MorgensternS91,https://doi.org/10.1007/BF01759077 +Giovanni Rinaldi,A Projective Method for Linear Programming with Box-Type Constraints.,1986,1,Algorithmica,4,db/journals/algorithmica/algorithmica1.html#Rinaldi86,https://doi.org/10.1007/BF01840460 +Thomas H. Spencer,Provably Good Pattern Generators for a Random Pattern Test.,1994,11,Algorithmica,5,db/journals/algorithmica/algorithmica11.html#Spencer94,https://doi.org/10.1007/BF01293265 +Peichen Pan,Optimal Graph Constraint Reduction for Symbolic Layout Compaction.,1997,18,Algorithmica,4,db/journals/algorithmica/algorithmica18.html#PanDL97,https://doi.org/10.1007/PL00009173 +Hans-Peter Lenhof,Maintaining the Visibility Map of Spheres While Moving the Viewpoint on a Circle at Infinity.,1995,13,Algorithmica,3,db/journals/algorithmica/algorithmica13.html#LenhofS95,https://doi.org/10.1007/BF01190509 +Steven Fortune,Introduction.,2000,27,Algorithmica,1,db/journals/algorithmica/algorithmica27.html#Fortune00,https://doi.org/10.1007/PL00021289 +Kurt M. Anstreicher,A Long-Step Barrier Method for Convex Quadratic Programming.,1993,10,Algorithmica,5,db/journals/algorithmica/algorithmica10.html#AnstreicherHRT93,https://doi.org/10.1007/BF01769704 +Chung-Kuan Cheng,Maximum Concurrent Flows and Minimum Cuts.,1992,8,Algorithmica,3,db/journals/algorithmica/algorithmica8.html#ChengH92,https://doi.org/10.1007/BF01758845 +Walter Meyer,Seven Fingers Allow Force-Torque Closure Grasps on Any Convex Polyhedron.,1993,9,Algorithmica,3,db/journals/algorithmica/algorithmica9.html#Meyer93,https://doi.org/10.1007/BF01190900 +Jesus Garcia-Lopez,A Unified Approach to Conic Visibility.,2000,28,Algorithmica,3,db/journals/algorithmica/algorithmica28.html#Garcia-LopezR00,https://doi.org/10.1007/s004530010042 +Paz Carmi,Geographic Quorum System Approximations.,2005,41,Algorithmica,4,db/journals/algorithmica/algorithmica41.html#CarmiDHKS05,https://doi.org/10.1007/s00453-004-1130-1 +Sheng-Lung Peng,Graph Searching on Some Subclasses of Chordal Graphs.,2000,27,Algorithmica,3,db/journals/algorithmica/algorithmica27.html#PengTKHH00,https://doi.org/10.1007/s004530010026 +Edouard Bonnet,On Subexponential and FPT-Time Inapproximability.,2015,71,Algorithmica,3,db/journals/algorithmica/algorithmica71.html#BonnetE0P15,https://doi.org/10.1007/s00453-014-9889-1 +Dirk Sudholt,A Simple Ant Colony Optimizer for Stochastic Shortest Path Problems.,2012,64,Algorithmica,4,db/journals/algorithmica/algorithmica64.html#SudholtT12,https://doi.org/10.1007/s00453-011-9606-2 +Seok-Hee Hong,Editorial: Special Issue on Algorithms and Computation.,2018,80,Algorithmica,7,db/journals/algorithmica/algorithmica80.html#Hong18,https://doi.org/10.1007/s00453-018-0438-1 +Bernard Chazelle,Fractional Cascading: I. A Data Structuring Technique.,1986,1,Algorithmica,2,db/journals/algorithmica/algorithmica1.html#ChazelleG86,https://doi.org/10.1007/BF01840440 +Hussein M. Alnuweiri,Processor-Time Optimal Parallel Algorithms for Digitized Images on Mesh-Connected Processor Arrays.,1991,6,Algorithmica,5,db/journals/algorithmica/algorithmica6.html#AlnuweiriK91,https://doi.org/10.1007/BF01759068 +Somshubhro Bandyopadhyay,A New Proof for the Existence of Mutually Unbiased Bases.,2002,34,Algorithmica,4,db/journals/algorithmica/algorithmica34.html#BandyopadhyayBRV02,https://doi.org/10.1007/s00453-002-0980-7 +Elena Lodi,A Preliminary Study of a Diagonal Channel-Routing Model.,1989,4,Algorithmica,4,db/journals/algorithmica/algorithmica4.html#LodiLP89,https://doi.org/10.1007/BF01553910 +Sunil Arya,Efficient Construction of a Bounded-Degree Spanner with Low Weight.,1997,17,Algorithmica,1,db/journals/algorithmica/algorithmica17.html#AryaS97,https://doi.org/10.1007/BF02523237 +Hee-Kap Ahn,Guest Editor's Foreword.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#AhnS16,https://doi.org/10.1007/s00453-016-0232-x +Lata Narayanan,All-to-All Optical Routing in Chordal Rings of Degree 4.,2001,31,Algorithmica,2,db/journals/algorithmica/algorithmica31.html#NarayananOS01,https://doi.org/10.1007/s00453-001-0043-5 +Susanne Albers,On the Influence of Lookahead in Competitive Paging Algorithms.,1997,18,Algorithmica,3,db/journals/algorithmica/algorithmica18.html#Albers97,https://doi.org/10.1007/PL00009158 +Marshall W. Bern,Origami Embedding of Piecewise-Linear Two-Manifolds.,2011,59,Algorithmica,1,db/journals/algorithmica/algorithmica59.html#BernH11,https://doi.org/10.1007/s00453-010-9399-8 +Celina M. H. de Figueiredo,Algorithms for the Homogeneous Set Sandwich Problem.,2006,46,Algorithmica,2,db/journals/algorithmica/algorithmica46.html#FigueiredoFSS06,https://doi.org/10.1007/s00453-005-1198-2 +Sudipto Guha,Approximation Algorithms for Connected Dominating Sets.,1998,20,Algorithmica,4,db/journals/algorithmica/algorithmica20.html#GuhaK98,https://doi.org/10.1007/PL00009201 +Sandy Irani,Randomized Weighted Caching with Two Page Weights.,2002,32,Algorithmica,4,db/journals/algorithmica/algorithmica32.html#Irani02,https://doi.org/10.1007/s00453-001-0095-6 +Hon Wai Leong,Guest Editors' Foreword.,2003,35,Algorithmica,3,db/journals/algorithmica/algorithmica35.html#LeongI03,https://doi.org/10.1007/s00453-002-0994-1 +Stefan Canzar,On Tree-Constrained Matchings and Generalizations.,2015,71,Algorithmica,1,db/journals/algorithmica/algorithmica71.html#CanzarEKM15,https://doi.org/10.1007/s00453-013-9785-0 +Leah Epstein,Robust Algorithms for Preemptive Scheduling.,2014,69,Algorithmica,1,db/journals/algorithmica/algorithmica69.html#EpsteinL14,https://doi.org/10.1007/s00453-012-9718-3 +Juan A. Garay,Special Issue: Algorithmic Tools in Cryptography.,2017,79,Algorithmica,4,db/journals/algorithmica/algorithmica79.html#GarayO17,https://doi.org/10.1007/s00453-017-0368-3 +Benjamin Doerr,Multiplicative Drift Analysis.,2012,64,Algorithmica,4,db/journals/algorithmica/algorithmica64.html#DoerrJW12,https://doi.org/10.1007/s00453-012-9622-x +Marek Chrobak,An Efficient Parallel Algorithm for Computing a Large Independent Set in Planar Graph.,1991,6,Algorithmica,6,db/journals/algorithmica/algorithmica6.html#ChrobakN91,https://doi.org/10.1007/BF01759072 +Minkyoung Cho,Improved Approximation Bounds for Planar Point Pattern Matching.,2008,50,Algorithmica,2,db/journals/algorithmica/algorithmica50.html#ChoM08,https://doi.org/10.1007/s00453-007-9059-9 +Joachim Gudmundsson,Editorial: COCOON 2012 Special Issue.,2014,70,Algorithmica,1,db/journals/algorithmica/algorithmica70.html#GudmundssonMV14,https://doi.org/10.1007/s00453-014-9899-z +Sun Wu,Path-Matching Problems.,1992,8,Algorithmica,2,db/journals/algorithmica/algorithmica8.html#WuM92,https://doi.org/10.1007/BF01758837 +Shang-Hua Teng,k-Nearest-Neighbor Clustering and Percolation Theory.,2007,49,Algorithmica,3,db/journals/algorithmica/algorithmica49.html#TengY07,https://doi.org/10.1007/s00453-007-9040-7 +Andrew R. A. McGrae,The Complexity of the Empire Colouring Problem.,2014,68,Algorithmica,2,db/journals/algorithmica/algorithmica68.html#McGraeZ14,https://doi.org/10.1007/s00453-012-9680-0 +Claire Mathieu,Some Problems in Computational Geometry.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#Mathieu87,https://doi.org/10.1007/BF01840354 +Sarah R. Allen,Evaluation of Monotone DNF Formulas.,2017,77,Algorithmica,3,db/journals/algorithmica/algorithmica77.html#AllenHKU17,https://doi.org/10.1007/s00453-015-0092-9 +Nikhil Bansal,Approximating Vector Scheduling: Almost Matching Upper and Lower Bounds.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#BansalOVZ16,https://doi.org/10.1007/s00453-016-0116-0 +Joong Chae Na,On-Line Construction of Two-Dimensional Suffix Trees in O(n2 log n) Time.,2007,48,Algorithmica,2,db/journals/algorithmica/algorithmica48.html#NaGP07,https://doi.org/10.1007/s00453-007-0063-x +Sylvain Guillemot,Finding and Counting Vertex-Colored Subtrees.,2013,65,Algorithmica,4,db/journals/algorithmica/algorithmica65.html#GuillemotS13,https://doi.org/10.1007/s00453-011-9600-8 +Michele Mosca,Introduction.,2002,34,Algorithmica,4,db/journals/algorithmica/algorithmica34.html#MoscaT02,https://doi.org/10.1007/s00453-002-0971-8 +Lars Arge,Efficient Bulk Operations on Dynamic R-Trees.,2002,33,Algorithmica,1,db/journals/algorithmica/algorithmica33.html#ArgeHVV02,https://doi.org/10.1007/s00453-001-0107-6 +Alexander Zelikovsky,A Series of Approximation Algorithms for the Acyclic Directed Steiner Tree Problem.,1997,18,Algorithmica,1,db/journals/algorithmica/algorithmica18.html#Zelikovsky97,https://doi.org/10.1007/BF02523690 +Jason D. Hartline,Characterizing History Independent Data Structures.,2005,42,Algorithmica,1,db/journals/algorithmica/algorithmica42.html#HartlineHMPR05,https://doi.org/10.1007/s00453-004-1140-z +Vladimir Kolmogorov,Inference Algorithms for Pattern-Based CRFs on Sequence Data.,2016,76,Algorithmica,1,db/journals/algorithmica/algorithmica76.html#KolmogorovT16,https://doi.org/10.1007/s00453-015-0017-7 +Christos H. Papadimitriou,Optimal Piecewise Linear Motion of an Object Among Obstacles.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#PapadimitriouS87,https://doi.org/10.1007/BF01840372 +Jonathan L. Wang,Optimizing Responses to Broadcast Messages in Radio Networks.,1989,4,Algorithmica,3,db/journals/algorithmica/algorithmica4.html#WangS89,https://doi.org/10.1007/BF01553898 +Patrik Floréen,Almost Stable Matchings by Truncating the Gale-Shapley Algorithm.,2010,58,Algorithmica,1,db/journals/algorithmica/algorithmica58.html#FloreenKPS10,https://doi.org/10.1007/s00453-009-9353-9 +Paola Bonizzoni,Restricted and Swap Common Superstring: A Multivariate Algorithmic Perspective.,2015,72,Algorithmica,4,db/journals/algorithmica/algorithmica72.html#BonizzoniDMZ15,https://doi.org/10.1007/s00453-014-9882-8 +Xiaoming Sun,A 3-Party Simultaneous Protocol for SUM-INDEX.,2003,36,Algorithmica,1,db/journals/algorithmica/algorithmica36.html#Sun03,https://doi.org/10.1007/s00453-002-1007-0 +Leonor Frias,Multikey Quickselect.,2014,69,Algorithmica,4,db/journals/algorithmica/algorithmica69.html#FriasR14,https://doi.org/10.1007/s00453-013-9775-2 +Gregory Z. Gutin,Parameterized Complexity Results for General Factors in Bipartite Graphs with an Application to Constraint Programming.,2012,64,Algorithmica,1,db/journals/algorithmica/algorithmica64.html#GutinKSSY12,https://doi.org/10.1007/s00453-011-9548-8 +Iftah Gamzu,Improved Approximation for Orienting Mixed Graphs.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#GamzuM16,https://doi.org/10.1007/s00453-014-9932-2 +John Hershberger 0001,Adaptive Spatial Partitioning for Multidimensional Data Streams.,2006,46,Algorithmica,1,db/journals/algorithmica/algorithmica46.html#HershbergerSST06,https://doi.org/10.1007/s00453-006-0070-3 +Aaron M. Andrews,Minimizing the Aggregate Movements for Interval Coverage.,2017,78,Algorithmica,1,db/journals/algorithmica/algorithmica78.html#AndrewsW17,https://doi.org/10.1007/s00453-016-0153-8 +Hiroshi Hirai,Shortest (A+B)-Path Packing Via Hafnian.,2018,80,Algorithmica,8,db/journals/algorithmica/algorithmica80.html#HiraiN18,https://doi.org/10.1007/s00453-017-0334-0 +Sara Nicoloso,On the Sum Coloring Problem on Interval Graphs.,1999,23,Algorithmica,2,db/journals/algorithmica/algorithmica23.html#NicolosoSS99,https://doi.org/10.1007/PL00009252 +Kenneth L. Clarkson,An Algorithm for Geometric Minimum Spanning Trees Requiring Nearly Linear Expected Time.,1989,4,Algorithmica,4,db/journals/algorithmica/algorithmica4.html#Clarkson89,https://doi.org/10.1007/BF01553902 +Danny Z. Chen,New Algorithms for Facility Location Problems on the Real Line.,2014,69,Algorithmica,2,db/journals/algorithmica/algorithmica69.html#ChenW14,https://doi.org/10.1007/s00453-012-9737-0 +Peter Hachenberger,Exact Minkowksi Sums of Polyhedra and Exact and Efficient Decomposition of Polyhedra into Convex Pieces.,2009,55,Algorithmica,2,db/journals/algorithmica/algorithmica55.html#Hachenberger09,https://doi.org/10.1007/s00453-008-9219-6 +Philip Bille,Compressed Subsequence Matching and Packed Tree Coloring.,2017,77,Algorithmica,2,db/journals/algorithmica/algorithmica77.html#BilleCG17,https://doi.org/10.1007/s00453-015-0068-9 +Andreas Brandstädt,Dominating Induced Matchings for P 7-Free Graphs in Linear Time.,2014,68,Algorithmica,4,db/journals/algorithmica/algorithmica68.html#BrandstadtM14,https://doi.org/10.1007/s00453-012-9709-4 +Sandy Irani,Coloring Inductive Graphs On-Line.,1994,11,Algorithmica,1,db/journals/algorithmica/algorithmica11.html#Irani94,https://doi.org/10.1007/BF01294263 +Spyros Angelopoulos 0001,The Power of Priority Algorithms for Facility Location and Set Cover.,2004,40,Algorithmica,4,db/journals/algorithmica/algorithmica40.html#AngelopoulosB04,https://doi.org/10.1007/s00453-004-1113-2 +Barry Joe,Duality of Constrained Voronoi Diagrams and Delaunay Triangulations.,1993,9,Algorithmica,2,db/journals/algorithmica/algorithmica9.html#JoeW93,https://doi.org/10.1007/BF01188709 +Michael M. Kazhdan,A Reflective Symmetry Descriptor for 3D Models.,2004,38,Algorithmica,1,db/journals/algorithmica/algorithmica38.html#KazhdanCDFR03,https://doi.org/10.1007/s00453-003-1050-5 +Joshua Brody,Towards a Reverse Newman's Theorem in Interactive Information Complexity.,2016,76,Algorithmica,3,db/journals/algorithmica/algorithmica76.html#BrodyBKLSV16,https://doi.org/10.1007/s00453-015-0112-9 +Paul F. Dietz,Lower Bounds for Set Intersection Queries.,1995,14,Algorithmica,2,db/journals/algorithmica/algorithmica14.html#DietzMRU95,https://doi.org/10.1007/BF01293666 +Fedor V. Fomin,Computing Optimal Steiner Trees in Polynomial Space.,2013,65,Algorithmica,3,db/journals/algorithmica/algorithmica65.html#FominGKLS13,https://doi.org/10.1007/s00453-012-9612-z +Guoliang Xue,Grade of Service Steiner Minimum Trees in the Euclidean Plane.,2001,31,Algorithmica,4,db/journals/algorithmica/algorithmica31.html#XueLD01,https://doi.org/10.1007/s00453-001-0050-6 +Hua-Huai Chern,Transitional Behaviors of the Average Cost of Quicksort with Median-of-(2t+1).,2001,29,Algorithmica,1,db/journals/algorithmica/algorithmica29.html#ChernH01,https://doi.org/10.1007/BF02679613 +Rasmus Pagh,I/O-Efficient Similarity Join.,2017,78,Algorithmica,4,db/journals/algorithmica/algorithmica78.html#PaghPSS17,https://doi.org/10.1007/s00453-017-0285-5 +Paola Bonizzoni,An External-Memory Algorithm for String Graph Construction.,2017,78,Algorithmica,2,db/journals/algorithmica/algorithmica78.html#BonizzoniVPPR17,https://doi.org/10.1007/s00453-016-0165-4 +Yevgeniy Dodis,How to Eat Your Entropy and Have it Too: Optimal Recovery Strategies for Compromised RNGs.,2017,79,Algorithmica,4,db/journals/algorithmica/algorithmica79.html#DodisSSW17,https://doi.org/10.1007/s00453-016-0239-3 +Richard M. Karp,Global Wire Routing in Two-Dimensional Arrays.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#KarpLRTVV87,https://doi.org/10.1007/BF01840353 +Michele Flammini,Improved Approximation Results for the Minimum Energy Broadcasting Problem.,2007,49,Algorithmica,4,db/journals/algorithmica/algorithmica49.html#FlamminiKNP07,https://doi.org/10.1007/s00453-007-9077-7 +Zachary Friggstad,Approximability of Packing Disjoint Cycles.,2011,60,Algorithmica,2,db/journals/algorithmica/algorithmica60.html#FriggstadS11,https://doi.org/10.1007/s00453-009-9349-5 +Joshua Brody,Certifying Equality With Limited Interaction.,2016,76,Algorithmica,3,db/journals/algorithmica/algorithmica76.html#BrodyCKWY16,https://doi.org/10.1007/s00453-016-0163-6 +William R. Burley,On Algorithm Design for Metrical Task Systems.,1997,18,Algorithmica,4,db/journals/algorithmica/algorithmica18.html#BurleyI97,https://doi.org/10.1007/PL00009166 +Philip N. Klein,Detecting Race Conditions in Parallel Programs that Use Semaphores.,2003,35,Algorithmica,4,db/journals/algorithmica/algorithmica35.html#KleinNL03,https://doi.org/10.1007/s00453-002-1004-3 +Adrian Dumitrescu,Minimum Weight Convex Steiner Partitions.,2011,60,Algorithmica,3,db/journals/algorithmica/algorithmica60.html#DumitrescuT11,https://doi.org/10.1007/s00453-009-9329-9 +Martin Fürer,Efficient Computation of the Characteristic Polynomial of a Tree and Related Tasks.,2014,68,Algorithmica,3,db/journals/algorithmica/algorithmica68.html#Furer14,https://doi.org/10.1007/s00453-012-9688-5 +Tim Nonner,PTAS for Densest k-Subgraph in Interval Graphs.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#Nonner16,https://doi.org/10.1007/s00453-014-9956-7 +Danny Segev,Approximate k-Steiner Forests via the Lagrangian Relaxation Technique with Internal Preprocessing.,2010,56,Algorithmica,4,db/journals/algorithmica/algorithmica56.html#SegevS10,https://doi.org/10.1007/s00453-008-9189-8 +Xujin Chen,Approximation Algorithms for Soft-Capacitated Facility Location in Capacitated Network Design.,2009,53,Algorithmica,3,db/journals/algorithmica/algorithmica53.html#ChenC09,https://doi.org/10.1007/s00453-007-9032-7 +Christopher J. Van Wyk,The Complexity of Hashing with Lazy Deletion.,1986,1,Algorithmica,1,db/journals/algorithmica/algorithmica1.html#WykV86,https://doi.org/10.1007/BF01840434 +Ho-Leung Chan,Nonclairvoyant Speed Scaling for Flow and Energy.,2011,61,Algorithmica,3,db/journals/algorithmica/algorithmica61.html#ChanELLMP11,https://doi.org/10.1007/s00453-010-9420-2 +Esther M. Arkin,On Minimum-Area Hulls.,1998,21,Algorithmica,1,db/journals/algorithmica/algorithmica21.html#ArkinCHMSSY98,https://doi.org/10.1007/PL00009204 +Marek Karpinski,Improved Approximation Algorithms for the Quality of Service Multicast Tree Problem.,2005,42,Algorithmica,2,db/journals/algorithmica/algorithmica42.html#KarpinskiMOZ05,https://doi.org/10.1007/s00453-004-1133-y +Friedhelm Meyer auf der Heide,Strongly Adaptive Token Distribution.,1996,15,Algorithmica,5,db/journals/algorithmica/algorithmica15.html#HeideOW96,https://doi.org/10.1007/BF01955042 +Hervé Fournier,Lower Bounds for Comparison Based Evolution Strategies Using VC-dimension and Sign Patterns.,2011,59,Algorithmica,3,db/journals/algorithmica/algorithmica59.html#FournierT11,https://doi.org/10.1007/s00453-010-9391-3 +Vittorio Bilò,Graphical Congestion Games.,2011,61,Algorithmica,2,db/journals/algorithmica/algorithmica61.html#BiloFFM11,https://doi.org/10.1007/s00453-010-9417-x +Yunlong Liu,On Counting 3-D Matchings of Size k.,2009,54,Algorithmica,4,db/journals/algorithmica/algorithmica54.html#LiuCW09,https://doi.org/10.1007/s00453-008-9207-x +Lijun Chang,Fast Maximal Cliques Enumeration in Sparse Graphs.,2013,66,Algorithmica,1,db/journals/algorithmica/algorithmica66.html#ChangYQ13,https://doi.org/10.1007/s00453-012-9632-8 +Paul Pritchard,A Fast Bit-Parallel Algorithm for Computing the Subset Partial Order.,1999,24,Algorithmica,1,db/journals/algorithmica/algorithmica24.html#Pritchard99,https://doi.org/10.1007/PL00009272 +Bang Ye Wu,Parameterized Algorithms for the 2-Clustering Problem with Minimum Sum and Minimum Sum of Squares Objective Functions.,2015,72,Algorithmica,3,db/journals/algorithmica/algorithmica72.html#WuC15,https://doi.org/10.1007/s00453-014-9874-8 +Hadas Shachnai,Multiprocessor Scheduling with Machine Allotment and Parallelism Constraints.,2002,32,Algorithmica,4,db/journals/algorithmica/algorithmica32.html#ShachnaiT02,https://doi.org/10.1007/s00453-001-0098-3 +Yixin Cao 0001,Chordal Editing is Fixed-Parameter Tractable.,2016,75,Algorithmica,1,db/journals/algorithmica/algorithmica75.html#CaoM16,https://doi.org/10.1007/s00453-015-0014-x +Anders Dessmark,Faster Algorithms for Subgraph Isomorphism of k-Connected Partial k-Trees.,2000,27,Algorithmica,3,db/journals/algorithmica/algorithmica27.html#DessmarkLP00,https://doi.org/10.1007/s004530010023 +Haim Kaplan,Routing in Unit Disk Graphs.,2018,80,Algorithmica,3,db/journals/algorithmica/algorithmica80.html#KaplanMRS18,https://doi.org/10.1007/s00453-017-0308-2 +Eli Biham,Security of Quantum Key Distribution against All Collective Attacks.,2002,34,Algorithmica,4,db/journals/algorithmica/algorithmica34.html#BihamBBGM02,https://doi.org/10.1007/s00453-002-0973-6 +Lila Kari,Binary Pattern Tile Set Synthesis Is NP-Hard.,2017,78,Algorithmica,1,db/journals/algorithmica/algorithmica78.html#KariKMPS17,https://doi.org/10.1007/s00453-016-0154-7 +Charles E. Leiserson,Communication-Efficient Parallel Algorithms for Distributed Random-Access Machines.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#LeisersonM88,https://doi.org/10.1007/BF01762110 +Malte Brinkmeyer,FlipCut Supertrees: Towards Matrix Representation Accuracy in Polynomial Time.,2013,67,Algorithmica,2,db/journals/algorithmica/algorithmica67.html#BrinkmeyerGB13,https://doi.org/10.1007/s00453-012-9698-3 +Lauri Ahlroth,Approximately Uniform Online Checkpointing with Bounded Memory.,2013,67,Algorithmica,2,db/journals/algorithmica/algorithmica67.html#AhlrothPS13,https://doi.org/10.1007/s00453-013-9772-5 +Jessica Enright,Deleting Edges to Restrict the Size of an Epidemic: A New Application for Treewidth.,2018,80,Algorithmica,6,db/journals/algorithmica/algorithmica80.html#EnrightM18,https://doi.org/10.1007/s00453-017-0311-7 +Amalia Duch,On the Cost of Fixed Partial Match Queries in K-d Trees.,2016,75,Algorithmica,4,db/journals/algorithmica/algorithmica75.html#DuchLM16,https://doi.org/10.1007/s00453-015-0097-4 +Cameron T. Chalk,Optimal Staged Self-Assembly of General Shapes.,2018,80,Algorithmica,4,db/journals/algorithmica/algorithmica80.html#ChalkMSVWW18,https://doi.org/10.1007/s00453-017-0318-0 +Erik D. Demaine,On Cartesian Trees and Range Minimum Queries.,2014,68,Algorithmica,3,db/journals/algorithmica/algorithmica68.html#DemaineLW14,https://doi.org/10.1007/s00453-012-9683-x +Romeo Rizzi,Polynomial Time Complexity of Edge Colouring Graphs with Bounded Colour Classes.,2014,69,Algorithmica,3,db/journals/algorithmica/algorithmica69.html#RizziC14,https://doi.org/10.1007/s00453-013-9746-7 +Ivona Bezáková,Negative Examples for Sequential Importance Sampling of Binary Contingency Tables.,2012,64,Algorithmica,4,db/journals/algorithmica/algorithmica64.html#BezakovaSSV12,https://doi.org/10.1007/s00453-011-9569-3 +Gábor Wiener,Rounds in Combinatorial Search.,2013,67,Algorithmica,3,db/journals/algorithmica/algorithmica67.html#Wiener13,https://doi.org/10.1007/s00453-013-9750-y +Olivier Gascuel,A 'Stochastic Safety Radius' for Distance-Based Tree Reconstruction.,2016,74,Algorithmica,4,db/journals/algorithmica/algorithmica74.html#GascuelS16,https://doi.org/10.1007/s00453-015-0005-y +Béchir el Ayeb,Fault Identification in System-Level Diagnosis: a Logic-Based Framework and an O(n2sqrt(tau/log n) Algorithm.,2002,33,Algorithmica,2,db/journals/algorithmica/algorithmica33.html#Ayeb02,https://doi.org/10.1007/s00453-001-0092-9 +Rajiv Gandhi,Algorithms for Minimizing Response Time in Broadcast Scheduling.,2004,38,Algorithmica,4,db/journals/algorithmica/algorithmica38.html#GandhiKKW04,https://doi.org/10.1007/s00453-003-1058-x +Christoph Dürr,Finding Total Unimodularity in Optimization Problems Solved by Linear Programs.,2011,59,Algorithmica,2,db/journals/algorithmica/algorithmica59.html#DurrH11,https://doi.org/10.1007/s00453-009-9310-7 +Marc J. van Kreveld,Divided k-d Trees.,1991,6,Algorithmica,6,db/journals/algorithmica/algorithmica6.html#KreveldO91,https://doi.org/10.1007/BF01759075 +Guy Kortsarz,Approximating Minimum-Power Degree and Connectivity Problems.,2011,60,Algorithmica,4,db/journals/algorithmica/algorithmica60.html#KortsarzMNT11,https://doi.org/10.1007/s00453-009-9365-5 +Jérémy Barbay,Efficient Fully-Compressed Sequence Representations.,2014,69,Algorithmica,1,db/journals/algorithmica/algorithmica69.html#BarbayCGNN14,https://doi.org/10.1007/s00453-012-9726-3 +Jin-Yi Cai,From Holant to #CSP and Back: Dichotomy for Holant c Problems.,2012,64,Algorithmica,3,db/journals/algorithmica/algorithmica64.html#CaiHL12,https://doi.org/10.1007/s00453-012-9626-6 +Yi-Jen Chiang,New Approximation Results for the Maximum Scatter TSP.,2005,41,Algorithmica,4,db/journals/algorithmica/algorithmica41.html#Chiang05,https://doi.org/10.1007/s00453-004-1124-z +Michael A. Bekos,Boundary Labeling with Octilinear Leaders.,2010,57,Algorithmica,3,db/journals/algorithmica/algorithmica57.html#BekosKNS10,https://doi.org/10.1007/s00453-009-9283-6 +Vikraman Arvind,The Parameterized Complexity of Geometric Graph Isomorphism.,2016,75,Algorithmica,2,db/journals/algorithmica/algorithmica75.html#ArvindR16,https://doi.org/10.1007/s00453-015-0024-8 +Christoph Burnikel,A Separation Bound for Real Algebraic Expressions.,2009,55,Algorithmica,1,db/journals/algorithmica/algorithmica55.html#BurnikelFMSS09,https://doi.org/10.1007/s00453-007-9132-4 +Chaoyi Pang,Computing Unrestricted Synopses Under Maximum Error Bound.,2013,65,Algorithmica,1,db/journals/algorithmica/algorithmica65.html#PangZZHWM13,https://doi.org/10.1007/s00453-011-9571-9 +K. Subramani,A Combinatorial Certifying Algorithm for Linear Feasibility in UTVPI Constraints.,2017,78,Algorithmica,1,db/journals/algorithmica/algorithmica78.html#SubramaniW17,https://doi.org/10.1007/s00453-016-0131-1 +Artur Jez,One-Variable Word Equations in Linear Time.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#Jez16,https://doi.org/10.1007/s00453-014-9931-3 +Leonidas J. Guibas,Linear-Time Algorithms for Visibility and Shortest Path Problems Inside Triangulated Simple Polygons.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#GuibasHLST87,https://doi.org/10.1007/BF01840360 +Benjamin A. Burton,A Tree Traversal Algorithm for Decision Problems in Knot Theory and 3-Manifold Topology.,2013,65,Algorithmica,4,db/journals/algorithmica/algorithmica65.html#BurtonO13,https://doi.org/10.1007/s00453-012-9645-3 +F. Thomas Bruss,The Complete Solution of the Competitive Rank Selection Problem.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#BrussDL98,https://doi.org/10.1007/PL00009232 +Katarína Cechlárová,Housing Markets Through Graphs.,2010,58,Algorithmica,1,db/journals/algorithmica/algorithmica58.html#CechlarovaF10,https://doi.org/10.1007/s00453-009-9347-7 +Elie de Panafieu,2-Xor Revisited: Satisfiability and Probabilities of Functions.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#PanafieuGGK16,https://doi.org/10.1007/s00453-016-0119-x +Prosenjit Bose,Switching to Directional Antennas with Constant Increase in Radius and Hop Distance.,2014,69,Algorithmica,2,db/journals/algorithmica/algorithmica69.html#BoseCDFKM14,https://doi.org/10.1007/s00453-012-9739-y +Ulrik Brandes,A Linear Time Algorithm for the Arc Disjoint Menger Problem in Planar Directed Graphs.,2000,28,Algorithmica,1,db/journals/algorithmica/algorithmica28.html#BrandesW00,https://doi.org/10.1007/s004530010029 +Binay K. Bhattacharya,A Linear Time Algorithm for Computing Minmax Regret 1-Median on a Tree Network.,2014,70,Algorithmica,1,db/journals/algorithmica/algorithmica70.html#BhattacharyaKS14,https://doi.org/10.1007/s00453-013-9851-7 +Tadao Takaoka,Subcubic Cost Algorithms for the All Pairs Shortest Path Problem.,1998,20,Algorithmica,3,db/journals/algorithmica/algorithmica20.html#Takaoka98,https://doi.org/10.1007/PL00009198 +Jean-Daniel Boissonnat,An Algorithm for Computing a Convex and Simple Path of Bounded Curvature in a Simple Polygon.,2002,34,Algorithmica,2,db/journals/algorithmica/algorithmica34.html#BoissonnatGKL02,https://doi.org/10.1007/s00453-002-0950-0 +Marco Pellegrini 0001,Ray Shooting on Triangles in 3-Space.,1993,9,Algorithmica,5,db/journals/algorithmica/algorithmica9.html#Pellegrini93,https://doi.org/10.1007/BF01187036 +Riley Murray,Scheduling Distributed Clusters of Parallel Machines : Primal-Dual and LP-based Approximation Algorithms.,2018,80,Algorithmica,10,db/journals/algorithmica/algorithmica80.html#MurrayKC18,https://doi.org/10.1007/s00453-017-0345-x +Lata Narayanan,Compact Routing on Chordal Rings of Degree 4.,1999,23,Algorithmica,1,db/journals/algorithmica/algorithmica23.html#NarayananO99,https://doi.org/10.1007/PL00009251 +Jessica Chang,A Model for Minimizing Active Processor Time.,2014,70,Algorithmica,3,db/journals/algorithmica/algorithmica70.html#ChangGK14,https://doi.org/10.1007/s00453-013-9807-y +Nikhil Bansal,Average Rate Speed Scaling.,2011,60,Algorithmica,4,db/journals/algorithmica/algorithmica60.html#BansalBCP11,https://doi.org/10.1007/s00453-009-9379-z +Valerio Pascucci,Parallel Computation of the Topology of Level Sets.,2004,38,Algorithmica,1,db/journals/algorithmica/algorithmica38.html#PascucciC03,https://doi.org/10.1007/s00453-003-1052-3 +Hagit Attiya,Efficient Elections in Chordal Ring Networks.,1989,4,Algorithmica,3,db/journals/algorithmica/algorithmica4.html#AttiyaLSZ89,https://doi.org/10.1007/BF01553900 +Joachim Gudmundsson,Algorithms for Marketing-Mix Optimization.,2011,60,Algorithmica,4,db/journals/algorithmica/algorithmica60.html#GudmundssonMS11,https://doi.org/10.1007/s00453-010-9393-1 +Chien-Chung Huang,Bounded Unpopularity Matchings.,2011,61,Algorithmica,3,db/journals/algorithmica/algorithmica61.html#HuangKMN11,https://doi.org/10.1007/s00453-010-9434-9 +Bernhard Fuchs,The Number of Tree Stars Is O *(1.357 k ).,2007,49,Algorithmica,3,db/journals/algorithmica/algorithmica49.html#FuchsKW07,https://doi.org/10.1007/s00453-007-9020-y +Yoshiyuki Takao,Finding a Region with the Minimum Total L1 Distance from Prescribed Terminals.,2003,35,Algorithmica,3,db/journals/algorithmica/algorithmica35.html#Takao03,https://doi.org/10.1007/s00453-002-0997-y +Vladimir Batagelj,Dynamic Programming and Convex Clustering.,1994,11,Algorithmica,2,db/journals/algorithmica/algorithmica11.html#BatageljKK94,https://doi.org/10.1007/BF01182769 +Davide Bilò,Finding Best Swap Edges Minimizing the Routing Cost of a Spanning Tree.,2014,68,Algorithmica,2,db/journals/algorithmica/algorithmica68.html#BiloGP14,https://doi.org/10.1007/s00453-012-9674-y +Jean-Daniel Boissonnat,Building Efficient and Compact Data Structures for Simplicial Complexes.,2017,79,Algorithmica,2,db/journals/algorithmica/algorithmica79.html#BoissonnatST17,https://doi.org/10.1007/s00453-016-0207-y +Eugene Wong 0001,Stochastic Neural Networks.,1991,6,Algorithmica,3,db/journals/algorithmica/algorithmica6.html#Wong91,https://doi.org/10.1007/BF01759054 +Jean-François Couturier 0001,List Coloring in the Absence of a Linear Forest.,2015,71,Algorithmica,1,db/journals/algorithmica/algorithmica71.html#0001GKP15,https://doi.org/10.1007/s00453-013-9777-0 +Pål Grønås Drange,On the Computational Complexity of Vertex Integrity and Component Order Connectivity.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#DrangeDH16,https://doi.org/10.1007/s00453-016-0127-x +Michael A. Bekos,On the Recognition of Fan-Planar and Maximal Outer-Fan-Planar Graphs.,2017,79,Algorithmica,2,db/journals/algorithmica/algorithmica79.html#BekosCGHK17,https://doi.org/10.1007/s00453-016-0200-5 +Alok Aggarwal,Multilayer Grid Embeddings for VLSI.,1991,6,Algorithmica,1,db/journals/algorithmica/algorithmica6.html#AggarwalKS91,https://doi.org/10.1007/BF01759038 +Prabhakar Raghavan,Guest Editor's Foreword: Special Issue on On-Line Algorithms.,1994,11,Algorithmica,1,db/journals/algorithmica/algorithmica11.html#Raghavan94,https://doi.org/10.1007/BF01294259 +Yih-En Andrew Ban,A Conjecture on Wiener Indices in Combinatorial Chemistry.,2004,40,Algorithmica,2,db/journals/algorithmica/algorithmica40.html#BanBM04,https://doi.org/10.1007/s00453-004-1097-y +Ali çivril,Exponential Inapproximability of Selecting a Maximum Volume Sub-matrix.,2013,65,Algorithmica,1,db/journals/algorithmica/algorithmica65.html#CivrilM13,https://doi.org/10.1007/s00453-011-9582-6 +Argyrios Deligkas,Computing Approximate Nash Equilibria in Polymatrix Games.,2017,77,Algorithmica,2,db/journals/algorithmica/algorithmica77.html#DeligkasFSS17,https://doi.org/10.1007/s00453-015-0078-7 +Yury Lifshits,Speeding Up HMM Decoding and Training by Exploiting Sequence Repetitions.,2009,54,Algorithmica,3,db/journals/algorithmica/algorithmica54.html#LifshitsMWZ09,https://doi.org/10.1007/s00453-007-9128-0 +Jon Louis Bentley,Fast Linear Expected-Time Algorithms for Computing Maxima and Convex Hulls.,1993,9,Algorithmica,2,db/journals/algorithmica/algorithmica9.html#BentleyCL93,https://doi.org/10.1007/BF01188711 +Gregory Z. Gutin,Guest Editorial: Special Issue on Parameterized and Exact Computation.,2015,71,Algorithmica,3,db/journals/algorithmica/algorithmica71.html#GutinS15,https://doi.org/10.1007/s00453-014-9960-y +Svante Janson,A Unified Approach to Linear Probing Hashing with Buckets.,2016,75,Algorithmica,4,db/journals/algorithmica/algorithmica75.html#JansonV16,https://doi.org/10.1007/s00453-015-0111-x +Bundit Laekhanukit,Routing Regardless of Network Stability.,2014,70,Algorithmica,3,db/journals/algorithmica/algorithmica70.html#LaekhanukitVW14,https://doi.org/10.1007/s00453-014-9908-2 +Edward G. Coffman Jr.,Bandwidth Packing.,2001,29,Algorithmica,1,db/journals/algorithmica/algorithmica29.html#CoffmanS01,https://doi.org/10.1007/BF02679614 +Igor Razgon,On the Read-Once Property of Branching Programs and CNFs of Bounded Treewidth.,2016,75,Algorithmica,2,db/journals/algorithmica/algorithmica75.html#Razgon16,https://doi.org/10.1007/s00453-015-0059-x +Jay N. Bhuyan,Algorithms for the Boundary Selection Problem.,1997,17,Algorithmica,2,db/journals/algorithmica/algorithmica17.html#BhuyanDR97,https://doi.org/10.1007/BF02522823 +Adnan Agbaria,Communication - Processor Tradeoffs in a Limited Resources PRAM.,2002,34,Algorithmica,3,db/journals/algorithmica/algorithmica34.html#AgbariaBN02,https://doi.org/10.1007/s00453-002-0966-5 +Romeo Rizzi,Minimum Weakly Fundamental Cycle Bases Are Hard To Find.,2009,53,Algorithmica,3,db/journals/algorithmica/algorithmica53.html#Rizzi09,https://doi.org/10.1007/s00453-007-9112-8 +Sanjam Garg,On the Implausibility of Differing-Inputs Obfuscation and Extractable Witness Encryption with Auxiliary Input.,2017,79,Algorithmica,4,db/journals/algorithmica/algorithmica79.html#GargGHW17,https://doi.org/10.1007/s00453-017-0276-6 +Noga Alon,Improved Parallel Approximation of a Class of Integer Programming Problems.,1997,17,Algorithmica,4,db/journals/algorithmica/algorithmica17.html#AlonS97,https://doi.org/10.1007/BF02523683 +Alberto Apostolico,The Longest Common Subsequence Problem Revisited.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#ApostolicoG87,https://doi.org/10.1007/BF01840365 +Kazuyuki Narisawa,Efficient Computation of Substring Equivalence Classes with Suffix Arrays.,2017,79,Algorithmica,2,db/journals/algorithmica/algorithmica79.html#NarisawaHIBT17,https://doi.org/10.1007/s00453-016-0178-z +Ed Cohen,Efficient Convexity and Domination Algorithms for Fine-and Medium-Grain Hypercube Computers.,1992,7,Algorithmica,1,db/journals/algorithmica/algorithmica7.html#CohenMSS92,https://doi.org/10.1007/BF01758751 +Charles U. Martel,A General Model for Authenticated Data Structures.,2004,39,Algorithmica,1,db/journals/algorithmica/algorithmica39.html#MartelNDGKS04,https://doi.org/10.1007/s00453-003-1076-8 +Achim Schweikard,Assembly Sequences for Polyhedra.,1995,13,Algorithmica,6,db/journals/algorithmica/algorithmica13.html#SchweikardW95,https://doi.org/10.1007/BF01189068 +Prosenjit Bose,The Power and Limitations of Static Binary Search Trees with Lazy Finger.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#BoseDIL16,https://doi.org/10.1007/s00453-016-0224-x +Paola Bonizzoni,Fingerprint Clustering with Bounded Number of Missing Values.,2010,58,Algorithmica,2,db/journals/algorithmica/algorithmica58.html#BonizzoniVDM10,https://doi.org/10.1007/s00453-008-9265-0 +Michael Elberfeld,On the Space and Circuit Complexity of Parameterized Problems: Classes and Completeness.,2015,71,Algorithmica,3,db/journals/algorithmica/algorithmica71.html#ElberfeldST15,https://doi.org/10.1007/s00453-014-9944-y +Peng-Jun Wan,OVSF-CDMA Code Assignment in Wireless Ad Hoc Networks.,2007,49,Algorithmica,4,db/journals/algorithmica/algorithmica49.html#WanLF07,https://doi.org/10.1007/s00453-007-9094-6 +Monika Rauch Henzinger,Lower Bounds for Fully Dynamic Connectivity Problems in Graphs.,1998,22,Algorithmica,3,db/journals/algorithmica/algorithmica22.html#HenzingerF98,https://doi.org/10.1007/PL00009228 +Frank Wagner 0001,Three Rules Suffice for Good Label Placement.,2001,30,Algorithmica,2,db/journals/algorithmica/algorithmica30.html#WagnerWKS01,https://doi.org/10.1007/s00453-001-0009-7 +Pankaj K. Agarwal,Planar Geometric Location Problems.,1994,11,Algorithmica,2,db/journals/algorithmica/algorithmica11.html#AgarwalS94,https://doi.org/10.1007/BF01182774 +Prakash V. Ramanan,Average-Case Analysis of the Modified Harmonic Algorithm.,1989,4,Algorithmica,4,db/journals/algorithmica/algorithmica4.html#RamananT89,https://doi.org/10.1007/BF01553906 +Naoki Katoh,Foreword.,2006,44,Algorithmica,2,db/journals/algorithmica/algorithmica44.html#Katoh06,https://doi.org/10.1007/s00453-005-1200-z +Satoru Iwata 0001,An Algorithm for Minimum Cost Arc-Connectivity Orientations.,2010,56,Algorithmica,4,db/journals/algorithmica/algorithmica56.html#IwataK10,https://doi.org/10.1007/s00453-008-9179-x +Marek Cygan,Parameterized Complexity of Eulerian Deletion Problems.,2014,68,Algorithmica,1,db/journals/algorithmica/algorithmica68.html#CyganMPPS14,https://doi.org/10.1007/s00453-012-9667-x +Li (Erran) Li,Secure Overlay Network Design.,2010,57,Algorithmica,1,db/journals/algorithmica/algorithmica57.html#LiMM10,https://doi.org/10.1007/s00453-008-9198-7 +Lee-Ad Gottlieb,Matrix Sparsification and the Sparse Null Space Problem.,2016,76,Algorithmica,2,db/journals/algorithmica/algorithmica76.html#GottliebN16,https://doi.org/10.1007/s00453-015-0042-6 +Goos Kant,Drawing Planar Graphs Using the Canonical Ordering.,1996,16,Algorithmica,1,db/journals/algorithmica/algorithmica16.html#Kant96,https://doi.org/10.1007/BF02086606 +Diptapriyo Majumdar,Structural Parameterizations of Undirected Feedback Vertex Set: FPT Algorithms and Kernelization.,2018,80,Algorithmica,9,db/journals/algorithmica/algorithmica80.html#MajumdarR18,https://doi.org/10.1007/s00453-018-0419-4 +Amir H. Farrahi,Two-Way and Multiway Partitioning of a Set of Intervals for Clique-Width Maximization.,1999,23,Algorithmica,3,db/journals/algorithmica/algorithmica23.html#FarrahiLS99,https://doi.org/10.1007/PL00009257 +Hicham El-Zein,On the Succinct Representation of Equivalence Classes.,2017,78,Algorithmica,3,db/journals/algorithmica/algorithmica78.html#El-ZeinLMRC17,https://doi.org/10.1007/s00453-016-0192-1 +Hans L. Bodlaender,Quadratic Kernelization for Convex Recoloring of Trees.,2011,61,Algorithmica,2,db/journals/algorithmica/algorithmica61.html#BodlaenderFLRRW11,https://doi.org/10.1007/s00453-010-9404-2 +Ming-Yang Kao,Guest Editors' Foreword.,1999,25,Algorithmica,1,db/journals/algorithmica/algorithmica25.html#KaoKL99,https://doi.org/10.1007/PL00009278 +Anne Benoit,Computing the Throughput of Probabilistic and Replicated Streaming Applications.,2014,69,Algorithmica,4,db/journals/algorithmica/algorithmica69.html#BenoitGGR14,https://doi.org/10.1007/s00453-013-9768-1 +Shigeru Masuyama,Chain Packing in Graphs.,1991,6,Algorithmica,6,db/journals/algorithmica/algorithmica6.html#MasuyamaI91,https://doi.org/10.1007/BF01759074 +Christine T. Cheng,Understanding the Generalized Median Stable Matchings.,2010,58,Algorithmica,1,db/journals/algorithmica/algorithmica58.html#Cheng10,https://doi.org/10.1007/s00453-009-9307-2 +Marcel R. Ackermann,Analysis of Agglomerative Clustering.,2014,69,Algorithmica,1,db/journals/algorithmica/algorithmica69.html#AckermannBKS14,https://doi.org/10.1007/s00453-012-9717-4 +Boris Aronov,Data Structures for Halfplane Proximity Queries and Incremental Voronoi Diagrams.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#AronovBDGILS18,https://doi.org/10.1007/s00453-017-0389-y +Christos Levcopoulos,On Approximation Behavior of the Greedy Triangulation for Convex Polygons.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#LevcopoulosL87,https://doi.org/10.1007/BF01840358 +Maxime Crochemore,Two-Dimensional Prefix String Matching and Covering on Square Matrices.,1998,20,Algorithmica,4,db/journals/algorithmica/algorithmica20.html#CrochemoreIK98,https://doi.org/10.1007/PL00009200 +Alok Aggarwal,A Lower Bound on the Area of Permutation Layouts.,1991,6,Algorithmica,2,db/journals/algorithmica/algorithmica6.html#AggarwalKLLW91,https://doi.org/10.1007/BF01759044 +Moses Charikar,l22 Spreading Metrics for Vertex Ordering Problems.,2010,56,Algorithmica,4,db/journals/algorithmica/algorithmica56.html#CharikarHKR10,https://doi.org/10.1007/s00453-008-9191-1 +Michele Flammini,On the Complexity of the Regenerator Cost Problem in General Networks with Traffic Grooming.,2014,68,Algorithmica,3,db/journals/algorithmica/algorithmica68.html#FlamminiMMSZ14,https://doi.org/10.1007/s00453-012-9693-8 +Vladimir Braverman,New Bounds for the CLIQUE-GAP Problem Using Graph Decomposition Theory.,2018,80,Algorithmica,2,db/journals/algorithmica/algorithmica80.html#BravermanLSVY18,https://doi.org/10.1007/s00453-017-0277-5 +Matthias Englert,Lower and Upper Bounds on FIFO Buffer Management in QoS Switches.,2009,53,Algorithmica,4,db/journals/algorithmica/algorithmica53.html#EnglertW09,https://doi.org/10.1007/s00453-008-9236-5 +Piotr Berman,Foreword.,2007,48,Algorithmica,4,db/journals/algorithmica/algorithmica48.html#BermanDL07,https://doi.org/10.1007/s00453-007-0357-z +Dianxiang Xu,Testing Aspect-Oriented Programs with UML Design Models.,2008,18,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke18.html#XuXW08,https://doi.org/10.1142/S0218194008003672 +Jason J. Jung,Guest Editors' Introduction.,2013,23,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke23.html#JungKN13,https://doi.org/10.1142/S0218194013020014 +Ron S. Kenett,Controlling the Usability of Web Services.,2009,19,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke19.html#KenettHR09,https://doi.org/10.1142/S0218194009004362 +Mathupayas Thongmak,Maintainability Metrics for Aspect-Oriented Software.,2009,19,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke19.html#ThongmakM09,https://doi.org/10.1142/S0218194009004234 +Allaoua Maamir,Adding Flexibility in Information Flow Control for Object-Oriented Systems Using Versions.,2003,13,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke13.html#MaamirF03,https://doi.org/10.1142/S0218194003001317 +Filomena Ferrucci,Guest Editors' Introduction.,2003,13,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke13.html#FerrucciV03,https://doi.org/10.1142/S021819400300138X +Dianxiang Xu,Guest Editor's Introduction.,2013,23,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke23.html#XuA13,https://doi.org/10.1142/S0218194013020038 +John C. Grundy,Visual Specification and Monitoring of Software Agents in Decentralized Process-Centred Environments.,1999,9,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke9.html#Grundy99,https://doi.org/10.1142/S0218194099000243 +Zhi Jin,Automated Requirements Elicitation: Combining a Model-Driven Approach with Concept Reuse.,2003,13,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke13.html#JinBWL03,https://doi.org/10.1142/S0218194003001147 +Shadi G. Alawneh,Using Test Oracles and Formal Specifications with Test-Driven Development.,2013,23,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke23.html#AlawnehP13,https://doi.org/10.1142/S0218194013500113 +Sang Hun Oh,A Management Discipline of Software Metrics and the Software Quality Manager.,1992,2,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke2.html#OhLK92,https://doi.org/10.1142/S021819409200021X +Shyi-Ming Chen,An Inexact Reasoning Algorithm for Dealing with Inexact Knowledge.,1991,1,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke1.html#ChenKC91,https://doi.org/10.1142/S0218194091000184 +Ruilian Zhao,Test Generation for Programs with Binary Tree Structure as Input.,2015,25,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke25.html#ZhaoLW15,https://doi.org/10.1142/S0218194015500205 +Jun Kong,Uml-Based Modeling and Analysis of Security Threats.,2010,20,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke20.html#KongXZ10,https://doi.org/10.1142/S0218194010004980 +Junhua Ding,Formal Specification and Analysis of an Agent-Based Medical Image Processing System.,2010,20,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke20.html#DingH10,https://doi.org/10.1142/S021819401000475X +Laurent Thiry,A Calculus for (Meta)Models and Transformations.,2014,24,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke24.html#ThiryH14,https://doi.org/10.1142/S0218194014500272 +Adrianna Kozierkiewicz-Hetmanska,Analysis of Susceptibility to the Consensus for a Few Representations of Collective Knowledge.,2014,24,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke24.html#Kozierkiewicz-Hetmanska14,https://doi.org/10.1142/S0218194014500296 +Maria Tortorella,Empirical Investigation of Innovation Diffusion in a Software Process.,1999,9,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke9.html#TortorellaV99,https://doi.org/10.1142/S0218194099000322 +Honghao Gao,Probabilistic Model Checking-Based Service Selection Method for Business Process Modeling.,2017,27,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke27.html#GaoCDY17,https://doi.org/10.1142/S0218194017500334 +Timothy Arndt,Formal Specification and Prototyping of Multimedia Applications.,2000,10,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke10.html#ArndtCG00,https://doi.org/10.1142/S0218194000000250 +Zhijian Wang,Comparing and Improving the Synthesis of State-Based Specifications from Scenario-Based Specifications.,2012,22,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke22.html#WangLZ12,https://doi.org/10.1142/S0218194012500234 +Kiyoshi Itoh,Transobj: Software Prototyping Environment for Real-Time Transaction-Based Software System Applications.,1992,2,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke2.html#ItohTH92,https://doi.org/10.1142/S0218194092000026 +Karla Olmos Sanchez,Requirements Engineering Based on Knowledge Management: Theoretical Aspects and a Practical Proposal.,2017,27,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke27.html#SanchezO17,https://doi.org/10.1142/S0218194017500450 +Shi-Kuo Chang,Editorial: a General Framework for Slow Intelligence Systems.,2010,20,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke20.html#Chang10,https://doi.org/10.1142/S0218194010004578 +Eun Sook Cho,A Domain Analysis And Modeling Methodology For Component Development.,2004,14,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke14.html#ChoKR04,https://doi.org/10.1142/S0218194004001580 +Ngoc Thanh Nguyen,Guest Editors' Introduction.,2008,18,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke18.html#NguyenS08,https://doi.org/10.1142/S0218194008003830 +Samira Sadaoui,Generalization and Instantiation for Component Reuse.,2006,16,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke16.html#SadaouiY06,https://doi.org/10.1142/S0218194006002768 +Bixin Li,Generating Test Cases of Composite Services Based on OWL-S and eh-CPN.,2010,20,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke20.html#LiJQC10,https://doi.org/10.1142/S0218194010004955 +Jeffrey J. P. Tsai,Debugging Logic-Based Requirements Specifications for Safety-Critical Systems - a FRORL Approach.,1994,4,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke4.html#TsaiLN94,https://doi.org/10.1142/S0218194094000118 +Kiyoshi Honda,Generalized Software Reliability Model Considering Uncertainty and Dynamics: Model and Applications.,2017,27,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke27.html#HondaWF17,https://doi.org/10.1142/S021819401750036X +Can Bozdogan,EMITS: An Experience Management System for IT Management Support.,2015,25,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke25.html#BozdoganZZ15,https://doi.org/10.1142/S0218194015400197 +Luqi,How to Combine Nonmonotonic Logic and Rapid Prototyping to Help Maintain Software.,1995,5,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke5.html#LuqiC95,https://doi.org/10.1142/S021819409500006X +Mark W. Perlin,Transforming Conjunctive Match into Rete: a Call-Graph Caching Approach.,1991,1,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke1.html#Perlin91,https://doi.org/10.1142/S0218194091000263 +Masahiro Nakano,Crème: an Automatic Invariant Prover of Behavioral Specifications.,2007,17,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke17.html#NakanoONF07,https://doi.org/10.1142/S0218194007003458 +Xiaoxian Yang,A Novel Framework of Using Petri Net to Timed Service Business Process Modeling.,2016,26,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke26.html#YangYX16,https://doi.org/10.1142/S0218194016400052 +Jianfu Zhang,Activity Based CIM Modeling and Transformation for Business Process Systems.,2010,20,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke20.html#ZhangFWYC10,https://doi.org/10.1142/S0218194010004736 +Mahdi Bashari,Dynamic Software Product Line Engineering: A Reference Framework.,2017,27,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke27.html#BashariBD17,https://doi.org/10.1142/S0218194017500085 +Beata Czarnacka-Chrobot,Rationalization of Business Software Systems Development and enhancement Projects Investment Decisions on the Basis of Functional Size Measurement.,2013,23,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke23.html#Czarnacka-Chrobot13,https://doi.org/10.1142/S0218194013500228 +Ulrich Geske,Representing COBOL in Prolog - towards Program Comprehension and Reengineering.,1996,6,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke6.html#GeskeN96,https://doi.org/10.1142/S0218194096000065 +Vladimir S. Kazantsev,"The ""kvazar"" Package for Pattern Recognition and its Applications.",1993,3,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke3.html#Kazantsev93,https://doi.org/10.1142/S0218194093000215 +Hui-Ngo Goh,Automatic Ontology Construction in Fiction-Based Domain.,2011,21,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke21.html#GohKSR11,https://doi.org/10.1142/S0218194011005621 +Gerald C. Gannod,Facilitating the Maintenance of Safety-Critical Systems.,1994,4,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke4.html#GannodC94,https://doi.org/10.1142/S0218194094000106 +Tatsuo Nakajima,Middleware for Building Adaptive Migratory Continuous Media Applications.,2001,11,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke11.html#NakajimaA01,https://doi.org/10.1142/S0218194001000438 +Jouni Similä,Bootstrap: a Software Process Assessment and Improvement Methodology.,1995,5,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke5.html#SimilaKK95,https://doi.org/10.1142/S0218194095000277 +Zhenyu Chen 0001,Using Program Slicing to Improve the Efficiency and Effectiveness of Cluster Test Selection.,2011,21,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke21.html#ChenDZXQ11,https://doi.org/10.1142/S0218194011005487 +Zili Zhang,Guest Editors' Introduction.,2010,20,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke20.html#ZhangC10,https://doi.org/10.1142/S0218194010005031 +Esteban Robles Luna,Towards Composable Location Models in Ubiquitous Computing Applications.,2010,20,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke20.html#LunaRG10,https://doi.org/10.1142/S0218194010004979 +Jesse Davis,Method Of Interaction In A Modular Architecture For Sensor Systems (Mass).,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#DavisSE05,https://doi.org/10.1142/S0218194005002099 +Haiping Xu,Guest Editors' Introduction.,2014,24,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke24.html#XuGBR14,https://doi.org/10.1142/S0218194014020021 +Renée J. Miller,Mining for Program Structure.,1999,9,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke9.html#MillerG99,https://doi.org/10.1142/S0218194099000280 +Liwu Li 0001,Use Case Patterns.,2002,12,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke12.html#Li02,https://doi.org/10.1142/S0218194002000810 +Ratko Orlandic,Preventing Mismatch of Homogeneous Components in the Design of Software Architecture.,2001,11,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke11.html#OrlandicP01,https://doi.org/10.1142/S0218194001000761 +Shi-Kuo Chang,Guest Editors' Introduction.,2018,28,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke28.html#ChangL18,https://doi.org/10.1142/S0218194018020011 +Daniel E. Cooke,Guest Editors' Introduction.,1998,8,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke8.html#CookeU98,http://ejournals.wspc.com.sg/ijseke/08/0801/S0218194098000029.html +Yingcai Wu,Guest Editors' Introduction.,2015,25,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke25.html#WuN0B15,https://doi.org/10.1142/S0218194015020027 +Rossella Aiello,A Hierarchical Measurement Framework for the Evaluation of Automated Business Processes.,2002,12,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke12.html#AielloEN02,https://doi.org/10.1142/S0218194002000950 +Filomena Ferrucci,On the Refinement of Logic Specifications.,1992,2,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke2.html#FerrucciNPOT92,https://doi.org/10.1142/S0218194092000208 +Ralph Guderlei,Towards Automatic Testing of Imaging Software by Means of Random and Metamorphic Testing.,2007,17,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke17.html#GuderleiM07,https://doi.org/10.1142/S0218194007003471 +Raul Garcia-Castro,Rdf(S) Interoperability Results for Semantic Web Technologies.,2009,19,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke19.html#Garcia-CastroG09,https://doi.org/10.1142/S0218194009004556 +Giorgio Bruno,Modeling and Developing Real-Time Concurrent Applications.,1996,6,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke6.html#BrunoA96,https://doi.org/10.1142/S0218194096000181 +Riccardo Distasi,HEAT: Hierarchical Entropy Approach for Texture Indexing in Image Databases.,2002,12,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke12.html#DistasiNV02,https://doi.org/10.1142/S0218194002001013 +Imran A. Zualkernan,Object-Oriented Analysis as Design: a Case Study.,1992,2,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke2.html#ZualkernanTJWD92,https://doi.org/10.1142/S0218194092000233 +Rajender Nath,A Software Component Representation Model for Compositional Reuse.,2008,18,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke18.html#NathV08,https://doi.org/10.1142/S0218194008003544 +Engin Kirda,A Service Architecture for Mobile Teamwork.,2003,13,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke13.html#KirdaG03,https://doi.org/10.1142/S0218194003001342 +Thu-Thuy Do,An Evolvable Operating System for Wireless Sensor Networks.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#DoKLKHPLP05,https://doi.org/10.1142/S0218194005002026 +Marut Buranarach,OAM: An Ontology Application Management Framework for Simplifying Ontology-Based Semantic Web Application Development.,2016,26,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke26.html#BuranarachSTRRW16,https://doi.org/10.1142/S0218194016500066 +Andrian Marcus,Recovery of Traceability Links between Software Documentation and Source Code.,2005,15,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke15.html#MarcusMS05,https://doi.org/10.1142/S0218194005002543 +Fernando Asteasuain,Specification Patterns: Formal and Easy.,2015,25,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke25.html#AsteasuainB15,https://doi.org/10.1142/S0218194015500060 +Danny C. C. Poo,An Object-Oriented Software Requirements Analysis Method.,1992,2,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke2.html#Poo92,https://doi.org/10.1142/S0218194092000087 +David Garlan,The Radar Architecture for Personal Cognitive Assistance.,2007,17,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke17.html#GarlanS07,https://doi.org/10.1142/S0218194007003033 +Andreas Doblander,An Evaluation of Model-Based Software Synthesis from Simulink Models for Embedded Video Applications.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#DoblanderGRS05,https://doi.org/10.1142/S0218194005002038 +Thomas Hill,"BOOK REVIEW: ""Press on: Principles of Interaction Programming"" by Harold Thimbleby.",2010,20,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke20.html#Hill10,https://doi.org/10.1142/S0218194010005080 +Zili Zhang,Guest Editors' Introduction.,2014,24,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke24.html#ZhangJ14,https://doi.org/10.1142/S0218194014020033 +Gregor Engels,Guest Editors' Introduction.,2004,14,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke14.html#EngelsS04,https://doi.org/10.1142/S021819400400183X +W. Eric Wong,Redesigning Legacy Systems Into The Object-Oriented Paradigm.,2004,14,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke14.html#WongL04,https://doi.org/10.1142/S0218194004001634 +Chi-Lu Yang,An Analysis of the Root Causes of Defects Injected into the Software by the Software Team: an Industrial Study of the Distributed Health-Care System.,2013,23,International Journal of Software Engineering and Knowledge Engineering,9,db/journals/ijseke/ijseke23.html#YangCC13,https://doi.org/10.1142/S0218194013500393 +Bernd J. Krämer,Distributed Systems Management Software-in-the-Loop.,1998,8,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke8.html#KramerK98,https://doi.org/10.1142/S0218194098000066 +Witold Pedrycz,Knowledge Management and Semantic Modeling: a Role of Information Granularity.,2013,23,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke23.html#Pedrycz13,https://doi.org/10.1142/S0218194013400019 +Jack Campin,Specifying Active Database Systems in an Object-Oriented Framework.,1997,7,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke7.html#CampinPW97,https://doi.org/10.1142/S0218194097000059 +Gordon H. Huang,Guest Editors' Introduction.,2008,18,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke18.html#HuangCZ08,https://doi.org/10.1142/S0218194008003726 +Dominik Stein,Join Point Designation Diagrams: a Graphical Representation of Join Point Selections.,2006,16,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke16.html#SteinHU06,https://doi.org/10.1142/S0218194006002811 +Chang-Hai Jiang,An Intelligent Control Architecture for Adaptive Service-Based Software Systems.,2009,19,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke19.html#JiangHCHY09,https://doi.org/10.1142/S0218194009004337 +Yi Cheng Ren,Leveraging Active-Guided Evolutionary Games for Adaptive and Stable Deployment of DVFS-Aware Cloud Applications.,2015,25,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke25.html#RenSOH15,https://doi.org/10.1142/S0218194015400239 +Daniel E. Cooke,On the Development of a Method to Synthesize Programs from Requirements Specifications.,1991,1,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke1.html#CookeG91,https://doi.org/10.1142/S0218194091000056 +Gijeong Kim,Seamless QoE Support for Mobile Cloud Services Using IEEE802.21 MIH and the GENI Future Internet Framework.,2014,24,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke24.html#KimLL14,https://doi.org/10.1142/S0218194014400063 +Guy Ravitz,Integrating Multimedia Semantic Content Analysis of YouTube Videos with Hurricane Wind Analysis for Public Situation Awareness and outreach.,2010,20,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke20.html#RavitzSP10,https://doi.org/10.1142/S0218194010004670 +Xiaoming Zhang,A Method for Materials Knowledge Extraction from HTML Tables Based on Sibling Comparison.,2016,26,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke26.html#ZhangLZW16,https://doi.org/10.1142/S0218194016500303 +Jun Yao,High Performance Mac Unit Using Modified Sign Extension Algorithm and A New High-Speed Alu in Dsp-Core.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#YaoCL05,https://doi.org/10.1142/S0218194005002002 +Alex Delis,Ada Reusability and System Design Assessment Using the Data Binding Tool.,1993,3,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke3.html#DelisB93,https://doi.org/10.1142/S0218194093000148 +Bran Selic,A Quality of Service Framework for Object-Oriented Architectures.,1998,8,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke8.html#Selic98,https://doi.org/10.1142/S0218194098000170 +Norman Wilde,Designing Knowledge-Base Tools for Program Comprehension: a Comparison of EDATS and IMCA.,1996,6,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke6.html#WildeDC96,https://doi.org/10.1142/S0218194096000284 +Wei Sun 0001,Abstract Logic Tree Based Framework for Component Based Solution Composition Design and Execution.,2007,17,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke17.html#SunZLT07,https://doi.org/10.1142/S0218194007003227 +Hans-Jörg Kreowski,Nested Graph Transformation Units.,1997,7,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke7.html#KreowskiKS97,https://doi.org/10.1142/S0218194097000278 +Stephen G. MacDonell,Industry Practices in Project Management for Multimedia Information Systems.,1999,9,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke9.html#MacdonellFW99,https://doi.org/10.1142/S0218194099000413 +Weina Ma,Knowledge-Driven User Behavior Pattern Discovery for System Security Enhancement.,2016,26,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke26.html#MaSB16,https://doi.org/10.1142/S0218194016500169 +Alan Liu,Guest Editor's Introduction.,2008,18,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke18.html#Liu08,https://doi.org/10.1142/S0218194008003611 +Ivana Turnu,Entropy of some CK Metrics to Assess Object-Oriented Software Quality.,2013,23,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke23.html#TurnuCMT13,https://doi.org/10.1142/S0218194013500034 +Stéphane S. Somé,Formalization of Textual Use Cases Based on Petri Nets.,2010,20,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke20.html#Some10,https://doi.org/10.1142/S0218194010004931 +Shi-Kuo Chang,Guest Editors' Introduction.,2012,22,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke22.html#ChangGN12,https://doi.org/10.1142/S0218194012020032 +Jerry Gao,Guest Editors' Introduction.,2007,17,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke17.html#GaoB07,https://doi.org/10.1142/S0218194007003288 +Rubing Huang,Prioritization of Combinatorial Test Cases by Incremental Interaction Coverage.,2013,23,International Journal of Software Engineering and Knowledge Engineering,10,db/journals/ijseke/ijseke23.html#HuangXTCLC13,https://doi.org/10.1142/S0218194013500459 +Myriam Noureddine,Conceptual Model of the Physical Structure of Manufacturing Systems.,2006,16,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke16.html#Noureddine06,https://doi.org/10.1142/S0218194006002914 +Mariusz Pelc,Adaptation Architecture for Self-Healing Computer Systems.,2017,27,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke27.html#PelcG17,https://doi.org/10.1142/S0218194017500292 +Doina Tatar,Entailment-Based Linear Segmentation in Summarization.,2009,19,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke19.html#TatarMLT09,https://doi.org/10.1142/S0218194009004520 +Sangkyun Kim,Guest Editors' Introduction.,2010,20,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke20.html#KimKK10,https://doi.org/10.1142/S0218194010004608 +Richard Lai,Analysing the Performance of a Resource Reservation Protocol Specification Using a GSPN Method.,2010,20,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke20.html#LaiT10,https://doi.org/10.1142/S0218194010004815 +George Spanoudakis,Evidential Diagnosis Of Inconsistencies In Object-Oriented Designs.,2004,14,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke14.html#SpanoudakisKD04,https://doi.org/10.1142/S0218194004001610 +Alain Abran,Guest Editor's Introduction.,2013,23,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke23.html#Abran13,https://doi.org/10.1142/S0218194013020026 +Daniel Chivers,Improving Search-Based Schematic Layout by Parameter Manipulation.,2015,25,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke25.html#ChiversR15,https://doi.org/10.1142/S0218194015500138 +Arun Sharma,Empirical Evaluation and Validation of Interface Complexity Metrics for Software Components.,2008,18,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke18.html#SharmaKG08,https://doi.org/10.1142/S0218194008003957 +Mohsin Shaikh,Aspect Oriented Re-engineering of Legacy Software Using Cross-Cutting Concern Characterization and Significant Code Smells Detection.,2016,26,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke26.html#ShaikhL16,https://doi.org/10.1142/S0218194016500212 +Sankyu Park,A Framework for Multi-Agent Systems with Multi-Modal User Interfaces in Distributed Computing Environments.,1997,7,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke7.html#ParkCK97,https://doi.org/10.1142/S0218194097000217 +Wendong Zhang,A Hybrid Elastic Net Method for Solving the Traveling Salesman Problem.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#ZhangB05,https://doi.org/10.1142/S0218194005002233 +Gwan-Hwan Hwang,Reachability Testing: an Approach to Testing Concurrent Software.,1995,5,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke5.html#HwangTH95,https://doi.org/10.1142/S0218194095000241 +Vaclav Rajlich,Using the Web for Software Annotations.,1999,9,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke9.html#RajlichV99,https://doi.org/10.1142/S021819409900005X +Ching-Pao Chang,Integrating Action-Based Defect Prediction to Provide Recommendations for Defect Action Correction.,2013,23,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke23.html#Chang13,https://doi.org/10.1142/S0218194013500022 +Rod Hilton,Predicting Code Hotspots in Open-Source Software from Object-Oriented Metrics Using Machine Learning.,2018,28,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke28.html#HiltonG18,https://doi.org/10.1142/S0218194018500110 +Pora Kim,Intelligent Positioning and Optimal Diversity Schemes for Mobile Agents in Ubiquitous Networks.,2008,18,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke18.html#KimC08,https://doi.org/10.1142/S0218194008003817 +Shu-Chuan Lo,Application Of Clustering Techniques To Software Component Architecture Design.,2004,14,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke14.html#LoC04,https://doi.org/10.1142/S0218194004001701 +Jacob L. Cybulski,Interactive Exploration of Data with Visual Metaphors.,2015,25,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke25.html#CybulskiKS15,https://doi.org/10.1142/S0218194015400082 +Joakim Pernstål,A Study Investigating Challenges in the Interface between Product Development and manufacturing in the Development of Software-Intensive Automotive Systems.,2012,22,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke22.html#PernstalMG12,https://doi.org/10.1142/S0218194012500271 +Teng-Tiow Tay,Hw/Sw Co-Design for Low Power Arithmetic and Logic Units.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#TayNP05,https://doi.org/10.1142/S0218194005002014 +Shih-Chien Chou,Association-Based Information Flow Control In Object-Oriented Systems.,2004,14,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke14.html#ChouW04,https://doi.org/10.1142/S0218194004001658 +K. Ganesan,Verifying Requirements Through Mathematical Modelling and Animation.,2000,10,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke10.html#GanesanKA00,https://doi.org/10.1142/S0218194000000092 +Abhijeet Ramesh Thakare,Comparative Search of Entities.,2017,27,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke27.html#ThakareD17,https://doi.org/10.1142/S0218194017500498 +Yong Qin,An Online Quantified Safety Assessment Method for Train Service State Based on Safety Region Estimation and Hybrid Intelligence Technologies.,2015,25,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke25.html#QinYZJC15,https://doi.org/10.1142/S0218194015400185 +Sebastian Engell,Verification of Embedded Supervisory Controllers Considering Hybrid Plant Dynamics.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#EngellLS05,https://doi.org/10.1142/S021819400500204X +Woojin Lee,An Attribute-Based Development Framework of Node Software for Various Operating Systems in Sensor Network Environment.,2016,26,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke26.html#LeeCSK16,https://doi.org/10.1142/S0218194016500364 +Nachai Limsettho,Unsupervised Bug Report Categorization Using Clustering and Labeling Algorithm.,2016,26,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke26.html#LimsetthoHMM16,https://doi.org/10.1142/S0218194016500352 +Fatih Yücalar,Regression Analysis Based Software Effort Estimation Method.,2016,26,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke26.html#YucalarKBO16,https://doi.org/10.1142/S0218194016500261 +Eleni Tavanidou,Etifis: An Innovative e-Forecasting Web Application.,2003,13,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke13.html#TavanidouNMA03,https://doi.org/10.1142/S0218194003001226 +Frank Elberzhager,Focusing Testing by using Inspection and Product Metrics.,2013,23,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke23.html#ElberzhagerKMA13,https://doi.org/10.1142/S0218194013400093 +Peter Heimann,Graph-Based Software Process Management.,1997,7,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke7.html#HeimannKWJ97,https://doi.org/10.1142/S0218194097000254 +Scott A. DeLoach,Multiagent Systems Engineering.,2001,11,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke11.html#DeLoachWS01,https://doi.org/10.1142/S0218194001000542 +Frédéric Schmidt,Multi-Objective Reconstruction of Software Architecture.,2018,28,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke28.html#SchmidtMC18,https://doi.org/10.1142/S0218194018500262 +Jerry Gao,Guest Editors' Introduction.,2011,21,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke21.html#GaoMB11,https://doi.org/10.1142/S0218194011005530 +Kurt Schneider,Application of Graph Grammars in an Educational Software Engineering Game: A Case Study in Pragmatic Adoption.,1997,7,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke7.html#Schneider97,https://doi.org/10.1142/S0218194097000242 +Pankaj K. Garg,Matisse: a Knowledge-Based Team Programming Environment.,1994,4,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke4.html#GargPBDIWF94,https://doi.org/10.1142/S0218194094000039 +Omid Banyasad,Design and Implementation of an Editor/Interpreter for a Visual Logic Programming Language.,2013,23,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke23.html#BanyasadC13,https://doi.org/10.1142/S0218194013500216 +Tong Gao,A Repository for Component-based Embedded Software Development.,2006,16,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke16.html#GaoMYKB06,https://doi.org/10.1142/S0218194006002872 +Huanjing Wang,Metric Selection for Software Defect Prediction.,2011,21,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke21.html#WangKHG11,https://doi.org/10.1142/S0218194011005256 +Jason T. L. Wang,Texpros: an Intelligent Document Processing System.,1992,2,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke2.html#WangN92,https://doi.org/10.1142/S0218194092000099 +Yunxiang Zheng,Double-State Based Business Process Description Model and its Operational Semantics.,2012,22,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke22.html#ZhengZZW12,https://doi.org/10.1142/S0218194012500210 +Amir A. Khwaja,A Synthesis of Evaluation Criteria for Software Specifications and Specification Techniques.,2002,12,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke12.html#KhwajaU02,https://doi.org/10.1142/S0218194002001062 +Dong-Joo Park,Spy-Tec+ : an Integrated Index Structure for k-Nearest Neighbor Queries with Semantic Predicates in Multimedia Database.,2011,21,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke21.html#ParkL11,https://doi.org/10.1142/S0218194011005529 +Yan Zheng,A Short-Text Oriented Clustering Method for Hot Topics Extraction.,2015,25,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke25.html#ZhengMX15,https://doi.org/10.1142/S0218194015400161 +Brigitte Jörg,Connecting Closed World Research Information Systems through the Linked Open Data Web.,2012,22,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke22.html#JorgRSDJHREVB12,https://doi.org/10.1142/S0218194012400074 +Martín López Nores,Procedures and Algorithms for Continuous Integration in an Agile Specification Environment.,2009,19,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke19.html#NoresADBRVGC09,https://doi.org/10.1142/S0218194009004106 +Yan-Nong Huang,Fact Updates in Logic Databases.,1995,5,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke5.html#HuangDH95,https://doi.org/10.1142/S021819409500023X +Mira Kajko-Mattsson,Data Mining For Validation In Software Engineering: An Example.,2004,14,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke14.html#Kajko-MattssonC04,https://doi.org/10.1142/S0218194004001725 +John W. Coffey,A Semi-Automated Approach to the Recovery of SOA System Structure from Low-Level Artifacts.,2016,26,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke26.html#CoffeyRWB16,https://doi.org/10.1142/S0218194016500030 +Mehdi Noorian,Addressing Non-Functional Properties in Feature Models: A Goal-Oriented Approach.,2014,24,International Journal of Software Engineering and Knowledge Engineering,10,db/journals/ijseke/ijseke24.html#NoorianABD14,https://doi.org/10.1142/S0218194014400154 +Robert Godin,Applying Concept Formation Methods to Software Reuse.,1995,5,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke5.html#GodinMMSF95,https://doi.org/10.1142/S0218194095000071 +Jonathan Lee,Dynamic Service Composition: a Discovery-Based Approach.,2008,18,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke18.html#LeeMLLW08,https://doi.org/10.1142/S0218194008003635 +Yuchang Mo,A New Approach to Verify Statechart Specifications for Reactive Systems.,2008,18,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke18.html#MoY08,https://doi.org/10.1142/S0218194008003908 +J. C. Mar,Model-Based Clustering In Gene Expression Microarrays: An Application To Breast Cancer Data.,2003,13,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke13.html#MarM03,https://doi.org/10.1142/S0218194003001482 +Jia Hui Ng,An Embedded System to Support Tele-Medical Activity.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#NgTH05,https://doi.org/10.1142/S0218194005002269 +Wagner Gadêa Lorenz,Activity-Based Software Process Lines Tailoring.,2014,24,International Journal of Software Engineering and Knowledge Engineering,9,db/journals/ijseke/ijseke24.html#LorenzBFP14,https://doi.org/10.1142/S0218194014500429 +Everton Note Narciso,Test Case Selection: A Systematic Literature Review.,2014,24,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke24.html#NarcisoDN14,https://doi.org/10.1142/S0218194014500259 +Richard Tzong-Han Tsai,Using Contextual Information to Clarify Cross-Species Gene Normalization Ambiguity.,2010,20,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke20.html#TsaiL10,https://doi.org/10.1142/S0218194010004694 +A. I. Tyatushkin,The Program System for Solving Optimal Control Problems with Phase Constraints.,1993,3,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke3.html#TyatushkinZE93,https://doi.org/10.1142/S0218194093000264 +Chi-Lun Liu,A System Maintenance Process for Faciliating Requests Management and Conflicts Resolution.,2010,20,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke20.html#LiuY10,https://doi.org/10.1142/S0218194010004992 +Rehab El-Kharboutly,Efficient Reliability Analysis of Concurrent Software Applications Considering Software Architecture.,2014,24,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke24.html#El-KharboutlyG14,https://doi.org/10.1142/S0218194014500028 +Angela Guercio,Guest Editors' Introduction.,2007,17,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke17.html#GuercioA07,https://doi.org/10.1142/S0218194007003355 +Mohammad Shafkat Amin,An Efficient Web-Based Wrapper and Annotator for Tabular Data.,2010,20,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke20.html#AminJ10,https://doi.org/10.1142/S0218194010004657 +Vincent C. Hu,Model Checking for Verification of Mandatory Access Control Models and Properties.,2011,21,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke21.html#HuKXH11,https://doi.org/10.1142/S021819401100513X +Carlo Gabriel Porto Bellini,Measurement in Software Engineering: from the Roadmap to the Crossroads.,2008,18,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke18.html#BelliniPB08,https://doi.org/10.1142/S021819400800357X +Haiping Wu,Madd Operation Aware Redundancy Elimination.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#WuHMG05,https://doi.org/10.1142/S0218194005002208 +,Guest Editors' Introduction.,1997,7,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke7.html#X97,http://ejournals.wspc.com.sg/ijseke/07/0702/S0218194097000114.html +óscar Dieste Tubío,Integrated Software Engineering and Knowledge Engineering Teaching Experiences.,2000,10,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke10.html#DiesteJML00,https://doi.org/10.1142/S021819400000016X +Raymond T. Yeh,System Development as a Wicked Problem.,1991,1,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke1.html#Yeh91,https://doi.org/10.1142/S0218194091000123 +Jae Hun Choi,An Object-Based Approach to Managing Domain Specific Thesauri: Semiautomatic Thesaurus Construction and Query-Based Browsing.,2002,12,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke12.html#ChoiYL02,https://doi.org/10.1142/S0218194002000986 +Yanhui Wang,An Optimization Method for Train Seat Inventory Control.,2018,28,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke28.html#WangLLS18,https://doi.org/10.1142/S0218194018400077 +Zhang Hui,Utilization of Dependence and Weight to Improve Fault Localization Method of Regression Test Cases.,2017,27,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke27.html#Hui17,https://doi.org/10.1142/S0218194017500152 +Arturo Zambrano,A Fine Grained Aspect Coordination Mechanism.,2010,20,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke20.html#ZambranoGF10,https://doi.org/10.1142/S021819401000502X +Mark Gerken,Guest Editors' Introduction - Best Papers from SEKE'98.,2000,10,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke10.html#GerkenD00,https://doi.org/10.1142/S021819400000002X +Gregor Engels,A Combined Reference Model- and View-Based Approach to System Specification.,1997,7,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke7.html#EngelsHTE97,https://doi.org/10.1142/S0218194097000266 +I-Hsin Chou,An Object-Oriented Security Knowledge Framework for the Nuclear Safety System Project.,2010,20,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke20.html#ChouF10,https://doi.org/10.1142/S0218194010004797 +Xiaobing Sun,Code Comment Quality Analysis and Improvement Recommendation: An Automated Approach.,2016,26,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke26.html#SunGLDLL16,https://doi.org/10.1142/S0218194016500339 +Sung Ly,Extendable and Dynamically Reconfigurable Multi-Protocol Firewall.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#LyB05,https://doi.org/10.1142/S0218194005001926 +Jianguo Lu,Xml Schema Matching.,2007,17,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke17.html#LuWW07,https://doi.org/10.1142/S0218194007003446 +Dongfeng Wang,A Systematic Design Method For High Quality Process-Control Systems Development.,2004,14,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke14.html#WangBY04,https://doi.org/10.1142/S0218194004001555 +M. Teresa Villalba,Software Quality Evaluation for Security COTS Products.,2010,20,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke20.html#VillalbaSCM10,https://doi.org/10.1142/S0218194010004633 +Motoshi Saeki,Enhancing Goal-Oriented Security Requirements Analysis using Common Criteria-Based Knowledge.,2013,23,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke23.html#SaekiHK13,https://doi.org/10.1142/S0218194013500174 +Oscar Mondragon,Generating Properties for Runtime Monitoring from Software Specification Patterns.,2007,17,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke17.html#MondragonGRMS07,https://doi.org/10.1142/S021819400700315X +Ali Kazemi,Absim: an Automated Business Service Identification Method.,2013,23,International Journal of Software Engineering and Knowledge Engineering,9,db/journals/ijseke/ijseke23.html#KazemiHS13,https://doi.org/10.1142/S0218194013500411 +Yen-Chieh Huang,Developing Web Applications Based on Model Driven Architecture.,2014,24,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke24.html#HuangC14,https://doi.org/10.1142/S0218194014500077 +Hongzhen Xu,A Specification and Detection Approach for Parallel Evolution Conflicts of Software Architectures.,2017,27,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke27.html#XuSL17,https://doi.org/10.1142/S0218194017500139 +José Luis álvarez Macías,Data Mining For The Management Of Software Development Process.,2004,14,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke14.html#MaciasMS04,https://doi.org/10.1142/S0218194004001841 +Filomena Ferrucci,Grammatical Inference for the Automatic Generation of Visual Languages.,1999,9,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke9.html#FerrucciV99,https://doi.org/10.1142/S0218194099000267 +Chi-Wai Fung,Advanced Conceptual Clustering and Associated Querying Facilities in Object-Oriented Databases.,1999,9,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke9.html#FungL99,https://doi.org/10.1142/S0218194099000218 +Takao Shimomura,Extensible Syntax-Oriented Verifier with Context-Dependent Recursive Verification.,2010,20,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke20.html#ShimomuraCT10,https://doi.org/10.1142/S0218194010004700 +Calin Eugen Nicolae Gal-Chis,MultiCoS - A Requirements Engineering Tool.,2018,28,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke28.html#Gal-ChisP18,https://doi.org/10.1142/S021819401850002X +Dan Tofan,Validating and Improving a Knowledge Acquisition Approach for Architectural Decisions.,2014,24,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke24.html#TofanAG14,https://doi.org/10.1142/S0218194014500211 +Fernando Ramos-Quintana,A Methodology for Modeling Interactions in Cooperative Information Systems Using Coloured Petri Nets.,2002,12,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke12.html#Ramos-QuintanaSC02,https://doi.org/10.1142/S0218194002001104 +Xiaoyong Li 0003,Pg-Trust: a Self-Adaptive and Scalable Trust Computing Model for Large-Scale Peer-to-Peer Grid Computing.,2011,21,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke21.html#LiZ11,https://doi.org/10.1142/S0218194011005451 +Jihyun Lee,A Comparison of Software Product Line Scoping Approaches.,2010,20,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke20.html#LeeKL10,https://doi.org/10.1142/S021819401000489X +Dirk Westhoff,An Optimistic Third Party Protocol to Protect a Mobile Agent's Binary Code,2001,11,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke11.html#Westhoff01,https://doi.org/10.1142/S0218194001000700 +Yufeng Li,Research Notes: Distributed Shadow for Router Security Defense.,2018,28,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke28.html#LiTQZ18,https://doi.org/10.1142/S021819401840003X +Michael P. Stovsky,Access Control Strategies for Coordinating Teams of Software Engineers.,1991,1,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke1.html#StovskyW91,https://doi.org/10.1142/S021819409100007X +C. Chandra,An Evaluation of Knowledge Engineering Approaches to the Maintenance of Evolutionary Software.,1998,8,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke8.html#ChandraR98,https://doi.org/10.1142/S0218194098000030 +Gregor Engels,Guest Editors' Introduction.,1997,7,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke7.html#EngelsS97,https://doi.org/10.1142/S0218194097000230 +W. Eric Wong,Guest Editors' Introduction.,2006,16,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke16.html#WongC06,https://doi.org/10.1142/S0218194006002859 +Fengzhong Zou,Improving Software Reliability Modeling Using Machine Learning Techniques.,2008,18,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke18.html#ZouD08,https://doi.org/10.1142/S0218194008003969 +Dong Ha Kim,Very High Data Rate Support for Mobile Cloud Services Using SDN-Based Heterogeneous Carrier Aggregation.,2014,24,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke24.html#KimKOLL14,https://doi.org/10.1142/S021819401440004X +Sathit Nakkrasae,An Rpcl-Based Indexing Approach For Software Component Classification.,2004,14,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke14.html#NakkrasaeS04,https://doi.org/10.1142/S0218194004001774 +Walt Scacchi,Understanding Software Productivity: towards a Knowledge-Based Approach.,1991,1,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke1.html#Scacchi91,https://doi.org/10.1142/S0218194091000214 +Juan Jose Cuadrado-Gallego,Applying Visual Learning in the Teaching of Software Measurement Concepts.,2011,21,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke21.html#Cuadrado-GallegoHPM11,https://doi.org/10.1142/S021819401100530X +Veli Hakkoymaz,User Control and Dynamic Reorganization of Multimedia Presentations During Playout.,1997,7,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke7.html#HakkoymazZD97,https://doi.org/10.1142/S0218194097000229 +Jonathan Lee 0001,Enhancing the Software Life Cycle of Knowledge-Based Systems Using a Task-Based Specification Methodology.,1993,3,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke3.html#LeeY93,https://doi.org/10.1142/S0218194093000021 +Gerardo Canfora,Iesem: Integrated Environment for Software Evolution Management.,1995,5,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke5.html#CanforaLV95,https://doi.org/10.1142/S0218194095000046 +Sjouke Mauw,Language-Driven System Design.,2004,14,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke14.html#MauwWW04,https://doi.org/10.1142/S0218194004001828 +Negar Koochakzadeh,Semi-Supervised Dynamic Classification for Intrusion Detection.,2010,20,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke20.html#KoochakzadehKJLAR10,https://doi.org/10.1142/S0218194010004669 +Pierfrancesco Bellini,IPR Centered Institutional Service and Tools for Content and Metadata Management.,2015,25,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke25.html#BelliniBNP15,https://doi.org/10.1142/S0218194015500242 +Yi Miao,A Clustering-Based Strategy to Identify Coincidental Correctness in Fault Localization.,2013,23,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke23.html#MiaoCLZZ13,https://doi.org/10.1142/S0218194013500186 +Santi Caballé,Enhancing Knowledge Management in Online Collaborative Learning.,2010,20,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke20.html#CaballeDXC10,https://doi.org/10.1142/S0218194010004839 +Haralambos Mouratidis,Secure Tropos: a Security-Oriented Extension of the Tropos Methodology.,2007,17,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke17.html#MouratidisG07,https://doi.org/10.1142/S0218194007003240 +Mike P. Papazoglou,The Organizational Impact of Integrating Multiple Tools.,1991,1,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke1.html#PapazoglouMB91,https://doi.org/10.1142/S0218194091000159 +A. P. Cherenkov,Knowledge Aspects of Resource Allocation Problems with Saturation.,1997,7,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke7.html#Cherenkov97,https://doi.org/10.1142/S0218194097000138 +Markus Borschbach,A Tool For Analyzing Magnetoencephalography-Data Based On Different Artificial Neural Networks.,2003,13,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke13.html#BorschbachLN03,https://doi.org/10.1142/S0218194003001457 +Chin-Chen Chang 0001,A Feature-Oriented Copyright Owner Proving Technique for Still Images.,2002,12,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke12.html#ChangHH02,https://doi.org/10.1142/S0218194002000937 +Andojo Ongkodjojo Ong,Pareto Simulated Annealing (Sa)-Based Multi-Objective Optimization for Mems Design and Application.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#OngT05,https://doi.org/10.1142/S021819400500221X +Grigoris Antoniou,Modularity and Correctness for Logic Programs and Knowledge Bases.,1994,4,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke4.html#Antoniou94,https://doi.org/10.1142/S0218194094000131 +Steven Wartik,Criteria for Comparing Reuse-Oriented Domain Analysis Approaches.,1992,2,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke2.html#WartikP92,https://doi.org/10.1142/S0218194092000191 +Timothy Bourke,Formal Models in Industry Standard Tools: an Argos Block within Simulink.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#BourkeS05,https://doi.org/10.1142/S0218194005002300 +Kwong-Luck Tan,Sleep Monitoring Devices Using Electric Field (E-Field) Mattress for Children with Eczema.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#TanTB05,https://doi.org/10.1142/S0218194005002221 +Heung Seok Chae,An Approach to Checking Behavioral Compatibility between Web Services.,2008,18,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke18.html#ChaeLB08,https://doi.org/10.1142/S0218194008003647 +George Spanoudakis,Guest Editors' Introduction.,2005,15,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke15.html#SpanoudakisZ05,https://doi.org/10.1142/S0218194005002579 +Stefan Biffl,Systematic Knowledge Engineering: Building Bodies of Knowledge from Published Research.,2014,24,International Journal of Software Engineering and Knowledge Engineering,10,db/journals/ijseke/ijseke24.html#BifflKREW14,https://doi.org/10.1142/S021819401440018X +Don S. Batory,Implementing a Domain Model for Data Structures.,1992,2,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke2.html#BatorySS92,https://doi.org/10.1142/S021819409200018X +Nenad Medvidovic,The Role of Middleware in Architecture-Based Software Development.,2003,13,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke13.html#MedvidovicDT03,https://doi.org/10.1142/S0218194003001330 +Bernhard Westfechtel,A Graph-Based System for Managing Configurations of Engineering Design Documents.,1996,6,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke6.html#Westfechtel96,https://doi.org/10.1142/S0218194096000235 +Yuting Chen,A Review Approach to Detecting Violations of Consistency between Specification and Program Structures.,2008,18,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke18.html#ChenLW08,https://doi.org/10.1142/S0218194008003994 +W. Eric Wong,Guest Editors' Introduction.,2011,21,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke21.html#WongWK11,https://doi.org/10.1142/S0218194011005244 +Vitus S. W. Lam,Formal Analysis of BPMN Models: a NuSMV-Based Approach.,2010,20,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke20.html#Lam10,https://doi.org/10.1142/S0218194010005079 +Tugkan Tuglular,Input Contract Testing of Graphical User Interfaces.,2016,26,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke26.html#TuglularBL16,https://doi.org/10.1142/S0218194016500091 +Mária Bieliková,An Approach to Automated Building of Software System Configurations.,1999,9,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke9.html#BielikovaN99,https://doi.org/10.1142/S0218194099000061 +Joseph Fong,Translating OODB Method to RDB Routine.,2001,11,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke11.html#FongC01,https://doi.org/10.1142/S0218194001000554 +James H. Cross II,Reverse Engineering Graphical Representations of X Source Code.,1996,6,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke6.html#CrossD96,https://doi.org/10.1142/S0218194096000144 +Martín López Nores,Bringing the Agile Philosophy to Formal Specification Settings.,2006,16,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke16.html#NoresADBRVGC06,https://doi.org/10.1142/S0218194006003075 +Jizhou Zhan,Impact of Software Complexity on Development Productivity.,2012,22,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke22.html#ZhanZZ12,https://doi.org/10.1142/S0218194012500301 +Umut Durak,Ontology-Based Domain Engineering for Trajectory Simulation Reuse.,2009,19,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke19.html#DurakOI09,https://doi.org/10.1142/S0218194009004532 +Pasquale Armenise,A Survey and Assessment of Software Process Representation Formalisms.,1993,3,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke3.html#ArmeniseBGM93,https://doi.org/10.1142/S0218194093000197 +Kang Zhang,Guest Editors: Introduction.,2007,17,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke17.html#ZhangSV07,https://doi.org/10.1142/S0218194007003203 +Fabio Massacci,From Hippocratic Databases to Secure Tropos: a Computer-Aided Re-Engineering Approach.,2007,17,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke17.html#MassacciMZ07,https://doi.org/10.1142/S0218194007003239 +Wolfgang Grieskamp,Action Machines: a Framework for Encoding and Composing Partial Behaviors.,2006,16,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke16.html#GrieskampKT06,https://doi.org/10.1142/S0218194006002963 +Jing zhou Li,A Business Process Centered Software Analysis Method.,2003,13,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke13.html#LiMY03,https://doi.org/10.1142/S021819400300124X +E. A. Mukhachiova,Linear Programming Cutting Problems.,1993,3,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke3.html#MukhachiovaZ93,https://doi.org/10.1142/S0218194093000240 +Hongyu Zhang,A Bayesian Network Approach to Rational Architectural Design.,2005,15,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke15.html#ZhangJ05,https://doi.org/10.1142/S0218194005002488 +Nada A. Dief,An Adaptive Semantic Descriptive Model for Multi-Document Representation to Enhance Generic Summarization.,2017,27,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke27.html#DiefAEe17,https://doi.org/10.1142/S0218194017500024 +Ra'Fat Al-Msie'deen,Automatic Documentation of [Mined] Feature Implementations from Source Code Elements and Use-Case Diagrams with the REVPLINE Approach.,2014,24,International Journal of Software Engineering and Knowledge Engineering,10,db/journals/ijseke/ijseke24.html#Al-MsiedeenHSUV14,https://doi.org/10.1142/S0218194014400142 +Yi-Hsing Chang,A High-Efficiency Knowledge Management System Based on Habitual Domains and Intelligent Agents.,2008,18,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke18.html#ChangY08,https://doi.org/10.1142/S0218194008004021 +Yi Deng,A Framework for the Modeling and Prototyping of Distributed Information Systems.,1991,1,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke1.html#DengC91,https://doi.org/10.1142/S0218194091000172 +Greg Boone,Case and its Challenge for Change.,1991,1,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke1.html#Boone91,https://doi.org/10.1142/S0218194091000147 +Jun Xu 0014,A Firewalling Scheme for Securing MPOA-Based Enterprise Networks.,1999,9,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke9.html#XuS99,https://doi.org/10.1142/S0218194099000115 +Sangkyun Kim,Assessment on Security Risks of Customer Relationship Management Systems.,2010,20,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke20.html#Kim10a,https://doi.org/10.1142/S0218194010004591 +Emal Nasseri,A Model for Predicting Class Movement in an Inheritance Hierarchy.,2011,21,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke21.html#NasseriC11,https://doi.org/10.1142/S021819401100544X +José Eloy Flórez,A Meta-Tool to Support the Development of Knowledge Engineering Methodologies and Projects.,2012,22,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke22.html#FlorezCF12,https://doi.org/10.1142/S0218194012500283 +I-Ling Yen,The Design and Implementation of a Customizable Fault Tolerance Framework.,1999,9,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke9.html#YenAJK99,https://doi.org/10.1142/S0218194099000127 +Kimmo Keränen,Ltcc Technology For Photonic and Millimeter Wave Module Integration.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#KerANenKLMK05,https://doi.org/10.1142/S0218194005002166 +L. T. Aschepkov,The Universal Solutions of Interval Systems of Linear Algebraical Equations.,1993,3,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke3.html#AschepkovD93,https://doi.org/10.1142/S0218194093000252 +Yi Deng,Constraint Propagation And Progressive Verification For Component-Based Process Model.,2004,14,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke14.html#DengWHT04,https://doi.org/10.1142/S0218194004001750 +Don S. Batory,Software Components for Object-Oriented Database Systems.,1993,3,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke3.html#BatoryV93,https://doi.org/10.1142/S0218194093000082 +Johan Silvander,Supporting Continuous Changes to Business Intents.,2017,27,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke27.html#SilvanderWWS17,https://doi.org/10.1142/S0218194017500449 +Alireza Sadeghi,Mbtdd: Model Based Test Driven Development.,2012,22,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke22.html#SadeghiM12,https://doi.org/10.1142/S0218194012500295 +Patrik Berander,Hierarchical Cumulative Voting (hcv) - Prioritization of Requirements in Hierarchies.,2006,16,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke16.html#BeranderJ06,https://doi.org/10.1142/S0218194006003026 +Chuanqi Tao,Cloud-Based Mobile Testing as a Service.,2016,26,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke26.html#TaoG16,https://doi.org/10.1142/S0218194016500078 +Murali Sitaraman,Performance-Parameterized Reusable Software Components.,1992,2,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke2.html#Sitaraman92,https://doi.org/10.1142/S0218194092000269 +Norman Wilde,The Extensible Dependency Analysis Tool Set: a Knowledge Base for Understanding Industrial Software.,1994,4,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke4.html#WildeCR94,https://doi.org/10.1142/S0218194094000258 +Teck Hong Koh,Design Analysis of the PropulsionaAnd Control System of an Underactuated Remotely Operated Vehicle Using Axiomatic Design Theory - Part 2.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#KOHTLLS05a,https://doi.org/10.1142/S0218194005002294 +Giuseppe Della Penna,Sybel: a System Modelling Language Enhancing Automatic Support in the Software Development Process.,2013,23,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke23.html#PennaOIMSC13,https://doi.org/10.1142/S021819401350006X +Prasanna Lakshmi Kompalli,Efficient Mining of Data Streams Using Associative Classification Approach.,2015,25,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke25.html#KompalliC15,https://doi.org/10.1142/S0218194015500059 +Nadia Bouassida,Evaluation of an Automated Multi-phase Approach for Patterns Discovery.,2013,23,International Journal of Software Engineering and Knowledge Engineering,10,db/journals/ijseke/ijseke23.html#BouassidaBI13,https://doi.org/10.1142/S0218194013500435 +Hala Skaf,Maintaining Shared Workspaces Consistency during Software Development.,1999,9,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke9.html#SkafCG99,https://doi.org/10.1142/S0218194099000334 +Yi-Ping Phoebe Chen,Guest Editor'S Introduction.,2003,13,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke13.html#Chen03,https://doi.org/10.1142/S0218194003001470 +Yanchun Zhang,An Efficient Test for the Validity of Unbiased Hybrid Knowledge Fragmentation in Distributed Databases.,1992,2,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke2.html#ZhangOC92,https://doi.org/10.1142/S0218194092000270 +Ronggong Song,Protect Virtual Property in Online Gaming System.,2007,17,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke17.html#SongKYC07,https://doi.org/10.1142/S0218194007003367 +Giuseppe Di Modica,A P2P Based Architecture for Semantic Web Service Discovery.,2011,21,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke21.html#ModicaTV11,https://doi.org/10.1142/S0218194011005578 +Marek Reformat,Guest Editor's Introduction.,2015,25,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke25.html#Reformat15,https://doi.org/10.1142/S0218194015020015 +Ralph Depke,Roles in Agent-Oriented Modeling.,2001,11,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke11.html#DepkeHK01,https://doi.org/10.1142/S0218194001000529 +Iaakov Exman,Linear Software Models: Standard Modularity Highlights Residual Coupling.,2014,24,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke24.html#Exman14,https://doi.org/10.1142/S0218194014500089 +Gang Li,What Will Affect Software Reuse: A Causal Model Analysis.,2004,14,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke14.html#LiD04,https://doi.org/10.1142/S021819400400166X +Tao Zhang 0001,Guiding Bug Triage through Developer Analysis in Bug Reports.,2016,26,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke26.html#ZhangYLC16,https://doi.org/10.1142/S0218194016500170 +Martin von Mohrenschildt,Predictive Traces in Hybrid Systems.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#Mohrenschildt05,https://doi.org/10.1142/S0218194005002373 +Sigrid Goldmann,Distributed Process Planning Support with MILOS.,2000,10,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke10.html#GoldmannMH00,https://doi.org/10.1142/S0218194000000298 +Krishna M. Kavi,Specification and Analysis of Real-Time Systems Using CSP and Petri Nets.,1996,6,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke6.html#KaviSR96,https://doi.org/10.1142/S0218194096000119 +Humberto Cortés,Enterprise WAE: A Lightweight UML Extension for the Characterization of the Presentation Tier of Enterprise Applications with MDD-Based Mockup Generation.,2017,27,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke27.html#CortesN17,https://doi.org/10.1142/S0218194017500486 +Tsong Yueh Chen,On Favourable Conditions for Adaptive Random Testing.,2007,17,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke17.html#ChenKZ07,https://doi.org/10.1142/S0218194007003501 +Chien-Hung Liu,An Object-based Data Flow Testing Approach for Web Applications.,2001,11,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke11.html#LiuKHH01,https://doi.org/10.1142/S0218194001000499 +Seçkin Tunalilar,An Exploration of Functional Size Based Effort Estimation Models.,2011,21,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke21.html#TunalilarD11,https://doi.org/10.1142/S0218194011005347 +Jeffrey J. P. Tsai,Guest Editors' Introduction.,2005,15,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke15.html#TsaiZ05,https://doi.org/10.1142/S0218194005002427 +Joseph Fong,Concurrent Data Materialization for XML-Enabled Database with Semantic Metadata.,2010,20,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke20.html#FongSY10,https://doi.org/10.1142/S0218194010004748 +Eltefaat Shokri,An Approach for Adaptive Fault Tolerance in Object-Oriented Open Distributed Systems.,1998,8,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke8.html#ShokriHCDK98,https://doi.org/10.1142/S0218194098000182 +Stephen J. H. Yang,Development of Wireless Embedded Systems Using Component Based Software.,2002,12,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke12.html#YangTC02,https://doi.org/10.1142/S0218194002000871 +Sung-Koo Lee,SOORLS: A Software Reuse Approach on the Web.,1999,9,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke9.html#LeeU99,https://doi.org/10.1142/S0218194099000188 +Weiqiang Kong,Specification and Verification of Workflows with Rbac Mechanism and Sod Constraints.,2007,17,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke17.html#KongOF07,https://doi.org/10.1142/S0218194007003124 +Atsuo Yoshitaka,Knowledge-Assisted Retrieval of Spatiotemporal Content in Multimedia Databases.,1997,7,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke7.html#YoshitakaHI97,https://doi.org/10.1142/S0218194097000187 +Nathalie Cindy Kuicheu,An Iterative Approach to Managing Uncertain Mappings in Dataspace Support Platforms.,2014,24,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke24.html#KuicheuWTXDS14,https://doi.org/10.1142/S0218194014500247 +Stephen C. Medders,Using Rule Structure to Evaluate the Completeness of Rule-Based System Testing: a Case Study.,2010,20,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke20.html#MeddersAL10,https://doi.org/10.1142/S0218194010005006 +Vladimir P. Sliva,Protocol Specification Design Using an Object-Based Petri Net Formalism.,1999,9,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke9.html#SlivaMS99,https://doi.org/10.1142/S0218194099000073 +Christine W. Chan,Knowledge Engineering of a Monitoring and Control Decision Support System.,2000,10,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke10.html#ChanKT00,https://doi.org/10.1142/S0218194000000183 +Jose Manuel Redondo,Optimizing Reflective Primitives of Dynamic Languages.,2008,18,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke18.html#RedondoOL08,https://doi.org/10.1142/S021819400800388X +Elham Darmanaki Farahani,Configuration Management Model in Evolutionary Software Product Line.,2016,26,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke26.html#FarahaniH16,https://doi.org/10.1142/S0218194016500182 +Ching-Pao Chang,Software Risk Modeling by Clustering Project Metrics.,2015,25,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke25.html#Chang15,https://doi.org/10.1142/S0218194015500175 +Diego Martín de Andrés,Prosumer Framework for Knowledge Management Based on Prosumer Service Patterns.,2016,26,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke26.html#AndresARS16,https://doi.org/10.1142/S0218194016500406 +Jingyu Kim,A Comparison of Software Product Line Traceability Approaches from End-to-End Traceability Perspectives.,2014,24,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke24.html#KimKL14,https://doi.org/10.1142/S0218194014500260 +Alvaro Ortigosa,Using Incremental Planning to Foster Application Framework Reuse.,2000,10,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke10.html#OrtigosaC00,https://doi.org/10.1142/S0218194000000237 +Iman Attarzadeh,Proposing an Effective Artificial Neural Network Architecture to Improve the Precision of Software Cost Estimation Model.,2014,24,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke24.html#AttarzadehO14,https://doi.org/10.1142/S0218194014500338 +Arnon Sturm,A Quantitative-Based Comparison of MaSE and OPM/MAS Design Results.,2008,18,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke18.html#SturmTG08,https://doi.org/10.1142/S0218194008003945 +Francisco Ruiz 0001,An Ontology For The Management Of Software Maintenance Projects.,2004,14,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke14.html#RuizBPG04,https://doi.org/10.1142/S0218194004001646 +Hyung-Min Koo,An Analysis of Problem-Solving Patterns in Open Source Software.,2015,25,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke25.html#KooK15,https://doi.org/10.1142/S0218194015500187 +Hosein Marzi,High-Speed Rt Monitoring System Using Neural Networks.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#Marzi05,https://doi.org/10.1142/S0218194005002312 +Yuliang Shi,A Sub Chunk-Confusion Based Privacy Protection Mechanism for Association Rules in Cloud Services.,2016,26,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke26.html#ShiZCL16,https://doi.org/10.1142/S0218194016400015 +Peng Wu 0002,Model-based Testing of Concurrent Programs with Predicate Sequencing Constraints.,2006,16,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke16.html#WuL06,https://doi.org/10.1142/S0218194006002999 +Nenad Stankovic,Visual Programming for Message-Passing Systems.,1999,9,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke9.html#StankovicZ99,https://doi.org/10.1142/S0218194099000231 +Igor Ivkovic,Towards Automatic Establishment of Model Dependencies Using Formal Concept Analysis.,2006,16,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke16.html#IvkovicK06,https://doi.org/10.1142/S0218194006002902 +Xavier Franch,Systematic Construction of I* Strategic Dependency Models for Socio-technical Systems.,2007,17,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke17.html#FranchGMQACNHB07,https://doi.org/10.1142/S0218194007003148 +CholMyong Pak,An Empirical Study on Software Defect Prediction Using Over-Sampling by SMOTE.,2018,28,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke28.html#PakWS18,https://doi.org/10.1142/S0218194018500237 +Minghui Tian,A Visual Attention Model for Natural Scenes Based on Dynamic Feature Combination.,2010,20,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke20.html#TianWY10,https://doi.org/10.1142/S0218194010005043 +A. P. Dhande,Design of 3-Valued R-S and D Flip-Flops Based on Simple Ternary Gates.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#DhandeI05,https://doi.org/10.1142/S0218194005002324 +Catarina Costa,Characterizing the Problem of Developers' Assignment for Merging Branches.,2014,24,International Journal of Software Engineering and Knowledge Engineering,10,db/journals/ijseke/ijseke24.html#CostaFGM14,https://doi.org/10.1142/S0218194014400166 +Amir A. Khwaja,A Framework for the Evaluation of Real-time Specification Techniques.,2006,16,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke16.html#KhwajaU06,https://doi.org/10.1142/S0218194006003063 +Jarkko Hyysalo,A Design Theory for Cognitive Workflow Systems.,2017,27,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke27.html#HyysaloOK17,https://doi.org/10.1142/S0218194017500061 +Yang Li 0028,Programming Style Based Program Partition.,2005,15,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke15.html#LiYCZ05,https://doi.org/10.1142/S0218194005002610 +Stephen G. MacDonell,The Viability of Fuzzy Logic Modeling in Software Development Effort Estimation: Opinions and Expectations of Project Managers.,2005,15,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke15.html#MacdonellG05,https://doi.org/10.1142/S0218194005002555 +Tiansi Dong,Modeling Human Intelligence with Slow Intelligence Systems.,2012,22,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke22.html#Dong12,https://doi.org/10.1142/S0218194012400141 +Ingolf Krüger,From Scenarios to Hierarchical Broadcasting Software Architectures Using UML-RT.,2002,12,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke12.html#KrugerPSB02,https://doi.org/10.1142/S0218194002000858 +Sourav Bhattacharya,Software Engineering Practices and Tools for Real-Time Systems (Part II): Guest Editor's Introduction.,1996,6,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke6.html#BhattacharyaMT96a,https://doi.org/10.1142/S0218194096000314 +Taghi M. Khoshgoftaar,Predicting Fault-Prone Modules in Embedded Systems Using Analogy-Based Classification Models.,2002,12,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke12.html#KhoshgoftaarCS02,https://doi.org/10.1142/S0218194002000883 +Neelima Iyer,Lilliputian Hardware Platform For Scientific Applications.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#IyerKJU05,https://doi.org/10.1142/S0218194005002361 +Adler Diniz de Souza,A Proposal for the Improvement of Project's Cost Predictability Using Earned Value Management and Historical Data of Cost - An Empirical Study.,2015,25,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke25.html#SouzaRS15,https://doi.org/10.1142/S0218194015400021 +Sungwon Kang,Architecture-Based Planning of Software Evolution.,2014,24,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke24.html#KangG14,https://doi.org/10.1142/S0218194014500090 +Xiaodong Yi,Slicing Execution for Model Checking C Programs.,2006,16,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke16.html#YiWY06,https://doi.org/10.1142/S0218194006002987 +Sungwon Kang,A Framework for Tool-Based Software Architecture Reconstruction.,2009,19,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke19.html#KangLL09,https://doi.org/10.1142/S0218194009004167 +Soichiro Ohara,A Software Test and Evaluation Environment Based on Longitudinal Database.,2002,12,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke12.html#OharaTMOHWSP02,https://doi.org/10.1142/S0218194002000901 +Gennaro Costagliola,Guest Editors' Introduction.,2012,22,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke22.html#CostagliolaLNN12,https://doi.org/10.1142/S0218194012020044 +Sana Chakri,Semantic Trajectory Knowledge Discovery: A Promising Way to Extract Meaningful Patterns from Spatiotemporal Data.,2017,27,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke27.html#ChakriRh17,https://doi.org/10.1142/S0218194017500140 +Yulei Pang,Fault Localizations Through Feature Selections.,2017,27,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke27.html#PangXN17,https://doi.org/10.1142/S0218194017500474 +Iaakov Exman,Linear Software Models: Decoupled Modules from Modularity Matrix Eigenvectors.,2015,25,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke25.html#Exman15,https://doi.org/10.1142/S0218194015500308 +Martin Ivarsson,Practice Selection Framework.,2012,22,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke22.html#IvarssonG12,https://doi.org/10.1142/S0218194012500027 +Farokh B. Bastani,A Software Reliability Model for Artificial Intelligence Programs.,1993,3,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke3.html#BastaniCT93,https://doi.org/10.1142/S0218194093000057 +Saeed Setayeshi,Optimal Design of Wide Area Based on Fuzzy Controller and Intelligent Method.,2017,27,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke27.html#SetayeshiRNY17,https://doi.org/10.1142/S0218194017500164 +Hermann Kaindl,Reasoning Types and AI Programming Paradigms.,1992,2,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke2.html#KaindlZ92,https://doi.org/10.1142/S0218194092000063 +Bernhard Bauer,Agent UML: A Formalism for Specifying Multiagent Software Systems.,2001,11,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke11.html#BauerMO01,https://doi.org/10.1142/S0218194001000517 +Weikai Miao,An Evolutionary Method for the Formal Specification Construction of Service-Based Software.,2016,26,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke26.html#MiaoW16,https://doi.org/10.1142/S0218194016400039 +Ettore Merlo,Multi-Valued Constant Propagation Analysis for User Interface Reengineering.,1995,5,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke5.html#MerloGHM95,https://doi.org/10.1142/S0218194095000022 +Kai-Yuan Cai,Guest Editors' Introduction.,2006,16,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke16.html#CaiOT06,https://doi.org/10.1142/S0218194006002975 +Jing Dong,A Review of Design Pattern Mining Techniques.,2009,19,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke19.html#DongZP09,https://doi.org/10.1142/S021819400900443X +Maurizio Morisio,Software Product and Process Assessment through Profile-Based Evaluation.,2003,13,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke13.html#MorisioST03,https://doi.org/10.1142/S0218194003001433 +Bailing Wang,Research Notes: User Identification Model Based on Mouse Behaviors.,2018,28,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke28.html#WangLWXS18,https://doi.org/10.1142/S0218194018400028 +Adel Smeda,My Architecture: a Knowledge Representation Meta-Model for Software Architecture.,2008,18,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke18.html#SmedaOK08,https://doi.org/10.1142/S0218194008003921 +Yun-Fei Jia,Using Neural Networks to Forecast Available System Resources: An Approach and Empirical Investigation.,2015,25,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke25.html#JiaZXZC15,https://doi.org/10.1142/S0218194015500102 +Frederick E. Petry,Automatic Programming and Program Maintenance with Genetic Programming.,1995,5,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke5.html#PetryD95,https://doi.org/10.1142/S0218194095000095 +Soochan Hwang,A Fast 3-D Visualization Methodology Using Characteristic Views of Objects.,1998,8,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke8.html#HwangCWS98,https://doi.org/10.1142/S021819409800008X +R. Félix,Binary Encoding of Discernibility Patterns to Find Minimal Coverings.,2002,12,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke12.html#FelixU02,https://doi.org/10.1142/S0218194002000809 +André Luís Andrade Menolli,Organizational Learning Applied to Software Engineering: a Systematic Review.,2013,23,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke23.html#MenolliRM13,https://doi.org/10.1142/S0218194013500356 +Mariusz Pelc,Context-aware Fuzzy Control Systems.,2014,24,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke24.html#Pelc14,https://doi.org/10.1142/S0218194014500326 +Kemas Muslim Lhaksmana,Role-Based Modeling for Designing Agent Behavior in Self-Organizing Multi-Agent Systems.,2018,28,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke28.html#LhaksmanaMI18,https://doi.org/10.1142/S0218194018500043 +Tülin Erçelebi Ayyildiz,Size and Effort Estimation Based on Problem Domain Measures for Object-Oriented Software.,2018,28,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke28.html#AyyildizK18,https://doi.org/10.1142/S0218194018500079 +Anna Formica,Similarity Of Xml-Schema Elements Supported By Domain Ontologies.,2005,15,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke15.html#Formica05,https://doi.org/10.1142/S0218194005001872 +Edmund Kazmierczak,Verifying Requirements Through Mathematical Modelling and Animation.,2000,10,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke10.html#KazmierczakDSW00,https://doi.org/10.1142/S0218194000000146 +Francesco Colace,Learning Bayesian Network Structure Using a MultiExpert Approach.,2014,24,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke24.html#ColaceSG14,https://doi.org/10.1142/S0218194014500119 +Cheeyang Song,A Refinement Technique for Duplication and Collision Between Features in Software Product Line Engineering.,2014,24,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke24.html#SongLL14,https://doi.org/10.1142/S021819401450020X +Carol L. Hoover,Analytical Partition of Software Components for Evolvable and Reliable MEMS Design Tools.,1999,9,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke9.html#HooverK99,https://doi.org/10.1142/S0218194099000103 +Siti Rochimah,Utilizing Multifaceted Requirement Traceability Approach: a Case Study.,2011,21,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke21.html#RochimahWA11,https://doi.org/10.1142/S0218194011005372 +Huanjing Wang,An Empirical Investigation on Wrapper-Based Feature Selection for Predicting Software Quality.,2015,25,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke25.html#WangKN15,https://doi.org/10.1142/S0218194015400057 +Vladimir D. Mazurov,Guest Editor's Introduction.,1993,3,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke3.html#Mazurov93,https://doi.org/10.1142/S0218194093000306 +Sanjeev Manchanda,Change Management and Software Reuse Supportive 'Genetic Information System Development and Maintenance' Model.,2009,19,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke19.html#ManchandaSD09,https://doi.org/10.1142/S0218194009004076 +Chi-Ming Chung,Integration Object-Oriented Software Testing and Metrics.,1997,7,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke7.html#ChungSWL97,https://doi.org/10.1142/S0218194097000060 +Jiexin Lian,A Modeling Methodology for Conflict Control in Multi-Agent Systems.,2008,18,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke18.html#LianS08,https://doi.org/10.1142/S0218194008003659 +Patrick Cogan,A Quantitative and Qualitative Comparison of Distributed Information Processing Using Mobile Agents Realised in RMI and Voyager.,2001,11,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke11.html#CoganGS01,https://doi.org/10.1142/S0218194001000694 +Daniel E. Cooke,Possible Effects of the Next Generation Programming Language on the Software Process Model.,1993,3,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke3.html#Cooke93,https://doi.org/10.1142/S0218194093000185 +James M. Neighbors,The Evolution from Software Components to Domain Analysis.,1992,2,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke2.html#Neighbors92,https://doi.org/10.1142/S0218194092000166 +Cheeyang Song,An Integrated GUI-Business Component Modeling Method for the MDD- and MVC-Based Hierarchical Designs.,2011,21,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke21.html#SongCK11,https://doi.org/10.1142/S0218194011005293 +Young-Gab Kim,Variability Management for Software Product-Line Architecture Development.,2011,21,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke21.html#KimLJ11,https://doi.org/10.1142/S0218194011005542 +Laszlo A. Belady,From Software Engineering to Knowledge Engineering: The Shape of the Software Industry in the 1990s.,1991,1,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke1.html#Belady91,https://doi.org/10.1142/S0218194091000032 +Haiping Xu,A Security Based Model for Mobile Agent Software Systems.,2005,15,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke15.html#XuZS05,https://doi.org/10.1142/S0218194005002518 +Mateusz Radzimski,Intelligent Architecture for Comparative Analysis of Public Companies Using Semantics and XBRL Data.,2014,24,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke24.html#RadzimskiSGT14,https://doi.org/10.1142/S0218194014500314 +Alvaro E. Prieto,Defining Reusable Administrative Processes Using a Generic Ontology.,2012,22,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke22.html#PrietoT12,https://doi.org/10.1142/S0218194012400050 +Sira Vegas,What Information is Relevant When Selecting Software Testing Techniques?,2002,12,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke12.html#VegasuB02,https://doi.org/10.1142/S0218194002001116 +Jinfu Chen,Component Security Testing Approach Based on Extended Chemical Abstract Machine.,2012,22,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke22.html#ChenLW12,https://doi.org/10.1142/S0218194012500039 +Jang-Eui Hong,Incremental Scenario Modeling Using Hierarchical Object-Oriented Petri Net.,2001,11,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke11.html#HongB01,https://doi.org/10.1142/S0218194001000566 +Sung-Bae Cho,An Evolutionary Approach to Program Transformation and Synthesis.,1995,5,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke5.html#ChoR95,https://doi.org/10.1142/S0218194095000101 +Marek Krótkiewicz,Association-Oriented Database Model - n-ary Associations.,2017,27,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke27.html#Krotkiewicz17,https://doi.org/10.1142/S0218194017500103 +Dietmar Pfahl,Knowledge Acquisition and Process Guidance for Building System Dynamics Simulation Models: an Experience Report from Software Industry.,2000,10,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke10.html#PfahlL00,https://doi.org/10.1142/S0218194000000213 +Antonina Dattolo,Distributed Information and Control in a Concurrent Hypermedia-Oriented Architecture.,2000,10,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke10.html#DattoloL00,https://doi.org/10.1142/S0218194000000158 +Waldemar W. Koczkodaj,Guest Editor's Introduction: Induction Algorithms.,1991,1,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke1.html#Koczkodaj91,https://doi.org/10.1142/S0218194091000275 +Sandrine Blazy,Partial Evaluation for the Understanding of Fortran Programs.,1994,4,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke4.html#BlazyF94,https://doi.org/10.1142/S021819409400026X +Bruce I. Blum,Towards a Uniform Structured Representation for Application Generation.,1991,1,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke1.html#Blum91,https://doi.org/10.1142/S0218194091000068 +George E. Tsekouras,An Effective fuzzy Clustering Algorithm for Web Document Classification: a Case Study in Cultural Content Mining.,2013,23,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke23.html#TsekourasG13,https://doi.org/10.1142/S021819401350023X +Xin Li,User Profiling in the Chronobot/Virtual Classroom System.,2007,17,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke17.html#LiC07,https://doi.org/10.1142/S0218194007003185 +Adrián Hernández-López,Software Engineering Job Productivity - a Systematic Review.,2013,23,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke23.html#Hernandez-LopezPG13,https://doi.org/10.1142/S0218194013500125 +Martin P. Ward,Formal Methods to Aid the Evolution of Software.,1995,5,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke5.html#WardB95,https://doi.org/10.1142/S0218194095000034 +Michel Jaring,Expressing Product Diversification -- Categorizing And Classifying Variability In Software Product Family Engineering.,2004,14,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke14.html#JaringB04,https://doi.org/10.1142/S0218194004001804 +Fernando Alonso,Trends in Life-Cycle Models for SE and KE: Proposal for a Spiral-conical Life-Cycle Approach.,1995,5,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke5.html#AlonsoJP95,https://doi.org/10.1142/S0218194095000228 +Matthias Book,Cost Simulation and Performance Optimization of Web-based Applications on Mobile Channels.,2006,16,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke16.html#BookGHKK06,https://doi.org/10.1142/S021819400600294X +Federico Bergenti,Supporting Agent-Oriented Modelling with UML.,2002,12,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke12.html#BergentiP02,https://doi.org/10.1142/S0218194002001086 +Liguo Yu,Applying Association Mining to Change Propagation.,2008,18,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke18.html#YuS08,https://doi.org/10.1142/S0218194008004008 +Prabhat Ranjan,A Novel Approach of Requirement Gathering and Analysis for Agent Oriented Software Engineering (AOSE).,2009,19,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke19.html#RanjanM09,https://doi.org/10.1142/S0218194009004064 +Akanksha,Visualizing Animation Databases.,2003,13,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke13.html#AkankshaHPR03,https://doi.org/10.1142/S0218194003001214 +Xiaofeng Xu,Ties within Fault Localization rankings: Exposing and Addressing the Problem.,2011,21,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke21.html#XuDWG11,https://doi.org/10.1142/S0218194011005505 +Mario Kusek,Verification of the Mobile Agent Network Simulator - a Tool for Simulating Multi-Agent Systems.,2008,18,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke18.html#KusekJJ08,https://doi.org/10.1142/S0218194008003854 +Ji Y. Lee,Adding Form to Real-Time System Specification and Simulation.,1999,9,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke9.html#LeeKKK99,https://doi.org/10.1142/S0218194099000346 +Hazem El-Gendy,Formal Method for Automated Transformation of Lotos Specifications to Estelle Specifications.,2005,15,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke15.html#El-GendyE05,https://doi.org/10.1142/S0218194005002567 +Andrea Herrmann,Icrad: an Integrated Process for the Solution of Requirements Conflicts and Architectural Design.,2006,16,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke16.html#HerrmannPP06,https://doi.org/10.1142/S021819400600304X +María Eugenia Cabello,A Generic Process for the Design and Generation of Software Product Line Skeleton Architectures.,2014,24,International Journal of Software Engineering and Knowledge Engineering,9,db/journals/ijseke/ijseke24.html#CabelloRSB14,https://doi.org/10.1142/S0218194014500405 +Siu Liu,A Formal Framework to Support Workflow Adaptation.,2002,12,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke12.html#LiuGS02,https://doi.org/10.1142/S0218194002000925 +Günther Ruhe,Guest Editor's Introduction: 11th International Conference on Software Engineering and Knowledge Engineering (SEKE'99).,2000,10,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke10.html#Ruhe00,https://doi.org/10.1142/S0218194000000195 +Linh Anh Nguyen,Design of the Tableau Reasoner TGC2 for Description Logics.,2016,26,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke26.html#Nguyen16,https://doi.org/10.1142/S0218194016500467 +Valeria Seidita,The Metamodel: a Starting Point for Design Processes Construction.,2010,20,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke20.html#SeiditaCHGGKG10,https://doi.org/10.1142/S0218194010004785 +Tien Tran-Thuong,A Multimedia Model Based on Structured Media and Sub-Elements for Complex Multimedia Authoring and Presentation.,2002,12,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke12.html#TienR02,https://doi.org/10.1142/S0218194002001037 +Ulrike Kölsch,A Framework for Object-Oriented Reverse Engineering of Legacy Information Systems.,1999,9,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke9.html#KolschL99,https://doi.org/10.1142/S0218194099000048 +Nader Kolsi,Agent Based Data Storage and Distribution in Data Warehouses.,2008,18,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke18.html#KolsiAG08,https://doi.org/10.1142/S0218194008003842 +Hyun-seok Min,Traceability Guideline for Software Requirements and UML Design.,2016,26,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke26.html#Min16,https://doi.org/10.1142/S0218194016500054 +Luca Cernuzzi,Adaptable Multi-Agent Systems: the Case of the Gaia Methodology.,2011,21,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke21.html#CernuzziMOZ11,https://doi.org/10.1142/S0218194011005384 +Ana María Moreno 0001,Results of the Application of a Linguistic Approach to Object-Oriented Analysis.,1998,8,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke8.html#Moreno98,https://doi.org/10.1142/S021819409800025X +Motoshi Saeki,Supporting Distributed Individual Tasks in Cooperative Specification Development.,2000,10,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke10.html#SaekiST00,https://doi.org/10.1142/S0218194000000171 +Carlo Montangero,Software Process Monitoring Mechanisms in Oikos.,1994,4,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke4.html#MontangeroS94,https://doi.org/10.1142/S0218194094000234 +Hongzhen Xu,Modeling and Verifying Composite Dynamic Evolution of Software Architectures using Hypergraph Grammars.,2013,23,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke23.html#XuZ13,https://doi.org/10.1142/S0218194013500204 +Liu Ji-Wei,Towards Dynamic Evolution of Runtime Variability Based on Computational Reflection.,2018,28,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke28.html#Ji-WeiX18,https://doi.org/10.1142/S0218194018500092 +Alain Abran,Guest Editors' Introduction.,2011,21,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke21.html#AbranCD11,https://doi.org/10.1142/S0218194011005360 +Gihong Kim,Generation of Business Event Data Sets for Testing RFID Information Services.,2015,25,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke25.html#KimH15,https://doi.org/10.1142/S0218194015500096 +Annika Wagner,A Formal Object Specification Technique Integrating Object and Functional Model.,1997,7,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke7.html#Wagner97,https://doi.org/10.1142/S021819409700028X +Masahito Kurihara,Using ATMS to Efficiently Verify the Termination of Rewrite Rule Programs.,1992,2,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke2.html#KuriharaKO92,https://doi.org/10.1142/S0218194092000257 +Paolo Ciancarini,Guest Editor's Introduction.,1996,6,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke6.html#CiancariniS96,https://doi.org/10.1142/S0218194096000296 +Rebeca P. Díaz Redondo,Arifs Methodology Reusing Incomplete Models at the Requirements Specification Stage.,2005,15,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke15.html#RedondoAVDS05,https://doi.org/10.1142/S021819400500249X +Paolo Ciancarini,Agent-Based Software Engineering - Guest Editors' Introduction.,2001,11,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke11.html#CiancariniW01,https://doi.org/10.1142/S021819400100058X +Angelo Chianese,A Novel Approach for Semantic Interoperability in the Web Based on the Semantic Triangle Communication Model.,2011,21,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke21.html#ChianeseFMTC11,https://doi.org/10.1142/S0218194011005591 +Lily Chang,A Methodology for Modeling Multi-Agent Systems using Nested Petri Nets.,2012,22,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke22.html#ChangHS12,https://doi.org/10.1142/S0218194012500246 +Frank Houdek,Defect Detection for Executable Specifications - An Experiment.,2002,12,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke12.html#HoudekSE02,https://doi.org/10.1142/S0218194002001128 +Kuang Xu,Specification of Multimedia Software Systems Using an Object Oriented Architecture Description Language.,1999,9,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke9.html#XuT99,https://doi.org/10.1142/S0218194099000401 +Pavlina Fragkou,Information Extraction versus Text Segmentation for Web Content Mining.,2013,23,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke23.html#Fragkou13,https://doi.org/10.1142/S0218194013500332 +Qi Xu,Knowledge Adaptability Evaluation in View of Patent Citation in Technological Evolutionary Process: A Case Study of Fuel Cell.,2015,25,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke25.html#XuGF15,https://doi.org/10.1142/S0218194015500278 +Sung-Bae Cho,Data Mining For Gene Expression Profiles From Dna Microarray.,2003,13,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke13.html#ChoW03,https://doi.org/10.1142/S0218194003001469 +Timothy K. Shih,EVCS - A Complete Electronic Virtual Conference System.,2001,11,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke11.html#ShihHH01,https://doi.org/10.1142/S0218194001000426 +Derek Doran,Discovering Perceptions in Online Social Media: A Probabilistic Approach.,2014,24,International Journal of Software Engineering and Knowledge Engineering,9,db/journals/ijseke/ijseke24.html#DoranGD14,https://doi.org/10.1142/S0218194014400129 +Ning Wang,Summarizing Personal Dataspace Based on User Interests.,2016,26,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke26.html#WangT16,https://doi.org/10.1142/S0218194016500224 +Jussipekka Leiwo,Understanding and Communicating It Security Specifications with Uml.,2005,15,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke15.html#LeiwoV05,https://doi.org/10.1142/S0218194005002580 +Juan Manuel Dodero,Engineering the Life-Cycle of Semantic Services-Enhanced Learning Systems.,2010,20,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke20.html#DoderoGT10,https://doi.org/10.1142/S0218194010004852 +Shikai Guo,Crowdsourced Web Application Testing Under Real-Time Constraints.,2018,28,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke28.html#GuoCLGL18,https://doi.org/10.1142/S0218194018500213 +David Bolton,Knowledge-Based Support for Requirements Engineering.,1992,2,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke2.html#BoltonJTFG92,https://doi.org/10.1142/S0218194092000154 +John C. Grundy,Softarch: Tool Support for Integrated Software Architecture Development.,2003,13,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke13.html#GrundyH03,https://doi.org/10.1142/S0218194003001238 +Yu Whoan Ahn,Knowledge and Case-Based Reasoning for Customization of Software Processes - A Hybrid Approach.,2003,13,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke13.html#AhnAP03,https://doi.org/10.1142/S0218194003001305 +Kian Hsiang Low,Modeling and Motion Control of Robotic Hand for Telemanipulation Application.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#LowWLC05,https://doi.org/10.1142/S0218194005002270 +Fabio Pittarello,Semantic Description of Web 3D Worlds through Social Tagging.,2011,21,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke21.html#Pittarello11,https://doi.org/10.1142/S0218194011005165 +Spiros Mancoridis,ISF: A Visual Formalism for Specifying Interconnection Styles for Software Design.,1998,8,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke8.html#Mancoridis98,https://doi.org/10.1142/S0218194098000285 +Ning Wang,Identifying Multiple Entity Columns in Web Tables.,2018,28,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke28.html#WangR18,https://doi.org/10.1142/S0218194018500109 +Boumediene Belkhouche,Multiple Views Analysis of Software Designs.,2000,10,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke10.html#BelkhoucheO00,https://doi.org/10.1142/S021819400000033X +Shi-Kuo Chang,Processing Continuous Queries on Sensor-Based Multimedia Data Streams by Multimedia Dependency Analysis and Ontological Filtering.,2011,21,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke21.html#ChangCZS11,https://doi.org/10.1142/S0218194011005669 +Joseph Fong,A Frame Model Approach for Expert and Database System Integration.,1999,9,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke9.html#FongH99,https://doi.org/10.1142/S021819409900022X +Daniel E. Cooke,Guest Editor's Introduction: the Impact of Case on Software Development Processes.,1991,1,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke1.html#Cooke91,https://doi.org/10.1142/S0218194091000111 +Zhongjie Wang,Characterizing Individualized Coding Contributions of OSS Developers from Topic Perspective.,2017,27,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke27.html#WangPX17,https://doi.org/10.1142/S021819401750005X +Aimrudee Jongtaveesataporn,FASICA Framework: Service Selection Using K-d Tree and Cache.,2015,25,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke25.html#Jongtaveesataporn15,https://doi.org/10.1142/S0218194015400215 +C. K. Shriram,Empirical Study on the Distribution of Bugs in Software Systems.,2018,28,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke28.html#ShriramKN18,https://doi.org/10.1142/S0218194018500055 +Pankaj Kamthan,A Framework for the Pragmatic Quality of Z Specifications.,2006,16,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke16.html#Kamthan06,https://doi.org/10.1142/S0218194006002938 +JuHum Kwon,Intelligent Semantic Concept Mapping For Semantic Query Rewriting/Optimization In Ontology-Based Information Integration System.,2004,14,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke14.html#KwonJLB04,https://doi.org/10.1142/S0218194004001762 +Supanat Kitcharoensakkul,Towards a Unified Version Model Using the Resource Description Framework (RDF).,2001,11,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke11.html#KitcharoensakkulW01,https://doi.org/10.1142/S0218194001000748 +Yuyu Yin,QoS Prediction for Web Service Recommendation with Network Location-Aware Neighbor Selection.,2016,26,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke26.html#YinAMXS16,https://doi.org/10.1142/S0218194016400040 +Muhammad Usman 0006,An Effort Estimation Taxonomy for Agile Software Development.,2017,27,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke27.html#UsmanBP17,https://doi.org/10.1142/S0218194017500243 +André Marques Pereira,Comparison of Open Source Tools for Project Management.,2013,23,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke23.html#PereiraGWB13,https://doi.org/10.1142/S0218194013500046 +Fadi A. Thabtah,Prediction Phase in Associative Classification Mining.,2011,21,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke21.html#ThabtahHAI11,https://doi.org/10.1142/S0218194011005463 +Hui Chen,Efficiently Mining Recent Frequent Patterns over Online Transactional Data Streams.,2009,19,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke19.html#Chen09a,https://doi.org/10.1142/S0218194009004325 +Victor K. Y. Chan,A Statistical Methodology to Simplify Software Metric Models Constructed Using Incomplete Data Samples.,2007,17,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke17.html#ChanWX07,https://doi.org/10.1142/S0218194007003495 +Anthony C. Bloesch,Cogito: a Methodology and System for Formal Software Development.,1995,5,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke5.html#BloeschKKT95,https://doi.org/10.1142/S0218194095000290 +Katerina Ksystra,An Algebraic Framework for the Verification of Context-Aware Adaptive Systems.,2015,25,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke25.html#KsystraSF15,https://doi.org/10.1142/S0218194015500199 +Aniello Cimitile,A Formalism for Structured Planning of a Software Project.,1994,4,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke4.html#CimitileV94,https://doi.org/10.1142/S0218194094000143 +Guo Xie,A Strategy to Formalize Specification and Its Application to an Advanced Railway System.,2014,24,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke24.html#XieHTN14,https://doi.org/10.1142/S0218194014500181 +Efi Papatheocharous,A Hybrid Software Cost Estimation Approach Utilizing Decision Trees and Fuzzy Logic.,2012,22,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke22.html#PapatheocharousA12,https://doi.org/10.1142/S0218194012500106 +John Yen,A Formal Methodology for Analyzing Tradeoffs of Imprecise Requirements.,1998,8,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke8.html#YenT98,https://doi.org/10.1142/S0218194098000157 +Fco. Javier Sáenz Marcilla,Do Outsourcing Service Providers Need a Methodology for Service Delivery?,2015,25,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke25.html#MarcillaCA15,https://doi.org/10.1142/S0218194015500217 +Ik-Joo Han,Composition of Aspects Based on a Relation Model: Synergy of Multiple Paradigms.,2006,16,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke16.html#HanB06,https://doi.org/10.1142/S0218194006002847 +Mariusz Pelc,Analysis of Policy-Based Systems with AGILE Policies Using Petri Nets.,2016,26,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke26.html#Pelc16,https://doi.org/10.1142/S0218194016500443 +Andrea De Lucia,Creating Tools in a Software Environment Based on Graph Rewriting Rules.,2000,10,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke10.html#LuciaTT00,https://doi.org/10.1142/S0218194000000109 +Juan Carlos Augusto,A Procedure To Translate Paradigm Specifications To Propositional Linear Temporal Logic And Its Application To Verification.,2003,13,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke13.html#AugustoG03,https://doi.org/10.1142/S0218194003001494 +Junichi Yamamoto,Cooad: a Case Tool for Object-Oriented Analysis and Design.,1995,5,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke5.html#YamamotoOH95,https://doi.org/10.1142/S0218194095000186 +Dehong Qiu,Improving Similarity Measure for Java Programs Based on Optimal Matching of Control Flow Graphs.,2015,25,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke25.html#QiuSL15,https://doi.org/10.1142/S0218194015500229 +David Eichmann,Advances in Network Information Discovery and Retrieval.,1995,5,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke5.html#Eichmann95,https://doi.org/10.1142/S0218194095000083 +Vidan Markovic,A Contribution to Continual Software Service Improvement Based on the Six-Step Service Improvement Method.,2012,22,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke22.html#MarkovicM12,https://doi.org/10.1142/S0218194012500143 +Chee Yong Chan,A Survey of Access Methods for Image Data.,1997,7,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke7.html#ChanP97,https://doi.org/10.1142/S0218194097000199 +Mark J. Gerken,Specification of Software Architecture.,2000,10,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke10.html#Gerken00,https://doi.org/10.1142/S0218194000000067 +Michael N. Huhns,Interaction-Oriented Software Development.,2001,11,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke11.html#Huhns01,https://doi.org/10.1142/S0218194001000530 +Xiaohong Chen 0001,Capturing Requirements from Expected Interactions Between Software and Its Interactive Environment: An Ontology Based Approach.,2016,26,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke26.html#ChenJ16,https://doi.org/10.1142/S0218194016500029 +Beata Sarna-Starosta,A Model-Based Design-for-Verification Approach to Checking for Deadlock in Multi-Threaded Applications.,2007,17,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke17.html#Sarna-StarostaSD07,https://doi.org/10.1142/S0218194007003197 +Mehwish Riaz,Maintainability Predictors for Relational Database-Driven Software Applications: Extended Results from a Survey.,2013,23,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke23.html#RiazTSM13,https://doi.org/10.1142/S0218194013500149 +Noura Boudiaf,Supporting Formal Verification of DIMA Multi-Agents Models: towards a Framework Based on Maude Model Checking.,2008,18,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke18.html#BoudiafMB08,https://doi.org/10.1142/S021819400800391X +Tsukasa Ebihara,Filmification Of Methods And An Example Of Its Applications.,2005,15,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke15.html#EbiharaMNN05,https://doi.org/10.1142/S0218194005001860 +Robert G. Reynolds,An Evolution-Based Approach to Program Understanding Using Cultural Algorithms.,1995,5,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke5.html#ReynoldsS95,https://doi.org/10.1142/S0218194095000125 +Daniel E. Cooke,"Book Review: ""software Conflict: Essays on the Art and Science of Software Engineering"".",1991,1,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke1.html#Cooke91a,https://doi.org/10.1142/S0218194091000317 +M. Brian Blake,Software Engineering for Web Services Workflow Systems.,2008,18,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke18.html#BlakeS08,https://doi.org/10.1142/S0218194008003593 +Jen-Ya Wang,A Data Partition Method for MEMS-Based Storage Devices in a Distributed Computing Environment.,2013,23,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke23.html#WangC13,https://doi.org/10.1142/S021819401340007X +Taghi M. Khoshgoftaar,An Empirical Study of Feature Ranking Techniques for Software Quality Prediction.,2012,22,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke22.html#KhoshgoftaarGN12,https://doi.org/10.1142/S0218194012400013 +Sandeep Padmanabhan,Efficient State-Saving Architectures for Power-Mode Switching.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#PadmanabhanL05,https://doi.org/10.1142/S0218194005001914 +Mária Bieliková,An Experience with the Use of Systems Engineer Case Tool.,1997,7,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke7.html#BielikovaN97,https://doi.org/10.1142/S0218194097000151 +Sourav Bhattacharya,Software Engineering Practices and Tools for Real-Time Systems (Part I): Guest Editor's Introduction.,1996,6,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke6.html#BhattacharyaMT96,https://doi.org/10.1142/S0218194096000302 +Ron Hira,It-Outsourcing and IT-Offshoring: Trends and Impacts on SE/KE Curricula.,2007,17,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke17.html#HiraTSVWC07,https://doi.org/10.1142/S0218194007003409 +Adel Alti,COSABuilder and COSAInstantiator: An Extensible Tool for Architectural Description.,2010,20,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke20.html#AltiBSMO10,https://doi.org/10.1142/S0218194010004803 +Ashish Sharma,A Versatile Approach for the Estimation of Software Development Effort Based on SRS Document.,2014,24,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke24.html#SharmaVK14,https://doi.org/10.1142/S0218194014500016 +Ane Tröger,A Language-Based Approach for Comprehensively Supporting the In Silico Experimental Process.,2005,15,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke15.html#TrOGerF05,https://doi.org/10.1142/S0218194005002245 +Dongxiu Ou,Optimization of Conflicting Tram Signal Priority Requests Based on Spatiotemporal Interlocking Logic Using Microscopic Simulation.,2018,28,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke28.html#OuYLL18,https://doi.org/10.1142/S0218194018400089 +Shih-Chien Chou,ProActNet: Modeling Processes Through Activity Networks.,2002,12,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke12.html#Chou02,https://doi.org/10.1142/S0218194002001050 +Chien-I Lee,An Efficient Conflict-Resolution Approach to Support Read/Write Operations in a Video Server.,1997,7,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke7.html#LeeCY97,https://doi.org/10.1142/S0218194097000205 +W. K. Chan,Integration Testing of Context-sensitive Middleware-based Applications: a Metamorphic Approach.,2006,16,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke16.html#ChanCLTY06,https://doi.org/10.1142/S0218194006002951 +S. Selvaganesan,XDMA: A Dual Indexing and Mutual Summation Based Keyword Search Algorithm for XML Databases.,2014,24,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke24.html#SelvaganesanHS14,https://doi.org/10.1142/S0218194014500223 +Judith A. Stafford,Architecture-Level Dependence Analysis for Software Systems.,2001,11,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke11.html#StaffordW01,https://doi.org/10.1142/S021819400100061X +José Luis Sierra,Document-oriented Development of Content-intensive Applications.,2005,15,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke15.html#SierraFFN05,https://doi.org/10.1142/S0218194005002634 +Silvia Teresita Acuña,Process Model Applicable to Software Engineering and Knowledge Engineering.,1999,9,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke9.html#AcunaLJM99,https://doi.org/10.1142/S0218194099000358 +Tianning Zhang,Test Case Prioritization Technique Based on Error Probability and Severity of UML Models.,2018,28,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke28.html#ZhangWWF18,https://doi.org/10.1142/S0218194018500249 +Cagatay Catal,Automatic Software Categorization Using Ensemble Methods and Bytecode Analysis.,2017,27,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke27.html#CatalTA17,https://doi.org/10.1142/S0218194017500425 +Olga Ormandjieva,Reliability Model for Component-Based Systems in COSMIC (a Case Study).,2008,18,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke18.html#OrmandjievaTA08,https://doi.org/10.1142/S0218194008003763 +Sangeeta Sabharwal,Deriving System Complexity Metric from Events and its Validation.,2011,21,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke21.html#SabharwalSG11,https://doi.org/10.1142/S021819401100561X +Wolfgang Deiters,The FUNSOFT Net Approach to Software Process Management.,1994,4,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke4.html#DeitersG94,https://doi.org/10.1142/S021819409400012X +Marília Aranha Freire,Assessing and Evolving a Domain Specific Language for Formalizing Software Engineering Experiments: An Empirical Study.,2014,24,International Journal of Software Engineering and Knowledge Engineering,10,db/journals/ijseke/ijseke24.html#FreireKANCJNAG14,https://doi.org/10.1142/S0218194014400178 +Tao Peng 0003,Clustering-Based Topical Web Crawling for Topic-Specific Information Retrieval Guided by Incremental Classifier.,2015,25,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke25.html#PengL15,https://doi.org/10.1142/S0218194015500011 +Francesca Arcelli Fontana,Alternatives to the Knowledge Discovery Metamodel: An Investigation.,2017,27,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke27.html#FontanaRZ17,https://doi.org/10.1142/S0218194017500413 +John Anil Saldhana,Formalization of Object Behavior and Interactions from UML Models.,2001,11,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke11.html#SaldhanaSH01,https://doi.org/10.1142/S021819400100075X +W. Eric Wong,Bp Neural Network-Based Effective Fault Localization.,2009,19,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke19.html#WongQ09,https://doi.org/10.1142/S021819400900426X +David B. Stewart,The Chimera Methodology: Designing Dynamically Reconfigurable and Reusable Real-Time Software Using Port-Based Objects.,1996,6,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke6.html#StewartK96,https://doi.org/10.1142/S0218194096000120 +Eric C. Rosen,REINAS: A Real-Time System for Managing Environmental Data.,1998,8,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke8.html#RosenHLMW98,https://doi.org/10.1142/S0218194098000054 +Samer I. Mohamed,Hybrid-Based Maintainability Impact Analysis for Evolving Systems.,2009,19,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke19.html#MohamedEW09,https://doi.org/10.1142/S0218194009004519 +Hoijin Yoon,A Test Case Prioritization Based on Degree of Risk Exposure and its Empirical Study.,2011,21,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke21.html#YoonC11,https://doi.org/10.1142/S0218194011005220 +Yixin Jing,An Inference-Enabled Access Control Model for RDF Ontology.,2009,19,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke19.html#JingJB09,https://doi.org/10.1142/S0218194009004209 +Zhifang Liao,Markov Chain-Like Model for Prediction Service Based on Improved Hierarchical Particle Swarm Optimization Cluster Algorithm.,2016,26,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke26.html#LiaoLSKZL16,https://doi.org/10.1142/S0218194016400064 +Tapalina Bhattasali,An Adaptation of Context and Trust Aware Workflow Oriented Access Control for Remote Healthcare.,2018,28,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke28.html#BhattasaliCCS18,https://doi.org/10.1142/S0218194018500225 +Ryosuke Ishizue,Metrics Visualization Techniques Based on Historical Origins and Functional Layers for Developments by Multiple Organizations.,2018,28,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke28.html#IshizueWFIHKN18,https://doi.org/10.1142/S0218194018500067 +Kai H. Chang,A Performance Evaluation of Heuristics-Based Test Case Generation Methods for Software Branch Coverage.,1996,6,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke6.html#ChangCCL96,https://doi.org/10.1142/S0218194096000247 +R. Kanesaraj Ramasamy,Web Service Discovery for Cloud-Based Mobile Application Using Multi-Level Clustering and QoS-Based Ranking.,2016,26,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke26.html#RamasamyCHH16,https://doi.org/10.1142/S0218194016500376 +Andrew M. Olson,Transforming an HCI Model to a Software Design Model.,1997,7,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke7.html#Olson97,https://doi.org/10.1142/S0218194097000072 +Danilo Medeiros,Working and Playing with Scrum.,2015,25,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke25.html#MedeirosNPA15,https://doi.org/10.1142/S021819401550014X +Yuan-Hsin Tung,A Collaborative Approach for Minimal-Cost Monitor Deployment in Cloud Environment.,2015,25,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke25.html#TungTT15,https://doi.org/10.1142/S0218194015500126 +Alejandro Rodríguez González,Guest Editors' Introduction.,2012,22,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke22.html#GonzalezVC12,https://doi.org/10.1142/S0218194012020020 +An Ngo-The,Guest Editors' Introduction.,2006,16,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke16.html#Ngo-TheR06,https://doi.org/10.1142/S0218194006003099 +Alper Bilge,A Survey of Privacy-Preserving Collaborative Filtering Schemes.,2013,23,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke23.html#BilgeKYGP13,https://doi.org/10.1142/S0218194013500320 +Kwong-Luck Tan,Modeling and Analysis of Nanotips for Thermoelectric Coolers.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#TanPT05,https://doi.org/10.1142/S0218194005002130 +Jo Ueyama,Exploiting a Generic Approach to Construct Component-Based Systems Software in Linux Environments.,2010,20,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke20.html#UeyamaMTCGC10,https://doi.org/10.1142/S0218194010004967 +Gloria Piedad Gasca Hurtado,Risk Taxonomy Related to Software Acquisition: a Case Study.,2013,23,International Journal of Software Engineering and Knowledge Engineering,9,db/journals/ijseke/ijseke23.html#HurtadoCCG13,https://doi.org/10.1142/S021819401350037X +Francisco M. de Vasconcelos Jr.,Organizing the Software Development Process Knowledge: An Approach Based on Patterns.,1998,8,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke8.html#VasconcelosW98,https://doi.org/10.1142/S0218194098000261 +Mohammed Nazim Uddin,Experts Search and Rank with Social Network: an Ontology-Based Approach.,2013,23,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke23.html#UddinDOJJ13,https://doi.org/10.1142/S0218194013400032 +Andres H. Zapata,An Empirical Study into the Accuracy of IT Estimations and its Influencing Factors.,2013,23,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke23.html#ZapataC13,https://doi.org/10.1142/S0218194013400081 +Allen S. Parrish,Applying Conventional Unit Testing Techniques to Abstract Data Type Operations.,1994,4,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke4.html#ParrishC94,https://doi.org/10.1142/S0218194094000064 +Paul A. Bailes,Towards an Open Software Conversion Architecture.,1995,5,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke5.html#BailesACJP95,https://doi.org/10.1142/S0218194095000216 +Alexander Egyed,Supporting Software Understanding with Automated Requirements Traceability.,2005,15,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke15.html#EgyedG05,https://doi.org/10.1142/S0218194005002464 +Hai Hu,An Improved Approach to Adaptive Testing.,2009,19,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke19.html#HuJC09,https://doi.org/10.1142/S0218194009004349 +Jingzhou Li,Software Effort Estimation by Analogy Using Attribute Selection Based on Rough Set Analysis.,2008,18,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke18.html#LiR08,https://doi.org/10.1142/S0218194008003532 +Claude Moulin,Harmonization between Personal and Shared Memories.,2010,20,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke20.html#MoulinL10,https://doi.org/10.1142/S0218194010004864 +Jian Zhang,A Constraint Solver and Its Application to Path Feasibility Analysis.,2001,11,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke11.html#ZhangW01,https://doi.org/10.1142/S0218194001000487 +Oh-Cheon Kwon,Software Configuration Management for a Reusable Software Library within a Software Maintenance Environment.,1998,8,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke8.html#KwonBM98,https://doi.org/10.1142/S0218194098000273 +Ionel Muscalagiu,Experimental Analysis of the Effects of Agent Synchronization in Asynchronous Search Algorithms.,2008,18,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke18.html#MuscalagiuVCPP08,https://doi.org/10.1142/S0218194008003799 +Pierfrancesco Bellini,Exploiting Intelligent Content via AXMEDIS/MPEG-21 for Modelling and Distributing News.,2011,21,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke21.html#BelliniBN11,https://doi.org/10.1142/S0218194011005141 +Pin-Hao Chi,A Fast Protein Structure Retrieval System Using Image-Based Distance Matrices and Multidimensional Index.,2005,15,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke15.html#ChiSS05,https://doi.org/10.1142/S0218194005002439 +Chung-Horng Lung,Software Architecture Decomposition Using Attributes.,2007,17,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke17.html#LungXZ07,https://doi.org/10.1142/S0218194007003410 +Vasile Claudiu Kifor,Quality System for production Software (QSPS): an Innovative Approach to Improve the Quality of production Software.,2013,23,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke23.html#KiforTB13,https://doi.org/10.1142/S0218194013500319 +W. David Hurley,Integrating User Interface Development and Modern Software Development.,1992,2,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke2.html#Hurley92,https://doi.org/10.1142/S0218194092000117 +Zhanqi Cui,Verifying Aspect-Oriented Models against Crosscutting Properties.,2013,23,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke23.html#CuiWLBZL13,https://doi.org/10.1142/S0218194013400123 +Bangtao Chen,Dynamic Behaviors of High-G Mems Accelerometer Incorporated with Novel Micro-Flexures.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#ChenMLI05,https://doi.org/10.1142/S0218194005002129 +Timothy K. Shih,An Object-Oriented Design Complexity Metric Based on Inheritance Relationships.,1998,8,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke8.html#ShihLPW98,https://doi.org/10.1142/S0218194098000297 +Avinash Sahay,An Incremental Verification Algorithm for Real-Time Systems.,1999,9,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke9.html#SahayTS99,https://doi.org/10.1142/S0218194099000139 +Ying Li,Guest Editors' Introduction.,2016,26,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke26.html#LiM16,https://doi.org/10.1142/S0218194016020010 +Gerardo Canfora,An Incremental Object-Oriented Migration Strategy for RPG Legacy Systems.,1999,9,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke9.html#CanforaLL99,https://doi.org/10.1142/S0218194099000036 +Bruce W. Weide,A Framework for Modeling Software Engineering Processes.,1993,3,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke3.html#WeideD93,https://doi.org/10.1142/S0218194093000161 +Kazuhiro Ogata 0001,Proof Score Approach to Analysis of Electronic Commerce Protocols.,2010,20,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke20.html#OgataF10,https://doi.org/10.1142/S0218194010004712 +Huaizhong Li,Dsp-Based Motion Control of a Non-Commutated Dc Linear Motor Module.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#LiGLJC05,https://doi.org/10.1142/S0218194005002063 +Günther Ruhe,Guest Editor's Introduction.,2003,13,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke13.html#Ruhe03,https://doi.org/10.1142/S021819400300141X +Grigoris Antoniou,The Role of Nonmonotonic Representations in Requirements Engineering.,1998,8,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke8.html#Antoniou98,https://doi.org/10.1142/S0218194098000212 +Michael Eonsuk Shin,Design of Wrapper for Self-Management of COTS Components.,2009,19,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke19.html#ShinP09,https://doi.org/10.1142/S0218194009004246 +Reidar Conradi,From Software Experience Databases to Learning Organizations.,2000,10,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke10.html#Conradi00,https://doi.org/10.1142/S0218194000000274 +Vahid Khatibi Bardsiri,Towards Improvement of Analogy-Based Software Development Effort Estimation: A Review.,2014,24,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke24.html#BardsiriJK14,https://doi.org/10.1142/S0218194014500351 +Luqi,The Dynamical Models For Software Technology Transition.,2004,14,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke14.html#LuqiZS04,https://doi.org/10.1142/S0218194004001592 +Guolin Xu,Multi-Channel Biotelemetry System Using Microcontroller with Uhf Transmit Function.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#XuTS05,https://doi.org/10.1142/S0218194005002142 +Christine W. Chan,From Knowledge Modeling To Ontology Construction.,2004,14,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke14.html#Chan04,https://doi.org/10.1142/S0218194004001816 +A. N. Kirillov,The Stabilization Problem for Certain Class of Ecological Systems.,1997,7,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke7.html#Kirillov97,https://doi.org/10.1142/S021819409700014X +Martin David Katz,Constraint Propagation in Software Libraries of Transformation Systems.,1992,2,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke2.html#KatzV92,https://doi.org/10.1142/S0218194092000178 +Anthony S. Karrer,Meta-Environments for Software Production.,1993,3,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke3.html#KarrerS93,https://doi.org/10.1142/S0218194093000070 +I. I. Eremin,Delta-Plan-Es - the Interactive System of Numerical Analysis of improper Linear Programs.,1993,3,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke3.html#EreminP93,https://doi.org/10.1142/S0218194093000203 +David Eichmann,Assessing Repository Technology: Where do We Go from Here?,1992,2,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke2.html#Eichmann92,https://doi.org/10.1142/S0218194092000221 +Noriko Hanakawa,Project Reliability Growth Model Based on Curves of Accumulated Communication Topics for Software Development.,2010,20,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke20.html#Hanakawa10,https://doi.org/10.1142/S0218194010004906 +Soe-Tsyr Yuan,An Infrastructure for Engineering Cooperative Agents.,2000,10,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke10.html#YuanW00,https://doi.org/10.1142/S0218194000000377 +E. Ramaraj,Design Optimization Metrics for UML Based Object-Oriented Systems.,2007,17,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke17.html#RamarajD07,https://doi.org/10.1142/S0218194007003252 +Daniel Rodríguez-García,Defining Software Process Model Constraints with Rules Using OWL and SWRL.,2010,20,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke20.html#Rodriguez-GarciaBAN10,https://doi.org/10.1142/S0218194010004876 +Augusto Celentano,Guest Editors' Introduction.,2011,21,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke21.html#CelentanoY11,https://doi.org/10.1142/S0218194011005207 +Janusz Sobecki,Comparison of Selected Swarm Intelligence Algorithms in Student Courses Recommendation Application.,2014,24,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke24.html#Sobecki14,https://doi.org/10.1142/S0218194014500041 +Carlos Monsalve,Measuring Software Functional Size from Business Process Models.,2011,21,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke21.html#MonsalveAA11,https://doi.org/10.1142/S0218194011005359 +Shasha Li,Question-Oriented Answer Summarization via Term Hierarchical Structure.,2011,21,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke21.html#LiL11,https://doi.org/10.1142/S0218194011005475 +Jason Van Hulse,An Empirical Evaluation of Repetitive Undersampling Techniques.,2010,20,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke20.html#HulseKN10,https://doi.org/10.1142/S0218194010004682 +Quan Zou 0003,"A ""Resource Package""-Oriented Approach for Remote Sensing Analysis Modeling - Dust Storm Monitoring Model as Example.",2014,24,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke24.html#ZouLYC14,https://doi.org/10.1142/S0218194014500284 +Sanjay Bhansali,A Knowledge-Assisted Approach to Parameterized Reuse.,1996,6,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke6.html#Bhansali96,https://doi.org/10.1142/S0218194096000260 +Kehan Gao,The Use of Ensemble-Based Data Preprocessing Techniques for Software Defect Prediction.,2014,24,International Journal of Software Engineering and Knowledge Engineering,9,db/journals/ijseke/ijseke24.html#GaoKN14,https://doi.org/10.1142/S0218194014400105 +Tiago M. Nascimento,Program Matching through Code Analysis and Artificial Neural Networks.,2012,22,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke22.html#NascimentoBPMC12,https://doi.org/10.1142/S0218194012400049 +Gennaro Costagliola,A Metric for the Size Estimation of Object-Oriented Graphical User Interfaces.,2000,10,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke10.html#CostagliolaFTV00,https://doi.org/10.1142/S0218194000000304 +Natalia Juristo Juzgado,Guest Editor's Introduction.,1998,8,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke8.html#Juzgado98,https://doi.org/10.1142/S0218194098000236 +Paolo Ciaccia,Formal Requirements and Design Specifications: The Clepsydra Methodology.,1997,7,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke7.html#CiacciaCP97,https://doi.org/10.1142/S0218194097000023 +Koen Vanhoof,Comparing Two Hybrid Expert System Shells.,1994,4,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke4.html#VanhoofS94,https://doi.org/10.1142/S0218194094000088 +Barbara Dellen,Enriching Software Process Support by Knowledge-Based Techniques.,1997,7,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke7.html#DellenMMV97,https://doi.org/10.1142/S0218194097000102 +Tegegne Marew,Systematic Functional Decomposition in a Product Line Using Aspect-oriented Software Development: a Case Study.,2007,17,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke17.html#MarewKB07,https://doi.org/10.1142/S0218194007003112 +Cuauhtémoc López Martín,Applying Expert Judgment to Improve an Individual's Ability to Predict Software Development Effort.,2012,22,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke22.html#MartinA12,https://doi.org/10.1142/S0218194012500118 +Radoslaw Katarzyniak,Integration of Modal and Fuzzy Methods of Knowledge Representation in Artificial Agents.,2013,23,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke23.html#KatarzyniakP13,https://doi.org/10.1142/S0218194013400020 +Yunxin Fan,Development of Real-Time Simulation Application Software for Four-Quadrant Converter System Based on MATLAB.,2018,28,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke28.html#FanYZF18,https://doi.org/10.1142/S0218194018400090 +Jeongwon Baeg,An Adaptive User Navigation Mechanism and its Evaluation.,1995,5,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke5.html#BaegHF95,https://doi.org/10.1142/S0218194095000265 +Gerardo Canfora,How Distribution Affects the Success of Pair Programming.,2006,16,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke16.html#CanforaCLV06,https://doi.org/10.1142/S0218194006002756 +Leydi Caballero,How Agile Developers Integrate User-Centered Design Into Their Processes: A Literature Review.,2016,26,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke26.html#CaballeroMS16,https://doi.org/10.1142/S0218194016500418 +Lalit M. Patnaik,Specification of Real-Time Systems.,1993,3,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke3.html#PatnaikM93,https://doi.org/10.1142/S0218194093000136 +,Guest Editors' Introduction.,2007,17,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke17.html#X07,https://doi.org/10.1142/S0218194007003100 +Jiacun Wang,Performance Analysis of Traffic Control Systems Based upon Stochastic Timed Petri Net Models.,2000,10,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke10.html#WangDJ00,https://doi.org/10.1142/S0218194000000365 +Zhong Sheng Qian,SXM-Based Web Test Generation with Respect to Logic Coverage Criteria.,2017,27,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke27.html#Qian17,https://doi.org/10.1142/S0218194017500206 +Arnon Sturm,The Application-Based Domain Analysis Approach and its Object-Process Methodology Implementation.,2008,18,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke18.html#SturmDS08,https://doi.org/10.1142/S0218194008004045 +Toby H. W. Lam,Master: an Intelligent Ontology-Based Multi-Agent System for Sightseer.,2009,19,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke19.html#LamLL09,https://doi.org/10.1142/S021819400900412X +Bassey Isong,A Systematic Review of the Empirical Validation of Object-Oriented Metrics towards Fault-proneness Prediction.,2013,23,International Journal of Software Engineering and Knowledge Engineering,10,db/journals/ijseke/ijseke23.html#IsongO13,https://doi.org/10.1142/S0218194013500484 +Frances M. T. Brazier,Deliberative Evolution in Multi-Agent Systems.,2001,11,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke11.html#BrazierJTW01,https://doi.org/10.1142/S0218194001000670 +Du Zhang,Granularities and Inconsistencies in Big Data Analysis.,2013,23,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke23.html#Zhang13,https://doi.org/10.1142/S0218194013500241 +Feng Zhao 0003,Expanding Approach to Information Retrieval Using Semantic Similarity Analysis Based on WordNet and Wikipedia.,2012,22,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke22.html#ZhaoFYJZ12,https://doi.org/10.1142/S0218194012500088 +Jimin Hwa,Search-Based Approaches for Software Module Clustering Based on Multiple Relationship Factors.,2017,27,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke27.html#HwaYSB17,https://doi.org/10.1142/S0218194017500395 +Vitus S. W. Lam,Equivalence Checking of Communicating UML Statechart Diagrams.,2012,22,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke22.html#LamP12,https://doi.org/10.1142/S0218194012500076 +Jungho Kim,EMSA: Extensibility Metric for Software Architecture.,2018,28,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke28.html#KimKAL18,https://doi.org/10.1142/S0218194018500134 +Jin Song Dong,Formal Designs for Embedded and Hybrid Systems.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#DongHM05,https://doi.org/10.1142/S0218194005002117 +Thanasis Hadzilacos,On the Software and Knowledge Engineering Aspects of the Educational Process.,2007,17,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke17.html#HadzilacosKP07,https://doi.org/10.1142/S0218194007003434 +Dimitris Panagiotou,Leveraging Software Reuse with Knowledge Management in Software Development.,2011,21,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke21.html#PanagiotouM11,https://doi.org/10.1142/S0218194011005414 +Simon L. Winberg,A Pilot Study of Productive versus Nonproductive Knowledge Acquisition in Embedded Software Development.,2007,17,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke17.html#WinbergS07,https://doi.org/10.1142/S0218194007003380 +Lu Liu,Structure2Content: An Incremental Method for Detecting Outlier Correlation in Heterogeneous Network.,2017,27,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke27.html#LiuZP17,https://doi.org/10.1142/S0218194017500383 +Mohammed Rafiq Uddin,Microcontroller Based Light Control.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#UddinMI05,https://doi.org/10.1142/S021819400500235X +Steve Counsell,Design Level Hypothesis Testing Through Reverse Engineering Of Object-Oriented Software.,2004,14,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke14.html#CounsellNM04,https://doi.org/10.1142/S0218194004001609 +Chamundeswari Arumugam,Developmental Size estimation for Object-Oriented Software Based on Analysis Model.,2013,23,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke23.html#ArumugamB13,https://doi.org/10.1142/S0218194013500083 +Bo Chen,A Generic Formal Framework For Constructing Agent Interaction Protocols.,2005,15,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke15.html#ChenS05,https://doi.org/10.1142/S0218194005001884 +Li Wang 0032,A Risk-Based Maintenance Decision-Making Approach for Railway Asset Management.,2018,28,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke28.html#WangAQJ18,https://doi.org/10.1142/S0218194018400065 +Beat Liver,A Functional Representation for Software Reuse and Design.,1995,5,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke5.html#LiverA95,https://doi.org/10.1142/S0218194095000137 +Omid Bushehrian,Software Performance Engineering by Simulated-Based Object Deployment.,2013,23,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke23.html#Bushehrian13,https://doi.org/10.1142/S0218194013500058 +Xi Sun,An Approach to Constructing High-Available Decentralized Systems via Self-Adaptive Components.,2009,19,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke19.html#SunZZJM09,https://doi.org/10.1142/S0218194009004295 +Yongjian Li,Design of a CIL Connector to Spin.,2008,18,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke18.html#LiX08,https://doi.org/10.1142/S0218194008003568 +A. P. Cherenkov,Determination of Solvability Boundaries of Optimization Problems in Parameter Space.,1993,3,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke3.html#CherenkovMS93,https://doi.org/10.1142/S0218194093000239 +Pao-Ann Hsiung,Device-Centric Low-Power Scheduling for Real-Time Embedded Systems.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#HsiungK05,https://doi.org/10.1142/S021819400500194X +Woojin Lee,A Framework for Automated Construction of Node Software using Low-Level Attributes in USN Application Development.,2012,22,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke22.html#LeeKK12,https://doi.org/10.1142/S0218194012500192 +Auri Marcelo Rizzo Vincenzi,Bayesian-Learning Based Guidelines to Determine Equivalent Mutants.,2002,12,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke12.html#VincenziNMDR02,https://doi.org/10.1142/S021819400200113X +Vitus S. W. Lam,On pi-Calculus Semantics as a Formal Basis for UML Activity Diagrams.,2008,18,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke18.html#Lam08,https://doi.org/10.1142/S0218194008003787 +Daniel E. Cooke,Guest Editor's Introduction.,1992,2,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke2.html#Cooke92,https://doi.org/10.1142/S0218194092000300 +Xiaowu Chen,Automatic Image Completion with Structure Propagation and Texture Synthesis.,2010,20,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke20.html#ChenZXZ10,https://doi.org/10.1142/S0218194010005055 +Paul A. Savory,The Impact of Intelligent Tools on Simulation Methodology.,1996,6,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke6.html#SavoryM96,https://doi.org/10.1142/S0218194096000077 +Mourad Badri,Investigating the Effect of Aspect-Oriented Refactoring on the Unit Testing Effort of Classes: An Empirical Evaluation.,2017,27,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke27.html#BadriKB17,https://doi.org/10.1142/S0218194017500280 +W. David Hurley,A Tool for Constructing Interactive Software.,1991,1,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke1.html#Hurley91,https://doi.org/10.1142/S0218194091000081 +Umit Can,Automatic Mining of Quantitative Association Rules with Gravitational Search Algorithm.,2017,27,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke27.html#CanA17,https://doi.org/10.1142/S0218194017500127 +Eugeniusz Eberbach,Semal: a Cost Language Based on the Calculus of Self-Modifiable Algorithms.,1994,4,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke4.html#Eberbach94,https://doi.org/10.1142/S0218194094000192 +Lonnie R. Welch,Reverse Engineering of Computer-Based Control Systems.,1996,6,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke6.html#WelchYRKHWSM96,https://doi.org/10.1142/S0218194096000223 +Bernhard Peischl,Automated Debugging of Verilog Designs.,2012,22,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke22.html#PeischlRW12,https://doi.org/10.1142/S0218194012500209 +Shaoying Liu,A Formal Definition of FRSM and Applications.,1998,8,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke8.html#Liu98,https://doi.org/10.1142/S0218194098000145 +Bernd J. Krämer,Guest Editors' Introduction.,1992,2,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke2.html#KramerP92,https://doi.org/10.1142/S0218194092000294 +Günther Ruhe,Trade-off Analysis for Requirements Selection.,2003,13,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke13.html#RuheEP03,https://doi.org/10.1142/S0218194003001378 +José M. Drake,Object-Oriented Analysis: Criteria and Case Study.,1993,3,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke3.html#DrakeTLZ93,https://doi.org/10.1142/S021819409300015X +Giuseppe Della Penna,An XML Based Methodology to Model and Use Scenarios in the Software Development Process.,2008,18,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke18.html#PennaLOI08,https://doi.org/10.1142/S0218194008003866 +Chien-Chung Chan,Incremental Learning of Production Rules from Examples under Uncertainty: a Rough Set Approach.,1991,1,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke1.html#Chan91,https://doi.org/10.1142/S0218194091000299 +Perry Alexander,Task Analysis and Design Plans in Formal Specification Design.,1998,8,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke8.html#Alexander98,https://doi.org/10.1142/S0218194098000133 +Paolo Ancilotti,A Development Environment for Hard Real-Time Applications.,1996,6,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke6.html#AncilottiBNS96,https://doi.org/10.1142/S0218194096000156 +Chung-Horng Lung,An Approach to Quantitative Software Architecture Sensitivity Analysis.,2000,10,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke10.html#LungK00,https://doi.org/10.1142/S0218194000000079 +Samira Sadaoui,An Efficient LOTOS-Based Framework for Describing and Solving (Temporal) CSPs.,2009,19,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke19.html#SadaouiMC09,https://doi.org/10.1142/S0218194009004416 +Lei Zhao,A Fault Localization Framework to Alleviate the Impact of Execution Similarity.,2013,23,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke23.html#ZhaoZWY13,https://doi.org/10.1142/S0218194013500289 +Hongyue He,Ontology-Based Semantic Verification for UML Behavioral Models.,2013,23,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke23.html#HeWDZZ13,https://doi.org/10.1142/S0218194013500010 +Taghi M. Khoshgoftaar,Detecting Noisy Instances with the Ensemble Filter: a Study in Software Quality Estimation.,2006,16,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke16.html#KhoshgoftaarJS06,https://doi.org/10.1142/S0218194006002677 +Junkai Yi,Monitoring cumulated Anomaly in Databases.,2009,19,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke19.html#YiLL09,https://doi.org/10.1142/S0218194009004210 +Jian-Wei Tian,Retrieving Deep Web Data through Multi-Attributes Interfaces with Structured Queries.,2011,21,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke21.html#TianQL11,https://doi.org/10.1142/S0218194011005396 +Topi Haapio,Exploring the Effort of General Software Project Activities with Data Mining.,2011,21,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke21.html#HaapioM11,https://doi.org/10.1142/S0218194011005438 +Martin J. Shepperd,Software Metrics in Software Engineering and Artificial Intelligence.,1991,1,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke1.html#ShepperdI91,https://doi.org/10.1142/S0218194091000305 +Sérgio Agostinho,Aspect-Oriented Specification: a Case Study in Space Domain.,2010,20,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke20.html#AgostinhoMMAFRRBC10,https://doi.org/10.1142/S0218194010004943 +Weihua Huang,Fuzzy Clustering with Feature Weight Preferences for Load Balancing in Cloud.,2018,28,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke28.html#HuangMDXG18,https://doi.org/10.1142/S021819401850016X +Robert G. Reynolds,Guest Editor's Introduction: Acquisition of Software Engineering Knowledge.,1991,1,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke1.html#Reynolds91,https://doi.org/10.1142/S0218194091000238 +Daniela Grigori,Coo-Flow: A Process Technology To Support Cooperative Processes.,2004,14,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke14.html#GrigoriCG04,https://doi.org/10.1142/S021819400400152X +Tsui-Ping Chang,A Sliding-Window Method to Discover Recent Frequent Query Patterns from XML Query Streams.,2014,24,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke24.html#Chang14,https://doi.org/10.1142/S021819401450034X +Chung-Horng Lung,Computer Simulation Software Reuse by Generic/Specific Domain Modeling Approach.,1994,4,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke4.html#LungCMU94,https://doi.org/10.1142/S0218194094000052 +Owusu-Ansah Agyapong,The Design of an Expert System for Domain Knowledge Engineering and Decision Making: A Case Study in the Criminal Justice System.,1998,8,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke8.html#AgyapongB98,https://doi.org/10.1142/S0218194098000042 +Reda Alhajj,Guest Editors' Introduction.,2010,20,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke20.html#AlhajjZ10,https://doi.org/10.1142/S0218194010004724 +Mark Last,Using Data Mining For Automated Software Testing.,2004,14,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke14.html#LASTFK04,https://doi.org/10.1142/S0218194004001737 +Claus Pahl,A Template-Driven Approach for Maintainable Service-Oriented Information Systems Integration.,2009,19,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke19.html#PahlZG09,https://doi.org/10.1142/S0218194009004465 +Krzysztof Sacha,On the Semantics of Architectural Decisions.,2016,26,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke26.html#Sacha16,https://doi.org/10.1142/S0218194016500145 +Makoto Sakai,A New Framework for Improving Software Development Process on Small Computer Systems.,1997,7,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke7.html#SakaiMT97,https://doi.org/10.1142/S0218194097000096 +Dmitriy Dunaev,Parametrization and Evaluation of Intermediate Level Obfuscator.,2017,27,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke27.html#DunaevL17,https://doi.org/10.1142/S0218194017500371 +Timothy Lethbridge,Metrics for Concept-Oriented Knowledge Bases.,1998,8,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke8.html#Lethbridge98,https://doi.org/10.1142/S021819409800011X +Marco Scotto,An Empirical Analysis of the Open Source Development Process Based on Mining of Source Code Repositories.,2007,17,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke17.html#ScottoSS07,https://doi.org/10.1142/S0218194007003215 +Cyrille Dongmo,Addressing the Construction of Z and Object-Z with Use Case Maps (UCMs).,2014,24,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke24.html#DongmoP14,https://doi.org/10.1142/S0218194014500120 +Andrej Kocbek,Towards a Reusable Fault Handling in WS-BPEL.,2014,24,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke24.html#KocbekJ14,https://doi.org/10.1142/S0218194014500107 +Jose Ricardo da Silva Jr.,Multi-Perspective Exploratory Analysis of Software Development Data.,2015,25,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke25.html#SilvaCMS15,https://doi.org/10.1142/S0218194015400033 +Chi-Lu Yang,A Self-Adaptable Indoor Localization Scheme for Wireless Sensor Networks.,2011,21,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke21.html#YangCCCC11,https://doi.org/10.1142/S0218194011005153 +Junhyug Noh,Machine Learning Models and Statistical Measures for Predicting the Progression of IgA Nephropathy.,2015,25,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke25.html#NohPLLKKM15,https://doi.org/10.1142/S0218194015400227 +Yuanping Xu,Novel Research on a Fibration Knowledge-Based Solution for Engineered Surface Tolerances within the Modern GPS Context.,2016,26,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke26.html#XuSZ16,https://doi.org/10.1142/S0218194016500297 +Ninh-Thuan Truong,An Approach to Checking the Compliance of User Permission Policy in Software Development.,2013,23,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke23.html#TruongN13,https://doi.org/10.1142/S0218194013500344 +Vahid Rafe,A Novel Approach to Verify Graph Schema-Based Software Systems.,2009,19,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke19.html#RafeR09,https://doi.org/10.1142/S0218194009004398 +Gail Corbitt,Assessing Proximity to Fruition: a Case Study of Phases in Case Technology Transfer.,1991,1,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke1.html#CorbittNB91,https://doi.org/10.1142/S0218194091000160 +Xudong He,Specifying Software Architectural Connectors in SAM.,2000,10,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke10.html#HeD00,https://doi.org/10.1142/S0218194000000201 +Xiao-Dan Li,Reliability and Performance Analysis of Architecture-Based Software Implementing Restarts and Retries Subject to Correlated Component Failures.,2015,25,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke25.html#LiYF15,https://doi.org/10.1142/S0218194015500266 +Douglas A. Stuart,A Methodology and Support Tools for Analysis of Real-Time Specifications.,1996,6,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke6.html#StuartMJ96,https://doi.org/10.1142/S021819409600017X +Rongcun Wang,Clustering Analysis of Function Call Sequence for Regression Test Case Reduction.,2014,24,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke24.html#WangHLQ14,https://doi.org/10.1142/S0218194014500387 +Arvinder Kaur,Statistical Comparison of Modelling Methods for Software Maintainability Prediction.,2013,23,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke23.html#KaurK13,https://doi.org/10.1142/S0218194013500198 +Cartik R. Kothari,Enhancing OWL Ontologies with Relation Semantics.,2008,18,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke18.html#KothariR08,https://doi.org/10.1142/S0218194008003660 +Kenneth J. Fowler,A Software Engineering Design Tool for Modeling Hard Real-Time Performance.,1996,6,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke6.html#Fowler96,https://doi.org/10.1142/S0218194096000090 +Kyo Chul Kang,Parts: a Temporal Logic-Based Real-Time Software Specification Method Supporting Multiple Viewpoints.,1995,5,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke5.html#KangK95,https://doi.org/10.1142/S0218194095000204 +Rick Kazman,Software Architecture - Guest Editors' Introduction.,2001,11,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke11.html#Kazman01,https://doi.org/10.1142/S0218194001000645 +Dianxiang Xu,Modeling and Analyzing Multi-Agent Behaviors Using Predicate/Transition Nets.,2003,13,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke13.html#XuVIY03,https://doi.org/10.1142/S0218194003001184 +Mario Piattini,A Metric-Based Approach for Predicting Conceptual Data Models Maintainability.,2001,11,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke11.html#PiattiniGJ01,https://doi.org/10.1142/S0218194001000736 +Zahir Tari,A Framework for Method Evolution and Behavior Consistency in Object-Oriented Databases.,1996,6,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke6.html#TariL96,https://doi.org/10.1142/S0218194096000132 +Maja Pusnik,Investigation of Developer's Perceptions in XML Schema Development Using Textual and Visual Tool Types.,2014,24,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke24.html#PusnikPHJS14,https://doi.org/10.1142/S021819401450017X +He Jiang,PRST: A PageRank-Based Summarization Technique for Summarizing Bug Reports with Duplicates.,2017,27,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke27.html#JiangNZZR17,https://doi.org/10.1142/S0218194017500322 +Hassan Haghighi,Towards a Calculus for Nondeterministic Schemas in Z.,2012,22,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke22.html#HaghighiM12,https://doi.org/10.1142/S0218194012500222 +Maya Daneva,Uncertain Context Factors in ERP Project Estimation are an Asset: Insights from a Semi-Replication Case Study in a Financial Services Firm.,2011,21,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke21.html#Daneva11,https://doi.org/10.1142/S0218194011005335 +Leon Sterling,"On the Animation of ""not Executable"" Specifications by Prolog.",1996,6,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke6.html#SterlingCT96,https://doi.org/10.1142/S0218194096000041 +K. S. Ravichandran,A Novel Approach for Optimal Grouping of Reusable Software Components for Component Based Software Development Systems.,2013,23,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke23.html#RavichandranSS13,https://doi.org/10.1142/S0218194013500253 +Yuanyuan Cai,Cloud Computing Research Analysis Using Bibliometric Method.,2015,25,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke25.html#CaiLWX15,https://doi.org/10.1142/S0218194015400203 +Vahid Rafe,Formal Analysis of UML 2.0 Activities Using Graph Transformation Systems.,2010,20,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke20.html#RafeRR10,https://doi.org/10.1142/S0218194010004918 +Young-Gab Kim,Formal Verification of Bundle Authentication Mechanism in Osgi Service Platform: Ban Logic.,2006,16,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke16.html#KimMJB06,https://doi.org/10.1142/S0218194006002793 +Isabel María del águila,Requirement Risk Level Forecast Using Bayesian Networks Classifiers.,2011,21,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke21.html#AguilaS11,https://doi.org/10.1142/S0218194011005219 +Giovanni Denaro,Towards Industrially Relevant Fault-Proneness Models.,2003,13,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke13.html#DenaroPM03,https://doi.org/10.1142/S0218194003001366 +Sumanth Yenduri,Performance Evaluation of Imputation Methods for Incomplete Datasets.,2007,17,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke17.html#YenduriI07,https://doi.org/10.1142/S0218194007003173 +Shengtao Sun,The Application of a Hierarchical Tree Method to Ontology Knowledge Engineering.,2012,22,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke22.html#SunLL12,https://doi.org/10.1142/S0218194012500155 +Mauricio Amaral de Almeida,An Investigation on the Use of Machine Learned Models for Estimating Software Correctability.,1999,9,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke9.html#AlmeidaLM99,https://doi.org/10.1142/S0218194099000310 +Zhenchang Xing,Understanding the Evolution and Co-evolution of Classes in Object-oriented Systems.,2006,16,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke16.html#XingS06,https://doi.org/10.1142/S0218194006002707 +Aniello Cimitile,Guest Editor's Introduction: Adding Pieces to the Software Evolution Puzzle.,1995,5,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke5.html#Cimitile95,https://doi.org/10.1142/S0218194095000307 +Juan Carlos Esteva,Identifying Reusable Software Components by Induction.,1991,1,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke1.html#EstevaR91,https://doi.org/10.1142/S0218194091000202 +Marko Boskovic,Automated Staged Configuration with Semantic Web Technologies.,2010,20,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke20.html#BoskovicBGMKH10,https://doi.org/10.1142/S0218194010004827 +Iman Avazpour,Generating Reusable Visual Notations Using Model Transformation.,2015,25,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke25.html#AvazpourGV15,https://doi.org/10.1142/S0218194015400100 +Lily Chang,A Methodology to Analyze Multi-Agent Systems Modeled in High Level Petri Nets.,2015,25,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke25.html#ChangH15,https://doi.org/10.1142/S0218194015500230 +Daniel E. Cooke,Guest Editor's Introduction.,2009,19,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke19.html#Cooke09,https://doi.org/10.1142/S0218194009004301 +W. Eric Wong,Reachability Graph-Based Test Sequence Generation for Concurrent Programs.,2008,18,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke18.html#WongL08,https://doi.org/10.1142/S0218194008003878 +Hiroaki Fukuda,SyncAS: A Virtual Block Approach to Tame Asynchronous Programming.,2015,25,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke25.html#FukudaL15,https://doi.org/10.1142/S0218194015400252 +Fei Xie,Semantic Analysis and Synthesis of Complex Biological Systems.,2005,15,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke15.html#XieSLC05,https://doi.org/10.1142/S0218194005002415 +Jocelyn Simmonds,A Tool Based on DL for UML Model Consistency Checking.,2008,18,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke18.html#SimmondsBHR08,https://doi.org/10.1142/S0218194008003829 +Xiaoying Bai,Risk Assessment and Adaptive Group Testing of Semantic Web Services.,2012,22,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke22.html#BaiKY12,https://doi.org/10.1142/S0218194012500167 +Saulius Astromskis,Continuous CMMI Assessment Using Non-Invasive Measurement and Process Mining.,2014,24,International Journal of Software Engineering and Knowledge Engineering,9,db/journals/ijseke/ijseke24.html#AstromskisJSS14,https://doi.org/10.1142/S0218194014400117 +Baojun Ma,Investigating Associative Classification for Software Fault Prediction: An Experimental Perspective.,2014,24,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke24.html#MaZCZB14,https://doi.org/10.1142/S021819401450003X +Giuseppe Visaggio,Guest Editors' Introduction.,1997,7,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke7.html#Visaggio97,https://doi.org/10.1142/S0218194097000084 +Zhongyu Lu,A Survey Of Xml Applications On Science And Technology.,2005,15,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke15.html#Lu05,https://doi.org/10.1142/S0218194005001902 +Achyanta Kumar Sarmah,A New Pattern-Based Flexible Approach for Maintaining a Constrained Workflow.,2014,24,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke24.html#SarmahSH14,https://doi.org/10.1142/S0218194014500065 +Wasif Afzal,Resampling Methods in Software Quality Classification.,2012,22,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke22.html#AfzalTF12,https://doi.org/10.1142/S0218194012400037 +Harald C. Gall,Using Domain Knowledge to Improve Reverse Engineering.,1996,6,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke6.html#GallKM96,https://doi.org/10.1142/S021819409600020X +Mikael Svahnberg,A Quality-Driven Decision-Support Method for Identifying Software Architecture Candidates.,2003,13,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke13.html#SvahnbergWLM03,https://doi.org/10.1142/S0218194003001421 +Heather Richter,Tagging Knowledge Acquisition Sessions To Facilitate Knowledge Traceability.,2004,14,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke14.html#RichterAMF04,https://doi.org/10.1142/S0218194004001543 +Päivi Parviainen,A Survey of Existing Requirements Engineering Technologies and their Coverage.,2007,17,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke17.html#ParviainenT07,https://doi.org/10.1142/S0218194007003513 +Lidong Zhai,Research Notes: User Influence in Microblog Based on Interest Graph.,2018,28,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke28.html#ZhaiWHL18,https://doi.org/10.1142/S0218194018400041 +Dehong Qiu,Reconstructing Software High-Level Architecture by Clustering Weighted Directed Class Graph.,2015,25,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke25.html#QiuZF15,https://doi.org/10.1142/S0218194015500072 +Gustavo Rossi,Designing Hypermedia Applications with Objects and Patterns.,1999,9,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke9.html#RossiSL99,https://doi.org/10.1142/S0218194099000395 +Frank Maurer,Guest Editors' Introduction.,2006,16,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke16.html#MaurerR06,https://doi.org/10.1142/S0218194006002732 +Jiawei Han 0001,On the Power of Query-Independent Compilation.,1992,2,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke2.html#Han92,https://doi.org/10.1142/S0218194092000142 +Dragan M. Bojic,A Modified Hill-Climbing Algorithm for Knowledge Test Assembly Based on Classified Criteria.,2016,26,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke26.html#BojicBPT16,https://doi.org/10.1142/S0218194016500327 +Claus Pahl,An Ontological Framework for Web Service Processes.,2008,18,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke18.html#PahlB08,https://doi.org/10.1142/S0218194008003684 +Johnny Maikeo Ferreira,Software Product Line Testing Based on Feature Model Mutation.,2017,27,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke27.html#FerreiraVQ17,https://doi.org/10.1142/S0218194017500309 +Michael L. Gibson,Computer Aided Software Engineering: Facilitating the Path for True Software and Knowledge Engineering.,1991,1,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke1.html#GibsonS91,https://doi.org/10.1142/S0218194091000093 +Taghi M. Khoshgoftaar,Using Classification Trees for Software Quality Models: Lessons Learned.,1999,9,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke9.html#KhoshgoftaarANJH99,https://doi.org/10.1142/S0218194099000140 +Jianxin Li,Using Mathematical Induction in Systematic Program Development.,1994,4,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke4.html#LiL94,https://doi.org/10.1142/S0218194094000271 +Javier Garzás,An Ontology for Understanding and Applying Object-Oriented Design Knowledge.,2007,17,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke17.html#GarzasP07,https://doi.org/10.1142/S0218194007003318 +Sai-Keung Wong,Interactive Sand Art Drawing Using RGB-D Sensor.,2018,28,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke28.html#WongCC18,https://doi.org/10.1142/S0218194018500183 +Tauhida Parveen,Detecting Emulated Environments.,2012,22,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke22.html#ParveenTAMF12,https://doi.org/10.1142/S0218194012500258 +Xiaoyong Li 0003,Research on Trust Prediction Model for Selecting Web Services Based on Multiple Decision Factors.,2011,21,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke21.html#LiZY11,https://doi.org/10.1142/S0218194011005608 +Andrea F. Abate,Rbs: a Robust Bimodal System for Face Recognition.,2007,17,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke17.html#AbateNRT07,https://doi.org/10.1142/S0218194007003379 +Luqi,The Role of Prototyping Languages in Case.,1991,1,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke1.html#Luqi91,https://doi.org/10.1142/S0218194091000135 +Niklas Hallberg,Ontology for Systems Development.,2014,24,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke24.html#HallbergJP14,https://doi.org/10.1142/S0218194014500132 +Jane Huffman Hayes,A Framework for Comparing Requirements Tracing Experiments.,2005,15,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke15.html#HayesD05,https://doi.org/10.1142/S021819400500252X +Rui Gustavo Crespo,Matching Single-Sort Algebraic Specifications for Software Reuse.,1998,8,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke8.html#Crespo98,https://doi.org/10.1142/S0218194098000224 +William W. Cohen,Automatically Exploring Hypotheses About Fault Prediction: A Comparative Study of Inductive Logic Programming Methods.,1999,9,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke9.html#CohenD99,https://doi.org/10.1142/S0218194099000292 +Yuen-Tak Yu,A Study on a Path-based Strategy for Selecting Black-box Generated Test Cases.,2001,11,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke11.html#YuTPC01,https://doi.org/10.1142/S0218194001000475 +Mats Skoglund,Improving Class Firewall Regression Test Selection by Removing the Class Firewall.,2007,17,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke17.html#SkoglundR07,https://doi.org/10.1142/S0218194007003306 +Jacques H. J. Lenting,The Frame Problem from an Engineering Perspective.,1993,3,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke3.html#LentingB93,https://doi.org/10.1142/S0218194093000124 +Semra Yilmaz Tastekin,Accounting for Product Similarity in Software Project Duration Estimation.,2016,26,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke26.html#TastekinEB16,https://doi.org/10.1142/S0218194016500042 +Yong Qin,Guest Editors' Introduction.,2018,28,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke28.html#QinAJ18,https://doi.org/10.1142/S0218194018020023 +Haiping Xu,Future Research Directions of Software Engineering and Knowledge Engineering.,2015,25,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke25.html#Xu15,https://doi.org/10.1142/S0218194015500035 +Honghua Dai,Guest Editors' Introduction.,2004,14,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke14.html#DaiW04,https://doi.org/10.1142/S0218194004001713 +Vladimir V. Mazalov,Method of Cumulative Sums and Problems of Optimal Control by Technological Processes.,1997,7,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke7.html#Mazalov97,https://doi.org/10.1142/S0218194097000126 +Yi Zhao,Control-Oriented Modeling of 2d Torsional Micromirror.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#ZhaoTZ05,https://doi.org/10.1142/S0218194005001975 +Ivan Radojevic,A New Model for Heterogeneous Embedded Systems - What Esterel and SyncCharts Need to Become a Suitable Specification Platform.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#RadojevicSR05,https://doi.org/10.1142/S0218194005001963 +Ye Wang,Proqrass: a Process-Based Approach to Quality Requirements Analysis for Service Systems.,2013,23,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke23.html#WangYWK13,https://doi.org/10.1142/S0218194013500277 +Zheng-Yang Liu,Automating Software Evolution.,1995,5,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke5.html#Liu95,https://doi.org/10.1142/S0218194095000058 +Rong-Ming Chen,A Software Architecture for Finding Motifs Using Genetic Algorithm.,2005,15,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke15.html#ChenLT05,https://doi.org/10.1142/S0218194005002440 +Stephen J. H. Yang,Specifying and Verifying Temporal Behavior of High Assurance Systems Using Reachability Tree Logic.,1999,9,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke9.html#YangCL99,https://doi.org/10.1142/S0218194099000152 +Vincent Hilaire,Formal Specification Approach of Role Dynamics in Agent Organisations: Application to the Satisfaction-Altruism Model.,2007,17,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke17.html#HilaireGKS07,https://doi.org/10.1142/S0218194007003392 +Deokyoon Ko,Suggesting Alternative Scenarios Using Use Case Specification Patterns for Requirement Completeness.,2016,26,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke26.html#KoPKPK16,https://doi.org/10.1142/S0218194016500315 +Yun-Heh Chen-Burger,Formal Support for an Informal Business Modelling Method.,2000,10,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke10.html#Chen-BurgerRS00,https://doi.org/10.1142/S0218194000000055 +Xiaowei Yan,Identifying Software Component Association With Genetic Algorithm.,2004,14,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke14.html#YanZZ04,https://doi.org/10.1142/S0218194004001695 +Xiaohong Li,Fepchecker: An Automatic Model Checker for Verifying Fairness and Non-Repudiation of Security Protocols in Web Service.,2016,26,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke26.html#LiXXHLFG16,https://doi.org/10.1142/S0218194016400027 +Lena Karlsson,Case Studies in Process Improvement through Retrospective Analysis of Release Planning Decisions.,2006,16,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke16.html#KarlssonRT06,https://doi.org/10.1142/S0218194006003014 +George Vasilakis,Knowledge-Based Representation of 3D Media.,2010,20,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke20.html#VasilakisGPCRSVP10,https://doi.org/10.1142/S0218194010004773 +Xudong He,A Comprehensive Survey of Petri Net Modeling in Software Engineering.,2013,23,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke23.html#He13,https://doi.org/10.1142/S021819401340010X +Josep Maria Brunetti,Improved Linked Data Interaction through an Automatic Information Architecture.,2012,22,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke22.html#BrunettiGGG12,https://doi.org/10.1142/S0218194012400062 +Wei Lu 0010,Improving Resilience of Software Systems: A Case Study in 3D-Online Game System.,2017,27,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke27.html#LuWBXZ17,https://doi.org/10.1142/S0218194017500012 +Maria Francesca Costabile,Designing Customized and Tailorable Visual Interactive Systems.,2008,18,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke18.html#CostabileFMMPP08,https://doi.org/10.1142/S0218194008003702 +K. H. Kim,Real-Time Object-Oriented Distributed Software Engineering and the TMO Scheme.,1999,9,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke9.html#Kim99,https://doi.org/10.1142/S0218194099000164 +Loredana Caruccio,A Tool Supporting End-User Development of Access Control in Web Applications.,2015,25,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke25.html#CaruccioDDGP15,https://doi.org/10.1142/S0218194015400112 +Jen Seevinck,Emergence in Interactive Artistic Visualization.,2015,25,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke25.html#Seevinck15,https://doi.org/10.1142/S0218194015400070 +Nestor Rychtyckyj,Using Cultural Algorithms to re-engineer Large-scale Semantic Networks.,2005,15,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke15.html#RychtyckyjR05,https://doi.org/10.1142/S0218194005002506 +Jens H. Weber-Jahnke,Design of Decoupled Clinical Decision Support for Service-Oriented Architectures.,2009,19,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke19.html#Weber-Jahnke09,https://doi.org/10.1142/S0218194009004143 +Ji-Hyun Lee,Component Contract-Based Interface Specification Technique Using Z.,2002,12,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke12.html#LeeYC02,https://doi.org/10.1142/S0218194002000974 +Miroslav Bures,Identification of Potential Reusable Subroutines in Recorded Automated Test Scripts.,2018,28,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke28.html#BuresFJ18,https://doi.org/10.1142/S0218194018500018 +Jeongeun Choi,Test Agent System.,2002,12,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke12.html#ChoiC02,https://doi.org/10.1142/S021819400200086X +Hee-Jin Lee,A User eXperience Evaluation Framework for Mobile Usability.,2017,27,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke27.html#LeeLJB17,https://doi.org/10.1142/S0218194017500097 +Pengcheng Zhang,Android-SRV: Scenario-Based Runtime Verification of Android Applications.,2018,28,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke28.html#ZhangCG18,https://doi.org/10.1142/S0218194018500080 +Emmad Saadeh,Refactoring with Ordered Collections of Fine-Grain Transformations.,2013,23,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke23.html#SaadehK13,https://doi.org/10.1142/S0218194013500095 +Chang-Kyun Jeon,Probabilistic Approach to Predicting Risk in Software Projects Using Software Repository Data.,2015,25,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke25.html#JeonKI15,https://doi.org/10.1142/S0218194015500151 +Nikolay N. Mirenkov,Internet Multimedia Computing - Guest Editors' Introduction.,2001,11,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke11.html#MirenkovVM01,https://doi.org/10.1142/S0218194001000396 +Md. Shazzad Hosain,Multi-Key Index for Distributed Database System.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#HosainN05,https://doi.org/10.1142/S0218194005002075 +Chi Keen Low,An Automated Tool (IDAF) to Manipulate Interaction Diagrams and Fragmentations for Multi-Agent Systems.,1999,9,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke9.html#LowRC99,https://doi.org/10.1142/S0218194099000085 +Young Jun Kim,Design Of Object Model Reuse System By Cbr In System Analysis.,2004,14,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke14.html#KimK04,https://doi.org/10.1142/S0218194004001671 +Vahid Garousi,A bibliometric/Geographic Assessment of 40 Years of Software Engineering Research (1969-2009).,2013,23,International Journal of Software Engineering and Knowledge Engineering,9,db/journals/ijseke/ijseke23.html#GarousiR13,https://doi.org/10.1142/S0218194013500423 +Stephen J. Morris,Engineering via Discourse: Content Structure as an Essential Component for Multimedia Documents.,1999,9,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke9.html#MorrisF99,https://doi.org/10.1142/S0218194099000371 +Seyed Masoud Sadjadi,Trap.Net: a Realization of Transparent Shaping in .Net.,2009,19,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke19.html#SadjadiT09,https://doi.org/10.1142/S0218194009004258 +Kwok Ping Chan,Restricted Random Testing: Adaptive Random Testing by Exclusion.,2006,16,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke16.html#ChanCT06,https://doi.org/10.1142/S0218194006002926 +Mahadevan Subramaniam,An Approach for Cluster-Based Retrieval of Tests Using Cover-Coefficients.,2015,25,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke25.html#SubramaniamC15,https://doi.org/10.1142/S0218194015500163 +Fernando de Castro Netto,An Automated Approach for Scheduling Bug Fix Tasks.,2016,26,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke26.html#NettoBA16,https://doi.org/10.1142/S021819401650011X +Hyeon Soo Kim,Restructuring Programs through Program Slicing.,1994,4,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke4.html#KimKC94,https://doi.org/10.1142/S0218194094000179 +Yung Han Tan,Design of Seamless Protocol Switching Layer for Voice Over Internet Protocol (Voip) That Switches Between Bluetooth and Ieee 802.11.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#TanTH05,https://doi.org/10.1142/S0218194005002178 +Emanuele Ciapessoni,Specifying Industrial Real-Time Systems with a Temporal Logic Framework.,1996,6,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke6.html#CiapessoniCMRC96,https://doi.org/10.1142/S021819409600003X +Ben R. Whittle,Trends in Structure-Oriented Environments.,1994,4,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke4.html#WhittleGR94,https://doi.org/10.1142/S0218194094000076 +Elham Paikari,Defect Prediction using Case-Based Reasoning: an Attribute Weighting Technique Based upon sensitivity Analysis in Neural Networks.,2012,22,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke22.html#PaikariRR12,https://doi.org/10.1142/S0218194012400116 +Kai-Yuan Cai,On the Online Parameter Estimation Problem in Adaptive Software Testing.,2008,18,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke18.html#CaiCLYZ08,https://doi.org/10.1142/S0218194008003696 +Ragu Venugopal,Integrating Process Description and Execution with an Object-Oriented Paradigm.,1991,1,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke1.html#VenugopalHS91,https://doi.org/10.1142/S0218194091000196 +Jane Rathbun,In Loving Memory of Daniel Cooke.,2012,22,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke22.html#Rathbun12,https://doi.org/10.1142/S0218194012400098 +Sidney C. Bailin,A Learning-Based Software Engineering Environment for Reusing Design Knowledge.,1991,1,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke1.html#BailinGT91,https://doi.org/10.1142/S0218194091000251 +Dolores Cuadra,An OCL-Based Approach to Derive Constraint Test Cases for Database Applications.,2011,21,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke21.html#CuadraACV11,https://doi.org/10.1142/S0218194011005426 +Giovanni Cantone,Production and Maintenance of Goal-Oriented Software Measurement Models.,2000,10,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke10.html#CantoneD00,https://doi.org/10.1142/S0218194000000328 +Torgeir Dingsøyr,A Survey of Case Studies of the Use of Knowledge Management in Software Engineering.,2002,12,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke12.html#DingsoyrC02,https://doi.org/10.1142/S0218194002000962 +Jung-Yong Park,Event Normalization Methodology for Computer Game Environment Simulation.,2009,19,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke19.html#ParkP09,https://doi.org/10.1142/S0218194009004453 +Seok Won Lee,Building Decision Support Problem Domain Ontology from Natural Language Requirements for Software Assurance.,2006,16,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke16.html#LeeMGYA06,https://doi.org/10.1142/S0218194006003051 +Jinfu Chen,Detecting Implicit Security Exceptions Using an Improved Variable-Length Sequential Pattern Mining Method.,2017,27,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke27.html#ChenCTZHAO17,https://doi.org/10.1142/S0218194017500462 +Daniel Strmecki,A Systematic Literature Review on the Application of Ontologies in Automatic Programming.,2018,28,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke28.html#StrmeckiMR18,https://doi.org/10.1142/S0218194018300014 +Euijong Lee,An Evaluation Method for Content Analysis Based on Twitter Content Influence.,2017,27,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke27.html#LeeKSSB17,https://doi.org/10.1142/S0218194017500310 +Atsushi Togashi,Animating LOTOS Specifications Using Amlog.,1996,6,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke6.html#TogashiMS96,https://doi.org/10.1142/S0218194096000028 +Naser S. Barghouti,Scaling up Rule-Based Software Development Environments.,1992,2,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke2.html#BarghoutiK92,https://doi.org/10.1142/S021819409200004X +Mark Sifer,Scalability for Graph-Based Case Tools.,1995,5,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke5.html#SiferP95,https://doi.org/10.1142/S0218194095000174 +Veronica Gacitua-Decar,Structural Process Pattern Matching Based on Graph Morphism Detection.,2017,27,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke27.html#Gacitua-DecarP17,https://doi.org/10.1142/S0218194017500073 +Krishnakumar Balasubramanian,Weaving Deployment Aspects into Domain-specific Models.,2006,16,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke16.html#BalasubramanianGLZG06,https://doi.org/10.1142/S021819400600280X +Phillip C.-Y. Sheu,Guest Editors' Introduction.,1998,8,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke8.html#SheuK98,http://ejournals.wspc.com.sg/ijseke/08/0803/S0218194098000169.html +Cheeyang Song,An Integrated Design Method for SOA-Based Business Modeling and Software Modeling.,2016,26,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke26.html#SongC16,https://doi.org/10.1142/S0218194016500157 +Stan Jarzabek,Analysis of Meta-programs: an Example.,2006,16,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke16.html#JarzabekZRLS06,https://doi.org/10.1142/S0218194006002689 +Richi Nayak,A Data Mining Application Analysis of Problems Occurring during a Software Project Development Process.,2005,15,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke15.html#NayakQ05,https://doi.org/10.1142/S0218194005002476 +Ka L. Man,Case Studies in The Hybrid Process Algebra Hypa.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#ManRC05,https://doi.org/10.1142/S0218194005002385 +Francis Eng Hock Tay,Smart Shirt That Can Call for Help After A Fall.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#TayNKSS05,https://doi.org/10.1142/S0218194005002257 +John M. Baker,Project Management Utilizing an Advanced Case Environment.,1992,2,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke2.html#Baker92,https://doi.org/10.1142/S0218194092000129 +Aybüke Aurum,Aligning Software Project Decisions: a Case Study.,2006,16,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke16.html#AurumWP06,https://doi.org/10.1142/S0218194006003002 +Adrian David Cheok,Mobile Computing with Personal Area Network and Human Power Generation.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#CheokHYL05,https://doi.org/10.1142/S0218194005002348 +Jia Hao,A Review of Tacit Knowledge: Current Situation and the Direction to Go.,2017,27,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke27.html#HaoZYW17,https://doi.org/10.1142/S0218194017500279 +Anthony Savidis,A Decision-making Specification Language for Verifiable User-interface Adaptation Logic.,2005,15,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke15.html#SavidisAS05,https://doi.org/10.1142/S0218194005002646 +Yoshiki Mitani,An Empirical Study of Development Visualization for Procurement by in-Process Measurement during Integration and Testing.,2011,21,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke21.html#MitaniYTMBM11,https://doi.org/10.1142/S0218194011005323 +Michael E. Shin,Design of Secure Software Architectures with Secure Connectors.,2016,26,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke26.html#ShinGPBM16,https://doi.org/10.1142/S021819401650025X +Christopher M. Lott,Measurement Support in Software Engineering Environments.,1994,4,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke4.html#Lott94,https://doi.org/10.1142/S0218194094000209 +Peng Zhou,A Proof of Concept Study for Criminal Network Analysis with Interactive Strategies.,2017,27,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke27.html#ZhouLZL17,https://doi.org/10.1142/S0218194017500231 +Mohammad Izadi,Model Checking of Component Based Software Using Compositional Reductions.,2008,18,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke18.html#IzadiM08,https://doi.org/10.1142/S0218194008003775 +Hamzeh Eyal Salman,Feature-Level Change Impact Analysis Using Formal Concept Analysis.,2015,25,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke25.html#SalmanSD15,https://doi.org/10.1142/S0218194015400045 +João W. Cangussu,Guest Editors' Introduction.,2009,19,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke19.html#CangussuM09,https://doi.org/10.1142/S0218194009004350 +Colin Atkinson 0001,Processes and Products in a Multi-Level Metamodeling Architecture.,2001,11,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke11.html#AtkinsonK01,https://doi.org/10.1142/S0218194001000724 +Ryuya Akase,IGA-Based Interactive Framework Using Conjoint Analysis and SOM for Designing Room Layout.,2015,25,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke25.html#AkaseO15,https://doi.org/10.1142/S0218194015400136 +Alison Watkins,Using Genetic Algorithms and Decision Tree Induction to Classify Software Failures.,2006,16,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke16.html#WatkinsHBJ06,https://doi.org/10.1142/S021819400600277X +Kang Zhang,Guest Editor'S Introduction.,2004,14,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke14.html#Zhang04,https://doi.org/10.1142/S0218194004001579 +Kehan Gao,Investigating Two Approaches for Adding Feature Ranking to Sampled Ensemble Learning for Software Quality Estimation.,2015,25,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke25.html#GaoKN15,https://doi.org/10.1142/S0218194015400069 +Aimrudee Jongtaveesataporn,Combining the Strengths of BPEL and Mule ESB.,2014,24,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke24.html#JongtaveesatapornT14,https://doi.org/10.1142/S0218194014500144 +Antoni Lluís Mesquida,MIN-ITs: A Framework for Integration of IT Management Standards in Mature Environments.,2014,24,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke24.html#MesquidaPGA14,https://doi.org/10.1142/S0218194014400026 +Aniello Cimitile,Managing Software Projects by Structured Project Planning.,1997,7,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke7.html#CimitileV97,https://doi.org/10.1142/S0218194097000308 +Linlin Kou,Multistate Reliability Evaluation of Bogie on High Speed Railway Vehicle Based on the Network Flow Theory.,2018,28,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke28.html#KouQJF18,https://doi.org/10.1142/S0218194018400053 +Parvinder Singh Sandhu,Software Reusability Model for Procedure Based Domain-Specific Software Components.,2008,18,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke18.html#SandhuS08,https://doi.org/10.1142/S0218194008003982 +Shi-Kuo Chang,Ic Card: Visual Specification for Rapid Prototyping of Time-Critical Applications.,2007,17,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke17.html#ChangRZ07,https://doi.org/10.1142/S0218194007003422 +Jeffrey J. P. Tsai,Guest Editor's Introduction.,1992,2,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke2.html#Tsai92,https://doi.org/10.1142/S0218194092000336 +Ricardo Colomo Palacios,Book Review: Can We Improve the Ability to Improve?,2014,24,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke24.html#PalaciosG14,https://doi.org/10.1142/S0218194014800011 +Nicola Zannone,The Si* Modeling Framework: Metamodel and Applications.,2009,19,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke19.html#Zannone09,https://doi.org/10.1142/S0218194009004374 +Shih-Hsi Liu,Guest Editors' Introduction.,2015,25,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke25.html#LiuSLFM15,https://doi.org/10.1142/S0218194015020040 +Alberto Heredia,Study of Factors Influencing the Adoption of Agile Processes When Using Wikis.,2014,24,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke24.html#HerediaGSS14,https://doi.org/10.1142/S0218194014400014 +Anestis A. Toptsis,Heuristic Organization and Domain Analysis of Software Repositories.,1995,5,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke5.html#Toptsis95,https://doi.org/10.1142/S0218194095000113 +Jari Vanhanen,A Systematic Mapping Study of Empirical studies on the Use of Pair Programming in Industry.,2013,23,International Journal of Software Engineering and Knowledge Engineering,9,db/journals/ijseke/ijseke23.html#VanhanenM13,https://doi.org/10.1142/S0218194013500381 +Bai-En Shie,An Intelligent and Effective Mechanism for Mental Disorder Treatment by Using Biofeedback Analysis and Web Technologies.,2011,21,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke21.html#ShieJT11,https://doi.org/10.1142/S0218194011005190 +Jeffrey J. P. Tsai,Incremental Verification of Architecture Specification Language for Real-Time Systems.,1998,8,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke8.html#TsaiSSP98,https://doi.org/10.1142/S0218194098000194 +Laila Paganelli,A Tool for Creating Design Models from Web Site Code.,2003,13,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke13.html#PaganelliP03,https://doi.org/10.1142/S0218194003001275 +Avadhesh Kumar,Unified Cohesion Measures for Aspect-Oriented Systems.,2011,21,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke21.html#KumarKG11,https://doi.org/10.1142/S0218194011005128 +T. H. Tse,Quality Software - Guest Editor's Introduction.,2001,11,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke11.html#Tse01,https://doi.org/10.1142/S0218194001000451 +Mercedes Gómez-Albarrán,Applying Case-Based Reasoning to Support Dynamic Framework Documentation.,2001,11,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke11.html#Gomez-AlbarranG01,https://doi.org/10.1142/S0218194001000633 +Sophie Renault,Design of Redundant Formal Specifications by Logic Programming: Merging Formal Text and Good Comments.,1994,4,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke4.html#RenaultD94,https://doi.org/10.1142/S0218194094000180 +Michael E. Shin,Analyzing Dynamic Behavior Of Large-Scale Systems Through Model Transformation.,2005,15,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke15.html#ShinLWK05,https://doi.org/10.1142/S0218194005001896 +Welf Löwe,Rapid Construction of Software Comprehension Tools.,2005,15,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke15.html#LoweP05,https://doi.org/10.1142/S0218194005002622 +Manuel A. Pereira Remelhe,Combining Modelica Models with Discrete Event Formalisms for Simulation Using the Des/M Environmentc.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#RemelheE05,https://doi.org/10.1142/S0218194005001999 +Carina Frota Alves,Investigating Conflicts in Cots Decision-Making.,2003,13,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke13.html#AlvesF03,https://doi.org/10.1142/S0218194003001408 +Brian A. Malloy,Capturing Interface Protocols to Support Comprehension and Evaluation of C++ Libraries.,2011,21,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke21.html#MalloyLHD11,https://doi.org/10.1142/S0218194011005645 +Jerry Chun-Wei Lin,Efficiently Updating the Discovered Sequential Patterns for Sequence Modification.,2016,26,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke26.html#LinGFH16,https://doi.org/10.1142/S0218194016500455 +Yi Zhu,Multi-Resource Modeling of Real-Time Software Based on Resource Timed Process Algebra.,2016,26,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke26.html#ZhuHZZX16,https://doi.org/10.1142/S0218194016500388 +Mao Lin Huang,On-Line Visualization and Navigation of the Global Web Structure.,2003,13,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke13.html#HuangEL03,https://doi.org/10.1142/S0218194003001196 +S. Chen,Samea: Object-Oriented Software Maintenance Environment for Assembly Programs.,1992,2,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke2.html#ChenTC92,https://doi.org/10.1142/S0218194092000105 +Jean-Louis Sourrouille,A Knowledge-Based Framework of Object-Oriented Software Development Environments.,1994,4,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke4.html#Sourrouille94,https://doi.org/10.1142/S0218194094000222 +Jim R. Parker,Composite Algorithms in Image Content Searches.,2007,17,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke17.html#ParkerB07,https://doi.org/10.1142/S0218194007003331 +Oscar M. Rodríguez-Elias,Modeling and Analysis of Knowledge Flows in Software Processes through the Extension of the Software Process Engineering Metamodel.,2009,19,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke19.html#Rodriguez-EliasMVFP09,https://doi.org/10.1142/S0218194009004155 +Joseph Fong,Translating Relational Schema with Constraints into Xml Schema.,2006,16,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke16.html#FongFWY06,https://doi.org/10.1142/S0218194006002744 +Ernst-Erich Doberkat,Generating an Algebraic Specification from an ER-Model.,1997,7,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke7.html#Doberkat97,https://doi.org/10.1142/S0218194097000291 +Fátima L. S. Nunes,CBIR Based Testing Oracles: An Experimental Evaluation of Similarity Functions.,2015,25,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke25.html#NunesDGL15,https://doi.org/10.1142/S0218194015500254 +Gennaro Costagliola,A Methodology for Modeling Multimedia Databases.,2002,12,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke12.html#CostagliolaFMP02,https://doi.org/10.1142/S0218194002001025 +Shyue-Liang Wang,Shortest Paths Anonymization on Weighted Graphs.,2013,23,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke23.html#WangTKTH13,https://doi.org/10.1142/S0218194013400056 +M. S. Geetha Devasena,Automated and Optimized Software Test Suite Generation Technique for Structural Testing.,2016,26,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke26.html#DevasenaGV16,https://doi.org/10.1142/S0218194016500017 +Chih-Chin Lai,Using Genetic Algorithm to Solve Multiple Sequence Alignment Problem.,2009,19,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke19.html#LaiWH09,https://doi.org/10.1142/S0218194009004441 +Shunfu Hu,Developing a GIS-Based Information Management System for on-Site wastewater Treatment Facilities.,2008,18,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke18.html#HuZ08,https://doi.org/10.1142/S0218194008003738 +C. Murray Woodside,Software Resource Architecture.,2001,11,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke11.html#Woodside01,https://doi.org/10.1142/S0218194001000608 +Seok Won Lee,Ontology-Guided Service-Oriented Architecture Composition to Support Complex and Tailorable Process Definitions.,2009,19,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke19.html#LeeGW09,https://doi.org/10.1142/S0218194009004386 +Huaglory Tianfield,Guest Editors' Introduction: Agentization and Coordination.,2001,11,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke11.html#Tianfield01,https://doi.org/10.1142/S0218194001000712 +Yujian Fu,A Translator of Software Architecture Design from SAM to Java.,2007,17,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke17.html#FuDH07,https://doi.org/10.1142/S0218194007003483 +R. Krishnamoorthi,Requirement Based System Test Case Prioritization of New and Regression Test Cases.,2009,19,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke19.html#KrishnamoorthiM09,https://doi.org/10.1142/S0218194009004222 +Daniel M. Germán,Visualizing the Evolution of Software Using Softchange.,2006,16,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke16.html#GermanH06,https://doi.org/10.1142/S0218194006002665 +Shih-Ting Yang,A Medical Documents Rewriting Model Based on Medical Knowledge Demanders' Feelings and Emotions.,2018,28,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke28.html#Yang18,https://doi.org/10.1142/S0218194018500122 +Davide Bellinzona,Alembik - a Framework for the Adaptive Transcoding of Multimedia Content in Mobile Environments: from Requirements to Architecture and Performance Evaluation.,2012,22,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke22.html#BellinzonaR12,https://doi.org/10.1142/S0218194012500052 +Daniel Graupe,A Large Memory Storage and Retrieval Neural Network for Adaptive Retrieval and Diagnosis.,1998,8,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke8.html#GraupeK98,https://doi.org/10.1142/S0218194098000091 +S. A. Sahaaya Arul Mary,Time-Aware and Weighted Fault Severity Based Metrics for Test Case Prioritization.,2011,21,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke21.html#MaryK11,https://doi.org/10.1142/S0218194011005116 +Jeffrey J. P. Tsai,A System for Visualizing and Debugging Distributed Real-Time Systems with Monitoring Support.,1996,6,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke6.html#TsaiBY96,https://doi.org/10.1142/S0218194096000168 +Kazushi Murakoshi,Growing Hierarchical Self-Organizing Map Using Category Utility.,2016,26,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke26.html#MurakoshiF16,https://doi.org/10.1142/S0218194016500108 +Yan Ma,Counterexample Generation in Stochastic Model Checking Based on PSO Algorithm with Heuristic.,2016,26,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke26.html#MaCL16,https://doi.org/10.1142/S021819401650039X +Venu Vasudevan,Malleable Services.,2001,11,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke11.html#VasudevanL01,https://doi.org/10.1142/S0218194001000621 +Zohreh Karimi Aghdam,An Efficient Method to Generate Test Data for Software Structural Testing Using Artificial Bee Colony Optimization Algorithm.,2017,27,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke27.html#AghdamA17,https://doi.org/10.1142/S0218194017500358 +Thu-Trang Nguyen,Verifying Java Object Invariants at Runtime.,2011,21,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke21.html#NguyenTN11,https://doi.org/10.1142/S0218194011005281 +Daniela E. Herlea,A Compositional Knowledge Level Process Model of Requirements Engineering.,2002,12,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke12.html#HerleaJTW02,https://doi.org/10.1142/S0218194002000792 +J. F. M. Burg,Enhancing CASE Environments by Using Linguistics.,1998,8,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke8.html#BurgR98,https://doi.org/10.1142/S0218194098000248 +Jerzy W. Grzymala-Busse,On the Choice of the Best Test for Attribute Dependency in Programs for Learning from Examples.,1991,1,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke1.html#Grzymala-BusseM91,https://doi.org/10.1142/S0218194091000287 +Joseph Fong,Methodology for Data Conversion from XML Documents to Relations Using Extensible Stylesheet Language Transformation.,2009,19,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke19.html#FongSW09,https://doi.org/10.1142/S0218194009004131 +Jianlin Zhu,Software Architecture Recovery through Similarity-Based Graph Clustering.,2013,23,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke23.html#ZhuHZYZH13,https://doi.org/10.1142/S0218194013500162 +Enoch Y. Wang,Formalizing the Functional Model within Object-Oriented Design.,2000,10,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke10.html#WangC00,https://doi.org/10.1142/S0218194000000031 +Mohsen Rahmani,Agent Based Decision Tree Learning: a Novel Approach.,2009,19,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke19.html#RahmaniHHS09,https://doi.org/10.1142/S0218194009004477 +Wararat Rungworawut,Automating a Design Methodology for Reusable Business Process Components through a Genetic Algorithm.,2010,20,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke20.html#RungworawutS10,https://doi.org/10.1142/S0218194010005109 +Chul Jin Kim,Variability Design Techniques for Enhancing Component Reusability.,2006,16,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke16.html#KimCK06,https://doi.org/10.1142/S0218194006002860 +K. Priyantha Hewagamage,Situation-Dependent Metaphor for Personal Multimedia Information.,1999,9,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke9.html#HewagamageHI99,https://doi.org/10.1142/S0218194099000383 +Daniel L. Barbosa,Automating Functional Testing of Components from UML Specifications.,2007,17,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke17.html#BarbosaLMFJA07,https://doi.org/10.1142/S0218194007003276 +Jun-Jang Jeng,Using Automated Reasoning Techniques to Determine Software Reuse.,1992,2,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke2.html#JengC92,https://doi.org/10.1142/S0218194092000245 +Haralambos Mouratidis,Modeling Secure Systems Using an Agent-oriented Approach and Security Patterns.,2006,16,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke16.html#MouratidisWG06,https://doi.org/10.1142/S0218194006002823 +Martín Molina,Reusable Knowledge-Based Components for Building Software Applications: A Knowledge Modelling Approach.,1999,9,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke9.html#MolinaSC99,https://doi.org/10.1142/S021819409900019X +Deng Chen,Mining Class Temporal Specification Dynamically Based on Extended Markov Model.,2015,25,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke25.html#ChenHQJJ15,https://doi.org/10.1142/S0218194015500047 +Jiacun Wang,Resource Oriented Workflow Nets and Workflow Resource Requirement Analysis.,2013,23,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke23.html#WangL13,https://doi.org/10.1142/S0218194013400135 +Mohammad Moshirpour,Detecting Emergent Behavior in Distributed Systems using Scenario-Based Specifications.,2012,22,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke22.html#MoshirpourMF12,https://doi.org/10.1142/S0218194012400104 +Andrzej K. Brodzik,Book Review: Scientific Object and Its Shadow.,2015,25,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke25.html#Brodzik15,https://doi.org/10.1142/S0218194015800017 +Henrique Rebêlo,Quantifying the effects of Aspectual Decompositions on Design by Contract Modularization: a Maintenance Study.,2013,23,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke23.html#RebeloLKRCCSM13,https://doi.org/10.1142/S0218194013500265 +Murat Yilmaz,Effective Social Productivity Measurements during Software Development - An Empirical Study.,2016,26,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke26.html#YilmazOC16,https://doi.org/10.1142/S0218194016500194 +Bruce W. Weide,Guest Editor's Introduction.,1993,3,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke3.html#Weide93,https://doi.org/10.1142/S021819409300029X +Imed Hammouda,Managing Concern Knowledge in Software Systems.,2011,21,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke21.html#HammoudaKM11,https://doi.org/10.1142/S0218194011005566 +Franck Barbier,State-Based Composition in UML 2.,2008,18,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke18.html#BarbierA08,https://doi.org/10.1142/S0218194008003970 +Francy D. Rodríguez,Reusable Solutions for Implementing Usability Functionalities.,2015,25,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke25.html#RodriguezAJ15,https://doi.org/10.1142/S0218194015500084 +Swapna S. Gokhale,Guest Editor's Introduction.,2014,24,International Journal of Software Engineering and Knowledge Engineering,9,db/journals/ijseke/ijseke24.html#Gokhale14,https://doi.org/10.1142/S0218194014020045 +Ronald Maier,Peer-To-Peer Information Workspaces In Infotop.,2004,14,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke14.html#MaierS04,https://doi.org/10.1142/S0218194004001531 +Noriko Hanakawa,Genereation of Object-Oriented Software Process Using Milestones.,1999,9,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke9.html#HanakawaIMT99,https://doi.org/10.1142/S0218194099000255 +Jianxiao Liu,Web Service Clustering Using Relational Database Approach.,2015,25,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke25.html#LiuLLHMW15,https://doi.org/10.1142/S021819401550028X +Damiano Distante,Enhancing Navigability in Websites Built Using Web Content Management Systems.,2014,24,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke24.html#DistanteRS14,https://doi.org/10.1142/S0218194014500193 +Wooseok Ryu,A Simulation Network Model to Evaluate RFID Middlewares.,2011,21,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke21.html#RyuKH11,https://doi.org/10.1142/S0218194011005517 +Miin-Jeng Pan,A Two-Level Metadata Dictionary Approach for Semantic Query Processing in Multidatabase Systems.,1993,3,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke3.html#PanCY93,https://doi.org/10.1142/S0218194093000112 +Tanja E. J. Vos,Industrial Case Studies for Evaluating Search Based Structural Testing.,2012,22,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke22.html#VosBLWWGKW12,https://doi.org/10.1142/S0218194012500313 +B. L. Achee,Object Extensions to Z: a Survey.,1996,6,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke6.html#AcheeC96,https://doi.org/10.1142/S0218194096000211 +Luis Quesada 0002,ModelCC - A Pragmatic Parser Generator.,2014,24,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke24.html#QuesadaBC14,https://doi.org/10.1142/S0218194014500375 +Ramzi A. Haraty,Regression Test Cases Prioritization Using Clustering and Code Change Relevance.,2016,26,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke26.html#HaratyMMK16,https://doi.org/10.1142/S0218194016500248 +Cha Kun Lee,Global Optimization Of Linear Hybrid Systems With Varying Time Events.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#LeeB05,https://doi.org/10.1142/S0218194005001938 +Giuseppe Scanniello,On the Effect of Exploiting GPUs for a More Eco-Sustainable Lease of Life.,2015,25,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke25.html#ScannielloECG15,https://doi.org/10.1142/S0218194015500023 +Mathee Olarnsakul,Customizing Component-Based Software Using Component Coordination Model: A Use-Context Driven Approach Toward Role-Based Model.,2004,14,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke14.html#OlarnsakulB04,https://doi.org/10.1142/S0218194004001622 +Jyhjong Lin,An Object-Oriented Development Method for Consumer Support Systems.,2009,19,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke19.html#Lin09,https://doi.org/10.1142/S0218194009004507 +Alexander Fronk,Towards The Algebraic Analysis Of Hyperlink Structures.,2003,13,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke13.html#Fronk03,https://doi.org/10.1142/S0218194003001500 +Jason J. Jung,Semantic Wiki-Based Knowledge Management System by Interleaving Ontology Mapping Tool.,2013,23,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke23.html#Jung13,https://doi.org/10.1142/S0218194013400044 +Robert John Gautier,CDL - a Component Description Language for Reuse.,1993,3,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke3.html#GautierORW93,https://doi.org/10.1142/S0218194093000276 +Thomas Kunz,Reverse Engineering Distributed Applications: an Event Abstraction Tool.,1994,4,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke4.html#Kunz94,https://doi.org/10.1142/S0218194094000155 +Arthur H. M. ter Hofstede,Deriving Identity from Extensionality.,1998,8,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke8.html#HofstedeW98,https://doi.org/10.1142/S0218194098000121 +Kamran Sartipi,Dynamic Knowledge Extraction from Software Systems Using Sequential Pattern Mining.,2010,20,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke20.html#SartipiS10,https://doi.org/10.1142/S021819401000492X +Dong-Hyuk Im,A Version Management Framework for RDF Triple Stores.,2012,22,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke22.html#ImLK12,https://doi.org/10.1142/S0218194012500040 +Jiangbin Zheng,Multiple Depth Maps Integration for 3D Reconstruction Using Geodesic Graph Cuts.,2015,25,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke25.html#ZhengZRW15,https://doi.org/10.1142/S0218194015400173 +Christoph Prackwieser,Overcoming Heterogeneity in Business Process Modeling with Rule-Based Semantic Mappings.,2014,24,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke24.html#PrackwieserBGK14,https://doi.org/10.1142/S0218194014400087 +Ji-Tzay Yang,Constructing Flow-Based Tools with Generative and Compositional Techniques.,2000,10,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke10.html#YangWCH00,https://doi.org/10.1142/S0218194000000122 +Robert G. Merkel,Automatic Verification of Optimization Algorithms: a Case Study of a Quadratic Assignment Problem Solver.,2011,21,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke21.html#MerkelWLC11,https://doi.org/10.1142/S021819401100527X +Meng-Yao Chen,Visualized Awareness Support for Collaborative Software Development on Mobile Devices.,2015,25,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke25.html#ChenCLZ15,https://doi.org/10.1142/S0218194015400094 +Anthony Finkelstein,Viewpoints: A Framework for Integrating Multiple Perspectives in System Development.,1992,2,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke2.html#FinkelsteinKNFG92,https://doi.org/10.1142/S0218194092000038 +Peng Liu,Partial k-Anonymity for Privacy-Preserving Social Network Data Publishing.,2017,27,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke27.html#LiuBWL17,https://doi.org/10.1142/S0218194017500048 +Luis álvarez Sabucedo,A Holistic Semantic Framework for the Provision of Services in the Domain of eGovernment.,2009,19,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke19.html#SabucedoAPS09,https://doi.org/10.1142/S0218194009004490 +Joseph Fong,Concurrent Data Materialization for Object-Relational Database with Semantic Metadata.,2003,13,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke13.html#FongPFPP03,https://doi.org/10.1142/S0218194003001287 +Yanping Bai,Model and Application of Impact Wave in Measuring Dynamic Characteristic of Microstructure.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#BaiWJ05,https://doi.org/10.1142/S0218194005002191 +Yamine Aït Ameur,Formal Transformational Program Developments Directed by Operational Properties Evaluations.,1995,5,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke5.html#Ameur95,https://doi.org/10.1142/S0218194095000149 +Ziyuan Wang,Cost-Cognizant Combinatorial Test Case Prioritization.,2011,21,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke21.html#WangCXH11,https://doi.org/10.1142/S0218194011005499 +Miguel-ángel Sicilia,Guest Editors' Introduction.,2010,20,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke20.html#SiciliaKS10,https://doi.org/10.1142/S0218194010004840 +Elisa Bertino,Hsgs: An Interactive System For High-Level Specification And Generation Of Hypermedia Presentations.,2004,14,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke14.html#BertinoMS04,https://doi.org/10.1142/S0218194004001786 +José Cristóbal Riquelme Santos,A Comparison of Effort Estimation Methods for 4gl Programs: Experiences with Statistics and Data Mining.,2006,16,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke16.html#RiquelmePAPFR06,https://doi.org/10.1142/S0218194006002719 +Xiaobing Sun,ComboRT: A New Approach for Generating Regression Test Cases for Evolving Programs.,2016,26,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke26.html#SunPLL16,https://doi.org/10.1142/S0218194016500340 +Samini Subramaniam,QTwig: A Structural Join Algorithm for Efficient Query Retrieval Based on Region-Based Labeling.,2017,27,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke27.html#SubramaniamHSK17,https://doi.org/10.1142/S0218194017500115 +Ming Xie,Multi-Granularity Knowledge Mining on the Web.,2012,22,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke22.html#Xie12,https://doi.org/10.1142/S0218194012500015 +João W. Cangussu,A Segment Based Approach for the Reduction of the Number of Test Cases for Performance Evaluation of Components.,2009,19,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke19.html#CangussuCW09,https://doi.org/10.1142/S0218194009004283 +Wenjie Liu,Predicting the Severity of Bug Reports Based on Feature Selection.,2018,28,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke28.html#LiuWCJ18,https://doi.org/10.1142/S0218194018500158 +Scott R. Tilley,Programmable Reverse Engineering.,1994,4,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke4.html#TilleyWSM94,https://doi.org/10.1142/S0218194094000246 +Jorge L. Díaz-Herrera,Issues and Models in Software Product Lines.,2000,10,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke10.html#Diaz-HerreraKS00,https://doi.org/10.1142/S0218194000000286 +Grzegorz J. Nalepa,Uml Representation for Rule-Based Application Models with XTT2-Based Business Rules.,2012,22,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke22.html#NalepaK12,https://doi.org/10.1142/S021819401250012X +Manuel Peralta,Code-Change Impact Analysis using Counterfactuals: Theory and Implementation.,2013,23,International Journal of Software Engineering and Knowledge Engineering,10,db/journals/ijseke/ijseke23.html#PeraltaM13,https://doi.org/10.1142/S0218194013500460 +Robert R. Roxas,cyber-film: a Visual Approach that Facilitates Program Comprehension.,2005,15,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke15.html#RoxasM05,https://doi.org/10.1142/S0218194005002609 +Mehdi Amoui,Temporal Software Change Prediction Using Neural Networks.,2009,19,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke19.html#AmouiST09,https://doi.org/10.1142/S0218194009004489 +Naresh Kumar Nagwani,Generating Intelligent Summary Terms for Improving Knowledge Discovery in Software Bug Repositories.,2016,26,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke26.html#NagwaniV16,https://doi.org/10.1142/S0218194016500273 +Tsung-Yi Chen,A Multiple-Layer Knowledge Management System Framework Considering User Knowledge Privileges.,2009,19,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke19.html#Chen09,https://doi.org/10.1142/S0218194009004192 +Gregor Stiglic,Detecting Fault Modules Using Bioinformatics Techniques.,2007,17,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke17.html#StiglicMKP07,https://doi.org/10.1142/S0218194007003161 +Nico H. Lassing,Viewpoints on Modifiability.,2001,11,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke11.html#LassingRV01,https://doi.org/10.1142/S0218194001000591 +Stefan Biffl,Risk Assessment in Multi-disciplinary (Software+) Engineering Projects.,2011,21,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke21.html#BifflMW11,https://doi.org/10.1142/S0218194011005232 +Zhefu Wu,Network-Based Ranking for Open Source Software Developer Prediction.,2018,28,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke28.html#WuLFXX18,https://doi.org/10.1142/S0218194018500250 +Yogesh Singh,Predicting Software Development Effort Using Artificial Neural Network.,2010,20,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke20.html#SinghKBS10,https://doi.org/10.1142/S0218194010004761 +Yuh-Jen Chen,Ontology-Based Distributed Case-Based Reasoning in Virtual Enterprises.,2009,19,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke19.html#ChenCSW09,https://doi.org/10.1142/S0218194009004544 +Yan Xu,Learning Non-Taxonomic Relations on Demand for Ontology Extension.,2014,24,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke24.html#XuLML14,https://doi.org/10.1142/S0218194014400099 +Zhong-Qiang Ding,The Rapid Development of A Closed-Loop Control System.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#DingLG05,https://doi.org/10.1142/S0218194005002105 +C. V. Ramamoorthy,On Issues in Software Engineering and Artificial Intelligence.,1991,1,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke1.html#RamamoorthyMS91,https://doi.org/10.1142/S0218194091000044 +Thao Dang,A Reachability-Based Technique for Idle Speed Control Synthesis.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#Dang05,https://doi.org/10.1142/S0218194005001987 +Francisco Ortin,The Dsaw Aspect-Oriented Software Development Platform.,2011,21,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke21.html#OrtinVF11,https://doi.org/10.1142/S0218194011005554 +Witold Pedrycz,Association Analysis of Software Measures.,2002,12,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke12.html#PedryczSC02,https://doi.org/10.1142/S0218194002000913 +Giuseppe Della Penna,An XML Definition Language to Support Scenario-Based Requirements Engineering.,2003,13,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke13.html#PennaILO03,https://doi.org/10.1142/S0218194003001299 +Pengcheng Zhang,Model and Verification of WS-CDL Based on UML Diagrams.,2010,20,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke20.html#ZhangMZL10,https://doi.org/10.1142/S0218194010005092 +Hyung-Jong Kim,Security Requirement Representation Method for Confidence of Systems and Networks.,2010,20,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke20.html#KimKL10,https://doi.org/10.1142/S021819401000461X +Carlos E. Cirilo,Towards a Hybrid Approach for Adapting Web Graphical User Interfaces to Heterogeneous Devices using Context.,2012,22,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke22.html#CiriloPSZR12,https://doi.org/10.1142/S0218194012400128 +Y. S. Kuo,When to Inherit and when not to.,1995,5,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke5.html#Kuo95,https://doi.org/10.1142/S0218194095000198 +Ruchika Malhotra,Software Maintainability: Systematic Literature Review and Current Trends.,2016,26,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke26.html#MalhotraC16,https://doi.org/10.1142/S0218194016500431 +Daniel F. Fitch,A RAID-Based Secure and Fault-Tolerant Model for Cloud Information Storage.,2013,23,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke23.html#FitchX13,https://doi.org/10.1142/S0218194013400111 +Guisheng Fan,Formally Modeling and Analyzing the Reliability of Cloud Applications.,2016,26,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke26.html#FanYC16,https://doi.org/10.1142/S0218194016500121 +Shi-Kuo Chang,Message from the Editor-in-Chief.,2018,28,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke28.html#Chang18,https://doi.org/10.1142/S0218194018010015 +Ana Belén Barragáns-Martínez,Composing Multi-Perspective Software Requirements Specifications.,2008,18,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke18.html#Barragans-MartinezAVDNRB08,https://doi.org/10.1142/S0218194008003581 +Chi-Sheng Shih,Heterogeneous and Elastic Computation Framework for Mobile Cloud Computing.,2014,24,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke24.html#ShihCWC14,https://doi.org/10.1142/S0218194014400051 +Larry Hughes,A New Approach in Designing Interprocess Communication for Real-Time Systems.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#HughesML05,https://doi.org/10.1142/S0218194005002051 +Csaba J. Egyhazy,From Software Reuse to Database Reuse.,2000,10,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke10.html#Egyhazy00,https://doi.org/10.1142/S0218194000000134 +Hong Zhu,SLABS: A Formal Specification Language for Agent-Based Systems.,2001,11,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke11.html#Zhu01,https://doi.org/10.1142/S0218194001000657 +Francisco J. Martín,Knowledge and Experience Reuse Through Communication Among Competent (Peer) Agents.,1999,9,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke9.html#MartinPA99,https://doi.org/10.1142/S0218194099000206 +Ioana Rus,Supporting Decision-Making in Software Engineering with Process Simulation and Empirical Studies.,2003,13,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke13.html#RusHB03,https://doi.org/10.1142/S0218194003001391 +Mikhail Auguston,Parforman - an Assertion Language for Specifying Behavior when Debugging Parallel Applications.,1996,6,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke6.html#AugustonF96,https://doi.org/10.1142/S0218194096000259 +José A. Calvo-Manzano,Guest Editors' Introduction.,2014,24,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke24.html#Calvo-ManzanoMA14,https://doi.org/10.1142/S021819401402001X +Shih-Hsi Liu,Guest Editors' Introduction.,2012,22,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke22.html#LiuMS12,https://doi.org/10.1142/S0218194012020019 +Joseph E. Urban,The Impact of undergraduate Software Engineering Education on Advancing Case Tools.,1992,2,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke2.html#UrbanB92,https://doi.org/10.1142/S0218194092000130 +Yingze Wang,User Profile Visualization to Facilitate MSLIM-Model-Based Social Influence Analysis Based on Slow Intelligence Approach.,2014,24,International Journal of Software Engineering and Knowledge Engineering,10,db/journals/ijseke/ijseke24.html#WangC14,https://doi.org/10.1142/S0218194014400191 +Silvia Regina Vergilio,A Grammar-guided Genetic Programming Framework Configured for Data Mining and Software Testing.,2006,16,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke16.html#VergilioP06,https://doi.org/10.1142/S0218194006002781 +Dongwon Jeong,An Integrity Checking Mechanism of Mobile Agents under a Closed Environment with Trusted Hosts.,2006,16,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke16.html#JeongKP06,https://doi.org/10.1142/S0218194006002720 +Wen Zhang 0001,A Comparative Study of absent Features and Unobserved Values in Software Effort Data.,2012,22,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke22.html#ZhangYW12,https://doi.org/10.1142/S0218194012400025 +Agathe Merceron,Component-based Verification in a Synchronous Setting.,2001,11,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke11.html#MerceronP01,https://doi.org/10.1142/S0218194001000463 +Rakesh Shukla,A Framework for Statistical Testing of Software Components.,2007,17,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke17.html#ShuklaSC07,https://doi.org/10.1142/S021819400700329X +Kai H. Chang,Test Scenario Generation Based on Formal Specification and Usage Profile.,2000,10,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke10.html#ChangLCC00,https://doi.org/10.1142/S0218194000000110 +Jens H. Jahnke,Evaluating Theories for Managing Imperfect Knowledge in Human-Centric Database Reengineering Environments.,2002,12,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke12.html#JahnkeW02,https://doi.org/10.1142/S0218194002000834 +Ombretta Gaggi,A Laboratory for Prototyping and Testing Multimedia Presentations.,2006,16,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke16.html#GaggiC06,https://doi.org/10.1142/S0218194006002896 +Min Deng,Retrieval by Construction: a Traceability Technique to Support Verification and Validation of Uml Formalizations.,2005,15,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke15.html#DengSC05,https://doi.org/10.1142/S0218194005002531 +Giulio Concas,An Empirical Study of Software Metrics for Assessing the Phases of an Agile Project.,2012,22,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke22.html#ConcasMDT12,https://doi.org/10.1142/S0218194012500131 +Weiwei Xing,An Improved Potential Field Based Method for Crowd Simulation.,2015,25,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke25.html#XingZLB15,https://doi.org/10.1142/S021819401540015X +Zhongsheng Qian,Useful Specification-Based Logic Coverage criteria.,2013,23,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke23.html#Qian13,https://doi.org/10.1142/S0218194013500307 +Kathleen Brade,Whorf: a Hypertext Tool for Software Maintenance.,1994,4,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke4.html#BradeGSS94,https://doi.org/10.1142/S0218194094000027 +Peter J. Clarke,A Tool to Automatically Map Implementation-based Testing Techniques to Classes.,2006,16,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke16.html#ClarkeDBM06,https://doi.org/10.1142/S0218194006002884 +Steve Counsell,A Theoretical and Empirical Analysis of Three Slice-Based Metrics for Cohesion.,2010,20,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke20.html#CounsellHB10,https://doi.org/10.1142/S0218194010004888 +Zahra Akbari,A Method for Prioritizing Integration Testing in Software Product Lines Based on Feature Model.,2017,27,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke27.html#AkbariKM17,https://doi.org/10.1142/S0218194017500218 +Tubagus Mohammad Akhriza,Revealing the Gap Between Skills of Students and the Evolving Skills Required by the Industry of Information and Communication Technology.,2017,27,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke27.html#AkhrizaML17,https://doi.org/10.1142/S0218194017500255 +Abu H. M. Kamal,Feature Selection for Datasets with Imbalanced Class Distributions.,2010,20,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke20.html#KamalZPHN10,https://doi.org/10.1142/S0218194010004645 +Wei Song 0007,Exploration and Optimization of User Experience in Viewing Videos on a Mobile Phone.,2010,20,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke20.html#SongTD10,https://doi.org/10.1142/S0218194010005067 +Yan Zhao 0001,Level-wise Construction of Decision Trees for Classification.,2006,16,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke16.html#ZhaoYY06,https://doi.org/10.1142/S0218194006002690 +Chunyan Miao,A Dynamic Inference Model for Intelligent Agents.,2001,11,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke11.html#YanGMY01,https://doi.org/10.1142/S0218194001000669 +Gerardo Canfora,A Design Rationale Based Environment for Cooperative Maintenance.,2000,10,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke10.html#CanforaCL00,https://doi.org/10.1142/S0218194000000316 +Eelke Folmer,A Pattern Framework for Software Quality Assessment and Tradeoff Analysis.,2007,17,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke17.html#FolmerB07,https://doi.org/10.1142/S021819400700332X +Serge V. Plotnikov,Modeling under Local Structure Hypotheses.,1993,3,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke3.html#Plotnikov93,https://doi.org/10.1142/S0218194093000227 +Teck Hong Koh,Design Analysis of The Propulsion and Control System of an Underactuated Remotely Operated Vehicle Using Axiomatic Design Theory - Part 1.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#KOHTLLS05,https://doi.org/10.1142/S0218194005002282 +Chang-Mog Lee,User Interface Prototype Generation Technique Supporting Usage-Centered Design.,2009,19,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke19.html#LeeK09,https://doi.org/10.1142/S0218194009004088 +Yukio Mizuno,Multimedia Technologies in Japan: General Status and Future Trends.,1997,7,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke7.html#MizunoSW97,https://doi.org/10.1142/S0218194097000175 +Fei Dong,Reasoning under Uncertainty for Shill Detection in Online Auctions Using Dempster-Shafer Theory.,2010,20,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke20.html#DongSX10,https://doi.org/10.1142/S0218194010005018 +Hans van der Schoot,Data Flow Analysis of System Specifications in Lotos.,1997,7,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke7.html#SchootU97,https://doi.org/10.1142/S0218194097000035 +Junxia Guo,Analysis and Design of programmatic Interfaces for Integration of Diverse Web Contents.,2013,23,International Journal of Software Engineering and Knowledge Engineering,10,db/journals/ijseke/ijseke23.html#GuoH13,https://doi.org/10.1142/S0218194013500472 +Yi Deng,Guest Editors' Introduction: Special Issue on Embedded Software Engineering.,2002,12,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke12.html#DengB02,https://doi.org/10.1142/S0218194002000822 +Ruben Heradio,A literature Review on Feature Diagram Product Counting and its Usage in Software Product Line Economic Models.,2013,23,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke23.html#HeradioFCA13,https://doi.org/10.1142/S0218194013500368 +Weina Li,Distributed Frequent Interactive Pattern-Based Complex Software Group Network Stability Measurement.,2018,28,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke28.html#LiR18,https://doi.org/10.1142/S0218194018500171 +Tsung-Teng Chen,A Proposed Architecture for Self-Adaptive Expert Systems.,2009,19,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke19.html#ChenH09,https://doi.org/10.1142/S0218194009004179 +Humberto Cortés,NMMp: A Model-Driven UML Extension for the Description of Navigation Maps for Web Applications.,2014,24,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke24.html#CortesN14,https://doi.org/10.1142/S0218194014500156 +Lirong Dai,Modeling and Analysis of Performance Aspects for Software Architecture: a Uml-based Approach.,2006,16,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke16.html#DaiCW06,https://doi.org/10.1142/S0218194006002835 +David Raffo,Supporting Software Process Decisions Using Bi-Directional Simulation.,2003,13,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke13.html#RaffoS03,https://doi.org/10.1142/S0218194003001445 +Tsung-Hsi Chiang,Verification of Dataflow Scheduling.,2008,18,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke18.html#ChiangD08,https://doi.org/10.1142/S0218194008003891 +Murali Sitaraman,On Specification of Reusable Software Components.,1993,3,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke3.html#SitaramanWH93,https://doi.org/10.1142/S0218194093000100 +Yongsun Cho,The Technique of Business Model Driven Analysis and Test Design for Development of Web Applications.,2005,15,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke15.html#ChoLC05,https://doi.org/10.1142/S0218194005002452 +Yue Jiang,Incremental Development of Fault Prediction Models.,2013,23,International Journal of Software Engineering and Knowledge Engineering,10,db/journals/ijseke/ijseke23.html#JiangCML13,https://doi.org/10.1142/S0218194013500447 +Andrea F. Abate,Writing and Analyzing System Specifications by Integrated Linguistic Tools.,1997,7,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke7.html#AbateDNP97,https://doi.org/10.1142/S0218194097000047 +Sandro Bologna,Rigorous Engineering Practice and Formal Reasoning of Deep Domain Knowledge - the Basis of Dependable Knowledge Based Systems for Process Plant Control.,1993,3,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke3.html#BolognaSV93,https://doi.org/10.1142/S0218194093000045 +Alun D. Preece,Specifications and Tools for Building Reliable Expert Systems.,1993,3,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke3.html#Preece93,https://doi.org/10.1142/S0218194093000033 +Byoung-Dai Lee,Development of Energy-aware Mobile Applications Based on Resource Outsourcing.,2014,24,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke24.html#LeeLK14,https://doi.org/10.1142/S0218194014500399 +Richard J. Waldinger,Proving Properties of Rule-Based Systems.,1992,2,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke2.html#WaldingerS92,https://doi.org/10.1142/S0218194092000075 +Bedir Tekinerdogan,Feature-Based Rationale Management System for Supporting Software Architecture Adaptation.,2012,22,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke22.html#TekinerdoganSA12,https://doi.org/10.1142/S021819401250026X +Christian Schalles,A Causal Model for Analyzing the Impact of Graphical Modeling Languages on Usability.,2014,24,International Journal of Software Engineering and Knowledge Engineering,9,db/journals/ijseke/ijseke24.html#SchallesCR14,https://doi.org/10.1142/S0218194014500417 +Yi Deng,Executable Specification and Analysis for the Design of Concurrent Object-Oriented Systems.,1994,4,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke4.html#DengCL94,https://doi.org/10.1142/S0218194094000210 +Andreza Vieira,Towards Measuring the Change Impact in ATL Model Transformations.,2016,26,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke26.html#VieiraR16,https://doi.org/10.1142/S021819401650008X +Issam A. Hamid,Dynamic Evolution of Distributed Systems Specifications Using Reflective Language.,1995,5,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke5.html#HamidE95,https://doi.org/10.1142/S0218194095000253 +Markus Lumpe,Learning Better Inspection Optimization Policies.,2012,22,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke22.html#LumpeVMRT12,https://doi.org/10.1142/S0218194012500179 +Lie Wang,A Clustering-Based Bipartite Graph Privacy-Preserving Approach for Sharing High-Dimensional Data.,2014,24,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke24.html#WangL14,https://doi.org/10.1142/S0218194014500363 +Hong Mei,Guest Editors' Introduction.,2007,17,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke17.html#MeiT07,https://doi.org/10.1142/S021819400700346X +Michael Gelfond,Towards a Theory of Elaboration Tolerance: Logic Programming Approach.,1996,6,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke6.html#GelfondP96,https://doi.org/10.1142/S0218194096000053 +Ching-Pao Chang,Software Defect Prediction Using Intertransaction Association Rule Mining.,2009,19,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke19.html#ChangC09,https://doi.org/10.1142/S0218194009004428 +Marek Reformat,Guest Editor's Introduction.,2014,24,International Journal of Software Engineering and Knowledge Engineering,10,db/journals/ijseke/ijseke24.html#Reformat14,https://doi.org/10.1142/S0218194014020057 +Ilene Burnstein,Using Fuzzy Reasoning to Support Automated Program Understanding.,2000,10,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke10.html#BurnsteinS00,https://doi.org/10.1142/S0218194000000080 +David Jacobs,Software Process Representation to Support Multiple Views.,1995,5,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke5.html#JacobsM95,https://doi.org/10.1142/S0218194095000289 +C. Z. Wu,An Intelligent Agent Mobile emissions Model for Urban Environmental Management.,2008,18,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke18.html#WuYHL08,https://doi.org/10.1142/S0218194008003751 +Dirk Draheim,Integrated Framework for Seamless Modeling of Business and Technical Aspects in Process-Oriented Enterprise Applications.,2012,22,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke22.html#DraheimGN12,https://doi.org/10.1142/S0218194012500180 +Soner Kiziloluk,Web Pages Classification with Parliamentary Optimization Algorithm.,2017,27,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke27.html#KizilolukO17,https://doi.org/10.1142/S0218194017500188 +Luanna Lopes Lobato,Risk Management in Software Product Line Engineering: a Mapping Study.,2013,23,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke23.html#LobatoBNMAM13,https://doi.org/10.1142/S0218194013500150 +Augusto Celentano,Template-Based Generation of Multimedia Presentations.,2003,13,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke13.html#CelentanoG03,https://doi.org/10.1142/S0218194003001354 +Nabor C. Mendonça,A Loosely Coupled Aspect Language for SOA Applications.,2008,18,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke18.html#MendoncaSMRV08,https://doi.org/10.1142/S0218194008003623 +Cezary Orlowski,The Use of an Ontotrigger for Designing the Ontology of a Model Maturity Capsule.,2016,26,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke26.html#OrlowskiKNP16,https://doi.org/10.1142/S0218194016500236 +Chia-Yo Chang,Scientific Data Mining: A Case Study.,1998,8,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke8.html#ChangWC98,https://doi.org/10.1142/S0218194098000078 +Paulo Marcos Siqueira Bueno,Automatic Test Data Generation for Program Paths Using Genetic Algorithms.,2002,12,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke12.html#BuenoJ02,https://doi.org/10.1142/S0218194002001074 +Shadi Banitaan,Test Focus Selection for Integration Testing.,2017,27,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke27.html#BanitaanNM17,https://doi.org/10.1142/S0218194017500437 +Bojana Koteska,Quantitative Measurement of Scientific Software Quality: Definition of a Novel Quality Model.,2018,28,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke28.html#KoteskaMP18,https://doi.org/10.1142/S0218194018500146 +Vuk Vukovic,A Business Software Testing Process-Based Model Design.,2018,28,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke28.html#VukovicDT18,https://doi.org/10.1142/S0218194018500201 +Atsushi Sawada,Generating Data Access Programs from PCTE Schemas with Constraints.,1995,5,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke5.html#SawadaMAM95,https://doi.org/10.1142/S0218194095000162 +Robert G. Reynolds,Guest Editors Introduction: .,1995,5,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke5.html#Reynolds95,https://doi.org/10.1142/S0218194095000319 +He Hu 0001,Semi-Automatic Online Tagging with K-Medoid Clustering.,2014,24,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke24.html#HuD14,https://doi.org/10.1142/S0218194014400075 +Jan Wolter 0001,Generating 3D Visual Language Editors: Encapsulating Interaction Techniques in Visual Patterns.,2015,25,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke25.html#WolterK15,https://doi.org/10.1142/S0218194015400124 +Hugo A. Mitre-Hernández,User eXperience Management from Early Stages of Computer Game Development.,2016,26,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke26.html#Mitre-Hernandez16,https://doi.org/10.1142/S021819401650042X +Dianxiang Xu,Automated Test Code Generation from Class State Models.,2009,19,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke19.html#XuXW09,https://doi.org/10.1142/S0218194009004313 +Jihyun Lee,Architecture-Based Software Testing.,2018,28,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke28.html#LeeKK18,https://doi.org/10.1142/S0218194018500031 +Jianhua Ma,Towards a Natural Internet-Based Collaborative Environment with Support of Object Physical and Social Characteristics.,2001,11,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke11.html#MaHN01,https://doi.org/10.1142/S0218194001000402 +Abdelkareem M. Alashqar,A Framework for Selecting Architectural Tactics Using Fuzzy Measures.,2017,27,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke27.html#AlashqarEE17,https://doi.org/10.1142/S0218194017500176 +Stephen H. Edwards,A Flexible Strategy for Embedding and Configuring Run-Time Contract Checks in .Net Components.,2007,17,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke17.html#EdwardsH07,https://doi.org/10.1142/S0218194007003264 +Mehmet S. Aktas,Structural Code Clone Detection Methodology Using Software Metrics.,2016,26,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke26.html#AktasK16,https://doi.org/10.1142/S0218194016500133 +Nenad Stankovic,Guest Editor's Introduction.,2005,15,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke15.html#Stankovic05,https://doi.org/10.1142/S0218194005002592 +Futai Zou,Detecting Domain-Flux Malware Using DNS Failure Traffic.,2018,28,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke28.html#ZouLWLZJ18,https://doi.org/10.1142/S0218194018400016 +Bassey Isong,Enhancing Software Maintenance via Early Prediction of Fault-Prone Object-Oriented Classes.,2017,27,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke27.html#Isong17,https://doi.org/10.1142/S021819401750019X +Junwei Cao,High Performance Service Discovery in Large-Scale Multi-Agent and Mobile-Agent Systems.,2001,11,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke11.html#CaoKN01,https://doi.org/10.1142/S0218194001000682 +Hui Li 0014,Extraction and Analysis of Crucial Fraction in Software Networks.,2014,24,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke24.html#LiCGHZ14,https://doi.org/10.1142/S0218194014500235 +Jiang Guo,Object Modeling to Re-Engineer Legacy Systems.,2000,10,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke10.html#GuoL00,https://doi.org/10.1142/S0218194000000225 +Nikolay N. Mirenkov,Self-Explanatory Components: A New Programming Paradigm.,2001,11,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke11.html#MirenkovVYEHM01,https://doi.org/10.1142/S0218194001000414 +Hoang Chi Thanh,Parallel Combinatorial Algorithms for Multi-Sets and their Applications.,2013,23,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke23.html#Thanh13,https://doi.org/10.1142/S0218194013400068 +Denny Schneeweiss,Configurable Domain Objects for Resource Modelling in Treatment Scheduling.,2015,25,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke25.html#SchneeweissH15,https://doi.org/10.1142/S0218194015400240 +Oscar Mondragon,Supporting Elicitation And Specification Of Software Properties Through Patterns And Composite Propositions.,2004,14,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke14.html#MondragonG04,https://doi.org/10.1142/S0218194004001567 +Ying Jiang,An Approach to Testing Black-Box Components Using Contract-Based Mutation.,2008,18,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke18.html#JiangHSZX08,https://doi.org/10.1142/S0218194008003556 +Aneesa Saeed,Cost and Effectiveness of Search-Based Techniques for Model-Based Testing: An Empirical Analysis.,2017,27,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke27.html#SaeedHS17,https://doi.org/10.1142/S021819401750022X +Karianto Leman,Pda Based Human Motion Recognition System.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#LemanAT05,https://doi.org/10.1142/S021819400500218X +Mehmet Kaya,Identification of Extract Method Refactoring Opportunities through Analysis of Variable Declarations and Uses.,2017,27,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke27.html#KayaF17,https://doi.org/10.1142/S0218194017500036 +Yu Zhou,Augmenting Bug Localization with Part-of-Speech and Invocation.,2017,27,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke27.html#ZhouTCH17,https://doi.org/10.1142/S0218194017500346 +Nuno Flores,Learning Frameworks in a Social-Intensive Knowledge Environment - An Empirical Study.,2017,27,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke27.html#FloresA17,https://doi.org/10.1142/S0218194017500267 +Yean-Ru Chen,Automatic Failure Analysis Using Safecharts.,2007,17,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke17.html#ChenH07,https://doi.org/10.1142/S0218194007003136 +Tsong Yueh Chen,An Integrated Classification-Tree Methodology for Test Case Generation.,2000,10,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke10.html#ChenPT00,https://doi.org/10.1142/S0218194000000353 +Ajaree Naco,A Transformation-Based Approach to Application Model Development: Class Diagram Generation.,2008,18,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke18.html#NacoWA08,https://doi.org/10.1142/S0218194008003933 +Naresh Kumar Nagwani,A Comparative Study of Bug Classification Algorithms.,2014,24,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke24.html#NagwaniV14,https://doi.org/10.1142/S0218194014500053 +Mirna Muñoz,A Methodology for Establishing Multi-Model Environments in Order to Improve Organizational Software Processes.,2014,24,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke24.html#MunozMH14,https://doi.org/10.1142/S0218194014400038 +Pål Halvorsen,Assessment of Linux' Data Path Implementations for Download and Streaming.,2007,17,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke17.html#HalvorsenDG07,https://doi.org/10.1142/S0218194007003343 +Santanu Paul,Supporting Queries on Source Code: a Formal Framework.,1994,4,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke4.html#PaulP94,https://doi.org/10.1142/S0218194094000167 +Jung-Won Lee,Framework for Data Quality Assurance between Composite Services.,2009,19,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke19.html#LeeC09,https://doi.org/10.1142/S0218194009004180 +Yongrui Xu,A Cooperative Coevolution Approach to Automate Pattern-based Software Architectural Synthesis.,2014,24,International Journal of Software Engineering and Knowledge Engineering,10,db/journals/ijseke/ijseke24.html#XuL14,https://doi.org/10.1142/S0218194014400130 +Tim Menzies,Issues with Meta-Knowledge.,2000,10,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke10.html#MenziesAKM00,https://doi.org/10.1142/S0218194000000262 +Andrew Bennett,Using Your Fingers to Think: Enabling Subjective Routing with a Rubber Band Metaphor.,2015,25,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke25.html#BennettDL15,https://doi.org/10.1142/S0218194015400148 +Zhiying Hu,Knowledge-Based Reasoning Enhanced Control System for in-situ Bioremediation Processes.,2008,18,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke18.html#HuCH08,https://doi.org/10.1142/S0218194008003714 +Jane W.-S. Liu,Perts: a Prototyping Environment for Real-Time Systems.,1996,6,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke6.html#LiuLDTSSHRBS96,https://doi.org/10.1142/S0218194096000089 +Richard Torkar,Requirements Traceability: a Systematic Review and Industry Case Study.,2012,22,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke22.html#TorkarGFSRK12,https://doi.org/10.1142/S021819401250009X +Chih-Hung Chang,SysML-Based Requirement Management to Improve Software Development.,2016,26,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke26.html#ChangLCHC16,https://doi.org/10.1142/S0218194016500200 +Stephen H. Edwards,Common Interface Models for Reusable Software.,1993,3,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke3.html#Edwards93,https://doi.org/10.1142/S0218194093000094 +Alexander Felfernig,Uml as Domain Specific Language for the Construction of Knowledge-Based Configuration Systems.,2000,10,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke10.html#FelfernigFJ00,https://doi.org/10.1142/S0218194000000249 +Phillip C.-Y. Sheu,Guest Editors' Introduction.,1997,7,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke7.html#SheuK97,http://ejournals.wspc.com.sg/ijseke/07/0703/S0218194097000163.html +Franco Zambonelli,Organisational Rules as an Abstraction for the Analysis and Design of Multi-Agent Systems.,2001,11,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke11.html#ZambonelliJW01,https://doi.org/10.1142/S0218194001000505 +Arun Lakhotia,"Book Review: ""software Engineering: a Holistic View"".",1992,2,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke2.html#Lakhotia92,https://doi.org/10.1142/S0218194092000324 +Hossain Shahriar,Assessing Test Suites for Buffer Overflow Vulnerabilities.,2010,20,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke20.html#ShahriarZ10,https://doi.org/10.1142/S0218194010004621 +Jihun Park,Human Resource Allocation in Software Project with Practical Considerations.,2015,25,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke25.html#ParkSHSHB15,https://doi.org/10.1142/S021819401540001X +Reidar Conradi,Planning Support to Software Process Evolution.,2000,10,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke10.html#ConradiNWL00,https://doi.org/10.1142/S0218194000000043 +Xiaobing Sun,Analyzing Impact Rules of Different Change Types to Support Change Impact Analysis.,2013,23,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke23.html#SunLWZ13,https://doi.org/10.1142/S0218194013500071 +Katia Romero Felizardo,Visual Text Mining: Ensuring the Presence of Relevant Studies in Systematic Literature Reviews.,2015,25,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke25.html#FelizardoBMVM15,https://doi.org/10.1142/S0218194015500114 +José Ignacio Panach,Early Usability Measurement in Model-Driven Development: Definition and Empirical Evaluation.,2011,21,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke21.html#PanachCVAV11,https://doi.org/10.1142/S0218194011005311 +Burkhard Peuschel,A Knowledge-Based Software Development Environment Supporting Cooperative Work.,1992,2,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke2.html#PeuschelSW92,https://doi.org/10.1142/S0218194092000051 +Liming Yu,Theoretical Analysis and Experiment of A Novel Dep Chip With 3-D Silicon Electrodes.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#YuTXA05,https://doi.org/10.1142/S0218194005002154 +Chee-Yang Song,A Layered Metamodel for Hierarchical Modeling in UML.,2003,13,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke13.html#SongB03,https://doi.org/10.1142/S0218194003001263 +Frank W. Calles,Reverse Engineering Guest Editor's Introductions.,1994,4,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke4.html#Calles94,https://doi.org/10.1142/S0218194094000283 +Marcelo H. Ang Jr.,Towards Pervasive Robotics: Compliant Motion in Human Environments.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#Ang05,https://doi.org/10.1142/S0218194005002336 +Li Chunlin,Apply Market Mechanism to Agent-Based Grid Resource Management.,2003,13,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke13.html#ChunlinLL03,https://doi.org/10.1142/S0218194003001329 +Xu Wu,A Knowledge-Based System for Correcting Users' Misconceptions in Database Retrieval.,1993,3,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke3.html#WuI93,https://doi.org/10.1142/S0218194093000069 +Taghi M. Khoshgoftaar,Data Mining for Predictors of Software Quality.,1999,9,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke9.html#KhoshgoftaarAJH99,https://doi.org/10.1142/S0218194099000309 +Gennaro Costagliola,A Visual System Supporting Software Reuse in the Banking Legacy System Context.,2003,13,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke13.html#CostagliolaFS03,https://doi.org/10.1142/S0218194003001202 +Daniel McGaughran,Evolving More Representative Programs with Genetic Programming.,2009,19,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke19.html#McGaughranZ09,https://doi.org/10.1142/S021819400900409X +Motoshi Saeki,Guest Editor's Introduction.,1995,5,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke5.html#SaekiD95,https://doi.org/10.1142/S0218194095000320 +Alfs T. Berztiss,Safety-Critical Software: a Research Agenda.,1994,4,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke4.html#Berztiss94,https://doi.org/10.1142/S021819409400009X +Santiago Matalonga,Factors Affecting Distributed Agile Projects: a Systematic Review.,2013,23,International Journal of Software Engineering and Knowledge Engineering,9,db/journals/ijseke/ijseke23.html#MatalongaSM13,https://doi.org/10.1142/S021819401350040X +Gordana Rudic,Using OCL in the Formal Specification of the Library Standards.,2013,23,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke23.html#RudicS13,https://doi.org/10.1142/S0218194013500101 +Kunihiko Higa,Structured Design of a Knowledge-Based Message Dissemination System.,1994,4,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke4.html#HigaAS94,https://doi.org/10.1142/S0218194094000040 +Benjamin Denham,Evaluating the Quality of Drupal Software Modules.,2018,28,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke28.html#DenhamPC18,https://doi.org/10.1142/S0218194018500195 +Bojan Cukic,Automated Generation of Test Trajectories for Embedded Flight Control Systems.,2002,12,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke12.html#CukicTS02,https://doi.org/10.1142/S0218194002000895 +Raúl H. Rosero,15 Years of Software Regression Testing Techniques - A Survey.,2016,26,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke26.html#RoseroGR16,https://doi.org/10.1142/S0218194016300013 +Weibin Liu,Guest Editors' Introduction.,2015,25,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke25.html#LiuL15,https://doi.org/10.1142/S0218194015020039 +Yamin Wang,Sequence Specification for Concurrent Object-Oriented Applications.,1998,8,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke8.html#WangVT98,https://doi.org/10.1142/S0218194098000200 +Robert Meusel,The Graph Structure in the Web - Analyzed on Different Aggregation Levels.,2015,1,J. Web Science,1,db/journals/jws/jws1.html#MeuselVLB15,https://doi.org/10.1561/106.00000003 +Mariana Arantes,Towards Understanding the Consumption of Video-Ads on YouTube.,2018,4,J. Web Science,1,db/journals/jws/jws4.html#ArantesFA18,https://doi.org/10.1561/106.00000011 +Claudia Orellana-Rodriguez,Spreading One's Tweets: How Can Journalists Gain Attention for their Tweeted News?,2017,3,J. Web Science,2,db/journals/jws/jws3.html#Orellana-Rodriguez17,https://doi.org/10.1561/106.00000009 +Emma Cradock,An Extended Investigation of the Similarity Between Privacy Policies of Social Networking Sites as a Precursor for Standardization.,2016,2,J. Web Science,3,db/journals/jws/jws2.html#CradockMS16,https://doi.org/10.1561/106.00000006 +Kareem Darwish,Predicting Online Islamophobic Behavior after #ParisAttacks.,2018,4,J. Web Science,3,db/journals/jws/jws4.html#DarwishMRBA18,https://doi.org/10.1561/106.00000013 +Stephanie Linek,It's All About Information? The Following Behaviour of Professors and PhD Students in Computer Science on Twitter.,2017,3,J. Web Science,1,db/journals/jws/jws3.html#LinekHHJP17,https://doi.org/10.1561/106.00000008 +Jared Lorince,"The Wisdom of the Few? ""Supertaggers"" in Collaborative Tagging Systems.",2015,1,J. Web Science,1,db/journals/jws/jws1.html#LorinceZMT15,https://doi.org/10.1561/106.00000002 +Rakesh Agrawal 0001,Overlap in the Web Search Results of Google and Bing.,2016,2,J. Web Science,2,db/journals/jws/jws2.html#AgrawalGP16,https://doi.org/10.1561/106.00000005 +Natalia Boldyrev,Multi-Cultural Interlinking of Web Taxonomies with ACROSS.,2018,4,J. Web Science,2,db/journals/jws/jws4.html#BoldyrevSW18,https://doi.org/10.1561/106.00000012 +Christoph Trattner,Modeling Activation Processes in Human Memory to Predict the Use of Tags in Social Bookmarking Systems.,2016,2,J. Web Science,1,db/journals/jws/jws2.html#TrattnerKSLK16,https://doi.org/10.1561/106.00000004 +George Gkotsis,ACQUA: Automated Community-based Question Answering through the Discretisation of Shallow Linguistic Features.,2015,1,J. Web Science,1,db/journals/jws/jws1.html#GkotsisLSD15,https://doi.org/10.1561/106.00000001 +Tomu Tominaga,Exploring the Relationship between User Activities and Profile Images on Twitter through Machine Learning Techniques.,2018,5,J. Web Science,1,db/journals/jws/jws5.html#TominagaH18,https://doi.org/10.1561/106.00000015 +Niko Tsakalakis,Identity Assurance in the UK: technical implementation and legal implications under eIDAS.,2017,3,J. Web Science,3,db/journals/jws/jws3.html#TsakalakisSO17,https://doi.org/10.1561/106.00000010 +Simone Kopeinik,Improving Collaborative Filtering Using a Cognitive Model of Human Category Learning.,2017,2,J. Web Science,4,db/journals/jws/jws2.html#KopeinikKHL17,https://doi.org/10.1561/106.00000007 +Sebastian Schelter,On the Ubiquity of Web Tracking: Insights from a Billion-Page Web Crawl.,2018,4,J. Web Science,4,db/journals/jws/jws4.html#SchelterK18,https://doi.org/10.1561/106.00000014 +Romain Demangeon,Practical interruptible conversations: distributed dynamic verification with multiparty session types and Python.,2015,46,Formal Methods in System Design,3,db/journals/fmsd/fmsd46.html#DemangeonHHNY15,https://doi.org/10.1007/s10703-014-0218-8 +Jinghao Shi,Wireless protocol validation under uncertainty.,2018,53,Formal Methods in System Design,1,db/journals/fmsd/fmsd53.html#ShiLCC18,https://doi.org/10.1007/s10703-017-0309-4 +Rachid Guerraoui,Verification of STM on relaxed memory models.,2011,39,Formal Methods in System Design,3,db/journals/fmsd/fmsd39.html#GuerraouiHS11,https://doi.org/10.1007/s10703-011-0131-3 +Tayssir Touili,Preface.,2012,40,Formal Methods in System Design,2,db/journals/fmsd/fmsd40.html#Touili12,https://doi.org/10.1007/s10703-012-0145-5 +Jean-François Monin,Proving the Correctness of the Standardized Algorithm for ABR Conformance.,2000,17,Formal Methods in System Design,3,db/journals/fmsd/fmsd17.html#Monin00,https://doi.org/10.1023/A:1026586217026 +Diederik Verkest,A Proof of the Nonrestoring Division Algorithm and its Implementation on an ALU.,1994,4,Formal Methods in System Design,1,db/journals/fmsd/fmsd4.html#VerkestCM94,https://doi.org/10.1007/BF01383955 +Pavithra Prabhakar,Hybrid automata-based CEGAR for rectangular hybrid systems.,2015,46,Formal Methods in System Design,2,db/journals/fmsd/fmsd46.html#PrabhakarDM015,https://doi.org/10.1007/s10703-015-0225-4 +Ulrich Stern,Parallelizing the Murj Verifier.,2001,18,Formal Methods in System Design,2,db/journals/fmsd/fmsd18.html#SternD01,https://doi.org/10.1023/A:1008771324652 +Anubhav Gupta,Automated assumption generation for compositional verification.,2008,32,Formal Methods in System Design,3,db/journals/fmsd/fmsd32.html#GuptaMF08,https://doi.org/10.1007/s10703-008-0050-0 +Sean Kauffman,Inferring event stream abstractions.,2018,53,Formal Methods in System Design,1,db/journals/fmsd/fmsd53.html#KauffmanHJF18,https://doi.org/10.1007/s10703-018-0317-z +Wonhong Nam,Automatic symbolic compositional verification by learning assumptions.,2008,32,Formal Methods in System Design,3,db/journals/fmsd/fmsd32.html#NamMA08,https://doi.org/10.1007/s10703-008-0055-8 +Cinzia Bernardeschi,A Formal Verification Environment for Railway Signaling System Design.,1998,12,Formal Methods in System Design,2,db/journals/fmsd/fmsd12.html#BernardeschiFGLMR98,https://doi.org/10.1023/A:1008645826258 +Tommaso Bolognesi,Regrouping Parallel Processes.,1996,9,Formal Methods in System Design,3,db/journals/fmsd/fmsd9.html#Bolognesi96,https://doi.org/10.1007/BF00122084 +Victoria Stavridou,Gordon's Computer: A Hardware Verification Case Study in OBJ3.,1994,4,Formal Methods in System Design,3,db/journals/fmsd/fmsd4.html#Stavridou94,https://doi.org/10.1007/BF01384049 +Anders Børjesson,Generality in Design and Compositional Verification Using TAV.,1995,6,Formal Methods in System Design,3,db/journals/fmsd/fmsd6.html#BorjessonLS95,https://doi.org/10.1007/BF01384499 +Kimmo Varpaaniemi,On Stubborn Sets in the Verification of Linear Time Temporal Properties.,2005,26,Formal Methods in System Design,1,db/journals/fmsd/fmsd26.html#Varpaaniemi05,https://doi.org/10.1007/s10703-005-4594-y +Ferhat Khendek,Merging Behavior Specifications.,1995,6,Formal Methods in System Design,3,db/journals/fmsd/fmsd6.html#KhendekB95,https://doi.org/10.1007/BF01384500 +ásgeir Th. Eiríksson,The Formal Design of 1M-gate ASICs.,2000,16,Formal Methods in System Design,1,db/journals/fmsd/fmsd16.html#Eiriksson00,https://doi.org/10.1023/A:1008773308108 +Edmund M. Clarke,Verification of SpecC using predicate abstraction.,2007,30,Formal Methods in System Design,1,db/journals/fmsd/fmsd30.html#ClarkeJK07,https://doi.org/10.1007/s10703-006-0020-3 +James C. Corbett,Using Integer Programming to Verify General Safety and Liveness Properties.,1995,6,Formal Methods in System Design,1,db/journals/fmsd/fmsd6.html#CorbettA95,https://doi.org/10.1007/BF01384316 +Rajeev Alur,Introduction.,2008,32,Formal Methods in System Design,1,db/journals/fmsd/fmsd32.html#AlurP08,https://doi.org/10.1007/s10703-007-0047-0 +T. Karvi,Stepwise Development of Process-Algebraic Specifications in Decorated Trace Semantics.,2005,26,Formal Methods in System Design,3,db/journals/fmsd/fmsd26.html#KarviTK05,https://doi.org/10.1007/s10703-005-1631-9 +Walling R. Cyre,Generating Validation Feedback for Automatic Interpretation of Informal Requirements.,1997,10,Formal Methods in System Design,1,db/journals/fmsd/fmsd10.html#CyreT97,https://doi.org/10.1023/A:1008687607689 +Vu Xuan Tung,raSAT: an SMT solver for polynomial constraints.,2017,51,Formal Methods in System Design,3,db/journals/fmsd/fmsd51.html#TungKO17,https://doi.org/10.1007/s10703-017-0284-9 +Taolue Chen,Automatic verification of competitive stochastic systems.,2013,43,Formal Methods in System Design,1,db/journals/fmsd/fmsd43.html#ChenFKPS13,https://doi.org/10.1007/s10703-013-0183-7 +Ilan Beer,Explaining counterexamples using causality.,2012,40,Formal Methods in System Design,1,db/journals/fmsd/fmsd40.html#BeerBCOT12,https://doi.org/10.1007/s10703-011-0132-2 +Christoph M. Wintersteiger,Efficiently solving quantified bit-vector formulas.,2013,42,Formal Methods in System Design,1,db/journals/fmsd/fmsd42.html#WintersteigerHM13,https://doi.org/10.1007/s10703-012-0156-2 +Karen Yorav,Static Analysis for State-Space Reductions Preserving Temporal Logics.,2004,25,Formal Methods in System Design,1,db/journals/fmsd/fmsd25.html#YoravG04,https://doi.org/10.1023/B:FORM.0000033963.55470.9e +Wing Lok Yeung,Design and Verification of Distributed Recovery Blocks with CSP.,2003,22,Formal Methods in System Design,3,db/journals/fmsd/fmsd22.html#YeungS03,https://doi.org/10.1023/A:1022997110855 +Cindy Eisner,Functional verification of power gated designs by compositional reasoning.,2009,35,Formal Methods in System Design,1,db/journals/fmsd/fmsd35.html#EisnerNY09,https://doi.org/10.1007/s10703-009-0077-x +Alexandre Yakovlev,Designing Control Logic for Counterflow Pipeline Processor Using Petri Nets.,1998,12,Formal Methods in System Design,1,db/journals/fmsd/fmsd12.html#Yakovlev98,https://doi.org/10.1023/A:1008649930696 +Sergey Berezin,Verification of Out-Of-Order Processor Designs Using Model Checking and a Light-Weight Completion Function.,2002,20,Formal Methods in System Design,2,db/journals/fmsd/fmsd20.html#BerezinCBZ02,https://doi.org/10.1023/A:1014170513439 +Farn Wang,Parametric Analysis of Computer Systems.,2000,17,Formal Methods in System Design,1,db/journals/fmsd/fmsd17.html#Wang00,https://doi.org/10.1023/A:1008782501688 +Jean-Christophe Filliâtre,The spirit of ghost code.,2016,48,Formal Methods in System Design,3,db/journals/fmsd/fmsd48.html#FilliatreGP16,https://doi.org/10.1007/s10703-016-0243-x +Sandie Balaguer,A concurrency-preserving translation from time Petri nets to networks of timed automata.,2012,40,Formal Methods in System Design,3,db/journals/fmsd/fmsd40.html#BalaguerCH12,https://doi.org/10.1007/s10703-012-0146-4 +John Harrison,Floating Point Verification in HOL Light: The Exponential Function.,2000,16,Formal Methods in System Design,3,db/journals/fmsd/fmsd16.html#Harrison00,https://doi.org/10.1023/A:1008712907154 +J Strother Moore,A Mechanically Checked Proof of a Multiprocessor Result via a Uniprocessor View.,1999,14,Formal Methods in System Design,2,db/journals/fmsd/fmsd14.html#Moore99,https://doi.org/10.1023/A:1008624904634 +Rajeev Alur,Deciding Global Partial-Order Properties.,2005,26,Formal Methods in System Design,1,db/journals/fmsd/fmsd26.html#AlurMP05,https://doi.org/10.1007/s10703-005-4592-0 +Jan Tretmans,Software Engineering with Formal Methods: The Development of a Storm Surge Barrier Control System Revisiting Seven Myths of Formal Methods.,2001,19,Formal Methods in System Design,2,db/journals/fmsd/fmsd19.html#TretmansWC01,https://doi.org/10.1023/A:1011236117591 +Henny Sipma,Deductive Model Checking.,1999,15,Formal Methods in System Design,1,db/journals/fmsd/fmsd15.html#SipmaUM99,https://doi.org/10.1023/A:1008791913551 +Shoham Ben-David,Model Checking at IBM.,2003,22,Formal Methods in System Design,2,db/journals/fmsd/fmsd22.html#Ben-DavidEGW03,https://doi.org/10.1023/A:1022905120346 +Moritz Martens,Deadlock-freedom in component systems with architectural constraints.,2012,41,Formal Methods in System Design,2,db/journals/fmsd/fmsd41.html#MartensM12,https://doi.org/10.1007/s10703-012-0160-6 +Thomas A. Henzinger,From Pre-Historic to Post-Modern Symbolic Model Checking.,2003,23,Formal Methods in System Design,3,db/journals/fmsd/fmsd23.html#HenzingerKQ03,https://doi.org/10.1023/A:1026228213080 +Alexandre Yakovlev,A Unified Signal Transition Graph Model for Asynchronous Control Circuit Synthesis.,1996,9,Formal Methods in System Design,3,db/journals/fmsd/fmsd9.html#YakovlevLS96,https://doi.org/10.1007/BF00122081 +Robert H. Sloan,Stubborn Sets for Real-Time Petri Nets.,1997,11,Formal Methods in System Design,1,db/journals/fmsd/fmsd11.html#SloanB97,https://doi.org/10.1023/A:1008629725384 +Christoph Meinel,Local Encoding Transformations for Optimizing OBDD-Representations of Finite State Machines.,2001,18,Formal Methods in System Design,3,db/journals/fmsd/fmsd18.html#MeinelT01,https://doi.org/10.1023/A:1011273220017 +Manfred Broy,Theory and methodology of assumption/commitment based system interface specification and architectural contracts.,2018,52,Formal Methods in System Design,1,db/journals/fmsd/fmsd52.html#Broy18,https://doi.org/10.1007/s10703-017-0304-9 +Kunihiko Hiraishi,An approximation algorithm for box abstraction of transition systems on real state spaces.,2013,42,Formal Methods in System Design,2,db/journals/fmsd/fmsd42.html#HiraishiK13,https://doi.org/10.1007/s10703-012-0175-z +Steven M. German,Formal Design of Cache Memory Protocols in IBM.,2003,22,Formal Methods in System Design,2,db/journals/fmsd/fmsd22.html#German03,https://doi.org/10.1023/A:1022921522163 +Stefan Ratschan,Safety verification of non-linear hybrid systems is quasi-decidable.,2014,44,Formal Methods in System Design,1,db/journals/fmsd/fmsd44.html#Ratschan14,https://doi.org/10.1007/s10703-013-0196-2 +Radu Negulescu,Relative Liveness: From Intuition to Automated Verification.,1998,12,Formal Methods in System Design,1,db/journals/fmsd/fmsd12.html#NegulescuB98,https://doi.org/10.1023/A:1008602014766 +Miguel Valero Espada,An abstract interpretation toolkit for andmicro*CRL.,2007,30,Formal Methods in System Design,3,db/journals/fmsd/fmsd30.html#EspadaP07,https://doi.org/10.1007/s10703-006-0029-7 +Roberto Bagnara,Weakly-relational shapes for numeric abstractions: improved algorithms and proofs of correctness.,2009,35,Formal Methods in System Design,3,db/journals/fmsd/fmsd35.html#BagnaraHZ09,https://doi.org/10.1007/s10703-009-0073-1 +Jan Friso Groote,Hiding Propositional Constants in BDDs.,1996,8,Formal Methods in System Design,1,db/journals/fmsd/fmsd8.html#Groote96,https://doi.org/10.1007/BF00121264 +Satrajit Chatterjee,Automatic generation of inductive invariants from high-level microarchitectural models of communication fabrics.,2012,40,Formal Methods in System Design,2,db/journals/fmsd/fmsd40.html#ChatterjeeK12,https://doi.org/10.1007/s10703-011-0134-0 +Jawahar Jain,Probabilistic Verification of Boolean Functions.,1992,1,Formal Methods in System Design,1,db/journals/fmsd/fmsd1.html#JainABF92,https://doi.org/10.1007/BF00464357 +Bernard Plessier,Extended BDDs: Trading off Canonicity for Structure in Verification Algorithms.,1994,4,Formal Methods in System Design,2,db/journals/fmsd/fmsd4.html#PlessierHS94,https://doi.org/10.1007/BF01384083 +Axel Poigné,The Synchronous Approach to Designing Reactive Systems.,1998,12,Formal Methods in System Design,2,db/journals/fmsd/fmsd12.html#PoigneMMHB98,https://doi.org/10.1023/A:1008697810328 +Ludwig Griebl,Some notes on the abstraction operation for multi-terminal binary decision diagrams.,2014,44,Formal Methods in System Design,1,db/journals/fmsd/fmsd44.html#GrieblS14,https://doi.org/10.1007/s10703-013-0198-0 +Orna Grumberg,A work-efficient distributed algorithm for reachability analysis.,2006,29,Formal Methods in System Design,2,db/journals/fmsd/fmsd29.html#GrumbergHS06,https://doi.org/10.1007/s10703-006-0011-4 +Véronique Cortier,Safely composing security protocols.,2009,34,Formal Methods in System Design,1,db/journals/fmsd/fmsd34.html#CortierD09,https://doi.org/10.1007/s10703-008-0059-4 +Víctor A. Braberman,Dealing with practical limitations of distributed timed model checking for timed automata.,2006,29,Formal Methods in System Design,2,db/journals/fmsd/fmsd29.html#BrabermanOS06,https://doi.org/10.1007/s10703-006-0012-3 +Abhay Vardhan,Learning to verify branching time properties.,2007,31,Formal Methods in System Design,1,db/journals/fmsd/fmsd31.html#VardhanV07,https://doi.org/10.1007/s10703-006-0026-x +Thomas Stauner,Properties of Hybrid Systems-A Computer Science Perspective.,2004,24,Formal Methods in System Design,3,db/journals/fmsd/fmsd24.html#Stauner04,https://doi.org/10.1023/B:FORM.0000026091.03793.cf +Ernst Moritz Hahn,A compositional modelling and analysis framework for stochastic hybrid systems.,2013,43,Formal Methods in System Design,2,db/journals/fmsd/fmsd43.html#HahnHHK13,https://doi.org/10.1007/s10703-012-0167-z +Richard Raimi,Silicon Debug of a PowerPC[tm] Microprocessor Using Model Checking.,2002,21,Formal Methods in System Design,1,db/journals/fmsd/fmsd21.html#RaimiL02,https://doi.org/10.1023/A:1016044019648 +Hana De-Leon,Modular Abstractions for Verifying Real-Time Distributed Systems.,1993,2,Formal Methods in System Design,1,db/journals/fmsd/fmsd2.html#De-LeonG93,https://doi.org/10.1007/BF01383942 +Rahul Sharma 0001,From invariant checking to invariant inference using randomized search.,2016,48,Formal Methods in System Design,3,db/journals/fmsd/fmsd48.html#SharmaA16,https://doi.org/10.1007/s10703-016-0248-5 +Alessandro Cimatti,SMT-based scenario verification for hybrid systems.,2013,42,Formal Methods in System Design,1,db/journals/fmsd/fmsd42.html#CimattiMT13,https://doi.org/10.1007/s10703-012-0158-0 +Uri Frank,A predictive synchronizer for periodic clock domains.,2006,28,Formal Methods in System Design,2,db/journals/fmsd/fmsd28.html#FrankKG06,https://doi.org/10.1007/s10703-006-7843-9 +Anton Wijs,Efficient GPU algorithms for parallel decomposition of graphs into strongly connected and maximal end components.,2016,48,Formal Methods in System Design,3,db/journals/fmsd/fmsd48.html#WijsKB16,https://doi.org/10.1007/s10703-016-0246-7 +Ratan Nalumasu,An Efficient Partial Order Reduction Algorithm with an Alternative Proviso Implementation.,2002,20,Formal Methods in System Design,3,db/journals/fmsd/fmsd20.html#NalumasuG02a,https://doi.org/10.1023/A:1014728912264 +Jason Baumgartner,An Abstraction Algorithm for the Verification of Level-Sensitive Latch-Based Netlists.,2003,23,Formal Methods in System Design,1,db/journals/fmsd/fmsd23.html#BaumgartnerHSA03,https://doi.org/10.1023/A:1024485130001 +Luz E. Pinzon,A Comparative Study of Synthesis Methods for Discrete Event Controllers.,1999,15,Formal Methods in System Design,2,db/journals/fmsd/fmsd15.html#PinzonHJB99,https://doi.org/10.1023/A:1008740917111 +Guy Avni,An abstraction-refinement framework for trigger querying.,2014,44,Formal Methods in System Design,2,db/journals/fmsd/fmsd44.html#AvniK14,https://doi.org/10.1007/s10703-013-0200-x +Uraz Cengiz Türker,Hardness and inapproximability of minimizing adaptive distinguishing sequences.,2014,44,Formal Methods in System Design,3,db/journals/fmsd/fmsd44.html#TurkerY14,https://doi.org/10.1007/s10703-014-0205-0 +Radu Iosif,Translating Java for Multiple Model Checkers: The Bandera Back-End.,2005,26,Formal Methods in System Design,2,db/journals/fmsd/fmsd26.html#IosifDH05,https://doi.org/10.1007/s10703-005-1491-3 +John Harrison,Formal Verification of Square Root Algorithms.,2003,22,Formal Methods in System Design,2,db/journals/fmsd/fmsd22.html#Harrison03,https://doi.org/10.1023/A:1022973506233 +Zoltán ádám Mann,Finding optimal hardware/software partitions.,2007,31,Formal Methods in System Design,3,db/journals/fmsd/fmsd31.html#MannOA07,https://doi.org/10.1007/s10703-007-0039-0 +Michael Merritt,Formal Verification of a Distributed Computer System.,1997,10,Formal Methods in System Design,1,db/journals/fmsd/fmsd10.html#MerrittOS97,https://doi.org/10.1023/A:1008667631119 +Simon Bliudze,Causal semantics for the algebra of connectors.,2010,36,Formal Methods in System Design,2,db/journals/fmsd/fmsd36.html#BliudzeS10,https://doi.org/10.1007/s10703-010-0091-z +Hana Chockler,Before and after vacuity.,2009,34,Formal Methods in System Design,1,db/journals/fmsd/fmsd34.html#ChocklerS09,https://doi.org/10.1007/s10703-008-0060-y +Naren Narasimhan,Theorem Proving Guided Development of Formal Assertions in a Resource-Constrained Scheduler for High-Level Synthesis.,2001,19,Formal Methods in System Design,3,db/journals/fmsd/fmsd19.html#NarasimhanTRGV01,https://doi.org/10.1023/A:1011250531814 +Byron Cook,Ranking function synthesis for bit-vector relations.,2013,43,Formal Methods in System Design,1,db/journals/fmsd/fmsd43.html#CookKRW13,https://doi.org/10.1007/s10703-013-0186-4 +David A. Basin,Monitoring of temporal first-order properties with aggregations.,2015,46,Formal Methods in System Design,3,db/journals/fmsd/fmsd46.html#BasinKMZ15,https://doi.org/10.1007/s10703-015-0222-7 +Jürgen Ruf,Symbolic Verification and Analysis of Discrete Timed Systems.,2003,23,Formal Methods in System Design,1,db/journals/fmsd/fmsd23.html#RufK03,https://doi.org/10.1023/A:1024437214071 +Nathalie Bertrand 0001,A game approach to determinize timed automata.,2015,46,Formal Methods in System Design,1,db/journals/fmsd/fmsd46.html#BertrandSJK15,https://doi.org/10.1007/s10703-014-0220-1 +Jinjin Zhang,A modal characterization of alternating approximate bisimilarity.,2014,44,Formal Methods in System Design,3,db/journals/fmsd/fmsd44.html#ZhangZ14,https://doi.org/10.1007/s10703-013-0201-9 +Bill Stoddart,Undefined Expressions and Logic in Z and B.,1999,15,Formal Methods in System Design,3,db/journals/fmsd/fmsd15.html#StoddartDG99,https://doi.org/10.1023/A:1008797018928 +Ali Kassem 0001,Formal analysis and offline monitoring of electronic exams.,2017,51,Formal Methods in System Design,1,db/journals/fmsd/fmsd51.html#KassemFL17,https://doi.org/10.1007/s10703-017-0280-0 +Martin Fränzle,HySAT: An efficient proof engine for bounded model checking of hybrid systems.,2007,30,Formal Methods in System Design,3,db/journals/fmsd/fmsd30.html#FranzleH07,https://doi.org/10.1007/s10703-006-0031-0 +Laurent Fribourg,Finite controlled invariants for sampled switched systems.,2014,45,Formal Methods in System Design,3,db/journals/fmsd/fmsd45.html#FribourgKS14,https://doi.org/10.1007/s10703-014-0211-2 +Michael Kishinevsky,Analysis and Identification of Speed-Independent Circuits on an Event Model.,1994,4,Formal Methods in System Design,1,db/journals/fmsd/fmsd4.html#KishinevskyKTV94,https://doi.org/10.1007/BF01383956 +Frédéric Herbreteau,Efficient emptiness check for timed Büchi automata.,2012,40,Formal Methods in System Design,2,db/journals/fmsd/fmsd40.html#HerbreteauSW12,https://doi.org/10.1007/s10703-011-0133-1 +Robin Sharp,The T-Ruby Design System.,1997,11,Formal Methods in System Design,3,db/journals/fmsd/fmsd11.html#SharpR97,https://doi.org/10.1023/A:1008603713967 +Mary Sheeran,A Tutorial on Stålmarck's Proof Procedure for Propositional Logic.,2000,16,Formal Methods in System Design,1,db/journals/fmsd/fmsd16.html#SheeranS00,https://doi.org/10.1023/A:1008725524946 +Claire Loiseaux,Property Preserving Abstractions for the Verification of Concurrent Systems.,1995,6,Formal Methods in System Design,1,db/journals/fmsd/fmsd6.html#LoiseauxGSBB95,https://doi.org/10.1007/BF01384313 +Christel Baier,Performability assessment by model checking of Markov reward models.,2010,36,Formal Methods in System Design,1,db/journals/fmsd/fmsd36.html#BaierCHHK10,https://doi.org/10.1007/s10703-009-0088-7 +Moonzoo Kim,Java-MaC: A Run-Time Assurance Approach for Java Programs.,2004,24,Formal Methods in System Design,2,db/journals/fmsd/fmsd24.html#KimVKLS04,https://doi.org/10.1023/B:FORM.0000017719.43755.7c +Kostas N. Oikonomou,Abstractions of Random Finite-State Machines.,2001,18,Formal Methods in System Design,3,db/journals/fmsd/fmsd18.html#Oikonomou01,https://doi.org/10.1023/A:1011218301362 +Alberto Griggio,Preface to special issue on satisfiability modulo theories.,2017,51,Formal Methods in System Design,3,db/journals/fmsd/fmsd51.html#GriggioR17,https://doi.org/10.1007/s10703-017-0308-5 +Ruben Gamboa,The Correctness of the Fast Fourier Transform: A Structured Proof in ACL2.,2002,20,Formal Methods in System Design,1,db/journals/fmsd/fmsd20.html#Gamboa02,https://doi.org/10.1023/A:1012912614285 +Michael Mendler,Timing Analysis of Combinational Circuits in Intuitionistic Propositional Logic.,2000,17,Formal Methods in System Design,1,db/journals/fmsd/fmsd17.html#Mendler00,https://doi.org/10.1023/A:1008780817617 +Huimin Lin,PAM: A Process Algebra Manipulator.,1995,7,Formal Methods in System Design,3,db/journals/fmsd/fmsd7.html#Lin95,https://doi.org/10.1007/BF01384078 +Wim H. Hesselink,Simple concurrent garbage collection almost without synchronization.,2010,36,Formal Methods in System Design,2,db/journals/fmsd/fmsd36.html#HesselinkL10,https://doi.org/10.1007/s10703-009-0083-z +Stavros Tripakis,Checking Timed Büchi Automata Emptiness Efficiently.,2005,26,Formal Methods in System Design,3,db/journals/fmsd/fmsd26.html#TripakisYB05,https://doi.org/10.1007/s10703-005-1632-8 +Bishop Brock,The DUAL-EVAL Hardware Description Language and Its Use in the Formal Specification and Verification of the FM9001 Microprocessor.,1997,11,Formal Methods in System Design,1,db/journals/fmsd/fmsd11.html#BrockH97,https://doi.org/10.1023/A:1008685826293 +Jens Chr. Godskesen,Connectivity Testing.,2004,25,Formal Methods in System Design,1,db/journals/fmsd/fmsd25.html#Godskesen04,https://doi.org/10.1023/B:FORM.0000033961.36239.68 +Krishnendu Chatterjee,CEGAR for compositional analysis of qualitative properties in Markov decision processes.,2015,47,Formal Methods in System Design,2,db/journals/fmsd/fmsd47.html#ChatterjeeCD15,https://doi.org/10.1007/s10703-015-0235-2 +Philipp Rümmer,On recursion-free Horn clauses and Craig interpolation.,2015,47,Formal Methods in System Design,1,db/journals/fmsd/fmsd47.html#RummerHK15,https://doi.org/10.1007/s10703-014-0219-7 +Farhad Mavaddat,On Deducing Timing Constraints in the Verification of Interfaces.,1998,12,Formal Methods in System Design,3,db/journals/fmsd/fmsd12.html#MavaddatG98,https://doi.org/10.1023/A:1008626616397 +Marina A. Waldén,Reasoning about Action Systems using the B-Method.,1998,13,Formal Methods in System Design,1,db/journals/fmsd/fmsd13.html#WaldenS98,https://doi.org/10.1023/A:1008688421367 +Roberto M. Amadio,Modelling IP Mobility.,2000,17,Formal Methods in System Design,1,db/journals/fmsd/fmsd17.html#AmadioP00,https://doi.org/10.1023/A:1008734618526 +Jade Alglave,Fences in weak memory models (extended version).,2012,40,Formal Methods in System Design,2,db/journals/fmsd/fmsd40.html#AlglaveMSS12,https://doi.org/10.1007/s10703-011-0135-z +Silvio Ranise,Symbolic backward reachability with effectively propositional logic - Applications to security policy analysis.,2013,42,Formal Methods in System Design,1,db/journals/fmsd/fmsd42.html#Ranise13,https://doi.org/10.1007/s10703-012-0157-1 +Orna Grumberg,Distributed Symbolic Model Checking for andmicro*-Calculus.,2005,26,Formal Methods in System Design,2,db/journals/fmsd/fmsd26.html#GrumbergHS05,https://doi.org/10.1007/s10703-005-1493-1 +Mirko Conrad,Testing-based translation validation of generated code in the context of IEC 61508.,2009,35,Formal Methods in System Design,3,db/journals/fmsd/fmsd35.html#Conrad09,https://doi.org/10.1007/s10703-009-0082-0 +Martin Bromberger,New techniques for linear arithmetic: cubes and equalities.,2017,51,Formal Methods in System Design,3,db/journals/fmsd/fmsd51.html#BrombergerW17,https://doi.org/10.1007/s10703-017-0278-7 +Werner Damm,LSCs: Breathing Life into Message Sequence Charts.,2001,19,Formal Methods in System Design,1,db/journals/fmsd/fmsd19.html#DammH01,https://doi.org/10.1023/A:1011227529550 +Patricia Bouyer,On the optimal reachability problem of weighted timed automata.,2007,31,Formal Methods in System Design,2,db/journals/fmsd/fmsd31.html#BouyerBBR07,https://doi.org/10.1007/s10703-007-0035-4 +Ronald H. Hardin,A New Heuristic for Bad Cycle Detection Using BDDs.,2001,18,Formal Methods in System Design,2,db/journals/fmsd/fmsd18.html#HardinKSV01,https://doi.org/10.1023/A:1008727508722 +Franjo Ivancic,Foreword: Special issue on numerical software verification.,2009,35,Formal Methods in System Design,3,db/journals/fmsd/fmsd35.html#IvancicSW09,https://doi.org/10.1007/s10703-009-0090-0 +James L. Caldwell,Formal Methods Technology Transfer: A View from NASA.,1998,12,Formal Methods in System Design,2,db/journals/fmsd/fmsd12.html#Caldwell98,https://doi.org/10.1023/A:1008693709419 +Divjyot Sethi,Specification and encoding of transaction interaction properties.,2011,39,Formal Methods in System Design,2,db/journals/fmsd/fmsd39.html#SethiMM11,https://doi.org/10.1007/s10703-011-0120-6 +Constantin Enea,Compositional entailment checking for a fragment of separation logic.,2017,51,Formal Methods in System Design,3,db/journals/fmsd/fmsd51.html#EneaLSV17,https://doi.org/10.1007/s10703-017-0289-4 +David A. Basin,Modeling a Hardware Synthesis Methodology in Isabelle.,1999,15,Formal Methods in System Design,2,db/journals/fmsd/fmsd15.html#BasinF99,https://doi.org/10.1023/A:1008758500273 +Pierre Roux,Practical policy iterations - A practical use of policy iterations for static analysis: the quadratic case.,2015,46,Formal Methods in System Design,2,db/journals/fmsd/fmsd46.html#RouxG15,https://doi.org/10.1007/s10703-015-0230-7 +Béatrice Bérard,Timed substitutions for regular signal-event languages.,2007,31,Formal Methods in System Design,2,db/journals/fmsd/fmsd31.html#BerardGP07,https://doi.org/10.1007/s10703-007-0034-5 +Oukseh Lee,A divide-and-conquer approach for analysing overlaid data structures.,2012,41,Formal Methods in System Design,1,db/journals/fmsd/fmsd41.html#LeeYP12,https://doi.org/10.1007/s10703-012-0151-7 +Peter Buchholz,Hierarchical Reachability Graph Generation for Petri Nets.,2002,21,Formal Methods in System Design,3,db/journals/fmsd/fmsd21.html#BuchholzK02,https://doi.org/10.1023/A:1020321222420 +Ghislaine Thuau,A Unified Framework for Describing and Verifying Hardware Synchronous Sequential Systems.,1993,2,Formal Methods in System Design,3,db/journals/fmsd/fmsd2.html#ThuauB93,https://doi.org/10.1007/BF01384134 +Anuj Goel,BDD Based Procedures for a Theory of Equality with Uninterpreted Functions.,2003,22,Formal Methods in System Design,3,db/journals/fmsd/fmsd22.html#GoelSZAS03,https://doi.org/10.1023/A:1022988809947 +James B. Saxe,Using Transformations and Verification in Circuit Design.,1993,3,Formal Methods in System Design,3,db/journals/fmsd/fmsd3.html#SaxeHGG93,https://doi.org/10.1007/BF01384073 +Antonio Cau,Verification and enforcement of access control policies.,2013,43,Formal Methods in System Design,3,db/journals/fmsd/fmsd43.html#CauJM13,https://doi.org/10.1007/s10703-013-0187-3 +Stephen D. Brookes,Using Fixed-Point Semantics to Prove Retiming Lemmas.,1993,2,Formal Methods in System Design,1,db/journals/fmsd/fmsd2.html#Brookes93,https://doi.org/10.1007/BF01383944 +Alessandro Cimatti,Tightening the contract refinements of a system architecture.,2018,52,Formal Methods in System Design,1,db/journals/fmsd/fmsd52.html#CimattiDT18,https://doi.org/10.1007/s10703-017-0312-9 +Scott D. Stoller,Automated Analysis of Fault-Tolerance in Distributed Systems.,2005,26,Formal Methods in System Design,2,db/journals/fmsd/fmsd26.html#StollerS05,https://doi.org/10.1007/s10703-005-1492-2 +David M. Goldschlag,Mechanically Verifying Safety and Liveness Properties of Delay Insensitive Circuits.,1994,5,Formal Methods in System Design,3,db/journals/fmsd/fmsd5.html#Goldschlag94,https://doi.org/10.1007/BF01383831 +Martin Brain,Deciding floating-point logic with abstract conflict driven clause learning.,2014,45,Formal Methods in System Design,2,db/journals/fmsd/fmsd45.html#BrainDGHK14,https://doi.org/10.1007/s10703-013-0203-7 +Patricia Bouyer,Optimal infinite scheduling for multi-priced timed automata.,2008,32,Formal Methods in System Design,1,db/journals/fmsd/fmsd32.html#BouyerBL08,https://doi.org/10.1007/s10703-007-0043-4 +Raghavan Raman,Efficient data race detection for async-finish parallelism.,2012,41,Formal Methods in System Design,3,db/journals/fmsd/fmsd41.html#RamanZSVY12,https://doi.org/10.1007/s10703-012-0143-7 +Yael Abarbanel-Vinov,On the Effective Deployment of Functional Formal Verification.,2001,19,Formal Methods in System Design,1,db/journals/fmsd/fmsd19.html#Abarbanel-VinovABEGHRRSWY01,https://doi.org/10.1023/A:1011219209077 +Sriram Sankaranarayanan,Constructing invariants for hybrid systems.,2008,32,Formal Methods in System Design,1,db/journals/fmsd/fmsd32.html#SankaranarayananSM08,https://doi.org/10.1007/s10703-007-0046-1 +Alessandro Lapadula,A WSDL-based type system for asynchronous WS-BPEL processes.,2011,38,Formal Methods in System Design,2,db/journals/fmsd/fmsd38.html#LapadulaPT11,https://doi.org/10.1007/s10703-010-0110-0 +Wai Wong,Validation of HOL Proofs by Proof Checking.,1999,14,Formal Methods in System Design,2,db/journals/fmsd/fmsd14.html#Wong99,https://doi.org/10.1023/A:1008643803725 +Yliès Falcone,Introduction to the special issue on runtime verification.,2018,53,Formal Methods in System Design,1,db/journals/fmsd/fmsd53.html#FalconeS18,https://doi.org/10.1007/s10703-018-0320-4 +Ti-Yen Yen,Efficient Algorithms for Interface Timing Verification.,1998,12,Formal Methods in System Design,3,db/journals/fmsd/fmsd12.html#YenICW98,https://doi.org/10.1023/A:1008680300467 +Scott F. Smith 0001,Correct Compilation of Specifications to Deterministic Asynchronous Circuits.,1995,7,Formal Methods in System Design,3,db/journals/fmsd/fmsd7.html#SmithZ95,https://doi.org/10.1007/BF01384076 +Lakhdar Akroun,Automated verification of automata communicating via FIFO and bag buffers.,2018,52,Formal Methods in System Design,3,db/journals/fmsd/fmsd52.html#AkrounS18,https://doi.org/10.1007/s10703-017-0285-8 +Jacob Illum Rasmussen,On using priced timed automata to achieve optimal scheduling.,2006,29,Formal Methods in System Design,1,db/journals/fmsd/fmsd29.html#RasmussenLS06,https://doi.org/10.1007/s10703-006-0014-1 +Thuan Quang Huynh,Memory model sensitive bytecode verification.,2007,31,Formal Methods in System Design,3,db/journals/fmsd/fmsd31.html#HuynhR07,https://doi.org/10.1007/s10703-007-0041-6 +Souheib Baarir,Feasibility analysis for robustness quantification by symbolic model checking.,2011,39,Formal Methods in System Design,2,db/journals/fmsd/fmsd39.html#BaarirBEIMPY11,https://doi.org/10.1007/s10703-011-0121-5 +Francesco Alberti,Cardinality constraints for arrays (decidability results and applications).,2017,51,Formal Methods in System Design,3,db/journals/fmsd/fmsd51.html#AlbertiGP17,https://doi.org/10.1007/s10703-017-0279-6 +Heike Wehrheim,Behavioral Subtyping Relations for Active Objects.,2003,23,Formal Methods in System Design,2,db/journals/fmsd/fmsd23.html#Wehrheim03,https://doi.org/10.1023/A:1024764232069 +Radomir S. Stankovic,Non-Abelian Groups in Optimization of Decision Diagrams Representations of Discrete Functions.,2001,18,Formal Methods in System Design,3,db/journals/fmsd/fmsd18.html#Stankovic01,https://doi.org/10.1023/A:1011265018200 +Patricia Bouyer,Forward Analysis of Updatable Timed Automata.,2004,24,Formal Methods in System Design,3,db/journals/fmsd/fmsd24.html#Bouyer04,https://doi.org/10.1023/B:FORM.0000026093.21513.31 +Remy Chevallier,Timed verification of the generic architecture of a memory circuit using parametric timed automata.,2009,34,Formal Methods in System Design,1,db/journals/fmsd/fmsd34.html#ChevallierEFX09,https://doi.org/10.1007/s10703-008-0061-x +Dominique Méry,Editorial Note.,2002,20,Formal Methods in System Design,1,db/journals/fmsd/fmsd20.html#MeryS02,https://doi.org/10.1023/A:1012991827488 +Béatrice Bérard,Compared Study of Two Correctness Proofs for the Standardized.,2003,22,Formal Methods in System Design,1,db/journals/fmsd/fmsd22.html#BerardFKM03,https://doi.org/10.1023/A:1021704214464 +Francesco Alberti,An extension of lazy abstraction with interpolation for programs with arrays.,2014,45,Formal Methods in System Design,1,db/journals/fmsd/fmsd45.html#AlbertiBGRS14,https://doi.org/10.1007/s10703-014-0209-9 +Orna Grumberg,Introduction: Special Issue on CAV '97.,2001,18,Formal Methods in System Design,2,db/journals/fmsd/fmsd18.html#Grumberg01,https://doi.org/10.1023/A:1008784005996 +Bjørnar Luteberget,Efficient verification of railway infrastructure designs against standard regulations.,2018,52,Formal Methods in System Design,1,db/journals/fmsd/fmsd52.html#LutebergetJ18,https://doi.org/10.1007/s10703-017-0281-z +Jørn Lind-Nielsen,Verification of Large State/Event Systems Using Compositionality and Dependency Analysis.,2001,18,Formal Methods in System Design,1,db/journals/fmsd/fmsd18.html#Lind-NielsenAHBKL01,https://doi.org/10.1023/A:1008736219484 +Valeriy Balabanov,Unified QBF certification and its applications.,2012,41,Formal Methods in System Design,1,db/journals/fmsd/fmsd41.html#BalabanovJ12,https://doi.org/10.1007/s10703-012-0152-6 +Michael Mendler,Newtonian Arbiters Cannot be Proven Correct.,1993,3,Formal Methods in System Design,3,db/journals/fmsd/fmsd3.html#MendlerS93,https://doi.org/10.1007/BF01384075 +Robert Eschbach,Applying string-rewriting to sequence-based specification.,2013,43,Formal Methods in System Design,3,db/journals/fmsd/fmsd43.html#EschbachLP13,https://doi.org/10.1007/s10703-013-0185-5 +,The CAV award.,2009,35,Formal Methods in System Design,1,db/journals/fmsd/fmsd35.html#X09,https://doi.org/10.1007/s10703-009-0071-3 +Mani Azimi,Experience with Applying Formal Methods to Protocol Specification and System Architecture.,2003,22,Formal Methods in System Design,2,db/journals/fmsd/fmsd22.html#AzimiCKLMP03,https://doi.org/10.1023/A:1022965204416 +Gregor Gößler,Probabilistic contracts for component-based design.,2012,41,Formal Methods in System Design,2,db/journals/fmsd/fmsd41.html#GosslerXG12,https://doi.org/10.1007/s10703-012-0162-4 +Marta Z. Kwiatkowska,Performance analysis of probabilistic timed automata using digital clocks.,2006,29,Formal Methods in System Design,1,db/journals/fmsd/fmsd29.html#KwiatkowskaNPS06,https://doi.org/10.1007/s10703-006-0005-2 +Ajith K. John,A layered algorithm for quantifier elimination from linear modular constraints.,2016,49,Formal Methods in System Design,3,db/journals/fmsd/fmsd49.html#JohnC16,https://doi.org/10.1007/s10703-016-0260-9 +Parosh Aziz Abdulla,Approximated parameterized verification of infinite-state processes with global conditions.,2009,34,Formal Methods in System Design,2,db/journals/fmsd/fmsd34.html#AbdullaDR09,https://doi.org/10.1007/s10703-008-0062-9 +Steven M. German,Introduction to the Special Issue on Verification of Arithmetic Hardware.,1999,14,Formal Methods in System Design,1,db/journals/fmsd/fmsd14.html#German99,https://doi.org/10.1023/A:1008661411164 +Kshirasagar Naik,Test Case Verification by Model Checking.,1993,2,Formal Methods in System Design,3,db/journals/fmsd/fmsd2.html#NaikS93,https://doi.org/10.1007/BF01384135 +Tuba Yavuz-Kahveci,Action Language verifier: an infinite-state model checker for reactive software specifications.,2009,35,Formal Methods in System Design,3,db/journals/fmsd/fmsd35.html#Yavuz-KahveciB09,https://doi.org/10.1007/s10703-009-0081-1 +Jonas Westman,Conditions of contracts for separating responsibilities in heterogeneous systems.,2018,52,Formal Methods in System Design,2,db/journals/fmsd/fmsd52.html#WestmanN18,https://doi.org/10.1007/s10703-017-0294-7 +Vladimir Klebanov,Automating regression verification of pointer programs by predicate abstraction.,2018,52,Formal Methods in System Design,3,db/journals/fmsd/fmsd52.html#KlebanovRU18,https://doi.org/10.1007/s10703-017-0293-8 +Howard Bowman,A Formal Framework for Viewpoint Consistency.,2002,21,Formal Methods in System Design,2,db/journals/fmsd/fmsd21.html#BowmanSBD02,https://doi.org/10.1023/A:1016000201864 +Deepak Kapur,Mechanical Verification of Adder Circuits using Rewrite Rule Laboratory.,1998,13,Formal Methods in System Design,2,db/journals/fmsd/fmsd13.html#KapurS98,https://doi.org/10.1023/A:1008610818519 +Emmanuel Filiot,Antichains and compositional algorithms for LTL synthesis.,2011,39,Formal Methods in System Design,3,db/journals/fmsd/fmsd39.html#FiliotJR11,https://doi.org/10.1007/s10703-011-0115-3 +Haiyan Xiong,Providing a formal linkage between MDG and HOL.,2007,30,Formal Methods in System Design,2,db/journals/fmsd/fmsd30.html#XiongCTB07,https://doi.org/10.1007/s10703-006-0017-y +Rance Cleaveland,A Linear-Time Model-Checking Algorithm for the Alternation-Free Modal Mu-Calculus.,1993,2,Formal Methods in System Design,2,db/journals/fmsd/fmsd2.html#CleavelandS93,https://doi.org/10.1007/BF01383878 +Peter M. Maurer,Conjugate symmetry.,2011,38,Formal Methods in System Design,3,db/journals/fmsd/fmsd38.html#Maurer11,https://doi.org/10.1007/s10703-011-0116-2 +Rüdiger Ehlers,Symbolic bounded synthesis.,2012,40,Formal Methods in System Design,2,db/journals/fmsd/fmsd40.html#Ehlers12,https://doi.org/10.1007/s10703-011-0137-x +Ravi Hosabettu,Formal Verification of a Complex Pipelined Processor.,2003,23,Formal Methods in System Design,2,db/journals/fmsd/fmsd23.html#HosabettuGS03,https://doi.org/10.1023/A:1024716316140 +Ramin Hojati,An Environment for Formal Verification Based on Symbolic Computations.,1995,6,Formal Methods in System Design,2,db/journals/fmsd/fmsd6.html#HojatiB95,https://doi.org/10.1007/BF01383967 +Javier Esparza,An Improvement of McMillan's Unfolding Algorithm.,2002,20,Formal Methods in System Design,3,db/journals/fmsd/fmsd20.html#EsparzaRV02,https://doi.org/10.1023/A:1014746130920 +Robert P. Kurshan,A Structural Linearization Principle for Processes.,1994,5,Formal Methods in System Design,3,db/journals/fmsd/fmsd5.html#KurshanMOS94,https://doi.org/10.1007/BF01383832 +Dumitru Potop-Butucaru,Concurrency in Synchronous Systems.,2006,28,Formal Methods in System Design,2,db/journals/fmsd/fmsd28.html#Potop-ButucaruCB06,https://doi.org/10.1007/s10703-006-7844-8 +Constance L. Heitmeyer,Guest editorial.,2007,30,Formal Methods in System Design,1,db/journals/fmsd/fmsd30.html#HeitmeyerT07,https://doi.org/10.1007/s10703-006-0018-x +Isil Dillig,Cuts from proofs: a complete and practical technique for solving linear inequalities over integers.,2011,39,Formal Methods in System Design,3,db/journals/fmsd/fmsd39.html#DilligDA11,https://doi.org/10.1007/s10703-011-0127-z +Gerard J. Holzmann,An Analysis of Bitstate Hashing.,1998,13,Formal Methods in System Design,3,db/journals/fmsd/fmsd13.html#Holzmann98,https://doi.org/10.1023/A:1008696026254 +Krishnendu Chatterjee,A survey of partial-observation stochastic parity games.,2013,43,Formal Methods in System Design,2,db/journals/fmsd/fmsd43.html#Chatterjee0H13,https://doi.org/10.1007/s10703-012-0164-2 +Jan Olaf Blech,Certifying compilers using higher-order theorem provers as certificate checkers.,2011,38,Formal Methods in System Design,1,db/journals/fmsd/fmsd38.html#BlechG11,https://doi.org/10.1007/s10703-010-0108-7 +Jo C. Ebergen,Design and Analysis of Delay-Insensitive Modulo-N Counters.,1993,3,Formal Methods in System Design,3,db/journals/fmsd/fmsd3.html#EbergenP93,https://doi.org/10.1007/BF01384074 +Martin Keim,Polynomial Formal Verification of Multipliers.,2003,22,Formal Methods in System Design,1,db/journals/fmsd/fmsd22.html#KeimDBMM03,https://doi.org/10.1023/A:1021752130394 +Robert B. Jones,Formal Verification of Out-of-Order Execution with Incremental Flushing.,2002,20,Formal Methods in System Design,2,db/journals/fmsd/fmsd20.html#JonesSD02,https://doi.org/10.1023/A:1014118529369 +Doron A. Peled,Relaxed Visibility Enhances Partial Order Reduction.,2001,19,Formal Methods in System Design,3,db/journals/fmsd/fmsd19.html#PeledVK01,https://doi.org/10.1023/A:1011202615884 +Gianpiero Cabodi,SAT solver management strategies in IC3: an experimental approach.,2017,50,Formal Methods in System Design,1,db/journals/fmsd/fmsd50.html#CabodiCMPP17,https://doi.org/10.1007/s10703-017-0272-0 +Andreas Fellner,NP-completeness of small conflict set generation for congruence closure.,2017,51,Formal Methods in System Design,3,db/journals/fmsd/fmsd51.html#FellnerFP17,https://doi.org/10.1007/s10703-017-0283-x +Pranav Garg 0001,Quantified data automata for linear data structures: a register automaton model with applications to learning invariants of programs manipulating arrays and lists.,2015,47,Formal Methods in System Design,1,db/journals/fmsd/fmsd47.html#0001LMN15,https://doi.org/10.1007/s10703-015-0231-6 +Bettina Könighofer,Shield synthesis.,2017,51,Formal Methods in System Design,2,db/journals/fmsd/fmsd51.html#KonighoferABHKT17,https://doi.org/10.1007/s10703-017-0276-9 +William R. Harris,Program synthesis for interactive-security systems.,2017,51,Formal Methods in System Design,2,db/journals/fmsd/fmsd51.html#HarrisJRS17,https://doi.org/10.1007/s10703-017-0296-5 +Yakir Vizel,Efficient generation of small interpolants in CNF.,2015,47,Formal Methods in System Design,1,db/journals/fmsd/fmsd47.html#VizelNR15,https://doi.org/10.1007/s10703-015-0224-5 +Clark W. Barrett,Design and results of the 2nd annual satisfiability modulo theories competition (SMT-COMP 2006).,2007,31,Formal Methods in System Design,3,db/journals/fmsd/fmsd31.html#BarrettMS07,https://doi.org/10.1007/s10703-007-0038-1 +Olaf Schröer,The Theory of Zero-Suppressed BDDs and the Number of Knight's Tours.,1998,13,Formal Methods in System Design,3,db/journals/fmsd/fmsd13.html#SchroerW98,https://doi.org/10.1023/A:1008681625346 +Scott D. Stoller,Optimistic synchronization-based state-space reduction.,2006,28,Formal Methods in System Design,3,db/journals/fmsd/fmsd28.html#StollerC06,https://doi.org/10.1007/s10703-006-0003-4 +Himanshu Jain,Efficient Craig interpolation for linear Diophantine (dis)equations and linear modular equations.,2009,35,Formal Methods in System Design,1,db/journals/fmsd/fmsd35.html#JainCG09,https://doi.org/10.1007/s10703-009-0069-x +Linar Mikeev,On-the-fly verification and optimization of DTA-properties for large Markov chains.,2013,43,Formal Methods in System Design,2,db/journals/fmsd/fmsd43.html#MikeevNSW13,https://doi.org/10.1007/s10703-012-0165-1 +Christel Baier,Preface to the special issue on Probabilistic Model Checking.,2013,43,Formal Methods in System Design,2,db/journals/fmsd/fmsd43.html#BaierK13,https://doi.org/10.1007/s10703-013-0194-4 +Tomohiro Yoneda,Efficient Verification of Parallel Real-Time Systems.,1997,11,Formal Methods in System Design,2,db/journals/fmsd/fmsd11.html#YonedaS97,https://doi.org/10.1023/A:1008682131325 +Howard Bowman,Mexitl: Multimedia in Executable Interval Temporal Logic.,2003,22,Formal Methods in System Design,1,db/journals/fmsd/fmsd22.html#BowmanCKT03,https://doi.org/10.1023/A:1021736013555 +Christian von Essen,Program repair without regret.,2015,47,Formal Methods in System Design,1,db/journals/fmsd/fmsd47.html#EssenJ15,https://doi.org/10.1007/s10703-015-0223-6 +Randal E. Bryant,The 2008 CAV Award citation.,2009,35,Formal Methods in System Design,1,db/journals/fmsd/fmsd35.html#BryantGHV09,https://doi.org/10.1007/s10703-009-0070-4 +Costas Courcoubetis,Minimum and Maximum Delay Problems in Real-Time Systems.,1992,1,Formal Methods in System Design,4,db/journals/fmsd/fmsd1.html#CourcoubetisY92,https://doi.org/10.1007/BF00709157 +Sagar Chaki,Verification of evolving software via component substitutability analysis.,2008,32,Formal Methods in System Design,3,db/journals/fmsd/fmsd32.html#ChakiCSS08,https://doi.org/10.1007/s10703-008-0053-x +Suan Hsi Yong,Using Static Analysis to Reduce Dynamic Analysis Overhead.,2005,27,Formal Methods in System Design,3,db/journals/fmsd/fmsd27.html#YongH05,https://doi.org/10.1007/s10703-005-3401-0 +Stavros Tripakis,Analysis of Timed Systems Using Time-Abstracting Bisimulations.,2001,18,Formal Methods in System Design,1,db/journals/fmsd/fmsd18.html#TripakisY01,https://doi.org/10.1023/A:1008734703554 +Gavin J. Doherty,Using Hybrid Automata to Support Human Factors Analysis in a Critical System.,2001,19,Formal Methods in System Design,2,db/journals/fmsd/fmsd19.html#DohertyMF01,https://doi.org/10.1023/A:1011232016683 +Alessandro Cimatti,Infinite-state invariant checking with IC3 and predicate abstraction.,2016,49,Formal Methods in System Design,3,db/journals/fmsd/fmsd49.html#CimattiGMT16,https://doi.org/10.1007/s10703-016-0257-4 +Salvatore La Torre,The word problem for visibly pushdown languages described by grammars.,2007,31,Formal Methods in System Design,3,db/journals/fmsd/fmsd31.html#TorreNP07,https://doi.org/10.1007/s10703-007-0040-7 +Johann A. Makowsky,Keeping logic in the trivium of computer science: a teaching perspective.,2017,51,Formal Methods in System Design,2,db/journals/fmsd/fmsd51.html#MakowskyZ17,https://doi.org/10.1007/s10703-017-0301-z +Zhou Chaochen,A Model for Synchronous Switching Circuits and its Theory of Correctness.,1992,1,Formal Methods in System Design,1,db/journals/fmsd/fmsd1.html#ChaochenH92,https://doi.org/10.1007/BF00464355 +Alexander Bell,Distributed disk-based algorithms for model checking very large Markov chains.,2006,29,Formal Methods in System Design,2,db/journals/fmsd/fmsd29.html#BellH06,https://doi.org/10.1007/s10703-006-0007-0 +Rajeev Alur,Reactive Modules.,1999,15,Formal Methods in System Design,1,db/journals/fmsd/fmsd15.html#AlurH99b,https://doi.org/10.1023/A:1008739929481 +David L. Dill,Specification and Automatic Verification of Self-Timed Queues.,1992,1,Formal Methods in System Design,1,db/journals/fmsd/fmsd1.html#DillNS92,https://doi.org/10.1007/BF00464356 +Gianpiero Cabodi,Benchmarking a model checker for algorithmic improvements and tuning for performance.,2011,39,Formal Methods in System Design,2,db/journals/fmsd/fmsd39.html#CabodiNQ11,https://doi.org/10.1007/s10703-011-0123-3 +Klaus Winkelmann,Formal Methods in Designing Embedded Systems-the SACRES Experience.,2001,19,Formal Methods in System Design,1,db/journals/fmsd/fmsd19.html#Winkelmann01,https://doi.org/10.1023/A:1011295931367 +Viktor Gyuris,On-the-Fly Model Checking Under Fairness that Exploits Symmetry.,1999,15,Formal Methods in System Design,3,db/journals/fmsd/fmsd15.html#GyurisS99,https://doi.org/10.1023/A:1008701202999 +Antti Valmari,A Stubborn Attack on State Explosion.,1992,1,Formal Methods in System Design,4,db/journals/fmsd/fmsd1.html#Valmari92,https://doi.org/10.1007/BF00709154 +Christoffer Sloth,Verification of continuous dynamical systems by timed automata.,2011,39,Formal Methods in System Design,1,db/journals/fmsd/fmsd39.html#SlothW11,https://doi.org/10.1007/s10703-011-0118-0 +Borzoo Bonakdarpour,Time-triggered runtime verification.,2013,43,Formal Methods in System Design,1,db/journals/fmsd/fmsd43.html#BonakdarpourNF13,https://doi.org/10.1007/s10703-012-0182-0 +Paola Inverardi,Automatic Verification of Distributed Systems: The Process Algebra Approach.,1996,8,Formal Methods in System Design,1,db/journals/fmsd/fmsd8.html#InverardiP96,https://doi.org/10.1007/BF00121261 +Aaron Stump,SMT proof checking using a logical framework.,2013,42,Formal Methods in System Design,1,db/journals/fmsd/fmsd42.html#StumpORHT13,https://doi.org/10.1007/s10703-012-0163-3 +Shoham Ben-David,Vacuity in practice: temporal antecedent failure.,2015,46,Formal Methods in System Design,1,db/journals/fmsd/fmsd46.html#Ben-DavidCFR15,https://doi.org/10.1007/s10703-014-0221-0 +Bernard Boigelot,Symbolic Verification of Communication Protocols with Infinite State Spaces using QDDs.,1999,14,Formal Methods in System Design,3,db/journals/fmsd/fmsd14.html#BoigelotG99,https://doi.org/10.1023/A:1008719024240 +Patrice Godefroid,Software Model Checking: The VeriSoft Approach.,2005,26,Formal Methods in System Design,2,db/journals/fmsd/fmsd26.html#Godefroid05,https://doi.org/10.1007/s10703-005-1489-x +Orna Kupferman,On relative and probabilistic finite counterability.,2018,52,Formal Methods in System Design,2,db/journals/fmsd/fmsd52.html#KupfermanV18,https://doi.org/10.1007/s10703-017-0277-8 +Jordan Gergov,Mod-2-OBDDs - A Data Structure that Generalizes EXOR-Sum-of-Products and Ordered Binary Decision Diagrams.,1996,8,Formal Methods in System Design,3,db/journals/fmsd/fmsd8.html#GergovM96,https://doi.org/10.1007/BF00709139 +Alastair F. Donaldson,Counterexample-guided abstraction refinement for symmetric concurrent programs.,2012,41,Formal Methods in System Design,1,db/journals/fmsd/fmsd41.html#DonaldsonKKTW12,https://doi.org/10.1007/s10703-012-0155-3 +Alessandro Fantechi,Assisting Requirement Formalization by Means of Natural Language Translation.,1994,4,Formal Methods in System Design,3,db/journals/fmsd/fmsd4.html#FantechiGRCVM94,https://doi.org/10.1007/BF01384048 +Jiazhao Xu,Scalable reachability analysis via automated dynamic netlist-based hint generation.,2014,45,Formal Methods in System Design,2,db/journals/fmsd/fmsd45.html#XuWMB14,https://doi.org/10.1007/s10703-014-0213-0 +Jyotirmoy V. Deshmukh,Robust online monitoring of signal temporal logic.,2017,51,Formal Methods in System Design,1,db/journals/fmsd/fmsd51.html#DeshmukhDGJJS17,https://doi.org/10.1007/s10703-017-0286-7 +Janusz A. Brzozowski,Hazard Algebras.,2003,23,Formal Methods in System Design,3,db/journals/fmsd/fmsd23.html#BrzozowskiE03,https://doi.org/10.1023/A:1026218512171 +Nikolaj Bjørner,Verifying Temporal Properties of Reactive Systems: A STeP Tutorial.,2000,16,Formal Methods in System Design,3,db/journals/fmsd/fmsd16.html#BjornerBCFMSU00,https://doi.org/10.1023/A:1008700623084 +Rajeev Alur,Partial-Order Reduction in Symbolic State-Space Exploration.,2001,18,Formal Methods in System Design,2,db/journals/fmsd/fmsd18.html#AlurBHQR01,https://doi.org/10.1023/A:1008767206905 +Sagar Chaki,Regression verification for multi-threaded programs (with extensions to locks and dynamic thread creation).,2015,47,Formal Methods in System Design,3,db/journals/fmsd/fmsd47.html#ChakiGS15,https://doi.org/10.1007/s10703-015-0237-0 +Julia M. B. Braman,Bisimulation conversion and verification procedure for©0*goal-based control systems.,2011,38,Formal Methods in System Design,1,db/journals/fmsd/fmsd38.html#BramanM11,https://doi.org/10.1007/s10703-010-0109-6 +Shuvra S. Bhattacharyya,Looped Schedules for Dataflow Descriptions of Multirate Signal Processing Algorithms.,1994,5,Formal Methods in System Design,3,db/journals/fmsd/fmsd5.html#BhattacharyyaL94,https://doi.org/10.1007/BF01383830 +Rajeev Alur,Introduction.,1999,14,Formal Methods in System Design,3,db/journals/fmsd/fmsd14.html#AlurH99,https://doi.org/10.1023/A:1008751407402 +Patrice Godefroid,State-Space Caching Revisited.,1995,7,Formal Methods in System Design,3,db/journals/fmsd/fmsd7.html#GodefroidHP95,https://doi.org/10.1007/BF01384077 +Praveen K. Murthy,Joint Minimization of Code and Data for Synchronous Dataflow Programs.,1997,11,Formal Methods in System Design,1,db/journals/fmsd/fmsd11.html#MurthyBL97,https://doi.org/10.1023/A:1008633809454 +Gianpiero Cabodi,The General Product Machine: a New Model for Symbolic FSM Traversal.,1998,12,Formal Methods in System Design,3,db/journals/fmsd/fmsd12.html#CabodiCCPR98,https://doi.org/10.1023/A:1008632417306 +Georg Gottlob,Preface of the Special Issue in Memoriam Helmut Veith.,2017,51,Formal Methods in System Design,2,db/journals/fmsd/fmsd51.html#GottlobHW17,https://doi.org/10.1007/s10703-017-0307-6 +Fides Aarts,Generating models of infinite-state communication protocols using regular inference with abstraction.,2015,46,Formal Methods in System Design,1,db/journals/fmsd/fmsd46.html#AartsJUV15,https://doi.org/10.1007/s10703-014-0216-x +Pascalin Amagbégnon,Verifying the Implementation of an Error Control Code.,2003,22,Formal Methods in System Design,2,db/journals/fmsd/fmsd22.html#AmagbegnonB03,https://doi.org/10.1023/A:1022925623072 +Marsha Chechik,Data structures for symbolic multi-valued model-checking.,2006,29,Formal Methods in System Design,3,db/journals/fmsd/fmsd29.html#ChechikGDLE06,https://doi.org/10.1007/s10703-006-0016-z +Henrik Reif Andersen,Compositional Checking of Satsfaction.,1992,1,Formal Methods in System Design,4,db/journals/fmsd/fmsd1.html#AndersenW92,https://doi.org/10.1007/BF00709155 +Michael C. McFarland,Formal Analysis of Correctness of Behavioral Transformations.,1993,2,Formal Methods in System Design,3,db/journals/fmsd/fmsd2.html#McFarland93,https://doi.org/10.1007/BF01384133 +Alex Kondratyev,Analysis of Petri Nets by Ordering Relations in Reduced Unfoldings.,1998,12,Formal Methods in System Design,1,db/journals/fmsd/fmsd12.html#KondratyevKTT98,https://doi.org/10.1023/A:1008669013857 +Rajeev Alur,Introduction.,1999,15,Formal Methods in System Design,1,db/journals/fmsd/fmsd15.html#AlurH99a,https://doi.org/10.1023/A:1008749012643 +Saddek Bensalem,Automatic Generation of Invariants.,1999,15,Formal Methods in System Design,1,db/journals/fmsd/fmsd15.html#BensalemL99,https://doi.org/10.1023/A:1008744030390 +Oleg Sokolsky,Introduction to the special issue on runtime verification.,2012,41,Formal Methods in System Design,3,db/journals/fmsd/fmsd41.html#SokolskyR12,https://doi.org/10.1007/s10703-012-0174-0 +Grigore Rosu,Finite-trace linear temporal logic: coinductive completeness.,2018,53,Formal Methods in System Design,1,db/journals/fmsd/fmsd53.html#Rosu18,https://doi.org/10.1007/s10703-018-0321-3 +K. Mani Chandy,An Experiment in Program Composition and Proof.,2002,20,Formal Methods in System Design,1,db/journals/fmsd/fmsd20.html#ChandyC02,https://doi.org/10.1023/A:1012952311559 +Gianpiero Cabodi,Optimization techniques for craig interpolant compaction in unbounded model checking.,2015,46,Formal Methods in System Design,2,db/journals/fmsd/fmsd46.html#CabodiLV15,https://doi.org/10.1007/s10703-015-0229-0 +Fatemeh Ghassemi,Model checking mobile ad hoc networks.,2016,49,Formal Methods in System Design,3,db/journals/fmsd/fmsd49.html#GhassemiF16,https://doi.org/10.1007/s10703-016-0254-7 +David M. Russinoff,A Mechanically Checked Proof of Correctness of the AMD K5 Floating Point Square Root Microcode.,1999,14,Formal Methods in System Design,1,db/journals/fmsd/fmsd14.html#Russinoff99,https://doi.org/10.1023/A:1008669628911 +Nazanin Mansouri,Automated Correctness Condition Generation for Formal Verification of Synthesized RTL Designs.,2000,16,Formal Methods in System Design,1,db/journals/fmsd/fmsd16.html#MansouriV00,https://doi.org/10.1023/A:1008777509016 +Joost-Pieter Katoen,A Consistent Causality-Based View on a Timed Process Algebra Including Urgent Interactions.,1998,12,Formal Methods in System Design,2,db/journals/fmsd/fmsd12.html#KatoenLBLB98,https://doi.org/10.1023/A:1008649927166 +Adnan Aziz,Formula-Dependent Equivalence for Compositional CTL Model Checking.,2002,21,Formal Methods in System Design,2,db/journals/fmsd/fmsd21.html#AzizSSBS02,https://doi.org/10.1023/A:1016043502772 +Ashish Tiwari,Abstractions for hybrid systems.,2008,32,Formal Methods in System Design,1,db/journals/fmsd/fmsd32.html#Tiwari08,https://doi.org/10.1007/s10703-007-0044-3 +Sebastian S. Bauer,Weighted modal transition systems.,2013,42,Formal Methods in System Design,2,db/journals/fmsd/fmsd42.html#BauerFJLLT13,https://doi.org/10.1007/s10703-012-0178-9 +Ariel Cohen 0002,Local proofs for global safety properties.,2009,34,Formal Methods in System Design,2,db/journals/fmsd/fmsd34.html#CohenN09,https://doi.org/10.1007/s10703-008-0063-8 +Henrik Hulgaard,Bounded Delay Timing Analysis of a Class of CSP Programs.,1997,11,Formal Methods in System Design,3,db/journals/fmsd/fmsd11.html#HulgaardB97,https://doi.org/10.1023/A:1008655714875 +Orna Kupferman,From liveness to promptness.,2009,34,Formal Methods in System Design,2,db/journals/fmsd/fmsd34.html#KupfermanPV09,https://doi.org/10.1007/s10703-009-0067-z +Gianfranco Ciardo,Exploiting interleaving semantics in symbolic state-space generation.,2007,31,Formal Methods in System Design,1,db/journals/fmsd/fmsd31.html#CiardoLM07,https://doi.org/10.1007/s10703-006-0033-y +Igor Walukiewicz,Difficult Configurations-On the Complexity of LTrL.,2005,26,Formal Methods in System Design,1,db/journals/fmsd/fmsd26.html#Walukiewicz05,https://doi.org/10.1007/s10703-005-4593-z +S. Akshay,Event clock message passing automata: a logical characterization and an emptiness checking algorithm.,2013,42,Formal Methods in System Design,3,db/journals/fmsd/fmsd42.html#AkshayBG13,https://doi.org/10.1007/s10703-012-0179-8 +Jade Alglave,A formal hierarchy of weak memory models.,2012,41,Formal Methods in System Design,2,db/journals/fmsd/fmsd41.html#Alglave12,https://doi.org/10.1007/s10703-012-0161-5 +Janett Mohnke,Limits of Using Signatures for Permutation Independent Boolean Comparison.,2002,21,Formal Methods in System Design,2,db/journals/fmsd/fmsd21.html#MohnkeMM02,https://doi.org/10.1023/A:1016091418702 +Krishnendu Chatterjee,Code aware resource management.,2013,42,Formal Methods in System Design,2,db/journals/fmsd/fmsd42.html#ChatterjeeAFMR13,https://doi.org/10.1007/s10703-012-0170-4 +Adrian Francalanza,Monitorability for the Hennessy-Milner logic with recursion.,2017,51,Formal Methods in System Design,1,db/journals/fmsd/fmsd51.html#FrancalanzaAI17,https://doi.org/10.1007/s10703-017-0273-z +A. Prasad Sistla,Checking extended CTL properties using guarded quotient structures.,2007,31,Formal Methods in System Design,3,db/journals/fmsd/fmsd31.html#SistlaWZ07,https://doi.org/10.1007/s10703-007-0037-2 +Gerd Behrmann,Verification of Hierarchical State/Event Systems using Reusability and Compositionality.,2002,21,Formal Methods in System Design,2,db/journals/fmsd/fmsd21.html#BehrmannLAHL02,https://doi.org/10.1023/A:1016095519611 +Jørgen Staunstrup,Localized Verification of Modular Designs.,1995,6,Formal Methods in System Design,3,db/journals/fmsd/fmsd6.html#StaunstrupM95,https://doi.org/10.1007/BF01384501 +John Penix,Verifying Time Partitioning in the DEOS Scheduling Kernel.,2005,26,Formal Methods in System Design,2,db/journals/fmsd/fmsd26.html#PenixVPPELW05,https://doi.org/10.1007/s10703-005-1490-4 +Tomás Brázdil,Analyzing probabilistic pushdown automata.,2013,43,Formal Methods in System Design,2,db/journals/fmsd/fmsd43.html#BrazdilEKK13,https://doi.org/10.1007/s10703-012-0166-0 +Alastair F. Donaldson,Automatic analysis of DMA races using model checking and k-induction.,2011,39,Formal Methods in System Design,1,db/journals/fmsd/fmsd39.html#DonaldsonKR11,https://doi.org/10.1007/s10703-011-0124-2 +Nathalie Bertrand 0001,Computable fixpoints in well-structured symbolic model checking.,2013,43,Formal Methods in System Design,2,db/journals/fmsd/fmsd43.html#BertrandS13,https://doi.org/10.1007/s10703-012-0168-y +Stefan Kiefer,Algorithmic probabilistic game semantics - Playing games with automata.,2013,43,Formal Methods in System Design,2,db/journals/fmsd/fmsd43.html#KieferMOWW13,https://doi.org/10.1007/s10703-012-0173-1 +Jonathan Heinen,Juggrnaut: using graph grammars for abstracting unbounded heap structures.,2015,47,Formal Methods in System Design,2,db/journals/fmsd/fmsd47.html#HeinenJKN15,https://doi.org/10.1007/s10703-015-0236-1 +Claude Jard,Symbolic unfolding of parametric stopwatch Petri nets.,2013,43,Formal Methods in System Design,3,db/journals/fmsd/fmsd43.html#JardLRT13,https://doi.org/10.1007/s10703-013-0188-2 +Eugene Goldberg,Quantifier elimination by dependency sequents.,2014,45,Formal Methods in System Design,2,db/journals/fmsd/fmsd45.html#GoldbergM14,https://doi.org/10.1007/s10703-014-0214-z +Warren A. Hunt Jr.,Introduction: Special Issue on Microprocessor Verifications.,2002,20,Formal Methods in System Design,2,db/journals/fmsd/fmsd20.html#Hunt02,https://doi.org/10.1023/A:1014175712530 +Marta Kwiatkowska,2014 CAV award announcement.,2016,48,Formal Methods in System Design,3,db/journals/fmsd/fmsd48.html#KwiatkowskaVBB16,https://doi.org/10.1007/s10703-016-0244-9 +Karin Quaas,MSO logics for weighted timed automata.,2011,38,Formal Methods in System Design,3,db/journals/fmsd/fmsd38.html#Quaas11,https://doi.org/10.1007/s10703-011-0112-6 +Muffy Calder,Feature interaction detection by pairwise analysis of LTL properties - A case study.,2006,28,Formal Methods in System Design,3,db/journals/fmsd/fmsd28.html#CalderM06,https://doi.org/10.1007/s10703-006-0002-5 +Roberto Sebastiani,GSTE is partitioned model checking.,2007,31,Formal Methods in System Design,2,db/journals/fmsd/fmsd31.html#SebastianiSTV07,https://doi.org/10.1007/s10703-007-0036-3 +David Kortenkamp,A Suite of Tools for Debugging Distributed Autonomous Systems.,2004,24,Formal Methods in System Design,2,db/journals/fmsd/fmsd24.html#KortenkampSMF04,https://doi.org/10.1023/B:FORM.0000017720.64153.57 +Edmund M. Clarke,Editorial.,1997,10,Formal Methods in System Design,1,db/journals/fmsd/fmsd10.html#Clarke97,https://doi.org/10.1023/A:1008659413372 +Ofer Strichman,Accelerating Bounded Model Checking of Safety Properties.,2004,24,Formal Methods in System Design,1,db/journals/fmsd/fmsd24.html#Strichman04,https://doi.org/10.1023/B:FORM.0000004785.67232.f8 +Rajarshi Mukherjee,Efficient Combinational Verification Using Overlapping Local BDDs and a Hash Table.,2002,21,Formal Methods in System Design,1,db/journals/fmsd/fmsd21.html#MukherjeeJTAFF02,https://doi.org/10.1023/A:1016096020556 +Catia M. Angelo,On the Comparison of HOL and Boyer-Moore for Formal Hardware Verification.,1993,2,Formal Methods in System Design,1,db/journals/fmsd/fmsd2.html#AngeloVCM93,https://doi.org/10.1007/BF01383943 +Thao Dang,Coverage-guided test generation for continuous and hybrid systems.,2009,34,Formal Methods in System Design,2,db/journals/fmsd/fmsd34.html#DangN09,https://doi.org/10.1007/s10703-009-0066-0 +Patrick Moosbrugger,R2U2: monitoring and diagnosis of security threats for unmanned aerial systems.,2017,51,Formal Methods in System Design,1,db/journals/fmsd/fmsd51.html#MoosbruggerRS17,https://doi.org/10.1007/s10703-017-0275-x +Alexey Lvov,Verification of Galois field based circuits by formal reasoning based on computational algebraic geometry.,2014,45,Formal Methods in System Design,2,db/journals/fmsd/fmsd45.html#LvovLTPSE14,https://doi.org/10.1007/s10703-014-0206-z +Roberto Barbuti,Reduced Models for Efficient CCS Verification.,2005,26,Formal Methods in System Design,3,db/journals/fmsd/fmsd26.html#BarbutiFSV05,https://doi.org/10.1007/s10703-005-1634-6 +Doron A. Peled,Introduction: Special Issue on Partial Order in Formal Methods.,2005,26,Formal Methods in System Design,1,db/journals/fmsd/fmsd26.html#Peled05,https://doi.org/10.1007/s10703-005-4591-1 +Victor Khomenko,Verification of bounded Petri nets using integer programming.,2007,30,Formal Methods in System Design,2,db/journals/fmsd/fmsd30.html#KhomenkoK07,https://doi.org/10.1007/s10703-006-0022-1 +C. Norris Ip,Verifying Systems with Replicated Components in Mur[b.phiv].,1999,14,Formal Methods in System Design,3,db/journals/fmsd/fmsd14.html#IpD99,https://doi.org/10.1023/A:1008723125149 +Franck Cassez,Synthesis of opaque systems with static and dynamic masks.,2012,40,Formal Methods in System Design,1,db/journals/fmsd/fmsd40.html#CassezDM12,https://doi.org/10.1007/s10703-012-0141-9 +Sérgio Vale Aguiar Campos,Selective Quantitative Analysis and Interval Model Checking: Verifying Different Facets of a System.,2000,17,Formal Methods in System Design,2,db/journals/fmsd/fmsd17.html#CamposCG00,https://doi.org/10.1023/A:1008713601998 +F. Keith Hanna,Reasoning About Analog-Level Implementations of Digital Systems.,2000,16,Formal Methods in System Design,2,db/journals/fmsd/fmsd16.html#Hanna00,https://doi.org/10.1023/A:1008791128550 +Gérard Berry,An Implementation of Constructive Synchronous Programs in POLIS.,2000,17,Formal Methods in System Design,2,db/journals/fmsd/fmsd17.html#BerryS00,https://doi.org/10.1023/A:1008796718837 +Roberto Passerone,Refinement preserving approximations for the design and verification of heterogeneous systems.,2007,31,Formal Methods in System Design,1,db/journals/fmsd/fmsd31.html#PasseroneBS07,https://doi.org/10.1007/s10703-006-0024-z +Bertrand Jeannet,Dynamic Partitioning in Linear Relation Analysis: Application to the Verification of Reactive Systems.,2003,23,Formal Methods in System Design,1,db/journals/fmsd/fmsd23.html#Jeannet03,https://doi.org/10.1023/A:1024480913162 +Stefan Kupferschmid,Incremental preprocessing methods for use in BMC.,2011,39,Formal Methods in System Design,2,db/journals/fmsd/fmsd39.html#KupferschmidLSB11,https://doi.org/10.1007/s10703-011-0122-4 +Randal E. Bryant,2009 CAV award announcement.,2010,36,Formal Methods in System Design,3,db/journals/fmsd/fmsd36.html#BryantGSV10,https://doi.org/10.1007/s10703-010-0094-9 +Sagar Chaki,Three optimizations for Assume-Guarantee reasoning with L*.,2008,32,Formal Methods in System Design,3,db/journals/fmsd/fmsd32.html#ChakiS08,https://doi.org/10.1007/s10703-007-0042-5 +Janusz A. Brzozowski,Delay-Insensitivity and Semi-Modularity.,2000,16,Formal Methods in System Design,2,db/journals/fmsd/fmsd16.html#BrzozowskiZ00,https://doi.org/10.1023/A:1008795229459 +Paolo Zuliani,Bayesian statistical model checking with application to Stateflow/Simulink verification.,2013,43,Formal Methods in System Design,2,db/journals/fmsd/fmsd43.html#ZulianiPC13,https://doi.org/10.1007/s10703-013-0195-3 +Cagkan Erbas,Static priority scheduling of event-triggered real-time embedded systems.,2007,30,Formal Methods in System Design,1,db/journals/fmsd/fmsd30.html#ErbasPC07a,https://doi.org/10.1007/s10703-006-0025-y +Lubos Brim,Faster algorithms for mean-payoff games.,2011,38,Formal Methods in System Design,2,db/journals/fmsd/fmsd38.html#BrimCDGR11,https://doi.org/10.1007/s10703-010-0105-x +étienne André,An extension of the inverse method to probabilistic timed automata.,2013,42,Formal Methods in System Design,2,db/journals/fmsd/fmsd42.html#AndreFS13,https://doi.org/10.1007/s10703-012-0169-x +Aina Niemetz,Propagation based local search for bit-precise reasoning.,2017,51,Formal Methods in System Design,3,db/journals/fmsd/fmsd51.html#NiemetzPB17,https://doi.org/10.1007/s10703-017-0295-6 +Kevin D. Jones,Analog property checkers: a DDR2 case study.,2010,36,Formal Methods in System Design,2,db/journals/fmsd/fmsd36.html#JonesKN10,https://doi.org/10.1007/s10703-009-0085-x +Fang Yu,Automata-based symbolic string analysis for vulnerability detection.,2014,44,Formal Methods in System Design,1,db/journals/fmsd/fmsd44.html#YuABI14,https://doi.org/10.1007/s10703-013-0189-1 +Ofer Strichman,Special issue: program equivalence.,2018,52,Formal Methods in System Design,3,db/journals/fmsd/fmsd52.html#Strichman18,https://doi.org/10.1007/s10703-018-0318-y +Xiaofang Chen,Efficient methods for formally verifying safety properties of hierarchical cache coherence protocols.,2010,36,Formal Methods in System Design,1,db/journals/fmsd/fmsd36.html#ChenYGC10,https://doi.org/10.1007/s10703-010-0092-y +Roderick Bloem,An Algorithm for Strongly Connected Component Analysis in n log n Symbolic Steps.,2006,28,Formal Methods in System Design,1,db/journals/fmsd/fmsd28.html#BloemGS06,https://doi.org/10.1007/s10703-006-4341-z +Werner Damm,Verification of a Radio-Based Signaling System Using the STATEMATE Verification Environment.,2001,19,Formal Methods in System Design,2,db/journals/fmsd/fmsd19.html#DammK01,https://doi.org/10.1023/A:1011279932612 +Patrice Godefroid,Symbolic Protocol Verification with Queue BDDs.,1999,14,Formal Methods in System Design,3,db/journals/fmsd/fmsd14.html#GodefroidL99,https://doi.org/10.1023/A:1008771008310 +Shay Berkovich,Runtime verification with minimal intrusion through parallelism.,2015,46,Formal Methods in System Design,3,db/journals/fmsd/fmsd46.html#BerkovichBF15,https://doi.org/10.1007/s10703-015-0226-3 +Marco Devillers,Verification of a Leader Election Protocol: Formal Methods Applied to IEEE 1394.,2000,16,Formal Methods in System Design,3,db/journals/fmsd/fmsd16.html#DevillersGRV00,https://doi.org/10.1023/A:1008764923992 +Mihalis Yannakakis,An Efficient Algorithm for Minimizing Real-Time Transition Systems.,1997,11,Formal Methods in System Design,2,db/journals/fmsd/fmsd11.html#YannakakisL97,https://doi.org/10.1023/A:1008621829508 +Matthew Wilding,Efficient Simulation of Formal Processor Models.,2001,18,Formal Methods in System Design,3,db/journals/fmsd/fmsd18.html#WildingGH01,https://doi.org/10.1023/A:1011217102270 +Byron Cook,Summarization for termination: no return!,2009,35,Formal Methods in System Design,3,db/journals/fmsd/fmsd35.html#CookPR09,https://doi.org/10.1007/s10703-009-0087-8 +Olivier Coudert,The Implicit Set Paradigm: A New Approach to Finite State System Verification.,1995,6,Formal Methods in System Design,2,db/journals/fmsd/fmsd6.html#CoudertM95,https://doi.org/10.1007/BF01383965 +Frederic Doucet,A methodology to take credit for high-level verification during RTL verification.,2017,51,Formal Methods in System Design,2,db/journals/fmsd/fmsd51.html#DoucetK17,https://doi.org/10.1007/s10703-017-0299-2 +Kostas N. Oikonomou,On a Class of Optimal Abstractions of Finite-State Machines.,1996,8,Formal Methods in System Design,3,db/journals/fmsd/fmsd8.html#Oikonomou96,https://doi.org/10.1007/BF00709137 +Justin Seyster,InterAspect: aspect-oriented instrumentation with GCC.,2012,41,Formal Methods in System Design,3,db/journals/fmsd/fmsd41.html#SeysterDHGHSSZ12,https://doi.org/10.1007/s10703-012-0171-3 +Tarek Mhamdi,Evaluation of anonymity and confidentiality protocols using theorem proving.,2015,47,Formal Methods in System Design,3,db/journals/fmsd/fmsd47.html#MhamdiHT15,https://doi.org/10.1007/s10703-015-0232-5 +Christoph Meinel,A Unifying Theoretical Background for Some Bdd-based Data Structures.,1997,11,Formal Methods in System Design,3,db/journals/fmsd/fmsd11.html#MeinelS97,https://doi.org/10.1023/A:1008667729897 +Dung Phan,Collision avoidance for mobile robots with limited sensing and limited information about moving obstacles.,2017,51,Formal Methods in System Design,1,db/journals/fmsd/fmsd51.html#PhanYGSS17,https://doi.org/10.1007/s10703-016-0265-4 +Akash Lal,Reducing concurrent analysis under a context bound to sequential analysis.,2009,35,Formal Methods in System Design,1,db/journals/fmsd/fmsd35.html#LalR09,https://doi.org/10.1007/s10703-009-0078-9 +Denis Sabatier,The Use of the B Formal Method for the Design and the Validation of the Transaction Mechanism for Smart Card Applications.,2000,17,Formal Methods in System Design,3,db/journals/fmsd/fmsd17.html#SabatierL00,https://doi.org/10.1023/A:1026538301096 +Ramayya Kumar,Structuring and Automating Hardware Proofs in a Higher-Order Theorem-Proving Environment.,1993,2,Formal Methods in System Design,2,db/journals/fmsd/fmsd2.html#KumarSK93,https://doi.org/10.1007/BF01383880 +Deian Tabakov,Optimized temporal monitors for SystemC.,2012,41,Formal Methods in System Design,3,db/journals/fmsd/fmsd41.html#TabakovRV12,https://doi.org/10.1007/s10703-011-0139-8 +Cornelia P. Inggs,CTL* model checking on a shared-memory architecture.,2006,29,Formal Methods in System Design,2,db/journals/fmsd/fmsd29.html#InggsB06,https://doi.org/10.1007/s10703-006-0008-z +Cheryl Harkness,Verifying the Summit Bus Converter Protocols with Symbolic Model Checking.,1994,4,Formal Methods in System Design,2,db/journals/fmsd/fmsd4.html#HarknessW94,https://doi.org/10.1007/BF01384079 +Alain J. Martin,Asynchronous Datapaths and the Design of an Asynchronous Adder.,1992,1,Formal Methods in System Design,1,db/journals/fmsd/fmsd1.html#Martin92,https://doi.org/10.1007/BF00464358 +Karsten Schmidt 0004,Model-Checking with Coverability Graphs.,1999,15,Formal Methods in System Design,3,db/journals/fmsd/fmsd15.html#Schmidt99,https://doi.org/10.1023/A:1008753219837 +Siegfried Fischer,Verification in Process Algebra of the Distributed Control of Track Vehicles - A Case Study.,1994,4,Formal Methods in System Design,2,db/journals/fmsd/fmsd4.html#FischerS94,https://doi.org/10.1007/BF01384080 +Gruia-Catalin Roman,A Notation and Logic for Mobile Computing.,2002,20,Formal Methods in System Design,1,db/journals/fmsd/fmsd20.html#RomanM02,https://doi.org/10.1023/A:1012908529306 +Edmund M. Clarke,Bounded Model Checking Using Satisfiability Solving.,2001,19,Formal Methods in System Design,1,db/journals/fmsd/fmsd19.html#ClarkeBRZ01,https://doi.org/10.1023/A:1011276507260 +Krishnendu Chatterjee,Symbolic algorithms for qualitative analysis of Markov decision processes with Büchi objectives.,2013,42,Formal Methods in System Design,3,db/journals/fmsd/fmsd42.html#ChatterjeeHJS13,https://doi.org/10.1007/s10703-012-0180-2 +Amnon H. Eden,Modeling and visualizing object-oriented programs with Codecharts.,2013,43,Formal Methods in System Design,1,db/journals/fmsd/fmsd43.html#EdenGNK13,https://doi.org/10.1007/s10703-012-0181-1 +Harald Rueß,Modular Verification of SRT Division.,1999,14,Formal Methods in System Design,1,db/journals/fmsd/fmsd14.html#RuessSS99,https://doi.org/10.1023/A:1008617612073 +Parosh Aziz Abdulla,SAT-Solving the Coverability Problem for Petri Nets.,2004,24,Formal Methods in System Design,1,db/journals/fmsd/fmsd24.html#AbdullaIN04,https://doi.org/10.1023/B:FORM.0000004786.30007.f8 +Tamir Heyman,A Scalable Parallel Algorithm for Reachability Analysis of Very Large Circuits.,2002,21,Formal Methods in System Design,3,db/journals/fmsd/fmsd21.html#HeymanGGS02,https://doi.org/10.1023/A:1020373206491 +Ashish Tiwari,A search-based procedure for nonlinear real arithmetic.,2016,48,Formal Methods in System Design,3,db/journals/fmsd/fmsd48.html#TiwariL16,https://doi.org/10.1007/s10703-016-0245-8 +Francisco Corella,Multiway Decision Graphs for Automated Hardware Verification.,1997,10,Formal Methods in System Design,1,db/journals/fmsd/fmsd10.html#CorellaZSLC97,https://doi.org/10.1023/A:1008663530211 +Patrice Godefroid,Using Partial Orders for the Efficient Verification of Deadlock Freedom and Safety Properties.,1993,2,Formal Methods in System Design,2,db/journals/fmsd/fmsd2.html#GodefroidW93,https://doi.org/10.1007/BF01383879 +Peter Habermehl,Forest automata for verification of heap manipulation.,2012,41,Formal Methods in System Design,1,db/journals/fmsd/fmsd41.html#HabermehlHRSV12,https://doi.org/10.1007/s10703-012-0150-8 +Ananda Basu,Priority scheduling of distributed systems based on model checking.,2011,39,Formal Methods in System Design,3,db/journals/fmsd/fmsd39.html#BasuBPS11,https://doi.org/10.1007/s10703-011-0128-y +Béatrice Bérard,Interrupt Timed Automata: verification and expressiveness.,2012,40,Formal Methods in System Design,1,db/journals/fmsd/fmsd40.html#BerardHS12,https://doi.org/10.1007/s10703-011-0140-2 +Jean-Paul Bodeveix,Reduction and Quantifier Elimination Techniques for Program Validation.,2002,20,Formal Methods in System Design,1,db/journals/fmsd/fmsd20.html#BodeveixF02,https://doi.org/10.1023/A:1012960513376 +Bernd Becker 0001,On the Expressive Power of OKFDDs.,1997,11,Formal Methods in System Design,1,db/journals/fmsd/fmsd11.html#BeckerDT97,https://doi.org/10.1023/A:1008635324476 +Hana Chockler,Coverage metrics for temporal logic model checking*.,2006,28,Formal Methods in System Design,3,db/journals/fmsd/fmsd28.html#ChocklerKV06,https://doi.org/10.1007/s10703-006-0001-6 +Wan Fokkink,Cones and foci: A mechanical framework for protocol verification.,2006,29,Formal Methods in System Design,1,db/journals/fmsd/fmsd29.html#FokkinkPP06,https://doi.org/10.1007/s10703-006-0004-3 +Teodor Rus,Generating Model Checkers from Algebraic Specifications.,2002,20,Formal Methods in System Design,3,db/journals/fmsd/fmsd20.html#RusWH02,https://doi.org/10.1023/A:1014742013173 +Robert P. Kurshan,Combining Software and Hardware Verification Techniques.,2002,21,Formal Methods in System Design,3,db/journals/fmsd/fmsd21.html#KurshanLMPY02,https://doi.org/10.1023/A:1020383505582 +Susanne Graf,Achieving distributed control through model checking.,2012,40,Formal Methods in System Design,2,db/journals/fmsd/fmsd40.html#GrafPQ12,https://doi.org/10.1007/s10703-011-0138-9 +Scott Uk-Jin Lee,Theorem prover approach to semistructured data design.,2010,37,Formal Methods in System Design,1,db/journals/fmsd/fmsd37.html#LeeDSG10,https://doi.org/10.1007/s10703-010-0099-4 +Simone Fulvio Rollini,Resolution proof transformation for compression and interpolation.,2014,45,Formal Methods in System Design,1,db/journals/fmsd/fmsd45.html#RolliniBST14,https://doi.org/10.1007/s10703-014-0208-x +J. J. T. Kleijn,Analysis of an Industrial System.,2003,22,Formal Methods in System Design,3,db/journals/fmsd/fmsd22.html#KleijnRR03,https://doi.org/10.1023/A:1022901312673 +Jean-Pierre Talpin,An algebraic theory for behavioral modeling and protocol synthesis in system design.,2006,28,Formal Methods in System Design,2,db/journals/fmsd/fmsd28.html#TalpinG06,https://doi.org/10.1007/s10703-006-7845-7 +Manfred Broy,A Functional Rephrasing of the Assumption/Commitment Specification Style.,1998,13,Formal Methods in System Design,1,db/journals/fmsd/fmsd13.html#Broy98,https://doi.org/10.1023/A:1008618722275 +Ganesh Gopalakrishnan,Introduction: Formal Methods for CAD: Enabling Technologies and System-level Applications.,2000,16,Formal Methods in System Design,1,db/journals/fmsd/fmsd16.html#Gopalakrishnan00,https://doi.org/10.1023/A:1008721324037 +Luca P. Carloni,A Framework for Modeling the Distributed Deployment of Synchronous Designs.,2006,28,Formal Methods in System Design,2,db/journals/fmsd/fmsd28.html#CarloniS06,https://doi.org/10.1007/s10703-006-7842-x +Max Goldman,MAVEN: modular aspect verification and interference analysis.,2010,37,Formal Methods in System Design,1,db/journals/fmsd/fmsd37.html#GoldmanKK10,https://doi.org/10.1007/s10703-010-0101-1 +Srinivas Pinisetty,Runtime enforcement of timed properties revisited.,2014,45,Formal Methods in System Design,3,db/journals/fmsd/fmsd45.html#PinisettyFJMRN14,https://doi.org/10.1007/s10703-014-0215-y +Byron Cook,Temporal property verification as a program analysis task - Extended Version.,2012,41,Formal Methods in System Design,1,db/journals/fmsd/fmsd41.html#CookKV12,https://doi.org/10.1007/s10703-012-0153-5 +Christian Jacobi 0002,Formal Verification of the VAMP Floating Point Unit.,2005,26,Formal Methods in System Design,3,db/journals/fmsd/fmsd26.html#0002B05,https://doi.org/10.1007/s10703-005-1613-y +Tianyi Liang,An efficient SMT solver for string constraints.,2016,48,Formal Methods in System Design,3,db/journals/fmsd/fmsd48.html#LiangRTTBD16,https://doi.org/10.1007/s10703-016-0247-6 +Lubos Brim,Foreword.,2006,29,Formal Methods in System Design,2,db/journals/fmsd/fmsd29.html#BrimL06,https://doi.org/10.1007/s10703-006-0010-5 +Albert Benveniste,Foreword.,2001,19,Formal Methods in System Design,1,db/journals/fmsd/fmsd19.html#BenvenisteP01,https://doi.org/10.1023/A:1011222711518 +Felice Balarin,An Iterative Approach to Verification of Real-Time Systems.,1995,6,Formal Methods in System Design,1,db/journals/fmsd/fmsd6.html#BalarinS95,https://doi.org/10.1007/BF01384315 +Laura Bozzelli,Pushdown module checking.,2010,36,Formal Methods in System Design,1,db/journals/fmsd/fmsd36.html#BozzelliMP10,https://doi.org/10.1007/s10703-010-0093-x +Corina S. Pasareanu,Learning to divide and conquer: applying the L* algorithm to automate assume-guarantee reasoning.,2008,32,Formal Methods in System Design,3,db/journals/fmsd/fmsd32.html#PasareanuGBCB08,https://doi.org/10.1007/s10703-008-0049-6 +Ilan Beer,Efficient Detection of Vacuity in Temporal Model Checking.,2001,18,Formal Methods in System Design,2,db/journals/fmsd/fmsd18.html#BeerBER01,https://doi.org/10.1023/A:1008779610539 +Klaus Havelund,An Overview of the Runtime Verification Tool Java PathExplorer.,2004,24,Formal Methods in System Design,2,db/journals/fmsd/fmsd24.html#HavelundR04a,https://doi.org/10.1023/B:FORM.0000017721.39909.4b +Loris D'Antoni,Extended symbolic finite automata and transducers.,2015,47,Formal Methods in System Design,1,db/journals/fmsd/fmsd47.html#DAntoniV15,https://doi.org/10.1007/s10703-015-0233-4 +Alessandro Fantechi,Model Checking for Action-Based Logics.,1994,4,Formal Methods in System Design,2,db/journals/fmsd/fmsd4.html#FantechiGR94,https://doi.org/10.1007/BF01384084 +Tobias Schüle,Bounded model checking of infinite state systems.,2007,30,Formal Methods in System Design,1,db/journals/fmsd/fmsd30.html#SchuleS07,https://doi.org/10.1007/s10703-006-0019-9 +Andrew Reynolds,Solving quantified linear arithmetic by counterexample-guided instantiation.,2017,51,Formal Methods in System Design,3,db/journals/fmsd/fmsd51.html#ReynoldsKK17,https://doi.org/10.1007/s10703-017-0290-y +Klaus Havelund,Foreword.,2005,27,Formal Methods in System Design,3,db/journals/fmsd/fmsd27.html#HavelundR05,https://doi.org/10.1007/s10703-005-3397-5 +Daniel Kroening,Loop summarization using state and transition invariants.,2013,42,Formal Methods in System Design,3,db/journals/fmsd/fmsd42.html#KroeningSTTW13,https://doi.org/10.1007/s10703-012-0176-y +André Platzer,Computing differential invariants of hybrid systems as fixedpoints.,2009,35,Formal Methods in System Design,1,db/journals/fmsd/fmsd35.html#PlatzerC09,https://doi.org/10.1007/s10703-009-0079-8 +Patrick Cousot,Why does Astrée scale up?,2009,35,Formal Methods in System Design,3,db/journals/fmsd/fmsd35.html#CousotCFMMR09,https://doi.org/10.1007/s10703-009-0089-6 +Chao Yan 0001,Verifying global start-up for a Möbius ring-oscillator.,2014,45,Formal Methods in System Design,2,db/journals/fmsd/fmsd45.html#YanGY14,https://doi.org/10.1007/s10703-013-0204-6 +Edmund M. Clarke,On simulation-based probabilistic model checking of mixed-analog circuits.,2010,36,Formal Methods in System Design,2,db/journals/fmsd/fmsd36.html#ClarkeDL10,https://doi.org/10.1007/s10703-009-0076-y +Detlef Sieling,A Comparison of Free BDDs and Transformed BDDs.,2001,19,Formal Methods in System Design,3,db/journals/fmsd/fmsd19.html#SielingW01,https://doi.org/10.1023/A:1011229414976 +Dejan Jovanovic,Being careful about theory combination.,2013,42,Formal Methods in System Design,1,db/journals/fmsd/fmsd42.html#JovanovicB13,https://doi.org/10.1007/s10703-012-0159-z +Marcelo Glusman,A Mechanized Proof Environment for the Convenient Computations Proof Method.,2003,23,Formal Methods in System Design,2,db/journals/fmsd/fmsd23.html#GlusmanK03,https://doi.org/10.1023/A:1024746015231 +Cagkan Erbas,Static priority scheduling of event-triggered real-time embedded systems.,2007,30,Formal Methods in System Design,1,db/journals/fmsd/fmsd30.html#ErbasPC07,https://doi.org/10.1007/s10703-006-0021-2 +Hermenegilda Macià,A congruence relation for sPBC.,2008,32,Formal Methods in System Design,2,db/journals/fmsd/fmsd32.html#MaciaRCF08,https://doi.org/10.1007/s10703-007-0045-2 +Peter A. Beerel,Checking Combinational Equivalence of Speed-Independent Circuits.,1998,13,Formal Methods in System Design,1,db/journals/fmsd/fmsd13.html#BeerelBM98,https://doi.org/10.1023/A:1008666605437 +Anvesh Komuravelli,SMT-based model checking for recursive programs.,2016,48,Formal Methods in System Design,3,db/journals/fmsd/fmsd48.html#KomuravelliGC16,https://doi.org/10.1007/s10703-016-0249-4 +Costas Courcoubetis,Introduction to the Special Issue on Computer-Aided Verification (CAV93).,1997,11,Formal Methods in System Design,2,db/journals/fmsd/fmsd11.html#Courcoubetis97,https://doi.org/10.1023/A:1008603628600 +Shmuel Katz,Saving Space by Fully Exploiting Invisible Transitions.,1999,14,Formal Methods in System Design,3,db/journals/fmsd/fmsd14.html#KatzM99,https://doi.org/10.1023/A:1008775109219 +Judi Romijn,A Timed Verification of the IEEE 1394 Leader Election Protocol.,2001,19,Formal Methods in System Design,2,db/journals/fmsd/fmsd19.html#Romijn01,https://doi.org/10.1023/A:1011284000753 +Mark Kattenbelt,A game-based abstraction-refinement framework for Markov decision processes.,2010,36,Formal Methods in System Design,3,db/journals/fmsd/fmsd36.html#KattenbeltKNP10,https://doi.org/10.1007/s10703-010-0097-6 +Sandeep K. Shukla,Special issue on formal methods for globally asynchronous and locally synchronous (GALS) systems.,2006,28,Formal Methods in System Design,2,db/journals/fmsd/fmsd28.html#ShuklaT06,https://doi.org/10.1007/s10703-006-7840-z +Erion Plaku,Hybrid systems: from verification to falsification by combining motion planning and discrete search.,2009,34,Formal Methods in System Design,2,db/journals/fmsd/fmsd34.html#PlakuKV09,https://doi.org/10.1007/s10703-008-0058-5 +Nicolas Halbwachs,Verification of Real-Time Systems using Linear Relation Analysis.,1997,11,Formal Methods in System Design,2,db/journals/fmsd/fmsd11.html#HalbwachsPR97,https://doi.org/10.1023/A:1008678014487 +Dingbao Xie,SAT-LP-IIS joint-directed path-oriented bounded reachability analysis of linear hybrid automata.,2014,45,Formal Methods in System Design,1,db/journals/fmsd/fmsd45.html#XieBZL14,https://doi.org/10.1007/s10703-014-0210-3 +Stefan Jaksic,Quantitative monitoring of STL with edit distance.,2018,53,Formal Methods in System Design,1,db/journals/fmsd/fmsd53.html#JaksicBGNN18,https://doi.org/10.1007/s10703-018-0319-x +W. M. H. M. Rovers,Description of a Design Management System for the P-ASIC Design Flow Using EXPDL.,1994,4,Formal Methods in System Design,2,db/journals/fmsd/fmsd4.html#Rovers94,https://doi.org/10.1007/BF01384082 +Benoît Delahaye,Probabilistic contracts: a compositional reasoning methodology for the design of systems with stochastic and/or non-deterministic aspects.,2011,38,Formal Methods in System Design,1,db/journals/fmsd/fmsd38.html#DelahayeCL11,https://doi.org/10.1007/s10703-010-0107-8 +Javier Esparza,Verification of Safety Properties Using Integer Programming: Beyond the State Equation.,2000,16,Formal Methods in System Design,2,db/journals/fmsd/fmsd16.html#EsparzaM00,https://doi.org/10.1023/A:1008743212620 +Paul Loewenstein,Verification of a Multiprocessor Cache Protocol Using Simulation Relations and Higher-Order Logic.,1992,1,Formal Methods in System Design,4,db/journals/fmsd/fmsd1.html#Loewenstein92,https://doi.org/10.1007/BF00709156 +Hana Chockler,Beyond vacuity: towards the strongest passing formula.,2013,43,Formal Methods in System Design,3,db/journals/fmsd/fmsd43.html#ChocklerGS13,https://doi.org/10.1007/s10703-013-0192-6 +Carlos Moreno 0002,Non-intrusive runtime monitoring through power consumption to enforce safety and security properties in embedded systems.,2018,53,Formal Methods in System Design,1,db/journals/fmsd/fmsd53.html#MorenoF18,https://doi.org/10.1007/s10703-017-0298-3 +Ganesh Gopalakrishnan,Preface.,2012,41,Formal Methods in System Design,1,db/journals/fmsd/fmsd41.html#GopalakrishnanQ12,https://doi.org/10.1007/s10703-012-0148-2 +Alain Girault,Automating the addition of fault tolerance with discrete controller synthesis.,2009,35,Formal Methods in System Design,2,db/journals/fmsd/fmsd35.html#GiraultR09,https://doi.org/10.1007/s10703-009-0084-y +Simin Nadjm-Tehrani,Formal Verification of Dynamic Properties in an Aerospace Application.,1999,14,Formal Methods in System Design,2,db/journals/fmsd/fmsd14.html#Nadjm-TehraniS99,https://doi.org/10.1023/A:1008651801000 +Stephen F. Siegel,Transparent partial order reduction.,2012,40,Formal Methods in System Design,1,db/journals/fmsd/fmsd40.html#Siegel12,https://doi.org/10.1007/s10703-011-0126-0 +Pierre Ganty,Bounded underapproximations.,2012,40,Formal Methods in System Design,2,db/journals/fmsd/fmsd40.html#GantyMM12,https://doi.org/10.1007/s10703-011-0136-y +Christian Colombo,Safer asynchronous runtime monitoring using compensations.,2012,41,Formal Methods in System Design,3,db/journals/fmsd/fmsd41.html#ColomboPA12,https://doi.org/10.1007/s10703-012-0142-8 +Robert P. Kurshan,Modelling Asynchrony with a Synchronous Model.,1999,15,Formal Methods in System Design,3,db/journals/fmsd/fmsd15.html#KurshanMOS99,https://doi.org/10.1023/A:1008792918020 +Moshe Y. Vardi,2011 CAV award announcement.,2012,41,Formal Methods in System Design,1,db/journals/fmsd/fmsd41.html#VardiHAK12,https://doi.org/10.1007/s10703-012-0154-4 +Orna Kupferman,Model Checking of Safety Properties.,2001,19,Formal Methods in System Design,3,db/journals/fmsd/fmsd19.html#KupfermanV01,https://doi.org/10.1023/A:1011254632723 +Bernd Finkbeiner,Checking Finite Traces Using Alternating Automata.,2004,24,Formal Methods in System Design,2,db/journals/fmsd/fmsd24.html#FinkbeinerS04,https://doi.org/10.1023/B:FORM.0000017718.28096.48 +Ahmed Bouajjani,Verification of parametric concurrent systems with prioritised FIFO resource management.,2008,32,Formal Methods in System Design,2,db/journals/fmsd/fmsd32.html#BouajjaniHV08,https://doi.org/10.1007/s10703-008-0048-7 +Armin Biere,Preface.,2011,39,Formal Methods in System Design,2,db/journals/fmsd/fmsd39.html#BiereY11,https://doi.org/10.1007/s10703-011-0129-x +Sofiène Tahar,A Practical Methodology for the Formal Verification of RISC Processors.,1998,13,Formal Methods in System Design,2,db/journals/fmsd/fmsd13.html#TaharK98,https://doi.org/10.1023/A:1008622002590 +Peter Csaba ölveczky,Specification and analysis of the AER/NCA active network protocol suite in Real-Time Maude.,2006,29,Formal Methods in System Design,3,db/journals/fmsd/fmsd29.html#OlveczkyMT06,https://doi.org/10.1007/s10703-006-0015-0 +Krishnaprasad Thirunarayan,Structural Operational Semantics for a Portable Subset of Behavioral VHDL-93.,2001,18,Formal Methods in System Design,1,db/journals/fmsd/fmsd18.html#ThirunarayanE01,https://doi.org/10.1023/A:1008786720393 +Daniel Kroening,Under-approximating loops in C programs for fast counterexample detection.,2015,47,Formal Methods in System Design,1,db/journals/fmsd/fmsd47.html#KroeningLW15,https://doi.org/10.1007/s10703-015-0228-1 +Ezio Bartocci,Introduction to the special issue on runtime verification.,2017,51,Formal Methods in System Design,1,db/journals/fmsd/fmsd51.html#BartocciM17,https://doi.org/10.1007/s10703-017-0287-6 +Massimo Benerecetti,Solving parity games via priority promotion.,2018,52,Formal Methods in System Design,2,db/journals/fmsd/fmsd52.html#BenerecettiDM18,https://doi.org/10.1007/s10703-018-0315-1 +Alessandro Cimatti,Quantifier-free encoding of invariants for hybrid systems.,2014,45,Formal Methods in System Design,2,db/journals/fmsd/fmsd45.html#CimattiMT14,https://doi.org/10.1007/s10703-013-0202-8 +Edmund M. Clarke,Verifying the SRT Division Algorithm Using Theorem Proving Techniques.,1999,14,Formal Methods in System Design,1,db/journals/fmsd/fmsd14.html#ClarkeGZ99,https://doi.org/10.1023/A:1008665528003 +Mandayam K. Srivas,Applying Formal Verification to the AAMP5 Microprocessor: A Case Study in the Industrial Use of Formal Methods.,1996,8,Formal Methods in System Design,2,db/journals/fmsd/fmsd8.html#SrivasM96,https://doi.org/10.1007/BF00122419 +Jiri Barnat,Distributed breadth-first search LTL model checking.,2006,29,Formal Methods in System Design,2,db/journals/fmsd/fmsd29.html#BarnatC06,https://doi.org/10.1007/s10703-006-0009-y +Javier Esparza,From LTL to deterministic automata - A safraless compositional approach.,2016,49,Formal Methods in System Design,3,db/journals/fmsd/fmsd49.html#EsparzaKS16,https://doi.org/10.1007/s10703-016-0259-2 +Moez Krichen,Conformance testing for real-time systems.,2009,34,Formal Methods in System Design,3,db/journals/fmsd/fmsd34.html#KrichenT09,https://doi.org/10.1007/s10703-009-0065-1 +Thomas F. La Porta,Verification of the MultiStream Potocol (MSP) Using COSPAN.,1994,4,Formal Methods in System Design,2,db/journals/fmsd/fmsd4.html#PortaS94,https://doi.org/10.1007/BF01384081 +Supratik Chakraborty,Reasoning about synchronization in GALS systems.,2006,28,Formal Methods in System Design,2,db/journals/fmsd/fmsd28.html#ChakrabortyMS06,https://doi.org/10.1007/s10703-006-7841-y +Magdy S. Abadir,Formal Verification Successes at Motorola.,2003,22,Formal Methods in System Design,2,db/journals/fmsd/fmsd22.html#AbadirAHKM03,https://doi.org/10.1023/A:1022917321255 +Christoph Scholl,On WLCDs and the Complexity of Word-Level Decision Diagrams-A Lower Bound for Division.,2002,20,Formal Methods in System Design,3,db/journals/fmsd/fmsd20.html#SchollBW02,https://doi.org/10.1023/A:1014702331828 +Parosh Aziz Abdulla,Budget-bounded model-checking pushdown systems.,2014,45,Formal Methods in System Design,2,db/journals/fmsd/fmsd45.html#AbdullaARS14,https://doi.org/10.1007/s10703-014-0207-y +Lei Feng,Designing communicating transaction processes by supervisory control theory.,2007,30,Formal Methods in System Design,2,db/journals/fmsd/fmsd30.html#FengWT07,https://doi.org/10.1007/s10703-006-0023-0 +Karthikeyan Bhargavan,Network Event Recognition.,2005,27,Formal Methods in System Design,3,db/journals/fmsd/fmsd27.html#BhargavanG05,https://doi.org/10.1007/s10703-005-3398-4 +Eric Goubault,A zonotopic framework for functional abstractions.,2015,47,Formal Methods in System Design,3,db/journals/fmsd/fmsd47.html#GoubaultP15,https://doi.org/10.1007/s10703-015-0238-z +Doron A. Peled,Combining Partial Order Reductions with On-the-Fly Model-Checking.,1996,8,Formal Methods in System Design,1,db/journals/fmsd/fmsd8.html#Peled96,https://doi.org/10.1007/BF00121262 +Andrzej S. Murawski,Algorithmic games for full ground references.,2018,52,Formal Methods in System Design,3,db/journals/fmsd/fmsd52.html#MurawskiT18,https://doi.org/10.1007/s10703-017-0292-9 +Silvia Crafa,Bisimulation and simulation algorithms on probabilistic transition systems by abstract interpretation.,2012,40,Formal Methods in System Design,3,db/journals/fmsd/fmsd40.html#CrafaR12,https://doi.org/10.1007/s10703-012-0147-3 +Thomas Martin Gawlitza,Numerical invariants through convex relaxation and max-strategy iteration.,2014,44,Formal Methods in System Design,2,db/journals/fmsd/fmsd44.html#GawlitzaS14,https://doi.org/10.1007/s10703-013-0190-8 +Edmund M. Clarke,Verification of the Futurebus+ Cache Coherence Protocol.,1995,6,Formal Methods in System Design,2,db/journals/fmsd/fmsd6.html#ClarkeGHJLMN95,https://doi.org/10.1007/BF01383968 +Andrew M. Bailey,An Exercise in the Automatic Verification of Asynchronous Designs.,1994,4,Formal Methods in System Design,3,db/journals/fmsd/fmsd4.html#BaileyMM94,https://doi.org/10.1007/BF01384047 +Bernd Finkbeiner,Collecting Statistics Over Runtime Executions.,2005,27,Formal Methods in System Design,3,db/journals/fmsd/fmsd27.html#FinkbeinerSS05,https://doi.org/10.1007/s10703-005-3399-3 +Dima Elenbogen,Proving mutual termination.,2015,47,Formal Methods in System Design,2,db/journals/fmsd/fmsd47.html#ElenbogenKS15,https://doi.org/10.1007/s10703-015-0234-3 +Radhakrishna Nagalla,Signal Transition Graph Constraints for Synthesis of Hazard-Free Asynchronous Circuits with Unbounded-Gate Delays.,1994,5,Formal Methods in System Design,3,db/journals/fmsd/fmsd5.html#NagallaH94,https://doi.org/10.1007/BF01383833 +Domagoj Babic,Recognizing malicious software behaviors with tree automata inference.,2012,41,Formal Methods in System Design,1,db/journals/fmsd/fmsd41.html#BabicRS12,https://doi.org/10.1007/s10703-012-0149-1 +Giorgio Delzanno,Constraint-Based Verification of Parameterized Cache Coherence Protocols.,2003,23,Formal Methods in System Design,3,db/journals/fmsd/fmsd23.html#Delzanno03,https://doi.org/10.1023/A:1026276129010 +Lenore D. Zuck,Translation and Run-Time Validation of Loop Transformations.,2005,27,Formal Methods in System Design,3,db/journals/fmsd/fmsd27.html#ZuckPGBFH05,https://doi.org/10.1007/s10703-005-3402-z +Matthieu Martel,Enhancing the implementation of mathematical formulas for fixed-point and floating-point arithmetics.,2009,35,Formal Methods in System Design,3,db/journals/fmsd/fmsd35.html#Martel09,https://doi.org/10.1007/s10703-009-0068-y +Srinivas Pinisetty,Predictive runtime enforcement.,2017,51,Formal Methods in System Design,1,db/journals/fmsd/fmsd51.html#PinisettyPTJFM17,https://doi.org/10.1007/s10703-017-0271-1 +Per Bjesse,Word level bitwidth reduction for unbounded hardware model checking.,2009,35,Formal Methods in System Design,1,db/journals/fmsd/fmsd35.html#Bjesse09,https://doi.org/10.1007/s10703-009-0080-2 +Christophe Ponsard,Early verification and validation of mission critical systems.,2007,30,Formal Methods in System Design,3,db/journals/fmsd/fmsd30.html#PonsardMMRLV07,https://doi.org/10.1007/s10703-006-0028-8 +Paul C. Attie,On the refinement of liveness properties of distributed systems.,2011,39,Formal Methods in System Design,1,db/journals/fmsd/fmsd39.html#Attie11,https://doi.org/10.1007/s10703-011-0117-1 +Gethin Norman,Model checking for probabilistic timed automata.,2013,43,Formal Methods in System Design,2,db/journals/fmsd/fmsd43.html#NormanPS13,https://doi.org/10.1007/s10703-012-0177-x +Michael Mendler,Constructive Boolean circuits and the exactness of timed ternary simulation.,2012,40,Formal Methods in System Design,3,db/journals/fmsd/fmsd40.html#MendlerSB12,https://doi.org/10.1007/s10703-012-0144-6 +Albert Benveniste,QoS-aware management of monotonic service orchestrations.,2014,44,Formal Methods in System Design,1,db/journals/fmsd/fmsd44.html#BenvenisteJKRT14,https://doi.org/10.1007/s10703-013-0191-7 +Claude Helmstetter,Full simulation coverage for SystemC transaction-level models of systems-on-a-chip.,2009,35,Formal Methods in System Design,2,db/journals/fmsd/fmsd35.html#HelmstetterMM09,https://doi.org/10.1007/s10703-009-0075-z +Tetsuya Yamada,On the Computational Power of Binary Decision Diagram with Redundant Variables.,1996,8,Formal Methods in System Design,1,db/journals/fmsd/fmsd8.html#YamadaY96,https://doi.org/10.1007/BF00121263 +Nicolas Halbwachs,Some ways to reduce the space dimension in polyhedra computations.,2006,29,Formal Methods in System Design,1,db/journals/fmsd/fmsd29.html#HalbwachsMG06,https://doi.org/10.1007/s10703-006-0013-2 +Lars Michael Kristensen,Question-guided stubborn set methods for state properties.,2006,29,Formal Methods in System Design,3,db/journals/fmsd/fmsd29.html#KristensenSV06,https://doi.org/10.1007/s10703-006-0006-1 +Scott D. Stoller,Foreword.,2005,26,Formal Methods in System Design,2,db/journals/fmsd/fmsd26.html#StollerV05,https://doi.org/10.1007/s10703-005-1488-y +Yunja Choi,From NuSMV to SPIN: Experiences with model checking flight guidance systems.,2007,30,Formal Methods in System Design,3,db/journals/fmsd/fmsd30.html#Choi07,https://doi.org/10.1007/s10703-006-0027-9 +Rajeev Alur,Polyhedral Flows in Hybrid Automata.,2004,24,Formal Methods in System Design,3,db/journals/fmsd/fmsd24.html#AlurKT04,https://doi.org/10.1023/B:FORM.0000026092.11691.96 +Lalita Jategaonkar Jagadeesan,A Formal Approach to Reactive Systems Software: A Telecommunications Application in ESTEREL.,1996,8,Formal Methods in System Design,2,db/journals/fmsd/fmsd8.html#JagadeesanPO96,https://doi.org/10.1007/BF00122418 +Céline Chevalier,Composition of password-based protocols.,2013,43,Formal Methods in System Design,3,db/journals/fmsd/fmsd43.html#ChevalierDKR13,https://doi.org/10.1007/s10703-013-0184-6 +William Adams,Verisym: Verifying Circuits by Symbolic Simulation.,2003,22,Formal Methods in System Design,2,db/journals/fmsd/fmsd22.html#AdamsHJ03,https://doi.org/10.1023/A:1022977607142 +Pranav Ashar,Gate-Delay-Fault Testability Properties of Multiplexor-Based Networks.,1993,2,Formal Methods in System Design,1,db/journals/fmsd/fmsd2.html#AsharDK93,https://doi.org/10.1007/BF01383945 +Murat Karaorman,jContractor: Introducing Design-by-Contract to Java Using Reflective Bytecode Instrumentation.,2005,27,Formal Methods in System Design,3,db/journals/fmsd/fmsd27.html#KaraormanA05,https://doi.org/10.1007/s10703-005-3400-1 +Chao Wang 0001,Compositional SCC Analysis for Language Emptiness.,2006,28,Formal Methods in System Design,1,db/journals/fmsd/fmsd28.html#WangBHRS06,https://doi.org/10.1007/s10703-006-4617-3 +Yongjian Li,Exploring structural symmetry automatically in symbolic trajectory evaluation.,2011,39,Formal Methods in System Design,2,db/journals/fmsd/fmsd39.html#LiHSZ11,https://doi.org/10.1007/s10703-011-0119-z +Kun Wei,Modelling temporal behaviour in complex systems with Timebands.,2013,43,Formal Methods in System Design,3,db/journals/fmsd/fmsd43.html#WeiWB13,https://doi.org/10.1007/s10703-013-0193-5 +Aarti Gupta,Preface.,2009,35,Formal Methods in System Design,1,db/journals/fmsd/fmsd35.html#GuptaM09,https://doi.org/10.1007/s10703-009-0072-2 +Radu Grosu,Modular and Visual Specification of Hybrid Systems: An Introduction to HyCharts.,2002,21,Formal Methods in System Design,1,db/journals/fmsd/fmsd21.html#GrosuS02,https://doi.org/10.1023/A:1016001318739 +Paul Gastin,Distributed synthesis for well-connected architectures.,2009,34,Formal Methods in System Design,3,db/journals/fmsd/fmsd34.html#GastinSZ09,https://doi.org/10.1007/s10703-008-0064-7 +Kathi Fisler,Bisimulation Minimization and Symbolic Model Checking.,2002,21,Formal Methods in System Design,1,db/journals/fmsd/fmsd21.html#FislerV02,https://doi.org/10.1023/A:1016091902809 +Kenneth L. McMillan,A Technique of State Space Search Based on Unfolding.,1995,6,Formal Methods in System Design,1,db/journals/fmsd/fmsd6.html#McMillan95,https://doi.org/10.1007/BF01384314 +Ganesh Gopalakrishnan,Industrial Practice of Formal Hardware Verification: A Sampling.,2003,22,Formal Methods in System Design,2,db/journals/fmsd/fmsd22.html#GopalakrishnanH03,https://doi.org/10.1023/A:1022912616963 +Dimitra Giannakopoulou,Special issue on learning techniques for compositional reasoning.,2008,32,Formal Methods in System Design,3,db/journals/fmsd/fmsd32.html#GiannakopoulouP08,https://doi.org/10.1007/s10703-008-0054-9 +Orna Grumberg,2010 CAV award announcement.,2012,40,Formal Methods in System Design,2,db/journals/fmsd/fmsd40.html#GrumbergVSA12,https://doi.org/10.1007/s10703-011-0125-1 +Rajeev Alur,Computing Accumulated Delays in Real-time Systems.,1997,11,Formal Methods in System Design,2,db/journals/fmsd/fmsd11.html#AlurCH97,https://doi.org/10.1023/A:1008626013578 +Thomas Reinbacher,Runtime verification of embedded real-time systems.,2014,44,Formal Methods in System Design,3,db/journals/fmsd/fmsd44.html#ReinbacherFB14,https://doi.org/10.1007/s10703-013-0199-z +Parosh Aziz Abdulla,Using Forward Reachability Analysis for Verification of Lossy Channel Systems.,2004,25,Formal Methods in System Design,1,db/journals/fmsd/fmsd25.html#AbdullaCBJ04,https://doi.org/10.1023/B:FORM.0000033962.51898.1a +Jinseong Jeon,An empirical study of adaptive concretization for parallel program synthesis.,2017,50,Formal Methods in System Design,1,db/journals/fmsd/fmsd50.html#JeonQSF17,https://doi.org/10.1007/s10703-017-0269-8 +Ofer Strichman,"Preface to the special issue ""SI: Satisfiability Modulo Theories"".",2013,42,Formal Methods in System Design,1,db/journals/fmsd/fmsd42.html#StrichmanK13,https://doi.org/10.1007/s10703-012-0172-2 +Carl-Johan H. Seger,Formal Verification by Symbolic Evaluation of Partially-Ordered Trajectories.,1995,6,Formal Methods in System Design,2,db/journals/fmsd/fmsd6.html#SegerB95,https://doi.org/10.1007/BF01383966 +Laura Bozzelli,Decision problems for lower/upper bound parametric timed automata.,2009,35,Formal Methods in System Design,2,db/journals/fmsd/fmsd35.html#BozzelliT09,https://doi.org/10.1007/s10703-009-0074-0 +Yi Li,Model checking approach to automated planning.,2014,44,Formal Methods in System Design,2,db/journals/fmsd/fmsd44.html#LiDSLS14,https://doi.org/10.1007/s10703-013-0197-1 +Andreas Bauer 0002,The ins and outs of first-order runtime verification.,2015,46,Formal Methods in System Design,3,db/journals/fmsd/fmsd46.html#0002KV15,https://doi.org/10.1007/s10703-015-0227-2 +Wolfgang Ahrendt,Verifying data- and control-oriented properties combining static and runtime verification: theory and tools.,2017,51,Formal Methods in System Design,1,db/journals/fmsd/fmsd51.html#AhrendtCPS17,https://doi.org/10.1007/s10703-017-0274-y +Ahmed Bouajjani,Programs with lists are counter automata.,2011,38,Formal Methods in System Design,2,db/journals/fmsd/fmsd38.html#BouajjaniBHIMV11,https://doi.org/10.1007/s10703-011-0111-7 +Sebastian Steinhorst,Advanced methods for equivalence checking of analog circuits with strong nonlinearities.,2010,36,Formal Methods in System Design,2,db/journals/fmsd/fmsd36.html#SteinhorstH10,https://doi.org/10.1007/s10703-009-0086-9 +Edmund M. Clarke,Another Look at LTL Model Checking.,1997,10,Formal Methods in System Design,1,db/journals/fmsd/fmsd10.html#ClarkeGH97,https://doi.org/10.1023/A:1008615614281 +Ratan Nalumasu,Deriving Efficient Cache Coherence Protocols Through Refinement.,2002,20,Formal Methods in System Design,1,db/journals/fmsd/fmsd20.html#NalumasuG02,https://doi.org/10.1023/A:1012916831123 +Akram Idani,Object oriented concepts identification from formal B specifications.,2007,30,Formal Methods in System Design,3,db/journals/fmsd/fmsd30.html#IdaniL07,https://doi.org/10.1007/s10703-006-0030-1 +Gérard Basler,Context-aware counter abstraction.,2010,36,Formal Methods in System Design,3,db/journals/fmsd/fmsd36.html#BaslerMWK10,https://doi.org/10.1007/s10703-010-0096-7 +Alexandre Yakovlev,On the Models for Asynchronous Circuit Behaviour with OR Causality.,1996,9,Formal Methods in System Design,3,db/journals/fmsd/fmsd9.html#YakovlevKKLP96,https://doi.org/10.1007/BF00122082 +Guy Leduc,Model-Based Verification of a Security Protocol for Conditional Access to Services.,1999,14,Formal Methods in System Design,2,db/journals/fmsd/fmsd14.html#LeducBLKP99,https://doi.org/10.1023/A:1008683519655 +Gilles Geeraerts,On regions and zones for event-clock automata.,2014,45,Formal Methods in System Design,3,db/journals/fmsd/fmsd45.html#GeeraertsRS14,https://doi.org/10.1007/s10703-014-0212-1 +Abdel Mokkedem,Formalization and Analysis of a Solution to the PCI 2.1 Bus Transaction Ordering Problem.,2000,16,Formal Methods in System Design,1,db/journals/fmsd/fmsd16.html#MokkedemHJG00,https://doi.org/10.1023/A:1008729625855 +Niklas Büscher,On compiling Boolean circuits optimized for secure multi-party computation.,2017,51,Formal Methods in System Design,2,db/journals/fmsd/fmsd51.html#BuscherFHVK17,https://doi.org/10.1007/s10703-017-0300-0 +Signe J. Silver,True Concurrency in Models of Asynchronous Circuit Behavior.,2003,22,Formal Methods in System Design,3,db/journals/fmsd/fmsd22.html#SilverB03,https://doi.org/10.1023/A:1022902408130 +Yonit Kesten,Model Checking with Strong Fairness.,2006,28,Formal Methods in System Design,1,db/journals/fmsd/fmsd28.html#KestenPRS06,https://doi.org/10.1007/s10703-006-4342-y +Cliff B. Jones,Accommodating Interference in the Formal Design of Concurrent Object-Based Programs.,1996,8,Formal Methods in System Design,2,db/journals/fmsd/fmsd8.html#Jones96,https://doi.org/10.1007/BF00122417 +Rajeev Joshi,Checking Cache-Coherence Protocols with TLA+.,2003,22,Formal Methods in System Design,2,db/journals/fmsd/fmsd22.html#JoshiLMTTY03,https://doi.org/10.1023/A:1022969405325 +Tommaso Dreossi,Reachability computation for polynomial dynamical systems.,2017,50,Formal Methods in System Design,1,db/journals/fmsd/fmsd50.html#DreossiDP17,https://doi.org/10.1007/s10703-016-0266-3 +Roberto Barbuti,Logic Based Abstractions of Real-Time Systems.,2000,17,Formal Methods in System Design,3,db/journals/fmsd/fmsd17.html#BarbutiFSV00,https://doi.org/10.1023/A:1026534200187 +Leila Silva,A Constructive Approach to Hardware/Software Partitioning.,2004,24,Formal Methods in System Design,1,db/journals/fmsd/fmsd24.html#SilvaSB04,https://doi.org/10.1023/B:FORM.0000004787.52329.98 +Adrian Francalanza,Synthesising correct concurrent runtime monitors.,2015,46,Formal Methods in System Design,3,db/journals/fmsd/fmsd46.html#FrancalanzaS15,https://doi.org/10.1007/s10703-014-0217-9 +Petar Tomov,Mechanisms of Self-Sustained Oscillatory States in Hierarchical Modular Networks with Mixtures of Electrophysiological Cell Types.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#TomovPRZ16,https://doi.org/10.3389/fncom.2016.00023 +Sandra D. Berger,Modeling the Influence of Ion Channels on Neuron Dynamics in Drosophila.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#BergerC15,https://doi.org/10.3389/fncom.2015.00139 +Corey B. Hart,Distinguishing synchronous and time-varying synergies using point process interval statistics: motor primitives in frog and rat.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#HartG13,https://doi.org/10.3389/fncom.2013.00052 +Dana Frances Boatman-Reich,Quantifying auditory event-related responses in multichannel human intracranial recordings.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#Boatman-ReichFKCRCC10,https://doi.org/10.3389/fncom.2010.00004 +Vladimir Itskov,Short-Term Facilitation may Stabilize Parametric Working Memory Trace.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#ItskovHT11,https://doi.org/10.3389/fncom.2011.00040 +Ashutosh Mohan,Interaction of short-term depression and firing dynamics in shaping single neuron encoding.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#MohanMS13,https://doi.org/10.3389/fncom.2013.00041 +Christoph Kolodziejski,Closed-Form Treatment of the Interactions between Neuronal Activity and Timing-Dependent Plasticity in Networks of Linear Neurons.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#KolodziejskiTW10,https://doi.org/10.3389/fncom.2010.00134 +Ran Manor,Multimodal Neural Network for Rapid Serial Visual Presentation Brain Computer Interface.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ManorMG16,https://doi.org/10.3389/fncom.2016.00130 +Yonatan Loewenstein,Synaptic theory of Replicator-like melioration.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#Loewenstein10,https://doi.org/10.3389/fncom.2010.00017 +Xuemei Lei,Sex Differences in Fiber Connection between the Striatum and Subcortical and Cortical Regions.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#LeiHCBXD16,https://doi.org/10.3389/fncom.2016.00100 +Kenji Morita,Possible dendritic contribution to unimodal numerosity tuning and Weber-Fechner law-dependent numerical cognition.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#Morita09,https://doi.org/10.3389/neuro.10.012.2009 +Maria Inés Troparevsky,Sensitivity Analysis for the EEG Forward Problem.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#TroparevskyRS10,https://doi.org/10.3389/fncom.2010.00138 +Frederic von Wegner,EEG Microstate Sequences From Different Clustering Algorithms Are Information-Theoretically Invariant.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#WegnerKL18,https://doi.org/10.3389/fncom.2018.00070 +Olivier D. Faugeras,A constructive mean-field analysis of multi population neural networks with random synaptic weights and stochastic inputs.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#FaugerasTC09,https://doi.org/10.3389/neuro.10.001.2009 +Alex Roxin,The Role of Degree Distribution in Shaping the Dynamics in Networks of Sparsely Connected Spiking Neurons.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#Roxin11,https://doi.org/10.3389/fncom.2011.00008 +Drew Benjamin Sinha,Spike-timing computation properties of a feed-forward neural network model.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#SinhaLB14,https://doi.org/10.3389/fncom.2014.00005 +Karim Le Meur,GABA release by hippocampal astrocytes.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#MeurMGA12,https://doi.org/10.3389/fncom.2012.00059 +Christopher J. Lee,Open Peer Review by a Selected-Papers Network.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#Lee12,https://doi.org/10.3389/fncom.2012.00001 +Nikolaus Kriegeskorte,Open Evaluation: A Vision for Entirely Transparent Post-Publication Peer Review and Rating for Science.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#Kriegeskorte12,https://doi.org/10.3389/fncom.2012.00079 +Wiktor Mlynarski,Efficient coding of spectrotemporal binaural sounds leads to emergence of the auditory space representation.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Mlynarski14,https://doi.org/10.3389/fncom.2014.00026 +Thomas G. Oertner,How do synapses measure milliseconds?,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#Oertner09,https://doi.org/10.3389/neuro.10.007.2009 +Chou Po Hung,Correlated activity supports efficient cortical processing.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#HungCCLL15,https://doi.org/10.3389/fncom.2014.00171 +George Azzopardi,Ventral-stream-like shape representation: from pixel intensity values to trainable object-selective COSFIRE models.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#AzzopardiP14,https://doi.org/10.3389/fncom.2014.00080 +Svyatoslav Vergun,Characterizing Functional Connectivity Differences in Aging Adults using Machine Learning on Resting State fMRI Data.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#VergunDMSTNSBMBP13,https://doi.org/10.3389/fncom.2013.00038 +Demba E. Ba,Algorithms for the analysis of ensemble neural spiking activity using simultaneous-event multivariate point-process models.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#BaTB14,https://doi.org/10.3389/fncom.2014.00006 +Tal Dotan Ben-Soussan,Gender-Dependent Changes in Time Production Following Quadrato Motor Training in Dyslexic and Normal Readers.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#Ben-SoussanG18,https://doi.org/10.3389/fncom.2018.00071 +Laura Zitella,Subject-specific computational modeling of DBS in the PPTg area.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ZitellaTYHBDHVB15,https://doi.org/10.3389/fncom.2015.00093 +Tobias A. Mattei,Unveiling complexity: non-linear and fractal analysis in neuroscience and cognitive psychology.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Mattei14,https://doi.org/10.3389/fncom.2014.00017 +Matthieu Gilson,Editorial: Emergent Neural Computation from the Interaction of Different Forms of Plasticity.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#GilsonSZ15,https://doi.org/10.3389/fncom.2015.00145 +William C. Lennon Jr.,A Model of In vitro Plasticity at the Parallel Fiber - Molecular Layer Interneuron Synapses.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#LennonYH15,https://doi.org/10.3389/fncom.2015.00150 +Kunjan D. Rana,Improving the Nulling Beamformer Using Subspace Suppression.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#RanaHV18,https://doi.org/10.3389/fncom.2018.00035 +Bjorn H. Merker,Cortical Gamma Oscillations: Details of Their Genesis Preclude a Role in Cognition.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#Merker16,https://doi.org/10.3389/fncom.2016.00078 +Brett Thomas Buttliere,Using science and psychology to improve the dissemination and evaluation of scientific work.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Buttliere14,https://doi.org/10.3389/fncom.2014.00082 +Christian Tetzlaff,Analysis of Synaptic Scaling in Combination with Hebbian Plasticity in Several Simple Networks.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#TetzlaffKTW12,https://doi.org/10.3389/fncom.2012.00036 +Kesheng Xu,Hyperpolarization-Activated Current Induces Period-Doubling Cascades and Chaos in a Cold Thermoreceptor Model.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#XuMCQAO17,https://doi.org/10.3389/fncom.2017.00012 +Raoul R. Nigmatullin,Membrane current series monitoring: essential reduction of data points to finite number of stable parameters.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#NigmatullinGS14,https://doi.org/10.3389/fncom.2014.00120 +Jessica L. Slater,Timing Deficits in ADHD: Insights From the Neuroscience of Musical Rhythm.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#SlaterT18,https://doi.org/10.3389/fncom.2018.00051 +Robert John Merrison-Hort,The emergence of two anti-phase oscillatory neural populations in a computational model of the Parkinsonian globus pallidus.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#Merrison-HortB13,https://doi.org/10.3389/fncom.2013.00173 +Michael D. Forrest,Intracellular calcium dynamics permit a Purkinje neuron model to perform toggle and gain computations upon its inputs.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Forrest14,https://doi.org/10.3389/fncom.2014.00086 +Stephan Kratzer,Propofol and Sevoflurane Differentially Modulate Cortical Depolarization following Electric Stimulation of the Ventrobasal Thalamus.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#KratzerMGSKRSKH17,https://doi.org/10.3389/fncom.2017.00109 +Sajad Jafari,Is there any geometrical information in the nervous system?,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#JafariGG13,https://doi.org/10.3389/fncom.2013.00121 +Patrick J. C. May,Temporal binding of sound emerges out of anatomical structure and synaptic dynamics of auditory cortex.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#MayT13,https://doi.org/10.3389/fncom.2013.00152 +Kubra Komek Kirli,Computational study of NMDA conductance and cortical oscillations in schizophrenia.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#KirliCE14,https://doi.org/10.3389/fncom.2014.00133 +Naoki Hiratani,Associative memory model with long-tail-distributed Hebbian synaptic connections.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#HirataniTF13,https://doi.org/10.3389/fncom.2012.00102 +Rosalyn J. Moran,Neural masses and fields in dynamic causal modeling.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#MoranPF13,https://doi.org/10.3389/fncom.2013.00057 +Pascal Grange,Cell-type-specific neuroanatomy of cliques of autism-related genes in the mouse brain.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#GrangeMH15,https://doi.org/10.3389/fncom.2015.00055 +Robbe L. T. Goris,Neural representations that support invariant object recognition.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#GorisB09,https://doi.org/10.3389/neuro.10.003.2009 +Yansong Chua,Effects of Calcium Spikes in the Layer 5 Pyramidal Neuron on Coincidence Detection and Activity Propagation.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ChuaM16,https://doi.org/10.3389/fncom.2016.00076 +Sidney R. Lehky,Population Coding of Visual Space: Modeling.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#LehkyS11,https://doi.org/10.3389/fncom.2010.00155 +Inkeri Välkki,Network-Wide Adaptive Burst Detection Depicts Neuronal Activity with Improved Accuracy.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ValkkiLMKH17,https://doi.org/10.3389/fncom.2017.00040 +Yuichi Katori,Stability analysis of associative memory network composed of stochastic neurons and dynamic synapses.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#KatoriOOA13,https://doi.org/10.3389/fncom.2013.00006 +Cornelis J. Stam,Emergence of Modular Structure in a Large-Scale Brain Network with Interactions between Dynamics and Connectivity.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#StamHWM10,https://doi.org/10.3389/fncom.2010.00133 +Alex Loebel,Multiquantal release underlies the distribution of synaptic efficacies in the neocortex.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#LoebelSHMTR09,https://doi.org/10.3389/neuro.10.027.2009 +Rubin Wang,Energy distribution property and energy coding of a structural neural network.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#WangW14,https://doi.org/10.3389/fncom.2014.00014 +Yasser Roudi,Statistical physics of pairwise probability models.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#RoudiAH09,https://doi.org/10.3389/neuro.10.022.2009 +Michael C. Avery,Improper activation of D1 and D2 receptors leads to excess noise in prefrontal cortex.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#AveryK15,https://doi.org/10.3389/fncom.2015.00031 +Xiaojuan Guo,Characterizing structural association alterations within brain networks in normal aging using Gaussian Bayesian networks.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#GuoWCWZLJY14,https://doi.org/10.3389/fncom.2014.00122 +Masoud Ghodrati,The importance of visual features in generic vs. specialized object recognition: a computational study.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#GhodratiRE14,https://doi.org/10.3389/fncom.2014.00078 +Patrick McClure,Representational Distance Learning for Deep Neural Networks.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#McClureK16,https://doi.org/10.3389/fncom.2016.00131 +Robert Rosenbaum,Pooling and correlated neural activity.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#RosenbaumTJ10,https://doi.org/10.3389/fncom.2010.00009 +Richard T. Gray,Stability constraints on large-scale structural brain networks.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#GrayR13,https://doi.org/10.3389/fncom.2013.00031 +Caitlin L. Banks,Methodological Choices in Muscle Synergy Analysis Impact Differentiation of Physiological Characteristics Following Stroke.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#BanksPMFP17,https://doi.org/10.3389/fncom.2017.00078 +Fábio M. Simões-de-Souza,Electrical responses of three classes of granule cells of the olfactory bulb to synaptic inputs in different dendritic locations.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Simoes-de-SouzaAR14,https://doi.org/10.3389/fncom.2014.00128 +Miguel Aguilera,The situated HKB model: how sensorimotor spatial coupling can alter oscillatory brain dynamics.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#AguileraBSB13,https://doi.org/10.3389/fncom.2013.00117 +Fali Li,Top-Down Disconnectivity in Schizophrenia During P300 Tasks.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#LiWJSPSJZDYX18,https://doi.org/10.3389/fncom.2018.00033 +Dominik Maria Endres,Model selection for the extraction of movement primitives.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#EndresCG13,https://doi.org/10.3389/fncom.2013.00185 +Daniel J. Graham,Routing in the brain.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Graham14,https://doi.org/10.3389/fncom.2014.00044 +Yixin Guo,Basal ganglia modulation of thalamocortical relay in Parkinson's disease and dystonia.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#GuoPWR13,https://doi.org/10.3389/fncom.2013.00124 +Simon O'Connor,Burst firing versus synchrony in a gap junction connected olfactory bulb mitral cell network model.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#OConnorAJ12,https://doi.org/10.3389/fncom.2012.00075 +Matthias H. Hennig,Theoretical models of synaptic short term plasticity.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#Hennig13a,https://doi.org/10.3389/fncom.2013.00154 +Christian Albers,Theta-specific susceptibility in a model of adaptive synaptic plasticity.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#AlbersSP13,https://doi.org/10.3389/fncom.2013.00170 +Sven Jahnke,Propagating synchrony in feed-forward networks.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#JahnkeMT13,https://doi.org/10.3389/fncom.2013.00153 +Otto Braulio García-Garibay,The Müller-Lyer illusion as seen by an artificial neural network.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Garcia-GaribayL15,https://doi.org/10.3389/fncom.2015.00021 +Takashi Nakano,A model-based prediction of the calcium responses in the striatal synaptic spines depending on the timing of cortical and dopaminergic inputs and post-synaptic spikes.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#NakanoYD13,https://doi.org/10.3389/fncom.2013.00119 +Cristian Carmeli,Quantifying network properties in multi-electrode recordings: spatiotemporal characterization and inter-trial variation of evoked gamma oscillations in mouse somatosensory cortex in vitro.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#CarmeliBRS13,https://doi.org/10.3389/fncom.2013.00134 +Douglas L. Jones,A stimulus-dependent spike threshold is an optimal neural coder.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#JonesJR15,https://doi.org/10.3389/fncom.2015.00061 +Lingli Zhou,Signal Transmission of Biological Reaction-Diffusion System by Using Synchronization.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ZhouS17,https://doi.org/10.3389/fncom.2017.00092 +Hafsteinn Einarsson,A high-capacity model for one shot association learning in the brain.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#EinarssonLS14,https://doi.org/10.3389/fncom.2014.00140 +Daniel Ben Dayan Rubin,Long memory life* require complex synapses and limited sparseness.,2007,2007,Front. Comput. Neurosci.,,db/journals/ficn/ficn2007.html#RubinF07,https://doi.org/10.3389/neuro.10.007.2007 +Ryota Kobayashi,Estimation of the synaptic input firing rates and characterization of the stimulation effects in an auditory neuron.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#KobayashiHL15,https://doi.org/10.3389/fncom.2015.00059 +Fikret E. Kapucu,Burst analysis tool for developing neuronal networks exhibiting highly varying action potential dynamics.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#KapucuTMYNH12,https://doi.org/10.3389/fncom.2012.00038 +Hongping Fu,Visual Cortex Inspired CNN Model for Feature Construction in Text Analysis.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#FuNZMC16,https://doi.org/10.3389/fncom.2016.00064 +Daniel de Santos Sierra,Effects of Spike Anticipation on the Spiking Dynamics of Neural Networks.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#SierraSGNV15,https://doi.org/10.3389/fncom.2015.00144 +Marko Wilke,CerebroMatic: A Versatile Toolbox for Spline-Based MRI Template Creation.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#WilkeAHC17,https://doi.org/10.3389/fncom.2017.00005 +Meropi Topalidou,A long journey into reproducible computational neuroscience.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#TopalidouLBR15,https://doi.org/10.3389/fncom.2015.00030 +Fermín Segovia,Distinguishing Parkinson's disease from atypical parkinsonian syndromes using PET data and a computer system based on support vector machines and Bayesian networks.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#SegoviaIGRRL15,https://doi.org/10.3389/fncom.2015.00137 +Qian Wang,Magnetoencephalography in Preoperative Epileptic Foci Localization: Enlightenment from Cognitive Studies.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#WangTL17,https://doi.org/10.3389/fncom.2017.00058 +Gabor Aranyi,Affective Interaction with a Virtual Character Through an fNIRS Brain-Computer Interface.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#AranyiPCPC16,https://doi.org/10.3389/fncom.2016.00070 +Huan Yang 0003,Dependence of Nociceptive Detection Thresholds on Physiological Parameters and Capsaicin-Induced Neuroplasticity: A Computational Study.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#YangMDBG16,https://doi.org/10.3389/fncom.2016.00049 +Michael W. Spratling,Reconciling predictive coding and biased competition models of cortical function.,2008,2008,Front. Comput. Neurosci.,,db/journals/ficn/ficn2008.html#Spratling08,https://doi.org/10.3389/neuro.10.004.2008 +Julio Chapeton,Effects of homeostatic constraints on associative memory storage and synaptic connectivity of cortical circuits.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ChapetonGS15,https://doi.org/10.3389/fncom.2015.00074 +Jean-Baptiste Passot,Coupling internal cerebellar models enhances online adaptation and supports offline consolidation in sensorimotor tasks.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#PassotLA13,https://doi.org/10.3389/fncom.2013.00095 +Linling Li,Corrigendum: Placebo Analgesia Changes Alpha Oscillations Induced by Tonic Muscle Pain: EEG Frequency Analysis Including Data during Pain Evaluation.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#LiWKLYZXQ16a,https://doi.org/10.3389/fncom.2016.00125 +Steven J. Cox,Model Reduction of Strong-Weak Neurons.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#CoxDS14,https://doi.org/10.3389/fncom.2014.00164 +David Eriksson,A Linear Model of Phase-Dependent Power Correlations in Neuronal Oscillations.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#ErikssonVS11,https://doi.org/10.3389/fncom.2011.00034 +Kohei Nakajima,A soft body as a reservoir: case studies in a dynamic model of octopus-inspired soft robotic arm.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#NakajimaHKGCP13,https://doi.org/10.3389/fncom.2013.00091 +Jianfeng Hu,Automated Detection of Driver Fatigue Based on AdaBoost Classifier with EEG Signals.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#Hu17,https://doi.org/10.3389/fncom.2017.00072 +Yuko Yotsumoto,Consolidated learning can be susceptible to gradually-developing interference in prolonged motor learning.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#YotsumotoWCS13,https://doi.org/10.3389/fncom.2013.00069 +John W. Moore,A personal view of the early development of computational neuroscience in the USA.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#Moore10,https://doi.org/10.3389/fncom.2010.00020 +Paul Ferré,Unsupervised Feature Learning With Winner-Takes-All Based STDP.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#FerreMT18,https://doi.org/10.3389/fncom.2018.00024 +Benjamin Staude,Higher-order correlations in non-stationary parallel spike trains: statistical modeling and inference.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#StaudeGR10,https://doi.org/10.3389/fncom.2010.00016 +Mitsuhiro Hayashibe,Synergetic motor control paradigm for optimizing energy efficiency of multijoint reaching via tacit learning.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#HayashibeS14,https://doi.org/10.3389/fncom.2014.00021 +Ari S. Benjamin,Modern Machine Learning as a Benchmark for Fitting Neural Responses.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#BenjaminFTRVCMK18,https://doi.org/10.3389/fncom.2018.00056 +Maciej Jedynak,Cross-frequency transfer in a stochastically driven mesoscopic neuronal model.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#JedynakPG15,https://doi.org/10.3389/fncom.2015.00014 +Jens Kolind,Opposing effects of intrinsic conductance and correlated synaptic input on Vm-fluctuations during network activity.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#KolindHB12,https://doi.org/10.3389/fncom.2012.00040 +Danke Zhang,Nonlinear multiplicative dendritic integration in neuron and network models.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#ZhangLRW13,https://doi.org/10.3389/fncom.2013.00056 +C. C. Alan Fung,Resolution enhancement in neural networks with dynamical synapses.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#FungWLWW13,https://doi.org/10.3389/fncom.2013.00073 +Iris I. A. Groen,Low-level contrast statistics are diagnostic of invariance of natural textures.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#GroenGLS12,https://doi.org/10.3389/fncom.2012.00034 +Michele Migliore,Distributed organization of a brain microcircuit analyzed by three-dimensional modeling: the olfactory bulb.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#MiglioreCHS14,https://doi.org/10.3389/fncom.2014.00050 +Fleur Zeldenrust,Estimating the Information Extracted by a Single Spiking Neuron from a Continuous Input Time Series.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ZeldenrustKWDG17,https://doi.org/10.3389/fncom.2017.00049 +Enric Claverol-Tinturé,Commentary: Feedback stabilizes propagation of synchronous spiking in cortical neural networks.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Claverol-Tinture15,https://doi.org/10.3389/fncom.2015.00071 +Fleur Zeldenrust,Neural Coding With Bursts - Current State and Future Perspectives.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#ZeldenrustWE18,https://doi.org/10.3389/fncom.2018.00048 +Sanne Schoenmakers,Gaussian mixture models and semantic gating improve reconstructions from human brain activity.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#SchoenmakersGGH15,https://doi.org/10.3389/fncom.2014.00173 +Shunta Togo,Empirical Evaluation of Voluntarily Activatable Muscle Synergies.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#TogoI17,https://doi.org/10.3389/fncom.2017.00082 +Jakob H. Macke,Statistical Analysis of Multi-Cell Recordings: Linking Population Coding Models to Experimental Data.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#MackeBB11,https://doi.org/10.3389/fncom.2011.00035 +Oliver W. Layton,Recurrent competition explains temporal effects of attention in MSTd.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#LaytonB12,https://doi.org/10.3389/fncom.2012.00080 +Hiroshi Saito,Bayesian deterministic decision making: a normative account of the operant matching law and heavy-tailed reward history dependency of choices.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#SaitoKOO14,https://doi.org/10.3389/fncom.2014.00018 +Geoffrey Mégardon,Limitations of short range Mexican hat connection for driving target selection in a 2D neural field: activity suppression and deviation from input stimuli.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#MegardonTSG15,https://doi.org/10.3389/fncom.2015.00128 +Corey M. Thibeault,Efficiently passing messages in distributed spiking neural network simulation.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#ThibeaultMOHS13,https://doi.org/10.3389/fncom.2013.00077 +Nelson Cortes,Pulvinar thalamic nucleus allows for asynchronous spike propagation through the cortex.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#CortesV15,https://doi.org/10.3389/fncom.2015.00060 +Mainak Patel,Coding of odors by temporal binding within a model network of the locust antennal lobe.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#PatelRC13,https://doi.org/10.3389/fncom.2013.00050 +Alexander Walther,FOSE: a framework for open science evaluation.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#WaltherB12,https://doi.org/10.3389/fncom.2012.00032 +Nelly Daur,The Stomatogastric Nervous System as a Model for Studying Sensorimotor Interactions in Real-Time Closed-Loop Conditions.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#DaurDMS12,https://doi.org/10.3389/fncom.2012.00013 +Aliaksandr Birukou,Alternatives to Peer Review: Novel Approaches for Research Evaluation.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#BirukouWBCMMORSW11,https://doi.org/10.3389/fncom.2011.00056 +Eli Shlizerman,Data-driven inference of network connectivity for modeling the dynamics of neural codes in the insect antennal lobe.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#ShlizermanRK14,https://doi.org/10.3389/fncom.2014.00070 +Otis Smart,Initial Unilateral Exposure to Deep Brain Stimulation in Treatment-Resistant Depression Patients Alters Spectral Power in the Subcallosal Cingulate.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#SmartCRTRWCEGM18,https://doi.org/10.3389/fncom.2018.00043 +Matthias H. Hennig,Effects of fixational eye movements on retinal ganglion cell responses: a modelling study.,2007,2007,Front. Comput. Neurosci.,,db/journals/ficn/ficn2007.html#HennigW07,https://doi.org/10.3389/neuro.10.002.2007 +Sorinel A. Oprisan,Cocaine-Induced Changes in Low-Dimensional Attractors of Local Field Potentials in Optogenetic Mice.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#OprisanIHTL18,https://doi.org/10.3389/fncom.2018.00002 +Viktor K. Jirsa,Cross-frequency coupling in real and virtual brain networks.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#JirsaM13,https://doi.org/10.3389/fncom.2013.00078 +Alexander Bird,Long-term plasticity determines the postsynaptic response to correlated afferents with multivesicular short-term synaptic depression.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#BirdR14,https://doi.org/10.3389/fncom.2014.00002 +Jordan D. Chambers,Parametric computation predicts a multiplicative interaction between synaptic strength parameters that control gamma oscillations.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#ChambersBDPAPT12,https://doi.org/10.3389/fncom.2012.00053 +Hafsteinn Einarsson,A Model of Fast Hebbian Spike Latency Normalization.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#EinarssonGLS17,https://doi.org/10.3389/fncom.2017.00033 +Su Z. Hong,T-type calcium channels promote predictive homeostasis of input-output relations in thalamocortical neurons of lateral geniculate nucleus.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#HongKF14,https://doi.org/10.3389/fncom.2014.00098 +Matthias Kreuzer,EEG Based Monitoring of General Anesthesia: Taking the Next Steps.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#Kreuzer17,https://doi.org/10.3389/fncom.2017.00056 +Branka Milivojevic,Object Recognition Can Be Viewpoint Dependent or Invariant - It's Just a Matter of Time and Task.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#Milivojevic12,https://doi.org/10.3389/fncom.2012.00027 +Shivendra Tewari,Data and model tango to aid the understanding of astrocyte-neuron signaling.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#TewariP14,https://doi.org/10.3389/fncom.2014.00003 +Daniele Linaro,Inferring Network Dynamics and Neuron Properties from Population Recordings.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#LinaroSM11,https://doi.org/10.3389/fncom.2011.00043 +Weiwei Peng,Pain Related Cortical Oscillations: Methodological Advances and Potential Applications.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#PengT16,https://doi.org/10.3389/fncom.2016.00009 +Pengcheng Zhou,Impact of neuronal heterogeneity on correlated colored noise-induced synchronization.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#ZhouBUE13,https://doi.org/10.3389/fncom.2013.00113 +Naser Mehrabi,Predictive Simulation of Reaching Moving Targets Using Nonlinear Model Predictive Control.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#MehrabiRGM17,https://doi.org/10.3389/fncom.2016.00143 +Erwan Ledoux,Dynamics of Networks of Excitatory and Inhibitory Neurons in Response to Time-Dependent Inputs.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#LedouxB11,https://doi.org/10.3389/fncom.2011.00025 +Mohammad Reza Paraan,A more realistic quantum mechanical model of conscious perception during binocular rivalry.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#ParaanBG14,https://doi.org/10.3389/fncom.2014.00015 +Gustavo Deco,How anatomy shapes dynamics: a semi-analytical study of the brain at rest by a simple spin model.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#DecoSJ12,https://doi.org/10.3389/fncom.2012.00068 +Elmar A. Rückert,Learned parametrized dynamic movement primitives with shared synergies for controlling robotic and musculoskeletal systems.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#Ruckertd13,https://doi.org/10.3389/fncom.2013.00138 +Max Garagnani,A Spiking Neurocomputational Model of High-Frequency Oscillatory Brain Responses to Words and Pseudowords.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#GaragnaniLTWP17,https://doi.org/10.3389/fncom.2016.00145 +Michele Tagliabue,A modular theory of multisensory integration for motor control.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#TagliabueM14,https://doi.org/10.3389/fncom.2014.00001 +Mario Dipoppa,Correlations in background activity control persistent state stability and allow execution of working memory tasks.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#DipoppaG13,https://doi.org/10.3389/fncom.2013.00139 +Seif Eldawlatly,Temporal precision in population - but not individual neuron - dynamics reveals rapid experience-dependent plasticity in the rat barrel cortex.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#EldawlatlyO14,https://doi.org/10.3389/fncom.2014.00155 +Pragathi P. Balasubramani,Using a Simple Neural Network to Delineate Some Principles of Distributed Economic Choice.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#BalasubramaniMH18,https://doi.org/10.3389/fncom.2018.00022 +Martin Dinov,Novel Modeling of Task vs. Rest Brain State Predictability Using a Dynamic Time Warping Spectrum: Comparisons and Contrasts with Other Standard Measures of Brain Dynamics.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#DinovLSSFL16,https://doi.org/10.3389/fncom.2016.00046 +Sara Ashley Steele,An alternating renewal process describes the buildup of perceptual segregation.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#SteeleTR15,https://doi.org/10.3389/fncom.2014.00166 +Alberto Testolin,Probabilistic Models and Generative Neural Networks: Towards an Unified Framework for Modeling Normal and Impaired Neurocognitive Functions.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#TestolinZ16,https://doi.org/10.3389/fncom.2016.00073 +Mainak J. Patel,Effects of Adaptation on Discrimination of Whisker Deflection Velocity and Angular Direction in a Model of the Barrel Cortex.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#Patel18,https://doi.org/10.3389/fncom.2018.00045 +Mubashir Hassan,Molecular Docking and Dynamic Simulation of AZD3293 and Solanezumab Effects Against BACE1 to Treat Alzheimer's Disease.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#HassanSSAZM18,https://doi.org/10.3389/fncom.2018.00034 +Tim Waegeman,MACOP modular architecture with control primitives.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#WaegemanHS13,https://doi.org/10.3389/fncom.2013.00099 +Ashok Chandrashekar,Derivation of a Novel Efficient Supervised Learning Algorithm from Cortical-Subcortical Loops.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#ChandrashekarG12,https://doi.org/10.3389/fncom.2011.00050 +Yuanyuan Mi,Neural Computations in a Dynamical System with Multiple Time Scales.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#MiLW16,https://doi.org/10.3389/fncom.2016.00096 +Cedric E. Ginestet,Statistical network analysis for functional MRI: summary networks and group comparisons.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#GinestetFS14,https://doi.org/10.3389/fncom.2014.00051 +Arpan Banerjee,Parametric models to relate spike train and LFP dynamics with neural information processing.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#BanerjeeDP12,https://doi.org/10.3389/fncom.2012.00051 +Hanchen Xiong,Diversity priors for learning early visual features.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#XiongRSP15,https://doi.org/10.3389/fncom.2015.00104 +Paul R. MacNeilage,Quantification of Head Movement Predictability and Implications for Suppression of Vestibular Input during Locomotion.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#MacNeilageG17,https://doi.org/10.3389/fncom.2017.00047 +Mario Martín,Markovian Analysis of the Sequential Behavior of the Spontaneous Spinal Cord Dorsum Potentials Induced by Acute Nociceptive Stimulation in the Anesthetized Cat.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#MartinBECCGCR17,https://doi.org/10.3389/fncom.2017.00032 +Hrishikesh Rao,Neural Network Evidence for the Coupling of Presaccadic Visual Remapping to Predictive Eye Position Updating.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#RaoJSVRS16,https://doi.org/10.3389/fncom.2016.00052 +Harilal Parasuram,Computational Modeling of Single Neuron Extracellular Electric Potentials and Network Local Field Potentials using LFPsim.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ParasuramNDHND16,https://doi.org/10.3389/fncom.2016.00065 +Sunhyoung Han,Object recognition with hierarchical discriminant saliency networks.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#HanV14,https://doi.org/10.3389/fncom.2014.00109 +Michael J. Rempe,Cerebral lactate dynamics across sleep/wake cycles.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#RempeW15,https://doi.org/10.3389/fncom.2014.00174 +James Yu-Chang Liao,Velocity neurons improve performance more than goal or position neurons do in a simulated closed-loop BCI arm-reaching task.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#LiaoK15,https://doi.org/10.3389/fncom.2015.00084 +Zoran Tiganj,Influence of extracellular oscillations on neural communication: a computational perspective.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#TiganjCM14,https://doi.org/10.3389/fncom.2014.00009 +Hugo Gabriel Eyherabide,Time and Category Information in Pattern-Based Codes.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#EyherabideS10,https://doi.org/10.3389/fncom.2010.00145 +Fabian Schönfeld,Modeling place field activity with hierarchical slow feature analysis.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#SchonfeldW15,https://doi.org/10.3389/fncom.2015.00051 +Bernhard A. Kaplan,Anisotropic connectivity implements motion-based prediction in a spiking neural network.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#KaplanLMP13,https://doi.org/10.3389/fncom.2013.00112 +Shimon Edelman,Renewing the respect for similarity.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#EdelmanS12,https://doi.org/10.3389/fncom.2012.00045 +Qifu Li,Functional Network Connectivity Patterns between Idiopathic Generalized Epilepsy with Myoclonic and Absence Seizures.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#LiCWCMHC17,https://doi.org/10.3389/fncom.2017.00038 +Shivakeshavan Ratnadurai-Giridharan,Emergent gamma synchrony in all-to-all interneuronal networks.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Ratnadurai-Giridharan15,https://doi.org/10.3389/fncom.2015.00127 +Moshe Abeles,Compositionality in neural control: an interdisciplinary study of scribbling movements in primates.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#AbelesDFGHT13,https://doi.org/10.3389/fncom.2013.00103 +Damian Kelty-Stephen,Astronomical apology for fractal analysis: spectroscopy's place in the cognitive neurosciences.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Kelty-Stephen14,https://doi.org/10.3389/fncom.2014.00016 +Michael H. Herzog,Why vision is not both hierarchical and feedforward.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#HerzogC14,https://doi.org/10.3389/fncom.2014.00135 +Jyotika Bahuguna,Homologous Basal Ganglia Network Models in Physiological and Parkinsonian Conditions.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#BahugunaTKKM17,https://doi.org/10.3389/fncom.2017.00079 +Susanne Kunkel,Limits to the Development of Feed-Forward Structures in Large Recurrent Neuronal Networks.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#KunkelDM11,https://doi.org/10.3389/fncom.2010.00160 +Elissa Michele Aminoff,Applying artificial vision models to human scene understanding.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#AminoffTSCMGT15,https://doi.org/10.3389/fncom.2015.00008 +Ricardo Pio Monti,Decoding Time-Varying Functional Connectivity Networks via Linear Graph Embedding Methods.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#MontiLHLAM17,https://doi.org/10.3389/fncom.2017.00014 +Diego Lozano-Soldevilla,Neuronal Oscillations with Non-sinusoidal Morphology Produce Spurious Phase-to-Amplitude Coupling and Directionality.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#Lozano-Soldevilla16,https://doi.org/10.3389/fncom.2016.00087 +Jesus Minguillon,Stress Assessment by Prefrontal Relative Gamma.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#MinguillonLP16,https://doi.org/10.3389/fncom.2016.00101 +Benjamin Pfeuty,Inhibition potentiates the synchronizing action of electrical synapses.,2007,2007,Front. Comput. Neurosci.,,db/journals/ficn/ficn2007.html#PfeutyGMH07,https://doi.org/10.3389/neuro.10.008.2007 +Bakul Gohel,Evaluation of Phase-Amplitude Coupling in Resting State Magnetoencephalographic Signals: Effect of Surrogates and Evaluation Approach.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#GohelLKAKKK16,https://doi.org/10.3389/fncom.2016.00120 +Andrew J. Parker,A micro-pool model for decision-related signals in visual cortical areas.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#Parker13,https://doi.org/10.3389/fncom.2013.00115 +Nicolangelo Iannella,Spike Timing-Dependent Plasticity as the Origin of the Formation of Clustered Synaptic Efficacy Engrams.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#IannellaLT10,https://doi.org/10.3389/fncom.2010.00021 +Foteini Protopapa,Granger causality analysis reveals distinct spatio-temporal connectivity patterns in motor and perceptual visuo-spatial working memory.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#ProtopapaSES14,https://doi.org/10.3389/fncom.2014.00146 +Judith C. Peters,Modeling invariant object processing based on tight integration of simulated and empirical data in a Common Brain Space.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#PetersRG12,https://doi.org/10.3389/fncom.2012.00012 +Carolyn Jeane Perry,Feature integration and object representations along the dorsal stream visual hierarchy.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#PerryF14,https://doi.org/10.3389/fncom.2014.00084 +Naoya Yoshikawa,Intermittent Feedback-Control Strategy for Stabilizing Inverted Pendulum on Manually Controlled Cart as Analogy to Human Stick Balancing.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#YoshikawaSKN16,https://doi.org/10.3389/fncom.2016.00034 +Xian-Shi Zhang,A Retina Inspired Model for Enhancing Visibility of Hazy Images.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ZhangGLL15,https://doi.org/10.3389/fncom.2015.00151 +James M. Bower,"The 40-year history of modeling active dendrites in cerebellar Purkinje cells: emergence of the first single cell ""community model"".",2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Bower15,https://doi.org/10.3389/fncom.2015.00129 +Dmitri V. Krioukov,Brain theory.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Krioukov14,https://doi.org/10.3389/fncom.2014.00114 +Daniel Bush,Spike-timing dependent plasticity and the cognitive map.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#BushPHO10,https://doi.org/10.3389/fncom.2010.00142 +Richard F. Betzel,Synchronization dynamics and evidence for a repertoire of network states in resting EEG.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#BetzelEAOHS12,https://doi.org/10.3389/fncom.2012.00074 +Jaroslav Hlinka,On the danger of detecting network states in white noise.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#HlinkaH15,https://doi.org/10.3389/fncom.2015.00011 +Xiaofan Zhang,Dynamic trajectory of multiple single-unit activity during working memory task in rats.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ZhangYB015,https://doi.org/10.3389/fncom.2015.00117 +Belén Sancristóbal,Emergent bimodal firing patterns implement different encoding strategies during gamma-band oscillations.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#SancristobalVSG13,https://doi.org/10.3389/fncom.2013.00018 +Viviana Culmone,Progressive effect of beta amyloid peptides accumulation on CA1 pyramidal neurons: a model study suggesting possible treatments.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#CulmoneM12,https://doi.org/10.3389/fncom.2012.00052 +Pravat K. Mandal,A Comprehensive Review of Magnetoencephalography (MEG) Studies for Brain Functionality in Healthy Aging and Alzheimer's Disease (AD).,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#MandalBTS18,https://doi.org/10.3389/fncom.2018.00060 +Masafumi Oizumi,Functional Differences between Global Pre- and Postsynaptic Inhibition in the Drosophila Olfactory Circuit.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#OizumiSKO12,https://doi.org/10.3389/fncom.2012.00014 +Andrew Thwaites,Tracking cortical entrainment in neural activity: auditory processes in human temporal cortex.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ThwaitesNFPBM15,https://doi.org/10.3389/fncom.2015.00005 +Birgit Kriener,How pattern formation in ring networks of excitatory and inhibitory spiking neurons depends on the input current regime.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#KrienerHRDE14,https://doi.org/10.3389/fncom.2013.00187 +Florence I. Kleberg,Excitatory and inhibitory STDP jointly tune feedforward neural circuits to selectively propagate correlated spiking activity.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#KlebergFG14,https://doi.org/10.3389/fncom.2014.00053 +Andreas Knoblauch,Does Spike-Timing-Dependent Synaptic Plasticity Couple or Decouple Neurons Firing in Synchrony?,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#KnoblauchHGKP12,https://doi.org/10.3389/fncom.2012.00055 +Bin Min,Effects of Firing Variability on Network Structures with Spike-Timing-Dependent Plasticity.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#MinZC18,https://doi.org/10.3389/fncom.2018.00001 +Diogo Santos Pata,Size Matters: How Scaling Affects the Interaction between Grid and Border Cells.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#PataZLV17,https://doi.org/10.3389/fncom.2017.00065 +Dana H. Ballard,Dual Roles for Spike Signaling in Cortical Neural Populations.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#BallardJ11,https://doi.org/10.3389/fncom.2011.00022 +Cristiano Alessandro,Muscle synergies in neuroscience and robotics: from input-space to task-space perspectives.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#AlessandroDNPB13,https://doi.org/10.3389/fncom.2013.00043 +Walter Glannon,Philosophical reflections on therapeutic brain stimulation.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Glannon14,https://doi.org/10.3389/fncom.2014.00054 +Liqiong Zhao,Synchronization from Second Order Network Connectivity Statistics.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#ZhaoBNN11,https://doi.org/10.3389/fncom.2011.00028 +Miguel C. Soriano,Minimal approach to neuro-inspired information processing.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#SorianoBEMF15,https://doi.org/10.3389/fncom.2015.00068 +Vadim Axelrod,Commentary: When the brain takes a break: a model-based analysis of mind wandering.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#AxelrodT15,https://doi.org/10.3389/fncom.2015.00083 +Nelson Cortes,The Role of Pulvinar in the Transmission of Information in the Visual Hierarchy.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#CortesV12,https://doi.org/10.3389/fncom.2012.00029 +Sungwoo Ahn,Potential Mechanisms and Functions of Intermittent Neural Synchronization.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#AhnR17,https://doi.org/10.3389/fncom.2017.00044 +Ryan Thomas Philips,The mapping of eccentricity and meridional angle onto orthogonal axes in the primary visual cortex: an activity-dependent developmental model.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#PhilipsC15,https://doi.org/10.3389/fncom.2015.00003 +Robert Sinclair,Do rational numbers play a role in selection for stochasticity?,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Sinclair14,https://doi.org/10.3389/fncom.2014.00113 +Danilo Jimenez Rezende,Stochastic variational learning in recurrent spiking networks.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#RezendeG14,https://doi.org/10.3389/fncom.2014.00038 +Karl P. Dockendorf,Learning and prospective recall of noisy spike pattern episodes.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#DockendorfS13,https://doi.org/10.3389/fncom.2013.00080 +Gerold Baier,Understanding Epileptiform After-Discharges as Rhythmic Oscillatory Transients.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#BaierTW17,https://doi.org/10.3389/fncom.2017.00025 +Gabriel Kreiman,Nine Criteria for a Measure of Scientific Output.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#KreimanM11,https://doi.org/10.3389/fncom.2011.00048 +Michael G. Metzen,Burst Firing in the Electrosensory System of Gymnotiform Weakly Electric Fish: Mechanisms and Functional Roles.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#MetzenKC16,https://doi.org/10.3389/fncom.2016.00081 +Xia Wu,Bayesian network analysis revealed the connectivity difference of the default mode network from the resting-state to task-state.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#WuYYL14,https://doi.org/10.3389/fncom.2014.00118 +Pierre Yger,Models of Metaplasticity: A Review of Concepts.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#YgerG15,https://doi.org/10.3389/fncom.2015.00138 +Harel Z. Shouval,Spike Timing Dependent Plasticity: A Consequence of More Fundamental Learning Rules.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#ShouvalWW10,https://doi.org/10.3389/fncom.2010.00019 +Max Berniker,Deep networks for motor control functions.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#BernikerK15,https://doi.org/10.3389/fncom.2015.00032 +Lei Jiang,Spatial-Temporal Feature Analysis on Single-Trial Event Related Potential for Rapid Face Identification.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#JiangWCW017,https://doi.org/10.3389/fncom.2017.00106 +Hideaki Yamamoto,Effective Subnetwork Topology for Synchronizing Interconnected Networks of Coupled Phase Oscillators.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#YamamotoKSHN18,https://doi.org/10.3389/fncom.2018.00017 +Shigeru Shinomoto,Deciphering Elapsed Time and Predicting Action Timing from Neuronal Population Signals.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#ShinomotoOMMSMT11,https://doi.org/10.3389/fncom.2011.00029 +Raphaël Holca-Lamarre,Models of Acetylcholine and Dopamine Signals Differentially Improve Neural Representations.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#Holca-LamarreLO17,https://doi.org/10.3389/fncom.2017.00054 +Marcelo Bertalmío,From image processing to computational neuroscience: a neural model based on histogram equalization.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Bertalmio14,https://doi.org/10.3389/fncom.2014.00071 +Cornelis van de Kamp,Interfacing sensory input with motor output: does the control architecture converge to a serial process along a single channel?,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#KampGGLL13,https://doi.org/10.3389/fncom.2013.00055 +Mark Rowan,Information-Selectivity of Beta-Amyloid Pathology in an Associative Memory Model.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#Rowan12,https://doi.org/10.3389/fncom.2012.00002 +Denggui Fan,Combined Effects of Feedforward Inhibition and Excitation in Thalamocortical Circuit on the Transitions of Epileptic Seizures.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#FanDWL17,https://doi.org/10.3389/fncom.2017.00059 +Joel Kaardal,A Low-Rank Method for Characterizing High-Level Neural Computations.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#KaardalTS17,https://doi.org/10.3389/fncom.2017.00068 +Andrés Ortiz,Exploratory graphical models of functional and structural connectivity patterns for Alzheimer's Disease diagnosis.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#OrtizMIGR15,https://doi.org/10.3389/fncom.2015.00132 +Nobuhiko Wagatsuma,Layer-Dependent Attentional Processing by Top-down Signals in a Visual Cortical Microcircuit Model.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#WagatsumaPDF11,https://doi.org/10.3389/fncom.2011.00031 +Naoki Kogo,Is predictive coding theory articulated enough to be testable?,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#KogoT15,https://doi.org/10.3389/fncom.2015.00111 +Birgit Kriener,Dynamics of self-sustained asynchronous-irregular activity in random networks of spiking neurons with strong synapses.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#KrienerETPGE14,https://doi.org/10.3389/fncom.2014.00136 +Oltman Ottes de Wiljes,Modeling spontaneous activity across an excitable epithelium: Support for a coordination scenario of early neural evolution.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#WiljesEBK15,https://doi.org/10.3389/fncom.2015.00110 +Katie A. Ferguson,Experimentally constrained CA1 fast-firing parvalbumin-positive interneuron network models exhibit sharp transitions into coherent high frequency rhythms.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#FergusonSHAW13,https://doi.org/10.3389/fncom.2013.00144 +Vladislav Volman,Computational models of neuron-astrocyte interaction in epilepsy.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#VolmanBS12,https://doi.org/10.3389/fncom.2012.00058 +Ignacio álvarez Illán,Spatial component analysis of MRI data for Alzheimer's disease diagnosis: a Bayesian network approach.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#IllanGRM14,https://doi.org/10.3389/fncom.2014.00156 +Hamed Seyed-Allaei,Phase diagram of spiking neural networks.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Seyed-Allaei15,https://doi.org/10.3389/fncom.2015.00019 +Wenqiong Xue,A multimodal approach for determining brain networks by jointly modeling functional and structural connectivity.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#XueBPM15,https://doi.org/10.3389/fncom.2015.00022 +Yiheng Tu,Decoding Subjective Intensity of Nociceptive Pain from Pre-stimulus and Post-stimulus Brain Activities.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#TuTBH016,https://doi.org/10.3389/fncom.2016.00032 +Siddharth S. Sivakumar,Spherical Harmonics Reveal Standing EEG Waves and Long-Range Neural Synchronization during Non-REM Sleep.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#SivakumarNG16,https://doi.org/10.3389/fncom.2016.00059 +Qawi K. Telesford,Editorial: Complexity and emergence in brain network analyses.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#TelesfordSK15,https://doi.org/10.3389/fncom.2015.00065 +Anna Lisa Mangia,Transcallosal Inhibition during Motor Imagery: Analysis of a Neural Mass Model.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#MangiaULC17,https://doi.org/10.3389/fncom.2017.00057 +Emanuele Olivetti,Classification-Based Prediction of Effective Connectivity Between Timeseries With a Realistic Cortical Network Model.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#OlivettiBBPA18,https://doi.org/10.3389/fncom.2018.00038 +Jianbo Gao,Multiscale entropy analysis of biological signals: a fundamental bi-scaling law.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#GaoHLC15,https://doi.org/10.3389/fncom.2015.00064 +Yali Amit,Recurrent network of perceptrons with three state synapses achieves competitive classification on real inputs.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#AmitW12,https://doi.org/10.3389/fncom.2012.00039 +Maria Constantinou,Bursting Neurons in the Hippocampal Formation Encode Features of LFP Rhythms.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ConstantinouCEK16,https://doi.org/10.3389/fncom.2016.00133 +Ross A. Hammond,A model of food reward learning with dynamic reward exposure.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#HammondOFDLD12,https://doi.org/10.3389/fncom.2012.00082 +Mina Ranjbaran,Hybrid model of the context dependent vestibulo-ocular reflex: implications for vergence-version interactions.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#RanjbaranG15,https://doi.org/10.3389/fncom.2015.00006 +Grazia Ietto-Gillies,The evaluation of research papers in the XXI century. The Open Peer Discussion system of the World Economics Association.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#Ietto-Gillies12,https://doi.org/10.3389/fncom.2012.00054 +Rajesh P. N. Rao,Decision Making Under Uncertainty: A Neural Model Based on Partially Observable Markov Decision Processes.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#Rao10,https://doi.org/10.3389/fncom.2010.00146 +Tiina Manninen,Computational Models for Calcium-Mediated Astrocyte Functions.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#ManninenHL18,https://doi.org/10.3389/fncom.2018.00014 +Andrey Babichev,A Topological Model of the Hippocampal Cell Assembly Network.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#BabichevJMD16,https://doi.org/10.3389/fncom.2016.00050 +John Suckling,A Winding Road: Alzheimer's Disease Increases Circuitous Functional Connectivity Pathways.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#SucklingSCTSWRO15,https://doi.org/10.3389/fncom.2015.00140 +Massimiliano Zanin,The ACE Brain.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ZaninP16,https://doi.org/10.3389/fncom.2016.00122 +Daniel Soudry,History-Dependent Dynamics in a Generic Model of Ion Channels - An Analytic Study.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#SoudryM10,https://doi.org/10.3389/fncom.2010.00003 +Corey M. Thibeault,Using a hybrid neuron in physiologically inspired models of the basal ganglia.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#ThibeaultS13,https://doi.org/10.3389/fncom.2013.00088 +Andrea K. Barreiro,When do microcircuits produce beyond-pairwise correlations?,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#BarreiroGRS14,https://doi.org/10.3389/fncom.2014.00010 +Takumi Sase,Bifurcation Analysis on Phase-Amplitude Cross-Frequency Coupling in Neural Networks with Dynamic Synapses.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#SaseKKA17,https://doi.org/10.3389/fncom.2017.00018 +Mikhail I. Rabinovich,Robust Transient Dynamics and Brain Functions.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#RabinovichV11,https://doi.org/10.3389/fncom.2011.00024 +Thomas Bührmann,Spinal circuits can accommodate interaction torques during multijoint limb movements.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#BuhrmannP14,https://doi.org/10.3389/fncom.2014.00144 +Umut Güçlü,Modeling the Dynamics of Human Brain Activity with Recurrent Neural Networks.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#GucluG17,https://doi.org/10.3389/fncom.2017.00007 +Guiyeom Kang,Effects of antidromic and orthodromic activation of STN afferent axons during DBS in Parkinson's disease: a simulation study.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#KangL14,https://doi.org/10.3389/fncom.2014.00032 +Steve N'Guyen,Saccade learning with concurrent cortical and subcortical basal ganglia loops.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#NGuyenTG14,https://doi.org/10.3389/fncom.2014.00048 +Mattia Rigotti,Internal Representation of Task Rules by Recurrent Dynamics: The Importance of the Diversity of Neural Responses.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#RigottiRWF10,https://doi.org/10.3389/fncom.2010.00024 +Richard Naud,Spike-timing prediction in cortical neurons with active dendrites.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#NaudBG14,https://doi.org/10.3389/fncom.2014.00090 +Ran Manor,Convolutional Neural Network for Multi-Category Rapid Serial Visual Presentation BCI.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ManorG15,https://doi.org/10.3389/fncom.2015.00146 +Bedeho Mesghina Wolde Mender,A self-organizing model of perisaccadic visual receptive field dynamics in primate visual and oculomotor system.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#MenderS15,https://doi.org/10.3389/fncom.2015.00017 +Mehdi Bayati,Self-organization of synchronous activity propagation in neuronal networks driven by local excitation.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#BayatiVAC15,https://doi.org/10.3389/fncom.2015.00069 +Tyler D. Bancroft,TMS-induced neural noise in sensory cortex interferes with short-term memory storage in prefrontal cortex.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#BancroftHHS14,https://doi.org/10.3389/fncom.2014.00023 +Mingming Chen,Control of Absence Seizures by the Thalamic Feed-Forward Inhibition.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ChenGXY17,https://doi.org/10.3389/fncom.2017.00031 +Ana Bengoetxea,Physiological modules for generating discrete and rhythmic movements: component analysis of EMG signals.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#BengoetxeaLHCDC15,https://doi.org/10.3389/fncom.2014.00169 +Fatemeh Yavari,A hypothesis on the role of perturbation size on the human sensorimotor adaptation.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#YavariTD14,https://doi.org/10.3389/fncom.2014.00028 +William C. Lennon Jr.,A spiking network model of cerebellar Purkinje cells and molecular layer interneurons exhibiting irregular firing.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#LennonHY14,https://doi.org/10.3389/fncom.2014.00157 +Niru Maheswaranathan,Emergent bursting and synchrony in computer simulations of neuronal cultures.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#MaheswaranathanFVH12,https://doi.org/10.3389/fncom.2012.00015 +Hafeez Ullah Amin,Classification of EEG Signals Based on Pattern Recognition Approach.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#AminMSSM17,https://doi.org/10.3389/fncom.2017.00103 +Hugo Angleys,The Effects of Capillary Transit Time Heterogeneity (CTH) on the Cerebral Uptake of Glucose and Glucose Analogs: Application to FDG and Comparison to Oxygen Uptake.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#AngleysJO16,https://doi.org/10.3389/fncom.2016.00103 +Alexandre Foncelle,Modulation of Spike-Timing Dependent Plasticity: Towards the Inclusion of a Third Factor in Computational Models.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#FoncelleMJVBBV18,https://doi.org/10.3389/fncom.2018.00049 +Tristan James Webb,Deformation-specific and deformation-invariant visual object recognition: pose vs. identity recognition of people and deforming objects.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#WebbR14,https://doi.org/10.3389/fncom.2014.00037 +Omid Rezai,Modeling the shape hierarchy for visually guided grasping.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#RezaiKMST14,https://doi.org/10.3389/fncom.2014.00132 +Alexander Spröwitz,Kinematic primitives for walking and trotting gaits of a quadruped robot with compliant legs.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#SprowitzATI14,https://doi.org/10.3389/fncom.2014.00027 +Melanie Krüger,The Propagation of Movement Variability in Time: A Methodological Approach for Discrete Movements with Multiple Degrees of Freedom.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#KrugerSE17,https://doi.org/10.3389/fncom.2017.00093 +Charles Capaday,Linear summation of outputs in a balanced network model of motor cortex.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#CapadayV15,https://doi.org/10.3389/fncom.2015.00063 +Tanushree B. Luke,Macroscopic complexity from an autonomous network of networks of theta neurons.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#LukeBS14,https://doi.org/10.3389/fncom.2014.00145 +Saeed Reza Kheradpisheh,Humans and Deep Networks Largely Agree on Which Kinds of Variation Make Object Recognition Harder.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#KheradpishehGGM16,https://doi.org/10.3389/fncom.2016.00092 +Oliver Schoppe,Measuring the Performance of Neural Models.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#SchoppeHWKS16,https://doi.org/10.3389/fncom.2016.00010 +Liron Z. Gruber,Perceptual Dominance in Brief Presentations of Mixed Images: Human Perception vs. Deep Neural Networks.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#GruberHBI18,https://doi.org/10.3389/fncom.2018.00057 +Bojan Mihaljevic,Multi-dimensional classification of GABAergic interneurons with Bayesian network-modeled label uncertainty.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#MihaljevicBBDL14,https://doi.org/10.3389/fncom.2014.00150 +John H. C. Palmer,Associative learning of classical conditioning as an emergent property of spatially extended spiking neural circuits with synaptic plasticity.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#PalmerG14,https://doi.org/10.3389/fncom.2014.00079 +Shirin Mahdavi,Modeling studies for designing transcranial direct current stimulation protocol in Alzheimer's disease.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#MahdaviYGT14,https://doi.org/10.3389/fncom.2014.00072 +Magteld Zeitler,Anti-kindling Induced by Two-Stage Coordinated Reset Stimulation with Weak Onset Intensity.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ZeitlerT16,https://doi.org/10.3389/fncom.2016.00044 +Marco Santello,Neural bases of hand synergies.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#SantelloBJ13,https://doi.org/10.3389/fncom.2013.00023 +Maren Westkott,A Comprehensive Account of Sound Sequence Imitation in the Songbird.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#WestkottP16,https://doi.org/10.3389/fncom.2016.00071 +Deepak Khosla,A neuromorphic system for video object recognition.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#KhoslaCK14,https://doi.org/10.3389/fncom.2014.00147 +Tristan Matthews,The Importance of Spatial Visual Scene Parameters in Predicting Optimal Cone Sensitivities in Routinely Trichromatic Frugivorous Old-World Primates.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#MatthewsOCC18,https://doi.org/10.3389/fncom.2018.00015 +Peter U. Diehl,Factorized Computation: What the Neocortex Can Tell Us About the Future of Computing.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#DiehlMBC18,https://doi.org/10.3389/fncom.2018.00054 +Bocheng Bao,Coexisting Behaviors of Asymmetric Attractors in Hyperbolic-Type Memristor based Hopfield Neural Network.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#BaoQXCWY17,https://doi.org/10.3389/fncom.2017.00081 +Zhenhu Liang,EEG entropy measures in anesthesia.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#LiangWSLVSHL15,https://doi.org/10.3389/fncom.2015.00016 +Si Wu,Neural information processing with dynamical synapses.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#WuWT13,https://doi.org/10.3389/fncom.2013.00188 +Fang Han,Determine Neuronal Tuning Curves by Exploring Optimum Firing Rate Distribution for Information Efficiency.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#HanWF17,https://doi.org/10.3389/fncom.2017.00010 +Razvan V. Florian,Aggregating post-publication peer reviews and ratings.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#Florian12,https://doi.org/10.3389/fncom.2012.00031 +Yanqing Chen,Mechanisms of Winner-Take-All and Group Selection in Neuronal Spiking Networks.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#Chen17,https://doi.org/10.3389/fncom.2017.00020 +Andrea d'Avella,Editorial: Modularity in motor control: from muscle synergies to cognitive action representation.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#dAvellaGISF15,https://doi.org/10.3389/fncom.2015.00126 +Nathan F. Lepora,Sensory Prediction or Motor Control? Application of Marr-Albus Type Models of Cerebellar Function to Classical Conditioning.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#LeporaPYD10,https://doi.org/10.3389/fncom.2010.00140 +Julie A. Wall,Spiking neural network connectivity and its potential for temporal sensory processing and variable binding.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#WallG13,https://doi.org/10.3389/fncom.2013.00182 +Marek Rudnicki,High Entrainment Constrains Synaptic Depression Levels of an In vivo Globular Bushy Cell Model.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#RudnickiH17,https://doi.org/10.3389/fncom.2017.00016 +Ido Zelman,Kinematic decomposition and classification of octopus arm movements.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#ZelmanTYHHF13,https://doi.org/10.3389/fncom.2013.00060 +Narayan Srinivasa,Stable learning of functional maps in self-organizing spiking neural networks with continuous synaptic plasticity.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#SrinivasaJ13,https://doi.org/10.3389/fncom.2013.00010 +Elmar A. Rückert,Learned graphical models for probabilistic planning provide a new class of movement primitives.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#RuckertNTM13,https://doi.org/10.3389/fncom.2012.00097 +Guoqi Li,Hierarchical Chunking of Sequential Memory on Neuromorphic Architecture with Reduced Synaptic Plasticity.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#LiDWWZZLSJS16,https://doi.org/10.3389/fncom.2016.00136 +Claudia Casellato,Distributed cerebellar plasticity implements generalized multiple-scale memory components in real-robot sensorimotor tasks.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#CasellatoAGFDP15,https://doi.org/10.3389/fncom.2015.00024 +Sean L. Simpson,A permutation testing framework to compare groups of brain networks.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#SimpsonLHML13,https://doi.org/10.3389/fncom.2013.00171 +Christian Kempgens,Set-size effects for sampled shapes: experiments and model.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#KempgensLO13,https://doi.org/10.3389/fncom.2013.00067 +Mira Guise,Enhanced polychronization in a spiking network with metaplasticity.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#GuiseKB15,https://doi.org/10.3389/fncom.2015.00009 +Roberto F. Galán,Analysis and Modeling of Ensemble Recordings from Respiratory Pre-Motor Neurons Indicate Changes in Functional Network Architecture after Acute Hypoxia.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#GalanDB10,https://doi.org/10.3389/fncom.2010.00131 +Stacie A. Chvatal,Common muscle synergies for balance and walking.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#ChvatalT13,https://doi.org/10.3389/fncom.2013.00048 +John J. Wade,Biophysically based computational models of astrocyte ~ neuron coupling and their functional significance.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#WadeMHCK13,https://doi.org/10.3389/fncom.2013.00044 +Michael E. Hasselmo,A Handbook for Modeling Hippocampal Circuits.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#Hasselmo11,https://doi.org/10.3389/fncom.2011.00002 +Felix Patzelt,Self-organized critical noise amplification in human closed loop control.,2007,2007,Front. Comput. Neurosci.,,db/journals/ficn/ficn2007.html#PatzeltREP07,https://doi.org/10.3389/neuro.10.004.2007 +Evgeniy Bart,Invariant object recognition based on extended fragments.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#BartH12a,https://doi.org/10.3389/fncom.2012.00056 +Fady Alnajjar,Muscle synergy space: learning model to create an optimal muscle synergy.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#AlnajjarWKS13,https://doi.org/10.3389/fncom.2013.00136 +Friedl De Groote,Task constraints and minimization of muscle effort result in a small number of muscle synergies during gait.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#GrooteJD14,https://doi.org/10.3389/fncom.2014.00115 +Carl Y. Saab,Thalamic Bursts and the Epic Pain Model.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#SaabB17,https://doi.org/10.3389/fncom.2016.00147 +Cristiano Alessandro,A computational analysis of motor synergies by dynamic response decomposition.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#AlessandroCd14,https://doi.org/10.3389/fncom.2013.00191 +Si Li,Coordinated Alpha and Gamma Control of Muscles and Spindles in Movement and Posture.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#LiZHHRNL15,https://doi.org/10.3389/fncom.2015.00122 +Mark R. Witcher,Astroglial Networks and Implications for Therapeutic Neuromodulation of Epilepsy.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#WitcherE12,https://doi.org/10.3389/fncom.2012.00061 +Aurel A. Lazar,Volterra dendritic stimulus processors and biophysical spike generators with intrinsic noise sources.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#LazarZ14,https://doi.org/10.3389/fncom.2014.00095 +Jacob G. Martin,Modeling multisensory enhancement with self-organizing maps.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#MartinMA09,https://doi.org/10.3389/neuro.10.008.2009 +Maura Casadio,Learning to push and learning to move: the adaptive control of contact forces.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#CasadioPM15,https://doi.org/10.3389/fncom.2015.00118 +Jinglin Li,Peripheral Processing Facilitates Optic Flow-Based Depth Perception.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#LiLE16,https://doi.org/10.3389/fncom.2016.00111 +Michael Krumin,Correlation-Based Analysis and Generation of Multiple Spike Trains Using Hawkes Models with an Exogenous Input.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#KruminRS10,https://doi.org/10.3389/fncom.2010.00147 +Fatemeh Bakouie,"Bifurcation analysis of ""synchronization fluctuation"": a diagnostic measure of brain epileptic states.",2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#BakouieMGT14,https://doi.org/10.3389/fncom.2014.00011 +Or P. Mendels,Relating the Structure of Noise Correlations in Macaque Primary Visual Cortex to Decoder Performance.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#MendelsS18,https://doi.org/10.3389/fncom.2018.00012 +Kenneth J. Hayworth,Dynamically Partitionable Autoassociative Networks as a Solution to the Neural Binding Problem.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#Hayworth12,https://doi.org/10.3389/fncom.2012.00073 +Dimitrije Markovic,Comparative Analysis of Behavioral Models for Adaptive Learning in Changing Environments.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#MarkovicK16,https://doi.org/10.3389/fncom.2016.00033 +David Logan,Using a System Identification Approach to Investigate Subtask Control during Human Locomotion.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#LoganKJ17,https://doi.org/10.3389/fncom.2016.00146 +Peter F. Rowat,The ISI distribution of the stochastic Hodgkin-Huxley neuron.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#RowatG14,https://doi.org/10.3389/fncom.2014.00111 +Michel Vidal-Naquet,Spatially invariant computations in stereoscopic vision.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#Vidal-NaquetG12,https://doi.org/10.3389/fncom.2012.00047 +Bingyu Pan,Alterations of Muscle Synergies During Voluntary Arm Reaching Movement in Subacute Stroke Survivors at Different Levels of Impairment.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#PanSXHWHLHZ18,https://doi.org/10.3389/fncom.2018.00069 +Massimiliano Zanin,Efficient neural codes can lead to spurious synchronization.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#ZaninP13,https://doi.org/10.3389/fncom.2013.00125 +Rogier Min,The computational power of astrocyte mediated synaptic plasticity.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#MinSN12,https://doi.org/10.3389/fncom.2012.00093 +Mikhail Katkov,Word length effect in free recall of randomly assembled word lists.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#KatkovRT14,https://doi.org/10.3389/fncom.2014.00129 +Andrew Oster,Mechanisms for multiple activity modes of VTA dopamine neurons.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#OsterGF15,https://doi.org/10.3389/fncom.2015.00095 +Jonas Kubilius,A conceptual framework of computations in mid-level vision.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#KubiliusWB14,https://doi.org/10.3389/fncom.2014.00158 +Irene Elices,Asymmetry Factors Shaping Regular and Irregular Bursting Rhythms in Central Pattern Generators.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ElicesV17,https://doi.org/10.3389/fncom.2017.00009 +Emilio Bizzi,The neural origin of muscle synergies.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#BizziC13,https://doi.org/10.3389/fncom.2013.00051 +Taher Abbas Shangari,Multisensory integration using dynamical Bayesian networks.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ShangariFBG15,https://doi.org/10.3389/fncom.2015.00058 +Tzvetomir Tzvetanov,Erratum: A single theoretical framework for circular features processing in humans: orientation and direction of motion compared.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#Tzvetanov13,https://doi.org/10.3389/fncom.2013.00028 +Chou Po Hung,Corrigendum: Correlated activity supports efficient cortical processing.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#HungCCLL15a,https://doi.org/10.3389/fncom.2015.00025 +Thomas J. Anastasio,Computational search for hypotheses concerning the endocannabinoid contribution to the extinction of fear conditioning.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#Anastasio13,https://doi.org/10.3389/fncom.2013.00074 +Mina Shahi,Serial Spike Time Correlations Affect Probability Distribution of Joint Spike Events.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ShahiVP16,https://doi.org/10.3389/fncom.2016.00139 +Rodrigo Gogui Alonso,A circular model for song motor control in Serinus canaria.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#AlonsoTAGM15,https://doi.org/10.3389/fncom.2015.00041 +Zachary P. Kilpatrick,Short term synaptic depression improves information transfer in perceptual multistability.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#Kilpatrick13,https://doi.org/10.3389/fncom.2013.00085 +M. Hongchul Sohn,Suboptimal Muscle Synergy Activation Patterns Generalize their Motor Function across Postures.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#SohnT16,https://doi.org/10.3389/fncom.2016.00007 +Alessandra Paffi,Restoring the encoding properties of a stochastic neuron model by an exogenous noise.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#PaffiCADL15a,https://doi.org/10.3389/fncom.2015.00042 +Praveen Sethupathy,A model of electrophysiological heterogeneity in periglomerular cells.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#SethupathyRLC13,https://doi.org/10.3389/fncom.2013.00049 +Michael John O'Brien,A novel analytical characterization for short-term plasticity parameters in spiking neural networks.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#OBrienTS14,https://doi.org/10.3389/fncom.2014.00148 +Ho Ka Chan,Burst Firing Enhances Neural Output Correlation.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ChanYZN16,https://doi.org/10.3389/fncom.2016.00042 +Behnam Kia,Nonlinear dynamics based digital logic and circuits.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#KiaLD15,https://doi.org/10.3389/fncom.2015.00049 +Takashi Hayakawa,A biologically plausible learning rule for the Infomax on recurrent neural networks.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#HayakawaKA14,https://doi.org/10.3389/fncom.2014.00143 +Moritz Augustin,How adaptation shapes spike rate oscillations in recurrent neuronal networks.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#AugustinLO13,https://doi.org/10.3389/fncom.2013.00009 +Simon Nougaret,First evidence of a hyperdirect prefrontal pathway in the primate: precise organization for new insights on subthalamic nucleus functions.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#NougaretMDBP13,https://doi.org/10.3389/fncom.2013.00135 +Mohammadkarim Saeedghalati,Modeling spatio-temporal dynamics of network damage and network recovery.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#SaeedghalatiA15,https://doi.org/10.3389/fncom.2015.00130 +Yaki Stern,Brain Network Activation Analysis Utilizing Spatiotemporal Features for Event Related Potentials Classification.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#SternRG16,https://doi.org/10.3389/fncom.2016.00137 +Oran Zohar,A Readout Mechanism for Latency Codes.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ZoharS16,https://doi.org/10.3389/fncom.2016.00107 +Joshua I. Glaser,The Development and Analysis of Integrated Neuroscience Data.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#GlaserK16,https://doi.org/10.3389/fncom.2016.00011 +Fatemeh Hadaeghi,"Does ""Crisis-Induced Intermittency"" Explain Bipolar Disorder Dynamics?",2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#HadaeghiGM13,https://doi.org/10.3389/fncom.2013.00116 +Diego Lozano-Soldevilla,On the Physiological Modulation and Potential Mechanisms Underlying Parieto-Occipital Alpha Oscillations.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#Lozano-Soldevilla18,https://doi.org/10.3389/fncom.2018.00023 +Sébastien Joucla,Current approaches to model extracellular electrical neural microstimulation.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#JouclaGY14,https://doi.org/10.3389/fncom.2014.00013 +Yanli Yang,Epileptic Seizure Prediction Based on Permutation Entropy.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#YangZNLCWYMX18,https://doi.org/10.3389/fncom.2018.00055 +Evgeniy Bart,Invariant Recognition of Visual Objects: Some Emerging Computational Principles.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#BartH12,https://doi.org/10.3389/fncom.2012.00060 +Julien Vitay,A computational model of basal ganglia and its role in memory retrieval in rewarded visual memory tasks.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#VitayH10,https://doi.org/10.3389/fncom.2010.00013 +Rui P. Costa,Probabilistic inference of short-term synaptic plasticity in neocortical microcircuits.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#CostaSR13,https://doi.org/10.3389/fncom.2013.00075 +Daqing Guo,Periodic Visual Stimulation Induces Resting-State Brain Network Reconfiguration.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#GuoGZLX0Y18,https://doi.org/10.3389/fncom.2018.00021 +Sebastien Louis,Surrogate Spike Train Generation Through Dithering in Operational Time.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#LouisGGD10,https://doi.org/10.3389/fncom.2010.00127 +Ramesh Srinivasan,Top-Down Influences on Local Networks: Basic Theory with Experimental Implications.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#SrinivasanTN13,https://doi.org/10.3389/fncom.2013.00029 +Matthew Lawrence Stanley,Defining nodes in complex brain networks.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#StanleyMPLBL13,https://doi.org/10.3389/fncom.2013.00169 +Netta Haroush,Slow Dynamics in Features of Synchronized Neural Network Responses.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#HaroushM15,https://doi.org/10.3389/fncom.2015.00040 +Wilten Nicola,Obtaining Arbitrary Prescribed Mean Field Dynamics for Recurrently Coupled Networks of Type-I Spiking Neurons with Analytically Determined Weights.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#NicolaTS16,https://doi.org/10.3389/fncom.2016.00015 +Manuel Marin,The dendritic location of the L-type current and its deactivation by the somatic AHP current both contribute to firing bistability in motoneurons.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#MarinZM14,https://doi.org/10.3389/fncom.2014.00004 +Kunlin Wei,Uncertainty of feedback and state estimation determines the speed of motor adaptation.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#WeiK10,https://doi.org/10.3389/fncom.2010.00011 +Tzvetomir Tzvetanov,A Single Theoretical Framework for Circular Features Processing in Humans: Orientation and Direction of Motion Compared.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#Tzvetanov12,https://doi.org/10.3389/fncom.2012.00028 +Tom Theys,Shape representations in the primate dorsal visual stream.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#TheysRLJ15,https://doi.org/10.3389/fncom.2015.00043 +Stefano Recanatesi,Neural Network Model of Memory Retrieval.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#RecanatesiKRT15,https://doi.org/10.3389/fncom.2015.00149 +Julien Modolo,Neural mass modeling of power-line magnetic fields effects on brain activity.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#ModoloTL13,https://doi.org/10.3389/fncom.2013.00034 +Alicia Fernández-Sotos,Influence of Tempo and Rhythmic Unit in Musical Emotion Regulation.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#Fernandez-Sotos16,https://doi.org/10.3389/fncom.2016.00080 +Hugo Gabriel Eyherabide,Burst firing is a neural code in an insect auditory system.,2008,2008,Front. Comput. Neurosci.,,db/journals/ficn/ficn2008.html#EyherabideRHS08,https://doi.org/10.3389/neuro.10.003.2008 +Fabian Schrodt,Embodied learning of a generative neural model for biological motion perception and inference.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#SchrodtLNB15,https://doi.org/10.3389/fncom.2015.00079 +Kathleen Vincent,Extracting functionally feedforward networks from a population of spiking neurons.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#VincentTT12,https://doi.org/10.3389/fncom.2012.00086 +Francesco Cavarretta,Glomerular and Mitral-Granule Cell Microcircuits Coordinate Temporal and Spatial Information Processing in the Olfactory Bulb.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#CavarrettaMHSM16,https://doi.org/10.3389/fncom.2016.00067 +Claudio Pizzolato,Bioinspired Technologies to Connect Musculoskeletal Mechanobiology to the Person for Training and Rehabilitation.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#PizzolatoLBCZBS17,https://doi.org/10.3389/fncom.2017.00096 +Dongil Chung,Computational modeling of the negative priming effect based on inhibition patterns and working memory.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#ChungRLJ13,https://doi.org/10.3389/fncom.2013.00166 +Michael A. Buice,Generalized activity equations for spiking neural network dynamics.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#BuiceC13,https://doi.org/10.3389/fncom.2013.00162 +Frederic Zubler,An Instruction Language for Self-Construction in the Context of Neural Networks.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#ZublerHPWCD11,https://doi.org/10.3389/fncom.2011.00057 +Amir Hossein Azizi,A computational model for preplay in the hippocampus.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#AziziWC13,https://doi.org/10.3389/fncom.2013.00161 +Milad Lankarany,Simultaneous Bayesian Estimation of Excitatory and Inhibitory Synaptic Conductances by Exploiting Multiple Recorded Trials.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#LankaranyHLT16,https://doi.org/10.3389/fncom.2016.00110 +Basabdatta Sen Bhattacharya,Causal Role of Thalamic Interneurons in Brain State Transitions: A Study Using a Neural Mass Model Implementing Synaptic Kinetics.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#BhattacharyaBOT16,https://doi.org/10.3389/fncom.2016.00115 +Liyuan Zhang,Transition Dynamics of a Dentate Gyrus-CA3 Neuronal Network during Temporal Lobe Epilepsy.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ZhangFW17,https://doi.org/10.3389/fncom.2017.00061 +Luciano da Fontoura Costa,Communication Structure of Cortical Networks.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#CostaBA11,https://doi.org/10.3389/fncom.2011.00006 +João Couto,Kilohertz Frequency Deep Brain Stimulation Is Ineffective at Regularizing the Firing of Model Thalamic Neurons.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#CoutoG16,https://doi.org/10.3389/fncom.2016.00022 +Thomas S. McTavish,Mitral cell spike synchrony modulated by dendrodendritic synapse location.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#McTavishMSH12,https://doi.org/10.3389/fncom.2012.00003 +Michael A. Carlin,Modeling attention-driven plasticity in auditory cortical receptive fields.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#CarlinE15,https://doi.org/10.3389/fncom.2015.00106 +Jung H. Lee,A Computational Analysis of the Function of Three Inhibitory Cell Types in Contextual Visual Processing.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#LeeKM17,https://doi.org/10.3389/fncom.2017.00028 +Christopher M. Laine,The Dynamics of Voluntary Force Production in Afferented Muscle Influence Involuntary Tremor.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#LaineNC16,https://doi.org/10.3389/fncom.2016.00086 +Yanru Bai,Normalization of Pain-Evoked Neural Responses Using Spontaneous EEG Improves the Performance of EEG-Based Cross-Individual Pain Prediction.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#BaiHTTH016,https://doi.org/10.3389/fncom.2016.00031 +Wilfredo Blanco,The Effects of GABAergic Polarity Changes on Episodic Neural Network Activity in Developing Neural Systems.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#BlancoBT17,https://doi.org/10.3389/fncom.2017.00088 +Michael C. Trent,Learning from the value of your mistakes: evidence for a risk-sensitive process in movement adaptation.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#TrentA13,https://doi.org/10.3389/fncom.2013.00118 +Jean-Pierre Eckmann,Leaders of Neuronal Cultures in a Quorum Percolation Model.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#EckmannMSTZ10,https://doi.org/10.3389/fncom.2010.00132 +Aleena Shaukat,Statistical Evaluation of Waveform Collapse Reveals Scale-Free Properties of Neuronal Avalanches.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ShaukatT16,https://doi.org/10.3389/fncom.2016.00029 +Leyla Isik,Learning and disrupting invariance in visual recognition with a temporal association rule.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#IsikLP12,https://doi.org/10.3389/fncom.2012.00037 +Jorge F. Mejías,Differential effects of excitatory and inhibitory heterogeneity on the gain and asynchronous state of sparse cortical networks.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#MejiasL14,https://doi.org/10.3389/fncom.2014.00107 +Arne-Freerk Meyer,Temporal variability of spectro-temporal receptive fields in the anesthetized auditory cortex.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#MeyerDOA14,https://doi.org/10.3389/fncom.2014.00165 +Itsuki Yamashita,Recurrent network for multisensory integration-identification of common sources of audiovisual stimuli.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#YamashitaKIOO13,https://doi.org/10.3389/fncom.2013.00101 +Ali Borji,Optimal attentional modulation of a neural population.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#BorjiI14,https://doi.org/10.3389/fncom.2014.00034 +Antonio Jose Rodríguez-Sánchez,Editorial: Hierarchical Object Representations in the Visual Cortex and Computer Vision.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Rodriguez-Sanchez15,https://doi.org/10.3389/fncom.2015.00142 +Allan D. Coop,Dendritic excitability modulates dendritic information processing in a Purkinje cell model.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#CoopCS10,https://doi.org/10.3389/fncom.2010.00006 +Karthik Soman,An Oscillatory Neural Autoencoder Based on Frequency Modulation and Multiplexing.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#SomanMC18,https://doi.org/10.3389/fncom.2018.00052 +Yaoyu Zhang,Spike-Triggered Regression for Synaptic Connectivity Reconstruction in Neuronal Networks.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ZhangXZC17,https://doi.org/10.3389/fncom.2017.00101 +Yan Chastagnier,Image Processing for Bioluminescence Resonance Energy Transfer Measurement - BRET-Analyzer.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#ChastagnierMHP18,https://doi.org/10.3389/fncom.2017.00118 +Arnold Ziesche,Brain circuits underlying visual stability across eye movements - converging evidence for a neuro-computational model of area LIP.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#ZiescheH14,https://doi.org/10.3389/fncom.2014.00025 +José González-Vargas,A predictive model of muscle excitations based on muscle modularity for a large repertoire of human locomotion conditions.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Gonzalez-Vargas15,https://doi.org/10.3389/fncom.2015.00114 +Simona Olmi,Linear stability in networks of pulse-coupled neurons.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#OlmiPT14,https://doi.org/10.3389/fncom.2014.00008 +Peter U. Diehl,Unsupervised learning of digit recognition using spike-timing-dependent plasticity.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Diehl015,https://doi.org/10.3389/fncom.2015.00099 +David R. Badcock,Detecting global form: separate processes required for Glass and radial frequency patterns.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#BadcockAD13,https://doi.org/10.3389/fncom.2013.00053 +Matt Singh,A simple transfer function for nonlinear dendritic integration.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#SinghZ15,https://doi.org/10.3389/fncom.2015.00098 +Georgios Detorakis,Structure of receptive fields in a computational model of area 3b of primary sensory cortex.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#DetorakisR14,https://doi.org/10.3389/fncom.2014.00076 +Basabdatta Sen Bhattacharya,Implementing the cellular mechanisms of synaptic transmission in a neural mass model of the thalamo-cortical circuitry.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#Bhattacharya13,https://doi.org/10.3389/fncom.2013.00081 +Jaap van Pelt,Estimating neuronal connectivity from axonal and dendritic density fields.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#PeltO13,https://doi.org/10.3389/fncom.2013.00160 +Cheng Ly,Cellular and Circuit Mechanisms Maintain Low Spike Co-Variability and Enhance Population Coding in Somatosensory Cortex.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#LyMD12,https://doi.org/10.3389/fncom.2012.00007 +Tao Wang,A Phenomenological Synapse Model for Asynchronous Neurotransmitter Release.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#WangYZSRW16,https://doi.org/10.3389/fncom.2015.00153 +Natasha A. Cayco-Gajic,Triplet correlations among similarly tuned cells impact population coding.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Cayco-GajicZS15,https://doi.org/10.3389/fncom.2015.00057 +Feibiao Zhan,Response of Electrical Activity in an Improved Neuron Model under Electromagnetic Radiation and Noise.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ZhanL17,https://doi.org/10.3389/fncom.2017.00107 +Tjeerd Olde Scheper,Dynamic Hebbian Cross-Correlation Learning Resolves the Spike Timing Dependent Plasticity Conundrum.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#ScheperMMPO18,https://doi.org/10.3389/fncom.2017.00119 +José Luis Carrillo-Medina,Implementing Signature Neural Networks with Spiking Neurons.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#Carrillo-Medina16,https://doi.org/10.3389/fncom.2016.00132 +Maciej Labecki,Nonlinear Origin of SSVEP Spectra - A Combined Experimental and Modeling Study.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#LabeckiKBSBS16,https://doi.org/10.3389/fncom.2016.00129 +Franciszek Rakowski,Synaptic polarity of the interneuron circuit controlling C. elegans locomotion.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#RakowskiSSK13,https://doi.org/10.3389/fncom.2013.00128 +Benjamin A. Teplitzky,Model-Based Comparison of Deep Brain Stimulation Array Functionality with Varying Number of Radial Electrodes and Machine Learning Feature Sets.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#TeplitzkyZXJ16,https://doi.org/10.3389/fncom.2016.00058 +Stephan Tschechne,Hierarchical representation of shapes in visual cortex - from localized features to figural shape segregation.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#TschechneN14,https://doi.org/10.3389/fncom.2014.00093 +Tal Yarkoni,Designing next-generation platforms for evaluating scientific output: what scientists can learn from the social web.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#Yarkoni12,https://doi.org/10.3389/fncom.2012.00072 +Yifei Guo,A Brain Signature to Differentiate Acute and Chronic Pain in Rats.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#GuoWSW16,https://doi.org/10.3389/fncom.2016.00041 +Yuwei Cui,The HTM Spatial Pooler - A Neocortical Algorithm for Online Sparse Distributed Coding.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#CuiAH17,https://doi.org/10.3389/fncom.2017.00111 +Dipanjan Roy,Inferring network properties of cortical neurons with synaptic coupling and parameter dispersion.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#RoyJ13,https://doi.org/10.3389/fncom.2013.00020 +Young-Gyu Yoon,Feasibility of 3D Reconstruction of Neural Morphology Using Expansion Microscopy and Barcode-Guided Agglomeration.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#YoonDWCMB17,https://doi.org/10.3389/fncom.2017.00097 +Arvind Kumar,Frequency-Dependent Changes in NMDAR-Dependent Synaptic Plasticity.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#KumarM11,https://doi.org/10.3389/fncom.2011.00038 +Yi Yuan,A Phase-Locking Analysis of Neuronal Firing Rhythms with Transcranial Magneto-Acoustical Stimulation Based on the Hodgkin-Huxley Neuron Model.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#YuanPCWL17,https://doi.org/10.3389/fncom.2017.00001 +Maciej Kaminski,Measures of Coupling between Neural Populations Based on Granger Causality Principle.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#KaminskiBKB16,https://doi.org/10.3389/fncom.2016.00114 +Niceto R. Luque,Distributed Cerebellar Motor Learning: A Spike-Timing-Dependent Plasticity Model.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#LuqueGNCDR16,https://doi.org/10.3389/fncom.2016.00017 +Leonhard Lücken,Desynchronization boost by non-uniform coordinated reset stimulation in ensembles of pulse-coupled neurons.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#LuckenYPT13,https://doi.org/10.3389/fncom.2013.00063 +Catalina Vich,Estimation of Synaptic Conductances in Presence of Nonlinear Effects Caused by Subthreshold Ionic Currents.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#VichBGD17,https://doi.org/10.3389/fncom.2017.00069 +Ching-Chang Kuo,Dynamic Responses in Brain Networks to Social Feedback: A Dual EEG Acquisition Study in Adolescent Couples.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#KuoHETD17,https://doi.org/10.3389/fncom.2017.00046 +Brian Colder,The basal ganglia select the expected sensory input used for predictive coding.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Colder15,https://doi.org/10.3389/fncom.2015.00119 +Ioannis Delis,A methodology for assessing the effect of correlations among muscle synergy activations on task-discriminating information.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#DelisBPP13a,https://doi.org/10.3389/fncom.2013.00054 +Wu-Jie Yuan,A model of microsaccade-related neural responses induced by short-term depression in thalamocortical synapses.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#YuanDSZ13,https://doi.org/10.3389/fncom.2013.00047 +Benjamin D. Evans,Transform-invariant visual representations in self-organizing spiking neural networks.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#EvansS12,https://doi.org/10.3389/fncom.2012.00046 +Jun-Wei Mao,Dynamic Network Connectivity Analysis to Identify Epileptogenic Zones Based on Stereo-Electroencephalography.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#MaoYLLXZ16,https://doi.org/10.3389/fncom.2016.00113 +Ioannis Delis,Quantitative evaluation of muscle synergy models: a single-trial task decoding approach.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#DelisBPP13,https://doi.org/10.3389/fncom.2013.00008 +William H. Alexander,A general role for medial prefrontal cortex in event prediction.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#AlexanderB14,https://doi.org/10.3389/fncom.2014.00069 +Shouliang Qi,Multiple Frequency Bands Analysis of Large Scale Intrinsic Brain Networks and Its Application in Schizotypal Personality Disorder.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#QiGSTXSW18,https://doi.org/10.3389/fncom.2018.00064 +Hanin H. Alahmadi,Classifying Cognitive Profiles Using Machine Learning with Privileged Information in Mild Cognitive Impairment.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#AlahmadiSFLBKT16,https://doi.org/10.3389/fncom.2016.00117 +Brent Doiron,Balanced neural architecture and the idling brain.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#DoironL14,https://doi.org/10.3389/fncom.2014.00056 +Roland Potthast,Dimensional reduction for the inverse problem of neural field theory.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#PotthastG09,https://doi.org/10.3389/neuro.10.017.2009 +Carlos Toledo-Suárez,Liquid computing on and off the edge of chaos with a striatal microcircuit.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Toledo-SuarezDM14,https://doi.org/10.3389/fncom.2014.00130 +Francesco Paolo Battaglia,The Construction of Semantic Memory: Grammar-Based Representations Learned from Relational Episodic Information.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#BattagliaP11,https://doi.org/10.3389/fncom.2011.00036 +Massimo Sartori,A musculoskeletal model of human locomotion driven by a low dimensional set of impulsive excitation primitives.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#SartoriGLF13,https://doi.org/10.3389/fncom.2013.00079 +Christoph Metzner,Multifactorial Modeling of Impairment of Evoked Gamma Range Oscillations in Schizophrenia.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#MetznerSZ16,https://doi.org/10.3389/fncom.2016.00089 +Tiina Manninen,Postsynaptic Signal Transduction Models for Long-Term Potentiation and Depression.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#ManninenHKBL10,https://doi.org/10.3389/fncom.2010.00152 +Dagmar Sternad,Transitions between discrete and rhythmic primitives in a unimanual task.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#SternadMCDDH13,https://doi.org/10.3389/fncom.2013.00090 +Kevin Lloyd,Learning to use working memory: a reinforcement learning gating model of rule acquisition in rats.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#LloydBJB12,https://doi.org/10.3389/fncom.2012.00087 +Valentin Senft,Inhibiting Basal Ganglia Regions Reduces Syllable Sequencing Errors in Parkinson's Disease: A Computer Simulation Study.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#SenftSBEK18,https://doi.org/10.3389/fncom.2018.00041 +Qiulei Dong,Comparison of IT Neural Response Statistics with Simulations.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#DongLH17,https://doi.org/10.3389/fncom.2017.00060 +Ulrich Pöschl,Multi-Stage Open Peer Review: Scientific Evaluation Integrating the Strengths of Traditional Peer Review with the Virtues of Transparency and Self-Regulation.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#Poschl12,https://doi.org/10.3389/fncom.2012.00033 +Mikhail I. Rabinovich,Chunking dynamics: heteroclinics in mind.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#RabinovichVTA14,https://doi.org/10.3389/fncom.2014.00022 +Sirko Straube,How to evaluate an agent's behavior to infrequent events? - Reliable performance estimation insensitive to class distribution.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#StraubeK14,https://doi.org/10.3389/fncom.2014.00043 +Jose M. Benita,Synaptic depression and slow oscillatory activity in a biophysical network model of the cerebral cortex.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#BenitaGDS12,https://doi.org/10.3389/fncom.2012.00064 +Suyu Liu,Disinhibition-Induced Delayed Onset of Epileptic Spike-Wave Discharges in a Five Variable Model of Cortex and Thalamus.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#LiuWF16,https://doi.org/10.3389/fncom.2016.00028 +Duluxan Sritharan,Fluctuating Inhibitory Inputs Promote Reliable Spiking at Theta Frequencies in Hippocampal Interneurons.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#SritharanS12,https://doi.org/10.3389/fncom.2012.00030 +Luca Puviani,A System Computational Model of Implicit Emotional Learning.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#PuvianiR16,https://doi.org/10.3389/fncom.2016.00054 +George Mather,Interactions between motion and form processing in the human visual system.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#MatherPMCC13,https://doi.org/10.3389/fncom.2013.00065 +Yaniv Morgenstern,Properties of artificial neurons that report lightness based on accumulated experience with luminance.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#MorgensternRMP14,https://doi.org/10.3389/fncom.2014.00134 +Shunta Togo,Uncontrolled Manifold Reference Feedback Control of Multi-Joint Robot Arms.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#TogoKU16,https://doi.org/10.3389/fncom.2016.00069 +Guadalupe García,Building Blocks of Self-Sustained Activity in a Simple Deterministic Model of Excitable Neural Networks.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#LHH12,https://doi.org/10.3389/fncom.2012.00050 +Andre L. Luvizotto,A wavelet-based neural model to optimize and read out a temporal population code.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#LuvizottoRV12,https://doi.org/10.3389/fncom.2012.00021 +Stefan Schinkel,Order Patterns Networks (ORPAN) - a method to estimate time-evolving functional connectivity from multivariate time series.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#SchinkelZDSK12,https://doi.org/10.3389/fncom.2012.00091 +Hector James Ingram Page,Architectural constraints are a major factor reducing path integration accuracy in the rat head direction cell system.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#PageWS15,https://doi.org/10.3389/fncom.2015.00010 +Takuma Tanaka,Information maximization principle explains the emergence of complex cell-like neurons.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#TanakaN13,https://doi.org/10.3389/fncom.2013.00165 +Zedong Bi,Spike Pattern Structure Influences Synaptic Efficacy Variability under STDP and Synaptic Homeostasis. II: Spike Shuffling Methods on LIF Networks.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#BiZ16a,https://doi.org/10.3389/fncom.2016.00083 +Puja Malik,An Assessment of Six Muscle Spindle Models for Predicting Sensory Information during Human Wrist Movements.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#MalikJJ16,https://doi.org/10.3389/fncom.2015.00154 +Sushmita L. Allam,A Computational Model to Investigate Astrocytic Glutamate Uptake Influence on Synaptic Transmission and Neuronal Spiking.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#AllamGBLAGBBB12,https://doi.org/10.3389/fncom.2012.00070 +Adrián Colomer Granero,A Comparison of Physiological Signal Analysis Techniques and Classifiers for Automatic Emotional Evaluation of Audiovisual Contents.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#GraneroFOPAR16,https://doi.org/10.3389/fncom.2016.00074 +Luyan Zhang,Time-Varying Networks of Inter-Ictal Discharging Reveal Epileptogenic Zone.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ZhangLLSPDSSYX17,https://doi.org/10.3389/fncom.2017.00077 +Guillaume Hennequin,STDP in Adaptive Neurons Gives Close-To-Optimal Information Transmission.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#HennequinGP10,https://doi.org/10.3389/fncom.2010.00143 +Sarah M. Parker,Unsupervised invariance learning of transformation sequences in a model of object recognition yields selectivity for non-accidental properties.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ParkerS15,https://doi.org/10.3389/fncom.2015.00115 +Barak Blumenfeld,An algorithm for the analysis of temporally structured multidimensional measurements.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#Blumenfeld10,https://doi.org/10.3389/neuro.10.028.2009 +Cristóbal Moënne-Loccoz,Modeling Search Behaviors during the Acquisition of Expertise in a Sequential Decision-Making Task.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#Moenne-LoccozVL17,https://doi.org/10.3389/fncom.2017.00080 +Daniel Malagarriga,Synchronization-based computation through networks of coupled oscillators.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#MalagarrigaGVBG15,https://doi.org/10.3389/fncom.2015.00097 +Markus M. Knodel,Synaptic bouton properties are tuned to best fit the prevailing firing pattern.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#KnodelGGBGWSQ14,https://doi.org/10.3389/fncom.2014.00101 +Shouliang Qi,Structural Brain Network: What is the Effect of LiFE Optimization of Whole Brain Tractography?,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#QiMNRO16,https://doi.org/10.3389/fncom.2016.00012 +Rujia Yan,Coding Properties of Mouse Retinal Ganglion Cells with Dual-Peak Patterns with Respect to Stimulus Intervals.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#YanGZL16,https://doi.org/10.3389/fncom.2016.00075 +Pauline M. Hilt,Space-by-Time Modular Decomposition Effectively Describes Whole-Body Muscle Activity During Upright Reaching in Various Directions.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#HiltDPB18,https://doi.org/10.3389/fncom.2018.00020 +Ekaterina Brocke,Efficient Integration of Coupled Electrical-Chemical Systems in Multiscale Neuronal Simulations.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#BrockeBDKH16,https://doi.org/10.3389/fncom.2016.00097 +Simon A. Overduin,Muscle synergies evoked by microstimulation are preferentially encoded during behavior.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#OverduindCB14,https://doi.org/10.3389/fncom.2014.00020 +Khanh Dao Duc,Synaptic dynamics and neuronal network connectivity are reflected in the distribution of * in Up states.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#DucPCEKH15,https://doi.org/10.3389/fncom.2015.00096 +Axel Hutt,The anesthetic propofol shifts the frequency of maximum spectral power in EEG during general anesthesia: analytical insights from a linear model.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#Hutt13,https://doi.org/10.3389/fncom.2013.00002 +Carlo R. Laing,Bumps in Small-World Networks.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#Laing16,https://doi.org/10.3389/fncom.2016.00053 +Francesco Lacquaniti,Evolutionary and Developmental Modules.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#LacquanitiIdZZ13,https://doi.org/10.3389/fncom.2013.00061 +Mauro Ursino,Development of a Bayesian Estimator for Audio-Visual Integration: A Neurocomputational Study.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#UrsinoCPMC17,https://doi.org/10.3389/fncom.2017.00089 +Hamed Bahmani,Distorted Low-Level Visual Features Affect Saliency-Based Visual Attention.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#BahmaniW16,https://doi.org/10.3389/fncom.2016.00124 +Mark Stephen Rowan,Electrostimulation to reduce synaptic scaling driven progression of Alzheimer's disease.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#RowanNL14,https://doi.org/10.3389/fncom.2014.00039 +Elham Bayat Mokhtari,Data Driven Models of Short-Term Synaptic Plasticity.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#MokhtariLS18,https://doi.org/10.3389/fncom.2018.00032 +Julien Modolo,"Using ""Smart Stimulators"" to Treat Parkinson's Disease: Re-Engineering Neurostimulation Devices.",2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#ModoloBTL12,https://doi.org/10.3389/fncom.2012.00069 +Gerald E. Loeb,Major remaining gaps in models of sensorimotor systems.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#LoebT15,https://doi.org/10.3389/fncom.2015.00070 +Iain Hepburn,Efficient calculation of the quasi-static electrical potential on a tetrahedral mesh and its implementation in STEPS.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#HepburnCS13,https://doi.org/10.3389/fncom.2013.00129 +Alexey Pimashkin,Spiking Signatures of Spontaneous Activity Bursts in Hippocampal Cultures.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#PimashkinKSKMK11,https://doi.org/10.3389/fncom.2011.00046 +Markus Butz,A model for cortical rewiring following deafferentation and focal stroke.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#ButzOW09,https://doi.org/10.3389/neuro.10.010.2009 +Tommaso Fellin,Astrocyte regulation of sleep circuits: experimental and modeling perspectives.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#FellinEPBH12,https://doi.org/10.3389/fncom.2012.00065 +Jules Lallouette,Sparse short-distance connections enhance calcium wave propagation in a 3D model of astrocyte networks.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#LallouettePBB14,https://doi.org/10.3389/fncom.2014.00045 +Ji-Chul Kim,Signal Processing in Periodically Forced Gradient Frequency Neural Networks.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#KimL15,https://doi.org/10.3389/fncom.2015.00152 +Linling Li,Placebo Analgesia Changes Alpha Oscillations Induced by Tonic Muscle Pain: EEG Frequency Analysis Including Data during Pain Evaluation.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#LiWKLYZXQ16,https://doi.org/10.3389/fncom.2016.00045 +Maryam Beigzadeh,Can cellular automata be a representative model for visual perception dynamics?,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#BeigzadehGG13,https://doi.org/10.3389/fncom.2013.00130 +Go Ashida,Theoretical foundations of the sound analog membrane potential that underlies coincidence detection in the barn owl.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#AshidaFC13,https://doi.org/10.3389/fncom.2013.00151 +Wiebke Potjans,Enabling Functional Neural Circuit Simulations with Distributed Computing of Neuromodulated Plasticity.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#PotjansMD10,https://doi.org/10.3389/fncom.2010.00141 +Yudong Zhang,Detection of subjects and brain regions related to Alzheimer's disease using 3D MRI scans based on eigenbrain and machine learning.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ZhangDPWJYY15,https://doi.org/10.3389/fncom.2015.00066 +Tomoyasu Horikawa,Hierarchical Neural Representation of Dreamed Objects Revealed by Brain Decoding with Deep Neural Network Features.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#HorikawaK17,https://doi.org/10.3389/fncom.2017.00004 +Mehdi Borjkhani,Formation of Opioid-Induced Memory and Its Prevention: A Computational Study.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#BorjkhaniBJ18,https://doi.org/10.3389/fncom.2018.00063 +Aymar de Rugy,Are muscle synergies useful for neural control?,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#RugyLC13,https://doi.org/10.3389/fncom.2013.00019 +Andreea Lazar,SORN: a self-organizing recurrent neural network.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#LazarPT09,https://doi.org/10.3389/neuro.10.023.2009 +Paulo Andre Nobre Rosa,On the distinguishability of HRF models in fMRI.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#RosaFS15,https://doi.org/10.3389/fncom.2015.00054 +Erik Sandewall,Maintaining Live Discussion in Two-Stage Open Peer Review.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#Sandewall12,https://doi.org/10.3389/fncom.2012.00009 +Marion Sourty,Identifying Dynamic Functional Connectivity Changes in Dementia with Lewy Bodies Based on Product Hidden Markov Models.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#SourtyTRAFB16,https://doi.org/10.3389/fncom.2016.00060 +Karl J. Friston,Perception and self-organized instability.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#FristonBD12,https://doi.org/10.3389/fncom.2012.00044 +Gerard J. Rinkus,Sparsey™*: event recognition via deep hierarchical sparse distributed codes.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Rinkus14,https://doi.org/10.3389/fncom.2014.00160 +Loreen Hertäg,Analytical approximations of the firing rate of an adaptive exponential integrate-and-fire neuron in the presence of synaptic noise.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#HertagDB14,https://doi.org/10.3389/fncom.2014.00116 +Jorge I. Padilla-Buritica,Emotion Discrimination Using Spatially Compact Regions of Interest Extracted from Imaging EEG Activity.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#Padilla-Buritica16,https://doi.org/10.3389/fncom.2016.00055 +Arash Kermani Kolankeh,Competition improves robustness against loss of information.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#KolankehTH15,https://doi.org/10.3389/fncom.2015.00035 +Reinhard Gentner,Robustness of muscle synergies during visuomotor adaptation.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#GentnerPEd13,https://doi.org/10.3389/fncom.2013.00120 +Benjamin R. Shuman,Electromyography Data Processing Impacts Muscle Synergies during Gait for Unimpaired Children and Children with Cerebral Palsy.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ShumanSS17,https://doi.org/10.3389/fncom.2017.00050 +Yi Yuan,Theoretical Analysis of Transcranial Magneto-Acoustical Stimulation with Hodgkin-Huxley Neuron Model.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#YuanCL16,https://doi.org/10.3389/fncom.2016.00035 +Claudius Strub,Dynamic Neural Fields with Intrinsic Plasticity.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#StrubSWS17,https://doi.org/10.3389/fncom.2017.00074 +Sébastien Hélie,Simulating the Effect of Reinforcement Learning on Neuronal Synchrony and Periodicity in the Striatum.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#HelieF16,https://doi.org/10.3389/fncom.2016.00040 +Benjamin Scellier,Equilibrium Propagation: Bridging the Gap between Energy-Based Models and Backpropagation.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ScellierB17,https://doi.org/10.3389/fncom.2017.00024 +Masoud Ghodrati,Feedforward object-vision models only tolerate small image variations compared to human.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#GhodratiFREK14,https://doi.org/10.3389/fncom.2014.00074 +Shirley Mark,Population spikes in cortical networks during different functional states.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#MarkT12,https://doi.org/10.3389/fncom.2012.00043 +Martin J. Spencer,An investigation of dendritic delay in octopus cells of the mammalian cochlear nucleus.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#SpencerGBMB12,https://doi.org/10.3389/fncom.2012.00083 +Adam R. Tomkins,Transient and steady-state selection in the striatal microcircuit.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#TomkinsVBGH14,https://doi.org/10.3389/fncom.2013.00192 +Patrick D. Roberts,Anti-Hebbian Spike-Timing-Dependent Plasticity and Adaptive Sensory Processing.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#RobertsL10,https://doi.org/10.3389/fncom.2010.00156 +Kosuke Takagi,Information-Based Principle Induces Small-World Topology and Self-Organized Criticality in a Large Scale Brain Network.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#Takagi18,https://doi.org/10.3389/fncom.2018.00065 +Ahmed A. Moustafa,On the Complexity of Brain Disorders: A Symptom-Based Approach.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#MoustafaPKMF16,https://doi.org/10.3389/fncom.2016.00016 +Ralf Salomon,Modeling the Nucleus Laminaris of the Barn Owl: Achieving 20 ps Resolution on a 85-MHz-Clocked Digital Device.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#SalomonHJ12,https://doi.org/10.3389/fncom.2012.00006 +Michael L. Hines,Comparison of neuronal spike exchange methods on a Blue Gene/P supercomputer.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#Hines0S11,https://doi.org/10.3389/fncom.2011.00049 +Daniel Leeds,Exploration of complex visual feature spaces for object perception.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#LeedsPT14,https://doi.org/10.3389/fncom.2014.00106 +Robert Meyer,The Influence of Mexican Hat Recurrent Connectivity on Noise Correlations and Stimulus Encoding.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#MeyerLO17,https://doi.org/10.3389/fncom.2017.00034 +Dimitris A. Pinotsis,On conductance-based neural field models.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#PinotsisLF13,https://doi.org/10.3389/fncom.2013.00158 +Dimitri Probst,Probabilistic inference in discrete spaces can be implemented into networks of LIF neurons.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ProbstPBBPSM15,https://doi.org/10.3389/fncom.2015.00013 +Ahmed A. Moustafa,On the relationship among different motor processes: a computational modeling approach.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Moustafa15,https://doi.org/10.3389/fncom.2015.00034 +Malte Schilling,A hexapod walker using a heterarchical architecture for action selection.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#SchillingPHHSSC13,https://doi.org/10.3389/fncom.2013.00126 +Brendan P. Glackin,A Spiking Neural Network Model of the Medial Superior Olive Using Spike Timing Dependent Plasticity for Sound Localization.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#GlackinWMMM10,https://doi.org/10.3389/fncom.2010.00018 +Michael W. Reimann,An algorithm to predict the connectome of neural microcircuits.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ReimannKMRM15,https://doi.org/10.3389/fncom.2015.00120 +Shayan Tabe-Bordbar,Computational Analysis of the Hypothalamic Control of Food Intake.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#Tabe-BordbarA16,https://doi.org/10.3389/fncom.2016.00027 +Benjamin Torben-Nielsen,An Inverse Approach for Elucidating Dendritic Function.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#Torben-NielsenS10,https://doi.org/10.3389/fncom.2010.00128 +Ján Antolík,Development of Maps of Simple and Complex Cells in the Primary Visual Cortex.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#AntolikB11,https://doi.org/10.3389/fncom.2011.00017 +Hojeong Kim,Neuromodulation impact on nonlinear firing behavior of a reduced model motoneuron with the active dendrite.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#KimH14,https://doi.org/10.3389/fncom.2014.00110 +Marcello Mulas,Hebbian Plasticity Realigns Grid Cell Activity with External Sensory Cues in Continuous Attractor Models.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#MulasWC16,https://doi.org/10.3389/fncom.2016.00013 +Lei Wang,Coding Properties of Three Intrinsically Distinct Retinal Ganglion Cells under Periodic Stimuli: A Computational Study.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#WangQZ16,https://doi.org/10.3389/fncom.2016.00102 +Christian Schumacher,Sensor-Motor Maps for Describing Linear Reflex Composition in Hopping.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#SchumacherS17,https://doi.org/10.3389/fncom.2017.00108 +Yu-Xuan Fu,Subcritical Hopf Bifurcation and Stochastic Resonance of Electrical Activities in Neuron under Electromagnetic Induction.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#FuKX18,https://doi.org/10.3389/fncom.2018.00006 +Jantsje H. Pasma,Evidence in Support of the Independent Channel Model Describing the Sensorimotor Control of Human Stance Using a Humanoid Robot.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#PasmaAKKMS18,https://doi.org/10.3389/fncom.2018.00013 +Fariba Sharifian,Contextual Modulation is Related to Efficiency in a Spiking Network Model of Visual Cortex.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#SharifianHVV16,https://doi.org/10.3389/fncom.2015.00155 +Faramarz Faghihi,An information theoretic model of information processing in the Drosophila olfactory system: the role of inhibitory neurons for system efficiency.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#FaghihiKFWT13,https://doi.org/10.3389/fncom.2013.00183 +Bert de Vries,A Factor Graph Description of Deep Temporal Active Inference.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#VriesF17,https://doi.org/10.3389/fncom.2017.00095 +Guillaume Lajoie,Structured chaos shapes spike-response noise entropy in balanced neural networks.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#LajoieTS14,https://doi.org/10.3389/fncom.2014.00123 +Jordan H. Boyle,Gait Modulation in C. elegans: An Integrated Neuromechanical Model.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#BoyleBC12,https://doi.org/10.3389/fncom.2012.00010 +Thomas Gisiger,Mechanisms Gating the Flow of Information in the Cortex: What They Might Look Like and What Their Uses may be.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#GisigerB11,https://doi.org/10.3389/fncom.2011.00001 +Cristiano De Marchis,Feedback of mechanical effectiveness induces adaptations in motor modules during cycling.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#MarchisSBCDC13,https://doi.org/10.3389/fncom.2013.00035 +Pavel Sountsov,Spiking neuron network Helmholtz machine.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#SountsovM15,https://doi.org/10.3389/fncom.2015.00046 +Christoforos Christoforou,Single-trial linear correlation analysis: application to characterization of stimulus modality effects.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#ChristoforouCSS13,https://doi.org/10.3389/fncom.2013.00015 +Benjamin Dummer,Self-consistent determination of the spike-train power spectrum in a neural network with sparse connectivity.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#DummerWL14,https://doi.org/10.3389/fncom.2014.00104 +Xiaomei Kang,A Fast Contour Detection Model Inspired by Biological Mechanisms in Primary Vision System.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#KangK0X18,https://doi.org/10.3389/fncom.2018.00028 +Artur Luczak,Measuring Neuronal Branching Patterns Using Model-Based Approach.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#Luczak10,https://doi.org/10.3389/fncom.2010.00135 +Luciano da Fontoura Costa,Unveiling the Neuromorphological Space.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#CostaZMVT10,https://doi.org/10.3389/fncom.2010.00150 +Cian O'Donnell,Systematic analysis of the contributions of stochastic voltage gated channels to neuronal noise.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#ODonnellR14,https://doi.org/10.3389/fncom.2014.00105 +Bruno Cessac,On dynamics of integrate-and-fire neural networks with conductance based synapses.,2008,2008,Front. Comput. Neurosci.,,db/journals/ficn/ficn2008.html#CessacV08,https://doi.org/10.3389/neuro.10.002.2008 +Aritra Das,Effect of Stimulus Contrast and Visual Attention on Spike-Gamma Phase Relationship in Macaque Primary Visual Cortex.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#DasR18,https://doi.org/10.3389/fncom.2018.00066 +Juan-Francisco Espinosa-Parrilla,Linking reward processing to behavioral output: motor and motivational integration in the primate subthalamic nucleus.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#Espinosa-ParrillaBA13,https://doi.org/10.3389/fncom.2013.00175 +Sabine Krofczik,Rapid odor processing in the honeybee antennal lobe network.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#KrofczikMN09,https://doi.org/10.3389/neuro.10.009.2008 +Hisashi Kada,Effective Suppression of Pathological Synchronization in Cortical Networks by Highly Heterogeneous Distribution of Inhibitory Connections.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#KadaTT16,https://doi.org/10.3389/fncom.2016.00109 +Stefan Mihalas,Calcium Messenger Heterogeneity: A Possible Signal for Spike Timing-Dependent Plasticity.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#Mihalas11,https://doi.org/10.3389/fncom.2010.00158 +Pietro Perona,Quantized response * are a signature of a neuronal bottleneck in decision.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Perona14,https://doi.org/10.3389/fncom.2014.00042 +Yuko Hara,Differing effects of attention in single-units and populations are well predicted by heterogeneous tuning and the normalization model of attention.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#HaraPG14,https://doi.org/10.3389/fncom.2014.00012 +Jelte M. Wicherts,Letting the daylight in: Reviewing the reviewers and other ways to maximize transparency in science.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#WichertsKBB12,https://doi.org/10.3389/fncom.2012.00020 +Chengcheng Huang,A neuronal network model for context-dependence of pitch change perception.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#HuangESR15,https://doi.org/10.3389/fncom.2015.00101 +Anantharaman Gopalakrishnan,A novel computational framework for deducing muscle synergies from experimental joint moments.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#GopalakrishnanMP14,https://doi.org/10.3389/fncom.2014.00153 +Naveen Kuppuswamy,Do muscle synergies reduce the dimensionality of behavior?,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#KuppuswamyH14,https://doi.org/10.3389/fncom.2014.00063 +Gregor M. Hörzer,Directed coupling in local field potentials of macaque V4 during visual short-term memory revealed by multivariate autoregressive models.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#HorzerLSLR10,https://doi.org/10.3389/fncom.2010.00014 +James J. Wright,Further Work on the Shaping of Cortical Development and Function by Synchrony and Metabolic Competition.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#WrightB16,https://doi.org/10.3389/fncom.2016.00127 +Mark Wildie,Establishing communication between neuronal populations through competitive entrainment.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#WildieS12,https://doi.org/10.3389/fncom.2011.00062 +Andrey V. Olypher,Input-to-output transformation in a model of the rat hippocampal CA1 network.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#OlypherLP12,https://doi.org/10.3389/fncom.2012.00057 +Judith C. Peters,Editorial: Integrating Computational and Neural Findings in Visual Object Perception.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#PetersBG16,https://doi.org/10.3389/fncom.2016.00036 +Cristina Savin,Emergence of task-dependent representations in working memory circuits.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#SavinT14,https://doi.org/10.3389/fncom.2014.00057 +Dwight J. Kravitz,Toward a New Model of Scientific Publishing: Discussion and a Proposal.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#KravitzB11,https://doi.org/10.3389/fncom.2011.00055 +Romain Brette,Spiking Models for Level-Invariant Encoding.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#Brette12,https://doi.org/10.3389/fncom.2011.00063 +Patrick J. Mineault,Local field potentials reflect multiple spatial scales in V4.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#MineaultZP13,https://doi.org/10.3389/fncom.2013.00021 +Vasily I. Mironov,Dendrite and Axon Specific Geometrical Transformation in Neurite Development.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#MironovSK16,https://doi.org/10.3389/fncom.2015.00156 +Mimma Nardelli,Characterizing Psychological Dimensions in Non-Pathological Subjects through Autonomic Nervous System Dynamics.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#NardelliVCGCDLS15,https://doi.org/10.3389/fncom.2015.00037 +Eleftheria Kyriaki Pissadaki,The energy cost of action potential propagation in dopamine neurons: clues to susceptibility in Parkinson's disease.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#PissadakiB13,https://doi.org/10.3389/fncom.2013.00013 +Rodrigo Felipe De Oliveira Pena,Self-Consistent Scheme for Spike-Train Power Spectra in Heterogeneous Sparse Networks.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#PenaVBRL18,https://doi.org/10.3389/fncom.2018.00009 +Mehdi Daemi,Causal Inference for Cross-Modal Action Selection: A Computational Study in a Decision Making Framework.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#DaemiHC16,https://doi.org/10.3389/fncom.2016.00062 +Keming Tang,Electrical Activity in a Time-Delay Four-Variable Neuron Model under Electromagnetic Induction.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#TangWS17,https://doi.org/10.3389/fncom.2017.00105 +Yihwa Kim,Modulating the granularity of category formation by global cortical states.,2008,2008,Front. Comput. Neurosci.,,db/journals/ficn/ficn2008.html#KimVS08,https://doi.org/10.3389/neuro.10.001.2008 +Christiane Linster,Decorrelation of Odor Representations via Spike Timing-Dependent Plasticity.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#LinsterC10,https://doi.org/10.3389/fncom.2010.00157 +Jorrit Steven Montijn,Population coding in mouse visual cortex: response reliability and dissociability of stimulus tuning and noise correlation.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#MontijnVP14,https://doi.org/10.3389/fncom.2014.00058 +Lorenz Gönner,Predictive Place-Cell Sequences for Goal-Finding Emerge from Goal Memory and the Cognitive Map: A Computational Model.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#GonnerVH17,https://doi.org/10.3389/fncom.2017.00084 +James Trousdale,A generative spike train model with time-structured higher order correlations.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#TrousdaleHSJ13,https://doi.org/10.3389/fncom.2013.00084 +José Francisco Gómez González,Distinguishing Linear vs. Non-Linear Integration in CA1 Radial Oblique Dendrites: It's about Time.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#GonzalezMP11,https://doi.org/10.3389/fncom.2011.00044 +Ellisha N. Marongelli,The advantage of flexible neuronal tunings in neural network models for motor learning.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#MarongelliT13,https://doi.org/10.3389/fncom.2013.00100 +Christoph Börgers,Toggling between gamma-frequency activity and suppression of cell assemblies.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#BorgersW13,https://doi.org/10.3389/fncom.2013.00033 +Mark D. McDonnell,Editorial: Neuronal Stochastic Variability: Influences on Spiking Dynamics and Network Activity.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#McDonnellGL16,https://doi.org/10.3389/fncom.2016.00038 +Adam H. Marblestone,Physical principles for scalable neural recording.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#MarblestoneZMSCGASKDSAMCRBCK13,https://doi.org/10.3389/fncom.2013.00137 +Rebeca Marfil,Combining segmentation and attention: a new foveal attention model.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#MarfilPB14,https://doi.org/10.3389/fncom.2014.00096 +Sergio Oscar Verduzco-Flores,How the credit assignment problems in motor control could be solved after the cerebellum predicts increases in error.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Verduzco-Flores15,https://doi.org/10.3389/fncom.2015.00039 +Ashvin Shah,Finding minimal action sequences with a simple evaluation of actions.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#ShahG14,https://doi.org/10.3389/fncom.2014.00151 +Francesca Pittau,Contributions of EEG-fMRI to Assessing the Epileptogenicity of Focal Cortical Dysplasia.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#PittauFFDG17,https://doi.org/10.3389/fncom.2017.00008 +Bo Peng,Examining Brain Morphometry Associated with Self-Esteem in Young Adults Using Multilevel-ROI-Features-Based Classification Method.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#PengLSZZWD17,https://doi.org/10.3389/fncom.2017.00037 +Pavel Esir,Feature Detection in Visual Cortex during Different Functional States.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#EsirST17,https://doi.org/10.3389/fncom.2017.00021 +Samuel Gershman,Time representation in reinforcement learning models of the basal ganglia.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#GershmanML14,https://doi.org/10.3389/fncom.2013.00194 +Adam H. Marblestone,Toward an Integration of Deep Learning and Neuroscience.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#MarblestoneWK16,https://doi.org/10.3389/fncom.2016.00094 +Tim N. Palmer,Solving difficult problems creatively: a role for energy optimised deterministic/stochastic hybrid computing.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#PalmerO15,https://doi.org/10.3389/fncom.2015.00124 +Nicolangelo Iannella,Modulating STDP Balance Impacts the Dendritic Mosaic.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#IannellaL17,https://doi.org/10.3389/fncom.2017.00042 +Eric Y. Hu,Volterra representation enables modeling of complex synaptic nonlinear dynamics in large-scale simulations.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#HuBSBB15,https://doi.org/10.3389/fncom.2015.00112 +Dominik Endres,Segmenting sign language into motor primitives with Bayesian binning.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#EndresMFG13,https://doi.org/10.3389/fncom.2013.00068 +Jeff Orchard,Does the Entorhinal Cortex use the Fourier Transform?,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#OrchardYJ13,https://doi.org/10.3389/fncom.2013.00179 +Faten Mina,Modulation of epileptic activity by deep brain stimulation: a model-based study of frequency-dependent effects.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#MinaBPBW13,https://doi.org/10.3389/fncom.2013.00094 +Narayan Srinivasa,Unsupervised discrimination of patterns in spiking neural networks with excitatory and inhibitory synaptic plasticity.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#SrinivasaC14,https://doi.org/10.3389/fncom.2014.00159 +Adam C. Snyder,Variance in population firing rate as a measure of slow time-scale correlation.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#SnyderMS13,https://doi.org/10.3389/fncom.2013.00176 +Chun-Wei Yuan,Recurrent coupling improves discrimination of temporal spike patterns.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#YuanL12,https://doi.org/10.3389/fncom.2012.00025 +Weiliang Chen,Clustering Predicts Memory Performance in Networks of Spiking and Non-Spiking Neurons.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#ChenMASCD11,https://doi.org/10.3389/fncom.2011.00014 +Qolamreza R. Razlighi,Task-Evoked Negative BOLD Response in the Default Mode Network Does Not Alter Its Functional Connectivity.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#Razlighi18,https://doi.org/10.3389/fncom.2018.00067 +Se-Woong Park,Learning to never forget - time scales and specificity of long-term memory of a motor skill.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#ParkDS13,https://doi.org/10.3389/fncom.2013.00111 +Ronald J. Janssen,Quantifying uncertainty in brain network measures using Bayesian connectomics.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#JanssenHHG14,https://doi.org/10.3389/fncom.2014.00126 +Andrea Clerico,Electroencephalography Amplitude Modulation Analysis for Automated Affective Tagging of Music Video Clips.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#ClericoTGJF18,https://doi.org/10.3389/fncom.2017.00115 +Lindsay Rutter,Graph theoretical analysis of resting magnetoencephalographic functional connectivity networks.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#RutterNHCAWC13,https://doi.org/10.3389/fncom.2013.00093 +Marina Chistiakova,Homeostatic role of heterosynaptic plasticity: models and experiments.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ChistiakovaBCBV15,https://doi.org/10.3389/fncom.2015.00089 +Irit Nowik,Losing the battle but winning the war: game theoretic analysis of the competition between motoneurons innervating a skeletal muscle.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#NowikZS12,https://doi.org/10.3389/fncom.2012.00016 +Paul Chorley,Dopamine-Signaled Reward Predictions Generated by Competitive Excitation and Inhibition in a Spiking Neural Network Model.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#ChorleyS11,https://doi.org/10.3389/fncom.2011.00021 +Lewis L. Chuang,Learned Non-Rigid Object Motion is a View-Invariant Cue to Recognizing Novel Objects.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#ChuangVB12,https://doi.org/10.3389/fncom.2012.00026 +Alexander Schwegmann,Depth information in natural environments derived from optic flow by insect motion detection system: a model analysis.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#SchwegmannLE14,https://doi.org/10.3389/fncom.2014.00083 +Matthias H. Hennig,Theoretical models of synaptic short term plasticity.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#Hennig13,https://doi.org/10.3389/fncom.2013.00045 +Moritz Helias,Equilibrium and response properties of the integrate-and-fire neuron in discrete time.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#HeliasDDR10,https://doi.org/10.3389/neuro.10.029.2009 +Robert Rosenbaum,A Diffusion Approximation and Numerical Methods for Adaptive Neuron Models with Stochastic Inputs.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#Rosenbaum16,https://doi.org/10.3389/fncom.2016.00039 +Hinnerk Feldwisch-Drentrup,Identification of Preseizure States in Epilepsy: A Data-Driven Approach for Multichannel EEG Recordings.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#Feldwisch-DrentrupSSTDESL11,https://doi.org/10.3389/fncom.2011.00032 +Mattia D'Andola,Spatiotemporal characteristics of muscle patterns for ball catching.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#DAndolaCPFLd13,https://doi.org/10.3389/fncom.2013.00107 +Nicole A. Pelot,Modeling Current Sources for Neural Stimulation in COMSOL.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#PelotTG18,https://doi.org/10.3389/fncom.2018.00040 +Anselm Brachmann,Computational and Experimental Approaches to Visual Aesthetics.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#BrachmannR17,https://doi.org/10.3389/fncom.2017.00102 +Eric Chalmers,Computational Properties of the Hippocampus Increase the Efficiency of Goal-Directed Foraging through Hierarchical Reinforcement Learning.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ChalmersLG16,https://doi.org/10.3389/fncom.2016.00128 +Anne B. Sereno,Population Coding of Visual Space: Comparison of Spatial Representations in Dorsal and Ventral Pathways.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#SerenoL11,https://doi.org/10.3389/fncom.2010.00159 +Adam Sol Shai,Spike-timing control by dendritic plateau potentials in the presence of synaptic barrages.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#ShaiKA14,https://doi.org/10.3389/fncom.2014.00089 +Anke Meyer-Bäse,Dynamical Graph Theory Networks Methods for the Analysis of Sparse Functional Connectivity Networks and for Determining Pinning Observability in Brain Networks.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#Meyer-BaseRIMLS17,https://doi.org/10.3389/fncom.2017.00087 +Yuichi Yamashita,Cooperation of Deterministic Dynamics and Random Noise in Production of Complex Syntactical Avian Song Sequences: A Neural Network Model.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#YamashitaOOT11,https://doi.org/10.3389/fncom.2011.00018 +James J. Wright,On the dynamics of cortical development: synchrony and synaptic self-organization.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#WrightB13,https://doi.org/10.3389/fncom.2013.00004 +Xiaxia Xu,Reduction in LFP cross-frequency coupling between theta and gamma rhythms associated with impaired STP and LTP in a rat model of brain ischemia.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#XuZZ13,https://doi.org/10.3389/fncom.2013.00027 +Xiao Wang,Learning Peri-saccadic Remapping of Receptive Field from Experience in Lateral Intraparietal Area.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#WangWZW17,https://doi.org/10.3389/fncom.2017.00110 +Hesam Setareh,Cortical Dynamics in Presence of Assemblies of Densely Connected Weight-Hub Neurons.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#SetarehDPG17,https://doi.org/10.3389/fncom.2017.00052 +Prasad Shirvalkar,Closed-Loop Deep Brain Stimulation for Refractory Chronic Pain.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#ShirvalkarVDC18,https://doi.org/10.3389/fncom.2018.00018 +Armando Romani,Computational modeling of the effects of amyloid-beta on release probability at hippocampal synapses.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#RomaniMBLPMM13,https://doi.org/10.3389/fncom.2013.00001 +Yuan Yang 0002,Nonlinear Coupling between Cortical Oscillations and Muscle Activity during Isotonic Wrist Flexion.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#YangSRHS16,https://doi.org/10.3389/fncom.2016.00126 +Yuki Hashimoto,The Amount of Time Dilation for Visual Flickers Corresponds to the Amount of Neural Entrainments Measured by EEG.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#HashimotoY18,https://doi.org/10.3389/fncom.2018.00030 +Chethan Pandarinath,A novel mechanism for switching a neural system from one state to another.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#PandarinathBVPTN10,https://doi.org/10.3389/fncom.2010.00002 +Julia M. Kroos,Geometry Shapes Propagation: Assessing the Presence and Absence of Cortical Symmetries through a Computational Model of Cortical Spreading Depression.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#KroosDCSG16,https://doi.org/10.3389/fncom.2016.00006 +Stefano Cardanobile,Emergent Properties of Interacting Populations of Spiking Neurons.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#CardanobileR11,https://doi.org/10.3389/fncom.2011.00059 +Stewart Heitmann,A computational role for bistability and traveling waves in motor cortex.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#HeitmannGB12,https://doi.org/10.3389/fncom.2012.00067 +Francesca Barbieri,Irregular persistent activity induced by synaptic excitatory feedback.,2007,2007,Front. Comput. Neurosci.,,db/journals/ficn/ficn2007.html#BarbieriB07,https://doi.org/10.3389/neuro.10.005.2007 +Julien Frère,Between-subject variability of muscle synergies during a complex motor skill.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#FrereH12,https://doi.org/10.3389/fncom.2012.00099 +David T. J. Liley,The Mesoscopic Modeling of Burst Suppression during Anesthesia.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#LileyW13,https://doi.org/10.3389/fncom.2013.00046 +William Land,From action representation to action execution: exploring the links between cognitive and biomechanical levels of motor control.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#LandVBS13,https://doi.org/10.3389/fncom.2013.00127 +Jan Kneissler,Simultaneous Learning and Filtering without Delusions: A Bayes-Optimal Derivation of Combining Predictive Inference and Adaptive Filtering.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#KneisslerDFB15,https://doi.org/10.3389/fncom.2015.00047 +Daniele Borzelli,Effort minimization and synergistic muscle recruitment for three-dimensional force generation.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#BorzelliBPd13,https://doi.org/10.3389/fncom.2013.00186 +Volker Pernice,The relevance of network micro-structure for neural dynamics.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#PerniceDCR13,https://doi.org/10.3389/fncom.2013.00072 +Mitra Abedini,Recording Neural Activity Based on Surface Plasmon Resonance by Optical Fibers-A Computational Analysis.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#AbediniTS18,https://doi.org/10.3389/fncom.2018.00061 +Patrick A. Shoemaker,Neuronal networks with NMDARs and lateral inhibition implement winner-takes-all.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Shoemaker15,https://doi.org/10.3389/fncom.2015.00012 +Sharon Israely,Muscle Synergies Control during Hand-Reaching Tasks in Multiple Directions Post-stroke.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#IsraelyLMC18,https://doi.org/10.3389/fncom.2018.00010 +Tomohiko Takei,Synaptic and functional linkages between spinal premotor interneurons and hand-muscle activity during precision grip.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#TakeiS13,https://doi.org/10.3389/fncom.2013.00040 +Petra Ritter,State-dependencies of learning across brain scales.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#RitterBBDHPSSVK15,https://doi.org/10.3389/fncom.2015.00001 +Dominic I. Standage,Gain Modulation by an Urgency Signal Controls the Speed-Accuracy Trade-Off in a Network Model of a Cortical Decision Circuit.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#StandageYWD11,https://doi.org/10.3389/fncom.2011.00007 +Francesca Rocchi,Visual motion integration is mediated by directional ambiguities in local motion signals.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#RocchiLW13,https://doi.org/10.3389/fncom.2013.00167 +Maxime Ambard,Support vector machines for spike pattern classification with a leaky integrate-and-fire neuron.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#AmbardR12,https://doi.org/10.3389/fncom.2012.00078 +Fatma Gargouri,The Influence of Preprocessing Steps on Graph Theory Measures Derived from Resting State fMRI.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#GargouriKDHLV18,https://doi.org/10.3389/fncom.2018.00008 +Antonio Fernández-Ruiz,Identifying the synaptic origin of ongoing neuronal oscillations through spatial discrimination of electric fields.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#Fernandez-RuizH13,https://doi.org/10.3389/fncom.2013.00005 +Pouyan Rafiei Fard,A Bayesian Reformulation of the Extended Drift-Diffusion Model in Perceptual Decision Making.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#FardPWKB17,https://doi.org/10.3389/fncom.2017.00029 +Michael Graupner,Mechanisms of induction and maintenance of spike-timing dependent plasticity in biophysical synapse models.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#GraupnerB10,https://doi.org/10.3389/fncom.2010.00136 +Andrey Babichev,Topological Schemas of Cognitive Maps and Spatial Learning.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#BabichevCD16,https://doi.org/10.3389/fncom.2016.00018 +Manish N. Sreenivasa,Optimal Control Based Stiffness Identification of an Ankle-Foot Orthosis Using a Predictive Walking Model.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#SreenivasaMFMW17,https://doi.org/10.3389/fncom.2017.00023 +Pilar Bachiller,A Spiking Neural Model of HT3D for Corner Detection.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#BachillerMB18,https://doi.org/10.3389/fncom.2018.00037 +Kai J. Miller,Does rhythmic entrainment represent a generalized mechanism for organizing computation in the brain?,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#MillerFH12,https://doi.org/10.3389/fncom.2012.00085 +Elaine E. Orendorff,Bayesian Analysis of Perceived Eye Level.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#OrendorffKPA16,https://doi.org/10.3389/fncom.2016.00135 +Pengsheng Zheng,Striatal Network Models of Huntington's Disease Dysfunction Phenotypes.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ZhengK17,https://doi.org/10.3389/fncom.2017.00070 +Dmytro Grytskyy,A unified view on weakly correlated recurrent networks.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#GrytskyyTDH13,https://doi.org/10.3389/fncom.2013.00131 +Roey Schurr,Temporal Dissociation of Neocortical and Hippocampal Contributions to Mental Time Travel Using Intracranial Recordings in Humans.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#SchurrNESSBA18,https://doi.org/10.3389/fncom.2018.00011 +Loreen Hertäg,An Approximation to the Adaptive Exponential Integrate-and-Fire Neuron Model Allows Fast and Predictive Fitting to Physiological Data.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#HertagHGD12,https://doi.org/10.3389/fncom.2012.00062 +Lirong Tan,A Computational Model for the Automatic Diagnosis of Attention Deficit Hyperactivity Disorder Based on Functional Brain Volume.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#TanGREL17,https://doi.org/10.3389/fncom.2017.00075 +Christopher D. Fiorillo,The meaning of spikes from the neuron's point of view: predictive homeostasis generates the appearance of randomness.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#FiorilloKH14,https://doi.org/10.3389/fncom.2014.00049 +Pietro Quaglio,Detection and Evaluation of Spatio-Temporal Spike Patterns in Massively Parallel Spike Train Data with SPADE.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#QuaglioYTEG17,https://doi.org/10.3389/fncom.2017.00041 +KongFatt Wong,Neural circuit dynamics underlying accumulation of time-varying evidence during perceptual decision making.,2007,2007,Front. Comput. Neurosci.,,db/journals/ficn/ficn2007.html#WongHSW07,https://doi.org/10.3389/neuro.10.006.2007 +David Silverstein,Is Attentional Blink a Byproduct of Neocortical Attractors?,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#SilversteinL11,https://doi.org/10.3389/fncom.2011.00013 +Robin Spiess,Structural Plasticity Denoises Responses and Improves Learning Speed.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#SpiessG0D16,https://doi.org/10.3389/fncom.2016.00093 +Michael W. Reimann,Cliques of Neurons Bound into Cavities Provide a Missing Link between Structure and Function.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ReimannNSTPCDLH17,https://doi.org/10.3389/fncom.2017.00048 +Pengsheng Zheng,Robust development of synfire chains from multiple plasticity mechanisms.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#ZhengT14,https://doi.org/10.3389/fncom.2014.00066 +Shimon Marom,On the precarious path of reverse neuro-engineering.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#MaromMBGKE09,https://doi.org/10.3389/neuro.10.005.2009 +Mark D. McDonnell,Mathematical analysis and algorithms for efficiently and accurately implementing stochastic simulations of short-term synaptic depression and facilitation.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#McDonnellMS13,https://doi.org/10.3389/fncom.2013.00058 +Zachary P. Kilpatrick,Interareal coupling reduces encoding variability in multi-area models of spatial working memory.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#Kilpatrick13a,https://doi.org/10.3389/fncom.2013.00082 +Gunnar Schmidtmann,Detecting shapes in noise: tuning characteristics of global shape mechanisms.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#SchmidtmannGBL13,https://doi.org/10.3389/fncom.2013.00037 +Juan Jiang,Direct and indirect spino-cerebellar pathways: shared ideas but different functions in motor control.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#JiangAEA15,https://doi.org/10.3389/fncom.2015.00075 +Jaap van Pelt,An algorithm for finding candidate synaptic sites in computer generated networks of neurons with realistic morphologies.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#PeltCRMO10,https://doi.org/10.3389/fncom.2010.00148 +Kush Paul,Presence of a Chaotic Region at the Sleep-Wake Transition in a Simplified Thalamocortical Circuit Model.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#PaulCL16,https://doi.org/10.3389/fncom.2016.00091 +Xiaoxia Qu,Local Directional Probability Optimization for Quantification of Blurred Gray/White Matter Junction in Magnetic Resonance Image.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#QuYASZWBP17,https://doi.org/10.3389/fncom.2017.00083 +Concha Bielza,Bayesian networks in neuroscience: a survey.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#BielzaL14,https://doi.org/10.3389/fncom.2014.00131 +Fikret E. Kapucu,Spectral Entropy Based Neuronal Network Synchronization Analysis Based on Microelectrode Array Measurements.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#KapucuVMLLTH16,https://doi.org/10.3389/fncom.2016.00112 +Colin D. F. Horne,A Phenomenological Model of the Electrically Stimulated Auditory Nerve Fiber: Temporal and Biphasic Response Properties.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#HorneSS16,https://doi.org/10.3389/fncom.2016.00008 +Edmund T. Rolls,Finding and recognizing objects in natural scenes: complementary computations in the dorsal and ventral visual systems.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#RollsW14,https://doi.org/10.3389/fncom.2014.00085 +Devika Narain,Structure learning and the Occam's razor principle: a new view of human function acquisition.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#NarainSMBB14,https://doi.org/10.3389/fncom.2014.00121 +Atthaphon Viriyopase,When Long-Range Zero-Lag Synchronization is Feasible in Cortical Networks.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#ViriyopaseBZG12,https://doi.org/10.3389/fncom.2012.00049 +Anna Cattani,A Hybrid Model for the Computationally-Efficient Simulation of the Cerebellar Granular Layer.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#CattaniSC16,https://doi.org/10.3389/fncom.2016.00030 +Daniel C. Comstock,Sensorimotor Synchronization With Auditory and Visual Modalities: Behavioral and Neural Differences.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#ComstockHB18,https://doi.org/10.3389/fncom.2018.00053 +Eric A. Zilli,Analyses of Markov decision process structure regarding the possible strategic use of interacting memory systems.,2008,2008,Front. Comput. Neurosci.,,db/journals/ficn/ficn2008.html#ZilliH08,https://doi.org/10.3389/neuro.10.006.2008 +Ehsan Bolhasani,Direct connections assist neurons to detect correlation in small amplitude noises.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#BolhasaniAV13,https://doi.org/10.3389/fncom.2013.00108 +Balazs Szigeti,OpenWorm: an open-science approach to modeling Caenorhabditis elegans.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#SzigetiGVKPHCCIL14,https://doi.org/10.3389/fncom.2014.00137 +Amir Goldental,A computational paradigm for dynamic logic-gates in neuronal activity.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#GoldentalGVK14,https://doi.org/10.3389/fncom.2014.00052 +Yuri P. Ivanenko,Plasticity and modular control of locomotor patterns in neurological disorders with motor deficits.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#IvanenkoCSGMPL13,https://doi.org/10.3389/fncom.2013.00123 +Fereshteh Lagzi,A Markov model for the temporal dynamics of balanced random networks of finite size.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#LagziR14,https://doi.org/10.3389/fncom.2014.00142 +Brian J. Fischer,Resolution of interaural time differences in the avian sound localization circuit - a modeling study.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#FischerS14,https://doi.org/10.3389/fncom.2014.00099 +Thaddeus Cybulski,Spatial information in large-scale neural recordings.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#CybulskiGMZBCK15,https://doi.org/10.3389/fncom.2014.00172 +Tatiana Dashevskiy,Propensity for Bistability of Bursting and Silence in the Leech Heart Interneuron.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#DashevskiyC18,https://doi.org/10.3389/fncom.2018.00005 +Cliff C. Kerr,Cortical information flow in Parkinson's disease: a composite network/field model.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#KerrANCRL13,https://doi.org/10.3389/fncom.2013.00039 +James B. Aimone,Perspectives for computational modeling of cell replacement for neurological disorders.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#AimoneW13,https://doi.org/10.3389/fncom.2013.00150 +Marcel van Gerven,Computational Foundations of Natural Intelligence.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#Gerven17,https://doi.org/10.3389/fncom.2017.00112 +Gabriel A. Silva,The Need for the Emergence of Mathematical Neuroscience: Beyond Computation and Simulation.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#Silva11,https://doi.org/10.3389/fncom.2011.00051 +Christina Gremel,Premotor cortex is critical for goal-directed actions.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#GremelC13,https://doi.org/10.3389/fncom.2013.00110 +Marcel van Gerven,Editorial: Artificial Neural Networks as Models of Neural Information Processing.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#GervenB17,https://doi.org/10.3389/fncom.2017.00114 +Rodrigo Echeveste,Drifting States and Synchronization Induced Chaos in Autonomous Networks of Excitable Neurons.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#EchevesteG16,https://doi.org/10.3389/fncom.2016.00098 +Michael C. Avery,A large-scale neural network model of the influence of neuromodulatory levels on working memory and behavior.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#AveryDK13,https://doi.org/10.3389/fncom.2013.00133 +Sven Schrader,A Compositionality Machine Realized by a Hierarchic Architecture of Synfire Chains.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#SchraderDM11,https://doi.org/10.3389/fncom.2010.00154 +Nedialko I. Krouchev,Motor cortical regulation of sparse synergies provides a framework for the flexible control of precision walking.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#KrouchevD13,https://doi.org/10.3389/fncom.2013.00083 +Qiulei Dong,Commentary: Using goal-driven deep learning models to understand sensory cortex.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#DongWH18,https://doi.org/10.3389/fncom.2018.00004 +Joel Zylberberg,How Should Prey Animals Respond to Uncertain Threats?,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#ZylberbergD11,https://doi.org/10.3389/fncom.2011.00020 +Juan M. Galeazzi,The Development of Hand-Centered Visual Representations in the Primate Brain: A Computer Modeling Study Using Natural Visual Scenes.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#GaleazziMS15,https://doi.org/10.3389/fncom.2015.00147 +Sebastian Gerwinn,Bayesian inference for generalized linear models for spiking neurons.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#GerwinnMB10,https://doi.org/10.3389/fncom.2010.00012 +Jovana Belic,Decoding of human hand actions to handle missing limbs in neuroprosthetics.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#BelicF15,https://doi.org/10.3389/fncom.2015.00027 +Long Chen,Exploring Combinations of Different Color and Facial Expression Stimuli for Gaze-Independent BCIs.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ChenJDZWC16,https://doi.org/10.3389/fncom.2016.00005 +Pietro Balbi,Axon-somatic back-propagation in detailed models of spinal alpha motoneurons.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#BalbiMM15,https://doi.org/10.3389/fncom.2015.00015 +Shimon Marom,Adaptive transition rates in excitable membranes.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#Marom09,https://doi.org/10.3389/neuro.10.002.2009 +Ning Lan,Editorial: Neural and Computational Modeling of Movement Control.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#LanCG16,https://doi.org/10.3389/fncom.2016.00090 +Mark V. Albert,Saccadic gain adaptation is predicted by the statistics of natural fluctuations in oculomotor function.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#AlbertCTK12,https://doi.org/10.3389/fncom.2012.00096 +Denise Berger,Effective force control by muscle synergies.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Bergerd14,https://doi.org/10.3389/fncom.2014.00046 +Ivor Cribben,Detecting functional connectivity change points for single-subject fMRI data.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#CribbenWL13,https://doi.org/10.3389/fncom.2013.00143 +Jesús Alberto Garrido,Spike Timing Regulation on the Millisecond Scale by Distributed Synaptic Plasticity at the Cerebellum Input Stage: A Simulation Study.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#GarridoRD13,https://doi.org/10.3389/fncom.2013.00064 +Murray Shanahan,Large-scale network organization in the avian forebrain: a connectivity matrix and theoretical analysis.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#ShanahanBSWG13,https://doi.org/10.3389/fncom.2013.00089 +Eugen Czeizler,Geometrical tile design for complex neighborhoods.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#CzeizlerK09,https://doi.org/10.3389/neuro.10.020.2009 +Alexander Bird,Bayesian Inference of Synaptic Quantal Parameters from Correlated Vesicle Release.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#BirdWR16,https://doi.org/10.3389/fncom.2016.00116 +Jean-Pascal Pfister,STDP in Oscillatory Recurrent Networks: Theoretical Conditions for Desynchronization and Applications to Deep Brain Stimulation.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#PfisterT10,https://doi.org/10.3389/fncom.2010.00022 +Andrew Isaac Meso,Towards an understanding of the roles of visual areas MT and MST in computing speed.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#MesoS14,https://doi.org/10.3389/fncom.2014.00092 +Hooman Alikhanian,Quantifying effects of stochasticity in reference frame transformations on posterior distributions.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#AlikhanianCB15,https://doi.org/10.3389/fncom.2015.00082 +Ryota Kobayashi,Made-to-order spiking neuron model equipped with a multi-*cale adaptive threshold.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#KobayashiTS09,https://doi.org/10.3389/neuro.10.009.2009 +Dezso Nemeth,Age-dependent and coordinated shift in performance between implicit and explicit skill learning.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#NemethJF13,https://doi.org/10.3389/fncom.2013.00147 +Zeinab Mortezapouraghdam,Bayesian Modeling of the Dynamics of Phase Modulations and their Application to Auditory Event Related Potentials at Different Loudness Scales.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#Mortezapouraghdam16,https://doi.org/10.3389/fncom.2016.00002 +Ramón Guevara Erra,Neural Synchronization from the Perspective of Non-linear Dynamics.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ErraVR17,https://doi.org/10.3389/fncom.2017.00098 +Julien Modolo,The next move in neuromodulation therapy: a question of timing.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ModoloBL15,https://doi.org/10.3389/fncom.2014.00162 +Lei Xiao,Adaptive neural information processing with dynamical electrical synapses.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#XiaoZLLW13,https://doi.org/10.3389/fncom.2013.00036 +Emilio Salinas,Waiting is the Hardest Part: Comparison of Two Computational Strategies for Performing a Compelled-Response Task.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#SalinasSCZS10,https://doi.org/10.3389/fncom.2010.00153 +David Buxton,Striatal Neuropeptides Enhance Selection and Rejection of Sequential Actions.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#BuxtonBOG17,https://doi.org/10.3389/fncom.2017.00062 +Lawrence Wing-Chi Chan,Genetic algorithm supported by graphical processing unit improves the exploration of effective connectivity in functional brain imaging.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ChanPSCK15,https://doi.org/10.3389/fncom.2015.00050 +Denis A. Adamchik,Emergence of Relaxation Oscillations in Neurons Interacting With Non-stationary Ambient GABA.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#AdamchikMK18,https://doi.org/10.3389/fncom.2018.00019 +Hanan Shteingart,Wrestling Model of the Repertoire of Activity Propagation Modes in Quadruple Neural Networks.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#ShteingartRBB10,https://doi.org/10.3389/fncom.2010.00025 +Nicole Voges,Complex dynamics in recurrent cortical networks based on spatially realistic connectivities.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#VogesP12,https://doi.org/10.3389/fncom.2012.00041 +Christoph Teufel,The role of priors in Bayesian models of perception.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#TeufelSF13,https://doi.org/10.3389/fncom.2013.00025 +Srdjan Ostojic,Synaptic encoding of temporal contiguity.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#OstojicF13,https://doi.org/10.3389/fncom.2013.00032 +Eric O. Boyer,From ear to hand: the role of the auditory-motor loop in pointing to an auditory source.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#BoyerBBNWRHV13,https://doi.org/10.3389/fncom.2013.00026 +Kevin Sean Chen,Characterization of Predictive Behavior of a Retina by Mutual Information.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ChenCC17,https://doi.org/10.3389/fncom.2017.00066 +Alberto Testolin,The Role of Architectural and Learning Constraints in Neural Network Models: A Case Study on Visual Space Coding.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#TestolinGZ17,https://doi.org/10.3389/fncom.2017.00013 +Felix Droste,Interplay of two signals in a neuron with heterogeneous synaptic short-term plasticity.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#DrosteSL13,https://doi.org/10.3389/fncom.2013.00086 +Milad Lankarany,Inferring trial-to-trial excitatory and inhibitory synaptic inputs from membrane potential using Gaussian mixture Kalman filtering.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#LankaranyZST13,https://doi.org/10.3389/fncom.2013.00109 +Sorinel Adrian Oprisan,Low-dimensional attractor for neural activity from local field potentials in optogenetic mice.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#OprisanLTL15,https://doi.org/10.3389/fncom.2015.00125 +Reza Zomorrodi,Modeling thalamocortical cell: impact of Ca2+ channel distribution and cell geometry on firing pattern.,2008,2008,Front. Comput. Neurosci.,,db/journals/ficn/ficn2008.html#ZomorrodiKT08,https://doi.org/10.3389/neuro.10.005.2008 +Mohammad Daneshzand,Computational Stimulation of the Basal Ganglia Neurons with Cost Effective Delayed Gaussian Waveforms.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#DaneshzandFB17,https://doi.org/10.3389/fncom.2017.00073 +Jianbo Gao,Fast monitoring of epileptic seizures using recurrence time statistics of electroencephalography.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#GaoH13,https://doi.org/10.3389/fncom.2013.00122 +Juan Miguel López Gil,Method for Improving EEG Based Emotion Recognition by Combining It with Synchronized Biometric and Eye Tracking Technologies in a Non-invasive and Low Cost Way.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#GilVGG16,https://doi.org/10.3389/fncom.2016.00085 +Sven Jahnke,How chaotic is the balanced state?,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#JahnkeMT09,https://doi.org/10.3389/neuro.10.013.2009 +Pierre Yger,Addendum: Models of Metaplasticity: A Review of Concepts.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#YgerG16,https://doi.org/10.3389/fncom.2016.00004 +Ehud Ahissar,Seeing via Miniature Eye Movements: A Dynamic Hypothesis for Vision.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#AhissarA12,https://doi.org/10.3389/fncom.2012.00089 +James P. Crutchfield,Time resolution dependence of information measures for spiking neurons: scaling and universality.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#CrutchfieldDM15,https://doi.org/10.3389/fncom.2015.00105 +Kingsley J. A. Cox,Hebbian crosstalk prevents nonlinear unsupervised learning.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#CoxA09,https://doi.org/10.3389/neuro.10.011.2009 +Davide Reato,Computational model of neuron-astrocyte interactions during focal seizure generation.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#ReatoCPC12,https://doi.org/10.3389/fncom.2012.00081 +Neil D. B. Bruce,Visual Representation Determines Search Difficulty: Explaining Visual Search Asymmetries.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#BruceT11,https://doi.org/10.3389/fncom.2011.00033 +Sijie Zhou,Effects of Background Music on Objective and Subjective Performance Measures in an Auditory BCI.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ZhouAKCWJ16,https://doi.org/10.3389/fncom.2016.00105 +Chengcheng Huang,A Neuronal Network Model for Pitch Selectivity and Representation.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#HuangR16,https://doi.org/10.3389/fncom.2016.00057 +Mir Jalil Razavi,Radial Structure Scaffolds Convolution Patterns of Developing Cerebral Cortex.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#RazaviZCLPZGHWL17,https://doi.org/10.3389/fncom.2017.00076 +Pragathi Priyadharsini Balasubramani,A network model of basal ganglia for understanding the roles of dopamine and serotonin in reward-punishment-risk based decision making.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#BalasubramaniCR15,https://doi.org/10.3389/fncom.2015.00076 +Douglas Zhou,Analysis of sampling artifacts on the Granger causality analysis for topology extraction of neuronal dynamics.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#ZhouZXC14,https://doi.org/10.3389/fncom.2014.00075 +Lele Xu,A pooling-LiNGAM algorithm for effective connectivity analysis of fMRI data.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#XuFWCGZY14,https://doi.org/10.3389/fncom.2014.00125 +Takashi Matsubara,Conduction Delay Learning Model for Unsupervised and Supervised Classification of Spatio-Temporal Spike Patterns.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#Matsubara17,https://doi.org/10.3389/fncom.2017.00104 +Keiji Ota,Motor planning under temporal uncertainty is suboptimal when the gain function is asymmetric.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#OtaSK15,https://doi.org/10.3389/fncom.2015.00088 +Zhihui Wang,Eliminating Absence Seizures through the Deep Brain Stimulation to Thalamus Reticular Nucleus.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#WangW17,https://doi.org/10.3389/fncom.2017.00022 +Clemens Brunner,Volume Conduction Influences Scalp-Based Connectivity Estimates.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#BrunnerBSMM16,https://doi.org/10.3389/fncom.2016.00121 +Andrey Babichev,Topological Schemas of Memory Spaces.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#BabichevD18,https://doi.org/10.3389/fncom.2018.00027 +Pamela Reitsma,Correlation transfer from basal ganglia to thalamus in Parkinson's disease.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#ReitsmaDR11,https://doi.org/10.3389/fncom.2011.00058 +Viola Folli,On the Maximum Storage Capacity of the Hopfield Model.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#FolliLR17,https://doi.org/10.3389/fncom.2016.00144 +Antonio G. Zippo,The Compression Flow as a Measure to Estimate the Brain Connectivity Changes in Resting State fMRI and 18FDG-PET Alzheimer's Disease Connectomes.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ZippoCBB15,https://doi.org/10.3389/fncom.2015.00148 +Luis-Eduardo Imbernón Cuadrado,ARTIE: An Integrated Environment for the Development of Affective Robot Tutors.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#CuadradoRL16,https://doi.org/10.3389/fncom.2016.00077 +Ke Zeng,Complex network analysis of resting state EEG in amnestic mild cognitive impairment patients with type 2 diabetes.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ZengWOBWL15,https://doi.org/10.3389/fncom.2015.00133 +Tilo Schwalger,Patterns of interval correlations in neural oscillators with adaptation.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#SchwalgerL13,https://doi.org/10.3389/fncom.2013.00164 +Vignesh Muralidharan,A computational model of altered gait patterns in Parkinson's Disease patients negotiating narrow doorways.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#MuralidharanBCLM14,https://doi.org/10.3389/fncom.2013.00190 +Lukas Brostek,An Information-Theoretic Approach for Evaluating Probabilistic Tuning Functions of Single Neurons.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#BrostekEOMBG11,https://doi.org/10.3389/fncom.2011.00015 +Yuan-Pin Lin,Improving Cross-Day EEG-Based Emotion Classification Using Robust Principal Component Analysis.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#LinJY17,https://doi.org/10.3389/fncom.2017.00064 +James Humble,Spatio-temporal pattern recognizers using spiking neurons and spike-timing-dependent plasticity.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#HumbleDW12,https://doi.org/10.3389/fncom.2012.00084 +Mahsa Khoshkhou,Beta-Rhythm Oscillations and Synchronization Transition in Network Models of Izhikevich Neurons: Effect of Topology and Synaptic Type.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#KhoshkhouM18,https://doi.org/10.3389/fncom.2018.00059 +Robert Lowe,Minimalist Social-Affective Value for Use in Joint Action: A Neural-Computational Hypothesis.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#LoweALGMV16,https://doi.org/10.3389/fncom.2016.00088 +Daniel A. Braun,Online Adaptation and Over-Trial Learning in Macaque Visuomotor Control.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#BraunAPVRM11,https://doi.org/10.3389/fncom.2011.00027 +Enrico Chiovetto,Investigating reduction of dimensionality during single-joint elbow movements: a case study on muscle synergies.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#ChiovettoBDPP13,https://doi.org/10.3389/fncom.2013.00011 +Huu Hoang,Segmental Bayesian estimation of gap-junctional and inhibitory conductance of inferior olive neurons from spike trains with complicated dynamics.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#HoangYTSKT15,https://doi.org/10.3389/fncom.2015.00056 +Mehdi Daemi,A kinematic model for 3-D head-free gaze-shifts.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#DaemiC15,https://doi.org/10.3389/fncom.2015.00072 +Ahmed A. Moustafa,Freezing of gait and response conflict in Parkinson's disease: computational directions.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Moustafa14,https://doi.org/10.3389/fncom.2014.00007 +Ariel Zylberberg,Neurophysiological bases of exponential sensory decay and top-down memory retrieval: a model.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#ZylberbergDMS09,https://doi.org/10.3389/neuro.10.004.2009 +Jozien B. M. Goense,fMRI at High Spatial Resolution: Implications for BOLD-Models.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#GoenseBL16,https://doi.org/10.3389/fncom.2016.00066 +Talis Bachmann,Can Quality be Extracted from Quantification of Interactions by NBS?,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#Bachmann12,https://doi.org/10.3389/fncom.2012.00022 +Marta Russo,Dimensionality of joint torques and muscle patterns for reaching.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#RussoDPLd14,https://doi.org/10.3389/fncom.2014.00024 +Kamal Abuhassan,Compensating for thalamocortical synaptic loss in Alzheimer's disease.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#AbuhassanCM14,https://doi.org/10.3389/fncom.2014.00065 +Ken Takiyama,Context-dependent memory decay is evidence of effort minimization in motor learning: a computational study.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Takiyama15,https://doi.org/10.3389/fncom.2015.00004 +Neville Hogan,Dynamic primitives in the control of locomotion.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#HoganS13,https://doi.org/10.3389/fncom.2013.00071 +Douglas J. Bakkum,Parameters for burst detection.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#BakkumRFFHT14,https://doi.org/10.3389/fncom.2013.00193 +Joshua K. Hartshorne,Tracking Replicability as a Method of Post-Publication Open Evaluation.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#HartshorneS12,https://doi.org/10.3389/fncom.2012.00008 +Ning Lan,Fusimotor control of spindle sensitivity regulates central and peripheral coding of joint angles.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#LanH12,https://doi.org/10.3389/fncom.2012.00066 +Tatjana Tchumatchenko,Signatures of synchrony in pairwise count correlations.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#TchumatchenkoGVW10,https://doi.org/10.3389/neuro.10.001.2010 +Francesca Camera,The CNP signal is able to silence a supra threshold neuronal model.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#CameraPTADPL15,https://doi.org/10.3389/fncom.2015.00044 +Rodrigo Sigala,The role of alpha-rhythm states in perceptual learning: insights from experiments and computational models.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#SigalaHRDR14,https://doi.org/10.3389/fncom.2014.00036 +Takahiro Doi,Cross-matching: a modified cross-correlation underlying threshold energy model and match-based depth perception.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#DoiF14,https://doi.org/10.3389/fncom.2014.00127 +Fabiano Baroni,Heterogeneity of heterogeneities in neuronal networks.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#BaroniM14,https://doi.org/10.3389/fncom.2014.00161 +Bernd J. Kröger,Modeling Interactions between Speech Production and Perception: Speech Error Detection at Semantic and Phonological Levels and the Inner Speech Loop.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#KrogerCBE16,https://doi.org/10.3389/fncom.2016.00051 +Shimon Marom,Relational Dynamics in Perception: Impacts on Trial-to-trial Variation.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#MaromW11,https://doi.org/10.3389/fncom.2011.00016 +Kyeongwon Cho,Analysis of Nociceptive Information Encoded in the Temporal Discharge Patterns of Cutaneous C-Fibers.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ChoJKLCKJJ16,https://doi.org/10.3389/fncom.2016.00118 +Maximilian Uhlig,Critical dynamics in associative memory networks.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#UhligLGH13,https://doi.org/10.3389/fncom.2013.00087 +Jan Zimmermann,Network-based statistics for a community driven transparent publication process.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#ZimmermannRUSFJWG12,https://doi.org/10.3389/fncom.2012.00011 +Dimitris A. Pinotsis,Neural masses and fields: modeling the dynamics of brain activity.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#PinotsisRGF14,https://doi.org/10.3389/fncom.2014.00149 +Andreas Stöckel,Binary Associative Memories as a Benchmark for Spiking Neuromorphic Hardware.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#StockelJT017,https://doi.org/10.3389/fncom.2017.00071 +Sora Ahn,Prediction of the Seizure Suppression Effect by Electrical Stimulation via a Computational Modeling Approach.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#AhnJJLL17,https://doi.org/10.3389/fncom.2017.00039 +Ramin Azodi-Avval,Phase-dependent modulation as a novel approach for therapeutic brain stimulation.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Azodi-AvvalG15,https://doi.org/10.3389/fncom.2015.00026 +Elisa Magosso,Audiovisual Rehabilitation in Hemianopia: A Model-Based Theoretical Investigation.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#MagossoCB17,https://doi.org/10.3389/fncom.2017.00113 +Luozheng Li,Dynamic Information Encoding With Dynamic Synapses in Neural Adaptation.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#LiMZWW18,https://doi.org/10.3389/fncom.2018.00016 +Yanqing Chen,Versatile networks of simulated spiking neurons displaying winner-take-all behavior.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#ChenME13,https://doi.org/10.3389/fncom.2013.00016 +Dragoljub Gajic,Detection of epileptiform activity in EEG signals based on time-frequency and nonlinear analysis.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#GajicGDGS15,https://doi.org/10.3389/fncom.2015.00038 +Archana Ram,Is Smaller Better? A Proposal to Use Bacteria For Neuroscientific Modeling.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#RamL18,https://doi.org/10.3389/fncom.2018.00007 +Yimy Amarillo,Analysis of the role of the low threshold currents IT and Ih in intrinsic delta oscillations of thalamocortical neurons.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#AmarilloMN15,https://doi.org/10.3389/fncom.2015.00052 +Seungmoon Song,Evaluation of a Neuromechanical Walking Control Model Using Disturbance Experiments.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#SongG17,https://doi.org/10.3389/fncom.2017.00015 +Alexander Reyes,Beta Band Corticomuscular Drive Reflects Muscle Coordination Strategies.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ReyesLKC17,https://doi.org/10.3389/fncom.2017.00017 +Fang Han,Optimum neural tuning curves for information efficiency with rate coding and finite-time window.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#HanWFS15,https://doi.org/10.3389/fncom.2015.00067 +Zhuoyi Song,Random Photon Absorption Model Elucidates How Early Gain Control in Fly Photoreceptors Arises from Quantal Sampling.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#SongZJ16,https://doi.org/10.3389/fncom.2016.00061 +Aslak Tveito,An Evaluation of the Accuracy of Classical Models for Computing the Membrane Potential and Extracellular Potential for Neurons.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#TveitoJLPSEMHE17,https://doi.org/10.3389/fncom.2017.00027 +Lyle Muller,Spike-Timing Dependent Plasticity and Feed-Forward Input Oscillations Produce Precise and Invariant Spike Phase-Locking.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#MullerBG11,https://doi.org/10.3389/fncom.2011.00045 +Huiyan Li,Impacts of clustering on noise-induced spiking regularity in the excitatory neuronal networks of subnetworks.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#LiSX15,https://doi.org/10.3389/fncom.2015.00085 +Frederic Zubler,A framework for modeling the growth and development of neurons and networks.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#ZublerD09,https://doi.org/10.3389/neuro.10.025.2009 +Kento Suzuki,Bayesian Estimation of Phase Dynamics Based on Partially Sampled Spikes Generated by Realistic Model Neurons.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#SuzukiAK18,https://doi.org/10.3389/fncom.2017.00116 +Gordon Pipa,Higher Order Spike Synchrony in Prefrontal Cortex during Visual Memory.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#PipaM11,https://doi.org/10.3389/fncom.2011.00023 +Daniel H. Elijah,Thalamic neuron models encode stimulus information by burst-size modulation.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ElijahSM15,https://doi.org/10.3389/fncom.2015.00113 +Andrea d'Avella,Control of reaching movements by muscle synergy combinations.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#dAvellaL13,https://doi.org/10.3389/fncom.2013.00042 +Maurizio De Pittà,Computational quest for understanding the role of astrocyte signaling in synaptic transmission and plasticity.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#PittaVBPVB12,https://doi.org/10.3389/fncom.2012.00098 +Joseph Chrol-Cannon,Learning structure of sensory inputs with synaptic plasticity leads to interference.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Chrol-CannonJ15,https://doi.org/10.3389/fncom.2015.00103 +Måns Henningson,Analysis and Modeling of Subthreshold Neural Multi-Electrode Array Data by Statistical Field Theory.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#HenningsonI17,https://doi.org/10.3389/fncom.2017.00026 +Pavel Anatolyevich Puzerey,On how correlations between excitatory and inhibitory synaptic inputs maximize the information rate of neuronal firing.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#PuzereyG14,https://doi.org/10.3389/fncom.2014.00059 +Samuel A. Neymotin,Emergence of Physiological Oscillation Frequencies in a Computer Model of Neocortex.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#NeymotinLPFL11,https://doi.org/10.3389/fncom.2011.00019 +Asaph Zylbertal,The Slow Dynamics of Intracellular Sodium Concentration Increase the Time Window of Neuronal Integration: A Simulation Study.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ZylbertalYW17,https://doi.org/10.3389/fncom.2017.00085 +Kristofer E. Bouchard,Role of the site of synaptic competition and the balance of learning forces for Hebbian encoding of probabilistic Markov sequences.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#BouchardGB15,https://doi.org/10.3389/fncom.2015.00092 +Satrajit S. Ghosh,Learning from open source software projects to improve scientific review.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#GhoshKAM12,https://doi.org/10.3389/fncom.2012.00018 +Nikolaus Kriegeskorte,An emerging consensus for open evaluation: 18 visions for the future of scientific publishing.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#KriegeskorteWD12,https://doi.org/10.3389/fncom.2012.00094 +Tuomo Mäki-Marttunen,Information Diversity in Structure and Dynamics of Simulated Neuronal Networks.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#Maki-MarttunenANKRYL11,https://doi.org/10.3389/fncom.2011.00026 +James M. Kunert-Graf,Multistability and Long-Timescale Transients Encoded by Network Structure in a Model of C. elegans Connectome Dynamics.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#Kunert-GrafSWK17,https://doi.org/10.3389/fncom.2017.00053 +Niceto Rafael Luque,Fast convergence of learning requires plasticity between inferior olive and deep cerebellar nuclei in a manipulation task: a closed-loop robotic simulation.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#LuqueGCDR14,https://doi.org/10.3389/fncom.2014.00097 +Yansong Chua,Modeling the calcium spike as a threshold triggered fixed waveform for synchronous inputs in the fluctuation regime.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ChuaHM15,https://doi.org/10.3389/fncom.2015.00091 +Maciej Kaminski,Directed Transfer Function is not influenced by volume conduction - inexpedient pre-processing should be avoided.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#KaminskiB14,https://doi.org/10.3389/fncom.2014.00061 +Andrés úbeda,Estimation of Neuromuscular Primitives from EEG Slow Cortical Potentials in Incomplete Spinal Cord Injury Individuals for a New Class of Brain-Machine Interfaces.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#UbedaAFS18,https://doi.org/10.3389/fncom.2018.00003 +Marije ter Wal,Phase Difference between Model Cortical Areas Determines Level of Information Transfer.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#WalT17,https://doi.org/10.3389/fncom.2017.00006 +John J. Wade,Self-repair in a Bidirectionally Coupled Astrocyte-Neuron (AN) System based on Retrograde Signaling.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#WadeMHCK12,https://doi.org/10.3389/fncom.2012.00076 +Sungwoo Ahn,Synchronized Beta-Band Oscillations in a Model of the Globus Pallidus-Subthalamic Nucleus Network under External Input.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#AhnZWR16,https://doi.org/10.3389/fncom.2016.00134 +Eric Y. Hu,A Glutamatergic Spine Model to Enable Multi-Scale Modeling of Nonlinear Calcium Dynamics.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#HuMBSBB18,https://doi.org/10.3389/fncom.2018.00058 +Kandan Ramakrishnan,Visual dictionaries as intermediate features in the human brain.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#RamakrishnanSGS15,https://doi.org/10.3389/fncom.2014.00168 +Kang Li,Neurons in Primate Visual Cortex Alternate between Responses to Multiple Stimuli in Their Receptive Field.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#LiKKTDB16,https://doi.org/10.3389/fncom.2016.00141 +Danilo Pezo,Diffusion approximation-based simulation of stochastic ion channels: which method to use?,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#PezoSO14,https://doi.org/10.3389/fncom.2014.00139 +Amir Tal,The proactive brain and the fate of dead hypotheses.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#TalB14,https://doi.org/10.3389/fncom.2014.00138 +Matthieu Gilson,STDP in Recurrent Neuronal Networks.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#GilsonBH10,https://doi.org/10.3389/fncom.2010.00023 +Jesse Palma,Persistence and storage of activity patterns in spiking recurrent cortical networks: modulation of sigmoid signals by after-hyperpolarization currents and acetylcholine.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#PalmaGV12,https://doi.org/10.3389/fncom.2012.00042 +Thomas Hoellinger,Biological oscillations for learning walking coordination: dynamic recurrent neural network functionally models physiological central pattern generator.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#HoellingerPDCSCBIDC13,https://doi.org/10.3389/fncom.2013.00070 +John D. Long,A Statistical Description of Neural Ensemble Dynamics.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#LongC11,https://doi.org/10.3389/fncom.2011.00052 +Parham Ghorbanian,Stochastic non-linear oscillator models of EEG: the Alzheimer's disease case.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#GhorbanianRA15,https://doi.org/10.3389/fncom.2015.00048 +Petra Ritter,Editorial: State-dependent brain computation.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#RitterJMB15,https://doi.org/10.3389/fncom.2015.00077 +Kornelius Rácz,Spatio-temporal analysis reveals active control of both task-relevant and task-irrelevant variables.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#RaczC13,https://doi.org/10.3389/fncom.2013.00155 +Qing-long L. Gu,The Dynamics of Balanced Spiking Neuronal Networks Under Poisson Drive Is Not Chaotic.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#GuTKZC18,https://doi.org/10.3389/fncom.2018.00047 +Daniel Soudry,The neuronal response at extended *cales: a linearized spiking input-output relation.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#SoudryM14a,https://doi.org/10.3389/fncom.2014.00029 +Tobias Teichert,A new paradigm and computational framework to estimate stop-signal reaction time distributions from the inhibition of complex motor sequences.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#TeichertF15,https://doi.org/10.3389/fncom.2015.00087 +Florian Fiebig,Memory consolidation from seconds to weeks: a three-stage neural network model with autonomous reinstatement dynamics.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#FiebigL14,https://doi.org/10.3389/fncom.2014.00064 +Denis Zakharov,Synergy of AMPA and NMDA Receptor Currents in Dopaminergic Neurons: A Modeling Study.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ZakharovLGK16,https://doi.org/10.3389/fncom.2016.00048 +Alexander Pastukhov,Multi-stable perception balances stability and sensitivity.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#PastukhovGHGDB13,https://doi.org/10.3389/fncom.2013.00017 +Qasim Bukhari,Random Forest Segregation of Drug Responses May Define Regions of Biological Significance.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#BukhariBRB16,https://doi.org/10.3389/fncom.2016.00021 +Alexandre Reynaud,Characterization of Spatial Frequency Channels Underlying Disparity Sensitivity by Factor Analysis of Population Data.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ReynaudH17,https://doi.org/10.3389/fncom.2017.00063 +Shivendra Tewari,A possible role of astrocytes in contextual memory retrieval: An analysis obtained using a quantitative framework.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#TewariP13,https://doi.org/10.3389/fncom.2013.00145 +Katherine Muterspaugh Steele,The number and choice of muscles impact the results of muscle synergy analyses.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#SteeleTP13,https://doi.org/10.3389/fncom.2013.00105 +Kamil A. Grajski,Emergent Spatial Patterns of Excitatory and Inhibitory Synaptic Strengths Drive Somatotopic Representational Discontinuities and their Plasticity in a Computational Model of Primary Sensory Cortical Area 3b.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#Grajski16,https://doi.org/10.3389/fncom.2016.00072 +Yuki Ueyama,Mini-max feedback control as a computational theory of sensorimotor control in the presence of structural uncertainty.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Ueyama14,https://doi.org/10.3389/fncom.2014.00119 +Fatemeh Yavari,Does our brain use the same policy for interacting with people and manipulating different objects?,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Yavari15,https://doi.org/10.3389/fncom.2014.00170 +Joaquín J. Torres,Emerging phenomena in neural networks with dynamic synapses and their computational implications.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#TorresK13,https://doi.org/10.3389/fncom.2013.00030 +Bertrand du Castel,Pattern activation/recognition theory of mind.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Castel15,https://doi.org/10.3389/fncom.2015.00090 +Carolina Feher da Silva,Computational models of the Posner simple and choice reaction time tasks.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#SilvaB15,https://doi.org/10.3389/fncom.2015.00081 +Román Rossi Pool,Inferring Single Neuron Properties in Conductance Based Balanced Networks.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#PoolM11,https://doi.org/10.3389/fncom.2011.00041 +Amelia Waddington,Triphasic spike-timing-dependent plasticity organizes networks to produce robust sequences of neural activity.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#WaddingtonAKC12,https://doi.org/10.3389/fncom.2012.00088 +Juan Miguel López Gil,Corrigendum: Method for Improving EEG Based Emotion Recognition by Combining It with Synchronized Biometric and Eye Tracking Technologies in a Non-invasive and Low Cost Way.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#GilVGGBSG16,https://doi.org/10.3389/fncom.2016.00119 +Zedong Bi,Spike Pattern Structure Influences Synaptic Efficacy Variability under STDP and Synaptic Homeostasis. I: Spike Generating Models on Converging Motifs.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#BiZ16,https://doi.org/10.3389/fncom.2016.00014 +Paul C. Bressloff,Traveling pulses in a stochastic neural field model of direction selectivity.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#BressloffW12,https://doi.org/10.3389/fncom.2012.00090 +Amir Karniel,The minimum transition hypothesis for intermittent hierarchical motor control.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#Karniel13,https://doi.org/10.3389/fncom.2013.00012 +Martin Ebert,Coordinated reset stimulation in a large-scale model of the STN-GPe circuit.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#EbertHT14,https://doi.org/10.3389/fncom.2014.00154 +Wei Xu,Timing Intervals Using Population Synchrony and Spike Timing Dependent Plasticity.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#XuB16,https://doi.org/10.3389/fncom.2016.00123 +Christian K. Machens,Demixing Population Activity in Higher Cortical Areas.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#Machens10,https://doi.org/10.3389/fncom.2010.00126 +Charlotte Le Mouel,Mobility as the Purpose of Postural Control.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#MouelB17,https://doi.org/10.3389/fncom.2017.00067 +Cristina Gorrostieta,Hierarchical vector auto-regressive models and their applications to multi-subject effective connectivity.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#GorrostietaFOBC13,https://doi.org/10.3389/fncom.2013.00159 +Yinlin Li,Enhanced HMAX model with feedforward feature learning for multiclass categorization.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#LiWZL15,https://doi.org/10.3389/fncom.2015.00123 +Xuefeng Qu,Topography of Synchronization of Somatosensory Evoked Potentials Elicited by Stimulation of the Sciatic Nerve in Rat.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#QuYLZL16,https://doi.org/10.3389/fncom.2016.00043 +Renato Carlos Farinha Duarte,Dynamic stability of sequential stimulus representations in adapting neuronal networks.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#DuarteM14,https://doi.org/10.3389/fncom.2014.00124 +Alan Johnston,The Role of the Harmonic Vector Average in Motion Integration.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#JohnstonS13,https://doi.org/10.3389/fncom.2013.00146 +David Kronemyer,A non-linear dynamical approach to belief revision in cognitive behavioral therapy.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#KronemyerB14,https://doi.org/10.3389/fncom.2014.00055 +Nikita Vladimirov,Shortest Loops are Pacemakers in Random Networks of Electrically Coupled Axons.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#VladimirovTT12,https://doi.org/10.3389/fncom.2012.00017 +Mahsa A. Golkar,Linear Parameter Varying Identification of Dynamic Joint Stiffness during Time-Varying Voluntary Contractions.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#GolkarSK17,https://doi.org/10.3389/fncom.2017.00035 +Peihua Feng,A Route to Chaotic Behavior of Single Neuron Exposed to External Electromagnetic Radiation.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#FengWZ17,https://doi.org/10.3389/fncom.2017.00094 +Felipe Gerhard,Extraction of Network Topology From Multi-Electrode Recordings: Is there a Small-World Effect?,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#GerhardPLNG11,https://doi.org/10.3389/fncom.2011.00004 +Yunguo Yu,Estimating the amount of information carried by a neuronal population.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#YuCKK10,https://doi.org/10.3389/fncom.2010.00010 +Mina Ranjbaran,Vestibular Compensation in Unilateral Patients Often Causes Both Gain and Time Constant Asymmetries in the VOR.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#RanjbaranKG16,https://doi.org/10.3389/fncom.2016.00026 +Amy L. Orsborn,Creating new functional circuits for action via brain-machine interfaces.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#OrsbornC13,https://doi.org/10.3389/fncom.2013.00157 +Viktor Müller,Structure and Topology Dynamics of Hyper-Frequency Networks during Rest and Auditory Oddball Performance.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#MullerPOSJL16,https://doi.org/10.3389/fncom.2016.00108 +José Luis Carrillo-Medina,Neural dynamics based on the recognition of neural fingerprints.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Carrillo-Medina15,https://doi.org/10.3389/fncom.2015.00033 +Holger Finger,Phase synchrony facilitates binding and segmentation of natural images in a coupled neural oscillator network.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#FingerK14,https://doi.org/10.3389/fncom.2013.00195 +Grzegorz Bokota,Computational Approach to Dendritic Spine Taxonomy and Shape Transition Analysis.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#BokotaMKLRP16,https://doi.org/10.3389/fncom.2016.00140 +Catalina Alvarado-Rojas,Single-unit activities during epileptic discharges in the human hippocampal formation.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#Alvarado-RojasLBBSENQ13,https://doi.org/10.3389/fncom.2013.00140 +Jason Priem,Decoupling the scholarly journal.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#PriemH12,https://doi.org/10.3389/fncom.2012.00019 +Fermín Segovia,Identifying endophenotypes of autism: a multivariate approach.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#SegoviaHSGRPPCBS14,https://doi.org/10.3389/fncom.2014.00060 +Satoshi Yamauchi,Elemental Spiking Neuron Model for Reproducing Diverse Firing Patterns and Predicting Precise Firing Times.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#YamauchiKS11,https://doi.org/10.3389/fncom.2011.00042 +Sang-Woo Park,Impact of stochastic fluctuations in the cell free layer on nitric oxide bioavailability.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ParkIT15,https://doi.org/10.3389/fncom.2015.00131 +Maciej Kaminski,The Influence of Volume Conduction on DTF Estimate and the Problem of Its Mitigation.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#KaminskiB17,https://doi.org/10.3389/fncom.2017.00036 +Katharina Dormanns,Neurovascular coupling: a parallel implementation.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#DormannsBD15,https://doi.org/10.3389/fncom.2015.00109 +Jenia Jitsev,Experience-driven formation of parts-based representations in a model of layered visual memory.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#JitsevM09,https://doi.org/10.3389/neuro.10.015.2009 +Jantsje H. Pasma,A Sensitivity Analysis of an Inverted Pendulum Balance Control Model.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#PasmaBKSS17,https://doi.org/10.3389/fncom.2017.00099 +Bertram Scheller,Spike Train Auto-Structure Impacts Post-Synaptic Firing and Timing-Based Plasticity.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#SchellerCVP11,https://doi.org/10.3389/fncom.2011.00060 +Ana Bengoetxea,Physiological modules for generating discrete and rhythmic movements: action identification by a dynamic recurrent neural network.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#BengoetxeaLHCDMC14,https://doi.org/10.3389/fncom.2014.00100 +Claire O'Callaghan,Fronto-striatal gray matter contributions to discrimination learning in Parkinson's disease.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#OCallaghanMWSRLH13,https://doi.org/10.3389/fncom.2013.00180 +Hava T. Siegelmann,Complex Systems Science and Brain Dynamics.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#Siegelmann10,https://doi.org/10.3389/fncom.2010.00007 +Minkyung Kim,Functional and Topological Conditions for Explosive Synchronization Develop in Human Brain Networks with the Onset of Anesthetic-Induced Unconsciousness.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#KimMBVTJHL16,https://doi.org/10.3389/fncom.2016.00001 +Lukas Paulun,A Retinotopic Spiking Neural Network System for Accurate Recognition of Moving Objects Using NeuCube and Dynamic Vision Sensors.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#PaulunWK18,https://doi.org/10.3389/fncom.2018.00042 +Bror Alstermark,The lateral reticular nucleus* integration of descending and ascending systems regulating voluntary forelimb movements.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#AlstermarkE15,https://doi.org/10.3389/fncom.2015.00102 +Christian Tetzlaff,Synaptic Scaling in Combination with Many Generic Plasticity Mechanisms Stabilizes Circuit Connectivity.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#TetzlaffKTW11,https://doi.org/10.3389/fncom.2011.00047 +Samantha R. Summerson,Investigating irregularly patterned deep brain stimulation signal design using biophysical models.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#SummersonAK15,https://doi.org/10.3389/fncom.2015.00078 +Konstantinos Xylouris,A three-dimensional mathematical model for the signal propagation on a neuron's membrane.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#XylourisW15,https://doi.org/10.3389/fncom.2015.00094 +Arnulf B. A. Graf,From neuronal populations to behavior: a computational journey.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Graf14,https://doi.org/10.3389/fncom.2014.00081 +Frank Van Bussel,Inferring Synaptic Connectivity from Spatio-Temporal Spike Patterns.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#BusselKT11,https://doi.org/10.3389/fncom.2011.00003 +Brenton J. Prettejohn,Methods for Generating Complex Networks with Selected Structural Properties for Simulations: A Review and Tutorial for Neuroscientists.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#PrettejohnBM11,https://doi.org/10.3389/fncom.2011.00011 +Alessandra Paffi,Numerical characterization of intraoperative and chronic electrodes in deep brain stimulation.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#PaffiCADL15,https://doi.org/10.3389/fncom.2015.00002 +Aurel A. Lazar,Channel identification machines for multidimensional receptive fields.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#LazarS14,https://doi.org/10.3389/fncom.2014.00117 +Jane Hunter,Post-Publication Peer Review: Opening Up Scientific Conversation.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#Hunter12,https://doi.org/10.3389/fncom.2012.00063 +Mengjiao Chen,Depotentiation from Potentiated Synaptic Strength in a Tristable System of Coupled Phosphatase and Kinase.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ChenRW16,https://doi.org/10.3389/fncom.2016.00104 +James M. Tromans,Learning view invariant recognition with partially occluded objects.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#TromansHS12,https://doi.org/10.3389/fncom.2012.00048 +Abdelmalik Moujahid,Metabolic efficiency with fast spiking in the squid axon.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#MoujahidD12,https://doi.org/10.3389/fncom.2012.00095 +Brett Thomas Buttliere,Corrigendum: Using Science and Psychology to improve the dissemination and evaluation of scientific work.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Buttliere15,https://doi.org/10.3389/fncom.2015.00053 +Akihiro Eguchi,Computational Modelling of the Neural Representation of Object Shape in the Primate Ventral Visual System.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#EguchiMEHS15,https://doi.org/10.3389/fncom.2015.00100 +Antonio Ibañez-Molina,Neurocomputational Model of EEG Complexity during Mind Wandering.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#Ibanez-MolinaI16,https://doi.org/10.3389/fncom.2016.00020 +Chuanxin Minos Niu,Emulated muscle spindle and spiking afferents validates VLSI neuromorphic hardware as a testbed for sensorimotor function and disease.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#NiuNS14,https://doi.org/10.3389/fncom.2014.00141 +Esther Florin,Commentary: Evaluation of Phase-Amplitude Coupling in Resting State Magnetoencephalographic Signals: Effect of Surrogates and Evaluation Approach.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#FlorinB18,https://doi.org/10.3389/fncom.2018.00026 +Martin J. Spencer,Compensation for Traveling Wave Delay Through Selection of Dendritic Delays Using Spike-Timing-Dependent Plasticity in a Model of the Auditory Brainstem.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#SpencerMBG18,https://doi.org/10.3389/fncom.2018.00036 +David A. Peterson,A Dynamic Circuit Hypothesis for the Pathogenesis of Blepharospasm.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#PetersonS17,https://doi.org/10.3389/fncom.2017.00011 +Sareh Zendehrouh,The hypothetical cost-conflict monitor: is it a possible trigger for conflict-driven control mechanisms in the human brain?,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#ZendehrouhGT14,https://doi.org/10.3389/fncom.2014.00077 +Oscar J. Urizar,A Hierarchical Bayesian Model for Crowd Emotions.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#UrizarBBRMR16,https://doi.org/10.3389/fncom.2016.00063 +Jonathan Binas,Learning and stabilization of winner-take-all dynamics through interacting excitatory and inhibitory plasticity.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#BinasRIP14,https://doi.org/10.3389/fncom.2014.00068 +Fabian Schönfeld,RatLab: an easy to use tool for place code simulations.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#SchonfeldW13,https://doi.org/10.3389/fncom.2013.00104 +Peter beim Graben,A biophysical observation model for field potentials of networks of leaky integrate-and-fire neurons.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#GrabenR13,https://doi.org/10.3389/fncom.2012.00100 +Pao-Yueh Hsiao,A Plastic Cortico-Striatal Circuit Model of Adaptation in Perceptual Decision.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#HsiaoL13,https://doi.org/10.3389/fncom.2013.00178 +Wilten Nicola,Mean-field models for heterogeneous networks of two-dimensional integrate and fire neurons.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#NicolaC13,https://doi.org/10.3389/fncom.2013.00184 +Chengxu Zhuang,Deep Learning Predicts Correlation between a Functional Signature of Higher Visual Areas and Sparse Firing of Neurons.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ZhuangWYH17,https://doi.org/10.3389/fncom.2017.00100 +Robert Haslinger,Missing mass approximations for the partition function of stimulus driven Ising models.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#HaslingerBGWP13,https://doi.org/10.3389/fncom.2013.00096 +Guosheng Yi,Input-output relation and energy efficiency in the neuron with different spike threshold dynamics.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#YiWTWD15,https://doi.org/10.3389/fncom.2015.00062 +Markus A. Dahlem,Cortical hot spots and labyrinths: why cortical neuromodulation for episodic migraine with aura should be personalized.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#DahlemSBBKHK15,https://doi.org/10.3389/fncom.2015.00029 +Daniel Soudry,Conductance-Based Neuron Models and the Slow Dynamics of Excitability.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#SoudryM12,https://doi.org/10.3389/fncom.2012.00004 +Chun-Kuei Su,Computational solution of spike overlapping using data-based subtraction algorithms to resolve synchronous sympathetic nerve discharge.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#SuCLFHS13,https://doi.org/10.3389/fncom.2013.00149 +Chrisantha Fernando,Selectionist and Evolutionary Approaches to Brain Function: A Critical Appraisal.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#FernandoSH12,https://doi.org/10.3389/fncom.2012.00024 +Witali Aswolinskiy,RM-SORN: A Reward-Modulated Self-Organizing Recurrent Neural Network.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#AswolinskiyP15,https://doi.org/10.3389/fncom.2015.00036 +Erick J. Paul,A neurocomputational theory of how explicit learning bootstraps early procedural learning.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#PaulA13,https://doi.org/10.3389/fncom.2013.00177 +Emiliano Torre,Statistical evaluation of synchronous spike patterns extracted by frequent item set mining.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#TorrePDBG13,https://doi.org/10.3389/fncom.2013.00132 +Fatemeh Hadaeghi,What is the mathematical description of the treated mood pattern in bipolar disorder?,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#HadaeghiGG13,https://doi.org/10.3389/fncom.2013.00106 +Michael C. Avery,Simulation of cholinergic and noradrenergic modulation of behavior in uncertain environments.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#AveryNCK12,https://doi.org/10.3389/fncom.2012.00005 +Julijana Gjorgjieva,Neural circuits for peristaltic wave propagation in crawling Drosophila larvae: analysis and modeling.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#GjorgjievaBEE13,https://doi.org/10.3389/fncom.2013.00024 +Go Ashida,Biophysical basis of the sound analog membrane potential that underlies coincidence detection in the barn owl.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#AshidaFC13a,https://doi.org/10.3389/fncom.2013.00102 +Bryan P. Tripp,Population coding in sparsely connected networks of noisy neurons.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#TrippO12,https://doi.org/10.3389/fncom.2012.00023 +Eirini Mavritsaki,Prof. Glyn Humphreys' Obituary.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#Mavritsaki16,https://doi.org/10.3389/fncom.2016.00068 +Eilen Nordlie,Rate Dynamics of Leaky Integrate-and-Fire Neurons with Strong Synapses.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#NordlieTE10,https://doi.org/10.3389/fncom.2010.00149 +Shouguo Zhao,Conduction block in myelinated axons induced by high-frequency (kHz) non-symmetric biphasic stimulation.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ZhaoYWRGT15,https://doi.org/10.3389/fncom.2015.00086 +Masafumi Oizumi,Information Loss Associated with Imperfect Observation and Mismatched Decoding.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#OizumiOA11,https://doi.org/10.3389/fncom.2011.00009 +Shuai Ma,Altered Local Spatiotemporal Consistency of Resting-State BOLD Signals in Patients with Generalized Tonic-Clonic Seizures.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#MaJPZSLJGYL17,https://doi.org/10.3389/fncom.2017.00090 +Anis Yuniati,Synchronization and Inter-Layer Interactions of Noise-Driven Neural Networks.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#YuniatiMC17,https://doi.org/10.3389/fncom.2017.00002 +Susan Yu Gordleeva,Bi-directional astrocytic regulation of neuronal activity within a network.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#GordleevaSSDK12,https://doi.org/10.3389/fncom.2012.00092 +Xiaoxia Qu,Positive Unanimous Voting Algorithm for Focal Cortical Dysplasia Detection on Magnetic Resonance Image.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#QuYMBP16,https://doi.org/10.3389/fncom.2016.00025 +Miguel Angel Fuentes,Stochastic model predicts evolving preferences in the Iowa gambling task.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#FuentesLCMJ14,https://doi.org/10.3389/fncom.2014.00167 +Sébastien Hélie,Exploring the cognitive and motor functions of the basal ganglia: an integrative review of computational cognitive neuroscience models.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#HelieCM13,https://doi.org/10.3389/fncom.2013.00174 +Reza Sharif Razavian,A model-based approach to predict muscle synergies using optimization: application to feedback control.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#RazavianMM15,https://doi.org/10.3389/fncom.2015.00121 +Taegyo Kim,Reward Based Motor Adaptation Mediated by Basal Ganglia.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#KimHTBCLMRM17,https://doi.org/10.3389/fncom.2017.00019 +Jean Daunizeau,An electrophysiological validation of stochastic DCM for fMRI.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#DaunizeauLVFS13,https://doi.org/10.3389/fncom.2012.00103 +Johannes Bill,Compensating Inhomogeneities of Neuromorphic VLSI Devices Via Short-Term Synaptic Plasticity.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#BillSBSMM10,https://doi.org/10.3389/fncom.2010.00129 +Naohiro Takemura,A Computational Model for Aperture Control in Reach-to-Grasp Movement Based on Predictive Variability.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#TakemuraFI15,https://doi.org/10.3389/fncom.2015.00143 +Steve Yaeli,Error-Based Analysis of Optimal Tuning Functions Explains Phenomena Observed in Sensory Neurons.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#YaeliM10,https://doi.org/10.3389/fncom.2010.00130 +Tom Bertalan,Coarse-Grained Descriptions of Dynamics for Networks with Both Intrinsic and Structural Heterogeneities.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#BertalanWLGK17,https://doi.org/10.3389/fncom.2017.00043 +Ankur Gupta,Computational model of precision grip in Parkinson's disease: a utility based approach.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#GuptaPC13,https://doi.org/10.3389/fncom.2013.00172 +Gerhard Neumann,Learning modular policies for robotics.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#NeumannDPK014,https://doi.org/10.3389/fncom.2014.00062 +Malihe Molaie,Artificial neural networks: powerful tools for modeling chaotic behavior in the nervous system.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#MolaieFGJS14,https://doi.org/10.3389/fncom.2014.00040 +Xiaolong Zou,On the Phase Relationship between Excitatory and Inhibitory Neurons in Oscillation.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ZouW16,https://doi.org/10.3389/fncom.2016.00138 +Keir Gordon Pearson,Leg mechanics contribute to establishing swing phase trajectories during memory-guided stepping movements in walking cats: a computational analysis.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#PearsonAGS15,https://doi.org/10.3389/fncom.2015.00116 +Shuihua Wang,Wavelet Entropy and Directed Acyclic Graph Support Vector Machine for Detection of Patients with Unilateral Hearing Loss in MRI Scanning.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#WangYDYLGRYZ16,https://doi.org/10.3389/fncom.2016.00106 +Astrid Zeman,Complex cells decrease errors for the Müller-Lyer illusion in a model of the visual ventral stream.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#ZemanOB14,https://doi.org/10.3389/fncom.2014.00112 +Nalin Harischandra,Stable phase-shift despite quasi-rhythmic movements: a CPG-driven dynamic model of active tactile exploration in an insect.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#HarischandraKD15,https://doi.org/10.3389/fncom.2015.00107 +Olesya Mokienko,Increased motor cortex excitability during motor imagery in brain-computer interface trained subjects.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#MokienkoCKBCFP13,https://doi.org/10.3389/fncom.2013.00168 +Stephen E. Robinson,Spatiotemporal imaging of complexity.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#RobinsonMC13,https://doi.org/10.3389/fncom.2012.00101 +Danke Zhang,"Design principles of the sparse coding network and the role of ""sister cells"" in the olfactory system of Drosophila.",2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#ZhangLWR13,https://doi.org/10.3389/fncom.2013.00141 +Daniel Soudry,The neuronal response at extended *cales: long-term correlations without long-term memory.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#SoudryM14,https://doi.org/10.3389/fncom.2014.00035 +Siemon de Lange,The Laplacian spectrum of neural networks.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#LangeRH14,https://doi.org/10.3389/fncom.2013.00189 +Moritz Helias,Structural plasticity controlled by calcium based correlation detection.,2008,2008,Front. Comput. Neurosci.,,db/journals/ficn/ficn2008.html#HeliasRGD08,https://doi.org/10.3389/neuro.10.007.2008 +Ariel Rokem,The benefits of cholinergic enhancement during perceptual learning are long-lasting.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#RokemS13,https://doi.org/10.3389/fncom.2013.00066 +Chris Gaiteri,The Interaction of Intrinsic Dynamics and Network Topology in Determining Network Burst Synchrony.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#GaiteriR11,https://doi.org/10.3389/fncom.2011.00010 +Miriam Zacksenhouse,Signal-independent *cale analysis (SITA) and its application for neural coding during reaching and walking.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#ZacksenhouseLN14,https://doi.org/10.3389/fncom.2014.00091 +Nicola Simola,Role of movement in long-term basal ganglia changes: implications for abnormal motor responses.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#SimolaMFF13,https://doi.org/10.3389/fncom.2013.00142 +Pascale P. Quilichini,Brain state-dependent neuronal computation.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#QuilichiniB12,https://doi.org/10.3389/fncom.2012.00077 +Shengjun Wang,Sustained Activity in Hierarchical Modular Neural Networks: Self-Organized Criticality and Oscillations.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#WangHZ11,https://doi.org/10.3389/fncom.2011.00030 +Omer Bar-Yosef,The effects of background noise on the neural responses to natural sounds in cat primary auditory cortex.,2007,2007,Front. Comput. Neurosci.,,db/journals/ficn/ficn2007.html#Bar-YosefN07,https://doi.org/10.3389/neuro.10.003.2007 +Xiaohan Zhang,The Effects of Medium Spiny Neuron Morphologcial Changes on Basal Ganglia Network under External Electric Field: A Computational Modeling Study.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ZhangLZWJ17,https://doi.org/10.3389/fncom.2017.00091 +Bahar Moezzi,Modelling the influence of short term depression in vesicle release and stochastic calcium channel gating on auditory nerve spontaneous firing statistics.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#MoezziIM14,https://doi.org/10.3389/fncom.2014.00163 +Nasir Ahmad,Harmonic Training and the Formation of Pitch Representation in a Neural Network Model of the Auditory Brain.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#AhmadHWS16,https://doi.org/10.3389/fncom.2016.00024 +Sebastian Gerwinn,Bayesian population decoding of spiking neurons.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#GerwinnMB09,https://doi.org/10.3389/neuro.10.021.2009 +Honi Sanders,A network that performs brute-force conversion of a temporal sequence to a spatial pattern: relevance to odor recognition.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#SandersKSRKL14,https://doi.org/10.3389/fncom.2014.00108 +Juan Carlos Vasquez,Simultaneous stability and sensitivity in model cortical networks is achieved through anti-correlations between the in- and out-degree of connectivity.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#VasquezHT13,https://doi.org/10.3389/fncom.2013.00156 +Melvin A. Felton Jr.,Resonance Analysis as a Tool for Characterizing Functional Division of Layer 5 Pyramidal Neurons.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#FeltonYBOF18,https://doi.org/10.3389/fncom.2018.00029 +Tadej Petric,Hammering Does Not Fit Fitts' Law.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#PetricSUI17,https://doi.org/10.3389/fncom.2017.00045 +Marco Martinolli,Multi-Timescale Memory Dynamics Extend Task Repertoire in a Reinforcement Learning Network With Attention-Gated Memory.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#MartinolliGG18,https://doi.org/10.3389/fncom.2018.00050 +Michela Balconi,Cooperation and Competition with Hyperscanning Methods: Review and Future Application to Emotion Domain.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#BalconiV17,https://doi.org/10.3389/fncom.2017.00086 +Silien Hong,Computing a Hierarchical Static Order for Decision Diagram-Based Representation from P/T Nets.,2012,5,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc5.html#HongKPE12,https://doi.org/10.1007/978-3-642-29072-5_5 +Thomas Chatain,A Canonical Contraction for Safe Petri Nets.,2014,9,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc9.html#ChatainH14,https://doi.org/10.1007/978-3-662-45730-6_5 +Murad Banaji,Cycle Structure in SR and DSR Graphs: Implications for Multiple Equilibria and Stable Oscillation in Chemical Reaction Networks.,2012,5,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc5.html#Banaji12,https://doi.org/10.1007/978-3-642-29072-5_1 +Luca Bernardinello,Modeling Distributed Private Key Generation by Composing Petri Nets.,2014,9,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc9.html#BernardinelloKMP14,https://doi.org/10.1007/978-3-662-45730-6_2 +Fabrice Kordon,MCC'2015 - The Fifth Model Checking Contest.,2016,11,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc11.html#KordonGHPJRH16,https://doi.org/10.1007/978-3-662-53401-4_12 +Michael Westergaard,A Graphical Approach to Component-Based and Extensible Model Checking Platforms.,2012,5,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc5.html#WestergaardK12,https://doi.org/10.1007/978-3-642-29072-5_12 +David Mosteller,Integrating Petri Net Semantics in a Model-Driven Approach: The Renew Meta-Modeling and Transformation Framework.,2016,11,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc11.html#MostellerCH16,https://doi.org/10.1007/978-3-662-53401-4_5 +Lawrence Cabac,Net Components for the Integration of Process Mining into Agent-Oriented Software Engineering.,2008,1,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc1.html#CabacD08,https://doi.org/10.1007/978-3-540-89287-8_6 +Robin Bergenthum,Modeling and Mining of Learnflows.,2012,5,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc5.html#BergenthumDHM12,https://doi.org/10.1007/978-3-642-29072-5_2 +Amira Radhouani,Symbolic Search of Insider Attack Scenarios from a Formal Information System Modeling.,2015,10,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc10.html#RadhouaniILR15,https://doi.org/10.1007/978-3-662-48650-4_7 +Kais Klai,Timed Aggregate Graph: A Finite Graph Preserving Event- and State-Based Quantitative Properties of Time Petri Nets.,2015,10,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc10.html#Klai15,https://doi.org/10.1007/978-3-662-48650-4_3 +Philippe Darondeau,Distributed Control of Discrete-Event Systems: A First Step.,2012,6,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc6.html#DarondeauR12,https://doi.org/10.1007/978-3-642-35179-2_2 +Marc Solé,Incremental Process Discovery.,2012,5,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc5.html#SoleC12,https://doi.org/10.1007/978-3-642-29072-5_10 +Thomas Wagner 0003,Providing an Agent Flavored Integration for Workflow Management.,2012,5,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc5.html#WagnerQMR12,https://doi.org/10.1007/978-3-642-29072-5_11 +Michal Knapik,Bounded Model Checking for Parametric Timed Automata.,2012,5,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc5.html#KnapikP12,https://doi.org/10.1007/978-3-642-29072-5_6 +Jonathan Billington,Parameterised Coloured Petri Net Channel Models.,2009,3,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc3.html#BillingtonVG09,https://doi.org/10.1007/978-3-642-04856-2_4 +Vladimir A. Bashkin,Decidability of k -Soundness for Workflow Nets with an Unbounded Resource.,2014,9,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc9.html#BashkinL14,https://doi.org/10.1007/978-3-662-45730-6_1 +Sergey A. Shershakov,Transition Systems Reduction: Balancing Between Precision and Simplicity.,2017,12,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc12.html#ShershakovKL17,https://doi.org/10.1007/978-3-662-55862-1_6 +Kristian Bisgaard Lassen,Translating Message Sequence Charts to other Process Languages Using Process Mining.,2008,1,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc1.html#LassenD08,https://doi.org/10.1007/978-3-540-89287-8_5 +Anna Dedova,From Code to Coloured Petri Nets: Modelling Guidelines.,2013,8,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc8.html#DedovaP13,https://doi.org/10.1007/978-3-642-40465-8_4 +Paolo Baldan,Comparing Metabolic Pathways through Reactions and Potential Fluxes.,2013,8,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc8.html#BaldanCGS13,https://doi.org/10.1007/978-3-642-40465-8_1 +Alexandre Hamez,A Symbolic Model Checker for Petri Nets: pnmc.,2016,11,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc11.html#Hamez16,https://doi.org/10.1007/978-3-662-53401-4_15 +Xian Xu 0001,On Bisimulation Theory in Linear Higher-Order pi-Calculus.,2009,3,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc3.html#Xu09,https://doi.org/10.1007/978-3-642-04856-2_10 +Robert Lorenz 0001,Models from Scenarios.,2013,7,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc7.html#0001DJ13,https://doi.org/10.1007/978-3-642-38143-0_9 +Michal Knapik,Bounded Parametric Model Checking for Elementary Net Systems.,2010,4,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc4.html#KnapikSP10,https://doi.org/10.1007/978-3-642-18222-8_3 +Karsten Wolf,Running LoLA 2.0 in a Model Checking Competition.,2016,11,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc11.html#Wolf16,https://doi.org/10.1007/978-3-662-53401-4_13 +Paolo Baldan,McMillan's Complete Prefix for Contextual Nets.,2008,1,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc1.html#BaldanCKS08,https://doi.org/10.1007/978-3-540-89287-8_12 +H. M. W. Verbeek,Decomposed Replay Using Hiding and Reduction as Abstraction.,2017,12,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc12.html#Verbeek17,https://doi.org/10.1007/978-3-662-55862-1_8 +Assia Ben Shil,An Everlasting Secure Non-interactive Timestamping Scheme in the Bounded Storage Model.,2015,10,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc10.html#ShilS15,https://doi.org/10.1007/978-3-662-48650-4_2 +Michael Westergaard,Verifying Parallel Algorithms and Programs Using Coloured Petri Nets.,2012,6,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc6.html#Westergaard12,https://doi.org/10.1007/978-3-642-35179-2_7 +Jetty Kleijn,Causality in Extensions of Petri Nets.,2013,7,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc7.html#KleijnK13,https://doi.org/10.1007/978-3-642-38143-0_6 +Lars Michael Kristensen,Applications of Coloured Petri Nets for Functional Validation of Protocol Designs.,2013,7,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc7.html#KristensenS13,https://doi.org/10.1007/978-3-642-38143-0_3 +Ramchandra Phawade,Kleene Theorems for Synchronous Products with Matching.,2015,10,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc10.html#PhawadeL15,https://doi.org/10.1007/978-3-662-48650-4_5 +Somsak Vanit-Anunchai,Validating DCCP Simultaneous Feature Negotiation Procedure.,2016,11,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc11.html#Vanit-Anunchai16,https://doi.org/10.1007/978-3-662-53401-4_4 +Frank Puhlmann,A Look Around the Corner: The Pi-Calculus.,2009,2,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc2.html#PuhlmannW09,https://doi.org/10.1007/978-3-642-00899-3_4 +Jörg Desel,Negotiations and Petri Nets.,2016,11,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc11.html#DeselE16,https://doi.org/10.1007/978-3-662-53401-4_10 +Michael Westergaard,Grade/CPN: A Tool and Temporal Logic for Testing Colored Petri Net Models in Teaching.,2013,8,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc8.html#WestergaardFS13,https://doi.org/10.1007/978-3-642-40465-8_10 +Mihai-Lica Pura,Symbolic Model Checking of Security Protocols for Ad hoc Networks on any Topologies.,2015,10,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc10.html#PuraB15,https://doi.org/10.1007/978-3-662-48650-4_6 +Juan-Pablo López-Grao,A Petri Net Perspective on the Resource Allocation Problem in Software Engineering.,2012,5,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc5.html#Lopez-GraoC12,https://doi.org/10.1007/978-3-642-29072-5_8 +Jörg Desel,Vicinity Respecting Homomorphisms for Abstracting System Requirements.,2010,4,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc4.html#DeselM10,https://doi.org/10.1007/978-3-642-18222-8_1 +Lars Michael Kristensen,Teaching Modelling and Validation of Concurrent Systems Using Coloured Petri Nets.,2008,1,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc1.html#KristensenJ08,https://doi.org/10.1007/978-3-540-89287-8_2 +Fabien Bonnefoi,A Discretization Method from Coloured to Symmetric Nets: Application to an Industrial Example.,2009,3,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc3.html#BonnefoiCK09,https://doi.org/10.1007/978-3-642-04856-2_7 +H. M. W. (Eric) Verbeek,Assessing State Spaces Using Petri-Net Synthesis and Attribute-Based Visualization.,2008,1,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc1.html#VerbeekPAW08,https://doi.org/10.1007/978-3-540-89287-8_10 +Kees M. van Hee,Designing Case Handling Systems.,2008,1,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc1.html#HeeKPSW08,https://doi.org/10.1007/978-3-540-89287-8_8 +Federico Chesani,Exploiting Inductive Logic Programming Techniques for Declarative Process Mining.,2009,2,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc2.html#ChesaniLMMRS09,https://doi.org/10.1007/978-3-642-00899-3_16 +Artur Niewiadomski,SMT-Based Abstract Parametric Temporal Planning.,2015,10,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc10.html#NiewiadomskiP15,https://doi.org/10.1007/978-3-662-48650-4_4 +Antonio Brogi,A Petri Net-Based Approach to Model and Analyze the Management of Cloud Applications.,2016,11,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc11.html#BrogiCSW16,https://doi.org/10.1007/978-3-662-53401-4_2 +Julius Holderer,Log- and Model-Based Techniques for Security-Sensitive Tackling of Obstructed Workflow Executions.,2017,12,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc12.html#HoldererCTM17,https://doi.org/10.1007/978-3-662-55862-1_3 +Sami Evangelista,The ComBack Method Revisited: Caching Strategies and Extension with Delayed Duplicate Detection.,2009,3,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc3.html#EvangelistaWK09,https://doi.org/10.1007/978-3-642-04856-2_8 +Nicolas Sedlmajer,A Domain Specific Language Approach for Genetic Regulatory Mechanisms Analysis.,2012,6,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc6.html#SedlmajerBHLBM12,https://doi.org/10.1007/978-3-642-35179-2_6 +Christian Stahl,Deciding Substitutability of Services with Operating Guidelines.,2009,2,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc2.html#StahlMB09,https://doi.org/10.1007/978-3-642-00899-3_10 +Suriadi Suriadi,Privacy Compliance Verification in Cryptographic Protocols.,2012,6,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc6.html#SuriadiOF12,https://doi.org/10.1007/978-3-642-35179-2_11 +Jonas Finnemann Jensen,TAPAAL and Reachability Analysis of P/T Nets.,2016,11,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc11.html#JensenNOS16,https://doi.org/10.1007/978-3-662-53401-4_16 +Wil M. P. van der Aalst,Discovering Petri Nets from Event Logs.,2013,7,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc7.html#AalstD13,https://doi.org/10.1007/978-3-642-38143-0_10 +Suman Roy 0001,A Formal Framework for Diagnostic Analysis for Errors of Business Processes.,2016,11,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc11.html#RoyS16,https://doi.org/10.1007/978-3-662-53401-4_11 +Antti Valmari,External Behaviour of Systems of State Machines with Variables.,2013,7,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc7.html#Valmari13,https://doi.org/10.1007/978-3-642-38143-0_7 +Stefano Marrone,A SAN-Based Modeling Approach to Performance Evaluation of an IMS-Compliant Conferencing Framework.,2012,6,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc6.html#MarroneMNPRV12,https://doi.org/10.1007/978-3-642-35179-2_13 +Michael Köhler-Bußmeier,A Formal Model for Organisational Structures behind Process-Aware Information Systems.,2009,2,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc2.html#Kohler-BussmeierWM09,https://doi.org/10.1007/978-3-642-00899-3_6 +Ekkart Kindler,Modelling Local and Global Behaviour: Petri Nets and Event Coordination.,2012,6,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc6.html#Kindler12,https://doi.org/10.1007/978-3-642-35179-2_4 +Jan Mendling,Empirical Studies in Process Model Verification.,2009,2,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc2.html#Mendling09,https://doi.org/10.1007/978-3-642-00899-3_12 +Victor Khomenko,Modelling and Analysis Mobile Systems Using \pi -calculus (EFCP).,2015,10,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc10.html#KhomenkoG15,https://doi.org/10.1007/978-3-662-48650-4_8 +Jordan de la Houssaye,Formal Modelling and Analysis of Distributed Storage Systems.,2017,12,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc12.html#HoussayePD17,https://doi.org/10.1007/978-3-662-55862-1_4 +Junxian Liu,A Coloured Petri Net Approach to the Functional and Performance Analysis of SIP Non-INVITE Transaction.,2014,9,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc9.html#LiuL14,https://doi.org/10.1007/978-3-662-45730-6_8 +Wil M. P. van der Aalst,Process-Aware Information Systems: Lessons to Be Learned from Process Mining.,2009,2,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc2.html#Aalst09,https://doi.org/10.1007/978-3-642-00899-3_1 +Christine Choppy,Modelling and Formal Verification of the NEO Protocol.,2012,6,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc6.html#ChoppyDEKPY12,https://doi.org/10.1007/978-3-642-35179-2_9 +Lawrence Cabac,Modeling Organizational Structures and Agent Knowledge for Mulan Applications.,2014,9,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc9.html#CabacMW14,https://doi.org/10.1007/978-3-662-45730-6_4 +Ekkart Kindler,Model-Based Software Engineering and Process-Aware Information Systems.,2009,2,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc2.html#Kindler09,https://doi.org/10.1007/978-3-642-00899-3_2 +Kent Inge Fagerland Simonsen,Pragmatics Annotated Coloured Petri Nets for Protocol Software Generation and Verification.,2016,11,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc11.html#SimonsenKK16,https://doi.org/10.1007/978-3-662-53401-4_1 +Matthias Wester-Ebbinghaus,Modeling Organizational Units as Modular Components of Systems of Systems.,2010,4,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc4.html#Wester-EbbinghausMK10,https://doi.org/10.1007/978-3-642-18222-8_8 +Niels Lohmann,Petri Net Transformations for Business Processes - A Survey.,2009,2,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc2.html#LohmannVD09,https://doi.org/10.1007/978-3-642-00899-3_3 +Timo Sztyler,Self-tracking Reloaded: Applying Process Mining to Personalized Health Care from Labeled Sensor Data.,2016,11,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc11.html#SztylerCVS16,https://doi.org/10.1007/978-3-662-53401-4_8 +Kees M. van Hee,When Can We Trust a Third Party? - A Soundness Perspective.,2013,8,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc8.html#HeeSW13,https://doi.org/10.1007/978-3-642-40465-8_6 +Józef Winkowski,Multiplicative Transition Systems.,2017,12,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc12.html#Winkowski17,https://doi.org/10.1007/978-3-662-55862-1_9 +Luca Bernardinello,Local State Refinement and Composition of Elementary Net Systems: An Approach Based on Morphisms.,2013,8,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc8.html#BernardinelloMP13,https://doi.org/10.1007/978-3-642-40465-8_3 +Wojciech Penczek,SAT-Based (Parametric) Reachability for a Class of Distributed Time Petri Nets.,2010,4,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc4.html#PenczekPZ10,https://doi.org/10.1007/978-3-642-18222-8_4 +Christian Eisentraut,Teaching Concurrency Concepts to Freshmen.,2008,1,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc1.html#EisentrautH08,https://doi.org/10.1007/978-3-540-89287-8_3 +Luca Bernardinello,Non-interference Notions Based on Reveals and Excludes Relations for Petri Nets.,2016,11,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc11.html#BernardinelloKP16,https://doi.org/10.1007/978-3-662-53401-4_3 +Joel Ribeiro,A Method for Assessing Parameter Impact on Control-Flow Discovery Algorithms.,2016,11,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc11.html#RibeiroC16,https://doi.org/10.1007/978-3-662-53401-4_9 +Ronny Mans,Schedule-Aware Workflow Management Systems.,2010,4,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc4.html#MansRAMB10,https://doi.org/10.1007/978-3-642-18222-8_6 +Blai Bonet,Directed Unfolding of Petri Nets.,2008,1,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc1.html#BonetHHT08,https://doi.org/10.1007/978-3-540-89287-8_11 +Marco Mascheroni,Nets-Within-Nets Paradigm and Grid Computing.,2012,5,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc5.html#MascheroniF12,https://doi.org/10.1007/978-3-642-29072-5_9 +Michal Knapik,Parametric Model Checking with VerICS.,2010,4,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc4.html#KnapikNPPSZ10,https://doi.org/10.1007/978-3-642-18222-8_5 +Robin Bergenthum,Comparison of Different Algorithms to Synthesize a Petri Net from a Partial Language.,2009,3,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc3.html#BergenthumDM09,https://doi.org/10.1007/978-3-642-04856-2_9 +Mostafa Herajy,Hybrid Petri Nets for Modelling the Eukaryotic Cell Cycle.,2013,8,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc8.html#HerajySH13,https://doi.org/10.1007/978-3-642-40465-8_7 +Isaac Corro Ramos,Model Driven Testing Based on Test History.,2008,1,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc1.html#RamosBHH08,https://doi.org/10.1007/978-3-540-89287-8_9 +Robin Bergenthum,Verification of Logs - Revealing Faulty Processes of a Medical Laboratory.,2015,10,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc10.html#BergenthumS15,https://doi.org/10.1007/978-3-662-48650-4_1 +Antti Valmari,Stubborn Set Intuition Explained.,2017,12,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc12.html#ValmariH17,https://doi.org/10.1007/978-3-662-55862-1_7 +Kamila Barylska,Conditions for Petri Net Solvable Binary Words.,2016,11,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc11.html#BarylskaBEMP16,https://doi.org/10.1007/978-3-662-53401-4_7 +Manfred Reichert,Flexibility in Process-Aware Information Systems.,2009,2,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc2.html#ReichertRD09,https://doi.org/10.1007/978-3-642-00899-3_7 +Kees M. van Hee,Business Process Modeling Using Petri Nets.,2013,7,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc7.html#HeeSW13a,https://doi.org/10.1007/978-3-642-38143-0_4 +Eike Best,Structure Theory of Petri Nets.,2013,7,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc7.html#BestW13,https://doi.org/10.1007/978-3-642-38143-0_5 +Andrey Mokhov,Mining Conditional Partial Order Graphs from Event Logs.,2016,11,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc11.html#MokhovCB16,https://doi.org/10.1007/978-3-662-53401-4_6 +Christian Rohr,Simulative Model Checking of Steady State and Time-Unbounded Temporal Operators.,2013,8,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc8.html#Rohr13,https://doi.org/10.1007/978-3-642-40465-8_8 +Francesco Calzolai,TAPAs: A Tool for the Analysis of Process Algebras.,2008,1,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc1.html#CalzolaiNLT08,https://doi.org/10.1007/978-3-540-89287-8_4 +Wil M. P. van der Aalst,Strategies for Modeling Complex Processes Using Colored Petri Nets.,2013,7,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc7.html#AalstSW13,https://doi.org/10.1007/978-3-642-38143-0_2 +Pieter De Koninck,Similarity-Based Approaches for Determining the Number of Trace Clusters in Process Discovery.,2017,12,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc12.html#KoninckW17,https://doi.org/10.1007/978-3-662-55862-1_2 +Robin Bergenthum,Construction of Process Models from Example Runs.,2009,2,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc2.html#BergenthumDML09,https://doi.org/10.1007/978-3-642-00899-3_14 +Jordi Cortadella,Elasticity and Petri Nets.,2008,1,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc1.html#CortadellaKBCJ08,https://doi.org/10.1007/978-3-540-89287-8_13 +Matthias Wester-Ebbinghaus,Model-Driven Middleware Support for Team-Oriented Process Management.,2013,8,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc8.html#Wester-EbbinghausK13,https://doi.org/10.1007/978-3-642-40465-8_9 +Ala-Eddine Ben Salem,Model Checking Using Generalized Testing Automata.,2012,6,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc6.html#SalemDK12,https://doi.org/10.1007/978-3-642-35179-2_5 +Fabrice Kordon,Report on the Model Checking Contest at Petri Nets 2011.,2012,6,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc6.html#KordonLBCELLPTW12,https://doi.org/10.1007/978-3-642-35179-2_8 +Claus Brabrand,Constructive Alignment for Teaching Model-Based Design for Concurrency.,2008,1,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc1.html#Brabrand08,https://doi.org/10.1007/978-3-540-89287-8_1 +Wil M. P. van der Aalst,Soundness of Workflow Nets with Reset Arcs.,2009,3,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc3.html#AalstHHSVVW09,https://doi.org/10.1007/978-3-642-04856-2_3 +Kees M. van Hee,On-the-Fly Auditing of Business Processes.,2010,4,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc4.html#HeeHHPT10,https://doi.org/10.1007/978-3-642-18222-8_7 +Xiaoqing Jin,Symbolic Termination and Confluence Checking for ECA Rules.,2014,9,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc9.html#JinLC14,https://doi.org/10.1007/978-3-662-45730-6_6 +Boudewijn F. van Dongen,Process Mining: Overview and Outlook of Petri Net Discovery Algorithms.,2009,2,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc2.html#DongenMW09,https://doi.org/10.1007/978-3-642-00899-3_13 +Jetty Kleijn,Tissue Systems and Petri Net Synthesis.,2014,9,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc9.html#KleijnKP14,https://doi.org/10.1007/978-3-662-45730-6_7 +Wolfgang Reisig,In Memoriam: Carl Adam Petri.,2013,7,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc7.html#ReisigRT13,https://doi.org/10.1007/978-3-642-38143-0_1 +Karsten Wolf,Does My Service Have Partners?.,2009,2,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc2.html#Wolf09,https://doi.org/10.1007/978-3-642-00899-3_9 +Charles Lakos,Modelling Mobile IP with Mobile Petri Nets.,2009,3,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc3.html#Lakos09,https://doi.org/10.1007/978-3-642-04856-2_6 +Boudewijn F. van Dongen,Aggregating Causal Runs into Workflow Nets.,2012,6,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc6.html#DongenDA12,https://doi.org/10.1007/978-3-642-35179-2_14 +Ralph Mietzner,Business Grid: Combining Web Services and the Grid.,2009,2,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc2.html#MietznerKL09,https://doi.org/10.1007/978-3-642-00899-3_8 +Tobias Betz,Software Engineering with Petri Nets: A Web Service and Agent Perspective.,2014,9,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc9.html#BetzCDWW14,https://doi.org/10.1007/978-3-662-45730-6_3 +Gianfranco Ciardo,Ten Years of Saturation: A Petri Net Perspective.,2012,5,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc5.html#CiardoZJ12,https://doi.org/10.1007/978-3-642-29072-5_3 +Marco Montali,DB-Nets: On the Marriage of Colored Petri Nets and Relational Databases.,2017,12,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc12.html#MontaliR17,https://doi.org/10.1007/978-3-662-55862-1_5 +Maciej Koutny,Synthesis Problem for Petri Nets with Localities.,2012,5,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc5.html#KoutnyP12,https://doi.org/10.1007/978-3-642-29072-5_7 +Lom-Messan Hillah,Extending pnml Scope: A Framework to Combine Petri Nets Types.,2012,6,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc6.html#HillahKLP12,https://doi.org/10.1007/978-3-642-35179-2_3 +Grégoire Danoy,A Multi-Agent Organizational Framework for Coevolutionary Optimization.,2010,4,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc4.html#DanoyBB10,https://doi.org/10.1007/978-3-642-18222-8_9 +Sonya Arnold,An Initial Coloured Petri Net Model of the Hypertext Transfer Protocol Operating over the Transmission Control Protocol.,2012,6,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc6.html#ArnoldB12,https://doi.org/10.1007/978-3-642-35179-2_10 +Nick C. Russell,Designing a Workflow System Using Coloured Petri Nets.,2009,3,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc3.html#RussellAH09,https://doi.org/10.1007/978-3-642-04856-2_1 +Nick Russell,newYAWL: Towards Workflow 2.0.,2009,2,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc2.html#RussellH09,https://doi.org/10.1007/978-3-642-00899-3_5 +Yann Ben Maissa,Modeling and Analyzing Wireless Sensor Networks with VeriSensor: An Integrated Workflow.,2013,8,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc8.html#MaissaKMT13,https://doi.org/10.1007/978-3-642-40465-8_2 +R. S. Mans,From Requirements via Colored Workflow Nets to an Implementation in Several Workflow Systems.,2009,3,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc3.html#MansARBMLJ09,https://doi.org/10.1007/978-3-642-04856-2_2 +Sami Evangelista,Search-Order Independent State Caching.,2010,4,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc4.html#EvangelistaK10,https://doi.org/10.1007/978-3-642-18222-8_2 +Kees M. van Hee,A Framework for Linking and Pricing No-Cure-No-Pay Services.,2009,2,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc2.html#HeeVSS09,https://doi.org/10.1007/978-3-642-00899-3_11 +Monika Heiner,MARCIE's Secrets of Efficient Model Checking.,2016,11,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc11.html#HeinerRST16,https://doi.org/10.1007/978-3-662-53401-4_14 +Agata Janowska,Using Integer Time Steps for Checking Branching Time Properties of Time Petri Nets.,2013,8,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc8.html#JanowskaPPZ13,https://doi.org/10.1007/978-3-642-40465-8_5 +Wolfgang Reisig,The Synthesis Problem.,2013,7,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc7.html#Reisig13,https://doi.org/10.1007/978-3-642-38143-0_8 +Dario Bruneo,Modeling Energy-Aware Cloud Federations with SRNs.,2012,6,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc6.html#BruneoLP12,https://doi.org/10.1007/978-3-642-35179-2_12 +Josep Carmona,The Label Splitting Problem.,2012,6,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc6.html#Carmona12,https://doi.org/10.1007/978-3-642-35179-2_1 +Jonathan Billington,On Modelling and Analysing the Dynamic MANET On-Demand (DYMO) Routing Protocol.,2009,3,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc3.html#BillingtonY09,https://doi.org/10.1007/978-3-642-04856-2_5 +Djaouida Dahmani,Time Recursive Petri Nets.,2008,1,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc1.html#DahmaniIB08,https://doi.org/10.1007/978-3-540-89287-8_7 +Hong Linh Truong,Online Interaction Analysis Framework for Ad-Hoc Collaborative Processes in SOA-Based Environments.,2009,2,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc2.html#TruongD09,https://doi.org/10.1007/978-3-642-00899-3_15 +Dorsaf Elhog-Benzina,Refinement and Asynchronous Composition of Modal Petri Nets.,2012,5,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc5.html#Elhog-BenzinaHH12,https://doi.org/10.1007/978-3-642-29072-5_4 +Hui Zhang,Diffusion of e-government: A literature review and directions for future directions.,2014,31,Government Information Quarterly,4,db/journals/giq/giq31.html#ZhangXX14,https://doi.org/10.1016/j.giq.2013.10.013 +Yupan Zhao,Exploring open government data capacity of government agency: Based on the resource-based theory.,2018,35,Government Information Quarterly,1,db/journals/giq/giq35.html#ZhaoF18,https://doi.org/10.1016/j.giq.2018.01.002 +Wolfgang E. Ebbers,Impact of the digital divide on e-government: Expanding from channel choice to channel usage.,2016,33,Government Information Quarterly,4,db/journals/giq/giq33.html#EbbersJD16,https://doi.org/10.1016/j.giq.2016.08.007 +Ibrahim H. Osman,COBRA framework to evaluate e-government services: A citizen-centric perspective.,2014,31,Government Information Quarterly,2,db/journals/giq/giq31.html#OsmanAIALBMW14,https://doi.org/10.1016/j.giq.2013.10.009 +Albert Meijer,Social media strategies: Understanding the differences between North American police departments.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#MeijerT13,https://doi.org/10.1016/j.giq.2013.05.023 +Yi-Shun Wang,Assessing eGovernment systems success: A validation of the DeLone and McLean model of information systems success.,2008,25,Government Information Quarterly,4,db/journals/giq/giq25.html#WangL08,https://doi.org/10.1016/j.giq.2007.06.002 +Frank Lambert,Assessing the authoritativeness of Canadian and American health documents: a comparative analysis using informetric methodologies.,2005,22,Government Information Quarterly,2,db/journals/giq/giq22.html#Lambert05,https://doi.org/10.1016/j.giq.2005.01.002 +Henry H. Perritt Jr.,Freedom of information spreads to Europe.,2000,17,Government Information Quarterly,4,db/journals/giq/giq17.html#PerrittR00,https://doi.org/10.1016/S0740-624X(00)00050-2 +Rex Arendsen,Does e-government reduce the administrative burden of businesses? An assessment of business-to-government systems usage in the Netherlands.,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#ArendsenPHD14,https://doi.org/10.1016/j.giq.2013.09.002 +Lucio Lamberti,Benefits sought by citizens and channel attitudes for multichannel payment services: Evidence from Italy.,2014,31,Government Information Quarterly,4,db/journals/giq/giq31.html#LambertiBC14,https://doi.org/10.1016/j.giq.2014.03.002 +Hector Jasso,Using 9-1-1 call data and the space-time permutation scan statistic for emergency event detection.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#JassoHBFRW09,https://doi.org/10.1016/j.giq.2008.12.005 +Kawika Pierson,How you buy affects what you get: Technology acquisition by state governments.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#PiersonT16,https://doi.org/10.1016/j.giq.2016.06.003 +Andrew M. Sberman,To the editor.,1999,16,Government Information Quarterly,3,db/journals/giq/giq16.html#Sberman99,https://doi.org/10.1016/S0740-624X(99)80030-6 +Harry Bouwman,Governments as electronic publishers? The Dutch case.,1999,16,Government Information Quarterly,1,db/journals/giq/giq16.html#BouwmanN99,https://doi.org/10.1016/S0740-624X(99)80014-8 +Maggie Farrell,Quality management and building government information services.,1998,15,Government Information Quarterly,1,db/journals/giq/giq15.html#Farrell98,https://doi.org/10.1016/S0740-624X(98)90018-1 +Luca Urciuoli,Drivers and barriers affecting usage of e-Customs - A global survey with customs administrations using multivariate analysis techniques.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#UrciuoliHA13,https://doi.org/10.1016/j.giq.2013.06.001 +,Chongqing Municipal Government Legal Affairs Office: Basic situation of construction and implementation of the open government information system in Chongqing Municipality.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#X06b,https://doi.org/10.1016/j.giq.2006.02.002 +Dimitris Apostolou,A collaborative decision framework for managing changes in e-Government services.,2011,28,Government Information Quarterly,1,db/journals/giq/giq28.html#ApostolouMSTL11,https://doi.org/10.1016/j.giq.2010.03.007 +Jensen J. Zhao,Opportunities and threats: A security assessment of state e-government websites.,2010,27,Government Information Quarterly,1,db/journals/giq/giq27.html#ZhaoZZ10,https://doi.org/10.1016/j.giq.2009.07.004 +John Carlo Bertot,Author/Title Index.,2004,21,Government Information Quarterly,4,db/journals/giq/giq21.html#Bertot04b,https://doi.org/10.1016/j.giq.2004.09.002 +Sounman Hong,Adaptive governance and decentralization: Evidence from regulation of the sharing economy in multi-level governance.,2018,35,Government Information Quarterly,2,db/journals/giq/giq35.html#HongL18a,https://doi.org/10.1016/j.giq.2017.08.002 +Mairéad de Róiste,Bringing in the users: The role for usability evaluation in eGovernment.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#Roiste13,https://doi.org/10.1016/j.giq.2013.05.007 +Luis Fernando Ramos Simón,The path to information in the public domain: Official publications in Spain.,2010,27,Government Information Quarterly,1,db/journals/giq/giq27.html#SimonB10,https://doi.org/10.1016/j.giq.2008.07.002 +Christine McMahon,Floridashealth.com.,2012,29,Government Information Quarterly,3,db/journals/giq/giq29.html#McMahon12,https://doi.org/10.1016/j.giq.2012.05.003 +Maria Ntaliani,Mobile government: A challenge for agriculture.,2008,25,Government Information Quarterly,4,db/journals/giq/giq25.html#NtalianiCK08,https://doi.org/10.1016/j.giq.2007.04.010 +Christopher G. Reddick,The perceived impacts of e-government on U.S. cities: A survey of Florida and Texas City managers.,2007,24,Government Information Quarterly,3,db/journals/giq/giq24.html#ReddickF07,https://doi.org/10.1016/j.giq.2006.09.004 +Natalie Helbig,Understanding the complexity of electronic government: Implications from the digital divide literature.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#HelbigGF09,https://doi.org/10.1016/j.giq.2008.05.004 +Paul T. Jaeger,Deliberative democracy and the conceptual foundations of electronic government.,2005,22,Government Information Quarterly,4,db/journals/giq/giq22.html#Jaeger05,https://doi.org/10.1016/j.giq.2006.01.012 +Viswanath Venkatesh,A usability evaluation of the Obamacare website.,2014,31,Government Information Quarterly,4,db/journals/giq/giq31.html#VenkateshHA14,https://doi.org/10.1016/j.giq.2014.07.003 +Andrew Whitmore,Using open government data to predict war: A case study of data and systems challenges.,2014,31,Government Information Quarterly,4,db/journals/giq/giq31.html#Whitmore14,https://doi.org/10.1016/j.giq.2014.04.003 +Harold C. Relyea,Declassification review of congressional records.,2011,28,Government Information Quarterly,1,db/journals/giq/giq28.html#Relyea11,https://doi.org/10.1016/j.giq.2010.09.001 +David L. Baker,Advancing E-Government performance in the United States through enhanced usability benchmarks.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#Baker09,https://doi.org/10.1016/j.giq.2008.01.004 +Jooho Lee,The willingness of e-Government service adoption by business users: The role of offline service quality and trust in technology.,2011,28,Government Information Quarterly,2,db/journals/giq/giq28.html#LeeKA11,https://doi.org/10.1016/j.giq.2010.07.007 +Frank A. G. den Butter,Using IT to engender trust in government-to-business relationships: The Authorized Economic Operator (AEO) as an example.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#ButterLT12,https://doi.org/10.1016/j.giq.2011.05.004 +Brian Detlor,Information quality and community municipal portal use.,2013,30,Government Information Quarterly,1,db/journals/giq/giq30.html#DetlorHRZ13,https://doi.org/10.1016/j.giq.2012.08.004 +R. David Lankes,Grabbing ERIC by the tail: Introducing the ERIC commissioned papers.,2001,18,Government Information Quarterly,1,db/journals/giq/giq18.html#Lankes01,https://doi.org/10.1016/S0740-624X(00)00061-7 +DongBack Seo,Comparing attitudes toward e-government of non-users versus users in a rural and urban municipality.,2016,33,Government Information Quarterly,2,db/journals/giq/giq33.html#SeoB16,https://doi.org/10.1016/j.giq.2016.02.002 +Jeong Min Choi,Factors influencing public officials' responses to requests for information disclosure.,2018,35,Government Information Quarterly,1,db/journals/giq/giq35.html#Choi18,https://doi.org/10.1016/j.giq.2017.11.007 +Lee S. Strickland,The information gulag: Rethinking openness in * of national danger.,2005,22,Government Information Quarterly,4,db/journals/giq/giq22.html#Strickland05,https://doi.org/10.1016/j.giq.2006.01.005 +Gabriel Puron Cid,The effects of contextual factors into different features of financial transparency at the municipal level.,2018,35,Government Information Quarterly,1,db/journals/giq/giq35.html#CidB18,https://doi.org/10.1016/j.giq.2017.10.005 +Eric Afful-Dadzie,Open Government Data in Africa: A preference elicitation analysis of media practitioners.,2017,34,Government Information Quarterly,2,db/journals/giq/giq34.html#Afful-DadzieA17,https://doi.org/10.1016/j.giq.2017.02.005 +Jeannine E. Relly,How business lobby networks shaped the U.S. Freedom of Information Act: An examination of 60 years of congressional testimony.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#RellyS16,https://doi.org/10.1016/j.giq.2016.05.002 +John Carlo Bertot,Universal service in a global networked environment: Selected issues and possible approaches.,1999,16,Government Information Quarterly,4,db/journals/giq/giq16.html#BertotMO99,https://doi.org/10.1016/S0740-624X(00)86837-9 +Sharon Strover,The prospects for broadband deployment in rural America.,2003,20,Government Information Quarterly,2,db/journals/giq/giq20.html#Strover03,https://doi.org/10.1016/S0740-624X(03)00038-8 +Nadine Strauß,Digital diplomacy in GCC countries: Strategic communication of Western embassies on Twitter.,2015,32,Government Information Quarterly,4,db/journals/giq/giq32.html#StraussKMN15,https://doi.org/10.1016/j.giq.2015.08.001 +Antonio Cordella,A public value perspective for ICT enabled public sector reforms: A theoretical reflection.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#CordellaB12,https://doi.org/10.1016/j.giq.2012.03.004 +Shahjahan H. Bhuiyan,Modernizing Bangladesh public administration through e-governance: Benefits and challenges.,2011,28,Government Information Quarterly,1,db/journals/giq/giq28.html#Bhuiyan11,https://doi.org/10.1016/j.giq.2010.04.006 +Tony Dwi Susanto,User acceptance of SMS-based e-government services: Differences between adopters and non-adopters.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#SusantoG13,https://doi.org/10.1016/j.giq.2013.05.010 +Endrit Kromidha,Strategic e-government development and the role of benchmarking.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#Kromidha12,https://doi.org/10.1016/j.giq.2012.04.006 +Loni Hagen,E-petition popularity: Do linguistic and semantic factors matter?,2016,33,Government Information Quarterly,4,db/journals/giq/giq33.html#HagenHUMFK16,https://doi.org/10.1016/j.giq.2016.07.006 +Kyujin Jung,Tracing interorganizational information networks during emergency response period: A webometric approach to the 2012 Gumi chemical spill in South Korea.,2016,33,Government Information Quarterly,1,db/journals/giq/giq33.html#JungP16,https://doi.org/10.1016/j.giq.2015.09.010 +Kevin C. Desouza,Restructuring government intelligence programs: A few good suggestions.,2005,22,Government Information Quarterly,3,db/journals/giq/giq22.html#Desouza05,https://doi.org/10.1016/j.giq.2005.05.001 +Enrique Bonsón,Citizens' engagement on local governments' Facebook sites. An empirical analysis: The impact of different media and content types in Western Europe.,2015,32,Government Information Quarterly,1,db/journals/giq/giq32.html#BonsonRR15,https://doi.org/10.1016/j.giq.2014.11.001 +Frank L. K. Ohemeng,One way traffic: The open data initiative project and the need for an effective demand side initiative in Ghana.,2015,32,Government Information Quarterly,4,db/journals/giq/giq32.html#OhemengO15,https://doi.org/10.1016/j.giq.2015.07.005 +Ines Mergel,A framework for interpreting social media interactions in the public sector.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#Mergel13a,https://doi.org/10.1016/j.giq.2013.05.015 +Rodrigo Sandoval-Almazán,Towards cyberactivism 2.0? Understanding the use of social media and other information technologies for political activism and social movements.,2014,31,Government Information Quarterly,3,db/journals/giq/giq31.html#Sandoval-Almazan14,https://doi.org/10.1016/j.giq.2013.10.016 +Aizhan Tursunbayeva,Use of social media for e-Government in the public health sector: A systematic review of published studies.,2017,34,Government Information Quarterly,2,db/journals/giq/giq34.html#TursunbayevaFP17,https://doi.org/10.1016/j.giq.2017.04.001 +João Rosa,Risk factors in e-justice information systems.,2013,30,Government Information Quarterly,3,db/journals/giq/giq30.html#RosaTP13,https://doi.org/10.1016/j.giq.2013.02.002 +Daniel J. Metcalfe,The nature of government secrecy.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#Metcalfe09,https://doi.org/10.1016/j.giq.2009.02.001 +Myongho Yi,Comparison of social media use for the U.S. and the Korean governments.,2013,30,Government Information Quarterly,3,db/journals/giq/giq30.html#YiOK13,https://doi.org/10.1016/j.giq.2013.01.004 +Miriam D. Rosenthal,Striving for perfection: a brief history of advances and undercounts in the U.S. Census.,2000,17,Government Information Quarterly,2,db/journals/giq/giq17.html#Rosenthal00,https://doi.org/10.1016/S0740-624X(00)00027-7 +Ines Mergel,Social media adoption and resulting tactics in the U.S. federal government.,2013,30,Government Information Quarterly,2,db/journals/giq/giq30.html#Mergel13,https://doi.org/10.1016/j.giq.2012.12.004 +Hans Jochen Scholl,Forums for electronic government scholars: Insights from a 2012/2013 study.,2014,31,Government Information Quarterly,2,db/journals/giq/giq31.html#SchollD14,https://doi.org/10.1016/j.giq.2013.10.008 +Wolfgang E. Ebbers,Facts and feelings: The role of rational and irrational factors in citizens' channel choices.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#EbbersJPW16,https://doi.org/10.1016/j.giq.2016.06.001 +Arild Jansen,The nature of public e-services and their quality dimensions.,2016,33,Government Information Quarterly,4,db/journals/giq/giq33.html#JansenO16,https://doi.org/10.1016/j.giq.2016.08.005 +Wolfgang E. Ebbers,Electronic government: Rethinking channel management strategies.,2008,25,Government Information Quarterly,2,db/journals/giq/giq25.html#EbbersPN08,https://doi.org/10.1016/j.giq.2006.11.003 +Lukasz Porwol,An ontology for next generation e-Participation initiatives.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#PorwolOB16,https://doi.org/10.1016/j.giq.2016.01.007 +Björn Niehaves,Business process management capabilities in local governments: A multi-method study.,2013,30,Government Information Quarterly,3,db/journals/giq/giq30.html#NiehavesPB13,https://doi.org/10.1016/j.giq.2013.03.002 +Aderonke A. Oni,Empirical study of user acceptance of online political participation: Integrating Civic Voluntarism Model and Theory of Reasoned Action.,2017,34,Government Information Quarterly,2,db/journals/giq/giq34.html#OniOMA17,https://doi.org/10.1016/j.giq.2017.02.003 +Barbara J. Costello,Moving in the right direction: Developments in the online availability of full-text Congressional committee hearing transcripts.,2008,25,Government Information Quarterly,1,db/journals/giq/giq25.html#Costello08,https://doi.org/10.1016/j.giq.2007.05.003 +Isabel Gallego álvarez,Are determining factors of municipal E-government common to a worldwide municipal view? An intra-country comparison.,2010,27,Government Information Quarterly,4,db/journals/giq/giq27.html#AlvarezDG10,https://doi.org/10.1016/j.giq.2009.12.011 +Dennis Linders,Towards open development: Leveraging open data to improve the planning and coordination of international aid.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#Linders13,https://doi.org/10.1016/j.giq.2013.04.001 +Fatemeh Ahmadi Zeleti,Exploring the economic value of open government data.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#ZeletiOC16,https://doi.org/10.1016/j.giq.2016.01.008 +Ines Mergel,Agile government: Systematic literature review and future research.,2018,35,Government Information Quarterly,2,db/journals/giq/giq35.html#MergelGB18,https://doi.org/10.1016/j.giq.2018.04.003 +Lynette Kvasny,e-Government services for faith-based organizations: Bridging the organizational divide.,2011,28,Government Information Quarterly,1,db/journals/giq/giq28.html#KvasnyL11,https://doi.org/10.1016/j.giq.2010.03.006 +Fernando Mendez,What drives fidelity to internet voting? Evidence from the roll-out of internet voting in Switzerland.,2017,34,Government Information Quarterly,3,db/journals/giq/giq34.html#MendezS17,https://doi.org/10.1016/j.giq.2017.05.005 +John de Reuck,Universal service in a participatory democracy: A perspective from Australia.,1999,16,Government Information Quarterly,4,db/journals/giq/giq16.html#ReuckJ99,https://doi.org/10.1016/S0740-624X(00)86839-2 +Yushim Kim,Digital government and wicked problems.,2016,33,Government Information Quarterly,4,db/journals/giq/giq33.html#KimZ16,https://doi.org/10.1016/j.giq.2016.10.004 +Chi-Shiou Lin,Selection practices for Web-based government publications in state depository library programs: Comparing active and passive approaches.,2008,25,Government Information Quarterly,1,db/journals/giq/giq25.html#LinE08,https://doi.org/10.1016/j.giq.2007.01.005 +Calvin M. L. Chan,E-government implementation: A macro analysis of Singapore's e-government initiatives.,2008,25,Government Information Quarterly,2,db/journals/giq/giq25.html#ChanLP08,https://doi.org/10.1016/j.giq.2006.04.011 +Godwin Kaisara,The e-Government evaluation challenge: A South African Batho Pele-aligned service quality approach.,2011,28,Government Information Quarterly,2,db/journals/giq/giq28.html#KaisaraP11,https://doi.org/10.1016/j.giq.2010.07.008 +Yvon van den Boer,Towards a model of source and channel choices in business-to-government service interactions: A structural equation modeling approach.,2017,34,Government Information Quarterly,3,db/journals/giq/giq34.html#BoerPAD17,https://doi.org/10.1016/j.giq.2017.07.002 +Jesper B. Berger,Does local government staff perceive digital communication with citizens as improved service?,2016,33,Government Information Quarterly,2,db/journals/giq/giq33.html#BergerHS16,https://doi.org/10.1016/j.giq.2016.03.003 +John Carlo Bertot,About the authors.,2003,20,Government Information Quarterly,4,db/journals/giq/giq20.html#Bertot03a,https://doi.org/10.1016/j.giq.2003.09.006 +Harla J. Frank,Index to Volume 22.,2005,22,Government Information Quarterly,4,db/journals/giq/giq22.html#Frank05,https://doi.org/10.1016/j.giq.2006.01.010 +Heather Lea Moulaison,The Minitel and France's legacy of democratic information access.,2004,21,Government Information Quarterly,1,db/journals/giq/giq21.html#Moulaison04,https://doi.org/10.1016/j.giq.2003.11.003 +Liesbet van Zoonen,Privacy concerns in smart cities.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#Zoonen16,https://doi.org/10.1016/j.giq.2016.06.004 +Rianne Dekker,The contingency of governments' responsiveness to the virtual public sphere: A systematic literature review and meta-synthesis.,2015,32,Government Information Quarterly,4,db/journals/giq/giq32.html#DekkerB15,https://doi.org/10.1016/j.giq.2015.09.007 +Fredrik Karlsson,Exploring user participation approaches in public e-service development.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#KarlssonHSH12,https://doi.org/10.1016/j.giq.2011.07.009 +Daihua Xie Yu,U.S. state government websites demonstrate better in terms of accessibility compared to federal government and commercial websites.,2011,28,Government Information Quarterly,4,db/journals/giq/giq28.html#YuP11,https://doi.org/10.1016/j.giq.2011.04.001 +Sevgi Ozkan,e-Government adoption model based on theory of planned behavior: Empirical validation.,2011,28,Government Information Quarterly,4,db/journals/giq/giq28.html#OzkanK11,https://doi.org/10.1016/j.giq.2010.10.007 +Yogesh Kumar Dwivedi,An empirical validation of a unified model of electronic government adoption (UMEGA).,2017,34,Government Information Quarterly,2,db/journals/giq/giq34.html#DwivediRJLWC17,https://doi.org/10.1016/j.giq.2017.03.001 +Sharon S. Dawes,Transnational public sector knowledge networks: A comparative study of contextual distances.,2018,35,Government Information Quarterly,2,db/journals/giq/giq35.html#DawesG18,https://doi.org/10.1016/j.giq.2018.02.002 +Anteneh Ayanso,An analytics approach to exploring the link between ICT development and affordability.,2015,32,Government Information Quarterly,4,db/journals/giq/giq32.html#AyansoL15,https://doi.org/10.1016/j.giq.2015.09.009 +Antonio Muñoz-Cañavate,The World Wide Web as an information system in Spain's regional administrations (1997-2000).,2004,21,Government Information Quarterly,2,db/journals/giq/giq21.html#Munoz-CanavateN04,https://doi.org/10.1016/j.giq.2004.01.004 +Joanne M. Kuzma,Accessibility design issues with UK e-government sites.,2010,27,Government Information Quarterly,2,db/journals/giq/giq27.html#Kuzma10,https://doi.org/10.1016/j.giq.2009.10.004 +John A. Shuler,Reviews.,2001,18,Government Information Quarterly,2,db/journals/giq/giq18.html#Shuler01a,https://doi.org/10.1016/S0740-624X(01)00068-5 +Karen Hogenboom,Lessons learned about access to government information after World War II can be applied after September 11.,2008,25,Government Information Quarterly,1,db/journals/giq/giq25.html#Hogenboom08,https://doi.org/10.1016/j.giq.2007.08.002 +Antonio Muñoz-Cañavate,Electronic administration in Spain: From its beginnings to the present.,2011,28,Government Information Quarterly,1,db/journals/giq/giq28.html#Munoz-CanavateH11,https://doi.org/10.1016/j.giq.2010.05.008 +Tara Das,Measuring scholarly use of government information: An altmetrics analysis of federal statistics.,2015,32,Government Information Quarterly,3,db/journals/giq/giq32.html#Das15,https://doi.org/10.1016/j.giq.2015.05.002 +Vishanth Weerakkody,Digitally-enabled service transformation in the public sector: The lure of institutional pressure and strategic response towards change.,2016,33,Government Information Quarterly,4,db/journals/giq/giq33.html#WeerakkodyOEA16,https://doi.org/10.1016/j.giq.2016.06.006 +Louis Fisher,A response to Bert Chapman's review of In the Name of National Security: Unchecked Presidential Power and the Reynolds Case (2006).,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#Fisher09,https://doi.org/10.1016/j.giq.2009.02.002 +Rik Peeters,The digital cage: Administrative exclusion through information architecture - The case of the Dutch civil registry's master data management system.,2018,35,Government Information Quarterly,2,db/journals/giq/giq35.html#PeetersW18,https://doi.org/10.1016/j.giq.2018.02.003 +Claudene Sproles,United States Department of Justice home page.,2005,22,Government Information Quarterly,2,db/journals/giq/giq22.html#Sproles05,https://doi.org/10.1016/j.giq.2004.06.001 +Fang Wang,Explaining the low utilization of government websites: Using a grounded theory approach.,2014,31,Government Information Quarterly,4,db/journals/giq/giq31.html#Wang14,https://doi.org/10.1016/j.giq.2014.04.004 +,Decree No 8 of the Guangzhou Municipal People's Government: Guangzhou municipal provisions on open government information.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#X06,https://doi.org/10.1016/j.giq.2006.02.004 +Carole A. Ambler,Introducing the North American industry classification system.,1998,15,Government Information Quarterly,3,db/journals/giq/giq15.html#AmblerK98,https://doi.org/10.1016/S0740-624X(98)90003-X +Agneta Ranerup,The socio-material pragmatics of e-governance mobilization.,2012,29,Government Information Quarterly,3,db/journals/giq/giq29.html#Ranerup12,https://doi.org/10.1016/j.giq.2012.02.012 +Akemi Takeoka Chatfield,Tsunami early warnings via Twitter in government: Net-savvy citizens' co-production of time-critical public information services.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#ChatfieldSB13,https://doi.org/10.1016/j.giq.2013.05.021 +Ann Roselle,Internet-related work activities and academic government documents librarians' professional relationships.,1999,16,Government Information Quarterly,2,db/journals/giq/giq16.html#Roselle99,https://doi.org/10.1016/S0740-624X(99)80005-7 +Shu-Ching Chen,Florida public hurricane loss model: Research in multi-disciplinary system integration assisting government policy making.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#ChenCZHCA09,https://doi.org/10.1016/j.giq.2008.12.004 +Lorraine Kram,Why continue to be a depository library if it is all on the internet anyway?,1998,15,Government Information Quarterly,1,db/journals/giq/giq15.html#Kram98,https://doi.org/10.1016/S0740-624X(98)90015-6 +Filipe Sá,From the quality of traditional services to the quality of local e-Government online services: A literature review.,2016,33,Government Information Quarterly,1,db/journals/giq/giq33.html#SaRC16,https://doi.org/10.1016/j.giq.2015.07.004 +Staci M. Zavattaro,A critical examination of social media adoption in government: Introducing omnipresence.,2014,31,Government Information Quarterly,2,db/journals/giq/giq31.html#ZavattaroS14,https://doi.org/10.1016/j.giq.2013.10.007 +Luis Guijarro,Interoperability frameworks and enterprise architectures in e-government initiatives in Europe and the United States.,2007,24,Government Information Quarterly,1,db/journals/giq/giq24.html#Guijarro07,https://doi.org/10.1016/j.giq.2006.05.003 +Jamie P. Horsley,Introduction on open government information implementation.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#Horsley06,https://doi.org/10.1016/j.giq.2006.02.007 +Dave Gelders,The influence of warning messages on the public's perception of substance use: A theoretical framework.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#GeldersPVSMNRPD09,https://doi.org/10.1016/j.giq.2008.11.006 +Christian Leuprecht,Beyond the Castle Model of cyber-risk and cyber-security.,2016,33,Government Information Quarterly,2,db/journals/giq/giq33.html#LeuprechtST16,https://doi.org/10.1016/j.giq.2016.01.012 +Ann Quarzo,Plans for census 2000.,2000,17,Government Information Quarterly,2,db/journals/giq/giq17.html#Quarzo00,https://doi.org/10.1016/S0740-624X(00)00020-4 +John Carlo Bertot,About the authors.,2004,21,Government Information Quarterly,4,db/journals/giq/giq21.html#Bertot04a,https://doi.org/10.1016/j.giq.2004.09.001 +Ron Sepic,The national biological information infrastructure as an E-government tool.,2002,19,Government Information Quarterly,4,db/journals/giq/giq19.html#SepicK02,https://doi.org/10.1016/S0740-624X(02)00120-X +John A. Shuler,Introduction.,1998,15,Government Information Quarterly,1,db/journals/giq/giq15.html#ShulerC98a,https://doi.org/10.1016/S0740-624X(98)90017-X +Xian Gao,E-government services and social media adoption: Experience of small local governments in Nebraska state.,2017,34,Government Information Quarterly,4,db/journals/giq/giq34.html#GaoL17,https://doi.org/10.1016/j.giq.2017.09.005 +Dong-Hee Shin,Evaluation of Korean information infrastructure policy 2000-2010: Focusing on broadband ecosystem change.,2011,28,Government Information Quarterly,3,db/journals/giq/giq28.html#ShinK11,https://doi.org/10.1016/j.giq.2010.07.009 +Aimée C. Quinn,LexisNexis U.S. Serial Set Digital Collection.,2005,22,Government Information Quarterly,4,db/journals/giq/giq22.html#Quinn05,https://doi.org/10.1016/j.giq.2006.01.006 +Jesper Holgersson,Public e-service development: Understanding citizens' conditions for participation.,2014,31,Government Information Quarterly,3,db/journals/giq/giq31.html#HolgerssonK14,https://doi.org/10.1016/j.giq.2014.02.006 +Eileen Quam,Informing and evaluating a metadata initiative: Usability and metadata studies in Minnesota's Foundations Project.,2001,18,Government Information Quarterly,3,db/journals/giq/giq18.html#Quam01,https://doi.org/10.1016/S0740-624X(01)00075-2 +Kyong Rae Lee,The Korean government's electronic record management reform: The promise and perils of digital democratization.,2009,26,Government Information Quarterly,3,db/journals/giq/giq26.html#LeeL09,https://doi.org/10.1016/j.giq.2009.03.007 +Gabriel Marcuzzo do Canto Cavalheiro,Towards a heuristic frame for transferring e-government technology.,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#CavalheiroJ14,https://doi.org/10.1016/j.giq.2013.09.005 +Vishanth Weerakkody,Transformational change and business process reengineering (BPR): Lessons from the British and Dutch public sector.,2011,28,Government Information Quarterly,3,db/journals/giq/giq28.html#WeerakkodyJD11,https://doi.org/10.1016/j.giq.2010.07.010 +Rowena Cullen,Democracy online: an assessment of New Zealand government web sites.,2000,17,Government Information Quarterly,3,db/journals/giq/giq17.html#CullenH00,https://doi.org/10.1016/S0740-624X(00)00033-2 +Dave Gelders,Showing results? An analysis of the perceptions of internal and external stakeholders of the public performance communication by the Belgian and Dutch Railways.,2008,25,Government Information Quarterly,2,db/journals/giq/giq25.html#GeldersGVS08,https://doi.org/10.1016/j.giq.2007.01.003 +John Carlo Bertot,The multiple dimensions of the digital divide: more than the technology 'haves' and 'have nots'.,2003,20,Government Information Quarterly,2,db/journals/giq/giq20.html#Bertot03,https://doi.org/10.1016/S0740-624X(03)00036-4 +Rachel Lilburn,Public archives: Heritage happiness or horror story?,1998,15,Government Information Quarterly,2,db/journals/giq/giq15.html#Lilburn98,https://doi.org/10.1016/S0740-624X(98)90042-9 +Hui-Ju Wang,Adoption of open government data among government agencies.,2016,33,Government Information Quarterly,1,db/journals/giq/giq33.html#WangL16,https://doi.org/10.1016/j.giq.2015.11.004 +María-Dolores Guillamón,Factors influencing social media use in local governments: The case of Italy and Spain.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#GuillamonRGM16,https://doi.org/10.1016/j.giq.2016.06.005 +Robert D. Carlitz,Online rulemaking: a step toward E-governance.,2002,19,Government Information Quarterly,4,db/journals/giq/giq19.html#CarlitzG02,https://doi.org/10.1016/S0740-624X(02)00118-1 +Barbie Selby,Age of Aquarius - The FDLP in the 21st century.,2008,25,Government Information Quarterly,1,db/journals/giq/giq25.html#Selby08,https://doi.org/10.1016/j.giq.2007.09.002 +Peter Hernon,The government performance and results act.,1998,15,Government Information Quarterly,2,db/journals/giq/giq15.html#Hernon98a,https://doi.org/10.1016/S0740-624X(98)90040-5 +Shuhua Monica Liu,Special issue on internet plus government: New opportunities to solve public problems?,2018,35,Government Information Quarterly,1,db/journals/giq/giq35.html#LiuK18,https://doi.org/10.1016/j.giq.2018.01.004 +Kheir Al-Kodmany,Online tools for public participation.,2001,18,Government Information Quarterly,4,db/journals/giq/giq18.html#Al-Kodmany01,https://doi.org/10.1016/S0740-624X(01)00087-9 +Panagiotis Panagiotopoulos,Citizen-government collaboration on social media: The case of Twitter in the 2011 riots in England.,2014,31,Government Information Quarterly,3,db/journals/giq/giq31.html#Panagiotopoulos14,https://doi.org/10.1016/j.giq.2013.10.014 +Bob Rowe,Rural technology deployment and access: successes upon which to build.,2003,20,Government Information Quarterly,2,db/journals/giq/giq20.html#Rowe03,https://doi.org/10.1016/S0740-624X(03)00034-0 +Tain Sue Jan,Government budget and accounting information policy and practice in Taiwan.,2002,19,Government Information Quarterly,2,db/journals/giq/giq19.html#JanT02,https://doi.org/10.1016/S0740-624X(02)00095-3 +Adalmir Oliveira Gomes,Effects of investment in information and communication technologies on productivity of courts in Brazil.,2018,35,Government Information Quarterly,3,db/journals/giq/giq35.html#GomesAS18,https://doi.org/10.1016/j.giq.2018.06.002 +John Carlo Bertot,Universal and contextualized public services: Digital public service innovation framework.,2016,33,Government Information Quarterly,2,db/journals/giq/giq33.html#BertotEJ16,https://doi.org/10.1016/j.giq.2016.05.004 +Aimée C. Quinn,Information technologies and civic engagement: Perspectives from librarianship and planning.,2007,24,Government Information Quarterly,3,db/journals/giq/giq24.html#QuinnR07,https://doi.org/10.1016/j.giq.2006.08.005 +Hans de Bruijn,Building Cybersecurity Awareness: The need for evidence-based framing strategies.,2017,34,Government Information Quarterly,1,db/journals/giq/giq34.html#BruijnJ17,https://doi.org/10.1016/j.giq.2017.02.007 +Jeannine E. Relly,"Erratum to ""Perceptions of transparency of government policymaking: A cross-national study"" [Government Information Quarterly 26 (2009) 148-157].",2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#RellyS09a,https://doi.org/10.1016/j.giq.2009.01.002 +Andrew Whitmore,A statistical analysis of the construction of the United Nations E-Government Development Index.,2012,29,Government Information Quarterly,1,db/journals/giq/giq29.html#Whitmore12,https://doi.org/10.1016/j.giq.2011.06.003 +Maggie Farrell,Google and government documents.,2005,22,Government Information Quarterly,2,db/journals/giq/giq22.html#Farrell05,https://doi.org/10.1016/j.giq.2005.03.002 +John A. Shuler,Libraries and government information: the past is not necessarily prologue.,2002,19,Government Information Quarterly,1,db/journals/giq/giq19.html#Shuler02,https://doi.org/10.1016/S0740-624X(01)00099-5 +Inger Brännström,Gender and digital divide 2000-2008 in two low-income economies in Sub-Saharan Africa: Kenya and Somalia in official statistics.,2012,29,Government Information Quarterly,1,db/journals/giq/giq29.html#Brannstrom12,https://doi.org/10.1016/j.giq.2011.03.004 +Daniel G. Dorner,Public sector readiness for digital preservation in New Zealand: The rate of adoption of an innovation in records management practices.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#Dorner09,https://doi.org/10.1016/j.giq.2008.11.003 +Cassandra Hartnett,Lobbying for libraries and public's access to government information: An insider's view.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#Hartnett06,https://doi.org/10.1016/j.giq.2005.07.003 +Jane Fedorowicz,A collaborative network for first responders: Lessons from the CapWIN case.,2007,24,Government Information Quarterly,4,db/journals/giq/giq24.html#FedorowiczGW07,https://doi.org/10.1016/j.giq.2007.06.001 +Tomasz Janowski,"Erratum to ""Government Information Networks - Mapping Electronic Governance cases through Public Administration concepts"" [Government Information Quarterly 29S1 (2012) 1-10].",2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#JanowskiPD12a,https://doi.org/10.1016/j.giq.2012.02.001 +Bjarne Rerup Schlichter,Measuring ICT usage quality for information society building.,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#SchlichterD14,https://doi.org/10.1016/j.giq.2013.09.003 +Agneta Ranerup,An analysis of business models in Public Service Platforms.,2016,33,Government Information Quarterly,1,db/journals/giq/giq33.html#RanerupHH16,https://doi.org/10.1016/j.giq.2016.01.010 +Enrico Ferro,Policy making 2.0: From theory to practice.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#FerroLCO13,https://doi.org/10.1016/j.giq.2013.05.018 +Paul T. Y. Tseng,To explore managerial issues and their implications on e-Government deployment in the public sector: Lessons from Taiwan's Bureau of Foreign Trade.,2008,25,Government Information Quarterly,4,db/journals/giq/giq25.html#TsengYHW08,https://doi.org/10.1016/j.giq.2007.06.003 +Katherine H. Weimer,The coast mappers.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#Weimer06,https://doi.org/10.1016/j.giq.2005.07.005 +Ben Amata,FOIAonline (Freedom of Information Act).,2014,31,Government Information Quarterly,2,db/journals/giq/giq31.html#Amata14,https://doi.org/10.1016/j.giq.2014.02.004 +Suzanne L. Holcombe,Challenges to Globalization: Analyzing the Economics.,2006,23,Government Information Quarterly,2,db/journals/giq/giq23.html#Holcombe06,https://doi.org/10.1016/j.giq.2006.04.006 +Hui Na Chua,Unveiling the coverage patterns of newspapers on the personal data protection act.,2017,34,Government Information Quarterly,2,db/journals/giq/giq34.html#ChuaWCS17,https://doi.org/10.1016/j.giq.2017.02.006 +Panagiotis Panagiotopoulos,A business model perspective for ICTs in public engagement.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#Panagiotopoulos12,https://doi.org/10.1016/j.giq.2011.09.011 +Robert Gellman,Taming the privacy monster: a proposal for a non-regulatory privacy agency1.,2000,17,Government Information Quarterly,3,db/journals/giq/giq17.html#Gellman00,https://doi.org/10.1016/S0740-624X(00)00032-0 +Marvine Hamner,Enhancing the case for Electronic Government in developing nations: A people-centric study focused in Saudi Arabia.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#HamnerA09,https://doi.org/10.1016/j.giq.2007.08.008 +Jungwoo Lee 0002,Grounded theory analysis of e-government initiatives: Exploring perceptions of government authorities.,2007,24,Government Information Quarterly,1,db/journals/giq/giq24.html#LeeK07,https://doi.org/10.1016/j.giq.2006.05.001 +Katleen Janssen,The influence of the PSI directive on open government data: An overview of recent developments.,2011,28,Government Information Quarterly,4,db/journals/giq/giq28.html#Janssen11,https://doi.org/10.1016/j.giq.2011.01.004 +Thomas Kohlborn,Quality assessment of service bundles for governmental one-stop portals: A literature review.,2014,31,Government Information Quarterly,2,db/journals/giq/giq31.html#Kohlborn14,https://doi.org/10.1016/j.giq.2013.10.006 +Dong-Hee Shin,A critique of Korean National Information Strategy: Case of national information infrastructures.,2007,24,Government Information Quarterly,3,db/journals/giq/giq24.html#Shin07,https://doi.org/10.1016/j.giq.2006.06.011 +Megan Dreger,Congressional Research Services (CRS) Reports: A Review of Sources.,2007,24,Government Information Quarterly,4,db/journals/giq/giq24.html#Dreger07,https://doi.org/10.1016/j.giq.2006.09.009 +Luiz Antonio Joia,The impact of government-to-government endeavors on the intellectual capital of public organizations.,2008,25,Government Information Quarterly,2,db/journals/giq/giq25.html#Joia08,https://doi.org/10.1016/j.giq.2007.06.004 +Jeannine E. Relly,Perceptions of transparency of government policymaking: A cross-national study.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#RellyS09,https://doi.org/10.1016/j.giq.2008.04.002 +Jun Xia,Linking ICTs to rural development: China's rural information policy.,2010,27,Government Information Quarterly,2,db/journals/giq/giq27.html#Xia10,https://doi.org/10.1016/j.giq.2009.10.005 +Bonnie Rubenstein-Montano,Knowledge management: A U.S. Social Security Administration case study.,2001,18,Government Information Quarterly,3,db/journals/giq/giq18.html#Rubenstein-Montano01,https://doi.org/10.1016/S0740-624X(01)00078-8 +John A. Shuler,Reviews.,2000,17,Government Information Quarterly,3,db/journals/giq/giq17.html#ShulerM00a,https://doi.org/10.1016/S0740-624X(00)00041-1 +Barbara Miller,Review of the U.S. Department of the Interior Web site.,2007,24,Government Information Quarterly,4,db/journals/giq/giq24.html#Miller07,https://doi.org/10.1016/j.giq.2006.10.005 +Albert Jacob Meijer,Publishing public performance results on the Internet: Do stakeholders use the Internet to hold Dutch public service organizations to account?,2007,24,Government Information Quarterly,1,db/journals/giq/giq24.html#Meijer07,https://doi.org/10.1016/j.giq.2006.01.014 +Herbert Lin,Fluency with information technology∗*.,2000,17,Government Information Quarterly,1,db/journals/giq/giq17.html#Lin00,https://doi.org/10.1016/S0740-624X(99)00024-6 +Donnelyn Curtis,Partners in supporting science: academic and government research libraries.,2000,17,Government Information Quarterly,3,db/journals/giq/giq17.html#CurtisS00,https://doi.org/10.1016/S0740-624X(00)00036-8 +Lorri Mon,Digital reference service.,2000,17,Government Information Quarterly,3,db/journals/giq/giq17.html#Mon00,https://doi.org/10.1016/S0740-624X(00)00046-0 +Donald A. Ritchie,Private printers and the party press: What went on before the GPO.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#Ritchie12,https://doi.org/10.1016/j.giq.2011.12.006 +J. Timothy Sprehe,Integrating records management into information resources management in U.S. government agencies1.,2000,17,Government Information Quarterly,1,db/journals/giq/giq17.html#Sprehe00a,https://doi.org/10.1016/S0740-624X(99)00022-2 +Hyuckbin Kwon,Interorganizational collaboration and community building for the preservation of state government digital information: Lessons from NDIIPP state partnership initiative.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#KwonPB09,https://doi.org/10.1016/j.giq.2008.01.007 +Demetrios Sarantis,A goal-driven management framework for electronic government transformation projects implementation.,2011,28,Government Information Quarterly,1,db/journals/giq/giq28.html#SarantisCA11,https://doi.org/10.1016/j.giq.2009.10.006 +Robert Hazell,Assessing the performance of freedom of information.,2010,27,Government Information Quarterly,4,db/journals/giq/giq27.html#HazellW10,https://doi.org/10.1016/j.giq.2010.03.005 +Seamus Simpson,Next generation network environments in Europe - The significance of the EU as a policy actor.,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#Simpson14,https://doi.org/10.1016/j.giq.2012.08.008 +Leonidas G. Anthopoulos,Why e-government projects fail? An analysis of the Healthcare.gov website.,2016,33,Government Information Quarterly,1,db/journals/giq/giq33.html#AnthopoulosRGM16,https://doi.org/10.1016/j.giq.2015.07.003 +Albert Jacob Meijer,E-mail in government: Not post-bureaucratic but late-bureaucratic organizations.,2008,25,Government Information Quarterly,3,db/journals/giq/giq25.html#Meijer08,https://doi.org/10.1016/j.giq.2007.05.004 +Aimée C. Quinn,Keeping the citizenry informed: early congressional printing and 21st century information policy.,2003,20,Government Information Quarterly,3,db/journals/giq/giq20.html#Quinn03,https://doi.org/10.1016/S0740-624X(03)00055-8 +Yi-Shun Wang,Why do people use information kiosks? A validation of the Unified Theory of Acceptance and Use of Technology.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#WangS09,https://doi.org/10.1016/j.giq.2008.07.001 +Marijn Janssen,Building the next generation of digital government infrastructures.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#JanssenCG09,https://doi.org/10.1016/j.giq.2008.12.006 +Karen Mossberger,Connecting citizens and local governments? Social media and interactivity in major U.S. cities.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#MossbergerWC13,https://doi.org/10.1016/j.giq.2013.05.016 +Paul T. Jaeger,The Policy Implications of Internet Connectivity in Public Libraries.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#JaegerBML06,https://doi.org/10.1016/j.giq.2005.10.002 +Kim Viborg Andersen,E-government maturity models: Extension of the Layne and Lee model.,2006,23,Government Information Quarterly,2,db/journals/giq/giq23.html#AndersenH06,https://doi.org/10.1016/j.giq.2005.11.008 +Charles D. Bernholz,American Indian treaties in the Courts of Claims: A guide to treaty citations from opinions of the United States Courts of Claims.,2008,25,Government Information Quarterly,2,db/journals/giq/giq25.html#BernholzW08,https://doi.org/10.1016/j.giq.2006.07.015 +Brian E. Whitacre,How much does broadband infrastructure matter? Decomposing the metro-non-metro adoption gap with the help of the National Broadband Map.,2015,32,Government Information Quarterly,3,db/journals/giq/giq32.html#WhitacreSG15,https://doi.org/10.1016/j.giq.2015.03.002 +Siddhartha Menon,The evolution of the policy objectives of South Korea's Broadband Convergence Network from 2004 to 2007.,2011,28,Government Information Quarterly,2,db/journals/giq/giq28.html#Menon11,https://doi.org/10.1016/j.giq.2010.03.008 +Göran Goldkuhl,E-government design research: Towards the policy-ingrained IT artifact.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#Goldkuhl16,https://doi.org/10.1016/j.giq.2016.05.006 +Juan-Gabriel Cegarra-Navarro,Technology knowledge and governance: Empowering citizen engagement and participation.,2014,31,Government Information Quarterly,4,db/journals/giq/giq31.html#Cegarra-Navarro14,https://doi.org/10.1016/j.giq.2014.07.001 +Benjamin L. Schooley,Towards end-to-end government performance management: Case study of interorganizational information integration in emergency medical services (EMS).,2007,24,Government Information Quarterly,4,db/journals/giq/giq24.html#SchooleyH07,https://doi.org/10.1016/j.giq.2007.04.001 +Maureen Henninger,Reforms to counter a culture of secrecy: Open government in Australia.,2018,35,Government Information Quarterly,3,db/journals/giq/giq35.html#Henninger18,https://doi.org/10.1016/j.giq.2018.03.003 +Tobias Giesbrecht,Smart advisors in the front office: Designing employee-empowering and citizen-centric services.,2016,33,Government Information Quarterly,4,db/journals/giq/giq33.html#GiesbrechtSS16,https://doi.org/10.1016/j.giq.2016.05.005 +Marijn Janssen,Big and Open Linked Data (BOLD) in government: A challenge to transparency and privacy?,2015,32,Government Information Quarterly,4,db/journals/giq/giq32.html#JanssenH15,https://doi.org/10.1016/j.giq.2015.11.007 +Ann-Sofie Hellberg,Conflicts in implementing interoperability: Re-operationalizing basic values.,2013,30,Government Information Quarterly,2,db/journals/giq/giq30.html#HellbergG13,https://doi.org/10.1016/j.giq.2012.10.006 +Godwin Thomas,Understanding the problem of coordination in a large scale distributed environment from a service lens view - Towards the South African public sector e-Administration criteria for coordination support.,2015,32,Government Information Quarterly,4,db/journals/giq/giq32.html#ThomasBG15,https://doi.org/10.1016/j.giq.2015.08.002 +L. Elaine Halchin,Electronic government in the age of terrorism.,2002,19,Government Information Quarterly,3,db/journals/giq/giq19.html#Halchin02,https://doi.org/10.1016/S0740-624X(02)00104-1 +Albert Meijer,Alignment 2.0: Strategic use of new internet technologies in government.,2010,27,Government Information Quarterly,2,db/journals/giq/giq27.html#MeijerT10,https://doi.org/10.1016/j.giq.2009.12.001 +Fengyi Lin,Assessing citizen adoption of e-Government initiatives in Gambia: A validation of the technology acceptance model in information systems success.,2011,28,Government Information Quarterly,2,db/journals/giq/giq28.html#LinFL11,https://doi.org/10.1016/j.giq.2010.09.004 +Sungsoo Hwang,In pursuit of the effective neighborhood information system: User-friendliness and training.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#HwangH09,https://doi.org/10.1016/j.giq.2008.06.004 +Marvine Hamner,Expanding the Technology Acceptance Model to examine Personal Computing Technology utilization in government agencies in developing countries.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#HamnerQ09,https://doi.org/10.1016/j.giq.2007.12.003 +John Carlo Bertot,New editorial board members.,2005,22,Government Information Quarterly,2,db/journals/giq/giq22.html#Bertot05,https://doi.org/10.1016/j.giq.2005.03.001 +Natasa Veljkovic,Benchmarking open government: An open data perspective.,2014,31,Government Information Quarterly,2,db/journals/giq/giq31.html#VeljkovicBS14,https://doi.org/10.1016/j.giq.2013.10.011 +Akemi Takeoka Chatfield,The role of policy entrepreneurs in open government data policy innovation diffusion: An analysis of Australian Federal and State Governments.,2018,35,Government Information Quarterly,1,db/journals/giq/giq35.html#ChatfieldR18,https://doi.org/10.1016/j.giq.2017.10.004 +Yeon-Tae Choi,Understanding gender inequality in central e-government: A Korean case study.,2013,30,Government Information Quarterly,3,db/journals/giq/giq30.html#ChoiP13,https://doi.org/10.1016/j.giq.2013.01.003 +Ibrahim Akman,E-Government: A global view and an empirical evaluation of some attributes of citizens.,2005,22,Government Information Quarterly,2,db/journals/giq/giq22.html#AkmanYMA05,https://doi.org/10.1016/j.giq.2004.12.001 +Gustaf Juell-Skielse,Modes of collaboration and expected benefits of inter-organizational E-government initiatives: A multi-case study.,2017,34,Government Information Quarterly,4,db/journals/giq/giq34.html#Juell-SkielseLP17,https://doi.org/10.1016/j.giq.2017.10.008 +Dimitri Gagliardi,Information and communication technologies and public participation: interactive maps and value added for citizens.,2017,34,Government Information Quarterly,1,db/journals/giq/giq34.html#GagliardiSSMNC17,https://doi.org/10.1016/j.giq.2016.09.002 +John A. Shuler,Informing the nation: the future of librarianship and government information service.,2005,22,Government Information Quarterly,2,db/journals/giq/giq22.html#Shuler05,https://doi.org/10.1016/j.giq.2005.03.003 +Mila Gascó-Hernández,Promoting the use of open government data: Cases of training and engagement.,2018,35,Government Information Quarterly,2,db/journals/giq/giq35.html#Gasco-Hernandez18,https://doi.org/10.1016/j.giq.2018.01.003 +Sukumar Ganapati,Open e-government in U.S. state governments: Survey evidence from Chief Information Officers.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#GanapatiR12,https://doi.org/10.1016/j.giq.2011.09.006 +Jeongwon Yoon,Varying criticality of key success factors of national e-Strategy along the status of economic development of nations.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#YoonC09,https://doi.org/10.1016/j.giq.2008.08.006 +Peter Hernon,Government on the web: A comparison between the United States and New Zealand.,1998,15,Government Information Quarterly,4,db/journals/giq/giq15.html#Hernon98b,https://doi.org/10.1016/S0740-624X(98)90034-X +Viswanath Venkatesh,A usability study of the obamacare website: Evaluation and recommendations.,2017,34,Government Information Quarterly,2,db/journals/giq/giq34.html#VenkateshHA17,https://doi.org/10.1016/j.giq.2017.01.003 +Abiodun Olalere,Accessibility of U.S. federal government home pages: Section 508 compliance and site accessibility statements.,2011,28,Government Information Quarterly,3,db/journals/giq/giq28.html#OlalereL11,https://doi.org/10.1016/j.giq.2011.02.002 +A. Brown,Appraising the impact and role of platform models and Government as a Platform (GaaP) in UK Government public service reform: Towards a Platform Assessment Framework (PAF).,2017,34,Government Information Quarterly,2,db/journals/giq/giq34.html#BrownFTV17,https://doi.org/10.1016/j.giq.2017.03.003 +Anne Powell,e-Voting intent: A comparison of young and elderly voters.,2012,29,Government Information Quarterly,3,db/journals/giq/giq29.html#PowellWBDA12,https://doi.org/10.1016/j.giq.2012.01.003 +Ussama Yaqub,Analysis of political discourse on twitter in the context of the 2016 US presidential elections.,2017,34,Government Information Quarterly,4,db/journals/giq/giq34.html#YaqubCAV17,https://doi.org/10.1016/j.giq.2017.11.001 +Meseret D. Gebremichael,Bridging the gap in Sub-Saharan Africa: A holistic look at information poverty and the region's digital divide.,2006,23,Government Information Quarterly,2,db/journals/giq/giq23.html#GebremichaelJ06,https://doi.org/10.1016/j.giq.2006.02.011 +Jurjen Jansen,The Contextual Benchmark Method: Benchmarking e-Government services.,2010,27,Government Information Quarterly,3,db/journals/giq/giq27.html#JansenVS10,https://doi.org/10.1016/j.giq.2010.02.003 +Narvadha Veeramootoo,What determines success of an e-government service? Validation of an integrative model of e-filing continuance usage.,2018,35,Government Information Quarterly,2,db/journals/giq/giq35.html#VeeramootooND18,https://doi.org/10.1016/j.giq.2018.03.004 +Patrick Birkinshaw,Freedom of information in the UK and Europe: Further progress?,2002,19,Government Information Quarterly,1,db/journals/giq/giq19.html#Birkinshaw02,https://doi.org/10.1016/S0740-624X(01)00097-1 +Robin Gauld,How responsive are government agencies when contacted by email? Findings from a longitudinal study in Australia and New Zealand.,2016,33,Government Information Quarterly,2,db/journals/giq/giq33.html#GauldFMG16,https://doi.org/10.1016/j.giq.2016.03.004 +Fons Wijnhoven,Open government objectives and participation motivations.,2015,32,Government Information Quarterly,1,db/journals/giq/giq32.html#WijnhovenEK15,https://doi.org/10.1016/j.giq.2014.10.002 +Sharon S. Dawes,Governance in the digital age: A research and action framework for an uncertain future.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#Dawes09,https://doi.org/10.1016/j.giq.2008.12.003 +Han Woo Park,Trends in online networking among South Korean politicians - A mixed-method approach.,2009,26,Government Information Quarterly,3,db/journals/giq/giq26.html#ParkK09,https://doi.org/10.1016/j.giq.2009.02.008 +Jeffrey W. Seifert,Data mining and the search for security: Challenges for connecting the dots and databases.,2004,21,Government Information Quarterly,4,db/journals/giq/giq21.html#Seifert04,https://doi.org/10.1016/j.giq.2004.08.006 +Charles D. Bernholz,The Least Developed Countries Report 2004: Linking International Trade With Poverty Reduction.,2007,24,Government Information Quarterly,1,db/journals/giq/giq24.html#Bernholz07,https://doi.org/10.1016/j.giq.2006.04.007 +Miguel Rios-Berrios,TreeCovery: Coordinated dual treemap visualization for exploring the Recovery Act.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#Rios-BerriosSLS12,https://doi.org/10.1016/j.giq.2011.07.004 +Enrico Ferro,The role of IT literacy in defining digital divide policy needs.,2011,28,Government Information Quarterly,1,db/journals/giq/giq28.html#FerroHG11,https://doi.org/10.1016/j.giq.2010.05.007 +Yogesh Kumar Dwivedi,A generalised adoption model for services: A cross-country comparison of mobile health (m-health).,2016,33,Government Information Quarterly,1,db/journals/giq/giq33.html#DwivediSSLW16,https://doi.org/10.1016/j.giq.2015.06.003 +Kevin C. Desouza,Every citizen a missile: the need for an emergent systems approach by law enforcement.,2003,20,Government Information Quarterly,3,db/journals/giq/giq20.html#DesouzaH03,https://doi.org/10.1016/S0740-624X(03)00041-8 +Jeffrey W. Seifert,Do you know where your information is in the homeland security era?,2004,21,Government Information Quarterly,4,db/journals/giq/giq21.html#SeifertR04,https://doi.org/10.1016/j.giq.2004.08.001 +Yon Soo Lim,How do congressional members appear on the web? Tracking the web visibility of South Korean politicians.,2011,28,Government Information Quarterly,4,db/journals/giq/giq28.html#LimP11,https://doi.org/10.1016/j.giq.2011.02.003 +Athulang Mutshewa,The information behaviors of environmental planners: An exploratory study.,2007,24,Government Information Quarterly,2,db/journals/giq/giq24.html#Mutshewa07,https://doi.org/10.1016/j.giq.2006.07.002 +Lianjie Ma,E-government in China: Bringing economic development through administrative reform.,2005,22,Government Information Quarterly,1,db/journals/giq/giq22.html#MaCT05,https://doi.org/10.1016/j.giq.2004.10.001 +Donna M. Evans,E-government: An analysis for implementation: Framework for understanding cultural and social impact.,2005,22,Government Information Quarterly,3,db/journals/giq/giq22.html#EvansY05,https://doi.org/10.1016/j.giq.2005.05.007 +José Ramón Gil-García,E-government success factors: Mapping practical tools to theoretical foundations.,2005,22,Government Information Quarterly,2,db/journals/giq/giq22.html#Gil-GarciaP05,https://doi.org/10.1016/j.giq.2005.02.001 +,Shanghai Municipal People's Government Decree No 19: Shanghai municipal provisions on open government information.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#X06a,https://doi.org/10.1016/j.giq.2006.02.009 +Anna Ya Ni,Challenges in e-government development: Lessons from two information kiosk projects.,2005,22,Government Information Quarterly,1,db/journals/giq/giq22.html#NiH05,https://doi.org/10.1016/j.giq.2004.10.005 +Abebe Rorissa,An analysis of African e-Government service websites.,2010,27,Government Information Quarterly,2,db/journals/giq/giq27.html#RorissaD10,https://doi.org/10.1016/j.giq.2009.12.003 +Jang-Hyun Kim 0001,Food policy in cyberspace: A webometric analysis of national food clusters in South Korea.,2014,31,Government Information Quarterly,3,db/journals/giq/giq31.html#KimP14,https://doi.org/10.1016/j.giq.2014.01.013 +Frederick T. Knickerbocker,Introduction.,1998,15,Government Information Quarterly,3,db/journals/giq/giq15.html#Knickerbocker98,https://doi.org/10.1016/S0740-624X(98)90001-6 +Petter Gottschalk,Maturity levels for interoperability in digital government.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#Gottschalk09,https://doi.org/10.1016/j.giq.2008.03.003 +Anthony M. Cresswell,Implications of legal and organizational issues for urban digital government development.,2001,18,Government Information Quarterly,4,db/journals/giq/giq18.html#CresswellP01,https://doi.org/10.1016/S0740-624X(01)00086-7 +Anteneh Ayanso,E-Government readiness index: A methodology and analysis.,2011,28,Government Information Quarterly,4,db/journals/giq/giq28.html#AyansoCC11,https://doi.org/10.1016/j.giq.2011.02.004 +Willem Pieterson,Personalization in the public sector: An inventory of organizational and user obstacles towards personalization of electronic services in the public sector.,2007,24,Government Information Quarterly,1,db/journals/giq/giq24.html#PietersonED07,https://doi.org/10.1016/j.giq.2005.12.001 +Ramessur Taruna Shalini,Are Mauritians ready for e-Government services?,2009,26,Government Information Quarterly,3,db/journals/giq/giq26.html#Shalini09,https://doi.org/10.1016/j.giq.2008.12.016 +Frank Bannister,The great theory hunt: Does e-government really have a problem?,2015,32,Government Information Quarterly,1,db/journals/giq/giq32.html#BannisterC15,https://doi.org/10.1016/j.giq.2014.10.003 +Muhammad Mustafa Kamal,Analyzing the role of stakeholders in the adoption of technology integration solutions in UK local government: An exploratory study.,2011,28,Government Information Quarterly,2,db/journals/giq/giq28.html#KamalWI11,https://doi.org/10.1016/j.giq.2010.08.003 +Yong Liu 0010,An empirical investigation of mobile government adoption in rural China: A case study in Zhejiang province.,2014,31,Government Information Quarterly,3,db/journals/giq/giq31.html#LiuLKGHH14,https://doi.org/10.1016/j.giq.2014.02.008 +Ahmad A. Kardan,Is e-government a way to e-democracy?: A longitudinal study of the Iranian situation.,2011,28,Government Information Quarterly,4,db/journals/giq/giq28.html#KardanS11,https://doi.org/10.1016/j.giq.2010.12.007 +Luis Felipe Luna-Reyes,Using institutional theory and dynamic simulation to understand complex e-Government phenomena.,2011,28,Government Information Quarterly,3,db/journals/giq/giq28.html#Luna-ReyesG11,https://doi.org/10.1016/j.giq.2010.08.007 +Peter Hernon,GIQ: A snapshot of the first fourteen volumes.,1998,15,Government Information Quarterly,1,db/journals/giq/giq15.html#Hernon98,https://doi.org/10.1016/S0740-624X(98)90010-7 +Robin Gauld,Public sector information system project failures: Lessons from a New Zealand hospital organization.,2007,24,Government Information Quarterly,1,db/journals/giq/giq24.html#Gauld07,https://doi.org/10.1016/j.giq.2006.02.010 +Hyeri Choi,Two-dimensional approach to governmental excellence for human development in developing countries: Combining policies and institutions with e-government.,2017,34,Government Information Quarterly,2,db/journals/giq/giq34.html#ChoiPR17,https://doi.org/10.1016/j.giq.2017.03.002 +Kim Normann Andersen,The forgotten promise of e-government maturity: Assessing responsiveness in the digital public sector.,2011,28,Government Information Quarterly,4,db/journals/giq/giq28.html#AndersenMVHG11,https://doi.org/10.1016/j.giq.2010.12.006 +Mary Alice Ball,Aggregating broadband demand: Surveying the benefits and challenges for public libraries.,2009,26,Government Information Quarterly,4,db/journals/giq/giq26.html#Ball09,https://doi.org/10.1016/j.giq.2009.05.004 +Dennis Linders,From e-government to we-government: Defining a typology for citizen coproduction in the age of social media.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#Linders12,https://doi.org/10.1016/j.giq.2012.06.003 +Michael A. McGregor,Communication technology at the Federal Communications Commission: E-government in the public interest?,2004,21,Government Information Quarterly,3,db/journals/giq/giq21.html#McGregorH04,https://doi.org/10.1016/j.giq.2004.04.005 +Charles D. Bernholz,Three International Web Sites - A Comparion: Israel Ministry of Foreign Affairs - http: //www.mfa.gov.il/mfa/home.asppalestine National Authority - http: //www.pna.gov.ps/ Swissinfo - http: //www.swissinfo.org/ Visited June 2003.,2003,20,Government Information Quarterly,4,db/journals/giq/giq20.html#Bernholz03a,https://doi.org/10.1016/j.giq.2003.09.003 +Scott Paquette,Identifying the security risks associated with governmental use of cloud computing.,2010,27,Government Information Quarterly,3,db/journals/giq/giq27.html#PaquetteJW10,https://doi.org/10.1016/j.giq.2010.01.002 +Harold C. Relyea,Federal freedom of information policy: Highlights of recent developments.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#Relyea09,https://doi.org/10.1016/j.giq.2008.12.001 +Ali Alawneh,Measuring user satisfaction from e-Government services: Lessons from Jordan.,2013,30,Government Information Quarterly,3,db/journals/giq/giq30.html#AlawnehAB13,https://doi.org/10.1016/j.giq.2013.03.001 +A. J. A. M. van Deursen,Improving digital skills for the use of online public information and services.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#DeursenD09,https://doi.org/10.1016/j.giq.2008.11.002 +Charles D. Bernholz,American Indians and the United States patent and trademark office: The Native American Tribal Insignia database.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#BernholzNG09,https://doi.org/10.1016/j.giq.2008.04.003 +Allen Mullen,GILS metadata initiatives at the state level.,2001,18,Government Information Quarterly,3,db/journals/giq/giq18.html#Mullen01,https://doi.org/10.1016/S0740-624X(01)00076-4 +R. K. Mitra,A contextual perspective of performance assessment in eGovernment: A study of Indian Police Administration.,2008,25,Government Information Quarterly,2,db/journals/giq/giq25.html#MitraG08,https://doi.org/10.1016/j.giq.2006.03.008 +Richard J. Cox,America's pyramids: Presidents and their libraries.,2002,19,Government Information Quarterly,1,db/journals/giq/giq19.html#Cox02,https://doi.org/10.1016/S0740-624X(01)00094-6 +Timothy E. McMahon,National Archives and Records Administration Web Site (November 1998).,1999,16,Government Information Quarterly,2,db/journals/giq/giq16.html#McMahon99,https://doi.org/10.1016/S0740-624X(99)80009-4 +Onook Oh,ICT mediated rumor beliefs and resulting user actions during a community crisis.,2018,35,Government Information Quarterly,2,db/journals/giq/giq35.html#OhGAR18,https://doi.org/10.1016/j.giq.2018.03.006 +Loo Geok Pee,Interactions among factors influencing knowledge management in public-sector organizations: A resource-based view.,2016,33,Government Information Quarterly,1,db/journals/giq/giq33.html#PeeK16,https://doi.org/10.1016/j.giq.2015.06.002 +Kevin Quigley,'Cyber Gurus': A rhetorical analysis of the language of cybersecurity specialists and the implications for security policy and critical infrastructure protection.,2015,32,Government Information Quarterly,2,db/journals/giq/giq32.html#QuigleyBS15,https://doi.org/10.1016/j.giq.2015.02.001 +Ramona S. McNeal,E-disclosure laws and electronic campaign finance reform: Lessons from the diffusion of e-government policies in the States.,2007,24,Government Information Quarterly,2,db/journals/giq/giq24.html#McNealSH07,https://doi.org/10.1016/j.giq.2006.06.006 +øystein Sæbø,The shape of eParticipation: Characterizing an emerging research area.,2008,25,Government Information Quarterly,3,db/journals/giq/giq25.html#SaeboRF08,https://doi.org/10.1016/j.giq.2007.04.007 +Tung-Mou Yang,How is information shared across the boundaries of government agencies? An e-Government case study.,2014,31,Government Information Quarterly,4,db/journals/giq/giq31.html#YangPW14,https://doi.org/10.1016/j.giq.2014.05.002 +C. Ann Hollifield,Creating demand: influencing information technology diffusion in rural communities.,2003,20,Government Information Quarterly,2,db/journals/giq/giq20.html#HollifieldD03,https://doi.org/10.1016/S0740-624X(03)00035-2 +Vasiliki Baka,Co-creating an open platform at the local governance level: How openness is enacted in Zambia.,2017,34,Government Information Quarterly,1,db/journals/giq/giq34.html#Baka17,https://doi.org/10.1016/j.giq.2016.10.001 +Akemi Takeoka Chatfield,A longitudinal cross-sector analysis of open data portal service capability: The case of Australian local governments.,2017,34,Government Information Quarterly,2,db/journals/giq/giq34.html#ChatfieldR17,https://doi.org/10.1016/j.giq.2017.02.004 +Julianne Mahler,Crafting the message: Controlling content on agency Web sites.,2007,24,Government Information Quarterly,3,db/journals/giq/giq24.html#MahlerR07,https://doi.org/10.1016/j.giq.2006.06.008 +Nadia Caidi,Introduction to the special issue: National security policies and implications for information flow.,2005,22,Government Information Quarterly,4,db/journals/giq/giq22.html#Caidi05,https://doi.org/10.1016/j.giq.2006.01.011 +Hsiaoping Yeh,The effects of successful ICT-based smart city services: From citizens' perspectives.,2017,34,Government Information Quarterly,3,db/journals/giq/giq34.html#Yeh17,https://doi.org/10.1016/j.giq.2017.05.001 +Wilhelm Peekhaus,Personal health information in Canada: A comparison of citizen expectations and legislation.,2008,25,Government Information Quarterly,4,db/journals/giq/giq25.html#Peekhaus08,https://doi.org/10.1016/j.giq.2007.05.002 +Lotte E. Feinberg,Homeland security: implications for information policy and practice - first appraisal.,2002,19,Government Information Quarterly,3,db/journals/giq/giq19.html#Feinberg02,https://doi.org/10.1016/S0740-624X(02)00106-5 +Kathie Brinkerhoff,Nonlibrary partnerships: acceptable use (and behavior) in the web-based depository.,2000,17,Government Information Quarterly,3,db/journals/giq/giq17.html#Brinkerhoff00,https://doi.org/10.1016/S0740-624X(00)00038-1 +Cathy Nelson Hartman,Storage of electronic files of federal agencies that have ceased operation: a partnership for permanent access.,2000,17,Government Information Quarterly,3,db/journals/giq/giq17.html#Hartman00,https://doi.org/10.1016/S0740-624X(00)00037-X +Taewoo Nam,Examining the anti-corruption effect of e-government and the moderating effect of national culture: A cross-country study.,2018,35,Government Information Quarterly,2,db/journals/giq/giq35.html#Nam18,https://doi.org/10.1016/j.giq.2018.01.005 +Daniel Draper,Analysis of Readex's Serial Set MARC records: Improving the data for the library catalog.,2013,30,Government Information Quarterly,1,db/journals/giq/giq30.html#DraperL13,https://doi.org/10.1016/j.giq.2012.06.010 +Eun-A. Park,Implementation of BTOP funding for public computing centers: Goal consensus and project performance.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#ParkJ13,https://doi.org/10.1016/j.giq.2013.07.002 +John O'Looney,Sprawl decisions: A simulation and decision support tool for citizens and policy makers.,2001,18,Government Information Quarterly,4,db/journals/giq/giq18.html#OLooney01,https://doi.org/10.1016/S0740-624X(01)00088-0 +Bruce Dearstyne,The FDNY on 9/11: Information and decision making in crisis.,2007,24,Government Information Quarterly,1,db/journals/giq/giq24.html#Dearstyne07,https://doi.org/10.1016/j.giq.2006.03.004 +Guillermina Cledou,A taxonomy for planning and designing smart mobility services.,2018,35,Government Information Quarterly,1,db/journals/giq/giq35.html#CledouEB18,https://doi.org/10.1016/j.giq.2017.11.008 +John Carlo Bertot,Bringing voice to the next generation information professional.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#Bertot13,https://doi.org/10.1016/j.giq.2013.11.001 +Anneke Zuiderwijk,Acceptance and use predictors of open data technologies: Drawing upon the unified theory of acceptance and use of technology.,2015,32,Government Information Quarterly,4,db/journals/giq/giq32.html#ZuiderwijkJD15,https://doi.org/10.1016/j.giq.2015.09.005 +Stephen F. King,Citizens as customers: Exploring the future of CRM in UK local government.,2007,24,Government Information Quarterly,1,db/journals/giq/giq24.html#King07,https://doi.org/10.1016/j.giq.2006.02.012 +David Cuillier,Internet information-seeking and its relation to support for access to government records.,2009,26,Government Information Quarterly,3,db/journals/giq/giq26.html#CuillierP09,https://doi.org/10.1016/j.giq.2009.03.001 +Daniel C. Barkley,Public service guidelines in an electronic environment.,1998,15,Government Information Quarterly,1,db/journals/giq/giq15.html#Barkley98,https://doi.org/10.1016/S0740-624X(98)90016-8 +Judy M. Dodds,Determining economic census content.,1998,15,Government Information Quarterly,3,db/journals/giq/giq15.html#Dodds98,https://doi.org/10.1016/S0740-624X(98)90002-8 +Hossana Twinomurinzi,The small group subtlety of using ICT for participatory governance: A South African experience.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#TwinomurinziPB12,https://doi.org/10.1016/j.giq.2011.09.010 +Shin-Yuan Hung,User acceptance of mobile e-government services: An empirical study.,2013,30,Government Information Quarterly,1,db/journals/giq/giq30.html#HungCK13,https://doi.org/10.1016/j.giq.2012.07.008 +Yong Jin Park,Regime formation and consequence: The case of internet security in the East-Asia 'Four Tigers'.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#Park09,https://doi.org/10.1016/j.giq.2008.03.006 +Charles D. Bernholz,The Missing Court of Claims Report: Is Letitia Humphreys Court of Claims Report 42?,2006,23,Government Information Quarterly,2,db/journals/giq/giq23.html#BernholzE06,https://doi.org/10.1016/j.giq.2006.03.003 +Panos Panagiotopoulos,The value of social media data: Integrating crowd capabilities in evidence-based policy.,2017,34,Government Information Quarterly,4,db/journals/giq/giq34.html#Panagiotopoulos17,https://doi.org/10.1016/j.giq.2017.10.009 +Robert A. Staley,Congressional hearings: Neglected sources of information on American Indians.,2008,25,Government Information Quarterly,3,db/journals/giq/giq25.html#Staley08,https://doi.org/10.1016/j.giq.2007.08.005 +Xiaohua Zhu,The failure of an early episode in the open government data movement: A historical case study.,2017,34,Government Information Quarterly,2,db/journals/giq/giq34.html#Zhu17,https://doi.org/10.1016/j.giq.2017.03.004 +Chi-Shiou Lin,Librarian-initiated publications discovery: How do digital depository librarians discover and select web-based government publications for state digital depositories?,2010,27,Government Information Quarterly,3,db/journals/giq/giq27.html#LinE10,https://doi.org/10.1016/j.giq.2009.12.010 +Sandra Cohen,IT-enhanced popular reports: Analyzing citizen preferences.,2017,34,Government Information Quarterly,2,db/journals/giq/giq34.html#CohenMK17,https://doi.org/10.1016/j.giq.2017.04.003 +Jaesun Wang,Time to get in: The contrasting stories about government interventions in information technology standards (the case of CDMA and IMT-2000 in Korea).,2007,24,Government Information Quarterly,1,db/journals/giq/giq24.html#WangK07,https://doi.org/10.1016/j.giq.2006.04.001 +Ales Groznik,Upstream supply chain management in e-government: The case of Slovenia.,2009,26,Government Information Quarterly,3,db/journals/giq/giq26.html#GroznikT09,https://doi.org/10.1016/j.giq.2008.12.017 +Sharon S. Dawes,Planning and designing open government data programs: An ecosystem approach.,2016,33,Government Information Quarterly,1,db/journals/giq/giq33.html#DawesVP16,https://doi.org/10.1016/j.giq.2016.01.003 +Habin Lee,Embedding persuasive features into policy issues: Implications to designing public participation processes.,2017,34,Government Information Quarterly,4,db/journals/giq/giq34.html#LeeTC17,https://doi.org/10.1016/j.giq.2017.11.006 +Susan Copeland Wilson,e-Government legislation: Implementation issues for programs for low-income people.,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#Wilson14,https://doi.org/10.1016/j.giq.2013.04.002 +Johannes M. Bauer,Universal service in the European Union.,1999,16,Government Information Quarterly,4,db/journals/giq/giq16.html#Bauer99,https://doi.org/10.1016/S0740-624X(00)86838-0 +Taewoo Nam,Determining the type of e-government use.,2014,31,Government Information Quarterly,2,db/journals/giq/giq31.html#Nam14,https://doi.org/10.1016/j.giq.2013.09.006 +Alasdair Roberts,ORCON Creep: Information sharing and the threat to government accountability.,2004,21,Government Information Quarterly,3,db/journals/giq/giq21.html#Roberts04,https://doi.org/10.1016/j.giq.2004.04.002 +John A. Shuler,Policy implications of a model public information service: the DOSFAN experience.,2000,17,Government Information Quarterly,4,db/journals/giq/giq17.html#Shuler00,https://doi.org/10.1016/S0740-624X(00)00060-5 +William F. Micarelli,Evolution of the United States economic censuses: The nineteenth and twentieth centuries.,1998,15,Government Information Quarterly,3,db/journals/giq/giq15.html#Micarelli98,https://doi.org/10.1016/S0740-624X(98)90007-7 +Rafael Piñeiro Rodríguez,A field experiment on bureaucratic discretionary bias under FOI laws.,2018,35,Government Information Quarterly,3,db/journals/giq/giq35.html#RodriguezR18,https://doi.org/10.1016/j.giq.2018.06.001 +Sounman Hong,Who benefits from Twitter? Social media and political competition in the U.S. House of Representatives.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#Hong13,https://doi.org/10.1016/j.giq.2013.05.009 +Seok-Jin Eom,The use of smart work in government: Empirical analysis of Korean experiences.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#EomCS16,https://doi.org/10.1016/j.giq.2016.01.005 +Maggie Farrell,U.S. depository library council electronic transition report.,2000,17,Government Information Quarterly,3,db/journals/giq/giq17.html#Farrell00,https://doi.org/10.1016/S0740-624X(00)00039-3 +David C. R. Heisser,Federal depository program at the crossroads: The library administrator's perspective.,1999,16,Government Information Quarterly,3,db/journals/giq/giq16.html#Heisser99,https://doi.org/10.1016/S0740-624X(99)80026-4 +Philip Doty,Information micro-practices in Texas rural courts: methods and issues for e-government.,2002,19,Government Information Quarterly,4,db/journals/giq/giq19.html#DotyE02,https://doi.org/10.1016/S0740-624X(02)00121-1 +Alberto Nucciarelli,Should next generation access networks fall within the scope of universal service? A European union perspective.,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#NucciarelliSR14,https://doi.org/10.1016/j.giq.2013.02.006 +Jennie M. Burroughs,What users want: Assessing government information preferences to drive information services.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#Burroughs09,https://doi.org/10.1016/j.giq.2008.06.003 +Ines Mergel,Agile innovation management in government: A research agenda.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#Mergel16a,https://doi.org/10.1016/j.giq.2016.07.004 +Pei-Hsuan Hsieh,Assessing web services of emerging economies in an Eastern country - Taiwan's e-government.,2013,30,Government Information Quarterly,3,db/journals/giq/giq30.html#HsiehHY13,https://doi.org/10.1016/j.giq.2013.02.003 +Euripidis N. Loukis,Promoting open innovation in the public sector through social media monitoring.,2017,34,Government Information Quarterly,1,db/journals/giq/giq34.html#LoukisCA17,https://doi.org/10.1016/j.giq.2016.09.004 +Sounman Hong,Political polarization on twitter: Implications for the use of social media in digital governments.,2016,33,Government Information Quarterly,4,db/journals/giq/giq33.html#HongK16,https://doi.org/10.1016/j.giq.2016.04.007 +Robert LaRose,Public broadband investment priorities in the United States: an analysis of the broadband technology opportunities program.,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#LaRoseBDCMJ14,https://doi.org/10.1016/j.giq.2012.11.004 +John Carlo Bertot,Securing the homeland in the digital age: Issues and implications for policy and governance.,2015,32,Government Information Quarterly,2,db/journals/giq/giq32.html#BertotSJ15,https://doi.org/10.1016/j.giq.2015.04.001 +Sanne Elling,Measuring the quality of governmental websites in a controlled versus an online setting with the 'Website Evaluation Questionnaire'.,2012,29,Government Information Quarterly,3,db/journals/giq/giq29.html#EllingLJB12,https://doi.org/10.1016/j.giq.2011.11.004 +Atreyi Kankanhalli,Open innovation in the public sector: A research agenda.,2017,34,Government Information Quarterly,1,db/journals/giq/giq34.html#KankanhalliZT17,https://doi.org/10.1016/j.giq.2016.12.002 +Zhao Huang,Usability and credibility of e-government websites.,2014,31,Government Information Quarterly,4,db/journals/giq/giq31.html#HuangB14,https://doi.org/10.1016/j.giq.2014.07.002 +Rhoda C. Joseph,A structured analysis of e-government studies: Trends and opportunities.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#Joseph13,https://doi.org/10.1016/j.giq.2013.05.006 +John Carlo Bertot,Government information: New challenges in the internet age.,2005,22,Government Information Quarterly,1,db/journals/giq/giq22.html#BertotMSQ05,https://doi.org/10.1016/j.giq.2004.10.008 +Marta Raus,Electronic customs innovation: An improvement of governmental infrastructures.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#RausFB09,https://doi.org/10.1016/j.giq.2008.11.008 +Hasan Akca,Challenge of rural people to reduce digital divide in the globalized world: Theory and practice.,2007,24,Government Information Quarterly,2,db/journals/giq/giq24.html#AkcaSE07,https://doi.org/10.1016/j.giq.2006.04.012 +Paul T. Jaeger,The endless wire: e-government as global phenomenon.,2003,20,Government Information Quarterly,4,db/journals/giq/giq20.html#Jaeger03,https://doi.org/10.1016/j.giq.2003.08.003 +Chih Hao Ku,A decision support system: Automated crime report analysis and classification for e-government.,2014,31,Government Information Quarterly,4,db/journals/giq/giq31.html#KuL14,https://doi.org/10.1016/j.giq.2014.08.003 +Olaseni Muritala Okunola,The multi-dimensional digital divide: Perspectives from an e-government portal in Nigeria.,2017,34,Government Information Quarterly,2,db/journals/giq/giq34.html#OkunolaRJ17,https://doi.org/10.1016/j.giq.2017.02.002 +August A. Imholtz Jr.,Congress as Publisher: The magic of the U.S. Congressional Serial Set.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#Imholtz12,https://doi.org/10.1016/j.giq.2011.12.005 +Erna Ruijer,Open data for democracy: Developing a theoretical framework for open data use.,2017,34,Government Information Quarterly,1,db/journals/giq/giq34.html#RuijerGM17,https://doi.org/10.1016/j.giq.2017.01.001 +Charles D. Bernholz,Population and Development Report: Water Scarcity in the Arab World.,2005,22,Government Information Quarterly,1,db/journals/giq/giq22.html#Bernholz05,https://doi.org/10.1016/j.giq.2004.09.007 +Iryna Susha,Context clues for the stall of the Citizens' Initiative: lessons for opening up e-participation development practice.,2014,31,Government Information Quarterly,3,db/journals/giq/giq31.html#SushaG14,https://doi.org/10.1016/j.giq.2014.02.005 +Andrew Lopez,The persistence of innovation in government.,2015,32,Government Information Quarterly,3,db/journals/giq/giq32.html#Lopez15,https://doi.org/10.1016/j.giq.2015.04.003 +Björn Niehaves,Iceberg ahead: On electronic government research and societal aging.,2011,28,Government Information Quarterly,3,db/journals/giq/giq28.html#Niehaves11,https://doi.org/10.1016/j.giq.2011.01.003 +Chorng-Shyong Ong,Managing citizen-initiated email contacts.,2009,26,Government Information Quarterly,3,db/journals/giq/giq26.html#OngW09,https://doi.org/10.1016/j.giq.2008.07.005 +Rabia Karakaya Polat,Digital exclusion in Turkey: A policy perspective.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#Polat12,https://doi.org/10.1016/j.giq.2012.03.002 +Daniel Belanche-Gracia,Determinants of multi-service smartcard success for smart cities development: A study based on citizens' privacy and security perceptions.,2015,32,Government Information Quarterly,2,db/journals/giq/giq32.html#Belanche-Gracia15,https://doi.org/10.1016/j.giq.2014.12.004 +Frank P. Lambert,Seeking electronic information from government resources: A comparative analysis of two communities' web searching of municipal government websites.,2013,30,Government Information Quarterly,1,db/journals/giq/giq30.html#Lambert13,https://doi.org/10.1016/j.giq.2012.07.007 +Robert LaRose,The impact of rural broadband development: Lessons from a natural field experiment.,2011,28,Government Information Quarterly,1,db/journals/giq/giq28.html#LaRoseSGS11,https://doi.org/10.1016/j.giq.2009.12.013 +Dave Gelders,Public information provision about policy intentions: The Dutch and Belgian experience.,2005,22,Government Information Quarterly,1,db/journals/giq/giq22.html#Gelders05,https://doi.org/10.1016/j.giq.2004.10.006 +Edward Herman,The American Community Survey: An introduction to the basics.,2008,25,Government Information Quarterly,3,db/journals/giq/giq25.html#Herman08,https://doi.org/10.1016/j.giq.2007.08.006 +Ben Wasike,"FoIA in the age of ""Open. Gov"": An analysis of the performance of the Freedom of Information Act under the Obama and Bush administrations.",2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#Wasike16,https://doi.org/10.1016/j.giq.2016.05.001 +Sotirios Koussouris,Accelerating Policy Making 2.0: Innovation directions and research perspectives as distilled from four standout cases.,2015,32,Government Information Quarterly,2,db/journals/giq/giq32.html#KoussourisLKAM15,https://doi.org/10.1016/j.giq.2015.03.001 +Merrill Warkentin,Social identity and trust in internet-based voting adoption.,2018,35,Government Information Quarterly,2,db/journals/giq/giq35.html#WarkentinSGRP18,https://doi.org/10.1016/j.giq.2018.03.007 +Tonny J. Oyana,Exploring geographic disparities in broadband access and use in rural southern Illinois: Who's being left behind?,2011,28,Government Information Quarterly,2,db/journals/giq/giq28.html#Oyana11,https://doi.org/10.1016/j.giq.2010.09.003 +Marijn Janssen,The challenges and limits of big data algorithms in technocratic governance.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#JanssenK16,https://doi.org/10.1016/j.giq.2016.08.011 +Christopher G. Reddick,Social media adoption at the American grass roots: Web 2.0 or 1.5?,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#ReddickN13,https://doi.org/10.1016/j.giq.2013.05.011 +Elin Uppström,Explaining value co-creation and co-destruction in e-government using boundary object theory.,2017,34,Government Information Quarterly,3,db/journals/giq/giq34.html#UppstromL17,https://doi.org/10.1016/j.giq.2017.08.001 +Joseph A. Salem Jr.,Public and private sector interests in e-government: a look at the DOE's PubSCIENCE.,2003,20,Government Information Quarterly,1,db/journals/giq/giq20.html#Salem03,https://doi.org/10.1016/S0740-624X(02)00133-8 +Giovanna Patterson,Principal challenges facing electronic records management in federal agencies today.,2002,19,Government Information Quarterly,3,db/journals/giq/giq19.html#PattersonS02,https://doi.org/10.1016/S0740-624X(02)00108-9 +Donnesha Correll,Using technology intelligently: the decennial information age.,2000,17,Government Information Quarterly,2,db/journals/giq/giq17.html#Correll00,https://doi.org/10.1016/S0740-624X(00)00022-8 +Paul T. Jaeger,The impact of the USA Patriot Act on collection and analysis of personal information under the Foreign Intelligence Surveillance Act.,2003,20,Government Information Quarterly,3,db/journals/giq/giq20.html#JaegerBM03,https://doi.org/10.1016/S0740-624X(03)00057-1 +María Rosalía Vicente,An empirical analysis of e-participation. The role of social networks and e-government over citizens' online engagement.,2014,31,Government Information Quarterly,3,db/journals/giq/giq31.html#VicenteN14,https://doi.org/10.1016/j.giq.2013.12.006 +Victor Glass,Zero-based budgeting: Does it make sense for universal service reform?,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#GlassSP14,https://doi.org/10.1016/j.giq.2013.05.022 +J. Ignacio Criado,Government innovation through social media.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#CriadoSG13,https://doi.org/10.1016/j.giq.2013.10.003 +John Kavaliunas,Census 2000 data products.,2000,17,Government Information Quarterly,2,db/journals/giq/giq17.html#Kavaliunas00,https://doi.org/10.1016/S0740-624X(00)00028-9 +Jeffrey M. Wilhite,Primary Source Media's World Government Documents Archive. Declassified Documents Reference System: The United States.,2005,22,Government Information Quarterly,1,db/journals/giq/giq22.html#Wilhite05,https://doi.org/10.1016/j.giq.2004.09.003 +Sascha Alexander Wagner,How IT and social change facilitates public participation: A stakeholder-oriented approach.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#WagnerVK16,https://doi.org/10.1016/j.giq.2016.07.003 +Dmitry Epstein,"Not by technology alone: The ""analog"" aspects of online public engagement in policymaking.",2014,31,Government Information Quarterly,2,db/journals/giq/giq31.html#EpsteinNV14,https://doi.org/10.1016/j.giq.2014.01.001 +Maggie Farrell,Digital government information and libraries: Shifting paradigms or predictable partnerships.,2008,25,Government Information Quarterly,1,db/journals/giq/giq25.html#Farrell08,https://doi.org/10.1016/j.giq.2007.10.003 +Henry H. Perritt Jr.,NCLIS assessment of public information dissemination: some sound ideas tarnished by defense of obsolete approaches.,2001,18,Government Information Quarterly,2,db/journals/giq/giq18.html#Perritt01,https://doi.org/10.1016/S0740-624X(01)00067-3 +Samia El-Badry,Providing census tabulations to government security agencies in the United States: The case of Arab Americans.,2007,24,Government Information Quarterly,2,db/journals/giq/giq24.html#El-BadryS07,https://doi.org/10.1016/j.giq.2007.02.001 +Krishna Jayakar,Funding public computing centers: Balancing broadband availability and expected demand.,2012,29,Government Information Quarterly,1,db/journals/giq/giq29.html#JayakarP12,https://doi.org/10.1016/j.giq.2011.02.005 +Thorhildur Jetzek,Managing complexity across multiple dimensions of liquid open data: The case of the Danish Basic Data Program.,2016,33,Government Information Quarterly,1,db/journals/giq/giq33.html#Jetzek16,https://doi.org/10.1016/j.giq.2015.11.003 +Rana Tassabehji,Emergent digital era governance: Enacting the role of the 'institutional entrepreneur' in transformational change.,2016,33,Government Information Quarterly,2,db/journals/giq/giq33.html#TassabehjiHP16,https://doi.org/10.1016/j.giq.2016.04.003 +Thomas E. Pinelli,Maximizing the results of federally-funded research and development through knowledge management: A strategic imperative for improving U.S. competitiveness.,1998,15,Government Information Quarterly,2,db/journals/giq/giq15.html#PinelliB98,https://doi.org/10.1016/S0740-624X(98)90041-7 +Valerie D. Glenn,The power of communication: Managing information in public organizations.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#Glenn06,https://doi.org/10.1016/j.giq.2005.07.002 +Stuart A. Sutton,Integrating 21st century access to ERIC services and resources.,2001,18,Government Information Quarterly,1,db/journals/giq/giq18.html#Sutton01,https://doi.org/10.1016/S0740-624X(00)00063-0 +Pieter Verdegem,User-centered E-Government in practice: A comprehensive model for measuring user satisfaction.,2009,26,Government Information Quarterly,3,db/journals/giq/giq26.html#VerdegemV09,https://doi.org/10.1016/j.giq.2009.03.005 +Donald K. Jonas,Building state information highways: lessons for public and private sector leaders.,2000,17,Government Information Quarterly,1,db/journals/giq/giq17.html#Jonas00,https://doi.org/10.1016/S0740-624X(99)00026-X +Eliot Christian,A metadata initiative for global information discovery.,2001,18,Government Information Quarterly,3,db/journals/giq/giq18.html#Christian01,https://doi.org/10.1016/S0740-624X(01)00074-0 +William E. Moen,The metadata approach to accessing government information.,2001,18,Government Information Quarterly,3,db/journals/giq/giq18.html#Moen01,https://doi.org/10.1016/S0740-624X(01)00079-X +Steve Sawyer,Pennsylvania's transition to enterprise computing as a study in strategic alignment.,2008,25,Government Information Quarterly,4,db/journals/giq/giq25.html#SawyerHR08,https://doi.org/10.1016/j.giq.2007.09.008 +Weibing Xiao,China's limited push model of FOI legislation.,2010,27,Government Information Quarterly,4,db/journals/giq/giq27.html#Xiao10,https://doi.org/10.1016/j.giq.2010.04.003 +Jonathan Lazar,Up in the air: Are airlines following the new DOT rules on equal pricing for people with disabilities when websites are inaccessible?,2010,27,Government Information Quarterly,4,db/journals/giq/giq27.html#LazarJAAMMMNOPS10,https://doi.org/10.1016/j.giq.2010.04.005 +José Ramón Gil-García,Understanding the evolution of e-government: The influence of systems of rules on public sector dynamics.,2007,24,Government Information Quarterly,2,db/journals/giq/giq24.html#Gil-GarciaM07,https://doi.org/10.1016/j.giq.2006.04.005 +Rui Pedro Lourenço,An analysis of open government portals: A perspective of transparency for accountability.,2015,32,Government Information Quarterly,3,db/journals/giq/giq32.html#Lourenco15,https://doi.org/10.1016/j.giq.2015.05.006 +Tiffeni J. Fontno,FirstGov http://www.firstgov.gov/.,2002,19,Government Information Quarterly,2,db/journals/giq/giq19.html#Fontno02,https://doi.org/10.1016/S0740-624X(02)00097-7 +Frank Bannister,Trust and transformational government: A proposed framework for research.,2011,28,Government Information Quarterly,2,db/journals/giq/giq28.html#BannisterC11,https://doi.org/10.1016/j.giq.2010.06.010 +Lawrence A. West Jr.,Florida's marine resource information system: A geographic decision support system.,1999,16,Government Information Quarterly,1,db/journals/giq/giq16.html#West99,https://doi.org/10.1016/S0740-624X(99)80015-X +,Guangzhou Municipal Government Legal Affairs Office: Introduction to open government information work by the Guangzhou municipal government.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#Office06,https://doi.org/10.1016/j.giq.2006.02.006 +Rowena Cullen,Participatory democracy and the value of online community networks: An exploration of online and offline communities engaged in civil society and political activity.,2011,28,Government Information Quarterly,2,db/journals/giq/giq28.html#CullenS11,https://doi.org/10.1016/j.giq.2010.04.008 +Ralf-Martin Soe,Agile local governments: Experimentation before implementation.,2018,35,Government Information Quarterly,2,db/journals/giq/giq35.html#SoeD18,https://doi.org/10.1016/j.giq.2017.11.010 +Dana Jackson-Hardwick,Secrecy in the Sunshine Era: The promises and failures of U.S. open government laws.,2015,32,Government Information Quarterly,3,db/journals/giq/giq32.html#Jackson-Hardwick15,https://doi.org/10.1016/j.giq.2015.04.005 +Andrea L. Kavanaugh,Social media use by government: From the routine to the critical.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#KavanaughFSYLSN12,https://doi.org/10.1016/j.giq.2012.06.002 +Chuck Malone,Agency Web Pages - An Information Resource and a Public Relations Tool: The USDA Example.,2004,21,Government Information Quarterly,3,db/journals/giq/giq21.html#Malone04,https://doi.org/10.1016/j.giq.2004.02.004 +Wee Hong Loo,User acceptance of Malaysian government multipurpose smartcard applications.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#LooYC09,https://doi.org/10.1016/j.giq.2008.07.004 +John Carlo Bertot,Using ICTs to create a culture of transparency: E-government and social media as openness and anti-corruption tools for societies.,2010,27,Government Information Quarterly,3,db/journals/giq/giq27.html#BertotJG10,https://doi.org/10.1016/j.giq.2010.03.001 +Christine B. Williams,Leveraging social media to achieve a community policing agenda.,2018,35,Government Information Quarterly,2,db/journals/giq/giq35.html#WilliamsFKMTX18,https://doi.org/10.1016/j.giq.2018.03.001 +Vagia Kyriakidou,Utilization of communications network potential: Public practices and effects.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#KyriakidouMS12,https://doi.org/10.1016/j.giq.2011.07.008 +John A. Shuler,Reviews.,1998,15,Government Information Quarterly,2,db/journals/giq/giq15.html#Shuler98,https://doi.org/10.1016/S0740-624X(98)90045-4 +Sharon S. Dawes,Stewardship and usefulness: Policy principles for information-based transparency.,2010,27,Government Information Quarterly,4,db/journals/giq/giq27.html#Dawes10,https://doi.org/10.1016/j.giq.2010.07.001 +Jeremy Rose,Stakeholder theory for the E-government context: Framing a value-oriented normative core.,2018,35,Government Information Quarterly,3,db/journals/giq/giq35.html#RoseFS18,https://doi.org/10.1016/j.giq.2018.06.005 +Haihe Jin,How should the Chinese government provide information services for Mongol ethnic minority?,2015,32,Government Information Quarterly,1,db/journals/giq/giq32.html#JinL15,https://doi.org/10.1016/j.giq.2014.11.003 +Shu-hsien Liao,E-government implementation: Business contract legal support for Taiwanese businessmen in Mainland China.,2005,22,Government Information Quarterly,3,db/journals/giq/giq22.html#LiaoJ05,https://doi.org/10.1016/j.giq.2005.08.002 +Dave Gelders,Public information problems in the implementation of public policy: The long road of the reflecting license plate in Belgium.,2005,22,Government Information Quarterly,3,db/journals/giq/giq22.html#Gelders05a,https://doi.org/10.1016/j.giq.2005.05.006 +Hye-Chung Kum,Supporting self-evaluation in local government via Knowledge Discovery and Data mining.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#KumDS09,https://doi.org/10.1016/j.giq.2008.12.009 +Azi Lev-On,Local engagement online: Municipal Facebook pages as hubs of interaction.,2015,32,Government Information Quarterly,3,db/journals/giq/giq32.html#Lev-OnS15,https://doi.org/10.1016/j.giq.2015.05.007 +J. A. G. M. van Dijk,Explaining the acceptance and use of government Internet services: A multivariate analysis of 2006 survey data in the Netherlands.,2008,25,Government Information Quarterly,3,db/journals/giq/giq25.html#DijkPE08,https://doi.org/10.1016/j.giq.2007.09.006 +Albert Meijer,E-governance innovation: Barriers and strategies.,2015,32,Government Information Quarterly,2,db/journals/giq/giq32.html#Meijer15,https://doi.org/10.1016/j.giq.2015.01.001 +John N. Gathegi,Democracy through access to legal information for newly democratizing nations: The Kenyan perspective and lessons from the American experience.,2005,22,Government Information Quarterly,1,db/journals/giq/giq22.html#Gathegi05,https://doi.org/10.1016/j.giq.2004.10.004 +Victor Bekkers,Social media monitoring: Responsive governance in the shadow of surveillance?,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#BekkersEK13,https://doi.org/10.1016/j.giq.2013.05.024 +John Carlo Bertot,About the Authors.,2007,24,Government Information Quarterly,4,db/journals/giq/giq24.html#Bertot07,https://doi.org/10.1016/j.giq.2007.08.003 +Robert E. Roth,Spatiotemporal crime analysis in U.S. law enforcement agencies: Current practices and unmet needs.,2013,30,Government Information Quarterly,3,db/journals/giq/giq30.html#RothRFLM13,https://doi.org/10.1016/j.giq.2013.02.001 +Andrea L. Kavanaugh,(Hyper) local news aggregation: Designing for social affordances.,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#KavanaughAGNPRT14,https://doi.org/10.1016/j.giq.2013.04.004 +Taewoo Nam,Suggesting frameworks of citizen-sourcing via Government 2.0.,2012,29,Government Information Quarterly,1,db/journals/giq/giq29.html#Nam12,https://doi.org/10.1016/j.giq.2011.07.005 +Tomasz Janowski,Tribute to John Bertot and message from the incoming Editors-in-Chief.,2015,32,Government Information Quarterly,2,db/journals/giq/giq32.html#JanowskiJ15,https://doi.org/10.1016/j.giq.2015.03.004 +Charles D. Bernholz,American Indian treaties in the State Courts: A guide to treaty citations from opinions of the State Court systems.,2005,22,Government Information Quarterly,3,db/journals/giq/giq22.html#BernholzW05,https://doi.org/10.1016/j.giq.2005.05.004 +James T. Ault,U.s. government decision makers' expectations and patterns of use of emerging and existing information technologies.,2003,20,Government Information Quarterly,1,db/journals/giq/giq20.html#AultG03,https://doi.org/10.1016/S0740-624X(02)00135-1 +J. Timothy Sprehe,The end of the National Technical Information Service?,2000,17,Government Information Quarterly,1,db/journals/giq/giq17.html#Sprehe00,https://doi.org/10.1016/S0740-624X(99)00020-9 +Sharon S. Dawes,Designing electronic government information access programs: a holistic approach.,2004,21,Government Information Quarterly,1,db/journals/giq/giq21.html#DawesPC04,https://doi.org/10.1016/j.giq.2003.11.001 +Robin Gauld,How responsive is E-Government? Evidence from Australia and New Zealand.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#GauldGM09,https://doi.org/10.1016/j.giq.2008.02.002 +Marijn Janssen,Simulation and animation for adopting shared services: Evaluating and comparing alternative arrangements.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#JanssenJZ09,https://doi.org/10.1016/j.giq.2008.08.004 +Boriana Rukanova,Understanding transnational information systems with supranational governance: A multi-level conflict management perspective.,2015,32,Government Information Quarterly,2,db/journals/giq/giq32.html#RukanovaWST15,https://doi.org/10.1016/j.giq.2014.12.003 +Lisa K. Westerback,Toward best practices for strategic information technology management.,2000,17,Government Information Quarterly,1,db/journals/giq/giq17.html#Westerback00,https://doi.org/10.1016/S0740-624X(99)00023-4 +Nancy F. Stimson,John H. Hickcox's confession: An addendum.,2007,24,Government Information Quarterly,1,db/journals/giq/giq24.html#StimsonN07,https://doi.org/10.1016/j.giq.2006.06.010 +Rajesh Sharma,Investigating the role of intermediaries in adoption of public access outlets for delivery of e-Government services in developing countries: An empirical study.,2017,34,Government Information Quarterly,4,db/journals/giq/giq34.html#SharmaM17,https://doi.org/10.1016/j.giq.2017.10.001 +Tim Barnes,Implementing a voluntary code on access to information: Nirex's practical experience.,2004,21,Government Information Quarterly,1,db/journals/giq/giq21.html#BarnesD04,https://doi.org/10.1016/j.giq.2003.12.001 +Christopher G. Reddick,Public opinion on National Security Agency surveillance programs: A multi-method approach.,2015,32,Government Information Quarterly,2,db/journals/giq/giq32.html#ReddickCJ15,https://doi.org/10.1016/j.giq.2015.01.003 +Nan Zhang,What factors drive open innovation in China's public sector? A case study of official document exchange via microblogging (ODEM) in Haining.,2017,34,Government Information Quarterly,1,db/journals/giq/giq34.html#ZhangZZMT17,https://doi.org/10.1016/j.giq.2016.11.002 +Peter Trkman,A conceptual model for the development of broadband and e-government.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#TrkmanT09,https://doi.org/10.1016/j.giq.2008.11.005 +Agustí Cerrillo-i-Martínez,The regulation of diffusion of public sector information via electronic means: Lessons from the Spanish regulation.,2011,28,Government Information Quarterly,2,db/journals/giq/giq28.html#Cerrillo-i-Martinez11,https://doi.org/10.1016/j.giq.2010.05.009 +Carmen Caba Pérez,Citizens' access to on-line governmental financial information: Practices in the European Union countries.,2005,22,Government Information Quarterly,2,db/journals/giq/giq22.html#PerezHB05,https://doi.org/10.1016/j.giq.2005.02.002 +Kyujin Jung,"A semantic (TRIZ) network analysis of South Korea's ""Open Public Data"" policy.",2015,32,Government Information Quarterly,3,db/journals/giq/giq32.html#JungP15,https://doi.org/10.1016/j.giq.2015.03.006 +Daeho Kim,New regulatory institution for the convergence of broadcasting and telecommunications: A Korean case.,2011,28,Government Information Quarterly,2,db/journals/giq/giq28.html#Kim11,https://doi.org/10.1016/j.giq.2010.08.004 +José Ramón Gil-García,Conceptualizing smartness in government: An integrative and multi-dimensional view.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#Gil-GarciaZC16,https://doi.org/10.1016/j.giq.2016.03.002 +Roger Anderson,Homeland Security.,2004,21,Government Information Quarterly,4,db/journals/giq/giq21.html#Anderson04,https://doi.org/10.1016/j.giq.2003.10.001 +Bo Fan 0004,The moderating effect of external pressure on the relationship between internal organizational factors and the quality of open government data.,2017,34,Government Information Quarterly,3,db/journals/giq/giq34.html#FanZ17,https://doi.org/10.1016/j.giq.2017.08.006 +R. David Lankes,Developing a mission for the National Education Network: The challenge of seamless access.,1999,16,Government Information Quarterly,2,db/journals/giq/giq16.html#LankesS99,https://doi.org/10.1016/S0740-624X(99)80006-9 +Gregory A. Porumbescu,Linking public sector social media and e-government website use to trust in government.,2016,33,Government Information Quarterly,2,db/journals/giq/giq33.html#Porumbescu16,https://doi.org/10.1016/j.giq.2016.04.006 +Robert Gellman,Privacy and security: Assessing database derivative activities.,2004,21,Government Information Quarterly,4,db/journals/giq/giq21.html#Gellman04,https://doi.org/10.1016/j.giq.2004.08.005 +Tino Schuppan,E-Government in developing countries: Experiences from sub-Saharan Africa.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#Schuppan09,https://doi.org/10.1016/j.giq.2008.01.006 +Clayton Wukich,Reusing social media information in government.,2016,33,Government Information Quarterly,2,db/journals/giq/giq33.html#WukichM16,https://doi.org/10.1016/j.giq.2016.01.011 +Patrice McDermott,Building open government.,2010,27,Government Information Quarterly,4,db/journals/giq/giq27.html#McDermott10,https://doi.org/10.1016/j.giq.2010.07.002 +Yuan Liu,Evaluating the readiness of government portal websites in China to adopt contemporary public administration principles.,2012,29,Government Information Quarterly,3,db/journals/giq/giq29.html#LiuCW12,https://doi.org/10.1016/j.giq.2011.12.009 +Megan Sniffin-Marinoff,To archive or not to archive? The message of a (somewhat) meaningless question.,1999,16,Government Information Quarterly,3,db/journals/giq/giq16.html#Sniffin-Marinoff99,https://doi.org/10.1016/S0740-624X(99)80024-0 +John Carlo Bertot,User-centered e-government: Challenges and benefits for government Web sites.,2006,23,Government Information Quarterly,2,db/journals/giq/giq23.html#BertotJ06,https://doi.org/10.1016/j.giq.2006.02.001 +Jarunee Wonglimpiyarat,In support of innovation management and Roger's Innovation Diffusion theory.,2005,22,Government Information Quarterly,3,db/journals/giq/giq22.html#WonglimpiyaratY05,https://doi.org/10.1016/j.giq.2005.05.005 +Clenn J. McLoughlin,Next generation internet and related initiatives.,1999,16,Government Information Quarterly,3,db/journals/giq/giq16.html#McLoughlin99,https://doi.org/10.1016/S0740-624X(99)80029-X +John T. Snead,Social media use in the U.S. Executive branch.,2013,30,Government Information Quarterly,1,db/journals/giq/giq30.html#Snead13,https://doi.org/10.1016/j.giq.2012.09.001 +Gregory J. Abbott,Looking toward an information base in the 21st Century: The American Community Survey.,2000,17,Government Information Quarterly,2,db/journals/giq/giq17.html#AbbottC00,https://doi.org/10.1016/S0740-624X(00)00029-0 +Amy West,Government Innovators Network.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#West06,https://doi.org/10.1016/j.giq.2005.07.006 +Janja Nograsek,E-government and organisational transformation of government: Black box revisited?,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#NograsekV14,https://doi.org/10.1016/j.giq.2013.07.006 +Charles D. Bernholz,"Standardized American Indians: The ""Names of Indian tribes and bands"" list from the Office of Indian Affairs.",2010,27,Government Information Quarterly,3,db/journals/giq/giq27.html#Bernholz10,https://doi.org/10.1016/j.giq.2010.01.003 +Morag Cherry,Freedom of information and 'vexatious' requests - The case of Scottish local government.,2013,30,Government Information Quarterly,3,db/journals/giq/giq30.html#CherryM13,https://doi.org/10.1016/j.giq.2013.02.004 +Andrew Charlesworth,Implementing the European union data protection directive 1995 in UK law: The data protection act 1998.,1999,16,Government Information Quarterly,3,db/journals/giq/giq16.html#Charlesworth99,https://doi.org/10.1016/S0740-624X(99)80025-2 +José María Moreno-Jiménez,e-Cognocracy and the design of public policies.,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#Moreno-JimenezP14,https://doi.org/10.1016/j.giq.2013.09.004 +J. Timothy Sprehe,The role of situational factors in managing U.S. federal recordkeeping.,2002,19,Government Information Quarterly,3,db/journals/giq/giq19.html#SpreheMZ02,https://doi.org/10.1016/S0740-624X(02)00107-7 +Sebastian Stier,Political determinants of e-government performance revisited: Comparing democracies and autocracies.,2015,32,Government Information Quarterly,3,db/journals/giq/giq32.html#Stier15,https://doi.org/10.1016/j.giq.2015.05.004 +Susan Xue,China's legislative system and information: An overview.,2005,22,Government Information Quarterly,3,db/journals/giq/giq22.html#Xue05,https://doi.org/10.1016/j.giq.2005.05.003 +Beth E. Clausen,Northwestern University Library's experience and decision.,2005,22,Government Information Quarterly,4,db/journals/giq/giq22.html#Clausen05,https://doi.org/10.1016/j.giq.2006.01.007 +J. Timothy Sprehe,The positive benefits of electronic records management in the context of enterprise content management.,2005,22,Government Information Quarterly,2,db/journals/giq/giq22.html#Sprehe05,https://doi.org/10.1016/j.giq.2005.02.003 +Seraphine F. Maerz,The electronic face of authoritarianism: E-government as a tool for gaining legitimacy in competitive and non-competitive regimes.,2016,33,Government Information Quarterly,4,db/journals/giq/giq33.html#Maerz16,https://doi.org/10.1016/j.giq.2016.08.008 +Mon-Chi Lio,Can the internet reduce corruption? A cross-country study based on dynamic panel data models.,2011,28,Government Information Quarterly,1,db/journals/giq/giq28.html#LioLO11,https://doi.org/10.1016/j.giq.2010.01.005 +Dave Gelders,Minding the gap: Applying a service marketing model into government policy communications.,2010,27,Government Information Quarterly,1,db/journals/giq/giq27.html#GeldersI10,https://doi.org/10.1016/j.giq.2009.05.005 +Lihua Yang,Internet's impact on expert-citizen interactions in public policymaking - A meta analysis.,2010,27,Government Information Quarterly,4,db/journals/giq/giq27.html#YangL10,https://doi.org/10.1016/j.giq.2009.12.012 +John Carlo Bertot,Government Information Quarterly: A new beginning.,2001,18,Government Information Quarterly,1,db/journals/giq/giq18.html#BertotM01,https://doi.org/10.1016/S0740-624X(00)00065-4 +Patricia Diamond Fletcher,Introduction to the symposium issue.,2001,18,Government Information Quarterly,4,db/journals/giq/giq18.html#Fletcher01,https://doi.org/10.1016/S0740-624X(01)00084-3 +Dimitrios Zissis,Securing e-Government and e-Voting with an open cloud computing architecture.,2011,28,Government Information Quarterly,2,db/journals/giq/giq28.html#ZissisL11,https://doi.org/10.1016/j.giq.2010.05.010 +Chuanfu Chen,Impacts of government website information on social sciences and humanities in China: A citation analysis.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#ChenWLWW13,https://doi.org/10.1016/j.giq.2013.05.008 +Charles D. Bernholz,Pestilence in paradise: Leprosy accounts in the annual reports of the governor of the territory of Hawaii.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#Bernholz09a,https://doi.org/10.1016/j.giq.2008.10.001 +Peter Spác,Does the freedom of information law increase transparency at the local level? Evidence from a field experiment.,2018,35,Government Information Quarterly,3,db/journals/giq/giq35.html#SpacVZ18,https://doi.org/10.1016/j.giq.2018.05.003 +Nancy Tsai,Improving the process of E-Government initiative: An in-depth case study of web-based GIS implementation.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#TsaiCP09,https://doi.org/10.1016/j.giq.2008.11.007 +Chien-leng Hsu,Mapping online social networks of Korean politicians.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#HsuP12,https://doi.org/10.1016/j.giq.2011.09.009 +Vikki Gordon,National Security Directive declassification.,2010,27,Government Information Quarterly,4,db/journals/giq/giq27.html#Gordon10,https://doi.org/10.1016/j.giq.2010.02.007 +Carol A. Hert,Re-conceptualizing statistical abstracts in the 21st century: An empirical study of sourcebook of Criminal Justice Statistics.,2006,23,Government Information Quarterly,2,db/journals/giq/giq23.html#HertH06,https://doi.org/10.1016/j.giq.2005.11.001 +Norman E. Youngblood,Revisiting Alabama state website accessibility.,2014,31,Government Information Quarterly,3,db/journals/giq/giq31.html#Youngblood14,https://doi.org/10.1016/j.giq.2014.02.007 +Jarunee Wonglimpiyarat,Innovative policies to support technology and ICT development.,2014,31,Government Information Quarterly,3,db/journals/giq/giq31.html#Wonglimpiyarat14,https://doi.org/10.1016/j.giq.2013.12.005 +Shree Venkatachalam,"What is broadband? Where is ""rural""?",2003,20,Government Information Quarterly,2,db/journals/giq/giq20.html#VenkatachalamM03,https://doi.org/10.1016/S0740-624X(03)00021-2 +Karin Axelsson,Public e-services for agency efficiency and citizen benefit - Findings from a stakeholder centered analysis.,2013,30,Government Information Quarterly,1,db/journals/giq/giq30.html#AxelssonML13,https://doi.org/10.1016/j.giq.2012.08.002 +Devendra Dilip Potnis,Measuring e-Governance as an innovation in the public sector.,2010,27,Government Information Quarterly,1,db/journals/giq/giq27.html#Potnis10,https://doi.org/10.1016/j.giq.2009.08.002 +Debbie L. Rabina,Israel's legal deposit law in global context.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#Rabina09,https://doi.org/10.1016/j.giq.2008.01.005 +Andrea L. Kavanaugh,Media use during conflicts: Information seeking and political efficacy during the 2012 Mexican elections.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#KavanaughSSTF16,https://doi.org/10.1016/j.giq.2016.01.004 +Luis F. Luna-Reyes,Collaborative digital government in Mexico: Some lessons from federal Web-based interorganizational information integration initiatives.,2007,24,Government Information Quarterly,4,db/journals/giq/giq24.html#Luna-ReyesGC07,https://doi.org/10.1016/j.giq.2007.04.003 +Kuno Schedler,Customer orientation in electronic government: Motives and effects.,2007,24,Government Information Quarterly,2,db/journals/giq/giq24.html#SchedlerS07,https://doi.org/10.1016/j.giq.2006.05.005 +Paul T. Jaeger,Transparency and technological change: Ensuring equal and sustained public access to government information.,2010,27,Government Information Quarterly,4,db/journals/giq/giq27.html#JaegerB10,https://doi.org/10.1016/j.giq.2010.05.003 +Charles D. Bernholz,The United States Department of the Interior Web site: Visited July 2003 http: //www.doi.gov/.,2004,21,Government Information Quarterly,1,db/journals/giq/giq21.html#Bernholz04,https://doi.org/10.1016/j.giq.2003.08.010 +Bert Chapman,Wright State University's service ideal statement and depository libraries: More questions than answers.,1998,15,Government Information Quarterly,1,db/journals/giq/giq15.html#Chapman98,https://doi.org/10.1016/S0740-624X(98)90020-X +Frederick M. Kaiser,Access to classified information: seeking security clearances for state and local officials and personnel.,2003,20,Government Information Quarterly,3,db/journals/giq/giq20.html#Kaiser03,https://doi.org/10.1016/S0740-624X(03)00040-6 +Philip Doty,U.S. homeland security and risk assessment.,2015,32,Government Information Quarterly,3,db/journals/giq/giq32.html#Doty15,https://doi.org/10.1016/j.giq.2015.04.008 +Victor Glass,Persistence of the middle mile problem for rural local exchange carriers.,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#GlassPS14,https://doi.org/10.1016/j.giq.2013.02.005 +Charles D. Bernholz,Integrating Unpaid Work into National Policies.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#Bernholz06,https://doi.org/10.1016/j.giq.2005.04.002 +Hyeon-Suk Lyu,Internet policy in Korea: A preliminary framework for assigning moral and legal responsibility to agents in internet activities.,2012,29,Government Information Quarterly,3,db/journals/giq/giq29.html#Lyu12,https://doi.org/10.1016/j.giq.2011.12.008 +Chun-Shuo Chen,Three decades of bilateral copyright negotiations: Mainland China and the United States.,2010,27,Government Information Quarterly,2,db/journals/giq/giq27.html#ChenM10,https://doi.org/10.1016/j.giq.2009.12.005 +Paul F. Uhlir,Summary of National Research Council report on database protection1.,2000,17,Government Information Quarterly,4,db/journals/giq/giq17.html#Uhlir00,https://doi.org/10.1016/S0740-624X(00)00052-6 +Peter Hernon,"Numbers and ""Damn"" GPO Numbers.",1999,16,Government Information Quarterly,1,db/journals/giq/giq16.html#Hernon99,https://doi.org/10.1016/S0740-624X(99)80012-4 +Christopher G. Reddick,Customer Relationship Management (CRM) technology and organizational change: Evidence for the bureaucratic and e-Government paradigms.,2011,28,Government Information Quarterly,3,db/journals/giq/giq28.html#Reddick11,https://doi.org/10.1016/j.giq.2010.08.005 +Andrew Whitmore,Extracting knowledge from U.S. department of defense freedom of information act requests with social media.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#Whitmore12a,https://doi.org/10.1016/j.giq.2011.08.015 +Suhazimah Dzazali,Information security landscape and maturity level: Case study of Malaysian Public Service (MPS) organizations.,2009,26,Government Information Quarterly,4,db/journals/giq/giq26.html#DzazaliSZ09,https://doi.org/10.1016/j.giq.2009.04.004 +Kaja J. Fietkiewicz,eGovernment in cities of the knowledge society. An empirical investigation of Smart Cities' governmental websites.,2017,34,Government Information Quarterly,1,db/journals/giq/giq34.html#FietkiewiczMS17,https://doi.org/10.1016/j.giq.2016.08.003 +Ian Hosein,Transforming travel and border controls: Checkpoints in the Open Society.,2005,22,Government Information Quarterly,4,db/journals/giq/giq22.html#Hosein05,https://doi.org/10.1016/j.giq.2006.01.002 +Chun Liu 0005,The myth of informatization in rural areas: The case of China's Sichuan province.,2012,29,Government Information Quarterly,1,db/journals/giq/giq29.html#Liu12,https://doi.org/10.1016/j.giq.2011.06.002 +Ardion Beldad,Reading the least read? Indicators of users' intention to consult privacy statements on municipal websites.,2010,27,Government Information Quarterly,3,db/journals/giq/giq27.html#BeldadJS10,https://doi.org/10.1016/j.giq.2010.01.004 +Christian østergaard Madsen,The efficiency of freedom: Single parents' domestication of mandatory e-government channels.,2015,32,Government Information Quarterly,4,db/journals/giq/giq32.html#MadsenK15,https://doi.org/10.1016/j.giq.2015.09.008 +Maaike J. Van den Haak,Evaluating municipal websites: A methodological comparison of three think-aloud variants.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#HaakJS09,https://doi.org/10.1016/j.giq.2007.11.003 +Marieke Welle Donker-Kuijer,Usable guidelines for usable websites? An analysis of five e-government heuristics.,2010,27,Government Information Quarterly,3,db/journals/giq/giq27.html#Donker-KuijerJL10,https://doi.org/10.1016/j.giq.2010.02.006 +José Luis Gómez Barroso,Public intervention in the access to advanced telecommunication services: Assessing its theoretical economic basis.,2005,22,Government Information Quarterly,3,db/journals/giq/giq22.html#BarrosoM05,https://doi.org/10.1016/j.giq.2005.08.001 +Karen Layne,Developing fully functional E-government: A four stage model.,2001,18,Government Information Quarterly,2,db/journals/giq/giq18.html#LayneL01,https://doi.org/10.1016/S0740-624X(01)00066-1 +Chun-Shuo Chen,The dynamics of bilateral intellectual property negotiations: Taiwan and the United States.,2007,24,Government Information Quarterly,3,db/journals/giq/giq24.html#ChenM07,https://doi.org/10.1016/j.giq.2006.08.006 +Bruce Pencek,United States at War: Understanding Conflict and Society.,2007,24,Government Information Quarterly,1,db/journals/giq/giq24.html#Pencek07,https://doi.org/10.1016/j.giq.2006.07.011 +Tom McClean,Who pays the piper? The political economy of freedom of information.,2010,27,Government Information Quarterly,4,db/journals/giq/giq27.html#McClean10,https://doi.org/10.1016/j.giq.2010.05.004 +Iryna Susha,eParticipation research: Systematizing the field.,2012,29,Government Information Quarterly,3,db/journals/giq/giq29.html#SushaG12,https://doi.org/10.1016/j.giq.2011.11.005 +Tung-Mou Yang,Examining the socio-technical determinants influencing government agencies' open data publication: A study in Taiwan.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#YangW16,https://doi.org/10.1016/j.giq.2016.05.003 +Roxanne Missingham,E-parliament: Opening the door.,2011,28,Government Information Quarterly,3,db/journals/giq/giq28.html#Missingham11,https://doi.org/10.1016/j.giq.2010.08.006 +Marcia Meister,University of California experience and decision.,2005,22,Government Information Quarterly,4,db/journals/giq/giq22.html#MeisterC05,https://doi.org/10.1016/j.giq.2006.01.008 +Vinod Kumar,ERP systems implementation: best practices in Canadian government organizations.,2002,19,Government Information Quarterly,2,db/journals/giq/giq19.html#KumarMK02,https://doi.org/10.1016/S0740-624X(02)00092-8 +James Boxall,The nature of geospatial information and security.,2005,22,Government Information Quarterly,4,db/journals/giq/giq22.html#Boxall05,https://doi.org/10.1016/j.giq.2005.09.001 +David Plocher,The digital age: Challenges for records management.,1999,16,Government Information Quarterly,1,db/journals/giq/giq16.html#Plocher99,https://doi.org/10.1016/S0740-624X(99)80016-1 +Chun Liu 0005,Examining China's triple-network convergence plan: Regulatory challenges and policy recommendations.,2013,30,Government Information Quarterly,1,db/journals/giq/giq30.html#Liu13,https://doi.org/10.1016/j.giq.2012.04.008 +Genie N. L. Stowers,Becoming cyberactive: State and local governments on the World Wide Web.,1999,16,Government Information Quarterly,2,db/journals/giq/giq16.html#Stowers99,https://doi.org/10.1016/S0740-624X(99)80003-3 +Remi Chandran,Wildlife Enforcement Monitoring System (WEMS): A solution to support compliance of Multilateral Environmental Agreements.,2011,28,Government Information Quarterly,2,db/journals/giq/giq28.html#ChandranKN11,https://doi.org/10.1016/j.giq.2010.09.002 +Yikai Liang,Exploring the determinant and influence mechanism of e-Government cloud adoption in government agencies in China.,2017,34,Government Information Quarterly,3,db/journals/giq/giq34.html#LiangQWC17,https://doi.org/10.1016/j.giq.2017.06.002 +Jody Condit Fagan,An accessibility study of state legislative Web sites.,2004,21,Government Information Quarterly,1,db/journals/giq/giq21.html#FaganF04,https://doi.org/10.1016/j.giq.2003.12.010 +Harold C. Relyea,Homeland security and information sharing: Federal policy considerations.,2004,21,Government Information Quarterly,4,db/journals/giq/giq21.html#Relyea04,https://doi.org/10.1016/j.giq.2004.08.007 +Olivier Glassey,Developing a one-stop government data model.,2004,21,Government Information Quarterly,2,db/journals/giq/giq21.html#Glassey04,https://doi.org/10.1016/j.giq.2003.12.012 +Akemi Takeoka Chatfield,All hands on deck to tweet #sandy: Networked governance of citizen coproduction in turbulent *.,2018,35,Government Information Quarterly,2,db/journals/giq/giq35.html#ChatfieldR18a,https://doi.org/10.1016/j.giq.2017.09.004 +,Chongqing Municipal People's Government Decree No 17: Chongqing municipal interim measures on open government affairs information.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#X06c,https://doi.org/10.1016/j.giq.2006.02.003 +Nripendra P. Rana,Citizen's adoption of an e-government system: Validating extended social cognitive theory (SCT).,2015,32,Government Information Quarterly,2,db/journals/giq/giq32.html#RanaD15,https://doi.org/10.1016/j.giq.2015.02.002 +Emad A. Abu-Shanab,Reengineering the open government concept: An empirical support for a proposed model.,2015,32,Government Information Quarterly,4,db/journals/giq/giq32.html#Abu-Shanab15,https://doi.org/10.1016/j.giq.2015.07.002 +Fredrik Karlsson,Inter-organisational information sharing in the public sector: A longitudinal case study on the reshaping of success factors.,2017,34,Government Information Quarterly,4,db/journals/giq/giq34.html#KarlssonFPKH17,https://doi.org/10.1016/j.giq.2017.10.007 +Christopher G. Reddick,Government Information Quarterly 2011 Best Paper Award.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#Reddick12,https://doi.org/10.1016/j.giq.2012.07.001 +Albert Meijer,Communities of Public Service Support: Citizens engage in social learning in peer-to-peer networks.,2012,29,Government Information Quarterly,1,db/journals/giq/giq29.html#MeijerGB12,https://doi.org/10.1016/j.giq.2011.06.004 +András Nemeslaki,Could on-line voting boost desire to vote? - Technology acceptance perceptions of young Hungarian citizens.,2016,33,Government Information Quarterly,4,db/journals/giq/giq33.html#NemeslakiAS16,https://doi.org/10.1016/j.giq.2016.11.003 +Jody Condit Fagan,Citizens' access to on-line state legislative documents.,2001,18,Government Information Quarterly,2,db/journals/giq/giq18.html#FaganF01,https://doi.org/10.1016/S0740-624X(01)00064-8 +John Carlo Bertot,The E-Government paradox: Better customer service doesn't necessarily cost less.,2008,25,Government Information Quarterly,2,db/journals/giq/giq25.html#BertotJ08,https://doi.org/10.1016/j.giq.2007.10.002 +Dave Gelders,Communication management in the public sector: Consequences for public communication about policy intentions.,2007,24,Government Information Quarterly,2,db/journals/giq/giq24.html#GeldersBR07,https://doi.org/10.1016/j.giq.2006.06.009 +Anne Craig,The Find-It! Illinois controlled vocabulary: Improving access to government information through the Jessica subject tree.,2001,18,Government Information Quarterly,3,db/journals/giq/giq18.html#CraigS01,https://doi.org/10.1016/S0740-624X(01)00077-6 +Dimitris Gouscos,A general model of performance and quality for one-stop e-Government service offerings.,2007,24,Government Information Quarterly,4,db/journals/giq/giq24.html#GouscosKLP07,https://doi.org/10.1016/j.giq.2006.07.016 +Mario Procopiuck,Information technology and time of judgment in specialized courts: What is the impact of changing from physical to electronic processing?,2018,35,Government Information Quarterly,3,db/journals/giq/giq35.html#Procopiuck18,https://doi.org/10.1016/j.giq.2018.03.005 +Rita Marcella,The effectiveness of parliamentary information services in the United Kingdom.,2003,20,Government Information Quarterly,1,db/journals/giq/giq20.html#MarcellaBM03,https://doi.org/10.1016/S0740-624X(02)00138-7 +Christopher G. Reddick,Channel choice and public service delivery in Canada: Comparing e-government to traditional service delivery.,2012,29,Government Information Quarterly,1,db/journals/giq/giq29.html#ReddickT12,https://doi.org/10.1016/j.giq.2011.03.005 +Bill Sleeman,The September 11 Digital Archive.,2005,22,Government Information Quarterly,1,db/journals/giq/giq22.html#Sleeman05,https://doi.org/10.1016/j.giq.2004.09.004 +Roger Anderson,Review Essay - Department of Defense (DoD) and Center for Defense Information (CDI) Web Sites.,2005,22,Government Information Quarterly,1,db/journals/giq/giq22.html#Anderson05,https://doi.org/10.1016/j.giq.2004.09.006 +çigdem Aricigil çilan,Analyzing digital divide within and between member and candidate countries o f European Union.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#CilanBC09,https://doi.org/10.1016/j.giq.2007.11.002 +Vassilis Meneklis,Bridging theory and practice in e-government: A set of guidelines for architectural design.,2010,27,Government Information Quarterly,1,db/journals/giq/giq27.html#MeneklisD10,https://doi.org/10.1016/j.giq.2009.08.005 +Martha Fuentes-Bautista,Rethinking localism in the broadband era: A participatory community development approach.,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#Fuentes-Bautista14,https://doi.org/10.1016/j.giq.2012.08.007 +Maxat Kassen,A promising phenomenon of open data: A case study of the Chicago open data project.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#Kassen13,https://doi.org/10.1016/j.giq.2013.05.012 +Kerry Holden,Exploring the tensions and incongruities of Internet governance in Africa.,2016,33,Government Information Quarterly,4,db/journals/giq/giq33.html#HoldenK16,https://doi.org/10.1016/j.giq.2016.08.006 +Wilhelm Peekhaus,Biowatch South Africa and the challenges in enforcing its constitutional right to access to information.,2011,28,Government Information Quarterly,4,db/journals/giq/giq28.html#Peekhaus11,https://doi.org/10.1016/j.giq.2010.12.008 +Roxanne Missingham,Access to Australian Government information: A decade of change 1997-2007.,2008,25,Government Information Quarterly,1,db/journals/giq/giq25.html#Missingham08,https://doi.org/10.1016/j.giq.2007.07.001 +Joachim åström,Understanding the rise of e-participation in non-democracies: Domestic and international factors.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#AstromKLP12,https://doi.org/10.1016/j.giq.2011.09.008 +Hamad Almuftah,Factors influencing e-diplomacy implementation: Exploring causal relationships using interpretive structural modelling.,2018,35,Government Information Quarterly,3,db/journals/giq/giq35.html#AlmuftahWRSI18,https://doi.org/10.1016/j.giq.2018.03.002 +Teta Stamati,Social media for openness and accountability in the public sector: Cases in the Greek context.,2015,32,Government Information Quarterly,1,db/journals/giq/giq32.html#StamatiPA15,https://doi.org/10.1016/j.giq.2014.11.004 +Jing Zhang 0006,Strengthening institutional-based trust for sustainable consumption: Lessons for smart disclosure.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#0006LSPL16,https://doi.org/10.1016/j.giq.2016.01.009 +John Carlo Bertot,New editorial board member.,2005,22,Government Information Quarterly,3,db/journals/giq/giq22.html#Bertot05a,https://doi.org/10.1016/j.giq.2005.06.001 +Theresa A. Pardo,Interorganizational information integration: A key enabler for digital government.,2007,24,Government Information Quarterly,4,db/journals/giq/giq24.html#PardoT07,https://doi.org/10.1016/j.giq.2007.08.004 +Christopher S. Thompson,Enlisting on-line residents: Expanding the boundaries of e-government in a Japanese rural township.,2002,19,Government Information Quarterly,2,db/journals/giq/giq19.html#Thompson02,https://doi.org/10.1016/S0740-624X(02)00093-X +Whasun Jho,Institutional and technological determinants of civil e-Participation: Solo or duet?,2015,32,Government Information Quarterly,4,db/journals/giq/giq32.html#JhoS15,https://doi.org/10.1016/j.giq.2015.09.003 +Jeffrey C. Griffith,Congress' legislative information systems: THOMAS and the LIS.,2001,18,Government Information Quarterly,1,db/journals/giq/giq18.html#Griffith01,https://doi.org/10.1016/S0740-624X(00)00066-6 +David Lorenzi,Enhancing the government service experience through QR codes on mobile platforms.,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#LorenziVCSA14,https://doi.org/10.1016/j.giq.2013.05.025 +Sukumar Ganapati,Prospects and challenges of sharing economy for the public sector.,2018,35,Government Information Quarterly,1,db/journals/giq/giq35.html#GanapatiR18,https://doi.org/10.1016/j.giq.2018.01.001 +Charles D. Bernholz,American Indian treaties and the lower federal courts: A guide to treaty citations from opinions of the lower United States federal court system.,2007,24,Government Information Quarterly,2,db/journals/giq/giq24.html#Bernholz07a,https://doi.org/10.1016/j.giq.2006.06.007 +Gerald G. Grant,Designing governance for shared services organizations in the public service.,2007,24,Government Information Quarterly,3,db/journals/giq/giq24.html#GrantMUB07,https://doi.org/10.1016/j.giq.2006.09.005 +Dave Gelders,Systematic evaluation of public participation projects: Analytical framework and application based on two Belgian neighborhood watch projects.,2010,27,Government Information Quarterly,2,db/journals/giq/giq27.html#GeldersBMC10,https://doi.org/10.1016/j.giq.2009.10.003 +Mila Gascó,What do citizens communicate about during crises? Analyzing twitter use during the 2011 UK riots.,2017,34,Government Information Quarterly,4,db/journals/giq/giq34.html#GascoBDA17,https://doi.org/10.1016/j.giq.2017.11.005 +Maha Shaikh,Negotiating open source software adoption in the UK public sector.,2016,33,Government Information Quarterly,1,db/journals/giq/giq33.html#Shaikh16,https://doi.org/10.1016/j.giq.2015.11.001 +Daniel Stockemer,The internet: An important tool to strengthening electoral integrity.,2018,35,Government Information Quarterly,1,db/journals/giq/giq35.html#Stockemer18,https://doi.org/10.1016/j.giq.2017.11.009 +Amy West,Coming Soon to a Location Near You.,2008,25,Government Information Quarterly,1,db/journals/giq/giq25.html#West08,https://doi.org/10.1016/j.giq.2007.09.004 +Anjali Kaushik,The new data-driven enterprise architecture for e-healthcare: Lessons from the Indian public sector.,2015,32,Government Information Quarterly,1,db/journals/giq/giq32.html#KaushikR15,https://doi.org/10.1016/j.giq.2014.11.002 +Peter Johan Lor,Work in progress: Developing policies for access to government information in the New South Africa.,2002,19,Government Information Quarterly,2,db/journals/giq/giq19.html#LorA02,https://doi.org/10.1016/S0740-624X(02)00096-5 +Charles D. Bernholz,The Interstate 40 bridge collapse at Webbers Falls web site: Oklahoma Department of Libraries. Visited August 2002. http: //www.odl.state.ok.us/usinfo/topiclists/us-i40.htM.,2002,19,Government Information Quarterly,4,db/journals/giq/giq19.html#Bernholz02a,https://doi.org/10.1016/S0740-624X(02)00124-7 +Guangwei Hu,A hierarchical model of e-government service capability: An empirical analysis.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#HuSPW12,https://doi.org/10.1016/j.giq.2012.04.007 +Gwanhoo Lee,An Open Government Maturity Model for social media-based public engagement.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#LeeK12,https://doi.org/10.1016/j.giq.2012.06.001 +Thurman L. Whitson,Best practices in electronic government: Comprehensive electronic information dissemination for science and technology.,2001,18,Government Information Quarterly,2,db/journals/giq/giq18.html#WhitsonD01,https://doi.org/10.1016/S0740-624X(01)00062-4 +Siddhartha Shankar Menon,India's convergence policy within its communication sector: A long road ahead.,2004,21,Government Information Quarterly,3,db/journals/giq/giq21.html#Menon04,https://doi.org/10.1016/j.giq.2004.04.006 +Seongcheol Kim,An institutional analysis of an e-government system for anti-corruption: The case of OPEN.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#KimKL09,https://doi.org/10.1016/j.giq.2008.09.002 +Anja Reinwald,Managing stakeholders in transformational government - A case study in a Danish local government.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#ReinwaldK12,https://doi.org/10.1016/j.giq.2011.09.007 +Hae-young Rieh,Records professionals' challenges and barriers in public institutions in Korea.,2016,33,Government Information Quarterly,4,db/journals/giq/giq33.html#Rieh16,https://doi.org/10.1016/j.giq.2016.08.001 +Yuehua Wu,Protecting personal data in E-government: A cross-country study.,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#Wu14,https://doi.org/10.1016/j.giq.2013.07.003 +Sharon Strover,Broadband Redux: 2013.,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#StroverM14,https://doi.org/10.1016/j.giq.2013.12.003 +Sung-Don Hwang,Electronic government in South Korea: Conceptual problems.,1999,16,Government Information Quarterly,3,db/journals/giq/giq16.html#HwangCM99,https://doi.org/10.1016/S0740-624X(99)80028-8 +Rony Medaglia,eParticipation research: Moving characterization forward (2006-2011).,2012,29,Government Information Quarterly,3,db/journals/giq/giq29.html#Medaglia12,https://doi.org/10.1016/j.giq.2012.02.010 +Christopher G. Reddick,A social media text analytics framework for double-loop learning for citizen-centric public services: A case study of a local government Facebook use.,2017,34,Government Information Quarterly,1,db/journals/giq/giq34.html#ReddickCO17,https://doi.org/10.1016/j.giq.2016.11.001 +José Esteves,A comprehensive framework for the assessment of eGovernment projects.,2008,25,Government Information Quarterly,1,db/journals/giq/giq25.html#EstevesJ08,https://doi.org/10.1016/j.giq.2007.04.009 +Christopher G. Reddick,The adoption of centralized customer service systems: A survey of local governments.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#Reddick09,https://doi.org/10.1016/j.giq.2008.03.005 +Harold C. Relyea,Congress and freedom of information: A retrospective and a look at a current issue.,2009,26,Government Information Quarterly,3,db/journals/giq/giq26.html#Relyea09a,https://doi.org/10.1016/j.giq.2009.04.001 +Sabrina Ching Yuen Luk,The impact of leadership and stakeholders on the success/failure of e-government service: Using the case study of e-stamping service in Hong Kong.,2009,26,Government Information Quarterly,4,db/journals/giq/giq26.html#Luk09,https://doi.org/10.1016/j.giq.2009.02.009 +Patrick Birkinshaw,Proposals for freedom of information in the United Kingdom.,1999,16,Government Information Quarterly,2,db/journals/giq/giq16.html#Birkinshaw99,https://doi.org/10.1016/S0740-624X(99)80002-1 +I-Chiu Chang,An empirical study on the impact of quality antecedents on tax payers' acceptance of Internet tax-filing systems.,2005,22,Government Information Quarterly,3,db/journals/giq/giq22.html#ChangLHH05,https://doi.org/10.1016/j.giq.2005.05.002 +Lynn G. Walshak,The GPO and the depository library program as structured are needed: Views of a selective depository librarian.,1998,15,Government Information Quarterly,1,db/journals/giq/giq15.html#Walshak98,https://doi.org/10.1016/S0740-624X(98)90014-4 +Rony Medaglia,Mapping government social media research and moving it forward: A framework and a research agenda.,2017,34,Government Information Quarterly,3,db/journals/giq/giq34.html#MedagliaZ17,https://doi.org/10.1016/j.giq.2017.06.001 +Juris Dilevko,Subject access to government documents in an era of globalization: Intellectual bundling of entities affected by the decisions of supranational organizations1.,2002,19,Government Information Quarterly,2,db/journals/giq/giq19.html#DilevkoG02,https://doi.org/10.1016/S0740-624X(02)00094-1 +Milton Mueller,Universal service policies as wealth redistribution.,1999,16,Government Information Quarterly,4,db/journals/giq/giq16.html#Mueller99,https://doi.org/10.1016/S0740-624X(00)86840-9 +I-Chiu Chang,Electronic medical record quality and its impact on user satisfaction - Healthcare providers' point of view.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#ChangLWY12,https://doi.org/10.1016/j.giq.2011.07.006 +John A. Shuler,Editorial: E-government without government.,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#ShulerJB14,https://doi.org/10.1016/j.giq.2013.11.004 +Cory L. Armstrong,Providing a clearer view: An examination of transparency on local government websites.,2011,28,Government Information Quarterly,1,db/journals/giq/giq28.html#Armstrong11,https://doi.org/10.1016/j.giq.2010.07.006 +Taewoo Nam,Freedom of information legislation and its impact on press freedom: A cross-national study.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#Nam12b,https://doi.org/10.1016/j.giq.2012.03.003 +Tony H. Grubesic,The wireless abyss: Deconstructing the U.S. National Broadband Map.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#Grubesic12,https://doi.org/10.1016/j.giq.2012.05.006 +Minyoung Ku,The emergence and evolution of cross-boundary research collaborations: An explanatory study of social dynamics in a digital government working group.,2016,33,Government Information Quarterly,4,db/journals/giq/giq33.html#KuG016,https://doi.org/10.1016/j.giq.2016.07.005 +Lieselot Danneels,Simple rules strategy to transform government: An ADR approach.,2015,32,Government Information Quarterly,4,db/journals/giq/giq32.html#DanneelsV15,https://doi.org/10.1016/j.giq.2015.09.006 +Lex van Velsen,Requirements engineering for e-Government services: A citizen-centric approach and case study.,2009,26,Government Information Quarterly,3,db/journals/giq/giq26.html#VelsenGHD09,https://doi.org/10.1016/j.giq.2009.02.007 +Judie Attard,A systematic review of open government data initiatives.,2015,32,Government Information Quarterly,4,db/journals/giq/giq32.html#AttardOSA15,https://doi.org/10.1016/j.giq.2015.07.006 +Kristin N. Frey,Distribution channel management in e-government: Addressing federal information policy issues.,2005,22,Government Information Quarterly,4,db/journals/giq/giq22.html#FreyH05,https://doi.org/10.1016/j.giq.2006.01.001 +Joydeep Guha,Making e-government work: Adopting the network approach.,2014,31,Government Information Quarterly,2,db/journals/giq/giq31.html#GuhaC14,https://doi.org/10.1016/j.giq.2013.11.008 +Nadia Caidi,Information practices of Canadian Muslims post 9/11.,2008,25,Government Information Quarterly,3,db/journals/giq/giq25.html#CaidiM08,https://doi.org/10.1016/j.giq.2007.10.007 +Mahmud Akhter Shareef,e-Government Adoption Model (GAM): Differing service maturity levels.,2011,28,Government Information Quarterly,1,db/journals/giq/giq28.html#ShareefKKD11,https://doi.org/10.1016/j.giq.2010.05.006 +Mark E. Wallace,Public and private sector uses of economic census data.,1998,15,Government Information Quarterly,3,db/journals/giq/giq15.html#Wallace98,https://doi.org/10.1016/S0740-624X(98)90006-5 +John A. Shuler,Implications of harmonizing the future of the federal depository library program within e-government principles and policies.,2010,27,Government Information Quarterly,1,db/journals/giq/giq27.html#ShulerJB10,https://doi.org/10.1016/j.giq.2009.09.001 +Paul T. Jaeger,The fourth branch of government and the historical legacy of the Bush administration's information policies.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#Jaeger09,https://doi.org/10.1016/j.giq.2007.12.004 +Marije L. Teerling,Multichannel marketing: An experiment on guiding citizens to the electronic channels.,2010,27,Government Information Quarterly,1,db/journals/giq/giq27.html#TeerlingP10,https://doi.org/10.1016/j.giq.2009.08.003 +Jonathan Lazar,A longitudinal study of state government homepage accessibility in Maryland and the role of web page templates for improving accessibility.,2013,30,Government Information Quarterly,3,db/journals/giq/giq30.html#LazarWACAABBCCF13,https://doi.org/10.1016/j.giq.2013.03.003 +Lee S. Strickland,Civil liberties vs. intelligence collection: the secret Foreign Intelligence Surveillance Act court speaks in public☆.,2003,20,Government Information Quarterly,1,db/journals/giq/giq20.html#Strickland03,https://doi.org/10.1016/S0740-624X(02)00132-6 +Harold C. Relyea,Paperwork reduction act reauthorization and government information management issues.,2000,17,Government Information Quarterly,4,db/journals/giq/giq17.html#Relyea00,https://doi.org/10.1016/S0740-624X(00)00048-4 +Enrique Bonsón,The use of YouTube in western European municipalities.,2018,35,Government Information Quarterly,2,db/journals/giq/giq35.html#BonsonB18,https://doi.org/10.1016/j.giq.2018.04.001 +Mila Gascó,Living labs: Implementing open innovation in the public sector.,2017,34,Government Information Quarterly,1,db/journals/giq/giq34.html#Gasco17,https://doi.org/10.1016/j.giq.2016.09.003 +Wolfgang Ebbers,"Corrigendum to ""Impact of the digital divide on e-government: Expanding from channel choice to channel usage"" [Gov. Inf. Q. 33(4) 685-692].",2017,34,Government Information Quarterly,3,db/journals/giq/giq34.html#EbbersJD17,https://doi.org/10.1016/j.giq.2017.09.002 +Tomasz Janowski,Implementing Sustainable Development Goals with Digital Government - Aspiration-capacity gap.,2016,33,Government Information Quarterly,4,db/journals/giq/giq33.html#Janowski16,https://doi.org/10.1016/j.giq.2016.12.001 +Mark A. Ward,A comparison of the strategic priorities of public and private sector information resource management executives.,2004,21,Government Information Quarterly,3,db/journals/giq/giq21.html#WardM04,https://doi.org/10.1016/j.giq.2004.04.003 +Eric W. Welch,Technology in government: How organizational culture mediates information and communication technology outcomes.,2014,31,Government Information Quarterly,4,db/journals/giq/giq31.html#WelchF14,https://doi.org/10.1016/j.giq.2014.07.006 +Maggie Farrell,The ALA COL FDLP Task Force: Working through Association Processes (2014).,2015,32,Government Information Quarterly,1,db/journals/giq/giq32.html#Farrell15,https://doi.org/10.1016/j.giq.2014.12.002 +Charles D. Bernholz,Federal government documents: Dead or alive.,2008,25,Government Information Quarterly,1,db/journals/giq/giq25.html#Bernholz08,https://doi.org/10.1016/j.giq.2007.04.011 +Zhigang Qiao,Exploration and practice in promoting Shanghai municipal open government information.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#Qiao06,https://doi.org/10.1016/j.giq.2006.02.005 +Sharon A. Weiner,Tale of two databases: The history of federally funded information systems for education and medicine.,2009,26,Government Information Quarterly,3,db/journals/giq/giq26.html#Weiner09,https://doi.org/10.1016/j.giq.2009.02.003 +Patrick J. Birkinshaw,Freedom of information in the U.K.: a progress report.,2000,17,Government Information Quarterly,4,db/journals/giq/giq17.html#Birkinshaw00,https://doi.org/10.1016/S0740-624X(00)00051-4 +Yuquan Shi,The accessibility of Chinese local government Web sites: An exploratory study.,2007,24,Government Information Quarterly,2,db/journals/giq/giq24.html#Shi07,https://doi.org/10.1016/j.giq.2006.05.004 +Marianthi H. Terpsiadou,The use of information systems in the Greek public financial services: The case of TAXIS.,2009,26,Government Information Quarterly,3,db/journals/giq/giq26.html#TerpsiadouE09,https://doi.org/10.1016/j.giq.2009.02.004 +Momna Yousaf,Exploring the impact of good governance on citizens' trust in Pakistan.,2016,33,Government Information Quarterly,1,db/journals/giq/giq33.html#YousafIE16,https://doi.org/10.1016/j.giq.2015.06.001 +Harla J. Frank,About the authors.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#Frank06,https://doi.org/10.1016/j.giq.2006.04.004 +Uthayasankar Sivarajah,Evaluating the use and impact of Web 2.0 technologies in local government.,2015,32,Government Information Quarterly,4,db/journals/giq/giq32.html#SivarajahIW15,https://doi.org/10.1016/j.giq.2015.06.004 +Dennis De Widt,Informal networking in the public sector: Mapping local government debates in a period of austerity.,2018,35,Government Information Quarterly,3,db/journals/giq/giq35.html#WidtP18,https://doi.org/10.1016/j.giq.2018.05.004 +Eliamani Sedoyeka,Low cost broadband network model using WiMAX technology.,2011,28,Government Information Quarterly,3,db/journals/giq/giq28.html#SedoyekaH11,https://doi.org/10.1016/j.giq.2010.09.005 +John A. Shuler,Introduction.,1998,15,Government Information Quarterly,1,db/journals/giq/giq15.html#ShulerC98,https://doi.org/10.1016/S0740-624X(98)90011-9 +Jim Gravois,Announcing the GIQ homepage on the world wide web.,1998,15,Government Information Quarterly,1,db/journals/giq/giq15.html#Gravois98,https://doi.org/10.1016/S0740-624X(98)90025-9 +Sangki Jin,Is ICT a new essential for national economic growth in an information society?,2015,32,Government Information Quarterly,3,db/journals/giq/giq32.html#JinC15,https://doi.org/10.1016/j.giq.2015.04.007 +Mohamed A. Nour,A context-based integrative framework for e-government initiatives.,2008,25,Government Information Quarterly,3,db/journals/giq/giq25.html#NourAF08,https://doi.org/10.1016/j.giq.2007.02.004 +Kristjan Vassil,The diffusion of internet voting. Usage patterns of internet voting in Estonia between 2005 and 2015.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#VassilSVTA16,https://doi.org/10.1016/j.giq.2016.06.007 +Patrick Birkinshaw,Freedom of information and its impact in the United Kingdom.,2010,27,Government Information Quarterly,4,db/journals/giq/giq27.html#Birkinshaw10,https://doi.org/10.1016/j.giq.2010.06.006 +Svein ølnes,Blockchain in government: Benefits and implications of distributed ledger technology for information sharing.,2017,34,Government Information Quarterly,3,db/journals/giq/giq34.html#OlnesUJ17,https://doi.org/10.1016/j.giq.2017.09.007 +Sheshadri Chatterjee,Success of IoT in Smart Cities of India: An empirical analysis.,2018,35,Government Information Quarterly,3,db/journals/giq/giq35.html#ChatterjeeKG18,https://doi.org/10.1016/j.giq.2018.05.002 +Jungwoo Lee 0002,10 year retrospect on stage models of e-Government: A qualitative meta-synthesis.,2010,27,Government Information Quarterly,3,db/journals/giq/giq27.html#Lee10,https://doi.org/10.1016/j.giq.2009.12.009 +Dave Gelders,The opinion of Belgian government communication professionals on public communication about policy intentions: Pros/cons and conditions.,2006,23,Government Information Quarterly,2,db/journals/giq/giq23.html#GeldersCRN06,https://doi.org/10.1016/j.giq.2006.01.013 +Nik Thompson,Government data does not mean data governance: Lessons learned from a public sector application audit.,2015,32,Government Information Quarterly,3,db/journals/giq/giq32.html#ThompsonRN15,https://doi.org/10.1016/j.giq.2015.05.001 +George Kuk,The digital divide and the quality of electronic service delivery in local government in the United Kingdom.,2003,20,Government Information Quarterly,4,db/journals/giq/giq20.html#Kuk03,https://doi.org/10.1016/j.giq.2003.08.004 +Jane Fedorowicz,Design observations for interagency collaboration.,2014,31,Government Information Quarterly,2,db/journals/giq/giq31.html#FedorowiczSWMDT14,https://doi.org/10.1016/j.giq.2013.11.006 +Victor Bekkers,Flexible information infrastructures in Dutch E-Government collaboration arrangements: Experiences and policy implications.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#Bekkers09,https://doi.org/10.1016/j.giq.2007.09.010 +Terrence A. Maxwell,Constructing consensus: Homeland security as a symbol of government politics and administration.,2005,22,Government Information Quarterly,2,db/journals/giq/giq22.html#Maxwell05,https://doi.org/10.1016/j.giq.2003.01.001 +Beatriz Cuadrado-Ballesteros,The impact of functional decentralization and externalization on local government transparency.,2014,31,Government Information Quarterly,2,db/journals/giq/giq31.html#Cuadrado-Ballesteros14,https://doi.org/10.1016/j.giq.2013.10.012 +Duncan Aldrich,Partners on the net: FDLP partnering to coordinate remote access to internet-based government information.,1998,15,Government Information Quarterly,1,db/journals/giq/giq15.html#Aldrich98,https://doi.org/10.1016/S0740-624X(98)90013-2 +Renée E. Sieber,Civic open data at a crossroads: Dominant models and current challenges.,2015,32,Government Information Quarterly,3,db/journals/giq/giq32.html#SieberJ15,https://doi.org/10.1016/j.giq.2015.05.003 +Ida Lindgren,Electronic services in the public sector: A conceptual framework.,2013,30,Government Information Quarterly,2,db/journals/giq/giq30.html#LindgrenJ13,https://doi.org/10.1016/j.giq.2012.10.005 +Adel M. Aladwani,A cross-cultural comparison of Kuwaiti and British citizens' views of e-government interface quality.,2013,30,Government Information Quarterly,1,db/journals/giq/giq30.html#Aladwani13,https://doi.org/10.1016/j.giq.2012.08.003 +Michele Bush Kimball,Mandated state-level open government training programs.,2011,28,Government Information Quarterly,4,db/journals/giq/giq28.html#Kimball11,https://doi.org/10.1016/j.giq.2011.04.003 +Eunjin Kim,Social welfare implications of the digital divide.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#KimLM09,https://doi.org/10.1016/j.giq.2008.11.004 +Christopher G. Reddick,Business perceptions and satisfaction with e-government: Findings from a Canadian survey.,2013,30,Government Information Quarterly,1,db/journals/giq/giq30.html#ReddickR13,https://doi.org/10.1016/j.giq.2012.06.009 +Antonio Vetrò,Open data quality measurement framework: Definition and application to Open Government Data.,2016,33,Government Information Quarterly,2,db/journals/giq/giq33.html#VetroCTMIM16,https://doi.org/10.1016/j.giq.2016.02.001 +Akemi Takeoka Chatfield,Customer agility and responsiveness through big data analytics for public value creation: A case study of Houston 311 on-demand services.,2018,35,Government Information Quarterly,2,db/journals/giq/giq35.html#ChatfieldR18b,https://doi.org/10.1016/j.giq.2017.11.002 +Harold C. Relyea,Across the hill: The congressional research service and providing research for congress - Considering the future.,2012,29,Government Information Quarterly,3,db/journals/giq/giq29.html#Relyea12b,https://doi.org/10.1016/j.giq.2011.12.007 +Gavin Clarkson,Information asymmetry and information sharing.,2007,24,Government Information Quarterly,4,db/journals/giq/giq24.html#ClarksonJB07,https://doi.org/10.1016/j.giq.2007.08.001 +Luis Felipe Luna-Reyes,Towards a multidimensional model for evaluating electronic government: Proposing a more comprehensive and integrative perspective.,2012,29,Government Information Quarterly,3,db/journals/giq/giq29.html#Luna-ReyesGR12,https://doi.org/10.1016/j.giq.2012.03.001 +Audrian J. Gray,Service Based Enumeration.,2000,17,Government Information Quarterly,2,db/journals/giq/giq17.html#Gray00,https://doi.org/10.1016/S0740-624X(00)00025-3 +Ines Mergel,Open collaboration in the public sector: The case of social coding on GitHub.,2015,32,Government Information Quarterly,4,db/journals/giq/giq32.html#Mergel15,https://doi.org/10.1016/j.giq.2015.09.004 +Christopher G. Reddick,A two-stage model of e-government growth: Theories and empirical evidence for U.S. cities.,2004,21,Government Information Quarterly,1,db/journals/giq/giq21.html#Reddick04,https://doi.org/10.1016/j.giq.2003.11.004 +Laura McCarthy,The use of cookies in Federal agency web sites: Privacy and recordkeeping issues.,2010,27,Government Information Quarterly,3,db/journals/giq/giq27.html#McCarthyY10,https://doi.org/10.1016/j.giq.2010.02.005 +Bijan Azad,E-Government institutionalizing practices of a land registration mapping system.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#AzadF09,https://doi.org/10.1016/j.giq.2008.08.005 +Sounman Hong,Which candidates do the public discuss online in an election campaign?: The use of social media by 2012 presidential candidates and its impact on candidate salience.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#HongN12,https://doi.org/10.1016/j.giq.2012.06.004 +Georgia Prokopiadou,Integrating knowledge management tools for government information.,2004,21,Government Information Quarterly,2,db/journals/giq/giq21.html#ProkopiadouPM04,https://doi.org/10.1016/j.giq.2004.02.001 +Michael Parent,Building Citizen Trust Through E-government.,2005,22,Government Information Quarterly,4,db/journals/giq/giq22.html#ParentVG05,https://doi.org/10.1016/j.giq.2005.10.001 +Ronald G. Choura,Local governments and universities cooperate to expand broadband telecom services: the broadband regional affiliation for managed planning (B-RAMP) and the Michigan State University site for information and telecommunication experimentation (M-SITE).,2003,20,Government Information Quarterly,2,db/journals/giq/giq20.html#ChouraSML03,https://doi.org/10.1016/S0740-624X(03)00033-9 +Dong-Hee Shin,How will net neutrality be played out in Korea?,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#ShinH12,https://doi.org/10.1016/j.giq.2011.07.007 +Stacy Huey-Pyng Shyu,Elucidating usage of e-government learning: A perspective of the extended technology acceptance model.,2011,28,Government Information Quarterly,4,db/journals/giq/giq28.html#ShyuH11,https://doi.org/10.1016/j.giq.2011.04.002 +Bastiaan van Loenen,Data protection legislation: A very hungry caterpillar: The case of mapping data in the European Union.,2016,33,Government Information Quarterly,2,db/journals/giq/giq33.html#LoenenKP16,https://doi.org/10.1016/j.giq.2016.04.002 +Joan F. Cheverie,Federal information in the networked environment: A perspective from the coalition for networked information.,1999,16,Government Information Quarterly,3,db/journals/giq/giq16.html#Cheverie99,https://doi.org/10.1016/S0740-624X(99)80027-6 +Tanya D. Finchum,Book Reviews.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#Finchum06,https://doi.org/10.1016/j.giq.2005.07.001 +Enrico Ferro,Can intermunicipal collaboration help the diffusion of E-Government in peripheral areas? Evidence from Italy.,2010,27,Government Information Quarterly,1,db/journals/giq/giq27.html#FerroS10,https://doi.org/10.1016/j.giq.2009.07.005 +Yong Jeong Yi,Compliance of Section 508 in public library systems with the largest percentage of underserved populations.,2015,32,Government Information Quarterly,1,db/journals/giq/giq32.html#Yi15,https://doi.org/10.1016/j.giq.2014.11.005 +Kyounghee Hazel Kwon,Cyber-rumor sharing under a homeland security threat in the context of government Internet surveillance: The case of South-North Korea conflict.,2017,34,Government Information Quarterly,2,db/journals/giq/giq34.html#KwonR17,https://doi.org/10.1016/j.giq.2017.04.002 +Christopher G. Reddick,Information Resource Managers and E-government Effectiveness: A Survey of Texas State Agencies.,2006,23,Government Information Quarterly,2,db/journals/giq/giq23.html#Reddick06,https://doi.org/10.1016/j.giq.2005.11.006 +Menno de Jong,Scenario evaluation of municipal Web sites: Development and use of an expert-focused evaluation tool.,2006,23,Government Information Quarterly,2,db/journals/giq/giq23.html#JongL06,https://doi.org/10.1016/j.giq.2005.11.007 +Frank Lambert,Applying informetric methods to empirically assess the authoritativeness of Health Canada electronic documents.,2004,21,Government Information Quarterly,3,db/journals/giq/giq21.html#Lambert04,https://doi.org/10.1016/j.giq.2004.04.001 +Younghoon Chang,The role of privacy policy on consumers' perceived privacy.,2018,35,Government Information Quarterly,3,db/journals/giq/giq35.html#ChangWSL18,https://doi.org/10.1016/j.giq.2018.04.002 +Laura Alcaide-Muñoz,Analysing the scientific evolution of e-Government using a science mapping approach.,2017,34,Government Information Quarterly,3,db/journals/giq/giq34.html#Alcaide-MunozBC17,https://doi.org/10.1016/j.giq.2017.05.002 +Shin-Yuan Hung,Determinants of user acceptance of the e-Government services: The case of online tax filing and payment system.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#HungCY06,https://doi.org/10.1016/j.giq.2005.11.005 +Paul T. Jaeger,Constitutional principles and E-government: an opinion about possible effects of Federalism and the separation of powers on E-government policies.,2002,19,Government Information Quarterly,4,db/journals/giq/giq19.html#Jaeger02,https://doi.org/10.1016/S0740-624X(02)00119-3 +Ingrid Hsieh-Yee,ERIC user services: Changes and evaluation for the future.,2001,18,Government Information Quarterly,1,db/journals/giq/giq18.html#Hsieh-Yee01,https://doi.org/10.1016/S0740-624X(00)00064-2 +Staci M. Zavattaro,A sentiment analysis of U.S. local government tweets: The connection between tone and citizen involvement.,2015,32,Government Information Quarterly,3,db/journals/giq/giq32.html#ZavattaroFM15,https://doi.org/10.1016/j.giq.2015.03.003 +Sylvain Kubler,Comparison of metadata quality in open data portals using the Analytic Hierarchy Process.,2018,35,Government Information Quarterly,1,db/journals/giq/giq35.html#KublerRNUT18,https://doi.org/10.1016/j.giq.2017.11.003 +Alfons Cornella,Information policies in Spain.,1998,15,Government Information Quarterly,2,db/journals/giq/giq15.html#Cornella98,https://doi.org/10.1016/S0740-624X(98)90043-0 +Norman E. Youngblood,A usability analysis of municipal government website home pages in Alabama.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#YoungbloodM12,https://doi.org/10.1016/j.giq.2011.12.010 +Harold C. Relyea,E-gov: introduction and overview.,2002,19,Government Information Quarterly,1,db/journals/giq/giq19.html#Relyea02,https://doi.org/10.1016/S0740-624X(01)00096-X +Shirin A. Ahmed,Conducting the economic census.,1998,15,Government Information Quarterly,3,db/journals/giq/giq15.html#AhmedBW98,https://doi.org/10.1016/S0740-624X(98)90004-1 +Carol Marie Perry,Archiving of publicly funded research data: A survey of Canadian researchers.,2008,25,Government Information Quarterly,1,db/journals/giq/giq25.html#Perry08,https://doi.org/10.1016/j.giq.2007.04.008 +Marijn Janssen,A survey of Web-based business models for e-government in the Netherlands.,2008,25,Government Information Quarterly,2,db/journals/giq/giq25.html#JanssenKW08,https://doi.org/10.1016/j.giq.2007.06.005 +David Landsbergen,Screen level bureaucracy: Databases as public records.,2004,21,Government Information Quarterly,1,db/journals/giq/giq21.html#Landsbergen04,https://doi.org/10.1016/j.giq.2003.12.009 +George A. Barnett,Measuring international relations in social media conversations.,2017,34,Government Information Quarterly,1,db/journals/giq/giq34.html#BarnettXCJHPP17,https://doi.org/10.1016/j.giq.2016.12.004 +Kyujin Jung,Citizens' social media use and homeland security information policy: Some evidences from Twitter users during the 2013 North Korea nuclear test.,2014,31,Government Information Quarterly,4,db/journals/giq/giq31.html#JungP14,https://doi.org/10.1016/j.giq.2014.06.003 +Ines Mergel,Social media institutionalization in the U.S. federal government.,2016,33,Government Information Quarterly,1,db/journals/giq/giq33.html#Mergel16,https://doi.org/10.1016/j.giq.2015.09.002 +Earl H. McKinney Jr.,Learning by fire: the learning challenges facing U.S. Forest Service aviation.,2004,21,Government Information Quarterly,1,db/journals/giq/giq21.html#McKinney04,https://doi.org/10.1016/j.giq.2003.11.002 +Marcelo Fornazin,Linking theoretical perspectives to analyze health information and communication technologies in Brazil.,2016,33,Government Information Quarterly,2,db/journals/giq/giq33.html#FornazinJ16,https://doi.org/10.1016/j.giq.2016.04.004 +Mehmet Zahid Sobaci,The use of twitter by mayors in Turkey: Tweets for better public services?,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#SobaciK13,https://doi.org/10.1016/j.giq.2013.05.014 +Robbie Sittel,Managed by the Information Policy and Access Center (iPAC) in the College of Information Studies at the University of Maryland.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#Sittel12,https://doi.org/10.1016/j.giq.2011.11.001 +Harold C. Relyea,Government secrecy: policy depths and dimensions.,2003,20,Government Information Quarterly,4,db/journals/giq/giq20.html#Relyea03,https://doi.org/10.1016/j.giq.2003.09.001 +M. P. Gupta,E-government evaluation: a framework and case study.,2003,20,Government Information Quarterly,4,db/journals/giq/giq20.html#GuptaJ03,https://doi.org/10.1016/j.giq.2003.08.002 +Felipe Gonzalez-Zapata,The multiple meanings of open government data: Understanding different stakeholders and their perspectives.,2015,32,Government Information Quarterly,4,db/journals/giq/giq32.html#Gonzalez-Zapata15,https://doi.org/10.1016/j.giq.2015.09.001 +Lisa Schmidthuber,The emergence of local open government: Determinants of citizen participation in online service reporting.,2017,34,Government Information Quarterly,3,db/journals/giq/giq34.html#SchmidthuberHGE17,https://doi.org/10.1016/j.giq.2017.07.001 +Seongcheol Kim,The development of wireless telecommunications and local governments' policy responses: The U.S. case.,2007,24,Government Information Quarterly,3,db/journals/giq/giq24.html#Kim07,https://doi.org/10.1016/j.giq.2006.11.004 +Albert Meijer,A metatheory of e-government: Creating some order in a fragmented research field.,2015,32,Government Information Quarterly,3,db/journals/giq/giq32.html#MeijerB15,https://doi.org/10.1016/j.giq.2015.04.006 +Soon Ae Chun,Social media in government.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#ChunL12,https://doi.org/10.1016/j.giq.2012.07.003 +Henry Owen III,The Life and Liberty.gov Web site review.,2007,24,Government Information Quarterly,1,db/journals/giq/giq24.html#Owen07,https://doi.org/10.1016/j.giq.2006.07.014 +Andrés Navarro-Galera,Online dissemination of information on sustainability in regional governments. Effects of technological factors.,2016,33,Government Information Quarterly,1,db/journals/giq/giq33.html#Navarro-GaleraA16,https://doi.org/10.1016/j.giq.2015.12.003 +Mohammad Sharifi,The study of the success indicators for pre-implementation activities of Iran's E-Government development projects.,2010,27,Government Information Quarterly,1,db/journals/giq/giq27.html#SharifiM10,https://doi.org/10.1016/j.giq.2009.04.006 +Alex Ingrams,Democratic transition and transparency reform: An fsQCA analysis of access to information laws in twenty-three countries.,2018,35,Government Information Quarterly,3,db/journals/giq/giq35.html#Ingrams18,https://doi.org/10.1016/j.giq.2018.05.001 +Yu-Che Chen,A comparative study of e-government XBRL implementations: The potential of improving information transparency and efficiency.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#Chen12,https://doi.org/10.1016/j.giq.2012.05.009 +Eric C. Peterson,The impact of the national performance review and other forces on the rights of an informed citizenry: A case study in reinvention - reforming government publishing.,1998,15,Government Information Quarterly,4,db/journals/giq/giq15.html#Peterson98,https://doi.org/10.1016/S0740-624X(98)90032-6 +Suvi Konsti-Laakso,Stolen snow shovels and good ideas: The search for and generation of local knowledge in the social media community.,2017,34,Government Information Quarterly,1,db/journals/giq/giq34.html#Konsti-Laakso17,https://doi.org/10.1016/j.giq.2016.10.002 +Kumju Hwang,Effects of innovation-supportive culture and organizational citizenship behavior on e-government information system security stemming from mimetic isomorphism.,2017,34,Government Information Quarterly,2,db/journals/giq/giq34.html#HwangC17,https://doi.org/10.1016/j.giq.2017.02.001 +Yuval Karniel,Balancing the protection of civil liberties during wartime: How the Israeli Supreme Court shaped Palestinian freedom of expression during the Second Intifada.,2005,22,Government Information Quarterly,4,db/journals/giq/giq22.html#Karniel05,https://doi.org/10.1016/j.giq.2006.01.003 +Victor Glass,Cable TV is the next market for rural Telcos.,2003,20,Government Information Quarterly,2,db/journals/giq/giq20.html#GlassT03,https://doi.org/10.1016/S0740-624X(03)00019-4 +Jukka Ruohonen,An outlook on the institutional evolution of the European Union cyber security apparatus.,2016,33,Government Information Quarterly,4,db/journals/giq/giq33.html#RuohonenHL16,https://doi.org/10.1016/j.giq.2016.10.003 +Zhiyuan Chen 0003,Semantic integration of government data for water quality management.,2007,24,Government Information Quarterly,4,db/journals/giq/giq24.html#ChenGHKM07,https://doi.org/10.1016/j.giq.2007.04.004 +Lieselot Danneels,Open data platforms: Discussing alternative knowledge epistemologies.,2017,34,Government Information Quarterly,3,db/journals/giq/giq34.html#DanneelsVB17,https://doi.org/10.1016/j.giq.2017.08.007 +Fahrettin özdemirci,Government records and records management: Law on the right to information in Turkey.,2008,25,Government Information Quarterly,2,db/journals/giq/giq25.html#Ozdemirci08,https://doi.org/10.1016/j.giq.2006.07.017 +Brian E. Whitacre,Public libraries and residential broadband adoption: Do more computers lead to higher rates?,2015,32,Government Information Quarterly,2,db/journals/giq/giq32.html#WhitacreR15,https://doi.org/10.1016/j.giq.2015.02.007 +Jane Fedorowicz,Strategic alignment of participant motivations in e-government collaborations: The Internet Payment Platform pilot.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#FedorowiczGGW09,https://doi.org/10.1016/j.giq.2008.03.004 +Harold C. Relyea,Public printing reform and the 105th congress.,1999,16,Government Information Quarterly,2,db/journals/giq/giq16.html#Relyea99a,https://doi.org/10.1016/S0740-624X(99)80004-5 +Cliff Lampe,Crowdsourcing civility: A natural experiment examining the effects of distributed moderation in online forums.,2014,31,Government Information Quarterly,2,db/journals/giq/giq31.html#LampeZLPJ14,https://doi.org/10.1016/j.giq.2013.11.005 +Jeffrey Thorsby,Understanding the content and features of open data portals in American cities.,2017,34,Government Information Quarterly,1,db/journals/giq/giq34.html#ThorsbySWT17,https://doi.org/10.1016/j.giq.2016.07.001 +Abebe Rorissa,Benchmarking e-Government: A comparison of frameworks for computing e-Government index and ranking.,2011,28,Government Information Quarterly,3,db/journals/giq/giq28.html#RorissaDP11,https://doi.org/10.1016/j.giq.2010.09.006 +Jo Bates,The strategic importance of information policy for the contemporary neoliberal state: The case of Open Government Data in the United Kingdom.,2014,31,Government Information Quarterly,3,db/journals/giq/giq31.html#Bates14,https://doi.org/10.1016/j.giq.2014.02.009 +Nadia Caidi,Information rights and national security.,2005,22,Government Information Quarterly,4,db/journals/giq/giq22.html#CaidiR05,https://doi.org/10.1016/j.giq.2005.11.003 +Mete Yildiz,E-government discourses: An inductive analysis.,2013,30,Government Information Quarterly,2,db/journals/giq/giq30.html#YildizS13,https://doi.org/10.1016/j.giq.2012.10.007 +Jyoti Choudrie,Implementing E-government in Lagos State: Understanding the impact of cultural perceptions and working practices.,2017,34,Government Information Quarterly,4,db/journals/giq/giq34.html#ChoudrieZUE17,https://doi.org/10.1016/j.giq.2017.11.004 +Philip M. Napoli,On making public policy with publicly available data: The case of U.S. communications policymaking.,2010,27,Government Information Quarterly,4,db/journals/giq/giq27.html#NapoliK10,https://doi.org/10.1016/j.giq.2010.06.005 +Endrit Kromidha,Discursive Institutionalism for reconciling change and stability in digital innovation public sector projects for development.,2017,34,Government Information Quarterly,1,db/journals/giq/giq34.html#KromidhaC17,https://doi.org/10.1016/j.giq.2016.11.004 +Xenia Papadomichelaki,e-GovQual: A multiple-item scale for assessing e-government service quality.,2012,29,Government Information Quarterly,1,db/journals/giq/giq29.html#Papadomichelaki12,https://doi.org/10.1016/j.giq.2011.08.011 +George D. Barnum,Congress as publisher: Three perspectives.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#BarnumIRR12,https://doi.org/10.1016/j.giq.2011.12.003 +Annika Andersson,You can't make this a science! - Analyzing decision support systems in political contexts.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#AnderssonGA12,https://doi.org/10.1016/j.giq.2012.05.007 +John Carlo Bertot,Changes for 2006.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#Bertot06,https://doi.org/10.1016/j.giq.2006.04.003 +Ardion Beldad,A cue or two and I'll trust you: Determinants of trust in government organizations in terms of their processing and usage of citizens' personal information disclosed online.,2012,29,Government Information Quarterly,1,db/journals/giq/giq29.html#BeldadGJS12,https://doi.org/10.1016/j.giq.2011.05.003 +Marijana Petrovic,Benchmarking the digital divide using a multi-level outranking framework: Evidence from EBRD countries of operation.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#PetrovicBAP12,https://doi.org/10.1016/j.giq.2012.05.008 +Jean-Patrick Villeneuve,Transparency of Transparency: The pro-active disclosure of the rules governing Access to Information as a gauge of organisational cultural transformation. The case of the Swiss transparency regime.,2014,31,Government Information Quarterly,4,db/journals/giq/giq31.html#Villeneuve14,https://doi.org/10.1016/j.giq.2013.10.010 +Lee M. Zeichner,Developing an overarching legal framework for critical service delivery in America's cities: Three recommendations for enhancing security and reliability.,2001,18,Government Information Quarterly,4,db/journals/giq/giq18.html#Zeichner01,https://doi.org/10.1016/S0740-624X(01)00092-2 +Kristin R. Eschenfelder,Examining the role of Web site information in facilitating different citizen-government relationships: A case study of state Chronic Wasting Disease Web sites.,2007,24,Government Information Quarterly,1,db/journals/giq/giq24.html#EschenfelderM07,https://doi.org/10.1016/j.giq.2006.05.002 +Hongxia Wang,Urban information integration for advanced e-Planning in Europe.,2007,24,Government Information Quarterly,4,db/journals/giq/giq24.html#WangSHC07,https://doi.org/10.1016/j.giq.2007.04.002 +Jing Zhang,Transformational digital government.,2014,31,Government Information Quarterly,4,db/journals/giq/giq31.html#ZhangLM14,https://doi.org/10.1016/j.giq.2014.10.001 +Ada Scupola,Governance and innovation in public sector services: The case of the digital library.,2016,33,Government Information Quarterly,2,db/journals/giq/giq33.html#ScupolaZ16,https://doi.org/10.1016/j.giq.2016.04.005 +John N. Gathegi,Officially mandated disappearing information: The legal depublication phenomenon.,2005,22,Government Information Quarterly,3,db/journals/giq/giq22.html#Gathegi05a,https://doi.org/10.1016/j.giq.2005.06.002 +Charles Kaylor,Gauging e-government: A report on implementing services among American cities.,2001,18,Government Information Quarterly,4,db/journals/giq/giq18.html#KaylorDE01,https://doi.org/10.1016/S0740-624X(01)00089-2 +Harold C. Relyea,Across the Hill: The congressional research service and providing research for congress - A retrospective on origins.,2010,27,Government Information Quarterly,4,db/journals/giq/giq27.html#Relyea10,https://doi.org/10.1016/j.giq.2010.06.001 +Cancan Wang,Towards a typology of adaptive governance in the digital government context: The role of decision-making and accountability.,2018,35,Government Information Quarterly,2,db/journals/giq/giq35.html#WangMZ18,https://doi.org/10.1016/j.giq.2017.08.003 +Sarah Shik Lamdan,Why library cards offer more privacy rights than proof of citizenship: Librarian ethics and Freedom of Information Act requestor policies.,2013,30,Government Information Quarterly,2,db/journals/giq/giq30.html#Lamdan13,https://doi.org/10.1016/j.giq.2012.12.005 +Tomasz Janowski,Digital government evolution: From transformation to contextualization.,2015,32,Government Information Quarterly,3,db/journals/giq/giq32.html#Janowski15,https://doi.org/10.1016/j.giq.2015.07.001 +Victor Bekkers,Visual events and electronic government: What do pictures mean in digital government for citizen relations?,2011,28,Government Information Quarterly,4,db/journals/giq/giq28.html#BekkersM11,https://doi.org/10.1016/j.giq.2010.10.006 +John A. Shuler,"Response to ""Government information in the digital age: The once and future Federal Depository Library Program"".",2011,28,Government Information Quarterly,1,db/journals/giq/giq28.html#ShulerJB11,https://doi.org/10.1016/j.giq.2010.07.003 +C. Nadine Wathen,Can the government really help? Online information for women experiencing violence.,2010,27,Government Information Quarterly,2,db/journals/giq/giq27.html#WathenM10,https://doi.org/10.1016/j.giq.2009.12.004 +Claudene Sproles,United States Department of Transportation homepage.,2006,23,Government Information Quarterly,2,db/journals/giq/giq23.html#Sproles06a,https://doi.org/10.1016/j.giq.2005.11.009 +Harold C. Relyea,Homeland security and information.,2002,19,Government Information Quarterly,3,db/journals/giq/giq19.html#Relyea02a,https://doi.org/10.1016/S0740-624X(02)00102-8 +Charles D. Bernholz,"The Palmer and Stevens ""Usual and Accustomed Places"" treaties in the opinions of the courts.",2008,25,Government Information Quarterly,4,db/journals/giq/giq25.html#BernholzW08a,https://doi.org/10.1016/j.giq.2007.10.004 +Mortaza S. Bargh,On design and deployment of two privacy-preserving procedures for judicial-data dissemination.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#BarghCM16,https://doi.org/10.1016/j.giq.2016.06.002 +Yueping Zheng,The impact of government form on e-participation: A study of New Jersey municipalities.,2014,31,Government Information Quarterly,4,db/journals/giq/giq31.html#ZhengSH14,https://doi.org/10.1016/j.giq.2014.06.004 +Girish J. Gulati,Predictors of on-line services and e-participation: A cross-national comparison.,2014,31,Government Information Quarterly,4,db/journals/giq/giq31.html#GulatiWY14,https://doi.org/10.1016/j.giq.2014.07.005 +Catherine A. Hardy,E-government policy and practice: A theoretical and empirical exploration of public e-procurement.,2008,25,Government Information Quarterly,2,db/journals/giq/giq25.html#HardyW08,https://doi.org/10.1016/j.giq.2007.02.003 +Patrick Ngulube,Implications of technological advances for access to the cultural heritage of selected countries in sub-Saharan Africa.,2004,21,Government Information Quarterly,2,db/journals/giq/giq21.html#Ngulube04,https://doi.org/10.1016/j.giq.2004.01.003 +Phyllis Bernt,The telecommunications content of state public utility commission Web sites: Remaining relevant in a changing marketplace.,2007,24,Government Information Quarterly,3,db/journals/giq/giq24.html#BerntWT07,https://doi.org/10.1016/j.giq.2006.10.003 +Yu-Che Chen,Transforming local e-government services: the use of application service providers.,2001,18,Government Information Quarterly,4,db/journals/giq/giq18.html#ChenG01,https://doi.org/10.1016/S0740-624X(01)00090-9 +Harla J. Frank,About the Authors.,2006,23,Government Information Quarterly,2,db/journals/giq/giq23.html#Frank06a,https://doi.org/10.1016/j.giq.2006.07.001 +Shin-Yuan Hung,User acceptance of intergovernmental services: An example of electronic document management system.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#HungTCK09,https://doi.org/10.1016/j.giq.2008.07.003 +Victor Glass,Testing the validity of NECA's Middle Mile cost simulation model using survey data.,2003,20,Government Information Quarterly,2,db/journals/giq/giq20.html#GlassCP03,https://doi.org/10.1016/S0740-624X(03)00020-0 +Yvon van den Boer,In search of information: Investigating source and channel choices in business-to-government service interactions.,2016,33,Government Information Quarterly,1,db/journals/giq/giq33.html#BoerAP16,https://doi.org/10.1016/j.giq.2015.11.010 +Bram Klievink,The collaborative realization of public values and business goals: Governance and infrastructure of public-private information platforms.,2016,33,Government Information Quarterly,1,db/journals/giq/giq33.html#KlievinkBT16,https://doi.org/10.1016/j.giq.2015.12.002 +Yun-Seok Lee,The present status and analysis of Science and Technology Information (STI) service policy in Korea: Centered on Representative National STI Institute.,2009,26,Government Information Quarterly,3,db/journals/giq/giq26.html#LeeK09,https://doi.org/10.1016/j.giq.2008.11.010 +John Carlo Bertot,Building the scholarship of next generation information professional.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#BertotJS12,https://doi.org/10.1016/j.giq.2012.01.002 +Alexander van Loon,Adopting open source software in public administration: The importance of boundary spanners and political commitment.,2015,32,Government Information Quarterly,2,db/journals/giq/giq32.html#LoonT15,https://doi.org/10.1016/j.giq.2015.01.004 +L. Elaine Halchin,Electronic government: Government capability and terrorist resource.,2004,21,Government Information Quarterly,4,db/journals/giq/giq21.html#Halchin04,https://doi.org/10.1016/j.giq.2004.08.002 +Rodrigo Firmino,The spatial bonds of WikiLeaks.,2018,35,Government Information Quarterly,3,db/journals/giq/giq35.html#FirminoMK18,https://doi.org/10.1016/j.giq.2018.05.005 +Jeannine E. Relly,Examining a model of vertical accountability: A cross-national study of the influence of information access on the control of corruption.,2012,29,Government Information Quarterly,3,db/journals/giq/giq29.html#Relly12,https://doi.org/10.1016/j.giq.2012.02.011 +Zhen Li,Economic solutions to improve cybersecurity of governments and smart cities via vulnerability markets.,2018,35,Government Information Quarterly,1,db/journals/giq/giq35.html#LiL18,https://doi.org/10.1016/j.giq.2017.10.006 +Enrique Bonsón,Local e-government 2.0: Social media and corporate transparency in municipalities.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#BonsonTRF12,https://doi.org/10.1016/j.giq.2011.10.001 +Margaret Ann Wilkinson,The author as agent of information policy: The relationship between economic and moral rights in copyright.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#WilkinsonG09,https://doi.org/10.1016/j.giq.2008.12.002 +Bram Klievink,Realizing joined-up government - Dynamic capabilities and stage models for transformation.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#KlievinkJ09,https://doi.org/10.1016/j.giq.2008.12.007 +Richard M. Nunno,Electronic signatures: technology developments and legislative issues.,2000,17,Government Information Quarterly,4,db/journals/giq/giq17.html#Nunno00,https://doi.org/10.1016/S0740-624X(00)00049-6 +Eric W. Welch,Determinants of data sharing in U.S. city governments.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#WelchFP16,https://doi.org/10.1016/j.giq.2016.07.002 +Anne Marie Warren,Social media effects on fostering online civic engagement and building citizen trust and trust in institutions.,2014,31,Government Information Quarterly,2,db/journals/giq/giq31.html#WarrenSJ14,https://doi.org/10.1016/j.giq.2013.11.007 +Kenneth J. Knapp,Key issues in data center security: An investigation of government audit reports.,2011,28,Government Information Quarterly,4,db/journals/giq/giq28.html#KnappDB11,https://doi.org/10.1016/j.giq.2010.10.008 +Charles D. Bernholz,Loci sigilli and American Indian treaties: Reflections on the creation of volume 2 of Kappler's Indian Affairs: Laws and Treaties.,2009,26,Government Information Quarterly,4,db/journals/giq/giq26.html#BernholzH09,https://doi.org/10.1016/j.giq.2008.09.003 +øystein Sæbø,Understanding the dynamics in e-Participation initiatives: Looking through the genre and stakeholder lenses.,2011,28,Government Information Quarterly,3,db/journals/giq/giq28.html#SaeboFS11,https://doi.org/10.1016/j.giq.2010.10.005 +Ridley Kessler,Depository libraries and public services.,1998,15,Government Information Quarterly,1,db/journals/giq/giq15.html#Kessler98,https://doi.org/10.1016/S0740-624X(98)90019-3 +Daniel P. O'Mahony,The federal depository library program in transition: A perspective at the turn of a century.,1998,15,Government Information Quarterly,1,db/journals/giq/giq15.html#OMahony98,https://doi.org/10.1016/S0740-624X(98)90012-0 +Wade R. Rose,Critical issues pertaining to the planning and implementation of E-Government initiatives.,2010,27,Government Information Quarterly,1,db/journals/giq/giq27.html#RoseG10,https://doi.org/10.1016/j.giq.2009.06.002 +Omar E. M. Khalil,e-Government readiness: Does national culture matter?,2011,28,Government Information Quarterly,3,db/journals/giq/giq28.html#Khalil11,https://doi.org/10.1016/j.giq.2010.06.011 +Eduardo B. Fernández,A conceptual approach to secure electronic elections based on patterns.,2013,30,Government Information Quarterly,1,db/journals/giq/giq30.html#FernandezRP13,https://doi.org/10.1016/j.giq.2012.08.001 +Sergio Picazo-Vela,Opening the black box: Developing strategies to use social media in government.,2016,33,Government Information Quarterly,4,db/journals/giq/giq33.html#Picazo-VelaFL16,https://doi.org/10.1016/j.giq.2016.08.004 +Todd B. Tatelman,Congress's contempt power: Three mechanisms for enforcing subpoenas.,2008,25,Government Information Quarterly,4,db/journals/giq/giq25.html#Tatelman08,https://doi.org/10.1016/j.giq.2007.10.005 +Kanishka Karunasena,Critical factors for evaluating the public value of e-government in Sri Lanka.,2012,29,Government Information Quarterly,1,db/journals/giq/giq29.html#KarunasenaD12,https://doi.org/10.1016/j.giq.2011.04.005 +Juan L. Gandía,Digital transparency and Web 2.0 in Spanish city councils.,2016,33,Government Information Quarterly,1,db/journals/giq/giq33.html#GandiaMH16,https://doi.org/10.1016/j.giq.2015.12.004 +Rony Medaglia,Public deliberation on government-managed social media: A study on Weibo users in China.,2017,34,Government Information Quarterly,3,db/journals/giq/giq34.html#MedagliaZ17a,https://doi.org/10.1016/j.giq.2017.05.003 +Lourdes Tinajero,Census 2000 partnerships: working together for a better census count.,2000,17,Government Information Quarterly,2,db/journals/giq/giq17.html#Tinajero00,https://doi.org/10.1016/S0740-624X(00)00026-5 +John Carlo Bertot,New editorial board members.,2004,21,Government Information Quarterly,1,db/journals/giq/giq21.html#Bertot04,https://doi.org/10.1016/j.giq.2004.01.002 +Petya Chipeva,Digital divide at individual level: Evidence for Eastern and Western European countries.,2018,35,Government Information Quarterly,3,db/journals/giq/giq35.html#ChipevaCOI18,https://doi.org/10.1016/j.giq.2018.06.003 +Antonio Cordella,E-government and organizational change: Reappraising the role of ICT and bureaucracy in public service delivery.,2015,32,Government Information Quarterly,3,db/journals/giq/giq32.html#CordellaT15,https://doi.org/10.1016/j.giq.2015.03.005 +Dale Alexander Stirling,EPA glossaries: The struggle to define environmental terms.,2007,24,Government Information Quarterly,2,db/journals/giq/giq24.html#Stirling07,https://doi.org/10.1016/j.giq.2005.12.002 +Nigel Martin,Why Australia needs a SAGE: A security architecture for the Australian government environment.,2005,22,Government Information Quarterly,1,db/journals/giq/giq22.html#Martin05,https://doi.org/10.1016/j.giq.2004.10.007 +Paul T. Zeisset,Disseminating economic census data.,1998,15,Government Information Quarterly,3,db/journals/giq/giq15.html#Zeisset98,https://doi.org/10.1016/S0740-624X(98)90005-3 +Ted Priebe,The U.S. Government Printing Office's initiatives for the Federal Depository Library Program to set the stage for the 21st century.,2008,25,Government Information Quarterly,1,db/journals/giq/giq25.html#PriebeWM08,https://doi.org/10.1016/j.giq.2007.09.003 +Yi-Shun Wang,The adoption of electronic tax filing systems: an empirical study.,2003,20,Government Information Quarterly,4,db/journals/giq/giq20.html#Wang03,https://doi.org/10.1016/j.giq.2003.08.005 +Hyun Jeong Kim,Managing IT-enabled transformation in the public sector: A case study on e-government in South Korea.,2007,24,Government Information Quarterly,2,db/journals/giq/giq24.html#KimPP07,https://doi.org/10.1016/j.giq.2006.09.007 +Blessing Mukabeta Maumbe,Questioning the pace and pathway of e-government development in Africa: A case study of South Africa's Cape Gateway project.,2008,25,Government Information Quarterly,4,db/journals/giq/giq25.html#MaumbeOA08,https://doi.org/10.1016/j.giq.2007.08.007 +Leo G. Anthopoulos,Applying participatory design and collaboration in digital public services for discovering and re-designing e-Government services.,2007,24,Government Information Quarterly,2,db/journals/giq/giq24.html#AnthopoulosST07,https://doi.org/10.1016/j.giq.2006.07.018 +Kim Normann Andersen,Social media in public health care: Impact domain propositions.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#AndersenMH12,https://doi.org/10.1016/j.giq.2012.07.004 +Xian Gao,Integration and coordination: Advancing China's fragmented e-government to holistic governance.,2013,30,Government Information Quarterly,2,db/journals/giq/giq30.html#GaoSZ13,https://doi.org/10.1016/j.giq.2012.12.003 +Pin-Yu Chu,Exploring success factors for Taiwan's government electronic tendering system: behavioral perspectives from end users.,2004,21,Government Information Quarterly,2,db/journals/giq/giq21.html#ChuHLC04,https://doi.org/10.1016/j.giq.2004.01.005 +Duncan M. Aldrich,Changing partnerships? Government documents departments at the turn of the millennium.,2000,17,Government Information Quarterly,3,db/journals/giq/giq17.html#AldrichCB00,https://doi.org/10.1016/S0740-624X(00)00035-6 +Awalin Sopan,Community Health Map: A geospatial and multivariate data visualization tool for public health datasets.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#SopanNKRLS12,https://doi.org/10.1016/j.giq.2011.10.002 +Danielle Brian,WikiLeaks is a wake-up call for openness.,2011,28,Government Information Quarterly,2,db/journals/giq/giq28.html#BrianMW11,https://doi.org/10.1016/j.giq.2011.02.001 +Harold C. Relyea,Security classification reviews and the search for reform.,1999,16,Government Information Quarterly,1,db/journals/giq/giq16.html#Relyea99,https://doi.org/10.1016/S0740-624X(99)80013-6 +Shy-tzong Liou,Restructuring Taiwan's port state control inspection authority.,2011,28,Government Information Quarterly,1,db/journals/giq/giq28.html#LiouLCY11,https://doi.org/10.1016/j.giq.2010.05.005 +John T. Snead,E-government research in the United States.,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#SneadW14,https://doi.org/10.1016/j.giq.2013.07.005 +Carlo Batini,GovQual: A quality driven methodology for E-Government project planning.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#BatiniVC09,https://doi.org/10.1016/j.giq.2008.03.002 +Kristin R. Eschenfelder,Behind the Web site: An inside look at the production of Web-based textual government information.,2004,21,Government Information Quarterly,3,db/journals/giq/giq21.html#Eschenfelder04,https://doi.org/10.1016/j.giq.2004.04.004 +Nixon Muganda Ochara,Assessing irreversibility of an E-Government project in Kenya: Implication for governance.,2010,27,Government Information Quarterly,1,db/journals/giq/giq27.html#Ochara10,https://doi.org/10.1016/j.giq.2009.04.005 +Christopher G. Reddick,Citizen interaction with e-government: From the streets to servers?,2005,22,Government Information Quarterly,1,db/journals/giq/giq22.html#Reddick05,https://doi.org/10.1016/j.giq.2004.10.003 +Tülay Fenerci,Historical development of legal deposit system in Turkey.,2008,25,Government Information Quarterly,3,db/journals/giq/giq25.html#Fenerci08,https://doi.org/10.1016/j.giq.2007.10.001 +Tapio Vepsäläinen,Facebook likes and public opinion: Predicting the 2015 Finnish parliamentary elections.,2017,34,Government Information Quarterly,3,db/journals/giq/giq34.html#VepsalainenLS17,https://doi.org/10.1016/j.giq.2017.05.004 +Ardion D. Beldad,When the bureaucrat promises to safeguard your online privacy: Dissecting the contents of privacy statements on Dutch municipal websites.,2009,26,Government Information Quarterly,4,db/journals/giq/giq26.html#BeldadJS09,https://doi.org/10.1016/j.giq.2009.05.002 +Tommy Wright,Census 2000: who says counting is easy as 1-2-3?,2000,17,Government Information Quarterly,2,db/journals/giq/giq17.html#Wright00,https://doi.org/10.1016/S0740-624X(00)00021-6 +Stephen Woods,Evaluating population estimates in the United States: Counting the population between the censuses.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#Woods09,https://doi.org/10.1016/j.giq.2007.02.006 +Dong-Hee Shin,Convergence and divergence: Policy making about the convergence of technology in Korea.,2010,27,Government Information Quarterly,2,db/journals/giq/giq27.html#Shin10,https://doi.org/10.1016/j.giq.2009.11.001 +Takashi Koga,Access to government information in Japan: a long way toward electronic government?,2003,20,Government Information Quarterly,1,db/journals/giq/giq20.html#Koga03,https://doi.org/10.1016/S0740-624X(02)00134-X +Claudene Sproles,GovBenefits.gov.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#Sproles06,https://doi.org/10.1016/j.giq.2005.07.004 +Victor Glass,Technological breakthroughs lower the cost of broadband service to isolated customers.,2003,20,Government Information Quarterly,2,db/journals/giq/giq20.html#GlassTB03,https://doi.org/10.1016/S0740-624X(03)00032-7 +Robert Gellman,Perspectives on privacy and terrorism: all is not lost - yet.,2002,19,Government Information Quarterly,3,db/journals/giq/giq19.html#Gellman02,https://doi.org/10.1016/S0740-624X(02)00105-3 +Dong-Hee Shin,User centric cloud service model in public sectors: Policy implications of cloud services.,2013,30,Government Information Quarterly,2,db/journals/giq/giq30.html#Shin13,https://doi.org/10.1016/j.giq.2012.06.012 +Jane E. Kirtley,Is implementing the EU data protection directive in the United States irreconcilable with the first amendment?,1999,16,Government Information Quarterly,2,db/journals/giq/giq16.html#Kirtley99,https://doi.org/10.1016/S0740-624X(99)80001-X +John A. Shuler,Reviews.,2000,17,Government Information Quarterly,1,db/journals/giq/giq17.html#ShulerM00,https://doi.org/10.1016/S0740-624X(99)00025-8 +Harold C. Relyea,Across the Hill: The congressional research service and providing research for congress - A retrospective on personal experience.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#Relyea12,https://doi.org/10.1016/j.giq.2011.10.003 +Lourdes Torres,E-government developments on delivering public services among EU cities.,2005,22,Government Information Quarterly,2,db/journals/giq/giq22.html#TorresPA05,https://doi.org/10.1016/j.giq.2005.02.004 +Jane Fedorowicz,A decade of design in digital government research.,2010,27,Government Information Quarterly,1,db/journals/giq/giq27.html#FedorowiczD10,https://doi.org/10.1016/j.giq.2009.09.002 +Robin Gauld,Do they want it? Do they use it? The 'Demand-Side' of e-Government in Australia and New Zealand.,2010,27,Government Information Quarterly,2,db/journals/giq/giq27.html#GauldGH10,https://doi.org/10.1016/j.giq.2009.12.002 +Qiang Chen 0003,Social media policies as responses for social media affordances: The case of China.,2016,33,Government Information Quarterly,2,db/journals/giq/giq33.html#ChenXCZ16,https://doi.org/10.1016/j.giq.2016.04.008 +Sara Hofmann,What makes local governments' online communications successful? Insights from a multi-method analysis of Facebook.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#HofmannBRB13,https://doi.org/10.1016/j.giq.2013.05.013 +Marta Raus,Evaluating IT innovations in a business-to-government context: A framework and its applications.,2010,27,Government Information Quarterly,2,db/journals/giq/giq27.html#RausLK10,https://doi.org/10.1016/j.giq.2009.04.007 +Ralf Klischewski,When virtual reality meets realpolitik: Social media shaping the Arab government-citizen relationship.,2014,31,Government Information Quarterly,3,db/journals/giq/giq31.html#Klischewski14,https://doi.org/10.1016/j.giq.2013.10.015 +Chin Pang Cheng,Improving access to and understanding of regulations through taxonomies.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#ChengLLPJ09,https://doi.org/10.1016/j.giq.2008.12.008 +José Ramón Gil-García,Government inter-organizational information sharing initiatives: Understanding the main determinants of success.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#Gil-GarciaS16,https://doi.org/10.1016/j.giq.2016.01.006 +Charles R. McClure,The chief information officer (CIO): assessing its impact.,2000,17,Government Information Quarterly,1,db/journals/giq/giq17.html#McClureB00,https://doi.org/10.1016/S0740-624X(99)00021-0 +Yogesh Kumar Dwivedi,Guest editorial: From implementation to adoption: Challenges to successful E-Government diffusion.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#DwivediWW09,https://doi.org/10.1016/j.giq.2008.09.001 +Renate Scheidler,A Key-Exchange Protocol Using Real Quadratic Fields.,1994,7,J. Cryptology,3,db/journals/joc/joc7.html#ScheidlerBW94,https://doi.org/10.1007/BF02318548 +Tibor Jager,Authenticated Confidential Channel Establishment and the Security of TLS-DHE.,2017,30,J. Cryptology,4,db/journals/joc/joc30.html#JagerKSS17,https://doi.org/10.1007/s00145-016-9248-2 +Andrej Bogdanov,Input Locality and Hardness Amplification.,2013,26,J. Cryptology,1,db/journals/joc/joc26.html#BogdanovR13,https://doi.org/10.1007/s00145-011-9117-y +Jean-Sébastien Coron,Practical Cryptanalysis of ISO 9796-2 and EMV Signatures.,2016,29,J. Cryptology,3,db/journals/joc/joc29.html#CoronNTW16,https://doi.org/10.1007/s00145-015-9205-5 +Johan Håstad,Practical Construction and Analysis of Pseudo-Randomness Primitives.,2008,21,J. Cryptology,1,db/journals/joc/joc21.html#HastadN08,https://doi.org/10.1007/s00145-007-9009-3 +Amos Beimel,How Should We Solve Search Problems Privately?,2010,23,J. Cryptology,2,db/journals/joc/joc23.html#BeimelMNW10,https://doi.org/10.1007/s00145-008-9032-z +Antoine Joux,Lattice Reduction: A Toolbox for the Cryptanalyst.,1998,11,J. Cryptology,3,db/journals/joc/joc11.html#JouxS98,https://doi.org/10.1007/s001459900042 +Bin Zhang 0003,Practical Cryptanalysis of Bluetooth Encryption with Condition Masking.,2018,31,J. Cryptology,2,db/journals/joc/joc31.html#ZhangXF18,https://doi.org/10.1007/s00145-017-9260-1 +A. W. Schrift,Universal Tests for Nonuniform Distributions.,1993,6,J. Cryptology,3,db/journals/joc/joc6.html#SchriftS93,https://doi.org/10.1007/BF00198461 +Claus Diem,Index Calculus in Class Groups of Non-hyperelliptic Curves of Genus Three.,2008,21,J. Cryptology,4,db/journals/joc/joc21.html#DiemT08,https://doi.org/10.1007/s00145-007-9014-6 +Eu-Jin Goh,Efficient Signature Schemes with Tight Reductions to the Diffie-Hellman Problems.,2007,20,J. Cryptology,4,db/journals/joc/joc20.html#GohJKW07,https://doi.org/10.1007/s00145-007-0549-3 +Neal Koblitz,Elliptic Curve Implementations of Zero-Knowledge Blobs.,1991,4,J. Cryptology,3,db/journals/joc/joc4.html#Koblitz91,https://doi.org/10.1007/BF00196728 +Gilad Asharov,Utility Dependence in Correct and Fair Rational Secret Sharing.,2011,24,J. Cryptology,1,db/journals/joc/joc24.html#AsharovL11,https://doi.org/10.1007/s00145-010-9064-z +Marco Baldi,Enhanced Public Key Security for the McEliece Cryptosystem.,2016,29,J. Cryptology,1,db/journals/joc/joc29.html#Baldi0CRS16,https://doi.org/10.1007/s00145-014-9187-8 +Thomas Jakobsen,Attacks on Block Ciphers of Low Algebraic Degree.,2001,14,J. Cryptology,3,db/journals/joc/joc14.html#JakobsenK01,https://doi.org/10.1007/s00145-001-0003-x +Mihir Bellare,A Note on Negligible Functions.,2002,15,J. Cryptology,4,db/journals/joc/joc15.html#Bellare02,https://doi.org/10.1007/s00145-002-0116-x +Serge Vaudenay,Decorrelation: A Theory for Block Cipher Security.,2003,16,J. Cryptology,4,db/journals/joc/joc16.html#Vaudenay03,https://doi.org/10.1007/s00145-003-0220-6 +Scott A. Vanstone,Short RSA Keys and Their Generation.,1995,8,J. Cryptology,2,db/journals/joc/joc8.html#VanstoneZ95,https://doi.org/10.1007/BF00190758 +Kamel Bentahar,Generic Constructions of Identity-Based and Certificateless KEMs.,2008,21,J. Cryptology,2,db/journals/joc/joc21.html#BentaharFMS08,https://doi.org/10.1007/s00145-007-9000-z +Oded Goldreich 0001,Enhancements of Trapdoor Permutations.,2013,26,J. Cryptology,3,db/journals/joc/joc26.html#GoldreichR13,https://doi.org/10.1007/s00145-012-9131-8 +Francesco Matucci,Cryptanalysis of the Shpilrain-Ushakov Protocol for Thompson's Group.,2008,21,J. Cryptology,3,db/journals/joc/joc21.html#Matucci08,https://doi.org/10.1007/s00145-007-9016-4 +Dmitry Khovratovich,Rotational Rebound Attacks on Reduced Skein.,2014,27,J. Cryptology,3,db/journals/joc/joc27.html#KhovratovichNR14,https://doi.org/10.1007/s00145-013-9150-0 +Minghua Qu,Factorizations in the Elementary Abelian p-Group and Their Cryptographic Significance.,1994,7,J. Cryptology,4,db/journals/joc/joc7.html#QuV94,https://doi.org/10.1007/BF00203963 +Gilles Brassard,Oblivious Transfers and Privacy Amplification.,2003,16,J. Cryptology,4,db/journals/joc/joc16.html#BrassardCW03,https://doi.org/10.1007/s00145-002-0146-4 +Benny Applebaum,"Garbling XOR Gates ""For Free"" in the Standard Model.",2016,29,J. Cryptology,3,db/journals/joc/joc29.html#Applebaum16,https://doi.org/10.1007/s00145-015-9201-9 +Yonatan Aumann,Security Against Covert Adversaries: Efficient Protocols for Realistic Adversaries.,2010,23,J. Cryptology,2,db/journals/joc/joc23.html#AumannL10,https://doi.org/10.1007/s00145-009-9040-7 +Markus Bläser,Private Computation: k-Connected versus 1-Connected Networks.,2006,19,J. Cryptology,3,db/journals/joc/joc19.html#BlaserJLM06,https://doi.org/10.1007/s00145-005-0329-x +Mihir Bellare,Security Proofs for Identity-Based Identification and Signature Schemes.,2009,22,J. Cryptology,1,db/journals/joc/joc22.html#BellareNN09,https://doi.org/10.1007/s00145-008-9028-8 +Jeffrey Considine,Byzantine Agreement Given Partial Broadcast.,2005,18,J. Cryptology,3,db/journals/joc/joc18.html#ConsidineFFLMM05,https://doi.org/10.1007/s00145-005-0308-x +Oded Goldreich 0001,On the Security of Modular Exponentiation with Application to the Construction of Pseudorandom Generators.,2003,16,J. Cryptology,2,db/journals/joc/joc16.html#GoldreichR03,https://doi.org/10.1007/s00145-002-0038-7 +Thomas Scanlon,Public Key Cryptosystems Based on Drinfeld Modules Are Insecure.,2001,14,J. Cryptology,4,db/journals/joc/joc14.html#Scanlon01,https://doi.org/10.1007/s00145-001-0004-9 +Chris J. Mitchell,Enumerating Boolean Functions of Cryptographic Significance.,1990,2,J. Cryptology,3,db/journals/joc/joc2.html#Mitchell90,https://doi.org/10.1007/BF00190802 +Moses Liskov,Tweakable Block Ciphers.,2011,24,J. Cryptology,3,db/journals/joc/joc24.html#LiskovRW11,https://doi.org/10.1007/s00145-010-9073-y +Yvo Desmedt,Graph Coloring Applied to Secure Computation in Non-Abelian Groups.,2012,25,J. Cryptology,4,db/journals/joc/joc25.html#DesmedtPSSTWY12,https://doi.org/10.1007/s00145-011-9104-3 +Sachar Paulus,A New Public-Key Cryptosystem over a Quadratic Order with Quadratic Decryption Time.,2000,13,J. Cryptology,2,db/journals/joc/joc13.html#PaulusT00,https://doi.org/10.1007/s001459910010 +Ronald Cramer,On the Amortized Complexity of Zero-Knowledge Protocols.,2014,27,J. Cryptology,2,db/journals/joc/joc27.html#CramerDK14,https://doi.org/10.1007/s00145-013-9145-x +Joan Boyar,Short Non-Interactive Cryptographic Proofs.,2000,13,J. Cryptology,4,db/journals/joc/joc13.html#BoyarDP00,https://doi.org/10.1007/s001450010011 +Ran Canetti,Security and Composition of Multiparty Cryptographic Protocols.,2000,13,J. Cryptology,1,db/journals/joc/joc13.html#Canetti00,https://doi.org/10.1007/s001459910006 +Juan A. Garay,Resource Fairness and Composability of Cryptographic Protocols.,2011,24,J. Cryptology,4,db/journals/joc/joc24.html#GarayMPY11,https://doi.org/10.1007/s00145-010-9080-z +Marc Fischlin,Efficient Non-Malleable Commitment Schemes.,2011,24,J. Cryptology,1,db/journals/joc/joc24.html#FischlinF11,https://doi.org/10.1007/s00145-009-9043-4 +Gustavus J. Simmons,Proof of Soundness (Integrity) of Cryptographic Protocols.,1994,7,J. Cryptology,2,db/journals/joc/joc7.html#Simmons94,https://doi.org/10.1007/BF00197941 +Ueli M. Maurer,Cascade Ciphers: The Importance of Being First.,1993,6,J. Cryptology,1,db/journals/joc/joc6.html#MaurerM93,https://doi.org/10.1007/BF02620231 +Johan Håstad,The Security of the IAPM and IACBC Modes.,2007,20,J. Cryptology,2,db/journals/joc/joc20.html#Hastad07,https://doi.org/10.1007/s00145-006-0225-z +Jin Hong 0001,A Comparison of Cryptanalytic Tradeoff Algorithms.,2013,26,J. Cryptology,4,db/journals/joc/joc26.html#HongM13,https://doi.org/10.1007/s00145-012-9128-3 +Rafail Ostrovsky,Private Searching on Streaming Data.,2007,20,J. Cryptology,4,db/journals/joc/joc20.html#OstrovskyS07,https://doi.org/10.1007/s00145-007-0565-3 +Martin Hirt,Player Simulation and General Adversary Structures in Perfect Multiparty Computation.,2000,13,J. Cryptology,1,db/journals/joc/joc13.html#HirtM00,https://doi.org/10.1007/s001459910003 +Russell Impagliazzo,Efficient Cryptographic Schemes Provably as Secure as Subset Sum.,1996,9,J. Cryptology,4,db/journals/joc/joc9.html#ImpagliazzoN96,https://doi.org/10.1007/BF00189260 +Jonathan Katz,Scalable Protocols for Authenticated Group Key Exchange.,2007,20,J. Cryptology,1,db/journals/joc/joc20.html#KatzY07,https://doi.org/10.1007/s00145-006-0361-5 +Tamir Tassa,Low Bandwidth Dynamic Traitor Tracing Schemes.,2005,18,J. Cryptology,2,db/journals/joc/joc18.html#Tassa05,https://doi.org/10.1007/s00145-004-0214-z +Benny Applebaum,A Dichotomy for Local Small-Bias Generators.,2016,29,J. Cryptology,3,db/journals/joc/joc29.html#ApplebaumBR16,https://doi.org/10.1007/s00145-015-9202-8 +Pierrick Gaudry,Constructive and Destructive Facets of Weil Descent on Elliptic Curves.,2002,15,J. Cryptology,1,db/journals/joc/joc15.html#GaudryHS02,https://doi.org/10.1007/s00145-001-0011-x +Joachim von zur Gathen,Polynomial and Normal Bases for Finite Fields.,2005,18,J. Cryptology,4,db/journals/joc/joc18.html#GathenN05,https://doi.org/10.1007/s00145-004-0221-0 +Paul Morrissey,The TLS Handshake Protocol: A Modular Analysis.,2010,23,J. Cryptology,2,db/journals/joc/joc23.html#MorrisseySW10,https://doi.org/10.1007/s00145-009-9052-3 +Manuel Barbosa,Constructive and Destructive Use of Compilers in Elliptic Curve Cryptography.,2009,22,J. Cryptology,2,db/journals/joc/joc22.html#BarbosaMP09,https://doi.org/10.1007/s00145-008-9023-0 +Dennis Hofheinz,Programmable Hash Functions and Their Applications.,2012,25,J. Cryptology,3,db/journals/joc/joc25.html#HofheinzK12,https://doi.org/10.1007/s00145-011-9102-5 +Hovav Shacham,Compact Proofs of Retrievability.,2013,26,J. Cryptology,3,db/journals/joc/joc26.html#ShachamW13,https://doi.org/10.1007/s00145-012-9129-2 +Victor Shoup,OAEP Reconsidered.,2002,15,J. Cryptology,4,db/journals/joc/joc15.html#Shoup02,https://doi.org/10.1007/s00145-002-0133-9 +Ueli M. Maurer,A Universal Statistical Test for Random Bit Generators.,1992,5,J. Cryptology,2,db/journals/joc/joc5.html#Maurer92a,https://doi.org/10.1007/BF00193563 +David Mandell Freeman,More Constructions of Lossy and Correlation-Secure Trapdoor Functions.,2013,26,J. Cryptology,1,db/journals/joc/joc26.html#FreemanGKRS13,https://doi.org/10.1007/s00145-011-9112-3 +Masayuki Abe,Constant-Size Structure-Preserving Signatures: Generic Constructions and Simple Assumptions.,2016,29,J. Cryptology,4,db/journals/joc/joc29.html#AbeCDKNO16,https://doi.org/10.1007/s00145-015-9211-7 +Mahdi Cheraghchi,Non-malleable Coding Against Bit-Wise and Split-State Tampering.,2017,30,J. Cryptology,1,db/journals/joc/joc30.html#CheraghchiG17,https://doi.org/10.1007/s00145-015-9219-z +Gilad Asharov,Toward a Game Theoretic View of Secure Computation.,2016,29,J. Cryptology,4,db/journals/joc/joc29.html#AsharovCH16,https://doi.org/10.1007/s00145-015-9212-6 +Iftach Haitner,Limits on the Usefulness of Random Oracles.,2016,29,J. Cryptology,2,db/journals/joc/joc29.html#HaitnerOZ16,https://doi.org/10.1007/s00145-014-9194-9 +Praveen Gauravaram,Security Analysis of Randomize-Hash-then-Sign Digital Signatures.,2012,25,J. Cryptology,4,db/journals/joc/joc25.html#GauravaramK12,https://doi.org/10.1007/s00145-011-9109-y +Wen-Ai Jackson,Ideal Secret Sharing Schemes with Multiple Secrets.,1996,9,J. Cryptology,4,db/journals/joc/joc9.html#JacksonMO96,https://doi.org/10.1007/BF00189262 +Régis Dupont,Building Curves with Arbitrary Small MOV Degree over Finite Prime Fields.,2005,18,J. Cryptology,2,db/journals/joc/joc18.html#DupontEM05,https://doi.org/10.1007/s00145-004-0219-7 +Siguna Müller,A Probable Prime Test with Very High Confidence for n L 3 mod 4.,2003,16,J. Cryptology,2,db/journals/joc/joc16.html#Muller03,https://doi.org/10.1007/s00145-002-0107-y +Salil P. Vadhan,Constructing Locally Computable Extractors and Cryptosystems in the Bounded-Storage Model.,2004,17,J. Cryptology,1,db/journals/joc/joc17.html#Vadhan04,https://doi.org/10.1007/s00145-003-0237-x +Eiichiro Fujisaki,RSA-OAEP Is Secure under the RSA Assumption.,2004,17,J. Cryptology,2,db/journals/joc/joc17.html#FujisakiOPS04,https://doi.org/10.1007/s00145-002-0204-y +R. Balasubramanian,The Improbability That an Elliptic Curve Has Subexponential Discrete Log Problem under the Menezes - Okamoto - Vanstone Algorithm.,1998,11,J. Cryptology,2,db/journals/joc/joc11.html#BalasubramanianK98,https://doi.org/10.1007/s001459900040 +Jung Hee Cheon,Accelerating Pollard's Rho Algorithm on Finite Fields.,2012,25,J. Cryptology,2,db/journals/joc/joc25.html#CheonHK12,https://doi.org/10.1007/s00145-010-9093-7 +Lars R. Knudsen,Partial Key Recovery Attack Against RMAC.,2005,18,J. Cryptology,4,db/journals/joc/joc18.html#KnudsenM05,https://doi.org/10.1007/s00145-004-0324-7 +Yehuda Lindell,Fast Cut-and-Choose-Based Protocols for Malicious and Covert Adversaries.,2016,29,J. Cryptology,2,db/journals/joc/joc29.html#Lindell16,https://doi.org/10.1007/s00145-015-9198-0 +Yacov Yacobi,Batch Diffie-Hellman Key Agreement Systems.,1997,10,J. Cryptology,2,db/journals/joc/joc10.html#YacobiB97,https://doi.org/10.1007/s001459900022 +Dennis Hofheinz,GNUC: A New Universal Composability Framework.,2015,28,J. Cryptology,3,db/journals/joc/joc28.html#HofheinzS15,https://doi.org/10.1007/s00145-013-9160-y +S. Lloyd,Counting Binary Functions with Certain Cryptographic Properties.,1992,5,J. Cryptology,2,db/journals/joc/joc5.html#Lloyd92,https://doi.org/10.1007/BF00193564 +Phillip Rogaway,A Software-Optimized Encryption Algorithm.,1998,11,J. Cryptology,4,db/journals/joc/joc11.html#RogawayC98,https://doi.org/10.1007/s001459900048 +Giovanni Di Crescenzo,Universal Service-Providers for Private Information Retrieval.,2001,14,J. Cryptology,1,db/journals/joc/joc14.html#CrescenzoIO01,https://doi.org/10.1007/s001450010008 +Alexandra Boldyreva,Secure Proxy Signature Schemes for Delegation of Signing Rights.,2012,25,J. Cryptology,1,db/journals/joc/joc25.html#BoldyrevaPW12,https://doi.org/10.1007/s00145-010-9082-x +Rosario Gennaro,Robust and Efficient Sharing of RSA Functions.,2000,13,J. Cryptology,2,db/journals/joc/joc13.html#GennaroRJK00,https://doi.org/10.1007/s001459910011 +Antoine Joux,A One Round Protocol for Tripartite Diffie-Hellman.,2004,17,J. Cryptology,4,db/journals/joc/joc17.html#Joux04,https://doi.org/10.1007/s00145-004-0312-y +Hadi Soleimany,Reflection Cryptanalysis of PRINCE-Like Ciphers.,2015,28,J. Cryptology,3,db/journals/joc/joc28.html#SoleimanyBYWNZZ15,https://doi.org/10.1007/s00145-013-9175-4 +Kaisa Nyberg,Provable Security Against a Differential Attack.,1995,8,J. Cryptology,1,db/journals/joc/joc8.html#NybergK95,https://doi.org/10.1007/BF00204800 +Don Coppersmith,Modifications to the Number Field Sieve.,1993,6,J. Cryptology,3,db/journals/joc/joc6.html#Coppersmith93,https://doi.org/10.1007/BF00198464 +Richard A. Kemmerer,Three System for Cryptographic Protocol Analysis.,1994,7,J. Cryptology,2,db/journals/joc/joc7.html#KemmererMM94,https://doi.org/10.1007/BF00197942 +Kevin S. McCurley,A Key Distribution System Equivalent to Factoring.,1988,1,J. Cryptology,2,db/journals/joc/joc1.html#McCurley88,https://doi.org/10.1007/BF02351718 +Ueli M. Maurer,Fast Generation of Prime Numbers and Secure Public-Key Cryptographic Parameters.,1995,8,J. Cryptology,3,db/journals/joc/joc8.html#Maurer95,https://doi.org/10.1007/BF00202269 +Nicolas Bruneau,Multivariate High-Order Attacks of Shuffled Tables Recomputation.,2018,31,J. Cryptology,2,db/journals/joc/joc31.html#BruneauGNT18,https://doi.org/10.1007/s00145-017-9259-7 +Mario Di Raimondo,New Approaches for Deniable Authentication.,2009,22,J. Cryptology,4,db/journals/joc/joc22.html#RaimondoG09,https://doi.org/10.1007/s00145-009-9044-3 +Jae Hong Seo,Short Signatures from Diffie-Hellman: Realizing Almost Compact Public Key.,2017,30,J. Cryptology,3,db/journals/joc/joc30.html#Seo17,https://doi.org/10.1007/s00145-016-9234-8 +Benjamin Fuller,A Unified Approach to Deterministic Encryption: New Constructions and a Connection to Computational Entropy.,2015,28,J. Cryptology,3,db/journals/joc/joc28.html#FullerOR15,https://doi.org/10.1007/s00145-013-9174-5 +Jens Groth,A Verifiable Secret Shuffle of Homomorphic Encryptions.,2010,23,J. Cryptology,4,db/journals/joc/joc23.html#Groth10,https://doi.org/10.1007/s00145-010-9067-9 +Yan-Cheng Chang,The Impossibility of Basing One-Way Permutations on Central Cryptographic Primitives.,2006,19,J. Cryptology,1,db/journals/joc/joc19.html#ChangHL06,https://doi.org/10.1007/s00145-005-0317-1 +Phong Q. Nguyen,Learning a Parallelepiped: Cryptanalysis of GGH and NTRU Signatures.,2009,22,J. Cryptology,2,db/journals/joc/joc22.html#NguyenR09,https://doi.org/10.1007/s00145-008-9031-0 +Amos Fiat,Batch RSA.,1997,10,J. Cryptology,2,db/journals/joc/joc10.html#Fiat97,https://doi.org/10.1007/s001459900021 +Martin Tompa,How to Share a Secret with Cheaters.,1988,1,J. Cryptology,2,db/journals/joc/joc1.html#TompaW88,https://doi.org/10.1007/BF02252871 +Muxiang Zhang,Maximum Correlation Analysis of Nonlinear Combining Functions in Stream Ciphers.,2000,13,J. Cryptology,3,db/journals/joc/joc13.html#Zhang00,https://doi.org/10.1007/s001450010007 +Agustin Dominguez-Oviedo,Fault-Based Attack on Montgomery's Ladder Algorithm.,2011,24,J. Cryptology,2,db/journals/joc/joc24.html#Dominguez-OviedoHA11,https://doi.org/10.1007/s00145-010-9087-5 +Amos Beimel,Protocols for Multiparty Coin Toss with a Dishonest Majority.,2015,28,J. Cryptology,3,db/journals/joc/joc28.html#BeimelOO15,https://doi.org/10.1007/s00145-013-9168-3 +Yvo Desmedt,A New and Improved Paradigm for Hybrid Encryption Secure Against Chosen-Ciphertext Attack.,2010,23,J. Cryptology,1,db/journals/joc/joc23.html#DesmedtGKS10,https://doi.org/10.1007/s00145-009-9051-4 +Mohammad Hajiabadi,Reproducible Circularly Secure Bit Encryption: Applications and Realizations.,2017,30,J. Cryptology,4,db/journals/joc/joc30.html#HajiabadiK17,https://doi.org/10.1007/s00145-016-9246-4 +Minh-Huyen Nguyen,Simpler Session-Key Generation from Short Random Passwords.,2008,21,J. Cryptology,1,db/journals/joc/joc21.html#NguyenV08,https://doi.org/10.1007/s00145-007-9008-4 +Itay Berman,From Non-adaptive to Adaptive Pseudorandom Functions.,2015,28,J. Cryptology,2,db/journals/joc/joc28.html#BermanH15,https://doi.org/10.1007/s00145-013-9169-2 +Mihir Bellare,Subtleties in the Definition of IND-CCA: When and How Should Challenge Decryption Be Disallowed?,2015,28,J. Cryptology,1,db/journals/joc/joc28.html#BellareHK15,https://doi.org/10.1007/s00145-013-9167-4 +Dan Boneh,On the Importance of Eliminating Errors in Cryptographic Computations.,2001,14,J. Cryptology,2,db/journals/joc/joc14.html#BonehDL01,https://doi.org/10.1007/s001450010016 +Jonathan Katz,Round-Optimal Password-Based Authenticated Key Exchange.,2013,26,J. Cryptology,4,db/journals/joc/joc26.html#KatzV13,https://doi.org/10.1007/s00145-012-9133-6 +Renate Scheidler,A Public-Key Cryptosystem Using Purely Cubic Fields.,1998,11,J. Cryptology,2,db/journals/joc/joc11.html#Scheidler98,https://doi.org/10.1007/s001459900038 +Amos Beimel,Secret-Sharing Schemes for Very Dense Graphs.,2016,29,J. Cryptology,2,db/journals/joc/joc29.html#BeimelFM16,https://doi.org/10.1007/s00145-014-9195-8 +Yehuda Lindell,On the Feasibility of Extending Oblivious Transfer.,2018,31,J. Cryptology,3,db/journals/joc/joc31.html#LindellZ18,https://doi.org/10.1007/s00145-017-9269-5 +Kathleen A. S. Quinn,Bounds for Key Distribution Patterns.,1999,12,J. Cryptology,4,db/journals/joc/joc12.html#Quinn99,https://doi.org/10.1007/s001459900054 +Masayuki Abe,Structure-Preserving Signatures and Commitments to Group Elements.,2016,29,J. Cryptology,2,db/journals/joc/joc29.html#AbeFGHO16,https://doi.org/10.1007/s00145-014-9196-7 +Claus-Peter Schnorr,The Black-Box Model for Cryptographic Primitives.,1998,11,J. Cryptology,2,db/journals/joc/joc11.html#SchnorrV98,https://doi.org/10.1007/s001459900039 +Joppe W. Bos,Fast Cryptography in Genus 2.,2016,29,J. Cryptology,1,db/journals/joc/joc29.html#BosCHL16,https://doi.org/10.1007/s00145-014-9188-7 +Mikael Goldmann,Complexity Bounds on General Hard-Core Predicates.,2001,14,J. Cryptology,3,db/journals/joc/joc14.html#GoldmannNR01,https://doi.org/10.1007/s00145-001-0007-6 +Jean-Philippe Aumasson,Quark: A Lightweight Hash.,2013,26,J. Cryptology,2,db/journals/joc/joc26.html#AumassonHMN13,https://doi.org/10.1007/s00145-012-9125-6 +Eiichiro Fujisaki,All-But-Many Encryption.,2018,31,J. Cryptology,1,db/journals/joc/joc31.html#Fujisaki18,https://doi.org/10.1007/s00145-017-9256-x +Christian Cachin,Random Oracles in Constantinople: Practical Asynchronous Byzantine Agreement Using Cryptography.,2005,18,J. Cryptology,3,db/journals/joc/joc18.html#CachinKS05,https://doi.org/10.1007/s00145-005-0318-0 +Yongge Wang,Secure Communication in Multicast Channels: The Answer to Franklin and Wright's Question.,2001,14,J. Cryptology,2,db/journals/joc/joc14.html#WangD01,https://doi.org/10.1007/s00145-001-0002-y +Denis Xavier Charles,Cryptographic Hash Functions from Expander Graphs.,2009,22,J. Cryptology,1,db/journals/joc/joc22.html#CharlesLG09,https://doi.org/10.1007/s00145-007-9002-x +Orr Dunkelman,A Practical-Time Related-Key Attack on the KASUMI Cryptosystem Used in GSM and 3G Telephony.,2014,27,J. Cryptology,4,db/journals/joc/joc27.html#DunkelmanKS14,https://doi.org/10.1007/s00145-013-9154-9 +Eli Biham,Differential Cryptanalysis of DES-like Cryptosystems.,1991,4,J. Cryptology,1,db/journals/joc/joc4.html#BihamS91,https://doi.org/10.1007/BF00630563 +Silvio Micali,Improving the Exact Security of Digital Signature Schemes.,2002,15,J. Cryptology,1,db/journals/joc/joc15.html#MicaliR02,https://doi.org/10.1007/s00145-001-0005-8 +Jin Hong 0001,Erratum to: A Comparison of Cryptanalytic Tradeoff Algorithms.,2014,27,J. Cryptology,1,db/journals/joc/joc27.html#0001M14,https://doi.org/10.1007/s00145-012-9140-7 +Eike Kiltz,Instantiability of RSA-OAEP Under Chosen-Plaintext Attack.,2017,30,J. Cryptology,3,db/journals/joc/joc30.html#KiltzOS17,https://doi.org/10.1007/s00145-016-9238-4 +Michael Luby,A Study of Password Security.,1989,1,J. Cryptology,3,db/journals/joc/joc1.html#LubyR89,https://doi.org/10.1007/BF02252873 +Lars R. Knudsen,Cryptanalysis of MD2.,2010,23,J. Cryptology,1,db/journals/joc/joc23.html#KnudsenMMT10,https://doi.org/10.1007/s00145-009-9054-1 +Marten van Dijk,"FlipIt: The Game of ""Stealthy Takeover"".",2013,26,J. Cryptology,4,db/journals/joc/joc26.html#DijkJOR13,https://doi.org/10.1007/s00145-012-9134-5 +Volker Müller 0001,Fast Multiplication on Elliptic Curves over Small Fields of Characteristic Two.,1998,11,J. Cryptology,4,db/journals/joc/joc11.html#Muller98,https://doi.org/10.1007/s001459900045 +Martin Hell,Breaking the Stream Ciphers F-FCSR-H and F-FCSR-16 in Real Time.,2011,24,J. Cryptology,3,db/journals/joc/joc24.html#HellJ11,https://doi.org/10.1007/s00145-009-9053-2 +Elad Barkan,Instant Ciphertext-Only Cryptanalysis of GSM Encrypted Communication.,2008,21,J. Cryptology,3,db/journals/joc/joc21.html#BarkanBK08,https://doi.org/10.1007/s00145-007-9001-y +Ivan Damgård,Bounded Tamper Resilience: How to Go Beyond the Algebraic Barrier.,2017,30,J. Cryptology,1,db/journals/joc/joc30.html#DamgardFMV17,https://doi.org/10.1007/s00145-015-9218-0 +Michael J. Wiener,The Full Cost of Cryptanalytic Attacks.,2004,17,J. Cryptology,2,db/journals/joc/joc17.html#Wiener04,https://doi.org/10.1007/s00145-003-0213-5 +Roberto Maria Avanzi,The Complexity of Certain Multi-Exponentiation Techniques in Cryptography.,2005,18,J. Cryptology,4,db/journals/joc/joc18.html#Avanzi05,https://doi.org/10.1007/s00145-004-0229-5 +Dan Boneh,Short Signatures Without Random Oracles and the SDH Assumption in Bilinear Groups.,2008,21,J. Cryptology,2,db/journals/joc/joc21.html#BonehB08,https://doi.org/10.1007/s00145-007-9005-7 +Tal Moran,An Optimally Fair Coin Toss.,2016,29,J. Cryptology,3,db/journals/joc/joc29.html#MoranNS16,https://doi.org/10.1007/s00145-015-9199-z +Susan Hohenberger,Securely Obfuscating Re-Encryption.,2011,24,J. Cryptology,4,db/journals/joc/joc24.html#HohenbergerRSV11,https://doi.org/10.1007/s00145-010-9077-7 +Jens Groth,Cryptography in the Multi-string Model.,2014,27,J. Cryptology,3,db/journals/joc/joc27.html#GrothO14,https://doi.org/10.1007/s00145-013-9152-y +Shimon Even,On-Line/Off-Line Digital Signatures.,1996,9,J. Cryptology,1,db/journals/joc/joc9.html#EvenGM96,https://doi.org/10.1007/BF02254791 +Stefan Dziembowski,Optimal Randomizer Efficiency in the Bounded-Storage Model.,2004,17,J. Cryptology,1,db/journals/joc/joc17.html#DziembowskiM04,https://doi.org/10.1007/s00145-003-0309-y +Nenad Dedic,Upper and Lower Bounds on Black-Box Steganography.,2009,22,J. Cryptology,3,db/journals/joc/joc22.html#DedicIRR09,https://doi.org/10.1007/s00145-008-9020-3 +John H. Loxton,A Cubic RSA Code Equivalent to Factorization.,1992,5,J. Cryptology,2,db/journals/joc/joc5.html#LoxtonKBS92,https://doi.org/10.1007/BF00193566 +Marc Girault,On the Fly Authentication and Signature Schemes Based on Groups of Unknown Order.,2006,19,J. Cryptology,4,db/journals/joc/joc19.html#GiraultPS06,https://doi.org/10.1007/s00145-006-0224-0 +Christian Cachin,Linking Information Reconciliation and Privacy Amplification.,1997,10,J. Cryptology,2,db/journals/joc/joc10.html#CachinM97,https://doi.org/10.1007/s001459900023 +Vadim Lyubashevsky,Asymptotically Efficient Lattice-Based Digital Signatures.,2018,31,J. Cryptology,3,db/journals/joc/joc31.html#LyubashevskyM18,https://doi.org/10.1007/s00145-017-9270-z +Rosario Gennaro,Robust and Efficient Sharing of RSA Functions.,2007,20,J. Cryptology,3,db/journals/joc/joc20.html#GennaroRJK07,https://doi.org/10.1007/s00145-007-0201-2 +Daniel Genkin,Acoustic Cryptanalysis.,2017,30,J. Cryptology,2,db/journals/joc/joc30.html#GenkinST17,https://doi.org/10.1007/s00145-015-9224-2 +Elisavet Konstantinou,On the Efficient Generation of Prime-Order Elliptic Curves.,2010,23,J. Cryptology,3,db/journals/joc/joc23.html#KonstantinouKSZ10,https://doi.org/10.1007/s00145-009-9037-2 +Carlisle M. Adams,The Structured Design of Cryptographically Good S-Boxes.,1990,3,J. Cryptology,1,db/journals/joc/joc3.html#AdamsT90,https://doi.org/10.1007/BF00203967 +Martín Abadi,Reconciling Two Views of Cryptography (The Computational Soundness of Formal Encryption).,2007,20,J. Cryptology,3,db/journals/joc/joc20.html#AbadiR07,https://doi.org/10.1007/s00145-007-0203-0 +Hossein Ghodosi,Analysis of an Unconditionally Secure Distributed Oblivious Transfer.,2013,26,J. Cryptology,1,db/journals/joc/joc26.html#Ghodosi13,https://doi.org/10.1007/s00145-011-9113-2 +Wen-Ai Jackson,Mutually Trusted Authority-Free Secret Sharing Schemes.,1997,10,J. Cryptology,4,db/journals/joc/joc10.html#JacksonMO97,https://doi.org/10.1007/s001459900031 +Sean Murphy,An Analysis of SAFER.,1998,11,J. Cryptology,4,db/journals/joc/joc11.html#Murphy98,https://doi.org/10.1007/s001459900046 +Benny Applebaum,Minimizing Locality of One-Way Functions via Semi-private Randomized Encodings.,2018,31,J. Cryptology,1,db/journals/joc/joc31.html#ApplebaumIK18,https://doi.org/10.1007/s00145-016-9244-6 +Ron Berman,Provable Unlinkability Against Traffic Analysis with Low Message Overhead.,2015,28,J. Cryptology,3,db/journals/joc/joc28.html#BermanFGKKLT15,https://doi.org/10.1007/s00145-013-9171-8 +Eli Biham,An Improvement of Davies' Attack on DES.,1997,10,J. Cryptology,3,db/journals/joc/joc10.html#BihamB97,https://doi.org/10.1007/s001459900027 +Oriol Farràs,Ideal Multipartite Secret Sharing Schemes.,2012,25,J. Cryptology,3,db/journals/joc/joc25.html#FarrasMP12,https://doi.org/10.1007/s00145-011-9101-6 +M. Ito,Multiple Assignment Scheme for Sharing Secret.,1993,6,J. Cryptology,1,db/journals/joc/joc6.html#ItoSN93,https://doi.org/10.1007/BF02620229 +Yenjo Han,Pseudorandom Generators and the Frequency of Simplicity.,1996,9,J. Cryptology,4,db/journals/joc/joc9.html#HanH96,https://doi.org/10.1007/BF00189263 +Joan Boyar,A Discrete Logarithm Implementation of Perfect Zero-Knowledge Blobs.,1990,2,J. Cryptology,2,db/journals/joc/joc2.html#BoyarKK90,https://doi.org/10.1007/BF00204448 +Carmit Hazay,Leakage-Resilient Cryptography from Minimal Assumptions.,2016,29,J. Cryptology,3,db/journals/joc/joc29.html#HazayLWW16,https://doi.org/10.1007/s00145-015-9200-x +Douglas R. Stinson,A Construction for Authentication/Secrecy Codes from Certain Combinatorial Designs.,1988,1,J. Cryptology,2,db/journals/joc/joc1.html#Stinson88a,https://doi.org/10.1007/BF02351720 +Douglas R. Stinson,An Infinite Class of Counterexamples to a Conjecture Concerning Nonlinear Resilient Functions.,1995,8,J. Cryptology,3,db/journals/joc/joc8.html#StinsonM95,https://doi.org/10.1007/BF00202271 +Andrew Klapper,On the Existence of Secure Keystream Generators.,2001,14,J. Cryptology,1,db/journals/joc/joc14.html#Klapper01,https://doi.org/10.1007/s001450010014 +Carlo Blundo,On the Contrast in Visual Cryptography Schemes.,1999,12,J. Cryptology,4,db/journals/joc/joc12.html#BlundoSS99,https://doi.org/10.1007/s001459900057 +Mihir Bellare,Certifying Permutations: Noninteractive Zero-Knowledge Based on Any Trapdoor Permutation.,1996,9,J. Cryptology,3,db/journals/joc/joc9.html#BellareY96, +Arjen K. Lenstra,Selecting Cryptographic Key Sizes.,2001,14,J. Cryptology,4,db/journals/joc/joc14.html#LenstraV01,https://doi.org/10.1007/s00145-001-0009-4 +Jonathan Katz,Which Languages Have 4-Round Zero-Knowledge Proofs?,2012,25,J. Cryptology,1,db/journals/joc/joc25.html#Katz12,https://doi.org/10.1007/s00145-010-9081-y +Don Coppersmith,Weakness in Quaternion Signatures.,2001,14,J. Cryptology,2,db/journals/joc/joc14.html#Coppersmith01,https://doi.org/10.1007/s001450010006 +Claus-Peter Schnorr,Efficient Signature Generation by Smart Cards.,1991,4,J. Cryptology,3,db/journals/joc/joc4.html#Schnorr91,https://doi.org/10.1007/BF00196725 +Jean-Sébastien Coron,Deterministic Polynomial-Time Equivalence of Computing the RSA Secret Key and Factoring.,2007,20,J. Cryptology,1,db/journals/joc/joc20.html#CoronM07,https://doi.org/10.1007/s00145-006-0433-6 +Jovan Dj. Golic,Correlation Properties of a General Binary Combiner with Memory.,1996,9,J. Cryptology,2,db/journals/joc/joc9.html#Golic96,https://doi.org/10.1007/BF00190805 +Thomas Peyrin,Collision Attack on Grindahl.,2015,28,J. Cryptology,4,db/journals/joc/joc28.html#Peyrin15,https://doi.org/10.1007/s00145-014-9186-9 +Li Gong,A Matrix Key-Distribution Scheme.,1990,2,J. Cryptology,1,db/journals/joc/joc2.html#GongW90,https://doi.org/10.1007/BF02252869 +Burton S. Kaliski Jr.,Is the Data Encryption Standard a Group? (Results of Cycling Experiments on DES).,1988,1,J. Cryptology,1,db/journals/joc/joc1.html#KaliskiRS88,https://doi.org/10.1007/BF00206323 +Paulo S. L. M. Barreto,Efficient Implementation of Pairing-Based Cryptosystems.,2004,17,J. Cryptology,4,db/journals/joc/joc17.html#BarretoLS04,https://doi.org/10.1007/s00145-004-0311-z +Abhranil Maiti,Improved Ring Oscillator PUF: An FPGA-friendly Secure Primitive.,2011,24,J. Cryptology,2,db/journals/joc/joc24.html#MaitiS11,https://doi.org/10.1007/s00145-010-9088-4 +Yehuda Lindell,A Proof of Security of Yao's Protocol for Two-Party Computation.,2009,22,J. Cryptology,2,db/journals/joc/joc22.html#LindellP09,https://doi.org/10.1007/s00145-008-9036-8 +Alexander A. Moldovyan,A Cipher Based on Data-Dependent Permutations.,2002,15,J. Cryptology,1,db/journals/joc/joc15.html#MoldovyanM02,https://doi.org/10.1007/s00145-001-0012-9 +Michael Walker,Information-Theoretic Bounds for Authentication Schemes.,1990,2,J. Cryptology,3,db/journals/joc/joc2.html#Walker90,https://doi.org/10.1007/BF00190800 +Yair Amir,Authenticated Adversarial Routing.,2014,27,J. Cryptology,4,db/journals/joc/joc27.html#AmirBO14,https://doi.org/10.1007/s00145-013-9157-6 +Simon R. Blackburn,The Cryptanalysis of a Public-Key Implementation of Finite Group Mappings.,1995,8,J. Cryptology,3,db/journals/joc/joc8.html#BlackburnMS95,https://doi.org/10.1007/BF00202270 +Omer Barkol,On d-Multiplicative Secret Sharing.,2010,23,J. Cryptology,4,db/journals/joc/joc23.html#BarkolIW10,https://doi.org/10.1007/s00145-010-9056-z +S. Dov Gordon,Partial Fairness in Secure Two-Party Computation.,2012,25,J. Cryptology,1,db/journals/joc/joc25.html#GordonK12,https://doi.org/10.1007/s00145-010-9079-5 +Donald Beaver,Locally Random Reductions: Improvements and Applications.,1997,10,J. Cryptology,1,db/journals/joc/joc10.html#BeaverFKR97,https://doi.org/10.1007/s001459900017 +Itai Dinur,Improved Practical Attacks on Round-Reduced Keccak.,2014,27,J. Cryptology,2,db/journals/joc/joc27.html#DinurDS14,https://doi.org/10.1007/s00145-012-9142-5 +Philippe Godlewski,Key-Minimal Crytosystems for Unconditional Secrecy.,1990,3,J. Cryptology,1,db/journals/joc/joc3.html#GodlewskiM90,https://doi.org/10.1007/BF00203966 +Dingyi Pei,Information-Theoretic Bounds for Authentication Codes and Block Designs.,1995,8,J. Cryptology,4,db/journals/joc/joc8.html#Pei95,https://doi.org/10.1007/BF00191354 +Marijke De Soete,New Bounds and Constructions for Authentication/Secrecy Codes with Splitting.,1991,3,J. Cryptology,3,db/journals/joc/joc3.html#Soete91,https://doi.org/10.1007/BF00196910 +Sven Schäge,Tight Security for Signature Schemes Without Random Oracles.,2015,28,J. Cryptology,3,db/journals/joc/joc28.html#Schage15,https://doi.org/10.1007/s00145-013-9173-6 +Paul Stankovski,An Efficient State Recovery Attack on the X-FCSR Family of Stream Ciphers.,2014,27,J. Cryptology,1,db/journals/joc/joc27.html#StankovskiHJ14,https://doi.org/10.1007/s00145-012-9130-9 +Eli Biham,A Proof of the Security of Quantum Key Distribution.,2006,19,J. Cryptology,4,db/journals/joc/joc19.html#BihamBBMR06,https://doi.org/10.1007/s00145-005-0011-3 +Fabrice Benhamouda,Efficient Cryptosystems From 2k-th Power Residue Symbols.,2017,30,J. Cryptology,2,db/journals/joc/joc30.html#BenhamoudaHJL17,https://doi.org/10.1007/s00145-016-9229-5 +Ueli M. Maurer,Conditionally-Perfect Secrecy and a Provably-Secure Randomized Cipher.,1992,5,J. Cryptology,1,db/journals/joc/joc5.html#Maurer92,https://doi.org/10.1007/BF00191321 +Oded Goldreich 0001,How to Construct Constant-Round Zero-Knowledge Proof Systems for NP.,1996,9,J. Cryptology,3,db/journals/joc/joc9.html#GoldreichK96, +J. Pastor,CRYPTOPOST - A Cryptographic Application to Mail Processing.,1991,3,J. Cryptology,2,db/journals/joc/joc3.html#Pastor91,https://doi.org/10.1007/BF00196793 +Boaz Tsaban,Theoretical Cryptanalysis of the Klimov-Shamir Number Generator TF-1.,2007,20,J. Cryptology,3,db/journals/joc/joc20.html#Tsaban07,https://doi.org/10.1007/s00145-007-0564-4 +Wim Aerts,A Practical Attack on KeeLoq.,2012,25,J. Cryptology,1,db/journals/joc/joc25.html#AertsBMMDIKPVV12,https://doi.org/10.1007/s00145-010-9091-9 +Eli Biham,Cryptanalysis of SHA-0 and Reduced SHA-1.,2015,28,J. Cryptology,1,db/journals/joc/joc28.html#BihamCJ15,https://doi.org/10.1007/s00145-014-9179-8 +Craig Gentry,Using Fully Homomorphic Hybrid Encryption to Minimize Non-interative Zero-Knowledge Proofs.,2015,28,J. Cryptology,4,db/journals/joc/joc28.html#GentryGIPSS15,https://doi.org/10.1007/s00145-014-9184-y +Lorenz Minder,The Extended k-tree Algorithm.,2012,25,J. Cryptology,2,db/journals/joc/joc25.html#MinderS12,https://doi.org/10.1007/s00145-011-9097-y +Carmit Hazay,Efficient Protocols for Set Intersection and Pattern Matching with Security Against Malicious and Covert Adversaries.,2010,23,J. Cryptology,3,db/journals/joc/joc23.html#HazayL10,https://doi.org/10.1007/s00145-008-9034-x +Pierre Beauchemin,A Generalization of Hellman's Extension to Shannon's Approach to Cryptography.,1988,1,J. Cryptology,2,db/journals/joc/joc1.html#BeaucheminB88,https://doi.org/10.1007/BF02252870 +Nir Bitansky,The Hunting of the SNARK.,2017,30,J. Cryptology,4,db/journals/joc/joc30.html#BitanskyCCGLRT17,https://doi.org/10.1007/s00145-016-9241-9 +Joe Kilian,How to Protect DES Against Exhaustive Key Search (an Analysis of DESX).,2001,14,J. Cryptology,1,db/journals/joc/joc14.html#KilianR01,https://doi.org/10.1007/s001450010015 +Yehuda Lindell,A Simpler Construction of CCA2-Secure Public-KeyEncryption under General Assumptions.,2006,19,J. Cryptology,3,db/journals/joc/joc19.html#Lindell06,https://doi.org/10.1007/s00145-005-0345-x +Yixian Yang,Further Enumerating Boolean Functions of Cryptographic Significance.,1995,8,J. Cryptology,3,db/journals/joc/joc8.html#YangG95,https://doi.org/10.1007/BF00202268 +Matthias Fitzi,Minimal Complete Primitives for Secure Multi-Party Computation.,2005,18,J. Cryptology,1,db/journals/joc/joc18.html#FitziGMO05,https://doi.org/10.1007/s00145-004-0150-y +Eli Biham,Cryptanalysis of Multiple Modes of Operation.,1998,11,J. Cryptology,1,db/journals/joc/joc11.html#Biham98,https://doi.org/10.1007/s001459900034 +Jae Hyun Ahn,Computing on Authenticated Data.,2015,28,J. Cryptology,2,db/journals/joc/joc28.html#AhnBCHSW15,https://doi.org/10.1007/s00145-014-9182-0 +Jovan Dj. Golic,Fast Correlation Attacks on the Summation Generator.,2000,13,J. Cryptology,2,db/journals/joc/joc13.html#GolicSD00,https://doi.org/10.1007/s001459910009 +Dingfeng Ye,Decomposing Attacks on Asymmetric Cryptography Based on Mapping Compositions.,2001,14,J. Cryptology,2,db/journals/joc/joc14.html#YeDL01,https://doi.org/10.1007/s00145-001-0001-z +Yehuda Lindell,Completeness for Symmetric Two-Party Functionalities: Revisited.,2018,31,J. Cryptology,3,db/journals/joc/joc31.html#LindellOZ18,https://doi.org/10.1007/s00145-017-9267-7 +Sean Murphy,A Weak Cipher that Generates the Symmetric Group.,1994,7,J. Cryptology,1,db/journals/joc/joc7.html#MurphyPW94,https://doi.org/10.1007/BF00195210 +Qi Cheng,Primality Proving via One Round in ECPP and One Iteration in AKS.,2007,20,J. Cryptology,3,db/journals/joc/joc20.html#Cheng07,https://doi.org/10.1007/s00145-006-0406-9 +Joan Boyar,Inferring Sequences Produced by a Linear Congruential Generator Missing Low-Order Bits.,1989,1,J. Cryptology,3,db/journals/joc/joc1.html#Boyar89,https://doi.org/10.1007/BF02252875 +Eike Kiltz,Efficient Authentication from Hard Learning Problems.,2017,30,J. Cryptology,4,db/journals/joc/joc30.html#KiltzPVCJ17,https://doi.org/10.1007/s00145-016-9247-3 +Rahul Jain 0001,Resource Requirements of Private Quantum Channels and Consequences for Oblivious Remote State Preparation.,2012,25,J. Cryptology,1,db/journals/joc/joc25.html#Jain12,https://doi.org/10.1007/s00145-010-9076-8 +Don Coppersmith,Cryptanalysis of ISO/IEC 9796-1.,2008,21,J. Cryptology,1,db/journals/joc/joc21.html#CoppersmithCGHJNS08,https://doi.org/10.1007/s00145-007-9007-5 +Elette Boyle,Fully Leakage-Resilient Signatures.,2013,26,J. Cryptology,3,db/journals/joc/joc26.html#BoyleSW13,https://doi.org/10.1007/s00145-012-9136-3 +Daniele Micciancio,The RSA Group is Pseudo-Free.,2010,23,J. Cryptology,2,db/journals/joc/joc23.html#Micciancio10,https://doi.org/10.1007/s00145-009-9042-5 +Carmit Hazay,Oblivious Polynomial Evaluation and Secure Set-Intersection from Algebraic PRFs.,2018,31,J. Cryptology,2,db/journals/joc/joc31.html#Hazay18,https://doi.org/10.1007/s00145-017-9263-y +Mihir Bellare,The One-More-RSA-Inversion Problems and the Security of Chaum's Blind Signature Scheme.,2003,16,J. Cryptology,3,db/journals/joc/joc16.html#BellareNPS03,https://doi.org/10.1007/s00145-002-0120-1 +Ueli M. Maurer,Local Randomness in Pseudorandom Sequences.,1991,4,J. Cryptology,2,db/journals/joc/joc4.html#MaurerM91,https://doi.org/10.1007/BF00196773 +Jean Monnerat,Short Undeniable Signatures Based on Group Homomorphisms.,2011,24,J. Cryptology,3,db/journals/joc/joc24.html#MonneratV11,https://doi.org/10.1007/s00145-010-9070-1 +Yehuda Lindell,Secure Two-Party Computation via Cut-and-Choose Oblivious Transfer.,2012,25,J. Cryptology,4,db/journals/joc/joc25.html#LindellP12,https://doi.org/10.1007/s00145-011-9107-0 +Jérôme Renault,Probabilistic Reliability and Privacy of Communication Using Multicast in General Neighbor Networks.,2008,21,J. Cryptology,2,db/journals/joc/joc21.html#RenaultT08,https://doi.org/10.1007/s00145-007-9018-2 +Joan Boyar,Practical Zero-Knowledge Proofs: Giving Hints and Using Deficiencies.,1991,4,J. Cryptology,3,db/journals/joc/joc4.html#BoyarFL91,https://doi.org/10.1007/BF00196727 +Rosario Gennaro,Secure Distributed Key Generation for Discrete-Log Based Cryptosystems.,2007,20,J. Cryptology,1,db/journals/joc/joc20.html#GennaroJKR07,https://doi.org/10.1007/s00145-006-0347-3 +David Freeman 0001,A Taxonomy of Pairing-Friendly Elliptic Curves.,2010,23,J. Cryptology,2,db/journals/joc/joc23.html#FreemanST10,https://doi.org/10.1007/s00145-009-9048-z +Nir Bitansky,On Strong Simulation and Composable Point Obfuscation.,2014,27,J. Cryptology,2,db/journals/joc/joc27.html#BitanskyC14,https://doi.org/10.1007/s00145-013-9146-9 +Carlo Blundo,Analysis and Design of Distributed Key Distribution Centers.,2005,18,J. Cryptology,4,db/journals/joc/joc18.html#BlundoD05,https://doi.org/10.1007/s00145-005-0407-0 +Sune K. Jakobsen,Information Theoretical Cryptogenography.,2017,30,J. Cryptology,4,db/journals/joc/joc30.html#Jakobsen17,https://doi.org/10.1007/s00145-016-9242-8 +Shahin Tajik,Photonic Side-Channel Analysis of Arbiter PUFs.,2017,30,J. Cryptology,2,db/journals/joc/joc30.html#TajikDFDNHSBH17,https://doi.org/10.1007/s00145-016-9228-6 +Jonathan Katz,Handling Expected Polynomial-Time Strategies in Simulation-Based Security Proofs.,2008,21,J. Cryptology,3,db/journals/joc/joc21.html#KatzL08,https://doi.org/10.1007/s00145-007-9004-8 +Howard M. Heys,Substitution-Permutation Networks Resistant to Differential and Linear Cryptanalysis.,1996,9,J. Cryptology,1,db/journals/joc/joc9.html#HeysT96,https://doi.org/10.1007/BF02254789 +Dennis Hofheinz,Possibility and Impossibility Results for Selective Decommitments.,2011,24,J. Cryptology,3,db/journals/joc/joc24.html#Hofheinz11,https://doi.org/10.1007/s00145-010-9066-x +Neal Koblitz,"Another Look at ""Provable Security"".",2007,20,J. Cryptology,1,db/journals/joc/joc20.html#KoblitzM07,https://doi.org/10.1007/s00145-005-0432-z +Benjamin Smith 0003,The and#8474*-curve Construction for Endomorphism-Accelerated Elliptic Curves.,2016,29,J. Cryptology,4,db/journals/joc/joc29.html#Smith16,https://doi.org/10.1007/s00145-015-9210-8 +Hans Dobbertin,Cryptanalysis of MD4.,1998,11,J. Cryptology,4,db/journals/joc/joc11.html#Dobbertin98,https://doi.org/10.1007/s001459900047 +Rosario Gennaro,Automata Evaluation and Text Search Protocols with Simulation-Based Security.,2016,29,J. Cryptology,2,db/journals/joc/joc29.html#GennaroHS16,https://doi.org/10.1007/s00145-014-9193-x +Yehuda Lindell,General Composition and Universal Composability in Secure Multiparty Computation.,2009,22,J. Cryptology,3,db/journals/joc/joc22.html#Lindell09,https://doi.org/10.1007/s00145-008-9021-2 +Jean Georgiades,Some Remarks on the Security of the Identification Scheme Based on Permuted Kernels.,1992,5,J. Cryptology,2,db/journals/joc/joc5.html#Georgiades92,https://doi.org/10.1007/BF00193565 +Yael Tauman Kalai,Concurrent Composition of Secure Protocols in the Timing Model.,2007,20,J. Cryptology,4,db/journals/joc/joc20.html#KalaiLP07,https://doi.org/10.1007/s00145-007-0567-1 +Jonathan Katz,Characterization of Security Notions for Probabilistic Private-Key Encryption.,2006,19,J. Cryptology,1,db/journals/joc/joc19.html#KatzY06,https://doi.org/10.1007/s00145-005-0310-8 +Moni Naor,On the Construction of Pseudorandom Permutations: Luby-Rackoff Revisited.,1999,12,J. Cryptology,1,db/journals/joc/joc12.html#NaorR99,https://doi.org/10.1007/PL00003817 +Benny Chor,On the Structure of the Privacy Hierarchy.,1994,7,J. Cryptology,1,db/journals/joc/joc7.html#ChorGK94,https://doi.org/10.1007/BF00195209 +Benny Applebaum,Cryptography with Constant Input Locality.,2009,22,J. Cryptology,4,db/journals/joc/joc22.html#ApplebaumIK09,https://doi.org/10.1007/s00145-009-9039-0 +James Birkett,Security Models and Proof Strategies for Plaintext-Aware Encryption.,2014,27,J. Cryptology,1,db/journals/joc/joc27.html#BirkettD14,https://doi.org/10.1007/s00145-012-9141-6 +Carmit Hazay,Computationally Secure Pattern Matching in the Presence of Malicious Adversaries.,2014,27,J. Cryptology,2,db/journals/joc/joc27.html#HazayT14,https://doi.org/10.1007/s00145-013-9147-8 +Ishai Ben-Aroya,Differential Cryptanalysis of Lucifer.,1996,9,J. Cryptology,1,db/journals/joc/joc9.html#Ben-AroyaB96,https://doi.org/10.1007/BF02254790 +Iftach Haitner,A New Interactive Hashing Theorem.,2014,27,J. Cryptology,1,db/journals/joc/joc27.html#HaitnerR14,https://doi.org/10.1007/s00145-012-9139-0 +Seung Geol Choi,A Black-Box Construction of Non-malleable Encryption from Semantically Secure Encryption.,2018,31,J. Cryptology,1,db/journals/joc/joc31.html#ChoiDMW18,https://doi.org/10.1007/s00145-017-9254-z +Oded Goldreich 0001,Session-Key Generation Using Human Passwords Only.,2006,19,J. Cryptology,3,db/journals/joc/joc19.html#GoldreichL06,https://doi.org/10.1007/s00145-006-0233-z +Stuart Haber,How to Time-Stamp a Digital Document.,1991,3,J. Cryptology,2,db/journals/joc/joc3.html#HaberS91,https://doi.org/10.1007/BF00196791 +Wolfgang Lempken,A Public Key Cryptosystem Based on Non-abelian Finite Groups.,2009,22,J. Cryptology,1,db/journals/joc/joc22.html#LempkenTMW09,https://doi.org/10.1007/s00145-008-9033-y +Lars R. Knudsen,Attacks on Fast Double Block Length Hash Functions.,1998,11,J. Cryptology,1,db/journals/joc/joc11.html#KnudsenLP98,https://doi.org/10.1007/s001459900035 +Céline Blondeau,Differential-Linear Cryptanalysis Revisited.,2017,30,J. Cryptology,3,db/journals/joc/joc30.html#BlondeauLN17,https://doi.org/10.1007/s00145-016-9237-5 +Gordon Procter,On Weak Keys and Forgery Attacks Against Polynomial-Based MAC Schemes.,2015,28,J. Cryptology,4,db/journals/joc/joc28.html#ProcterC15,https://doi.org/10.1007/s00145-014-9178-9 +Andreas J. Winter 0002,Weak Locking Capacity of Quantum Channels Can be Much Larger Than Private Capacity.,2017,30,J. Cryptology,1,db/journals/joc/joc30.html#Winter17,https://doi.org/10.1007/s00145-015-9215-3 +Ran Cohen,Characterization of Secure Multiparty Computation Without Broadcast.,2018,31,J. Cryptology,2,db/journals/joc/joc31.html#CohenHOR18,https://doi.org/10.1007/s00145-017-9264-x +Sebastiaan Indesteege,Practical Collisions for EnRUPT.,2011,24,J. Cryptology,1,db/journals/joc/joc24.html#IndesteegeP11,https://doi.org/10.1007/s00145-010-9058-x +Amos Beimel,Reducing the Servers' Computation in Private Information Retrieval: PIR with Preprocessing.,2004,17,J. Cryptology,2,db/journals/joc/joc17.html#BeimelIM04,https://doi.org/10.1007/s00145-004-0134-y +Carmit Hazay,Efficient Set Operations in the Presence of Malicious Adversaries.,2012,25,J. Cryptology,3,db/journals/joc/joc25.html#HazayN12,https://doi.org/10.1007/s00145-011-9098-x +Ran Canetti,A Forward-Secure Public-Key Encryption Scheme.,2007,20,J. Cryptology,3,db/journals/joc/joc20.html#CanettiHK07,https://doi.org/10.1007/s00145-006-0442-5 +Yehuda Lindell,Lower Bounds and Impossibility Results for Concurrent Self Composition.,2008,21,J. Cryptology,2,db/journals/joc/joc21.html#Lindell08,https://doi.org/10.1007/s00145-007-9015-5 +Benny Applebaum,From Private Simultaneous Messages to Zero-Information Arthur-Merlin Protocols and Back.,2017,30,J. Cryptology,4,db/journals/joc/joc30.html#ApplebaumR17,https://doi.org/10.1007/s00145-016-9239-3 +Phillip Rogaway,Bucket Hashing and Its Application to Fast Message Authentication.,1999,12,J. Cryptology,2,db/journals/joc/joc12.html#Rogaway99,https://doi.org/10.1007/PL00003822 +Michael J. Freedman,Efficient Set Intersection with Simulation-Based Security.,2016,29,J. Cryptology,1,db/journals/joc/joc29.html#FreedmanHNP16,https://doi.org/10.1007/s00145-014-9190-0 +Cynthia Dwork,An Efficient Existentially Unforgeable Signature Scheme and Its Applications.,1998,11,J. Cryptology,3,db/journals/joc/joc11.html#DworkN98,https://doi.org/10.1007/s001459900043 +Hans Dobbertin,RIPEMD with Two-Round Compress Function is Not Collision-Free.,1997,10,J. Cryptology,1,db/journals/joc/joc10.html#Dobbertin97,https://doi.org/10.1007/s001459900019 +Sean Murphy,The Cryptanalysis of FEAL-4 with 20 Chosen Plaintexts.,1990,2,J. Cryptology,3,db/journals/joc/joc2.html#Murphy90,https://doi.org/10.1007/BF00190801 +Tal Moran,Non-interactive Timestamping in the Bounded-Storage Model.,2009,22,J. Cryptology,2,db/journals/joc/joc22.html#MoranST09,https://doi.org/10.1007/s00145-008-9035-9 +Lars R. Knudsen,The Security of Feistel Ciphers with Six Rounds or Less.,2002,15,J. Cryptology,3,db/journals/joc/joc15.html#Knudsen02,https://doi.org/10.1007/s00145-002-9839-y +Roger Fischlin,Stronger Security Proofs for RSA and Rabin Bits.,2000,13,J. Cryptology,2,db/journals/joc/joc13.html#FischlinS00,https://doi.org/10.1007/s001459910008 +Daniel J. Bernstein,How to Stretch Random Functions: The Security of Protected Counter Sums.,1999,12,J. Cryptology,3,db/journals/joc/joc12.html#Bernstein99,https://doi.org/10.1007/s001459900051 +Rosario Gennaro,An Improved Pseudo-Random Generator Based on the Discrete Logarithm Problem.,2005,18,J. Cryptology,2,db/journals/joc/joc18.html#Gennaro05,https://doi.org/10.1007/s00145-004-0215-y +Dennis Hofheinz,Practical Chosen Ciphertext Secure Encryption from Factoring.,2013,26,J. Cryptology,1,db/journals/joc/joc26.html#HofheinzKS13,https://doi.org/10.1007/s00145-011-9115-0 +Daniel V. Bailey,Efficient Arithmetic in Finite Field Extensions with Application in Elliptic Curve Cryptography.,2001,14,J. Cryptology,3,db/journals/joc/joc14.html#BaileyP01,https://doi.org/10.1007/s001450010012 +Nigel P. Smart,The Discrete Logarithm Problem on Elliptic Curves of Trace One.,1999,12,J. Cryptology,3,db/journals/joc/joc12.html#Smart99a,https://doi.org/10.1007/s001459900052 +Douglas R. Stinson,Some Constructions and Bounds for Authentication Codes.,1988,1,J. Cryptology,1,db/journals/joc/joc1.html#Stinson88,https://doi.org/10.1007/BF00206324 +Yehuda Lindell,Privacy Preserving Data Mining.,2002,15,J. Cryptology,3,db/journals/joc/joc15.html#LindellP02,https://doi.org/10.1007/s00145-001-0019-2 +Christina Boura,Making the Impossible Possible.,2018,31,J. Cryptology,1,db/journals/joc/joc31.html#BouraLNS18,https://doi.org/10.1007/s00145-016-9251-7 +Antoine Joux,Elliptic Curve Discrete Logarithm Problem over Small Degree Extension Fields - Application to the Static Diffie-Hellman Problem on $E(\mathbb{F}_{q^{5}})$.,2013,26,J. Cryptology,1,db/journals/joc/joc26.html#JouxV13,https://doi.org/10.1007/s00145-011-9116-z +Toshiya Itoh,A Language-Dependent Cryptographic Primitive.,1997,10,J. Cryptology,1,db/journals/joc/joc10.html#ItohOS97,https://doi.org/10.1007/s001459900018 +Martín Abadi,Secure Circuit Evaluation.,1990,2,J. Cryptology,1,db/journals/joc/joc2.html#AbadiF90,https://doi.org/10.1007/BF02252866 +Tom Roeder,Multi-Verifier Signatures.,2012,25,J. Cryptology,2,db/journals/joc/joc25.html#RoederPS12,https://doi.org/10.1007/s00145-010-9096-4 +Dan Boneh,Efficient Selective Identity-Based Encryption Without Random Oracles.,2011,24,J. Cryptology,4,db/journals/joc/joc24.html#BonehB11,https://doi.org/10.1007/s00145-010-9078-6 +Anne Canteaut,Stream Ciphers: A Practical Solution for Efficient Homomorphic-Ciphertext Compression.,2018,31,J. Cryptology,3,db/journals/joc/joc31.html#CanteautCFLNPS18,https://doi.org/10.1007/s00145-017-9273-9 +Boaz Barak,Merkle's Key Agreement Protocol is Optimal: An O(n2) Attack on Any Key Agreement from Random Oracles.,2017,30,J. Cryptology,3,db/journals/joc/joc30.html#BarakM17,https://doi.org/10.1007/s00145-016-9233-9 +Brice Minaud,Key-Recovery Attacks on ASASA.,2018,31,J. Cryptology,3,db/journals/joc/joc31.html#MinaudDFK18,https://doi.org/10.1007/s00145-017-9272-x +Victor Shoup,Securing Threshold Cryptosystems against Chosen Ciphertext Attack.,2002,15,J. Cryptology,2,db/journals/joc/joc15.html#ShoupG02,https://doi.org/10.1007/s00145-001-0020-9 +Jean-Sébastien Coron,A Note on the Bivariate Coppersmith Theorem.,2013,26,J. Cryptology,2,db/journals/joc/joc26.html#CoronKT13,https://doi.org/10.1007/s00145-012-9121-x +Dan Boneh,Short Signatures from the Weil Pairing.,2004,17,J. Cryptology,4,db/journals/joc/joc17.html#BonehLS04,https://doi.org/10.1007/s00145-004-0314-9 +Takanori Isobe,A Single-Key Attack on the Full GOST Block Cipher.,2013,26,J. Cryptology,1,db/journals/joc/joc26.html#Isobe13,https://doi.org/10.1007/s00145-012-9118-5 +Mathieu Baudet,On the Security of Oscillator-Based Random Number Generators.,2011,24,J. Cryptology,2,db/journals/joc/joc24.html#BaudetLMT11,https://doi.org/10.1007/s00145-010-9089-3 +Franck Landelle,Cryptanalysis of Full RIPEMD-128.,2016,29,J. Cryptology,4,db/journals/joc/joc29.html#LandelleP16,https://doi.org/10.1007/s00145-015-9213-5 +Juan A. Garay,Strengthening Zero-Knowledge Protocols Using Signatures.,2006,19,J. Cryptology,2,db/journals/joc/joc19.html#GarayMY06,https://doi.org/10.1007/s00145-005-0307-3 +Shai Halevi,Smooth Projective Hashing and Two-Message Oblivious Transfer.,2012,25,J. Cryptology,1,db/journals/joc/joc25.html#HaleviK12,https://doi.org/10.1007/s00145-010-9092-8 +Steven Myers,Efficient Amplification of the Security of Weak Pseudo-Random Function Generators.,2003,16,J. Cryptology,1,db/journals/joc/joc16.html#Myers03,https://doi.org/10.1007/s00145-002-0007-1 +Ivan Damgård,Practical and Provably Secure Release of a Secret and Exchange of Signatures.,1995,8,J. Cryptology,4,db/journals/joc/joc8.html#Damgard95,https://doi.org/10.1007/BF00191356 +Andrew Chi-Chih Yao,Concurrent Knowledge Extraction in Public-Key Models.,2016,29,J. Cryptology,1,db/journals/joc/joc29.html#YaoYZ16,https://doi.org/10.1007/s00145-014-9191-z +Antoine Joux,Separating Decision Diffie-Hellman from Computational Diffie-Hellman in Cryptographic Groups.,2003,16,J. Cryptology,4,db/journals/joc/joc16.html#JouxN03,https://doi.org/10.1007/s00145-003-0052-4 +Zvika Brakerski,Better Security for Deterministic Public-Key Encryption: The Auxiliary-Input Setting.,2014,27,J. Cryptology,2,db/journals/joc/joc27.html#BrakerskiS14,https://doi.org/10.1007/s00145-012-9143-4 +Jan Camenisch,Batch Verification of Short Signatures.,2012,25,J. Cryptology,4,db/journals/joc/joc25.html#CamenischHP12,https://doi.org/10.1007/s00145-011-9108-z +Nishanth Chandran,Almost-Everywhere Secure Computation with Edge Corruptions.,2015,28,J. Cryptology,4,db/journals/joc/joc28.html#ChandranGO15,https://doi.org/10.1007/s00145-013-9176-3 +Hugo Zbinden,Practical Aspects of Quantum Cryptographic Key Distribution.,2000,13,J. Cryptology,2,db/journals/joc/joc13.html#ZbindenGHMT00,https://doi.org/10.1007/s001459910007 +Claude Crépeau,Guest Editor's Introduction.,1996,9,J. Cryptology,3,db/journals/joc/joc9.html#Crepeau96, +Benny Chor,Secret Sharing Over Infinite Domains.,1993,6,J. Cryptology,2,db/journals/joc/joc6.html#ChorK93,https://doi.org/10.1007/BF02620136 +Manoj Prabhakaran,Reconciling Non-malleability with Homomorphic Encryption.,2017,30,J. Cryptology,3,db/journals/joc/joc30.html#PrabhakaranR17,https://doi.org/10.1007/s00145-016-9231-y +Hendrik W. Lenstra Jr.,Lattices with Symmetry.,2017,30,J. Cryptology,3,db/journals/joc/joc30.html#LenstraS17,https://doi.org/10.1007/s00145-016-9235-7 +Moni Naor,Constructing Pseudo-Random Permutations with a Prescribed Structure.,2002,15,J. Cryptology,2,db/journals/joc/joc15.html#NaorR02,https://doi.org/10.1007/s00145-001-0008-5 +Dario Catalano,Practical Homomorphic Message Authenticators for Arithmetic Circuits.,2018,31,J. Cryptology,1,db/journals/joc/joc31.html#CatalanoF18,https://doi.org/10.1007/s00145-016-9249-1 +Melissa Chase,Mercurial Commitments with Applications to Zero-Knowledge Sets.,2013,26,J. Cryptology,2,db/journals/joc/joc26.html#ChaseHLMR13,https://doi.org/10.1007/s00145-012-9122-9 +Pierre Beauchemin,The Generation of Random Numbers that Are Probably Prime.,1988,1,J. Cryptology,1,db/journals/joc/joc1.html#BeaucheminBCGP88,https://doi.org/10.1007/BF00206325 +Yehuda Lindell,Adaptive Zero-Knowledge Proofs and Adaptively Secure Oblivious Transfer.,2011,24,J. Cryptology,4,db/journals/joc/joc24.html#LindellZ11,https://doi.org/10.1007/s00145-010-9072-z +Lejla Batina,Mutual Information Analysis: a Comprehensive Study.,2011,24,J. Cryptology,2,db/journals/joc/joc24.html#BatinaGPRSV11,https://doi.org/10.1007/s00145-010-9084-8 +Jørgen Brandt,Zero-Knowledge Authentication Scheme with Secret Key Exchange.,1998,11,J. Cryptology,3,db/journals/joc/joc11.html#BrandtDLP98,https://doi.org/10.1007/s001459900041 +Russell Impagliazzo,Chernoff-Type Direct Product Theorems.,2009,22,J. Cryptology,1,db/journals/joc/joc22.html#ImpagliazzoJK09,https://doi.org/10.1007/s00145-008-9029-7 +Eric R. Verheul,Evidence that XTR Is More Secure than Supersingular Elliptic Curve Cryptosystems.,2004,17,J. Cryptology,4,db/journals/joc/joc17.html#Verheul04,https://doi.org/10.1007/s00145-004-0313-x +Ivan Damgård,On the Existence of Statistically Hiding Bit Commitment Schemes and Fail-Stop Signatures.,1997,10,J. Cryptology,3,db/journals/joc/joc10.html#DamgardPP97,https://doi.org/10.1007/s001459900026 +Anna M. Johnston,Authenticated Key Exchange Provably Secure Against the Man-in-the-Middle Attack.,2002,15,J. Cryptology,2,db/journals/joc/joc15.html#JohnstonG02,https://doi.org/10.1007/s00145-001-0017-4 +Shoni Gilboa,How Many Queries are Needed to Distinguish a Truncated Random Permutation from a Random Function?,2018,31,J. Cryptology,1,db/journals/joc/joc31.html#GilboaGM18,https://doi.org/10.1007/s00145-017-9253-0 +Rahul Jain 0001,New Binding-Concealing Trade-Offs for Quantum String Commitment.,2008,21,J. Cryptology,4,db/journals/joc/joc21.html#Jain08,https://doi.org/10.1007/s00145-008-9025-y +Eric Miles,On the Complexity of Constructing Pseudorandom Functions (Especially when They Don't Exist).,2015,28,J. Cryptology,3,db/journals/joc/joc28.html#MilesV15,https://doi.org/10.1007/s00145-013-9161-x +Joonsang Baek,Formal Proofs for the Security of Signcryption.,2007,20,J. Cryptology,2,db/journals/joc/joc20.html#BaekSZ07,https://doi.org/10.1007/s00145-007-0211-0 +Sebastian Faust,Signature Schemes Secure Against Hard-to-Invert Leakage.,2016,29,J. Cryptology,2,db/journals/joc/joc29.html#FaustHNNZ16,https://doi.org/10.1007/s00145-015-9197-1 +Samy Bengio,Secure Implementations of Identification Systems.,1991,4,J. Cryptology,3,db/journals/joc/joc4.html#BengioBDGQ91,https://doi.org/10.1007/BF00196726 +Dennis Hofheinz,Polynomial Runtime and Composability.,2013,26,J. Cryptology,3,db/journals/joc/joc26.html#HofheinzUM13,https://doi.org/10.1007/s00145-012-9127-4 +Joan Boyar,Logic Minimization Techniques with Applications to Cryptology.,2013,26,J. Cryptology,2,db/journals/joc/joc26.html#BoyarMP13,https://doi.org/10.1007/s00145-012-9124-7 +Moni Naor,Computationally Secure Oblivious Transfer.,2005,18,J. Cryptology,1,db/journals/joc/joc18.html#NaorP05,https://doi.org/10.1007/s00145-004-0102-6 +K. Nishimura,Probability To Meet in the Middle.,1990,2,J. Cryptology,1,db/journals/joc/joc2.html#NishimuraS90,https://doi.org/10.1007/BF02252867 +Neal Koblitz,Hyperelliptic Cryptosystems.,1989,1,J. Cryptology,3,db/journals/joc/joc1.html#Koblitz89,https://doi.org/10.1007/BF02252872 +Boaz Tsaban,Polynomial-Time Solutions of Computational Problems in Noncommutative-Algebraic Cryptography.,2015,28,J. Cryptology,3,db/journals/joc/joc28.html#Tsaban15,https://doi.org/10.1007/s00145-013-9170-9 +Edlyn Teske,An Elliptic Curve Trapdoor System.,2006,19,J. Cryptology,1,db/journals/joc/joc19.html#Teske06,https://doi.org/10.1007/s00145-004-0328-3 +Charles H. Bennett,Experimental Quantum Cryptography.,1992,5,J. Cryptology,1,db/journals/joc/joc5.html#BennettBBSS92,https://doi.org/10.1007/BF00191318 +David Pointcheval,Security Arguments for Digital Signatures and Blind Signatures.,2000,13,J. Cryptology,3,db/journals/joc/joc13.html#PointchevalS00,https://doi.org/10.1007/s001450010003 +Naofumi Homma,Design Methodology and Validity Verification for a Reactive Countermeasure Against EM Attacks.,2017,30,J. Cryptology,2,db/journals/joc/joc30.html#HommaHMFNA17,https://doi.org/10.1007/s00145-015-9223-3 +Jan-Hendrik Evertse,Which New RSA-Signatures Can be Computed from Certain Given RSA-Signatures?,1992,5,J. Cryptology,1,db/journals/joc/joc5.html#EvertseH92,https://doi.org/10.1007/BF00191320 +Alexander Russell,Necessary and Sufficient Condtions for Collision-Free Hashing.,1995,8,J. Cryptology,2,db/journals/joc/joc8.html#Russell95,https://doi.org/10.1007/BF00190757 +Sourav Sen Gupta,(Non-)Random Sequences from (Non-)Random Permutations - Analysis of RC4 Stream Cipher.,2014,27,J. Cryptology,1,db/journals/joc/joc27.html#GuptaMPS14,https://doi.org/10.1007/s00145-012-9138-1 +Gordon B. Agnew,Arithmetic Operations in GF(2m).,1993,6,J. Cryptology,1,db/journals/joc/joc6.html#AgnewBMV93,https://doi.org/10.1007/BF02620228 +Jooyoung Lee 0001,The Security of Tandem-DM in the Ideal Cipher Model.,2017,30,J. Cryptology,2,db/journals/joc/joc30.html#LeeSS17,https://doi.org/10.1007/s00145-016-9230-z +Aggelos Kiayias,A One-Time Stegosystem and Applications to Efficient Covert Communication.,2014,27,J. Cryptology,1,db/journals/joc/joc27.html#KiayiasRRS14,https://doi.org/10.1007/s00145-012-9135-4 +Benny Applebaum,Locally Computable UOWHF with Linear Shrinkage.,2017,30,J. Cryptology,3,db/journals/joc/joc30.html#ApplebaumM17,https://doi.org/10.1007/s00145-016-9232-x +Ran Cohen,Fairness Versus Guaranteed Output Delivery in Secure Multiparty Computation.,2017,30,J. Cryptology,4,db/journals/joc/joc30.html#CohenL17,https://doi.org/10.1007/s00145-016-9245-5 +Willi Meier,Fast Correlation Attacks on Certain Stream Ciphers.,1989,1,J. Cryptology,3,db/journals/joc/joc1.html#MeierS89,https://doi.org/10.1007/BF02252874 +Amos Fiat,Dynamic Traitor Tracing.,2001,14,J. Cryptology,3,db/journals/joc/joc14.html#FiatT01,https://doi.org/10.1007/s00145-001-0006-7 +Ran Canetti,Universally Composable Symbolic Security Analysis.,2011,24,J. Cryptology,1,db/journals/joc/joc24.html#CanettiH11,https://doi.org/10.1007/s00145-009-9055-0 +Florian Luca,Elliptic Curves with Low Embedding Degree.,2006,19,J. Cryptology,4,db/journals/joc/joc19.html#LucaS06,https://doi.org/10.1007/s00145-006-0544-0 +Orr Dunkelman,Improved Single-Key Attacks on 8-Round AES-192 and AES-256.,2015,28,J. Cryptology,3,db/journals/joc/joc28.html#DunkelmanKS15a,https://doi.org/10.1007/s00145-013-9159-4 +Jörn Müller-Quade,Long-Term Security and Universal Composability.,2010,23,J. Cryptology,4,db/journals/joc/joc23.html#Muller-QuadeU10,https://doi.org/10.1007/s00145-010-9068-8 +Carlo Blundo,Graph Decompositions and Secret Sharing Schemes.,1995,8,J. Cryptology,1,db/journals/joc/joc8.html#BlundoSSV95,https://doi.org/10.1007/BF00204801 +Mihir Bellare,Authenticated Encryption: Relations among Notions and Analysis of the Generic Composition Paradigm.,2008,21,J. Cryptology,4,db/journals/joc/joc21.html#BellareN08,https://doi.org/10.1007/s00145-008-9026-x +Moni Naor,Perfect Zero-Knowledge Arguments for NP Using Any One-Way Permutation.,1998,11,J. Cryptology,2,db/journals/joc/joc11.html#NaorOVY98,https://doi.org/10.1007/s001459900037 +Renato M. Capocelli,On the Size of Shares for Secret Sharing Schemes.,1993,6,J. Cryptology,3,db/journals/joc/joc6.html#CapocelliSGV93,https://doi.org/10.1007/BF00198463 +Elena Andreeva 0001,New Second-Preimage Attacks on Hash Functions.,2016,29,J. Cryptology,4,db/journals/joc/joc29.html#0001BDFHKSZ16,https://doi.org/10.1007/s00145-015-9206-4 +Willi Meier,Correlation Properties of Combiners with Memory in Stream Ciphers.,1992,5,J. Cryptology,1,db/journals/joc/joc5.html#MeierS92,https://doi.org/10.1007/BF00191322 +Boaz Barak,Secure Computation Without Authentication.,2011,24,J. Cryptology,4,db/journals/joc/joc24.html#BarakCLPR11,https://doi.org/10.1007/s00145-010-9075-9 +Martin E. Dyer,On Key Storage in Secure Networks.,1995,8,J. Cryptology,4,db/journals/joc/joc8.html#DyerFFT95,https://doi.org/10.1007/BF00191355 +Shimon Even,A Construction of a Cipher from a Single Pseudorandom Permutation.,1997,10,J. Cryptology,3,db/journals/joc/joc10.html#EvenM97,https://doi.org/10.1007/s001459900025 +Michel Abdalla,Robust Encryption.,2018,31,J. Cryptology,2,db/journals/joc/joc31.html#AbdallaBN18,https://doi.org/10.1007/s00145-017-9258-8 +Phong Q. Nguyen,The Insecurity of the Digital Signature Algorithm with Partially Known Nonces.,2002,15,J. Cryptology,3,db/journals/joc/joc15.html#NguyenS02,https://doi.org/10.1007/s00145-002-0021-3 +Jean-Sébastien Coron,How to Build an Ideal Cipher: The Indifferentiability of the Feistel Construction.,2016,29,J. Cryptology,1,db/journals/joc/joc29.html#CoronHKPST16,https://doi.org/10.1007/s00145-014-9189-6 +Donald Beaver,Secure Multiparty Protocols and Zero-Knowledge Proof Systems Tolerating a Faulty Minority.,1991,4,J. Cryptology,2,db/journals/joc/joc4.html#Beaver91,https://doi.org/10.1007/BF00196771 +Hüseyin Hisil,Jacobian Coordinates on Genus 2 Curves.,2017,30,J. Cryptology,2,db/journals/joc/joc30.html#HisilC17,https://doi.org/10.1007/s00145-016-9227-7 +Oded Goldreich 0001,Preface.,2004,17,J. Cryptology,1,db/journals/joc/joc17.html#Goldreich04,https://doi.org/10.1007/s00145-003-1701-3 +Andreas Enge,An L(1/3) Discrete Logarithm Algorithm for Low Degree Curves.,2011,24,J. Cryptology,1,db/journals/joc/joc24.html#EngeGT11,https://doi.org/10.1007/s00145-010-9057-y +Marc Fischlin,Efficient Non-malleable Commitment Schemes.,2009,22,J. Cryptology,4,db/journals/joc/joc22.html#FischlinF09,https://doi.org/10.1007/s00145-009-9045-2 +Gustav Hast,Nearly One-Sided Tests and the Goldreich?Levin Predicate.,2004,17,J. Cryptology,3,db/journals/joc/joc17.html#Hast04,https://doi.org/10.1007/s00145-003-0141-4 +Philip D. MacKenzie,Threshold Password-Authenticated Key Exchange.,2006,19,J. Cryptology,1,db/journals/joc/joc19.html#MacKenzieSJ06,https://doi.org/10.1007/s00145-005-0232-5 +Ali Aydin Selçuk,On Probability of Success in Linear and Differential Cryptanalysis.,2008,21,J. Cryptology,1,db/journals/joc/joc21.html#Selcuk08,https://doi.org/10.1007/s00145-007-9013-7 +Eli Biham,Bug Attacks.,2016,29,J. Cryptology,4,db/journals/joc/joc29.html#BihamCS16,https://doi.org/10.1007/s00145-015-9209-1 +Florian Böhl,Confined Guessing: New Signatures From Standard Assumptions.,2015,28,J. Cryptology,1,db/journals/joc/joc28.html#BohlHJKS15,https://doi.org/10.1007/s00145-014-9183-z +Gustavus J. Simmons,A Cartesian Product Construction for Unconditionally Secure Authentication Codes that Permit Arbitration.,1990,2,J. Cryptology,2,db/journals/joc/joc2.html#Simmons90,https://doi.org/10.1007/BF00204449 +Luke O'Connor,On the Distribution of Characteristics in Bijective Mappings.,1995,8,J. Cryptology,2,db/journals/joc/joc8.html#OConnor95,https://doi.org/10.1007/BF00190756 +Jung Hee Cheon,Discrete Logarithm Problems with Auxiliary Inputs.,2010,23,J. Cryptology,3,db/journals/joc/joc23.html#Cheon10,https://doi.org/10.1007/s00145-009-9047-0 +Dennis Hofheinz,Obfuscation for Cryptographic Purposes.,2010,23,J. Cryptology,1,db/journals/joc/joc23.html#HofheinzMS10,https://doi.org/10.1007/s00145-009-9046-1 +Jean-Charles Faugère,Using Symmetries in the Index Calculus for Elliptic Curves Discrete Logarithm.,2014,27,J. Cryptology,4,db/journals/joc/joc27.html#FaugereGHR14,https://doi.org/10.1007/s00145-013-9158-5 +Yi Lu 0002,Cryptanalysis of an E0-like Combiner with Memory.,2008,21,J. Cryptology,3,db/journals/joc/joc21.html#LuV08,https://doi.org/10.1007/s00145-007-9017-3 +Matthew K. Franklin,Secure Communication in Minimal Connectivity Models.,2000,13,J. Cryptology,1,db/journals/joc/joc13.html#FranklinW00,https://doi.org/10.1007/s001459910002 +Jan Denef,An Extension of Kedlaya's Algorithm to Hyperelliptic Curves in Characteristic 2.,2006,19,J. Cryptology,1,db/journals/joc/joc19.html#DenefV06,https://doi.org/10.1007/s00145-004-0231-y +Matthew K. Franklin,Joint Encryption and Message-Efficient Secure Computation.,1996,9,J. Cryptology,4,db/journals/joc/joc9.html#FranklinH96,https://doi.org/10.1007/BF00189261 +Harald Niederreiter,A Combinatorial Approach to Probabilistic Results on the Linear Complexity Profile of Random Sequences.,1990,2,J. Cryptology,2,db/journals/joc/joc2.html#Niedderreiter90,https://doi.org/10.1007/BF00204450 +Gaetan Canivet,Glitch and Laser Fault Attacks onto a Secure AES Implementation on a SRAM-Based FPGA.,2011,24,J. Cryptology,2,db/journals/joc/joc24.html#CanivetMLCVR11,https://doi.org/10.1007/s00145-010-9083-9 +Michel Abdalla,Verifiable Random Functions: Relations to Identity-Based Key Encapsulation and New Constructions.,2014,27,J. Cryptology,3,db/journals/joc/joc27.html#AbdallaCF14,https://doi.org/10.1007/s00145-013-9153-x +Zvika Brakerski,Obfuscating Conjunctions.,2017,30,J. Cryptology,1,db/journals/joc/joc30.html#BrakerskiR17,https://doi.org/10.1007/s00145-015-9221-5 +Yehuda Lindell,Parallel Coin-Tossing and Constant-Round Secure Two-Party Computation.,2003,16,J. Cryptology,3,db/journals/joc/joc16.html#Lindell03,https://doi.org/10.1007/s00145-002-0143-7 +Yehuda Lindell,A Note on Constant-Round Zero-Knowledge Proofs of Knowledge.,2013,26,J. Cryptology,4,db/journals/joc/joc26.html#Lindell13,https://doi.org/10.1007/s00145-012-9132-7 +Ilan Komargodski,Secret-Sharing for NP.,2017,30,J. Cryptology,2,db/journals/joc/joc30.html#KomargodskiNY17,https://doi.org/10.1007/s00145-015-9226-0 +Raphael Overbeck,Structural Attacks for Public Key Cryptosystems based on Gabidulin Codes.,2008,21,J. Cryptology,2,db/journals/joc/joc21.html#Overbeck08,https://doi.org/10.1007/s00145-007-9003-9 +Alfred Menezes,Elliptic Curve Cryptosystems and Their Implementations.,1993,6,J. Cryptology,4,db/journals/joc/joc6.html#MenezesV93,https://doi.org/10.1007/BF00203817 +Michael J. Jacobson Jr.,Computing Discrete Logarithms in Quadratic Orders.,2000,13,J. Cryptology,4,db/journals/joc/joc13.html#Jacobson00,https://doi.org/10.1007/s001450010013 +Xavier Boyen,Unconditionally Anonymous Ring and Mesh Signatures.,2016,29,J. Cryptology,4,db/journals/joc/joc29.html#Boyen16,https://doi.org/10.1007/s00145-015-9208-2 +Dario Catalano,Paillier's Trapdoor Function Hides up to O(n) Bits.,2002,15,J. Cryptology,4,db/journals/joc/joc15.html#CatalanoGH02,https://doi.org/10.1007/s00145-002-0112-1 +Arpita Patra,Efficient Asynchronous Verifiable Secret Sharing and Multiparty Computation.,2015,28,J. Cryptology,1,db/journals/joc/joc28.html#PatraCR15,https://doi.org/10.1007/s00145-013-9172-7 +Tibor Jager,On the Analysis of Cryptographic Assumptions in the Generic Ring Model.,2013,26,J. Cryptology,2,db/journals/joc/joc26.html#JagerS13,https://doi.org/10.1007/s00145-012-9120-y +Henri Cohen,Analysis of the Sliding Window Powering Algorithm.,2005,18,J. Cryptology,1,db/journals/joc/joc18.html#Cohen05,https://doi.org/10.1007/s00145-004-0218-8 +Charanjit S. Jutla,Encryption Modes with Almost Free Message Integrity.,2008,21,J. Cryptology,4,db/journals/joc/joc21.html#Jutla08,https://doi.org/10.1007/s00145-008-9024-z +Ralf Küsters,On the Relationships between Notions of Simulation-Based Security.,2008,21,J. Cryptology,4,db/journals/joc/joc21.html#KustersDMR08,https://doi.org/10.1007/s00145-008-9019-9 +Eli Biham,New Attacks on IDEA with at Least 6 Rounds.,2015,28,J. Cryptology,2,db/journals/joc/joc28.html#BihamDKS15,https://doi.org/10.1007/s00145-013-9162-9 +Oded Goldreich 0001,A Uniform-Complexity Treatment of Encryption and Zero-Knowledge.,1993,6,J. Cryptology,1,db/journals/joc/joc6.html#Goldreich93,https://doi.org/10.1007/BF02620230 +Steven D. Galbraith,Elliptic Curve Paillier Schemes.,2002,15,J. Cryptology,2,db/journals/joc/joc15.html#Galbraith02,https://doi.org/10.1007/s00145-001-0015-6 +Benny Applebaum,Key-Dependent Message Security: Generic Amplification and Completeness.,2014,27,J. Cryptology,3,db/journals/joc/joc27.html#Applebaum14,https://doi.org/10.1007/s00145-013-9149-6 +David Cash,The Twin Diffie-Hellman Problem and Applications.,2009,22,J. Cryptology,4,db/journals/joc/joc22.html#CashKS09,https://doi.org/10.1007/s00145-009-9041-6 +Ernest F. Brickell,Some Improved Bounds on the Information Rate of Perfect Secret Sharing Schemes.,1992,5,J. Cryptology,3,db/journals/joc/joc5.html#BrickellS92,https://doi.org/10.1007/BF02451112 +Kouichi Sakurai,A Structural Comparison of the Computational Difficulty of Breaking Discrete Log Cryptosystems.,1998,11,J. Cryptology,1,db/journals/joc/joc11.html#SakuraiS98,https://doi.org/10.1007/s001459900033 +Shay Gueron,Fast Garbling of Circuits Under Standard Assumptions.,2018,31,J. Cryptology,3,db/journals/joc/joc31.html#GueronLNP18,https://doi.org/10.1007/s00145-017-9271-y +Danny Harnik,Completeness in Two-Party Secure Computation: A Computational View.,2006,19,J. Cryptology,4,db/journals/joc/joc19.html#HarnikNRR06,https://doi.org/10.1007/s00145-006-0346-4 +Ilan Komargodski,Functional Encryption for Randomized Functionalities in the Private-Key Setting from Minimal Assumptions.,2018,31,J. Cryptology,1,db/journals/joc/joc31.html#KomargodskiSY18,https://doi.org/10.1007/s00145-016-9250-8 +Rosario Gennaro,RSA-Based Undeniable Signatures.,2007,20,J. Cryptology,3,db/journals/joc/joc20.html#GennaroRK07,https://doi.org/10.1007/s00145-007-0202-1 +Krzysztof Pietrzak,Parallel Repetition of Computationally Sound Protocols Revisited.,2012,25,J. Cryptology,1,db/journals/joc/joc25.html#PietrzakW12,https://doi.org/10.1007/s00145-010-9090-x +Orr Dunkelman,Slidex Attacks on the Even-Mansour Encryption Scheme.,2015,28,J. Cryptology,1,db/journals/joc/joc28.html#DunkelmanKS15,https://doi.org/10.1007/s00145-013-9164-7 +Stanislav Smyshlyaev,Perfectly Balanced Boolean Functions and Golić Conjecture.,2012,25,J. Cryptology,3,db/journals/joc/joc25.html#Smyshlyaev12,https://doi.org/10.1007/s00145-011-9100-7 +Jovan Dj. Golic,Edit Probability Correlation Attacks on Stop/ Go Clocked Keystream Generators.,2003,16,J. Cryptology,1,db/journals/joc/joc16.html#GolicM03,https://doi.org/10.1007/s00145-002-9925-1 +Eiichiro Fujisaki,Secure Integration of Asymmetric and Symmetric Encryption Schemes.,2013,26,J. Cryptology,1,db/journals/joc/joc26.html#FujisakiO13,https://doi.org/10.1007/s00145-011-9114-1 +Shang-Hua Teng,Functional Inversion and Communication Complexity.,1994,7,J. Cryptology,3,db/journals/joc/joc7.html#Teng94,https://doi.org/10.1007/BF02318547 +Lars R. Knudsen,A Detailed Analysis of SAFER K.,2000,13,J. Cryptology,4,db/journals/joc/joc13.html#Knudsen00,https://doi.org/10.1007/s001450010004 +Akinori Kawachi,Computational Indistinguishability Between Quantum States and Its Cryptographic Application.,2012,25,J. Cryptology,3,db/journals/joc/joc25.html#KawachiKNY12,https://doi.org/10.1007/s00145-011-9103-4 +John Black,An Analysis of the Blockcipher-Based Hash Functions from PGV.,2010,23,J. Cryptology,4,db/journals/joc/joc23.html#BlackRSS10,https://doi.org/10.1007/s00145-010-9071-0 +Eli Biham,Cryptanalysis of the ANSI X9.52 CBCM Mode.,2002,15,J. Cryptology,1,db/journals/joc/joc15.html#BihamK02,https://doi.org/10.1007/s00145-001-0016-5 +Klaus Gaarder,Applying a Formal Analysis Technique to the CCITT X.509 Strong Two-Way Authentication Protocol.,1991,3,J. Cryptology,2,db/journals/joc/joc3.html#GaarderS91,https://doi.org/10.1007/BF00196790 +Alex Escala,An Algebraic Framework for Diffie-Hellman Assumptions.,2017,30,J. Cryptology,1,db/journals/joc/joc30.html#EscalaHKRV17,https://doi.org/10.1007/s00145-015-9220-6 +Mihir Bellare,On-line Ciphers and the Hash-CBC Constructions.,2012,25,J. Cryptology,4,db/journals/joc/joc25.html#BellareBKN12,https://doi.org/10.1007/s00145-011-9106-1 +Jovan Dj. Golic,A Generalized Correlation Attack on a Class of Stream Ciphers Based on the Levenshtein Distance.,1991,3,J. Cryptology,3,db/journals/joc/joc3.html#GolicM91,https://doi.org/10.1007/BF00196912 +Joan Boyar,On the Communication Complexity of Zero-Knowledge Proofs.,1993,6,J. Cryptology,2,db/journals/joc/joc6.html#BoyarLP93,https://doi.org/10.1007/BF02620135 +Karl Rubin,Using Abelian Varieties to Improve Pairing-Based Cryptography.,2009,22,J. Cryptology,3,db/journals/joc/joc22.html#RubinS09,https://doi.org/10.1007/s00145-008-9022-1 +Tamir Tassa,Hierarchical Threshold Secret Sharing.,2007,20,J. Cryptology,2,db/journals/joc/joc20.html#Tassa07,https://doi.org/10.1007/s00145-006-0334-8 +David Cash,Dynamic Proofs of Retrievability Via Oblivious RAM.,2017,30,J. Cryptology,1,db/journals/joc/joc30.html#CashKW17,https://doi.org/10.1007/s00145-015-9216-2 +Mario Lamberger,The Rebound Attack and Subspace Distinguishers: Application to Whirlpool.,2015,28,J. Cryptology,2,db/journals/joc/joc28.html#LambergerMSRR15,https://doi.org/10.1007/s00145-013-9166-5 +Ran Canetti,On the Limitations of Universally Composable Two-Party Computation Without Set-Up Assumptions.,2006,19,J. Cryptology,2,db/journals/joc/joc19.html#CanettiKL06,https://doi.org/10.1007/s00145-005-0419-9 +Chi-Jen Lu,Encryption against Storage-Bounded Adversaries from On-Line Strong Extractors.,2004,17,J. Cryptology,1,db/journals/joc/joc17.html#Lu04,https://doi.org/10.1007/s00145-003-0217-1 +Oded Goldreich 0001,Preface.,2000,13,J. Cryptology,1,db/journals/joc/joc13.html#Goldreich00,https://doi.org/10.1007/s001459910001 +Steven D. Galbraith,Endomorphisms for Faster Elliptic Curve Cryptography on a Large Class of Curves.,2011,24,J. Cryptology,3,db/journals/joc/joc24.html#GalbraithLS11,https://doi.org/10.1007/s00145-010-9065-y +Shoichi Hirose,A Simple Variant of the Merkle-Damgård Scheme with a Permutation.,2012,25,J. Cryptology,2,db/journals/joc/joc25.html#HirosePY12,https://doi.org/10.1007/s00145-010-9095-5 +Oded Goldreich 0001,A Perfect Zero-Knowledge Proof System for a Problem Equivalent to the Discrete Logarithm.,1993,6,J. Cryptology,2,db/journals/joc/joc6.html#GoldreichK93,https://doi.org/10.1007/BF02620137 +Ivan Damgård,An Extended Quadratic Frobenius Primality Test with Average- and Worst-Case Error Estimate.,2006,19,J. Cryptology,4,db/journals/joc/joc19.html#DamgardF06,https://doi.org/10.1007/s00145-006-0332-x +Erez Petrank,CBC MAC for Real-Time Data Sources.,2000,13,J. Cryptology,3,db/journals/joc/joc13.html#PetrankR00,https://doi.org/10.1007/s001450010009 +Zvika Brakerski,Multi-input Functional Encryption in the Private-Key Setting: Stronger Security from Weaker Assumptions.,2018,31,J. Cryptology,2,db/journals/joc/joc31.html#BrakerskiKS18,https://doi.org/10.1007/s00145-017-9261-0 +Arjen K. Lenstra,User Impersonation in Key Certification Schemes.,1993,6,J. Cryptology,4,db/journals/joc/joc6.html#LenstraY93,https://doi.org/10.1007/BF00203818 +Nigel P. Smart,Elliptic Curve Cryptosystems over Small Fields of Odd Characteristic.,1999,12,J. Cryptology,2,db/journals/joc/joc12.html#Smart99,https://doi.org/10.1007/PL00003820 +Markus Grassl,Cryptanalysis of the Tillich-Zémor Hash Function.,2011,24,J. Cryptology,1,db/journals/joc/joc24.html#GrasslIMS11,https://doi.org/10.1007/s00145-010-9063-0 +Eli Biham,Cryptanalysis of Triple Modes of Operation.,1999,12,J. Cryptology,3,db/journals/joc/joc12.html#Biham99,https://doi.org/10.1007/s001459900050 +Glenn A. Orton,A Design of a Fast Pipelined Modular Multiplier Based on a Diminished-Radix Algorithm.,1993,6,J. Cryptology,4,db/journals/joc/joc6.html#OrtonPT93,https://doi.org/10.1007/BF00203816 +Toshiya Itoh,A Low Communication Competitive Interactive Proof System for Promised Quadratic Residuosity.,1996,9,J. Cryptology,2,db/journals/joc/joc9.html#ItohHT96,https://doi.org/10.1007/BF00190804 +Gordon B. Agnew,An Implementation for a Fast Public-Key Cryptosystem.,1991,3,J. Cryptology,2,db/journals/joc/joc3.html#AgnewMOV91,https://doi.org/10.1007/BF00196789 +Charanjit S. Jutla,Shorter Quasi-Adaptive NIZK Proofs for Linear Subspaces.,2017,30,J. Cryptology,4,db/journals/joc/joc30.html#JutlaR17,https://doi.org/10.1007/s00145-016-9243-7 +Oded Goldreich 0001,On Expected Probabilistic Polynomial-Time Adversaries: A Suggestion for Restricted Definitions and Their Benefits.,2010,23,J. Cryptology,1,db/journals/joc/joc23.html#Goldreich10,https://doi.org/10.1007/s00145-009-9050-5 +Ivan Damgård,Two-Key Triple Encryption.,1998,11,J. Cryptology,3,db/journals/joc/joc11.html#DamgardK98,https://doi.org/10.1007/s001459900044 +Don Coppersmith,On Polynomial Approximation of the Discrete Logarithm and the Diffie - Hellman Mapping.,2000,13,J. Cryptology,3,db/journals/joc/joc13.html#CoppersmithS00,https://doi.org/10.1007/s001450010002 +Luke O'Connor,Algebraic Nonlinearity and Its Applications to Cryptography.,1994,7,J. Cryptology,4,db/journals/joc/joc7.html#OConnorK94,https://doi.org/10.1007/BF00203964 +Eli Biham,New Types of Cryptanalytic Attacks Using Related Keys.,1994,7,J. Cryptology,4,db/journals/joc/joc7.html#Biham94,https://doi.org/10.1007/BF00203965 +Stephen M. Matyas,Key Processing with Control Vectors.,1991,3,J. Cryptology,2,db/journals/joc/joc3.html#Matyas91,https://doi.org/10.1007/BF00196792 +Johannes A. Buchmann,A Key-Exchange System Based on Imaginary Quadratic Fields.,1988,1,J. Cryptology,2,db/journals/joc/joc1.html#BuchmannW88,https://doi.org/10.1007/BF02351719 +Svetla Nikova,Secure Hardware Implementation of Nonlinear Functions in the Presence of Glitches.,2011,24,J. Cryptology,2,db/journals/joc/joc24.html#NikovaRS11,https://doi.org/10.1007/s00145-010-9085-7 +Moni Naor,Bit Commitment Using Pseudorandomness.,1991,4,J. Cryptology,2,db/journals/joc/joc4.html#Naor91,https://doi.org/10.1007/BF00196774 +Victor Shoup,On the Security of a Practical Identification Scheme.,1999,12,J. Cryptology,4,db/journals/joc/joc12.html#Shoup99,https://doi.org/10.1007/s001459900056 +Jérémy Jean,Improved Cryptanalysis of AES-like Permutations.,2014,27,J. Cryptology,4,db/journals/joc/joc27.html#JeanNP14,https://doi.org/10.1007/s00145-013-9156-7 +Michael J. Fischer,A Secure Protocol for the Oblivious Transfer (Extended Abstract).,1996,9,J. Cryptology,3,db/journals/joc/joc9.html#FischerMR96, +Ralph C. Merkle,A Fast Software One-Way Hash Function.,1990,3,J. Cryptology,1,db/journals/joc/joc3.html#Merkle90,https://doi.org/10.1007/BF00203968 +Dafna Kidron,Impossibility Results for Universal Composability in Public-Key Models and with Fixed Inputs.,2011,24,J. Cryptology,3,db/journals/joc/joc24.html#KidronL11,https://doi.org/10.1007/s00145-010-9069-7 +Serge Vaudenay,Cryptanalysis of the Chor - Rivest Cryptosystem.,2001,14,J. Cryptology,2,db/journals/joc/joc14.html#Vaudenay01,https://doi.org/10.1007/s001450010005 +Carlo Blundo,On a Fallacious Bound for Authentication Codes.,1999,12,J. Cryptology,3,db/journals/joc/joc12.html#BlundoSKO99,https://doi.org/10.1007/s001459900049 +Achiya Bar-On,Efficient Slide Attacks.,2018,31,J. Cryptology,3,db/journals/joc/joc31.html#Bar-OnBDK18,https://doi.org/10.1007/s00145-017-9266-8 +Lior Malka,How to Achieve Perfect Simulation and a Complete Problem for Non-interactive Perfect Zero-Knowledge.,2015,28,J. Cryptology,3,db/journals/joc/joc28.html#Malka15,https://doi.org/10.1007/s00145-013-9165-6 +Andrew Klapper,The Vulnerability of Geometric Sequences Based on Fields of Odd Characteristic.,1994,7,J. Cryptology,1,db/journals/joc/joc7.html#Klapper94,https://doi.org/10.1007/BF00195208 +Ran Canetti,Randomness versus Fault-Tolerance.,2000,13,J. Cryptology,1,db/journals/joc/joc13.html#CanettiKOR00,https://doi.org/10.1007/s001459910005 +Dario Catalano,Trapdoor Hard-to-Invert Group Isomorphisms and Their Application to Password-Based Authentication.,2007,20,J. Cryptology,1,db/journals/joc/joc20.html#CatalanoPP07,https://doi.org/10.1007/s00145-006-0431-8 +Ilya Mironov,Incremental Deterministic Public-Key Encryption.,2018,31,J. Cryptology,1,db/journals/joc/joc31.html#MironovPRS18,https://doi.org/10.1007/s00145-017-9252-1 +Zvika Brakerski,Function-Private Functional Encryption in the Private-Key Setting.,2018,31,J. Cryptology,1,db/journals/joc/joc31.html#BrakerskiS18,https://doi.org/10.1007/s00145-017-9255-y +Yehuda Lindell,An Efficient Protocol for Secure Two-Party Computation in the Presence of Malicious Adversaries.,2015,28,J. Cryptology,2,db/journals/joc/joc28.html#LindellP15,https://doi.org/10.1007/s00145-014-9177-x +Iftach Haitner,Reducing Complexity Assumptions for Statistically-Hiding Commitment.,2009,22,J. Cryptology,3,db/journals/joc/joc22.html#HaitnerHKKMS09,https://doi.org/10.1007/s00145-007-9012-8 +ämin Baumeler,Quantum Private Information Retrieval has Linear Communication Complexity.,2015,28,J. Cryptology,1,db/journals/joc/joc28.html#BaumelerB15,https://doi.org/10.1007/s00145-014-9180-2 +Carlo Blundo,On Unconditionally Secure Distributed Oblivious Transfer.,2007,20,J. Cryptology,3,db/journals/joc/joc20.html#BlundoDSS07,https://doi.org/10.1007/s00145-007-0327-2 +Gilad Asharov,A Full Proof of the BGW Protocol for Perfectly Secure Multiparty Computation.,2017,30,J. Cryptology,1,db/journals/joc/joc30.html#AsharovL17,https://doi.org/10.1007/s00145-015-9214-4 +Patrick Longa,Four-Dimensional Gallant-Lambert-Vanstone Scalar Multiplication.,2014,27,J. Cryptology,2,db/journals/joc/joc27.html#LongaS14,https://doi.org/10.1007/s00145-012-9144-3 +Carmit Hazay,Efficient One-Sided Adaptively Secure Computation.,2017,30,J. Cryptology,1,db/journals/joc/joc30.html#HazayP17,https://doi.org/10.1007/s00145-015-9222-4 +Jonathan Katz,Parallel and Concurrent Security of the HB and HB+ Protocols.,2010,23,J. Cryptology,3,db/journals/joc/joc23.html#KatzSS10,https://doi.org/10.1007/s00145-010-9061-2 +Luke O'Connor,An Analysis of a Class of Algorithms for S-Box Construction.,1994,7,J. Cryptology,3,db/journals/joc/joc7.html#OConnor94,https://doi.org/10.1007/BF02318546 +Peter de Rooij,On Schnorr's Preprocessing for Digital Signature Schemes.,1997,10,J. Cryptology,1,db/journals/joc/joc10.html#Rooij97,https://doi.org/10.1007/s001459900016 +Eli Biham,Cryptanalysis of Skipjack Reduced to 31 Rounds Using Impossible Differentials.,2005,18,J. Cryptology,4,db/journals/joc/joc18.html#BihamBS05,https://doi.org/10.1007/s00145-005-0129-3 +James Aspnes,Spreading Alerts Quietly and the Subgroup Escape Problem.,2015,28,J. Cryptology,4,db/journals/joc/joc28.html#AspnesDYGP15,https://doi.org/10.1007/s00145-014-9181-1 +Michael Ben-Or,Trading Help for Interaction in Statistical Zero-Knowledge Proofs.,2003,16,J. Cryptology,2,db/journals/joc/joc16.html#Ben-OrG03,https://doi.org/10.1007/s00145-002-0113-0 +Nigel P. Smart,A Fast Diffie-Hellman Protocol in Genus 2.,1999,12,J. Cryptology,1,db/journals/joc/joc12.html#SmartS99,https://doi.org/10.1007/PL00003818 +Mahdi Sajadieh,Efficient Recursive Diffusion Layers for Block Ciphers and Hash Functions.,2015,28,J. Cryptology,2,db/journals/joc/joc28.html#SajadiehDMS15,https://doi.org/10.1007/s00145-013-9163-8 +Gagan Aggarwal,Secure Computation of the Median (and Other Elements of Specified Ranks).,2010,23,J. Cryptology,3,db/journals/joc/joc23.html#AggarwalMP10,https://doi.org/10.1007/s00145-010-9059-9 +Spyros S. Magliveras,Algebraic Properties of Cryptosystem PGM.,1992,5,J. Cryptology,3,db/journals/joc/joc5.html#MagliverasM92,https://doi.org/10.1007/BF02451113 +S. J. Phillips,Strongly Ideal Secret Sharing Schemes.,1992,5,J. Cryptology,3,db/journals/joc/joc5.html#PhillipsP92,https://doi.org/10.1007/BF02451114 +Arjen K. Lenstra,Preface.,2004,17,J. Cryptology,4,db/journals/joc/joc17.html#Lenstra04,https://doi.org/10.1007/s00145-004-1704-8 +Michael J. Jacobson Jr.,An Improved Real-Quadratic-Field-Based Key Exchange Procedure.,2006,19,J. Cryptology,2,db/journals/joc/joc19.html#JacobsonSW06,https://doi.org/10.1007/s00145-005-0357-6 +Michel Abdalla,Tightly Secure Signatures From Lossy Identification Schemes.,2016,29,J. Cryptology,3,db/journals/joc/joc29.html#AbdallaFLT16,https://doi.org/10.1007/s00145-015-9203-7 +Gilad Asharov,More Efficient Oblivious Transfer Extensions.,2017,30,J. Cryptology,3,db/journals/joc/joc30.html#AsharovLSZ17,https://doi.org/10.1007/s00145-016-9236-6 +Amos Beimel,Buses for Anonymous Message Delivery.,2003,16,J. Cryptology,1,db/journals/joc/joc16.html#BeimelD03,https://doi.org/10.1007/s00145-002-0128-6 +Ute Rosenbaum,A Lower Bound on Authentication After Having Observed a Sequence of Messages.,1993,6,J. Cryptology,3,db/journals/joc/joc6.html#Rosenbaum93,https://doi.org/10.1007/BF00198462 +Giuseppe Ateniese,Provably-Secure Time-Bound Hierarchical Key Assignment Schemes.,2012,25,J. Cryptology,2,db/journals/joc/joc25.html#AtenieseSFM12,https://doi.org/10.1007/s00145-010-9094-6 +Don Coppersmith,The Security of the Birational Permutation Signature Schemes.,1997,10,J. Cryptology,3,db/journals/joc/joc10.html#CoppersmithSV97,https://doi.org/10.1007/s001459900028 +Dominique Schröder,Security of Blind Signatures Revisited.,2017,30,J. Cryptology,2,db/journals/joc/joc30.html#SchroderU17,https://doi.org/10.1007/s00145-015-9225-1 +Mihir Bellare,New Proofs for NMAC and HMAC: Security without Collision Resistance.,2015,28,J. Cryptology,4,db/journals/joc/joc28.html#Bellare15,https://doi.org/10.1007/s00145-014-9185-x +Itai Dinur,Key Recovery Attacks on Iterated Even-Mansour Encryption Schemes.,2016,29,J. Cryptology,4,db/journals/joc/joc29.html#DinurDKS16,https://doi.org/10.1007/s00145-015-9207-3 +Alex Biryukov,Structural Cryptanalysis of SASAS.,2010,23,J. Cryptology,4,db/journals/joc/joc23.html#BiryukovS10,https://doi.org/10.1007/s00145-010-9062-1 +Tamir Tassa,Multipartite Secret Sharing by Bivariate Interpolation.,2009,22,J. Cryptology,2,db/journals/joc/joc22.html#TassaD09,https://doi.org/10.1007/s00145-008-9027-9 +Amos Beimel,Robust Information-Theoretic Private Information Retrieval.,2007,20,J. Cryptology,3,db/journals/joc/joc20.html#BeimelS07,https://doi.org/10.1007/s00145-007-0424-2 +Shi Bai,Improved Security Proofs in Lattice-Based Cryptography: Using the Rényi Divergence Rather than the Statistical Distance.,2018,31,J. Cryptology,2,db/journals/joc/joc31.html#BaiLRSSS18,https://doi.org/10.1007/s00145-017-9265-9 +Ernest F. Brickell,On the Classification of Ideal Secret Sharing Schemes.,1991,4,J. Cryptology,2,db/journals/joc/joc4.html#BrickellD91,https://doi.org/10.1007/BF00196772 +Rosario Gennaro,RSA-Based Undeniable Signatures.,2000,13,J. Cryptology,4,db/journals/joc/joc13.html#GennaroRK00,https://doi.org/10.1007/s001450010001 +Kaoru Kurosawa,Almost k-Wise Independent Sample Spaces and Their Cryptologic Applications.,2001,14,J. Cryptology,4,db/journals/joc/joc14.html#KurosawaJS01,https://doi.org/10.1007/s00145-001-0010-y +Gilad Asharov,On Constructing One-Way Permutations from Indistinguishability Obfuscation.,2018,31,J. Cryptology,3,db/journals/joc/joc31.html#AsharovS18,https://doi.org/10.1007/s00145-017-9268-6 +Uriel Feige,Zero-Knowledge Proofs of Identity.,1988,1,J. Cryptology,2,db/journals/joc/joc1.html#FeigeFS88,https://doi.org/10.1007/BF02351717 +Masayuki Abe,Tag-KEM/DEM: A New Framework for Hybrid Encryption.,2008,21,J. Cryptology,1,db/journals/joc/joc21.html#AbeGK08,https://doi.org/10.1007/s00145-007-9010-x +Michel Abdalla,Wildcarded Identity-Based Encryption.,2011,24,J. Cryptology,1,db/journals/joc/joc24.html#AbdallaBCDMNSS11,https://doi.org/10.1007/s00145-010-9060-3 +Alfredo De Santis,The Power of Preprocessing in Zero-Knowledge Proofs of Knowledge.,1996,9,J. Cryptology,3,db/journals/joc/joc9.html#SantisP96, +Martín Abadi,Reconciling Two Views of Cryptography (The Computational Soundness of Formal Encryption).,2002,15,J. Cryptology,2,db/journals/joc/joc15.html#AbadiR02,https://doi.org/10.1007/s00145-001-0014-7 +David Chaum,The Dining Cryptographers Problem: Unconditional Sender and Recipient Untraceability.,1988,1,J. Cryptology,1,db/journals/joc/joc1.html#Chaum88,https://doi.org/10.1007/BF00206326 +Ernest F. Brickell,An Interactive Identification Scheme Based on Discrete Logarithms and Factoring.,1992,5,J. Cryptology,1,db/journals/joc/joc5.html#BrickellM92,https://doi.org/10.1007/BF00191319 +Marc Fischlin,Robust Multi-Property Combiners for Hash Functions.,2014,27,J. Cryptology,3,db/journals/joc/joc27.html#FischlinLP14,https://doi.org/10.1007/s00145-013-9148-7 +Mike Burmester,Divertible and Subliminal-Free Zero-Knowledge Proofs for Languages.,1999,12,J. Cryptology,3,db/journals/joc/joc12.html#BurmesterDISS99,https://doi.org/10.1007/s001459900053 +Hendrik W. Lenstra Jr.,On the Chor-Rivest Knapsack Cryptosystem.,1991,3,J. Cryptology,3,db/journals/joc/joc3.html#Lenstra91,https://doi.org/10.1007/BF00196908 +Ran Canetti,Adaptive versus Non-Adaptive Security of Multi-Party Protocols.,2004,17,J. Cryptology,3,db/journals/joc/joc17.html#CanettiDDIM04,https://doi.org/10.1007/s00145-004-0135-x +Joe Kilian,An Efficient Noninteractive Zero-Knowledge Proof System for NP with General Assumptions.,1998,11,J. Cryptology,1,db/journals/joc/joc11.html#KilianP98,https://doi.org/10.1007/s001459900032 +Adrian Kent,Secure Classical Bit Commitment Using Fixed Capacity Communication Channels.,2005,18,J. Cryptology,4,db/journals/joc/joc18.html#Kent05,https://doi.org/10.1007/s00145-005-0905-8 +John Black,On the Impossibility of Highly-Efficient Blockcipher-Based Hash Functions.,2009,22,J. Cryptology,3,db/journals/joc/joc22.html#BlackCS09,https://doi.org/10.1007/s00145-008-9030-1 +Hoi-Kwong Lo,Efficient Quantum Key Distribution Scheme and a Proof of Its Unconditional Security.,2005,18,J. Cryptology,2,db/journals/joc/joc18.html#LoCA05,https://doi.org/10.1007/s00145-004-0142-y +Michael J. Fischer,Bounds on Secret Key Exchange Using a Random Deal of Cards.,1996,9,J. Cryptology,2,db/journals/joc/joc9.html#FischerW96,https://doi.org/10.1007/BF00190803 +Shafi Goldwasser,Secure Multi-Party Computation without Agreement.,2005,18,J. Cryptology,3,db/journals/joc/joc18.html#GoldwasserL05,https://doi.org/10.1007/s00145-005-0319-z +Shai Halevi,Efficient Commitment Schemes with Bounded Sender and Unbounded Receiver.,1999,12,J. Cryptology,2,db/journals/joc/joc12.html#Halevi99,https://doi.org/10.1007/PL00003821 +Donald W. Davies,Pairs and Triplets of DES S-Boxes.,1995,8,J. Cryptology,1,db/journals/joc/joc8.html#DaviesM95,https://doi.org/10.1007/BF00204799 +Shafi Goldwasser,On Best-Possible Obfuscation.,2014,27,J. Cryptology,3,db/journals/joc/joc27.html#GoldwasserR14,https://doi.org/10.1007/s00145-013-9151-z +Fred Piper,Linear Ciphers and Spreads.,1989,1,J. Cryptology,3,db/journals/joc/joc1.html#PiperW89,https://doi.org/10.1007/BF02252876 +Oded Goldreich 0001,Definitions and Properties of Zero-Knowledge Proof Systems.,1994,7,J. Cryptology,1,db/journals/joc/joc7.html#GoldreichO94,https://doi.org/10.1007/BF00195207 +Daniel R. L. Brown,Breaking RSA May Be As Difficult As Factoring.,2016,29,J. Cryptology,1,db/journals/joc/joc29.html#Brown16,https://doi.org/10.1007/s00145-014-9192-y +Rafael Pass,Public-Coin Parallel Zero-Knowledge for NP.,2013,26,J. Cryptology,1,db/journals/joc/joc26.html#PassRT13,https://doi.org/10.1007/s00145-011-9110-5 +Ben Morris,Deterministic Encryption with the Thorp Shuffle.,2018,31,J. Cryptology,2,db/journals/joc/joc31.html#MorrisRS18,https://doi.org/10.1007/s00145-017-9262-z +Yan Zong Ding,Constant-Round Oblivious Transfer in the Bounded Storage Model.,2007,20,J. Cryptology,2,db/journals/joc/joc20.html#DingHRS07,https://doi.org/10.1007/s00145-006-0438-1 +Burton S. Kaliski Jr.,One-Way Permutations on Elliptic Curves.,1991,3,J. Cryptology,3,db/journals/joc/joc3.html#Kaliski91,https://doi.org/10.1007/BF00196911 +Julia Borghoff,Slender-Set Differential Cryptanalysis.,2013,26,J. Cryptology,1,db/journals/joc/joc26.html#BorghoffKLT13,https://doi.org/10.1007/s00145-011-9111-4 +Yosuke Todo,Integral Cryptanalysis on Full MISTY1.,2017,30,J. Cryptology,3,db/journals/joc/joc30.html#Todo17,https://doi.org/10.1007/s00145-016-9240-x +Paul C. van Oorschot,Parallel Collision Search with Cryptanalytic Applications.,1999,12,J. Cryptology,1,db/journals/joc/joc12.html#OorschotW99,https://doi.org/10.1007/PL00003816 +R. Forre,Methods and Instruments for Designing S-Boxes.,1990,2,J. Cryptology,3,db/journals/joc/joc2.html#Forre90,https://doi.org/10.1007/BF00190799 +Spyros S. Magliveras,New Approaches to Designing Public Key Cryptosystems Using One-Way Functions and Trapdoors in Finite Groups.,2002,15,J. Cryptology,4,db/journals/joc/joc15.html#MagliverasST02,https://doi.org/10.1007/s00145-001-0018-3 +Ran Canetti,Preface.,2005,18,J. Cryptology,3,db/journals/joc/joc18.html#Canetti05,https://doi.org/10.1007/s00145-005-1803-1 +László Csirmaz,The Size of a Share Must Be Large.,1997,10,J. Cryptology,4,db/journals/joc/joc10.html#Csirmaz97,https://doi.org/10.1007/s001459900029 +Douglas R. Stinson,The Combinatorics of Authentication and Secrecy Codes.,1990,2,J. Cryptology,1,db/journals/joc/joc2.html#Stinson90,https://doi.org/10.1007/BF02252868 +Ran Canetti,Maintaining Authenticated Communication in the Presence of Break-Ins.,2000,13,J. Cryptology,1,db/journals/joc/joc13.html#CanettiHH00,https://doi.org/10.1007/s001459910004 +Christof Paar,Guest Editorial.,2011,24,J. Cryptology,2,db/journals/joc/joc24.html#PaarQS11,https://doi.org/10.1007/s00145-011-9099-9 +Burton S. Kaliski Jr.,A Chosen Message Attack on Demytko's Elliptic Curve Cryptosystem.,1997,10,J. Cryptology,1,db/journals/joc/joc10.html#Kaliski97,https://doi.org/10.1007/s001459900020 +Marc Joye,Chinese Remaindering Based Cryptosystems in the Presence of Faults.,1999,12,J. Cryptology,4,db/journals/joc/joc12.html#JoyeLQ99,https://doi.org/10.1007/s001459900055 +John Black,CBC MACs for Arbitrary-Length Messages: The Three-Key Constructions.,2005,18,J. Cryptology,2,db/journals/joc/joc18.html#BlackR05,https://doi.org/10.1007/s00145-004-0016-3 +Jovan Dj. Golic,On Matroid Characterization of Ideal Secret Sharing Schemes.,1998,11,J. Cryptology,2,db/journals/joc/joc11.html#Golic98,https://doi.org/10.1007/s001459900036 +Mark H. Carpenter,"Corrigendum to ""A stable and conservative interface treatment of arbitrary spatial accuracy"" [J. Comput. Phys. 148 (1999) 341-365].",2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#CarpenterNG17,https://doi.org/10.1016/j.jcp.2017.09.052 +Carine Boudesocque-Dubois,An adaptive multidomain Chebyshev method for nonlinear eigenvalue problems: Application to self-similar solutions of gas dynamics equations with nonlinear heat conduction.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#Boudesocque-DuboisLGC13,https://doi.org/10.1016/j.jcp.2012.10.057 +E. J. Brambley,Time-domain implementation of an impedance boundary condition with boundary layer correction.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#BrambleyG16,https://doi.org/10.1016/j.jcp.2016.05.064 +Rouhollah Tavakoli,Computationally efficient approach for the minimization of volume constrained vector-valued Ginzburg-Landau energy functional.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#Tavakoli15,https://doi.org/10.1016/j.jcp.2015.04.020 +Geoffrey M. Vasil,Tensor calculus in polar coordinates using Jacobi polynomials.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#VasilBLOBO16,https://doi.org/10.1016/j.jcp.2016.08.013 +Jan Tobias Horstmann,Hybrid simulation combining two space-time discretization of the discrete-velocity Boltzmann equation.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#HorstmannGML17,https://doi.org/10.1016/j.jcp.2017.08.029 +Dinshaw S. Balsara,Multidimensional Riemann problem with self-similar internal structure. Part I - Application to hyperbolic conservation laws on structured meshes.,2014,277,J. Comput. Physics,,db/journals/jcphy/jcphy277.html#Balsara14,https://doi.org/10.1016/j.jcp.2014.07.053 +Wei Guan,Finite-difference modeling of the electroseismic logging in a fluid-saturated porous formation.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#GuanH08,https://doi.org/10.1016/j.jcp.2008.02.001 +Eric Séverac,A spectral vanishing viscosity for the LES of turbulent flows within rotating cavities.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#SeveracS07,https://doi.org/10.1016/j.jcp.2007.05.023 +Thomas Hagstrom,Grid stabilization of high-order one-sided differencing I: First-order hyperbolic systems.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#HagstromH07,https://doi.org/10.1016/j.jcp.2006.09.017 +Esa Niemi,Dynamic multi-source X-ray tomography using a spacetime level set method.,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#NiemiLKHHS15,https://doi.org/10.1016/j.jcp.2015.03.016 +Enrique Domingo Fernández-Nieto,A multilayer shallow water system for polydisperse sedimentation.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#Fernandez-NietoKLB13,https://doi.org/10.1016/j.jcp.2012.12.008 +Borja Servan-Camas,Non-negativity and stability analyses of lattice Boltzmann method for advection-diffusion equation.,2009,228,J. Comput. Physics,1,db/journals/jcphy/jcphy228.html#Servan-CamasT09,https://doi.org/10.1016/j.jcp.2008.09.005 +Sheng Chen 0003,A simple enthalpy-based lattice Boltzmann scheme for complicated thermal systems.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#0003LZ12,https://doi.org/10.1016/j.jcp.2012.08.019 +Emre Biyikli,Multiresolution molecular mechanics: Implementation and efficiency.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#BiyikliT17,https://doi.org/10.1016/j.jcp.2016.10.010 +Konstantin Lipnikov,Analysis of the monotonicity conditions in the mimetic finite difference method for elliptic problems.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#LipnikovMS11,https://doi.org/10.1016/j.jcp.2010.12.039 +Lukas Failer,Adaptive time-step control for nonlinear fluid-structure interaction.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#FailerW18,https://doi.org/10.1016/j.jcp.2018.04.021 +Lin Lin 0001,Efficient iterative method for solving the Dirac-Kohn-Sham density functional theory.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#LinSE13,https://doi.org/10.1016/j.jcp.2013.03.030 +G. Clair,A multi-dimensional finite volume cell-centered direct ALE solver for hydrodynamics.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#ClairGP16,https://doi.org/10.1016/j.jcp.2016.08.050 +F. Vidal-Codina,A hybridizable discontinuous Galerkin method for computing nonlocal electromagnetic effects in three-dimensional metallic nanostructures.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#Vidal-CodinaNOP18,https://doi.org/10.1016/j.jcp.2017.11.025 +Matthew R. Cherry,A numerical method for predicting Rayleigh surface wave velocity in anisotropic crystals.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#CherrySG17,https://doi.org/10.1016/j.jcp.2017.09.002 +Anurag Dipankar,Symmetrized compact scheme for receptivity study of 2D transitional channel flow.,2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#DipankarS06,https://doi.org/10.1016/j.jcp.2005.10.018 +John P. Boyd 0001,Acceleration of algebraically-converging Fourier series when the coefficients have series in powers of 1/n.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#Boyd09,https://doi.org/10.1016/j.jcp.2008.10.039 +Luis E. Tobón,A new efficient 3D Discontinuous Galerkin Time Domain (DGTD) method for large and multiscale electromagnetic simulations.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#TobonRL15,https://doi.org/10.1016/j.jcp.2014.12.008 +Brody H. Foy,The Meshfree Finite Volume Method with application to multi-phase porous media models.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#FoyPT17,https://doi.org/10.1016/j.jcp.2016.12.045 +Sirui Tan,A staggered-grid finite-difference scheme optimized in the time-space domain for modeling scalar-wave propagation in geophysical problems.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#TanH14,https://doi.org/10.1016/j.jcp.2014.07.044 +SolKeun Jee,Conservative integral form of the incompressible Navier-Stokes equations for a rapidly pitching airfoil.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#JeeM12,https://doi.org/10.1016/j.jcp.2012.04.014 +Hiroshi Hayashi,Yin-Yang-Zhong grid: An overset grid system for a sphere.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#HayashiK16,https://doi.org/10.1016/j.jcp.2015.11.016 +Konstantinos Gourgoulias,Information criteria for quantifying loss of reversibility in parallelized KMC.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#GourgouliasKR17,https://doi.org/10.1016/j.jcp.2016.10.031 +Marta D'Elia,Optimization-based mesh correction with volume and convexity constraints.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#DEliaRPBS16,https://doi.org/10.1016/j.jcp.2016.02.050 +Sharadha Viswanathan,Numerical implementation of mixing and molecular transport in LES/PDF studies of turbulent reacting flows.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#ViswanathanWP11,https://doi.org/10.1016/j.jcp.2011.05.020 +H. Sitaraman,A matrix free implicit scheme for solution of resistive magneto-hydrodynamics equations on unstructured grids.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#SitaramanR13,https://doi.org/10.1016/j.jcp.2013.06.003 +William Oberkampf,Measures of agreement between computation and experiment: Validation metrics.,2006,217,J. Comput. Physics,1,db/journals/jcphy/jcphy217.html#OberkampfB06,https://doi.org/10.1016/j.jcp.2006.03.037 +Cong Huang,A simple smoothness indicator for the WENO scheme with adaptive order.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#HuangC18,https://doi.org/10.1016/j.jcp.2017.10.005 +A. G. B. Cruz,A consistent and stabilized continuous/discontinuous Galerkin method for fourth-order incompressible flow problems.,2012,231,J. Comput. Physics,16,db/journals/jcphy/jcphy231.html#CruzCD12,https://doi.org/10.1016/j.jcp.2012.05.002 +Yingda Cheng,Recovering doping profiles in semiconductor devices with the Boltzmann-Poisson model.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#ChengGR11,https://doi.org/10.1016/j.jcp.2011.01.034 +Florian Rauser,Ensemble-type numerical uncertainty information from single model integrations.,2015,292,J. Comput. Physics,,db/journals/jcphy/jcphy292.html#RauserMK15,https://doi.org/10.1016/j.jcp.2015.02.043 +Jasmine Foo,Multi-element probabilistic collocation method in high dimensions.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#FooK10,https://doi.org/10.1016/j.jcp.2009.10.043 +A. Shlivinski,Gaussian-windowed frame based method of moments formulation of surface-integral-equation for extended apertures.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#ShlivinskiL16,https://doi.org/10.1016/j.jcp.2015.12.028 +Matthew J. Zahr,An adjoint method for a high-order discretization of deforming domain conservation laws for optimization of flow problems.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#ZahrP16,https://doi.org/10.1016/j.jcp.2016.09.012 +Timothy J. Moroney,Efficient solution of two-sided nonlinear space-fractional diffusion equations using fast Poisson preconditioners.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#MoroneyY13,https://doi.org/10.1016/j.jcp.2013.03.029 +J. P. Briggs,Separable projection integrals for higher-order correlators of the cosmic microwave sky: Acceleration by factors exceeding 100.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#BriggsPFJS16,https://doi.org/10.1016/j.jcp.2016.01.019 +Edoardo Milotti,Model-based fit procedure for power-law-like spectra.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#Milotti06,https://doi.org/10.1016/j.jcp.2006.01.033 +Ee Han,An adaptive GRP scheme for compressible fluid flows.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#HanLT10,https://doi.org/10.1016/j.jcp.2009.10.038 +N. Anders Petersson,Discretizing singular point sources in hyperbolic wave propagation problems.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#PeterssonOSB16,https://doi.org/10.1016/j.jcp.2016.05.060 +Jung Hee Seo,A high-order immersed boundary method for acoustic wave scattering and low-Mach number flow-induced sound in complex geometries.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#SeoM11,https://doi.org/10.1016/j.jcp.2010.10.017 +Jonghoon Bin,Adaptive mesh redistribution method for domains with complex boundaries.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#BinUH11,https://doi.org/10.1016/j.jcp.2011.01.021 +Bin Zhang,The equilibrium state method for hyperbolic conservation laws with stiff reaction terms.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#ZhangLCW14,https://doi.org/10.1016/j.jcp.2013.12.043 +Yue Yu,Fractional modeling of viscoelasticity in 3D cerebral arteries and aneurysms.,2016,323,J. Comput. Physics,,db/journals/jcphy/jcphy323.html#YuPK16,https://doi.org/10.1016/j.jcp.2016.06.038 +P. Salinas,A discontinuous control volume finite element method for multi-phase flow in heterogeneous porous media.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#SalinasPXOPJ18,https://doi.org/10.1016/j.jcp.2017.09.058 +Seth B. Dworkin,A mass-conserving vorticity-velocity formulation with application to nonreacting and reacting flows.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#DworkinBS06,https://doi.org/10.1016/j.jcp.2005.11.002 +David A. Brown,A monolithic homotopy continuation algorithm with application to computational fluid dynamics.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#BrownZ16,https://doi.org/10.1016/j.jcp.2016.05.031 +A. Cervone,Simulation of axisymmetric jets with a finite element Navier-Stokes solver and a multilevel VOF approach.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#CervoneMS10,https://doi.org/10.1016/j.jcp.2010.05.025 +Shiwei Zhou,A variational level set method for the topology optimization of steady-state Navier-Stokes flow.,2008,227,J. Comput. Physics,24,db/journals/jcphy/jcphy227.html#ZhouL08,https://doi.org/10.1016/j.jcp.2008.08.022 +C. Brehm,A locally stabilized immersed boundary method for the compressible Navier-Stokes equations.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#BrehmHF15,https://doi.org/10.1016/j.jcp.2015.04.023 +Giampietro Carpentieri,Adjoint-based aerodynamic shape optimization on unstructured meshes.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#CarpentieriKT07,https://doi.org/10.1016/j.jcp.2007.02.011 +Adarsh Krishnamurthy,Patient-specific models of cardiac biomechanics.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#KrishnamurthyVCFNBSKNOMK13,https://doi.org/10.1016/j.jcp.2012.09.015 +Ali Khajeh-Saeed,Acceleration of the Smith-Waterman algorithm using single and multiple graphics processors.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#Khajeh-SaeedPP10,https://doi.org/10.1016/j.jcp.2010.02.009 +Siddhartha Mishra,Multi-level Monte Carlo finite volume methods for uncertainty quantification of acoustic wave propagation in random heterogeneous layered medium.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#MishraSS16,https://doi.org/10.1016/j.jcp.2016.02.014 +Wurigen Bo,Adaptive reconnection-based arbitrary Lagrangian Eulerian method.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#BoS15,https://doi.org/10.1016/j.jcp.2015.07.032 +P. Tamain,TOKAM-3D: A 3D fluid code for transport and turbulence in the edge plasma of Tokamaks.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#TamainGTGGSSCC10,https://doi.org/10.1016/j.jcp.2009.09.031 +Yalchin Efendiev,Generalized multiscale finite element methods (GMsFEM).,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#EfendievGH13,https://doi.org/10.1016/j.jcp.2013.04.045 +Romain Aubry,A three-dimensional parametric mesher with surface boundary-layer capability.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#AubryKMD14,https://doi.org/10.1016/j.jcp.2014.03.057 +Carlos Jerez-Hanckes,Multitrace/singletrace formulations and Domain Decomposition Methods for the solution of Helmholtz transmission problems for bounded composite scatterers.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#Jerez-HanckesPT17,https://doi.org/10.1016/j.jcp.2017.08.050 +Xiaoxin Lu,Multiscale modeling of nonlinear electric conductivity in graphene-reinforced nanocomposites taking into account tunnelling effect.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#LuYDB17,https://doi.org/10.1016/j.jcp.2017.01.063 +Petr Hellinger,Langevin representation of Coulomb collisions for bi-Maxwellian plasmas.,2010,229,J. Comput. Physics,14,db/journals/jcphy/jcphy229.html#HellingerT10,https://doi.org/10.1016/j.jcp.2010.04.009 +Joseph S. Shang,A computational approach for hypersonic nonequilibrium radiation utilizing space partition algorithm and Gauss quadrature.,2014,266,J. Comput. Physics,,db/journals/jcphy/jcphy266.html#ShangAHS14,https://doi.org/10.1016/j.jcp.2014.02.007 +Mostafa Jamshidian,Phase field modelling of stressed grain growth: Analytical study and the effect of microstructural length scale.,2014,261,J. Comput. Physics,,db/journals/jcphy/jcphy261.html#JamshidianR14,https://doi.org/10.1016/j.jcp.2013.12.022 +Antonius Dorda,A WENO-solver combined with adaptive momentum discretization for the Wigner transport equation and its application to resonant tunneling diodes.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#DordaS15,https://doi.org/10.1016/j.jcp.2014.12.026 +Xiaohui Su,On the characteristics-based ACM for incompressible flows.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#SuZH07,https://doi.org/10.1016/j.jcp.2007.08.009 +Tsorng-Whay Pan,A 3D DLM/FD method for simulating the motion of spheres and ellipsoids under creeping flow conditions.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#PanGCG18,https://doi.org/10.1016/j.jcp.2017.09.042 +Franco Auteri,Spectral solvers for spherical elliptic problems.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#AuteriQ07,https://doi.org/10.1016/j.jcp.2007.07.011 +Jasper J. Kreeft,Mixed mimetic spectral element method for Stokes flow: A pointwise divergence-free solution.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#KreeftG13,https://doi.org/10.1016/j.jcp.2012.10.043 +David B. Stein,Immersed boundary smooth extension: A high-order method for solving PDE on arbitrary smooth domains using Fourier spectral methods.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#SteinGT16,https://doi.org/10.1016/j.jcp.2015.10.023 +Jeff D. Eldredge,Numerical simulation of the fluid dynamics of 2D rigid body motion with the vortex particle method.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#Eldredge07,https://doi.org/10.1016/j.jcp.2006.06.038 +James M. McDonough,An alternative discretization and solution procedure for the dual phase-lag equation.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#McDonoughKKY06,https://doi.org/10.1016/j.jcp.2006.03.023 +Jason E. Hicken,Dual consistency and functional accuracy: a finite-difference perspective.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#HickenZ14,https://doi.org/10.1016/j.jcp.2013.08.014 +Di Yang,Simulation of viscous flows with undulatory boundaries: Part II. Coupling with other solvers for two-fluid computations.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#YangS11a,https://doi.org/10.1016/j.jcp.2011.02.035 +Zhan Chen,Differential geometry based solvation model I: Eulerian formulation.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#ChenBW10,https://doi.org/10.1016/j.jcp.2010.06.036 +Sang-Hyeon Lee,Effects of condition number on preconditioning for low Mach number flows.,2012,231,J. Comput. Physics,10,db/journals/jcphy/jcphy231.html#Lee12,https://doi.org/10.1016/j.jcp.2012.02.004 +V. Subramanian,Higher-order mimetic methods for unstructured meshes.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#SubramanianP06,https://doi.org/10.1016/j.jcp.2006.03.028 +H. C. Yee,"Corrigendum to ""Spurious behavior of shock-capturing methods by the fractional step approach: Problems containing stiff source terms and discontinuities"" [J. Comput. Physics 241 (2013) 266-291].",2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#YeeK0S13a,https://doi.org/10.1016/j.jcp.2013.05.021 +Ahmad El-Ajou,Approximate analytical solution of the nonlinear fractional KdV-Burgers equation: A new iterative algorithm.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#El-AjouAM15,https://doi.org/10.1016/j.jcp.2014.08.004 +Moataz O. Abu-Al-Saud,Multiscale level-set method for accurate modeling of immiscible two-phase flow with deposited thin films on solid surfaces.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#Abu-Al-SaudRT17,https://doi.org/10.1016/j.jcp.2016.12.038 +N. Chatzidai,On the elliptic mesh generation in domains containing multiple inclusions and undergoing large deformations.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#ChatzidaiGDT09,https://doi.org/10.1016/j.jcp.2008.11.020 +Choon Seng Chew,A generalized finite-difference (GFD) ALE scheme for incompressible flows around moving solid bodies on hybrid meshfree-Cartesian grids.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#ChewS006,https://doi.org/10.1016/j.jcp.2006.02.025 +Paola Gervasio,Algebraic fractional-step schemes with spectral methods for the incompressible Navier-Stokes equations.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#GervasioSV06,https://doi.org/10.1016/j.jcp.2005.09.018 +Felix Rieper,The influence of cell geometry on the accuracy of upwind schemes in the low mach number regime.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#RieperB09,https://doi.org/10.1016/j.jcp.2009.01.002 +Konstantin Lipnikov,The mimetic finite difference method for elliptic and parabolic problems with a staggered discretization of diffusion coefficient.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#LipnikovMMS16,https://doi.org/10.1016/j.jcp.2015.10.031 +Shin-ichi Iga,An equatorially enhanced grid with smooth resolution distribution generated by a spring dynamics method.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#Iga17,https://doi.org/10.1016/j.jcp.2016.10.017 +Pierric Kersaudy,A new surrogate modeling technique combining Kriging and polynomial chaos expansions - Application to uncertainty analysis in computational dosimetry.,2015,286,J. Comput. Physics,,db/journals/jcphy/jcphy286.html#KersaudySVPW15,https://doi.org/10.1016/j.jcp.2015.01.034 +Edward Santilli,The Stratified Ocean Model with Adaptive Refinement (SOMAR).,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#SantilliS15,https://doi.org/10.1016/j.jcp.2015.03.008 +S. Afkhami,A mesh-dependent model for applying dynamic contact angles to VOF simulations.,2009,228,J. Comput. Physics,15,db/journals/jcphy/jcphy228.html#AfkhamiZB09,https://doi.org/10.1016/j.jcp.2009.04.027 +Magnus Svärd,Weak solutions and convergent numerical schemes of modified compressible Navier-Stokes equations.,2015,288,J. Comput. Physics,,db/journals/jcphy/jcphy288.html#Svard15,https://doi.org/10.1016/j.jcp.2015.02.013 +Benzhuo Lu,Poisson-Nernst-Planck equations for simulating biomolecular diffusion-reaction processes I: Finite element solutions.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#LuHMZ10,https://doi.org/10.1016/j.jcp.2010.05.035 +Keizo Fujimoto,Electromagnetic full particle code with adaptive mesh refinement technique: Application to the current sheet evolution.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#FujimotoM06,https://doi.org/10.1016/j.jcp.2005.10.003 +Pierre Degond,A moving interface method for dynamic kinetic-fluid coupling.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#DegondDM07,https://doi.org/10.1016/j.jcp.2007.08.027 +Hao-Ran Liu,Fluid-structure interaction involving dynamic wetting: 2D modeling and simulations.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#LiuGD17,https://doi.org/10.1016/j.jcp.2017.07.017 +Hong Wang,A direct O(N log2 N) finite difference method for fractional diffusion equations.,2010,229,J. Comput. Physics,21,db/journals/jcphy/jcphy229.html#WangWS10,https://doi.org/10.1016/j.jcp.2010.07.011 +Dinshaw S. Balsara,Multidimensional Riemann problem with self-similar internal structure - part III - a multidimensional analogue of the HLLI Riemann solver for conservative hyperbolic systems.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#BalsaraN17,https://doi.org/10.1016/j.jcp.2017.05.038 +Igor Podlubny,Matrix approach to discrete fractional calculus II: Partial fractional differential equations.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#PodlubnyCSCJ09,https://doi.org/10.1016/j.jcp.2009.01.014 +Mustafa Kuzuoglu,Combining perturbation theory and transformation electromagnetics for finite element solution of Helmholtz-type scattering problems.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#KuzuogluO14,https://doi.org/10.1016/j.jcp.2014.06.057 +Yuki Homma,Numerical modeling of thermal force in a plasma for test-ion transport simulation based on Monte Carlo Binary Collision Model.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#HommaH12,https://doi.org/10.1016/j.jcp.2011.12.037 +Denys Dutykh,Finite volume schemes for dispersive wave propagation and runup.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#DutykhKM11,https://doi.org/10.1016/j.jcp.2011.01.003 +Chuchu Chen,Preservation of physical properties of stochastic Maxwell equations with additive noise via stochastic multi-symplectic methods.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#ChenHZ16,https://doi.org/10.1016/j.jcp.2015.11.052 +Nimrod Rospsha,Closed form FDTD-compatible Green's function based on combinatorics.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#RospshaK07,https://doi.org/10.1016/j.jcp.2007.05.017 +Shaozhong Deng,Extending the fast multipole method for charges inside a dielectric sphere in an ionic solvent: High-order image approximations for reaction fields.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#DengC07,https://doi.org/10.1016/j.jcp.2007.09.001 +Xiangfan Piao,One-step L(α)-stable temporal integration for the backward semi-Lagrangian scheme and its application in guiding center problems.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#PiaoKK18,https://doi.org/10.1016/j.jcp.2018.04.019 +Wanai Li,The multi-dimensional limiters for solving hyperbolic conservation laws on unstructured grids.,2011,230,J. Comput. Physics,21,db/journals/jcphy/jcphy230.html#LiRLL11,https://doi.org/10.1016/j.jcp.2011.06.018 +Stefano Berrone,Towards effective flow simulations in realistic discrete fracture networks.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#BerronePS16,https://doi.org/10.1016/j.jcp.2016.01.009 +Lyes Rahmouni,Two volume integral equations for the inhomogeneous and anisotropic forward problem in electroencephalography.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#RahmouniMA17,https://doi.org/10.1016/j.jcp.2017.07.013 +Suchuan Dong,An outflow boundary condition and algorithm for incompressible two-phase flows with phase field approach.,2014,266,J. Comput. Physics,,db/journals/jcphy/jcphy266.html#Dong14,https://doi.org/10.1016/j.jcp.2014.02.011 +Florian Schneider,Kershaw closures for linear transport equations in slab geometry II: High-order realizability-preserving discontinuous-Galerkin schemes.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#Schneider16a,https://doi.org/10.1016/j.jcp.2016.07.014 +Paul Norman,GPU-accelerated Classical Trajectory Calculation Direct Simulation Monte Carlo applied to shock waves.,2013,247,J. Comput. Physics,,db/journals/jcphy/jcphy247.html#NormanVS13,https://doi.org/10.1016/j.jcp.2013.03.060 +Changho Kim,Quantification of sampling uncertainty for molecular dynamics simulation: Time-dependent diffusion coefficient in simple fluids.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#KimBK15,https://doi.org/10.1016/j.jcp.2015.09.021 +William Rundell,Recovering an unknown source in a fractional diffusion problem.,2018,368,J. Comput. Physics,,db/journals/jcphy/jcphy368.html#RundellZ18,https://doi.org/10.1016/j.jcp.2018.04.046 +Benjamin Collins,Stability and accuracy of 3D neutron transport simulations using the 2D/1D method in MPACT.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#CollinsSKYKGLDG16,https://doi.org/10.1016/j.jcp.2016.08.022 +T. Lähivaara,A non-uniform basis order for the discontinuous Galerkin method of the 3D dissipative wave equation with perfectly matched layer.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#LahivaaraH10,https://doi.org/10.1016/j.jcp.2010.03.030 +Jingwei Hu,An asymptotic-preserving scheme for the semiconductor Boltzmann equation toward the energy-transport limit.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#HuW15,https://doi.org/10.1016/j.jcp.2014.10.050 +Dongryeol Lee,Multibody multipole methods.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#LeeOG12,https://doi.org/10.1016/j.jcp.2012.06.027 +Qing-Hua Li,Transient heat conduction analysis using the MLPG method and modified precise time step integration method.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#LiCK11,https://doi.org/10.1016/j.jcp.2011.01.019 +Qianshun Chang,Numerical computations for long-wave short-wave interaction equations in semi-classical limit.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#ChangWL08,https://doi.org/10.1016/j.jcp.2008.05.015 +Jiming Wu,Linearity preserving nine-point schemes for diffusion equation on distorted quadrilateral meshes.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#WuDGY10,https://doi.org/10.1016/j.jcp.2010.01.007 +Jianzhen Qian,The generalized Riemann problems for compressible fluid flows: Towards high order.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#QianLW14,https://doi.org/10.1016/j.jcp.2013.12.002 +Daehyun Wee,Modified interpolation kernels for treating diffusion and remeshing in vortex methods.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#WeeG06,https://doi.org/10.1016/j.jcp.2005.08.009 +Wei Guo 0004,Hybrid semi-Lagrangian finite element-finite difference methods for the Vlasov equation.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#GuoQ13,https://doi.org/10.1016/j.jcp.2012.09.014 +Kai Huang,Generalized Foldy-Lax formulation.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#HuangSZ10,https://doi.org/10.1016/j.jcp.2010.02.021 +Johan Larsson,Stability criteria for hybrid difference methods.,2008,227,J. Comput. Physics,5,db/journals/jcphy/jcphy227.html#LarssonG08,https://doi.org/10.1016/j.jcp.2007.11.025 +Ronny Ramlau,A Mumford-Shah level-set approach for the inversion and segmentation of X-ray tomography data.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#RamlauR07,https://doi.org/10.1016/j.jcp.2006.06.041 +Rafael J. de Moraes,Multiscale gradient computation for flow in heterogeneous porous media.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#MoraesRHJ17,https://doi.org/10.1016/j.jcp.2017.02.024 +Amir Paster,Connecting the dots: Semi-analytical and random walk numerical solutions of the diffusion-reaction equation with stochastic initial conditions.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#PasterBB14,https://doi.org/10.1016/j.jcp.2014.01.020 +L. Stricker,Numerical simulation of artificial microswimmers driven by Marangoni flow.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#Stricker17,https://doi.org/10.1016/j.jcp.2017.07.007 +Bernard Parent,Positivity-preserving dual time stepping schemes for gas dynamics.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#Parent18,https://doi.org/10.1016/j.jcp.2018.01.046 +Manuel Kindelan,Radial basis function interpolation in the limit of increasingly flat basis functions.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#KindelanMG16,https://doi.org/10.1016/j.jcp.2015.12.015 +Wenying Lu,Mass preserving discontinuous Galerkin methods for Schrödinger equations.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#LuHL15,https://doi.org/10.1016/j.jcp.2014.11.014 +Dmitry A. Fedosov,Velocity limit in DPD simulations of wall-bounded flows.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#FedosovPK08,https://doi.org/10.1016/j.jcp.2007.11.009 +Claes Eskilsson,Spectral/hp discontinuous Galerkin methods for modelling 2D Boussinesq equations.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#EskilssonS06,https://doi.org/10.1016/j.jcp.2005.07.017 +D. Fraggedakis,Discretization of three-dimensional free surface flows and moving boundary problems via elliptic grid methods based on variational principles.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#FraggedakisPDT17,https://doi.org/10.1016/j.jcp.2017.04.060 +Mahmoud Ismail,Adjoint-based inverse analysis of windkessel parameters for patient-specific vascular models.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#IsmailWG13,https://doi.org/10.1016/j.jcp.2012.10.028 +Tian Ding,Inverse transport calculations in optical imaging with subspace optimization algorithms.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#DingR14,https://doi.org/10.1016/j.jcp.2014.05.014 +François Fraysse,Upwind methods for the Baer-Nunziato equations and higher-order reconstruction using artificial viscosity.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#FraysseRRV16,https://doi.org/10.1016/j.jcp.2016.09.017 +D. Samaddar,Parallelization in time of numerical simulations of fully-developed plasma turbulence using the parareal algorithm.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#SamaddarNS10,https://doi.org/10.1016/j.jcp.2010.05.012 +Chu Wang,Connectivity-free front tracking method for multiphase flows with free surfaces.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#WangWZ13,https://doi.org/10.1016/j.jcp.2013.01.023 +Wenqiang Feng,Preconditioned steepest descent methods for some nonlinear elliptic equations involving p-Laplacian terms.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#FengSWW17,https://doi.org/10.1016/j.jcp.2016.12.046 +Brittany D. Froese,Fast finite difference solvers for singular solutions of the elliptic Monge-Ampère equation.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#FroeseO11,https://doi.org/10.1016/j.jcp.2010.10.020 +Buyang Li,A new approach for numerical simulation of the time-dependent Ginzburg-Landau equations.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#LiZ15,https://doi.org/10.1016/j.jcp.2015.09.049 +Giovanna Guidoboni,Stable loosely-coupled-type algorithm for fluid-structure interaction in blood flow.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#GuidoboniGCC09,https://doi.org/10.1016/j.jcp.2009.06.007 +Jie Shen 0001,An efficient moving mesh spectral method for the phase-field model of two-phase flows.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#ShenY09,https://doi.org/10.1016/j.jcp.2009.01.009 +Dimitri J. Mavriplis,Construction of the discrete geometric conservation law for high-order time-accurate simulations on dynamic meshes.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#MavriplisY06,https://doi.org/10.1016/j.jcp.2005.08.018 +Keh-Ming Shyue,A wave-propagation based volume tracking method for compressible multicomponent flow in two space dimensions.,2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#Shyue06,https://doi.org/10.1016/j.jcp.2005.10.030 +M. S. Chance,Calculation of the vacuum Green's function valid even for high toroidal mode numbers in tokamaks.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#ChanceTS07,https://doi.org/10.1016/j.jcp.2006.06.025 +Weigang Yao,A nonlinear modeling approach using weighted piecewise series and its applications to predict unsteady flows.,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#YaoL16,https://doi.org/10.1016/j.jcp.2016.04.052 +Edoardo Alinovi,A boundary element method for Stokes flows with interfaces.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#AlinoviB18,https://doi.org/10.1016/j.jcp.2017.12.004 +Erwin Franquet,Runge-Kutta discontinuous Galerkin method for the approximation of Baer and Nunziato type multiphase models.,2012,231,J. Comput. Physics,11,db/journals/jcphy/jcphy231.html#FranquetP12,https://doi.org/10.1016/j.jcp.2012.02.002 +Vitoriano Ruas,Hermite finite elements for diffusion phenomena.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#RuasBK13,https://doi.org/10.1016/j.jcp.2012.09.036 +Daniel A. Nelson,DG-FTLE: Lagrangian coherent structures with high-order discontinuous-Galerkin methods.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#NelsonJ15,https://doi.org/10.1016/j.jcp.2015.03.040 +David B. Stein,Immersed Boundary Smooth Extension (IBSE): A high-order method for solving incompressible flows in arbitrary smooth domains.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#SteinGT17,https://doi.org/10.1016/j.jcp.2017.01.010 +Souvik Chakraborty,An efficient algorithm for building locally refined hp - adaptive H-PCFE: Application to uncertainty quantification.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#ChakrabortyC17,https://doi.org/10.1016/j.jcp.2017.09.024 +Shiyi Li,A unified gas-kinetic scheme for axisymmetric flow in all Knudsen number regimes.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#LiLFX18,https://doi.org/10.1016/j.jcp.2018.04.004 +Jiangguo Liu,ELLAM for resolving the kinematics of two-dimensional resistive magnetohydrodynamic flows.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#LiuTC07,https://doi.org/10.1016/j.jcp.2007.09.009 +Bruce I. Cohen,Simulation of laser-plasma interactions and fast-electron transport in inhomogeneous plasma.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#CohenKD10,https://doi.org/10.1016/j.jcp.2010.03.001 +Sergey V. Shepel,New finite-element/finite-volume level set formulation for modelling two-phase incompressible flows.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#ShepelS06,https://doi.org/10.1016/j.jcp.2006.02.008 +Jeffrey W. Banks,Deforming composite grids for solving fluid structure problems.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#BanksHS12,https://doi.org/10.1016/j.jcp.2011.12.034 +Qing Nie,Compact integration factor methods in high spatial dimensions.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#NieWZL08,https://doi.org/10.1016/j.jcp.2008.01.050 +Jean C. Ragusa,A robust SN-DG-approximation for radiation transport in optically thick and diffusive regimes.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#RagusaGK12,https://doi.org/10.1016/j.jcp.2011.11.017 +Jun Bo Cheng,A sub-cell WENO reconstruction method for spatial derivatives in the ADER scheme.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#ChengTJT13,https://doi.org/10.1016/j.jcp.2013.05.034 +John Harlim,An ensemble Kalman filter for statistical estimation of physics constrained nonlinear regression models.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#HarlimMM14,https://doi.org/10.1016/j.jcp.2013.10.025 +Lulu Tian,An h-adaptive local discontinuous Galerkin method for the Navier-Stokes-Korteweg equations.,2016,319,J. Comput. Physics,,db/journals/jcphy/jcphy319.html#TianXKV16,https://doi.org/10.1016/j.jcp.2016.05.027 +Daniel A. Cogswell,Simulation of incompressible two-phase flow in porous media with large *teps.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#CogswellS17,https://doi.org/10.1016/j.jcp.2017.06.007 +Xiaofeng Yang 0003,Numerical approximations for the molecular beam epitaxial growth model based on the invariant energy quadratization method.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#YangZW17,https://doi.org/10.1016/j.jcp.2016.12.025 +Paul Tsuji,A sweeping preconditioner for time-harmonic Maxwell's equations with finite elements.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#TsujiEY12,https://doi.org/10.1016/j.jcp.2012.01.025 +John Harlim,Mathematical strategies for filtering complex systems: Regularly spaced sparse observations.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#HarlimM08,https://doi.org/10.1016/j.jcp.2008.01.049 +Stéphanie Chaillat,Theory and implementation of andℂ9*-matrix based iterative and direct solvers for Helmholtz and elastodynamic oscillatory kernels.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#ChaillatDC17,https://doi.org/10.1016/j.jcp.2017.09.013 +Zhiyong Li,A data-driven adaptive Reynolds-averaged Navier-Stokes k-χ9* model for turbulent flow.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#LiZBHM17,https://doi.org/10.1016/j.jcp.2017.05.009 +C. D. Sijoy,Volume-of-fluid algorithm with different modified dynamic material ordering methods and their comparisons.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#SijoyC10,https://doi.org/10.1016/j.jcp.2010.01.031 +Yong Li 0018,A higher-order Robert-Asselin type time filter.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#LiT14,https://doi.org/10.1016/j.jcp.2013.11.022 +Kevin W. Connington,Lattice Boltzmann simulations of forced wetting transitions of drops on superhydrophobic surfaces.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#ConningtonL13,https://doi.org/10.1016/j.jcp.2013.05.012 +Manuel Athènes,Free energy reconstruction from steered dynamics without post-processing.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#AthenesM10,https://doi.org/10.1016/j.jcp.2010.06.003 +Alexandre Vion,Double sweep preconditioner for optimized Schwarz methods applied to the Helmholtz problem.,2014,266,J. Comput. Physics,,db/journals/jcphy/jcphy266.html#VionG14,https://doi.org/10.1016/j.jcp.2014.02.015 +Longfei Xiao,A free surface interpolation approach for rapid simulation of short waves in meshless numerical wave tank based on the radial basis function.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#XiaoYPT16,https://doi.org/10.1016/j.jcp.2015.12.003 +R. C. Aldredge,Semi-Lagrangian advection-propagation (SLAP) scheme for three-dimensional interface tracking.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#Aldredge10,https://doi.org/10.1016/j.jcp.2010.03.006 +Thibault Dairay,Numerical dissipation vs. subgrid-scale modelling for large eddy simulation.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#DairayLLV17,https://doi.org/10.1016/j.jcp.2017.02.035 +Li-Lian Wang,On hp-convergence of prolate spheroidal wave functions and a new well-conditioned prolate-collocation scheme.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#WangZZ14,https://doi.org/10.1016/j.jcp.2014.03.005 +Ping Fan,A new smoothness indicator for improving the weighted essentially non-oscillatory scheme.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#FanSTY14,https://doi.org/10.1016/j.jcp.2014.03.032 +Nicola Castelletto,Scalable algorithms for three-field mixed finite element coupled poromechanics.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#CastellettoWF16,https://doi.org/10.1016/j.jcp.2016.09.063 +Martin Tillenius,A scalable RBF-FD method for atmospheric flow.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#TilleniusLLF15,https://doi.org/10.1016/j.jcp.2015.06.003 +Qin Li,Exponential Runge-Kutta for the inhomogeneous Boltzmann equations with high order of accuracy.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#LiP14,https://doi.org/10.1016/j.jcp.2013.11.020 +Jianke Yang,Newton-conjugate-gradient methods for solitary wave computations.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#Yang09,https://doi.org/10.1016/j.jcp.2009.06.012 +Bryan D. Quaife,High-volume fraction simulations of two-dimensional vesicle suspensions.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#QuaifeB14,https://doi.org/10.1016/j.jcp.2014.06.013 +Jingzhi Li,Enhanced multilevel linear sampling methods for inverse scattering problems.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#LiLW14,https://doi.org/10.1016/j.jcp.2013.09.048 +Chunlei Liang,A comparison of computational efficiencies of spectral difference method and correction procedure via reconstruction.,2013,239,J. Comput. Physics,,db/journals/jcphy/jcphy239.html#LiangCP13,https://doi.org/10.1016/j.jcp.2013.01.001 +Nail A. Gumerov,Efficient spectral and pseudospectral algorithms for 3D simulations of whistler-mode waves in a plasma.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#GumerovKSSP11,https://doi.org/10.1016/j.jcp.2010.12.038 +Chunjiang Ran,A gradient based algorithm to solve inverse plane bimodular problems of identification.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#RanYZ18,https://doi.org/10.1016/j.jcp.2017.11.005 +Alfredo Canelas,A new reconstruction method for the inverse potential problem.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#CanelasLN14,https://doi.org/10.1016/j.jcp.2013.10.020 +A. Iafrati,Modeling of ocean-atmosphere interaction phenomena during the breaking of modulated wave trains.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#IafratiBO14,https://doi.org/10.1016/j.jcp.2013.12.045 +Ahmad Kadoura,Accelerating Monte Carlo molecular simulations by reweighting and reconstructing Markov chains: Extrapolation of canonical ensemble averages and second derivatives to different temperature and density conditions.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#KadouraSS14,https://doi.org/10.1016/j.jcp.2014.03.038 +N. Germann,Numerical solution of an extended White-Metzner model for eccentric Taylor-Couette flow.,2011,230,J. Comput. Physics,21,db/journals/jcphy/jcphy230.html#GermannDW11,https://doi.org/10.1016/j.jcp.2011.07.007 +David Flad,Simulation of underresolved turbulent flows by adaptive filtering using the high order discontinuous Galerkin spectral element method.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#FladBM16,https://doi.org/10.1016/j.jcp.2015.11.064 +Murilo F. Tomé,Numerical simulation of viscoelastic flows using integral constitutive equations: A finite difference approach.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#TomeAAP08,https://doi.org/10.1016/j.jcp.2007.12.023 +Abouzar Kaboudian,The ghost solid method for the elastic solid-solid interface.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#KaboudianK14,https://doi.org/10.1016/j.jcp.2013.09.042 +Yongbin Ge,Multigrid method based on the transformation-free HOC scheme on nonuniform grids for 2D convection diffusion problems.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#GeC11,https://doi.org/10.1016/j.jcp.2011.02.027 +D. Shane Stafford,Using level sets for creating virtual random packs of non-spherical convex shapes.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#StaffordJ10,https://doi.org/10.1016/j.jcp.2010.01.003 +Paulo S. Branicio,Local stress calculation in simulations of multicomponent systems.,2009,228,J. Comput. Physics,22,db/journals/jcphy/jcphy228.html#BranicioS09,https://doi.org/10.1016/j.jcp.2009.08.024 +Chuanbin Du,An efficient S-DDM iterative approach for compressible contamination fluid flows in porous media.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#DuL10,https://doi.org/10.1016/j.jcp.2010.02.019 +Noma Park,A velocity-estimation subgrid model constrained by subgrid scale dissipation.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#ParkM08,https://doi.org/10.1016/j.jcp.2007.12.020 +Damien Violeau,On the maximum time step in weakly compressible SPH.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#VioleauL14,https://doi.org/10.1016/j.jcp.2013.09.001 +Hammad Mazhar,A differential variational approach for handling fluid-solid interaction problems via smoothed particle hydrodynamics.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#MazharPRJN18,https://doi.org/10.1016/j.jcp.2018.05.013 +Tsung-Min Hwang,"Erratum to ""Numerical simulation of three dimensional pyramid quantum dot"" [J. Comput. Phys. 196 (2004) 208-232].",2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#HwangLWW06,https://doi.org/10.1016/j.jcp.2005.11.001 +Philippe Chatelain,Isotropic compact interpolation schemes for particle methods.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#ChatelainL08,https://doi.org/10.1016/j.jcp.2007.11.039 +Liborio I. Costa,Meaningful *cales from Monte Carlo simulations of particle systems with hard-core interactions.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#Costa16,https://doi.org/10.1016/j.jcp.2016.09.023 +Kacper Kornet,A method for spectral DNS of low Rm channel flows based on the least dissipative modes.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#KornetP15,https://doi.org/10.1016/j.jcp.2015.05.018 +Kokou B. Dossou,Finite element computation of grating scattering matrices and application to photonic crystal band calculations.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#DossouBB06,https://doi.org/10.1016/j.jcp.2006.03.029 +Joaquín Ortega-Casanova,A numerical method for the study of nonlinear stability of axisymmetric flows based on the vector potential.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#Ortega-CasanovaF08,https://doi.org/10.1016/j.jcp.2007.11.041 +Liron Yatziv,O(N) implementation of the fast marching algorithm.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#YatzivBS06,https://doi.org/10.1016/j.jcp.2005.08.005 +Peter A. Bosler,A Lagrangian particle method with remeshing for tracer transport on the sphere.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#BoslerKKJ17,https://doi.org/10.1016/j.jcp.2017.03.052 +Hehu Xie,A multilevel finite element method for Fredholm integral eigenvalue problems.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#XieZ15,https://doi.org/10.1016/j.jcp.2015.09.043 +Pengtao Sun,A domain decomposition method for two-phase transport model in the cathode of a polymer electrolyte fuel cell.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#SunXWX09,https://doi.org/10.1016/j.jcp.2009.05.008 +Frederik Verhaeghe,Lattice Boltzmann modeling of microchannel flow in slip flow regime.,2009,228,J. Comput. Physics,1,db/journals/jcphy/jcphy228.html#VerhaegheLB09,https://doi.org/10.1016/j.jcp.2008.09.004 +Benjamin J. Sturdevant,Finite time step and spatial grid effects in 8*f simulation of warm plasmas.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#SturdevantP16,https://doi.org/10.1016/j.jcp.2015.10.055 +Sergey Litvinov,Towards consistence and convergence of conservative SPH approximations.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#LitvinovHA15,https://doi.org/10.1016/j.jcp.2015.08.041 +Andris M. Dimits,Understanding the accuracy of Nanbu's numerical Coulomb collision operator.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#DimitsWCCH09,https://doi.org/10.1016/j.jcp.2009.03.041 +Hui Liang,A new multi-domain method based on an analytical control surface for linear and second-order mean drift wave loads on floating bodies.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#LiangC17,https://doi.org/10.1016/j.jcp.2017.07.014 +Alireza Najafi-Yazdi,A low-dispersion and low-dissipation implicit Runge-Kutta scheme.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#Najafi-YazdiM13,https://doi.org/10.1016/j.jcp.2012.08.050 +Chunlei Liang,Spectral difference method for compressible flow on unstructured grids with mixed elements.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#LiangJW09,https://doi.org/10.1016/j.jcp.2008.12.038 +M. Ganesh,A high-order tangential basis algorithm for electromagnetic scattering by curved surfaces.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#GaneshH08,https://doi.org/10.1016/j.jcp.2008.01.016 +Craig Michoski,Adaptive hierarchic transformations for dynamically p-enriched slope-limiting over discontinuous Galerkin systems of generalized equations.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#MichoskiMDWKW11,https://doi.org/10.1016/j.jcp.2011.07.009 +Sumesh P. Thampi,Isotropic discrete Laplacian operators from lattice hydrodynamics.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#ThampiAAS13,https://doi.org/10.1016/j.jcp.2012.07.037 +Philip Mocz,Correspondence between constrained transport and vector potential methods for magnetohydrodynamics.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#Mocz17,https://doi.org/10.1016/j.jcp.2016.09.059 +Aaron Katz,High-order flux correction/finite difference schemes for strand grids.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#KatzW15,https://doi.org/10.1016/j.jcp.2014.11.019 +Denis V. Voskov,Operator-based linearization approach for modeling of multiphase multi-component flow in porous media.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#Voskov17,https://doi.org/10.1016/j.jcp.2017.02.041 +Vittorio Romano,2D numerical simulation of the MEP energy-transport model with a finite difference scheme.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#Romano07,https://doi.org/10.1016/j.jcp.2006.06.028 +Yoko Takakura,Direct-expansion forms of ADER schemes for conservation laws and their verification.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#Takakura06,https://doi.org/10.1016/j.jcp.2006.05.013 +Shaoping Quan,Simulations of multiphase flows with multiple length scales using moving mesh interface tracking with adaptive meshing.,2011,230,J. Comput. Physics,13,db/journals/jcphy/jcphy230.html#Quan11,https://doi.org/10.1016/j.jcp.2011.03.050 +John D. Towers,A source term method for Poisson problems on irregular domains.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#Towers18,https://doi.org/10.1016/j.jcp.2018.01.038 +Sunao Murashige,A numerical study on parasitic capillary waves using unsteady conformal mapping.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#MurashigeC17,https://doi.org/10.1016/j.jcp.2016.10.015 +William J. Layton,On the accuracy of the rotation form in simulations of the Navier-Stokes equations.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#LaytonMNOR09,https://doi.org/10.1016/j.jcp.2009.01.027 +Pramod K. Subbareddy,Scalar conservation and boundedness in simulations of compressible flow.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#SubbareddyKC17,https://doi.org/10.1016/j.jcp.2017.08.001 +Jesús Garicano-Mena,An entropy-variables-based formulation of residual distribution schemes for non-equilibrium flows.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#Garicano-MenaLD18,https://doi.org/10.1016/j.jcp.2018.02.020 +Jun Jiang,Some new discretization and adaptation and multigrid methods for 2-D 3-T diffusion equations.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#JiangHSZ07,https://doi.org/10.1016/j.jcp.2007.01.013 +Yunqing Huang,Interior penalty DG methods for Maxwell's equations in dispersive media.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#HuangLY11,https://doi.org/10.1016/j.jcp.2011.02.031 +Xianyi Zeng,A systematic approach for constructing higher-order immersed boundary and ghost fluid methods for fluid-structure interaction problems.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#ZengF12,https://doi.org/10.1016/j.jcp.2011.12.027 +Matthias Maier,Dipole excitation of surface plasmon on a conducting sheet: Finite element approximation and validation.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#MaierML17,https://doi.org/10.1016/j.jcp.2017.03.014 +Yalchin Efendiev,Generalized multiscale finite element method. Symmetric interior penalty coupling.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#EfendievGLMS13,https://doi.org/10.1016/j.jcp.2013.07.028 +James Bremer,An algorithm for the numerical evaluation of the associated Legendre functions that runs in time independent of degree and order.,2018,360,J. Comput. Physics,,db/journals/jcphy/jcphy360.html#Bremer18,https://doi.org/10.1016/j.jcp.2018.01.014 +Kun Xu 0001,Multiple temperature kinetic model and gas-kinetic method for hypersonic non-equilibrium flow computations.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#XuHC08,https://doi.org/10.1016/j.jcp.2008.03.035 +Ling Yuan,Discontinuous Galerkin method based on non-polynomial approximation spaces.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#YuanS06,https://doi.org/10.1016/j.jcp.2006.02.013 +José M. Urquiza,Weak imposition of the slip boundary condition on curved boundaries for Stokes flow.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#UrquizaGF14,https://doi.org/10.1016/j.jcp.2013.08.045 +Chamakuri Nagaiah,Boundary control of bidomain equations with state-dependent switching source functions in the ionic model.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#NagaiahEK14,https://doi.org/10.1016/j.jcp.2014.05.017 +Weijia Sun,A staggered-grid convolutional differentiator for elastic wave modelling.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#SunZF15,https://doi.org/10.1016/j.jcp.2015.08.017 +M. Eskandari,On the time relaxed Monte Carlo computations for the lid-driven micro cavity flow.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#EskandariN17,https://doi.org/10.1016/j.jcp.2017.03.017 +Isaías Alonso-Mallo,High order full discretizations of coupled wave equations with absorbing boundary conditions and geometric integration.,2014,265,J. Comput. Physics,,db/journals/jcphy/jcphy265.html#Alonso-MalloP14,https://doi.org/10.1016/j.jcp.2014.01.046 +Seongwon Kang,Prediction of wall-pressure fluctuation in turbulent flows with an immersed boundary method.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#KangIHM09,https://doi.org/10.1016/j.jcp.2009.05.036 +Yanwei Du,Local discontinuous Galerkin method for a nonlinear time-fractional fourth-order partial differential equation.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#DuLLFH17,https://doi.org/10.1016/j.jcp.2017.04.078 +Jianwei Guo,Effective surface and boundary conditions for heterogeneous surfaces with mixed boundary conditions.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#GuoVQ16,https://doi.org/10.1016/j.jcp.2015.10.050 +Jeffery D. Densmore,A hybrid transport-diffusion method for Monte Carlo radiative-transfer simulations.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#DensmoreUEB07,https://doi.org/10.1016/j.jcp.2006.07.031 +Raimund Bürger,Discontinuous finite volume element discretization for coupled flow-transport problems arising in models of sedimentation.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#BurgerKR15,https://doi.org/10.1016/j.jcp.2015.07.020 +Kuo-Ming Lee,Inverse scattering problem from an impedance obstacle via two-steps method.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#Lee14a,https://doi.org/10.1016/j.jcp.2014.06.008 +Liang Ge,A numerical method for solving the 3D unsteady incompressible Navier-Stokes equations in curvilinear domains with complex immersed boundaries.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#GeS07,https://doi.org/10.1016/j.jcp.2007.02.017 +Nathaniel R. Morgan,An approach for treating contact surfaces in Lagrangian cell-centered hydrodynamics.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#MorganKBCI13,https://doi.org/10.1016/j.jcp.2013.05.015 +S. Y. Wang,An extended level set method for shape and topology optimization.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#WangLKW07,https://doi.org/10.1016/j.jcp.2006.06.029 +Dongming Liu,A numerical study of three-dimensional liquid sloshing in tanks.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#LiuL08,https://doi.org/10.1016/j.jcp.2007.12.006 +Thomas M. Evans,A Monte Carlo synthetic-acceleration method for solving the thermal radiation diffusion equation.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#EvansMSH14,https://doi.org/10.1016/j.jcp.2013.10.043 +William D. Henshaw,A composite grid solver for conjugate heat transfer in fluid-structure systems.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#HenshawC09,https://doi.org/10.1016/j.jcp.2009.02.007 +Sina Ober-Blöbaum,Variational integrators for electric circuits.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#Ober-BlobaumTCOM13,https://doi.org/10.1016/j.jcp.2013.02.006 +Jing-Rebecca Li,Efficient thermal field computation in phase-field models.,2009,228,J. Comput. Physics,24,db/journals/jcphy/jcphy228.html#LiCB09,https://doi.org/10.1016/j.jcp.2009.08.022 +Lin Mu,A new weak Galerkin finite element method for elliptic interface problems.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#MuWYZ16,https://doi.org/10.1016/j.jcp.2016.08.024 +Axel Coussement,Three-dimensional boundary conditions for numerical simulations of reactive compressible flows with complex thermochemistry.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#CoussementGCFD12,https://doi.org/10.1016/j.jcp.2012.03.017 +Ka Chun Cheung,A localized meshless method for diffusion on folded surfaces.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#CheungLR15,https://doi.org/10.1016/j.jcp.2015.05.021 +Ming-Feng Xue,A preconditioned dual-primal finite element tearing and interconnecting method for solving three-dimensional time-harmonic Maxwell's equations.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#XueJ14,https://doi.org/10.1016/j.jcp.2014.06.040 +Andreas Alvermann,High-order commutator-free exponential time-propagation of driven quantum systems.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#AlvermannF11,https://doi.org/10.1016/j.jcp.2011.04.006 +Jens Berg,On the impact of boundary conditions on dual consistent finite difference discretizations.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#BergN13,https://doi.org/10.1016/j.jcp.2012.11.019 +Stéphane Vincent,Eulerian-Lagrangian multiscale methods for solving scalar equations - Application to incompressible two-phase flows.,2010,229,J. Comput. Physics,1,db/journals/jcphy/jcphy229.html#VincentBCM10,https://doi.org/10.1016/j.jcp.2009.09.007 +Zhengfang Zhang,An approach for maximizing the smallest eigenfrequency of structure vibration based on piecewise constant level set method.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#ZhangC18,https://doi.org/10.1016/j.jcp.2018.01.050 +Alexandre M. Tartakovsky,Pairwise Force Smoothed Particle Hydrodynamics model for multiphase flow: Surface tension and contact line dynamics.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#TartakovskyP16,https://doi.org/10.1016/j.jcp.2015.08.037 +Hasan Almanasreh,Stabilized finite element method for the radial Dirac equation.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#AlmanasrehSS13,https://doi.org/10.1016/j.jcp.2012.11.020 +N. Barral,Time-accurate anisotropic mesh adaptation for three-dimensional time-dependent problems with body-fitted moving geometries.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#BarralOA17,https://doi.org/10.1016/j.jcp.2016.11.029 +Martin Galler,A direct multigroup-WENO solver for the 2D non-stationary Boltzmann-Poisson system for GaAs devices: GaAs-MESFET.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#GallerS06,https://doi.org/10.1016/j.jcp.2005.08.003 +Raheel Ahmed,Three-dimensional control-volume distributed multi-point flux approximation coupled with a lower-dimensional surface fracture model.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#AhmedELHP15a,https://doi.org/10.1016/j.jcp.2015.10.001 +Ivan Cimrák,Level set method for the inverse elliptic problem in nonlinear electromagnetism.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#CimrakK10,https://doi.org/10.1016/j.jcp.2010.08.038 +Edip Can,A level set method for vapor bubble dynamics.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#CanP12,https://doi.org/10.1016/j.jcp.2011.10.021 +John R. Tramm,The Random Ray Method for neutral particle transport.,2017,342,J. Comput. Physics,,db/journals/jcphy/jcphy342.html#TrammSFS17,https://doi.org/10.1016/j.jcp.2017.04.038 +Cristóbal Bertoglio,A tangential regularization method for backflow stabilization in hemodynamics.,2014,261,J. Comput. Physics,,db/journals/jcphy/jcphy261.html#BertoglioC14,https://doi.org/10.1016/j.jcp.2013.12.057 +Swagata Bhaumik,A new velocity-vorticity formulation for direct numerical simulation of 3D transitional and turbulent flows.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#BhaumikS15,https://doi.org/10.1016/j.jcp.2014.12.030 +Ping Fan,The standard upwind compact difference schemes for incompressible flow simulations.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#Fan16,https://doi.org/10.1016/j.jcp.2016.06.030 +Ngoc Cuong Nguyen,A phase-based hybridizable discontinuous Galerkin method for the numerical solution of the Helmholtz equation.,2015,290,J. Comput. Physics,,db/journals/jcphy/jcphy290.html#NguyenPRC15,https://doi.org/10.1016/j.jcp.2015.02.002 +Luca Tosatto,Numerical solution of under-resolved detonations.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#TosattoV08,https://doi.org/10.1016/j.jcp.2007.10.011 +Zhenli Xu,Image charge approximations of reaction fields in solvents with arbitrary ionic strength.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#XuDC09,https://doi.org/10.1016/j.jcp.2008.11.023 +S. Adami,A new surface-tension formulation for multi-phase SPH using a reproducing divergence approximation.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#AdamiHA10a,https://doi.org/10.1016/j.jcp.2010.03.022 +Jean-François Remacle,GPU accelerated spectral finite elements on all-hex meshes.,2016,324,J. Comput. Physics,,db/journals/jcphy/jcphy324.html#RemacleGW16,https://doi.org/10.1016/j.jcp.2016.08.005 +Blaise Faugeras,FEM-BEM coupling methods for Tokamak plasma axisymmetric free-boundary equilibrium computations in unbounded domains.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#FaugerasH17,https://doi.org/10.1016/j.jcp.2017.04.047 +Arnaud Duran,On the well-balanced numerical discretization of shallow water equations on unstructured meshes.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#DuranLM13,https://doi.org/10.1016/j.jcp.2012.10.033 +Euntaek Lee,Cell-centered high-order hyperbolic finite volume method for diffusion equation on unstructured grids.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#LeeAL18,https://doi.org/10.1016/j.jcp.2017.10.051 +Hailiang Liu,A field-space-based level set method for computing multi-valued solutions to 1D Euler-Poisson equations.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#LiuW07,https://doi.org/10.1016/j.jcp.2006.12.018 +Matthew F. Barone,Stable Galerkin reduced order models for linearized compressible flow.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#BaroneKST09,https://doi.org/10.1016/j.jcp.2008.11.015 +R. Parashar,Scaling the fractional advective-dispersive equation for numerical evaluation of microbial dynamics in confined geometries with sticky boundaries.,2008,227,J. Comput. Physics,13,db/journals/jcphy/jcphy227.html#ParasharC08,https://doi.org/10.1016/j.jcp.2008.03.021 +Jingzhi Li,Ground detection by a single electromagnetic far-field measurement.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#LiLSW14,https://doi.org/10.1016/j.jcp.2014.05.027 +Matthew I. Barham,Finite element modeling of the deformation of magnetoelastic film.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#BarhamWS10,https://doi.org/10.1016/j.jcp.2010.04.007 +Maxime Pigou,New developments of the Extended Quadrature Method of Moments to solve Population Balance Equations.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#PigouMFPL18,https://doi.org/10.1016/j.jcp.2018.03.027 +Olav Møyner,A multiscale two-point flux-approximation method.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#MoynerL14,https://doi.org/10.1016/j.jcp.2014.07.003 +Longfei Li,A stable partitioned FSI algorithm for incompressible flow and deforming beams.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#LiHBSM16,https://doi.org/10.1016/j.jcp.2016.02.002 +Roman Pascal Schaerer,Efficient algorithms and implementations of entropy-based moment closures for rarefied gases.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#SchaererBT17,https://doi.org/10.1016/j.jcp.2017.02.064 +H. Lochon,HLLC-type Riemann solver with approximated two-phase contact for the computation of the Baer-Nunziato two-fluid model.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#LochonDGH16,https://doi.org/10.1016/j.jcp.2016.09.015 +Tomas Lundquist,The SBP-SAT technique for initial value problems.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#LundquistN14,https://doi.org/10.1016/j.jcp.2014.03.048 +Daoru Han,A 3D immersed finite element method with non-homogeneous interface flux jump for applications in particle-in-cell simulations of plasma-lunar surface interactions.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#HanWHLW16,https://doi.org/10.1016/j.jcp.2016.05.057 +H. K. Jeong,An immersed boundary-thermal lattice Boltzmann method using an equilibrium internal energy density approach for the simulation of flows with heat transfer.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#JeongYHT10,https://doi.org/10.1016/j.jcp.2009.12.002 +Jun Li,Phase-coexistence simulations of fluid mixtures by the Markov Chain Monte Carlo method using single-particle models.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#LiC13,https://doi.org/10.1016/j.jcp.2013.04.016 +Zhen Peng,One way domain decomposition method with second order transmission conditions for solving electromagnetic wave problems.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#PengRL10,https://doi.org/10.1016/j.jcp.2009.10.024 +Somayeh Mashayekhi,Numerical solution of distributed order fractional differential equations by hybrid functions.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#MashayekhiR16,https://doi.org/10.1016/j.jcp.2016.01.041 +Axel Coussement,Multicomponent real gas 3-D-NSCBC for direct numerical simulation of reactive compressible viscous flows.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#CoussementGFDD13,https://doi.org/10.1016/j.jcp.2013.01.049 +Razvan Stefanescu,POD/DEIM nonlinear model order reduction of an ADI implicit shallow water equations model.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#StefanescuN13,https://doi.org/10.1016/j.jcp.2012.11.035 +Thomas G. Fai,Lubricated immersed boundary method in two dimensions.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#FaiR18,https://doi.org/10.1016/j.jcp.2017.11.029 +Xiang-Gui Li,A combined discontinuous Galerkin method for the dipolar Bose-Einstein condensation.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#LiZZC14,https://doi.org/10.1016/j.jcp.2014.07.013 +Ryan W. Houim,A low-dissipation and time-accurate method for compressible multi-component flow with variable specific heat ratios.,2011,230,J. Comput. Physics,23,db/journals/jcphy/jcphy230.html#HouimK11,https://doi.org/10.1016/j.jcp.2011.07.031 +N. Anders Petersson,Wave propagation in anisotropic elastic materials and curvilinear coordinates using a summation-by-parts finite difference method.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#PeterssonS15,https://doi.org/10.1016/j.jcp.2015.07.023 +Alain Lerat,Steady discrete shocks of high-order RBC schemes.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#Lerat13,https://doi.org/10.1016/j.jcp.2013.06.030 +Jialin Hong,Energy-dissipation splitting finite-difference time-domain method for Maxwell equations with perfectly matched layers.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#HongJK14,https://doi.org/10.1016/j.jcp.2014.03.025 +Bin Wang,Improved Filon-type asymptotic methods for highly oscillatory differential equations with multiple time scales.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#WangW14,https://doi.org/10.1016/j.jcp.2014.07.035 +J. H. Adler,First-order system least squares and the energetic variational approach for two-phase flow.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#AdlerBLMZ11,https://doi.org/10.1016/j.jcp.2011.05.002 +D. G. Merrick,A novel finite volume discretization method for advection-diffusion systems on stretched meshes.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#MerrickMR18,https://doi.org/10.1016/j.jcp.2018.02.025 +Zhanjing Tao,High-order central Hermite WENO schemes: Dimension-by-dimension moment-based reconstructions.,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#TaoLQ16,https://doi.org/10.1016/j.jcp.2016.05.005 +Shamsul Qamar,The space-time CESE method for solving special relativistic hydrodynamic equations.,2012,231,J. Comput. Physics,10,db/journals/jcphy/jcphy231.html#QamarY12,https://doi.org/10.1016/j.jcp.2012.01.039 +Michael D. Toy,"Comment on the article ""Vertical discretizations for compressible Euler equation atmospheric models giving optimal representation of normal modes"" by Thuburn and Woollings.",2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#ToyR07,https://doi.org/10.1016/j.jcp.2006.08.022 +Jon Karl Sigurdsson,Hybrid continuum-particle method for fluctuating lipid bilayer membranes with diffusing protein inclusions.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#SigurdssonBA13,https://doi.org/10.1016/j.jcp.2013.06.016 +J. López,A volume of fluid approach for crystal growth simulation.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#LopezGH10,https://doi.org/10.1016/j.jcp.2010.05.026 +Alfredo Bermúdez,Treating network junctions in finite volume solution of transient gas flow models.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#BermudezLV17,https://doi.org/10.1016/j.jcp.2017.04.066 +Ruming Zhang,Efficient finite element method for grating profile reconstruction.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#ZhangS15,https://doi.org/10.1016/j.jcp.2015.09.016 +Michael Medvinsky,High order numerical simulation of the transmission and scattering of waves using the method of difference potentials.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#MedvinskyTT13,https://doi.org/10.1016/j.jcp.2013.03.014 +Toru Takahashi 0002,An interpolation-based fast-multipole accelerated boundary integral equation method for the three-dimensional wave equation.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#Takahashi14,https://doi.org/10.1016/j.jcp.2013.11.008 +Kai Germaschewski,The Plasma Simulation Code: A modern particle-in-cell code with patch-based load-balancing.,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#GermaschewskiFA16,https://doi.org/10.1016/j.jcp.2016.05.013 +Carlos J. García-Cervera,Spin-polarized currents in ferromagnetic multilayers.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#Garcia-CerveraW07,https://doi.org/10.1016/j.jcp.2006.10.029 +Eli Turkel,Compact 2D and 3D sixth order schemes for the Helmholtz equation with variable wave number.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#TurkelGGT13,https://doi.org/10.1016/j.jcp.2012.08.016 +Peter Hansbo,A linear nonconforming finite element method for Maxwell's equations in two dimensions. Part I: Frequency domain.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#HansboR10,https://doi.org/10.1016/j.jcp.2010.05.009 +Fanhai Zeng,Fast difference schemes for solving high-dimensional time-fractional subdiffusion equations.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#ZengZK16,https://doi.org/10.1016/j.jcp.2015.11.058 +D. N. Srinath,An adjoint method for shape optimization in unsteady viscous flows.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#SrinathM10,https://doi.org/10.1016/j.jcp.2009.11.019 +X. J. Gu,A computational strategy for the regularized 13 moment equations with enhanced wall-boundary conditions.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#GuE07,https://doi.org/10.1016/j.jcp.2006.11.032 +Sascha M. Schnepp,A hybrid Finite Integration-Finite Volume Scheme.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#SchneppGW10,https://doi.org/10.1016/j.jcp.2010.01.041 +F. Xavier Trias,A simple approach to discretize the viscous term with spatially varying (eddy-)viscosity.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#TriasGO13,https://doi.org/10.1016/j.jcp.2013.07.021 +Xueyang Li,Time-splitting finite difference method with the wavelet-adaptive grids for semiclassical Gross-Pitaevskii equation in supercritical case.,2014,267,J. Comput. Physics,,db/journals/jcphy/jcphy267.html#LiX14,https://doi.org/10.1016/j.jcp.2014.02.025 +Rémi Abgrall,A semi-intrusive deterministic approach to uncertainty quantification in non-linear fluid flow problems.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#AbgrallC13,https://doi.org/10.1016/j.jcp.2012.07.041 +James Williams 0006,The effects of plastic waves on the numerical convergence of the viscous-plastic and elastic-viscous-plastic sea-ice models.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#WilliamsTL17,https://doi.org/10.1016/j.jcp.2017.03.048 +Mark Christon,A hybrid incremental projection method for thermal-hydraulics applications.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#ChristonBNBFSXL16,https://doi.org/10.1016/j.jcp.2016.04.061 +Nicolas Favrie,A thermodynamically compatible splitting procedure in hyperelasticity.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#FavrieGN14,https://doi.org/10.1016/j.jcp.2014.03.051 +Xiangyu Hu 0002,A conservative interface method for compressible flows.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#0002KAH06,https://doi.org/10.1016/j.jcp.2006.04.001 +Barry D. Ganapol,A solution of the monoenergetic neutral particle transport equation for adjacent half-spaces with anisotropic scattering.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#GanapolMP16,https://doi.org/10.1016/j.jcp.2016.02.049 +Sebastian Reuther,Incompressible two-phase flows with an inextensible Newtonian fluid interface.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#ReutherV16,https://doi.org/10.1016/j.jcp.2016.07.023 +Mark Sherlock,A Monte-Carlo method for coulomb collisions in hybrid plasma models.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#Sherlock08,https://doi.org/10.1016/j.jcp.2007.11.037 +Timothy A. Smith,A Roe-like numerical method for weakly hyperbolic systems of equations in conservation and non-conservation form.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#SmithPP16,https://doi.org/10.1016/j.jcp.2016.04.006 +T. L. Ashbee,Generalized Hamiltonian point vortex dynamics on arbitrary domains using the method of fundamental solutions.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#AshbeeEM13,https://doi.org/10.1016/j.jcp.2013.03.044 +Yibao Li,Multi-component Cahn-Hilliard system with different boundary conditions in complex domains.,2016,323,J. Comput. Physics,,db/journals/jcphy/jcphy323.html#LiCK16,https://doi.org/10.1016/j.jcp.2016.07.017 +Christoph Lohmann,Flux-corrected transport algorithms preserving the eigenvalue range of symmetric tensor quantities.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#Lohmann17,https://doi.org/10.1016/j.jcp.2017.09.009 +Joe Iannelli,An implicit Galerkin finite element Runge-Kutta algorithm for shock-structure investigations.,2011,230,J. Comput. Physics,1,db/journals/jcphy/jcphy230.html#Iannelli11,https://doi.org/10.1016/j.jcp.2010.09.025 +Mikito Furuichi,Three-dimensional Eulerian method for large deformation of viscoelastic fluid: Toward plate-mantle simulation.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#FuruichiKK08,https://doi.org/10.1016/j.jcp.2008.01.052 +Kunkun Tang,Adaptive surrogate modeling by ANOVA and sparse polynomial dimensional decomposition for global sensitivity analysis in fluid simulation.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#TangCA16,https://doi.org/10.1016/j.jcp.2016.03.026 +William Peter,Quiet direct simulation Monte-Carlo with random *teps.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#Peter07,https://doi.org/10.1016/j.jcp.2006.06.008 +Jian Guo Zhou,Lattice Boltzmann morphodynamic model.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#Zhou14,https://doi.org/10.1016/j.jcp.2014.04.005 +Weixuan Li,An adaptive importance sampling algorithm for Bayesian inversion with multimodal distributions.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#LiL15,https://doi.org/10.1016/j.jcp.2015.03.047 +Jean-Baptiste Dupont,Numerical simulation of static and sliding drop with contact angle hysteresis.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#DupontL10,https://doi.org/10.1016/j.jcp.2009.07.034 +Yaqi Wang,Standard and goal-oriented adaptive mesh refinement applied to radiation transport on 2D unstructured triangular meshes.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#WangR11,https://doi.org/10.1016/j.jcp.2010.10.018 +Erell Jamelot,Fast non-overlapping Schwarz domain decomposition methods for solving the neutron diffusion equation.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#JamelotC13,https://doi.org/10.1016/j.jcp.2013.01.026 +Takashi Minoshima,Multi-moment advection scheme for Vlasov simulations.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#MinoshimaMA11,https://doi.org/10.1016/j.jcp.2011.05.010 +Jianming Yang,A highly scalable massively parallel fast marching method for the Eikonal equation.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#YangS17,https://doi.org/10.1016/j.jcp.2016.12.012 +C. Bona,Linear high-resolution schemes for hyperbolic conservation laws: TVB numerical evidence.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#BonaBT09,https://doi.org/10.1016/j.jcp.2008.12.010 +Gregory Beylkin,ODE solvers using band-limited approximations.,2014,265,J. Comput. Physics,,db/journals/jcphy/jcphy265.html#BeylkinS14,https://doi.org/10.1016/j.jcp.2014.02.001 +Krzysztof J. Fidkowski,A triangular cut-cell adaptive method for high-order discretizations of the compressible Navier-Stokes equations.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#FidkowskiD07,https://doi.org/10.1016/j.jcp.2007.02.007 +Florian Müller 0007,Multilevel Monte Carlo for two phase flow and Buckley-Leverett transport in random heterogeneous porous media.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#MullerJM13,https://doi.org/10.1016/j.jcp.2013.03.023 +John W. Pearson,Preconditioned iterative methods for Navier-Stokes control problems.,2015,292,J. Comput. Physics,,db/journals/jcphy/jcphy292.html#Pearson15,https://doi.org/10.1016/j.jcp.2015.03.029 +Hiroaki Yoshida,Lattice Boltzmann method for the convection-diffusion equation in curvilinear coordinate systems.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#YoshidaN14,https://doi.org/10.1016/j.jcp.2013.09.035 +J. Reisner,A space-time smooth artificial viscosity method for nonlinear conservation laws.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#ReisnerSS13,https://doi.org/10.1016/j.jcp.2012.08.027 +Richard Saurel,A relaxation-projection method for compressible flows. Part I: The numerical equation of state for the Euler equations.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#SaurelFDM07,https://doi.org/10.1016/j.jcp.2006.10.004 +Marinos Vouvakis,A domain decomposition approach for non-conformal couplings between finite and boundary elements for unbounded electromagnetic problems in R3.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#VouvakisZSL07,https://doi.org/10.1016/j.jcp.2007.01.014 +Benjamin Krank,A new approach to wall modeling in LES of incompressible flow via function enrichment.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#KrankW16,https://doi.org/10.1016/j.jcp.2016.04.001 +Janis Bajars,Transport of phase space densities through tetrahedral meshes using discrete flow mapping.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#BajarsCST17,https://doi.org/10.1016/j.jcp.2016.10.019 +M. Nicholas J. Moore,A fast Chebyshev method for simulating flexible-wing propulsion.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#Moore17,https://doi.org/10.1016/j.jcp.2017.05.052 +Anirban Bhattacharya,An enthalpy method for modeling eutectic solidification.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#BhattacharyaKKD14,https://doi.org/10.1016/j.jcp.2014.01.007 +Felix Sharipov,Numerical solution of the linearized Boltzmann equation for an arbitrary intermolecular potential.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#SharipovB09,https://doi.org/10.1016/j.jcp.2009.01.016 +Petros Koumoutsakos,Preface.,2008,227,J. Comput. Physics,21,db/journals/jcphy/jcphy227.html#Koumoutsakos08,https://doi.org/10.1016/j.jcp.2008.06.025 +Claus-Dieter Munz,Linearized acoustic perturbation equations for low Mach number flow with variable density and temperature.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#MunzDR07,https://doi.org/10.1016/j.jcp.2007.02.022 +Sooyoung Choi,Resonance treatment using pin-based pointwise energy slowing-down method.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#ChoiLL17,https://doi.org/10.1016/j.jcp.2016.11.007 +Barry Merriman,Diffusion generated motion of curves on surfaces.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#MerrimanR07,https://doi.org/10.1016/j.jcp.2007.03.034 +Søren Taverniers,A tightly-coupled domain-decomposition approach for highly nonlinear stochastic multiphysics systems.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#TaverniersT17,https://doi.org/10.1016/j.jcp.2016.10.052 +Florian Rauser,Predicting goal error evolution from near-initial-information: A learning algorithm.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#RauserKM11,https://doi.org/10.1016/j.jcp.2011.05.029 +John D. Jakeman,Enhancing adaptive sparse grid approximations and improving refinement strategies using adjoint-based a posteriori error estimates.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#JakemanW15,https://doi.org/10.1016/j.jcp.2014.09.014 +Chris H. Rycroft,Computation of three-dimensional standing water waves.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#RycroftW13,https://doi.org/10.1016/j.jcp.2013.08.026 +Jean-Philippe Braeunig,Reducing the entropy production in a collocated Lagrange-Remap scheme.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#Braeunig16,https://doi.org/10.1016/j.jcp.2016.03.008 +Hannes Frenander,Constructing non-reflecting boundary conditions using summation-by-parts in time.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#FrenanderN17,https://doi.org/10.1016/j.jcp.2016.11.038 +Christophe Berthon,Robustness of MUSCL schemes for 2D unstructured meshes.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#Berthon06,https://doi.org/10.1016/j.jcp.2006.02.028 +Ryusuke Numata,AstroGK: Astrophysical gyrokinetics code.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#NumataHTBD10,https://doi.org/10.1016/j.jcp.2010.09.006 +Frédéric Gibou,A review of level-set methods and some recent applications.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#GibouFO18,https://doi.org/10.1016/j.jcp.2017.10.006 +Jean-Pierre Auclair,Implementation of Newton's method with an analytical Jacobian to solve the 1D sea ice momentum equation.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#AuclairLTR17,https://doi.org/10.1016/j.jcp.2017.02.065 +Q. Liu,Approximation of the Lévy-Feller advection-dispersion process by random walk and finite difference method.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#LiuLTA07,https://doi.org/10.1016/j.jcp.2006.06.005 +D. M. Williams,Energy stable flux reconstruction schemes for advection-diffusion problems on triangles.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#WilliamsCVJ13,https://doi.org/10.1016/j.jcp.2013.05.007 +Nail A. Gumerov,Efficient FMM accelerated vortex methods in three dimensions via the Lamb-Helmholtz decomposition.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#GumerovD13,https://doi.org/10.1016/j.jcp.2013.01.021 +P. Tamain,The TOKAM3X code for edge turbulence fluid simulations of tokamak plasmas in versatile magnetic geometries.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#TamainBCCGGSS16,https://doi.org/10.1016/j.jcp.2016.05.038 +Chi Zhang,A generalized transport-velocity formulation for smoothed particle hydrodynamics.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#ZhangHA17a,https://doi.org/10.1016/j.jcp.2017.02.016 +Sunitha Nagrath,Hydrodynamic simulation of air bubble implosion using a level set approach.,2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#NagrathJLA06,https://doi.org/10.1016/j.jcp.2005.10.020 +Hyung Taek Ahn,Strongly coupled flow/structure interactions with a geometrically conservative ALE scheme on general hybrid meshes.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#AhnK06,https://doi.org/10.1016/j.jcp.2006.04.011 +Randall McDermott,The parabolic edge reconstruction method (PERM) for Lagrangian particle advection.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#McDermottP08,https://doi.org/10.1016/j.jcp.2008.01.045 +Bangti Jin,A variational Bayesian method to inverse problems with impulsive noise.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#Jin12,https://doi.org/10.1016/j.jcp.2011.09.009 +Tzanio V. Kolev,A tensor artificial viscosity using a finite element approach.,2009,228,J. Comput. Physics,22,db/journals/jcphy/jcphy228.html#KolevR09,https://doi.org/10.1016/j.jcp.2009.08.010 +René Hammer,A dispersion and norm preserving finite difference scheme with transparent boundary conditions for the Dirac equation in (1+1)D.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#HammerPA14a,https://doi.org/10.1016/j.jcp.2013.09.022 +Walter Boscheri,Lagrangian ADER-WENO finite volume schemes on unstructured triangular meshes based on genuinely multidimensional HLL Riemann solvers.,2014,267,J. Comput. Physics,,db/journals/jcphy/jcphy267.html#BoscheriBD14,https://doi.org/10.1016/j.jcp.2014.02.023 +Rajat Mittal,A versatile sharp interface immersed boundary method for incompressible flows with complex boundaries.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#MittalDBNVL08,https://doi.org/10.1016/j.jcp.2008.01.028 +Mahdi Esmaily Moghadam,A modular numerical method for implicit 0D/3D coupling in cardiovascular finite element simulations.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#MoghadamVFM13,https://doi.org/10.1016/j.jcp.2012.07.035 +Lucas M. Harris,A flux-form version of the conservative semi-Lagrangian multi-tracer transport scheme (CSLAM) on the cubed sphere grid.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#HarrisLM11,https://doi.org/10.1016/j.jcp.2010.11.001 +Q. R. Marksteiner,The use of tricubic interpolation with spectral derivatives to integrate particle trajectories in complicated electromagnetic fields.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#Marksteiner10,https://doi.org/10.1016/j.jcp.2010.05.011 +Yu Mao Wu,Computing highly oscillatory physical optics integral on the polygonal domain by an efficient numerical steepest descent path method.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#WuJC13,https://doi.org/10.1016/j.jcp.2012.10.052 +Chi-Wang Shu,High order WENO and DG methods for time-dependent convection-dominated PDEs: A brief survey of several recent developments.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#Shu16,https://doi.org/10.1016/j.jcp.2016.04.030 +Lingling Shi,A study of self-propelled elastic cylindrical micro-swimmers using modeling and computation.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#ShiCQP16,https://doi.org/10.1016/j.jcp.2016.02.071 +Robert Chiodi,A reformulation of the conservative level set reinitialization equation for accurate and robust simulation of complex multiphase flows.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#ChiodiD17,https://doi.org/10.1016/j.jcp.2017.04.053 +Lei Zhang,A multi-frequency iterative imaging method for discontinuous inverse medium problem.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#ZhangF18,https://doi.org/10.1016/j.jcp.2018.02.026 +Vianey Villamizar,High order local absorbing boundary conditions for acoustic waves in terms of farfield expansions.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#VillamizarAD17,https://doi.org/10.1016/j.jcp.2016.12.048 +Maximilian S. Metti,Energetically stable discretizations for charge transport and electrokinetic models.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#MettiXL16,https://doi.org/10.1016/j.jcp.2015.10.053 +Gordon L. Olson,Second order time evolution of the multigroup diffusion and P1 equations for radiation transport.,2011,230,J. Comput. Physics,20,db/journals/jcphy/jcphy230.html#Olson11,https://doi.org/10.1016/j.jcp.2011.06.001 +Dixon T. K. Kwok,A hybrid Boltzmann electrons and PIC ions model for simulating transient state of partially ionized plasma.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#Kwok08,https://doi.org/10.1016/j.jcp.2008.02.005 +Nathan M. Olson,A near-boundary modification for the link bounce-back boundary condition in the lattice Boltzmann method.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#Olson15,https://doi.org/10.1016/j.jcp.2015.08.021 +Philippe Grandclément,KADATH: A spectral solver for theoretical physics.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#Grandclement10,https://doi.org/10.1016/j.jcp.2010.01.005 +Metin Muradoglu,Simulations of soluble surfactants in 3D multiphase flow.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#MuradogluT14,https://doi.org/10.1016/j.jcp.2014.06.024 +Jie Bao,A mass conserving boundary condition for the lattice Boltzmann equation method.,2008,227,J. Comput. Physics,18,db/journals/jcphy/jcphy227.html#BaoYS08,https://doi.org/10.1016/j.jcp.2008.06.003 +Guglielmo Scovazzi,Lagrangian shock hydrodynamics on tetrahedral meshes: A stable and accurate variational multiscale approach.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#Scovazzi12,https://doi.org/10.1016/j.jcp.2012.06.033 +Zhiming Gao,A small stencil and extremum-preserving scheme for anisotropic diffusion problems on arbitrary 2D and 3D meshes.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#GaoW13a,https://doi.org/10.1016/j.jcp.2013.05.013 +Silvio Tschisgale,A non-iterative immersed boundary method for spherical particles of arbitrary density ratio.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#TschisgaleKF17,https://doi.org/10.1016/j.jcp.2017.03.026 +Zhaosheng Yu,A direct-forcing fictitious domain method for particulate flows.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#YuS07,https://doi.org/10.1016/j.jcp.2007.07.027 +Yibing Chen,Modified kinetic flux vector splitting schemes for compressible flows.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#ChenJ09,https://doi.org/10.1016/j.jcp.2009.01.035 +David R. Hatch,Analysis and compression of six-dimensional gyrokinetic datasets using higher order singular value decomposition.,2012,231,J. Comput. Physics,11,db/journals/jcphy/jcphy231.html#HatchdT12,https://doi.org/10.1016/j.jcp.2012.02.007 +Sudip Garain,Comparing Coarray Fortran (CAF) with MPI for several structured mesh PDE applications.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#GarainBR15,https://doi.org/10.1016/j.jcp.2015.05.020 +Bernd Brügmann,A pseudospectral matrix method for time-dependent tensor fields on a spherical shell.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#Brugmann13,https://doi.org/10.1016/j.jcp.2012.11.007 +Pingwen Zhang,An efficient numerical method of Landau-Brazovskii model.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#ZhangZ08,https://doi.org/10.1016/j.jcp.2008.02.021 +Xi (Ronald) Chen,A hybrid Hermite-discontinuous Galerkin method for hyperbolic systems with application to Maxwell's equations.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#ChenAH14,https://doi.org/10.1016/j.jcp.2013.09.046 +Joseph B. Nagel,Spectral likelihood expansions for Bayesian inference.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#NagelS16,https://doi.org/10.1016/j.jcp.2015.12.047 +Mario Morales-Hernández,A 2D extension of a Large Time Step explicit scheme (CFL andgt* 1) for unsteady problems with wet/dry boundaries.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#Morales-HernandezHG14,https://doi.org/10.1016/j.jcp.2014.01.019 +Jeffrey D. Hyman,Stochastic generation of explicit pore structures by thresholding Gaussian random fields.,2014,277,J. Comput. Physics,,db/journals/jcphy/jcphy277.html#HymanW14,https://doi.org/10.1016/j.jcp.2014.07.046 +M. Waindim,A body-force based method to generate supersonic equilibrium turbulent boundary layer profiles.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#WaindimG16,https://doi.org/10.1016/j.jcp.2015.10.004 +Abbas Fakhari,A mass-conserving lattice Boltzmann method with dynamic grid refinement for immiscible two-phase flows.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#FakhariGL16,https://doi.org/10.1016/j.jcp.2016.03.058 +Teemu Luostari,The ultra weak variational formulation of thin clamped plate problems.,2014,260,J. Comput. Physics,,db/journals/jcphy/jcphy260.html#LuostariHM14,https://doi.org/10.1016/j.jcp.2013.12.028 +Zhijun Tan,An immersed interface method for solving incompressible viscous flows with piecewise constant viscosity across a moving elastic membrane.,2008,227,J. Comput. Physics,23,db/journals/jcphy/jcphy227.html#TanLLLK08,https://doi.org/10.1016/j.jcp.2008.08.013 +Peng Wang,Uncertainty quantification in kinematic-wave models.,2012,231,J. Comput. Physics,23,db/journals/jcphy/jcphy231.html#WangT12a,https://doi.org/10.1016/j.jcp.2012.07.030 +Thomas Richter,A Fully Eulerian formulation for fluid-structure-interaction problems.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#Richter13,https://doi.org/10.1016/j.jcp.2012.08.047 +Caterina Calgaro,L∞-stability of vertex-based MUSCL finite volume schemes on unstructured grids: Simulation of incompressible flows with high density ratios.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#CalgaroCCG10,https://doi.org/10.1016/j.jcp.2010.04.034 +Su Yan 0002,A continuity-preserving and divergence-cleaning algorithm based on purely and damped hyperbolic Maxwell equations in inhomogeneous media.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#YanJ17,https://doi.org/10.1016/j.jcp.2017.01.012 +Ianik Plante,On the Green's function of the partially diffusion-controlled reversible ABCD reaction for radiation chemistry codes.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#PlanteD15,https://doi.org/10.1016/j.jcp.2015.05.007 +Alexander Hay,Verified predictions of shape sensitivities in wall-bounded turbulent flows by an adaptive finite-element method.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#HayPC09,https://doi.org/10.1016/j.jcp.2009.03.022 +J. Chao,A massively parallel multi-block hybrid compact-WENO scheme for compressible flows.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#ChaoHB09,https://doi.org/10.1016/j.jcp.2009.07.005 +Barnana Pal,Relaxation dynamics in small clusters: A modified Monte Carlo approach.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#Pal08,https://doi.org/10.1016/j.jcp.2007.11.007 +Hiroaki Yoshida,Multiple-relaxation-time lattice Boltzmann model for the convection and anisotropic diffusion equation.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#YoshidaN10,https://doi.org/10.1016/j.jcp.2010.06.037 +Taku Nonomura,Numerical (error) issues on compressible multicomponent flows using a high-order differencing scheme: Weighted compact nonlinear scheme.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#NonomuraMTOF12,https://doi.org/10.1016/j.jcp.2011.12.035 +G. Capdeville,A new category of Hermitian upwind schemes for computational acoustics - II. Two-dimensional aeroacoustics.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#Capdeville06,https://doi.org/10.1016/j.jcp.2006.01.010 +Miguel Fosas de Pando,Efficient evaluation of the direct and adjoint linearized dynamics from compressible flow solvers.,2012,231,J. Comput. Physics,23,db/journals/jcphy/jcphy231.html#PandoSS12,https://doi.org/10.1016/j.jcp.2012.06.038 +Lun Yang,Sequential data assimilation with multiple nonlinear models and applications to subsurface flow.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#YangNW17,https://doi.org/10.1016/j.jcp.2017.06.026 +M. Arnst,Itô-SDE MCMC method for Bayesian characterization of errors associated with data limitations in stochastic expansion methods for uncertainty quantification.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#ArnstAPB17,https://doi.org/10.1016/j.jcp.2017.08.005 +Ravindra Pethiyagoda,Jacobian-free Newton-Krylov methods with GPU acceleration for computing nonlinear ship wave patterns.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#PethiyagodaMMB14,https://doi.org/10.1016/j.jcp.2014.03.024 +L. M. M. van den Bos,Non-intrusive uncertainty quantification using reduced cubature rules.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#BosKD17,https://doi.org/10.1016/j.jcp.2016.12.011 +Zhuo-Jia Fu,Boundary particle method for Laplace transformed time fractional diffusion equations.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#FuCY13,https://doi.org/10.1016/j.jcp.2012.10.018 +Emmanuel Audusse,A fast finite volume solver for multi-layered shallow water flows with mass exchange.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#AudusseBSST14,https://doi.org/10.1016/j.jcp.2014.04.026 +Cristóbal E. Castro,Solvers for the high-order Riemann problem for hyperbolic balance laws.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#CastroT08,https://doi.org/10.1016/j.jcp.2007.11.013 +Dragan Vidovic,A superlinearly convergent Mach-uniform finite volume method for the Euler equations on staggered unstructured grids.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#VidovicSW06,https://doi.org/10.1016/j.jcp.2006.01.031 +Cristóbal Bertoglio,A Stokes-residual backflow stabilization method applied to physiological flows.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#BertoglioC16,https://doi.org/10.1016/j.jcp.2016.02.045 +Seong-Kwan Park,Existence and stability in the virtual interpolation point method for the Stokes equations.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#ParkJC16,https://doi.org/10.1016/j.jcp.2015.12.002 +Enzo Tonti,Why starting from differential equations for computational physics?,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#Tonti14,https://doi.org/10.1016/j.jcp.2013.08.016 +Soshi Kawai,A robust and accurate numerical method for transcritical turbulent flows at supercritical pressure with an arbitrary equation of state.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#KawaiTN15,https://doi.org/10.1016/j.jcp.2015.07.047 +Yue Cheng,Positivity-preserving DG and central DG methods for ideal MHD equations.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#ChengLQX13,https://doi.org/10.1016/j.jcp.2012.12.019 +Jean-Luc Fattebert,Finite element approach for density functional theory calculations on locally-refined meshes.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#FattebertHW07,https://doi.org/10.1016/j.jcp.2006.10.013 +Yang-Yao Niu,Computations of two-fluid models based on a simple and robust hybrid primitive variable Riemann solver with AUSMD.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#Niu16,https://doi.org/10.1016/j.jcp.2015.12.045 +Abdullah Demirel,Efficient multiple time-stepping algorithms of higher order.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#DemirelNBH15,https://doi.org/10.1016/j.jcp.2015.01.018 +Ricardo Cortez,Computation of three-dimensional Brinkman flows using regularized methods.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#CortezCLV10,https://doi.org/10.1016/j.jcp.2010.06.012 +Kevin T. Chu,A direct matrix method for computing analytical Jacobians of discretized nonlinear integro-differential equations.,2009,228,J. Comput. Physics,15,db/journals/jcphy/jcphy228.html#Chu09,https://doi.org/10.1016/j.jcp.2009.04.031 +P. Yang,Modelling of fluid-structure interaction with multiphase viscous flows using an immersed-body method.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#YangXFPLP16,https://doi.org/10.1016/j.jcp.2016.05.035 +Francesco Bassi,A discontinuous Galerkin method for inviscid low Mach number flows.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#BassiBHN09,https://doi.org/10.1016/j.jcp.2009.02.021 +Ju Ming,An efficient spectral method for computing dynamics of rotating two-component Bose-Einstein condensates via coordinate transformation.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#MingTZ14,https://doi.org/10.1016/j.jcp.2013.10.044 +D. Shyam Sundar,A high order meshless method with compact support.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#SundarY14,https://doi.org/10.1016/j.jcp.2014.04.010 +Christian B. Mendl,Efficient algorithm for two-center Coulomb and exchange integrals of electronic prolate spheroidal orbitals.,2012,231,J. Comput. Physics,15,db/journals/jcphy/jcphy231.html#Mendl12,https://doi.org/10.1016/j.jcp.2012.04.022 +Christopher K. W. Tam,Finite difference computation of acoustic scattering by small surface inhomogeneities and discontinuities.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#TamJ09,https://doi.org/10.1016/j.jcp.2009.05.005 +Daniel J. Bodony,Analysis of sponge zones for computational fluid mechanics.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#Bodony06,https://doi.org/10.1016/j.jcp.2005.07.014 +Paolo Bettini,Computation of stationary 3D halo currents in fusion devices with accuracy control.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#BettiniS14,https://doi.org/10.1016/j.jcp.2014.04.060 +Aude Bernard-Champmartin,A low diffusive Lagrange-remap scheme for the simulation of violent air-water free-surface flows.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#Bernard-ChampmartinV14,https://doi.org/10.1016/j.jcp.2014.05.032 +Y. Wang,A mass-conserved diffuse interface method and its application for incompressible multiphase flows with large density ratio.,2015,290,J. Comput. Physics,,db/journals/jcphy/jcphy290.html#Wang0SWN15,https://doi.org/10.1016/j.jcp.2015.03.005 +Franck Assous,Data mining techniques for scientific computing: Application to asymptotic paraxial approximations to model ultrarelativistic particles.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#AssousC11,https://doi.org/10.1016/j.jcp.2011.03.005 +Taku Ohwada,On the remedy against shock anomalies in kinetic schemes.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#OhwadaAXL13,https://doi.org/10.1016/j.jcp.2013.07.038 +Diego A. Donzis,Asynchronous finite-difference schemes for partial differential equations.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#DonzisK14,https://doi.org/10.1016/j.jcp.2014.06.017 +Samuel K. M. Chenoweth,A singularity-avoiding moving least squares scheme for two-dimensional unstructured meshes.,2009,228,J. Comput. Physics,15,db/journals/jcphy/jcphy228.html#ChenowethSO09,https://doi.org/10.1016/j.jcp.2009.04.036 +Andrea Mentrelli,Front propagation in anomalous diffusive media governed by time-fractional diffusion.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#MentrelliP15,https://doi.org/10.1016/j.jcp.2014.12.015 +Jingfang Huang,An integral equation method for epitaxial step-flow growth simulations.,2006,216,J. Comput. Physics,2,db/journals/jcphy/jcphy216.html#HuangLX06,https://doi.org/10.1016/j.jcp.2006.01.006 +Robert F. Remis,On the relation between FDTD and Fibonacci polynomials.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#Remis11,https://doi.org/10.1016/j.jcp.2010.11.009 +Georges-Henri Cottet,Semi-Lagrangian particle methods for high-dimensional Vlasov-Poisson systems.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#Cottet18,https://doi.org/10.1016/j.jcp.2018.03.042 +Wei-Fan Hu,An immersed boundary method for simulating the dynamics of three-dimensional axisymmetric vesicles in Navier-Stokes flows.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#HuKL14,https://doi.org/10.1016/j.jcp.2013.10.018 +Harun Kurkcu,Stable and efficient evaluation of periodized Green's functions for the Helmholtz equation at high frequencies.,2009,228,J. Comput. Physics,1,db/journals/jcphy/jcphy228.html#KurkcuR09,https://doi.org/10.1016/j.jcp.2008.08.021 +Nek Sharan,Time-stable overset grid method for hyperbolic problems using summation-by-parts operators.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#SharanPB18,https://doi.org/10.1016/j.jcp.2018.01.049 +L. Homsi,"Corrigendum to ""A coupled electro-thermal Discontinuous Galerkin method"" [J. Comput. Phys. 348 (2017) 231-258].",2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#HomsiGN17a,https://doi.org/10.1016/j.jcp.2017.09.022 +Benjamin Graille,Approximation of mono-dimensional hyperbolic systems: A lattice Boltzmann scheme as a relaxation method.,2014,266,J. Comput. Physics,,db/journals/jcphy/jcphy266.html#Graille14,https://doi.org/10.1016/j.jcp.2014.02.017 +Xuefei Yuan,Numerical simulation of four-field extended magnetohydrodynamics in dynamically adaptive curvilinear coordinates via Newton-Krylov-Schwarz.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#YuanJK12,https://doi.org/10.1016/j.jcp.2012.05.009 +Di Liu,A numerical scheme for optimal transition paths of stochastic chemical kinetic systems.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#Liu08,https://doi.org/10.1016/j.jcp.2008.06.010 +W. P. Bennett,A moving boundary flux stabilization method for Cartesian cut-cell grids using directional operator splitting.,2018,368,J. Comput. Physics,,db/journals/jcphy/jcphy368.html#BennettNK18,https://doi.org/10.1016/j.jcp.2018.04.048 +Alexander Patronis,Hybrid continuum-molecular modelling of multiscale internal gas flows.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#PatronisLBR13,https://doi.org/10.1016/j.jcp.2013.08.033 +Carlo Sansour,On a numerical implementation of a formulation of anisotropic continuum elastoplasticity at finite strains.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#SansourKS08,https://doi.org/10.1016/j.jcp.2008.04.025 +James McDonald,Affordable robust moment closures for CFD based on the maximum-entropy hierarchy.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#McDonaldT13,https://doi.org/10.1016/j.jcp.2013.05.046 +Jaber J. Hasbestan,A short note on the use of the red-black tree in Cartesian adaptive mesh refinement algorithms.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#HasbestanS17,https://doi.org/10.1016/j.jcp.2017.09.056 +Rimple Sandhu,Bayesian inference of nonlinear unsteady aerodynamics from aeroelastic limit cycle oscillations.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#SandhuPPKS16,https://doi.org/10.1016/j.jcp.2016.03.006 +James Kent,Determining the effective resolution of advection schemes. Part I: Dispersion analysis.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#KentWJR14,https://doi.org/10.1016/j.jcp.2014.01.043 +Selda Oterkus,Peridynamic thermal diffusion.,2014,265,J. Comput. Physics,,db/journals/jcphy/jcphy265.html#OterkusMA14,https://doi.org/10.1016/j.jcp.2014.01.027 +Jun Meng,A multilevel Cartesian non-uniform grid time domain algorithm.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#MengBLM10,https://doi.org/10.1016/j.jcp.2010.07.026 +Ronald H. W. Hoppe,An adaptive Newton continuation strategy for the fully implicit finite element immersed boundary method.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#HoppeL12,https://doi.org/10.1016/j.jcp.2012.03.004 +Fei Liao,Extending geometric conservation law to cell-centered finite difference methods on stationary grids.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#LiaoYZ15,https://doi.org/10.1016/j.jcp.2014.12.040 +Eric Cancès,Computing electronic structures: A new multiconfiguration approach for excited states.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#CancesGL06,https://doi.org/10.1016/j.jcp.2005.06.015 +Ersin Ozbenli,High order accurate finite difference schemes based on symmetry preservation.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#OzbenliV17,https://doi.org/10.1016/j.jcp.2017.08.023 +Yaoxin Zhang,2D nearly orthogonal mesh generation with controls on distortion function.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#ZhangJW06,https://doi.org/10.1016/j.jcp.2006.02.023 +Ricardo Costa,A sixth-order finite volume scheme for the steady-state incompressible Stokes equations on staggered unstructured meshes.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#CostaCM17,https://doi.org/10.1016/j.jcp.2017.07.047 +Daekyoung Kang,Precise numerical solutions of potential problems using the Crank-Nicolson method.,2008,227,J. Comput. Physics,5,db/journals/jcphy/jcphy227.html#KangW08,https://doi.org/10.1016/j.jcp.2007.11.028 +Kuan-Yu Chen,A note on pressure accuracy in immersed boundary method for Stokes flow.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#ChenFKL11,https://doi.org/10.1016/j.jcp.2011.03.019 +Milan Kucharik,One-step hybrid remapping algorithm for multi-material arbitrary Lagrangian-Eulerian methods.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#KucharikS12,https://doi.org/10.1016/j.jcp.2011.12.033 +Nawaf Bou-Rabee,A patch that imparts unconditional stability to explicit integrators for Langevin-like equations.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#Bou-RabeeV12,https://doi.org/10.1016/j.jcp.2011.12.007 +Florian Dugast,Topology optimization of thermal fluid flows with an adjoint Lattice Boltzmann Method.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#DugastFJFL18,https://doi.org/10.1016/j.jcp.2018.03.040 +Steven M. Kast,Optimal test functions for boundary accuracy in discontinuous finite element methods.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#KastDF15,https://doi.org/10.1016/j.jcp.2015.05.048 +Chin-Tien Lin,High resolution finite volume scheme for the quantum hydrodynamic equations.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#LinYC09,https://doi.org/10.1016/j.jcp.2008.11.007 +Konstantin Lipnikov,A high-order mimetic method on unstructured polyhedral meshes for the diffusion equation.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#LipnikovM14,https://doi.org/10.1016/j.jcp.2014.04.021 +Jesus Bueno,Liquid-vapor transformations with surfactants. Phase-field model and Isogeometric Analysis.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#BuenoG16,https://doi.org/10.1016/j.jcp.2016.06.008 +Tae-Yeon Kim,A numerical method for a second-gradient theory of incompressible fluid flow.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#KimDF07,https://doi.org/10.1016/j.jcp.2006.09.022 +Yi-Ming Chen,Variable-order fractional numerical differentiation for noisy signals by wavelet denoising.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#ChenWLBC16,https://doi.org/10.1016/j.jcp.2016.02.013 +Wenqi Yao,Noise-induced transition in barotropic flow over topography and application to Kuroshio.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#YaoR15,https://doi.org/10.1016/j.jcp.2015.07.059 +Simon Bolding,Second-order discretization in space and time for radiation-hydrodynamics.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#BoldingHEML17,https://doi.org/10.1016/j.jcp.2017.02.063 +Jan Nordström,Well-posed and stable transmission problems.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#NordstromL18,https://doi.org/10.1016/j.jcp.2018.03.003 +Soheil Soghrati,A boundary collocation meshfree method for the treatment of Poisson problems with complex morphologies.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#SoghratiMLB15,https://doi.org/10.1016/j.jcp.2014.10.030 +G. Capdeville,A Hermite upwind WENO scheme for solving hyperbolic conservation laws.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#Capdeville08,https://doi.org/10.1016/j.jcp.2007.10.017 +Bing-Yang Cao,Nonequilibrium molecular dynamics simulation of shear viscosity by a uniform momentum source-and-sink scheme.,2012,231,J. Comput. Physics,16,db/journals/jcphy/jcphy231.html#CaoD12,https://doi.org/10.1016/j.jcp.2012.04.017 +T. Deconinck,Discretization of the Joule heating term for plasma discharge fluid models in unstructured meshes.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#DeconinckMR09,https://doi.org/10.1016/j.jcp.2009.03.010 +Amanda Peters Randles,Parallel in time approximation of the lattice Boltzmann method for laminar flows.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#RandlesK14,https://doi.org/10.1016/j.jcp.2014.04.006 +Kevin J. Bowers,Zonal methods for the parallel execution of range-limited N-body simulations.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#BowersDS07,https://doi.org/10.1016/j.jcp.2006.06.014 +Andrea Alessandro Ruggiu,A new multigrid formulation for high order finite difference methods on summation-by-parts form.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#RuggiuWN18,https://doi.org/10.1016/j.jcp.2018.01.011 +Dante Kalise,Modeling and numerical approximation of a 2.5D set of equations for mesoscale atmospheric processes.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#KaliseL12,https://doi.org/10.1016/j.jcp.2012.06.035 +Shufang Song,Modified GMDH-NN algorithm and its application for global sensitivity analysis.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#SongW17,https://doi.org/10.1016/j.jcp.2017.07.027 +Murthy N. Guddati,Phonon absorbing boundary conditions for molecular dynamics.,2009,228,J. Comput. Physics,21,db/journals/jcphy/jcphy228.html#GuddatiT09,https://doi.org/10.1016/j.jcp.2009.07.033 +Stany Gallier,A fictitious domain approach for the simulation of dense suspensions.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#GallierLLP14,https://doi.org/10.1016/j.jcp.2013.09.015 +Jichun Li,Developing a time-domain finite-element method for modeling of electromagnetic cylindrical cloaks.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#LiHY12,https://doi.org/10.1016/j.jcp.2011.12.026 +Gerwin Osnabrugge,A convergent Born series for solving the inhomogeneous Helmholtz equation in arbitrarily large media.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#OsnabruggeLV16,https://doi.org/10.1016/j.jcp.2016.06.034 +Virginie Bonnaillie-Noël,Computing the steady states for an asymptotic model of quantum transport in resonant heterostructures.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#Bonnaillie-NoelNP06,https://doi.org/10.1016/j.jcp.2006.04.008 +Stéphane Vincent,Augmented Lagrangian and penalty methods for the simulation of two-phase flows interacting with moving solids. Application to hydroplaning flows interacting with real tire tread patterns.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#VincentSCSFMP11,https://doi.org/10.1016/j.jcp.2010.10.006 +Yuxi Chen,A fifth-order finite difference scheme for hyperbolic equations on block-adaptive curvilinear grids.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#ChenTG16,https://doi.org/10.1016/j.jcp.2015.11.003 +K. K. So,Anti-diffusion method for interface steepening in two-phase incompressible flow.,2011,230,J. Comput. Physics,13,db/journals/jcphy/jcphy230.html#SoHA11,https://doi.org/10.1016/j.jcp.2011.03.011 +Oishik Sen,Evaluation of kriging based surrogate models constructed from mesoscale computations of shock interaction with particles.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#SenGCJU17,https://doi.org/10.1016/j.jcp.2017.01.046 +Guang-hua Gao,A new fractional numerical differentiation formula to approximate the Caputo fractional derivative and its applications.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#GaoSZ14,https://doi.org/10.1016/j.jcp.2013.11.017 +Jack Weatheritt,A novel evolutionary algorithm applied to algebraic modifications of the RANS stress-strain relationship.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#WeatherittS16,https://doi.org/10.1016/j.jcp.2016.08.015 +Thomas C. S. Rendall,Efficient mesh motion using radial basis functions with data reduction algorithms.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#RendallA09,https://doi.org/10.1016/j.jcp.2009.05.013 +James Shaw,"Corrigendum to ""Multidimensional method-of-lines transport for atmospheric flows over steep terrain using arbitrary meshes"" [J. Comput. Phys.",2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#ShawWMD17a, +D. Sármány,Unconditionally stable space-time discontinuous residual distribution for shallow-water flows.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#SarmanyHR13,https://doi.org/10.1016/j.jcp.2013.06.043 +Yueqiang Shang,A two-level subgrid stabilized Oseen iterative method for the steady Navier-Stokes equations.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#Shang13,https://doi.org/10.1016/j.jcp.2012.08.024 +Wei Liu,High order conservative Lagrangian schemes with Lax-Wendroff type time discretization for the compressible Euler equations.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#LiuCS09,https://doi.org/10.1016/j.jcp.2009.09.001 +Christoph J. Mack,A preconditioned Krylov technique for global hydrodynamic stability analysis of large-scale compressible flows.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#MackS10,https://doi.org/10.1016/j.jcp.2009.09.019 +Enrique Bendito,Computational cost of the Fekete problem I: The Forces Method on the 2-sphere.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#BenditoCEGGMS09,https://doi.org/10.1016/j.jcp.2009.01.021 +Asitav Mishra,Time dependent adjoint-based optimization for coupled fluid-structure problems.,2015,292,J. Comput. Physics,,db/journals/jcphy/jcphy292.html#MishraMMS15,https://doi.org/10.1016/j.jcp.2015.03.010 +Peter Lucas,Fast unsteady flow computations with a Jacobian-free Newton-Krylov algorithm.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#LucasZB10,https://doi.org/10.1016/j.jcp.2010.08.033 +David J. Larson,A finite mass based method for Vlasov-Poisson simulations.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#LarsonY15,https://doi.org/10.1016/j.jcp.2014.12.022 +Li Yin,A cell functional minimization scheme for parabolic problem.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#YinWY10,https://doi.org/10.1016/j.jcp.2010.08.018 +Robert D. Skeel,Correcting mesh-based force calculations to conserve both energy and momentum in molecular dynamics simulations.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#SkeelHP07,https://doi.org/10.1016/j.jcp.2007.03.010 +T. G. Callaghan,Computing large-amplitude progressive Rossby waves on a sphere.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#CallaghanF06,https://doi.org/10.1016/j.jcp.2006.01.035 +R. Henniger,High-order accurate solution of the incompressible Navier-Stokes equations on massively parallel computers.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#HennigerOK10,https://doi.org/10.1016/j.jcp.2010.01.015 +Michal A. Kopera,Mass conservation of the unified continuous and discontinuous element-based Galerkin methods on dynamically adaptive grids with application to atmospheric simulations.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#KoperaG15,https://doi.org/10.1016/j.jcp.2015.05.010 +Rongjie Lai,Localized density matrix minimization and linear-scaling algorithms.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#LaiL16,https://doi.org/10.1016/j.jcp.2016.02.076 +J. Wu,An improved immersed boundary-lattice Boltzmann method for simulating three-dimensional incompressible flows.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#WuS10,https://doi.org/10.1016/j.jcp.2010.03.024 +Lilia Krivodonova,An efficient local time-stepping scheme for solution of nonlinear conservation laws.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#Krivodonova10,https://doi.org/10.1016/j.jcp.2010.07.037 +Tao Xiong,A hierarchical uniformly high order DG-IMEX scheme for the 1D BGK equation.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#XiongQ17,https://doi.org/10.1016/j.jcp.2017.01.032 +David Degerfeldt,A brick-tetrahedron finite-element interface with stable hybrid explicit-implicit time-stepping for Maxwell's equations.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#DegerfeldtR06,https://doi.org/10.1016/j.jcp.2006.05.016 +Guanghui Hu,A numerical study of 2D detonation waves with adaptive finite volume methods on unstructured grids.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#Hu17,https://doi.org/10.1016/j.jcp.2016.11.041 +Maziar Raissi,Hidden physics models: Machine learning of nonlinear partial differential equations.,2018,357,J. Comput. Physics,,db/journals/jcphy/jcphy357.html#RaissiK18,https://doi.org/10.1016/j.jcp.2017.11.039 +Saeid Hedayatrasa,Numerical modeling of wave propagation in functionally graded materials using time-domain spectral Chebyshev elements.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#HedayatrasaBZL14,https://doi.org/10.1016/j.jcp.2013.10.037 +Chohong Min,A supra-convergent finite difference scheme for the variable coefficient Poisson equation on non-graded grids.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#MinGC06,https://doi.org/10.1016/j.jcp.2006.01.046 +Jing-Mei Qiu,Positivity preserving semi-Lagrangian discontinuous Galerkin formulation: Theoretical analysis and application to the Vlasov-Poisson system.,2011,230,J. Comput. Physics,23,db/journals/jcphy/jcphy230.html#QiuS11a,https://doi.org/10.1016/j.jcp.2011.07.018 +Slah Sahmim,A sign matrix based scheme for non-homogeneous PDE's with an analysis of the convergence stagnation phenomenon.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#SahmimBA07,https://doi.org/10.1016/j.jcp.2007.06.017 +Shuonan Wu,Multiphase Allen-Cahn and Cahn-Hilliard models and their discretizations with the effect of pairwise surface tensions.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#WuX17,https://doi.org/10.1016/j.jcp.2017.04.039 +Stéphane Clain,A high-order finite volume method for systems of conservation laws - Multi-dimensional Optimal Order Detection (MOOD).,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#ClainDL11,https://doi.org/10.1016/j.jcp.2011.02.026 +Jiequan Li,Implementation of the GRP scheme for computing radially symmetric compressible fluid flows.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#LiLS09,https://doi.org/10.1016/j.jcp.2009.04.047 +Tian Jiang,Krylov single-step implicit integration factor WENO methods for advection-diffusion-reaction equations.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#JiangZ16,https://doi.org/10.1016/j.jcp.2016.01.021 +Martin Weigel,Performance potential for simulating spin models on GPU.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#Weigel12,https://doi.org/10.1016/j.jcp.2011.12.008 +Qingshan Chen,A co-volume scheme for the rotating shallow water equations on conforming non-orthogonal grids.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#ChenRG13,https://doi.org/10.1016/j.jcp.2013.01.003 +Manuel Aldegunde,Development of an exchange-correlation functional with uncertainty quantification capabilities for density functional theory.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#AldegundeKZ16,https://doi.org/10.1016/j.jcp.2016.01.034 +özgür Ergül,Novel electromagnetic surface integral equations for highly accurate computations of dielectric bodies with arbitrarily low contrasts.,2008,227,J. Comput. Physics,23,db/journals/jcphy/jcphy227.html#ErgulG08,https://doi.org/10.1016/j.jcp.2008.08.004 +Lei Cheng,Including fluid shear viscosity in a structural acoustic finite element model using a scalar fluid representation.,2013,247,J. Comput. Physics,,db/journals/jcphy/jcphy247.html#ChengLG13,https://doi.org/10.1016/j.jcp.2013.03.063 +Bryan D. Quaife,Adaptive time stepping for vesicle suspensions.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#QuaifeB16,https://doi.org/10.1016/j.jcp.2015.11.050 +Stephen D. Webb,Symplectic integration of magnetic systems.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#Webb14,https://doi.org/10.1016/j.jcp.2014.03.049 +Yan Wang,Multiphase lattice Boltzmann flux solver for incompressible multiphase flows with large density ratio.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#Wang0HT15,https://doi.org/10.1016/j.jcp.2014.09.035 +Simone Marras,Stabilized high-order Galerkin methods based on a parameter-free dynamic SGS model for LES.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#MarrasNG15,https://doi.org/10.1016/j.jcp.2015.07.034 +John P. Boyd 0001,A comparison of companion matrix methods to find roots of a trigonometric polynomial.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#Boyd13,https://doi.org/10.1016/j.jcp.2013.03.022 +Matthias Toggweiler,A novel adaptive time stepping variant of the Boris-Buneman integrator for the simulation of particle accelerators with space charge.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#ToggweilerAAY14,https://doi.org/10.1016/j.jcp.2014.05.008 +Martin Stoll,All-at-once solution of time-dependent Stokes control.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#StollW13,https://doi.org/10.1016/j.jcp.2012.08.039 +Dinshaw S. Balsara,Multidimensional HLLC Riemann solver for unstructured meshes - With application to Euler and MHD flows.,2014,261,J. Comput. Physics,,db/journals/jcphy/jcphy261.html#BalsaraDA14,https://doi.org/10.1016/j.jcp.2013.12.029 +Youngsoo Ha,On the numerical solution of a driven thin film equation.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#HaKM08,https://doi.org/10.1016/j.jcp.2008.04.007 +Thierry Coupez,Adaptive time-step with anisotropic meshing for incompressible flows.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#CoupezJNNDH13,https://doi.org/10.1016/j.jcp.2012.12.010 +Annamaria Mazzia,Bad behavior of Godunov mixed methods for strongly anisotropic advection-dispersion equations.,2011,230,J. Comput. Physics,23,db/journals/jcphy/jcphy230.html#MazziaMP11,https://doi.org/10.1016/j.jcp.2011.07.021 +Dario Isola,Finite-volume solution of two-dimensional compressible flows over dynamic adaptive grids.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#IsolaGQ15,https://doi.org/10.1016/j.jcp.2015.01.007 +Alexander Rothkopf,Improved maximum entropy analysis with an extended search space.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#Rothkopf13,https://doi.org/10.1016/j.jcp.2012.12.023 +Federico G. Pazzona,Improving the acceptance in Monte Carlo simulations: Sampling through intermediate states.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#PazzonaDS15,https://doi.org/10.1016/j.jcp.2015.04.014 +Peter A. Graf,Surface passivation optimization using DIRECT.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#GrafKJW07,https://doi.org/10.1016/j.jcp.2006.10.033 +Rebeca Salas-Boni,Principal components: A descent algorithm.,2014,267,J. Comput. Physics,,db/journals/jcphy/jcphy267.html#Salas-BoniT14,https://doi.org/10.1016/j.jcp.2014.02.033 +V. Sriram,A hybrid method for modelling two dimensional non-breaking and breaking waves.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#SriramMS14,https://doi.org/10.1016/j.jcp.2014.04.030 +Zhiqiang Wang,A parallel algorithm for 3D dislocation dynamics.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#WangGSL06,https://doi.org/10.1016/j.jcp.2006.04.005 +Sashikumaar Ganesan,A coupled arbitrary Lagrangian-Eulerian and Lagrangian method for computation of free surface flows with insoluble surfactants.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#GanesanT09,https://doi.org/10.1016/j.jcp.2008.12.035 +Anup A. Shirgaonkar,A new mathematical formulation and fast algorithm for fully resolved simulation of self-propulsion.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#ShirgaonkarMP09,https://doi.org/10.1016/j.jcp.2008.12.006 +S. B. Adrian,A hierarchical preconditioner for the electric field integral equation on unstructured meshes based on primal and dual Haar bases.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#AdrianAE17,https://doi.org/10.1016/j.jcp.2016.11.013 +Frédéric Gibou,On the performance of a simple parallel implementation of the ILU-PCG for the Poisson equation on irregular domains.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#GibouM12a,https://doi.org/10.1016/j.jcp.2012.02.023 +Alexander G. Churbanov,Numerical investigation of a space-fractional model of turbulent fluid flow in rectangular ducts.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#ChurbanovV16,https://doi.org/10.1016/j.jcp.2016.06.009 +B. Trouette,About the ellipticity of the Chebyshev-Gauss-Radau discrete Laplacian with Neumann condition.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#TrouetteDL10,https://doi.org/10.1016/j.jcp.2010.06.013 +A. Báez Vidal,On the properties of discrete spatial filters for CFD.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#VidalLTP16,https://doi.org/10.1016/j.jcp.2016.09.002 +Tomasz Hrycak,Pseudospectral Fourier reconstruction with the modified Inverse Polynomial Reconstruction Method.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#HrycakG10,https://doi.org/10.1016/j.jcp.2009.10.026 +Mohamed Zerroukat,A moist Boussinesq shallow water equations set for testing atmospheric models.,2015,290,J. Comput. Physics,,db/journals/jcphy/jcphy290.html#ZerroukatA15,https://doi.org/10.1016/j.jcp.2015.02.011 +Zhikai Wang,A new central compact finite difference scheme with high spectral resolution for acoustic wave equation.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#WangLWXC18,https://doi.org/10.1016/j.jcp.2018.03.030 +Dinh-Liem Nguyen,Numerical solution of a coefficient inverse problem with multi-frequency experimental raw data by a globally convergent algorithm.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#NguyenKNKFL17,https://doi.org/10.1016/j.jcp.2017.05.015 +Daniel P. Garrick,An interface capturing scheme for modeling atomization in compressible flows.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#GarrickHR17,https://doi.org/10.1016/j.jcp.2017.04.079 +Alberto Mussa,Lattice Boltzmann simulations of 2D laminar flows past two tandem cylinders.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#MussaAL09,https://doi.org/10.1016/j.jcp.2008.10.010 +Mario Ricchiuto,An explicit residual based approach for shallow water flows.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#Ricchiuto15,https://doi.org/10.1016/j.jcp.2014.09.027 +Sorin Mitran,Continuum-kinetic-microscopic model of lung clearance due to core-annular fluid entrainment.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#Mitran13,https://doi.org/10.1016/j.jcp.2013.01.037 +Jian-Jun Xu,A level-set continuum method for two-phase flows with insoluble surfactant.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#XuYL12,https://doi.org/10.1016/j.jcp.2012.05.014 +Yangyu Guo,Lattice Boltzmann modeling of phonon transport.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#GuoW16,https://doi.org/10.1016/j.jcp.2016.03.041 +A. J. Kriel,A flux splitting method for the Euler equations.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#Kriel14,https://doi.org/10.1016/j.jcp.2014.08.039 +Li-Jun Xuan,A point-value enhanced finite volume method based on approximate delta functions.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#XuanM18,https://doi.org/10.1016/j.jcp.2017.10.059 +Aaditya V. Rangan,Efficient methods for grouping vectors into low-rank clusters.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#Rangan11,https://doi.org/10.1016/j.jcp.2011.03.048 +Jian Du,A simple package for front tracking.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#DuFGJ0LW06,https://doi.org/10.1016/j.jcp.2005.08.034 +Jie Li,An arbitrary Lagrangian Eulerian method for three-phase flows with triple junction points.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#Li13,https://doi.org/10.1016/j.jcp.2013.05.029 +Hyung Taek Ahn,Multi-material interface reconstruction on generalized polyhedral meshes.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#AhnS07,https://doi.org/10.1016/j.jcp.2007.06.033 +Xavier Antoine,On the numerical approximation of high-frequency acoustic multiple scattering problems by circular cylinders.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#AntoineCR08,https://doi.org/10.1016/j.jcp.2007.09.030 +Ralf Hartmann,An optimal order interior penalty discontinuous Galerkin discretization of the compressible Navier-Stokes equations.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#HartmannH08,https://doi.org/10.1016/j.jcp.2008.07.015 +Yuri Luchko,Wave-diffusion dualism of the neutral-fractional processes.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#Luchko15,https://doi.org/10.1016/j.jcp.2014.06.005 +Jason E. Hicken,PDE-constrained optimization with error estimation and control.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#HickenA14,https://doi.org/10.1016/j.jcp.2013.12.050 +Lijin Wang,Computational singular perturbation analysis of stochastic chemical systems with stiffness.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#WangHCN17,https://doi.org/10.1016/j.jcp.2017.01.040 +A. H. Bhrawy,A method based on the Jacobi tau approximation for solving multi-term time-space fractional partial differential equations.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#BhrawyZ15,https://doi.org/10.1016/j.jcp.2014.10.060 +Lorenzo Botti,Assessment of Hybrid High-Order methods on curved meshes and comparison with discontinuous Galerkin methods.,2018,370,J. Comput. Physics,,db/journals/jcphy/jcphy370.html#BottiP18,https://doi.org/10.1016/j.jcp.2018.05.017 +Wei-Xi Huang,Three-dimensional simulation of elastic capsules in shear flow by the penalty immersed boundary method.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#HuangCS12,https://doi.org/10.1016/j.jcp.2012.01.006 +Pavel Váchal,Volume change and energy exchange: How they affect symmetry in the Noh problem.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#VachalW18,https://doi.org/10.1016/j.jcp.2018.03.021 +Thomas Toulorge,Robust untangling of curvilinear meshes.,2013,254,J. Comput. Physics,,db/journals/jcphy/jcphy254.html#ToulorgeGRL13,https://doi.org/10.1016/j.jcp.2013.07.022 +Nicola Castelletto,Multiscale finite-element method for linear elastic geomechanics.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#CastellettoHT17,https://doi.org/10.1016/j.jcp.2016.11.044 +Hongyong Yan,Optimal staggered-grid finite-difference schemes by combining Taylor-series expansion and sampling approximation for wave equation modeling.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#YanYL16,https://doi.org/10.1016/j.jcp.2016.09.019 +Hamid Moghaderi,Spectral analysis and multigrid preconditioners for two-dimensional space-fractional diffusion equations.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#MoghaderiDDM17,https://doi.org/10.1016/j.jcp.2017.08.064 +Xiang Ma,A stabilized stochastic finite element second-order projection method for modeling natural convection in random porous media.,2008,227,J. Comput. Physics,18,db/journals/jcphy/jcphy227.html#MaZ08,https://doi.org/10.1016/j.jcp.2008.06.008 +Y. Lin,Monte Carlo simulation of the Ising model on FPGA.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#LinWZGZ13,https://doi.org/10.1016/j.jcp.2012.12.005 +Seongju Do,Wavelet-based adaptation methodology combined with finite difference WENO to solve ideal magnetohydrodynamics.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#DoLK17,https://doi.org/10.1016/j.jcp.2017.03.028 +Aydin Nabovati,On the lattice Boltzmann method for phonon transport.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#NabovatiSA11,https://doi.org/10.1016/j.jcp.2011.03.061 +Konstantin A. Kemenov,Explicit small-scale velocity simulation for high-Re turbulent flows. Part II: Non-homogeneous flows.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#KemenovM07,https://doi.org/10.1016/j.jcp.2006.08.002 +Sibylle Günter,Finite element and higher order difference formulations for modelling heat transport in magnetised plasmas.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#GunterLT07,https://doi.org/10.1016/j.jcp.2007.07.016 +Brendan B. Godfrey,Numerical stability analysis of the pseudo-spectral analytical time-domain PIC algorithm.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#GodfreyVH14,https://doi.org/10.1016/j.jcp.2013.10.053 +James Kent,Determining the effective resolution of advection schemes. Part II: Numerical testing.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#KentJWR14,https://doi.org/10.1016/j.jcp.2014.08.045 +Yassine Boubendir,Stokes-Darcy boundary integral solutions using preconditioners.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#BoubendirT09,https://doi.org/10.1016/j.jcp.2009.08.014 +Lester O. Hedges,Stochastic level-set method for shape optimisation.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#HedgesKJ17,https://doi.org/10.1016/j.jcp.2017.07.010 +Weiping Bu,Finite difference/finite element method for two-dimensional space and time fractional Bloch-Torrey equations.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#BuTWY15,https://doi.org/10.1016/j.jcp.2014.06.031 +B. Sanderse,Accuracy analysis of explicit Runge-Kutta methods applied to the incompressible Navier-Stokes equations.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#SanderseK12,https://doi.org/10.1016/j.jcp.2011.11.028 +Gilles Vilmart,Reducing round-off errors in rigid body dynamics.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#Vilmart08,https://doi.org/10.1016/j.jcp.2008.04.013 +C. Le Touze,Multislope MUSCL method for general unstructured meshes.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#TouzeMG15,https://doi.org/10.1016/j.jcp.2014.12.032 +John D. Jakeman,Enhancing and#8467*1-minimization estimates of polynomial chaos expansions using basis selection.,2015,289,J. Comput. Physics,,db/journals/jcphy/jcphy289.html#JakemanES15,https://doi.org/10.1016/j.jcp.2015.02.025 +Franco Auteri,Navier-Stokes spectral solver in a sphere.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#AuteriQ09,https://doi.org/10.1016/j.jcp.2009.06.016 +Marie Doumic,Simulation of laser beam propagation with a paraxial model in a tilted frame.,2009,228,J. Comput. Physics,3,db/journals/jcphy/jcphy228.html#DoumicDGS09,https://doi.org/10.1016/j.jcp.2008.10.009 +Kunal Puri,Approximate Riemann solvers for the Godunov SPH (GSPH).,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#PuriR14a,https://doi.org/10.1016/j.jcp.2014.03.055 +T. Gómez,Pseudo-wave decomposition high-order method for magnetogasdynamics.,2008,227,J. Comput. Physics,20,db/journals/jcphy/jcphy227.html#Gomez08,https://doi.org/10.1016/j.jcp.2008.07.001 +Guglielmo Rubinacci,A fast technique applied to the analysis of Resistive Wall Modes with 3D conducting structures.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#RubinacciVVL09,https://doi.org/10.1016/j.jcp.2008.10.040 +A. Alvarez Laguna,A fully-implicit finite-volume method for multi-fluid reactive and collisional magnetized plasmas on unstructured meshes.,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#LagunaLDMP16,https://doi.org/10.1016/j.jcp.2016.04.058 +Walter Boscheri,Direct Arbitrary-Lagrangian-Eulerian ADER-MOOD finite volume schemes for multidimensional hyperbolic conservation laws.,2015,292,J. Comput. Physics,,db/journals/jcphy/jcphy292.html#BoscheriLD15,https://doi.org/10.1016/j.jcp.2015.03.015 +Yuanhong Li,Mesh refinement algorithms in an unstructured solver for multiphase flow simulation using discrete particles.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#LiK09,https://doi.org/10.1016/j.jcp.2009.05.018 +Jeffrey W. Banks,Upwind schemes for the wave equation in second-order form.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#BanksH12,https://doi.org/10.1016/j.jcp.2012.05.012 +Hongling Su,Energy/dissipation-preserving Birkhoffian multi-symplectic methods for Maxwell's equations with dissipation terms.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#SuL16,https://doi.org/10.1016/j.jcp.2016.01.035 +G. Casas,Approximating the Basset force by optimizing the method of van Hinsberg et al.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#CasasFO18,https://doi.org/10.1016/j.jcp.2017.09.060 +Huadong Gao,An efficient fully linearized semi-implicit Galerkin-mixed FEM for the dynamical Ginzburg-Landau equations of superconductivity.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#GaoS15,https://doi.org/10.1016/j.jcp.2015.03.057 +Shucheng Pan,High-order time-marching reinitialization for regional level-set functions.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#PanLHA18,https://doi.org/10.1016/j.jcp.2017.10.054 +Igor Zagorodnov,Conformal FDTD-methods to avoid time step reduction with and without cell enlargement.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#ZagorodnovSW07,https://doi.org/10.1016/j.jcp.2007.02.002 +W. Lowrie,A priori mesh quality metric error analysis applied to a high-order finite element method.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#LowrieLS11,https://doi.org/10.1016/j.jcp.2011.03.036 +Zhaosheng Yu,A fictitious domain method for particulate flows with heat transfer.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#YuSW06,https://doi.org/10.1016/j.jcp.2006.01.016 +Carlos M. Mora,Numerical solution of stochastic quantum master equations using stochastic interacting wave functions.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#MoraFB18,https://doi.org/10.1016/j.jcp.2018.03.045 +M. R. Norman,Multi-moment ADER-Taylor methods for systems of conservation laws with source terms in one dimension.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#NormanF12,https://doi.org/10.1016/j.jcp.2012.05.029 +Kannan N. Premnath,Three-dimensional multi-relaxation time (MRT) lattice-Boltzmann models for multiphase flow.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#PremnathA07,https://doi.org/10.1016/j.jcp.2006.10.023 +Ben Thornber,An improved reconstruction method for compressible flows with low Mach number features.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#ThornberMDYW08,https://doi.org/10.1016/j.jcp.2008.01.036 +Shaaban Ali Bakr,Domain decomposition Fourier finite element method for the simulation of 3D marine CSEM measurements.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#BakrPM13,https://doi.org/10.1016/j.jcp.2013.08.041 +S. C. Fu,Stochastic finite difference lattice Boltzmann method for steady incompressible viscous flows.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#FuSL10,https://doi.org/10.1016/j.jcp.2010.04.041 +Yeonjong Shin,Sequential function approximation with noisy data.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#ShinWX18,https://doi.org/10.1016/j.jcp.2018.05.042 +Dmitry Kolomenskiy,A Fourier spectral method for the Navier-Stokes equations with volume penalization for moving solid obstacles.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#KolomenskiyS09,https://doi.org/10.1016/j.jcp.2009.04.026 +F. Meng,A stable and accurate partitioned algorithm for conjugate heat transfer.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#MengBHS17,https://doi.org/10.1016/j.jcp.2017.04.052 +Tobias Preis,GPU accelerated Monte Carlo simulation of the 2D and 3D Ising model.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#PreisV0S09,https://doi.org/10.1016/j.jcp.2009.03.018 +Nikolay Nikitin,Finite-difference method for incompressible Navier-Stokes equations in arbitrary orthogonal curvilinear coordinates.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#Nikitin06,https://doi.org/10.1016/j.jcp.2006.01.036 +Khosro Shahbazi,Multigrid algorithms for high-order discontinuous Galerkin discretizations of the compressible Navier-Stokes equations.,2009,228,J. Comput. Physics,21,db/journals/jcphy/jcphy228.html#ShahbaziMB09,https://doi.org/10.1016/j.jcp.2009.07.013 +Alexander Bihlo,Convecting reference frames and invariant numerical models.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#BihloN14,https://doi.org/10.1016/j.jcp.2014.04.042 +Kelin Xia,MIB method for elliptic equations with multi-material interfaces.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#XiaZW11,https://doi.org/10.1016/j.jcp.2011.02.037 +Minseok Choi,On the equivalence of dynamically orthogonal and bi-orthogonal methods: Theory and numerical simulations.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#ChoiSK14,https://doi.org/10.1016/j.jcp.2014.03.050 +Hanquan Wang,A projection gradient method for computing ground state of spin-2 Bose-Einstein condensates.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#Wang14,https://doi.org/10.1016/j.jcp.2014.06.015 +Andrew J. Christlieb,Finite difference weighted essentially non-oscillatory schemes with constrained transport for ideal magnetohydrodynamics.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#ChristliebRT14,https://doi.org/10.1016/j.jcp.2014.03.001 +Anne M. Fernando,DGM-FD: A finite difference scheme based on the discontinuous Galerkin method applied to wave propagation.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#FernandoH11,https://doi.org/10.1016/j.jcp.2011.03.008 +Alexandre Dupuis,An immersed boundary-lattice-Boltzmann method for the simulation of the flow past an impulsively started cylinder.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#DupuisCK08,https://doi.org/10.1016/j.jcp.2008.01.009 +Zheng Sun,A discontinuous Galerkin method for nonlinear parabolic equations and gradient flow problems with interaction potentials.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#SunCS18,https://doi.org/10.1016/j.jcp.2017.09.050 +J. Thomas Beale,A velocity decomposition approach for moving interfaces in viscous fluids.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#BealeL09,https://doi.org/10.1016/j.jcp.2009.01.023 +Huimin Lin,Accuracy and efficiency in computing electrostatic potential for an ion channel model in layered dielectric/electrolyte media.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#LinTC14,https://doi.org/10.1016/j.jcp.2013.12.017 +Luc Berger-Vergiat,Parallel preconditioners for monolithic solution of shear bands.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#Berger-VergiatM16,https://doi.org/10.1016/j.jcp.2015.09.028 +Alain Lerat,An efficient high-order compact scheme for the unsteady compressible Euler and Navier-Stokes equations.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#Lerat16,https://doi.org/10.1016/j.jcp.2016.06.050 +Vaibhav Joshi,A positivity preserving and conservative variational scheme for phase-field modeling of two-phase flows.,2018,360,J. Comput. Physics,,db/journals/jcphy/jcphy360.html#JoshiJ18,https://doi.org/10.1016/j.jcp.2018.01.028 +Lloyd J. Bridge,A mixture formulation for numerical capturing of a two-phase/vapour interface in a porous medium.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#BridgeW07,https://doi.org/10.1016/j.jcp.2007.03.011 +Colin Josey,Windowed multipole for cross section Doppler broadening.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#JoseyDFS16,https://doi.org/10.1016/j.jcp.2015.08.013 +Alessandro Munafò,A spectral-Lagrangian Boltzmann solver for a multi-energy level gas.,2014,264,J. Comput. Physics,,db/journals/jcphy/jcphy264.html#MunafoHGM14,https://doi.org/10.1016/j.jcp.2014.01.036 +Hiroaki Nishikawa,A first-order system approach for diffusion equation. II: Unification of advection and diffusion.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#Nishikawa10,https://doi.org/10.1016/j.jcp.2009.10.040 +A. G. R. Thomas,A review of Vlasov-Fokker-Planck numerical modeling of inertial confinement fusion plasma.,2012,231,J. Comput. Physics,3,db/journals/jcphy/jcphy231.html#ThomasTRKRSB12,https://doi.org/10.1016/j.jcp.2011.09.028 +S. J. Lind,Incompressible-compressible flows with a transient discontinuous interface using smoothed particle hydrodynamics (SPH).,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#LindSR16,https://doi.org/10.1016/j.jcp.2015.12.005 +Jianfeng Lu 0001,Orbital minimization method with and#8467*1 regularization.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#LuT17,https://doi.org/10.1016/j.jcp.2017.02.005 +M. Pino Martín,A parallel implicit method for the direct numerical simulation of wall-bounded compressible turbulence.,2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#MartinC06,https://doi.org/10.1016/j.jcp.2005.10.017 +Enrico De Micheli,The expansion in Gegenbauer polynomials: A simple method for the fast computation of the Gegenbauer coefficients.,2013,239,J. Comput. Physics,,db/journals/jcphy/jcphy239.html#MicheliV13,https://doi.org/10.1016/j.jcp.2013.01.008 +M. Leguèbe,A second-order Cartesian method for the simulation of electropermeabilization cell models.,2015,292,J. Comput. Physics,,db/journals/jcphy/jcphy292.html#LeguebePW15,https://doi.org/10.1016/j.jcp.2015.03.028 +Yu Lv,Entropy-bounded discontinuous Galerkin scheme for Euler equations.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#LvI15,https://doi.org/10.1016/j.jcp.2015.04.026 +Daniel W. Meyer,Micromixing models for turbulent flows.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#MeyerJ09,https://doi.org/10.1016/j.jcp.2008.10.019 +Lingxing Yao,A numerical method for osmotic water flow and solute diffusion with deformable membrane boundaries in two spatial dimension.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#YaoM17,https://doi.org/10.1016/j.jcp.2017.09.006 +Mei Song Tong,Nyström method for elastic wave scattering by three-dimensional obstacles.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#TongC07,https://doi.org/10.1016/j.jcp.2007.06.013 +Matteo Longoni,An ALE-based numerical technique for modeling sedimentary basin evolution featuring layer deformations and faults.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#LongoniMQVR11,https://doi.org/10.1016/j.jcp.2011.01.027 +E. A. Koopman,An algorithm for detecting percolating structures in periodic systems - Application to polymer networks.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#KoopmanL14,https://doi.org/10.1016/j.jcp.2014.06.054 +Immo Huismann,Factorizing the factorization - a spectral-element solver for elliptic equations with linear operation count.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#HuismannSF17,https://doi.org/10.1016/j.jcp.2017.06.012 +Rongzong Huang,A modified multiple-relaxation-time lattice Boltzmann model for convection-diffusion equation.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#HuangW14a,https://doi.org/10.1016/j.jcp.2014.05.041 +A. Bukhvostova,Low Mach number algorithm for droplet-laden turbulent channel flow including phase transition.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#BukhvostovaKG15,https://doi.org/10.1016/j.jcp.2015.04.021 +Christoph Karle,Numerical solution of nonlinear wave equations in stratified dispersive media.,2006,216,J. Comput. Physics,1,db/journals/jcphy/jcphy216.html#KarleSHLS06,https://doi.org/10.1016/j.jcp.2005.11.024 +Ionut Danaila,A Newton method with adaptive finite elements for solving phase-change problems with natural convection.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#DanailaMHM14,https://doi.org/10.1016/j.jcp.2014.06.036 +Dexuan Xie,An improved algorithm and its parallel implementation for solving a general blood-tissue transport and metabolism model.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#XieDB09,https://doi.org/10.1016/j.jcp.2009.07.024 +A. Petras,PDEs on moving surfaces via the closest point method and a modified grid based particle method.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#PetrasR16,https://doi.org/10.1016/j.jcp.2016.02.024 +Massimo Maiolo,Wavelets as basis functions to represent the coarse-graining potential in multiscale coarse graining approach.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#MaioloVKD15,https://doi.org/10.1016/j.jcp.2015.07.039 +Stuart Chester,Modeling turbulent flow over fractal trees with renormalized numerical simulation.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#ChesterMP07,https://doi.org/10.1016/j.jcp.2006.12.009 +René Laprise,Regional climate modelling.,2008,227,J. Comput. Physics,7,db/journals/jcphy/jcphy227.html#Laprise08,https://doi.org/10.1016/j.jcp.2006.10.024 +Timothy J. Moroney,A three-dimensional finite volume method based on radial basis functions for the accurate computational modelling of nonlinear diffusion equations.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#MoroneyT07,https://doi.org/10.1016/j.jcp.2007.01.029 +Wei-Xi Huang,An improved penalty immersed boundary method for fluid-flexible body interaction.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#HuangCS11,https://doi.org/10.1016/j.jcp.2011.03.027 +Shibin Dai,Computational studies of coarsening rates for the Cahn-Hilliard equation with phase-dependent diffusion mobility.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#DaiD16,https://doi.org/10.1016/j.jcp.2016.01.018 +Jie Li 0010,Subdivision based isogeometric analysis technique for electric field integral equations for simply connected structures.,2016,319,J. Comput. Physics,,db/journals/jcphy/jcphy319.html#LiDLTS16,https://doi.org/10.1016/j.jcp.2016.04.008 +Benjamin G. Levine,Fast analysis of molecular dynamics trajectories with graphics processing units - Radial distribution function histogramming.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#LevineSK11,https://doi.org/10.1016/j.jcp.2011.01.048 +Peter D. Düben,The use of imprecise processing to improve accuracy in weather and climate prediction.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#DubenMP14,https://doi.org/10.1016/j.jcp.2013.10.042 +Rio Yokota,Calculation of isotropic turbulence using a pure Lagrangian vortex method.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#YokotaSO07,https://doi.org/10.1016/j.jcp.2007.06.003 +Adem Kaya,Finite difference approximations of multidimensional unsteady convection-diffusion-reaction equations.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#Kaya15,https://doi.org/10.1016/j.jcp.2015.01.024 +Will Pazner,Approximate tensor-product preconditioners for very high order discontinuous Galerkin methods.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#PaznerP18,https://doi.org/10.1016/j.jcp.2017.10.030 +Avi Soffer,Open boundaries for the nonlinear Schrödinger equation.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#SofferS07,https://doi.org/10.1016/j.jcp.2007.01.020 +Enrico Rinaldi,Exact Jacobians for implicit Navier-Stokes simulations of equilibrium real gas flows.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#RinaldiPC14,https://doi.org/10.1016/j.jcp.2014.03.058 +Eldad Haber,An octree multigrid method for quasi-static Maxwell's equations with highly discontinuous coefficients.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#HaberH07,https://doi.org/10.1016/j.jcp.2006.10.012 +Robert L. Higdon,Pressure forcing and dispersion analysis for discontinuous Galerkin approximations to oceanic fluid flows.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#Higdon13,https://doi.org/10.1016/j.jcp.2013.04.028 +Gang Bao,Fast multiscale Gaussian beam methods for wave equations in bounded convex domains.,2014,261,J. Comput. Physics,,db/journals/jcphy/jcphy261.html#BaoLQ14,https://doi.org/10.1016/j.jcp.2013.12.034 +Jeffrey W. Banks,A stable partitioned FSI algorithm for rigid bodies and incompressible flow. Part II: General formulation.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#BanksHST17a,https://doi.org/10.1016/j.jcp.2017.04.064 +Marian Nemec,Adjoint sensitivity computations for an embedded-boundary Cartesian mesh method.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#NemecA08,https://doi.org/10.1016/j.jcp.2007.11.018 +Jiten C. Kalita,A transformation-free HOC scheme for incompressible viscous flows past an impulsively started circular cylinder.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#KalitaR09,https://doi.org/10.1016/j.jcp.2009.04.016 +Seungwon Shin,A hybrid interface tracking - level set technique for multiphase flow with soluble surfactant.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#ShinCJKMC18,https://doi.org/10.1016/j.jcp.2018.01.010 +Philipp Birken,Preconditioning for modal discontinuous Galerkin methods for unsteady 3D Navier-Stokes equations.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#BirkenGHM13,https://doi.org/10.1016/j.jcp.2013.01.004 +Philippe Poncet,Analysis of an immersed boundary method for three-dimensional flows in vorticity formulation.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#Poncet09,https://doi.org/10.1016/j.jcp.2009.06.023 +Xiaogang Deng,Geometric conservation law and applications to high-order finite difference schemes with stationary grids.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#DengMTLZ11,https://doi.org/10.1016/j.jcp.2010.10.028 +Haksu Moon,Stable evaluation of Green's functions in cylindrically stratified regions with uniaxial anisotropic layers.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#MoonDT16,https://doi.org/10.1016/j.jcp.2016.08.019 +Jinlong Wu,Statistical method for resolving the photon-photoelectron-counting inversion problem.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#WuLPG11,https://doi.org/10.1016/j.jcp.2010.10.015 +Sergey Pancheshnyi,Numerical simulation of filamentary discharges with parallel adaptive mesh refinement.,2008,227,J. Comput. Physics,13,db/journals/jcphy/jcphy227.html#PancheshnyiSCB08,https://doi.org/10.1016/j.jcp.2008.03.020 +Svetlana Tlupova,Boundary integral solutions of coupled Stokes and Darcy flows.,2009,228,J. Comput. Physics,1,db/journals/jcphy/jcphy228.html#TlupovaC09,https://doi.org/10.1016/j.jcp.2008.09.011 +Christian Soize,Polynomial chaos representation of databases on manifolds.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#SoizeG17,https://doi.org/10.1016/j.jcp.2017.01.031 +G. Kumar,WENO-enhanced gas-kinetic scheme for direct simulations of compressible transition and turbulence.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#KumarGK13,https://doi.org/10.1016/j.jcp.2012.10.005 +Sylvain Laizet,High-order compact schemes for incompressible flows: A simple and efficient method with quasi-spectral accuracy.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#LaizetL09,https://doi.org/10.1016/j.jcp.2009.05.010 +Mijail Febres,Enhancement of a 2D front-tracking algorithm with a non-uniform distribution of Lagrangian markers.,2018,358,J. Comput. Physics,,db/journals/jcphy/jcphy358.html#FebresL18,https://doi.org/10.1016/j.jcp.2017.12.021 +Yang Cao 0001,Accuracy limitations and the measurement of errors in the stochastic simulation of chemically reacting systems.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#CaoP06,https://doi.org/10.1016/j.jcp.2005.06.012 +Abdelkader Krimi,Smoothed Particle Hydrodynamics: A consistent model for interfacial multiphase fluid flow simulations.,2018,358,J. Comput. Physics,,db/journals/jcphy/jcphy358.html#KrimiRKNDR18,https://doi.org/10.1016/j.jcp.2017.12.006 +Shidong Jiang,Second kind integral equations for the first kind Dirichlet problem of the biharmonic equation in three dimensions.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#JiangRTY11,https://doi.org/10.1016/j.jcp.2011.06.015 +Juan Sánchez,Radial collocation methods for the onset of convection in rotating spheres.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#SanchezGN16,https://doi.org/10.1016/j.jcp.2015.12.040 +Georgios Matheou,Verification of a fluid-dynamics solver using correlations with linear stability results.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#MatheouPD08,https://doi.org/10.1016/j.jcp.2008.01.055 +Weizhu Bao,Efficient numerical methods for computing ground states and dynamics of dipolar Bose-Einstein condensates.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#BaoCW10,https://doi.org/10.1016/j.jcp.2010.07.001 +Youngjoon Hong,A high-order perturbation of surfaces method for scattering of linear waves by periodic multiply layered gratings in two and three dimensions.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#HongN17a,https://doi.org/10.1016/j.jcp.2017.05.017 +Roger G. Ghanem,On the construction and analysis of stochastic models: Characterization and propagation of the errors associated with limited data.,2006,217,J. Comput. Physics,1,db/journals/jcphy/jcphy217.html#GhanemD06,https://doi.org/10.1016/j.jcp.2006.01.037 +Juntao Huang,Boundary conditions of the lattice Boltzmann method for convection-diffusion equations.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#HuangY15,https://doi.org/10.1016/j.jcp.2015.07.045 +I. Akkerman,Isogeometric analysis of free-surface flow.,2011,230,J. Comput. Physics,11,db/journals/jcphy/jcphy230.html#AkkermanBKF11,https://doi.org/10.1016/j.jcp.2010.11.044 +Juekuan Yang,GPU accelerated molecular dynamics simulation of thermal conductivities.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#YangWC07,https://doi.org/10.1016/j.jcp.2006.06.039 +Kai Fu,The conservative characteristic FD methods for atmospheric aerosol transport problems.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#FuL16,https://doi.org/10.1016/j.jcp.2015.10.049 +Wangtao Lu,Waveguide mode solver based on Neumann-to-Dirichlet operators and boundary integral equations.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#LuL12,https://doi.org/10.1016/j.jcp.2011.10.016 +Stephan Schwarz,A temporal discretization scheme to compute the motion of light particles in viscous flows by an immersed boundary method.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#SchwarzKF15,https://doi.org/10.1016/j.jcp.2014.10.039 +Astrid S. de Wijn,Numerical aspects of real-space approaches to strong-field electron dynamics.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#WijnKL07,https://doi.org/10.1016/j.jcp.2007.03.022 +Weizhu Bao,Computing the ground state and dynamics of the nonlinear Schrödinger equation with nonlocal interactions via the nonuniform FFT.,2015,296,J. Comput. Physics,,db/journals/jcphy/jcphy296.html#BaoJTZ15,https://doi.org/10.1016/j.jcp.2015.04.045 +Davoud Saffar Shamshirgar,The Spectral Ewald method for singly periodic domains.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#ShamshirgarT17,https://doi.org/10.1016/j.jcp.2017.07.001 +Robert I. A. Patterson,Stochastic weighted particle methods for population balance equations.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#PattersonWK11,https://doi.org/10.1016/j.jcp.2011.06.011 +M. Nitsche,High order quadratures for the evaluation of interfacial velocities in axi-symmetric Stokes flows.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#NitscheCKN10,https://doi.org/10.1016/j.jcp.2010.04.043 +Grigoris Katsiolides,Multilevel Monte Carlo and improved *tepping methods in atmospheric dispersion modelling.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#KatsiolidesMSSG18,https://doi.org/10.1016/j.jcp.2017.10.035 +Giuseppe Pitton,Computational reduction strategies for the detection of steady bifurcations in incompressible fluid-dynamics: Applications to Coanda effect in cardiology.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#PittonQR17,https://doi.org/10.1016/j.jcp.2017.05.010 +David Tskhakaya,Optimization of PIC codes by improved memory management.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#TskhakayaS07,https://doi.org/10.1016/j.jcp.2007.01.002 +Sebastian Ullmann,POD-Galerkin reduced-order modeling with adaptive finite element snapshots.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#UllmannRL16,https://doi.org/10.1016/j.jcp.2016.08.018 +Andrew R. Winters,A comparison of two entropy stable discontinuous Galerkin spectral element approximations for the shallow water equations with non-constant topography.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#WintersG15,https://doi.org/10.1016/j.jcp.2015.08.034 +Peter Thum,Efficient algebraic multigrid for migration-diffusion-convection-reaction systems arising in electrochemical simulations.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#ThumCWND10,https://doi.org/10.1016/j.jcp.2010.06.011 +Bruno Stupfel,Improved transmission conditions for a one-dimensional domain decomposition method applied to the solution of the Helmholtz equation.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#Stupfel10,https://doi.org/10.1016/j.jcp.2009.10.015 +Dinshaw S. Balsara,A sub-cell based indicator for troubled zones in RKDG schemes and a novel class of hybrid RKDG+HWENO schemes.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#BalsaraAMD07,https://doi.org/10.1016/j.jcp.2007.04.032 +D. Lee,A high order characteristic discontinuous Galerkin scheme for advection on unstructured meshes.,2016,324,J. Comput. Physics,,db/journals/jcphy/jcphy324.html#LeeLPRH16,https://doi.org/10.1016/j.jcp.2016.08.010 +Philippe G. LeFloch,A Godunov-type method for the shallow water equations with discontinuous topography in the resonant regime.,2011,230,J. Comput. Physics,20,db/journals/jcphy/jcphy230.html#LeFlochT11,https://doi.org/10.1016/j.jcp.2011.06.017 +M. Pisarenco,Efficient solution of Maxwell's equations for geometries with repeating patterns by an exchange of discretization directions in the aperiodic Fourier modal method.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#PisarencoMSM12,https://doi.org/10.1016/j.jcp.2012.07.049 +Shyamprasad Karagadde,A coupled VOF-IBM-enthalpy approach for modeling motion and growth of equiaxed dendrites in a solidifying melt.,2012,231,J. Comput. Physics,10,db/journals/jcphy/jcphy231.html#KaragaddeBTD12,https://doi.org/10.1016/j.jcp.2012.02.001 +Juan C. Latorre,Numerical methods for computing effective transport properties of flashing Brownian motors.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#LatorreKP14,https://doi.org/10.1016/j.jcp.2013.09.006 +S. Chabot,A high-order discontinuous Galerkin method for 1D wave propagation in a nonlinear heterogeneous medium.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#ChabotGMH18,https://doi.org/10.1016/j.jcp.2017.11.013 +Weiming Liu,An implicit finite element solution of thermal flows at low Mach number.,2008,227,J. Comput. Physics,5,db/journals/jcphy/jcphy227.html#LiuM08,https://doi.org/10.1016/j.jcp.2007.10.025 +Ken Mattsson,Compatible diagonal-norm staggered and upwind SBP operators.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#MattssonO18,https://doi.org/10.1016/j.jcp.2017.09.044 +Pierre-Henri Maire,A nominally second-order accurate finite volume cell-centered scheme for anisotropic diffusion on two-dimensional unstructured grids.,2012,231,J. Comput. Physics,5,db/journals/jcphy/jcphy231.html#MaireB12,https://doi.org/10.1016/j.jcp.2011.11.029 +Xinfeng Gao,A parallel solution - adaptive method for three-dimensional turbulent non-premixed combusting flows.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#GaoG10,https://doi.org/10.1016/j.jcp.2010.01.001 +A. Tejero-del-Caz,Ion injection in electrostatic particle-in-cell simulations of the ion sheath.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#Tejero-del-CazP17,https://doi.org/10.1016/j.jcp.2017.09.018 +Zhiliang Xu,Hierarchical reconstruction for spectral volume method on unstructured grids.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#XuLS09a,https://doi.org/10.1016/j.jcp.2009.05.001 +Fabrice Falissard,Uneven-order decentered Shapiro filters for boundary filtering.,2015,292,J. Comput. Physics,,db/journals/jcphy/jcphy292.html#Falissard15,https://doi.org/10.1016/j.jcp.2015.03.003 +L. F. Ricketson,Accurate derivative evaluation for any Grad-Shafranov solver.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#RicketsonCRF16,https://doi.org/10.1016/j.jcp.2015.11.015 +Jason P. Sheldon,A hybridizable discontinuous Galerkin method for modeling fluid-structure interaction.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#SheldonMP16,https://doi.org/10.1016/j.jcp.2016.08.037 +Alina Chertock,An asymptotic-preserving method for a relaxation of the Navier-Stokes-Korteweg equations.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#ChertockDN17,https://doi.org/10.1016/j.jcp.2017.01.030 +Goncalo Silva,Low- and high-order accurate boundary conditions: From Stokes to Darcy porous flow modeled with standard and improved Brinkman lattice Boltzmann schemes.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#SilvaTG17,https://doi.org/10.1016/j.jcp.2017.01.023 +Dinshaw S. Balsara,Divergence-free reconstruction of magnetic fields and WENO schemes for magnetohydrodynamics.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#Balsara09,https://doi.org/10.1016/j.jcp.2009.03.038 +Jonathan F. MacArt,Semi-implicit iterative methods for low Mach number turbulent reacting flows: Operator splitting versus approximate factorization.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#MacArtM16,https://doi.org/10.1016/j.jcp.2016.09.016 +Yi Sui,An efficient computational model for macroscale simulations of moving contact lines.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#SuiS13,https://doi.org/10.1016/j.jcp.2013.02.005 +Gwénaël Gabard,A full discrete dispersion analysis of time-domain simulations of acoustic liners with flow.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#GabardB14,https://doi.org/10.1016/j.jcp.2014.05.004 +G. A. Gerolymos,Very-high-order weno schemes.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#GerolymosSV09,https://doi.org/10.1016/j.jcp.2009.07.039 +R. Belaouar,Numerical coupling of Landau damping and Raman amplification.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#BelaouarCG09,https://doi.org/10.1016/j.jcp.2008.09.019 +Hiroaki Nishikawa,Dimensional scaling and numerical similarity in hyperbolic method for diffusion.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#NishikawaN18,https://doi.org/10.1016/j.jcp.2017.11.008 +Qinghai Zhang,Handling solid-fluid interfaces for viscous flows: Explicit jump approximation vs. ghost cell approaches.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#ZhangL10,https://doi.org/10.1016/j.jcp.2010.02.007 +Juan A. Acebrón,A Monte Carlo method for solving the one-dimensional telegraph equations with boundary conditions.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#AcebronR16,https://doi.org/10.1016/j.jcp.2015.10.027 +Kun Luo,A mass conserving level set method for detailed numerical simulation of liquid atomization.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#LuoSYF15,https://doi.org/10.1016/j.jcp.2015.06.009 +Claudio E. Torres,Analysis and parallel implementation of a forced N-body problem.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#TorresPARW13,https://doi.org/10.1016/j.jcp.2013.03.008 +Lexing Ying,The phase flow method.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#YingC06a,https://doi.org/10.1016/j.jcp.2006.05.008 +Vivek Prabhakar,Spectral/hp penalty least-squares finite element formulation for the steady incompressible Navier-Stokes equations.,2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#PrabhakarR06,https://doi.org/10.1016/j.jcp.2005.10.033 +Francesco Ferroni,GPU accelerated dislocation dynamics.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#FerroniTF14,https://doi.org/10.1016/j.jcp.2014.04.052 +Jonas Latz,Multilevel Sequential2 Monte Carlo for Bayesian inverse problems.,2018,368,J. Comput. Physics,,db/journals/jcphy/jcphy368.html#LatzPU18,https://doi.org/10.1016/j.jcp.2018.04.014 +Manuel Torrilhon,Hierarchical Boltzmann simulations and model error estimation.,2017,342,J. Comput. Physics,,db/journals/jcphy/jcphy342.html#TorrilhonS17,https://doi.org/10.1016/j.jcp.2017.04.041 +Julien Vanharen,Theoretical and numerical analysis of nonconforming grid interface for unsteady flows.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#VanharenPM15,https://doi.org/10.1016/j.jcp.2015.01.013 +Jianfeng Lu 0001,Compression of the electron repulsion integral tensor in tensor hypercontraction format with cubic scaling cost.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#LuY15,https://doi.org/10.1016/j.jcp.2015.09.014 +Eleonora Musharbash,Dual Dynamically Orthogonal approximation of incompressible Navier Stokes equations with random boundary conditions.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#MusharbashN18,https://doi.org/10.1016/j.jcp.2017.09.061 +Brian A. Mazzeo,From molecular dynamics to fluorescence anisotropy of fluorophores bound to oriented structures.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#MazzeoB13,https://doi.org/10.1016/j.jcp.2012.08.045 +Santiago Badia,Fluid-structure partitioned procedures based on Robin transmission conditions.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#BadiaNV08,https://doi.org/10.1016/j.jcp.2008.04.006 +Daniel F. Martin,A cell-centered adaptive projection method for the incompressible Navier-Stokes equations in three dimensions.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#MartinCG08,https://doi.org/10.1016/j.jcp.2007.09.032 +Yan Yang 0002,A hybrid scheme for compressible magnetohydrodynamic turbulence.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#YangWSYC16,https://doi.org/10.1016/j.jcp.2015.11.025 +M. W. Crochet,Numerical investigation of a modified family of centered schemes applied to multiphase equations with nonconservative sources.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#CrochetG13,https://doi.org/10.1016/j.jcp.2013.08.010 +C. Birk,Coupled acoustic response of two-dimensional bounded and unbounded domains using doubly-asymptotic open boundaries.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#BirkLS16,https://doi.org/10.1016/j.jcp.2015.12.029 +Zheng Li,A space-time fractional phase-field model with tunable sharpness and decay behavior and its efficient numerical simulation.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#LiWY17,https://doi.org/10.1016/j.jcp.2017.06.036 +Leonardo Di G. Sigalotti,An adaptive SPH method for strong shocks.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#SigalottiLT09,https://doi.org/10.1016/j.jcp.2009.04.041 +Nicolas Crouseilles,An Isogeometric Analysis approach for the study of the gyrokinetic quasi-neutrality equation.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#CrouseillesRS12,https://doi.org/10.1016/j.jcp.2011.09.004 +Jichun Li,An adaptive edge finite element method for electromagnetic cloaking simulation.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#LiHY13,https://doi.org/10.1016/j.jcp.2013.04.026 +Ching-Shan Chou,Optimal energy conserving local discontinuous Galerkin methods for second-order wave equation in heterogeneous media.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#ChouSX14,https://doi.org/10.1016/j.jcp.2014.04.009 +Craig A. Finch,A continuum hard-sphere model of protein adsorption.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#FinchCH13,https://doi.org/10.1016/j.jcp.2012.07.034 +Fabian Spill,Hybrid approaches for multiple-species stochastic reaction-diffusion models.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#SpillGAMB15,https://doi.org/10.1016/j.jcp.2015.07.002 +Mayya Tokman,Efficient integration of large stiff systems of ODEs with exponential propagation iterative (EPI) methods.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#Tokman06,https://doi.org/10.1016/j.jcp.2005.08.032 +Boris Gershgorin,Test models for improving filtering with model errors through stochastic parameter estimation.,2010,229,J. Comput. Physics,1,db/journals/jcphy/jcphy229.html#GershgorinHM10,https://doi.org/10.1016/j.jcp.2009.08.019 +Zhiyong Li,Retrospective cost adaptive Reynolds-averaged Navier-Stokes k-χ9* model for data-driven unsteady turbulent simulations.,2018,357,J. Comput. Physics,,db/journals/jcphy/jcphy357.html#LiHMB18,https://doi.org/10.1016/j.jcp.2017.11.037 +David Munger,A level set approach to simulate magnetohydrodynamic instabilities in aluminum reduction cells.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#MungerV06,https://doi.org/10.1016/j.jcp.2006.01.002 +Patrick Jenny,A solution algorithm for the fluid dynamic equations based on a stochastic model for molecular motion.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#JennyTH10,https://doi.org/10.1016/j.jcp.2009.10.008 +Matthew J. Zahr,An optimization-based approach for high-order accurate discretization of conservation laws with discontinuous solutions.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#ZahrP18,https://doi.org/10.1016/j.jcp.2018.03.029 +H. W. Zheng,An object-oriented and quadrilateral-mesh based solution adaptive algorithm for compressible multi-fluid flows.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#ZhengSC08,https://doi.org/10.1016/j.jcp.2008.03.037 +Shi Jin,A stochastic asymptotic-preserving scheme for a kinetic-fluid model for disperse two-phase flows with uncertainty.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#JinS17,https://doi.org/10.1016/j.jcp.2017.01.059 +Jiming Wu,Interpolation-based second-order monotone finite volume schemes for anisotropic diffusion equations on general grids.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#WuG14,https://doi.org/10.1016/j.jcp.2014.07.011 +J. Cohen,An analytical-based method for studying the nonlinear evolution of localized vortices in planar homogenous shear flows.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#CohenSKP10,https://doi.org/10.1016/j.jcp.2010.06.035 +Peng Ke,An improved known vicinity algorithm based on geometry test for particle localization in arbitrary grid.,2009,228,J. Comput. Physics,24,db/journals/jcphy/jcphy228.html#KeZWY09,https://doi.org/10.1016/j.jcp.2009.09.003 +Fei Fei,A diffusive information preservation method for small Knudsen number flows.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#FeiF13,https://doi.org/10.1016/j.jcp.2013.03.012 +Jaemin Shin,A conservative numerical method for the Cahn-Hilliard equation in complex domains.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#ShinJK11,https://doi.org/10.1016/j.jcp.2011.06.009 +Qiaolin He,A least-squares/finite element method for the numerical solution of the Navier-Stokes-Cahn-Hilliard system modeling the motion of the contact line.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#HeGW11,https://doi.org/10.1016/j.jcp.2011.03.022 +William Fong,Stability of asynchronous variational integrators.,2008,227,J. Comput. Physics,18,db/journals/jcphy/jcphy227.html#FongDL08,https://doi.org/10.1016/j.jcp.2008.05.017 +Allan Peter Engsig-Karup,A stabilised nodal spectral element method for fully nonlinear water waves.,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#Engsig-KarupEB16,https://doi.org/10.1016/j.jcp.2016.04.060 +Guoxi Ni,A DGBGK scheme based on WENO limiters for viscous and inviscid flows.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#NiJX08a,https://doi.org/10.1016/j.jcp.2008.02.009 +Mark P. Simens,A high-resolution code for turbulent boundary layers.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#SimensJHM09,https://doi.org/10.1016/j.jcp.2009.02.031 +Stephen C. Jardin,Review of implicit methods for the magnetohydrodynamic description of magnetically confined plasmas.,2012,231,J. Comput. Physics,3,db/journals/jcphy/jcphy231.html#Jardin12,https://doi.org/10.1016/j.jcp.2010.12.025 +Andrea Villa,Stability of the discretization of the electron avalanche phenomenon.,2015,296,J. Comput. Physics,,db/journals/jcphy/jcphy296.html#VillaBGLM15,https://doi.org/10.1016/j.jcp.2015.05.013 +Weidong Xin,A boundary element formulation of protein electrostatics with explicit ions.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#XinJ07,https://doi.org/10.1016/j.jcp.2006.09.011 +Adrien Bernede,An Unsplit Monte-Carlo solver for the resolution of the linear Boltzmann equation coupled to (stiff) Bateman equations.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#BernedeP18,https://doi.org/10.1016/j.jcp.2017.10.027 +Alessandro Alaia,A hybrid method for hydrodynamic-kinetic flow Part I: A particle-grid method for reducing stochastic noise in kinetic regimes.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#AlaiaP11,https://doi.org/10.1016/j.jcp.2011.03.047 +Jonathan M. Burt,A low diffusion particle method for simulating compressible inviscid flows.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#BurtB08,https://doi.org/10.1016/j.jcp.2008.01.020 +Julien Vanharen,Revisiting the spectral analysis for high-order spectral discontinuous methods.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#VanharenPVBS17,https://doi.org/10.1016/j.jcp.2017.02.043 +Kouki Fukui,Order-N cluster Monte Carlo method for spin systems with long-range interactions.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#FukuiT09,https://doi.org/10.1016/j.jcp.2008.12.022 +John D. Towers,Discretizing delta functions via finite differences and gradient normalization.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#Towers09a,https://doi.org/10.1016/j.jcp.2009.02.012 +Chang Yang,Conservative and non-conservative methods based on Hermite weighted essentially non-oscillatory reconstruction for Vlasov equations.,2014,279,J. Comput. Physics,,db/journals/jcphy/jcphy279.html#YangF14,https://doi.org/10.1016/j.jcp.2014.08.048 +Tim P. Schulze,Efficient kinetic Monte Carlo simulation.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#Schulze08,https://doi.org/10.1016/j.jcp.2007.10.021 +Stephen D. Griffiths,Kelvin wave propagation along straight boundaries in C-grid finite-difference models.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#Griffiths13,https://doi.org/10.1016/j.jcp.2013.08.040 +Z. Guo,Phase field study of the tip operating state of a freely growing dendrite against convection using a novel parallel multigrid approach.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#GuoMXG14,https://doi.org/10.1016/j.jcp.2013.10.004 +Yixuan Wang,Algebraic multiscale solver for flow in heterogeneous porous media.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#WangHT14,https://doi.org/10.1016/j.jcp.2013.11.024 +F. Vidal-Codina,Computing parametrized solutions for plasmonic nanogap structures.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#Vidal-CodinaNP18,https://doi.org/10.1016/j.jcp.2018.04.009 +Olivier Desjardins,An accurate conservative level set/ghost fluid method for simulating turbulent atomization.,2008,227,J. Comput. Physics,18,db/journals/jcphy/jcphy227.html#DesjardinsMP08,https://doi.org/10.1016/j.jcp.2008.05.027 +Laurent Duchemin,The Explicit-Implicit-Null method: Removing the numerical instability of PDEs.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#DucheminE14,https://doi.org/10.1016/j.jcp.2014.01.013 +Hong Luo,A reconstructed discontinuous Galerkin method based on a Hierarchical WENO reconstruction for compressible flows on tetrahedral grids.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#LuoXSNJ13,https://doi.org/10.1016/j.jcp.2012.11.026 +Rémi Abgrall,A comment on the computation of non-conservative products.,2010,229,J. Comput. Physics,8,db/journals/jcphy/jcphy229.html#AbgrallK10,https://doi.org/10.1016/j.jcp.2009.12.015 +Doghonay Arjmand,A time dependent approach for removing the cell boundary error in elliptic homogenization problems.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#ArjmandR16,https://doi.org/10.1016/j.jcp.2016.03.009 +Dongyong Wang,Semi-implicit integration factor methods on sparse grids for high-dimensional systems.,2015,292,J. Comput. Physics,,db/journals/jcphy/jcphy292.html#WangCN15,https://doi.org/10.1016/j.jcp.2015.03.033 +Juntao Huang,Second-order curved boundary treatments of the lattice Boltzmann method for convection-diffusion equations.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#HuangHY16,https://doi.org/10.1016/j.jcp.2016.01.008 +Xiangfan Piao,An embedded formula of the Chebyshev collocation method for stiff problems.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#PiaoBKK17,https://doi.org/10.1016/j.jcp.2017.09.046 +Tony Lelièvre,Computation of free energy differences through nonequilibrium stochastic dynamics: The reaction coordinate case.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#LelievreRS07,https://doi.org/10.1016/j.jcp.2006.08.003 +Geert Buckinx,Multi-scale modelling of flow in periodic solid structures through spatial averaging.,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#BuckinxB15,https://doi.org/10.1016/j.jcp.2015.02.051 +Raffaele Farina,A revised scheme to compute horizontal covariances in an oceanographic 3D-VAR assimilation system.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#FarinaDSMC15,https://doi.org/10.1016/j.jcp.2015.01.003 +Michael Hinze,Optimal control of the free boundary in a two-phase Stefan problem.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#HinzeZ07,https://doi.org/10.1016/j.jcp.2006.09.030 +Soshi Kawai,Assessment of localized artificial diffusivity scheme for large-eddy simulation of compressible turbulent flows.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#KawaiSL10,https://doi.org/10.1016/j.jcp.2009.11.005 +Kewei Liang,A splitting moving mesh method for reaction-diffusion equations of quenching type.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#LiangLOT06,https://doi.org/10.1016/j.jcp.2005.11.019 +A. Petras,An RBF-FD closest point method for solving PDEs on surfaces.,2018,370,J. Comput. Physics,,db/journals/jcphy/jcphy370.html#PetrasLR18,https://doi.org/10.1016/j.jcp.2018.05.022 +Colin J. Cotter,Mixed finite elements for numerical weather prediction.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#CotterS12,https://doi.org/10.1016/j.jcp.2012.05.020 +Alexandra Koulouri,Vector tomography for reconstructing electric fields with non-zero divergence in bounded domains.,2017,329,J. Comput. Physics,,db/journals/jcphy/jcphy329.html#KoulouriBR17,https://doi.org/10.1016/j.jcp.2016.10.037 +Michael S. Dodd,A fast pressure-correction method for incompressible two-fluid flows.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#DoddF14,https://doi.org/10.1016/j.jcp.2014.05.024 +Zhen-Sheng Sun,A sixth order hybrid finite difference scheme based on the minimized dispersion and controllable dissipation technique.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#SunLRZ14,https://doi.org/10.1016/j.jcp.2014.03.052 +Jesse Chan,GPU-accelerated discontinuous Galerkin methods on hybrid meshes.,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#ChanWMRW16,https://doi.org/10.1016/j.jcp.2016.04.003 +Simon L. Cotter,Constrained approximation of effective generators for multiscale stochastic reaction networks and application to conditioned path sampling.,2016,323,J. Comput. Physics,,db/journals/jcphy/jcphy323.html#Cotter16,https://doi.org/10.1016/j.jcp.2016.07.035 +Martina Bukac,Fluid-structure interaction in blood flow capturing non-zero longitudinal structure displacement.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#BukacCGTQ13,https://doi.org/10.1016/j.jcp.2012.08.033 +M. Flaig,Single-mode perturbation growth in an idealized spherical implosion.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#FlaigCWYT18,https://doi.org/10.1016/j.jcp.2018.06.014 +Arvind Baskaran,Energy stable and efficient finite-difference nonlinear multigrid schemes for the modified phase field crystal equation.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#BaskaranHLWWZ13,https://doi.org/10.1016/j.jcp.2013.04.024 +Benjamin E. Peigney,Fokker-Planck kinetic modeling of suprathermal α-particles in a fusion plasma.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#PeigneyLT14,https://doi.org/10.1016/j.jcp.2014.08.033 +Q. W. Ma,Quasi ALE finite element method for nonlinear water waves.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#MaY06,https://doi.org/10.1016/j.jcp.2005.06.014 +Bangti Jin,The Galerkin finite element method for a multi-term time-fractional diffusion equation.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#JinLLZ15,https://doi.org/10.1016/j.jcp.2014.10.051 +Cédric St-Jean,Solar cycle modelling using spatiotemporal decomposition schemes.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#St-JeanC07,https://doi.org/10.1016/j.jcp.2006.08.010 +M. R. Norman,Algorithmic improvements for schemes using the ADER time discretization.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#Norman13,https://doi.org/10.1016/j.jcp.2013.03.003 +Zeli Wang,Immersed boundary method for the simulation of 2D viscous flow based on vorticity-velocity formulations.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#WangFC09,https://doi.org/10.1016/j.jcp.2008.10.038 +A. Luque,Density models for streamer discharges: Beyond cylindrical symmetry and homogeneous media.,2012,231,J. Comput. Physics,3,db/journals/jcphy/jcphy231.html#LuqueE12,https://doi.org/10.1016/j.jcp.2011.04.019 +Kei Ito,A high-precision calculation method for interface normal and curvature on an unstructured grid.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#ItoKOKO14,https://doi.org/10.1016/j.jcp.2014.04.058 +Danielle C. Maddix,Numerical artifacts in the discontinuous Generalized Porous Medium Equation: How to avoid spurious temporal oscillations.,2018,368,J. Comput. Physics,,db/journals/jcphy/jcphy368.html#MaddixSG18a,https://doi.org/10.1016/j.jcp.2018.04.045 +E. Vergnault,An adjoint-based lattice Boltzmann method for noise control problems.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#VergnaultS14,https://doi.org/10.1016/j.jcp.2014.07.027 +Mathew A. Cleveland,Using hybrid implicit Monte Carlo diffusion to simulate gray radiation hydrodynamics.,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#ClevelandG15,https://doi.org/10.1016/j.jcp.2015.02.036 +Shravan Veerapaneni,Integral equation methods for vesicle electrohydrodynamics in three dimensions.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#Veerapaneni16,https://doi.org/10.1016/j.jcp.2016.08.052 +Ken Mattsson,Diagonal-norm upwind SBP operators.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#Mattsson17,https://doi.org/10.1016/j.jcp.2017.01.042 +Robert E. Dickinson,Determination of the multi-scattered solar radiation from a leaf canopy for use in climate models.,2008,227,J. Comput. Physics,7,db/journals/jcphy/jcphy227.html#Dickinson08,https://doi.org/10.1016/j.jcp.2007.12.010 +Stéphane Galera,A two-dimensional unstructured cell-centered multi-material ALE scheme using VOF interface reconstruction.,2010,229,J. Comput. Physics,16,db/journals/jcphy/jcphy229.html#GaleraMB10,https://doi.org/10.1016/j.jcp.2010.04.019 +John C. Quinn,Data assimilation using a GPU accelerated path integral Monte Carlo approach.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#QuinnA11,https://doi.org/10.1016/j.jcp.2011.07.015 +C. M. Linton,One- and two-dimensional lattice sums for the three-dimensional Helmholtz equation.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#LintonT09,https://doi.org/10.1016/j.jcp.2008.11.013 +Boyan Bejanov,A grid-alignment finite element technique for incompressible multicomponent flows.,2008,227,J. Comput. Physics,13,db/journals/jcphy/jcphy227.html#BejanovGM08,https://doi.org/10.1016/j.jcp.2008.03.011 +Lawrence Mitchell,High level implementation of geometric multigrid solvers for finite element problems: Applications in atmospheric modelling.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#MitchellM16,https://doi.org/10.1016/j.jcp.2016.09.037 +Cyrill B. Muratov,Optimal grid-based methods for thin film micromagnetics simulations.,2006,216,J. Comput. Physics,2,db/journals/jcphy/jcphy216.html#MuratovO06,https://doi.org/10.1016/j.jcp.2005.12.018 +åsmund Ervik,A multiscale method for simulating fluid interfaces covered with large molecules such as asphaltenes.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#ErvikLHJMMM16,https://doi.org/10.1016/j.jcp.2016.09.039 +Petri Fast,Moore's law and the Saffman-Taylor instability.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#FastS06,https://doi.org/10.1016/j.jcp.2005.06.022 +Rolf Sidler,A pseudo-spectral method for the simulation of poro-elastic seismic wave propagation in 2D polar coordinates using domain decomposition.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#SidlerCH13,https://doi.org/10.1016/j.jcp.2012.09.044 +Feng Zheng,Directly solving the Hamilton-Jacobi equations by Hermite WENO Schemes.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#ZhengQ16,https://doi.org/10.1016/j.jcp.2015.12.011 +Matthieu Jobelin,A finite element penalty-projection method for incompressible flows.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#JobelinLLAP06,https://doi.org/10.1016/j.jcp.2006.01.019 +G. I. Jennings,Water wave propagation in unbounded domains. Part II: Numerical methods for fractional PDEs.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#JenningsPCKRA14,https://doi.org/10.1016/j.jcp.2014.07.007 +Thomas C. Cecil,Simplex free adaptive tree fast sweeping and evolution methods for solving level set equations in arbitrary dimension.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#CecilOQ06,https://doi.org/10.1016/j.jcp.2005.08.020 +Xuliang Liu,A new class of central compact schemes with spectral-like resolution II: Hybrid weighted nonlinear schemes.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#LiuZZS15,https://doi.org/10.1016/j.jcp.2014.12.027 +Carlos Lozano,On mesh sensitivities and boundary formulas for discrete adjoint-based gradients in inviscid aerodynamic shape optimization.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#Lozano17,https://doi.org/10.1016/j.jcp.2017.06.025 +Stéphane Le Roux 0002,Convergence stability and estimator in orbital free electronic structure calculation on a grid at finite temperature.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#RouxZ07,https://doi.org/10.1016/j.jcp.2007.06.022 +D. Stone,Asynchronous discrete event schemes for PDEs.,2017,342,J. Comput. Physics,,db/journals/jcphy/jcphy342.html#StoneGL17,https://doi.org/10.1016/j.jcp.2017.04.026 +Sebastian Liska,A fast lattice Green's function method for solving viscous incompressible flows on unbounded domains.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#LiskaC16,https://doi.org/10.1016/j.jcp.2016.04.023 +Peter Korn,Formulation of an unstructured grid model for global ocean dynamics.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#Korn17,https://doi.org/10.1016/j.jcp.2017.03.009 +Z. J. Chen,A coupled pressure-based computational method for incompressible/compressible flows.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#ChenP10,https://doi.org/10.1016/j.jcp.2010.08.029 +Stefan Hickel,Letter to the Editor: On the evolution of dissipation rate and resolved kinetic energy in ALDM simulations of the Taylor-Green flow.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#HickelAD10,https://doi.org/10.1016/j.jcp.2009.11.017 +Ryan G. McClarren,A modified implicit Monte Carlo method for time-dependent radiative transfer with adaptive material coupling.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#McClarrenU09,https://doi.org/10.1016/j.jcp.2009.04.028 +Bernard Parent,Sheath governing equations in computational weakly-ionized plasmadynamics.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#ParentSM13,https://doi.org/10.1016/j.jcp.2012.08.011 +Jacob I. Waltz,Manufactured solutions for the three-dimensional Euler equations with relevance to Inertial Confinement Fusion.,2014,267,J. Comput. Physics,,db/journals/jcphy/jcphy267.html#WaltzCMRW14,https://doi.org/10.1016/j.jcp.2014.02.040 +Chunxiong Zheng,A perfectly matched layer approach to the nonlinear Schrödinger wave equations.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#Zheng07,https://doi.org/10.1016/j.jcp.2007.08.004 +Marek Strumik,Multidimensional Hall magnetohydrodynamics with isotropic or anisotropic thermal pressure: Numerical scheme and its validation using solitary waves.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#StrumikS17,https://doi.org/10.1016/j.jcp.2016.10.058 +Abbas Khayyer,Enhancement of performance and stability of MPS mesh-free particle method for multiphase flows characterized by high density ratios.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#KhayyerG13,https://doi.org/10.1016/j.jcp.2013.02.002 +D. F. Gordon,Time dependent Schrödinger equation on arbitrary structured grids: Application to photoionization.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#GordonH12,https://doi.org/10.1016/j.jcp.2012.05.021 +Vito Pasquariello,A cut-cell finite volume - finite element coupling approach for fluid-structure interaction in compressible flow.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#PasquarielloHOH16,https://doi.org/10.1016/j.jcp.2015.12.013 +Yuezheng Gong,A conservative Fourier pseudo-spectral method for the nonlinear Schrödinger equation.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#GongWWC17,https://doi.org/10.1016/j.jcp.2016.10.022 +Songting Luo,Properties-preserving high order numerical methods for a kinetic eikonal equation.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#LuoP17,https://doi.org/10.1016/j.jcp.2016.11.040 +F. Daude,On the computation of the Baer-Nunziato model using ALE formulation with HLL- and HLLC-type solvers towards fluid-structure interactions.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#DaudeG16,https://doi.org/10.1016/j.jcp.2015.09.056 +Eunseok Lee,Electronic structure calculations in a uniform magnetic field using periodic supercells.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#LeeCG07,https://doi.org/10.1016/j.jcp.2007.05.022 +D. Del Sarto,A multigrid AMR algorithm for the study of magnetic reconnection.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#SartoD17,https://doi.org/10.1016/j.jcp.2017.08.046 +Jeroen A. S. Witteveen,Simplex stochastic collocation with ENO-type stencil selection for robust uncertainty quantification.,2013,239,J. Comput. Physics,,db/journals/jcphy/jcphy239.html#WitteveenI13,https://doi.org/10.1016/j.jcp.2012.12.030 +Zhenli Xu,Adaptive absorbing boundary conditions for Schrödinger-type equations: Application to nonlinear and multi-dimensional problems.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#XuHW07,https://doi.org/10.1016/j.jcp.2007.02.004 +Patrick T. Greene,A high-order multi-zone cut-stencil method for numerical simulations of high-speed flows over complex geometries.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#GreeneEZK16,https://doi.org/10.1016/j.jcp.2016.04.032 +J. E. Bunder,Good coupling for the multiscale patch scheme on systems with microscale heterogeneity.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#BunderRK17,https://doi.org/10.1016/j.jcp.2017.02.004 +Jules B. Kajtar,SPH simulations of swimming linked bodies.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#KajtarM08,https://doi.org/10.1016/j.jcp.2008.06.004 +Xinyuan Wu,Efficient energy-preserving integrators for oscillatory Hamiltonian systems.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#WuWS13,https://doi.org/10.1016/j.jcp.2012.10.015 +M. Skarysz,An iterative interface reconstruction method for PLIC in general convex grids as part of a Coupled Level Set Volume of Fluid solver.,2018,368,J. Comput. Physics,,db/journals/jcphy/jcphy368.html#SkaryszGD18,https://doi.org/10.1016/j.jcp.2018.04.044 +Philippe Chatelain,A Fourier-based elliptic solver for vortical flows with periodic and unbounded directions.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#ChatelainK10,https://doi.org/10.1016/j.jcp.2009.12.035 +Ying Li,A new fractional time-stepping method for variable density incompressible flows.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#LiMGS13,https://doi.org/10.1016/j.jcp.2013.02.010 +Sheng Xu,The immersed interface method for simulating prescribed motion of rigid objects in an incompressible viscous flow.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#Xu08,https://doi.org/10.1016/j.jcp.2008.01.053 +Peng Zhang 0030,Extension of modified power method to two-dimensional problems.,2016,320,J. Comput. Physics,,db/journals/jcphy/jcphy320.html#ZhangLL16a,https://doi.org/10.1016/j.jcp.2016.05.024 +Lin Lin 0001,Fast construction of hierarchical matrix representation from matrix-vector multiplication.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#LinLY11,https://doi.org/10.1016/j.jcp.2011.02.033 +Rajesh Ramaswamy,A hybrid particle-mesh method for incompressible active polar viscous gels.,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#RamaswamyBJS15,https://doi.org/10.1016/j.jcp.2015.03.007 +René Beltman,A least-squares method for the inverse reflector problem in arbitrary orthogonal coordinates.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#BeltmanBI18,https://doi.org/10.1016/j.jcp.2018.04.041 +Yinnian He,Numerical comparisons of time-space iterative method and spatial iterative methods for the stationary Navier-Stokes equations.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#HeL12,https://doi.org/10.1016/j.jcp.2012.06.007 +Wenjun Cai,Numerical dispersion analysis of a multi-symplectic scheme for the three dimensional Maxwell's equations.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#CaiWS13,https://doi.org/10.1016/j.jcp.2012.09.043 +Baskar Ganapathysubramanian,Sparse grid collocation schemes for stochastic natural convection problems.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#GanapathysubramanianZ07a,https://doi.org/10.1016/j.jcp.2006.12.014 +Rony Touma,Central finite volume schemes with constrained transport divergence treatment for three-dimensional ideal MHD.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#ToumaA06,https://doi.org/10.1016/j.jcp.2005.07.013 +Yinhua Xia,Local discontinuous Galerkin methods for the generalized Zakharov system.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#XiaXS10,https://doi.org/10.1016/j.jcp.2009.10.029 +R. Sreekanth,An approximate linearized characteristic Riemann solver based on blending of Riemann invariants.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#SreekanthGL14,https://doi.org/10.1016/j.jcp.2014.08.043 +Stéphane Vincent,A Lagrangian VOF tensorial penalty method for the DNS of resolved particle-laden flows.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#VincentMSESC14,https://doi.org/10.1016/j.jcp.2013.08.023 +Francesco Ballarin,Fast simulations of patient-specific haemodynamics of coronary artery bypass grafts based on a POD-Galerkin method and a vascular shape parametrization.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#BallarinFIMQRS16,https://doi.org/10.1016/j.jcp.2016.03.065 +Mei-Jiau Huang,A fast resurrected core-spreading vortex method with no-slip boundary conditions.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#HuangSC09,https://doi.org/10.1016/j.jcp.2008.11.026 +Ryan Galagusz,A Fourier penalty method for solving the time-dependent Maxwell's equations in domains with curved boundaries.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#GalaguszSN16,https://doi.org/10.1016/j.jcp.2015.11.031 +Costanza Aricò,The MAST-edge centred lumped scheme for the flow simulation in variably saturated heterogeneous porous media.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#AricoST12,https://doi.org/10.1016/j.jcp.2011.10.012 +Carl A. Bauer,A fast multigrid-based electromagnetic eigensolver for curved metal boundaries on the Yee mesh.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#BauerWC13,https://doi.org/10.1016/j.jcp.2013.06.002 +Han Wang 0006,An efficient adaptive mesh redistribution method for a non-linear Dirac equation.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#WangT07,https://doi.org/10.1016/j.jcp.2006.07.011 +L. Fath,A fast mollified impulse method for biomolecular atomistic simulations.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#FathHS17,https://doi.org/10.1016/j.jcp.2016.12.024 +Konstantinos N. Blazakis,Whole cell tracking through the optimal control of geometric evolution laws.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#BlazakisMRSV15,https://doi.org/10.1016/j.jcp.2015.05.014 +Rohit Tripathy,Gaussian processes with built-in dimensionality reduction: Applications to high-dimensional uncertainty propagation.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#TripathyBG16,https://doi.org/10.1016/j.jcp.2016.05.039 +Zhi-Hui Li,Gas-kinetic numerical studies of three-dimensional complex flows on spacecraft re-entry.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#LiZ09,https://doi.org/10.1016/j.jcp.2008.10.013 +Paul G. Constantine,Exploiting active subspaces to quantify uncertainty in the numerical simulation of the HyShot II scramjet.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#ConstantineELI15,https://doi.org/10.1016/j.jcp.2015.09.001 +Zhibo Wang,Compact difference schemes for the modified anomalous fractional sub-diffusion equation and the fractional diffusion-wave equation.,2014,277,J. Comput. Physics,,db/journals/jcphy/jcphy277.html#WangV14,https://doi.org/10.1016/j.jcp.2014.08.012 +Silas Alben,An implicit method for coupled flow-body dynamics.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#Alben08,https://doi.org/10.1016/j.jcp.2008.01.021 +Thierry Goudon,Asymptotic-preserving schemes for kinetic-fluid modeling of disperse two-phase flows.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#GoudonJLY13,https://doi.org/10.1016/j.jcp.2013.03.038 +Timothy J. Moroney,Extending fields in a level set method by solving a biharmonic equation.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#MoroneyLMM17,https://doi.org/10.1016/j.jcp.2017.04.049 +A. Alekseenko,Deterministic solution of the spatially homogeneous Boltzmann equation using discontinuous Galerkin discretizations in the velocity space.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#AlekseenkoJ14,https://doi.org/10.1016/j.jcp.2014.03.031 +M. Borrel,The Elastoplast Discontinuous Galerkin (EDG) method for the Navier-Stokes equations.,2012,231,J. Comput. Physics,1,db/journals/jcphy/jcphy231.html#BorrelR12,https://doi.org/10.1016/j.jcp.2011.08.005 +Wen Liu,Time efficient aeroelastic simulations based on radial basis functions.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#LiuHY17,https://doi.org/10.1016/j.jcp.2016.10.063 +Mohamed Sulman,Optimal mass transport for higher dimensional adaptive grid generation.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#SulmanWR11,https://doi.org/10.1016/j.jcp.2011.01.025 +Thomas Y. Hou,Computing nearly singular solutions using pseudo-spectral methods.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#HouL07,https://doi.org/10.1016/j.jcp.2007.04.014 +E. Motheau,A high-order numerical algorithm for DNS of low-Mach-number reactive flows with detailed chemistry and quasi-spectral accuracy.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#MotheauA16,https://doi.org/10.1016/j.jcp.2016.02.059 +Serena Russo,A fast algorithm for the estimation of statistical error in DNS (or experimental) time averages.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#RussoL17,https://doi.org/10.1016/j.jcp.2017.07.005 +Negin Alemazkoor,A near-optimal sampling strategy for sparse recovery of polynomial chaos expansions.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#AlemazkoorM18,https://doi.org/10.1016/j.jcp.2018.05.025 +Jing-Rebecca Li,On the numerical solution of the heat equation I: Fast solvers in free space.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#LiG07,https://doi.org/10.1016/j.jcp.2007.06.021 +Michael J. Brazell,An overset mesh approach for 3D mixed element high-order discretizations.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#BrazellSM16,https://doi.org/10.1016/j.jcp.2016.06.031 +Jostein R. Natvig,Fast computation of multiphase flow in porous media by implicit discontinuous Galerkin schemes with optimal ordering of elements.,2008,227,J. Comput. Physics,24,db/journals/jcphy/jcphy227.html#NatvigL08,https://doi.org/10.1016/j.jcp.2008.08.024 +Sébastien Deck,A rapid and low noise switch from RANS to WMLES on curvilinear grids with compressible flow solvers.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#DeckWR18,https://doi.org/10.1016/j.jcp.2018.02.028 +Kunlun Liu,A fractional step method for solving the compressible Navier-Stokes equations.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#LiuP07,https://doi.org/10.1016/j.jcp.2007.06.026 +Peijun Li,Coupling of finite element and boundary integral methods for electromagnetic scattering in a two-layered medium.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#Li10,https://doi.org/10.1016/j.jcp.2009.09.040 +Miroslav Cada,Compact third-order limiter functions for finite volume methods.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#CadaT09,https://doi.org/10.1016/j.jcp.2009.02.020 +Samuel Paolucci,WAMR: An adaptive wavelet method for the simulation of compressible reacting flow. Part II. The parallel algorithm.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#PaolucciZG14,https://doi.org/10.1016/j.jcp.2014.03.059 +Wenjun Cai,Dissipation-preserving spectral element method for damped seismic wave equations.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#CaiZW17,https://doi.org/10.1016/j.jcp.2017.08.048 +Ignace Bogaert,A faster aggregation for 3D fast evanescent wave solvers using rotations.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#BogaertPO07,https://doi.org/10.1016/j.jcp.2007.08.002 +E. Riber,Evaluation of numerical strategies for large eddy simulation of particulate two-phase recirculating flows.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#RiberMGPS09,https://doi.org/10.1016/j.jcp.2008.10.001 +Moritz Kompenhans,Adaptation strategies for high order discontinuous Galerkin methods based on Tau-estimation.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#KompenhansRFV16,https://doi.org/10.1016/j.jcp.2015.11.032 +Ludovic Métivier,Strategies for solving index one DAE with non-negative constraints: Application to liquid-liquid extraction.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#MetivierM12,https://doi.org/10.1016/j.jcp.2011.12.039 +Michael Harmon,Numerical algorithms based on Galerkin methods for the modeling of reactive interfaces in photoelectrochemical (PEC) solar cells.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#HarmonGR16,https://doi.org/10.1016/j.jcp.2016.08.026 +Søren Taverniers,Conservative tightly-coupled simulations of stochastic multiscale systems.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#TaverniersPT16,https://doi.org/10.1016/j.jcp.2016.02.047 +Jayanarayanan Sitaraman,Parallel domain connectivity algorithm for unsteady flow computations using overlapping and adaptive grids.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#SitaramanFWP10,https://doi.org/10.1016/j.jcp.2010.03.008 +Fang Q. Hu,Absorbing boundary conditions for nonlinear Euler and Navier-Stokes equations based on the perfectly matched layer technique.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#HuLL08,https://doi.org/10.1016/j.jcp.2008.01.010 +Alain Lerat,Steady discrete shocks of 5th and 7th-order RBC schemes and shock profiles of their equivalent differential equations.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#Lerat14,https://doi.org/10.1016/j.jcp.2014.04.045 +Feng Xing,Parallel numerical modeling of hybrid-dimensional compositional non-isothermal Darcy flows in fractured porous media.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#XingML17,https://doi.org/10.1016/j.jcp.2017.05.043 +Z. Jibben,An arbitrary-order Runge-Kutta discontinuous Galerkin approach to reinitialization for banded conservative level sets.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#JibbenH17,https://doi.org/10.1016/j.jcp.2017.08.035 +Victor Bayona,Optimal variable shape parameter for multiquadric based RBF-FD method.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#BayonaMK12,https://doi.org/10.1016/j.jcp.2011.11.036 +Zhi Lin,High-order finite-volume solutions of the steady-state advection-diffusion equation with nonlinear Robin boundary conditions.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#LinZ17,https://doi.org/10.1016/j.jcp.2017.05.023 +Peter G. Maginot,A non-negative moment-preserving spatial discretization scheme for the linearized Boltzmann transport equation in 1-D and 2-D Cartesian geometries.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#MaginotMR12,https://doi.org/10.1016/j.jcp.2012.06.018 +Suguru Miyauchi,A numerical method for interaction problems between fluid and membranes with arbitrary permeability for fluid.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#MiyauchiTK17,https://doi.org/10.1016/j.jcp.2017.05.006 +Raoul D. Schram,Simulation of ring polymer melts with GPU acceleration.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#SchramB18,https://doi.org/10.1016/j.jcp.2018.02.027 +M. Yarmohammadi,Spectral iterative method and convergence analysis for solving nonlinear fractional differential equation.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#YarmohammadiJB18,https://doi.org/10.1016/j.jcp.2018.01.020 +Kai Bao,A finite element method for the numerical solution of the coupled Cahn-Hilliard and Navier-Stokes system for moving contact line problems.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#BaoSSW12,https://doi.org/10.1016/j.jcp.2012.07.027 +Ammar Hakim,A high resolution wave propagation scheme for ideal Two-Fluid plasma equations.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#HakimLS06,https://doi.org/10.1016/j.jcp.2006.03.036 +Xiangyu Hu 0002,An adaptive central-upwind weighted essentially non-oscillatory scheme.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#HuWA10,https://doi.org/10.1016/j.jcp.2010.08.019 +Hadi Hajibeygi,Multiscale finite-volume method for parabolic problems arising from compressible multiphase flow in porous media.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#HajibeygiJ09,https://doi.org/10.1016/j.jcp.2009.04.017 +Yongsam Kim,Simulating the dynamics of inextensible vesicles by the penalty immersed boundary method.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#KimL10,https://doi.org/10.1016/j.jcp.2010.03.020 +Dhiraj V. Patil,Multigrid lattice Boltzmann method for accelerated solution of elliptic equations.,2014,265,J. Comput. Physics,,db/journals/jcphy/jcphy265.html#PatilPB14,https://doi.org/10.1016/j.jcp.2014.01.049 +Yibin Wang,Zipper layer method for linking two dissimilar structured meshes.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#WangQCS13,https://doi.org/10.1016/j.jcp.2013.08.012 +Quan Zhang,On the computation of ensemble averages for spatially non-uniform particle systems.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#ZhangIP06,https://doi.org/10.1016/j.jcp.2005.07.003 +Di Yang,Simulation of viscous flows with undulatory boundaries. Part I: Basic solver.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#YangS11,https://doi.org/10.1016/j.jcp.2011.02.036 +Edward Luke,A fast mesh deformation method using explicit interpolation.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#LukeCB12,https://doi.org/10.1016/j.jcp.2011.09.021 +Shengtai Li,High order central scheme on overlapping cells for magneto-hydrodynamic flows with and without constrained transport method.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#Li08,https://doi.org/10.1016/j.jcp.2008.04.022 +G. Kasperski,A parallel Schwarz preconditioner for the Chebyshev Gauss-Lobatto collocation (d2/dx2 - h2) operator.,2015,296,J. Comput. Physics,,db/journals/jcphy/jcphy296.html#Kasperski15,https://doi.org/10.1016/j.jcp.2015.04.049 +Rongzong Huang,Total enthalpy-based lattice Boltzmann method with adaptive mesh refinement for solid-liquid phase change.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#HuangW16,https://doi.org/10.1016/j.jcp.2016.03.043 +Christian Klingenberg,Numerical comparison of Riemann solvers for astrophysical hydrodynamics.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#KlingenbergSW07,https://doi.org/10.1016/j.jcp.2007.07.034 +Jeremiah U. Brackbill,On energy and momentum conservation in particle-in-cell plasma simulation.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#Brackbill16,https://doi.org/10.1016/j.jcp.2016.04.050 +Chaoyu Quan,Mathematical analysis and calculation of molecular surfaces.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#QuanS16,https://doi.org/10.1016/j.jcp.2016.07.007 +Milan Kucharik,Conservative multi-material remap for staggered multi-material Arbitrary Lagrangian-Eulerian methods.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#KucharikS14,https://doi.org/10.1016/j.jcp.2013.10.050 +Fabrice Schlegel,A fast 3D particle method for the simulation of buoyant flow.,2008,227,J. Comput. Physics,21,db/journals/jcphy/jcphy227.html#SchlegelWG08,https://doi.org/10.1016/j.jcp.2008.03.036 +Kunkun Tang,An adaptive least-squares global sensitivity method and application to a plasma-coupled combustion prediction with parametric correlation.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#TangMWF18,https://doi.org/10.1016/j.jcp.2018.01.042 +Barry Koren,Computational plasma physics.,2012,231,J. Comput. Physics,3,db/journals/jcphy/jcphy231.html#KorenEGGKK12,https://doi.org/10.1016/j.jcp.2011.11.012 +Nail K. Yamaleev,Local-in-time adjoint-based method for design optimization of unsteady flows.,2010,229,J. Comput. Physics,14,db/journals/jcphy/jcphy229.html#YamaleevDN10,https://doi.org/10.1016/j.jcp.2010.03.045 +Roberto Rojas,A phase-field-lattice Boltzmann method for modeling motion and growth of a dendrite for binary alloy solidification in the presence of melt convection.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#RojasTO15,https://doi.org/10.1016/j.jcp.2015.05.045 +Samet Y. Kadioglu,A second order self-consistent IMEX method for radiation hydrodynamics.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#KadiogluKLR10,https://doi.org/10.1016/j.jcp.2010.07.019 +Bernard Bialecki,ADI spectral collocation methods for parabolic problems.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#BialeckiF10,https://doi.org/10.1016/j.jcp.2010.03.033 +Jean-Luc Vay,A domain decomposition method for pseudo-spectral electromagnetic simulations of plasmas.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#VayHG13,https://doi.org/10.1016/j.jcp.2013.03.010 +Ian Sammis,A geometric nonuniform fast Fourier transform.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#SammisS09,https://doi.org/10.1016/j.jcp.2009.06.027 +Aaron Fisher,An efficient vector finite element method for nonlinear electromagnetic modeling.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#FisherWR07,https://doi.org/10.1016/j.jcp.2007.01.031 +Yoshiaki Kuwata,Imbalance-correction grid-refinement method for lattice Boltzmann flow simulations.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#KuwataS16,https://doi.org/10.1016/j.jcp.2016.02.008 +Taeyoung Ha,Magnetotelluric inversion via reverse time migration algorithm of seismic data.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#HaS07,https://doi.org/10.1016/j.jcp.2006.11.024 +Christian Waluga,Mass-corrections for the conservative coupling of flow and transport on collocated meshes.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#WalugaWR16,https://doi.org/10.1016/j.jcp.2015.10.044 +Jeffrey W. Banks,An evaluation of the FCT method for high-speed flows on structured overlapping grids.,2009,228,J. Comput. Physics,15,db/journals/jcphy/jcphy228.html#BanksHS09,https://doi.org/10.1016/j.jcp.2009.04.033 +F. Acker,An improved WENO-Z scheme.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#AckerBC16,https://doi.org/10.1016/j.jcp.2016.01.038 +Enrique Domingo Fernández-Nieto,A new Savage-Hutter type model for submarine avalanches and generated tsunami.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#Fernandez-NietoBBDM08,https://doi.org/10.1016/j.jcp.2008.04.039 +S. Hysing,Mixed element FEM level set method for numerical simulation of immiscible fluids.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#Hysing12,https://doi.org/10.1016/j.jcp.2011.11.035 +Masayuki Tanaka,Multi-resolution MPS method.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#TanakaCB18,https://doi.org/10.1016/j.jcp.2017.12.042 +Knut Erik Teigen,A diffuse-interface method for two-phase flows with soluble surfactants.,2011,230,J. Comput. Physics,2,db/journals/jcphy/jcphy230.html#TeigenSLV11,https://doi.org/10.1016/j.jcp.2010.09.020 +Youngjoon Hong,A stable high-order perturbation of surfaces method for numerical simulation of diffraction problems in triply layered media.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#HongN17,https://doi.org/10.1016/j.jcp.2016.10.057 +Hideki Fujioka,A continuum model of interfacial surfactant transport for particle methods.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#Fujioka13,https://doi.org/10.1016/j.jcp.2012.09.041 +Sergio Toledo-Redondo,Parallel 3D-TLM algorithm for simulation of the Earth-ionosphere cavity.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#Toledo-RedondoSMMFPM13,https://doi.org/10.1016/j.jcp.2012.10.047 +Jean-Luc Guermond,An interior penalty Galerkin method for the MHD equations in heterogeneous domains.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#GuermondLLN07,https://doi.org/10.1016/j.jcp.2006.06.045 +Pierre Degond,An Asymptotic Preserving scheme for the Euler equations in a strong magnetic field.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#DegondDSV09,https://doi.org/10.1016/j.jcp.2008.12.040 +Andres Goza,A strongly-coupled immersed-boundary formulation for thin elastic structures.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#GozaC17,https://doi.org/10.1016/j.jcp.2017.02.027 +Nicolas Chevaugeon,Optimal numerical parameterization of discontinuous Galerkin method applied to wave propagation problems.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#ChevaugeonHGPR07,https://doi.org/10.1016/j.jcp.2006.09.005 +Edouard Demaldent,Fast and accurate point-based method for time-harmonic maxwell problems involving thin layer materials.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#DemaldentLC11,https://doi.org/10.1016/j.jcp.2011.03.060 +Alessandra Nigro,Up to sixth-order accurate A-stable implicit schemes applied to the Discontinuous Galerkin discretized Navier-Stokes equations.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#NigroBBG14,https://doi.org/10.1016/j.jcp.2014.07.028 +Ying Zhou,Absorbing boundary conditions for the Euler and Navier-Stokes equations with the spectral difference method.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#ZhouW10,https://doi.org/10.1016/j.jcp.2010.08.007 +Qiang Zhou 0003,A second-order accurate immersed boundary-lattice Boltzmann method for particle-laden flows.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#ZhouF14,https://doi.org/10.1016/j.jcp.2014.02.038 +José Ignacio Aliaga,A fast band-Krylov eigensolver for macromolecular functional motion simulation on multicore architectures and graphics processors.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#AliagaABCDLQ16,https://doi.org/10.1016/j.jcp.2016.01.007 +Weizhu Bao,Numerical methods for computing ground states and dynamics of nonlinear relativistic Hartree equation for boson stars.,2011,230,J. Comput. Physics,13,db/journals/jcphy/jcphy230.html#BaoD11,https://doi.org/10.1016/j.jcp.2011.03.051 +Georgios Karagiannis,Selection of polynomial chaos bases via Bayesian model uncertainty methods with applications to sparse approximation of PDEs with stochastic inputs.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#KaragiannisL14,https://doi.org/10.1016/j.jcp.2013.11.016 +Quanxiang Wang,Energy-preserving finite volume element method for the improved Boussinesq equation.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#WangZZZ14,https://doi.org/10.1016/j.jcp.2014.03.053 +Thomas C. S. Rendall,Reduced surface point selection options for efficient mesh deformation using radial basis functions.,2010,229,J. Comput. Physics,8,db/journals/jcphy/jcphy229.html#RendallA10,https://doi.org/10.1016/j.jcp.2009.12.006 +S. Pavan,A second order residual based predictor-corrector approach for time dependent pollutant transport.,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#PavanHRA16,https://doi.org/10.1016/j.jcp.2016.04.053 +Martin Geier,Parametrization of the cumulant lattice Boltzmann method for fourth order accurate diffusion part II: Application to flow around a sphere at drag crisis.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#GeierPS17a,https://doi.org/10.1016/j.jcp.2017.07.004 +Olaf Marxen,A method for the direct numerical simulation of hypersonic boundary-layer instability with finite-rate chemistry.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#MarxenMSI13,https://doi.org/10.1016/j.jcp.2013.07.029 +Jung Hee Seo,A sharp-interface immersed boundary method with improved mass conservation and reduced spurious pressure oscillations.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#SeoM11a,https://doi.org/10.1016/j.jcp.2011.06.003 +Peter Lynch,The origins of computer weather prediction and climate modeling.,2008,227,J. Comput. Physics,7,db/journals/jcphy/jcphy227.html#Lynch08,https://doi.org/10.1016/j.jcp.2007.02.034 +Zhiliang Xu,A new Runge-Kutta discontinuous Galerkin method with conservation constraint to improve CFL condition for solving conservation laws.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#XuCL14,https://doi.org/10.1016/j.jcp.2014.08.042 +Nicolas Lantos,Perfectly matched layers for the heat and advection-diffusion equations.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#LantosN10,https://doi.org/10.1016/j.jcp.2010.08.004 +Liang Xu,Accuracies and conservation errors of various ghost fluid methods for multi-medium Riemann problem.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#XuL11,https://doi.org/10.1016/j.jcp.2011.03.021 +Philip Kunz,Inflow/outflow with Dirichlet boundary conditions for pressure in ISPH.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#KunzHHN16,https://doi.org/10.1016/j.jcp.2016.08.046 +Bamdad Hosseini,On regularizations of the Dirac delta distribution.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#HosseiniNS16,https://doi.org/10.1016/j.jcp.2015.10.054 +J. Velechovský,Symmetry- and essentially-bound-preserving flux-corrected remapping of momentum in staggered ALE hydrodynamics.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#VelechovskyKLSV13,https://doi.org/10.1016/j.jcp.2013.08.037 +Igor L. Novak,Diffusion on a curved surface coupled to diffusion in the volume: Application to cell biology.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#NovakGCRSS07,https://doi.org/10.1016/j.jcp.2007.05.025 +K. Ghoos,Accuracy and convergence of coupled finite-volume/Monte Carlo codes for plasma edge simulations of nuclear fusion reactors.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#GhoosDSBB16,https://doi.org/10.1016/j.jcp.2016.06.049 +Hector Gomez,Three-dimensional simulation of unstable gravity-driven infiltration of water into a porous medium.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#GomezCJ13,https://doi.org/10.1016/j.jcp.2012.12.018 +Peter J. Diamessis,Effective numerical viscosity in spectral multidomain penalty method-based simulations of localized turbulence.,2008,227,J. Comput. Physics,17,db/journals/jcphy/jcphy227.html#Diamessis0D08,https://doi.org/10.1016/j.jcp.2008.05.011 +Abbas Khayyer,Enhancement of stability and accuracy of the moving particle semi-implicit method.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#KhayyerG11,https://doi.org/10.1016/j.jcp.2011.01.009 +James A. Rossmanith,A positivity-preserving high-order semi-Lagrangian discontinuous Galerkin scheme for the Vlasov-Poisson equations.,2011,230,J. Comput. Physics,16,db/journals/jcphy/jcphy230.html#RossmanithS11,https://doi.org/10.1016/j.jcp.2011.04.018 +Lawrence Carin,Compressive sensing for multi-static scattering analysis.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#CarinLLG09,https://doi.org/10.1016/j.jcp.2009.01.033 +Eric M. Wolf,A particle-in-cell method for the simulation of plasmas based on an unconditionally stable field solver.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#WolfCCB16,https://doi.org/10.1016/j.jcp.2016.08.006 +Sheng Xu 0005,Computing jump conditions for the immersed interface method using triangular meshes.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#XuP15,https://doi.org/10.1016/j.jcp.2015.08.019 +Shingyu Leung,An Eulerian approach for computing the finite time Lyapunov exponent.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#Leung11,https://doi.org/10.1016/j.jcp.2011.01.046 +Madlen Kimmritz,On the convergence of the modified elastic-viscous-plastic method for solving the sea ice momentum equation.,2015,296,J. Comput. Physics,,db/journals/jcphy/jcphy296.html#KimmritzDL15,https://doi.org/10.1016/j.jcp.2015.04.051 +Liang Pan,Generalized coordinate transformation and gas-kinetic scheme.,2015,287,J. Comput. Physics,,db/journals/jcphy/jcphy287.html#PanX15,https://doi.org/10.1016/j.jcp.2015.02.010 +Piotr K. Smolarkiewicz,Simulation of all-scale atmospheric dynamics on unstructured meshes.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#SmolarkiewiczSX16,https://doi.org/10.1016/j.jcp.2016.06.048 +Andreas Braumann,Numerical study of a stochastic particle algorithm solving a multidimensional population balance model for high shear granulation.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#BraumannKW10,https://doi.org/10.1016/j.jcp.2010.06.021 +Jerrad Hampton,Basis adaptive sample efficient polynomial chaos (BASE-PC).,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#HamptonD18,https://doi.org/10.1016/j.jcp.2018.03.035 +F. E. Mackay,Coupling MD particles to a lattice-Boltzmann fluid through the use of conservative forces.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#MackayD13,https://doi.org/10.1016/j.jcp.2012.11.038 +Juan M. Giménez,An extended validation of the last generation of particle finite element method for free surface flows.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#GimenezG15,https://doi.org/10.1016/j.jcp.2014.12.025 +Hyung-Min Kang,A new approach of a limiting process for multi-dimensional flows.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#KangKL10,https://doi.org/10.1016/j.jcp.2010.06.001 +Yongjin Jeong,Convergence analysis of two-node CMFD method for two-group neutron diffusion eigenvalue problem.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#JeongPLL15,https://doi.org/10.1016/j.jcp.2015.09.004 +Thomas E. Schwartzentruber,A hybrid particle-continuum method applied to shock waves.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#SchwartzentruberB06,https://doi.org/10.1016/j.jcp.2005.10.023 +Jure Mencinger,A PLIC-VOF method suited for adaptive moving grids.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#MencingerZ11,https://doi.org/10.1016/j.jcp.2010.10.010 +Libin Lu,Contact-aware simulations of particulate Stokesian suspensions.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#LuRZ17,https://doi.org/10.1016/j.jcp.2017.06.039 +Arne Bøckmann,A gradient augmented level set method for unstructured grids.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#BockmannV14,https://doi.org/10.1016/j.jcp.2013.10.024 +Jitendra Kumar,A novel consistent and well-balanced algorithm for simulations of multiphase flows on unstructured grids.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#KumarN17,https://doi.org/10.1016/j.jcp.2017.08.047 +Ryu Fattah,A priori grid quality estimation for high-order finite differencing.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#FattahAZ16,https://doi.org/10.1016/j.jcp.2016.03.063 +L. Michael,A multi-physics methodology for the simulation of reactive flow and elastoplastic structural response.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#MichaelN18,https://doi.org/10.1016/j.jcp.2018.03.037 +Sungtae Kim,Wavenumber-extended high-order oscillation control finite volume schemes for multi-dimensional aeroacoustic computations.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#KimLK08,https://doi.org/10.1016/j.jcp.2007.12.013 +Geoffrey M. Vasil,A new method for fast transforms in parity-mixed PDEs: Part II. Application to confined rotating convection.,2008,227,J. Comput. Physics,17,db/journals/jcphy/jcphy227.html#VasilBJ08a,https://doi.org/10.1016/j.jcp.2008.04.040 +Stefan C. Schlanderer,The boundary data immersion method for compressible flows with application to aeroacoustics.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#SchlandererWS17,https://doi.org/10.1016/j.jcp.2016.12.050 +Emilie Marchandise,CAD and mesh repair with Radial Basis Functions.,2012,231,J. Comput. Physics,5,db/journals/jcphy/jcphy231.html#MarchandisePR12,https://doi.org/10.1016/j.jcp.2011.11.033 +Christopher Michalak,Accuracy preserving limiter for the high-order accurate solution of the Euler equations.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#MichalakO09,https://doi.org/10.1016/j.jcp.2009.08.021 +Daniele Cerroni,A penalty-projection algorithm for a monolithic fluid-structure interaction solver.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#CerroniM16,https://doi.org/10.1016/j.jcp.2016.02.041 +David C. Del Rey Fernández,A generalized framework for nodal first derivative summation-by-parts operators.,2014,266,J. Comput. Physics,,db/journals/jcphy/jcphy266.html#FernandezBZ14,https://doi.org/10.1016/j.jcp.2014.01.038 +See-Jo Kim,Direct numerical simulations of droplet emulsions in sliding bi-periodic frames using the level-set method.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#KimH07,https://doi.org/10.1016/j.jcp.2006.12.012 +Jean-Pierre Bérenger,On the Huygens absorbing boundary conditions for electromagnetics.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#Berenger07,https://doi.org/10.1016/j.jcp.2007.04.008 +Konstantinos T. Panourgias,A nonlinear filter for high order discontinuous Galerkin discretizations with discontinuity resolution within the cell.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#PanourgiasE16,https://doi.org/10.1016/j.jcp.2016.08.049 +Xiaodong Ren,A multi-dimensional high-order DG-ALE method based on gas-kinetic theory with application to oscillating bodies.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#RenXS16,https://doi.org/10.1016/j.jcp.2016.04.028 +Chunlei Liang,An efficient correction procedure via reconstruction for simulation of viscous flow on moving and deforming domains.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#LiangMZ14,https://doi.org/10.1016/j.jcp.2013.08.046 +Ying Zhao 0004,Variational boundary conditions based on the Nitsche method for fitted and unfitted isogeometric discretizations of the mechanically coupled Cahn-Hilliard equation.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#ZhaoSX17,https://doi.org/10.1016/j.jcp.2017.03.040 +Ali Zein,Modeling phase transition for compressible two-phase flows applied to metastable liquids.,2010,229,J. Comput. Physics,8,db/journals/jcphy/jcphy229.html#ZeinHW10,https://doi.org/10.1016/j.jcp.2009.12.026 +Michael Royston,Parallel redistancing using the Hopf-Lax formula.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#RoystonPLCYTO18,https://doi.org/10.1016/j.jcp.2018.01.035 +So-Hsiang Chou,Efficient Arnoldi-type algorithms for rational eigenvalue problems arising in fluid-solid systems.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#ChouHHL11,https://doi.org/10.1016/j.jcp.2010.12.022 +M. Wasserman,A robust implicit multigrid method for RANS equations with two-equation turbulence models.,2010,229,J. Comput. Physics,16,db/journals/jcphy/jcphy229.html#WassermanMYG10,https://doi.org/10.1016/j.jcp.2010.04.023 +Stephen R. Lau,Multidomain spectral method for the helically reduced wave equation.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#LauP07,https://doi.org/10.1016/j.jcp.2007.08.032 +Chungang Chen,Shallow water model on cubed-sphere by multi-moment finite volume method.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#ChenX08,https://doi.org/10.1016/j.jcp.2008.01.033 +Hong Wang,Fast alternating-direction finite difference methods for three-dimensional space-fractional diffusion equations.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#WangD14,https://doi.org/10.1016/j.jcp.2013.10.040 +Shuo Zhang,A nonconforming finite element method for the Cahn-Hilliard equation.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#ZhangW10,https://doi.org/10.1016/j.jcp.2010.06.020 +Bengt Fornberg,Fast calculation of Laurent expansions for matrix inverses.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#Fornberg16,https://doi.org/10.1016/j.jcp.2016.09.028 +Lukas Exl,The extrapolated explicit midpoint scheme for variable order and step size controlled integration of the Landau-Lifschitz-Gilbert equation.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#ExlMSS17,https://doi.org/10.1016/j.jcp.2017.06.005 +L. M. Yang,A simple distribution function-based gas-kinetic scheme for simulation of viscous incompressible and compressible flows.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#YangSW14,https://doi.org/10.1016/j.jcp.2014.06.033 +J. L. Desmarais,Open boundary conditions for the Diffuse Interface Model in 1-D.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#DesmaraisK14,https://doi.org/10.1016/j.jcp.2014.01.032 +Asaf Zarmi,A general approach for high order absorbing boundary conditions for the Helmholtz equation.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#ZarmiT13,https://doi.org/10.1016/j.jcp.2013.01.032 +Hong Luo,A Hermite WENO reconstruction-based discontinuous Galerkin method for the Euler equations on tetrahedral grids.,2012,231,J. Comput. Physics,16,db/journals/jcphy/jcphy231.html#LuoXLNC12,https://doi.org/10.1016/j.jcp.2012.05.011 +Zixi Hu,On an adaptive preconditioned Crank-Nicolson MCMC algorithm for infinite dimensional Bayesian inference.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#HuYL17,https://doi.org/10.1016/j.jcp.2016.11.024 +Alessandra Adrover,Stretching-based diagnostics and reduction of chemical kinetic models with diffusion.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#AdroverCGV07,https://doi.org/10.1016/j.jcp.2007.01.030 +Jianguo Jiang,A transition rate transformation method for solving advection-dispersion equation.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#JiangW11,https://doi.org/10.1016/j.jcp.2011.03.034 +Lawrence C. Cheung,A nonlinear PSE method for two-fluid shear flows with complex interfacial topology.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#CheungZ11,https://doi.org/10.1016/j.jcp.2011.05.007 +Changpin Li,Numerical approaches to fractional calculus and fractional ordinary differential equation.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#LiCY11,https://doi.org/10.1016/j.jcp.2011.01.030 +Scott P. MacLachlan,Fast and robust solvers for pressure-correction in bubbly flow problems.,2008,227,J. Comput. Physics,23,db/journals/jcphy/jcphy227.html#MacLachlanTV08,https://doi.org/10.1016/j.jcp.2008.07.022 +Y. Noumir,A fast-marching like algorithm for geometrical shock dynamics.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#NoumirGLMS15,https://doi.org/10.1016/j.jcp.2014.12.019 +Lili Ju,Covolume-upwind finite volume approximations for linear elliptic partial differential equations.,2012,231,J. Comput. Physics,18,db/journals/jcphy/jcphy231.html#JuTXZ12,https://doi.org/10.1016/j.jcp.2012.05.004 +Jeffrey Willert,Leveraging Anderson Acceleration for improved convergence of iterative solutions to transport systems.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#WillertTK14,https://doi.org/10.1016/j.jcp.2014.05.015 +Mathieu Lepilliez,On two-phase flow solvers in irregular domains with contact line.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#LepilliezPGT16,https://doi.org/10.1016/j.jcp.2016.06.013 +Dali Zhang,Reconstruction of spectral function from effective permittivity of a composite material using rational function approximations.,2009,228,J. Comput. Physics,15,db/journals/jcphy/jcphy228.html#ZhangC09,https://doi.org/10.1016/j.jcp.2009.04.014 +Weihua Geng,A two-component Matched Interface and Boundary (MIB) regularization for charge singularity in implicit solvation.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#GengZ17,https://doi.org/10.1016/j.jcp.2017.09.026 +Giuliano De Stefano,Wavelet-based adaptive large-eddy simulation with explicit filtering.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#StefanoV13,https://doi.org/10.1016/j.jcp.2012.09.030 +Alexandru Cibotarica,Solution of nonlinear time-dependent PDEs through componentwise approximation of matrix functions.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#CibotaricaLP16,https://doi.org/10.1016/j.jcp.2016.06.024 +Peter Gerlinger,Lagrangian transported MDF methods for compressible high speed flows.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#Gerlinger17,https://doi.org/10.1016/j.jcp.2017.02.049 +Hong Luo,A reconstructed discontinuous Galerkin method for the compressible Navier-Stokes equations on arbitrary grids.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#LuoLNMD10,https://doi.org/10.1016/j.jcp.2010.05.033 +Chien-Chang Yen,Self-gravitational force calculation of infinitesimally thin gaseous disks.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#YenTYJ12,https://doi.org/10.1016/j.jcp.2012.08.003 +Tao Lin,A locking-free immersed finite element method for planar elasticity interface problems.,2013,247,J. Comput. Physics,,db/journals/jcphy/jcphy247.html#LinSZ13,https://doi.org/10.1016/j.jcp.2013.03.053 +Dario Contrino,Lattice-Boltzmann simulations of the thermally driven 2D square cavity at high Rayleigh numbers.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#ContrinoLAL14,https://doi.org/10.1016/j.jcp.2014.06.047 +Pierre Degond,An entropic quantum drift-diffusion model for electron transport in resonant tunneling diodes.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#DegondGM07,https://doi.org/10.1016/j.jcp.2006.06.027 +Tao Zhou,Weighted discrete least-squares polynomial approximation using randomized quadratures.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#ZhouNX15,https://doi.org/10.1016/j.jcp.2015.06.042 +Christopher M. Bard,A simple GPU-accelerated two-dimensional MUSCL-Hancock solver for ideal magnetohydrodynamics.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#BardD14,https://doi.org/10.1016/j.jcp.2013.12.006 +Daniel P. Garrick,A finite-volume HLLC-based scheme for compressible interfacial flows with surface tension.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#GarrickOR17,https://doi.org/10.1016/j.jcp.2017.03.007 +Jun Zhu,Hermite WENO schemes for Hamilton-Jacobi equations on unstructured meshes.,2013,254,J. Comput. Physics,,db/journals/jcphy/jcphy254.html#ZhuQ13,https://doi.org/10.1016/j.jcp.2013.07.030 +Olivier Gallinato,Superconvergent second order Cartesian method for solving free boundary problem for invadopodia formation.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#GallinatoP17,https://doi.org/10.1016/j.jcp.2017.03.010 +Zhiping Mao,Fractional Burgers equation with nonlinear non-locality: Spectral vanishing viscosity and local discontinuous Galerkin methods.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#MaoK17,https://doi.org/10.1016/j.jcp.2017.01.048 +Michele Benzi,A Relaxed Dimensional Factorization preconditioner for the incompressible Navier-Stokes equations.,2011,230,J. Comput. Physics,16,db/journals/jcphy/jcphy230.html#BenziNNW11,https://doi.org/10.1016/j.jcp.2011.04.001 +Simon Abraham,Spectral representation of stochastic field data using sparse polynomial chaos expansions.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#AbrahamTMLCG18,https://doi.org/10.1016/j.jcp.2018.04.025 +Yih-Ferng Peng,Nested Cartesian grid method in incompressible viscous fluid flow.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#PengMSH10,https://doi.org/10.1016/j.jcp.2010.05.041 +Cristian Constantin Lalescu,Influence of numerical schemes on statistical properties of computed charged particle trajectories in turbulent electromagnetic fields.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#LalescuTC13,https://doi.org/10.1016/j.jcp.2011.10.011 +Chris H. Rycroft,Simulations of a stretching bar using a plasticity model from the shear transformation zone theory.,2012,231,J. Comput. Physics,5,db/journals/jcphy/jcphy231.html#RycroftG12,https://doi.org/10.1016/j.jcp.2011.10.009 +A. Rona,Optimised prefactored compact schemes for linear wave propagation phenomena.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#RonaSHBP17,https://doi.org/10.1016/j.jcp.2016.10.014 +Simone Palamara,An effective algorithm for the generation of patient-specific Purkinje networks in computational electrocardiology.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#PalamaraVFN15,https://doi.org/10.1016/j.jcp.2014.11.043 +Kuo-Ming Lee,An inverse scattering problem from an impedance obstacle.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#Lee07,https://doi.org/10.1016/j.jcp.2007.07.030 +Li-Chieh Chen,A DFFD simulation method combined with the spectral element method for solid-fluid-interaction problems.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#ChenH17,https://doi.org/10.1016/j.jcp.2016.10.050 +Julia Ling,Machine learning strategies for systems with invariance properties.,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#LingJT16,https://doi.org/10.1016/j.jcp.2016.05.003 +Norikazu Sato,A consistent direct discretization scheme on Cartesian grids for convective and conjugate heat transfer.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#SatoTKIH16,https://doi.org/10.1016/j.jcp.2016.05.034 +Nathaniel R. Morgan,A Lagrangian staggered grid Godunov-like approach for hydrodynamics.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#MorganLBK14,https://doi.org/10.1016/j.jcp.2013.12.013 +Stefan Schoch,An Eulerian algorithm for coupled simulations of elastoplastic-solids and condensed-phase explosives.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#SchochNN13,https://doi.org/10.1016/j.jcp.2013.06.020 +Xiang Zheng,A parallel domain decomposition-based implicit method for the Cahn-Hilliard-Cook phase-field equation in 3D.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#ZhengYCK15,https://doi.org/10.1016/j.jcp.2015.01.016 +Olivier Chanrion,A PIC-MCC code for simulation of streamer propagation in air.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#ChanrionN08,https://doi.org/10.1016/j.jcp.2008.04.016 +J.-B. Lagaert,Hybrid spectral-particle method for the turbulent transport of a passive scalar.,2014,260,J. Comput. Physics,,db/journals/jcphy/jcphy260.html#LagaertBC14,https://doi.org/10.1016/j.jcp.2013.12.026 +Matthew J. Reynolds,Optimization via separated representations and the canonical tensor decomposition.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#ReynoldsBD17,https://doi.org/10.1016/j.jcp.2017.07.012 +Zhiqiang Sheng,A new nonlinear finite volume scheme preserving positivity for diffusion equations.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#ShengY16,https://doi.org/10.1016/j.jcp.2016.03.053 +Guangwei Yuan,Monotone finite volume schemes for diffusion equations on polygonal meshes.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#YuanS08,https://doi.org/10.1016/j.jcp.2008.03.007 +Gianluca Rossiello,Third-order-accurate fluctuation splitting schemes for unsteady hyperbolic problems.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#RossielloPPN07,https://doi.org/10.1016/j.jcp.2006.07.027 +Mohamed A. Hajji,An efficient algorithm for solving higher-order fractional Sturm-Liouville eigenvalue problems.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#HajjiAA14,https://doi.org/10.1016/j.jcp.2014.04.048 +Rob Harris,Efficient quadrature-free high-order spectral volume method on unstructured grids: Theory and 2D implementation.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#HarrisWL08,https://doi.org/10.1016/j.jcp.2007.09.012 +Yoshiaki Kuwata,Anomaly of the lattice Boltzmann methods in three-dimensional cylindrical flows.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#KuwataS15,https://doi.org/10.1016/j.jcp.2014.10.002 +Mohamed El Bouajaji,Approximate local magnetic-to-electric surface operators for time-harmonic Maxwell's equations.,2014,279,J. Comput. Physics,,db/journals/jcphy/jcphy279.html#BouajajiAG14,https://doi.org/10.1016/j.jcp.2014.09.011 +Clément Mettot,Computation of eigenvalue sensitivity to base flow modifications in a discrete framework: Application to open-loop control.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#MettotRS14,https://doi.org/10.1016/j.jcp.2014.03.022 +Richard P. Smedley-Stevenson,Asymptotic diffusion limit of cell temperature discretisation schemes for thermal radiation transport.,2015,286,J. Comput. Physics,,db/journals/jcphy/jcphy286.html#Smedley-Stevenson15,https://doi.org/10.1016/j.jcp.2013.10.038 +P. T. Barton,Eulerian adaptive finite-difference method for high-velocity impact and penetration problems.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#BartonDMP13,https://doi.org/10.1016/j.jcp.2013.01.013 +Haibiao Zheng,Adaptive variational multiscale methods for incompressible flow based on two local Gauss integrations.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#ZhengHS10,https://doi.org/10.1016/j.jcp.2010.05.038 +Xian Luo,Modeling electrokinetic flows by the smoothed profile method.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#LuoBK10,https://doi.org/10.1016/j.jcp.2010.01.030 +A. W. Vreman,A third-order multistep time discretization for a Chebyshev tau spectral method.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#VremanK16,https://doi.org/10.1016/j.jcp.2015.10.022 +M. Fares,The reduced basis method for the electric field integral equation.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#FaresHMS11,https://doi.org/10.1016/j.jcp.2011.03.023 +Raphael Egan,Geometric discretization of the multidimensional Dirac delta distribution - Application to the Poisson equation with singular source terms.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#EganG17,https://doi.org/10.1016/j.jcp.2017.06.003 +Ping Fan,High order weighted essentially nonoscillatory WENO-λ1* schemes for hyperbolic conservation laws.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#Fan14,https://doi.org/10.1016/j.jcp.2014.03.033 +Chiu-Yen Kao,Legendre-transform-based fast sweeping methods for static Hamilton-Jacobi equations on triangulated meshes.,2008,227,J. Comput. Physics,24,db/journals/jcphy/jcphy227.html#KaoOQ08,https://doi.org/10.1016/j.jcp.2008.08.016 +Alex Kanevsky,Idempotent filtering in spectral and spectral element methods.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#KanevskyCH06,https://doi.org/10.1016/j.jcp.2006.05.014 +Jan Ackmann,Stochastic goal-oriented error estimation with memory.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#AckmannMK17,https://doi.org/10.1016/j.jcp.2017.07.009 +Yan-Fei Jing,Lanczos-type variants of the COCR method for complex nonsymmetric linear systems.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#JingHZLCRDSC09,https://doi.org/10.1016/j.jcp.2009.05.022 +José A. Carrillo,Simulation of fluid and particles flows: Asymptotic preserving schemes for bubbling and flowing regimes.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#CarrilloGL08,https://doi.org/10.1016/j.jcp.2008.05.002 +Jean-Philippe Argaud,Sensor placement in nuclear reactors based on the generalized empirical interpolation method.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#ArgaudBCGMM18,https://doi.org/10.1016/j.jcp.2018.02.050 +N. K. Mapakshi,A scalable variational inequality approach for flow through porous media models with pressure-dependent viscosity.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#MapakshiCN18,https://doi.org/10.1016/j.jcp.2018.01.022 +Lukas Exl,Non-uniform FFT for the finite element computation of the micromagnetic scalar potential.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#ExlS14,https://doi.org/10.1016/j.jcp.2014.04.013 +Davide Vanzo,Pollutant transport by shallow water equations on unstructured meshes: Hyperbolization of the model and numerical solution via a novel flux splitting scheme.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#VanzoST16,https://doi.org/10.1016/j.jcp.2016.05.023 +Carlos Pantano,An oscillation free shock-capturing method for compressible van der Waals supercritical fluid flows.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#PantanoSS17,https://doi.org/10.1016/j.jcp.2017.01.057 +Siddhartha Mishra,Multi-level Monte Carlo finite volume methods for nonlinear systems of conservation laws in multi-dimensions.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#MishraSS12,https://doi.org/10.1016/j.jcp.2012.01.011 +Yana Di,Precursor simulations in spreading using a multi-mesh adaptive finite element method.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#DiW09,https://doi.org/10.1016/j.jcp.2008.10.028 +Chengkun Huang,QUICKPIC: A highly efficient particle-in-cell code for modeling wakefield acceleration in plasmas.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#HuangDRZLMCAK06,https://doi.org/10.1016/j.jcp.2006.01.039 +Yohsuke Imai,Stable coupling between vector and scalar variables for the IDO scheme on collocated grids.,2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#ImaiA06a,https://doi.org/10.1016/j.jcp.2005.10.015 +Jean-Pierre Bérenger,The Huygens subgridding for the numerical solution of the Maxwell equations.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#Berenger11,https://doi.org/10.1016/j.jcp.2011.03.046 +Manuel Kindelan,Application of the RBF meshless method to the solution of the radiative transport equation.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#KindelanBGM10,https://doi.org/10.1016/j.jcp.2009.11.014 +John Harlim,An algebraic method for constructing stable and consistent autoregressive filters.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#HarlimHR15,https://doi.org/10.1016/j.jcp.2014.12.004 +Xiangfan Piao,An iteration free backward semi-Lagrangian scheme for solving incompressible Navier-Stokes equations.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#PiaoBBK15,https://doi.org/10.1016/j.jcp.2014.11.040 +Luca Marchetti,HRSSA - Efficient hybrid stochastic simulation for spatially homogeneous biochemical reaction networks.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#MarchettiPT16,https://doi.org/10.1016/j.jcp.2016.04.056 +Luca Formaggia,On the physical consistency between three-dimensional and one-dimensional models in haemodynamics.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#FormaggiaQV13,https://doi.org/10.1016/j.jcp.2012.08.001 +M. Sani,A set of particle locating algorithms not requiring face belonging to cell connectivity data.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#SaniS09,https://doi.org/10.1016/j.jcp.2009.06.031 +David L. George,Augmented Riemann solvers for the shallow water equations over variable topography with steady states and inundation.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#George08,https://doi.org/10.1016/j.jcp.2007.10.027 +Woojin Kim,A weak-coupling immersed boundary method for fluid-structure interaction with low density ratio of solid to fluid.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#KimLC18,https://doi.org/10.1016/j.jcp.2017.12.045 +Weixiong Zheng,Moment closures based on minimizing the residual of the PN angular expansion in radiation transport.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#ZhengM16,https://doi.org/10.1016/j.jcp.2016.03.030 +G. P. Ghiroldi,A direct method for the Boltzmann equation based on a pseudo-spectral velocity space discretization.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#GhiroldiG14,https://doi.org/10.1016/j.jcp.2013.10.055 +Tadej Dobravec,A cellular automaton - finite volume method for the simulation of dendritic and eutectic growth in binary alloys using an adaptive mesh refinement.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#DobravecMS17,https://doi.org/10.1016/j.jcp.2017.08.011 +Marco Ellero,Incompressible smoothed particle hydrodynamics.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#ElleroSE07,https://doi.org/10.1016/j.jcp.2007.06.019 +James Bremer,On the numerical evaluation of the singular integrals of scattering theory.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#BremerG13,https://doi.org/10.1016/j.jcp.2013.05.048 +Seungwon Shin,Computation of the curvature field in numerical simulation of multiphase flow.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#Shin07,https://doi.org/10.1016/j.jcp.2006.08.009 +Konstantin Lipnikov,Interpolation-free monotone finite volume method for diffusion equations on polygonal meshes.,2009,228,J. Comput. Physics,3,db/journals/jcphy/jcphy228.html#LipnikovSV09,https://doi.org/10.1016/j.jcp.2008.09.031 +T. Weyens,PB3D: A new code for edge 3-D ideal linear peeling-ballooning stability.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#WeyensSHLG17,https://doi.org/10.1016/j.jcp.2016.10.054 +Jeffrey W. Banks,On Galerkin difference methods.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#BanksH16,https://doi.org/10.1016/j.jcp.2016.02.042 +Patrick E. Farrell,The addition of fields on different meshes.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#Farrell11,https://doi.org/10.1016/j.jcp.2011.01.028 +Raul Borsche,High order numerical methods for networks of hyperbolic conservation laws coupled with ODEs and lumped parameter models.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#BorscheK16,https://doi.org/10.1016/j.jcp.2016.10.003 +Kevin Carlberg,"Corrigendum to ""The GNAT method for nonlinear model reduction: Effective implementation and application to computational fluid dynamics and turbulent flows"" [J. Comput. Physics 242 (2013) 623-647].",2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#CarlbergFCA13a,https://doi.org/10.1016/j.jcp.2013.05.022 +Ian G. Grooms,Linearly implicit methods for nonlinear PDEs with linear dispersion and dissipation.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#GroomsJ11,https://doi.org/10.1016/j.jcp.2011.02.007 +Jisheng Kou,Thermodynamically consistent simulation of nonisothermal diffuse-interface two-phase flow with Peng-Robinson equation of state.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#KouS18,https://doi.org/10.1016/j.jcp.2018.05.047 +Yohei Sato,A depletable micro-layer model for nucleate pool boiling.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#SatoN15,https://doi.org/10.1016/j.jcp.2015.07.046 +Masoud Nickaeen,Newton multigrid least-squares FEM for the V-V-P formulation of the Navier-Stokes equations.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#NickaeenOT14,https://doi.org/10.1016/j.jcp.2013.09.011 +Michael Oevermann,A Cartesian grid finite volume method for elliptic equations with variable coefficients and embedded interfaces.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#OevermannK06,https://doi.org/10.1016/j.jcp.2006.04.010 +S. M. Zandi,Exponential basis functions in solution of incompressible fluid problems with moving free surfaces.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#ZandiBS12,https://doi.org/10.1016/j.jcp.2011.09.016 +Jan Nordström,"Corrigendum to ""On the relation between conservation and dual consistency for summation-by-parts schemes"" [J. Comput. Phys. 344 (2017) 437-439].",2018,360,J. Comput. Physics,,db/journals/jcphy/jcphy360.html#NordstromG18,https://doi.org/10.1016/j.jcp.2018.02.046 +K. S. Schmid,Higher order FE-FV method on unstructured grids for transport and two-phase flow with variable viscosity in heterogeneous porous media.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#SchmidGS13,https://doi.org/10.1016/j.jcp.2012.12.017 +Max Duarte,A new numerical strategy with space-time adaptivity and error control for multi-scale streamer discharge simulations.,2012,231,J. Comput. Physics,3,db/journals/jcphy/jcphy231.html#DuarteBMBDD12,https://doi.org/10.1016/j.jcp.2011.07.002 +Christopher Eldred,Dispersion analysis of compatible Galerkin schemes for the 1D shallow water model.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#EldredR18,https://doi.org/10.1016/j.jcp.2018.06.007 +Nicholas Frontiere,CRKSPH - A Conservative Reproducing Kernel Smoothed Particle Hydrodynamics Scheme.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#FrontiereRO17,https://doi.org/10.1016/j.jcp.2016.12.004 +Mike Christie,Uncertainty quantification for porous media flows.,2006,217,J. Comput. Physics,1,db/journals/jcphy/jcphy217.html#ChristieDE06,https://doi.org/10.1016/j.jcp.2006.01.026 +Weinan E,Nested stochastic simulation algorithms for chemical kinetic systems with multiple time scales.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#ELV07,https://doi.org/10.1016/j.jcp.2006.06.019 +Christian Kühnlein,Modelling atmospheric flows with adaptive moving meshes.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#KuhnleinSD12,https://doi.org/10.1016/j.jcp.2011.12.012 +Keyi Wu,A surrogate accelerated multicanonical Monte Carlo method for uncertainty quantification.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#WuL16,https://doi.org/10.1016/j.jcp.2016.06.020 +Jian Xu,Numerical methods for nonlinear Dirac equation.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#XuST13,https://doi.org/10.1016/j.jcp.2013.03.031 +Dinshaw S. Balsara,Von Neumann stability analysis of globally divergence-free RKDG schemes for the induction equation using multidimensional Riemann solvers.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#BalsaraK17,https://doi.org/10.1016/j.jcp.2017.01.056 +Matthew R. Smith,Development of an improved spatial reconstruction technique for the HLL method and its applications.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#SmithLHCW11,https://doi.org/10.1016/j.jcp.2010.09.023 +Jie Zhang,Direct simulation of multi-phase MHD flows on an unstructured Cartesian adaptive system.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#ZhangN14a,https://doi.org/10.1016/j.jcp.2014.03.030 +A. D. Kercher,Removal of pseudo-convergence in coplanar and near-coplanar Riemann problems of ideal magnetohydrodynamics solved using finite volume schemes.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#KercherW15,https://doi.org/10.1016/j.jcp.2014.11.027 +Stéphanie Péron,Automatic off-body overset adaptive Cartesian mesh method based on an octree approach.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#PeronB13,https://doi.org/10.1016/j.jcp.2012.07.029 +S. Adami,A transport-velocity formulation for smoothed particle hydrodynamics.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#AdamiHA13,https://doi.org/10.1016/j.jcp.2013.01.043 +Yingsong Zheng,Comparing macroscopic continuum models for rarefied gas dynamics: A new test method.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#ZhengRS06,https://doi.org/10.1016/j.jcp.2006.03.005 +Jun Lai,Robust integral formulations for electromagnetic scattering from three-dimensional cavities.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#LaiGO17,https://doi.org/10.1016/j.jcp.2017.05.008 +Wenjun Sun,An asymptotic preserving unified gas kinetic scheme for gray radiative transfer equations.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#SunJX15,https://doi.org/10.1016/j.jcp.2015.01.008 +D. P. Jones,Droplet size and velocity distributions for spray modelling.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#JonesW12,https://doi.org/10.1016/j.jcp.2011.09.030 +Katia Gomberoff,A method for obtaining three-dimensional computational equilibrium of non-neutral plasmas using WARP.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#GomberoffWFGV07,https://doi.org/10.1016/j.jcp.2007.02.029 +Adam J. Sierakowski,Resolved-particle simulation by the Physalis method: Enhancements and new capabilities.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#SierakowskiP16,https://doi.org/10.1016/j.jcp.2015.12.057 +Sebastian Liska,A fast immersed boundary method for external incompressible viscous flows using lattice Green's functions.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#LiskaC17,https://doi.org/10.1016/j.jcp.2016.11.034 +Delfim Soares Jr.,Dynamic analysis of fluid-soil-structure interaction problems by the boundary element method.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#SoaresM06,https://doi.org/10.1016/j.jcp.2006.04.006 +Mir Sajjad Hashemi,Numerical approximation of higher-order time-fractional telegraph equation by using a combination of a geometric approach and method of line.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#HashemiB16,https://doi.org/10.1016/j.jcp.2016.04.009 +Yi Sui,A hybrid method to study flow-induced deformation of three-dimensional capsules.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#SuiCRL08,https://doi.org/10.1016/j.jcp.2008.03.017 +Ulrich Römer,A defect corrected finite element approach for the accurate evaluation of magnetic fields on unstructured grids.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#RomerSG17,https://doi.org/10.1016/j.jcp.2017.01.041 +Jeffrey K. Wiens,An efficient parallel immersed boundary algorithm using a pseudo-compressible fluid solver.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#WiensS15,https://doi.org/10.1016/j.jcp.2014.10.058 +Daniel Conrad,Accuracy of non-Newtonian Lattice Boltzmann simulations.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#ConradSB15,https://doi.org/10.1016/j.jcp.2015.07.066 +Arpiruk Hokpunna,Compact fourth-order finite volume method for numerical solutions of Navier-Stokes equations on staggered grids.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#HokpunnaM10,https://doi.org/10.1016/j.jcp.2010.05.042 +Eric C. Cyr,Using the method of weighted residuals to compute potentials of mean force.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#CyrB07,https://doi.org/10.1016/j.jcp.2006.12.015 +Guillaume Dechristé,A Cartesian cut cell method for rarefied flow simulations around moving obstacles.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#DechristeM16,https://doi.org/10.1016/j.jcp.2016.03.024 +Guido Lodato,Three-dimensional boundary conditions for direct and large-eddy simulation of compressible viscous flows.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#LodatoDV08,https://doi.org/10.1016/j.jcp.2008.01.038 +Iman Borazjani,Curvilinear immersed boundary method for simulating fluid structure interaction with complex 3D rigid bodies.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#BorazjaniGS08,https://doi.org/10.1016/j.jcp.2008.04.028 +Stephen Cauley,A two-dimensional domain decomposition technique for the simulation of quantum-scale devices.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#CauleyBKK12,https://doi.org/10.1016/j.jcp.2011.10.006 +Jonathan B. Goodman,Coupling control variates for Markov chain Monte Carlo.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#GoodmanL09,https://doi.org/10.1016/j.jcp.2009.03.043 +Vitaliy Gyrya,High-order mimetic finite difference method for diffusion problems on polygonal meshes.,2008,227,J. Comput. Physics,20,db/journals/jcphy/jcphy227.html#GyryaL08,https://doi.org/10.1016/j.jcp.2008.06.028 +Francesco Bassi,On the flexibility of agglomeration based physical space discontinuous Galerkin discretizations.,2012,231,J. Comput. Physics,1,db/journals/jcphy/jcphy231.html#BassiBCPT12,https://doi.org/10.1016/j.jcp.2011.08.018 +Joachim Moortgat,Higher-order compositional modeling of three-phase flow in 3D fractured porous media based on cross-flow equilibrium.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#MoortgatF13,https://doi.org/10.1016/j.jcp.2013.05.009 +Matt Landreman,New velocity-space discretization for continuum kinetic calculations and Fokker-Planck collisions.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#LandremanE13,https://doi.org/10.1016/j.jcp.2013.02.041 +Sara Zahedi,Delta function approximations in level set methods by distance function extension.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#ZahediT10,https://doi.org/10.1016/j.jcp.2009.11.030 +Robert Scott Martin,Octree particle management for DSMC and PIC simulations.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#MartinC16,https://doi.org/10.1016/j.jcp.2016.01.020 +Songting Luo,Factored singularities and high-order Lax-Friedrichs sweeping schemes for point-source travel* and amplitudes.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#LuoQ11,https://doi.org/10.1016/j.jcp.2011.02.043 +Jens Berg,Superconvergent functional output for time-dependent problems using finite differences on summation-by-parts form.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#BergN12,https://doi.org/10.1016/j.jcp.2012.06.032 +Ramakrishna Tipireddy,Basis adaptation in homogeneous chaos spaces.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#TipireddyG14,https://doi.org/10.1016/j.jcp.2013.12.009 +Eugene Kazantsev,Identification of an optimal derivatives approximation by variational data assimilation.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#Kazantsev10,https://doi.org/10.1016/j.jcp.2009.09.018 +Volker John,On (essentially) non-oscillatory discretizations of evolutionary convection-diffusion equations.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#JohnN12,https://doi.org/10.1016/j.jcp.2011.10.025 +Christopher Cox,A high-order solver for unsteady incompressible Navier-Stokes equations using the flux reconstruction method on unstructured grids with implicit dual time stepping.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#CoxLP16,https://doi.org/10.1016/j.jcp.2016.03.016 +Francesco Capuano,Explicit Runge-Kutta schemes for incompressible flow with improved energy-conservation properties.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#CapuanoCRL17,https://doi.org/10.1016/j.jcp.2016.10.040 +Christoph M. Augustin,Anatomically accurate high resolution modeling of human whole heart electromechanics: A strongly scalable algebraic multigrid solver method for nonlinear deformation.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#AugustinNLPNHP16,https://doi.org/10.1016/j.jcp.2015.10.045 +Colton J. Conroy,hp discontinuous Galerkin methods for the vertical extent of the water column in coastal settings part I: Barotropic forcing.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#ConroyK16,https://doi.org/10.1016/j.jcp.2015.10.038 +Arnaud Fosso P.,Curvilinear finite-volume schemes using high-order compact interpolation.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#PDSS10,https://doi.org/10.1016/j.jcp.2010.03.027 +G. Manzini,A Legendre-Fourier spectral method with exact conservation laws for the Vlasov-Poisson system.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#ManziniDVM16,https://doi.org/10.1016/j.jcp.2016.03.069 +G. Della Rocca,Level set reinitialization at a contact line.,2014,265,J. Comput. Physics,,db/journals/jcphy/jcphy265.html#RoccaB14,https://doi.org/10.1016/j.jcp.2014.01.040 +Dag Lindbo,Spectral accuracy in fast Ewald-based methods for particle simulations.,2011,230,J. Comput. Physics,24,db/journals/jcphy/jcphy230.html#LindboT11,https://doi.org/10.1016/j.jcp.2011.08.022 +Fuyuan Wu,A conservative MHD scheme on unstructured Lagrangian grids for Z-pinch hydrodynamic simulations.,2018,357,J. Comput. Physics,,db/journals/jcphy/jcphy357.html#WuRL18,https://doi.org/10.1016/j.jcp.2017.12.014 +Yuhui Sun,A windowed Fourier pseudospectral method for hyperbolic conservation laws.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#SunZLW06,https://doi.org/10.1016/j.jcp.2005.09.027 +Eid H. Doha,Jacobi-Gauss-Lobatto collocation method for the numerical solution of l+l nonlinear Schrödinger equations.,2014,261,J. Comput. Physics,,db/journals/jcphy/jcphy261.html#DohaBAG14,https://doi.org/10.1016/j.jcp.2014.01.003 +Jisheng Kou,Multi-scale diffuse interface modeling of multi-component two-phase flow with partial miscibility.,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#KouS16,https://doi.org/10.1016/j.jcp.2016.04.055 +Jin Wang,A numerical algorithm for viscous incompressible interfacial flows.,2009,228,J. Comput. Physics,15,db/journals/jcphy/jcphy228.html#WangB09,https://doi.org/10.1016/j.jcp.2009.04.025 +Alexandros Beskos,Geometric MCMC for infinite-dimensional inverse problems.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#BeskosGLFS17,https://doi.org/10.1016/j.jcp.2016.12.041 +Marc-Antoine Habisreutinger,A coupled approximate deconvolution and dynamic mixed scale model for large-eddy simulation.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#HabisreutingerBLD07,https://doi.org/10.1016/j.jcp.2007.02.010 +L. Homsi,A coupled electro-thermal Discontinuous Galerkin method.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#HomsiGN17,https://doi.org/10.1016/j.jcp.2017.07.028 +Will Cousins,Boundary conditions for hemodynamics: The structured tree revisited.,2012,231,J. Comput. Physics,18,db/journals/jcphy/jcphy231.html#CousinsG12,https://doi.org/10.1016/j.jcp.2012.04.038 +ö. D. Gürcan,Numerical computation of the modified plasma dispersion function with curvature.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#Gurcan14,https://doi.org/10.1016/j.jcp.2014.03.017 +Xavier Antoine,Absorbing boundary conditions for the one-dimensional Schrödinger equation with an exterior repulsive potential.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#AntoineBK09,https://doi.org/10.1016/j.jcp.2008.09.013 +Jan Kopitz,CFD-based application of the Nyquist criterion to thermo-acoustic instabilities.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#KopitzP08,https://doi.org/10.1016/j.jcp.2008.03.022 +Henrik Juul Spietz,Iterative Brinkman penalization for simulation of impulsively started flow past a sphere and a circular disc.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#SpietzHW17,https://doi.org/10.1016/j.jcp.2017.01.064 +Yuqi Wu,A fully implicit domain decomposition based ALE framework for three-dimensional fluid-structure interaction with application in blood flow computation.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#WuC14,https://doi.org/10.1016/j.jcp.2013.10.046 +Leslie Greengard,The solution of the scalar wave equation in the exterior of a sphere.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#GreengardHJ14,https://doi.org/10.1016/j.jcp.2014.05.031 +Giacomo Dimarco,A multiscale fast semi-Lagrangian method for rarefied gas dynamics.,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#DimarcoLR15,https://doi.org/10.1016/j.jcp.2015.02.031 +David R. Rector,A semi-implicit lattice method for simulating flow.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#RectorS10,https://doi.org/10.1016/j.jcp.2010.05.020 +Piotr K. Smolarkiewicz,Building resolving large-eddy simulations and comparison with wind tunnel experiments.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#SmolarkiewiczSWPHB07,https://doi.org/10.1016/j.jcp.2007.08.005 +Guang-hua Gao,A finite difference scheme for fractional sub-diffusion equations on an unbounded domain using artificial boundary conditions.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#GaoSZ12,https://doi.org/10.1016/j.jcp.2011.12.028 +D. Xiao,Non-linear model reduction for the Navier-Stokes equations using residual DEIM method.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#XiaoFBPNDH14,https://doi.org/10.1016/j.jcp.2014.01.011 +Martin Losch,A parallel Jacobian-free Newton-Krylov solver for a coupled sea ice-ocean model.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#LoschFLV14,https://doi.org/10.1016/j.jcp.2013.09.026 +R. E. L. DeVille,Weighted Flow Algorithms (WFA) for stochastic particle coagulation.,2011,230,J. Comput. Physics,23,db/journals/jcphy/jcphy230.html#DeVilleRW11,https://doi.org/10.1016/j.jcp.2011.07.027 +X. Zeng,A variational multiscale finite element method for monolithic ALE computations of shock hydrodynamics using nodal elements.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#ZengS16,https://doi.org/10.1016/j.jcp.2016.03.052 +Christoph Köhn,A 3D particle Monte Carlo approach to studying nucleation.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#KohnES18,https://doi.org/10.1016/j.jcp.2018.02.032 +Michael G. Edwards,A quasi-positive family of continuous Darcy-flux finite-volume schemes with full pressure support.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#EdwardsZ08,https://doi.org/10.1016/j.jcp.2008.05.028 +Shidong Jiang,Analysis and accurate numerical solutions of the integral equation derived from the linearized BGKW equation for the steady Couette flow.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#JiangL16,https://doi.org/10.1016/j.jcp.2016.04.011 +Christopher J. Subich,Higher-order finite volume differential operators with selective upwinding on the icosahedral spherical grid.,2018,368,J. Comput. Physics,,db/journals/jcphy/jcphy368.html#Subich18,https://doi.org/10.1016/j.jcp.2018.04.053 +Juan A. Acebrón,A new parallel solver suited for arbitrary semilinear parabolic partial differential equations based on generalized random trees.,2011,230,J. Comput. Physics,21,db/journals/jcphy/jcphy230.html#AcebronR11,https://doi.org/10.1016/j.jcp.2011.06.033 +Andrew P. Kuprat,An anisotropic scale-invariant unstructured mesh generator suitable for volumetric imaging data.,2009,228,J. Comput. Physics,3,db/journals/jcphy/jcphy228.html#KupratE09,https://doi.org/10.1016/j.jcp.2008.09.030 +Walter Boscheri,A direct Arbitrary-Lagrangian-Eulerian ADER-WENO finite volume scheme on unstructured tetrahedral meshes for conservative and non-conservative hyperbolic systems in 3D.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#BoscheriD14,https://doi.org/10.1016/j.jcp.2014.06.059 +Hong Qin,"Comment on ""Hamiltonian splitting for the Vlasov-Maxwell equations"".",2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#QinHZLXW15,https://doi.org/10.1016/j.jcp.2015.04.056 +Enrique Martínez,Synchronous parallel kinetic Monte Carlo for continuum diffusion-reaction systems.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#MartinezMKP08,https://doi.org/10.1016/j.jcp.2007.11.045 +Ricardo Ruiz-Baier,Primal-mixed formulations for reaction-diffusion systems on deforming domains.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#Ruiz-Baier15,https://doi.org/10.1016/j.jcp.2015.07.018 +Arthur Guittet,A Voronoi Interface approach to cell aggregate electropermeabilization.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#GuittetPG17,https://doi.org/10.1016/j.jcp.2016.11.048 +Yun Yang,A high-order CESE scheme with a new divergence-free method for MHD numerical simulation.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#YangFJ17,https://doi.org/10.1016/j.jcp.2017.08.019 +Francois Hermeline,A discretization of the multigroup PN radiative transfer equation on general meshes.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#Hermeline16,https://doi.org/10.1016/j.jcp.2016.02.058 +Li Luo 0003,An efficient finite element method for simulation of droplet spreading on a topologically rough surface.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#LuoWC17,https://doi.org/10.1016/j.jcp.2017.08.010 +Wilko Rohlfs,Two-phase electrohydrodynamic simulations using a volume-of-fluid approach: A comment.,2012,231,J. Comput. Physics,12,db/journals/jcphy/jcphy231.html#RohlfsDHK12,https://doi.org/10.1016/j.jcp.2012.02.003 +Peter J. Ireland,Improving particle drag predictions in Euler-Lagrange simulations with two-way coupling.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#IrelandD17,https://doi.org/10.1016/j.jcp.2017.02.070 +Hiroyuki Nishida,ADI-SGS scheme on ideal magnetohydrodynamics.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#NishidaN09,https://doi.org/10.1016/j.jcp.2009.01.032 +George Papadakis 0004,A novel pressure-velocity formulation and solution method for fluid-structure interaction problems.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#Papadakis08,https://doi.org/10.1016/j.jcp.2007.12.004 +A. P. Hollis,An accurate and versatile lattice closure scheme for lattice Boltzmann equation fluids under external forces.,2008,227,J. Comput. Physics,17,db/journals/jcphy/jcphy227.html#HollisHC08,https://doi.org/10.1016/j.jcp.2008.05.007 +Kenneth Duru,Boundary conditions and stability of a perfectly matched layer for the elastic wave equation in first order form.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#DuruKK15,https://doi.org/10.1016/j.jcp.2015.09.048 +Daniel J. Price,Modelling discontinuities and Kelvin-Helmholtz instabilities in SPH.,2008,227,J. Comput. Physics,24,db/journals/jcphy/jcphy227.html#Price08,https://doi.org/10.1016/j.jcp.2008.08.011 +Moran Wang,Roughness and cavitations effects on electro-osmotic flows in rough microchannels using the lattice Poisson-Boltzmann methods.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#WangWC07,https://doi.org/10.1016/j.jcp.2007.05.001 +David P. Nicholls,Efficient enforcement of far-field boundary conditions in the Transformed Field Expansions method.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#Nicholls11,https://doi.org/10.1016/j.jcp.2011.07.029 +Volker Gravemeier,A consistent dynamic localization model for large eddy simulation of turbulent flows based on a variational formulation.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#Gravemeier06,https://doi.org/10.1016/j.jcp.2006.03.001 +Alireza Nejadmalayeri,Parallel adaptive wavelet collocation method for PDEs.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#NejadmalayeriVB15,https://doi.org/10.1016/j.jcp.2015.05.028 +Mingyu Zhang,A sharp interface method for SPH.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#ZhangD15a,https://doi.org/10.1016/j.jcp.2015.09.015 +Min Chen 0005,Numerical modeling of laser tunneling ionization in explicit particle-in-cell codes.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#ChenCGBYESL13,https://doi.org/10.1016/j.jcp.2012.11.029 +Francesco Capuano,An efficient time advancing strategy for energy-preserving simulations.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#CapuanoCL15,https://doi.org/10.1016/j.jcp.2015.03.070 +William D. Parker,Comparison of polynomial approximations to speed up planewave-based quantum Monte Carlo calculations.,2015,287,J. Comput. Physics,,db/journals/jcphy/jcphy287.html#ParkerUAPHW15,https://doi.org/10.1016/j.jcp.2015.01.037 +Jasmine Foo,The multi-element probabilistic collocation method (ME-PCM): Error analysis and applications.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#FooWK08,https://doi.org/10.1016/j.jcp.2008.07.009 +Naixing Feng,Second-order PML: Optimal choice of nth-order PML for truncating FDTD domains.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#FengYZWL15,https://doi.org/10.1016/j.jcp.2015.01.015 +Jin Fu,Time dependent solution for acceleration of tau-leaping.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#FuWP13,https://doi.org/10.1016/j.jcp.2012.10.036 +Marco D. de Tullio,A moving-least-squares immersed boundary method for simulating the fluid-structure interaction of elastic bodies with arbitrary thickness.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#TullioP16,https://doi.org/10.1016/j.jcp.2016.08.020 +Carlos Larriba,Free molecular collision cross section calculation methods for nanoparticles and complex ions with energy accommodation.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#LarribaH13,https://doi.org/10.1016/j.jcp.2013.05.038 +Pao-Hsiung Chiu,On the development of a dispersion-relation-preserving dual-compact upwind scheme for convection-diffusion equation.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#ChiuS09,https://doi.org/10.1016/j.jcp.2009.02.008 +Jingtang Ma,Moving mesh methods for blowup in reaction-diffusion equations with traveling heat source.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#MaJ09,https://doi.org/10.1016/j.jcp.2009.06.008 +Wenjun Cai,Partitioned averaged vector field methods.,2018,370,J. Comput. Physics,,db/journals/jcphy/jcphy370.html#CaiLW18,https://doi.org/10.1016/j.jcp.2018.05.009 +Daniel Conrad,A viscosity adaption method for Lattice Boltzmann simulations.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#ConradSB14,https://doi.org/10.1016/j.jcp.2014.08.008 +Alexander van Zuijlen,Higher-order time integration through smooth mesh deformation for 3D fluid-structure interaction simulations.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#ZuijlenBB07,https://doi.org/10.1016/j.jcp.2007.03.024 +Aditya Bandopadhyay,Computation of streaming potential in porous media: Modified permeability tensor.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#BandopadhyayDMC15,https://doi.org/10.1016/j.jcp.2015.07.030 +Sébastien Tanguy,Benchmarks and numerical methods for the simulation of boiling flows.,2014,264,J. Comput. Physics,,db/journals/jcphy/jcphy264.html#TanguySLCC14,https://doi.org/10.1016/j.jcp.2014.01.014 +Fengyan Li,A second order discontinuous Galerkin fast sweeping method for Eikonal equations.,2008,227,J. Comput. Physics,17,db/journals/jcphy/jcphy227.html#LiSZZ08,https://doi.org/10.1016/j.jcp.2008.05.018 +Matthew Hecht,Implementation of the LANS-α turbulence model in a primitive equation ocean model.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#HechtHPW08,https://doi.org/10.1016/j.jcp.2008.02.018 +Min Gao,An efficient scheme for a phase field model for the moving contact line problem with variable density and viscosity.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#GaoW14,https://doi.org/10.1016/j.jcp.2014.04.054 +Keri R. Moyle,Local remeshing for large amplitude grid deformations.,2008,227,J. Comput. Physics,5,db/journals/jcphy/jcphy227.html#MoyleV08,https://doi.org/10.1016/j.jcp.2007.11.015 +Minling Zheng,Numerical solution of the time fractional reaction-diffusion equation with a moving boundary.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#ZhengLLBS17,https://doi.org/10.1016/j.jcp.2017.03.006 +Duc-Vinh Le,An implicit immersed boundary method for three-dimensional fluid-membrane interactions.,2009,228,J. Comput. Physics,22,db/journals/jcphy/jcphy228.html#LeWPLK09,https://doi.org/10.1016/j.jcp.2009.08.018 +Issam Lakkis,A high resolution spatially adaptive vortex method for separating flows. Part I: Two-dimensional domains.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#LakkisG09,https://doi.org/10.1016/j.jcp.2008.09.025 +Aymen Laadhari,Fully implicit methodology for the dynamics of biomembranes and capillary interfaces by combining the level set and Newton methods.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#LaadhariSMS17,https://doi.org/10.1016/j.jcp.2017.04.019 +Bruno Després,Stabilization of cell-centered compressible Lagrangian methods using subzonal entropy.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#DespresL12,https://doi.org/10.1016/j.jcp.2012.04.018 +M. Carmen Calzada,Fictitious domains and level sets for moving boundary problems. Applications to the numerical simulation of tumor growth.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#CalzadaCFM11,https://doi.org/10.1016/j.jcp.2010.11.005 +Gino I. Montecinos,Reformulations for general advection-diffusion-reaction equations and locally implicit ADER schemes.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#MontecinosT14,https://doi.org/10.1016/j.jcp.2014.06.018 +Goncalo Silva,Truncation errors and the rotational invariance of three-dimensional lattice models in the lattice Boltzmann method.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#SilvaS14,https://doi.org/10.1016/j.jcp.2014.03.027 +Veselin Dobrev,High order curvilinear finite elements for elastic-plastic Lagrangian dynamics.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#DobrevKR14,https://doi.org/10.1016/j.jcp.2013.01.015 +Zhu Huang,Modal preconditioning of Galerkin spectral methods: Dual bookkeeping for the Delves-Freeman iteration.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#HuangB15a,https://doi.org/10.1016/j.jcp.2015.07.064 +D. M. Bond,Solving the discrete S-model kinetic equations with arbitrary order polynomial approximations.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#BondWMG14,https://doi.org/10.1016/j.jcp.2013.11.026 +Adrian M. Altenhoff,A stochastic boundary forcing for dissipative particle dynamics.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#AltenhoffWK07,https://doi.org/10.1016/j.jcp.2007.01.015 +Garrett E. Barter,Shock capturing with PDE-based artificial viscosity for DGFEM: Part I. Formulation.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#BarterD10,https://doi.org/10.1016/j.jcp.2009.11.010 +Samuel Paolucci,WAMR: An adaptive wavelet method for the simulation of compressible reacting flow. Part I. Accuracy and efficiency of algorithm.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#PaolucciZW14,https://doi.org/10.1016/j.jcp.2014.01.025 +S. Busto,Design and analysis of ADER-type schemes for model advection-diffusion-reaction equations.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#BustoTV16,https://doi.org/10.1016/j.jcp.2016.09.043 +Wen Zheng,A new incompressibility discretization for a hybrid particle MAC grid representation with surface tension.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#ZhengZKF15,https://doi.org/10.1016/j.jcp.2014.08.051 +Rafael Borges,An improved weighted essentially non-oscillatory scheme for hyperbolic conservation laws.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#BorgesCCD08,https://doi.org/10.1016/j.jcp.2007.11.038 +Paola Cinnella,High-order implicit residual smoothing time scheme for direct and large eddy simulations of compressible flows.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#CinnellaC16,https://doi.org/10.1016/j.jcp.2016.08.023 +Daniel Appelö,A high-order super-grid-scale absorbing layer and its application to linear hyperbolic systems.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#AppeloC09,https://doi.org/10.1016/j.jcp.2009.02.030 +Rob Remis,Stability of FDTD on nonuniform grids for Maxwell's equations in lossless media.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#Remis06,https://doi.org/10.1016/j.jcp.2006.02.022 +Bokai Yan,Analysis and simulation for a model of electron impact excitation/deexcitation and ionization/recombination.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#YanCBC15,https://doi.org/10.1016/j.jcp.2015.07.027 +Vladimir Sabelnikov,Modified level set equation and its numerical assessment.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#SabelnikovOG14,https://doi.org/10.1016/j.jcp.2014.08.018 +Jeffrey W. Banks,A high-resolution Godunov method for compressible multi-material flow on overlapping grids.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#BanksSKH07,https://doi.org/10.1016/j.jcp.2006.09.014 +Jing-Mei Qiu,Conservative high order semi-Lagrangian finite difference WENO methods for advection in incompressible flow.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#QiuS11,https://doi.org/10.1016/j.jcp.2010.04.037 +Yingda Cheng,Numerical study of the two-species Vlasov-Ampère system: Energy-conserving schemes and the current-driven ion-acoustic instability.,2015,288,J. Comput. Physics,,db/journals/jcphy/jcphy288.html#ChengCZ15,https://doi.org/10.1016/j.jcp.2015.02.020 +Kevin Carlberg,Galerkin v. least-squares Petrov-Galerkin projection in nonlinear model reduction.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#CarlbergJA17,https://doi.org/10.1016/j.jcp.2016.10.033 +Emmanuel Audusse,Approximation of the hydrostatic Navier-Stokes system for density stratified flows by a multilayer model: Kinetic interpretation and numerical solution.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#AudusseBPS11,https://doi.org/10.1016/j.jcp.2011.01.042 +Edward Santilli,An efficient method for solving highly anisotropic elliptic equations.,2011,230,J. Comput. Physics,23,db/journals/jcphy/jcphy230.html#SantilliS11,https://doi.org/10.1016/j.jcp.2011.06.022 +Abbas Fakhari,A weighted multiple-relaxation-time lattice Boltzmann method for multiphase flows and its application to partial coalescence cascades.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#FakhariBL17,https://doi.org/10.1016/j.jcp.2017.03.062 +Yuanxun Bao,An Immersed Boundary method with divergence-free velocity interpolation and force spreading.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#BaoDGMP17,https://doi.org/10.1016/j.jcp.2017.06.041 +Ken Mattsson,Stable and accurate wave-propagation in discontinuous media.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#MattssonHI08,https://doi.org/10.1016/j.jcp.2008.06.023 +Adam J. Hoffman,A time-dependent neutron transport method of characteristics formulation with time derivative propagation.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#HoffmanL16,https://doi.org/10.1016/j.jcp.2015.10.039 +Jie Yang,Taylor meshless method for solving non-linear partial differential equations.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#YangHKP17,https://doi.org/10.1016/j.jcp.2017.07.034 +Pierre F. J. Lermusiaux,Uncertainty estimation and prediction for interdisciplinary ocean dynamics.,2006,217,J. Comput. Physics,1,db/journals/jcphy/jcphy217.html#Lermusiaux06,https://doi.org/10.1016/j.jcp.2006.02.010 +Moran Wang,Elastic property of multiphase composites with random microstructures.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#WangP09,https://doi.org/10.1016/j.jcp.2009.05.007 +Christopher B. Ivey,Conservative and bounded volume-of-fluid advection on unstructured grids.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#IveyM17,https://doi.org/10.1016/j.jcp.2017.08.054 +Gisela Widmer,Sparse adaptive finite elements for radiative transfer.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#WidmerHS08,https://doi.org/10.1016/j.jcp.2008.02.025 +Brian Munsky,A multiple time interval finite state projection algorithm for the solution to the chemical master equation.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#MunskyK07,https://doi.org/10.1016/j.jcp.2007.05.016 +Kendra P. Keady,Stability of Monte Carlo k-eigenvalue simulations with CMFD feedback.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#KeadyL16,https://doi.org/10.1016/j.jcp.2016.06.002 +Peter Blaha,Iterative diagonalization in augmented plane wave based methods in electronic structure calculations.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#BlahaHKLS10,https://doi.org/10.1016/j.jcp.2009.09.036 +Andrew Barlow,Constrained optimization framework for interface-aware sub-scale dynamics models for voids closure in Lagrangian hydrodynamics.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#BarlowKS18,https://doi.org/10.1016/j.jcp.2018.03.034 +Ya-Nan Zhang,Finite difference methods for the time fractional diffusion equation on non-uniform meshes.,2014,265,J. Comput. Physics,,db/journals/jcphy/jcphy265.html#ZhangSL14,https://doi.org/10.1016/j.jcp.2014.02.008 +Peijun Li,A two-dimensional Helmhotlz equation solution for the multiple cavity scattering problem.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#LiW13,https://doi.org/10.1016/j.jcp.2012.12.022 +M. Parsani,Implicit LU-SGS algorithm for high-order methods on unstructured grid with p-multigrid strategy for solving the steady Navier-Stokes equations.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#ParsaniALT10,https://doi.org/10.1016/j.jcp.2009.10.014 +Tong Qin,Bound-preserving discontinuous Galerkin methods for relativistic hydrodynamics.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#QinSY16,https://doi.org/10.1016/j.jcp.2016.02.079 +Benjamin Brock,Explicit integration with GPU acceleration for large kinetic networks.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#BrockBBG15,https://doi.org/10.1016/j.jcp.2015.09.013 +Liang Jiang,A fast particle level set method with optimized particle correction procedure for interface capturing.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#JiangLC15,https://doi.org/10.1016/j.jcp.2015.06.039 +Yann Moguen,Solving low Mach number Riemann problems by a momentum interpolation method.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#MoguenBD15,https://doi.org/10.1016/j.jcp.2015.06.037 +Lin Yang,Implementation of metal-friendly EAM/FS-type semi-empirical potentials in HOOMD-blue: A GPU-accelerated molecular dynamics software.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#YangZWHT18,https://doi.org/10.1016/j.jcp.2018.01.015 +Yueh-Cheng Kuo,A minimal energy tracking method for non-radially symmetric solutions of coupled nonlinear Schrödinger equations.,2009,228,J. Comput. Physics,21,db/journals/jcphy/jcphy228.html#KuoLSW09,https://doi.org/10.1016/j.jcp.2009.07.029 +Xiaofeng Cai,A conservative semi-Lagrangian HWENO method for the Vlasov equation.,2016,323,J. Comput. Physics,,db/journals/jcphy/jcphy323.html#CaiQQ16,https://doi.org/10.1016/j.jcp.2016.07.021 +M. Zakari,An axisymmetric unstructured finite volume method applied to the numerical modeling of an atmospheric pressure gas discharge.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#ZakariCHS15,https://doi.org/10.1016/j.jcp.2014.10.031 +Lukas Einkemmer,On the performance of exponential integrators for problems in magnetohydrodynamics.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#EinkemmerTL17,https://doi.org/10.1016/j.jcp.2016.11.027 +Panagiotis E. Hadjidoukas,Λ8*4U: A high performance computing framework for Bayesian uncertainty quantification of complex models.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#HadjidoukasAPK15,https://doi.org/10.1016/j.jcp.2014.12.006 +Bangti Jin,Hierarchical Bayesian inference for Ill-posed problems via variational method.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#JinZ10,https://doi.org/10.1016/j.jcp.2010.06.016 +Nicolas Crouseilles,Conservative semi-Lagrangian schemes for Vlasov equations.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#CrouseillesMS10,https://doi.org/10.1016/j.jcp.2009.11.007 +Oleg Volkov,An inverse model for a free-boundary problem with a contact line: Steady case.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#VolkovP09,https://doi.org/10.1016/j.jcp.2009.03.042 +Sukky Jun,Axial Green's function method for steady Stokes flow in geometrically complex domains.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#JunK11,https://doi.org/10.1016/j.jcp.2010.12.007 +Ramon Codina,Approximation of the thermally coupled MHD problem using a stabilized finite element method.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#CodinaH11,https://doi.org/10.1016/j.jcp.2010.11.003 +Seung Hyun Kim,On the lattice Boltzmann method for multiphase flows with large density ratios.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#KimP15,https://doi.org/10.1016/j.jcp.2015.09.029 +Jiannong Fang,Towards oscillation-free implementation of the immersed boundary method with spectral-like methods.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#FangDHP11,https://doi.org/10.1016/j.jcp.2011.07.017 +Song Li,Computing entries of the inverse of a sparse matrix using the FIND algorithm.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#LiAKD08,https://doi.org/10.1016/j.jcp.2008.06.033 +Pieter Rauwoens,A conservative discrete compatibility-constraint low-Mach pressure-correction algorithm for time-accurate simulations of variable density flows.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#RauwoensVDM09,https://doi.org/10.1016/j.jcp.2009.03.036 +G. Billet,A Runge-Kutta discontinuous Galerkin approach to solve reactive flows: The hyperbolic operator.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#BilletR11,https://doi.org/10.1016/j.jcp.2010.10.025 +M. Arnst,Identification of Bayesian posteriors for coefficients of chaos expansions.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#ArnstGS10,https://doi.org/10.1016/j.jcp.2009.12.033 +Martin J. Mlacnik,Unstructured grid optimization for improved monotonicity of discrete solutions of elliptic equations with highly anisotropic coefficients.,2006,216,J. Comput. Physics,1,db/journals/jcphy/jcphy216.html#MlacnikD06,https://doi.org/10.1016/j.jcp.2005.12.007 +Giacomo Dimarco,Towards an ultra efficient kinetic scheme. Part III: High-performance-computing.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#DimarcoLN15,https://doi.org/10.1016/j.jcp.2014.12.023 +Jeff Candy,Spectral treatment of gyrokinetic shear flow.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#CandyB18,https://doi.org/10.1016/j.jcp.2017.12.020 +Guillaume Desquesnes,On the use of a high order overlapping grid method for coupling in CFD/CAA.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#DesquesnesTMS06,https://doi.org/10.1016/j.jcp.2006.05.019 +C. C. Huang,Cell-level canonical sampling by velocity scaling for multiparticle collision dynamics simulations.,2010,229,J. Comput. Physics,1,db/journals/jcphy/jcphy229.html#HuangCSGW10,https://doi.org/10.1016/j.jcp.2009.09.024 +F. Boselli,A multilayer method of fundamental solutions for Stokes flow problems.,2012,231,J. Comput. Physics,18,db/journals/jcphy/jcphy231.html#BoselliOK12,https://doi.org/10.1016/j.jcp.2012.05.023 +Aleksei I. Shestakov,Derivation and solution of multifrequency radiation diffusion equations for homogeneous refractive lossy media.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#ShestakovVS11,https://doi.org/10.1016/j.jcp.2010.10.008 +Eric T. Chung,Residual-driven online generalized multiscale finite element methods.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#ChungEL15,https://doi.org/10.1016/j.jcp.2015.07.068 +Jun-ichi Iwata,A massively-parallel electronic-structure calculations based on real-space density functional theory.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#IwataTOBSOY10,https://doi.org/10.1016/j.jcp.2009.11.038 +Michael Oevermann,An asymptotic solution approach for elliptic equations with discontinuous coefficients.,2014,261,J. Comput. Physics,,db/journals/jcphy/jcphy261.html#OevermannK14,https://doi.org/10.1016/j.jcp.2013.12.027 +J. Andrew Spencer,A finite element/Fourier treatment of the Fokker-Planck equation.,2012,231,J. Comput. Physics,18,db/journals/jcphy/jcphy231.html#SpencerJH12,https://doi.org/10.1016/j.jcp.2012.06.004 +William C. Skamarock,A time-split nonhydrostatic atmospheric model for weather research and forecasting applications.,2008,227,J. Comput. Physics,7,db/journals/jcphy/jcphy227.html#SkamarockK08,https://doi.org/10.1016/j.jcp.2007.01.037 +Samet Y. Kadioglu,A fourth-order auxiliary variable projection method for zero-Mach number gas dynamics.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#KadiogluKM08,https://doi.org/10.1016/j.jcp.2007.10.008 +Glen Hansen,Unstructured surface mesh adaptation using the Laplace-Beltrami target metric approach.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#HansenZ07,https://doi.org/10.1016/j.jcp.2006.11.033 +Zhiwei He,Preventing numerical oscillations in the flux-split based finite difference method for compressible flows with discontinuities.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#HeZLLT15,https://doi.org/10.1016/j.jcp.2015.07.049 +Jiequan Li,Thermodynamical effects and high resolution methods for compressible fluid flows.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#LiW17,https://doi.org/10.1016/j.jcp.2017.04.048 +D. V. Kotov,Numerical dissipation control in high order shock-capturing schemes for LES of low speed flows.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#KotovYWSK16,https://doi.org/10.1016/j.jcp.2015.11.029 +Weiping Bu,Galerkin finite element method for two-dimensional Riesz space fractional diffusion equations.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#BuTY14,https://doi.org/10.1016/j.jcp.2014.07.023 +Christopher Angstmann,A discrete time random walk model for anomalous diffusion.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#AngstmannDHN15,https://doi.org/10.1016/j.jcp.2014.08.003 +Shaohua Wu,Extension of moment projection method to the fragmentation process.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#WuYAMXYK17a,https://doi.org/10.1016/j.jcp.2017.01.045 +Wen-Hwa Chen,Modified Nosé-Hoover thermostat for solid state for constant temperature molecular dynamics simulation.,2011,230,J. Comput. Physics,16,db/journals/jcphy/jcphy230.html#ChenWC11,https://doi.org/10.1016/j.jcp.2011.04.030 +Malcolm Roberts,Multithreaded implicitly dealiased convolutions.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#RobertsB18,https://doi.org/10.1016/j.jcp.2017.11.026 +Gauthier Wissocq,Regularized characteristic boundary conditions for the Lattice-Boltzmann methods at high Reynolds number flows.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#WissocqGME17,https://doi.org/10.1016/j.jcp.2016.11.037 +Ioan Teleaga,Radiation models for thermal flows at low Mach number.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#TeleagaSGKS06,https://doi.org/10.1016/j.jcp.2005.11.015 +Florent Renac,Fast time implicit-explicit discontinuous Galerkin method for the compressible Navier-Stokes equations.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#RenacGMC13,https://doi.org/10.1016/j.jcp.2013.05.043 +Christopher K. Newman,A communication-avoiding implicit-explicit method for a free-surface ocean model.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#NewmanWKC16,https://doi.org/10.1016/j.jcp.2015.11.008 +Ngoc Cuong Nguyen,A posteriori error estimation and basis adaptivity for reduced-basis approximation of nonaffine-parametrized linear elliptic partial differential equations.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#Nguyen07,https://doi.org/10.1016/j.jcp.2007.08.031 +Alexandre Noll Marques,High order solution of Poisson problems with piecewise constant coefficients and interface jumps.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#MarquesNR17,https://doi.org/10.1016/j.jcp.2017.01.029 +Yongle Hao,Computation of moments for Maxwell's equations with random interfaces via pivoted low-rank approximation.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#HaoKLZ18,https://doi.org/10.1016/j.jcp.2018.05.004 +De-Xiang Chen,Least squares finite element method with high continuity NURBS basis for incompressible Navier-Stokes equations.,2014,260,J. Comput. Physics,,db/journals/jcphy/jcphy260.html#ChenXLF14,https://doi.org/10.1016/j.jcp.2013.12.031 +François Vilar,A discontinuous Galerkin discretization for solving the two-dimensional gas dynamics equations written under total Lagrangian formulation on general unstructured grids.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#VilarMA14,https://doi.org/10.1016/j.jcp.2014.07.030 +Martin Stoll,Fast solvers for optimal control problems from pattern formation.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#StollPM16,https://doi.org/10.1016/j.jcp.2015.10.006 +Dieter Fauconnier,A family of dynamic finite difference schemes for large-eddy simulation.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#FauconnierLD09,https://doi.org/10.1016/j.jcp.2008.11.014 +Xiu Yang,Reweighted ℓ*1ℓ*1 minimization method for stochastic elliptic differential equations.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#YangK13,https://doi.org/10.1016/j.jcp.2013.04.004 +Minh Do-Quang,Simulation of free dendritic crystal growth in a gravity environment.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#Do-QuangA08,https://doi.org/10.1016/j.jcp.2007.09.025 +Ricardo Cortez,A fast numerical method for computing doubly-periodic regularized Stokes flow in 3D.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#CortezH14,https://doi.org/10.1016/j.jcp.2013.10.032 +Mathieu Coquerelle,A vortex level set method for the two-way coupling of an incompressible fluid with colliding rigid bodies.,2008,227,J. Comput. Physics,21,db/journals/jcphy/jcphy227.html#CoquerelleC08,https://doi.org/10.1016/j.jcp.2008.03.041 +Jacob T. Fokkema,Stretched backgrounds for acoustic scattering models.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#FokkemaB12,https://doi.org/10.1016/j.jcp.2011.11.002 +Dmitry Borovikov,An efficient second-order accurate and continuous interpolation for block-adaptive grids.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#BorovikovST15,https://doi.org/10.1016/j.jcp.2015.05.038 +Jingfang Huang,Accelerating the convergence of spectral deferred correction methods.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#HuangJM06,https://doi.org/10.1016/j.jcp.2005.10.004 +Frédéric N. Felten,Kinetic energy conservation issues associated with the collocated mesh scheme for incompressible flow.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#FeltenL06,https://doi.org/10.1016/j.jcp.2005.11.009 +R. Kissmann,A central conservative scheme for general rectangular grids.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#KissmannPK09,https://doi.org/10.1016/j.jcp.2008.11.030 +Yan Liu 0023,A boundary focused quadrilateral mesh generation algorithm for multi-material structures.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#LiuX13,https://doi.org/10.1016/j.jcp.2012.08.042 +Wingfai Kwan,A fast Huygens sweeping method for capturing paraxial multi-color optical self-focusing in nematic liquid crystals.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#KwanLWQ17,https://doi.org/10.1016/j.jcp.2017.07.018 +Milan Dotlic,Second-order accurate finite volume method for well-driven flows.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#DotlicVPPD16,https://doi.org/10.1016/j.jcp.2015.12.021 +Q. Deng,A locally conservative stabilized continuous Galerkin finite element method for two-phase flow in poroelastic subsurfaces.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#DengGMT17,https://doi.org/10.1016/j.jcp.2017.06.024 +Guang Lin,Predicting shock dynamics in the presence of uncertainties.,2006,217,J. Comput. Physics,1,db/journals/jcphy/jcphy217.html#LinSK06,https://doi.org/10.1016/j.jcp.2006.02.009 +Ioan R. Ionescu,Augmented Lagrangian for shallow viscoplastic flow with topography.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#Ionescu13,https://doi.org/10.1016/j.jcp.2013.02.029 +Ruihao Huang,Recursive integral method for transmission eigenvalues.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#HuangSSZ16,https://doi.org/10.1016/j.jcp.2016.10.001 +Alex Mahalov,Vertically nested nonhydrostatic model for multiscale resolution of flows in the upper troposphere and lower stratosphere.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#MahalovM09,https://doi.org/10.1016/j.jcp.2008.10.030 +Yu-Chao Hua,An efficient two-step Monte Carlo method for heat conduction in nanostructures.,2017,342,J. Comput. Physics,,db/journals/jcphy/jcphy342.html#HuaC17,https://doi.org/10.1016/j.jcp.2017.04.042 +Thomas Hiller,Stochastic Rotation Dynamics simulations of wetting multi-phase flows.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#HillerLB16,https://doi.org/10.1016/j.jcp.2016.03.066 +Shravan K. Veerapaneni,The Chebyshev fast Gauss and nonuniform fast Fourier transforms and their application to the evaluation of distributed heat potentials.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#VeerapaneniB08,https://doi.org/10.1016/j.jcp.2008.05.003 +Dimitri J. Mavriplis,On the geometric conservation law for high-order discontinuous Galerkin discretizations on dynamically deforming meshes.,2011,230,J. Comput. Physics,11,db/journals/jcphy/jcphy230.html#MavriplisN11,https://doi.org/10.1016/j.jcp.2011.01.022 +Fedir V. Sirotkin,A new particle method for simulating breakup of liquid jets.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#SirotkinY12,https://doi.org/10.1016/j.jcp.2011.10.020 +J. Thomas Beale,Locally corrected semi-Lagrangian methods for Stokes flow with moving elastic interfaces.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#BealeS08,https://doi.org/10.1016/j.jcp.2007.11.047 +Leopold Grinberg,Proper orthogonal decomposition of atomistic flow simulations.,2012,231,J. Comput. Physics,16,db/journals/jcphy/jcphy231.html#Grinberg12,https://doi.org/10.1016/j.jcp.2012.05.007 +Karim Khayrat,A multi-scale network method for two-phase flow in porous media.,2017,342,J. Comput. Physics,,db/journals/jcphy/jcphy342.html#KhayratJ17,https://doi.org/10.1016/j.jcp.2017.04.023 +Eric Chénier,A collocated finite volume scheme to solve free convection for general non-conforming grids.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#ChenierEH09,https://doi.org/10.1016/j.jcp.2008.10.034 +Cosmin Safta,A high-order low-Mach number AMR construction for chemically reacting flows.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#SaftaRN10,https://doi.org/10.1016/j.jcp.2010.09.002 +Chang Shu 0002,A novel immersed boundary velocity correction-lattice Boltzmann method and its application to simulate flow past a circular cylinder.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#0002LC07,https://doi.org/10.1016/j.jcp.2007.06.002 +Li Wang,An immersed boundary method for fluid-structure interaction with compressible multiphase flows.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#WangCHNYT17,https://doi.org/10.1016/j.jcp.2017.06.008 +Jianxian Qiu,Runge-Kutta discontinuous Galerkin methods for compressible two-medium flow simulations: One-dimensional case.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#QiuLK07,https://doi.org/10.1016/j.jcp.2006.07.023 +Hai X. Vo,Regularized kernel PCA for the efficient parameterization of complex geological models.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#VoD16,https://doi.org/10.1016/j.jcp.2016.07.011 +Jong-Shinn Wu,Development and verification of a coupled DSMC-NS scheme using unstructured mesh.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#WuLCKT06,https://doi.org/10.1016/j.jcp.2006.04.013 +Yogesh G. Bhumkar,A linear focusing mechanism for dispersive and non-dispersive wave problems.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#BhumkarRS11,https://doi.org/10.1016/j.jcp.2010.11.026 +Qiang Du,Simulating the deformation of vesicle membranes under elastic bending energy in three dimensions.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#DuLW06,https://doi.org/10.1016/j.jcp.2005.07.020 +Bamdad Lessani,Time-accurate calculation of variable density flows with strong temperature gradients and combustion.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#LessaniP06,https://doi.org/10.1016/j.jcp.2005.07.001 +Daniel R. Lester,Global parametric solutions of scalar transport.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#LesterRMB08,https://doi.org/10.1016/j.jcp.2007.10.015 +A. Poux,Improvements on open and traction boundary conditions for Navier-Stokes time-splitting methods.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#PouxGA11,https://doi.org/10.1016/j.jcp.2011.02.024 +Kai Gu,Atomistic hybrid DSMC/NEMD method for nonequilibrium multiscale simulations.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#GuWK10,https://doi.org/10.1016/j.jcp.2009.10.035 +Christof Vömel,The use of bulk states to accelerate the band edge state calculation of a semiconductor quantum dot.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#VomelTWMD07,https://doi.org/10.1016/j.jcp.2006.10.005 +Scott M. Murman,Compact upwind schemes on adaptive octrees.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#Murman10,https://doi.org/10.1016/j.jcp.2009.10.019 +Kouroush Sadegh Zadeh,Parametrization of flow processes in porous media by multiobjective inverse modeling.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#ZadehM14,https://doi.org/10.1016/j.jcp.2013.12.001 +Yutao Tao,Steady-state and dynamic models for particle engulfment during solidification.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#TaoYD16,https://doi.org/10.1016/j.jcp.2016.03.050 +Irina Ginzburg,Truncation effect on Taylor-Aris dispersion in lattice Boltzmann schemes: Accuracy towards stability.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#GinzburgR15,https://doi.org/10.1016/j.jcp.2015.07.017 +Konstantin Lipnikov,A multilevel multiscale mimetic (M3) method for two-phase flows in porous media.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#LipnikovMS08,https://doi.org/10.1016/j.jcp.2008.03.029 +Yi Liu,Dynamic mode extrapolation to improve the efficiency of dual time stepping method.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#LiuWY18,https://doi.org/10.1016/j.jcp.2017.09.043 +Ngoc Cuong Nguyen,A class of embedded discontinuous Galerkin methods for computational fluid dynamics.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#NguyenPC15,https://doi.org/10.1016/j.jcp.2015.09.024 +Ryan W. Houim,A ghost fluid method for compressible reacting flows with phase change.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#HouimK13,https://doi.org/10.1016/j.jcp.2012.09.022 +Francesco Massimo,Comparisons of time explicit hybrid kinetic-fluid code Architect for Plasma Wakefield Acceleration with a full PIC code.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#MassimoAM16,https://doi.org/10.1016/j.jcp.2016.09.067 +Francis Filbet,A class of asymptotic-preserving schemes for kinetic equations and related problems with stiff sources.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#FilbetJ10,https://doi.org/10.1016/j.jcp.2010.06.017 +Ian J. Laurenzi,"Erratum to ""A general algorithm for exact simulation of multicomponent aggregation processes"" [J. Comput. Phys. 177(2002) 418-449].",2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#Laurenzi06,https://doi.org/10.1016/j.jcp.2006.03.002 +Wenjun Ying,A kernel-free boundary integral method for implicitly defined surfaces.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#YingW13,https://doi.org/10.1016/j.jcp.2013.06.019 +Alice Lieu,A comparison of high-order polynomial and wave-based methods for Helmholtz problems.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#LieuGB16,https://doi.org/10.1016/j.jcp.2016.05.045 +Yong-Lei Wang,Implementation of non-uniform FFT based Ewald summation in dissipative particle dynamics method.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#WangLL13,https://doi.org/10.1016/j.jcp.2012.09.023 +Guglielmo Scovazzi,A discontinuous Galerkin method for gravity-driven viscous fingering instabilities in porous media.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#ScovazziGC13,https://doi.org/10.1016/j.jcp.2012.09.003 +Adimurthi,Godunov-type numerical methods for a model of granular flow.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#AdimurthiAG16,https://doi.org/10.1016/j.jcp.2015.09.036 +Michel Rieutord,An algorithm for computing the 2D structure of fast rotating stars.,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#RieutordLP16,https://doi.org/10.1016/j.jcp.2016.05.011 +Nicolas Grenier,An accurate low-Mach scheme for a compressible two-fluid model applied to free-surface flows.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#GrenierVV13,https://doi.org/10.1016/j.jcp.2013.06.008 +J. Novak,A spectral method for the wave equation of divergence-free vectors and symmetric tensors inside a sphere.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#NovakCV10,https://doi.org/10.1016/j.jcp.2009.09.033 +Javier Murillo,Wave Riemann description of friction terms in unsteady shallow flows: Application to water and mud/debris floods.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#MurilloG12,https://doi.org/10.1016/j.jcp.2011.11.014 +Songting Luo,A uniformly second order fast sweeping method for eikonal equations.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#Luo13,https://doi.org/10.1016/j.jcp.2013.01.042 +William F. Godoy,On the use of flux limiters in the discrete ordinates method for 3D radiation calculations in absorbing and scattering media.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#GodoyD10,https://doi.org/10.1016/j.jcp.2009.12.037 +Y. T. Feng,Discrete thermal element modelling of heat conduction in particle systems: Basic formulations.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#FengHLO08,https://doi.org/10.1016/j.jcp.2008.01.031 +Ofer Shamir,"A Gegenbauer-based Shallow Water solver for a thick ""ocean"" over a rotating sphere.",2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#ShamirP16,https://doi.org/10.1016/j.jcp.2015.10.019 +Fabian Denner,Numerical time-step restrictions as a result of capillary waves.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#DennerW15,https://doi.org/10.1016/j.jcp.2015.01.021 +C. Birk,A local high-order doubly asymptotic open boundary for diffusion in a semi-infinite layer.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#BirkS10,https://doi.org/10.1016/j.jcp.2010.04.046 +Duc-Vinh Le,A front-tracking method with Catmull-Clark subdivision surfaces for studying liquid capsules enclosed by thin shells in shear flow.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#LeW11,https://doi.org/10.1016/j.jcp.2011.01.047 +Mehdi Tatari,The Galerkin boundary node method for magneto-hydrodynamic (MHD) equation.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#TatariG14,https://doi.org/10.1016/j.jcp.2013.10.056 +E. Gagarina,On variational and symplectic time integrators for Hamiltonian systems.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#GagarinaANVB16,https://doi.org/10.1016/j.jcp.2015.11.049 +Sören Bartels,Modeling and simulation of thermally actuated bilayer plates.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#BartelsBMN18,https://doi.org/10.1016/j.jcp.2017.10.044 +Rongzong Huang,An immersed boundary-thermal lattice Boltzmann method for solid-liquid phase change.,2014,277,J. Comput. Physics,,db/journals/jcphy/jcphy277.html#HuangW14,https://doi.org/10.1016/j.jcp.2014.08.020 +G. Thorgilsson,Recursive Green's function method for multi-terminal nanostructures.,2014,261,J. Comput. Physics,,db/journals/jcphy/jcphy261.html#ThorgilssonVE14,https://doi.org/10.1016/j.jcp.2013.12.054 +Rodrigo Panosso Macedo,Axisymmetric fully spectral code for hyperbolic equations.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#MacedoA14,https://doi.org/10.1016/j.jcp.2014.07.040 +Elizabeth L. Bouzarth,Modeling slender bodies with the method of regularized Stokeslets.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#BouzarthM11,https://doi.org/10.1016/j.jcp.2011.02.017 +Baskar Ganapathysubramanian,A stochastic multiscale framework for modeling flow through random heterogeneous porous media.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#GanapathysubramanianZ09,https://doi.org/10.1016/j.jcp.2008.10.006 +Joran Rolland,Statistical behaviour of adaptive multilevel splitting algorithms in simple models.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#RollandS15,https://doi.org/10.1016/j.jcp.2014.12.009 +Mark B. Flegg,Convergence of methods for coupling of microscopic and mesoscopic reaction-diffusion simulations.,2015,289,J. Comput. Physics,,db/journals/jcphy/jcphy289.html#FleggHE15,https://doi.org/10.1016/j.jcp.2015.01.030 +Milan Kucharik,A multi-scale residual-based anti-hourglass control for compatible staggered Lagrangian hydrodynamics.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#KucharikSSL18,https://doi.org/10.1016/j.jcp.2017.10.050 +Dongbin Xiu,Efficient stochastic Galerkin methods for random diffusion equations.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#XiuS09,https://doi.org/10.1016/j.jcp.2008.09.008 +Philip C. Wallstedt,An evaluation of explicit time integration schemes for use with the generalized interpolation material point method.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#WallstedtG08,https://doi.org/10.1016/j.jcp.2008.07.019 +William J. Rider,Robust verification analysis.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#RiderWKW16,https://doi.org/10.1016/j.jcp.2015.11.054 +Tilak R. Dhakal,Material point methods applied to one-dimensional shock waves and dual domain material point method with sub-points.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#DhakalZ16,https://doi.org/10.1016/j.jcp.2016.08.033 +Wai-Sun Don,Accuracy of the weighted essentially non-oscillatory conservative finite difference schemes.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#DonB13,https://doi.org/10.1016/j.jcp.2013.05.018 +A. W. Vreman,The projection method for the incompressible Navier-Stokes equations: The pressure near a no-slip wall.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#Vreman14,https://doi.org/10.1016/j.jcp.2014.01.035 +V. I. Kolobov,Towards adaptive kinetic-fluid simulations of weakly ionized plasmas.,2012,231,J. Comput. Physics,3,db/journals/jcphy/jcphy231.html#KolobovA12,https://doi.org/10.1016/j.jcp.2011.05.036 +Jae-Hun Jung,On the numerical convergence with the inverse polynomial reconstruction method for the resolution of the Gibbs phenomenon.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#JungS07,https://doi.org/10.1016/j.jcp.2007.01.018 +Marcus J. Grote,Nonreflecting boundary condition for time-dependent multiple scattering.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#GroteK07,https://doi.org/10.1016/j.jcp.2006.06.007 +S. Smolentsev,Induced electric current-based formulation in computations of low magnetic Reynolds number magnetohydrodynamic flows.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#SmolentsevCB10,https://doi.org/10.1016/j.jcp.2009.10.044 +Yu-Hang Tang,Multiscale Universal Interface: A concurrent framework for coupling heterogeneous solvers.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#TangKBLK15,https://doi.org/10.1016/j.jcp.2015.05.004 +Julien Berland,A study of differentiation errors in large-eddy simulations based on the EDQNM theory.,2008,227,J. Comput. Physics,18,db/journals/jcphy/jcphy227.html#BerlandBB08,https://doi.org/10.1016/j.jcp.2008.05.026 +Zarko Bodroski,Gaussian basis implementation of the charge patching method.,2018,368,J. Comput. Physics,,db/journals/jcphy/jcphy368.html#BodroskiVS18,https://doi.org/10.1016/j.jcp.2018.04.032 +Vivek Subramaniam,A plasma-vacuum interface tracking algorithm for magnetohydrodynamic simulations of coaxial plasma accelerators.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#SubramaniamR18,https://doi.org/10.1016/j.jcp.2018.03.041 +O. Balima,Optical tomography reconstruction algorithm with the finite element method: An optimal approach with regularization tools.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#BalimaFR13,https://doi.org/10.1016/j.jcp.2013.04.043 +Mohsen Zayernouri,Fractional Adams-Bashforth/Moulton methods: An application to the fractional Keller-Segel chemotaxis system.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#ZayernouriM16,https://doi.org/10.1016/j.jcp.2016.04.041 +Peter Gerlinger,Multi-dimensional limiting for high-order schemes including turbulence and combustion.,2012,231,J. Comput. Physics,5,db/journals/jcphy/jcphy231.html#Gerlinger12,https://doi.org/10.1016/j.jcp.2011.10.024 +Yan-Lin Shao,A harmonic polynomial cell (HPC) method for 3D Laplace equation with application in marine hydrodynamics.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#ShaoF14,https://doi.org/10.1016/j.jcp.2014.06.021 +Ofer Shamir,"A Hermite-based Shallow Water solver for a thin ""ocean"" over a rotating sphere.",2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#ShamirP14,https://doi.org/10.1016/j.jcp.2014.03.015 +Sébastian Minjeaud,Fourier-spectral element approximation of the ion-electron Braginskii system with application to tokamak edge plasma in divertor configuration.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#MinjeaudP16,https://doi.org/10.1016/j.jcp.2016.05.056 +Stylianos Dosopoulos,Non-conformal and parallel discontinuous Galerkin time domain method for Maxwell's equations: EM analysis of IC packages.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#DosopoulosZL13,https://doi.org/10.1016/j.jcp.2012.11.048 +Zhaohua Yin,A Hermite pseudospectral solver for two-dimensional incompressible flows on infinite domains.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#Yin14,https://doi.org/10.1016/j.jcp.2013.10.039 +Maarten Blommaert,A practical globalization of one-shot optimization for optimal design of tokamak divertors.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#BlommaertDBGR17,https://doi.org/10.1016/j.jcp.2016.10.041 +Wenjun Sun,A multidimensional unified gas-kinetic scheme for radiative transfer equations on unstructured mesh.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#SunJX17,https://doi.org/10.1016/j.jcp.2017.09.036 +Sanghyun Ha,A GPU-accelerated semi-implicit fractional-step method for numerical solutions of incompressible Navier-Stokes equations.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#HaPY18,https://doi.org/10.1016/j.jcp.2017.09.055 +Yiqun Li,Spectral-collocation variational integrators.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#LiWL17,https://doi.org/10.1016/j.jcp.2016.12.007 +Panagiotis Tsilifis,Reduced Wiener Chaos representation of random fields via basis adaptation and projection.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#TsilifisG17,https://doi.org/10.1016/j.jcp.2017.04.009 +Arthur E. Turrell,A Monte Carlo algorithm for degenerate plasmas.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#TurrellSR13,https://doi.org/10.1016/j.jcp.2013.03.052 +Nathaniel Trask,A compatible high-order meshless method for the Stokes equations with applications to suspension flows.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#TraskMH18,https://doi.org/10.1016/j.jcp.2017.10.039 +P. Zhang,Numerical simulation of particle motion using a combined MacCormack and immersed boundary method.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#ZhangB15,https://doi.org/10.1016/j.jcp.2015.03.021 +Grigorios A. Pavliotis,Calculating effective diffusivities in the limit of vanishing molecular diffusion.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#PavliotisSZ09,https://doi.org/10.1016/j.jcp.2008.10.014 +Esteban Ferrer,A high order Discontinuous Galerkin - Fourier incompressible 3D Navier-Stokes solver with rotating sliding meshes.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#FerrerW12,https://doi.org/10.1016/j.jcp.2012.04.039 +Tony W. H. Sheu,Dispersion relation equation preserving FDTD method for nonlinear cubic Schrödinger equation.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#SheuL15,https://doi.org/10.1016/j.jcp.2015.06.023 +Erez Gilad,A fast algorithm for convolution integrals with space and time variant kernels.,2006,216,J. Comput. Physics,1,db/journals/jcphy/jcphy216.html#GiladH06,https://doi.org/10.1016/j.jcp.2005.12.003 +Anthony Beaudoin,From Navier-Stokes to Stokes by means of particle methods.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#BeaudoinHR06,https://doi.org/10.1016/j.jcp.2005.09.014 +Carmelo Juez,2D simulation of granular flow over irregular steep slopes using global and local coordinates.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#JuezMG13,https://doi.org/10.1016/j.jcp.2013.08.002 +B. Finkelstein,The spectral order of accuracy: A new unified tool in the design methodology of excitation-adaptive wave equation FDTD schemes.,2009,228,J. Comput. Physics,24,db/journals/jcphy/jcphy228.html#FinkelsteinK09,https://doi.org/10.1016/j.jcp.2009.08.034 +Chris D. Cantwell,High-order spectral/hp element discretisation for reaction-diffusion problems on surfaces: Application to cardiac electrophysiology.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#CantwellYKPS14,https://doi.org/10.1016/j.jcp.2013.10.019 +Marcus J. Grote,Local nonreflecting boundary condition for time-dependent multiple scattering.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#GroteS11,https://doi.org/10.1016/j.jcp.2011.01.017 +Philipp W. Schroeder,Stabilised dG-FEM for incompressible natural convection flows with boundary and moving interior layers on non-adapted meshes.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#SchroederL17,https://doi.org/10.1016/j.jcp.2017.01.055 +Juan Cheng,Positivity-preserving Lagrangian scheme for multi-material compressible flow.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#ChengS14,https://doi.org/10.1016/j.jcp.2013.09.047 +Dimitrios Giannakis,A spectral Galerkin method for the coupled Orr-Sommerfeld and induction equations for free-surface MHD.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#GiannakisFR09,https://doi.org/10.1016/j.jcp.2008.10.016 +Luisa Beghin,On fractional tempered stable processes and their governing differential equations.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#Beghin15,https://doi.org/10.1016/j.jcp.2014.05.026 +Haitao Liao,Efficient sensitivity analysis method for chaotic dynamical systems.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#Liao16,https://doi.org/10.1016/j.jcp.2016.02.016 +Colin J. Cotter,Embedded discontinuous Galerkin transport schemes with localised limiters.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#CotterK16,https://doi.org/10.1016/j.jcp.2016.02.021 +Xuan Zhou,A new mesh deformation method based on disk relaxation algorithm with pre-displacement and post-smoothing.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#ZhouL13,https://doi.org/10.1016/j.jcp.2012.10.024 +Martin Lampe,Quasineutral particle simulation technique for whistlers.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#LampeJMSG06,https://doi.org/10.1016/j.jcp.2005.09.015 +Li Wang 0036,An asymptotic-preserving scheme for linear kinetic equation with fractional diffusion limit.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#WangY16,https://doi.org/10.1016/j.jcp.2016.02.034 +Mikhail S. Litsarev,A low-rank approach to the computation of path integrals.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#LitsarevO16,https://doi.org/10.1016/j.jcp.2015.11.009 +Vishal Mehra,High velocity impact of metal sphere on thin metallic plates: A comparative smooth particle hydrodynamics study.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#MehraC06,https://doi.org/10.1016/j.jcp.2005.06.020 +Thomas E. Schwartzentruber,A modular particle-continuum numerical method for hypersonic non-equilibrium gas flows.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#SchwartzentruberSB07,https://doi.org/10.1016/j.jcp.2007.01.022 +Shivkumar Chandrasekaran,Minimum Sobolev norm interpolation of scattered derivative data.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#ChandrasekaranG18,https://doi.org/10.1016/j.jcp.2018.03.014 +Xiang Ma,An adaptive hierarchical sparse grid collocation algorithm for the solution of stochastic differential equations.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#MaZ09,https://doi.org/10.1016/j.jcp.2009.01.006 +Natasha Flyer,Rotational transport on a sphere: Local node refinement with radial basis functions.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#FlyerL10,https://doi.org/10.1016/j.jcp.2009.11.016 +Saeed Ovaysi,Direct pore-level modeling of incompressible fluid flow in porous media.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#OvaysiP10,https://doi.org/10.1016/j.jcp.2010.06.028 +Zhi Yang Wong,Sequential implicit nonlinear solver for geothermal simulation.,2018,368,J. Comput. Physics,,db/journals/jcphy/jcphy368.html#WongHT18,https://doi.org/10.1016/j.jcp.2018.04.043 +Wangtao Lu,Babich's expansion and the fast Huygens sweeping method for the Helmholtz wave equation at high frequencies.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#LuQB16,https://doi.org/10.1016/j.jcp.2016.02.048 +Chun-Yu Zhang,Diffuse interface simulation of ternary fluids in contact with solid.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#ZhangDGW16,https://doi.org/10.1016/j.jcp.2015.12.054 +John D. Jakeman,Characterization of discontinuities in high-dimensional stochastic problems on adaptive sparse grids.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#JakemanAX11,https://doi.org/10.1016/j.jcp.2011.02.022 +Alexander Pletzer,Compact cell-centered discretization stencils at fine-coarse block structured grid interfaces.,2014,260,J. Comput. Physics,,db/journals/jcphy/jcphy260.html#PletzerJCS14,https://doi.org/10.1016/j.jcp.2013.12.020 +David G. Dritschel,On the simulation of nearly inviscid two-dimensional turbulence.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#DritschelS09,https://doi.org/10.1016/j.jcp.2009.01.015 +I. S. Chekhovskoy,Numerical approaches to simulation of multi-core fibers.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#ChekhovskoyPSF17,https://doi.org/10.1016/j.jcp.2016.12.056 +Gang Bao,Multiscale modeling and computation of optically manipulated nano devices.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#BaoLL16,https://doi.org/10.1016/j.jcp.2016.04.033 +Irina N. Shishkova,A solution of the Boltzmann equation in the presence of inelastic collisions.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#ShishkovaSX13,https://doi.org/10.1016/j.jcp.2012.07.007 +Jinsong Hua,Numerical simulation of bubble rising in viscous liquid.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#HuaL07,https://doi.org/10.1016/j.jcp.2006.08.008 +Youqi Zheng,A new approach to three-dimensional neutron transport solution based on the method of characteristics and linear axial approximation.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#ZhengCL17,https://doi.org/10.1016/j.jcp.2017.08.026 +Peter A. Graf,A note on the virtual crystal approach to alloy optimization.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#GrafJK09,https://doi.org/10.1016/j.jcp.2009.03.020 +E. Cebrián,Self-sustained current oscillations in the kinetic theory of semiconductor superlattices.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#CebrianBC09,https://doi.org/10.1016/j.jcp.2009.07.008 +S. Z. Husain,Spectrally-accurate algorithm for moving boundary problems for the Navier-Stokes equations.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#HusainF10,https://doi.org/10.1016/j.jcp.2009.11.035 +Guang Lin,Numerical studies of the stochastic Korteweg-de Vries equation.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#LinGK06,https://doi.org/10.1016/j.jcp.2005.08.029 +Changna Lu,The cutoff method for the numerical computation of nonnegative solutions of parabolic PDEs with application to anisotropic diffusion and Lubrication-type equations.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#LuHV13,https://doi.org/10.1016/j.jcp.2013.01.052 +Y. Bazilevs,Isogeometric analysis of Lagrangian hydrodynamics: Axisymmetric formulation in the rz-cylindrical coordinates.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#BazilevsLABS14,https://doi.org/10.1016/j.jcp.2014.01.001 +Kannan N. Premnath,Steady state convergence acceleration of the generalized lattice Boltzmann equation with forcing term through preconditioning.,2009,228,J. Comput. Physics,3,db/journals/jcphy/jcphy228.html#PremnathPB09,https://doi.org/10.1016/j.jcp.2008.09.028 +E. Vergnault,A time-reversal lattice Boltzmann method.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#VergnaultMS11,https://doi.org/10.1016/j.jcp.2011.07.014 +Matteo Bernardini,A general strategy for the optimization of Runge-Kutta schemes for wave propagation phenomena.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#BernardiniP09,https://doi.org/10.1016/j.jcp.2009.02.032 +Qin Sheng,Stability of a modified Peaceman-Rachford method for the paraxial Helmholtz equation on adaptive grids.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#ShengS16,https://doi.org/10.1016/j.jcp.2016.08.040 +Glen Hansen,A Jacobian-free Newton Krylov method for mortar-discretized thermomechanical contact problems.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#Hansen11,https://doi.org/10.1016/j.jcp.2011.04.038 +Kailiang Wu,High-order accurate physical-constraints-preserving finite difference WENO schemes for special relativistic hydrodynamics.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#WuT15,https://doi.org/10.1016/j.jcp.2015.06.012 +Zhongqiang Zhang,Numerical solution of the Stratonovich- and Ito-Euler equations: Application to the stochastic piston problem.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#ZhangYLK13,https://doi.org/10.1016/j.jcp.2012.11.017 +Shengyang Wu,A multi-mesh finite element method for phase-field based photonic band structure optimization.,2018,357,J. Comput. Physics,,db/journals/jcphy/jcphy357.html#WuHZ18,https://doi.org/10.1016/j.jcp.2017.12.031 +Sang-Hyeon Lee,Cancellation problem of preconditioning method at low Mach numbers.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#Lee07a,https://doi.org/10.1016/j.jcp.2007.04.001 +Toon Demeester,Stability analysis of a partitioned iterative method for steady free surface flow.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#DemeesterDV18,https://doi.org/10.1016/j.jcp.2017.10.053 +Alexander Patronis,Multiscale simulation of non-isothermal microchannel gas flows.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#PatronisL14,https://doi.org/10.1016/j.jcp.2014.04.004 +Matthys M. Botha,Solving the volume integral equations of electromagnetic scattering.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#Botha06,https://doi.org/10.1016/j.jcp.2006.02.004 +Guoping Xia,Consistent properties reconstruction on adaptive Cartesian meshes for complex fluids computations.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#XiaLM07,https://doi.org/10.1016/j.jcp.2007.01.034 +F. G. Fuchs,High order well-balanced finite volume schemes for simulating wave propagation in stratified magnetic atmospheres.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#FuchsMMRW10,https://doi.org/10.1016/j.jcp.2010.01.038 +Xiaoliang Wan,A sharp error estimate for the fast Gauss transform.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#WanK06,https://doi.org/10.1016/j.jcp.2006.04.016 +Chieh-Sen Huang,A semi-Lagrangian finite difference WENO scheme for scalar nonlinear conservation laws.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#HuangAH16,https://doi.org/10.1016/j.jcp.2016.06.027 +Mathias Winkel,A high-order Boris integrator.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#WinkelSR15,https://doi.org/10.1016/j.jcp.2015.04.022 +Limei Li,Alternating direction implicit Galerkin finite element method for the two-dimensional fractional diffusion-wave equation.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#LiXL13,https://doi.org/10.1016/j.jcp.2013.08.031 +Ganesh Natarajan,IDeC(k): A new velocity reconstruction algorithm on arbitrarily polygonal staggered meshes.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#NatarajanS11,https://doi.org/10.1016/j.jcp.2011.04.039 +David Sidilkover,Towards unification of the Vorticity Confinement and Shock Capturing (TVD and ENO/WENO) methods.,2018,358,J. Comput. Physics,,db/journals/jcphy/jcphy358.html#Sidilkover18,https://doi.org/10.1016/j.jcp.2017.12.033 +Ying Chen,Efficient energy stable schemes for isotropic and strongly anisotropic Cahn-Hilliard systems with the Willmore regularization.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#ChenLSWW18,https://doi.org/10.1016/j.jcp.2018.03.024 +Misun Min,A spectral-element discontinuous Galerkin lattice Boltzmann method for nearly incompressible flows.,2011,230,J. Comput. Physics,1,db/journals/jcphy/jcphy230.html#MinL11,https://doi.org/10.1016/j.jcp.2010.09.024 +Konstantin Lipnikov,Mimetic discretization of two-dimensional magnetic diffusion equations.,2013,247,J. Comput. Physics,,db/journals/jcphy/jcphy247.html#LipnikovRN13,https://doi.org/10.1016/j.jcp.2013.03.050 +Kenji Miki,Probabilistic models and uncertainty quantification for the ionization reaction rate of atomic Nitrogen.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#MikiPPP12,https://doi.org/10.1016/j.jcp.2012.01.005 +Eugene Kashdan,High-order accurate modeling of electromagnetic wave propagation across media - Grid conforming bodies.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#KashdanT06,https://doi.org/10.1016/j.jcp.2006.03.009 +Rodney O. Fox,Conditional hyperbolic quadrature method of moments for kinetic equations.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#FoxLV18,https://doi.org/10.1016/j.jcp.2018.03.025 +M. F. Eggl,A gradient-based framework for maximizing mixing in binary fluids.,2018,368,J. Comput. Physics,,db/journals/jcphy/jcphy368.html#EgglS18,https://doi.org/10.1016/j.jcp.2018.04.030 +Guillaume Fournier,A novel outflow boundary condition for incompressible laminar wall-bounded flows.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#FournierGP08,https://doi.org/10.1016/j.jcp.2008.03.038 +Simon Bogner,Boundary conditions for free interfaces with the lattice Boltzmann method.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#BognerAR15,https://doi.org/10.1016/j.jcp.2015.04.055 +F. Valentini,A hybrid-Vlasov model based on the current advance method for the simulation of collisionless magnetized plasma.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#ValentiniTCHM07,https://doi.org/10.1016/j.jcp.2007.01.001 +Liang Xie,Efficient mesh motion using radial basis functions with volume grid points reduction algorithm.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#XieL17,https://doi.org/10.1016/j.jcp.2017.07.042 +Yair Moryossef,Unconditionally positive implicit procedure for two-equation turbulence models: Application to k-χ9* turbulence models.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#MoryossefL06,https://doi.org/10.1016/j.jcp.2006.05.001 +Yohsuke Imai,Conservative form of interpolated differential operator scheme for compressible and incompressible fluid dynamics.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#ImaiAT08,https://doi.org/10.1016/j.jcp.2007.11.031 +Jeroen Wackers,Can adaptive grid refinement produce grid-independent solutions for incompressible flows?,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#WackersDGLQVPL17,https://doi.org/10.1016/j.jcp.2017.04.077 +Xian Luo,Smoothed profile method for particulate flows: Error analysis and simulations.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#LuoMK09,https://doi.org/10.1016/j.jcp.2008.11.006 +M. Al-Marouf,A versatile embedded boundary adaptive mesh method for compressible flow in complex geometry.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#Al-MaroufS17,https://doi.org/10.1016/j.jcp.2017.02.044 +Timothy M. Schaerf,On contour crossings in contour-advective simulations - part 1 - algorithm for detection and quantification.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#SchaerfM12,https://doi.org/10.1016/j.jcp.2011.09.015 +Massimo Cassiani,An efficient algorithm for scalar PDF modelling in incompressible turbulent flow* numerical analysis with evaluation of IEM and IECM micro-mixing models.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#CassianiRAG07,https://doi.org/10.1016/j.jcp.2006.09.023 +Gunnar Wendt,Partitioned coupling strategies for multi-physically coupled radiative heat transfer problems.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#WendtED15,https://doi.org/10.1016/j.jcp.2015.07.063 +Jean-Luc Vay,Numerical methods for instability mitigation in the modeling of laser wakefield accelerators in a Lorentz-boosted frame.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#VayGCG11,https://doi.org/10.1016/j.jcp.2011.04.003 +Gaofeng Wang,An overset grid method for large eddy simulation of turbomachinery stages.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#WangDPDMG14,https://doi.org/10.1016/j.jcp.2014.06.006 +Qianlong Liu,Heterogeneous mixtures of elliptical particles: Directly resolving local and global properties and responses.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#LiuR13,https://doi.org/10.1016/j.jcp.2012.09.039 +Giulio Ciraolo,A computational method for the Helmholtz equation in unbounded domains based on the minimization of an integral functional.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#CiraoloGS13,https://doi.org/10.1016/j.jcp.2013.03.047 +Kazem Hejranfar,On the outflow conditions for spectral solution of the viscous blunt-body problem.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#HejranfarEN09,https://doi.org/10.1016/j.jcp.2009.02.010 +Patrick Ciarlet Jr.,Continuous Galerkin methods for solving the time-dependent Maxwell equations in 3D geometries.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#CiarletJ07,https://doi.org/10.1016/j.jcp.2007.05.029 +Francis X. Giraldo,High-order triangle-based discontinuous Galerkin methods for hyperbolic equations on a rotating sphere.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#Giraldo06,https://doi.org/10.1016/j.jcp.2005.09.029 +F. Doisneau,Eulerian multi-fluid models for the simulation of dynamics and coalescence of particles in solid propellant combustion.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#DoisneauLMDM13,https://doi.org/10.1016/j.jcp.2012.09.025 +Adel M. Benselama,A 1D-3D mixed method for the numerical simulation of blast waves in confined geometries.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#BenselamaWM09,https://doi.org/10.1016/j.jcp.2009.06.010 +Miles Detrixhe,A parallel fast sweeping method for the Eikonal equation.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#DetrixheGM13,https://doi.org/10.1016/j.jcp.2012.11.042 +Mechthild Thalhammer,A numerical study of adaptive space and time discretisations for Gross-Pitaevskii equations.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#ThalhammerA12,https://doi.org/10.1016/j.jcp.2012.05.031 +Lijie Mei,The construction of arbitrary order ERKN methods based on group theory for solving oscillatory Hamiltonian systems with applications.,2016,323,J. Comput. Physics,,db/journals/jcphy/jcphy323.html#MeiW16,https://doi.org/10.1016/j.jcp.2016.07.033 +G. S. Payette,On the roles of minimization and linearization in least-squares finite element models of nonlinear boundary-value problems.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#PayetteR11,https://doi.org/10.1016/j.jcp.2011.02.002 +K. A. Stephani,A non-equilibrium surface reservoir approach for hybrid DSMC/Navier-Stokes particle generation.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#StephaniGV13,https://doi.org/10.1016/j.jcp.2012.08.017 +Yukun Guo,A time domain sampling method for inverse acoustic scattering problems.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#GuoHHLL16,https://doi.org/10.1016/j.jcp.2016.03.046 +Haifeng Wang,Weak second-order splitting schemes for Lagrangian Monte Carlo particle methods for the composition PDF/FDF transport equations.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#WangPP10,https://doi.org/10.1016/j.jcp.2009.11.012 +Varun Shankar,Mesh-free semi-Lagrangian methods for transport on a sphere using radial basis functions.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#ShankarW18,https://doi.org/10.1016/j.jcp.2018.04.007 +Kushal S. Kedia,A second-order coupled immersed boundary-SAMR construction for chemically reacting flow over a heat-conducting Cartesian grid-conforming solid.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#KediaSRNG14,https://doi.org/10.1016/j.jcp.2014.04.019 +Gibbeum Lee,Semi-analytical Karhunen-Loeve representation of irregular waves based on the prolate spheroidal wave functions.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#LeeC18,https://doi.org/10.1016/j.jcp.2017.09.023 +Beatrice Roget,Robust and efficient overset grid assembly for partitioned unstructured meshes.,2014,260,J. Comput. Physics,,db/journals/jcphy/jcphy260.html#RogetS14,https://doi.org/10.1016/j.jcp.2013.12.021 +Heng Hu,A bridging technique to analyze the influence of boundary conditions on instability patterns.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#HuDP11,https://doi.org/10.1016/j.jcp.2011.01.044 +Weiqing Ren,Analytical and numerical study of coupled atomistic-continuum methods for fluids.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#Ren07,https://doi.org/10.1016/j.jcp.2007.09.007 +Carl Erik Wasberg,Variational multiscale turbulence modelling in a high order spectral element method.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#WasbergGRA09,https://doi.org/10.1016/j.jcp.2009.06.029 +Takashi Ichinomiya,Temporal coarse-graining method to simulate the movement of atoms.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#Ichinomiya13,https://doi.org/10.1016/j.jcp.2013.05.049 +Weihua Deng,Numerical algorithm for the time fractional Fokker-Planck equation.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#Deng07,https://doi.org/10.1016/j.jcp.2007.09.015 +Xiang Chen,Passing waves from atomistic to continuum.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#ChenDXMC18,https://doi.org/10.1016/j.jcp.2017.10.038 +Thanh Tu Bui,A fast algorithm for modeling multiple bubbles dynamics.,2006,216,J. Comput. Physics,2,db/journals/jcphy/jcphy216.html#BuiOKKH06,https://doi.org/10.1016/j.jcp.2005.12.009 +Weizhu Bao,Efficient and spectrally accurate numerical methods for computing ground and first excited states in Bose-Einstein condensates.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#BaoCL06,https://doi.org/10.1016/j.jcp.2006.04.019 +V. Zheligovsky,The Monge-Ampère equation: Various forms and numerical solution.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#ZheligovskyPF10,https://doi.org/10.1016/j.jcp.2010.03.025 +Masashi Kanamori,Shock wave detection in two-dimensional flow based on the theory of characteristics from CFD data.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#KanamoriS11,https://doi.org/10.1016/j.jcp.2011.01.007 +Dirk M. Luchtenburg,Long-time uncertainty propagation using generalized polynomial chaos and flow map composition.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#LuchtenburgBR14,https://doi.org/10.1016/j.jcp.2014.06.029 +Shu-Lin Wu,A second-order parareal algorithm for fractional PDEs.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#Wu16,https://doi.org/10.1016/j.jcp.2015.12.007 +Stéphane Del Pino,Metric-based mesh adaptation for 2D Lagrangian compressible flows.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#Pino11,https://doi.org/10.1016/j.jcp.2010.11.030 +Yasuhiro Idomura,A new hybrid kinetic electron model for full-f gyrokinetic simulations.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#Idomura16,https://doi.org/10.1016/j.jcp.2016.02.057 +Hilary Weller,Mesh adaptation on the sphere using optimal transport and the numerical solution of a Monge-Ampère type equation.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#WellerBBC16,https://doi.org/10.1016/j.jcp.2015.12.018 +Johan Larsson,Blending technique for compressible inflow turbulence: Algorithm localization and accuracy assessment.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#Larsson09,https://doi.org/10.1016/j.jcp.2008.10.027 +Han Men,Bandgap optimization of two-dimensional photonic crystals using semidefinite programming and subspace methods.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#MenNFPP10,https://doi.org/10.1016/j.jcp.2010.01.023 +Karim Shariff,A contour dynamics algorithm for axisymmetric flow.,2008,227,J. Comput. Physics,21,db/journals/jcphy/jcphy227.html#ShariffLF08,https://doi.org/10.1016/j.jcp.2007.10.005 +P. J. A. Janssen,A boundary-integral model for drop deformation between two parallel plates with non-unit viscosity ratio drops.,2008,227,J. Comput. Physics,20,db/journals/jcphy/jcphy227.html#JanssenA08,https://doi.org/10.1016/j.jcp.2008.06.027 +Susanna Kube,Monte Carlo sampling of Wigner functions and surface hopping quantum dynamics.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#KubeLW09,https://doi.org/10.1016/j.jcp.2008.11.016 +Pavel B. Bochev,Optimization-based remap and transport: A divide and conquer strategy for feature-preserving discretizations.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#BochevRP14,https://doi.org/10.1016/j.jcp.2013.03.057 +Robert Prosser,Towards improved boundary conditions for the DNS and LES of turbulent subsonic flows.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#Prosser07,https://doi.org/10.1016/j.jcp.2006.09.006 +Patrick Jenny,Unconditionally convergent nonlinear solver for hyperbolic conservation laws with S-shaped flux functions.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#JennyTL09,https://doi.org/10.1016/j.jcp.2009.06.032 +Martin Campos Pinto,Noiseless Vlasov-Poisson simulations with linearly transformed particles.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#PintoSFGL14,https://doi.org/10.1016/j.jcp.2014.06.032 +Søren Taverniers,Noise propagation in hybrid models of nonlinear systems: The Ginzburg-Landau equation.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#TaverniersAT14,https://doi.org/10.1016/j.jcp.2014.01.015 +Barbara Re 0002,An interpolation-free ALE scheme for unsteady inviscid flows computations with large boundary displacements over three-dimensional adaptive grids.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#ReDG17,https://doi.org/10.1016/j.jcp.2017.03.034 +Grégoire Pont,Multiple-correction hybrid k-exact schemes for high-order compressible RANS-LES simulations on fully unstructured grids.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#PontBCMR17,https://doi.org/10.1016/j.jcp.2017.08.036 +Bruce I. Cohen,A grid-based binary model for coulomb collisions in plasmas.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#CohenDS13,https://doi.org/10.1016/j.jcp.2012.08.046 +Ercília Sousa,Finite difference approximations for a fractional advection diffusion problem.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#Sousa09,https://doi.org/10.1016/j.jcp.2009.02.011 +Gang Bao,An h-adaptive finite element solver for the calculations of the electronic structures.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#BaoHL12,https://doi.org/10.1016/j.jcp.2012.04.002 +Akbar Mohebbi,A high-order and unconditionally stable scheme for the modified anomalous fractional sub-diffusion equation with a nonlinear source term.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#MohebbiAD13,https://doi.org/10.1016/j.jcp.2012.11.052 +Rachel Nuter,Suppressing the numerical Cherenkov radiation in the Yee numerical scheme.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#NuterT16,https://doi.org/10.1016/j.jcp.2015.10.057 +C. S. Wu,Simulation of wave-structure interaction by hybrid Cartesian/immersed boundary and arbitrary Lagrangian-Eulerian finite-element method.,2013,254,J. Comput. Physics,,db/journals/jcphy/jcphy254.html#WuYC13,https://doi.org/10.1016/j.jcp.2013.07.014 +Alireza Mazaheri,A first-order hyperbolic system approach for dispersion.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#MazaheriRN16,https://doi.org/10.1016/j.jcp.2016.06.001 +Chohong Min,A second order accurate level set method on non-graded adaptive cartesian grids.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#MinG07a,https://doi.org/10.1016/j.jcp.2006.11.034 +Matti Leinonen,Application of stochastic Galerkin FEM to the complete electrode model of electrical impedance tomography.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#LeinonenHH14,https://doi.org/10.1016/j.jcp.2014.03.011 +Nam Mai-Duy,Compact local integrated-RBF approximations for second-order elliptic differential problems.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#Mai-DuyT11,https://doi.org/10.1016/j.jcp.2011.03.002 +Peng Zhang 0014,A weighted essentially non-oscillatory numerical scheme for a multi-class traffic flow model on an inhomogeneous highway.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#ZhangWS06,https://doi.org/10.1016/j.jcp.2005.07.019 +Hiroshi Terashima,"Corrigendum to ""Approach for simulating gas-liquid-like flows under supercritical pressures using a high-order central differencing scheme"" [J. Comput. Phys. 231(20) (2012) 6907-6923].",2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#TerashimaK15,https://doi.org/10.1016/j.jcp.2014.11.013 +Nail A. Gumerov,A scalar potential formulation and translation theory for the time-harmonic Maxwell equations.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#GumerovD07,https://doi.org/10.1016/j.jcp.2006.11.025 +Zhifang Du,A two-stage fourth order time-accurate discretization for Lax-Wendroff type flow solvers II. High order numerical boundary conditions.,2018,369,J. Comput. Physics,,db/journals/jcphy/jcphy369.html#DuL18a,https://doi.org/10.1016/j.jcp.2018.05.002 +Linhai Qiu,On thin gaps between rigid bodies two-way coupled to incompressible flow.,2015,292,J. Comput. Physics,,db/journals/jcphy/jcphy292.html#QiuYF15,https://doi.org/10.1016/j.jcp.2015.03.027 +Jeroen A. S. Witteveen,Subcell resolution in simplex stochastic collocation for spatial discontinuities.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#WitteveenI13a,https://doi.org/10.1016/j.jcp.2013.05.035 +Jason E. Hicken,Adjoint consistency analysis of residual-based variational multiscale methods.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#HickenLSO13,https://doi.org/10.1016/j.jcp.2013.07.039 +N. T. P. Le,A triangular discontinuous Galerkin method for non-Newtonian implicit constitutive models of rarefied and microscale gases.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#LeXM14,https://doi.org/10.1016/j.jcp.2014.05.013 +Klaus Huthmacher,A split-step method to include electron-electron collisions via Monte Carlo in multiple rate equation simulations.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#HuthmacherMRG16,https://doi.org/10.1016/j.jcp.2016.06.043 +Yossi Farjoun,An exactly conservative particle method for one dimensional scalar conservation laws.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#FarjounS09,https://doi.org/10.1016/j.jcp.2009.04.013 +Jeroen A. S. Witteveen,Effect of randomness on multi-frequency aeroelastic responses resolved by Unsteady Adaptive Stochastic Finite Elements.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#WitteveenB09,https://doi.org/10.1016/j.jcp.2009.06.013 +Ethan Levien,Coupling sample paths to the thermodynamic limit in Monte Carlo estimators with applications to gene expression.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#LevienB17,https://doi.org/10.1016/j.jcp.2017.05.050 +Wing-Cheong Lo,A robust and efficient method for steady state patterns in reaction-diffusion systems.,2012,231,J. Comput. Physics,15,db/journals/jcphy/jcphy231.html#LoCWN12,https://doi.org/10.1016/j.jcp.2012.04.006 +Fabian Denner,Pressure-based algorithm for compressible interfacial flows with acoustically-conservative interface discretisation.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#DennerXW18,https://doi.org/10.1016/j.jcp.2018.04.028 +Claudio E. Torres,Fast radial basis function interpolation with Gaussians by localization and iteration.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#TorresB09,https://doi.org/10.1016/j.jcp.2009.03.007 +Santiago Badia,Finite element approximation of nematic liquid crystal flows using a saddle-point structure.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#BadiaGG11,https://doi.org/10.1016/j.jcp.2010.11.033 +Jian Zhang,A phase field model for vesicle-substrate adhesion.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#ZhangDD09,https://doi.org/10.1016/j.jcp.2009.07.027 +Bin Zhang,A short note on the counter-intuitive spurious behaviors in stiff reacting flow.,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#ZhangW15,https://doi.org/10.1016/j.jcp.2015.03.017 +Kei W. Müller,Resolution of sub-element length scales in Brownian dynamics simulations of biopolymer networks with geometrically exact beam finite elements.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#MullerMW15,https://doi.org/10.1016/j.jcp.2015.09.038 +Stefan Hickel,An adaptive local deconvolution method for implicit LES.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#HickelAD06,https://doi.org/10.1016/j.jcp.2005.08.017 +Noele Peres,A 3D pseudospectral method for cylindrical coordinates. Application to the simulations of rotating cavity flows.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#PeresPS12,https://doi.org/10.1016/j.jcp.2012.04.033 +Shuai Wang,A positivity-preserving pyramid scheme for anisotropic diffusion problems on general hexahedral meshes with nonplanar cell faces.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#WangHY18,https://doi.org/10.1016/j.jcp.2018.05.026 +Liuyan Lu,Computationally efficient implementation of combustion chemistry in parallel PDF calculations.,2009,228,J. Comput. Physics,15,db/journals/jcphy/jcphy228.html#LuLRP09,https://doi.org/10.1016/j.jcp.2009.04.037 +Miles Detrixhe,Hybrid massively parallel fast sweeping method for static Hamilton-Jacobi equations.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#DetrixheG16,https://doi.org/10.1016/j.jcp.2016.06.023 +Xiao-Xing Su,A matrix-exponential decomposition based time-domain method for calculating the defect states of scalar waves in two-dimensional periodic structures.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#SuWZ17,https://doi.org/10.1016/j.jcp.2017.02.042 +Alexandra Claisse,A nonlinear PDE model for reconstructing a regular surface from sampled data using a level set formulation on triangular meshes.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#ClaisseF11,https://doi.org/10.1016/j.jcp.2011.02.039 +Yingda Cheng,Energy-conserving discontinuous Galerkin methods for the Vlasov-Ampère system.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#ChengCZ14a,https://doi.org/10.1016/j.jcp.2013.09.013 +F. Vidal-Codina,A model and variance reduction method for computing statistical outputs of stochastic elliptic partial differential equations.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#Vidal-CodinaNGP15,https://doi.org/10.1016/j.jcp.2015.05.041 +Luis Cueto-Felgueroso,A time-adaptive finite volume method for the Cahn-Hilliard and Kuramoto-Sivashinsky equations.,2008,227,J. Comput. Physics,24,db/journals/jcphy/jcphy227.html#Cueto-FelguerosoP08,https://doi.org/10.1016/j.jcp.2008.07.024 +M. Pino Martín,A bandwidth-optimized WENO scheme for the effective direct numerical simulation of compressible turbulence.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#MartinTWW06,https://doi.org/10.1016/j.jcp.2006.05.009 +S. Kumar Ranjith,No-slip boundary condition in finite-size dissipative particle dynamics.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#RanjithPV13,https://doi.org/10.1016/j.jcp.2012.07.046 +Nathaniel R. Morgan,A point-centered arbitrary Lagrangian Eulerian hydrodynamic approach for tetrahedral meshes.,2015,290,J. Comput. Physics,,db/journals/jcphy/jcphy290.html#MorganWBCCW15a,https://doi.org/10.1016/j.jcp.2015.02.024 +Weitao Chen,Lax-Friedrichs fast sweeping methods for steady state problems for hyperbolic conservation laws.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#ChenCK13,https://doi.org/10.1016/j.jcp.2012.10.008 +J. Wu,A solution-adaptive lattice Boltzmann method for two-dimensional incompressible viscous flows.,2011,230,J. Comput. Physics,6,db/journals/jcphy/jcphy230.html#WuS11,https://doi.org/10.1016/j.jcp.2010.12.013 +Alexandros I. Dimitriadis,Generalized non-local surface susceptibility model and Fresnel coefficients for the characterization of periodic metafilms with bianisotropic scatterers.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#DimitriadisKTH15,https://doi.org/10.1016/j.jcp.2014.10.028 +William M. Putman,Finite-volume transport on various cubed-sphere grids.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#PutmanL07,https://doi.org/10.1016/j.jcp.2007.07.022 +Andreas Haselbacher,Slow-time acceleration for modeling multiple-time-scale problems.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#HaselbacherNMM10,https://doi.org/10.1016/j.jcp.2009.09.029 +Etelvina Javierre,A level set method for three dimensional vector Stefan problems: Dissolution of stoichiometric particles in multi-component alloys.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#JavierreVVS07,https://doi.org/10.1016/j.jcp.2007.01.038 +Taku Nonomura,Effects of difference scheme type in high-order weighted compact nonlinear schemes.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#NonomuraF09,https://doi.org/10.1016/j.jcp.2009.02.018 +Noah D. Brenowitz,Nonlinear Laplacian spectral analysis of Rayleigh-Bénard convection.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#BrenowitzGM16,https://doi.org/10.1016/j.jcp.2016.03.051 +Christopher L. MacDonald,Efficient computation of the Grünwald-Letnikov fractional diffusion derivative using adaptive time step memory.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#MacDonaldBSS15,https://doi.org/10.1016/j.jcp.2015.04.048 +Xing Ji,A family of high-order gas-kinetic schemes and its comparison with Riemann solver based high-order methods.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#JiZSX18,https://doi.org/10.1016/j.jcp.2017.11.036 +Giacomo Dimarco,An efficient numerical method for solving the Boltzmann equation in multidimensions.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#DimarcoLNR18,https://doi.org/10.1016/j.jcp.2017.10.010 +Sander Rhebergen,Discontinuous Galerkin finite element methods for hyperbolic nonconservative partial differential equations.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#RhebergenBV08,https://doi.org/10.1016/j.jcp.2007.10.007 +Ratnesh K. Shukla,Nonlinear preconditioning for efficient and accurate interface capturing in simulation of multicomponent compressible flows.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#Shukla14,https://doi.org/10.1016/j.jcp.2014.07.034 +Vladimir M. Sadovskii,Modeling of wave processes in blocky media with porous and fluid-saturated interlayers.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#SadovskiiSL17,https://doi.org/10.1016/j.jcp.2017.06.001 +M. Kazolea,Numerical treatment of wave breaking on unstructured finite volume approximations for extended Boussinesq-type equations.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#KazoleaDS14,https://doi.org/10.1016/j.jcp.2014.01.030 +Maciej Balajewicz,Reduction of nonlinear embedded boundary models for problems with evolving interfaces.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#BalajewiczF14,https://doi.org/10.1016/j.jcp.2014.06.038 +Mark A. Goffin,Minimising the error in eigenvalue calculations involving the Boltzmann transport equation using goal-based adaptivity on unstructured meshes.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#GoffinBBPES13,https://doi.org/10.1016/j.jcp.2012.12.035 +Hamid Alemi Ardakani,Shallow-water sloshing in a moving vessel with variable cross-section and wetting-drying using an extension of George's well-balanced finite volume solver.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#ArdakaniBT16,https://doi.org/10.1016/j.jcp.2016.03.037 +J. P. Pontaza,A least-squares finite element formulation for unsteady incompressible flows with improved velocity-pressure coupling.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#Pontaza06,https://doi.org/10.1016/j.jcp.2006.01.013 +Andrea Mignone,High-order conservative finite difference GLM-MHD schemes for cell-centered MHD.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#MignoneTB10,https://doi.org/10.1016/j.jcp.2010.04.013 +Tomi Huttunen,Solving Maxwell's equations using the ultra weak variational formulation.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#HuttunenMM07,https://doi.org/10.1016/j.jcp.2006.10.016 +Alberto Guardone,Finite element/volume solution to axisymmetric conservation laws.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#GuardoneV07,https://doi.org/10.1016/j.jcp.2006.08.018 +Lei Bao,A mass and momentum flux-form high-order discontinuous Galerkin shallow water model on the cubed-sphere.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#BaoNT14,https://doi.org/10.1016/j.jcp.2013.11.033 +Fei Song 0003,A combined finite element and oversampling multiscale Petrov-Galerkin method for the multiscale elliptic problems with singularities.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#SongDW16,https://doi.org/10.1016/j.jcp.2015.11.013 +X. Liu,Extension of Kleiser and Schumann's influence-matrix method for generalized velocity boundary conditions.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#Liu11,https://doi.org/10.1016/j.jcp.2011.07.016 +Jiang Wan,A probabilistic graphical model based stochastic input model construction.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#WanZ14,https://doi.org/10.1016/j.jcp.2014.05.002 +J. Benoit,Source identification in time domain electromagnetics.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#BenoitCB12,https://doi.org/10.1016/j.jcp.2012.01.020 +Tarek I. Zohdi,Computational modeling of electrically-driven deposition of ionized polydisperse particulate powder mixtures in advanced manufacturing processes.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#Zohdi17,https://doi.org/10.1016/j.jcp.2017.03.044 +George Ilhwan Park,Numerical aspects and implementation of a two-layer zonal wall model for LES of compressible turbulent flows on unstructured meshes.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#ParkM16,https://doi.org/10.1016/j.jcp.2015.11.010 +Jean-Antoine Désidéri,Nested and self-adaptive Bézier parameterizations for shape optimization.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#DesideriMJ07,https://doi.org/10.1016/j.jcp.2006.12.016 +Nathan D. King,Solving variational problems and partial differential equations that map between manifolds via the closest point method.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#KingR17,https://doi.org/10.1016/j.jcp.2017.02.019 +Xiaomin Pan,Efficient monolithic projection method for time-dependent conjugate heat transfer problems.,2018,369,J. Comput. Physics,,db/journals/jcphy/jcphy369.html#PanLC18,https://doi.org/10.1016/j.jcp.2018.05.010 +Xuliang Liu,A new class of central compact schemes with spectral-like resolution I: Linear schemes.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#LiuZZS13,https://doi.org/10.1016/j.jcp.2013.04.014 +Jeffrey W. Banks,A stable FSI algorithm for light rigid bodies in compressible flow.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#BanksHS13,https://doi.org/10.1016/j.jcp.2013.02.050 +Brendan B. Godfrey,Suppressing the numerical Cherenkov instability in FDTD PIC codes.,2014,267,J. Comput. Physics,,db/journals/jcphy/jcphy267.html#GodfreyV14,https://doi.org/10.1016/j.jcp.2014.02.022 +Yanlai Chen,An adaptive high-order discontinuous Galerkin method with error control for the Hamilton-Jacobi equations. Part I: The one-dimensional steady state case.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#ChenC07,https://doi.org/10.1016/j.jcp.2007.05.003 +Taehun Lee,A lattice Boltzmann algorithm for calculation of the laminar jet diffusion flame.,2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#LeeLC06,https://doi.org/10.1016/j.jcp.2005.10.021 +Vitaliy Gyrya,The arbitrary order mimetic finite difference method for a diffusion equation with a non-symmetric diffusion tensor.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#GyryaL17,https://doi.org/10.1016/j.jcp.2017.07.019 +Hadi Hajibeygi,Iterative multiscale finite-volume method.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#HajibeygiBHJ08,https://doi.org/10.1016/j.jcp.2008.06.013 +David Stevens,The use of PDE centres in the local RBF Hermitian method for 3D convective-diffusion problems.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#StevensPLM09,https://doi.org/10.1016/j.jcp.2009.03.025 +Weizhu Bao,A uniformly accurate multiscale time integrator spectral method for the Klein-Gordon-Zakharov system in the high-plasma-frequency limit regime.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#BaoZ16,https://doi.org/10.1016/j.jcp.2016.09.046 +Hayder Salman,A time-splitting pseudospectral method for the solution of the Gross-Pitaevskii equations using spherical harmonics with generalised-Laguerre basis functions.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#Salman14,https://doi.org/10.1016/j.jcp.2013.10.009 +V. V. Altsybeyev,Application of Gauss's law space-charge limited emission model in iterative particle tracking method.,2016,324,J. Comput. Physics,,db/journals/jcphy/jcphy324.html#AltsybeyevP16,https://doi.org/10.1016/j.jcp.2016.08.007 +Houde Han,Adaptive artificial boundary condition for the two-level Schrödinger equation with conical crossings.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#HanZ11,https://doi.org/10.1016/j.jcp.2010.11.004 +Narsimha R. Rapaka,An immersed boundary method for direct and large eddy simulation of stratified flows in complex geometry.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#RapakaS16,https://doi.org/10.1016/j.jcp.2016.06.036 +Sungjin Kwon,An efficient three-dimensional adaptive quasicontinuum method using variable-node elements.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#KwonLPSLI09,https://doi.org/10.1016/j.jcp.2009.03.028 +V. P. Kolgan,Application of the principle of minimizing the derivative to the construction of finite-difference schemes for computing discontinuous solutions of gas dynamics.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#Kolgan11,https://doi.org/10.1016/j.jcp.2010.12.033 +T. Sakai,An application of one-sided Jacobi polynomials for spectral modeling of vector fields in polar coordinates.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#SakaiR09,https://doi.org/10.1016/j.jcp.2009.06.017 +Lianhua Zhu,Performance evaluation of the general characteristics based off-lattice Boltzmann scheme and DUGKS for low speed continuum flows.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#ZhuWG17,https://doi.org/10.1016/j.jcp.2016.11.051 +Zhiqiang Sheng,An improved monotone finite volume scheme for diffusion equation on polygonal meshes.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#ShengY12,https://doi.org/10.1016/j.jcp.2012.01.015 +Steven M. Kast,Output-based mesh adaptation for high order Navier-Stokes simulations on deformable domains.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#KastF13,https://doi.org/10.1016/j.jcp.2013.06.007 +Omer San,A coarse-grid projection method for accelerating incompressible flow computations.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#SanS13,https://doi.org/10.1016/j.jcp.2012.09.005 +Jianping Xiao,RBF-vortex methods for the barotropic vorticity equation on a sphere.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#XiaoWB15,https://doi.org/10.1016/j.jcp.2015.01.005 +Zhi-Feng Liu,Finite analytic numerical method for two-dimensional fluid flow in heterogeneous porous media.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#LiuW13,https://doi.org/10.1016/j.jcp.2012.11.001 +Kevin C. Viner,A steady-state solver and stability calculator for nonlinear internal wave flows.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#VinerED13,https://doi.org/10.1016/j.jcp.2013.02.007 +Jacques Blum,Reconstruction of the equilibrium of the plasma in a Tokamak and identification of the current density profile in real time.,2012,231,J. Comput. Physics,3,db/journals/jcphy/jcphy231.html#BlumBF12,https://doi.org/10.1016/j.jcp.2011.04.005 +Piotr Boronski,Spectral method for matching exterior and interior elliptic problems.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#Boronski07,https://doi.org/10.1016/j.jcp.2006.12.005 +Jean-Luc Guermond,A splitting method for incompressible flows with variable density based on a pressure Poisson equation.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#GuermondS09,https://doi.org/10.1016/j.jcp.2008.12.036 +Graeme Fairweather,Compact optimal quadratic spline collocation methods for the Helmholtz equation.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#FairweatherKM11,https://doi.org/10.1016/j.jcp.2010.12.041 +Emilie Blanc,Biot-JKD model: Simulation of 1D transient poroelastic waves with fractional derivatives.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#BlancCL13,https://doi.org/10.1016/j.jcp.2012.12.003 +Kun Xu 0001,A unified gas-kinetic scheme for continuum and rarefied flows.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#XuH10,https://doi.org/10.1016/j.jcp.2010.06.032 +X. Zheng,An eigen-based high-order expansion basis for structured spectral elements.,2011,230,J. Comput. Physics,23,db/journals/jcphy/jcphy230.html#ZhengD11,https://doi.org/10.1016/j.jcp.2011.08.009 +Sudarshan Tiwari,A particle-particle hybrid method for kinetic and continuum equations.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#TiwariKH09,https://doi.org/10.1016/j.jcp.2009.06.019 +Huangxin Chen,A robust multilevel method for hybridizable discontinuous Galerkin method for the Helmholtz equation.,2014,264,J. Comput. Physics,,db/journals/jcphy/jcphy264.html#ChenLX14,https://doi.org/10.1016/j.jcp.2014.01.042 +Abbas Khayyer,Comparative study on accuracy and conservation properties of two particle regularization schemes and proposal of an optimized particle shifting scheme in ISPH context.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#KhayyerGS17,https://doi.org/10.1016/j.jcp.2016.12.005 +Victor E. Ambrus,Lattice Boltzmann models based on half-range Gauss-Hermite quadratures.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#AmbrusS16,https://doi.org/10.1016/j.jcp.2016.04.010 +Igor Semenikhin,Application of the iterative approach to modal methods for the solution of Maxwell's equations.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#SemenikhinZ15,https://doi.org/10.1016/j.jcp.2015.07.052 +Isabelle Ramière,A general fictitious domain method with immersed jumps and multilevel nested structured meshes.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#RamiereAB07,https://doi.org/10.1016/j.jcp.2007.01.026 +V. Ya. Rudyak,Stochastic algorithm for simulating gas transport coefficients.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#RudyakL18,https://doi.org/10.1016/j.jcp.2017.11.001 +Karel Matous,A review of predictive nonlinear theories for multiscale modeling of heterogeneous materials.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#MatousGKG17,https://doi.org/10.1016/j.jcp.2016.10.070 +Vincent Moureau,An efficient semi-implicit compressible solver for large-eddy simulations.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#MoureauBP07,https://doi.org/10.1016/j.jcp.2007.05.035 +Lina Chang,An efficient and accurate reconstruction algorithm for the formulation of cell-centered diffusion schemes.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#ChangY12,https://doi.org/10.1016/j.jcp.2012.06.019 +Wenjun Kou,A fully resolved active musculo-mechanical model for esophageal transport.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#KouBGPKP15,https://doi.org/10.1016/j.jcp.2015.05.049 +Ngoc Cuong Nguyen,An implicit high-order hybridizable discontinuous Galerkin method for nonlinear convection-diffusion equations.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#NguyenPC09a,https://doi.org/10.1016/j.jcp.2009.08.030 +Hua Shen,A characteristic space-time conservation element and solution element method for conservation laws II. Multidimensional extension.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#ShenW16,https://doi.org/10.1016/j.jcp.2015.11.017 +Francesco Bassi,Optimal Runge-Kutta smoothers for the p-multigrid discontinuous Galerkin solution of the 1D Euler equations.,2011,230,J. Comput. Physics,11,db/journals/jcphy/jcphy230.html#BassiGR11,https://doi.org/10.1016/j.jcp.2010.04.030 +Artur Tyliszczak,A high-order compact difference algorithm for half-staggered grids for laminar and turbulent incompressible flows.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#Tyliszczak14,https://doi.org/10.1016/j.jcp.2014.07.043 +John A. Turner,The Virtual Environment for Reactor Applications (VERA): Design and architecture☆.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#TurnerCSBCPSS16,https://doi.org/10.1016/j.jcp.2016.09.003 +C. Yuan,Conditional quadrature method of moments for kinetic equations.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#YuanF11,https://doi.org/10.1016/j.jcp.2011.07.020 +Arthur Stück,An adjoint view on flux consistency and strong wall boundary conditions to the Navier-Stokes equations.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#Stuck15,https://doi.org/10.1016/j.jcp.2015.08.022 +Harald Ziegelwanger,The PAC-MAN model: Benchmark case for linear acoustics in computational physics.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#ZiegelwangerR17,https://doi.org/10.1016/j.jcp.2017.06.018 +S. Jaisankar,A central Rankine-Hugoniot solver for hyperbolic conservation laws.,2009,228,J. Comput. Physics,3,db/journals/jcphy/jcphy228.html#JaisankarR09,https://doi.org/10.1016/j.jcp.2008.10.002 +Nicholas P. Waterson,Design principles for bounded higher-order convection schemes - a unified approach.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#WatersonD07,https://doi.org/10.1016/j.jcp.2007.01.021 +Sandra Pieraccini,Microscopically implicit-macroscopically explicit schemes for the BGK equation.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#PieracciniP12,https://doi.org/10.1016/j.jcp.2011.08.027 +Petar Liovic,Multi-physics treatment in the vicinity of arbitrarily deformable gas-liquid interfaces.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#LiovicL07,https://doi.org/10.1016/j.jcp.2006.07.030 +Eleuterio F. Toro,MUSTA fluxes for systems of conservation laws.,2006,216,J. Comput. Physics,2,db/journals/jcphy/jcphy216.html#ToroT06a,https://doi.org/10.1016/j.jcp.2005.12.012 +Guofei Pang,Discovering variable fractional orders of advection-dispersion equations from field data using multi-fidelity Bayesian optimization.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#PangPCK17,https://doi.org/10.1016/j.jcp.2017.07.052 +Bin Wang,Functionally-fitted energy-preserving integrators for Poisson systems.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#WangW18,https://doi.org/10.1016/j.jcp.2018.03.015 +Vianey Villamizar,Generation of curvilinear coordinates on multiply connected regions with boundary singularities.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#VillamizarRM07,https://doi.org/10.1016/j.jcp.2006.09.028 +Reza Ghias,A sharp interface immersed boundary method for compressible viscous flows.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#GhiasMD07,https://doi.org/10.1016/j.jcp.2006.12.007 +M. Rieke,Coupled Vlasov and two-fluid codes on GPUs.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#RiekeTG15,https://doi.org/10.1016/j.jcp.2014.12.016 +Frederick Ira Moxley III,A G-FDTD scheme for solving multi-dimensional open dissipative Gross-Pitaevskii equations.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#MoxleyBMYD15,https://doi.org/10.1016/j.jcp.2014.11.021 +Pao-Hsiung Chiu,A conservative phase field method for solving incompressible two-phase flows.,2011,230,J. Comput. Physics,1,db/journals/jcphy/jcphy230.html#ChiuL11,https://doi.org/10.1016/j.jcp.2010.09.021 +Fabien Petitpas,A relaxation-projection method for compressible flows. Part II: Artificial heat exchanges for multiphase shocks.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#PetitpasFSM07,https://doi.org/10.1016/j.jcp.2007.03.014 +Sebastian Weitz,Monte Carlo efficiency improvement by multiple sampling of conditioned integration variables.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#WeitzBCDHEFFG16,https://doi.org/10.1016/j.jcp.2016.08.036 +Shravan K. Veerapaneni,A boundary integral method for simulating the dynamics of inextensible vesicles suspended in a viscous fluid in 2D.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#VeerapaneniGZB09,https://doi.org/10.1016/j.jcp.2008.11.036 +Adem Kaya,Finite difference approximations of multidimensional convection-diffusion-reaction problems with small diffusion on a special grid.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#KayaS15,https://doi.org/10.1016/j.jcp.2015.08.007 +Kazem Hejranfar,Implementation of a high-order compact finite-difference lattice Boltzmann method in generalized curvilinear coordinates.,2014,267,J. Comput. Physics,,db/journals/jcphy/jcphy267.html#HejranfarE14,https://doi.org/10.1016/j.jcp.2014.02.030 +Trung Bao Le,Fluid-structure interaction of an aortic heart valve prosthesis driven by an animated anatomic left ventricle.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#LeS13,https://doi.org/10.1016/j.jcp.2012.08.036 +Liyong Zhu,A variational phase field method for curve smoothing.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#ZhuWJW10,https://doi.org/10.1016/j.jcp.2009.11.040 +Marcus J. Grote,Time-dependent wave splitting and source separation.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#GroteKNA17,https://doi.org/10.1016/j.jcp.2016.10.021 +Haifei Liu,Lattice Boltzmann method for the age concentration equation in shallow water.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#LiuDWZ15,https://doi.org/10.1016/j.jcp.2015.07.022 +Nipun Kwatra,A method for avoiding the acoustic time step restriction in compressible flow.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#KwatraSGF09,https://doi.org/10.1016/j.jcp.2009.02.027 +H. Q. Yang,A high-order CFD method using successive differentiation.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#YangCPD15,https://doi.org/10.1016/j.jcp.2014.10.046 +Duan Z. Zhang,Material point method enhanced by modified gradient of shape function.,2011,230,J. Comput. Physics,16,db/journals/jcphy/jcphy230.html#ZhangMG11,https://doi.org/10.1016/j.jcp.2011.04.032 +Li Guo,Positivity preserving high-order local discontinuous Galerkin method for parabolic equations with blow-up solutions.,2015,289,J. Comput. Physics,,db/journals/jcphy/jcphy289.html#GuoY15,https://doi.org/10.1016/j.jcp.2015.02.041 +M. Meldi,An adaptive numerical method for solving EDQNM equations for the analysis of long-time decay of isotropic turbulence.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#MeldiS14,https://doi.org/10.1016/j.jcp.2014.01.002 +M. A. Gallis,Convergence behavior of a new DSMC algorithm.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#GallisTRB09,https://doi.org/10.1016/j.jcp.2009.03.021 +Qian Zhang,Immersed finite elements for optimal control problems of elliptic PDEs with interfaces.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#ZhangILZ15,https://doi.org/10.1016/j.jcp.2015.05.050 +G. Puigt,Discretisation of diffusive fluxes on hybrid grids.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#PuigtAM10,https://doi.org/10.1016/j.jcp.2009.10.037 +Po-Wen Hsieh,Two new upwind difference schemes for a coupled system of convection-diffusion equations arising from the steady MHD duct flow problems.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#HsiehY10,https://doi.org/10.1016/j.jcp.2010.08.034 +Saumik Dana,A multiscale fixed stress split iterative scheme for coupled flow and poromechanics in deep subsurface reservoirs.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#DanaGW18,https://doi.org/10.1016/j.jcp.2017.09.049 +Yu Wang,An improved multiphase lattice Boltzmann flux solver for three-dimensional flows with large density ratio and high Reynolds number.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#Wang0Y15,https://doi.org/10.1016/j.jcp.2015.08.049 +Antoine Lejay,Computing the principal eigenelements of some linear operators using a branching Monte Carlo method.,2008,227,J. Comput. Physics,23,db/journals/jcphy/jcphy227.html#LejayM08,https://doi.org/10.1016/j.jcp.2008.07.018 +Lee Shunn,Verification of variable-density flow solvers using manufactured solutions.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#ShunnHM12,https://doi.org/10.1016/j.jcp.2012.01.027 +Xiaoliang Wan,A dynamic-solver-consistent minimum action method: With an application to 2D Navier-Stokes equations.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#WanY17,https://doi.org/10.1016/j.jcp.2016.11.019 +T. Song,The shifted boundary method for hyperbolic systems: Embedded domain computations of linear waves and shallow water flows.,2018,369,J. Comput. Physics,,db/journals/jcphy/jcphy369.html#SongMSR18,https://doi.org/10.1016/j.jcp.2018.04.052 +Changying Liu,Arbitrarily high-order time-stepping schemes based on the operator spectrum theory for high-dimensional nonlinear Klein-Gordon equations.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#LiuW17b,https://doi.org/10.1016/j.jcp.2017.03.038 +L. J. Zheng,AEGIS-K code for linear kinetic analysis of toroidally axisymmetric plasma stability.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#ZhengKD10,https://doi.org/10.1016/j.jcp.2010.01.017 +Kristian Sandberg,The EPS method: A new method for constructing pseudospectral derivative operators.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#SandbergW11,https://doi.org/10.1016/j.jcp.2011.03.058 +Lorenzo Codecasa,Constitutive equations for discrete electromagnetic problems over polyhedral grids.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#CodecasaT07,https://doi.org/10.1016/j.jcp.2007.02.032 +Luca Bonaventura,Multilayer shallow water models with locally variable number of layers and semi-implicit time discretization.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#BonaventuraFGN18,https://doi.org/10.1016/j.jcp.2018.03.017 +Stefan Langer,Agglomeration multigrid methods with implicit Runge-Kutta smoothers applied to aerodynamic simulations on unstructured grids.,2014,277,J. Comput. Physics,,db/journals/jcphy/jcphy277.html#Langer14,https://doi.org/10.1016/j.jcp.2014.07.050 +Thomas E. Booth,An alternative Monte Carlo approach to the thermal radiative transfer problem.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#Booth11,https://doi.org/10.1016/j.jcp.2010.11.018 +Thomas J. Hardin,Fast finite element calculation of effective conductivity of random continuum microstructures: The recursive Poincaré-Steklov operator method.,2017,342,J. Comput. Physics,,db/journals/jcphy/jcphy342.html#HardinS17,https://doi.org/10.1016/j.jcp.2017.04.021 +Qiaolin He,A least-squares/fictitious domain method for incompressible viscous flow around obstacles with Navier slip boundary condition.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#HeGW18,https://doi.org/10.1016/j.jcp.2018.04.013 +Sebastian Liska,A parallel fast multipole method for elliptic difference equations.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#LiskaC14,https://doi.org/10.1016/j.jcp.2014.07.048 +Barbara Kaltenbacher,A modified and stable version of a perfectly matched layer technique for the 3-d second order wave equation in time domain with an application to aeroacoustics.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#KaltenbacherKS13,https://doi.org/10.1016/j.jcp.2012.10.016 +Benjamin Krank,A high-order semi-explicit discontinuous Galerkin solver for 3D incompressible flow with application to DNS and LES of turbulent channel flow.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#KrankFWK17,https://doi.org/10.1016/j.jcp.2017.07.039 +S. V. Petropavlovsky,A method of boundary equations for unsteady hyperbolic problems in 3D.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#PetropavlovskyT18,https://doi.org/10.1016/j.jcp.2018.03.039 +Katherine Bhan,Condensed history Monte Carlo methods for photon transport problems.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#BhanS07,https://doi.org/10.1016/j.jcp.2007.02.012 +Dongbin Xiu,Parametric uncertainty analysis of pulse wave propagation in a model of a human arterial network.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#XiuS07,https://doi.org/10.1016/j.jcp.2007.05.020 +Feng Bao,Hierarchical optimization for neutron scattering problems.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#BaoABD16,https://doi.org/10.1016/j.jcp.2016.03.017 +Anton Daitche,Advection of inertial particles in the presence of the history force: Higher order numerical schemes.,2013,254,J. Comput. Physics,,db/journals/jcphy/jcphy254.html#Daitche13,https://doi.org/10.1016/j.jcp.2013.07.024 +J. Tryoen,Intrusive Galerkin methods with upwinding for uncertain nonlinear hyperbolic systems.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#TryoenMNE10,https://doi.org/10.1016/j.jcp.2010.05.007 +Peicheng Yu,Enabling Lorentz boosted frame particle-in-cell simulations of laser wakefield acceleration in quasi-3D geometry.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#YuXDTDLMATDFVFL16,https://doi.org/10.1016/j.jcp.2016.04.014 +Donghyun You,A high-order Padé ADI method for unsteady convection-diffusion equations.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#You06,https://doi.org/10.1016/j.jcp.2005.10.001 +Walter Boscheri,High order cell-centered Lagrangian-type finite volume schemes with time-accurate local time stepping on unstructured triangular meshes.,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#BoscheriDZ15,https://doi.org/10.1016/j.jcp.2015.02.052 +Takemi Shigeta,Adaptive multilayer method of fundamental solutions using a weighted greedy QR decomposition for the Laplace equation.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#ShigetaYL12,https://doi.org/10.1016/j.jcp.2012.05.036 +M. Capuano,Simulations of viscous and compressible gas-gas flows using high-order finite difference schemes.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#CapuanoBS18,https://doi.org/10.1016/j.jcp.2018.01.047 +Gaddiel Ouaknin,Functional level-set derivative for a polymer self consistent field theory Hamiltonian.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#OuakninLBDFG17,https://doi.org/10.1016/j.jcp.2017.05.037 +Philippe Traoré,A robust and efficient finite volume scheme for the discretization of diffusive flux on extremely skewed meshes in complex geometries.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#TraoreAL09,https://doi.org/10.1016/j.jcp.2009.04.007 +Chieh-Sen Huang,An Eulerian-Lagrangian WENO finite volume scheme for advection problems.,2012,231,J. Comput. Physics,11,db/journals/jcphy/jcphy231.html#HuangAQ12,https://doi.org/10.1016/j.jcp.2012.01.030 +Kausik Chatterjee,A new Green's function Monte Carlo algorithm for the solution of the two-dimensional nonlinear Poisson-Boltzmann equation: Application to the modeling of the communication breakdown problem in space vehicles during re-entry.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#ChatterjeeRS14,https://doi.org/10.1016/j.jcp.2014.07.042 +Mustafa A. Mohamad,A probabilistic decomposition-synthesis method for the quantification of rare events due to internal instabilities.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#MohamadCS16,https://doi.org/10.1016/j.jcp.2016.06.047 +Romain Nguyen van yen,Wavelet-based density estimation for noise reduction in plasma simulations using particles.,2010,229,J. Comput. Physics,8,db/journals/jcphy/jcphy229.html#yendSFC10,https://doi.org/10.1016/j.jcp.2009.12.010 +Dimitri Krattiger,Generalized Bloch mode synthesis for accelerated calculation of elastic band structures.,2018,357,J. Comput. Physics,,db/journals/jcphy/jcphy357.html#KrattigerH18,https://doi.org/10.1016/j.jcp.2017.12.016 +Roberto de la Cruz,Coarse-graining and hybrid methods for efficient simulation of stochastic multi-scale models of tumour growth.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#CruzGCA17,https://doi.org/10.1016/j.jcp.2017.09.019 +M. R. Booty,A hybrid numerical method for interfacial fluid flow with soluble surfactant.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#BootyS10,https://doi.org/10.1016/j.jcp.2010.01.032 +Volker Gravemeier,Scale-separating operators for variational multiscale large eddy simulation of turbulent flows.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#Gravemeier06a,https://doi.org/10.1016/j.jcp.2005.07.007 +Daniel J. Magee,Accelerating solutions of one-dimensional unsteady PDEs with GPU-based swept time-space decomposition.,2018,357,J. Comput. Physics,,db/journals/jcphy/jcphy357.html#MageeN18,https://doi.org/10.1016/j.jcp.2017.12.028 +V. M. Kamenkovich,On the time-splitting scheme used in the Princeton Ocean Model.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#KamenkovichN09,https://doi.org/10.1016/j.jcp.2008.12.033 +Nicolas Legrand,A multi-grid framework for the extraction of large-scale vortices in Large-Eddy Simulation.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#LegrandLM17,https://doi.org/10.1016/j.jcp.2017.08.030 +Dongfang Li,Efficient implementation to numerically solve the nonlinear time fractional parabolic problems on unbounded spatial domain.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#LiZ16,https://doi.org/10.1016/j.jcp.2016.06.046 +Oishik Sen,Evaluation of multifidelity surrogate modeling techniques to construct closure laws for drag in shock-particle interactions.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#SenGCJU18,https://doi.org/10.1016/j.jcp.2018.05.039 +Zhengyong Ren,A hybrid boundary element-finite element approach to modeling plane wave 3D electromagnetic induction responses in the Earth.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#RenKGM14,https://doi.org/10.1016/j.jcp.2013.11.004 +Raúl Pagán Muñoz,Hybrid Fourier pseudospectral/discontinuous Galerkin time-domain method for wave propagation.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#MunozH17,https://doi.org/10.1016/j.jcp.2017.07.046 +Ralf Hartmann,Adjoint-based error estimation and adaptive mesh refinement for the RANS and k-χ9* turbulence model equations.,2011,230,J. Comput. Physics,11,db/journals/jcphy/jcphy230.html#HartmannHL11,https://doi.org/10.1016/j.jcp.2010.10.026 +Savino Longo,A Monte Carlo model for seeded atomic flows in the transition regime.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#LongoD09,https://doi.org/10.1016/j.jcp.2009.02.016 +A. W. Vreman,Stabilization of the Eulerian model for incompressible multiphase flow by artificial diffusion.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#Vreman11,https://doi.org/10.1016/j.jcp.2010.11.025 +Matthew T. Bettencourt,Flux limiting embedded boundary technique for electromagnetic FDTD.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#Bettencourt08,https://doi.org/10.1016/j.jcp.2007.11.043 +Mingrong Cui,Compact finite difference method for the fractional diffusion equation.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#Cui09,https://doi.org/10.1016/j.jcp.2009.07.021 +Guoyi Ke,New preconditioning techniques for the steady and unsteady buoyancy driven flow problems.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#KeA18,https://doi.org/10.1016/j.jcp.2018.05.037 +Lunji Song,Superconvergence property of an over-penalized discontinuous Galerkin finite element gradient recovery method.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#SongZ15,https://doi.org/10.1016/j.jcp.2015.07.036 +Mohammad Poursina,Long-range force and moment calculations in multiresolution simulations of molecular systems.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#PoursinaA12,https://doi.org/10.1016/j.jcp.2012.06.041 +Yuying Yan,A lattice Boltzmann method for incompressible two-phase flows on partial wetting surface with large density ratio.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#YanZ07,https://doi.org/10.1016/j.jcp.2007.08.010 +Mike E. Potter,An FDTD scheme on a face-centered-cubic (FCC) grid for the solution of the wave equation.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#PotterLN11,https://doi.org/10.1016/j.jcp.2011.04.027 +José E. Adsuara,On the equivalence between the Scheduled Relaxation Jacobi method and Richardson's non-stationary method.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#AdsuaraCCMA17,https://doi.org/10.1016/j.jcp.2016.12.020 +Jinghua Wang,A hybrid model for simulating rogue waves in random seas on a large temporal and spatial scale.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#WangMY16,https://doi.org/10.1016/j.jcp.2016.02.044 +Xiangyu Hu 0002,A constant-density approach for incompressible multi-phase SPH.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#HuA09,https://doi.org/10.1016/j.jcp.2008.11.027 +Jens Berg,Duality based boundary conditions and dual consistent finite difference discretizations of the Navier-Stokes and Euler equations.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#BergN14,https://doi.org/10.1016/j.jcp.2013.11.031 +Boris Bonev,Discontinuous Galerkin scheme for the spherical shallow water equations with applications to tsunami modeling and prediction.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#BonevHGK18,https://doi.org/10.1016/j.jcp.2018.02.008 +M. Davoudabadi,On accuracy and performance of high-order finite volume methods in local mean energy model of non-thermal plasmas.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#DavoudabadiSM09,https://doi.org/10.1016/j.jcp.2008.12.015 +R. Moulla,Pseudo-spectral methods for the spatial symplectic reduction of open systems of conservation laws.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#MoullaLM12,https://doi.org/10.1016/j.jcp.2011.10.008 +Heng Xiao,A consistent dual-mesh framework for hybrid LES/RANS modeling.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#XiaoJ12,https://doi.org/10.1016/j.jcp.2011.11.009 +Almut Gassmann,Inspection of hexagonal and triangular C-grid discretizations of the shallow water equations.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#Gassmann11,https://doi.org/10.1016/j.jcp.2011.01.014 +Ryan G. McClarren,Semi-implicit time integration for PN thermal radiative transfer.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#McClarrenELD08,https://doi.org/10.1016/j.jcp.2008.04.029 +Matthew F. Causley,Incorporating the Havriliak-Negami dielectric model in the FD-TD method.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#CausleyPJ11,https://doi.org/10.1016/j.jcp.2011.02.012 +Jun Zhu,A new fifth order finite difference WENO scheme for solving hyperbolic conservation laws.,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#ZhuQ16,https://doi.org/10.1016/j.jcp.2016.05.010 +Ivan Fumagalli,On a free-surface problem with moving contact line: From variational principles to stable numerical approximations.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#FumagalliPV18,https://doi.org/10.1016/j.jcp.2017.11.004 +N. Birgle,A domain decomposition method to couple nonisothermal compositional gas liquid Darcy and free gas flows.,2018,368,J. Comput. Physics,,db/journals/jcphy/jcphy368.html#BirgleMT18,https://doi.org/10.1016/j.jcp.2018.04.035 +Haihu Liu,Lattice Boltzmann phase-field modeling of thermocapillary flows in a confined microchannel.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#LiuVZK14,https://doi.org/10.1016/j.jcp.2013.08.054 +Etienne Ahusborde,A primal formulation for the Helmholtz decomposition.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#AhusbordeAC07,https://doi.org/10.1016/j.jcp.2007.04.002 +Songming Hou,A weak formulation for solving elliptic interface problems without body fitted grid.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#HouSWZ13,https://doi.org/10.1016/j.jcp.2013.04.025 +Zhiping Mao,Efficient spectral-Galerkin methods for fractional partial differential equations with variable coefficients.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#MaoS16,https://doi.org/10.1016/j.jcp.2015.11.047 +Paul Reiter,Multi-domain boundary element method for axi-symmetric layered linear acoustic systems.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#ReiterZ17,https://doi.org/10.1016/j.jcp.2017.08.062 +Poorya A. Ferdowsi,Second-order accurate normals from height functions.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#FerdowsiB08,https://doi.org/10.1016/j.jcp.2008.07.014 +Florin Bobaru,A peridynamic formulation for transient heat conduction in bodies with evolving discontinuities.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#BobaruD12,https://doi.org/10.1016/j.jcp.2011.12.017 +Sigrid Leyendecker,Variational collision integrator for polymer chains.,2012,231,J. Comput. Physics,10,db/journals/jcphy/jcphy231.html#LeyendeckerHK12,https://doi.org/10.1016/j.jcp.2012.01.017 +Siddhartha Verma,An improved bounded semi-Lagrangian scheme for the turbulent transport of passive scalars.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#VermaXB14,https://doi.org/10.1016/j.jcp.2014.03.062 +Karsten Schwarz,Efficient kinetic Monte Carlo method for reaction-diffusion problems with spatially varying annihilation rates.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#SchwarzR13,https://doi.org/10.1016/j.jcp.2012.11.036 +Dong Wang 0008,An efficient iterative thresholding method for image segmentation.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#WangLWW17,https://doi.org/10.1016/j.jcp.2017.08.020 +Katherine J. Evans,Enhanced algorithm efficiency for phase change convection using a multigrid preconditioner with a SIMPLE smoother.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#EvansKP07,https://doi.org/10.1016/j.jcp.2006.09.003 +Hiroshi Kato,A data assimilation methodology for reconstructing turbulent flows around aircraft.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#KatoYUO15,https://doi.org/10.1016/j.jcp.2014.12.013 +Wouter Tierens,An unconditionally stable time-domain discretization on cartesian meshes for the simulation of nonuniform magnetized cold plasma.,2012,231,J. Comput. Physics,15,db/journals/jcphy/jcphy231.html#TierensZ12,https://doi.org/10.1016/j.jcp.2012.04.028 +Florian Müller 0007,Solver-based vs. grid-based multilevel Monte Carlo for two phase flow and transport in random heterogeneous porous media.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#MullerMJ14,https://doi.org/10.1016/j.jcp.2014.02.047 +Magnus Redeker,A fast and accurate adaptive solution strategy for two-scale models with continuous inter-scale dependencies.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#RedekerE13,https://doi.org/10.1016/j.jcp.2012.12.025 +Guang-hua Gao,Three-point combined compact difference schemes for time-fractional advection-diffusion equations with smooth solutions.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#GaoS15a,https://doi.org/10.1016/j.jcp.2015.05.052 +Jiaxiang Cai,"Local structure-preserving algorithms for the ""good"" Boussinesq equation.",2013,239,J. Comput. Physics,,db/journals/jcphy/jcphy239.html#CaiW13,https://doi.org/10.1016/j.jcp.2013.01.009 +S. Jaisankar,Diffusion regulation for Euler solvers.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#JaisankarR07,https://doi.org/10.1016/j.jcp.2006.06.030 +Eleuterio F. Toro,A novel numerical flux for the 3D Euler equations with general equation of state.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#ToroCL15,https://doi.org/10.1016/j.jcp.2015.09.037 +Michael Dumbser,Finite volume schemes of very high order of accuracy for stiff hyperbolic balance laws.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#DumbserET08,https://doi.org/10.1016/j.jcp.2007.12.005 +Shengfeng Zhu,Variational piecewise constant level set methods for shape optimization of a two-density drum.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#ZhuWL10,https://doi.org/10.1016/j.jcp.2010.03.026 +Zhiqiang Sheng,The finite volume scheme preserving extremum principle for diffusion equations on polygonal meshes.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#ShengY11,https://doi.org/10.1016/j.jcp.2010.12.037 +Sergio Pirozzoli,Stabilized non-dissipative approximations of Euler equations in generalized curvilinear coordinates.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#Pirozzoli11,https://doi.org/10.1016/j.jcp.2011.01.001 +Naoufel Ben Abdallah,Multiscale simulation of transport in an open quantum system: Resonances and WKB interpolation.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#AbdallahP06,https://doi.org/10.1016/j.jcp.2005.08.012 +Eduardo Godoy,A Dirichlet-to-Neumann finite element method for axisymmetric elastostatics in a semi-infinite domain.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#GodoyBD17,https://doi.org/10.1016/j.jcp.2016.09.066 +Decheng Wan,Fictitious boundary and moving mesh methods for the numerical simulation of rigid particulate flows.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#WanT07,https://doi.org/10.1016/j.jcp.2006.06.002 +Charles M. Elliott,Modeling and computation of two phase geometric biomembranes using surface finite elements.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#ElliottS10,https://doi.org/10.1016/j.jcp.2010.05.014 +Dongling Wang,A linearly implicit conservative difference scheme for the space fractional coupled nonlinear Schrödinger equations.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#WangXY14,https://doi.org/10.1016/j.jcp.2014.04.047 +Haran Jackson,A fast numerical scheme for the Godunov-Peshkov-Romenski model of continuum mechanics.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#Jackson17a,https://doi.org/10.1016/j.jcp.2017.07.055 +Dimitris A. Goussis,An efficient iterative algorithm for the approximation of the fast and slow dynamics of stiff systems.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#GoussisV06,https://doi.org/10.1016/j.jcp.2005.09.019 +Guangtao Duan,A contoured continuum surface force model for particle methods.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#DuanKC15,https://doi.org/10.1016/j.jcp.2015.06.004 +Benedict J. Leimkuhler,On the numerical treatment of dissipative particle dynamics and related systems.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#LeimkuhlerS15,https://doi.org/10.1016/j.jcp.2014.09.008 +X. Blanc,Variance reduction method for particle transport equation in spherical geometry.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#BlancBKS18,https://doi.org/10.1016/j.jcp.2018.02.015 +Alfredo Canelas,A new method for inverse electromagnetic casting problems based on the topological derivative.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#CanelasNR11,https://doi.org/10.1016/j.jcp.2011.01.049 +Christiaan C. Stolk,A rapidly converging domain decomposition method for the Helmholtz equation.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#Stolk13,https://doi.org/10.1016/j.jcp.2013.01.039 +Lukas Osterloh,Regularized inversion of microphysical atmospheric particle parameters: Theory and application.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#OsterlohBNN13,https://doi.org/10.1016/j.jcp.2012.11.040 +Yongning Zhu,A second-order virtual node algorithm for nearly incompressible linear elasticity in irregular domains.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#ZhuWHCST12,https://doi.org/10.1016/j.jcp.2012.05.015 +B. Yildirim,A hybrid spectral/DG method for solving the phase-averaged ocean wave equation: Algorithm and validation.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#YildirimK12,https://doi.org/10.1016/j.jcp.2012.04.013 +Sung-Hwan Yoon,Multi-dimensional limiting process for three-dimensional flow physics analyses.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#YoonKK08,https://doi.org/10.1016/j.jcp.2008.02.012 +Zecheng Gan,Comparison of efficient techniques for the simulation of dielectric objects in electrolytes.,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#GanWBXL15,https://doi.org/10.1016/j.jcp.2015.03.019 +Reza Madankan,Computation of probabilistic hazard maps and source parameter estimation for volcanic ash transport and dispersion.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#MadankanPSBDJPPPSW14,https://doi.org/10.1016/j.jcp.2013.11.032 +Mohamed Zerroukat,A simple mass conserving semi-Lagrangian scheme for transport problems.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#Zerroukat10,https://doi.org/10.1016/j.jcp.2010.08.017 +Christiane Helzel,Multiscale simulations for suspensions of rod-like molecules.,2006,216,J. Comput. Physics,1,db/journals/jcphy/jcphy216.html#HelzelO06,https://doi.org/10.1016/j.jcp.2005.11.028 +Dong Liang,The efficient S-DDM scheme and its analysis for solving parabolic equations.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#LiangD14,https://doi.org/10.1016/j.jcp.2014.04.015 +Tuomas Airaksinen,A damping preconditioner for time-harmonic wave equations in fluid and elastic material.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#AiraksinenPT09,https://doi.org/10.1016/j.jcp.2008.10.036 +Mohsen Asle Zaeem,Finite element method for conserved phase fields: Stress-mediated diffusional phase transformation.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#ZaeemM10,https://doi.org/10.1016/j.jcp.2010.08.027 +Dinshaw S. Balsara,Divergence-free MHD on unstructured meshes using high order finite volume schemes based on multidimensional Riemann solvers.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#BalsaraD15a,https://doi.org/10.1016/j.jcp.2015.07.012 +Zhen Li 0003,A dissipative particle dynamics method for arbitrarily complex geometries.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#LiBTK18,https://doi.org/10.1016/j.jcp.2017.11.014 +Gaetano D'Avino,A numerical method for simulating concentrated rigid particle suspensions in an elongational flow using a fixed grid.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#DAvinoMHP07,https://doi.org/10.1016/j.jcp.2007.04.027 +Minseok Choi,A convergence study for SPDEs using combined Polynomial Chaos and Dynamically-Orthogonal schemes.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#ChoiSK13,https://doi.org/10.1016/j.jcp.2013.02.047 +Yao-Hsin Hwang,Macroscopic model and truncation error of discrete Boltzmann method.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#Hwang16,https://doi.org/10.1016/j.jcp.2016.06.033 +Silas Alben,Regularizing a vortex sheet near a separation point.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#Alben10,https://doi.org/10.1016/j.jcp.2010.03.044 +Bijan Goshayeshi,DSMC simulation of hypersonic flows using an improved SBT-TAS technique.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#GoshayeshiRS15,https://doi.org/10.1016/j.jcp.2015.09.027 +Fabien Casenave,Coupled BEM-FEM for the convected Helmholtz equation with non-uniform flow in a bounded domain.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#CasenaveES14,https://doi.org/10.1016/j.jcp.2013.10.016 +Shen Wang,Acoustic inverse scattering via Helmholtz operator factorization and optimization.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#WangHX10,https://doi.org/10.1016/j.jcp.2010.07.027 +Jian-Yu Lin,Simulation of compressible two-phase flows with topology change of fluid-fluid interface by a robust cut-cell method.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#LinSDLL17,https://doi.org/10.1016/j.jcp.2016.10.023 +Gregor Gassner,Polymorphic nodal elements and their application in discontinuous Galerkin methods.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#GassnerLMH09,https://doi.org/10.1016/j.jcp.2008.11.012 +Xiang Chen,An improved 2D MoF method by using high order derivatives.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#ChenZ17,https://doi.org/10.1016/j.jcp.2017.08.031 +Mark A. Taylor,A compatible and conservative spectral element method on unstructured grids.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#TaylorF10,https://doi.org/10.1016/j.jcp.2010.04.008 +David J. Torres,KIVA-4: An unstructured ALE code for compressible gas flow with sprays.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#TorresT06,https://doi.org/10.1016/j.jcp.2006.07.006 +Joseph Papac,A level set approach for diffusion and Stefan-type problems with Robin boundary conditions on quadtree/octree adaptive Cartesian grids.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#PapacHRG13,https://doi.org/10.1016/j.jcp.2012.08.038 +Ruifeng Yuan,An immersed-boundary method based on the gas kinetic BGK scheme for incompressible viscous flow.,2015,296,J. Comput. Physics,,db/journals/jcphy/jcphy296.html#YuanZZ15,https://doi.org/10.1016/j.jcp.2015.04.052 +Jiun-Der Yu,Two-phase viscoelastic jetting.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#YuSS07,https://doi.org/10.1016/j.jcp.2006.05.020 +Peiyao Luo,Monolithic multigrid method for the coupled Stokes flow and deformable porous medium system.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#LuoRGO18,https://doi.org/10.1016/j.jcp.2017.09.062 +Xin Wen,High order numerical methods to a type of delta function integrals.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#Wen07,https://doi.org/10.1016/j.jcp.2007.06.025 +Shanon M. Reckinger,Adaptive wavelet collocation method on the shallow water model.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#ReckingerVF14,https://doi.org/10.1016/j.jcp.2014.03.043 +Qian Wang,Compact high order finite volume method on unstructured grids III: Variational reconstruction.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#WangRPL17,https://doi.org/10.1016/j.jcp.2017.02.031 +Boris N. Khoromskij,Tensor decomposition in electronic structure calculations on 3D Cartesian grids.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#KhoromskijKCF09,https://doi.org/10.1016/j.jcp.2009.04.043 +Kevin Schmidmayer,A model and numerical method for compressible flows with capillary effects.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#SchmidmayerPDFG17,https://doi.org/10.1016/j.jcp.2017.01.001 +Gang-Joon Yoon,Comparison of eigenvalue ratios in artificial boundary perturbation and Jacobi preconditioning for solving Poisson equation.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#YoonM17,https://doi.org/10.1016/j.jcp.2017.08.013 +David M. Haughton,Evaluation of eigenfunctions from compound matrix variables in non-linear elasticity - II. Sixth order systems.,2008,227,J. Comput. Physics,20,db/journals/jcphy/jcphy227.html#Haughton08a,https://doi.org/10.1016/j.jcp.2008.07.003 +Rick Archibald,Discontinuity detection in multivariate space for stochastic simulations.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#ArchibaldGSX09,https://doi.org/10.1016/j.jcp.2009.01.001 +Bin Wang,A Filon-type asymptotic approach to solving highly oscillatory second-order initial value problems.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#WangLW13,https://doi.org/10.1016/j.jcp.2013.03.009 +Liang Li 0001,A hybridizable discontinuous Galerkin method combined to a Schwarz algorithm for the solution of 3d time-harmonic Maxwell's equation.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#LiLP14,https://doi.org/10.1016/j.jcp.2013.09.003 +M. M. Basko,An efficient cell-centered diffusion scheme for quadrilateral grids.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#BaskoMT09,https://doi.org/10.1016/j.jcp.2008.11.031 +Xiu Yang,Adaptive ANOVA decomposition of stochastic incompressible and compressible flows.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#YangCLK12,https://doi.org/10.1016/j.jcp.2011.10.028 +Ji Peng,On polynomial chaos expansion via gradient-enhanced and#8467*1-minimization.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#PengHD16,https://doi.org/10.1016/j.jcp.2015.12.049 +Mantulal Basumatary,Defect correction based velocity reconstruction for physically consistent simulations of non-Newtonian flows on unstructured grids.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#BasumataryNM14,https://doi.org/10.1016/j.jcp.2014.04.033 +Hanhui Jin,A novel energy conversion based method for velocity correction in molecular dynamics simulations.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#JinLKF17,https://doi.org/10.1016/j.jcp.2017.02.028 +Aditya K. Pandare,A robust and efficient finite volume method for compressible inviscid and viscous two-phase flows.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#PandareL18,https://doi.org/10.1016/j.jcp.2018.05.018 +Shuying Zhai,An unconditionally stable compact ADI method for three-dimensional time-fractional convection-diffusion equation.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#ZhaiFH14,https://doi.org/10.1016/j.jcp.2014.03.020 +Marco Latini,Effects of WENO flux reconstruction order and spatial resolution on reshocked two-dimensional Richtmyer-Meshkov instability.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#LatiniSD07,https://doi.org/10.1016/j.jcp.2006.06.051 +An Liang,Constructing spectral schemes of the immersed interface method via a global description of discontinuous functions.,2008,227,J. Comput. Physics,18,db/journals/jcphy/jcphy227.html#LiangJS08,https://doi.org/10.1016/j.jcp.2008.05.020 +Qibing Li,A high-order gas-kinetic Navier-Stokes flow solver.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#LiXF10,https://doi.org/10.1016/j.jcp.2010.05.019 +Xing Shi,A LBM-DLM/FD method for 3D fluid-structure interactions.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#ShiL07a,https://doi.org/10.1016/j.jcp.2007.06.031 +Paul J. Turinsky,Modeling and simulation challenges pursued by the Consortium for Advanced Simulation of Light Water Reactors (CASL).,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#TurinskyK16,https://doi.org/10.1016/j.jcp.2016.02.043 +Heydar Qasimov,Lacunae based stabilization of PMLs.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#QasimovT08,https://doi.org/10.1016/j.jcp.2008.04.018 +Marc D. Ryser,On the well-posedness of the stochastic Allen-Cahn equation in two dimensions.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#RyserNT12,https://doi.org/10.1016/j.jcp.2011.12.002 +Bangti Jin,Boundary knot method based on geodesic distance for anisotropic problems.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#JinC06,https://doi.org/10.1016/j.jcp.2005.11.032 +Matania Ben-Artzi,A direct Eulerian GRP scheme for compressible fluid flows.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#Ben-ArtziLW06,https://doi.org/10.1016/j.jcp.2006.01.044 +Joris Degroote,On the similarity between Dirichlet-Neumann with interface artificial compressibility and Robin-Neumann schemes for the solution of fluid-structure interaction problems.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#Degroote11,https://doi.org/10.1016/j.jcp.2011.05.012 +Chenfanfu Jiang,An angular momentum conserving affine-particle-in-cell method.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#JiangST17,https://doi.org/10.1016/j.jcp.2017.02.050 +Anca Belme,Time accurate anisotropic goal-oriented mesh adaptation for unsteady flows.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#BelmeDA12,https://doi.org/10.1016/j.jcp.2012.05.003 +Curtis Lee,A narrow-band gradient-augmented level set method for multiphase incompressible flow.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#LeeDM14,https://doi.org/10.1016/j.jcp.2014.04.055 +Abdul Majid,Application of Sobolev gradient method to Poisson-Boltzmann system.,2010,229,J. Comput. Physics,16,db/journals/jcphy/jcphy229.html#MajidS10,https://doi.org/10.1016/j.jcp.2010.04.017 +Diego Rossinelli,GPU accelerated simulations of bluff body flows using vortex particle methods.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#RossinelliBCK10,https://doi.org/10.1016/j.jcp.2010.01.004 +Leonardo Zepeda-Núñez,The method of polarized traces for the 2D Helmholtz equation.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#Zepeda-NunezD16,https://doi.org/10.1016/j.jcp.2015.11.040 +Jichun Li,A weak Galerkin least-squares finite element method for div-curl systems.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#LiYZ18,https://doi.org/10.1016/j.jcp.2018.02.036 +Kazufumi Ito,A well-conditioned augmented system for solving Navier-Stokes equations in irregular domains.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#ItoLL09,https://doi.org/10.1016/j.jcp.2008.12.028 +Xiangxiong Zhang,Positivity-preserving high order discontinuous Galerkin schemes for compressible Euler equations with source terms.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#ZhangS11,https://doi.org/10.1016/j.jcp.2010.10.036 +Wenrui Hao,A homotopy method based on WENO schemes for solving steady state problems of hyperbolic conservation laws.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#HaoHSSXZ13,https://doi.org/10.1016/j.jcp.2013.05.008 +Paul J. Atzberger,A stochastic immersed boundary method for fluid-structure dynamics at microscopic length scales.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#AtzbergerKP07,https://doi.org/10.1016/j.jcp.2006.11.015 +Matthew K. Borg,A multiscale method for micro/nano flows of high aspect ratio.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#BorgLR13,https://doi.org/10.1016/j.jcp.2012.09.009 +Vadim Lisitsa,Combination of the discontinuous Galerkin method with finite differences for simulation of seismic wave propagation.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#LisitsaTB16,https://doi.org/10.1016/j.jcp.2016.02.005 +Praveen Chandrashekar,Discontinuous Galerkin method for Navier-Stokes equations using kinetic flux vector splitting.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#Chandrashekar13,https://doi.org/10.1016/j.jcp.2012.09.017 +Wenwu Chen,Parallel implementation of efficient preconditioned linear solver for grid-based applications in chemical physics. I: Block Jacobi diagonalization.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#ChenP06,https://doi.org/10.1016/j.jcp.2006.04.012 +Wei Leng,Finite element three-dimensional Stokes ice sheet dynamics model with enhanced local mass conservation.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#LengJXCG14,https://doi.org/10.1016/j.jcp.2014.06.014 +S. Hardt,Evaporation model for interfacial flows based on a continuum-field representation of the source terms.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#HardtW08,https://doi.org/10.1016/j.jcp.2008.02.020 +Xiaocheng Guo,The HLLD Riemann solver based on magnetic field decomposition method for the numerical simulation of magneto-hydrodynamics.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#GuoFW16,https://doi.org/10.1016/j.jcp.2016.09.057 +Andrew Yeckel,An approximate block Newton method for coupled iterations of nonlinear solvers: Theory and conjugate heat transfer applications.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#YeckelLD09,https://doi.org/10.1016/j.jcp.2009.08.003 +Michael J. Chen,Accurate methods for computing inviscid and viscous Kelvin-Helmholtz instability.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#ChenF11,https://doi.org/10.1016/j.jcp.2010.11.017 +Haibiao Zheng,A finite element variational multiscale method for incompressible flows based on two local gauss integrations.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#ZhengHSS09,https://doi.org/10.1016/j.jcp.2009.05.006 +Seongwon Kang,On a robust ALE method with discrete primary and secondary conservation.,2013,254,J. Comput. Physics,,db/journals/jcphy/jcphy254.html#KangPH13,https://doi.org/10.1016/j.jcp.2013.07.012 +Guang-hua Gao,A compact finite difference scheme for the fractional sub-diffusion equations.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#GaoS11,https://doi.org/10.1016/j.jcp.2010.10.007 +Jun Zhu,A new third order finite volume weighted essentially non-oscillatory scheme on tetrahedral meshes.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#ZhuQ17,https://doi.org/10.1016/j.jcp.2017.08.021 +Frédéric Alauzet,3D transient fixed point mesh adaptation for time-dependent problems: Application to CFD simulations.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#AlauzetFGM07,https://doi.org/10.1016/j.jcp.2006.08.012 +Hrvoje Gotovac,Maximum entropy algorithm with inexact upper entropy bound based on Fup basis functions with compact support.,2009,228,J. Comput. Physics,24,db/journals/jcphy/jcphy228.html#GotovacG09,https://doi.org/10.1016/j.jcp.2009.09.011 +Scott A. Norris,Simulating the kinematics of completely faceted surfaces.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#NorrisW12,https://doi.org/10.1016/j.jcp.2012.02.030 +F. Xavier Trias,Symmetry-preserving discretization of Navier-Stokes equations on collocated unstructured grids.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#TriasLOPV14,https://doi.org/10.1016/j.jcp.2013.10.031 +Min Gao,A gradient stable scheme for a phase field model for the moving contact line problem.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#GaoW12,https://doi.org/10.1016/j.jcp.2011.10.015 +Y. C. Zhou,A matched interface and boundary method for solving multi-flow Navier-Stokes equations with applications to geodynamics.,2012,231,J. Comput. Physics,1,db/journals/jcphy/jcphy231.html#ZhouLH12,https://doi.org/10.1016/j.jcp.2011.09.010 +Thomas Toulorge,Optimal Runge-Kutta schemes for discontinuous Galerkin space discretizations applied to wave propagation problems.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#ToulorgeD12,https://doi.org/10.1016/j.jcp.2011.11.024 +Gwénaël Gabard,Discontinuous Galerkin methods with plane waves for time-harmonic problems.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#Gabard07,https://doi.org/10.1016/j.jcp.2007.02.030 +Yongliang Feng,A three dimensional lattice model for thermal compressible flow on standard lattices.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#FengST15,https://doi.org/10.1016/j.jcp.2015.09.011 +Nan-Jing Wu,Orthogonal grid generation of an irregular region using a local polynomial collocation method.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#WuTYC13,https://doi.org/10.1016/j.jcp.2013.01.005 +Maxime Barrault,Multilevel domain decomposition for electronic structure calculations.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#BarraultCHB07,https://doi.org/10.1016/j.jcp.2006.06.049 +James Bremer,A fast direct solver for the integral equations of scattering theory on planar curves with corners.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#Bremer12,https://doi.org/10.1016/j.jcp.2011.11.015 +Hemant Kamath,A roe-average algorithm for a granular-gas model with non-conservative terms.,2009,228,J. Comput. Physics,21,db/journals/jcphy/jcphy228.html#KamathD09,https://doi.org/10.1016/j.jcp.2009.08.005 +Zhipeng Qin,Topology preserving advection of implicit interfaces on Cartesian grids.,2015,290,J. Comput. Physics,,db/journals/jcphy/jcphy290.html#QinDRB15,https://doi.org/10.1016/j.jcp.2015.02.029 +Yinhao Zhu,Bayesian deep convolutional encoder-decoder networks for surrogate modeling and uncertainty quantification.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#ZhuZ18,https://doi.org/10.1016/j.jcp.2018.04.018 +Jan Nordström,A stable and conservative high order multi-block method for the compressible Navier-Stokes equations.,2009,228,J. Comput. Physics,24,db/journals/jcphy/jcphy228.html#NordstromGWS09,https://doi.org/10.1016/j.jcp.2009.09.005 +A. Bardazzi,Generalized HPC method for the Poisson equation.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#BardazziLAGF15,https://doi.org/10.1016/j.jcp.2015.07.026 +Anthony Beaudoin,Adapting particle methods to model the dynamics of concentration gradients and chemical reactivity under advective diffusive transport conditions.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#BeaudoinHD18,https://doi.org/10.1016/j.jcp.2017.10.037 +Aravind Alwan,Improved statistical models for limited datasets in uncertainty quantification using stochastic collocation.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#AlwanA13,https://doi.org/10.1016/j.jcp.2013.08.024 +T. Y. Hou,Multiscale modeling of incompressible turbulent flows.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#HouHH13,https://doi.org/10.1016/j.jcp.2012.08.029 +Lennart Schneiders,An efficient conservative cut-cell method for rigid bodies interacting with viscous compressible flows.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#SchneidersGMS16,https://doi.org/10.1016/j.jcp.2016.01.026 +Andrea Bonito,Numerical simulation of 3D viscoelastic flows with free surfaces.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#BonitoPL06,https://doi.org/10.1016/j.jcp.2005.11.013 +Yoshimichi Nakamura,Link molecule method for quantum mechanical/molecular mechanical hybrid simulations.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#NakamuraTOUO07,https://doi.org/10.1016/j.jcp.2007.03.001 +Gordan R. Stuhne,A robust unstructured grid discretization for 3-dimensional hydrostatic flows in spherical geometry: A new numerical structure for ocean general circulation modeling.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#StuhneP06,https://doi.org/10.1016/j.jcp.2005.08.031 +Weidong Li 0004,An implicit block LU-SGS finite-volume lattice-Boltzmann scheme for steady flows on arbitrary unstructured meshes.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#LiL16,https://doi.org/10.1016/j.jcp.2016.09.038 +Alexander Kurganov,New adaptive artificial viscosity method for hyperbolic systems of conservation laws.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#KurganovL12,https://doi.org/10.1016/j.jcp.2012.07.040 +Pierre-Alexandre Gourdain,High-resolution magnetohydrodynamic equilibrium code for unity beta plasmas.,2006,216,J. Comput. Physics,1,db/journals/jcphy/jcphy216.html#GourdainLN06,https://doi.org/10.1016/j.jcp.2005.12.005 +Eleuterio F. Toro,Derivative Riemann solvers for systems of conservation laws and ADER methods.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#ToroT06,https://doi.org/10.1016/j.jcp.2005.06.018 +Jianhua Zhang,A transpose-free quasi-minimal residual variant of the CORS method for solving non-Hermitian linear systems.,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#ZhangD15,https://doi.org/10.1016/j.jcp.2015.03.013 +Yoshiaki Abe,On the freestream preservation of high-order conservative flux-reconstruction schemes.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#AbeHNF15,https://doi.org/10.1016/j.jcp.2014.10.011 +C. Mehlmann,A finite element multigrid-framework to solve the sea ice momentum equation.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#MehlmannR17,https://doi.org/10.1016/j.jcp.2017.08.004 +Georg May,An improved gas-kinetic BGK finite-volume method for three-dimensional transonic flow.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#MaySJ07,https://doi.org/10.1016/j.jcp.2006.05.027 +Murilo F. Tomé,A finite difference technique for solving a time strain separable K-BKZ constitutive equation for two-dimensional moving free surface flows.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#TomeBOACPV16,https://doi.org/10.1016/j.jcp.2016.01.032 +Dmitry V. Kotov,Computational challenges for simulations related to the NASA electric arc shock tube (EAST) experiments.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#KotovYPPW14,https://doi.org/10.1016/j.jcp.2014.03.021 +Victor Bayona,Optimal constant shape parameter for multiquadric based RBF-FD method.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#BayonaMK11,https://doi.org/10.1016/j.jcp.2011.06.005 +C. M. Mast,Mitigating kinematic locking in the material point method.,2012,231,J. Comput. Physics,16,db/journals/jcphy/jcphy231.html#MastMAMS12,https://doi.org/10.1016/j.jcp.2012.04.032 +Tomohiro Sogabe,Solution of generalized shifted linear systems with complex symmetric matrices.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#SogabeHZF12,https://doi.org/10.1016/j.jcp.2012.04.046 +A. López Ortega,Numerical simulation of elastic-plastic solid mechanics using an Eulerian stretch tensor approach and HLLD Riemann solver.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#OrtegaLPM14,https://doi.org/10.1016/j.jcp.2013.10.007 +Markus Weinmüller,Perfect absorption in Schrödinger-like problems using non-equidistant complex grids.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#WeinmullerWRS17,https://doi.org/10.1016/j.jcp.2016.12.029 +Steven Diot,An interface reconstruction method based on analytical formulae for 2D planar and axisymmetric arbitrary convex cells.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#DiotFD14,https://doi.org/10.1016/j.jcp.2014.06.060 +Ehsan Tavakoli,High-order pole-treatment in cylindrical coordinates for incompressible flow simulations with finite-difference collocated schemes.,2015,296,J. Comput. Physics,,db/journals/jcphy/jcphy296.html#TavakoliLH15,https://doi.org/10.1016/j.jcp.2015.04.042 +Aimé Fournier,Exact calculation of Fourier series in nonconforming spectral-element methods.,2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#Fournier06,https://doi.org/10.1016/j.jcp.2005.11.023 +Enrique Domingo Fernández-Nieto,2D granular flows with the and#956*(I) rheology and side walls friction: A well-balanced multilayer discretization.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#Fernandez-Nieto18a,https://doi.org/10.1016/j.jcp.2017.11.038 +M. E. Gruber,A fast Fourier transform accelerated Ewald summation technique for the vector electromagnetic rectangular cavity Green's function.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#GruberKE15,https://doi.org/10.1016/j.jcp.2014.10.012 +S. Adami,A conservative SPH method for surfactant dynamics.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#AdamiHA10,https://doi.org/10.1016/j.jcp.2009.11.015 +Rong Kong,A new proof of geometric convergence for general transport problems based on sequential correlated sampling methods.,2008,227,J. Comput. Physics,23,db/journals/jcphy/jcphy227.html#KongS08,https://doi.org/10.1016/j.jcp.2008.07.016 +Konstantin Lipnikov,A framework for developing a mimetic tensor artificial viscosity for Lagrangian hydrocodes on arbitrary polygonal meshes.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#LipnikovS10,https://doi.org/10.1016/j.jcp.2010.06.045 +Giovanni Russo 0001,The Gaussian wave packet transform: Efficient computation of the semi-classical limit of the Schrödinger equation. Part 1 - Formulation and the one dimensional case.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#RussoS13,https://doi.org/10.1016/j.jcp.2012.08.018 +Eirik Endeve,Bound-preserving discontinuous Galerkin methods for conservative phase space advection in curvilinear coordinates.,2015,287,J. Comput. Physics,,db/journals/jcphy/jcphy287.html#EndeveHXM15,https://doi.org/10.1016/j.jcp.2015.02.005 +Paromita Nath,Sensor placement for calibration of spatially varying model parameters.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#NathHM17,https://doi.org/10.1016/j.jcp.2017.04.033 +Jeff D. Eldredge,Dynamically coupled fluid-body interactions in vorticity-based numerical simulations.,2008,227,J. Comput. Physics,21,db/journals/jcphy/jcphy227.html#Eldredge08,https://doi.org/10.1016/j.jcp.2008.03.033 +Yan Pan,A parallel orbital-updating based plane-wave basis method for electronic structure calculations.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#PanDGGRZ17,https://doi.org/10.1016/j.jcp.2017.07.033 +Wojciech Aniszewski,A new approach to sub-grid surface tension for LES of two-phase flows.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#AniszewskiBMT12,https://doi.org/10.1016/j.jcp.2012.07.016 +Petter A. Berthelsen,A local directional ghost cell approach for incompressible viscous flow problems with irregular boundaries.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#BerthelsenF08,https://doi.org/10.1016/j.jcp.2007.12.022 +Etienne Ahusborde,Mercer's spectral decomposition for the characterization of thermal parameters.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#AhusbordeABB15,https://doi.org/10.1016/j.jcp.2015.03.037 +Phanish Suryanarayana,A mesh-free convex approximation scheme for Kohn-Sham density functional theory.,2011,230,J. Comput. Physics,13,db/journals/jcphy/jcphy230.html#SuryanarayanaBO11,https://doi.org/10.1016/j.jcp.2011.03.018 +Doron Sabo,Fast evaluation of a time-domain non-linear cochlear model on GPUs.,2014,265,J. Comput. Physics,,db/journals/jcphy/jcphy265.html#SaboBWF14,https://doi.org/10.1016/j.jcp.2014.01.044 +Yohei Morinishi,Skew-symmetric convection form and secondary conservative finite difference methods for moving grids.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#MorinishiK14,https://doi.org/10.1016/j.jcp.2013.01.040 +Sadia Arshad,Trapezoidal scheme for time-space fractional diffusion equation with Riesz derivative.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#ArshadHKT17,https://doi.org/10.1016/j.jcp.2017.08.038 +Dhiraj V. Patil,Finite volume TVD formulation of lattice Boltzmann simulation on unstructured mesh.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#PatilL09,https://doi.org/10.1016/j.jcp.2009.04.008 +Keren Yang,Bayesian and variational Bayesian approaches for flows in heterogeneous random media.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#YangGEM17,https://doi.org/10.1016/j.jcp.2017.04.034 +John D. Towers,Two methods for discretizing a delta function supported on a level set.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#Towers07,https://doi.org/10.1016/j.jcp.2006.05.037 +Aditya K. Pandare,A hybrid reconstructed discontinuous Galerkin and continuous Galerkin finite element method for incompressible flows on unstructured grids.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#PandareL16,https://doi.org/10.1016/j.jcp.2016.07.002 +HyeongKae Park,On physics-based preconditioning of the Navier-Stokes equations.,2009,228,J. Comput. Physics,24,db/journals/jcphy/jcphy228.html#ParkNMK09,https://doi.org/10.1016/j.jcp.2009.09.015 +R. R. Hiemstra,High order geometric methods with exact conservation properties.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#HiemstraTHG14,https://doi.org/10.1016/j.jcp.2013.09.027 +Weifeng Zhao,Single-node second-order boundary schemes for the lattice Boltzmann method.,2017,329,J. Comput. Physics,,db/journals/jcphy/jcphy329.html#ZhaoY17,https://doi.org/10.1016/j.jcp.2016.10.049 +Javier Murillo,Weak solutions for partial differential equations with source terms: Application to the shallow water equations.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#MurilloG10,https://doi.org/10.1016/j.jcp.2010.02.016 +Stefan Jebens,Partially implicit peer methods for the compressible Euler equations.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#JebensKW11,https://doi.org/10.1016/j.jcp.2011.03.015 +Timothy M. Schaerf,On contour crossings in contour-advective simulations - part 2 - analysis of crossing errors and methods for their prevention.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#SchaerfM12a,https://doi.org/10.1016/j.jcp.2011.09.013 +Tao Xiong,High order maximum principle preserving semi-Lagrangian finite difference WENO schemes for the Vlasov equation.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#XiongQXC14,https://doi.org/10.1016/j.jcp.2014.05.033 +Bengt Eliasson,Outflow boundary conditions for the Fourier transformed three-dimensional Vlasov-Maxwell system.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#Eliasson07,https://doi.org/10.1016/j.jcp.2007.02.005 +Jan-Frederik Mennemann,Perfectly Matched Layers versus discrete transparent boundary conditions in quantum device simulations.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#MennemannJ14,https://doi.org/10.1016/j.jcp.2014.06.049 +Salvatore Marrone,Fast free-surface detection and level-set function definition in SPH solvers.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#MarroneCTG10,https://doi.org/10.1016/j.jcp.2010.01.019 +Mathias Malandain,Optimization of the deflated Conjugate Gradient algorithm for the solving of elliptic equations on massively parallel machines.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#MalandainMM13,https://doi.org/10.1016/j.jcp.2012.11.046 +Shohiro Sho,A quantum energy transport model for semiconductor device simulation.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#ShoO13,https://doi.org/10.1016/j.jcp.2012.10.051 +Zheming Zheng,A stabilized explicit Lagrange multiplier based domain decomposition method for parabolic problems.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#ZhengSP08,https://doi.org/10.1016/j.jcp.2008.01.057 +Kees Oosterlee,Preface.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#OosterleeKV07,https://doi.org/10.1016/j.jcp.2007.03.019 +Kirill M. Terekhov,Cell-centered nonlinear finite-volume methods for the heterogeneous anisotropic diffusion problem.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#TerekhovMT17,https://doi.org/10.1016/j.jcp.2016.11.010 +Alexandre Chiapolino,Models and methods for two-layer shallow water flows.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#ChiapolinoS18,https://doi.org/10.1016/j.jcp.2018.05.034 +Yuanqing Wu 0002,Speeding up the flash calculations in two-phase compositional flow simulations - The application of sparse grids.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#WuKSS15,https://doi.org/10.1016/j.jcp.2015.01.012 +Artur Palha,A mimetic spectral element solver for the Grad-Shafranov equation.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#PalhaKF16,https://doi.org/10.1016/j.jcp.2016.04.002 +David N. Smithe,Divergence preservation in the ADI algorithms for electromagnetics.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#SmitheCC09,https://doi.org/10.1016/j.jcp.2009.06.025 +Yvan Notay,A massively parallel solver for discrete Poisson-like problems.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#NotayN15,https://doi.org/10.1016/j.jcp.2014.10.043 +Arthur R. Ghigo,Low-Shapiro hydrostatic reconstruction technique for blood flow simulation in large arteries with varying geometrical and mechanical properties.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#GhigoDFL17,https://doi.org/10.1016/j.jcp.2016.11.032 +Pierre Degond,Asymptotic-Preserving methods and multiscale models for plasma physics.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#DegondD17,https://doi.org/10.1016/j.jcp.2017.02.009 +Tor Harald Sandve,An efficient multi-point flux approximation method for Discrete Fracture-Matrix simulations.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#SandveBN12,https://doi.org/10.1016/j.jcp.2012.01.023 +Lucia Parussini,Fictitious Domain approach with hp-finite element approximation for incompressible fluid flow.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#ParussiniP09,https://doi.org/10.1016/j.jcp.2009.02.019 +Khosro Shahbazi,Multi-dimensional hybrid Fourier continuation-WENO solvers for conservation laws.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#ShahbaziHZ13,https://doi.org/10.1016/j.jcp.2013.07.009 +Zlatko Solomenko,A level-set method for large-scale simulations of three-dimensional flows with moving contact lines.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#SolomenkoSA17,https://doi.org/10.1016/j.jcp.2017.07.011 +James S. Strand,Global sensitivity analysis for DSMC simulations of hypersonic shocks.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#StrandG13,https://doi.org/10.1016/j.jcp.2013.03.035 +Wenjun Xie,An axisymmetric multiple-relaxation-time lattice Boltzmann scheme.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#Xie15,https://doi.org/10.1016/j.jcp.2014.10.019 +R. T. Sibatov,Dispersive transport of charge carriers in disordered nanostructured materials.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#SibatovU15,https://doi.org/10.1016/j.jcp.2015.01.022 +Youngsoo Ha,Explicit solutions to a convection-reaction equation and defects of numerical schemes.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#HaK06,https://doi.org/10.1016/j.jcp.2006.07.018 +Elizabeth E. Hart,Compact RBF meshless methods for photonic crystal modelling.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#HartCD11,https://doi.org/10.1016/j.jcp.2011.03.010 +Rajeev K. Jaiman,"Erratum to ""Conservative load transfer along curved fluid-solid interface with non-matching meshes"" [J. Comput. Phys. 218(1) (2006) 372-397].",2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#JaimanJGL07,https://doi.org/10.1016/j.jcp.2006.11.029 +J. Jagalur-Mohan,A Galerkin least squares method for time harmonic Maxwell equations using Nédélec elements.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#Jagalur-MohanFO13,https://doi.org/10.1016/j.jcp.2012.10.003 +Na Zhang,Accurate multiscale finite element method for numerical simulation of two-phase flow in fractured media using discrete-fracture model.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#ZhangYHW13,https://doi.org/10.1016/j.jcp.2012.12.006 +Pavel S. Petrov,Transparent boundary conditions for iterative high-order parabolic equations.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#PetrovE16,https://doi.org/10.1016/j.jcp.2016.02.037 +Bor Plestenjak,Spectral collocation for multiparameter eigenvalue problems arising from separable boundary value problems.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#PlestenjakGH15,https://doi.org/10.1016/j.jcp.2015.06.015 +J. Wu,Implicit velocity correction-based immersed boundary-lattice Boltzmann method and its applications.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#WuS09,https://doi.org/10.1016/j.jcp.2008.11.019 +V. Wheatley,On the role of Riemann solvers in Discontinuous Galerkin methods for magnetohydrodynamics.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#WheatleyKH10,https://doi.org/10.1016/j.jcp.2009.10.003 +Volker Gravemeier,An algebraic variational multiscale-multigrid method for large-eddy simulation of turbulent variable-density flow at low Mach number.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#GravemeierW10,https://doi.org/10.1016/j.jcp.2010.04.036 +Natalie Happenhofer,A low Mach number solver: Enhancing applicability.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#HappenhoferGKLM13,https://doi.org/10.1016/j.jcp.2012.11.002 +Volker John,A variational multiscale method for turbulent flow simulation with adaptive large scale space.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#JohnK10,https://doi.org/10.1016/j.jcp.2009.09.025 +Constance M. Schober,Dispersive properties of multisymplectic integrators.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#SchoberW08,https://doi.org/10.1016/j.jcp.2008.01.026 +D. Yu,A numerical simulation method for dissolution in porous and fractured media.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#YuL10,https://doi.org/10.1016/j.jcp.2010.05.005 +Mykhailo Semkiv,Two-scale model for the effect of physical aging in elastomers filled with hard nanoparticles.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#SemkivAH17,https://doi.org/10.1016/j.jcp.2017.08.058 +Henri Samuel,A level set two-way wave equation approach for Eulerian interface tracking.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#Samuel14,https://doi.org/10.1016/j.jcp.2013.11.027 +Laslo T. Diosady,Preconditioning methods for discontinuous Galerkin solutions of the Navier-Stokes equations.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#DiosadyD09,https://doi.org/10.1016/j.jcp.2009.02.035 +Zheng Chen,Third order maximum-principle-satisfying direct discontinuous Galerkin methods for time dependent convection diffusion equations on unstructured triangular meshes.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#ChenHY16,https://doi.org/10.1016/j.jcp.2015.12.039 +Erkki Heikkola,Controllability method for the Helmholtz equation with higher-order discretizations.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#HeikkolaMPR07,https://doi.org/10.1016/j.jcp.2007.02.003 +Eric J. Parish,A dynamic subgrid scale model for Large Eddy Simulations based on the Mori-Zwanzig formalism.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#ParishD17,https://doi.org/10.1016/j.jcp.2017.07.053 +Yan Yan,Smooth and robust solutions for Dirichlet boundary control of fluid-solid conjugate heat transfer problems.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#YanK15,https://doi.org/10.1016/j.jcp.2014.10.049 +Pengtao Yue,An arbitrary Lagrangian-Eulerian method for simulating bubble growth in polymer foaming.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#YueFBH07,https://doi.org/10.1016/j.jcp.2007.07.007 +I. Yu. Gejadze,Computation of the analysis error covariance in variational data assimilation problems with nonlinear dynamics.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#GejadzeCDS11,https://doi.org/10.1016/j.jcp.2011.03.039 +Jae Wan Ahn,An axisymmetric computational model of generalized hydrodynamic theory for rarefied multi-species gas flows.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#AhnK09,https://doi.org/10.1016/j.jcp.2009.02.026 +Soheil Ghanbarzadeh,A level set method for materials with texturally equilibrated pores.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#GhanbarzadehHP15,https://doi.org/10.1016/j.jcp.2015.05.023 +Peijun Li,Near-field imaging of biperiodic surfaces for elastic waves.,2016,324,J. Comput. Physics,,db/journals/jcphy/jcphy324.html#LiWZ16,https://doi.org/10.1016/j.jcp.2016.07.030 +Jean-Baptiste Chapelier,A spectral-element dynamic model for the Large-Eddy simulation of turbulent flows.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#ChapelierL16,https://doi.org/10.1016/j.jcp.2016.05.051 +Yongbin Ge,A transformation-free HOC scheme and multigrid method for solving the 3D Poisson equation on nonuniform grids.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#GeCZ13,https://doi.org/10.1016/j.jcp.2012.09.034 +Greg Rainwater,A new approach to constructing efficient stiffly accurate EPIRK methods.,2016,323,J. Comput. Physics,,db/journals/jcphy/jcphy323.html#RainwaterT16,https://doi.org/10.1016/j.jcp.2016.07.026 +Guy Baruch,High-order numerical method for the nonlinear Helmholtz equation with material discontinuities in one space dimension.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#BaruchFT07,https://doi.org/10.1016/j.jcp.2007.08.022 +Shingyu Leung,The backward phase flow and FBI-transform-based Eulerian Gaussian beams for the Schrödinger equation.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#LeungQ10,https://doi.org/10.1016/j.jcp.2010.08.015 +Mohsen Zayernouri,Exponentially accurate spectral and spectral element methods for fractional ODEs.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#ZayernouriK14,https://doi.org/10.1016/j.jcp.2013.09.039 +Daniele Cerroni,A projection method for coupling two-phase VOF and fluid structure interaction simulations.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#CerroniVM18,https://doi.org/10.1016/j.jcp.2017.10.055 +Tapan K. Sengupta,A new compact difference scheme for second derivative in non-uniform grid expressed in self-adjoint form.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#SenguptaBS11,https://doi.org/10.1016/j.jcp.2010.11.035 +S. Z. Husain,Implicit spectrally-accurate method for moving boundary problems using immersed boundary conditions concept.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#HusainF08,https://doi.org/10.1016/j.jcp.2008.01.002 +Joao Paulo Gois,Front tracking with moving-least-squares surfaces.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#GoisNNB08,https://doi.org/10.1016/j.jcp.2008.07.013 +J. Benoit,Time-dependent current source identification for numerical simulations of Maxwell's equations.,2015,289,J. Comput. Physics,,db/journals/jcphy/jcphy289.html#BenoitCB15,https://doi.org/10.1016/j.jcp.2015.02.033 +Hafez Asgharzadeh,A Newton-Krylov method with an approximate analytical Jacobian for implicit solution of Navier-Stokes equations on staggered overset-curvilinear grids with immersed boundaries.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#AsgharzadehB17,https://doi.org/10.1016/j.jcp.2016.11.033 +Hong Wang,A high-accuracy preserving spectral Galerkin method for the Dirichlet boundary-value problem of variable-coefficient conservative fractional diffusion equations.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#WangZ15,https://doi.org/10.1016/j.jcp.2014.10.018 +Onur Atak,Coupling of Boundary Element and Wave Based Methods for the efficient solution of complex multiple scattering problems.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#AtakBHPD14,https://doi.org/10.1016/j.jcp.2013.10.034 +Xiaodong Chen,Thickness-based adaptive mesh refinement methods for multi-phase flow simulations with thin regions.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#ChenY14,https://doi.org/10.1016/j.jcp.2014.02.035 +E. G. Evstatiev,Variational formulation of particle algorithms for kinetic plasma simulations.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#EvstatievS13,https://doi.org/10.1016/j.jcp.2013.03.006 +Daniele Cavaglieri,Low-storage implicit/explicit Runge-Kutta schemes for the simulation of stiff high-dimensional ODE systems.,2015,286,J. Comput. Physics,,db/journals/jcphy/jcphy286.html#CavaglieriB15,https://doi.org/10.1016/j.jcp.2015.01.031 +Gregor Gassner,A contribution to the construction of diffusion fluxes for finite volume and discontinuous Galerkin schemes.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#GassnerLM07,https://doi.org/10.1016/j.jcp.2006.11.004 +Tristan Bereau,Optimized convergence for multiple histogram analysis.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#BereauS09,https://doi.org/10.1016/j.jcp.2009.05.011 +Ken Mattsson,Stable and accurate schemes for the compressible Navier-Stokes equations.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#MattssonSS08,https://doi.org/10.1016/j.jcp.2007.10.018 +Daniele A. Di Pietro,An a posteriori-driven adaptive Mixed High-Order method with application to electrostatics.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#PietroS16,https://doi.org/10.1016/j.jcp.2016.08.041 +Samer S. Ezz-Eldien,New quadrature approach based on operational matrix for solving a class of fractional variational problems.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#Ezz-Eldien16,https://doi.org/10.1016/j.jcp.2016.04.045 +Martina Bukac,A partitioned scheme for fluid-composite structure interaction problems.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#BukacCM15,https://doi.org/10.1016/j.jcp.2014.10.045 +Greg Rainwater,A new class of split exponential propagation iterative methods of Runge-Kutta type (sEPIRK) for semilinear systems of ODEs.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#RainwaterT14,https://doi.org/10.1016/j.jcp.2014.03.012 +Hong-Kui Pang,Multigrid method for fractional diffusion equations.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#PangS12,https://doi.org/10.1016/j.jcp.2011.10.005 +Lin Fu,Targeted ENO schemes with tailored resolution property for hyperbolic conservation laws.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#FuHA17a,https://doi.org/10.1016/j.jcp.2017.07.054 +Rémi Abgrall,Stochastic Discrete Equation Method (sDEM) for two-phase flows.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#AbgrallCGR15,https://doi.org/10.1016/j.jcp.2015.06.013 +Ruslan L. Davidchack,Discretization errors in molecular dynamics simulations with deterministic and stochastic thermostats.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#Davidchack10,https://doi.org/10.1016/j.jcp.2010.09.004 +Kelin Xia,Adaptively deformed mesh based interface method for elliptic equations with discontinuous coefficients.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#XiaZWW12,https://doi.org/10.1016/j.jcp.2011.10.026 +Youshan Liu,Higher-order triangular spectral element method with optimized cubature points for seismic wavefield modeling.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#LiuTXB17,https://doi.org/10.1016/j.jcp.2017.01.069 +Xavier Antoine,Robust and efficient preconditioned Krylov spectral solvers for computing the ground states of fast rotating and strongly interacting Bose-Einstein condensates.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#AntoineD14,https://doi.org/10.1016/j.jcp.2013.10.045 +Jan Nordström,Hyperbolic systems of equations posed on erroneous curved domains.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#NordstromN16,https://doi.org/10.1016/j.jcp.2015.12.048 +Mark Petersen,Efficient form of the LANS-α turbulence model in a primitive-equation ocean model.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#PetersenHW08,https://doi.org/10.1016/j.jcp.2008.02.017 +Ming-Jiu Ni,A consistent and conservative scheme for incompressible MHD flows at a low magnetic Reynolds number. Part III: On a staggered mesh.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#NiL12,https://doi.org/10.1016/j.jcp.2011.08.013 +Hélène Hivert,A first-order asymptotic preserving scheme for front propagation in a one-dimensional kinetic reaction-transport equation.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#Hivert18,https://doi.org/10.1016/j.jcp.2018.04.036 +Suchuan Dong,BDF-like methods for nonlinear dynamic analysis.,2010,229,J. Comput. Physics,8,db/journals/jcphy/jcphy229.html#Dong10,https://doi.org/10.1016/j.jcp.2009.12.028 +Yan Liu,A two dimensional nodal Riemann solver based on one dimensional Riemann solver for a cell-centered Lagrangian scheme.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#LiuSTM15,https://doi.org/10.1016/j.jcp.2014.12.031 +U. Rasthofer,An extended algebraic variational multiscale-multigrid-multifractal method (XAVM4) for large-eddy simulation of turbulent two-phase flow.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#RasthoferWG18,https://doi.org/10.1016/j.jcp.2018.01.013 +Shilpa Khatri,An embedded boundary method for soluble surfactants with interface tracking for two-phase flows.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#KhatriT14,https://doi.org/10.1016/j.jcp.2013.09.019 +Hong Wang,An O(N log2N) alternating-direction finite difference method for two-dimensional fractional diffusion equations.,2011,230,J. Comput. Physics,21,db/journals/jcphy/jcphy230.html#WangW11,https://doi.org/10.1016/j.jcp.2011.07.003 +René Hammer,Single-cone real-space finite difference scheme for the time-dependent Dirac equation.,2014,265,J. Comput. Physics,,db/journals/jcphy/jcphy265.html#HammerPA14,https://doi.org/10.1016/j.jcp.2014.01.028 +Vagelis Harmandaris,Path-space variational inference for non-equilibrium coarse-grained systems.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#HarmandarisKKP16,https://doi.org/10.1016/j.jcp.2016.03.021 +Michael O'Neil,An integral equation-based numerical solver for Taylor states in toroidal geometries.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#ONeilC18,https://doi.org/10.1016/j.jcp.2018.01.004 +Javier de Frutos,Projection methods for incompressible flow problems with WENO finite difference schemes.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#FrutosJN16,https://doi.org/10.1016/j.jcp.2015.12.041 +Y. Bazilevs,Isogeometric analysis of Lagrangian hydrodynamics.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#BazilevsABSS13,https://doi.org/10.1016/j.jcp.2013.02.021 +Alejandro M. Aragón,Multi-physics optimization of three-dimensional microvascular polymeric components.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#AragonSKGCW13,https://doi.org/10.1016/j.jcp.2012.07.036 +Andrea Alessandro Ruggiu,On pseudo-spectral time discretizations in summation-by-parts form.,2018,360,J. Comput. Physics,,db/journals/jcphy/jcphy360.html#RuggiuN18,https://doi.org/10.1016/j.jcp.2018.01.043 +Stéphane Dellacherie,The influence of cell geometry on the Godunov scheme applied to the linear wave equation.,2010,229,J. Comput. Physics,14,db/journals/jcphy/jcphy229.html#DellacherieOR10,https://doi.org/10.1016/j.jcp.2010.03.012 +Jing Zhao,A fast nonlinear conjugate gradient based method for 3D concentrated frictional contact problems.,2015,288,J. Comput. Physics,,db/journals/jcphy/jcphy288.html#ZhaoVO15,https://doi.org/10.1016/j.jcp.2015.02.016 +Jean C. Ragusa,Discontinuous finite element solution of the radiation diffusion equation on arbitrary polygonal meshes and locally adapted quadrilateral grids.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#Ragusa15,https://doi.org/10.1016/j.jcp.2014.09.013 +A. C. Raga,A family of functions for mass and energy flux splitting of the Euler equations.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#RagaC09,https://doi.org/10.1016/j.jcp.2009.09.006 +Sonia Fliss,Wave propagation in locally perturbed periodic media (case with absorption): Numerical aspects.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#FlissJ12,https://doi.org/10.1016/j.jcp.2011.10.007 +D. Serson,Velocity-correction schemes for the incompressible Navier-Stokes equations in general coordinate systems.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#SersonMS16,https://doi.org/10.1016/j.jcp.2016.04.026 +Kui Du,A numerical study on the stability of a class of Helmholtz problems.,2015,287,J. Comput. Physics,,db/journals/jcphy/jcphy287.html#DuLS15,https://doi.org/10.1016/j.jcp.2015.02.008 +Maurizio Tavelli,A pressure-based semi-implicit space-time discontinuous Galerkin method on staggered unstructured meshes for the solution of the compressible Navier-Stokes equations at all Mach numbers.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#TavelliD17,https://doi.org/10.1016/j.jcp.2017.03.030 +M. P. Ueckermann,Hybridizable discontinuous Galerkin projection methods for Navier-Stokes and Boussinesq equations.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#UeckermannL16,https://doi.org/10.1016/j.jcp.2015.11.028 +Jeevan Dahal,A numerical method for shock driven multiphase flow with evaporating particles.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#DahalM17,https://doi.org/10.1016/j.jcp.2017.04.074 +Y. Bao,Generalized thick strip modelling for vortex-induced vibration of long flexible cylinders.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#BaoPGS16,https://doi.org/10.1016/j.jcp.2016.05.062 +Jianping Meng,Assessment of the ellipsoidal-statistical Bhatnagar-Gross-Krook model for force-driven Poiseuille flows.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#MengWRZ13,https://doi.org/10.1016/j.jcp.2013.05.045 +Nauman Raza,Approximating time evolution related to Ginzburg-Landau functionals via Sobolev gradient methods in a finite-element setting.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#RazaSS10,https://doi.org/10.1016/j.jcp.2009.10.048 +Alexey Y. Chernyshenko,A hybrid finite volume - finite element method for bulk-surface coupled problems.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#ChernyshenkoOV18,https://doi.org/10.1016/j.jcp.2017.09.064 +James F. Kelly,Continuous and discontinuous Galerkin methods for a scalable three-dimensional nonhydrostatic atmospheric model: Limited-area mode.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#KellyG12,https://doi.org/10.1016/j.jcp.2012.04.042 +Nikolaos A. Gatsonis,A three-dimensional electrostatic particle-in-cell methodology on unstructured Delaunay-Voronoi grids.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#GatsonisS09,https://doi.org/10.1016/j.jcp.2009.02.003 +Natasha Flyer,Enhancing finite differences with radial basis functions: Experiments on the Navier-Stokes equations.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#FlyerBW16,https://doi.org/10.1016/j.jcp.2016.02.078 +Mohammad Shoeybi,An adaptive implicit-explicit scheme for the DNS and LES of compressible flows on unstructured grids.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#ShoeybiSHM10,https://doi.org/10.1016/j.jcp.2010.04.027 +Wei Ren 0003,An asymptotic-preserving Monte Carlo method for the Boltzmann equation.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#RenLJ14,https://doi.org/10.1016/j.jcp.2014.07.029 +Erich Elsen,Large calculation of the flow over a hypersonic vehicle using a GPU.,2008,227,J. Comput. Physics,24,db/journals/jcphy/jcphy227.html#ElsenLD08,https://doi.org/10.1016/j.jcp.2008.08.023 +Hasan çagan özen,A dynamical polynomial chaos approach for long-time evolution of SPDEs.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#OzenB17,https://doi.org/10.1016/j.jcp.2017.04.054 +Saumil Patel,A new splitting scheme to the discrete Boltzmann equation for non-ideal gases on non-uniform meshes.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#PatelL16,https://doi.org/10.1016/j.jcp.2016.09.060 +Tony C. Slaba,Reduced discretization error in HZETRN.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#SlabaBT13,https://doi.org/10.1016/j.jcp.2012.09.042 +Joshua A. Anderson,Massively parallel Monte Carlo for many-particle simulations on GPUs.,2013,254,J. Comput. Physics,,db/journals/jcphy/jcphy254.html#AndersonJGEG13,https://doi.org/10.1016/j.jcp.2013.07.023 +Hong Zhang 0008,Numerical investigations of two-phase flow with dynamic capillary pressure in porous media via a moving mesh method.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#ZhangZ17a,https://doi.org/10.1016/j.jcp.2017.05.041 +Nevsan Sengil,Highly efficient volume generation reservoirs in molecular simulations of gas flows.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#SengilE09,https://doi.org/10.1016/j.jcp.2009.03.016 +Li Wang,Implicit solution of the unsteady Euler equations for high-order accurate discontinuous Galerkin discretizations.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#WangM07,https://doi.org/10.1016/j.jcp.2007.03.002 +Phillip G. Schmitz,A fast nested dissection solver for Cartesian 3D elliptic problems using hierarchical matrices.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#SchmitzY14,https://doi.org/10.1016/j.jcp.2013.10.030 +Balaji Muralidharan,Simulation of moving boundaries interacting with compressible reacting flows using a second-order adaptive Cartesian cut-cell method.,2018,357,J. Comput. Physics,,db/journals/jcphy/jcphy357.html#MuralidharanM18,https://doi.org/10.1016/j.jcp.2017.12.030 +Saul A. Teukolsky,Formulation of discontinuous Galerkin methods for relativistic astrophysics.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#Teukolsky16,https://doi.org/10.1016/j.jcp.2016.02.031 +Mohammad Mirzadeh,Parallel level-set methods on adaptive tree-based grids.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#MirzadehGBG16,https://doi.org/10.1016/j.jcp.2016.06.017 +Hyea Hyun Kim,BDDC and FETI-DP preconditioners with adaptive coarse spaces for three-dimensional elliptic problems with oscillatory and high contrast coefficients.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#KimCW17,https://doi.org/10.1016/j.jcp.2017.08.003 +Lin Fu,A physics-motivated Centroidal Voronoi Particle domain decomposition method.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#FuHA17,https://doi.org/10.1016/j.jcp.2017.01.051 +Luca D'Alessandro,Shape optimization of solid-air porous phononic crystal slabs with widest full 3D bandgap for in-plane acoustic waves.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#DAlessandroBDWA17,https://doi.org/10.1016/j.jcp.2017.05.018 +Yaping Chen,Second-order accurate genuine BGK schemes for the ultra-relativistic flow simulations.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#ChenKT17,https://doi.org/10.1016/j.jcp.2017.08.022 +Assyr Abdulle,A three-scale offline-online numerical method for fluid flow in porous media.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#AbdulleBI17,https://doi.org/10.1016/j.jcp.2017.02.006 +L. F. Ricketson,An entropy based thermalization scheme for hybrid simulations of Coulomb collisions.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#RicketsonRCD14,https://doi.org/10.1016/j.jcp.2014.04.059 +Dzhelil Rufat,The chain collocation method: A spectrally accurate calculus of forms.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#RufatMMD14,https://doi.org/10.1016/j.jcp.2013.08.011 +Ludovic Métivier,Interlocked optimization and fast gradient algorithm for a seismic inverse problem.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#Metivier11,https://doi.org/10.1016/j.jcp.2011.06.019 +M. Meldi,A reduced order model based on Kalman filtering for sequential data assimilation of turbulent flows.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#MeldiP17,https://doi.org/10.1016/j.jcp.2017.06.042 +Luis Cueto-Felgueroso,Adaptive rational spectral methods for the linear stability analysis of nonlinear fourth-order problems.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#Cueto-FelguerosoJ09,https://doi.org/10.1016/j.jcp.2009.05.045 +Hongmei Yan,An efficient high-order boundary element method for nonlinear wave-wave and wave-body interactions.,2011,230,J. Comput. Physics,2,db/journals/jcphy/jcphy230.html#YanL11,https://doi.org/10.1016/j.jcp.2010.09.029 +Kathrin Bäumler,A subspace projection method for the implementation of interface conditions in a single-drop flow problem.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#BaumlerB13,https://doi.org/10.1016/j.jcp.2013.06.024 +Simone Deparis,FaCSI: A block parallel preconditioner for fluid-structure interaction in hemodynamics.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#DeparisFGQ16,https://doi.org/10.1016/j.jcp.2016.10.005 +Evaggelos Kritsikis,Beyond first-order finite element schemes in micromagnetics.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#KritsikisVBAT14,https://doi.org/10.1016/j.jcp.2013.08.035 +Adrian Sescu,Multidimensional optimization of finite difference schemes for Computational Aeroacoustics.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#SescuHA08,https://doi.org/10.1016/j.jcp.2008.01.008 +Elena Celledoni,"Preserving energy resp. dissipation in numerical PDEs using the ""Average Vector Field"" method.",2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#CelledoniGMMOOQ12,https://doi.org/10.1016/j.jcp.2012.06.022 +Kunihiko Toda,Multi-dimensional conservative semi-Lagrangian method of characteristics CIP for the shallow water equations.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#TodaOY09,https://doi.org/10.1016/j.jcp.2009.04.003 +Ianik Plante,Random sampling of the Green's Functions for reversible reactions with an intermediate state.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#PlanteDC13,https://doi.org/10.1016/j.jcp.2013.02.001 +Damien Violeau,Optimal time step for incompressible SPH.,2015,288,J. Comput. Physics,,db/journals/jcphy/jcphy288.html#VioleauL15,https://doi.org/10.1016/j.jcp.2015.02.015 +Paul G. A. Cizmas,Acceleration techniques for reduced-order models based on proper orthogonal decomposition.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#CizmasRBOB08,https://doi.org/10.1016/j.jcp.2008.04.036 +Eugene Vecharynski,A projected preconditioned conjugate gradient algorithm for computing many extreme eigenpairs of a Hermitian matrix.,2015,290,J. Comput. Physics,,db/journals/jcphy/jcphy290.html#VecharynskiYP15,https://doi.org/10.1016/j.jcp.2015.02.030 +Yu-Jia Li,Parallel implementation of the FETI-DPEM algorithm for general 3D EM simulations.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#LiJ09,https://doi.org/10.1016/j.jcp.2009.01.029 +Miaomiao Jin,Multiphysics modeling of two-phase film boiling within porous corrosion deposits.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#JinS16,https://doi.org/10.1016/j.jcp.2016.03.013 +Gregory H. Miller,An iterative boundary potential method for the infinite domain Poisson problem with interior Dirichlet boundaries.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#Miller08,https://doi.org/10.1016/j.jcp.2008.05.005 +Lehel Banjai,Fast convolution quadrature for the wave equation in three dimensions.,2014,279,J. Comput. Physics,,db/journals/jcphy/jcphy279.html#BanjaiK14,https://doi.org/10.1016/j.jcp.2014.08.049 +Zhuyin Ren,Second-order splitting schemes for a class of reactive systems.,2008,227,J. Comput. Physics,17,db/journals/jcphy/jcphy227.html#RenP08,https://doi.org/10.1016/j.jcp.2008.05.019 +Hermann Brunner,Artificial boundary conditions and finite difference approximations for a time-fractional diffusion-wave equation on a two-dimensional unbounded spatial domain.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#BrunnerHY14,https://doi.org/10.1016/j.jcp.2014.07.045 +Daniel M. Tartakovsky,Stochastic analysis of transport in tubes with rough walls.,2006,217,J. Comput. Physics,1,db/journals/jcphy/jcphy217.html#TartakovskyX06,https://doi.org/10.1016/j.jcp.2006.02.029 +Marco Onofri,A compressible magnetohydrodynamic numerical code with time-dependent boundary conditions in cylindrical geometry.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#OnofriPML07,https://doi.org/10.1016/j.jcp.2007.06.015 +Daniel W. Meyer,Consistent inflow and outflow boundary conditions for transported probability density function methods.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#MeyerJ07,https://doi.org/10.1016/j.jcp.2007.06.014 +C. H. Hague,A multiple flux boundary element method applied to the description of surface water waves.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#HagueS09,https://doi.org/10.1016/j.jcp.2009.04.012 +Jaap J. W. van der Vegt,Space-time discontinuous Galerkin method for nonlinear water waves.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#VegtX07,https://doi.org/10.1016/j.jcp.2006.11.031 +J. S. Cagnone,A p-adaptive LCP formulation for the compressible Navier-Stokes equations.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#CagnoneVN13,https://doi.org/10.1016/j.jcp.2012.08.053 +C. Veeramani,A fictitious domain formulation for flows with rigid particles: A non-Lagrange multiplier version.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#VeeramaniMN07,https://doi.org/10.1016/j.jcp.2006.10.028 +Yoonsang Lee,Multiscale numerical methods for passive advection-diffusion in incompressible turbulent flow fields.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#LeeE16,https://doi.org/10.1016/j.jcp.2016.04.046 +Bruno Stupfel,Sufficient uniqueness conditions for the solution of the time harmonic Maxwell's equations associated with surface impedance boundary conditions.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#StupfelP11,https://doi.org/10.1016/j.jcp.2011.02.032 +Hyung Taek Ahn,Adaptive moment-of-fluid method.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#AhnS09,https://doi.org/10.1016/j.jcp.2008.12.031 +Marc Bonnet,Elastic-wave identification of penetrable obstacles using shape-material sensitivity framework.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#BonnetG09,https://doi.org/10.1016/j.jcp.2008.09.009 +Dmitri Kuzmin,Hierarchical slope limiting in explicit and implicit discontinuous Galerkin methods.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#Kuzmin14,https://doi.org/10.1016/j.jcp.2013.04.032 +Hyunwook Park,A pre-conditioned implicit direct forcing based immersed boundary method for incompressible viscous flows.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#ParkPLC16,https://doi.org/10.1016/j.jcp.2016.03.035 +Vladislav Bukshtynov,Optimal reconstruction of material properties in complex multiphysics phenomena.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#BukshtynovP13,https://doi.org/10.1016/j.jcp.2013.02.034 +Slobodan Nickovic,Method for efficient prevention of gravity wave decoupling on rectangular semi-staggered grids.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#NickovicDVJCR11,https://doi.org/10.1016/j.jcp.2010.11.037 +S. M. Joshi,Higher-order multilevel framework for ADER scheme in computational aeroacoustics.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#JoshiC17,https://doi.org/10.1016/j.jcp.2017.02.062 +Amit Katiyar,A peridynamic formulation of pressure driven convective fluid transport in porous media.,2014,261,J. Comput. Physics,,db/journals/jcphy/jcphy261.html#KatiyarFOS14,https://doi.org/10.1016/j.jcp.2013.12.039 +Vinodh Bandaru,A hybrid finite difference-boundary element procedure for the simulation of turbulent MHD duct flow at finite magnetic Reynolds number.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#BandaruBKS16,https://doi.org/10.1016/j.jcp.2015.10.007 +Joseph M. Prusa,Computation at a coordinate singularity.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#Prusa18,https://doi.org/10.1016/j.jcp.2018.01.044 +Jean-Philippe Pons,Maintaining the point correspondence in the level set framework.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#PonsHKF06,https://doi.org/10.1016/j.jcp.2006.05.036 +Ken-ichi Tsubota,Short note on the bending models for a membrane in capsule mechanics: Comparison between continuum and discrete models.,2014,277,J. Comput. Physics,,db/journals/jcphy/jcphy277.html#Tsubota14,https://doi.org/10.1016/j.jcp.2014.08.007 +Lexing Ying,Fast geodesics computation with the phase flow method.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#YingC06,https://doi.org/10.1016/j.jcp.2006.07.032 +Carlo Fazioli,Stable computation of the functional variation of the Dirichlet-Neumann operator.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#FazioliN10,https://doi.org/10.1016/j.jcp.2009.10.021 +Keisuke Sugiura,An extension of Godunov SPH: Application to negative pressure media.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#SugiuraI16,https://doi.org/10.1016/j.jcp.2015.12.030 +Lars Ferm,An adaptive algorithm for simulation of stochastic reaction-diffusion processes.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#FermHL10,https://doi.org/10.1016/j.jcp.2009.09.030 +Yingnan Zhang,A numerical study of the 3-periodic wave solutions to KdV-type equations.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#ZhangHS18,https://doi.org/10.1016/j.jcp.2017.11.027 +Eugenia Kim,The mimetic finite difference method for the Landau-Lifshitz equation.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#KimL17,https://doi.org/10.1016/j.jcp.2016.10.016 +Dmitriy Y. Anistratov,Computational transport methodology based on decomposition of a problem domain into transport and diffusive subdomains.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#AnistratovS12,https://doi.org/10.1016/j.jcp.2012.06.008 +Amit Surana,Vortex dynamics in complex domains on a spherical surface.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#SuranaC08,https://doi.org/10.1016/j.jcp.2008.02.027 +Magnus Ekeberg,Fast pseudolikelihood maximization for direct-coupling analysis of protein structure from many homologous amino-acid sequences.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#EkebergHA14,https://doi.org/10.1016/j.jcp.2014.07.024 +Bokai Yan,A hybrid method with deviational particles for spatial inhomogeneous plasma.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#Yan16,https://doi.org/10.1016/j.jcp.2015.12.050 +Vincent Michaud-Rioux,RESCU: A real space electronic structure method.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#Michaud-RiouxZG16,https://doi.org/10.1016/j.jcp.2015.12.014 +Giovanni Russo 0001,Computation of strained epitaxial growth in three dimensions by kinetic Monte Carlo.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#RussoS06,https://doi.org/10.1016/j.jcp.2005.10.008 +Ji Peng,A weighted l1-minimization approach for sparse polynomial chaos expansions.,2014,267,J. Comput. Physics,,db/journals/jcphy/jcphy267.html#PengHD14,https://doi.org/10.1016/j.jcp.2014.02.024 +Shreyas Bidadi,Quantification of numerical diffusivity due to TVD schemes in the advection equation.,2014,261,J. Comput. Physics,,db/journals/jcphy/jcphy261.html#BidadiR14,https://doi.org/10.1016/j.jcp.2013.12.011 +Aaditya V. Rangan,Numerical methods for solving moment equations in kinetic theory of neuronal network dynamics.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#RanganCT07,https://doi.org/10.1016/j.jcp.2006.06.036 +Matania Ben-Artzi,Hyperbolic conservation laws on the sphere. A geometry-compatible finite volume scheme.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#Ben-ArtziFL09,https://doi.org/10.1016/j.jcp.2009.04.032 +Wei-Fan Hu,Vesicle electrohydrodynamic simulations by coupling immersed boundary and immersed interface method.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#HuLSY16,https://doi.org/10.1016/j.jcp.2016.04.035 +Thomas Heuzé,Lax-Wendroff and TVD finite volume methods for unidimensional thermomechanical numerical simulations of impacts on elastic-plastic solids.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#Heuze17,https://doi.org/10.1016/j.jcp.2017.06.027 +Xiang Chen,An improved 3D MoF method based on analytical partial derivatives.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#ChenZ16,https://doi.org/10.1016/j.jcp.2016.08.051 +Linhai Qiu,An adaptive discretization of compressible flow using a multitude of moving Cartesian grids.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#QiuLF16,https://doi.org/10.1016/j.jcp.2015.10.025 +I. Yucel Akkutlu,Multiscale model reduction for shale gas transport in poroelastic fractured media.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#AkkutluEVW18,https://doi.org/10.1016/j.jcp.2017.10.023 +Teresa S. Bailey,A piecewise linear finite element discretization of the diffusion equation for arbitrary polyhedral grids.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#BaileyAYZ08,https://doi.org/10.1016/j.jcp.2007.11.026 +Nikolaos A. Gatsonis,A smooth dissipative particle dynamics method for domains with arbitrary-geometry solid boundaries.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#GatsonisPY14,https://doi.org/10.1016/j.jcp.2013.08.059 +Yicong Ma,Robust preconditioners for incompressible MHD models.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#MaHHX16,https://doi.org/10.1016/j.jcp.2016.04.019 +Qinzhuo Liao,A two-stage adaptive stochastic collocation method on nested sparse grids for multiphase flow in randomly heterogeneous porous media.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#LiaoZT17,https://doi.org/10.1016/j.jcp.2016.10.061 +Vincenzo Pierro,Stochastic first passage time accelerated with CUDA.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#PierroTMF18,https://doi.org/10.1016/j.jcp.2018.01.039 +Adam M. Oberman,Filtered schemes for Hamilton-Jacobi equations: A simple construction of convergent accurate difference schemes.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#ObermanS15,https://doi.org/10.1016/j.jcp.2014.12.039 +Vilas Shinde,A Galerkin-free model reduction approach for the Navier-Stokes equations.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#ShindeLBHB16,https://doi.org/10.1016/j.jcp.2015.12.051 +Roman Samulyak,Lagrangian particle method for compressible fluid dynamics.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#SamulyakWC18,https://doi.org/10.1016/j.jcp.2018.02.004 +Bohai Zhang,Full scale multi-output Gaussian process emulator with nonseparable auto-covariance functions.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#ZhangKSKL15,https://doi.org/10.1016/j.jcp.2015.08.006 +Moubin Liu,Dissipative particle dynamics simulation of fluid motion through an unsaturated fracture and fracture junction.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#LiuMH07,https://doi.org/10.1016/j.jcp.2006.07.017 +Bo-Wen Lin,High-resolution Roe's scheme and characteristic boundary conditions for solving complex wave reflection phenomena in a tree-like arterial structure.,2014,260,J. Comput. Physics,,db/journals/jcphy/jcphy260.html#LinL14,https://doi.org/10.1016/j.jcp.2013.12.033 +H. Cho,Numerical methods for high-dimensional probability density function equations.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#ChoVK16,https://doi.org/10.1016/j.jcp.2015.10.030 +Andreas Sandvin,Auxiliary variables for 3D multiscale simulations in heterogeneous porous media.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#SandvinKN13,https://doi.org/10.1016/j.jcp.2012.12.016 +K. B. Nakshatrala,Non-negative mixed finite element formulations for a tensorial diffusion equation.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#NakshatralaV09,https://doi.org/10.1016/j.jcp.2009.05.039 +Emilie Marchandise,A stabilized finite element method using a discontinuous level set approach for solving two phase incompressible flows.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#MarchandiseR06,https://doi.org/10.1016/j.jcp.2006.04.015 +Hailiang Liu,A Bloch band based level set method for computing the semiclassical limit of Schrödinger equations.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#LiuW09,https://doi.org/10.1016/j.jcp.2009.01.028 +Kris Van den Abeele,An accuracy and stability study of the 2D spectral volume method.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#AbeeleL07,https://doi.org/10.1016/j.jcp.2007.05.004 +N. O. Braun,Regularization method for large eddy simulations of shock-turbulence interactions.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#BraunPM18,https://doi.org/10.1016/j.jcp.2018.01.052 +Hyun Geun Lee,First and second order operator splitting methods for the phase field crystal equation.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#LeeSL15,https://doi.org/10.1016/j.jcp.2015.06.038 +Xiaolei Yang,A smoothing technique for discrete delta functions with application to immersed boundary method in moving boundary simulations.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#YangZLH09,https://doi.org/10.1016/j.jcp.2009.07.023 +Francisco Rus,Adiabatic perturbations for compactons under dissipation and numerically-induced dissipation.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#RusV09,https://doi.org/10.1016/j.jcp.2009.03.005 +Sebastian Aland,Time integration for diffuse interface models for two-phase flow.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#Aland14,https://doi.org/10.1016/j.jcp.2013.12.055 +Nils Gerhard,Multiwavelet-based grid adaptation with discontinuous Galerkin schemes for shallow water equations.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#GerhardCMK15,https://doi.org/10.1016/j.jcp.2015.08.030 +Jeremiah Birrell,Boltzmann equation solver adapted to emergent chemical non-equilibrium.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#BirrellWR15,https://doi.org/10.1016/j.jcp.2014.10.056 +Wei-Koon Lee,A fast adaptive quadtree scheme for a two-layer shallow water model.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#LeeBT11,https://doi.org/10.1016/j.jcp.2011.03.007 +Satoshi Ii,CIP/multi-moment finite volume method for Euler equations: A semi-Lagrangian characteristic formulation.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#IiX07,https://doi.org/10.1016/j.jcp.2006.08.015 +Moujin Zhang,Solving the MHD equations by the space-time conservation element and solution element method.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#ZhangYLCB06,https://doi.org/10.1016/j.jcp.2005.10.006 +Neil G. Dickson,Importance of explicit vectorization for CPU and GPU software performance.,2011,230,J. Comput. Physics,13,db/journals/jcphy/jcphy230.html#DicksonKH11,https://doi.org/10.1016/j.jcp.2011.03.041 +Andras Pataki,Fast elliptic solvers in cylindrical coordinates and the Coulomb collision operator.,2011,230,J. Comput. Physics,21,db/journals/jcphy/jcphy230.html#PatakiG11,https://doi.org/10.1016/j.jcp.2011.07.005 +Alain Lerat,Vorticity-preserving schemes for the compressible Euler equations.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#LeratFS07,https://doi.org/10.1016/j.jcp.2006.12.025 +M. P. Ueckermann,Numerical schemes for dynamically orthogonal equations of stochastic fluid and ocean flows.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#UeckermannLS13,https://doi.org/10.1016/j.jcp.2012.08.041 +Tobias Kempe,Imposing the free-slip condition with a continuous forcing immersed boundary method.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#KempeLSF15,https://doi.org/10.1016/j.jcp.2014.11.015 +Olivier Larroche,An efficient explicit numerical scheme for diffusion-type equations with a highly inhomogeneous and highly anisotropic diffusion tensor.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#Larroche07,https://doi.org/10.1016/j.jcp.2006.09.016 +Patrick Hassard,An efficient boundary element formulation for doubly-periodic two-dimensional Stokes flow with pressure boundary conditions.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#HassardTFL18,https://doi.org/10.1016/j.jcp.2017.12.010 +Nail A. Gumerov,A method to compute periodic sums.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#GumerovD14,https://doi.org/10.1016/j.jcp.2014.04.039 +Taehun Lee,Lattice Boltzmann simulations of micron-scale drop impact on dry surfaces.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#LeeL10,https://doi.org/10.1016/j.jcp.2010.07.007 +Jaber J. Hasbestan,Binarized-octree generation for Cartesian adaptive mesh refinement around immersed geometries.,2018,368,J. Comput. Physics,,db/journals/jcphy/jcphy368.html#HasbestanS18,https://doi.org/10.1016/j.jcp.2018.04.039 +Yongbo Deng,Topology optimization of unsteady incompressible Navier-Stokes flows.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#DengLZLW11,https://doi.org/10.1016/j.jcp.2011.05.004 +Eric Lamballais,Straightforward high-order numerical dissipation via the viscous term for direct and large eddy simulation.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#LamballaisFL11,https://doi.org/10.1016/j.jcp.2011.01.040 +Girish V. Nivarti,A mesh partitioning algorithm for preserving spatial locality in arbitrary geometries.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#NivartiSB15,https://doi.org/10.1016/j.jcp.2014.10.022 +Christophe Bogey,Finite differences for coarse azimuthal discretization and for reduction of effective resolution near origin of cylindrical flow equations.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#BogeyCB11,https://doi.org/10.1016/j.jcp.2010.10.031 +Catherine Kublik,An implicit interface boundary integral method for Poisson's equation on arbitrary domains.,2013,247,J. Comput. Physics,,db/journals/jcphy/jcphy247.html#KublikTT13,https://doi.org/10.1016/j.jcp.2013.03.049 +ágnes Havasi,On Richardson extrapolation for low-dissipation low-dispersion diagonally implicit Runge-Kutta schemes.,2018,358,J. Comput. Physics,,db/journals/jcphy/jcphy358.html#HavasiK18,https://doi.org/10.1016/j.jcp.2017.12.043 +Colin B. Macdonald,Solving eigenvalue problems on curved surfaces using the Closest Point Method.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#MacdonaldBR11,https://doi.org/10.1016/j.jcp.2011.06.021 +Jae Wan Shim,Parametric lattice Boltzmann method.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#Shim17,https://doi.org/10.1016/j.jcp.2017.02.057 +Benzhuo Lu,New-version-fast-multipole-method accelerated electrostatic calculations in biomolecular systems.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#LuCM07,https://doi.org/10.1016/j.jcp.2007.05.026 +Alexander V. Rodionov,Artificial viscosity in Godunov-type schemes to cure the carbuncle phenomenon.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#Rodionov17,https://doi.org/10.1016/j.jcp.2017.05.024 +Rubén M. Cabezón,A one-parameter family of interpolating kernels for smoothed particle hydrodynamics studies.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#CabezonGR08,https://doi.org/10.1016/j.jcp.2008.06.014 +Selim Esedoglu,Diffusion generated motion using signed distance functions.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#EsedogluRT10,https://doi.org/10.1016/j.jcp.2009.10.002 +T. Blesgen,Approximation of the electron density of Aluminium clusters in tensor-product format.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#BlesgenGK12,https://doi.org/10.1016/j.jcp.2011.12.009 +Stefano Berrone,An optimization approach for large scale simulations of discrete fracture network flows.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#BerronePS14,https://doi.org/10.1016/j.jcp.2013.09.028 +Zhen Luo,Shape and topology optimization for electrothermomechanical microactuators using level set methods.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#LuoTM09,https://doi.org/10.1016/j.jcp.2009.01.010 +Rui Xu,Accuracy and stability in incompressible SPH (ISPH) based on the projection method and a new approach.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#XuSL09,https://doi.org/10.1016/j.jcp.2009.05.032 +Paul Kotyczka,Weak form of Stokes-Dirac structures and geometric discretization of port-Hamiltonian systems.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#KotyczkaML18,https://doi.org/10.1016/j.jcp.2018.02.006 +Pingbing Ming,Numerical methods for multiscale elliptic problems.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#MingY06,https://doi.org/10.1016/j.jcp.2005.09.024 +Ryo Onishi,Large-scale forcing with less communication in finite-difference simulations of stationary isotropic turbulence.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#OnishiBT11,https://doi.org/10.1016/j.jcp.2011.02.034 +Chi Zhang,A weakly compressible SPH method based on a low-dissipation Riemann solver.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#ZhangHA17,https://doi.org/10.1016/j.jcp.2017.01.027 +Mohamed Zerroukat,On the monotonic and conservative transport on overset/Yin-Yang grids.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#ZerroukatA15a,https://doi.org/10.1016/j.jcp.2015.09.006 +Marat I. Latypov,Data-driven reduced order models for effective yield strength and partitioning of strain in multiphase materials.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#LatypovK17,https://doi.org/10.1016/j.jcp.2017.06.013 +Dong Liang,A fractional step ELLAM approach to high-dimensional convection-diffusion problems with forward particle tracking.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#LiangDW07,https://doi.org/10.1016/j.jcp.2006.06.022 +Achim Schädle,Domain decomposition method for Maxwell's equations: Scattering off periodic structures.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#SchadleZBKS07,https://doi.org/10.1016/j.jcp.2007.04.017 +Gnana M. Subramaniam,A transformed path integral approach for solution of the Fokker-Planck equation.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#SubramaniamV17,https://doi.org/10.1016/j.jcp.2017.06.002 +Justin Hudson,A high resolution scheme for Eulerian gas-solid two-phase isentropic flow.,2006,216,J. Comput. Physics,2,db/journals/jcphy/jcphy216.html#HudsonH06,https://doi.org/10.1016/j.jcp.2005.12.010 +Songze Chen,A unified gas kinetic scheme with moving mesh and velocity space adaptation.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#ChenXLC12,https://doi.org/10.1016/j.jcp.2012.05.019 +Alexei Heintz,Fast numerical method for the Boltzmann equation on non-uniform grids.,2008,227,J. Comput. Physics,13,db/journals/jcphy/jcphy227.html#HeintzKG08,https://doi.org/10.1016/j.jcp.2008.03.028 +Jianying Zhang,Lattice Boltzmann simulations for the vortex tori pattern in the three-dimensional cubic-quintic complex Ginzburg-Landau equation.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#ZhangYW16,https://doi.org/10.1016/j.jcp.2015.11.039 +Song Li,Extension and optimization of the FIND algorithm: Computing Green's and less-than Green's functions.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#LiD12,https://doi.org/10.1016/j.jcp.2011.05.027 +Adrien Gomar,Convergence of Fourier-based time methods for turbomachinery wake passing problems.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#GomarBSDCF14,https://doi.org/10.1016/j.jcp.2014.08.029 +M. Parsani,An implicit high-order spectral difference approach for large eddy simulation.,2010,229,J. Comput. Physics,14,db/journals/jcphy/jcphy229.html#ParsaniGLT10,https://doi.org/10.1016/j.jcp.2010.03.038 +Di Zhang,A review on TVD schemes and a refined flux-limiter for steady-state calculations.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#ZhangJLC15,https://doi.org/10.1016/j.jcp.2015.08.042 +Haksu Moon,Stable pseudoanalytical computation of electromagnetic fields from arbitrarily-oriented dipoles in cylindrically stratified media.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#MoonTD14,https://doi.org/10.1016/j.jcp.2014.05.006 +Chein-Shan Liu,A multiple-scale Pascal polynomial for 2D Stokes and inverse Cauchy-Stokes problems.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#LiuY16,https://doi.org/10.1016/j.jcp.2016.02.017 +Joris C. G. Verschaeve,A curved no-slip boundary condition for the lattice Boltzmann method.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#VerschaeveM10,https://doi.org/10.1016/j.jcp.2010.05.022 +Stephen Wollman,Numerical approximation of the Vlasov-Maxwell-Fokker-Planck system in two dimensions.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#Wollman12,https://doi.org/10.1016/j.jcp.2011.12.018 +Wei Guo 0004,Superconvergence of discontinuous Galerkin and local discontinuous Galerkin methods: Eigen-structure analysis based on Fourier approach.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#GuoZQ13,https://doi.org/10.1016/j.jcp.2012.10.020 +Badrinarayanan Velamur Asokan,A stochastic variational multiscale method for diffusion in heterogeneous random media.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#AsokanZ06,https://doi.org/10.1016/j.jcp.2006.02.026 +Federico A. Stasyszyn,A vector potential implementation for smoothed particle magnetohydrodynamics.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#StasyszynE15,https://doi.org/10.1016/j.jcp.2014.11.011 +Jie Liu 0003,A stable second-order scheme for fluid-structure interaction with strong added-mass effects.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#LiuJG14,https://doi.org/10.1016/j.jcp.2014.04.020 +N. J. Sircombe,VALIS: A split-conservative scheme for the relativistic 2D Vlasov-Maxwell system.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#SircombeA09,https://doi.org/10.1016/j.jcp.2009.03.029 +Yong Liu,Entropy stable high order discontinuous Galerkin methods for ideal compressible MHD on structured meshes.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#LiuSZ18,https://doi.org/10.1016/j.jcp.2017.10.043 +Zhijun Shen,A robust HLLC-type Riemann solver for strong shock.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#ShenYY16,https://doi.org/10.1016/j.jcp.2016.01.001 +M. Alvaro,Numerical method for hydrodynamic modulation equations describing Bloch oscillations in semiconductor superlattices.,2012,231,J. Comput. Physics,13,db/journals/jcphy/jcphy231.html#AlvaroCB12,https://doi.org/10.1016/j.jcp.2012.02.024 +Y. Ling,A numerical source of small-scale number-density fluctuations in Eulerian-Lagrangian simulations of multiphase flows.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#LingHB10,https://doi.org/10.1016/j.jcp.2009.11.011 +Bharat B. Tripathi,Element centered smooth artificial viscosity in discontinuous Galerkin method for propagation of acoustic shock waves on unstructured meshes.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#TripathiLBCM18,https://doi.org/10.1016/j.jcp.2018.04.010 +Per Lötstedt,Simulation of stochastic diffusion via first exit *.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#LotstedtM15,https://doi.org/10.1016/j.jcp.2015.07.065 +Lise Charlot,A continuous Lagrangian sensitivity equation method for incompressible flow.,2012,231,J. Comput. Physics,18,db/journals/jcphy/jcphy231.html#CharlotEP12,https://doi.org/10.1016/j.jcp.2012.02.028 +Gabriel Stoltz,Stable schemes for dissipative particle dynamics with conserved energy.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#Stoltz17,https://doi.org/10.1016/j.jcp.2017.03.059 +Jinglai Li,A frozen Gaussian approximation-based multi-level particle swarm optimization for seismic inversion.,2015,296,J. Comput. Physics,,db/journals/jcphy/jcphy296.html#LiLY15,https://doi.org/10.1016/j.jcp.2015.04.050 +Yuanzhen Cheng,Fast and stable explicit operator splitting methods for phase-field models.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#ChengKQT15,https://doi.org/10.1016/j.jcp.2015.09.005 +Ignace Loris,Nonlinear regularization techniques for seismic tomography.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#LorisDNDR10,https://doi.org/10.1016/j.jcp.2009.10.020 +T. Coupez,Metric construction by length distribution tensor and edge based error for anisotropic adaptive meshing.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#Coupez11,https://doi.org/10.1016/j.jcp.2010.11.041 +Vladimir Fuchs,On the integration of equations of motion for particle-in-cell codes.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#FuchsG06,https://doi.org/10.1016/j.jcp.2005.09.026 +Yu-Hsin Shi,A gas-kinetic BGK scheme for semiclassical Boltzmann hydrodynamic transport.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#ShiY08,https://doi.org/10.1016/j.jcp.2008.06.036 +Stéphane Bedwani,Nanoscale adaptive meshing for rapid STM imaging.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#BedwaniGR08,https://doi.org/10.1016/j.jcp.2008.04.005 +Y. V. S. S. Sanyasiraju,Local radial basis function based gridfree scheme for unsteady incompressible viscous flows.,2008,227,J. Comput. Physics,20,db/journals/jcphy/jcphy227.html#SanyasirajuC08,https://doi.org/10.1016/j.jcp.2008.07.004 +Andrei I. Tolstykh,Development of arbitrary-order multioperators-based schemes for parallel calculations.: Part 2: Families of compact approximations with two-diagonal inversions and related multioperators.,2008,227,J. Comput. Physics,5,db/journals/jcphy/jcphy227.html#Tolstykh08,https://doi.org/10.1016/j.jcp.2007.11.036 +Jae Wook Kim,An advanced synthetic eddy method for the computation of aerofoil-turbulence interaction noise.,2015,287,J. Comput. Physics,,db/journals/jcphy/jcphy287.html#KimH15,https://doi.org/10.1016/j.jcp.2015.01.039 +G. Colomer,Parallel algorithms for Sn transport sweeps on unstructured meshes.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#ColomerBTR13,https://doi.org/10.1016/j.jcp.2012.07.009 +Bernard Parent,Modeling weakly-ionized plasmas in magnetic field: A new computationally-efficient approach.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#ParentMS15,https://doi.org/10.1016/j.jcp.2015.08.010 +Daniel Lagrava,Advances in multi-domain lattice Boltzmann grid refinement.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#LagravaMLC12,https://doi.org/10.1016/j.jcp.2012.03.015 +P. Bonneton,A splitting approach for the fully nonlinear and weakly dispersive Green-Naghdi model.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#BonnetonCLMT11,https://doi.org/10.1016/j.jcp.2010.11.015 +Angelo Iollo,A lagrangian scheme for the solution of the optimal mass transfer problem.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#IolloL11,https://doi.org/10.1016/j.jcp.2011.01.037 +Stéphane Balac,An Embedded Split-Step method for solving the nonlinear Schrödinger equation in optics.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#BalacM15,https://doi.org/10.1016/j.jcp.2014.09.018 +Hui Xu 0005,Some iterative finite element methods for steady Navier-Stokes equations with different viscosities.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#XuH13,https://doi.org/10.1016/j.jcp.2012.07.020 +A. Cervone,A geometrical predictor-corrector advection scheme and its application to the volume fraction function.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#CervoneMSZ09,https://doi.org/10.1016/j.jcp.2008.09.016 +Joshua A. Krakos,Sensitivity analysis of limit cycle oscillations.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#KrakosWHD12,https://doi.org/10.1016/j.jcp.2012.01.001 +Alex Simmons,A finite volume method for two-sided fractional diffusion equations on non-uniform meshes.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#SimmonsYM17,https://doi.org/10.1016/j.jcp.2017.01.061 +Florian Blachère,An admissibility and asymptotic-preserving scheme for systems of conservation laws with source term on 2D unstructured meshes.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#BlachereT16,https://doi.org/10.1016/j.jcp.2016.03.045 +Lorena A. Barba,Global field interpolation for particle methods.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#BarbaR10,https://doi.org/10.1016/j.jcp.2009.10.031 +M. A. Cardoso,Linearized reduced-order models for subsurface flow simulation.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#CardosoD10,https://doi.org/10.1016/j.jcp.2009.10.004 +Mehdi Dehghan,The use of proper orthogonal decomposition (POD) meshless RBF-FD technique to simulate the shallow water equations.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#DehghanA17,https://doi.org/10.1016/j.jcp.2017.09.007 +Junghan Kim,Development of EEM based silicon-water and silica-water wall potentials for non-reactive molecular dynamics simulations.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#KimIFNS14,https://doi.org/10.1016/j.jcp.2014.02.046 +Bruno Dubroca,A consistent approach for the coupling of radiation and hydrodynamics at low Mach number.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#DubrocaST07,https://doi.org/10.1016/j.jcp.2007.01.011 +Anotida Madzvamuse,Velocity-induced numerical solutions of reaction-diffusion systems on continuously growing domains.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#MadzvamuseM07,https://doi.org/10.1016/j.jcp.2006.11.022 +Grigoriy M. Drozdov,Time- and memory-efficient representation of complex mesoscale potentials.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#DrozdovOO17,https://doi.org/10.1016/j.jcp.2017.04.056 +Haibing Wang,Numerical solution of an inverse boundary value problem for the heat equation with unknown inclusions.,2018,369,J. Comput. Physics,,db/journals/jcphy/jcphy369.html#WangL18,https://doi.org/10.1016/j.jcp.2018.05.008 +Brian E. Moore,Conformal conservation laws and geometric integration for damped Hamiltonian PDEs.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#MooreNS13,https://doi.org/10.1016/j.jcp.2012.08.010 +Gabriel I. Font,Computational acceleration of orbital neutral sensor ionizer simulation through phenomena separation.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#Font16,https://doi.org/10.1016/j.jcp.2016.02.060 +Daniel T. Graves,An efficient solver for the equations of resistive MHD with spatially-varying resistivity.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#GravesTMC08,https://doi.org/10.1016/j.jcp.2008.01.044 +Liping Liu,A comparison of classical and high dimensional harmonic balance approaches for a Duffing oscillator.,2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#LiuTDAH06,https://doi.org/10.1016/j.jcp.2005.10.026 +Hang Ding,Diffuse interface model for incompressible two-phase flows with large density ratios.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#DingS007,https://doi.org/10.1016/j.jcp.2007.06.028 +Colin J. Cotter,Numerical wave propagation for the triangular P1DG-P2 finite element pair.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#CotterH11,https://doi.org/10.1016/j.jcp.2010.12.024 +Chang-Ming Chen,A Fourier method for the fractional diffusion equation describing sub-diffusion.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#ChenLTA07,https://doi.org/10.1016/j.jcp.2007.05.012 +Sooyoung Choi,Impact of inflow transport approximation on light water reactor analysis.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#ChoiSLL15,https://doi.org/10.1016/j.jcp.2015.07.005 +S. Unnikrishnan,A high-fidelity method to analyze perturbation evolution in turbulent flows.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#UnnikrishnanG16,https://doi.org/10.1016/j.jcp.2016.01.017 +Sotiria Lampoudi,Effect of excluded volume on 2D discrete stochastic chemical kinetics.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#LampoudiGP09,https://doi.org/10.1016/j.jcp.2009.02.002 +Paul A. Ullrich,An analysis of 1D finite-volume methods for geophysical problems on refined grids.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#UllrichJ11,https://doi.org/10.1016/j.jcp.2010.10.014 +Thomas Unfer,An asynchronous framework for the simulation of the plasma/flow interaction.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#Unfer13,https://doi.org/10.1016/j.jcp.2012.11.018 +Qiang Du,Stabilized linear semi-implicit schemes for the nonlocal Cahn-Hilliard equation.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#DuJLQ18,https://doi.org/10.1016/j.jcp.2018.02.023 +Amirali Kia,Fast electrostatic force calculation on parallel computer clusters.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#KiaKD08,https://doi.org/10.1016/j.jcp.2008.06.016 +Masaki Satoh,Nonhydrostatic icosahedral atmospheric model (NICAM) for global cloud resolving simulations.,2008,227,J. Comput. Physics,7,db/journals/jcphy/jcphy227.html#SatohMTMNI08,https://doi.org/10.1016/j.jcp.2007.02.006 +Mario Ricchiuto,Stabilized residual distribution for shallow water simulations.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#RicchiutoB09,https://doi.org/10.1016/j.jcp.2008.10.020 +Hang Ding,A stencil adaptive algorithm for finite difference solution of incompressible viscous flows.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#Ding006,https://doi.org/10.1016/j.jcp.2005.09.021 +Jin Sun Sohn,Dynamics of multicomponent vesicles in a viscous fluid.,2010,229,J. Comput. Physics,1,db/journals/jcphy/jcphy229.html#SohnTLVL10,https://doi.org/10.1016/j.jcp.2009.09.017 +Mounir Bennoune,Uniformly stable numerical schemes for the Boltzmann equation preserving the compressible Navier-Stokes asymptotics.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#BennouneLM08,https://doi.org/10.1016/j.jcp.2007.11.032 +Dries Vande Ginste,Error control in the perfectly matched layer based multilevel fast multipole algorithm.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#GinsteKZ09,https://doi.org/10.1016/j.jcp.2009.03.034 +L. S. Ferreira,Wang-Landau sampling: Saving CPU time.,2018,358,J. Comput. Physics,,db/journals/jcphy/jcphy358.html#FerreiraJLC18,https://doi.org/10.1016/j.jcp.2018.01.003 +Rodrigo C. Moura,Lyapunov exponents and adaptive mesh refinement for high-speed flows using a discontinuous Galerkin scheme.,2016,319,J. Comput. Physics,,db/journals/jcphy/jcphy319.html#MouraSBFO16,https://doi.org/10.1016/j.jcp.2016.05.019 +Victor A. Rukavishnikov,New numerical method for solving time-harmonic Maxwell equations with strong singularity.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#RukavishnikovM12,https://doi.org/10.1016/j.jcp.2011.11.031 +Simone Elke Hieber,An immersed boundary method for smoothed particle hydrodynamics of self-propelled swimmers.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#HieberK08,https://doi.org/10.1016/j.jcp.2008.06.017 +X. Y. Wang,SVD-GFD scheme to simulate complex moving body problems in 3D space.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#WangYYK10,https://doi.org/10.1016/j.jcp.2009.11.037 +Richard P. Dwight,Heuristic a posteriori estimation of error due to dissipation in finite volume schemes and application to mesh adaptation.,2008,227,J. Comput. Physics,5,db/journals/jcphy/jcphy227.html#Dwight08,https://doi.org/10.1016/j.jcp.2007.11.020 +Youngho Suh,A numerical method for the calculation of drag and lift of a deformable droplet in shear flow.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#SuhL13,https://doi.org/10.1016/j.jcp.2013.01.034 +Felix örley,Cut-element based immersed boundary method for moving geometries in compressible liquid flows with cavitation.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#OrleyPHA15,https://doi.org/10.1016/j.jcp.2014.11.028 +Gang Xu 0001,Constructing analysis-suitable parameterization of computational domain from CAD boundary by variational harmonic method.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#XuMDG13,https://doi.org/10.1016/j.jcp.2013.06.029 +Jing Li,Evaluation of failure probability via surrogate models.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#LiX10,https://doi.org/10.1016/j.jcp.2010.08.022 +H. Z. Yuan,A free energy-based surface tension force model for simulation of multiphase flows by level-set method.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#YuanCSWNS17,https://doi.org/10.1016/j.jcp.2017.05.020 +Aymeric Vié,Size-velocity correlations in hybrid high order moment/multi-fluid methods for polydisperse evaporating sprays: Modeling and numerical issues.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#VieLM13,https://doi.org/10.1016/j.jcp.2012.11.043 +Khosro Shahbazi,A high-order discontinuous Galerkin method for the unsteady incompressible Navier-Stokes equations.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#ShahbaziFE07,https://doi.org/10.1016/j.jcp.2006.07.029 +Xiangyu Hu 0002,Positivity-preserving method for high-order conservative schemes solving compressible Euler equations.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#0002AS13,https://doi.org/10.1016/j.jcp.2013.01.024 +Yannis Kallinderis,Flow feature detection for grid adaptation and flow visualization.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#KallinderisLA17,https://doi.org/10.1016/j.jcp.2017.04.001 +Martin Schneider 0010,Convergence of nonlinear finite volume schemes for heterogeneous anisotropic diffusion on general meshes.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#SchneiderAEF17,https://doi.org/10.1016/j.jcp.2017.09.003 +Ivo F. Sbalzarini,PPM - A highly efficient parallel particle-mesh library for the simulation of continuum systems.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#SbalzariniWBHKK06,https://doi.org/10.1016/j.jcp.2005.11.017 +Magnus Svärd,On the order of accuracy for difference approximations of initial-boundary value problems.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#SvardN06,https://doi.org/10.1016/j.jcp.2006.02.014 +Yanyuan Xing,A higher order numerical method for time fractional partial differential equations with nonsmooth data.,2018,357,J. Comput. Physics,,db/journals/jcphy/jcphy357.html#XingY18,https://doi.org/10.1016/j.jcp.2017.12.035 +Eid H. Doha,New algorithms for solving high even-order differential equations using third and fourth Chebyshev-Galerkin methods.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#DohaAB13,https://doi.org/10.1016/j.jcp.2012.11.009 +Ilias Malgarinos,Coupling a local adaptive grid refinement technique with an interface sharpening scheme for the simulation of two-phase flow and free-surface flows using VOF methodology.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#MalgarinosNG15,https://doi.org/10.1016/j.jcp.2015.08.004 +Cuong Ngo,A study on moving mesh finite element solution of the porous medium equation.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#NgoH17,https://doi.org/10.1016/j.jcp.2016.11.045 +Jiaqi Yang,A CG-FFT approach to the solution of a stress-velocity formulation of three-dimensional elastic scattering problems.,2008,227,J. Comput. Physics,24,db/journals/jcphy/jcphy227.html#YangABHR08,https://doi.org/10.1016/j.jcp.2008.07.027 +Samet Y. Kadioglu,Adaptive solution techniques for simulating underwater explosions and implosions.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#KadiogluS08,https://doi.org/10.1016/j.jcp.2007.10.019 +Bradley Martin,Seismic modeling with radial basis function-generated finite differences (RBF-FD) - a simplified treatment of interfaces.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#MartinF17,https://doi.org/10.1016/j.jcp.2017.01.065 +Dmitriy Y. Anistratov,Stability analysis of nonlinear two-grid method for multigroup neutron diffusion problems.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#AnistratovCJ17,https://doi.org/10.1016/j.jcp.2017.06.014 +Ao-Ping Peng,Implicit gas-kinetic unified algorithm based on multi-block docking grid for multi-body reentry flows covering all flow regimes.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#PengLWJ16,https://doi.org/10.1016/j.jcp.2016.09.050 +A. Beck,Multi-level multi-domain algorithm implementation for two-dimensional multiscale particle in cell simulations.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#BeckILM14,https://doi.org/10.1016/j.jcp.2013.12.016 +Benjamin Lalanne,On the computation of viscous terms for incompressible two-phase flows with Level Set/Ghost Fluid Method.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#LalanneVTR15,https://doi.org/10.1016/j.jcp.2015.08.036 +Igor Tsukerman,Trefftz difference schemes on irregular stencils.,2010,229,J. Comput. Physics,8,db/journals/jcphy/jcphy229.html#Tsukerman10,https://doi.org/10.1016/j.jcp.2009.12.025 +Yihao Liang,A GPU-based large-scale Monte Carlo simulation method for systems with long-range interactions.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#LiangXL17,https://doi.org/10.1016/j.jcp.2017.02.069 +Siu-Long Lei,A circulant preconditioner for fractional diffusion equations.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#LeiS13,https://doi.org/10.1016/j.jcp.2013.02.025 +Zhuyin Ren,Dynamic adaptive chemistry with operator splitting schemes for reactive flow simulations.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#RenXLS14,https://doi.org/10.1016/j.jcp.2014.01.016 +Hao-Ran Liu,A diffuse-interface immersed-boundary method for two-dimensional simulation of flows with moving contact lines on curved substrates.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#LiuD15,https://doi.org/10.1016/j.jcp.2015.03.059 +József Bakosi,A non-hybrid method for the PDF equations of turbulent flows on unstructured grids.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#Bakosi0B08,https://doi.org/10.1016/j.jcp.2008.02.024 +Leslie Greengard,A fast direct solver for scattering from periodic structures with multiple material interfaces in two dimensions.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#GreengardHL14,https://doi.org/10.1016/j.jcp.2013.11.011 +L. Michael,A hybrid formulation for the numerical simulation of condensed phase explosives.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#MichaelN16,https://doi.org/10.1016/j.jcp.2016.04.017 +Yongbo Deng,Self-consistent adjoint analysis for topology optimization of electromagnetic waves.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#DengK18,https://doi.org/10.1016/j.jcp.2018.01.045 +Jonathan A. Zimmerman,A material frame approach for evaluating continuum variables in atomistic simulations.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#ZimmermanJT10,https://doi.org/10.1016/j.jcp.2009.11.039 +Can Huang,Convergence of a p-version/hp-version method for fractional differential equations.,2015,286,J. Comput. Physics,,db/journals/jcphy/jcphy286.html#HuangZ15,https://doi.org/10.1016/j.jcp.2015.01.025 +Yan Shi,The finite-volume time-domain algorithm using least square method in solving Maxwell's equations.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#ShiL07,https://doi.org/10.1016/j.jcp.2007.05.033 +Shi Jin,A class of asymptotic-preserving schemes for the Fokker-Planck-Landau equation.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#JinY11,https://doi.org/10.1016/j.jcp.2011.04.002 +Georgios Karagiannis,A Bayesian mixed shrinkage prior procedure for spatial-stochastic basis selection and evaluation of gPC expansions: Applications to elliptic SPDEs.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#KaragiannisKL15,https://doi.org/10.1016/j.jcp.2014.12.034 +Giridhar Nandipati,Off-lattice pattern recognition scheme for kinetic Monte Carlo simulations.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#NandipatiKSR12,https://doi.org/10.1016/j.jcp.2011.12.029 +Longhui Zhang,Fictitious domain method for fully resolved reacting gas-solid flow simulation.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#ZhangLY15,https://doi.org/10.1016/j.jcp.2015.07.010 +Vrushali A. Bokil,Dispersion reducing methods for edge discretizations of the electric vector wave equation.,2015,287,J. Comput. Physics,,db/journals/jcphy/jcphy287.html#BokilGGM15,https://doi.org/10.1016/j.jcp.2015.01.042 +Mathew A. Cleveland,Corrected implicit Monte Carlo.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#ClevelandW18,https://doi.org/10.1016/j.jcp.2017.12.038 +Steven P. Hirshman,BCYCLIC: A parallel block tridiagonal matrix cyclic solver.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#HirshmanPLS10,https://doi.org/10.1016/j.jcp.2010.04.049 +Kohei Fukumitsu,A new directional-splitting CIP interpolation with high accuracy and low memory consumption.,2015,286,J. Comput. Physics,,db/journals/jcphy/jcphy286.html#FukumitsuYOOO15,https://doi.org/10.1016/j.jcp.2014.12.045 +Dieter Fauconnier,The dynamic procedure for accuracy improvement of numerical discretizations in fluid mechanics.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#FauconnierLD07,https://doi.org/10.1016/j.jcp.2006.11.012 +Xuewen Yin,An improved bounce-back scheme for complex boundary conditions in lattice Boltzmann method.,2012,231,J. Comput. Physics,11,db/journals/jcphy/jcphy231.html#YinZ12,https://doi.org/10.1016/j.jcp.2012.02.014 +Haiyang Gao,A conservative correction procedure via reconstruction formulation with the Chain-Rule divergence evaluation.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#GaoW13,https://doi.org/10.1016/j.jcp.2012.08.030 +Michael G. Edwards,The dominant wave-capturing flux: A finite-volume scheme without decomposition for systems of hyperbolic conservation laws.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#Edwards06,https://doi.org/10.1016/j.jcp.2006.02.005 +Aravind Balan,A stable high-order Spectral Difference method for hyperbolic conservation laws on triangular elements.,2012,231,J. Comput. Physics,5,db/journals/jcphy/jcphy231.html#BalanMS12,https://doi.org/10.1016/j.jcp.2011.11.041 +Alireza Doostan,A non-adapted sparse approximation of PDEs with stochastic inputs.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#DoostanO11,https://doi.org/10.1016/j.jcp.2011.01.002 +Li-ping He,A class of stable spectral methods for the Cahn-Hilliard equation.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#HeL09,https://doi.org/10.1016/j.jcp.2009.04.011 +Hongqiang Zhu,Adaptive Runge-Kutta discontinuous Galerkin methods using different indicators: One-dimensional case.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#ZhuQ09,https://doi.org/10.1016/j.jcp.2009.06.022 +S. Mendez,An unstructured solver for simulations of deformable particles in flows at arbitrary Reynolds numbers.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#MendezGN14,https://doi.org/10.1016/j.jcp.2013.08.061 +Cédric M. Campos,Extra Chance Generalized Hybrid Monte Carlo.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#CamposS15,https://doi.org/10.1016/j.jcp.2014.09.037 +Ozlem Ozgun,Domain compression via anisotropic metamaterials designed by coordinate transformations.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#OzgunK10,https://doi.org/10.1016/j.jcp.2009.10.023 +Jaemin Shin,Unconditionally stable methods for gradient flow using Convex Splitting Runge-Kutta scheme.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#ShinLL17,https://doi.org/10.1016/j.jcp.2017.07.006 +Birte Schrader,Discretization correction of general integral PSE Operators for particle methods.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#SchraderRS10,https://doi.org/10.1016/j.jcp.2010.02.004 +Jian-Guo Li,Propagation of ocean surface waves on a spherical multiple-cell grid.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#Li12,https://doi.org/10.1016/j.jcp.2012.08.007 +Van Thang Pham,Study of the 1D lattice Boltzmann shallow water equation and its coupling to build a canal network.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#ThangCLOM10,https://doi.org/10.1016/j.jcp.2010.06.022 +Kiril S. Shterev,Pressure based finite volume method for calculation of compressible viscous gas flows.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#ShterevS10,https://doi.org/10.1016/j.jcp.2009.09.042 +Y. Bazilevs,Large eddy simulation of turbulent Taylor-Couette flow using isogeometric analysis and the residual-based variational multiscale method.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#BazilevsA10,https://doi.org/10.1016/j.jcp.2010.01.008 +Debanjan Mukherjee,A discrete element based simulation framework to investigate particulate spray deposition processes.,2015,290,J. Comput. Physics,,db/journals/jcphy/jcphy290.html#MukherjeeZ15,https://doi.org/10.1016/j.jcp.2015.02.034 +N. Hanzlikova,Leap frog integrator modifications in highly collisional particle-in-cell codes.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#HanzlikovaT14,https://doi.org/10.1016/j.jcp.2014.03.018 +Dana A. Knoll,Numerical analysis of time integration errors for nonequilibrium radiation diffusion.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#KnollLM07,https://doi.org/10.1016/j.jcp.2007.05.034 +Jing-Mei Qiu,A conservative high order semi-Lagrangian WENO method for the Vlasov equation.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#QiuC10,https://doi.org/10.1016/j.jcp.2009.10.016 +Emre Kiliç,Solution of 3D inverse scattering problems by combined inverse equivalent current and finite element methods.,2015,288,J. Comput. Physics,,db/journals/jcphy/jcphy288.html#KilicE15,https://doi.org/10.1016/j.jcp.2015.02.004 +Jeffrey W. Banks,An added-mass partition algorithm for fluid-structure interactions of compressible fluids and nonlinear solids.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#BanksHKS16,https://doi.org/10.1016/j.jcp.2015.10.043 +Carl R. Sovinec,Stabilization of numerical interchange in spectral-element magnetohydrodynamics.,2016,319,J. Comput. Physics,,db/journals/jcphy/jcphy319.html#Sovinec16,https://doi.org/10.1016/j.jcp.2016.04.063 +Kevin Carlberg,Conservative model reduction for finite-volume models.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#CarlbergCS18,https://doi.org/10.1016/j.jcp.2018.05.019 +Ozlem Ozgun,Parallelized Characteristic Basis Finite Element Method (CBFEM-MPI) - A non-iterative domain decomposition algorithm for electromagnetic scattering problems.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#OzgunMK09,https://doi.org/10.1016/j.jcp.2008.12.002 +Satbir Singh,A multi-block ADI finite-volume method for incompressible Navier-Stokes equations in complex geometries.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#SinghY11,https://doi.org/10.1016/j.jcp.2011.06.006 +L. Patacchini,Explicit time-reversible orbit integration in Particle In Cell codes with static homogeneous magnetic field.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#PatacchiniH09,https://doi.org/10.1016/j.jcp.2008.12.021 +Federico Peinetti,Particle-in-cell method for parallel dynamics in magnetized electron plasmas: Study of high-amplitude BGK modes.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#PeinettiPCW06,https://doi.org/10.1016/j.jcp.2006.01.040 +Pep Mulet,A semi-Lagrangian AMR scheme for 2D transport problems in conservation form.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#MuletV13,https://doi.org/10.1016/j.jcp.2012.11.039 +Kalpajyoti Borah,A novel second-order flux splitting for ideal magnetohydrodynamics.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#BorahND16,https://doi.org/10.1016/j.jcp.2016.02.052 +Siegfried Cools,A fast and robust computational method for the ionization cross sections of the driven Schrödinger equation using an O(N) multigrid-based scheme.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#CoolsV16,https://doi.org/10.1016/j.jcp.2015.12.019 +Piotr K. Smolarkiewicz,A finite-volume module for simulating global all-scale atmospheric flows.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#SmolarkiewiczDH16,https://doi.org/10.1016/j.jcp.2016.03.015 +Anjie Hu,Force method in a pseudo-potential lattice Boltzmann model.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#HuLU15,https://doi.org/10.1016/j.jcp.2015.03.009 +Serge Huberson,Vortex particle methods in aeroacoustic calculations.,2008,227,J. Comput. Physics,21,db/journals/jcphy/jcphy227.html#HubersonRV08,https://doi.org/10.1016/j.jcp.2008.06.011 +Xin Guo,On the generation and maintenance of waves and turbulence in simulations of free-surface turbulence.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#GuoS09,https://doi.org/10.1016/j.jcp.2009.06.030 +Philip S. Beran,Uncertainty quantification of limit-cycle oscillations.,2006,217,J. Comput. Physics,1,db/journals/jcphy/jcphy217.html#BeranPM06,https://doi.org/10.1016/j.jcp.2006.03.038 +Yoshiaki Abe,Geometric interpretations and spatial symmetry property of metrics in the conservative form for high-order finite-difference schemes on moving and deforming grids.,2014,260,J. Comput. Physics,,db/journals/jcphy/jcphy260.html#AbeNIF14,https://doi.org/10.1016/j.jcp.2013.12.019 +María J. Cáceres,A numerical solver for a nonlinear Fokker-Planck equation representation of neuronal network dynamics.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#CaceresCT11,https://doi.org/10.1016/j.jcp.2010.10.027 +Aurel Neic,Efficient computation of electrograms and ECGs in human whole heart simulations using a reaction-eikonal model.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#NeicCPNBVP17,https://doi.org/10.1016/j.jcp.2017.06.020 +Jonathan M. Burt,A hybrid particle approach for continuum and rarefied flow simulation.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#BurtB09,https://doi.org/10.1016/j.jcp.2008.09.022 +Yingda Cheng,Superconvergence and time evolution of discontinuous Galerkin finite element solutions.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#ChengS08,https://doi.org/10.1016/j.jcp.2008.07.010 +Christel Hohenegger,Fluid-particle dynamics for passive tracers advected by a thermally fluctuating viscoelastic medium.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#HoheneggerM17,https://doi.org/10.1016/j.jcp.2017.03.053 +Jun Zhang 0016,Multiple temperature model for the information preservation method and its application to nonequilibrium gas flows.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#ZhangFJ11,https://doi.org/10.1016/j.jcp.2011.05.025 +Lingfei Wu,Estimating the trace of the matrix inverse by interpolating from the diagonal of an approximate inverse.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#WuLKSG16,https://doi.org/10.1016/j.jcp.2016.09.001 +Helene Barucq,A symmetric Trefftz-DG formulation based on a local boundary element method for the solution of the Helmholtz equation.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#BarucqBFMT17,https://doi.org/10.1016/j.jcp.2016.09.062 +J. M. López-Herrera,A charge-conservative approach for simulating electrohydrodynamic two-phase flows using volume-of-fluid.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#Lopez-HerreraPH11,https://doi.org/10.1016/j.jcp.2010.11.042 +Chao Li,Spatially hybrid computations for streamer discharges : II. Fully 3D simulations.,2012,231,J. Comput. Physics,3,db/journals/jcphy/jcphy231.html#LiEH12,https://doi.org/10.1016/j.jcp.2011.07.023 +Daniel Ingraham,External verification analysis: A code-independent verification technique for unsteady PDE codes.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#IngrahamH13,https://doi.org/10.1016/j.jcp.2013.02.032 +Zhen Lu,Analysis of operator splitting errors for near-limit flame simulations.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#LuZLRLL17,https://doi.org/10.1016/j.jcp.2017.01.044 +Xiao Li,Phase transitions of macromolecular microsphere composite hydrogels based on the stochastic Cahn-Hilliard equation.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#LiJZ15,https://doi.org/10.1016/j.jcp.2014.11.032 +Hervé Guillard,A Darcy law for the drift velocity in a two-phase flow model.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#GuillardD07,https://doi.org/10.1016/j.jcp.2007.02.025 +Guillaume Oger,An improved SPH method: Towards higher order convergence.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#OgerDAF07,https://doi.org/10.1016/j.jcp.2007.01.039 +Lin Ma,Viscous regularization and r-adaptive remeshing for finite element analysis of lipid membrane mechanics.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#MaK08,https://doi.org/10.1016/j.jcp.2008.02.019 +Binze Yang,A second-order boundary-fitted projection method for free-surface flow computations.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#YangP06,https://doi.org/10.1016/j.jcp.2005.08.025 +Cord-Christian Rossow,Efficient computation of compressible and incompressible flows.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#Rossow07,https://doi.org/10.1016/j.jcp.2006.05.034 +Thomas Gillis,An efficient iterative penalization method using recycled Krylov subspaces and its application to impulsively started flows.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#GillisWC17,https://doi.org/10.1016/j.jcp.2017.07.015 +Jiequan Li,Remark on the generalized Riemann problem method for compressible fluid flows.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#LiS07,https://doi.org/10.1016/j.jcp.2006.08.017 +Philip W. Livermore,Galerkin orthogonal polynomials.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#Livermore10,https://doi.org/10.1016/j.jcp.2009.11.022 +Samuel P. Schofield,A second-order accurate material-order-independent interface reconstruction technique for multi-material flow simulations.,2009,228,J. Comput. Physics,3,db/journals/jcphy/jcphy228.html#SchofieldGFL09,https://doi.org/10.1016/j.jcp.2008.09.023 +R. N. Slaybaugh,Multigrid in energy preconditioner for Krylov solvers.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#SlaybaughEDW13,https://doi.org/10.1016/j.jcp.2013.02.012 +Jeffrey W. Banks,An analysis of a new stable partitioned algorithm for FSI problems. Part II: Incompressible flow and structural shells.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#BanksHS14,https://doi.org/10.1016/j.jcp.2014.03.004 +P. A. Browne,Fast three dimensional r-adaptive mesh redistribution.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#BrowneBPC14,https://doi.org/10.1016/j.jcp.2014.06.009 +Mahdi Esmaily Moghadam,A scalable geometric multigrid solver for nonsymmetric elliptic systems with application to variable-density flows.,2018,357,J. Comput. Physics,,db/journals/jcphy/jcphy357.html#MoghadamJMI18,https://doi.org/10.1016/j.jcp.2017.12.024 +Huei-Shuang Chen,Spectral collocation methods using sine functions for a rotating Bose-Einstein condensation in optical lattices.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#ChenCC12,https://doi.org/10.1016/j.jcp.2011.10.030 +A. R. Owens,Optimal trace inequality constants for interior penalty discontinuous Galerkin discretisations of elliptic operators using arbitrary elements with non-constant Jacobians.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#OwensKE17,https://doi.org/10.1016/j.jcp.2017.09.020 +Duc-Vinh Le,Large deformation of liquid capsules enclosed by thin shells immersed in the fluid.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#LeT10,https://doi.org/10.1016/j.jcp.2010.01.042 +David Fridrich,Some cell-centered Lagrangian Lax-Wendroff HLL hybrid schemes.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#FridrichLW16,https://doi.org/10.1016/j.jcp.2016.09.022 +Bormin Huang,Development of a GPU-based high-performance radiative transfer model for the Infrared Atmospheric Sounding Interferometer (IASI).,2011,230,J. Comput. Physics,6,db/journals/jcphy/jcphy230.html#HuangMOH11,https://doi.org/10.1016/j.jcp.2010.09.011 +Tomás Dohnal,Perfectly matched layers in photonics computations: 1D and 2D nonlinear coupled mode equations.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#DohnalH07,https://doi.org/10.1016/j.jcp.2006.10.002 +M. Shadi Mohamed,Time-independent hybrid enrichment for finite element solution of transient conduction-radiation in diffusive grey media.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#MohamedSTL13,https://doi.org/10.1016/j.jcp.2013.05.030 +Juan A. Acebrón,Domain decomposition solution of nonlinear two-dimensional parabolic problems by random trees.,2009,228,J. Comput. Physics,15,db/journals/jcphy/jcphy228.html#AcebronRS09,https://doi.org/10.1016/j.jcp.2009.04.034 +Ellen M. Taylor,Optimization of nonlinear error for weighted essentially non-oscillatory methods in direct numerical simulations of compressible turbulence.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#TaylorWM07,https://doi.org/10.1016/j.jcp.2006.09.010 +Hiroaki Nishikawa,On hyperbolic method for diffusion with discontinuous coefficients.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#Nishikawa18,https://doi.org/10.1016/j.jcp.2018.04.027 +E. Vergnault,Application of Lattice Boltzmann Method to sensitivity analysis via complex differentiation.,2011,230,J. Comput. Physics,13,db/journals/jcphy/jcphy230.html#VergnaultS11,https://doi.org/10.1016/j.jcp.2011.03.044 +Sebastian Schunert,A flexible nonlinear diffusion acceleration method for the SN transport equations discretized with discontinuous finite elements.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#SchunertWGOBLWD17,https://doi.org/10.1016/j.jcp.2017.01.070 +Fengyan Li,Central discontinuous Galerkin methods for ideal MHD equations with the exactly divergence-free magnetic field.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#LiXY11,https://doi.org/10.1016/j.jcp.2011.03.006 +Marc R. J. Charest,Solution of the equation of radiative transfer using a Newton-Krylov approach and adaptive mesh refinement.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#CharestGG12,https://doi.org/10.1016/j.jcp.2011.11.016 +Yiqing Shen,E-CUSP scheme for the equations of ideal magnetohydrodynamics with high order WENO Scheme.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#ShenZH12,https://doi.org/10.1016/j.jcp.2012.04.015 +Fenglian Yang,Doubly stochastic radial basis function methods.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#YangYL18,https://doi.org/10.1016/j.jcp.2018.02.042 +Olivier Desjardins,A quadrature-based moment method for dilute fluid-particle flows.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#DesjardinsFV08,https://doi.org/10.1016/j.jcp.2007.10.026 +Ali Mani,Analysis and optimization of numerical sponge layers as a nonreflective boundary treatment.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#Mani12,https://doi.org/10.1016/j.jcp.2011.10.017 +Bjørn Fredrik Nielsen,On the use of the resting potential and level set methods for identifying ischemic heart disease: An inverse problem.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#NielsenLT07,https://doi.org/10.1016/j.jcp.2006.05.040 +Z. H. Ma,GPU computing of compressible flow problems by a meshless method with space-filling curves.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#MaWP14,https://doi.org/10.1016/j.jcp.2014.01.023 +Cédric Galusinski,On stability condition for bifluid flows with surface tension: Application to microfluidics.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#GalusinskiV08,https://doi.org/10.1016/j.jcp.2008.02.023 +Thomas Luu,Generalized reference fields and source interpolation for the difference formulation of radiation transport.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#LuuBS10,https://doi.org/10.1016/j.jcp.2009.10.049 +Ben Thornber,An algorithm for LES of premixed compressible flows using the Conditional Moment Closure model.,2011,230,J. Comput. Physics,20,db/journals/jcphy/jcphy230.html#ThornberBMH11,https://doi.org/10.1016/j.jcp.2011.06.024 +Zhaoyuan Wang,A simple and conservative operator-splitting semi-Lagrangian volume-of-fluid advection scheme.,2012,231,J. Comput. Physics,15,db/journals/jcphy/jcphy231.html#WangYS12a,https://doi.org/10.1016/j.jcp.2012.04.029 +Cesar A. Acosta Minoli,Discontinuous Galerkin spectral element approximations on moving meshes.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#MinoliK11,https://doi.org/10.1016/j.jcp.2010.11.038 +Benedikt Klein,A SIMPLE based discontinuous Galerkin solver for steady incompressible flows.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#KleinKO13,https://doi.org/10.1016/j.jcp.2012.11.051 +Masayuki Tanaka 0008,Stabilization and smoothing of pressure in MPS method by Quasi-Compressibility.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#TanakaM10,https://doi.org/10.1016/j.jcp.2010.02.011 +Emmanuel Brun,A local level-set method using a hash table data structure.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#BrunGG12,https://doi.org/10.1016/j.jcp.2011.12.001 +Konstantin Lipnikov,A monotone finite volume method for advection-diffusion equations on unstructured polygonal meshes.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#LipnikovSV10,https://doi.org/10.1016/j.jcp.2010.01.035 +Li-Tien Cheng,Efficient level set methods for constructing wavefronts in three spatial dimensions.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#Cheng07,https://doi.org/10.1016/j.jcp.2007.07.019 +Per Pettersson,Numerical analysis of the Burgers' equation in the presence of uncertainty.,2009,228,J. Comput. Physics,22,db/journals/jcphy/jcphy228.html#PetterssonIN09,https://doi.org/10.1016/j.jcp.2009.08.012 +Herwig A. Grogger,Finite difference approximations of first derivatives for three-dimensional grid singularities.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#Grogger07,https://doi.org/10.1016/j.jcp.2007.03.027 +N. F. Dudley Ward,A discontinuous Galerkin method for poroelastic wave propagation: The two-dimensional case.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#WardLE17,https://doi.org/10.1016/j.jcp.2017.08.070 +Christiaan M. Klaij,On the stabilization of finite volume methods with co-located variables for incompressible flow.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#Klaij15,https://doi.org/10.1016/j.jcp.2015.05.012 +D. L. Young,A novel vector potential formulation of 3D Navier-Stokes equations with through-flow boundaries by a local meshless method.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#YoungTW15,https://doi.org/10.1016/j.jcp.2015.07.040 +Chiaming Wang,Particle simulation of Coulomb collisions: Comparing the methods of Takizuka and Abe and Nanbu.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#WangLCCD08,https://doi.org/10.1016/j.jcp.2007.12.027 +Kausik Chatterjee,A new Green's function Monte Carlo algorithm for the estimation of the derivative of the solution of Helmholtz equation subject to Neumann and mixed boundary conditions.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#Chatterjee16,https://doi.org/10.1016/j.jcp.2016.02.075 +Han Chen,A numerical scheme for the Stefan problem on adaptive Cartesian grids with supralinear convergence rate.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#ChenMG09,https://doi.org/10.1016/j.jcp.2009.04.044 +José Ramón López-Blanco,Exploring large macromolecular functional motions on clusters of multicore processors.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#Lopez-BlancoRABCQ13,https://doi.org/10.1016/j.jcp.2013.03.032 +Won-Kwang Park,MUSIC algorithm for location searching of dielectric anomalies from S-parameters using microwave imaging.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#ParkKLS17,https://doi.org/10.1016/j.jcp.2017.07.035 +Lijian Jiang,Model's sparse representation based on reduced mixed GMsFE basis methods.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#JiangL17,https://doi.org/10.1016/j.jcp.2017.02.055 +Arnab Kr. De,A diffuse interface immersed boundary method for complex moving boundary problems.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#De18,https://doi.org/10.1016/j.jcp.2018.04.008 +Oksana Guba,Optimization-based limiters for the spectral element method.,2014,267,J. Comput. Physics,,db/journals/jcphy/jcphy267.html#GubaTS14,https://doi.org/10.1016/j.jcp.2014.02.029 +Xia Ji,A multi-level method for transmission eigenvalues of anisotropic media.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#JiS13,https://doi.org/10.1016/j.jcp.2013.08.030 +Nikola Mirkov,On the improved finite volume procedure for simulation of turbulent flows over real complex terrains.,2015,287,J. Comput. Physics,,db/journals/jcphy/jcphy287.html#MirkovRK15,https://doi.org/10.1016/j.jcp.2015.02.001 +Dan G. Cacuci,Second-order adjoint sensitivity analysis methodology (2nd-ASAM) for computing exactly and efficiently first- and second-order sensitivities in large-scale linear systems: I. Computational methodology.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#Cacuci15,https://doi.org/10.1016/j.jcp.2014.12.042 +Marian Piatkowski,A stable and high-order accurate discontinuous Galerkin based splitting method for the incompressible Navier-Stokes equations.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#PiatkowskiMB18,https://doi.org/10.1016/j.jcp.2017.11.035 +Assyr Abdulle,Numerical methods for stochastic partial differential equations with multiple scales.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#AbdulleP12,https://doi.org/10.1016/j.jcp.2011.11.039 +Qing Nie,Efficient semi-implicit schemes for stiff systems.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#NieZZ06,https://doi.org/10.1016/j.jcp.2005.09.030 +Dinshaw S. Balsara,An efficient class of WENO schemes with adaptive order.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#BalsaraGS16,https://doi.org/10.1016/j.jcp.2016.09.009 +Hélène Barucq,Localization of small obstacles from back-scattered data at limited incident angles with full-waveform inversion.,2018,370,J. Comput. Physics,,db/journals/jcphy/jcphy370.html#BarucqFP18,https://doi.org/10.1016/j.jcp.2018.05.011 +Mario F. Trujillo,The distortion of the level set gradient under advection.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#TrujilloAR17,https://doi.org/10.1016/j.jcp.2016.11.050 +Jerrad Hampton,Compressive sampling of polynomial chaos expansions: Convergence analysis and sampling strategies.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#HamptonD15,https://doi.org/10.1016/j.jcp.2014.09.019 +Stéphane Dellacherie,Numerical resolution of a potential diphasic low Mach number system.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#Dellacherie07,https://doi.org/10.1016/j.jcp.2006.09.009 +G. V. Vogman,Dory-Guest-Harris instability as a benchmark for continuum kinetic Vlasov-Poisson simulations of magnetized plasmas.,2014,277,J. Comput. Physics,,db/journals/jcphy/jcphy277.html#VogmanCS14,https://doi.org/10.1016/j.jcp.2014.08.014 +Philippe Miron,Anisotropic mesh adaptation on Lagrangian Coherent Structures.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#MironVGDH12,https://doi.org/10.1016/j.jcp.2012.06.015 +Ken Mattsson,Optimal diagonal-norm SBP operators.,2014,264,J. Comput. Physics,,db/journals/jcphy/jcphy264.html#MattssonAC14,https://doi.org/10.1016/j.jcp.2013.12.041 +Yann Moguen,Pressure-velocity coupling allowing acoustic calculation in low Mach number flow.,2012,231,J. Comput. Physics,16,db/journals/jcphy/jcphy231.html#MoguenKBVD12,https://doi.org/10.1016/j.jcp.2012.05.001 +Ana Alonso Rodríguez,Finite element simulation of eddy current problems using magnetic scalar potentials.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#RodriguezBGV15,https://doi.org/10.1016/j.jcp.2015.03.060 +Mathew A. Cleveland,Obtaining identical results with double precision global accuracy on different numbers of processors in parallel particle Monte Carlo simulations.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#ClevelandBGK13,https://doi.org/10.1016/j.jcp.2013.05.041 +Mattia Gazzola,Simulations of single and multiple swimmers with non-divergence free deforming geometries.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#GazzolaCRK11,https://doi.org/10.1016/j.jcp.2011.04.025 +James E. Gubernatis,Multiple extremal eigenpairs by the power method.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#GubernatisB08,https://doi.org/10.1016/j.jcp.2008.06.001 +Alexander Z. Zinchenko,Algorithm for direct numerical simulation of emulsion flow through a granular material.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#ZinchenkoD08,https://doi.org/10.1016/j.jcp.2008.05.004 +Thomas Unfer,An asynchronous scheme with local time stepping for multi-scale transport problems: Application to gas discharges.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#UnferBRT07,https://doi.org/10.1016/j.jcp.2007.07.018 +Gustaaf B. Jacobs,A high-order WENO-Z finite difference based particle-source-in-cell method for computation of particle-laden flows with shocks.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#JacobsD09,https://doi.org/10.1016/j.jcp.2008.10.037 +Jianfeng Lu 0001,Numerical scheme for a spatially inhomogeneous matrix-valued quantum Boltzmann equation.,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#LuM15,https://doi.org/10.1016/j.jcp.2015.03.020 +Li-Jun Xuan,A new gas-kinetic scheme based on analytical solutions of the BGK equation.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#XuanX13,https://doi.org/10.1016/j.jcp.2012.10.007 +Cem çelik,Crank-Nicolson method for the fractional diffusion equation with the Riesz fractional derivative.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#CelikD12,https://doi.org/10.1016/j.jcp.2011.11.008 +Zydrunas Gimbutas,Fast multi-particle scattering: A hybrid solver for the Maxwell equations in microstructured materials.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#GimbutasG13,https://doi.org/10.1016/j.jcp.2012.01.041 +Sergey A. Suslov,Numerical aspects of searching convective/absolute instability transition.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#Suslov06,https://doi.org/10.1016/j.jcp.2005.06.017 +Marcel Kwakkel,Extension of a CLSVOF method for droplet-laden flows with a coalescence/breakup model.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#KwakkelBB13,https://doi.org/10.1016/j.jcp.2013.07.005 +Przemyslaw Tredak,Efficient implementation of the many-body Reactive Bond Order (REBO) potential on GPU.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#TredakRM16,https://doi.org/10.1016/j.jcp.2016.05.061 +K. Waagan,A positive MUSCL-Hancock scheme for ideal magnetohydrodynamics.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#Waagan09,https://doi.org/10.1016/j.jcp.2009.08.020 +G. C. O'Leary,SPH accuracy improvement through the combination of a quasi-Lagrangian shifting transport velocity and consistent ALE formalisms.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#OLearyMTL16,https://doi.org/10.1016/j.jcp.2016.02.039 +Michael D. Sekora,A hybrid Godunov method for radiation hydrodynamics.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#SekoraS10,https://doi.org/10.1016/j.jcp.2010.05.024 +Frederick Blumenthal,A stability analysis of a real space split operator method for the Klein-Gordon equation.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#BlumenthalB12,https://doi.org/10.1016/j.jcp.2011.09.012 +Robert C. Tautz,On simplified numerical turbulence models in test-particle simulations.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#Tautz12,https://doi.org/10.1016/j.jcp.2012.02.021 +Chengjie Wang,Strongly coupled dynamics of fluids and rigid-body systems with the immersed boundary projection method.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#WangE15,https://doi.org/10.1016/j.jcp.2015.04.005 +Kartikey Asthana,On consistency and rate of convergence of Flux Reconstruction for time-dependent problems.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#AsthanaWJ17,https://doi.org/10.1016/j.jcp.2017.01.008 +A. J. Kriel,Error analysis of flux limiter schemes at extrema.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#Kriel17,https://doi.org/10.1016/j.jcp.2016.10.024 +W. N. Edeling,Bayesian estimates of parameter variability in the k-9* turbulence model.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#EdelingCDB14,https://doi.org/10.1016/j.jcp.2013.10.027 +Jaime Carpio,A local anisotropic adaptive algorithm for the solution of low-Mach transient combustion problems.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#CarpioPV16,https://doi.org/10.1016/j.jcp.2015.11.011 +Pavel Solín,Adaptive higher-order finite element methods for transient PDE problems based on embedded higher-order implicit Runge-Kutta methods.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#SolinK12,https://doi.org/10.1016/j.jcp.2011.10.023 +Rongzong Huang,Phase interface effects in the total enthalpy-based lattice Boltzmann model for solid-liquid phase change.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#HuangW15,https://doi.org/10.1016/j.jcp.2015.03.064 +Hassan Khosravian-Arab,Fractional spectral and pseudo-spectral methods in unbounded domains: Theory and applications.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#Khosravian-Arab17,https://doi.org/10.1016/j.jcp.2017.02.060 +Carlos Delgado,Combination of ray-tracing and the method of moments for electromagnetic radiation analysis using reduced meshes.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#DelgadoC18,https://doi.org/10.1016/j.jcp.2018.01.040 +Shi Jin,An asymptotic-preserving stochastic Galerkin method for the radiative heat transfer equations with random inputs and diffusive scalings.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#JinL17,https://doi.org/10.1016/j.jcp.2016.12.033 +Jung Hee Seo,Linearized perturbed compressible equations for low Mach number aeroacoustics.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#SeoM06,https://doi.org/10.1016/j.jcp.2006.03.003 +Igor L. Novak,A conservative algorithm for parabolic problems in domains with moving boundaries.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#NovakS14,https://doi.org/10.1016/j.jcp.2014.03.014 +Magnus Svärd,Review of summation-by-parts schemes for initial-boundary-value problems.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#SvardN14,https://doi.org/10.1016/j.jcp.2014.02.031 +Petr N. Vabishchevich,Two-level schemes for the advection equation.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#Vabishchevich18,https://doi.org/10.1016/j.jcp.2018.02.044 +Natasha Flyer,Transport schemes on a sphere using radial basis functions.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#FlyerW07,https://doi.org/10.1016/j.jcp.2007.05.009 +Stefan Fleckenstein,A Volume-of-Fluid-based numerical method for multi-component mass transfer with local volume changes.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#FleckensteinB15,https://doi.org/10.1016/j.jcp.2015.08.011 +Gautier Brèthes,Anisotropic norm-oriented mesh adaptation for a Poisson problem.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#BrethesD16,https://doi.org/10.1016/j.jcp.2016.07.008 +Duan Chen,Accurate and efficient Nyström volume integral equation method for the Maxwell equations for multiple 3-D scatterers.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#ChenCZC16,https://doi.org/10.1016/j.jcp.2016.05.042 +Shanqin Chen,A discontinuous Galerkin implementation of a domain decomposition method for kinetic-hydrodynamic coupling multiscale problems in gas dynamics and device simulations.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#ChenELS07,https://doi.org/10.1016/j.jcp.2007.01.025 +Edwin Albert Munts,A modal-based multiscale method for large eddy simulation.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#MuntsHB07,https://doi.org/10.1016/j.jcp.2007.03.004 +Daniel S. Abdi,Efficient construction of unified continuous and discontinuous Galerkin formulations for the 3D Euler equations.,2016,320,J. Comput. Physics,,db/journals/jcphy/jcphy320.html#AbdiG16,https://doi.org/10.1016/j.jcp.2016.05.033 +Lei Bian,ALmost EXact boundary conditions for transient Schrödinger-Poisson system.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#BianPTA16,https://doi.org/10.1016/j.jcp.2016.02.025 +Xue-song Li,An All-Speed Roe-type scheme and its asymptotic analysis of low Mach number behaviour.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#LiG08,https://doi.org/10.1016/j.jcp.2008.01.037 +Ryan N. Hill,The Symmetric Moment-of-Fluid interface reconstruction algorithm.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#HillS13,https://doi.org/10.1016/j.jcp.2013.04.037 +Carlos Pantano,LES approach for high Reynolds number wall-bounded flows with application to turbulent channel flow.,2008,227,J. Comput. Physics,21,db/journals/jcphy/jcphy227.html#PantanoPDM08,https://doi.org/10.1016/j.jcp.2008.04.015 +Panagiotis Dimitrakopoulos,Interfacial dynamics in Stokes flow via a three-dimensional fully-implicit interfacial spectral boundary element algorithm.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#Dimitrakopoulos07,https://doi.org/10.1016/j.jcp.2006.12.004 +Alain Lerat,On the design of high order residual-based dissipation for unsteady compressible flows.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#LeratGC13,https://doi.org/10.1016/j.jcp.2012.10.053 +Kai Diethelm,Increasing the efficiency of shooting methods for terminal value problems of fractional order.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#Diethelm15,https://doi.org/10.1016/j.jcp.2014.10.054 +Xin Lv,A matrix-free implicit unstructured multigrid finite volume method for simulating structural dynamics and fluid-structure interaction.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#LvZHXS07,https://doi.org/10.1016/j.jcp.2006.11.023 +Matthias Ihme,Regularization of reaction progress variable for application to flamelet-based combustion models.,2012,231,J. Comput. Physics,23,db/journals/jcphy/jcphy231.html#IhmeSZ12,https://doi.org/10.1016/j.jcp.2012.06.029 +Molei Tao,Explicit high-order symplectic integrators for charged particles in general electromagnetic fields.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#Tao16,https://doi.org/10.1016/j.jcp.2016.09.047 +Viktor Linders,Summation-by-Parts operators with minimal dispersion error for coarse grid flow calculations.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#LindersKN17,https://doi.org/10.1016/j.jcp.2017.03.039 +Phaedon-Stelios Koutsourelakis,Stochastic upscaling in solid mechanics: An excercise in machine learning.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#Koutsourelakis07,https://doi.org/10.1016/j.jcp.2007.04.012 +Terrence S. Tricco,Constrained hyperbolic divergence cleaning in smoothed particle magnetohydrodynamics with variable cleaning speeds.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#TriccoPB16,https://doi.org/10.1016/j.jcp.2016.06.053 +Wei Wang 0027,High order finite difference methods with subcell resolution for advection equations with stiff source terms.,2012,231,J. Comput. Physics,1,db/journals/jcphy/jcphy231.html#WangSYS12,https://doi.org/10.1016/j.jcp.2011.08.031 +Cheng Liu,An adaptive multi-moment FVM approach for incompressible flows.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#LiuH18,https://doi.org/10.1016/j.jcp.2018.01.006 +Vahid Keshavarzzadeh,Identification of discontinuous nonlinear systems via a multivariate Padé approach.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#KeshavarzzadehM16,https://doi.org/10.1016/j.jcp.2015.11.051 +Gang Xu 0001,"Corrigendum to ""Constructing analysis-suitable parameterization of computational domain from CAD boundary by variational harmonic method"" [J. Comput. Phys. 252(2013) 275-289].",2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#XuMDG14,https://doi.org/10.1016/j.jcp.2014.04.040 +Maria Elena Innocenti,A Multi Level Multi Domain Method for Particle In Cell plasma simulations.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#InnocentiLMBV13,https://doi.org/10.1016/j.jcp.2012.12.028 +Jian Cheng,A high order compact least-squares reconstructed discontinuous Galerkin method for the steady-state compressible flows on hybrid grids.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#ChengZL18,https://doi.org/10.1016/j.jcp.2018.02.012 +Alexander Farutin,3D numerical simulations of vesicle and inextensible capsule dynamics.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#FarutinBM14,https://doi.org/10.1016/j.jcp.2014.07.008 +Frédéric Gibou,A level set based sharp interface method for the multiphase incompressible Navier-Stokes equations with phase change.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#GibouCNB07,https://doi.org/10.1016/j.jcp.2006.07.035 +Yong Zhang,Natural element method for radiative heat transfer in a semitransparent medium with irregular geometries.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#ZhangYT13,https://doi.org/10.1016/j.jcp.2013.01.044 +Josephine Ainley,The method of images for regularized Stokeslets.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#AinleyDEBC08,https://doi.org/10.1016/j.jcp.2008.01.032 +David M. Ackerman,A finite element approach to self-consistent field theory calculations of multiblock polymers.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#AckermanDFG17,https://doi.org/10.1016/j.jcp.2016.11.020 +Pavel P. Popov,Specific volume coupling and convergence properties in hybrid particle/finite volume algorithms for turbulent reactive flows.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#PopovWP15,https://doi.org/10.1016/j.jcp.2015.03.001 +Frédéric Coquel,A positive and entropy-satisfying finite volume scheme for the Baer-Nunziato model.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#CoquelHS17,https://doi.org/10.1016/j.jcp.2016.11.017 +Ken Mattsson,A high-order accurate embedded boundary method for first order hyperbolic equations.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#MattssonA17,https://doi.org/10.1016/j.jcp.2016.12.034 +Horacio J. Aguerre,An oscillation-free flow solver based on flux reconstruction.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#AguerrePVDN18,https://doi.org/10.1016/j.jcp.2018.03.033 +Ngoc Cuong Nguyen,Gaussian functional regression for output prediction: Model assimilation and experimental design.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#NguyenP16,https://doi.org/10.1016/j.jcp.2015.12.035 +éric Madaule,Energy conserving discontinuous Galerkin spectral element method for the Vlasov-Poisson system.,2014,279,J. Comput. Physics,,db/journals/jcphy/jcphy279.html#MadauleRS14,https://doi.org/10.1016/j.jcp.2014.09.010 +Leslie Greengard,Stable and accurate integral equation methods for scattering problems with multiple material interfaces in two dimensions.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#GreengardL12,https://doi.org/10.1016/j.jcp.2011.11.034 +Adamandios Sifounakis,A conservative finite volume method for incompressible Navier-Stokes equations on locally refined nested Cartesian grids.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#SifounakisLY16,https://doi.org/10.1016/j.jcp.2016.09.026 +Anna-Karin Tornberg,Consistent boundary conditions for the Yee scheme.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#TornbergE08,https://doi.org/10.1016/j.jcp.2008.03.045 +Kai Huang,An efficient algorithm for the generalized Foldy-Lax formulation.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#HuangLZ13,https://doi.org/10.1016/j.jcp.2012.09.027 +Paul Dostert,Coarse-gradient Langevin algorithms for dynamic data integration and uncertainty quantification.,2006,217,J. Comput. Physics,1,db/journals/jcphy/jcphy217.html#DostertEHL06,https://doi.org/10.1016/j.jcp.2006.03.012 +David M. Haughton,Evaluation of eigenfunctions from compound matrix variables in non-linear elasticity - I. Fourth order systems.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#Haughton08,https://doi.org/10.1016/j.jcp.2008.01.003 +Zhiqin Zhao,Volumetric fast multipole method for modeling Schrödinger's equation.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#ZhaoKLACC07,https://doi.org/10.1016/j.jcp.2006.11.003 +Balaji Muralidharan,A high-order adaptive Cartesian cut-cell method for simulation of compressible viscous flow over immersed bodies.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#MuralidharanM16,https://doi.org/10.1016/j.jcp.2016.05.050 +Sheng-Bing Shi,Newmark-Beta-FDTD method for super-resolution analysis of time reversal waves.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#ShiSMJW17,https://doi.org/10.1016/j.jcp.2017.05.036 +K. Reuther,Simulating dendritic solidification using an anisotropy-free meshless front-tracking method.,2014,279,J. Comput. Physics,,db/journals/jcphy/jcphy279.html#ReutherR14,https://doi.org/10.1016/j.jcp.2014.09.003 +Matthew E. Hubbard,Non-oscillatory third order fluctuation splitting schemes for steady scalar conservation laws.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#Hubbard07,https://doi.org/10.1016/j.jcp.2006.08.007 +Tony W. H. Sheu,On the development of a high-order compact scheme for exhibiting the switching and dissipative solution natures in the Camassa-Holm equation.,2011,230,J. Comput. Physics,13,db/journals/jcphy/jcphy230.html#SheuCY11,https://doi.org/10.1016/j.jcp.2011.03.043 +José E. Adsuara,Scheduled Relaxation Jacobi method: Improvements and applications.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#AdsuaraCCA16,https://doi.org/10.1016/j.jcp.2016.05.053 +Ken Mattsson,High-fidelity numerical simulation of the dynamic beam equation.,2015,286,J. Comput. Physics,,db/journals/jcphy/jcphy286.html#MattssonS15,https://doi.org/10.1016/j.jcp.2015.01.038 +Mikhail Zaslavsky,Solution of time-convolutionary Maxwell's equations using parameter-dependent Krylov subspace reduction.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#ZaslavskyD10,https://doi.org/10.1016/j.jcp.2010.03.019 +Prashant Kumar,A multigrid multilevel Monte Carlo method for transport in the Darcy-Stokes system.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#KumarLGO18,https://doi.org/10.1016/j.jcp.2018.05.046 +Alberto Talamo,Numerical solution of the time dependent neutron transport equation by the method of the characteristics.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#Talamo13,https://doi.org/10.1016/j.jcp.2012.12.020 +Roger Käppeli,Well-balanced schemes for the Euler equations with gravitation.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#KappeliM14,https://doi.org/10.1016/j.jcp.2013.11.028 +Willem Hundsdorfer,IMEX extensions of linear multistep methods with general monotonicity and boundedness properties.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#HundsdorferR07,https://doi.org/10.1016/j.jcp.2007.03.003 +A. Mosahebi,An implicit and adaptive nonlinear frequency domain approach for periodic viscous flows.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#MosahebiN14,https://doi.org/10.1016/j.jcp.2014.08.022 +Souvik Chakraborty,Sequential experimental design based generalised ANOVA.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#ChakrabortyC16,https://doi.org/10.1016/j.jcp.2016.04.042 +Lukas Exl,Accurate and efficient computation of nonlocal potentials based on Gaussian-sum approximation.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#ExlMZ16,https://doi.org/10.1016/j.jcp.2016.09.045 +Sergey Litvinov,A splitting scheme for highly dissipative smoothed particle dynamics.,2010,229,J. Comput. Physics,15,db/journals/jcphy/jcphy229.html#LitvinovEHA10,https://doi.org/10.1016/j.jcp.2010.03.040 +Stefan Fechter,A sharp interface method for compressible liquid-vapor flow with phase transition and surface tension.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#FechterMRZ17,https://doi.org/10.1016/j.jcp.2017.02.001 +Manuel Hirschler,Open boundary conditions for ISPH and their application to micro-flow.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#HirschlerKHHN16,https://doi.org/10.1016/j.jcp.2015.12.024 +B. Sanderse,Boundary treatment for fourth-order staggered mesh discretizations of the incompressible Navier-Stokes equations.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#SanderseVK14,https://doi.org/10.1016/j.jcp.2013.10.002 +Po-Wen Hsieh,A bubble-stabilized least-squares finite element method for steady MHD duct flow problems at high Hartmann numbers.,2009,228,J. Comput. Physics,22,db/journals/jcphy/jcphy228.html#HsiehY09,https://doi.org/10.1016/j.jcp.2009.08.007 +Alireza Najafi-Yazdi,A high resolution differential filter for large eddy simulation: Toward explicit filtering on unstructured grids.,2015,292,J. Comput. Physics,,db/journals/jcphy/jcphy292.html#Najafi-YazdiNM15,https://doi.org/10.1016/j.jcp.2015.03.034 +Steven P. Hamilton,Efficient solution of the simplified PN equations.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#HamiltonE15,https://doi.org/10.1016/j.jcp.2014.12.014 +Marcus Herrmann,A parallel Eulerian interface tracking/Lagrangian point particle multi-scale coupling procedure.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#Herrmann10,https://doi.org/10.1016/j.jcp.2009.10.009 +Andris M. Dimits,Higher-order time integration of Coulomb collisions in a plasma using Langevin equations.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#DimitsCCRR13,https://doi.org/10.1016/j.jcp.2013.01.038 +J. Wei,GPU-accelerated Monte Carlo simulation of particle coagulation based on the inverse method.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#WeiK13,https://doi.org/10.1016/j.jcp.2013.04.030 +Mahbod Salmasi,Discrete exterior calculus approach for discretizing Maxwell's equations on face-centered cubic grids for FDTD.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#SalmasiP18,https://doi.org/10.1016/j.jcp.2018.03.019 +Bin Zhang,An asymptotic preserving Monte Carlo method for the multispecies Boltzmann equation.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#ZhangLJ16,https://doi.org/10.1016/j.jcp.2015.11.006 +Sanjay Govindjee,A time-domain Discontinuous Galerkin method for mechanical resonator quality factor computations.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#GovindjeeP12,https://doi.org/10.1016/j.jcp.2012.05.034 +Tyrus Berry,Semiparametric modeling: Correcting low-dimensional model error in parametric models.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#BerryH16,https://doi.org/10.1016/j.jcp.2015.12.043 +Matthew Charnley,A linear sampling method for through-the-wall radar detection.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#CharnleyW17,https://doi.org/10.1016/j.jcp.2017.06.035 +Emmanuel Montseny,Dissipative terms and local time-stepping improvements in a spatial high order Discontinuous Galerkin scheme for the time-domain Maxwell's equations.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#MontsenyPFC08,https://doi.org/10.1016/j.jcp.2008.03.032 +Innocent Niyonzima,Waveform relaxation for the computational homogenization of multiscale magnetoquasistatic problems.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#NiyonzimaGS16,https://doi.org/10.1016/j.jcp.2016.09.011 +Eric Brown-Dymkoski,Adaptive-Anisotropic Wavelet Collocation Method on general curvilinear coordinate systems.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#Brown-DymkoskiV17,https://doi.org/10.1016/j.jcp.2016.12.040 +Javier Murillo,A Riemann solver for unsteady computation of 2D shallow flows with variable density.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#MurilloLG12,https://doi.org/10.1016/j.jcp.2012.03.016 +Sanghyun Lee,Adaptive enriched Galerkin methods for miscible displacement problems with entropy residual stabilization.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#LeeW17,https://doi.org/10.1016/j.jcp.2016.10.072 +Lijun Yuan,Robust iterative method for nonlinear Helmholtz equation.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#YuanL17,https://doi.org/10.1016/j.jcp.2017.04.046 +John LaGrone,Double absorbing boundaries for finite-difference time-domain electromagnetics.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#LaGroneH16,https://doi.org/10.1016/j.jcp.2016.09.014 +Yohsuke Imai,Accuracy study of the IDO scheme by Fourier analysis.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#ImaiA06,https://doi.org/10.1016/j.jcp.2006.01.015 +Toby Sanders,Composite SAR imaging using sequential joint sparsity.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#SandersGP17,https://doi.org/10.1016/j.jcp.2017.02.071 +Charles Tadjeran,A second-order accurate numerical method for the two-dimensional fractional diffusion equation.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#TadjeranM07,https://doi.org/10.1016/j.jcp.2006.05.030 +Akil Narayan,Sequential data assimilation with multiple models.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#NarayanMX12,https://doi.org/10.1016/j.jcp.2012.06.002 +Ali Khajeh-Saeed,Direct numerical simulation of turbulence using GPU accelerated supercomputers.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#Khajeh-SaeedP13,https://doi.org/10.1016/j.jcp.2012.10.050 +Ming-Jiu Ni,A current density conservative scheme for incompressible MHD flows at a low magnetic Reynolds number. Part II: On an arbitrary collocated mesh.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#NiMHMA07,https://doi.org/10.1016/j.jcp.2007.07.023 +Lin Lin 0001,Adaptive local basis set for Kohn-Sham density functional theory in a discontinuous Galerkin framework I: Total energy calculation.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#LinLYE12,https://doi.org/10.1016/j.jcp.2011.11.032 +Yiqing Shen,High-resolution finite compact difference schemes for hyperbolic conservation laws.,2006,216,J. Comput. Physics,1,db/journals/jcphy/jcphy216.html#ShenYG06,https://doi.org/10.1016/j.jcp.2005.11.027 +Craig Michoski,A discontinuous Galerkin method for viscous compressible multifluids.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#MichoskiESV10,https://doi.org/10.1016/j.jcp.2009.11.033 +Felix Kwok,Potential-based reduced Newton algorithm for nonlinear multiphase flow in porous media.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#KwokT07,https://doi.org/10.1016/j.jcp.2007.08.012 +Emilie Blanc,Wave simulation in 2D heterogeneous transversely isotropic porous media with fractional attenuation: A Cartesian grid approach.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#BlancCL14,https://doi.org/10.1016/j.jcp.2014.07.002 +Matteo Bernardini,Turbulent channel flow simulations in convecting reference frames.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#BernardiniPQO13,https://doi.org/10.1016/j.jcp.2012.08.006 +Misun Min,Fourier spectral simulations and Gegenbauer reconstructions for electromagnetic waves in the presence of a metal nanoparticle.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#MinLFG06,https://doi.org/10.1016/j.jcp.2005.06.025 +Huan Lei,Systematic parameter inference in stochastic mesoscopic modeling.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#LeiYLK17,https://doi.org/10.1016/j.jcp.2016.10.029 +Tan Bui-Thanh,From Godunov to a unified hybridized discontinuous Galerkin framework for partial differential equations.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#Bui-Thanh15,https://doi.org/10.1016/j.jcp.2015.04.009 +Nathan Albin,A spectral FC solver for the compressible Navier-Stokes equations in general domains I: Explicit time-stepping.,2011,230,J. Comput. Physics,16,db/journals/jcphy/jcphy230.html#AlbinB11,https://doi.org/10.1016/j.jcp.2011.04.023 +Helen J. Wilson,Stokes flow past three spheres.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#Wilson13,https://doi.org/10.1016/j.jcp.2013.03.020 +Irina N. Shishkova,A numerical algorithm for kinetic modelling of evaporation processes.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#ShishkovaS06,https://doi.org/10.1016/j.jcp.2006.02.019 +Xiangxiong Zhang,Positivity-preserving high order finite difference WENO schemes for compressible Euler equations.,2012,231,J. Comput. Physics,5,db/journals/jcphy/jcphy231.html#ZhangS12,https://doi.org/10.1016/j.jcp.2011.11.020 +Matthijs den Toom,"Corrigendum to ""A tailored solver for bifurcation analysis of ocean-climate models"" [J. Comput. Phys 227 (2007) 654-679].",2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#ToomWD09,https://doi.org/10.1016/j.jcp.2009.04.002 +Alessandra Nigro,Second derivative time integration methods for discontinuous Galerkin solutions of unsteady compressible flows.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#NigroBCB17,https://doi.org/10.1016/j.jcp.2017.08.049 +Sang-Hyeon Lee,Alleviation of cancellation problem of preconditioned Navier-Stokes equations.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#Lee09,https://doi.org/10.1016/j.jcp.2009.04.024 +Jung Hee Seo,A method for the computational modeling of the physics of heart murmurs.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#SeoBGZATM17,https://doi.org/10.1016/j.jcp.2017.02.018 +Michael Dumbser,ADER-WENO finite volume schemes with space-time adaptive mesh refinement.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#DumbserZHB13,https://doi.org/10.1016/j.jcp.2013.04.017 +Markus Held,Lattice Boltzmann model for collisionless electrostatic drift wave turbulence obeying Charney-Hasegawa-Mima dynamics.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#HeldK15,https://doi.org/10.1016/j.jcp.2015.06.018 +Muruhan Rathinam,"Reversible-equivalent-monomolecular tau: A leaping method for ""small number and stiff"" stochastic chemical systems.",2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#RathinamE07,https://doi.org/10.1016/j.jcp.2006.10.034 +W. Liao,Euler calculations with embedded Cartesian grids and small-perturbation boundary conditions.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#LiaoKTL10,https://doi.org/10.1016/j.jcp.2010.01.014 +Jacob A. McGill,Efficient gradient estimation using finite differencing and likelihood ratios for kinetic Monte Carlo simulations.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#McGillOV12,https://doi.org/10.1016/j.jcp.2012.06.037 +Andreas Müller 0010,Comparison between adaptive and uniform discontinuous Galerkin simulations in dry 2D bubble experiments.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#MullerBGW13,https://doi.org/10.1016/j.jcp.2012.10.038 +Johan Helsing,Determination of normalized electric eigenfields in microwave cavities with sharp edges.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#HelsingK16,https://doi.org/10.1016/j.jcp.2015.09.054 +Aleksandar Donev,Stochastic Event-Driven Molecular Dynamics.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#DonevGA08,https://doi.org/10.1016/j.jcp.2007.11.010 +Sihong Shao,Comparison of deterministic and stochastic methods for time-dependent Wigner simulations.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#ShaoS15,https://doi.org/10.1016/j.jcp.2015.08.002 +Tianbing Chen,Piecewise-polynomial discretization and Krylov-accelerated multigrid for elliptic interface problems.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#ChenS08,https://doi.org/10.1016/j.jcp.2008.04.027 +Edward G. Phillips,A stochastic approach to uncertainty in the equations of MHD kinematics.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#PhillipsE15,https://doi.org/10.1016/j.jcp.2014.12.002 +Olivier Pinaud,Absorbing layers for the Dirac equation.,2015,289,J. Comput. Physics,,db/journals/jcphy/jcphy289.html#Pinaud15,https://doi.org/10.1016/j.jcp.2015.02.049 +Wenjun Ying,A kernel-free boundary integral method for elliptic boundary value problems.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#YingH07,https://doi.org/10.1016/j.jcp.2007.08.021 +Juan Cheng,Second order symmetry-preserving conservative Lagrangian scheme for compressible Euler equations in two-dimensional cylindrical coordinates.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#ChengS14a,https://doi.org/10.1016/j.jcp.2014.04.031 +Suchuan Dong,An unconditionally stable rotational velocity-correction scheme for incompressible flows.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#DongS10,https://doi.org/10.1016/j.jcp.2010.05.037 +Niklas Fehn,On the stability of projection methods for the incompressible Navier-Stokes equations based on high-order discontinuous Galerkin discretizations.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#FehnWK17,https://doi.org/10.1016/j.jcp.2017.09.031 +Shing Chan,A machine learning approach for efficient uncertainty quantification using multiscale methods.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#ChanE18,https://doi.org/10.1016/j.jcp.2017.10.034 +Mehrdad Yousefzadeh,Physics-based hybrid method for multiscale transport in porous media.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#YousefzadehB17,https://doi.org/10.1016/j.jcp.2017.04.055 +C. T. Tian,A three-dimensional multidimensional gas-kinetic scheme for the Navier-Stokes equations under gravitational fields.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#TianXCD07,https://doi.org/10.1016/j.jcp.2007.06.024 +Weizhang Huang,Sign-preserving of principal eigenfunctions in P1 finite element approximation of eigenvalue problems of second-order elliptic operators.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#Huang14,https://doi.org/10.1016/j.jcp.2014.06.012 +Mary Catherine A. Kropinski,Efficient numerical methods for multiple surfactant-coated bubbles in a two-dimensional stokes flow.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#KropinskiL11,https://doi.org/10.1016/j.jcp.2011.02.019 +Jianlin Xia,Effective matrix-free preconditioning for the augmented immersed interface method.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#XiaLY15,https://doi.org/10.1016/j.jcp.2015.09.050 +Mohammad Mirzadeh,A conservative discretization of the Poisson-Nernst-Planck equations on adaptive Cartesian grids.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#MirzadehG14,https://doi.org/10.1016/j.jcp.2014.06.039 +N. Zhang,An improved direct-forcing immersed-boundary method for finite difference applications.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#ZhangZ07,https://doi.org/10.1016/j.jcp.2006.06.012 +Bert Van Genechten,A Trefftz-based numerical modelling framework for Helmholtz problems with complex multiple-scatterer configurations.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#GenechtenBVD10,https://doi.org/10.1016/j.jcp.2010.05.016 +J. E. Sprittles,"Corrigendum to ""Finite element simulation of dynamic wetting flows as an interface formation process"" [J. Comput. Phys. 233(2013) 34-65].",2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#SprittlesS14,https://doi.org/10.1016/j.jcp.2014.06.041 +Cheng Liu,An efficient immersed boundary treatment for complex moving object.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#LiuH14,https://doi.org/10.1016/j.jcp.2014.06.042 +Hossein Mahmoodi Darian,A shock-detecting sensor for filtering of high-order compact finite difference schemes.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#DarianEH11,https://doi.org/10.1016/j.jcp.2010.09.028 +Ismail B. Celik,Prediction of discretization error using the error transport equation.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#CelikP17,https://doi.org/10.1016/j.jcp.2017.02.058 +Manuel A. Sánchez,Symplectic Hamiltonian HDG methods for wave propagation phenomena.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#SanchezCNPC17,https://doi.org/10.1016/j.jcp.2017.09.010 +Xin Liu,Three-dimensional shallow water system: A relaxation approach.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#LiuMSK17,https://doi.org/10.1016/j.jcp.2016.12.030 +Rodrigo C. Moura,Eigensolution analysis of spectral/hp continuous Galerkin approximations to advection-diffusion problems: Insights into spectral vanishing viscosity.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#MouraSP16,https://doi.org/10.1016/j.jcp.2015.12.009 +Chao Yang 0001,A constrained optimization algorithm for total energy minimization in electronic structure calculations.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#YangMW06,https://doi.org/10.1016/j.jcp.2006.01.030 +Feng Chen,Efficient spectral-Galerkin methods for systems of coupled second-order equations and their applications.,2012,231,J. Comput. Physics,15,db/journals/jcphy/jcphy231.html#ChenS12,https://doi.org/10.1016/j.jcp.2012.03.001 +Haibo Zhao,A new event-driven constant-volume method for solution of the time evolution of particle size distribution.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#ZhaoZ09,https://doi.org/10.1016/j.jcp.2008.10.033 +Li-Jun Xuan,A weighted-integral based scheme.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#XuanW10,https://doi.org/10.1016/j.jcp.2010.04.031 +Yuri Feldman,An extension of the immersed boundary method based on the distributed Lagrange multiplier approach.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#FeldmanG16,https://doi.org/10.1016/j.jcp.2016.06.039 +Bruno Lombard,Numerical modeling of transient two-dimensional viscoelastic waves.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#LombardP11,https://doi.org/10.1016/j.jcp.2011.04.015 +Hailong Guo,Gradient recovery for elliptic interface problem: III. Nitsche's method.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#GuoY18,https://doi.org/10.1016/j.jcp.2017.11.031 +Nishant Panda,Discontinuous Galerkin methods for solving Boussinesq-Green-Naghdi equations in resolving non-linear and dispersive surface water waves.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#PandaDZKWD14,https://doi.org/10.1016/j.jcp.2014.05.035 +Mark Ainsworth,Dispersive behaviour of high order finite element schemes for the one-way wave equation.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#Ainsworth14,https://doi.org/10.1016/j.jcp.2013.11.003 +Julien Javaloyes,Rational Chebyshev spectral transform for the dynamics of broad-area laser diodes.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#JavaloyesB15,https://doi.org/10.1016/j.jcp.2015.06.027 +Bin Dong,Wavelet frame based surface reconstruction from unorganized points.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#DongS11,https://doi.org/10.1016/j.jcp.2011.07.022 +Lori Badea,Schwarz method for earthquake source dynamics.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#BadeaIW08,https://doi.org/10.1016/j.jcp.2007.11.044 +Jens Lang 0001,Extrapolation-based implicit-explicit Peer methods with optimised stability regions.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#LangH17,https://doi.org/10.1016/j.jcp.2017.02.034 +Chang-Jun Zheng,An accurate and efficient acoustic eigensolver based on a fast multipole BEM and a contour integral method.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#ZhengGDCZ16,https://doi.org/10.1016/j.jcp.2015.10.048 +Yin-Tzer Shih,A two-parameter continuation algorithm using radial basis function collocation method for rotating Bose-Einstein condensates.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#ShihT13,https://doi.org/10.1016/j.jcp.2013.06.018 +Zheming Zheng,A hybrid multiscale kinetic Monte Carlo method for simulation of copper electrodeposition.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#ZhengSBAP08,https://doi.org/10.1016/j.jcp.2008.01.056 +Matías Fernando Benedetto,A hybrid mortar virtual element method for discrete fracture network simulations.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#BenedettoBBPS16,https://doi.org/10.1016/j.jcp.2015.11.034 +Tobias Leicht,Error estimation and anisotropic mesh refinement for 3d laminar aerodynamic flow simulations.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#LeichtH10,https://doi.org/10.1016/j.jcp.2010.06.019 +Sirui Tan,Efficient implementation of high order inverse Lax-Wendroff boundary treatment for conservation laws.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#TanWSN12,https://doi.org/10.1016/j.jcp.2011.11.037 +Belkis Erzincanli,An arbitrary Lagrangian-Eulerian formulation for solving moving boundary problems with large displacements and rotations.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#ErzincanliS13,https://doi.org/10.1016/j.jcp.2013.08.038 +Arthur Guittet,A stable projection method for the incompressible Navier-Stokes equations on arbitrary geometries and adaptive Quad/Octrees.,2015,292,J. Comput. Physics,,db/journals/jcphy/jcphy292.html#GuittetTG15,https://doi.org/10.1016/j.jcp.2015.03.024 +Do Wan Kim,Extrinsic meshfree approximation using asymptotic expansion for interfacial discontinuity of derivative.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#KimYLB07,https://doi.org/10.1016/j.jcp.2006.06.023 +Jizu Huang,A lattice Boltzmann model for multiphase flows with moving contact line and variable density.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#HuangW18,https://doi.org/10.1016/j.jcp.2017.10.002 +Juan Manzanero,The Bassi Rebay 1 scheme is a special case of the Symmetric Interior Penalty formulation for discontinuous Galerkin discretisations with Gauss-Lobatto points.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#ManzaneroRRF18,https://doi.org/10.1016/j.jcp.2018.02.035 +Peter A. Gnoffo,Solutions of nonlinear differential equations with feature detection using fast Walsh transforms.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#Gnoffo17,https://doi.org/10.1016/j.jcp.2017.03.016 +Benjamin Grier,Numerical integration techniques for discontinuous manufactured solutions.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#GrierAWCF14,https://doi.org/10.1016/j.jcp.2014.08.031 +M. Lilienthal,Non-dissipative space-time hp-discontinuous Galerkin method for the time-dependent Maxwell equations.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#LilienthalSW14,https://doi.org/10.1016/j.jcp.2014.07.015 +Seung Hyun Kim,A front propagation formulation for under-resolved reaction fronts.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#Kim15,https://doi.org/10.1016/j.jcp.2014.12.051 +Thomas Hagstrom,Grid stabilization of high-order one-sided differencing II: Second-order wave equations.,2012,231,J. Comput. Physics,23,db/journals/jcphy/jcphy231.html#HagstromH12,https://doi.org/10.1016/j.jcp.2012.07.033 +J. E. Sprittles,Finite element simulation of dynamic wetting flows as an interface formation process.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#SprittlesS13,https://doi.org/10.1016/j.jcp.2012.07.018 +Filippo Posta,Compensated optimal grids for elliptic boundary-value problems.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#PostaSM08,https://doi.org/10.1016/j.jcp.2008.06.026 +Maarten Hornikx,A multi-domain Fourier pseudospectral time-domain method for the linearized Euler equations.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#HornikxRD12,https://doi.org/10.1016/j.jcp.2012.03.014 +Chris E. Kees,A conservative level set method suitable for variable-order approximations and unstructured meshes.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#KeesAFB11,https://doi.org/10.1016/j.jcp.2011.02.030 +Houde Han,Split local absorbing conditions for one-dimensional nonlinear Klein-Gordon equation on unbounded domain.,2008,227,J. Comput. Physics,20,db/journals/jcphy/jcphy227.html#HanZ08,https://doi.org/10.1016/j.jcp.2008.07.006 +Like Li,Boundary conditions for thermal lattice Boltzmann equation method.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#LiMK13,https://doi.org/10.1016/j.jcp.2012.11.027 +Dominik Derigs,A novel averaging technique for discrete entropy-stable dissipation operators for ideal MHD.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#DerigsWGW17,https://doi.org/10.1016/j.jcp.2016.10.055 +Weizhu Bao,An efficient and spectrally accurate numerical method for computing dynamics of rotating Bose-Einstein condensates.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#BaoW06,https://doi.org/10.1016/j.jcp.2006.01.020 +Piotr K. Smolarkiewicz,A finite-volume module for cloud-resolving simulations of global atmospheric flows.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#SmolarkiewiczKG17,https://doi.org/10.1016/j.jcp.2017.04.008 +Krzysztof J. Fidkowski,Output-based space-time mesh adaptation for the compressible Navier-Stokes equations.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#FidkowskiL11,https://doi.org/10.1016/j.jcp.2011.03.059 +Daniel W. Meyer,Accurate and computationally efficient mixing models for the simulation of turbulent mixing with PDF methods.,2013,247,J. Comput. Physics,,db/journals/jcphy/jcphy247.html#MeyerJ13,https://doi.org/10.1016/j.jcp.2013.03.059 +I. S. Kavvadias,On the proper treatment of grid sensitivities in continuous adjoint methods for shape optimization.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#KavvadiasPG15,https://doi.org/10.1016/j.jcp.2015.08.012 +Qingsong Tu,An updated Lagrangian particle hydrodynamics (ULPH) for Newtonian fluids.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#TuL17,https://doi.org/10.1016/j.jcp.2017.07.031 +Martin Frank,Time-dependent simplified PN approximation to the equations of radiative transfer.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#FrankKLY07,https://doi.org/10.1016/j.jcp.2007.07.009 +James Bremer,Universal quadratures for boundary integral equations on two-dimensional domains with corners.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#BremerRS10,https://doi.org/10.1016/j.jcp.2010.06.040 +Sina Haeri,A new implicit fictitious domain method for the simulation of flow in complex geometries with heat transfer.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#HaeriS13,https://doi.org/10.1016/j.jcp.2012.11.050 +Li Fan,Time dependent scattering from a grating.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#FanM15,https://doi.org/10.1016/j.jcp.2015.07.067 +Samuel J. Araki,Cell-centered particle weighting algorithm for PIC simulations in a non-uniform 2D axisymmetric mesh.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#ArakiW14,https://doi.org/10.1016/j.jcp.2014.04.037 +Jeffery D. Densmore,Asymptotic analysis of the spatial discretization of radiation absorption and re-emission in Implicit Monte Carlo.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#Densmore11,https://doi.org/10.1016/j.jcp.2010.10.030 +R. Masson,Coupling compositional liquid gas Darcy and free gas flows at porous and free-flow domains interface.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#MassonTZ16,https://doi.org/10.1016/j.jcp.2016.06.003 +Cassio M. Oishi,An implicit technique for solving 3D low Reynolds number moving free surface flows.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#OishiTCM08,https://doi.org/10.1016/j.jcp.2008.04.017 +Arthur Moncorgé,Sequential fully implicit formulation for compositional simulation using natural variables.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#MoncorgeTJ18,https://doi.org/10.1016/j.jcp.2018.05.048 +Yao Jin,Optimized low-dissipation and low-dispersion schemes for compressible flows.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#JinLC18,https://doi.org/10.1016/j.jcp.2018.05.049 +Siddharth Savadatti,Accurate absorbing boundary conditions for anisotropic elastic media. Part 2: Untilted non-elliptic anisotropy.,2012,231,J. Comput. Physics,22,db/journals/jcphy/jcphy231.html#SavadattiG12a,https://doi.org/10.1016/j.jcp.2012.05.039 +M. Malovichko,Approximate solutions of acoustic 3D integral equation and their application to seismic modeling and full-waveform inversion.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#MalovichkoKYZ17,https://doi.org/10.1016/j.jcp.2017.06.021 +Guang Lin,Weak Galerkin finite element methods for Darcy flow: Anisotropy and heterogeneity.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#LinLMY14,https://doi.org/10.1016/j.jcp.2014.07.001 +Jinmo Lee,An implicit ghost-cell immersed boundary method for simulations of moving body problems with control of spurious force oscillations.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#LeeY13,https://doi.org/10.1016/j.jcp.2012.08.044 +Annafederica Urbano,An approximate Riemann solver for real gas parabolized Navier-Stokes equations.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#UrbanoN13,https://doi.org/10.1016/j.jcp.2012.09.019 +Jianping Meng,Accuracy analysis of high-order lattice Boltzmann models for rarefied gas flows.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#MengZ11,https://doi.org/10.1016/j.jcp.2010.10.023 +Arne Van Londersele,An in-depth stability analysis of nonuniform FDTD combined with novel local implicitization techniques.,2017,342,J. Comput. Physics,,db/journals/jcphy/jcphy342.html#LonderseleZG17,https://doi.org/10.1016/j.jcp.2017.04.036 +Raimund Bürger,Adaptive multiresolution WENO schemes for multi-species kinematic flow models.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#BurgerK07,https://doi.org/10.1016/j.jcp.2006.11.010 +Ferran Garcia,Exponential versus IMEX high-order time integrators for thermal convection in rotating spherical shells.,2014,264,J. Comput. Physics,,db/journals/jcphy/jcphy264.html#GarciaBNS14,https://doi.org/10.1016/j.jcp.2014.01.033 +Pavel B. Bochev,Fast optimization-based conservative remap of scalar fields through aggregate mass transfer.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#BochevRS13,https://doi.org/10.1016/j.jcp.2013.03.040 +Peter A. E. M. Janssen,Progress in ocean wave forecasting.,2008,227,J. Comput. Physics,7,db/journals/jcphy/jcphy227.html#Janssen08,https://doi.org/10.1016/j.jcp.2007.04.029 +Yan-Feng Wang,Finite analytic numerical method for three-dimensional fluid flow in heterogeneous porous media.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#WangLW14,https://doi.org/10.1016/j.jcp.2014.08.026 +åsmund Ervik,A robust method for calculating interface curvature and normal vectors using an extracted local level set.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#ErvikLM14,https://doi.org/10.1016/j.jcp.2013.09.053 +Manoj K. Rajpoot,Optimal time advancing dispersion relation preserving schemes.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#RajpootSD10,https://doi.org/10.1016/j.jcp.2010.01.018 +Min Hyung Cho,A heterogeneous FMM for layered media Helmholtz equation I: Two layers in R2.,2018,369,J. Comput. Physics,,db/journals/jcphy/jcphy369.html#ChoHCC18,https://doi.org/10.1016/j.jcp.2018.05.007 +Victor Bayona,On the role of polynomials in RBF-FD approximations: II. Numerical solution of elliptic PDEs.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#BayonaFFB17,https://doi.org/10.1016/j.jcp.2016.12.008 +Jun Jia,Fast transform from an adaptive multi-wavelet representation to a partial Fourier representation.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#JiaHF10,https://doi.org/10.1016/j.jcp.2010.04.006 +Sehun Chun,Method of moving frames to solve time-dependent Maxwell's equations on anisotropic curved surfaces: Applications to invisible cloak and ELF propagation.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#Chun17,https://doi.org/10.1016/j.jcp.2017.03.031 +Philip Zwanenburg,Equivalence between the Energy Stable Flux Reconstruction and Filtered Discontinuous Galerkin Schemes.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#ZwanenburgN16,https://doi.org/10.1016/j.jcp.2015.11.036 +Yao-Hsin Hwang,Construction and simulation of a novel continuous traffic flow model.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#HwangY17,https://doi.org/10.1016/j.jcp.2017.09.005 +Patrick Blonigan,Multiple shooting shadowing for sensitivity analysis of chaotic dynamical systems.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#BloniganW18,https://doi.org/10.1016/j.jcp.2017.10.032 +William W. Dai,Second-order accurate interface- and discontinuity-aware diffusion solvers in two and three dimensions.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#DaiS15,https://doi.org/10.1016/j.jcp.2014.10.040 +B. Freytag,Simulations of stellar convection with CO5BOLD.,2012,231,J. Comput. Physics,3,db/journals/jcphy/jcphy231.html#FreytagSLWSS12,https://doi.org/10.1016/j.jcp.2011.09.026 +Guangwei Yuan,Analysis of accuracy of a finite volume scheme for diffusion equations on distorted meshes.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#YuanS07,https://doi.org/10.1016/j.jcp.2006.11.011 +Tapan K. Sengupta,Further improvement and analysis of CCD scheme: Dissipation discretization and de-aliasing properties.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#SenguptaVB09,https://doi.org/10.1016/j.jcp.2009.05.038 +Filipe da Silva,Stable explicit coupling of the Yee scheme with a linear current model in fluctuating magnetized plasmas.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#SilvaPDH15,https://doi.org/10.1016/j.jcp.2015.03.069 +Panagiotis Tsoutsanis,WENO schemes on arbitrary mixed-element unstructured meshes in three space dimensions.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#TsoutsanisTD11,https://doi.org/10.1016/j.jcp.2010.11.023 +Roberto Camassa,Integral and integrable algorithms for a nonlinear shallow-water wave equation.,2006,216,J. Comput. Physics,2,db/journals/jcphy/jcphy216.html#CamassaHL06,https://doi.org/10.1016/j.jcp.2005.12.013 +Eurika Kaiser,Sparsity enabled cluster reduced-order models for control.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#KaiserMDKBB18,https://doi.org/10.1016/j.jcp.2017.09.057 +Jean Michel D. Sellier,On the simulation of indistinguishable fermions in the many-body Wigner formalism.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#SellierD15,https://doi.org/10.1016/j.jcp.2014.09.026 +Gábor Tóth,Hall magnetohydrodynamics on block-adaptive grids.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#TothMG08,https://doi.org/10.1016/j.jcp.2008.04.010 +Xavier Antoine,High-order IMEX-spectral schemes for computing the dynamics of systems of nonlinear Schrödinger/Gross-Pitaevskii equations.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#AntoineBR16,https://doi.org/10.1016/j.jcp.2016.09.020 +Joseph Bakarji,On the use of reverse Brownian motion to accelerate hybrid simulations.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#BakarjiT17,https://doi.org/10.1016/j.jcp.2016.12.032 +Julian A. Simeonov,A pressure boundary integral method for direct fluid-particle simulations on Cartesian grids.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#SimeonovC11,https://doi.org/10.1016/j.jcp.2010.11.027 +Dionysios Angelidis,Unstructured Cartesian refinement with sharp interface immersed boundary method for 3D unsteady incompressible flows.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#AngelidisCS16,https://doi.org/10.1016/j.jcp.2016.08.028 +Shin-ichi Iga,Improved smoothness and homogeneity of icosahedral grids using the spring dynamics method.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#IgaT14,https://doi.org/10.1016/j.jcp.2013.10.013 +Birte Schmidtmann,Hybrid entropy stable HLL-type Riemann solvers for hyperbolic conservation laws.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#SchmidtmannW17,https://doi.org/10.1016/j.jcp.2016.10.034 +Guang-hua Gao,Stability and convergence of finite difference schemes for a class of time-fractional sub-diffusion equations based on certain superconvergence.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#GaoSS15,https://doi.org/10.1016/j.jcp.2014.09.033 +Wensheng Zhang,A new high-order finite volume method for 3D elastic wave simulation on unstructured meshes.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#ZhangZZ17,https://doi.org/10.1016/j.jcp.2017.03.050 +Xuhao Liu,A higher order non-polynomial spline method for fractional sub-diffusion problems.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#LiuW17,https://doi.org/10.1016/j.jcp.2016.10.006 +Fernando Fraternali,On the estimation of the curvatures and bending rigidity of membrane networks via a local maximum-entropy approach.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#FraternaliLM12,https://doi.org/10.1016/j.jcp.2011.09.017 +Youhi Morii,ERENA: A fast and robust Jacobian-free integration method for ordinary differential equations of chemical kinetics.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#MoriiTKSS16,https://doi.org/10.1016/j.jcp.2016.06.022 +Ngoc Cuong Nguyen,An implicit high-order hybridizable discontinuous Galerkin method for linear convection-diffusion equations.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#NguyenPC09,https://doi.org/10.1016/j.jcp.2009.01.030 +Matthias Kirchhart,A splitting-free vorticity redistribution method.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#KirchhartO17,https://doi.org/10.1016/j.jcp.2016.11.014 +Tsutomu Ikeno,Finite-difference immersed boundary method consistent with wall conditions for incompressible turbulent flow simulations.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#IkenoK07,https://doi.org/10.1016/j.jcp.2007.05.028 +Markos A. Katsoulakis,Scalable information inequalities for uncertainty quantification.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#KatsoulakisRW17,https://doi.org/10.1016/j.jcp.2017.02.020 +Chunwu Wang,An interface treating technique for compressible multi-medium flow with Runge-Kutta discontinuous Galerkin method.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#WangS10,https://doi.org/10.1016/j.jcp.2010.08.012 +Kouroush Sadegh Zadeh,A mass-conservative switching algorithm for modeling fluid flow in variably saturated porous media.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#Zadeh11,https://doi.org/10.1016/j.jcp.2010.10.011 +Aarthi Sekaran,An analysis of numerical convergence in discrete velocity gas dynamics for internal flows.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#SekaranVG18,https://doi.org/10.1016/j.jcp.2018.03.023 +Lei Wu 0003,A fast spectral method for the Boltzmann equation for monatomic gas mixtures.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#WuZRZ15,https://doi.org/10.1016/j.jcp.2015.06.019 +Qiang Du,Fast and accurate implementation of Fourier spectral approximations of nonlocal diffusion operators and its applications.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#DuY17,https://doi.org/10.1016/j.jcp.2016.11.028 +Hendrik Ranocha,Extended skew-symmetric form for summation-by-parts operators and varying Jacobians.,2017,342,J. Comput. Physics,,db/journals/jcphy/jcphy342.html#RanochaOS17,https://doi.org/10.1016/j.jcp.2017.04.044 +Alessandro Alaia,A hybrid method for hydrodynamic-kinetic flow - Part II - Coupling of hydrodynamic and kinetic models.,2012,231,J. Comput. Physics,16,db/journals/jcphy/jcphy231.html#AlaiaP12,https://doi.org/10.1016/j.jcp.2012.02.022 +Daniel R. Ladiges,Frequency-domain Monte Carlo method for linear oscillatory gas flows.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#LadigesS15,https://doi.org/10.1016/j.jcp.2014.12.036 +S. V. Dolgov,Low-rank approximation in the numerical modeling of the Farley-Buneman instability in ionospheric plasma.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#DolgovST14,https://doi.org/10.1016/j.jcp.2014.01.029 +Sami Ammar,A multiphase three-dimensional multi-relaxation time (MRT) lattice Boltzmann model with surface tension adjustment.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#AmmarPT17,https://doi.org/10.1016/j.jcp.2017.04.045 +Arnaud Duran,Asymptotic preserving scheme for the shallow water equations with source terms on unstructured meshes.,2015,287,J. Comput. Physics,,db/journals/jcphy/jcphy287.html#DuranMTB15,https://doi.org/10.1016/j.jcp.2015.02.007 +Oleksandr Misiats,Second-order accurate monotone finite volume scheme for Richards' equation.,2013,239,J. Comput. Physics,,db/journals/jcphy/jcphy239.html#MisiatsL13,https://doi.org/10.1016/j.jcp.2012.09.004 +Angela Diggs,Evaluation of methods for calculating volume fraction in Eulerian-Lagrangian multiphase flow simulations.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#DiggsB16,https://doi.org/10.1016/j.jcp.2016.02.066 +Christian Bataillon,Numerical methods for the simulation of a corrosion model with moving oxide layer.,2012,231,J. Comput. Physics,18,db/journals/jcphy/jcphy231.html#BataillonBCFHT12,https://doi.org/10.1016/j.jcp.2012.06.005 +Marion Darbas,Combining analytic preconditioner and Fast Multipole Method for the 3-D Helmholtz equation.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#DarbasDL13,https://doi.org/10.1016/j.jcp.2012.10.059 +Masoud Safdari,A NURBS-based generalized finite element scheme for 3D simulation of heterogeneous materials.,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#SafdariNSG16,https://doi.org/10.1016/j.jcp.2016.05.004 +Xiangxiong Zhang,On maximum-principle-satisfying high order schemes for scalar conservation laws.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#ZhangS10,https://doi.org/10.1016/j.jcp.2009.12.030 +Dongwook Lee,An unsplit staggered mesh scheme for multidimensional magnetohydrodynamics.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#LeeD09,https://doi.org/10.1016/j.jcp.2008.08.026 +Narina Jung,Two-dimensional characteristic boundary conditions for open boundaries in the lattice Boltzmann methods.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#JungSY15,https://doi.org/10.1016/j.jcp.2015.08.044 +Yen Ting Ng,An efficient fluid-solid coupling algorithm for single-phase flows.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#NgMG09,https://doi.org/10.1016/j.jcp.2009.08.032 +Andres Goza,Accurate computation of surface stresses and forces with immersed boundary methods.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#GozaLMC16,https://doi.org/10.1016/j.jcp.2016.06.014 +Arezoo Motavalizadeh Ardekani,Collision of multi-particle and general shape objects in a viscous fluid.,2008,227,J. Comput. Physics,24,db/journals/jcphy/jcphy227.html#ArdekaniDR08,https://doi.org/10.1016/j.jcp.2008.08.014 +Sashikumaar Ganesan,Arbitrary Lagrangian-Eulerian finite-element method for computation of two-phase flows with soluble surfactants.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#GanesanT12,https://doi.org/10.1016/j.jcp.2012.01.018 +Bruno D. Welfert,Analysis of iterated ADI-FDTD schemes for Maxwell curl equations.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#Welfert07,https://doi.org/10.1016/j.jcp.2006.05.038 +Lionel Le Penven,On the spectral accuracy of a fictitious domain method for elliptic operators in multi-dimensions.,2012,231,J. Comput. Physics,23,db/journals/jcphy/jcphy231.html#PenvenB12,https://doi.org/10.1016/j.jcp.2012.07.043 +Abdoulaye Samake,Parallel implementation of a Lagrangian-based model on an adaptive mesh in C++: Application to sea-ice.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#SamakeRBO17,https://doi.org/10.1016/j.jcp.2017.08.055 +William J. Menz,Stochastic solution of population balance equations for reactor networks.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#MenzAK14,https://doi.org/10.1016/j.jcp.2013.09.021 +Xiaochen Wang,Trust-region based solver for nonlinear transport in heterogeneous porous media.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#WangT13,https://doi.org/10.1016/j.jcp.2013.06.041 +Michal Olejnik,SPH with dynamical smoothing length adjustment based on the local flow kinematics.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#OlejnikSP17,https://doi.org/10.1016/j.jcp.2017.07.023 +M. Tzoufras,A Vlasov-Fokker-Planck code for high energy density physics.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#TzoufrasBNT11,https://doi.org/10.1016/j.jcp.2011.04.034 +John N. Shadid,Stabilized FE simulation of prototype thermal-hydraulics problems with integrated adjoint-based capabilities.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#ShadidSCWP16,https://doi.org/10.1016/j.jcp.2016.04.062 +David Sondak,A new class of finite element variational multiscale turbulence models for incompressible magnetohydrodynamics.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#SondakSOPCS15,https://doi.org/10.1016/j.jcp.2015.04.035 +Chiara Sorgentone,A highly accurate boundary integral equation method for surfactant-laden drops in 3D.,2018,360,J. Comput. Physics,,db/journals/jcphy/jcphy360.html#SorgentoneT18,https://doi.org/10.1016/j.jcp.2018.01.033 +Pedro Gonnet,P-SHAKE: A quadratically convergent SHAKE in O(n2).,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#Gonnet07,https://doi.org/10.1016/j.jcp.2006.05.032 +Matthias Läuter,A parallel adaptive barotropic model of the atmosphere.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#LauterHRBFBDH07,https://doi.org/10.1016/j.jcp.2006.09.029 +Chau-Hsing Su,Covariance kernel representations of multidimensional second-order stochastic processes.,2006,217,J. Comput. Physics,1,db/journals/jcphy/jcphy217.html#SuL06,https://doi.org/10.1016/j.jcp.2006.02.006 +Troy D. Butler,Quantifying uncertainty in material damage from vibrational data.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#ButlerHJ15,https://doi.org/10.1016/j.jcp.2014.12.011 +Dirk Lebiedz,Minimal curvature trajectories: Riemannian geometry concepts for slow manifold computation in chemical kinetics.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#LebiedzRS10,https://doi.org/10.1016/j.jcp.2010.05.008 +Ankit V. Bhagatwala,A modified artificial viscosity approach for compressible turbulence simulations.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#BhagatwalaL09,https://doi.org/10.1016/j.jcp.2009.04.009 +E. Gagarina,Variational space-time (dis)continuous Galerkin method for nonlinear free surface water waves.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#GagarinaAVB14,https://doi.org/10.1016/j.jcp.2014.06.035 +M. H. Heydari,An efficient computational method for solving nonlinear stochastic Itô integral equations: Application for stochastic problems in physics.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#HeydariHCG15,https://doi.org/10.1016/j.jcp.2014.11.042 +Simone Marras,A variational multiscale stabilized finite element method for the solution of the Euler equations of nonhydrostatic stratified flows.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#MarrasMVJH13a,https://doi.org/10.1016/j.jcp.2012.10.056 +Masahiro Fujita,Multiscale simulation method for self-organization of nanoparticles in dense suspension.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#FujitaY07,https://doi.org/10.1016/j.jcp.2006.09.001 +Erich L. Foster,A structure preserving scheme for the Kolmogorov-Fokker-Planck equation.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#FosterLT17,https://doi.org/10.1016/j.jcp.2016.11.009 +Kivanc Ekici,Computationally fast harmonic balance methods for unsteady aerodynamic predictions of helicopter rotors.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#EkiciHD08,https://doi.org/10.1016/j.jcp.2008.02.028 +Ludovic Métivier,A robust absorbing layer method for anisotropic seismic wave modeling.,2014,279,J. Comput. Physics,,db/journals/jcphy/jcphy279.html#MetivierBLOV14,https://doi.org/10.1016/j.jcp.2014.09.007 +Marcos Castro,High order weighted essentially non-oscillatory WENO-Z schemes for hyperbolic conservation laws.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#CastroCD11,https://doi.org/10.1016/j.jcp.2010.11.028 +Rixin Yu,An improved high-order scheme for DNS of low Mach number turbulent reacting flows based on stiff chemistry solver.,2012,231,J. Comput. Physics,16,db/journals/jcphy/jcphy231.html#YuYB12,https://doi.org/10.1016/j.jcp.2012.05.006 +Z. Xiong,A high-order finite-volume algorithm for Fokker-Planck collisions in magnetized plasmas.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#XiongCRX08,https://doi.org/10.1016/j.jcp.2008.04.004 +Huafei Sun,An adaptive simplex cut-cell method for high-order discontinuous Galerkin discretizations of elliptic interface problems and conjugate heat transfer problems.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#SunD14,https://doi.org/10.1016/j.jcp.2014.08.035 +Xuehua Yang,Crank-Nicolson/quasi-wavelets method for solving fourth order partial integro-differential equation with a weakly singular kernel.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#YangXZ13,https://doi.org/10.1016/j.jcp.2012.09.037 +Min Hyung Cho,A parallel fast algorithm for computing the Helmholtz integral operator in 3-D layered media.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#ChoC12,https://doi.org/10.1016/j.jcp.2012.05.022 +Zhicheng Yang,A direct Eulerian GRP scheme for relativistic hydrodynamics: One-dimensional case.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#YangHT11,https://doi.org/10.1016/j.jcp.2011.07.004 +Junhui Gao,A block interface flux reconstruction method for numerical simulation with high order finite difference scheme.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#Gao13,https://doi.org/10.1016/j.jcp.2012.12.037 +Hermann Brunner,Numerical simulations of 2D fractional subdiffusion problems.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#BrunnerLY10,https://doi.org/10.1016/j.jcp.2010.05.015 +Mohammad Farazmand,Reduced-order prediction of rogue waves in two-dimensional deep-water waves.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#FarazmandS17,https://doi.org/10.1016/j.jcp.2017.03.054 +Scott A. Norris,Adaptive Localized Replay: An efficient integration scheme for accurate simulation of coarsening dynamical systems.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#NorrisT14,https://doi.org/10.1016/j.jcp.2014.05.003 +Sébastien F. Matringe,Robust streamline tracing for the simulation of porous media flow on general triangular and quadrilateral grids.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#MatringeJT06,https://doi.org/10.1016/j.jcp.2006.07.004 +Johan A. Heyns,A weakly compressible free-surface flow solver for liquid-gas systems using the volume-of-fluid approach.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#HeynsMHO13,https://doi.org/10.1016/j.jcp.2013.01.022 +Lucas O. Müller,A high order approximation of hyperbolic conservation laws in networks: Application to one-dimensional blood flow.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#MullerB15,https://doi.org/10.1016/j.jcp.2015.07.056 +J. Juno,Discontinuous Galerkin algorithms for fully kinetic plasmas.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#JunoHTSD18,https://doi.org/10.1016/j.jcp.2017.10.009 +Matthew W. Kunz,Pegasus: A new hybrid-kinetic particle-in-cell code for astrophysical plasma dynamics.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#KunzSB14,https://doi.org/10.1016/j.jcp.2013.11.035 +Jakob M. Maljaars,A hybridized discontinuous Galerkin framework for high-order particle-mesh operator splitting of the incompressible Navier-Stokes equations.,2018,358,J. Comput. Physics,,db/journals/jcphy/jcphy358.html#MaljaarsLM18,https://doi.org/10.1016/j.jcp.2017.12.036 +Marcus Herrmann,A balanced force refined level set grid method for two-phase flows on unstructured flow solver grids.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#Herrmann08,https://doi.org/10.1016/j.jcp.2007.11.002 +M. De Corato,Finite element formulation of fluctuating hydrodynamics for fluids filled with rigid particles using boundary fitted meshes.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#CoratoSHDMH16,https://doi.org/10.1016/j.jcp.2016.04.040 +Zhen Luo,Shape and topology optimization of compliant mechanisms using a parameterization level set method.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#LuoTWW07,https://doi.org/10.1016/j.jcp.2007.08.011 +L. Haupt,A fast spectral element solver combining static condensation and multigrid techniques.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#HauptSN13,https://doi.org/10.1016/j.jcp.2013.07.035 +Juan Cheng,A high order ENO conservative Lagrangian type scheme for the compressible Euler equations.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#ChengS07,https://doi.org/10.1016/j.jcp.2007.09.017 +Maria Elena Innocenti,Momentum conservation in Multi-Level Multi-Domain (MLMD) simulations.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#InnocentiBML16,https://doi.org/10.1016/j.jcp.2016.02.026 +Sonjoy Das,Polynomial chaos representation of spatio-temporal random fields from experimental measurements.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#DasGF09,https://doi.org/10.1016/j.jcp.2009.08.025 +John W. Barrett 0001,Stable finite element approximations of two-phase flow with soluble surfactant.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#BarrettGN15,https://doi.org/10.1016/j.jcp.2015.05.029 +Weiguo Gao,Iterative minimization algorithm for efficient calculations of transition states.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#GaoLZ16,https://doi.org/10.1016/j.jcp.2015.12.056 +Lucian Ivan,High-order central ENO finite-volume scheme for hyperbolic conservation laws on three-dimensional cubed-sphere grids.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#IvanSSG15,https://doi.org/10.1016/j.jcp.2014.11.002 +Jun Luo,Efficient formulation of scale separation for multi-scale modeling of interfacial flows.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#LuoHA16,https://doi.org/10.1016/j.jcp.2015.11.044 +Gaurav Tomar,Two-phase electrohydrodynamic simulations using a volume-of-fluid approach.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#TomarGBASDWD07,https://doi.org/10.1016/j.jcp.2007.09.003 +T. D. Ringler,A unified approach to energy conservation and potential vorticity dynamics for arbitrarily-structured C-grids.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#RinglerTKS10,https://doi.org/10.1016/j.jcp.2009.12.007 +Kay Hamacher,Efficient perturbation analysis of elastic network models - Application to acetylcholinesterase of T. californica.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#Hamacher10,https://doi.org/10.1016/j.jcp.2010.06.015 +Arnau Pont,Unified solver for fluid dynamics and aeroacoustics in isentropic gas flows.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#PontCBG18,https://doi.org/10.1016/j.jcp.2018.02.029 +Dong-Yeop Na,Axisymmetric charge-conservative electromagnetic particle simulation algorithm on unstructured grids: Application to microwave vacuum electronic devices.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#NaOMBT17,https://doi.org/10.1016/j.jcp.2017.06.016 +Paul J. Atzberger,Spatially adaptive stochastic numerical methods for intrinsic fluctuations in reaction-diffusion systems.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#Atzberger10,https://doi.org/10.1016/j.jcp.2010.01.012 +Brian R. Nease,Time series analysis and Monte Carlo methods for eigenvalue separation in neutron multiplication problems.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#NeaseU09,https://doi.org/10.1016/j.jcp.2009.07.037 +Marco Restelli,A semi-Lagrangian discontinuous Galerkin method for scalar advection by incompressible flows.,2006,216,J. Comput. Physics,1,db/journals/jcphy/jcphy216.html#RestelliBS06,https://doi.org/10.1016/j.jcp.2005.11.030 +Nianyu Yi,A direct discontinuous Galerkin method for the generalized Korteweg-de Vries equation: Energy conservation and boundary effect.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#YiHL13,https://doi.org/10.1016/j.jcp.2013.01.031 +Nauman Raza,Sobolev gradient approach for the time evolution related to energy minimization of Ginzburg-Landau functionals.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#RazaSS09,https://doi.org/10.1016/j.jcp.2008.12.017 +R. I. Saye,Multiscale modelling of evolving foams.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#SayeS16,https://doi.org/10.1016/j.jcp.2016.02.077 +Roger Temam,Suitable initial conditions.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#Temam06,https://doi.org/10.1016/j.jcp.2006.03.033 +Bernard Parent,Positivity-preserving flux difference splitting schemes.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#Parent13,https://doi.org/10.1016/j.jcp.2013.02.048 +Simon Abraham,A robust and efficient stepwise regression method for building sparse polynomial chaos expansions.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#AbrahamRGCL17,https://doi.org/10.1016/j.jcp.2016.12.015 +Kailiang Wu,A stochastic Galerkin method for first-order quasilinear hyperbolic systems with uncertainty.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#WuTX17,https://doi.org/10.1016/j.jcp.2017.05.027 +Romain Teyssier,Kinematic dynamos using constrained transport with high order Godunov schemes and adaptive mesh refinement.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#TeyssierFD06,https://doi.org/10.1016/j.jcp.2006.01.042 +Ping Wang,Modeling material responses by arbitrary Lagrangian Eulerian formulation and adaptive mesh refinement method.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#Wang10,https://doi.org/10.1016/j.jcp.2009.10.045 +Shugo Yasuda,Monte Carlo simulation for kinetic chemotaxis model: An application to the traveling population wave.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#Yasuda17,https://doi.org/10.1016/j.jcp.2016.10.066 +Feng Feng,Finite element modeling of lipid bilayer membranes.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#FengK06,https://doi.org/10.1016/j.jcp.2006.05.023 +Zhao Yu,An interaction potential based lattice Boltzmann method with adaptive mesh refinement (AMR) for two-phase flow simulation.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#YuF09,https://doi.org/10.1016/j.jcp.2009.05.034 +Hong Luo,A Hermite WENO-based limiter for discontinuous Galerkin method on unstructured grids.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#LuoBL07,https://doi.org/10.1016/j.jcp.2006.12.017 +Shaojing Li,Fast evaluation of Helmholtz potential on graphics processing units (GPUs).,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#LiLL10,https://doi.org/10.1016/j.jcp.2010.07.029 +Erin D. Fichtl,Krylov iterative methods and synthetic acceleration for transport in binary statistical media.,2009,228,J. Comput. Physics,22,db/journals/jcphy/jcphy228.html#FichtlWP09,https://doi.org/10.1016/j.jcp.2009.08.013 +Maria-Grazia Ascenzi,Individual-specific multi-scale finite element simulation of cortical bone of human proximal femur.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#AscenziKLKNK13,https://doi.org/10.1016/j.jcp.2012.05.027 +X. Z. Tang,Numerical computation of the helical Chandrasekhar-Kendall modes.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#Tang11,https://doi.org/10.1016/j.jcp.2010.07.033 +Jahrul M. Alam,Simultaneous space-time adaptive wavelet solution of nonlinear parabolic differential equations.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#AlamKV06,https://doi.org/10.1016/j.jcp.2005.10.009 +Yukihiro Komura,GPU-based single-cluster algorithm for the simulation of the Ising model.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#KomuraO12,https://doi.org/10.1016/j.jcp.2011.09.029 +Guanghui Hu,A multilevel correction adaptive finite element method for Kohn-Sham equation.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#HuXX18,https://doi.org/10.1016/j.jcp.2017.11.024 +Aamer Haque,Three-dimensional boundary detection for particle methods.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#HaqueD07,https://doi.org/10.1016/j.jcp.2007.06.012 +Peter D. Düben,A discontinuous/continuous low order finite element shallow water model on the sphere.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#DubenKA12,https://doi.org/10.1016/j.jcp.2011.11.018 +Shin K. Kang,The effect of lattice models within the lattice Boltzmann method in the simulation of wall-bounded turbulent flows.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#KangH13,https://doi.org/10.1016/j.jcp.2012.07.023 +Ehssan Nazockdast,A fast platform for simulating semi-flexible fiber suspensions applied to cell mechanics.,2017,329,J. Comput. Physics,,db/journals/jcphy/jcphy329.html#NazockdastRZS17,https://doi.org/10.1016/j.jcp.2016.10.026 +Yue Yu,Generalized fictitious methods for fluid-structure interactions: Analysis and simulations.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#YuBK13,https://doi.org/10.1016/j.jcp.2013.03.025 +Tuomas Airaksinen,An algebraic multigrid based shifted-Laplacian preconditioner for the Helmholtz equation.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#AiraksinenHPT07,https://doi.org/10.1016/j.jcp.2007.05.013 +Hehu Xie,Metric tensors for the interpolation error and its gradient in Lp norm.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#XieY14,https://doi.org/10.1016/j.jcp.2013.09.008 +J. R. Maddison,Directional integration on unstructured meshes via supermesh construction.,2012,231,J. Comput. Physics,12,db/journals/jcphy/jcphy231.html#MaddisonF12,https://doi.org/10.1016/j.jcp.2012.02.009 +Andrea Y. Weiße,Error-controlled global sensitivity analysis of ordinary differential equations.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#WeisseH11,https://doi.org/10.1016/j.jcp.2011.05.011 +Leopold Grinberg,Parallel multiscale simulations of a brain aneurysm.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#GrinbergFK13,https://doi.org/10.1016/j.jcp.2012.08.023 +Gang Guo,Lattice Monte Carlo simulation of Galilei variant anomalous diffusion.,2015,288,J. Comput. Physics,,db/journals/jcphy/jcphy288.html#GuoBU15,https://doi.org/10.1016/j.jcp.2015.02.017 +Bruce I. Cohen,Monte Carlo calculation of large and small-angle electron scattering in air.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#CohenHEFFGL17,https://doi.org/10.1016/j.jcp.2017.08.014 +R. Ahlfeld,SAMBA: Sparse Approximation of Moment-Based Arbitrary Polynomial Chaos.,2016,320,J. Comput. Physics,,db/journals/jcphy/jcphy320.html#AhlfeldBM16,https://doi.org/10.1016/j.jcp.2016.05.014 +Janusz A. Pudykiewicz,On numerical solution of the shallow water equations with chemical reactions on icosahedral geodesic grid.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#Pudykiewicz11,https://doi.org/10.1016/j.jcp.2010.11.045 +Alina Chertock,Well-balanced schemes for the Euler equations with gravitation: Conservative formulation using global fluxes.,2018,358,J. Comput. Physics,,db/journals/jcphy/jcphy358.html#ChertockCKOT18,https://doi.org/10.1016/j.jcp.2017.12.026 +B. Sanderse,Energy-conserving Runge-Kutta methods for the incompressible Navier-Stokes equations.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#Sanderse13,https://doi.org/10.1016/j.jcp.2012.07.039 +Zhen Luo,Design of piezoelectric actuators using a multiphase level set method of piecewise constants.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#LuoTLWW09,https://doi.org/10.1016/j.jcp.2008.12.019 +Zheng Fang,An operator expansions method for computing Dirichlet-Neumann operators in linear elastodynamics.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#FangN14,https://doi.org/10.1016/j.jcp.2014.04.038 +Shi Jin,Hamiltonian-preserving schemes for the Liouville equation of geometrical optics with discontinuous local wave speeds.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#JinW06,https://doi.org/10.1016/j.jcp.2005.10.012 +Eun-Sug Lee,Comparisons of weakly compressible and truly incompressible algorithms for the SPH mesh free particle method.,2008,227,J. Comput. Physics,18,db/journals/jcphy/jcphy227.html#LeeMXVLS08,https://doi.org/10.1016/j.jcp.2008.06.005 +Svenn Tveit,Identification of subsurface structures using electromagnetic data and shape priors.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#TveitBLM15,https://doi.org/10.1016/j.jcp.2014.12.041 +C. Brehm,A novel concept for the design of immersed interface methods.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#BrehmF13,https://doi.org/10.1016/j.jcp.2013.01.027 +Gordon L. Olson,Efficient solution of multi-dimensional flux-limited nonequilibrium radiation diffusion coupled to material conduction with second-order time discretization.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#Olson07,https://doi.org/10.1016/j.jcp.2007.05.015 +Ghulam M. Arshed,Minimizing errors from linear and nonlinear weights of WENO scheme for broadband applications with shock waves.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#ArshedH13,https://doi.org/10.1016/j.jcp.2013.03.037 +J. D. Berry,A multiphase electrokinetic flow model for electrolytes with liquid/liquid interfaces.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#BerryDH13,https://doi.org/10.1016/j.jcp.2013.05.026 +Raphaël Loubère,ReALE: A reconnection-based arbitrary-Lagrangian-Eulerian method.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#LoubereMSBG10,https://doi.org/10.1016/j.jcp.2010.03.011 +B. J. Gross,Hydrodynamic flows on curved surfaces: Spectral numerical methods for radial manifold shapes.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#GrossA18,https://doi.org/10.1016/j.jcp.2018.06.013 +Xiaoliang Wan,An adaptive high-order minimum action method.,2011,230,J. Comput. Physics,24,db/journals/jcphy/jcphy230.html#Wan11,https://doi.org/10.1016/j.jcp.2011.08.006 +Jan Nordström,Summation-by-parts in time.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#NordstromL13,https://doi.org/10.1016/j.jcp.2013.05.042 +Lee Lindblom,Constructing reference metrics on multicube representations of arbitrary manifolds.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#LindblomTR16,https://doi.org/10.1016/j.jcp.2016.02.029 +Daniel A. Barcarolo,Adaptive particle refinement and derefinement applied to the smoothed particle hydrodynamics method.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#BarcaroloTOV14,https://doi.org/10.1016/j.jcp.2014.05.040 +Wim M. van Rees,A comparison of vortex and pseudo-spectral methods for the simulation of periodic vortical flows at high Reynolds numbers.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#ReesLPK11,https://doi.org/10.1016/j.jcp.2010.11.031 +Gerald Paul,A Complexity O(1) priority queue for event driven molecular dynamics simulations.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#Paul07,https://doi.org/10.1016/j.jcp.2006.06.042 +C. de Dieuleveult,A global strategy for solving reactive transport equations.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#DieuleveultEK09,https://doi.org/10.1016/j.jcp.2009.05.044 +Lucian Ivan,Multi-dimensional finite-volume scheme for hyperbolic conservation laws on three-dimensional solution-adaptive cubed-sphere grids.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#IvanSNG13,https://doi.org/10.1016/j.jcp.2013.08.008 +Daniele Venturi 0002,New evolution equations for the joint response-excitation probability density function of stochastic solutions to first-order nonlinear PDEs.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#VenturiK12,https://doi.org/10.1016/j.jcp.2012.07.013 +Eric Brown-Dymkoski,A characteristic based volume penalization method for general evolution problems applied to compressible viscous flows.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#Brown-DymkoskiKV14,https://doi.org/10.1016/j.jcp.2013.12.060 +Seungjoon Lee,A general CFD framework for fault-resilient simulations based on multi-resolution information fusion.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#LeeKK17a,https://doi.org/10.1016/j.jcp.2017.06.044 +S. van Veldhuizen,On projected Newton-Krylov solvers for instationary laminar reacting gas flows.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#VeldhuizenVK10,https://doi.org/10.1016/j.jcp.2009.11.004 +Pablo Fernández 0002,The hybridized Discontinuous Galerkin method for Implicit Large-Eddy Simulation of transitional turbulent flows.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#FernandezNP17,https://doi.org/10.1016/j.jcp.2017.02.015 +J. J. B. Silva,Numerical approach of the quantum circuit theory.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#SilvaDA17,https://doi.org/10.1016/j.jcp.2016.12.028 +Wei Wang 0027,Construction of low dissipative high-order well-balanced filter schemes for non-equilibrium flows.,2011,230,J. Comput. Physics,11,db/journals/jcphy/jcphy230.html#WangYSMS11,https://doi.org/10.1016/j.jcp.2010.04.033 +Lingxiao Li,A robust solver for the finite element approximation of stationary incompressible MHD equations in 3D.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#LiZ17,https://doi.org/10.1016/j.jcp.2017.09.025 +Limei Li,Alternating direction implicit-Euler method for the two-dimensional fractional evolution equation.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#LiX13,https://doi.org/10.1016/j.jcp.2012.11.005 +Sergey N. Averkin,A parallel electrostatic Particle-in-Cell method on unstructured tetrahedral grids for large-scale bounded collisionless plasma simulations.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#AverkinG18,https://doi.org/10.1016/j.jcp.2018.02.011 +Carlos Pantano,A low numerical dissipation patch-based adaptive mesh refinement method for large-eddy simulation of compressible flows.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#PantanoD0P07,https://doi.org/10.1016/j.jcp.2006.06.011 +Anita Mayo,Fourth order accurate evaluation of integrals in potential theory on exterior 3D regions.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#MayoG07,https://doi.org/10.1016/j.jcp.2006.05.042 +Patrick L. Nash,A new fourth-order Fourier-Bessel split-step method for the extended nonlinear Schrödinger equation.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#Nash08,https://doi.org/10.1016/j.jcp.2007.10.012 +Elena Celledoni,Semi-Lagrangian multistep exponential integrators for index 2 differential-algebraic systems.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#CelledoniK11,https://doi.org/10.1016/j.jcp.2011.01.036 +Nicolas Crouseilles,A parallel Vlasov solver based on local cubic spline interpolation on patches.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#CrouseillesLS09,https://doi.org/10.1016/j.jcp.2008.10.041 +Kyle Mahady,A volume of fluid method for simulating fluid/fluid interfaces in contact with solid boundaries.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#MahadyAK15,https://doi.org/10.1016/j.jcp.2015.03.051 +Dorian Fructus,An explicit method for the nonlinear interaction between water waves and variable and moving bottom topography.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#FructusG07,https://doi.org/10.1016/j.jcp.2006.08.014 +G. A. Cooper,BECOOL: Ballooning eigensolver with COOL finite elements.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#CooperGCGP09,https://doi.org/10.1016/j.jcp.2009.04.004 +Laiping Zhang,A class of hybrid DG/FV methods for conservation laws I: Basic formulation and one-dimensional systems.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#ZhangWHDZ12,https://doi.org/10.1016/j.jcp.2011.06.010 +David J. Miller,A fully adaptive reaction-diffusion integration scheme with applications to systems biology.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#MillerG07,https://doi.org/10.1016/j.jcp.2007.05.031 +Peter Moore,Simulation and measurement of flow generated noise.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#MooreSB07,https://doi.org/10.1016/j.jcp.2007.04.006 +Amit Hochman,On the use of rational-function fitting methods for the solution of 2D Laplace boundary-value problems.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#HochmanLW13,https://doi.org/10.1016/j.jcp.2012.08.015 +Bruno Lombard,Numerical modeling of nonlinear acoustic waves in a tube connected with Helmholtz resonators.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#LombardM14,https://doi.org/10.1016/j.jcp.2013.11.036 +Zhen Peng,A boundary integral equation domain decomposition method for electromagnetic scattering from large and deep cavities.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#PengLL15,https://doi.org/10.1016/j.jcp.2014.10.010 +Natasha Flyer,A guide to RBF-generated finite differences for nonlinear transport: Shallow water simulations on a sphere.,2012,231,J. Comput. Physics,11,db/journals/jcphy/jcphy231.html#FlyerLBWS12,https://doi.org/10.1016/j.jcp.2012.01.028 +Vasileios Symeonidis,A family of time-staggered schemes for integrating hybrid DPD models for polymers: Algorithms and applications.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#SymeonidisK06,https://doi.org/10.1016/j.jcp.2006.01.043 +Mike Nicholas,A high accuracy algorithm for 3D periodic electromagnetic scattering.,2010,229,J. Comput. Physics,21,db/journals/jcphy/jcphy229.html#Nicholas10,https://doi.org/10.1016/j.jcp.2010.07.028 +Björn Engquist,Fast sweeping methods for hyperbolic systems of conservation laws at steady state II.,2015,286,J. Comput. Physics,,db/journals/jcphy/jcphy286.html#EngquistFT15,https://doi.org/10.1016/j.jcp.2015.01.028 +Konstantin Lipnikov,Mimetic finite difference method.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#LipnikovMS14,https://doi.org/10.1016/j.jcp.2013.07.031 +Chao Gao,Reducing the effects of compressibility in DPD-based blood flow simulations through severe stenotic microchannels.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#GaoZMDB17,https://doi.org/10.1016/j.jcp.2017.01.062 +R. S. Maier,Lattice-Boltzmann accuracy in pore-scale flow simulation.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#MaierB10,https://doi.org/10.1016/j.jcp.2009.09.013 +Yu-Chen Shu,Accurate gradient approximation for complex interface problems in 3D by an improved coupling interface method.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#ShuCC14,https://doi.org/10.1016/j.jcp.2014.07.017 +Björn Sjögreen,High order entropy conservative central schemes for wide ranges of compressible gas dynamics and MHD flows.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#SjogreenY18,https://doi.org/10.1016/j.jcp.2018.02.003 +Joshua Hansel,Flux-corrected transport techniques applied to the radiation transport equation discretized with continuous finite elements.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#HanselR18,https://doi.org/10.1016/j.jcp.2017.10.029 +Hong Zhao,A fixed-mesh method for incompressible flow-structure systems with finite solid deformations.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#ZhaoFM08,https://doi.org/10.1016/j.jcp.2007.11.019 +Virginie Ehrlacher,A dynamical adaptive tensor method for the Vlasov-Poisson system.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#EhrlacherL17,https://doi.org/10.1016/j.jcp.2017.03.015 +Andreas Nold,Pseudospectral methods for density functional theory in bounded and unbounded domains.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#NoldGYSK17,https://doi.org/10.1016/j.jcp.2016.12.023 +Carl R. Sovinec,Analysis of a mixed semi-implicit/implicit algorithm for low-frequency two-fluid plasma modeling.,2010,229,J. Comput. Physics,16,db/journals/jcphy/jcphy229.html#SovinecK10,https://doi.org/10.1016/j.jcp.2010.04.022 +Prateek Sharma,Preserving monotonicity in anisotropic diffusion.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#SharmaH07,https://doi.org/10.1016/j.jcp.2007.07.026 +Weipeng Hu,Generalized multi-symplectic integrators for a class of Hamiltonian nonlinear wave PDEs.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#HuDHZ13,https://doi.org/10.1016/j.jcp.2012.10.032 +Xin Bian,Multi-resolution flow simulations by smoothed particle hydrodynamics via domain decomposition.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#BianLK15,https://doi.org/10.1016/j.jcp.2015.04.044 +Haihu Liu,A lattice Boltzmann method for axisymmetric multicomponent flows with high viscosity ratio.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#LiuWBXZ16,https://doi.org/10.1016/j.jcp.2016.10.007 +Zhiliang Xu,New central and central discontinuous Galerkin schemes on overlapping cells of unstructured grids for solving ideal magnetohydrodynamic equations with globally divergence-free magnetic field.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#XuL16,https://doi.org/10.1016/j.jcp.2016.09.044 +Wanjun Song,Memory-optimized shift operator alternating direction implicit finite difference time domain method for plasma.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#SongZ17,https://doi.org/10.1016/j.jcp.2017.08.017 +Kuan Li,An optimal Galerkin scheme to solve the kinematic dynamo eigenvalue problem in a full sphere.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#LiLJ10,https://doi.org/10.1016/j.jcp.2010.07.039 +Martin Geier,Parametrization of the cumulant lattice Boltzmann method for fourth order accurate diffusion part I: Derivation and validation.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#GeierPS17,https://doi.org/10.1016/j.jcp.2017.05.040 +Robert R. Nourgaliev,Numerical prediction of interfacial instabilities: Sharp interface method (SIM).,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#NourgalievLT08,https://doi.org/10.1016/j.jcp.2007.12.008 +Michael Dumbser,High order ADER schemes for a unified first order hyperbolic formulation of Newtonian continuum mechanics coupled with electro-dynamics.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#DumbserPRZ17,https://doi.org/10.1016/j.jcp.2017.07.020 +Yuriy Bidasyuk,Improved convergence of scattering calculations in the oscillator representation.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#BidasyukV13,https://doi.org/10.1016/j.jcp.2012.09.018 +S. J. Kamkar,Feature-driven Cartesian adaptive mesh refinement for vortex-dominated flows.,2011,230,J. Comput. Physics,16,db/journals/jcphy/jcphy230.html#KamkarWSJ11,https://doi.org/10.1016/j.jcp.2011.04.024 +Thomas Y. Hou,An iteratively adaptive multi-scale finite element method for elliptic PDEs with rough coefficients.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#HouHLY17,https://doi.org/10.1016/j.jcp.2017.02.002 +James Bremer,Efficient discretization of Laplace boundary integral equations on polygonal domains.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#BremerR10,https://doi.org/10.1016/j.jcp.2009.12.001 +Christophe Berthon,Efficient well-balanced hydrostatic upwind schemes for shallow-water equations.,2012,231,J. Comput. Physics,15,db/journals/jcphy/jcphy231.html#BerthonF12,https://doi.org/10.1016/j.jcp.2012.02.031 +Héctor D. Ceniceros,A new approach for the numerical solution of diffusion equations with variable and degenerate mobility.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#CenicerosG13,https://doi.org/10.1016/j.jcp.2013.03.036 +Dokyun Kim,Immersed boundary method for flow around an arbitrarily moving body.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#KimC06,https://doi.org/10.1016/j.jcp.2005.07.010 +Adrianna Gillman,A fast direct solver for quasi-periodic scattering problems.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#GillmanB13,https://doi.org/10.1016/j.jcp.2013.04.015 +Haoxiang Luo,An immersed-boundary method for flow-structure interaction in biological systems with application to phonation.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#LuoMZBWH08,https://doi.org/10.1016/j.jcp.2008.05.001 +Marcos Vanella,A direct-forcing embedded-boundary method with adaptive mesh refinement for fluid-structure interaction problems.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#VanellaRB10,https://doi.org/10.1016/j.jcp.2010.05.003 +Anatoly A. Alikhanov,A new difference scheme for the time fractional diffusion equation.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#Alikhanov15,https://doi.org/10.1016/j.jcp.2014.09.031 +Ozlem Ozgun,Software metamaterials: Transformation media based multiscale techniques for computational electromagnetics.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#OzgunK13,https://doi.org/10.1016/j.jcp.2012.11.015 +Horacio J. Aguerre,Conservative handling of arbitrary non-conformal interfaces using an efficient supermesh.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#AguerreDGN17,https://doi.org/10.1016/j.jcp.2017.01.018 +Christiane Helzel,An unstaggered constrained transport method for the 3D ideal magnetohydrodynamic equations.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#HelzelRT11,https://doi.org/10.1016/j.jcp.2011.02.009 +Hailiang Liu,A local discontinuous Galerkin method for the Korteweg-de Vries equation with boundary effect.,2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#LiuY06,https://doi.org/10.1016/j.jcp.2005.10.016 +Yao Fu,Heat flux expressions that satisfy the conservation laws in atomistic system involving multibody potentials.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#FuS15,https://doi.org/10.1016/j.jcp.2015.03.050 +Nikos Nikolopoulos,Three-dimensional numerical investigation of a droplet impinging normally onto a wall film.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#NikolopoulosTB07,https://doi.org/10.1016/j.jcp.2006.12.002 +Xiaocheng Guo,An extended HLLC Riemann solver for the magneto-hydrodynamics including strong internal magnetic field.,2015,290,J. Comput. Physics,,db/journals/jcphy/jcphy290.html#Guo15,https://doi.org/10.1016/j.jcp.2015.02.048 +Huajun Zhu,Symplectic wavelet collocation method for Hamiltonian wave equations.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#ZhuTSTW10,https://doi.org/10.1016/j.jcp.2009.11.042 +Assyr Abdulle,Reduced basis finite element heterogeneous multiscale method for high-order discretizations of elliptic homogenization problems.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#AbdulleB12,https://doi.org/10.1016/j.jcp.2012.02.019 +Bouchra Bensiali,Comparison of different interpolation operators including nonlinear subdivision schemes in the simulation of particle trajectories.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#BensialiBCGL13,https://doi.org/10.1016/j.jcp.2012.11.025 +Guang-hua Gao,The finite difference approximation for a class of fractional sub-diffusion equations on a space unbounded domain.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#GaoS13,https://doi.org/10.1016/j.jcp.2012.11.011 +Juan Cheng,A cell-centered Lagrangian scheme with the preservation of symmetry and conservation properties for compressible fluid flows in two-dimensional cylindrical geometry.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#ChengS10,https://doi.org/10.1016/j.jcp.2010.06.007 +Graham W. Alldredge,Adaptive change of basis in entropy-based moment closures for linear kinetic equations.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#AlldredgeHOT14,https://doi.org/10.1016/j.jcp.2013.10.049 +Matthew E. Hubbard,Discontinuous fluctuation distribution.,2008,227,J. Comput. Physics,24,db/journals/jcphy/jcphy227.html#Hubbard08,https://doi.org/10.1016/j.jcp.2008.08.017 +Yu-Chen Shu,Augmented coupling interface method for solving eigenvalue problems with sign-changed coefficients.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#ShuKCC10,https://doi.org/10.1016/j.jcp.2010.09.001 +Matt Jacobs,Auction dynamics: A volume constrained MBO scheme.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#JacobsME18,https://doi.org/10.1016/j.jcp.2017.10.036 +Tomoharu Hatori,Level-by-level artificial viscosity and visualization for MHD simulation with adaptive mesh refinement.,2016,319,J. Comput. Physics,,db/journals/jcphy/jcphy319.html#HatoriINUM16,https://doi.org/10.1016/j.jcp.2016.04.064 +Joo-Sung Kim,An efficient and robust implicit operator for upwind point Gauss-Seidel method.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#KimK07,https://doi.org/10.1016/j.jcp.2006.11.008 +Akihiro Takezawa,Shape and topology optimization based on the phase field method and sensitivity analysis.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#TakezawaNK10,https://doi.org/10.1016/j.jcp.2009.12.017 +Axelle Viré,On discretization errors and subgrid scale model implementations in large eddy simulations.,2009,228,J. Comput. Physics,22,db/journals/jcphy/jcphy228.html#VireK09,https://doi.org/10.1016/j.jcp.2008.12.024 +Julien Chauchat,A three-dimensional numerical model for dense granular flows based on the andmicro*(I) rheology.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#ChauchatM14,https://doi.org/10.1016/j.jcp.2013.09.004 +Lifei Zhao,Active learning of constitutive relation from mesoscopic dynamics for macroscopic modeling of non-Newtonian flows.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#Zhao0COK18,https://doi.org/10.1016/j.jcp.2018.02.039 +Yang He,Higher order volume-preserving schemes for charged particle dynamics.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#HeSLQ16,https://doi.org/10.1016/j.jcp.2015.10.032 +María-Luisa Rapún,LUPOD: Collocation in POD via LU decomposition.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#RapunTV17,https://doi.org/10.1016/j.jcp.2017.01.005 +G. Kotalczyk,A Monte Carlo method for the simulation of coagulation and nucleation based on weighted particles and the concepts of stochastic resolution and merging.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#KotalczykK17,https://doi.org/10.1016/j.jcp.2017.03.041 +Cyril Galitzine,An adaptive procedure for the numerical parameters of a particle simulation.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#GalitzineB15,https://doi.org/10.1016/j.jcp.2014.10.044 +Ling Lin,A numerical method for the study of nucleation of ordered phases.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#LinCESZ10,https://doi.org/10.1016/j.jcp.2009.11.009 +Ryan G. McClarren,On solutions to the Pn equations for thermal radiative transfer.,2008,227,J. Comput. Physics,5,db/journals/jcphy/jcphy227.html#McClarrenHB08,https://doi.org/10.1016/j.jcp.2007.11.027 +J. Zitelli,A class of discontinuous Petrov-Galerkin methods. Part IV: The optimal test norm and time-harmonic wave propagation in 1D.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#ZitelliMDGPC11,https://doi.org/10.1016/j.jcp.2010.12.001 +Jichun Li,Analysis and application of the nodal discontinuous Galerkin method for wave propagation in metamaterials.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#LiH14,https://doi.org/10.1016/j.jcp.2013.11.018 +S. Kudriakov,On a new defect of shock-capturing methods.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#KudriakovH08,https://doi.org/10.1016/j.jcp.2007.10.014 +Piotr K. Smolarkiewicz,Pores resolving simulation of Darcy flows.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#SmolarkiewiczW10,https://doi.org/10.1016/j.jcp.2009.12.031 +Simone Elke Hieber,A Lagrangian particle method for the simulation of linear and nonlinear elastic models of soft tissue.,2008,227,J. Comput. Physics,21,db/journals/jcphy/jcphy227.html#HieberK08a,https://doi.org/10.1016/j.jcp.2008.05.016 +John P. Boyd 0001,The uselessness of the Fast Gauss Transform for summing Gaussian radial basis function series.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#Boyd10,https://doi.org/10.1016/j.jcp.2009.10.032 +Jean-Christophe Boniface,Rescaling of the Roe scheme in low Mach-number flow regions.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#Boniface17,https://doi.org/10.1016/j.jcp.2016.10.011 +Lee A. Berry,Event-based parareal: A data-flow based implementation of parareal.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#BerryERSSN12,https://doi.org/10.1016/j.jcp.2012.05.016 +Ian G. Grooms,Ensemble Kalman filters for dynamical systems with unresolved turbulence.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#GroomsLM14,https://doi.org/10.1016/j.jcp.2014.05.037 +Yingda Cheng,Energy-conserving discontinuous Galerkin methods for the Vlasov-Maxwell system.,2014,279,J. Comput. Physics,,db/journals/jcphy/jcphy279.html#ChengCZ14,https://doi.org/10.1016/j.jcp.2014.08.041 +Christian Soize,Data-driven probability concentration and sampling on manifold.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#SoizeG16,https://doi.org/10.1016/j.jcp.2016.05.044 +Victor Michel-Dansac,A well-balanced scheme for the shallow-water equations with topography or Manning friction.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#Michel-DansacBC17,https://doi.org/10.1016/j.jcp.2017.01.009 +Maria Zacharioudaki,A direct comparison between volume and surface tracking methods with a boundary-fitted coordinate transformation and third-order upwinding.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#ZacharioudakiKDT07,https://doi.org/10.1016/j.jcp.2007.09.004 +Boris N. Azarenok,A method of constructing adaptive hexahedral moving grids.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#Azarenok07,https://doi.org/10.1016/j.jcp.2007.05.010 +Olga Podvigina,The Cauchy-Lagrangian method for numerical analysis of Euler flow.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#PodviginaZF16,https://doi.org/10.1016/j.jcp.2015.11.045 +AbdoulAhad Validi,Low-rank separated representation surrogates of high-dimensional stochastic functions: Application in Bayesian inference.,2014,260,J. Comput. Physics,,db/journals/jcphy/jcphy260.html#Validi14,https://doi.org/10.1016/j.jcp.2013.12.024 +Zupeng Jia,Two new three-dimensional contact algorithms for staggered Lagrangian Hydrodynamics.,2014,267,J. Comput. Physics,,db/journals/jcphy/jcphy267.html#JiaGZL14,https://doi.org/10.1016/j.jcp.2014.02.042 +Mike A. Botchev,The Gautschi time stepping scheme for edge finite element discretizations of the Maxwell equations.,2006,216,J. Comput. Physics,2,db/journals/jcphy/jcphy216.html#BotchevHV06,https://doi.org/10.1016/j.jcp.2006.01.014 +Stephen R. Lau,Stellar surface as low-rank modification in iterative methods for binary neutron stars.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#Lau17,https://doi.org/10.1016/j.jcp.2017.07.026 +Lenka Dubcova,Comparison of mul*h hp-FEM to interpolation and projection methods for spatial coupling of thermal and neutron diffusion calculations.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#DubcovaSHP11,https://doi.org/10.1016/j.jcp.2010.10.034 +Saul A. Teukolsky,Short note on the mass matrix for Gauss-Lobatto grid points.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#Teukolsky15,https://doi.org/10.1016/j.jcp.2014.12.012 +Peter McCorquodale,High-order finite-volume methods for hyperbolic conservation laws on mapped multiblock grids.,2015,288,J. Comput. Physics,,db/journals/jcphy/jcphy288.html#McCorquodaleDHC15,https://doi.org/10.1016/j.jcp.2015.01.006 +Daniel Appelö,A new absorbing layer for elastic waves.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#AppeloK06,https://doi.org/10.1016/j.jcp.2005.11.006 +Irina Sagert,Hydrodynamic shock wave studies within a kinetic Monte Carlo approach.,2014,266,J. Comput. Physics,,db/journals/jcphy/jcphy266.html#SagertBCHPSS14,https://doi.org/10.1016/j.jcp.2014.02.019 +Fan Zhang,Incompressible material point method for free surface flow.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#ZhangZSLL17,https://doi.org/10.1016/j.jcp.2016.10.064 +Chih-Hao Chang,A robust and accurate approach to computing compressible multiphase flow: Stratified flow model and AUSM+-up scheme.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#ChangL07,https://doi.org/10.1016/j.jcp.2007.01.007 +Christophe Chalons,An all-regime Lagrange-Projection like scheme for 2D homogeneous models for two-phase flows on unstructured meshes.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#ChalonsGK17,https://doi.org/10.1016/j.jcp.2017.01.017 +Wonjung Lee,Adaptive approximation of higher order posterior statistics.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#Lee14,https://doi.org/10.1016/j.jcp.2013.11.015 +C. Bilger,Evaluation of two-phase flow solvers using Level Set and Volume of Fluid methods.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#BilgerAVC17,https://doi.org/10.1016/j.jcp.2017.05.044 +Kees van den Doel,On level set regularization for highly ill-posed distributed parameter estimation problems.,2006,216,J. Comput. Physics,2,db/journals/jcphy/jcphy216.html#DoelA06,https://doi.org/10.1016/j.jcp.2006.01.022 +M. de la Llave Plata,A wavelet-based multiresolution approach to large-eddy simulation of turbulence.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#PlataC10,https://doi.org/10.1016/j.jcp.2010.06.027 +Yingda Cheng,A new discontinuous Galerkin finite element method for directly solving the Hamilton-Jacobi equations.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#ChengW14,https://doi.org/10.1016/j.jcp.2014.02.041 +Wangtao Lu,Efficient high order waveguide mode solvers based on boundary integral equations.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#LuL14,https://doi.org/10.1016/j.jcp.2014.04.028 +Zhiliang Xu,Hierarchical reconstruction for discontinuous Galerkin methods on unstructured grids with a WENO-type linear reconstruction and partial neighboring cells.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#XuLS09,https://doi.org/10.1016/j.jcp.2008.11.025 +Philippe Parmentier,A Vortex Particle-Mesh method for subsonic compressible flows.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#ParmentierWC18,https://doi.org/10.1016/j.jcp.2017.10.040 +Eric Sonnendrücker,A split control variate scheme for PIC simulations with collisions.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#SonnendruckerWH15,https://doi.org/10.1016/j.jcp.2015.04.004 +Moongyu Park,On upscaling operator-stable Lévy motions in fractal porous media.,2006,217,J. Comput. Physics,1,db/journals/jcphy/jcphy217.html#ParkC06,https://doi.org/10.1016/j.jcp.2006.01.027 +Muhammad Irfan 0003,A front tracking method for direct numerical simulation of evaporation process in a multiphase system.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#IrfanM17,https://doi.org/10.1016/j.jcp.2017.02.036 +Jian-Jun Xu,A level-set method for interfacial flows with surfactant.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#XuLLZ06,https://doi.org/10.1016/j.jcp.2005.07.016 +V. Ruiz Barlett,Monte Carlo simulation with fixed steplength for diffusion processes in nonhomogeneous media.,2013,239,J. Comput. Physics,,db/journals/jcphy/jcphy239.html#BarlettHM13,https://doi.org/10.1016/j.jcp.2012.12.029 +Luis E. Tobón,Spurious solutions in mixed finite element method for Maxwell's equations: Dispersion analysis and new basis functions.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#TobonCL11,https://doi.org/10.1016/j.jcp.2011.05.035 +Christos Varsakelis,A numerical method for two-phase flows of dense granular mixtures.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#VarsakelisP14,https://doi.org/10.1016/j.jcp.2013.10.023 +Pierre-Henri Maire,A nominally second-order cell-centered Lagrangian scheme for simulating elastic-plastic flows on two-dimensional unstructured grids.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#MaireABLR13,https://doi.org/10.1016/j.jcp.2012.10.017 +Tsung-Ming Huang,Preconditioning bandgap eigenvalue problems in three-dimensional photonic crystals simulations.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#HuangCHLWW10,https://doi.org/10.1016/j.jcp.2010.08.003 +Christian P. Egerer,Efficient implicit LES method for the simulation of turbulent cavitating flows.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#EgererSHA16,https://doi.org/10.1016/j.jcp.2016.04.021 +Joris Picot,Reduction of the discretization stencil of direct forcing immersed boundary methods on rectangular cells: The ghost node shifting method.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#PicotG18,https://doi.org/10.1016/j.jcp.2018.02.047 +Simone Marras,A parameter-free dynamic alternative to hyper-viscosity for coupled transport equations: Application to the simulation of 3D squall lines using spectral elements.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#MarrasG15,https://doi.org/10.1016/j.jcp.2014.11.046 +Andrew P. Kuprat,A bidirectional coupling procedure applied to multiscale respiratory modeling.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#KupratKCCE13,https://doi.org/10.1016/j.jcp.2012.10.021 +Ivan Lunati,Multiscale finite-volume method for compressible multiphase flow in porous media.,2006,216,J. Comput. Physics,2,db/journals/jcphy/jcphy216.html#LunatiJ06,https://doi.org/10.1016/j.jcp.2006.01.001 +G. A. Richardson,Finite element form of FDV for widely varying flowfields.,2010,229,J. Comput. Physics,1,db/journals/jcphy/jcphy229.html#RichardsonCCW10,https://doi.org/10.1016/j.jcp.2009.09.023 +Grégoire Allaire,Structural optimization under overhang constraints imposed by additive manufacturing technologies.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#AllaireDEFM17,https://doi.org/10.1016/j.jcp.2017.09.041 +Qing Cheng,Efficient and accurate numerical schemes for a hydro-dynamically coupled phase field diblock copolymer model.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#ChengYS17,https://doi.org/10.1016/j.jcp.2017.04.010 +Qianlong Liu,Physalis method for heterogeneous mixtures of dielectrics and conductors: Accurately simulating one million particles using a PC.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#Liu11a,https://doi.org/10.1016/j.jcp.2011.07.024 +Steven P. Hamilton,An assessment of coupling algorithms for nuclear reactor core physics simulations.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#HamiltonBCPTKEP16,https://doi.org/10.1016/j.jcp.2016.02.012 +Matthias Läuter,A discontinuous Galerkin method for the shallow water equations in spherical triangular coordinates.,2008,227,J. Comput. Physics,24,db/journals/jcphy/jcphy227.html#LauterGHD08,https://doi.org/10.1016/j.jcp.2008.08.019 +Mario Ricchiuto,Upwind residual discretization of enhanced Boussinesq equations for wave propagation over complex bathymetries.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#RicchiutoF14,https://doi.org/10.1016/j.jcp.2013.12.048 +Rainer Kress 0001,A second degree Newton method for an inverse obstacle scattering problem.,2011,230,J. Comput. Physics,20,db/journals/jcphy/jcphy230.html#KressL11,https://doi.org/10.1016/j.jcp.2011.06.020 +Sandip Mazumder,Critical assessment of the stability and convergence of the equations of multi-component diffusion.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#Mazumder06,https://doi.org/10.1016/j.jcp.2005.07.018 +Yue Wang,Arbitrary high order discontinuous Galerkin schemes based on the GRP method for compressible Euler equations.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#WangW15,https://doi.org/10.1016/j.jcp.2015.04.029 +Robert L. Higdon,Multiple time scales and pressure forcing in discontinuous Galerkin approximations to layered ocean models.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#Higdon15,https://doi.org/10.1016/j.jcp.2015.04.010 +Guillaume Oger,Two-dimensional SPH simulations of wedge water entries.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#OgerDAF06,https://doi.org/10.1016/j.jcp.2005.09.004 +Jun Luo,A conservative sharp interface method for incompressible multiphase flows.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#LuoHA15,https://doi.org/10.1016/j.jcp.2014.12.044 +Rafail V. Abramov,Approximate linear response for slow variables of dynamics with explicit time scale separation.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#Abramov10,https://doi.org/10.1016/j.jcp.2010.06.029 +Shivkumar Chandrasekaran,Minimum Sobolev norm interpolation with trigonometric polynomials on the torus.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#ChandrasekaranJM13,https://doi.org/10.1016/j.jcp.2013.03.041 +Alberto M. Gambaruto,Wall shear stress and near-wall convective transport: Comparisons with vascular remodelling in a peripheral graft anastomosis.,2010,229,J. Comput. Physics,14,db/journals/jcphy/jcphy229.html#GambarutoDY10,https://doi.org/10.1016/j.jcp.2010.03.029 +Scott E. Parker,Preface to advances in numerical simulation of plasmas.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#ParkerC16,https://doi.org/10.1016/j.jcp.2016.07.013 +Pierre-Henri Maire,Multi-scale Godunov-type method for cell-centered discrete Lagrangian hydrodynamics.,2009,228,J. Comput. Physics,3,db/journals/jcphy/jcphy228.html#MaireN09,https://doi.org/10.1016/j.jcp.2008.10.012 +Yu Wang 0029,Adaptive variational curve smoothing based on level set method.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#WangSTW09,https://doi.org/10.1016/j.jcp.2009.05.021 +V. Sriram,Improved MLPG_R method for simulating 2D interaction between violent waves and elastic structures.,2012,231,J. Comput. Physics,22,db/journals/jcphy/jcphy231.html#SriramM12,https://doi.org/10.1016/j.jcp.2012.07.003 +Bart S. van Lith,Embedded WENO: A design strategy to improve existing WENO schemes.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#LithBI17,https://doi.org/10.1016/j.jcp.2016.11.026 +Eduardo Corona,A Tensor-Train accelerated solver for integral equations in complex geometries.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#CoronaRZ17,https://doi.org/10.1016/j.jcp.2016.12.051 +Tomasz Waclawczyk,A consistent solution of the re-initialization equation in the conservative level-set method.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#Waclawczyk15,https://doi.org/10.1016/j.jcp.2015.06.029 +M. J. Zimon,A novel coupling of noise reduction algorithms for particle flow simulations.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#ZimonRE16,https://doi.org/10.1016/j.jcp.2016.05.049 +Marek Krzysztof Misztal,Detailed analysis of the lattice Boltzmann method on unstructured grids.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#MisztalHMSM15,https://doi.org/10.1016/j.jcp.2015.05.019 +Sergey L. Gavrilyuk,Multi-dimensional shear shallow water flows: Problems and solutions.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#GavrilyukIF18,https://doi.org/10.1016/j.jcp.2018.04.011 +Hauke Gravenkamp,Simulation of elastic guided waves interacting with defects in arbitrarily long structures using the Scaled Boundary Finite Element Method.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#GravenkampBS15,https://doi.org/10.1016/j.jcp.2015.04.032 +Liang Yan 0002,A meshless method for solving an inverse spacewise-dependent heat source problem.,2009,228,J. Comput. Physics,1,db/journals/jcphy/jcphy228.html#YanYF09,https://doi.org/10.1016/j.jcp.2008.09.001 +Daniel Hartmann,The constrained reinitialization equation for level set methods.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#HartmannMS10,https://doi.org/10.1016/j.jcp.2009.10.042 +Frédéric Hecht,Original coupled FEM/BIE numerical model for analyzing infinite periodic surface acoustic wave transducers.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#HechtVD13,https://doi.org/10.1016/j.jcp.2013.03.043 +M. Parsani,Analysis of the implicit LU-SGS algorithm for 3rd- and 4th-order spectral volume scheme for solving the steady Navier-Stokes equations.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#ParsaniGL11,https://doi.org/10.1016/j.jcp.2011.05.026 +Bruno Després,Angular momentum preserving cell-centered Lagrangian and Eulerian schemes on arbitrary grids.,2015,290,J. Comput. Physics,,db/journals/jcphy/jcphy290.html#DespresL15,https://doi.org/10.1016/j.jcp.2015.02.032 +Nikola Topic,Steepest descent ballistic deposition of complex shaped particles.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#TopicP16,https://doi.org/10.1016/j.jcp.2015.12.052 +Evgueni E. Ovtchinnikov,Computing several eigenpairs of Hermitian problems by conjugate gradient iterations.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#Ovtchinnikov08,https://doi.org/10.1016/j.jcp.2008.06.038 +Thomas Hagstrom,The Double Absorbing Boundary method.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#HagstromGRB14,https://doi.org/10.1016/j.jcp.2013.11.025 +Ali Lotfi,Combination of epsilon and Ritz methods with multiscaling basis for solving a class of fractional optimal control problems.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#Lotfi18,https://doi.org/10.1016/j.jcp.2018.04.001 +Siu Wun Cheung,Staggered discontinuous Galerkin methods for the incompressible Navier-Stokes equations.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#CheungCKQ15,https://doi.org/10.1016/j.jcp.2015.08.024 +Nilabja Guha,A variational Bayesian approach for inverse problems with skew-t error distributions.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#GuhaWEJM15,https://doi.org/10.1016/j.jcp.2015.07.062 +József Kópházi,A space-angle DGFEM approach for the Boltzmann radiation transport equation with local angular refinement.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#KophaziL15,https://doi.org/10.1016/j.jcp.2015.05.031 +Benjamin S. Collyer,Importance sampling variance reduction for the Fokker-Planck rarefied gas particle method.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#CollyerCL16,https://doi.org/10.1016/j.jcp.2016.08.008 +Raheel Ahmed,Control-volume distributed multi-point flux approximation coupled with a lower-dimensional fracture model.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#AhmedELHP15,https://doi.org/10.1016/j.jcp.2014.12.047 +T. Gotoh,Spectral compact difference hybrid computation of passive scalar in isotropic turbulence.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#GotohHM12,https://doi.org/10.1016/j.jcp.2012.07.010 +Leonardo Di G. Sigalotti,A shock-capturing SPH scheme based on adaptive kernel estimation.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#SigalottiLDSK06,https://doi.org/10.1016/j.jcp.2005.06.016 +Tapan K. Sengupta,Solving Navier-Stokes equation for flow past cylinders using single-block structured and overset grids.,2010,229,J. Comput. Physics,1,db/journals/jcphy/jcphy229.html#SenguptaSS10,https://doi.org/10.1016/j.jcp.2009.09.026 +Massimiliano d'Aquino,A novel formulation for the numerical computation of magnetization modes in complex micromagnetic systems.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#dAquinoSMF09,https://doi.org/10.1016/j.jcp.2009.05.026 +Paul Chang,Reduced dimensional computational models of polymer electrolyte membrane fuel cell stacks.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#ChangKPW07,https://doi.org/10.1016/j.jcp.2006.10.011 +John B. Bell,Algorithm refinement for the stochastic Burgers' equation.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#BellFG07,https://doi.org/10.1016/j.jcp.2006.09.024 +Di Zhang,A refined volume-of-fluid algorithm for capturing sharp fluid interfaces on arbitrary meshes.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#ZhangJLCYS14,https://doi.org/10.1016/j.jcp.2014.06.043 +Yiqing Shen,High order conservative differencing for viscous terms and the application to vortex-induced vibration flows.,2009,228,J. Comput. Physics,22,db/journals/jcphy/jcphy228.html#ShenZC09,https://doi.org/10.1016/j.jcp.2009.08.004 +Xianmin Xu,An efficient threshold dynamics method for wetting on rough surfaces.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#XuWW17,https://doi.org/10.1016/j.jcp.2016.11.008 +Chunwu Wang,An adaptive ghost fluid finite volume method for compressible gas-water simulations.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#WangTL08,https://doi.org/10.1016/j.jcp.2008.03.005 +Christian Conti,GPU and APU computations of Finite Time Lyapunov Exponent fields.,2012,231,J. Comput. Physics,5,db/journals/jcphy/jcphy231.html#ContiRK12,https://doi.org/10.1016/j.jcp.2011.10.032 +Ralf Hartmann,Generalized adjoint consistent treatment of wall boundary conditions for compressible flows.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#HartmannL15,https://doi.org/10.1016/j.jcp.2015.07.042 +Dmitri Priimak,Finite difference numerical method for the superlattice Boltzmann transport equation and case comparison of CPU(C) and GPU(CUDA) implementations.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#Priimak14,https://doi.org/10.1016/j.jcp.2014.08.028 +G. T. Oud,A fully conservative mimetic discretization of the Navier-Stokes equations in cylindrical coordinates with associated singularity treatment.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#OudHVH16,https://doi.org/10.1016/j.jcp.2016.08.038 +S. Wang,Coupling GSM/ALE with ES-FEM-T3 for fluid-deformable structure interactions.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#WangKLXC14,https://doi.org/10.1016/j.jcp.2014.07.016 +Fande Kong,A scalable nonlinear fluid-structure interaction solver based on a Schwarz preconditioner with isogeometric unstructured coarse spaces in 3D.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#KongC17,https://doi.org/10.1016/j.jcp.2017.03.043 +Bok Jik Lee,Adaptive Osher-type scheme for the Euler equations with highly nonlinear equations of state.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#LeeTCN13,https://doi.org/10.1016/j.jcp.2013.03.046 +Philippe Guyenne,An operator expansion method for computing nonlinear surface waves on a ferrofluid jet.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#GuyenneP16,https://doi.org/10.1016/j.jcp.2016.05.055 +Sreenath Krishnan,Fully resolved viscoelastic particulate simulations using unstructured grids.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#KrishnanSI17,https://doi.org/10.1016/j.jcp.2017.02.068 +Kameswararao Anupindi,A novel multiblock immersed boundary method for large eddy simulation of complex arterial hemodynamics.,2013,254,J. Comput. Physics,,db/journals/jcphy/jcphy254.html#AnupindiDSF13,https://doi.org/10.1016/j.jcp.2013.07.033 +Byungjoon Lee 0001,An energy-stable method for solving the incompressible Navier-Stokes equations with non-slip boundary condition.,2018,360,J. Comput. Physics,,db/journals/jcphy/jcphy360.html#LeeM18,https://doi.org/10.1016/j.jcp.2018.01.030 +Kevin W. Connington,Interaction of fluid interfaces with immersed solid particles using the lattice Boltzmann method for liquid-gas-particle systems.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#ConningtonLM15,https://doi.org/10.1016/j.jcp.2014.11.044 +Hang Ding,On the diffuse interface method using a dual-resolution Cartesian grid.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#DingY14,https://doi.org/10.1016/j.jcp.2014.05.005 +Jan Nordström,Variance reduction through robust design of boundary conditions for stochastic hyperbolic systems of equations.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#NordstromW15,https://doi.org/10.1016/j.jcp.2014.10.061 +Jeff Doom,A numerical method for DNS/LES of turbulent reacting flows.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#DoomHM07,https://doi.org/10.1016/j.jcp.2007.05.037 +Harshavardhana S. Pathak,Adaptive finite-volume WENO schemes on dynamically redistributed grids for compressible Euler equations.,2016,319,J. Comput. Physics,,db/journals/jcphy/jcphy319.html#PathakS16,https://doi.org/10.1016/j.jcp.2016.05.007 +Xinfeng Liu,A front tracking algorithm for limited mass diffusion.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#LiuLG007,https://doi.org/10.1016/j.jcp.2006.08.011 +Lin Zhang 0010,Variational multiscale element-free Galerkin method for 2D Burgers' equation.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#ZhangOWZ10,https://doi.org/10.1016/j.jcp.2010.06.004 +C. Soria-Hoyo,A PIC based procedure for the integration of multiple time scale problems in gas discharge physics.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#Soria-HoyoPC09,https://doi.org/10.1016/j.jcp.2008.10.007 +Michael D. Meyers,On the numerical dispersion of electromagnetic particle-in-cell code: Finite grid instability.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#MeyersHZYA15,https://doi.org/10.1016/j.jcp.2015.05.037 +Jian-Jun Xu,A level-set method for two-phase flows with moving contact line and insoluble surfactant.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#XuR14,https://doi.org/10.1016/j.jcp.2014.01.012 +Nathaniel M. Ferraro,Calculations of two-fluid magnetohydrodynamic axisymmetric steady-states.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#FerraroJ09,https://doi.org/10.1016/j.jcp.2009.07.015 +Ee Han,Efficient and robust relaxation procedures for multi-component mixtures including phase transition.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#HanHM17,https://doi.org/10.1016/j.jcp.2017.02.066 +Alexandros Adam,Adaptive Haar wavelets for the angular discretisation of spectral wave models.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#AdamBPPHG16,https://doi.org/10.1016/j.jcp.2015.10.046 +Alberto M. Gambaruto,Computational haemodynamics of small vessels using the Moving Particle Semi-implicit (MPS) method.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#Gambaruto15,https://doi.org/10.1016/j.jcp.2015.08.039 +Zofia Trstanova,Estimating the speed-up of adaptively restrained Langevin dynamics.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#TrstanovaR17,https://doi.org/10.1016/j.jcp.2017.02.010 +Sebastian Acosta,Numerical method of characteristics for one-dimensional blood flow.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#AcostaPRPR15,https://doi.org/10.1016/j.jcp.2015.03.045 +Hong Zhao,A spectral boundary integral method for flowing blood cells.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#ZhaoIOF10,https://doi.org/10.1016/j.jcp.2010.01.024 +Christophe Thirard,On a way to save memory when solving time domain boundary integral equations for acoustic and vibroacoustic applications.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#ThirardP17,https://doi.org/10.1016/j.jcp.2017.07.040 +Giacomo Dimarco,An asymptotic preserving automatic domain decomposition method for the Vlasov-Poisson-BGK system with applications to plasmas.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#DimarcoMR14,https://doi.org/10.1016/j.jcp.2014.06.002 +Farshid Nazari,A stable and accurate scheme for nonlinear diffusion equations: Application to atmospheric boundary layer.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#NazariMZC13,https://doi.org/10.1016/j.jcp.2012.10.039 +U. Bhardwaj,Post-processing interstitialcy diffusion from molecular dynamics simulations.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#BhardwajBW16,https://doi.org/10.1016/j.jcp.2015.10.034 +S. A. Karabasov,Compact Accurately Boundary-Adjusting high-REsolution Technique for fluid dynamics.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#KarabasovG09,https://doi.org/10.1016/j.jcp.2009.06.037 +Sebastian Noelle,Well-balanced finite volume schemes of arbitrary order of accuracy for shallow water flows.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#NoellePPN06,https://doi.org/10.1016/j.jcp.2005.08.019 +Matthew Jemison,Filament capturing with the Multimaterial Moment-of-Fluid method.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#JemisonSS15,https://doi.org/10.1016/j.jcp.2015.01.014 +Liangliang Qiu,Nodal discontinuous Galerkin methods for fractional diffusion equations on 2D domain with triangular meshes.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#QiuDH15,https://doi.org/10.1016/j.jcp.2015.06.022 +Hao Chen 0015,A Kronecker product splitting preconditioner for two-dimensional space-fractional diffusion equations.,2018,360,J. Comput. Physics,,db/journals/jcphy/jcphy360.html#ChenLZ18,https://doi.org/10.1016/j.jcp.2018.01.034 +Soshi Kawai,Localized artificial diffusivity scheme for discontinuity capturing on curvilinear meshes.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#KawaiL08,https://doi.org/10.1016/j.jcp.2008.06.034 +F. Treyssède,Spectral element computation of high-frequency leaky modes in three-dimensional solid waveguides.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#Treyssede16,https://doi.org/10.1016/j.jcp.2016.03.029 +Kyongmin Yeo,Simulation of concentrated suspensions using the force-coupling method.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#YeoM10,https://doi.org/10.1016/j.jcp.2009.11.041 +Guoxi Ni,Remapping-free ALE-type kinetic method for flow computations.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#NiJX09,https://doi.org/10.1016/j.jcp.2009.01.013 +Chao Li,Spatially hybrid computations for streamer discharges with generic features of pulled fronts: I. Planar fronts.,2010,229,J. Comput. Physics,1,db/journals/jcphy/jcphy229.html#LiEH10,https://doi.org/10.1016/j.jcp.2009.09.027 +Alice Raeli,A finite-difference method for the variable coefficient Poisson equation on hierarchical Cartesian meshes.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#RaeliBI18,https://doi.org/10.1016/j.jcp.2017.11.007 +Ramakrishna Tipireddy,Basis adaptation and domain decomposition for steady-state partial differential equations with random coefficients.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#TipireddyST17,https://doi.org/10.1016/j.jcp.2017.08.067 +Yaoxin Zhang,Boundary treatment for 2D elliptic mesh generation in complex geometries.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#ZhangJWC08,https://doi.org/10.1016/j.jcp.2008.05.008 +Yan Li,An exponential compact difference scheme for solving 2D steady magnetohydrodynamic (MHD) duct flow problems.,2012,231,J. Comput. Physics,16,db/journals/jcphy/jcphy231.html#LiT12,https://doi.org/10.1016/j.jcp.2012.05.010 +Xiaofeng Yang 0003,An adaptive coupled level-set/volume-of-fluid interface capturing method for unstructured triangular grids.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#YangJLZC06,https://doi.org/10.1016/j.jcp.2006.01.007 +Luca Margheri,A hybrid anchored-ANOVA - POD/Kriging method for uncertainty quantification in unsteady high-fidelity CFD simulations.,2016,324,J. Comput. Physics,,db/journals/jcphy/jcphy324.html#MargheriS16,https://doi.org/10.1016/j.jcp.2016.07.036 +Hinrich Lütjens,XTOR-2F: A fully implicit Newton-Krylov solver applied to nonlinear 3D extended MHD in tokamaks.,2010,229,J. Comput. Physics,21,db/journals/jcphy/jcphy229.html#LutjensL10,https://doi.org/10.1016/j.jcp.2010.07.013 +Qi Li,The impact and treatment of the Gibbs phenomenon in immersed boundary method simulations of momentum and scalar transport.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#LiBA16,https://doi.org/10.1016/j.jcp.2016.01.013 +D. Liu,Force-coupling method for flows with ellipsoidal particles.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#LiuKMK09,https://doi.org/10.1016/j.jcp.2009.01.020 +Dmitri Kuzmin,A constrained finite element method satisfying the discrete maximum principle for anisotropic diffusion problems.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#KuzminSS09,https://doi.org/10.1016/j.jcp.2009.01.031 +Jan Nordström,Boundary conditions for a divergence free velocity-pressure formulation of the Navier-Stokes equations.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#NordstromMS07,https://doi.org/10.1016/j.jcp.2007.01.010 +Jihoe Kwon,A novel SPH method for sedimentation in a turbulent fluid.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#KwonM15,https://doi.org/10.1016/j.jcp.2015.06.040 +Lei Shi,Adjoint-based error estimation and mesh adaptation for the correction procedure via reconstruction method.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#ShiW15,https://doi.org/10.1016/j.jcp.2015.04.011 +W. E. H. Sollie,Space-time discontinuous Galerkin finite element method for two-fluid flows.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#SollieBV11,https://doi.org/10.1016/j.jcp.2010.10.019 +D. C. Visser,Modelling multi-viscosity systems with dissipative particle dynamics.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#VisserHI06,https://doi.org/10.1016/j.jcp.2005.09.022 +Dieter Fauconnier,On the spectral and conservation properties of nonlinear discretization operators.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#FauconnierD11,https://doi.org/10.1016/j.jcp.2011.02.025 +Wenrui Hao,A fictitious domain method with a hybrid cell model for simulating motion of cells in fluid flow.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#HaoXLL15,https://doi.org/10.1016/j.jcp.2014.09.020 +Victoria Arias,Poisson equations in irregular domains with Robin boundary conditions - Solver with second-order accurate gradients.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#AriasBG18,https://doi.org/10.1016/j.jcp.2018.03.022 +Antoni Calderer,Level set immersed boundary method for coupled simulation of air/water interaction with complex floating structures.,2014,277,J. Comput. Physics,,db/journals/jcphy/jcphy277.html#CaldererKS14,https://doi.org/10.1016/j.jcp.2014.08.010 +Patricia Hurd,Trajectory integration with potential energy discontinuities.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#HurdCP10,https://doi.org/10.1016/j.jcp.2009.11.025 +Yiqing Shen,Generalized finite compact difference scheme for shock/complex flowfield interaction.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#ShenZ11,https://doi.org/10.1016/j.jcp.2011.01.039 +Alex Kanevsky,Application of implicit-explicit high order Runge-Kutta methods to discontinuous-Galerkin schemes.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#KanevskyCGH07,https://doi.org/10.1016/j.jcp.2007.02.021 +Philippe G. LeFloch,Revisiting the method of characteristics via a convex hull algorithm.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#LeFlochM15,https://doi.org/10.1016/j.jcp.2015.05.043 +Rouven Künze,An adaptive multiscale method for density-driven instabilities.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#KunzeL12,https://doi.org/10.1016/j.jcp.2012.02.025 +Pedro S. Peixoto,Analysis of grid imprinting on geodesic spherical icosahedral grids.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#PeixotoB13,https://doi.org/10.1016/j.jcp.2012.11.041 +I-Liang Chern,A coupling interface method for elliptic interface problems.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#ChernS07,https://doi.org/10.1016/j.jcp.2007.03.012 +Xiaoan Ren,A dynamically adaptive wavelet approach to stochastic computations based on polynomial chaos - capturing all scales of random modes on independent grids.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#RenWX11,https://doi.org/10.1016/j.jcp.2011.05.038 +John Steinhoff,Solution of the scalar wave equation over very long distances using nonlinear solitary waves: Relation to finite difference methods.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#SteinhoffC12,https://doi.org/10.1016/j.jcp.2012.05.008 +Lin He,Incorporating topological derivatives into shape derivatives based level set methods.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#HeKO07,https://doi.org/10.1016/j.jcp.2007.01.003 +David Schmicker,Implicit Geometry Meshing for the simulation of Rotary Friction Welding.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#SchmickerPS14,https://doi.org/10.1016/j.jcp.2014.04.014 +J. B. White III,High-performance high-resolution semi-Lagrangian tracer transport on a sphere.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#WhiteD11,https://doi.org/10.1016/j.jcp.2011.05.008 +Dinshaw S. Balsara,A two-dimensional Riemann solver with self-similar sub-structure - Alternative formulation based on least squares projection.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#BalsaraVGNDGA16,https://doi.org/10.1016/j.jcp.2015.10.013 +Phillip Colella,A limiter for PPM that preserves accuracy at smooth extrema.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#ColellaS08,https://doi.org/10.1016/j.jcp.2008.03.034 +Marco F. P. ten Eikelder,An acoustic-convective splitting-based approach for the Kapila two-phase flow model.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#EikelderDKT17,https://doi.org/10.1016/j.jcp.2016.11.031 +Jian Cheng,Analysis and development of adjoint-based h-adaptive direct discontinuous Galerkin method for the compressible Navier-Stokes equations.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#ChengYYL18,https://doi.org/10.1016/j.jcp.2018.02.031 +Duo Wang,On the curvature effect of thin membranes.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#WangJCG13,https://doi.org/10.1016/j.jcp.2012.09.001 +Weiming Feng,Spectral implementation of an adaptive moving mesh method for phase-field equations.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#FengYHLDC06,https://doi.org/10.1016/j.jcp.2006.07.013 +Hailiang Liu,A Hamiltonian preserving discontinuous Galerkin method for the generalized Korteweg-de Vries equation.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#LiuY16b,https://doi.org/10.1016/j.jcp.2016.06.010 +Jeffrey J. Heys,Weighted least-squares finite elements based on particle imaging velocimetry data.,2010,229,J. Comput. Physics,1,db/journals/jcphy/jcphy229.html#HeysMMMWB10,https://doi.org/10.1016/j.jcp.2009.09.016 +Paul Tsuji,A fast directional algorithm for high-frequency electromagnetic scattering.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#TsujiY11,https://doi.org/10.1016/j.jcp.2011.02.013 +Guangrui Sun,Implicit LES using adaptive filtering.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#SunD18,https://doi.org/10.1016/j.jcp.2018.01.009 +Christoph Lohmann,Synchronized flux limiting for gas dynamics variables.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#LohmannK16,https://doi.org/10.1016/j.jcp.2016.09.025 +Jürgen Schnack,Efficient implementation of the Lanczos method for magnetic systems.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#SchnackHS08,https://doi.org/10.1016/j.jcp.2008.01.027 +Liangzhe Zhang,A quantitative comparison between C0 and C1 elements for solving the Cahn-Hilliard equation.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#ZhangTGPAMB13,https://doi.org/10.1016/j.jcp.2012.12.001 +Yongcheng Zhou,On the fictitious-domain and interpolation formulations of the matched interface and boundary (MIB) method.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#ZhouW06,https://doi.org/10.1016/j.jcp.2006.03.027 +Ping Lin,Simulations of singularity dynamics in liquid crystal flows: A C0 finite element approach.,2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#LinL06,https://doi.org/10.1016/j.jcp.2005.10.027 +Gary J. Chandler,Adjoint algorithms for the Navier-Stokes equations in the low Mach number limit.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#ChandlerJNS12,https://doi.org/10.1016/j.jcp.2011.11.013 +Carsten Eilks,Numerical simulation of dealloying by surface dissolution via the evolving surface finite element method.,2008,227,J. Comput. Physics,23,db/journals/jcphy/jcphy227.html#EilksE08,https://doi.org/10.1016/j.jcp.2008.07.023 +Feriedoun Sabetghadam,Fourier spectral embedded boundary solution of the Poisson's and Laplace equations with Dirichlet boundary conditions.,2009,228,J. Comput. Physics,1,db/journals/jcphy/jcphy228.html#SabetghadamSN09,https://doi.org/10.1016/j.jcp.2008.08.018 +Thomas Melvin,Dispersion analysis of the Pn - P n-1DG mixed finite element pair for atmospheric modelling.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#Melvin18,https://doi.org/10.1016/j.jcp.2017.11.019 +F. G. Fuchs,Splitting based finite volume schemes for ideal MHD equations.,2009,228,J. Comput. Physics,3,db/journals/jcphy/jcphy228.html#FuchsMR09,https://doi.org/10.1016/j.jcp.2008.09.027 +Francois Hermeline,A finite volume method for the approximation of Maxwell's equations in two space dimensions on arbitrary meshes.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#HermelineLO08,https://doi.org/10.1016/j.jcp.2008.05.013 +Jason E. Hicken,Output error estimation for summation-by-parts finite-difference schemes.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#Hicken12,https://doi.org/10.1016/j.jcp.2012.01.031 +Tao Feng,On linearization and preconditioning for radiation diffusion coupled to material thermal conduction equations.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#FengAYLZ13,https://doi.org/10.1016/j.jcp.2012.11.012 +J. H. Curtis,Accelerated simulation of stochastic particle removal processes in particle-resolved aerosol models.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#CurtisMRHW16,https://doi.org/10.1016/j.jcp.2016.06.029 +Andrew R. Siegel,Analysis of communication costs for domain decomposed Monte Carlo methods in nuclear reactor analysis.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#SiegelSFM12,https://doi.org/10.1016/j.jcp.2011.12.014 +Krista Nerinckx,A Mach-uniform algorithm: Coupled versus segregated approach.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#NerinckxVD07,https://doi.org/10.1016/j.jcp.2007.02.008 +Konstantin Grella,Sparse tensor spherical harmonics approximation in radiative transfer.,2011,230,J. Comput. Physics,23,db/journals/jcphy/jcphy230.html#GrellaS11,https://doi.org/10.1016/j.jcp.2011.07.028 +Baole Wen,Reduced modeling of porous media convection in a minimal flow unit at large Rayleigh number.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#WenC18,https://doi.org/10.1016/j.jcp.2018.06.001 +Liang Jie,Accelerating solidification process simulation for large-sized system of liquid metal atoms using GPU with CUDA.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#JieLSLM14,https://doi.org/10.1016/j.jcp.2013.10.012 +Maciek D. Korzec,Time-stepping methods for the simulation of the self-assembly of nano-crystals in Matlab on a GPU.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#KorzecA13,https://doi.org/10.1016/j.jcp.2013.05.040 +Shi Jin,Asymptotic-preserving methods for hyperbolic and transport equations with random inputs and diffusive scalings.,2015,289,J. Comput. Physics,,db/journals/jcphy/jcphy289.html#JinXZ15,https://doi.org/10.1016/j.jcp.2015.02.023 +Mehdi Ghommem,Mode decomposition methods for flows in high-contrast porous media. Global-local approach.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#GhommemPCE13,https://doi.org/10.1016/j.jcp.2013.06.033 +Hai P. Le,Monte Carlo simulation of excitation and ionization collisions with complexity reduction.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#LeYCC17,https://doi.org/10.1016/j.jcp.2017.06.029 +Yuhui Wu,A high-order photon Monte Carlo method for radiative transfer in direct numerical simulation.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#WuMH07,https://doi.org/10.1016/j.jcp.2006.10.014 +Fengyan Li,Arbitrary order exactly divergence-free central discontinuous Galerkin methods for ideal MHD equations.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#LiX12,https://doi.org/10.1016/j.jcp.2011.12.016 +Yunchang Seol,An immersed boundary method for simulating vesicle dynamics in three dimensions.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#SeolHKL16,https://doi.org/10.1016/j.jcp.2016.06.035 +Yujian Jiao,Well-conditioned fractional collocation methods using fractional Birkhoff interpolation basis.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#JiaoWH16,https://doi.org/10.1016/j.jcp.2015.10.029 +Adam R. Stinchcombe,An efficient method for simulation of noisy coupled multi-dimensional oscillators.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#StinchcombeF16,https://doi.org/10.1016/j.jcp.2016.05.025 +Michel Bergmann,A zonal Galerkin-free POD model for incompressible flows.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#BergmannFILST18,https://doi.org/10.1016/j.jcp.2017.10.001 +Jae Wook Kim,Quasi-disjoint pentadiagonal matrix systems for the parallelization of compact finite-difference schemes and filters.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#Kim13,https://doi.org/10.1016/j.jcp.2013.01.046 +Mulin Cheng,A dynamically bi-orthogonal method for time-dependent stochastic partial differential equations I: Derivation and algorithms.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#ChengHZ13a,https://doi.org/10.1016/j.jcp.2013.02.033 +Raoyang Zhang,Realization of isotropy of the lattice Boltzmann method via rotation of lattice velocity bases.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#ZhangSC07,https://doi.org/10.1016/j.jcp.2007.01.032 +Enrique Bendito,Estimation of Fekete points.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#BenditoCEG07,https://doi.org/10.1016/j.jcp.2007.03.017 +Richard L. Muddle,An efficient preconditioner for monolithically-coupled large-displacement fluid-structure interaction problems with pseudo-solid mesh updates.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#MuddleMH12,https://doi.org/10.1016/j.jcp.2012.07.001 +Kui Du,Arbitrary high-order C0 tensor product Galerkin finite element methods for the electromagnetic scattering from a large cavity.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#DuSZ13,https://doi.org/10.1016/j.jcp.2013.02.015 +Dharshi Devendran,An immersed boundary energy-based method for incompressible viscoelasticity.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#DevendranP12,https://doi.org/10.1016/j.jcp.2012.02.020 +Andreas Kempf,Note on the use of Yee-lattices in (semi-) implicit particle-in-cell codes.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#KempfGKS13,https://doi.org/10.1016/j.jcp.2012.11.045 +Benjamin Peherstorfer,Combining multiple surrogate models to accelerate failure probability estimation with expensive high-fidelity models.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#PeherstorferKW17,https://doi.org/10.1016/j.jcp.2017.04.012 +Hui Feng,A stable nodal integration method for static and quasi-static electromagnetic field computation.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#FengCL17,https://doi.org/10.1016/j.jcp.2017.02.022 +Tianheng Chen,Entropy stable high order discontinuous Galerkin methods with suitable quadrature rules for hyperbolic conservation laws.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#ChenS17,https://doi.org/10.1016/j.jcp.2017.05.025 +T. Tückmantel,H-VLPL: A three-dimensional relativistic PIC/fluid hybrid code.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#TuckmantelP14,https://doi.org/10.1016/j.jcp.2014.03.019 +Shan Zhao,High order matched interface and boundary methods for the Helmholtz equation in media with arbitrarily curved interfaces.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#Zhao10,https://doi.org/10.1016/j.jcp.2009.12.034 +Duc Duy Nguyen,Time-domain matched interface and boundary (MIB) modeling of Debye dispersive media with curved interfaces.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#NguyenZ14,https://doi.org/10.1016/j.jcp.2014.08.038 +Serguei Ovtchinnikov,Additive Schwarz-based fully coupled implicit methods for resistive Hall magnetohydrodynamic problems.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#OvtchinnikovDCK07,https://doi.org/10.1016/j.jcp.2007.02.027 +Bartosz Protas,Adjoint-based optimization of PDEs in moving domains.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#ProtasL08,https://doi.org/10.1016/j.jcp.2007.11.014 +Enric Pardo,3D computation of non-linear eddy currents: Variational method and superconducting cubic bulk.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#PardoK17,https://doi.org/10.1016/j.jcp.2017.05.001 +Ramon Codina,The fixed-mesh ALE approach for the numerical approximation of flows in moving domains.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#CodinaHCB09,https://doi.org/10.1016/j.jcp.2008.11.004 +Donald E. Burton,Reduction of dissipation in Lagrange cell-centered hydrodynamics (CCH) through corner gradient reconstruction (CGR).,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#BurtonMCK15,https://doi.org/10.1016/j.jcp.2015.06.041 +Daniel Z. Huang,A family of position- and orientation-independent embedded boundary methods for viscous flow and fluid-structure interaction problems.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#HuangSF18,https://doi.org/10.1016/j.jcp.2018.03.028 +Enrique Domingo Fernández-Nieto,Efficient numerical schemes for viscoplastic avalanches. Part 1: The 1D case.,2014,264,J. Comput. Physics,,db/journals/jcphy/jcphy264.html#Fernandez-NietoGV14,https://doi.org/10.1016/j.jcp.2014.01.026 +Sergey A. Zabelok,Adaptive kinetic-fluid solvers for heterogeneous computing architectures.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#ZabelokAK15,https://doi.org/10.1016/j.jcp.2015.10.003 +Shaoqiang Tang,A finite difference approach with velocity interfacial conditions for multiscale computations of crystalline solids.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#Tang08,https://doi.org/10.1016/j.jcp.2007.12.012 +Yingjie Gao,Third-order symplectic integration method with inverse time dispersion transform for long-term simulation.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#GaoZY16,https://doi.org/10.1016/j.jcp.2016.03.031 +Cheng Wang,Parallel adaptive mesh refinement method based on WENO finite difference scheme for the simulation of multi-dimensional detonation.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#WangDS15,https://doi.org/10.1016/j.jcp.2015.06.001 +Pierre Degond,An asymptotic-preserving method for highly anisotropic elliptic equations based on a Micro-Macro decomposition.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#DegondLNN12,https://doi.org/10.1016/j.jcp.2011.11.040 +Geoffrey M. Vasil,A new method for fast transforms in parity-mixed PDEs: Part I. Numerical techniques and analysis.,2008,227,J. Comput. Physics,17,db/journals/jcphy/jcphy227.html#VasilBJ08,https://doi.org/10.1016/j.jcp.2008.04.020 +Andrew R. Winters,ALE-DGSEM approximation of wave reflection and transmission from a moving medium.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#WintersK14,https://doi.org/10.1016/j.jcp.2014.01.022 +Lian-Ping Wang,A bin integral method for solving the kinetic collection equation.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#WangXG07,https://doi.org/10.1016/j.jcp.2007.03.029 +Mostafa Jamshidian,A multiscale coupled finite-element and phase-field framework to modeling stressed grain growth in polycrystalline thin films.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#JamshidianTR16,https://doi.org/10.1016/j.jcp.2016.09.061 +João P. P. Magalhães,Adaptive mesh finite-volume calculation of 2D lid-cavity corner vortices.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#MagalhaesAPP13,https://doi.org/10.1016/j.jcp.2013.02.042 +Nina V. Elkina,A new conservative unsplit method for the solution of the Vlasov equation.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#ElkinaB06,https://doi.org/10.1016/j.jcp.2005.09.023 +Xiang Zhang,An accurate elasto-plastic frictional tangential force-displacement model for granular-flow simulations: Displacement-driven formulation.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#ZhangV07,https://doi.org/10.1016/j.jcp.2006.12.028 +A. Yagub,A lattice Boltzmann model for substrates with regularly structured surface roughness.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#YagubFKS15,https://doi.org/10.1016/j.jcp.2015.08.040 +Yu Lv,An entropy-residual shock detector for solving conservation laws using high-order discontinuous Galerkin methods.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#LvSI16,https://doi.org/10.1016/j.jcp.2016.06.052 +Bram van Leer,A historical oversight: Vladimir P. Kolgan and his high-resolution scheme.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#Leer11,https://doi.org/10.1016/j.jcp.2010.12.032 +Thomas Guédeney,Non-uniform time sampling for multiple-frequency harmonic balance computations.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#GuedeneyGGSDP13,https://doi.org/10.1016/j.jcp.2012.11.010 +Amirashkan Darvish,An optimized hybrid Convolutional Perfectly Matched Layer for efficient absorption of electromagnetic waves.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#DarvishZR18,https://doi.org/10.1016/j.jcp.2017.11.030 +C. Deimert,Collocated electrodynamic FDTD schemes using overlapping Yee grids and higher-order Hodge duals.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#DeimertPO16,https://doi.org/10.1016/j.jcp.2016.08.048 +Z. C. He,A mass-redistributed finite element method (MR-FEM) for acoustic problems using triangular mesh.,2016,323,J. Comput. Physics,,db/journals/jcphy/jcphy323.html#HeLLLC16,https://doi.org/10.1016/j.jcp.2016.07.025 +G. Kluth,Discretization of hyperelasticity on unstructured mesh with a cell-centered Lagrangian scheme.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#KluthD10,https://doi.org/10.1016/j.jcp.2010.08.024 +Takaharu Yaguchi,The discrete variational derivative method based on discrete differential forms.,2012,231,J. Comput. Physics,10,db/journals/jcphy/jcphy231.html#YaguchiMS12,https://doi.org/10.1016/j.jcp.2012.01.035 +Sibusiso Mabuza,Local bounds preserving stabilization for continuous Galerkin discretization of hyperbolic systems.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#MabuzaSK18,https://doi.org/10.1016/j.jcp.2018.01.048 +V. Ruiz Barlett,Differences between fixed time step and kinetic Monte Carlo methods for biased diffusion.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#BarlettBHM09,https://doi.org/10.1016/j.jcp.2009.04.035 +Akash Anand,An efficient high-order Nyström scheme for acoustic scattering by inhomogeneous penetrable media with discontinuous material interface.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#AnandPKP16,https://doi.org/10.1016/j.jcp.2016.01.028 +Konstantin Lipnikov,The mimetic finite difference method for the 3D magnetostatic field problems on polyhedral meshes.,2011,230,J. Comput. Physics,2,db/journals/jcphy/jcphy230.html#LipnikovMBB11,https://doi.org/10.1016/j.jcp.2010.09.007 +Koottungal Revi Arun,Finite volume evolution Galerkin method for hyperbolic conservation laws with spatially varying flux functions.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#ArunKLP09,https://doi.org/10.1016/j.jcp.2008.10.004 +Javier Murillo,An Exner-based coupled model for two-dimensional transient flow over erodible bed.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#MurilloG10a,https://doi.org/10.1016/j.jcp.2010.08.006 +Kazem Hejranfar,Preconditioned characteristic boundary conditions based on artificial compressibility method for solution of incompressible flows.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#HejranfarP17,https://doi.org/10.1016/j.jcp.2017.05.014 +Jan Schlottke,Direct numerical simulation of evaporating droplets.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#SchlottkeW08,https://doi.org/10.1016/j.jcp.2008.01.042 +Mikhail Z. Tokar,Numerical modeling of transport barrier formation.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#Tokar10,https://doi.org/10.1016/j.jcp.2009.12.009 +Patrick Kilian,Simulating the injection of magnetized plasma without electromagnetic precursor wave.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#KilianS18,https://doi.org/10.1016/j.jcp.2017.10.012 +Eric T. Chung,An adaptive GMsFEM for high-contrast flow problems.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#ChungEL14,https://doi.org/10.1016/j.jcp.2014.05.007 +Diego Avesani,A new class of Moving-Least-Squares WENO-SPH schemes.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#AvesaniDB14,https://doi.org/10.1016/j.jcp.2014.03.041 +Ali Mani,Resolution requirements for aero-optical simulations.,2008,227,J. Comput. Physics,21,db/journals/jcphy/jcphy227.html#ManiWM08,https://doi.org/10.1016/j.jcp.2008.02.014 +Gary Cohen,A spatial high-order hexahedral discontinuous Galerkin method to solve Maxwell's equations in time domain.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#CohenFP06,https://doi.org/10.1016/j.jcp.2006.01.004 +Géraud Blatman,Adaptive sparse polynomial chaos expansion based on least angle regression.,2011,230,J. Comput. Physics,6,db/journals/jcphy/jcphy230.html#BlatmanS11,https://doi.org/10.1016/j.jcp.2010.12.021 +V. Ruiz Barlett,Comparison between fixed and Gaussian steplength in Monte Carlo simulations for diffusion processes.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#BarlettHM11,https://doi.org/10.1016/j.jcp.2011.01.041 +Marco Guidetti,Efficient assignment of the temperature set for Parallel Tempering.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#GuidettiRT12,https://doi.org/10.1016/j.jcp.2011.10.019 +Kensuke Yokoi,Efficient implementation of THINC scheme: A simple and practical smoothed VOF algorithm.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#Yokoi07,https://doi.org/10.1016/j.jcp.2007.06.020 +Junping Wang,Discrete maximum principle for the P1 - P0 weak Galerkin finite element approximations.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#WangYZZ18,https://doi.org/10.1016/j.jcp.2018.02.013 +Kazuyasu Sugiyama,A full Eulerian finite difference approach for solving fluid-structure coupling problems.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#SugiyamaITTM11,https://doi.org/10.1016/j.jcp.2010.09.032 +Pietro Asinari,Link-wise artificial compressibility method.,2012,231,J. Comput. Physics,15,db/journals/jcphy/jcphy231.html#AsinariOCR12,https://doi.org/10.1016/j.jcp.2012.04.027 +Tony C. Slaba,Faster and more accurate transport procedures for HZETRN.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#SlabaBB10,https://doi.org/10.1016/j.jcp.2010.09.010 +Ryuichi S. Nagaosa,Reprint of: A numerical modelling of gas exchange mechanisms between air and turbulent water with an aquarium chemical reaction.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#Nagaosa14a,https://doi.org/10.1016/j.jcp.2014.04.007 +Andrew Binder,A generalized parallel replica dynamics.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#BinderLS15,https://doi.org/10.1016/j.jcp.2015.01.002 +U. Rasthofer,Multifractal subgrid-scale modeling within a variational multiscale method for large-eddy simulation of turbulent flow.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#RasthoferG13,https://doi.org/10.1016/j.jcp.2012.09.013 +Anne-Marie Baudron,Parareal in time 3D numerical solver for the LWR Benchmark neutron diffusion transient model.,2014,279,J. Comput. Physics,,db/journals/jcphy/jcphy279.html#BaudronLMRS14,https://doi.org/10.1016/j.jcp.2014.08.037 +Daniele Bertaccini,Fast numerical solution of nonlinear nonlocal cochlear models.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#BertacciniS11,https://doi.org/10.1016/j.jcp.2010.12.035 +Kelin Xia,Multiscale geometric modeling of macromolecules I: Cartesian representation.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#XiaFCTW14,https://doi.org/10.1016/j.jcp.2013.09.034 +Anil Damle,SCDM-k: Localized orbitals for solids via selected columns of the density matrix.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#DamleLY17,https://doi.org/10.1016/j.jcp.2016.12.053 +Xiantao Li,A multiscale coupling method for the modeling of dynamics of solids with application to brittle cracks.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#LiYE10,https://doi.org/10.1016/j.jcp.2010.01.039 +Luis Cea,Unstructured finite volume discretisation of bed friction and convective flux in solute transport models linked to the shallow water equations.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#CeaV12,https://doi.org/10.1016/j.jcp.2012.01.007 +Jan Nordström,A stable hybrid method for hyperbolic problems.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#NordstromG06,https://doi.org/10.1016/j.jcp.2005.07.008 +Michael Dumbser,A unified framework for the construction of one-step finite volume and discontinuous Galerkin schemes on unstructured meshes.,2008,227,J. Comput. Physics,18,db/journals/jcphy/jcphy227.html#DumbserBTM08,https://doi.org/10.1016/j.jcp.2008.05.025 +G. Rizzuti,Multigrid-based 'shifted-Laplacian' preconditioning for the time-harmonic elastic wave equation.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#RizzutiM16,https://doi.org/10.1016/j.jcp.2016.04.049 +Patrick A. Klein,Coupled atomistic-continuum simulations using arbitrary overlapping domains.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#KleinZ06,https://doi.org/10.1016/j.jcp.2005.08.014 +Feruza A. Amirkulova,Acoustic multiple scattering using recursive algorithms.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#AmirkulovaN15,https://doi.org/10.1016/j.jcp.2015.07.031 +N. Babkovskaia,A high-order public domain code for direct numerical simulations of turbulent combustion.,2011,230,J. Comput. Physics,1,db/journals/jcphy/jcphy230.html#BabkovskaiaHB11,https://doi.org/10.1016/j.jcp.2010.08.028 +Michael Medvinsky,Local absorbing boundary conditions for elliptical shaped boundaries.,2008,227,J. Comput. Physics,18,db/journals/jcphy/jcphy227.html#MedvinskyTH08,https://doi.org/10.1016/j.jcp.2008.05.010 +Siddharth Savadatti,Absorbing boundary conditions for scalar waves in anisotropic media. Part 2: Time-dependent modeling.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#SavadattiG10,https://doi.org/10.1016/j.jcp.2010.05.017 +Jin Fu,The time dependent propensity function for acceleration of spatial stochastic simulation of reaction-diffusion systems.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#FuWLP14,https://doi.org/10.1016/j.jcp.2014.06.025 +Barry Koren,Physics-compatible numerical methods.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#KorenABFP14,https://doi.org/10.1016/j.jcp.2013.10.015 +Shenren Xu,Stabilisation of discrete steady adjoint solvers.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#XuRMM15,https://doi.org/10.1016/j.jcp.2015.06.036 +Shuting Gu,Convex splitting method for the calculation of transition states of energy functional.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#GuZ18,https://doi.org/10.1016/j.jcp.2017.10.028 +Roger Cocle,Combining the vortex-in-cell and parallel fast multipole methods for efficient domain decomposition simulations.,2008,227,J. Comput. Physics,21,db/journals/jcphy/jcphy227.html#CocleWD08,https://doi.org/10.1016/j.jcp.2007.10.010 +Roman Samulyak,A numerical algorithm for MHD of free surface flows at low magnetic Reynolds numbers.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#SamulyakDGX07,https://doi.org/10.1016/j.jcp.2007.06.005 +Keisuke Sugiura,An extension of Godunov SPH II: Application to elastic dynamics.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#SugiuraI17,https://doi.org/10.1016/j.jcp.2016.12.026 +Ian G. Grooms,Stochastic superparameterization in quasigeostrophic turbulence.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#GroomsM14,https://doi.org/10.1016/j.jcp.2013.09.020 +Ryusuke Numata,"Corrigendum to ""AstroGK: Astrophysical gyrokinetics code"" [J. Comput. Physics 229 (2010) 9347-9372].",2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#NumataHTBD13,https://doi.org/10.1016/j.jcp.2013.04.001 +Hongtao Chen,A full multigrid method for eigenvalue problems.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#ChenXX16,https://doi.org/10.1016/j.jcp.2016.07.009 +Vít Dolejsí,Efficient solution strategy for the semi-implicit discontinuous Galerkin discretization of the Navier-Stokes equations.,2011,230,J. Comput. Physics,11,db/journals/jcphy/jcphy230.html#DolejsiHH11,https://doi.org/10.1016/j.jcp.2010.10.029 +Bo Zhang,A Fourier-series-based kernel-independent fast multipole method.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#ZhangHPS11,https://doi.org/10.1016/j.jcp.2011.03.049 +Daisuke Nishiura,Parallel-vector algorithms for particle simulations on shared-memory multiprocessors.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#NishiuraS11,https://doi.org/10.1016/j.jcp.2010.11.040 +Limin Wang,Heuristic optimality criterion algorithm for shape design of fluid flow.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#WangFL10,https://doi.org/10.1016/j.jcp.2010.07.006 +éliane Bécache,High-order Absorbing Boundary Conditions for anisotropic and convective wave equations.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#BecacheGH10,https://doi.org/10.1016/j.jcp.2009.10.012 +Jan Ramboer,Optimization of time integration schemes coupled to spatial discretization for use in CAA applications.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#RamboerBSL06,https://doi.org/10.1016/j.jcp.2005.08.033 +Stephen C. Jardin,A high-order implicit finite element method for integrating the two-fluid magnetohydrodynamic equations in two dimensions.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#JardinBF07,https://doi.org/10.1016/j.jcp.2007.07.003 +Matthew Celnik,A predictor-corrector algorithm for the coupling of stiff ODEs to a particle population balance.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#CelnikPKW09,https://doi.org/10.1016/j.jcp.2008.12.030 +Mohamed Zerroukat,Application of the parabolic spline method (PSM) to a multi-dimensional conservative semi-Lagrangian transport scheme (SLICE).,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#ZerroukatWS07,https://doi.org/10.1016/j.jcp.2007.01.006 +S. V. Petropavlovsky,A non-deteriorating algorithm for computational electromagnetism based on quasi-lacunae of Maxwell's equations.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#PetropavlovskyT12,https://doi.org/10.1016/j.jcp.2011.09.019 +Alex Mahalov,Time-filtered leapfrog integration of Maxwell equations using unstaggered temporal grids.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#MahalovM16,https://doi.org/10.1016/j.jcp.2016.08.016 +Felix S. Schranner,A conservative interface-interaction model with insoluble surfactant.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#SchrannerA16,https://doi.org/10.1016/j.jcp.2016.09.058 +Cécile Piret,A radial basis functions method for fractional diffusion equations.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#PiretH13,https://doi.org/10.1016/j.jcp.2012.10.041 +Boyce E. Griffith,An accurate and efficient method for the incompressible Navier-Stokes equations using the projection method as a preconditioner.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#Griffith09,https://doi.org/10.1016/j.jcp.2009.07.001 +Bryan W. Holland,Computer data analysis of the oscillating forward-reverse method.,2012,231,J. Comput. Physics,11,db/journals/jcphy/jcphy231.html#HollandVT12,https://doi.org/10.1016/j.jcp.2012.02.018 +Youbing Yin,A multiscale MDCT image-based breathing lung model with time-varying regional ventilation.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#YinCHTL13,https://doi.org/10.1016/j.jcp.2012.12.007 +Eldad Haber,A fast method for the solution of the Helmholtz equation.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#HaberM11,https://doi.org/10.1016/j.jcp.2011.01.015 +Jian Guo Zhou,Enhancement of the LABSWE for shallow water flows.,2011,230,J. Comput. Physics,2,db/journals/jcphy/jcphy230.html#Zhou11,https://doi.org/10.1016/j.jcp.2010.09.027 +Changfeng Xue,An upwinding boundary condition capturing method for Maxwell's equations in media with material interfaces.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#XueD07,https://doi.org/10.1016/j.jcp.2006.12.001 +Eric Johnsen,On the treatment of contact discontinuities using WENO schemes.,2011,230,J. Comput. Physics,24,db/journals/jcphy/jcphy230.html#Johnsen11,https://doi.org/10.1016/j.jcp.2011.08.017 +Fayssal Benkhaldoun,Well-balanced finite volume schemes for pollutant transport by shallow water equations on unstructured meshes.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#BenkhaldounES07,https://doi.org/10.1016/j.jcp.2007.04.005 +Xiaodong Ren,A multi-dimensional high-order discontinuous Galerkin method based on gas kinetic theory for viscous flow computations.,2015,292,J. Comput. Physics,,db/journals/jcphy/jcphy292.html#RenXSG15,https://doi.org/10.1016/j.jcp.2015.03.031 +D. Lee,Discrete conservation properties for shallow water flows using mixed mimetic spectral elements.,2018,357,J. Comput. Physics,,db/journals/jcphy/jcphy357.html#LeePG18,https://doi.org/10.1016/j.jcp.2017.12.022 +William D. Henshaw,Parallel computation of three-dimensional flows using overlapping grids with adaptive mesh refinement.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#HenshawS08,https://doi.org/10.1016/j.jcp.2008.04.033 +Sehun Chun,Method of moving frames to solve the shallow water equations on arbitrary rotating curved surfaces.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#ChunE17,https://doi.org/10.1016/j.jcp.2016.12.013 +Pablo Mata,Variational integrators for the dynamics of thermo-elastic solids with finite speed thermal waves.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#MataL14,https://doi.org/10.1016/j.jcp.2013.09.030 +S. LeMartelot,Liquid and liquid-gas flows at all speeds.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#LeMartelotNS13,https://doi.org/10.1016/j.jcp.2013.08.001 +Florian Schneider,Kershaw closures for linear transport equations in slab geometry I: Model derivation.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#Schneider16,https://doi.org/10.1016/j.jcp.2016.02.080 +Jung Hee Seo,Prediction of cavitating flow noise by direct numerical simulation.,2008,227,J. Comput. Physics,13,db/journals/jcphy/jcphy227.html#SeoMS08,https://doi.org/10.1016/j.jcp.2008.03.016 +S. Karimi,On multi-time-step monolithic coupling algorithms for elastodynamics.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#KarimiN14,https://doi.org/10.1016/j.jcp.2014.05.034 +Rafael Ramis,One-dimensional Lagrangian implicit hydrodynamic algorithm for Inertial Confinement Fusion applications.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#Ramis17,https://doi.org/10.1016/j.jcp.2016.11.011 +Dragan Vidovic,Accelerated non-linear finite volume method for diffusion.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#VidovicDP11,https://doi.org/10.1016/j.jcp.2011.01.016 +Michael G. Edwards,Double-families of quasi-positive Darcy-flux approximations with highly anisotropic tensors on structured and unstructured grids.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#EdwardsZ10,https://doi.org/10.1016/j.jcp.2009.09.037 +F. Mottez,A guiding centre direct implicit scheme for magnetized plasma simulations.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#Mottez08,https://doi.org/10.1016/j.jcp.2007.11.034 +John P. Boyd 0001,Numerical and perturbative computations of solitary waves of the Benjamin-Ono equation with higher order nonlinearity using Christov rational basis functions.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#BoydX12,https://doi.org/10.1016/j.jcp.2011.10.004 +Qibing Li,On the multidimensional gas-kinetic BGK scheme.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#LiF06,https://doi.org/10.1016/j.jcp.2006.07.010 +Wei-Ming Lee,Acoustic scattering by multiple elliptical cylinders using collocation multipole method.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#Lee12a,https://doi.org/10.1016/j.jcp.2012.02.032 +David M. Ambrose,Fokas integral equations for three dimensional layered-media scattering.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#AmbroseN14,https://doi.org/10.1016/j.jcp.2014.07.018 +Matthias Ruf,A real space split operator method for the Klein-Gordon equation.,2009,228,J. Comput. Physics,24,db/journals/jcphy/jcphy228.html#RufBK09,https://doi.org/10.1016/j.jcp.2009.09.012 +Victor I. Kostin,Local time-space mesh refinement for simulation of elastic wave propagation in multi-scale media.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#KostinLRT15,https://doi.org/10.1016/j.jcp.2014.10.047 +Xiaoping Zhang,Quadrature rules for finite element approximations of 1D nonlocal problems.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#ZhangGJ16,https://doi.org/10.1016/j.jcp.2016.01.016 +Jie Zhang,A consistent and conservative scheme for MHD flows with complex boundaries on an unstructured Cartesian adaptive system.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#ZhangN14,https://doi.org/10.1016/j.jcp.2013.08.004 +Duan Z. Zhang,Material point method applied to multiphase flows.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#ZhangZVM08,https://doi.org/10.1016/j.jcp.2007.11.021 +Manuel Huber 0002,On the physically based modeling of surface tension and moving contact lines with dynamic contact angles on the continuum scale.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#HuberKSHKHN16,https://doi.org/10.1016/j.jcp.2016.01.030 +Fedderik van der Bos,Numerical simulation of premixed combustion using an enriched finite element method.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#BosG09,https://doi.org/10.1016/j.jcp.2008.12.039 +Sean Y. Hon,A cell based particle method for modeling dynamic interfaces.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#HonLZ14,https://doi.org/10.1016/j.jcp.2014.04.032 +Aidan P. Thompson,Spectral neighbor analysis method for automated generation of quantum-accurate interatomic potentials.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#ThompsonSTFT15,https://doi.org/10.1016/j.jcp.2014.12.018 +Jingrun Chen,An efficient multigrid strategy for large-scale molecular mechanics optimization.,2017,342,J. Comput. Physics,,db/journals/jcphy/jcphy342.html#ChenG17,https://doi.org/10.1016/j.jcp.2017.04.035 +James P. Collins,A gridfree scheme for simulation of natural convection in three dimensions.,2018,369,J. Comput. Physics,,db/journals/jcphy/jcphy369.html#CollinsB18,https://doi.org/10.1016/j.jcp.2018.05.012 +Christophe Bogey,A shock-capturing methodology based on adaptative spatial filtering for high-order non-linear computations.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#BogeyCB09,https://doi.org/10.1016/j.jcp.2008.10.042 +Francesco Paparella,Lagrangian numerical methods for ocean biogeochemical simulations.,2018,360,J. Comput. Physics,,db/journals/jcphy/jcphy360.html#PaparellaP18,https://doi.org/10.1016/j.jcp.2018.01.031 +Deep Ray,An artificial neural network as a troubled-cell indicator.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#RayH18,https://doi.org/10.1016/j.jcp.2018.04.029 +Nicolas Favrie,Diffuse interface model for compressible fluid - Compressible elastic-plastic solid interaction.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#FavrieG12,https://doi.org/10.1016/j.jcp.2011.11.027 +Yibin Wang,Delaunay graph and radial basis function for fast quality mesh deformation.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#WangQZ15,https://doi.org/10.1016/j.jcp.2015.03.046 +Matei Tene,Algebraic multiscale method for flow in heterogeneous porous media with embedded discrete fractures (F-AMS).,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#TeneKH16,https://doi.org/10.1016/j.jcp.2016.06.012 +Zhizhang Wu,A Bloch decomposition-based stochastic Galerkin method for quantum dynamics with a random external potential.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#WuH16,https://doi.org/10.1016/j.jcp.2016.04.051 +Stéphane Clain,First- and second-order finite volume methods for the one-dimensional nonconservative Euler system.,2009,228,J. Comput. Physics,22,db/journals/jcphy/jcphy228.html#ClainR09,https://doi.org/10.1016/j.jcp.2009.07.038 +Gil Ariel,Gaussian beam decomposition of high frequency wave fields using expectation-maximization.,2011,230,J. Comput. Physics,6,db/journals/jcphy/jcphy230.html#ArielETT11,https://doi.org/10.1016/j.jcp.2010.12.018 +S. Britt,Numerical solution of the wave equation with variable wave speed on nonconforming domains by high-order difference potentials.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#BrittTT18,https://doi.org/10.1016/j.jcp.2017.10.049 +Emanuela Abbate,An all-speed relaxation scheme for gases and compressible materials.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#AbbateIP17,https://doi.org/10.1016/j.jcp.2017.08.052 +Amit Kumar,Accelerated boundary integral method for multiphase flow in non-periodic geometries.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#KumarG12,https://doi.org/10.1016/j.jcp.2012.05.035 +Guang-hua Gao,Some high-order difference schemes for the distributed-order differential equations.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#GaoSS15a,https://doi.org/10.1016/j.jcp.2015.05.047 +Russel E. Caflisch,An application of multigrid methods for a discrete elastic model for epitaxial systems.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#CaflischLSXX06,https://doi.org/10.1016/j.jcp.2006.04.007 +Mingtian Xu,The integral equation approach to kinematic dynamo theory and its application to dynamo experiments in cylindrical geometry.,2008,227,J. Comput. Physics,17,db/journals/jcphy/jcphy227.html#XuSG08,https://doi.org/10.1016/j.jcp.2008.05.009 +Weizhang Huang,A new anisotropic mesh adaptation method based upon hierarchical a posteriori error estimates.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#HuangKL10,https://doi.org/10.1016/j.jcp.2009.11.029 +Kenny Chowdhary,Bayesian estimation of Karhunen-Loève expansions* A random subspace approach.,2016,319,J. Comput. Physics,,db/journals/jcphy/jcphy319.html#ChowdharyN16,https://doi.org/10.1016/j.jcp.2016.02.056 +Xia Cui,Asymptotic analysis of discrete schemes for non-equilibrium radiation diffusion.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#CuiYS16,https://doi.org/10.1016/j.jcp.2016.02.061 +Axelle Viré,Modeling and discretization errors in large eddy simulations of hydrodynamic and magnetohydrodynamic channel flows.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#VireKBK11,https://doi.org/10.1016/j.jcp.2010.11.039 +Patrick Blonigan,Probability density adjoint for sensitivity analysis of the Mean of Chaos.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#BloniganW14,https://doi.org/10.1016/j.jcp.2014.04.027 +Haihu Liu,Phase-field modeling droplet dynamics with soluble surfactants.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#LiuZ10,https://doi.org/10.1016/j.jcp.2010.08.031 +Anupam Gupta,Hybrid Lattice Boltzmann/Finite Difference simulations of viscoelastic multicomponent flows in confined geometries.,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#GuptaSS15,https://doi.org/10.1016/j.jcp.2015.03.006 +Bengt Fornberg,Stabilization of RBF-generated finite difference methods for convective PDEs.,2011,230,J. Comput. Physics,6,db/journals/jcphy/jcphy230.html#FornbergL11,https://doi.org/10.1016/j.jcp.2010.12.014 +Souvik Pal,Symmetry boundary condition in dissipative particle dynamics.,2015,292,J. Comput. Physics,,db/journals/jcphy/jcphy292.html#PalLLHM15,https://doi.org/10.1016/j.jcp.2015.03.025 +Feng Chen,A GPU parallelized spectral method for elliptic equations in rectangular domains.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#ChenS13,https://doi.org/10.1016/j.jcp.2013.05.031 +Bert Seynaeve,Fourier mode analysis of multigrid methods for partial differential equations with random coefficients.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#SeynaeveRNV07,https://doi.org/10.1016/j.jcp.2006.12.011 +Lei Tang,Improving Godunov-type reconstructions for simulation of vortex-dominated flows.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#TangB06,https://doi.org/10.1016/j.jcp.2005.08.030 +Masashi Noda,Massively-parallel electron dynamics calculations in real-time and real-space: Toward applications to nanostructures of more than ten-nanometers in size.,2014,265,J. Comput. Physics,,db/journals/jcphy/jcphy265.html#NodaINYB14,https://doi.org/10.1016/j.jcp.2014.02.006 +Stéphanie Chaillat,FaIMS: A fast algorithm for the inverse medium problem with multiple frequencies and multiple sources for the scalar Helmholtz equation.,2012,231,J. Comput. Physics,12,db/journals/jcphy/jcphy231.html#ChaillatB12,https://doi.org/10.1016/j.jcp.2012.02.006 +Gaël Poëtte,Non intrusive iterative stochastic spectral representation with application to compressible gas dynamics.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#PoetteL12,https://doi.org/10.1016/j.jcp.2011.12.038 +Jean-Luc Guermond,Nonlinear magnetohydrodynamics in axisymmetric heterogeneous domains using a Fourier/finite element technique and an interior penalty method.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#GuermondLLN09,https://doi.org/10.1016/j.jcp.2008.12.026 +Michael Dumbser,High order ADER schemes for a unified first order hyperbolic formulation of continuum mechanics: Viscous heat-conducting fluids and elastic solids.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#DumbserPRZ16,https://doi.org/10.1016/j.jcp.2016.02.015 +Frank Schilder,Computing Arnol**d tongue scenarios.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#SchilderP07,https://doi.org/10.1016/j.jcp.2006.05.041 +Honghua Dai,A time domain collocation method for studying the aeroelasticity of a two dimensional airfoil with a structural nonlinearity.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#DaiYYA14,https://doi.org/10.1016/j.jcp.2014.03.063 +Robert W. Anderson,High-order local maximum principle preserving (MPP) discontinuous Galerkin finite element method for the transport equation.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#AndersonDKKLRT17,https://doi.org/10.1016/j.jcp.2016.12.031 +Nima Tofighi,An incompressible smoothed particle hydrodynamics method for the motion of rigid bodies in fluids.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#TofighiORFY15,https://doi.org/10.1016/j.jcp.2015.05.015 +Michael Messner,A fast Galerkin method for parabolic space-time boundary integral equations.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#MessnerST14,https://doi.org/10.1016/j.jcp.2013.10.029 +D. Krishna Kishor,A Legendre spectral element model for sloshing and acoustic analysis in nearly incompressible fluids.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#KishorGG10,https://doi.org/10.1016/j.jcp.2009.12.008 +Ying Xu,A Numerical procedure for solving 2D phase-field model problems.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#XuMT06,https://doi.org/10.1016/j.jcp.2006.03.007 +Luca Magri,Stability analysis of thermo-acoustic nonlinear eigenproblems in annular combustors. Part I. Sensitivity.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#MagriBJ16,https://doi.org/10.1016/j.jcp.2016.07.032 +Leopold Grinberg,A new domain decomposition method with overlapping patches for ultrascale simulations: Application to biological flows.,2010,229,J. Comput. Physics,15,db/journals/jcphy/jcphy229.html#GrinbergK10,https://doi.org/10.1016/j.jcp.2010.04.014 +Huan Lei,Time-dependent and outflow boundary conditions for Dissipative Particle Dynamics.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#LeiFK11,https://doi.org/10.1016/j.jcp.2011.02.003 +Sheng Xu,A boundary condition capturing immersed interface method for 3D rigid objects in a flow.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#Xu11,https://doi.org/10.1016/j.jcp.2011.05.019 +Manuel J. Castro,Why many theories of shock waves are necessary: Convergence error in formally path-consistent schemes.,2008,227,J. Comput. Physics,17,db/journals/jcphy/jcphy227.html#CastroLMP08,https://doi.org/10.1016/j.jcp.2008.05.012 +Francesca Fusi,An adaptive strategy on the error of the objective functions for uncertainty-based derivative-free optimization.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#FusiC16,https://doi.org/10.1016/j.jcp.2016.01.004 +Xing Meng,Classical and semirelativistic magnetohydrodynamics with anisotropic ion pressure.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#MengTSG12,https://doi.org/10.1016/j.jcp.2011.12.042 +José A. Carrillo,Numerical simulation of nonlinear continuity equations by evolving diffeomorphisms.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#CarrilloRW16,https://doi.org/10.1016/j.jcp.2016.09.040 +Oscar P. Bruno,A high-order integral solver for scalar problems of diffraction by screens and apertures in three-dimensional space.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#BrunoL13,https://doi.org/10.1016/j.jcp.2013.06.022 +Huafei Sun,On the impact of triangle shapes for boundary layer problems using high-order finite element discretization.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#SunDH12,https://doi.org/10.1016/j.jcp.2011.09.018 +Shengtai Li,A fourth-order divergence-free method for MHD flows.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#Li10a,https://doi.org/10.1016/j.jcp.2010.06.044 +Pao-Hsiung Chiu,An effective explicit pressure gradient scheme implemented in the two-level non-staggered grids for incompressible Navier-Stokes equations.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#ChiuSL08,https://doi.org/10.1016/j.jcp.2007.12.007 +Jesse Capecelatro,An Euler-Lagrange strategy for simulating particle-laden flows.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#CapecelatroD13,https://doi.org/10.1016/j.jcp.2012.12.015 +Thomas Toulorge,CFL Conditions for Runge-Kutta discontinuous Galerkin methods on triangular grids.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#ToulorgeD11,https://doi.org/10.1016/j.jcp.2011.02.040 +Xiao-Kun Wei,An efficient higher-order PML in WLP-FDTD method for time reversed wave simulation.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#WeiSOW16,https://doi.org/10.1016/j.jcp.2016.06.032 +Yoann Cheny,The LS-STAG method: A new immersed boundary/level-set method for the computation of incompressible viscous flows in complex moving geometries with good conservation properties.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#ChenyB10,https://doi.org/10.1016/j.jcp.2009.10.007 +Fabian Denner,Compressive VOF method with skewness correction to capture sharp interfaces on arbitrary meshes.,2014,279,J. Comput. Physics,,db/journals/jcphy/jcphy279.html#DennerW14,https://doi.org/10.1016/j.jcp.2014.09.002 +Maya A. Petkova,Fast and accurate Voronoi density gridding from Lagrangian hydrodynamics data.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#PetkovaLB18,https://doi.org/10.1016/j.jcp.2017.10.024 +Alessandro Veneziani,ALADINS: An ALgebraic splitting time ADaptive solver for the Incompressible Navier-Stokes equations.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#VenezianiV13,https://doi.org/10.1016/j.jcp.2012.11.049 +Jan S. Hesthaven,Non-intrusive reduced order modeling of nonlinear problems using neural networks.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#HesthavenU18,https://doi.org/10.1016/j.jcp.2018.02.037 +Irene M. Gamba,Spectral-Lagrangian methods for collisional models of non-equilibrium statistical states.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#GambaT09,https://doi.org/10.1016/j.jcp.2008.09.033 +Lee Lindblom,Solving partial differential equations numerically on manifolds with arbitrary spatial topologies.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#LindblomS13,https://doi.org/10.1016/j.jcp.2013.02.031 +Diego Samuel Rodrigues,A semi-implicit finite element method for viscous lipid membranes.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#RodriguesAMB15,https://doi.org/10.1016/j.jcp.2015.06.010 +Markus Kästner,Isogeometric analysis of the Cahn-Hilliard equation - a convergence study.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#KastnerMB16,https://doi.org/10.1016/j.jcp.2015.10.047 +Piotr K. Smolarkiewicz,A consistent framework for discrete integrations of soundproof and compressible PDEs of atmospheric dynamics.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#SmolarkiewiczKW14,https://doi.org/10.1016/j.jcp.2014.01.031 +Hasan Almanasreh,hp-Cloud approximation of the Dirac eigenvalue problem: The way of stability.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#Almanasreh14,https://doi.org/10.1016/j.jcp.2014.03.046 +Lukas Einkemmer,A splitting approach for the Kadomtsev-Petviashvili equation.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#EinkemmerO15,https://doi.org/10.1016/j.jcp.2015.07.024 +C. D. Riyanti,A parallel multigrid-based preconditioner for the 3D heterogeneous high-frequency Helmholtz equation.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#RiyantiKEVOPM07,https://doi.org/10.1016/j.jcp.2007.03.033 +Brandon E. Merrill,A spectrally accurate method for overlapping grid solution of incompressible Navier-Stokes equations.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#MerrillPFL16,https://doi.org/10.1016/j.jcp.2015.11.057 +Andrew V. Terekhov,The stabilization of high-order multistep schemes for the Laguerre one-way wave equation solver.,2018,368,J. Comput. Physics,,db/journals/jcphy/jcphy368.html#Terekhov18,https://doi.org/10.1016/j.jcp.2018.04.059 +Bram van Es,Finite-volume scheme for anisotropic diffusion.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#EsKB16,https://doi.org/10.1016/j.jcp.2015.11.041 +R. David Evans,Multi-scenario modelling of uncertainty in stochastic chemical systems.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#EvansR14,https://doi.org/10.1016/j.jcp.2014.05.028 +Xiaogang Deng,Further studies on Geometric Conservation Law and applications to high-order finite difference schemes with stationary grids.,2013,239,J. Comput. Physics,,db/journals/jcphy/jcphy239.html#DengMMLTZ13,https://doi.org/10.1016/j.jcp.2012.12.002 +Ravi Samtaney,A method to simulate linear stability of impulsively accelerated density interfaces in ideal-MHD and gas dynamics.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#Samtaney09,https://doi.org/10.1016/j.jcp.2009.05.042 +N. I. Shvetsov-Shilovski,Stable and efficient momentum-space solutions of the time-dependent Schrödinger equation for one-dimensional atoms in strong laser fields.,2014,279,J. Comput. Physics,,db/journals/jcphy/jcphy279.html#Shvetsov-ShilovskiR14,https://doi.org/10.1016/j.jcp.2014.09.006 +Dinshaw S. Balsara,Three dimensional HLL Riemann solver for conservation laws on structured meshes* Application to Euler and magnetohydrodynamic flows.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#Balsara15,https://doi.org/10.1016/j.jcp.2015.03.056 +Ludvig af Klinteberg,A fast integral equation method for solid particles in viscous flow using quadrature by expansion.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#KlintebergT16,https://doi.org/10.1016/j.jcp.2016.09.006 +Abbas Fakhari,Diffuse interface modeling of three-phase contact line dynamics on curved boundaries: A lattice Boltzmann model for large density and viscosity ratios.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#FakhariB17,https://doi.org/10.1016/j.jcp.2017.01.025 +Hui Ji,Wavelet frame based scene reconstruction from range data.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#JiSX10,https://doi.org/10.1016/j.jcp.2009.11.024 +Swej Shah,The multiscale restriction smoothed basis method for fractured porous media (F-MsRSB).,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#ShahMTLH16,https://doi.org/10.1016/j.jcp.2016.05.001 +Emilie Marchandise,A quadrature-free discontinuous Galerkin method for the level set equation.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#MarchandiseRC06,https://doi.org/10.1016/j.jcp.2005.07.006 +Raul Borsche,ADER schemes and high order coupling on networks of hyperbolic conservation laws.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#BorscheK14,https://doi.org/10.1016/j.jcp.2014.05.042 +Eric E. Keaveny,Fluctuating force-coupling method for simulations of colloidal suspensions.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#Keaveny14,https://doi.org/10.1016/j.jcp.2014.03.013 +Zhao-peng Hao,A fourth-order approximation of fractional derivatives with its applications.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#HaoSC15,https://doi.org/10.1016/j.jcp.2014.10.053 +Laura B. Lurati,Padé-Gegenbauer suppression of Runge phenomenon in the diagonal limit of Gegenbauer approximations.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#Lurati07,https://doi.org/10.1016/j.jcp.2006.06.032 +Donghyun You,Analysis of stability and accuracy of finite-difference schemes on a skewed mesh.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#YouMWM06,https://doi.org/10.1016/j.jcp.2005.08.007 +Vaibhav Joshi,An adaptive variational procedure for the conservative and positivity preserving Allen-Cahn phase-field model.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#JoshiJ18a,https://doi.org/10.1016/j.jcp.2018.04.022 +Anirudh Rana,A robust numerical method for the R13 equations of rarefied gas dynamics: Application to lid driven cavity.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#RanaTS13,https://doi.org/10.1016/j.jcp.2012.11.023 +Mario Ohlberger,Approximation of skewed interfaces with tensor-based model reduction procedures: Application to the reduced basis hierarchical model reduction approach.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#OhlbergerS16,https://doi.org/10.1016/j.jcp.2016.06.021 +François Doisneau,A semi-Lagrangian transport method for kinetic problems with application to dense-to-dilute polydisperse reacting spray flows.,2017,329,J. Comput. Physics,,db/journals/jcphy/jcphy329.html#DoisneauAO17,https://doi.org/10.1016/j.jcp.2016.10.042 +Jeremiah U. Brackbill,Boundary conditions for Maxwell solvers.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#Brackbill08,https://doi.org/10.1016/j.jcp.2008.03.046 +Jing Li,Mesh refinement for uncertainty quantification through model reduction.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#LiS15,https://doi.org/10.1016/j.jcp.2014.09.021 +Heyu Wang,Efficient computation of dendritic growth with r-adaptive finite element methods.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#WangLT08,https://doi.org/10.1016/j.jcp.2008.02.016 +Hogenrich Damanik,A monolithic FEM-multigrid solver for non-isothermal incompressible flow on general meshes.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#DamanikHOT09,https://doi.org/10.1016/j.jcp.2009.02.024 +Qiang Chen 0005,Canonical symplectic structure and structure-preserving geometric algorithms for Schrödinger-Maxwell systems.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#ChenQLXZHW17,https://doi.org/10.1016/j.jcp.2017.08.033 +Philip J. Archer,A new non-overlapping concept to improve the Hybrid Particle Level Set method in multi-phase fluid flows.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#ArcherB15,https://doi.org/10.1016/j.jcp.2014.11.018 +Mohsen Zayernouri,Fractional spectral collocation methods for linear and nonlinear variable order FPDEs.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#ZayernouriK15,https://doi.org/10.1016/j.jcp.2014.12.001 +Kelsey L. DiPietro,Monge-Ampére simulation of fourth order PDEs in two dimensions with application to elastic-electrostatic contact problems.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#DiPietroL17,https://doi.org/10.1016/j.jcp.2017.08.032 +K. R. Srinivasan,Thermomechanical modeling of regressing heterogeneous solid propellants.,2009,228,J. Comput. Physics,21,db/journals/jcphy/jcphy228.html#SrinivasanMGJ09,https://doi.org/10.1016/j.jcp.2009.07.003 +Rodney O. Fox,Numerical simulation of spray coalescence in an Eulerian framework: Direct quadrature method of moments and multi-fluid method.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#FoxLM08,https://doi.org/10.1016/j.jcp.2007.10.028 +Ahmed H. Elsheikh,An iterative stochastic ensemble method for parameter estimation of subsurface flow models.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#ElsheikhWH13,https://doi.org/10.1016/j.jcp.2013.01.047 +Roland Glowinski,Wall-driven incompressible viscous flow in a two-dimensional semi-circular cavity.,2006,216,J. Comput. Physics,1,db/journals/jcphy/jcphy216.html#GlowinskiGP06,https://doi.org/10.1016/j.jcp.2005.11.021 +Michael Dumbser,Quadrature-free non-oscillatory finite volume schemes on unstructured meshes for nonlinear hyperbolic systems.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#DumbserKTT07,https://doi.org/10.1016/j.jcp.2007.04.004 +Ashish Pathak,A three-dimensional volume-of-fluid method for reconstructing and advecting three-material interfaces forming contact lines.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#PathakR16,https://doi.org/10.1016/j.jcp.2015.11.062 +Edward W. Larsen,Properties of the implicitly time-differenced equations of thermal radiation transport.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#LarsenKM13,https://doi.org/10.1016/j.jcp.2012.11.034 +L. M. Yang,Development of discrete gas kinetic scheme for simulation of 3D viscous incompressible and compressible flows.,2016,319,J. Comput. Physics,,db/journals/jcphy/jcphy319.html#YangSWS16,https://doi.org/10.1016/j.jcp.2016.05.018 +Antonio J. Gil,An enhanced Immersed Structural Potential Method for fluid-structure interaction.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#GilCBH13,https://doi.org/10.1016/j.jcp.2013.05.011 +Duncan A. Lockerby,Time-step coupling for hybrid simulations of multiscale flows.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#LockerbyDBR13,https://doi.org/10.1016/j.jcp.2012.11.032 +R. J. Dilz,A domain integral equation approach for simulating two dimensional transverse electric scattering in a layered medium with a Gabor frame discretization.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#DilzB17,https://doi.org/10.1016/j.jcp.2017.05.034 +S. Peluchon,A robust implicit-explicit acoustic-transport splitting scheme for two-phase flows.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#PeluchonGM17,https://doi.org/10.1016/j.jcp.2017.03.019 +Jean-Luc Guermond,Fast estimation from above of the maximum wave speed in the Riemann problem for the Euler equations.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#GuermondP16,https://doi.org/10.1016/j.jcp.2016.05.054 +Jens Berg,Stable Robin solid wall boundary conditions for the Navier-Stokes equations.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#BergN11,https://doi.org/10.1016/j.jcp.2011.06.027 +Arthur E. Turrell,Self-consistent inclusion of classical large-angle Coulomb collisions in plasma Monte Carlo simulations.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#TurrellSR15,https://doi.org/10.1016/j.jcp.2015.06.034 +You Ling,Selection of model discrepancy priors in Bayesian calibration.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#LingMM14,https://doi.org/10.1016/j.jcp.2014.08.005 +Daniel J. Price,Smoothed particle hydrodynamics and magnetohydrodynamics.,2012,231,J. Comput. Physics,3,db/journals/jcphy/jcphy231.html#Price12,https://doi.org/10.1016/j.jcp.2010.12.011 +James Bremer,On the nonoscillatory phase function for Legendre's differential equation.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#BremerR17,https://doi.org/10.1016/j.jcp.2017.08.041 +James Shaw,Multidimensional method-of-lines transport for atmospheric flows over steep terrain using arbitrary meshes.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#ShawWMD17,https://doi.org/10.1016/j.jcp.2017.04.061 +Haiyan Jiang,Accuracy of the Frensley inflow boundary condition for Wigner equations in simulating resonant tunneling diodes.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#JiangCT11,https://doi.org/10.1016/j.jcp.2010.12.002 +Christoph Lohmann,Flux-corrected transport algorithms for continuous Galerkin methods based on high order Bernstein finite elements.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#LohmannKSM17,https://doi.org/10.1016/j.jcp.2017.04.059 +S. Janakiraman,A novel variable resolution global spectral method on the sphere.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#JanakiramanNM12,https://doi.org/10.1016/j.jcp.2011.12.023 +Xiaoxiao Chen,A flexible numerical approach for quantification of epistemic uncertainty.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#ChenPX13,https://doi.org/10.1016/j.jcp.2013.01.018 +Terence J. O'Kane,ENSO regimes and the late 1970's climate shift: The role of synoptic weather and South Pacific ocean spiciness.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#OKaneMCO14,https://doi.org/10.1016/j.jcp.2013.10.058 +Takanobu Amano,A robust method for handling low density regions in hybrid simulations for collisionless plasmas.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#AmanoHS14,https://doi.org/10.1016/j.jcp.2014.06.048 +M. S. Rosin,Multilevel Monte Carlo simulation of Coulomb collisions.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#RosinRDCC14,https://doi.org/10.1016/j.jcp.2014.05.030 +Anshul Mittal,A parabolic velocity-decomposition method for wind turbines.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#MittalBST17,https://doi.org/10.1016/j.jcp.2016.10.038 +Jean-François Lemieux,A second-order accurate in time IMplicit-EXplicit (IMEX) integration scheme for sea ice dynamics.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#LemieuxKLG14,https://doi.org/10.1016/j.jcp.2014.01.010 +David J. Munk,Topology optimisation of micro fluidic mixers considering fluid-structure interactions with a coupled Lattice Boltzmann algorithm.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#MunkKVSP17,https://doi.org/10.1016/j.jcp.2017.08.008 +Benoît Fiorina,An artificial nonlinear diffusivity method for supersonic reacting flows with shocks.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#FiorinaL07,https://doi.org/10.1016/j.jcp.2006.07.020 +Tobias Jahnke,Solving chemical master equations by adaptive wavelet compression.,2010,229,J. Comput. Physics,16,db/journals/jcphy/jcphy229.html#JahnkeU10,https://doi.org/10.1016/j.jcp.2010.04.015 +T. Gillebaart,Adaptive radial basis function mesh deformation using data reduction.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#GillebaartBZB16,https://doi.org/10.1016/j.jcp.2016.05.036 +Yan-Fei Jing,A comparative study of iterative solutions to linear systems arising in quantum mechanics.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#JingHDC10,https://doi.org/10.1016/j.jcp.2010.07.034 +Ziemowit Malecha,A multiscale algorithm for simulating spatially-extended Langmuir circulation dynamics.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#MalechaCJ14,https://doi.org/10.1016/j.jcp.2013.07.003 +Haibo Huang,A mass-conserving axisymmetric multiphase lattice Boltzmann method and its application in simulation of bubble rising.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#HuangHL14,https://doi.org/10.1016/j.jcp.2014.03.028 +Wei Cai,Extending the fast multipole method to charges inside or outside a dielectric sphere.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#CaiDJ07,https://doi.org/10.1016/j.jcp.2006.10.019 +Andrei I. Tolstykh,Development of arbitrary-order multioperators-based schemes for parallel calculations. 1.: Higher-than-fifth-order approximations to convection terms.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#Tolstykh07,https://doi.org/10.1016/j.jcp.2007.03.021 +Ching-Shan Chou,High order residual distribution conservative finite difference WENO schemes for convection-diffusion steady state problems on non-smooth meshes.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#ChouS07,https://doi.org/10.1016/j.jcp.2006.11.006 +Wenwu Chen,Parallel implementation of efficient preconditioned linear solver for grid-based applications in chemical physics. II: QMR linear solver.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#ChenP06a,https://doi.org/10.1016/j.jcp.2006.03.031 +Siwei Duo,A novel and accurate finite difference method for the fractional Laplacian and the fractional Poisson problem.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#DuoWZ18,https://doi.org/10.1016/j.jcp.2017.11.011 +Yongcheng Zhou,High order matched interface and boundary method for elliptic equations with discontinuous coefficients and singular sources.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#ZhouZFW06,https://doi.org/10.1016/j.jcp.2005.07.022 +Yong Cao,A splitting extrapolation for solving nonlinear elliptic equations with d-quadratic finite elements.,2009,228,J. Comput. Physics,1,db/journals/jcphy/jcphy228.html#CaoHL09,https://doi.org/10.1016/j.jcp.2008.09.003 +Luis Chacón,An asymptotic-preserving semi-Lagrangian algorithm for the time-dependent anisotropic heat transport equation.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#ChacondH14,https://doi.org/10.1016/j.jcp.2014.04.049 +Severin Strobl,Exact calculation of the overlap volume of spheres and mesh elements.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#StroblFP16,https://doi.org/10.1016/j.jcp.2016.02.003 +A. Paredes,A penalization technique to model plasma facing components in a tokamak with temperature variations.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#ParedesBCSSGT14,https://doi.org/10.1016/j.jcp.2014.05.025 +Zheng-Fang Zhang,A boundary piecewise constant level set method for boundary control of eigenvalue optimization problems.,2011,230,J. Comput. Physics,2,db/journals/jcphy/jcphy230.html#ZhangC11,https://doi.org/10.1016/j.jcp.2010.10.005 +Daniel R. Reynolds,A fully implicit numerical method for single-fluid resistive magnetohydrodynamics.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#ReynoldsSW06,https://doi.org/10.1016/j.jcp.2006.03.022 +Rafael T. Guiraldello,The Multiscale Robin Coupled Method for flows in porous media.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#GuiraldelloASPB18,https://doi.org/10.1016/j.jcp.2017.11.002 +Matthew McCormick,Simulating left ventricular fluid-solid mechanics through the cardiac cycle under LVAD support.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#McCormickNKS13,https://doi.org/10.1016/j.jcp.2012.08.008 +Heng-fei Ding,High-order algorithms for Riesz derivative and their applications (II).,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#DingLC15,https://doi.org/10.1016/j.jcp.2014.06.007 +Arthur Stück,Dual-consistency study for Green-Gauss gradient schemes in an unstructured Navier-Stokes method.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#Stuck17,https://doi.org/10.1016/j.jcp.2017.08.043 +Zixuan Wang,Sparse grid discontinuous Galerkin methods for high-dimensional elliptic equations.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#WangTGC16,https://doi.org/10.1016/j.jcp.2016.03.005 +Brian C. Vermeire,Adaptive IMEX schemes for high-order unstructured methods.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#VermeireN15,https://doi.org/10.1016/j.jcp.2014.09.016 +David I. Ketcheson,Runge-Kutta methods with minimum storage implementations.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#Ketcheson10,https://doi.org/10.1016/j.jcp.2009.11.006 +Dan Erik Petersen,Block tridiagonal matrix inversion and fast transmission calculations.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#PetersenSHSS08,https://doi.org/10.1016/j.jcp.2007.11.035 +Thomas Y. Hou,Mathematical modeling and simulation of aquatic and aerial animal locomotion.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#HouSW07,https://doi.org/10.1016/j.jcp.2007.02.015 +Xiang Yang,Efficient relaxed-Jacobi smoothers for multigrid on parallel computers.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#YangM17,https://doi.org/10.1016/j.jcp.2016.12.010 +A. H. Sheikh,Accelerating the shifted Laplace preconditioner for the Helmholtz equation by multilevel deflation.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#SheikhLRNV16,https://doi.org/10.1016/j.jcp.2016.06.025 +Xue-lei Lin,A fast accurate approximation method with multigrid solver for two-dimensional fractional sub-diffusion equation.,2016,323,J. Comput. Physics,,db/journals/jcphy/jcphy323.html#LinLNS16,https://doi.org/10.1016/j.jcp.2016.07.031 +Kartikey Asthana,Non-linear stabilization of high-order Flux Reconstruction schemes via Fourier-spectral filtering.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#AsthanaLJ15,https://doi.org/10.1016/j.jcp.2015.09.041 +Ramanathan Vishnampet,A practical discrete-adjoint method for high-fidelity compressible turbulence simulations.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#VishnampetBF15,https://doi.org/10.1016/j.jcp.2015.01.009 +Jérôme Breil,A cell-centered diffusion scheme on two-dimensional unstructured meshes.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#BreilM07,https://doi.org/10.1016/j.jcp.2006.10.025 +Jeremy O. McCaslin,A localized re-initialization equation for the conservative level set method.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#McCaslinD14,https://doi.org/10.1016/j.jcp.2014.01.017 +Vincent Deledicque,An exact Riemann solver for compressible two-phase flow models containing non-conservative products.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#DeledicqueP07,https://doi.org/10.1016/j.jcp.2006.07.025 +H. Ye,Compact difference scheme for distributed-order time-fractional diffusion-wave equation on bounded domains.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#YeLA15,https://doi.org/10.1016/j.jcp.2015.06.025 +Grady B. Wright,Stable computations with flat radial basis functions using vector-valued rational approximations.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#WrightF17,https://doi.org/10.1016/j.jcp.2016.11.030 +John A. Evans,Isogeometric divergence-conforming B-splines for the unsteady Navier-Stokes equations.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#EvansH13,https://doi.org/10.1016/j.jcp.2013.01.006 +A. Dumon,Proper general decomposition (PGD) for the resolution of Navier-Stokes equations.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#DumonAA11,https://doi.org/10.1016/j.jcp.2010.11.010 +Matthew R. Smith,An improved Quiet Direct Simulation method for Eulerian fluids using a second-order scheme.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#SmithCWJC09,https://doi.org/10.1016/j.jcp.2008.12.013 +Chung-Gang Li,An implicit turbulence model for low-Mach Roe scheme using truncated Navier-Stokes equations.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#LiT17,https://doi.org/10.1016/j.jcp.2017.05.032 +Juan-Chen Huang,Implicit preconditioned WENO scheme for steady viscous flow computation.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#HuangLY09,https://doi.org/10.1016/j.jcp.2008.09.017 +Chih-Yung Wen,Extension of CE/SE method to non-equilibrium dissociating flows.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#WenMS18,https://doi.org/10.1016/j.jcp.2017.12.005 +Muhammad Mohebujjaman,Energy balance and mass conservation in reduced order models of fluid flows.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#MohebujjamanRXI17,https://doi.org/10.1016/j.jcp.2017.06.019 +Vincent M. Laboure,Implicit filtered PN for high-energy density thermal radiation transport using discontinuous Galerkin finite elements.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#LaboureMH16,https://doi.org/10.1016/j.jcp.2016.05.046 +Christopher J. Arthurs,Efficient simulation of cardiac electrical propagation using high-order finite elements II: Adaptive p-version.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#ArthursBK13,https://doi.org/10.1016/j.jcp.2013.07.011 +Pierre-Alain Gremaud,On the computation of steady hopper flows III: Model comparisons.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#GremaudMS06,https://doi.org/10.1016/j.jcp.2006.03.032 +Antonio Turiel,Numerical methods for the estimation of multifractal singularity spectra on sampled data: A comparative study.,2006,216,J. Comput. Physics,1,db/journals/jcphy/jcphy216.html#TurielVG06,https://doi.org/10.1016/j.jcp.2005.12.004 +Yongbo Deng,Combination of topology optimization and optimal control method.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#DengLLW14,https://doi.org/10.1016/j.jcp.2013.09.033 +Christian Obrecht,High-performance implementations and large-scale validation of the link-wise artificial compressibility method.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#ObrechtAKR14,https://doi.org/10.1016/j.jcp.2014.06.062 +Philipp Rauschenberger,A Volume-of-Fluid method with interface reconstruction for ice growth in supercooled water.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#RauschenbergerW15,https://doi.org/10.1016/j.jcp.2014.10.037 +Zhenning Cai,An h-adaptive mesh method for Boltzmann-BGK/hydrodynamics coupling.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#CaiL10,https://doi.org/10.1016/j.jcp.2009.10.050 +Q. Douasbin,Delayed-time domain impedance boundary conditions (D-TDIBC).,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#DouasbinSSP18,https://doi.org/10.1016/j.jcp.2018.05.003 +Jiannong Fang,A regularized Lagrangian finite point method for the simulation of incompressible viscous flows.,2008,227,J. Comput. Physics,20,db/journals/jcphy/jcphy227.html#FangP08,https://doi.org/10.1016/j.jcp.2008.06.031 +Kailiang Wu,Sequential function approximation on arbitrarily distributed point sets.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#WuX18,https://doi.org/10.1016/j.jcp.2017.10.020 +Ethan J. Kubatko,Time step restrictions for Runge-Kutta discontinuous Galerkin methods on triangular grids.,2008,227,J. Comput. Physics,23,db/journals/jcphy/jcphy227.html#KubatkoDW08,https://doi.org/10.1016/j.jcp.2008.07.026 +Stelios Varoutis,Application of the integro-moment method to steady-state two-dimensional rarefied gas flows subject to boundary induced discontinuities.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#VaroutisVS08,https://doi.org/10.1016/j.jcp.2008.03.008 +Frieder Lörcher,An explicit discontinuous Galerkin scheme with local time-stepping for general unsteady diffusion equations.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#LorcherGM08,https://doi.org/10.1016/j.jcp.2008.02.015 +S. Busto,A projection hybrid high order finite volume/finite element method for incompressible turbulent flows.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#BustoFTV18,https://doi.org/10.1016/j.jcp.2017.10.004 +Sudarshan Kumar K,A finite volume method for a two-phase multicomponent polymer flooding.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#KCG14,https://doi.org/10.1016/j.jcp.2014.07.014 +Ju Zhang,A high-order incompressible flow solver with WENO.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#ZhangJ09,https://doi.org/10.1016/j.jcp.2008.12.009 +Jialin Hong,Explicit multi-symplectic methods for Klein-Gordon-Schrödinger equations.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#HongJL09,https://doi.org/10.1016/j.jcp.2009.02.006 +Cristiano De Michele,Simulating hard rigid bodies.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#Michele10,https://doi.org/10.1016/j.jcp.2010.01.002 +Wenjun Kou,A continuum mechanics-based musculo-mechanical model for esophageal transport.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#KouGPKP17,https://doi.org/10.1016/j.jcp.2017.07.025 +Jin Seok Park,Multi-dimensional limiting process for hyperbolic conservation laws on unstructured grids.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#ParkYK10,https://doi.org/10.1016/j.jcp.2009.10.011 +Wanho Lee,Localized axial Green's function method for the convection-diffusion equations in arbitrary domains.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#LeeK14,https://doi.org/10.1016/j.jcp.2014.06.050 +Kai Gao,A high-order multiscale finite-element method for time-domain acoustic-wave modeling.,2018,360,J. Comput. Physics,,db/journals/jcphy/jcphy360.html#GaoFC18,https://doi.org/10.1016/j.jcp.2018.01.032 +Ratnesh K. Shukla,Very high-order compact finite difference schemes on non-uniform grids for incompressible Navier-Stokes equations.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#ShuklaTZ07,https://doi.org/10.1016/j.jcp.2006.11.007 +Huazhong Tang,A note on the conservative schemes for the Euler equations.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#TangL06,https://doi.org/10.1016/j.jcp.2006.03.035 +Hatem Touil,Direct and large-eddy simulation of turbulent flows on composite multi-resolution grids by the lattice Boltzmann method.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#TouilRL14,https://doi.org/10.1016/j.jcp.2013.07.037 +Amir Nejat,Effect of discretization order on preconditioning and convergence of a high-order unstructured Newton-GMRES solver for the Euler equations.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#NejatO08,https://doi.org/10.1016/j.jcp.2007.10.024 +Eric T. Chung,Cluster-based generalized multiscale finite element method for elliptic PDEs with random coefficients.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#ChungELZ18,https://doi.org/10.1016/j.jcp.2018.05.041 +Alfonso Caiazzo,A numerical investigation of velocity-pressure reduced order models for incompressible flows.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#CaiazzoIJS14,https://doi.org/10.1016/j.jcp.2013.12.004 +Ignace Bogaert,A low frequency stable plane wave addition theorem.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#BogaertO09,https://doi.org/10.1016/j.jcp.2008.10.022 +H. R. Ghazizadeh,Explicit and implicit finite difference schemes for fractional Cattaneo equation.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#GhazizadehMA10,https://doi.org/10.1016/j.jcp.2010.05.039 +Nandan Gokhale,A dimensionally split Cartesian cut cell method for hyperbolic conservation laws.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#GokhaleNK18,https://doi.org/10.1016/j.jcp.2018.03.005 +Oriano Bottauscio,Comparison of multiscale models for eddy current computation in granular magnetic materials.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#BottauscioM13,https://doi.org/10.1016/j.jcp.2013.06.037 +Hidekazu Ikeno,Spherical Bessel transform via exponential sum approximation of spherical Bessel function.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#Ikeno18,https://doi.org/10.1016/j.jcp.2017.11.016 +Donald J. Estep,Fast and reliable methods for determining the evolution of uncertain parameters in differential equations.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#EstepN06,https://doi.org/10.1016/j.jcp.2005.08.024 +François Vilar,Positivity-preserving cell-centered Lagrangian schemes for multi-material compressible flows: From first-order to high-orders. Part II: The two-dimensional case.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#VilarSM16a,https://doi.org/10.1016/j.jcp.2016.01.037 +José G. Aguilar,Adjoint-based sensitivity analysis of low-order thermoacoustic networks using a wave-based approach.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#AguilarMJ17,https://doi.org/10.1016/j.jcp.2017.04.013 +Hua Y. Geng,Accelerating ab initio path integral molecular dynamics with multilevel sampling of potential surface.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#Geng15,https://doi.org/10.1016/j.jcp.2014.12.007 +Zhu Heitman,On the existence of nonoscillatory phase functions for second order ordinary differential equations in the high-frequency regime.,2015,290,J. Comput. Physics,,db/journals/jcphy/jcphy290.html#HeitmanBR15,https://doi.org/10.1016/j.jcp.2015.02.028 +Michael Dumbser,A new efficient formulation of the HLLEM Riemann solver for general conservative and non-conservative hyperbolic systems.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#DumbserB16,https://doi.org/10.1016/j.jcp.2015.10.014 +Gregory Beylkin,Fast convolution with the free space Helmholtz Green's function.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#BeylkinKM09,https://doi.org/10.1016/j.jcp.2008.12.027 +Florian Beyer 0001,A spectral solver for evolution problems with spatial S3-topology.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#Beyer09,https://doi.org/10.1016/j.jcp.2009.05.037 +F. P. Martins,A numerical study of the Kernel-conformation transformation for transient viscoelastic fluid flows.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#MartinsOAA15,https://doi.org/10.1016/j.jcp.2015.08.038 +Paul J. Turinsky,"Special issue on the ""Consortium for Advanced Simulation of Light Water Reactors Research and Development Progress"".",2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#TurinskyM17,https://doi.org/10.1016/j.jcp.2017.01.028 +Gabriel D. Weymouth,Conservative Volume-of-Fluid method for free-surface simulations on Cartesian-grids.,2010,229,J. Comput. Physics,8,db/journals/jcphy/jcphy229.html#WeymouthY10,https://doi.org/10.1016/j.jcp.2009.12.018 +George E. Karniadakis,Uncertainty quantification in simulation science.,2006,217,J. Comput. Physics,1,db/journals/jcphy/jcphy217.html#KarniadakisG06,https://doi.org/10.1016/j.jcp.2006.06.009 +Jia-Le Zhang,A GPU-accelerated implicit meshless method for compressible flows.,2018,360,J. Comput. Physics,,db/journals/jcphy/jcphy360.html#ZhangMCC18,https://doi.org/10.1016/j.jcp.2018.01.037 +Zhe Li,An immersed boundary-lattice Boltzmann method for single- and multi-component fluid flows.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#LiFDP16,https://doi.org/10.1016/j.jcp.2015.10.026 +Vadim Dyadechko,Reconstruction of multi-material interfaces from moment data.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#DyadechkoS08,https://doi.org/10.1016/j.jcp.2007.12.029 +Ali Ahmadian,Tau method for the numerical solution of a fuzzy fractional kinetic model and its application to the oil palm frond as a promising source of xylose.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#AhmadianSBAY15,https://doi.org/10.1016/j.jcp.2015.03.011 +Shiwei Zhou,Level-set based topology optimization for electromagnetic dipole antenna design.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#ZhouLL10,https://doi.org/10.1016/j.jcp.2010.05.030 +Carlo de Falco,Quantum-corrected drift-diffusion models: Solution fixed point map and finite element approximation.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#FalcoJS09,https://doi.org/10.1016/j.jcp.2008.11.010 +Shlomy Shitrit,An algebraic multigrid solver for transonic flow problems.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#ShitritSG11,https://doi.org/10.1016/j.jcp.2010.11.034 +Ping Lin,An adaptive homotopy multi-grid method for molecule orientations of high dimensional liquid crystals.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#LinR07,https://doi.org/10.1016/j.jcp.2007.03.009 +Dean S. Oliver,Minimization for conditional simulation: Relationship to optimal transport.,2014,265,J. Comput. Physics,,db/journals/jcphy/jcphy265.html#Oliver14,https://doi.org/10.1016/j.jcp.2014.01.048 +Satoshi Ii,An interface capturing method with a continuous function: The THINC method on unstructured triangular and tetrahedral meshes.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#IiXX14,https://doi.org/10.1016/j.jcp.2013.11.034 +Mary Catherine A. Kropinski,Fast integral equation methods for the modified Helmholtz equation.,2011,230,J. Comput. Physics,2,db/journals/jcphy/jcphy230.html#KropinskiQ11,https://doi.org/10.1016/j.jcp.2010.09.030 +Noma Park,Analysis of numerical errors in large eddy simulation using statistical closure theory.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#ParkM07,https://doi.org/10.1016/j.jcp.2006.07.016 +Matthias Messner,Fast directional multilevel summation for oscillatory kernels based on Chebyshev interpolation.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#MessnerSD12,https://doi.org/10.1016/j.jcp.2011.09.027 +Tiangang Cui,Dimension-independent likelihood-informed MCMC.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#CuiLM16,https://doi.org/10.1016/j.jcp.2015.10.008 +Baskar Ganapathysubramanian,A non-linear dimension reduction methodology for generating data-driven stochastic input models.,2008,227,J. Comput. Physics,13,db/journals/jcphy/jcphy227.html#GanapathysubramanianZ08,https://doi.org/10.1016/j.jcp.2008.03.023 +M. Gallezot,A modal approach based on perfectly matched layers for the forced response of elastic open waveguides.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#GallezotTL18,https://doi.org/10.1016/j.jcp.2017.12.017 +Shinjiro Miyawaki,A 4DCT imaging-based breathing lung model with relative hysteresis.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#MiyawakiCHL16,https://doi.org/10.1016/j.jcp.2016.08.039 +Phani Motamarri,Higher-order adaptive finite-element methods for Kohn-Sham density functional theory.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#MotamarriNLKG13,https://doi.org/10.1016/j.jcp.2013.06.042 +Jörn Zimmerling,A Lanczos model-order reduction technique to efficiently simulate electromagnetic wave propagation in dispersive media.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#ZimmerlingWUR16,https://doi.org/10.1016/j.jcp.2016.03.057 +Xuerui Mao,Calculation of global optimal initial and boundary perturbations for the linearised incompressible Navier-Stokes equations.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#MaoBS13,https://doi.org/10.1016/j.jcp.2012.10.049 +Massimiliano Ferronato,A fully coupled 3-D mixed finite element model of Biot consolidation.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#FerronatoCG10,https://doi.org/10.1016/j.jcp.2010.03.018 +Weiwei Wang,Multiscale model of platelet translocation and collision.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#WangMK13,https://doi.org/10.1016/j.jcp.2012.08.014 +Alexander D. Klose,Light transport in biological tissue based on the simplified spherical harmonics equations.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#KloseL06,https://doi.org/10.1016/j.jcp.2006.07.007 +Chan-Hee Park,Are upwind techniques in multi-phase flow models necessary?,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#ParkBWK11,https://doi.org/10.1016/j.jcp.2011.07.030 +Gordon L. Olson,Alternate closures for radiation transport using Legendre polynomials in 1D and spherical harmonics in 2D.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#Olson12,https://doi.org/10.1016/j.jcp.2011.12.013 +Changhe Qiao,Analytical decoupling techniques for fully implicit reservoir simulation.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#QiaoWXZ17,https://doi.org/10.1016/j.jcp.2017.02.037 +Ming-Chih Lai,An immersed boundary method for interfacial flows with insoluble surfactant.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#LaiTH08,https://doi.org/10.1016/j.jcp.2008.04.014 +Benjamin Rembold,A multiblock joint PDF finite-volume hybrid algorithm for the computation of turbulent flows in complex geometries.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#RemboldJ06,https://doi.org/10.1016/j.jcp.2006.05.002 +Karl Rupp,Matrix compression for spherical harmonics expansions of the Boltzmann transport equation for semiconductors.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#RuppJG10,https://doi.org/10.1016/j.jcp.2010.08.008 +Seongwon Kang,DNS of buoyancy-dominated turbulent flows on a bluff body using the immersed boundary method.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#KangIH09,https://doi.org/10.1016/j.jcp.2008.12.037 +Lei Ye,A gyrokinetic continuum code based on the numerical Lie transform (NLT) method.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#YeXXDW16,https://doi.org/10.1016/j.jcp.2016.03.068 +Akhil Mulloth,High accuracy solution of bi-directional wave propagation in continuum mechanics.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#MullothSHSS15,https://doi.org/10.1016/j.jcp.2015.05.040 +Petros Koumoutsakos,Multiscale stochastic simulations of chemical reactions with regulated scale separation.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#KoumoutsakosF13,https://doi.org/10.1016/j.jcp.2012.11.030 +Gang Bao,Real-time adaptive finite element solution of time-dependent Kohn-Sham equation.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#BaoHL15,https://doi.org/10.1016/j.jcp.2014.10.052 +E. Panagiotou,The linking number in systems with Periodic Boundary Conditions.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#Panagiotou15,https://doi.org/10.1016/j.jcp.2015.07.058 +Eric B. Lindgren,An integral equation approach to calculate electrostatic interactions in many-body dielectric systems.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#LindgrenSPMSB18,https://doi.org/10.1016/j.jcp.2018.06.015 +Gianluca Vignoli,ADER schemes for the shallow water equations in channel with irregular bottom elevation.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#VignoliTT08,https://doi.org/10.1016/j.jcp.2007.11.006 +Rossella Arcucci,On the variational data assimilation problem solving and sensitivity analysis.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#ArcucciDPTM17,https://doi.org/10.1016/j.jcp.2017.01.034 +Lawrence K. Forbes,Computing unstable periodic waves at the interface of two inviscid fluids in uniform vertical flow.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#ForbesCT07,https://doi.org/10.1016/j.jcp.2006.06.010 +Hiroshi Terashima,A front-tracking/ghost-fluid method for fluid interfaces in compressible flows.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#TerashimaT09,https://doi.org/10.1016/j.jcp.2009.02.023 +Kanchan Sarkar,Evolutionary optimization of PAW data-sets for accurate high pressure simulations.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#SarkarTHW17,https://doi.org/10.1016/j.jcp.2017.06.032 +Thierry Sousbie,ColDICE: A parallel Vlasov-Poisson solver using moving adaptive simplicial tessellation.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#SousbieC16,https://doi.org/10.1016/j.jcp.2016.05.048 +V. Daru,A numerical method for the simulation of low Mach number liquid-gas flows.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#DaruQDM10,https://doi.org/10.1016/j.jcp.2010.08.013 +Akira Kasahara,Initial-value approach to study the inertio-gravity waves without the 'traditional approximation'.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#Kasahara07,https://doi.org/10.1016/j.jcp.2007.03.006 +Hong Luo,A hybrid Cartesian grid and gridless method for compressible flows.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#LuoBL06,https://doi.org/10.1016/j.jcp.2005.10.002 +Stéphane Gaudreault,An efficient exponential time integration method for the numerical solution of the shallow water equations on the sphere.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#GaudreaultP16,https://doi.org/10.1016/j.jcp.2016.07.012 +Takashi Shiroto,Finite-volume-concept-based Padé-type filters.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#ShirotoKO17,https://doi.org/10.1016/j.jcp.2017.08.027 +Elena V. Akhmatskaya,A comparison of generalized hybrid Monte Carlo methods with and without momentum flip.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#AkhmatskayaBR09,https://doi.org/10.1016/j.jcp.2008.12.014 +Tomoyuki Hanawa,Improving shock irregularities based on the characteristics of the MHD equations.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#HanawaMM08,https://doi.org/10.1016/j.jcp.2008.05.006 +Mosayeb Shams,A numerical model of two-phase flow at the micro-scale using the volume-of-fluid method.,2018,357,J. Comput. Physics,,db/journals/jcphy/jcphy357.html#ShamsRBB18,https://doi.org/10.1016/j.jcp.2017.12.027 +Huaxiong Huang,An immersed boundary method for restricted diffusion with permeable interfaces.,2009,228,J. Comput. Physics,15,db/journals/jcphy/jcphy228.html#HuangST09,https://doi.org/10.1016/j.jcp.2009.04.040 +Jarrod D. Edwards,Nonlinear variants of the TR/BDF2 method for thermal radiative diffusion.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#EdwardsMK11,https://doi.org/10.1016/j.jcp.2010.10.035 +Yoshiaki Abe,Conservative metric evaluation for high-order finite difference schemes with the GCL identities on moving and deforming grids.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#AbeINF13,https://doi.org/10.1016/j.jcp.2012.08.031 +Ching-Shan Chou,High order residual distribution conservative finite difference WENO schemes for steady state problems on non-smooth meshes.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#ChouS06,https://doi.org/10.1016/j.jcp.2005.10.007 +F.-L. Yang,A novel mesh regeneration algorithm for 2D FEM simulations of flows with moving boundary.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#YangCY11,https://doi.org/10.1016/j.jcp.2011.01.008 +Nicholas Zabaras,Modelling dendritic solidification with melt convection using the extended finite element method.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#ZabarasGT06,https://doi.org/10.1016/j.jcp.2006.02.002 +Miloslav Feistauer,On a robust discontinuous Galerkin technique for the solution of compressible flow.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#FeistauerK07,https://doi.org/10.1016/j.jcp.2007.01.035 +Fabian Denner,TVD differencing on three-dimensional unstructured meshes with monotonicity-preserving correction of mesh skewness.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#DennerW15a,https://doi.org/10.1016/j.jcp.2015.06.008 +Weixuan Li,An adaptive ANOVA-based PCKF for high-dimensional nonlinear inverse modeling.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#LiLZ14,https://doi.org/10.1016/j.jcp.2013.11.019 +Andrew W. Cook,Effects of heat conduction on artificial viscosity methods for shock capturing.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#Cook13,https://doi.org/10.1016/j.jcp.2013.08.003 +Chen Tang,High-order predictor-corrector of exponential fitting for the N-body problems.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#TangWYC06,https://doi.org/10.1016/j.jcp.2005.09.028 +Daniel Hartmann,Differential equation based constrained reinitialization for level set methods.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#HartmannMS08,https://doi.org/10.1016/j.jcp.2008.03.040 +Ye Chen,An adaptive continuation-multigrid method for the balanced vortex model.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#ChenF10,https://doi.org/10.1016/j.jcp.2009.11.032 +Yan Peng,Application of multi-block approach in the immersed boundary-lattice Boltzmann method for viscous fluid flows.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#Peng0CNL06,https://doi.org/10.1016/j.jcp.2006.02.017 +Yutao Sun,The finite volume local evolution Galerkin method for solving the hyperbolic conservation laws.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#SunR09,https://doi.org/10.1016/j.jcp.2009.04.001 +Bedrich Sousedík,Stochastic Galerkin methods for the steady-state Navier-Stokes equations.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#SousedikE16,https://doi.org/10.1016/j.jcp.2016.04.013 +Yann Guevel,Automatic detection and branch switching methods for steady bifurcation in fluid mechanics.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#GuevelBC11,https://doi.org/10.1016/j.jcp.2011.02.004 +Mikhail Z. Tokar,Numerical solution of momentum balance equations for plasmas with two ion species.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#Tokar11,https://doi.org/10.1016/j.jcp.2011.01.013 +Thomas T. Bringley,Validation of a simple method for representing spheres and slender bodies in an immersed boundary method for Stokes flow on an unbounded domain.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#BringleyP08,https://doi.org/10.1016/j.jcp.2008.01.048 +J. Thomas Beale,A proof that a discrete delta function is second-order accurate.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#Beale08,https://doi.org/10.1016/j.jcp.2007.11.004 +Ramses van Zon,Numerical implementation of the exact dynamics of free rigid bodies.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#ZonS07,https://doi.org/10.1016/j.jcp.2006.11.019 +Stefano Berrone,Flow simulations in porous media with immersed intersecting fractures.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#BerronePS17,https://doi.org/10.1016/j.jcp.2017.05.049 +David Amsallem,High-order accurate difference schemes for the Hodgkin-Huxley equations.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#AmsallemN13,https://doi.org/10.1016/j.jcp.2013.06.035 +Yuval Harness,The null-field method: A reconstruction kernel approach.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#HarnessD13,https://doi.org/10.1016/j.jcp.2013.04.011 +J. Michael Owen,Arbitrary Lagrangian Eulerian remap treatments consistent with staggered compatible total energy conserving Lagrangian methods.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#OwenS14,https://doi.org/10.1016/j.jcp.2014.05.023 +Song Li,"Erratum to ""A fast algorithm for sparse matrix computations related to inversion"" [J. Comput. Physics 242 (2013) 915-945].",2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#LiWD13a,https://doi.org/10.1016/j.jcp.2013.06.001 +Ricardo H. Nochetto,A hybrid variational front tracking-level set mesh generator for problems exhibiting large deformations and topological changes.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#NochettoW10,https://doi.org/10.1016/j.jcp.2010.04.035 +Ahmad S. Abushaikha,Fully implicit mixed-hybrid finite-element discretization for general purpose subsurface reservoir simulation.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#AbushaikhaVT17,https://doi.org/10.1016/j.jcp.2017.06.034 +Andrew R. Winters,A uniquely defined entropy stable matrix dissipation operator for high Mach number ideal MHD and compressible Euler simulations.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#WintersDGW17,https://doi.org/10.1016/j.jcp.2016.12.006 +Alexander V. Bobylev,Monte Carlo methods and their analysis for Coulomb collisions in multicomponent plasmas.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#BobylevP13,https://doi.org/10.1016/j.jcp.2013.03.024 +Mehdi Raessi,Advecting normal vectors: A new method for calculating interface normals and curvatures when modeling two-phase flows.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#RaessiMB07,https://doi.org/10.1016/j.jcp.2007.04.023 +Isaías Alonso-Mallo,Time exponential splitting technique for the Klein-Gordon equation with Hagstrom-Warburton high-order absorbing boundary conditions.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#Alonso-MalloP16,https://doi.org/10.1016/j.jcp.2016.02.004 +Giovanni Todarello,Finite-volume goal-oriented mesh adaptation for aerodynamics using functional derivative with respect to nodal coordinates.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#TodarelloVBPD16,https://doi.org/10.1016/j.jcp.2016.02.063 +Patrick T. Greene,Dynamic mesh adaptation for front evolution using discontinuous Galerkin based weighted condition number relaxation.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#GreeneSN17,https://doi.org/10.1016/j.jcp.2017.01.049 +Tania Bakhos,A fast algorithm for parabolic PDE-based inverse problems based on Laplace transforms and flexible Krylov solvers.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#BakhosSK15,https://doi.org/10.1016/j.jcp.2015.07.007 +Natasha Flyer,On the role of polynomials in RBF-FD approximations: I. Interpolation and accuracy.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#FlyerFBB16,https://doi.org/10.1016/j.jcp.2016.05.026 +György Tegze,Advanced operator splitting-based semi-implicit spectral method to solve the binary phase-field crystal equations with variable coefficients.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#TegzeBTPFG09,https://doi.org/10.1016/j.jcp.2008.11.011 +Bharath Ravu,Creating analytically divergence-free velocity fields from grid-based data.,2016,323,J. Comput. Physics,,db/journals/jcphy/jcphy323.html#RavuRMLK16,https://doi.org/10.1016/j.jcp.2016.07.018 +Gábor Tóth,Adaptive numerical algorithms in space weather modeling.,2012,231,J. Comput. Physics,3,db/journals/jcphy/jcphy231.html#TothHSZGFMMNPSGMO12,https://doi.org/10.1016/j.jcp.2011.02.006 +Ken Mattsson,High-fidelity numerical simulation of solitons in the nerve axon.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#MattssonW16,https://doi.org/10.1016/j.jcp.2015.11.007 +Michal Branicki,Filtering skill for turbulent signals for a suite of nonlinear and linear extended Kalman filters.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#BranickiGM12,https://doi.org/10.1016/j.jcp.2011.10.029 +Pengtao Yue,Spontaneous shrinkage of drops and mass conservation in phase-field simulations.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#YueZF07,https://doi.org/10.1016/j.jcp.2006.11.020 +Yu Wang,Boundary condition-enforced immersed boundary-lattice Boltzmann flux solver for thermal flows with Neumann boundary conditions.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#Wang0Y16,https://doi.org/10.1016/j.jcp.2015.11.046 +G. R. Liu,A novel Galerkin-like weakform and a superconvergent alpha finite element method (SαFEM) for mechanics problems using triangular meshes.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#LiuNNX09,https://doi.org/10.1016/j.jcp.2009.02.017 +Johan Meyers,A computational error-assessment of central finite-volume discretizations in large-eddy simulation using a Smagorinsky model.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#MeyersGS07,https://doi.org/10.1016/j.jcp.2007.07.012 +J.-F. Ripoll,A 3-D multiband closure for radiation and neutron transfer moment models.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#RipollW08,https://doi.org/10.1016/j.jcp.2007.08.028 +Stefanos Samaras,Using Raman-lidar-based regularized microphysical retrievals and Aerosol Mass Spectrometer measurements for the characterization of biomass burning aerosols.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#SamarasNBVBLTP15,https://doi.org/10.1016/j.jcp.2015.06.045 +Mulin Cheng,A dynamically bi-orthogonal method for time-dependent stochastic partial differential equations II: Adaptivity and generalizations.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#ChengHZ13,https://doi.org/10.1016/j.jcp.2013.02.020 +Lexing Ying,A high-order 3D boundary integral equation solver for elliptic PDEs in smooth domains.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#YingBZ06,https://doi.org/10.1016/j.jcp.2006.03.021 +J. de Laborderie,Numerical analysis of a high-order unstructured overset grid method for compressible LES of turbomachinery.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#LaborderieDGVWM18,https://doi.org/10.1016/j.jcp.2018.02.045 +Heinrich Voss,Iterative projection methods for computing relevant energy states of a quantum dot.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#Voss06,https://doi.org/10.1016/j.jcp.2006.01.034 +Zydrunas Gimbutas,A fast and stable method for rotating spherical harmonic expansions.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#GimbutasG09,https://doi.org/10.1016/j.jcp.2009.05.014 +A. R. Owens,Energy dependent mesh adaptivity of discontinuous isogeometric discrete ordinate methods with dual weighted residual error estimators.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#OwensKWE17,https://doi.org/10.1016/j.jcp.2017.01.035 +Diego Rossinelli,MRAG-I2D: Multi-resolution adapted grids for remeshed vortex methods on multicore architectures.,2015,288,J. Comput. Physics,,db/journals/jcphy/jcphy288.html#RossinelliHRGBK15,https://doi.org/10.1016/j.jcp.2015.01.035 +Eric E. Keaveny,Applying a second-kind boundary integral equation for surface tractions in Stokes flow.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#KeavenyS11,https://doi.org/10.1016/j.jcp.2010.12.010 +Bo Zhang 0006,Recovering scattering obstacles by multi-frequency phaseless far-field data.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#ZhangZ17,https://doi.org/10.1016/j.jcp.2017.05.022 +Andrea Mentrelli,Asymptotic-preserving scheme for highly anisotropic non-linear diffusion equations.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#MentrelliN12,https://doi.org/10.1016/j.jcp.2012.08.004 +Sergey A. Matveev,Tensor train versus Monte Carlo for the multicomponent Smoluchowski coagulation equation.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#MatveevZTS16,https://doi.org/10.1016/j.jcp.2016.04.025 +Mathieu Coquerelle,A fourth-order accurate curvature computation in a level set framework for two-phase flows subjected to surface tension forces.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#CoquerelleG16,https://doi.org/10.1016/j.jcp.2015.11.014 +Damien Tromeur-Dervout,Choice of initial guess in iterative solution of series of systems arising in fluid flow simulations.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#Tromeur-DervoutV06,https://doi.org/10.1016/j.jcp.2006.03.014 +Wonseok Shin,Choice of the perfectly matched layer boundary condition for frequency-domain Maxwell's equations solvers.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#ShinF12,https://doi.org/10.1016/j.jcp.2012.01.013 +Leonel P. Gonzalez,An effective z-stretching method for paraxial light beam propagation simulations.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#GonzalezGRS08,https://doi.org/10.1016/j.jcp.2008.04.019 +Anthony Chang,Modeling the interaction of biological cells with a solidifying interface.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#ChangDDH07,https://doi.org/10.1016/j.jcp.2007.05.039 +Jeffrey Lee Hellrung Jr.,A second order virtual node method for elliptic problems with interfaces and irregular domains in three dimensions.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#HellrungWST12,https://doi.org/10.1016/j.jcp.2011.11.023 +Fabian Teichert,Improved recursive Green's function formalism for quasi one-dimensional systems with realistic defects.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#TeichertZSS17,https://doi.org/10.1016/j.jcp.2017.01.024 +Xiangxiong Zhang,A curved boundary treatment for discontinuous Galerkin schemes solving time dependent problems.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#Zhang16,https://doi.org/10.1016/j.jcp.2015.12.036 +A. Villa,Implicit tracking for multi-fluid simulations.,2010,229,J. Comput. Physics,16,db/journals/jcphy/jcphy229.html#VillaF10,https://doi.org/10.1016/j.jcp.2010.04.020 +Qian Zhang 0007,Phase field modeling and simulation of three-phase flow on solid surfaces.,2016,319,J. Comput. Physics,,db/journals/jcphy/jcphy319.html#ZhangW16,https://doi.org/10.1016/j.jcp.2016.05.016 +Laurent White,A high-order finite volume remapping scheme for nonuniform grids: The piecewise quartic method (PQM).,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#WhiteA08,https://doi.org/10.1016/j.jcp.2008.04.026 +Zhiwei He,Characteristic-based and interface-sharpening algorithm for high-order simulations of immiscible compressible multi-material flows.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#HeTZG17,https://doi.org/10.1016/j.jcp.2016.12.035 +Jeffrey Willert,Residual Monte Carlo high-order solver for Moment-Based Accelerated Thermal Radiative Transfer equations.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#WillertP14,https://doi.org/10.1016/j.jcp.2014.07.039 +JianHua Yuan,Modeling photonic crystals by boundary integral equations and Dirichlet-to-Neumann maps.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#YuanLA08,https://doi.org/10.1016/j.jcp.2008.01.014 +Zhili Tang,Nash equilibrium and multi criterion aerodynamic optimization.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#TangZ16,https://doi.org/10.1016/j.jcp.2016.03.001 +Junfeng Wang 0004,A compressible high-order unstructured spectral difference code for stratified convection in rotating spherical shells.,2015,290,J. Comput. Physics,,db/journals/jcphy/jcphy290.html#WangLM15,https://doi.org/10.1016/j.jcp.2015.02.047 +Jeffrey K. Wiens,Riemann solver for a kinematic wave traffic model with discontinuous flux.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#WiensSW13,https://doi.org/10.1016/j.jcp.2013.02.024 +Faisal Amlani,An FC-based spectral solver for elastodynamic problems in general three-dimensional domains.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#AmlaniB16,https://doi.org/10.1016/j.jcp.2015.11.060 +Andrew Perrin,An explicit finite difference scheme with spectral boundary conditions for particulate flows.,2008,227,J. Comput. Physics,20,db/journals/jcphy/jcphy227.html#PerrinH08,https://doi.org/10.1016/j.jcp.2008.06.007 +Thomas Y. Hou,An efficient semi-implicit immersed boundary method for the Navier-Stokes equations.,2008,227,J. Comput. Physics,20,db/journals/jcphy/jcphy227.html#HouS08,https://doi.org/10.1016/j.jcp.2008.07.005 +O. Jansen,Tree code for collision detection of large numbers of particles applied to the Breit-Wheeler process.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#JansendRJT18,https://doi.org/10.1016/j.jcp.2017.11.021 +K. Grimich,Spectral properties of high-order residual-based compact schemes for unsteady compressible flows.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#GrimichCL13,https://doi.org/10.1016/j.jcp.2013.06.005 +Sergey L. Gavrilyuk,Modelling wave dynamics of compressible elastic materials.,2008,227,J. Comput. Physics,5,db/journals/jcphy/jcphy227.html#GavrilyukFS08,https://doi.org/10.1016/j.jcp.2007.11.030 +Pouyan Jahangiri,A high-order Monte Carlo algorithm for the direct simulation of Boltzmann equation.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#JahangiriNSA12,https://doi.org/10.1016/j.jcp.2012.02.029 +A. V. Goncharov,Kronecker product approximation of demagnetizing tensors for micromagnetics.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#GoncharovHDS10,https://doi.org/10.1016/j.jcp.2009.12.004 +Hiroaki Nishikawa,A first-order system approach for diffusion equation. I: Second-order residual-distribution schemes.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#Nishikawa07,https://doi.org/10.1016/j.jcp.2007.07.029 +Qin Li,Diffusion approximations and domain decomposition method of linear transport equations: Asymptotics and numerics.,2015,292,J. Comput. Physics,,db/journals/jcphy/jcphy292.html#LiLS15,https://doi.org/10.1016/j.jcp.2015.03.014 +Patrick Gelß,Nearest-neighbor interaction systems in the tensor-train format.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#GelssKMS17,https://doi.org/10.1016/j.jcp.2017.04.007 +Lucia Parussini,Multi-fidelity Gaussian process regression for prediction of random fields.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#ParussiniVPK17,https://doi.org/10.1016/j.jcp.2017.01.047 +Vladimir Druskin,An extended Krylov subspace model-order reduction technique to simulate wave propagation in unbounded domains.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#DruskinRZ14,https://doi.org/10.1016/j.jcp.2014.04.051 +Francisco Guillén-González,On linear schemes for a Cahn-Hilliard diffuse interface model.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#Guillen-GonzalezT13,https://doi.org/10.1016/j.jcp.2012.09.020 +Nan Xiao,Multi-scale computational model of three-dimensional hemodynamics within a deformable full-body arterial network.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#XiaoHF13,https://doi.org/10.1016/j.jcp.2012.09.016 +Christiaan M. Klaij,h-Multigrid for space-time discontinuous Galerkin discretizations of the compressible Navier-Stokes equations.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#KlaijRVV07,https://doi.org/10.1016/j.jcp.2007.08.034 +Robert N. Rieben,An arbitrary Lagrangian-Eulerian discretization of MHD on 3D unstructured grids.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#RiebenWWS07,https://doi.org/10.1016/j.jcp.2007.04.031 +John S. Lowengrub,Numerical simulation of endocytosis: Viscous flow driven by membranes with non-uniformly distributed curvature-inducing molecules.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#LowengrubAA16,https://doi.org/10.1016/j.jcp.2015.12.055 +Jan Zeman,Accelerating a FFT-based solver for numerical homogenization of periodic media by conjugate gradients.,2010,229,J. Comput. Physics,21,db/journals/jcphy/jcphy229.html#ZemanVNM10,https://doi.org/10.1016/j.jcp.2010.07.010 +Federico Domenichini,On the consistency of the direct forcing method in the fractional step solution of the Navier-Stokes equations.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#Domenichini08,https://doi.org/10.1016/j.jcp.2008.03.009 +Jae Hoon Lee,Fast intersections on nested tetrahedrons (FINT): An algorithm for adaptive finite element based distributed parameter estimation.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#LeeJS08,https://doi.org/10.1016/j.jcp.2008.02.008 +Gregor Mitscha-Baude,Adaptive and iterative methods for simulations of nanopores with the PNP-Stokes equations.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#Mitscha-BaudeBT17,https://doi.org/10.1016/j.jcp.2017.02.072 +Zhiguo Yang,Multiphase flows of N immiscible incompressible fluids: An outflow/open boundary condition and algorithm.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#YangD18,https://doi.org/10.1016/j.jcp.2018.04.003 +Hao Song,Modelling of water wave interaction with multiple cylinders of arbitrary shape.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#SongTC10,https://doi.org/10.1016/j.jcp.2009.10.041 +Abdul Majid,Approximate solutions to Poisson-Boltzmann systems with Sobolev gradients.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#MajidS11,https://doi.org/10.1016/j.jcp.2011.03.056 +Stephen M. Guzik,Interpolation methods and the accuracy of lattice-Boltzmann mesh refinement.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#GuzikWCA14,https://doi.org/10.1016/j.jcp.2013.11.037 +Romain Oguic,A parallelized multidomain compact solver for incompressible turbulent flows in cylindrical geometries.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#OguicVP15,https://doi.org/10.1016/j.jcp.2015.08.003 +Simon Marié,Comparison between lattice Boltzmann method and Navier-Stokes high order schemes for computational aeroacoustics.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#MarieRS09,https://doi.org/10.1016/j.jcp.2008.10.021 +David G. Dritschel,The combined Lagrangian advection method.,2010,229,J. Comput. Physics,14,db/journals/jcphy/jcphy229.html#DritschelF10,https://doi.org/10.1016/j.jcp.2010.03.048 +Ngoc Cuong Nguyen,High-order implicit hybridizable discontinuous Galerkin methods for acoustics and elastodynamics.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#NguyenPC11a,https://doi.org/10.1016/j.jcp.2011.01.035 +Maxime Barrault,Efficient parallel resolution of the simplified transport equations in mixed-dual formulation.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#BarraultLRR11,https://doi.org/10.1016/j.jcp.2010.11.047 +Johnwill Keating,A fast algorithm for direct simulation of particulate flows using conforming grids.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#KeatingM13,https://doi.org/10.1016/j.jcp.2013.08.039 +S. Kokh,An anti-diffusive numerical scheme for the simulation of interfaces between compressible fluids by means of a five-equation model.,2010,229,J. Comput. Physics,8,db/journals/jcphy/jcphy229.html#KokhL10,https://doi.org/10.1016/j.jcp.2009.12.003 +Yves Marichal,Immersed interface interpolation schemes for particle-mesh methods.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#MarichalCW16,https://doi.org/10.1016/j.jcp.2016.09.027 +Weiming An,An improved iteration loop for the three dimensional quasi-static particle-in-cell algorithm: QuickPIC.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#AnDMA13,https://doi.org/10.1016/j.jcp.2013.05.020 +Hua Shen,Maximum-principle-satisfying space-time conservation element and solution element scheme applied to compressible multifluids.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#ShenWPS17,https://doi.org/10.1016/j.jcp.2016.10.036 +Fei Zhang,Moving mesh finite element simulation for phase-field modeling of brittle fracture and convergence of Newton's iteration.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#ZhangHLZ18,https://doi.org/10.1016/j.jcp.2017.11.033 +Emmanuel Lorin,Frozen Gaussian approximation based domain decomposition methods for the linear Schrödinger equation beyond the semi-classical regime.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#LorinYA16,https://doi.org/10.1016/j.jcp.2016.02.035 +Mauricio Santillana,Estimating numerical errors due to operator splitting in global atmospheric chemistry models: Transport and chemistry.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#SantillanaZY16,https://doi.org/10.1016/j.jcp.2015.10.052 +Gerjan Hagelaar,How to normalize Maxwell-Boltzmann electrons in transient plasma models.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#Hagelaar07,https://doi.org/10.1016/j.jcp.2007.09.023 +John D. Jakeman,Minimal multi-element stochastic collocation for uncertainty quantification of discontinuous functions.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#JakemanNX13,https://doi.org/10.1016/j.jcp.2013.02.035 +L. D. Angulo,Causal-Path Local Time-Stepping in the discontinuous Galerkin method for Maxwell's equations.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#AnguloATPG14,https://doi.org/10.1016/j.jcp.2013.09.010 +François Vilar,Positivity-preserving cell-centered Lagrangian schemes for multi-material compressible flows: From first-order to high-orders. Part I: The one-dimensional case.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#VilarSM16,https://doi.org/10.1016/j.jcp.2016.02.027 +Marie Billaud Friess,Simulation of sharp interface multi-material flows involving an arbitrary number of components through an extended five-equation model.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#FriessK14,https://doi.org/10.1016/j.jcp.2014.05.012 +Panos Stinis,Stochastic global optimization as a filtering problem.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#Stinis12,https://doi.org/10.1016/j.jcp.2011.11.019 +ángel Rodríguez-Rozas,Non-conforming curved finite element schemes for time-dependent elastic-acoustic coupled problems.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#Rodriguez-Rozas16,https://doi.org/10.1016/j.jcp.2015.10.028 +Jinsong Hua,Energy law preserving C0 finite element schemes for phase field models in two-phase flow computations.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#HuaLLW11,https://doi.org/10.1016/j.jcp.2011.05.013 +Rodrigo C. Moura,Linear dispersion-diffusion analysis and its application to under-resolved turbulence simulations using discontinuous Galerkin spectral/hp methods.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#MouraSP15,https://doi.org/10.1016/j.jcp.2015.06.020 +Rémi Abgrall,Frontiers in Computational Physics: Modeling the Earth System.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#AbgrallSXZ14,https://doi.org/10.1016/j.jcp.2014.04.002 +Zhengzheng Hu,Stable and efficient finite-difference nonlinear-multigrid schemes for the phase field crystal equation.,2009,228,J. Comput. Physics,15,db/journals/jcphy/jcphy228.html#HuWWL09,https://doi.org/10.1016/j.jcp.2009.04.020 +Rafail V. Abramov,The multidimensional moment-constrained maximum entropy problem: A BFGS algorithm with constraint scaling.,2009,228,J. Comput. Physics,1,db/journals/jcphy/jcphy228.html#Abramov09,https://doi.org/10.1016/j.jcp.2008.08.020 +David M. Hall,Numerical method for hydrodynamic transport of inhomogeneous polymer melts.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#HallLFB07,https://doi.org/10.1016/j.jcp.2006.10.027 +Kenny Jolley,Modelling transient heat conduction in solids at multiple length and time scales: A coupled non-equilibrium molecular dynamics/continuum approach.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#JolleyG09,https://doi.org/10.1016/j.jcp.2009.06.035 +Peter Huthwaite,Accelerated finite element elastodynamic simulations using the GPU.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#Huthwaite14,https://doi.org/10.1016/j.jcp.2013.10.017 +Alon Spira,Geometric curve flows on parametric manifolds.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#SpiraK07,https://doi.org/10.1016/j.jcp.2006.09.008 +Neeraj Sarna,Entropy stable Hermite approximation of the linearised Boltzmann equation for inflow and outflow boundaries.,2018,369,J. Comput. Physics,,db/journals/jcphy/jcphy369.html#SarnaT18,https://doi.org/10.1016/j.jcp.2018.04.050 +Bernard Parent,Generalized Ohm's law and potential equation in computational weakly-ionized plasmadynamics.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#ParentSM11,https://doi.org/10.1016/j.jcp.2010.11.012 +Olivier Heuzé,Dissipative issue of high-order shock capturing schemes with non-convex equations of state.,2009,228,J. Comput. Physics,3,db/journals/jcphy/jcphy228.html#HeuzeJJ09,https://doi.org/10.1016/j.jcp.2008.10.005 +Bezalel Finkelstein,Finite difference time domain dispersion reduction schemes.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#FinkelsteinK07,https://doi.org/10.1016/j.jcp.2006.06.016 +Nuno F. Loureiro,An iterative semi-implicit scheme with robust damping.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#LoureiroH08,https://doi.org/10.1016/j.jcp.2008.01.015 +Pietro De Palma,Residual distribution schemes for advection and advection-diffusion problems on quadrilateral cells.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#PalmaPRN06,https://doi.org/10.1016/j.jcp.2006.02.003 +Yen Liu,Spectral (finite) volume method for conservation laws on unstructured grids V: Extension to three-dimensional systems.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#LiuVW06,https://doi.org/10.1016/j.jcp.2005.06.024 +Jianfeng Lu 0001,A cubic scaling algorithm for excited states calculations in particle-particle random phase approximation.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#LuY17,https://doi.org/10.1016/j.jcp.2017.03.055 +Shingyu Leung,A grid based particle method for moving interface problems.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#LeungZ09,https://doi.org/10.1016/j.jcp.2009.01.005 +K. B. Nakshatrala,On dual Schur domain decomposition method for linear first-order transient problems.,2009,228,J. Comput. Physics,21,db/journals/jcphy/jcphy228.html#NakshatralaPH09,https://doi.org/10.1016/j.jcp.2009.07.016 +Jared Crean,Entropy-stable summation-by-parts discretization of the Euler equations on general curved elements.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#CreanHFZC18,https://doi.org/10.1016/j.jcp.2017.12.015 +He Huang,Improve the efficiency of the Cartesian tensor based fast multipole method for Coulomb interaction using the traces.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#HuangLLCZ18,https://doi.org/10.1016/j.jcp.2018.05.028 +Nicolas Bertin,A FFT-based formulation for discrete dislocation dynamics in heterogeneous media.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#BertinC18,https://doi.org/10.1016/j.jcp.2017.11.020 +L. M. Yang,Circular function-based gas-kinetic scheme for simulation of inviscid compressible flows.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#YangSWZL13,https://doi.org/10.1016/j.jcp.2013.08.025 +John W. Barrett 0001,On stable parametric finite element methods for the Stefan problem and the Mullins-Sekerka problem with applications to dendritic growth.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#BarrettGN10,https://doi.org/10.1016/j.jcp.2010.04.039 +Eyal Arian,Analytic Hessian derivation for the quasi-one-dimensional Euler equations.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#ArianI09,https://doi.org/10.1016/j.jcp.2008.09.021 +Jin Liu 0002,Molecular simulations of electroosmotic flows in rough nanochannels.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#LiuWCR10,https://doi.org/10.1016/j.jcp.2010.06.042 +Kai Fan,A generalized discontinuous Galerkin (GDG) method for Schrödinger equations with nonsmooth solutions.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#FanCJ08,https://doi.org/10.1016/j.jcp.2007.10.023 +Moon Soo Lee,Direct numerical simulation of incompressible multiphase flow with phase change.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#LeeRA17,https://doi.org/10.1016/j.jcp.2017.04.073 +Francois Hermeline,A finite volume method for approximating 3D diffusion operators on general meshes.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#Hermeline09,https://doi.org/10.1016/j.jcp.2009.05.002 +R. Shamasundar,Improving the accuracy of mass-lumped finite-elements in the first-order formulation of the wave equation by defect correction.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#ShamasundarM16,https://doi.org/10.1016/j.jcp.2016.07.006 +Kamiar Zamzamian,Multidimensional upwinding for incompressible flows based on characteristics.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#ZamzamianR08,https://doi.org/10.1016/j.jcp.2008.06.018 +Tao Cai,Numerical simulation of core convection by a multi-layer semi-implicit spherical spectral method.,2011,230,J. Comput. Physics,24,db/journals/jcphy/jcphy230.html#CaiCD11,https://doi.org/10.1016/j.jcp.2011.08.014 +Markus Wahlsten,Robust boundary conditions for stochastic incompletely parabolic systems of equations.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#WahlstenN18,https://doi.org/10.1016/j.jcp.2018.04.060 +Yumin Lin,Finite difference/spectral approximations for the time-fractional diffusion equation.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#LinX07,https://doi.org/10.1016/j.jcp.2007.02.001 +Nail K. Yamaleev,A systematic methodology for constructing high-order energy stable WENO schemes.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#YamaleevC09a,https://doi.org/10.1016/j.jcp.2009.03.002 +J. C. Kok,A high-order low-dispersion symmetry-preserving finite-volume method for compressible flow on curvilinear grids.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#Kok09,https://doi.org/10.1016/j.jcp.2009.06.015 +Qifeng Liao,Reduced basis ANOVA methods for partial differential equations with high-dimensional random inputs.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#LiaoL16,https://doi.org/10.1016/j.jcp.2016.04.029 +Benjamin J. Sturdevant,An implicit 8*f particle-in-cell method with sub-cycling and orbit averaging for Lorentz ions.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#SturdevantPCH16,https://doi.org/10.1016/j.jcp.2016.04.036 +B.-F. Feng,An operator splitting method for the Degasperis-Procesi equation.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#FengL09,https://doi.org/10.1016/j.jcp.2009.07.022 +Lina Chang,A reconstruction algorithm with flexible stencils for anisotropic diffusion equations on 2D skewed meshes.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#Chang14,https://doi.org/10.1016/j.jcp.2013.09.012 +D. F. Gordon,Solution of relativistic quantum optics problems using clusters of graphical processing units.,2014,267,J. Comput. Physics,,db/journals/jcphy/jcphy267.html#GordonHH14,https://doi.org/10.1016/j.jcp.2014.02.028 +Victor Troshin,Proper orthogonal decomposition of flow-field in non-stationary geometry.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#TroshinSST16,https://doi.org/10.1016/j.jcp.2016.02.006 +Olivier Desjardins,A spectrally refined interface approach for simulating multiphase flows.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#DesjardinsP09,https://doi.org/10.1016/j.jcp.2008.11.005 +Paolo Luzzatto-Fegiz,An efficient and general numerical method to compute steady uniform vortices.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#Luzzatto-FegizW11,https://doi.org/10.1016/j.jcp.2011.04.035 +Vladimir V. Shashkin,3D conservative cascade semi-Lagrangian transport scheme using reduced latitude-longitude grid (CCS-RG).,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#ShashkinFT16,https://doi.org/10.1016/j.jcp.2015.11.005 +Indrajit G. Roy,On computing first and second order derivative spectra.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#Roy15,https://doi.org/10.1016/j.jcp.2015.04.015 +Alexandros Adam,Higher-order conservative interpolation between control-volume meshes: Application to advection and multiphase flow problems with dynamic mesh adaptivity.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#AdamPPSXFPMJ16,https://doi.org/10.1016/j.jcp.2016.05.058 +Sha Liu,Unified gas-kinetic scheme for diatomic molecular simulations in all flow regimes.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#LiuYXZ14,https://doi.org/10.1016/j.jcp.2013.11.030 +Sarah Hank,Modeling hyperelasticity in non-equilibrium multiphase flows.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#HankFM17,https://doi.org/10.1016/j.jcp.2016.11.001 +Lijian Tan,Multiscale modeling of alloy solidification using a database approach.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#TanZ07,https://doi.org/10.1016/j.jcp.2007.08.016 +Fang-Bao Tian,An efficient immersed boundary-lattice Boltzmann method for the hydrodynamic interaction of elastic filaments.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#TianLZLL11,https://doi.org/10.1016/j.jcp.2011.05.028 +Uliana Alekseeva,Hydrodynamics in adaptive resolution particle simulations: Multiparticle collision dynamics.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#AlekseevaWS16,https://doi.org/10.1016/j.jcp.2016.02.065 +Michael Strickland,A parallel algorithm for solving the 3d Schrödinger equation.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#StricklandY10,https://doi.org/10.1016/j.jcp.2010.04.032 +James A. Rossmanith,A class of residual distribution schemes and their relation to relaxation systems.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#Rossmanith08,https://doi.org/10.1016/j.jcp.2008.07.007 +Ibrahim H. Al-Lehyani,Coarse-grained simulation of transmembrane peptides in the gel phase.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#Al-LehyaniGBMA13,https://doi.org/10.1016/j.jcp.2012.12.014 +Y. Mor-Yossef,Unconditionally stable time marching scheme for Reynolds stress models.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#Mor-Yossef14,https://doi.org/10.1016/j.jcp.2014.07.047 +Eric Johnsen,Implementation of WENO schemes in compressible multicomponent flow problems.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#JohnsenC06,https://doi.org/10.1016/j.jcp.2006.04.018 +Kyle A. Brucker,Efficient algorithm for simulating homogeneous turbulent shear flow without remeshing.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#BruckerIVC07,https://doi.org/10.1016/j.jcp.2006.10.018 +Alireza Valizadeh,A study of solid wall models for weakly compressible SPH.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#ValizadehM15,https://doi.org/10.1016/j.jcp.2015.07.033 +Jun Lai,A fast and robust solver for the scattering from a layered periodic structure containing multi-particle inclusions.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#LaiKB15,https://doi.org/10.1016/j.jcp.2015.06.005 +David Pardo,Simulation of wireline sonic logging measurements acquired with Borehole-Eccentered tools using a high-order adaptive finite-element method.,2011,230,J. Comput. Physics,16,db/journals/jcphy/jcphy230.html#PardoMMTMC11,https://doi.org/10.1016/j.jcp.2011.04.028 +Andrew K. Henrick,Simulations of pulsating one-dimensional detonations with true fifth order accuracy.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#HenrickAP06,https://doi.org/10.1016/j.jcp.2005.08.013 +Michele La Rocca,A multispeed Discrete Boltzmann Model for transcritical 2D shallow water flows.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#RoccaMPS15,https://doi.org/10.1016/j.jcp.2014.12.029 +M. K. Cameron,Estimation of reactive fluxes in gradient stochastic systems using an analogy with electric circuits.,2013,247,J. Comput. Physics,,db/journals/jcphy/jcphy247.html#Cameron13,https://doi.org/10.1016/j.jcp.2013.03.054 +Yunqing Huang,Superconvergence of mixed finite element approximations to 3-D Maxwell's equations in metamaterials.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#HuangLYS11,https://doi.org/10.1016/j.jcp.2011.07.025 +Francis X. Giraldo,A study of spectral element and discontinuous Galerkin methods for the Navier-Stokes equations in nonhydrostatic mesoscale atmospheric modeling: Equation sets and test cases.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#GiraldoR08,https://doi.org/10.1016/j.jcp.2007.12.009 +J. W. Haverkort,Implementation of the full viscoresistive magnetohydrodynamic equations in a nonlinear finite element code.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#HaverkortBHPK16,https://doi.org/10.1016/j.jcp.2016.04.007 +Mark A. Goffin,Goal-based angular adaptivity applied to a wavelet-based discretisation of the neutral particle transport equation.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#GoffinBDPSS15,https://doi.org/10.1016/j.jcp.2014.10.063 +Yongbin Ge,Multigrid method and fourth-order compact difference discretization scheme with unequal meshsizes for 3D poisson equation.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#Ge10,https://doi.org/10.1016/j.jcp.2010.04.048 +Hua Shen,Robust high-order space-time conservative schemes for solving conservation laws on hybrid meshes.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#ShenWLZ15,https://doi.org/10.1016/j.jcp.2014.10.023 +Andreas Papoutsakis,An efficient Adaptive Mesh Refinement (AMR) algorithm for the Discontinuous Galerkin method: Applications for the computation of compressible two-phase flows.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#PapoutsakisSBDL18,https://doi.org/10.1016/j.jcp.2018.02.048 +Mowei Cheng,An efficient algorithm for solving the phase field crystal model.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#ChengW08,https://doi.org/10.1016/j.jcp.2008.03.012 +Weizhu Bao,A generalized-Laguerre-Hermite pseudospectral method for computing symmetric and central vortex states in Bose-Einstein condensates.,2008,227,J. Comput. Physics,23,db/journals/jcphy/jcphy227.html#BaoS08,https://doi.org/10.1016/j.jcp.2008.07.017 +Siyang Zhong,A controllable canonical form implementation of time domain impedance boundary conditions for broadband aeroacoustic computation.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#ZhongZH16,https://doi.org/10.1016/j.jcp.2016.03.002 +Maximiliano Ujevic,Solving procedure for a 25-diagonal coefficient matrix: Direct numerical solutions of the three-dimensional linear Fokker-Planck equation.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#UjevicL06,https://doi.org/10.1016/j.jcp.2005.11.004 +Helmut Harbrecht,Combination technique based k-th moment analysis of elliptic problems with random diffusion.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#HarbrechtPS13,https://doi.org/10.1016/j.jcp.2013.06.013 +Qing Pan,Isogeometric finite element approximation of minimal surfaces based on extended loop subdivision.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#PanCX17,https://doi.org/10.1016/j.jcp.2017.04.030 +Antonio Marquina,Diffusion front capturing schemes for a class of Fokker-Planck equations: Application to the relativistic heat equation.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#Marquina10,https://doi.org/10.1016/j.jcp.2009.12.014 +Tony W. H. Sheu,Development of a wavenumber-preserving scheme for solving Maxwell's equations in curvilinear non-staggered grids.,2013,247,J. Comput. Physics,,db/journals/jcphy/jcphy247.html#SheuML13,https://doi.org/10.1016/j.jcp.2013.03.062 +Rémi Abgrall,A one-time truncate and encode multiresolution stochastic framework.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#AbgrallCG14,https://doi.org/10.1016/j.jcp.2013.08.006 +Yuzhi Sun,Spectral (finite) volume method for conservation laws on unstructured grids VI: Extension to viscous flow.,2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#SunWL06,https://doi.org/10.1016/j.jcp.2005.10.019 +Richard J. Thompson,A discontinuous wave-in-cell numerical scheme for hyperbolic conservation laws.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#ThompsonM15,https://doi.org/10.1016/j.jcp.2015.06.047 +Lukas Exl,Fast stray field computation on tensor grids.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#ExlABGRS12,https://doi.org/10.1016/j.jcp.2011.12.030 +Gregor J. Gassner,Split form nodal discontinuous Galerkin schemes with summation-by-parts property for the compressible Euler equations.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#GassnerWK16,https://doi.org/10.1016/j.jcp.2016.09.013 +Jun Luo,Curvature boundary condition for a moving contact line.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#LuoHA16a,https://doi.org/10.1016/j.jcp.2016.01.024 +Yang Xiang 0002,An active contour model for image segmentation based on elastic interaction.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#XiangCY06,https://doi.org/10.1016/j.jcp.2006.03.026 +Paolo Valentini,A combined Event-Driven/Time-Driven molecular dynamics algorithm for the simulation of shock waves in rarefied gases.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#ValentiniS09,https://doi.org/10.1016/j.jcp.2009.08.026 +Zhaoyuan Wang,A new volume-of-fluid method with a constructed distance function on general structured grids.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#WangYS12,https://doi.org/10.1016/j.jcp.2012.01.022 +Gaurav Anand,Stochastic modeling of evaporating sprays within a consistent hybrid joint PDF framework.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#AnandJ09,https://doi.org/10.1016/j.jcp.2008.11.022 +Jongho Lee,Sources of spurious force oscillations from an immersed boundary method for moving-body problems.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#LeeKCY11,https://doi.org/10.1016/j.jcp.2011.01.004 +Qiqi Wang,A Monte Carlo method for solving unsteady adjoint equations.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#WangGSEM08,https://doi.org/10.1016/j.jcp.2008.03.006 +Jeremy Horwitz,Accurate calculation of Stokes drag for point-particle tracking in two-way coupled flows.,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#HorwitzM16,https://doi.org/10.1016/j.jcp.2016.04.034 +Johan Winges,Higher-order brick-tetrahedron hybrid method for Maxwell's equations in time domain.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#WingesR16,https://doi.org/10.1016/j.jcp.2016.05.063 +Vamsi Spandan,A parallel interaction potential approach coupled with the immersed boundary method for fully resolved simulations of deformable interfaces and membranes.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#SpandanMOLQTV17,https://doi.org/10.1016/j.jcp.2017.07.036 +Per-Gunnar Martinsson,A fast direct solver for scattering problems involving elongated structures.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#MartinssonR07,https://doi.org/10.1016/j.jcp.2006.06.037 +Matthias Wiesenberger,Streamline integration as a method for two-dimensional elliptic grid generation.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#WiesenbergerHE17,https://doi.org/10.1016/j.jcp.2017.03.056 +Iain R. Moyles,A numerical framework for singular limits of a class of reaction diffusion problems.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#MoylesW15,https://doi.org/10.1016/j.jcp.2015.07.053 +Ehsan Roohi,A generalized form of the Bernoulli Trial collision scheme in DSMC: Derivation and evaluation.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#RoohiSSE18,https://doi.org/10.1016/j.jcp.2017.10.033 +Frédérique Le Louër,Spectrally accurate numerical solution of hypersingular boundary integral equations for three-dimensional electromagnetic wave scattering problems.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#Louer14a,https://doi.org/10.1016/j.jcp.2014.07.022 +Yang Yang 0014,Discontinuous Galerkin method for Krause's consensus models and pressureless Euler equations.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#YangWS13,https://doi.org/10.1016/j.jcp.2013.06.015 +Piotr Boronski,Poloidal-toroidal decomposition in a finite cylinder. I: Influence matrices for the magnetohydrodynamic equations.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#BoronskiT07,https://doi.org/10.1016/j.jcp.2007.08.023 +Chenglong Zhang,A conservative scheme for Vlasov Poisson Landau modeling collisional plasmas.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#ZhangG17,https://doi.org/10.1016/j.jcp.2017.03.046 +Chris H. Rycroft,An Eulerian projection method for quasi-static elastoplasticity.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#RycroftSB15,https://doi.org/10.1016/j.jcp.2015.06.046 +Rémi Bourguet,Reduced-order modeling of transonic flows around an airfoil submitted to small deformations.,2011,230,J. Comput. Physics,1,db/journals/jcphy/jcphy230.html#BourguetBD11,https://doi.org/10.1016/j.jcp.2010.09.019 +Lei Zhang 0017,Diffuse-interface approach to predicting morphologies of critical nucleus and equilibrium structure for cubic to tetragonal transformations.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#ZhangCD10,https://doi.org/10.1016/j.jcp.2010.05.013 +Pierre Degond,Numerical approximation of the Euler-Maxwell model in the quasineutral limit.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#DegondDS12,https://doi.org/10.1016/j.jcp.2011.11.011 +Andrew Barlow,Arbitrary Lagrangian-Eulerian methods for modeling high-speed compressible multimaterial flows.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#BarlowMRRS16,https://doi.org/10.1016/j.jcp.2016.07.001 +Allan S. Nielsen,Communication-aware adaptive Parareal with application to a nonlinear hyperbolic system of partial differential equations.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#NielsenBH18,https://doi.org/10.1016/j.jcp.2018.04.056 +Guglielmo Scovazzi,A fully-coupled upwind discontinuous Galerkin method for incompressible porous media flows: High-order computations of viscous fingering instabilities in complex geometry.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#ScovazziHCY13,https://doi.org/10.1016/j.jcp.2013.06.012 +Quan Chen,An approximate framework for quantum transport calculation with model order reduction.,2015,286,J. Comput. Physics,,db/journals/jcphy/jcphy286.html#ChenLYZWC15,https://doi.org/10.1016/j.jcp.2015.01.032 +Zhiliang Xu,Point-wise hierarchical reconstruction for discontinuous Galerkin and finite volume methods for solving conservation laws.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#XuLDLS11,https://doi.org/10.1016/j.jcp.2011.05.014 +Armando Coco,Finite-difference ghost-point multigrid methods on Cartesian grids for elliptic problems in arbitrary domains.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#CocoR13,https://doi.org/10.1016/j.jcp.2012.11.047 +Volker Schauer,All-electron Kohn-Sham density functional theory on hierarchic finite element spaces.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#SchauerL13,https://doi.org/10.1016/j.jcp.2013.04.020 +Georg May,A hybrid multilevel method for high-order discretization of the Euler equations on unstructured meshes.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#MayIJ10,https://doi.org/10.1016/j.jcp.2010.01.036 +Jonathan Landry,Robust moving mesh algorithms for hybrid stretched meshes: Application to moving boundaries problems.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#LandrySLA16,https://doi.org/10.1016/j.jcp.2016.09.008 +Giovanni Lapenta,DEMOCRITUS: An adaptive particle in cell (PIC) code for object-plasma interactions.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#Lapenta11,https://doi.org/10.1016/j.jcp.2011.02.041 +Tae-Yeon Kim,A deconvolution enhancement of the Navier-Stokes-α6* model.,2012,231,J. Comput. Physics,11,db/journals/jcphy/jcphy231.html#KimRF12,https://doi.org/10.1016/j.jcp.2011.12.003 +Delfim Soares Jr.,Time-domain electromagnetic wave propagation analysis by edge-based smoothed point interpolation methods.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#Jr13,https://doi.org/10.1016/j.jcp.2012.10.009 +Victorita Dolean,Locally implicit discontinuous Galerkin method for time domain electromagnetics.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#DoleanFFL10,https://doi.org/10.1016/j.jcp.2009.09.038 +Jie Chen 0029,A numerical method for a model of two-phase flow in a coupled free flow and porous media system.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#ChenSW14,https://doi.org/10.1016/j.jcp.2014.02.043 +Jingyan Zhang,Constrained shrinking dimer dynamics for saddle point search with constraints.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#ZhangD12,https://doi.org/10.1016/j.jcp.2012.03.006 +Munekazu Ohno,Numerical testing of quantitative phase-field models with different polynomials for isothermal solidification in binary alloys.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#OhnoTS17,https://doi.org/10.1016/j.jcp.2017.01.053 +David Machac,Emulation of dynamic simulators with application to hydrology.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#MachacRA16,https://doi.org/10.1016/j.jcp.2016.02.046 +Yu Zou,Coarse-grained computation for particle coagulation and sintering processes by linking Quadrature Method of Moments with Monte-Carlo.,2010,229,J. Comput. Physics,14,db/journals/jcphy/jcphy229.html#ZouKKF10,https://doi.org/10.1016/j.jcp.2010.03.007 +Victor M. Calo,Multiscale empirical interpolation for solving nonlinear PDEs.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#CaloEGG14,https://doi.org/10.1016/j.jcp.2014.07.052 +Paul A. Ullrich,High-order finite-volume methods for the shallow-water equations on the sphere.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#UllrichJL10,https://doi.org/10.1016/j.jcp.2010.04.044 +Federico Negri,Efficient model reduction of parametrized systems by matrix discrete empirical interpolation.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#NegriMA15,https://doi.org/10.1016/j.jcp.2015.09.046 +Isha Dhiman,Collective dynamics of an inhomogeneous two-channel exclusion process: Theory and Monte Carlo simulations.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#DhimanG16,https://doi.org/10.1016/j.jcp.2016.01.010 +V. Vikas,Realizable high-order finite-volume schemes for quadrature-based moment methods.,2011,230,J. Comput. Physics,13,db/journals/jcphy/jcphy230.html#VikasWPF11,https://doi.org/10.1016/j.jcp.2011.03.038 +Peter A. Gnoffo,Global series solutions of nonlinear differential equations with shocks using Walsh functions.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#Gnoffo14,https://doi.org/10.1016/j.jcp.2013.10.054 +Hermínio T. Honório,A stabilized element-based finite volume method for poroelastic problems.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#HonorioMFJ18,https://doi.org/10.1016/j.jcp.2018.03.010 +Giovanni Lapenta,Particle simulations of space weather.,2012,231,J. Comput. Physics,3,db/journals/jcphy/jcphy231.html#Lapenta12,https://doi.org/10.1016/j.jcp.2011.03.035 +Travis M. Austin,Semi-automatic sparse preconditioners for high-order finite element methods on non-uniform meshes.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#AustinBJJMR12,https://doi.org/10.1016/j.jcp.2012.03.013 +Jan Nordström,On conservation and stability properties for summation-by-parts schemes.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#NordstromR17,https://doi.org/10.1016/j.jcp.2017.05.002 +X. F. Sun,Perfectly matched layer absorbing boundary condition for nonlinear two-fluid plasma equations.,2015,286,J. Comput. Physics,,db/journals/jcphy/jcphy286.html#SunJHZJG15,https://doi.org/10.1016/j.jcp.2015.01.033 +Paul J. Dellar,Lattice Boltzmann algorithms without cubic defects in Galilean invariance on standard lattices.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#Dellar14,https://doi.org/10.1016/j.jcp.2013.11.021 +Sofia Eriksson,A stable and conservative method for locally adapting the design order of finite difference schemes.,2011,230,J. Comput. Physics,11,db/journals/jcphy/jcphy230.html#ErikssonAN11,https://doi.org/10.1016/j.jcp.2010.11.020 +Yan Guo 0003,A positivity-preserving high order finite volume compact-WENO scheme for compressible Euler equations.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#GuoXS14,https://doi.org/10.1016/j.jcp.2014.06.046 +A. El-Kacimi,Wavelet based ILU preconditioners for the numerical solution by PUFEM of high frequency elastic wave scattering.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#El-KacimiL11,https://doi.org/10.1016/j.jcp.2011.01.012 +Ju Liu,Isogeometric analysis of the advective Cahn-Hilliard equation: Spinodal decomposition under shear flow.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#LiuDEBH13,https://doi.org/10.1016/j.jcp.2013.02.008 +E. Floriani,A stochastic approach to the solution of magnetohydrodynamic equations.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#FlorianiM13,https://doi.org/10.1016/j.jcp.2013.02.039 +Weiming Liu,A triple level finite element method for large eddy simulations.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#Liu09a,https://doi.org/10.1016/j.jcp.2008.12.004 +M. H. Heydari,A computational method for solving stochastic Itô-Volterra integral equations based on stochastic operational matrix for generalized hat basis functions.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#HeydariHGC14,https://doi.org/10.1016/j.jcp.2014.03.064 +Ya Zhang,Numerical study of the particle sedimentation in a viscous fluid using a coupled DEM-IB-CLBM approach.,2018,368,J. Comput. Physics,,db/journals/jcphy/jcphy368.html#ZhangZPH18,https://doi.org/10.1016/j.jcp.2018.04.049 +Innocent Souopgui,Space-time adaptive approach to variational data assimilation using wavelets.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#SouopguiWHV16,https://doi.org/10.1016/j.jcp.2015.11.030 +Xia Ma,Distribution coefficient algorithm for small mass nodes in material point method.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#MaGJZ10,https://doi.org/10.1016/j.jcp.2010.06.041 +G. Capdeville,A high-order multi-dimensional HLL-Riemann solver for non-linear Euler equations.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#Capdeville11,https://doi.org/10.1016/j.jcp.2010.12.043 +Jonah A. Reeger,Numerical quadrature over smooth surfaces with boundaries.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#ReegerF18,https://doi.org/10.1016/j.jcp.2017.11.010 +Maxime Theillard,A second-order sharp numerical method for solving the linear elasticity equations on irregular domains and adaptive grids - Application to shape optimization.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#TheillardDVG13,https://doi.org/10.1016/j.jcp.2012.09.002 +Salvatore Marrone,Coupling of Smoothed Particle Hydrodynamics with Finite Volume method for free-surface flows.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#MarroneMT16,https://doi.org/10.1016/j.jcp.2015.11.059 +Keith Julien,Efficient multi-dimensional solution of PDEs using Chebyshev spectral methods.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#JulienW09,https://doi.org/10.1016/j.jcp.2008.10.043 +Sumedh M. Joshi,Deflation-accelerated preconditioning of the Poisson-Neumann Schur problem on long domains with a high-order discontinuous element-based collocation method.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#JoshiTD16,https://doi.org/10.1016/j.jcp.2016.02.033 +Weizhang Huang,A geometric discretization and a simple implementation for variational mesh generation and adaptation.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#HuangK15,https://doi.org/10.1016/j.jcp.2015.08.032 +Valerio Caleffi,Fourth-order balanced source term treatment in central WENO schemes for shallow water equations.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#CaleffiVB06,https://doi.org/10.1016/j.jcp.2006.02.001 +David J. Chato,Phase field modeling of liquid jets in low gravity.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#Chato09,https://doi.org/10.1016/j.jcp.2008.10.031 +Akihiro Takezawa,Phase field method to optimize dielectric devices for electromagnetic wave propagation.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#TakezawaK14,https://doi.org/10.1016/j.jcp.2013.09.051 +David J. Chappell,Boundary element dynamical energy analysis: A versatile method for solving two or three dimensional wave problems in the high frequency limit.,2012,231,J. Comput. Physics,18,db/journals/jcphy/jcphy231.html#ChappellTG12,https://doi.org/10.1016/j.jcp.2012.05.028 +Jaemin Shin,First and second order numerical methods based on a new convex splitting for phase-field crystal equation.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#ShinLL16,https://doi.org/10.1016/j.jcp.2016.09.053 +J. W. S. Blokland,PHOENIX: MHD spectral code for rotating laboratory and gravitating astrophysical plasmas.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#BloklandHKG07,https://doi.org/10.1016/j.jcp.2007.04.018 +Jonathan R. Bull,Explicit filtering and exact reconstruction of the sub-filter stresses in large eddy simulation.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#BullJ16,https://doi.org/10.1016/j.jcp.2015.11.037 +Richard J. Thompson,A strong conservative Riemann solver for the solution of the coupled Maxwell and Navier-Stokes equations.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#ThompsonWMM14,https://doi.org/10.1016/j.jcp.2013.10.041 +Jun Zhu,Local DG method using WENO type limiters for convection-diffusion problems.,2011,230,J. Comput. Physics,11,db/journals/jcphy/jcphy230.html#ZhuQ11,https://doi.org/10.1016/j.jcp.2010.03.023 +Wen Chen 0003,A new definition of fractional Laplacian with application to modeling three-dimensional nonlocal heat conduction.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#ChenP16,https://doi.org/10.1016/j.jcp.2016.01.003 +Fábio Antonio Dorini,Statistical moments of the random linear transport equation.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#DoriniC08,https://doi.org/10.1016/j.jcp.2008.06.002 +Alireza Mazaheri,Efficient high-order discontinuous Galerkin schemes with first-order hyperbolic advection-diffusion system approach.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#MazaheriN16,https://doi.org/10.1016/j.jcp.2016.06.006 +Borja Servan-Camas,Accelerated 3D multi-body seakeeping simulations using unstructured finite elements.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#Servan-CamasG13,https://doi.org/10.1016/j.jcp.2013.06.023 +Francis Filbet,An inverse Lax-Wendroff method for boundary conditions applied to Boltzmann type models.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#FilbetY13,https://doi.org/10.1016/j.jcp.2013.03.015 +Qingshan Chen,Simulations of the 2.5D inviscid primitive equations in a limited domain.,2008,227,J. Comput. Physics,23,db/journals/jcphy/jcphy227.html#ChenTT08,https://doi.org/10.1016/j.jcp.2008.08.005 +Hadley M. Cave,Implementation of unsteady sampling procedures for the parallel direct simulation Monte Carlo method.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#CaveTWJHK08,https://doi.org/10.1016/j.jcp.2008.03.015 +B.-W. Jeng,Spectral collocation and a two-level continuation scheme for dipolar Bose-Einstein condensates.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#JengCC14,https://doi.org/10.1016/j.jcp.2013.09.018 +Alireza Pakravan,A Gauss-Newton full-waveform inversion in PML-truncated domains using scalar probing waves.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#PakravanKN17,https://doi.org/10.1016/j.jcp.2017.09.017 +Ozlem Ozgun,Near-field performance analysis of locally-conformal perfectly matched absorbers via Monte Carlo simulations.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#OzgunK07,https://doi.org/10.1016/j.jcp.2007.08.025 +Theodoros T. Zygiridis,Optimized three-dimensional FDTD discretizations of Maxwell's equations on Cartesian grids.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#ZygiridisT07,https://doi.org/10.1016/j.jcp.2007.07.008 +Jinn-Liang Liu,Numerical methods for the Poisson-Fermi equation in electrolytes.,2013,247,J. Comput. Physics,,db/journals/jcphy/jcphy247.html#Liu13,https://doi.org/10.1016/j.jcp.2013.03.058 +Simon Marié,Adaptive filtering for the lattice Boltzmann method.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#MarieG17,https://doi.org/10.1016/j.jcp.2016.12.017 +Julien Yvonnet,The reduced model multiscale method (R3M) for the non-linear homogenization of hyperelastic media at finite strains.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#YvonnetH07,https://doi.org/10.1016/j.jcp.2006.09.019 +Johannes Spinneken,Force-controlled absorption in a fully-nonlinear numerical wave tank.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#SpinnekenCS14,https://doi.org/10.1016/j.jcp.2014.04.018 +Max Duarte,A numerical strategy to discretize and solve the Poisson equation on dynamically adapted multiresolution grids for time-dependent streamer discharge simulations.,2015,289,J. Comput. Physics,,db/journals/jcphy/jcphy289.html#DuarteBMB15,https://doi.org/10.1016/j.jcp.2015.02.038 +Abed Zadehgol,Introducing a new kinetic model which admits an H-theorem for simulating the nearly incompressible fluid flows.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#ZadehgolA14,https://doi.org/10.1016/j.jcp.2014.06.053 +Jianfeng Lu 0001,Cubic scaling algorithms for RPA correlation using interpolative separable density fitting.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#LuT17a,https://doi.org/10.1016/j.jcp.2017.09.012 +Xiaofeng Cai,A high order semi-Lagrangian discontinuous Galerkin method for Vlasov-Poisson simulations without operator splitting.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#CaiGQ18,https://doi.org/10.1016/j.jcp.2017.10.048 +Wei-Xi Huang,Simulation of flexible filaments in a uniform flow by the immersed boundary method.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#HuangSS07,https://doi.org/10.1016/j.jcp.2007.07.002 +Dan Erik Petersen,A hybrid method for the parallel computation of Green's functions.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#PetersenLSSHSD09,https://doi.org/10.1016/j.jcp.2009.03.035 +Frédéric Alauzet,High-order sonic boom modeling based on adaptive methods.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#AlauzetL10,https://doi.org/10.1016/j.jcp.2009.09.020 +Yannis Kallinderis,A low order flow/acoustics interaction method for the prediction of sound propagation using 3D adaptive hybrid grids.,2012,231,J. Comput. Physics,18,db/journals/jcphy/jcphy231.html#KallinderisVM12,https://doi.org/10.1016/j.jcp.2012.05.030 +Sungjin Choi,Modeling of the quenching of blast products from energetic materials by expansion into vacuum.,2015,296,J. Comput. Physics,,db/journals/jcphy/jcphy296.html#ChoiSY15,https://doi.org/10.1016/j.jcp.2015.03.067 +Y. Shi,Simulation of three-component fluid flows using the multiphase lattice Boltzmann flux solver.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#ShiTW16,https://doi.org/10.1016/j.jcp.2016.03.011 +Toru Takahashi 0002,Application of the inverse fast multipole method as a preconditioner in a 3D Helmholtz boundary element method.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#TakahashiCD17,https://doi.org/10.1016/j.jcp.2017.04.016 +Matthias Jeschke,Exploring the performance of spatial stochastic simulation algorithms.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#JeschkeEU11,https://doi.org/10.1016/j.jcp.2010.12.030 +Andreas Klöckner,Nodal discontinuous Galerkin methods on graphics processors.,2009,228,J. Comput. Physics,21,db/journals/jcphy/jcphy228.html#KlocknerWBH09,https://doi.org/10.1016/j.jcp.2009.06.041 +Tao Xiong,A parametrized maximum principle preserving flux limiter for finite difference RK-WENO schemes with applications in incompressible flows.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#XiongQX13,https://doi.org/10.1016/j.jcp.2013.06.026 +Haibo Zhao,A differentially weighted Monte Carlo method for two-component coagulation.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#ZhaoKZ10,https://doi.org/10.1016/j.jcp.2010.05.031 +Yingda Cheng,A discontinuous Galerkin finite element method for directly solving the Hamilton-Jacobi equations.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#ChengS07a,https://doi.org/10.1016/j.jcp.2006.09.012 +Ana Carpio,Nonreflecting boundary conditions for discrete waves.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#CarpioT10,https://doi.org/10.1016/j.jcp.2009.11.013 +Tingqiu Li,Interactions of breaking waves with a current over cut cells.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#LiTR07,https://doi.org/10.1016/j.jcp.2006.10.003 +H. Uddin,A Cartesian-based embedded geometry technique with adaptive high-order finite differences for compressible flow around complex geometries.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#UddinKP14,https://doi.org/10.1016/j.jcp.2014.01.004 +Mike A. Shay,Equation Free Projective Integration: A multiscale method applied to a plasma ion acoustic wave.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#ShayDD07,https://doi.org/10.1016/j.jcp.2007.04.016 +Na Zhang,Parameterizing the Morse potential for coarse-grained modeling of blood plasma.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#ZhangZKBD14,https://doi.org/10.1016/j.jcp.2013.09.040 +Andrea Crivellini,A Spalart-Allmaras turbulence model implementation in a discontinuous Galerkin solver for incompressible flows.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#CrivelliniDB13,https://doi.org/10.1016/j.jcp.2012.12.038 +Jie Shen 0001,Efficient energy stable numerical schemes for a phase field moving contact line model.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#ShenYY15,https://doi.org/10.1016/j.jcp.2014.12.046 +Walter Arne,Finite volume approach for the instationary Cosserat rod model describing the spinning of viscous jets.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#ArneMMSW15,https://doi.org/10.1016/j.jcp.2015.03.042 +Helmer André Friis,A family of MPFA finite-volume schemes with full pressure support for the general tensor pressure equation on cell-centered triangular grids.,2011,230,J. Comput. Physics,1,db/journals/jcphy/jcphy230.html#FriisE11,https://doi.org/10.1016/j.jcp.2010.09.012 +Gabriel Georges,A 3D GCL compatible cell-centered Lagrangian scheme for solving gas dynamics equations.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#GeorgesBM16,https://doi.org/10.1016/j.jcp.2015.10.040 +Metin Muradoglu,An auxiliary grid method for computations of multiphase flows in complex geometries.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#MuradogluK06,https://doi.org/10.1016/j.jcp.2005.10.024 +Yaoxin Zhang,An improved nearly-orthogonal structured mesh generation system with smoothness control functions.,2012,231,J. Comput. Physics,16,db/journals/jcphy/jcphy231.html#ZhangJW12,https://doi.org/10.1016/j.jcp.2012.04.043 +ásdís Helgadóttir,A Poisson-Boltzmann solver on irregular domains with Neumann or Robin boundary conditions on non-graded adaptive grid.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#HelgadottirG11,https://doi.org/10.1016/j.jcp.2011.02.010 +Nassim Razaaly,Novel algorithm using Active Metamodel Learning and Importance Sampling: Application to multiple failure regions of low probability.,2018,368,J. Comput. Physics,,db/journals/jcphy/jcphy368.html#RazaalyC18,https://doi.org/10.1016/j.jcp.2018.04.047 +Wim-Paul Breugem,A second-order accurate immersed boundary method for fully resolved simulations of particle-laden flows.,2012,231,J. Comput. Physics,13,db/journals/jcphy/jcphy231.html#Breugem12,https://doi.org/10.1016/j.jcp.2012.02.026 +Sergey Plyasunov,Efficient stochastic sensitivity analysis of discrete event systems.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#PlyasunovA07,https://doi.org/10.1016/j.jcp.2006.06.047 +Alexander S. Lipatov,Merging for Particle-Mesh Complex Particle Kinetic modeling of the multiple plasma beams.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#Lipatov12,https://doi.org/10.1016/j.jcp.2011.12.020 +Antoine Bourgeade,Numerical methods for the bidimensional Maxwell-Bloch equations in nonlinear crystals.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#BourgeadeS06,https://doi.org/10.1016/j.jcp.2005.09.003 +B. Feng,Enhancing parallel quasi-static particle-in-cell simulations with a pipelining algorithm.,2009,228,J. Comput. Physics,15,db/journals/jcphy/jcphy228.html#FengHDMMK09,https://doi.org/10.1016/j.jcp.2009.04.019 +Lee Ming Kew,New explicit group iterative methods in the solution of three dimensional hyperbolic telegraph equations.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#KewA15,https://doi.org/10.1016/j.jcp.2015.03.052 +Pierre Degond,A multiscale kinetic-fluid solver with dynamic localization of kinetic effects.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#DegondDM10,https://doi.org/10.1016/j.jcp.2010.03.009 +Meinhard Paffrath,Adapted polynomial chaos expansion for failure detection.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#PaffrathW07,https://doi.org/10.1016/j.jcp.2007.04.011 +T. Corot,A new nodal solver for the two dimensional Lagrangian hydrodynamics.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#CorotM18,https://doi.org/10.1016/j.jcp.2017.09.053 +D. G. Giovanis,Uncertainty quantification for complex systems with very high dimensional response using Grassmann manifold variations.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#GiovanisS18,https://doi.org/10.1016/j.jcp.2018.03.009 +Kamalesh Sainath,Full-wave algorithm to model effects of bedding slopes on the response of subsurface electromagnetic geophysical sensors near unconformities.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#SainathT16,https://doi.org/10.1016/j.jcp.2016.02.036 +Peter W. Stokes,Efficient numerical solution of the time fractional diffusion equation by mapping from its Brownian counterpart.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#StokesPRW15,https://doi.org/10.1016/j.jcp.2014.11.023 +David Flad,On the use of kinetic energy preserving DG-schemes for large eddy simulation.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#FladG17,https://doi.org/10.1016/j.jcp.2017.09.004 +Yue Zhao,Galerkin finite element method for two-dimensional space and time fractional Bloch-Torrey equation.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#ZhaoBZT17,https://doi.org/10.1016/j.jcp.2017.08.051 +Mingge Deng,Anisotropic single-particle dissipative particle dynamics model.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#DengPK17,https://doi.org/10.1016/j.jcp.2017.01.033 +Robert R. Nourgaliev,Fully-implicit orthogonal reconstructed Discontinuous Galerkin method for fluid dynamics with phase change.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#NourgalievLWASD16,https://doi.org/10.1016/j.jcp.2015.11.004 +Xiaofan Li,A high-order boundary integral method for surface diffusions on elastically stressed axisymmetric rods.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#LiN09,https://doi.org/10.1016/j.jcp.2009.03.024 +B. Noetinger,A quasi steady state method for solving transient Darcy flow in complex 3D fractured networks.,2012,231,J. Comput. Physics,1,db/journals/jcphy/jcphy231.html#NoetingerJ12,https://doi.org/10.1016/j.jcp.2011.08.015 +Jordan B. Angel,High-order upwind schemes for the wave equation on overlapping grids: Maxwell's equations in second-order form.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#AngelBH18,https://doi.org/10.1016/j.jcp.2017.09.037 +Bangti Jin,An inverse Sturm-Liouville problem with a fractional derivative.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#JinR12,https://doi.org/10.1016/j.jcp.2012.04.005 +Boris Gershgorin,Filtering a statistically exactly solvable test model for turbulent tracers from partial observations.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#GershgorinM11,https://doi.org/10.1016/j.jcp.2010.11.024 +Kai Fan,A full vectorial generalized discontinuous Galerkin beam propagation method (GDG-BPM) for nonsmooth electromagnetic fields in waveguides.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#FanCJ08a,https://doi.org/10.1016/j.jcp.2008.03.044 +Vincent Le Chenadec,Combination of 3D unsplit forward and backward volume-of-fluid transport and coupling to the level set method.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#ChenadecP13,https://doi.org/10.1016/j.jcp.2012.07.019 +Alfredo Bermúdez,An optimal perfectly matched layer with unbounded absorbing function for time-harmonic acoustic scattering problems.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#BermudezHPR07,https://doi.org/10.1016/j.jcp.2006.09.018 +Mathieu Karamitros,Diffusion-controlled reactions modeling in Geant4-DNA.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#KaramitrosLBABDFFIIMNSTSI14,https://doi.org/10.1016/j.jcp.2014.06.011 +Roberto Camassa,Complete integrable particle methods and the recurrence of initial states for a nonlinear shallow-water wave equation.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#CamassaL08,https://doi.org/10.1016/j.jcp.2008.04.011 +J. W. Haverkort,The Brunt-Väisälä frequency of rotating tokamak plasmas.,2012,231,J. Comput. Physics,3,db/journals/jcphy/jcphy231.html#HaverkortBK12,https://doi.org/10.1016/j.jcp.2011.03.016 +Jennifer K. Ryan,Local derivative post-processing for the discontinuous Galerkin method.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#RyanC09,https://doi.org/10.1016/j.jcp.2009.08.017 +Maitham Makki Alhubail,The swept rule for breaking the latency barrier in time advancing PDEs.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#AlhubailW16,https://doi.org/10.1016/j.jcp.2015.11.026 +V. Vaibhav,Microlocal approach towards construction of nonreflecting boundary conditions.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#Vaibhav14,https://doi.org/10.1016/j.jcp.2014.04.050 +Ivan Christov,New non-oscillatory central schemes on unstructured triangulations for hyperbolic systems of conservation laws.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#ChristovP08,https://doi.org/10.1016/j.jcp.2008.02.007 +Sourabh V. Apte,A variable-density fictitious domain method for particulate flows with broad range of particle-fluid density ratios.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#ApteF13,https://doi.org/10.1016/j.jcp.2012.12.021 +Andrew G. Buchan,A POD reduced order model for resolving angular direction in neutron/photon transport problems.,2015,296,J. Comput. Physics,,db/journals/jcphy/jcphy296.html#BuchanCGDFPN15,https://doi.org/10.1016/j.jcp.2015.04.043 +Jung J. Choi,Hybrid spectral difference/embedded finite volume method for conservation laws.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#Choi15,https://doi.org/10.1016/j.jcp.2015.04.013 +Gang Bao,Inverse scattering by a continuation method with initial guesses from a direct imaging algorithm.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#BaoHL07,https://doi.org/10.1016/j.jcp.2007.08.020 +Ran Duan,High-order quadratures for the solution of scattering problems in two dimensions.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#DuanR09,https://doi.org/10.1016/j.jcp.2008.11.033 +Bobby Philip,Implicit adaptive mesh refinement for 2D reduced resistive magnetohydrodynamics.,2008,227,J. Comput. Physics,20,db/journals/jcphy/jcphy227.html#PhilipCP08,https://doi.org/10.1016/j.jcp.2008.06.029 +Webe João Mansur,Explicit time-domain approaches based on numerical Green's functions computed by finite differences - The ExGA family.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#MansurLSD07,https://doi.org/10.1016/j.jcp.2007.08.024 +Tong Li 0008,A stochastic thermostat algorithm for coarse-grained thermomechanical modeling of large-scale soft matters: Theory and application to microfilaments.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#LiG14,https://doi.org/10.1016/j.jcp.2014.01.021 +Christopher M. Romick,High-order shock-fitted detonation propagation in high explosives.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#RomickA17,https://doi.org/10.1016/j.jcp.2016.11.049 +Jae-Min Kwon,Development of semi-Lagrangian gyrokinetic code for full-f turbulence simulation in general tokamak geometry.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#KwonYPK15,https://doi.org/10.1016/j.jcp.2014.12.017 +Zhanjing Tao,High-order central Hermite WENO schemes on staggered meshes for hyperbolic conservation laws.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#TaoLQ15,https://doi.org/10.1016/j.jcp.2014.10.027 +P. Trontin,A subgrid computation of the curvature by a particle/level-set method. Application to a front-tracking/ghost-fluid method for incompressible flows.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#TrontinVEC12,https://doi.org/10.1016/j.jcp.2012.07.002 +Irmela Zentner,A biorthogonal decomposition for the identification and simulation of non-stationary and non-Gaussian random fields.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#ZentnerFPB16,https://doi.org/10.1016/j.jcp.2016.02.067 +Nicolas Besse,Adaptive multiresolution semi-Lagrangian discontinuous Galerkin methods for the Vlasov equations.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#BesseDM17,https://doi.org/10.1016/j.jcp.2016.12.003 +Jian Zhao,Runge-Kutta discontinuous Galerkin methods for the special relativistic magnetohydrodynamics.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#ZhaoT17,https://doi.org/10.1016/j.jcp.2017.04.027 +Melina A. Freitag,A low-rank approach to the solution of weak constraint variational data assimilation problems.,2018,357,J. Comput. Physics,,db/journals/jcphy/jcphy357.html#FreitagG18,https://doi.org/10.1016/j.jcp.2017.12.039 +Jörg Hennig,Fully pseudospectral time evolution and its application to 1+1 dimensional physical problems.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#Hennig13,https://doi.org/10.1016/j.jcp.2012.10.040 +Youssef M. Marzouk,Stochastic spectral methods for efficient Bayesian solution of inverse problems.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#MarzoukNR07,https://doi.org/10.1016/j.jcp.2006.10.010 +Yuri A. Omelchenko,A time-accurate explicit multi-scale technique for gas dynamics.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#OmelchenkoK07,https://doi.org/10.1016/j.jcp.2007.04.010 +Gianmarco Mengaldo,Dealiasing techniques for high-order spectral element methods on regular and irregular grids.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#MengaldoGMVS15,https://doi.org/10.1016/j.jcp.2015.06.032 +Andreas Klöckner,Quadrature by expansion: A new method for the evaluation of layer potentials.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#KlocknerBGO13,https://doi.org/10.1016/j.jcp.2013.06.027 +P. C. Bollada,Three dimensional thermal-solute phase field simulation of binary alloy solidification.,2015,287,J. Comput. Physics,,db/journals/jcphy/jcphy287.html#BolladaGJMY15,https://doi.org/10.1016/j.jcp.2015.01.040 +Dadan Darmana,Parallelization of an Euler-Lagrange model using mixed domain decomposition and a mirror domain technique: Application to dispersed gas-liquid two-phase flow.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#DarmanaDK06,https://doi.org/10.1016/j.jcp.2006.05.011 +Tony W. H. Sheu,Development of a dispersively accurate conservative level set scheme for capturing interface in two-phase flows.,2009,228,J. Comput. Physics,3,db/journals/jcphy/jcphy228.html#SheuYC09,https://doi.org/10.1016/j.jcp.2008.09.032 +Richard Mikael Slevinsky,A fast and well-conditioned spectral method for singular integral equations.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#SlevinskyO17,https://doi.org/10.1016/j.jcp.2016.12.009 +Nam Mai-Duy,A compact five-point stencil based on integrated RBFs for 2D second-order differential problems.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#Mai-DuyT13,https://doi.org/10.1016/j.jcp.2012.10.048 +Pao-Hsiung Chiu,A differentially interpolated direct forcing immersed boundary method for predicting incompressible Navier-Stokes equations in time-varying complex geometries.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#ChiuLS10,https://doi.org/10.1016/j.jcp.2010.02.013 +Xianping Li,An anisotropic mesh adaptation method for the finite element solution of heterogeneous anisotropic diffusion problems.,2010,229,J. Comput. Physics,21,db/journals/jcphy/jcphy229.html#LiH10,https://doi.org/10.1016/j.jcp.2010.07.009 +Adrianna Gillman,A simplified technique for the efficient and highly accurate discretization of boundary integral equations in 2D on domains with corners.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#GillmanHM14,https://doi.org/10.1016/j.jcp.2013.08.049 +Yan Zhao,Full-wave parallel dispersive finite-difference time-domain modeling of three-dimensional electromagnetic cloaking structures.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#ZhaoH09,https://doi.org/10.1016/j.jcp.2009.06.026 +Christian Diddens,Detailed finite element method modeling of evaporating multi-component droplets.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#Diddens17,https://doi.org/10.1016/j.jcp.2017.03.049 +Shuting Gu,An energy-stable finite-difference scheme for the binary fluid-surfactant system.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#GuZZ14,https://doi.org/10.1016/j.jcp.2014.03.060 +José M. Gallardo,On a well-balanced high-order finite volume scheme for shallow water equations with topography and dry areas.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#GallardoPC07,https://doi.org/10.1016/j.jcp.2007.08.007 +M. Böhm,Trim-to-Coherence Fourier Transform.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#BohmTSM09,https://doi.org/10.1016/j.jcp.2008.12.032 +Qiang Zhou 0003,A new family of high-order compact upwind difference schemes with good spectral resolution.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#ZhouYHS07,https://doi.org/10.1016/j.jcp.2007.09.008 +Shahaboddin Alahyari Beig,Maintaining interface equilibrium conditions in compressible multiphase flows using interface capturing.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#BeigJ15,https://doi.org/10.1016/j.jcp.2015.09.018 +Yalchin Efendiev,Accurate multiscale finite element methods for two-phase flow simulations.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#EfendievGHE06,https://doi.org/10.1016/j.jcp.2006.05.015 +Hu Chen,Finite difference/spectral approximations for the distributed order time fractional reaction-diffusion equation on an unbounded domain.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#ChenLC16,https://doi.org/10.1016/j.jcp.2016.03.044 +Derek T. Steinmoeller,A short note on the discontinuous Galerkin discretization of the pressure projection operator in incompressible flow.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#SteinmoellerSL13,https://doi.org/10.1016/j.jcp.2013.05.036 +Xiaofeng Yang 0003,Numerical simulations of jet pinching-off and drop formation using an energetic variational phase-field method.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#YangFLS06,https://doi.org/10.1016/j.jcp.2006.02.021 +Jeroen Wackers,Multigrid solution method for the steady RANS equations.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#WackersK07,https://doi.org/10.1016/j.jcp.2007.06.007 +R. Knaus,A computational approach to flame hole dynamics using an embedded manifold approach.,2015,296,J. Comput. Physics,,db/journals/jcphy/jcphy296.html#KnausP15,https://doi.org/10.1016/j.jcp.2015.04.037 +Iryna Rybak,A multiple-time-step technique for coupled free flow and porous medium systems.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#RybakM14,https://doi.org/10.1016/j.jcp.2014.04.036 +Panagiotis Neofytou,Revision of the characteristics-based scheme for incompressible flows.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#Neofytou07,https://doi.org/10.1016/j.jcp.2006.10.009 +Guanghui Hu,A robust high-order residual distribution type scheme for steady Euler equations on unstructured grids.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#HuLT10,https://doi.org/10.1016/j.jcp.2009.11.002 +Jie Zhang,A front tracking method for a deformable intravascular bubble in a tube with soluble surfactant transport.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#ZhangEA06,https://doi.org/10.1016/j.jcp.2005.09.016 +Ken Mattsson,High order finite difference methods for wave propagation in discontinuous media.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#MattssonN06,https://doi.org/10.1016/j.jcp.2006.05.007 +Sebastian Noelle,High-order well-balanced finite volume WENO schemes for shallow water equation with moving water.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#NoelleXS07,https://doi.org/10.1016/j.jcp.2007.03.031 +Andrew Duncan,Hybrid framework for the simulation of stochastic chemical kinetics.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#DuncanEZ16,https://doi.org/10.1016/j.jcp.2016.08.034 +Habib Ammari,Detection and classification from electromagnetic induction data.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#AmmariCCVW15,https://doi.org/10.1016/j.jcp.2015.08.027 +Nuno Cardoso,SU (2) lattice gauge theory simulations on Fermi GPUs.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#CardosoB11,https://doi.org/10.1016/j.jcp.2011.02.023 +Arthur van Dam,A robust moving mesh finite volume method applied to 1D hyperbolic conservation laws from magnetohydrodynamics.,2006,216,J. Comput. Physics,2,db/journals/jcphy/jcphy216.html#DamZ06,https://doi.org/10.1016/j.jcp.2005.12.014 +Pedro R. S. Antunes,Detection of holes in an elastic body based on eigenvalues and traces of eigenmodes.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#AntunesBT17,https://doi.org/10.1016/j.jcp.2016.12.044 +Ahmad S. Abushaikha,Interface control volume finite element method for modelling multi-phase fluid flow in highly heterogeneous and fractured reservoirs.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#AbushaikhaBGPJ15,https://doi.org/10.1016/j.jcp.2015.05.024 +Tuomas Korpilo,Numerically stable method for kinetic electrons in gyrokinetic particle-in-cell simulation of toroidal plasmas.,2013,239,J. Comput. Physics,,db/journals/jcphy/jcphy239.html#KorpiloHJKLO13,https://doi.org/10.1016/j.jcp.2012.12.033 +Vasanth Allampalli,High-accuracy large-step explicit Runge-Kutta (HALE-RK) schemes for computational aeroacoustics.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#AllampalliHNS09,https://doi.org/10.1016/j.jcp.2009.02.015 +Mihkel Veske,Dynamic coupling of a finite element solver to large-scale atomistic simulations.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#VeskeKEZAD18,https://doi.org/10.1016/j.jcp.2018.04.031 +Sina Arabi,A simple extension of Roe's scheme for real gases.,2017,329,J. Comput. Physics,,db/journals/jcphy/jcphy329.html#ArabiTC17,https://doi.org/10.1016/j.jcp.2016.10.067 +J. Blair Perot,Discrete calculus methods for diffusion.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#PerotS07a,https://doi.org/10.1016/j.jcp.2006.12.022 +Qinghai Zhang,HyPAM: A hybrid continuum-particle model for incompressible free-surface flows.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#ZhangL09,https://doi.org/10.1016/j.jcp.2008.10.029 +Marcel Pfeiffer,A grid-independent particle pairing strategy for DSMC.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#PfeifferMF13,https://doi.org/10.1016/j.jcp.2013.03.018 +John D. Jakeman,Numerical approach for quantification of epistemic uncertainty.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#JakemanEX10,https://doi.org/10.1016/j.jcp.2010.03.003 +Gábor Tóth,A parallel explicit/implicit time stepping scheme on block-adaptive grids.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#TothZGP06,https://doi.org/10.1016/j.jcp.2006.01.029 +Marc-Paul Errera,Comparative study of coupling coefficients in Dirichlet-Robin procedure for fluid-structure aerothermal simulations.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#ErreraD16,https://doi.org/10.1016/j.jcp.2016.02.022 +M. Sani,A lagged implicit segregated data reconstruction procedure to treat open boundaries.,2010,229,J. Comput. Physics,14,db/journals/jcphy/jcphy229.html#SaniS10,https://doi.org/10.1016/j.jcp.2010.04.005 +Sergey Fomel,Fast sweeping method for the factored eikonal equation.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#FomelLZ09,https://doi.org/10.1016/j.jcp.2009.05.029 +Prapanch Nair,Volume conservation issues in incompressible smoothed particle hydrodynamics.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#NairT15,https://doi.org/10.1016/j.jcp.2015.05.042 +Jordan Ko,Multi-element stochastic spectral projection for high quantile estimation.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#KoG13,https://doi.org/10.1016/j.jcp.2013.01.012 +Shaoping Quan,Modeling merging and breakup in the moving mesh interface tracking method for multiphase flow simulations.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#QuanLS09,https://doi.org/10.1016/j.jcp.2008.12.029 +Zupeng Jia,A new high-order discontinuous Galerkin spectral finite element method for Lagrangian gas dynamics in two-dimensions.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#JiaZ11,https://doi.org/10.1016/j.jcp.2010.12.023 +Eric T. Chung,Convergence and superconvergence of staggered discontinuous Galerkin methods for the three-dimensional Maxwell's equations on Cartesian grids.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#ChungCY13,https://doi.org/10.1016/j.jcp.2012.10.019 +Zhao-xiang Li,Pseudospectral methods for computing the multiple solutions of the Lane-Emden equation.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#LiW13a,https://doi.org/10.1016/j.jcp.2013.08.029 +Carolyn L. Phillips,Pseudo-random number generation for Brownian Dynamics and Dissipative Particle Dynamics simulations on GPU devices.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#PhillipsAG11,https://doi.org/10.1016/j.jcp.2011.05.021 +Kavita Goyal,An adaptive meshfree diffusion wavelet method for partial differential equations on the sphere.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#GoyalM14,https://doi.org/10.1016/j.jcp.2014.04.044 +Kristen A. Brown,Assimilating irregularly spaced sparsely observed turbulent signals with hierarchical Bayesian reduced stochastic filters.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#BrownH13,https://doi.org/10.1016/j.jcp.2012.11.006 +Soheil Soghrati,3D hierarchical interface-enriched finite element method: Implementation and applications.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#SoghratiA15,https://doi.org/10.1016/j.jcp.2015.06.035 +Jean Michel D. Sellier,A signed particle formulation of non-relativistic quantum mechanics.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#Sellier15,https://doi.org/10.1016/j.jcp.2015.05.036 +Petr N. Vabishchevich,Numerically solving an equation for fractional powers of elliptic operators.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#Vabishchevich15,https://doi.org/10.1016/j.jcp.2014.11.022 +Karabi Ghosh,Fully implicit 1D radiation hydrodynamics: Validation and verification.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#GhoshM10,https://doi.org/10.1016/j.jcp.2010.06.031 +R. A. Kolesnikov,Unlike-particle collision operator for gyrokinetic particle simulations.,2010,229,J. Comput. Physics,15,db/journals/jcphy/jcphy229.html#KolesnikovWH10,https://doi.org/10.1016/j.jcp.2010.04.018 +Matthew R. Norman,A low communication and large time step explicit finite-volume solver for non-hydrostatic atmospheric dynamics.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#NormanNS11,https://doi.org/10.1016/j.jcp.2010.11.022 +Lucian Mihai Itu,A parameter estimation framework for patient-specific hemodynamic computations.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#ItuSPKSC15,https://doi.org/10.1016/j.jcp.2014.10.034 +Jesse Capecelatro,A purely Lagrangian method for simulating the shallow water equations on a sphere using smooth particle hydrodynamics.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#Capecelatro18,https://doi.org/10.1016/j.jcp.2017.12.002 +Michael Wimmer,Optimal block-tridiagonalization of matrices for coherent charge transport.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#WimmerR09,https://doi.org/10.1016/j.jcp.2009.08.001 +Hailiang Liu,Alternating evolution discontinuous Galerkin methods for convection-diffusion equations.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#LiuP16,https://doi.org/10.1016/j.jcp.2015.12.017 +Ngoc Cuong Nguyen,Hybridizable discontinuous Galerkin methods for the time-harmonic Maxwell's equations.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#NguyenPC11b,https://doi.org/10.1016/j.jcp.2011.05.018 +Jianke Yang,Iteration methods for stability spectra of solitary waves.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#Yang08,https://doi.org/10.1016/j.jcp.2008.03.039 +Suchuan Dong,A pressure correction scheme for generalized form of energy-stable open boundary conditions for incompressible flows.,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#DongS15,https://doi.org/10.1016/j.jcp.2015.03.012 +Mei Song Tong,Multilevel fast multipole algorithm for elastic wave scattering by large three-dimensional objects.,2009,228,J. Comput. Physics,3,db/journals/jcphy/jcphy228.html#TongC09,https://doi.org/10.1016/j.jcp.2008.10.003 +Gang Li,Well-balanced discontinuous Galerkin methods with hydrostatic reconstruction for the Euler equations with gravitation.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#LiX18,https://doi.org/10.1016/j.jcp.2017.09.063 +Nicolas Besse,A wavelet-MRA-based adaptive semi-Lagrangian method for the relativistic Vlasov-Maxwell system.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#BesseLGSB08,https://doi.org/10.1016/j.jcp.2008.04.031 +Jinhong Jia,A fast finite volume method for conservative space-fractional diffusion equations in convex domains.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#JiaW16,https://doi.org/10.1016/j.jcp.2016.01.015 +Silas Alben,Simulating the dynamics of flexible bodies and vortex sheets.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#Alben09,https://doi.org/10.1016/j.jcp.2008.12.020 +Denis Colombant,Numerical fluid solutions for nonlocal electron transport in hot plasmas: Equivalent diffusion versus nonlocal source.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#ColombantM10,https://doi.org/10.1016/j.jcp.2010.02.017 +P. T. Brady,Code verification for finite volume multiphase scalar equations using the method of manufactured solutions.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#BradyHL12,https://doi.org/10.1016/j.jcp.2011.12.040 +Xuan Zhao,A box-type scheme for fractional sub-diffusion equation with Neumann boundary conditions.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#ZhaoS11,https://doi.org/10.1016/j.jcp.2011.04.013 +Luc Mieussens,On the asymptotic preserving property of the unified gas kinetic scheme for the diffusion limit of linear kinetic models.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#Mieussens13,https://doi.org/10.1016/j.jcp.2013.07.002 +Fei Meng 0003,Bi-directional evolutionary optimization for photonic band gap structures.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#MengHJ15,https://doi.org/10.1016/j.jcp.2015.09.010 +Ahmed Abed Al-Kadhem Majhool,Spray algorithm without interface construction.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#MajhoolW12,https://doi.org/10.1016/j.jcp.2012.01.012 +Bernard Parent,Ambipolar diffusion and drift in computational weakly-ionized plasmadynamics.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#ParentMS11,https://doi.org/10.1016/j.jcp.2011.07.006 +Jeff Candy,A high-accuracy Eulerian gyrokinetic solver for collisional plasmas.,2016,324,J. Comput. Physics,,db/journals/jcphy/jcphy324.html#CandyBB16,https://doi.org/10.1016/j.jcp.2016.07.039 +Hassan Khosravian-Arab,Fractional Sturm-Liouville boundary value problems in unbounded domains: Theory and applications.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#Khosravian-Arab15,https://doi.org/10.1016/j.jcp.2015.06.030 +Yulong Xing,High order well-balanced finite volume WENO schemes and discontinuous Galerkin methods for a class of hyperbolic systems with source terms.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#XingS06,https://doi.org/10.1016/j.jcp.2005.10.005 +Adrián Navas-Montilla,Energy balanced numerical schemes with very high order. The Augmented Roe Flux ADER scheme. Application to the shallow water equations.,2015,290,J. Comput. Physics,,db/journals/jcphy/jcphy290.html#Navas-MontillaM15,https://doi.org/10.1016/j.jcp.2015.03.002 +Raphaël di Chiara Roupert,Three-phase compressible flow in porous media: Total Differential Compatible interpolation of relative permeabilities.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#RoupertCS10,https://doi.org/10.1016/j.jcp.2010.03.013 +Larisa Gitelman,Polymer geometry and Li+ conduction in poly(ethylene oxide).,2008,227,J. Comput. Physics,18,db/journals/jcphy/jcphy227.html#GitelmanIANSG08,https://doi.org/10.1016/j.jcp.2008.06.006 +Xiang Ma,An adaptive high-dimensional stochastic model representation technique for the solution of stochastic partial differential equations.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#MaZ10,https://doi.org/10.1016/j.jcp.2010.01.033 +Costanza Aricò,The MAST FV/FE scheme for the simulation of two-dimensional thermohaline processes in variable-density saturated porous media.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#AricoT09,https://doi.org/10.1016/j.jcp.2008.10.015 +Naoufel Ben Abdallah,An accelerated algorithm for 2D simulations of the quantum ballistic transport in nanoscale MOSFETs.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#AbdallahMN07,https://doi.org/10.1016/j.jcp.2006.11.028 +Weizhu Bao,Efficient numerical methods for computing ground states of spin-1 Bose-Einstein condensates based on their characterizations.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#BaoCZ13,https://doi.org/10.1016/j.jcp.2013.06.036 +Zhengru Zhang,An adaptive time-stepping strategy for solving the phase field crystal model.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#ZhangMQ13,https://doi.org/10.1016/j.jcp.2013.04.031 +Pavel Tomin,Hybrid Multiscale Finite Volume method for two-phase flow in porous media.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#TominL13,https://doi.org/10.1016/j.jcp.2013.05.019 +Jacob Waltz,Operator splitting and time accuracy in Lagrange plus remap solution methods.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#Waltz13,https://doi.org/10.1016/j.jcp.2013.07.016 +Dieter Dobbelaere,A Calderón multiplicative preconditioner for the electromagnetic Poincaré-Steklov operator of a heterogeneous domain with scattering applications.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#DobbelaereZHSBR15,https://doi.org/10.1016/j.jcp.2015.09.052 +Zhi-Zhong Sun,The stability and convergence of an explicit difference scheme for the Schrödinger equation on an infinite domain by using artificial boundary conditions.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#Sun06,https://doi.org/10.1016/j.jcp.2006.07.001 +Michael Dumbser,Very high order PNPM schemes on unstructured meshes for the resistive relativistic MHD equations.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#DumbserZ09,https://doi.org/10.1016/j.jcp.2009.06.009 +Jie Liu 0003,Open and traction boundary conditions for the incompressible Navier-Stokes equations.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#Liu09b,https://doi.org/10.1016/j.jcp.2009.06.021 +Matteo Semplice,Adaptive-Mesh-Refinement for hyperbolic systems of conservation laws based on a posteriori stabilized high order polynomial reconstructions.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#SempliceL18,https://doi.org/10.1016/j.jcp.2017.10.031 +Sirui Tan,Inverse Lax-Wendroff procedure for numerical boundary conditions of conservation laws.,2010,229,J. Comput. Physics,21,db/journals/jcphy/jcphy229.html#TanS10,https://doi.org/10.1016/j.jcp.2010.07.014 +Manoj K. Rajpoot,Solution of linearized rotating shallow water equations by compact schemes with different grid-staggering strategies.,2012,231,J. Comput. Physics,5,db/journals/jcphy/jcphy231.html#RajpootBS12,https://doi.org/10.1016/j.jcp.2011.11.025 +J. H. van der Linden,The parallel subdomain-levelset deflation method in reservoir simulation.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#LindenJLV16,https://doi.org/10.1016/j.jcp.2015.10.016 +Sander Rhebergen,A space-time hybridizable discontinuous Galerkin method for incompressible flows on deforming domains.,2012,231,J. Comput. Physics,11,db/journals/jcphy/jcphy231.html#RhebergenC12,https://doi.org/10.1016/j.jcp.2012.02.011 +Tyler Maltba,Nonlocal PDF methods for Langevin equations with colored noise.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#MaltbaGT18,https://doi.org/10.1016/j.jcp.2018.04.023 +Mechthild Thalhammer,High-order time-splitting Hermite and Fourier spectral methods.,2009,228,J. Comput. Physics,3,db/journals/jcphy/jcphy228.html#ThalhammerCN09,https://doi.org/10.1016/j.jcp.2008.10.008 +Chunxiong Zheng,Exact nonreflecting boundary conditions for one-dimensional cubic nonlinear Schrödinger equations.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#Zheng06,https://doi.org/10.1016/j.jcp.2005.11.005 +Stéphane Jaouen,A purely Lagrangian method for computing linearly-perturbed flows in spherical geometry.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#Jaouen07,https://doi.org/10.1016/j.jcp.2006.12.008 +Cheng-Nian Xiao,Fully-coupled pressure-based finite-volume framework for the simulation of fluid flows at all speeds in complex geometries.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#XiaoDW17,https://doi.org/10.1016/j.jcp.2017.06.009 +Toshiyuki Nakata,A fluid-structure interaction model of insect flight with flexible wings.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#NakataL12,https://doi.org/10.1016/j.jcp.2011.11.005 +Josip Basic,A class of renormalised meshless Laplacians for boundary value problems.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#BasicDB18,https://doi.org/10.1016/j.jcp.2017.11.003 +Zhi-Zhong Sun,The stability and convergence of a difference scheme for the Schrödinger equation on an infinite domain by using artificial boundary conditions.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#SunW06,https://doi.org/10.1016/j.jcp.2005.09.011 +Samet Y. Kadioglu,A fully second order implicit/explicit time integration technique for hydrodynamics plus nonlinear heat conduction problems.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#KadiogluK10,https://doi.org/10.1016/j.jcp.2009.12.039 +Viktor Linders,Uniformly best wavenumber approximations by spatial central difference operators.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#LindersN15,https://doi.org/10.1016/j.jcp.2015.08.005 +Meire Fortunato,High-order unstructured curved mesh generation using the Winslow equations.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#FortunatoP16,https://doi.org/10.1016/j.jcp.2015.11.020 +Niklas Wintermeyer,An entropy stable nodal discontinuous Galerkin method for the two dimensional shallow water equations on unstructured curvilinear meshes with discontinuous bathymetry.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#WintermeyerWGK17,https://doi.org/10.1016/j.jcp.2017.03.036 +Yingjun Jiang,Domain decomposition methods for space fractional partial differential equations.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#JiangX17,https://doi.org/10.1016/j.jcp.2017.08.066 +Lijian Jiang,Model reduction method using variable-separation for stochastic saddle point problems.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#JiangL18,https://doi.org/10.1016/j.jcp.2017.10.056 +Bangti Jin,Inversion of Robin coefficient by a spectral stochastic finite element approach.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#JinZ08,https://doi.org/10.1016/j.jcp.2007.11.042 +Vincent Moureau,A ghost-fluid method for large-eddy simulations of premixed combustion in complex geometries.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#MoureauMPB07,https://doi.org/10.1016/j.jcp.2006.06.031 +Simone Melchionna,Incorporation of smooth spherical bodies in the Lattice Boltzmann method.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#Melchionna11,https://doi.org/10.1016/j.jcp.2011.02.021 +Peter C. Ma,An entropy-stable hybrid scheme for simulations of transcritical real-fluid flows.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#MaLI17,https://doi.org/10.1016/j.jcp.2017.03.022 +Asha Kumari Meena,Positivity-preserving high-order discontinuous Galerkin schemes for Ten-Moment Gaussian closure equations.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#MeenaKC17,https://doi.org/10.1016/j.jcp.2017.03.024 +A. R. Koblitz,Direct numerical simulation of particulate flows with an overset grid method.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#KoblitzLNH17,https://doi.org/10.1016/j.jcp.2017.04.058 +Ulrich Dobramysl,Mixed analytical-stochastic simulation method for the recovery of a Brownian gradient source from probability fluxes to small windows.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#DobramyslH18,https://doi.org/10.1016/j.jcp.2017.10.058 +Mark J. Stock,Impact of a vortex ring on a density interface using a regularized inviscid vortex sheet method.,2008,227,J. Comput. Physics,21,db/journals/jcphy/jcphy227.html#StockDT08,https://doi.org/10.1016/j.jcp.2008.05.022 +Hiroaki Nishikawa,Accuracy-preserving boundary flux quadrature for finite-volume discretization on unstructured grids.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#Nishikawa15,https://doi.org/10.1016/j.jcp.2014.10.033 +Konstantin A. Kemenov,Explicit small-scale velocity simulation for high-Re turbulent flows.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#KemenovM06,https://doi.org/10.1016/j.jcp.2006.05.006 +Jincong He,Enhanced linearized reduced-order models for subsurface flow simulation.,2011,230,J. Comput. Physics,23,db/journals/jcphy/jcphy230.html#HeSD11,https://doi.org/10.1016/j.jcp.2011.06.007 +Alexandre M. Tartakovsky,Simulations of reactive transport and precipitation with smoothed particle hydrodynamics.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#TartakovskyMSW07,https://doi.org/10.1016/j.jcp.2006.08.013 +John D. Towers,Finite difference methods for approximating Heaviside functions.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#Towers09,https://doi.org/10.1016/j.jcp.2009.01.026 +Pauline Lafitte,A high-order relaxation method with projective integration for solving nonlinear systems of hyperbolic conservation laws.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#LafitteMS17,https://doi.org/10.1016/j.jcp.2017.03.027 +Pedro S. Peixoto,On vector field reconstructions for semi-Lagrangian transport methods on geodesic staggered grids.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#PeixotoB14,https://doi.org/10.1016/j.jcp.2014.04.043 +Bruno Turcksin,Discontinuous diffusion synthetic acceleration for Sn transport on 2D arbitrary polygonal meshes.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#TurcksinR14,https://doi.org/10.1016/j.jcp.2014.05.044 +Arpit Mittal,Hybrid discrete ordinates - spherical harmonics solution to the Boltzmann Transport Equation for phonons for non-equilibrium heat conduction.,2011,230,J. Comput. Physics,18,db/journals/jcphy/jcphy230.html#MittalM11,https://doi.org/10.1016/j.jcp.2011.05.024 +Yu Mao Wu,Frequency-independent approach to calculate physical optics radiations with the quadratic concave phase variations.,2016,324,J. Comput. Physics,,db/journals/jcphy/jcphy324.html#WuT16,https://doi.org/10.1016/j.jcp.2016.07.029 +A. H. Bhrawy,A fully spectral collocation approximation for multi-dimensional fractional Schrödinger equations.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#BhrawyA15,https://doi.org/10.1016/j.jcp.2015.03.063 +Jean-Baptiste Chapelier,A Coherent vorticity preserving eddy-viscosity correction for Large-Eddy Simulation.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#ChapelierWS18,https://doi.org/10.1016/j.jcp.2018.01.012 +Charles Tadjeran,A second-order accurate numerical approximation for the fractional diffusion equation.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#TadjeranMS06,https://doi.org/10.1016/j.jcp.2005.08.008 +Amirhossein Aminfar,A fast block low-rank dense solver with applications to finite-element matrices.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#AminfarAD16,https://doi.org/10.1016/j.jcp.2015.10.012 +Lars Pesch,A discontinuous Galerkin finite element discretization of the Euler equations for compressible and incompressible fluids.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#PeschV08,https://doi.org/10.1016/j.jcp.2008.01.046 +Charles Pierre,Numerical computation of 3D heat transfer in complex parallel heat exchangers using generalized Graetz modes.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#PierreBGP14,https://doi.org/10.1016/j.jcp.2014.02.037 +Yang Liu,A new time-space domain high-order finite-difference method for the acoustic wave equation.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#LiuS09,https://doi.org/10.1016/j.jcp.2009.08.027 +Ricardo Ruiz-Baier,Mixed finite element - discontinuous finite volume element discretization of a general class of multicontinuum models.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#Ruiz-BaierL16,https://doi.org/10.1016/j.jcp.2016.06.054 +Philip T. Barton,A conservative level-set based method for compressible solid/fluid problems on fixed grids.,2011,230,J. Comput. Physics,21,db/journals/jcphy/jcphy230.html#BartonOD11,https://doi.org/10.1016/j.jcp.2011.07.008 +Reza Abedi,An asynchronous spacetime discontinuous Galerkin finite element method for time domain electromagnetics.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#AbediM17,https://doi.org/10.1016/j.jcp.2017.09.001 +Dong Liang,The spatial fourth-order energy-conserved S-FDTD scheme for Maxwell's equations.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#LiangY13,https://doi.org/10.1016/j.jcp.2013.02.040 +Antoine Llor,Energy preservation and entropy in Lagrangian space- and time-staggered hydrodynamic schemes.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#LlorCF16,https://doi.org/10.1016/j.jcp.2015.12.044 +Wanai Li,The multi-dimensional limiters for solving hyperbolic conservation laws on unstructured grids II: Extension to high order finite volume schemes.,2012,231,J. Comput. Physics,11,db/journals/jcphy/jcphy231.html#LiR12,https://doi.org/10.1016/j.jcp.2012.01.029 +Ulrik S. Fjordholm,Well-balanced and energy stable schemes for the shallow water equations with discontinuous topography.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#FjordholmMT11,https://doi.org/10.1016/j.jcp.2011.03.042 +Eric C. Cyr,Stabilization and scalable block preconditioning for the Navier-Stokes equations.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#CyrST12,https://doi.org/10.1016/j.jcp.2011.09.001 +Raoul van Loon,A fluid-structure interaction method with solid-rigid contact for heart valve dynamics.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#LoonAV06,https://doi.org/10.1016/j.jcp.2006.01.032 +M. Z. Jacobson,The effects of aircraft on climate and pollution. Part I: Numerical methods for treating the subgrid evolution of discrete size- and composition-resolved contrails from all commercial flights worldwide.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#JacobsonWNL11,https://doi.org/10.1016/j.jcp.2011.03.031 +N. Noormohammadi,A fictitious domain method using equilibrated basis functions for harmonic and bi-harmonic problems in physics.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#NoormohammadiB14,https://doi.org/10.1016/j.jcp.2014.04.011 +Nicholas D. Stehle,A hybrid transport-diffusion method for 2D transport problems with diffusive subdomains.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#StehleAA14,https://doi.org/10.1016/j.jcp.2014.03.056 +Ali Snedden,A new multi-scale structure finding algorithm to identify cosmological structure.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#SneddenPMCSB15,https://doi.org/10.1016/j.jcp.2015.07.004 +Andreas Haselbacher,An efficient and robust particle-localization algorithm for unstructured grids.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#HaselbacherNF07,https://doi.org/10.1016/j.jcp.2007.03.018 +Zhu Huang,Adaptive radial basis function and Hermite function pseudospectral methods for computing eigenvalues of the prolate spheroidal wave equation for very large bandwidth parameter.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#HuangXB15,https://doi.org/10.1016/j.jcp.2014.10.024 +Ting Long,An arbitrary boundary with ghost particles incorporated in coupled FEM-SPH model for FSI problems.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#LongHWZY17,https://doi.org/10.1016/j.jcp.2017.08.044 +Mu Wang,Spectral Ewald Acceleration of Stokesian Dynamics for polydisperse suspensions.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#WangB16,https://doi.org/10.1016/j.jcp.2015.11.042 +Giorgos Arampatzis,Hierarchical fractional-step approximations and parallel kinetic Monte Carlo algorithms.,2012,231,J. Comput. Physics,23,db/journals/jcphy/jcphy231.html#ArampatzisKPTX12,https://doi.org/10.1016/j.jcp.2012.07.017 +Raoul D. Schram,Reaction-diffusion model Monte Carlo simulations on the GPU.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#Schram13,https://doi.org/10.1016/j.jcp.2013.01.041 +Anastasios H. Panaretos,The effect of the 2-D Laplacian operator approximation on the performance of finite-difference time-domain schemes for Maxwell's equations.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#PanaretosAD07,https://doi.org/10.1016/j.jcp.2007.08.019 +Eliodoro Chiavazzo,Quasi-equilibrium grid algorithm: Geometric construction for model reduction.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#ChiavazzoK08,https://doi.org/10.1016/j.jcp.2008.02.006 +Adi Ditkowski,A grid redistribution method for singular problems.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#DitkowskiG09,https://doi.org/10.1016/j.jcp.2008.11.035 +Adrianna Gillman,Fast and accurate numerical methods for solving elliptic difference equations defined on lattices.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#GillmanM10,https://doi.org/10.1016/j.jcp.2010.07.024 +A. Scrinzi,On the non-equivalence of perfectly matched layers and exterior complex scaling.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#ScrinziSM14,https://doi.org/10.1016/j.jcp.2014.03.007 +Shreyas Bidadi,On the stability and diffusive characteristics of Roe-MUSCL and Runge-Kutta schemes for inviscid Taylor-Green vortex.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#BidadiR15a,https://doi.org/10.1016/j.jcp.2015.07.013 +Jan-Frederik Mennemann,Transient Schrödinger-Poisson simulations of a high-frequency resonant tunneling diode oscillator.,2013,239,J. Comput. Physics,,db/journals/jcphy/jcphy239.html#MennemannJK13,https://doi.org/10.1016/j.jcp.2012.12.009 +A. C. Faliagas,Mixed weak-perturbative solution method for Maxwell's equations of diffusion with Müller's partial stress tensor in the low velocity limit.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#Faliagas16,https://doi.org/10.1016/j.jcp.2015.12.046 +Peter R. Kramer,Comparative analysis of multiscale Gaussian random field simulation algorithms.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#KramerKS07,https://doi.org/10.1016/j.jcp.2007.05.002 +Zhigui Lin,Finite volume element approximation of an inhomogeneous Brusselator model with cross-diffusion.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#LinRT14,https://doi.org/10.1016/j.jcp.2013.09.009 +Yann Moguen,Semi-implicit characteristic-based boundary treatment for acoustics in low Mach number flows.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#MoguenBD13,https://doi.org/10.1016/j.jcp.2013.08.019 +Haihu Liu,Modeling and simulation of thermocapillary flows using lattice Boltzmann method.,2012,231,J. Comput. Physics,12,db/journals/jcphy/jcphy231.html#LiuZV12,https://doi.org/10.1016/j.jcp.2012.02.015 +Danielle C. Maddix,Numerical artifacts in the Generalized Porous Medium Equation: Why harmonic averaging itself is not to blame.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#MaddixSG18,https://doi.org/10.1016/j.jcp.2018.02.010 +Volkan Akcelik,Shape determination for deformed electromagnetic cavities.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#AkcelikKLLNX08,https://doi.org/10.1016/j.jcp.2007.09.029 +Xiangmin Jiao,Face offsetting: A unified approach for explicit moving interfaces.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#Jiao07,https://doi.org/10.1016/j.jcp.2006.05.021 +Alexandre Chiapolino,Sharpening diffuse interfaces with compressible fluids on unstructured meshes.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#ChiapolinoSN17,https://doi.org/10.1016/j.jcp.2017.03.042 +Andrew R. Siegel,The effect of load imbalances on the performance of Monte Carlo algorithms in LWR analysis.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#SiegelSRFF13,https://doi.org/10.1016/j.jcp.2012.06.012 +Meng Li,A fast linearized conservative finite element method for the strongly coupled nonlinear fractional Schrödinger equations.,2018,358,J. Comput. Physics,,db/journals/jcphy/jcphy358.html#LiGHFZ18,https://doi.org/10.1016/j.jcp.2017.12.044 +Kui Du,Two transparent boundary conditions for the electromagnetic scattering from two-dimensional overfilled cavities.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#Du11,https://doi.org/10.1016/j.jcp.2011.03.055 +B. Noetinger,A quasi steady state method for solving transient Darcy flow in complex 3D fractured networks accounting for matrix to fracture flow.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#Noetinger15,https://doi.org/10.1016/j.jcp.2014.11.038 +Alfredo Bermúdez,Numerical solution of non-isothermal non-adiabatic flow of real gases in pipelines.,2016,323,J. Comput. Physics,,db/journals/jcphy/jcphy323.html#BermudezLV16,https://doi.org/10.1016/j.jcp.2016.07.020 +Tingchun Wang,Fourth-order compact and energy conservative difference schemes for the nonlinear Schrödinger equation in two dimensions.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#WangGX13,https://doi.org/10.1016/j.jcp.2013.03.007 +Gang Li,High order finite volume WENO schemes for the Euler equations under gravitational fields.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#LiX16,https://doi.org/10.1016/j.jcp.2016.04.015 +Mohamed Zerroukat,The monotonic Quartic Spline Method (QSM) for conservative transport problems.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#ZerroukatSW10,https://doi.org/10.1016/j.jcp.2009.10.018 +Manuel Jesús Castro Díaz,A second order PVM flux limiter method. Application to magnetohydrodynamics and shallow stratified flows.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#DiazFNA14,https://doi.org/10.1016/j.jcp.2013.12.059 +Alex Kanevsky,Modeling simple locomotors in Stokes flow.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#KanevskyST10,https://doi.org/10.1016/j.jcp.2009.05.030 +Yuezheng Gong,Some new structure-preserving algorithms for general multi-symplectic formulations of Hamiltonian PDEs.,2014,279,J. Comput. Physics,,db/journals/jcphy/jcphy279.html#GongCW14,https://doi.org/10.1016/j.jcp.2014.09.001 +Tormod Bjøntegaard,Accurate interface-tracking for arbitrary Lagrangian-Eulerian schemes.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#BjontegaardR09,https://doi.org/10.1016/j.jcp.2009.03.012 +Sarah Mauger,GPU accelerated fully space and time resolved numerical simulations of self-focusing laser beams in SBS-active media.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#MaugerVBS13,https://doi.org/10.1016/j.jcp.2012.10.034 +Andrey A. Markov,Simulation of front motion in a reacting condensed two phase mixture.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#MarkovFM12,https://doi.org/10.1016/j.jcp.2012.06.003 +Alex H. Barnett,Stability and convergence of the method of fundamental solutions for Helmholtz problems on analytic domains.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#BarnettB08,https://doi.org/10.1016/j.jcp.2008.04.008 +Rémi Abgrall,Essentially non-oscillatory Residual Distribution schemes for hyperbolic problems.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#Abgrall06,https://doi.org/10.1016/j.jcp.2005.10.034 +Peng Chen,Uncertainty propagation using infinite mixture of Gaussian processes and variational Bayesian inference.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#ChenZB15,https://doi.org/10.1016/j.jcp.2014.12.028 +G. M. Zhang,Wave propagation in functionally graded materials by modified smoothed particle hydrodynamics (MSPH) method.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#ZhangB07,https://doi.org/10.1016/j.jcp.2006.07.028 +Christiaan M. Klaij,Space-time discontinuous Galerkin method for the compressible Navier-Stokes equations.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#KlaijVV06a,https://doi.org/10.1016/j.jcp.2006.01.018 +Kris Van den Abeele,Dispersion and dissipation properties of the 1D spectral volume method and application to a p-multigrid algorithm.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#AbeeleBL07,https://doi.org/10.1016/j.jcp.2006.10.022 +Junzhao Luo,A semi-implicit level set method for structural shape and topology optimization.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#LuoLCTW08,https://doi.org/10.1016/j.jcp.2008.02.003 +Frédéric Couderc,An explicit asymptotic preserving low Froude scheme for the multilayer shallow water model with density stratification.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#CoudercDV17,https://doi.org/10.1016/j.jcp.2017.04.018 +Siddharth Savadatti,Absorbing boundary conditions for scalar waves in anisotropic media. Part 1: Time harmonic modeling.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#SavadattiG10a,https://doi.org/10.1016/j.jcp.2010.05.018 +Stephen C. Jardin,On 1D diffusion problems with a gradient-dependent diffusion coefficient.,2008,227,J. Comput. Physics,20,db/journals/jcphy/jcphy227.html#JardinBHK08,https://doi.org/10.1016/j.jcp.2008.06.032 +Juan A. Acebrón,Highly efficient numerical algorithm based on random trees for accelerating parallel Vlasov-Poisson simulations.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#AcebronR13,https://doi.org/10.1016/j.jcp.2013.05.025 +Jean-Luc Guermond,Entropy viscosity method for nonlinear conservation laws.,2011,230,J. Comput. Physics,11,db/journals/jcphy/jcphy230.html#GuermondPP11,https://doi.org/10.1016/j.jcp.2010.11.043 +Tafizur Rehman,A cluster expansion model for predicting activation barrier of atomic processes.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#RehmanJC13,https://doi.org/10.1016/j.jcp.2013.03.005 +Per Pettersson,A well-posed and stable stochastic Galerkin formulation of the incompressible Navier-Stokes equations with random data.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#PetterssonND16,https://doi.org/10.1016/j.jcp.2015.11.027 +Hailong Guo,Gradient recovery for elliptic interface problem: II. Immersed finite element methods.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#GuoY17,https://doi.org/10.1016/j.jcp.2017.03.003 +Marcus R. Garvie,An efficient and robust numerical algorithm for estimating parameters in Turing systems.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#GarvieMT10,https://doi.org/10.1016/j.jcp.2010.05.040 +David P. Starinshak,A multimaterial extension to subzonal reconstruction.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#StarinshakO16,https://doi.org/10.1016/j.jcp.2015.11.056 +Sashikumaar Ganesan,Simulations of impinging droplets with surfactant-dependent dynamic contact angle.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#Ganesan15,https://doi.org/10.1016/j.jcp.2015.08.026 +Alex Townsend,The automatic solution of partial differential equations using a global spectral method.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#TownsendO15,https://doi.org/10.1016/j.jcp.2015.06.031 +Milo R. Dorr,A numerical algorithm for the solution of a phase-field model of polycrystalline materials.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#DorrFWBT10,https://doi.org/10.1016/j.jcp.2009.09.041 +Irene M. Gamba,A conservative spectral method for the Boltzmann equation with anisotropic scattering and the grazing collisions limit.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#GambaH14,https://doi.org/10.1016/j.jcp.2014.03.035 +Xiangyang Cui,A triangular prism solid and shell interactive mapping element for electromagnetic sheet metal forming process.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#CuiLFL17,https://doi.org/10.1016/j.jcp.2017.02.014 +Diego álvarez,Crack reconstruction using a level-set strategy.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#AlvarezDIM09,https://doi.org/10.1016/j.jcp.2009.04.038 +Tan Ren,Runge-Kutta central discontinuous Galerkin BGK method for the Navier-Stokes equations.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#RenHXQ14,https://doi.org/10.1016/j.jcp.2014.06.045 +Songze Chen,A comparative study of an asymptotic preserving scheme and unified gas-kinetic scheme in continuum flow limit.,2015,288,J. Comput. Physics,,db/journals/jcphy/jcphy288.html#ChenX15,https://doi.org/10.1016/j.jcp.2015.02.014 +Harun Kurkcu,An integral representation of the Green function for a linear array of acoustic point sources.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#KurkcuNR11,https://doi.org/10.1016/j.jcp.2010.12.034 +Min-Geun Kim,Adjoint design sensitivity analysis of reduced atomic systems using generalized Langevin equation for lattice structures.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#KimJC13,https://doi.org/10.1016/j.jcp.2013.01.020 +Binghai Wen,Galilean invariant fluid-solid interfacial dynamics in lattice Boltzmann simulations.,2014,266,J. Comput. Physics,,db/journals/jcphy/jcphy266.html#WenZTWF14,https://doi.org/10.1016/j.jcp.2014.02.018 +Emmanuel Maitre,Level set methods for optimization problems involving geometry and constraints II. Optimization over a fixed surface.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#MaitreS08,https://doi.org/10.1016/j.jcp.2008.07.011 +Emmanuel Germaine,3DFLUX: A high-order fully three-dimensional flux integral solver for the scalar transport equation.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#GermaineMC13,https://doi.org/10.1016/j.jcp.2013.01.010 +Ying He 0007,A new spectral method for numerical solution of the unbounded rough surface scattering problem.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#HeLS14,https://doi.org/10.1016/j.jcp.2014.07.026 +S. Jolliet,Parallel filtering in global gyrokinetic simulations.,2012,231,J. Comput. Physics,3,db/journals/jcphy/jcphy231.html#JollietMVVATBBI12,https://doi.org/10.1016/j.jcp.2011.01.029 +Jorge M. Ramírez,Multiplicative cascades applied to PDEs (two numerical examples).,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#Ramirez06,https://doi.org/10.1016/j.jcp.2005.09.006 +Sylvain Reboux,A self-organizing Lagrangian particle method for adaptive-resolution advection-diffusion simulations.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#RebouxSS12,https://doi.org/10.1016/j.jcp.2012.01.026 +Wenxiao Pan,Modeling electrokinetic flows by consistent implicit incompressible smoothed particle hydrodynamics.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#PanKPTP17,https://doi.org/10.1016/j.jcp.2016.12.042 +Devon Powell,An exact general remeshing scheme applied to physically conservative voxelization.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#PowellA15,https://doi.org/10.1016/j.jcp.2015.05.022 +Santiago Badia,Block recursive LU preconditioners for the thermally coupled incompressible inductionless MHD problem.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#BadiaMP14,https://doi.org/10.1016/j.jcp.2014.06.028 +Rui Chen 0004,Decoupled energy stable schemes for phase-field vesicle membrane model.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#ChenJYZ15,https://doi.org/10.1016/j.jcp.2015.09.025 +Steven J. Ruuth,A simple embedding method for solving partial differential equations on surfaces.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#RuuthM08,https://doi.org/10.1016/j.jcp.2007.10.009 +N. J. van der Kaap,Massively parallel kinetic Monte Carlo simulations of charge carrier transport in organic semiconductors.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#KaapK16,https://doi.org/10.1016/j.jcp.2015.12.001 +G. B. Jacobs,High-order nodal discontinuous Galerkin particle-in-cell method on unstructured grids.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#JacobsH06,https://doi.org/10.1016/j.jcp.2005.09.008 +Kristoffer Virta,Interface waves in almost incompressible elastic materials.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#VirtaK15,https://doi.org/10.1016/j.jcp.2015.09.051 +Zahra Shojaaee,An adaptive hierarchical domain decomposition method for parallel contact dynamics simulations of granular materials.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#ShojaaeeSBTW12,https://doi.org/10.1016/j.jcp.2011.09.024 +Graham W. Alldredge,A realizability-preserving discontinuous Galerkin scheme for entropy-based moment closures for linear kinetic equations in one space dimension.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#AlldredgeS15,https://doi.org/10.1016/j.jcp.2015.04.034 +Paolo Amore,High order eigenvalues for the Helmholtz equation in complicated non-tensor domains through Richardson extrapolation of second order finite differences.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#AmoreBFR16,https://doi.org/10.1016/j.jcp.2015.12.059 +Guo-Wei Wei,"On the validity of ""A proof that the discrete singular convolution (DSC)/Lagrange-distributed approximation function (LDAF) method is inferior to high order finite differences"".",2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#WeiZ07,https://doi.org/10.1016/j.jcp.2007.05.036 +Feng-Nan Hwang,A parallel additive Schwarz preconditioned Jacobi-Davidson algorithm for polynomial eigenvalue problems in quantum dot simulation.,2010,229,J. Comput. Physics,8,db/journals/jcphy/jcphy229.html#HwangWHW10,https://doi.org/10.1016/j.jcp.2009.12.024 +Pradeep Singh Rawat,On high-order shock-fitting and front-tracking schemes for numerical simulation of shock-disturbance interactions.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#RawatZ10,https://doi.org/10.1016/j.jcp.2010.05.021 +Pavel P. Popov,An accurate time advancement algorithm for particle tracking.,2008,227,J. Comput. Physics,20,db/journals/jcphy/jcphy227.html#PopovMP08,https://doi.org/10.1016/j.jcp.2008.06.021 +Wei Zhu 0007,Scientific data interpolation with low dimensional manifold model.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#ZhuWBHJO18,https://doi.org/10.1016/j.jcp.2017.09.048 +Jim E. Morel,Spatial discretizations for self-adjoint forms of the radiative transfer equations.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#MorelANMEU06,https://doi.org/10.1016/j.jcp.2005.09.017 +J. S. Marshall,Discrete-element modeling of particulate aerosol flows.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#Marshall09,https://doi.org/10.1016/j.jcp.2008.10.035 +Eliodoro Chiavazzo,Approximation of slow and fast dynamics in multiscale dynamical systems by the linearized Relaxation Redistribution Method.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#Chiavazzo12,https://doi.org/10.1016/j.jcp.2011.11.007 +Soshi Kawai,Divergence-free-preserving high-order schemes for magnetohydrodynamics: An artificial magnetic resistivity method.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#Kawai13,https://doi.org/10.1016/j.jcp.2013.05.033 +Andrea Villa,A PDE-based partial discharge simulator.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#VillaBGLM17a,https://doi.org/10.1016/j.jcp.2017.05.045 +A. Sibra,Simulation of reactive polydisperse sprays strongly coupled to unsteady flows in solid rocket motors: Efficient strategy using Eulerian Multi-Fluid methods.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#SibraDMLM17,https://doi.org/10.1016/j.jcp.2017.02.003 +Nathan V. Roberts,A discontinuous Petrov-Galerkin methodology for adaptive solutions to the incompressible Navier-Stokes equations.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#RobertsDM15,https://doi.org/10.1016/j.jcp.2015.07.014 +Hyun-Gyu Kang,An efficient implementation of a high-order filter for a cubed-sphere spectral element model.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#KangC17,https://doi.org/10.1016/j.jcp.2016.12.001 +Li Wang,Adjoint-based h-p adaptive discontinuous Galerkin methods for the 2D compressible Euler equations.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#WangM09,https://doi.org/10.1016/j.jcp.2009.07.012 +Pierre Crispel,An asymptotic preserving scheme for the two-fluid Euler-Poisson model in the quasineutral limit.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#CrispelDV07,https://doi.org/10.1016/j.jcp.2006.09.004 +Farshid Nazari,High-order low-dissipation low-dispersion diagonally implicit Runge-Kutta schemes.,2015,286,J. Comput. Physics,,db/journals/jcphy/jcphy286.html#NazariMC15,https://doi.org/10.1016/j.jcp.2015.01.020 +Yogesh G. Bhumkar,A dispersion relation preserving optimized upwind compact difference scheme for high accuracy flow simulations.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#BhumkarSS14,https://doi.org/10.1016/j.jcp.2014.08.040 +Giacomo Dimarco,Towards an ultra efficient kinetic scheme. Part II: The high order case.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#DimarcoL13a,https://doi.org/10.1016/j.jcp.2013.07.017 +Ryan I. Fernandes,An ADI extrapolated Crank-Nicolson orthogonal spline collocation method for nonlinear reaction-diffusion systems.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#FernandesF12,https://doi.org/10.1016/j.jcp.2012.04.001 +Xiaosong Sun,Three-dimensional simulation of a solid-liquid flow by the DEM-SPH method.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#SunSY13,https://doi.org/10.1016/j.jcp.2013.04.019 +Tomoaki Watanabe,LES-Lagrangian particle method for turbulent reactive flows based on the approximate deconvolution model and mixing model.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#WatanabeSNIH15,https://doi.org/10.1016/j.jcp.2015.03.038 +Troy D. Butler,Reparameterization for statistical state estimation applied to differential equations.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#ButlerJ12,https://doi.org/10.1016/j.jcp.2011.12.019 +Hongwei Cheng,A wideband fast multipole method for the Helmholtz equation in three dimensions.,2006,216,J. Comput. Physics,1,db/journals/jcphy/jcphy216.html#ChengCGGEHRYZ06,https://doi.org/10.1016/j.jcp.2005.12.001 +Mikhail Z. Tokar,Numerical solution of continuity equation with a flux non-linearly depending on the density gradient.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#Tokar06,https://doi.org/10.1016/j.jcp.2006.05.005 +Sheng Xu,An immersed interface method for simulating the interaction of a fluid with moving boundaries.,2006,216,J. Comput. Physics,2,db/journals/jcphy/jcphy216.html#XuW06,https://doi.org/10.1016/j.jcp.2005.12.016 +Wei Wang 0027,High-order well-balanced schemes and applications to non-equilibrium flow.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#WangSYS09,https://doi.org/10.1016/j.jcp.2009.05.028 +Peng Zhang 0030,A general solution strategy of modified power method for higher mode solutions.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#ZhangLL16,https://doi.org/10.1016/j.jcp.2015.10.042 +D. C. Barnes,Continuously differentiable PIC shape functions for triangular meshes.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#Barnes18,https://doi.org/10.1016/j.jcp.2018.02.002 +Jian-Guo Liu,Stable and accurate pressure approximation for unsteady incompressible viscous flow.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#LiuLP10,https://doi.org/10.1016/j.jcp.2010.01.010 +Weidong Li 0004,High order spectral difference lattice Boltzmann method for incompressible hydrodynamics.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#Li17,https://doi.org/10.1016/j.jcp.2017.05.039 +W. N. Edeling,Predictive RANS simulations via Bayesian Model-Scenario Averaging.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#EdelingCD14,https://doi.org/10.1016/j.jcp.2014.06.052 +Burton Wendroff,A compact artificial viscosity equivalent to a tensor viscosity.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#Wendroff10,https://doi.org/10.1016/j.jcp.2010.05.034 +Peter A. Maginnis,Variance-reduced simulation of lattice discrete-time Markov chains with applications in reaction networks.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#MaginnisWD16,https://doi.org/10.1016/j.jcp.2016.06.019 +Tengfei Liang,A physical-based gas-surface interaction model for rarefied gas flow simulation.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#LiangLY18,https://doi.org/10.1016/j.jcp.2017.08.061 +Ruihan Guo,Semi-implicit spectral deferred correction methods for highly nonlinear partial differential equations.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#GuoXX17,https://doi.org/10.1016/j.jcp.2017.02.059 +Matthias Morzfeld,A random map implementation of implicit filters.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#MorzfeldTAC12,https://doi.org/10.1016/j.jcp.2011.11.022 +Nicolas Grenier,An Hamiltonian interface SPH formulation for multi-fluid and free surface flows.,2009,228,J. Comput. Physics,22,db/journals/jcphy/jcphy228.html#GrenierACTA09,https://doi.org/10.1016/j.jcp.2009.08.009 +Philipp Metzner,Generator estimation of Markov jump processes.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#MetznerDJS07,https://doi.org/10.1016/j.jcp.2007.07.032 +E. Vergnault,A lattice Boltzmann method for nonlinear disturbances around an arbitrary base flow.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#VergnaultMS12,https://doi.org/10.1016/j.jcp.2012.07.021 +Daniel Y. Le Roux,Spurious inertial oscillations in shallow-water models.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#Roux12,https://doi.org/10.1016/j.jcp.2012.04.052 +Kyle J. Lange,Using sensitivity derivatives for design and parameter estimation in an atmospheric plasma discharge simulation.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#LangeA10,https://doi.org/10.1016/j.jcp.2010.04.038 +Mario Alvarez,A posteriori error estimation for an augmented mixed-primal method applied to sedimentation-consolidation systems.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#AlvarezGR18,https://doi.org/10.1016/j.jcp.2018.04.040 +Travis C. Fisher,High-order entropy stable finite difference schemes for nonlinear conservation laws: Finite domains.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#FisherC13,https://doi.org/10.1016/j.jcp.2013.06.014 +Howard C. Elman,Fast iterative solvers for buoyancy driven flow problems.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#ElmanMS11,https://doi.org/10.1016/j.jcp.2011.02.014 +Lin Mu,A stable numerical algorithm for the Brinkman equations by weak Galerkin finite element methods.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#MuWY14,https://doi.org/10.1016/j.jcp.2014.04.017 +Shravan K. Veerapaneni,A numerical method for simulating the dynamics of 3D axisymmetric vesicles suspended in viscous flows.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#VeerapaneniGBZ09,https://doi.org/10.1016/j.jcp.2009.06.020 +Liwei Xu,Numerical simulation of three-dimensional nonlinear water waves.,2009,228,J. Comput. Physics,22,db/journals/jcphy/jcphy228.html#XuG09,https://doi.org/10.1016/j.jcp.2009.08.015 +Arturas Ziemys,Hierarchical modeling of diffusive transport through nanochannels by coupling molecular dynamics with finite element method.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#ZiemysKMKHFG11,https://doi.org/10.1016/j.jcp.2011.03.054 +Li-Tien Cheng,Redistancing by flow of time dependent eikonal equation.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#ChengT08,https://doi.org/10.1016/j.jcp.2007.12.018 +Samuel Temple Reeve,Error correction in multi-fidelity molecular dynamics simulations using functional uncertainty quantification.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#ReeveS17,https://doi.org/10.1016/j.jcp.2016.12.039 +Aleksei I. Shestakov,A multigroup diffusion solver using pseudo transient continuation for a radiation-hydrodynamic code with patch-based AMR.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#ShestakovO08,https://doi.org/10.1016/j.jcp.2007.09.019 +Francesco Bassi,An artificial compressibility flux for the discontinuous Galerkin solution of the incompressible Navier-Stokes equations.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#BassiCPR06,https://doi.org/10.1016/j.jcp.2006.03.006 +Hiroaki Nishikawa,Divergence formulation of source term.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#Nishikawa12,https://doi.org/10.1016/j.jcp.2012.05.032 +Yunqing Huang,Recovery of normal derivatives from the piecewise L2 projection.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#HuangLY12,https://doi.org/10.1016/j.jcp.2011.10.001 +Varun Shankar,The overlapped radial basis function-finite difference (RBF-FD) method: A generalization of RBF-FD.,2017,342,J. Comput. Physics,,db/journals/jcphy/jcphy342.html#Shankar17,https://doi.org/10.1016/j.jcp.2017.04.037 +Zhenli Xu,Solving fluctuation-enhanced Poisson-Boltzmann equations.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#XuM14,https://doi.org/10.1016/j.jcp.2014.07.004 +Stylianos Dosopoulos,Interconnect and lumped elements modeling in interior penalty discontinuous Galerkin time-domain methods.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#DosopoulosL10,https://doi.org/10.1016/j.jcp.2010.07.036 +Matthew Buoni,An algorithm for simulation of electrochemical systems with surface-bulk coupling strategies.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#BuoniP10,https://doi.org/10.1016/j.jcp.2009.09.032 +Philipp Trisjono,On a consistent high-order finite difference scheme with kinetic energy conservation for simulating turbulent reacting flows.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#TrisjonoKP16,https://doi.org/10.1016/j.jcp.2016.09.052 +Oscar P. Bruno,High-order unconditionally stable FC-AD solvers for general smooth domains I. Basic elements.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#BrunoL10,https://doi.org/10.1016/j.jcp.2009.11.020 +D. S. Watvisave,A hybrid MD-DSMC coupling method to investigate flow characteristics of micro-devices.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#WatvisavePB15,https://doi.org/10.1016/j.jcp.2015.09.012 +Sergio Blanes,An efficient algorithm based on splitting for the time integration of the Schrödinger equation.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#BlanesCM15,https://doi.org/10.1016/j.jcp.2015.09.047 +Arnab Chaudhuri,On the use of immersed boundary methods for shock/obstacle interactions.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#ChaudhuriHC11,https://doi.org/10.1016/j.jcp.2010.11.016 +S. Yan,Numerical simulation of fully nonlinear interaction between steep waves and 2D floating bodies using the QALE-FEM method.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#YanM07,https://doi.org/10.1016/j.jcp.2006.06.046 +Aaron Katz,Multicloud: Multigrid convergence with a meshless operator.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#KatzJ09,https://doi.org/10.1016/j.jcp.2009.04.023 +Kenneth Duru,Stable and high order accurate difference methods for the elastic wave equation in discontinuous media.,2014,279,J. Comput. Physics,,db/journals/jcphy/jcphy279.html#DuruV14,https://doi.org/10.1016/j.jcp.2014.08.046 +Xiangxiong Zhang,On positivity-preserving high order discontinuous Galerkin schemes for compressible Euler equations on rectangular meshes.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#ZhangS10a,https://doi.org/10.1016/j.jcp.2010.08.016 +A. F. Lifschitz,Particle-in-Cell modelling of laser-plasma interaction using Fourier decomposition.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#LifschitzDLFRM09,https://doi.org/10.1016/j.jcp.2008.11.017 +G. R. Anjos,A 3D moving mesh Finite Element Method for two-phase flows.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#AnjosBMT14,https://doi.org/10.1016/j.jcp.2014.03.067 +Jincheng Ren,Compact difference scheme for the fractional sub-diffusion equation with Neumann boundary conditions.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#RenSZ13,https://doi.org/10.1016/j.jcp.2012.08.026 +Samir Shrestha,Numerical simulation of a moving rigid body in a rarefied gas.,2015,292,J. Comput. Physics,,db/journals/jcphy/jcphy292.html#ShresthaTKH15,https://doi.org/10.1016/j.jcp.2015.03.030 +Ivana Seric,Direct numerical simulation of variable surface tension flows using a Volume-of-Fluid method.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#SericAK18,https://doi.org/10.1016/j.jcp.2017.10.008 +Francisco de la Hoz,A pseudo-spectral method for a non-local KdV-Burgers equation posed on R.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#HozC16,https://doi.org/10.1016/j.jcp.2016.01.031 +Alexander M. Bronstein,Weighted distance maps computation on parametric three-dimensional manifolds.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#BronsteinBK07,https://doi.org/10.1016/j.jcp.2007.01.009 +Gérard Labrosse,The optimal 3-node preconditioner of the d2/dx2 Fourier and Chebyshev spectral operators.,2011,230,J. Comput. Physics,1,db/journals/jcphy/jcphy230.html#LabrosseR11,https://doi.org/10.1016/j.jcp.2010.09.016 +C. C. Joggerst,Cross-code comparisons of mixing during the implosion of dense cylindrical and spherical shells.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#JoggerstNWLMFRFR14,https://doi.org/10.1016/j.jcp.2014.06.037 +Pao-Hsiung Chiu,A dispersion-relation-preserving algorithm for a nonlinear shallow-water wave equation.,2009,228,J. Comput. Physics,21,db/journals/jcphy/jcphy228.html#ChiuLS09,https://doi.org/10.1016/j.jcp.2009.07.030 +Haijian Yang,Nonlinearly preconditioned semismooth Newton methods for variational inequality solution of two-phase flow in porous media.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#YangSY17,https://doi.org/10.1016/j.jcp.2016.11.036 +María Jesús Algar,An efficient hybrid technique in RCS predictions of complex targets at high frequencies.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#AlgarLMDC17,https://doi.org/10.1016/j.jcp.2017.05.035 +Fei Lu 0007,Limitations of polynomial chaos expansions in the Bayesian solution of inverse problems.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#LuMTC15,https://doi.org/10.1016/j.jcp.2014.11.010 +Duane Rosenberg,Geophysical-astrophysical spectral-element adaptive refinement (GASpAR): Object-oriented h-adaptive fluid dynamics simulation.,2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#RosenbergFFP06,https://doi.org/10.1016/j.jcp.2005.10.031 +Luca Gerardo-Giorda,A model-based block-triangular preconditioner for the Bidomain system in electrocardiology.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#Gerardo-GiordaMNPV09,https://doi.org/10.1016/j.jcp.2009.01.034 +Andrew Perrin,An explicit finite-difference scheme for simulation of moving particles.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#PerrinH06,https://doi.org/10.1016/j.jcp.2005.06.021 +Braxton Osting,Optimization of spectral functions of Dirichlet-Laplacian eigenvalues.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#Osting10,https://doi.org/10.1016/j.jcp.2010.07.040 +Ngoc Cuong Nguyen,Hybridizable discontinuous Galerkin methods for partial differential equations in continuum mechanics.,2012,231,J. Comput. Physics,18,db/journals/jcphy/jcphy231.html#NguyenP12,https://doi.org/10.1016/j.jcp.2012.02.033 +Vahid Reza Hosseini,Local radial point interpolation (MLRPI) method for solving time fractional diffusion-wave equation with damping.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#HosseiniSC16,https://doi.org/10.1016/j.jcp.2016.02.030 +Dirk Peschka,Thin-film free boundary problems for partial wetting.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#Peschka15,https://doi.org/10.1016/j.jcp.2015.04.041 +Weinan E,A general strategy for designing seamless multiscale methods.,2009,228,J. Comput. Physics,15,db/journals/jcphy/jcphy228.html#ERV09,https://doi.org/10.1016/j.jcp.2009.04.030 +Shintaro Takeuchi,Interaction problem between fluid and membrane by a consistent direct discretisation approach.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#TakeuchiFGK18,https://doi.org/10.1016/j.jcp.2018.05.033 +L. Soucasse,Subgrid-scale model for radiative transfer in turbulent participating media.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#SoucasseRS14,https://doi.org/10.1016/j.jcp.2013.10.006 +Mehrtash Babadi,Analytical first derivatives of the RE-squared interaction potential.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#BabadiEE06,https://doi.org/10.1016/j.jcp.2006.04.014 +Jannis Teunissen,Controlling the weights of simulation particles: adaptive particle management using k-d trees.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#TeunissenE14,https://doi.org/10.1016/j.jcp.2013.12.005 +J. Blair Perot,Differential forms for scientists and engineers.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#PerotZ14,https://doi.org/10.1016/j.jcp.2013.08.007 +Frédérique Laurent,Realizable second-order finite-volume schemes for the advection of moment sets of the particle size distribution.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#LaurentN17,https://doi.org/10.1016/j.jcp.2017.02.046 +Maurizio Tavelli,Arbitrary high order accurate space-time discontinuous Galerkin finite element schemes on staggered unstructured meshes for linear elasticity.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#TavelliD18,https://doi.org/10.1016/j.jcp.2018.03.038 +Arthur Stück,Adjoint complement to viscous finite-volume pressure-correction methods.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#StuckR13,https://doi.org/10.1016/j.jcp.2013.01.002 +Sebastian Aland,Diffuse interface models of locally inextensible vesicles in a viscous fluid.,2014,277,J. Comput. Physics,,db/journals/jcphy/jcphy277.html#AlandELV14,https://doi.org/10.1016/j.jcp.2014.08.016 +A. R. Owens,Discontinuous isogeometric analysis methods for the first-order form of the neutron transport equation with discrete ordinate (SN) angular discretisation.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#OwensWKE16,https://doi.org/10.1016/j.jcp.2016.03.060 +Jianming Yang,Sharp interface immersed-boundary/level-set method for wave-body interactions.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#YangS09,https://doi.org/10.1016/j.jcp.2009.05.047 +Felix S. Schranner,On the convergence of the weakly compressible sharp-interface method for two-phase flows.,2016,324,J. Comput. Physics,,db/journals/jcphy/jcphy324.html#SchrannerHA16,https://doi.org/10.1016/j.jcp.2016.07.037 +Yicun Zhen,Adaptive error covariances estimation methods for ensemble Kalman filters.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#ZhenH15,https://doi.org/10.1016/j.jcp.2015.03.061 +Shuwang Li,A rescaling scheme with application to the long-time simulation of viscous fingering in a Hele-Shaw cell.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#LiLL07,https://doi.org/10.1016/j.jcp.2006.12.023 +Yves Achdou,Transparent boundary conditions for the Helmholtz equation in some ramified domains with a fractal boundary.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#AchdouST07,https://doi.org/10.1016/j.jcp.2006.05.033 +Mark Sussman,A sharp interface method for incompressible two-phase flows.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#SussmanSHOR07,https://doi.org/10.1016/j.jcp.2006.06.020 +Wenjie Liu,Some numerical algorithms for solving the highly oscillatory second-order initial value problems.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#LiuWS14,https://doi.org/10.1016/j.jcp.2014.07.033 +S. Ianniello,A self-adaptive oriented particles Level-Set method for tracking interfaces.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#IannielloM10,https://doi.org/10.1016/j.jcp.2009.10.034 +Hanquan Wang,An efficient numerical method for computing dynamics of spin F = 2 Bose-Einstein condensates.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#Wang11,https://doi.org/10.1016/j.jcp.2011.04.021 +Feng Zheng,Finite difference Hermite WENO schemes for the Hamilton-Jacobi equations.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#ZhengSQ17,https://doi.org/10.1016/j.jcp.2017.02.033 +Guillaume Bal,A hybrid (Monte Carlo/deterministic) approach for multi-dimensional radiation transport.,2011,230,J. Comput. Physics,20,db/journals/jcphy/jcphy230.html#BalDL11,https://doi.org/10.1016/j.jcp.2011.06.029 +Vincent Deledicque,A conservative approximation to compressible two-phase flow models in the stiff mechanical relaxation limit.,2008,227,J. Comput. Physics,21,db/journals/jcphy/jcphy227.html#DeledicqueP08,https://doi.org/10.1016/j.jcp.2007.12.011 +Ling-Tian Gao,A phase field method for simulating morphological evolution of vesicles in electric fields.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#GaoFG09,https://doi.org/10.1016/j.jcp.2009.02.034 +Claudio Bierig,Approximation of probability density functions by the Multilevel Monte Carlo Maximum Entropy method.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#BierigC16,https://doi.org/10.1016/j.jcp.2016.03.027 +Zbigniew Pawel Piotrowski,On numerical realizability of thermal convection.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#PiotrowskiSMW09,https://doi.org/10.1016/j.jcp.2009.05.023 +David L. Bilyeu,A two-dimensional fourth-order unstructured-meshed Euler solver based on the CESE method.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#BilyeuYCC14,https://doi.org/10.1016/j.jcp.2013.09.044 +Tian Jiang,Krylov implicit integration factor WENO methods for semilinear and fully nonlinear advection-diffusion-reaction equations.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#JiangZ13,https://doi.org/10.1016/j.jcp.2013.07.015 +Flaviu S. Cipcigan,Electronic coarse graining enhances the predictive power of molecular simulation allowing challenges in water physics to be addressed.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#CipciganSCM16,https://doi.org/10.1016/j.jcp.2016.08.030 +Chi-Ok Hwang,"Off-centered ""Walk-on-Spheres"" (WOS) algorithm.",2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#HwangHK15,https://doi.org/10.1016/j.jcp.2015.10.002 +Marcelo Buffoni,A non-linear observer for unsteady three-dimensional flows.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#BuffoniCILS08,https://doi.org/10.1016/j.jcp.2007.11.005 +N. Ansari,Filtered density function simulator on unstructured meshes.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#AnsariGSG11,https://doi.org/10.1016/j.jcp.2011.05.015 +Pedro Gonnet,A short note on the fast evaluation of dihedral angle potentials and their derivatives.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#Gonnet12,https://doi.org/10.1016/j.jcp.2011.12.022 +Gholam-Ali Zakeri,Sinc collocation approximation of non-smooth solution of a nonlinear weakly singular Volterra integral equation.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#ZakeriN10,https://doi.org/10.1016/j.jcp.2010.05.010 +H. C. Yee,Development of low dissipative high order filter schemes for multiscale Navier-Stokes/MHD systems.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#YeeS07,https://doi.org/10.1016/j.jcp.2007.01.012 +Alejandro L. Garcia,Generation of the Maxwellian inflow distribution.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#GarciaW06,https://doi.org/10.1016/j.jcp.2006.01.025 +Cosmin Safta,Hybrid discrete/continuum algorithms for stochastic reaction networks.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#SaftaSDN15,https://doi.org/10.1016/j.jcp.2014.10.026 +Jeroen A. S. Witteveen,An improved front tracking method for the Euler equations.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#WitteveenKB07,https://doi.org/10.1016/j.jcp.2006.10.020 +M. T. McGurn,An Eulerian-Lagrangian moving immersed interface method for simulating burning solids.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#McGurnRD13,https://doi.org/10.1016/j.jcp.2013.01.045 +Xinjuan Chen,A subset multicanonical Monte Carlo method for simulating rare failure events.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#ChenL17,https://doi.org/10.1016/j.jcp.2017.04.051 +Marco D. de Tullio,An immersed boundary method for compressible flows using local grid refinement.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#TullioPIPN07,https://doi.org/10.1016/j.jcp.2007.03.008 +Sylvain Maire,A partially reflecting random walk on spheres algorithm for electrical impedance tomography.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#MaireS15,https://doi.org/10.1016/j.jcp.2015.10.005 +Cyril Galitzine,An analysis of the convergence of the direct simulation Monte Carlo method.,2015,289,J. Comput. Physics,,db/journals/jcphy/jcphy289.html#GalitzineB15a,https://doi.org/10.1016/j.jcp.2015.02.039 +J. Tenreiro Machado,Numerical calculation of the left and right fractional derivatives.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#Machado15,https://doi.org/10.1016/j.jcp.2014.05.029 +Chunye Gong,GPU accelerated simulations of 3D deterministic particle transport using discrete ordinates method.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#GongLCHFG11,https://doi.org/10.1016/j.jcp.2011.04.010 +Bruno Seny,An efficient parallel implementation of explicit multirate Runge-Kutta schemes for discontinuous Galerkin computations.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#SenyLTLR14,https://doi.org/10.1016/j.jcp.2013.07.041 +Yaling Liu,Rheology of red blood cell aggregation by computer simulation.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#LiuL06,https://doi.org/10.1016/j.jcp.2006.05.010 +M. K. Cameron,Analysis and algorithms for a regularized cauchy problem arising from a non-linear elliptic PDE for seismic velocity estimation.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#CameronFS09,https://doi.org/10.1016/j.jcp.2009.06.036 +Houman Owhadi,Gamblets for opening the complexity-bottleneck of implicit schemes for hyperbolic and parabolic ODEs/PDEs with rough coefficients.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#OwhadiZ17,https://doi.org/10.1016/j.jcp.2017.06.037 +Donald J. Estep,A posteriori error estimation and adaptive mesh refinement for a multiscale operator decomposition approach to fluid-solid heat transfer.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#EstepTW10,https://doi.org/10.1016/j.jcp.2010.02.003 +Mario Chater,Simplified Least Squares Shadowing sensitivity analysis for chaotic ODEs and PDEs.,2017,329,J. Comput. Physics,,db/journals/jcphy/jcphy329.html#ChaterNW17,https://doi.org/10.1016/j.jcp.2016.10.035 +R. I. Saye,Analysis and applications of the Voronoi Implicit Interface Method.,2012,231,J. Comput. Physics,18,db/journals/jcphy/jcphy231.html#SayeS12,https://doi.org/10.1016/j.jcp.2012.04.004 +Qingming Chang,Application of the lattice Boltzmann method to two-phase Rayleigh-Benard convection with a deformable interface.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#ChangA06,https://doi.org/10.1016/j.jcp.2005.05.031 +Gang Li,Hybrid weighted essentially non-oscillatory schemes with different indicators.,2010,229,J. Comput. Physics,21,db/journals/jcphy/jcphy229.html#LiQ10,https://doi.org/10.1016/j.jcp.2010.07.012 +Jianqiang Han,An adaptive moving mesh method for two-dimensional ideal magnetohydrodynamics.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#HanT07,https://doi.org/10.1016/j.jcp.2006.05.031 +Emilie Marchandise,A stabilized finite element method using a discontinuous level set approach for the computation of bubble dynamics.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#MarchandiseGCR07,https://doi.org/10.1016/j.jcp.2007.01.005 +Manuel Jesús Castro Díaz,High order exactly well-balanced numerical methods for shallow water systems.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#DiazLP13,https://doi.org/10.1016/j.jcp.2013.03.033 +Jinho Kim,A stable HLLC Riemann solver for relativistic magnetohydrodynamics.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#KimB14,https://doi.org/10.1016/j.jcp.2014.04.023 +Christoph Karle,A parallel implementation of a two-dimensional fluid laser-plasma integrator for stratified plasma-vacuum systems.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#KarleSHS08,https://doi.org/10.1016/j.jcp.2008.04.024 +Andreas Hellander,Local error estimates for adaptive simulation of the reaction-diffusion master equation via operator splitting.,2014,266,J. Comput. Physics,,db/journals/jcphy/jcphy266.html#HellanderLDP14,https://doi.org/10.1016/j.jcp.2014.02.004 +Chunfeng Zhou,3D phase-field simulations of interfacial dynamics in Newtonian and viscoelastic fluids.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#ZhouYFOH10,https://doi.org/10.1016/j.jcp.2009.09.039 +Jing Li,A unified framework for mesh refinement in random and physical space.,2016,323,J. Comput. Physics,,db/journals/jcphy/jcphy323.html#LiS16,https://doi.org/10.1016/j.jcp.2016.07.027 +Kay Hamacher,Adaptive extremal optimization by detrended fluctuation analysis.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#Hamacher07,https://doi.org/10.1016/j.jcp.2007.09.013 +Xing Zheng,Incompressible SPH method based on Rankine source solution for violent water wave simulation.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#ZhengMD14,https://doi.org/10.1016/j.jcp.2014.07.036 +Wenjun Sun,An asymptotic preserving unified gas kinetic scheme for frequency-dependent radiative transfer equations.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#SunJXL15,https://doi.org/10.1016/j.jcp.2015.09.002 +Yifei Sun,A numerical solver for high dimensional transient Fokker-Planck equation in modeling polymeric fluids.,2015,289,J. Comput. Physics,,db/journals/jcphy/jcphy289.html#Sun015,https://doi.org/10.1016/j.jcp.2015.02.026 +Zhu Huang,Chebyshev-Fourier spectral methods in bipolar coordinates.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#HuangB15,https://doi.org/10.1016/j.jcp.2015.03.062 +Jen-Hao Chen,Exploring ground states and excited states of spin-1 Bose-Einstein condensates by continuation methods.,2011,230,J. Comput. Physics,6,db/journals/jcphy/jcphy230.html#ChenCW11,https://doi.org/10.1016/j.jcp.2010.11.048 +Yves Wiaux,Fast spin and#177*2 spherical harmonics transforms and application in cosmology.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#WiauxJV07,https://doi.org/10.1016/j.jcp.2007.07.005 +H. Dodig,A boundary integral method for numerical computation of radar cross section of 3D targets using hybrid BEM/FEM with edge elements.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#Dodig17,https://doi.org/10.1016/j.jcp.2017.07.043 +Jean-David Benamou,Source point discovery through high frequency asymptotic time reversal.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#BenamouCM12,https://doi.org/10.1016/j.jcp.2012.03.012 +Victor Sofonea,Implementation of diffuse reflection boundary conditions in a thermal lattice Boltzmann model with flux limiters.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#Sofonea09,https://doi.org/10.1016/j.jcp.2009.05.009 +Songting Luo,An asymptotic method based on a Hopf-Cole transformation for a kinetic BGK equation in the hyperbolic limit.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#LuoP17a,https://doi.org/10.1016/j.jcp.2017.04.028 +Andrew L. Stewart,An energy and potential enstrophy conserving numerical scheme for the multi-layer shallow water equations with complete Coriolis force.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#StewartD16,https://doi.org/10.1016/j.jcp.2015.12.042 +Franck Assous,Solving Maxwell's equations in singular domains with a Nitsche type method.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#AssousM11,https://doi.org/10.1016/j.jcp.2011.03.013 +Andri Bezzola,An exact and efficient first passage time algorithm for reaction-diffusion processes on a 2D-lattice.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#BezzolaBAP14,https://doi.org/10.1016/j.jcp.2013.08.053 +Elliot J. Carr,The extended distributed microstructure model for gradient-driven transport: A two-scale model for bypassing effective parameters.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#CarrPT16,https://doi.org/10.1016/j.jcp.2016.10.004 +Kendra P. Keady,An improved random walk algorithm for the implicit Monte Carlo method.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#KeadyC17,https://doi.org/10.1016/j.jcp.2016.09.056 +Jeaniffer Vides,A simple two-dimensional extension of the HLL Riemann solver for hyperbolic systems of conservation laws.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#VidesNA15,https://doi.org/10.1016/j.jcp.2014.10.013 +Jean Michel D. Sellier,A Wigner Monte Carlo approach to density functional theory.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#SellierD14,https://doi.org/10.1016/j.jcp.2014.03.065 +Felipe Vico,Fast convolution with free-space Green's functions.,2016,323,J. Comput. Physics,,db/journals/jcphy/jcphy323.html#VicoGF16,https://doi.org/10.1016/j.jcp.2016.07.028 +Toufic Abboud,Coupling discontinuous Galerkin methods and retarded potentials for transient wave propagation on unbounded domains.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#AbboudJRT11,https://doi.org/10.1016/j.jcp.2011.03.062 +Orazgeldy Kurbanmuradov,Randomized Spectral and Fourier-Wavelet Methods for multidimensional Gaussian random vector fields.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#KurbanmuradovSK13,https://doi.org/10.1016/j.jcp.2013.03.021 +Moritz Schneider,Extrapolation-based super-convergent implicit-explicit Peer methods with A-stable implicit part.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#SchneiderLH18,https://doi.org/10.1016/j.jcp.2018.04.006 +Jun Jia,Krylov deferred correction accelerated method of lines transpose for parabolic problems.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#JiaH08,https://doi.org/10.1016/j.jcp.2007.09.018 +Maziar Raissi,Inferring solutions of differential equations using noisy multi-fidelity data.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#RaissiPK17,https://doi.org/10.1016/j.jcp.2017.01.060 +René Pinnau,Model reduction techniques for frequency averaging in radiative heat transfer.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#PinnauS07,https://doi.org/10.1016/j.jcp.2007.04.024 +Heyu Huang,A multi-phase level set framework for source reconstruction in bioluminescence tomography.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#HuangQLHCYT10,https://doi.org/10.1016/j.jcp.2010.03.041 +Yue Tian,Computing traveltime and amplitude sensitivity kernels in finite-frequency tomography.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#TianMND07,https://doi.org/10.1016/j.jcp.2007.07.004 +David M. Ambrose,A small-scale decomposition for 3D boundary integral computations with surface tension.,2013,247,J. Comput. Physics,,db/journals/jcphy/jcphy247.html#AmbroseST13,https://doi.org/10.1016/j.jcp.2013.03.045 +Tobias Knopp,A grid and flow adaptive wall-function method for RANS turbulence modelling.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#KnoppAS06,https://doi.org/10.1016/j.jcp.2006.05.003 +David Coulette,Numerical comparisons of gyrokinetic multi-water-bag models.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#CouletteB13,https://doi.org/10.1016/j.jcp.2013.03.065 +Yu Liu,A coupled phase-field and volume-of-fluid method for accurate representation of limiting water wave deformation.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#LiuY16a,https://doi.org/10.1016/j.jcp.2016.05.059 +Melapudi Vikram,Fast evaluation of time domain fields in sub-wavelength source/observer distributions using accelerated Cartesian expansions (ACE).,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#VikramS07,https://doi.org/10.1016/j.jcp.2007.08.017 +D. Brinkman,A convergent 2D finite-difference scheme for the Dirac-Poisson system and the simulation of graphene.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#BrinkmanHM14,https://doi.org/10.1016/j.jcp.2013.09.052 +A. Gronskis,Inflow and initial conditions for direct numerical simulation based on adjoint data assimilation.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#GronskisHM13,https://doi.org/10.1016/j.jcp.2013.01.051 +Jue Yan,A local discontinuous Galerkin method for directly solving Hamilton-Jacobi equations.,2011,230,J. Comput. Physics,1,db/journals/jcphy/jcphy230.html#YanO11,https://doi.org/10.1016/j.jcp.2010.09.022 +Z. Yang,Finite element method for nonlinear Riesz space fractional diffusion equations on irregular domains.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#YangYNWZL17,https://doi.org/10.1016/j.jcp.2016.10.053 +F. L. Yang,An adaptive greedy technique for inverse boundary determination problem.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#YangLW10,https://doi.org/10.1016/j.jcp.2010.07.031 +Danilo Costarelli,Asymptotic-numerical solution of nonlinear systems of one-dimensional balance laws.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#CostarelliLS13,https://doi.org/10.1016/j.jcp.2013.02.030 +Carolynne Montijn,An adaptive grid refinement strategy for the simulation of negative streamers.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#MontijnHE06,https://doi.org/10.1016/j.jcp.2006.04.017 +Laurent Monasse,A conservative coupling algorithm between a compressible flow and a rigid body using an Embedded Boundary method.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#MonasseDMPT12,https://doi.org/10.1016/j.jcp.2012.01.002 +Jim Kao,Estimating model parameters for an impact-produced shock-wave simulation: Optimal use of partial data with the extended Kalman filter.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#KaoFIG06,https://doi.org/10.1016/j.jcp.2005.10.022 +Guillaume Perrin,Nested polynomial trends for the improvement of Gaussian process-based predictors.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#PerrinSMG17,https://doi.org/10.1016/j.jcp.2017.05.051 +Dan G. Cacuci,Second-order adjoint sensitivity analysis methodology (2nd-ASAM) for computing exactly and efficiently first- and second-order sensitivities in large-scale linear systems: II. Illustrative application to a paradigm particle diffusion problem.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#Cacuci15a,https://doi.org/10.1016/j.jcp.2014.11.030 +A. López-Yela,Finite element method to solve the spectral problem for arbitrary self-adjoint extensions of the Laplace-Beltrami operator on manifolds with a boundary.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#Lopez-YelaP17,https://doi.org/10.1016/j.jcp.2017.06.043 +Marc O. Delchini,Entropy-based artificial viscosity stabilization for non-equilibrium Grey Radiation-Hydrodynamics.,2015,296,J. Comput. Physics,,db/journals/jcphy/jcphy296.html#DelchiniRM15,https://doi.org/10.1016/j.jcp.2015.04.039 +Martin Vymazal,High-order upwind residual distribution schemes on isoparametric curved elements.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#VymazalQVD11,https://doi.org/10.1016/j.jcp.2010.05.027 +Xiao Chen,A flexible uncertainty quantification method for linearly coupled multi-physics systems.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#ChenNST13,https://doi.org/10.1016/j.jcp.2013.04.009 +Farzad Sabzikar,Tempered fractional calculus.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#SabzikarMC15,https://doi.org/10.1016/j.jcp.2014.04.024 +Wouter Dekeyser,Automated divertor target design by adjoint shape sensitivity analysis and a one-shot method.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#DekeyserRB14,https://doi.org/10.1016/j.jcp.2014.08.023 +Samuel Amstutz,A new algorithm for topology optimization using a level-set method.,2006,216,J. Comput. Physics,2,db/journals/jcphy/jcphy216.html#AmstutzA06,https://doi.org/10.1016/j.jcp.2005.12.015 +Xueyu Zhu,Multi-fidelity stochastic collocation method for computation of statistical moments.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#ZhuLX17,https://doi.org/10.1016/j.jcp.2017.04.022 +Marcos Vanella,A moving-least-squares reconstruction for embedded-boundary formulations.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#VanellaB09,https://doi.org/10.1016/j.jcp.2009.06.003 +C. J. Budd,The geometry of r-adaptive meshes generated using optimal transport methods.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#BuddRW15,https://doi.org/10.1016/j.jcp.2014.11.007 +Pieter Rauwoens,A solution for the odd-even decoupling problem in pressure-correction algorithms for variable density flows.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#RauwoensVM07,https://doi.org/10.1016/j.jcp.2007.07.010 +Pengtao Yue,Phase-field simulations of interfacial dynamics in viscoelastic fluids using finite elements with adaptive meshing.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#YueZFOH06,https://doi.org/10.1016/j.jcp.2006.03.016 +Z. F. Tian,High-order compact exponential finite difference methods for convection-diffusion type problems.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#TianD07,https://doi.org/10.1016/j.jcp.2006.06.001 +Annalisa Buffa,Isogeometric methods for computational electromagnetics: B-spline and T-spline discretizations.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#BuffaSV14,https://doi.org/10.1016/j.jcp.2013.08.015 +Emre Turkoz,AETHER: A simulation platform for inductively coupled plasma.,2015,286,J. Comput. Physics,,db/journals/jcphy/jcphy286.html#TurkozC15,https://doi.org/10.1016/j.jcp.2015.01.027 +Utku Erdogan,A smart nonstandard finite difference scheme for second order nonlinear boundary value problems.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#ErdoganO11,https://doi.org/10.1016/j.jcp.2011.04.033 +Xueying Xie,An isochoric domain deformation method for computing steady free surface flows with conserved volumes.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#XieMP07,https://doi.org/10.1016/j.jcp.2007.04.028 +Y. Rouizi,Numerical model reduction of 2D steady incompressible laminar flows: Application on the flow over a backward-facing step.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#RouiziFVP09,https://doi.org/10.1016/j.jcp.2008.12.001 +Pierre-Henri Maire,A high-order cell-centered Lagrangian scheme for two-dimensional compressible fluid flows on unstructured meshes.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#Maire09,https://doi.org/10.1016/j.jcp.2008.12.007 +F. Jauberteau,Multiscale/fractional step schemes for the numerical simulation of the rotating shallow water flows with complex periodic topography.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#JauberteauTT14,https://doi.org/10.1016/j.jcp.2014.03.036 +Seung-Hoe Ku,A new hybrid-Lagrangian numerical scheme for gyrokinetic simulation of tokamak edge plasma.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#KuHCKP16,https://doi.org/10.1016/j.jcp.2016.03.062 +Guido Kanschat,A strongly conservative finite element method for the coupling of Stokes and Darcy flow.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#KanschatR10,https://doi.org/10.1016/j.jcp.2010.04.021 +Zhijun Tan,An adaptive mesh redistribution method for the incompressible mixture flows using phase-field model.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#TanLK07,https://doi.org/10.1016/j.jcp.2007.01.019 +Thomas Breinlinger,Surface tension and wetting effects with smoothed particle hydrodynamics.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#BreinlingerPHK13,https://doi.org/10.1016/j.jcp.2013.02.038 +Zoltán Perkó,Grid and basis adaptive polynomial chaos techniques for sensitivity and uncertainty analysis.,2014,260,J. Comput. Physics,,db/journals/jcphy/jcphy260.html#PerkoGLK14,https://doi.org/10.1016/j.jcp.2013.12.025 +Phanish Suryanarayana,Augmented Lagrangian formulation of orbital-free density functional theory.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#SuryanarayanaP14,https://doi.org/10.1016/j.jcp.2014.07.006 +Chih-Hao Chang,"Erratum to ""A robust and accurate approach to computing compressible multiphase flow: Stratified flow model and AUSM+-up scheme"" [J. Comput. Phys. 225(2007) 840-873].",2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#ChangL08,https://doi.org/10.1016/j.jcp.2008.01.041 +Jianhua Pan,High order sub-cell finite volume schemes for solving hyperbolic conservation laws II: Extension to two-dimensional systems on unstructured grids.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#PanRS17,https://doi.org/10.1016/j.jcp.2017.02.052 +J. López,On reducing interface curvature computation errors in the height function technique.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#LopezH10,https://doi.org/10.1016/j.jcp.2010.03.032 +Gian Luca Delzanno,On particle movers in cylindrical geometry for Particle-In-Cell simulations.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#DelzannoC13,https://doi.org/10.1016/j.jcp.2013.07.007 +Andrew J. Christlieb,A high order time splitting method based on integral deferred correction for semi-Lagrangian Vlasov simulations.,2014,267,J. Comput. Physics,,db/journals/jcphy/jcphy267.html#ChristliebGMQ14,https://doi.org/10.1016/j.jcp.2014.02.012 +Isaías Alonso-Mallo,A high order finite element discretization with local absorbing boundary conditions of the linear Schrödinger equation.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#Alonso-MalloR06,https://doi.org/10.1016/j.jcp.2006.05.022 +Kazufumi Ito,A high order compact MAC finite difference scheme for the Stokes equations: Augmented variable approach.,2008,227,J. Comput. Physics,17,db/journals/jcphy/jcphy227.html#ItoQ08,https://doi.org/10.1016/j.jcp.2008.05.021 +L. Zhou,Lattice Boltzmann simulation of gas-solid adsorption processes at pore scale level.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#ZhouQCT15,https://doi.org/10.1016/j.jcp.2015.08.014 +Giuseppe Bonfigli,An efficient multi-scale Poisson solver for the incompressible Navier-Stokes equations with immersed boundaries.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#BonfigliJ09,https://doi.org/10.1016/j.jcp.2009.03.032 +Dieter Fauconnier,Construction of explicit and implicit dynamic finite difference schemes and application to the large-eddy simulation of the Taylor-Green vortex.,2009,228,J. Comput. Physics,21,db/journals/jcphy/jcphy228.html#FauconnierLD09a,https://doi.org/10.1016/j.jcp.2009.07.028 +Jialin Hong,Multi-symplectic Runge-Kutta-Nyström methods for nonlinear Schrödinger equations with variable coefficients.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#HongLL07,https://doi.org/10.1016/j.jcp.2007.06.023 +Benjamin M. Cowan,Characteristics of an envelope model for laser-plasma accelerator simulation.,2011,230,J. Comput. Physics,1,db/journals/jcphy/jcphy230.html#CowanBCEGMP11,https://doi.org/10.1016/j.jcp.2010.09.009 +Felipe Montefuscolo,High-order ALE schemes for incompressible capillary flows.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#MontefuscoloSB14,https://doi.org/10.1016/j.jcp.2014.08.030 +Benjamin Helmich-Paris,Improvements on the minimax algorithm for the Laplace transformation of orbital energy denominators.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#Helmich-ParisV16,https://doi.org/10.1016/j.jcp.2016.06.011 +Ying He 0007,An efficient and stable spectral method for electromagnetic scattering from a layered periodic structure.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#HeNS12,https://doi.org/10.1016/j.jcp.2011.10.033 +Svetlana Dubinkina,Statistical relevance of vorticity conservation in the Hamiltonian particle-mesh method.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#DubinkinaF10,https://doi.org/10.1016/j.jcp.2009.12.012 +Fangming Jiang,SPH simulation of transition to turbulence for planar shear flow subjected to a streamwise magnetic field.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#JiangOS06,https://doi.org/10.1016/j.jcp.2006.01.009 +Yang He,Volume-preserving algorithms for charged particle dynamics.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#HeSLQ15,https://doi.org/10.1016/j.jcp.2014.10.032 +L. Leclercq,3D magnetospheric parallel hybrid multi-grid method applied to planet-plasma interactions.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#LeclercqMLHM16,https://doi.org/10.1016/j.jcp.2016.01.005 +I. A. Sadovskyy,Stable large-scale solver for Ginzburg-Landau equations for superconductors.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#SadovskyyKPKG15,https://doi.org/10.1016/j.jcp.2015.04.002 +Takaharu Yaguchi,An extension of the discrete variational method to nonuniform grids.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#YaguchiMS10,https://doi.org/10.1016/j.jcp.2010.02.018 +Martin Burger 0001,A level set approach to anisotropic flows with curvature regularization.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#BurgerHSV07,https://doi.org/10.1016/j.jcp.2006.11.026 +David Stevens,The radial basis function finite collocation approach for capturing sharp fronts in time dependent advection problems.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#StevensP15,https://doi.org/10.1016/j.jcp.2015.05.032 +Youngsoo Ha,An improved weighted essentially non-oscillatory scheme with a new smoothness indicator.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#HaKLY13,https://doi.org/10.1016/j.jcp.2012.06.016 +Hendrik Ranocha,Generalised summation-by-parts operators and variable coefficients.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#Ranocha18,https://doi.org/10.1016/j.jcp.2018.02.021 +Wolfgang Polifke,Partially reflecting and non-reflecting boundary conditions for simulation of compressible viscous flow.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#PolifkeWM06,https://doi.org/10.1016/j.jcp.2005.08.016 +Jacek K. Wróbel,Regularized image system for Stokes flow outside a solid sphere.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#WrobelCVF16,https://doi.org/10.1016/j.jcp.2016.04.043 +Saulo R. M. Barros,A global finite-difference semi-Lagrangian model for the adiabatic primitive equations.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#BarrosG07,https://doi.org/10.1016/j.jcp.2007.06.011 +Mohammad Motamed,A fast phase space method for computing creeping rays.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#MotamedR06,https://doi.org/10.1016/j.jcp.2006.03.024 +Craig Michoski,Quantum hydrodynamics with trajectories: The nonlinear conservation form mixed/discontinuous Galerkin method with applications in chemistry.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#MichoskiESV09,https://doi.org/10.1016/j.jcp.2009.08.011 +Shingyu Leung,Eulerian Gaussian beams for Schrödinger equations in the semi-classical regime.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#LeungQ09,https://doi.org/10.1016/j.jcp.2009.01.007 +Ville Havu,Efficient O(N) integration for all-electron electronic structure calculation using numeric basis functions.,2009,228,J. Comput. Physics,22,db/journals/jcphy/jcphy228.html#HavuBHS09,https://doi.org/10.1016/j.jcp.2009.08.008 +L. Beirão da Veiga,Mimetic finite difference method for the Stokes problem on polygonal meshes.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#VeigaGLM09,https://doi.org/10.1016/j.jcp.2009.06.034 +Michael N. Macrossan,Restricted Collision List method for faster Direct Simulation Monte-Carlo (DSMC) collisions.,2016,319,J. Comput. Physics,,db/journals/jcphy/jcphy319.html#Macrossan16,https://doi.org/10.1016/j.jcp.2016.05.015 +Zhenning Cai,Approximation of the linearized Boltzmann collision operator for hard-sphere and inverse-power-law models.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#CaiT15,https://doi.org/10.1016/j.jcp.2015.04.031 +Evgeny Kikinzon,Approximate static condensation algorithm for solving multi-material diffusion problems on meshes non-aligned with material interfaces.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#KikinzonKLS17,https://doi.org/10.1016/j.jcp.2017.06.048 +Caio F. Rodrigues,Construction of minimum energy high-order Helmholtz bases for structured elements.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#RodriguesSB16,https://doi.org/10.1016/j.jcp.2015.11.033 +Hendrik Ranocha,Summation-by-parts operators for correction procedure via reconstruction.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#RanochaOS16,https://doi.org/10.1016/j.jcp.2016.02.009 +Behrouz Karami Halashi,A reconstructed discontinuous Galerkin method for magnetohydrodynamics on arbitrary grids.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#HalashiL16,https://doi.org/10.1016/j.jcp.2016.08.055 +Chein-Shan Liu,A multiple-direction Trefftz method for solving the multi-dimensional wave equation in an arbitrary spatial domain.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#LiuK16,https://doi.org/10.1016/j.jcp.2016.05.030 +Tapan K. Sengupta,A new alternating bi-diagonal compact scheme for non-uniform grids.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#SenguptaS16,https://doi.org/10.1016/j.jcp.2016.01.014 +Dinshaw S. Balsara,A high-order relativistic two-fluid electrodynamic scheme with consistent reconstruction of electromagnetic fields and a multidimensional Riemann solver for electromagnetism.,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#BalsaraAGK16,https://doi.org/10.1016/j.jcp.2016.05.006 +Holger Heumann,A finite element method with overlapping meshes for free-boundary axisymmetric plasma equilibria in realistic geometries.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#HeumannR17,https://doi.org/10.1016/j.jcp.2017.01.006 +Altug Ozcelikkale,Least-squares spectral element solution of incompressible Navier-Stokes equations with adaptive refinement.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#OzcelikkaleS12,https://doi.org/10.1016/j.jcp.2012.01.024 +Frans Pretorius,Adaptive mesh refinement for coupled elliptic-hyperbolic systems.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#PretoriusC06,https://doi.org/10.1016/j.jcp.2006.02.011 +Kazufumi Ito,A two-stage method for inverse medium scattering.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#ItoJZ13,https://doi.org/10.1016/j.jcp.2012.12.004 +S. Jaisankar,Directional Diffusion Regulator (DDR) for some numerical solvers of hyperbolic conservation laws.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#JaisankarS13,https://doi.org/10.1016/j.jcp.2012.07.031 +ZhanSen Qian,A class of large time step Godunov schemes for hyperbolic conservation laws and applications.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#andL11,https://doi.org/10.1016/j.jcp.2011.06.008 +Michael D. White,High-order parabolic beam approximation for aero-optics.,2010,229,J. Comput. Physics,15,db/journals/jcphy/jcphy229.html#White10,https://doi.org/10.1016/j.jcp.2010.03.046 +Beiping Duan,Spectral approximation methods and error estimates for Caputo fractional derivative with applications to initial-value problems.,2016,319,J. Comput. Physics,,db/journals/jcphy/jcphy319.html#DuanZC16,https://doi.org/10.1016/j.jcp.2016.05.017 +Arpit Tiwari,A diffuse interface model with immiscibility preservation.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#TiwariFP13,https://doi.org/10.1016/j.jcp.2013.06.021 +D. Lannes,A new class of fully nonlinear and weakly dispersive Green-Naghdi models for efficient 2D simulations.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#LannesM15,https://doi.org/10.1016/j.jcp.2014.11.016 +Alexandru Cioaca,An optimization framework to improve 4D-Var data assimilation system performance.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#CioacaS14,https://doi.org/10.1016/j.jcp.2014.07.005 +Eugenio Aulisa,Interface reconstruction with least-squares fit and split advection in three-dimensional Cartesian geometry.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#AulisaMSZ07,https://doi.org/10.1016/j.jcp.2007.03.015 +R. H. Jackson,Numerical solution of the cylindrical Poisson equation using the Local Taylor Polynomial technique.,2012,231,J. Comput. Physics,16,db/journals/jcphy/jcphy231.html#JacksonWV12,https://doi.org/10.1016/j.jcp.2012.04.034 +Farshid Nazari,Optimal high-order diagonally-implicit Runge-Kutta schemes for nonlinear diffusive systems on atmospheric boundary layer.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#NazariMCZ14,https://doi.org/10.1016/j.jcp.2014.01.039 +Reza Khazaeli,Application of a ghost fluid approach for a thermal lattice Boltzmann method.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#KhazaeliMA13,https://doi.org/10.1016/j.jcp.2013.04.044 +Joachim Moortgat,Mixed-hybrid and vertex-discontinuous-Galerkin finite element modeling of multiphase compositional flow on 3D unstructured grids.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#MoortgatF16,https://doi.org/10.1016/j.jcp.2016.03.054 +Luke N. Olson,Smoothed aggregation multigrid solvers for high-order discontinuous Galerkin methods for elliptic problems.,2011,230,J. Comput. Physics,18,db/journals/jcphy/jcphy230.html#OlsonS11,https://doi.org/10.1016/j.jcp.2011.05.009 +S. Dong,Multiphase flows of N immiscible incompressible fluids: A reduction-consistent and thermodynamically-consistent formulation and associated algorithm.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#Dong18,https://doi.org/10.1016/j.jcp.2018.01.041 +Xiang Ma,Kernel principal component analysis for stochastic input model generation.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#MaZ11a,https://doi.org/10.1016/j.jcp.2011.05.037 +Ali Mani,Suitability of artificial bulk viscosity for large-eddy simulation of turbulent flows with shocks.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#ManiLM09,https://doi.org/10.1016/j.jcp.2009.06.040 +Liang Pan,An efficient and accurate two-stage fourth-order gas-kinetic scheme for the Euler and Navier-Stokes equations.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#PanXLL16,https://doi.org/10.1016/j.jcp.2016.08.054 +Lars K. S. Daldorff,Two-way coupling of a global Hall magnetohydrodynamics model with a local implicit particle-in-cell model.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#DaldorffTGLAMB14,https://doi.org/10.1016/j.jcp.2014.03.009 +Elias Ghossein,Random generation of periodic hard ellipsoids based on molecular dynamics: A computationally-efficient algorithm.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#GhosseinL13,https://doi.org/10.1016/j.jcp.2013.07.004 +A. Mueller,Novel two-way artificial boundary condition for 2D vertical water wave propagation modelled with Radial-Basis-Function Collocation Method.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#Mueller18,https://doi.org/10.1016/j.jcp.2018.01.017 +C. Baranger,Locally refined discrete velocity grids for stationary rarefied flow simulations.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#BarangerCHM14,https://doi.org/10.1016/j.jcp.2013.10.014 +Eugene D. Brooks III,Piecewise linear discretization of Symbolic Implicit Monte Carlo radiation transport in the difference formulation.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#BrooksSP06,https://doi.org/10.1016/j.jcp.2006.07.014 +Qi Wang,Numerical design of FSHL-based approximate cloaks with arbitrary shapes.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#WangHL17,https://doi.org/10.1016/j.jcp.2016.12.037 +Feng Chen 0019,A multi-domain spectral method for time-fractional differential equations.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#ChenXH15,https://doi.org/10.1016/j.jcp.2014.10.016 +Marco Fasondini,Methods for the computation of the multivalued Painlevé transcendents on their Riemann surfaces.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#FasondiniFW17,https://doi.org/10.1016/j.jcp.2017.04.071 +Dafang Wang,Inverse electrocardiographic source localization of ischemia: An optimization framework and finite element solution.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#WangKMJ13,https://doi.org/10.1016/j.jcp.2013.05.027 +Craig Schroeder,A second order virtual node algorithm for Navier-Stokes flow problems with interfacial forces and discontinuous material properties.,2014,265,J. Comput. Physics,,db/journals/jcphy/jcphy265.html#SchroederSHT14,https://doi.org/10.1016/j.jcp.2014.01.051 +Jilian Wu,Unconditionally stable Gauge-Uzawa finite element schemes for incompressible natural convection problems with variable density.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#WuSF17,https://doi.org/10.1016/j.jcp.2017.07.045 +Suchuan Dong,A robust and accurate outflow boundary condition for incompressible flow simulations on severely-truncated unbounded domains.,2014,261,J. Comput. Physics,,db/journals/jcphy/jcphy261.html#DongKC14,https://doi.org/10.1016/j.jcp.2013.12.042 +Aria Abubakar,Three-dimensional visco-acoustic modeling using a renormalized integral equation iterative solver.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#AbubakarH13,https://doi.org/10.1016/j.jcp.2013.04.008 +R. S. Jeffers,Goal-based h-adaptivity of the 1-D diamond difference discrete ordinate method.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#JeffersKEFHR17,https://doi.org/10.1016/j.jcp.2017.01.037 +Zhen F. Tian,An efficient compact difference scheme for solving the streamfunction formulation of the incompressible Navier-Stokes equations.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#TianY11,https://doi.org/10.1016/j.jcp.2010.12.031 +Pierre-Henri Maire,A high-order cell-centered Lagrangian scheme for compressible fluid flows in two-dimensional cylindrical geometry.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#Maire09a,https://doi.org/10.1016/j.jcp.2009.06.018 +Suchuan Dong,A time-stepping scheme involving constant coefficient matrices for phase-field simulations of two-phase incompressible flows with large density ratios.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#DongS12,https://doi.org/10.1016/j.jcp.2012.04.041 +Susana Serna,A characteristic-based nonconvex entropy-fix upwind scheme for the ideal magnetohydrodynamic equations.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#Serna09,https://doi.org/10.1016/j.jcp.2009.03.001 +Xin Wen,A steady state capturing and preserving method for computing hyperbolic systems with geometrical source terms having concentrations.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#Wen06,https://doi.org/10.1016/j.jcp.2006.03.019 +Zhipeng Li,Block-diagonalization of the variational nodal response matrix using the symmetry group theory.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#LiWLC17,https://doi.org/10.1016/j.jcp.2017.09.029 +Fabrice Colin,Computing a null divergence velocity field using smoothed particle hydrodynamics.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#ColinEL06,https://doi.org/10.1016/j.jcp.2006.01.021 +Ugis Lacis,A stable fluid-structure-interaction solver for low-density rigid bodies using the immersed boundary projection method.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#LacisTB16,https://doi.org/10.1016/j.jcp.2015.10.041 +Jens H. Walther,Multiscale simulation of water flow past a C540 fullerene.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#WaltherPKK12,https://doi.org/10.1016/j.jcp.2011.12.015 +Christoph Schwab,Karhunen-Loève approximation of random fields by generalized fast multipole methods.,2006,217,J. Comput. Physics,1,db/journals/jcphy/jcphy217.html#SchwabT06,https://doi.org/10.1016/j.jcp.2006.01.048 +Capdeville Guy,A HLL-Rankine-Hugoniot Riemann solver for complex non-linear hyperbolic problems.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#Guy13,https://doi.org/10.1016/j.jcp.2013.05.024 +Tao Zhou,Note on coefficient matrices from stochastic Galerkin methods for random diffusion equations.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#ZhouT10,https://doi.org/10.1016/j.jcp.2010.07.016 +Michael Lentine,An unconditionally stable fully conservative semi-Lagrangian method.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#LentineGF11,https://doi.org/10.1016/j.jcp.2010.12.036 +Eleuterio F. Toro,FORCE schemes on unstructured meshes I: Conservative hyperbolic systems.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#ToroHD09,https://doi.org/10.1016/j.jcp.2009.01.025 +Tuan L. Hoang,Computationally-efficient stochastic cluster dynamics method for modeling damage accumulation in irradiated materials.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#HoangMBH15,https://doi.org/10.1016/j.jcp.2015.07.061 +Lauri Lehtovaara,Solution of time-independent Schrödinger equation by the imaginary time propagation method.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#LehtovaaraTE07,https://doi.org/10.1016/j.jcp.2006.06.006 +Thomas Y. Hou,Wiener Chaos expansions and numerical solutions of randomly forced equations of fluid mechanics.,2006,216,J. Comput. Physics,2,db/journals/jcphy/jcphy216.html#HouLRZ06,https://doi.org/10.1016/j.jcp.2006.01.008 +Nitin Agarwal,A domain adaptive stochastic collocation approach for analysis of MEMS under uncertainties.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#AgarwalA09,https://doi.org/10.1016/j.jcp.2009.07.014 +Angxiu Ni,Sensitivity analysis on chaotic dynamical systems by Non-Intrusive Least Squares Shadowing (NILSS).,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#NiW17,https://doi.org/10.1016/j.jcp.2017.06.033 +Paul-Emile Bernard,High-order discontinuous Galerkin schemes on general 2D manifolds applied to the shallow water equations.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#BernardRCLH09,https://doi.org/10.1016/j.jcp.2009.05.046 +Mads Mølholm Hejlesen,Iterative Brinkman penalization for remeshed vortex methods.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#HejlesenKLW15,https://doi.org/10.1016/j.jcp.2014.09.029 +L. He,Block-spectral mapping for multi-scale solution.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#He13,https://doi.org/10.1016/j.jcp.2013.05.004 +Guo-Hua Tu,A characteristic-based shock-capturing scheme for hyperbolic problems.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#TuY07,https://doi.org/10.1016/j.jcp.2007.03.007 +David L. Ropp,Stability of operator splitting methods for systems with indefinite operators: Advection-diffusion-reaction systems.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#RoppS09,https://doi.org/10.1016/j.jcp.2009.02.001 +Mehran Eslaminia,A double-sweeping preconditioner for the Helmholtz equation.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#EslaminiaG16,https://doi.org/10.1016/j.jcp.2016.03.022 +J. M. Zhao,A second order radiative transfer equation and its solution by meshless method with application to strongly inhomogeneous media.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#ZhaoTL13,https://doi.org/10.1016/j.jcp.2012.08.020 +Mamdouh S. Mohamed,Discrete exterior calculus discretization of incompressible Navier-Stokes equations over surface simplicial meshes.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#MohamedHS16,https://doi.org/10.1016/j.jcp.2016.02.028 +Weizhu Bao,A parametric finite element method for solid-state dewetting problems with anisotropic surface energies.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#BaoJWZ17,https://doi.org/10.1016/j.jcp.2016.11.015 +C. Nathan Woods,Verification of fluid-dynamic codes in the presence of shocks and other discontinuities.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#WoodsS15,https://doi.org/10.1016/j.jcp.2015.03.055 +Michail E. Kavousanakis,Projective and coarse projective integration for problems with continuous symmetries.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#KavousanakisEBGK07,https://doi.org/10.1016/j.jcp.2006.12.003 +Chohong Min,A second order accurate projection method for the incompressible Navier-Stokes equations on non-graded adaptive grids.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#MinG06,https://doi.org/10.1016/j.jcp.2006.07.019 +Daniel Straub,Bayesian analysis of rare events.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#StraubPB16,https://doi.org/10.1016/j.jcp.2016.03.018 +Ricardo Cortez,A general system of images for regularized Stokeslets and other elements near a plane wall.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#CortezV15,https://doi.org/10.1016/j.jcp.2015.01.019 +Steven P. Hamilton,Hot zero power reactor calculations using the Insilico code.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#HamiltonEDJPG16,https://doi.org/10.1016/j.jcp.2016.03.033 +Stefano Markidis,The energy conserving particle-in-cell method.,2011,230,J. Comput. Physics,18,db/journals/jcphy/jcphy230.html#MarkidisL11,https://doi.org/10.1016/j.jcp.2011.05.033 +Filippo Capolino,Efficient computation of the 3D Green's function for the Helmholtz operator for a linear array of point sources using the Ewald method.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#CapolinoWJ07,https://doi.org/10.1016/j.jcp.2006.09.013 +Alexandre M. Tartakovsky,Dimension reduction method for ODE fluid models.,2011,230,J. Comput. Physics,23,db/journals/jcphy/jcphy230.html#TartakovskyPF11,https://doi.org/10.1016/j.jcp.2011.08.004 +Shrinivas Lankalapalli,An adaptive finite element method for magnetohydrodynamics.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#LankalapalliFSS07,https://doi.org/10.1016/j.jcp.2006.12.010 +øystein Tråsdahl,High order numerical approximation of minimal surfaces.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#TrasdahlR11,https://doi.org/10.1016/j.jcp.2011.03.003 +Thomas Hagstrom,High-order local absorbing conditions for the wave equation: Extensions and improvements.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#HagstromMG08,https://doi.org/10.1016/j.jcp.2007.11.040 +Marc-Paul Errera,Optimal solutions of numerical interface conditions in fluid-structure thermal analysis.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#ErreraC13,https://doi.org/10.1016/j.jcp.2013.03.004 +Yukinao Akamatsu,A new scheme of causal viscous hydrodynamics for relativistic heavy-ion collisions: A Riemann solver for quark-gluon plasma.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#AkamatsuINT14,https://doi.org/10.1016/j.jcp.2013.08.047 +Tao Cai,A semi-implicit spectral method for compressible convection of rotating and density-stratified flows in Cartesian geometry.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#Cai16,https://doi.org/10.1016/j.jcp.2016.01.022 +Marianne Gjestvold Omang,SPH in spherical and cylindrical coordinates.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#OmangBT06,https://doi.org/10.1016/j.jcp.2005.08.023 +Jiangguo Liu,The lowest-order weak Galerkin finite element method for the Darcy equation on quadrilateral and hybrid meshes.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#LiuTW18,https://doi.org/10.1016/j.jcp.2018.01.001 +Ben Van de Wiele,Application of the fast multipole method for the evaluation of magnetostatic fields in micromagnetic computations.,2008,227,J. Comput. Physics,23,db/journals/jcphy/jcphy227.html#WieleOD08,https://doi.org/10.1016/j.jcp.2008.08.003 +David J. Smith,A nearest-neighbour discretisation of the regularized stokeslet boundary integral equation.,2018,358,J. Comput. Physics,,db/journals/jcphy/jcphy358.html#Smith18,https://doi.org/10.1016/j.jcp.2017.12.008 +Gérard Labrosse,The piecewise-linear Finite Volume scheme: The best known lowest-order preconditioner for the d2/dx2 Chebyshev spectral operator.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#Labrosse09,https://doi.org/10.1016/j.jcp.2009.03.019 +Dag Lindbo,Spectrally accurate fast summation for periodic Stokes potentials.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#LindboT10,https://doi.org/10.1016/j.jcp.2010.08.026 +Brendan B. Godfrey,Numerical stability of relativistic beam multidimensional PIC simulations employing the Esirkepov algorithm.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#GodfreyV13,https://doi.org/10.1016/j.jcp.2013.04.006 +Mikhail A. Belonosov,An iterative solver for the 3D Helmholtz equation.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#BelonosovDKNT17,https://doi.org/10.1016/j.jcp.2017.05.026 +Cheng Peng,Direct numerical simulation of turbulent pipe flow using the lattice Boltzmann method.,2018,357,J. Comput. Physics,,db/journals/jcphy/jcphy357.html#PengGGW18,https://doi.org/10.1016/j.jcp.2017.11.040 +Ionut Danaila,A finite element method with mesh adaptivity for computing vortex states in fast-rotating Bose-Einstein condensates.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#DanailaH10,https://doi.org/10.1016/j.jcp.2010.05.032 +Sebastian Bosma,Multiscale finite volume method for discrete fracture modeling on unstructured grids (MS-DFM).,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#BosmaHTT17,https://doi.org/10.1016/j.jcp.2017.09.032 +Sander Rhebergen,A space-time discontinuous Galerkin method for the incompressible Navier-Stokes equations.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#RhebergenCV13,https://doi.org/10.1016/j.jcp.2012.08.052 +Miquel Aguirre,An upwind vertex centred Finite Volume solver for Lagrangian solid dynamics.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#AguirreGBL15,https://doi.org/10.1016/j.jcp.2015.07.029 +Anne Cadiou,Asymptotic and numerical analysis of an inviscid bounded vortex flow at low Mach number.,2008,227,J. Comput. Physics,18,db/journals/jcphy/jcphy227.html#CadiouPB08,https://doi.org/10.1016/j.jcp.2008.05.024 +John P. Boyd 0001,A proof that the discrete singular convolution (DSC)/Lagrange-distributed approximating function (LDAF) method is inferior to high order finite differences.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#Boyd06,https://doi.org/10.1016/j.jcp.2005.10.010 +Xiang Chen,A robust and efficient polyhedron subdivision and intersection algorithm for three-dimensional MMALE remapping.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#ChenZJ17,https://doi.org/10.1016/j.jcp.2017.02.029 +Janusz A. Pudykiewicz,Numerical solution of the reaction-advection-diffusion equation on the sphere.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#Pudykiewicz06,https://doi.org/10.1016/j.jcp.2005.08.021 +Akihiro Suzuki,A conservative scheme for the relativistic Vlasov-Maxwell system.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#SuzukiS10,https://doi.org/10.1016/j.jcp.2009.11.001 +Yanheng Li,Stability and convergence analysis of a dynamics-based collective method for random sphere packing.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#LiJ13,https://doi.org/10.1016/j.jcp.2013.05.023 +Bernhard Seiwald,Optimization of energy confinement in the 1/ν regime for stellarators.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#SeiwaldKKKNTJ08,https://doi.org/10.1016/j.jcp.2008.02.026 +Pratik Donde,A multivariate quadrature based moment method for LES based modeling of supersonic combustion.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#DondeKR12,https://doi.org/10.1016/j.jcp.2012.04.031 +Benjamin Braconnier,An all-speed relaxation scheme for interface flows with surface tension.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#BraconnierN09,https://doi.org/10.1016/j.jcp.2009.04.046 +Yu-Wen Li,General local energy-preserving integrators for solving multi-symplectic Hamiltonian PDEs.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#LiW15a,https://doi.org/10.1016/j.jcp.2015.08.023 +Changpin Li,Finite difference methods with non-uniform meshes for nonlinear fractional differential equations.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#LiYC16,https://doi.org/10.1016/j.jcp.2016.04.039 +Y. Sun,Explicit formulations of gas-kinetic flux solver for simulation of incompressible and compressible viscous flows.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#Sun0TWY15,https://doi.org/10.1016/j.jcp.2015.07.060 +Nicolas Crouseilles,Hamiltonian splitting for the Vlasov-Maxwell equations.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#CrouseillesEF15,https://doi.org/10.1016/j.jcp.2014.11.029 +Li Liu,Nonuniform time-step Runge-Kutta discontinuous Galerkin method for Computational Aeroacoustics.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#LiuLH10,https://doi.org/10.1016/j.jcp.2010.05.028 +Yuto Miyatake,Numerical integration of the Ostrovsky equation based on its geometric structures.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#MiyatakeYM12,https://doi.org/10.1016/j.jcp.2012.02.027 +Ondrej Maxian,A continuous energy-based immersed boundary method for elastic shells.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#MaxianKS18,https://doi.org/10.1016/j.jcp.2018.05.045 +Stéphane Del Pino,An asymptotic preserving multidimensional ALE method for a system of two compressible flows coupled with friction.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#PinoLM18,https://doi.org/10.1016/j.jcp.2018.02.016 +Stephen A. Jordan,The spatial resolution properties of composite compact finite differencing.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#Jordan07,https://doi.org/10.1016/j.jcp.2006.06.026 +Markus Nordlund,Improved PISO algorithms for modeling density varying flow in conjugate fluid-porous domains.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#NordlundSKFG16,https://doi.org/10.1016/j.jcp.2015.11.035 +Babak Hejazialhosseini,High order finite volume methods on wavelet-adapted grids with local time-stepping on multicore architectures for the simulation of shock-bubble interactions.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#HejazialhosseiniRBK10,https://doi.org/10.1016/j.jcp.2010.07.021 +Erik Bernsen,The application of Jacobian-free Newton-Krylov methods to reduce the spin-up time of ocean general circulation models.,2010,229,J. Comput. Physics,21,db/journals/jcphy/jcphy229.html#BernsenDTW10,https://doi.org/10.1016/j.jcp.2010.07.015 +Guoqiao You,An Eulerian method for computing the coherent ergodic partition of continuous dynamical systems.,2014,264,J. Comput. Physics,,db/journals/jcphy/jcphy264.html#YouL14a,https://doi.org/10.1016/j.jcp.2014.01.034 +L. Kedward,Efficient and exact mesh deformation using multiscale RBF interpolation.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#KedwardAR17,https://doi.org/10.1016/j.jcp.2017.05.042 +E. J. Brambley,Optimized finite-difference (DRP) schemes perform poorly for decaying or growing oscillations.,2016,324,J. Comput. Physics,,db/journals/jcphy/jcphy324.html#Brambley16,https://doi.org/10.1016/j.jcp.2016.08.003 +J. D. Cooper,Stable perfectly-matched-layer boundary conditions for finite-difference time-domain simulation of acoustic waves in piezoelectric crystals.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#CooperVIHC13,https://doi.org/10.1016/j.jcp.2013.07.019 +Nicholas K. Allsopp,Molecular dynamics beyonds the limits: Massive scaling on 72 racks of a BlueGene/P and supercooled glass dynamics of a 1 billion particles system.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#AllsoppRF12,https://doi.org/10.1016/j.jcp.2012.01.019 +David Amsallem,Real-time solution of linear computational problems using databases of parametric reduced-order models with arbitrary underlying meshes.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#AmsallemTF16,https://doi.org/10.1016/j.jcp.2016.08.025 +Xiaofeng Yang 0003,Analytic relations for reconstructing piecewise linear interfaces in triangular and tetrahedral grids.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#YangJ06,https://doi.org/10.1016/j.jcp.2005.09.002 +Eric J. Parish,A paradigm for data-driven predictive modeling using field inversion and machine learning.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#ParishD16,https://doi.org/10.1016/j.jcp.2015.11.012 +Mohammad Mirzadeh,A second-order discretization of the nonlinear Poisson-Boltzmann equation over irregular geometries using non-graded adaptive Cartesian grids.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#MirzadehTG11,https://doi.org/10.1016/j.jcp.2010.12.008 +Songze Chen,Gas-kinetic scheme with discontinuous derivative for low speed flow computation.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#ChenJLC11,https://doi.org/10.1016/j.jcp.2010.12.003 +Yannis Kallinderis,A priori mesh quality metrics for three-dimensional hybrid grids.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#KallinderisF15,https://doi.org/10.1016/j.jcp.2014.09.036 +C. D. Bohn,Validation of a lattice Boltzmann model for gas-solid reactions with experiments.,2012,231,J. Comput. Physics,16,db/journals/jcphy/jcphy231.html#BohnSDM12,https://doi.org/10.1016/j.jcp.2012.04.021 +Mohamed El-Gamel,A comparison between the Sinc-Galerkin and the modified decomposition methods for solving two-point boundary-value problems.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#El-Gamel07,https://doi.org/10.1016/j.jcp.2006.09.025 +Mark Owkes,Importance of curvature evaluation scale for predictive simulations of dynamic gas-liquid interfaces.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#OwkesCSC18,https://doi.org/10.1016/j.jcp.2018.03.018 +William T. Taitano,An equilibrium-preserving discretization for the nonlinear Rosenbluth-Fokker-Planck operator in arbitrary multi-dimensional geometry.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#TaitanoCS17,https://doi.org/10.1016/j.jcp.2017.03.032 +Dragan Vidovic,Piecewise linear transformation in diffusive flux discretization.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#VidovicDPP15,https://doi.org/10.1016/j.jcp.2014.11.024 +Rémi Abgrall,Construction of very high order residual distribution schemes for steady inviscid flow problems on hybrid unstructured meshes.,2011,230,J. Comput. Physics,11,db/journals/jcphy/jcphy230.html#AbgrallLR11,https://doi.org/10.1016/j.jcp.2010.07.035 +Yajun An,Uniform dispersion reduction schemes for the one dimensional wave equation in isotropic media.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#An17,https://doi.org/10.1016/j.jcp.2017.04.015 +Qianyi Chen,Improved CE/SE scheme with particle level set method for numerical simulation of spall fracture due to high-velocity impact.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#ChenWL10,https://doi.org/10.1016/j.jcp.2010.06.033 +Daniel R. Reynolds,Self-consistent solution of cosmological radiation-hydrodynamics and chemical ionization.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#ReynoldsHPN09,https://doi.org/10.1016/j.jcp.2009.06.006 +Silvia Falletta,The panel-clustering method for the wave equation in two spatial dimensions.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#FallettaS16,https://doi.org/10.1016/j.jcp.2015.10.033 +Marianne M. Francois,A balanced-force algorithm for continuous and sharp interfacial surface tension models within a volume tracking framework.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#FrancoisCDKSW06,https://doi.org/10.1016/j.jcp.2005.08.004 +Jia Li,A generalized polynomial chaos based ensemble Kalman filter with high accuracy.,2009,228,J. Comput. Physics,15,db/journals/jcphy/jcphy228.html#LiX09,https://doi.org/10.1016/j.jcp.2009.04.029 +Roland Schöbi,Uncertainty propagation of p-boxes using sparse polynomial chaos expansions.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#SchobiS17,https://doi.org/10.1016/j.jcp.2017.03.021 +Sean Lovett,Adaptive mesh refinement for compressible thermal flow in porous media.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#LovettNM15,https://doi.org/10.1016/j.jcp.2014.09.017 +Phani Motamarri,Higher-order adaptive finite-element methods for orbital-free density functional theory.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#MotamarriIKG12,https://doi.org/10.1016/j.jcp.2012.04.036 +Amaury Johnen,Geometrical validity of curvilinear pyramidal finite elements.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#JohnenG15,https://doi.org/10.1016/j.jcp.2015.06.033 +Melissa R. Adkins,Geodesic curvature driven surface microdomain formation.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#AdkinsZ17,https://doi.org/10.1016/j.jcp.2017.05.029 +D. G. E. Grigoriadis,Immersed boundary method for the MHD flows of liquid metals.,2009,228,J. Comput. Physics,3,db/journals/jcphy/jcphy228.html#GrigoriadisKV09,https://doi.org/10.1016/j.jcp.2008.10.017 +Jessica Bosch,Fast solution of Cahn-Hilliard variational inequalities using implicit time discretization and finite elements.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#BoschSB14,https://doi.org/10.1016/j.jcp.2013.12.053 +C. Leland Ellison,"Comment on ""Symplectic integration of magnetic systems"": A proof that the Boris algorithm is not variational.",2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#EllisonBQ15,https://doi.org/10.1016/j.jcp.2015.09.007 +Kirankumar R. Hiremath,Numerical solution of nonlocal hydrodynamic Drude model for arbitrary shaped nano-plasmonic structures using Nédélec finite elements.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#HiremathZS12,https://doi.org/10.1016/j.jcp.2012.05.013 +Andrea Franceschini,A novel Lagrangian approach for the stable numerical simulation of fault and fracture mechanics.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#FranceschiniFJT16,https://doi.org/10.1016/j.jcp.2016.03.032 +Mike Guidry,Algebraic stabilization of explicit numerical integration for extremely stiff reaction networks.,2012,231,J. Comput. Physics,16,db/journals/jcphy/jcphy231.html#Guidry12,https://doi.org/10.1016/j.jcp.2012.04.026 +Chang-Jun Zheng,Free vibration analysis of elastic structures submerged in an infinite or semi-infinite fluid domain by means of a coupled FE-BE solver.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#ZhengBZGC18,https://doi.org/10.1016/j.jcp.2018.01.018 +Yohei Morinishi,Skew-symmetric form of convective terms and fully conservative finite difference schemes for variable density low-Mach number flows.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#Morinishi10,https://doi.org/10.1016/j.jcp.2009.09.021 +Yoshihiro Otani,A periodic FMM for Maxwell's equations in 3D and its applications to problems related to photonic crystals.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#OtaniN08,https://doi.org/10.1016/j.jcp.2008.01.029 +Vu Thai Luan,Preconditioned implicit-exponential integrators (IMEXP) for stiff PDEs.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#LuanTR17,https://doi.org/10.1016/j.jcp.2017.01.054 +Seungjoon Lee,A resilient and efficient CFD framework: Statistical learning tools for multi-fidelity and heterogeneous information fusion.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#LeeKK17,https://doi.org/10.1016/j.jcp.2017.05.021 +Kris Van den Abeele,A stability analysis for the spectral volume method on tetrahedral grids.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#AbeeleGPL09,https://doi.org/10.1016/j.jcp.2008.10.011 +Mark Owkes,A mesh-decoupled height function method for computing interface curvature.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#OwkesD15,https://doi.org/10.1016/j.jcp.2014.10.036 +Andrei Alexandru,Multi-mass solvers for lattice QCD on GPUs.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#AlexandruPGL12,https://doi.org/10.1016/j.jcp.2011.11.003 +Michel Bergmann,Modeling and simulation of fish-like swimming.,2011,230,J. Comput. Physics,2,db/journals/jcphy/jcphy230.html#BergmannI11,https://doi.org/10.1016/j.jcp.2010.09.017 +John N. Shadid,Towards a scalable fully-implicit fully-coupled resistive MHD formulation with stabilized FE methods.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#ShadidPBCLT10,https://doi.org/10.1016/j.jcp.2010.06.018 +HongGuang Sun,A fast semi-discrete Kansa method to solve the two-dimensional spatiotemporal fractional diffusion equation.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#SunLZPG17,https://doi.org/10.1016/j.jcp.2017.05.012 +Harmen van der Ven,An adaptive multitime multigrid algorithm for time-periodic flow simulations.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#Ven08,https://doi.org/10.1016/j.jcp.2008.01.039 +Lluís Jofre,Parallel load balancing strategy for Volume-of-Fluid methods on 3-D unstructured meshes.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#JofreBLO15,https://doi.org/10.1016/j.jcp.2014.11.009 +Magnus Svärd,A stable high-order finite difference scheme for the compressible Navier-Stokes equations: No-slip wall boundary conditions.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#SvardN08,https://doi.org/10.1016/j.jcp.2007.12.028 +Feng Xiao 0001,Unified formulation for compressible and incompressible flows by using multi-integrated moments II: Multi-dimensional version for compressible and incompressible flows.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#XiaoAI06,https://doi.org/10.1016/j.jcp.2005.08.002 +Thomas Wick,Coupling fluid-structure interaction with phase-field fracture.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#Wick16,https://doi.org/10.1016/j.jcp.2016.09.024 +Kui Du,A composite preconditioner for the electromagnetic scattering from a large cavity.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#Du11a,https://doi.org/10.1016/j.jcp.2011.07.011 +Lukas Osterloh,"Corrigendum to ""Regularized inversion of microphysical atmospheric particle parameters: Theory and application"" [J. Comput. Phys. 237 (2013) 79-94].",2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#OsterlohBNN14,https://doi.org/10.1016/j.jcp.2014.07.041 +Grégoire Allaire,Damage and fracture evolution in brittle materials by shape optimization methods.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#AllaireJG11,https://doi.org/10.1016/j.jcp.2011.03.024 +Amina Younsi,On anisotropy function in crystal growth simulations using Lattice Boltzmann equation.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#YounsiC16,https://doi.org/10.1016/j.jcp.2016.08.014 +Javier Murillo,Augmented versions of the HLL and HLLC Riemann solvers including source terms in one and two dimensions for shallow flow applications.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#MurilloG12a,https://doi.org/10.1016/j.jcp.2012.06.031 +Xin Lv,A novel coupled level set and volume of fluid method for sharp interface capturing on 3D tetrahedral grids.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#LvZZR10,https://doi.org/10.1016/j.jcp.2009.12.005 +Andreas Lemmer,Parallel domain decomposition method with non-blocking communication for flow through porous media.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#LemmerH15,https://doi.org/10.1016/j.jcp.2014.08.032 +Daniel Simmons,A hybrid Boundary Element Unstructured Transmission-line (BEUT) method for accurate 2D electromagnetic simulation.,2016,324,J. Comput. Physics,,db/journals/jcphy/jcphy324.html#SimmonsCS16,https://doi.org/10.1016/j.jcp.2016.08.002 +Jeffrey J. Heys,An alternative least-squares formulation of the Navier-Stokes equations with improved mass conservation.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#HeysLMM07,https://doi.org/10.1016/j.jcp.2007.05.005 +Alfredo Raúl Carella,Least-Squares Spectral Method for the solution of a fractional advection-dispersion equation.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#CarellaD13,https://doi.org/10.1016/j.jcp.2012.04.050 +Edgar Olbrant,Asymptotic derivation and numerical investigation of time-dependent simplified PN equations.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#OlbrantLFS13,https://doi.org/10.1016/j.jcp.2012.10.055 +Ido Schaefer,Semi-global approach for propagation of the time-dependent Schrödinger equation for time-dependent and nonlinear problems.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#SchaeferTK17,https://doi.org/10.1016/j.jcp.2017.04.017 +Ping Lin,An energy law preserving C0 finite element scheme for simulating the kinematic effects in liquid crystal dynamics.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#LinLZ07,https://doi.org/10.1016/j.jcp.2007.09.005 +I. Yu. Gejadze,On gauss-verifiability of optimal solutions in variational data assimilation problems with nonlinear dynamics.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#GejadzeS15,https://doi.org/10.1016/j.jcp.2014.09.032 +Jeffrey Willert,A comparison of acceleration methods for solving the neutron transport k-eigenvalue problem.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#WillertPK14,https://doi.org/10.1016/j.jcp.2014.06.044 +Pedro Gonnet,Using piecewise polynomials for faster potential function evaluation.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#Gonnet10,https://doi.org/10.1016/j.jcp.2009.09.028 +Alfonso Barbas,Development of a Godunov method for Maxwell's equations with Adaptive Mesh Refinement.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#BarbasV15,https://doi.org/10.1016/j.jcp.2015.07.048 +Shizhao Wang,An immersed boundary method based on discrete stream function formulation for two- and three-dimensional incompressible flows.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#WangZ11,https://doi.org/10.1016/j.jcp.2011.01.045 +Andrea Villa,An efficient algorithm for corona simulation with complex chemical models.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#VillaBGLM17,https://doi.org/10.1016/j.jcp.2017.02.038 +Terrence S. Tricco,Constrained hyperbolic divergence cleaning for smoothed particle magnetohydrodynamics.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#TriccoP12,https://doi.org/10.1016/j.jcp.2012.06.039 +Karl Glasner,Improving the accuracy of convexity splitting methods for gradient flow equations.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#GlasnerO16,https://doi.org/10.1016/j.jcp.2016.03.042 +Kai Gao,An improved rotated staggered-grid finite-difference method with fourth-order temporal accuracy for elastic-wave modeling in anisotropic media.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#GaoH17,https://doi.org/10.1016/j.jcp.2017.08.053 +Xiongwei Cui,A hybrid wavelet-based adaptive immersed boundary finite-difference lattice Boltzmann method for two-dimensional fluid-structure interaction.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#CuiYWL17,https://doi.org/10.1016/j.jcp.2016.12.019 +Kim-Claire Le Thanh,A volume of fluid method for a two-dimensional plasma expansion problem.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#ThanhPV07,https://doi.org/10.1016/j.jcp.2007.02.031 +Mitsuru Honda,Dynamic transport simulation code including plasma rotation and radial electric field.,2008,227,J. Comput. Physics,5,db/journals/jcphy/jcphy227.html#HondaF08,https://doi.org/10.1016/j.jcp.2007.11.017 +Pengde Wang,An implicit midpoint difference scheme for the fractional Ginzburg-Landau equation.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#WangH16,https://doi.org/10.1016/j.jcp.2016.02.018 +Walter Pötz,Single-cone finite difference scheme for the (2+1)D Dirac von Neumann equation.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#PotzS17,https://doi.org/10.1016/j.jcp.2017.07.037 +Jeroen Bédorf,A sparse octree gravitational N-body code that runs entirely on the GPU processor.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#BedorfGZ12,https://doi.org/10.1016/j.jcp.2011.12.024 +Ben Adcock,Parameter selection and numerical approximation properties of Fourier extensions from fixed data.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#AdcockR14,https://doi.org/10.1016/j.jcp.2014.05.036 +Razvan Stefanescu,POD/DEIM reduced-order strategies for efficient four dimensional variational data assimilation.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#StefanescuSN15,https://doi.org/10.1016/j.jcp.2015.04.030 +C. Ji,A novel iterative direct-forcing immersed boundary method and its finite volume applications.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#JiMW12,https://doi.org/10.1016/j.jcp.2011.11.010 +Yang Liu,Time-space domain dispersion-relation-based finite-difference method with arbitrary even-order accuracy for the 2D acoustic wave equation.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#LiuS13,https://doi.org/10.1016/j.jcp.2012.08.025 +Bao Wang,Second order method for solving 3D elasticity equations with complex interfaces.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#WangXW15,https://doi.org/10.1016/j.jcp.2015.03.053 +Jiaxiang Cai,Local energy-preserving and momentum-preserving algorithms for coupled nonlinear Schrödinger system.,2013,239,J. Comput. Physics,,db/journals/jcphy/jcphy239.html#CaiWL13,https://doi.org/10.1016/j.jcp.2012.12.036 +Oriano Bottauscio,A multiscale approach to the analysis of magnetic grid shields and its validation.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#BottauscioCMRZ07,https://doi.org/10.1016/j.jcp.2007.09.010 +Cheng Wang,Robust high order discontinuous Galerkin schemes for two-dimensional gaseous detonations.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#WangZSN12,https://doi.org/10.1016/j.jcp.2011.10.002 +Shingyu Leung,A grid based particle method for solving partial differential equations on evolving surfaces and modeling high order geometrical motion.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#LeungLZ11,https://doi.org/10.1016/j.jcp.2010.12.029 +P. Surya Mohan,Variable order spherical harmonic expansion scheme for the radiative transport equation using finite elements.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#MohanTSPA11,https://doi.org/10.1016/j.jcp.2011.06.004 +Olav Aursjø,An improved lattice Boltzmann method for simulating advective-diffusive processes in fluids.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#AursjoJVH17,https://doi.org/10.1016/j.jcp.2016.12.014 +Xiaomin Pan,Fully decoupled monolithic projection method for natural convection problems.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#PanKLC17,https://doi.org/10.1016/j.jcp.2017.01.022 +Sergio Pirozzoli,Generalized characteristic relaxation boundary conditions for unsteady compressible flow simulations.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#PirozzoliC13,https://doi.org/10.1016/j.jcp.2013.04.021 +Ivan G. Graham,Quasi-Monte Carlo methods for elliptic PDEs with random coefficients and applications.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#GrahamKNSS11,https://doi.org/10.1016/j.jcp.2011.01.023 +Hui Xu 0005,Sensitivity analysis and determination of free relaxation parameters for the weakly-compressible MRT-LBM schemes.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#XuMS12,https://doi.org/10.1016/j.jcp.2012.07.005 +Saswati Dana,Physically consistent simulation of mesoscale chemical kinetics: The non-negative FIS-α method.,2011,230,J. Comput. Physics,24,db/journals/jcphy/jcphy230.html#DanaR11,https://doi.org/10.1016/j.jcp.2011.07.032 +Dake Chen,El Niño prediction and predictability.,2008,227,J. Comput. Physics,7,db/journals/jcphy/jcphy227.html#ChenC08,https://doi.org/10.1016/j.jcp.2007.05.014 +Yasunori Watanabe,Free-surface flows under impacting droplets.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#WatanabeSI08,https://doi.org/10.1016/j.jcp.2007.10.020 +Per Pettersson,A stochastic Galerkin method for the Euler equations with Roe variable transformation.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#PetterssonIN14,https://doi.org/10.1016/j.jcp.2013.10.011 +Alexey I. Neelov,An efficient numerical quadrature for the calculation of the potential energy of wavefunctions expressed in the Daubechies wavelet basis.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#NeelovG06,https://doi.org/10.1016/j.jcp.2006.01.003 +David C. Del Rey Fernández,Corner-corrected diagonal-norm summation-by-parts operators for the first derivative with increased order of accuracy.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#FernandezBZ17,https://doi.org/10.1016/j.jcp.2016.10.051 +Martin Almquist,High-fidelity numerical solution of the time-dependent Dirac equation.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#AlmquistME14,https://doi.org/10.1016/j.jcp.2013.12.038 +Ares Rosakis,Dedication.,2008,227,J. Comput. Physics,21,db/journals/jcphy/jcphy227.html#RosakisP08,https://doi.org/10.1016/j.jcp.2008.08.006 +Olivier Coulaud,High performance BLAS formulation of the multipole-to-local operator in the fast multipole method.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#CoulaudFR08,https://doi.org/10.1016/j.jcp.2007.09.027 +Philsu Kim,An error embedded method based on generalized Chebyshev polynomials.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#KimKJB16,https://doi.org/10.1016/j.jcp.2015.11.021 +Jean-David Benamou,Numerical solution of the Optimal Transportation problem using the Monge-Ampère equation.,2014,260,J. Comput. Physics,,db/journals/jcphy/jcphy260.html#BenamouFO14,https://doi.org/10.1016/j.jcp.2013.12.015 +Lucas O. Müller,Well-balanced high-order numerical schemes for one-dimensional blood flow in vessels with varying mechanical properties.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#MullerPT13,https://doi.org/10.1016/j.jcp.2013.01.050 +Marcos Lage,Flows with suspended and floating particles.,2011,230,J. Comput. Physics,20,db/journals/jcphy/jcphy230.html#LageLC11,https://doi.org/10.1016/j.jcp.2011.06.031 +Lin Zheng,Kinetic theory based lattice Boltzmann equation with viscous dissipation and pressure work for axisymmetric thermal flows.,2010,229,J. Comput. Physics,16,db/journals/jcphy/jcphy229.html#ZhengGSZ10,https://doi.org/10.1016/j.jcp.2010.04.026 +Dale B. Haidvogel,Ocean forecasting in terrain-following coordinates: Formulation and skill assessment of the Regional Ocean Modeling System.,2008,227,J. Comput. Physics,7,db/journals/jcphy/jcphy227.html#HaidvogelABCCLFGHLLMMMPSSSWW08,https://doi.org/10.1016/j.jcp.2007.06.016 +A. Berkenbos,Accurate method for including solid-fluid boundary interactions in mesoscopic model fluids.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#BerkenbosL08,https://doi.org/10.1016/j.jcp.2008.01.011 +S. A. Tokareva,A flux splitting method for the Baer-Nunziato equations of compressible two-phase flow.,2016,323,J. Comput. Physics,,db/journals/jcphy/jcphy323.html#TokarevaT16,https://doi.org/10.1016/j.jcp.2016.07.019 +Pierre Terrier,Cluster dynamics modelling of materials: A new hybrid deterministic/stochastic coupling approach.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#TerrierAJAS17,https://doi.org/10.1016/j.jcp.2017.08.015 +Brendan S. Mascarenhas,Coupling p-multigrid to geometric multigrid for discontinuous Galerkin formulations of the convection-diffusion equation.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#MascarenhasHA10,https://doi.org/10.1016/j.jcp.2010.01.020 +Changqiu Jin,An adaptive grid method for two-dimensional viscous flows.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#JinX06,https://doi.org/10.1016/j.jcp.2006.01.041 +V. Vaibhav,Transparent boundary condition for numerical modeling of intense laser-molecule interaction.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#Vaibhav15,https://doi.org/10.1016/j.jcp.2014.12.005 +Pavel P. Popov,Implicit and explicit schemes for mass consistency preservation in hybrid particle/finite-volume algorithms for turbulent reactive flows.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#PopovP14,https://doi.org/10.1016/j.jcp.2013.09.005 +Rodney O. Fox,Higher-order quadrature-based moment methods for kinetic equations.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#Fox09,https://doi.org/10.1016/j.jcp.2009.07.018 +Cesare Corrado,Identification of weakly coupled multiphysics problems. Application to the inverse problem of electrocardiography.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#CorradoGM15,https://doi.org/10.1016/j.jcp.2014.11.041 +Hassan Errami,Detection of Hopf bifurcations in chemical reaction networks using convex coordinates.,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#ErramiEGSS015,https://doi.org/10.1016/j.jcp.2015.02.050 +Dmitriy Y. Anistratov,Iterative stability analysis of spatial domain decomposition based on block Jacobi algorithm for the diamond-difference scheme.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#AnistratovA15,https://doi.org/10.1016/j.jcp.2015.05.033 +Travis C. Fisher,Discretely conservative finite-difference formulations for nonlinear conservation laws in split form: Theory and boundary conditions.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#FisherCNYS13,https://doi.org/10.1016/j.jcp.2012.09.026 +Ryuichi S. Nagaosa,A numerical modelling of gas exchange mechanisms between air and turbulent water with an aquarium chemical reaction.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#Nagaosa14,https://doi.org/10.1016/j.jcp.2013.08.027 +F. Daude,A Finite-Volume approach for compressible single- and two-phase flows in flexible pipelines with fluid-structure interaction.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#DaudeG18,https://doi.org/10.1016/j.jcp.2018.01.055 +Hongqiao Wang,Gaussian process surrogates for failure detection: A Bayesian experimental design approach.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#WangLL16,https://doi.org/10.1016/j.jcp.2016.02.053 +S. Kacem,Full multi grid method for electric field computation in point-to-plane streamer discharge in air at atmospheric pressure.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#KacemEDRYC12,https://doi.org/10.1016/j.jcp.2011.08.003 +Stefan Hellander,Flexible single molecule simulation of reaction-diffusion processes.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#HellanderL11,https://doi.org/10.1016/j.jcp.2011.02.020 +Vasileios Maroulas,Improved particle filters for multi-target tracking.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#MaroulasS12,https://doi.org/10.1016/j.jcp.2011.09.023 +Masayuki Yano,An optimization-based framework for anisotropic simplex mesh adaptation.,2012,231,J. Comput. Physics,22,db/journals/jcphy/jcphy231.html#YanoD12,https://doi.org/10.1016/j.jcp.2012.06.040 +Ahmad Golbabai,Computing a numerical solution of two dimensional non-linear Schrödinger equation on complexly shaped domains by RBF based differential quadrature method.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#GolbabaiN16,https://doi.org/10.1016/j.jcp.2016.07.003 +Lajos Szalmás,Variance-reduced DSMC for binary gas flows as defined by the McCormack kinetic model.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#Szalmas12,https://doi.org/10.1016/j.jcp.2012.01.016 +Enrique Domingo Fernández-Nieto,Efficient numerical schemes for viscoplastic avalanches. Part 2: The 2D case.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#Fernandez-Nieto18,https://doi.org/10.1016/j.jcp.2017.09.054 +Guoyin Wang,Dual-scale Galerkin methods for Darcy flow.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#WangSNKRCM18,https://doi.org/10.1016/j.jcp.2017.10.047 +Qingcheng Yang,Multiresolution molecular mechanics: Surface effects in nanoscale materials.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#YangT17,https://doi.org/10.1016/j.jcp.2017.01.058 +Guillaume Houzeaux,A massively parallel fractional step solver for incompressible flows.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#HouzeauxVAC09,https://doi.org/10.1016/j.jcp.2009.05.019 +Peter Buchak,Surface-tension-driven Stokes flow: A numerical method based on conformal geometry.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#BuchakC16,https://doi.org/10.1016/j.jcp.2016.04.044 +Shanqin Chen,Krylov implicit integration factor methods for spatial discretization on high dimensional unstructured meshes: Application to discontinuous Galerkin methods.,2011,230,J. Comput. Physics,11,db/journals/jcphy/jcphy230.html#ChenZ11,https://doi.org/10.1016/j.jcp.2011.01.010 +Wensheng Tang,Discontinuous Galerkin methods for Hamiltonian ODEs and PDEs.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#TangSC17,https://doi.org/10.1016/j.jcp.2016.11.023 +Eduardo Corona,Boundary integral equation analysis for suspension of spheres in Stokes flow.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#CoronaV18,https://doi.org/10.1016/j.jcp.2018.02.017 +Matteo Cusini,Constrained pressure residual multiscale (CPR-MS) method for fully implicit simulation of multiphase flow in porous media.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#CusiniLNH15,https://doi.org/10.1016/j.jcp.2015.07.019 +M. Dudzinski,Well-balanced bicharacteristic-based scheme for multilayer shallow water flows including wet/dry fronts.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#DudzinskiL13,https://doi.org/10.1016/j.jcp.2012.10.037 +S. Hess,How to improve the diagnosis of kinetic energy in 8*f PIC codes.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#HessM09,https://doi.org/10.1016/j.jcp.2009.05.035 +Zhijun Tan,An immersed interface method for Stokes flows with fixed/moving interfaces and rigid boundaries.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#TanLK09,https://doi.org/10.1016/j.jcp.2009.06.005 +Fausto Cavalli,3D simulations of early blood vessel formation.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#CavalliGNSVS07,https://doi.org/10.1016/j.jcp.2007.03.030 +Chungang Chen,Global shallow water models based on multi-moment constrained finite volume method and three quasi-uniform spherical grids.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#ChenLSX14,https://doi.org/10.1016/j.jcp.2013.10.026 +Sung Don Kim,Robust HLLC Riemann solver with weighted average flux scheme for strong shock.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#KimLLJ09,https://doi.org/10.1016/j.jcp.2009.07.006 +Chaopeng Shen,Adaptive mesh refinement based on high order finite difference WENO scheme for multi-scale simulations.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#ShenQC11,https://doi.org/10.1016/j.jcp.2011.02.008 +Qing Xie,A spectral radius scaling semi-implicit iterative time stepping method for reactive flow simulations with detailed chemistry.,2018,368,J. Comput. Physics,,db/journals/jcphy/jcphy368.html#XieXR18,https://doi.org/10.1016/j.jcp.2018.04.042 +Prabir Daripa,Modeling and simulation of surfactant-polymer flooding using a new hybrid method.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#DaripaD17,https://doi.org/10.1016/j.jcp.2017.01.038 +R. E. Denton,Symmetry boundary conditions.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#DentonH09,https://doi.org/10.1016/j.jcp.2009.03.033 +Nitin Agarwal,A stochastic Lagrangian approach for geometrical uncertainties in electrostatics.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#AgarwalA07,https://doi.org/10.1016/j.jcp.2007.03.026 +Jianming Yang,A non-iterative direct forcing immersed boundary method for strongly-coupled fluid-solid interactions.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#YangS15,https://doi.org/10.1016/j.jcp.2015.04.040 +Nathaniel R. Morgan,3D level set methods for evolving fronts on tetrahedral meshes with adaptive mesh refinement.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#MorganW17,https://doi.org/10.1016/j.jcp.2017.02.030 +Tapan K. Sengupta,A new combined stable and dispersion relation preserving compact scheme for non-periodic problems.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#SenguptaLV09,https://doi.org/10.1016/j.jcp.2009.01.003 +Christiaan M. Klaij,Pseudo-time stepping methods for space-time discontinuous Galerkin discretizations of the compressible Navier-Stokes equations.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#KlaijVV06,https://doi.org/10.1016/j.jcp.2006.04.003 +Damrongsak Wirasaet,Artificial boundary layers in discontinuous Galerkin solutions to shallow water equations in channels.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#WirasaetBMKWD15,https://doi.org/10.1016/j.jcp.2015.07.015 +Drew P. Higginson,A full-angle Monte-Carlo scattering technique including cumulative and single-event Rutherford scattering in plasmas.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#Higginson17,https://doi.org/10.1016/j.jcp.2017.08.016 +Jens Niegemann,Efficient low-storage Runge-Kutta schemes with optimized stability regions.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#NiegemannDB12,https://doi.org/10.1016/j.jcp.2011.09.003 +Dominik Göddeke,Energy efficiency vs. performance of the numerical solution of PDEs: An application study on a low-power ARM-based cluster.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#GoddekeKGRRPR13,https://doi.org/10.1016/j.jcp.2012.11.031 +Britton Chang,A deterministic photon free method to solve radiation transfer equations.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#Chang07a,https://doi.org/10.1016/j.jcp.2006.06.048 +Wei Cai,A new FFT-based algorithm to compute Born radii in the generalized Born theory of biomolecule solvation.,2008,227,J. Comput. Physics,24,db/journals/jcphy/jcphy227.html#CaiXB08,https://doi.org/10.1016/j.jcp.2008.08.015 +Kazufumi Ito,A domain decomposition solver for acoustic scattering by elastic objects in layered media.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#ItoQT08,https://doi.org/10.1016/j.jcp.2008.06.015 +Shiv Kumar Sambasivan,A cell-centered Lagrangian finite volume approach for computing elasto-plastic response of solids in cylindrical axisymmetric geometries.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#SambasivanSB13,https://doi.org/10.1016/j.jcp.2012.11.044 +Min Tang 0002,An asymptotic preserving method for strongly anisotropic diffusion equations based on field line integration.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#TangW17,https://doi.org/10.1016/j.jcp.2016.10.062 +M. Dieste,Random particle methods applied to broadband fan interaction noise.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#DiesteG12,https://doi.org/10.1016/j.jcp.2012.07.044 +Marco Caliari,A minimisation approach for computing the ground state of Gross-Pitaevskii systems.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#CaliariORT09,https://doi.org/10.1016/j.jcp.2008.09.018 +Ilias Bilionis,Multi-output local Gaussian process regression: Applications to uncertainty quantification.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#BilionisZ12,https://doi.org/10.1016/j.jcp.2012.04.047 +Salvador Izquierdo,Momentum transfer correction for macroscopic-gradient boundary conditions in lattice Boltzmann methods.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#IzquierdoF10,https://doi.org/10.1016/j.jcp.2009.11.036 +Bruno Blais,A conservative lattice Boltzmann model for the volume-averaged Navier-Stokes equations based on a novel collision operator.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#BlaisTVB15,https://doi.org/10.1016/j.jcp.2015.03.036 +Josefin Ahlkrona,A meshfree approach to non-Newtonian free surface ice flow: Application to the Haut Glacier d'Arolla.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#AhlkronaS17,https://doi.org/10.1016/j.jcp.2016.10.045 +Charbel Farhat,An ALE formulation of embedded boundary methods for tracking boundary layers in turbulent fluid-structure interaction problems.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#FarhatL14,https://doi.org/10.1016/j.jcp.2014.01.018 +Eric Johnsen,Preventing numerical errors generated by interface-capturing schemes in compressible multi-material flows.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#JohnsenH12,https://doi.org/10.1016/j.jcp.2012.04.048 +Y. Lin,Random number generators for large-scale parallel Monte Carlo simulations on FPGA.,2018,360,J. Comput. Physics,,db/journals/jcphy/jcphy360.html#LinWL18,https://doi.org/10.1016/j.jcp.2018.01.029 +Lulu Tian,A local discontinuous Galerkin method for the (non)-isothermal Navier-Stokes-Korteweg equations.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#TianXKV15,https://doi.org/10.1016/j.jcp.2015.04.025 +Gino I. Montecinos,Hyperbolic reformulation of a 1D viscoelastic blood flow model and ADER finite volume schemes.,2014,266,J. Comput. Physics,,db/journals/jcphy/jcphy266.html#MontecinosMT14,https://doi.org/10.1016/j.jcp.2014.02.013 +Tobias Kempe,An improved immersed boundary method with direct forcing for the simulation of particle laden flows.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#KempeF12,https://doi.org/10.1016/j.jcp.2012.01.021 +Abtin Rahimian,Boundary integral method for the flow of vesicles with viscosity contrast in three dimensions.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#RahimianVZB15,https://doi.org/10.1016/j.jcp.2015.06.017 +T. Allen,A deep non-hydrostatic compressible atmospheric model on a Yin-Yang grid.,2016,319,J. Comput. Physics,,db/journals/jcphy/jcphy319.html#AllenZ16,https://doi.org/10.1016/j.jcp.2016.05.022 +Eugenia S. Bakunova,Optimal filtering of complex turbulent systems with memory depth through consistency constraints.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#BakunovaH13,https://doi.org/10.1016/j.jcp.2012.11.028 +éliane Bécache,Stable perfectly matched layers for a cold plasma in a strong background magnetic field.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#BecacheJK17,https://doi.org/10.1016/j.jcp.2017.03.051 +Maciej Balajewicz,Minimal subspace rotation on the Stiefel manifold for stabilization and enhancement of projection-based reduced order models for the compressible Navier-Stokes equations.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#BalajewiczTD16,https://doi.org/10.1016/j.jcp.2016.05.037 +J. Martín-Vaquero,Extrapolated stabilized explicit Runge-Kutta methods.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#Martin-VaqueroK16,https://doi.org/10.1016/j.jcp.2016.08.042 +Pat Plunkett,Spatially adaptive stochastic methods for fluid-structure interactions subject to thermal fluctuations in domains with complex geometries.,2014,277,J. Comput. Physics,,db/journals/jcphy/jcphy277.html#PlunkettHSA14,https://doi.org/10.1016/j.jcp.2014.07.051 +Hiroaki Nishikawa,Hyperbolic advection-diffusion schemes for high-Reynolds-number boundary-layer problems.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#NishikawaL18,https://doi.org/10.1016/j.jcp.2017.09.039 +Olivier Le Métayer,A numerical scheme for the Green-Naghdi model.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#MetayerGH10,https://doi.org/10.1016/j.jcp.2009.11.021 +Wenxiao Pan,Smoothed particle hydrodynamics continuous boundary force method for Navier-Stokes equations subject to a Robin boundary condition.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#PanBT14,https://doi.org/10.1016/j.jcp.2013.12.014 +Dexuan Xie,A nonlocal modified Poisson-Boltzmann equation and finite element solver for computing electrostatics of biomolecules.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#XieJ16,https://doi.org/10.1016/j.jcp.2016.06.028 +Lawrence E. Kidder,SpECTRE: A task-based discontinuous Galerkin code for relativistic astrophysics.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#KidderFFSTBDDHL17,https://doi.org/10.1016/j.jcp.2016.12.059 +Michael J. Schmidt,A Kernel-based Lagrangian method for imperfectly-mixed chemical reactions.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#SchmidtPB17,https://doi.org/10.1016/j.jcp.2017.02.012 +Xuehua Yang,Orthogonal spline collocation method for the two-dimensional fractional sub-diffusion equation.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#YangZX14,https://doi.org/10.1016/j.jcp.2013.09.016 +Nail A. Gumerov,Fast multipole methods on graphics processors.,2008,227,J. Comput. Physics,18,db/journals/jcphy/jcphy227.html#GumerovD08,https://doi.org/10.1016/j.jcp.2008.05.023 +Jérôme Fontane,The HyperCASL algorithm: A new approach to the numerical simulation of geophysical flows.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#FontaneD09,https://doi.org/10.1016/j.jcp.2009.05.025 +Ramon Planas,Approximation of the inductionless MHD problem using a stabilized finite element method.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#PlanasBC11,https://doi.org/10.1016/j.jcp.2010.12.046 +Emmanuel Audusse,Conservative discretization of Coriolis force in a finite volume framework.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#AudusseKO09,https://doi.org/10.1016/j.jcp.2009.01.004 +Rahul Kumar,One-sided finite-difference approximations suitable for use with Richardson extrapolation.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#KumarB06,https://doi.org/10.1016/j.jcp.2006.05.035 +Hui Zheng,A meshfree local RBF collocation method for anti-plane transverse elastic wave propagation analysis in 2D phononic crystals.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#ZhengZWSS16,https://doi.org/10.1016/j.jcp.2015.10.020 +P. Young,A high-order Nyström discretization scheme for boundary integral equations defined on rotationally symmetric surfaces.,2012,231,J. Comput. Physics,11,db/journals/jcphy/jcphy231.html#YoungHM12,https://doi.org/10.1016/j.jcp.2012.02.008 +Zhijun Shen,Behavior of viscous solutions in Lagrangian formulation.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#ShenYL10,https://doi.org/10.1016/j.jcp.2010.02.020 +Zhen-huan Teng,Exact boundary conditions for the initial value problem of convex conservation laws.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#Teng10,https://doi.org/10.1016/j.jcp.2010.01.028 +David Kay,A multigrid finite element solver for the Cahn-Hilliard equation.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#KayW06,https://doi.org/10.1016/j.jcp.2005.07.004 +Abdon Atangana,On the stability and convergence of the time-fractional variable order telegraph equation.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#Atangana15,https://doi.org/10.1016/j.jcp.2014.12.043 +J. López,A new volume conservation enforcement method for PLIC reconstruction in general convex grids.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#LopezHGF16,https://doi.org/10.1016/j.jcp.2016.04.018 +Thorsten Hohage,Fast numerical solution of the electromagnetic medium scattering problem and applications to the inverse problem.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#Hohage06,https://doi.org/10.1016/j.jcp.2005.09.025 +Xiang An,A fast algorithm based on partial basic solution vectors domain decomposition method for scattering analysis of electrically large cylinders.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#AnL06,https://doi.org/10.1016/j.jcp.2006.07.002 +A. Chaudhuri,Explicit discontinuous spectral element method with entropy generation based artificial viscosity for shocked viscous flows.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#ChaudhuriJDAM17,https://doi.org/10.1016/j.jcp.2016.11.042 +Jinjie Liu,Generalization of the FDTD algorithm for simulations of hydrodynamic nonlinear Drude model.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#LiuBZZHKM10,https://doi.org/10.1016/j.jcp.2010.04.016 +Yunsic Shim,Hybrid asynchronous algorithm for parallel kinetic Monte Carlo simulations of thin film growth.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#ShimA06,https://doi.org/10.1016/j.jcp.2005.07.005 +Marzia Bisi,Numerical studies of a granular gas in a host medium.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#BisiRS12,https://doi.org/10.1016/j.jcp.2011.10.010 +Tsung-Ming Huang,Computing the full spectrum of large sparse palindromic quadratic eigenvalue problems arising from surface Green's function calculations.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#HuangLTC18,https://doi.org/10.1016/j.jcp.2017.12.011 +Christian Contarino,Junction-Generalized Riemann Problem for stiff hyperbolic balance laws in networks: An implicit solver and ADER schemes.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#ContarinoTMBK16,https://doi.org/10.1016/j.jcp.2016.03.049 +Hyoungsu Baek,A convergence study of a new partitioned fluid-structure interaction algorithm based on fictitious mass and damping.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#BaekK12,https://doi.org/10.1016/j.jcp.2011.09.025 +Qinwu Xu,A parareal method for time-fractional differential equations.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#XuHC15,https://doi.org/10.1016/j.jcp.2014.11.034 +Simone Marras,Variational multiscale stabilization of high-order spectral elements for the advection-diffusion equation.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#MarrasKGV12,https://doi.org/10.1016/j.jcp.2012.06.028 +Mayank Bajpayi,A Finite Variable Difference Relaxation Scheme for hyperbolic-parabolic equations.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#BajpayiR09,https://doi.org/10.1016/j.jcp.2009.06.038 +Andrea Mignone,A second-order unsplit Godunov scheme for cell-centered MHD: The CTU-GLM scheme.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#MignoneT10,https://doi.org/10.1016/j.jcp.2009.11.026 +Siddharth Oroskar,Efficient computation of the 2D periodic Green's function using the Ewald method.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#OroskarJW06,https://doi.org/10.1016/j.jcp.2006.06.050 +Zhouyang Ge,An efficient mass-preserving interface-correction level set/ghost fluid method for droplet suspensions under depletion forces.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#GeLTB18,https://doi.org/10.1016/j.jcp.2017.10.046 +A. Panarese,A Monte Carlo model for determination of binary diffusion coefficients in gases.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#PanareseBCDLLC11,https://doi.org/10.1016/j.jcp.2011.03.053 +F. Paravento,A robust numerical model for premixed flames with high density ratios based on new pressure correction and IMEX schemes.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#Paravento10,https://doi.org/10.1016/j.jcp.2010.03.002 +Patrick Gelß,Solving the master equation without kinetic Monte Carlo: Tensor train approximations for a CO oxidation model.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#GelssMS16,https://doi.org/10.1016/j.jcp.2016.03.025 +Wouter Tierens,BOR-FDTD subgridding based on finite element principles.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#TierensZ11,https://doi.org/10.1016/j.jcp.2011.02.028 +Joshua A. Anderson,General purpose molecular dynamics simulations fully implemented on graphics processing units.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#AndersonLT08,https://doi.org/10.1016/j.jcp.2008.01.047 +Virginie Marry,Trotter derived algorithms for molecular dynamics with constraints: Velocity Verlet revisited.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#MarryC07,https://doi.org/10.1016/j.jcp.2006.07.033 +Keh-Ming Shyue,A high-resolution mapped grid algorithm for compressible multiphase flow problems.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#Shyue10,https://doi.org/10.1016/j.jcp.2010.08.010 +August Johansson,A three-dimensional coupled Nitsche and level set method for electrohydrodynamic potential flows in moving domains.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#JohanssonGS16,https://doi.org/10.1016/j.jcp.2015.12.026 +Dinshaw S. Balsara,Exploring various flux vector splittings for the magnetohydrodynamic system.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#BalsaraMT16,https://doi.org/10.1016/j.jcp.2016.01.029 +Wei-Fan Hu,A hybrid immersed boundary and immersed interface method for electrohydrodynamic simulations.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#HuLY15,https://doi.org/10.1016/j.jcp.2014.11.005 +Margarete O. Domingues,An adaptive multiresolution scheme with local time stepping for evolutionary PDEs.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#DominguesGRS08,https://doi.org/10.1016/j.jcp.2007.11.046 +Jean-François Lemieux,Implementation of the Jacobian-free Newton-Krylov method for solving the first-order ice sheet momentum balance.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#LemieuxPEKSHP11,https://doi.org/10.1016/j.jcp.2011.04.037 +Yifan Zhang,Maximum-principle-satisfying second order discontinuous Galerkin schemes for convection-diffusion equations on triangular meshes.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#ZhangZS13,https://doi.org/10.1016/j.jcp.2012.09.032 +Mathea J. Vuik,Multiwavelet troubled-cell indicator for discontinuity detection of discontinuous Galerkin schemes.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#VuikR14,https://doi.org/10.1016/j.jcp.2014.03.047 +Benedict J. Leimkuhler,Pairwise adaptive thermostats for improved accuracy and stability in dissipative particle dynamics.,2016,324,J. Comput. Physics,,db/journals/jcphy/jcphy324.html#LeimkuhlerS16,https://doi.org/10.1016/j.jcp.2016.07.034 +Sunyoung Bu,An evaluation of solution algorithms and numerical approximation methods for modeling an ion exchange process.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#BuHBM10,https://doi.org/10.1016/j.jcp.2010.03.021 +Lei Wu 0003,Fast spectral solution of the generalized Enskog equation for dense gases.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#WuZR15,https://doi.org/10.1016/j.jcp.2015.09.034 +Zhiqiang Sheng,An efficient numerical method for the equations of steady and unsteady flows of homogeneous incompressible Newtonian fluid.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#ShengTH11,https://doi.org/10.1016/j.jcp.2010.10.002 +J. D. Densmore,Monte Carlo simulation methods in moment-based scale-bridging algorithms for thermal radiative-transfer problems.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#DensmorePWRK15,https://doi.org/10.1016/j.jcp.2014.12.020 +Hailiang Liu,A free energy satisfying discontinuous Galerkin method for one-dimensional Poisson-Nernst-Planck systems.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#LiuW17a,https://doi.org/10.1016/j.jcp.2016.10.008 +R. Gu,Simulating vesicle-substrate adhesion using two phase field functions.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#GuWG14,https://doi.org/10.1016/j.jcp.2014.07.010 +Scott Grandison,A rapid boundary integral equation technique for protein electrostatics.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#GrandisonPV07,https://doi.org/10.1016/j.jcp.2006.10.021 +Michael Siegel,A local target specific quadrature by expansion method for evaluation of layer potentials in 3D.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#SiegelT18,https://doi.org/10.1016/j.jcp.2018.03.006 +Bengt Fornberg,On choosing a radial basis function and a shape parameter when solving a convective PDE on a sphere.,2008,227,J. Comput. Physics,5,db/journals/jcphy/jcphy227.html#FornbergP08,https://doi.org/10.1016/j.jcp.2007.11.016 +Charles Pierre,Preconditioning the bidomain model with almost linear complexity.,2012,231,J. Comput. Physics,1,db/journals/jcphy/jcphy231.html#Pierre12,https://doi.org/10.1016/j.jcp.2011.08.025 +Bradley Froehle,A high-order discontinuous Galerkin method for fluid-structure interaction with efficient implicit-explicit time stepping.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#FroehleP14,https://doi.org/10.1016/j.jcp.2014.03.034 +Jeremy A. Roberts,Multigroup diffusion preconditioners for multiplying fixed-source transport problems.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#RobertsF14,https://doi.org/10.1016/j.jcp.2014.06.034 +Ivan Lunati,An iterative multiscale finite volume algorithm converging to the exact solution.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#LunatiTL11,https://doi.org/10.1016/j.jcp.2010.11.036 +Taras I. Lakoba,A generalized Petviashvili iteration method for scalar and vector Hamiltonian equations with arbitrary form of nonlinearity.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#LakobaY07,https://doi.org/10.1016/j.jcp.2007.06.009 +Stephan Küchlin,Parallel Fokker-Planck-DSMC algorithm for rarefied gas flow simulation in complex domains at all Knudsen numbers.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#KuchlinJ17,https://doi.org/10.1016/j.jcp.2016.10.018 +Rixin Yu,A fully divergence-free method for generation of inhomogeneous and anisotropic turbulence with large spatial variation.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#YuB14,https://doi.org/10.1016/j.jcp.2013.08.055 +Hua Ji,A new adaptive mesh refinement data structure with an application to detonation.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#JiLY10,https://doi.org/10.1016/j.jcp.2010.08.023 +Mario Ricchiuto,Application of conservative residual distribution schemes to the solution of the shallow water equations on unstructured meshes.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#RicchiutoAD07,https://doi.org/10.1016/j.jcp.2006.06.024 +Rémi Abgrall,"Preface to the special issue ""High order methods for CFD problems"".",2011,230,J. Comput. Physics,11,db/journals/jcphy/jcphy230.html#AbgrallQ11,https://doi.org/10.1016/j.jcp.2011.03.004 +Pierre Degond,Asymptotic-Preserving Particle-In-Cell method for the Vlasov-Poisson system near quasineutrality.,2010,229,J. Comput. Physics,16,db/journals/jcphy/jcphy229.html#DegondDNSV10,https://doi.org/10.1016/j.jcp.2010.04.001 +Mikito Furuichi,Development of a Stokes flow solver robust to large viscosity jumps using a Schur complement approach with mixed precision arithmetic.,2011,230,J. Comput. Physics,24,db/journals/jcphy/jcphy230.html#FuruichiMT11,https://doi.org/10.1016/j.jcp.2011.09.007 +Takanobu Amano,Divergence-free approximate Riemann solver for the quasi-neutral two-fluid plasma model.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#Amano15,https://doi.org/10.1016/j.jcp.2015.07.035 +Blaise Delmotte,Large-scale simulation of steady and time-dependent active suspensions with the force-coupling method.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#DelmotteKPC15,https://doi.org/10.1016/j.jcp.2015.09.020 +Taku Nonomura,A simple interface sharpening technique with a hyperbolic tangent function applied to compressible two-fluid modeling.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#NonomuraKF14,https://doi.org/10.1016/j.jcp.2013.10.021 +Thomas Y. Hou,Removing the stiffness of elastic force from the immersed boundary method for the 2D Stokes equations.,2008,227,J. Comput. Physics,21,db/journals/jcphy/jcphy227.html#HouS08a,https://doi.org/10.1016/j.jcp.2008.03.002 +Christoph Erath,Reprint of: A conservative multi-tracer transport scheme for spectral-element spherical grids.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#ErathN14a,https://doi.org/10.1016/j.jcp.2014.04.008 +Arie de Niet,A tailored solver for bifurcation analysis of ocean-climate models.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#NietWSD07,https://doi.org/10.1016/j.jcp.2007.08.006 +Shravan M. Hanasoge,Spatio-spectral concentration of convolutions.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#Hanasoge16,https://doi.org/10.1016/j.jcp.2016.02.068 +Saket Patkar,Towards positivity preservation for monolithic two-way solid-fluid coupling.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#PatkarALLF16,https://doi.org/10.1016/j.jcp.2016.02.010 +Alexander V. Rodionov,"Complement to the ""Kolgan project"".",2012,231,J. Comput. Physics,13,db/journals/jcphy/jcphy231.html#Rodionov12,https://doi.org/10.1016/j.jcp.2012.03.011 +Peter Clarke,A low noise discrete velocity method for the Boltzmann equation with quantized rotational and vibrational energy.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#ClarkeVG18,https://doi.org/10.1016/j.jcp.2017.08.065 +Tomas Oppelstrup,Matrix compression by common subexpression elimination.,2013,247,J. Comput. Physics,,db/journals/jcphy/jcphy247.html#Oppelstrup13,https://doi.org/10.1016/j.jcp.2013.03.042 +Hirotake Sugawara,Timesaving techniques for decision of electron-molecule collisions in Monte Carlo simulation of electrical discharges.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#SugawaraMSS07,https://doi.org/10.1016/j.jcp.2006.09.007 +Shaoqiang Tang,Homogenizing atomic dynamics by fractional differential equations.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#TangY17,https://doi.org/10.1016/j.jcp.2017.06.038 +Kathrin Müller,Smoothed dissipative particle dynamics with angular momentum conservation.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#MullerFG15,https://doi.org/10.1016/j.jcp.2014.10.017 +Shuai Zhang,Simulation of solid-fluid mixture flow using moving particle methods.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#ZhangKSKMF09,https://doi.org/10.1016/j.jcp.2008.12.005 +Francisco Rus,Self-similar radiation from numerical Rosenau-Hyman compactons.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#RusV07,https://doi.org/10.1016/j.jcp.2007.07.024 +Ankur Taneja,A fully-coupled discontinuous Galerkin spectral element method for two-phase flow in petroleum reservoirs.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#TanejaH18,https://doi.org/10.1016/j.jcp.2017.09.059 +E. Love,Stability analysis of a predictor/multi-corrector method for staggered-grid Lagrangian shock hydrodynamics.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#LoveRS09,https://doi.org/10.1016/j.jcp.2009.06.042 +Wijnand Hoitinga,Direct Minimization of the least-squares spectral element functional - Part I: Direct solver.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#HoitingaGKG08,https://doi.org/10.1016/j.jcp.2007.10.022 +Grétar Tryggvason,Note: Enriching the content of the Journal of Computational Physics.,2012,231,J. Comput. Physics,22,db/journals/jcphy/jcphy231.html#Tryggvason12,https://doi.org/10.1016/j.jcp.2012.06.026 +Pouria Mistani,The island dynamics model on parallel quadtree grids.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#MistaniGBSMRG18,https://doi.org/10.1016/j.jcp.2018.01.054 +Mircea Grigoriu,Parametric models for samples of random functions.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#Grigoriu15,https://doi.org/10.1016/j.jcp.2015.04.053 +Marc Dambrine,Numerical solution of the homogeneous Neumann boundary value problem on domains with a thin layer of random thickness.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#DambrineGHP17,https://doi.org/10.1016/j.jcp.2016.10.044 +Raphaël Loubère,Volume consistency in a staggered grid Lagrangian hydrodynamics scheme.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#LoubereSW08,https://doi.org/10.1016/j.jcp.2008.01.006 +Xucheng Meng,A NURBS-enhanced finite volume solver for steady Euler equations.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#MengH18,https://doi.org/10.1016/j.jcp.2017.12.041 +M. Icardi,Quadrature-based moment closures for non-equilibrium flows: Hard-sphere collisions and approach to equilibrium.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#IcardiAMIF12,https://doi.org/10.1016/j.jcp.2012.07.012 +Jeffrey W. Banks,A stable partitioned FSI algorithm for rigid bodies and incompressible flow. Part I: Model problem analysis.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#BanksHST17,https://doi.org/10.1016/j.jcp.2017.01.015 +Nathan L. Mundis,Toward an optimal solver for time-spectral fluid-dynamic and aeroelastic solutions on unstructured meshes.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#MundisM17,https://doi.org/10.1016/j.jcp.2017.04.067 +Marta de la Llave Plata,On the use of biorthogonal interpolating wavelets for large-eddy simulation of turbulence.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#PlataCP12,https://doi.org/10.1016/j.jcp.2012.06.024 +Aymen Laadhari,Computing the dynamics of biomembranes by combining conservative level set and adaptive finite element methods.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#LaadhariSM14,https://doi.org/10.1016/j.jcp.2013.12.032 +Ferran Garcia,A comparison of high-order time integrators for thermal convection in rotating spherical shells.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#GarciaNGS10,https://doi.org/10.1016/j.jcp.2010.07.004 +Zheng Lou,A dual-field domain-decomposition method for the time-domain finite-element analysis of large finite arrays.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#LouJ07,https://doi.org/10.1016/j.jcp.2006.07.024 +Richard Uber,Analysis and numerical solution of transient electromagnetic scattering from two cavities.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#UberWH17,https://doi.org/10.1016/j.jcp.2017.04.043 +Julian Kates-Harbeck,Simplex-in-cell technique for collisionless plasma simulations.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#Kates-HarbeckTZ16,https://doi.org/10.1016/j.jcp.2015.10.017 +Ulrich Hetmaniuk,Basis selection in LOBPCG.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#HetmaniukL06,https://doi.org/10.1016/j.jcp.2006.02.007 +Changqiu Jin,A unified moving grid gas-kinetic method in Eulerian space for viscous flow computation.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#JinX07,https://doi.org/10.1016/j.jcp.2006.07.015 +Tong Gao,Deformation of elastic particles in viscous shear flow.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#GaoH09,https://doi.org/10.1016/j.jcp.2008.11.029 +Xudong Lan,Modified relaxation time Monte Carlo method for continuum-transition gas flows.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#LanSL08,https://doi.org/10.1016/j.jcp.2008.01.012 +Qiqi Wang,A high order multivariate approximation scheme for scattered data sets.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#WangMI10,https://doi.org/10.1016/j.jcp.2010.04.047 +Fangxin Fang,Non-linear Petrov-Galerkin methods for reduced order hyperbolic equations and discontinuous finite element methods.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#FangPNEDX13,https://doi.org/10.1016/j.jcp.2012.10.011 +L. M. Yang,A three-dimensional explicit sphere function-based gas-kinetic flux solver for simulation of inviscid compressible flows.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#YangSW15,https://doi.org/10.1016/j.jcp.2015.03.058 +Enrique Martínez,Billion-atom synchronous parallel kinetic Monte Carlo simulations of critical 3D Ising systems.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#MartinezMM11,https://doi.org/10.1016/j.jcp.2010.11.006 +Nail K. Yamaleev,A family of fourth-order entropy stable nonoscillatory spectral collocation schemes for the 1-D Navier-Stokes equations.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#YamaleevC17,https://doi.org/10.1016/j.jcp.2016.11.039 +Hugo G. Castro,A time and space correlated turbulence synthesis method for Large Eddy Simulations.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#CastroP13,https://doi.org/10.1016/j.jcp.2012.10.035 +Ricardo H. Nochetto,The Ericksen model of liquid crystals with colloidal and electric effects.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#NochettoWZ18,https://doi.org/10.1016/j.jcp.2017.09.035 +S. A. Tokareva,HLLC-type Riemann solver for the Baer-Nunziato equations of compressible two-phase flow.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#TokarevaT10,https://doi.org/10.1016/j.jcp.2010.01.016 +Walter Boscheri,A second-order cell-centered Lagrangian ADER-MOOD finite volume scheme on multidimensional unstructured meshes for hydrodynamics.,2018,358,J. Comput. Physics,,db/journals/jcphy/jcphy358.html#BoscheriDLM18,https://doi.org/10.1016/j.jcp.2017.12.040 +Pedro S. Peixoto,Accuracy analysis of mimetic finite volume operators on geodesic grids and a consistent alternative.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#Peixoto16,https://doi.org/10.1016/j.jcp.2015.12.058 +Kenneth Duru,A perfectly matched layer for the time-dependent wave equation in heterogeneous and layered media.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#Duru14,https://doi.org/10.1016/j.jcp.2013.10.022 +Alain Lerat,A high-order time formulation of the RBC schemes for unsteady compressible Euler equations.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#Lerat15,https://doi.org/10.1016/j.jcp.2015.09.045 +Christophe Demazière,Development of a point-kinetic verification scheme for nuclear reactor applications.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#DemaziereDJ17,https://doi.org/10.1016/j.jcp.2017.03.020 +Christos Kavouklis,Parallel adaptation of general three-dimensional hybrid meshes.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#KavouklisK10,https://doi.org/10.1016/j.jcp.2010.01.011 +Björn Engquist,Fast sweeping methods for hyperbolic systems of conservation laws at steady state.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#EngquistFT13,https://doi.org/10.1016/j.jcp.2013.08.036 +Henrik Juul Spietz,A regularization method for solving the Poisson equation for mixed unbounded-periodic domains.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#SpietzHW18,https://doi.org/10.1016/j.jcp.2017.12.018 +R. K. Crockett,A Cartesian grid embedded boundary method for solving the Poisson and heat equations with discontinuous coefficients in three dimensions.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#CrockettCG11,https://doi.org/10.1016/j.jcp.2010.12.017 +Isaías Alonso-Mallo,Simulation of coherent structures in nonlinear Schrödinger-type equations.,2010,229,J. Comput. Physics,21,db/journals/jcphy/jcphy229.html#Alonso-MalloDR10,https://doi.org/10.1016/j.jcp.2010.07.018 +Alireza Yazdani,Flow in complex domains simulated by Dissipative Particle Dynamics driven by geometry-specific body-forces.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#YazdaniDCK16,https://doi.org/10.1016/j.jcp.2015.11.001 +Rihuan Ke,A fast direct method for block triangular Toeplitz-like with tri-diagonal block systems from time-fractional partial differential equations.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#KeNS15,https://doi.org/10.1016/j.jcp.2015.09.042 +Li Chen,Coupled numerical approach combining finite volume and lattice Boltzmann methods for multi-scale multi-physicochemical processes.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#ChenHKT13,https://doi.org/10.1016/j.jcp.2013.07.034 +Maziar Raissi,Machine learning of linear differential equations using Gaussian processes.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#RaissiPK17a,https://doi.org/10.1016/j.jcp.2017.07.050 +Moran Wang,Modeling electrokinetic flows in microchannels using coupled lattice Boltzmann methods.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#WangK10,https://doi.org/10.1016/j.jcp.2009.10.006 +Philip W. Livermore,Spectral radial basis functions for full sphere computations.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#LivermoreJW07,https://doi.org/10.1016/j.jcp.2007.08.026 +Songze Chen,Cartesian grid method for gas kinetic scheme on irregular geometries.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#ChenXL16,https://doi.org/10.1016/j.jcp.2016.09.018 +Andrew J. Christlieb,High order parametrized maximum-principle-preserving and positivity-preserving WENO schemes on unstructured meshes.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#ChristliebLTX15,https://doi.org/10.1016/j.jcp.2014.10.029 +W. N. Edeling,Simplex-stochastic collocation method with improved scalability.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#EdelingDC16,https://doi.org/10.1016/j.jcp.2015.12.034 +A. Durán,Time behaviour of the error when simulating finite-band periodic waves. The case of the KdV equation.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#Duran08,https://doi.org/10.1016/j.jcp.2007.10.016 +Elisabetta Carlini,A semi-Lagrangian scheme for the curve shortening flow in codimension-2.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#CarliniFF07,https://doi.org/10.1016/j.jcp.2007.01.028 +Sanghyun Lee,Enriched Galerkin methods for two-phase flow in porous media with capillary pressure.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#LeeW18,https://doi.org/10.1016/j.jcp.2018.03.031 +G. Carré,A cell-centered Lagrangian hydrodynamics scheme on general unstructured meshes in arbitrary dimension.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#CarrePDL09,https://doi.org/10.1016/j.jcp.2009.04.015 +Klas Jareteg,A numerical framework for bubble transport in a subcooled fluid flow.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#JaretegSVD17,https://doi.org/10.1016/j.jcp.2017.05.033 +Francis Filbet,A rescaling velocity method for dissipative kinetic equations. Applications to granular media.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#FilbetR13,https://doi.org/10.1016/j.jcp.2013.04.023 +Brendan Kochunas,Fourier analysis of iteration schemes for k-eigenvalue transport problems with flux-dependent cross sections.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#KochunasFL17,https://doi.org/10.1016/j.jcp.2017.05.028 +Jungsoo Suh,Compressible large eddy simulations of wall-bounded turbulent flows using a semi-implicit numerical scheme for low Mach number aeroacoustics.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#SuhFMP06,https://doi.org/10.1016/j.jcp.2005.10.036 +Ngoc Cuong Nguyen,An implicit high-order hybridizable discontinuous Galerkin method for the incompressible Navier-Stokes equations.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#NguyenPC11,https://doi.org/10.1016/j.jcp.2010.10.032 +Donald W. Schwendeman,The Riemann problem and a high-resolution Godunov method for a model of compressible two-phase flow.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#SchwendemanWK06,https://doi.org/10.1016/j.jcp.2005.07.012 +S. Kaessmair,Comparative computational analysis of the Cahn-Hilliard equation with emphasis on C1-continuous methods.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#KaessmairS16,https://doi.org/10.1016/j.jcp.2016.07.005 +Bobby Philip,Dynamic implicit 3D adaptive mesh refinement for non-equilibrium radiation diffusion.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#PhilipWBBP14,https://doi.org/10.1016/j.jcp.2013.12.058 +Michael Dumbser,Arbitrary high order non-oscillatory finite volume schemes on unstructured meshes for linear hyperbolic systems.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#DumbserK07,https://doi.org/10.1016/j.jcp.2006.06.043 +Gregor Gassner,Explicit one-step time discretizations for discontinuous Galerkin and finite volume schemes based on local predictors.,2011,230,J. Comput. Physics,11,db/journals/jcphy/jcphy230.html#GassnerDHM11,https://doi.org/10.1016/j.jcp.2010.10.024 +Matthew R. Mata,A numerical scheme for particle-laden thin film flow in two dimensions.,2011,230,J. Comput. Physics,16,db/journals/jcphy/jcphy230.html#MataB11,https://doi.org/10.1016/j.jcp.2011.04.029 +Hailiang Liu,A level set approach for dilute non-collisional fluid-particle flows.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#LiuWF11,https://doi.org/10.1016/j.jcp.2010.08.030 +Taras I. Lakoba,A mode elimination technique to improve convergence of iteration methods for finding solitary waves.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#LakobaY07a,https://doi.org/10.1016/j.jcp.2007.06.010 +Xiankun Xu,Distance descending ordering method: An O(n) algorithm for inverting the mass matrix in simulation of macromolecules with long branches.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#XuL17,https://doi.org/10.1016/j.jcp.2017.08.006 +Herwig A. Grogger,Finite difference approximations of first derivatives for two-dimensional grid singularities.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#Grogger06,https://doi.org/10.1016/j.jcp.2006.01.017 +Xavier Antoine,Absorbing boundary conditions for relativistic quantum mechanics equations.,2014,277,J. Comput. Physics,,db/journals/jcphy/jcphy277.html#AntoineLSFB14,https://doi.org/10.1016/j.jcp.2014.07.037 +Martin Reitzle,A volume-of-fluid method for three-dimensional hexagonal solidification processes.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#ReitzleKGW17,https://doi.org/10.1016/j.jcp.2017.03.001 +John W. Barrett 0001,On the parametric finite element approximation of evolving hypersurfaces in R3.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#BarrettGN08,https://doi.org/10.1016/j.jcp.2007.11.023 +Radu Cimpeanu,A parameter-free perfectly matched layer formulation for the finite-element-based solution of the Helmholtz equation.,2015,296,J. Comput. Physics,,db/journals/jcphy/jcphy296.html#CimpeanuMH15,https://doi.org/10.1016/j.jcp.2015.05.006 +Po-Wen Hsieh,"Erratum to ""A bubble-stabilized least-squares finite element method for steady MHD duct flow problems at high Hartmann numbers"" [J. Comput. Physics 228 (2009) 8301-8320].",2011,230,J. Comput. Physics,2,db/journals/jcphy/jcphy230.html#HsiehY11,https://doi.org/10.1016/j.jcp.2010.10.003 +D. Fuster,An energy preserving formulation for the simulation of multiphase turbulent flows.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#Fuster13,https://doi.org/10.1016/j.jcp.2012.10.029 +Lucas C. Wilcox,A high-order discontinuous Galerkin method for wave propagation through coupled elastic-acoustic media.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#WilcoxSBG10,https://doi.org/10.1016/j.jcp.2010.09.008 +Nikolai Schmitt,A DGTD method for the numerical modeling of the interaction of light with nanometer scale metallic structures taking into account non-local dispersion effects.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#SchmittSLMV16,https://doi.org/10.1016/j.jcp.2016.04.020 +Hui Xu 0005,Optimal low-dispersion low-dissipation LBM schemes for computational aeroacoustics.,2011,230,J. Comput. Physics,13,db/journals/jcphy/jcphy230.html#XuS11,https://doi.org/10.1016/j.jcp.2011.03.040 +Stefania Bellavia,Globalization strategies for Newton-Krylov methods for stabilized FEM discretization of Navier-Stokes equations.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#BellaviaB07,https://doi.org/10.1016/j.jcp.2007.07.021 +Babak S. Hosseini,Isogeometric Analysis of the Navier-Stokes-Cahn-Hilliard equations with application to incompressible two-phase flows.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#HosseiniTMP17,https://doi.org/10.1016/j.jcp.2017.07.029 +Gordon L. Olson,Second-order time evolution of PN equations for radiation transport.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#Olson09,https://doi.org/10.1016/j.jcp.2009.01.012 +Youssef M. Marzouk,Dimensionality reduction and polynomial chaos acceleration of Bayesian inference in inverse problems.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#MarzoukN09,https://doi.org/10.1016/j.jcp.2008.11.024 +Umair bin Waheed,Efficient traveltime solutions of the acoustic TI eikonal equation.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#WaheedAW15,https://doi.org/10.1016/j.jcp.2014.11.006 +Alireza Mazaheri,Improved second-order hyperbolic residual-distribution scheme and its extension to third-order on arbitrary triangular grids.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#MazaheriN15,https://doi.org/10.1016/j.jcp.2015.07.054 +Francesco Mainardi,On complete monotonicity of the Prabhakar function and non-Debye relaxation in dielectrics.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#MainardiG15,https://doi.org/10.1016/j.jcp.2014.08.006 +Jung Il Choi,An immersed boundary method for complex incompressible flows.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#ChoiOER07,https://doi.org/10.1016/j.jcp.2006.10.032 +Mathew A. Cleveland,An extension of implicit Monte Carlo diffusion: Multigroup and the difference formulation.,2010,229,J. Comput. Physics,16,db/journals/jcphy/jcphy229.html#ClevelandGP10,https://doi.org/10.1016/j.jcp.2010.04.004 +S. Dong,Wall-bounded multiphase flows of N immiscible incompressible fluids: Consistency and contact-angle boundary condition.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#Dong17,https://doi.org/10.1016/j.jcp.2017.02.048 +Giovanni Russo 0001,The Gaussian wave packet transform: Efficient computation of the semi-classical limit of the Schrödinger equation. Part 2. Multidimensional case.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#RussoS14,https://doi.org/10.1016/j.jcp.2013.09.023 +C. Peco,An adaptive meshfree method for phase-field models of biomembranes. Part II: A Lagrangian approach for membranes in viscous fluids.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#PecoRA13,https://doi.org/10.1016/j.jcp.2013.04.038 +François Fraysse,The estimation of truncation error by and#964*-estimation revisited.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#FraysseVV12,https://doi.org/10.1016/j.jcp.2011.09.031 +Kenji Miki,Systematic validation of non-equilibrium thermochemical models using Bayesian inference.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#MikiPP15,https://doi.org/10.1016/j.jcp.2015.05.011 +Shu C. Chen,Numerical electromagnetic frequency domain analysis with discrete exterior calculus.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#ChenC17,https://doi.org/10.1016/j.jcp.2017.08.068 +Yannick Gorsse,A simple second order cartesian scheme for compressible Euler flows.,2012,231,J. Comput. Physics,23,db/journals/jcphy/jcphy231.html#GorsseITW12,https://doi.org/10.1016/j.jcp.2012.07.014 +Haibin Chang,History matching of facies distribution with the EnKF and level set parameterization.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#ChangZL10,https://doi.org/10.1016/j.jcp.2010.07.005 +Jinjie Liu,Transformation optics based local mesh refinement for solving Maxwell's equations.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#LiuBM14,https://doi.org/10.1016/j.jcp.2013.10.048 +U. Ziegler,A semi-discrete central scheme for magnetohydrodynamics on orthogonal-curvilinear grids.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#Ziegler11,https://doi.org/10.1016/j.jcp.2010.10.022 +Colin J. Cotter,A finite element exterior calculus framework for the rotating shallow-water equations.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#CotterT14,https://doi.org/10.1016/j.jcp.2013.10.008 +Fabio Nobile,Inexact accurate partitioned algorithms for fluid-structure interaction problems with finite elasticity in haemodynamics.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#NobilePV14,https://doi.org/10.1016/j.jcp.2014.05.020 +Rosa Donat,Well-Balanced Adaptive Mesh Refinement for shallow water flows.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#DonatMMM14,https://doi.org/10.1016/j.jcp.2013.09.032 +Parthib R. Rao,Numerical stability of explicit off-lattice Boltzmann schemes: A comparative study.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#RaoS15,https://doi.org/10.1016/j.jcp.2015.01.017 +Philip T. Barton,Exact and approximate solutions of Riemann problems in non-linear elasticity.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#BartonDRT09,https://doi.org/10.1016/j.jcp.2009.06.014 +Cristian Constantin Lalescu,Implementation of high order spline interpolations for tracking test particles in discretized fields.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#LalescuTC10,https://doi.org/10.1016/j.jcp.2009.10.046 +Cesar A. Acosta Minoli,Boundary states at reflective moving boundaries.,2012,231,J. Comput. Physics,11,db/journals/jcphy/jcphy231.html#MinoliK12,https://doi.org/10.1016/j.jcp.2012.02.012 +C. P. Rupert,An analysis of polynomial chaos approximations for modeling single-fluid-phase flow in porous medium systems.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#RupertM07,https://doi.org/10.1016/j.jcp.2007.07.001 +Takayasu Matsuo,An energy-conserving Galerkin scheme for a class of nonlinear dispersive equations.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#MatsuoY09,https://doi.org/10.1016/j.jcp.2009.03.003 +Gang Bao,Numerical solution of an inverse medium scattering problem for Maxwell's Equations at fixed frequency.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#BaoL09,https://doi.org/10.1016/j.jcp.2009.03.031 +James A. Rossmanith,A wave propagation method for hyperbolic systems on the sphere.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#Rossmanith06,https://doi.org/10.1016/j.jcp.2005.08.027 +Orlando Ayala,A hybrid approach for simulating turbulent collisions of hydrodynamically-interacting particles.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#AyalaGW07,https://doi.org/10.1016/j.jcp.2006.11.016 +Bülent Karasözen,Natural convection in porous annular domains: Mimetic scheme and family of steady states.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#KarasozenTT12,https://doi.org/10.1016/j.jcp.2012.01.004 +Sven Groß,An extended pressure finite element space for two-phase incompressible flows with surface tension.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#GrossR07,https://doi.org/10.1016/j.jcp.2006.12.021 +Thomas Y. Hou,A heterogeneous stochastic FEM framework for elliptic PDEs.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#HouL15,https://doi.org/10.1016/j.jcp.2014.10.020 +A. Susanto,High-order central ENO finite-volume scheme for ideal MHD.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#SusantoISG13,https://doi.org/10.1016/j.jcp.2013.04.040 +David Rochette,Two-dimensional computation of gas flow in a porous bed characterized by a porosity jump.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#RochetteC06,https://doi.org/10.1016/j.jcp.2006.03.013 +Luca Scarbolo,Unified framework for a side-by-side comparison of different multicomponent algorithms: Lattice Boltzmann vs. phase field model.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#ScarboloMPSST13,https://doi.org/10.1016/j.jcp.2012.09.029 +Yukihito Suzuki,Bracket formulations and energy- and helicity-preserving numerical methods for incompressible two-phase flows.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#Suzuki18,https://doi.org/10.1016/j.jcp.2017.11.034 +Mani Mehra,An adaptive wavelet collocation method for the solution of partial differential equations on the sphere.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#MehraK08,https://doi.org/10.1016/j.jcp.2008.02.004 +C. H. Chang,A compatible Lagrangian hydrodynamic scheme for multicomponent flows with mixing.,2012,231,J. Comput. Physics,11,db/journals/jcphy/jcphy231.html#ChangS12,https://doi.org/10.1016/j.jcp.2012.02.005 +Ryo Onishi,An efficient parallel simulation of interacting inertial particles in homogeneous isotropic turbulence.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#OnishiTV13,https://doi.org/10.1016/j.jcp.2013.02.027 +J. Thomas Beale,Partially implicit motion of a sharp interface in Navier-Stokes flow.,2012,231,J. Comput. Physics,18,db/journals/jcphy/jcphy231.html#Beale12,https://doi.org/10.1016/j.jcp.2012.05.018 +Nick A. Gentile,Including the effects of temperature-dependent opacities in the implicit Monte Carlo algorithm.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#Gentile11,https://doi.org/10.1016/j.jcp.2011.03.029 +Veselin Dobrev,Sequential limiting in continuous and discontinuous Galerkin methods for the Euler equations.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#DobrevKKRT18,https://doi.org/10.1016/j.jcp.2017.12.012 +Kunal Puri,A comparison of SPH schemes for the compressible Euler equations.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#PuriR14,https://doi.org/10.1016/j.jcp.2013.08.060 +Eric T. Chung,A ray-based IPDG method for high-frequency time-domain acoustic wave propagation in inhomogeneous media.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#ChungLQ17,https://doi.org/10.1016/j.jcp.2017.07.048 +Suchuan Dong,Physical formulation and numerical algorithm for simulating N immiscible incompressible fluids involving general order parameters.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#Dong15,https://doi.org/10.1016/j.jcp.2014.11.039 +Rémi Abgrall,An immersed boundary method using unstructured anisotropic mesh adaptation combined with level-sets and penalization techniques.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#AbgrallBD14,https://doi.org/10.1016/j.jcp.2013.08.052 +Tomas Halleröd,Electric and magnetic losses modeled by a stable hybrid with explicit-implicit time-stepping for Maxwell's equations.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#HallerodR08,https://doi.org/10.1016/j.jcp.2008.01.007 +Alexander I. Kozynchenko,On improving the algorithm efficiency in the particle-particle force calculations.,2016,320,J. Comput. Physics,,db/journals/jcphy/jcphy320.html#KozynchenkoK16,https://doi.org/10.1016/j.jcp.2016.05.029 +Long Chen 0002,A PDE approach to fractional diffusion: A posteriori error analysis.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#ChenNOS15,https://doi.org/10.1016/j.jcp.2015.01.001 +Joanna Szmelter,An unstructured-mesh atmospheric model for nonhydrostatic dynamics: Towards optimal mesh resolution.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#SzmelterZS15,https://doi.org/10.1016/j.jcp.2015.03.054 +V. Vikas,Radiation transport modeling using extended quadrature method of moments.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#VikasHWF13,https://doi.org/10.1016/j.jcp.2013.03.028 +Jian-Guo Liu,An accurate front capturing scheme for tumor growth models with a free boundary limit.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#LiuTWZ18,https://doi.org/10.1016/j.jcp.2018.03.013 +Lilit Axner,Performance evaluation of a parallel sparse lattice Boltzmann solver.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#AxnerBZLLH08,https://doi.org/10.1016/j.jcp.2008.01.013 +Shreyas Bidadi,"Corrigendum to ""On the stability and diffusive characteristics of Roe-MUSCL and Runge-Kutta schemes for inviscid Taylor-Green vortex"" [Journal of Computational Physics 299 (2015) 339-351].",2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#BidadiR16,https://doi.org/10.1016/j.jcp.2015.09.035 +Sebastian Nørgaard,Topology optimization of unsteady flow problems using the lattice Boltzmann method.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#NorgaardSL16,https://doi.org/10.1016/j.jcp.2015.12.023 +Stéphanie Chaillat,A new Fast Multipole formulation for the elastodynamic half-space Green's tensor.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#ChaillatB14,https://doi.org/10.1016/j.jcp.2013.11.010 +Marx Chhay,Comparison of some Lie-symmetry-based integrators.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#ChhayHHS11,https://doi.org/10.1016/j.jcp.2010.12.015 +Vishwas Rao,A time-parallel approach to strong-constraint four-dimensional variational data assimilation.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#RaoS16,https://doi.org/10.1016/j.jcp.2016.02.040 +Mohammad Poursina,An improved fast multipole method for electrostatic potential calculations in a class of coarse-grained molecular simulations.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#PoursinaA14,https://doi.org/10.1016/j.jcp.2014.04.025 +Nicolas Crouseilles,Uniformly accurate Particle-in-Cell method for the long time solution of the two-dimensional Vlasov-Poisson equation with uniform strong magnetic field.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#CrouseillesLMZ17,https://doi.org/10.1016/j.jcp.2017.06.011 +Eduardo Corona,An integral equation formulation for rigid bodies in Stokes flow in three dimensions.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#CoronaGRV17,https://doi.org/10.1016/j.jcp.2016.12.018 +Jian Zhao,Runge-Kutta discontinuous Galerkin methods with WENO limiter for the special relativistic hydrodynamics.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#ZhaoT13,https://doi.org/10.1016/j.jcp.2013.02.018 +Annabelle Collin,A Luenberger observer for reaction-diffusion models with front position data.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#CollinCM15,https://doi.org/10.1016/j.jcp.2015.07.044 +Fabrice Deluzet,Numerical study of the plasma tearing instability on the resistive time scale.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#DeluzetNOP15,https://doi.org/10.1016/j.jcp.2014.10.003 +Lie-Quan Lee,On using moving windows in finite element time domain simulation for long accelerator structures.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#LeeCNK10,https://doi.org/10.1016/j.jcp.2010.08.037 +Andreas Ehrl,A computational approach for the simulation of natural convection in electrochemical cells.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#EhrlBGW13,https://doi.org/10.1016/j.jcp.2012.08.043 +G. I. Jennings,Water wave propagation in unbounded domains. Part I: Nonreflecting boundaries.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#JenningsKR14,https://doi.org/10.1016/j.jcp.2014.02.032 +Daniel R. Lester,The frictional pebble game: An algorithm for rigidity percolation in saturated frictional assemblies.,2018,369,J. Comput. Physics,,db/journals/jcphy/jcphy369.html#LesterL18,https://doi.org/10.1016/j.jcp.2018.05.016 +B. Kraczek,Adaptive spacetime method using Riemann jump conditions for coupled atomistic-continuum dynamics.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#KraczekMHJ10,https://doi.org/10.1016/j.jcp.2009.11.023 +Weihua Geng,A treecode-accelerated boundary integral Poisson-Boltzmann solver for electrostatics of solvated biomolecules.,2013,247,J. Comput. Physics,,db/journals/jcphy/jcphy247.html#GengK13,https://doi.org/10.1016/j.jcp.2013.03.056 +Wilhelm Heinrichs,A direct solver for the least-squares spectral collocation system on rectangular elements for the incompressible Navier-Stokes equations.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#HeinrichsK08,https://doi.org/10.1016/j.jcp.2008.01.025 +Xin Wen,High order numerical methods to two dimensional delta function integrals in level set methods.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#Wen09,https://doi.org/10.1016/j.jcp.2009.03.004 +Yunkai Zhou,Chebyshev-filtered subspace iteration method free of sparse diagonalization for solving the Kohn-Sham equation.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#ZhouCS14,https://doi.org/10.1016/j.jcp.2014.06.056 +Christoph Schmitt 0001,Reactive linearized equations of perturbed compressible variables for low-Mach number variable-density flows.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#SchmittP15,https://doi.org/10.1016/j.jcp.2014.10.007 +Andrew J. Christlieb,High order operator splitting methods based on an integral deferred correction framework.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#ChristliebLX15,https://doi.org/10.1016/j.jcp.2015.03.032 +Yiqing Shen,Large eddy simulation using a new set of sixth order schemes for compressible viscous terms.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#ShenZ10,https://doi.org/10.1016/j.jcp.2010.07.017 +S. J. Lind,High-order Eulerian incompressible smoothed particle hydrodynamics with transition to Lagrangian free-surface motion.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#LindS16,https://doi.org/10.1016/j.jcp.2016.08.047 +Yulong Xing,Exactly well-balanced discontinuous Galerkin methods for the shallow water equations with moving water equilibrium.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#Xing14,https://doi.org/10.1016/j.jcp.2013.10.010 +Suchuan Dong,An efficient algorithm for incompressible N-phase flows.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#Dong14a,https://doi.org/10.1016/j.jcp.2014.08.002 +Patrick D. O'Connor,Accurate rate expressions for simulations of gas-phase chemical reactions.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#OConnorLA08,https://doi.org/10.1016/j.jcp.2008.04.023 +Pablo Fernández 0002,Lyapunov spectrum of the separated flow around the NACA 0012 airfoil and its dependence on numerical discretization.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#FernandezW17,https://doi.org/10.1016/j.jcp.2017.08.056 +Vijaya R. Ambati,Space-time discontinuous Galerkin discretization of rotating shallow water equations.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#AmbatiB07,https://doi.org/10.1016/j.jcp.2007.01.036 +M. Hossein Gorji,Variance reduction for Fokker-Planck based particle Monte Carlo schemes.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#GorjiAJ15,https://doi.org/10.1016/j.jcp.2015.04.008 +Raunak Borker,A high-order discontinuous Galerkin method for unsteady advection-diffusion problems.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#BorkerFT17,https://doi.org/10.1016/j.jcp.2016.12.021 +Valerio Caleffi,Well balancing of the SWE schemes for moving-water steady flows.,2017,342,J. Comput. Physics,,db/journals/jcphy/jcphy342.html#CaleffiV17,https://doi.org/10.1016/j.jcp.2017.04.031 +Lilia Krivodonova,Limiters for high-order discontinuous Galerkin methods.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#Krivodonova07,https://doi.org/10.1016/j.jcp.2007.05.011 +L. M. Yang,Numerical simulation of flows from free molecular regime to continuum regime by a DVM with streaming and collision processes.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#YangSWW16,https://doi.org/10.1016/j.jcp.2015.11.043 +Gabriel D. Weymouth,Boundary data immersion method for Cartesian-grid simulations of fluid-body interaction problems.,2011,230,J. Comput. Physics,16,db/journals/jcphy/jcphy230.html#WeymouthY11,https://doi.org/10.1016/j.jcp.2011.04.022 +Sruti Chigullapalli,Entropy considerations in numerical simulations of non-equilibrium rarefied flows.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#ChigullapalliVIA10,https://doi.org/10.1016/j.jcp.2009.11.027 +Nicolas Schneider,A spectral anelastic Navier-Stokes solver for a stratified two-miscible-layer system in infinite horizontal channel.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#SchneiderHLG15,https://doi.org/10.1016/j.jcp.2015.06.043 +Peter E. J. Vos,From h to p efficiently: Implementing finite and spectral/hp element methods to achieve optimal performance for low- and high-order discretisations.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#VosSK10,https://doi.org/10.1016/j.jcp.2010.03.031 +Fei Liao,Extending geometric conservation law to cell-centered finite difference methods on moving and deforming grids.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#LiaoY15,https://doi.org/10.1016/j.jcp.2015.09.032 +Won-Kwang Park,Performance analysis of multi-frequency topological derivative for reconstructing perfectly conducting cracks.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#Park17,https://doi.org/10.1016/j.jcp.2017.02.007 +Jingfang Huang,Arbitrary order Krylov deferred correction methods for differential algebraic equations.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#HuangJM07,https://doi.org/10.1016/j.jcp.2006.06.040 +Abouzar Kaboudian,The ghost solid methods for the elastic-plastic solid-solid interface and the and#977*-criterion.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#KaboudianTK15,https://doi.org/10.1016/j.jcp.2015.09.023 +Kunihiko Taira,The immersed boundary method: A projection approach.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#TairaC07,https://doi.org/10.1016/j.jcp.2007.03.005 +Che Wang,A fast collocation method for a variable-coefficient nonlocal diffusion model.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#WangW17,https://doi.org/10.1016/j.jcp.2016.11.003 +Qian Wang,Compact high order finite volume method on unstructured grids II: Extension to two-dimensional Euler equations.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#WangRL16a,https://doi.org/10.1016/j.jcp.2016.03.048 +Yuxian Zhang,A corner-free truncation strategy for FDTD method in target scattering.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#ZhangFZL15,https://doi.org/10.1016/j.jcp.2015.08.050 +Stéphane Clain,A multislope MUSCL method on unstructured meshes applied to compressible Euler equations for axisymmetric swirling flows.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#ClainRT10,https://doi.org/10.1016/j.jcp.2010.03.004 +Dale R. Welch,Adaptive particle management in a particle-in-cell code.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#WelchGCR07,https://doi.org/10.1016/j.jcp.2007.07.015 +Ryosuke Yano,Fast and accurate calculation of dilute quantum gas using Uehling-Uhlenbeck model equation.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#Yano17,https://doi.org/10.1016/j.jcp.2016.10.071 +Bin Xie,A hybrid pressure-density-based Mach uniform algorithm for 2D Euler equations on unstructured grids by using multi-moment finite volume method.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#XieDSX17,https://doi.org/10.1016/j.jcp.2017.01.043 +Lionel Gélébart,Filtering material properties to improve FFT-based methods for numerical homogenization.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#GelebartO15,https://doi.org/10.1016/j.jcp.2015.03.048 +Oishik Sen,Evaluation of convergence behavior of metamodeling techniques for bridging scales in multi-scale multimaterial simulation.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#SenDJU15,https://doi.org/10.1016/j.jcp.2015.03.043 +Alexander V. Rodionov,Artificial viscosity to cure the carbuncle phenomenon: The three-dimensional case.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#Rodionov18,https://doi.org/10.1016/j.jcp.2018.02.001 +Craig Michoski,Discontinuous Galerkin methods for plasma physics in the scrape-off layer of tokamaks.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#MichoskiMIW14,https://doi.org/10.1016/j.jcp.2014.06.058 +David Salac,A level set projection model of lipid vesicles in general flows.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#SalacM11,https://doi.org/10.1016/j.jcp.2011.07.019 +Haoming Wang,Lattice Boltzmann method for simulations of gas-particle flows over a backward-facing step.,2013,239,J. Comput. Physics,,db/journals/jcphy/jcphy239.html#WangZGHZ13,https://doi.org/10.1016/j.jcp.2012.12.032 +Jeroen A. S. Witteveen,Second order front tracking for the Euler equations.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#Witteveen10,https://doi.org/10.1016/j.jcp.2009.12.019 +Hengbin An,On choosing a nonlinear initial iterate for solving the 2-D 3-T heat conduction equations.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#AnMXL09,https://doi.org/10.1016/j.jcp.2009.01.024 +Igor V. Sokolov,A TVD principle and conservative TVD schemes for adaptive Cartesian grids.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#SokolovPGR06,https://doi.org/10.1016/j.jcp.2006.07.021 +Olav Møyner,A multiscale restriction-smoothed basis method for high contrast porous media represented on unstructured grids.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#MoynerL16,https://doi.org/10.1016/j.jcp.2015.10.010 +H. C. Yee,Spurious behavior of shock-capturing methods by the fractional step approach: Problems containing stiff source terms and discontinuities.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#YeeK0S13,https://doi.org/10.1016/j.jcp.2013.01.028 +Nicole Cusimano,A space-fractional Monodomain model for cardiac electrophysiology combining anisotropy and heterogeneity on realistic geometries.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#CusimanoG18,https://doi.org/10.1016/j.jcp.2018.02.034 +Francesco Miniati,Glimm-Godunov's method for cosmic-ray-hydrodynamics.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#Miniati07,https://doi.org/10.1016/j.jcp.2007.08.013 +Kai Huang,Efficient numerical simulation for long range wave propagation.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#HuangPSTZ06,https://doi.org/10.1016/j.jcp.2005.11.003 +Karthik Mani,Error estimation and adaptation for functional outputs in time-dependent flow problems.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#ManiM10,https://doi.org/10.1016/j.jcp.2009.09.034 +Huo-Yuan Duan,Computation of Maxwell singular solution by nodal-continuous elements.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#DuanTYY14,https://doi.org/10.1016/j.jcp.2014.02.044 +Shaohua Wu,A moment projection method for population balance dynamics with a shrinkage term.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#WuYAMXYK17,https://doi.org/10.1016/j.jcp.2016.10.030 +Samira Nikkar,Fully discrete energy stable high order finite difference methods for hyperbolic problems in deforming domains.,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#NikkarN15,https://doi.org/10.1016/j.jcp.2015.02.027 +Hyoseon Yang,A short note on the error estimates of Yuan-Shu discontinuous Galerkin method based on non-polynomial approximation spaces.,2016,320,J. Comput. Physics,,db/journals/jcphy/jcphy320.html#YangY16,https://doi.org/10.1016/j.jcp.2016.05.032 +Piotr K. Smolarkiewicz,An unstructured-mesh atmospheric model for nonhydrostatic dynamics.,2013,254,J. Comput. Physics,,db/journals/jcphy/jcphy254.html#SmolarkiewiczSW13,https://doi.org/10.1016/j.jcp.2013.07.027 +Héctor D. Ceniceros,Coupled flow-polymer dynamics via statistical field theory: Modeling and computation.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#CenicerosFM09,https://doi.org/10.1016/j.jcp.2008.11.009 +Larisa Gitelman,Modeling and simulation of Li-ion conduction in poly(ethylene oxide).,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#GitelmanIANSG07,https://doi.org/10.1016/j.jcp.2007.08.033 +Dmitri Kuzmin,Failsafe flux limiting and constrained data projections for equations of gas dynamics.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#KuzminMSS10,https://doi.org/10.1016/j.jcp.2010.08.009 +Gulshan B. Sharma,Adaptive scapula bone remodeling computational simulation: Relevance to regenerative medicine.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#SharmaR13,https://doi.org/10.1016/j.jcp.2012.09.028 +Matteo Parsani,Entropy stable discontinuous interfaces coupling for the three-dimensional compressible Navier-Stokes equations.,2015,290,J. Comput. Physics,,db/journals/jcphy/jcphy290.html#ParsaniCN15,https://doi.org/10.1016/j.jcp.2015.02.042 +Shaoping Quan,A moving mesh interface tracking method for 3D incompressible two-phase flows.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#QuanS07,https://doi.org/10.1016/j.jcp.2006.06.044 +J. S. Cagnone,A stable interface element scheme for the p-adaptive lifting collocation penalty formulation.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#CagnoneN12,https://doi.org/10.1016/j.jcp.2011.10.018 +Jesse R. Woodroffe,Hybrid simulation of whistler excitation by electron beams in two-dimensional non-periodic domains.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#WoodroffeS14,https://doi.org/10.1016/j.jcp.2014.06.055 +Stefan A. Sauter,Convolution quadrature for the wave equation with impedance boundary conditions.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#SauterS17,https://doi.org/10.1016/j.jcp.2017.01.013 +Alexandre Noll Marques,A Correction Function Method for Poisson problems with interface jump conditions.,2011,230,J. Comput. Physics,20,db/journals/jcphy/jcphy230.html#MarquesNR11,https://doi.org/10.1016/j.jcp.2011.06.014 +Bernard Parent,Electron and ion transport equations in computational weakly-ionized plasmadynamics.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#ParentMS14,https://doi.org/10.1016/j.jcp.2013.11.029 +Jirí Mikyska,Implementation of higher-order methods for robust and efficient compositional simulation.,2010,229,J. Comput. Physics,8,db/journals/jcphy/jcphy229.html#MikyskaF10,https://doi.org/10.1016/j.jcp.2009.12.022 +R. Elliot English,An adaptive discretization of incompressible flow using a multitude of moving Cartesian grids.,2013,254,J. Comput. Physics,,db/journals/jcphy/jcphy254.html#EnglishQYF13,https://doi.org/10.1016/j.jcp.2013.07.032 +Mihai Alexe,Space-time adaptive solution of inverse problems with the discrete adjoint method.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#AlexeS14,https://doi.org/10.1016/j.jcp.2014.03.042 +Michal Branicki,Dynamic Stochastic Superresolution of sparsely observed turbulent systems.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#BranickiM13,https://doi.org/10.1016/j.jcp.2012.11.037 +Nauman Raza,Energy minimization related to the nonlinear Schrödinger equation.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#RazaSSL09,https://doi.org/10.1016/j.jcp.2008.12.016 +Hongwei Zheng,A lattice Boltzmann model for multiphase flows with large density ratio.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#Zheng0C06,https://doi.org/10.1016/j.jcp.2006.02.015 +Fioralba Cakoni,Direct imaging of small scatterers using reduced time dependent data.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#CakoniR17,https://doi.org/10.1016/j.jcp.2017.02.061 +Jean-Baptiste Apoung Kamga,Numerical zoom for multiscale problems with an application to nuclear waste disposal.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#KamgaP07,https://doi.org/10.1016/j.jcp.2007.03.020 +V. Vikas,Realizable high-order finite-volume schemes for quadrature-based moment methods applied to diffusion population balance equations.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#VikasWF13,https://doi.org/10.1016/j.jcp.2013.05.002 +Andrea Bonito,Parametric FEM for geometric biomembranes.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#BonitoNP10,https://doi.org/10.1016/j.jcp.2009.12.036 +Samuel N. Stechmann,Multiscale eddy simulation for moist atmospheric convection: Preliminary investigation.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#Stechmann14,https://doi.org/10.1016/j.jcp.2014.02.009 +Yibing Chen,HFVS: An arbitrary high order approach based on flux vector splitting.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#ChenJL16,https://doi.org/10.1016/j.jcp.2016.07.004 +Christian Kühnlein,An unstructured-mesh finite-volume MPDATA for compressible atmospheric dynamics.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#KuhnleinS17,https://doi.org/10.1016/j.jcp.2016.12.054 +Shuangxi Zhang,"Comment on ""Symplectic integration of magnetic systems"" by Stephen D. Webb [J. Comput. Phys. 270(2014) 570-576].",2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#ZhangJS15,https://doi.org/10.1016/j.jcp.2014.10.062 +Jaewook Nam,Tracking birth of vortex in flows.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#NamSC09,https://doi.org/10.1016/j.jcp.2009.03.017 +Anthony Nouy,Generalized spectral decomposition for stochastic nonlinear problems.,2009,228,J. Comput. Physics,1,db/journals/jcphy/jcphy228.html#NouyM09,https://doi.org/10.1016/j.jcp.2008.09.010 +Stefan Schnabel,Advanced multicanonical Monte Carlo methods for efficient simulations of nucleation processes of polymers.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#SchnabelJB11,https://doi.org/10.1016/j.jcp.2011.02.018 +Yannis Kallinderis,A priori mesh quality estimation via direct relation between truncation error and mesh distortion.,2009,228,J. Comput. Physics,3,db/journals/jcphy/jcphy228.html#KallinderisK09,https://doi.org/10.1016/j.jcp.2008.10.023 +Jorge Eduardo Macías-Díaz,A structure-preserving method for a class of nonlinear dissipative wave equations with Riesz space-fractional derivatives.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#Macias-Diaz17,https://doi.org/10.1016/j.jcp.2017.09.028 +Zhenyu Zhang,A discrete velocity direction model for the Boltzmann equation and applications to micro gas flows.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#ZhangXQX08,https://doi.org/10.1016/j.jcp.2008.01.030 +Sorin Nedelcu,GPU implementations of the bond fluctuation model.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#NedelcuWLS12,https://doi.org/10.1016/j.jcp.2011.12.021 +Orestis Malaspinas,Wall model for large-eddy simulation based on the lattice Boltzmann method.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#MalaspinasS14,https://doi.org/10.1016/j.jcp.2014.06.020 +Xi Du,A third-order finite-volume residual-based scheme for the 2D Euler equations on unstructured grids.,2011,230,J. Comput. Physics,11,db/journals/jcphy/jcphy230.html#DuCL11,https://doi.org/10.1016/j.jcp.2011.01.032 +X. Sun,Acceleration of diffusive molecular dynamics simulations through mean field approximation and subcycling time integration.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#SunAOW17,https://doi.org/10.1016/j.jcp.2017.08.069 +Edgar Olbrant,A realizability-preserving discontinuous Galerkin method for the M1 model of radiative transfer.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#OlbrantHF12,https://doi.org/10.1016/j.jcp.2012.03.002 +Jonathan Carroll-Nellenback,Efficient parallelization for AMR MHD multiphysics calculations* implementation in AstroBEAR.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#Carroll-NellenbackSFD13,https://doi.org/10.1016/j.jcp.2012.10.004 +Luís Eça,A procedure for the estimation of the numerical uncertainty of CFD calculations based on grid refinement studies.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#EcaH14,https://doi.org/10.1016/j.jcp.2014.01.006 +Dongling Wang,Crank-Nicolson difference scheme for the coupled nonlinear Schrödinger equations with the Riesz space fractional derivative.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#WangXY13,https://doi.org/10.1016/j.jcp.2013.02.037 +Sarah D. Olson,Modeling the dynamics of an elastic rod with intrinsic curvature and twist using a regularized Stokes formulation.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#OlsonLC13,https://doi.org/10.1016/j.jcp.2012.12.026 +Ken Mattsson,"Corrigendum to ""Summation by parts operators for finite difference approximations of second derivatives"" [J. Comput. Phys. 199 (2004) 503-540].",2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#MattssonN17,https://doi.org/10.1016/j.jcp.2017.09.051 +Marc I. Gerritsma,Time-dependent generalized polynomial chaos.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#GerritsmaSVK10,https://doi.org/10.1016/j.jcp.2010.07.020 +S. Baars,Continuation of probability density functions using a generalized Lyapunov approach.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#BaarsVMKWD17,https://doi.org/10.1016/j.jcp.2017.02.021 +A. Idesman,Use of post-processing to increase the order of accuracy of the trapezoidal rule at time integration of linear elastodynamics problems.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#Idesman12,https://doi.org/10.1016/j.jcp.2011.12.036 +Guido Thömmes,A lattice Boltzmann method for immiscible multiphase flow simulations using the level set method.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#ThommesBJVKKSW09,https://doi.org/10.1016/j.jcp.2008.10.032 +Olivier Roussel,Coherent Vortex Simulation of weakly compressible turbulent mixing layers using adaptive multiresolution methods.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#RousselS10,https://doi.org/10.1016/j.jcp.2009.11.034 +Cong Huang,A new adaptively central-upwind sixth-order WENO scheme.,2018,357,J. Comput. Physics,,db/journals/jcphy/jcphy357.html#HuangC18a,https://doi.org/10.1016/j.jcp.2017.12.032 +Alastair J. Smith,A new iterative scheme for solving the discrete Smoluchowski equation.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#SmithWK18,https://doi.org/10.1016/j.jcp.2017.09.045 +Matteo Parsani,Entropy stable wall boundary conditions for the three-dimensional compressible Navier-Stokes equations.,2015,292,J. Comput. Physics,,db/journals/jcphy/jcphy292.html#ParsaniCN15a,https://doi.org/10.1016/j.jcp.2015.03.026 +David S. Abraham,A correction function method for the wave equation with interface jump conditions.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#AbrahamMN18,https://doi.org/10.1016/j.jcp.2017.10.015 +Mária Lukácová-Medvid'ová,Well-balanced finite volume evolution Galerkin methods for the shallow water equations.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#Lukacova-MedvidovaNK07,https://doi.org/10.1016/j.jcp.2006.06.015 +Claire Guerrier,Multiscale models and stochastic simulation methods for computing rare but key binding events in cell biology.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#GuerrierH17,https://doi.org/10.1016/j.jcp.2017.03.058 +Yajun Zhu,Implicit unified gas-kinetic scheme for steady state solutions in all flow regimes.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#ZhuZX16,https://doi.org/10.1016/j.jcp.2016.03.038 +Sang-Kil Son,Voronoi-cell finite difference method for accurate electronic structure calculation of polyatomic molecules on unstructured grids.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#Son11,https://doi.org/10.1016/j.jcp.2010.12.012 +Makoto Takamoto,A fast numerical scheme for causal relativistic hydrodynamics with dissipation.,2011,230,J. Comput. Physics,18,db/journals/jcphy/jcphy230.html#TakamotoI11,https://doi.org/10.1016/j.jcp.2011.05.030 +Roman Hatzky,Electromagnetic gyrokinetic PIC simulation with an adjustable control variates method.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#HatzkyKM07,https://doi.org/10.1016/j.jcp.2006.12.019 +Javier Murillo,Energy balance numerical schemes for shallow water equations with discontinuous topography.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#MurilloG13,https://doi.org/10.1016/j.jcp.2012.11.003 +Lijian Tan,Modeling the growth and interaction of multiple dendrites in solidification using a level set method.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#TanZ07a,https://doi.org/10.1016/j.jcp.2007.03.023 +C. H. Yu,A dispersively accurate compact finite difference method for the Degasperis-Procesi equation.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#YuS13,https://doi.org/10.1016/j.jcp.2012.10.046 +Ruairi M. Nestor,Extension of the finite volume particle method to viscous flow.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#NestorBLQ09,https://doi.org/10.1016/j.jcp.2008.11.003 +Gaël Poëtte,Uncertainty quantification for systems of conservation laws.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#PoetteDL09,https://doi.org/10.1016/j.jcp.2008.12.018 +Z. Jomaa,The Shortley-Weller embedded finite-difference method for the 3D Poisson equation with mixed boundary conditions.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#JomaaM10,https://doi.org/10.1016/j.jcp.2010.01.021 +X. Sheldon Wang,"Erratum to ""On computational issues of immersed finite element methods"" [J. Comput. Phys 228 (2009) 2535-2551].",2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#WangZL09a,https://doi.org/10.1016/j.jcp.2009.05.041 +Jürgen Dölz,Hierarchical matrix approximation for the uncertainty quantification of potentials on random domains.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#DolzH18,https://doi.org/10.1016/j.jcp.2018.05.040 +Richard Lombardini,Higher-order wavelet reconstruction/differentiation filters and Gibbs phenomena.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#LombardiniAKKGJ16,https://doi.org/10.1016/j.jcp.2015.10.035 +Fawang Liu,A semi-alternating direction method for a 2-D fractional FitzHugh-Nagumo monodomain model on an approximate irregular domain.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#LiuZTAB15,https://doi.org/10.1016/j.jcp.2014.06.001 +Junying Cao,A high order schema for the numerical solution of the fractional ordinary differential equations.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#CaoX13,https://doi.org/10.1016/j.jcp.2012.12.013 +Evangelia Kalligiannaki,Multilevel coarse graining and nano-pattern discovery in many particle stochastic systems.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#KalligiannakiKPV12,https://doi.org/10.1016/j.jcp.2011.12.011 +Dang Van Nguyen,A finite elements method to solve the Bloch-Torrey equation applied to diffusion magnetic resonance imaging.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#NguyenLGB14,https://doi.org/10.1016/j.jcp.2014.01.009 +Yuki Homma,Numerical modeling of the thermal force in a plasma for test-ion transport simulation based on a Monte Carlo Binary Collision Model (II) - Thermal forces due to temperature gradients parallel and perpendicular to the magnetic field.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#HommaH13,https://doi.org/10.1016/j.jcp.2013.04.039 +Peng Chen 0016,A new algorithm for high-dimensional uncertainty quantification based on dimension-adaptive sparse grid approximation and reduced basis methods.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#ChenQ15,https://doi.org/10.1016/j.jcp.2015.06.006 +Andreas Mark,Derivation and validation of a novel implicit second-order accurate immersed boundary method.,2008,227,J. Comput. Physics,13,db/journals/jcphy/jcphy227.html#MarkW08,https://doi.org/10.1016/j.jcp.2008.03.031 +Konstantin Lipnikov,Monotone finite volume schemes for diffusion equations on unstructured triangular and shape-regular polygonal meshes.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#LipnikovSSV07,https://doi.org/10.1016/j.jcp.2007.08.008 +Jiming Wu,A stabilized linearity-preserving scheme for the heterogeneous and anisotropic diffusion problems on polygonal meshes.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#WuGD12,https://doi.org/10.1016/j.jcp.2012.06.042 +Suchuan Dong,A convective-like energy-stable open boundary condition for simulations of incompressible flows.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#Dong15a,https://doi.org/10.1016/j.jcp.2015.09.017 +Alexia de Brauer,A Cartesian scheme for compressible multimaterial models in 3D.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#BrauerIM16,https://doi.org/10.1016/j.jcp.2016.02.032 +Dmitri Kuzmin,On the design of general-purpose flux limiters for finite element schemes. I. Scalar convection.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#Kuzmin06,https://doi.org/10.1016/j.jcp.2006.03.034 +Linghua Kong,Splitting multisymplectic integrators for Maxwell's equations.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#KongHZ10,https://doi.org/10.1016/j.jcp.2010.02.010 +Johan Helsing,An explicit kernel-split panel-based Nyström scheme for integral equations on axially symmetric surfaces.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#HelsingK14,https://doi.org/10.1016/j.jcp.2014.04.053 +Louis Ellam,A Bayesian approach to multiscale inverse problems with on-the-fly scale determination.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#EllamZG16,https://doi.org/10.1016/j.jcp.2016.08.031 +K. B. Nakshatrala,A numerical framework for diffusion-controlled bimolecular-reactive systems to enforce maximum principles and the non-negative constraint.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#NakshatralaMV13,https://doi.org/10.1016/j.jcp.2013.07.010 +M. A. Badri,High performance computation of radiative transfer equation using the finite element method.,2018,360,J. Comput. Physics,,db/journals/jcphy/jcphy360.html#BadriJRF18,https://doi.org/10.1016/j.jcp.2018.01.027 +Alfredo González-Calderón,Application of the and#952*-method to a telegraphic model of fluid flow in a dual-porosity medium.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#Gonzalez-Calderon18,https://doi.org/10.1016/j.jcp.2017.09.014 +Allan Peter Engsig-Karup,An efficient flexible-order model for 3D nonlinear water waves.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#Engsig-KarupBL09,https://doi.org/10.1016/j.jcp.2008.11.028 +Steffen Basting,Extended ALE Method for fluid-structure interaction problems with large structural displacements.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#BastingQCG17,https://doi.org/10.1016/j.jcp.2016.11.043 +Filipe S. Pereira,Challenges in Scale-Resolving Simulations of turbulent wake flows with coherent structures.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#PereiraEVG18,https://doi.org/10.1016/j.jcp.2018.02.038 +Bo Wang,Hybridizable discontinuous Galerkin method (HDG) for Stokes interface flow.,2013,247,J. Comput. Physics,,db/journals/jcphy/jcphy247.html#WangK13,https://doi.org/10.1016/j.jcp.2013.03.064 +M. Hossein Gorji,An efficient particle Fokker-Planck algorithm for rarefied gas flows.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#GorjiJ14,https://doi.org/10.1016/j.jcp.2013.12.046 +John P. Boyd 0001,Three ways to solve the Poisson equation on a sphere with Gaussian forcing.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#BoydZ09,https://doi.org/10.1016/j.jcp.2009.03.023 +Siddharth Savadatti,Accurate absorbing boundary conditions for anisotropic elastic media. Part 1: Elliptic anisotropy.,2012,231,J. Comput. Physics,22,db/journals/jcphy/jcphy231.html#SavadattiG12,https://doi.org/10.1016/j.jcp.2012.05.033 +Tuhin Sahai,Uncertainty quantification in hybrid dynamical systems.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#SahaiP13,https://doi.org/10.1016/j.jcp.2012.10.030 +J. López,Analytical and geometrical tools for 3D volume of fluid methods in general grids.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#LopezH08,https://doi.org/10.1016/j.jcp.2008.03.010 +Naixing Feng,Novel and efficient FDTD implementation of higher-order perfectly matched layer based on ADE method.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#FengL13,https://doi.org/10.1016/j.jcp.2012.08.012 +Christopher J. Roy,On the generation of exact solutions for evaluating numerical schemes and estimating discretization error.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#RoyS09,https://doi.org/10.1016/j.jcp.2008.11.008 +Jianming Yang,An embedded-boundary formulation for large-eddy simulation of turbulent flows interacting with moving boundaries.,2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#YangB06,https://doi.org/10.1016/j.jcp.2005.10.035 +Ravi Radhakrishnan,Temporal multiscale approach for nanocarrier motion with simultaneous adhesion and hydrodynamic interactions in targeted drug delivery.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#RadhakrishnanULAE13,https://doi.org/10.1016/j.jcp.2012.10.026 +Gilles Serre,Reliable reduced-order models for time-dependent linearized Euler equations.,2012,231,J. Comput. Physics,15,db/journals/jcphy/jcphy231.html#SerreLGB12,https://doi.org/10.1016/j.jcp.2012.04.019 +Gian Luca Delzanno,An optimal robust equidistribution method for two-dimensional grid adaptation based on Monge-Kantorovich optimization.,2008,227,J. Comput. Physics,23,db/journals/jcphy/jcphy227.html#DelzannoCFCL08,https://doi.org/10.1016/j.jcp.2008.07.020 +Miguel Fosas de Pando,Nonlinear model-order reduction for compressible flow solvers using the Discrete Empirical Interpolation Method.,2016,324,J. Comput. Physics,,db/journals/jcphy/jcphy324.html#PandoSS16,https://doi.org/10.1016/j.jcp.2016.08.004 +Manuel Duarte Ortigueira,What is a fractional derivative?,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#OrtigueiraM15,https://doi.org/10.1016/j.jcp.2014.07.019 +Christopher R. Anderson,Efficient solution of the Schroedinger-Poisson equations in layered semiconductor devices.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#Anderson09,https://doi.org/10.1016/j.jcp.2009.03.037 +Kota Hirabayashi,A new framework for magnetohydrodynamic simulations with anisotropic pressure.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#HirabayashiHA16,https://doi.org/10.1016/j.jcp.2016.09.064 +Andrew J. Christlieb,A high-order positivity-preserving single-stage single-step method for the ideal magnetohydrodynamic equations.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#ChristliebFST16,https://doi.org/10.1016/j.jcp.2016.04.016 +Jana Orszaghova,From the paddle to the beach - A Boussinesq shallow water numerical wave tank based on Madsen and Sørensen's equations.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#OrszaghovaBT12,https://doi.org/10.1016/j.jcp.2011.08.028 +Andrew J. Hesford,Reduced-rank approximations to the far-field transform in the gridded fast multipole method.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#HesfordW11,https://doi.org/10.1016/j.jcp.2011.02.016 +S. Zandi,Spectrally-accurate algorithm for the analysis of flows in two-dimensional vibrating channels.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#ZandiMF15,https://doi.org/10.1016/j.jcp.2015.08.025 +A. W. Vreman,A staggered overset grid method for resolved simulation of incompressible flow around moving spheres.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#Vreman17,https://doi.org/10.1016/j.jcp.2016.12.027 +Britton Chang,The incorporation of the semi-implicit linear equations into Newton's method to solve radiation transfer equations.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#Chang07,https://doi.org/10.1016/j.jcp.2007.05.038 +Charbel Farhat,A hybrid discontinuous Galerkin method for computing the ground state solution of Bose-Einstein condensates.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#FarhatT12,https://doi.org/10.1016/j.jcp.2012.03.010 +Andreas Wingen,Regularization of soft-X-ray imaging in the DIII-D tokamak.,2015,289,J. Comput. Physics,,db/journals/jcphy/jcphy289.html#WingenSUHH15,https://doi.org/10.1016/j.jcp.2015.02.040 +Illia Thiele,Boundary conditions for arbitrarily shaped and tightly focused laser pulses in electromagnetic codes.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#ThieleSN16,https://doi.org/10.1016/j.jcp.2016.06.004 +Adrien Loseille,Fully anisotropic goal-oriented mesh adaptation for 3D steady Euler equations.,2010,229,J. Comput. Physics,8,db/journals/jcphy/jcphy229.html#LoseilleDA10,https://doi.org/10.1016/j.jcp.2009.12.021 +Bo Gao,A note on hybrid Eulerian/Lagrangian computation of compressible inviscid and viscous flows.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#GaoXW07,https://doi.org/10.1016/j.jcp.2007.05.019 +Diego del-Castillo-Negrete,Compression of magnetohydrodynamic simulation data using singular value decomposition.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#del-Castillo-NegreteHSD07,https://doi.org/10.1016/j.jcp.2006.07.022 +Thorsten Kattelans,Conservation of mass and momentum of the least-squares spectral collocation scheme for the Stokes problem.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#KattelansH09,https://doi.org/10.1016/j.jcp.2009.03.015 +Yan Yu,Uncertainty quantification for chaotic computational fluid dynamics.,2006,217,J. Comput. Physics,1,db/journals/jcphy/jcphy217.html#YuZLPBGG06,https://doi.org/10.1016/j.jcp.2006.03.030 +Jun Bo Cheng,A third-order moving mesh cell-centered scheme for one-dimensional elastic-plastic flows.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#ChengHJT17,https://doi.org/10.1016/j.jcp.2017.08.018 +Sergey N. Medyanik,Domain reduction method for atomistic simulations.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#MedyanikKL06,https://doi.org/10.1016/j.jcp.2006.03.008 +Fabrice Falissard,Chebyshev-like generalized Shapiro filters for high-accuracy flow computations.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#Falissard17,https://doi.org/10.1016/j.jcp.2017.01.067 +Jan Nordström,Weak and strong wall boundary procedures and convergence to steady-state of the Navier-Stokes equations.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#NordstromEE12,https://doi.org/10.1016/j.jcp.2012.04.007 +Guglielmo Stecca,Upwind-biased FORCE schemes with applications to free-surface shallow flows.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#SteccaST10,https://doi.org/10.1016/j.jcp.2010.05.001 +Will Pazner,Stage-parallel fully implicit Runge-Kutta solvers for discontinuous Galerkin fluid simulations.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#PaznerP17,https://doi.org/10.1016/j.jcp.2017.01.050 +Ya-Nan Zhang,Alternating direction implicit schemes for the two-dimensional fractional sub-diffusion equation.,2011,230,J. Comput. Physics,24,db/journals/jcphy/jcphy230.html#ZhangS11a,https://doi.org/10.1016/j.jcp.2011.08.020 +Phaedon-Stelios Koutsourelakis,Special Issue: Big data and predictive computational modeling.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#KoutsourelakisZ16,https://doi.org/10.1016/j.jcp.2016.03.028 +Carsten Burstedde,Computing light masks in neutral atom lithography.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#BursteddeBK06,https://doi.org/10.1016/j.jcp.2006.07.012 +Jianming Zhang,Adaptive spatial decomposition in fast multipole method.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#ZhangT07,https://doi.org/10.1016/j.jcp.2007.03.032 +Holger Brandsmeier,A multiscale hp-FEM for 2D photonic crystal bands.,2011,230,J. Comput. Physics,2,db/journals/jcphy/jcphy230.html#BrandsmeierSS11,https://doi.org/10.1016/j.jcp.2010.09.018 +Wijnand Hoitinga,A discontinuous Galerkin finite-element method for a 1D prototype of the Boltzmann equation.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#HoitingaB11,https://doi.org/10.1016/j.jcp.2011.04.016 +Rafail V. Abramov,An improved algorithm for the multidimensional moment-constrained maximum entropy problem.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#Abramov07,https://doi.org/10.1016/j.jcp.2007.04.026 +Bruno Cochelin,Power series analysis as a major breakthrough to improve the efficiency of Asymptotic Numerical Method in the vicinity of bifurcations.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#CochelinM13,https://doi.org/10.1016/j.jcp.2012.11.016 +Weibing Deng,Upscaling methods for a class of convection-diffusion equations with highly oscillating coefficients.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#DengGH08,https://doi.org/10.1016/j.jcp.2008.04.037 +Karin Leiderman,A regularization method for the numerical solution of periodic Stokes flow.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#LeidermanBCL13,https://doi.org/10.1016/j.jcp.2012.09.035 +Mauro Valorani,The G-Scheme: A framework for multi-scale adaptive model reduction.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#ValoraniP09,https://doi.org/10.1016/j.jcp.2009.03.011 +Yunkai Zhou,Self-consistent-field calculations using Chebyshev-filtered subspace iteration.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#ZhouSTC06,https://doi.org/10.1016/j.jcp.2006.03.017 +Nachiketa Mishra,A comparative study on low-memory iterative solvers for FFT-based homogenization of periodic media.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#MishraVZ16,https://doi.org/10.1016/j.jcp.2016.05.041 +Zhiming Lu,Identifying arbitrary parameter zonation using multiple level set functions.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#LuVL18,https://doi.org/10.1016/j.jcp.2018.03.016 +M. A. Herrada,A numerical method to study the dynamics of capillary fluid systems.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#HerradaM16,https://doi.org/10.1016/j.jcp.2015.11.048 +Siarhei Khirevich,Coarse- and fine-grid numerical behavior of MRT/TRT lattice-Boltzmann schemes in regular and random sphere packings.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#KhirevichGT15,https://doi.org/10.1016/j.jcp.2014.10.038 +Andreas Rätz,Surface evolution of elastically stressed films under deposition by a diffuse interface model.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#RatzRV06,https://doi.org/10.1016/j.jcp.2005.09.013 +Vincent Le Chenadec,A monotonicity preserving conservative sharp interface flow solver for high density ratio two-phase flows.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#ChenadecP13a,https://doi.org/10.1016/j.jcp.2013.04.027 +Alexander Thomas White,Rotational invariance in the three-dimensional lattice Boltzmann method is dependent on the choice of lattice.,2011,230,J. Comput. Physics,16,db/journals/jcphy/jcphy230.html#WhiteC11,https://doi.org/10.1016/j.jcp.2011.04.031 +Amartya Banerjee,A spectral scheme for Kohn-Sham density functional theory of clusters.,2015,287,J. Comput. Physics,,db/journals/jcphy/jcphy287.html#BanerjeeEJ15,https://doi.org/10.1016/j.jcp.2015.02.009 +Keizo Fujimoto,A new electromagnetic particle-in-cell model with adaptive mesh refinement for high-performance parallel computation.,2011,230,J. Comput. Physics,23,db/journals/jcphy/jcphy230.html#Fujimoto11,https://doi.org/10.1016/j.jcp.2011.08.002 +Jan Ole Skogestad,Domain decomposition strategies for nonlinear flow problems in porous media.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#SkogestadKN13,https://doi.org/10.1016/j.jcp.2012.10.001 +Matthew Elsey,Diffusion generated motion for grain growth in two and three dimensions.,2009,228,J. Comput. Physics,21,db/journals/jcphy/jcphy228.html#ElseyES09,https://doi.org/10.1016/j.jcp.2009.07.020 +Costanza Aricò,Monotonic solution of heterogeneous anisotropic diffusion problems.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#AricoT13,https://doi.org/10.1016/j.jcp.2013.06.017 +P. J. van Dijk,Hermite-DG methods for pdf equations modelling particle transport and deposition in turbulent boundary layers.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#DijkS12,https://doi.org/10.1016/j.jcp.2012.04.016 +Mircea Grigoriu,Probabilistic models for stochastic elliptic partial differential equations.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#Grigoriu10,https://doi.org/10.1016/j.jcp.2010.07.023 +Mehmet Sahin,An arbitrary Lagrangian-Eulerian formulation for the numerical simulation of flow patterns generated by the hydromedusa Aequorea victoria.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#SahinM09,https://doi.org/10.1016/j.jcp.2009.03.027 +Oindrila Kanjilal,Girsanov's transformation based variance reduced Monte Carlo simulation schemes for reliability estimation in nonlinear stochastic dynamics.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#KanjilalM17,https://doi.org/10.1016/j.jcp.2017.03.047 +Kailiang Wu,Finite volume local evolution Galerkin method for two-dimensional relativistic hydrodynamics.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#WuT14,https://doi.org/10.1016/j.jcp.2013.08.057 +Manuel Aldegunde,Quantifying uncertainties in first-principles alloy thermodynamics using cluster expansions.,2016,323,J. Comput. Physics,,db/journals/jcphy/jcphy323.html#AldegundeZK16,https://doi.org/10.1016/j.jcp.2016.07.016 +Rouhollah Tavakoli,Unconditionally energy stable time stepping scheme for Cahn-Morral equation: Application to multi-component spinodal decomposition and optimal space tiling.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#Tavakoli16,https://doi.org/10.1016/j.jcp.2015.10.018 +Alex Simmons,A preconditioned numerical solver for stiff nonlinear reaction-diffusion equations with fractional Laplacians that avoids dense matrices.,2015,287,J. Comput. Physics,,db/journals/jcphy/jcphy287.html#SimmonsYM15,https://doi.org/10.1016/j.jcp.2015.02.012 +Shingyu Leung,A grid based particle method for evolution of open curves and surfaces.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#LeungZ09a,https://doi.org/10.1016/j.jcp.2009.07.017 +Markus Schöberl,Predictive coarse-graining.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#SchoberlZK17,https://doi.org/10.1016/j.jcp.2016.10.073 +Henning Sauerland,The extended finite element method for two-phase and free-surface flows: A systematic study.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#SauerlandF11,https://doi.org/10.1016/j.jcp.2011.01.033 +Milan Kucharik,A comparative study of interface reconstruction methods for multi-material ALE simulations.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#KucharikGSS10,https://doi.org/10.1016/j.jcp.2009.07.009 +Habib N. Najm,Enforcing positivity in intrusive PC-UQ methods for reactive ODE systems.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#NajmV14,https://doi.org/10.1016/j.jcp.2014.03.061 +Thomas Melvin,Wave dispersion properties of compound finite elements.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#MelvinT17,https://doi.org/10.1016/j.jcp.2017.02.025 +Johan Helsing,On the evaluation of layer potentials close to their sources.,2008,227,J. Comput. Physics,5,db/journals/jcphy/jcphy227.html#HelsingO08,https://doi.org/10.1016/j.jcp.2007.11.024 +Lucian Ivan,High-order solution-adaptive central essentially non-oscillatory (CENO) method for viscous flows.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#IvanG14,https://doi.org/10.1016/j.jcp.2013.09.045 +Tyrone S. Phillips,Error transport equation boundary conditions for the Euler and Navier-Stokes equations.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#PhillipsDRB17,https://doi.org/10.1016/j.jcp.2016.11.002 +David P. Nicholls,A rapid boundary perturbation algorithm for scattering by families of rough surfaces.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#Nicholls09,https://doi.org/10.1016/j.jcp.2009.01.018 +Sriramkrishnan Muralikrishnan,An improved iterative HDG approach for partial differential equations.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#MuralikrishnanT18,https://doi.org/10.1016/j.jcp.2018.04.033 +Jianping Zhang,Variational image registration by a total fractional-order variation model.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#ZhangC15,https://doi.org/10.1016/j.jcp.2015.02.021 +Yasuhiro Idomura,New conservative gyrokinetic full-f Vlasov code and its comparison to gyrokinetic 8*f particle-in-cell code.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#IdomuraITV07,https://doi.org/10.1016/j.jcp.2007.04.013 +Mahmoud A. E. Abdelrahman,A new front tracking scheme for the ultra-relativistic Euler equations.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#AbdelrahmanK14,https://doi.org/10.1016/j.jcp.2014.06.051 +Murat Barisik,Boundary treatment effects on molecular dynamics simulations of interface thermal resistance.,2012,231,J. Comput. Physics,23,db/journals/jcphy/jcphy231.html#BarisikB12,https://doi.org/10.1016/j.jcp.2012.07.026 +M. Roger,A hybrid transport-diffusion model for radiative transfer in absorbing and scattering media.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#RogerCCC14,https://doi.org/10.1016/j.jcp.2014.06.063 +Darko Stosic,GPU-advanced 3D electromagnetic simulations of superconductors in the Ginzburg-Landau formalism.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#StosicSLSM16,https://doi.org/10.1016/j.jcp.2016.06.040 +Tapan K. Sengupta,Analysis of anisotropy of numerical wave solutions by high accuracy finite difference methods.,2011,230,J. Comput. Physics,1,db/journals/jcphy/jcphy230.html#SenguptaRSV11,https://doi.org/10.1016/j.jcp.2010.09.003 +Spencer E. Olson,Gridless DSMC.,2008,227,J. Comput. Physics,17,db/journals/jcphy/jcphy227.html#OlsonC08,https://doi.org/10.1016/j.jcp.2008.04.038 +Jianbo Cui,Stochastic symplectic and multi-symplectic methods for nonlinear Schrödinger equation with white noise dispersion.,2017,342,J. Comput. Physics,,db/journals/jcphy/jcphy342.html#CuiHLZ17,https://doi.org/10.1016/j.jcp.2017.04.029 +Jean-Luc Fattebert,Accelerated Block Preconditioned Gradient method for large scale wave functions calculations in Density Functional Theory.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#Fattebert10,https://doi.org/10.1016/j.jcp.2009.09.035 +Shan Zhao,Operator splitting ADI schemes for pseudo-time coupled nonlinear solvation simulations.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#Zhao14,https://doi.org/10.1016/j.jcp.2013.09.043 +Yinhua Xia,Local discontinuous Galerkin methods for the Cahn-Hilliard type equations.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#XiaXS07,https://doi.org/10.1016/j.jcp.2007.08.001 +Kirill A. Bulashevich,Simulation of visible and ultra-violet group-III nitride light emitting diodes.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#BulashevichMKZZ06,https://doi.org/10.1016/j.jcp.2005.08.011 +Daniel Hartmann,"Erratum to ""Differential Equation Based Constrained Reinitialization for Level Set Methods"" [J. Comput. Phys. 227(2008) 6821-6845].",2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#HartmannMS08a,https://doi.org/10.1016/j.jcp.2008.08.001 +Selim Esedoglu,Kernels with prescribed surface tension and mobility for threshold dynamics schemes.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#EsedogluJZ17,https://doi.org/10.1016/j.jcp.2017.02.023 +Soheil Soghrati,Hierarchical interface-enriched finite element method: An automated technique for mesh-independent simulations.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#Soghrati14,https://doi.org/10.1016/j.jcp.2014.06.016 +Pablo J. Blanco,On the continuity of mean total normal stress in geometrical multiscale cardiovascular problems.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#BlancoDM13,https://doi.org/10.1016/j.jcp.2013.05.037 +Pieter W. Hemker,A trust-region strategy for manifold-mapping optimization.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#HemkerC07,https://doi.org/10.1016/j.jcp.2007.04.003 +Miquel Aguirre,A vertex centred Finite Volume Jameson-Schmidt-Turkel (JST) algorithm for a mixed conservation formulation in solid dynamics.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#AguirreGBC14,https://doi.org/10.1016/j.jcp.2013.12.012 +E. D. Kay,A multi-layer integral model for locally-heated thin film flow.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#KayHP17,https://doi.org/10.1016/j.jcp.2017.01.066 +Jaw-Yen Yang,High-order kinetic flux vector splitting schemes in general coordinates for ideal quantum gas dynamics.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#YangHSX07,https://doi.org/10.1016/j.jcp.2007.08.014 +Iain Waugh,Matrix-free continuation of limit cycles for bifurcation analysis of large thermoacoustic systems.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#WaughIJ13,https://doi.org/10.1016/j.jcp.2012.12.034 +Kun Wang,A scalable parallel black oil simulator on distributed memory parallel computers.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#WangLC15,https://doi.org/10.1016/j.jcp.2015.08.016 +Jie Shen 0001,The scalar auxiliary variable (SAV) approach for gradient flows.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#ShenXY18,https://doi.org/10.1016/j.jcp.2017.10.021 +Christophe Buet,Asymptotic preserving and positive schemes for radiation hydrodynamics.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#BuetD06,https://doi.org/10.1016/j.jcp.2005.11.011 +Daniele A. Di Pietro,Weighted interior penalty discretization of fully nonlinear and weakly dispersive free surface shallow water flows.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#PietroM18,https://doi.org/10.1016/j.jcp.2017.11.009 +Romina Gobbi,Numerical solution of certain classes of transport equations in any dimension by Shannon sampling.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#GobbiPS10,https://doi.org/10.1016/j.jcp.2010.01.013 +Sébastien Leclaire,Progress and investigation on lattice Boltzmann modeling of multiple immiscible fluids or components with variable density and viscosity ratios.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#LeclaireRT13,https://doi.org/10.1016/j.jcp.2013.03.039 +Tsung-Min Hwang,Numerical schemes for three-dimensional irregular shape quantum dots over curvilinear coordinate systems.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#HwangWW07,https://doi.org/10.1016/j.jcp.2007.04.022 +Frédérique Le Louër,A high order spectral algorithm for elastic obstacle scattering in three dimensions.,2014,279,J. Comput. Physics,,db/journals/jcphy/jcphy279.html#Louer14,https://doi.org/10.1016/j.jcp.2014.08.047 +Bernd Böttger,Phase-field simulation of microstructure formation in technical castings - A self-consistent homoenthalpic approach to the micro-macro problem.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#BottgerEA09,https://doi.org/10.1016/j.jcp.2009.06.028 +Athanasios G. Polimeridis,Stable FFT-JVIE solvers for fast analysis of highly inhomogeneous dielectric objects.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#PolimeridisVDW14,https://doi.org/10.1016/j.jcp.2014.03.026 +Bo Wang,Error analysis of a discontinuous Galerkin method for Maxwell equations in dispersive media.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#WangXZ10,https://doi.org/10.1016/j.jcp.2010.07.038 +Andrea Mignone,High-order conservative reconstruction schemes for finite volume methods in cylindrical and spherical coordinates.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#Mignone14,https://doi.org/10.1016/j.jcp.2014.04.001 +Nail K. Yamaleev,Third-order Energy Stable WENO scheme.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#YamaleevC09,https://doi.org/10.1016/j.jcp.2009.01.011 +Giovanni Iadarola,GPU-accelerated T-matrix algorithm for light-scattering simulations.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#IadarolaFNVM12,https://doi.org/10.1016/j.jcp.2012.03.008 +Emilio Castronovo,Mathematical test criteria for filtering complex systems: Plentiful observations.,2008,227,J. Comput. Physics,7,db/journals/jcphy/jcphy227.html#CastronovoHM08,https://doi.org/10.1016/j.jcp.2007.12.016 +Robert E. Zillich,Combination of the pair density approximation and the Takahashi-Imada approximation for path integral Monte Carlo simulations.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#Zillich15,https://doi.org/10.1016/j.jcp.2015.08.020 +Xi Deng,High fidelity discontinuity-resolving reconstruction for compressible multiphase flows with moving interfaces.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#DengIXSX18,https://doi.org/10.1016/j.jcp.2018.03.036 +Francesco Miniati,A hybrid scheme for gas-dust systems stiffly coupled via viscous drag.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#Miniati10,https://doi.org/10.1016/j.jcp.2010.01.034 +Wanda Strychalski,A poroelastic immersed boundary method with applications to cell biology.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#StrychalskiCLG15,https://doi.org/10.1016/j.jcp.2014.10.004 +Jun Fang,A Kohn-Sham equation solver based on hexahedral finite elements.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#FangGZ12,https://doi.org/10.1016/j.jcp.2011.12.043 +Jae-Hong Pyo,Gauge-Uzawa methods for incompressible flows with variable density.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#PyoS07,https://doi.org/10.1016/j.jcp.2006.06.013 +Mayya Tokman,A new class of exponential propagation iterative methods of Runge-Kutta type (EPIRK).,2011,230,J. Comput. Physics,24,db/journals/jcphy/jcphy230.html#Tokman11,https://doi.org/10.1016/j.jcp.2011.08.023 +Zhen-Hua Jiang,Efficient methods with higher order interpolation and MOOD strategy for compressible turbulence simulations.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#JiangYY18,https://doi.org/10.1016/j.jcp.2018.06.018 +Thomas Orgis,Baroclinic waves on the 6* plane using low-order Discontinuous Galerkin discretisation.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#OrgisLHD17,https://doi.org/10.1016/j.jcp.2017.03.029 +Yinhua Xia,A fully discrete stable discontinuous Galerkin method for the thin film epitaxy problem without slope selection.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#Xia15,https://doi.org/10.1016/j.jcp.2014.09.025 +Randall McDermott,A velocity divergence constraint for large-eddy simulation of low-Mach flows.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#McDermott14,https://doi.org/10.1016/j.jcp.2014.06.019 +Jens Lindström,A stable and high-order accurate conjugate heat transfer problem.,2010,229,J. Comput. Physics,14,db/journals/jcphy/jcphy229.html#LindstromN10,https://doi.org/10.1016/j.jcp.2010.04.010 +Olha Ivanyshyn,Inverse scattering for surface impedance from phase-less far field data.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#IvanyshynK11,https://doi.org/10.1016/j.jcp.2011.01.038 +Fanbin Bu,A fast and high-order method for the three-dimensional elastic wave scattering problem.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#BuLR14,https://doi.org/10.1016/j.jcp.2013.11.009 +Rajeev K. Jaiman,Conservative load transfer along curved fluid-solid interface with non-matching meshes.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#JaimanJGL06,https://doi.org/10.1016/j.jcp.2006.02.016 +Zhen Guan,Second order convex splitting schemes for periodic nonlocal Cahn-Hilliard and Allen-Cahn equations.,2014,277,J. Comput. Physics,,db/journals/jcphy/jcphy277.html#GuanLWW14,https://doi.org/10.1016/j.jcp.2014.08.001 +W. Pan,Smoothed particle hydrodynamics non-Newtonian model for ice-sheet and ice-shelf dynamics.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#PanTM13,https://doi.org/10.1016/j.jcp.2012.10.027 +Paul Tranquilli,Exponential-Krylov methods for ordinary differential equations.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#TranquilliS14,https://doi.org/10.1016/j.jcp.2014.08.013 +Hadi Hajibeygi,Adaptive iterative multiscale finite volume method.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#HajibeygiJ11,https://doi.org/10.1016/j.jcp.2010.10.009 +Denis Ricot,Lattice Boltzmann method with selective viscosity filter.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#RicotMSB09,https://doi.org/10.1016/j.jcp.2009.03.030 +Julien Favier,A Lattice Boltzmann-Immersed Boundary method to simulate the fluid interaction with moving and slender flexible objects.,2014,261,J. Comput. Physics,,db/journals/jcphy/jcphy261.html#FavierRP14,https://doi.org/10.1016/j.jcp.2013.12.052 +Ilias Bilionis,Free energy computations by minimization of Kullback-Leibler divergence: An efficient adaptive biasing potential method for sparse representations.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#BilionisK12,https://doi.org/10.1016/j.jcp.2012.01.033 +Jin-Luen Lee,A multistep flux-corrected transport scheme.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#LeeBM10,https://doi.org/10.1016/j.jcp.2010.08.039 +Jean Michel D. Sellier,The many-body Wigner Monte Carlo method for time-dependent ab-initio quantum simulations.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#SellierD14a,https://doi.org/10.1016/j.jcp.2014.05.039 +V. Vaibhav,Artificial boundary conditions for certain evolution PDEs with cubic nonlinearity for non-compactly supported initial data.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#Vaibhav11,https://doi.org/10.1016/j.jcp.2011.01.024 +Patrick Jenny,Modeling complex wells with the multi-scale finite-volume method.,2009,228,J. Comput. Physics,3,db/journals/jcphy/jcphy228.html#JennyL09,https://doi.org/10.1016/j.jcp.2008.09.026 +Junseok Kim,A finite difference method for a conservative Allen-Cahn equation on non-flat surfaces.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#KimJYC17,https://doi.org/10.1016/j.jcp.2016.12.060 +Arthur E. P. Veldman,The numerical simulation of liquid sloshing on board spacecraft.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#VeldmanGLHV07,https://doi.org/10.1016/j.jcp.2006.12.020 +Christopher Harder,A family of Multiscale Hybrid-Mixed finite element methods for the Darcy equation with rough coefficients.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#HarderPV13,https://doi.org/10.1016/j.jcp.2013.03.019 +Robert Montgomery,Use of multiscale zirconium alloy deformation models in nuclear fuel behavior analysis.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#MontgomeryTLASS17,https://doi.org/10.1016/j.jcp.2016.09.051 +Moataz O. Abu-Al-Saud,A conservative and well-balanced surface tension model.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#Abu-Al-SaudPT18,https://doi.org/10.1016/j.jcp.2018.02.022 +Michael Dumbser,A simple robust and accurate a posteriori sub-cell finite volume limiter for the discontinuous Galerkin method on unstructured meshes.,2016,319,J. Comput. Physics,,db/journals/jcphy/jcphy319.html#DumbserL16,https://doi.org/10.1016/j.jcp.2016.05.002 +Marc Buffat,A spectral fictitious domain method with internal forcing for solving elliptic PDEs.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#BuffatP11,https://doi.org/10.1016/j.jcp.2010.12.004 +Per-Gunnar Martinsson,A direct solver for variable coefficient elliptic PDEs discretized via a composite spectral collocation method.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#Martinsson13,https://doi.org/10.1016/j.jcp.2013.02.019 +Farzad Ismail,Developments of entropy-stable residual distribution methods for conservation laws I: Scalar problems.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#IsmailC17,https://doi.org/10.1016/j.jcp.2016.10.065 +Amaury Johnen,Geometrical validity of curvilinear finite elements.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#JohnenRG13,https://doi.org/10.1016/j.jcp.2012.08.051 +Yue Tian,Dynamic ray tracing and traveltime corrections for global seismic tomography.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#TianHNMD07,https://doi.org/10.1016/j.jcp.2007.04.025 +Alexander Barnett,A new integral representation for quasi-periodic fields and its application to two-dimensional band structure calculations.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#BarnettG10,https://doi.org/10.1016/j.jcp.2010.05.029 +Khosro Shahbazi,Multi-domain Fourier-continuation/WENO hybrid solver for conservation laws.,2011,230,J. Comput. Physics,24,db/journals/jcphy/jcphy230.html#ShahbaziABH11,https://doi.org/10.1016/j.jcp.2011.08.024 +Guoqiao You,VIALS: An Eulerian tool based on total variation and the level set method for studying dynamical systems.,2014,266,J. Comput. Physics,,db/journals/jcphy/jcphy266.html#YouL14,https://doi.org/10.1016/j.jcp.2014.02.014 +Rémi Abgrall,Linear and non-linear high order accurate residual distribution schemes for the discretization of the steady compressible Navier-Stokes equations.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#AbgrallS15,https://doi.org/10.1016/j.jcp.2014.11.031 +Chieh-Sen Huang,A re-averaged WENO reconstruction and a third order CWENO scheme for hyperbolic conservation laws.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#HuangAH14,https://doi.org/10.1016/j.jcp.2013.12.056 +Umer Zeeshan Ijaz,Nonstationary phase boundary estimation in electrical impedance tomography using unscented Kalman filter.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#IjazKLKK08,https://doi.org/10.1016/j.jcp.2007.12.025 +Steven Diot,An interface reconstruction method based on an analytical formula for 3D arbitrary convex cells.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#DiotF16,https://doi.org/10.1016/j.jcp.2015.10.011 +A. Kaufmann,Comparison between Lagrangian and mesoscopic Eulerian modelling approaches for inertial particles suspended in decaying isotropic turbulence.,2008,227,J. Comput. Physics,13,db/journals/jcphy/jcphy227.html#KaufmannMSH08,https://doi.org/10.1016/j.jcp.2008.03.004 +Haiyan Jiang,A device adaptive inflow boundary condition for Wigner equations of quantum transport.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#JiangLC14,https://doi.org/10.1016/j.jcp.2013.11.007 +Lorenzo Botti,A pressure-correction scheme for convection-dominated incompressible flows with discontinuous velocity and continuous pressure.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#BottiP11,https://doi.org/10.1016/j.jcp.2010.10.004 +Robert R. Nourgaliev,High-fidelity interface tracking in compressible flows: Unlimited anchored adaptive level set.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#NourgalievT07,https://doi.org/10.1016/j.jcp.2006.10.031 +A. B. Morris,Monte Carlo solution of the Boltzmann equation via a discrete velocity model.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#MorrisVG11,https://doi.org/10.1016/j.jcp.2010.10.037 +Gong Cheng,Accurate and stable time stepping in ice sheet modeling.,2017,329,J. Comput. Physics,,db/journals/jcphy/jcphy329.html#ChengLS17,https://doi.org/10.1016/j.jcp.2016.10.060 +A. H. L. M. Charin,A moving mesh interface tracking method for simulation of liquid-liquid systems.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#CharinTJSL17,https://doi.org/10.1016/j.jcp.2017.01.011 +M. Arndt,Efficient algorithms for discrete lattice calculations.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#ArndtST09,https://doi.org/10.1016/j.jcp.2009.03.039 +Stefan Bilbao,Higher-order accurate two-step finite difference schemes for the many-dimensional wave equation.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#BilbaoH18,https://doi.org/10.1016/j.jcp.2018.04.012 +Hiroki Sakamoto,Improvement and performance evaluation of the perturbation source method for an exact Monte Carlo perturbation calculation in fixed source problems.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#SakamotoY17,https://doi.org/10.1016/j.jcp.2017.05.004 +Haijun Yu,Numerical approximations for a phase-field moving contact line model with variable densities and viscosities.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#YuY17,https://doi.org/10.1016/j.jcp.2017.01.026 +Mohamed M. Selim,Incremental approach for radial basis functions mesh deformation with greedy algorithm.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#SelimKS17,https://doi.org/10.1016/j.jcp.2017.03.037 +Guanghui Hu,An adaptive finite volume method for 2D steady Euler equations with WENO reconstruction.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#Hu13,https://doi.org/10.1016/j.jcp.2013.07.006 +Björn Engquist,Seafloor identification in sonar imagery via simulations of Helmholtz equations and discrete optimization.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#EngquistFHZ17,https://doi.org/10.1016/j.jcp.2017.03.004 +C. Kristopher Garrett,Optimization and large scale computation of an entropy-based moment closure.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#GarrettHH15,https://doi.org/10.1016/j.jcp.2015.09.008 +J. P. Pontaza,A spectral element least-squares formulation for incompressible Navier-Stokes flows using triangular nodal elements.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#Pontaza07a,https://doi.org/10.1016/j.jcp.2006.06.035 +Fang Liu,Numerical integration for ab initio many-electron self energy calculations within the GW approximation.,2015,286,J. Comput. Physics,,db/journals/jcphy/jcphy286.html#LiuLVLKSJDYNL15,https://doi.org/10.1016/j.jcp.2015.01.023 +Christopher B. Ivey,Accurate interface normal and curvature estimates on three-dimensional unstructured non-convex polyhedral meshes.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#IveyM15,https://doi.org/10.1016/j.jcp.2015.07.055 +S. Adami,A generalized wall boundary condition for smoothed particle hydrodynamics.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#AdamiHA12,https://doi.org/10.1016/j.jcp.2012.05.005 +Benjamin Miquel,Hybrid Chebyshev function bases for sparse spectral methods in parity-mixed PDEs on an infinite domain.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#MiquelJ17,https://doi.org/10.1016/j.jcp.2017.08.034 +Michael Baldauf,Stability analysis for linear discretisations of the advection equation with Runge-Kutta time integration.,2008,227,J. Comput. Physics,13,db/journals/jcphy/jcphy227.html#Baldauf08,https://doi.org/10.1016/j.jcp.2008.03.025 +Tiangang Cui,Scalable posterior approximations for large-scale Bayesian inverse problems via likelihood-informed parameter and state reduction.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#CuiMW16,https://doi.org/10.1016/j.jcp.2016.03.055 +Tao Du,A fast algorithm for the simulation of arterial pulse waves.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#DuHC16,https://doi.org/10.1016/j.jcp.2016.03.036 +Sébastian Minjeaud,High order approximation of a tokamak edge plasma transport minimal model with Bohm boundary conditions.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#MinjeaudP15,https://doi.org/10.1016/j.jcp.2014.12.049 +Gerald Jordan,Fast iterative interior eigensolver for millions of atoms.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#JordanMKK12,https://doi.org/10.1016/j.jcp.2012.04.010 +Luis Chacón,Multiscale high-order/low-order (HOLO) algorithms and applications.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#ChaconCKNPTWW17,https://doi.org/10.1016/j.jcp.2016.10.069 +Songting Luo,Fast Huygens sweeping methods for Helmholtz equations in inhomogeneous media in the high frequency regime.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#LuoQB14,https://doi.org/10.1016/j.jcp.2014.03.066 +D. Le Hardy,Specular reflection treatment for the 3D radiative transfer equation solved with the discrete ordinates method.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#HardyFRH17,https://doi.org/10.1016/j.jcp.2017.01.019 +George Frantziskonis,Time-parallel multiscale/multiphysics framework.,2009,228,J. Comput. Physics,21,db/journals/jcphy/jcphy228.html#FrantziskonisMDSNP09,https://doi.org/10.1016/j.jcp.2009.07.035 +Duan Z. Zhang,Shock waves simulated using the dual domain material point method combined with molecular dynamics.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#ZhangD17,https://doi.org/10.1016/j.jcp.2017.01.003 +Sébastien Tanguy,A Level Set Method for vaporizing two-phase flows.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#TanguyMB07,https://doi.org/10.1016/j.jcp.2006.07.003 +Tooru Sugiyama,Multi-scale plasma simulation by the interlocking of magnetohydrodynamic model and particle-in-cell kinetic model.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#SugiyamaK07,https://doi.org/10.1016/j.jcp.2007.09.011 +Kao-San Yeh,The streamline subgrid integration method: I. Quasi-monotonic second-order transport schemes.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#Yeh07,https://doi.org/10.1016/j.jcp.2007.02.033 +Long Chen 0002,An interface-fitted mesh generator and virtual element methods for elliptic interface problems.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#ChenWW17,https://doi.org/10.1016/j.jcp.2017.01.004 +Peijun Li,A Cartesian treecode for screened coulomb interactions.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#LiJK09,https://doi.org/10.1016/j.jcp.2009.02.022 +Damien Kah,A high order moment method simulating evaporation and advection of a polydisperse liquid spray.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#KahLMJ12,https://doi.org/10.1016/j.jcp.2011.08.032 +Jingwei Hu,A stochastic Galerkin method for the Boltzmann equation with uncertainty.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#HuJ16,https://doi.org/10.1016/j.jcp.2016.03.047 +Camille Carvalho,Asymptotic analysis for close evaluation of layer potentials.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#CarvalhoKK18,https://doi.org/10.1016/j.jcp.2017.11.015 +Christopher R. Anderson,A Rayleigh-Chebyshev procedure for finding the smallest eigenvalues and associated eigenvectors of large sparse Hermitian matrices.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#Anderson10,https://doi.org/10.1016/j.jcp.2010.06.030 +Nicolas Besse,Gyro-water-bag approach in nonlinear gyrokinetic turbulence.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#BesseB09,https://doi.org/10.1016/j.jcp.2009.02.025 +Adam Davidson,Implementation of a hybrid particle code with a PIC description in r-z and a gridless description in and#981* into OSIRIS.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#DavidsonTATLVFSM15,https://doi.org/10.1016/j.jcp.2014.10.064 +Dinshaw S. Balsara,A subluminal relativistic magnetohydrodynamics scheme with ADER-WENO predictor and multidimensional Riemann solver-based corrector.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#BalsaraK16,https://doi.org/10.1016/j.jcp.2016.02.001 +Wouter Tierens,Higher-order hybrid implicit/explicit FDTD time-stepping.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#Tierens16,https://doi.org/10.1016/j.jcp.2016.09.065 +John Thuburn,Numerical wave propagation on the hexagonal C-grid.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#Thuburn08a,https://doi.org/10.1016/j.jcp.2008.02.010 +Malidi Ahamadi,A Lagrangian finite element method for simulation of a suspension under planar extensional flow.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#AhamadiH08,https://doi.org/10.1016/j.jcp.2008.04.035 +Binh K. Lieu,Computation of frequency responses for linear time-invariant PDEs on a compact interval.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#LieuJ13,https://doi.org/10.1016/j.jcp.2013.05.010 +Metin Muradoglu,A front-tracking method for computation of interfacial flows with soluble surfactants.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#MuradogluT08,https://doi.org/10.1016/j.jcp.2007.10.003 +Pavel Váchal,A symmetry preserving dissipative artificial viscosity in an r-z staggered Lagrangian discretization.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#VachalW14,https://doi.org/10.1016/j.jcp.2013.10.036 +Anna-Karin Tornberg,A numerical method for simulations of rigid fiber suspensions.,2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#TornbergG06,https://doi.org/10.1016/j.jcp.2005.10.028 +Sara Zahedi,A conservative level set method for contact line dynamics.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#ZahediGK09,https://doi.org/10.1016/j.jcp.2009.05.043 +M. Ganesh,A fully discrete Galerkin method for high frequency exterior acoustic scattering in three dimensions.,2011,230,J. Comput. Physics,1,db/journals/jcphy/jcphy230.html#GaneshH11,https://doi.org/10.1016/j.jcp.2010.09.014 +David P. Starinshak,A new level set model for multimaterial flows.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#StarinshakKR14,https://doi.org/10.1016/j.jcp.2013.12.036 +Elin Olsson,A conservative level set method for two phase flow II.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#OlssonKZ07,https://doi.org/10.1016/j.jcp.2006.12.027 +Juan P. Aguayo,The numerical prediction of planar viscoelastic contraction flows using the pom-pom model and higher-order finite volume schemes.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#AguayoPPTSW07,https://doi.org/10.1016/j.jcp.2006.05.039 +Olivier P. Le Maître,A stochastic particle-mesh scheme for uncertainty propagation in vortical flows.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#MaitreK07,https://doi.org/10.1016/j.jcp.2007.04.030 +Tomislav Maric,An enhanced un-split face-vertex flux-based VoF method.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#MaricMB18,https://doi.org/10.1016/j.jcp.2018.03.048 +Shawn W. Walker,Shape optimization of self-avoiding curves.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#Walker16,https://doi.org/10.1016/j.jcp.2016.02.011 +Robert D. Berry,Data-free inference of the joint distribution of uncertain model parameters.,2012,231,J. Comput. Physics,5,db/journals/jcphy/jcphy231.html#BerryNDMA12,https://doi.org/10.1016/j.jcp.2011.10.031 +Gianmarco Mengaldo,Spatial eigensolution analysis of energy-stable flux reconstruction schemes and influence of the numerical flux on accuracy and robustness.,2018,358,J. Comput. Physics,,db/journals/jcphy/jcphy358.html#MengaldoGMS18,https://doi.org/10.1016/j.jcp.2017.12.019 +Jin Yao,An easy method to accelerate an iterative algebraic equation solver.,2014,267,J. Comput. Physics,,db/journals/jcphy/jcphy267.html#Yao14,https://doi.org/10.1016/j.jcp.2014.02.027 +Manuel A. Diaz,An efficient direct solver for rarefied gas flows with arbitrary statistics.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#DiazY16,https://doi.org/10.1016/j.jcp.2015.09.003 +Dmitri Kuzmin,Explicit and implicit FEM-FCT algorithms with flux linearization.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#Kuzmin09,https://doi.org/10.1016/j.jcp.2008.12.011 +A. M. Zhang,Improved three-dimensional bubble dynamics model based on boundary element method.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#ZhangL15,https://doi.org/10.1016/j.jcp.2015.03.049 +H. S. Tang,An overset grid method for integration of fully 3D fluid dynamics and geophysics fluid dynamics models to simulate multiphysics coastal ocean flows.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#TangQW14,https://doi.org/10.1016/j.jcp.2014.05.010 +A. S. Zymaris,Adjoint wall functions: A new concept for use in aerodynamic shape optimization.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#ZymarisPGO10,https://doi.org/10.1016/j.jcp.2010.03.037 +Mark F. Adams,Toward textbook multigrid efficiency for fully implicit resistive magnetohydrodynamics.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#AdamsSB10,https://doi.org/10.1016/j.jcp.2010.04.024 +Vincent Mons,Reconstruction of unsteady viscous flows using data assimilation schemes.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#MonsCGS16,https://doi.org/10.1016/j.jcp.2016.04.022 +Shu-Lin Wu,Parareal algorithms with local time-integrators for time fractional differential equations.,2018,358,J. Comput. Physics,,db/journals/jcphy/jcphy358.html#WuZ18,https://doi.org/10.1016/j.jcp.2017.12.029 +Oscar P. Bruno,Electromagnetic integral equations requiring small numbers of Krylov-subspace iterations.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#BrunoEPT09,https://doi.org/10.1016/j.jcp.2009.05.020 +Mapundi K. Banda,A lattice-Boltzmann relaxation scheme for coupled convection-radiation systems.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#BandaKS07,https://doi.org/10.1016/j.jcp.2007.05.030 +Julien Coatléven,Helmholtz equation in periodic media with a line defect.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#Coatleven12,https://doi.org/10.1016/j.jcp.2011.10.022 +Andreas Meister 0003,A comparison of the Discontinuous-Galerkin- and Spectral-Difference-Method on triangulations using PKD polynomials.,2012,231,J. Comput. Physics,23,db/journals/jcphy/jcphy231.html#MeisterOSW12,https://doi.org/10.1016/j.jcp.2012.07.025 +Yu-Hau Tseng,An immersed boundary method for endocytosis.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#TsengH14,https://doi.org/10.1016/j.jcp.2014.05.009 +Meng Li,Canonical straight field line magnetic flux coordinates for tokamaks.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#LiBZ16,https://doi.org/10.1016/j.jcp.2016.09.004 +Dongyong Wang,Array-representation integration factor method for high-dimensional systems.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#WangZN14,https://doi.org/10.1016/j.jcp.2013.11.002 +François Fillion-Gourdeau,A split-step numerical method for the time-dependent Dirac equation in 3-D axisymmetric geometry.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#Fillion-GourdeauLB14,https://doi.org/10.1016/j.jcp.2014.03.068 +Stefan Baumgartner,A one-level FETI method for the drift-diffusion-Poisson system with discontinuities at an interface.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#BaumgartnerH13,https://doi.org/10.1016/j.jcp.2013.02.043 +Xuanchun Dong,A short note on simplified pseudospectral methods for computing ground state and dynamics of spherically symmetric Schrödinger-Poisson-Slater system.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#Dong11,https://doi.org/10.1016/j.jcp.2011.07.026 +Yanfen Cui,Numerical method satisfying the first two conservation laws for the Korteweg-de Vries equation.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#CuiM07,https://doi.org/10.1016/j.jcp.2007.07.031 +Charbel Farhat,FIVER: A finite volume method based on exact two-phase Riemann problems and sparse grids for multi-material flows with large density jumps.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#FarhatGR12,https://doi.org/10.1016/j.jcp.2012.05.026 +Brian T. Helenbrook,Preconditioning for dual-time-stepping simulations of the shallow water equations including Coriolis and bed friction effects.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#HelenbrookC08,https://doi.org/10.1016/j.jcp.2008.01.004 +Sanna Mönkölä,An optimization-based approach for solving a time-harmonic multiphysical wave problem with higher-order schemes.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#Monkola13,https://doi.org/10.1016/j.jcp.2013.02.022 +Sanna Mönkölä,Time-harmonic elasticity with controllability and higher-order discretization methods.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#MonkolaHPR08,https://doi.org/10.1016/j.jcp.2008.01.054 +Aimee Gotway Bailey,Efficient constraint dynamics using MILC SHAKE.,2008,227,J. Comput. Physics,20,db/journals/jcphy/jcphy227.html#BaileyLS08,https://doi.org/10.1016/j.jcp.2008.07.002 +Michele Caputo,Damage and fatigue described by a fractional derivative model.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#CaputoF15,https://doi.org/10.1016/j.jcp.2014.11.012 +Wei Ran,GPU accelerated CESE method for 1D shock tube problems.,2011,230,J. Comput. Physics,24,db/journals/jcphy/jcphy230.html#RanCQL11,https://doi.org/10.1016/j.jcp.2011.08.026 +Matteo Tugnoli,A locally p-adaptive approach for Large Eddy Simulation of compressible flows in a DG framework.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#TugnoliABR17,https://doi.org/10.1016/j.jcp.2017.08.007 +Jón Tómas Grétarsson,Numerically stable fluid-structure interactions between compressible flow and solid structures.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#GretarssonKF11,https://doi.org/10.1016/j.jcp.2011.01.005 +Gregory R. Werner,Extracting degenerate modes and frequencies from time-domain simulations with filter-diagonalization.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#WernerC08,https://doi.org/10.1016/j.jcp.2008.01.040 +Johan Helsing,The effective conductivity of arrays of squares: Large random unit cells and extreme contrast ratios.,2011,230,J. Comput. Physics,20,db/journals/jcphy/jcphy230.html#Helsing11a,https://doi.org/10.1016/j.jcp.2011.05.032 +Kentaro Yaji,Topology optimization using the lattice Boltzmann method incorporating level set boundary expressions.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#YajiYYMIN14,https://doi.org/10.1016/j.jcp.2014.06.004 +Panagiotis Tsoutsanis,Extended bounds limiter for high-order finite-volume schemes on unstructured meshes.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#Tsoutsanis18,https://doi.org/10.1016/j.jcp.2018.02.009 +Maxime Huet,One-dimensional characteristic boundary conditions using nonlinear invariants.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#Huet15,https://doi.org/10.1016/j.jcp.2014.12.010 +Ngoc Cuong Nguyen,A multiscale reduced-basis method for parametrized elliptic partial differential equations with multiple scales.,2008,227,J. Comput. Physics,23,db/journals/jcphy/jcphy227.html#Nguyen08,https://doi.org/10.1016/j.jcp.2008.07.025 +Xinghui Zhong,A simple weighted essentially nonoscillatory limiter for Runge-Kutta discontinuous Galerkin methods.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#ZhongS13,https://doi.org/10.1016/j.jcp.2012.08.028 +Hassan Badreddine,Sequential Quadratic Programming (SQP) for optimal control in direct numerical simulation of turbulent flow.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#BadreddineVM14,https://doi.org/10.1016/j.jcp.2013.08.044 +Hong Luo,A discontinuous Galerkin method based on a Taylor basis for the compressible flows on arbitrary grids.,2008,227,J. Comput. Physics,20,db/journals/jcphy/jcphy227.html#LuoBL08,https://doi.org/10.1016/j.jcp.2008.06.035 +Jorge A. Morales,Simulation of confined magnetohydrodynamic flows with Dirichlet boundary conditions using a pseudo-spectral method with volume penalization.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#MoralesLBS14,https://doi.org/10.1016/j.jcp.2014.05.038 +Weizhang Huang,A study of moving mesh PDE methods for numerical simulation of blowup in reaction diffusion equations.,2008,227,J. Comput. Physics,13,db/journals/jcphy/jcphy227.html#HuangMR08,https://doi.org/10.1016/j.jcp.2008.03.024 +Richard Liska,Optimization-based synchronized flux-corrected conservative interpolation (remapping) of mass and momentum for arbitrary Lagrangian-Eulerian methods.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#LiskaSVW10,https://doi.org/10.1016/j.jcp.2009.10.039 +Guglielmo Scovazzi,Analytical and variational numerical methods for unstable miscible displacement flows in porous media.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#ScovazziWML17,https://doi.org/10.1016/j.jcp.2017.01.021 +Satyaki Bhattacharjee,A nonlinear manifold-based reduced order model for multiscale analysis of heterogeneous hyperelastic materials.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#BhattacharjeeM16,https://doi.org/10.1016/j.jcp.2016.01.040 +Alexandra Claisse,A new exceptional points method with application to cell-centered Lagrangian schemes and curved meshes.,2012,231,J. Comput. Physics,11,db/journals/jcphy/jcphy231.html#ClaisseDLL12,https://doi.org/10.1016/j.jcp.2012.02.017 +Allison Lewis,An information theoretic approach to use high-fidelity codes to calibrate low-fidelity codes.,2016,324,J. Comput. Physics,,db/journals/jcphy/jcphy324.html#LewisSWF16,https://doi.org/10.1016/j.jcp.2016.08.001 +Caterina Calgaro,Positivity-preserving schemes for Euler equations: Sharp and practical CFL conditions.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#CalgaroCGP13,https://doi.org/10.1016/j.jcp.2012.09.040 +Georges-Henri Cottet,A semi-implicit level set method for multiphase flows and fluid-structure interaction problems.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#CottetM16,https://doi.org/10.1016/j.jcp.2016.03.004 +K. Karagiozis,A low numerical dissipation immersed interface method for the compressible Navier-Stokes equations.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#KaragiozisKP10,https://doi.org/10.1016/j.jcp.2009.10.005 +Patrick D. Anderson,On the streamfunction-vorticity formulation in sliding bi-period frames: Application to bulk behavior for polymer blends.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#AndersonKH06,https://doi.org/10.1016/j.jcp.2005.07.002 +S. M. Zandi,Exponential basis functions in solution of problems with fully incompressible materials: A mesh-free method.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#ZandiBS12a,https://doi.org/10.1016/j.jcp.2012.06.036 +Antoine Lejay,Simulating diffusion processes in discontinuous media: Benchmark tests.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#LejayP16,https://doi.org/10.1016/j.jcp.2016.03.003 +Thomas A. Brunner,Comparison of four parallel algorithms for domain decomposed implicit Monte Carlo.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#BrunnerUEG06,https://doi.org/10.1016/j.jcp.2005.07.009 +Wenjia Xie,On numerical instabilities of Godunov-type schemes for strong shocks.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#XieLLTP17,https://doi.org/10.1016/j.jcp.2017.08.063 +Lexing Ying,A kernel independent fast multipole algorithm for radial basis functions.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#Ying06,https://doi.org/10.1016/j.jcp.2005.09.010 +Xavier Antoine,Efficient spectral computation of the stationary states of rotating Bose-Einstein condensates by preconditioned nonlinear conjugate gradient methods.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#AntoineLT17,https://doi.org/10.1016/j.jcp.2017.04.040 +Roland Duclous,High order resolution of the Maxwell-Fokker-Planck-Landau model intended for ICF applications.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#DuclousDFT09,https://doi.org/10.1016/j.jcp.2009.04.005 +Tapan K. Sengupta,Error dynamics: Beyond von Neumann analysis.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#SenguptaDS07,https://doi.org/10.1016/j.jcp.2007.06.001 +Xinran Ruan,A normalized gradient flow method with attractive-repulsive splitting for computing ground states of Bose-Einstein condensates with higher-order interaction.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#Ruan18,https://doi.org/10.1016/j.jcp.2018.04.038 +Y. Sun,Symplectic and multisymplectic numerical methods for Maxwell's equations.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#SunT11,https://doi.org/10.1016/j.jcp.2010.12.006 +Maciej Waruszewski,MPDATA: Third-order accuracy for variable flows.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#WaruszewskiKPS18,https://doi.org/10.1016/j.jcp.2018.01.005 +Tae Gon Kang,A direct simulation method for flows with suspended paramagnetic particles.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#KangHTAM08,https://doi.org/10.1016/j.jcp.2008.01.005 +Pietro Asinari,A consistent lattice Boltzmann equation with baroclinic coupling for mixtures.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#AsinariL08,https://doi.org/10.1016/j.jcp.2007.12.001 +Dietmar Kröner,Local discontinuous Galerkin numerical solutions of non-Newtonian incompressible flows modeled by p-Navier-Stokes equations.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#KronerRT14,https://doi.org/10.1016/j.jcp.2014.03.045 +Yongsam Kim,Numerical simulations of three-dimensional foam by the immersed boundary method.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#KimLPS14,https://doi.org/10.1016/j.jcp.2014.03.016 +David J. Hill 0003,An Eulerian hybrid WENO centered-difference solver for elastic-plastic solids.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#HillPOM10,https://doi.org/10.1016/j.jcp.2010.08.020 +Herbert Egger,Enhancement of flow measurements using fluid-dynamic constraints.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#EggerST17,https://doi.org/10.1016/j.jcp.2017.04.080 +Haran Jackson,On the eigenvalues of the ADER-WENO Galerkin predictor.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#Jackson17,https://doi.org/10.1016/j.jcp.2016.12.058 +Mehmet Sarp Yalim,A finite volume implicit time integration method for solving the equations of ideal magnetohydrodynamics for the hyperbolic divergence cleaning approach.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#YalimALQD11,https://doi.org/10.1016/j.jcp.2011.04.020 +Randall McDermott,A particle formulation for treating differential diffusion in filtered density function methods.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#McDermottP07,https://doi.org/10.1016/j.jcp.2007.05.006 +Olivier Desjardins,High order conservative finite difference scheme for variable density low Mach number turbulent flows.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#DesjardinsBBP08,https://doi.org/10.1016/j.jcp.2008.03.027 +Jesse Chan,On discretely entropy conservative and entropy stable discontinuous Galerkin methods.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#Chan18,https://doi.org/10.1016/j.jcp.2018.02.033 +Andreas Hellander,Hybrid method for the chemical master equation.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#HellanderL07,https://doi.org/10.1016/j.jcp.2007.07.020 +Takemi Shigeta,Method of fundamental solutions with optimal regularization techniques for the Cauchy problem of the Laplace equation with singular points.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#ShigetaY09,https://doi.org/10.1016/j.jcp.2008.11.018 +J. Sigüenza,Validation of an immersed thick boundary method for simulating fluid-structure interactions of deformable membranes.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#SiguenzaMADJMN16,https://doi.org/10.1016/j.jcp.2016.06.041 +C. P. Ridgers,Modelling gamma-ray photon emission and pair production in high-intensity laser-matter interactions.,2014,260,J. Comput. Physics,,db/journals/jcphy/jcphy260.html#RidgersKDBBBAB14,https://doi.org/10.1016/j.jcp.2013.12.007 +Anindya Bhaduri,Stochastic collocation approach with adaptive mesh refinement for parametric uncertainty analysis.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#BhaduriHSGK18,https://doi.org/10.1016/j.jcp.2018.06.003 +Jialin Lou,Reconstructed discontinuous Galerkin methods for linear advection-diffusion equations based on first-order hyperbolic system.,2018,369,J. Comput. Physics,,db/journals/jcphy/jcphy369.html#LouLLN18,https://doi.org/10.1016/j.jcp.2018.04.058 +Charles Swanson,Convergence acceleration of Runge-Kutta schemes for solving the Navier-Stokes equations.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#SwansonTR07,https://doi.org/10.1016/j.jcp.2007.02.028 +Dmitrii Azarnykh,Numerical methods for the weakly compressible Generalized Langevin Model in Eulerian reference frame.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#AzarnykhLA16,https://doi.org/10.1016/j.jcp.2016.02.073 +Bruno Stupfel,One-way domain decomposition method with exact radiation condition and fast GMRES solver for the solution of Maxwell's equations.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#StupfelL16,https://doi.org/10.1016/j.jcp.2016.07.015 +Shidong Jiang,Second kind integral equation formulation for the modified biharmonic equation and its applications.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#JiangKQ13,https://doi.org/10.1016/j.jcp.2013.04.034 +Don E. Bruss,S2SA preconditioning for the Sn equations with strictly nonnegative spatial discretization.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#BrussMR14,https://doi.org/10.1016/j.jcp.2014.05.022 +Matthias Markl,Free surface Neumann boundary condition for the advection-diffusion lattice Boltzmann method.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#MarklK15,https://doi.org/10.1016/j.jcp.2015.08.033 +Nico Schlömer,An optimal linear solver for the Jacobian system of the extreme type-II Ginzburg-Landau problem.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#SchlomerV13,https://doi.org/10.1016/j.jcp.2012.10.013 +Andrei G. Borisov,Wave packet propagation by the Faber polynomial approximation in electrodynamics of passive media.,2006,216,J. Comput. Physics,1,db/journals/jcphy/jcphy216.html#BorisovS06,https://doi.org/10.1016/j.jcp.2005.12.011 +Avi Robinson-Mosher,A symmetric positive definite formulation for monolithic fluid structure interaction.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#Robinson-MosherSF11,https://doi.org/10.1016/j.jcp.2010.11.021 +Felix Rieper,A low-Mach number fix for Roe's approximate Riemann solver.,2011,230,J. Comput. Physics,13,db/journals/jcphy/jcphy230.html#Rieper11,https://doi.org/10.1016/j.jcp.2011.03.025 +Vincent Giovangigli,Multicomponent transport algorithms for partially ionized mixtures.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#Giovangigli10,https://doi.org/10.1016/j.jcp.2010.02.001 +Mohsen Zayernouri,Fractional Sturm-Liouville eigen-problems: Theory and numerical approximation.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#ZayernouriK13,https://doi.org/10.1016/j.jcp.2013.06.031 +Sergey D. Ustyugov,Piecewise parabolic method on a local stencil for magnetized supersonic turbulence simulation.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#UstyugovPKN09,https://doi.org/10.1016/j.jcp.2009.07.007 +Dongjin Lee,Solution of the k-th eigenvalue problem in large-scale electronic structure calculations.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#LeeHSMZ18,https://doi.org/10.1016/j.jcp.2018.06.002 +Sandra Nägele,On the influence of different stabilisation methods for the incompressible Navier-Stokes equations.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#NageleW07,https://doi.org/10.1016/j.jcp.2006.12.024 +Xiangyu Hu 0002,Scale separation for implicit large eddy simulation.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#HuA11,https://doi.org/10.1016/j.jcp.2011.05.023 +M. Darwish,A coupled finite volume solver for the solution of incompressible flows on unstructured grids.,2009,228,J. Comput. Physics,1,db/journals/jcphy/jcphy228.html#DarwishSM09,https://doi.org/10.1016/j.jcp.2008.08.027 +Jonathan Hagan,Capacitance matrix technique for avoiding spurious eigenmodes in the solution of hydrodynamic stability problems by Chebyshev collocation method.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#HaganP13,https://doi.org/10.1016/j.jcp.2012.12.012 +Beibei Zhu,Splitting K-symplectic methods for non-canonical separable Hamiltonian problems.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#ZhuZTTZ16,https://doi.org/10.1016/j.jcp.2016.06.044 +Bruno Escribano,Multiple-time-stepping generalized hybrid Monte Carlo methods.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#EscribanoARA15,https://doi.org/10.1016/j.jcp.2014.08.052 +Nasser Mohieddin Abukhdeir,Long-time integration methods for mesoscopic models of pattern-forming systems.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#AbukhdeirVKP11,https://doi.org/10.1016/j.jcp.2011.03.052 +Aaditya V. Rangan,Detecting low-rank clusters via random sampling.,2012,231,J. Comput. Physics,1,db/journals/jcphy/jcphy231.html#Rangan12,https://doi.org/10.1016/j.jcp.2011.09.008 +Xiaofeng Yang 0003,Modeling and simulations of drop pinch-off from liquid crystal filaments and the leaky liquid crystal faucet immersed in viscous fluids.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#YangFLLSWC13,https://doi.org/10.1016/j.jcp.2012.10.042 +Ben Evans,Nano-particle drag prediction at low Reynolds number using a direct Boltzmann-BGK solution approach.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#Evans18,https://doi.org/10.1016/j.jcp.2017.09.038 +Hailiang Liu,Alternating evolution discontinuous Galerkin methods for Hamilton-Jacobi equations.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#LiuP14,https://doi.org/10.1016/j.jcp.2013.09.038 +Ying Sun,Sharp interface tracking using the phase-field equation.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#SunB07,https://doi.org/10.1016/j.jcp.2006.05.025 +Swarnava Ghosh,Higher-order finite-difference formulation of periodic Orbital-free Density Functional Theory.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#GhoshS16,https://doi.org/10.1016/j.jcp.2015.12.027 +Matthias K. Gobbert,A kinetic transport and reaction model and simulator for rarefied gas flow in the transition regime.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#GobbertC06,https://doi.org/10.1016/j.jcp.2005.08.026 +Jianxian Qiu,A numerical study for the performance of the Runge-Kutta discontinuous Galerkin method based on different numerical fluxes.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#QiuKS06,https://doi.org/10.1016/j.jcp.2005.07.011 +Ryan B. Norman,Validation of nuclear models used in space radiation shielding applications.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#NormanB13,https://doi.org/10.1016/j.jcp.2012.09.006 +Hong Wang,A fast Galerkin method with efficient matrix assembly and storage for a peridynamic model.,2012,231,J. Comput. Physics,23,db/journals/jcphy/jcphy231.html#WangT12,https://doi.org/10.1016/j.jcp.2012.06.009 +T. Görler,The global version of the gyrokinetic turbulence code GENE.,2011,230,J. Comput. Physics,18,db/journals/jcphy/jcphy230.html#GorlerLBDJMT11,https://doi.org/10.1016/j.jcp.2011.05.034 +Shahnam Gorgizadeh,Eigenmode computation of cavities with perturbed geometry using matrix perturbation methods applied on generalized eigenvalue problems.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#GorgizadehFR18,https://doi.org/10.1016/j.jcp.2018.03.012 +M. Pisarenco,On the complexity of aperiodic Fourier modal methods for finite periodic structures.,2014,261,J. Comput. Physics,,db/journals/jcphy/jcphy261.html#PisarencoS14,https://doi.org/10.1016/j.jcp.2013.12.051 +Satoshi Ii,A global shallow water model using high order multi-moment constrained finite volume method and icosahedral grid.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#IiX10,https://doi.org/10.1016/j.jcp.2009.11.008 +Jean-Luc Guermond,Effects of discontinuous magnetic permeability on magnetodynamic problems.,2011,230,J. Comput. Physics,16,db/journals/jcphy/jcphy230.html#GuermondLLNR11,https://doi.org/10.1016/j.jcp.2011.04.026 +Byungjoon Lee 0001,Revisiting the redistancing problem using the Hopf-Lax formula.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#LeeDOK17,https://doi.org/10.1016/j.jcp.2016.11.005 +Beatrice Roget,Wall distance search algorithm using voxelized marching spheres.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#RogetS13,https://doi.org/10.1016/j.jcp.2013.01.035 +Nishant Nangia,A moving control volume approach to computing hydrodynamic forces and torques on immersed bodies.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#NangiaJPB17,https://doi.org/10.1016/j.jcp.2017.06.047 +Alexander Linke,On velocity errors due to irrotational forces in the Navier-Stokes momentum balance.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#LinkeM16,https://doi.org/10.1016/j.jcp.2016.02.070 +Peter Lenaers,A new high-order method for the simulation of incompressible wall-bounded turbulent flows.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#LenaersSBJ14,https://doi.org/10.1016/j.jcp.2014.04.034 +Haiyan Jiang,Effect of boundary treatments on quantum transport current in the Green's function and Wigner distribution methods for a nano-scale DG-MOSFET.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#JiangC10,https://doi.org/10.1016/j.jcp.2010.02.008 +Candong Cheng,3D quantum transport solver based on the perfectly matched layer and spectral element methods for the simulation of semiconductor nanodevices.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#ChengLLML07,https://doi.org/10.1016/j.jcp.2007.07.028 +Mark Goldsworthy,Simulation of unsteady flows by the DSMC macroscopic chemistry method.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#GoldsworthyMA09,https://doi.org/10.1016/j.jcp.2008.09.006 +G. MacDonald,A computational method for the coupled solution of reaction-diffusion equations on evolving domains and manifolds: Application to a model of cell migration and chemotaxis.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#MacDonaldMNI16,https://doi.org/10.1016/j.jcp.2015.12.038 +Tae-Hyeong Yi,Vertical discretization with finite elements for a global hydrostatic model on the cubed sphere.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#YiP17,https://doi.org/10.1016/j.jcp.2017.02.067 +Stéphane Popinet,A quadtree-adaptive multigrid solver for the Serre-Green-Naghdi equations.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#Popinet15,https://doi.org/10.1016/j.jcp.2015.09.009 +Ben P. Sommeijer,On stabilized integration for time-dependent PDEs.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#SommeijerV07,https://doi.org/10.1016/j.jcp.2006.11.013 +Marc de la Asunción,Simulation of tsunamis generated by landslides using adaptive mesh refinement on GPU.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#AsuncionD17,https://doi.org/10.1016/j.jcp.2017.05.016 +Yuanwei Xu,MBAR-enhanced lattice Monte Carlo simulation of the effect of helices on membrane protein aggregation.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#XuR17,https://doi.org/10.1016/j.jcp.2016.12.016 +Alfredo Pinelli,Immersed-boundary methods for general finite-difference and finite-volume Navier-Stokes solvers.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#PinelliNPF10,https://doi.org/10.1016/j.jcp.2010.08.021 +Andrew T. Barker,Scalable parallel methods for monolithic coupling in fluid-structure interaction with application to blood flow modeling.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#BarkerC10,https://doi.org/10.1016/j.jcp.2009.10.001 +Hongxu Liu,WLS-ENO: Weighted-least-squares based essentially non-oscillatory schemes for finite volume methods on unstructured meshes.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#LiuJ16,https://doi.org/10.1016/j.jcp.2016.03.039 +Upender K. Kaul,Three-dimensional elliptic grid generation with fully automatic boundary constraints.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#Kaul10,https://doi.org/10.1016/j.jcp.2010.04.028 +Sining Yu,Three-dimensional matched interface and boundary (MIB) method for treating geometric singularities.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#YuW07,https://doi.org/10.1016/j.jcp.2007.08.003 +Per-Olof Persson,A sparse and high-order accurate line-based discontinuous Galerkin method for unstructured meshes.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#Persson13,https://doi.org/10.1016/j.jcp.2012.09.008 +ZhanSen Qian,On large time step TVD scheme for hyperbolic conservation laws and its efficiency evaluation.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#QianL12,https://doi.org/10.1016/j.jcp.2012.07.015 +Stephen Wollman,Numerical approximation of the Vlasov-Poisson-Fokker-Planck system in two dimensions.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#WollmanO09,https://doi.org/10.1016/j.jcp.2009.05.027 +David Radice,A new spherical harmonics scheme for multi-dimensional radiation transport I. Static matter configurations.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#RadiceARO13,https://doi.org/10.1016/j.jcp.2013.01.048 +Haiyan Jiang,Boundary treatments in non-equilibrium Green's function (NEGF) methods for quantum transport in nano-MOSFETs.,2008,227,J. Comput. Physics,13,db/journals/jcphy/jcphy227.html#JiangSCZ08,https://doi.org/10.1016/j.jcp.2008.03.018 +Dongyang Zou,A shock-fitting technique for cell-centered finite volume methods on unstructured dynamic meshes.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#ZouXDL17,https://doi.org/10.1016/j.jcp.2017.05.047 +Hatem Touil,Tracking discontinuities in hyperbolic conservation laws with spectral accuracy.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#TouilHS07,https://doi.org/10.1016/j.jcp.2007.02.016 +Satoshi Ii,An interface capturing method with a continuous function: The THINC method with multi-dimensional reconstruction.,2012,231,J. Comput. Physics,5,db/journals/jcphy/jcphy231.html#IiSTTMX12,https://doi.org/10.1016/j.jcp.2011.11.038 +Todd T. Chisholm,A Jacobian-free Newton-Krylov algorithm for compressible turbulent fluid flows.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#ChisholmZ09,https://doi.org/10.1016/j.jcp.2009.02.004 +Liuyan Lu,An improved algorithm for in situ adaptive tabulation.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#LuP09,https://doi.org/10.1016/j.jcp.2008.09.015 +Avinaash Murali,A new mixed basis Navier-Stokes formulation for incompressible flows over complex geometries.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#MuraliR16,https://doi.org/10.1016/j.jcp.2015.11.065 +P. Marti,A fully spectral methodology for magnetohydrodynamic calculations in a whole sphere.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#MartiJ16,https://doi.org/10.1016/j.jcp.2015.10.056 +R. N. Simpson,An isogeometric boundary element method for electromagnetic scattering with compatible B-spline discretizations.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#SimpsonLVE18,https://doi.org/10.1016/j.jcp.2018.01.025 +Jeffrey W. Banks,On sub-linear convergence for linearly degenerate waves in capturing schemes.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#BanksAR08,https://doi.org/10.1016/j.jcp.2008.04.002 +Xuan Zhao,Second-order approximations for variable order fractional derivatives: Algorithms and applications.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#ZhaoSK15,https://doi.org/10.1016/j.jcp.2014.08.015 +V. A. Semiletov,CABARET scheme with conservation-flux asynchronous time-stepping for nonlinear aeroacoustics problems.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#SemiletovK13,https://doi.org/10.1016/j.jcp.2013.07.008 +Sophie Loire,Spatial filter averaging approach of probabilistic method to linear second-order partial differential equations of the parabolic type.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#LoireM13,https://doi.org/10.1016/j.jcp.2012.08.035 +Mads Mølholm Hejlesen,A high order solver for the unbounded Poisson equation.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#HejlesenRCW13,https://doi.org/10.1016/j.jcp.2013.05.050 +Jin Seok Park,Hierarchical multi-dimensional limiting strategy for correction procedure via reconstruction.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#ParkK16,https://doi.org/10.1016/j.jcp.2015.12.020 +E. Kansa,Discrete Calderon's projections on parallelepipeds and their application to computing exterior magnetic fields for FRC plasmas.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#KansaST13,https://doi.org/10.1016/j.jcp.2012.09.033 +Pascal Beckstein,Efficient solution of 3D electromagnetic eddy-current problems within the finite volume framework of OpenFOAM.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#BecksteinGV17,https://doi.org/10.1016/j.jcp.2017.05.005 +George I. Bell,Simulating the dynamical friction force on ions due to a briefly co-propagating electron beam.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#BellBFSBSAMBL08,https://doi.org/10.1016/j.jcp.2008.06.019 +S. Ndanou,Multi-solid and multi-fluid diffuse interface model: Applications to dynamic fracture and fragmentation.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#NdanouFG15,https://doi.org/10.1016/j.jcp.2015.04.024 +Eric T. Chung,Fast online generalized multiscale finite element method using constraint energy minimization.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#ChungEL18,https://doi.org/10.1016/j.jcp.2017.11.022 +Timur Z. Ismagilov,Second order finite volume scheme for Maxwell's equations with discontinuous electromagnetic properties on unstructured meshes.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#Ismagilov15,https://doi.org/10.1016/j.jcp.2014.11.001 +Jacob Bedrossian,A second order virtual node method for elliptic problems with interfaces and irregular domains.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#BedrossianBZST10,https://doi.org/10.1016/j.jcp.2010.05.002 +Song Li,A fast algorithm for sparse matrix computations related to inversion.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#LiWD13,https://doi.org/10.1016/j.jcp.2013.01.036 +Zhaoyuan Wang,An improved particle correction procedure for the particle level set method.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#WangYS09,https://doi.org/10.1016/j.jcp.2009.04.045 +François Monard,An accurate solver for forward and inverse transport.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#MonardB10,https://doi.org/10.1016/j.jcp.2010.03.016 +A. H. Bhrawy,A spectral tau algorithm based on Jacobi operational matrix for numerical solution of time fractional diffusion-wave equations.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#BhrawyDBE15,https://doi.org/10.1016/j.jcp.2014.03.039 +Ming-Jiu Ni,A current density conservative scheme for incompressible MHD flows at a low magnetic Reynolds number. Part I: On a rectangular collocated grid system.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#NiMMHA07,https://doi.org/10.1016/j.jcp.2007.07.025 +Xiaoyi Li,Front tracking simulation of deformation and buckling instability of a liquid capsule enclosed by an elastic membrane.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#LiS08,https://doi.org/10.1016/j.jcp.2008.01.034 +Jae Wook Kim,Optimised boundary compact finite difference schemes for computational aeroacoustics.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#Kim07,https://doi.org/10.1016/j.jcp.2007.01.008 +Ryosuke Akoh,A multi-moment finite volume formulation for shallow water equations on unstructured mesh.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#AkohIX10,https://doi.org/10.1016/j.jcp.2010.02.023 +B. Dorschner,Grad's approximation for moving and stationary walls in entropic lattice Boltzmann simulations.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#DorschnerCBK15,https://doi.org/10.1016/j.jcp.2015.04.017 +Zhenlin Guo,A numerical method for the quasi-incompressible Cahn-Hilliard-Navier-Stokes equations for variable density flows with a discrete energy law.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#GuoLL14,https://doi.org/10.1016/j.jcp.2014.07.038 +Zhi Zhao,Preconditioned iterative methods for space-time fractional advection-diffusion equations.,2016,319,J. Comput. Physics,,db/journals/jcphy/jcphy319.html#ZhaoJL16,https://doi.org/10.1016/j.jcp.2016.05.021 +David J. Chappell,Solving the stationary Liouville equation via a boundary element method.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#ChappellT13,https://doi.org/10.1016/j.jcp.2012.10.002 +Yayun Wang,Fully-resolved simulation of particulate flows with particles-fluid heat transfer.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#WangSP17,https://doi.org/10.1016/j.jcp.2017.07.044 +Thi Hieu Luu,A new method for reconstruction of cross-sections using Tucker decomposition.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#LuuMGG17,https://doi.org/10.1016/j.jcp.2017.05.019 +Ming-Jiu Ni,Consistent projection methods for variable density incompressible Navier-Stokes equations with continuous surface forces on a rectangular collocated mesh.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#Ni09,https://doi.org/10.1016/j.jcp.2009.06.004 +Shawn W. Walker,Shape optimization of peristaltic pumping.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#WalkerS10,https://doi.org/10.1016/j.jcp.2009.10.030 +Zhi-Hui Li,Second-order two-scale finite element algorithm for dynamic thermo-mechanical coupling problem in symmetric structure.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#LiMC16,https://doi.org/10.1016/j.jcp.2016.03.034 +José Miguel Reynolds-Barredo,An analytic model for the convergence of turbulent simulations time-parallelized via the parareal algorithm.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#Reynolds-BarredoNS13,https://doi.org/10.1016/j.jcp.2013.08.028 +Daniel Appelö,Numerical methods for solid mechanics on overlapping grids: Linear elasticity.,2012,231,J. Comput. Physics,18,db/journals/jcphy/jcphy231.html#AppeloBHS12,https://doi.org/10.1016/j.jcp.2012.04.008 +Elena V. Akhmatskaya,"Erratum to ""A comparison of generalized hybrid Monte Carlo methods with and without momentum flip"" [J. Comput. Phys 228 (2009) 2256-2265].",2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#AkhmatskayaBR09a,https://doi.org/10.1016/j.jcp.2009.06.039 +Roger A. Sauer,A stabilized finite element formulation for liquid shells and its application to lipid bilayers.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#SauerDMS17,https://doi.org/10.1016/j.jcp.2016.11.004 +T. T. Nguyen,Solution of population balance equations in applications with fine particles: Mathematical modeling and numerical schemes.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#NguyenLFM16,https://doi.org/10.1016/j.jcp.2016.08.017 +Ossian O'Reilly,Energy stable and high-order-accurate finite difference methods on staggered grids.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#OReillyLDN17,https://doi.org/10.1016/j.jcp.2017.06.030 +Ratnesh K. Shukla,Isotropic finite volume discretization.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#ShuklaG14,https://doi.org/10.1016/j.jcp.2014.07.025 +D. Long,Numerical wave propagation on non-uniform one-dimensional staggered grids.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#LongT11,https://doi.org/10.1016/j.jcp.2010.12.040 +Christopher J. Vogl,The Curvature-Augmented Closest Point method with vesicle inextensibility application.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#Vogl17,https://doi.org/10.1016/j.jcp.2017.06.004 +Mingrong Cui,Compact exponential scheme for the time fractional convection-diffusion reaction equation with variable coefficients.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#Cui15,https://doi.org/10.1016/j.jcp.2014.09.012 +Changying Liu,Symmetric and arbitrarily high-order Birkhoff-Hermite time integrators and their long-time behaviour for solving nonlinear Klein-Gordon equations.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#LiuIW18,https://doi.org/10.1016/j.jcp.2017.10.057 +Alex J. Yuffa,Object-oriented electrodynamic S-matrix code with modern applications.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#YuffaS12,https://doi.org/10.1016/j.jcp.2012.03.018 +Ali Q. Raeini,Modelling two-phase flow in porous media at the pore scale using the volume-of-fluid method.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#RaeiniBB12,https://doi.org/10.1016/j.jcp.2012.04.011 +Tapan K. Sengupta,Error dynamics of diffusion equation: Effects of numerical diffusion and dispersive diffusion.,2014,266,J. Comput. Physics,,db/journals/jcphy/jcphy266.html#SenguptaB14,https://doi.org/10.1016/j.jcp.2014.02.021 +Collin S. Meierbachtol,An electrostatic Particle-In-Cell code on multi-block structured meshes.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#MeierbachtolSDV17,https://doi.org/10.1016/j.jcp.2017.09.016 +Scott J. Reckinger,Comprehensive numerical methodology for direct numerical simulations of compressible Rayleigh-Taylor instability.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#ReckingerLV16,https://doi.org/10.1016/j.jcp.2015.11.002 +Tetsuro Tsuji,Moving boundary problems for a rarefied gas: Spatially one-dimensional case.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#TsujiA13,https://doi.org/10.1016/j.jcp.2013.05.017 +Magnus Vartdal,An oriented particle level set method based on surface coordinates.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#VartdalB13,https://doi.org/10.1016/j.jcp.2013.05.044 +Marc T. Henry de Frahan,A new limiting procedure for discontinuous Galerkin methods applied to compressible multiphase flows with shocks and interfaces.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#FrahanVJ15,https://doi.org/10.1016/j.jcp.2014.09.030 +Grady B. Wright,Scattered node compact finite difference-type formulas generated from radial basis functions.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#WrightF06,https://doi.org/10.1016/j.jcp.2005.05.030 +Olivier Czarny,Bézier surfaces and finite elements for MHD simulations.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#CzarnyH08,https://doi.org/10.1016/j.jcp.2008.04.001 +Yong Zhang,On the computation of ground state and dynamics of Schrödinger-Poisson-Slater system.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#ZhangD11,https://doi.org/10.1016/j.jcp.2010.12.045 +Pengde Wang,An energy conservative difference scheme for the nonlinear fractional Schrödinger equations.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#WangH15,https://doi.org/10.1016/j.jcp.2014.03.037 +Martin Dohlus,Explicit TE/TM scheme for particle beam simulations.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#DohlusZ09,https://doi.org/10.1016/j.jcp.2008.12.023 +Peter G. Maginot,High-order solution methods for grey discrete ordinates thermal radiative transfer.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#MaginotRM16,https://doi.org/10.1016/j.jcp.2016.09.055 +Kuan-Yu Chen,A conservative scheme for solving coupled surface-bulk convection-diffusion equations with an application to interfacial flows with soluble surfactant.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#ChenL14,https://doi.org/10.1016/j.jcp.2013.10.003 +Garth N. Wells,A discontinuous Galerkin method for the Cahn-Hilliard equation.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#WellsKG06,https://doi.org/10.1016/j.jcp.2006.03.010 +Hyoungsu Baek,Sub-iteration leads to accuracy and stability enhancements of semi-implicit schemes for the Navier-Stokes equations.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#BaekK11,https://doi.org/10.1016/j.jcp.2011.01.011 +Michel Bergmann,Enablers for robust POD models.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#BergmannBI09,https://doi.org/10.1016/j.jcp.2008.09.024 +Jon Wilkening,Accurate spectral numerical schemes for kinetic equations with energy diffusion.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#WilkeningCL15,https://doi.org/10.1016/j.jcp.2015.03.039 +Minwei Gong,Coupled fluid-structure solver: The case of shock wave impact on monolithic and composite material plates.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#GongA09,https://doi.org/10.1016/j.jcp.2009.03.009 +Petar Liovic,Efficient simulation of surface tension-dominated flows through enhanced interface geometry interrogation.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#LiovicFRM10,https://doi.org/10.1016/j.jcp.2010.06.034 +Mircea Grigoriu,A method for solving stochastic equations by reduced order models and local approximations.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#Grigoriu12,https://doi.org/10.1016/j.jcp.2012.06.013 +Haysam Telib,The effect of shocks on second order sensitivities for the quasi-one-dimensional Euler equations.,2011,230,J. Comput. Physics,23,db/journals/jcphy/jcphy230.html#TelibAI11,https://doi.org/10.1016/j.jcp.2011.08.010 +Maojun Li,High order well-balanced CDG-FE methods for shallow water waves by a Green-Naghdi model.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#LiGLX14,https://doi.org/10.1016/j.jcp.2013.09.050 +Alfeus Sunarso,GPU-accelerated molecular dynamics simulation for study of liquid crystalline flows.,2010,229,J. Comput. Physics,15,db/journals/jcphy/jcphy229.html#SunarsoTC10,https://doi.org/10.1016/j.jcp.2010.03.047 +Gaddiel Ouaknin,Self-consistent field theory simulations of polymers on arbitrary domains.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#OuakninLDFG16,https://doi.org/10.1016/j.jcp.2016.09.021 +E. Momox,Solution of the 1D Schrödinger equation in semiconductor heterostructures using the immersed interface method.,2012,231,J. Comput. Physics,18,db/journals/jcphy/jcphy231.html#MomoxZB12,https://doi.org/10.1016/j.jcp.2012.05.017 +Zedong Wu,A highly accurate finite-difference method with minimum dispersion error for solving the Helmholtz equation.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#WuA18,https://doi.org/10.1016/j.jcp.2018.03.046 +Esteban Ferrer,An interior penalty stabilised incompressible discontinuous Galerkin-Fourier solver for implicit large eddy simulations.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#Ferrer17,https://doi.org/10.1016/j.jcp.2017.07.049 +I. Yu. Gejadze,On optimal solution error covariances in variational data assimilation problems.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#GejadzeDS10,https://doi.org/10.1016/j.jcp.2009.11.028 +Qian-Yong Chen,Enriched multi-point flux approximation for general grids.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#ChenWYM08,https://doi.org/10.1016/j.jcp.2007.09.021 +Seakweng Vong,A compact difference scheme for a two dimensional fractional Klein-Gordon equation with Neumann boundary conditions.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#VongW14,https://doi.org/10.1016/j.jcp.2014.06.022 +Felix Rieper,On the dissipation mechanism of upwind-schemes in the low Mach number regime: A comparison between Roe and HLL.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#Rieper10,https://doi.org/10.1016/j.jcp.2009.09.043 +E. J. Caramana,The implementation of slide lines as a combined force and velocity boundary condition.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#Caramana09,https://doi.org/10.1016/j.jcp.2009.02.029 +Su Zhao,Operator splitting implicit integration factor methods for stiff reaction-diffusion-advection systems.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#ZhaoOLZN11,https://doi.org/10.1016/j.jcp.2011.04.009 +Arnab Kumar De,Analysis of a new high resolution upwind compact scheme.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#DeE06,https://doi.org/10.1016/j.jcp.2006.02.020 +Nan Chen 0004,Efficient statistically accurate algorithms for the Fokker-Planck equation in large dimensions.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#ChenM18,https://doi.org/10.1016/j.jcp.2017.10.022 +Ramakrishnan Thirumalaisamy,Towards an improved conservative approach for simulating electrohydrodynamic two-phase flows using volume-of-fluid.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#ThirumalaisamyN18,https://doi.org/10.1016/j.jcp.2018.04.024 +Haihu Liu,Modelling thermocapillary migration of a microfluidic droplet on a solid surface.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#LiuZ15,https://doi.org/10.1016/j.jcp.2014.09.015 +Ondrej Polívka,Compositional modeling in porous media using constant volume flash and flux computation without the need for phase identification.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#PolivkaM14,https://doi.org/10.1016/j.jcp.2014.04.029 +Katherine J. Evans,Development of a 2-D algorithm to simulate convection and phase transition efficiently.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#EvansKP06,https://doi.org/10.1016/j.jcp.2006.03.025 +Jerrad Hampton,Practical error bounds for a non-intrusive bi-fidelity approach to parametric/stochastic model reduction.,2018,368,J. Comput. Physics,,db/journals/jcphy/jcphy368.html#HamptonFND18,https://doi.org/10.1016/j.jcp.2018.04.015 +H. V. Moradi,A method for analysis of stability of flows in ribbed annuli.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#MoradiF16,https://doi.org/10.1016/j.jcp.2016.02.069 +Min Sup Hur,Test particle method for incorporation of the kinetic effects into the envelope simulations of Raman backscattering.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#HurS07,https://doi.org/10.1016/j.jcp.2007.06.032 +Elliott S. Wise,Bandwidth-based mesh adaptation in multiple dimensions.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#WiseCT18,https://doi.org/10.1016/j.jcp.2018.06.009 +Yalchin Efendiev,Multiscale finite element methods for high-contrast problems using local spectral basis functions.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#EfendievGW11,https://doi.org/10.1016/j.jcp.2010.09.026 +Mads Mølholm Hejlesen,A multiresolution method for solving the Poisson equation using high order regularization.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#HejlesenW16,https://doi.org/10.1016/j.jcp.2016.08.053 +M. Shadi Mohamed,An enriched finite element model with q-refinement for radiative boundary layers in glass cooling.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#MohamedSTL14,https://doi.org/10.1016/j.jcp.2013.11.005 +Andrew J. Hesford,The fast multipole method and Fourier convolution for the solution of acoustic scattering on regular volumetric grids.,2010,229,J. Comput. Physics,21,db/journals/jcphy/jcphy229.html#HesfordW10,https://doi.org/10.1016/j.jcp.2010.07.025 +Robert M. Kirby,Towards stable coupling methods for high-order discretization of fluid-structure interaction: Algorithms and observations.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#KirbyYK07,https://doi.org/10.1016/j.jcp.2006.09.015 +Rodney O. Fox,A quadrature-based third-order moment method for dilute gas-particle flows.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#Fox08,https://doi.org/10.1016/j.jcp.2008.03.014 +Jinfeng Jiang,A dissipation-rate reserving DG method for wave catching-up phenomena in a nonlinearly elastic composite bar.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#JiangXD14,https://doi.org/10.1016/j.jcp.2013.10.051 +J. D. Pearce,A pseudo-spectral algorithm and test cases for the numerical solution of the two-dimensional rotating Green-Naghdi shallow water equations.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#PearceE10,https://doi.org/10.1016/j.jcp.2010.06.009 +Phillip Colella,Controlling self-force errors at refinement boundaries for AMR-PIC.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#ColellaN10,https://doi.org/10.1016/j.jcp.2009.07.004 +Björn Sjögreen,"Corrigendum to ""On High Order Finite-Difference Metric Discretizations Satisfying GCL on Moving and Deforming Grids"" [J. Comput. Phys.",2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#SjogreenYV17, +Jinsong Hua,Numerical simulation of 3D bubbles rising in viscous liquids using a front tracking method.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#HuaSL08,https://doi.org/10.1016/j.jcp.2007.12.002 +Bao Wang,Object-oriented persistent homology.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#WangW16,https://doi.org/10.1016/j.jcp.2015.10.036 +Guangzhao Zhou,Simplification of the flux function for a high-order gas-kinetic evolution model.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#ZhouXL17,https://doi.org/10.1016/j.jcp.2017.03.023 +Gabriel Stoltz,Path sampling with stochastic dynamics: Some new algorithms.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#Stoltz07,https://doi.org/10.1016/j.jcp.2006.12.006 +Hilary Weller,Runge-Kutta IMEX schemes for the Horizontally Explicit/Vertically Implicit (HEVI) solution of wave equations.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#WellerLW13,https://doi.org/10.1016/j.jcp.2013.06.025 +Yun Yang,An upwind CESE scheme for 2D and 3D MHD numerical simulation in general curvilinear coordinates.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#YangFJ18,https://doi.org/10.1016/j.jcp.2018.05.014 +J. Schulze,Iterative optimization based on an objective functional in frequency-space with application to jet-noise cancellation.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#SchulzeSS11,https://doi.org/10.1016/j.jcp.2011.04.014 +Mehdi Ghommem,Mode decomposition methods for flows in high-contrast porous media. A global approach.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#GhommemCE14,https://doi.org/10.1016/j.jcp.2013.09.031 +Santos B. Yuste,Weighted average finite difference methods for fractional diffusion equations.,2006,216,J. Comput. Physics,1,db/journals/jcphy/jcphy216.html#Yuste06,https://doi.org/10.1016/j.jcp.2005.12.006 +Giorgio Rosatti,Modelling the transition between fixed and mobile bed conditions in two-phase free-surface flows: The Composite Riemann Problem and its numerical solution.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#RosattiZ15,https://doi.org/10.1016/j.jcp.2015.01.011 +Ruben Specogna,A discrete geometric approach to solving time independent Schrödinger equation.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#SpecognaT11,https://doi.org/10.1016/j.jcp.2010.11.007 +Josselin Garnier,A two-way paraxial system for simulation of wave backscattering by a random medium.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#GarnierS09,https://doi.org/10.1016/j.jcp.2009.01.022 +Yunkai Zhou,A block Chebyshev-Davidson method with inner-outer restart for large eigenvalue problems.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#Zhou10,https://doi.org/10.1016/j.jcp.2010.08.032 +Zhicheng Yang,A direct Eulerian GRP scheme for relativistic hydrodynamics: Two-dimensional case.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#YangT12,https://doi.org/10.1016/j.jcp.2011.11.026 +Hossein Pourmatin,Multiscale real-space quantum-mechanical tight-binding calculations of electronic structure in crystals with defects using perfectly matched layers.,2016,323,J. Comput. Physics,,db/journals/jcphy/jcphy323.html#PourmatinD16,https://doi.org/10.1016/j.jcp.2016.07.024 +D. Xiao,A non-intrusive reduced-order model for compressible fluid and fractured solid coupling and its application to blasting.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#XiaoYFXPNC17,https://doi.org/10.1016/j.jcp.2016.10.068 +Cheng Peng,A hydrodynamically-consistent MRT lattice Boltzmann model on a 2D rectangular grid.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#PengMGW16,https://doi.org/10.1016/j.jcp.2016.09.031 +Hailiang Liu,Entropy/energy stable schemes for evolutionary dispersal models.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#LiuY14,https://doi.org/10.1016/j.jcp.2013.08.032 +Sergio Pirozzoli,Performance analysis and optimization of finite-difference schemes for wave propagation problems.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#Pirozzoli07,https://doi.org/10.1016/j.jcp.2006.08.006 +Kyle E. Niemeyer,Accelerating moderately stiff chemical kinetics in reactive-flow simulations using GPUs.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#NiemeyerS14,https://doi.org/10.1016/j.jcp.2013.09.025 +Christoph Börgers,An angular multigrid method for computing mono-energetic particle beams in Flatland.,2010,229,J. Comput. Physics,8,db/journals/jcphy/jcphy229.html#BorgersM10,https://doi.org/10.1016/j.jcp.2009.12.023 +Hae-Soo Oh,The generalized product partition of unity for the meshless methods.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#OhJW10,https://doi.org/10.1016/j.jcp.2009.10.047 +Yaman Güçlü,Arbitrarily high order Convected Scheme solution of the Vlasov-Poisson system.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#GucluCH14,https://doi.org/10.1016/j.jcp.2014.04.003 +Inga Berre,Identification of three-dimensional electric conductivity changes from time-lapse electromagnetic observations.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#BerreLM11,https://doi.org/10.1016/j.jcp.2011.02.015 +Manas Rachh,Fast algorithms for Quadrature by Expansion I: Globally valid expansions.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#RachhKO17,https://doi.org/10.1016/j.jcp.2017.04.062 +Stéphane Dellacherie,Analysis of Godunov type schemes applied to the compressible Euler system at low Mach number.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#Dellacherie10,https://doi.org/10.1016/j.jcp.2009.09.044 +Javier Murillo,Improved Riemann solvers for complex transport in two-dimensional unsteady shallow flow.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#MurilloG11,https://doi.org/10.1016/j.jcp.2011.05.022 +Zhennan Zhou,Numerical approximation of the Schrödinger equation with the electromagnetic field by the Hagedorn wave packets.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#Zhou14a,https://doi.org/10.1016/j.jcp.2014.04.041 +Norhashidah Hj. Mohd. Ali,New explicit group iterative methods in the solution of two dimensional hyperbolic equations.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#AliK12,https://doi.org/10.1016/j.jcp.2012.06.025 +Guillaume Chiavassa,Time domain numerical modeling of wave propagation in 2D heterogeneous porous media.,2011,230,J. Comput. Physics,13,db/journals/jcphy/jcphy230.html#ChiavassaL11,https://doi.org/10.1016/j.jcp.2011.03.030 +G. Bornia,On the properties and limitations of the height function method in two-dimensional Cartesian geometry.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#BorniaCMSZ11,https://doi.org/10.1016/j.jcp.2010.11.029 +Jinhong Jia,A preconditioned fast finite volume scheme for a fractional differential equation discretized on a locally refined composite mesh.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#JiaW15a,https://doi.org/10.1016/j.jcp.2015.06.028 +Bram van Es,Finite-difference schemes for anisotropic diffusion.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#EsKB14,https://doi.org/10.1016/j.jcp.2014.04.046 +Y. Kawazura,A hybrid gyrokinetic ion and isothermal electron fluid code for astrophysical plasma.,2018,360,J. Comput. Physics,,db/journals/jcphy/jcphy360.html#KawazuraB18,https://doi.org/10.1016/j.jcp.2018.01.026 +L. Chiron,Coupled SPH-FV method with net vorticity and mass transfer.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#ChironMMT18,https://doi.org/10.1016/j.jcp.2018.02.052 +Eric Cancès,A perturbation-method-based post-processing for the planewave discretization of Kohn-Sham models.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#CancesDMSV16,https://doi.org/10.1016/j.jcp.2015.12.012 +K. Parand,Rational Legendre pseudospectral approach for solving nonlinear differential equations of Lane-Emden type.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#ParandSD09,https://doi.org/10.1016/j.jcp.2009.08.029 +Jianbin Yang,B-spline tight frame based force matching method.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#YangZTLS18,https://doi.org/10.1016/j.jcp.2018.02.024 +Philip T. Barton,An Eulerian method for multi-component problems in non-linear elasticity with sliding interfaces.,2010,229,J. Comput. Physics,15,db/journals/jcphy/jcphy229.html#BartonD10,https://doi.org/10.1016/j.jcp.2010.04.012 +Jorge Eduardo Macías-Díaz,A dynamically consistent method to solve nonlinear multidimensional advection-reaction equations with fractional diffusion.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#Macias-Diaz18,https://doi.org/10.1016/j.jcp.2018.03.047 +Maria Adela Puscas,A time semi-implicit scheme for the energy-balanced coupling of a shocked fluid flow with a deformable structure.,2015,296,J. Comput. Physics,,db/journals/jcphy/jcphy296.html#PuscasMETMD15,https://doi.org/10.1016/j.jcp.2015.04.012 +Sashank Srinivasan,A positivity-preserving high order discontinuous Galerkin scheme for convection-diffusion equations.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#SrinivasanPZ18,https://doi.org/10.1016/j.jcp.2018.04.002 +Mingyu Zhang,Simulation of surface tension in 2D and 3D with smoothed particle hydrodynamics method.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#Zhang10,https://doi.org/10.1016/j.jcp.2010.06.010 +Bobby Philip,A parallel multi-domain solution methodology applied to nonlinear thermal transport problems in nuclear fuel pins.,2015,286,J. Comput. Physics,,db/journals/jcphy/jcphy286.html#PhilipBAHSCD15,https://doi.org/10.1016/j.jcp.2015.01.029 +Jiang Wan,A probabilistic graphical model approach to stochastic multiscale partial differential equations.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#WanZ13,https://doi.org/10.1016/j.jcp.2013.05.016 +Jonathan Weare,Particle filtering with path sampling and an application to a bimodal ocean current model.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#Weare09,https://doi.org/10.1016/j.jcp.2009.02.033 +Shucheng Pan,A conservative interface-interaction method for compressible multi-material flows.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#PanHHA18,https://doi.org/10.1016/j.jcp.2018.02.007 +Helene Barucq,New absorbing layers conditions for short water waves.,2010,229,J. Comput. Physics,1,db/journals/jcphy/jcphy229.html#BarucqDT10,https://doi.org/10.1016/j.jcp.2009.08.033 +Guosheng Fu,A new troubled-cell indicator for discontinuous Galerkin methods for hyperbolic conservation laws.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#FuS17,https://doi.org/10.1016/j.jcp.2017.06.046 +Takashi Shiroto,Structure-preserving operators for thermal-nonequilibrium hydrodynamics.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#ShirotoKO18,https://doi.org/10.1016/j.jcp.2018.03.008 +A. Fortin,A more efficient anisotropic mesh adaptation for the computation of Lagrangian coherent structures.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#FortinBG15,https://doi.org/10.1016/j.jcp.2015.01.010 +Anurag Dipankar,A new phase-screen method for electromagnetic wave propagation in turbulent flows using large-eddy simulation.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#DipankarS09,https://doi.org/10.1016/j.jcp.2009.07.011 +X. Zeng,A frame-invariant vector limiter for flux corrected nodal remap in arbitrary Lagrangian-Eulerian flow computations.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#ZengS14,https://doi.org/10.1016/j.jcp.2014.03.054 +M. J. Zimon,An evaluation of noise reduction algorithms for particle-based fluid simulations in multi-scale applications.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#ZimonPEBBGR16,https://doi.org/10.1016/j.jcp.2016.08.021 +Amir Nejat,A high-order accurate unstructured finite volume Newton-Krylov algorithm for inviscid compressible flows.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#NejatO08a,https://doi.org/10.1016/j.jcp.2007.11.011 +Jeffery D. Densmore,A hybrid transport-diffusion Monte Carlo method for frequency-dependent radiative-transfer simulations.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#DensmoreTU12,https://doi.org/10.1016/j.jcp.2012.06.020 +Amit Singh 0006,Thermal parameter identification for non-Fourier heat transfer from molecular dynamics.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#SinghT15,https://doi.org/10.1016/j.jcp.2015.07.008 +Kazuki Maeda,Eulerian-Lagrangian method for simulation of cloud cavitation.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#MaedaC18,https://doi.org/10.1016/j.jcp.2018.05.029 +Jing Li,An efficient surrogate-based method for computing rare failure probability.,2011,230,J. Comput. Physics,24,db/journals/jcphy/jcphy230.html#LiLX11a,https://doi.org/10.1016/j.jcp.2011.08.008 +Shankhadeep Das,A coupled ordinates method for solution acceleration of rarefied gas dynamics simulations.,2015,289,J. Comput. Physics,,db/journals/jcphy/jcphy289.html#DasMAM15,https://doi.org/10.1016/j.jcp.2015.02.035 +W. Steven Rosenthal,Displacement data assimilation.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#RosenthalVMR17,https://doi.org/10.1016/j.jcp.2016.10.025 +Na Zhang,Locally conservative Galerkin and finite volume methods for two-phase flow in porous media.,2013,254,J. Comput. Physics,,db/journals/jcphy/jcphy254.html#ZhangHY13,https://doi.org/10.1016/j.jcp.2013.07.025 +Aditya Konduri,High-order asynchrony-tolerant finite difference schemes for partial differential equations.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#KonduriD17,https://doi.org/10.1016/j.jcp.2017.08.037 +Felix Carbonell,Numerical simulation of nonlinear dynamical systems driven by commutative noise.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#CarbonellBJC07,https://doi.org/10.1016/j.jcp.2007.05.024 +Ofer Markish,Cylindrical FDTD grid-compatible Green's functions.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#MarkishK13,https://doi.org/10.1016/j.jcp.2012.12.011 +Robert Lipton,Uncertain loading and quantifying maximum energy concentration within composite structures.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#LiptonSS16,https://doi.org/10.1016/j.jcp.2016.07.010 +Christiaan C. Stolk,A dispersion minimizing scheme for the 3-D Helmholtz equation based on ray theory.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#Stolk16,https://doi.org/10.1016/j.jcp.2016.03.023 +Qiong Zheng,Second-order Poisson-Nernst-Planck solver for ion transport.,2011,230,J. Comput. Physics,13,db/journals/jcphy/jcphy230.html#ZhengCW11,https://doi.org/10.1016/j.jcp.2011.03.020 +K. Gudmundsson,Improved procedure for the computation of Lamb's coefficients in the physalis method for particle simulation.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#GudmundssonP13,https://doi.org/10.1016/j.jcp.2012.08.049 +Y. Li,Optimal fourth-order staggered-grid finite-difference scheme for 3D frequency-domain viscoelastic wave modeling.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#LiHMB16,https://doi.org/10.1016/j.jcp.2016.06.018 +Antoine Lemoine,Moment-of-fluid analytic reconstruction on 2D Cartesian grids.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#LemoineGB17,https://doi.org/10.1016/j.jcp.2016.10.013 +Travis C. Fisher,Boundary closures for fourth-order energy stable weighted essentially non-oscillatory finite-difference schemes.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#FisherCYF11,https://doi.org/10.1016/j.jcp.2011.01.043 +Shravan K. Veerapaneni,A fast algorithm for simulating vesicle flows in three dimensions.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#VeerapaneniRBZ11,https://doi.org/10.1016/j.jcp.2011.03.045 +Paul Bolton,A least-squares finite element method for the Navier-Stokes equations.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#BoltonT06,https://doi.org/10.1016/j.jcp.2005.08.015 +Roberto Trozzo,Axisymmetric Boundary Element Method for vesicles in a capillary.,2015,289,J. Comput. Physics,,db/journals/jcphy/jcphy289.html#TrozzoBLJ15,https://doi.org/10.1016/j.jcp.2015.02.022 +Stephen O'Sullivan,A class of high-order Runge-Kutta-Chebyshev stability polynomials.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#OSullivan15,https://doi.org/10.1016/j.jcp.2015.07.050 +Guillaume Jouvet,Numerical simulation of Rhonegletscher from 1874 to 2100.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#JouvetHBPR09,https://doi.org/10.1016/j.jcp.2009.05.033 +Xiaoliang Wan,A minimum action method for small random perturbations of two-dimensional parallel shear flows.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#Wan13,https://doi.org/10.1016/j.jcp.2012.10.006 +A. Veeraragavan,Use of the method of manufactured solutions for the verification of conjugate heat transfer solvers.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#VeeraragavanBG16,https://doi.org/10.1016/j.jcp.2015.12.004 +Oren Peles,Acceleration methods for multi-physics compressible flow.,2018,358,J. Comput. Physics,,db/journals/jcphy/jcphy358.html#PelesT18,https://doi.org/10.1016/j.jcp.2017.10.011 +Robert R. Nourgaliev,Adaptive characteristics-based matching for compressible multifluid dynamics.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#NourgalievDT06,https://doi.org/10.1016/j.jcp.2005.08.028 +Yang Chen,Electromagnetic gyrokinetic 8*f particle-in-cell turbulence simulation with realistic equilibrium profiles and geometry.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#ChenP07,https://doi.org/10.1016/j.jcp.2006.05.028 +Yuanxun Bao,A Gaussian-like immersed-boundary kernel with three continuous derivatives and improved translational invariance.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#BaoKP16,https://doi.org/10.1016/j.jcp.2016.04.024 +Simon Hill,Boundedness-preserving implicit correction of mesh-induced errors for VOF based heat and mass transfer.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#HillDAKBM18,https://doi.org/10.1016/j.jcp.2017.09.027 +Zheming Zheng,Runge-Kutta-Chebyshev projection method.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#ZhengP06,https://doi.org/10.1016/j.jcp.2006.07.005 +Colm Clancy,A class of semi-implicit predictor-corrector schemes for the time integration of atmospheric models.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#ClancyP13,https://doi.org/10.1016/j.jcp.2012.08.032 +Jinghua Wang,A fully nonlinear numerical method for modeling wave-current interactions.,2018,369,J. Comput. Physics,,db/journals/jcphy/jcphy369.html#WangMY18,https://doi.org/10.1016/j.jcp.2018.04.057 +Lin Fu,A novel partitioning method for block-structured adaptive meshes.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#FuLHA17,https://doi.org/10.1016/j.jcp.2016.11.016 +David P. Starinshak,A subzone reconstruction algorithm for efficient staggered compatible remapping.,2015,296,J. Comput. Physics,,db/journals/jcphy/jcphy296.html#StarinshakO15,https://doi.org/10.1016/j.jcp.2015.04.046 +Keiichi Kitamura,Towards shock-stable and accurate hypersonic heating computations: A new pressure flux for AUSM-family schemes.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#KitamuraS13,https://doi.org/10.1016/j.jcp.2013.02.046 +Lun Yang,A completely iterative method for the infinite domain electrostatic problem with nonlinear dielectric media.,2011,230,J. Comput. Physics,21,db/journals/jcphy/jcphy230.html#YangD11,https://doi.org/10.1016/j.jcp.2011.07.001 +Aaron Towne,One-way spatial integration of hyperbolic equations.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#TowneC15,https://doi.org/10.1016/j.jcp.2015.08.015 +Lei Wu 0003,Deterministic numerical solutions of the Boltzmann equation using the fast spectral method.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#WuWSRZ13,https://doi.org/10.1016/j.jcp.2013.05.003 +M. Meyer,A conservative immersed interface method for Large-Eddy Simulation of incompressible flows.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#MeyerDHHA10,https://doi.org/10.1016/j.jcp.2010.04.040 +Luca Magri,Stability analysis of thermo-acoustic nonlinear eigenproblems in annular combustors. Part II. Uncertainty quantification.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#MagriBNJ16,https://doi.org/10.1016/j.jcp.2016.08.043 +Jeremy D. Scheff,A multiscale modeling approach to inflammation: A case study in human endotoxemia.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#ScheffMFACDDLVA13,https://doi.org/10.1016/j.jcp.2012.09.024 +Juliana Vianna Valério,Efficient computation of the spectrum of viscoelastic flows.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#ValerioCT09,https://doi.org/10.1016/j.jcp.2008.10.018 +Magnus Aa. Gjennestad,Computation of three-dimensional three-phase flow of carbon dioxide using a high-order WENO scheme.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#GjennestadGLJEH17,https://doi.org/10.1016/j.jcp.2017.07.016 +Weihua Geng,Multiscale molecular dynamics using the matched interface and boundary method.,2011,230,J. Comput. Physics,2,db/journals/jcphy/jcphy230.html#GengW11,https://doi.org/10.1016/j.jcp.2010.09.031 +Jeremy Shaw,Sensitivity of the model error parameter specification in weak-constraint four-dimensional variational data assimilation.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#ShawD17,https://doi.org/10.1016/j.jcp.2017.04.050 +Zhongying Chen,A dispersion minimizing finite difference scheme and preconditioned solver for the 3D Helmholtz equation.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#ChenCW12,https://doi.org/10.1016/j.jcp.2012.07.048 +Holger Schmitz,Darwin-Vlasov simulations of magnetised plasmas.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#SchmitzG06,https://doi.org/10.1016/j.jcp.2005.10.013 +Manfred Opper,An estimator for the relative entropy rate of path measures for stochastic differential equations.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#Opper17,https://doi.org/10.1016/j.jcp.2016.11.021 +Xavier Antoine,Phase reduction models for improving the accuracy of the finite element solution of time-harmonic scattering problems I: General approach and low-order models.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#AntoineG09,https://doi.org/10.1016/j.jcp.2009.01.008 +Jin-Hai Zhang,Optimized explicit finite-difference schemes for spatial derivatives using maximum norm.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#ZhangY13,https://doi.org/10.1016/j.jcp.2013.04.029 +Thomas Engels,Numerical simulation of fluid-structure interaction with the volume penalization method.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#EngelsKSS15,https://doi.org/10.1016/j.jcp.2014.10.005 +Yanyan He,Numerical strategy for model correction using physical constraints.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#HeX16,https://doi.org/10.1016/j.jcp.2016.02.054 +Taku Ohwada,Artificial compressibility method revisited: Asymptotic numerical method for incompressible Navier-Stokes equations.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#OhwadaA10,https://doi.org/10.1016/j.jcp.2009.11.003 +Chiara Sorgentone,A new high order energy and enstrophy conserving Arakawa-like Jacobian differential operator.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#SorgentoneCN15,https://doi.org/10.1016/j.jcp.2015.08.028 +Yushu Yang,Tau leaping of stiff stochastic chemical systems via local central limit approximation.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#YangR13,https://doi.org/10.1016/j.jcp.2013.02.011 +Jinhong Jia,Fast finite difference methods for space-fractional diffusion equations with fractional derivative boundary conditions.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#JiaW15,https://doi.org/10.1016/j.jcp.2014.08.021 +Haitian Lu,A Riemann problem based method for solving compressible and incompressible flows.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#LuZWWZ17,https://doi.org/10.1016/j.jcp.2016.10.047 +Jianliang Qian,Fast Gaussian wavepacket transforms and Gaussian beams for the Schrödinger equation.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#QianY10,https://doi.org/10.1016/j.jcp.2010.06.043 +Xue-song Li,The momentum interpolation method based on the time-marching algorithm for All-Speed flows.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#LiG10,https://doi.org/10.1016/j.jcp.2010.06.039 +Hoang-Ngan Nguyen,Computation of the singular and regularized image systems for doubly-periodic Stokes flow in the presence of a wall.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#NguyenL15,https://doi.org/10.1016/j.jcp.2015.05.030 +Charbel Farhat,A higher-order generalized ghost fluid method for the poor for the three-dimensional two-phase flow computation of underwater implosions.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#FarhatRS08,https://doi.org/10.1016/j.jcp.2008.04.032 +Chang Liu,A unified gas-kinetic scheme for continuum and rarefied flows IV: Full Boltzmann and model equations.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#LiuXSC16,https://doi.org/10.1016/j.jcp.2016.03.014 +Andreas Adelmann,A fast parallel Poisson solver on irregular domains applied to beam dynamics simulations.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#AdelmannAI10,https://doi.org/10.1016/j.jcp.2010.02.022 +Bin Xie,Toward efficient and accurate interface capturing on arbitrary hybrid unstructured grids: The THINC method with quadratic surface representation and Gaussian quadrature.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#XieX17,https://doi.org/10.1016/j.jcp.2017.08.028 +Xiantao Li,Variational boundary conditions for molecular dynamics simulations: Treatment of the loading condition.,2008,227,J. Comput. Physics,24,db/journals/jcphy/jcphy227.html#Li08a,https://doi.org/10.1016/j.jcp.2008.08.010 +Ava J. Mauro,A First-Passage Kinetic Monte Carlo method for reaction-drift-diffusion processes.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#MauroSSAI14,https://doi.org/10.1016/j.jcp.2013.12.023 +William F. Godoy,Parallel Jacobian-free Newton Krylov solution of the discrete ordinates method with flux limiters for 3D radiative transfer.,2012,231,J. Comput. Physics,11,db/journals/jcphy/jcphy231.html#GodoyL12,https://doi.org/10.1016/j.jcp.2012.02.010 +Jean-François Cossette,The Monge-Ampère trajectory correction for semi-Lagrangian schemes.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#CossetteSC14,https://doi.org/10.1016/j.jcp.2014.05.016 +Qiuju Wang,An accurate and robust finite volume scheme based on the spline interpolation for solving the Euler and Navier-Stokes equations on non-uniform curvilinear grids.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#WangR15,https://doi.org/10.1016/j.jcp.2014.12.050 +Robert D. Guy,On the accuracy of direct forcing immersed boundary methods with projection methods.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#GuyH10,https://doi.org/10.1016/j.jcp.2009.10.027 +Y. F. Zhang,Controlling bulk Reynolds number and bulk temperature in channel flow simulations.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#ZhangV16,https://doi.org/10.1016/j.jcp.2015.10.051 +Timothy G. Vaughan,A retrodictive stochastic simulation algorithm.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#VaughanDD10,https://doi.org/10.1016/j.jcp.2010.01.027 +Krishnamurthy Nagendra,A new approach for conjugate heat transfer problems using immersed boundary method for curvilinear grid based solvers.,2014,267,J. Comput. Physics,,db/journals/jcphy/jcphy267.html#NagendraTV14,https://doi.org/10.1016/j.jcp.2014.02.045 +Yegao Qu,An immersed boundary formulation for simulating high-speed compressible viscous flows with moving solids.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#QuSB18,https://doi.org/10.1016/j.jcp.2017.10.045 +Rodrigo C. Moura,On the eddy-resolving capability of high-order discontinuous Galerkin approaches to implicit LES / under-resolved DNS of Euler turbulence.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#MouraMPS17,https://doi.org/10.1016/j.jcp.2016.10.056 +Hideshi Ishida,Revaluation of the first-order upwind difference scheme to solve coarse-grained master equations.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#IshidaM07,https://doi.org/10.1016/j.jcp.2006.06.004 +Edoardo Milotti,"Erratum to ""Model-based fit procedure for power-law-like spectra"" [J. Comput. Phys. 217(2006) 834-844].",2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#Milotti07,https://doi.org/10.1016/j.jcp.2007.08.018 +Markos A. Katsoulakis,Special Issue: Predictive multiscale materials modeling.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#KatsoulakisZ17,https://doi.org/10.1016/j.jcp.2017.02.045 +Kathleen Feigl,Development and evaluation of a micro-macro algorithm for the simulation of polymer flow.,2006,216,J. Comput. Physics,1,db/journals/jcphy/jcphy216.html#FeiglT06,https://doi.org/10.1016/j.jcp.2005.11.026 +Andre Weiner,Advanced subgrid-scale modeling for convection-dominated species transport at fluid interfaces with application to mass transfer from rising bubbles.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#WeinerB17,https://doi.org/10.1016/j.jcp.2017.06.040 +Xiangyu Hu 0002,An efficient low-dissipation hybrid weighted essentially non-oscillatory scheme.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#HuWA15,https://doi.org/10.1016/j.jcp.2015.08.043 +Zupeng Jia,An effective integration of methods for second-order three-dimensional multi-material ALE method on unstructured hexahedral meshes using MOF interface reconstruction.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#JiaLZ13,https://doi.org/10.1016/j.jcp.2012.11.004 +Zhili Lin,An analytical derivation of the optimum source patterns for the pseudospectral time-domain method.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#LinT09,https://doi.org/10.1016/j.jcp.2009.06.033 +David González 0002,A natural element updated Lagrangian strategy for free-surface fluid dynamics.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#GonzalezCCD07,https://doi.org/10.1016/j.jcp.2006.09.002 +Silvia V. Nedea,Density distribution for a dense hard-sphere gas in micro/nano-channels: Analytical and simulation results.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#NedeaFSJMH06,https://doi.org/10.1016/j.jcp.2006.04.002 +Matthew Charnley,Through-the-wall radar detection analysis via numerical modeling of Maxwell's equations.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#CharnleyW16,https://doi.org/10.1016/j.jcp.2016.01.039 +Richard Pasquetti,Cubature versus Fekete-Gauss nodes for spectral element methods on simplicial meshes.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#PasquettiR17,https://doi.org/10.1016/j.jcp.2017.07.022 +Andreas Pieper,High-performance implementation of Chebyshev filter diagonalization for interior eigenvalue computations.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#PieperKAGFHLW16,https://doi.org/10.1016/j.jcp.2016.08.027 +Hiroaki Nishikawa,Effects of high-frequency damping on iterative convergence of implicit viscous solver.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#NishikawaNW17,https://doi.org/10.1016/j.jcp.2017.07.021 +Thomas Y. Hou,Sparse + low-energy decomposition for viscous conservation laws.,2015,288,J. Comput. Physics,,db/journals/jcphy/jcphy288.html#HouLS15,https://doi.org/10.1016/j.jcp.2015.02.019 +Jean-François Lemieux,A comparison of the Jacobian-free Newton-Krylov method and the EVP model for solving the sea ice momentum equation with a viscous-plastic formulation: A serial algorithm study.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#LemieuxKTHL12,https://doi.org/10.1016/j.jcp.2012.05.024 +K. S. C. Peerenboom,Mass conservative finite volume discretization of the continuity equations in multi-component mixtures.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#PeerenboomDBLGM11,https://doi.org/10.1016/j.jcp.2011.02.001 +Jianhua Cheng,A second-order semi-implicit 8*f8*f method for hybrid simulation.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#ChengPCU13,https://doi.org/10.1016/j.jcp.2013.03.017 +Paul J. Dellar,Lattice Boltzmann magnetohydrodynamics with current-dependent resistivity.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#Dellar13,https://doi.org/10.1016/j.jcp.2012.11.021 +Christophe Besse,Discrete transparent boundary conditions for the mixed KDV-BBM equation.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#BesseNS17,https://doi.org/10.1016/j.jcp.2017.05.031 +Vincenzo Citro,Efficient stabilization and acceleration of numerical simulation of fluid flows by residual recombination.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#CitroLGA17,https://doi.org/10.1016/j.jcp.2017.04.081 +Britton J. Olson,Directional artificial fluid properties for compressible large-eddy simulation.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#OlsonL13,https://doi.org/10.1016/j.jcp.2013.03.026 +Marc Medale,A parallel computer implementation of the Asymptotic Numerical Method to study thermal convection instabilities.,2009,228,J. Comput. Physics,22,db/journals/jcphy/jcphy228.html#MedaleC09,https://doi.org/10.1016/j.jcp.2009.07.032 +Zhi Liang,A fast multipole method for the Rotne-Prager-Yamakawa tensor and its applications.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#LiangGGHJ13,https://doi.org/10.1016/j.jcp.2012.09.021 +Gautier Dakin,Inverse Lax-Wendroff boundary treatment for compressible Lagrange-remap hydrodynamics on Cartesian grids.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#DakinDJ18,https://doi.org/10.1016/j.jcp.2017.10.014 +Eric E. Keaveny,Modeling the magnetic interactions between paramagnetic beads in magnetorheological fluids.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#KeavenyM08,https://doi.org/10.1016/j.jcp.2008.07.008 +Anil Zenginoglu,Hyperboloidal layers for hyperbolic equations on unbounded domains.,2011,230,J. Comput. Physics,6,db/journals/jcphy/jcphy230.html#Zenginoglu11,https://doi.org/10.1016/j.jcp.2010.12.016 +Alejandro M. Aragón,Multi-physics design of microvascular materials for active cooling applications.,2011,230,J. Comput. Physics,13,db/journals/jcphy/jcphy230.html#AragonSGW11,https://doi.org/10.1016/j.jcp.2011.03.012 +Juan Chen,A review of hybrid implicit explicit finite difference time domain method.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#Chen18,https://doi.org/10.1016/j.jcp.2018.02.053 +Guoxi Ni,Efficient kinetic schemes for steady and unsteady flow simulations on unstructured meshes.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#NiJX08,https://doi.org/10.1016/j.jcp.2007.06.018 +Jorge J. Moré,Do you trust derivatives or differences?,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#MoreW14,https://doi.org/10.1016/j.jcp.2014.04.056 +Wei Liao,Textbook-efficiency multigrid solver for three-dimensional unsteady compressible Navier-Stokes equations.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#LiaoDPL08,https://doi.org/10.1016/j.jcp.2008.03.026 +Vincent Heuveline,Shape optimization towards stability in constrained hydrodynamic systems.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#HeuvelineS09,https://doi.org/10.1016/j.jcp.2008.06.030 +Günther Grün,Two-phase flow with mass density contrast: Stable schemes for a thermodynamic consistent and frame-indifferent diffuse-interface model.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#GrunK14,https://doi.org/10.1016/j.jcp.2013.10.028 +Sirui Tan,A high order moving boundary treatment for compressible inviscid flows.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#TanS11,https://doi.org/10.1016/j.jcp.2011.04.011 +Jun Zhu,Numerical study on the convergence to steady state solutions of a new class of high order WENO schemes.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#ZhuS17,https://doi.org/10.1016/j.jcp.2017.08.012 +Tomas Lundquist,A hybrid framework for coupling arbitrary summation-by-parts schemes on general meshes.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#LundquistMN18,https://doi.org/10.1016/j.jcp.2018.02.018 +Tobias A. Kampmann,Parallelized event chain algorithm for dense hard sphere and polymer systems.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#KampmannBK15,https://doi.org/10.1016/j.jcp.2014.10.059 +Christophe Chalons,A new comment on the computation of non-conservative products using Roe-type path conservative schemes.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#ChalonsC17,https://doi.org/10.1016/j.jcp.2017.01.016 +Assyr Abdulle,Stabilized multilevel Monte Carlo method for stiff stochastic differential equations.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#AbdulleB13,https://doi.org/10.1016/j.jcp.2013.05.039 +Ben Thornber,On the implicit large eddy simulations of homogeneous decaying turbulence.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#ThornberMD07,https://doi.org/10.1016/j.jcp.2007.06.030 +Yongsam Kim,Numerical simulations of two-dimensional foam by the immersed boundary method.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#KimLP10,https://doi.org/10.1016/j.jcp.2010.03.035 +Vaibhav Joshi,A positivity preserving variational method for multi-dimensional convection-diffusion-reaction equation.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#JoshiJ17,https://doi.org/10.1016/j.jcp.2017.03.005 +Xiaobo Yang,A moving mesh finite difference method for equilibrium radiation diffusion equations.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#YangHQ15,https://doi.org/10.1016/j.jcp.2015.06.014 +J. R. C. King,Boundary conditions for simulations of oscillating bubbles using the non-linear acoustic approximation.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#KingZR15,https://doi.org/10.1016/j.jcp.2014.12.037 +Marc Medale,High performance computations of steady-state bifurcations in 3D incompressible fluid flows by Asymptotic Numerical Method.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#MedaleC15,https://doi.org/10.1016/j.jcp.2015.07.021 +Michael Dumbser,A posteriori subcell limiting of the discontinuous Galerkin finite element method for hyperbolic conservation laws.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#DumbserZLD14,https://doi.org/10.1016/j.jcp.2014.08.009 +Stefanie Günther,A framework for simultaneous aerodynamic design optimization in the presence of chaos.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#GuntherGW17,https://doi.org/10.1016/j.jcp.2016.10.043 +Gregory H. Miller,A Neumann-Neumann preconditioned iterative substructuring approach for computing solutions to Poisson's equation with prescribed jumps on an embedded boundary.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#MillerP13,https://doi.org/10.1016/j.jcp.2012.10.023 +Shreyas Bidadi,Investigation of numerical viscosities and dissipation rates of second-order TVD-MUSCL schemes for implicit large-eddy simulation.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#BidadiR15,https://doi.org/10.1016/j.jcp.2014.10.057 +Matthew Anderson,A numerical approach to space-time finite elements for the wave equation.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#AndersonK07,https://doi.org/10.1016/j.jcp.2007.04.021 +Hasan Gunes,Gappy data: To Krig or not to Krig?,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#GunesSK06,https://doi.org/10.1016/j.jcp.2005.06.023 +Eldar Akhmetgaliyev,A boundary integral algorithm for the Laplace Dirichlet-Neumann mixed eigenvalue problem.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#AkhmetgaliyevBN15,https://doi.org/10.1016/j.jcp.2015.05.016 +Maarten L. Van De Put,Efficient solution of the Wigner-Liouville equation using a spectral decomposition of the force field.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#PutSM17,https://doi.org/10.1016/j.jcp.2017.08.059 +Adam Reichert,Energy stable numerical methods for hyperbolic partial differential equations using overlapping domain decomposition.,2012,231,J. Comput. Physics,16,db/journals/jcphy/jcphy231.html#ReichertHB12,https://doi.org/10.1016/j.jcp.2012.03.003 +A. Rosolen,An adaptive meshfree method for phase-field models of biomembranes. Part I: Approximation with maximum-entropy basis functions.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#RosolenPA13,https://doi.org/10.1016/j.jcp.2013.04.046 +Ken Mattsson,A solution to the stability issues with block norm summation by parts operators.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#MattssonA13,https://doi.org/10.1016/j.jcp.2013.07.013 +Jianchun Wang,A hybrid numerical simulation of isotropic compressible turbulence.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#WangWXSC10,https://doi.org/10.1016/j.jcp.2010.03.042 +Kris Van den Abeele,On the connection between the spectral volume and the spectral difference method.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#AbeeleLW07,https://doi.org/10.1016/j.jcp.2007.08.030 +Christophe Cornet,A new algorithm for charge deposition for multiple-grid method for PIC simulations in r-z cylindrical coordinates.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#CornetK07,https://doi.org/10.1016/j.jcp.2007.01.004 +Peter H. Lauritzen,A conservative semi-Lagrangian multi-tracer transport scheme (CSLAM) on the cubed-sphere grid.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#LauritzenNU10,https://doi.org/10.1016/j.jcp.2009.10.036 +Elie Hachem,Stabilized finite element method for incompressible flows with high Reynolds number.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#HachemRKDC10,https://doi.org/10.1016/j.jcp.2010.07.030 +Kensuke Yokoi,A density-scaled continuum surface force model within a balanced force formulation.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#Yokoi14,https://doi.org/10.1016/j.jcp.2014.08.034 +Johan Helsing,Integral equation methods for elliptic problems with boundary conditions of mixed type.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#Helsing09a,https://doi.org/10.1016/j.jcp.2009.09.004 +Alexander Bass,Symmetry reduction for molecular dynamics simulation of an imploding gas bubble.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#BassPMR08,https://doi.org/10.1016/j.jcp.2007.10.013 +J. C. Mandal,A genuinely multidimensional convective pressure flux split Riemann solver for Euler equations.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#MandalS15,https://doi.org/10.1016/j.jcp.2015.05.039 +Daniel A. Cassidy,An investigation of interface-sharpening schemes for multi-phase mixture flows.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#CassidyET09,https://doi.org/10.1016/j.jcp.2009.02.028 +Alexander Pletzer,Conservative interpolation of edge and face data on n dimensional structured grids using differential forms.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#PletzerF15,https://doi.org/10.1016/j.jcp.2015.08.029 +Alberto Guardone,Arbitrary Lagrangian Eulerian formulation for two-dimensional flows using dynamic meshes with edge swapping.,2011,230,J. Comput. Physics,20,db/journals/jcphy/jcphy230.html#GuardoneIQ11,https://doi.org/10.1016/j.jcp.2011.06.026 +Zhu Wang,Two-level discretizations of nonlinear closure models for proper orthogonal decomposition.,2011,230,J. Comput. Physics,1,db/journals/jcphy/jcphy230.html#WangABI11,https://doi.org/10.1016/j.jcp.2010.09.015 +Cécile Piret,The orthogonal gradients method: A radial basis functions method for solving partial differential equations on arbitrary surfaces.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#Piret12,https://doi.org/10.1016/j.jcp.2012.03.007 +Hengbin An,Anderson acceleration and application to the three-temperature energy equations.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#AnJW17,https://doi.org/10.1016/j.jcp.2017.06.031 +Waad Subber,A domain decomposition method of stochastic PDEs: An iterative solution techniques using a two-level scalable preconditioner.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#SubberS14,https://doi.org/10.1016/j.jcp.2013.08.058 +Bartosz Protas,Adjoint-based optimization of PDE systems with alternative gradients.,2008,227,J. Comput. Physics,13,db/journals/jcphy/jcphy227.html#Protas08,https://doi.org/10.1016/j.jcp.2008.03.013 +Houfu Fan,An adhesive contact mechanics formulation based on atomistically induced surface traction.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#FanRL15,https://doi.org/10.1016/j.jcp.2015.08.035 +Todd Arbogast,A fully conservative Eulerian-Lagrangian method for a convection-diffusion problem in a solenoidal field.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#ArbogastH10,https://doi.org/10.1016/j.jcp.2010.01.009 +Dinesh A. Shetty,High-order incompressible large-eddy simulation of fully inhomogeneous turbulent flows.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#ShettyFCF10,https://doi.org/10.1016/j.jcp.2010.08.011 +Richard M. J. Kramer,Algebraically constrained extended edge element method (eXFEM-AC) for resolution of multi-material cells.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#KramerBSV14,https://doi.org/10.1016/j.jcp.2014.07.021 +Luís Eça,On code verification of RANS solvers.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#EcaKVHP16,https://doi.org/10.1016/j.jcp.2016.01.002 +C. H. Yu,An optimized dispersion-relation-preserving combined compact difference scheme to solve advection equations.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#YuWHP15,https://doi.org/10.1016/j.jcp.2015.07.051 +A. Campos,The effect of artificial bulk viscosity in simulations of forced compressible turbulence.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#CamposM18,https://doi.org/10.1016/j.jcp.2018.05.030 +Nobuyoshi Fujimatsu,New interpolation technique for the CIP method on curvilinear coordinates.,2010,229,J. Comput. Physics,16,db/journals/jcphy/jcphy229.html#FujimatsuS10,https://doi.org/10.1016/j.jcp.2010.03.039 +Dmitry A. Fedosov,Triple-decker: Interfacing atomistic-mesoscopic-continuum flow regimes.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#FedosovK09,https://doi.org/10.1016/j.jcp.2008.10.024 +Yuxiang Liu,Efficient numerical solution of acoustic scattering from doubly-periodic arrays of axisymmetric objects.,2016,324,J. Comput. Physics,,db/journals/jcphy/jcphy324.html#LiuB16,https://doi.org/10.1016/j.jcp.2016.08.011 +Qiqi Wang,Least Squares Shadowing sensitivity analysis of chaotic limit cycle oscillations.,2014,267,J. Comput. Physics,,db/journals/jcphy/jcphy267.html#WangHB14,https://doi.org/10.1016/j.jcp.2014.03.002 +Youngdon Kwon,Numerical aspects in modeling high Deborah number flow and elastic instability.,2014,265,J. Comput. Physics,,db/journals/jcphy/jcphy265.html#Kwon14,https://doi.org/10.1016/j.jcp.2014.02.005 +Sergey A. Matveev,A fast numerical method for the Cauchy problem for the Smoluchowski equation.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#MatveevST15,https://doi.org/10.1016/j.jcp.2014.11.003 +Boris I. Krasnopolsky,A conservative fully implicit algorithm for predicting slug flows.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#KrasnopolskyL18,https://doi.org/10.1016/j.jcp.2017.11.032 +R. Ranjan,A collocated method for the incompressible Navier-Stokes equations inspired by the Box scheme.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#RanjanP13,https://doi.org/10.1016/j.jcp.2012.08.021 +S. Majid Hosseini,Pressure boundary conditions for computing incompressible flows with SPH.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#HosseiniF11,https://doi.org/10.1016/j.jcp.2011.06.013 +Assyr Abdulle,PIROCK: A swiss-knife partitioned implicit-explicit orthogonal Runge-Kutta Chebyshev integrator for stiff diffusion-advection-reaction problems with or without noise.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#AbdulleV13,https://doi.org/10.1016/j.jcp.2013.02.009 +Rongzong Huang,Third-order analysis of pseudopotential lattice Boltzmann model for multiphase flow.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#HuangW16a,https://doi.org/10.1016/j.jcp.2016.09.030 +Johan Helsing,Faster convergence and higher accuracy for the Dirichlet-Neumann map.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#Helsing09,https://doi.org/10.1016/j.jcp.2008.12.025 +Eric T. Chung,Adaptive multiscale model reduction with Generalized Multiscale Finite Element Methods.,2016,320,J. Comput. Physics,,db/journals/jcphy/jcphy320.html#ChungEH16,https://doi.org/10.1016/j.jcp.2016.04.054 +Christof Vömel,State-of-the-art eigensolvers for electronic structure calculations of large scale nano-systems.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#VomelTMCWD08,https://doi.org/10.1016/j.jcp.2008.01.018 +Jón Tómas Grétarsson,Fully conservative leak-proof treatment of thin solid structures immersed in compressible fluids.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#GretarssonF13,https://doi.org/10.1016/j.jcp.2013.02.017 +Jianfeng Lu 0001,Sparsifying preconditioner for soliton calculations.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#LuY16,https://doi.org/10.1016/j.jcp.2016.03.061 +Paul A. Ullrich,MCore: A non-hydrostatic atmospheric dynamical core utilizing high-order finite-volume methods.,2012,231,J. Comput. Physics,15,db/journals/jcphy/jcphy231.html#UllrichJ12,https://doi.org/10.1016/j.jcp.2012.04.024 +Kari Astala,Nonlinear Fourier analysis for discontinuous conductivities: Computational results.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#AstalaPRS14,https://doi.org/10.1016/j.jcp.2014.07.032 +Sk. Safique Ahmad,The fully implicit stochastic-α method for stiff stochastic differential equations.,2009,228,J. Comput. Physics,22,db/journals/jcphy/jcphy228.html#AhmadPR09,https://doi.org/10.1016/j.jcp.2009.08.002 +Nicolas Favrie,Solid-fluid diffuse interface model in cases of extreme deformations.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#FavrieGS09,https://doi.org/10.1016/j.jcp.2009.05.015 +Kai Jiang,Spectral method for exploring patterns of diblock copolymers.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#JiangHZ10,https://doi.org/10.1016/j.jcp.2010.06.038 +Georges Akiki,Pairwise-interaction extended point-particle model for particle-laden flows.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#AkikiMB17,https://doi.org/10.1016/j.jcp.2017.07.056 +V. D. Liseikin,Applications of a comprehensive grid method to solution of three-dimensional boundary value problems.,2011,230,J. Comput. Physics,21,db/journals/jcphy/jcphy230.html#LiseikinRK11,https://doi.org/10.1016/j.jcp.2011.06.002 +P. Sivakumar,A primitive-variable Riemann method for solution of the shallow water equations with wetting and drying.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#SivakumarHTB09,https://doi.org/10.1016/j.jcp.2009.07.002 +Chenzhou Lian,Solution-limited time stepping to enhance reliability in CFD applications.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#LianXM09,https://doi.org/10.1016/j.jcp.2009.03.040 +Aníbal Chicco-Ruiz,An algorithm for prescribed mean curvature using isogeometric methods.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#Chicco-RuizMP16,https://doi.org/10.1016/j.jcp.2016.04.012 +Nikolaos A. Gatsonis,An unstructured direct simulation Monte Carlo methodology with Kinetic-Moment inflow and outflow boundary conditions.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#GatsonisCA13,https://doi.org/10.1016/j.jcp.2012.08.009 +Christian Gobert,Subgrid modelling for particle-LES by Spectrally Optimised Interpolation (SOI).,2011,230,J. Comput. Physics,21,db/journals/jcphy/jcphy230.html#GobertM11,https://doi.org/10.1016/j.jcp.2011.06.028 +Steffen Basting,An FCT finite element scheme for ideal MHD equations in 1D and 2D.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#BastingK17,https://doi.org/10.1016/j.jcp.2017.02.051 +Basile Audoly,A discrete geometric approach for simulating the dynamics of thin viscous threads.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#AudolyCBBGW13,https://doi.org/10.1016/j.jcp.2013.06.034 +Hyea Hyun Kim,Approximation of macroscopic conductivity for a multiscale model by using mortar methods.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#KimK17,https://doi.org/10.1016/j.jcp.2017.02.011 +Gino I. Montecinos,Comparison of solvers for the generalized Riemann problem for hyperbolic systems with source terms.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#MontecinosCDT12,https://doi.org/10.1016/j.jcp.2012.06.011 +Elliot J. Carr,A variable-stepsize Jacobian-free exponential integrator for simulating transport in heterogeneous porous media: Application to wood drying.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#CarrTP13,https://doi.org/10.1016/j.jcp.2012.07.024 +Aleksandar Donev,Calculating the free energy of nearly jammed hard-particle packings using molecular dynamics.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#DonevST07,https://doi.org/10.1016/j.jcp.2006.12.013 +Gennady B. Sushko,Simulation of ultra-relativistic electrons and positrons channeling in crystals with MBN Explorer.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#SushkoBSKGS13,https://doi.org/10.1016/j.jcp.2013.06.028 +Sergey Charnyi,On conservation laws of Navier-Stokes Galerkin discretizations.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#CharnyiHOR17,https://doi.org/10.1016/j.jcp.2017.02.039 +Ruihan Guo,An efficient fully-discrete local discontinuous Galerkin method for the Cahn-Hilliard-Hele-Shaw system.,2014,264,J. Comput. Physics,,db/journals/jcphy/jcphy264.html#GuoXX14,https://doi.org/10.1016/j.jcp.2014.01.037 +Markus Berndt,Two-step hybrid conservative remapping for multimaterial arbitrary Lagrangian-Eulerian methods.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#BerndtBGKMS11,https://doi.org/10.1016/j.jcp.2011.05.003 +Tormod Bjøntegaard,Accurate interface-tracking of surfaces in three dimensions for arbitrary Lagrangian-Eulerian schemes.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#BjontegaardR12,https://doi.org/10.1016/j.jcp.2012.06.010 +B. B. Zhao,A comparative study of diffraction of shallow-water waves by high-level IGN and GN equations.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#ZhaoED15,https://doi.org/10.1016/j.jcp.2014.11.020 +Matthew K. Borg,Fluid simulations with atomistic resolution: a hybrid multiscale method with field-wise coupling.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#BorgLR13a,https://doi.org/10.1016/j.jcp.2013.08.022 +M. Mazzotti,A 2.5D boundary element formulation for modeling damped waves in arbitrary cross-section waveguides and cavities.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#MazzottiBMV13,https://doi.org/10.1016/j.jcp.2013.04.013 +Xiaoping Zhang,A vertex-centered and positivity-preserving scheme for anisotropic diffusion problems on arbitrary polygonal grids.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#ZhangSW17,https://doi.org/10.1016/j.jcp.2017.04.070 +François Fillion-Gourdeau,Galerkin method for unsplit 3-D Dirac equation using atomically/kinetically balanced B-spline basis.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#Fillion-Gourdeau16,https://doi.org/10.1016/j.jcp.2015.11.024 +Adrián Navas-Montilla,Overcoming numerical shockwave anomalies using energy balanced numerical schemes. Application to the Shallow Water Equations with discontinuous topography.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#Navas-MontillaM17,https://doi.org/10.1016/j.jcp.2017.03.057 +Pierre Degond,Damped Arrow-Hurwicz algorithm for sphere packing.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#DegondFM17,https://doi.org/10.1016/j.jcp.2016.11.047 +Johannes Tophøj Rasmussen,A multiresolution remeshed Vortex-In-Cell algorithm using patches.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#RasmussenCW11,https://doi.org/10.1016/j.jcp.2011.05.006 +Chao Yang 0002,Parallel multilevel methods for implicit solution of shallow water equations with nonsmooth topography on the cubed-sphere.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#YangC11,https://doi.org/10.1016/j.jcp.2010.12.027 +D. R. Golbert,On the search of more stable second-order lattice-Boltzmann schemes in confined flows.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#GolbertBCF15,https://doi.org/10.1016/j.jcp.2015.03.065 +Zhen Li 0003,Energy-conserving dissipative particle dynamics with temperature-dependent properties.,2014,265,J. Comput. Physics,,db/journals/jcphy/jcphy265.html#LiTLCK14,https://doi.org/10.1016/j.jcp.2014.02.003 +John Thuburn,Some conservation issues for the dynamical cores of NWP and climate models.,2008,227,J. Comput. Physics,7,db/journals/jcphy/jcphy227.html#Thuburn08,https://doi.org/10.1016/j.jcp.2006.08.016 +Friedrich Kupka,Total-variation-diminishing implicit-explicit Runge-Kutta methods for the simulation of double-diffusive convection in astrophysics.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#KupkaHHK12,https://doi.org/10.1016/j.jcp.2011.12.031 +Guofei Pang,Space-fractional advection-dispersion equations by the Kansa method.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#PangCF15,https://doi.org/10.1016/j.jcp.2014.07.020 +Rick Borrell,Parallel direct Poisson solver for discretisations with one Fourier diagonalisable direction.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#BorrellLTO11,https://doi.org/10.1016/j.jcp.2011.02.042 +W. Kyle Anderson,Petrov-Galerkin and discontinuous-Galerkin methods for time-domain and frequency-domain electromagnetic simulations.,2011,230,J. Comput. Physics,23,db/journals/jcphy/jcphy230.html#AndersonWKTH11,https://doi.org/10.1016/j.jcp.2011.06.025 +Dinshaw S. Balsara,Efficient implementation of ADER schemes for Euler and magnetohydrodynamical flows on structured meshes - Speed comparisons with Runge-Kutta methods.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#BalsaraMDDX13,https://doi.org/10.1016/j.jcp.2012.04.051 +Kristina Koal,Adapting the spectral vanishing viscosity method for large-eddy simulations in cylindrical configurations.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#KoalSB12,https://doi.org/10.1016/j.jcp.2012.01.014 +Duc-Vinh Le,An immersed interface method for viscous incompressible flows involving rigid and flexible boundaries.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#LeKP06,https://doi.org/10.1016/j.jcp.2006.05.004 +Fang-Bao Tian,Fluid-structure interaction involving large deformations: 3D simulations and applications to biological systems.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#TianDLDR14,https://doi.org/10.1016/j.jcp.2013.10.047 +Weizhu Bao,Numerical methods and comparison for computing dark and bright solitons in the nonlinear Schrödinger equation.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#BaoTX13,https://doi.org/10.1016/j.jcp.2012.10.054 +Li Yuan,Resolving the shock-induced combustion by an adaptive mesh redistribution method.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#YuanT07,https://doi.org/10.1016/j.jcp.2006.10.006 +Shivkumar Chandrasekaran,A minimum Sobolev norm technique for the numerical discretization of PDEs.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#ChandrasekaranM15,https://doi.org/10.1016/j.jcp.2015.07.025 +Martin Leutbecher,Ensemble forecasting.,2008,227,J. Comput. Physics,7,db/journals/jcphy/jcphy227.html#LeutbecherP08,https://doi.org/10.1016/j.jcp.2007.02.014 +Mario Morales-Hernández,A large time step 1D upwind explicit scheme (CFL andgt* 1): Application to shallow water equations.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#Morales-HernandezGM12,https://doi.org/10.1016/j.jcp.2012.06.017 +Elijah P. Newren,Unconditionally stable discretizations of the immersed boundary equations.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#NewrenFGK07,https://doi.org/10.1016/j.jcp.2006.08.004 +Peter Korn,Elementary dispersion analysis of some mimetic discretizations on triangular C-grids.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#KornD17,https://doi.org/10.1016/j.jcp.2016.10.059 +Martín Sánchez-Rocha,The compressible hybrid RANS/LES formulation using an additive operator.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#Sanchez-RochaM09,https://doi.org/10.1016/j.jcp.2008.11.021 +Alex H. Barnett,High-order boundary integral equation solution of high frequency wave scattering from obstacles in an unbounded linearly stratified medium.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#BarnettNM15,https://doi.org/10.1016/j.jcp.2015.05.034 +Peter K. Moore,Solving regularly and singularly perturbed reaction-diffusion equations in three space dimensions.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#Moore07,https://doi.org/10.1016/j.jcp.2006.10.015 +G. Pashos,A modified phase-field method for the investigation of wetting transitions of droplets on patterned surfaces.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#PashosKB15,https://doi.org/10.1016/j.jcp.2014.11.045 +Lin He,Reconstruction of shapes and impedance functions using few far-field measurements.,2009,228,J. Comput. Physics,3,db/journals/jcphy/jcphy228.html#HeKS09,https://doi.org/10.1016/j.jcp.2008.09.029 +Evan F. Bollig,Solution to PDEs using radial basis function finite-differences (RBF-FD) on multiple GPUs.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#BolligFE12,https://doi.org/10.1016/j.jcp.2012.06.030 +Santiago Badia,On an unconditionally convergent stabilized finite element approximation of resistive magnetohydrodynamics.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#BadiaCP13,https://doi.org/10.1016/j.jcp.2012.09.031 +Xiangxiong Zhang,On positivity-preserving high order discontinuous Galerkin schemes for compressible Navier-Stokes equations.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#Zhang17,https://doi.org/10.1016/j.jcp.2016.10.002 +Pierre Degond,Numerical simulations of the Euler system with congestion constraint.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#DegondHN11,https://doi.org/10.1016/j.jcp.2011.07.010 +Kejia Pan,A new extrapolation cascadic multigrid method for three dimensional elliptic boundary value problems.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#PanHHR17,https://doi.org/10.1016/j.jcp.2017.04.069 +Florencio Balboa Usabiaga,Inertial coupling for point particle fluctuating hydrodynamics.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#UsabiagaPD13,https://doi.org/10.1016/j.jcp.2012.10.045 +Arthur R. Ghigo,A 2D nonlinear multiring model for blood flow in large elastic arteries.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#GhigoFL17,https://doi.org/10.1016/j.jcp.2017.08.039 +Josefin Ahlkrona,Dynamically coupling the non-linear Stokes equations with the shallow ice approximation in glaciology: Description and first applications of the ISCAL method.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#AhlkronaLKZ16,https://doi.org/10.1016/j.jcp.2015.12.025 +Irene M. Gamba,Spectral method for a kinetic swarming model.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#GambaHM15,https://doi.org/10.1016/j.jcp.2015.04.033 +Philip W. Livermore,An implementation of the exponential time differencing scheme to the magnetohydrodynamic equations in a spherical shell.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#Livermore07,https://doi.org/10.1016/j.jcp.2006.05.029 +Pedro Alexandre da Cruz,Numerical solution of the Ericksen-Leslie dynamic equations for two-dimensional nematic liquid crystal flows.,2013,247,J. Comput. Physics,,db/journals/jcphy/jcphy247.html#CruzTSM13,https://doi.org/10.1016/j.jcp.2013.03.061 +Yidong Xia,Assessment of a hybrid finite element and finite volume code for turbulent incompressible flows.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#XiaWLCB16,https://doi.org/10.1016/j.jcp.2015.12.022 +Jelena Popovic,Adaptive fast interface tracking methods.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#PopovicR17,https://doi.org/10.1016/j.jcp.2017.02.017 +Mario Ricchiuto,Explicit Runge-Kutta residual distribution schemes for time dependent problems: Second order case.,2010,229,J. Comput. Physics,16,db/journals/jcphy/jcphy229.html#RicchiutoA10,https://doi.org/10.1016/j.jcp.2010.04.002 +Stefan Schoenawa,Discontinuous Galerkin discretization of the Reynolds-averaged Navier-Stokes equations with the shear-stress transport model.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#SchoenawaH14,https://doi.org/10.1016/j.jcp.2013.12.062 +Bernard Bialecki,Spectral Chebyshev-Fourier collocation for the Helmholtz and variable coefficient equations in a disk.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#BialeckiK08,https://doi.org/10.1016/j.jcp.2008.06.009 +Peng Chen,A nonparametric belief propagation method for uncertainty quantification with applications to flow in random porous media.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#ChenZ13,https://doi.org/10.1016/j.jcp.2013.05.006 +Vladimir A. Titarev,Construction and comparison of parallel implicit kinetic solvers in three spatial dimensions.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#TitarevDU14,https://doi.org/10.1016/j.jcp.2013.08.051 +Mauro Bologna,Diffusion in heterogeneous media: An iterative scheme for finding approximate solutions to fractional differential equations with time-dependent coefficients.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#BolognaSWG15,https://doi.org/10.1016/j.jcp.2014.08.027 +Oliver V. Atassi,Implementation of nonreflecting boundary conditions for the nonlinear Euler equations.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#AtassiG08,https://doi.org/10.1016/j.jcp.2007.09.028 +Xie Liang,A new spectral difference method using hierarchical polynomial bases for hyperbolic conservation laws.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#LiangMBQ15,https://doi.org/10.1016/j.jcp.2014.11.008 +Marcello Lappa,A mathematical and numerical framework for the analysis of compressible thermal convection in gases at very high temperatures.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#Lappa16,https://doi.org/10.1016/j.jcp.2016.02.062 +Carlos M. Xisto,A pressure-based high resolution numerical method for resistive MHD.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#XistoPO14,https://doi.org/10.1016/j.jcp.2014.07.009 +Sabyasachi Chatterjee,Computing singularly perturbed differential equations.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#ChatterjeeAA18,https://doi.org/10.1016/j.jcp.2017.10.025 +Christelle Lusso,Two-dimensional simulation by regularization of free surface viscoplastic flows with Drucker-Prager yield stress and application to granular collapse.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#LussoEBMFR17,https://doi.org/10.1016/j.jcp.2016.12.036 +Jiequan Li,Comparison of the generalized Riemann solver and the gas-kinetic scheme for inviscid compressible flow simulations.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#LiLX11,https://doi.org/10.1016/j.jcp.2011.03.028 +Abigail L. Bowers,New connections between finite element formulations of the Navier-Stokes equations.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#BowersCLR10,https://doi.org/10.1016/j.jcp.2010.08.036 +Hengfei Ding,Mixed spline function method for reaction-subdiffusion equations.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#DingL13,https://doi.org/10.1016/j.jcp.2013.02.014 +Mohamed El Bouajaji,A quasi-optimal domain decomposition algorithm for the time-harmonic Maxwell's equations.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#BouajajiTAG15,https://doi.org/10.1016/j.jcp.2015.03.041 +Hong Wang,A superfast-preconditioned iterative method for steady-state space-fractional diffusion equations.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#WangD13,https://doi.org/10.1016/j.jcp.2012.07.045 +Thierry Buffard,Monoslope and multislope MUSCL methods for unstructured meshes.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#BuffardC10,https://doi.org/10.1016/j.jcp.2010.01.026 +Andrea Mignone,A simple and accurate Riemann solver for isothermal MHD.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#Mignone07,https://doi.org/10.1016/j.jcp.2007.01.033 +D. F. Gordon,Fully explicit nonlinear optics model in a particle-in-cell framework.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#GordonHP13,https://doi.org/10.1016/j.jcp.2013.05.014 +Mehdi Najafi,Application of a shock-fitted spectral collocation method for computing transient high-speed inviscid flows over a blunt nose.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#NajafiHE14,https://doi.org/10.1016/j.jcp.2013.09.037 +Gennady V. Miloshevsky,Application of finite-difference methods to membrane-mediated protein interactions and to heat and magnetic field diffusion in plasmas.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#MiloshevskySPHJ06,https://doi.org/10.1016/j.jcp.2005.06.013 +Igor A. Andriyash,A spectral unaveraged algorithm for free electron laser simulations.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#AndriyashLM15,https://doi.org/10.1016/j.jcp.2014.11.026 +Patricio Farrell,Computational and analytical comparison of flux discretizations for the semiconductor device equations beyond Boltzmann statistics.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#FarrellKF17,https://doi.org/10.1016/j.jcp.2017.06.023 +Jean-Frédéric Gerbeau,Approximated Lax pairs for the reduced order integration of nonlinear evolution equations.,2014,265,J. Comput. Physics,,db/journals/jcphy/jcphy265.html#GerbeauL14,https://doi.org/10.1016/j.jcp.2014.01.047 +Virginie Grandgirard,A drift-kinetic Semi-Lagrangian 4D code for ion turbulence simulation.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#GrandgirardBBBGGMSSSVV06,https://doi.org/10.1016/j.jcp.2006.01.023 +Yu Chen,Vorticity vector-potential method for 3D viscous incompressible flows in time-dependent curvilinear coordinates.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#ChenX16,https://doi.org/10.1016/j.jcp.2016.02.020 +D. G. Huang,Preconditioned dual-time procedures and its application to simulating the flow with cavitations.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#Huang07,https://doi.org/10.1016/j.jcp.2006.10.001 +Thierry Goudon,Finite Volume schemes on unstructured grids for non-local models: Application to the simulation of heat transport in plasmas.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#GoudonP12,https://doi.org/10.1016/j.jcp.2012.07.050 +Seung Hyun Kim,Accuracy of higher-order lattice Boltzmann methods for microscale flows with finite Knudsen numbers.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#KimPB08,https://doi.org/10.1016/j.jcp.2008.06.012 +Max Rietmann,Newmark local time stepping on high-performance computing architectures.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#RietmannGPS17,https://doi.org/10.1016/j.jcp.2016.11.012 +Masahiro Fujita,Direct simulation of drying colloidal suspension on substrate using immersed free surface model.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#FujitaKY15,https://doi.org/10.1016/j.jcp.2014.10.042 +Lucas K. Wagner,QWalk: A quantum Monte Carlo program for electronic structure.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#WagnerBM09,https://doi.org/10.1016/j.jcp.2009.01.017 +Liang Pan,A third-order compact gas-kinetic scheme on unstructured meshes for compressible Navier-Stokes solutions.,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#PanX16,https://doi.org/10.1016/j.jcp.2016.05.012 +Christian Vergara,A coupled 3D-1D numerical monodomain solver for cardiac electrical activation in the myocardium with detailed Purkinje network.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#VergaraLPLFQ16,https://doi.org/10.1016/j.jcp.2015.12.016 +Christopher Batty,A cell-centred finite volume method for the Poisson problem on non-graded quadtrees with second order accurate gradients.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#Batty17,https://doi.org/10.1016/j.jcp.2016.11.035 +Nail A. Gumerov,Fast multipole method for the biharmonic equation in three dimensions.,2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#GumerovD06,https://doi.org/10.1016/j.jcp.2005.10.029 +Irene M. Gamba,Galerkin-Petrov approach for the Boltzmann equation.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#GambaR18,https://doi.org/10.1016/j.jcp.2018.04.017 +Andrés Arrarás,Error analysis of multipoint flux domain decomposition methods for evolutionary diffusion problems.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#ArrarasPY14,https://doi.org/10.1016/j.jcp.2013.08.013 +Ye Xiong,Monte Carle simulation of quantum transport through nanostructures.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#XiongX12,https://doi.org/10.1016/j.jcp.2011.09.022 +Yaohong Wang,A hybrid level set-volume constraint method for incompressible two-phase flow.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#WangSS12,https://doi.org/10.1016/j.jcp.2012.06.014 +Fakhrodin Mohammadi,A wavelet-based computational method for solving stochastic Itô-Volterra integral equations.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#Mohammadi15,https://doi.org/10.1016/j.jcp.2015.05.051 +J. M. Morrell,A cell by cell anisotropic adaptive mesh ALE scheme for the numerical solution of the Euler equations.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#MorrellSB07,https://doi.org/10.1016/j.jcp.2007.05.040 +Colin J. Cotter,LBB stability of a mixed Galerkin finite element pair for fluid flow simulations.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#CotterHPR09,https://doi.org/10.1016/j.jcp.2008.09.014 +Yunhuang Zhang,Iterative performance of various formulations of the SPNSPN equations.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#ZhangRM13,https://doi.org/10.1016/j.jcp.2013.06.009 +Yuri A. Omelchenko,Self-adaptive time integration of flux-conservative equations with sources.,2006,216,J. Comput. Physics,1,db/journals/jcphy/jcphy216.html#OmelchenkoK06a,https://doi.org/10.1016/j.jcp.2005.12.008 +Patrick Blonigan,Adjoint sensitivity analysis of chaotic dynamical systems with non-intrusive least squares shadowing.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#Blonigan17,https://doi.org/10.1016/j.jcp.2017.08.002 +Lakshman Anumolu,Gradient augmented level set method for phase change simulations.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#AnumoluT18,https://doi.org/10.1016/j.jcp.2017.10.016 +S. J. Lind,Incompressible smoothed particle hydrodynamics for free-surface flows: A generalised diffusion-based algorithm for stability and validations for impulsive flows and propagating waves.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#LindXSR12,https://doi.org/10.1016/j.jcp.2011.10.027 +A. Tayebi,A meshless method for solving two-dimensional variable-order time fractional advection-diffusion equation.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#TayebiSH17,https://doi.org/10.1016/j.jcp.2017.03.061 +Alireza Doostan,A least-squares approximation of partial differential equations with high-dimensional random inputs.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#DoostanI09,https://doi.org/10.1016/j.jcp.2009.03.006 +Jia Zhao 0004,A decoupled energy stable scheme for a hydrodynamic phase-field model of mixtures of nematic liquid crystals and viscous fluids.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#ZhaoYSW16,https://doi.org/10.1016/j.jcp.2015.09.044 +Junhui Gao,An optimized spectral difference scheme for CAA problems.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#GaoYL12,https://doi.org/10.1016/j.jcp.2012.04.009 +Rouven Künze,A Multilevel Multiscale Finite-Volume Method.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#KunzeLL13,https://doi.org/10.1016/j.jcp.2013.08.042 +Kouroush Sadegh Zadeh,Parameter estimation in flow through partially saturated porous materials.,2008,227,J. Comput. Physics,24,db/journals/jcphy/jcphy227.html#Zadeh08,https://doi.org/10.1016/j.jcp.2008.09.007 +Hui Xu 0005,Analysis of the absorbing layers for the weakly-compressible lattice Boltzmann methods.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#XuS13,https://doi.org/10.1016/j.jcp.2013.02.051 +Clotilde Fermanian Kammerer,A kinetic model for the transport of electrons in a graphene layer.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#KammererM16,https://doi.org/10.1016/j.jcp.2016.09.010 +Lambert Fick,A stabilized POD model for turbulent flows over a range of Reynolds numbers: Optimal parameter sampling and constrained projection.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#FickMPT18,https://doi.org/10.1016/j.jcp.2018.05.027 +Pedro R. S. Antunes,Is it possible to tune a drum?,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#Antunes17,https://doi.org/10.1016/j.jcp.2017.02.056 +T. Abadie,On the combined effects of surface tension force calculation and interface advection on spurious currents within Volume of Fluid and Level Set frameworks.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#AbadieAL15,https://doi.org/10.1016/j.jcp.2015.04.054 +Caroline Gatti-Bono,Coupling and decoupling of the acoustic and gravity waves through perturbational analysis of the Euler equations.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#Gatti-Bono08,https://doi.org/10.1016/j.jcp.2007.09.024 +Hiroe Yamazaki,Vertical slice modelling of nonlinear Eady waves using a compatible finite element method.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#YamazakiSCMC17,https://doi.org/10.1016/j.jcp.2017.04.006 +Jean-François Lemieux,Improving the numerical convergence of viscous-plastic sea ice models with the Jacobian-free Newton-Krylov method.,2010,229,J. Comput. Physics,8,db/journals/jcphy/jcphy229.html#LemieuxTSTTHA10,https://doi.org/10.1016/j.jcp.2009.12.011 +Amnon Birman,Application of the GRP scheme to open channel flow equations.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#BirmanF07,https://doi.org/10.1016/j.jcp.2006.07.008 +Xavier Antoine,On the ground states and dynamics of space fractional nonlinear Schrödinger/Gross-Pitaevskii equations with rotation term and nonlocal nonlinear interactions.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#AntoineTZ16,https://doi.org/10.1016/j.jcp.2016.08.009 +Xingye Yue,The local microscale problem in the multiscale modeling of strongly heterogeneous media: Effects of boundary conditions and cell size.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#YueE07,https://doi.org/10.1016/j.jcp.2006.07.034 +Sibylle Günter,A mixed implicit-explicit finite difference scheme for heat transport in magnetised plasmas.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#GunterL09,https://doi.org/10.1016/j.jcp.2008.09.012 +Zhicheng Hu,Acceleration for microflow simulations of high-order moment models by using lower-order model correction.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#HuLQ16,https://doi.org/10.1016/j.jcp.2016.09.042 +Raimund Bürger,Discontinuous approximation of viscous two-phase flow in heterogeneous porous media.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#BurgerKKR16,https://doi.org/10.1016/j.jcp.2016.05.043 +Michel Bergmann,Bioinspired swimming simulations.,2016,323,J. Comput. Physics,,db/journals/jcphy/jcphy323.html#BergmannI16,https://doi.org/10.1016/j.jcp.2016.07.022 +Boris N. Azarenok,A variational hexahedral grid generator with control metric.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#Azarenok06,https://doi.org/10.1016/j.jcp.2006.03.004 +Sihong Shao,Accurate calculation of Green's function of the Schrödinger equation in a block layered potential.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#ShaoCT06,https://doi.org/10.1016/j.jcp.2006.04.009 +Christian Lessig,Efficient and accurate rotation of finite spherical harmonics expansions.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#LessigWF12,https://doi.org/10.1016/j.jcp.2011.09.014 +Nickolay Y. Gnedin,Enforcing the Courant-Friedrichs-Lewy condition in explicitly conservative local time stepping schemes.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#GnedinSK18,https://doi.org/10.1016/j.jcp.2018.01.008 +Vassili Kitsios,BiGlobal stability analysis in curvilinear coordinates of massively separated lifting bodies.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#KitsiosRTOS09,https://doi.org/10.1016/j.jcp.2009.06.011 +E. J. Caramana,Curl-q: A vorticity damping artificial viscosity for essentially irrotational Lagrangian hydrodynamics calculations.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#CaramanaL06,https://doi.org/10.1016/j.jcp.2005.11.018 +D. R. Golbert,"Corrigendum to ""On the search of more stable second-order lattice-Boltzmann schemes in confined flows"" [J. Comp. Phys. (2015) 605-618].",2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#GolbertBCF16,https://doi.org/10.1016/j.jcp.2016.01.012 +Shaozhong Deng,Generalized image charge solvation model for electrostatic interactions in molecular dynamics simulations of aqueous solutions.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#DengXBJC13,https://doi.org/10.1016/j.jcp.2013.03.027 +Y.-S. Wang,A two-parameter continuation method for computing numerical solutions of spin-1 Bose-Einstein condensates.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#WangC14,https://doi.org/10.1016/j.jcp.2013.08.056 +Alberto Guardone,On the relation between finite element and finite volume schemes for compressible flows with cylindrical and spherical symmetry.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#GuardoneSGP11,https://doi.org/10.1016/j.jcp.2010.10.012 +Oleksandr Marchuk,Modeling of supersonic plasma flow in the scrape-off layer.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#MarchukT07,https://doi.org/10.1016/j.jcp.2007.09.022 +Victorita Dolean,Effective transmission conditions for domain decomposition methods applied to the time-harmonic curl-curl Maxwell's equations.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#DoleanGLLP15,https://doi.org/10.1016/j.jcp.2014.09.024 +G. Capdeville,Towards a compact high-order method for non-linear hyperbolic systems. I: The Hermite Least-Square Monotone (HLSM) reconstruction.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#Capdeville09,https://doi.org/10.1016/j.jcp.2009.02.005 +Alexander Hay,hp-Adaptive time integration based on the BDF for viscous flows.,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#HayEPG15,https://doi.org/10.1016/j.jcp.2015.03.022 +Mridul Aanjaneya,A monolithic mass tracking formulation for bubbles in incompressible flow.,2013,247,J. Comput. Physics,,db/journals/jcphy/jcphy247.html#AanjaneyaPF13,https://doi.org/10.1016/j.jcp.2013.03.048 +Yuen-Yick Kwan,An efficient direct parallel spectral-element solver for separable elliptic problems.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#KwanS07,https://doi.org/10.1016/j.jcp.2007.02.013 +Suguru Miyauchi,A numerical method for mass transfer by a thin moving membrane with selective permeabilities.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#MiyauchiTK15,https://doi.org/10.1016/j.jcp.2014.12.048 +Keiichi Kitamura,Simple a posteriori slope limiter (Post Limiter) for high resolution and efficient flow computations.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#KitamuraH17,https://doi.org/10.1016/j.jcp.2017.04.002 +Oleg Boiarkine,A positivity-preserving ALE finite element scheme for convection-diffusion equations in moving domains.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#BoiarkineKCGM11,https://doi.org/10.1016/j.jcp.2010.12.042 +Romain Laraufie,A dynamic forcing method for unsteady turbulent inflow conditions.,2011,230,J. Comput. Physics,23,db/journals/jcphy/jcphy230.html#LaraufieDS11,https://doi.org/10.1016/j.jcp.2011.08.012 +Simone Deparis,Reduced basis method for multi-parameter-dependent steady Navier-Stokes equations: Applications to natural convection in a cavity.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#DeparisR09,https://doi.org/10.1016/j.jcp.2009.03.008 +Michal A. Kopera,Analysis of adaptive mesh refinement for IMEX discontinuous Galerkin solutions of the compressible Euler equations with application to atmospheric simulations.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#KoperaG14,https://doi.org/10.1016/j.jcp.2014.06.026 +Weiwei Wang,Spectral methods based on new formulations for coupled Stokes and Darcy equations.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#WangX14,https://doi.org/10.1016/j.jcp.2013.09.036 +Alex Main,A second-order time-accurate implicit finite volume method with exact two-phase Riemann problems for compressible multi-phase fluid and fluid-structure problems.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#MainF14,https://doi.org/10.1016/j.jcp.2013.11.001 +Rajkeshar Singh,Three-dimensional adaptive Cartesian grid method with conservative interface restructuring and reconstruction.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#SinghS07,https://doi.org/10.1016/j.jcp.2006.12.026 +Sergio Pirozzoli,On the spectral properties of shock-capturing schemes.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#Pirozzoli06,https://doi.org/10.1016/j.jcp.2006.07.009 +Yin Wang,Sixth order compact scheme combined with multigrid method and extrapolation technique for 2D poisson equation.,2009,228,J. Comput. Physics,1,db/journals/jcphy/jcphy228.html#WangZ09,https://doi.org/10.1016/j.jcp.2008.09.002 +Robin Chatelin,Hybrid grid-particle methods and Penalization: A Sherman-Morrison-Woodbury approach to compute 3D viscous flows using FFT.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#ChatelinP14,https://doi.org/10.1016/j.jcp.2014.03.023 +Craig A. Schroeder,Semi-implicit surface tension formulation with a Lagrangian surface mesh on an Eulerian simulation grid.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#SchroederZF12,https://doi.org/10.1016/j.jcp.2011.11.021 +Maurizio Tavelli,A staggered space-time discontinuous Galerkin method for the three-dimensional incompressible Navier-Stokes equations on unstructured tetrahedral meshes.,2016,319,J. Comput. Physics,,db/journals/jcphy/jcphy319.html#TavelliD16,https://doi.org/10.1016/j.jcp.2016.05.009 +S. H. Hashemi,Exponential basis functions in space and time: A meshless method for 2D time dependent problems.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#HashemiBM13,https://doi.org/10.1016/j.jcp.2013.01.033 +Matthias Gehre,Expectation propagation for nonlinear inverse problems - with an application to electrical impedance tomography.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#GehreJ14,https://doi.org/10.1016/j.jcp.2013.12.010 +Chad D. Meyer,A stabilized Runge-Kutta-Legendre method for explicit super-time-stepping of parabolic and mixed equations.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#MeyerBA14,https://doi.org/10.1016/j.jcp.2013.08.021 +Thomas Gillis,Fast immersed interface Poisson solver for 3D unbounded problems around arbitrary geometries.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#GillisWC18,https://doi.org/10.1016/j.jcp.2017.10.042 +Walter Boscheri,Arbitrary-Lagrangian-Eulerian Discontinuous Galerkin schemes with a posteriori subcell finite volume limiting on moving unstructured meshes.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#BoscheriD17,https://doi.org/10.1016/j.jcp.2017.06.022 +Sethuraman Sankaran,A method for stochastic constrained optimization using derivative-free surrogate pattern search and collocation.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#SankaranAM10,https://doi.org/10.1016/j.jcp.2010.03.005 +Roberto Bernetti,Exact solution of the Riemann problem for the shallow water equations with discontinuous bottom geometry.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#BernettiTT08,https://doi.org/10.1016/j.jcp.2007.11.033 +Shaul Sorek,Modified Eulerian-Lagrangian formulation for hydrodynamic modeling.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#SorekB12,https://doi.org/10.1016/j.jcp.2011.12.005 +Vickie E. Lynch,An automated analysis workflow for optimization of force-field parameters using neutron scattering data.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#LynchBBGSPG17,https://doi.org/10.1016/j.jcp.2017.03.045 +Karabi Ghosh,"Comments on ""Including the effects of temperature-dependent opacities in the implicit Monte Carlo algorithm"" by N.A. Gentile [J. Comput. Phys. 230 (2011) 5100-5114].",2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#Ghosh17,https://doi.org/10.1016/j.jcp.2016.11.006 +Nadège Villedieu,Third order residual distribution schemes for the Navier-Stokes equations.,2011,230,J. Comput. Physics,11,db/journals/jcphy/jcphy230.html#VilledieuQRD11,https://doi.org/10.1016/j.jcp.2010.12.026 +Yeonjong Shin,On a near optimal sampling strategy for least squares polynomial regression.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#ShinX16,https://doi.org/10.1016/j.jcp.2016.09.032 +William Fong,The black-box fast multipole method.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#FongD09,https://doi.org/10.1016/j.jcp.2009.08.031 +Zhouhua Qiu,A Fourier-Legendre spectral element method in polar coordinates.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#QiuZMLYZ12,https://doi.org/10.1016/j.jcp.2011.10.003 +Florent Renac,Improvement of the recursive projection method for linear iterative scheme stabilization based on an approximate eigenvalue problem.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#Renac11,https://doi.org/10.1016/j.jcp.2011.03.057 +C. Kraus,Perfectly matched layers in a divergence preserving ADI scheme for electromagnetics.,2012,231,J. Comput. Physics,1,db/journals/jcphy/jcphy231.html#KrausAA12,https://doi.org/10.1016/j.jcp.2011.08.016 +Fabien Evrard,Estimation of curvature from volume fractions using parabolic reconstruction on two-dimensional unstructured meshes.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#EvrardDW17,https://doi.org/10.1016/j.jcp.2017.09.034 +Jaap J. W. van der Vegt,HP-Multigrid as Smoother algorithm for higher order discontinuous Galerkin discretizations of advection dominated flows. Part II: Optimization of the Runge-Kutta smoother.,2012,231,J. Comput. Physics,22,db/journals/jcphy/jcphy231.html#VegtR12a,https://doi.org/10.1016/j.jcp.2012.05.037 +R. E. Heath,A discontinuous Galerkin method for the Vlasov-Poisson system.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#HeathGMM12,https://doi.org/10.1016/j.jcp.2011.09.020 +Bruno Costa 0002,Multi-domain hybrid spectral-WENO methods for hyperbolic conservation laws.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#CostaD07,https://doi.org/10.1016/j.jcp.2006.11.002 +M. R. Smith,Effects of direction decoupling in flux calculation in finite volume solvers.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#SmithMA08,https://doi.org/10.1016/j.jcp.2007.12.015 +Kosala Bandara,Boundary element based multiresolution shape optimisation in electrostatics.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#BandaraCOSZ15,https://doi.org/10.1016/j.jcp.2015.05.017 +Sugata Sen,Natural norm a posteriori error estimators for reduced basis approximations.,2006,217,J. Comput. Physics,1,db/journals/jcphy/jcphy217.html#SenVHDNP06,https://doi.org/10.1016/j.jcp.2006.02.012 +Huanhuan Yang,Fast spherical centroidal Voronoi mesh generation: A Lloyd-preconditioned LBFGS method in parallel.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#YangGJ18,https://doi.org/10.1016/j.jcp.2018.04.034 +James Bremer,A Nyström method for weakly singular integral operators on surfaces.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#BremerG12,https://doi.org/10.1016/j.jcp.2012.04.003 +P. G. Kassebaum,Application of group representation theory to derive Hermite interpolation polynomials on a triangle.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#KassebaumBR12,https://doi.org/10.1016/j.jcp.2012.04.045 +Laiping Zhang,A class of hybrid DG/FV methods for conservation laws II: Two-dimensional cases.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#ZhangWHDZ12a,https://doi.org/10.1016/j.jcp.2011.03.032 +John B. Greer,Fourth order partial differential equations on general geometries.,2006,216,J. Comput. Physics,1,db/journals/jcphy/jcphy216.html#GreerBS06,https://doi.org/10.1016/j.jcp.2005.11.031 +Jialin Hong,An energy-conserving method for stochastic Maxwell equations with multiplicative noise.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#HongJZC17,https://doi.org/10.1016/j.jcp.2017.09.030 +Blaise Delmotte,A general formulation of Bead Models applied to flexible fibers and active filaments at low Reynolds number.,2015,286,J. Comput. Physics,,db/journals/jcphy/jcphy286.html#DelmotteCP15,https://doi.org/10.1016/j.jcp.2015.01.026 +Anotida Madzvamuse,Time-stepping schemes for moving grid finite elements applied to reaction-diffusion systems on fixed and growing domains.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#Madzvamuse06,https://doi.org/10.1016/j.jcp.2005.09.012 +Krzysztof J. Fidkowski,Output-based space-time mesh optimization for unsteady flows using continuous-in-time adjoints.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#Fidkowski17,https://doi.org/10.1016/j.jcp.2017.04.005 +C. L. Winter,Multivariate sensitivity analysis of saturated flow through simulated highly heterogeneous groundwater aquifers.,2006,217,J. Comput. Physics,1,db/journals/jcphy/jcphy217.html#WinterGNT06,https://doi.org/10.1016/j.jcp.2006.01.047 +G. Lin,Uncertainty quantification via random domain decomposition and probabilistic collocation on sparse grids.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#LinTT10,https://doi.org/10.1016/j.jcp.2010.05.036 +Leslie Greengard,Extension of the Lorenz-Mie-Debye method for electromagnetic scattering to the time-domain.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#GreengardHJ15,https://doi.org/10.1016/j.jcp.2015.07.009 +Torbjørn Utnes,A segregated implicit pressure projection method for incompressible flows.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#Utnes08,https://doi.org/10.1016/j.jcp.2007.11.022 +Jie Liu 0003,A second-order changing-connectivity ALE scheme and its application to FSI with large convection of fluids and near contact of structures.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#Liu16,https://doi.org/10.1016/j.jcp.2015.10.015 +Boris Gershgorin,Improving filtering and prediction of spatially extended turbulent systems with model errors through stochastic parameter estimation.,2010,229,J. Comput. Physics,1,db/journals/jcphy/jcphy229.html#GershgorinHM10a,https://doi.org/10.1016/j.jcp.2009.09.022 +David J. Horntrop,Mesoscopic simulation of Ostwald ripening.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#Horntrop06,https://doi.org/10.1016/j.jcp.2006.02.018 +William J. Rider,Accurate monotonicity- and extrema-preserving methods through adaptive nonlinear hybridizations.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#RiderGK07,https://doi.org/10.1016/j.jcp.2007.02.023 +Xiaoqiang Wang,Efficient and stable exponential time differencing Runge-Kutta methods for phase field elastic bending energy models.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#WangJD16,https://doi.org/10.1016/j.jcp.2016.04.004 +Konstantin Brenner,Hybrid-dimensional modelling of two-phase flow through fractured porous media with enhanced matrix fracture transmission conditions.,2018,357,J. Comput. Physics,,db/journals/jcphy/jcphy357.html#BrennerHMS18,https://doi.org/10.1016/j.jcp.2017.12.003 +Piotr K. Smolarkiewicz,Iterated upwind schemes for gas dynamics.,2009,228,J. Comput. Physics,1,db/journals/jcphy/jcphy228.html#SmolarkiewiczS09,https://doi.org/10.1016/j.jcp.2008.08.008 +María-Luisa Rapún,Reduced order models based on local POD plus Galerkin projection.,2010,229,J. Comput. Physics,8,db/journals/jcphy/jcphy229.html#RapunV10,https://doi.org/10.1016/j.jcp.2009.12.029 +Wei Cai,A Schwarz generalized eigen-oscillation spectral element method (GeSEM) for 2-D high frequency electromagnetic scattering in dispersive inhomogeneous media.,2008,227,J. Comput. Physics,23,db/journals/jcphy/jcphy227.html#CaiJSS08,https://doi.org/10.1016/j.jcp.2008.08.012 +Dongwoo Sohn,Finite element analysis of quasistatic crack propagation in brittle media with voids or inclusions.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#SohnLCKI11,https://doi.org/10.1016/j.jcp.2011.05.016 +Christopher Angstmann,From stochastic processes to numerical methods: A new scheme for solving reaction subdiffusion fractional partial differential equations.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#AngstmannDHJLN16,https://doi.org/10.1016/j.jcp.2015.11.053 +Nneoma Ogbonna,Decoupled overlapping grids for the numerical modeling of oil wells.,2012,231,J. Comput. Physics,1,db/journals/jcphy/jcphy231.html#OgbonnaD12,https://doi.org/10.1016/j.jcp.2011.09.002 +Takanobu Amano,A generalized quasi-neutral fluid-particle hybrid plasma model and its application to energetic-particle-magnetohydrodynamics hybrid simulation.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#Amano18,https://doi.org/10.1016/j.jcp.2018.04.020 +F. A. G. Almeida,Association of scattering matrices in quantum networks.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#AlmeidaM13,https://doi.org/10.1016/j.jcp.2013.02.044 +Matei Tene,Adaptive algebraic multiscale solver for compressible flow in heterogeneous porous media.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#TeneWH15,https://doi.org/10.1016/j.jcp.2015.08.009 +Chuanfu Xu,Collaborating CPU and GPU for large-scale high-order CFD simulations with complex grids on the TianHe-1A supercomputer.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#XuDZFWJCCWWLC14,https://doi.org/10.1016/j.jcp.2014.08.024 +B. Kubrak,Low-diffusivity scalar transport using a WENO scheme and dual meshing.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#KubrakHGW13,https://doi.org/10.1016/j.jcp.2012.12.039 +Aaron Katz,Application of strand meshes to complex aerodynamic flow fields.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#KatzWSMC11,https://doi.org/10.1016/j.jcp.2011.04.036 +Peng Zhang 0030,Extension of the noise propagation matrix method for higher mode solutions.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#ZhangLL17,https://doi.org/10.1016/j.jcp.2017.05.007 +Sijun Zhang,Generalized formulations for the Rhie-Chow interpolation.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#ZhangZB14,https://doi.org/10.1016/j.jcp.2013.11.006 +Elena Beretta,Reconstruction of a piecewise constant conductivity on a polygonal partition via shape optimization in EIT.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#BerettaMPS18,https://doi.org/10.1016/j.jcp.2017.10.017 +Matthew R. Norman,Hermite WENO limiting for multi-moment finite-volume methods using the ADER-DT time discretization for 1-D systems of conservation laws.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#Norman15,https://doi.org/10.1016/j.jcp.2014.11.017 +Yu-Hsin Shi,High resolution kinetic beam schemes in generalized coordinates for ideal quantum gas dynamics.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#ShiHY07,https://doi.org/10.1016/j.jcp.2006.08.001 +Christian Huber,A lattice Boltzmann model for coupled diffusion.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#HuberCM10,https://doi.org/10.1016/j.jcp.2010.07.002 +Nathaniel R. Morgan,A Godunov-like point-centered essentially Lagrangian hydrodynamic approach.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#MorganWBCCW15,https://doi.org/10.1016/j.jcp.2014.10.048 +David Nordsletten,A non-conforming monolithic finite element method for problems of coupled mechanics.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#NordslettenKS10,https://doi.org/10.1016/j.jcp.2010.05.043 +Christopher J. Subich,A robust moving mesh method for spectral collocation solutions of time-dependent partial differential equations.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#Subich15,https://doi.org/10.1016/j.jcp.2015.04.003 +Yasutaro Nishimura,A finite element Poisson solver for gyrokinetic particle simulations in a global field aligned mesh.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#NishimuraLLE06,https://doi.org/10.1016/j.jcp.2005.10.011 +Don S. Lemons,Small-angle Coulomb collision model for particle-in-cell simulations.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#LemonsWDA09,https://doi.org/10.1016/j.jcp.2008.10.025 +Maruti Kumar Mudunuru,On enforcing maximum principles and achieving element-wise species balance for advection-diffusion-reaction equations under the finite element method.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#MudunuruN16,https://doi.org/10.1016/j.jcp.2015.09.057 +Prateek Sharma,A fast semi-implicit method for anisotropic diffusion.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#SharmaH11,https://doi.org/10.1016/j.jcp.2011.03.009 +Hanif Montazeri,A balanced-force algorithm for two-phase flows.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#MontazeriW14,https://doi.org/10.1016/j.jcp.2013.09.054 +Grégory Huber,A time splitting projection scheme for compressible two-phase flows. Application to the interaction of bubbles with ultrasound waves.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#HuberTBG15,https://doi.org/10.1016/j.jcp.2015.09.019 +Ravindra Duddu,Diffusional evolution of precipitates in elastic media using the extended finite element and the level set methods.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#DudduCVM11,https://doi.org/10.1016/j.jcp.2010.11.002 +Kazuki Niino,Preconditioning based on Calderon's formulae for periodic fast multipole methods for Helmholtz' equation.,2012,231,J. Comput. Physics,1,db/journals/jcphy/jcphy231.html#NiinoN12,https://doi.org/10.1016/j.jcp.2011.08.019 +Kevin Carlberg,The GNAT method for nonlinear model reduction: Effective implementation and application to computational fluid dynamics and turbulent flows.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#CarlbergFCA13,https://doi.org/10.1016/j.jcp.2013.02.028 +Zhen Peng,Non-conformal domain decomposition method with second-order transmission conditions for time-harmonic electromagnetics.,2010,229,J. Comput. Physics,16,db/journals/jcphy/jcphy229.html#PengL10,https://doi.org/10.1016/j.jcp.2010.03.049 +Andrew J. Christlieb,A WENO-based Method of Lines Transpose approach for Vlasov simulations.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#ChristliebGJ16,https://doi.org/10.1016/j.jcp.2016.09.048 +Alexey G. Fatyanov,High-performance modeling acoustic and elastic waves using the parallel Dichotomy Algorithm.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#FatyanovT11,https://doi.org/10.1016/j.jcp.2010.11.046 +P.-H. Kao,An investigation into curved and moving boundary treatments in the lattice Boltzmann method.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#KaoY08,https://doi.org/10.1016/j.jcp.2008.02.002 +Daan Crommelin,Fitting *eries by continuous-time Markov chains: A quadratic programming approach.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#CrommelinV06,https://doi.org/10.1016/j.jcp.2006.01.045 +William J. Menz,Application of stochastic weighted algorithms to a multidimensional silica particle model.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#MenzPWK13,https://doi.org/10.1016/j.jcp.2013.04.010 +Jun Fang,A hybrid approach to solve the high-frequency Helmholtz equation with source singularity in smooth heterogeneous media.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#FangQZZ18,https://doi.org/10.1016/j.jcp.2018.03.011 +Xue-lei Lin,A multigrid method for linear systems arising from time-dependent two-dimensional space-fractional diffusion equations.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#LinNS17,https://doi.org/10.1016/j.jcp.2017.02.008 +Omar Abu Arqub,Constructing and predicting solitary pattern solutions for nonlinear time-fractional dispersive partial differential equations.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#ArqubEM15,https://doi.org/10.1016/j.jcp.2014.09.034 +Ercília Sousa,An explicit high order method for fractional advection diffusion equations.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#Sousa14,https://doi.org/10.1016/j.jcp.2014.08.036 +Frédéric Gibou,Efficient symmetric positive definite second-order accurate monolithic solver for fluid/solid interactions.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#GibouM12,https://doi.org/10.1016/j.jcp.2012.01.009 +Dorian Krause,Towards a large-scale scalable adaptive heart model using shallow tree meshes.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#KrauseDPK15,https://doi.org/10.1016/j.jcp.2015.05.005 +Jose J. Blanco-Pillado,A new parallel simulation technique.,2012,231,J. Comput. Physics,1,db/journals/jcphy/jcphy231.html#Blanco-PilladoOS12,https://doi.org/10.1016/j.jcp.2011.08.029 +Daniele Schiavazzi,A matching pursuit approach to solenoidal filtering of three-dimensional velocity measurements.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#SchiavazziCIE14,https://doi.org/10.1016/j.jcp.2013.12.049 +Jun Zhu,Runge-Kutta discontinuous Galerkin method using a new type of WENO limiters on unstructured meshes.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#ZhuZSQ13,https://doi.org/10.1016/j.jcp.2013.04.012 +Duncan A. Lockerby,Asynchronous coupling of hybrid models for efficient simulation of multiscale systems.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#LockerbyPBR15,https://doi.org/10.1016/j.jcp.2014.12.035 +Qianlong Liu,A Brinkman penalization method for compressible flows in complex geometries.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#LiuV07,https://doi.org/10.1016/j.jcp.2007.07.037 +S. Weggler,A new numerical method for nonlocal electrostatics in biomolecular simulations.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#WegglerRH10,https://doi.org/10.1016/j.jcp.2010.01.040 +Ken Mattsson,Diagonal-norm summation by parts operators for finite difference approximations of third and fourth derivatives.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#Mattsson14,https://doi.org/10.1016/j.jcp.2014.06.027 +Rong Kong,Transport-constrained extensions of collision and track length estimators for solutions of radiative transport problems.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#KongS13,https://doi.org/10.1016/j.jcp.2013.02.023 +Yi-Ju Chou,An Euler-Lagrange model for simulating fine particle suspension in liquid flows.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#ChouGS15,https://doi.org/10.1016/j.jcp.2015.07.038 +Peter Balogh,A computational approach to modeling cellular-scale blood flow in complex geometry.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#BaloghB17,https://doi.org/10.1016/j.jcp.2017.01.007 +D. F. Cavalca,Development and convergence analysis of an effective and robust implicit Euler solver for 3D unstructured grids.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#CavalcaBCTS18,https://doi.org/10.1016/j.jcp.2018.04.005 +Pieter D. Boom,Optimization of high-order diagonally-implicit Runge-Kutta methods.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#BoomZ18,https://doi.org/10.1016/j.jcp.2018.05.020 +Jian-Feng Cai,Blind motion deblurring using multiple images.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#CaiJLS09,https://doi.org/10.1016/j.jcp.2009.04.022 +L. Isoardi,Penalization modeling of a limiter in the Tokamak edge plasma.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#IsoardiCCHSGSST10,https://doi.org/10.1016/j.jcp.2009.11.031 +Songming Hou,Numerical method for solving matrix coefficient elliptic equation with sharp-edged interfaces.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#HouWW10,https://doi.org/10.1016/j.jcp.2010.06.005 +Yu Lv,Discontinuous Galerkin method for multicomponent chemically reacting flows and combustion.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#LvI14,https://doi.org/10.1016/j.jcp.2014.03.029 +Subhash C. Mishra,Solving transient conduction and radiation heat transfer problems using the lattice Boltzmann method and the finite volume method.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#MishraR07,https://doi.org/10.1016/j.jcp.2006.08.021 +Anthony B. Costa,Extending the length and time scales of Gram-Schmidt Lyapunov vector computations.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#CostaG13,https://doi.org/10.1016/j.jcp.2013.03.051 +P. A. Bakhvalov,Modification of Flux Correction method for accuracy improvement on unsteady problems.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#BakhvalovK17,https://doi.org/10.1016/j.jcp.2017.02.053 +Jing Gong,A stable and efficient hybrid scheme for viscous problems in complex geometries.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#GongN07,https://doi.org/10.1016/j.jcp.2007.05.018 +Jianping Meng,Diffuse reflection boundary condition for high-order lattice Boltzmann models with streaming-collision mechanism.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#MengZ14,https://doi.org/10.1016/j.jcp.2013.10.057 +Stéphane Popinet,An accurate adaptive solver for surface-tension-driven interfacial flows.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#Popinet09,https://doi.org/10.1016/j.jcp.2009.04.042 +Injae Lee,A discrete-forcing immersed boundary method for the fluid-structure interaction of an elastic slender body.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#LeeC15,https://doi.org/10.1016/j.jcp.2014.09.028 +Thomas Zauner,Application of a force field algorithm for creating strongly correlated multiscale sphere packings.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#Zauner16,https://doi.org/10.1016/j.jcp.2016.02.038 +Cheng Liu,Adaptive THINC-GFM for compressible multi-medium flows.,2017,342,J. Comput. Physics,,db/journals/jcphy/jcphy342.html#LiuH17,https://doi.org/10.1016/j.jcp.2017.04.032 +Brian C. Vermeire,On the properties of energy stable flux reconstruction schemes for implicit large eddy simulation.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#VermeireV16,https://doi.org/10.1016/j.jcp.2016.09.034 +Divakar Viswanath,Navier-Stokes solver using Green's functions I: Channel flow and plane Couette flow.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#ViswanathT13,https://doi.org/10.1016/j.jcp.2013.06.004 +Jan Nordström,On the relation between conservation and dual consistency for summation-by-parts schemes.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#NordstromG17,https://doi.org/10.1016/j.jcp.2017.04.072 +Lijie Mei,Symplectic exponential Runge-Kutta methods for solving nonlinear Hamiltonian systems.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#MeiW17,https://doi.org/10.1016/j.jcp.2017.03.018 +Keh-Ming Shyue,An Eulerian interface sharpening algorithm for compressible two-phase flow: The algebraic THINC approach.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#ShyueX14,https://doi.org/10.1016/j.jcp.2014.03.010 +Katerina Konakli,Polynomial meta-models with canonical low-rank approximations: Numerical insights and comparison to sparse polynomial chaos expansions.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#KonakliS16,https://doi.org/10.1016/j.jcp.2016.06.005 +Leonid Yelash,Adaptive discontinuous evolution Galerkin method for dry atmospheric flow.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#YelashMLGW14,https://doi.org/10.1016/j.jcp.2014.02.034 +Jianming Yang,A simple and efficient direct forcing immersed boundary framework for fluid-structure interactions.,2012,231,J. Comput. Physics,15,db/journals/jcphy/jcphy231.html#YangS12,https://doi.org/10.1016/j.jcp.2012.04.012 +Nicolay M. Tanushev,Gaussian beam decomposition of high frequency wave fields.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#TanushevET09,https://doi.org/10.1016/j.jcp.2009.08.028 +Rajapandiyan Asaithambi,A note on a conservative finite volume approach to address numerical stiffness in polar meshes.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#AsaithambiM17,https://doi.org/10.1016/j.jcp.2017.04.025 +Wanai Li,The discontinuous Galerkin spectral element methods for compressible flows on two-dimensional mixed grids.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#LiPR18,https://doi.org/10.1016/j.jcp.2018.03.001 +Xingyu Wang,AP-Cloud: Adaptive Particle-in-Cloud method for optimal solutions to Vlasov-Poisson equation.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#WangSJY16,https://doi.org/10.1016/j.jcp.2016.04.037 +Geert H. Keetels,Fourier spectral and wavelet solvers for the incompressible Navier-Stokes equations with volume-penalization: Convergence of a dipole-wall collision.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#KeetelsDKCSH07,https://doi.org/10.1016/j.jcp.2007.07.036 +F. D. Halpern,The GBS code for tokamak scrape-off layer simulations.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#HalpernRJLMMMRT16,https://doi.org/10.1016/j.jcp.2016.03.040 +Gökberk Kabacaoglu,Low-resolution simulations of vesicle suspensions in 2D.,2018,357,J. Comput. Physics,,db/journals/jcphy/jcphy357.html#KabacaogluQB18,https://doi.org/10.1016/j.jcp.2017.12.023 +Gwenn Boedec,3D vesicle dynamics simulations with a linearly triangulated surface.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#BoedecLJ11,https://doi.org/10.1016/j.jcp.2010.10.021 +Mingrong Cui,Compact alternating direction implicit method for two-dimensional time fractional diffusion equation.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#Cui12,https://doi.org/10.1016/j.jcp.2011.12.010 +Tomás Dohnal,Perfectly matched layers for coupled nonlinear Schrödinger equations with mixed derivatives.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#Dohnal09,https://doi.org/10.1016/j.jcp.2009.08.023 +Jian Du,An immersed boundary method for two-fluid mixtures.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#DuGF14,https://doi.org/10.1016/j.jcp.2014.01.008 +Björn Sjögreen,On high order finite-difference metric discretizations satisfying GCL on moving and deforming grids.,2014,265,J. Comput. Physics,,db/journals/jcphy/jcphy265.html#SjogreenYV14,https://doi.org/10.1016/j.jcp.2014.01.045 +Dominik Derigs,Ideal GLM-MHD: About the entropy consistent nine-wave magnetic field divergence diminishing ideal magnetohydrodynamics equations.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#DerigsWGWB18,https://doi.org/10.1016/j.jcp.2018.03.002 +Yen Liu,Spectral difference method for unstructured grids I: Basic formulation.,2006,216,J. Comput. Physics,2,db/journals/jcphy/jcphy216.html#LiuVW06a,https://doi.org/10.1016/j.jcp.2006.01.024 +Lin Fu,A family of high-order targeted ENO schemes for compressible-fluid simulations.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#Fu0A16,https://doi.org/10.1016/j.jcp.2015.10.037 +Matteo Cusini,Algebraic dynamic multilevel method for compositional flow in heterogeneous porous media.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#CusiniFKH18,https://doi.org/10.1016/j.jcp.2017.10.052 +R. Ostilla-Monico,A multiple-resolution strategy for Direct Numerical Simulation of scalar turbulence.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#Ostilla-MonicoY15,https://doi.org/10.1016/j.jcp.2015.08.031 +J. Blair Perot,A discrete calculus analysis of the Keller Box scheme and a generalization of the method to arbitrary meshes.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#PerotS07,https://doi.org/10.1016/j.jcp.2007.04.015 +Gerardo Tauriello,A comparative study of penalization and phase field methods for the solution of the diffusion equation in complex geometries.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#TaurielloK15,https://doi.org/10.1016/j.jcp.2014.11.033 +Roberto Garrappa,Solving the time-fractional Schrödinger equation by Krylov projection methods.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#GarrappaMP15,https://doi.org/10.1016/j.jcp.2014.09.023 +Andrew Barlow,Constrained optimization framework for interface-aware sub-scale dynamics closure model for multimaterial cells in Lagrangian and arbitrary Lagrangian-Eulerian hydrodynamics.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#BarlowHS14,https://doi.org/10.1016/j.jcp.2014.07.031 +V. Kazemi-Kamyab,Analysis and application of high order implicit Runge-Kutta schemes for unsteady conjugate heat transfer: A strongly-coupled approach.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#Kazemi-KamyabZB14,https://doi.org/10.1016/j.jcp.2014.04.016 +Nathan D. Masters,Octant flux splitting information preservation DSMC method for thermally driven flows.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#MastersY07,https://doi.org/10.1016/j.jcp.2007.06.027 +Zhaoli Guo,A comparative study of the LBE and GKS methods for 2D near incompressible laminar flows.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#GuoLLX08,https://doi.org/10.1016/j.jcp.2008.01.024 +Chohong Min,Robust second-order accurate discretizations of the multi-dimensional Heaviside and Dirac delta functions.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#MinG08,https://doi.org/10.1016/j.jcp.2008.07.021 +Qian Wang,Compact high order finite volume method on unstructured grids I: Basic formulations and one-dimensional schemes.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#WangRL16,https://doi.org/10.1016/j.jcp.2016.01.036 +Xiu Yang,Enhancing sparsity of Hermite polynomial expansions by iterative rotations.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#YangLBL16,https://doi.org/10.1016/j.jcp.2015.11.038 +Stefan Schlamp,Higher moments of the velocity distribution function in dense-gas shocks.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#SchlampH07,https://doi.org/10.1016/j.jcp.2006.09.020 +Basil Bayati,Adaptive mesh refinement for stochastic reaction-diffusion processes.,2011,230,J. Comput. Physics,1,db/journals/jcphy/jcphy230.html#BayatiCK11,https://doi.org/10.1016/j.jcp.2010.08.035 +S. V. Petropavlovsky,Non-deteriorating time domain numerical algorithms for Maxwell's electrodynamics.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#PetropavlovskyT17,https://doi.org/10.1016/j.jcp.2017.01.068 +Sailajananda Bhattacharya,Far-field approximation for hydrodynamic interactions in parallel-wall geometry.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#BhattacharyaBW06,https://doi.org/10.1016/j.jcp.2005.07.015 +Rei Kawashima,A hyperbolic-equation system approach for magnetized electron fluids in quasi-neutral plasmas.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#KawashimaKS15,https://doi.org/10.1016/j.jcp.2014.12.024 +Weixuan Li,Inverse regression-based uncertainty quantification algorithms for high-dimensional models: Theory and practice.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#LiLL16,https://doi.org/10.1016/j.jcp.2016.05.040 +J. Y. Shao,Development of an immersed boundary-phase field-lattice Boltzmann method for Neumann boundary condition to study contact line dynamics.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#ShaoSC13,https://doi.org/10.1016/j.jcp.2012.08.040 +Hideaki Miura,Hall effects and sub-grid-scale modeling in magnetohydrodynamic turbulence simulations.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#MiuraAH16,https://doi.org/10.1016/j.jcp.2016.03.067 +Aleksandar Donev,A First-Passage Kinetic Monte Carlo algorithm for complex diffusion-reaction systems.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#DonevBOGSK10,https://doi.org/10.1016/j.jcp.2009.12.038 +Georgij Bispen,Asymptotic preserving IMEX finite volume schemes for low Mach number Euler equations with gravitation.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#BispenLY17,https://doi.org/10.1016/j.jcp.2017.01.020 +J. D. Crouch,Predicting the onset of flow unsteadiness based on global instability.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#CrouchGM07,https://doi.org/10.1016/j.jcp.2006.10.035 +Oleg Davydov,Adaptive meshless centres and RBF stencils for Poisson equation.,2011,230,J. Comput. Physics,2,db/journals/jcphy/jcphy230.html#DavydovO11,https://doi.org/10.1016/j.jcp.2010.09.005 +Ira Katz,Neutral gas free molecular flow algorithm including ionization and walls for use in plasma simulations.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#KatzM11,https://doi.org/10.1016/j.jcp.2010.11.013 +Bernard Parent,Positivity-preserving high-resolution schemes for systems of conservation laws.,2012,231,J. Comput. Physics,1,db/journals/jcphy/jcphy231.html#Parent12,https://doi.org/10.1016/j.jcp.2011.09.006 +Vedran Coralic,Finite-volume WENO scheme for viscous compressible multicomponent flows.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#CoralicC14,https://doi.org/10.1016/j.jcp.2014.06.003 +Satoshi Togo,Self-consistent treatment of the sheath boundary conditions by introducing anisotropic ion temperatures and virtual divertor model.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#TogoTNHILO16,https://doi.org/10.1016/j.jcp.2016.01.011 +Wei E. I. Sha,Application of the symplectic finite-difference time-domain scheme to electromagnetic simulation.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#ShaHWC07,https://doi.org/10.1016/j.jcp.2006.11.027 +Peicheng Yu,Modeling of laser wakefield acceleration in Lorentz boosted frame using EM-PIC code with spectral solver.,2014,266,J. Comput. Physics,,db/journals/jcphy/jcphy266.html#YuXDAVTFLSM14,https://doi.org/10.1016/j.jcp.2014.02.016 +Arthur Moncorgé,Modified sequential fully implicit scheme for compositional flow simulation.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#MoncorgeTJ17,https://doi.org/10.1016/j.jcp.2017.02.032 +Alex Main,An enhanced FIVER method for multi-material flow problems with second-order convergence rate.,2017,329,J. Comput. Physics,,db/journals/jcphy/jcphy329.html#MainZAF17,https://doi.org/10.1016/j.jcp.2016.10.028 +Floraine Cordier,An Asymptotic-Preserving all-speed scheme for the Euler and Navier-Stokes equations.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#CordierDK12,https://doi.org/10.1016/j.jcp.2012.04.025 +Davide Cortinovis,Zonal Multiscale Finite-Volume framework.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#CortinovisJ17,https://doi.org/10.1016/j.jcp.2017.01.052 +Stefano Markidis,The Fluid-Kinetic Particle-in-Cell method for plasma simulations.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#MarkidisHLRHML14,https://doi.org/10.1016/j.jcp.2014.02.002 +Jitendra Kumar,Diffuse interface immersed boundary method for multi-fluid flows with arbitrarily moving rigid bodies.,2018,360,J. Comput. Physics,,db/journals/jcphy/jcphy360.html#KumarN18,https://doi.org/10.1016/j.jcp.2018.01.024 +Lorenzo Codecasa,A new set of basis functions for the discrete geometric approach.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#CodecasaST10,https://doi.org/10.1016/j.jcp.2010.06.023 +A. Froio,Design and optimization of Artificial Neural Networks for the modelling of superconducting magnets operation in tokamak fusion reactors.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#FroioBCQSZ16,https://doi.org/10.1016/j.jcp.2016.05.028 +Lijian Jiang,Multi-element least square HDMR methods and their applications for stochastic multiscale model reduction.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#JiangL15,https://doi.org/10.1016/j.jcp.2015.03.066 +Bo Kong,A solution algorithm for fluid-particle flows across all flow regimes.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#KongF17,https://doi.org/10.1016/j.jcp.2017.05.013 +Pavel Tomin,Local-global splitting for spatiotemporal-adaptive multiscale methods.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#TominL15,https://doi.org/10.1016/j.jcp.2014.09.022 +Shiwei Lan,Emulation of higher-order tensors in manifold Monte Carlo methods for Bayesian Inverse Problems.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#LanBCG16,https://doi.org/10.1016/j.jcp.2015.12.032 +Mathieu Bouffard,A particle-in-cell method for studying double-diffusive convection in the liquid layers of planetary interiors.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#BouffardLCFAT17,https://doi.org/10.1016/j.jcp.2017.06.028 +Robin C. Oliver,A stochastic finite element model for the dynamics of globular macromolecules.,2013,239,J. Comput. Physics,,db/journals/jcphy/jcphy239.html#OliverRHH13,https://doi.org/10.1016/j.jcp.2012.12.027 +Javier Murillo,Conservative numerical simulation of multi-component transport in two-dimensional unsteady shallow water flow.,2009,228,J. Comput. Physics,15,db/journals/jcphy/jcphy228.html#MurilloGB09,https://doi.org/10.1016/j.jcp.2009.04.039 +Dimitri Komatitsch,High-order finite-element seismic wave propagation modeling with MPI on a large GPU cluster.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#KomatitschEGM10,https://doi.org/10.1016/j.jcp.2010.06.024 +Yabin Zhang,A fast direct solver for boundary value problems on locally perturbed geometries.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#ZhangG18,https://doi.org/10.1016/j.jcp.2017.12.013 +Matthias Preisig,Two-phase free-surface fluid dynamics on moving domains.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#PreisigZ10,https://doi.org/10.1016/j.jcp.2009.12.020 +Christopher R. Anderson,High order expanding domain methods for the solution of Poisson's equation in infinite domains.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#Anderson16,https://doi.org/10.1016/j.jcp.2016.02.074 +Matthew Harker,Sylvester Equations and the numerical solution of partial fractional differential equations.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#HarkerO15,https://doi.org/10.1016/j.jcp.2014.12.033 +Li-Tien Cheng,Level-set minimization of potential controlled Hadwiger valuations for molecular solvation.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#ChengLW10,https://doi.org/10.1016/j.jcp.2010.07.032 +James J. Nutaro,On the stability and performance of discrete event methods for simulating continuous systems.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#NutaroZ07,https://doi.org/10.1016/j.jcp.2007.08.015 +Marianna Pepona,A coupled Immersed Boundary-Lattice Boltzmann method for incompressible flows through moving porous media.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#PeponaF16,https://doi.org/10.1016/j.jcp.2016.06.026 +V. I. Kolobov,Unified solver for rarefied and continuum flows with adaptive mesh and algorithm refinement.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#KolobovAAFZ07,https://doi.org/10.1016/j.jcp.2006.09.021 +Sergio Pirozzoli,Generalized conservative approximations of split convective derivative operators.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#Pirozzoli10,https://doi.org/10.1016/j.jcp.2010.06.006 +Yongchang Lee,A multiscale modeling technique for bridging molecular dynamics with finite element method.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#LeeB13,https://doi.org/10.1016/j.jcp.2013.06.039 +Andrew J. Christlieb,High accuracy solutions to energy gradient flows from material science models.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#ChristliebJPWW14,https://doi.org/10.1016/j.jcp.2013.09.049 +Mario Fernández-Pendás,Adaptive multi-stage integrators for optimal energy conservation in molecular simulations.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#Fernandez-Pendas16,https://doi.org/10.1016/j.jcp.2016.09.035 +Jörg Stiller,Robust multigrid for high-order discontinuous Galerkin methods: A fast Poisson solver suitable for high-aspect ratio Cartesian grids.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#Stiller16,https://doi.org/10.1016/j.jcp.2016.09.041 +Filippo Maria Denaro,What does Finite Volume-based implicit filtering really resolve in Large-Eddy Simulations?,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#Denaro11,https://doi.org/10.1016/j.jcp.2011.02.011 +David Uminsky,A multi-moment vortex method for 2D viscous fluids.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#UminskyWB12,https://doi.org/10.1016/j.jcp.2011.11.001 +Bin Xie,A multi-moment finite volume method for incompressible Navier-Stokes equations on unstructured grids: Volume-average/point-value formulation.,2014,277,J. Comput. Physics,,db/journals/jcphy/jcphy277.html#XieIIX14,https://doi.org/10.1016/j.jcp.2014.08.011 +Christoph Erath,A conservative multi-tracer transport scheme for spectral-element spherical grids.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#ErathN14,https://doi.org/10.1016/j.jcp.2013.08.050 +Georges Akiki,Immersed boundary method with non-uniform distribution of Lagrangian markers for a non-uniform Eulerian mesh.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#AkikiB16,https://doi.org/10.1016/j.jcp.2015.11.019 +Xiao Xu,A parallelized hybrid N-S/DSMC-IP approach based on adaptive structured/unstructured overlapping grids for hypersonic transitional flows.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#XuWZZT18,https://doi.org/10.1016/j.jcp.2018.05.021 +Md. Ashfaquzzaman Khan,Parallel discrete molecular dynamics simulation with speculation and in-order commitment.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#KhanH11,https://doi.org/10.1016/j.jcp.2011.05.001 +Robert K. Smith,Revisiting the Rossby-Haurwitz wave test case with contour advection.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#SmithD06,https://doi.org/10.1016/j.jcp.2006.01.011 +Peter H. Lauritzen,On simplifying 'incremental remap'-based transport schemes.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#LauritzenEM11,https://doi.org/10.1016/j.jcp.2011.06.030 +Oscar P. Bruno,"Higher-order in time ""quasi-unconditionally stable"" ADI solvers for the compressible Navier-Stokes equations in 2D and 3D curvilinear domains.",2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#BrunoC16,https://doi.org/10.1016/j.jcp.2015.12.010 +Marco Donatelli,Spectral analysis and structure preserving preconditioners for fractional diffusion equations.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#DonatelliMC16,https://doi.org/10.1016/j.jcp.2015.11.061 +Georg Bauer,An isogeometric variational multiscale method for large-eddy simulation of coupled multi-ion transport in turbulent flow.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#BauerGGW13,https://doi.org/10.1016/j.jcp.2013.05.028 +Shi Jin,A semiclassical transport model for two-dimensional thin quantum barriers.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#JinN07,https://doi.org/10.1016/j.jcp.2007.06.006 +Eugenio Oñate,Modeling incompressible flows at low and high Reynolds numbers via a finite calculus-finite element approach.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#OnateVG07,https://doi.org/10.1016/j.jcp.2007.02.026 +Aaditya V. Rangan,A simple filter for detecting low-rank submatrices.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#Rangan12a,https://doi.org/10.1016/j.jcp.2011.12.032 +Tianbai Xiao,A well-balanced unified gas-kinetic scheme for multiscale flow transport under gravitational field.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#XiaoCX17,https://doi.org/10.1016/j.jcp.2016.12.022 +Paragmoni Kalita,A novel hybrid approach with multidimensional-like effects for compressible flow computations.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#KalitaD17,https://doi.org/10.1016/j.jcp.2017.03.033 +Thomas Carraro,Coupling vs decoupling approaches for PDE/ODE systems modeling intercellular signaling.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#CarraroFG16,https://doi.org/10.1016/j.jcp.2016.03.020 +Weizhu Bao,Efficient and accurate numerical methods for the Klein-Gordon-Schrödinger equations.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#BaoY07,https://doi.org/10.1016/j.jcp.2007.02.018 +I. Yu. Gejadze,Design of the control set in the framework of variational data assimilation.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#GejadzeM16,https://doi.org/10.1016/j.jcp.2016.08.029 +Edo M. A. Frederix,Characteristics-based sectional modeling of aerosol nucleation and condensation.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#FrederixSKNG16,https://doi.org/10.1016/j.jcp.2016.09.005 +Andrea Sacchetti,Spectral splitting method for nonlinear Schrödinger equations with singular potential.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#Sacchetti07,https://doi.org/10.1016/j.jcp.2007.09.014 +Tzyy-Leng Horng,An error minimized pseudospectral penalty direct Poisson solver.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#HorngT12,https://doi.org/10.1016/j.jcp.2011.11.042 +Michel Bergmann,Optimal control of the cylinder wake in the laminar regime by trust-region methods and POD reduced-order models.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#BergmannC08,https://doi.org/10.1016/j.jcp.2008.04.034 +Andreas Asheim,Local solutions to high-frequency 2D scattering problems.,2010,229,J. Comput. Physics,14,db/journals/jcphy/jcphy229.html#AsheimH10,https://doi.org/10.1016/j.jcp.2010.03.034 +Mohammad H. Kurdi,Spectral element method in time for rapidly actuated systems.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#KurdiB08,https://doi.org/10.1016/j.jcp.2007.09.031 +John Harlim,Numerical strategies for filtering partially observed stiff stochastic differential equations.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#Harlim11,https://doi.org/10.1016/j.jcp.2010.10.016 +Massimo Camarda,A kinetic Monte Carlo method on super-lattices for the study of the defect formation in the growth of close packed structures.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#CamardaMV07,https://doi.org/10.1016/j.jcp.2007.08.036 +Christoph Erath,A new conservative numerical scheme for flow problems on unstructured grids and unbounded domains.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#Erath13,https://doi.org/10.1016/j.jcp.2013.03.055 +Nam Mai-Duy,A numerical study of strongly overdamped Dissipative Particle Dynamics (DPD) systems.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#Mai-DuyPK13,https://doi.org/10.1016/j.jcp.2013.03.013 +Ankush Sengupta,Error analysis and correction for Lattice Boltzmann simulated flow conductance in capillaries of different shapes and alignments.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#SenguptaHFB12,https://doi.org/10.1016/j.jcp.2011.12.004 +Weihua Geng,Parallel higher-order boundary integral electrostatics computation on molecular surfaces with curved triangulation.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#Geng13,https://doi.org/10.1016/j.jcp.2013.01.029 +Paul N. Racec,Eigensolutions of the Wigner-Eisenbud problem for a cylindrical nanowire within finite volume method.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#RacecSK13,https://doi.org/10.1016/j.jcp.2013.06.010 +Jochen Kursawe,Impact of implementation choices on quantitative predictions of cell-based computational models.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#KursaweBF17,https://doi.org/10.1016/j.jcp.2017.05.048 +Shi Jin,Bloch decomposition-based Gaussian beam method for the Schrödinger equation with periodic potentials.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#JinWYH10,https://doi.org/10.1016/j.jcp.2010.01.025 +Ning Du,A fast method for a generalized nonlocal elastic model.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#DuWW15,https://doi.org/10.1016/j.jcp.2015.05.008 +Lu Zhang,Fast numerical solution for fractional diffusion equations by exponential quadrature rule.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#ZhangSP15,https://doi.org/10.1016/j.jcp.2015.07.001 +Giovanni Stracquadanio,Semiconductor device design using the BiMADS algorithm.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#StracquadanioRN13,https://doi.org/10.1016/j.jcp.2013.01.025 +Johan Helsing,On a Helmholtz transmission problem in planar domains with corners.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#HelsingK18,https://doi.org/10.1016/j.jcp.2018.05.044 +Jeffery D. Densmore,Stability analysis and time-step limits for a Monte Carlo Compton-scattering method.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#DensmoreWL10,https://doi.org/10.1016/j.jcp.2010.01.022 +Adrianus T. de Hoop,The 3D wave equation and its Cartesian coordinate stretched perfectly matched embedding - A time-domain Green's function performance analysis.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#HoopRB07,https://doi.org/10.1016/j.jcp.2006.06.018 +Gioel Calabrese,Numerical stability for finite difference approximations of Einstein's equations.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#CalabreseHH06,https://doi.org/10.1016/j.jcp.2006.02.027 +Ramachandran D. Nair,A class of deformational flow test cases for linear transport problems on the sphere.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#NairL10,https://doi.org/10.1016/j.jcp.2010.08.014 +Bruno Lombard,Numerical modeling of the acoustic wave propagation across a homogenized rigid microstructure in the time domain.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#LombardMM17,https://doi.org/10.1016/j.jcp.2017.01.036 +Lijian Tan,A level set simulation of dendritic solidification of multi-component alloys.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#TanZ07b,https://doi.org/10.1016/j.jcp.2006.06.003 +Nicolas Crouseilles,Asymptotic Preserving schemes for highly oscillatory Vlasov-Poisson equations.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#CrouseillesLM13,https://doi.org/10.1016/j.jcp.2013.04.022 +Stephan Küchlin,Automatic mesh refinement and parallel load balancing for Fokker-Planck-DSMC algorithm.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#KuchlinJ18,https://doi.org/10.1016/j.jcp.2018.02.049 +Vladimir A. Titarev,Implicit high-order method for calculating rarefied gas flow in a planar microchannel.,2012,231,J. Comput. Physics,1,db/journals/jcphy/jcphy231.html#Titarev12,https://doi.org/10.1016/j.jcp.2011.08.030 +Bengt Fornberg,A numerical methodology for the Painlevé equations.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#FornbergW11,https://doi.org/10.1016/j.jcp.2011.04.007 +Eran Treister,A fast marching algorithm for the factored eikonal equation.,2016,324,J. Comput. Physics,,db/journals/jcphy/jcphy324.html#TreisterH16,https://doi.org/10.1016/j.jcp.2016.08.012 +Thomas M. M. Homolle,A low-variance deviational simulation Monte Carlo for the Boltzmann equation.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#HomolleH07,https://doi.org/10.1016/j.jcp.2007.07.006 +Bart van der Holst,Hybrid block-AMR in cartesian and curvilinear coordinates: MHD applications.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#HolstK07,https://doi.org/10.1016/j.jcp.2007.05.007 +Li Xu,High order accurate and low dissipation method for unsteady compressible viscous flow computation on helicopter rotor in forward flight.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#XuW14,https://doi.org/10.1016/j.jcp.2013.10.033 +William McLean,Time-stepping error bounds for fractional diffusion problems with non-smooth initial data.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#McLeanM15,https://doi.org/10.1016/j.jcp.2014.08.050 +Catherine Ha Ta,An integration factor method for stochastic and stiff reaction-diffusion systems.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#TaWN15,https://doi.org/10.1016/j.jcp.2015.04.028 +Michael N. Macrossan,Searching for a near neighbor particle in DSMC cells using pseudo-subcells.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#Macrossan10,https://doi.org/10.1016/j.jcp.2010.04.042 +Luca Bergamaschi,Mixed Constraint Preconditioners for the iterative solution of FE coupled consolidation equations.,2008,227,J. Comput. Physics,23,db/journals/jcphy/jcphy227.html#BergamaschiFG08,https://doi.org/10.1016/j.jcp.2008.08.002 +Dongming Wei,A level set method for the semiclassical limit of the Schrödinger equation with discontinuous potentials.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#WeiJTY10,https://doi.org/10.1016/j.jcp.2010.06.026 +Manuel Kindelan,Frequency optimized RBF-FD for wave equations.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#KindelanAG18,https://doi.org/10.1016/j.jcp.2018.06.006 +Ruslan L. Davidchack,"Corrigendum to ""Discretization errors in molecular dynamics simulations with deterministic and stochastic thermostats"" [J. Comput. Physics 229 (2010) 9323-9346].",2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#Davidchack15,https://doi.org/10.1016/j.jcp.2015.07.003 +Maël Bosson,Interactive physically-based structural modeling of hydrocarbon systems.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#BossonGBR12,https://doi.org/10.1016/j.jcp.2011.12.006 +Jeffrey W. Banks,An analysis of a new stable partitioned algorithm for FSI problems. Part I: Incompressible flow and elastic solids.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#BanksHS14a,https://doi.org/10.1016/j.jcp.2014.03.006 +Sining Yu,Matched interface and boundary (MIB) method for elliptic problems with sharp-edged interfaces.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#YuZW07,https://doi.org/10.1016/j.jcp.2006.10.030 +Jian-Jun Xu,A level-set method for two-phase flows with soluble surfactant.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#XuSL18,https://doi.org/10.1016/j.jcp.2017.10.019 +Jonathan H. Tu,An improved algorithm for balanced POD through an analytic treatment of impulse response tails.,2012,231,J. Comput. Physics,16,db/journals/jcphy/jcphy231.html#TuR12,https://doi.org/10.1016/j.jcp.2012.04.023 +Giovanni Lapenta,Exactly energy conserving semi-implicit particle in cell formulation.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#Lapenta17,https://doi.org/10.1016/j.jcp.2017.01.002 +Rémi Abgrall,Editorial.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#Abgrall16,https://doi.org/10.1016/j.jcp.2015.12.053 +Kun Wang,Error correction method for Navier-Stokes equations at high Reynolds numbers.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#WangW13,https://doi.org/10.1016/j.jcp.2013.07.042 +Robert Artebrant,Increasing the accuracy in locally divergence-preserving finite volume schemes for MHD.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#ArtebrantT08,https://doi.org/10.1016/j.jcp.2007.12.003 +Hiroaki Nishikawa,Accuracy-preserving source term quadrature for third-order edge-based discretization.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#NishikawaL17,https://doi.org/10.1016/j.jcp.2017.04.075 +Christopher J. Arthurs,Efficient simulation of cardiac electrical propagation using high order finite elements.,2012,231,J. Comput. Physics,10,db/journals/jcphy/jcphy231.html#ArthursBK12,https://doi.org/10.1016/j.jcp.2012.01.037 +Linlin Shi,Spectral element method for elastic and acoustic waves in frequency domain.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#ShiZWZLL16,https://doi.org/10.1016/j.jcp.2016.09.036 +Francesco Salvadore,GPU accelerated flow solver for direct numerical simulation of turbulent flows.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#SalvadoreBB13,https://doi.org/10.1016/j.jcp.2012.10.012 +Pierre Degond,Fluid simulations with localized boltzmann upscaling by direct simulation Monte-Carlo.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#DegondD12,https://doi.org/10.1016/j.jcp.2011.11.030 +Daniele Venturi 0002,Exact PDF equations and closure approximations for advective-reactive transport.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#VenturiTTK13,https://doi.org/10.1016/j.jcp.2013.03.001 +Laurent White,High-order regridding-remapping schemes for continuous isopycnal and generalized coordinates in ocean models.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#WhiteAH09,https://doi.org/10.1016/j.jcp.2009.08.016 +Mohamed M. Khader,Numerical treatment for solving the perturbed fractional PDEs using hybrid techniques.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#Khader13,https://doi.org/10.1016/j.jcp.2013.05.032 +Weile Jia,Fast plane wave density functional theory molecular dynamics calculations on multi-GPU machines.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#JiaFCWCGW13,https://doi.org/10.1016/j.jcp.2013.05.005 +Christian J. Cyron,Micromechanical simulations of biopolymer networks with finite elements.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#CyronMBW13,https://doi.org/10.1016/j.jcp.2012.10.025 +Patrick Jenny,Adaptive fully implicit multi-scale finite-volume method for multi-phase flow and transport in heterogeneous porous media.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#JennyLT06,https://doi.org/10.1016/j.jcp.2006.01.028 +Christophe Bogey,On the application of explicit spatial filtering to the variables or fluxes of linear equations.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#BogeyB07,https://doi.org/10.1016/j.jcp.2007.04.007 +Oscar P. Bruno,Rapidly convergent two-dimensional quasi-periodic Green function throughout the spectrum - including Wood anomalies.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#BrunoD14,https://doi.org/10.1016/j.jcp.2013.12.047 +José A. Morales Escalante,Galerkin methods for Boltzmann-Poisson transport with reflection conditions on rough boundaries.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#EscalanteG18,https://doi.org/10.1016/j.jcp.2018.02.041 +Jin Liu 0002,A continuum-atomistic simulation of heat transfer in micro- and nano-flows.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#LiuCNR07,https://doi.org/10.1016/j.jcp.2007.07.014 +Caroline Gatti-Bono,An anelastic allspeed projection method for gravitationally stratified flows.,2006,216,J. Comput. Physics,2,db/journals/jcphy/jcphy216.html#Gatti-BonoC06,https://doi.org/10.1016/j.jcp.2005.12.017 +Xun Huan,Simulation-based optimal Bayesian experimental design for nonlinear systems.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#HuanM13,https://doi.org/10.1016/j.jcp.2012.08.013 +Hongwei Liu,A Runge-Kutta discontinuous Galerkin method for viscous flow equations.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#LiuX07,https://doi.org/10.1016/j.jcp.2006.11.014 +Paul T. Lin,Performance of a parallel algebraic multilevel preconditioner for stabilized finite element semiconductor device modeling.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#LinSSTHH09,https://doi.org/10.1016/j.jcp.2009.05.024 +Alfredo Bermúdez,A projection hybrid finite volume/element method for low-Mach number flows.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#BermudezFSV14,https://doi.org/10.1016/j.jcp.2013.09.029 +Feng Xiao 0001,Revisit to the THINC scheme: A simple algebraic VOF algorithm.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#XiaoIC11,https://doi.org/10.1016/j.jcp.2011.06.012 +Satoshi Ii,High order multi-moment constrained finite volume method. Part I: Basic formulation.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#IiX09,https://doi.org/10.1016/j.jcp.2009.02.009 +Oleg Burdakov,Monotonicity recovering and accuracy preserving optimization methods for postprocessing finite element solutions.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#BurdakovKV12,https://doi.org/10.1016/j.jcp.2011.12.041 +Gianmarco Manzini,Mesh locking effects in the finite volume solution of 2-D anisotropic diffusion equations.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#ManziniP07,https://doi.org/10.1016/j.jcp.2006.05.026 +Z. Chen,An SPH model for multiphase flows with complex interfaces and large density differences.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#ChenZLZLS15,https://doi.org/10.1016/j.jcp.2014.11.037 +Yimin Zhong,An implicit boundary integral method for computing electric potential of macromolecules in solvent.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#ZhongRT18,https://doi.org/10.1016/j.jcp.2018.01.021 +Raphaël Comminal,Cellwise conservative unsplit advection for the volume of fluid method.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#ComminalSH15,https://doi.org/10.1016/j.jcp.2014.12.003 +Sylvain Desroziers,Simulation of laser propagation in a plasma with a frequency wave equation.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#DesroziersNS08,https://doi.org/10.1016/j.jcp.2007.11.008 +Tarek I. Zohdi,Numerical simulation of the impact and deposition of charged particulate droplets.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#Zohdi13,https://doi.org/10.1016/j.jcp.2012.09.012 +C. Nita,Multigrid optimization for DNS-based optimal control in turbulent channel flows.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#NitaVM18,https://doi.org/10.1016/j.jcp.2018.03.044 +D. V. Kotov,"Corrigendum to ""Numerical dissipation control in high order shock-capturing schemes for LES of low speed flows"" [J. Comput. Phys. 307 (2016) 189-202].",2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#KotovYWSK18,https://doi.org/10.1016/j.jcp.2017.10.003 +E. T. Meier,Modeling open boundaries in dissipative MHD simulation.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#MeierGLS12,https://doi.org/10.1016/j.jcp.2012.01.003 +Giacomo Dimarco,Towards an ultra efficient kinetic scheme. Part I: Basics on the BGK equation.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#DimarcoL13,https://doi.org/10.1016/j.jcp.2012.10.058 +Elena V. Akhmatskaya,GSHMC: An efficient method for molecular simulation.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#AkhmatskayaR08,https://doi.org/10.1016/j.jcp.2008.01.023 +Matias Avila,A finite element dynamical nonlinear subscale approximation for the low Mach number flow equations.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#AvilaPC11,https://doi.org/10.1016/j.jcp.2011.06.032 +Franziska Nestler,Fast Ewald summation based on NFFT with mixed periodicity.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#NestlerPP15,https://doi.org/10.1016/j.jcp.2014.12.052 +O. Furtmaier,Semi-spectral method for the Wigner equation.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#FurtmaierSM16,https://doi.org/10.1016/j.jcp.2015.11.023 +Ching Y. Loh,Multi-dimensional dissipation for cure of pathological behaviors of upwind scheme.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#LohJ09,https://doi.org/10.1016/j.jcp.2008.10.044 +Carl A. Bauer,A second-order 3D electromagnetics algorithm for curved interfaces between anisotropic dielectrics on a Yee mesh.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#BauerWC11,https://doi.org/10.1016/j.jcp.2010.12.005 +Johan Helsing,The effective conductivity of random checkerboards.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#Helsing11,https://doi.org/10.1016/j.jcp.2010.10.033 +Adrien Renaud,A Discontinuous Galerkin Material Point Method for the solution of impact problems in solid dynamics.,2018,369,J. Comput. Physics,,db/journals/jcphy/jcphy369.html#RenaudHS18,https://doi.org/10.1016/j.jcp.2018.05.001 +Rémi Abgrall,Computational science for energy research.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#AbgrallK17,https://doi.org/10.1016/j.jcp.2017.06.010 +Svetlana Dubinkina,Statistical mechanics of Arakawa's discretizations.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#DubinkinaF07,https://doi.org/10.1016/j.jcp.2007.09.002 +Ioannis Toulopoulos,Artificial boundary conditions for the numerical solution of the Euler equations by the discontinuous galerkin method.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#ToulopoulosE11,https://doi.org/10.1016/j.jcp.2011.04.008 +Matteo Cusini,Algebraic dynamic multilevel (ADM) method for fully implicit simulations of multiphase flow in porous media.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#CusiniKH16,https://doi.org/10.1016/j.jcp.2016.03.007 +María L. Garzón,Numerical simulation of non-viscous liquid pinch-off using a coupled level set-boundary integral method.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#GarzonGS09,https://doi.org/10.1016/j.jcp.2009.04.048 +Arthur Guittet,Solving elliptic problems with discontinuities on irregular domains - the Voronoi Interface Method.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#GuittetLTG15,https://doi.org/10.1016/j.jcp.2015.06.026 +Ryota Imazawa,Meshless method for solving fixed boundary problem of plasma equilibrium.,2015,292,J. Comput. Physics,,db/journals/jcphy/jcphy292.html#ImazawaKI15,https://doi.org/10.1016/j.jcp.2015.03.035 +Nicholas Zabaras,A scalable framework for the solution of stochastic inverse problems using a sparse grid collocation approach.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#ZabarasG08,https://doi.org/10.1016/j.jcp.2008.01.019 +Man Long Wong,High-order localized dissipation weighted compact nonlinear scheme for shock- and interface-capturing in compressible flows.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#WongL17,https://doi.org/10.1016/j.jcp.2017.03.008 +Davide Cortinovis,Iterative Galerkin-enriched multiscale finite-volume method.,2014,277,J. Comput. Physics,,db/journals/jcphy/jcphy277.html#CortinovisJ14,https://doi.org/10.1016/j.jcp.2014.08.019 +Franco Brezzi,Mimetic scalar products of discrete differential forms.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#BrezziBM14,https://doi.org/10.1016/j.jcp.2013.08.017 +John T. Katsikadelis,Numerical solution of distributed order fractional differential equations.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#Katsikadelis14,https://doi.org/10.1016/j.jcp.2013.11.013 +Ayako Ishii,Validation of radiative transfer computation with Monte Carlo method for ultra-relativistic background flow.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#IshiiONIY17,https://doi.org/10.1016/j.jcp.2017.07.038 +Huangxin Chen,A one-domain approach for modeling and simulation of free fluid over a porous medium.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#ChenW14,https://doi.org/10.1016/j.jcp.2013.12.008 +Romain Aubry,Deflated preconditioned conjugate gradient solvers for the Pressure-Poisson equation.,2008,227,J. Comput. Physics,24,db/journals/jcphy/jcphy227.html#AubryMLC08,https://doi.org/10.1016/j.jcp.2008.08.025 +S. V. Diwakar,A Quadratic Spline based Interface (QUASI) reconstruction algorithm for accurate tracking of two-phase flows.,2009,228,J. Comput. Physics,24,db/journals/jcphy/jcphy228.html#DiwakarDS09,https://doi.org/10.1016/j.jcp.2009.09.014 +Juan-Chen Huang,A conservative discrete ordinate method for solving semiclassical Boltzmann-BGK equation with Maxwell type wall boundary condition.,2015,290,J. Comput. Physics,,db/journals/jcphy/jcphy290.html#HuangHY15,https://doi.org/10.1016/j.jcp.2015.02.037 +Mark Owkes,A mass and momentum conserving unsplit semi-Lagrangian framework for simulating multiphase flows.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#OwkesD17,https://doi.org/10.1016/j.jcp.2016.11.046 +Anna-Karin Tornberg,A fast multipole method for the three-dimensional Stokes equations.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#TornbergG08,https://doi.org/10.1016/j.jcp.2007.06.029 +Hassan Safouhi,The Fourier transform method and the SD approach for the analytical and numerical treatment of multicenter overlap-like quantum similarity integrals.,2006,216,J. Comput. Physics,1,db/journals/jcphy/jcphy216.html#SafouhiB06,https://doi.org/10.1016/j.jcp.2005.11.020 +S.-L. Chang,Computing wave functions of nonlinear Schrödinger equations: A time-independent approach.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#ChangCJ07,https://doi.org/10.1016/j.jcp.2007.03.028 +Bin Liu,An effective bead-spring model for polymer simulation.,2008,227,J. Comput. Physics,5,db/journals/jcphy/jcphy227.html#LiuWFKG08,https://doi.org/10.1016/j.jcp.2007.11.012 +Guillermo Artana,Strong and weak constraint variational assimilations for reduced order fluid flow modeling.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#ArtanaCCM12,https://doi.org/10.1016/j.jcp.2012.01.010 +Xuan Zhao,A positivity-preserving semi-implicit discontinuous Galerkin scheme for solving extended magnetohydrodynamics equations.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#ZhaoYS14,https://doi.org/10.1016/j.jcp.2014.08.044 +François Fraysse,Quasi-a priori truncation error estimation and higher order extrapolation for non-linear partial differential equations.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#FraysseVR13,https://doi.org/10.1016/j.jcp.2013.07.018 +Jinyong Ying,A new finite element and finite difference hybrid method for computing electrostatics of ionic solvated biomolecule.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#YingX15,https://doi.org/10.1016/j.jcp.2015.06.016 +Assyr Abdulle,A reduced basis localized orthogonal decomposition.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#AbdulleH15,https://doi.org/10.1016/j.jcp.2015.04.016 +Jeremy O. McCaslin,A fast marching approach to multidimensional extrapolation.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#McCaslinCD14,https://doi.org/10.1016/j.jcp.2014.06.023 +Sébastien Blaise,Discontinuous Galerkin unsteady discrete adjoint method for real-time efficient Tsunami simulations.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#BlaiseSML13,https://doi.org/10.1016/j.jcp.2012.08.022 +Kenji Miki,"Corrigendum to ""Probabilistic models and uncertainty quantification for the ionization reaction rate of atomic Nitrogen"" [JCOMP 231(9) (2012) 3871-3886].",2012,231,J. Comput. Physics,15,db/journals/jcphy/jcphy231.html#MikiPPP12a,https://doi.org/10.1016/j.jcp.2012.04.030 +Vrushali A. Bokil,Energy stable discontinuous Galerkin methods for Maxwell's equations in nonlinear optical media.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#BokilCJL17,https://doi.org/10.1016/j.jcp.2017.08.009 +Lei Wu 0003,A fast iterative scheme for the linearized Boltzmann equation.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#WuZLZR17,https://doi.org/10.1016/j.jcp.2017.03.002 +Guilherme Cunha,On the effective accuracy of spectral-like optimized finite-difference schemes for computational aeroacoustics.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#CunhaR14,https://doi.org/10.1016/j.jcp.2014.01.024 +Qiqi Wang,Forward and adjoint sensitivity computation of chaotic dynamical systems.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#Wang13,https://doi.org/10.1016/j.jcp.2012.09.007 +Kirill Serkh,On the solution of elliptic partial differential equations on regions with corners.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#SerkhR16,https://doi.org/10.1016/j.jcp.2015.10.024 +Lode Pollet,Engineering local optimality in quantum Monte Carlo algorithms.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#PolletHR07,https://doi.org/10.1016/j.jcp.2007.03.013 +Pierre Degond,Asymptotic-Preserving Particle-In-Cell methods for the Vlasov-Maxwell system in the quasi-neutral limit.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#DegondDD17,https://doi.org/10.1016/j.jcp.2016.11.018 +Ping Fan,An efficient front-tracking method for fully nonlinear interfacial waves.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#Fan08,https://doi.org/10.1016/j.jcp.2008.04.021 +John D. Towers,A convergence rate theorem for finite difference approximations to delta functions.,2008,227,J. Comput. Physics,13,db/journals/jcphy/jcphy227.html#Towers08,https://doi.org/10.1016/j.jcp.2008.03.019 +Jukka A. Heikkinen,Full f gyrokinetic method for particle simulation of tokamak transport.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#HeikkinenJKO08,https://doi.org/10.1016/j.jcp.2008.02.013 +Riccardo Rossi,Direct numerical simulation of scalar transport using unstructured finite-volume schemes.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#Rossi09,https://doi.org/10.1016/j.jcp.2008.11.001 +Hadi Hajibeygi,A hierarchical fracture model for the iterative multiscale finite volume method.,2011,230,J. Comput. Physics,24,db/journals/jcphy/jcphy230.html#HajibeygiKJ11,https://doi.org/10.1016/j.jcp.2011.08.021 +Lennart Schneiders,An accurate moving boundary formulation in cut-cell methods.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#SchneidersHMS13,https://doi.org/10.1016/j.jcp.2012.09.038 +Jianqiang Wang,Modified Particle Method with integral Navier-Stokes formulation for incompressible flows.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#WangZ18,https://doi.org/10.1016/j.jcp.2018.03.043 +Chet Nieter,Application of Dey-Mittra conformal boundary algorithm to 3D electromagnetic modeling.,2009,228,J. Comput. Physics,21,db/journals/jcphy/jcphy228.html#NieterCWSS09,https://doi.org/10.1016/j.jcp.2009.07.025 +Lorenzo Botti,h-multigrid agglomeration based solution strategies for discontinuous Galerkin discretizations of incompressible flow problems.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#BottiCB17,https://doi.org/10.1016/j.jcp.2017.07.002 +Ching-Long Lin,Preface.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#LinPK13,https://doi.org/10.1016/j.jcp.2013.02.004 +Xiyang I. A. Yang,Acceleration of the Jacobi iterative method by factors exceeding 100 using scheduled relaxation.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#YangM14,https://doi.org/10.1016/j.jcp.2014.06.010 +C. Gorria,Discrete conservation laws and the convergence of long time simulations of the mkdv equation.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#GorriaAV13,https://doi.org/10.1016/j.jcp.2012.10.044 +Lin Lin 0001,Optimized local basis set for Kohn-Sham density functional theory.,2012,231,J. Comput. Physics,13,db/journals/jcphy/jcphy231.html#LinLYE12a,https://doi.org/10.1016/j.jcp.2012.03.009 +Jun Zhu,Runge-Kutta discontinuous Galerkin method using WENO limiters II: Unstructured meshes.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#ZhuQSD08,https://doi.org/10.1016/j.jcp.2007.12.024 +Ryan G. McClarren,Robust and accurate filtered spherical harmonics expansions for radiative transfer.,2010,229,J. Comput. Physics,16,db/journals/jcphy/jcphy229.html#McClarrenH10,https://doi.org/10.1016/j.jcp.2010.03.043 +Giovanni Lapenta,Cost-effectiveness of fully implicit moving mesh adaptation: A practical investigation in 1D.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#LapentaC06,https://doi.org/10.1016/j.jcp.2006.03.011 +Daniele A. Di Pietro,Discontinuous Skeletal Gradient Discretisation methods on polytopal meshes.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#PietroDM18,https://doi.org/10.1016/j.jcp.2017.11.018 +Qing Pan,Isogeometric analysis based on extended Loop's subdivision.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#PanXXZ15,https://doi.org/10.1016/j.jcp.2015.06.044 +Luise Blank,Preconditioning for Allen-Cahn variational inequalities with non-local constraints.,2012,231,J. Comput. Physics,16,db/journals/jcphy/jcphy231.html#BlankSS12,https://doi.org/10.1016/j.jcp.2012.04.035 +Ben Thornber,On entropy generation and dissipation of kinetic energy in high-resolution shock-capturing schemes.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#ThornberDWY08,https://doi.org/10.1016/j.jcp.2008.01.035 +Shuai Wang,A pyramid scheme for three-dimensional diffusion equations on polyhedral meshes.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#WangHY17,https://doi.org/10.1016/j.jcp.2017.08.060 +Takashi Minoshima,Multi-moment advection scheme in three dimension for Vlasov simulations of magnetized plasma.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#MinoshimaMA13,https://doi.org/10.1016/j.jcp.2012.11.024 +Emil Coyajee,Numerical simulation of drop impact on a liquid-liquid interface with a multiple marker front-capturing method.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#CoyajeeB09,https://doi.org/10.1016/j.jcp.2009.03.014 +Phillip G. Schmitz,A fast direct solver for elliptic problems on general meshes in 2D.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#SchmitzY12,https://doi.org/10.1016/j.jcp.2011.10.013 +Xiangyu Hu 0002,An incompressible multi-phase SPH method.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#HuA07,https://doi.org/10.1016/j.jcp.2007.07.013 +Nolwenn Balin,Boundary element and finite element coupling for aeroacoustics simulations.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#BalinCDDDT15,https://doi.org/10.1016/j.jcp.2015.03.044 +Antoine Lejay,Simulating diffusion processes in discontinuous media: A numerical scheme with constant time steps.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#LejayP12,https://doi.org/10.1016/j.jcp.2012.07.011 +L. H. Han,Adaptive multi-resolution method for compressible multi-phase flows with sharp interface model and pyramid data structure.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#HanHA14,https://doi.org/10.1016/j.jcp.2013.12.061 +David J. Biagioni,Randomized interpolative decomposition of separated representations.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#BiagioniBB15,https://doi.org/10.1016/j.jcp.2014.10.009 +Jeffrey A. F. Hittinger,Block-structured adaptive mesh refinement algorithms for Vlasov simulation.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#HittingerB13,https://doi.org/10.1016/j.jcp.2013.01.030 +Andrea Villa,An asymptotic preserving scheme for the streamer simulation.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#VillaBGM13,https://doi.org/10.1016/j.jcp.2013.02.016 +Pavel Váchal,On preservation of symmetry in r-z staggered Lagrangian schemes.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#VachalW16,https://doi.org/10.1016/j.jcp.2015.11.063 +C. Ma,Numerical modeling of thermocapillary two-phase flows with evaporation using a two-scalar approach for heat transfer.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#MaB13,https://doi.org/10.1016/j.jcp.2012.09.011 +Kunlun Liu,Inflow conditions for the large eddy simulation of turbulent boundary layers: A dynamic recycling procedure.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#LiuP06,https://doi.org/10.1016/j.jcp.2006.04.004 +Jürgen De Zaeytijd,An efficient hybrid MLFMA-FFT solver for the volume integral equation in case of sparse 3D inhomogeneous dielectric scatterers.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#ZaeytijdBF08,https://doi.org/10.1016/j.jcp.2008.04.009 +Adrian Sandu,Discrete second order adjoints in atmospheric chemical transport modeling.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#SanduZ08,https://doi.org/10.1016/j.jcp.2008.02.011 +Shu-Jie Li,An exponential time-integrator scheme for steady and unsteady inviscid flows.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#LiLWJ18,https://doi.org/10.1016/j.jcp.2018.03.020 +Brian C. Vermeire,On the utility of GPU accelerated high-order methods for unsteady flow simulations: A comparison with industry-standard tools.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#VermeireWV17,https://doi.org/10.1016/j.jcp.2016.12.049 +Sébastian Minjeaud,An adaptive pressure correction method without spurious velocities for diffuse-interface models of incompressible flows.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#Minjeaud13,https://doi.org/10.1016/j.jcp.2012.11.022 +Hiroshi Terashima,Approach for simulating gas-liquid-like flows under supercritical pressures using a high-order central differencing scheme.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#TerashimaK12,https://doi.org/10.1016/j.jcp.2012.06.021 +Gregory R. Carmichael,Predicting air quality: Improvements through advanced methods to integrate models and measurements.,2008,227,J. Comput. Physics,7,db/journals/jcphy/jcphy227.html#CarmichaelSCDCT08,https://doi.org/10.1016/j.jcp.2007.02.024 +Yohei Sato,A new contact line treatment for a conservative level set method.,2012,231,J. Comput. Physics,10,db/journals/jcphy/jcphy231.html#SatoN12,https://doi.org/10.1016/j.jcp.2012.01.034 +Stephan Schwarz,An immersed boundary method for the simulation of bubbles with varying shape.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#SchwarzKF16,https://doi.org/10.1016/j.jcp.2016.01.033 +Bernardo Cockburn,An adaptive spectral/DG method for a reduced phase-space based level set approach to geometrical optics on curved elements.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#CockburnKR14,https://doi.org/10.1016/j.jcp.2013.12.018 +Alexander Sommer,Certified dual-corrected radiation patterns of phased antenna arrays by offline-online order reduction of finite-element models.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#SommerFD15,https://doi.org/10.1016/j.jcp.2015.06.024 +Paul K. Romano,Data decomposition of Monte Carlo particle transport simulations via tally servers.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#RomanoSFS13,https://doi.org/10.1016/j.jcp.2013.06.011 +A. L. Rosen,Hybrid Adaptive Ray-Moment Method (HARM2): A highly parallel method for radiation hydrodynamics on adaptive grids.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#RosenKOLK17,https://doi.org/10.1016/j.jcp.2016.10.048 +Frans H. Ebersohn,Kinetic simulation technique for plasma flow in strong external magnetic field.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#EbersohnSGS17,https://doi.org/10.1016/j.jcp.2017.09.021 +Federico Fuentes,Coupled variational formulations of linear elasticity and the DPG methodology.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#FuentesKDT17,https://doi.org/10.1016/j.jcp.2017.07.051 +Laslo T. Diosady,Tensor-product preconditioners for higher-order space-time discontinuous Galerkin methods.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#DiosadyM17,https://doi.org/10.1016/j.jcp.2016.11.022 +Olivier Le Métayer,A discrete model for compressible flows in heterogeneous media.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#MetayerMFH11,https://doi.org/10.1016/j.jcp.2010.12.020 +Hailiang Liu,A free energy satisfying finite difference method for Poisson-Nernst-Planck equations.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#LiuW14,https://doi.org/10.1016/j.jcp.2014.02.036 +Gaëtan Compère,Transient adaptivity applied to two-phase incompressible flows.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#CompereMR08,https://doi.org/10.1016/j.jcp.2007.10.002 +Maxim A. Olshanskii,Velocity-vorticity-helicity formulation and a solver for the Navier-Stokes equations.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#OlshanskiiR10,https://doi.org/10.1016/j.jcp.2010.02.012 +Lajos Szalmás,A fast iterative model for discrete velocity calculations on triangular grids.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#SzalmasV10,https://doi.org/10.1016/j.jcp.2010.02.015 +Andrew J. Majda,New perspectives on superparameterization for geophysical turbulence.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#MajdaG14,https://doi.org/10.1016/j.jcp.2013.09.014 +Peng Zhang 0006,A multiple time stepping algorithm for efficient multiscale modeling of platelets flowing in blood plasma.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#ZhangZDB15,https://doi.org/10.1016/j.jcp.2015.01.004 +Ben-Wen Li,Schur-decomposition for 3D matrix equations and its application in solving radiative discrete ordinates equations discretized by Chebyshev collocation spectral method.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#LiTSH10,https://doi.org/10.1016/j.jcp.2009.10.025 +Cyril Misev,Steepest descent optimisation of Runge-Kutta coefficients for second order implicit finite volume CFD codes.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#MisevH18,https://doi.org/10.1016/j.jcp.2017.09.008 +Marzio Piller,Compact finite volume schemes on boundary-fitted grids.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#PillerS08,https://doi.org/10.1016/j.jcp.2008.01.022 +Peter N. Blossey,Selective monotonicity preservation in scalar advection.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#BlosseyD08,https://doi.org/10.1016/j.jcp.2008.01.043 +Lise-Marie Imbert-Gérard,Well-posedness and generalized plane waves simulations of a 2D mode conversion model.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#Imbert-Gerard15,https://doi.org/10.1016/j.jcp.2015.09.033 +Francisco Guillén-González,Unconditionally energy stable numerical schemes for phase-field vesicle membrane model.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#Guillen-Gonzalez18,https://doi.org/10.1016/j.jcp.2017.10.060 +Guy Baruch,A high-order numerical method for the nonlinear Helmholtz equation in multidimensional layered media.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#BaruchFT09,https://doi.org/10.1016/j.jcp.2009.02.014 +Davod Alizadehrad,Static and dynamic properties of smoothed dissipative particle dynamics.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#AlizadehradF18,https://doi.org/10.1016/j.jcp.2017.12.009 +Santiago Badia,Coupling Biot and Navier-Stokes equations for modelling fluid-poroelastic media interaction.,2009,228,J. Comput. Physics,21,db/journals/jcphy/jcphy228.html#BadiaQQ09,https://doi.org/10.1016/j.jcp.2009.07.019 +A. R. Long,The iterative thermal emission method: A more implicit modification of IMC.,2014,277,J. Comput. Physics,,db/journals/jcphy/jcphy277.html#LongGP14,https://doi.org/10.1016/j.jcp.2014.08.017 +Mikhail A. Tolstykh,Vorticity-divergence mass-conserving semi-Lagrangian shallow-water model using the reduced grid on the sphere.,2012,231,J. Comput. Physics,11,db/journals/jcphy/jcphy231.html#TolstykhS12,https://doi.org/10.1016/j.jcp.2012.02.016 +Xue-Hong Wu,A stabilized MLPG method for steady state incompressible fluid flow simulation.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#WuTSZ10,https://doi.org/10.1016/j.jcp.2010.08.001 +Gabriele Manoli,An iterative particle filter approach for coupled hydro-geophysical inversion of a controlled infiltration experiment.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#ManoliRPDFCP15,https://doi.org/10.1016/j.jcp.2014.11.035 +Guanghui Hu,Simulating finger phenomena in porous media with a moving finite element method.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#HuZ11,https://doi.org/10.1016/j.jcp.2011.01.031 +Jim E. Morel,Linear multifrequency-grey acceleration recast for preconditioned Krylov iterations.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#MorelYW07,https://doi.org/10.1016/j.jcp.2007.07.033 +Ville Honkkila,HLLC solver for ideal relativistic MHD.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#HonkkilaJ07,https://doi.org/10.1016/j.jcp.2006.09.027 +Bogdan Rosa,An accurate and efficient method for treating aerodynamic interactions of cloud droplets.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#RosaWMG11,https://doi.org/10.1016/j.jcp.2011.07.012 +E. Farhi,Virtual experiments: Combining realistic neutron scattering instrument and sample simulations.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#FarhiHJK09,https://doi.org/10.1016/j.jcp.2009.04.006 +Shi Jin,Computational high frequency waves through curved interfaces via the Liouville equation and geometric theory of diffraction.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#JinY08,https://doi.org/10.1016/j.jcp.2008.02.029 +Peter E. Vincent,Insights from von Neumann analysis of high-order flux reconstruction schemes.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#VincentCJ11,https://doi.org/10.1016/j.jcp.2011.07.013 +Xin Liu,Well-balanced central-upwind scheme for a fully coupled shallow water system modeling flows over erodible bed.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#LiuMKS15,https://doi.org/10.1016/j.jcp.2015.07.043 +E. Sousa,A blended continuous-discontinuous finite element method for solving the multi-fluid plasma model.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#SousaS16,https://doi.org/10.1016/j.jcp.2016.08.044 +Yu Chen,On the inverse scattering problem in the acoustic environment.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#ChenDR09,https://doi.org/10.1016/j.jcp.2008.12.034 +Xuan Zhou,A novel three-dimensional mesh deformation method based on sphere relaxation.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#ZhouL15,https://doi.org/10.1016/j.jcp.2015.05.046 +Dingyi Pan,Numerical investigations on the compressibility of a DPD fluid.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#PanPMK13,https://doi.org/10.1016/j.jcp.2013.02.013 +Yi Li,Accurate computation of Stokes flow driven by an open immersed interface.,2012,231,J. Comput. Physics,15,db/journals/jcphy/jcphy231.html#LiL12,https://doi.org/10.1016/j.jcp.2012.04.020 +R. M. J. Kramer,Nondissipative and energy-stable high-order finite-difference interface schemes for 2-D patch-refined grids.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#KramerPP09,https://doi.org/10.1016/j.jcp.2009.04.010 +Dominik L. Michels,A semi-analytical approach to molecular dynamics.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#MichelsD15,https://doi.org/10.1016/j.jcp.2015.10.009 +Guanghui Hu,An adaptive finite volume solver for steady Euler equations with non-oscillatory k-exact reconstruction.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#HuY16,https://doi.org/10.1016/j.jcp.2016.02.019 +Xiaomin Pan,A decoupled monolithic projection method for natural convection problems.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#PanKLC16,https://doi.org/10.1016/j.jcp.2016.03.019 +Mohammad Robiul Hossan,Hybrid immersed interface-immersed boundary methods for AC dielectrophoresis.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#HossanDD14,https://doi.org/10.1016/j.jcp.2014.04.012 +D. Dragna,Analysis of the dissipation and dispersion properties of the multi-domain Chebyshev pseudospectral method.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#DragnaBHB13,https://doi.org/10.1016/j.jcp.2013.07.036 +Predrag Lazic,The Robin Hood method - A novel numerical method for electrostatic problems based on a non-local charge transfer.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#LazicSA06,https://doi.org/10.1016/j.jcp.2005.08.006 +Diogo M. C. Martins,Continuity constrained least-squares interpolation for SFO suppression in immersed boundary methods.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#MartinsAP17,https://doi.org/10.1016/j.jcp.2017.02.026 +Janusz Andrzejewski,On optimizing Jacobi-Davidson method for calculating eigenvalues in low dimensional structures using eight band k and* p model.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#Andrzejewski13,https://doi.org/10.1016/j.jcp.2013.04.003 +Qinwu Xu,Stable multi-domain spectral penalty methods for fractional partial differential equations.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#XuH14,https://doi.org/10.1016/j.jcp.2013.09.041 +Martin Berggren,Acoustic boundary layers as boundary conditions.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#BerggrenBN18,https://doi.org/10.1016/j.jcp.2018.06.005 +Anne-Sophie Bonnet-Ben Dhia,On the use of Perfectly Matched Layers at corners for scattering problems with sign-changing coefficients.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#DhiaCCC16,https://doi.org/10.1016/j.jcp.2016.06.037 +Niranjan S. Ghaisas,A unified high-order Eulerian method for continuum simulations of fluid flow and of elastic-plastic deformations in solids.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#GhaisasSL18,https://doi.org/10.1016/j.jcp.2018.05.035 +Gianluca Lavalle,A numerical reduced model for thin liquid films sheared by a gas flow.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#LavalleVBLC15,https://doi.org/10.1016/j.jcp.2015.08.018 +Hinrich Lütjens,The XTOR code for nonlinear 3D simulations of MHD instabilities in tokamak plasmas.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#LutjensL08,https://doi.org/10.1016/j.jcp.2008.04.003 +Albert Y. Tong,A numerical method for capillarity-dominant free surface flows.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#TongW07,https://doi.org/10.1016/j.jcp.2006.06.034 +Håvard Berland,Conservation of phase space properties using exponential integrators on the cubic Schrödinger equation.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#BerlandIS07,https://doi.org/10.1016/j.jcp.2006.11.030 +Nathaniel Trask,Compact moving least squares: An optimization framework for generating high-order compact meshless discretizations.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#TraskMH16,https://doi.org/10.1016/j.jcp.2016.08.045 +G. Capdeville,A central WENO scheme for solving hyperbolic conservation laws on non-uniform meshes.,2008,227,J. Comput. Physics,5,db/journals/jcphy/jcphy227.html#Capdeville08a,https://doi.org/10.1016/j.jcp.2007.11.029 +Murthy N. Guddati,Exponential convergence through linear finite element discretization of stratified subdomains.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#GuddatiDA16,https://doi.org/10.1016/j.jcp.2016.06.045 +Juntao Huang,Bound-preserving modified exponential Runge-Kutta discontinuous Galerkin methods for scalar hyperbolic equations with stiff source terms.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#HuangS18,https://doi.org/10.1016/j.jcp.2018.01.051 +Xiangyu Hu 0002,On the HLLC Riemann solver for interface interaction in compressible multi-fluid flow.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#HuAI09,https://doi.org/10.1016/j.jcp.2009.06.002 +Stéphanie Chaillat,Fast iterative boundary element methods for high-frequency scattering problems in 3D elastodynamics.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#ChaillatDL17,https://doi.org/10.1016/j.jcp.2017.04.020 +Howard C. Elman,A taxonomy and comparison of parallel block multi-level preconditioners for the incompressible Navier-Stokes equations.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#ElmanHSST08,https://doi.org/10.1016/j.jcp.2007.09.026 +Thomas A. Gardiner,An unsplit Godunov method for ideal MHD via constrained transport in three dimensions.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#GardinerS08,https://doi.org/10.1016/j.jcp.2007.12.017 +Bojana V. Rosic,Sampling-free linear Bayesian update of polynomial chaos representations.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#RosicLPM12,https://doi.org/10.1016/j.jcp.2012.04.044 +A. P. Markesteijn,Time asynchronous relative dimension in space method for multi-scale problems in fluid dynamics.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#MarkesteijnK14,https://doi.org/10.1016/j.jcp.2013.10.035 +Lucas O. Müller,Consistent treatment of viscoelastic effects at junctions in one-dimensional blood flow models.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#MullerLB16,https://doi.org/10.1016/j.jcp.2016.03.012 +Yann Moguen,Godunov-type schemes with an inertia term for unsteady full Mach number range flow calculations.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#MoguenDPBD15,https://doi.org/10.1016/j.jcp.2014.10.041 +Philipp Rauschenberger,Direct numerical simulation of rigid bodies in multiphase flow within an Eulerian framework.,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#RauschenbergerW15a,https://doi.org/10.1016/j.jcp.2015.03.023 +Kentaro Yaji,Topology optimization in thermal-fluid flow using the lattice Boltzmann method.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#YajiYYMIN16,https://doi.org/10.1016/j.jcp.2015.12.008 +Yuri A. Omelchenko,HYPERS: A unidimensional asynchronous framework for multiscale hybrid simulations.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#OmelchenkoK12,https://doi.org/10.1016/j.jcp.2011.11.004 +Manuel Torrilhon,Boundary conditions for regularized 13-moment-equations for micro-channel-flows.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#TorrilhonS08,https://doi.org/10.1016/j.jcp.2007.10.006 +Mostafa Faghih Shojaei,Compatible-strain mixed finite element methods for incompressible nonlinear elasticity.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#ShojaeiY18,https://doi.org/10.1016/j.jcp.2018.01.053 +K. S. C. Peerenboom,On the ambipolar constraint in multi-component diffusion problems.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#PeerenboomDGM11,https://doi.org/10.1016/j.jcp.2011.02.029 +Tsorng-Whay Pan,A DLM/FD/IB method for simulating compound vesicle motion under creeping flow condition.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#PanZNG15,https://doi.org/10.1016/j.jcp.2015.07.057 +Salvatore Marrone,An accurate SPH modeling of viscous flows around bodies at low and moderate Reynolds numbers.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#MarroneCACG13,https://doi.org/10.1016/j.jcp.2013.03.011 +Gowri Srinivasan,Random walk particle tracking simulations of non-Fickian transport in heterogeneous media.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#SrinivasanTDVBR10,https://doi.org/10.1016/j.jcp.2010.02.014 +Mark R. Dowling,Monte Carlo techniques for real-time quantum dynamics.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#DowlingDDC07,https://doi.org/10.1016/j.jcp.2006.05.017 +Christopher A. Kennedy,Reduced aliasing formulations of the convective terms within the Navier-Stokes equations for a compressible fluid.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#KennedyG08,https://doi.org/10.1016/j.jcp.2007.09.020 +Chan-Sun Shin,Numerical methods to improve the computing efficiency of discrete dislocation dynamics simulations.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#ShinFVK06,https://doi.org/10.1016/j.jcp.2005.10.025 +B. Shanker,Accelerated Cartesian expansions - A fast method for computing of potentials of the form R-ν for all real ν.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#ShankerH07,https://doi.org/10.1016/j.jcp.2007.04.033 +Christian Prax,Control of the vorticity mode in the linearized Euler equations for hybrid aeroacoustic prediction.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#PraxGN08,https://doi.org/10.1016/j.jcp.2008.02.022 +Wellington C. de Jesus,A 3D front-tracking approach for simulation of a two-phase fluid with insoluble surfactant.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#JesusRPVS15,https://doi.org/10.1016/j.jcp.2014.10.021 +Jaap J. W. van der Vegt,hp-Multigrid as Smoother algorithm for higher order discontinuous Galerkin discretizations of advection dominated flows: Part I. Multilevel analysis.,2012,231,J. Comput. Physics,22,db/journals/jcphy/jcphy231.html#VegtR12,https://doi.org/10.1016/j.jcp.2012.05.038 +A. K. Das,Modeling of liquid-vapor phase change using smoothed particle hydrodynamics.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#DasD15,https://doi.org/10.1016/j.jcp.2015.09.026 +William D. Henshaw,Moving overlapping grids with adaptive mesh refinement for high-speed reactive and non-reactive flow.,2006,216,J. Comput. Physics,2,db/journals/jcphy/jcphy216.html#HenshawS06,https://doi.org/10.1016/j.jcp.2006.01.005 +Alexander Hay,Reduced-order models for parameter dependent geometries based on shape sensitivity analysis.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#HayBAP10,https://doi.org/10.1016/j.jcp.2009.10.033 +Philippe Angot,An optimal penalty method for a hyperbolic system modeling the edge plasma transport in a tokamak.,2014,261,J. Comput. Physics,,db/journals/jcphy/jcphy261.html#AngotAG14,https://doi.org/10.1016/j.jcp.2013.12.037 +M. Ganesh,A reduced basis method for electromagnetic scattering by multiple particles in three dimensions.,2012,231,J. Comput. Physics,23,db/journals/jcphy/jcphy231.html#GaneshHS12,https://doi.org/10.1016/j.jcp.2012.07.008 +Xianglong Kong,Particle-in-cell simulations with charge-conserving current deposition on graphic processing units.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#KongHRD11,https://doi.org/10.1016/j.jcp.2010.11.032 +Lucia Rueda Villegas,A Ghost Fluid/Level Set Method for boiling flows and liquid evaporation: Application to the Leidenfrost effect.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#VillegasALT16,https://doi.org/10.1016/j.jcp.2016.04.031 +Armando Coco,Second order finite-difference ghost-point multigrid methods for elliptic problems with discontinuous coefficients on an arbitrary interface.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#CocoR18,https://doi.org/10.1016/j.jcp.2018.01.016 +Wei Shi,Explicit multi-symplectic extended leap-frog methods for Hamiltonian wave equations.,2012,231,J. Comput. Physics,22,db/journals/jcphy/jcphy231.html#ShiWX12,https://doi.org/10.1016/j.jcp.2012.07.004 +Benjamin Kadoch,A volume penalization method for incompressible flows and scalar advection-diffusion with moving obstacles.,2012,231,J. Comput. Physics,12,db/journals/jcphy/jcphy231.html#KadochKAS12,https://doi.org/10.1016/j.jcp.2012.01.036 +Francesco Miniati,A modified higher order Godunov's scheme for stiff source conservative hydrodynamics.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#MiniatiC07a,https://doi.org/10.1016/j.jcp.2006.10.008 +Chohong Min,Geometric integration over irregular domains with application to level-set methods.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#MinG07,https://doi.org/10.1016/j.jcp.2007.05.032 +Zhiming Chen,The adaptive immersed interface finite element method for elliptic and Maxwell interface problems.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#ChenXZ09,https://doi.org/10.1016/j.jcp.2009.03.044 +Hua Shen,A characteristic space-time conservation element and solution element method for conservation laws.,2015,288,J. Comput. Physics,,db/journals/jcphy/jcphy288.html#ShenWZ15,https://doi.org/10.1016/j.jcp.2015.02.018 +Zhifang Du,A Hermite WENO reconstruction for fourth order temporal accurate schemes based on the GRP solver for hyperbolic conservation laws.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#DuL18,https://doi.org/10.1016/j.jcp.2017.11.023 +Thomas Toulorge,Optimizing the geometrical accuracy of curvilinear meshes.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#ToulorgeLR16,https://doi.org/10.1016/j.jcp.2016.01.023 +O. Lehtikangas,Finite element approximation of the radiative transport equation in a medium with piece-wise constant refractive index.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#LehtikangasTKA15,https://doi.org/10.1016/j.jcp.2014.11.025 +Raimund Bürger,On the implementation of WENO schemes for a class of polydisperse sedimentation models.,2011,230,J. Comput. Physics,6,db/journals/jcphy/jcphy230.html#BurgerDMV11,https://doi.org/10.1016/j.jcp.2010.12.019 +Liang Pan,A gas kinetic scheme for the Baer-Nunziato two-phase flow model.,2012,231,J. Comput. Physics,22,db/journals/jcphy/jcphy231.html#PanZTW12,https://doi.org/10.1016/j.jcp.2012.04.049 +Yohei Sato,A sharp-interface phase change model for a mass-conservative interface tracking method.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#SatoN13,https://doi.org/10.1016/j.jcp.2013.04.035 +Tarek A. El-Moselhy,Bayesian inference with optimal maps.,2012,231,J. Comput. Physics,23,db/journals/jcphy/jcphy231.html#MoselhyM12,https://doi.org/10.1016/j.jcp.2012.07.022 +Cristian R. Nastase,High-order discontinuous Galerkin methods using an hp-multigrid approach.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#NastaseM06,https://doi.org/10.1016/j.jcp.2005.08.022 +M. Meldi,An arbitrary Lagrangian-Eulerian approach for the simulation of immersed moving solids with Lattice Boltzmann Method.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#MeldiVS13,https://doi.org/10.1016/j.jcp.2012.10.014 +M. V. Rakhuba,Grid-based electronic structure calculations: The tensor decomposition approach.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#RakhubaO16,https://doi.org/10.1016/j.jcp.2016.02.023 +Bernard Deconinck,Computing spectra of linear operators using the Floquet-Fourier-Hill method.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#DeconinckK06,https://doi.org/10.1016/j.jcp.2006.03.020 +Serafim Kalliadasis,A new framework for extracting coarse-grained models from time series with multiscale structure.,2015,296,J. Comput. Physics,,db/journals/jcphy/jcphy296.html#KalliadasisKP15,https://doi.org/10.1016/j.jcp.2015.05.002 +M. Hossein Gorji,Fokker-Planck-DSMC algorithm for simulations of rarefied gas flows.,2015,287,J. Comput. Physics,,db/journals/jcphy/jcphy287.html#GorjiJ15,https://doi.org/10.1016/j.jcp.2015.01.041 +Eric Johnsen,Assessment of high-resolution methods for numerical simulations of compressible turbulence with shock waves.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#JohnsenLBCMORSSYZL10,https://doi.org/10.1016/j.jcp.2009.10.028 +Tao Xiong,High order asymptotic preserving nodal discontinuous Galerkin IMEX schemes for the BGK equation.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#XiongJLQ15,https://doi.org/10.1016/j.jcp.2014.12.021 +Sebastian Acosta,Coupling of Dirichlet-to-Neumann boundary condition and finite difference methods in curvilinear coordinates for multiple scattering.,2010,229,J. Comput. Physics,15,db/journals/jcphy/jcphy229.html#AcostaV10,https://doi.org/10.1016/j.jcp.2010.04.011 +Chao Zhang,A third-order gas-kinetic CPR method for the Euler and Navier-Stokes equations on triangular meshes.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#ZhangLFW18,https://doi.org/10.1016/j.jcp.2018.02.040 +Yesom Park,An efficient MILU preconditioning for solving the 2D Poisson equation with Neumann boundary condition.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#ParkKJLM18,https://doi.org/10.1016/j.jcp.2017.11.028 +Rodolphe Prignitz,Particulate flows with the subspace projection method.,2014,260,J. Comput. Physics,,db/journals/jcphy/jcphy260.html#PrignitzB14,https://doi.org/10.1016/j.jcp.2013.12.030 +Ping Du,A tangent-plane marker-particle method for the computation of three-dimensional solid surfaces evolving by surface diffusion on a substrate.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#DuKW10,https://doi.org/10.1016/j.jcp.2009.10.013 +Yannick Gorsse,A simple Cartesian scheme for compressible multimaterials.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#GorsseIMT14,https://doi.org/10.1016/j.jcp.2014.04.057 +Christian A. Rivera,Parallel finite element simulations of incompressible viscous fluid flow by domain decomposition with Lagrange multipliers.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#RiveraHGT10,https://doi.org/10.1016/j.jcp.2010.03.028 +Milad Fatenejad,Extension of Kershaw diffusion scheme to hexahedral meshes.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#FatenejadM08,https://doi.org/10.1016/j.jcp.2007.11.001 +John Thuburn,A primal-dual mimetic finite element scheme for the rotating shallow water equations on polygonal spherical meshes.,2015,290,J. Comput. Physics,,db/journals/jcphy/jcphy290.html#ThuburnC15,https://doi.org/10.1016/j.jcp.2015.02.045 +W. W. Xing,Manifold learning for the emulation of spatial fields from computational models.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#XingTSNZ16,https://doi.org/10.1016/j.jcp.2016.07.040 +C. C. Su,Large-scale simulations on multiple Graphics Processing Units (GPUs) for the direct simulation Monte Carlo method.,2012,231,J. Comput. Physics,23,db/journals/jcphy/jcphy231.html#SuSKWHT12,https://doi.org/10.1016/j.jcp.2012.07.038 +Matthias Ehrhardt,Exact artificial boundary conditions for problems with periodic structures.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#EhrhardtZ08,https://doi.org/10.1016/j.jcp.2008.03.042 +Pietro Lenarda,Partitioned coupling of advection-diffusion-reaction systems and Brinkman flows.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#LenardaPR17,https://doi.org/10.1016/j.jcp.2017.05.011 +M. Borchardt,A fast solver for the gyrokinetic field equation with adiabatic electrons.,2012,231,J. Comput. Physics,18,db/journals/jcphy/jcphy231.html#BorchardtKH12,https://doi.org/10.1016/j.jcp.2012.06.001 +Adrián Lozano-Durán,Numerically accurate computation of the conditional trajectories of the topological invariants in turbulent flows.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#Lozano-DuranHJ15,https://doi.org/10.1016/j.jcp.2015.04.036 +Gang Bao,An accurate boundary element method for the exterior elastic scattering problem in two dimensions.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#BaoXY17,https://doi.org/10.1016/j.jcp.2017.07.032 +Kazem Hejranfar,Preconditioned characteristic boundary conditions for solution of the preconditioned Euler equations at low Mach number flows.,2012,231,J. Comput. Physics,12,db/journals/jcphy/jcphy231.html#HejranfarK12,https://doi.org/10.1016/j.jcp.2012.01.040 +Aihua Wood,Analysis of electromagnetic scattering from an overfilled cavity in the ground plane.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#Wood06,https://doi.org/10.1016/j.jcp.2005.11.007 +Pablo Ducru,Kernel reconstruction methods for Doppler broadening - Temperature interpolation by linear combination of reference cross sections at optimally chosen temperatures.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#DucruJDSFS17,https://doi.org/10.1016/j.jcp.2017.01.039 +Dorota Jarecka,A spreading drop of shallow water.,2015,289,J. Comput. Physics,,db/journals/jcphy/jcphy289.html#JareckaJS15,https://doi.org/10.1016/j.jcp.2015.02.003 +Nail K. Yamaleev,Nonlinear model reduction for unsteady discontinuous flows.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#YamaleevP13,https://doi.org/10.1016/j.jcp.2013.03.002 +Juliana Vianna Valério,Filtering the eigenvalues at infinite from the linear stability analysis of incompressible flows.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#ValerioCT07,https://doi.org/10.1016/j.jcp.2007.07.017 +Søren Taverniers,Impact of parametric uncertainty on estimation of the energy deposition into an irradiated brain tumor.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#TaverniersT17a,https://doi.org/10.1016/j.jcp.2017.07.008 +Sha Miao,Computation of three-dimensional multiphase flow dynamics by Fully-Coupled Immersed Flow (FCIF) solver.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#MiaoHL17,https://doi.org/10.1016/j.jcp.2017.08.042 +Maryam Rahbaralam,Do we really need a large number of particles to simulate bimolecular reactive transport with random walk methods? A kernel density estimation approach.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#RahbaralamFS15,https://doi.org/10.1016/j.jcp.2015.09.030 +Christos Varsakelis,The equilibrium limit of a constitutive model for two-phase granular mixtures and its numerical approximation.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#VarsakelisP10,https://doi.org/10.1016/j.jcp.2010.02.005 +Francesco Capuano,Energy preserving turbulent simulations at a reduced computational cost.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#CapuanoCBL15,https://doi.org/10.1016/j.jcp.2015.06.011 +Peter Wittek,High-performance dynamic quantum clustering on graphics processors.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#Wittek13,https://doi.org/10.1016/j.jcp.2012.08.048 +John Thuburn,Numerical representation of geostrophic modes on arbitrarily structured C-grids.,2009,228,J. Comput. Physics,22,db/journals/jcphy/jcphy228.html#ThuburnRSK09,https://doi.org/10.1016/j.jcp.2009.08.006 +Sudhir B. Kylasa,PuReMD-GPU: A reactive molecular dynamics simulation package for GPUs.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#KylasaAG14,https://doi.org/10.1016/j.jcp.2014.04.035 +Theresa G. White,Identifying deformation mechanisms in molecular dynamics simulations of laser shocked matter.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#WhiteTSGHE17,https://doi.org/10.1016/j.jcp.2017.08.040 +Dexuan Xie,New solution decomposition and minimization schemes for Poisson-Boltzmann equation in calculation of biomolecular electrostatics.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#Xie14a,https://doi.org/10.1016/j.jcp.2014.07.012 +Alexandre Chabory,Fast transform based preconditioners for 2D finite-difference frequency-domain - Waveguides and periodic structures.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#ChaboryHST08,https://doi.org/10.1016/j.jcp.2008.04.030 +Mehdi Mosharaf Dehkordi,A multi-resolution multiscale finite volume method for simulation of fluid flows in heterogeneous porous media.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#DehkordiM13,https://doi.org/10.1016/j.jcp.2013.04.018 +Tonkid Chantrasmi,Padé-Legendre approximants for uncertainty analysis with discontinuous response surfaces.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#ChantrasmiDI09,https://doi.org/10.1016/j.jcp.2009.06.024 +Ziyao Sun,Boundary Variation Diminishing (BVD) reconstruction: A new approach to improve Godunov schemes.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#SunIX16,https://doi.org/10.1016/j.jcp.2016.06.051 +M. Lee,Atom-partitioned multipole expansions for electrostatic potential boundary conditions.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#LeeLEK17,https://doi.org/10.1016/j.jcp.2016.10.012 +Charles Cleret de Langavant,Level-set simulations of soluble surfactant driven flows.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#LangavantGTTG17,https://doi.org/10.1016/j.jcp.2017.07.003 +Shengfeng Zhu,A level set method for shape optimization in semilinear elliptic problems.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#ZhuHW18,https://doi.org/10.1016/j.jcp.2017.09.066 +Seong H. Lee,Adaptive multiscale finite-volume method for nonlinear multiphase transport in heterogeneous formations.,2009,228,J. Comput. Physics,24,db/journals/jcphy/jcphy228.html#LeeZT09,https://doi.org/10.1016/j.jcp.2009.09.009 +Amit Amritkar,Recycling Krylov subspaces for CFD applications and a new hybrid recycling solver.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#AmritkarSSTA15,https://doi.org/10.1016/j.jcp.2015.09.040 +Javier Murillo,Accurate numerical modeling of 1D flow in channels with arbitrary shape. Application of the energy balanced property.,2014,260,J. Comput. Physics,,db/journals/jcphy/jcphy260.html#MurilloG14,https://doi.org/10.1016/j.jcp.2013.12.040 +Seungwon Shin,The Local Front Reconstruction Method for direct simulation of two- and three-dimensional multiphase flows.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#ShinYJ11,https://doi.org/10.1016/j.jcp.2011.04.040 +Seung-Cheol Lee,A hybrid finite/boundary element method for periodic structures on non-periodic meshes using an interior penalty formulation for Maxwell's equations.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#LeeRL10,https://doi.org/10.1016/j.jcp.2010.03.014 +Kailiang Wu,A third-order accurate direct Eulerian GRP scheme for the Euler equations in gas dynamics.,2014,264,J. Comput. Physics,,db/journals/jcphy/jcphy264.html#WuYT14,https://doi.org/10.1016/j.jcp.2014.01.041 +Dragan Vidovic,Convex combinations for diffusion schemes.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#VidovicDDPP13,https://doi.org/10.1016/j.jcp.2013.03.034 +Claes Eskilsson,On devising Boussinesq-type models with bounded eigenspectra: One horizontal dimension.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#EskilssonE14,https://doi.org/10.1016/j.jcp.2013.08.048 +Sourabh V. Apte,A numerical method for fully resolved simulation (FRS) of rigid particle-flow interactions in complex flows.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#ApteMP09,https://doi.org/10.1016/j.jcp.2008.11.034 +Alex M. Runov,Energy and momentum preserving Coulomb collision model for kinetic Monte Carlo simulations of plasma steady states in toroidal fusion devices.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#RunovKH15,https://doi.org/10.1016/j.jcp.2015.08.001 +Fangying Song,Spectral direction splitting methods for two-dimensional space fractional diffusion equations.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#SongX15,https://doi.org/10.1016/j.jcp.2015.07.011 +Paul J. Atzberger,Stochastic Eulerian Lagrangian methods for fluid-structure interactions with thermal fluctuations.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#Atzberger11,https://doi.org/10.1016/j.jcp.2010.12.028 +Youngjean Jung,A variational level set approach for surface area minimization of triply-periodic surfaces.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#JungCT07,https://doi.org/10.1016/j.jcp.2006.10.007 +Ratnesh K. Shukla,An interface capturing method for the simulation of multi-phase compressible flows.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#ShuklaPF10,https://doi.org/10.1016/j.jcp.2010.06.025 +Xin Lv,An efficient parallel/unstructured-multigrid preconditioned implicit method for simulating 3D unsteady compressible flows with moving objects.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#Lv0HXW06,https://doi.org/10.1016/j.jcp.2005.11.012 +Rikard Ojala,An accurate integral equation method for simulating multi-phase Stokes flow.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#OjalaT15,https://doi.org/10.1016/j.jcp.2015.06.002 +Yu-Xin Ren,A multi-dimensional upwind scheme for solving Euler and Navier-Stokes equations.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#RenS06,https://doi.org/10.1016/j.jcp.2006.03.018 +Dongwook Lee 0004,The Piecewise Cubic Method (PCM) for computational fluid dynamics.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#LeeFR17,https://doi.org/10.1016/j.jcp.2017.04.004 +Lin Mu,Weak Galerkin methods for second order elliptic interface problems.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#MuWWYZ13,https://doi.org/10.1016/j.jcp.2013.04.042 +Robert E. Clark,Locally conformal finite-difference time-domain techniques for particle-in-cell plasma simulation.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#ClarkWZMGRPMSJT11,https://doi.org/10.1016/j.jcp.2010.10.013 +Richard Pasquetti,Comparison of some isoparametric mappings for curved triangular spectral elements.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#Pasquetti16,https://doi.org/10.1016/j.jcp.2016.04.038 +Livio Gibelli,Spectral convergence of the Hermite basis function solution of the Vlasov equation: The free-streaming term.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#GibelliS06,https://doi.org/10.1016/j.jcp.2006.06.017 +Xiang Ma,A stochastic mixed finite element heterogeneous multiscale method for flow in porous media.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#MaZ11,https://doi.org/10.1016/j.jcp.2011.03.001 +Yassine Boubendir,A quasi-optimal non-overlapping domain decomposition algorithm for the Helmholtz equation.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#BoubendirAG12,https://doi.org/10.1016/j.jcp.2011.08.007 +C. D. Sijoy,Finite difference time domain algorithm for electromagnetic problems involving material movement.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#SijoyC09,https://doi.org/10.1016/j.jcp.2008.12.008 +Xiaolin Zhong,A new high-order immersed interface method for solving elliptic equations with imbedded interface of discontinuity.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#Zhong07,https://doi.org/10.1016/j.jcp.2007.01.017 +Yunfeng Cai,Hybrid preconditioning for iterative diagonalization of ill-conditioned generalized eigenvalue problems in electronic structure calculations.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#CaiBPS13,https://doi.org/10.1016/j.jcp.2013.07.020 +Michael Oevermann,A sharp interface finite volume method for elliptic equations on Cartesian grids.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#OevermannSK09,https://doi.org/10.1016/j.jcp.2009.04.018 +William A. Wieselquist,A cell-local finite difference discretization of the low-order quasidiffusion equations for neutral particle transport on unstructured quadrilateral meshes.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#WieselquistAM14,https://doi.org/10.1016/j.jcp.2014.05.011 +Aaron Katz,Mesh quality effects on the accuracy of CFD solutions on unstructured meshes.,2011,230,J. Comput. Physics,20,db/journals/jcphy/jcphy230.html#KatzS11,https://doi.org/10.1016/j.jcp.2011.06.023 +Frédéric Nataf,A new approach to perfectly matched layers for the linearized Euler system.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#Nataf06,https://doi.org/10.1016/j.jcp.2005.10.014 +Victor Bayona,RBF-FD formulas and convergence properties.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#BayonaMCK10,https://doi.org/10.1016/j.jcp.2010.07.008 +X. Sheldon Wang,On computational issues of immersed finite element methods.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#WangZL09,https://doi.org/10.1016/j.jcp.2008.12.012 +John W. Barrett 0001,A parametric finite element method for fourth order geometric evolution equations.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#BarrettGN07,https://doi.org/10.1016/j.jcp.2006.07.026 +Junqing Chen,An adaptive inverse iteration for Maxwell eigenvalue problem based on edge elements.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#ChenXZ10,https://doi.org/10.1016/j.jcp.2009.12.013 +Johannes Tausch,A fast method for solving the heat equation by layer potentials.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#Tausch07,https://doi.org/10.1016/j.jcp.2006.11.001 +Jianfang Lu,Inverse Lax-Wendroff procedure for numerical boundary conditions of convection-diffusion equations.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#LuFTSZ16,https://doi.org/10.1016/j.jcp.2016.04.059 +Michael Hintermüller,An adaptive finite element Moreau-Yosida-based solver for a coupled Cahn-Hilliard/Navier-Stokes system.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#MichaelHintermullerHK13,https://doi.org/10.1016/j.jcp.2012.10.010 +Alexandros Syrakos,Numerical experiments on the efficiency of local grid refinement based on truncation error estimates.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#SyrakosEBG12,https://doi.org/10.1016/j.jcp.2012.06.023 +Mark Owkes,A discontinuous Galerkin conservative level set scheme for interface capturing in multiphase flows.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#OwkesD13,https://doi.org/10.1016/j.jcp.2013.04.036 +Swapan K. Pandit,A transient higher order compact scheme for incompressible viscous flows on geometries beyond rectangular.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#PanditKD07,https://doi.org/10.1016/j.jcp.2007.01.016 +David Cohen,Multi-symplectic integration of the Camassa-Holm equation.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#CohenOR08,https://doi.org/10.1016/j.jcp.2008.01.051 +Rajat Mittal,Computational modeling of cardiac hemodynamics: Current status and future outlook.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#MittalSVCLHJYAG16,https://doi.org/10.1016/j.jcp.2015.11.022 +Paul Macklin,An improved geometry-aware curvature discretization for level set methods: Application to tumor growth.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#MacklinL06,https://doi.org/10.1016/j.jcp.2005.11.016 +Travis Askham,An adaptive fast multipole accelerated Poisson solver for complex geometries.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#AskhamC17,https://doi.org/10.1016/j.jcp.2017.04.063 +Le Duan,A high-order cut-cell method for numerical simulation of hypersonic boundary-layer instability with surface roughness.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#DuanWZ10,https://doi.org/10.1016/j.jcp.2010.06.008 +Xiangyu Hu 0002,A multi-phase SPH method for macroscopic and mesoscopic flows.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#0002A06,https://doi.org/10.1016/j.jcp.2005.09.001 +Dinshaw S. Balsara,Multidimensional Riemann problem with self-similar internal structure. Part II - Application to hyperbolic conservation laws on unstructured meshes.,2015,287,J. Comput. Physics,,db/journals/jcphy/jcphy287.html#BalsaraD15,https://doi.org/10.1016/j.jcp.2014.11.004 +Dongmi Luo,A hybrid LDG-HWENO scheme for KdV-type equations.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#LuoHQ16,https://doi.org/10.1016/j.jcp.2016.02.064 +Ahmed H. Elsheikh,Hybrid nested sampling algorithm for Bayesian model selection applied to inverse subsurface flow problems.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#ElsheikhWH14,https://doi.org/10.1016/j.jcp.2013.10.001 +Ren-Chuen Chen,An accelerated monotone iterative method for the quantum-corrected energy transport model.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#ChenL08,https://doi.org/10.1016/j.jcp.2008.03.003 +Hasan Almanasreh,"Corrigendum to ""Stabilized finite element method for the radial Dirac equation"" [J. Comput. Phys. 236(2013) 426-442].",2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#AlmanasrehSS17,https://doi.org/10.1016/j.jcp.2017.02.040 +Hehu Xie,A multigrid method for eigenvalue problem.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#Xie14,https://doi.org/10.1016/j.jcp.2014.06.030 +K. K. So,Anti-diffusion interface sharpening technique for two-phase compressible flow simulations.,2012,231,J. Comput. Physics,11,db/journals/jcphy/jcphy231.html#SoHA12,https://doi.org/10.1016/j.jcp.2012.02.013 +Antonio J. Gil,The Immersed Structural Potential Method for haemodynamic applications.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#GilCBH10,https://doi.org/10.1016/j.jcp.2010.08.005 +Tomoaki Watanabe,Gradients estimation from random points with volumetric tensor in turbulence.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#WatanabeN17,https://doi.org/10.1016/j.jcp.2017.08.057 +Joanna Szmelter,An edge-based unstructured mesh discretisation in geospherical framework.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#SzmelterS10,https://doi.org/10.1016/j.jcp.2010.03.017 +Shu-Lin Wu,Fast parareal iterations for fractional diffusion equations.,2017,329,J. Comput. Physics,,db/journals/jcphy/jcphy329.html#WuZ17,https://doi.org/10.1016/j.jcp.2016.10.046 +Taeyoung Ha,Efficient electric resistivity inversion using adjoint state of mixed finite-element method for Poisson's equation.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#HaPS06,https://doi.org/10.1016/j.jcp.2005.09.007 +Stephen R. Lau,Sparse spectral-tau method for the three-dimensional helically reduced wave equation on two-center domains.,2012,231,J. Comput. Physics,22,db/journals/jcphy/jcphy231.html#LauP12,https://doi.org/10.1016/j.jcp.2012.07.006 +Thomas Guillet,A simple multigrid scheme for solving the Poisson equation with arbitrary domain boundaries.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#GuilletT11,https://doi.org/10.1016/j.jcp.2011.02.044 +Pengtao Sun,A new adaptive local mesh refinement algorithm and its application on fourth order thin film flow problem.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#SunRX07,https://doi.org/10.1016/j.jcp.2006.11.005 +Bokai Yan,A Monte Carlo method with negative particles for Coulomb collisions.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#YanC15,https://doi.org/10.1016/j.jcp.2015.06.021 +Salvador Izquierdo,Optimal preconditioning of lattice Boltzmann methods.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#IzquierdoF09,https://doi.org/10.1016/j.jcp.2009.05.040 +Najeem Adeleke,Revisiting low-fidelity two-fluid models for gas-solids transport.,2016,319,J. Comput. Physics,,db/journals/jcphy/jcphy319.html#AdelekeAI16,https://doi.org/10.1016/j.jcp.2016.05.020 +Chuan-Chih Chou,Multiscale diffusion Monte Carlo simulation of epitaxial growth.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#ChouF06,https://doi.org/10.1016/j.jcp.2006.01.012 +Peter Benner,Fast iterative solution of the Bethe-Salpeter eigenvalue problem using low-rank and QTT tensor approximation.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#BennerDKK17,https://doi.org/10.1016/j.jcp.2016.12.047 +Hessam Babaee,A robust bi-orthogonal/dynamically-orthogonal method using the covariance pseudo-inverse with application to stochastic flow problems.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#BabaeeCSK17,https://doi.org/10.1016/j.jcp.2017.04.057 +Miguel A. Fernández,Fully decoupled time-marching schemes for incompressible fluid/thin-walled structure interaction.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#FernandezLV15,https://doi.org/10.1016/j.jcp.2015.05.009 +Giorgio Rosatti,A well-balanced approach for flows over mobile-bed with high sediment-transport.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#RosattiF06,https://doi.org/10.1016/j.jcp.2006.05.012 +Yaoxin Zhang,2D automatic body-fitted structured mesh generation using advancing extraction method.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#ZhangJ18,https://doi.org/10.1016/j.jcp.2017.10.018 +Patrick Whalen,Exponential time-differencing with embedded Runge-Kutta adaptive step control.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#WhalenBM15,https://doi.org/10.1016/j.jcp.2014.09.038 +Giovanni Samaey,Patch dynamics with buffers for homogenization problems.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#SamaeyKR06,https://doi.org/10.1016/j.jcp.2005.08.010 +Wen Yan,Flexibly imposing periodicity in kernel independent FMM: A multipole-to-local operator approach.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#YanS18,https://doi.org/10.1016/j.jcp.2017.11.012 +Xinfeng Liu,Compact integration factor methods for complex domains and adaptive mesh refinement.,2010,229,J. Comput. Physics,16,db/journals/jcphy/jcphy229.html#LiuN10,https://doi.org/10.1016/j.jcp.2010.04.003 +Hillary R. Fairbanks,A low-rank control variate for multilevel Monte Carlo simulation of high-dimensional uncertain systems.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#FairbanksDKI17,https://doi.org/10.1016/j.jcp.2017.03.060 +Shuhai Zhang,Development of nonlinear weighted compact schemes with increasingly higher order accuracy.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#ZhangJS08,https://doi.org/10.1016/j.jcp.2008.04.012 +Lin Zhang 0010,Variational multiscale element free Galerkin method for the water wave problems.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#ZhangOJR11,https://doi.org/10.1016/j.jcp.2011.03.026 +Florian Bürgel,A sparsity regularization and total variation based computational framework for the inverse medium problem in scattering.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#BurgelKL17,https://doi.org/10.1016/j.jcp.2017.03.011 +Wooyoung Choi,An iterative method to solve a regularized model for strongly nonlinear long internal waves.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#ChoiGJ11,https://doi.org/10.1016/j.jcp.2010.11.049 +William W. Dai,Interface- and discontinuity-aware numerical schemes for plasma 3-T radiation diffusion in two and three dimensions.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#DaiS15a,https://doi.org/10.1016/j.jcp.2015.07.041 +Qinghai Zhang,A new interface tracking method: The polygonal area mapping method.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#ZhangL08,https://doi.org/10.1016/j.jcp.2007.12.014 +Elizabeth L. Bouzarth,A multirate time integrator for regularized Stokeslets.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#BouzarthM10,https://doi.org/10.1016/j.jcp.2010.02.006 +Matthew T. Calef,Nonlinear Krylov acceleration applied to a discrete ordinates formulation of the k-eigenvalue problem.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#CalefFWBC13,https://doi.org/10.1016/j.jcp.2012.12.024 +Peijun Li,Numerical solution of an inverse obstacle scattering problem with near-field data.,2015,290,J. Comput. Physics,,db/journals/jcphy/jcphy290.html#LiW15,https://doi.org/10.1016/j.jcp.2015.03.004 +Jure Mencinger,On the finite volume discretization of discontinuous body force field on collocated grid: Application to VOF method.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#MencingerZ07,https://doi.org/10.1016/j.jcp.2006.06.021 +Clifford Hall,The Metropolis Monte Carlo method with CUDA enabled Graphic Processing Units.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#HallJB14,https://doi.org/10.1016/j.jcp.2013.11.012 +Shiying Xiong,The boundary-constraint method for constructing vortex-surface fields.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#XiongY17,https://doi.org/10.1016/j.jcp.2017.03.013 +A. Prakash,High-order shock-fitting methods for direct numerical simulation of hypersonic flow with chemical and thermal nonequilibrium.,2011,230,J. Comput. Physics,23,db/journals/jcphy/jcphy230.html#PrakashPWZ11,https://doi.org/10.1016/j.jcp.2011.08.001 +Lucia Carichino,Energy-based operator splitting approach for the time discretization of coupled systems of partial and ordinary differential equations for fluid flows: The Stokes case.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#CarichinoGS18,https://doi.org/10.1016/j.jcp.2018.02.030 +Yingjun Jiang,Multigrid methods for space fractional partial differential equations.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#JiangX15,https://doi.org/10.1016/j.jcp.2015.08.052 +Georgios Matheou,Scalar excursions in large-eddy simulations.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#MatheouD16,https://doi.org/10.1016/j.jcp.2016.08.035 +Gang-Joon Yoon,Analyses on the finite difference method by Gibou et al. for Poisson equation.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#YoonM15,https://doi.org/10.1016/j.jcp.2014.09.009 +Caterina Calgaro,An hybrid finite volume-finite element method for variable density incompressible flows.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#CalgaroCG08,https://doi.org/10.1016/j.jcp.2008.01.017 +Matthew Dobson,Cell list algorithms for nonequilibrium molecular dynamics.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#DobsonFS16,https://doi.org/10.1016/j.jcp.2016.03.056 +Antoine Tambue,An exponential integrator for advection-dominated reactive transport in heterogeneous porous media.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#TambueLG10,https://doi.org/10.1016/j.jcp.2010.01.037 +Yong Cao,An iterative immersed finite element method for an electric potential interface problem based on given surface electric quantity.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#CaoCHL15,https://doi.org/10.1016/j.jcp.2014.10.014 +Jochen Schütz,A hybrid mixed method for the compressible Navier-Stokes equations.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#SchutzM13,https://doi.org/10.1016/j.jcp.2013.01.019 +D. Imbert,Fictitious domain method for acoustic waves through a granular suspension of movable rigid spheres.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#ImbertMG15,https://doi.org/10.1016/j.jcp.2014.10.006 +Victorita Dolean,A domain decomposition method for solving the three-dimensional time-harmonic Maxwell equations discretized by discontinuous Galerkin methods.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#DoleanLP08,https://doi.org/10.1016/j.jcp.2007.10.004 +Ryan G. McClarren,The effects of slope limiting on asymptotic-preserving numerical methods for hyperbolic conservation laws.,2008,227,J. Comput. Physics,23,db/journals/jcphy/jcphy227.html#McClarrenL08,https://doi.org/10.1016/j.jcp.2008.07.012 +Bendiks Jan Boersma,A 6th order staggered compact finite difference method for the incompressible Navier-Stokes and scalar transport equations.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#Boersma11,https://doi.org/10.1016/j.jcp.2011.03.014 +Xiaobo Gong,An immersed boundary method for mass transfer across permeable moving interfaces.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#GongGH14,https://doi.org/10.1016/j.jcp.2014.08.025 +Rei Kawashima,A flux-splitting method for hyperbolic-equation system of magnetized electron fluids in quasi-neutral plasmas.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#KawashimaKS16,https://doi.org/10.1016/j.jcp.2016.01.006 +Ryan I. Fernandes,An ADI extrapolated Crank-Nicolson orthogonal spline collocation method for nonlinear reaction-diffusion systems on evolving domains.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#FernandesBF15,https://doi.org/10.1016/j.jcp.2015.07.016 +Nicoletta Franchina,Multicomponent gas flow computations by a discontinuous Galerkin scheme using L2-projection of perfect gas EOS.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#FranchinaSB16,https://doi.org/10.1016/j.jcp.2016.03.059 +Yaman Güçlü,A high order cell-centered semi-Lagrangian scheme for multi-dimensional kinetic simulations of neutral gas flows.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#GucluH12,https://doi.org/10.1016/j.jcp.2012.01.008 +C. Brehm,On consistent boundary closures for compact finite-difference WENO schemes.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#Brehm17,https://doi.org/10.1016/j.jcp.2016.12.057 +Tapan K. Sengupta,A new compact scheme for parallel computing using domain decomposition.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#SenguptaDR07,https://doi.org/10.1016/j.jcp.2006.05.018 +Thomas G. Jenkins,Coupling extended magnetohydrodynamic fluid codes with radiofrequency ray tracing codes for fusion modeling.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#JenkinsH15,https://doi.org/10.1016/j.jcp.2015.05.035 +Amit Amritkar,Efficient parallel CFD-DEM simulations using OpenMP.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#AmritkarDT14,https://doi.org/10.1016/j.jcp.2013.09.007 +Shamsul Qamar,A high order kinetic flux-vector splitting method for the reduced five-equation model of compressible two-fluid flows.,2009,228,J. Comput. Physics,24,db/journals/jcphy/jcphy228.html#QamarA09,https://doi.org/10.1016/j.jcp.2009.09.010 +Chohong Min,On reinitializing level set functions.,2010,229,J. Comput. Physics,8,db/journals/jcphy/jcphy229.html#Min10,https://doi.org/10.1016/j.jcp.2009.12.032 +Juhi Jang,High order asymptotic preserving DG-IMEX schemes for discrete-velocity kinetic equations in a diffusive scaling.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#JangLQX15,https://doi.org/10.1016/j.jcp.2014.10.025 +Livio Fedeli,Computer simulations of phase field drops on super-hydrophobic surfaces.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#Fedeli17,https://doi.org/10.1016/j.jcp.2017.04.068 +Gongyou Liang,Simulation of self-assemblies of colloidal particles on the substrate using a lattice Boltzmann pseudo-solid model.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#LiangZCOOC13,https://doi.org/10.1016/j.jcp.2013.04.007 +Bartlomiej Gardas,Counting defects in quantum computers with Graphics Processing Units.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#GardasP18,https://doi.org/10.1016/j.jcp.2018.04.016 +Roberto Camassa,Viscous and inviscid regularizations in a class of evolutionary partial differential equations.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#CamassaCLS10,https://doi.org/10.1016/j.jcp.2010.06.002 +Stéphane étienne,Perspective on the geometric conservation law and finite element methods for ALE simulations of incompressible flow.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#EtienneGP09,https://doi.org/10.1016/j.jcp.2008.11.032 +Agnès Leroy,Unified semi-analytical wall boundary conditions applied to 2-D incompressible SPH.,2014,261,J. Comput. Physics,,db/journals/jcphy/jcphy261.html#LeroyVFK14,https://doi.org/10.1016/j.jcp.2013.12.035 +Matthieu Duponcheel,Time-reversibility of the Euler equations as a benchmark for energy conserving schemes.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#DuponcheelOW08,https://doi.org/10.1016/j.jcp.2008.06.020 +S. Mendez,Acoustic modeling of perforated plates with bias flow for Large-Eddy Simulations.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#MendezE09,https://doi.org/10.1016/j.jcp.2009.03.026 +Michael Kraus,Variational integrators for reduced magnetohydrodynamics.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#KrausTG16,https://doi.org/10.1016/j.jcp.2016.05.047 +Z. Guo,An implicit parallel multigrid computing scheme to solve coupled thermal-solute phase-field equations for dendrite evolution.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#GuoMG12,https://doi.org/10.1016/j.jcp.2011.11.006 +Igor Shevchenko,Absorbing boundary conditions for nonlinear acoustics: The Westervelt equation.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#ShevchenkoK15,https://doi.org/10.1016/j.jcp.2015.08.051 +Matteo Antuono,Delayed Over-Relaxation for iterative methods.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#AntuonoC16,https://doi.org/10.1016/j.jcp.2016.06.016 +Fu-Rong Lin,Preconditioned iterative methods for fractional diffusion equation.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#LinYJ14,https://doi.org/10.1016/j.jcp.2013.07.040 +Kai Jiang,Numerical methods for quasicrystals.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#JiangZ14,https://doi.org/10.1016/j.jcp.2013.08.034 +Marc Garbey,Multiscale modeling and distributed computing to predict cosmesis outcome after a lumpectomy.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#GarbeySTB13,https://doi.org/10.1016/j.jcp.2012.08.002 +Zhenning Cai,The NRxx method for polyatomic gases.,2014,267,J. Comput. Physics,,db/journals/jcphy/jcphy267.html#CaiL14,https://doi.org/10.1016/j.jcp.2014.02.026 +Matthew S. McMullen,The computational efficiency of non-linear frequency domain methods.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#McMullenJ06,https://doi.org/10.1016/j.jcp.2005.07.021 +Waad Subber,A parallel time integrator for noisy nonlinear oscillatory systems.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#SubberS18,https://doi.org/10.1016/j.jcp.2018.01.019 +Bruno Blais,Development of an unresolved CFD-DEM model for the flow of viscous suspensions and its application to solid-liquid mixing.,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#BlaisLGFB16,https://doi.org/10.1016/j.jcp.2016.05.008 +N. Ben Nasr,Low-diffusion approximate Riemann solvers for Reynolds-stress transport.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#NasrGV14,https://doi.org/10.1016/j.jcp.2014.02.010 +Eric A. Machorro,Discontinuous Galerkin finite element method applied to the 1-D spherical neutron transport equation.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#Machorro07,https://doi.org/10.1016/j.jcp.2006.08.020 +Yang Feng,Algorithms for accurate relativistic particle injection.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#FengKV08,https://doi.org/10.1016/j.jcp.2007.09.016 +Jialin Hong,A stochastic multi-symplectic scheme for stochastic Maxwell equations with additive noise.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#HongJZ14,https://doi.org/10.1016/j.jcp.2014.03.008 +Hong Wang,A fast finite difference method for three-dimensional time-dependent space-fractional diffusion equations and its efficient implementation.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#WangD13a,https://doi.org/10.1016/j.jcp.2013.06.040 +Pilhwa Lee,The immersed boundary method for advection-electrodiffusion with implicit *tepping and local mesh refinement.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#LeeGP10,https://doi.org/10.1016/j.jcp.2010.03.036 +Basil Bayati,D-leaping: Accelerating stochastic simulation algorithms for reactions with delays.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#BayatiCK09,https://doi.org/10.1016/j.jcp.2009.05.004 +Stéphane Brull,Local discrete velocity grids for deterministic rarefied flow simulations.,2014,266,J. Comput. Physics,,db/journals/jcphy/jcphy266.html#BrullM14,https://doi.org/10.1016/j.jcp.2014.01.050 +Dinshaw S. Balsara,Multidimensional HLLE Riemann solver: Application to Euler and magnetohydrodynamic flows.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#Balsara10,https://doi.org/10.1016/j.jcp.2009.11.018 +Vittorio Romano,DSMC method consistent with the Pauli exclusion principle and comparison with deterministic solutions for charge transport in graphene.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#RomanoMC15,https://doi.org/10.1016/j.jcp.2015.08.047 +John Strain,Locally-corrected spectral methods and overdetermined elliptic systems.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#Strain07,https://doi.org/10.1016/j.jcp.2006.11.017 +Oliver Fortmeier,Parallel re-initialization of level set functions on distributed unstructured tetrahedral grids.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#FortmeierB11,https://doi.org/10.1016/j.jcp.2011.02.005 +Nataliya Portman,Sampling algorithms for validation of supervised learning models for Ising-like systems.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#PortmanT17,https://doi.org/10.1016/j.jcp.2017.06.045 +Naoyuki Onodera,Large-eddy simulation of turbulent channel flows with conservative IDO scheme.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#OnoderaAK11,https://doi.org/10.1016/j.jcp.2011.04.004 +Deborah A. Fixel,Convective scheme solution of the Boltzmann transport equation for nanoscale semiconductor devices.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#FixelH07,https://doi.org/10.1016/j.jcp.2007.09.006 +Simone Marras,Simulations of moist convection by a variational multiscale stabilized finite element method.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#MarrasMVJH13,https://doi.org/10.1016/j.jcp.2013.06.006 +Adrián Navas-Montilla,Asymptotically and exactly energy balanced augmented flux-ADER schemes with application to hyperbolic conservation laws with geometric source terms.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#Navas-MontillaM16,https://doi.org/10.1016/j.jcp.2016.04.047 +Takemi Shigeta,Mathematical and numerical studies on meshless methods for exterior unbounded domain problems.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#ShigetaY11,https://doi.org/10.1016/j.jcp.2011.05.017 +Martin Frank,Partial moment entropy approximation to radiative heat transfer.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#FrankDK06,https://doi.org/10.1016/j.jcp.2006.01.038 +Jian Cheng,A direct discontinuous Galerkin method for the compressible Navier-Stokes equations on arbitrary grids.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#ChengYLLL16,https://doi.org/10.1016/j.jcp.2016.09.049 +Kaustubh Rao,A stopping criterion for the iterative solution of partial differential equations.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#RaoMP18,https://doi.org/10.1016/j.jcp.2017.09.033 +Sung Ha Kang,Path optimization with limited sensing ability.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#KangKZ15,https://doi.org/10.1016/j.jcp.2015.07.037 +Jens P. Eberhard,Numerical upscaling for the eddy-current model with stochastic magnetic materials.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#EberhardPW08,https://doi.org/10.1016/j.jcp.2007.12.021 +Philipp Lauber,LIGKA: A linear gyrokinetic code for the description of background kinetic and fast particle effects on the MHD stability in tokamaks.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#LauberGKP07,https://doi.org/10.1016/j.jcp.2007.04.019 +Pierre Degond,Self-organized hydrodynamics with congestion and path formation in crowds.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#DegondH13,https://doi.org/10.1016/j.jcp.2012.11.033 +Bastian Bohn,A sparse grid based method for generative dimensionality reduction of high-dimensional data.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#BohnGG16,https://doi.org/10.1016/j.jcp.2015.12.033 +Zhen-Sheng Sun,A class of finite difference schemes with low dispersion and controllable dissipation for DNS of compressible turbulence.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#SunRLZY11,https://doi.org/10.1016/j.jcp.2011.02.038 +Jiequan Li,The adaptive GRP scheme for compressible fluid flows over unstructured meshes.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#LiZ13,https://doi.org/10.1016/j.jcp.2013.02.003 +Stefano Mattei,A fully-implicit Particle-In-Cell Monte Carlo Collision code for the simulation of inductively coupled plasmas.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#MatteiNOLTH17,https://doi.org/10.1016/j.jcp.2017.09.015 +Kazunari Iwasaki,Minimizing dispersive errors in smoothed particle magnetohydrodynamics for strongly magnetized medium.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#Iwasaki15,https://doi.org/10.1016/j.jcp.2015.09.022 +Carolyn L. Phillips,A learning heuristic for space mapping and searching self-organizing systems using adaptive mesh refinement.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#Phillips14,https://doi.org/10.1016/j.jcp.2014.05.001 +Feifei Chen,Topology optimization of hyperelastic structures using a level set method.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#ChenWWZ17,https://doi.org/10.1016/j.jcp.2017.09.040 +Yalchin Efendiev,Local-global multiscale model reduction for flows in high-contrast heterogeneous media.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#EfendievGG12,https://doi.org/10.1016/j.jcp.2012.07.032 +Ana Carpio,Domain reconstruction using photothermal techniques.,2008,227,J. Comput. Physics,17,db/journals/jcphy/jcphy227.html#CarpioR08,https://doi.org/10.1016/j.jcp.2008.05.014 +Sandeep Menon,Parallel adaptive simplical re-meshing for deforming domain CFD computations.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#MenonMSS15,https://doi.org/10.1016/j.jcp.2015.05.044 +Jeffery D. Densmore,Stability analysis of implicit time discretizations for the Compton-scattering Fokker-Planck equation.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#DensmoreWLM09,https://doi.org/10.1016/j.jcp.2009.05.003 +Bin Xie,A multi-moment constrained finite volume method on arbitrary unstructured grids for incompressible flows.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#XieX16,https://doi.org/10.1016/j.jcp.2016.09.054 +Kenji Imadera,A numerical method for solving the Vlasov-Poisson equation based on the conservative IDO scheme.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#ImaderaKSLU09,https://doi.org/10.1016/j.jcp.2009.09.008 +Steffen Basting,A hybrid level set-front tracking finite element approach for fluid-structure interaction and two-phase flow applications.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#BastingW13,https://doi.org/10.1016/j.jcp.2013.08.018 +Panos Drouvelis,Parallel implementation of the recursive Green's function method.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#DrouvelisSB06,https://doi.org/10.1016/j.jcp.2005.11.010 +Anvar Gilmanov,A numerical approach for simulating fluid structure interaction of flexible thin shells undergoing arbitrarily large deformations in complex domains.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#GilmanovLS15,https://doi.org/10.1016/j.jcp.2015.08.008 +Ling Guo,A gradient enhanced ℓ*1-minimization for sparse approximation of polynomial chaos expansions.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#GuoNZ18,https://doi.org/10.1016/j.jcp.2018.04.026 +Shaoqiang Tang,A pseudo-spectral multiscale method: Interfacial conditions and coarse grid equations.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#TangHL06,https://doi.org/10.1016/j.jcp.2005.08.001 +Hafiz Abdul Wajid,An optimally blended finite-spectral element scheme with minimal dispersion for Maxwell equations.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#WajidA12,https://doi.org/10.1016/j.jcp.2012.07.047 +Guillaume Jouvet,An adaptive Newton multigrid method for a model of marine ice sheets.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#JouvetG13,https://doi.org/10.1016/j.jcp.2013.06.032 +Songming Hou,An improved imaging method for extended targets.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#HouZ17,https://doi.org/10.1016/j.jcp.2016.12.055 +Robert Hager,A fully non-linear multi-species Fokker-Planck-Landau collision operator for simulation of fusion plasma.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#HagerYKDWC16,https://doi.org/10.1016/j.jcp.2016.03.064 +Marica Pelanti,A Riemann solver for single-phase and two-phase shallow flow models based on relaxation. Relations with Roe and VFRoe solvers.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#PelantiBM11,https://doi.org/10.1016/j.jcp.2010.10.001 +Juwon Jang,An immersed boundary method for nonuniform grids.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#JangL17,https://doi.org/10.1016/j.jcp.2017.04.014 +Naoufel Ben Abdallah,A deterministic solver for a hybrid quantum-classical transport model in nanoMOSFETs.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#AbdallahCCV09,https://doi.org/10.1016/j.jcp.2009.06.001 +Manuel A. Diaz,A conservative numerical scheme for modeling nonlinear acoustic propagation in thermoviscous homogeneous media.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#DiazSS18,https://doi.org/10.1016/j.jcp.2018.02.005 +Pierre Lallemand,A lattice Boltzmann front-tracking method for interface dynamics with surface tension in two dimensions.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#LallemandLP07,https://doi.org/10.1016/j.jcp.2007.05.021 +Dinshaw S. Balsara,A two-dimensional HLLC Riemann solver for conservation laws: Application to Euler and magnetohydrodynamic flows.,2012,231,J. Comput. Physics,22,db/journals/jcphy/jcphy231.html#Balsara12,https://doi.org/10.1016/j.jcp.2011.12.025 +J. P. Pontaza,A new consistent splitting scheme for incompressible Navier-Stokes flows: A least-squares spectral element implementation.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#Pontaza07,https://doi.org/10.1016/j.jcp.2007.02.009 +Khosro Shahbazi,Robust second-order scheme for multi-phase flow computations.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#Shahbazi17,https://doi.org/10.1016/j.jcp.2017.03.025 +L. H. Han,Scale separation for multi-scale modeling of free-surface and two-phase flows with the conservative sharp interface method.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#Han0A15,https://doi.org/10.1016/j.jcp.2014.10.001 +Dan Gordon 0001,Compact high order schemes with gradient-direction derivatives for absorbing boundary conditions.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#GordonGT15,https://doi.org/10.1016/j.jcp.2015.05.027 +Paraschos Koutris,Algorithmic Aspects of Parallel Data Processing.,2018,8,Foundations and Trends in Databases,4,db/journals/ftdb/ftdb8.html#KoutrisSS18,https://doi.org/10.1561/1900000055 +Ihab F. Ilyas,Trends in Cleaning Relational Data: Consistency and Deduplication.,2015,5,Foundations and Trends in Databases,4,db/journals/ftdb/ftdb5.html#IlyasC15,https://doi.org/10.1561/1900000045 +Rada Chirkova,Materialized Views.,2012,4,Foundations and Trends in Databases,4,db/journals/ftdb/ftdb4.html#ChirkovaY12,https://doi.org/10.1561/1900000020 +Alexandros Labrinidis,Caching and Materialization for Web Databases.,2009,2,Foundations and Trends in Databases,3,db/journals/ftdb/ftdb2.html#LabrinidisLXX09,https://doi.org/10.1561/1900000005 +Daniel Abadi,The Design and Implementation of Modern Column-Oriented Database Systems.,2013,5,Foundations and Trends in Databases,3,db/journals/ftdb/ftdb5.html#AbadiBHIM13,https://doi.org/10.1561/1900000024 +Shivnath Babu,Massively Parallel Databases and MapReduce Systems.,2013,5,Foundations and Trends in Databases,1,db/journals/ftdb/ftdb5.html#BabuH13,https://doi.org/10.1561/1900000036 +Amol Deshpande,Adaptive Query Processing.,2007,1,Foundations and Trends in Databases,1,db/journals/ftdb/ftdb1.html#DeshpandeIR07,https://doi.org/10.1561/1900000001 +Marios Hadjieleftheriou,Approximate String Processing.,2011,2,Foundations and Trends in Databases,4,db/journals/ftdb/ftdb2.html#Hadjieleftheriou11,https://doi.org/10.1561/1900000010 +Haowen Chan,Secure Distributed Data Aggregation.,2011,3,Foundations and Trends in Databases,3,db/journals/ftdb/ftdb3.html#ChanHPS11,https://doi.org/10.1561/1900000025 +Sunita Sarawagi,Information Extraction.,2008,1,Foundations and Trends in Databases,3,db/journals/ftdb/ftdb1.html#Sarawagi08,https://doi.org/10.1561/1900000003 +Joseph M. Hellerstein,Architecture of a Database System.,2007,1,Foundations and Trends in Databases,2,db/journals/ftdb/ftdb1.html#HellersteinSH07,https://doi.org/10.1561/1900000002 +Todd J. Green,Datalog and Recursive Query Processing.,2013,5,Foundations and Trends in Databases,2,db/journals/ftdb/ftdb5.html#GreenHLZ13,https://doi.org/10.1561/1900000017 +Goetz Graefe,Modern B-Tree Techniques.,2011,3,Foundations and Trends in Databases,4,db/journals/ftdb/ftdb3.html#Graefe11,https://doi.org/10.1561/1900000028 +Thomas Heinis,Data Infrastructure for Medical Research.,2017,8,Foundations and Trends in Databases,3,db/journals/ftdb/ftdb8.html#HeinisA17,https://doi.org/10.1561/1900000050 +Gabriel Reyes,SynchroWatch: One-Handed Synchronous Smartwatch Gestures Using Correlation and Magnetic Sensing.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#ReyesWJGEAS17,http://doi.acm.org/10.1145/3161162 +Sinh Huynh,EngageMon: Multi-Modal Engagement Sensing for Mobile Games.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#HuynhKKBL18,http://doi.acm.org/10.1145/3191745 +Rummana Bari,rConverse: Moment by Moment Conversation Detection Using a Mobile Respiration Sensor.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#BariARPBK18,http://doi.acm.org/10.1145/3191734 +Chih-Hsiang Hsu,iTour: Making Tourist Maps GPS-Enabled.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#HsuKCWTCYHL17,http://doi.acm.org/10.1145/3161167 +Shichao Yue,Extracting Multi-Person Respiration from Entangled RF Signals.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#YueHWRK18,http://doi.acm.org/10.1145/3214289 +Reham Mohamed,HeartSense: Ubiquitous Accurate Multi-Modal Fusion-based Heart Rate Estimation Using Smartphones.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#MohamedY17,http://doi.acm.org/10.1145/3132028 +Suiming Guo,Modelling Passengers' Reaction to Dynamic Prices in Ride-on-demand Services: A Search for the Best Fare.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#GuoCLXC17,http://doi.acm.org/10.1145/3161194 +Carlos Ruiz,IDrone: Robust Drone Identification through Motion Actuation Feedback.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#RuizPBCJNZ18,http://doi.acm.org/10.1145/3214283 +Callum Parker,Does the Public Still Look at Public Displays?: A Field Observation of Public Displays in the Wild.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#ParkerTK18,http://doi.acm.org/10.1145/3214276 +Ruilin Liu,Your Search Path Tells Others Where to Park: Towards Fine-Grained Parking Availability Crowdsourcing Using Parking Decision Models.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#LiuYKHIN17,http://doi.acm.org/10.1145/3130942 +Moon-Hwan Lee,Flower-Pop: Facilitating Casual Group Conversations With Multiple Mobile Devices.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#LeeRSLKJMN17,http://doi.acm.org/10.1145/3161170 +Marc Tonsen,InvisibleEye: Mobile Eye Tracking Using Multiple Low-Resolution Cameras and Learning-Based Gaze Estimation.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#TonsenSSB17,http://doi.acm.org/10.1145/3130971 +Katrin Plaumann,Improving Input Accuracy on Smartphones for Persons who are Affected by Tremor using Motion Sensors.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#PlaumannBDHSR17,http://doi.acm.org/10.1145/3161169 +Raghav H. Venkatnarayan,Gesture Recognition Using Ambient Light.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#VenkatnarayanS18,http://doi.acm.org/10.1145/3191772 +Chen-Yu Hsu,Zero-Effort In-Home Sleep and Insomnia Monitoring using Radio Signals.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#HsuAYHKK17,http://doi.acm.org/10.1145/3130924 +Fusang Zhang,From Fresnel Diffraction Model to Fine-grained Human Respiration Sensing with Commodity Wi-Fi Devices.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#ZhangZXWNJW18,http://doi.acm.org/10.1145/3191785 +Daniel Groeger,ObjectSkin: Augmenting Everyday Objects with Hydroprinted Touch Sensors and Displays.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#GroegerS17,http://doi.acm.org/10.1145/3161165 +Nikola Banovic,Warming Up to Cold Start Personalization.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#BanovicK17,http://doi.acm.org/10.1145/3161175 +Andrew M. Carek,SeismoWatch: Wearable Cuffless Blood Pressure Monitoring Using Pulse Transit Time.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#CarekCJKI17,http://doi.acm.org/10.1145/3130905 +Chouchang Yang,EM-Comm: Touch-based Communication via Modulated Electromagnetic Emissions.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#YangS17,http://doi.acm.org/10.1145/3130984 +Mahmoud Hassan,FootStriker: An EMS-based Foot Strike Assistant for Running.,2017,1,IMWUT,1,db/journals/imwut/imwut1.html#HassanDWKK17,http://doi.acm.org/10.1145/3053332 +Tian Hao,MindfulWatch: A Smartwatch-Based System For Real-Time Respiration Monitoring During Meditation.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#HaoBXCT17,http://doi.acm.org/10.1145/3130922 +Liang Liu 0001,Third-Eye: A Mobilephone-Enabled Crowdsensing System for Air Quality Monitoring.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#LiuLZMZ18,http://doi.acm.org/10.1145/3191752 +Tim Duente,MuscleIO: Muscle-Based Input and Output for Casual Notifications.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#DuenteSPR18,http://doi.acm.org/10.1145/3214267 +Tran Huy Vu,Smartwatch-based Early Gesture Detection 8 Trajectory Tracking for Interactive Gesture-Driven Applications.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#VuMRCL18,http://doi.acm.org/10.1145/3191771 +Yu Yang,SharedEdge: GPS-Free Fine-Grained Travel Time Estimation in State-Level Highway Systems.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#YangZZ18,http://doi.acm.org/10.1145/3191780 +Landu Jiang,SafeDrive: Detecting Distracted Driving Behaviors Using Wrist-Worn Devices.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#JiangLLBX17,http://doi.acm.org/10.1145/3161179 +Xiao Zhang,MoodExplorer: Towards Compound Emotion Detection via Smartphone Sensing.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#ZhangLCL17,http://doi.acm.org/10.1145/3161414 +Ryo Imai,Early Destination Prediction with Spatio-temporal User Behavior Patterns.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#ImaiTKS17,http://doi.acm.org/10.1145/3161197 +Isaac L. Johnson,Beautiful...but at What Cost?: An Examination of Externalities in Geographic Vehicle Routing.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#JohnsonHPSH17,http://doi.acm.org/10.1145/3090080 +Alessandro Montanari,Detecting Emerging Activity-Based Working Traits through Wearable Technology.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#MontanariMSN17,http://doi.acm.org/10.1145/3130951 +Noah Apthorpe,Discovering Smart Home Internet of Things Privacy Norms Using Contextual Integrity.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#ApthorpeSMRF18,http://doi.acm.org/10.1145/3214262 +Gregory D. Abowd,Editorial.,2017,1,IMWUT,1,db/journals/imwut/imwut1.html#AbowdKSSY17,http://doi.acm.org/10.1145/3075960 +Vaishnavi Ranganathan,RF Bandaid: A Fully-Analog and Passive Wireless Interface for Wearable Sensors.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#RanganathanGLST18,http://doi.acm.org/10.1145/3214282 +Saksham Chitkara,Does this App Really Need My Location?: Context-Aware Privacy Management for Smartphones.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#ChitkaraGHHA17,http://doi.acm.org/10.1145/3132029 +Mohamed Khamis,EyePACT: Eye-Based Parallax Correction on Touch-Enabled Interactive Displays.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#KhamisBTAB17,http://doi.acm.org/10.1145/3161168 +Bin Guo,CrowdStory: Fine-Grained Event Storyline Generation by Fusion of Multi-Modal Crowdsourced Data.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#GuoOZZYWW17,http://doi.acm.org/10.1145/3130920 +Yiqin Lu,BlindType: Eyes-Free Text Entry on Handheld Touchpad by Leveraging Thumb's Muscle Memory.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#LuYYSZ17,http://doi.acm.org/10.1145/3090083 +Liang Wang 0006,SpiderWalk: Circumstance-aware Transportation Activity Detection Using a Novel Contact Vibration Sensor.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#WangCPGWTL18,http://doi.acm.org/10.1145/3191774 +Kazuya Ohara,Detecting State Changes of Indoor Everyday Objects using Wi-Fi Channel State Information.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#OharaMM17,http://doi.acm.org/10.1145/3131898 +Cheng Zhang,SoundTrak: Continuous 3D Tracking of a Finger Using Active Acoustics.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#ZhangXWJPHLCIA17,http://doi.acm.org/10.1145/3090095 +Samiha Samrose,CoCo: Collaboration Coach for Understanding Team Dynamics during Video Conferencing.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#SamroseZWLNLAH17,http://doi.acm.org/10.1145/3161186 +Simon Butscher,InformationSense: Trade-offs for the Design and the Implementation of a Large Highly Deformable Cloth Display.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#ButscherDR17,http://doi.acm.org/10.1145/3090053 +Aftab Khan,Activity Recognition for Quality Assessment of Batting Shots in Cricket using a Hierarchical Representation.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#KhanNP17,http://doi.acm.org/10.1145/3130927 +Sam Mitchell Finnigan,Augmenting Audits: Exploring the Role of Sensor Toolkits in Sustainable Buildings Management.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#FinniganCFLC17,http://doi.acm.org/10.1145/3090075 +Balz Maag,W-Air: Enabling Personal Air Pollution Monitoring on Wearables.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#MaagZT18,http://doi.acm.org/10.1145/3191756 +Xuan Lu,PRADO: Predicting App Adoption by Learning the Correlation between Developer-Controllable Properties and User Behaviors.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#LuCLLXM17,http://doi.acm.org/10.1145/3130944 +Malcolm Haynes,Effects of Lateral Eye Displacement on Comfort While Reading from a Video Display Terminal.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#HaynesS17,http://doi.acm.org/10.1145/3161177 +Vuong Thanh Tung,Watching inside the Screen: Digital Activity Monitoring for Task Recognition and Proactive Information Retrieval.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#TungJR17,http://doi.acm.org/10.1145/3130974 +Nazmus Saquib,Sensei: Sensing Educational Interaction.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#SaquibBGK17,http://doi.acm.org/10.1145/3161172 +Siyuan Cao,Enabling Public Cameras to Talk to the Public.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#CaoW18,http://doi.acm.org/10.1145/3214266 +Florian Schaule,Employing Consumer Wearables to Detect Office Workers' Cognitive Load for Interruption Management.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#SchauleJBL18,http://doi.acm.org/10.1145/3191764 +Lawrence H. Kim,UbiSwarm: Ubiquitous Robotic Interfaces and Investigation of Abstract Motion as a Display.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#KimF17,http://doi.acm.org/10.1145/3130931 +Yinghui Li,Gazture: Design and Implementation of a Gaze based Gesture Control System on Tablets.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#LiCW17,http://doi.acm.org/10.1145/3130939 +Shuochao Yao,RDeepSense: Reliable Deep Mobile Computing Models with Uncertainty Estimations.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#YaoZSZZLA17,http://doi.acm.org/10.1145/3161181 +Sangwon Bae,Detecting Drinking Episodes in Young Adults Using Smartphone-based Sensors.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#BaeFSPKCD17,http://doi.acm.org/10.1145/3090051 +Jan Kucera,Towards Calm Displays: Matching Ambient Illumination in Bedrooms.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#KuceraSCOH17,http://doi.acm.org/10.1145/3090081 +Fannie Liu,Supporting Social Interactions with an Expressive Heart Rate Sharing Application.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#LiuDK17,http://doi.acm.org/10.1145/3130943 +Gaurav Paruthi,Finding the Sweet Spot(s): Understanding Context to Support Physical Activity Plans.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#ParuthiRCKN18,http://doi.acm.org/10.1145/3191761 +Petko Georgiev,Low-resource Multi-task Audio Sensing for Mobile and Embedded Devices via Shared Deep Neural Network Representations.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#GeorgievBLM17,http://doi.acm.org/10.1145/3131895 +Kohei Matsumura,On Active Passengering: Supporting In-Car Experiences.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#MatsumuraK17,http://doi.acm.org/10.1145/3161176 +Yang Xu,WiStep: Device-free Step Counting with WiFi Signals.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#XuYWZLH17,http://doi.acm.org/10.1145/3161415 +Yuanying Chen,Rapid: A Multimodal and Device-free Approach Using Noise Estimation for Robust Person Identification.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#ChenDGLG17,http://doi.acm.org/10.1145/3130906 +Xiao Wang,XRec: Behavior-Based User Recognition Across Mobile Devices.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#WangYZT17,http://doi.acm.org/10.1145/3130975 +Lie Ming Tang,Defining Adherence: Making Sense of Physical Activity Tracker Data.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#TangMEBEBK18,http://doi.acm.org/10.1145/3191769 +Chu Luo,TestAWARE: A Laboratory-Oriented Testing Tool for Mobile Context-Aware Applications.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#LuoKKFFGMK17,http://doi.acm.org/10.1145/3130945 +Yuxiang Lin,Calibrating Low-Cost Sensors by a Two-Phase Learning Approach for Urban Air Quality Measurement.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#LinDC18,http://doi.acm.org/10.1145/3191750 +Keum San Chun,Detecting Eating Episodes by Tracking Jawbone Movements with a Non-Contact Wearable Sensor.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#ChunBT18,http://doi.acm.org/10.1145/3191736 +Jing Qian,Remotion: A Motion-Based Capture and Replay Platform of Mobile Device Interaction for Remote Usability Testing.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#QianCPYNH18,http://doi.acm.org/10.1145/3214280 +Rui Wang,Tracking Depression Dynamics in College Students Using Mobile Phone and Wearable Sensing.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#WangWdHKHC18,http://doi.acm.org/10.1145/3191775 +Christian Holz,Glabella: Continuously Sensing Blood Pressure Behavior using an Unobtrusive Wearable Device.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#HolzW17,http://doi.acm.org/10.1145/3132024 +Corey Brian Jackson,Addressing The Privacy Paradox through Personalized Privacy Notifications.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#JacksonW18,http://doi.acm.org/10.1145/3214271 +Lie Ming Tang,Harnessing Long Term Physical Activity Data - How Long-term Trackers Use Data and How an Adherence-based Interface Supports New Insights.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#TangK17,http://doi.acm.org/10.1145/3090091 +Weixi Gu,SugarMate: Non-intrusive Blood Glucose Monitoring with Smartphones.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#GuZZLZZSZ17,http://doi.acm.org/10.1145/3130919 +Joan-Isaac Biel,Bites'n'Bits: Inferring Eating Behavior from Contextual Mobile Data.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#BielMLG17,http://doi.acm.org/10.1145/3161161 +Xuehan Ye,Accurate and Efficient Indoor Location by Dynamic Warping in Sequence-Type Radio-map.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#YeWGHL18,http://doi.acm.org/10.1145/3191782 +Kaifei Chen,SnapLink: Fast and Accurate Vision-Based Appliance Control in Large Commercial Buildings.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#ChenFKKJCK17,http://doi.acm.org/10.1145/3161173 +Zheng Lu 0005,Inferring Correlation between User Mobility and App Usage in Massive Coarse-grained Data Traces.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#LuFZLC17,http://doi.acm.org/10.1145/3161171 +Xiaojie Wu,Cost-Sensitive Semi-Supervised Personalized Semantic Place Label Recognition Using Multi-Context Data.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#WuCLHC17,http://doi.acm.org/10.1145/3131903 +Di Wu 0002,From Intermittent to Ubiquitous: Enhancing Mobile Access to Online Social Networks with Opportunistic Optimization.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#WuAPLGL17,http://doi.acm.org/10.1145/3130979 +Yiqing Hu,Lightitude: Indoor Positioning Using Uneven Light Intensity Distribution.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#HuXHLYZM18,http://doi.acm.org/10.1145/3214270 +Valentin Radu,Multimodal Deep Learning for Activity and Context Recognition.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#RaduTBLMMK17,http://doi.acm.org/10.1145/3161174 +Ru Zhao,Semi-Automated 8 Collaborative Online Training Module for Improving Communication Skills.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#ZhaoLBGH17,http://doi.acm.org/10.1145/3090097 +Thivya Kandappu,Obfuscation At-Source: Privacy in Context-Aware Mobile Crowd-Sourcing.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#KandappuMCTL18,http://doi.acm.org/10.1145/3191748 +Peter Washington,SuperpowerGlass: A Wearable Aid for the At-Home Therapy of Children with Autism.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#WashingtonVKHDF17,http://doi.acm.org/10.1145/3130977 +Tianxing Li,Reconstructing Hand Poses Using Visible Light.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#LiXXHYZ17,http://doi.acm.org/10.1145/3130937 +Li Yan 0004,Employing Opportunistic Charging for Electric Taxicabs to Reduce Idle Time.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#YanSLSSQZX18,http://doi.acm.org/10.1145/3191779 +Keunseo Kim,TrailSense: A Crowdsensing System for Detecting Risky Mountain Trail Segments with Walking Pattern Analysis.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#KimZKL17,http://doi.acm.org/10.1145/3131893 +David Beattie,Exploring How Drivers Perceive Spatial Earcons in Automated Vehicles.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#BeattieBH17,http://doi.acm.org/10.1145/3130901 +Su Yang,Predicting Commercial Activeness over Urban Big Data.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#YangWWSGZZ17,http://doi.acm.org/10.1145/3130983 +Ha Trinh,RoboCOP: A Robotic Coach for Oral Presentations.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#TrinhAEB17,http://doi.acm.org/10.1145/3090092 +Liangying Peng,AROMA: A Deep Multi-Task Learning Based Simple and Complex Human Activity Recognition Method Using Wearable Sensors.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#PengCYZ18,http://doi.acm.org/10.1145/3214277 +Alex Mariakakis,BiliScreen: Smartphone-Based Scleral Jaundice Monitoring for Liver and Pancreatic Disorders.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#MariakakisBPYTP17,http://doi.acm.org/10.1145/3090085 +Virag Varga,Enabling Interactive Infrastructure with Body Channel Communication.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#VargaVSG17,http://doi.acm.org/10.1145/3161180 +Benjamin H. Groh,Automated Ski Velocity and Jump Length Determination in Ski Jumping Based on Unobtrusive and Wearable Sensors.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#GrohWDKME17,http://doi.acm.org/10.1145/3130918 +Daniel Buschek,A Comparative Evaluation of Spatial Targeting Behaviour Patterns for Finger and Stylus Tapping on Mobile Touchscreen Devices.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#BuschekKA17,http://doi.acm.org/10.1145/3161160 +Yiran Zhao,VibeBin: A Vibration-Based Waste Bin Level Detection System.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#ZhaoYLHSA17,http://doi.acm.org/10.1145/3132027 +Jacob W. Kamminga,Robust Sensor-Orientation-Independent Feature Selection for Animal Activity Recognition on Collar Tags.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#KammingaLMBMH18,http://doi.acm.org/10.1145/3191747 +Takahiro Hashizume,Auth 'n' Scan: Opportunistic Photoplethysmography in Mobile Fingerprint Authentication.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#HashizumeAY17,http://doi.acm.org/10.1145/3161189 +Matthias Seuter,Running with Technology: Evaluating the Impact of Interacting with Wearable Devices on Running Movement.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#SeuterPBZK17,http://doi.acm.org/10.1145/3130966 +Olivier Augereau,Wordometer Systems for Everyday Life.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#AugereauSKK17,http://doi.acm.org/10.1145/3161601 +Tong Zhan,Capturing the Shifting Shapes: Enabling Efficient Screen-Camera Communication with a Pattern-based Dynamic Barcode.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#ZhanLCL18,http://doi.acm.org/10.1145/3191784 +Yun C. Zhang,Watching the TV Watchers.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#ZhangR18,http://doi.acm.org/10.1145/3214291 +Nivedita Arora,SATURN: A Thin and Flexible Self-powered Microphone Leveraging Triboelectric Nanogenerator.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#AroraZSOWGWSWA18,http://doi.acm.org/10.1145/3214263 +Xingyu Huang,CTS: A Cellular-based Trajectory Tracking System with GPS-level Accuracy.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#HuangLWCXZ17,http://doi.acm.org/10.1145/3161185 +Fengli Xu,Detecting Popular Temporal Modes in Population-scale Unlabelled Trajectory Data.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#XuXCLSM18,http://doi.acm.org/10.1145/3191778 +Eric Whitmire,DigiTouch: Reconfigurable Thumb-to-Finger Input and Text Entry on Head-mounted Displays.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#WhitmireJJNKPG17,http://doi.acm.org/10.1145/3130978 +Ankur Sarker,MORP: Data-Driven Multi-Objective Route Planning and Optimization for Electric Vehicles.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#SarkerSS17,http://doi.acm.org/10.1145/3161408 +David Dobbelstein,PocketThumb: a Wearable Dual-Sided Touch Interface for Cursor-based Control of Smart-Eyewear.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#DobbelsteinWHR17,http://doi.acm.org/10.1145/3090055 +Yu Guan,Ensembles of Deep LSTM Learners for Activity Recognition using Wearables.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#GuanP17,http://doi.acm.org/10.1145/3090076 +Niels van Berkel,Gamification of Mobile Experience Sampling Improves Data Quality and Quantity.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#BerkelGHK17,http://doi.acm.org/10.1145/3130972 +Yuanchun Li,PrivacyStreams: Enabling Transparency in Personal Data Processing for Mobile Apps.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#LiCLGHFAH17,http://doi.acm.org/10.1145/3130941 +Larry Chan,Students' Experiences with Ecological Momentary Assessment Tools to Report on Emotional Well-being.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#ChanSKBAW18,http://doi.acm.org/10.1145/3191735 +Chris Xiaoxuan Lu,Snoopy: Sniffing Your Smartwatch Passwords via Deep Sequence Learning.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#LuDWWMMST17,http://doi.acm.org/10.1145/3161196 +Rajalakshmi Nandakumar,CovertBand: Activity Information Leakage using Music.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#NandakumarTKG17,http://doi.acm.org/10.1145/3131897 +Xiao Sun,SleepMonitor: Monitoring Respiratory Rate and Body Position During Sleep Using Smartwatch.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#SunQWTC17,http://doi.acm.org/10.1145/3130969 +Sumeet Kumar,Rethinking the Future of Wireless Emergency Alerts: A Comprehensive Study of Technical and Conceptual Improvements.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#KumarEIGF18,http://doi.acm.org/10.1145/3214274 +Christopher Clarke,Remote Control by Body Movement in Synchrony with Orbiting Widgets: an Evaluation of TraceMatch.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#ClarkeBEG17,http://doi.acm.org/10.1145/3130910 +Yomna Abdelrahman,Cognitive Heat: Exploring the Usage of Thermal Imaging to Unobtrusively Estimate Cognitive Load.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#AbdelrahmanVDSV17,http://doi.acm.org/10.1145/3130898 +Chenshu Wu,Gain Without Pain: Accurate WiFi-based Localization using Fingerprint Spatial Gradient.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#WuXYLY17,http://doi.acm.org/10.1145/3090094 +Sherry Ruan,Comparing Speech and Keyboard Text Entry for Short Messages in Two Languages on Touchscreen Phones.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#RuanWLNL17,http://doi.acm.org/10.1145/3161187 +Swadhin Pradhan,Smartphone-based Acoustic Indoor Space Mapping.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#PradhanBMQCY18,http://doi.acm.org/10.1145/3214278 +Champika Manel Ranasinghe,Visualizing Location Uncertainty on Mobile Devices: Cross-Cultural Differences in Perceptions and Preferences.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#RanasingheKK18,http://doi.acm.org/10.1145/3191762 +Hancheng Cao,Uniqueness in the City: Urban Morphology and Location Privacy.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#CaoFLK18,http://doi.acm.org/10.1145/3214265 +Longbiao Chen,RADAR: Road Obstacle Identification for Disaster Response Leveraging Cross-Domain Urban Data.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#ChenFWZYLNPW17,http://doi.acm.org/10.1145/3161159 +Nan Yu,QGesture: Quantifying Gesture Distance and Direction with WiFi Signals.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#YuWLK18,http://doi.acm.org/10.1145/3191783 +Asif Salekin,A Weakly Supervised Learning Framework for Detecting Social Anxiety and Depression.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#SalekinEGTS18,http://doi.acm.org/10.1145/3214284 +Abhinav Mehrotra,Understanding the Role of Places and Activities on Mobile Phone Interaction and Usage Patterns.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#MehrotraMHGMMR17,http://doi.acm.org/10.1145/3131901 +Sameera Palipana,FallDeFi: Ubiquitous Fall Detection using Commodity Wi-Fi Devices.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#PalipanaRAP17,http://doi.acm.org/10.1145/3161183 +Yuki Kubo,Exploring Context-Aware User Interfaces for Smartphone-Smartwatch Cross-Device Interaction.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#KuboTST17,http://doi.acm.org/10.1145/3130934 +Hao Wu 0011,CLSTERS: A General System for Reducing Errors of Trajectories Under Challenging Localization Situations.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#WuSZYZ17,http://doi.acm.org/10.1145/3130981 +Xiaoyang Xie,PrivateHunt: Multi-Source Data-Driven Dispatching in For-Hire Vehicle Systems.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#XieZZ18,http://doi.acm.org/10.1145/3191777 +Kai Lukoff,What Makes Smartphone Use Meaningful or Meaningless?,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#LukoffYKH18,http://doi.acm.org/10.1145/3191754 +Yuanchun Li,Mining User Reviews for Mobile App Comparisons.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#LiJGC17,http://doi.acm.org/10.1145/3130935 +Benjamin Finley,Mobile Device Type Substitution.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#FinleyS18,http://doi.acm.org/10.1145/3191740 +Eunji Chong,Detecting Gaze Towards Eyes in Natural Social Interactions and Its Use in Child Assessment.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#ChongCYSRJRR17,http://doi.acm.org/10.1145/3131902 +Erin Griffiths,Privacy-preserving Image Processing with Binocular Thermal Cameras.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#GriffithsAW17,http://doi.acm.org/10.1145/3161198 +Man-Kang Leung,TwistIn: Tangible Authentication of Smart Devices via Motion Co-analysis with a Smartwatch.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#LeungFH18,http://doi.acm.org/10.1145/3214275 +Xiaoyi Fan,TagFree Activity Identification with RFIDs.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#FanGL18,http://doi.acm.org/10.1145/3191739 +Chenyu Huang,BreathLive: Liveness Detection for Heart Sound Authentication with Deep Breathing.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#HuangCYZ18,http://doi.acm.org/10.1145/3191744 +Yehoshua Shuki Cohen,Money Drives: Can Monetary Incentives based on Real-Time Monitoring Improve Driving Behavior?,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#CohenS17,http://doi.acm.org/10.1145/3161417 +Huichu Zhang,Detecting Urban Anomalies Using Multiple Spatio-Temporal Data Sources.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#ZhangZY18,http://doi.acm.org/10.1145/3191786 +Shijia Pan,FootprintID: Indoor Pedestrian Identification through Ambient Structural Vibration Sensing.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#PanYMFBMNZ17,http://doi.acm.org/10.1145/3130954 +Hayeon Jeong,Smartwatch Wearing Behavior Analysis: A Longitudinal Study.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#JeongKKLJ17,http://doi.acm.org/10.1145/3131892 +Morgan Vigil-Hayes,FiDO: A Community-based Web Browsing Agent and CDN for Challenged Network Environments.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#Vigil-HayesBZ17,http://doi.acm.org/10.1145/3132030 +Zhanna Sarsenbayeva,Effect of Distinct Ambient Noise Types on Mobile Interaction.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#SarsenbayevaBVK18,http://doi.acm.org/10.1145/3214285 +Martin Pielot,Beyond Interruptibility: Predicting Opportune Moments to Engage Mobile Phone Users.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#PielotCKSMO17,http://doi.acm.org/10.1145/3130956 +Ceara Byrne,Predicting the Suitability of Service Animals Using Instrumented Dog Toys.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#ByrneZFHSCSJ17,http://doi.acm.org/10.1145/3161184 +Koustuv Saha,Inferring Mood Instability on Social Media by Leveraging Ecological Momentary Assessments.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#SahaCBAC17,http://doi.acm.org/10.1145/3130960 +Lee Stearns,TouchCam: Realtime Recognition of Location-Specific On-Body Gestures to Support Users with Visual Impairments.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#StearnsOFF17,http://doi.acm.org/10.1145/3161416 +Hamish Tennent,Character Actor: Design and Evaluation of Expressive Robot Car Seat Motion.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#TennentMJ17,http://doi.acm.org/10.1145/3161407 +Stephen Uzor,Exploring the Communication of Progress in Home-based Falls Rehabilitation using Exergame Technologies.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#UzorB17,http://doi.acm.org/10.1145/3161195 +Taylan K. Sen,Automated Dyadic Data Recorder (ADDR) Framework and Analysis of Facial Cues in Deceptive Communication.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#SenHTH17,http://doi.acm.org/10.1145/3161178 +Seongmin Ham,QuickTalk: An Association-Free Communication Method for IoT Devices in Proximity.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#HamLL17,http://doi.acm.org/10.1145/3130921 +Milka Trajkova,Takes Tutu to Ballet: Designing Visual and Verbal Feedback for Augmented Mirrors.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#TrajkovaC18,http://doi.acm.org/10.1145/3191770 +Deepak Vasisht,Duet: Estimating User Position and Identity in Smart Homes Using Intermittent and Incomplete RF-Data.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#VasishtJHKK18,http://doi.acm.org/10.1145/3214287 +Robin Brewer,How to Remember What to Remember: Exploring Possibilities for Digital Reminder Systems.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#BrewerML17,http://doi.acm.org/10.1145/3130903 +Vamsi Talla,Battery-Free Cellphone.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#TallaKGS17,http://doi.acm.org/10.1145/3090090 +Inyeop Kim,Let's FOCUS: Mitigating Mobile Phone Use in College Classrooms.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#KimJJKL17,http://doi.acm.org/10.1145/3130928 +Ujwal Gadiraju,Modus Operandi of Crowd Workers: The Invisible Role of Microtask Work Environments.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#GadirajuCGD17,http://doi.acm.org/10.1145/3130914 +Alessandro Montanari,Measuring Interaction Proxemics with Wearable Light Tags.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#MontanariTFLJZM18,http://doi.acm.org/10.1145/3191757 +Jiayao Tan,SilentKey: A New Authentication Framework through Ultrasonic-based Lip Reading.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#TanWNS18,http://doi.acm.org/10.1145/3191768 +Tengxiang Zhang,TouchPower: Interaction-based Power Transfer for Power-as-needed Devices.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#ZhangYYWBS17,http://doi.acm.org/10.1145/3130986 +Shuai Wang 0008,BRAVO: Improving the Rebalancing Operation in Bike Sharing with Rebalancing Range Prediction.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#WangHZSLGLLS18,http://doi.acm.org/10.1145/3191776 +Mozhgan Azimpourkivi,Camera Based Two Factor Authentication Through Mobile and Wearable Devices.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#AzimpourkiviTC17,http://doi.acm.org/10.1145/3131904 +Akhil Mathur,Moving Beyond Market Research: Demystifying Smartphone User Behavior in India.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#MathurKMK17,http://doi.acm.org/10.1145/3130947 +Yongsen Ma,SignFi: Sign Language Recognition Using WiFi.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#MaZWZJ18,http://doi.acm.org/10.1145/3191755 +Jarrod Knibbe,Automatic Calibration of High Density Electric Muscle Stimulation.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#KnibbeSBH17,http://doi.acm.org/10.1145/3130933 +Abhinav Mehrotra,MyTraces: Investigating Correlation and Causation between Users' Emotional States and Mobile Phone Interaction.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#MehrotraTHM17,http://doi.acm.org/10.1145/3130948 +Parastoo Abtahi,Drone Near Me: Exploring Touch-Based Human-Drone Interaction.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#AbtahiZJL17,http://doi.acm.org/10.1145/3130899 +Nitesh Goyal,Intelligent Interruption Management using Electro Dermal Activity based Physiological Sensor for Collaborative Sensemaking.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#GoyalF17,http://doi.acm.org/10.1145/3130917 +Donghan Yu,Smartphone App Usage Prediction Using Points of Interest.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#YuLXZK17,http://doi.acm.org/10.1145/3161413 +Piotr Sapiezynski,Inferring Person-to-person Proximity Using WiFi Signals.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#SapiezynskiSWLL17,http://doi.acm.org/10.1145/3090089 +John Krumm,Urban Impulses: Evoked Responses From Local Event Stimuli.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#Krumm17,http://doi.acm.org/10.1145/3161193 +Shuo Zhang,Understanding Group Event Scheduling via the OutWithFriendz Mobile Application.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#ZhangAGHLM17,http://doi.acm.org/10.1145/3161200 +Jin Lu,Joint Modeling of Heterogeneous Sensing Data for Depression Assessment via Multi-task Learning.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#LuSYMWKBRWB18,http://doi.acm.org/10.1145/3191753 +Yonatan Vaizman,Context Recognition In-the-Wild: Unified Model for Multi-Modal Sensors and Multi-Label Classification.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#VaizmanWL17,http://doi.acm.org/10.1145/3161192 +Cheng Zhang,FingerSound: Recognizing unistroke thumb gestures using a ring.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#ZhangWKPGPSIA17,http://doi.acm.org/10.1145/3130985 +Xinyu Li,Progress Estimation and Phase Detection for Sequential Processes.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#LiZZZCGCMFB17,http://doi.acm.org/10.1145/3130936 +Christian Lander,hEYEbrid: A hybrid approach for mobile calibration-free gaze estimation.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#LanderLK17,http://doi.acm.org/10.1145/3161166 +Chuyu Wang,RF-ECG: Heart Rate Variability Assessment Based on COTS RFID Tag Array.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#WangXWCBL18,http://doi.acm.org/10.1145/3214288 +Jorge Gonçalves,CrowdPickUp: Crowdsourcing Task Pickup in the Wild.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#GoncalvesHBAK17,http://doi.acm.org/10.1145/3130916 +Yuki Uno,Luciola: A Millimeter-Scale Light-Emitting Particle Moving in Mid-Air Based On Acoustic Levitation and Wireless Powering.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#UnoQSIMHKKT17,http://doi.acm.org/10.1145/3161182 +Chuyu Wang,RF-Kinect: A Wearable RFID-based Approach Towards 3D Body Movement Tracking.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#WangLCXLL18,http://doi.acm.org/10.1145/3191773 +Liqiong Chang,RF-Copybook: A Millimeter Level Calligraphy Copybook based on commodity RFID.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#ChangXWCWTF17,http://doi.acm.org/10.1145/3161191 +Zhice Yang,Lightweight Display-to-device Communication Using Electromagnetic Radiation and FM Radio.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#YangZWZ18,http://doi.acm.org/10.1145/3191781 +Andrew Clayphan,Comparing a Single-Touch Whiteboard and a Multi-Touch Tabletop for Collaboration in School Museum Visits.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#ClayphanCKSH18,http://doi.acm.org/10.1145/3191738 +Jan Riemann,FlowPut: Environment-Aware Interactivity for Tangible 3D Objects.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#RiemannSHM18,http://doi.acm.org/10.1145/3191763 +Bin Guo,CityTransfer: Transferring Inter- and Intra-City Knowledge for Chain Store Site Recommendation based on Multi-Source Urban Data.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#GuoLZWY17,http://doi.acm.org/10.1145/3161411 +Vamsi Talla,LoRa Backscatter: Enabling The Vision of Ubiquitous Connectivity.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#TallaHKNSG17,http://doi.acm.org/10.1145/3130970 +Kyle Rector,Eyes-Free Art: Exploring Proxemic Audio Interfaces For Blind and Low Vision Art Engagement.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#RectorSTJM17,http://doi.acm.org/10.1145/3130958 +Rafal Kocielnik,Reflection Companion: A Conversational System for Engaging Users in Reflection on Physical Activity.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#KocielnikXAH18,http://doi.acm.org/10.1145/3214273 +Rafael Ballagas,The Design Space of 3D Printable Interactivity.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#BallagasGL18,http://doi.acm.org/10.1145/3214264 +Vitor F. Rey,Label Propagation: An Unsupervised Similarity Based Method for Integrating New Sensors in Activity Recognition Systems.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#ReyL17,http://doi.acm.org/10.1145/3130959 +Zhanna Sarsenbayeva,Sensing Cold-Induced Situational Impairments in Mobile Interaction Using Battery Temperature.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#SarsenbayevaBVR17,http://doi.acm.org/10.1145/3130963 +Sicong Liu,UbiEar: Bringing Location-independent Sound Awareness to the Hard-of-hearing People with Smartphones.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#LiuZDSHW17,http://doi.acm.org/10.1145/3090082 +Dominik Schürmann,OpenKeychain: An Architecture for Cryptography with Smart Cards and NFC Rings on Android.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#SchurmannDW17,http://doi.acm.org/10.1145/3130964 +Asif Salekin,Distant Emotion Recognition.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#SalekinCALSHBS17,http://doi.acm.org/10.1145/3130961 +Fazlay Rabbi,When Virtual Reality Meets Internet of Things in the Gym: Enabling Immersive Interactive Machine Exercises.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#RabbiPFZL18,http://doi.acm.org/10.1145/3214281 +Rui Wang 0016,Predicting Symptom Trajectories of Schizophrenia using Mobile Sensing.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#WangWABBCCHKSW17,http://doi.acm.org/10.1145/3130976 +Simon Klakegg,Assisted Medication Management in Elderly Care Using Miniaturised Near-Infrared Spectroscopy.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#KlakeggGLVPBSKH18,http://doi.acm.org/10.1145/3214272 +Abdelkareem Bedri,EarBit: Using Wearable Sensors to Detect Eating Episodes in Unconstrained Environments.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#BedriLHKGPBGSA17,http://doi.acm.org/10.1145/3130902 +Alex Mariakakis,PupilScreen: Using Smartphones to Assess Traumatic Brain Injury.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#MariakakisBWMBL17,http://doi.acm.org/10.1145/3131896 +Martin Weigel,DeformWear: Deformation Input on Tiny Wearable Devices.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#WeigelS17,http://doi.acm.org/10.1145/3090093 +Balz Maag,SCAN: Multi-Hop Calibration for Mobile Sensor Arrays.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#MaagZST17,http://doi.acm.org/10.1145/3090084 +Paul Baumann,Every Byte Counts: Selective Prefetching for Mobile Applications.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#BaumannS17,http://doi.acm.org/10.1145/3090052 +Mohamed Abdelaal 0001,ComNSense: Grammar-Driven Crowd-Sourcing of Point Clouds for Automatic Indoor Mapping.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#AbdelaalRDRRBF18,http://doi.acm.org/10.1145/3191733 +Haojian Jin,Towards Wearable Everyday Body-Frame Tracking using Passive RFIDs.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#JinYKH17,http://doi.acm.org/10.1145/3161199 +Christoph Anderson,A Survey of Attention Management Systems in Ubiquitous Computing Environments.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#AndersonHSODP18,http://doi.acm.org/10.1145/3214261 +Avinash Kalyanaraman,Forma Track: Tracking People based on Body Shape.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#KalyanaramanHSW17,http://doi.acm.org/10.1145/3130926 +Arsalan Mosenia,ProCMotive: Bringing Programmability and Connectivity into Isolated Vehicles.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#MoseniaBZMC18,http://doi.acm.org/10.1145/3191758 +Vivek K. Singh,Riskalyzer: Inferring Individual Risk-Taking Propensity Using Phone Metadata.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#SinghGW18,http://doi.acm.org/10.1145/3191766 +Xiaoran Fan,Energy-Ball: Wireless Power Transfer for Batteryless Internet of Things through Distributed Beamforming.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#FanDLSZTHH18,http://doi.acm.org/10.1145/3214268 +Cole Gleason,Crowdsourcing the Installation and Maintenance of Indoor Localization Infrastructure to Support Blind Navigation.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#GleasonASTPAKB18,http://doi.acm.org/10.1145/3191741 +Moses Akazue,Using Thermal Stimuli to Enhance Photo-Sharing in Social Media.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#AkazueHB17,http://doi.acm.org/10.1145/3090050 +Marco Speicher,VRShop: A Mobile Interactive Virtual Reality Shopping Environment Combining the Benefits of On- and Offline Shopping.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#SpeicherCK17,http://doi.acm.org/10.1145/3130967 +Pablo Paredes,Just Breathe: In-Car Interventions for Guided Slow Breathing.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#ParedesZHBMJL18,http://doi.acm.org/10.1145/3191760 +Vikram Iyer,Charging a Smartphone Across a Room Using Lasers.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#IyerBNMG17,http://doi.acm.org/10.1145/3161163 +Aditya Ponnada,Microinteraction Ecological Momentary Assessment Response Rates: Effect of Microinteractions or the Smartwatch?,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#PonnadaHMMI17,http://doi.acm.org/10.1145/3130957 +Wei Gong,SiFi: Pushing the Limit of Time-Based WiFi Localization Using a Single Commodity Access Point.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#GongL18,http://doi.acm.org/10.1145/3191742 +Xiang Li,IndoTrack: Device-Free Indoor Human Tracking with Commodity Wi-Fi.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#LiZLXLZM17,http://doi.acm.org/10.1145/3130940 +Weinan Shi,TOAST: Ten-Finger Eyes-Free Typing on Touchable Surfaces.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#ShiYYLS18,http://doi.acm.org/10.1145/3191765 +Yongtuo Zhang,Continuous Authentication Using Eye Movement Response of Implicit Visual Stimuli.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#ZhangHXCH17,http://doi.acm.org/10.1145/3161410 +Tilman Dingler,Building Cognition-Aware Systems: A Mobile Toolkit for Extracting Time-of-Day Fluctuations of Cognitive Performance.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#DinglerSM17,http://doi.acm.org/10.1145/3132025 +Nediyana Daskalova,Lessons Learned from Two Cohorts of Personal Informatics Self-Experiments.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#DaskalovaDPSSH17,http://doi.acm.org/10.1145/3130911 +Matthias Budde,Participatory Sensing or Participatory Nonsense?: Mitigating the Effect of Human Error on Data Quality in Citizen Science.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#BuddeSHDRB17,http://doi.acm.org/10.1145/3131900 +Ke-Yu Chen,Mago: Mode of Transport Inference Using the Hall-Effect Magnetic Sensor and Accelerometer.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#ChenSHN17,http://doi.acm.org/10.1145/3090054 +Afsaneh Doryab,If It's Convenient: Leveraging Context in Peer-to-Peer Variable Service Transaction Recommendations.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#DoryabBYWCD17,http://doi.acm.org/10.1145/3130913 +H. M. Sajjad Hossain,DeActive: Scaling Activity Recognition with Active Deep Learning.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#HossainKR18,http://doi.acm.org/10.1145/3214269 +Can Liu,Guessing Attacks on User-Generated Gesture Passwords.,2017,1,IMWUT,1,db/journals/imwut/imwut1.html#LiuCL17,http://doi.acm.org/10.1145/3053331 +Milan Jain,Portable+: A Ubiquitous And Smart Way Towards Comfortable Energy Savings.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#JainSC17,http://doi.acm.org/10.1145/3090079 +Rui Liu,Vocal Resonance: Using Internal Body Voice for Wearable Authentication.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#LiuCRPK18,http://doi.acm.org/10.1145/3191751 +Konstantinos Papangelis,Conquering the City: Understanding perceptions of Mobility and Human Territoriality in Location-based Mobile Games.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#PapangelisMSLCC17,http://doi.acm.org/10.1145/3130955 +Zengshi Huang,3DLoc: 3D Features for Accurate Indoor Positioning.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#HuangGHS17,http://doi.acm.org/10.1145/3161409 +Vijay Srinivasan,RuleSelector: Selecting Conditional Action Rules from User Behavior Patterns.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#SrinivasanKJ18,http://doi.acm.org/10.1145/3191767 +Mariella Dimiccoli,Mitigating Bystander Privacy Concerns in Egocentric Activity Recognition with Deep Learning and Intentional Image Degradation.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#DimiccoliMT17,http://doi.acm.org/10.1145/3161190 +Nan Zhao,Mediated Atmospheres: A Multimodal Mediated Work Environment.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#ZhaoAP17,http://doi.acm.org/10.1145/3090096 +Masato Sugasaki,Robust Indoor Localization across Smartphone Models with Ellipsoid Features from Multiple RSSIs.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#SugasakiS17,http://doi.acm.org/10.1145/3130968 +Caitlyn E. Seim,Passive Haptic Training to Improve Speed and Performance on a Keypad.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#SeimDZSS17,http://doi.acm.org/10.1145/3132026 +Maotian Zhang,iDial: Enabling a Virtual Dial Plate on the Hand Back for Around-Device Interaction.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#ZhangDYXTX18,http://doi.acm.org/10.1145/3191787 +Kundan Krishna,An LSTM Based System for Prediction of Human Activities with Durations.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#KrishnaJMC17,http://doi.acm.org/10.1145/3161201 +Takahiro Yabe,CityFlowFragility: Measuring the Fragility of People Flow in Cities to Disasters using GPS Data Collected from Smartphones.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#YabeTS17,http://doi.acm.org/10.1145/3130982 +Renhe Jiang,Deep ROI-Based Modeling for Urban Human Mobility Prediction.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#JiangSFXCCS18,http://doi.acm.org/10.1145/3191746 +Masato Nomiyama,Xnavi: Travel Planning System Based on Experience Flows.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#NomiyamaTOTNH18,http://doi.acm.org/10.1145/3191759 +Xinye Lin,SHOW: Smart Handwriting on Watches.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#LinCCLW17,http://doi.acm.org/10.1145/3161412 +Chen Song,My Smartphone Recognizes Genuine QR Codes!: Practical Unclonable QR Code via 3D Printing.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#SongLXZJR18,http://doi.acm.org/10.1145/3214286 +Jaejeung Kim,Technology Supported Behavior Restriction for Mitigating Self-Interruptions in Multi-device Environments.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#KimCL17,http://doi.acm.org/10.1145/3130932 +Young-Ho Kim,OmniTrack: A Flexible Self-Tracking Approach Leveraging Semi-Automated Tracking.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#KimJLCS17,http://doi.acm.org/10.1145/3130930 +Yu Zhang 0034,FinDroidHR: Smartwatch Gesture Input with Optical Heartrate Monitor.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#ZhangGLKS18,http://doi.acm.org/10.1145/3191788 +Saumay Pushp,PrivacyShield: A Mobile System for Supporting Subtle Just-in-time Privacy Provisioning through Off-Screen-based Touch Gestures.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#PushpLXKS18,http://doi.acm.org/10.1145/3214279 +Mark Mirtchouk,Recognizing Eating from Body-Worn Sensors: Combining Free-living and Laboratory Data.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#MirtchoukLSCZK17,http://doi.acm.org/10.1145/3131894 +Tianben Wang,C-FMCW Based Contactless Respiration Detection Using Acoustic Signal.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#WangZZGZD17,http://doi.acm.org/10.1145/3161188 +Myeongcheol Kwak,An Energy-efficient and Lightweight Indoor Localization System for Internet-of-Things (IoT) Environments.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#KwakPKHK18,http://doi.acm.org/10.1145/3191749 +Rostaminia Soha,iLid: Low-power Sensing of Fatigue and Drowsiness Measures on a Computational Eyeglass.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#SohaMGMG17,http://doi.acm.org/10.1145/3090088 +Sugang Li,Auto++: Detecting Cars Using Embedded Microphones in Real-Time.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#LiFZTLH17,http://doi.acm.org/10.1145/3130938 +Jeremy Gummeson,RFID Light Bulb: Enabling Ubiquitous Deployment of Interactive RFID Systems.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#GummesonMYRHS17,http://doi.acm.org/10.1145/3090077 +Xiao Zhang 0008,Touch Sense: Touch Screen Based Mental Stress Sense.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#ZhangLLZYYS18,http://doi.acm.org/10.1145/3214290 +Shuyu Sun 0001,A Locally Conservative Finite Element Method Based on Piecewise Constant Enrichment of the Continuous Galerkin Method.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#SunL09,https://doi.org/10.1137/080722953 +Mo Mu,A Grid-Based Subtree-Subcube Assignment Strategy for Solving Partial Differential Equations on Hypercubes.,1992,13,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc13.html#MuR92,https://doi.org/10.1137/0913049 +Philip J. Rasch,On Shape-Preserving Interpolation and Semi-Lagrangian Transport.,1990,11,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc11.html#RaschW90,https://doi.org/10.1137/0911039 +Lorenz Berger,Stabilized Lowest-Order Finite Element Approximation for Linear Three-Field Poroelasticity.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#BergerBKT15,https://doi.org/10.1137/15M1009822 +P. Batten,On the Choice of Wavespeeds for the HLLC Riemann Solver.,1997,18,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc18.html#BattenCLC97,https://doi.org/10.1137/S1064827593260140 +Bruno Lang,Using Level 3 BLAS in Rotation-Based Algorithms.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#Lang98,https://doi.org/10.1137/S1064827595280211 +Michael Junk,Discretizations for the Incompressible Navier-Stokes Equations Based on the Lattice Boltzmann Method.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#JunkK00,https://doi.org/10.1137/S1064827599357188 +John W. Ruge,A Nonlinear Multigrid Solver for a Semi-Lagrangian Potential Vorticity-Based Shallow-Water Model on the Sphere.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#RugeLMBB00,https://doi.org/10.1137/S1064827595284841 +Barry Joe,Construction of K-Dimensional Delaunay Triangulations Using Local Transformations.,1993,14,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc14.html#Joe93,https://doi.org/10.1137/0914083 +Eid H. Doha,Efficient Spectral-Galerkin Algorithms for Direct Solution of Second-Order Equations Using Ultraspherical Polynomials.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#DohaA02,https://doi.org/10.1137/S1064827500378933 +Martin J. Gander,Optimized Schwarz Methods with Overlap for the Helmholtz Equation.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#GanderZ16,https://doi.org/10.1137/15M1021659 +Kazufumi Ito,A Regularization Parameter for Nonsmooth Tikhonov Regularization.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#ItoJT11,https://doi.org/10.1137/100790756 +Franco Dassi,A Novel Surface Remeshing Scheme via Radial Basis Functions and Higher-Dimensional Embedding.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#DassiFS17,https://doi.org/10.1137/16M1077015 +J. L. Peterson,Positivity Preservation and Advection Algorithms with Applications to Edge Plasma Turbulence.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#PetersonH13,https://doi.org/10.1137/120888053 +Tugrul Dayar,On Vector-Kronecker Product Multiplication with Rectangular Factors.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#DayarO15,https://doi.org/10.1137/140980326 +Barry F. Smith,An Optimal Domain Decomposition Preconditioner for the Finite Element Solution of Linear Elasticity Problems.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#Smith92,https://doi.org/10.1137/0913019 +David F. Gleich,An Inner-Outer Iteration for Computing PageRank.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#GleichGGL10,https://doi.org/10.1137/080727397 +Xiao-Chuan Cai,Domain Decomposition Algorithms for Indefinite Elliptic Problems.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#CaiW92,https://doi.org/10.1137/0913013 +Sven Beuchler,Extension Operators on Tensor Product Structures in Two and Three Dimensions.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#Beuchler05,https://doi.org/10.1137/040605151 +Raymond H. Chan,Fast Multilevel Algorithm for a Minimization Problem in Impulse Noise Removal.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#ChanC08,https://doi.org/10.1137/060654931 +Lars Ferm,Two-Grid Solution of Shock Problems.,1997,18,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc18.html#FermL97,https://doi.org/10.1137/S1064827595280429 +Rebecka Tumblin,Parallel Compact Hash Algorithms for Computational Meshes.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#TumblinAHR15,https://doi.org/10.1137/13093371X +Wansheng Wang,Stability Analysis of Theta-Methods for Nonlinear Neutral Functional Differential Equations.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#WangL08,https://doi.org/10.1137/060654116 +Jens Georg Schmidt,An A Posteriori Error Estimator for the FEM in Nonlinear Elastostatics.,2003,24,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc24.html#Schmidt03,https://doi.org/10.1137/S1064827501384238 +Michael Baudin,A Semi-implicit Relaxation Scheme for Modeling Two-Phase Flow in a Pipeline.,2005,27,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc27.html#BaudinCT05,https://doi.org/10.1137/030601624 +Marie Billaud Friess,Dynamical Model Reduction Method for Solving Parameter-Dependent Dynamical Systems.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#FriessN17,https://doi.org/10.1137/16M1071493 +Stuart C. Hawkins,An Implicit Wavelet Sparse Approximate Inverse Preconditioner.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#HawkinsC05,https://doi.org/10.1137/S1064827503423500 +Martin Hanke,A General Heuristic for Choosing the Regularization Parameter in Ill-Posed Problems.,1996,17,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc17.html#HankeR96,https://doi.org/10.1137/0917062 +Shi Shu,Multilevel Preconditioning Methods for Discrete Models of Lattice Block Materials.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#ShuBXXZ08,https://doi.org/10.1137/070684203 +Martin J. Gander,Analysis of a New Space-Time Parallel Multigrid Algorithm for Parabolic Problems.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#GanderN16,https://doi.org/10.1137/15M1046605 +Paul M. de Zeeuw,Nonlinear Multigrid Applied to a One-Dimensional Stationary Semiconductor Model.,1992,13,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc13.html#Zeeuw92,https://doi.org/10.1137/0913028 +C. T. Kelley,Multilevel Algorithms for Constrained Compact Fixed Point Problems.,1994,15,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc15.html#KelleyS94,https://doi.org/10.1137/0915042 +Cédric Chauvière,A New Method for Micro-Macro Simulations of Viscoelastic Flows.,2002,23,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc23.html#Chauviere02,https://doi.org/10.1137/S1064827501384603 +Eugene Vecharynski,Preconditioned Locally Harmonic Residual Method for Computing Interior Eigenpairs of Certain Classes of Hermitian Matrices.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#VecharynskiK15,https://doi.org/10.1137/14098048X +Kevin R. Long,Unified Embedded Parallel Finite Element Computations via Software-Based Fr[e-acute]chet Differentiation.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#LongKW10,https://doi.org/10.1137/09076920X +Weizhu Bao,Numerical Study of Time-Splitting Spectral Discretizations of Nonlinear Schrödinger Equations in the Semiclassical Regimes.,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#BaoJM03,https://doi.org/10.1137/S1064827501393253 +J. H. Adler,Island Coalescence Using Parallel First-Order System Least Squares on Incompressible Resistive Magnetohydrodynamics.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#AdlerBMMRT13,https://doi.org/10.1137/120880227 +Cris Cecka,Fourier-Based Fast Multipole Method for the Helmholtz Equation.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#CeckaD13,https://doi.org/10.1137/11085774X +Qinghai Zhang,A Fourth-Order Accurate Finite-Volume Method with Structured Adaptive Mesh Refinement for Solving the Advection-Diffusion Equation.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#ZhangJC12,https://doi.org/10.1137/110820105 +Stefano Berrone,A Parallel Solver for Large Scale DFN Flow Simulations.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#BerronePSV15,https://doi.org/10.1137/140984014 +Kenneth Eriksson,Explicit Time-Stepping for Stiff ODEs.,2004,25,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc25.html#ErikssonJL04,https://doi.org/10.1137/S1064827502409626 +Mark Ainsworth,Bernstein-Bézier Finite Elements of Arbitrary Order and Optimal Assembly Procedures.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#AinsworthAD11,https://doi.org/10.1137/11082539X +Marco Picasso,A Numerical Study of Some Hessian Recovery Techniques on Isotropic and Anisotropic Meshes.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#PicassoABG11,https://doi.org/10.1137/100798715 +John Loffeld,Implementation of Parallel Adaptive-Krylov Exponential Solvers for Stiff Problems.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#LoffeldT14,https://doi.org/10.1137/13094462X +B. Lee,A Multigrid Framework for Sn Discretizations of the Boltzmann Transport Equation.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#Lee12,https://doi.org/10.1137/110841199 +Jian Liang,Solving Partial Differential Equations on Point Clouds.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#LiangZ13,https://doi.org/10.1137/120869730 +Zdzislaw Jackiewicz,Determination of Optimal Parameters for the Chebyshev-Gegenbauer Reconstruction Method.,2004,25,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc25.html#Jackiewicz04,https://doi.org/10.1137/S1064827503423597 +H. W. Tam,Two-Stage Parallel Methods for the Numerical Solution of Ordinary Differential Equations.,1992,13,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc13.html#Tam92a,https://doi.org/10.1137/0913062 +Carl T. Kelley,Fast Algorithms for Compact Fixed Point Problems with Inexact Function Evaluations.,1991,12,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc12.html#KelleyS91,https://doi.org/10.1137/0912038 +Arta A. Jamshidi,A Recursive Local Polynomial Approximation Method Using Dirichlet Clouds and Radial Basis Functions.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#JamshidiP16,https://doi.org/10.1137/15M1008592 +Stephen G. Walker,Sampling Unnormalized Probabilities: An Alternative to the Metropolis-Hastings Algorithm.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#Walker14,https://doi.org/10.1137/130922549 +Faker Ben Belgacem,Approximation of the Wave and Electromagnetic Diffusion Equations by Spectral Method.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#BelgacemG98,https://doi.org/10.1137/S1064827595294344 +Bernardo Cockburn,A Hybridizable Discontinuous Galerkin Method for Steady-State Convection-Diffusion-Reaction Problems.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#CockburnDGRS09,https://doi.org/10.1137/080728810 +Geng Yang,Inexact Block Jacobi-Broyden Methods for Solving Nonlinear Systems of Equations.,1997,18,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc18.html#YangDF97,https://doi.org/10.1137/S1064827595285172 +Jingzhi Li,Multilevel Linear Sampling Method for Inverse Scattering Problems.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#LiLZ08,https://doi.org/10.1137/060674247 +Marylesa Howard,Bayesian Abel Inversion in Quantitative X-Ray Radiography.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#HowardFLMH16,https://doi.org/10.1137/15M1018721 +Shang-Hong Lai,Generalized Capacitance Matrix Theorems and Algorithm for Solving Linear Systems.,1998,19,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc19.html#LaiV98,https://doi.org/10.1137/S1064827595283653 +Kui Ren,Frequency Domain Optical Tomography Based on the Equation of Radiative Transfer.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#RenBH06,https://doi.org/10.1137/040619193 +G. N. Milstein,Mean-Square Numerical Methods for Stochastic Differential Equations with Small Noises.,1997,18,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc18.html#MilsteinT97,https://doi.org/10.1137/S1064827594278575 +Thomas F. Coleman,Solving Systems of Nonlinear Equations on a Message-Passing Multiprocessor.,1990,11,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc11.html#ColemanL90,https://doi.org/10.1137/0911063 +Neil N. Carlson,Design and Application of a Gradient-Weighted Moving Finite Element Code I: in One Dimension.,1998,19,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc19.html#CarlsonM98,https://doi.org/10.1137/S106482759426955X +Shinichiro Ohnuki,Error Minimization of Multipole Expansion.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#OhnukiC05,https://doi.org/10.1137/S1064827502417970 +Elisabeth Ullmann,Efficient Iterative Solvers for Stochastic Galerkin Discretizations of Log-Transformed Random Diffusion Problems.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#UllmannEE12,https://doi.org/10.1137/110836675 +Katharine Gurski,An HLLC-Type Approximate Riemann Solver for Ideal Magnetohydrodynamics.,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#Gurski04,https://doi.org/10.1137/S1064827502407962 +Saifon Chaturantabut,Structure-Preserving Model Reduction for Nonlinear Port-Hamiltonian Systems.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#ChaturantabutBG16,https://doi.org/10.1137/15M1055085 +Christian Kuehn,Deterministic Continuation of Stochastic Metastable Equilibria via Lyapunov Equations and Ellipsoids.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#Kuehn12,https://doi.org/10.1137/110839874 +Susanne C. Brenner,Preconditioning Complicated Finite Elements by Simple Finite Elements.,1996,17,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc17.html#Brenner96,https://doi.org/10.1137/S1064827594277065 +Christopher C. Paige,Residual and Backward Error Bounds in Minimum Residual Krylov Subspace Methods.,2002,23,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc23.html#PaigeS02,https://doi.org/10.1137/S1064827500381239 +Elizabeth Qian,A Certified Trust Region Reduced Basis Approach to PDE-Constrained Optimization.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#QianGVW17,https://doi.org/10.1137/16M1081981 +Haijian Yang,Active-Set Reduced-Space Methods with Nonlinear Elimination for Two-Phase Flow Problems in Porous Media.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#YangYS16,https://doi.org/10.1137/15M1041882 +Kurt Georg,Approximation of Integrals for Boundary Element Methods.,1991,12,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc12.html#Georg91,https://doi.org/10.1137/0912024 +Nat Chun-Ho Leung,Partial Differential Equation Pricing of Contingent Claims under Stochastic Correlation.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#LeungCD18,https://doi.org/10.1137/16M1099017 +Xudong Yao,Numerical Methods for Computing Nonlinear Eigenpairs: Part II. Non-Iso-Homogeneous Cases.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#YaoZ08,https://doi.org/10.1137/060656425 +Peter White 0002,Spatial Invasion of Pine Beetles into Lodgepole Forests: A Numerical Approach.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#WhiteP98,https://doi.org/10.1137/S1064827596297550 +Kenji Kashima,On Weak Approximation of Stochastic Differential Equations through Hard Bounds by Mathematical Programming.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#KashimaK13,https://doi.org/10.1137/110841497 +Edward Rothberg,An Efficient Block-Oriented Approach to Parallel Sparse Cholesky Factorization.,1994,15,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc15.html#RothbergG94,https://doi.org/10.1137/0915085 +Cornelis W. Oosterlee,Krylov Subspace Acceleration of Nonlinear Multigrid with Application to Recirculating Flows.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#OosterleeW00,https://doi.org/10.1137/S1064827598338093 +Anwei Liu,Quality Local Refinement of Tetrahedral Meshes Based on Bisection.,1995,16,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc16.html#LiuJ95,https://doi.org/10.1137/0916074 +Alex A. Gorodetsky,Efficient Localization of Discontinuities in Complex Computational Simulations.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#GorodetskyM14,https://doi.org/10.1137/140953137 +Berkant Savas,Quasi-Newton Methods on Grassmannians and Multilinear Approximations of Tensors.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#SavasL10,https://doi.org/10.1137/090763172 +Jennifer A. Scott,On Positive Semidefinite Modification Schemes for Incomplete Cholesky Factorization.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#ScottT14,https://doi.org/10.1137/130917582 +Daniel Kressner,Recompression of Hadamard Products of Tensors in Tucker Format.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#KressnerP17,https://doi.org/10.1137/16M1093896 +Yin-Liang Huang,A Generalized MAC Scheme on Curvilinear Domains.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#HuangLW13,https://doi.org/10.1137/120875508 +Valeria Simoncini,Interpreting IDR as a Petrov--Galerkin Method.,2010,32,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc32.html#SimonciniS10,https://doi.org/10.1137/090774756 +Johan Hoffman,On Duality-Based A Posteriori Error Estimation in Various Norms and Linear Functionals for Large Eddy Simulation.,2004,26,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc26.html#Hoffman04,https://doi.org/10.1137/S1064827503417198 +A. Katharina Wilkins,Sensitivity Analysis for Oscillating Dynamical Systems.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#WilkinsTWB09,https://doi.org/10.1137/070707129 +Oliver Bröker,Robust Parallel Smoothing for Multigrid Via Sparse Approximate Inverses.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#BrokerGMR01,https://doi.org/10.1137/S1064827500380623 +Xiangfeng Wang,The Linearized Alternating Direction Method of Multipliers for Dantzig Selector.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#WangY12,https://doi.org/10.1137/110833543 +Shuang Zhang,Turbulent Decay and Mixing of Accelerated Inhomogeneous Flows Via a Feature Based Analysis.,2004,26,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc26.html#ZhangCZ04,https://doi.org/10.1137/S1064827503423962 +Andrea Barth,Uncertainty Quantification for Hyperbolic Conservation Laws with Flux Coefficients Given by Spatiotemporal Random Fields.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#BarthF16,https://doi.org/10.1137/15M1027723 +Raymond H. Chan,Wavelet Algorithms for High-Resolution Image Reconstruction.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#ChanCSS03,https://doi.org/10.1137/S1064827500383123 +Charles H. Tong,A Family of Quasi-Minimal Residual Methods for Nonsymmetric Linear Systems.,1994,15,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc15.html#Tong94,https://doi.org/10.1137/0915006 +Howard C. Elman,Block Preconditioners Based on Approximate Commutators.,2006,27,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc27.html#ElmanHSST06,https://doi.org/10.1137/040608817 +Sebastian Berisha,Deblurring and Sparse Unmixing of Hyperspectral Images Using Multiple Point Spread Functions.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#BerishaNP15,https://doi.org/10.1137/140980478 +Hongwei Lin,An Efficient Method for Fitting Large Data Sets Using T-Splines.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#LinZ13,https://doi.org/10.1137/120888569 +Wei Xu,Efficient (Partial) Determination of Derivative Matrices via Automatic Differentiation.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#XuC13,https://doi.org/10.1137/11085061X +Irad Yavneh,A Multilevel Nonlinear Method.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#YavnehD06,https://doi.org/10.1137/040613809 +Jacob Barhen,Consistent Uncertainty Reduction in Modeling Nonlinear Systems.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#BarhenPR04,https://doi.org/10.1137/S1064827503427522 +Augustin A. Dubrulle,Block Gauss Reduction to Hessenberg Form.,1991,12,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc12.html#Dubrulle91,https://doi.org/10.1137/0912066 +James Demmel,Performance and Accuracy of LAPACK's Symmetric Tridiagonal Eigensolvers.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#DemmelMPV08,https://doi.org/10.1137/070688778 +Owe Axelsson,On the Additive Version of the Algebraic Multilevel Iteration Method for Anisotropic Elliptic Problems.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#AxelssonP99,https://doi.org/10.1137/S1064827597320058 +Axel Klar,A Numerical Method for Kinetic Semiconductor Equations in the Drift-Diffusion Limit.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#Klar99,https://doi.org/10.1137/S1064827597319258 +F. J. Pinski,Algorithms for Kullback-Leibler Approximation of Probability Measures in Infinite Dimensions.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#PinskiSSW15,https://doi.org/10.1137/14098171X +Phaedon-Stelios Koutsourelakis,Accurate Uncertainty Quantification Using Inaccurate Computational Models.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#Koutsourelakis09,https://doi.org/10.1137/080733565 +Chengming Huang,An Analysis of Delay-Dependent Stability for Ordinary and Partial Differential Equations with Fixed and Distributed Delays.,2004,25,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc25.html#HuangV04,https://doi.org/10.1137/S1064827502409717 +Kamil A. Khan,Sensitivity Analysis of Limit-Cycle Oscillating Hybrid Systems.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#KhanSB11,https://doi.org/10.1137/100804632 +David A. Kay,A Posteriori Error Estimation for Stabilized Mixed Approximations of the Stokes Equations.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#KayS99,https://doi.org/10.1137/S1064827598333715 +Willem Hundsdorfer,On Multistep Stabilizing Correction Splitting Methods with Applications to the Heston Model.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#HundsdorferH18,https://doi.org/10.1137/17M1146026 +Ulrich Rüde,On the Multilevel Adaptive Iterative Method.,1994,15,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc15.html#Rude94,https://doi.org/10.1137/0915038 +John M. Conroy,Data-Parallel Sparse Factorization.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#ConroyKLN98,https://doi.org/10.1137/S1064827594276412 +Paul J. Lanzkron,An Analysis of Approximate Nonlinear Elimination.,1996,17,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc17.html#LanzkronRW96,https://doi.org/10.1137/S106482759325154X +Eugene Vecharynski,The Cycle-Convergence of Restarted GMRES for Normal Matrices Is Sublinear.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#VecharynskiL10,https://doi.org/10.1137/080727403 +Marjon J. Ruijter,Two-Dimensional Fourier Cosine Series Expansion Method for Pricing Financial Options.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#RuijterO12,https://doi.org/10.1137/120862053 +Piero Barone,A Diffusion Equation for the Density of the Ratio of Two Jointly Distributed Gaussian Variables and the Exponential Analysis Problem.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#Barone12,https://doi.org/10.1137/110835323 +Elizabeth R. Jessup,Performance-Based Numerical Solver Selection in the Lighthouse Framework.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#JessupMNS16,https://doi.org/10.1137/15M1028406 +Riccardo Aramini,Postprocessing of the Linear Sampling Method by Means of Deformable Models.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#AraminiBCP08,https://doi.org/10.1137/070701583 +Amir F. Atiya,Efficient Estimation of First Passage Time Density Function for Jump-Diffusion Processes.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#AtiyaM05,https://doi.org/10.1137/S1064827502417982 +Tamara G. Kolda,Counting Triangles in Massive Graphs with MapReduce.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#KoldaPPST14,https://doi.org/10.1137/13090729X +Ronald D. Haynes,A Schwarz Waveform Moving Mesh Method.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#HaynesR07,https://doi.org/10.1137/050631549 +S. V. Tsynkov,Artificial Boundary Conditions for Computation of Oscillating External Flows.,1997,18,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc18.html#Tsynkov97,https://doi.org/10.1137/S1064827595291145 +John R. Gilbert,Highly Parallel Sparse Cholesky Factorization.,1992,13,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc13.html#GilbertS92,https://doi.org/10.1137/0913067 +Yvon Maday,The Reduced Basis Element Method: Application to a Thermal Fin Problem.,2004,26,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc26.html#MadayR04,https://doi.org/10.1137/S1064827502419932 +Huayi Wei,Adaptive Mesh Refinement and Superconvergence for Two-Dimensional Interface Problems.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#WeiCHZ14,https://doi.org/10.1137/120866622 +Henri Calandra,A Modified Block Flexible GMRES Method with Deflation at Each Iteration for the Solution of Non-Hermitian Linear Systems with Multiple Right-Hand Sides.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#CalandraGLVC13,https://doi.org/10.1137/120883037 +Manuel Jesús Castro Díaz,On Well-Balanced Finite Volume Methods for Nonconservative Nonhomogeneous Hyperbolic Systems.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#DiazRFP07,https://doi.org/10.1137/040607642 +Jason Frank,Linear PDEs and Numerical Methods That Preserve a Multisymplectic Conservation Law.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#FrankMR06,https://doi.org/10.1137/050628271 +Tony F. Chan,A Nonlinear Primal-Dual Method for Total Variation-Based Image Restoration.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#ChanGM99,https://doi.org/10.1137/S1064827596299767 +John A. Mackenzie,The Efficient Generation of Simple Two-Dimensional Adaptive Grids.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#Mackenzie98,https://doi.org/10.1137/S1064827594271068 +Ching Y. Loh,A New Lagrangian Method for Time-Dependent Inviscid Flow Computation.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#LohH00,https://doi.org/10.1137/S1064827597330856 +David W. Zingg,A Method of Smooth Bivariate Interpolation for Data Given on a Generalized Curvilinear Grid.,1992,13,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc13.html#ZinggY92,https://doi.org/10.1137/0913040 +Yair Censor,On Diagonally Relaxed Orthogonal Projection Methods.,2008,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#CensorEHN08,https://doi.org/10.1137/050639399 +Qifeng Liao,A Domain Decomposition Approach for Uncertainty Analysis.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#LiaoW15,https://doi.org/10.1137/140980508 +Nigam Chandra Parida,The Alpha-Method Direct Transcription in Path Constrained Dynamic Optimization.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#ParidaR09,https://doi.org/10.1137/070682289 +Franciszek A. Dul,MINRES and MINERR Are Better than SYMMLQ in Eigenpair Computations.,1998,19,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc19.html#Dul98,https://doi.org/10.1137/S106482759528226X +Hans D. Mittelmann,Iterative Solution of the Eigenvalue Problem in Hopf Bifurcation for the Boussinesq Equations.,1994,15,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc15.html#MittelmannCJ94,https://doi.org/10.1137/0915045 +Dan Kushnir,A Highly Accurate Solver for Stiff Ordinary Differential Equations.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#KushnirR12,https://doi.org/10.1137/100810216 +Fynn Scheben,Iterative Methods for Neutron Transport Eigenvalue Problems.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#SchebenG11,https://doi.org/10.1137/100799022 +Peter A. Forsyth,Quadratic Convergence for Valuing American Options Using a Penalty Method.,2002,23,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc23.html#ForsythV02,https://doi.org/10.1137/S1064827500382324 +Tomasz Hrycak,An Improved Fast Multipole Algorithm for Potential Fields.,1998,19,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc19.html#HrycakR98,https://doi.org/10.1137/S106482759630989X +Traian Iliescu,Are the Snapshot Difference Quotients Needed in the Proper Orthogonal Decomposition?,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#IliescuW14,https://doi.org/10.1137/130925141 +Mao De-kang,Toward Front Tracking Based on Conservation in Two Space Dimensions.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#De-kang00,https://doi.org/10.1137/S1064827597310609 +Harald Garcke,Numerical Approximation of Phase Field Based Shape and Topology Optimization for Fluids.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#GarckeHHK15,https://doi.org/10.1137/140969269 +S. S. Ravindran,Adaptive Reduced-Order Controllers for a Thermal Flow System Using Proper Orthogonal Decomposition.,2002,23,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc23.html#Ravindran02,https://doi.org/10.1137/S1064827500374716 +Rafael Bru,Preconditioning Sparse Nonsymmetric Linear Systems with the Sherman-Morrison Formula.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#BruCMM03,https://doi.org/10.1137/S1064827502407524 +Saptarshi Das,Solving Overdetermined Eigenvalue Problems.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#DasN13,https://doi.org/10.1137/110828514 +Sadegh Jokar,Exact and Approximate Sparse Solutions of Underdetermined Linear Equations.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#JokarP08,https://doi.org/10.1137/070686676 +Guido M. Cortelazzo,Rational Multiple Criterion Approximation and Rational Complex Approximation by Differential Correction-Type Algorithms.,1995,16,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc16.html#CortelazzoMM95,https://doi.org/10.1137/0916057 +Manuel Torrilhon,Locally Divergence-preserving Upwind Finite Volume Schemes for Magnetohydrodynamic Equations.,2005,26,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc26.html#Torrilhon05,https://doi.org/10.1137/S1064827503426401 +Dongmin Kim,Tackling Box-Constrained Optimization via a New Projected Quasi-Newton Approach.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#KimSD10,https://doi.org/10.1137/08073812X +Felix Gremse,GPU-Accelerated Sparse Matrix-Matrix Multiplication by Iterative Row Merging.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#GremseHSKN15,https://doi.org/10.1137/130948811 +Christian Bender,Iterative Improvement of Lower and Upper Bounds for Backward SDEs.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#BenderGS17,https://doi.org/10.1137/16M1081348 +Raimund Bürger,Antidiffusive and Random-Sampling Lagrangian-Remap Schemes for the Multiclass Lighthill-Whitham-Richards Traffic Model.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#BurgerCV13,https://doi.org/10.1137/130923877 +Francis Filbet,A Hierarchy of Hybrid Numerical Methods for Multiscale Kinetic Equations.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#FilbetR15,https://doi.org/10.1137/140958773 +Giray ökten,Solving Linear Equations by Monte Carlo Simulation.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#Okten05,https://doi.org/10.1137/04060500X +Xiang-Gen Xia,Signal Extrapolation in Wavelet Subspaces.,1995,16,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc16.html#XiaKZ95,https://doi.org/10.1137/0916005 +Debojyoti Ghosh,Efficient Implementation of Nonlinear Compact Schemes on Massively Parallel Platforms.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#GhoshCB15,https://doi.org/10.1137/140989261 +Scott MacLachlan,Algebraic Multigrid Solvers for Complex-Valued Matrices.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#MacLachlanO08,https://doi.org/10.1137/070687232 +Nicholas J. Higham,Estimating the Condition Number of the Fréchet Derivative of a Matrix Function.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#HighamR14,https://doi.org/10.1137/130950082 +William L. Briggs,Wavelets and Multigrid.,1993,14,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc14.html#BriggsE93,https://doi.org/10.1137/0914031 +Giacomo Dimarco,Study of a New Asymptotic Preserving Scheme for the Euler System in the Low Mach Number Limit.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#DimarcoLV17,https://doi.org/10.1137/16M1069274 +Peter N. Brown,Preconditioning Strategies for Fully Implicit Radiation Diffusion with Material-Energy Transfer.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#BrownW01,https://doi.org/10.1137/S106482750037295X +James J. Brannick,Bootstrap Algebraic Multigrid for the 2D Wilson Dirac system.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#BrannickK14,https://doi.org/10.1137/130934660 +Siegfried M. Rump,Accurate Floating-Point Summation Part I: Faithful Rounding.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#RumpOO08,https://doi.org/10.1137/050645671 +L. S. Hou,Numerical Approximation of Optimal Flow Control Problems by a Penalty Method: Error Estimates and Numerical Results.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#HouR99,https://doi.org/10.1137/S1064827597325153 +Jisheng Kou,Numerical Methods for a Multicomponent Two-Phase Interface Model with Geometric Mean Influence Parameters.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#KouS15,https://doi.org/10.1137/140969579 +Prateek Sharma,Numerical Implementation of Streaming Down the Gradient: Application to Fluid Modeling of Cosmic Rays and Saturated Conduction.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#SharmaCM10,https://doi.org/10.1137/100792135 +Kathrin Smetana,Optimal Local Approximation Spaces for Component-Based Static Condensation Procedures.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#SmetanaP16,https://doi.org/10.1137/15M1009603 +Yunqing Huang,Modeling Backward Wave Propagation in Metamaterials by the Finite Element Time-Domain Method.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#HuangLY13,https://doi.org/10.1137/120869869 +Jack J. Dongarra,A Parallel Algorithm for the Nonsymmetric Eigenvalue Problem.,1993,14,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc14.html#DongarraS93,https://doi.org/10.1137/0914035 +Tony F. Chan,On the Optimality of the Median Cut Spectral Bisection Graph Partitioning Method.,1997,18,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc18.html#ChanCS97,https://doi.org/10.1137/S1064827594262649 +Lina Song,Recovery-Based Error Estimator for Stabilized Finite Element Method for the Stationary Navier-Stokes Problem.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#SongSF16,https://doi.org/10.1137/15M1015261 +Eugene Vecharynski,Absolute Value Preconditioning for Symmetric Indefinite Linear Systems.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#VecharynskiK13,https://doi.org/10.1137/120886686 +Pavel P. Popov,The Direct Richardson pth Order (DRp) Schemes: A New Class of Time Integration Schemes for Stochastic Differential Equations.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#PopovP12,https://doi.org/10.1137/100801445 +Moody T. Chu,Low-Dimensional Polytope Approximation and Its Applications to Nonnegative Matrix Factorization.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#ChuL08,https://doi.org/10.1137/070680436 +Anne Greenbaum,Max-Min Properties of Matrix Factor Norms.,1994,15,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc15.html#GreenbaumG94,https://doi.org/10.1137/0915024 +Chen Greif,Iterative Solution of Cyclically Reduced Systems Arising from Discretization of the Three-Dimensional Convection-Diffusion Equation.,1998,19,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc19.html#GreifV98,https://doi.org/10.1137/S1064827596296994 +Tristan van Leeuwen,3D Frequency-Domain Seismic Inversion with Controlled Sloppiness.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#LeeuwenH14,https://doi.org/10.1137/130918629 +Jinchao Xu,A Novel Two-Grid Method for Semilinear Elliptic Equations.,1994,15,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc15.html#Xu94,https://doi.org/10.1137/0915016 +Aaron Luttman,A Variational Approach to Video Segmentation for Botanical Data.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#LuttmanB07,https://doi.org/10.1137/060653792 +Elisabeth Ullmann,A Kronecker Product Preconditioner for Stochastic Galerkin Finite Element Discretizations.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#Ullmann10,https://doi.org/10.1137/080742853 +Aslak Tveito,The Solution of Nonstrictly Hyperbolic Conservation Laws May Be Hard to Compute.,1995,16,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc16.html#TveitoW95,https://doi.org/10.1137/0916021 +Konstantin Lipnikov,Anderson Acceleration for Nonlinear Finite Volume Scheme for Advection-Diffusion Problems.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#LipnikovSV13,https://doi.org/10.1137/120867846 +Devin A. Matthews,High-Performance Tensor Contraction without Transposition.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#Matthews18,https://doi.org/10.1137/16M108968X +Anil Damle,Computing Localized Representations of the Kohn-Sham Subspace Via Randomization and Refinement.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#Damle0Y17,https://doi.org/10.1137/16M1098589 +June M. Donato,Fourier Analysis of Incomplete Factorization Preconditioners for Three-Dimensional Anisotropic Problems.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#DonatoC92,https://doi.org/10.1137/0913017 +Huo-Yuan Duan,A Mixed H1-Conforming Finite Element Method for Solving Maxwell's Equations with Non-H1 Solution.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#DuanTYY18,https://doi.org/10.1137/16M1078082 +Martin J. Gander,Analysis of the Parareal Time-Parallel Time-Integration Method.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#GanderV07,https://doi.org/10.1137/05064607X +Kazufumi Ito,Optimal Control of Thermally Convected Fluid Flows.,1998,19,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc19.html#ItoR98,https://doi.org/10.1137/S1064827596299731 +Tugrul Dayar,On the Effects of Using the Grassmann-Taksar-Heyman Method in Iterative Aggregation-Disaggregation.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#DayarS96,https://doi.org/10.1137/0917021 +Pieter Ghysels,Modeling the Performance of Geometric Multigrid Stencils on Multicore Computer Architectures.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#GhyselsV15,https://doi.org/10.1137/130935781 +Pierre Degond,On the Time Splitting Spectral Method for the Complex Ginzburg-Landau Equation in the Large Time and Space Scale Limit.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#DegondJT08,https://doi.org/10.1137/070700711 +Peter K. Moore,An Adaptive Finite Element Method for Parabolic Differential Systems: Some Algorithmic Considerations in Solving in Three Space Dimensions.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#Moore99,https://doi.org/10.1137/S1064827598349197 +Benjamin Ganis,A Stochastic Mortar Mixed Finite Element Method for Flow in Porous Media with Multiple Rock Types.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#GanisYZ11,https://doi.org/10.1137/100790689 +Yee Lo Keung,An Efficient Linear Solver for Nonlinear Parameter Identification Problems.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#KeungZ01,https://doi.org/10.1137/S1064827598346740 +Thomas G. Fai,Immersed Boundary Method for Variable Viscosity and Variable Density Problems Using Fast Constant-Coefficient Linear Solvers II: Theory.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#FaiGMP14,https://doi.org/10.1137/12090304X +A. M. Blokhin,Numerical Method for 2D Simulation of a Silicon MESFET with a Hydrodynamical Model Based on the Maximum Entropy Principle.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#BlokhinI09,https://doi.org/10.1137/070706537 +Mario Ohlberger,Error Control for the Localized Reduced Basis Multiscale Method with Adaptive On-Line Enrichment.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#OhlbergerS15,https://doi.org/10.1137/151003660 +J. H. Adler,Robust Solvers for Maxwell's Equations with Dissipative Boundary Conditions.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#AdlerHZ17,https://doi.org/10.1137/16M1073339 +Helmut Harbrecht,Wavelet Galerkin Schemes for Boundary Integral Equations-Implementation and Quadrature.,2006,27,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc27.html#HarbrechtS06,https://doi.org/10.1137/S1064827503429387 +Nicholas J. Higham,Estimating the Largest Elements of a Matrix.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#HighamR16,https://doi.org/10.1137/15M1053645 +Ulrike Baur,Gramian-Based Model Reduction for Data-Sparse Systems.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#BaurB08,https://doi.org/10.1137/070711578 +Srinivas Aluru,Greengard's N-Body Algorithm is not Order N.,1996,17,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc17.html#Aluru96,https://doi.org/10.1137/S1064827593272031 +Weizhu Bao,A Simple and Efficient Numerical Method for Computing the Dynamics of Rotating Bose-Einstein Condensates via Rotating Lagrangian Coordinates.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#BaoMTZ13,https://doi.org/10.1137/130911111 +Anshul Gupta,Enhancing Performance and Robustness of ILU Preconditioners by Blocking and Selective Transposition.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#Gupta17,https://doi.org/10.1137/15M1053256 +Weidong Zhao,New Kinds of High-Order Multistep Schemes for Coupled Forward Backward Stochastic Differential Equations.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#ZhaoFZ14,https://doi.org/10.1137/130941274 +Paul H. Calamai,Generating Linear and Linear-Quadratic Bilevel Programming Problems.,1993,14,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc14.html#CalamaiV93,https://doi.org/10.1137/0914049 +M. A. T. van Hinsberg,On the Efficiency and Accuracy of Interpolation Methods for Spectral Codes.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#HinsbergBTC12,https://doi.org/10.1137/110849018 +Joseph Young,An Application of Random Projection to Parameter Estimation in Partial Differential Equations.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#YoungR12,https://doi.org/10.1137/11084666X +Jørgen Sand,A Jacobi Waveform Relaxation Method for ODEs.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#SandB98,https://doi.org/10.1137/S1064827596306562 +Roman Wienands,On Three-Grid Fourier Analysis for Multigrid.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#WienandsO01,https://doi.org/10.1137/S106482750037367X +Xiaobo Yang,A Moving Mesh WENO Method for One-Dimensional Conservation Laws.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#YangHQ12,https://doi.org/10.1137/110856381 +Emil M. Constantinescu,Extrapolated Implicit-Explicit Time Stepping.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#ConstantinescuS10,https://doi.org/10.1137/080732833 +Grady I. Lemoine,High-Resolution Finite Volume Modeling of Wave Propagation in Orthotropic Poroelastic Media.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#LemoineOL13,https://doi.org/10.1137/120878720 +Verena Kuhlemann,Improving the Communication Pattern in Matrix-Vector Operations for Large Scale-Free Graphs by Disaggregation.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#KuhlemannV13,https://doi.org/10.1137/12088313X +Ivi C. Tsantili,A Computational Stochastic Methodology for the Design of Random Meta-materials under Geometric Constraints.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#TsantiliCCK18,https://doi.org/10.1137/17M1113473 +Xudong Yao,Numerical Methods for Computing Nonlinear Eigenpairs: Part I. Iso-Homogeneous Cases.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#YaoZ07,https://doi.org/10.1137/060651859 +Jie Chen,How Accurately Should I Compute Implicit Matrix-Vector Products When Applying the Hutchinson Trace Estimator?,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#Chen16,https://doi.org/10.1137/15M1051506 +Jesse Chan,GPU-Accelerated Bernstein-Bézier Discontinuous Galerkin Methods for Wave Problems.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#ChanW17,https://doi.org/10.1137/15M1053542 +Luiz Mariano Carvalho,Algebraic Two-Level Preconditioners for the Schur Complement Method.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#CarvalhoGT01,https://doi.org/10.1137/S1064827598340809 +William F. Mitchell,Optimal Multilevel Iterative Methods for Adaptive Grids.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#Mitchell92,https://doi.org/10.1137/0913009 +Jing Li,Surrogate Based Method for Evaluation of Failure Probability under Multiple Constraints.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#LiX14,https://doi.org/10.1137/120877192 +Alfio Quarteroni,A Domain Decomposition Method for Advection-Diffusion Processes with Application to Blood Solutes.,2002,23,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc23.html#QuarteroniVZ02,https://doi.org/10.1137/S1064827500375722 +Tony F. Chan,Efficient Variants of the Vertex Space Domain Decomposition Algorithm.,1994,15,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc15.html#ChanMS94,https://doi.org/10.1137/0915082 +James Glimm,Interface Tracking for Axisymmetric Flows.,2002,24,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc24.html#GlimmGZ02,https://doi.org/10.1137/S1064827500366690 +Panagiota Tsompanopoulou,ADI Methods for Cubic Spline Collocation Discretizations of Elliptic PDE.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#TsompanopoulouV98,https://doi.org/10.1137/S1064827595281794 +Bernardo Cockburn,A Hybridizable Discontinuous Galerkin Method for the p-Laplacian.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#CockburnS16,https://doi.org/10.1137/15M1008014 +Antonio Marquina,Local Piecewise Hyperbolic Reconstruction of Numerical Fluxes for Nonlinear Scalar Conservation Laws.,1994,15,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc15.html#Marquina94,https://doi.org/10.1137/0915054 +John Greenstadt,Cell Discretization of Nonselfadjoint Linear Elliptic Partial Differential Equations.,1991,12,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc12.html#Greenstadt91,https://doi.org/10.1137/0912057 +Florian Schornbaum,Extreme-Scale Block-Structured Adaptive Mesh Refinement.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#SchornbaumR18,https://doi.org/10.1137/17M1128411 +Luca Bonaventura,Semi-Lagrangian Methods for Parabolic Problems in Divergence Form.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#BonaventuraF14,https://doi.org/10.1137/140969713 +Christopher R. Anderson,Integral Equation Preconditioning for the Solution of Poisson's Equation on Geometrically Complex Regions.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#AndersonL99,https://doi.org/10.1137/S1064827597323804 +Jitendra Kumar,A Note on Moment Preservation of Finite Volume Schemes for Solving Growth and Aggregation Population Balance Equations.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#KumarW10,https://doi.org/10.1137/090757356 +John A. Gubner,Computation of Shot-Noise Probability Distributions and Densities.,1996,17,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc17.html#Gubner96,https://doi.org/10.1137/S1064827594268725 +Marco Caliari,Meshfree Exponential Integrators.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#CaliariOR13,https://doi.org/10.1137/100818236 +Jeffrey J. Heys,Enhanced Mass Conservation in Least-Squares Methods for Navier-Stokes Equations.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#HeysLMMR09,https://doi.org/10.1137/080721303 +M. van Veldhuizen,Approximation of the Invariant Manifold in the Josephson Equation.,1992,13,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc13.html#Veldhuizen92,https://doi.org/10.1137/0913038 +Amel Sboui,A Composite Mixed Finite Element for Hexahedral Grids.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#SbouiJR09,https://doi.org/10.1137/070703703 +Mario Arioli,A Block Projection Method for Sparse Matrices.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#ArioliDNR92,https://doi.org/10.1137/0913003 +Daniel Y. Le Roux,Analysis of Numerically Induced Oscillations in 2D Finite-Element Shallow-Water Models Part I: Inertia-Gravity Waves.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#RouxRP07,https://doi.org/10.1137/060650106 +Tony W. H. Sheu,Element-by-Element Parallel Computation of Incompressible Navier-Stokes Equations in Three Dimensions.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#SheuWT99,https://doi.org/10.1137/S1064827598335416 +Michael P. Friedlander,Low-Rank Spectral Optimization via Gauge Duality.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#FriedlanderM16,https://doi.org/10.1137/15M1034283 +Haw-ren Fang,A Filtered Lanczos Procedure for Extreme and Interior Eigenvalue Problems.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#FangS12,https://doi.org/10.1137/110836535 +Jurjen Duintjer Tebbens,Efficient Preconditioning of Sequences of Nonsymmetric Linear Systems.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#TebbensT07,https://doi.org/10.1137/06066151X +Dirk Laurie,Initial Values for the Inverse Toeplitz Eigenvalue Problem.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#Laurie01,https://doi.org/10.1137/S106482759935561X +Gregory S. Cochran,A Randomized Subdivision Algorithm for Determining the Topology of Nodal Sets.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#CochranWD13,https://doi.org/10.1137/120903154 +Orazio Muscato,A Class of Stochastic Algorithms for the Wigner Equation.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#MuscatoW16,https://doi.org/10.1137/16M105798X +Michele Benzi,A Sparse Approximate Inverse Preconditioner for the Conjugate Gradient Method.,1996,17,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc17.html#BenziMT96,https://doi.org/10.1137/S1064827594271421 +Bokai Yan,A Successive Penalty-Based Asymptotic-Preserving Scheme for Kinetic Equations.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#YanJ13,https://doi.org/10.1137/110857982 +Giuseppe Fiorentino,Multigrid Methods for Symmetric Positive Definite Block Toeplitz Matrices with Nonnegative Generating Functions.,1996,17,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc17.html#FiorentinoS96,https://doi.org/10.1137/S1064827594271512 +Dionissios T. Hristopulos,Numerical Implementation of a Space-Transformation Approach for Solving the Three-Dimensional Flow Equation.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#HristopulosCS98,https://doi.org/10.1137/S1064827594278721 +Panagiotis A. Foteinos,Fully Generalized Two-Dimensional Constrained Delaunay Mesh Refinement.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#FoteinosCC10,https://doi.org/10.1137/090763226 +Mattia Gazzola,Reinforcement Learning and Wavelet Adapted Vortex Methods for Simulations of Self-propelled Swimmers.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#GazzolaHK14,https://doi.org/10.1137/130943078 +Esmond Ng,A Scheme for Handling Rank-Deficiency in the Solution of Sparse Linear Least Squares Problems.,1991,12,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc12.html#Ng91,https://doi.org/10.1137/0912062 +Sergey Dolgov,Alternating Minimal Energy Methods for Linear Systems in Higher Dimensions.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#DolgovS14,https://doi.org/10.1137/140953289 +Christian H. Bischof,A Parallel QR Factorization Algorithm with Controlled Local Pivoting.,1991,12,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc12.html#Bischof91,https://doi.org/10.1137/0912002 +Frédéric Nataf,A Coarse Space Construction Based on Local Dirichlet-to-Neumann Maps.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#NatafXDS11,https://doi.org/10.1137/100796376 +Kelly Black,Spectral Elements on Infinite Domain.,1998,19,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc19.html#Black98,https://doi.org/10.1137/S1064827596301418 +Anne Greenbaum,Card Shuffling and the Polynomial Numerical Hull of Degree k.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#Greenbaum03,https://doi.org/10.1137/S1064827501400278 +Ricardo Cortez,The Method of Regularized Stokeslets.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#Cortez01,https://doi.org/10.1137/S106482750038146X +Tony F. Chan,A Quasi-Minimal Residual Variant of the Bi-CGSTAB Algorithm for Nonsymmetric Systems.,1994,15,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc15.html#ChanGSST94,https://doi.org/10.1137/0915023 +Xiao-Chuan Cai,Parallel Newton-Krylov-Schwarz Algorithms for the Transonic Full Potential Equation.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#CaiGKMY98,https://doi.org/10.1137/S1064827596304046 +Vladimir Druskin,On Adaptive Choice of Shifts in Rational Krylov Subspace Reduction of Evolutionary Problems.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#DruskinLZ10,https://doi.org/10.1137/090774082 +Tobias Weinzierl,Peano - A Traversal and Storage Scheme for Octree-Like Adaptive Cartesian Multiscale Grids.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#WeinzierlM11,https://doi.org/10.1137/100799071 +Takeshi Ogita,Accurate Sum and Dot Product.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#OgitaRO05,https://doi.org/10.1137/030601818 +Philippe Bechouche,A Semiclassical Coupled Model for the Transient Simulation of Semiconductor Devices.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#BechoucheG07,https://doi.org/10.1137/060655262 +Awad H. Al-Mohy,Improved Inverse Scaling and Squaring Algorithms for the Matrix Logarithm.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#Al-MohyH12,https://doi.org/10.1137/110852553 +Hadi Pouransari,Optimizing the Adaptive Fast Multipole Method for Fractal Sets.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#PouransariD15,https://doi.org/10.1137/140962681 +Vincent Martin,Modeling Fractures and Barriers as Interfaces for Flow in Porous Media.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#MartinJR05,https://doi.org/10.1137/S1064827503429363 +Peter Benner,Range-Separated Tensor Format for Many-Particle Modeling.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#BennerKK18,https://doi.org/10.1137/16M1098930 +Jesse Chan,A Comparison of High Order Interpolation Nodes for the Pyramid.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#ChanW15,https://doi.org/10.1137/141000105 +Maxim A. Olshanskii,A Trace Finite Element Method for PDEs on Evolving Surfaces.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#OlshanskiiX17,https://doi.org/10.1137/16M1099388 +Harold J. Kushner,Domain Decomposition Methods for Large Markov Chain Control Problems and Nonlinear Elliptic-Type Equations.,1997,18,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc18.html#Kushner97,https://doi.org/10.1137/S1064827594274656 +Hyenkyun Woo,Proximal Linearized Alternating Direction Method for Multiplicative Denoising.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#WooY13,https://doi.org/10.1137/11083811X +Ananth Grama,Parallel Hierarchical Solvers and Preconditioners for Boundary Element Methods.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#GramaKS98,https://doi.org/10.1137/S1064827596313322 +Xiaoliang Wan,Asymptotically Efficient Simulation of Elliptic Problems with Small Random Forcing.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#WanZ18,https://doi.org/10.1137/17M111643X +Hillel Tal-Ezer,On Restart and Error Estimation for Krylov Approximation of w=f(A)v.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#Tal-Ezer07,https://doi.org/10.1137/040617868 +Raymond H. Chan,Superlinear Convergence Estimates for a Conjugate Gradient Method for the Biharmonic Equation.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#ChanDH98,https://doi.org/10.1137/S1064827596303570 +Koottungal Revi Arun,A Numerical Scheme for Three-Dimensional Front Propagation and Control of Jordan Mode.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#Arun12,https://doi.org/10.1137/100802177 +Howard C. Elman,Introduction to the Special Issue on Iterative Methods for Solving Systems of Algebraic Equations.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#Elman98,https://doi.org/10.1137/SJOCE3000019000001000vii000001 +Charbel Farhat,The Dual Schur Complement Method with Well-Posed Local Neumann Problems: Regularization with a Perturbed Lagrangian Formulation.,1993,14,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc14.html#FarhatCR93,https://doi.org/10.1137/0914047 +Martin J. Gander,Best Robin Parameters for Optimized Schwarz Methods at Cross Points.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#GanderK12,https://doi.org/10.1137/110837218 +Todd Arbogast,Enhanced Cell-Centered Finite Differences for Elliptic Equations on General Geometry.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#ArobogastDKWY98,https://doi.org/10.1137/S1064827594264545 +Hailiang Liu,An Invariant Preserving Discontinuous Galerkin Method for the Camassa-Holm Equation.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#LiuX16,https://doi.org/10.1137/15M102705X +Guido E. Sartoris,A 3D Rectangular Mixed Finite Element Method to Solve the Stationary Semiconductor Equations.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#Sartoris98,https://doi.org/10.1137/S1064827594275091 +Shu-Lin Wu,Toward Parallel Coarse Grid Correction for the Parareal Algorithm.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#Wu18,https://doi.org/10.1137/17M1141102 +Stavros A. Zenios,Parallel Block-Partitioning of Truncated Newton for Nonlinear Network Optimization.,1992,13,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc13.html#ZeniosP92,https://doi.org/10.1137/0913068 +Peter N. Brown,Semicoarsening Multigrid on Distributed Memory Machines.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#BrownFJ00,https://doi.org/10.1137/S1064827598339141 +Joseph E. Pasciak,Exact de Rham Sequences of Spaces Defined on Macro-Elements in Two and Three Spatial Dimensions.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#PasciakV08,https://doi.org/10.1137/070698178 +Moritz Kreutzer,A Unified Sparse Matrix Data Format for Efficient General Sparse Matrix-Vector Multiplication on Modern Processors with Wide SIMD Units.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#KreutzerHWFB14,https://doi.org/10.1137/130930352 +Mohsen Zayernouri,Spectral and Discontinuous Spectral Element Methods for Fractional Delay Equations.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#ZayernouriCZK14,https://doi.org/10.1137/130935884 +Nuutti Hyvönen,Thermal Tomography with Unknown Boundary.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#HyvonenM18,https://doi.org/10.1137/16M1104573 +Alexander Kurganov,Adaptive Semidiscrete Central-Upwind Schemes for Nonconvex Hyperbolic Conservation Laws.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#KurganovPP07,https://doi.org/10.1137/040614189 +Bradley K. Alpert,A Fast Algorithm for the Evaluation of Legendre Expansions.,1991,12,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc12.html#AlpertR91,https://doi.org/10.1137/0912009 +Jie Chen,On the Use of Discrete Laplace Operator for Preconditioning Kernel Matrices.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#Chen13,https://doi.org/10.1137/120874527 +Blaise Bourdin,Optimal Partitions for Eigenvalues.,2009,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#BourdinBO09,https://doi.org/10.1137/090747087 +Paul R. Willems,A Framework for the MR3 Algorithm: Theory and Implementation.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#WillemsL13,https://doi.org/10.1137/110834020 +E. D. de Goede,Vectorization of the Odd-Even Hopscotch Scheme and the Alternating Direction Implicit Scheme for the Two-Dimensional Burgers Equations.,1990,11,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc11.html#GoedeB90,https://doi.org/10.1137/0911021 +Marianne Bessemoulin-Chatard,A Finite Volume Scheme for Nonlinear Degenerate Parabolic Equations.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#Bessemoulin-ChatardF12,https://doi.org/10.1137/110853807 +Mohammad Asadzadeh,Discrete-Ordinates and Streamline Diffusion Methods for a Flow Described by BGK Model.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#AsadzadehKM14,https://doi.org/10.1137/120885747 +D. Chen,Iterative Parameter-Choice and Multigrid Methods for Anisotropic Diffusion Denoising.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#ChenMK11,https://doi.org/10.1137/100796066 +Wolfgang Dahmen,On an Adaptive Multigrid Solver for Convection-Dominated Problems.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#DahmenMS01,https://doi.org/10.1137/S106482759935544X +Katharina Kormann,A Galerkin Radial Basis Function Method for the Schrödinger Equation.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#KormannL13,https://doi.org/10.1137/120893975 +Wlodek Proskurowski,Preconditioning Capacitance Matrix Problems in Domain Imbedding.,1994,15,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc15.html#ProskurowskiV94,https://doi.org/10.1137/0915005 +Andrea Villa,Convergence of Weakly Imposed Boundary Conditions: The One-Dimensional Hyperbolic Case.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#Villa09,https://doi.org/10.1137/080720516 +Mark T. Jones,A Parallel Graph Coloring Heuristic.,1993,14,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc14.html#JonesP93,https://doi.org/10.1137/0914041 +Boris Diskin,On Quantitative Analysis Methods for Multigrid Solutions.,2005,27,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc27.html#DiskinTM05,https://doi.org/10.1137/030601521 +Géraldine Pichot,A Generalized Mixed Hybrid Mortar Method for Solving Flow in Stochastic Discrete Fracture Networks.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#PichotED12,https://doi.org/10.1137/100804383 +Mo Mu,Solving Composite Problems with Interface Relaxation.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#Mu99,https://doi.org/10.1137/S1064827597321180 +Martin Balazovjech,A Higher Order Scheme for a Tangentially Stabilized Plane Curve Shortening Flow with a Driving Force.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#BalazovjechM11,https://doi.org/10.1137/100795309 +Jasper van den Eshof,Preconditioning Lanczos Approximations to the Matrix Exponential.,2006,27,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc27.html#EshofH06,https://doi.org/10.1137/040605461 +Susanne M. Balle,SVD Computations on the Connection Machine CM-5/CM-5E: Implementation and Accuracy.,1997,18,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc18.html#BalleP97,https://doi.org/10.1137/S1064827595281356 +Boris N. Khoromskij,Tensor-Structured Galerkin Approximation of Parametric and Stochastic Elliptic PDEs.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#KhoromskijS11,https://doi.org/10.1137/100785715 +Alvaro Moraes,A Multilevel Adaptive Reaction-splitting Simulation Method for Stochastic Reaction Networks.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#MoraesTV16,https://doi.org/10.1137/140972081 +Marian Brezina,Algebraic Multigrid Based on Element Interpolation (AMGe).,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#BrezinaCFHJMMR01,https://doi.org/10.1137/S1064827598344303 +Michael Griebel,Multilevel Algorithms Considered as Iterative Methods on Semidefinite Systems.,1994,15,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc15.html#Griebel94,https://doi.org/10.1137/0915036 +Julien Diaz,Energy Conserving Explicit Local Time Stepping for Second-Order Wave Equations.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#DiazG09,https://doi.org/10.1137/070709414 +Maka Karalashvili,Incremental Identification of Transport Coefficients in Convection-Diffusion Systems.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#KaralashviliGMRM08,https://doi.org/10.1137/070692388 +Anna-Lena Gerner,Certified Reduced Basis Methods for Parametrized Saddle Point Problems.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#GernerV12,https://doi.org/10.1137/110854084 +Marc Gamell,Scalable Failure Masking for Stencil Computations using Ghost Region Expansion and Cell to Rank Remapping.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#GamellTKMHCP17,https://doi.org/10.1137/16M1081610 +Vipin Gopal,A Successive Linear Programming Approach for Initialization and Reinitialization after Discontinuities of Differential-Algebraic Equations.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#GopalB98,https://doi.org/10.1137/S1064827596307725 +Jean-Paul Berrut,The Linear Rational Pseudospectral Method with Iteratively Optimized Poles for Two-Point Boundary Value Problems.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#BerrutM01,https://doi.org/10.1137/S106482750036615X +Eberhard Bänsch,Finite Element Method for Epitaxial Growth with Thermodynamic Boundary Conditions.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#BanschHV05,https://doi.org/10.1137/030601028 +J. R. Peterson,Residual Monte Carlo for the One-Dimensional Particle Transport Equation.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#PetersonMR16,https://doi.org/10.1137/16M1057619 +John C. Strikwerda,A Domain Decomposition Method for Incompressible Viscous Flow.,1993,14,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc14.html#StrikwerdaS93,https://doi.org/10.1137/0914004 +Kendall E. Atkinson,Two-Grid Iteration Methods for Linear Integral Equations of the Second Kind on Piecewise Smooth Surfaces in and#8477*3.,1994,15,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc15.html#Atkinson94,https://doi.org/10.1137/0915066 +Bruce Hendrickson,Partitioning Rectangular and Structurally Unsymmetric Sparse Matrices for Parallel Processing.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#HendricksonK00,https://doi.org/10.1137/S1064827598341475 +John R. Gilbert,Geometric Mesh Partitioning: Implementation and Experiments.,1998,19,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc19.html#GilbertMT98,https://doi.org/10.1137/S1064827594275339 +Evan VanderZee,Well-Centered Triangulation.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#VanderZeeHGR10,https://doi.org/10.1137/090748214 +Robert C. Kirby,Solver Composition Across the PDE/Linear Algebra Barrier.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#KirbyM18,https://doi.org/10.1137/17M1133208 +Tony F. Chan,Composite Step Product Methods for Solving Nonsymmetric Linear Systems.,1996,17,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc17.html#ChanS96,https://doi.org/10.1137/S1064827594269202 +Tyrone Rees,Preconditioning Iterative Methods for the Optimal Control of the Stokes Equations.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#ReesW11,https://doi.org/10.1137/100798491 +R. Lord,A Fast and Accurate FFT-Based Method for Pricing Early-Exercise Options under L[e-acute]vy Processes.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#LordFBO08,https://doi.org/10.1137/070683878 +Loyce Adams,The Immersed Interface/Multigrid Methods for Interface Problems.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#AdamsL02,https://doi.org/10.1137/S1064827501389849 +Gradimir V. Milovanovic,Gaussian-type Quadrature Rules for Müntz Systems.,2005,27,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc27.html#MilovanovicC05,https://doi.org/10.1137/040621533 +Bora Uçar,Encapsulating Multiple Communication-Cost Metrics in Partitioning Sparse Rectangular Matrices for Parallel Matrix-Vector Multiplies.,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#UcarA04,https://doi.org/10.1137/S1064827502410463 +Koen Engelborghs,Collocation Methods for the Computation of Periodic Solutions of Delay Differential Equations.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#EngelborghsLHR01,https://doi.org/10.1137/S1064827599363381 +Alex Pothen,A Fast Reordering Algorithm for Parallel Sparse Triangular Solution.,1992,13,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc13.html#PothenA92,https://doi.org/10.1137/0913036 +Shusen Xie,A Numerical Method for the Generalized Regularized Long Wave Equation Using a Reproducing Kernel Function.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#XieKWY08,https://doi.org/10.1137/070683623 +James J. Brannick,Compatible Relaxation and Coarsening in Algebraic Multigrid.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#BrannickF10,https://doi.org/10.1137/090772216 +Michele Benzi,A Sparse Approximate Inverse Preconditioner for Nonsymmetric Linear Systems.,1998,19,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc19.html#BenziT98,https://doi.org/10.1137/S1064827595294691 +Daniel Osei-Kuffuor,Matrix Reordering Using Multilevel Graph Coarsening for ILU Preconditioning.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#Osei-KuffuorLS15,https://doi.org/10.1137/130936610 +Reiichiro Kawai,Acceleration on Adaptive Importance Sampling with Sample Average Approximation.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#Kawai17,https://doi.org/10.1137/15M1047192 +Xiangmin Jiao,Local Orthogonal Cutting Method for Computing Medial Curves and Its Biomedical Applications.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#JiaoED10,https://doi.org/10.1137/090767170 +Yeonjong Shin,Correcting Data Corruption Errors for Multivariate Function Approximation.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#ShinX16a,https://doi.org/10.1137/16M1059473 +Randall Bramley,Solving Linear Inequalities in a Least Squares Sense.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#BramleyW96,https://doi.org/10.1137/0917020 +Gennady Yu. Kulikov,Global Error Control in Adaptive Nordsieck Methods.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#Kulikov12,https://doi.org/10.1137/100791932 +Randolph E. Bank,A Weakly Overlapping Domain Decomposition Preconditioner for the Finite Element Solution of Elliptic Partial Differential Equations.,2002,23,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc23.html#BankJNN02,https://doi.org/10.1137/S1064827501361425 +Mofdi El-Amrani,An L2-Projection for the Galerkin-Characteristic Solution of Incompressible Flows.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#El-AmraniS11,https://doi.org/10.1137/100805790 +S. A. Goreinov,Wedderburn Rank Reduction and Krylov Subspace Method for Tensor Approximation. Part 1: Tucker Case.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#GoreinovOS12,https://doi.org/10.1137/100792056 +Jennifer L. Mueller,Direct Reconstructions of Conductivities from Boundary Measurements.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#MuellerS03,https://doi.org/10.1137/S1064827501394568 +Michele Benzi,A Direct Projection Method for Sparse Linear Systems.,1995,16,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc16.html#BenziM95,https://doi.org/10.1137/0916067 +Markus Brenk,Numerical Simulation of Particle Transport in a Drift Ratchet.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#BrenkBMMNW08,https://doi.org/10.1137/070692212 +Weiming Cao,Anisotropic Measures of Third Order Derivatives and the Quadratic Interpolation Error on Triangular Elements.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#Cao07,https://doi.org/10.1137/050634700 +Ronald B. Morgan,GMRES with Deflated Restarting.,2002,24,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc24.html#Morgan02,https://doi.org/10.1137/S1064827599364659 +Zhijun Tan,An Immersed Interface Method for the Incompressible Navier--Stokes Equations with Discontinuous Viscosity Across the Interface.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#TanLLK09,https://doi.org/10.1137/080712970 +Insu Han,Approximating Spectral Sums of Large-Scale Matrices using Stochastic Chebyshev Approximations.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#HanMAS17,https://doi.org/10.1137/16M1078148 +Roland Glowinski,A Simple Explicit Operator-Splitting Method for Effective Hamiltonians.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#GlowinskiLQ18,https://doi.org/10.1137/17M1137322 +Loyce Adams,New Geometric Immersed Interface Multigrid Solvers.,2004,25,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc25.html#AdamsC04,https://doi.org/10.1137/S1064827503421707 +Dexuan Xie,New Parallel SOR Method by Domain Partitioning.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#XieA99,https://doi.org/10.1137/S1064827597303370 +Mario Amrein,Fully Adaptive Newton-Galerkin Methods for Semilinear Elliptic Partial Differential Equations.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#AmreinW15,https://doi.org/10.1137/140983537 +Marie E. Rognes,Automated Goal-Oriented Error Control I: Stationary Variational Problems.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#RognesL13,https://doi.org/10.1137/10081962X +Shu-Lin Wu,Convergence Analysis of Schwarz Waveform Relaxation with Convolution Transmission Conditions.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#WuX17,https://doi.org/10.1137/16M1072620 +Johann Rudi,Weighted BFBT Preconditioner for Stokes Flow Problems with Highly Heterogeneous Viscosity.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#RudiSG17,https://doi.org/10.1137/16M108450X +Jeonghun J. Lee,Parameter-Robust Discretization and Preconditioning of Biot's Consolidation Model.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#LeeMW17,https://doi.org/10.1137/15M1029473 +Hillel Tal-Ezer,The Iterative Solver RISOLV with Application to the Exterior Helmholtz Problem.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#Tal-EzerT10,https://doi.org/10.1137/08072454X +Zhongxiao Jia,An Approach to Making SPAI and PSAI Preconditioning Effective for Large Irregular Sparse Linear Systems.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#JiaZ13,https://doi.org/10.1137/120900800 +Alex Toth,Local Improvement Results for Anderson Acceleration with Inaccurate Function Evaluations.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#TothEEHKPS17,https://doi.org/10.1137/16M1080677 +Boris N. Khoromskij,Multigrid Accelerated Tensor Approximation of Function Related Multidimensional Arrays.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#KhoromskijK09,https://doi.org/10.1137/080730408 +Tan Bui-Thanh,Model Reduction for Large-Scale Systems with High-Dimensional Parametric Input Space.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#Bui-ThanhWG08,https://doi.org/10.1137/070694855 +Manuel Jesús Castro Díaz,A Class of Computationally Fast First Order Finite Volume Solvers: PVM Methods.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#DiazF12,https://doi.org/10.1137/100795280 +Victoria E. Howle,Block Preconditioners for Coupled Physics Problems.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#HowleKD13,https://doi.org/10.1137/120883086 +Dongbin Xiu,Numerical Methods for Differential Equations in Random Domains.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#XiuT06,https://doi.org/10.1137/040613160 +James Weldon Demmel,Computing Connecting Orbits via an Improved Algorithm for Continuing Invariant Subspaces.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#DemmelDF00,https://doi.org/10.1137/S1064827598344868 +Chunwan Lv,Error Analysis of a High Order Method for Time-Fractional Diffusion Equations.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#LvX16,https://doi.org/10.1137/15M102664X +Rafail V. Abramov,Quantifying Uncertainty for Non-Gaussian Ensembles in Complex Systems.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#AbramovM04,https://doi.org/10.1137/S1064827503426310 +Jean Michel Fiard,First-Order System Least Squares (FOSLS) for Convection-Diffusion Problems: Numerical Results.,1998,19,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc19.html#FiardMM98,https://doi.org/10.1137/S1064827596301169 +Thomas G. Wright,Large-Scale Computation of Pseudospectra Using ARPACK and Eigs.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#WrightT01,https://doi.org/10.1137/S106482750037322X +Eveline Rosseel,Iterative Solvers for the Stochastic Finite Element Method.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#RosseelV10,https://doi.org/10.1137/080727026 +David Bindel,Continuation of Invariant Subspaces in Large Bifurcation Problems.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#BindelDF08,https://doi.org/10.1137/060654219 +James J. Brannick,Optimal Interpolation and Compatible Relaxation in Classical Algebraic Multigrid.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#BrannickCKFH18,https://doi.org/10.1137/17M1123456 +Raphaël M. Jungers,Fast Methods for Computing the p-Radius of Matrices.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#JungersP11,https://doi.org/10.1137/090777906 +Jesse L. Barlow,On the Use of Structural Zeros in Orthogonal Factorization.,1990,11,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc11.html#Barlow90,https://doi.org/10.1137/0911034 +Edmond Kwan-yu Chiu,A Conservative Mesh-Free Scheme and Generalized Framework for Conservation Laws.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#ChiuWHJ12,https://doi.org/10.1137/110842740 +Gilles Vilmart,Weak Second Order Multirevolution Composition Methods for Highly Oscillatory Stochastic Differential Equations with Additive or Multiplicative Noise.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#Vilmart14,https://doi.org/10.1137/130935331 +Felix Friedrich,Efficient Moment Computation over Polygonal Domains with an Application to Rapid Wedgelet Approximation.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#FriedrichDFW07,https://doi.org/10.1137/050646597 +Arta A. Jamshidi,A Radial Basis Function Algorithm with Automatic Model Order Determination.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#JamshidiK15,https://doi.org/10.1137/130948252 +Zhaojun Bai,A New Preprocessing Algorithm for the Computation of the Generalized Singular Value Decomposition.,1993,14,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc14.html#BaiZ93,https://doi.org/10.1137/0914060 +Max Gunzburger,Optimal Control of Stochastic Flow over a Backward-Facing Step Using Reduced-Order Modeling.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#GunzburgerM11,https://doi.org/10.1137/100817279 +Marie E. Rognes,Efficient Assembly of $H(\mathrmdiv) and H(\mathrmcurl)$ Conforming Finite Elements.,2009,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#RognesKL09,https://doi.org/10.1137/08073901X +Zhilin Li,New Formulations for Interface Problems in Polar Coordinates.,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#LiWCL03,https://doi.org/10.1137/S106482750139618X +Ronald F. Boisvert,Algorithms for Special Tridiagonal Systems.,1991,12,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc12.html#Boisvert91,https://doi.org/10.1137/0912023 +David S. Watkins,Shifting Strategies for the Parallel QR Algorithm.,1994,15,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc15.html#Watkins94,https://doi.org/10.1137/0915057 +Mario Putti,Finite Element Approximation of the Diffusion Operator on Tetrahedra.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#PuttiC98,https://doi.org/10.1137/S1064827595290711 +Jun Zhu,New Finite Volume Weighted Essentially Nonoscillatory Schemes on Triangular Meshes.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#ZhuQ18,https://doi.org/10.1137/17M1112790 +Wu Li,A Data Smoothing Technique for Piecewise Convex/Concave Curves.,1996,17,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc17.html#LiNS96,https://doi.org/10.1137/S1064827592239822 +Joseph G. Ecker,Performance of Several Optimization Methods on Robot Trajectory Planning Problems.,1994,15,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc15.html#EckerKM94,https://doi.org/10.1137/0915084 +Jens Struckmeier,A Steady-State Particle Method for the Boltzmann Equation.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#Struckmeier99,https://doi.org/10.1137/S106482759833317X +Vivek Sarin,An Efficient Iterative Method for the Generalized Stokes Problem.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#SarinS98,https://doi.org/10.1137/S106482759630365X +Simone Cacace,A Generalized Newton Method for Homogenization of Hamilton-Jacobi Equations.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#CacaceC16,https://doi.org/10.1137/16M1058613 +William D. Gropp,Parallel Performance of Domain-Decomposed Preconditioned Krylov Methods for PDEs with Locally Uniform Refinement.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#GroppK92,https://doi.org/10.1137/0913008 +Fayssal Benkhaldoun,Solution of the Sediment Transport Equations Using a Finite Volume Method Based on Sign Matrix.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#BenkhaldounSS09,https://doi.org/10.1137/080727634 +Miroslav Bacák,A Second Order Nonsmooth Variational Model for Restoring Manifold-Valued Images.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#BacakBSW16,https://doi.org/10.1137/15M101988X +Xiaoge Wang,CIMGS: An Incomplete Orthogonal FactorizationPreconditioner.,1997,18,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc18.html#WangGB97,https://doi.org/10.1137/S1064827594268270 +Maojun Li,Maximum-Principle-Satisfying and Positivity-Preserving High Order Central Discontinuous Galerkin Methods for Hyperbolic Conservation Laws.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#LiLLX16,https://doi.org/10.1137/16M1070001 +Zhiqiang Sheng,A Nine Point Scheme for the Approximation of Diffusion Operators on Distorted Quadrilateral Meshes.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#ShengY08,https://doi.org/10.1137/060665853 +Pascal Havé,Algebraic Domain Decomposition Methods for Highly Heterogeneous Problems.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#HaveMNSXZ13,https://doi.org/10.1137/110842648 +Peter N. Brown,On Mesh-Independent Convergence of an Inexact Newton-Multigrid Algorithm.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#BrownVW03,https://doi.org/10.1137/S1064827502407822 +Michael K. Ng,Recursive-Based PCG Methods for Toeplitz Systems with Nonnegative Generating Functions.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#NgSJ03,https://doi.org/10.1137/S1064827500378155 +Jan S. Hesthaven,A Stable Penalty Method for the Compressible Navier-Stokes Equations: II. One-Dimensional Domain Decomposition Schemes.,1997,18,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc18.html#Hesthaven97,https://doi.org/10.1137/S1064827594276540 +Knud D. Andersen,An Efficient Primal-Dual Interior-Point Method for Minimizing a Sum of Euclidean Norms.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#AndersenCCO00,https://doi.org/10.1137/S1064827598343954 +Daniel Baffet,Double Absorbing Boundary Formulations for Acoustics and Elastodynamics.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#BaffetHG14,https://doi.org/10.1137/130928728 +Xinwei Liu,A Robust Algorithm for Optimization with General Equality and Inequality Constraints.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#LiuY00,https://doi.org/10.1137/S1064827598334861 +Marc Garbey,Asymptotic-Numerical Study of Supersensitivity for Generalized Burgers' Equations.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#GarbeyK00,https://doi.org/10.1137/S1064827598342201 +Paul G. Constantine,A Factorization of the Spectral Galerkin System for Parameterized Matrix Equations: Derivation and Applications.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#ConstantineGI11,https://doi.org/10.1137/100799046 +Eduardo F. D'Azevedo,Optimal Triangular Mesh Generation by Coordinate Transformation.,1991,12,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc12.html#DAzevedo91,https://doi.org/10.1137/0912040 +Kundan Kumar,Reactive Flow and Reaction-Induced Boundary Movement in a Thin Channel.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#KumarWW13,https://doi.org/10.1137/130913134 +Louis F. Rossi,Evaluation of the Biot-Savart Integral for Deformable Elliptical Gaussian Vortex Elements.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#Rossi06a,https://doi.org/10.1137/050637789 +Yair Shapira,Multigrid for Locally Refined Meshes.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#Shapira99,https://doi.org/10.1137/S1064827597316564 +Dhavide A. Aruliah,Multigrid Preconditioning for Krylov Methods for Time-Harmonic Maxwell's Equations in Three Dimensions.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#AruliahA02,https://doi.org/10.1137/S1064827501387358 +Giovanni F. Gronchi,On the Stationary Points of the Squared Distance between Two Ellipses with a Common Focus.,2002,24,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc24.html#Gronchi02,https://doi.org/10.1137/S1064827500374170 +Ruihan Guo,Local Discontinuous Galerkin Method and High Order Semi-Implicit Scheme for the Phase Field Crystal Equation.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#GuoX16,https://doi.org/10.1137/15M1038803 +Arvind K. Saibaba,Fast Algorithms for Hyperspectral Diffuse Optical Tomography.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#SaibabaKMF15,https://doi.org/10.1137/140990073 +Leland Jameson,The Differentiation Matrix for Daubechies-Based Wavelets on an Interval.,1996,17,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc17.html#Jameson96,https://doi.org/10.1137/S1064827593260176 +Barbara I. Wohlmuth,Monotone Multigrid Methods on Nonmatching Grids for Nonlinear Multibody Contact Problems.,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#WohlmuthK03,https://doi.org/10.1137/S1064827502405318 +Patrick Amestoy,Parallel Computation of Entries of A-1.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#AmestoyDLR15,https://doi.org/10.1137/120902616 +Christophe Chalons,Large Time Step and Asymptotic Preserving Numerical Schemes for the Gas Dynamics Equations with Source Terms.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#ChalonsGK13,https://doi.org/10.1137/130908671 +Esteban Moro,Boundary Preserving Semianalytic Numerical Algorithms for Stochastic Differential Equations.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#MoroS07,https://doi.org/10.1137/05063725X +Zhong-Zhi Bai,On Greedy Randomized Kaczmarz Method for Solving Large Sparse Linear Systems.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#BaiW18,https://doi.org/10.1137/17M1137747 +Simone Cacace,Can Local Single-Pass Methods Solve Any Stationary Hamilton-Jacobi-Bellman Equation?,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#CacaceCF14,https://doi.org/10.1137/130907707 +Lina Meinecke,Analysis and Design of Jump Coefficients in Discrete Stochastic Diffusion Models.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#MeineckeEHL16,https://doi.org/10.1137/15M101110X +Daniel Y. Le Roux,A New Triangular Finite-Element with Optimum Constraint Ratio for Compressible Fluids.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#Roux01,https://doi.org/10.1137/S1064827500367403 +M. J. Del Razo,Numerical Methods for Interface Coupling of Compressible and Almost Incompressible Media.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#RazoL17,https://doi.org/10.1137/16M1067834 +Mo Mu,A Linearized Crank-Nicolson-Galerkin Method for the Ginzburg-Landau Model.,1997,18,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc18.html#Mu97,https://doi.org/10.1137/S1064827595283756 +Fabian M. Buchmann,An Exit Probability Approach to Solving High Dimensional Dirichlet Problems.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#BuchmannP06,https://doi.org/10.1137/050622201 +C. J. Budd,Moving Mesh Generation Using the Parabolic Monge--Amp[e-grave]re Equation.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#BuddW09,https://doi.org/10.1137/080716773 +Stanley C. Eisenstat,Efficient Polynomial Preconditioning for the Conjugate Gradient Method.,1990,11,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc11.html#EisenstatOV90,https://doi.org/10.1137/0911051 +Lennaert van Veen,On Matrix-Free Computation of 2D Unstable Manifolds.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#VeenKA11,https://doi.org/10.1137/100789804 +Panayot S. Vassilevski,Finite Difference Schemes on Triangular Cell-Centered Grids with Local Refinement.,1992,13,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc13.html#VassilevskiPL92,https://doi.org/10.1137/0913073 +Thomas G. Fai,Immersed Boundary Method for Variable Viscosity and Variable Density Problems Using Fast Constant-Coefficient Linear Solvers I: Numerical Method and Results.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#FaiGMP13,https://doi.org/10.1137/120903038 +Achi Brandt,Multiscale Algorithm for Atmospheric Data Assimilation.,1997,18,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc18.html#BrandtZ97,https://doi.org/10.1137/S106482759528942X +Scott MacLachlan,A Greedy Strategy for Coarse-Grid Selection.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#MacLachlanS07,https://doi.org/10.1137/060654062 +Roland Hunt,Three-Dimensional Flow in a General Tube Using a Combination of Finite and Pseudospectral Discretisations.,1995,16,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc16.html#Hunt95,https://doi.org/10.1137/0916033 +Johannes Tausch,Multiscale Bases for the Sparse Representation of Boundary Integral Operators on Complex Geometry.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#TauschW03,https://doi.org/10.1137/S1064827500369451 +Thomas Wick,An Error-Oriented Newton/Inexact Augmented Lagrangian Approach for Fully Monolithic Phase-Field Fracture Propagation.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#Wick17,https://doi.org/10.1137/16M1063873 +Chao Yang 0002,A Scalable Fully Implicit Compressible Euler Solver for Mesoscale Nonhydrostatic Simulation of Atmospheric Flows.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#YangC14,https://doi.org/10.1137/130919167 +J. Fohring,Geophysical Imaging of Fluid Flow in Porous Media.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#FohringHR14,https://doi.org/10.1137/130925232 +Robert D. Skeel,A Method for the Spatial Discretization of Parabolic Equations in One Space Variable.,1990,11,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc11.html#SkeelB90,https://doi.org/10.1137/0911001 +Christo I. Christov,A Fourier-Series Method for Solving Soliton Problems.,1990,11,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc11.html#ChristovB90,https://doi.org/10.1137/0911037 +Bert J. Debusschere,Numerical Challenges in the Use of Polynomial Chaos Representations for Stochastic Processes.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#DebusschereNPKGM04,https://doi.org/10.1137/S1064827503427741 +T. Carraro,Indirect Multiple Shooting for Nonlinear Parabolic Optimal Control Problems with Control Constraints.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#CarraroGR14,https://doi.org/10.1137/120895809 +Luca F. Pavarino,Parallel Multilevel Schwarz and Block Preconditioners for the Bidomain Parabolic-Parabolic and Parabolic-Elliptic Formulations.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#PavarinoS11,https://doi.org/10.1137/100808721 +Romain Aubry,An Entropy Satisfying Boundary Layer Surface Mesh Generation.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#AubryDMKG15,https://doi.org/10.1137/140963625 +Rachel Kuske,Gradient-Particle Solutions of Fokker-Planck Equations for Noisy Delay Bifurcations.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#Kuske00,https://doi.org/10.1137/S1064827599350332 +Andrew T. Barker,Spectral Upscaling for Graph Laplacian Problems with Application to Reservoir Simulation.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#BarkerLV17,https://doi.org/10.1137/16M1077581 +Juan C. Meza,A Multigrid Preconditioner for the Semiconductor Equations.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#MezaT96,https://doi.org/10.1137/0917010 +Eldad Haber,An Octree Method for Parametric Image Registration.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#HaberHM07,https://doi.org/10.1137/060662605 +Maria Elizabeth G. Ong,Uniform Refinement of a Tetrahedron.,1994,15,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc15.html#Ong94,https://doi.org/10.1137/0915070 +Marian Brezina,Adaptive Algebraic Multigrid.,2006,27,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc27.html#BrezinaFMMMR06,https://doi.org/10.1137/040614402 +Johan Hoffman,Computation of Mean Drag for Bluff Body Problems Using Adaptive DNS/LES.,2005,27,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc27.html#Hoffman05,https://doi.org/10.1137/040614463 +Carsten Carstensen,Averaging Techniques for the Effective Numerical Solution of Symm's Integral Equation of the First Kind.,2006,27,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc27.html#CarstensenP06,https://doi.org/10.1137/040609033 +Awad H. Al-Mohy,New Algorithms for Computing the Matrix Sine and Cosine Separately or Simultaneously.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#Al-MohyHR15,https://doi.org/10.1137/140973979 +Tamara G. Kolda,Special Section on Two Themes: Planet Earth and Big Data.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#KoldaY14,https://doi.org/10.1137/130973727 +D. Noutsos,Two-level Toeplitz preconditioning: approximation results for matrices and functions.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#NoutsosCV06,https://doi.org/10.1137/050627046 +Daniel Drzisga,Scheduling Massively Parallel Multigrid for Multilevel Monte Carlo Methods.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#DrzisgaGRSW17,https://doi.org/10.1137/16M1083591 +Zydrunas Gimbutas,Coulomb Interactions on Planar Structures: Inverting the Square Root of the Laplacian.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#GimbutasGM01,https://doi.org/10.1137/S1064827599361199 +Ning Hu,Multi-P Methods: Iterative Algorithms for the P-Version of the Finite Element Analysis.,1995,16,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc16.html#HuK95,https://doi.org/10.1137/0916076 +Horst D. Simon,Low-Rank Matrix Approximation Using the Lanczos Bidiagonalization Process with Applications.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#SimonZ00,https://doi.org/10.1137/S1064827597327309 +J. H. Adler,Error Analysis for Constrained First-Order System Least-Squares Finite-Element Methods.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#AdlerV14,https://doi.org/10.1137/130943091 +C.-S. Chien,A Two-Grid Discretization Scheme for Semilinear Elliptic Eigenvalue Problems.,2006,27,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc27.html#ChienJ06,https://doi.org/10.1137/030602447 +Shi Jin,A Micro-Macro Decomposition-Based Asymptotic-Preserving Scheme for the Multispecies Boltzmann Equation.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#JinS10,https://doi.org/10.1137/090756077 +Léopold Cambier,Robust Low-Rank Matrix Completion by Riemannian Optimization.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#CambierA16,https://doi.org/10.1137/15M1025153 +Chiara Puglisi,Modification of the Householder Method Based on the Compact WY Representation.,1992,13,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc13.html#Puglisi92,https://doi.org/10.1137/0913042 +Christoph Ortner,Atomistic/Continuum Blending with Ghost Force Correction.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#Ortner016,https://doi.org/10.1137/15M1020241 +Andrew J. Christlieb,Parallel High-Order Integrators.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#ChristliebMO10,https://doi.org/10.1137/09075740X +S. N. Papakostas,High Phase-Lag-Order Runge-Kutta and Nyström Pairs.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#PapakostasT99,https://doi.org/10.1137/S1064827597315509 +Xianyi Zeng,A General Approach to Enhance Slope Limiters in MUSCL Schemes on Nonuniform Rectilinear Grids.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#Zeng16,https://doi.org/10.1137/140970185 +Giancarlo Sangalli,Isogeometric Preconditioners Based on Fast Solvers for the Sylvester Equation.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#SangalliT16,https://doi.org/10.1137/16M1062788 +Eric C. Cyr,Teko: A Block Preconditioning Capability with Concrete Example Applications in Navier-Stokes and MHD.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#CyrST16,https://doi.org/10.1137/15M1017946 +Ernesto G. Birgin,Robust Stopping Criteria for Dykstra's Algorithm.,2005,26,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc26.html#BirginR05,https://doi.org/10.1137/03060062X +Yat Tin Chow,Analysis on a Nonnegative Matrix Factorization and Its Applications.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#ChowIZ16,https://doi.org/10.1137/15M1020824 +Nick Vannieuwenhoven,Computing the Gradient in Optimization Algorithms for the CP Decomposition in Constant Memory through Tensor Blocking.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#Vannieuwenhoven15,https://doi.org/10.1137/14097968X +Jennifer Pestana,Efficient Block Preconditioning for a C1 Finite Element Discretization of the Dirichlet Biharmonic Problem.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#PestanaMHTM16,https://doi.org/10.1137/15M1014887 +Joab R. Winkler,High Order Terms for Condition Estimation of Univariate Polynomials.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#Winkler06,https://doi.org/10.1137/050629239 +Jesper Karlsson,An Error Estimate for Symplectic Euler Approximation of Optimal Control Problems.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#KarlssonLSST15,https://doi.org/10.1137/140959481 +S. P. Hirshman,Dynamic Database Generation for Efficient Calculation of Stellarator Plasma Equilibria.,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#HirshmanBJ04,https://doi.org/10.1137/S106482750342458X +Leslie V. Foster,The Probability of Large Diagonal Elements in the QR Factorization.,1990,11,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc11.html#Foster90,https://doi.org/10.1137/0911030 +Ronny Richter,Discrete Differential Forms for (1+1)-Dimensional Cosmological Space-Times.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#RichterF10,https://doi.org/10.1137/080734583 +Eric de Sturler,Block-Diagonal and Constraint Preconditioners for Nonsymmetric Indefinite Linear Systems. Part I: Theory.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#SturlerL05,https://doi.org/10.1137/S1064827502411006 +Herbert Egger,A Robust Conservative Mixed Finite Element Method for Isentropic Compressible Flow on Pipe Networks.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#Egger18,https://doi.org/10.1137/16M1094373 +Michael R. Osborne,A Modified Prony Algorithm for Fitting Functions Defined by Difference Equations.,1991,12,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc12.html#OsborneS91,https://doi.org/10.1137/0912020 +Bruce Turkington,Statistical Equilibrium Computations of Coherent Structures in Turbulent Shear Layers.,1996,17,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc17.html#TurkingtonW96,https://doi.org/10.1137/S1064827593251708 +Adam C. Zelinski,Simultaneously Sparse Solutions to Linear Inverse Problems with Multiple System Matrices and a Single Observation Vector.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#ZelinskiGA10,https://doi.org/10.1137/080730822 +Jingu Kim,Fast Nonnegative Matrix Factorization: An Active-Set-Like Method and Comparisons.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#KimP11,https://doi.org/10.1137/110821172 +Gennady Y. Kulikov,Estimating the State in Stiff Continuous-Time Stochastic Systems within Extended Kalman Filtering.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#KulikovK16,https://doi.org/10.1137/15M1039833 +Jie Shen 0001,Efficient Spectral Sparse Grid Methods and Applications to High-Dimensional Elliptic Equations II. Unbounded Domains.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#ShenY12,https://doi.org/10.1137/110834950 +Anita T. Layton,A Semi-Lagrangian Semi-Implicit Numerical Method for Models of the Urine Concentrating Mechanism.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#LaytonL02,https://doi.org/10.1137/S1064827500381781 +I. D. L. Bogle,A New Sparsity Preserving Quasi-Newton Update for Solving Nonlinear Equations.,1990,11,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc11.html#BogleP90,https://doi.org/10.1137/0911036 +Axel Klar,Asymptotic-Induced Domain Decomposition Methods for Kinetic and Drift Diffusion Semiconductor Equations.,1998,19,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc19.html#Klar98,https://doi.org/10.1137/S1064827595286177 +Laura Grigori,Hypergraph-Based Unsymmetric Nested Dissection Ordering for Sparse LU Factorization.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#GrigoriBDD10,https://doi.org/10.1137/080720395 +Edmond Chow,Fine-Grained Parallel Incomplete LU Factorization.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#ChowP15,https://doi.org/10.1137/140968896 +Fang Fang 0002,A Novel Pricing Method for European Options Based on Fourier-Cosine Series Expansions.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#FangO08,https://doi.org/10.1137/080718061 +Enver Kayaaslan,Partitioning Hypergraphs in Scientific Computing Applications through Vertex Separators on Graphs.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#KayaaslanPCA12,https://doi.org/10.1137/100810022 +Jianguo Xin,Numerical Solution of an Inverse Problem of Imaging of Antipersonnel Land Mines By the Globally Convergent Convexification Algorithm.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#XinK08,https://doi.org/10.1137/070691206 +Alfio Borzì,Multigrid Optimization Schemes for Solving Bose-Einstein Condensate Control Problems.,2008,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#BorziH08,https://doi.org/10.1137/070686135 +Sergio Amat,On a Power WENO Scheme with Improved Accuracy Near Discontinuities.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#AmatLRT17,https://doi.org/10.1137/17M1122098 +Lars Ferm,The Number of Coarse-Grid Iterations Every Cycle for the Two-Grid Method.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#Ferm98,https://doi.org/10.1137/S1064827592234314 +Bernard Bialecki,An Alternating-Direction Implicit Orthogonal Spline Collocation Scheme for Nonlinear Parabolic Problems on Rectangular Polygons.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#BialeckiF06,https://doi.org/10.1137/050627885 +Kalvis M. Jansons,Exponential Timestepping with Boundary Test for Stochastic Differential Equations.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#JansonsL03,https://doi.org/10.1137/S1064827501399535 +Ralf Hannemann,Continuous and Discrete Composite Adjoints for the Hessian of the Lagrangian in Shooting Algorithms for Dynamic Optimization.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#HannemannM10,https://doi.org/10.1137/080714518 +Chun-Hua Guo,The Matrix Equation X+ATX-1A=Q and Its Application in Nano Research.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#GuoL10,https://doi.org/10.1137/090758209 +Jie Shen 0001,Efficient Spectral Sparse Grid Methods and Applications to High-Dimensional Elliptic Problems.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#ShenY10a,https://doi.org/10.1137/100787842 +Francis Filbet,Numerical Simulation of the Smoluchowski Coagulation Equation.,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#FilbetL04,https://doi.org/10.1137/S1064827503429132 +James H. Bramble,Analysis of V-Cycle Multigrid Algorithms for Forms Defined by Numerical Quadrature.,1994,15,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc15.html#BrambleGP94,https://doi.org/10.1137/0915037 +Luca F. Pavarino,Preconditioned Mixed Spectral Element Methods for Elasticity and Stokes Problems.,1998,19,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc19.html#Pavarino98,https://doi.org/10.1137/S1064827596307142 +Pin T. Ng,Smoothing Spline Score Estimation.,1994,15,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc15.html#Ng94,https://doi.org/10.1137/0915061 +Blanca Ayuso de Dios,A Combined Preconditioning Strategy for Nonsymmetric Systems.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#DiosBV14,https://doi.org/10.1137/120888946 +Tony F. Chan,Boundary Treatments for Multilevel Methods on Unstructured Meshes.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#ChanGZ99,https://doi.org/10.1137/S1064827596310056 +Bruce N. Lundberg,Variable Order Adams-Bashforth Predictors with an Error-Stepsize Control for Continuation Methods.,1991,12,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc12.html#LundbergP91,https://doi.org/10.1137/0912037 +Jan Nordström,The Fringe Region Technique and the Fourier Method Used in the Direct Numerical Simulation of Spatially Evolving Viscous Flows.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#NordstromNH99,https://doi.org/10.1137/S1064827596310251 +Armin Lechleiter,A Floquet-Bloch Transform Based Numerical Method for Scattering from Locally Perturbed Periodic Surfaces.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#LechleiterZ17,https://doi.org/10.1137/16M1104111 +Matania Ben-Artzi,A Fast Direct Solver for the Biharmonic Problem in a Rectangular Grid.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#Ben-ArtziCF08,https://doi.org/10.1137/070694168 +Raz Kupferman,A Numerical Study of the Axisymmetric Couette-Taylor Problem Using a Fast High-Resolution Second-Order Central Scheme.,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#Kupferman98,https://doi.org/10.1137/S1064827597318009 +Tony F. Chan,Preserving Symmetry in Preconditioned Krylov Subspace Methods.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#ChanCSY98,https://doi.org/10.1137/S1064827596311554 +Robert Bridson,Multiresolution Approximate Inverse Preconditioners.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#BridsonT01,https://doi.org/10.1137/S1064827500373784 +Lingfei Wu,A Preconditioned Hybrid SVD Method for Accurately Computing Singular Triplets of Large Matrices.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#WuS15,https://doi.org/10.1137/140979381 +Ebrahim M. Kolahdouz,Electrohydrodynamics of Three-Dimensional Vesicles: A Numerical Approach.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#KolahdouzS15,https://doi.org/10.1137/140988966 +Jussi Rahola,On the Eigenvalues of the Volume Integral Operator of Electromagnetic Scattering.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#Rahola00,https://doi.org/10.1137/S1064827598338962 +Loïc Giraldi,"To Be or Not to Be Intrusive? The Solution of Parametric and Stochastic Equations - the ""Plain Vanilla"" Galerkin Case.",2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#GiraldiLLMN14,https://doi.org/10.1137/130942802 +Thomas F. Coleman,A Parallel Nonlinear Least-Squares Solver: Theoretical Analysis and Numerical Results.,1992,13,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc13.html#ColemanP92,https://doi.org/10.1137/0913046 +Stefan Henn,Multimodal Image Registration Using a Variational Approach.,2004,25,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc25.html#HennW04,https://doi.org/10.1137/S1064827502201424 +Graham Horton,A Space-Time Multigrid Method for Parabolic Partial Differential Equations.,1995,16,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc16.html#HortonV95,https://doi.org/10.1137/0916050 +Christian Soize,Physical Systems with Random Uncertainties: Chaos Representations with Arbitrary Probability Measure.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#SoizeG04,https://doi.org/10.1137/S1064827503424505 +Homer F. Walker,An Adaptation of Krylov Subspace Methods to Path Following Problems.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#Walker99,https://doi.org/10.1137/S1064827597315376 +Mila Nikolova,On and#54465*1 Data Fitting and Concave Regularization for Image Recovery.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#NikolovaNT13,https://doi.org/10.1137/10080172X +Aaron Luttman,Erratum: A Variational Approach to Video Segmentation for Botanical Data.,2008,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#LuttmanB08,https://doi.org/10.1137/070700036 +Burak Aksoylu,Multilevel Solvers for Unstructured Surface Meshes.,2005,26,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc26.html#AksoyluKS05,https://doi.org/10.1137/S1064827503430138 +Qingfang Dai,RKDG Finite Element Method Combined with BGK Scheme for Solving Fluid Dynamics System.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#DaiY06,https://doi.org/10.1137/040618783 +Ivo Babuska,The Splitting Method as a Tool for Multiple Damage Analysis.,2005,26,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc26.html#BabuskaA05,https://doi.org/10.1137/S1064827502417167 +Edward Rothberg,Efficient Methods for Out-of-Core Sparse Cholesky Factorization.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#RothbergS99,https://doi.org/10.1137/S1064827597322975 +Misha Elena Kilmer,A Projection-Based Approach to General-Form Tikhonov Regularization.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#KilmerHE07,https://doi.org/10.1137/050645592 +Yoshio Komori,Weak Second Order Explicit Exponential Runge-Kutta Methods for Stochastic Differential Equations.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#KomoriCB17,https://doi.org/10.1137/15M1041341 +W. Wu,Rotating Waves from Hopf Bifurcations in Equations with O(2)-Symmetry.,1994,15,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc15.html#WuAS94,https://doi.org/10.1137/0915033 +Christian Clason,A Forward Approach to Numerical Data Assimilation.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#ClasonH09,https://doi.org/10.1137/090746240 +R. Mannella,Numerical Stochastic Integration for Quasi-Symplectic Flows.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#Mannella06,https://doi.org/10.1137/040620965 +John Bell,Three-Dimensional Adaptive Mesh Refinement for Hyperbolic Conservation Laws.,1994,15,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc15.html#BellBSW94,https://doi.org/10.1137/0915008 +Michele Benzi,An Efficient Solver for the Incompressible Navier-Stokes Equations in Rotation Form.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#BenziL07,https://doi.org/10.1137/060658825 +Nathaniel Trask,A High-Order Staggered Meshless Method for Elliptic Problems.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#TraskPB17,https://doi.org/10.1137/16M1055992 +Bruno Carpentieri,Combining Fast Multipole Techniques and an Approximate Inverse Preconditioner for Large Electromagnetism Calculations.,2005,27,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc27.html#CarpentieriDGS05,https://doi.org/10.1137/040603917 +Andrew T. T. McRae,Automated Generation and Symbolic Manipulation of Tensor Product Finite Elements.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#McRaeBMHC16,https://doi.org/10.1137/15M1021167 +Tien-Yien Li,Parallel Homotopy Algorithm for the Symmetric Tridiagonal Eigenvalue Problem.,1991,12,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc12.html#LiZS91,https://doi.org/10.1137/0912026 +Chunxiong Zheng,Numerical Solution to the Sine-Gordon Equation Defined on the Whole Real Axis.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#Zheng07,https://doi.org/10.1137/050640643 +Tsz Wai Wong,Computing Surface Uniformization Using Discrete Beltrami Flow.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#WongZ15,https://doi.org/10.1137/130939183 +Christoph Reisinger,Efficient Hierarchical Approximation of High-Dimensional Option Pricing Problems.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#ReisingerW07,https://doi.org/10.1137/060649616 +Marica Pelanti,Wave Structure Similarity of the HLLC and Roe Riemann Solvers: Application to Low Mach Number Preconditioning.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#Pelanti18,https://doi.org/10.1137/17M1154965 +Rolf Krause,A Nonsmooth Multiscale Method for Solving Frictional Two-Body Contact Problems in 2D and 3D with Multigrid Efficiency.,2009,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#Krause09,https://doi.org/10.1137/070682514 +Jeffrey S. Ovall,A High-Order Method for Evaluating Derivatives of Harmonic Functions in Planar Domains.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#OvallR18,https://doi.org/10.1137/17M1141825 +Mika Malinen,Boundary Conditions in the Schur Complement Preconditioning of Dissipative Acoustic Equations.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#Malinen07,https://doi.org/10.1137/050629720 +Leonardo E. Figueroa,Augmented Mixed Finite Element Methods for the Stationary Stokes Equations.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#FigueroaGM08,https://doi.org/10.1137/080713069 +Stefano Berrone,An Adaptive WEM Algorithm for Solving Elliptic Boundary Value Problems in Fairly General Domains.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#BerroneK06,https://doi.org/10.1137/04062014X +Moon-Chuen Lee,Fast Three-Dimensional Discrete Cosine Transform.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#LeeCA08,https://doi.org/10.1137/070693370 +Anshul Gupta,Adaptive Techniques for Improving the Performance of Incomplete Factorization Preconditioning.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#GuptaG10,https://doi.org/10.1137/080727695 +Nick Vannieuwenhoven,IMF: An Incomplete Multifrontal LU-Factorization for Element-Structured Sparse Linear Systems.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#VannieuwenhovenM13,https://doi.org/10.1137/100818996 +Stephen J. Wright,Parallel Algorithms for Banded Linear Systems.,1991,12,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc12.html#Wright91,https://doi.org/10.1137/0912044 +Andreas Glaser,A Fast Algorithm for the Calculation of the Roots of Special Functions.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#GlaserLR07,https://doi.org/10.1137/06067016X +Dimitris J. Kavvadias,Efficiently Computing Many Roots of a Function.,2005,27,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc27.html#KavvadiasMV05,https://doi.org/10.1137/S1064827502406531 +Anders Logg,Multi-Adaptive Galerkin Methods for ODEs II: implementation and Applications.,2004,25,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc25.html#Logg04,https://doi.org/10.1137/S1064827501389734 +Chong Gu,Interaction Splines with Regular Data: Automatically Smoothing Digital Images.,1993,14,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc14.html#Gu93,https://doi.org/10.1137/0914012 +Xuemin Tu,Three-Level BDDC in Three Dimensions.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#Tu07,https://doi.org/10.1137/050629902 +Martin Christiansen,Deblurring Methods Using Antireflective Boundary Conditions.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#ChristiansenH08,https://doi.org/10.1137/060671413 +Boris Diskin,Half-Space Analysis of the Defect-Correction Method for Fromm Discretization of Convection.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#DiskinT00,https://doi.org/10.1137/S1064827599358637 +Chunguang Li,CGNR Is an Error Reducing Algorithm.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#Li01,https://doi.org/10.1137/S1064827500375990 +Seongjai Kim,An O(N) Level Set Method for Eikonal Equations.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#Kim01,https://doi.org/10.1137/S1064827500367130 +Stanley C. Eisenstat,Exploiting Structural Symmetry in a Sparse Partial Pivoting Code.,1993,14,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc14.html#EisenstatL93,https://doi.org/10.1137/0914016 +Dongbin Xiu,High-Order Collocation Methods for Differential Equations with Random Inputs.,2005,27,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc27.html#XiuH05,https://doi.org/10.1137/040615201 +Ryan A. Rossi,Parallel Maximum Clique Algorithms with Applications to Network Analysis.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#RossiGG15,https://doi.org/10.1137/14100018X +Panayot S. Vassilevski,2004 Copper Mountain Conference.,2006,27,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc27.html#Vassilevski06, +Aziz Madrane,Three-Dimensional Adaptive Central Schemes on Unstructured Staggered Grids.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#MadraneV09,https://doi.org/10.1137/06066240X +Jinglai Li,Adaptive Construction of Surrogates for the Bayesian Solution of Inverse Problems.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#LiM14,https://doi.org/10.1137/130938189 +Bernard Bialecki,Fourier Matrix Decomposition Methods for the Least Squares Solution of Singular Neumann and Periodic Hermite Bicubic Collocation Problems.,1995,16,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc16.html#BialeckiR95,https://doi.org/10.1137/0916027 +Kendall E. Atkinson,Piecewise Polynomial Collocation for Boundary Integral Equations.,1995,16,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc16.html#AtkinsonC95,https://doi.org/10.1137/0916040 +Andreas Mang,A Semi-Lagrangian Two-Level Preconditioned Newton-Krylov Solver for Constrained Diffeomorphic Image Registration.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#MangB17,https://doi.org/10.1137/16M1070475 +Hadi Pouransari,Fast Hierarchical Solvers For Sparse Matrices Using Extended Sparsification and Low-Rank Approximation.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#PouransariCD17,https://doi.org/10.1137/15M1046939 +Tan Bui-Thanh,Construction and Analysis of HDG Methods for Linearized Shallow Water Equations.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#Bui-Thanh16,https://doi.org/10.1137/16M1057243 +Tsung-Min Hwang,Numerical Solution of Quadratic Eigenvalue Problems with Structure-Preserving Methods.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#HwangLM03,https://doi.org/10.1137/S106482750139220X +Kazufumi Ito,Lagrange Multiplier Approach with Optimized Finite Difference Stencils for Pricing American Options under Stochastic Volatility.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#ItoT09,https://doi.org/10.1137/07070574X +Jing-Rebecca Li,A Fast Time Stepping Method for Evaluating Fractional Integrals.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#Li10,https://doi.org/10.1137/080736533 +Kookjin Lee,A Preconditioned Low-Rank Projection Method with a Rank-Reduction Scheme for Stochastic Partial Differential Equations.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#LeeE17,https://doi.org/10.1137/16M1075582 +Alfredo Cutolo,An Upwind-Euler Scheme for an ODE-PDE Model of Supply Chains.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#CutoloPR11,https://doi.org/10.1137/090767479 +Jeffrey J. Heys,On Mass-Conserving Least-Squares Methods.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#HeysLMM06,https://doi.org/10.1137/050640928 +Jesse Chan,A Short Note on a Bernstein-Bezier Basis for the Pyramid.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#ChanW16a,https://doi.org/10.1137/15M1036397 +Michele Benzi,Preconditioning Highly Indefinite and Nonsymmetric Matrices.,2000,22,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc22.html#BenziHT00,https://doi.org/10.1137/S1064827599361308 +Chris Fraley,Large-Scale Estimation of Variance and Covariance Components.,1995,16,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc16.html#FraleyB95,https://doi.org/10.1137/0916013 +Shucheng Pan,A Consistent Analytical Formulation for Volume Estimation of Geometries Enclosed by Implicitly Defined Surfaces.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#PanHA18,https://doi.org/10.1137/17M1126370 +Irad Yavneh,Fast Multigrid Solution of the Advection Problem with Closed Characteristics.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#YavnehVB98,https://doi.org/10.1137/S1064827596302989 +Emil M. Constantinescu,Optimal Explicit Strong-Stability-Preserving General Linear Methods.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#ConstantinescuS10a,https://doi.org/10.1137/090766206 +Zhenning Cai,A Quantum Kinetic Monte Carlo Method for Quantum Many-Body Spin Dynamics.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#CaiL18,https://doi.org/10.1137/17M1145446 +Frank E. Curtis,An Interior-Point Algorithm for Large-Scale Nonlinear Optimization with Inexact Step Computations.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#CurtisSW10,https://doi.org/10.1137/090747634 +Burak Aksoylu,An Odyssey into Local Refinement and Multilevel Preconditioning III: Implementation and Numerical Experiments.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#AksoyluBH03,https://doi.org/10.1137/S1064827502407676 +Mark W. Reichelt,Optimal Convolution SOR Acceleration of Waveform Relaxation with Application to Parallel Simulation of Semiconductor Devices.,1995,16,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc16.html#ReicheltWA95,https://doi.org/10.1137/0916066 +Emmanuel Audusse,Optimized Schwarz Waveform Relaxation for the Primitive Equations of the Ocean.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#AudusseDM10,https://doi.org/10.1137/090770059 +Mario Ohlberger,A Dimensional Reduction Approach Based on the Application of Reduced Basis Methods in the Framework of Hierarchical Model Reduction.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#OhlbergerS14,https://doi.org/10.1137/130939122 +Ajay Jasra,Bayesian Static Parameter Estimation for Partially Observed Diffusions via Multilevel Monte Carlo.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#JasraKLZ18,https://doi.org/10.1137/17M1112595 +Ning Hu,Multi-p Preconditioners.,1997,18,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc18.html#HuGK97,https://doi.org/10.1137/S1064827595279368 +Hyea Hyun Kim,A FETI--DP Formulation for the Three-Dimensional Stokes Problem without Primal Pressure Unknowns.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#KimL10,https://doi.org/10.1137/090777335 +Eugene Vecharynski,Graph Partitioning Using Matrix Values for Preconditioning Symmetric Positive Definite Systems.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#VecharynskiSS14,https://doi.org/10.1137/120898760 +Shi Jin,Efficient Asymptotic-Preserving (AP) Schemes For Some Multiscale Kinetic Equations.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#Jin99,https://doi.org/10.1137/S1064827598334599 +Konrad Simon,A Hyperelastic Two-Scale Optimization Model for Shape Matching.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#SimonSJB17,https://doi.org/10.1137/15M1048562 +K. Barmak,Towards a Statistical Theory of Texture Evolution in Polycrystals.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#BarmakEGKT08,https://doi.org/10.1137/070692352 +Terry Haut,An Asymptotic Parallel-in-Time Method for Highly Oscillatory PDEs.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#HautW14,https://doi.org/10.1137/130914577 +William G. Litvinov,A Modified TV-Stokes Model for Image Processing.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#LitvinovRT11,https://doi.org/10.1137/080727506 +Andreas Pedersen,Efficient Sampling of Saddle Points with the Minimum-Mode Following Method.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#PedersenHJ11,https://doi.org/10.1137/100792743 +Bruce Hendrickson,The Torus-Wrap Mapping for Dense Matrix Calculations on Massively Parallel Computers.,1994,15,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc15.html#HendricksonW94,https://doi.org/10.1137/0915074 +Burhan Sadiq,Barycentric Hermite Interpolation.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#SadiqV13,https://doi.org/10.1137/110833221 +Xingzhi Zhan,Computing the Extremal Positive Definite Solutions of a Matrix Equation.,1996,17,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc17.html#Zhan96,https://doi.org/10.1137/S1064827594277041 +José A. Carrillo,Numerical Simulation of Diffusive and Aggregation Phenomena in Nonlinear Continuity Equations by Evolving Diffeomorphisms.,2009,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#CarrilloM09,https://doi.org/10.1137/080739574 +Weizhu Bao,Computing Ground States of Spin-1 Bose-Einstein Condensates by the Normalized Gradient Flow.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#BaoL08,https://doi.org/10.1137/070698488 +Gerhard Starke,Subspace Orthogonalization for Substructuring Preconditioners for Non-self-adjoint Elliptic Problems.,1997,18,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc18.html#Starke97,https://doi.org/10.1137/S106482759325908X +Bjørn Fredrik Nielsen,Analysis of the Minimal Residual Method Applied to Ill Posed Optimality Systems.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#NielsenM13,https://doi.org/10.1137/120871547 +Ambady Suresh,Positivity-Preserving Schemes in Multidimensions.,2000,22,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc22.html#Suresh00,https://doi.org/10.1137/S1064827599360443 +Wolfgang Mackens,Computing the Minimum Eigenvalue of a Symmetric Positive Definite Toeplitz Matrix by Newton-type Methods.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#MackensV99,https://doi.org/10.1137/S1064827598342195 +Jörg Grande,Eulerian Finite Element Methods for Parabolic Equations on Moving Surfaces.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#Grande14,https://doi.org/10.1137/130920095 +Zhiqiang Cai,First-Order System Least Squares For Linear Elasticity: Numerical Results.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#CaiLMM00,https://doi.org/10.1137/S1064827598338640 +Karol Mikula,Manifold Evolution with Tangential Redistribution of Points.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#MikulaRSS14,https://doi.org/10.1137/130927668 +Ping Lin 0001,Long Time Numerical Solution of the Navier--Stokes Equations Based on a Sequential Regularization Formulation.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#LinLL08,https://doi.org/10.1137/060673722 +René Milk,pyMOR - Generic Algorithms and Interfaces for Model Order Reduction.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#MilkRS16,https://doi.org/10.1137/15M1026614 +Robert Bartnik,Numerical Methods for the Einstein Equations in Null Quasi-Spherical Coordinates.,2000,22,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc22.html#BartnikN00,https://doi.org/10.1137/S1064827599356171 +Hongjiong Tian,Continuous Block Theta-Methods for Ordinary and Delay Differential Equations.,2009,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#TianSK09,https://doi.org/10.1137/080730779 +Mehiddin Al-Baali,On the Order of Convergence of Preconditioned Nonlinear Conjugate Gradient Methods.,1996,17,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc17.html#Al-BaaliF96,https://doi.org/10.1137/S1064827591194303 +Andrew P. Kuprat,Modeling Microstructure Evolution Using Gradient-Weighted Moving Finite Elements.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#Kuprat00,https://doi.org/10.1137/S1064827598348374 +Jiequan Li,A Two-Stage Fourth Order Time-Accurate Discretization for Lax-Wendroff Type Flow Solvers I. Hyperbolic Conservation Laws.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#LiD16,https://doi.org/10.1137/15M1052512 +Raymond H. Chan,A Family of Block Preconditioners for Block Systems.,1992,13,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc13.html#ChanJ92,https://doi.org/10.1137/0913070 +Rafael Bru,Preconditioned Iterative Methods for Solving Linear Least Squares Problems.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#BruMMT14,https://doi.org/10.1137/130931588 +Martin B. van Gijzen,Spectral Analysis of the Discrete Helmholtz Operator Preconditioned with a Shifted Laplacian.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#GijzenEV07,https://doi.org/10.1137/060661491 +Lei Tang,Uniformly Accurate Finite Difference Schemes for p-Refinement.,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#TangB98,https://doi.org/10.1137/S1064827596308354 +Marlis Hochbruck,Exponential Integrators for Large Systems of Differential Equations.,1998,19,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc19.html#HochbruckLS98,https://doi.org/10.1137/S1064827595295337 +Xiaoliang Wan,The Wick-Malliavin Approximation of Elliptic Problems with Log-Normal Random Coefficients.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#WanR13,https://doi.org/10.1137/130918605 +Serhat Yesilyurt,Bayesian-Validated Surrogates for Noisy Computer Simulations* Application to Random Media.,1996,17,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc17.html#YesilyurtGCP96,https://doi.org/10.1137/0917063 +Weigang Wang,Special Bilinear Quadrilateral Elements For Locally Refined Finite Element Grids.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#Wang01,https://doi.org/10.1137/S1064827599358911 +Alessio Spantini,Optimal Low-rank Approximations of Bayesian Linear Inverse Problems.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#SpantiniSCMTM15,https://doi.org/10.1137/140977308 +Mario Arioli,Block Lanczos Techniques for Accelerating the Block Cimmino Method.,1995,16,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc16.html#ArioliDRS95,https://doi.org/10.1137/0916086 +Abdou M. Abdel-Rehim,Deflated and Restarted Symmetric Lanczos Methods for Eigenvalues and Linear Equations with Multiple Right-Hand Sides.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#Abdel-RehimMNW10,https://doi.org/10.1137/080727361 +Roy Mathias,The Instability of Parallel Prefix Matrix Multiplication.,1995,16,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc16.html#Mathias95,https://doi.org/10.1137/0916056 +Peter Benner,Two-Sided Projection Methods for Nonlinear Model Order Reduction.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#BennerB15,https://doi.org/10.1137/14097255X +Zi-Xing Xing,A Distributed-Memory Randomized Structured Multifrontal Method for Sparse Direct Solutions.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#XingXHCB17,https://doi.org/10.1137/16M1079221 +David Amsallem,An Online Method for Interpolating Linear Parametric Reduced-Order Models.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#AmsallemF11,https://doi.org/10.1137/100813051 +Yat Tin Chow,Cyclic Coordinate-Update Algorithms for Fixed-Point Problems: Analysis and Applications.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#ChowWY17,https://doi.org/10.1137/16M1102653 +Shmuel Rippa,Adaptive Approximation by Piecewise Linear Polynomials on Triangulations of Subsets of Scattered Data.,1992,13,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc13.html#Rippa92,https://doi.org/10.1137/0913065 +Lorella Fatone,Optimal Collocation Nodes for Fractional Derivative Operators.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#FatoneF15,https://doi.org/10.1137/140993697 +Daniela Calvetti,Tikhonov Regularization with a Solution Constraint.,2004,26,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc26.html#CalvettiR04,https://doi.org/10.1137/S1064827502412280 +Ralph E. Carlson,A Bivariate Interpolation Algorithm for Data that are Monotone in One Variable.,1991,12,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc12.html#CarlsonF91,https://doi.org/10.1137/0912046 +Jussi Rahola,Solution of Dense Systems of Linear Equations in the Discrete-Dipole Approximation.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#Rahola96,https://doi.org/10.1137/0917007 +Mardochée Magolu monga Made,Dynamically Relaxed Block Incomplete Factorizations for Solving Two- and Three-Dimensional Problems.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#MadeN00,https://doi.org/10.1137/S1064827596311591 +Sebastian Noelle,A Weakly Asymptotic Preserving Low Mach Number Scheme for the Euler Equations of Gas Dynamics.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#NoelleBALM14,https://doi.org/10.1137/120895627 +Xuping Xie,Data-Driven Filtered Reduced Order Modeling of Fluid Flows.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#XieMRI18,https://doi.org/10.1137/17M1145136 +Yonghong Zeng,Fast Computation of MD-DCT-IV/MD-DST-IV by MD-DWT or MD-DCT-II.,2003,24,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc24.html#ZengLBC03,https://doi.org/10.1137/S1064827501394830 +Carsten Carstensen,A Posteriori Error Control in Adaptive Qualocation Boundary Element Analysis for a Logarithmic-Kernel Integral Equation of the First Kind.,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#CarstensenP03,https://doi.org/10.1137/S1064827501399006 +Miklós Homolya,A Parallel Edge Orientation Algorithm for Quadrilateral Meshes.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#HomolyaH16,https://doi.org/10.1137/15M1021325 +Shing-Tung Yau,Reducing the Symmetric Matrix Eigenvalue Problem to Matrix Multiplications.,1993,14,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc14.html#YauL93,https://doi.org/10.1137/0914008 +Alexei Lozinski,An Anisotropic Error Estimator for the Crank--Nicolson Method: Application to a Parabolic Problem.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#LozinskiPP09,https://doi.org/10.1137/080715135 +Louis H. Howell,A Modified Schwarz-Christoffel Transformation for Elongated Regions.,1990,11,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc11.html#HowellT90,https://doi.org/10.1137/0911054 +Daniel Busby,Hierarchical Nonlinear Approximation for Experimental Design and Statistical Data Fitting.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#BusbyFI07,https://doi.org/10.1137/050639983 +Robert I. McLachlan,The Multisymplectic Diamond Scheme.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#McLachlanW15,https://doi.org/10.1137/140958359 +Paul D. Hovland,Efficient Derivative Codes through Automatic Differentiation and Interface Contraction: An Application in Biostatistics.,1997,18,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc18.html#HovlandBSC97,https://doi.org/10.1137/S1064827595281800 +Xin He,Combining the Augmented Lagrangian Preconditioner with the Simple Schur Complement Approximation.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#HeVK18,https://doi.org/10.1137/17M1144775 +Boris Kramer,System Identification via CUR-Factored Hankel Approximation.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#KramerG18,https://doi.org/10.1137/17M1137632 +Tobias Jahnke,An Adaptive Wavelet Method for the Chemical Master Equation.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#Jahnke10,https://doi.org/10.1137/080742324 +Sadok Lamine,Higher Order Multidimensional Upwind Convection Schemes for Flow in Porous Media on Structured and Unstructured Quadrilateral Grids.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#LamineE10,https://doi.org/10.1137/080727750 +Ian G. Graham,Unstructured Additive Schwarz-Conjugate Gradient Method for Elliptic Problems with Highly Discontinuous Coefficients.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#GrahamH99,https://doi.org/10.1137/S1064827596305593 +Alan J. Laub,Statistical Condition Estimation for the Roots of Polynomials.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#LaubX08,https://doi.org/10.1137/070702242 +Stephan Schmidt,Weak and Strong Form Shape Hessians and Their Automatic Generation.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#Schmidt18,https://doi.org/10.1137/16M1099972 +Roland Griesmaier,Inverse Source Problems for Maxwell's Equations and the Windowed Fourier Transform.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#GriesmaierMS18,https://doi.org/10.1137/17M1150943 +Francesc Aràndiga,Fast Multiresolution Algorithms for Solving Linear Equations: A Comparative Study.,1995,16,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc16.html#ArandigaCD95,https://doi.org/10.1137/0916037 +Robert D. Russell,On the Structure of Jacobians for Spectral Methods for Nonlinear Partial Differential Equations.,1992,13,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc13.html#RussellST92,https://doi.org/10.1137/0913030 +Xiangxiong Zhang,Maximum-principle-satisfying High Order Finite Volume Weighted Essentially Nonoscillatory Schemes for Convection-diffusion Equations.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#ZhangLS12,https://doi.org/10.1137/110839230 +Howard C. Elman,Preconditioning Techniques for Reduced Basis Methods for Parameterized Elliptic Partial Differential Equations.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#ElmanF15,https://doi.org/10.1137/140970859 +Steve Bryson,Central Schemes for Multidimensional Hamilton-Jacobi Equations.,2003,25,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc25.html#BrysonL03,https://doi.org/10.1137/S1064827501394969 +Pascal Hénon,A Parallel Multistage ILU Factorization Based on a Hierarchical Graph Decomposition.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#HenonS06,https://doi.org/10.1137/040608258 +Philip W. Sharp,Explicit Runge-Kutta Pairs with One More Derivative Evaluation than the Minimum.,1993,14,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc14.html#SharpS93,https://doi.org/10.1137/0914021 +Bradley M. Bell,A Statistical Model and Estimation of Disease Rates as Functions of Age and Time.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#BellF13,https://doi.org/10.1137/120872413 +Simon Etter,Parallel ALS Algorithm for Solving Linear Systems in the Hierarchical Tucker Representation.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#Etter16,https://doi.org/10.1137/15M1038852 +Jonathan D. Hogg,Design of a Multicore Sparse Cholesky Factorization Using DAGs.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#HoggRS10,https://doi.org/10.1137/090757216 +Ann S. Almgren,A Cartesian Grid Projection Method for the Incompressible Euler Equations in Complex Geometries.,1997,18,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc18.html#AlmgrenBCM97,https://doi.org/10.1137/S1064827594273730 +Roland W. Freund,An Implementation of the QMR Method Based on Coupled Two-Term Recurrences.,1994,15,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc15.html#FreundN94,https://doi.org/10.1137/0915022 +Arta A. Jamshidi,Towards a Black Box Algorithm for Nonlinear Function Approximation over High-Dimensional Domains.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#JamshidiK07,https://doi.org/10.1137/050646457 +Paul O. Frederickson,Normalized Convergence Rates for the PSMG Method.,1991,12,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc12.html#FredericksonM91,https://doi.org/10.1137/0912012 +N. Anders Petersson,Computing Periodic Gravity Waves on Water by Using Moving Composite Overlapping Grids.,1993,14,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc14.html#Petersson93,https://doi.org/10.1137/0914079 +Szymon Jaroszewicz,Arithmetic Operations on Independent Random Variables: A Numerical Approach.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#JaroszewiczK12,https://doi.org/10.1137/110839680 +Howard C. Elman,Fast Nonsymmetric Iterations and Preconditioning for Navier-Stokes Equations.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#ElmanS96,https://doi.org/10.1137/0917004 +Damaris Hermey,Fitting Data with Errors in All Variables Using the Huber M-estimator.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#HermeyW99,https://doi.org/10.1137/S106482759731823X +Miguel A. Fernández,Explicit Coupling Schemes for a Fluid-Fluid Interaction Problem Arising in Hemodynamics.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#FernandezGS14,https://doi.org/10.1137/130948653 +Eleanor Chu,Parallel Algorithms and Subcube Embedding on a Hypercube.,1993,14,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc14.html#ChuG93,https://doi.org/10.1137/0914006 +Elisabeth Larsson,A Least Squares Radial Basis Function Partition of Unity Method for Solving PDEs.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#LarssonSH17,https://doi.org/10.1137/17M1118087 +M. Lukácová-Medvidová,Finite Volume Evolution Galerkin Methods for Hyperbolic Systems.,2004,26,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc26.html#Lukacova-MedvidovaMW04,https://doi.org/10.1137/S1064827502419439 +Robert W. Anderson,High-Order Multi-Material ALE Hydrodynamics.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#AndersonDKRT18,https://doi.org/10.1137/17M1116453 +Anthony Pajot,Globally Adaptive Control Variate for Robust Numerical Integration.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#PajotBP14,https://doi.org/10.1137/130937846 +Johann Guilleminot,Itô SDE-based Generator for a Class of Non-Gaussian Vector-valued Random Fields in Uncertainty Quantification.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#GuilleminotS14,https://doi.org/10.1137/130948586 +P. Wilders,Schwarz and Schur: An Algebraical Note on Equivalence Properties.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#WildersB99,https://doi.org/10.1137/S1064827596305234 +Haibiao Zheng,A Posteriori Error Estimates of Stabilization of Low-Order Mixed Finite Elements for Incompressible Flow.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#ZhengHS10,https://doi.org/10.1137/090771508 +M. Ableidinger,Splitting Integrators for the Stochastic Landau-Lifshitz Equation.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#AbleidingerB16,https://doi.org/10.1137/15M103529X +Wanrong Cao,Numerical Methods for Stochastic Delay Differential Equations Via the Wong-Zakai Approximation.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#CaoZK15,https://doi.org/10.1137/130942024 +Jan Hegemann,An Explicit Update Scheme for Inverse Parameter and Interface Estimation of Piecewise Constant Coefficients in Linear Elliptic PDEs.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#HegemannCRT13,https://doi.org/10.1137/110834500 +Fausto Cavalli,Discontinuous Galerkin Approximation of Relaxation Models for Linear and Nonlinear Diffusion Equations.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#CavalliNP12,https://doi.org/10.1137/110827752 +Gregorio Quintana-Ortí,A BLAS-3 Version of the QR Factorization with Column Pivoting.,1998,19,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc19.html#Quintana-OrtiSB98,https://doi.org/10.1137/S1064827595296732 +Ngai-Hang Z. Leung,An SDP-Based Divide-and-Conquer Algorithm for Large-Scale Noisy Anchor-Free Graph Realization.,2009,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#LeungT09,https://doi.org/10.1137/080733103 +Alen Alexanderian,A Fast and Scalable Method for A-Optimal Design of Experiments for Infinite-dimensional Bayesian Nonlinear Inverse Problems.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#AlexanderianPSG16,https://doi.org/10.1137/140992564 +Aly-Khan Kassam,Fourth-Order Time-Stepping for Stiff PDEs.,2005,26,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc26.html#KassamT05,https://doi.org/10.1137/S1064827502410633 +Per Lötstedt,A Minimal Residual Interpolation Method for Linear Equations with Multiple Right-Hand Sides.,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#LotstedtN04,https://doi.org/10.1137/S106482750241877X +Gian Luca Delzanno,Generalized Monge-Kantorovich Optimization for Grid Generation and Adaptation in Lp.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#DelzannoF10,https://doi.org/10.1137/090749785 +Siddhartha Mishra,Multilevel Monte Carlo Finite Volume Methods for Shallow Water Equations with Uncertain Topography in Multi-dimensions.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#MishraSS12,https://doi.org/10.1137/110857295 +Jeffery Allen,A Fluidity-Based First-Order System Least-Squares Method for Ice Sheets.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#AllenLMR17,https://doi.org/10.1137/140974973 +Ebrahim M. Kolahdouz,A Semi-implicit Gradient Augmented Level Set Method.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#KolahdouzS13,https://doi.org/10.1137/120871237 +Ludovic Métivier,Full Waveform Inversion and the Truncated Newton Method.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#MetivierBVO13,https://doi.org/10.1137/120877854 +Alex H. Barnett,An Exponentially Convergent Nonpolynomial Finite Element Method for Time-Harmonic Scattering from Polygons.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#BarnettB10,https://doi.org/10.1137/090768667 +Benjamin E. Sonday,Eigenvalues of the Jacobian of a Galerkin-Projected Uncertain ODE System.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#SondayBND11,https://doi.org/10.1137/100785922 +Tariq Aslam,A static PDE Approach for MultiDimensional Extrapolation Using Fast Sweeping Methods.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#AslamLZ14,https://doi.org/10.1137/140956919 +Eric Barth,A Time-Reversible Variable-Stepsize Integrator for Constrained Dynamics.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#BarthLR99,https://doi.org/10.1137/S1064827596314194 +Roland Hunt,Three-Dimensional Steady Flow in a Dividing Channel Using Finite and Pseudospectral Differences.,1996,17,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc17.html#Hunt96,https://doi.org/10.1137/S1064827594271950 +J. Alex Lee,A New Stabilization of Adaptive Step Trapezoid Rule Based on Finite Difference Interrupts.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#LeeNP15,https://doi.org/10.1137/140966915 +C.-S. Chien,Mode Jumping In The Von Kármán Equations.,2000,22,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc22.html#ChienGM00,https://doi.org/10.1137/S1064827596307324 +Kurt Lust,An Adaptive Newton-Picard Algorithm with Subspace Iteration for Computing Periodic Solutions.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#LustR98,https://doi.org/10.1137/S1064827594277673 +Laurent O. Jay,Improved Quasi-Steady-State-Approximation Methods for Atmospheric Chemistry Integration.,1997,18,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc18.html#JaySPC97,https://doi.org/10.1137/S1064827595283033 +Tommy Elfving,Unmatched Projector/Backprojector Pairs: Perturbation and Convergence Analysis.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#ElfvingH18,https://doi.org/10.1137/17M1133828 +J. H. Adler,Efficiency Based Adaptive Local Refinement for First-Order System Least-Squares Formulations.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#AdlerMMNRT11,https://doi.org/10.1137/100786897 +Nathan Bell,Exposing Fine-Grained Parallelism in Algebraic Multigrid Methods.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#BellDO12,https://doi.org/10.1137/110838844 +Edward J. C. Hall,hp-Adaptive Discontinuous Galerkin Methods for Neutron Transport Criticality Problems.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#HallHM17,https://doi.org/10.1137/16M1079944 +Eddie Wadbro,Microwave Tomography Using Topology Optimization Techniques.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#WadbroB08,https://doi.org/10.1137/070679879 +Michel J. Daydé,Element-by-Element Preconditioners for Large Partially Separable Optimization Problems.,1997,18,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc18.html#DaydeLG97,https://doi.org/10.1137/S1064827594274796 +Gunther Reissig,Differential-Algebraic Equations of Index 1 May Have an Arbitrarily High Structural Index.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#ReissigMB00,https://doi.org/10.1137/S1064827599353853 +Rex A. Kerr,Fast Monte Carlo Simulation Methods for Biological Reaction-Diffusion Systems in Solution and on Surfaces.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#KerrBKDCBSS08,https://doi.org/10.1137/070692017 +Junping Wang,A Robust Numerical Method for Stokes Equations Based on Divergence-Free H(div) Finite Element Methods.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#WangWY09,https://doi.org/10.1137/080730044 +Alessio Fumagalli,Dual Virtual Element Method for Discrete Fractures Networks.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#FumagalliK18,https://doi.org/10.1137/16M1098231 +Carmen Campos,Parallel Krylov Solvers for the Polynomial Eigenvalue Problem in SLEPc.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#CamposR16,https://doi.org/10.1137/15M1022458 +Julia Springer,Adjoint-Based Optimization for Rigid Body Motion in Multiphase Navier-Stokes Flow.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#SpringerU15,https://doi.org/10.1137/140974511 +David Colton,A Regularized Sampling Method for Solving Three-Dimensional Inverse Scattering Problems.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#ColtonGM00,https://doi.org/10.1137/S1064827598340159 +Yiorgos Sokratis Smyrlis,The Method of Fundamental Solutions for Stationary Heat Conduction Problems in Rotationally Symmetric Domains.,2006,27,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc27.html#SmyrlisK06,https://doi.org/10.1137/040615213 +Christian Lage,Wavelet Galerkin Algorithms for Boundary Integral Equations.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#LageS99,https://doi.org/10.1137/S1064827597329989 +Nejib Smaoui,Timely Communication: Symmetry and the Karhunen-Loève Analysis.,1997,18,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc18.html#SmaouiA97,https://doi.org/10.1137/S1064827596309694 +Edmond Chow,Preconditioned Krylov Subspace Methods for Sampling Multivariate Gaussian Distributions.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#ChowS14,https://doi.org/10.1137/130920587 +Djano Kandaswamy,Analytic Sensing: Noniterative Retrieval of Point Sources from Boundary Measurements.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#KandaswamyBV09,https://doi.org/10.1137/080712829 +Walter Acevedo,Second-order Accurate Ensemble Transform Particle Filters.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#AcevedoWR17,https://doi.org/10.1137/16M1095184 +V. Buyarov,Computation of the Entropy of Polynomials Orthogonal on an Interval.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#BuyarovSMS04,https://doi.org/10.1137/S1064827503426711 +Penny J. Davies,Convolution-in-Time Approximations of Time Domain Boundary Integral Equations.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#DaviesD13,https://doi.org/10.1137/120881907 +Dongfang Li,Unconditionally Convergent L1-Galerkin FEMs for Nonlinear Time-Fractional Schrödinger Equations.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#LiWZ17,https://doi.org/10.1137/16M1105700 +Yunfeng Xiong,An Advective-Spectral-Mixed Method for Time-Dependent Many-Body Wigner Simulations.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#XiongCS16,https://doi.org/10.1137/15M1051373 +Todd Arbogast,A Fully Mass and Volume Conserving Implementation of a Characteristic Method for Transport Problems.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#ArbogastH06,https://doi.org/10.1137/040621077 +Alexandre Caboussat,An Alternating Direction Method of Multipliers for the Numerical Solution of a Fully Nonlinear Partial Differential Equation Involving the Jacobian Determinant.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#CaboussatG18,https://doi.org/10.1137/16M1094075 +Marcus Webb,Stability of Barycentric Interpolation Formulas for Extrapolation.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#WebbTG12,https://doi.org/10.1137/110848797 +Harold R. Parks,Numerical Approximation of Parametric Oriented Area-Minimizing Hypersurfaces.,1992,13,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc13.html#Parks92,https://doi.org/10.1137/0913027 +Sven Groß,Parallel Multilevel Tetrahedral Grid Refinement.,2005,26,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc26.html#GrossR05,https://doi.org/10.1137/S1064827503425237 +Todd Arbogast,A Fully Conservative Eulerian-Lagrangian Stream-Tube Method for Advection-Diffusion Problems.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#ArbogastHH12,https://doi.org/10.1137/110840376 +Amir Averbuch,A Framework for Discrete Integral Transformations II-The 2D Discrete Radon Transform.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#AverbuchCDISS08,https://doi.org/10.1137/060650301 +Jorge Balbas,Nonoscillatory Central Schemes for One- and Two-Dimensional Magnetohydrodynamics Equations. II: High-Order SemiDiscrete Schemes.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#BalbasT06,https://doi.org/10.1137/040610246 +Andrey N. Chernikov,Generalized Insertion Region Guides for Delaunay Mesh Refinement.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#ChernikovC12,https://doi.org/10.1137/100809076 +Thomas K. DeLillo,A Comparison of some Numerical Conformal Mapping Methods for Exterior Regions.,1991,12,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc12.html#DeLilloE91,https://doi.org/10.1137/0912022 +Mohamed M. S. Nasser,Numerical Conformal Mapping via a Boundary Integral Equation with the Generalized Neumann Kernel.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#Nasser09,https://doi.org/10.1137/070711438 +Doron Levy,Compact Central WENO Schemes for Multidimensional Conservation Laws.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#LevyPR00,https://doi.org/10.1137/S1064827599359461 +Chao Jin,Parallel Domain Decomposition Methods for Stochastic Elliptic Equations.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#JinCL07,https://doi.org/10.1137/060662381 +Adam W. Bojanczyk,Stability Analysis of a Householder-Based Algorithm for Downdating the Cholesky Factorization.,1991,12,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc12.html#BojanczykS91,https://doi.org/10.1137/0912067 +Larry L. Schumaker,On Generalized Cross Validation for Tensor Smoothing Splines.,1990,11,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc11.html#SchumakerU90,https://doi.org/10.1137/0911042 +Mofdi El-Amrani,A Galerkin-Characteristic Method for Large-Eddy Simulation of Turbulent Flow and Heat Transfer.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#El-AmraniS08,https://doi.org/10.1137/080720711 +Louis F. Rossi,Merging Computational Elements in Vortex Simulations.,1997,18,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc18.html#Rossi97,https://doi.org/10.1137/S1064827595285287 +Patrick M. Knupp,A Framework for Variational Grid Generation: Conditioning the Jacobian Matrix with Matrix Norms.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#KnuppR00,https://doi.org/10.1137/S1064827598341633 +Jianlin Xia,Efficient Structured Multifrontal Factorization for General Large Sparse Matrices.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#Xia13,https://doi.org/10.1137/120867032 +Dong Han,Multigrid Methods for Second Order Hamilton-Jacobi-Bellman and Hamilton-Jacobi-Bellman-Isaacs Equations.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#HanW13,https://doi.org/10.1137/120881476 +S. Jain,A Hierarchical Multiresolution Adaptive Mesh Refinement for the Solution of Evolution PDEs.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#JainTZ08,https://doi.org/10.1137/070708329 +T. Gao,Mean Exit Time and Escape Probability for Dynamical Systems Driven by Lévy Noises.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#GaoDLS14,https://doi.org/10.1137/120897262 +Frederico F. Campos,An Efficient Solver for Multi-Right-Hand-Side Linear Systems Based on the CCCG(λ1*) Method with Applications to Implicit Time-Dependent Partial Differential Equations.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#CamposB98,https://doi.org/10.1137/S106482759630382X +Adam P. Harrison,High Performance Rearrangement and Multiplication Routines for Sparse Tensor Arithmetic.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#HarrisonJ18,https://doi.org/10.1137/17M1115873 +Marco Artina,Anisotropic Mesh Adaptation for Crack Detection In Brittle Materials.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#ArtinaFMP15,https://doi.org/10.1137/140970495 +Ralph C. Smith,A Galerkin Method for Linear PDE Systems in Circular Geometries with Structural Acoustic Problems.,1997,18,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc18.html#Smith97,https://doi.org/10.1137/S1064827594268531 +Carsten Burstedde,p4est: Scalable Algorithms for Parallel Adaptive Mesh Refinement on Forests of Octrees.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#BursteddeWG11,https://doi.org/10.1137/100791634 +Chunguang Sun,Parallel Sparse Orthogonal Factorization on Distributed-Memory Multiprocessors.,1996,17,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc17.html#Sun96,https://doi.org/10.1137/S1064827593260449 +Hehu Xie,Collocation Methods for General Volterra Functional Integral Equations with Vanishing Delays.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#XieZB11,https://doi.org/10.1137/100818595 +Stefano Micheletti,Output Functional Control for Nonlinear Equations Driven by Anisotropic Mesh Adaption: The Navier--Stokes Equations.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#MichelettiP08,https://doi.org/10.1137/070691930 +Zhaojun Bai,The Spectral Decomposition of Nonsymmetric Matrices on Distributed Memory Parallel Computers.,1997,18,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc18.html#BaiDDPRS97,https://doi.org/10.1137/S1064827595281368 +A. Rademacher,NCP Function-Based Dual Weighted Residual Error Estimators for Signorini's Problem.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#Rademacher16,https://doi.org/10.1137/15M1033873 +Paul G. Constantine,Model Reduction With MapReduce-enabled Tall and Skinny Singular Value Decomposition.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#ConstantineGHT14,https://doi.org/10.1137/130925219 +Kun Xu 0001,Discontinuous Galerkin BGK Method for Viscous Flow Equations: One-Dimensional Systems.,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#Xu04,https://doi.org/10.1137/S1064827502416113 +Ulrich Rüde,The Hierarchical Basis Extrapolation Method.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#Rude92,https://doi.org/10.1137/0913016 +Yidu Yang,The Shifted-Inverse Iteration Based on the Multigrid Discretizations for Eigenvalue Problems.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#YangBHY15,https://doi.org/10.1137/140992011 +Marina Spivak,The Fast Generalized Gauss Transform.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#SpivakVG10,https://doi.org/10.1137/100790744 +Junichi Imai,Pricing Derivative Securities Using Integrated Quasi-Monte Carlo Methods with Dimension Reduction and Discontinuity Realignment.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#ImaiT14,https://doi.org/10.1137/130926286 +Tony F. Chan,Some Applications of the Rank Revealing QR Factorization.,1992,13,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc13.html#ChanH92,https://doi.org/10.1137/0913043 +James Baglama,Adaptively Preconditioned GMRES Algorithms.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#BaglamaCGR98,https://doi.org/10.1137/S1064827596305258 +Pierre-David Létourneau,Cauchy Fast Multipole Method for General Analytic Kernels.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#LetourneauCD14,https://doi.org/10.1137/120891617 +Akil Narayan,A Stochastic Collocation Algorithm with Multifidelity Models.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#NarayanGX14,https://doi.org/10.1137/130929461 +Zhiqiang Cai,Multilevel Iteration for Mixed Finite Element Systems with Penalty.,1993,14,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc14.html#CaiGP93,https://doi.org/10.1137/0914065 +John Strain,Fast Adaptive Methods for the Free-Space Heat Equation.,1994,15,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc15.html#Strain94,https://doi.org/10.1137/0915013 +Brett W. Bader,On the Performance of Tensor Methods for Solving Ill-Conditioned Problems.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#BaderS07,https://doi.org/10.1137/040607745 +Justin W. L. Wan,A Boundary Condition-Capturing Multigrid Approach to Irregular Boundary Problems.,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#WanL04,https://doi.org/10.1137/S1064827503428540 +Morten Bjørhus,The ODE Formulation of Hyperbolic PDEs Discretized by the Spectral Collocation Method.,1995,16,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc16.html#Bjorhus95,https://doi.org/10.1137/0916035 +Wei Zhu 0003,Segmentation with Depth: A Level Set Approach.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#ZhuCE06,https://doi.org/10.1137/050622213 +Lidia Aceto,Rational Approximation to the Fractional Laplacian Operator in Reaction-Diffusion Problems.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#AcetoN17,https://doi.org/10.1137/16M1064714 +Alfredo Buttari,Fine-Grained Multithreading for the Multifrontal QR Factorization of Sparse Matrices.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#Buttari13,https://doi.org/10.1137/110846427 +Ossian O'Reilly,Simulation of Wave Propagation Along Fluid-Filled Cracks Using High-Order Summation-by-Parts Operators and Implicit-Explicit Time Stepping.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#OReillyDN17,https://doi.org/10.1137/16M1097511 +Mark Lyon,A Fast Algorithm for Fourier Continuation.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#Lyon11,https://doi.org/10.1137/11082436X +Julianne Chung,An Efficient Iterative Approach for Large-Scale Separable Nonlinear Inverse Problems.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#ChungN10,https://doi.org/10.1137/080732213 +Charles S. Kenney,Small-Sample Statistical Condition Estimates for General Matrix Functions.,1994,15,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc15.html#KenneyL94,https://doi.org/10.1137/0915003 +Catherine Hurley,Analyzing High-Dimensional Data with Motion Graphics.,1990,11,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc11.html#HurleyB90,https://doi.org/10.1137/0911068 +Raul Borsche,Kinetic Layers and Coupling Conditions for Macroscopic Equations on Networks I: The Wave Equation.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#BorscheK18,https://doi.org/10.1137/17M1138364 +Steffen Börm,Construction of Data-Sparse H2-Matrices by Hierarchical Compression.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#Borm09,https://doi.org/10.1137/080720693 +I. Yu. Gejadze,On Analysis Error Covariances in Variational Data Assimilation.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#GejadzeDS08,https://doi.org/10.1137/07068744X +Jorge Delgado,A Corner Cutting Algorithm for Evaluating Rational B[e-acute]zier Surfaces and the Optimal Stability of the Basis.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#DelgadoP07,https://doi.org/10.1137/060649148 +Stefan M. Wild,ORBIT: Optimization by Radial Basis Function Interpolation in Trust-Regions.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#WildRS08,https://doi.org/10.1137/070691814 +Stefan Güttel,Zolotarev Quadrature Rules and Load Balancing for the FEAST Eigensolver.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#GuttelPTV15,https://doi.org/10.1137/140980090 +Michael Steinlechner,Riemannian Optimization for High-Dimensional Tensor Completion.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#Steinlechner16,https://doi.org/10.1137/15M1010506 +Lorenzo Pareschi,Central Runge-Kutta Schemes for Conservation Laws.,2005,26,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc26.html#PareschiPR05,https://doi.org/10.1137/S1064827503420696 +Bei Wang,A Particle-in-cell Method with Adaptive Phase-space Remapping for Kinetic Plasmas.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#WangMC11,https://doi.org/10.1137/100811805 +Chen-Hung Wu,Simulation of Osmotic Swelling by the Stochastic Immersed Boundary Method.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#WuFAP15,https://doi.org/10.1137/14098404X +J. Tryoen,Adaptive Anisotropic Spectral Stochastic Methods for Uncertain Scalar Conservation Laws.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#TryoenME12,https://doi.org/10.1137/120863927 +Achi Brandt,Multilevel Evaluation of Integral Transforms with Asymptotically Smooth Kernels.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#BrandtV98,https://doi.org/10.1137/S106482759528555X +Maziar Raissi,Numerical Gaussian Processes for Time-Dependent and Nonlinear Partial Differential Equations.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#RaissiPK18,https://doi.org/10.1137/17M1120762 +G. W. Stewart,Adjusting the Rayleigh Quotient in Semiorthogonal Lanczos Methods.,2002,24,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc24.html#Stewart02,https://doi.org/10.1137/S1064827501388984 +Brett W. Bader,Efficient MATLAB Computations with Sparse and Factored Tensors.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#BaderK07,https://doi.org/10.1137/060676489 +Ivo Babuska,Efficient Solution of Anisotropic Lattice Equations by the Recovery Method.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#BabuskaS08,https://doi.org/10.1137/070690717 +G. von Winckel,A Globalized Newton Method for the Accurate Solution of a Dipole Quantum Control Problem.,2009,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#WinckelBV09,https://doi.org/10.1137/09074961X +Yong-Kang Zhu,A New Distillation Algorithm for Floating-Point Summation.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#ZhuYZ05,https://doi.org/10.1137/030602009 +Francisco José Gaspar,A Simple and Efficient Segregated Smoother for the Discrete Stokes Equations.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#GasparNOR14,https://doi.org/10.1137/130920630 +Daniel Gross,GPU-Based Volume Reconstruction from Very Few Arbitrarily Aligned X-Ray Images.,2009,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#GrossHSSS09,https://doi.org/10.1137/080736739 +Michael Herty,Discrete-Velocity Models and Relaxation Schemes for Traffic Flows.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#HertyPS06,https://doi.org/10.1137/04061982X +Andreas Frommer,Restarted GMRES for Shifted Linear Systems.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#FrommerG98,https://doi.org/10.1137/S1064827596304563 +Alfonso Caiazzo,Projection Schemes for Fluid Flows through a Porous Interface.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#CaiazzoFGM11,https://doi.org/10.1137/100788124 +Xiaoliang Wan,Stochastic Solutions for the Two-Dimensional Advection-Diffusion Equation.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#WanXK04,https://doi.org/10.1137/S106482750342684X +Alexander A. Weiss,A Posteriori Error Estimator for Obstacle Problems.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#WeissW10,https://doi.org/10.1137/090773921 +Emmanuil H. Georgoulis,Multilevel Sparse Kernel-Based Interpolation.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#GeorgoulisLS13,https://doi.org/10.1137/110859610 +Musheng Wei,Numerical Computation of the Scattering Frequencies for a Cylindrically Symmetric Potential.,1993,14,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc14.html#WeiM93,https://doi.org/10.1137/0914019 +Kathryn Turner,Efficient High Accuracy Solutions with GMRES(m).,1992,13,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc13.html#TurnerW92,https://doi.org/10.1137/0913048 +S. H. Lui,Computation of Pseudospectra by Continuation.,1997,18,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc18.html#Lui97,https://doi.org/10.1137/S1064827594276035 +H. P. Flath,Fast Algorithms for Bayesian Uncertainty Quantification in Large-Scale Linear Inverse Problems Based on Low-Rank Partial Hessian Approximations.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#FlathWAHWG11,https://doi.org/10.1137/090780717 +Santiago Badia,Splitting Methods Based on Algebraic Factorization for Fluid-Structure Interaction.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#BadiaQQ08,https://doi.org/10.1137/070680497 +Weizhu Bao,A Fourth-Order Time-Splitting Laguerre-Hermite Pseudospectral Method for Bose-Einstein Condensates.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#BaoS05b,https://doi.org/10.1137/030601211 +Elisabeth Larsson,Stable Computation of Differentiation Matrices and Scattered Node Stencils Based on Gaussian Radial Basis Functions.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#LarssonLHF13,https://doi.org/10.1137/120899108 +Richard K. Beatson,Kernel-Based Methods for Vector-Valued Data with Correlated Components.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#BeatsonCS11,https://doi.org/10.1137/090758076 +Werner Römisch,Stepsize Control for Mean-Square Numerical Methods for Stochastic Differential Equations with Small Noise.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#RomischW06,https://doi.org/10.1137/030601429 +Weizhu Bao,A Uniformly and Optimally Accurate Method for the Zakharov System in the Subsonic Limit Regime.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#BaoS18,https://doi.org/10.1137/17M1113333 +Akil Narayan,Adaptive Leja Sparse Grid Constructions for Stochastic Collocation and High-Dimensional Approximation.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#NarayanJ14,https://doi.org/10.1137/140966368 +Valmor F. De Almeida,Domain Deformation Mapping: Application to Variational Mesh Generation.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#Almeida99,https://doi.org/10.1137/S1064827594274760 +Dionissios T. Hristopulos,Erratum: Spartan Gibbs Random Field Models for Geostatistical Applications.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#Hristopulos05,https://doi.org/10.1137/050624613 +Andreas Stathopoulos,Computing and Deflating Eigenvalues While Solving Multiple Right-Hand Side Linear Systems with an Application to Quantum Chromodynamics.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#StathopoulosO10,https://doi.org/10.1137/080725532 +Alex Pothen,A Mapping Algorithm for Parallel Sparse Cholesky Factorization.,1993,14,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc14.html#PothenS93,https://doi.org/10.1137/0914074 +Xiaobai Sun,The Generalized Newton Iteration forthe Matrix Sign Function.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#SunQ02,https://doi.org/10.1137/S1064827598348696 +John M. Dennis,Applying Automated Memory Analysis to Improve Iterative Algorithms.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#DennisJ07,https://doi.org/10.1137/060661533 +Ehsan Kharazmi,Petrov-Galerkin and Spectral Collocation Methods for Distributed Order Differential Equations.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#KharazmiZK17,https://doi.org/10.1137/16M1073121 +Yousef Saad,A Deflated Version of the Conjugate Gradient Algorithm.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#SaadYEG00,https://doi.org/10.1137/S1064829598339761 +Robert Michael Lewis,Model Problems for the Multigrid Optimization of Systems Governed by Differential Equations.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#LewisN05,https://doi.org/10.1137/S1064827502407792 +Zhiming Chen,An Adaptive Multilevel Method for Time-Harmonic Maxwell Equations with Singularities.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#ChenWZ07,https://doi.org/10.1137/050636012 +Alexander V. Shapeev,An Asymptotic Fitting Finite Element Method with Exponential Mesh Refinement for Accurate Computation of Corner Eddies in Viscous Flows.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#ShapeevL09,https://doi.org/10.1137/080719145 +Martin Weiser,State Trajectory Compression for Optimal Control with Parabolic PDEs.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#WeiserG12,https://doi.org/10.1137/11082172X +Bernd Brumm,A Fast Matrix-free Algorithm for Spectral Approximations to the Schrödinger Equation.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#Brumm15,https://doi.org/10.1137/140981022 +Dennis Denker,Edge Detection of Piecewise Smooth Functions from UnderSampled Fourier Data Using Variance Signatures.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#DenkerG17,https://doi.org/10.1137/16M1068013 +Pierre Degond,A Deterministic Approximation of Diffusion Equations Using Particles.,1990,11,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc11.html#DegondM90,https://doi.org/10.1137/0911018 +Curtis R. Vogel,Iterative Methods for Total Variation Denoising.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#VogelO96,https://doi.org/10.1137/0917016 +Eunjung Lee,FOSLL* for Nonlinear Partial Differential Equations.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#LeeMW15,https://doi.org/10.1137/140974353 +Laura Grigori,Parallel Symbolic Factorization for Sparse LU with Static Pivoting.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#GrigoriDL07,https://doi.org/10.1137/050638102 +Ulrich Rüde,Nested Newton Strategies for Energy-Corrected Finite Element Methods.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#RudeWW14,https://doi.org/10.1137/130935392 +William F. Spotz,Iterative and Parallel Performance of High-Order Compact Systems.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#SpotzC98,https://doi.org/10.1137/S106482759630379X +Jens Keiner,Computing with Expansions in Gegenbauer Polynomials.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#Keiner09,https://doi.org/10.1137/070703065 +Liping Zhang 0005,Homotopy for Rational Riccati Equations Arising in Stochastic Optimal Control.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#ZhangFCW15,https://doi.org/10.1137/140953204 +Zhong-Zhi Bai,On Inexact Preconditioners for Nonsymmetric Matrices.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#BaiN05,https://doi.org/10.1137/040604091 +Carsten W. Schulz-Rinne,Numerical Solution of the Riemann Problem for Two-Dimensional Gas Dynamics.,1993,14,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc14.html#Schulz-RinneCG93,https://doi.org/10.1137/0914082 +Yousef Saad,ILUM: A Multi-Elimination ILU Preconditioner for General Sparse Matrices.,1996,17,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc17.html#Saad96,https://doi.org/10.1137/0917054 +Yuanzhe Xi,Computing Partial Spectra with Least-Squares Rational Filters.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#XiS16,https://doi.org/10.1137/16M1061965 +Zhen Peng,A Scalable Nonoverlapping and Nonconformal Domain Decomposition Method for Solving Time-Harmonic Maxwell Equations in R3.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#PengL12,https://doi.org/10.1137/100817978 +Irene Livshits,Accuracy Properties of the Wave-Ray Multigrid Algorithm for Helmholtz Equations.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#LivshitsB06,https://doi.org/10.1137/040620461 +Stefan K. Stefanov,On DSMC Calculations of Rarefied Gas Flows with Small Number of Particles in Cells.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#Stefanov11,https://doi.org/10.1137/090751864 +Niclas Jansson,Framework for Massively Parallel Adaptive Finite Element Computational Fluid Dynamics on Tetrahedral Meshes.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#JanssonHJ12,https://doi.org/10.1137/100800683 +Alain Sei,A Family of Numerical Schemes for the Computation of Elastic Waves.,1995,16,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc16.html#Sei95,https://doi.org/10.1137/0916052 +Xin Zhang,Gradient Type Optimization Methods For Electronic Structure Calculations.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#ZhangZWZ14,https://doi.org/10.1137/130932934 +Tom Manteuffel,A Parallel Version of a Multigrid Algorithm for Isotropic Transport Equations.,1994,15,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc15.html#ManteuffelMMOY94,https://doi.org/10.1137/0915032 +Zhongqiang Zhang,A Recursive Sparse Grid Collocation Method for Differential Equations with White Noise.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#ZhangTRK14,https://doi.org/10.1137/130938906 +Jaw-Yen Yang,Kinetic Flux Vector Splitting Schemes for Ideal Quantum Gas Dynamics.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#YangHS07,https://doi.org/10.1137/050646664 +Martin Mönnigmann,Efficient Calculation of Bounds on Spectra of Hessian Matrices.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#Monnigmann08,https://doi.org/10.1137/070704186 +So-Hsiang Chou,Mixed Upwinding Covolume Methods on Rectangular Grids for Convection-Diffusion Problems.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#ChouKV99,https://doi.org/10.1137/S1064827597321052 +Joel E. Dendy Jr.,Grandchild of the Frequency Decomposition Multigrid Method.,1995,16,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc16.html#DendyT95,https://doi.org/10.1137/0916020 +Ankit Gupta,Unbiased Estimation of Parameter Sensitivities for Stochastic Chemical Reaction Networks.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#GuptaK13,https://doi.org/10.1137/120898747 +Jie Shen 0001,A Phase-Field Model and Its Numerical Approximation for Two-Phase Incompressible Flows with Different Densities and Viscosities.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#ShenY10,https://doi.org/10.1137/09075860X +Kazufumi Ito,A Numerical Study of an Augmented Lagrangian Method for the Estimation of Parameters in Elliptic Systems.,1991,12,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc12.html#ItoKK91,https://doi.org/10.1137/0912048 +Jeroen A. S. Witteveen,Simplex Stochastic Collocation with Random Sampling and Extrapolation for Nonhypercube Probability Spaces.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#WitteveenI12,https://doi.org/10.1137/100817504 +Matteo Semplice,Preconditioned Implicit Solvers for Nonlinear PDEs in Monument Conservation.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#Semplice10,https://doi.org/10.1137/100785417 +Andreas Mang,A Lagrangian Gauss-Newton-Krylov Solver for Mass- and Intensity-Preserving Diffeomorphic Image Registration.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#MangR17,https://doi.org/10.1137/17M1114132 +J. L. Hart,Efficient Computation of Sobol' Indices for Stochastic Models.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#HartAG17,https://doi.org/10.1137/16M106193X +Jun Wang,Recurrent Neural Networks for Computing Pseudoinverses of Rank-Deficient Matrices.,1997,18,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc18.html#Wang97,https://doi.org/10.1137/S1064827594267161 +David Colton,The Linear Sampling Method for Solving the Electromagnetic Inverse Scattering Problem.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#ColtonHM03,https://doi.org/10.1137/S1064827501390467 +Feng Liu,An Adaptive Grid Method and Its Application to Steady Euler Flow Calculations.,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#LiuJL98,https://doi.org/10.1137/S1064827596305738 +Ludwig W. Dorodnicyn,Kinetical-Consistent Algorithms for Simulation of Reactive Flows.,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#Dorodnicyn98,https://doi.org/10.1137/S1064827595288437 +Bernard Bialecki,Matrix Decomposition Algorithms in Orthogonal Spline Collocation for Separable Elliptic Boundary Value Problems.,1995,16,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc16.html#BialeckiF95,https://doi.org/10.1137/0916022 +Wayne H. Enright,Superconvergent Interpolants for the Collocation Solution of Boundary Value Ordinary Differential Equations.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#EnrightM99,https://doi.org/10.1137/S1064827597329114 +Thomas K. Huckle,Compact Fourier Analysis for Designing Multigrid Methods.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#Huckle08,https://doi.org/10.1137/070702564 +Kim-Chuan Toh,Calculation of Pseudospectra by the Arnoldi Iteration.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#TohT96,https://doi.org/10.1137/0917002 +Günther Of,Fast Evaluation of Volume Potentials in Boundary Element Methods.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#OfSU10,https://doi.org/10.1137/080744359 +Weiqiang Chen,An Augmented Lagrangian Method for and#8467*1-Regularized Optimization Problems with Orthogonality Constraints.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#ChenJY16,https://doi.org/10.1137/140988875 +Yang Cao 0001,A Posteriori Error Estimation and Global Error Control for Ordinary Differential Equations by the Adjoint Method.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#CaoP04,https://doi.org/10.1137/S1064827503420969 +Carsten Carstensen,Averaging Techniques for the A Posteriori BEM Error Control for a Hypersingular Integral Equation in Two Dimensions.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#CarstensenP07,https://doi.org/10.1137/050623930 +Lina Hemmingsson,Analysis of Semi-Toeplitz Preconditioners for First-Order PDEs.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#HemmingssonO96,https://doi.org/10.1137/0917005 +Artem Napov,An Efficient Multigrid Method for Graph Laplacian Systems II: Robust Aggregation.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#NapovN17,https://doi.org/10.1137/16M1071420 +Alfonso Bueno-Orovio,Spectral Methods for Partial Differential Equations in Irregular Domains: The Spectral Smoothed Boundary Method.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#Bueno-OrovioPF06,https://doi.org/10.1137/040607575 +Andrea Bonito,A Continuous Interior Penalty Method for Viscoelastic Flows.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#BonitoB08,https://doi.org/10.1137/060677033 +Peter N. Brown,Consistent Initial Condition Calculation for Differential-Algebraic Systems.,1998,19,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc19.html#BrownHP98,https://doi.org/10.1137/S1064827595289996 +Carlo Janna,Adaptive Pattern Research for Block FSAI Preconditioning.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#JannaF11,https://doi.org/10.1137/100810368 +Guido Kanschat,Preconditioning Methods for Local Discontinuous Galerkin Discretizations.,2003,25,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc25.html#Kanschat03,https://doi.org/10.1137/S1064827502410657 +René-Edouard Plessix,Waveform Inversion of Reflection Seismic Data for Kinematic Parameters by Local Optimization.,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#PlessixRC98,https://doi.org/10.1137/S1064827596311980 +Michael Jung,Implicit Extrapolation Methods for Variable Coefficient Problems.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#JungR98,https://doi.org/10.1137/S1064827595293557 +Xiaolin Fan,A Componentwise Convex Splitting Scheme for Diffuse Interface Models with Van der Waals and Peng-Robinson Equations of State.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#FanKQS17,https://doi.org/10.1137/16M1061552 +Ping Lin,An Iterative Perturbation Method for the Pressure Equation in the Simulation of Miscible Displacement in Porous Media.,1998,19,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc19.html#LinY98,https://doi.org/10.1137/S1064827595282258 +Xianliang Hu,Bivariate Splines of Various Degrees for Numerical Solution of Partial Differential Equations.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#HuHL07,https://doi.org/10.1137/060667207 +Saul Abarbanel,On the Removal of Boundary Errors Caused by Runge-Kutta Integration of Nonlinear Partial Differential Equations.,1996,17,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc17.html#AbarbanelGC96,https://doi.org/10.1137/S1064827595282520 +Alexander Kurganov,Semidiscrete Central-Upwind Schemes for Hyperbolic Conservation Laws and Hamilton-Jacobi Equations.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#KurganovNP01,https://doi.org/10.1137/S1064827500373413 +Bo Xiao,Parallel Algorithms for Nearest Neighbor Search Problems in High Dimensions.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#XiaoB16,https://doi.org/10.1137/15M1026377 +Jason E. Hicken,A Simplified and Flexible Variant of GCROT for Solving Nonsymmetric Linear Systems.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#HickenZ10,https://doi.org/10.1137/090754674 +Tarek P. Mathew,Domain Decomposition Operator Splittings for the Solution of Parabolic Equations.,1998,19,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc19.html#MathewPRW98,https://doi.org/10.1137/S1064827595288206 +Paul A. Milewski,A PseudoSpectral Procedure for the Solution of Nonlinear Wave Equations with Examples from Free-Surface Flows.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#MilewskiT99,https://doi.org/10.1137/S1064827597321532 +Assyr Abdulle,A Discontinuous Galerkin Reduced Basis Numerical Homogenization Method for Fluid Flow in Porous Media.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#AbdulleB17,https://doi.org/10.1137/15M1050690 +Peter A. Forsyth,Monotonicity Considerations for Saturated-Unsaturated Subsurface Flow.,1997,18,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc18.html#ForsythK97,https://doi.org/10.1137/S1064827594265824 +Ta-Kang Ku,On the Spectrum of a Family of Preconditioned Block Toeplitz Matrices.,1992,13,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc13.html#KuK92,https://doi.org/10.1137/0913056 +Dianne P. O'Leary,Near-Optimal Parameters for Tikhonov and Other Regularization Methods.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#OLeary01,https://doi.org/10.1137/S1064827599354147 +Christiane Helzel,A Modified Fractional Step Method for the Accurate Approximation of Detonation Waves.,2000,22,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc22.html#HelzelLW00,https://doi.org/10.1137/S1064827599357814 +Gabriel R. Barrenechea,Finite Element Eigenvalue Enclosures for the Maxwell Operator.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#BarrenecheaBB14,https://doi.org/10.1137/140957810 +Xin Liu 0001,Limited Memory Block Krylov Subspace Optimization for Computing Dominant Singular Value Decompositions.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#LiuWZ13,https://doi.org/10.1137/120871328 +Bruce Hendrickson,Improving the Run Time and Quality of Nested Dissection Ordering.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#HendricksonR98,https://doi.org/10.1137/S1064827596300656 +Yuanzhe Xi,A Rational Function Preconditioner For Indefinite Sparse Linear Systems.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#XiS17,https://doi.org/10.1137/16M1078409 +Dexuan Xie,A Fast Solver for a Nonlocal Dielectric Continuum Model.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#XieJBS12,https://doi.org/10.1137/110839254 +M. De Cicco,Nonlinear Stability of Compressible Thermal Lattice BGK Models.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#CiccoSB99,https://doi.org/10.1137/S1064827597319805 +Daniel M. Tartakovsky,Effective Properties of Random Composites.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#TartakovskyG04,https://doi.org/10.1137/S106482750342711X +Carsten H. Wolters,Numerical Mathematics of the Subtraction Method for the Modeling of a Current Dipole in EEG Source Reconstruction Using Finite Element Head Models.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#WoltersKMHGH07,https://doi.org/10.1137/060659053 +Xiaoying Dai,A Conjugate Gradient Method for Electronic Structure Calculations.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#DaiLZZ17,https://doi.org/10.1137/16M1072929 +Marsha J. Berger,A Simplified h-box Method for Embedded Boundary Grids.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#BergerH12,https://doi.org/10.1137/110829398 +Ang Li,Analysis of a Splitting Approach for the Parallel Solution of Linear Systems on GPU Cards.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#LiSN17,https://doi.org/10.1137/15M1039523 +Xiao-Chuan Cai,An Optimal Two-Level Overlapping Domain Decomposition Method for Elliptic Problems in Two and Three Dimensions.,1993,14,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc14.html#Cai93,https://doi.org/10.1137/0914014 +Drew P. Kouri,Inexact Objective Function Evaluations in a Trust-Region Algorithm for PDE-Constrained Optimization under Uncertainty.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#KouriHRW14,https://doi.org/10.1137/140955665 +Ian G. Grooms,Molecular Embedding via a Second Order Dissimilarity Parameterized Approach.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#GroomsLT09,https://doi.org/10.1137/070688547 +S. S. Ravindran,Real-Time Computational Algorithm for Optimal Control of an MHD Flow System.,2005,26,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc26.html#Ravindran05,https://doi.org/10.1137/S1064827502400534 +Peter Bastian,Load Balancing for Adaptive Multigrid Methods.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#Bastian98,https://doi.org/10.1137/S1064827596297562 +Chris J. Budd,The Finite Element Approximation of Semilinear Elliptic Partial Differential Equations with Critical Exponents in the Cube.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#BuddHW99,https://doi.org/10.1137/S1064827596312134 +Xiaoliang Wan,Multi-Element Generalized Polynomial Chaos for Arbitrary Probability Measures.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#WanK06,https://doi.org/10.1137/050627630 +Christian H. Bischof,Structure-Preserving and Rank-Revealing QR-Factorizations.,1991,12,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc12.html#BischofH91,https://doi.org/10.1137/0912073 +Gilles Chabert,A Priori Error Analysis and Spring Arithmetic.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#ChabertJ09,https://doi.org/10.1137/070696982 +Che-Rung Lee,Minimal Split Checkerboard Method for Exponentiating Sparse Matrices and Its Applications in Quantum Statistical Mechanics.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#Lee13,https://doi.org/10.1137/110838716 +G. W. Stewart,Block Gram--Schmidt Orthogonalization.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#Stewart08,https://doi.org/10.1137/070682563 +Mingchao Cai,Overlapping Schwarz Methods with a Standard Coarse Space for Almost Incompressible Linear Elasticity.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#CaiPW15,https://doi.org/10.1137/140981861 +Brett M. Averick,Computing Large Sparse Jacobian Matrices Using Automatic Differentiation.,1994,15,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc15.html#AverickMBCG94,https://doi.org/10.1137/0915020 +Tong Zhang 0001,On the Homotopy Method for Perturbed Symmetric Generalized Eigenvalue Problems.,1998,19,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc19.html#0001LG98,https://doi.org/10.1137/S1064827596299755 +Johnathan M. Bardsley,A Nonnegatively Constrained Convex Programming Method for Image Reconstruction.,2004,25,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc25.html#BardsleyV04,https://doi.org/10.1137/S1064827502410451 +Michael Pippig,PFFT: An Extension of FFTW to Massively Parallel Architectures.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#Pippig13,https://doi.org/10.1137/120885887 +Nicolas Crouseilles,Numerical Schemes for Kinetic Equations in the Anomalous Diffusion Limit. Part I: The Case of Heavy-Tailed Equilibrium.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#CrouseillesHL16,https://doi.org/10.1137/15M1011366 +M. J. Fengler,A Nonlinear Galerkin Scheme Involving Vector and Tensor Spherical Harmonics for Solving the Incompressible Navier-Stokes Equation on the Sphere.,2005,27,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc27.html#FenglerF05,https://doi.org/10.1137/040612567 +Braxton Osting,Minimal Dirichlet Energy Partitions for Graphs.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#OstingWO14,https://doi.org/10.1137/130934568 +Peter Deuflhard,Adaptive Discrete Galerkin Methods Applied to the Chemical Master Equation.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#DeuflhardHJW08,https://doi.org/10.1137/070689759 +Richard B. Pelz,Parallel Compact FFTs for Real Sequences.,1993,14,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc14.html#Pelz93,https://doi.org/10.1137/0914056 +Willy Govaerts,Numerical Continuation of Bifurcations of Limit Cycles in MATLAB.,2005,27,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc27.html#GovaertsKD05,https://doi.org/10.1137/030600746 +Thomas F. Coleman,Fast (Structured) Newton Computations.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#ColemanX08,https://doi.org/10.1137/070701005 +Eric C. Cyr,Approaches for Adjoint-Based A Posteriori Analysis of Stabilized Finite Element Methods.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#CyrSW14,https://doi.org/10.1137/120895822 +Achi Brandt,Accelerated Multigrid Convergence and High-Reynolds Recirculating Flows.,1993,14,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc14.html#BrandtY93,https://doi.org/10.1137/0914039 +Olivier du Merle,An Interior Point Algorithm for Minimum Sum-of-Squares Clustering.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#MerleHJM99,https://doi.org/10.1137/S1064827597328327 +Rachel N. Robey,Hash-Based Algorithms for Discretized Data.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#RobeyNR13,https://doi.org/10.1137/120873686 +Donald J. Estep,Generalized Green's Functions and the Effective Domain of Influence.,2005,26,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc26.html#EstepHL05,https://doi.org/10.1137/S1064827502416319 +Constantine Bekas,Computation of Smallest Eigenvalues using Spectral Schur Complements.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#BekasS05,https://doi.org/10.1137/040603528 +Cosmina Hogea,Brain--Tumor Interaction Biophysical Models for Medical Image Registration.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#HogeaDB08,https://doi.org/10.1137/07069208X +Gil Ariel,Parareal Multiscale Methods for Highly Oscillatory Dynamical Systems.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#ArielKT16,https://doi.org/10.1137/15M1011044 +Mark B. Flegg,Analysis of the Two-Regime Method on Square Meshes.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#FleggCZE14,https://doi.org/10.1137/130915844 +Carlos J. S. Alves,The Method of Fundamental Solutions Applied to Some Inverse Eigenproblems.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#AlvesA13,https://doi.org/10.1137/110860380 +Leo G. Rebholz,Improved Accuracy in Algebraic Splitting Methods for Navier-Stokes Equations.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#RebholzX17,https://doi.org/10.1137/16M1061424 +William D. Elliott,Fast Fourier Transform Accelerated Fast Multipole Algorithm.,1996,17,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc17.html#ElliottB96,https://doi.org/10.1137/S1064827594264259 +Rémi Abgrall,High-Order Preserving Residual Distribution Schemes for Advection-Diffusion Scalar Problems on Arbitrary Grids.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#AbgrallSR14,https://doi.org/10.1137/12090143X +Jörg Liesen,Least Squares Residuals and Minimal Residual Methods.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#LiesenRS02,https://doi.org/10.1137/S1064827500377988 +Erding Luo,Pseudospectral vs. Finite Difference Methods for Initial Value Problems with Discontinuous Coefficient.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#LuoK98,https://doi.org/10.1137/S1064827596301698 +Jo Simoens,Waveform Relaxation with Fast Direct Methods as Preconditioner.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#SimoensV00,https://doi.org/10.1137/S1064827598338986 +Pierre Hansen,New Branch-and-Bound Rules for Linear Bilevel Programming.,1992,13,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc13.html#HansenJS92,https://doi.org/10.1137/0913069 +Nejib Smaoui,A Model for the Unstable Manifold of the Bursting Behavior in the 2D Navier-Stokes Flow.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#Smaoui01,https://doi.org/10.1137/S1064827599355013 +Francesc Aràndiga,Stability Through Synchronization in Nonlinear Multiscale Transformations.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#ArandigaD07,https://doi.org/10.1137/050630817 +Milana Gataric,A Practical Guide to the Recovery of Wavelet Coefficients from Fourier Measurements.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#GataricP16,https://doi.org/10.1137/15M1018630 +Volker John,A Finite Element Variational Multiscale Method for the Navier-Stokes Equations.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#JohnK05,https://doi.org/10.1137/030601533 +Anthony M. Castaldo,Reducing Floating Point Error in Dot Product Using the Superblock Family of Algorithms.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#CastaldoWC08,https://doi.org/10.1137/070679946 +Eric Joseph Hall,Computable Error Estimates for Finite Element Approximations of Elliptic Partial Differential Equations with Rough Stochastic Data.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#HallHSST16,https://doi.org/10.1137/15M1044266 +Huangxin Chen,Multilevel Preconditioner with Stable Coarse Grid Corrections for the Helmholtz Equation.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#ChenWX15,https://doi.org/10.1137/13091840X +Wai-Sun Don,Hybrid Compact-WENO Finite Difference Scheme with Conjugate Fourier Shock Detection Algorithm for Hyperbolic Conservation Laws.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#DonGLW16,https://doi.org/10.1137/15M1021520 +Georgios Akrivis,Numerical Approximation of Blow-Up of Radially Symmetric Solutions of the Nonlinear Schrödinger Equation.,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#AkrivisDKM03,https://doi.org/10.1137/S1064827597332041 +Gregorio Quintana-Ortí,Efficient Solution Of The Rank-Deficient Linear Least Squares Problem.,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#Quintana-OrtiQP98,https://doi.org/10.1137/S1064827596304836 +Benjamin Müller,A First-Order System Least Squares Method for Hyperelasticity.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#MullerSSS14,https://doi.org/10.1137/130937573 +Gene H. Golub,On Solving Block-Structured Indefinite Linear Systems.,2003,24,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc24.html#GolubG03,https://doi.org/10.1137/S1064827500375096 +Tycho L. van Noorden,A Broyden Rank p+1 Update Continuation Method with Subspace Iteration.,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#NoordenLB04,https://doi.org/10.1137/S1064827501399985 +Pierre-Henri Maire,A Cell-Centered Lagrangian Scheme for Two-Dimensional Compressible Flow Problems.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#MaireABO07,https://doi.org/10.1137/050633019 +Ziqing Xie,On Finding Multiple Solutions to a Singularly Perturbed Neumann Problem.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#XieYZ12,https://doi.org/10.1137/100810411 +Volker Naulin,Accuracy of Spectral and Finite Difference Schemes in 2D Advection Problems.,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#NaulinN03,https://doi.org/10.1137/S1064827502405070 +Nail A. Gumerov,Fast Radial Basis Function Interpolation via Preconditioned Krylov Iteration.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#GumerovD07,https://doi.org/10.1137/060662083 +Clark R. Dohrmann,Interpolation Operators for Algebraic Multigrid by Local Optimization.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#Dohrmann07,https://doi.org/10.1137/06066103X +G. V. Bicknell,The Equations of Motion of Particles in Smoothed Particle Hydrodynamics.,1991,12,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc12.html#Bicknell91,https://doi.org/10.1137/0912064 +Maka Karalashvili,Identification of Transport Coefficient Models in Convection-Diffusion Equations.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#KaralashviliGMMR11,https://doi.org/10.1137/09077360X +R. I. Saye,High-Order Quadrature Methods for Implicitly Defined Surfaces and Volumes in Hyperrectangles.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#Saye15,https://doi.org/10.1137/140966290 +Igor E. Kaporin,On a Class of Nonlinear Equation Solvers Based on the Residual Norm Reduction over a Sequence of Affine Subspaces.,1995,16,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc16.html#KaporinA95,https://doi.org/10.1137/0916015 +Ray S. Tuminaro,A Matrix Dependent/Algebraic Multigrid Approach for Extruded Meshes with Applications to Ice Sheet Modeling.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#TuminaroPTSP16,https://doi.org/10.1137/15M1040839 +Stefan Kunis,Stability Results for Scattered Data Interpolation by Trigonometric Polynomials.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#KunisP07,https://doi.org/10.1137/060665075 +Markus Wabro,AMGe - Coarsening Strategies and Application to the Oseen Equations.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#Wabro06,https://doi.org/10.1137/040610350 +Chad Lieberman,Nonlinear Goal-Oriented Bayesian Inference: Application to Carbon Capture and Storage.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#LiebermanW14,https://doi.org/10.1137/130928315 +Diego Rossinelli,Multicore/Multi-GPU Accelerated Simulations of Multiphase Compressible Flows Using Wavelet Adapted Grids.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#RossinelliHSK11,https://doi.org/10.1137/100795930 +Satoru Iwata 0001,Primal-Dual Combinatorial Relaxation Algorithms for the Maximum Degree of Subdeterminants.,1996,17,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc17.html#IwataMS96,https://doi.org/10.1137/0917064 +Zi-Cai Li,The Schwarz Alternating Method for Singularity Problems.,1994,15,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc15.html#Li94,https://doi.org/10.1137/0915065 +Ruipeng Li,Divide and Conquer Low-Rank Preconditioners for Symmetric Matrices.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#LiS13,https://doi.org/10.1137/120872735 +Panayot S. Vassilevski,A Block-Diagonal Algebraic Multigrid Preconditioner for the Brinkman Problem.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#VassilevskiV13,https://doi.org/10.1137/120882846 +Huibin Chang,Phase Retrieval from Incomplete Magnitude Information via Total Variation Regularization.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#ChangLNZ16,https://doi.org/10.1137/15M1029357 +John Guckenheimer,Computing Periodic Orbits and their Bifurcations with Automatic Differentiation.,2000,22,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc22.html#GuckenheimerM00,https://doi.org/10.1137/S1064827599359278 +James Vogel,Superfast Divide-and-Conquer Method and Perturbation Analysis for Structured Eigenvalue Solutions.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#VogelXCB16,https://doi.org/10.1137/15M1018812 +Patrick H. Pisciuneri,An Irregularly Portioned FDF Simulator.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#PisciuneriYSG13,https://doi.org/10.1137/130911512 +Catherine Elizabeth Powell,An Efficient Reduced Basis Solver for Stochastic Galerkin Matrix Equations.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#PowellSS17,https://doi.org/10.1137/15M1032399 +Wanho Lee,Simulations of Valveless Pumping in an Open Elastic Tube.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#LeeJL09,https://doi.org/10.1137/08071613X +Binghuai Lin,Efficient Characterization of Uncertain Model Parameters with a Reduced-Order Ensemble Kalman Filter.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#LinM14,https://doi.org/10.1137/130910415 +Illia Horenko,Finite Element Approach to Clustering of Multidimensional Time Series.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#Horenko10,https://doi.org/10.1137/080715962 +John Burkardt,Centroidal Voronoi Tessellation-Based Reduced-Order Modeling of Complex Systems.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#BurkardtGL06,https://doi.org/10.1137/5106482750342221x +Tahir Malas,Incomplete LU Preconditioning with the Multilevel Fast Multipole Algorithm for Electromagnetic Scattering.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#MalasG07,https://doi.org/10.1137/060659107 +Majid K. Vakilzadeh,Using Approximate Bayesian Computation by Subset Simulation for Efficient Posterior Assessment of Dynamic State-Space Model Classes.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#VakilzadehBA18,https://doi.org/10.1137/16M1090466 +Svend Tollak Munkejord,A MUSTA Scheme for a Nonconservative Two-Fluid Model.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#MunkejordEF09,https://doi.org/10.1137/080719273 +Andrew V. Knyazev,Principal Angles between Subspaces in an A-Based Scalar Product: Algorithms and Perturbation Estimates.,2002,23,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc23.html#KnyazevA02,https://doi.org/10.1137/S1064827500377332 +Florent Renac,Time Implicit High-Order Discontinuous Galerkin Method with Reduced Evaluation Cost.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#RenacMC12,https://doi.org/10.1137/100816845 +Zheng-Jian Bai,A Dual Optimization Approach to Inverse Quadratic Eigenvalue Problems with Partial Eigenstructure.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#BaiCS07,https://doi.org/10.1137/060656346 +William McLean,Fast Summation by Interval Clustering for an Evolution Equation with Memory.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#McLean12,https://doi.org/10.1137/120870505 +Nicole Spillane,An Adaptive MultiPreconditioned Conjugate Gradient Algorithm.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#Spillane16,https://doi.org/10.1137/15M1028534 +Zhiming Chen,On the Efficiency of Adaptive Finite Element Methods for Elliptic Problems with Discontinuous Coefficients.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#ChenD02,https://doi.org/10.1137/S1064827501383713 +Levi Lustman,Solution of Linear Systems of Ordinary Differential Equations on an INTEL Hypercube.,1991,12,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc12.html#LustmanNK91,https://doi.org/10.1137/0912081 +Christophe Chalons,High-Order Numerical Schemes for One-Dimensional Nonlocal Conservation Laws.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#ChalonsGV18,https://doi.org/10.1137/16M110825X +Pieter Ghysels,Hiding Global Communication Latency in the GMRES Algorithm on Massively Parallel Machines.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#GhyselsAMV13,https://doi.org/10.1137/12086563X +Maxim A. Olshanskii,An Augmented Lagrangian Approach to Linearized Problems in Hydrodynamic Stability.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#OlshanskiiB08,https://doi.org/10.1137/070691851 +Mingyou Huang,Computation of Invariant Tori by the Fourier Methods.,1997,18,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc18.html#HuangKM97,https://doi.org/10.1137/S1064827593258826 +Bilal Hatipoglu,Parallel Triangular Mesh Refinement by Longest Edge Bisection.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#HatipogluO15,https://doi.org/10.1137/140973840 +Troy D. Butler,A Posteriori Error Analysis of Stochastic Differential Equations Using Polynomial Chaos Expansions.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#ButlerDW11,https://doi.org/10.1137/100795760 +Thorsten Grahs,Image Processing for Numerical Approximations of Conservation Laws: Nonlinear Anisotropic Artificial Dissipation.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#Grahs0S02,https://doi.org/10.1137/S106482759935143X +Márcia A. Inda,On the Efficient Parallel Computation of Legendre Transforms.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#IndaBM01,https://doi.org/10.1137/S1064827599355864 +Matthias Petschow,Improved Accuracy and Parallelism for MRRR-Based Eigensolvers - A Mixed Precision Approach.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#PetschowQB14,https://doi.org/10.1137/130911561 +Robert R. Nourgaliev,Marker Redistancing/Level Set Method for High-Fidelity Implicit Interface Tracking.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#NourgalievKM10,https://doi.org/10.1137/080727439 +James Sneyd,Computation of Geodesic Trajectories on Tubular Surfaces.,1990,11,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc11.html#SneydP90,https://doi.org/10.1137/0911014 +Zhonghua Qiao,Two-Phase Fluid Simulation Using a Diffuse Interface Model with Peng-Robinson Equation of State.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#QiaoS14,https://doi.org/10.1137/130933745 +Roland Griesse,Numerical Sensitivity Analysis for the Quantity of Interest in PDE-Constrained Optimization.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#GriesseV07,https://doi.org/10.1137/050637273 +Petter E. Bjørstad,Timely Communication: Efficient Algorithms for Solving a Fourth-Order Equation with the Spectral-Galerkin Method.,1997,18,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc18.html#BjorstadT97,https://doi.org/10.1137/S1064827596298233 +Fabio Dercole,BPCONT: An Auto Driver for the Continuation of Branch Points of Algebraic and Boundary-Value Problems.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#Dercole08,https://doi.org/10.1137/070692546 +Jörg Liesen,GMRES Convergence Analysis for a Convection-Diffusion Model Problem.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#LiesenS05,https://doi.org/10.1137/S1064827503430746 +Peter Benner,Frequency-Limited Balanced Truncation with Low-Rank Approximations.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#BennerKS16,https://doi.org/10.1137/15M1030911 +Jennifer A. Scott,Preconditioning of Linear Least Squares by Robust Incomplete Factorization for Implicitly Held Normal Equations.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#ScottT16,https://doi.org/10.1137/16M105890X +Barry Lee,First-Order System Least-Squares for the Helmholtz Equation.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#LeeMMR00,https://doi.org/10.1137/S1064827598339773 +Richard B. Pember,Numerical Methods for Hyperbolic Conservation Laws with Stiff Relaxation II. Higher-Order Godunov Methods.,1993,14,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc14.html#Pember93,https://doi.org/10.1137/0914052 +Tahar Amari,Computing Beltrami Fields.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#AmariBB09,https://doi.org/10.1137/070700942 +Matthias Bolten,Fourier Analysis of Periodic Stencils in Multigrid Methods.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#BoltenR18,https://doi.org/10.1137/16M1073959 +Eberhard Bänsch,Numerical Treatment of the Navier-Stokes Equations with Slip Boundary Condition.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#BanschH00,https://doi.org/10.1137/S1064827598343991 +Charles S. Kenney,Polar Decomposition and Matrix Sign Function Condition Estimates.,1991,12,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc12.html#KenneyL91,https://doi.org/10.1137/0912027 +Jie Shen 0001,Müntz-Galerkin Methods and Applications to Mixed Dirichlet-Neumann Boundary Value Problems.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#ShenW16,https://doi.org/10.1137/15M1052391 +Thomas A. Manteuffel,A Fast Multigrid Algorithm for Isotropic Transport Problems. II: With Absorption.,1996,17,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc17.html#ManteuffelMMY96,https://doi.org/10.1137/S1064827593251435 +M. Hadjinicolaou,Asymptotic Solution of Stiff PDEs with the CSP Method: The Reaction Diffusion Equation.,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#HadjinicolaouG98,https://doi.org/10.1137/S1064827596303995 +Achi Brandt,On Recombining Iterants in Multigrid Algorithms and Problems with Small Islands.,1995,16,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc16.html#BrandtM95,https://doi.org/10.1137/0916002 +Kelly Black,A Spectral Element Technique with a Local Spectral Basis.,1997,18,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc18.html#Black97,https://doi.org/10.1137/S1064827594268713 +Tim N. Phillips,Multidomain Collocation Methods for the Stream Function Formulation of the Navier-Stokes Equations.,1995,16,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc16.html#PhillipsM95,https://doi.org/10.1137/0916046 +Christophe Chalons,Numerical Approximation of a Macroscopic Model of Pedestrian Flows.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#Chalons07,https://doi.org/10.1137/050641211 +Noel Chalmers,Relaxing the CFL Number of the Discontinuous Galerkin Method.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#ChalmersKQ14,https://doi.org/10.1137/130927504 +Fuhui Fang,Hierarchical Orthogonal Matrix Generation and Matrix-Vector Multiplications in Rigid Body Simulations.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#FangHHMZ18,https://doi.org/10.1137/17M1117744 +Wansheng Wang,A Posteriori Error Analysis for Crank-Nicolson-Galerkin Type Methods for Reaction-Diffusion Equations with Delay.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#WangRSZ18,https://doi.org/10.1137/17M1143514 +Peter Benner,Computing All or Some Eigenvalues of Symmetric H-Matrices.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#BennerM12,https://doi.org/10.1137/100815323 +Gabriel J. Lord,Computation of Homoclinic Orbits in Partial Differential Equations: An Application to Cylindrical Shell Buckling.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#LordCH99,https://doi.org/10.1137/S1064827597321647 +Ilse C. F. Ipsen,A Note on Preconditioning Nonsymmetric Matrices.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#Ipsen01,https://doi.org/10.1137/S1064827500377435 +J. C. Diaz,Domain Decomposition and Schur Complement Approaches to Coupling the Well Equations in Reservoir Simulation.,1995,16,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc16.html#DiazS95,https://doi.org/10.1137/0916003 +Randall Bramley,Row Projection Methods for Large Nonsymmetric Linear Systems.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#BramleyS92,https://doi.org/10.1137/0913010 +Fabio Di Benedetto,Analysis of Preconditioning Techniques for Ill-Conditioned Toeplitz Matrices.,1995,16,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc16.html#Benedetto95,https://doi.org/10.1137/0916041 +Guohua Zhou,Fourier Analysis of Multigrid Methods on Hexagonal Grids.,2009,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#ZhouF09,https://doi.org/10.1137/070709566 +Hans De Sterck,A Self-Learning Algebraic Multigrid Method for Extremal Singular Triplets and Eigenpairs.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#Sterck12a,https://doi.org/10.1137/110823316 +Maria Cristina Recchioni,The Use of Wavelets in the Operator Expansion Method for Time-Dependent Acoustic Obstacle Scattering.,2004,25,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc25.html#RecchioniZ04,https://doi.org/10.1137/S1064827502393016 +Arta A. Jamshidi,Skew-Radial Basis Function Expansions for Empirical Modeling.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#JamshidiK10,https://doi.org/10.1137/08072293X +Stefania Bellavia,Efficient Preconditioner Updates for Shifted Linear Systems.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#BellaviaSSM11,https://doi.org/10.1137/100803419 +Mohsen Zayernouri,Discontinuous Spectral Element Methods for Time- and Space-Fractional Advection Equations.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#ZayernouriK14a,https://doi.org/10.1137/130940967 +Loyce Adams,A Comparison of Algebraic Multigrid and Geometric Immersed Interface Multigrid Methods for Interface Problems.,2005,26,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc26.html#AdamsC05,https://doi.org/10.1137/S1064827503425262 +Michael K. Schneider,Krylov Subspace Estimation.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#SchneiderW01,https://doi.org/10.1137/S1064827599357292 +Lixin Liu,Computation and Continuation of Homoclinic and Heteroclinic Orbits with Arclength Parameterization.,1997,18,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc18.html#LiuMR97,https://doi.org/10.1137/S1064827595288218 +Rémi Abgrall,Residual Distribution Schemes for Conservation Laws via Adaptive Quadrature.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#AbgrallB03,https://doi.org/10.1137/S106482750138592X +Chao Zhang,A New Active Set Method For Nonnegative Matrix Factorization.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#ZhangJX14,https://doi.org/10.1137/130930212 +Shawn W. Walker,FELICITY: A Matlab/C++ Toolbox for Developing Finite Element Methods and Simulation Modeling.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#Walker18,https://doi.org/10.1137/17M1128745 +Isabelle Charpentier,Checkpointing Schemes for Adjoint Codes: Application to the Meteorological Model Meso-NH.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#Charpentier01,https://doi.org/10.1137/S1064827598343735 +Wei Guo 0004,An Adaptive Multiresolution Discontinuous Galerkin Method for Time-Dependent Transport Equations in Multidimensions.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#GuoC17,https://doi.org/10.1137/16M1083190 +James Baglama,Augmented Implicitly Restarted Lanczos Bidiagonalization Methods.,2005,27,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc27.html#BaglamaR05,https://doi.org/10.1137/04060593X +Efstratios Gallopoulos,Efficient Solution of Parabolic Equations by Krylov Approximation Methods.,1992,13,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc13.html#GallopoulosS92,https://doi.org/10.1137/0913071 +Grady I. Lemoine,Three-Dimensional Mapped-Grid Finite Volume Modeling of Poroelastic-Fluid Wave Propagation.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#Lemoine16,https://doi.org/10.1137/130934866 +Jirí Horák,Numerical Variational Methods Applied to Cylinder Buckling.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#HorakLP08,https://doi.org/10.1137/060675241 +Françoise Tisseur,A Parallel Divide and Conquer Algorithm for the Symmetric Eigenvalue Problem on Distributed Memory Architectures.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#TisseurD99,https://doi.org/10.1137/S1064827598336951 +Dave Higdon,Combining Field Data and Computer Simulations for Calibration and Prediction.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#HigdonKCCR04,https://doi.org/10.1137/S1064827503426693 +Misha Elena Kilmer,Recycling Subspace Information for Diffuse Optical Tomography.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#KilmerS06,https://doi.org/10.1137/040610271 +Nicholas I. M. Gould,On the Solution of Equality Constrained Quadratic Programming Problems Arising in Optimization.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#GouldHN01,https://doi.org/10.1137/S1064827598345667 +J. Tinsley Oden,MultiScale Modeling of Physical Phenomena: Adaptive Control of Models.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#OdenPRB06,https://doi.org/10.1137/050632488 +Derya B. özyurt,Cheap Second Order Directional Derivatives of Stiff ODE Embedded Functionals.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#OzyurtB05,https://doi.org/10.1137/030601582 +Timothy P. Chartier,Sensitivity and Stability of Ranking Vectors.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#ChartierKLP11,https://doi.org/10.1137/090772745 +Jesse Chan,Weight-Adjusted Discontinuous Galerkin Methods: Wave Propagation in Heterogeneous Media.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#ChanHW17a,https://doi.org/10.1137/16M1089186 +Jianxian Qiu,Finite Difference WENO Schemes with Lax-Wendroff-Type Time Discretizations.,2003,24,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc24.html#QiuS03,https://doi.org/10.1137/S1064827502412504 +Yin-Liang Huang,A Null Space Free Jacobi-Davidson Iteration for Maxwell's Operator.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#HuangHLW15,https://doi.org/10.1137/140954714 +Penghang Yin,Minimization of and#8467*1-2 for Compressed Sensing.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#YinLHX15,https://doi.org/10.1137/140952363 +Jérôme Dubois,Accelerating the Explicitly Restarted Arnoldi Method with GPUs Using an Autotuned Matrix Vector Product.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#DuboisCP11,https://doi.org/10.1137/10079906X +Ernst P. Stephan,Domain Decomposition Algorithms for Indefinite Hypersingular Integral Equations: The h and p Versions.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#Stephan098,https://doi.org/10.1137/S1064827595296161 +Dana A. Knoll,Enhanced Nonlinear Iterative Techniques Applied to a Nonequilibrium Plasma Flow.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#KnollM98,https://doi.org/10.1137/S1064827596304034 +Kevin Carlberg,Preserving Lagrangian Structure in Nonlinear Model Reduction with Application to Structural Dynamics.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#CarlbergTB15,https://doi.org/10.1137/140959602 +Marco Caliari,The Leja Method Revisited: Backward Error Analysis for the Matrix Exponential.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#CaliariKOR16,https://doi.org/10.1137/15M1027620 +Marielba Rojas,A Trust-Region Approach to the Regularization of Large-Scale Discrete Forms of Ill-Posed Problems.,2002,23,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc23.html#RojasS02,https://doi.org/10.1137/S1064827500378167 +William D. Henshaw,A High-Order Accurate Parallel Solver for Maxwell's Equations on Overlapping Grids.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#Henshaw06,https://doi.org/10.1137/050644379 +James G. Nagy,Fast Inverse QR Factorization for Toeplitz Matrices.,1993,14,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc14.html#Nagy93,https://doi.org/10.1137/0914070 +Richard K. Beatson,Which Cubic Spline should One Use?,1992,13,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc13.html#BeatsonC92,https://doi.org/10.1137/0913059 +Lingfei Li,Option Pricing in Some Non-Lévy Jump Models.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#LiZ16,https://doi.org/10.1137/15M1048926 +J. R. Maddison,Optimal Constrained Interpolation in Mesh-Adaptive Finite Element Modeling.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#MaddisonH17,https://doi.org/10.1137/15M102054X +Mario Arioli,Preconditioning Linear Least-Squares Problems by Identifying a Basis Matrix.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#ArioliD15,https://doi.org/10.1137/140975358 +Chris R. Johnson 0001,Special Issue on Computational Science and Engineering.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#JohnsonKR08,https://doi.org/10.1137/SJOCE3000030000006000vii000001 +Chunxiong Zheng,Numerical Solution of the Nonlocal Diffusion Equation on the Real Line.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#ZhengHDZ17,https://doi.org/10.1137/16M1090107 +Anita T. Layton,Modeling Water Transport across Elastic Boundaries Using an Explicit Jump Method.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#Layton06,https://doi.org/10.1137/050642198 +Julian Becerra-Sagredo,Moments Preserving and high-resolution Semi-Lagrangian Advection Scheme.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#Becerra-Sagredo16,https://doi.org/10.1137/140990619 +Radu Serban,The Effect of Problem Perturbations on Nonlinear Dynamical Systems and their Reduced-Order Models.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#SerbanHP07,https://doi.org/10.1137/050625278 +Tao Zhou,Multivariate Discrete Least-Squares Approximations with a New Type of Collocation Grid.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#ZhouNX14,https://doi.org/10.1137/130950434 +Alexandre M. Tartakovsky,Hybrid Simulations of Reaction-Diffusion Systems in Porous Media.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#TartakovskyTSM08,https://doi.org/10.1137/070691097 +William T. Taitano,Development of a Consistent and Stable Fully Implicit Moment Method for Vlasov-Ampère Particle in Cell (PIC) System.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#TaitanoKCC13,https://doi.org/10.1137/120881385 +Jingzhi Li,Strengthened Linear Sampling Method with a Reference Ball.,2009,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#LiLZ09,https://doi.org/10.1137/080734170 +Marc Boileau,Robust Numerical Coupling of Pressure and Pressureless Gas Dynamics Equations for Eulerian Spray DNS and LES.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#BoileauCM15,https://doi.org/10.1137/130945740 +Henk A. van der Vorst,Copper Mountain Special Issue on Iterative Methods.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#Vorst03,https://doi.org/10.1137/SJOCE3000025000002000vii000001 +Binghuai Lin,Real-Time Ensemble Control with Reduced-Order Modeling.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#LinM14a,https://doi.org/10.1137/130921878 +Braxton Osting,Minimal Convex Combinations of Sequential Laplace-Dirichlet Eigenvalues.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#OstingK13,https://doi.org/10.1137/120881865 +Arnold Reusken,On the Approximate Cyclic Reduction Preconditioner.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#Reusken99,https://doi.org/10.1137/S1064827597331655 +Seongjai Kim,Multigrid Simulation for High-Frequency Solutions of the Helmholtz Problem in Heterogeneous Media.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#KimK02,https://doi.org/10.1137/S1064827501385426 +Yoshihiro Kanno,Contact Analysis of Cable Networks by Using Second-Order Cone Programming.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#KannoO06,https://doi.org/10.1137/S1064827503431946 +Lihua Shen,A Defect Correction Scheme for Finite Element Eigenvalues with Applications to Quantum Chemistry.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#ShenZ06,https://doi.org/10.1137/040614013 +Lulu Liu,A Note on Adaptive Nonlinear Preconditioning Techniques.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#LiuKK18,https://doi.org/10.1137/17M1128502 +C. Ponce,A Nonlinear Algebraic Multigrid Framework for the Power Flow Equations.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#PonceBV18,https://doi.org/10.1137/16M1109965 +R. E. Beardmore,A Numerical Bifurcation Analysis of the Ornstein-Zernike Equation with Hypernetted Chain Closure.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#BeardmorePB07,https://doi.org/10.1137/060650659 +Amy Nicole Langville,A Reordering for the PageRank Problem.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#LangvilleM06,https://doi.org/10.1137/040607551 +Daniel Osei-Kuffuor,A Scalable O(N) Algorithm for Large-Scale Parallel First-Principles Molecular Dynamics Simulations.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#Osei-KuffuorF14,https://doi.org/10.1137/140956476 +Barbara Zubik-Kowal,Waveform Relaxation for Functional-Differential Equations.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#Zubik-KowalV99,https://doi.org/10.1137/S1064827598332916 +Per-Olof Persson,Newton-GMRES Preconditioning for Discontinuous Galerkin Discretizations of the Navier--Stokes Equations.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#PerssonP08,https://doi.org/10.1137/070692108 +Philippe Hoch,Hamilton-Jacobi Equations on a Manifold and Applications to Grid Generation or Refinement.,2002,23,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc23.html#HochR02,https://doi.org/10.1137/S1064827599360182 +Todd Arbogast,A Locally Conservative Eulerian-Lagrangian Method for a Model Two-Phase Flow Problem in a One-Dimensional Porous Medium.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#ArbogastHR12,https://doi.org/10.1137/090778079 +Ananth Grama,Improving Error Bounds for Multipole-Based Treecodes.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#GramaSS00,https://doi.org/10.1137/S1064827598339128 +Anita Mayo,Fast Parallel Iterative Solution of Poisson's and the Biharmonic Equations on Irregular Regions.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#MayoG92,https://doi.org/10.1137/0913006 +Stefan Henn,A Multigrid Method for a Fourth-Order Diffusion Equation with Application to Image Processing.,2005,27,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc27.html#Henn05,https://doi.org/10.1137/040611124 +Ramsharan Rangarajan,Provably Robust Directional Vertex Relaxation for Geometric Mesh Optimization.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#RangarajanL17,https://doi.org/10.1137/16M1089101 +Bogdan Vioreanu,Spectra of Multiplication Operators as a Numerical Tool.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#VioreanuR14,https://doi.org/10.1137/110860082 +Karl Meerbergen,Locking and Restarting Quadratic Eigenvalue Solvers.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#Meerbergen01,https://doi.org/10.1137/S106482759935174X +Jun Wang,An Adaptive Fast Gauss Transform in Two Dimensions.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#WangG18,https://doi.org/10.1137/17M1159865 +Giuseppe Alì,Index-Aware Model Order Reduction for Linear Index-2 DAEs with Constant Coefficients.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#AliBST13,https://doi.org/10.1137/120894415 +M. Munteanu,A Scalable Newton--Krylov--Schwarz Method for the Bidomain Reaction-Diffusion System.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#MunteanuPS09,https://doi.org/10.1137/08074355X +Pieter Ghysels,An Efficient Multicore Implementation of a Novel HSS-Structured Multifrontal Solver Using Randomized Sampling.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#GhyselsLRWN16,https://doi.org/10.1137/15M1010117 +Ann S. Almgren,On the Use of Higher-Order Projection Methods for Incompressible Turbulent Flow.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#AlmgrenABM13,https://doi.org/10.1137/110829386 +Kenneth L. Ho,A Fast Direct Solver for Structured Linear Systems by Recursive Skeletonization.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#HoG12,https://doi.org/10.1137/120866683 +Jan Janssen,Multigrid Waveform Relaxation on Spatial Finite Element Meshes: The Discrete-Time Case.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#JanssenV96,https://doi.org/10.1137/0917011 +Raymond H. Chan,Fast Iterative Solvers for Toeplitz-Plus-Band Systems.,1993,14,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc14.html#ChanN93,https://doi.org/10.1137/0914061 +Michele Benzi,A Robust Preconditioner with Low Memory Requirements for Large Sparse Least Squares Problems.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#BenziT03,https://doi.org/10.1137/S106482750240649X +Xudong Yao,A Minimax Method for Finding Multiple Critical Points in Banach Spaces and Its Application to Quasi-linear Elliptic PDE.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#YaoZ05,https://doi.org/10.1137/S1064827503430503 +Manuel Chiachio,Approximate Bayesian Computation by Subset Simulation.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#ChiachioBCR14,https://doi.org/10.1137/130932831 +Ching-Tien Ho,Optimizing Tridiagonal Solvers for Alternating Direction Methods on Boolean Cube Multiprocessors.,1990,11,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc11.html#HoJ90,https://doi.org/10.1137/0911032 +Stephen Joe,Constructing Sobol Sequences with Better Two-Dimensional Projections.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#JoeK08,https://doi.org/10.1137/070709359 +Jie Du,A High Order Stable Conservative Method for Solving Hyperbolic Conservation Laws on Arbitrarily Distributed Point Clouds.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#DuS16,https://doi.org/10.1137/16M1060583 +Christiane Lemieux,Randomized Polynomial Lattice Rules for Multivariate Integration and Simulation.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#LemieuxL03,https://doi.org/10.1137/S1064827501393782 +Oliver Lass,Model Order Reduction Techniques with a Posteriori Error Control for Nonlinear Robust Optimization Governed by Partial Differential Equations.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#LassU17,https://doi.org/10.1137/16M108269X +Peter R. Brune,Unstructured Geometric Multigrid in Two and Three Dimensions on Complex and Graded Meshes.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#BruneKS13,https://doi.org/10.1137/110827077 +Robert B. Schnabel,A New Modified Cholesky Factorization.,1990,11,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc11.html#SchnabelE90,https://doi.org/10.1137/0911064 +Markku Verkama,Random Relaxation of Fixed-Point Iteration.,1996,17,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc17.html#Verkama96,https://doi.org/10.1137/0917058 +Emmanuel Gobet,Rare Event Simulation Using Reversible Shaking Transformations.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#GobetL15,https://doi.org/10.1137/14098418X +Henson Van Emden,Multilevel Image Reconstruction with Natural Pixels.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#EmdenLMR96,https://doi.org/10.1137/0917014 +Alberto Donoso,Numerical Simulations in 3D Heat Conduction: Minimizing the Quadratic Mean Temperature Gradient by an Optimality Criteria Method.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#Donoso06,https://doi.org/10.1137/060650453 +Qiya Hu,Substructuring Preconditioners for the Systems Arising from Plane Wave Discretization of Helmholtz Equations.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#HuZ16,https://doi.org/10.1137/151003040 +Beong In Yun,An Extended Sigmoidal Transformation Technique for Evaluating Weakly Singular Integrals without Splitting the Integration Interval.,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#Yun03,https://doi.org/10.1137/S1064827502414606 +Alessandro Lanza,A Generalized Krylov Subspace Method for and#8467*p-ℓ*q Minimization.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#LanzaMRS15,https://doi.org/10.1137/140967982 +M. J. Baines,Multidimensional Least Squares Fluctuation Distribution Schemes with Adaptive Mesh Movement for Steady Hyperbolic Equations.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#BainesLH02,https://doi.org/10.1137/S1064827500370202 +Sander Rhebergen,Three-Field Block Preconditioners for Models of Coupled Magma/Mantle Dynamics.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#RhebergenWWK15,https://doi.org/10.1137/14099718X +Xi-Le Zhao,Total Variation Structured Total Least Squares Method for Image Restoration.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#ZhaoWZHN13,https://doi.org/10.1137/130915406 +Axel Klawonn,A Parallel Implementation of Dual-Primal FETI Methods for Three-Dimensional Linear Elasticity Using a Transformation of Basis.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#KlawonnR06,https://doi.org/10.1137/050624364 +Doron Levy,A Fourth-Order Central WENO Scheme for Multidimensional Hyperbolic Systems of Conservation Laws.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#LevyPR02,https://doi.org/10.1137/S1064827501385852 +Jun Zhu,A New Type of Modified WENO Schemes for Solving Hyperbolic Conservation Laws.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#ZhuQ17,https://doi.org/10.1137/16M1087291 +Yossi Gil,Automated Transformations for PDE Systems with Application to Multigrid Solvers.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#GilGOY03,https://doi.org/10.1137/S1064827501385943 +Steven F. Ashby,A Comparison of Adaptive Chebyshev and Least Squares Polynomial Preconditioning for Hermitian Positive Definite Linear Systems.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#AshbyMO92,https://doi.org/10.1137/0913001 +Paul G. Constantine,Erratum: Active Subspace Methods in Theory and Practice: Applications to Kriging Surfaces.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#ConstantineDW14a,https://doi.org/10.1137/140983598 +Elias Jarlebring,An Inverse Iteration Method for Eigenvalue Problems with Eigenvector Nonlinearities.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#JarlebringKM14,https://doi.org/10.1137/130910014 +Kent-André Mardal,Order-Optimal Preconditioners for Implicit Runge-Kutta Schemes Applied to Parabolic PDEs.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#MardalNS07,https://doi.org/10.1137/05064093X +Rosemary A. Renaut,Hybrid and Iteratively Reweighted Regularization by Unbiased Predictive Risk and Weighted GCV for Projected Systems.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#RenautVA17,https://doi.org/10.1137/15M1037925 +Richard Liska,Comparison of Several Difference Schemes on 1D and 2D Test Problems for the Euler Equations.,2003,25,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc25.html#LiskaW03,https://doi.org/10.1137/S1064827502402120 +Yingfei Wang,Nested-Batch-Mode Learning and Stochastic Optimization with An Application to Sequential MultiStage Testing in Materials Science.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#WangRBMP15,https://doi.org/10.1137/140971117 +Yuxin Chen,Accelerated Dimension-Independent Adaptive Metropolis.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#ChenKLL16,https://doi.org/10.1137/15M1026432 +Karol Mikula,Evolution of Convex Plane Curves Describing Anisotropic Motions of Phase Interfaces.,1996,17,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc17.html#MikulaK96,https://doi.org/10.1137/S1064827594261905 +Jaime Carpio,"Anisotropic ""Goal-Oriented"" Mesh Adaptivity for Elliptic Problems.",2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#CarpioPB13,https://doi.org/10.1137/120874606 +Alexandra Tcheng,A Fast-marching Algorithm for Nonmonotonically Evolving Fronts.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#TchengN16,https://doi.org/10.1137/15M1017302 +Lawrence F. Shampine,Diagnosing Stiffness for Runge-Kutta Methods.,1991,12,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc12.html#Shampine91,https://doi.org/10.1137/0912015 +Scott MacLachlan,Modification and Compensation Strategies for Threshold-based Incomplete Factorizations.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#MacLachlanOS12,https://doi.org/10.1137/110834986 +K. Andrew Cliffe,Adaptive Discontinuous Galerkin Methods for Eigenvalue Problems Arising in Incompressible Fluid Flows.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#CliffeHH10,https://doi.org/10.1137/080731918 +Hanieh Mirzaee,Smoothness-Increasing Accuracy-Conserving Filters for Discontinuous Galerkin Solutions over Unstructured Triangular Meshes.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#MirzaeeKRK13,https://doi.org/10.1137/120874059 +Hideaki Kaneko,Wavelet Collocation Method and Multilevel Augmentation Method for Hammerstein Equations.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#KanekoNN12,https://doi.org/10.1137/100809246 +Benjamin Aymard,A Numerical Method for Transport Equations with Discontinuous Flux Functions: Application to Mathematical Modeling of Cell Dynamics.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#AymardCCP13,https://doi.org/10.1137/120904238 +Mathea J. Vuik,Automated Parameters for Troubled-Cell Indicators Using Outlier Detection.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#VuikR16,https://doi.org/10.1137/15M1018393 +Olaf Steinbach,Adaptive Boundary Element Methods Based on Computational Schemes for Sobolev Norms.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#Steinbach00,https://doi.org/10.1137/S1064827599352999 +Michael Günther 0005,Index Concepts for Linear Mixed Systems of Differential-Algebraic and Hyperbolic-Type Equations.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#0005W01,https://doi.org/10.1137/S1064827598349057 +Weiqun Zhang,BoxLib with Tiling: An Adaptive Mesh Refinement Software Framework.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#ZhangADNSU16,https://doi.org/10.1137/15M102616X +Qianshun Chang,Acceleration Methods for Total Variation-Based Image Denoising.,2003,25,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc25.html#ChangC03,https://doi.org/10.1137/S106482750241534X +L. Forestier-Coste,A Finite Volume Preserving Scheme on Nonuniform Meshes and for Multidimensional Coalescence.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#Forestier-CosteM12,https://doi.org/10.1137/110847998 +Hans De Sterck,A Nonlinear GMRES Optimization Algorithm for Canonical Tensor Decomposition.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#Sterck12,https://doi.org/10.1137/110835530 +Erik S. Van Vleck,Numerical Shadowing Near Hyperbolic Trajectories.,1995,16,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc16.html#Vleck95,https://doi.org/10.1137/0916068 +Ping Lin,The Numerical Solution of a Challenging Class of Turning Point Problems.,2003,25,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc25.html#LinO03,https://doi.org/10.1137/S1064827503394442 +Bo Zhang,An FFT-based Algorithm for Efficient Computation of Green's Functions for the Helmholtz and Maxwell's Equations in Periodic Domains.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#ZhangZ18,https://doi.org/10.1137/18M1165621 +Axel Klawonn,Adaptive Coarse Spaces for FETI-DP in Three Dimensions.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#KlawonnKR16,https://doi.org/10.1137/15M1049610 +Jian Zhang,Numerical Studies of Discrete Approximations to the Allen--Cahn Equation in the Sharp Interface Limit.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#ZhangD09,https://doi.org/10.1137/080738398 +Mo Mu,Numerical Methods for Simulating Ginzburg-Landau Vortices.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#MuDC98,https://doi.org/10.1137/S1064827595295076 +Michael P. Friedlander,Global and Finite Termination of a Two-Phase Augmented Lagrangian Filter Method for General Quadratic Programs.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#FriedlanderL08,https://doi.org/10.1137/060669930 +Oguz Kaya,Parallel Candecomp/Parafac Decomposition of Sparse Tensors Using Dimension Trees.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#KayaU18,https://doi.org/10.1137/16M1102744 +Robert Scheichl,Decoupling Three-Dimensional Mixed Problems Using Divergence-Free Finite Elements.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#Scheichl02,https://doi.org/10.1137/S1064827500375886 +Stefano Zampini,Multilevel Balancing Domain Decomposition by Constraints Deluxe Algorithms with Adaptive Coarse Spaces for Flow in Porous Media.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#ZampiniT17,https://doi.org/10.1137/16M1080653 +Bor Plestenjak,Roots of Bivariate Polynomial Systems via Determinantal Representations.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#PlestenjakH16,https://doi.org/10.1137/140983847 +Ulrich Elsner,The Anderson Model of Localization: A Challenge for Modern Eigenvalue Methods.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#ElsnerMMRS99,https://doi.org/10.1137/S1064827598332217 +Lu Zhou 0001,Residual Smoothing Techniques for Iterative Methods.,1994,15,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc15.html#ZhouW94,https://doi.org/10.1137/0915021 +Weizhu Bao,A Generalized-Laguerre--Fourier--Hermite Pseudospectral Method for Computing the Dynamics of Rotating Bose--Einstein Condensates.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#BaoLS09,https://doi.org/10.1137/080739811 +Jinn-Liang Liu,On Weak Residual Error Estimation.,1996,17,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc17.html#Liu96,https://doi.org/10.1137/S1064827593249587 +Clark R. Dohrmann,A Preconditioner for Substructuring Based on Constrained Energy Minimization.,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#Dohrmann03,https://doi.org/10.1137/S1064827502412887 +Peter N. Brown,A Moment-Parity Multigrid Preconditioner for the First-Order System Least-Squares Formulation of the Boltzmann Transport Equation.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#BrownLM03,https://doi.org/10.1137/S1064827502407172 +Piotr P. Grinevich,An Iterative Method for the Stokes-Type Problem with Variable Viscosity.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#GrinevichO09,https://doi.org/10.1137/08744803 +Leonard J. Gray,Direct Evaluation of Hypersingular Galerkin Surface Integrals.,2004,25,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc25.html#GrayGK04,https://doi.org/10.1137/S1064827502405999 +Thomas F. Coleman,The Efficient Computation of Structured Gradients using Automatic Differentiation.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#ColemanJ99,https://doi.org/10.1137/S1064827597320794 +Kai Bittner,Fast Algorithms for Periodic Spline Wavelets on Sparse Grids.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#Bittner99,https://doi.org/10.1137/S1064827596309098 +Jorge Sastre,New Scaling-Squaring Taylor Algorithms for Computing the Matrix Exponential.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#SastreIDR15,https://doi.org/10.1137/090763202 +Ronald B. Morgan,Restarting the Nonsymmetric Lanczos Algorithm for Eigenvalues and Linear Equations Including Multiple Right-Hand Sides.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#MorganN11,https://doi.org/10.1137/100799265 +Angel Tocino,Weak Second Order Conditions for Stochastic Runge-Kutta Methods.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#TocinoV02,https://doi.org/10.1137/S1064827501387814 +Zlatko Drmac,Quadrature-Based Vector Fitting for Discretized H2 Approximation.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#DrmacGB15,https://doi.org/10.1137/140961511 +Roland Griesmaier,Inverse Source Problems for the Helmholtz Equation and the Windowed Fourier Transform II.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#GriesmaierHR13,https://doi.org/10.1137/130908658 +Dan Stefanica,A Numerical Study of FETI Algorithms for Mortar Finite Element Methods.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#Stefanica01,https://doi.org/10.1137/S1064827500378829 +Adam W. Bojanczyk,The Procrustes Problem for Orthogonal Stiefel Matrices.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#BojanczykL99,https://doi.org/10.1137/S106482759630992X +Luca Dieci,Solution of the Systems Associated with Invariant Tori Approximation. II: Multigrid Methods.,1994,15,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc15.html#DieciB94,https://doi.org/10.1137/0915083 +Grady I. Lemoine,Finite Volume Modeling of Poroelastic-Fluid Wave Propagation with Mapped Grids.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#LemoineO14,https://doi.org/10.1137/130920824 +Steve Schaffer,A Semicoarsening Multigrid Method for Elliptic Partial Differential Equations with Highly Discontinuous and Anisotropic Coefficients.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#Schaffer98,https://doi.org/10.1137/S1064827595281587 +Quan Deng,A Fast Treecode for Multiquadric Interpolation with Varying Shape Parameters.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#DengD12,https://doi.org/10.1137/110836225 +Natalie N. Beams,A Finite Element Based P3M Method for N-Body Problems.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#BeamsOF16,https://doi.org/10.1137/15M1014644 +C. R. Prins,A Monge-Ampère-Solver for Free-Form Reflector Design.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#PrinsBRJT14,https://doi.org/10.1137/130938876 +William J. Morokoff,Quasi-Random Sequences and Their Discrepancies.,1994,15,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc15.html#MorokoffC94,https://doi.org/10.1137/0915077 +Bruno Costa 0002,Time Marching Multilevel Techniques for Evolutionary Dissipative Problems.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#CostaDGT01,https://doi.org/10.1137/S1064827598339967 +Rongjie Lai,Solving Partial Differential Equations on Manifolds From Incomplete Interpoint Distance.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#LaiL17,https://doi.org/10.1137/17M1111176 +Christian Clason,A Duality-Based Splitting Method for l1-TV Image Restoration with Automatic Regularization Parameter Choice.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#ClasonJK10,https://doi.org/10.1137/090768217 +Akil Narayan,Constructing Nested Nodal Sets for Multivariate Polynomial Interpolation.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#NarayanX13,https://doi.org/10.1137/12089613X +Bernard Bialecki,Matrix Decomposition Algorithms for Modified Spline Collocation for Helmholtz Problems.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#BialeckiFK03,https://doi.org/10.1137/S106482750139964X +Habib Ammari,MUSIC-Type Electromagnetic Imaging of a Collection of Small Three-Dimensional Inclusions.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#AmmariILP07,https://doi.org/10.1137/050640655 +Stefan Goedecker,Remark on Algorithms to Find Roots of Polynomials.,1994,15,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc15.html#Goedecker94,https://doi.org/10.1137/0915064 +Jonathan Feinberg,Multivariate Polynomial Chaos Expansions with Dependent Variables.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#FeinbergEL18,https://doi.org/10.1137/15M1020447 +Christophe Airiau,Stabilization and Best Actuator Location for the Navier-Stokes Equations.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#AiriauBDFRW17,https://doi.org/10.1137/16M107503X +Timo Betcke,Overresolving in the Laplace Domain for Convolution Quadrature Methods.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#BetckeSS17,https://doi.org/10.1137/16M106474X +Sebastian Garreis,Constrained Optimization with Low-Rank Tensors and Applications to Parametric Problems with PDEs.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#GarreisU17,https://doi.org/10.1137/16M1057607 +H. Cho,Adaptive Discontinuous Galerkin Method for Response-Excitation PDF Equations.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#ChoVK13,https://doi.org/10.1137/12088896X +Igor N. Konshin,ILU Preconditioners for Nonsymmetric Saddle-Point Matrices with Application to the Incompressible Navier-Stokes Equations.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#KonshinOV15,https://doi.org/10.1137/15M1012311 +Axel Klawonn,An Optimal Preconditioner for a Class of Saddle Point Problems with a Penalty Term.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#Klawonn98a,https://doi.org/10.1137/S1064827595279575 +Laurent Gosse,Numerical High-Field Limits in Two-Stream Kinetic Models and 1D Aggregation Equations.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#GosseV16,https://doi.org/10.1137/151004653 +Sergio Blanes,Adaptive Geometric Integrators for Hamiltonian Problems with Approximate Scale Invariance.,2005,26,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc26.html#BlanesB05,https://doi.org/10.1137/S1064827502416630 +Fanhai Zeng,Numerical Algorithms for Time-Fractional Subdiffusion Equation with Second-Order Accuracy.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#ZengLLT15,https://doi.org/10.1137/14096390X +Eduardo F. D'Azevedo,An ADI-Like Preconditioner for Boltzmann Transport.,2005,26,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc26.html#DAzevedoMML05,https://doi.org/10.1137/S1064827503424013 +Erik S. Van Vleck,Numerical Shadowing Using Componentwise Bounds and a Sharper Fixed Point Result.,2000,22,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc22.html#Vleck00,https://doi.org/10.1137/S1064827599353452 +Luc Giraud,A Robust Criterion for the Modified Gram-Schmidt Algorithm with Selective Reorthogonalization.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#GiraudL03,https://doi.org/10.1137/S106482750340783X +Amit Bhave,Partially Stirred Reactor Model: Analytical Solutions and Numerical Convergence Study of a PDF/Monte Carlo Method.,2004,25,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc25.html#BhaveK04,https://doi.org/10.1137/S1064827502411328 +Michael Schäfer,Numerical Solution of the Time-Dependent Axisymmetric Boussinesq Equations on Processor Arrays.,1992,13,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc13.html#Schafer92,https://doi.org/10.1137/0913078 +Nikola D. Peric,Sensitivity Analysis of Uncertain Dynamic Systems Using Set-Valued Integration.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#PericVC17,https://doi.org/10.1137/16M1102719 +Michael Jung,Implicit Extrapolation Methods for Multilevel Finite Element Computations.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#JungR96,https://doi.org/10.1137/0917012 +Xiao-Chuan Cai,The Use of Pointwise Interpolation in Domain Decomposition Methods with Nonnested Meshes.,1995,16,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc16.html#Cai95,https://doi.org/10.1137/0916016 +Tony F. Chan,On Two Variants of an Algebraic Wavelet Preconditioner.,2002,24,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc24.html#ChanC02,https://doi.org/10.1137/S1064827501391436 +Howard C. Elman,Preconditioning for the Steady-State Navier-Stokes Equations with Low Viscosity.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#Elman99,https://doi.org/10.1137/S1064827596312547 +Nicholas J. Higham,Computing the Action of Trigonometric and Hyperbolic Matrix Functions.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#HighamK17,https://doi.org/10.1137/16M1084225 +Y. Huang,Methods for Pricing American Options under Regime Switching.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#HuangFL11,https://doi.org/10.1137/110820920 +Luke N. Olson,A General Interpolation Strategy for Algebraic Multigrid Using Energy Minimization.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#OlsonST11,https://doi.org/10.1137/100803031 +Pamela M. Burrage,A Variable Stepsize Implementation for Stochastic Differential Equations.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#BurrageB03,https://doi.org/10.1137/S1064827500376922 +Xiaoqun Wang,Enhancing Quasi-Monte Carlo Methods by Exploiting Additive Approximation for Problems in Finance.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#Wang12,https://doi.org/10.1137/100814597 +Richard Baltensperger,Spectral Differencing with a Twist.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#BaltenspergerT03,https://doi.org/10.1137/S1064827501388182 +Olivier P. Le Maître,Natural Convection in a Closed Cavity under Stochastic Non-Boussinesq Conditions.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#MaitreRDNGK04,https://doi.org/10.1137/S1064827503422853 +Rodrigo B. Platte,Using Global Interpolation to Evaluate the Biot-Savart Integral for Deformable Elliptical Gaussian Vortex Elements.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#PlatteRM09,https://doi.org/10.1137/070696027 +Nhu Nguyen,The Regular Fourier Matrices and Nonuniform Fast Fourier Transforms.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#NguyenL99,https://doi.org/10.1137/S1064827597325712 +Beong In Yun,A New Sigmoidal Transformation for Weakly Singular Integrals in the Boundary Element Method.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#YunK03,https://doi.org/10.1137/S1064827501396191 +Zhijian He,Good Path Generation Methods in Quasi-Monte Carlo for Pricing Financial Derivatives.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#HeW14,https://doi.org/10.1137/13091556X +Andrea Cangiani,hp-Version Space-Time Discontinuous Galerkin Methods for Parabolic Problems on Prismatic Meshes.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#CangianiDG17,https://doi.org/10.1137/16M1073285 +Michael R. Osborne,What is the Covariance Analog of the Paige and Saunders Information Filter?,1991,12,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc12.html#OsborneP91,https://doi.org/10.1137/0912072 +Mohsen Zayernouri,Fractional Spectral Collocation Method.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#ZayernouriK14,https://doi.org/10.1137/130933216 +Klaudius Scheufele,Robust Multisecant Quasi-Newton Variants for Parallel Fluid-Structure Simulations - and Other Multiphysics Applications.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#ScheufeleM17,https://doi.org/10.1137/16M1082020 +Virgile Rostand,Kernel Analysis of the Discretized Finite Difference and Finite Element Shallow-Water Models.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#RostandRC08,https://doi.org/10.1137/070695198 +Caroline Gatti-Bono,A Second-Order Accurate Conservative Front-Tracking Method in One Dimension.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#Gatti-BonoCT10,https://doi.org/10.1137/070704083 +Hans De Sterck,Special Section on Two Themes: CSE Software and Big Data in CSE.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#SterckJM16,https://doi.org/10.1137/16N974188 +Stephanie Friedhoff,Local Fourier Analysis of Space-Time Relaxation and Multigrid Schemes.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#FriedhoffMB13,https://doi.org/10.1137/120881361 +Pierre-Henri Cocquet,How Large a Shift is Needed in the Shifted Helmholtz Preconditioner for its Effective Inversion by Multigrid?,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#CocquetG17,https://doi.org/10.1137/15M102085X +Silvia Bonettini,A Scaled Gradient Projection Method for Bayesian Learning in Dynamical Systems.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#BonettiniCP15,https://doi.org/10.1137/140973529 +Kenneth O. Kortanek,Vector-Supercomputer Experiments with the Primal Affine Linear Programming Scaling Algorithm.,1993,14,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc14.html#Kortanek93,https://doi.org/10.1137/0914018 +Iain S. Duff,The Augmented Block Cimmino Distributed Method.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#DuffGRZ15,https://doi.org/10.1137/140961444 +Sverker Holmgren,Semicirculant Preconditioners for First-Order Partial Differential Equations.,1994,15,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc15.html#HolmgrenO94,https://doi.org/10.1137/0915027 +Martyn R. Field,Optimizing a Parallel Conjugate Gradient Solver.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#Field98,https://doi.org/10.1137/S1064827596302205 +Santiago Badia,Adaptive Finite Element Simulation of Incompressible Flows by Hybrid Continuous-Discontinuous Galerkin Formulations.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#BadiaB13,https://doi.org/10.1137/120880732 +Daehyun Wee,Convergence Characteristics and Computational Cost of Two Algebraic Kernels in Vortex Methods with a Tree-Code Algorithm.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#WeeMSG09,https://doi.org/10.1137/080726872 +Kristian B. ølgaard,Automated Code Generation for Discontinuous Galerkin Methods.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#OlgaardLW08,https://doi.org/10.1137/070710032 +James R. McCombs,Iterative Validation of Eigensolvers: A Scheme for Improving the Reliability of Hermitian Eigenvalue Solvers.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#McCombsS06,https://doi.org/10.1137/050627617 +R. D. Eisenhut,Comparing Averaged-Out Utilities of Probability Trees Having Random Parameters.,1991,12,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc12.html#EisenhutDRW91,https://doi.org/10.1137/0912060 +Thomas A. Manteuffel,A Fast Multigrid Algorithm for Isotropic Transport Problems I: Pure Scattering.,1995,16,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc16.html#ManteuffelMMOY95,https://doi.org/10.1137/0916038 +Gang Zou,Robust Variance Reduction for Random Walk Methods.,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#ZouS04,https://doi.org/10.1137/S1064827503424025 +P. Hauret,Energy-Consistent CoRotational Schemes for Frictional Contact Problems.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#HauretSWW08,https://doi.org/10.1137/070687827 +Anthony P. Austin,Computing Eigenvalues of Real Symmetric Matrices with Rational Filters in Real Arithmetic.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#AustinT15,https://doi.org/10.1137/140984129 +Pierre-Alain Gremaud,Computation of Nonclassical Solutions to Hamilton-Jacobi Problems.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#GremaudI99,https://doi.org/10.1137/S1064827597327668 +James Lu,A Quasi-Minimal Residual Method for Simultaneous Primal-Dual Solutions and Superconvergent Functional Estimates.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#LuD03,https://doi.org/10.1137/S1064827501390625 +Suely Oliveira,Exact Prediction of QR Fill-In by Row-Merge Trees.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#Oliveira01,https://doi.org/10.1137/S1064827599333965 +Mardochée Magolu monga Made,Ordering Strategies for Modified Block Incomplete Factorizations.,1995,16,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc16.html#Made95,https://doi.org/10.1137/0916024 +Manuel Baumann,Nested Krylov Methods for Shifted Linear Systems.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#BaumannG15,https://doi.org/10.1137/140979927 +H. W. Tam,One-Stage Parallel Methods for the Numerical Solution of Ordinary Differential Equations.,1992,13,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc13.html#Tam92,https://doi.org/10.1137/0913061 +Anders Logg,Multi-Adaptive Galerkin Methods for ODEs I.,2003,24,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc24.html#Logg03,https://doi.org/10.1137/S1064827501389722 +Hans Petter Langtangen,Stochastic Breakthrough Time Analysis of an Enhanced Oil Recovery Process.,1992,13,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc13.html#Langtangen92,https://doi.org/10.1137/0913079 +Zhisong Fu,A Fast Iterative Method for Solving the Eikonal Equation on Triangulated Surfaces.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#FuJPKW11,https://doi.org/10.1137/100788951 +P. J. Young,A Reformulation of the Partial Least Squares Regression Algorithm.,1994,15,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc15.html#Young94,https://doi.org/10.1137/0915015 +Yongxin Li,A Minimax Method for Finding Multiple Critical Points and Its Applications to Semilinear PDEs.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#LiZ01,https://doi.org/10.1137/S1064827599365641 +Michael K. Ng,A Fast Algorithm for Deblurring Models with Neumann Boundary Conditions.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#NgCT99,https://doi.org/10.1137/S1064827598341384 +Michael K. Ng,Weighted Toeplitz Regularized Least Squares Computation for Image Restoration.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#NgP14,https://doi.org/10.1137/120888776 +Xiaoxiao Chen,An Efficient Method for Uncertainty Propagation using Fuzzy Sets.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#ChenHX15,https://doi.org/10.1137/140997385 +Tamás Terlaky,Computing Maximum Likelihood Estimators of Convex Density Functions.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#TerlakyV98,https://doi.org/10.1137/S1064827595286578 +Philippe Gaudreau,Computation of Tail Probabilities via Extrapolation Methods and Connection with Rational and Padé Approximants.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#GaudreauSS12,https://doi.org/10.1137/100803778 +Behnam Hashemi,Chebfun in Three Dimensions.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#HashemiT17,https://doi.org/10.1137/16M1083803 +Daniel Appelö,A Fourth-Order Accurate Embedded Boundary Method for the Wave Equation.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#AppeloP12,https://doi.org/10.1137/09077223X +Mario Arioli,Use of the P4 and P5 Algorithms for In-Core Factorization of Sparse Matrices.,1990,11,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc11.html#ArioliDGR90,https://doi.org/10.1137/0911053 +Karl Rupp,ViennaCL - Linear Algebra Library for Multi- and Many-Core Architectures.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#RuppTRWMGJS16,https://doi.org/10.1137/15M1026419 +Jianyu Huang,Strassen's Algorithm for Tensor Contraction.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#HuangMG18,https://doi.org/10.1137/17M1135578 +Sheng-Gwo Chen,Discrete Conservation Laws on Evolving Surfaces.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#ChenW16,https://doi.org/10.1137/151003453 +D. Fournier,Discontinuous Galerkin Discretization and hp-Refinement for the Resolution of the Neutron Transport Equation.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#FournierHT13,https://doi.org/10.1137/110844581 +Sandra May,Two-Dimensional Slope Limiters for Finite Volume Schemes on Non-Coordinate-Aligned Meshes.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#MayB13,https://doi.org/10.1137/120875624 +Vladimir Druskin,Solution of the Time-Domain Inverse Resistivity Problem in the Model Reduction Framework Part I. One-Dimensional Problem with SISO Data.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#DruskinSZ13,https://doi.org/10.1137/110852607 +Jo Simoens,A Stabilized Lifting Construction of Wavelets on Irregular Meshes on the Interval.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#SimoensV03,https://doi.org/10.1137/S1064827502376571 +Jari Toivanen,Numerical Valuation of European and American Options under Kou's Jump-Diffusion Model.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#Toivanen08,https://doi.org/10.1137/060674697 +Arif M. Khan,Efficient Approximation Algorithms for Weighted b-Matching.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#KhanPPSSMHD16,https://doi.org/10.1137/15M1026304 +Kolja Brix,Refinement and Connectivity Algorithms for Adaptive Discontinuous Galerkin Methods.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#BrixMV11,https://doi.org/10.1137/090767418 +G. W. Stewart,The QLP Approximation to the Singular Value Decomposition.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#Stewart99,https://doi.org/10.1137/S1064827597319519 +Roland W. Freund,An Implementation of the Look-Ahead Lanczos Algorithm for Non-Hermitian Matrices.,1993,14,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc14.html#FreundGN93,https://doi.org/10.1137/0914009 +Benjamin Ganis,A Global Jacobian Method for Mortar Discretizations of Nonlinear Porous Media Flows.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#GanisJPWY14,https://doi.org/10.1137/130931837 +Paul Kuberry,An Optimization-Based Approach for Elliptic Problems with Interfaces.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#KuberryBP17,https://doi.org/10.1137/16M1084547 +Michael Carley,Numerical Quadratures for Singular and Hypersingular Integrals in Boundary Element Methods.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#Carley07,https://doi.org/10.1137/060666093 +Eric C. Cyr,A New Approximate Block Factorization Preconditioner for Two-Dimensional Incompressible (Reduced) Resistive MHD.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#CyrSTPC13,https://doi.org/10.1137/12088879X +Sergio Blanes,Composition Methods for Differential Equations with Processing.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#BlanesCM06,https://doi.org/10.1137/030601223 +S. R. Karpik,Multigrid Methods for the Solution of Poisson's Equation in a Thick Spherical Shell.,1991,12,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc12.html#KarpikP91,https://doi.org/10.1137/0912036 +Joost Rommes,Computing Transfer Function Dominant Poles of Large-Scale Second-Order Dynamical Systems.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#RommesM08,https://doi.org/10.1137/070684562 +Mohammad Shakourifar,The Cost/Reliability Trade-Off in Verifying Approximate Solutions to Differential Equations with Distributed Delays.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#ShakourifarE13,https://doi.org/10.1137/120880793 +Tania Bakhos,Multipreconditioned Gmres for Shifted Systems.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#BakhosKLSS17,https://doi.org/10.1137/16M1068694 +Xiaoqun Wang,Constructing Robust Good Lattice Rules for Computational Finance.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#Wang07,https://doi.org/10.1137/060650714 +Melven Röhrig-Zöllner,Increasing the Performance of the Jacobi-Davidson Method by Blocking.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#Rohrig-ZollnerT15,https://doi.org/10.1137/140976017 +Cristóbal Bertoglio,Fractional-Step Schemes for the Coupling of Distributed and Lumped Models in Hemodynamics.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#BertoglioCF13,https://doi.org/10.1137/120874412 +Ronald Cools,Constructing Embedded Lattice Rules for Multivariate Integration.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#CoolsKN06,https://doi.org/10.1137/06065074X +Hong Wang,A Fast Finite Difference Method for Two-Dimensional Space-Fractional Diffusion Equations.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#WangB12,https://doi.org/10.1137/12086491X +Tarek P. Mathew,Analysis of Block Parareal Preconditioners for Parabolic Optimal Control Problems.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#MathewSS10,https://doi.org/10.1137/080717481 +Cevdet Aykanat,Permuting Sparse Rectangular Matrices into Block-Diagonal Form.,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#AykanatPC04,https://doi.org/10.1137/S1064827502401953 +Jan G. Verwer,A Second-Order Rosenbrock Method Applied to Photochemical Dispersion Problems.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#VerwerSBH99,https://doi.org/10.1137/S1064827597326651 +Achiya Dax,Column Relaxation Methods for Least Norm Problems.,1990,11,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc11.html#DaxB90,https://doi.org/10.1137/0911056 +Malena I. Español,A Wavelet-Based Multilevel Approach for Blind Deconvolution Problems.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#EspanolK14,https://doi.org/10.1137/130928716 +Gregory Baker,Stable Methods for Vortex Sheet Motion in the Presence of Surface Tension.,1998,19,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc19.html#BakerN98,https://doi.org/10.1137/S1064827595296562 +J. David Moulton,Approximate Schur Complement Preconditioning of the Lowest-Order Nodal Discretizations.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#MoultonMA98,https://doi.org/10.1137/S1064827596303491 +Elena Braverman,A Fast Spectral Solver for a 3D Helmholtz Equation.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#BravermanIA99,https://doi.org/10.1137/S1064827598334241 +Jian-Xin Xu 0001,An Algorithm for Melnikov Functions and Application to a Chaotic Rotor.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#XuYZ05,https://doi.org/10.1137/S1064827503420726 +Georgios Arampatzis,Langevin Diffusion for Population Based Sampling with an Application in Bayesian Inference for Pharmacodynamics.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#ArampatzisWAWHK18,https://doi.org/10.1137/16M1107401 +Maksymilian Dryja,Domain Decomposition Algorithms with Small Overlap.,1994,15,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc15.html#DryjaW94,https://doi.org/10.1137/0915040 +Alex Townsend,Computing with Functions in Spherical and Polar Geometries I. The Sphere.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#TownsendWW16,https://doi.org/10.1137/15M1045855 +Pedro R. S. Antunes,An Augmented-RBF Method for Solving Fractional Sturm-Liouville Eigenvalue Problems.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#AntunesF15,https://doi.org/10.1137/140954209 +Jean-Frédéric Gerbeau,A Moment-Matching Method to Study the Variability of Phenomena Described by Partial Differential Equations.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#GerbeauLT18,https://doi.org/10.1137/16M1103476 +Stefan Langer,Investigation of Preconditioning Techniques for the Iteratively Regularized Gauss--Newton Method for Exponentially Ill-Posed Problems.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#Langer10,https://doi.org/10.1137/090749967 +Richard K. Beatson,Fast Solution of the Radial Basis Function Interpolation Equations: Domain Decomposition Methods.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#BeatsonLB01,https://doi.org/10.1137/S1064827599361771 +Luis Rández,Optimizing the Numerical Integration of Initial Value Problems in Shooting Methods for Linear Boundary Value Problems.,1993,14,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc14.html#Randez93,https://doi.org/10.1137/0914053 +Peiyao Luo,Uzawa Smoother in Multigrid for the Coupled Porous Medium and Stokes Flow System.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#LuoRLO17,https://doi.org/10.1137/16M1076514 +Stefan Henn,Iterative Multigrid Regularization Techniques for Image Matching.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#HennW01,https://doi.org/10.1137/S106482750037161X +Caroline Lasser,Computing Expectation Values for Molecular Quantum Dynamics.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#LasserR10,https://doi.org/10.1137/090770461 +Brett M. Averick,Fast Solution of Nonlinear Poisson-Type Equations.,1993,14,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc14.html#AverickO93,https://doi.org/10.1137/0914003 +Greg Henry,A Parallel Implementation of the Nonsymmetric QR Algorithm for Distributed Memory Architectures.,2002,24,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc24.html#HenryWD02,https://doi.org/10.1137/S1064827597325165 +Louis F. Rossi,Resurrecting Core Spreading Vortex Methods: A New Scheme that is Both Deterministic and Convergent.,1996,17,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc17.html#Rossi96,https://doi.org/10.1137/S1064827593254397 +Lehel Banjai,Revisiting the Crowding Phenomenon in Schwarz-Christoffel Mapping.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#Banjai08,https://doi.org/10.1137/060677392 +Núria Parés,Exact Bounds for Linear Outputs of the Advection-Diffusion-Reaction Equation Using Flux-Free Error Estimates.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#ParesDH09,https://doi.org/10.1137/080724356 +Howard C. Elman,Lyapunov Inverse Iteration for Identifying Hopf Bifurcations in Models of Incompressible Flow.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#ElmanMSW12,https://doi.org/10.1137/110827600 +Ray S. Tuminaro,A Highly Parallel Multigrid-Like Method for the Solution of the Euler Equations.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#Tuminaro92,https://doi.org/10.1137/0913005 +Eleanor Chu,QR Factorization of a Dense Matrix on a Hypercube Multiprocessor.,1990,11,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc11.html#ChuG90,https://doi.org/10.1137/0911057 +Qiang Du,Numerical Solution of a Two-Dimensional Nonlocal Wave Equation on Unbounded Domains.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#DuHZZ18,https://doi.org/10.1137/16M1102896 +Fangying Song,Computing Fractional Laplacians on Complex-Geometry Domains: Algorithms and Simulations.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#SongXK17,https://doi.org/10.1137/16M1078197 +Myron B. Allen,Well-Conditioned Iterative Schemes for Mixed Finite-Element Models of Porous-Media Flows.,1992,13,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc13.html#AllenEL92,https://doi.org/10.1137/0913047 +Xiao-Chuan Cai,Multiplicative Schwarz Methods for Parabolic Problems.,1994,15,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc15.html#Cai94,https://doi.org/10.1137/0915039 +Bangti Jin,Correction of High-Order BDF Convolution Quadrature for Fractional Evolution Equations.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#JinLZ17,https://doi.org/10.1137/17M1118816 +Leigh Little,Block LU Preconditioners for Symmetric and Nonsymmetric Saddle Point Problems.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#LittleSS03,https://doi.org/10.1137/S1064827502405513 +Laurent O. Jay,Structure Preservation for Constrained Dynamics with Super Partitioned Additive Runge-Kutta Methods.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#Jay98,https://doi.org/10.1137/S1064827595293223 +Kai Bittner,Fast Algorithms for Adaptive Free Knot Spline Approximation Using Nonuniform Biorthogonal Spline Wavelets.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#BittnerB15,https://doi.org/10.1137/14095354X +Zi-Niu Wu,Steady and Unsteady Shock Waves on Overlapping Grids.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#Wu99,https://doi.org/10.1137/S1064827597318381 +Xiao Liu,Parallel Randomized and Matrix-Free Direct Solvers for Large Structured Dense Linear Systems.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#LiuXH16,https://doi.org/10.1137/15M1023774 +Vineet Rawat,Nonoverlapping Domain Decomposition with Second Order Transmission Condition for the Time-Harmonic Maxwell's Equations.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#RawatL10,https://doi.org/10.1137/090777220 +Krzysztof J. Fidkowski,An Entropy Adjoint Approach to Mesh Refinement.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#FidkowskiR10,https://doi.org/10.1137/090759057 +Tyrone Rees,Optimal Solvers for PDE-Constrained Optimization.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#ReesDW10,https://doi.org/10.1137/080727154 +Ron Kimmel,An Algebraic Multigrid Approach for Image Analysis.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#KimmelY03,https://doi.org/10.1137/S1064827501389229 +Yizhuang Song,Analysis and Blocking of Error Propagation by Region-Dependent Noisy Data in MREIT.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#SongKJJSW13,https://doi.org/10.1137/120889034 +Stefania Bellavia,Nonsymmetric Preconditioner Updates in Newton-Krylov Methods for Nonlinear Systems.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#BellaviaBM11,https://doi.org/10.1137/100789786 +Stephan Schmidt,Efficient Numerical Solution of Geometric Inverse Problems Involving Maxwell's Equations Using Shape Derivatives and Automatic Code Generation.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#SchmidtSW18,https://doi.org/10.1137/16M110602X +Steve Bryson,Balanced Central Schemes for the Shallow Water Equations on Unstructured Grids.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#BrysonL05,https://doi.org/10.1137/040605539 +Jean-Luc Guermond,High-Order Time Stepping for the Incompressible Navier-Stokes Equations.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#GuermondM15,https://doi.org/10.1137/140975231 +Roman Andreev,Preconditioning the Augmented Lagrangian Method for Instationary Mean Field Games with Diffusion.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#Andreev17,https://doi.org/10.1137/16M1072346 +David Chin-Lung Fong,LSMR: An Iterative Algorithm for Sparse Least-Squares Problems.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#FongS11,https://doi.org/10.1137/10079687X +Sanghyun Lee,A Locally Conservative Enriched Galerkin Approximation and Efficient Solver for Elliptic and Parabolic Problems.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#LeeLW16,https://doi.org/10.1137/15M1041109 +Hans De Sterck,Smoothed Aggregation Multigrid for Markov Chains.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#SterckMMMPRS10,https://doi.org/10.1137/080719157 +Fabio Nobile,An Effective Fluid-Structure Interaction Formulation for Vascular Dynamics by Generalized Robin Conditions.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#NobileV08,https://doi.org/10.1137/060678439 +Sergio Blanes,Numerical Integrators for the Hybrid Monte Carlo Method.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#BlanesCS14,https://doi.org/10.1137/130932740 +Shawn W. Walker,Tetrahedralization of Isosurfaces with Guaranteed-Quality by Edge Rearrangement (TIGER).,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#Walker13,https://doi.org/10.1137/120866075 +Stig Skelboe,Accuracy of Decoupled Implicit Integration Formulas.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#Skelboe00,https://doi.org/10.1137/S1064827598337919 +Alexander V. Shapeev,Consistent Energy-Based Atomistic/Continuum Coupling for Two-Body Potentials in Three Dimensions.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#Shapeev12,https://doi.org/10.1137/110844544 +Xiuling Ma,Extrapolation for Finite Volume Approximations.,2003,24,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc24.html#MaMZ03,https://doi.org/10.1137/S1064827501398335 +Per-Gunnar Martinsson,Householder QR Factorization With Randomization for Column Pivoting (HQRRP).,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#MartinssonQHG17,https://doi.org/10.1137/16M1081270 +Praveen Chandrashekar,A Second Order Well-Balanced Finite Volume Scheme for Euler Equations with Gravity.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#ChandrashekarK15,https://doi.org/10.1137/140984373 +George Biros,Parallel Lagrange-Newton-Krylov-Schur Methods for PDE-Constrained Optimization. Part II: The Lagrange-Newton Solver and Its Application to Optimal Control of Steady Viscous Flows.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#BirosG05a,https://doi.org/10.1137/S1064827502415661 +Guillaume Aupy,Optimal Multistage Algorithm for Adjoint Computation.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#AupyHHR16,https://doi.org/10.1137/15M1019222 +Ian T. Foster,Parallel Algorithms for the Spectral Transform Method.,1997,18,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc18.html#FosterW97,https://doi.org/10.1137/S1064827594266891 +Olivier Zahm,Interpolation of Inverse Operators for Preconditioning Parameter-Dependent Equations.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#ZahmN16,https://doi.org/10.1137/15M1019210 +Alexander Heinlein,A Parallel Implementation of a Two-Level Overlapping Schwarz Method with Energy-Minimizing Coarse Space Based on Trilinos.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#HeinleinKR16,https://doi.org/10.1137/16M1062843 +Birte Schmidtmann,A Hybrid Riemann Solver for Large Hyperbolic Systems of Conservation Laws.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#SchmidtmannT17,https://doi.org/10.1137/16M108567X +Laek S. Andallah,A Discrete Boltzmann Equation Based on a Cub-Octahedron in R3.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#AndallahB08,https://doi.org/10.1137/060673850 +Torquil Macdonald Sørensen,Levy Process Simulation by Stochastic Step Functions.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#SorensenB13,https://doi.org/10.1137/110851080 +J. Reiss,The Shifted Proper Orthogonal Decomposition: A Mode Decomposition for Multiple Transport Phenomena.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#ReissSSM18,https://doi.org/10.1137/17M1140571 +Stephen L. Campbell,Solvability of General Differential Algebraic Equations.,1995,16,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc16.html#CampbellG95,https://doi.org/10.1137/0916017 +Amnon J. Meir,Radially Projected Finite Elements.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#MeirT09,https://doi.org/10.1137/07069167X +Achim Schädle,Fast and Oblivious Convolution Quadrature.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#SchadleLL06,https://doi.org/10.1137/050623139 +Jan Mayer,Symmetric Permutations for I-matrices to Delay and Avoid Small Pivots During Factorization.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#Mayer08,https://doi.org/10.1137/060669176 +Emmanuel Agullo,Interpolation-Restart Strategies for Resilient Eigensolvers.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#AgulloGSZ16,https://doi.org/10.1137/15M1042115 +Florian Kummer,An Extension of the Discontinuous Galerkin Method for the Singular Poisson Equation.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#KummerO13,https://doi.org/10.1137/120878586 +Fei Liu,Recursive Sweeping Preconditioner for the Three-Dimensional Helmholtz Equation.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#LiuY16,https://doi.org/10.1137/15M1010154 +Peter A. Forsyth,A Control Volume Finite Element Approach to NAPL Groundwater Contamination.,1991,12,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc12.html#Forsyth91,https://doi.org/10.1137/0912055 +Kadir Akbudak,Simultaneous Input and Output Matrix Partitioning for Outer-Product-Parallel Sparse Matrix-Matrix Multiplication.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#AkbudakA14,https://doi.org/10.1137/13092589X +Yasunori Aoki,Cluster Newton Method for Sampling Multiple Solutions of Underdetermined Inverse Problems: Application to a Parameter Identification Problem in Pharmacokinetics.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#AokiHSK14,https://doi.org/10.1137/120885462 +Elias Jarlebring,A Krylov Method for the Delay Eigenvalue Problem.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#JarlebringMM10,https://doi.org/10.1137/10078270X +Mihai Anitescu,Sensitivities in Large Eddy Simulation and Improved Estimates of Turbulent Flow Functionals.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#AnitescuL07,https://doi.org/10.1137/050631161 +Jizu Huang,A Fully Implicit Method for Lattice Boltzmann Equations.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#HuangYC15,https://doi.org/10.1137/140975346 +Marc Alexander Schweitzer,An Algebraic Treatment of Essential Boundary Conditions in the Particle--Partition of Unity Method.,2009,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#Schweitzer09,https://doi.org/10.1137/080716499 +Robert D. Falgout,Parallel Time Integration with Multigrid.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#FalgoutFKMS14,https://doi.org/10.1137/130944230 +Michel Crouzeix,The Davidson Method.,1994,15,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc15.html#CrouzeixPS94,https://doi.org/10.1137/0915004 +Vladimir Rokhlin,Fast Algorithms for Spherical Harmonic Expansions.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#RokhlinT06,https://doi.org/10.1137/050623073 +Shlomo Ta'asan,On the Multigrid Waveform Relaxation Method.,1995,16,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc16.html#TaasanZ95,https://doi.org/10.1137/0916063 +Pieter D. Boom,High-Order Implicit Time-Marching Methods Based on Generalized Summation-By-Parts Operators.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#BoomZ15,https://doi.org/10.1137/15M1014917 +Paolo Crosetto,Parallel Algorithms for Fluid-Structure Interaction Problems in Haemodynamics.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#CrosettoDFQ11,https://doi.org/10.1137/090772836 +Paulien van Slingerland,Position-Dependent Smoothness-Increasing Accuracy-Conserving (SIAC) Filtering for Improving Discontinuous Galerkin Solutions.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#SlingerlandRV11,https://doi.org/10.1137/100782188 +Ming Li,Wavelet Frame Based Algorithm for 3D Reconstruction in Electron Microscopy.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#LiFJS14,https://doi.org/10.1137/130914474 +Michael Pippig,Parallel Three-Dimensional Nonequispaced Fast Fourier Transforms and Their Application to Particle Simulation.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#PippigP13,https://doi.org/10.1137/120888478 +Natasha Flyer,The Convergence of Spectral and Finite Difference Methods for Initial-Boundary Value Problems.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#FlyerS02,https://doi.org/10.1137/S1064827500374169 +Luc Giraud,Convergence in Backward Error of Relaxed GMRES.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#GiraudGL07,https://doi.org/10.1137/040608416 +Cui Cong,Implicit Space-Time Domain Decomposition Methods for Stochastic Parabolic Partial Differential Equations.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#CongCG14,https://doi.org/10.1137/12090410X +Sven Groß,Robust Preconditioning for XFEM Applied to Time-Dependent Stokes Problems.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#GrossLOR16,https://doi.org/10.1137/15M1024007 +Hans De Sterck,Nonlinearly Preconditioned Optimization on Grassmann Manifolds for Computing Approximate Tucker Tensor Decompositions.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#SterckH16,https://doi.org/10.1137/15M1037288 +Lars-Erik Andersson,Error Analysis for Operations in Solid Modeling in the Presence of Uncertainty.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#AnderssonSZ07,https://doi.org/10.1137/040604303 +Alex H. Barnett,Evaluation of Layer Potentials Close to the Boundary for Laplace and Helmholtz Problems on Analytic Planar Domains.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#Barnett14,https://doi.org/10.1137/120900253 +David I. Ketcheson,High-Order Wave Propagation Algorithms for Hyperbolic Systems.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#KetchesonPL13,https://doi.org/10.1137/110830320 +Peter Kandolf,A Block Krylov Method to Compute the Action of the Fréchet Derivative of a Matrix Function on a Vector with Applications to Condition Number Estimation.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#KandolfR17,https://doi.org/10.1137/16M1077969 +Erin Carson,Avoiding Communication in Nonsymmetric Lanczos-Based Krylov Subspace Methods.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#CarsonKD13,https://doi.org/10.1137/120881191 +Christophe Chalons,Well-Balanced Time Implicit Formulation of Relaxation Schemes for the Euler Equations.,2008,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#ChalonsCM08,https://doi.org/10.1137/070683040 +James M. Rosinski,The Accumulation of Rounding Errors and Port Validation for Global Atmospheric Models.,1997,18,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc18.html#RosinskiW97,https://doi.org/10.1137/S1064827594275534 +R. Bank,Algebraic Multigrid Domain and Range Decomposition (AMG-DD/AMG-RD).,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#BankFJMMR15,https://doi.org/10.1137/140974717 +Liang Yan 0002,Stochastic Collocation Algorithms Using l1-Minimization for Bayesian Solution of Inverse Problems.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#YanG15,https://doi.org/10.1137/140965144 +Zhao Zhang,Fast Bit-Reversals on Uniprocessors and Shared-Memory Multiprocessors.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#Zhang001,https://doi.org/10.1137/S1064827599359709 +Eldad Haber,Fast Finite Volume Simulation of 3D Electromagnetic Problems with Highly Discontinuous Coefficients.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#HaberA01,https://doi.org/10.1137/S1064827599360741 +Sergey Dolgov,Low-Rank Solution to an Optimization Problem Constrained by the Navier-Stokes Equations.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#DolgovS17,https://doi.org/10.1137/15M1040414 +Hans De Sterck,An Adaptive Algebraic Multigrid Algorithm for Low-Rank Canonical Tensor Decomposition.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#SterckM13,https://doi.org/10.1137/110855934 +Robert D. Skeel,Practical Construction of Modified Hamiltonians.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#SkeelH01,https://doi.org/10.1137/S106482750138318X +H. Martin Bücker,Parallel Minimum p-Norm Solution of the Neuromagnetic Inverse Problem for Realistic Signals Using Exact Hessian-Vector Products.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#BuckerBR08,https://doi.org/10.1137/07069198X +Roel Van Beeumen,A Rational Krylov Method Based on Hermite Interpolation for Nonlinear Eigenvalue Problems.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#BeeumenMM13,https://doi.org/10.1137/120877556 +Shu-Lin Wu,Schwarz Waveform Relaxation for a Neutral Functional Partial Differential Equation Model of Lossless Coupled Transmission Lines.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#WuH13,https://doi.org/10.1137/110860975 +Mapundi K. Banda,Toward a Mathematical Analysis for Drift-Flux Multiphase Flow Models in Networks.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#BandaHN10,https://doi.org/10.1137/080722138 +Prabhu Ramachandran,A Fast Multipole Method for Higher Order Vortex Panels in Two Dimensions.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#RamachandranRR05,https://doi.org/10.1137/S1064827502420719 +S. Brdar,Compact and Stable Discontinuous Galerkin Methods for Convection-Diffusion Problems.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#BrdarDK12,https://doi.org/10.1137/100817528 +James Demmel,Accurate and Efficient Floating Point Summation.,2004,25,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc25.html#DemmelH04,https://doi.org/10.1137/S1064827502407627 +Li-Tien Cheng,Binary Level-Set Shape Optimization Model and Algorithm for Volumetric Modulated Arc Therapy in Radiotherapy Treatment.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#ChengDMJJ13,https://doi.org/10.1137/120890430 +Habib Ammari,Two Numerical Methods for Recovering Small Inclusions from the Scattering Amplitude at a Fixed Frequency.,2005,27,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc27.html#AmmariIL05,https://doi.org/10.1137/040612518 +Stefano Zonca,An Unfitted Formulation for the Interaction of an Incompressible Fluid with a Thick Structure via an XFEM/DG Approach.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#ZoncaVF18,https://doi.org/10.1137/16M1097602 +Tommy Elfving,Semiconvergence and Relaxation Parameters for Projected SIRT Algorithms.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#ElfvingHN12,https://doi.org/10.1137/110834640 +Lars Eldén,Wavelet and Fourier Methods for Solving the Sideways Heat Equation.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#EldenBR00,https://doi.org/10.1137/S1064827597331394 +Miklós Homolya,TSFC: A Structure-Preserving Form Compiler.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#HomolyaMLH18,https://doi.org/10.1137/17M1130642 +Nim Keung Leung,C1 Convexity-Preserving Interpolation of Scattered Data.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#LeungR99,https://doi.org/10.1137/S1064827597315832 +Chris Walshaw,Mesh Partitioning: A Multilevel Balancing and Refinement Algorithm.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#WalshawC00,https://doi.org/10.1137/S1064827598337373 +Ricardo Delgadillo,Gauge-Invariant Frozen Gaussian Approximation Method for the Schrödinger Equation with Periodic Potentials.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#DelgadilloLY16,https://doi.org/10.1137/15M1040384 +Brendan Harding,Fault Tolerant Computation with the Sparse Grid Combination Technique.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#HardingHLS15,https://doi.org/10.1137/140964448 +P. B. Monk,A Dispersion Analysis of Finite Element Methods for Maxwell's Equations.,1994,15,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc15.html#MonkP94,https://doi.org/10.1137/0915055 +Kevin Burrage,An Efficient Implicit FEM Scheme for Fractional-in-Space Reaction-Diffusion Equations.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#BurrageHK12,https://doi.org/10.1137/110847007 +Dimitris J. Kavvadias,Locating and Computing Arbitrarily Distributed Zeros.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#KavvadiasMV99,https://doi.org/10.1137/S1064827598333806 +Matteo Parsani,Optimized Explicit Runge-Kutta Schemes for the Spectral Difference Method Applied to Wave Propagation Problems.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#ParsaniKD13,https://doi.org/10.1137/120885899 +Howard C. Elman,A Multigrid Method Enhanced by Krylov Subspace Iteration for Discrete Helmholtz Equations.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#ElmanEO01,https://doi.org/10.1137/S1064827501357190 +Charles H. Tong,Multilevel Filtering Preconditioners: Extensions to More General Elliptic Problems.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#TongCK92,https://doi.org/10.1137/0913012 +Michel O. Deville,Finite-Element Preconditioning for Pseudospectral Solutions of Elliptic Problems.,1990,11,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc11.html#DevilleM90,https://doi.org/10.1137/0911019 +Kenneth Duru,The Role of Numerical Boundary Procedures in the Stability of Perfectly Matched Layers.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#Duru16,https://doi.org/10.1137/140976443 +Michael G. Edwards,An h-r-Adaptive Approximate Riemann Solver for the Euler Equations in Two Dimensions.,1993,14,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc14.html#EdwardsOD93,https://doi.org/10.1137/0914011 +Pritam Ganguly,An Algorithm for Two-Dimensional Mesh Generation Based on the Pinwheel Tiling.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#GangulyVP06,https://doi.org/10.1137/040611343 +Andrew J. Christlieb,A Parallel Space-Time Algorithm.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#ChristliebHO12,https://doi.org/10.1137/110843484 +Huadong Gao,A New Mixed Formulation and Efficient Numerical Solution of Ginzburg-Landau Equations Under the Temporal Gauge.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#GaoS16,https://doi.org/10.1137/15M1022744 +Lakhdar Remaki,3-D Mesh Adaptation on Multiple Weak Discontinuities and Boundary Layers.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#RemakiH06,https://doi.org/10.1137/S1064827503429879 +David Kay,A Block Preconditioner for High-Order Mixed Finite Element Approximations to the Navier-Stokes Equations.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#KayL06,https://doi.org/10.1137/040609045 +Bin Han 0003,Design of Hermite Subdivision Schemes Aided by Spectral Radius Optimization.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#0003OY03,https://doi.org/10.1137/S1064827502408608 +Yongsam Kim,An Immersed Boundary Heart Model Coupled with a Multicompartment Lumped Model of the Circulatory System.,2010,32,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc32.html#KimLJ10,https://doi.org/10.1137/090761963 +Paul T. Bauman,GRINS: A Multiphysics Framework Based on the libMesh Finite Element Library.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#BaumanS16,https://doi.org/10.1137/15M1026110 +I. J. Anderson,A Distillation Algorithm for Floating-Point Summation.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#Anderson99,https://doi.org/10.1137/S1064827596314200 +Daniel Y. Le Roux,Analysis of Numerically Induced Oscillations in Two-Dimensional Finite-Element Shallow-Water Models Part II: Free Planetary Waves.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#RouxP08,https://doi.org/10.1137/070697872 +Martin Eller,A Symmetric Low-Frequency Stable Broadband Maxwell Formulation for Industrial Applications.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#EllerRSZ17,https://doi.org/10.1137/16M1077817 +Xiaoming He,A Finite Element Splitting Extrapolation for Second Order Hyperbolic Equations.,2009,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#HeL09,https://doi.org/10.1137/070703090 +Henri Calandra,Flexible Variants of Block Restarted GMRES Methods with Application to Geophysics.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#CalandraGLPV12,https://doi.org/10.1137/10082364X +Sharif Rahman,Uncertainty Quantification by Alternative Decompositions of Multivariate Functions.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#Rahman13,https://doi.org/10.1137/12089168X +Donald Goldfarb,Parametric Maximum Flow Algorithms for Fast Total Variation Minimization.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#GoldfarbY09,https://doi.org/10.1137/070706318 +Xiao-Qing Jin,A Note on Preconditioned Block Toeplitz Matrices.,1995,16,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc16.html#Jin95,https://doi.org/10.1137/0916055 +Jaime Peraire,The Compact Discontinuous Galerkin (CDG) Method for Elliptic Problems.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#PeraireP08,https://doi.org/10.1137/070685518 +Stefan Güttel,NLEIGS: A Class of Fully Rational Krylov Methods for Nonlinear Eigenvalue Problems.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#GuttelBMM14,https://doi.org/10.1137/130935045 +Henk A. van der Vorst,Special Issue 2000 Copper Mountain Conference.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#Vorst01,https://doi.org/10.1137/SJOCE3000023000002000vii000001 +Tan Bui-Thanh,Adaptive Hessian-Based Nonstationary Gaussian Process Response Surface Method for Probability Density Approximation with Application to Bayesian Solution of Large-Scale Inverse Problems.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#Bui-ThanhGH12,https://doi.org/10.1137/110851419 +Eugene Vecharynski,Generalized Preconditioned Locally Harmonic Residual Method for Non-Hermitian Eigenproblems.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#VecharynskiYX16,https://doi.org/10.1137/15M1027413 +Zachary Battles,An Extension of MATLAB to Continuous Functions and Operators.,2004,25,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc25.html#BattlesT04,https://doi.org/10.1137/S1064827503430126 +Yair Koren,Adaptive Multiscale Redistribution for Vector Quantization.,2006,27,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc27.html#KorenY06,https://doi.org/10.1137/040607769 +Daniele Boffi,A Nonconforming High-Order Method for the Biot Problem on General Meshes.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#BoffiBP16,https://doi.org/10.1137/15M1025505 +Roberto Barrio,Sensitivity Analysis of ODES/DAES Using the Taylor Series Method.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#Barrio06,https://doi.org/10.1137/030601892 +Erin Carson,A New Analysis of Iterative Refinement and Its Application to Accurate Solution of Ill-Conditioned Sparse Linear Systems.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#CarsonH17,https://doi.org/10.1137/17M1122918 +Nicholas J. Higham,The Accuracy of Floating Point Summation.,1993,14,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc14.html#Higham93,https://doi.org/10.1137/0914050 +Irad Yavneh,On Red-Black SOR Smoothing in Multigrid.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#Yavneh96,https://doi.org/10.1137/0917013 +William Jalby,Stability Analysis and Improvement of the Block Gram-Schmidt Algorithm.,1991,12,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc12.html#JalbyP91,https://doi.org/10.1137/0912056 +M. P. Neilson,Modeling Cell Movement and Chemotaxis Using Pseudopod-Based Feedback.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#NeilsonMWI11,https://doi.org/10.1137/100788938 +Kuiyuan Li,An Algorithm for Symmetric Tridiagonal Eigenproblems: Divide and Conquer with Homotopy Continuation.,1993,14,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc14.html#LiL93,https://doi.org/10.1137/0914046 +Sebastiano Boscarino,Implicit-Explicit Runge-Kutta Schemes for Hyperbolic Systems and Kinetic Equations in the Diffusion Limit.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#BoscarinoPR13,https://doi.org/10.1137/110842855 +Sheng-Gwo Chen,Discrete Conservation Laws on Curved Surfaces.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#ChenW13,https://doi.org/10.1137/110846257 +Carla D. Martin,An Order-p Tensor Factorization with Applications in Imaging.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#MartinSL13,https://doi.org/10.1137/110841229 +Mi-Young Kim,Discontinuous-Continuous Galerkin Methods for a Structured Model of a Biological System.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#Kim08,https://doi.org/10.1137/070706094 +Xiao-Chuan Cai,Inexact Newton Methods with Restricted Additive Schwarz Based Nonlinear Elimination for Problems with High Local Nonlinearity.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#CaiL11,https://doi.org/10.1137/080736272 +Yuezheng Gong,Fully Discrete Second-Order Linear Schemes for Hydrodynamic Phase Field Models of Binary Viscous Fluid Flows with Variable Densities.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#Gong0YW18,https://doi.org/10.1137/17M1111759 +V. A. Bandy,Some Multigrid Algorithms for Elliptic Problems on Data Parallel Machines.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#BandyDS98,https://doi.org/10.1137/S1064827596303648 +Ling Guo,Stochastic Collocation Methods via and#8467*1 Minimization Using Randomized Quadratures.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#GuoNZC17,https://doi.org/10.1137/16M1059680 +Haoying Fu,Efficient Minimization Methods of Mixed l2-l1 and l1-l1 Norms for Image Restoration.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#FuNNB06,https://doi.org/10.1137/040615079 +Christophe Berthon,A Positive Preserving High Order VFRoe Scheme for Shallow Water Equations: A Class of Relaxation Schemes.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#BerthonM08,https://doi.org/10.1137/070686147 +Sylvain Vallaghé,The Static Condensation Reduced Basis Element Method for a Mixed-Mean Conjugate Heat Exchanger Model.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#VallagheP14,https://doi.org/10.1137/120887709 +Prince Chidyagwai,Constraint Preconditioning for the Coupled Stokes-Darcy System.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#ChidyagwaiLS16,https://doi.org/10.1137/15M1032156 +Luciano Misici,Three-Dimensional Inverse Obstacle Scattering for Time Harmonic Acoustic Waves: A Numerical Method.,1994,15,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc15.html#MisiciZ94,https://doi.org/10.1137/0915072 +Peter Buchholz,Block SOR Preconditioned Projection Methods for Kronecker Structured Markovian Representations.,2005,26,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc26.html#BuchholzD05,https://doi.org/10.1137/S1064827503425882 +Jos L. M. van Dorsselaer,Several Concepts to Investigate Strongly Nonnormal Eigenvalue Problems.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#Dorsselaer03,https://doi.org/10.1137/S1064827500382749 +Yvan Notay,Aggregation-Based Algebraic Multigrid for Convection-Diffusion Equations.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#Notay12,https://doi.org/10.1137/110835347 +Roman Wienands,Fourier Analysis of GMRES(m) Preconditioned by Multigrid.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#WienandsOW00,https://doi.org/10.1137/S1064827599353014 +Leonardo Zepeda-Núñez,Nested Domain Decomposition with Polarized Traces for the 2D Helmholtz Equation.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#Zepeda-NunezD18,https://doi.org/10.1137/15M104582X +William E. Boyse,A Block QMR Method for Computing Multiple Simultaneous Solutions to Complex Symmetric Systems.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#BoyseS96,https://doi.org/10.1137/0917019 +R. Michael Porter,An Interpolating Polynomial Method for Numerical Conformal Mapping.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#Porter01,https://doi.org/10.1137/S1064827599355256 +Daan Huybrechs,A Sparse Discretization for Integral Equation Formulations of High Frequency Scattering Problems.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#HuybrechsV07,https://doi.org/10.1137/060651525 +Chung-Ki Cho,Dual-Mesh Characteristics for Particle-Mesh Methods for the Simulation of Convection-Dominated Flows.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#ChoLK18,https://doi.org/10.1137/17M1114648 +Xiao-Chuan Cai,A Restricted Additive Schwarz Preconditioner for General Sparse Linear Systems.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#CaiS99,https://doi.org/10.1137/S106482759732678X +Yingzhou Li,Interpolative Butterfly Factorization.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#LiY17,https://doi.org/10.1137/16M1074941 +Andreas Frommer,Stopping Criteria for Rational Matrix Functions of Hermitian and Symmetric Matrices.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#FrommerS08,https://doi.org/10.1137/070684598 +Gennady Y. Kulikov,Variable-Stepsize Interpolating Explicit Parallel Peer Methods with Inherent Global Error Control.,2010,32,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc32.html#KulikovW10,https://doi.org/10.1137/090764840 +Robert J. Renka,A Simple and Efficient Method for Modeling Constant Mean Curvature Surfaces.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#Renka15,https://doi.org/10.1137/140972275 +Gene H. Golub,An Iteration for Indefinite Systems and Its Application to the Navier-Stokes Equations.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#GolubW98,https://doi.org/10.1137/S106482759529382X +Jörg Lampe,Accelerating the LSTRS Algorithm.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#LampeRSV11,https://doi.org/10.1137/090764426 +Luca Dieci,Block M-Matrices and Computation of Invariant Tori.,1992,13,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc13.html#DieciL92,https://doi.org/10.1137/0913053 +Michael Messner,An Efficient Galerkin Boundary Element Method for the Transient Heat Equation.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#MessnerST15,https://doi.org/10.1137/151004422 +Na Li,Crout Versions of ILU for General Sparse Matrices.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#LiSC03,https://doi.org/10.1137/S1064827502405094 +Dalin Tang,Numerical and Asymptotic Solutions for Peristaltic Motion of Nonlinear Viscous Flows with Elastic Free Boundaries.,1993,14,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc14.html#TangR93,https://doi.org/10.1137/0914077 +Laurent Bourgeois,On Simultaneous Identification of the Shape and Generalized Impedance Boundary Condition in Obstacle Scattering.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#BourgeoisCH12,https://doi.org/10.1137/110850347 +Yu Hong Yeung,AMPS: An Augmented Matrix Formulation for Principal Submatrix Updates with Application to Power Grids.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#YeungPHH17,https://doi.org/10.1137/16M1082755 +Heinz-Otto Kreiss,A Second Order Accurate Embedded Boundary Method for the Wave Equation with Dirichlet Data.,2006,27,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc27.html#KreissP06,https://doi.org/10.1137/040604728 +Rémi Abgrall,Two-Layer Shallow Water System: A Relaxation Approach.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#AbgrallK09,https://doi.org/10.1137/06067167X +Paul Castillo,Performance of Discontinuous Galerkin Methods for Elliptic PDEs.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#Castillo02,https://doi.org/10.1137/S1064827501388339 +Patricia D. Hough,Asynchronous Parallel Pattern Search for Nonlinear Optimization.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#HoughKT01,https://doi.org/10.1137/S1064827599365823 +Malena I. Español,Multilevel Approach For Signal Restoration Problems With Toeplitz Matrices.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#EspanolK10,https://doi.org/10.1137/080715780 +Daniel Y. Le Roux,Dispersion Relation Analysis of the $P^NC_1 - P^_1$ Finite-Element Pair in Shallow-Water Models.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#Roux05,https://doi.org/10.1137/030602435 +Daniel Potts,Fast Summation at Nonequispaced Knots by NFFT.,2003,24,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc24.html#PottsS03,https://doi.org/10.1137/S1064827502400984 +Delyan Kalchev,Two-Level Adaptive Algebraic Multigrid for a Sequence of Problems with Slowly Varying Random Coefficients.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#KalchevKV13,https://doi.org/10.1137/120895366 +Chris Fraley,Algorithms for Model-Based Gaussian Hierarchical Clustering.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#Fraley98,https://doi.org/10.1137/S1064827596311451 +Manuel Baumann,Space-Time Galerkin POD with Application in Optimal Control of Semilinear Partial Differential Equations.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#BaumannBH18,https://doi.org/10.1137/17M1135281 +Patrick H. Worley,Limits on Parallelism in the Numerical Solution of Linear Partial Differential Equations.,1991,12,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc12.html#Worley91,https://doi.org/10.1137/0912001 +Irene Livshits,One-Dimensional Algorithm for Finding Eigenbasis of the Schrödinger Operator.,2008,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#Livshits08,https://doi.org/10.1137/070684197 +Nicholas Hale,Contour Integral Solution of Elliptic PDEs in Cylindrical Domains.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#HaleW15,https://doi.org/10.1137/15M1032764 +Anders Andersson,Schwarz--Christoffel Mappings for Nonpolygonal Regions.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#Andersson08,https://doi.org/10.1137/070701297 +Takumi Washio,A Parallel Multilevel Technique for Solving the Bidomain Equation on a Human Heart with Purkinje Fibers and a Torso Model.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#WashioOH08,https://doi.org/10.1137/070689711 +Alan Genz,Stochastic Integration Rules for Infinite Regions.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#GenzM98,https://doi.org/10.1137/S1064827595286803 +Toni Karvonen,Fully Symmetric Kernel Quadrature.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#KarvonenS18,https://doi.org/10.1137/17M1121779 +Yuji Nakatsukasa,The AAA Algorithm for Rational Approximation.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#NakatsukasaST18,https://doi.org/10.1137/16M1106122 +Jing Yuan,Simultaneous Higher-Order Optical Flow Estimation and Decomposition.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#YuanSS07,https://doi.org/10.1137/060660709 +Jian-Feng Cai,Restoration of Chopped and Nodded Images by Framelets.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#CaiCSS08,https://doi.org/10.1137/040615298 +Lothar Nannen,Exact Sequences of High Order Hardy Space Infinite Elements for Exterior Maxwell Problems.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#NannenHSS13,https://doi.org/10.1137/110860148 +Thomas Hagstrom,Accurate Radiation Boundary Conditions for the Linearized Euler Equations in Cartesian Domains.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#HagstromG03,https://doi.org/10.1137/S1064827501395914 +Diederik R. Fokkema,Jacobi-Davidson Style QR and QZ Algorithms for the Reduction of Matrix Pencils.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#FokkemaSV98,https://doi.org/10.1137/S1064827596300073 +Leevan Ling,A Fast Block-Greedy Algorithm for Quasi-optimal Meshless Trial Subspace Selection.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#Ling16,https://doi.org/10.1137/15M1037627 +A. M. Sauer-Budge,Computing Bounds for Linear Functionals of Exact Weak Solutions to the Advection-Diffusion-Reaction Equation.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#Sauer-BudgeP04,https://doi.org/10.1137/S1064827503427121 +Keijo Hämäläinen,Sparse Tomography.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#HamalainenKKLNS13,https://doi.org/10.1137/120876277 +Dana A. Knoll,A Multigrid Preconditioned Newton-Krylov Method.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#KnollR99,https://doi.org/10.1137/S1064827598332709 +Andrey N. Chernikov,Parallel Guaranteed Quality Delaunay Uniform Mesh Refinement.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#ChernikovC06,https://doi.org/10.1137/050625886 +Ilan Degani,Optimal Quantum Control by an Adapted Coordinate Ascent Algorithm.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#DeganiZ12,https://doi.org/10.1137/11082467X +S. A. Stotland,Orderings for Parallel Conjugate Gradient Preconditioners.,1997,18,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc18.html#StotlandO97,https://doi.org/10.1137/S1064827593256244 +Christoph Börgers,Exponential Time Differencing for Hodgkin-Huxley-like ODEs.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#BorgersN13,https://doi.org/10.1137/120883657 +Zhe Feng,An Adaptive Independence Sampler MCMC Algorithm for Bayesian Inferences of Functions.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#FengL18,https://doi.org/10.1137/15M1021751 +Seher Acer,A Recursive Bipartitioning Algorithm for Permuting Sparse Square Matrices into Block Diagonal Form with Overlap.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#AcerKA13,https://doi.org/10.1137/120861242 +Charles S. Henkel,Recursive Least Squares on a Hypercube Multiprocessor Using the Covariance Factorization.,1991,12,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc12.html#HenkelP91,https://doi.org/10.1137/0912005 +Lawrence F. Shampine,The MATLAB ODE Suite.,1997,18,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc18.html#ShampineR97,https://doi.org/10.1137/S1064827594276424 +Aaron L. Fogelson,Immersed Interface Methods for Neumann and Related Problems in Two and Three Dimensions.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#FogelsonK01,https://doi.org/10.1137/S1064827597327541 +Christian Meyer 0001,Adaptive Optimal Control of the Obstacle Problem.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#MeyerRW15,https://doi.org/10.1137/140975863 +Marica Pelanti,High-Resolution Finite Volume Methods for Dusty Gas Jets and Plumes.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#PelantiL06,https://doi.org/10.1137/050635018 +James C. Schatzman,Accuracy of the Discrete Fourier Transform and the Fast Fourier Transform.,1996,17,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc17.html#Schatzman96,https://doi.org/10.1137/S1064827593247023 +Nathan Albin,Discrete Periodic Extension Using an Approximate Step Function.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#AlbinP14,https://doi.org/10.1137/130932533 +Hong Cheng,Solving Degenerate Reaction-Diffusion Equations via Variable Step Peaceman-Rachford Splitting.,2004,25,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc25.html#ChengLST04,https://doi.org/10.1137/S1064827501380691 +Andreas Eibeck,An Efficient Stochastic Algorithm for Studying Coagulation Dynamics and Gelation Phenomena.,2000,22,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc22.html#EibeckW00,https://doi.org/10.1137/S1064827599353488 +Michael Griebel,An Algebraic Multigrid Method for Linear Elasticity.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#GriebelOS03,https://doi.org/10.1137/S1064827502407810 +Andrey N. Chernikov,Generalized Two-Dimensional Delaunay Mesh Refinement.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#ChernikovC09,https://doi.org/10.1137/080723028 +Michael Lange,Efficient Mesh Management in Firedrake Using PETSc DMPlex.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#LangeMKG16,https://doi.org/10.1137/15M1026092 +David Hysom,A Scalable Parallel Algorithm for Incomplete Factor Preconditioning.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#HysomP01,https://doi.org/10.1137/S1064827500376193 +Alessio Spantini,Goal-Oriented Optimal Approximations of Bayesian Linear Inverse Problems.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#SpantiniCWTM17,https://doi.org/10.1137/16M1082123 +Lawrence S. Mulholland,Pseudospectral Solution of Near-Singular Problems using Numerical Coordinate Transformations Based on Adaptivity.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#MulhollandHS98,https://doi.org/10.1137/S1064827595291984 +Claire Chainais-Hillairet,Study of Discrete Duality Finite Volume Schemes for the Peaceman Model.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#Chainais-HillairetKM13,https://doi.org/10.1137/130910555 +Ghislaine Godinaud,A Lagrange Scheme for a Mathematical Model of Powder Compression.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#GodinaudRR01,https://doi.org/10.1137/S1064827597233743 +Bernard D. Coleman,Space-Time Finite Element Methods for Surface Diffusion with Applications to the Theory of the Stability of Cylinders.,1996,17,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc17.html#ColemanFM96,https://doi.org/10.1137/S1064827594274589 +Gabriella Puppo,Numerical Entropy Production for Central Schemes.,2004,25,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc25.html#Puppo04,https://doi.org/10.1137/S1064827502386712 +David P. Nicholls,A Stable High-Order Method for Two-Dimensional Bounded-Obstacle Scattering.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#NichollsS06,https://doi.org/10.1137/050632920 +Pavel Jiránek,A Posteriori Error Estimates Including Algebraic Error and Stopping Criteria for Iterative Solvers.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#JiranekSV10,https://doi.org/10.1137/08073706X +Kristian Bredies,Iterated Hard Shrinkage for Minimization Problems with Sparsity Constraints.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#BrediesL08,https://doi.org/10.1137/060663556 +Zhiping Li,Numerical Justification of Branched Laminated Microstructure with Surface Energy.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#Li03,https://doi.org/10.1137/S1064827501396774 +Xin Wen,High Order Numerical Methods to Three Dimensional Delta Function Integrals in Level Set Methods.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#Wen10,https://doi.org/10.1137/090758295 +Jocelyne Erhel,Flow Simulation in Three-Dimensional Discrete Fracture Networks.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#ErhelDP09,https://doi.org/10.1137/080729244 +Yu-Mei Huang,Two-Step Approach for the Restoration of Images Corrupted by Multiplicative Noise.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#HuangLZ13,https://doi.org/10.1137/120898693 +Yidu Yang,Mixed Methods for the Helmholtz Transmission Eigenvalues.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#YangBLH16,https://doi.org/10.1137/15M1050756 +Prabir Daripa,A Fast Algorithm to Solve Nonhomogeneous Cauchy-Riemann Equations in the Complex Plane.,1992,13,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc13.html#Daripa92,https://doi.org/10.1137/0913080 +Helmut Harbrecht,On the Numerical Solution of a Shape Optimization Problem for the Heat Equation.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#HarbrechtT13,https://doi.org/10.1137/110855703 +Gun Srijuntongsiri,A Condition Number Analysis of a Line-Surface Intersection Algorithm.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#SrijuntongsiriV08,https://doi.org/10.1137/060668043 +Elena Celledoni,The Exact Computation of the Free Rigid Body Motion and Its Use in Splitting Methods.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#CelledoniFSZ08,https://doi.org/10.1137/070704393 +Mark Ainsworth,Is the Multigrid Method Fault Tolerant? The Two-Grid Case.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#AinsworthG17,https://doi.org/10.1137/16M1100691 +Neil N. Carlson,Design and Application of a Gradient-Weighted Moving Finite Element Code II: in Two Dimensions.,1998,19,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc19.html#CarlsonM98a,https://doi.org/10.1137/S1064827594269561 +Fabian Schury,Efficient Two-Scale Optimization of Manufacturable Graded Structures.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#SchurySW12,https://doi.org/10.1137/110850335 +Christopher M. Kuster,Fast Numerical Methods for Bernoulli Free Boundary Problems.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#KusterGT07,https://doi.org/10.1137/06065444X +Matthias Heinkenschloss,Neumann-Neumann Domain Decomposition Preconditioners for Linear-Quadratic Elliptic Optimal Control Problems.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#HeinkenschlossN06,https://doi.org/10.1137/040612774 +Stefano Trazzi,Adaptive and Recursive Time Relaxed Monte Carlo Methods for Rarefied Gas Dynamics.,2009,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#TrazziPW09,https://doi.org/10.1137/07069119X +Lizhen Qin,Optimized Schwarz Methods with Robin Transmission Conditions for Parabolic Problems.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#QinX08,https://doi.org/10.1137/070682149 +Steven Huss-Lederman,A Parallelizable Eigensolver for Real Diagonalizable Matrices with Real Eigenvalues.,1997,18,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc18.html#Huss-LedermanTT97,https://doi.org/10.1137/S1064827592228833 +Thomas G. Fai,Erratum: Immersed Boundary Method for Variable Viscosity and Variable Density Problems Using Fast Constant-Coefficient Linear Solvers I: Numerical Method and Results.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#FaiGMP14a,https://doi.org/10.1137/140967295 +Marc Garbey,A Schwarz Alternating Procedure for Singular Perturbation Problems.,1996,17,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc17.html#Garbey96,https://doi.org/10.1137/S1064827593258437 +Brett W. Bader,Curvilinear Linesearch for Tensor Methods.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#BaderS03,https://doi.org/10.1137/S1064827502406658 +Margreet Nool,A Parallel Jacobi-Davidson-type Method for Solving Large Generalized Eigenvalue Problems in Magnetohydrodynamics.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#NoolP00,https://doi.org/10.1137/S106482759933290X +Debojyoti Ghosh,Semi-implicit Time Integration of Atmospheric Flows with Characteristic-Based Flux Partitioning.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#GhoshC16,https://doi.org/10.1137/15M1044369 +Liviu Gr. Ixaru,Fast Computation of the Slater Integrals.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#IxaruSS06,https://doi.org/10.1137/050641004 +Sebastian Reich,A Nonparametric Ensemble Transform Method for Bayesian Inference.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#Reich13,https://doi.org/10.1137/130907367 +Bengt Fornberg,A Pseudospectral Approach for Polar and Spherical Geometries.,1995,16,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc16.html#Fornberg95,https://doi.org/10.1137/0916061 +David Kay,A Preconditioner for the Steady-State Navier-Stokes Equations.,2002,24,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc24.html#KayLW02,https://doi.org/10.1137/S106482759935808X +Achiya Dax,A Modified Iterative Refinement Scheme.,2004,25,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc25.html#Dax04,https://doi.org/10.1137/S1064827502409055 +Niccolò Dal Santo,Multi Space Reduced Basis Preconditioners for Large-Scale Parametrized PDEs.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#SantoDMQ18,https://doi.org/10.1137/16M1089149 +Rongliang Chen,Parallel One-Shot Lagrange-Newton-Krylov-Schwarz Algorithms for Shape Optimization of Steady Incompressible Flows.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#ChenC12,https://doi.org/10.1137/110830769 +Jingwei Hu,A Stochastic Galerkin Method for Hamilton-Jacobi Equations with Uncertainty.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#HuJX15,https://doi.org/10.1137/140990930 +Enver Kayaaslan,1.5D Parallel Sparse Matrix-Vector Multiply.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#KayaaslanAU18,https://doi.org/10.1137/16M1105591 +Mapundi K. Banda,A Stability Notion for Lattice Boltzmann Equations.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#BandaYK06,https://doi.org/10.1137/040606211 +Emmanuil H. Georgoulis,Norm Preconditioners for Discontinuous Galerkin hp-Finite Element Methods.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#GeorgoulisL08,https://doi.org/10.1137/060661612 +Nicolas Fiétier,A Meshless Particle Method for Poisson and Diffusion Problems with Discontinuous Coefficients and Inhomogeneous Boundary Conditions.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#FietierDS13,https://doi.org/10.1137/120889290 +Din-Kow Sun,Construction of Nearly Orthogonal Nedelec Bases for Rapid Convergence with Multilevel Preconditioned Solvers.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#SunLC01,https://doi.org/10.1137/S1064827500367531 +Ioannis Toulopoulos,Numerical Methods for Power-Law Diffusion Problems.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#ToulopoulosW17,https://doi.org/10.1137/16M1067792 +B. Lee,Guidance for Choosing Multigrid Preconditioners for Systems of Elliptic Partial Differential Equations.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#Lee09,https://doi.org/10.1137/070703636 +Chad Lieberman,Parameter and State Model Reduction for Large-Scale Statistical Inverse Problems.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#LiebermanWG10,https://doi.org/10.1137/090775622 +C. W. Wang,A Real Ghost Fluid Method for the Simulation of Multimedium Compressible Flow.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#WangLK06,https://doi.org/10.1137/030601363 +Michele Benzi,Analysis of Augmented Lagrangian-Based Preconditioners for the Steady Incompressible Navier-Stokes Equations.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#BenziW11,https://doi.org/10.1137/100797989 +Jirí Maryska,Schur Complement Systems in the Mixed-Hybrid Finite Element Approximation of the Potential Fluid Flow Problem.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#MaryskaRT00,https://doi.org/10.1137/S1064827598339608 +Michael K. Ng,Fast Recursive Least Squares Adaptive Filtering by Fast Fourier Transform-Based Conjugate Gradient Iterations.,1996,17,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc17.html#NgP96,https://doi.org/10.1137/0917060 +Francis Filbet,Numerical Simulations of Kinetic Models for Chemotaxis.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#FilbetY14,https://doi.org/10.1137/130910208 +Felix Anker,SDE Based Regression for Linear Random PDEs.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#AnkerBELNS17,https://doi.org/10.1137/16M1060637 +Zdenek Strakos,On Efficient Numerical Approximation of the Bilinear Form c*A-1b.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#StrakosT11,https://doi.org/10.1137/090753723 +Peter W. Glynn,Analysis of Initial Transient Deletion for Parallel Steady-State Simulations.,1992,13,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc13.html#GlynnH92,https://doi.org/10.1137/0913054 +Teresa Reginska,A Regularization Parameter in Discrete Ill-Posed Problems.,1996,17,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc17.html#Reginska96,https://doi.org/10.1137/S1064827593252672 +Sébastien Lacroix,Iterative Solution Methods for Modeling Multiphase Flow in Porous Media Fully Implicitly.,2003,25,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc25.html#LacroixVWW03,https://doi.org/10.1137/S106482750240443X +Michael J. Rempe,A Predictor-Corrector Algorithm for Reaction-Diffusion Equations Associated with Neural Activity on Branched Structures.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#RempeC06,https://doi.org/10.1137/050643210 +Luca F. Pavarino,Multilevel Additive Schwarz Preconditioners for the Bidomain Reaction-Diffusion System.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#PavarinoS08,https://doi.org/10.1137/070706148 +Raimund Bürger,Coupling of Discontinuous Galerkin Schemes for Viscous Flow in Porous Media with Adsorption.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#BurgerKRT18,https://doi.org/10.1137/17M1125820 +Juan J. García-Ripoll,Optimizing Schrödinger Functionals Using Sobolev Gradients: Applications to Quantum Mechanics and Nonlinear Optics.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#Garcia-RipollP01,https://doi.org/10.1137/S1064827500377721 +Alfio Quarteroni,An Interface-Strip Domain Decomposition Preconditioner.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#QuarteroniSV06,https://doi.org/10.1137/04061057X +Jan Nordström,Error Bounded Schemes for Time-dependent Hyperbolic Problems.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#Nordstrom07,https://doi.org/10.1137/060654943 +Gene H. Golub,A Stable Numerical Method for Inverting Shape from Moments.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#GolubMV99,https://doi.org/10.1137/S1064827597328315 +Thomas F. Coleman,Computing a Trust Region Step for a Penalty Function.,1990,11,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc11.html#ColemanH90,https://doi.org/10.1137/0911012 +Marc Garbey,On Some Applications of the Superposition Principle with Fourier Basis.,2000,22,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc22.html#Garbey00,https://doi.org/10.1137/S1064827597328133 +Yogi A. Erlangga,A Novel Multigrid Based Preconditioner For Heterogeneous Helmholtz Problems.,2006,27,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc27.html#ErlanggaOV06,https://doi.org/10.1137/040615195 +Margherita Porcelli,Preconditioning of Active-Set Newton Methods for PDE-constrained Optimal Control Problems.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#PorcelliST15,https://doi.org/10.1137/140975711 +Antti Lipponen,Correction of Model Reduction Errors in Simulations.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#LipponenHRKK18,https://doi.org/10.1137/15M1052421 +Dominic E. Charrier,Symmetric Interior Penalty Discontinuous Galerkin Discretizations and Block Preconditioning for Heterogeneous Stokes Flow.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#CharrierMS17,https://doi.org/10.1137/16M1084912 +Lizhen Qin,Finite Element Formulation in Flat Coordinate Spaces to Solve Elliptic Problems on General Closed Riemannian Manifolds.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#QinZZ14,https://doi.org/10.1137/110854722 +Lei-Hong Zhang,A Krylov Subspace Method for Large-Scale Second-Order Cone Linear Complementarity Problem.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#ZhangYSL15,https://doi.org/10.1137/140995064 +Olaf Schenk,On Large-Scale Diagonalization Techniques for the Anderson Model of Localization.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#SchenkBR06,https://doi.org/10.1137/050637649 +Minghua Chen,High Order Algorithms for the Fractional Substantial Diffusion Equation with Truncated Lévy Flights.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#ChenD15,https://doi.org/10.1137/14097207X +Mari Paz Calvo,High-Order Symplectic Runge-Kutta-Nyström Methods.,1993,14,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc14.html#CalvoS93a,https://doi.org/10.1137/0914073 +Weizhu Bao,Efficient and Stable Numerical Methods for the Generalized and Vector Zakharov System.,2005,26,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc26.html#BaoS05a,https://doi.org/10.1137/030600941 +Gabriel N. Gatica,A Preconditioned MINRES Method for the Coupling of Mixed-FEM and BEM for Some Nonlinear Problems.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#GaticaH02,https://doi.org/10.1137/S106482750138887X +Kendall E. Atkinson,Iterative Solution of Linear Systems Arising from the Boundary Integral Method.,1992,13,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc13.html#AtkinsonG92,https://doi.org/10.1137/0913041 +Victorita Dolean,Optimized Schwarz Methods for Maxwell's Equations.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#DoleanGG09,https://doi.org/10.1137/080728536 +Markus Huber 0004,Resilience for Massively Parallel Multigrid Solvers.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#HuberGRW16,https://doi.org/10.1137/15M1026122 +Uri M. Ascher,Sequential Regularization Methods for Nonlinear Higher-Index DAEs.,1997,18,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc18.html#AscherL97,https://doi.org/10.1137/S1064827595287778 +Barry F. Smith,A Parallel Implementation of an Iterative Substructuring Algorithm for Problems in Three Dimensions.,1993,14,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc14.html#Smith93,https://doi.org/10.1137/0914025 +Eleuterio F. Toro,Advection-Diffusion-Reaction Equations: Hyperbolization and High-Order ADER Discretizations.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#ToroM14,https://doi.org/10.1137/130937469 +Marián Slodicka,A Robust and Efficient Linearization Scheme for Doubly Nonlinear and Degenerate Parabolic Problems Arising in Flow in Porous Media.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#Slodicka02,https://doi.org/10.1137/S1064827500381860 +Anne Greenbaum,GMRES/CR and Arnoldi/Lanczos as Matrix Approximation Problems.,1994,15,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc15.html#GreenbaumT94,https://doi.org/10.1137/0915025 +Roberto Cavoretto,A Trivariate Interpolation Algorithm Using a Cube-Partition Searching Procedure.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#CavorettoR15,https://doi.org/10.1137/140989157 +L. L. Stell,A Fixed Domain Method for Injection Governed by the Stokes Equations.,1995,16,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc16.html#StellS95,https://doi.org/10.1137/0916047 +Lars Ferm,Adaptive Error Control for Steady State Solutions of Inviscid Flow.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#FermL02,https://doi.org/10.1137/S1064827500367452 +David W. Zingg,Comparison of High-Accuracy Finite-Difference Methods for Linear Wave Propagation.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#Zingg00,https://doi.org/10.1137/S1064827599350320 +Christian Boehm,A Semismooth Newton-CG Method for Constrained Parameter Identification in Seismic Tomography.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#BoehmU15,https://doi.org/10.1137/140968331 +Ning Du,A Fast Finite Element Method for Space-Fractional Dispersion Equations on Bounded Domains in and#8477*2.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#DuW15,https://doi.org/10.1137/15M1007458 +Tuomo Rossi,A Parallel Fast Direct Solver for Block Tridiagonal Systems with Separable Matrices of Arbitrary Dimension.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#RossiT99,https://doi.org/10.1137/S1064827597317016 +Hisham Bin Zubair,Multigrid for High-Dimensional Elliptic Partial Differential Equations on Non-equidistant Grids.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#ZubairOW07,https://doi.org/10.1137/060665695 +Ivan V. Oseledets,Tensor-Train Decomposition.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#Oseledets11,https://doi.org/10.1137/090752286 +Sjoerd Geevers,Sharp Penalty Term and Time Step Bounds for the Interior Penalty Discontinuous Galerkin Method for Linear Hyperbolic Problems.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#GeeversV17,https://doi.org/10.1137/16M1091290 +Jeff R. Cash,A Variable Step Runge-Kutta-Nyström Integrator for Reversible Systems of Second Order Initial Value Problems.,2005,26,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc26.html#Cash05,https://doi.org/10.1137/S030601727 +Lin Mu,A Least-Squares-Based Weak Galerkin Finite Element Method for Second Order Elliptic Equations.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#MuWY17,https://doi.org/10.1137/16M1083244 +Tom Gustafsson,A Posteriori Estimates for Conforming Kirchhoff Plate Elements.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#GustafssonSV18,https://doi.org/10.1137/17M1137334 +Armin Fügenschuh,A Discrete Optimization Approach to Large Scale Supply Networks Based on Partial Differential Equations.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#FugenschuhGHKM08,https://doi.org/10.1137/060663799 +Benjamin Peherstorfer,Localized Discrete Empirical Interpolation Method.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#PeherstorferBWB14,https://doi.org/10.1137/130924408 +Michele Benzi,An Augmented Lagrangian-Based Approach to the Oseen Problem.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#BenziO06,https://doi.org/10.1137/050646421 +Robert I. A. Patterson,The Linear Process Deferment Algorithm: A new technique for solving population balance equations.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#PattersonSBKN06,https://doi.org/10.1137/040618953 +Ariful Azad,Exploiting Multiple Levels of Parallelism in Sparse Matrix-Matrix Multiplication.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#AzadBBDGSTW16,https://doi.org/10.1137/15M104253X +David Fritzsche,Overlapping Blocks by Growing a Partition with Applications to Preconditioning.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#FritzscheFSS13,https://doi.org/10.1137/100803821 +Peter Gangl,Shape Optimization of an Electric Motor Subject to Nonlinear Magnetostatics.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#GanglLLMS15,https://doi.org/10.1137/15100477X +Martin J. Gander,PARAEXP: A Parallel Integrator for Linear Initial-Value Problems.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#GanderG13,https://doi.org/10.1137/110856137 +John W. Pearson,Fast Iterative Solution of Reaction-Diffusion Control Problems Arising from Chemical Processes.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#PearsonS13,https://doi.org/10.1137/120892003 +Paolo Bientinesi,A Parallel Eigensolver for Dense Symmetric Matrices Based on Multiple Relatively Robust Representations.,2005,27,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc27.html#BientinesiDG05,https://doi.org/10.1137/030601107 +Chao Yang 0001,A Trust Region Direct Constrained Minimization Algorithm for the Kohn-Sham Equation.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#YangMW07,https://doi.org/10.1137/060661442 +James Nance,A Sparse Interpolation Algorithm for Dynamical Simulations in Computational Chemistry.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#NanceK15,https://doi.org/10.1137/140965284 +Norman Yarvin,Generalized Gaussian Quadratures and Singular Value Decompositions of Integral Operators.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#YarvinR98,https://doi.org/10.1137/S1064827596310779 +Matthias Bollhöfer,Algebraic Multilevel Preconditioner for the Helmholtz Equation in Heterogeneous Media.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#BollhoferGS09,https://doi.org/10.1137/080725702 +Christopher A. Leibs,Nested Iteration and First-Order Systems Least Squares for a Two-Fluid Electromagnetic Darwin Model.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#LeibsM15,https://doi.org/10.1137/14097793X +Kevin T. Joyce,Point Spread Function Estimation in X-Ray Imaging with Partially Collapsed Gibbs Sampling.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#JoyceBL18,https://doi.org/10.1137/17M1149250 +H. J. Taijeron,Spline Interpolation and Smoothing on Hyperspheres.,1994,15,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc15.html#TaijeronGC94,https://doi.org/10.1137/0915068 +Yassine Boubendir,Acceleration of an Iterative Method for the Evaluation of High-Frequency Multiple Scattering Effects.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#BoubendirER17,https://doi.org/10.1137/16M1080501 +Shelvean Kapita,Residual-Based Adaptivity and PWDG Methods for the Helmholtz Equation.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#KapitaMW15,https://doi.org/10.1137/140967696 +Danny C. Sorensen,A DEIM Induced CUR Factorization.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#SorensenE16,https://doi.org/10.1137/140978430 +Matthias Kirchhart,A Smooth Partition of Unity Finite Element Method for Vortex Particle Regularization.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#KirchhartO17,https://doi.org/10.1137/17M1116258 +Stefan Röllin,Improving the Accuracy of GMRes with Deflated Restarting.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#RollinF07,https://doi.org/10.1137/060656127 +Matthias Kunik,A BGK-Type Flux-Vector Splitting Scheme for the Ultrarelativistic Euler Equations.,2004,26,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc26.html#KunikQW04,https://doi.org/10.1137/S1064827503422208 +Ranjit M. Passi,A Convolution Algorithm with Application to Data Assimilation.,1996,17,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc17.html#PassiGLD96,https://doi.org/10.1137/0917061 +Gang Bao,Computation of Pseudo-Differential Operators.,1996,17,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc17.html#BaoS96,https://doi.org/10.1137/S1064827593258279 +Silvia Bonettini,A Variable Metric Forward-Backward Method with Extrapolation.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#BonettiniPR16,https://doi.org/10.1137/15M1025098 +Amin Boumenir,Sampling and Eigenvalues of Non-Self-Adjoint Sturm-Liouville Problems.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#Boumenir01,https://doi.org/10.1137/S1064827500374078 +Christian Clason,The Quasi-Reversibility Method for Thermoacoustic Tomography in a Heterogeneous Medium.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#ClasonK07,https://doi.org/10.1137/06066970X +Marco Discacciati,Numerical Approximation of Internal Discontinuity Interface Problems.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#DiscacciatiQQ13,https://doi.org/10.1137/110850487 +Robert I. McLachlan,On the Numerical Integration of Ordinary Differential Equations by Symmetric Composition Methods.,1995,16,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc16.html#McLachlan95,https://doi.org/10.1137/0916010 +Christoph Lehrenfeld,The Nitsche XFEM-DG Space-Time Method and its Implementation in Three Space Dimensions.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#Lehrenfeld15,https://doi.org/10.1137/130943534 +Do Y. Kwak,V-Cycle Multigrid for Cell-Centered Finite Differences.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#Kwak99,https://doi.org/10.1137/S1064827597327310 +T. G. Liu,The Modified Ghost Fluid Method for Coupling of Fluid and Structure Constituted with Hydro-Elasto-Plastic Equation of State.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#LiuXK08,https://doi.org/10.1137/050647013 +Chen Greif,A Note on the Convergence of SOR for the PageRank Problem.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#GreifK11,https://doi.org/10.1137/110823523 +Snorre H. Christiansen,Constraint Preserving Schemes for Some Gauge Invariant Wave Equations.,2009,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#Christiansen09,https://doi.org/10.1137/070690900 +Ana Alonso Rodriguez,New Nonoverlapping Domain Decomposition Methods for the Harmonic Maxwell System.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#RodriguezG06,https://doi.org/10.1137/040608696 +Weizhang Huang,A Simple Adaptive Grid Method in Two Dimensions.,1994,15,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc15.html#HuangS94,https://doi.org/10.1137/0915049 +Xiao-Wen Chang,Computation of a Test Statistic in Data Quality Control.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#ChangPT05,https://doi.org/10.1137/030601557 +Tony F. Chan,High-Order Total Variation-Based Image Restoration.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#ChanMM00,https://doi.org/10.1137/S1064827598344169 +John A. Trangenstein,Adaptive Mesh Refinement for Wave Propagation in Nonlinear Solids.,1995,16,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc16.html#Trangenstein95,https://doi.org/10.1137/0916048 +Craig C. Douglas,Fast Hybrid Solution of Algebraic Systems.,1990,11,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc11.html#DouglasMM90,https://doi.org/10.1137/0911060 +Robert C. Kirby,Low-Complexity Finite Element Algorithms for the de Rham Complex on Simplices.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#Kirby14,https://doi.org/10.1137/130927693 +Udo Ziegler,Block-Structured Adaptive Mesh Refinement on Curvilinear-Orthogonal Grids.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#Ziegler12,https://doi.org/10.1137/110843940 +Robert D. Skeel,What Makes Molecular Dynamics Work?,2009,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#Skeel09,https://doi.org/10.1137/070683660 +Gregor Gassner,A Comparison of the Dispersion and Dissipation Errors of Gauss and Gauss-Lobatto Discontinuous Galerkin Spectral Element Methods.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#GassnerK11,https://doi.org/10.1137/100807211 +Alessandro Alla,An Efficient Policy Iteration Algorithm for Dynamic Programming Equations.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#AllaFK15,https://doi.org/10.1137/130932284 +Torben Pätz,Composite Finite Elements for a Phase Change Model.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#PatzP12,https://doi.org/10.1137/110853935 +Tong Qin,Implicit Positivity-Preserving High-Order Discontinuous Galerkin Methods for Conservation Laws.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#QinS18,https://doi.org/10.1137/17M112436X +Desmond J. Higham,Phase Space Error Control for Dynamical Systems.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#HighamHW00,https://doi.org/10.1137/S1064827597331400 +Stefano Berrone,A PDE-Constrained Optimization Formulation for Discrete Fracture Network Flows.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#BerronePS13a,https://doi.org/10.1137/120865884 +Zhongxiao Jia,A Refined Harmonic Lanczos Bidiagonalization Method and an Implicitly Restarted Algorithm for Computing the Smallest Singular Triplets of Large Matrices.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#JiaN10,https://doi.org/10.1137/080733383 +Pauline Lafitte,Asymptotic-preserving Projective Integration Schemes for Kinetic Equations in the Diffusion Limit.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#LafitteS12,https://doi.org/10.1137/100795954 +Geoffrey Womeldorff,Unified Matching Grids for Multidomain Multiphysics Simulations.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#WomeldorffPGR13,https://doi.org/10.1137/130906611 +Paul N. Swarztrauber,On Computing the Points and Weights for Gauss-Legendre Quadrature.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#Swarztrauber03,https://doi.org/10.1137/S1064827500379690 +Roland Pulch,Variational Methods for Solving Warped Multirate Partial Differential Algebraic Equations.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#Pulch08,https://doi.org/10.1137/050638886 +Tony F. Chan,A Note on the Efficiency of Domain Decomposed Incomplete Factorizations.,1990,11,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc11.html#ChanG90,https://doi.org/10.1137/0911046 +M. Sebastian Pauletti,Igatools: An Isogeometric Analysis Library.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#PaulettiMCA15,https://doi.org/10.1137/140955252 +Christoph Winter,Wavelet Galerkin Schemes for Multidimensional Anisotropic Integrodifferential Operators.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#Winter10,https://doi.org/10.1137/090760143 +Tahar Amari,A Preconditioned Semi-Implicit Method for Magnetohydrodynamics Equations.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#AmariLJ99,https://doi.org/10.1137/S1064827596304824 +José Henrique de Morais Goulart,Low-Rank Tensor Recovery using Sequentially Optimal Modal Projections in Iterative Hard Thresholding (SeMPIHT).,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#GoulartF17,https://doi.org/10.1137/16M1062089 +Qiang Du,Constrained Centroidal Voronoi Tessellations for Surfaces.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#DuGJ03,https://doi.org/10.1137/S1064827501391576 +Alexander Kurganov,A Third-Order Semidiscrete Central Scheme for Conservation Laws and Convection-Diffusion Equations.,2000,22,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc22.html#KurganovL00,https://doi.org/10.1137/S1064827599360236 +Alex Townsend,An Extension of Chebfun to Two Dimensions.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#TownsendT13,https://doi.org/10.1137/130908002 +Michael Griebel,Parallel Domain-Oriented Multilevel Methods.,1995,16,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc16.html#Griebel95,https://doi.org/10.1137/0916064 +Joseph Kolibal,Importance of Convection and Damping on Rates of Convergence for the Lax-Wendroff Method.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#Kolibal99,https://doi.org/10.1137/S1064827597308269 +Günther Of,Coupling of Discontinuous Galerkin Finite Element and Boundary Element Methods.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#OfRST12,https://doi.org/10.1137/110848530 +James Demmel,Accurate Singular Values of Bidiagonal Matrices.,1990,11,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc11.html#DemmelK90,https://doi.org/10.1137/0911052 +Richard E. Ewing,Two-Level Local Refinement Preconditioners for Nonsymmetric and Indefinite Elliptic Problems.,1994,15,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc15.html#EwingPV94,https://doi.org/10.1137/0915010 +Jesse Chan,Weight-Adjusted Discontinuous Galerkin Methods: Curvilinear Meshes.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#ChanHW17,https://doi.org/10.1137/16M1089198 +Siegfried Cools,An Efficient Multigrid Calculation of the Far Field Map for Helmholtz and Schrödinger Equations.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#CoolsRV14,https://doi.org/10.1137/130921064 +Martin Siebenborn,Algorithmic Aspects of Multigrid Methods for Optimization in Shape Spaces.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#SiebenbornW17,https://doi.org/10.1137/16M1104561 +Fred J. Hickernell,Extensible Lattice Sequences for Quasi-Monte Carlo Quadrature.,2000,22,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc22.html#HickernellHLL00,https://doi.org/10.1137/S1064827599356638 +Antonio Márquez,Analyses of Mixed Continuous and Discontinuous Galerkin Methods for the tIme Harmonic Elasticity Problem with Reduced Symmetry.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#MarquezMT15,https://doi.org/10.1137/14099022X +C. S. Chien,Multiple Bifurcation in the von Kármán Equations.,1997,18,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc18.html#ChienC97,https://doi.org/10.1137/S106482759427364X +Anaïs Crestetto,A Hybrid Method for Anisotropic Elliptic Problems Based on the Coupling of an Asymptotic-Preserving Method with the Asymptotic Limit Model.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#CrestettoDN16,https://doi.org/10.1137/15M1011470 +Lidia Aceto,On the Construction and Properties of m-step Methods for FDEs.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#AcetoMN15,https://doi.org/10.1137/140973505 +Marc Lenoir,Evaluation of 3-D Singular and Nearly Singular Integrals in Galerkin BEM for Thin Layers.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#LenoirS12,https://doi.org/10.1137/120866567 +Gabriele Ciaramella,Newton Methods for the Optimal Control of Closed Quantum Spin Systems.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#CiaramellaBDW15,https://doi.org/10.1137/140966988 +Xiangrui Meng,LSRN: A Parallel Iterative Solver for Strongly Over- or Underdetermined Systems.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#MengSM14,https://doi.org/10.1137/120866580 +Francis Filbet,Approximation of Hyperbolic Models for Chemosensitive Movement.,2005,27,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc27.html#FilbetS05,https://doi.org/10.1137/040604054 +Murat Manguoglu,Weighted Matrix Ordering and Parallel Banded Preconditioners for Iterative Linear System Solvers.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#ManguogluKSG10,https://doi.org/10.1137/080713409 +Mario Arioli,A Note on GMRES Preconditioned by a Perturbed L D LT Decomposition with Static Pivoting.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#ArioliDGP07,https://doi.org/10.1137/060661545 +Markus Klingler,A Restart Procedure for the Finite Mass Method.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#KlinglerLY07,https://doi.org/10.1137/050641235 +Michael Carley,Moving Least Squares via Orthogonal Polynomials.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#Carley10,https://doi.org/10.1137/09076711X +Zhiming Lu,A Comparative Study on Uncertainty Quantification for Flow in Randomly Heterogeneous Media Using Monte Carlo Simulations and Conventional and KL-Based Moment-Equation Approaches.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#LuZ04,https://doi.org/10.1137/S1064827503426826 +Carl Erik Wasberg,Optimal Decomposition of the Domain in Spectral Methods for Wave-Like Phenomena.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#WasbergG00,https://doi.org/10.1137/S1064827597322306 +Zaiwen Wen,Adaptive Regularized Self-Consistent Field Iteration with Exact Hessian for Electronic Structure Calculation.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#WenMUZ13,https://doi.org/10.1137/120894385 +Lexing Ying,Sparse Fourier Transform via Butterfly Algorithm.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#Ying09,https://doi.org/10.1137/08071291X +Shuhuang Xiang,The Fast Implementation of Higher Order Hermite-Fejér Interpolation.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#XiangH15,https://doi.org/10.1137/140971488 +Osni Marques,Benefits of IEEE-754 Features in Modern Symmetric Tridiagonal Eigensolvers.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#MarquesRV06,https://doi.org/10.1137/050641624 +Olivier Zahm,Projection-Based Model Order Reduction Methods for the Estimation of Vector-Valued Variables of Interest.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#ZahmFN17,https://doi.org/10.1137/16M106385X +William R. Ferng,Mesh Independence of Matrix-Free Methods for Path Following.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#FerngK00,https://doi.org/10.1137/S1064827598339360 +Nicolas Crouseilles,Numerical Schemes for Kinetic Equations in the Anomalous Diffusion Limit. Part II: Degenerate Collision Frequency.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#CrouseillesHL16a,https://doi.org/10.1137/15M1053190 +Shen Wang,Efficient Scalable Algorithms for Solving Dense Linear Systems with Hierarchically Semiseparable Structures.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#WangLXSH13,https://doi.org/10.1137/110848062 +Habib Ammari,Asymptotic Imaging of Perfectly Conducting Cracks.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#AmmariKLP10,https://doi.org/10.1137/090749013 +Simone Deparis,A Rescaled Localized Radial Basis Function Interpolation on Non-Cartesian and Nonconforming Grids.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#DeparisFQ14,https://doi.org/10.1137/130947179 +Howard C. Elman,Line Iterative Methods for Cyclically Reduced Discrete Convection-Diffusion Problems.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#ElmanG92,https://doi.org/10.1137/0913018 +Stephan Gadau,A Three-Dimensional Mixed Finite-Element Approximation of the Semiconductor Energy-Transport Equations.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#GadauJ08,https://doi.org/10.1137/070706276 +David Dereudre,Exact Simulation of Brownian Diffusions with Drift Admitting Jumps.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#DereudreMR17,https://doi.org/10.1137/16M107699X +Qinghai Zhang,Fourth-Order Interface Tracking in Two Dimensions via an Improved Polygonal Area Mapping Method.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#ZhangF14,https://doi.org/10.1137/140951886 +Michael Mascagni,Monte Carlo Methods for Calculating Some Physical Properties of Large Molecules.,2004,26,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc26.html#MascagniS04,https://doi.org/10.1137/S1064827503422221 +Ernst Hairer,Reversible Long-Term Integration with Variable Stepsizes.,1997,18,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc18.html#HairerS97,https://doi.org/10.1137/S1064827595285494 +Martin J. Gander,Analysis of Two Parareal Algorithms for Time-Periodic Problems.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#GanderJSZ13,https://doi.org/10.1137/130909172 +Yuezheng Gong,Second Order Fully Discrete Energy Stable Methods on Staggered Grids for Hydrodynamic Phase Field Models of Binary Viscous Fluids.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#GongZW18,https://doi.org/10.1137/17M1135451 +David Kay,Efficient Numerical Solution of Cahn-Hilliard-Navier-Stokes Fluids in 2D.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#KayW07,https://doi.org/10.1137/050648110 +Sarah W. Gaaf,The Infinite Bi-Lanczos Method for Nonlinear Eigenvalue Problems.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#GaafJ17,https://doi.org/10.1137/16M1084195 +Benjamin Peherstorfer,Data-Driven Reduced Model Construction with Time-Domain Loewner Models.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#PeherstorferGW17,https://doi.org/10.1137/16M1094750 +Chris Anderson,Rapid Computation of the Discrete Fourier Transform.,1996,17,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc17.html#AndersonD96,https://doi.org/10.1137/0917059 +Luke Olson,Algebraic Multigrid Preconditioning of High-Order Spectral Elements for Elliptic Problems on a Simplicial Mesh.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#Olson07,https://doi.org/10.1137/060663465 +Johnathan M. Bardsley,Randomize-Then-Optimize: A Method for Sampling from Posterior Distributions in Nonlinear Inverse Problems.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#BardsleySHL14,https://doi.org/10.1137/140964023 +Gilles Vilmart,Postprocessed Integrators for the High Order Integration of Ergodic SDEs.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#Vilmart15,https://doi.org/10.1137/140974328 +Huosheng Sun,An Overdetermined Schwarz Alternating Method.,1996,17,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc17.html#SunT96,https://doi.org/10.1137/0917057 +David J. Knezevic,A Certified Reduced Basis Method for the Fokker--Planck Equation of Dilute Polymeric Fluids: FENE Dumbbells in Extensional Flow.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#KnezevicP10,https://doi.org/10.1137/090759239 +Dalin Tang,A Free Moving Boundary Model and Boundary Iteration Method for Unsteady Viscous Flow in Stenotic Elastic Tubes.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#TangY99,https://doi.org/10.1137/S1064827597315686 +Tobias Jahnke,Long-Time-Step Integrators for Almost-Adiabatic Quantum Dynamics.,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#Jahnke04,https://doi.org/10.1137/S1064827502411316 +Ann S. Almgren,A Numerical Method for the Incompressible Navier-Stokes Equations Based on an Approximate Projection.,1996,17,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc17.html#AlmgrenBS96,https://doi.org/10.1137/S1064827593244213 +Rafael Bru,Balanced Incomplete Factorization.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#BruMMT08,https://doi.org/10.1137/070696088 +Siegfried M. Rump,Ultimately Fast Accurate Summation.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#Rump09,https://doi.org/10.1137/080738490 +Christian Bayer 0001,On NonAsymptotic Optimal Stopping Criteria in Monte Carlo Simulations.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#BayerHST14,https://doi.org/10.1137/130911433 +Patrick M. Knupp,Algebraic Mesh Quality Metrics.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#Knupp01,https://doi.org/10.1137/S1064827500371499 +Shao-Liang Zhang,GPBi-CG: Generalized Product-type Methods Based on Bi-CG for Solving Nonsymmetric Linear Systems.,1997,18,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc18.html#Zhang97,https://doi.org/10.1137/S1064827592236313 +Jiayang Sun,Some Practical Aspects of Exploratory Projection Pursuit.,1993,14,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc14.html#Sun93,https://doi.org/10.1137/0914005 +Richard K. Beatson,Fast Evaluation of Radial Basis Functions: Moment-Based Methods.,1998,19,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc19.html#BeatsonN98,https://doi.org/10.1137/S1064827595293569 +Huiyuan Li,Efficient Spectral and Spectral Element Methods for Eigenvalue Problems of Schrödinger Equations with an Inverse Square Potential.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#LiZ17,https://doi.org/10.1137/16M1069596 +Junichi Imai,An Accelerating Quasi-Monte Carlo Method for Option Pricing Under the Generalized Hyperbolic L[e-acute]vy Process.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#ImaiT09,https://doi.org/10.1137/080727713 +Gary R. Marple,A Fast Algorithm for Simulating Multiphase Flows Through Periodic Geometries of Arbitrary Shape.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#MarpleBGV16,https://doi.org/10.1137/15M1043066 +Laura Grigori,Communication Avoiding ILU0 Preconditioner.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#GrigoriM15,https://doi.org/10.1137/130930376 +Samuel Herrmann,The First-passage Time of the Brownian Motion to a Curved Boundary: an Algorithmic Approach.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#HerrmannT16,https://doi.org/10.1137/151006172 +Christos Arvanitis,Behavior of Finite Volume Schemes for Hyperbolic Conservation Laws on Adaptive Redistributed Spatial Grids.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#ArvanitisD06,https://doi.org/10.1137/050632853 +William D. Gropp,Domain Decomposition with Local Mesh Refinement.,1992,13,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc13.html#GroppK92a,https://doi.org/10.1137/0913057 +Kevin Burrage,Numerical Methods for Second-Order Stochastic Differential Equations.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#BurrageLL07,https://doi.org/10.1137/050646032 +Andrei Schaffer,Stability of the Adjoint Differential-Algebraic Equation of the Index-3 Multibody System Equation of Motion.,2005,26,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc26.html#Schaffer05,https://doi.org/10.1137/030601983 +Mohamed M. S. Nasser,A Fast Boundary Integral Equation Method for Conformal Mapping of Multiply Connected Regions.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#NasserA13,https://doi.org/10.1137/120901933 +Johannes Kraus 0001,Additive Schur Complement Approximation and Application to Multilevel Preconditioning.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#Kraus12,https://doi.org/10.1137/110845082 +Tao Xiong,High Order Maximum-Principle-Preserving Discontinuous Galerkin Method for Convection-Diffusion Equations.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#XiongQX15,https://doi.org/10.1137/140965326 +Nadine Aubry,Preserving Symmetries in the Proper Orthogonal Decomposition.,1993,14,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc14.html#AubryLT93,https://doi.org/10.1137/0914030 +Benjamin Peherstorfer,A Multigrid Method for Adaptive Sparse Grids.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#PeherstorferZZB15,https://doi.org/10.1137/140974985 +Bracy H. Elton,Comparisons of Lattice Boltzmann and Finite Difference Methods for a Two-Dimensional Viscous Burgers Equation.,1996,17,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc17.html#Elton96,https://doi.org/10.1137/0917052 +Valmor F. De Almeida,Construction of Solution Curves for Large Two-Dimensional Problems of Steady-State Flows of Incompressible Fluids.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#AlmeidaD00,https://doi.org/10.1137/S1064827598334514 +Wilhelm Heinrichs,Defect Correction for Convection-Dominated Flow.,1996,17,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc17.html#Heinrichs96,https://doi.org/10.1137/S1064827593243736 +Uri M. Ascher,On Effective Methods for Implicit Piecewise Smooth Surface Recovery.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#AscherHH06,https://doi.org/10.1137/040617261 +Erik Burman,A Stabilized Cut Finite Element Method for the Three Field Stokes Problem.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#BurmanCM15,https://doi.org/10.1137/140983574 +Catherine Kublik,Algorithms for Area Preserving Flows.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#KublikEF11,https://doi.org/10.1137/100815542 +Finbarr O'Sullivan,Sensitivity Analysis for Regularized Estimation in Some System Identification Problems.,1991,12,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc12.html#OSullivan91,https://doi.org/10.1137/0912068 +Martin J. Gander,Optimized Schwarz Methods without Overlap for the Helmholtz Equation.,2002,24,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc24.html#GanderMN02,https://doi.org/10.1137/S1064827501387012 +Maurizio Falcone,A Finite-Difference Approximation of a Two-Layer System for Growing Sandpiles.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#FalconeV06,https://doi.org/10.1137/050629410 +Volker Betz,Nonadiabatic Transitions Through Tilted Avoided Crossings.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#BetzG11,https://doi.org/10.1137/100802347 +Subhendu Bikash Hazra,Multigrid One-shot Method for Aerodynamic Shape Optimization.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#Hazra08,https://doi.org/10.1137/060656498 +Michael Griebel,Space-Time Approximation with Sparse Grids.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#GriebelOV06,https://doi.org/10.1137/050629252 +Erik Lehto,A Radial Basis Function (RBF) Compact Finite Difference (FD) Scheme for Reaction-Diffusion Equations on Surfaces.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#LehtoSW17,https://doi.org/10.1137/16M1095457 +Jorgen L. Nikolajsen,Fractional Significant Digits.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#Nikolajsen13,https://doi.org/10.1137/110828435 +Nicholas J. Higham,Fast Polar Decomposition of an Arbitrary Matrix.,1990,11,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc11.html#HighamS90,https://doi.org/10.1137/0911038 +Eunok Jung,Two-Dimensional Simulations of Valveless Pumping Using the Immersed Boundary Method.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#JungP01,https://doi.org/10.1137/S1064827500366094 +Jörg Kampen,Monte Carlo Greeks for Financial Products via Approximative Transition Densities.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#KampenKS08,https://doi.org/10.1137/070682198 +Leandro Farina,Evaluation of Single Layer Potentials over Curved Surfaces.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#Farina01,https://doi.org/10.1137/S1064827599363393 +Ryadh Haferssas,An Additive Schwarz Method Type Theory for Lions's Algorithm and a Symmetrized Optimized Restricted Additive Schwarz Method.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#HaferssasJN17,https://doi.org/10.1137/16M1060066 +Tony F. Chan,Analysis of Projection Methods for Solving Linear Systems with Multiple Right-Hand Sides.,1997,18,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc18.html#ChanW97,https://doi.org/10.1137/S1064827594273067 +Nick Alger,A Data Scalable Augmented Lagrangian KKT Preconditioner for Large-Scale Inverse Problems.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#AlgerVBG17,https://doi.org/10.1137/16M1084365 +Barna L. Bihari,Multiresolution Schemes for the Numerical Solution of 2-D Conservation Laws I.,1997,18,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc18.html#BihariH97,https://doi.org/10.1137/S1064827594278848 +Abeer Aldoghaither,Modulating Functions Based Algorithm for the Estimation of the Coefficients and Differentiation Order for a Space-Fractional Advection-Dispersion Equation.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#AldoghaitherLL15,https://doi.org/10.1137/15M1008993 +Raz Kupferman,A Central-Difference Scheme for a Pure Stream Function Formulation of Incompressible Viscous Flow.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#Kupferman01,https://doi.org/10.1137/S1064827500373395 +Piero Barone,Fast Deconvolution by a Two-Step Method.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#Barone99,https://doi.org/10.1137/S1064827597307100 +Pierluigi Amodio,A Parallel Gauss-Seidel Method for Block Tridiagonal Linear Systems.,1995,16,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc16.html#AmodioM95,https://doi.org/10.1137/0916084 +Angelo Marcello Anile,Assessment of a High Resolution Centered Scheme for the Solution of Hydrodynamical Semiconductor Equations.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#AnileNP01,https://doi.org/10.1137/S1064827599361588 +Stephen J. Thomas,A Schwarz Preconditioner for the Cubed-Sphere.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#ThomasDTF03,https://doi.org/10.1137/S1064827502409420 +Jim E. Jones,A Multigrid Method for Variable Coefficient Maxwell's Equations.,2006,27,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc27.html#JonesL06,https://doi.org/10.1137/040608283 +Jianjun Cui,Equidistribution on the Sphere.,1997,18,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc18.html#CuiF97,https://doi.org/10.1137/S1064827595281344 +Jianxian Qiu,A Comparison of Troubled-Cell Indicators for Runge-Kutta Discontinuous Galerkin Methods Using Weighted Essentially Nonoscillatory Limiters.,2005,27,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc27.html#QiuS05,https://doi.org/10.1137/04061372X +Ron Estrin,SPMR: A Family of Saddle-Point Minimum Residual Solvers.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#EstrinG18,https://doi.org/10.1137/16M1102410 +Randolph E. Bank,A New Paradigm for Parallel Adaptive Meshing Algorithms.,2000,22,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc22.html#BankH00,https://doi.org/10.1137/S1064827599353701 +Wanda Strychalski,Simulating Biochemical Signaling Networks in Complex Moving Geometries.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#StrychalskiAE10,https://doi.org/10.1137/090779693 +Stefania Bellavia,A Matrix-Free Preconditioner for Sparse Symmetric Positive Definite Systems and Least-Squares Problems.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#BellaviaGM13,https://doi.org/10.1137/110840819 +Laurent White,Flow Simulation in Heterogeneous Porous Media With the Moving Least-Squares Method.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#WhitePT17,https://doi.org/10.1137/16M1070840 +Qiqi Wang,Minimal Repetition Dynamic Checkpointing Algorithm for Unsteady Adjoint Calculation.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#WangMI09,https://doi.org/10.1137/080727890 +Alessandro Alla,Nonlinear Model Order Reduction via Dynamic Mode Decomposition.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#AllaK17,https://doi.org/10.1137/16M1059308 +Lorenzo Pareschi,Time Relaxed Monte Carlo Methods for the Boltzmann Equation.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#PareschiR01,https://doi.org/10.1137/S1064827500375916 +Shengtai Li,Stability of Moving Mesh Systems of Partial Differential Equations.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#LiPR98,https://doi.org/10.1137/S1064827596302011 +Anil K. Bangia,Unsteady Two-Dimensional Flows in Complex Geometries: Comparative Bifurcation Studies with Global Eigenfunction Expansions.,1997,18,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc18.html#BangiaBKK97,https://doi.org/10.1137/S1064827595282246 +Philip Roe,Linear Bicharacteristic Schemes Without Dissipation.,1998,19,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc19.html#Roe98,https://doi.org/10.1137/S1064827594272785 +Steven Pruess,A Stable High-Order Interpolation Scheme for Superconvergent Data.,1996,17,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc17.html#PruessJ96,https://doi.org/10.1137/S1064827593257481 +Jonathan F. Bard,A Branch and Bound Algorithm for the Bilevel Programming Problem.,1990,11,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc11.html#BardM90,https://doi.org/10.1137/0911017 +Steven M. Serbin,A Scheme for Parallelizing Certain Algorithms for the Linear Inhomogeneous Heat Equation.,1992,13,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc13.html#Serbin92,https://doi.org/10.1137/0913024 +Minling Zheng,A Novel High Order Space-Time Spectral Method for the Time Fractional Fokker-Planck Equation.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#ZhengLTA15,https://doi.org/10.1137/140980545 +Hans De Sterck,Recursively Accelerated Multilevel Aggregation for Markov Chains.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#SterckMSW10,https://doi.org/10.1137/090770114 +Jan M. ten Vregelaar,On Computing Objective Function and Gradient in the Context of Least Squares Fitting a Dynamic Errors-In-Variables Model.,1995,16,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc16.html#Vregelaar95,https://doi.org/10.1137/0916044 +Trond Mannseth,An Analysis of the Robustness of Some Incomplete Factorizations.,1995,16,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc16.html#Mannseth95,https://doi.org/10.1137/0916083 +Thomas Richter 0003,Optimal Control and Parameter Estimation for Stationary Fluid-Structure Interaction Problems.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#RichterW13,https://doi.org/10.1137/120893239 +Jie Chen 0007,Algebraic Distance on Graphs.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#ChenS11,https://doi.org/10.1137/090775087 +Yinnian He,First-Order Decoupled Finite Element Method of the three-Dimensional Primitive Equations of the Ocean.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#HeZXC16,https://doi.org/10.1137/15M1019611 +Hsueh-Chen Lee,An Adaptively Refined Least-Squares Finite Element Method for Generalized Newtonian Fluid Flows Using the Carreau Model.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#Lee14,https://doi.org/10.1137/130912682 +Jörn Hofhaus,Alternating-Direction Line-Relaxation Methods on Multicomputers.,1996,17,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc17.html#HofhausV96,https://doi.org/10.1137/S1064827593253872 +Hans Petter Langtangen,Numerical Solution of First Passage Problems in Random Vibrations.,1994,15,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc15.html#Langtangen94,https://doi.org/10.1137/0915059 +Hongyuan Zha,On Updating Problems in Latent Semantic Indexing.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#ZhaS99,https://doi.org/10.1137/S1064827597329266 +Randolph E. Bank,On the Complexity of Sparse Gaussian Elimination via Bordering.,1990,11,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc11.html#BankR90,https://doi.org/10.1137/0911009 +Johannes K. Kraus,Preconditioning Heterogeneous H(div) Problems by Additive Schur Complement Approximation and Applications.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#KrausLLMZ16,https://doi.org/10.1137/140974092 +Simon L. Cotter,Adaptive Finite Element Method Assisted by Stochastic Simulation of Chemical Systems.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#CotterVE13,https://doi.org/10.1137/120877374 +Birte Schrader,Choosing the Best Kernel: Performance Models for Diffusion Operators in Particle Methods.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#SchraderRS12,https://doi.org/10.1137/110835815 +Tobin A. Driscoll,Numerical Conformal Mapping Using Cross-Ratios and Delaunay Triangulation.,1998,19,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc19.html#DriscollV98,https://doi.org/10.1137/S1064827596298580 +Stefano Micheletti,On Some Mixed Finite Element Methods with Numerical Integration.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#MichelettiSS01,https://doi.org/10.1137/S1064827500348788 +Gundolf Haase,Parallel Algebraic Multigrid Methods on Distributed Memory Computers.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#HaaseKR02,https://doi.org/10.1137/S1064827501386237 +Sergiy Zhuk,Data Assimilation for Linear Parabolic Equations: Minimax Projection Method.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#ZhukFHS15,https://doi.org/10.1137/13094709X +Meng Wang,Modified Virtual Grid Difference for Discretizing the Laplace-Beltrami Operator on Point Clouds.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#WangLZ18,https://doi.org/10.1137/16M1065690 +Jun Liu 0013,A Multiresolution Method for Distributed Parameter Estimation.,1993,14,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc14.html#Liu93,https://doi.org/10.1137/0914024 +Nicholas Hale,An Algorithm for the Convolution of Legendre Series.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#HaleT14a,https://doi.org/10.1137/140955835 +Zeyao Mo,Scalable Heuristic Algorithms for the Parallel Execution of Data Flow Acyclic Digraphs.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#MoZW09,https://doi.org/10.1137/050634554 +Nikolai D. Botkin,Stable Numerical Schemes for Solving Hamilton-Jacobi-Bellman-Isaacs Equations.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#BotkinHT11,https://doi.org/10.1137/100801068 +Mengdi Zheng,Adaptive Wick-Malliavin Approximation to Nonlinear SPDEs with Discrete Random Variables.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#ZhengRK15,https://doi.org/10.1137/140975930 +D. M. Kelly,PICIN: A Particle-in-Cell Solver for Incompressible Free Surface Flows with Two-Way Fluid-Solid Coupling.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#KellyCZ15,https://doi.org/10.1137/140976911 +Anne Gelb,Determining Analyticity for Parameter Optimization of the Gegenbauer Reconstruction Method.,2005,27,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc27.html#GelbJ05,https://doi.org/10.1137/040603814 +K. W. Morton,Vorticity-Preserving Lax-Wendroff-Type Schemes for the System Wave Equation.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#MortonR01,https://doi.org/10.1137/S106482759935914X +Tiantian Liu,Efficient and Qualified Mesh Generation for Gaussian Molecular Surface Using Adaptive Partition and Piecewise Polynomial Approximation.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#LiuCL18,https://doi.org/10.1137/16M1099704 +Michael S. Jolly,Accurate Computations on Inertial Manifolds.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#JollyRT01,https://doi.org/10.1137/S1064827599351738 +Björn Gmeiner,Performance and Scalability of Hierarchical Hybrid Multigrid Solvers for Stokes Systems.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#GmeinerRSWW15,https://doi.org/10.1137/130941353 +David J. Haroldsen,Numerical Calculation of Three-Dimensional Interfacial Potential Flows Using the Point Vortex Method.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#HaroldsenM98,https://doi.org/10.1137/S1064827596302060 +Kailiang Wu,A Randomized Tensor Quadrature Method for High Dimensional Polynomial Approximation.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#WuSX17,https://doi.org/10.1137/16M1081695 +Philipp Stumm,MultiStage Approaches for Optimal Offline Checkpointing.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#StummW09,https://doi.org/10.1137/080718036 +Daming Yuan,High Order Positivity-Preserving Discontinuous Galerkin Methods for Radiative Transfer Equations.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#YuanCS16,https://doi.org/10.1137/16M1061072 +Björn Adlerborn,Distributed One-Stage Hessenberg-Triangular Reduction with Wavefront Scheduling.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#AdlerbornKK18,https://doi.org/10.1137/16M1103890 +Francesco P. Andriulli,A Multiresolution Approach to the Electric Field Integral Equation in Antenna Problems.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#AndriulliTV07,https://doi.org/10.1137/050634943 +Nguyenho Ho,Accelerating the Uzawa Algorithm.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#HoOW17,https://doi.org/10.1137/16M1076770 +Wade S. Martinson,Index and Characteristic Analysis of Linear PDAE Systems.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#MartinsonB03,https://doi.org/10.1137/S1064827599363411 +Janne M. J. Huttunen,Estimation of Systematic and Spatially Correlated Components of Random Signals from Repeated Measurements: Application to Contrast Enhanced Computer Tomography Measurements.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#HuttunenTHTJ16,https://doi.org/10.1137/15M1017727 +Richard M. Beam,The Asymptotic Spectra of Banded Toeplitz and Quasi-Toeplitz Matrices.,1993,14,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc14.html#BeamW93,https://doi.org/10.1137/0914059 +Shidong Jiang,Fast and Accurate Evaluation of Nonlocal Coulomb and Dipole-Dipole Interactions via the Nonuniform FFT.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#JiangGB14,https://doi.org/10.1137/130945582 +Santiago Badia,On Monotonicity-Preserving Stabilized Finite Element Approximations of Transport Problems.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#BadiaH14,https://doi.org/10.1137/130927206 +Noel Walkington,Axially Symmetric Acoustic Wave Propagation Through Flows with Vorticity.,1991,12,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc12.html#Walkington91,https://doi.org/10.1137/0912078 +Luca Dedè,Reduced Basis Method and A Posteriori Error Estimation for Parametrized Linear-Quadratic Optimal Control Problems.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#Dede10,https://doi.org/10.1137/090760453 +Richard Mikael Slevinsky,On The Use of Conformal Maps for the Acceleration of Convergence of the Trapezoidal Rule and Sinc Numerical Methods.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#SlevinskyO15,https://doi.org/10.1137/140978363 +M. Ganesh,A High Performance Computing and Sensitivity Analysis Algorithm for Stochastic Many-Particle Wave Scattering.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#GaneshH15,https://doi.org/10.1137/140996069 +Nail A. Gumerov,Recursions for the Computation of Multipole Translation and Rotation Coefficients for the 3-D Helmholtz Equation.,2004,25,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc25.html#GumerovD04,https://doi.org/10.1137/S1064827501399705 +Bosco García-Archilla,Long-Time-Step Methods for Oscillatory Differential Equations.,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#Garcia-Archilla98,https://doi.org/10.1137/S1064827596313851 +Björn Adlerborn,A Parallel QZ Algorithm for Distributed Memory HPC Systems.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#AdlerbornKK14,https://doi.org/10.1137/140954817 +Eleonora Musharbash,Error Analysis of the Dynamically Orthogonal Approximation of Time Dependent Random PDEs.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#MusharbashNZ15,https://doi.org/10.1137/140967787 +Oscar P. Bruno,Regularity Theory and Superalgebraic Solvers for Wire Antenna Problems.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#BrunoH07,https://doi.org/10.1137/050648262 +Benjamin Rosenbaum,Efficient Response Surface Methods Based on Generic Surrogate Models.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#RosenbaumS13,https://doi.org/10.1137/120865331 +Wim A. Mulder,Multigrid for the One-Dimensional Inviscid Burgers Equation.,1990,11,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc11.html#Mulder90,https://doi.org/10.1137/0911002 +Matteo Astorino,Robin Based Semi-Implicit Coupling in Fluid-Structure Interaction: Stability Analysis and Numerics.,2009,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#AstorinoCF09,https://doi.org/10.1137/090749694 +Tony F. Chan,Performance of Block-ILU Factorization Preconditioners Based on Block-Size Reduction for 2D Elasticity Systems.,1997,18,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc18.html#ChanMV97,https://doi.org/10.1137/S1064827594277399 +Yuantao Cai,Regularization Preconditioners for Frame-Based Image Deblurring with Reduced Boundary Artifacts.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#CaiDBH16,https://doi.org/10.1137/140976261 +Nathan O. Collier,The Cost of Continuity: Performance of Iterative Solvers on Isogeometric Finite Elements.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#CollierDPC13,https://doi.org/10.1137/120881038 +Lulu Liu,Field-Split Preconditioned Inexact Newton Algorithms.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#LiuK15,https://doi.org/10.1137/140970379 +Yujia Chen,The Closest Point Method and Multigrid Solvers for Elliptic Equations on Surfaces.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#ChenM15,https://doi.org/10.1137/130929497 +Timo Tonn,Optimal Control of Parameter-Dependent Convection-Diffusion Problems around Rigid Bodies.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#TonnUV10,https://doi.org/10.1137/08074194X +Michael Tortorella,Closed Newton-Cotes Quadrature Rules for Stieltjes Integrals and Numerical Convolution of Life Distributions.,1990,11,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc11.html#Tortorella90,https://doi.org/10.1137/0911043 +Michael Wathen,Preconditioners for Mixed Finite Element Discretizations of Incompressible MHD Equations.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#WathenGS17,https://doi.org/10.1137/16M1098991 +Arthur Bousquet,Newton Solvers for Drift-Diffusion and Electrokinetic Equations.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#BousquetHMX18,https://doi.org/10.1137/17M1146956 +Kevin Burrage,A Deflation Technique for Linear Systems of Equations.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#BurrageEPW98,https://doi.org/10.1137/S1064827595294721 +Zhong-Zhi Bai,Fast Iterative Schemes for Nonsymmetric Algebraic Riccati Equations Arising from Transport Theory.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#BaiGL08,https://doi.org/10.1137/060675344 +Ralf Deiterding,Comparison of Adaptive Multiresolution and Adaptive Mesh Refinement Applied to Simulations of the Compressible Euler Equations.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#DeiterdingDGS16,https://doi.org/10.1137/15M1026043 +Saviz Mowlavi,Model Order Reduction for Stochastic Dynamical Systems with Continuous Symmetries.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#MowlaviS18,https://doi.org/10.1137/17M1126576 +Fabio Di Benedetto,Preconditioning of Block Toeplitz Matrices by Sine Transforms.,1997,18,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc18.html#Benedetto97,https://doi.org/10.1137/S1064827595258335 +Zhenning Cai,Solving Vlasov Equations Using NRxx Method.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#CaiLW13,https://doi.org/10.1137/120871791 +Bernardo Cockburn,Coupling at a Distance HDG and BEM.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#CockburnSS12,https://doi.org/10.1137/110823237 +Brittany D. Froese,A Numerical Method for the Elliptic Monge-Ampère Equation with Transport Boundary Conditions.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#Froese12,https://doi.org/10.1137/110822372 +Luise Blank,Preconditioning via a Schur Complement Method: An Application in State Estimation.,2003,25,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc25.html#Blank03,https://doi.org/10.1137/S1064827501399080 +Adam M. Oberman,A Numerical Method for Variational Problems with Convexity Constraints.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#Oberman13,https://doi.org/10.1137/120869973 +Evan S. Gawlik,Embedding-Based Interpolation on the Special Orthogonal Group.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#GawlikL18,https://doi.org/10.1137/17M1129416 +Sriramkrishnan Muralikrishnan,iHDG: An Iterative HDG Framework for Partial Differential Equations.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#MuralikrishnanT17,https://doi.org/10.1137/16M1074187 +Hossein Zivari-Piran,Accurate First-Order Sensitivity Analysis for Delay Differential Equations.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#Zivari-PiranE12,https://doi.org/10.1137/100814949 +Anil Damle,Pole Expansion for Solving a Type of Parametrized Linear Systems in Electronic Structure Calculations.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#DamleLY14,https://doi.org/10.1137/130944825 +Mauro Perego,A Variational Approach for Estimating the Compliance of the Cardiovascular Tissue: An Inverse Fluid-Structure Interaction Problem.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#PeregoVV11,https://doi.org/10.1137/100808277 +Robert C. Kirby,Topological Optimization of the Evaluation of Finite Element Matrices.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#KirbyLST06,https://doi.org/10.1137/050635547 +Stefano Berrone,On Simulations of Discrete Fracture Network Flows with an Optimization-Based Extended Finite Element Method.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#BerronePS13,https://doi.org/10.1137/120882883 +Krzysztof Domino,Efficient Computation of Higher-Order Cumulant Tensors.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#DominoGP18,https://doi.org/10.1137/17M1149365 +Frank W. Letniowski,Three-Dimensional Delaunay Triangulations for Finite Element Approximations to a Second-Order Diffusion Operator.,1992,13,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc13.html#Letniowski92,https://doi.org/10.1137/0913045 +Michael M. Wolf,Combinatorial Optimization of Matrix-Vector Multiplication in Finite Element Assembly.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#WolfH09,https://doi.org/10.1137/070704289 +C.-C. Jay Kuo,Two-Color Fourier Analysis of Iterative Algorithms for Elliptic Problems with Red/Black Ordering.,1990,11,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc11.html#KuoC90,https://doi.org/10.1137/0911045 +Ashvin Gopaul,Analysis of a Fourth-Order Scheme for a Three-Dimensional Convection-Diffusion Model Problem.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#GopaulB06,https://doi.org/10.1137/S1064827502410797 +Inderjit S. Dhillon,Glued Matrices and the MRRR Algorithm.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#DhillonPV05,https://doi.org/10.1137/040620746 +V. Sirotkin,Overlapping Schwarz Methods for a Singularly Perturbed Semilinear Elliptic Problem and Their Parallel Implementation.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#SirotkinT99,https://doi.org/10.1137/S1064827597317995 +Enrique S. Quintana-Ortí,A Note On Parallel Matrix Inversion.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#Quintana-OrtiQS01,https://doi.org/10.1137/S1064827598345679 +Manuel Torrilhon,Krylov-Riemann Solver for Large Hyperbolic Systems of Conservation Laws.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#Torrilhon12,https://doi.org/10.1137/110840832 +Hemant Mahawar,Preconditioned Iterative Solvers for Inductance Extraction of VLSI Circuits.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#MahawarS07,https://doi.org/10.1137/040609628 +Wim A. Mulder,A Note on the Use of Symmetric Line Gauss-Seidel for the Steady Upwind Differenced Euler Equations.,1990,11,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc11.html#Mulder90a,https://doi.org/10.1137/0911023 +P. J. van der Houwen,Triangularly Implicit Iteration Methods for ODE-IVP Solvers.,1997,18,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc18.html#HouwenS97,https://doi.org/10.1137/S1064827595287456 +Andrew M. Stuart,The Dynamics of the Theta Method.,1991,12,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc12.html#StuartP91,https://doi.org/10.1137/0912074 +Paola Goatin,The Wave-Front Tracking Algorithm for Hughes' Model of Pedestrian Motion.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#GoatinM13,https://doi.org/10.1137/120898863 +Julien Langou,Recovery Patterns for Iterative Methods in a Parallel Unstable Environment.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#LangouCBD07,https://doi.org/10.1137/040620394 +Emmanuel Leriche,High-Order Direct Stokes Solvers with or Without Temporal Splitting: Numerical Investigations of Their Comparative Properties.,2000,22,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc22.html#LericheL00,https://doi.org/10.1137/S1064827598349641 +Julianne Chung,Designing Optimal Spectral Filters for Inverse Problems.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#ChungCO11,https://doi.org/10.1137/100812938 +Gang Wu,A Preconditioned and Shifted GMRES Algorithm for the PageRank Problem with Multiple Damping Factors.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#WuWJ12,https://doi.org/10.1137/110834585 +Björn Engquist,Fast Wavelet Based Algorithms for Linear Evolution Equations.,1994,15,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc15.html#EngquistOZ94,https://doi.org/10.1137/0915048 +Karel Crombecq,A Novel Hybrid Sequential Design Strategy for Global Surrogate Modeling of Computer Experiments.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#CrombecqGDD11,https://doi.org/10.1137/090761811 +Bangti Jin,Two Fully Discrete Schemes for Fractional Diffusion and Diffusion-Wave Equations with Nonsmooth Data.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#JinLZ16,https://doi.org/10.1137/140979563 +Jianyu Pan,Fast Iterative Solvers for Linear Systems Arising from Time-Dependent Space-Fractional Diffusion Equations.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#PanNW16,https://doi.org/10.1137/15M1030273 +Chandrajit L. Bajaj,An Efficient Higher-Order Fast Multipole Boundary Element Solution for Poisson-Boltzmann-Based Molecular Electrostatics.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#BajajCR11,https://doi.org/10.1137/090764645 +Sven Erik Mattsson,Index Reduction in Differential-Algebraic Equations Using Dummy Derivatives.,1993,14,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc14.html#MattssonS93,https://doi.org/10.1137/0914043 +Erkki Heikkola,A Parallel Fictitious Domain Method for the Three-Dimensional Helmholtz Equation.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#HeikkolaRT03,https://doi.org/10.1137/S1064827500370305 +Louis A. Romero,The Large Equal Radius Conditions and Time of Arrival Geolocation Algorithms.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#RomeroMD08,https://doi.org/10.1137/070699020 +Mark F. Adams,Landau Collision Integral Solver with Adaptive Mesh Refinement on Emerging Architectures.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#AdamsHKBIM17,https://doi.org/10.1137/17M1118828 +Luis Ortiz-Gracia,Robust Pricing of European Options with Wavelets and the Characteristic Function.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#Ortiz-GraciaO13,https://doi.org/10.1137/130907288 +Christian Engwer,A Discontinuous Galerkin Method to Solve the EEG Forward Problem Using the Subtraction Approach.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#EngwerVLW17,https://doi.org/10.1137/15M1048392 +Barry F. Smith,A Domain Decomposition Algorithm Using a Hierarchical Basis.,1990,11,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc11.html#SmithW90,https://doi.org/10.1137/0911069 +Amir Averbuch,Parallel Adaptive Solution of a Poisson Equation with Multiwavelets.,2000,22,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc22.html#AverbuchBI00,https://doi.org/10.1137/S106482759833694X +Mark Ainsworth,Construction and Analysis of Optimal Hierarchic Models of Boundary Value Problems on Thin Circular and Spherical Geometries.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#AinsworthA00,https://doi.org/10.1137/S1064827599356274 +Olivier Bokanowski,An Efficient Filtered Scheme for Some First Order Time-Dependent Hamilton-Jacobi Equations.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#BokanowskiFS16,https://doi.org/10.1137/140998482 +Mounir Bennoune,On the Jump Conditions for an Immersed Interface Method.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#BennouneMO16,https://doi.org/10.1137/140989856 +Jack Poulson,A Parallel Sweeping Preconditioner for Heterogeneous 3D Helmholtz Equations.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#PoulsonELY13,https://doi.org/10.1137/120871985 +James J. Brannick,Least-Squares Finite Element Methods for Quantum Electrodynamics.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#BrannickKMM10,https://doi.org/10.1137/080729633 +Jing Li,Computation of Failure Probability Subject to Epistemic Uncertainty.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#LiX12,https://doi.org/10.1137/120864155 +Samuel Corveleyn,Iterative Solvers for a Spectral Galerkin Approach to Elliptic Partial Differential Equations with Fuzzy Coefficients.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#CorveleynRV13,https://doi.org/10.1137/120881592 +Eberhard Bänsch,Riccati-based Boundary Feedback Stabilization of Incompressible Navier-Stokes Flows.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#BanschBSW15,https://doi.org/10.1137/140980016 +David I. Ketcheson,Highly Efficient Strong Stability-Preserving Runge-Kutta Methods with Low-Storage Implementations.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#Ketcheson08,https://doi.org/10.1137/07070485X +Christopher E. Goodyer,Adaptive Timestepping for Elastohydrodynamic Lubrication Solvers.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#GoodyerB06,https://doi.org/10.1137/050622092 +Robert D. Falgout,Multigrid Reduction in Time for Nonlinear Parabolic Problems: A Case Study.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#FalgoutMOS17,https://doi.org/10.1137/16M1082330 +Marc Alexander Schweitzer,Variational Mass Lumping in the Partition of Unity Method.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#Schweitzer13,https://doi.org/10.1137/120895561 +Ulrike Baur,Interpolatory Projection Methods for Parameterized Model Reduction.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#BaurBBG11,https://doi.org/10.1137/090776925 +Ernesto Kofman,Discrete Event Simulation of Hybrid Systems.,2004,25,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc25.html#Kofman04,https://doi.org/10.1137/S1064827502418379 +Junping Wang,A Posteriori Error Estimation for an Interior Penalty Type Method Employing $H(\mathrm{div})$ Elements for the Stokes Equations.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#WangWY11,https://doi.org/10.1137/100783996 +Nicholas J. Higham,Stability of the Partitioned Inverse Method for Parallel Solution of Sparse Triangular Systems.,1994,15,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc15.html#HighamP94,https://doi.org/10.1137/0915009 +Xiaojun Chen 0001,Lower Bound Theory of Nonzero Entries in Solutions of and#8467*2-ℓ*p Minimization.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#ChenXY10,https://doi.org/10.1137/090761471 +Edward G. Phillips,Scalable Preconditioners for Structure Preserving Discretizations of Maxwell Equations in First Order Form.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#PhillipsSC18,https://doi.org/10.1137/17M1135827 +Eric de Sturler,A Regularized Gauss-Newton Trust Region Approach to Imaging in Diffuse Optical Tomography.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#SturlerK11,https://doi.org/10.1137/100798181 +Sonia Fliss,A Dirichlet-to-Neumann Approach for The Exact Computation of Guided Modes in Photonic Crystal Waveguides.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#Fliss13,https://doi.org/10.1137/12086697X +James H. Adler,Monolithic Multigrid Methods for Two-Dimensional Resistive Magnetohydrodynamics.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#AdlerBCMT16,https://doi.org/10.1137/151006135 +Christoph Hofer,Discontinuous Galerkin Isogeometric Analysis of Elliptic Diffusion Problems on Segmentations with Gaps.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#HoferLT16,https://doi.org/10.1137/15M1048574 +Vítezslav Veselý,Fast Cell-Structured Algorithm for Digit Reversal of Arbitrary Length.,1991,12,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc12.html#Vesely91,https://doi.org/10.1137/0912017 +Pieter W. Hemker,Two-Level Fourier Analysis of a Multigrid Approach for Discontinuous Galerkin Discretization.,2003,25,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc25.html#HemkerHR03,https://doi.org/10.1137/S1064827502405100 +Martin Almquist,MultiLevel Local Time-Stepping Methods of Runge-Kutta-type for Wave Equations.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#AlmquistM17,https://doi.org/10.1137/16M1084407 +Louis H. Howell,An Adaptive Mesh Projection Method for Viscous Incompressible Flow.,1997,18,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc18.html#HowellB97,https://doi.org/10.1137/S1064827594270555 +Erwan Faou,Computing Semiclassical Quantum Dynamics with Hagedorn Wavepackets.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#FaouGL09,https://doi.org/10.1137/080729724 +Dirk Lebiedz,A Variational Principle for Computing Slow Invariant Manifolds in Dissipative Dynamical Systems.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#LebiedzSU11,https://doi.org/10.1137/100790318 +Benqi Guo,Additive Schwarz Methods for the h-p Version of the Finite Element Method in Two Dimensions.,1997,18,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc18.html#GuoC97,https://doi.org/10.1137/S1064827595294368 +R. A. Trompert,Analysis of the Implicit Euler Local Uniform Grid Refinement Method.,1993,14,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc14.html#TrompertV93,https://doi.org/10.1137/0914017 +Volker H. Schulz,Exploiting Invariants in the Numerical Solution of Multipoint Boundary Value Problems for DAE.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#SchulzBS98,https://doi.org/10.1137/S1064827594261917 +Qiumei Huang,The hp Discontinuous Galerkin Method for Delay Differential Equations with Nonlinear Vanishing Delay.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#HuangXB13,https://doi.org/10.1137/120901416 +Nicolas Bock,Solvers for O (N) Electronic Structure in the Strong Scaling Limit.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#BockCK16,https://doi.org/10.1137/140974602 +I. K. Abu-Shumays,Incomplete Block Cyclic Reduction as a Preconditioner for Polynomial Iterative Methods.,1990,11,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc11.html#Abu-Shumays90,https://doi.org/10.1137/0911031 +Jing Li,On Upper and Lower Bounds for Quantity of Interest in Problems Subject to Epistemic Uncertainty.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#LiQX14,https://doi.org/10.1137/120892969 +R. Zimmermann,A Locally Parametrized Reduced-Order Model for the Linear Frequency Domain Approach to Time-Accurate Computational Fluid Dynamics.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#Zimmermann14,https://doi.org/10.1137/130942462 +Liya Asner,Adjoint-Based a Posteriori Error Estimation for Coupled Time-Dependent Systems.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#AsnerTK12,https://doi.org/10.1137/110858458 +Chris J. Budd,Moving Mesh Methods for Problems with Blow-Up.,1996,17,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc17.html#BuddHR96,https://doi.org/10.1137/S1064827594272025 +Jiyan Yang,Quantile Regression for Large-Scale Applications.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#YangMM14,https://doi.org/10.1137/130919258 +Martin J. Gander,Optimized Schwarz Methods for Model Problems with Continuously Variable Coefficients.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#GanderX16,https://doi.org/10.1137/15M1053943 +Roman Wienands,Collocation Coarse Approximation in Multigrid.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#WienandsY09,https://doi.org/10.1137/08074461X +Doron Gill,An O(N2 ) Method for Computing the Eigensystem of N and#735* N Symmetric Tridiagonal Matrices by the Divide and Conquer Approach.,1990,11,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc11.html#GillT90,https://doi.org/10.1137/0911010 +Sergio Blanes,Symplectic Integration with Processing: A General Study.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#BlanesCR99,https://doi.org/10.1137/S1064827598332497 +Fanhai Zeng,A Generalized Spectral Collocation Method with Tunable Accuracy for Variable-Order Fractional Differential Equations.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#ZengZK15,https://doi.org/10.1137/141001299 +Rafael G. Campos,A New Formulation of the Fast Fractional Fourier Transform.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#CamposRC12,https://doi.org/10.1137/100812677 +Monika Nitsche,Axisymmetric Vortex Sheet Motion: Accurate Evaluation of the Principal Value Integral.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#Nitsche99,https://doi.org/10.1137/S1064827596314182 +Tahir Malas,Schur Complement Preconditioners for Surface Integral-Equation Formulations of Dielectric Problems Solved with the Multilevel Fast Multipole Algorithm.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#MalasG11,https://doi.org/10.1137/090780808 +Qiang Du,Adaptive Finite Element Method for a Phase Field Bending Elasticity Model of Vesicle Membrane Deformations.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#DuZ08,https://doi.org/10.1137/060656449 +Roberto Barrio,Parallel Algorithms to Evaluate Orthogonal Polynomial Series.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#Barrio00,https://doi.org/10.1137/S1064827598340494 +Ramesh Natarajan,Domain Decomposition using Spectral Expansions of Steklov-Poincaré Operators II: A Matrix Formulation.,1997,18,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc18.html#Natarajan97,https://doi.org/10.1137/S1064827594274309 +Gerhard Starke,Least-Squares Mixed Finite Element Solution of Variably Saturated Subsurface Flow Problems.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#Starke00,https://doi.org/10.1137/S1064827598339384 +Michele Benzi,Robust Approximate Inverse Preconditioning for the Conjugate Gradient Method.,2000,22,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc22.html#BenziCT00,https://doi.org/10.1137/S1064827599356900 +Inmaculada Higueras,Design and Implementation of Predictors for Additive Semi-Implicit Runge--Kutta Methods.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#HiguerasMR09,https://doi.org/10.1137/070710160 +Jong Hyuk Park,The Domain Decomposition Method for Maxwell's Equations in Time Domain Simulations with Dispersive Metallic Media.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#ParkS10,https://doi.org/10.1137/070705374 +Rob H. Bisseling,Parallel Triangular System Solving on a Mesh Network of Transputers.,1991,12,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc12.html#BisselingV91,https://doi.org/10.1137/0912041 +Todd Arbogast,Mixed Methods for Two-Phase Darcy-Stokes Mixtures of Partially Melted Materials with Regions of Zero Porosity.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#ArbogastHT17,https://doi.org/10.1137/16M1091095 +Zlatko Drmac,Vector Fitting for Matrix-valued Rational Approximation.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#DrmacGB15a,https://doi.org/10.1137/15M1010774 +Wen Huang,Solving PhaseLift by Low-Rank Riemannian Optimization Methods for Complex Semidefinite Constraints.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#HuangGZ17,https://doi.org/10.1137/16M1072838 +Peter Monk 0001,Finite Element Methods for Maxwell's Transmission Eigenvalues.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#MonkS12,https://doi.org/10.1137/110839990 +Venera Khoromskaia,Tensor-Structured Factorized Calculation of Two-Electron Integrals in a General Basis.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#KhoromskaiaKS13,https://doi.org/10.1137/120884067 +Maxim A. Olshanskii,Pressure Schur Complement Preconditioners for the Discrete Oseen Problem.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#OlshanskiiV07,https://doi.org/10.1137/070679776 +Hirofumi Tomita,A New Approach to Atmospheric General Circulation Model: Global Cloud Resolving Model NICAM and its Computational Performance.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#TomitaGS08,https://doi.org/10.1137/070692273 +Changqing Hu,A Discontinuous Galerkin Finite Element Method for Hamilton-Jacobi Equations.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#HuS99,https://doi.org/10.1137/S1064827598337282 +Michele Benzi,Orderings for Factorized Sparse Approximate Inverse Preconditioners.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#BenziT00,https://doi.org/10.1137/S1064827598339372 +Eldad Haber,An Efficient Numerical Method for the Solution of the L2 Optimal Mass Transfer Problem.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#HaberRT10,https://doi.org/10.1137/080730238 +Philippe Guyenne,A High-Order Spectral Method for Nonlinear Water Waves over Moving Bottom Topography.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#GuyenneN07,https://doi.org/10.1137/060666214 +Mark Embree,Weighted Inner Products for GMRES and GMRES-DR.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#EmbreeMN17,https://doi.org/10.1137/16M1082615 +C. V. Pao,Block Monotone Iterations for Numerical Solutions of Fourth-Order Nonlinear Elliptic Boundary Value Problems.,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#PaoL03,https://doi.org/10.1137/S1064827502409912 +Shi Jin,Computation of Interface Reflection and Regular or Diffuse Transmission of the Planar Symmetric Radiative Transfer Equation with Isotropic Scattering and Its Diffusion Limit.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#JinLY08,https://doi.org/10.1137/060676192 +Bernardo Cockburn,Solving Dirichlet Boundary-value Problems on Curved Domains by Extensions from Subdomains.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#CockburnS12,https://doi.org/10.1137/100805200 +Mark Richardson,A Sinc Function Analogue of Chebfun.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#RichardsonT11,https://doi.org/10.1137/110825947 +Tao Tang,The Hermite Spectral Method for Gaussian-Type Functions.,1993,14,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc14.html#Tang93,https://doi.org/10.1137/0914038 +Christoph Riesinger,Solving Random Ordinary Differential Equations on GPU Clusters using Multiple Levels of Parallelism.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#RiesingerNR16,https://doi.org/10.1137/15M1036014 +Martin D. Schatz,Parallel Matrix Multiplication: A Systematic Journey.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#SchatzGP16,https://doi.org/10.1137/140993478 +James H. Bramble,Domain Decomposition Methods for Problems with Partial Refinement.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#BrambleEPP92,https://doi.org/10.1137/0913021 +Norberto Mangiavacchi,An Effective Implementation of Surface Tension Using the Marker and Cell Method for Axisymmetric and Planar Flows.,2005,26,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc26.html#MangiavacchiCTCOM05,https://doi.org/10.1137/S1064827503427182 +Thomas Fevens,Absorbing Boundary Conditions for the Schrödinger Equation.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#FevensJ99,https://doi.org/10.1137/S1064827594277053 +Irad Yavneh,Coarse-Grid Correction for Nonelliptic and Singular Perturbation Problems.,1998,19,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc19.html#Yavneh98,https://doi.org/10.1137/S1064827596310998 +Matthias Mayr,A Temporal Consistent Monolithic Approach to Fluid-Structure Interaction Enabling Single Field Predictors.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#MayrKWG15,https://doi.org/10.1137/140953253 +Peipei Lu,A Robust Multilevel Method for the Time-harmonic Maxwell Equation with High Wave Number.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#LuX16,https://doi.org/10.1137/15M1007033 +Shuwang Li,A Boundary Integral Method for Computing the Dynamics of an Epitaxial Island.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#LiL11,https://doi.org/10.1137/100814871 +Luis F. Portugal,An Investigation of Interior-Point Algorithms for the Linear Transportation Problem.,1996,17,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc17.html#PortugalBJPT96,https://doi.org/10.1137/S1064827593258280 +Omar Lakkis,A Finite Element Method for Second Order Nonvariational Elliptic Problems.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#LakkisP11,https://doi.org/10.1137/100787672 +Stephan Knapek,Matrix-Dependent Multigrid Homogenization for Diffusion Problems.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#Knapek98,https://doi.org/10.1137/S1064827596304848 +Armin Iske,Hierarchical Matrix Approximation for Kernel-Based Scattered Data Interpolation.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#IskeBW17,https://doi.org/10.1137/16M1101167 +Bernardo Cockburn,A Model Numerical Scheme for the Propagation of phase Transitions in Solids.,1996,17,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc17.html#CockburnG96,https://doi.org/10.1137/S106482759426688X +Kirsty L. Brown,A Multilevel Approach for Computing the Limited-Memory Hessian and its Inverse in Variational Data Assimilation.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#BrownGR16,https://doi.org/10.1137/15M1041407 +Martin Berzins,A Data-Bounded Quadratic Interpolant on Triangles and Tetrahedra.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#Berzins00,https://doi.org/10.1137/S1064827597317636 +Francis X. Giraldo,Implicit-Explicit Formulations of a Three-Dimensional Nonhydrostatic Unified Model of the Atmosphere (NUMA).,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#GiraldoKC13,https://doi.org/10.1137/120876034 +Yana Di,Moving Mesh Methods for Singular Problems on a Sphere Using Perturbed Harmonic Mappings.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#DiLTZ06,https://doi.org/10.1137/050642514 +Jim E. Jones,AMGE Based on Element Agglomeration.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#JonesV01,https://doi.org/10.1137/S1064827599361047 +Janis Hardwick,Using Path Induction to Evaluate Sequential Allocation Procedures.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#HardwickS99,https://doi.org/10.1137/S1064827595291820 +Rizwan Uddin,Comparison of the Nodal Integral Method and Nonstandard Finite-Difference Schemes for the Fisher Equation.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#Uddin01,https://doi.org/10.1137/S1064827597325463 +Xiaoxia Guo,A Fast l1-TV Algorithm for Image Restoration.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#GuoLN09,https://doi.org/10.1137/080724435 +Oscar Chinellato,Including Covariances in Calibration to Obtain Better Measurement Uncertainty Estimates.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#ChinellatoAB04,https://doi.org/10.1137/S1064827503426735 +Malcolm F. Murphy,A Note on Preconditioning for Indefinite Linear Systems.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#MurphyGW00,https://doi.org/10.1137/S1064827599355153 +Markus Hegland,An Implementation of Multiple and Multivariate Fourier Transforms on Vector Processors.,1995,16,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc16.html#Hegland95,https://doi.org/10.1137/0916018 +Nejib Smaoui,Linear versus Nonlinear Dimensionality Reduction of High-Dimensional Dynamical Systems.,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#Smaoui04,https://doi.org/10.1137/S1064827502412723 +Pierluigi Amodio,A Cyclic Reduction Approach to the Numerical Solution of Boundary Value ODEs.,1997,18,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc18.html#AmodioP97,https://doi.org/10.1137/S1064827595287225 +Florian Schornbaum,Massively Parallel Algorithms for the Lattice Boltzmann Method on NonUniform Grids.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#SchornbaumR16,https://doi.org/10.1137/15M1035240 +Robert Michael Lewis,Implementing Generating Set Search Methods for Linearly Constrained Minimization.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#LewisST07,https://doi.org/10.1137/050635432 +Wayne Joubert,Preconditioning Second-Order Elliptic Operators: Experiment and Theory.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#JoubertMPW92,https://doi.org/10.1137/0913014 +Randall J. LeVeque,Immersed Interface Methods for Stokes Flow with Elastic Boundaries or Surface Tension.,1997,18,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc18.html#LeVequeL97,https://doi.org/10.1137/S1064827595282532 +You-Wei Wen,Iterative Algorithms Based on Decoupling of Deblurring and Denoising for Image Restoration.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#WenNC08,https://doi.org/10.1137/070683374 +Xin Wen,High Order Numerical Quadratures to One Dimensional Delta Function Integrals.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#Wen08,https://doi.org/10.1137/070682939 +Haseena Saran,Alternating Evolution Schemes for Hyperbolic Conservation Laws.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#SaranL11,https://doi.org/10.1137/080733577 +Edward G. Phillips,A Block Preconditioner for an Exact Penalty Formulation for Stationary MHD.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#PhillipsECSP14,https://doi.org/10.1137/140955082 +Tom Manteuffel,Special Issue on Iterative Methods in Numerical Linear Algebra.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#Manteuffel96,https://doi.org/10.1137/0917001 +Daniel B. Szyld,Preconditioned Eigensolvers for Large-Scale Nonlinear Hermitian Eigenproblems with Variational Characterizations. II. Interior Eigenvalues.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#SzyldVX15,https://doi.org/10.1137/15M1016096 +William B. March,ASKIT: Approximate Skeletonization Kernel-Independent Treecode in High Dimensions.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#MarchXB15,https://doi.org/10.1137/140989546 +M. J. Del Razo,Computational and In Vitro Studies of Blast-Induced Blood-Brain Barrier Disruption.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#RazoMMHPBMLC16,https://doi.org/10.1137/15M1010750 +Jinchao Xu,Some Remarks on a Multigrid Preconditioner.,1994,15,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc15.html#XuQ94,https://doi.org/10.1137/0915012 +Wilfried N. Gansterer,Computing Approximate Eigenpairs of Symmetric Block Tridiagonal Matrices.,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#GanstererWMG03,https://doi.org/10.1137/S1064827501399432 +C. C. Fang,Two Element-by-Element Iterative Solutions for Shallow Water Equations.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#FangS01,https://doi.org/10.1137/S1064827599360881 +Ralf Hiptmair,Multilevel Method for Mixed Eigenproblems.,2002,23,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc23.html#HiptmairN02,https://doi.org/10.1137/S1064827501385001 +Elias David Niño Ruiz,An Ensemble Kalman Filter Implementation Based on Modified Cholesky Decomposition for Inverse Covariance Matrix Estimation.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#RuizSD18,https://doi.org/10.1137/16M1097031 +W. H. Hui,Computation of the Shallow Water Equations Using the Unified Coordinates.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#HuiK02,https://doi.org/10.1137/S1064827500367415 +Weizhu Bao,The Random Projection Method for Stiff Detonation Capturing.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#BaoJ01,https://doi.org/10.1137/S1064827599364969 +Ernesto E. Prudencio,Parallel Full Space SQP Lagrange-Newton-Krylov-Schwarz Algorithms for PDE-Constrained Optimization Problems.,2006,27,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc27.html#PrudencioBC06,https://doi.org/10.1137/040602997 +Lukas Einkemmer,Overcoming Order Reduction in Diffusion-Reaction Splitting. Part 1: Dirichlet Boundary Conditions.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#EinkemmerO15,https://doi.org/10.1137/140994204 +Steffen Börm,Adaptive Variable-Rank Approximation of General Dense Matrices.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#Borm07,https://doi.org/10.1137/060651173 +Howard C. Elman,Least Squares Preconditioners for Stabilized Discretizations of the Navier-Stokes Equations.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#ElmanHSST07,https://doi.org/10.1137/060655742 +Shibing Tang,Local Multilevel Methods with Rectangular Finite Elements for the Biharmonic Problem.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#TangX17,https://doi.org/10.1137/17M111008X +Farid Bozorgnia,Numerical Algorithm for Spatial Segregation of Competitive Systems.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#Bozorgnia09,https://doi.org/10.1137/080722588 +James Bremer,A Nonlinear Optimization Procedure for Generalized Gaussian Quadratures.,2010,32,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc32.html#BremerGR10,https://doi.org/10.1137/080737046 +Dalia Fishelov,Vortex Methods for Slightly Viscous Three-Dimensional Flow.,1990,11,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc11.html#Fishelov90,https://doi.org/10.1137/0911024 +Mikko Byckling,Preconditioning with Direct Approximate Factoring of the Inverse.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#BycklingH14,https://doi.org/10.1137/12088570X +Gang Bao,A Fast Algorithm for the Electromagnetic Scattering from a Large Cavity.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#BaoS05,https://doi.org/10.1137/S1064827503428539 +Yves Coudière,A 3D Discrete Duality Finite Volume Method for Nonlinear Elliptic Equations.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#CoudiereH11,https://doi.org/10.1137/100786046 +Haijian Yang,Nonlinear Preconditioning Techniques for Full-Space Lagrange-Newton Solution of PDE-Constrained Optimization Problems.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#YangHC16,https://doi.org/10.1137/15M104075X +Juan A. Acebrón,Domain Decomposition Solution of Elliptic Boundary-Value Problems via Monte Carlo and Quasi-Monte Carlo Methods.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#AcebronBLS05,https://doi.org/10.1137/030600692 +Samira Nikkar,Summation-by-Parts Operators for Non-Simply Connected Domains.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#NikkarN18,https://doi.org/10.1137/18M1163671 +Petr Vanek,Two-grid Method for Linear Elasticity on Unstructured Meshes.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#VanekBT99,https://doi.org/10.1137/S1064827596297112 +Robert Balder,The Solution of Multidimensional Real Helmholtz Equations on Sparse Grids.,1996,17,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc17.html#BalderZ96,https://doi.org/10.1137/S1064827593247035 +Daniel Kressner,Low-Rank Tensor Methods with Subspace Correction for Symmetric Eigenvalue Problems.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#KressnerSU14,https://doi.org/10.1137/130949919 +K. Davey,A Generalized SOR Method for Dense Linear Systems of Boundary Element Equations.,1998,19,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc19.html#DaveyB98,https://doi.org/10.1137/S1064827597288097 +Weizhu Bao,Computing the Ground State Solution of Bose-Einstein Condensates by a Normalized Gradient Flow.,2004,25,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc25.html#BaoD04,https://doi.org/10.1137/S1064827503422956 +Martin P. Neuenhofen,Mstab: Stabilized Induced Dimension Reduction for Krylov Subspace Recycling.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#NeuenhofenG18,https://doi.org/10.1137/16M1092465 +Alan Edelman,The Future Fast Fourier Transform?,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#EdelmanMT98,https://doi.org/10.1137/S1064827597316266 +Pierre L'Ecuyer,Sparse Serial Tests of Uniformity for Random Number Generators.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#LEcuyerSW02,https://doi.org/10.1137/S1064827598349033 +Lars Grasedyck,Variants of Alternating Least Squares Tensor Completion in the Tensor Train Format.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#GrasedyckKK15,https://doi.org/10.1137/130942401 +Hongwei Cheng,On the Compression of Low Rank Matrices.,2005,26,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc26.html#ChengGMR05,https://doi.org/10.1137/030602678 +Jean-Luc Guermond,Invariant Domains Preserving Arbitrary Lagrangian Eulerian Approximation of Hyperbolic Systems with Continuous Finite Elements.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#GuermondPSY17,https://doi.org/10.1137/16M1063034 +John N. Shadid,A Comparison of Preconditioned Nonsymmetric Krylov Methods on a Large-Scale MIMD Machine.,1994,15,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc15.html#ShadidT94,https://doi.org/10.1137/0915030 +Leo Grady,Isoperimetric Partitioning: A New Algorithm for Graph Partitioning.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#GradyS06,https://doi.org/10.1137/040609008 +A. Pinelli,An Efficient Iterative Solution Method for the Chebyshev Collocation of Advection-Dominated Transport Problems.,1996,17,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc17.html#PinelliCDB96,https://doi.org/10.1137/S1064827593253835 +Timo Betcke,The Generalized Singular Value Decomposition and the Method of Particular Solutions.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#Betcke08,https://doi.org/10.1137/060651057 +Giancarlo Benettin,A Changing-Chart Symplectic Algorithm for Rigid Bodies and Other Hamiltonian Systems on Manifolds.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#BenettinCF01,https://doi.org/10.1137/S1064827500381720 +Willy Govaerts,Numerical Methods for Two-Parameter Local Bifurcation Analysis of Maps.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#GovaertsGKM07,https://doi.org/10.1137/060653858 +Nicolas Bock,An Optimized Sparse Approximate Matrix Multiply for Matrices with Decay.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#BockC13,https://doi.org/10.1137/120870761 +Thomas Peter,Nonlinear Approximation by Sums of Exponentials and Translates.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#PeterPT11,https://doi.org/10.1137/100790094 +Guillaume Chiavassa,Point Value Multiscale Algorithms for 2D Compressible Flows.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#ChiavassaD01,https://doi.org/10.1137/S1064827599363988 +Stephen Portnoy,Asymptotic Behavior of the Number of Regression Quantile Breakpoints.,1991,12,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc12.html#Portnoy91,https://doi.org/10.1137/0912047 +Yogi A. Erlangga,Algebraic Multilevel Krylov Methods.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#ErlanggaN09,https://doi.org/10.1137/080731657 +Peter Arbenz,A Jacobi-Davidson Method for Solving Complex Symmetric Eigenvalue Problems.,2004,25,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc25.html#ArbenzH04,https://doi.org/10.1137/S1064827502410992 +Bora Uçar,Partitioning Sparse Matrices for Parallel Preconditioned Iterative Methods.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#UcarA07,https://doi.org/10.1137/040617431 +Sonjoy Das,Asymptotic Sampling Distribution for Polynomial Chaos Representation from Data: A Maximum Entropy and Fisher Information Approach.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#DasGS08,https://doi.org/10.1137/060652105 +Rong-Qing Jia,Applications of Multigrid Algorithms to Finite Difference Schemes for Elliptic Equations with Variable Coefficients.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#Jia14,https://doi.org/10.1137/13091823X +Sookkyung Lim,Simulations of the Whirling Instability by the Immersed Boundary Method.,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#LimP04,https://doi.org/10.1137/S1064827502417477 +Piet J. van der Houwen,Iterated Runge-Kutta Methods on Parallel Computers.,1991,12,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc12.html#HouwenS91,https://doi.org/10.1137/0912054 +Jizu Huang,A Nonlinearly Preconditioned Inexact Newton Algorithm for Steady State Lattice Boltzmann Equations.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#HuangYC16,https://doi.org/10.1137/15M1028078 +T. J. Harris,An Iterative Method for Matrix Spectral Factorization.,1992,13,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc13.html#HarrisD92,https://doi.org/10.1137/0913029 +Yuji Nakatsukasa,Stable and Efficient Spectral Divide and Conquer Algorithms for the Symmetric Eigenvalue Decomposition and the SVD.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#NakatsukasaH13,https://doi.org/10.1137/120876605 +L. E. Carr III,An Element-Based Spectrally Optimized Approximate Inverse Preconditioner for the Euler Equations.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#CarrBG12,https://doi.org/10.1137/11083229X +Martin Berzins,A Solution-Based Triangular and Tetrahedral Mesh Quality Indicator.,1998,19,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc19.html#Berzins98,https://doi.org/10.1137/S1064827596305222 +Jeroen A. S. Witteveen,Refinement Criteria for Simplex Stochastic Collocation with Local Extremum Diminishing Robustness.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#WitteveenI12a,https://doi.org/10.1137/100817498 +Christophe J. Zbinden,Partitioned Runge-Kutta-Chebyshev Methods for Diffusion-Advection-Reaction Problems.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#Zbinden11,https://doi.org/10.1137/100807892 +Nail K. Yamaleev,Optimal Two-Dimensional Finite Difference Grids Providing Superconvergence.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#Yamaleev02,https://doi.org/10.1137/S1064827500378994 +Jonas Ballani,Reduced Basis Methods: From Low-Rank Matrices to Low-Rank Tensors.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#BallaniK16,https://doi.org/10.1137/15M1042784 +Zhenning Cai,Numerical Regularized Moment Method of Arbitrary Order for Boltzmann-BGK Equation.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#CaiL10,https://doi.org/10.1137/100785466 +Curtis R. Vogel,Iterative SVD-Based Methods for Ill-Posed Problems.,1994,15,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc15.html#VogelW94,https://doi.org/10.1137/0915047 +Martin D. Schatz,Exploiting Symmetry in Tensors for High Performance: Multiplication with Symmetric Tensors.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#SchatzLGK14,https://doi.org/10.1137/130907215 +Francesca Arrigo,Updating and Downdating Techniques for Optimizing Network Communicability.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#ArrigoB16,https://doi.org/10.1137/140991923 +Gaobiao Xiao,Application of an Inverse Problem for Symmetric Periodic Potentials.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#XiaoYGO01,https://doi.org/10.1137/S1064827500376211 +Rodolfo Bermejo,A Space-Time Adaptive Finite Element Algorithm Based on Dual Weighted Residual Methodology for Parabolic Equations.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#BermejoC09,https://doi.org/10.1137/070698853 +Ke Chen,On a Class of Preconditioning Methods for Dense Linear Systems from Boundary Elements.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#Chen98,https://doi.org/10.1137/S1064827596304058 +Kapil Ahuja,Improved Scaling for Quantum Monte Carlo on Insulators.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#AhujaCSCK11,https://doi.org/10.1137/100805467 +Yves Bourgault,Anisotropic Error Estimates and Space Adaptivity for a Semidiscrete Finite Element Approximation of the Transient Transport Equation.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#BourgaultP13,https://doi.org/10.1137/120891320 +Shang-Hua Teng,Provably Good Partitioning and Load Balancing Algorithms for Parallel Adaptive N-Body Simulation.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#Teng98,https://doi.org/10.1137/S1064827595288942 +Herbert Egger,On Structure-Preserving Model Reduction for Damped Wave Propagation in Transport Networks.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#EggerKLMM18,https://doi.org/10.1137/17M1125303 +Thomas L. D. Croft,Least-Squares Proper Generalized Decompositions for Weakly Coercive Elliptic Problems.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#CroftP17,https://doi.org/10.1137/15M1049269 +Richard Saurel,A Simple Method for Compressible Multifluid Flows.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#SaurelA99,https://doi.org/10.1137/S1064827597323749 +Maya Neytcheva,Preconditioning of Indefinite and Almost Singular Finite Element Elliptic Equations.,1998,19,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc19.html#NeytchevaV98,https://doi.org/10.1137/S1064827595291480 +Grey Ballard,Reducing Communication Costs for Sparse Matrix Multiplication within Algebraic Multigrid.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#BallardSH16,https://doi.org/10.1137/15M1028807 +Andrew V. Knyazev,Block Locally Optimal Preconditioned Eigenvalue Xolvers (BLOPEX) in Hypre and PETSc.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#KnyazevALO07,https://doi.org/10.1137/060661624 +Ramesh Natarajan,Domain Decomposition Using Spectral Expansions of Steklov-Poincaré Operators.,1995,16,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc16.html#Natarajan95,https://doi.org/10.1137/0916029 +Catherine J. Dalzell,Computing Reproducing Kernels with Arbitrary Boundary Constraints.,1993,14,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc14.html#DalzellR93,https://doi.org/10.1137/0914032 +Alison Ramage,A Preconditioned Nullspace Method for Liquid Crystal Director Modeling.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#RamageG13,https://doi.org/10.1137/120870219 +F. Ma,Monte Carlo Simulation of Linear Two-Phase Flow in Heterogeneous Media.,1990,11,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc11.html#MaW90,https://doi.org/10.1137/0911059 +Jeffrey M. Hokanson,Projected Nonlinear Least Squares for Exponential Fitting.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#Hokanson17,https://doi.org/10.1137/16M1084067 +Henry M. Jurgens,Numerical Solution of the Time-Domain Maxwell Equations Using High-Accuracy Finite-Difference Methods.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#JurgensZ01,https://doi.org/10.1137/S1064827598334666 +Marcus Holm,Dynamic Autotuning of Adaptive Fast Multipole Methods on Hybrid Multicore CPU and GPU Systems.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#HolmEGH14,https://doi.org/10.1137/130943595 +Annick Sartenaer,Automatic Determination of an Initial Trust Region in Nonlinear Programming.,1997,18,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc18.html#Sartenaer97,https://doi.org/10.1137/S1064827595286955 +Jing-Mei Qiu,Convergence of High Order Finite Volume Weighted Essentially Nonoscillatory Scheme and Discontinuous Galerkin Method for Nonconvex Conservation Laws.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#QiuS08,https://doi.org/10.1137/070687487 +Chandrajit L. Bajaj,Nonuniform Fourier Transforms for Rigid-Body and Multidimensional Rotational Correlations.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#BajajBBV13,https://doi.org/10.1137/120892386 +Garry H. Rodrigue,A Vector Finite Element Time-Domain Method for Solving Maxwell's Equations on Unstructured Hexahedral Grids.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#RodrigueW01,https://doi.org/10.1137/S1064827598343826 +Gary L. Miller,Geometric Separators for Finite-Element Meshes.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#MillerTTV98,https://doi.org/10.1137/S1064827594262613 +Mohamed Lemine Ould-Salihi,Blending Finite-Difference and Vortex Methods for Incompressible Flow Computations.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#Ould-SalihiCH01,https://doi.org/10.1137/S1064827599350769 +Fande Kong,A Highly Scalable Multilevel Schwarz Method with Boundary Geometry Preserving Coarse Spaces for 3D Elasticity Problems on Domains with Complex Geometry.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#KongC16,https://doi.org/10.1137/15M1010567 +Kevin W. Aiton,An Adaptive Partition of Unity Method for Chebyshev Polynomial Interpolation.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#AitonD18,https://doi.org/10.1137/17M112052X +Alexander G. Kalmikov,A Hessian-Based Method for Uncertainty Quantification in Global Ocean State Estimation.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#KalmikovH14,https://doi.org/10.1137/130925311 +Mohammed Lemou,Micro-Macro Schemes for Kinetic Equations Including Boundary Layers.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#LemouM12,https://doi.org/10.1137/120865513 +Francis X. Canning,Sparse Approximation for Solving Integral Equations with Oscillatory Kernels.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#Canning92,https://doi.org/10.1137/0913004 +Zachary Clawson,Causal Domain Restriction for Eikonal Equations.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#ClawsonCV14,https://doi.org/10.1137/130936531 +Zhonggui Chen,Revisiting Optimal Delaunay Triangulation for 3D Graded Mesh Generation.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#ChenWLLS14,https://doi.org/10.1137/120875132 +Matthias Heinkenschloss,Reduced Order Modeling for Time-Dependent Optimization Problems with Initial Value Controls.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#HeinkenschlossJ18,https://doi.org/10.1137/16M1109084 +Hussein Mustapha,A New Approach to Simulating Flow in Discrete Fracture Networks with an Optimized Mesh.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#MustaphaM07,https://doi.org/10.1137/060653482 +Xiaojun Tang,Fractional Pseudospectral Schemes with Equivalence for Fractional Differential Equations.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#TangSX17,https://doi.org/10.1137/15M1061496 +Martin Neumüller,A Fully Parallelizable Space-Time Multilevel Monte Carlo Method for Stochastic Differential Equations with Additive Noise.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#NeumullerT18,https://doi.org/10.1137/17M1146725 +Martin H. Gutknecht,Variants of BICGSTAB for Matrices with Complex Spectrum.,1993,14,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc14.html#Gutknecht93,https://doi.org/10.1137/0914062 +Awad H. Al-Mohy,Computing the Fréchet Derivative of the Matrix Logarithm and Estimating the Condition Number.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#Al-MohyHR13,https://doi.org/10.1137/120885991 +James M. Banoczi,The Lack of Influence of the Right-Hand Side on the Accuracy of Linear System Solution.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#BanocziCCI98,https://doi.org/10.1137/S106482759630526X +Eitan Tadmor,Adaptive Spectral Viscosity for Hyperbolic Conservation Laws.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#TadmorW12,https://doi.org/10.1137/110836456 +Thomas Y. Hou,The Convergence of an Exact Desingularization for Vortex Methods.,1993,14,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc14.html#HouLS93,https://doi.org/10.1137/0914001 +Kiok Lim Tan,A Level Set-Boundary Element Method for the Simulation of Underwater Bubble Dynamics.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#TanKW08,https://doi.org/10.1137/060660667 +Jon B. Cherrie,Fast Evaluation of Radial Basis Functions: Methods for Generalized Multiquadrics in Rn.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#CherrieBN02,https://doi.org/10.1137/S1064827500367609 +Robert Bridson,A Structural Diagnosis of Some IC Orderings.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#BridsonT01a,https://doi.org/10.1137/S1064827599353841 +Stefan Holst,A Mixed Finite-Element Discretization of the Energy-Transport Model for Semiconductors.,2003,24,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc24.html#HolstJP03,https://doi.org/10.1137/S1064827501396440 +Claude Brezinski,Error Estimates for the Solution of Linear Systems.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#Brezinski99,https://doi.org/10.1137/S1064827597328510 +Leocadio G. Casado,Interval Algorithms for Finding the Minimal Root in a Set of Multiextremal One-Dimensional Nondifferentiable Functions.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#CasadoGS02,https://doi.org/10.1137/S1064827599357590 +Emmanuel Agullo,Reducing the I/O Volume in Sparse Out-of-core Multifrontal Methods.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#AgulloGL10,https://doi.org/10.1137/080720061 +Ramji Kamakoti,High-Order Narrow Stencil Finite-Difference Approximations of Second-Order Derivatives Involving Variable Coefficients.,2009,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#KamakotiP09,https://doi.org/10.1137/080740829 +J. E. Bunder,Accuracy of Patch Dynamics with Mesoscale Temporal Coupling for Efficient Massively Parallel Simulations.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#BunderRK16,https://doi.org/10.1137/15M1015005 +Martin Stoll,A Low-Rank in Time Approach to PDE-Constrained Optimization.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#StollB15,https://doi.org/10.1137/130926365 +Michael Bader,Dynamically Adaptive Simulations with Minimal Memory Requirement---Solving the Shallow Water Equations Using Sierpinski Curves.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#BaderBSV10,https://doi.org/10.1137/080728871 +Sebastiano Boscarino,On a Class of Uniformly Accurate IMEX Runge--Kutta Schemes and Applications to Hyperbolic Systems with Relaxation.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#BoscarinoR09,https://doi.org/10.1137/080713562 +Anna Lischke,A Petrov-Galerkin Spectral Method of Linear Complexity for Fractional Multiterm ODEs on the Half Line.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#LischkeZK17,https://doi.org/10.1137/17M1113060 +Hans De Sterck,Algebraic Multigrid for Markov Chains.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#SterckMMMRS10,https://doi.org/10.1137/090753589 +R. Zimmermann,On the Maximum Likelihood Training of Gradient-Enhanced Spatial Gaussian Processes.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#Zimmermann13,https://doi.org/10.1137/13092229X +Kent Pearce,A Constructive Method for Numerically Computing Conformal Mappings for Gearlike Domains.,1991,12,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc12.html#Pearce91,https://doi.org/10.1137/0912013 +Tetyana Vdovina,A Two--Scale Solution Algorithm for the Elastic Wave Equation.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#VdovinaMG09,https://doi.org/10.1137/080714877 +William J. Layton,Oscillation Absorption Finite Element Methods for Convection-Diffusion Problems.,1996,17,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc17.html#LaytonP96,https://doi.org/10.1137/S1064827593259091 +Tsung-Ming Huang,A Newton-Type Method with Nonequivalence Deflation for Nonlinear Eigenvalue Problems Arising in Photonic Crystal Modeling.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#HuangLM16,https://doi.org/10.1137/151004823 +John D. Pryce,Fast Automatic Differentiation Jacobians by Compact LU Factorization.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#PryceT08,https://doi.org/10.1137/050644847 +Christian Cabos,Error Bounds for Dynamic Responses in Forced Vibration Problems.,1994,15,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc15.html#Cabos94,https://doi.org/10.1137/0915001 +Raimund Bürger,A Stabilized Finite Volume Element Formulation for Sedimentation-Consolidation Processes.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#BurgerRT12,https://doi.org/10.1137/110836559 +Jok Man Tang,Domain-Decomposition-Type Methods for Computing the Diagonal of a Matrix Inverse.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#TangS11,https://doi.org/10.1137/100799939 +Alexandre Ern,Adaptive Inexact Newton Methods with A Posteriori Stopping Criteria for Nonlinear Diffusion PDEs.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#ErnV13,https://doi.org/10.1137/120896918 +David Pardo,PML Enhanced with a Self-Adaptive Goal-Oriented hp-Finite Element Method: Simulation of Through-Casing Borehole Resistivity Measurements.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#PardoDTM08,https://doi.org/10.1137/070689796 +Irfan Altas,Multigrid Solution of Automatically Generated High-Order Discretizations for the Biharmonic Equation.,1998,19,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc19.html#AltasDGM98,https://doi.org/10.1137/S1464827596296970 +David H. Bailey,A Fast Method for the Numerical Evaluation of Continuous Fourier and Laplace Transforms.,1994,15,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc15.html#BaileyS94,https://doi.org/10.1137/0915067 +Khachik Sargsyan,Uncertainty Quantification given Discontinuous Model Response and a Limited Number of Model Runs.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#SargsyanSDN12,https://doi.org/10.1137/100817899 +Takashi Sasakawa,Optimal Magnetic Shield Design with Second-Order Cone Programming.,2003,24,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc24.html#SasakawaT03,https://doi.org/10.1137/S1064827500380350 +Thomas F. Coleman,The Efficient Computation of Sparse Jacobian Matrices Using Automatic Differentiation.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#ColemanV98,https://doi.org/10.1137/S1064827595295349 +N. Anders Petersson,Hole-Cutting for Three-Dimensional Overlapping Grids.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#Petersson99,https://doi.org/10.1137/S1064827597329102 +David Day,Solving Complex-Valued Linear Systems via Equivalent Real Formulations.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#DayH01,https://doi.org/10.1137/S1064827500372262 +John E. Tolsma,Efficient Calculation of Sparse Jacobians.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#TolsmaB99,https://doi.org/10.1137/S1064827597316552 +Vladimir Druskin,Using Nonorthogonal Lanczos Vectors in the Computation of Matrix Functions.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#DruskinGK98,https://doi.org/10.1137/S1064827596303661 +Lin Lin 0001,Elliptic Preconditioner for Accelerating the Self-Consistent Field Iteration in Kohn-Sham Density Functional Theory.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#LinY13,https://doi.org/10.1137/120880604 +Giuseppe La Spina,High-Resolution Finite Volume Central Schemes for a Compressible Two-Phase Model.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#SpinaV12,https://doi.org/10.1137/12087089X +Edmond Chow,Approximate Inverse Techniques for Block-Partitioned Matrices.,1997,18,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc18.html#ChowS97,https://doi.org/10.1137/S1064827595281575 +Zhangxin Chen,Multigrid Algorithms for Nonconforming and Mixed Methods for Nonsymmetric and Indefinite Problems.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#ChenKY98,https://doi.org/10.1137/S1064827595289790 +Chi-Tien Lin,High-Resolution Nonoscillatory Central Schemes for Hamilton-Jacobi Equations.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#LinT00,https://doi.org/10.1137/S1064827598344856 +Michael D. Marcozzi,On the Approximation of Optimal Stopping Problems with Application to Financial Mathematics.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#Marcozzi01,https://doi.org/10.1137/S1064827599364647 +Achi Brandt,Fast Calculation of Multiple Line Integrals.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#BrandtD99a,https://doi.org/10.1137/S1064827595285718 +Michael Griebel,Dimensionality Reduction of High-Dimensional Data with a NonLinear Principal Component Aligned Generative Topographic Mapping.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#GriebelH14,https://doi.org/10.1137/130931382 +John D. Jakeman,A Generalized Sampling and Preconditioning Scheme for Sparse Approximation of Polynomial Chaos Expansions.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#JakemanNZ17,https://doi.org/10.1137/16M1063885 +Santiago Badia,Multilevel Balancing Domain Decomposition at Extreme Scales.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#BadiaMP16,https://doi.org/10.1137/15M1013511 +Michael K. Ng,Preconditioned Lanczos Methods for the Minimum Eigenvalue of a Symmetric Positive Definite Toeplitz Matrix.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#Ng00,https://doi.org/10.1137/S1064827597330169 +Anita T. Layton,A Semi-Lagrangian Collocation Method for the Shallow Water Equations on the Sphere.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#Layton03,https://doi.org/10.1137/S1064827501395021 +Gennady Yu. Kulikov,A Singly Diagonally Implicit Two-Step Peer Triple with Global Error Control for Stiff Ordinary Differential Equations.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#KulikovW15,https://doi.org/10.1137/140979952 +Jörg Peters,Fast Iterative Solvers for Discrete Stokes Equations.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#PetersRR05,https://doi.org/10.1137/040606028 +Juan E. Santos,Determination of a Transversely Isotropic Medium Equivalent to a Fractured Fluid-Saturated Poroelastic Medium. A Finite Element Approach.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#SantosCC17,https://doi.org/10.1137/15M1040876 +Julio Enrique Castrillón-Candás,Spatially Adapted Multiwavelets and Sparse Representation of Integral Equations on General Geometries.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#Castrillon-Candas03,https://doi.org/10.1137/S1064827501371238 +John A. Trangenstein,The Riemann Problem for Longitudinal Motion in an Elastic-Plastic Bar.,1991,12,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc12.html#TrangensteinP91,https://doi.org/10.1137/0912010 +James Demmel,Nonnegative Diagonals and High Performance on Low-Profile Matrices from Householder QR.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#DemmelHHR09,https://doi.org/10.1137/080725763 +Luca Bergamaschi,A Mixed Finite Element-Finite Volume Formulation of the Black-Oil Model.,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#BergamaschiMM98,https://doi.org/10.1137/S1064827595289303 +Leonidas Linardakis,Delaunay Decoupling Method for Parallel Guaranteed Quality Planar Mesh Refinement.,2006,27,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc27.html#LinardakisC06,https://doi.org/10.1137/030602812 +Bengt Fornberg,A Pseudospectral Fictitious Point Method for High Order Initial-Boundary Value Problems.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#Fornberg06,https://doi.org/10.1137/040611252 +Jian Cheng,Multidomain Hybrid RKDG and WENO Methods for Hyperbolic Conservation Laws.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#ChengLL13,https://doi.org/10.1137/110855156 +Elsayed M. E. Elbarbary,Integration Preconditioning Matrix for Ultraspherical Pseudospectral Operators.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#Elbarbary06,https://doi.org/10.1137/050630982 +Eduard Bader,Certified Reduced Basis Methods for Parametrized Distributed Elliptic Optimal Control Problems with Control Constraints.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#BaderKGV16,https://doi.org/10.1137/16M1059898 +Michael Dumbser,Central Weighted ENO Schemes for Hyperbolic Conservation Laws on Fixed and Moving Unstructured Meshes.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#DumbserBS017,https://doi.org/10.1137/17M1111036 +Raimund Bürger,Regularized Nonlinear Solvers for IMEX Methods Applied to Diffusively Corrected Multispecies Kinematic Flow Models.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#BurgerMV13,https://doi.org/10.1137/120888533 +Weiming Cao,A Moving Mesh Method Based on the Geometric Conservation Law.,2002,24,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc24.html#CaoHR02,https://doi.org/10.1137/S1064827501384925 +David L. Chopp,Another Look at Velocity Extensions in the Level Set Method.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#Chopp09,https://doi.org/10.1137/070686329 +Hari Sundar,Bottom-Up Construction and 2: 1 Balance Refinement of Linear Octrees in Parallel.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#SundarSB08,https://doi.org/10.1137/070681727 +Gene H. Golub,Inexact Preconditioned Conjugate Gradient Method with Inner-Outer Iteration.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#GolubY99,https://doi.org/10.1137/S1064827597323415 +Narayan Kovvali,Rapid Prolate Pseudospectral Differentiation and Interpolation with the Fast Multipole Method.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#KovvaliLZCC06,https://doi.org/10.1137/050635961 +Wolfgang Bangerth,A Framework for the Adaptive Finite Element Solution of Large-Scale Inverse Problems.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#Bangerth08,https://doi.org/10.1137/070690560 +Christof Vömel,Detecting Localization in an Invariant Subspace.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#VomelP11,https://doi.org/10.1137/09077624X +George S. Fishman,Evaluating Best-Case and Worst-Case Variances When Bounds are Available.,1992,13,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc13.html#FishmanGR92,https://doi.org/10.1137/0913076 +Jan S. Hesthaven,Certified Reduced Basis Method for the Electric Field Integral Equation.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#HesthavenSZ12,https://doi.org/10.1137/110848268 +Wayne Joubert,A Robust GMRES-Based Adaptive Polynomial Preconditioning Algorithm for Nonsymmetric Linear Systems.,1994,15,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc15.html#Joubert94,https://doi.org/10.1137/0915029 +Manuel J. Castro,Finite Volume Simulation of the Geostrophic Adjustment in a Rotating Shallow-Water System.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#CastroLP08,https://doi.org/10.1137/070707166 +Michael Hintermüller,An Infeasible Primal-Dual Algorithm for Total Bounded Variation-Based Inf-Convolution-Type Image Restoration.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#HintermullerS06,https://doi.org/10.1137/040613263 +Esmond G. Ng,A Supernodal Cholesky Factorization Algorithm for Shared-Memory Multiprocessors.,1993,14,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc14.html#NgP93,https://doi.org/10.1137/0914048 +Hans Petter Langtangen,SISC Redefined.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#Langtangen12,http://epubs.siam.org/sisc/resource/1/sjoce3/v34/i1/pvii_s1 +Patrick H. Worley,The Effect of Time Constraints on Scaled Speedup.,1990,11,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc11.html#Worley90,https://doi.org/10.1137/0911050 +Susan E. Minkoff,Spatial Parallelism of a 3D Finite Difference Velocity-Stress Elastic Wave Propagation Code.,2002,24,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc24.html#Minkoff02,https://doi.org/10.1137/S1064827501390960 +D. O. Gunter,Implicit Integration of the Time-Dependent Ginzburg-Landau Equations of Superconductivity.,2002,23,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc23.html#GunterKL02,https://doi.org/10.1137/S1064827500375473 +Zhong-Zhi Bai,Block Triangular and Skew-Hermitian Splitting Methods for Positive-Definite Linear Systems.,2005,26,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc26.html#BaiGLY05,https://doi.org/10.1137/S1064827503428114 +Hao Liu,A Level Set Based Variational Principal Flow Method for Nonparametric Dimension Reduction on Riemannian Manifolds.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#LiuYLC17,https://doi.org/10.1137/16M107236X +William J. Layton,Robustness of an Elementwise Parallel Finite Element Method for Convection-Diffusion Problems.,1998,19,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc19.html#LaytonMR98,https://doi.org/10.1137/S1064827595293545 +Mark Ainsworth,Is the Multigrid Method Fault Tolerant? The Multilevel Case.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#AinsworthG17a,https://doi.org/10.1137/16M1097274 +Jorgen L. Nikolajsen,An Improved Laguerre Eigensolver for Unsymmetric Matrices.,2000,22,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc22.html#Nikolajsen00,https://doi.org/10.1137/S106482759834963X +Hai Bi,Local and Parallel Finite Element Discretizations for Eigenvalue Problems.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#BiYL13,https://doi.org/10.1137/130911883 +Michael Herty,Coupling Conditions for Networked Systems of Euler Equations.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#Herty08,https://doi.org/10.1137/070688535 +Tony F. Chan,Fourier Analysis of Relaxed Incomplete Factorization Preconditioners.,1991,12,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc12.html#Chan91,https://doi.org/10.1137/0912035 +Tamar Schlick,Modified Cholesky Factorizations for Sparse Preconditioners.,1993,14,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc14.html#Schlick93,https://doi.org/10.1137/0914026 +Hans Henrik B. Sørensen,Multicore Performance of Block Algebraic Iterative Reconstruction Methods.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#SorensenH14,https://doi.org/10.1137/130920642 +Jens L. Eftang,"An ""hp"" Certified Reduced Basis Method for Parametrized Elliptic Partial Differential Equations.",2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#EftangPR10,https://doi.org/10.1137/090780122 +Tim N. Phillips,A Semi-Lagrangian Finite Volume Method for Newtonian Contraction Flows.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#PhillipsW01,https://doi.org/10.1137/S1064827599365288 +Paola F. Antonietti,hp-Version Composite Discontinuous Galerkin Methods for Elliptic Problems on Complicated Domains.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#AntoniettiGH13,https://doi.org/10.1137/120877246 +Robert F. Warming,Discrete Multiresolution Analysis Using Hermite Interpolation: Biorthogonal Multiwavelets.,2000,22,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc22.html#WarmingB00,https://doi.org/10.1137/S1064827597315236 +Awad H. Al-Mohy,A Truncated Taylor Series Algorithm for Computing the Action of Trigonometric and Hyperbolic Matrix Functions.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#Al-Mohy18,https://doi.org/10.1137/17M1145227 +Linda Stals,Stability Analysis of Time Stepping for Prolonged Plasma Fluid Simulations.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#StalsNB08,https://doi.org/10.1137/070703569 +Feng Zhao,The Parallel Multipole Method on the Connection Machine.,1991,12,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc12.html#ZhaoJ91,https://doi.org/10.1137/0912077 +Stephen D. Bond,Stabilized Integration of Hamiltonian Systems with Hard-Sphere Inequality Constraints.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#BondL07,https://doi.org/10.1137/06066552X +Eleanor McDonald,Preconditioning and Iterative Solution of All-at-Once Systems for Evolutionary Partial Differential Equations.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#McDonaldPW18,https://doi.org/10.1137/16M1062016 +ömer Eugeciouglu,Efficient Nonparametric Density Estimation on the Sphere with Applications in Fluid Mechanics.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#EugeciougluS00,https://doi.org/10.1137/S1064827595290462 +Teri Barth,A Taxonomy of Consistently Stabilized Finite Element Methods for the Stokes Problem.,2004,25,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc25.html#BarthBGS04,https://doi.org/10.1137/S1064827502407718 +Henk A. van der Vorst,Residual Replacement Strategies for Krylov Subspace Iterative Methods for the Convergence of True Residuals.,2000,22,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc22.html#VorstY00,https://doi.org/10.1137/S1064827599353865 +Thomas A. Manteuffel,A Root-Node-Based Algebraic Multigrid Method.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#ManteuffelOSS17,https://doi.org/10.1137/16M1082706 +Stephan Schmidt,Large-Scale Three-Dimensional Acoustic Horn Optimization.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#SchmidtWB16,https://doi.org/10.1137/15M1021131 +David W. Zingg,High-Accuracy Finite-Difference Schemes for Linear Wave Propagation.,1996,17,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc17.html#ZinggLJ96,https://doi.org/10.1137/S1064827594267173 +Thomas A. Brunner,Algebraic Multigrid for Linear Systems Obtained by Explicit Element Reduction.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#BrunnerK11,https://doi.org/10.1137/100801640 +Annalisa Buffa,On the Acoustic Single Layer Potential: Stabilization and Fourier Analysis.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#BuffaS06,https://doi.org/10.1137/040615110 +Robert C. Kirby,Optimizing the Evaluation of Finite Element Matrices.,2005,27,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc27.html#KirbyKLS05,https://doi.org/10.1137/040607824 +Rüdiger Weiss,Error-Minimizing Krylov Subspace Methods.,1994,15,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc15.html#Weiss94,https://doi.org/10.1137/0915034 +éliane Bécache,A Fictitious Domain Method with Mixed Finite Elements for Elastodynamics.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#BecacheRT07,https://doi.org/10.1137/060655821 +Jin Xu,Scalable Direct Vlasov Solver with Discontinuous Galerkin Method on Unstructured Mesh.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#XuOMN10,https://doi.org/10.1137/10078904X +Shidong Jiang,Integral Equation Methods for Unsteady Stokes Flow in Two Dimensions.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#JiangVG12,https://doi.org/10.1137/110860537 +Per Christian Hansen,Test Matrices for Regularization Methods.,1995,16,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc16.html#Hansen95,https://doi.org/10.1137/0916032 +Hermann Brunner,Computational Solution of Blow-Up Problems for Semilinear Parabolic PDEs on Unbounded Domains.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#BrunnerWZ10,https://doi.org/10.1137/090761367 +Weizhu Bao,An Exponential Wave Integrator Sine Pseudospectral Method for the Klein-Gordon-Zakharov System.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#BaoDZ13,https://doi.org/10.1137/110855004 +Adam Chacon,Fast Two-scale Methods for Eikonal Equations.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#ChaconV12,https://doi.org/10.1137/10080909X +Henk A. van der Vorst,Bi-CGSTAB: A Fast and Smoothly Converging Variant of Bi-CG for the Solution of Nonsymmetric Linear Systems.,1992,13,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc13.html#Vorst92,https://doi.org/10.1137/0913035 +Klaus J. Ressel,QMR Smoothing for Lanczos-Type Product Methods Based on Three-Term Rrecurrences.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#ResselG98,https://doi.org/10.1137/S1064827596304812 +Jan S. Hesthaven,A Stable Penalty Method for the Compressible Navier-Stokes Equations: I. Open Boundary Conditions.,1996,17,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc17.html#HesthavenG96,https://doi.org/10.1137/S1064827594268488 +William J. Layton,Numerical Solution of the Stationary Navier-Stokes Equations Using a Multilevel Finite Element Method.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#LaytonLP98,https://doi.org/10.1137/S1064827596306045 +Rodolfo Bermejo,A Multigrid Algorithm for the p-Laplacian.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#BermejoI00,https://doi.org/10.1137/S1064827598339098 +Jacob G. Martin,Ranks and Representations for Spectral Graph Bisection.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#MartinC09,https://doi.org/10.1137/070710640 +Ilaria Perugia,Linear Algebra Methods in a Mixed Approximation of Magnetostatic Problems.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#PerugiaSA99,https://doi.org/10.1137/S1064827598333211 +Tetsu Narumi,Accelerating Molecular Dynamics Simulations on PlayStation 3 Platform Using Virtual-GRAPE Programming Model.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#NarumiKTY08,https://doi.org/10.1137/070692054 +Zheng-Jian Bai,Computing the Nearest Doubly Stochastic Matrix with A Prescribed Entry.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#BaiCT07,https://doi.org/10.1137/050639831 +Junfeng Yang,Alternating Direction Algorithms for 1-Problems in Compressive Sensing.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#YangZ11,https://doi.org/10.1137/090777761 +Francesca Rapetti,A FETI Preconditioner for Two Dimensional Edge Element Approximations of Maxwell's Equations on Nonmatching Grids.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#RapettiT01,https://doi.org/10.1137/S1064827500366999 +James Glimm,Robust Computational Algorithms for Dynamic Interface Tracking in Three Dimensions.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#GlimmG0T00,https://doi.org/10.1137/S1064827598340500 +Fredrik Manne,Efficient Sparse Cholesky Factorization on a Massively Parallel SIMD Computer.,1995,16,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc16.html#ManneH95,https://doi.org/10.1137/0916054 +Matthias Grajewski,Mathematical and Numerical Analysis of a Robust and Efficient Grid Deformation Method in the Finite Element Context.,2009,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#GrajewskiKT09,https://doi.org/10.1137/050639387 +Graeme D. Chalmers,Asymptotic Stability of a Jump-Diffusion Equation and Its Numerical Approximation.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#ChalmersH08,https://doi.org/10.1137/070699469 +Laurent Desbat,"The ""Minimum Reconstruction Error"" Choice of Regularization Parameters: Some More Efficient Methods and Their Application to Deconvolution Problems.",1995,16,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc16.html#DesbatG95,https://doi.org/10.1137/0916080 +Mengdi Zheng,Numerical Methods for SPDEs with Tempered Stable Processes.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#ZhengK15,https://doi.org/10.1137/140966083 +V. Baramidze,Spherical Splines for Data Interpolation and Fitting.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#BaramidzeLS06,https://doi.org/10.1137/040620722 +Jie Shen 0001,Efficient Spectral-Galerkin Methods III: Polar and Cylindrical Geometries.,1997,18,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc18.html#Shen97,https://doi.org/10.1137/S1064827595295301 +A. T. Barker,A Scalable Preconditioner for a Primal Discontinuous Petrov-Galerkin Method.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#BarkerDGK18,https://doi.org/10.1137/16M1104780 +Vladimir Druskin,A Krylov Stability-Corrected Coordinate-Stretching Method to Simulate Wave Propagation in Unbounded Domains.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#DruskinR13,https://doi.org/10.1137/12087356X +Ricardo D. Fierro,Regularization by Truncated Total Least Squares.,1997,18,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc18.html#FierroGHO97,https://doi.org/10.1137/S1064827594263837 +Yaw Kyei,Space-Time Finite Volume Differencing Framework for Effective Higher-Order Accurate Discretizations of Parabolic Equations.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#Kyei12,https://doi.org/10.1137/10080498X +Gabriella Puppo,A Vortex-Grid Method for Prandtl's Equations.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#Puppo99,https://doi.org/10.1137/S1064827596297860 +Ben Leimkuhler,Estimating Waveform Relaxation Convergence.,1993,14,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc14.html#Leimkuhler93,https://doi.org/10.1137/0914054 +Thomas Luu,Efficient and Accurate Parallel Inversion of the Gamma Distribution.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#Luu15,https://doi.org/10.1137/14095875X +Kainan Wang,A Randomized Maximum A Posteriori Method for Posterior Sampling of High Dimensional Nonlinear Bayesian Inverse Problems.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#WangBG18,https://doi.org/10.1137/16M1060625 +Per-Gunnar Martinsson,An Accelerated Kernel-Independent Fast Multipole Method in One Dimension.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#MartinssonR07,https://doi.org/10.1137/060662253 +Giovanni Russo 0001,A Level-Set Method for the Evolution of Faceted Crystals.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#RussoS00,https://doi.org/10.1137/S1064827599351921 +Shahnawaz Ahmed,A Third Order Accurate Fast Marching Method for the Eikonal Equation in Two Dimensions.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#AhmedBMR11,https://doi.org/10.1137/10080258X +C. Jourdana,A Hybrid Classical-Quantum Transport Model for the Simulation of Carbon Nanotube Transistors.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#JourdanaP14,https://doi.org/10.1137/130926353 +Xiaowei Zhang 0002,Incremental Regularized Least Squares for Dimensionality Reduction of Large-Scale Data.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#ZhangCCLNT16,https://doi.org/10.1137/15M1035653 +Songhe Song,Third Order Accurate Large-Particle Finite Volume Method on Unstructured Triangular Meshes.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#SongC02,https://doi.org/10.1137/S1064827599353105 +Hong Wang,A Component-Based Eulerian-Lagrangian Formulation for Multicomponent Multiphase Compositional Flow and Transport in Porous Media.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#WangZET13,https://doi.org/10.1137/120885681 +Tobias Preußer,3D Composite Finite Elements for Elliptic Boundary Value Problems with Discontinuous Coefficients.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#PreusserRSS11,https://doi.org/10.1137/100791750 +Moritz Lang,Modular Parameter Identification of Biomolecular Networks.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#LangS16,https://doi.org/10.1137/15M103306X +Jean-Antoine Désidéri,Convergence Analysis of the Defect-Correction Iteration for Hyperbolic Problems.,1995,16,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc16.html#DesideriH95,https://doi.org/10.1137/0916007 +H. Schmitt,Contour Dynamics and the Fast Multipole Method.,1994,15,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc15.html#Schmitt94,https://doi.org/10.1137/0915060 +Nicholas Hale,Fast and Accurate Computation of Gauss-Legendre and Gauss-Jacobi Quadrature Nodes and Weights.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#HaleT13,https://doi.org/10.1137/120889873 +Zlatko Drmac,Implementation of Jacobi Rotations for Accurate Singular Value Computation in Floating Point Arithmetic.,1997,18,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc18.html#Drmac97,https://doi.org/10.1137/S1064827594265095 +Shinichiro Ohnuki,Truncation Error Analysis of Multipole Expansion.,2004,25,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc25.html#OhnukiC04,https://doi.org/10.1137/S1064827502412668 +Ulrich Langer,Inexact Data-Sparse Boundary Element Tearing and Interconnecting Methods.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#LangerOSZ07,https://doi.org/10.1137/050636243 +Marcus J. Grote,Parallel Preconditioning with Sparse Approximate Inverses.,1997,18,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc18.html#GroteH97,https://doi.org/10.1137/S1064827594276552 +Martin Berggren,Numerical Solution of a Flow-Control Problem: Vorticity Reduction by Dynamic Boundary Action.,1998,19,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc19.html#Berggren98,https://doi.org/10.1137/S1064827595294678 +Laurent Granvilliers,Parameter Estimation Using Interval Computations.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#GranvilliersCB04,https://doi.org/10.1137/S1064827503426851 +Paul J. Dellar,Lattice Boltzmann Formulation for Linear Viscoelastic Fluids Using an Abstract Second Stress.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#Dellar14,https://doi.org/10.1137/130940372 +Yimin Zhu,A Parallel Implementation of the p-Version of the Finite Element Method.,1996,17,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc17.html#ZhuK96,https://doi.org/10.1137/S1064827593260619 +J. M. Picone,Timing Analysis of the Monotonic Logical Grid for Many-Body Dynamics.,1990,11,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc11.html#PiconeLB90,https://doi.org/10.1137/0911022 +Tim Boonen,Local Fourier Analysis of Multigrid for the Curl-Curl Equation.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#BoonenLV08,https://doi.org/10.1137/070679119 +Xiaodong Zhang,Parallel Methods for Solving Nonlinear Block Bordered Systems of Equations.,1992,13,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc13.html#ZhangBS92,https://doi.org/10.1137/0913050 +Peter Minary,Dynamical Spatial Warping: A Novel Method for the Conformational Sampling of Biophysical Structure.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#MinaryTM08,https://doi.org/10.1137/070686706 +Knut-Andreas Lie,On the Artificial Compression Method for Second-Order Nonoscillatory Central Difference Schemes for Systems of Conservation Laws.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#LieN03,https://doi.org/10.1137/S1064827501392880 +Ka Chun Cheung,A Kernel-Based Embedding Method and Convergence Analysis for Surfaces PDEs.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#CheungL18,https://doi.org/10.1137/16M1080410 +C. R. Prins,A Least-Squares Method for Optimal Transport Using the Monge-Ampère Equation.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#PrinsBBJT15,https://doi.org/10.1137/140986414 +Terhemen Aboiyar,Adaptive ADER Methods Using Kernel-Based Polyharmonic Spline WENO Reconstruction.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#AboiyarGI10,https://doi.org/10.1137/100792573 +Micol Pennacchio,Fast Structured AMG Preconditioning for the Bidomain Model in Electrocardiology.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#PennacchioS11,https://doi.org/10.1137/100796364 +Roland Griesmaier,Inverse Source Problems for the Helmholtz Equation and the Windowed Fourier Transform.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#GriesmaierHR12,https://doi.org/10.1137/110855880 +Boris Diskin,New Factorizable Discretizations for the Euler Equations.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#DiskinT03,https://doi.org/10.1137/S1064827502404787 +James G. Nagy,Restoring Images Degraded by Spatially Variant Blur.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#NagyO98,https://doi.org/10.1137/S106482759528507X +Mark Ainsworth,A Posteriori Error Estimation for Lowest Order Raviart-Thomas Mixed Finite Elements.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#Ainsworth07,https://doi.org/10.1137/06067331X +Qiang Du,Quasi-Laguerre Iteration in Solving Symmetric Tridiagonal Eigenvalue Problems.,1996,17,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc17.html#DuJLZ96,https://doi.org/10.1137/S1064827594273225 +Christophe Chalons,Fast Relaxation Solvers for Hyperbolic-Elliptic Phase Transition Problems.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#ChalonsCER12,https://doi.org/10.1137/110848815 +Ta-Hsin Li,Multiscale Representation and Analysis of Spherical Data by Spherical Wavelets.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#Li99,https://doi.org/10.1137/S1064827598341463 +Xiao-Chuan Cai,Nonlinearly Preconditioned Inexact Newton Algorithms.,2002,24,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc24.html#CaiK02,https://doi.org/10.1137/S106482750037620X +Volker Mehrmann,Structure-Preserving Methods for Computing Eigenpairs of Large Sparse Skew-Hamiltonian/Hamiltonian Pencils.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#MehrmannW01,https://doi.org/10.1137/S1064827500366434 +Michael P. Friedlander,Erratum: Hybrid Deterministic-Stochastic Methods for Data Fitting.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#FriedlanderS13,https://doi.org/10.1137/130908257 +Michael Ulbrich,A Proximal Gradient Method for Ensemble Density Functional Theory.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#UlbrichWYKL15,https://doi.org/10.1137/14098973X +Michael L. Minion,Interweaving PFASST and Parallel Multigrid.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#MinionSBER15,https://doi.org/10.1137/14097536X +L. Harhanen,Edge-Enhancing Reconstruction Algorithm for Three-Dimensional Electrical Impedance Tomography.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#HarhanenHMS15,https://doi.org/10.1137/140971750 +Ralf Hannemann-Tamás,Adjoint Sensitivity Analysis for Nonsmooth Differential-Algebraic Equation Systems.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#Hannemann-Tamas15,https://doi.org/10.1137/140976315 +Robert I. McLachlan,A New Implementation of Symplectic Runge-Kutta Methods.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#McLachlan07,https://doi.org/10.1137/06065338X +Ivo Babuska,Parallel Implementation of the hp-Version of the Finite Element Method on a Shared-Memory Architecture.,1992,13,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc13.html#BabuskaEM92,https://doi.org/10.1137/0913081 +Ning Wang,Geometric Properties of the Icosahedral-Hexagonal Grid on the Two-Sphere.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#WangL11,https://doi.org/10.1137/090761355 +James S. Ball,Automatic Computation of Zeros of Bessel Functions and Other Special Functions.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#Ball99,https://doi.org/10.1137/S1064827598339074 +Jorge Delgado,Running Relative Error for the Evaluation of Polynomials.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#DelgadoP09,https://doi.org/10.1137/080745249 +Laura Grigori,Low Rank Approximation of a Sparse Matrix Based on LU Factorization with Column and Row Tournament Pivoting.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#GrigoriCD18,https://doi.org/10.1137/16M1074527 +Mapundi K. Banda,Large-Eddy Simulation of Thermal Flows based on Discrete-Velocity Models.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#BandaST08,https://doi.org/10.1137/070682174 +Eran Treister,Full Waveform Inversion Guided by Travel Time Tomography.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#TreisterH17,https://doi.org/10.1137/16M1082718 +Tahir Malas,Accelerating the Multilevel Fast Multipole Algorithm with the Sparse-Approximate-Inverse (SAI) Preconditioning.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#MalasG09,https://doi.org/10.1137/070711098 +Li-Lian Wang,A Well-Conditioned Collocation Method Using a Pseudospectral Integration Matrix.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#WangSZ14,https://doi.org/10.1137/130922409 +Alessandro Buccini,A Semiblind Regularization Algorithm for Inverse Problems with Application to Image Deblurring.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#BucciniDR18,https://doi.org/10.1137/16M1101830 +Andrey N. Chernikov,Multitissue Tetrahedral Image-to-mesh Conversion with Guaranteed Quality and Fidelity.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#ChernikovC11,https://doi.org/10.1137/100815256 +Satish Iyengar,A Saddle Point Approximation for Certain Multivariate Tail Probabilities.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#IyengarM98,https://doi.org/10.1137/S1064827594277338 +Stefano Serra Capizzano,Multigrid Methods for Multilevel Circulant Matrices.,2004,26,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc26.html#CapizzanoP04,https://doi.org/10.1137/S1064827501388509 +Bärbel Janssen,Adaptive Multilevel Methods with Local Smoothing for H1- and Hcurl-Conforming High Order Finite Element Methods.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#JanssenK11,https://doi.org/10.1137/090778523 +Padma Raghavan,Parallel Hybrid Preconditioning: Incomplete Factorization with Selective Sparse Approximate Inversion.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#RaghavanT10,https://doi.org/10.1137/080739987 +James Lu,Higher-Dimensional Integration with Gaussian Weight for Applications in Probabilistic Design.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#LuD04,https://doi.org/10.1137/S1064827503426863 +Shi Jin,Asymptotic-Preserving Numerical Schemes for the Semiconductor Boltzmann Equation Efficient in the High Field Regime.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#JinW13,https://doi.org/10.1137/120886534 +Robin Chatelin,A Hybrid Grid-Particle Method for Moving Bodies in 3D Stokes Flow with Variable Viscosity.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#ChatelinP13,https://doi.org/10.1137/120892921 +Shan Zhao,Comparison of the Discrete Singular Convolution and Three Other Numerical Schemes for Solving Fisher's Equation.,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#ZhaoW03,https://doi.org/10.1137/S1064827501390972 +Sander Rhebergen,Analysis of Block Preconditioners for Models of Coupled Magma/Mantle Dynamics.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#RhebergenWKW14,https://doi.org/10.1137/130946678 +Bruno Lombard,How to Incorporate the Spring-Mass Conditions in Finite-Difference Schemes.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#LombardP03,https://doi.org/10.1137/S1064827501385931 +Ariel Almendral,Accurate Evaluation of European and American Options Under the CGMY Process.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#AlmendralO07,https://doi.org/10.1137/050637613 +Yoshimasa Nakamura,Calculating Laplace Transforms in Terms of the Toda Molecule.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#Nakamura98,https://doi.org/10.1137/S106482759631408X +Doron Levy,Central WENO Schemes for Hamilton-Jacobi Equations on Triangular Meshes.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#LevyNSZ06,https://doi.org/10.1137/040612002 +Markus Hegland,A Parallel Algorithm for the Reduction to Tridiagonal Form for Eigendecomposition.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#HeglandKO99,https://doi.org/10.1137/S1064827595296719 +Herbert Egger,A Space-Time Discontinuous Galerkin Trefftz Method for Time Dependent Maxwell's Equations.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#EggerKSW15,https://doi.org/10.1137/140999323 +Ann S. Almgren,Approximate Projection Methods: Part I. Inviscid Analysis.,2000,22,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc22.html#AlmgrenBC00,https://doi.org/10.1137/S1064827599357024 +Olga V. Ushakova,Conditions of Nondegeneracy of Three-Dimensional Cells. A Formula of a Volume of Cells.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#Ushakova01,https://doi.org/10.1137/S1064827500380702 +Chang-Ming Chen,Numerical Schemes with High Spatial Accuracy for a Variable-Order Anomalous Subdiffusion Equation.,2010,32,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc32.html#ChenLAT10,https://doi.org/10.1137/090771715 +Nicoletta Del Buono,Computation of the Exponential of Large Sparse Skew-Symmetric Matrices.,2005,27,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc27.html#BuonoLP05,https://doi.org/10.1137/030600758 +Daniel Appelö,A General Perfectly Matched Layer Model for Hyperbolic-Parabolic Systems.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#AppeloH09,https://doi.org/10.1137/080713951 +Mark Ainsworth,Compression Using Lossless Decimation: Analysis and Application.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#AinsworthKW17,https://doi.org/10.1137/16M1086248 +Saifon Chaturantabut,Nonlinear Model Reduction via Discrete Empirical Interpolation.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#ChaturantabutS10,https://doi.org/10.1137/090766498 +Bradley K. Alpert,Hybrid Gauss-Trapezoidal Quadrature Rules.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#Alpert99,https://doi.org/10.1137/S1064827597325141 +Hao Lu,A Uniform-Consistency Barrier on Finite-Difference Schemes of Positive Type for Convection-Diffusion Equations.,1995,16,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc16.html#Lu95,https://doi.org/10.1137/0916011 +F. Prill,Smoothed Aggregation Multigrid for the Discontinuous Galerkin Method.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#PrillLH09,https://doi.org/10.1137/080728457 +Hong Zhang 0006,High Order Implicit-explicit General Linear Methods with Optimized Stability Regions.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#ZhangSB16,https://doi.org/10.1137/15M1018897 +Alfredo Bermúdez,An Exact Bounded Perfectly Matched Layer for Time-Harmonic Scattering Problems.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#BermudezHPR07,https://doi.org/10.1137/060670912 +Jianliang Qian,A Local Level Set Method for Paraxial Geometrical Optics.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#QianL06,https://doi.org/10.1137/030601673 +Jorge J. Moré,Estimating Computational Noise.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#MoreW11,https://doi.org/10.1137/100786125 +Julianne Chung,A Hybrid LSMR Algorithm for Large-Scale Tikhonov Regularization.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#ChungP15,https://doi.org/10.1137/140975024 +Peter R. Johnston,An Analysis of the Zero-Crossing Method for Choosing Regularization Parameters.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#JohnstonG02,https://doi.org/10.1137/S1064827500373516 +Nicholas I. M. Gould,Sparse Approximate-Inverse Preconditioners Using Norm-Minimization Techniques.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#GouldS98,https://doi.org/10.1137/S1064827595288425 +Rhys Gwynllyw,Preconditioned Iterative Methods for Unsteady Non-Newtonian Flow Between Eccentrically Rotating Cylinders.,1996,17,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc17.html#GwynllywP96,https://doi.org/10.1137/S1064827594271044 +Quan Liu,Polynomial Preconditioned GMRES and GMRES-DR.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#LiuMW15,https://doi.org/10.1137/140968276 +John R. McMahon,Knot Selection for Least Squares Thin Plate Splines.,1992,13,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc13.html#McMahonF92,https://doi.org/10.1137/0913026 +Nick Vannieuwenhoven,A New Truncation Strategy for the Higher-Order Singular Value Decomposition.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#VannieuwenhovenVM12,https://doi.org/10.1137/110836067 +Ole Christian Lingjærde,Generalized projection pursuit regression.,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#LingjaerdeL98,https://doi.org/10.1137/S1064827595296574 +Gabriel J. Lord,Computing Stochastic Traveling Waves.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#LordT12,https://doi.org/10.1137/100784734 +Qianshun Chang,Efficient Algebraic Multigrid Algorithms and Their Convergence.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#ChangH02,https://doi.org/10.1137/S1064827501389850 +Subhendu Bikash Hazra,Simultaneous Pseudo-Timestepping for Aerodynamic Shape Optimization Problems with State Constraints.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#HazraS06,https://doi.org/10.1137/05062442X +Ralf Zimmermann,An Accelerated Greedy Missing Point Estimation Procedure.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#ZimmermannW16,https://doi.org/10.1137/15M1042899 +Raymond H. Chan,A Multilevel Algorithm for Simultaneously Denoising and Deblurring Images.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#ChanC10,https://doi.org/10.1137/080741410 +Michael Pernice,NITSOL: A Newton Iterative Solver for Nonlinear Systems.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#PerniceW98,https://doi.org/10.1137/S1064827596303843 +Randolph E. Bank,Dual Functions for a Parallel Adaptive Method.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#BankO07,https://doi.org/10.1137/060668304 +Khachik Sargsyan,Spectral Representation and Reduced Order Modeling of the Dynamics of Stochastic Reaction Networks via Adaptive Data Partitioning.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#SargsyanDNM10,https://doi.org/10.1137/090747932 +Yanwei Wang,Fast Discrete Orthonormal Stockwell Transform.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#WangO09,https://doi.org/10.1137/080737113 +Leonardo Zepeda-Núñez,Fast Alternating BiDirectional Preconditioner for the 2D High-Frequency Lippmann-Schwinger Equation.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#Zepeda-NunezZ16,https://doi.org/10.1137/16M1064660 +D. M. Gritsis,Optimal Control of Systems Described by Index Two Differential-Algebraic Equations.,1995,16,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc16.html#GritsisPS95,https://doi.org/10.1137/0916078 +Alan George,Numerical Simulation of Unsteady Incompressible Flow (\em Re \protect\boldmath $\leq$ 9500) on the Curvilinear Half-Staggered Mesh.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#GeorgeHTW00,https://doi.org/10.1137/S1064827598337099 +D. Dahiya,Characteristic Fast Marching Method for Monotonically Propagating Fronts in a Moving Medium.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#DahiyaBC13,https://doi.org/10.1137/110852632 +Habib Ammari,Optimal Shape Design by Partial Spectral Data.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#AmmariCLZ15,https://doi.org/10.1137/130942498 +Kees van den Doel,Adaptive and Stochastic Algorithms for Electrical Impedance Tomography and DC Resistivity Problems with Piecewise Constant Solutions and Many Measurements.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#DoelA12,https://doi.org/10.1137/110826692 +Zbigniew Koza,Compressed Multirow Storage Format for Sparse Matrices on Graphics Processing Units.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#KozaMSM14,https://doi.org/10.1137/120900216 +Sebastiano Boscarino,Linearly Implicit IMEX Runge-Kutta Methods for a Class of Degenerate Convection-Diffusion Problems.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#BoscarinoBMRV15,https://doi.org/10.1137/140967544 +Johnathan M. Bardsley,An Iterative Method for Edge-Preserving MAP Estimation When Data-Noise Is Poisson.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#BardsleyG10,https://doi.org/10.1137/080726884 +Oliver Lass,POD Galerkin Schemes for Nonlinear Elliptic-Parabolic Systems.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#LassV13,https://doi.org/10.1137/110848414 +Robert C. Kirby,Geometric Optimization of the Evaluation of Finite Element Matrices.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#KirbyS07,https://doi.org/10.1137/060660722 +David Nordsletten,A Preconditioner for the Finite Element Approximation to the Arbitrary Lagrangian--Eulerian Navier--Stokes Equations.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#NordslettenSK10,https://doi.org/10.1137/08072958X +Michael Griebel,A Particle-Partition of Unity Method-Part III: A Multilevel Solver.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#GriebelS02,https://doi.org/10.1137/S1064827501395252 +Anastasios Karangelis,Condition Number Estimates and Weak Scaling for 2-Level 2-Lagrange Multiplier Methods for General Domains and Cross Points.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#KarangelisL15,https://doi.org/10.1137/140965491 +David Elliott,Clenshaw--Curtis and Gauss--Legendre Quadrature for Certain Boundary Element Integrals.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#ElliottJJ08,https://doi.org/10.1137/07070200X +Julianne Chung,Windowed Spectral Regularization of Inverse Problems.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#ChungEO11,https://doi.org/10.1137/100809787 +Edmond Chow,Approximate Inverse Preconditioners via Sparse-Sparse Iterations.,1998,19,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc19.html#ChowS98,https://doi.org/10.1137/S1064827594270415 +Haoying Fu,Structured Total Least Squares for Color Image Restoration.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#FuNB06,https://doi.org/10.1137/040605436 +K. Gärtner,Existence of Bounded Discrete Steady-State Solutions of the Van Roosbroeck System on Boundary Conforming Delaunay Grids.,2009,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#Gartner09,https://doi.org/10.1137/070710950 +Juan Manzanero,Dispersion-Dissipation Analysis for Advection Problems with Nonconstant Coefficients: Applications to Discontinuous Galerkin Formulations.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#ManzaneroRFV18,https://doi.org/10.1137/16M1101143 +Xiaoqun Wang,Why Are High-Dimensional Finance Problems Often of Low Effective Dimension?.,2005,27,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc27.html#WangS05,https://doi.org/10.1137/S1064827503429429 +Zydrunas Gimbutas,A Fast Algorithm for Spherical Grid Rotations and Its Application to Singular Quadrature.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#GimbutasV13,https://doi.org/10.1137/120900587 +Shui-Nee Chow,A Shadowing Lemma Approach to Global Error Analysis for Initial Value ODEs.,1994,15,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc15.html#ChowV94,https://doi.org/10.1137/0915058 +Xiaohua Wan,Iterative Methods in Large Field Electron Microscope Tomography.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#WanPLZHLE13,https://doi.org/10.1137/120881464 +Gérard Meurant,On the Incomplete Cholesky Decomposition of a Class of Perturbed Matrices.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#Meurant01,https://doi.org/10.1137/S1064827500371244 +Loïc Giraldi,Low-Rank Approximate Inverse for Preconditioning Tensor-Structured Linear Systems.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#GiraldiNL14,https://doi.org/10.1137/130918137 +Jayadeep Gopalakrishnan,Dispersive and Dissipative Errors in the DPG Method with Scaled Norms for Helmholtz Equation.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#GopalakrishnanMO14,https://doi.org/10.1137/130918186 +Lior Horesh,A Second Order Discretization of Maxwell's Equations in the Quasi-Static Regime on OcTree Grids.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#HoreshH11,https://doi.org/10.1137/100798508 +Troy D. Butler,Combining Push-Forward Measures and Bayes' Rule to Construct Consistent Solutions to Stochastic Inverse Problems.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#ButlerJW18,https://doi.org/10.1137/16M1087229 +Yvon Maday,Locally Adaptive Greedy Approximations for Anisotropic Parameter Reduced Basis Spaces.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#MadayS13,https://doi.org/10.1137/120873868 +Won-Ki Jeong,A Fast Iterative Method for Eikonal Equations.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#JeongW08,https://doi.org/10.1137/060670298 +Louis F. Rossi,Achieving High-Order Convergence Rates with Deforming Basis Functions.,2005,26,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc26.html#Rossi05,https://doi.org/10.1137/S1064827503425286 +Christopher R. Anderson,An Implementation of the Fast Multipole Method without Multipoles.,1992,13,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc13.html#Anderson92,https://doi.org/10.1137/0913055 +Claude Brezinski,Multiparameter Iterative Schemes for the Solution of Systems of Linear and Nonlinear Equations.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#BrezinskiC99,https://doi.org/10.1137/S106482759631370X +Alexei Bespalov,Energy Norm A Posteriori Error Estimation for Parametric Operator Equations.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#BespalovPS14,https://doi.org/10.1137/130916849 +Omar Lakkis,A Finite Element Method for Nonlinear Elliptic Problems.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#LakkisP13,https://doi.org/10.1137/120887655 +Per Christian Hansen,The Use of the L-Curve in the Regularization of Discrete Ill-Posed Problems.,1993,14,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc14.html#HansenO93,https://doi.org/10.1137/0914086 +Purnima Ghale,Task-based Parallel Computation of the Density Matrix in Quantum-based Molecular Dynamics using Graph Partitioning.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#GhaleKMNPPSSH17,https://doi.org/10.1137/16M109404X +Viktoria Taroudaki,Near-Optimal Spectral Filtering and Error Estimation for Solving Ill-Posed Problems.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#TaroudakiO15,https://doi.org/10.1137/15M1019581 +Yousef Saad,BILUM: Block Versions of Multielimination and Multilevel ILU Preconditioner for General Sparse Linear Systems.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#SaadZ99,https://doi.org/10.1137/S106482759732753X +Miroslav Stoyanov,Numerical Analysis of Fixed Point Algorithms in the Presence of Hardware Faults.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#StoyanovW15,https://doi.org/10.1137/140991406 +Arjun Singh Gambhir,Deflation as a Method of Variance Reduction for Estimating the Trace of a Matrix Inverse.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#GambhirSO17,https://doi.org/10.1137/16M1066361 +Akil Narayan,Stochastic Collocation Methods on Unstructured Grids in High Dimensions via Interpolation.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#NarayanX12,https://doi.org/10.1137/110854059 +Carola Kruse,Time-Decoupled High Order Continuous Space-Time Finite Element Schemes for the Heat Equation.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#KruseS14,https://doi.org/10.1137/130914589 +Harold R. Parks,Computing Least Area Hypersurfaces Spanning Arbitrary Boundaries.,1997,18,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc18.html#ParksP97,https://doi.org/10.1137/S1064827594278903 +Daniel Y. Le Roux,Time Discretization Schemes for Poincaré Waves in Finite-Element Shallow-Water Models.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#RouxDS11,https://doi.org/10.1137/090779413 +Martin Schreiber,Evaluation of an Efficient Stack-RLE Clustering Concept for Dynamically Adaptive Grids.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#SchreiberNB16,https://doi.org/10.1137/15M1027711 +Eldad Haber,Adaptive Mesh Refinement for Nonparametric Image Registration.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#HaberHM08,https://doi.org/10.1137/070687724 +Luca F. Pavarino,Overlapping Schwarz Methods for Fekete and Gauss-Lobatto Spectral Elements.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#PavarinoZPR07,https://doi.org/10.1137/060663568 +Gerard L. G. Sleijpen,Exploiting BiCGstab(ℓ*) Strategies to Induce Dimension Reduction.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#SleijpenG10,https://doi.org/10.1137/090752341 +Philipp Stumm,New Algorithms for Optimal Online Checkpointing.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#StummW10,https://doi.org/10.1137/080742439 +Zhaojun Bai,Computing the Generalized Singular Value Decomposition.,1993,14,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc14.html#BaiD93,https://doi.org/10.1137/0914085 +Sverker Holmgren,Semicirculant Solvers and Boundary Corrections for First-Order Partial Differential Equations.,1996,17,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc17.html#HolmgrenO96,https://doi.org/10.1137/S106482759324999X +Jörg Stiller,Factorization Techniques for Nodal Spectral Elements in Curved Domains.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#StillerF08,https://doi.org/10.1137/070700905 +Wayne H. Enright,Runge-Kutta Software with Defect Control for Boundary Value ODEs.,1996,17,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc17.html#EnrightM96,https://doi.org/10.1137/S1064827593251496 +Derek S. Bale,A Wave Propagation Method for Conservation Laws and Balance Laws with Spatially Varying Flux Functions.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#BaleLMR03,https://doi.org/10.1137/S106482750139738X +Randolph E. Bank,A Domain Decomposition Solver for a Parallel Adaptive Meshing Paradigm.,2004,26,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc26.html#BankL04,https://doi.org/10.1137/S1064827503428096 +Tao Tang,On Discrete Least-Squares Projection in Unbounded Domain with Random Evaluations and its Application to Parametric Uncertainty Quantification.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#TangZ14,https://doi.org/10.1137/140961894 +Lubomír Bañas,Computational Studies for the Stochastic Landau-Lifshitz-Gilbert Equation.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#BanasBP13,https://doi.org/10.1137/110856666 +Rahul S. Sampath,A Parallel Geometric Multigrid Method for Finite Elements on Octree Meshes.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#SampathB10,https://doi.org/10.1137/090747774 +Feng Bao,Adaptive Meshfree Backward SDE Filter.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#BaoM17,https://doi.org/10.1137/16M1100277 +Francis Collino,The Perfectly Matched Layer in Curvilinear Coordinates.,1998,19,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc19.html#CollinoM98,https://doi.org/10.1137/S1064827596301406 +Marco Restelli,A Conservative Discontinuous Galerkin Semi-Implicit Formulation for the Navier-Stokes Equations in Nonhydrostatic Mesoscale Modeling.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#RestelliG09,https://doi.org/10.1137/070708470 +Bradley K. Alpert,Wavelet-Like Bases for the Fast Solution of Second-Kind Integral Equations.,1993,14,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc14.html#AlpertBCR93,https://doi.org/10.1137/0914010 +Thomas Huckle,Some Aspects of Circulant Preconditioners.,1993,14,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc14.html#Huckle93,https://doi.org/10.1137/0914034 +Jason Frank,On the Construction of Deflation-Based Preconditioners.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#FrankV01,https://doi.org/10.1137/S1064827500373231 +Stanley C. Eisenstat,Choosing the Forcing Terms in an Inexact Newton Method.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#EisenstatW96,https://doi.org/10.1137/0917003 +Hannah Morgan,Towards a Unified Finite Element Method for the Stokes Equations.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#MorganS18,https://doi.org/10.1137/16M1103117 +Tony F. Chan,Galerkin Projection Methods for Solving Multiple Linear Systems.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#ChanN99,https://doi.org/10.1137/S1064827598310227 +Dimitris Valougeorgis,Acceleration Schemes of the Discrete Velocity Method: Gaseous Flows in Rectangular Microchannels.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#ValougeorgisN03,https://doi.org/10.1137/S1064827502406506 +J. H. Adler,Numerical Approximation of Asymptotically Disappearing Solutions of Maxwell's Equations.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#AdlerPZ13,https://doi.org/10.1137/120879385 +Qiuqi Li,A Novel Variable-Separation Method Based on Sparse and Low Rank Representation for Stochastic Partial Differential Equations.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#LiJ17,https://doi.org/10.1137/16M1100010 +Azzam Haidar,Toward a High Performance Tile Divide and Conquer Algorithm for the Dense Symmetric Eigenvalue Problem.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#HaidarLD12,https://doi.org/10.1137/110823699 +Gregory Beylkin,Multivariate Regression and Machine Learning with Sums of Separable Functions.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#BeylkinGM09,https://doi.org/10.1137/070710524 +Liang Yan 0002,Sparse Approximation using and#8467*1-ℓ*2 Minimization and Its Application to Stochastic Collocation.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#YanSX17,https://doi.org/10.1137/15M103947X +Kailiang Wu,A Direct Eulerian GRP Scheme for Spherically Symmetric General Relativistic Hydrodynamics.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#WuT16,https://doi.org/10.1137/16M1055657 +M. Ganesh,A Hybrid High-Order Algorithm for Radar Cross Section Computations.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#GaneshH07,https://doi.org/10.1137/060664859 +Marco Picasso,An Anisotropic Error Indicator Based on Zienkiewicz-Zhu Error Estimator: Application to Elliptic and Parabolic Problems.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#Picasso03,https://doi.org/10.1137/S1064827501398578 +Kaname Amano,A Charge Simulation Method for Numerical Conformal Mapping onto Circular and Radial Slit Domains.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#Amano98,https://doi.org/10.1137/S1064827595294307 +J. J. Liu,On the Accuracy of the Numerical Detection of Complex Obstacles from Far Field Data Using the Probe Method.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#LiuS09,https://doi.org/10.1137/080718024 +Nejib Smaoui,Analyzing the Dynamics of Cellular Flames Using Karhunen-Loève Decomposition and Autoassociative Neural Networks.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#SmaouiA03,https://doi.org/10.1137/S1064827501386201 +Shu-Lin Wu,A Parallel Iterative Algorithm for Differential Linear Complementarity Problems.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#WuC17,https://doi.org/10.1137/16M1103749 +Sabine Le Borne,Preconditioned Nullspace Method for the Two-Dimensional Oseen Problem.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#Borne09,https://doi.org/10.1137/070691577 +Sou-Cheng T. Choi,MINRES-QLP: A Krylov Subspace Method for Indefinite or Singular Symmetric Systems.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#ChoiPS11,https://doi.org/10.1137/100787921 +Ulrik S. Fjordholm,Vorticity Preserving Finite Volume Schemes for the Shallow Water Equations.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#FjordholmM11,https://doi.org/10.1137/090775956 +Robert J. MacKinnon,Nodal Superconvergence and Solution Enhancement for a Class of Finite-Element and Finite-Difference Methods.,1990,11,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc11.html#MacKinnonC90,https://doi.org/10.1137/0911020 +Randolph E. Bank,The Incomplete Factorization Multigraph Algorithm.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#BankS99,https://doi.org/10.1137/S1064827597319520 +Khachik Sargsyan,Fault Resilient Domain Decomposition Preconditioner for PDEs.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#SargsyanRMSMNMK15,https://doi.org/10.1137/15M1014474 +Sung Ha Kang,Optimal Sensor Positioning* A Probability Perspective Study.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#KangKZ17,https://doi.org/10.1137/16M107089X +Luc Giraud,A Comparative Study of Iterative Solvers Exploiting Spectral Information for SPD Systems.,2006,27,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc27.html#GiraudRT06,https://doi.org/10.1137/040608301 +Gun Srijuntongsiri,A Condition Number Analysis of an Algorithm for Solving a System of Polynomial Equations with One Degree of Freedom.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#SrijuntongsiriV11,https://doi.org/10.1137/090780547 +Mihai Cucuringu,ADM-CLE Approach for Detecting Slow Variables in Continuous Time Markov Chains and Dynamic Data.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#CucuringuE17,https://doi.org/10.1137/15M1017120 +Roger B. Sidje,Inexact Uniformization Method for Computing Transient Distributions of Markov Chains.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#SidjeBM07,https://doi.org/10.1137/060662629 +Yongsam Kim,2-D Parachute Simulation by the Immersed Boundary Method.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#KimP06,https://doi.org/10.1137/S1064827501389060 +Ricardo H. Nochetto,An Adaptive Finite Element Method for Two-Phase Stefan Problems in Two Space Dimensions. II: Implementation and Numerical Experiments.,1991,12,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc12.html#NochettoPV91,https://doi.org/10.1137/0912065 +Carlo Janna,The Use of Supernodes in Factored Sparse Approximate Inverse Preconditioning.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#JannaFG15,https://doi.org/10.1137/140956026 +Christina Steiner,Adaptive Timestep Control for Nonstationary Solutions of the Euler Equations.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#SteinerMN10,https://doi.org/10.1137/090752821 +Cheng Tu,Stability and Instability in the Computation of Flows with Moving Immersed Boundaries: A Comparison of Three Methods.,1992,13,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc13.html#TuP92,https://doi.org/10.1137/0913077 +Youcef Saad,A Flexible Inner-Outer Preconditioned GMRES Algorithm.,1993,14,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc14.html#Saad93,https://doi.org/10.1137/0914028 +Siegfried Müller,The Riemann Problem for the Euler Equations with Nonconvex and Nonsmooth Equation of State: Construction of Wave Curves.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#MullerV06,https://doi.org/10.1137/040619909 +James Rankin,Continuation of Localized Coherent Structures in Nonlocal Neural Field Equations.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#RankinABFL14,https://doi.org/10.1137/130918721 +G. Alistair Watson,On Computing the Least Quantile of Squares Estimate.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#Watson98,https://doi.org/10.1137/S1064827595283768 +John S. Lowengrub,High-Order and Efficient Methods for the Vorticity Formulation of the Euler Equations.,1993,14,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc14.html#LowengrubSM93,https://doi.org/10.1137/0914067 +Patrick E. Farrell,Deflation Techniques for Finding Distinct Solutions of Nonlinear Partial Differential Equations.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#FarrellBF15,https://doi.org/10.1137/140984798 +Shi Jin,Two Interface-Type Numerical Methods for Computing Hyperbolic Systems with Geometrical Source Terms Having Concentrations.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#JinW05,https://doi.org/10.1137/040605825 +Yann d'Halluin,A Semi-Lagrangian Approach for American Asian Options under Jump Diffusion.,2005,27,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc27.html#dHalluinFL05,https://doi.org/10.1137/030602630 +James H. Adler,Energy Minimization for Liquid Crystal Equilibrium with Electric and Flexoelectric Effects.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#AdlerABEM15,https://doi.org/10.1137/140975036 +Tom Manteuffel,Special Section on Iterative Methods in Numerical Linear Algebra.,1994,15,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc15.html#ManteuffelM94,https://doi.org/10.1137/0915intro1 +Klaus Lackner,Multiscale Linear Solvers for Very Large Systems Derived from PDES.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#LacknerM00,https://doi.org/10.1137/S1064827598339785 +Andrew Lumsdaine,Spectra and Pseudospectra of Waveform Relaxation Operators.,1997,18,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc18.html#LumsdaineW97,https://doi.org/10.1137/S106482759528778X +Arun In,Numerical Evaluation of an Energy Relaxation Method for Inviscid Real Fluids.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#In99,https://doi.org/10.1137/S1064827597324561 +Christiane Helzel,A High-Resolution Rotated Grid Method for Conservation Laws with Embedded Geometries.,2005,26,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc26.html#HelzelBL05,https://doi.org/10.1137/S106482750343028X +Peter Frolkovic,High-Resolution Flux-Based Level Set Method.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#FrolkovicM07,https://doi.org/10.1137/050646561 +Joseph Czyzyk,Using a Massively Parallel Processor to Solve Large Sparse Linear Programs by an Interior-Point Method.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#CzyzykFM98,https://doi.org/10.1137/S1064827594272086 +Bernd Fischer,On Adaptive Weighted Polynomial Preconditioning for Hermitian Positive Definite Matrices.,1994,15,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc15.html#FischerF94,https://doi.org/10.1137/0915028 +Olivier P. Le Maître,Multi-Resolution-Analysis Scheme for Uncertainty Quantification in Chemical Systems.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#MaitreNPGK07,https://doi.org/10.1137/050643118 +Kui Du,A Simple Numerical Method for Complex Geometrical Optics Solutions to the Conductivity Equation.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#Du11,https://doi.org/10.1137/100802256 +Peter N. Brown,Hybrid Krylov Methods for Nonlinear Systems of Equations.,1990,11,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc11.html#BrownS90,https://doi.org/10.1137/0911026 +Barry Lee,Asynchronous Fast Adaptive Composite-Grid Methods: Numerical Results.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#LeeMPQ03,https://doi.org/10.1137/S1064827502407536 +H. Sue Dollar,Approximate Factorization Constraint Preconditioners for Saddle-Point Matrices.,2006,27,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc27.html#DollarW06,https://doi.org/10.1137/04060768X +Nicola Guglielmi,On the Method by Rostami for Computing the Real Stability Radius of Large and Sparse Matrices.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#Guglielmi16,https://doi.org/10.1137/15M1029709 +Charles L. Epstein,Smoothed Corners and Scattered Waves.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#EpsteinO16,https://doi.org/10.1137/15M1028248 +Lawrence Bush,On the Application of the Continuous Galerkin Finite Element Method for Conservation Problems.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#BushG13,https://doi.org/10.1137/120900393 +Laurie A. Hulbert,Limiting Communication in Parallel Sparse Cholesky Factorization.,1991,12,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc12.html#HulbertZ91,https://doi.org/10.1137/0912063 +Hui Guo,Bound-Preserving Discontinuous Galerkin Method for Compressible Miscible Displacement in Porous Media.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#GuoY17,https://doi.org/10.1137/16M1101313 +Colin Fox,Convergence in Variance of Chebyshev Accelerated Gibbs Samplers.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#FoxP14,https://doi.org/10.1137/120900940 +Qianqian Yang 0001,Novel Numerical Methods for Solving the Time-Space Fractional Diffusion Equation in Two Dimensions.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#YangTLI11,https://doi.org/10.1137/100800634 +Daria A. Sushnikova,Compress and Eliminate Solver for Symmetric Positive Definite Sparse Matrices.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#SushnikovaO18,https://doi.org/10.1137/16M1068487 +Tobin Isaac,Recursive Algorithms for Distributed Forests of Octrees.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#IsaacBWG15,https://doi.org/10.1137/140970963 +Leonid Gurvits,A Further Note on Max-Min Properties of Matrix Factor Norms.,1995,16,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc16.html#GurvitsG95,https://doi.org/10.1137/0916030 +Michal Kocvara,Primal-Dual Interior Point Multigrid Method for Topology Optimization.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#KocvaraM16,https://doi.org/10.1137/15M1044126 +S. H. Lui,On Schwarz Alternating Methods for Nonlinear Elliptic PDEs.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#Lui99,https://doi.org/10.1137/S1064827597327553 +Hyea Hyun Kim,A Neumann-Dirichlet Preconditioner for a FETI-DP Formulation of the Two-Dimensional Stokes Problem with Mortar Methods.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#KimL06,https://doi.org/10.1137/030601119 +Geoffrey S. Chesshire,A Scheme for Conservative Interpolation on Overlapping Grids.,1994,15,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc15.html#ChesshireH94,https://doi.org/10.1137/0915051 +Wenlong Dai,An Iterative Riemann Solver for Relativistic Hydrodynamics.,1997,18,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc18.html#DaiW97a,https://doi.org/10.1137/S1064827595282234 +Jungho Lee,Two Domain Decomposition Methods for Auxiliary Linear Problems of a Multibody Elliptic Variational Inequality.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#Lee13a,https://doi.org/10.1137/100783753 +Santiago Badia,A Highly Scalable Parallel Implementation of Balancing Domain Decomposition by Constraints.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#BadiaMP14,https://doi.org/10.1137/130931989 +Zhiqiang Cai,First-Order System Least Squares for the Stokes and Linear Elasticity Equations: Further Results.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#CaiLMM00a,https://doi.org/10.1137/S1064827598338652 +Mayya Tokman,New Adaptive Exponential Propagation Iterative Methods of Runge-Kutta Type.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#TokmanLT12,https://doi.org/10.1137/110849961 +Robert D. Russell,Some Numerical Aspects of Computing Inertial Manifolds.,1993,14,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc14.html#RussellST93,https://doi.org/10.1137/0914002 +Jens Lang 0001,On Global Error Estimation and Control for Initial Value Problems.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#LangV07,https://doi.org/10.1137/050646950 +Moritz Schulze Darup,Improved Automatic Computation of Hessian Matrix Spectral Bounds.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#DarupM16,https://doi.org/10.1137/15M1025773 +Jun Jia,Stable and Spectrally Accurate Schemes for the Navier-Stokes Equations.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#JiaL11,https://doi.org/10.1137/090754340 +Patrick Amestoy,On Computing Inverse Entries of a Sparse Matrix in an Out-of-Core Environment.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#AmestoyDLRRU12,https://doi.org/10.1137/100799411 +Vladimir Mikulinsky,"Multigrid Treatment of ""Thin"" Domains.",1991,12,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc12.html#Mikulinsky91,https://doi.org/10.1137/0912050 +Ray Tuminaro,Special Section: 2010 Copper Mountain Conference.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#TuminaroBCDEFJKKKLMMSW11,http://epubs.siam.org/sisc/resource/1/sjoce3/v33/i5/p2685_s1 +Peter Gruber 0001,Solution of One-Time-Step Problems in Elastoplasticity by a Slant Newton Method.,2009,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#GruberV09,https://doi.org/10.1137/070690079 +Jia Zhao 0004,Energy Stable Numerical Schemes for a Hydrodynamic Model of Nematic Liquid Crystals.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#ZhaoYLW16,https://doi.org/10.1137/15M1024093 +Mari Paz Calvo,Instabilities and Inaccuracies in the Integration of Highly Oscillatory Problems.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#CalvoS09,https://doi.org/10.1137/080727658 +Pierre Weiss,Efficient Schemes for Total Variation Minimization Under Constraints in Image Processing.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#WeissBA09,https://doi.org/10.1137/070696143 +Sheng Xu,Systematic Derivation of Jump Conditions for the Immersed Interface Method in Three-Dimensional Flow Simulation.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#XuW06,https://doi.org/10.1137/040604960 +San-Yih Lin,A Modified Penalty Method for Stokes Equations and Its Applications to Navier-Stokes Equations.,1995,16,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc16.html#LinCW95,https://doi.org/10.1137/0916001 +Carsten Carstensen,Numerical Experiments for the Arnold-Winther Mixed Finite Elements for the Stokes Problem.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#CarstensenGP12,https://doi.org/10.1137/100802906 +I. Yu. Gejadze,On Computation of the Design Function Gradient for the Sensor-Location Problem in Variational Data Assimilation.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#GejadzeS12,https://doi.org/10.1137/110825121 +Robert Artebrant,Conservative Logarithmic Reconstructions and Finite Volume Methods.,2005,27,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc27.html#ArtebrantS05,https://doi.org/10.1137/03060240X +Sverker Holmgren,Convergence Acceleration for the Linearized Navier-Stokes Equations using Semicirculant Approximations.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#HolmgrenBS99,https://doi.org/10.1137/S1064827597317983 +Panayot S. Vassilevski,General Constrained Energy Minimization Interpolation Mappings for AMG.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#Vassilevski10,https://doi.org/10.1137/080726252 +Michael G. Edwards,Quasi M-Matrix Multifamily Continuous Darcy-Flux Approximations with Full Pressure Support on Structured and Unstructured Grids in Three Dimensions.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#EdwardsZ11,https://doi.org/10.1137/080745390 +Luca F. Pavarino,BDDC Preconditioners for Spectral Element Discretizations of Almost Incompressible Elasticity in Three Dimensions.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#PavarinoWZ10,https://doi.org/10.1137/100791701 +Gérard Meurant,Estimates of the Norm of the Error in Solving Linear Systems with FOM and GMRES.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#Meurant11,https://doi.org/10.1137/100795565 +Ray S. Tuminaro,Special Issue: 2008 Copper Mountain Conference.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#Tuminaro10,https://doi.org/10.1137/SJOCE3000032000001000vii000001 +Paul Mycek,Discrete A Priori Bounds for the Detection of Corrupted PDE Solutions in Exascale Computations.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#MycekRMSMSDK17,https://doi.org/10.1137/15M1051786 +Konstantinos Gourgoulias,Information Metrics For Long-Time Errors in Splitting Schemes For Stochastic Dynamics and Parallel Kinetic Monte Carlo.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#GourgouliasKR16,https://doi.org/10.1137/15M1047271 +Carl T. Kelley,GMRES and Integral Operators.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#KelleyX96,https://doi.org/10.1137/0917015 +Stefan Holst,An Adaptive Mixed Scheme for Energy-Transport Simulations of Field-Effect Transistors.,2004,25,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc25.html#HolstJP04,https://doi.org/10.1137/S1064827502418215 +Howard C. Elman,Performance Enhancements and Parallel Algorithms for Two Multilevel Preconditioners.,1993,14,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc14.html#ElmanG93,https://doi.org/10.1137/0914055 +Xuan Zhao,A Fourth-order Compact ADI scheme for Two-Dimensional Nonlinear Space Fractional Schrödinger Equation.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#ZhaoSH14,https://doi.org/10.1137/140961560 +Murtazo Nazarov,On the Stability of the Dual Problem for High Reynolds Number Flow Past a Circular Cylinder in Two Dimensions.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#NazarovH12,https://doi.org/10.1137/110836213 +Gregory Beylkin,A Multiresolution Approach to Regularization of Singular Operators and Fast Summation.,2002,24,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc24.html#BeylkinC02,https://doi.org/10.1137/S1064827500379227 +Dante Kalise,Polynomial Approximation of High-Dimensional Hamilton-Jacobi-Bellman Equations and Applications to Feedback Control of Semilinear Parabolic PDEs.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#KaliseK18,https://doi.org/10.1137/17M1116635 +M. Gu,Subspace Iteration Randomization and Singular Value Problems.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#Gu15,https://doi.org/10.1137/130938700 +Maxim A. Olshanskii,Navier-Stokes Equations in Rotation Form: A Robust Multigrid Solver for the Velocity Problem.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#OlshanskiiR02,https://doi.org/10.1137/S1064827500374881 +Roland Herzog,A Modified Implementation of MINRES to Monitor Residual Subvector Norms for Block Systems.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#HerzogS17,https://doi.org/10.1137/16M1093021 +M. Amara,Coupling of Darcy--Forchheimer and Compressible Navier--Stokes Equations with Heat Transfer.,2009,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#AmaraCL09,https://doi.org/10.1137/070709517 +Grigorios P. Zouros,Transverse Electric Scattering on Inhomogeneous Objects: Spectrum of Integral Operator and Preconditioning.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#ZourosB12,https://doi.org/10.1137/110831568 +Rolf Jeltsch,Waveform Relaxation with Overlapping Splittings.,1995,16,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc16.html#JeltschP95,https://doi.org/10.1137/0916004 +Valeria Simoncini,An Iterative Method for Nonsymmetric Systems with Multiple Right-Hand Sides.,1995,16,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc16.html#SimonciniG95,https://doi.org/10.1137/0916053 +Jennifer K. Ryan,Extension of a Post Processing Technique for the Discontinuous Galerkin Method for Hyperbolic Equations with Application to an Aeroacoustic Problem.,2005,26,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc26.html#RyanSA05,https://doi.org/10.1137/S1064827503423998 +YongHoon Kwon,A Second-Order Tridiagonal Method for American Options under Jump-Diffusion Models.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#KwonL11,https://doi.org/10.1137/100806552 +Cameron W. Smith,Improving Unstructured Mesh Partitions for Multiple Criteria Using Mesh Adjacencies.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#SmithRIJS18,https://doi.org/10.1137/15M1027814 +Misha E. Kilmer,Pivoted Cauchy-Like Preconditioners for Regularized Solution of Ill-Posed Problems.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#KilmerO99,https://doi.org/10.1137/S1064827596308974 +Oren E. Livne,MuST: The Multilevel Sinc Transform.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#LivneB11,https://doi.org/10.1137/100806904 +Chengfeng Weng,Efficient Computation of Option Prices and Greeks by Quasi-Monte Carlo Method with Smoothing and Dimension Reduction.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#WengWH17,https://doi.org/10.1137/15M1050380 +Yi He,Convergence Acceleration Algorithm via an Equation Related to the Lattice Boussinesq Equation.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#HeHSW11,https://doi.org/10.1137/100808757 +Jan Nordström,Summation-By-Parts in Time: The Second Derivative.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#NordstromL16,https://doi.org/10.1137/15M103861X +Daniel Wirtz,A Posteriori Error Estimation for DEIM Reduced Nonlinear Dynamical Systems.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#WirtzSH14,https://doi.org/10.1137/120899042 +I. Bogaert,O(1) Computation of Legendre Polynomials and Gauss-Legendre Nodes and Weights for Parallel Computing.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#BogaertMF12,https://doi.org/10.1137/110855442 +John M. Stockie,A Moving Mesh Method for One-dimensional Hyperbolic Conservation Laws.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#StockieMR01,https://doi.org/10.1137/S1064827599364428 +Haesun Park,Schur-Type Methods for Solving Least Squares Problems with Toeplitz Structure.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#ParkE00,https://doi.org/10.1137/S1064827598347423 +Chandrajit L. Bajaj,Fast Molecular Solvation Energetics and Forces Computation.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#BajajZ10,https://doi.org/10.1137/090746173 +Pieter Coulier,The Inverse Fast Multipole Method: Using a Fast Approximate Direct Solver as a Preconditioner for Dense Linear Systems.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#CoulierPD17,https://doi.org/10.1137/15M1034477 +Kari Brusdal,Basis Norm Rescaling for Nonlinear Parameter Estimation.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#BrusdalM00,https://doi.org/10.1137/S1064827598341645 +Leslie Greengard,Potential Flow in Channels.,1990,11,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc11.html#Greengard90,https://doi.org/10.1137/0911035 +William I. Newman,Primitive Variable Determination in Conservative Relativistic Magnetohydrodynamic Simulations.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#NewmanH14,https://doi.org/10.1137/140956749 +Max Kuang,Preconditioning of Optimal Transport.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#KuangT17,https://doi.org/10.1137/16M1074953 +Claus-Dieter Munz,A Finite-Volume Method for the Maxwell Equations in the Time Domain.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#MunzSV00,https://doi.org/10.1137/S1064827596307890 +Woody Lichtenstein,Block-Cyclic Dense Linear Algebra.,1993,14,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc14.html#LichtensteinJ93,https://doi.org/10.1137/0914075 +Lili Ju,Adaptive Finite Element Methods for Elliptic PDEs Based on Conforming Centroidal Voronoi-Delaunay Triangulations.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#JuGZ06,https://doi.org/10.1137/050643568 +Assyr Abdulle,Fourth Order Chebyshev Methods with Recurrence Relation.,2002,23,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc23.html#Abdulle02,https://doi.org/10.1137/S1064827500379549 +Véronique Martin,Schwarz Waveform Relaxation Algorithms for the Linear Viscous Equatorial Shallow Water Equations.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#Martin09,https://doi.org/10.1137/070691450 +Daniele Bertaccini,A Circulant Preconditioner for the Systems of LMF-Based ODE Codes.,2000,22,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc22.html#Bertaccini00,https://doi.org/10.1137/S1064827599353476 +A. Myers,A 4th-Order Particle-in-Cell Method with Phase-Space Remapping for the Vlasov-Poisson Equation.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#MyersCS17,https://doi.org/10.1137/16M105962X +Lingfei Wu,PRIMME_SVDS: A High-Performance Preconditioned SVD Solver for Accurate Large-Scale Computations.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#WuRS17,https://doi.org/10.1137/16M1082214 +Heiko Berninger,The 2-Lagrange Multiplier Method Applied to Nonlinear Transmission Problems for the Richards Equation in Heterogeneous Soil with Cross Points.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#BerningerLS14,https://doi.org/10.1137/120901064 +Marian Brezina,Parallel Algebraic Multigrids for Structural Mechanics.,2006,27,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc27.html#BrezinaTB06,https://doi.org/10.1137/040608271 +Tom Manteuffel,Special Section on Iterative Methods in Numerical Linear Algebra.,1994,15,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc15.html#ManteuffelM94a,https://doi.org/10.1137/0915intro2 +James Kestyn,Feast Eigensolver for Non-Hermitian Problems.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#KestynPT16,https://doi.org/10.1137/15M1026572 +Kjell Gustafsson,Control Strategies for the Iterative Solution of Nonlinear Equations in ODE Solvers.,1997,18,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc18.html#GustafssonS97,https://doi.org/10.1137/S1064827595287109 +Jørg E. Aarnes,Mixed Multiscale Finite Element Methods for Stochastic Porous Media Flows.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#AarnesE08,https://doi.org/10.1137/07070108X +Thomas Huckle,Preconditioning Strategies for Hermitian Indefinite Toeplitz Linear Systems.,2004,25,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc25.html#HuckleCP04,https://doi.org/10.1137/S1064827502416332 +Sylvain Durand,Reconstruction of Wavelet Coefficients Using Total Variation Minimization.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#DurandF03,https://doi.org/10.1137/S1064827501397792 +T. NKaoua,Solution of the Nonlinear Radiative Transfer Equations by a Fully Implicit Matrix Monte Carlo Method Coupled with the Rosseland Diffusion Equation via Domain Decomposition.,1991,12,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc12.html#NKaoua91,https://doi.org/10.1137/0912028 +Kun Xu 0001,A Gas-Kinetic Scheme for the Euler Equations with Heat Transfer.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#Xu99,https://doi.org/10.1137/S106482759731628X +Daniel Loghin,Analysis of Preconditioners for Saddle-Point Problems.,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#LoghinW04,https://doi.org/10.1137/S1064827502418203 +Ruipeng Li,A Thick-Restart Lanczos Algorithm with Polynomial Filtering for Hermitian Eigenvalue Problems.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#LiXVYS16,https://doi.org/10.1137/15M1054493 +Jingchen Liu,Efficient Rare Event Simulation for Failure Problems in Random Media.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#LiuLZ15,https://doi.org/10.1137/140965569 +Wurigen Bo,A Robust Front Tracking Method: Verification and Application to Simulation of the Primary Breakup of a Liquid Jet.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#BoLGL11,https://doi.org/10.1137/10079135X +Martin Burger 0001,A Hyperelastic Regularization Energy for Image Registration.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#BurgerMR13,https://doi.org/10.1137/110835955 +Matthias Bolten,Multigrid Methods for Tensor Structured Markov Chains with Low Rank Approximation.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#BoltenKS16,https://doi.org/10.1137/140994447 +Rodolfo Bermejo,A Semi-Lagrangian Particle Level Set Finite Element Method for Interface Problems.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#BermejoP13,https://doi.org/10.1137/110830587 +Tao Tang,Boundary Layer Resolving Pseudospectral Methods for Singular Perturbation Problems.,1996,17,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc17.html#TangT96,https://doi.org/10.1137/S1064827592234120 +Victor Pan,Compact Multigrid.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#PanR92,https://doi.org/10.1137/0913007 +F. Xabier Garaizar,Adaptive Mesh Refinement and Front-Tracking for Shear Bands in an Antiplane Shear Model.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#GaraizarT98,https://doi.org/10.1137/S1064827597319271 +Jens Neumann,Consistency on Domain Boundaries for Linear PDAE Systems.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#NeumannP08,https://doi.org/10.1137/060650088 +Mats Holmström,Solving Hyperbolic PDEs Using Interpolating Wavelets.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#Holmstrom99,https://doi.org/10.1137/S1064827597316278 +Mario Berljafa,The RKFIT Algorithm for Nonlinear Rational Approximation.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#BerljafaG17,https://doi.org/10.1137/15M1025426 +Zhiqiang Xu,On Sparse Interpolation and the Design of Deterministic Interpolation Points.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#XuZ14,https://doi.org/10.1137/13094596X +Mila Nikolova,Analysis of Half-Quadratic Minimization Methods for Signal and Image Recovery.,2005,27,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc27.html#NikolovaN05,https://doi.org/10.1137/030600862 +Andreas Frommer,Fast CG-Based Methods for Tikhonov-Phillips Regularization.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#FrommerM99,https://doi.org/10.1137/S1064827596313310 +Patrick M. Knupp,Jacobian-Weighted Elliptic Grid Generation.,1996,17,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc17.html#Knupp96,https://doi.org/10.1137/S1064827594278563 +Amir Averbuch,A Framework for Discrete Integral Transformations I-The Pseudopolar Fourier Transform.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#AverbuchCDIS08,https://doi.org/10.1137/060650283 +Bakytzhan Kallemov,A Second-Order Strong Method for the Langevin Equations with Holonomic Constraints.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#KallemovM11,https://doi.org/10.1137/100785600 +Marian Brezina,Adaptive Smoothed Aggregation (αSA).,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#BrezinaFMMMR04,https://doi.org/10.1137/S1064827502418598 +Thomas A. Höft,Fast Updating Multipole Coulombic Potential Calculation.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#HoftA17,https://doi.org/10.1137/16M1096189 +Emily K. Szusz,A Linear Time Algorithm for Near Minimax Continuous Piecewise Linear Representations of Discrete Data.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#SzuszW10,https://doi.org/10.1137/090769077 +Takashi Washio,Flexible Multiple Semicoarsening for Three-Dimensional Singularly Perturbed Problems.,1998,19,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc19.html#WashioO98,https://doi.org/10.1137/S1064827596305829 +Stéphane Descombes,Locally Implicit Discontinuous Galerkin Time Domain Method for Electromagnetic Wave Propagation in Dispersive Media Applied to Numerical Dosimetry in Biological Tissues.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#DescombesLM16,https://doi.org/10.1137/15M1010282 +Shu-Lin Wu,Convergence Analysis for Three Parareal Solvers.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#WuZ15,https://doi.org/10.1137/140970756 +Sébastien Loisel,Optimized Schwarz and 2-Lagrange Multiplier Methods for Multiscale Elliptic PDEs.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#LoiselNS15,https://doi.org/10.1137/15M1009676 +Michael Kolmbauer,A Robust Preconditioned MinRes Solver for Distributed Time-Periodic Eddy Current Optimal Control Problems.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#KolmbauerL12,https://doi.org/10.1137/110842533 +Andrew V. Knyazev,Toward the Optimal Preconditioned Eigensolver: Locally Optimal Block Preconditioned Conjugate Gradient Method.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#Knyazev01,https://doi.org/10.1137/S1064827500366124 +Michael Schmich,Adaptivity with Dynamic Meshes for Space-Time Finite Element Discretizations of Parabolic Equations.,2008,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#SchmichV08,https://doi.org/10.1137/060670468 +Roy A. Nicolaides,Numerical Methods for a Nonconvex Optimization Problem Modeling Martensitic Microstructure.,1997,18,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc18.html#NicolaidesWW97,https://doi.org/10.1137/S1064827595283471 +Zhilin Li,Maximum Principle Preserving Schemes for Interface Problems with Discontinuous Coefficients.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#LiI01,https://doi.org/10.1137/S1064827500370160 +Wei Gong,A Multilevel Correction Method for Optimal Controls of Elliptic Equations.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#GongXY15,https://doi.org/10.1137/140990255 +Jianxian Qiu,Runge-Kutta Discontinuous Galerkin Method Using WENO Limiters.,2005,26,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc26.html#QiuS05a,https://doi.org/10.1137/S1064827503425298 +Linda R. Petzold,Regularization of Higher-Index Differential-Algebraic Equations with Rank-Deficient Constraints.,1997,18,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc18.html#PetzoldRM97,https://doi.org/10.1137/S1064827593276041 +Yalchin Efendiev,Preconditioning Markov Chain Monte Carlo Simulations Using Coarse-Scale Models.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#EfendievHL06,https://doi.org/10.1137/050628568 +G. Cohen,Mixed Higher Order Spectral Finite Elements for Reissner-Mindlin Equations.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#CohenG07,https://doi.org/10.1137/050642332 +Shlomo Ta'asan,Multigrid Methods for Locating Singularities in Bifurcation Problems.,1990,11,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc11.html#Taasan90,https://doi.org/10.1137/0911003 +Shravan K. Veerapaneni,A High-Order Solver for the Heat Equation in 1D domains with Moving Boundaries.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#VeerapaneniB07,https://doi.org/10.1137/060677896 +Aivars K. Celmins,A Practical Approach to Nonlinear Fuzzy Regression.,1991,12,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc12.html#Celmins91,https://doi.org/10.1137/0912029 +Zhimin Zhang,A New Finite Element Gradient Recovery Method: Superconvergence Property.,2005,26,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc26.html#ZhangN05,https://doi.org/10.1137/S1064827503402837 +Jed Brown,Achieving Textbook Multigrid Efficiency for Hydrostatic Ice Sheet Flow.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#Brown0A13,https://doi.org/10.1137/110834512 +Jeng Yen,An Efficient Newton-Type Iteration for the Numerical Solution of Highly Oscillatory Constrained Multibody Dynamic Systems.,1998,19,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc19.html#YenP98,https://doi.org/10.1137/S1064827596297227 +Senka Vukovic,Upwind Schemes with Exact Conservation Property for One-Dimensional Open Channel Flow Equations.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#VukovicS03,https://doi.org/10.1137/S1064827501392211 +Frédéric Bouillault,The Mortar Edge Element Method in Three Dimensions: Application to Magnetostatics.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#BouillaultBMR03,https://doi.org/10.1137/S1064827501386006 +Ichitaro Yamazaki,Mixed-Precision Cholesky QR Factorization and Its Case Studies on Multicore CPU with Multiple GPUs.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#YamazakiTD15,https://doi.org/10.1137/14M0973773 +Piotr Krzyzanowski,On Block Preconditioners for Nonsymmetric Saddle Point Problems.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#Krzyzanowski01,https://doi.org/10.1137/S1064827599360406 +Heather Wilber,Computing with Functions in Spherical and Polar Geometries II. The Disk.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#WilberTW17,https://doi.org/10.1137/16M1070207 +Petar Liovic,A Newton--Krylov Solver for Remapping-Based Volume-of-Fluid Methods.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#LiovicL08,https://doi.org/10.1137/07069571X +Sergio Blanes,Error Analysis of Splitting Methods for the Time Dependent Schrödinger Equation.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#BlanesCM11,https://doi.org/10.1137/100794535 +Klaus Iglberger,Expression Templates Revisited: A Performance Analysis of Current Methodologies.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#IglbergerHTR12,https://doi.org/10.1137/110830125 +Yvan Notay,Optimal Order Preconditioning of Finite Difference Matrices.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#Notay00a,https://doi.org/10.1137/S1064827597320770 +Wei-Pai Tang,Generalized Schwarz Splittings.,1992,13,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc13.html#Tang92,https://doi.org/10.1137/0913032 +Christopher A. Leibs,A Comparison of Finite Element Spaces for H(div) Conforming First-Order System Least Squares.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#LeibsMM17,https://doi.org/10.1137/16M1082159 +Andrew J. Cleary,Robustness and Scalability of Algebraic Multigrid.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#ClearyFEJMMMR00,https://doi.org/10.1137/S1064827598339402 +Zhong-Zhi Bai,Optimal Parameter in Hermitian and Skew-Hermitian Splitting Method for Certain Two-by-Two Block Matrices.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#BaiGL06,https://doi.org/10.1137/050623644 +Zheng Wang 0011,Orthogonal Rank-One Matrix Pursuit for Low Rank Matrix Completion.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#WangLLFDY15,https://doi.org/10.1137/130934271 +Jacques Huitfeldt,A New Algorithm for Numerical Path Following Applied to an Example from Hydrodynamical Flow.,1990,11,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc11.html#HuitfeldtR90,https://doi.org/10.1137/0911067 +Michele Benzi,Special Section: 2012 Copper Mountain Conference.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#Benzi13,https://doi.org/10.1137/13097348X +Kris G. van der Zee,Goal-Oriented Error Estimation and Adaptivity for Free-Boundary Problems: The Shape-Linearization Approach.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#ZeeBB10a,https://doi.org/10.1137/080741239 +M. V. Rakhuba,Jacobi-Davidson Method on Low-Rank Matrix Manifolds.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#RakhubaO18,https://doi.org/10.1137/17M1123080 +Qian-Yong Chen,Partitions of a Simplex Leading to Accurate Spectral (Finite) Volume Reconstruction.,2006,27,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc27.html#Chen06,https://doi.org/10.1137/030601387 +Joseph M. Maubach,Local Bisection Refinement for N-Simplicial Grids Generated by Reflection.,1995,16,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc16.html#Maubach95,https://doi.org/10.1137/0916014 +John Thuburn,A Framework for Mimetic Discretization of the Rotating Shallow-Water Equations on Arbitrary Polygonal Grids.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#ThuburnC12,https://doi.org/10.1137/110850293 +Carl T. Kelley,Termination of Newton/Chord Iterations and the Method of Lines.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#KelleyMT98,https://doi.org/10.1137/S1064827596303582 +Simon L. Cotter,Error Analysis of Diffusion Approximation Methods for Multiscale Systems in Reaction Kinetics.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#CotterE16,https://doi.org/10.1137/14100052X +Christoph Erath,An Adaptive Nonsymmetric Finite Volume and Boundary Element Coupling Method for a Fluid Mechanics Interface Problem.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#ErathS17,https://doi.org/10.1137/16M1076721 +Shujun Bi,Exact Penalty Decomposition Method for Zero-Norm Minimization Based on MPEC Formulation.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#BiLP14,https://doi.org/10.1137/110855867 +J. Frank Ethridge,A New Fast-Multipole Accelerated Poisson Solver in Two Dimensions.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#EthridgeG01,https://doi.org/10.1137/S1064827500369967 +Jason E. Hicken,Multidimensional Summation-by-Parts Operators: General Theory and Application to Simplex Elements.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#HickenFZ16,https://doi.org/10.1137/15M1038360 +Bertil Gustafsson,Time Compact Difference Methods for Wave Propagation in Discontinuous Media.,2004,26,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc26.html#GustafssonW04,https://doi.org/10.1137/S1064827503425900 +Howard C. Elman,Special Issue on Iterative Methods for Solving Systems of Algebraic Equations.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#Elman00,https://doi.org/10.1137/SJOCE3000021000005000vii000001 +Luca Dieci,Some Stability Aspects of Schemes for the Adaptive Integration of Siff Initial Value Problems.,1991,12,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc12.html#DieciE91,https://doi.org/10.1137/0912069 +Mohsen Zayernouri,Tempered Fractional Sturm-Liouville EigenProblems.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#ZayernouriAK15,https://doi.org/10.1137/140985536 +Aydin Buluç,Parallel Sparse Matrix-Matrix Multiplication and Indexing: Implementation and Experiments.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#BulucG12,https://doi.org/10.1137/110848244 +Dimitri Breda,Pseudospectral Differencing Methods for Characteristic Roots of Delay Differential Equations.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#BredaMV05,https://doi.org/10.1137/030601600 +Piero Colli Franzone,Adaptivity in Space and Time for Reaction-Diffusion Systems in Electrocardiology.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#FranzoneDELP06,https://doi.org/10.1137/050634785 +Vladimir Druskin,Solution of Large Scale Evolutionary Problems Using Rational Krylov Subspaces with Optimized Shifts.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#DruskinKZ09,https://doi.org/10.1137/080742403 +Simone Göttlich,Partial Outer Convexification for Traffic Light Optimization in Road Networks.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#GottlichPZ17,https://doi.org/10.1137/15M1048197 +Robert Jan Labeur,Energy Stable and Momentum Conserving Hybrid Finite Element Method for the Incompressible Navier-Stokes Equations.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#LabeurW12,https://doi.org/10.1137/100818583 +Arnold J. Stromberg,Computing the Exact Least Median of Squares Estimate and Stability Diagnostics in Multiple Linear Regression.,1993,14,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc14.html#Stromberg93,https://doi.org/10.1137/0914076 +Louis F. Rossi,A Comparative Study of Lagrangian Methods Using Axisymmetric and Deforming Blobs.,2006,27,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc27.html#Rossi06,https://doi.org/10.1137/030600679 +Shi Jin,A Hybrid Phase-Flow Method for Hamiltonian Systems with Discontinuous Hamiltonians.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#JinWH08,https://doi.org/10.1137/070709505 +Jingfang Huang,A Fast Direct Solver for Elliptic Partial Differential Equations on Adaptively Refined Meshes.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#HuangG99,https://doi.org/10.1137/S1064827598346235 +Leo Knüsel,Computation of the Noncentral Gamma Distribution.,1996,17,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc17.html#KnuselB96,https://doi.org/10.1137/S1064827594263631 +B. J. C. Baxter,A New Error Estimate of the Fast Gauss Transform.,2002,24,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc24.html#BaxterR02,https://doi.org/10.1137/S1064827501396920 +Alexander Popp,Dual Quadratic Mortar Finite Element Methods for 3D Finite Deformation Contact.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#PoppWGW12,https://doi.org/10.1137/110848190 +Erlendur Steinthorsson,Methods for Reducing Approximate-Factorization Errors in Two- and Three-Factored Schemes.,1993,14,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc14.html#SteinthorssonS93,https://doi.org/10.1137/0914072 +Matthias Bolten,A Bootstrap Algebraic Multilevel Method for Markov Chains.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#BoltenBBFKL11,https://doi.org/10.1137/100791816 +Susanne C. Brenner,Lower Bounds for Two-Level Additive Schwarz Preconditioners with Small Overlap.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#Brenner00,https://doi.org/10.1137/S1064827598336483 +Helmer André Friis,Symmetric Positive Definite Flux-Continuous Full-Tensor Finite-Volume Schemes on Unstructured Cell-Centered Triangular Grids.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#FriisEM08,https://doi.org/10.1137/070692182 +C. Klein,Fourth Order Time-Stepping for Kadomtsev-Petviashvili and Davey-Stewartson Equations.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#KleinR11,https://doi.org/10.1137/100816663 +Amparo Gil,Efficient and Accurate Algorithms for the Computation and Inversion of the Incomplete Gamma Function Ratios.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#GilST12,https://doi.org/10.1137/120872553 +Jeffrey D. Hyman,Conforming Delaunay Triangulation of Stochastically Generated Three Dimensional Discrete Fracture Networks: A Feature Rejection Algorithm for Meshing Strategy.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#HymanGPM14,https://doi.org/10.1137/130942541 +Johnathan M. Bardsley,MCMC-Based Image Reconstruction with Uncertainty Quantification.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#Bardsley12,https://doi.org/10.1137/11085760X +Subhendu Bikash Hazra,Multigrid One-Shot Method for State Constrained Aerodynamic Shape Optimization.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#Hazra08a,https://doi.org/10.1137/070691942 +Alen Alexanderian,A-Optimal Design of Experiments for Infinite-Dimensional Bayesian Linear Inverse Problems with Regularized and#8467*0-Sparsification.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#AlexanderianPSG14,https://doi.org/10.1137/130933381 +Antonio Marquina,Explicit Algorithms for a New Time Dependent Model Based on Level Set Motion for Nonlinear Deblurring and Noise Removal.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#MarquinaO00,https://doi.org/10.1137/S1064827599351751 +Cleve Ashcraft,Compressed Graphs and the Minimum Degree Algorithm.,1995,16,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc16.html#Ashcraft95,https://doi.org/10.1137/0916081 +Veselin Dobrev,Two-Level Convergence Theory for Multigrid Reduction in Time (MGRIT).,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#DobrevKPS17,https://doi.org/10.1137/16M1074096 +Robert J. Renka,Minimal Surfaces and Sobolev Gradients.,1995,16,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc16.html#RenkaN95,https://doi.org/10.1137/0916082 +Gene H. Golub,An Inverse Free Preconditioned Krylov Subspace Method for Symmetric Generalized Eigenvalue Problems.,2002,24,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc24.html#GolubY02,https://doi.org/10.1137/S1064827500382579 +Ashish Bhatt,Structure-preserving Exponential Runge-Kutta Methods.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#BhattM17,https://doi.org/10.1137/16M1071171 +Peter N. Brown,Using Krylov Methods in the Solution of Large-Scale Differential-Algebraic Systems.,1994,15,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc15.html#BrownHP94,https://doi.org/10.1137/0915088 +Marnix Van Daele,Superconvergent Deferred Correction Methods For First Order Systems of Nonlinear Two-Point Boundary Value Problems.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#DaeleC01,https://doi.org/10.1137/S1064827599362004 +Tareq M. Malas,Multicore-Optimized Wavefront Diamond Blocking for Optimizing Stencil Updates.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#MalasHLSWK15,https://doi.org/10.1137/140991133 +Cornelis W. Oosterlee,An Evaluation of Parallel Multigrid as a Solver and a Preconditioner for Singularly Perturbed Problems.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#OosterleeW98,https://doi.org/10.1137/S1064827596302825 +Uri M. Ascher,The Midpoint Scheme and Variants for Hamiltonian Systems: Advantages and Pitfalls.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#AscherR99,https://doi.org/10.1137/S1064827597316059 +Sebastiano Boscarino,High-Order Asymptotic-Preserving Methods for Fully Nonlinear Relaxation Problems.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#BoscarinoLR14,https://doi.org/10.1137/120893136 +Jürgen Götze,On the Parallel Implementation of Jacobi and Kogbetliantz Algorithms.,1994,15,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc15.html#Gotze94,https://doi.org/10.1137/0915081 +Hillel Tal-Ezer,High Degree Polynomial Interpolation in Newton Form.,1991,12,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc12.html#Tal-Ezer91,https://doi.org/10.1137/0912034 +Martin J. Gander,Space-Time Continuous Analysis of Waveform Relaxation for the Heat Equation.,1998,19,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc19.html#GanderS98,https://doi.org/10.1137/S1064827596305337 +Thomas Hauser,Code Optimizations for Complex Microprocessors Applied to CFD Software.,2004,25,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc25.html#HauserMLDH04,https://doi.org/10.1137/S1064827502410530 +Jonathan J. Hu,Toward an h-Independent Algebraic Multigrid Method for Maxwell's Equations.,2006,27,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc27.html#HuTBGR06,https://doi.org/10.1137/040608118 +Tianshi Lu,Dynamic Phase Boundaries for Compressible Fluids.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#LuXSGJ08,https://doi.org/10.1137/060661703 +Matthew F. Causley,Method of Lines Transpose: Energy Gradient Flows Using Direct Operator Inversion for Phase-Field Models.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#CausleyCC17,https://doi.org/10.1137/16M1104123 +Irene M. Gamba,A Fast Spectral Method for the Boltzmann Collision Operator with General Collision Kernels.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#GambaHHH17,https://doi.org/10.1137/16M1096001 +Vladimir A. Kazeev,Multilevel Toeplitz Matrices Generated by Tensor-Structured Vectors and Convolution with Logarithmic Complexity.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#KazeevKT13,https://doi.org/10.1137/110844830 +Junqing Chen,An Adaptive Finite Element Method for the Eddy Current Model with Circuit/Field Couplings.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#ChenCCZ10,https://doi.org/10.1137/080713112 +Michael Thuné,A Numerical Algorithm for Stability Analysis of Difference Methods for Hyperbolic Systems.,1990,11,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc11.html#Thune90,https://doi.org/10.1137/0911004 +John Strain,Locally Corrected Multidimensional Quadrature Rules for Singular Functions.,1995,16,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc16.html#Strain95,https://doi.org/10.1137/0916058 +Ke Chen,Error Equidistribution and Mesh Adaptation.,1994,15,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc15.html#Chen94,https://doi.org/10.1137/0915050 +Chengjian Zhang,General Linear Methods for Volterra Integro-differential Equations with Memory.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#ZhangV06,https://doi.org/10.1137/040607058 +Wim Michiels,An Iterative Method for Computing the Pseudospectral Abscissa for a Class of Nonlinear Eigenvalue Problems.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#MichielsG12,https://doi.org/10.1137/110856113 +K. Ito,The Nonnegative Matrix Factorization: Regularization and Complexity.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#ItoL16,https://doi.org/10.1137/14099841X +Jay Casper,Computational Considerations for the Simulation of Shock-Induced Sound.,1998,19,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc19.html#CasperC98,https://doi.org/10.1137/S1064827595294101 +Michael Weba,Simulation and Approximation of Stochastic Processes by Spline Functions.,1992,13,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc13.html#Weba92,https://doi.org/10.1137/0913063 +Robert Artebrant,Limiter-Free Third Order Logarithmic Reconstruction.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#ArtebrantS06,https://doi.org/10.1137/040620187 +Zhimin Peng,ARock: An Algorithmic Framework for Asynchronous Parallel Coordinate Updates.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#PengXYY16,https://doi.org/10.1137/15M1024950 +Daniele Bigoni,Spectral Tensor-Train Decomposition.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#BigoniEM16,https://doi.org/10.1137/15M1036919 +Zhaojun Bai,Dimension Reduction of Large-Scale Second-Order Dynamical Systems via a Second-Order Arnoldi Method.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#BaiS05,https://doi.org/10.1137/040605552 +Ewout van den Berg,Probing the Pareto Frontier for Basis Pursuit Solutions.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#BergF08,https://doi.org/10.1137/080714488 +Zlatko Drmac,A New Selection Operator for the Discrete Empirical Interpolation Method - Improved A Priori Error Bound and Extensions.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#DrmacG16,https://doi.org/10.1137/15M1019271 +Xuejun Xu,A New Divergence-Free Interpolation Operator with Applications to the Darcy--Stokes--Brinkman Equations.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#XuZ10,https://doi.org/10.1137/090751049 +Rolf Krause,A Parallel Approach to the Variational Transfer of Discrete Fields between Arbitrarily Distributed Unstructured Finite Element Meshes.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#KrauseZ16,https://doi.org/10.1137/15M1008361 +Wai Sun Don,Accuracy Enhancement for Higher Derivatives using Chebyshev Collocation and a Mapping Technique.,1997,18,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc18.html#DonS97,https://doi.org/10.1137/S1064827594274607 +Yi Jiang,Parametrized Maximum Principle Preserving Limiter for Finite Difference WENO Schemes Solving Convection-Dominated Diffusion Equations.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#JiangX13,https://doi.org/10.1137/130924937 +James Demmel,Communication-optimal Parallel and Sequential QR and LU Factorizations.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#DemmelGHL12,https://doi.org/10.1137/080731992 +Yuichiro Miki,A2ILU: Auto-accelerated ILU Preconditioner for Sparse Linear Systems.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#MikiW13,https://doi.org/10.1137/110842685 +Nicola Mastronardi,Computing the Smallest Eigenpair of a Symmetric Positive Definite Toeplitz Matrix.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#MastronardiB99,https://doi.org/10.1137/S106482759732229X +Gerrit Welper,Interpolation of Functions with Parameter Dependent Jumps by Transformed Snapshots.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#Welper17,https://doi.org/10.1137/16M1059904 +Wenlong Dai,A High-Order Godunov-Type Scheme for Shock Interactions in Ideal Magnetohydrodynamics.,1997,18,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc18.html#DaiW97,https://doi.org/10.1137/S1064827593257729 +Giacomo Mazzi,Dimensional Reductions for the Computation of Time-Dependent Quantum Expectations.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#MazziL11,https://doi.org/10.1137/100788148 +Lourenço Beirão da Veiga,Adaptive Selection of Primal Constraints for Isogeometric BDDC Deluxe Preconditioners.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#VeigaPSWZ17,https://doi.org/10.1137/15M1054675 +Clark R. Dohrmann,On the Design of Small Coarse Spaces for Domain Decomposition Algorithms.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#DohrmannW17,https://doi.org/10.1137/17M1114272 +Per Christian Hansen,Truncated Singular Value Decomposition Solutions to Discrete Ill-Posed Problems with Ill-Determined Numerical Rank.,1990,11,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc11.html#Hansen90,https://doi.org/10.1137/0911028 +Miguel F. Anjos,A Modified Broyden Update with Interpolation.,1993,14,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc14.html#Anjos93,https://doi.org/10.1137/0914080 +M. Chanaud,A Parallel Full Geometric Multigrid Solver for Time Harmonic Maxwell Problems.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#ChanaudGGPR14,https://doi.org/10.1137/130909512 +Takumi Washio,Overlapped Multicolor MILU Preconditioning.,1995,16,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc16.html#WashioH95,https://doi.org/10.1137/0916039 +Anthony D. Holmes,A Front-Fixing Finite Element Method for the Valuation of American Options.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#HolmesY08,https://doi.org/10.1137/070694442 +Larisa Beilina,An Adaptive Hybrid FEM/FDM Method for an Inverse Scattering Problem in Scanning Acoustic Microscopy.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#BeilinaC06,https://doi.org/10.1137/050631252 +Artem Napov,Algebraic Multigrid for Moderate Order Finite Elements.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#NapovN14,https://doi.org/10.1137/130922616 +Austin R. Benson,A Parallel Directional Fast Multipole Method.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#BensonPTEY14,https://doi.org/10.1137/130945569 +Ivar Lie,Using Implicit ODE Methods with Iterative Linear Equation Solvers in Spectral Methods.,1993,14,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc14.html#Lie93,https://doi.org/10.1137/0914071 +Oliver G. Ernst,Efficient Solvers for a Linear Stochastic Galerkin Mixed Formulation of Diffusion Problems with Random Data.,2009,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#ErnstPSU09,https://doi.org/10.1137/070705817 +Minghao W. Rostami,New Algorithms for Computing the Real Structured Pseudospectral Abscissa and the Real Stability Radius of Large and Sparse Matrices.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#Rostami15,https://doi.org/10.1137/140975413 +Yali Amit,A Nonlinear Variational Problem for Image Matching.,1994,15,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc15.html#Amit94,https://doi.org/10.1137/0915014 +Yuanchang Sun,Underdetermined Sparse Blind Source Separation of Nonnegative and Partially Overlapped Data.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#SunX11,https://doi.org/10.1137/100788434 +Alfio Borzì,An Algebraic Multigrid Method for a Class of Elliptic Differential Systems.,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#BorziB03,https://doi.org/10.1137/S1064827502411250 +Jonathan J. Crofts,Efficient Detection of Periodic Orbits in Chaotic Systems by Stabilizing Transformations.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#CroftsD06,https://doi.org/10.1137/050623401 +Romain de Loubens,Error Analysis of an Adaptive Implicit Scheme for Hyperbolic Conservation Laws.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#LoubensRT09,https://doi.org/10.1137/080724502 +Stefania Bellavia,A Globally Convergent Newton-GMRES Subspace Method for Systems of Nonlinear Equations.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#BellaviaM01,https://doi.org/10.1137/S1064827599363976 +Chin-Tien Wu,Analysis and Comparison of Geometric and Algebraic Multigrid for Convection-Diffusion Equations.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#WuE06,https://doi.org/10.1137/060662940 +Long Lee,An Immersed Interface Method for Incompressible Navier-Stokes Equations.,2003,25,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc25.html#LeeL03,https://doi.org/10.1137/S1064827502414060 +James S. Warsa,Solution ofthe Discontinuous P1 Equations in Two-Dimensional Cartesian Geometry with Two-Level Preconditioning.,2003,24,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc24.html#WarsaWM03,https://doi.org/10.1137/S1064827500374583 +Daniel Kressner,Preconditioned Low-rank Riemannian Optimization for Linear Systems with Tensor Product Structure.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#KressnerSV16,https://doi.org/10.1137/15M1032909 +Adam Chacon,A Parallel Two-Scale Method for Eikonal Equations.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#ChaconV15,https://doi.org/10.1137/12088197X +Toni Lassila,A Reduced Basis Model with Parametric Coupling for Fluid-Structure Interaction Problems.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#LassilaQR12,https://doi.org/10.1137/110819950 +Christian H. Bischof,A Parallel Algorithm for the Sylvester Observer Equation.,1996,17,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc17.html#BischofDP96,https://doi.org/10.1137/S1064827591223276 +Charalampos Tsitouras,Cheap Error Estimation for Runge-Kutta Methods.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#TsitourasP99,https://doi.org/10.1137/S1064827596302230 +Kuan Xu,A Fast Algorithm for the Convolution of Functions with Compact Support Using Fourier Extensions.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#XuAW17,https://doi.org/10.1137/17M1114764 +Wing Lok Wan,A Phase Error Analysis of Multigrid Methods for Hyperbolic Equations.,2003,25,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc25.html#WanC03,https://doi.org/10.1137/S106482750240933X +Yana Di,Moving Mesh Finite Element Methods for the Incompressible Navier-Stokes Equations.,2005,26,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc26.html#DiLTZ05,https://doi.org/10.1137/030600643 +Jiangyong Hou,A Dual-Porosity-Stokes Model and Finite Element Method for Coupling Dual-Porosity Flow and Free Flow.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#HouQHGWB16,https://doi.org/10.1137/15M1044072 +Alexandre Ern,Towards Polyalgorithmic Linear System Solvers for Nonlinear Elliptic Problems.,1994,15,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc15.html#ErnGKS94,https://doi.org/10.1137/0915044 +Darko Volkov,Accurate and Efficient Boundary Integral Methods for Electrified Liquid Bridge Problems.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#VolkovPP05,https://doi.org/10.1137/040604352 +Assefaw Hadish Gebremedhin,New Acyclic and Star Coloring Algorithms with Application to Computing Hessians.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#GebremedhinTMP07,https://doi.org/10.1137/050639879 +Ricardo Cortez,On the Accuracy of Impulse Methods for Fluid Flow.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#Cortez98,https://doi.org/10.1137/S1064827595293570 +Jennifer A. Scott,Solving Mixed Sparse-Dense Linear Least-Squares Problems by Preconditioned Iterative Methods.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#ScottT17,https://doi.org/10.1137/16M1108339 +Ray S. Tuminaro,Analysis of the Multigrid FMV Cycle on Large-Scale Parallel Machines.,1993,14,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc14.html#TuminaroW93,https://doi.org/10.1137/0914069 +Gang Bao,Numerical Solution of Inverse Scattering Problems with Multi-experimental Limited Aperture Data.,2003,25,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc25.html#BaoL03,https://doi.org/10.1137/S1064827502409705 +Kris G. van der Zee,Goal-Oriented Error Estimation and Adaptivity for Free-Boundary Problems: The Domain-Map Linearization Approach.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#ZeeBB10,https://doi.org/10.1137/080741227 +Mohammed Lemou,Implicit Schemes for the Fokker-Planck-Landau Equation.,2005,27,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc27.html#LemouM05,https://doi.org/10.1137/040609422 +Emmanuel Agullo,Robust Memory-Aware Mappings for Parallel Multifrontal Factorizations.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#AgulloABGLR16,https://doi.org/10.1137/130938505 +E. H. van Brummelen,On the Nonnormality of Subiteration for a Fluid-Structure-Interaction Problem.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#BrummelenB05,https://doi.org/10.1137/S1064827503431430 +Philip L. Roe,Sonic Flux Formulae.,1992,13,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc13.html#Roe92,https://doi.org/10.1137/0913034 +Yousef Saad,Multilevel ILU With Reorderings for Diagonal Dominance.,2005,27,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc27.html#Saad05,https://doi.org/10.1137/030602733 +Mark H. Carpenter,Entropy Stable Spectral Collocation Schemes for the Navier-Stokes Equations: Discontinuous Interfaces.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#CarpenterFNF14,https://doi.org/10.1137/130932193 +Giacomo Dimarco,Fluid Solver Independent Hybrid Methods for Multiscale Kinetic Equations.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#DimarcoP10,https://doi.org/10.1137/080730585 +Megan E. Farquhar,GPU Accelerated Algorithms for Computing Matrix Function Vector Products with Applications to Exponential Integrators and Fractional Diffusion.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#FarquharMYT16,https://doi.org/10.1137/15M1021672 +Diederik R. Fokkema,Accelerated Inexact Newton Schemes for Large Systems of Nonlinear Equations.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#FokkemaSV98a,https://doi.org/10.1137/S1064827595296148 +Carlo L. Bottasso,Time-Step-Size-Independent Conditioning and Sensitivity to Perturbations in the Numerical Solution of Index Three Differential Algebraic Equations.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#BottassoBC07,https://doi.org/10.1137/050638503 +Yasuhiro Wada,An Accurate and Robust Flux Splitting Scheme for Shock and Contact Discontinuities.,1997,18,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc18.html#WadaL97,https://doi.org/10.1137/S1064827595287626 +Gerard L. G. Sleijpen,Exploiting Multilevel Preconditioning Techniques in Eigenvalue Computations.,2004,25,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc25.html#SleijpenW04,https://doi.org/10.1137/S1064827599361059 +Ilias Bilionis,Multidimensional Adaptive Relevance Vector Machines for Uncertainty Quantification.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#BilionisZ12,https://doi.org/10.1137/120861345 +James M. Banoczi,A Fast Multilevel Algorithm for the Solution of Nonlinear Systems of Conductive-Radiative Heat Transfer Equations.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#BanocziK98,https://doi.org/10.1137/S1064827596302965 +Leslie Greengard,The Fast Gauss Transform.,1991,12,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc12.html#GreengardS91,https://doi.org/10.1137/0912004 +Yao Zhu,Erasure Coding for Fault-Oblivious Linear System Solvers.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#ZhuGG17,https://doi.org/10.1137/15M1041511 +Ralf Hartmann,Multitarget Error Estimation and Adaptivity in Aerodynamic Flow Simulations.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#Hartmann08,https://doi.org/10.1137/070710962 +D. S. Britt,A High-Order Numerical Method for the Helmholtz Equation with Nonstandard Boundary Conditions.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#BrittTT13,https://doi.org/10.1137/120902689 +Yong-Kang Zhu,Correct Rounding and a Hybrid Approach to Exact Floating-Point Summation.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#ZhuH09,https://doi.org/10.1137/070710020 +Adrianna Gillman,A Direct Solver with O(N) Complexity for Variable Coefficient Elliptic PDEs Discretized via a High-Order Composite Spectral Collocation Method.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#GillmanM14,https://doi.org/10.1137/130918988 +Jean-Philippe Brunet,Hypercube Algorithms for Direct N-Body Solvers for Different Granularities.,1993,14,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc14.html#BrunetME93,https://doi.org/10.1137/0914068 +Alan H. Vermeulen,Integrating Products of B-Splines.,1992,13,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc13.html#VermeulenBH92,https://doi.org/10.1137/0913060 +Reiichiro Kawai,Measuring Impact of Random Jumps Without Sample Path Generation.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#Kawai15,https://doi.org/10.1137/151004070 +Carlo Janna,Enhanced Block FSAI Preconditioning Using Domain Decomposition Techniques.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#JannaFG13,https://doi.org/10.1137/120880860 +Daniel Köster,Numerical Simulation of Acoustic Streaming on Surface Acoustic Wave-driven Biochips.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#Koster07,https://doi.org/10.1137/060676623 +Francesc Pons Llopis,Particle Filtering for Stochastic Navier-Stokes Signal Observed with Linear Additive Noise.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#LlopisKBJ18,https://doi.org/10.1137/17M1151900 +Günay Dogan,A Variational Shape Optimization Approach for Image Segmentation with a Mumford--Shah Functional.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#DoganMN08,https://doi.org/10.1137/070692066 +Scott Shaobing Chen,Atomic Decomposition by Basis Pursuit.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#ChenDS98,https://doi.org/10.1137/S1064827596304010 +Elena Braverman,A Hierarchical 3-D Direct Helmholtz Solver by Domain Decomposition and Modified Fourier Method.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#BravermanIA05,https://doi.org/10.1137/S1064827502417039 +Alexander Y. Suhov,Artificial Boundary Conditions for the Simulation of the Heat Equation in an Infinite Domain.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#SuhovD11,https://doi.org/10.1137/100794171 +Robert D. Russell,MOVCOL4: A Moving Mesh Code for Fourth-Order Time-Dependent Partial Differential Equations.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#RussellWX07,https://doi.org/10.1137/050643167 +Richard G. Carter,Numerical Experience with a Class of Algorithms for Nonlinear Optimization Using Inexact Function and Gradient Information.,1993,14,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc14.html#Carter93,https://doi.org/10.1137/0914023 +John Strain,The Fast Gauss Transform with Variable Scales.,1991,12,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc12.html#Strain91,https://doi.org/10.1137/0912059 +Peter L. W. Man,Coupling Algorithms for Calculating Sensitivities of Smoluchowski's Coagulation Equation.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#ManNBK10,https://doi.org/10.1137/09075679X +Simon J. A. Malham,Stochastic Lie Group Integrators.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#MalhamW08,https://doi.org/10.1137/060666743 +Tugrul Dayar,State Space Orderings for Gauss-Seidel in Markov Chains Revisited.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#Dayar98,https://doi.org/10.1137/S1064827596303612 +Zhiping Mao,Hermite Spectral Methods for Fractional PDEs in Unbounded Domains.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#MaoS17,https://doi.org/10.1137/16M1097109 +Man-Chung Yeung,ML(k)BiCGSTAB: A BiCGSTAB Variant Based on Multiple Lanczos Starting Vectors.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#YeungC99,https://doi.org/10.1137/S1064827597321581 +Tony Shardlow,Splitting for Dissipative Particle Dynamics.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#Shardlow03,https://doi.org/10.1137/S1064827501392879 +Wanrong Cao,Time-Splitting Schemes for Fractional Differential Equations I: Smooth Solutions.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#CaoZK15a,https://doi.org/10.1137/140996495 +Xunnian Yang,Dynamic Evaluation of Free-Form Curves and Surfaces.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#YangH17,https://doi.org/10.1137/16M1058911 +Claude Pommerell,Memory Aspects and Performance of Iterative Solvers.,1994,15,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc15.html#PommerellF94,https://doi.org/10.1137/0915031 +David J. Torres,Pseudospectral Solution of the Two-Dimensional Navier-Stokes Equations in a Disk.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#TorresC99,https://doi.org/10.1137/S1064827597330157 +Hadrien Montanelli,Fourth-Order Time-Stepping For Stiff PDEs On The Sphere.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#MontanelliN18,https://doi.org/10.1137/17M1112728 +Anthony J. Roberts,General Tooth Boundary Conditions for Equation Free Modeling.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#RobertsK07,https://doi.org/10.1137/060654554 +Peter Kunkel,A New Software Package for Linear Differential-Algebraic Equations.,1997,18,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc18.html#KunkelMRW97,https://doi.org/10.1137/S1064827595286347 +Denis Demidov,Programming CUDA and OpenCL: A Case Study Using Modern C++ Libraries.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#DemidovARG13,https://doi.org/10.1137/120903683 +Jack Poulson,A Parallel Butterfly Algorithm.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#PoulsonDMY14,https://doi.org/10.1137/130921544 +N. B. Petrovskaya,Modification of A Finite Volume Scheme for Laplace's Equation.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#Petrovskaya01,https://doi.org/10.1137/S1064827500368925 +Rémi Abgrall,Staggered Grid Residual Distribution Scheme for Lagrangian Hydrodynamics.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#AbgrallT17,https://doi.org/10.1137/16M1078781 +Benedict J. Leimkuhler,Adaptive Thermostats for Noisy Gradient Systems.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#LeimkuhlerS16,https://doi.org/10.1137/15M102318X +T. W. Tee,A Rational Spectral Collocation Method with Adaptively Transformed Chebyshev Grid Points.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#TeeT06,https://doi.org/10.1137/050641296 +Peter Sonneveld,IDR(s): A Family of Simple and Fast Algorithms for Solving Large Nonsymmetric Systems of Linear Equations.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#SonneveldG08,https://doi.org/10.1137/070685804 +Wei Guo 0004,A Sparse Grid Discontinuous Galerkin Method for High-Dimensional Transport Equations and Its Application to Kinetic Simulations.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#GuoC16,https://doi.org/10.1137/16M1060017 +Bernard Bialecki,A Legendre Spectral Galerkin Method for the Biharmonic Dirichlet Problem.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#BialeckiK01,https://doi.org/10.1137/S1064827598342407 +A. N. Yzelman,Cache-Oblivious Sparse Matrix--Vector Multiplication by Using Sparse Matrix Partitioning Methods.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#YzelmanB09,https://doi.org/10.1137/080733243 +Tomoya Takeuchi,Tikhonov Regularization by a Reproducing Kernel Hilbert Space for the Cauchy Problem for an Elliptic Equation.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#TakeuchiY08,https://doi.org/10.1137/070684793 +Roy W. Melton,An Analysis of the Spectral Transform Operations in Climate and Weather Models.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#MeltonW08,https://doi.org/10.1137/060655109 +Peter Sonneveld,On the Convergence Behavior of IDR(s) and Related Methods.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#Sonneveld12,https://doi.org/10.1137/100789889 +Lei Zhang 0017,Optimization-based Shrinking Dimer Method for Finding Transition States.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#0017DZ16,https://doi.org/10.1137/140972676 +Yuri A. Kuznetsov,Numerical Normal Forms for Codim 2 Bifurcations of Fixed Points with at Most Two Critical Eigenvalues.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#KuznetsovM05,https://doi.org/10.1137/030601508 +Andreas Stathopoulos,Hierarchical Probing for Estimating the Trace of the Matrix Inverse on Toroidal Lattices.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#StathopoulosLO13,https://doi.org/10.1137/120881452 +Alfio Quarteroni,Domain Decomposition Methods for Systems of Conservation Laws: Spectral Collocation Approximations.,1990,11,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc11.html#Quarteroni90,https://doi.org/10.1137/0911058 +Ahmed Khamayseh,Quasi-Orthogonal Grids with Impedance Matching.,2000,22,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc22.html#KhamaysehH00,https://doi.org/10.1137/S1064827599358613 +Lehel Banjai,Multistep and Multistage Convolution Quadrature for the Wave Equation: Algorithms and Experiments.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#Banjai10,https://doi.org/10.1137/090775981 +Athanasios C. Antoulas,Model Reduction of Bilinear Systems in the Loewner Framework.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#AntoulasGI16,https://doi.org/10.1137/15M1041432 +Hong Wang,An Approximation to Miscible Fluid Flows in Porous Media with Point Sources and Sinks by an Eulerian-Lagrangian Localized Adjoint Method and Mixed Finite Element Methods.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#WangLELQ00,https://doi.org/10.1137/S1064827598349215 +Hale Erten,Quality Triangulations with Locally Optimal Steiner Points.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#ErtenU09,https://doi.org/10.1137/080716748 +Michael K. Ng,Approximate Inverse Circulant-plus-Diagonal Preconditioners for Toeplitz-plus-Diagonal Matrices.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#NgP10,https://doi.org/10.1137/080720280 +Donna A. Calhoun,A Finite Volume Method for Solving Parabolic Equations on Logically Cartesian Curved Surface Meshes.,2009,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#CalhounH09,https://doi.org/10.1137/08073322X +Christopher A. Wong,Bilinear Quadratures for Inner Products.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#Wong16,https://doi.org/10.1137/15M1042048 +June-Yub Lee,A Fast Adaptive Numerical Method for Stiff Two-Point Boundary Value Problems.,1997,18,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc18.html#LeeG97,https://doi.org/10.1137/S1064827594272797 +Paola Brianzi,Improvement of Space-Invariant Image Deblurring by Preconditioned Landweber Iterations.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#BrianziBE08,https://doi.org/10.1137/050636024 +Todd F. Dupont,Superconvergence and Postprocessing of Fluxes from Lowest-Order Mixed Methods on Triangles and Tetrahedra.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#DupontK98,https://doi.org/10.1137/S1064827595280417 +Martin Berzins,Temporal Error Control for Convection-Dominated Equations in Two Space Dimensions.,1995,16,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc16.html#Berzins95,https://doi.org/10.1137/0916036 +Ahmed Hefny,Rows versus Columns: Randomized Kaczmarz or Gauss-Seidel for Ridge Regression.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#HefnyNR17,https://doi.org/10.1137/16M1077891 +Roland Glowinski,Operator-Splitting Based Fast Sweeping Methods for Isotropic Wave Propagation in a Moving Fluid.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#GlowinskiLQ16,https://doi.org/10.1137/15M1043868 +Wade S. Martinson,A Differentiation Index for Partial Differential-Algebraic Equations.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#MartinsonB00,https://doi.org/10.1137/S1064827598332229 +Frank Günther,A Cache-Aware Algorithm for PDEs on Hierarchical Data Structures Based on Space-Filling Curves.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#GuntherMPZ06,https://doi.org/10.1137/040604078 +John E. Tolsma,Hidden Discontinuities and Parametric Sensitivity Calculations.,2002,23,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc23.html#TolsmaB02,https://doi.org/10.1137/S106482750037281X +Achi Brandt,Bootstrap AMG.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#BrandtBKL11,https://doi.org/10.1137/090752973 +E. S. Coakley,A Fast Randomized Algorithm for Orthogonal Projection.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#CoakleyRT11,https://doi.org/10.1137/090779656 +Danail Vassilev,Coupling Stokes--Darcy Flow with Transport.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#VassilevY09,https://doi.org/10.1137/080732146 +E. Morano,Coarsening Strategies for Unstructured Multigrid Techniques with Application to Anisotropic Problems.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#MoranoMV98,https://doi.org/10.1137/S1064827595287638 +Ming Gu 0002,Efficient Algorithms for Computing a Strong Rank-Revealing QR Factorization.,1996,17,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc17.html#GuE96,https://doi.org/10.1137/0917055 +Paris Perdikaris,Multifidelity Information Fusion Algorithms for High-Dimensional Systems and Massive Data sets.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#PerdikarisVK16,https://doi.org/10.1137/15M1055164 +Ionut Danaila,Computation of Ground States of the Gross-Pitaevskii Functional via Riemannian Optimization.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#DanailaP17,https://doi.org/10.1137/17M1121974 +Luigi Brugnano,Iterative Solution of Piecewise Linear Systems and Applications to Flows in Porous Media.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#BrugnanoC09,https://doi.org/10.1137/08072749X +Marc Garbey,A Parallel Schwarz Method for a Convection-Diffusion Problem.,2000,22,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc22.html#GarbeyKV00,https://doi.org/10.1137/S1064827598335854 +Didier Lucor,Adaptive Generalized Polynomial Chaos for Nonlinear Random Oscillators.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#LucorK04,https://doi.org/10.1137/S1064827503427984 +Andrew J. Christlieb,Positivity-Preserving Finite Difference Weighted ENO Schemes with Constrained Transport for Ideal Magnetohydrodynamic Equations.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#ChristliebLTX15,https://doi.org/10.1137/140971208 +Andreas Frommer,Adaptive Aggregation-Based Domain Decomposition Multigrid for the Lattice Wilson-Dirac Operator.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#FrommerKKLR14,https://doi.org/10.1137/130919507 +Michiel E. Hochstenbach,A Jacobi-Davidson Type SVD Method.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#Hochstenbach01,https://doi.org/10.1137/S1064827500372973 +Tetsuya Misawa,A Lie Algebraic Approach to Numerical Integration of Stochastic Differential Equations.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#Misawa01,https://doi.org/10.1137/S106482750037024X +Patrick E. Farrell,Automated Derivation of the Adjoint of High-Level Transient Finite Element Programs.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#FarrellHFR13,https://doi.org/10.1137/120873558 +C. R. Dietrich,Fast and Exact Simulation of Stationary Gaussian Processes through Circulant Embedding of the Covariance Matrix.,1997,18,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc18.html#DietrichN97,https://doi.org/10.1137/S1064827592240555 +Evangelia Kalligiannaki,Spatial Two-Level Interacting Particle Simulations and Information Theory-Based Error Quantification.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#KalligiannakiKP14,https://doi.org/10.1137/120887060 +Simon N. Wood,Monotonic Smoothing Splines Fitted by Cross Validation.,1994,15,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc15.html#Wood94,https://doi.org/10.1137/0915069 +Irad Yavneh,A Method for Devising Efficient Multigrid Smoothers for Complicated PDE Systems.,1993,14,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc14.html#Yavneh93,https://doi.org/10.1137/0914084 +A. Wacher,String Gradient Weighted Moving Finite Elements in Multiple Dimensions with Applications in Two Dimensions.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#WacherS07,https://doi.org/10.1137/040619557 +Sara N. Pollock,An Improved Method for Solving Quasi-linear Convection Diffusion Problems on a Coarse Mesh.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#Pollock16,https://doi.org/10.1137/15M1007823 +Alex H. Barnett,Spectrally Accurate Quadratures for Evaluation of Layer Potentials Close to the Boundary for the 2D Stokes and Laplace Equations.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#BarnettWV15,https://doi.org/10.1137/140990826 +Emanuel H. Rubensson,Interior Eigenvalues from Density Matrix Expansions in Quantum Mechanical Molecular Dynamics.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#RubenssonN14,https://doi.org/10.1137/130911585 +Charles Audet,Enumeration of All Extreme Equilibria of Bimatrix Games.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#AudetHJS01,https://doi.org/10.1137/S1064827598339086 +Bruno Carpentieri,Additive and Multiplicative Two-Level Spectral Preconditioning for General Linear Systems.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#CarpentieriGG07,https://doi.org/10.1137/060654906 +Eric de Sturler,Nonlinear Parametric Inversion Using Interpolatory Model Reduction.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#SturlerGKCBO15,https://doi.org/10.1137/130946320 +José A. Carrillo,Nonoscillatory Interpolation Methods Applied to Vlasov-Based Models.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#CarrilloV07,https://doi.org/10.1137/050644549 +Charles-Edouard Bréhier,High Order Integrator for Sampling the Invariant Distribution of a Class of Parabolic Stochastic PDEs with Additive Space-Time Noise.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#BrehierV16,https://doi.org/10.1137/15M1021088 +John W. Barrett 0001,Parametric Approximation of Willmore Flow and Related Geometric Evolution Equations.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#BarrettGN08,https://doi.org/10.1137/070700231 +Cécile Piret,A Radial Basis Function based Frames Strategy for Bypassing the Runge Phenomenon.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#Piret16,https://doi.org/10.1137/15M1040943 +Mario Berljafa,Parallelization of the Rational Arnoldi Algorithm.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#BerljafaG17a,https://doi.org/10.1137/16M1079178 +Stéphane Lanteri,Analysis of a Generalized Dispersive Model Coupled to a DGTD Method with Application to Nanophotonics.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#LanteriSV17,https://doi.org/10.1137/15M105207X +John M. Conroy,A Parallel Inertia Method for Finding Eigenvalues on Vector and SIMD Architectures.,1995,16,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc16.html#ConroyP95,https://doi.org/10.1137/0916031 +Hayden Schaeffer,Real-Time Adaptive Video Compression.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#SchaefferYZO15,https://doi.org/10.1137/130937792 +Susana Serna,A Class of Extended Limiters Applied to Piecewise Hyperbolic Methods.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#Serna06,https://doi.org/10.1137/040611811 +Klaus Erhard,A Numerical Study of the Probe Method.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#ErhardP06,https://doi.org/10.1137/040607149 +Rodolfo Bermejo,Modified Lagrange-Galerkin Methods to Integrate Time Dependent Incompressible Navier-Stokes Equations.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#BermejoS15,https://doi.org/10.1137/140973967 +Andrew T. Ogielski,Sparse Matrix Computations on Parallel Processor Arrays.,1993,14,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc14.html#OgielskiA93,https://doi.org/10.1137/0914033 +Shivakumar Kameswaran,Advantages of Nonlinear-Programming-Based Methodologies for Inequality Path-Constrained Optimal Control Problems - A Numerical Study.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#KameswaranB08,https://doi.org/10.1137/050644938 +Stephen J. Wright,A Collection of Problems for Which Gaussian Elimination with Partial Pivoting is Unstable.,1993,14,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc14.html#Wright93,https://doi.org/10.1137/0914013 +Jonathan D. Hogg,A Fast Dense Triangular Solve in CUDA.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#Hogg13,https://doi.org/10.1137/12088358X +Zhaojun Bai,A Symmetric Band Lanczos Process Based on Coupled Recurrences and Some Applications.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#BaiF01,https://doi.org/10.1137/S1064827500371773 +Carmen Rodrigo,Accuracy Measures and Fourier Analysis for the Full Multigrid Algorithm.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#RodrigoGOY10,https://doi.org/10.1137/100786101 +Stephen J. Wright,Stable Parallel Algorithms for Two-Point Boundary Value Problems.,1992,13,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc13.html#Wright92,https://doi.org/10.1137/0913044 +Janine C. Bennett,Trigger Detection for Adaptive Scientific Workflows Using Percentile Sampling.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#BennettBCPSS16,https://doi.org/10.1137/15M1027942 +Faidra Stavropoulou,Parametrization of Random Vectors in Polynomial Chaos Expansions via Optimal Transportation.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#StavropoulouM15,https://doi.org/10.1137/130949063 +Kokou B. Dossou,A Newton-GMRES Approach for the Analysis of the Postbuckling Behavior of the Solutions of the von Kármán Equations.,2003,24,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc24.html#DossouP03,https://doi.org/10.1137/S1064827500376144 +Sasanka Are,Multibody Interactions in Coarse-Graining Schemes for Extended Systems.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#AreKPR08,https://doi.org/10.1137/080713276 +Clive Temperton,A Generalized Prime Factor FFT Algorithm for any N = 2p 3q 5r.,1992,13,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc13.html#Temperton92,https://doi.org/10.1137/0913039 +Stephen J. Wright,Adaptation of a Two-Point Boundary Value Problem Solver to a Vector-Multiprocessor Environment.,1990,11,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc11.html#WrightP90,https://doi.org/10.1137/0911025 +Ya Zhang,Multiscale Computations for 3D Time-Dependent Maxwell's Equations in Composite Materials.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#ZhangCW10,https://doi.org/10.1137/080740337 +Mani Mehra,An Adaptive Multilevel Wavelet Solver for Elliptic Equations on an Optimal Spherical Geodesic Grid.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#MehraK08,https://doi.org/10.1137/070689607 +Barry Lee,Improved Multiple-Coarsening Methods for Sn Discretizations of the Boltzmann Equation.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#Lee10,https://doi.org/10.1137/080742476 +Claude Pommerell,Migration of Vectorized Iterative Solvers to Distributed-Memory Architectures.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#PommerellR96,https://doi.org/10.1137/0917017 +Haifeng Qian,Stochastic Preconditioning for Diagonally Dominant Matrices.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#QianS08,https://doi.org/10.1137/07068713X +Jeroen A. S. Witteveen,A Monomial Chaos Approach for Efficient Uncertainty Quantification in Nonlinear Problems.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#WitteveenB08,https://doi.org/10.1137/06067287X +Geunseop Lee,Fast High-Resolution Image Reconstruction Using Tikhonov Regularization Based Total Least Squares.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#LeeFB13,https://doi.org/10.1137/110850591 +Jean-Philippe Brunet,Erratum: Hypercube Algorithms for Direct N-Body Solvers for Different Granularities.,1994,15,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc15.html#BrunetEM94,https://doi.org/10.1137/0915017 +Raymond H. Chan,Toeplitz-Circulant Preconditioners for Toeplitz Systems and their Applications to Queueing Networks with Batch Arrivals.,1996,17,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc17.html#ChanC96,https://doi.org/10.1137/S1064827594266581 +Per-Gunnar Martinsson,A Randomized Blocked Algorithm for Efficiently Computing Rank-revealing Factorizations of Matrices.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#MartinssonV16,https://doi.org/10.1137/15M1026080 +Hans De Sterck,Numerical Conservation Properties of H(div)-Conforming Least-Squares Finite Element Methods for the Burgers Equation.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#SterckMMO05,https://doi.org/10.1137/S1064827503430758 +Tien-Yien Li,The Homotopy Continuation Algorithm for the Real Nonsymmetric Eigenproblem: Further Development and Implementation.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#LiZ99,https://doi.org/10.1137/S1064827597318228 +James Martin,A Stochastic Newton MCMC Method for Large-Scale Statistical Inverse Problems with Application to Seismic Inversion.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#MartinWBG12,https://doi.org/10.1137/110845598 +Elias Jarlebring,The Waveguide Eigenvalue Problem and the Tensor Infinite Arnoldi Method.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#JarlebringMR17,https://doi.org/10.1137/15M1044667 +Jie Shen 0001,Efficient Spectral-Galerkin Method II. Direct Solvers of Second- and Fourth-Order Equations Using Chebyshev Polynomials.,1995,16,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc16.html#Shen95,https://doi.org/10.1137/0916006 +Xiaoying Dai,Stable Parareal in Time Method for First- and Second-Order Hyperbolic Systems.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#DaiM13,https://doi.org/10.1137/110861002 +Colin B. Macdonald,The Implicit Closest Point Method for the Numerical Solution of Partial Differential Equations on Surfaces.,2009,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#MacdonaldR09,https://doi.org/10.1137/080740003 +Ludvig af Klinteberg,Adaptive Quadrature by Expansion for Layer Potential Evaluation in Two Dimensions.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#KlintebergT18,https://doi.org/10.1137/17M1121615 +øistein Bøe,A Monotone Petrov-Galerkin Method for Quasilinear Parabolic Differential Equations.,1993,14,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc14.html#Boe93,https://doi.org/10.1137/0914064 +Fei Liu,Sparsify and Sweep: An Efficient Preconditioner for the Lippmann-Schwinger Equation.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#LiuY18,https://doi.org/10.1137/17M1132057 +Ernesto Aranda,On the Computation of the Rank-One Convex Hull of a Function.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#ArandaP01,https://doi.org/10.1137/S1064827599362028 +Lu Wang,A Parallel Auxiliary Grid Algebraic Multigrid Method for Graphic Processing Units.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#WangHCX13,https://doi.org/10.1137/120894452 +Shuai Xue,Sharp Boundary Electrocardiac Simulations.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#XueLGFC16,https://doi.org/10.1137/15M1019283 +Alexander Kurganov,Second-Order Fully Discrete Central-Upwind Scheme for Two-Dimensional Hyperbolic Systems of Conservation Laws.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#KurganovPW17,https://doi.org/10.1137/15M1038670 +Marzio Sala,A New Petrov--Galerkin Smoothed Aggregation Preconditioner for Nonsymmetric Linear Systems.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#SalaT08,https://doi.org/10.1137/060659545 +Weiming Cao,Preconditioning on Element Interfaces for the p-Version Finite Element Method and Spectral Element Method.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#CaoG99,https://doi.org/10.1137/S1064827596306951 +Marcus Drosson,Stability and Boundary Resolution Analysis of the Discontinuous Galerkin Method Applied to the Reynolds-Averaged Navier-Stokes Equations Using the Spalart-Allmaras Model.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#DrossonHE13,https://doi.org/10.1137/110834615 +Lukas Einkemmer,Overcoming Order Reduction in Diffusion-Reaction Splitting. Part 2: Oblique Boundary Conditions.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#EinkemmerO16,https://doi.org/10.1137/16M1056250 +Harald Osnes,A Study of Some Finite Difference Schemes for a Unidirectional Stochastic Transport Equation.,1998,19,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc19.html#OsnesL98,https://doi.org/10.1137/S1064827593259108 +Alexander Bihlo,Invariant Discretization Schemes for the Shallow-Water Equations.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#BihloP12,https://doi.org/10.1137/120861187 +Roswitha März,Recent Results in Solving Index-2 Differential-Algebraic Equations in Circuit Simulation.,1997,18,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc18.html#MarzT97,https://doi.org/10.1137/S1064827595287250 +Eitan Levin,Estimation of the Regularization Parameter in Linear Discrete Ill-Posed Problems Using the Picard Parameter.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#LevinM17,https://doi.org/10.1137/17M1123195 +Dirk P. Laurie,A Two-Phase Algorithm for the Chebyshev Solution of Complex Linear Equations.,1994,15,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc15.html#LaurieV94,https://doi.org/10.1137/0915086 +Uri M. Ascher,Collocation Software for Boundary Value Differential-Algebraic Equations.,1994,15,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc15.html#AscherS94,https://doi.org/10.1137/0915056 +Ivan V. Oseledets,Algebraic Wavelet Transform via Quantics Tensor Train Decomposition.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#OseledetsT11,https://doi.org/10.1137/100811647 +Tim Rees,A Preconditioner for Linear Systems Arising From Interior Point Optimization Methods.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#ReesG07,https://doi.org/10.1137/060661673 +Philip M. Gresho,Adaptive Time-Stepping for Incompressible Flow Part I: Scalar Advection-Diffusion.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#GreshoGS08,https://doi.org/10.1137/070688018 +N. Anders Petersson,An Algorithm for Assembling Overlapping Grid Systems.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#Petersson99a,https://doi.org/10.1137/S1064827597292917 +Bin Dong,A New Multiscale Representation for Shapes and Its Application to Blood Vessel Recovery.,2010,32,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc32.html#DongCSO10,https://doi.org/10.1137/09076043X +Guang-Shan Jiang,Nonoscillatory Central Schemes for Multidimensional Hyperbolic Conservation Laws.,1998,19,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc19.html#JiangT98,https://doi.org/10.1137/S106482759631041X +Bo Wang,Parameter Estimation for ODEs Using a Cross-Entropy Approach.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#WangE13,https://doi.org/10.1137/120889733 +Sookkyung Lim,Dynamics of a Closed Rod with Twist and Bend in Fluid.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#LimFWP08,https://doi.org/10.1137/070699780 +Eran Treister,On-the-Fly Adaptive Smoothed Aggregation Multigrid for Markov Chains.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#TreisterY11,https://doi.org/10.1137/100799034 +George S. Fishman,Sensitivity Analysis Using the Monte Carlo Acceptance-Rejection Method.,1990,11,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc11.html#Fishman90,https://doi.org/10.1137/0911066 +Alexander M. Bronstein,Efficient Computation of Isometry-Invariant Distances Between Surfaces.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#BronsteinBK06,https://doi.org/10.1137/050639296 +Catherine Elizabeth Powell,Preconditioning Steady-State Navier-Stokes Equations with Random Data.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#PowellS12,https://doi.org/10.1137/120870578 +Matthias Kirchhart,Analysis of an XFEM Discretization for Stokes Interface Problems.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#KirchhartGR16,https://doi.org/10.1137/15M1011779 +Patrice Hauret,A Discrete Differential Sequence for Elasticity Based upon Continuous Displacements.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#HauretH13,https://doi.org/10.1137/110848189 +Christopher K. Newman,Physics-Based Preconditioners for Ocean Simulation.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#NewmanK13,https://doi.org/10.1137/120881397 +Weidong Zhao,A New Kind of Accurate Numerical Method for Backward Stochastic Differential Equations.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#ZhaoCP06,https://doi.org/10.1137/05063341X +Simon Praetorius,Development and Analysis of a Block-Preconditioner for the Phase-Field Crystal Equation.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#PraetoriusV15,https://doi.org/10.1137/140980375 +Qing Chu,Iterative Wavefront Reconstruction for Astronomical Imaging.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#ChuJN13,https://doi.org/10.1137/120882603 +Michael K. Ng,Inexact Alternating Direction Methods for Image Recovery.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#NgWY11,https://doi.org/10.1137/100807697 +Matthias Morzfeld,Iterative Importance Sampling Algorithms for Parameter Estimation.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#MorzfeldDGPFB18,https://doi.org/10.1137/16M1088417 +Nathan Halko,An Algorithm for the Principal Component Analysis of Large Data Sets.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#HalkoMST11,https://doi.org/10.1137/100804139 +Elsa Cazelles,Geodesic PCA versus Log-PCA of Histograms in the Wasserstein Space.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#CazellesSBCP18,https://doi.org/10.1137/17M1143459 +J. W. Neuberger,Sobolev Gradients and the Ginzburg-Landau Functional.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#NeubergerR98,https://doi.org/10.1137/S1064827596302722 +Pedro Miguel Lima,Numerical Solution of the Neural Field Equation in the Two-Dimensional Case.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#LimaB15,https://doi.org/10.1137/15M1022562 +Caterina Fenu,Network Analysis via Partial Spectral Factorization and Gauss Quadrature.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#FenuMRR13,https://doi.org/10.1137/130911123 +Clint Dawson,High Resolution Schemes for Conservation Laws with Locally Varying Time Steps.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#DawsonK01,https://doi.org/10.1137/S1064827500367737 +Simone Cacace,A Patchy Dynamic Programming Scheme for a Class of Hamilton-Jacobi-Bellman Equations.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#CacaceCFP12,https://doi.org/10.1137/110841576 +Mark A. Aves,Runge-Kutta Solutions of a Hyperbolic Conservation Law with Source Term.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#AvesGH00,https://doi.org/10.1137/S106482759833601X +J. H. Adler,First-Order System Least Squares for Incompressible Resistive Magnetohydrodynamics.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#AdlerMMR10,https://doi.org/10.1137/080727282 +Mark K. Seager,Adaptive Domain Extension and Adaptive Grids for Unbounded Spherical Elliptic PDEs.,1990,11,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc11.html#SeagerC90,https://doi.org/10.1137/0911006 +Jingya Chang,Computing Eigenvalues of Large Scale Sparse Tensors Arising from a Hypergraph.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#ChangCQ16,https://doi.org/10.1137/16M1060224 +Emanuel H. Rubensson,Controlling Errors in Recursive Fermi-Dirac Operator Expansions with Applications in Electronic Structure Theory.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#Rubensson12,https://doi.org/10.1137/11083352X +Márcia A. Gomes-Ruggiero,Comparing Algorithms for Solving Sparse Nonlinear Systems of Equations.,1992,13,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc13.html#Gomes-RuggieroM92,https://doi.org/10.1137/0913025 +Naomi Decker,Note on the Parallel Efficiency of the Frederickson-McBryan Multigrid Algorithm.,1991,12,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc12.html#Decker91,https://doi.org/10.1137/0912011 +Richard M. Beam,Multiresolution Analysis and Supercompact Multiwavelets.,2000,22,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc22.html#BeamW00,https://doi.org/10.1137/S1064827596311906 +Otto Heinreichsberger,Fast Iterative Solution of Carrier Continuity Equations for Three-Dimensional Device Simulation.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#Heinreichsberger92,https://doi.org/10.1137/0913015 +Yuancheng Luo,Efficient Parallel Nonnegative Least Squares on Multicore Architectures.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#LuoD11,https://doi.org/10.1137/100799083 +Giacomo Dimarco,Asymptotic-Preserving Monte Carlo Methods for Transport Equations in the Diffusive Limit.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#DimarcoPS18,https://doi.org/10.1137/17M1140741 +L. Beirão da Veiga,A Mimetic Discretization of the Stokes Problem with Selected Edge Bubbles.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#VeigaL10,https://doi.org/10.1137/090767029 +Larisa Beilina,A Globally Convergent Numerical Method for a Coefficient Inverse Problem.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#BeilinaK08,https://doi.org/10.1137/070711414 +Karthikeyan Duraisamy,Implicit Scheme for Hyperbolic Conservation Laws Using Nonoscillatory Reconstruction in Space and Time.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#DuraisamyB07,https://doi.org/10.1137/070683271 +Julianne Chung,Generalized Hybrid Iterative Methods for Large-Scale Bayesian Inverse Problems.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#ChungS17,https://doi.org/10.1137/16M1081968 +M. A. López-Marcos,Explicit Symplectic Integrators Using Hessian-Vector Products.,1997,18,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc18.html#Lopez-MarcosSS97,https://doi.org/10.1137/S1064827595288085 +René Lamour,A Shooting Method for Fully Implicit Index-2 Differential Algebraic Equations.,1997,18,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc18.html#Lamour97,https://doi.org/10.1137/S1064827595287274 +Lois Mansfield,Damped Jacobi Preconditioning and Coarse Grid Deflation for Conjugate Gradient Iteration on Parallel Computers.,1991,12,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc12.html#Mansfield91,https://doi.org/10.1137/0912071 +James M. Banoczi,A Fast Multilevel Algorithm for the Solution of Nonlinear Systems of Conductive-Radiative Heat Transfer Equations in Two Space Dimensions.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#BanocziK99,https://doi.org/10.1137/S1064827597322756 +Marlis Hochbruck,A Multilevel Jacobi--Davidson Method for Polynomial PDE Eigenvalue Problems Arising in Plasma Physics.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#HochbruckL10,https://doi.org/10.1137/090774604 +Keith R. Santarelli,A Framework for Reduced Order Modeling with Mixed Moment Matching and Peak Error Objectives.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#Santarelli10,https://doi.org/10.1137/090761136 +François Musy,Compatible Coarse Nodal and Edge Elements Through Energy Functionals.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#MusyNP07,https://doi.org/10.1137/050645750 +Ngoc Cuong Nguyen,Functional Regression for State Prediction Using Linear PDE Models and Observations.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#NguyenMFP16,https://doi.org/10.1137/14100275X +Roberto Barrio,A Parallel Algorithm to Evaluate Chebyshev Series on a Message Passing Environment.,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#BarrioS98,https://doi.org/10.1137/S1064827596312857 +Franca Bianco,High-Order Central Schemes for Hyperbolic Systems of Conservation Laws.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#BiancoPR99,https://doi.org/10.1137/S1064827597324998 +Jeffrey Willert,Hybrid Deterministic/Monte Carlo Neutronics.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#WillertKKP13,https://doi.org/10.1137/120880021 +Björn Engquist,Fast Directional Multilevel Algorithms for Oscillatory Kernels.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#EngquistY07,https://doi.org/10.1137/07068583X +Wei Zhang 0065,Applications of the Cross-Entropy Method to Importance Sampling and Optimal Control of Diffusions.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#ZhangWHWS14,https://doi.org/10.1137/14096493X +Saman Ghili,Least Squares Approximation of Polynomial Chaos Expansions With Optimized Grid Points.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#GhiliI17,https://doi.org/10.1137/15M1028303 +B. Chang,Spatial Multigrid for Isotropic Neutron Transport.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#ChangMMRS07,https://doi.org/10.1137/060661363 +Zhiqiang Sheng,Construction of Nonlinear Weighted Method for Finite Volume Schemes Preserving Maximum Principle.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#ShengY18,https://doi.org/10.1137/16M1098000 +Ling Guo,Weighted Approximate Fekete Points: Sampling for Least-Squares Polynomial Approximation.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#GuoNYZ18,https://doi.org/10.1137/17M1140960 +Jirí Kopal,Factorized Approximate Inverses with Adaptive Dropping.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#KopalRT16,https://doi.org/10.1137/15M1030315 +Leslie Greengard,An Integral Equation Approach to the Incompressible Navier-Stokes Equations in Two Dimensions.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#GreengardK98,https://doi.org/10.1137/S1064827597317648 +Alfio Borzì,The Numerical Solution of the Steady State Solid Fuel Ignition Model and Its Optimal Control.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#BorziK00,https://doi.org/10.1137/S1064827599360194 +Dirk Lebiedz,A Continuation Method for the Efficient Solution of Parametric Optimization Problems in Kinetic Model Reduction.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#LebiedzS13,https://doi.org/10.1137/120900344 +Christian H. Bischof,Sensitivity Analysis of Turbulence Models Using Automatic Differentiation.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#BischofBR04,https://doi.org/10.1137/S1064827503426723 +István Faragó,Discrete Maximum Principle and Adequate Discretizations of Linear Parabolic Problems.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#FaragoH06,https://doi.org/10.1137/050627241 +Qun Ma,Verlet-I/R-RESPA/Impulse is Limited by Nonlinear Instabilities.,2003,24,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc24.html#MaIS03,https://doi.org/10.1137/S1064827501399833 +Erin Carson,Accelerating the Solution of Linear Systems by Iterative Refinement in Three Precisions.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#CarsonH18,https://doi.org/10.1137/17M1140819 +Felice Iavernaro,Block-Boundary Value Methods for the Solution of Ordinary Differential Equations.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#IavernaroM99,https://doi.org/10.1137/S1064827597325785 +H. Cho,Algorithms for Propagating Uncertainty Across Heterogeneous Domains.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#ChoYVK15,https://doi.org/10.1137/140992060 +Roland M. Caplan,A Modulus-Squared Dirichlet Boundary Condition for Time-Dependent Complex Partial Differential Equations and Its Application to the Nonlinear Schrödinger Equation.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#CaplanC14,https://doi.org/10.1137/130920046 +Alexei Bespalov,Efficient Adaptive Stochastic Galerkin Methods for Parametric Operator Equations.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#BespalovS16,https://doi.org/10.1137/15M1027048 +Luhan Chuang,Numerical Methods for Finding Clustersolutions of Optimal Control Problems.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#ChuangK98,https://doi.org/10.1137/S1064827596295290 +Marcus J. Grote,Inexact Interior-Point Method for PDE-Constrained Nonlinear Optimization.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#GroteHKS14,https://doi.org/10.1137/130921283 +Axel Klawonn,Toward Extremely Scalable Nonlinear Domain Decomposition Methods for Elliptic Partial Differential Equations.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#KlawonnLR15,https://doi.org/10.1137/140997907 +Ionut Danaila,A New Sobolev Gradient Method for Direct Minimization of the Gross--Pitaevskii Energy with Rotation.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#DanailaK10,https://doi.org/10.1137/100782115 +Yvan Notay,Flexible Conjugate Gradients.,2000,22,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc22.html#Notay00,https://doi.org/10.1137/S1064827599362314 +Allan R. Willms,Bounding Data with a Piecewise Linear Band.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#Willms09,https://doi.org/10.1137/080732316 +Luigi Brugnano,Iterative Solution of Piecewise Linear Systems.,2008,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#BrugnanoC08,https://doi.org/10.1137/070681867 +Andreas Karageorghis,Kansa-RBF Algorithms for Elliptic Problems in Axisymmetric Domains.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#KarageorghisCL16,https://doi.org/10.1137/15M1037974 +Urs von Matt,The Orthogonal qd-Algorithm.,1997,18,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc18.html#Matt97,https://doi.org/10.1137/S1064827594274887 +Jared L. Aurentz,Fast Computation of the Zeros of a Polynomial via Factorization of the Companion Matrix.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#AurentzVW13,https://doi.org/10.1137/120865392 +David Doyen,Time-Integration Schemes for the Finite Element Dynamic Signorini Problem.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#DoyenEP11,https://doi.org/10.1137/100791440 +K. C. Zygalakis,On the Existence and the Applications of Modified Equations for Stochastic Differential Equations.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#Zygalakis11,https://doi.org/10.1137/090762336 +Pratik Biswas,A Distributed SDP Approach for Large-Scale Noisy Anchor-Free Graph Realization with Applications to Molecular Conformation.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#BiswasTY08,https://doi.org/10.1137/05062754X +Olaf Schenk,Inertia-Revealing Preconditioning For Large-Scale Nonconvex Constrained Optimization.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#SchenkWW08,https://doi.org/10.1137/070707233 +Weiwei Sun,Iterative Algorithms for Orthogonal Spline Collocation Linear Systems.,1995,16,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc16.html#Sun95,https://doi.org/10.1137/0916043 +Alexander Veit,Using the Tensor-Train Approach to Solve the Ground-State Eigenproblem for Hydrogen Molecules.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#VeitS17,https://doi.org/10.1137/15M102808X +Andrea Cangiani,Adaptivity and Blow-Up Detection for Nonlinear Evolution Problems.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#CangianiGKM16,https://doi.org/10.1137/16M106073X +Pavel B. Bochev,An Improved Algebraic Multigrid Method for Solving Maxwell's Equations.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#BochevGHRT03,https://doi.org/10.1137/S1064827502407706 +Max la Cour Christensen,Numerical Multilevel Upscaling for Incompressible Flow in Reservoir Simulation: An Element-Based Algebraic Multigrid (AMGe) Approach.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#ChristensenVEV17,https://doi.org/10.1137/140988991 +Scott B. Baden,Programming Abstractions for Dynamically Partitioning and Coordinating Localized Scientific Calculations Running on Multiprocessors.,1991,12,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc12.html#Baden91,https://doi.org/10.1137/0912008 +Hong Wang,An ELLAM Scheme for Advection-Diffusion Equations in Two Dimensions.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#WangDEESM99,https://doi.org/10.1137/S1064827596309396 +John Guckenheimer,Computing Hopf Bifurcations. II: Three Examples From Neurophysiology.,1996,17,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc17.html#GuckenheimerM96,https://doi.org/10.1137/S1064827593253495 +Qiumei Huang,Superconvergence of Discontinuous Galerkin Solutions for Delay Differential Equations of Pantograph Type.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#HuangXB11,https://doi.org/10.1137/110824632 +David J. B. Lloyd,Efficient Numerical Continuation and Stability Analysis of Spatiotemporal Quadratic Optical Solitons.,2005,27,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc27.html#LloydC05,https://doi.org/10.1137/040604455 +Karol Mikula,A New Level Set Method for Motion in Normal Direction Based on a Semi-Implicit Forward-Backward Diffusion Approach.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#MikulaO10,https://doi.org/10.1137/09075946X +Zhenning Cai,NRxx Simulation of Microflows with Shakhov Model.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#CaiLQ12,https://doi.org/10.1137/110828551 +Michel O. Deville,Fourier Analysis of Finite Element Preconditioned Collocation Schemes.,1992,13,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc13.html#DevilleM92,https://doi.org/10.1137/0913033 +James O'Neil,A Block Ordering Method for Sparse Matrices.,1990,11,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc11.html#ONeilS90,https://doi.org/10.1137/0911048 +Jun Luo,A Well-Balanced Symplecticity-Preserving Gas-Kinetic Scheme for Hydrodynamic Equations under Gravitational Field.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#LuoXL11,https://doi.org/10.1137/100803699 +Ralf Hartmann,Adaptive Discontinuous Galerkin Finite Element Methods for Nonlinear Hyperbolic Conservation Laws.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#HartmannH03,https://doi.org/10.1137/S1064827501389084 +Michiel E. Hochstenbach,Alternatives to the Rayleigh Quotient for the Quadratic Eigenvalue Problem.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#HochstenbachV03,https://doi.org/10.1137/S1064827502406403 +Nicholas J. Higham,Stability of Parallel Triangular System Solvers.,1995,16,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc16.html#Higham95,https://doi.org/10.1137/0916025 +Pieterjan Robbe,A Multi-Index Quasi-Monte Carlo Algorithm for Lognormal Diffusion Problems.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#RobbeNV17,https://doi.org/10.1137/16M1082561 +Robin Sibson,Computation of Thin-Plate Splines.,1991,12,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc12.html#SibsonS91,https://doi.org/10.1137/0912070 +Wing Lok Wan,An Energy-minimizing Interpolation for Robust Multigrid Methods.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#WanCS99,https://doi.org/10.1137/S1064827598334277 +Jesse Chan,Orthogonal Bases for Vertex-Mapped Pyramids.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#ChanW16,https://doi.org/10.1137/15M1011408 +Jan Pomplun,Accelerated A Posteriori Error Estimation for the Reduced Basis Method with Application to 3D Electromagnetic Scattering Problems.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#PomplunS10,https://doi.org/10.1137/090760271 +Sam Subbey,The Impact of Uncertain Centrifuge Capillary Pressure on Reservoir Simulation.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#SubbeyCS04,https://doi.org/10.1137/S1064827503426747 +Adrian C. Muresan,Analysis of Aggregation-Based Multigrid.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#MuresanN08,https://doi.org/10.1137/060678397 +Chris J. Budd,On the Solution of Convection-Diffusion Boundary Value Problems Using Equidistributed Grids.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#BuddKS98,https://doi.org/10.1137/S1064827595280454 +Smadar Karni,Hybrid Multifluid Algorithms.,1996,17,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc17.html#Karni96,https://doi.org/10.1137/S106482759528003X +Joachim van der Herten,A Fuzzy Hybrid Sequential Design Strategy for Global Surrogate Modeling of High-Dimensional Computer Experiments.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#HertenCDD15,https://doi.org/10.1137/140962437 +J. H. Adler,Combining Deflation and Nested Iteration for Computing Multiple Solutions of Nonlinear Variational Problems.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#AdlerEFM17,https://doi.org/10.1137/16M1058728 +Walter Gander,Algorithms for the Polar Decomposition.,1990,11,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc11.html#Gander90,https://doi.org/10.1137/0911062 +David C. Del Rey Fernández,Generalized Summation-by-Parts Operators for the Second Derivative.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#FernandezZ15,https://doi.org/10.1137/140992205 +Thomas K. DeLillo,Numerical Computation of the Schwarz-Christoffel Transformation for Multiply Connected Domains.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#DeLilloK11,https://doi.org/10.1137/100816912 +Tony F. Chan,Eigendecomposition of Domain Decomposition Interface Operators for Constant Coefficient Elliptic Problems.,1991,12,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc12.html#ChanH91,https://doi.org/10.1137/0912080 +William W. Hager,Iterative Methods for Nearly Singular Linear Systems.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#Hager00,https://doi.org/10.1137/S106482759834634X +Peter Benner,Efficient Solution of Large-Scale Saddle Point Systems Arising in Riccati-Based Boundary Feedback Stabilization of Incompressible Stokes Flow.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#BennerSSW13,https://doi.org/10.1137/120881312 +Stephen A. Vavasis,Automatic Domain Partitioning in Three Dimensions.,1991,12,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc12.html#Vavasis91,https://doi.org/10.1137/0912051 +Weizhang Huang,Measuring Mesh Qualities and Application to Variational Mesh Adaptation.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#Huang05,https://doi.org/10.1137/S1064827503429405 +Wenlong Dai,A High-Order Iterative Implicit-Explicit Hybrid Scheme for Magnetohydrodynamics.,1998,19,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc19.html#DaiW98,https://doi.org/10.1137/S1064827595286086 +Woohyuk Choi,Vispark: GPU-Accelerated Distributed Visual COmputing Using Spark.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#ChoiHJ16,https://doi.org/10.1137/15M1026407 +Nahid Emad,Multiple Explicitly Restarted Arnoldi Method for Solving Large Eigenproblems.,2005,27,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc27.html#EmadPE05,https://doi.org/10.1137/S1064827500366082 +Roel Matthysen,Fast Algorithms for the Computation of Fourier Extensions of Arbitrary Length.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#MatthysenH16,https://doi.org/10.1137/15M1030923 +Martin J. Gander,Overlapping Schwarz Waveform Relaxation for Convection-Dominated Nonlinear Conservation Laws.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#GanderR05,https://doi.org/10.1137/030601090 +Benjamin Peherstorfer,Online Adaptive Model Reduction for Nonlinear Systems via Low-Rank Updates.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#PeherstorferW15,https://doi.org/10.1137/140989169 +Harri Hakula,On Moduli of Rings and Quadrilaterals: Algorithms and Experiments.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#HakulaRV11,https://doi.org/10.1137/090763603 +José E. Castillo,A Discrete Variational Grid Generation Method.,1991,12,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc12.html#Castillo91,https://doi.org/10.1137/0912025 +Norbert Heuer,Iterative Substructuring for Hypersingular Integral Equations in $\Bbb R^3$.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#HeuerS98,https://doi.org/10.1137/S1064827596311797 +Márcia A. Gomes-Ruggiero,Spectral Projected Gradient Method with Inexact Restoration for Minimization with Nonconvex Constraints.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#Gomes-RuggieroMS09,https://doi.org/10.1137/070707828 +Marjon J. Ruijter,A Fourier Cosine Method for an Efficient Computation of Solutions to BSDEs.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#RuijterO15,https://doi.org/10.1137/130913183 +Santi S. Adavani,Multigrid Algorithms for Inverse Problems with Linear Parabolic PDE Constraints.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#AdavaniB08,https://doi.org/10.1137/070687426 +Santiago Badia,Space-Time Balancing Domain Decomposition.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#BadiaO17,https://doi.org/10.1137/16M1074266 +Julie C. Mitchell,Sampling Rotation Groups by Successive Orthogonal Images.,2008,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#Mitchell08,https://doi.org/10.1137/030601879 +D. Pathria,The Correct Formulation of Intermediate Boundary Conditions for Runge-Kutta Time Integration of Initial Boundary Value Problems.,1997,18,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc18.html#Pathria97,https://doi.org/10.1137/S1064827594273948 +Babak Maboudi Afkham,Structure Preserving Model Reduction of Parametric Hamiltonian Systems.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#AfkhamH17,https://doi.org/10.1137/17M1111991 +Hailiang Liu,Alternating Evolution Schemes for Hamilton-Jacobi Equations.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#LiuPS13,https://doi.org/10.1137/120862806 +JiGuan G. Lin,Modeling Test Responses by Multivariable Polynomials of Higher Degrees.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#Lin06,https://doi.org/10.1137/040603954 +Zhongze Li,SchurRAS: A Restricted Version of the Overlapping Schur Complement Preconditioner.,2006,27,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc27.html#LiS06,https://doi.org/10.1137/040608350 +Valeria Simoncini,Theory of Inexact Krylov Subspace Methods and Applications to Scientific Computing.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#SimonciniS03,https://doi.org/10.1137/S1064827502406415 +Zydrunas Gimbutas,A Generalized Fast Multipole Method for Nonoscillatory Kernels.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#GimbutasR03,https://doi.org/10.1137/S1064827500381148 +Jessica Cervi,High-Order Operator Splitting for the Bidomain and Monodomain Models.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#CerviS18,https://doi.org/10.1137/17M1137061 +Michael R. Osborne,A Modified Prony Algorithm for Exponential Function Fitting.,1995,16,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc16.html#OsborneS95,https://doi.org/10.1137/0916008 +Thomas Dunst,The Forward-Backward Stochastic Heat Equation: Numerical Analysis and Simulation.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#DunstP16,https://doi.org/10.1137/15M1022951 +James Hilditch,A Front Tracking Method for Compressible Flames in One Dimension.,1995,16,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc16.html#HilditchC95,https://doi.org/10.1137/0916045 +Paul Tranquilli,Rosenbrock-Krylov Methods for Large Systems of Differential Equations.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#TranquilliS14,https://doi.org/10.1137/130923336 +Allison H. Baker,On Improving Linear Solver Performance: A Block Variant of GMRES.,2006,27,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc27.html#BakerDJ06,https://doi.org/10.1137/040608088 +Ignacio Martín Llorente,Alternating Plane Smoothers For Multiblock Grids.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#LlorenteDM00,https://doi.org/10.1137/S106482759935736X +Pierre Degond,Numerical Discretization of Energy-Transport Models for Semiconductors with Nonparabolic Band Structure.,2000,22,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc22.html#DegondJP00,https://doi.org/10.1137/S1064827599360972 +Lin Lin 0001,A Fast Parallel Algorithm for Selected Inversion of Structured Sparse Matrices with Application to 2D Electronic Structure Calculations.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#LinYLYE11,https://doi.org/10.1137/09077432X +Hans Olsson,Stage Value Predictors and Efficient Newton Iterations in Implicit Runge-Kutta Methods.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#OlssonS98,https://doi.org/10.1137/S1064827596306963 +Kapil Ahuja,Recycling BiCGSTAB with an Application to Parametric Model Order Reduction.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#AhujaBSF15,https://doi.org/10.1137/140972433 +Wai Sun Don,Accuracy and Speed in Computing the Chebyshev Collocation Derivative.,1995,16,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc16.html#DonS95,https://doi.org/10.1137/0916073 +Tsung-Ming Huang,A Robust Numerical Algorithm for Computing Maxwell's Transmission Eigenvalue Problems.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#HuangHL15,https://doi.org/10.1137/15M1018927 +Yong-Tao Zhang,High-Order WENO Schemes for Hamilton-Jacobi Equations on Triangular Meshes.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#ZhangS03,https://doi.org/10.1137/S1064827501396798 +Ben Adcock,Resolution-Optimal Exponential and Double-Exponential Transform Methods for Functions with Endpoint Singularities.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#AdcockMR17,https://doi.org/10.1137/15M104517X +Stephan C. Kramer,Parallel Statistical Multiresolution Estimation for Image Reconstruction.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#KramerHKL16,https://doi.org/10.1137/15M1020332 +C. Falcó Korn,Verification May be Better than Estimation.,1996,17,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc17.html#KornHU96,https://doi.org/10.1137/0917065 +David Fritzsche,Extensions of Certain Graph-based Algorithms for Preconditioning.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#FritzscheFS07,https://doi.org/10.1137/060661284 +Mohammed Lemou,A New Asymptotic Preserving Scheme Based on Micro-Macro Formulation for Linear Kinetic Equations in the Diffusion Limit.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#LemouM08,https://doi.org/10.1137/07069479X +Sebastian Holtz,The Alternating Linear Scheme for Tensor Optimization in the Tensor Train Format.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#HoltzRS12,https://doi.org/10.1137/100818893 +Pingping Zeng,Pricing Barrier and Bermudan Style Options Under Time-Changed Lévy Processes: Fast Hilbert Transform Approach.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#ZengK14,https://doi.org/10.1137/130922495 +Marlis Hochbruck,Error Analysis of Krylov Methods In a Nutshell.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#HochbruckL98,https://doi.org/10.1137/S1064827595290450 +Snorre H. Christiansen,On Constraint Preservation in Numerical Simulations of Yang-Mills Equations.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#ChristiansenW06,https://doi.org/10.1137/040616887 +Lehel Banjai,A Multipole Method for Schwarz-Christoffel Mapping of Polygons with Thousands of Sides.,2003,25,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc25.html#BanjaiT03,https://doi.org/10.1137/S1064827502411675 +Kazuo Murota,Computational Use of Group Theory in Bifurcation Analysis of Symmetric Structures.,1991,12,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc12.html#MurotaI91,https://doi.org/10.1137/0912016 +Xiaoming He,A Domain Decomposition Method for the Steady-State Navier-Stokes-Darcy Model with Beavers-Joseph Interface Condition.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#HeLLM15,https://doi.org/10.1137/140965776 +Jane Lawson,Balancing Space and Time Errors in the Method of Lines for Parabolic Equations.,1991,12,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc12.html#LawsonBD91,https://doi.org/10.1137/0912031 +Mohamed El Bouajaji,Optimized Schwarz Methods for the Time-Harmonic Maxwell Equations with Damping.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#BouajajiDGL12,https://doi.org/10.1137/110842995 +Michael Goldstein,Probabilistic Formulations for Transferring Inferences from Mathematical Models to Physical Systems.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#GoldsteinR04,https://doi.org/10.1137/S106482750342670X +William W. Hager,Minimizing the Profile of a Symmetric Matrix.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#Hager02,https://doi.org/10.1137/S1064827500379215 +Matthias Heinkenschloss,Balanced Truncation Model Reduction for a Class of Descriptor Systems with Application to the Oseen Equations.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#HeinkenschlossSS08,https://doi.org/10.1137/070681910 +Cédric Chauvière,Computational Modeling of Uncertainty in Time-Domain Electromagnetics.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#ChauviereHL06,https://doi.org/10.1137/040621673 +Zhisong Fu,A Fast Iterative Method for Solving the Eikonal Equation on Tetrahedral Domains.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#FuKW13,https://doi.org/10.1137/120881956 +Marc Garbey,Domain Decomposition to Solve Transition Layers and Asymptotics.,1994,15,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc15.html#Garbey94,https://doi.org/10.1137/0915053 +Dongbin Xiu,The Wiener-Askey Polynomial Chaos for Stochastic Differential Equations.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#XiuK02,https://doi.org/10.1137/S1064827501387826 +Per-Gunnar Martinsson,Compressing Rank-Structured Matrices via Randomized Sampling.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#Martinsson16,https://doi.org/10.1137/15M1016679 +Paul Houston,Automatic Symbolic Computation for Discontinuous Galerkin Finite Element Methods.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#HoustonS18,https://doi.org/10.1137/17M1129751 +Maria Cristina Recchioni,Hamilton-based Numerical Methods for a Fluid-Membrane Interaction in Two and Three Dimensions.,1998,19,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc19.html#RecchioniR98,https://doi.org/10.1137/S106482759528973X +Rongjie Lai,A Ridge and Corner Preserving Model for Surface Restoration.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#LaiTC13,https://doi.org/10.1137/110846634 +Tamara G. Kolda,A Scalable Generative Graph Model with Community Structure.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#KoldaPPS14,https://doi.org/10.1137/130914218 +Christian Wieners,Duality Estimates and Multigrid Analysis for Saddle Point Problems Arising from Mortar Discretizations.,2003,24,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc24.html#WienersW03,https://doi.org/10.1137/S1064827502402715 +Yannan Chen,The Fiedler Vector of a Laplacian Tensor for Hypergraph Partitioning.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#ChenQZ17,https://doi.org/10.1137/16M1094828 +Elizabeth R. Jessup,Improving the Accuracy of Inverse Iteration.,1992,13,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc13.html#JessupI92,https://doi.org/10.1137/0913031 +Vincent Israel-Jost,FA-SART: A Frequency-Adaptive Algorithm in Pinhole SPECT Tomography.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#Israel-Jost08,https://doi.org/10.1137/060668341 +Veselin Dobrev,High-Order Curvilinear Finite Element Methods for Lagrangian Hydrodynamics.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#DobrevKR12,https://doi.org/10.1137/120864672 +Gregory J. Rodin,Boundary Element Preconditioners for Problems Defined on Slender Domains.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#RodinS03,https://doi.org/10.1137/S1064827500372067 +Gregory Beylkin,Algorithms for Numerical Analysis in High Dimensions.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#BeylkinM05,https://doi.org/10.1137/040604959 +Qiang Du,Anisotropic Centroidal Voronoi Tessellations and Their Applications.,2005,26,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc26.html#DuW05,https://doi.org/10.1137/S1064827503428527 +Francis Filbet,Solving the Boltzmann Equation in N log2N.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#FilbetMP06,https://doi.org/10.1137/050625175 +Yi Yan,Sparse Preconditioned Iterative Methods for Dense Linear Systems.,1994,15,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc15.html#Yan94,https://doi.org/10.1137/0915073 +Ville Kolehmainen,Limited Data X-Ray Tomography Using Nonlinear Evolution Equations.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#KolehmainenLS08,https://doi.org/10.1137/050622791 +Robert I. A. Patterson,A Stochastic Weighted Particle Method for Coagulation-Advection Problems.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#PattersonW12,https://doi.org/10.1137/110843319 +Kossi D. Edoh,Computation of Lyapunov-Type Numbers for Invariant Curves of Planar Maps.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#EdohL01,https://doi.org/10.1137/S1064827500366707 +Dionissios T. Hristopulos,Spartan Gibbs Random Field Models for Geostatistical Applications.,2003,24,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc24.html#Hristopulos03,https://doi.org/10.1137/S106482750240265X +James Glimm,Statistical Riemann Problems and a Composition Law for Errors in Numerical Solutions of Shock Physics Problems.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#GlimmGKLLSYYZ04,https://doi.org/10.1137/S1064827503427534 +Charles H. Tong,A Domain Decomposition Preconditioner Based on a Change to a Multilevel Nodal Basis.,1991,12,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc12.html#TongCK91,https://doi.org/10.1137/0912082 +Jean-David Benamou,Iterative Bregman Projections for Regularized Transportation Problems.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#BenamouCCNP15,https://doi.org/10.1137/141000439 +Wilhelm Heinrichs,A Stabilized Treatment of the Biharmonic Operator with Spectral Methods.,1991,12,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc12.html#Heinrichs91,https://doi.org/10.1137/0912061 +Kody J. H. Law,Deterministic Mean-Field Ensemble Kalman Filtering.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#LawTT16,https://doi.org/10.1137/140984415 +K. Andrew Cliffe,Goal-Oriented A Posteriori Error Estimation For The Travel Time Functional In Porous Media Flows.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#CliffeCH15,https://doi.org/10.1137/140960499 +Edmond Chow,An Aggregation Multilevel Method Using Smooth Error Vectors.,2006,27,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc27.html#Chow06,https://doi.org/10.1137/040608192 +Johannes Tausch,Multidimensional Fast Gauss Transforms by Chebyshev Expansions.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#TauschW09,https://doi.org/10.1137/080732729 +K. R. Jackson,Adaptive Linear Equation Solvers in Codes for Large Stiff Systems of ODEs.,1993,14,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc14.html#JacksonS93,https://doi.org/10.1137/0914051 +Lourenço Beirão da Veiga,A Higher-Order Formulation of the Mimetic Finite Difference Method.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#VeigaM08,https://doi.org/10.1137/080717894 +Julien Coatléven,Transparent Boundary Conditions for Evolution Equations in Infinite Periodic Strips.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#Coatleven12,https://doi.org/10.1137/110838030 +Chih-Jen Lin,Incomplete Cholesky Factorizations with Limited Memory.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#LinM99,https://doi.org/10.1137/S1064827597327334 +Wei-Cheng Wang,A Jump Condition Capturing Finite Difference Scheme for Elliptic Interface Problems.,2004,25,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc25.html#Wang04,https://doi.org/10.1137/S1064827502405987 +David Kinderlehrer,A Variational Approach to Modeling and Simulation of Grain Growth.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#KinderlehrerLT06,https://doi.org/10.1137/030601971 +K. L. Hamlington,Evaluation of Grid-Based and Grid-Free Methods to Model Microchannel Transport-Reaction.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#HamlingtonKFCG13,https://doi.org/10.1137/120880598 +Axel Klawonn,A Domain Decomposition Method with Lagrange Multipliers and Inexact Solvers for Linear Elasticity.,2000,22,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc22.html#KlawonnW00,https://doi.org/10.1137/S1064827599352495 +Federico Negri,Reduced Basis Method for Parametrized Elliptic Optimal Control Problems.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#NegriRMQ13,https://doi.org/10.1137/120894737 +Raymond H. Chan,Multigrid Method for Ill-Conditioned Symmetric Toeplitz Systems.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#ChanCS98,https://doi.org/10.1137/S1064827595293831 +Dimitri Breda,Computing the Eigenvalues of Realistic Daphnia Models by Pseudospectral Methods.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#BredaGSV15,https://doi.org/10.1137/15M1016710 +James Glimm,Front Tracking Simulations of Ion Deposition and Resputtering.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#GlimmSTTV99,https://doi.org/10.1137/S1064827597318393 +Apostolos Hadjidimos,Iterative Line Cubic Spline Collocation Methods for Elliptic Partial Differential Equations in Several Dimensions.,1993,14,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc14.html#HadjidimosHRV93,https://doi.org/10.1137/0914045 +David E. Womble,A Time-Stepping Algorithm for Parallel Computers.,1990,11,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc11.html#Womble90,https://doi.org/10.1137/0911049 +Brett N. Ryland,On Multisymplecticity of Partitioned Runge-Kutta Methods.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#RylandM08,https://doi.org/10.1137/070688468 +Dan Ibanez,Modifiable Array Data Structures for Mesh Topology.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#IbanezS17,https://doi.org/10.1137/16M1063496 +Andrew L. Zachary,A Higher-Order Godunov Method for Multidimensional Ideal Magnetohydrodynamics.,1994,15,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc15.html#ZacharyMC94,https://doi.org/10.1137/0915019 +Tim Chartier,Spectral AMGe (χ1*AMGe).,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#ChartierFHJMMRV03,https://doi.org/10.1137/S106482750139892X +Jie Shen 0001,Efficient Spectral-Galerkin Method I. Direct Solvers of Second- and Fourth-Order Equations Using Legendre Polynomials.,1994,15,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc15.html#Shen94,https://doi.org/10.1137/0915089 +Zhongqiang Zhang,Error Estimates for the ANOVA Method with Polynomial Chaos Interpolation: Tensor Product Functions.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#ZhangCK12,https://doi.org/10.1137/100788859 +Sean Curtis,Postprocessing for the Discontinuous Galerkin Method over Nonuniform Meshes.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#CurtisKRS07,https://doi.org/10.1137/070681284 +Michael Pernice,A Multigrid-Preconditioned Newton-Krylov Method for the Incompressible Navier-Stokes Equations.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#PerniceT01,https://doi.org/10.1137/S1064827500372250 +Jeffrey K. Bennighof,An Automated Multilevel Substructuring Method for Eigenspace Computation in Linear Elastodynamics.,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#BennighofL04,https://doi.org/10.1137/S1064827502400650 +X. Peng,A Method for Geometry Optimization in a Simple Model of Two-Dimensional Heat Transfer.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#PengNP13,https://doi.org/10.1137/120870499 +Ta-Kang Ku,A Minimum-Phase LU Factorization Preconditioner for Toeplitz Matrices.,1992,13,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc13.html#KuK92a,https://doi.org/10.1137/0913083 +Gerhard Starke,Alternating Direction Preconditioning for Nonsymmetric Systems of Linear Equations.,1994,15,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc15.html#Starke94,https://doi.org/10.1137/0915026 +Eleanor W. Jenkins,An Aggregation-Based Domain Decomposition Preconditioner for Groundwater Flow.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#JenkinsKKM01,https://doi.org/10.1137/S1064827500372274 +Amir Averbuch,A Fast Poisson Solver of Arbitrary Order Accuracy in Rectangular Regions.,1998,19,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc19.html#AverbuchIV98,https://doi.org/10.1137/S1064827595288589 +James H. Adler,Constrained Optimization for Liquid Crystal Equilibria.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#AdlerEMM16,https://doi.org/10.1137/141001846 +Fabio Di Benedetto,Superoptimal Preconditioned Conjugate Gradient Iteration for Image Deblurring.,2005,26,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc26.html#BenedettoEC05,https://doi.org/10.1137/S1064827503421653 +Paul Houston,hp-Adaptive Discontinuous Galerkin Finite Element Methods for First-Order Hyperbolic Problems.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#HoustonS01,https://doi.org/10.1137/S1064827500378799 +Oren E. Livne,Lean Algebraic Multigrid (LAMG): Fast Graph Laplacian Linear Solver.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#LivneB12,https://doi.org/10.1137/110843563 +Mardochée Magolu monga Made,Taking Advantage of the Potentialities of Dynamically Modified Block Incomplete Factorizations.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#Made98,https://doi.org/10.1137/S0036144594266284 +Sarah W. Gaaf,Probabilistic Bounds for the Matrix Condition Number with Extended Lanczos Bidiagonalization.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#GaafH15,https://doi.org/10.1137/140975218 +Gerardo Tauriello,Coupling Remeshed Particle and Phase Field Methods for the Simulation of Reaction-Diffusion on the Surface and the Interior of Deforming Geometries.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#TaurielloK13,https://doi.org/10.1137/130906441 +C. Coray,High Order Accuracy Optimized Methods for Constrained Numerical Solutions of Hyperbolic Conservation Laws.,1994,15,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc15.html#CorayK94,https://doi.org/10.1137/0915052 +Christian Lubich,Fast Convolution for Nonreflecting Boundary Conditions.,2002,24,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc24.html#LubichS02,https://doi.org/10.1137/S1064827501388741 +Loïc Giraldi,To Be or Not to be Intrusive? The Solution of Parametric and Stochastic Equations - Proper Generalized Decomposition.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#GiraldiLMN15,https://doi.org/10.1137/140969063 +Alfred A. Lorber,ODE Recursions and Iterative Solvers for Linear Equations.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#LorberCJ96,https://doi.org/10.1137/0917006 +Zhongyi Huang,A Bloch Decomposition-Based Split-Step Pseudospectral Method for Quantum Dynamics with Periodic Potentials.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#HuangJMS07,https://doi.org/10.1137/060652026 +Qingping Deng,Timely Communicaton: An Analysis for a Nonoverlapping Domain Decomposition Iterative Procedure.,1997,18,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc18.html#Deng97,https://doi.org/10.1137/S1064827595286797 +Felice Iavernaro,Convergence and Stability of Multistep Methods Solving Nonlinear Initial Value Problems.,1997,18,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc18.html#IavernaroM97,https://doi.org/10.1137/S1064827595287122 +Heinz-Otto Kreiss,An Embedded Boundary Method for the Wave Equation with Discontinuous Coefficients.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#KreissP06a,https://doi.org/10.1137/050641399 +Yang Cao 0001,Adjoint Sensitivity Analysis for Differential-Algebraic Equations: The Adjoint DAE System and Its Numerical Solution.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#CaoLPS03,https://doi.org/10.1137/S1064827501380630 +Serkan Gugercin,Model Reduction of Descriptor Systems by Interpolatory Projection Methods.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#GugercinSW13,https://doi.org/10.1137/130906635 +Andrew J. Majda,Numerical Study of the Mechanisms for Initiation of Reacting Shock Waves.,1990,11,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc11.html#MajdaR90,https://doi.org/10.1137/0911055 +Richard H. Burkhart,Asymptotic Expansion of the Free-space Green's Function for the Discrete 3-D Poisson Equation.,1997,18,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc18.html#Burkhart97,https://doi.org/10.1137/S1064827594261589 +Dganit Amitai,Implicit-Explicit Parallel Asynchronous Solver of Parabolic PDEs.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#AmitaiAII98,https://doi.org/10.1137/S1064827595281290 +Raymond H. Chan,Fast Band-Toeplitz Preconditioners for Hermitian Toeplitz Systems.,1994,15,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc15.html#ChanT94,https://doi.org/10.1137/0915011 +Zhiqiang Sheng,Monotone Finite Volume Schemes of Nonequilibrium Radiation Diffusion Equations on Distorted Meshes.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#ShengYY09,https://doi.org/10.1137/080721558 +Rodrigo B. Platte,C∞ Compactly Supported and Positive Definite Radial Kernels.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#Platte15,https://doi.org/10.1137/14M1000683 +Michele Benzi,Special Section: 2014 Copper Mountain Conference.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#Benzi15,https://doi.org/10.1137/15N973940 +Peter Kloeden,Gauss-Quadrature Method for One-Dimensional Mean-Field SDEs.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#KloedenS17,https://doi.org/10.1137/16M1095688 +Alfio Borzì,Multilevel Solution of Cell Vertex Cauchy-Riemann Equations.,1997,18,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc18.html#BorziMSV97,https://doi.org/10.1137/S1064827595281952 +Grady B. Wright,An Efficient and Robust Method for Simulating Two-Phase Gel Dynamics.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#WrightGF08,https://doi.org/10.1137/070695927 +Richard M. Crownover,A Least Squares Approach to Linear Discriminant Analysis.,1991,12,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc12.html#Crownover91,https://doi.org/10.1137/0912032 +Andreas Stathopoulos,Nearly Optimal Preconditioned Methods for Hermitian Eigenproblems under Limited Memory. Part I: Seeking One Eigenvalue.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#Stathopoulos07,https://doi.org/10.1137/050631574 +Laurent Gosse,Lagrangian Numerical Approximations to One-Dimensional Convolution-Diffusion Equations.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#GosseT06,https://doi.org/10.1137/050628015 +Stefan Vandewalle,Efficient Parallel Algorithms for Solving Initial-Boundary Value and Time-Periodic Parabolic Partial Differential Equations.,1992,13,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc13.html#VandewalleP92,https://doi.org/10.1137/0913075 +P. Mironowicz,A Task-Scheduling Approach for Efficient Sparse Symmetric Matrix-Vector Multiplication on a GPU.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#MironowiczDM15,https://doi.org/10.1137/14097135X +Robert I. McLachlan,Symplectic Integrators for Index 1 Constraints.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#McLachlanMVW13,https://doi.org/10.1137/120885085 +Veerle Ledoux,Solution of Sturm--Liouville Problems Using Modified Neumann Schemes.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#LedouxD10,https://doi.org/10.1137/090758398 +Ingo Matheis,Convergence of the Stochastic Weighted Particle Method for the Boltzmann Equation.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#MatheisW03,https://doi.org/10.1137/S1064827502406014 +Mo-Hong Chou,An Efficient Scheme for Unsteady Flow Past an Object with Boundary Conformal to a Circle.,1992,13,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc13.html#Chou92,https://doi.org/10.1137/0913051 +Badri Hiriyur,A Quasi-algebraic Multigrid Approach to Fracture Problems Based on Extended Finite Elements.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#HiriyurTWBK12,https://doi.org/10.1137/110819913 +Malte Braack,Duality Based A Posteriori Error Estimation for Quasi-Periodic Solutions Using Time Averages.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#BraackBT11,https://doi.org/10.1137/100809519 +Martin Drohmann,Reduced Basis Approximation for Nonlinear Parametrized Evolution Equations based on Empirical Operator Interpolation.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#DrohmannHO12,https://doi.org/10.1137/10081157X +Michal Kocvara,Constraint Interface Preconditioning for Topology Optimization Problems.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#KocvaraLT16,https://doi.org/10.1137/140980387 +Grace Hechmé,Efficient Methods for Computing Spectral Projectors for Linearized Hydrodynamic Equations.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#HechmeNS08,https://doi.org/10.1137/050648122 +Ching-Yuen Loh,A Lagrangian Random Choice Approach for Supersonic Real Gas Flows.,1994,15,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc15.html#LohL94,https://doi.org/10.1137/0915063 +Gary Cohen,Mixed Spectral Finite Elements for the Linear Elasticity System in Unbounded Domains.,2005,26,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc26.html#CohenF05,https://doi.org/10.1137/S1064827502407457 +Markus Klingler,The Finite Mass Method on Domains with Boundary.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#KlinglerLY05,https://doi.org/10.1137/S1064827502420483 +Mónika Polner,A Space-Time Finite Element Method for Neural Field Equations with Transmission Delays.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#PolnerVG17,https://doi.org/10.1137/16M1085024 +Kirk M. Soodhalter,Block Krylov Subspace Recycling for Shifted Systems with Unrelated Right-Hand Sides.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#Soodhalter16,https://doi.org/10.1137/140998214 +Gregor Gassner,A Skew-Symmetric Discontinuous Galerkin Spectral Element Discretization and Its Relation to SBP-SAT Finite Difference Methods.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#Gassner13,https://doi.org/10.1137/120890144 +Youngsoo Ha,Sixth-order Weighted Essentially Nonoscillatory Schemes Based on Exponential Polynomials.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#HaKYY16,https://doi.org/10.1137/15M1042814 +Massimo Bernaschi,A Factored Sparse Approximate Inverse Preconditioned Conjugate Gradient Solver on Graphics Processing Units.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#BernaschiBFJ16,https://doi.org/10.1137/15M1027826 +Cornelis W. Oosterlee,A Genetic Search for Optimal Multigrid Components Within a Fourier Analysis Setting.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#OosterleeW03,https://doi.org/10.1137/S1064827501397950 +Edward G. Phillips,Block Preconditioners for Stable Mixed Nodal and Edge finite element Representations of Incompressible Resistive MHD.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#PhillipsSCEP16,https://doi.org/10.1137/16M1074084 +Michael Griebel,A Particle-Partition of Unity Method-Part II: Efficient Cover Construction and Reliable Integration.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#GriebelS02a,https://doi.org/10.1137/S1064827501391588 +Ralph Menikoff,Errors When Shock Waves Interact Due to Numerical Shock Width.,1994,15,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc15.html#Menikoff94,https://doi.org/10.1137/0915075 +Yogi A. Erlangga,Multilevel Projection-Based Nested Krylov Iteration for Boundary Value Problems.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#ErlanggaN08,https://doi.org/10.1137/070684550 +Grey Ballard,Communication-optimal Parallel and Sequential Cholesky Decomposition.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#BallardDHS10,https://doi.org/10.1137/090760969 +Xuan Vinh Doan,A Proximal Point Algorithm for Sequential Feature Extraction Applications.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#DoanTV13,https://doi.org/10.1137/110843381 +Misha E. Kilmer,QMR-Based Projection Techniques for the Solution of Non-Hermitian Systems with Multiple Right-Hand Sides.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#KilmerMR01,https://doi.org/10.1137/S1064827599355542 +Samuel A. Isaacson,Incorporating Diffusion in Complex Geometries into Stochastic Chemical Kinetics Simulations.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#IsaacsonP06,https://doi.org/10.1137/040605060 +K. J. in 't Hout,A Contour Integral Method for the Black-Scholes and Heston Equations.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#HoutW11,https://doi.org/10.1137/090776081 +Lothar Reichel,A Matrix Problem with Application to Rapid Solution of Integral Equations.,1990,11,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc11.html#Reichel90,https://doi.org/10.1137/0911016 +Graham Horton,An Algorithm with Polylog Parallel Complexity for Solving Parabolic Partial Differential Equations.,1995,16,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc16.html#HortonVW95,https://doi.org/10.1137/0916034 +Peter Benner,Symplectic Balancing of Hamiltonian Matrices.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#Benner01,https://doi.org/10.1137/S1064827500367993 +Cun Mu,Scalable Robust Matrix Recovery: Frank-Wolfe Meets Proximal Methods.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#MuZWG16,https://doi.org/10.1137/15M101628X +C. Kristopher Garrett,A Fast Solver for Implicit Integration of the Vlasov-Poisson System in the Eulerian Framework.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#GarrettH18,https://doi.org/10.1137/17M1134184 +Vít Dolejsí,hp-Adaptation Driven by Polynomial-Degree-Robust A Posteriori Error Estimates for Elliptic Problems.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#DolejsiEV16,https://doi.org/10.1137/15M1026687 +Nicholas K.-R. Kevlahan,An Adaptive Wavelet Collocation Method for Fluid-Structure Interaction at High Reynolds Numbers.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#KevlahanV05,https://doi.org/10.1137/S1064827503428503 +Katharina Kormann,A Semi-Lagrangian Vlasov Solver in Tensor Train Format.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#Kormann15,https://doi.org/10.1137/140971270 +Yongxin Li,Convergence Results of a Local Minimax Method for Finding Multiple Critical Points.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#LiZ03,https://doi.org/10.1137/S1064827500379732 +N. Martin,Four-Field Finite Element Solver and Sensitivities for Quasi-Newtonian Flows.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#MartinM14,https://doi.org/10.1137/130914887 +Zhiqiang Cai,Solution Methods for the Poisson Equation with Corner Singularities: Numerical Results.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#CaiKS01,https://doi.org/10.1137/S1064827500372778 +Jingyue Wang,A Study on Anisotropic Mesh Adaptation for Finite Element Approximation of Eigenvalue Problems with Anisotropic Diffusion Operators.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#WangH15,https://doi.org/10.1137/140958554 +Buyang Li,A Fast and Stable Preconditioned Iterative Method for Optimal Control Problem of Wave Equations.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#LiLX15,https://doi.org/10.1137/15M1020526 +Roger G. Ghanem,Special Issue on Uncertainty Quantification.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#GhanemW04, +Valeria Simoncini,A New Iterative Method for Solving Large-Scale Lyapunov Matrix Equations.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#Simoncini07,https://doi.org/10.1137/06066120X +Allison H. Baker,Multigrid Smoothers for Ultraparallel Computing.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#BakerFKY11,https://doi.org/10.1137/100798806 +Judith D. Gardiner,A Stabilized Matrix Sign Function Algorithm for Solving Algebraic Riccati Equations.,1997,18,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc18.html#Gardiner97,https://doi.org/10.1137/S1064827593259078 +Gene H. Golub,A Fast Poisson Solver for the Finite Difference Solution of the Incompressible Navier-Stokes Equations.,1998,19,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc19.html#GolubHST98,https://doi.org/10.1137/S1064827595285299 +Svetozar Margenov,Algebraic Multilevel Preconditioning of Anisotropic Elliptic Problems.,1994,15,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc15.html#MargenovV94,https://doi.org/10.1137/0915062 +Evelyn Buckwar,Stochastic Runge--Kutta Methods for It[o-circumflex] SODEs with Small Noise.,2010,32,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc32.html#BuckwarRW10,https://doi.org/10.1137/090763275 +Cosmin G. Petra,An Augmented Incomplete Factorization Approach for Computing the Schur Complement in Stochastic Optimization.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#PetraSLG14,https://doi.org/10.1137/130908737 +Frédéric Legoll,A Micro-Macro Parareal Algorithm: Application to Singularly Perturbed Ordinary Differential Equations.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#LegollLS13,https://doi.org/10.1137/120872681 +Panayot S. Vassilevski,Computation of Constants in the Strengthened Cauchy Inequality for Elliptic Bilinear Forms with Anisotropy.,1992,13,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc13.html#VassilevskiE92,https://doi.org/10.1137/0913037 +Manuel J. Castro,Central Schemes for Nonconservative Hyperbolic Systems.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#CastroPPR12,https://doi.org/10.1137/110828873 +Chong Gu,Minimizing GCV/GML Scores with Multiple Smoothing Parameters via the Newton Method.,1991,12,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc12.html#GuW91,https://doi.org/10.1137/0912021 +Martin Storath,Exact Algorithms for L1-TV Regularization of Real-Valued or Circle-Valued Signals.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#StorathWU16,https://doi.org/10.1137/15M101796X +M. Pellikka,Homology and Cohomology Computation in Finite Element Modeling.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#PellikkaSKG13,https://doi.org/10.1137/130906556 +Slimane Adjerid,A Posteriori Finite Element Error Estimation for Diffusion Problems.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#AdjeridBF99,https://doi.org/10.1137/S1064827596305040 +Xue Jiang,Eddy Current Model for Nondestructive Evaluation with Thin Cracks.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#JiangLZ16,https://doi.org/10.1137/15M1015492 +J. Kenneth Wolfenbarger,Regularized Solutions to the Aerosol Data Inversion Problem.,1991,12,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc12.html#WolfenbargerS91,https://doi.org/10.1137/0912019 +Matthias K. Gobbert,Long-Time Simulations on High Resolution Meshes to Model Calcium Waves in a Heart Cell.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#Gobbert08,https://doi.org/10.1137/070692261 +Masayuki Yano,A Reduced Basis Method for Coercive Equations with an Exact Solution Certificate and Spatio-Parameter Adaptivity: Energy-Norm and Output Error Bounds.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#Yano18,https://doi.org/10.1137/16M1071341 +Mihai Anitescu,A Matrix-free Approach for Solving the Parametric Gaussian Process Maximum Likelihood Problem.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#AnitescuCW12,https://doi.org/10.1137/110831143 +Luis Ortiz-Gracia,A Highly Efficient Shannon Wavelet Inverse Fourier Technique for Pricing European Options.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#Ortiz-GraciaO16,https://doi.org/10.1137/15M1014164 +María J. Cáceres,Deterministic Simulation of the Boltzmann-Poisson System in GaAs-Based Semiconductors.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#CaceresCM06,https://doi.org/10.1137/040607526 +Albert Parker,Sampling Gaussian Distributions in Krylov Spaces with Conjugate Gradients.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#ParkerF12,https://doi.org/10.1137/110831404 +Bengt Fornberg,Stable Computations with Gaussian Radial Basis Functions.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#FornbergLF11,https://doi.org/10.1137/09076756X +Mo Mu,Preconditioning for Domain Decomposition through Function Approximation.,1994,15,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc15.html#MuR94,https://doi.org/10.1137/0915087 +Reinhard Nabben,A Comparison of Deflation and the Balancing Preconditioner.,2006,27,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc27.html#NabbenV06,https://doi.org/10.1137/040608246 +Patrick Henning,Localized Orthogonal Decomposition Techniques for Boundary Value Problems.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#HenningM14,https://doi.org/10.1137/130933198 +Santtu Salmi,An IMEX-Scheme for Pricing Options under Stochastic Volatility Models with Jumps.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#SalmiTS14,https://doi.org/10.1137/130924905 +A. Dutt,Fast Fourier Transforms for Nonequispaced Data.,1993,14,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc14.html#DuttR93,https://doi.org/10.1137/0914081 +Roman N. Makarov,Stochastic Algorithms with Hermite Cubic Spline Interpolation for Global Estimation of Solutions of Boundary Value Problems.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#MakarovS07,https://doi.org/10.1137/040619156 +Colin Desa,Preconditioned Iterative Methods for Homotopy Curve Tracking.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#DesaIRWW92,https://doi.org/10.1137/0913002 +Xinlong Feng,Long Time Numerical Simulations for Phase-Field Problems Using p-Adaptive Spectral Deferred Correction Methods.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#FengTY15,https://doi.org/10.1137/130928662 +Roland Becker,Stabilized Finite Element Formulation with Domain Decomposition for Incompressible Flows.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#BeckerCLT15,https://doi.org/10.1137/140975796 +Dmitry Pekurovsky,P3DFFT: A Framework for Parallel Computations of Fourier Transforms in Three Dimensions.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#Pekurovsky12,https://doi.org/10.1137/11082748X +C. Cartwright,Parallel Support Set Searches for Meshfree Methods.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#CartwrightOS06,https://doi.org/10.1137/S1064827502414321 +Francesc Aràndiga,Multiresolution Based on Weighted Averages of the Hat Function II: Nonlinear Reconstruction Techniques.,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#ArandigaDH98,https://doi.org/10.1137/S1064827596308822 +Roman Andreev,Wavelet-In-Time Multigrid-In-Space Preconditioning of Parabolic Evolution Equations.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#Andreev16,https://doi.org/10.1137/140998639 +Alastair Gregory,A Seamless Multilevel Ensemble Transform Particle Filter.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#GregoryC17,https://doi.org/10.1137/16M1102021 +Bengt Fornberg,A Stable Algorithm for Flat Radial Basis Functions on a Sphere.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#FornbergP07,https://doi.org/10.1137/060671991 +Ramendra K. Sahoo,A Composite Adaptive Grid Generation and Migration Technique for Materials Processing Problems.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#SahooP03,https://doi.org/10.1137/S1064827501392235 +Mario A. Casarin,Timely Communication: Diagonal Edge Preconditioners in p-version and Spectral Element Methods.,1997,18,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc18.html#Casarin97,https://doi.org/10.1137/S1064827595292321 +Barry Joe,Construction of Three-Dimensional Improved-Quality Triangulations Using Local Transformations.,1995,16,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc16.html#Joe95,https://doi.org/10.1137/0916075 +Hailiang Liu,Maximum-Principle-Satisfying Third Order Discontinuous Galerkin Schemes for Fokker-Planck Equations.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#LiuY14,https://doi.org/10.1137/130935161 +Xiao-Wen Chang,An Orthogonal Transformation Algorithm for GPS Positioning.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#ChangP03,https://doi.org/10.1137/S1064827501397937 +David H. Bailey,Efficient Detection of a Continuous-Wave Signal with a Linear Frequency Drift.,1995,16,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc16.html#BaileyS95,https://doi.org/10.1137/0916071 +Ronald B. Morgan,Preconditioning the Lanczos Algorithm for Sparse Symmetric Eigenvalue Problems.,1993,14,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc14.html#MorganS93,https://doi.org/10.1137/0914037 +George Biros,Parallel Lagrange-Newton-Krylov-Schur Methods for PDE-Constrained Optimization. Part I: The Krylov-Schur Solver.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#BirosG05,https://doi.org/10.1137/S106482750241565X +Erik Adler Christensen,Evaluation of Proper Orthogonal Decomposition-Based Decomposition Techniques Applied to Parameter-Dependent Nonturbulent Flows.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#ChristensenBS99,https://doi.org/10.1137/S1064827598333181 +Craig S. MacDonald,Efficient Moving Mesh Methods for Q-Tensor Models of Nematic Liquid Crystals.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#MacDonaldMRN15,https://doi.org/10.1137/130923683 +Yan Xu,Local Discontinuous Galerkin Method for the Hunter--Saxton Equation and Its Zero-Viscosity and Zero-Dispersion Limits.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#XuS08,https://doi.org/10.1137/080714105 +R. Touma,Well-Balanced Unstaggered Central Schemes for the Euler Equations with Gravitation.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#ToumaKK16,https://doi.org/10.1137/140992667 +Xiaofeng Yang 0003,Efficient Second Order Unconditionally Stable Schemes for a Phase Field Moving Contact Line Model Using an Invariant Energy Quadratization Approach.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#YangY18,https://doi.org/10.1137/17M1125005 +Matteo Parsani,Entropy Stable Staggered Grid Discontinuous Spectral Collocation Methods of any Order for the Compressible Navier-Stokes Equations.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#ParsaniCFN16,https://doi.org/10.1137/15M1043510 +Luca Dieci,Numerical Calculation of Invariant Tori.,1991,12,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc12.html#DieciLR91,https://doi.org/10.1137/0912033 +Michael Schäfer,Parallel Algorithms for the Numerical Solution of Incompressible Finite Elasticity Problems.,1991,12,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc12.html#Schafer91,https://doi.org/10.1137/0912014 +C. William Gear,Projective Methods for Stiff Differential Equations: Problems with Gaps in Their Eigenvalue Spectrum.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#GearK03,https://doi.org/10.1137/S1064827501388157 +Stefania Corsaro,Semi-Implicit Covolume Method in 3D Image Segmentation.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#CorsaroMSS06,https://doi.org/10.1137/060651203 +Michele Benzi,Multilevel Algorithms for Large-Scale Interior Point Methods.,2009,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#BenziHT09,https://doi.org/10.1137/060650799 +Roland W. Freund,Conjugate Gradient-Type Methods for Linear Systems with Complex Symmetric Coefficient Matrices.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#Freund92,https://doi.org/10.1137/0913023 +Bo Strand,Simulations of Acoustic Wave Phenomena Using High-Order Finite Difference Approximations.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#Strand99,https://doi.org/10.1137/S1064827596312523 +Grady B. Wright,Extension of Chebfun to Periodic Functions.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#WrightJMT15,https://doi.org/10.1137/141001007 +Xiaojie Wang,Higher Order Strong Approximations of Semilinear Stochastic Wave Equation with Additive Space-time White Noise.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#WangGT14,https://doi.org/10.1137/130937524 +James Glimm,Three-Dimensional Front Tracking.,1998,19,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc19.html#GlimmG0SZZ98,https://doi.org/10.1137/S1064827595293600 +André Massing,Efficient Implementation of Finite Element Methods on Nonmatching and Overlapping Meshes in Three Dimensions.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#MassingLL13,https://doi.org/10.1137/11085949X +Axel Klawonn,Nonlinear FETI-DP and BDDC Methods: A Unified Framework and Parallel Results.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#KlawonnLRU17,https://doi.org/10.1137/16M1102495 +Farbod Roosta-Khorasani,Stochastic Algorithms for Inverse Problems Involving PDEs and many Measurements.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#Roosta-KhorasaniDA14,https://doi.org/10.1137/130922756 +Tony F. Chan,Identification of Discontinuous Coefficients in Elliptic Problems Using Total Variation Regularization.,2003,25,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc25.html#ChanT03,https://doi.org/10.1137/S1064827599326020 +Jessica Bosch,Preconditioning for Vector-Valued Cahn-Hilliard Equations.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#BoschS15,https://doi.org/10.1137/14M0973633 +Francis X. Giraldo,Semi-Implicit Formulations of the Navier--Stokes Equations: Application to Nonhydrostatic Atmospheric Modeling.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#GiraldoRL10,https://doi.org/10.1137/090775889 +Jianwei Ma,Combined Complex Ridgelet Shrinkage and Total Variation Minimization.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#MaF06,https://doi.org/10.1137/05062737X +Quan M. Bui,Algebraic Multigrid Preconditioners for Multiphase Flow in Porous Media.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#BuiEM17,https://doi.org/10.1137/16M1082652 +Linzhang Lu,A Fast Algorithm For Fast Train Palindromic Quadratic Eigenvalue Problems.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#LuWKLL16,https://doi.org/10.1137/16M1063563 +Meghan O'Connell,Computing Reduced Order Models via Inner-Outer Krylov Recycling in Diffuse Optical Tomography.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#OConnellKSG17,https://doi.org/10.1137/16M1062880 +Matthew Elsey,Fast and Accurate Redistancing by Directional Optimization.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#ElseyE14,https://doi.org/10.1137/120889447 +Edward Givelberg,A Weak Formulation of the Immersed Boundary Method.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#Givelberg12,https://doi.org/10.1137/100785181 +Carsten Carstensen,Fully Reliable Localized Error Control in the FEM.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#CarstensenF99,https://doi.org/10.1137/S1064827597327486 +Richard H. Byrd,A Limited Memory Algorithm for Bound Constrained Optimization.,1995,16,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc16.html#ByrdLNZ95,https://doi.org/10.1137/0916069 +Gijs L. Kooij,An Exponential Time Integrator for the Incompressible Navier-Stokes Equation.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#KooijBG18,https://doi.org/10.1137/17M1121950 +Shi Jin,Efficient Stochastic Asymptotic-Preserving Implicit-Explicit Methods for Transport Equations with Diffusive Scalings and Random Inputs.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#JinLP18,https://doi.org/10.1137/17M1120518 +Jacques Baranger,The Aitken-Like Acceleration of the Schwarz Method on Nonuniform Cartesian Grids.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#BarangerGO08,https://doi.org/10.1137/050636607 +Christine Thomas-Agnan,Smoothing Periodic Curves by a Method of Regularization.,1990,11,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc11.html#Thomas-Agnan90,https://doi.org/10.1137/0911027 +éric Gourdin,Global Optimization Decomposition Methods for Bounded Parameter Minimax Risk Evaluation.,1994,15,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc15.html#GourdinJM94,https://doi.org/10.1137/0915002 +Anders Forsgren,Computing Modified Newton Directions Using a Partial Cholesky Factorization.,1995,16,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc16.html#ForsgrenGM95,https://doi.org/10.1137/0916009 +Thilo Penzl,A Cyclic Low-Rank Smith Method for Large Sparse Lyapunov Equations.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#Penzl99,https://doi.org/10.1137/S1064827598347666 +Lei Li,A Simple Parallel Algorithm for Polynomial Evaluation.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#LiHN96,https://doi.org/10.1137/0917018 +Laurent Gosse,Maxwellian Decay for Well-balanced Approximations of a Super-characteristic Chemotaxis Model.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#Gosse12,https://doi.org/10.1137/10081753X +T.-Y. Li,Implementing the Parallel Quasi-Laguerre's Algorithm for Symmetric Tridiagonal Eigenproblems.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#LiZ99a,https://doi.org/10.1137/S1064827596310585 +Chao Yang 0001,An Algebraic Substructuring Method for Large-Scale Eigenvalue Calculation.,2005,27,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc27.html#YangGBLLHN05,https://doi.org/10.1137/040613767 +Jan S. Hesthaven,A Stable Penalty Method for the Compressible Navier-Stokes Equations: III. Multidimensional Domain Decomposition Schemes.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#Hesthaven98,https://doi.org/10.1137/S1064827596299470 +Andrew T. T. McRae,Optimal-Transport-Based Mesh Adaptivity on the Plane and Sphere Using Finite Elements.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#McRaeCB18,https://doi.org/10.1137/16M1109515 +Tomi Huttunen,The Ultra-Weak Variational Formulation for Elastic Wave Problems.,2004,25,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc25.html#HuttunenMCK04,https://doi.org/10.1137/S1064827503422233 +Giuseppe Gambolati,Nested Iterations for Symmetric Eigenproblems.,1995,16,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc16.html#GambolatiPP95,https://doi.org/10.1137/0916012 +Daniel Lowell,Stencil-Aware GPU Optimization of Iterative Solvers.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#LowellGHKCMNSSS13,https://doi.org/10.1137/120883153 +Michael K. Ng,Solving Constrained Total-variation Image Restoration and Reconstruction Problems via Alternating Direction Methods.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#NgWY10,https://doi.org/10.1137/090774823 +Ahmed Naga,Enhancing Eigenvalue Approximation by Gradient Recovery.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#NagaZZ06,https://doi.org/10.1137/050640588 +Eduardo F. D'Azevedo,Are Bilinear Quadrilaterals Better Than Linear Triangles?,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#DAzevedo00,https://doi.org/10.1137/S106482759630406X +Lorenzo Tamellini,Model Reduction Based on Proper Generalized Decomposition for the Stochastic Steady Incompressible Navier-Stokes Equations.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#TamelliniMN14,https://doi.org/10.1137/120878999 +Jesús A. De Loera,A Sampling Kaczmarz-Motzkin Algorithm for Linear Feasibility.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#LoeraHN17,https://doi.org/10.1137/16M1073807 +Ana Alonso Rodríguez,Iterative Methods for the Saddle-Point Problem Arising from the HC/EI Formulation of the Eddy Current Problem.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#RodriguezH09,https://doi.org/10.1137/080722278 +Christoph Lehrenfeld,Nitsche-XFEM with Streamline Diffusion Stabilization for a Two-Phase Mass Transport Problem.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#LehrenfeldR12,https://doi.org/10.1137/110855235 +Guillaume Perrin,Identification of Polynomial Chaos Representations in High Dimension from a Set of Realizations.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#PerrinSDF12,https://doi.org/10.1137/11084950X +M. A. Hansen,Pseudotransient Continuation for Combustion Simulation with Detailed Reaction Mechanisms.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#HansenS16,https://doi.org/10.1137/15M1023166 +Eran Treister,Non-Galerkin Multigrid Based on Sparsified Smoothed Aggregation.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#TreisterY15,https://doi.org/10.1137/140952570 +Christiane Helzel,A High-Order Unstaggered Constrained-Transport Method for the Three-Dimensional Ideal Magnetohydrodynamic Equations Based on the Method of Lines.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#HelzelRT13,https://doi.org/10.1137/120870323 +Peter D. Lax,Solution of Two-Dimensional Riemann Problems of Gas Dynamics by Positive Schemes.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#LaxL98,https://doi.org/10.1137/S1064827595291819 +Richard A. Smith,Semicoarsening Multigrid on a Hypercube.,1992,13,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc13.html#SmithW92,https://doi.org/10.1137/0913074 +Jiaping Yu,Local and Parallel Finite Element Algorithms Based on the Partition of Unity for the Stokes Problem.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#YuSZ14,https://doi.org/10.1137/130925748 +Maria Adela Puscas,A Three-Dimensional Conservative Coupling Method Between an Inviscid Compressible Flow and a Moving Rigid Solid.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#PuscasM15,https://doi.org/10.1137/140962930 +Michael L. Parks,Recycling Krylov Subspaces for Sequences of Linear Systems.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#ParksSMJM06,https://doi.org/10.1137/040607277 +Yvon Maday,Analysis of Iterative Methods for the Steady and Unsteady Stokes Problem: Application to Spectral Element Discretizations.,1993,14,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc14.html#MadayMPR93,https://doi.org/10.1137/0914020 +Vyacheslav Borisov,On Monotonicity of Difference Schemes for Computational Physics.,2004,25,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc25.html#BorisovS04,https://doi.org/10.1137/S1064827502406695 +Elena Virnik,An Algebraic Multigrid Preconditioner for a Class of Singular M-Matrices.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#Virnik07,https://doi.org/10.1137/060659272 +Dante Kalise,Local Minimization Algorithms for Dynamic Programming Equations.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#KaliseKK16,https://doi.org/10.1137/15M1010269 +Francisco José Gaspar,Multigrid Waveform Relaxation for the Time-Fractional Heat Equation.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#GasparR17,https://doi.org/10.1137/16M1090193 +Christian H. Bischof,A Cholesky Up- and Downdating Algorithm for Systolic and SIMD Architectures.,1993,14,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc14.html#BischofPT93,https://doi.org/10.1137/0914042 +Veselin Dobrev,Surface Reconstruction and Image Enhancement via L1-Minimization.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#DobrevGP10,https://doi.org/10.1137/09075408X +Jared Tanner,Normalized Iterative Hard Thresholding for Matrix Completion.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#TannerW13,https://doi.org/10.1137/120876459 +Joel E. Dendy Jr.,Revenge of the Semicoarsening Frequency Decomposition Multigrid Method.,1997,18,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc18.html#Dendy97,https://doi.org/10.1137/S1064827594278095 +Julianne M. Chung,A Framework for Regularization via Operator Approximation.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#ChungKO15,https://doi.org/10.1137/130945363 +Donald J. McGillen,A Particle Scheme Incorporating an Elliptic Approximation for the Relativistic Vlasov-Maxwell System.,1995,16,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc16.html#McGillen95,https://doi.org/10.1137/0916077 +Jerry Markman,An Iterative Algorithm for Solving Hamilton-Jacobi Type Equations.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#MarkmanK00,https://doi.org/10.1137/S1064827598344315 +Johannes Tausch,Equivariant Preconditioners for Boundary Element Methods.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#Tausch96,https://doi.org/10.1137/0917008 +Jed A. Duersch,Randomized QR with Column Pivoting.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#DuerschG17,https://doi.org/10.1137/15M1044680 +Marco Donatelli,On the Regularizing Power of Multigrid-type Algorithms.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#DonatelliC06,https://doi.org/10.1137/040605023 +Donald J. Estep,Computational Error Estimation and Adaptive Error Control for a Finite Element Solution of Launch Vehicle Trajectory Problems.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#EstepHW99,https://doi.org/10.1137/S1064827599337732 +Jianyu Pan,Preconditioning Techniques for Diagonal-*-Toeplitz Matrices in Fractional Diffusion Equations.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#PanKNS14,https://doi.org/10.1137/130931795 +Antonio Cosmin Ionita,Data-Driven Parametrized Model Reduction in the Loewner Framework.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#IonitaA14,https://doi.org/10.1137/130914619 +Edward Givelberg,Distributed Immersed Boundary Simulation in Titanium.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#GivelbergY06,https://doi.org/10.1137/040618734 +Ilse C. F. Ipsen,Solving the Symmetric Tridiagonal Eigenvalue Problem on the Hypercube.,1990,11,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc11.html#IpsenJ90,https://doi.org/10.1137/0911013 +ümit V. çatalyürek,Hypergraph Partitioning-Based Fill-Reducing Ordering for Symmetric Matrices.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#CatalyurekAK11,https://doi.org/10.1137/090757575 +Weimin Han,Discrete-Ordinate Discontinuous Galerkin Methods for Solving the Radiative Transfer Equation.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#HanHE10,https://doi.org/10.1137/090767340 +Simon Tavener,Adjoint Based A Posteriori Analysis of Multiscale Mortar Discretizations with Multinumerics.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#TavenerW13,https://doi.org/10.1137/12089973X +Rommel Bustinza,A Local Discontinuous Galerkin Method for Nonlinear Diffusion Problems with Mixed Boundary Conditions.,2004,26,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc26.html#BustinzaG04,https://doi.org/10.1137/S1064827502419415 +Boris N. Khoromskij,Frequency Filtering for Elliptic Interface Problems with Lagrange Multipliers.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#KhoromskijMW99,https://doi.org/10.1137/S1064827595289832 +T. B. Jönsthövel,On the Use of Rigid Body Modes in the Deflated Preconditioned Conjugate Gradient Method.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#JonsthovelGVS13,https://doi.org/10.1137/100803651 +Lori A. Freitag,A Parallel Algorithm for Mesh Smoothing.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#FreitagJP99,https://doi.org/10.1137/S1064827597323208 +Christian Ketelsen,Least-Squares Finite Element Discretization of the Neutron Transport Equation in Spherical Geometry.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#KetelsenMS15,https://doi.org/10.1137/140975152 +Qing Fan,Performance Issues for Iterative Solvers in Device Simulation.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#FanFMT96,https://doi.org/10.1137/0917009 +George M. Slota,Complex Network Partitioning Using Label Propagation.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#SlotaMR16,https://doi.org/10.1137/15M1026183 +Jin Huang,Extrapolation Algorithms for Solving Mixed Boundary Integral Equations of the Helmholtz Equation by Mechanical Quadrature Methods.,2009,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#HuangW09,https://doi.org/10.1137/080740763 +Daniel Ruprecht,Spectral Deferred Corrections with Fast-wave Slow-wave Splitting.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#RuprechtS16,https://doi.org/10.1137/16M1060078 +Xuejun Zhang,Multilevel Schwarz Methods for the Biharmonic Dirichlet Problem.,1994,15,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc15.html#Zhang94,https://doi.org/10.1137/0915041 +Guang-Shan Jiang,Weighted ENO Schemes for Hamilton-Jacobi Equations.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#JiangP00,https://doi.org/10.1137/S106482759732455X +Stewart J. Anderson,Smoothing Polynomial Splines for Bivariate Data.,1990,11,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc11.html#AndersonJS90,https://doi.org/10.1137/0911044 +M. V. Rakhuba,Fast Multidimensional Convolution in Low-Rank Tensor Formats via Cross Approximation.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#RakhubaO15,https://doi.org/10.1137/140958529 +Hans De Sterck,Least-Squares Finite Element Methods and Algebraic Multigrid Solvers for Linear Hyperbolic PDEs.,2004,26,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc26.html#SterckMMO04,https://doi.org/10.1137/S106482750240858X +Stanley Bak,Some Improvements for the Fast Sweeping Method.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#BakMR10,https://doi.org/10.1137/090749645 +Andreas Stathopoulos,A Block Orthogonalization Procedure with Constant Synchronization Requirements.,2002,23,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc23.html#StathopoulosW02,https://doi.org/10.1137/S1064827500370883 +Elisabeth Larsson,A Domain Decomposition Method for the Helmholtz Equation in a Multilayer Domain.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#Larsson99,https://doi.org/10.1137/S1064827597325323 +Kathrin Hatz,Estimating Parameters in Optimal Control Problems.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#HatzSB12,https://doi.org/10.1137/110823390 +Jonathan P. Whiteley,A Discontinuous Galerkin Finite Element Method for Multiphase Viscous Flow.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#Whiteley15,https://doi.org/10.1137/14098497X +Yu Zhuang,Stabilized Explicit-Implicit Domain Decomposition Methods for the Numerical Solution of Parabolic Equations.,2002,24,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc24.html#ZhuangS02,https://doi.org/10.1137/S1064827501384755 +Diego Ruiz-Antolín,A Nonuniform Fast Fourier Transform Based on Low Rank Approximation.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#Ruiz-AntolinT18,https://doi.org/10.1137/17M1134822 +Martin Huber,Simulation of Diffraction in Periodic Media with a Coupled Finite Element and Plane Wave Approach.,2009,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#HuberSSZ09,https://doi.org/10.1137/070705118 +Faiz A. Al-Khayyal,Solution of Structured Geometric Programs in Sample Survey Design.,1992,13,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc13.html#Al-KhayyalHCDKP92,https://doi.org/10.1137/0913052 +Emmanuel J. Candès,Fast Computation of Fourier Integral Operators.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#CandesDY07,https://doi.org/10.1137/060671139 +Joshua D. Griffin,Asynchronous Parallel Generating Set Search for Linearly Constrained Optimization.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#GriffinKL08,https://doi.org/10.1137/060664161 +Mark H. Carpenter,The Theoretical Accuracy of Runge-Kutta Time Discretizations for the Initial Boundary Value Problem: A Study of the Boundary Error.,1995,16,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc16.html#CarpenterGAD95,https://doi.org/10.1137/0916072 +Jan G. Verwer,An Implicit-Explicit Runge-Kutta-Chebyshev Scheme for Diffusion-Reaction Equations.,2004,25,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc25.html#VerwerS04,https://doi.org/10.1137/S1064827503429168 +Achi Brandt,Multigrid Solution of an Elliptic Boundary-Value Problem with Integral Constraints.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#BrandtIYS99,https://doi.org/10.1137/S1064827597331813 +Y. Wang,Fluctuating Hydrodynamics Methods for Dynamic Coarse-Grained Implicit-Solvent Simulations in LAMMPS.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#WangSA16,https://doi.org/10.1137/15M1026390 +Alexander Kurganov,Central-Upwind Schemes for Two-Layer Shallow Water Equations.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#KurganovP09,https://doi.org/10.1137/080719091 +Vladimir Karlin,"Time-Marching Algorithms for Nonlocal Evolution Equations Based Upon ""Approximate Approximations"".",1997,18,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc18.html#KarlinM97,https://doi.org/10.1137/S1064827594270221 +Jie Chen 0007,Computing f(A)b via Least Squares Polynomial Approximations.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#ChenAS11,https://doi.org/10.1137/090778250 +Wei Cai,Direct Numerical Calculations of a Neutral Stability Curve for One-Dimensional Detonations.,1996,17,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc17.html#CaiOZ96,https://doi.org/10.1137/0917053 +Victorita Dolean,Nonlinear Preconditioning: How to Use a Nonlinear Schwarz Method to Precondition Newton's Method.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#DoleanGKKM16,https://doi.org/10.1137/15M102887X +Romain Aubry,Linear Sources for Mesh Generation.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#AubryKMDL13,https://doi.org/10.1137/120874953 +Mark Ainsworth,A Hierarchical Domain Decomposition Preconditioner for h-P Finite Element Approximation on Locally Refined Meshes.,1996,17,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc17.html#Ainsworth96,https://doi.org/10.1137/S1064827594272578 +Zhong-Zhi Bai,On Preconditioned Iterative Methods for Burgers Equations.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#BaiHN07,https://doi.org/10.1137/060649124 +Jichun Li,Developing Finite Element Methods for Maxwell's Equations in a Cole-Cole Dispersive Medium.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#LiHL11,https://doi.org/10.1137/110827624 +Ahmed Khamayseh,Hybrid Curve Point Distribution Algorithms.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#KhamaysehK02,https://doi.org/10.1137/S1064827500367592 +Jianbing Chen,Improving Point Selection in Cubature by a New Discrepancy.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#ChenZ13,https://doi.org/10.1137/12089377X +Henson Van Emden,Element-Free AMGe: General Algorithms for Computing Interpolation Weights in AMG.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#EmdenV01,https://doi.org/10.1137/S1064827500372997 +Abdou Garba,A Helmholtz-Hodge Projection Method Using an Iterative Gauge Computation to Solve the 3D Generalized Stokes Problem.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#GarbaH13,https://doi.org/10.1137/110860902 +Olivier Dubois 0001,The Optimized Schwarz Method with a Coarse Grid Correction.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#DuboisGLSS12,https://doi.org/10.1137/090774434 +Lars Karlsson,Algorithms for Hessenberg-Triangular Reduction of Fiedler Linearization of Matrix Polynomials.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#KarlssonT15,https://doi.org/10.1137/140970458 +Bernard Bialecki,Spectral Chebyshev Collocation for the Poisson and Biharmonic Equations.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#BialeckiK10,https://doi.org/10.1137/100782516 +Jean-Paul Berrut,The Linear Barycentric Rational Quadrature Method for Volterra Integral Equations.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#BerrutHK14,https://doi.org/10.1137/120904020 +Pedro Gonnet,Efficient and Scalable Algorithms for Smoothed Particle Hydrodynamics on Hybrid Shared/Distributed-Memory Architectures.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#Gonnet15,https://doi.org/10.1137/140964266 +S. V. Dolgov,Fast Solution of Parabolic Problems in the Tensor Train/Quantized Tensor Train Format with Initial Application to the Fokker-Planck Equation.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#DolgovKO12,https://doi.org/10.1137/120864210 +John C. Bowman,Efficient Dealiased Convolutions without Padding.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#BowmanR11,https://doi.org/10.1137/100787933 +Patrick Amestoy,On the Complexity of the Block Low-Rank Multifrontal Factorization.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#AmestoyBLM17,https://doi.org/10.1137/16M1077192 +David A. Kopriva,An Energy Stable Discontinuous Galerkin Spectral Element Discretization for Variable Coefficient Advection Problems.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#KoprivaG14,https://doi.org/10.1137/130928650 +Stefano Zampini,PCBDDC: A Class of Robust Dual-Primal Methods in PETSc.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#Zampini16,https://doi.org/10.1137/15M1025785 +Thomas Strohmer,A Levinson-Galerkin Algorithm for Regularized Trigonometric Approximation.,2000,22,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc22.html#Strohmer00,https://doi.org/10.1137/S1064827597329254 +Guoqiao You,Eulerian Methods for Visualizing Continuous Dynamical Systems using Lyapunov Exponents.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#YouWL17,https://doi.org/10.1137/16M1066890 +Weizhang Huang,The Adaptive Verlet Method.,1997,18,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc18.html#HuangL97,https://doi.org/10.1137/S1064827595284658 +Carsten Carstensen,A Posteriori Finite Element Error Control for the P-Laplace Problem.,2003,25,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc25.html#CarstensenK03,https://doi.org/10.1137/S1064827502416617 +Emmanuel Hanert,A Chebyshev PseudoSpectral Method to Solve the Space-Time Tempered Fractional Diffusion Equation.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#HanertP14,https://doi.org/10.1137/130927292 +Padma Raghavan,Distributed Sparse Gaussian Elimination and Orthogonal Factorization.,1995,16,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc16.html#Raghavan95,https://doi.org/10.1137/0916085 +Axel Klawonn,Block-Triangular Preconditioners for Saddle Point Problems with a Penalty Term.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#Klawonn98,https://doi.org/10.1137/S1064827596303624 +Mark Sussman,A Stable and Efficient Method for Treating Surface Tension in Incompressible Two-Phase Flow.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#SussmanO09,https://doi.org/10.1137/080732122 +Sean Carnaffan,Solving Multidimensional Fractional Fokker-Planck Equations via Unbiased Density Formulas for Anomalous Diffusion Processes.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#CarnaffanK17,https://doi.org/10.1137/17M111482X +Chao Yang 0002,A Fully Implicit Domain Decomposition Algorithm for Shallow Water Equations on the Cubed-Sphere.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#YangCC10,https://doi.org/10.1137/080727348 +Michael A. Heroux,Parallel Segregated Schur Complement Methods for Fluid Density Functional Theories.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#HerouxSF07,https://doi.org/10.1137/060661594 +Richard E. Ewing,A Modified Finite Volume Approximation of Second-Order Elliptic Equations with Discontinuous Coefficients.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#EwingIL01,https://doi.org/10.1137/S1064827599353877 +Arvind K. Saibaba,A Flexible Krylov Solver for Shifted Systems with Application to Oscillatory Hydraulic Tomography.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#SaibabaBK13,https://doi.org/10.1137/120902690 +Stefan Hüeber,Efficient Algorithms for Problems with Friction.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#HueberMW07,https://doi.org/10.1137/050634141 +Bruno Lombard,The Explicit Simplified Interface Method for Compressible Multicomponent Flows.,2005,27,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc27.html#LombardD05,https://doi.org/10.1137/030601041 +Yousef Saad,Distributed Schur Complement Techniques for General Sparse Linear Systems.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#SaadS99,https://doi.org/10.1137/S1064827597328996 +Francisco José Gaspar,Fourier Analysis for Multigrid Methods on Triangular Grids.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#GasparGL09,https://doi.org/10.1137/080713483 +Martin K. Bernauer,Optimal Control of the Classical Two-Phase Stefan Problem in Level Set Formulation.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#BernauerH11,https://doi.org/10.1137/100783327 +Xavier Antoine,Absorbing Boundary Conditions for General Nonlinear Schrödinger Equations.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#AntoineBK11,https://doi.org/10.1137/090780535 +Huazhong Tang,A Class of High Resolution Difference Schemes for Nonlinear Hamilton-Jacobi Equations with Varying Time and Space Grids.,2005,26,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc26.html#TangW05,https://doi.org/10.1137/S1064827503428126 +Michael A. Epton,Multipole Translation Theory for the Three-Dimensional Laplace and Helmholtz Equations.,1995,16,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc16.html#EptonD95,https://doi.org/10.1137/0916051 +Mark Embree,Generalizing Eigenvalue Theorems to Pseudospectra Theorems.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#EmbreeT01,https://doi.org/10.1137/S1064827500373012 +M. Elizabeth G. Ong,Hierarchical Basis Preconditioners in Three Dimensions.,1997,18,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc18.html#Ong97,https://doi.org/10.1137/S1064827594276539 +Leonidas Linardakis,Graded Delaunay Decoupling Method for Parallel Guaranteed Quality Planar Mesh Generation.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#LinardakisC08,https://doi.org/10.1137/060677276 +Jan G. Verwer,Gauss-Seidel Iteration for Stiff ODES from Chemical Kinetics.,1994,15,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc15.html#Verwer94,https://doi.org/10.1137/0915076 +Ioannis K. Dassios,A Preconditioner for A Primal-Dual Newton Conjugate Gradient Method for Compressed Sensing Problems.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#DassiosFG15,https://doi.org/10.1137/141002062 +Christiaan C. Stolk,A Multigrid Method for the Helmholtz Equation with Optimized Coarse Grid Corrections.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#StolkAB14,https://doi.org/10.1137/13092349X +Yeonjong Shin,Nonadaptive Quasi-Optimal Points Selection for Least Squares Linear Regression.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#ShinX16,https://doi.org/10.1137/15M1015868 +Antti H. Niemi,Benchmark Computations of Stresses in a Spherical Dome with Shell Finite Elements.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#Niemi16,https://doi.org/10.1137/15M1027590 +Kab Seok Kang,P1 Nonconforming Finite Element Multigrid Method for Radiation Transport.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#Kang03,https://doi.org/10.1137/S1064827502407354 +Assyr Abdulle,S-ROCK: Chebyshev Methods for Stiff Stochastic Differential Equations.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#AbdulleC08,https://doi.org/10.1137/070679375 +C. Leonard Berman,Grid-Multipole Calculations.,1995,16,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc16.html#Berman95,https://doi.org/10.1137/0916062 +Michael P. Friedlander,Hybrid Deterministic-Stochastic Methods for Data Fitting.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#FriedlanderS12,https://doi.org/10.1137/110830629 +Christophe Gomez,Monte Carlo Methods for Radiative Transfer with Singular Kernels.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#GomezP18,https://doi.org/10.1137/17M1134755 +Eric Dow,Optimization of Gaussian Random Fields.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#DowW15,https://doi.org/10.1137/140992187 +James Baglama,IRBL: An Implicitly Restarted Block-Lanczos Method for Large-Scale Hermitian Eigenproblems.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#BaglamaCR03,https://doi.org/10.1137/S1064827501397949 +Charbel Farhat,An Unconventional Domain Decomposition Method for an Efficient Parallel Solution of Large-Scale Finite Element Systems.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#FarhatR92,https://doi.org/10.1137/0913020 +Robert I. McLachlan,High Order Multisymplectic Runge-Kutta Methods.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#McLachlanRS14,https://doi.org/10.1137/140958050 +Sebastiano Boscarino,Implicit-Explicit Integral Deferred Correction Methods for Stiff Problems.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#BoscarinoQR18,https://doi.org/10.1137/16M1105232 +Peter Bastian,Parallelization of Robust Multigrid Methods: ILU Factorization and Frequency Decomposition Method.,1991,12,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc12.html#BastianH91,https://doi.org/10.1137/0912079 +Axel Klawonn,Nonlinear FETI-DP and BDDC Methods.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#KlawonnLR14,https://doi.org/10.1137/130920563 +Robert Krasny,Fast Evaluation of Multiquadric RBF Sums by a Cartesian Treecode.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#KrasnyW11,https://doi.org/10.1137/090779851 +Panayot S. Vassilevski,Stabilizing the Hierarchical Basis by Approximate Wavelets II: Implementation and Numerical Results.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#VassilevskiW98,https://doi.org/10.1137/S1064827596300668 +Kai Wang,MSP: A Class of Parallel Multistep Successive Sparse Approximate Inverse Preconditioning Strategies.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#Wang003,https://doi.org/10.1137/S1064827502400832 +Guangwei Yuan,A Conservative Domain Decomposition Procedure for Nonlinear Diffusion Problems on Arbitrary Quadrilateral Grids.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#YuanYY11,https://doi.org/10.1137/10081335X +Sergiy Zhuk,On Source-Term Parameter Estimation for Linear Advection-Diffusion Equations with Uncertain Coefficients.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#ZhukTMOS16,https://doi.org/10.1137/15M1034829 +Stefan Engblom,Simulation of Stochastic Reaction-Diffusion Processes on Unstructured Meshes.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#EngblomFHL09,https://doi.org/10.1137/080721388 +Christof Vömel,Divide and Conquer on Hybrid GPU-Accelerated Multicore Systems.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#VomelTD12,https://doi.org/10.1137/100806783 +Stéphane Labbé,Fast Computation for Large Magnetostatic Systems Adapted for Micromagnetism.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#Labbe05,https://doi.org/10.1137/030601053 +Gordon W. Inverarity,Fast Computation of Multidimensional Fourier Integrals.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#Inverarity02,https://doi.org/10.1137/S106482750138647X +Satu Elisa Schaeffer,Scalable Uniform Graph Sampling by Local Computation.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#Schaeffer10,https://doi.org/10.1137/080716086 +Christian Soize,Computational Aspects for Constructing Realizations of Polynomial Chaos in High Dimension.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#SoizeD10,https://doi.org/10.1137/100787830 +Fernando L. Alvarado,Optimal Parallel Solution of Sparse Triangular Systems.,1993,14,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc14.html#AlvaradoS93,https://doi.org/10.1137/0914027 +Mohammad Shakourifar,Reliable Approximate Solution of Systems of Volterra Integro-Differential Equations with Time-Dependent Delays.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#ShakourifarE11,https://doi.org/10.1137/100793098 +Weizhang Huang,Moving Mesh Strategy Based on a Gradient Flow Equation for Two-Dimensional Problems.,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#HuangR98,https://doi.org/10.1137/S1064827596315242 +Troy Butler,A Measure-Theoretic Interpretation of Sample Based Numerical Integration with Applications to Inverse and Prediction Problems under Uncertainty.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#ButlerGMW17,https://doi.org/10.1137/16M1063289 +Cameron Talischi,A Family of H(div) Finite Element Approximations on Polygonal Meshes.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#Talischi15,https://doi.org/10.1137/140979873 +Ali Abdi,The Barycentric Rational Difference-Quadrature Scheme for Systems of Volterra Integro-differential Equations.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#AbdiH18,https://doi.org/10.1137/17M114371X +Friedrich K. Hebeker,An Adaptive Finite Element Method for Unsteady Convection-Dominated Flows with Stiff Source Terms.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#HebekerR99,https://doi.org/10.1137/S1064827597319039 +Ming-Chih Lai,A Fractional Step Immersed Boundary Method for Stokes Flow with an Inextensible Interface Enclosing a Solid Particle.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#LaiHL12,https://doi.org/10.1137/100818777 +Christopher T. H. Baker,Pitfalls in Parameter Estimation for Delay Differential Equations.,1997,18,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc18.html#BakerP97,https://doi.org/10.1137/S1064827595287201 +Zheng Wang,Bayesian Inverse Problems with l1 Priors: A Randomize-Then-Optimize Approach.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#WangBSCM17,https://doi.org/10.1137/16M1080938 +Andreas Potschka,Newton-Picard-Based Preconditioning for Linear-Quadratic Optimization Problems with Time-Periodic Parabolic PDE Constraints.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#PotschkaMSB12,https://doi.org/10.1137/100807776 +Olivier Bokanowski,A Discontinuous Galerkin Solver for Front Propagation.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#BokanowskiCS11,https://doi.org/10.1137/090771909 +Mi-Young Kim,Discontinuous Galerkin Methods for a Model of Population Dynamics with Unbounded Mortality.,2006,27,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc27.html#Kim06,https://doi.org/10.1137/050624182 +Ronnie Wallace,Numerical Solution of a Nonlinear Dissipative System Using a Pseudospectral Method and Inertial Manifolds.,1995,16,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc16.html#WallaceS95,https://doi.org/10.1137/0916060 +Bertil Gustafsson,Time Compact High Order Difference Methods for Wave Propagation.,2004,26,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc26.html#GustafssonM04,https://doi.org/10.1137/030602459 +Herbert Edelsbrunner,An O(n2 log n) Time Algorithm for the Minmax Angle Triangulation.,1992,13,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc13.html#EdelsbrunnerTW92,https://doi.org/10.1137/0913058 +Robert Szalai,Continuation of Bifurcations in Periodic Delay-Differential Equations Using Characteristic Matrices.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#SzalaiSH06,https://doi.org/10.1137/040618709 +Owe Axelsson,The Nested Recursive Two-Level Factorization Method for Nine-Point Difference Matrices.,1991,12,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc12.html#AxelssonE91,https://doi.org/10.1137/0912075 +Guido Ala,The Method of Fundamental Solutions in Solving Coupled Boundary Value Problems for M/EEG.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#AlaFFGM15,https://doi.org/10.1137/13094921X +Bruno Lombard,Numerical modeling of elastic waves across imperfect contacts..,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#LombardP06,https://doi.org/10.1137/05062740X +Matthias Bollhöfer,A Robust and Efficient ILU that Incorporates the Growth of the Inverse Triangular Factors.,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#Bollhofer03,https://doi.org/10.1137/S1064827502403411 +Xuan Zhao,Superconvergence Points of Fractional Spectral Interpolation.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#ZhaoZ16,https://doi.org/10.1137/15M1011172 +Mark Ainsworth,Computing the Bézier Control Points of the Lagrangian Interpolant in Arbitrary Dimension.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#AinsworthS16,https://doi.org/10.1137/15M1046113 +Nicholas Hale,Conformal Maps to Multiply Slit Domains and Applications.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#HaleT09,https://doi.org/10.1137/080738325 +Mark F. Adams,Segmental Refinement: A Multigrid Technique for Data Locality.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#AdamsBKS16,https://doi.org/10.1137/140975127 +S. Candelaresi,Mimetic Methods for Lagrangian Relaxation of Magnetic Fields.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#CandelaresiPH14,https://doi.org/10.1137/140967404 +Jürgen Götze,A Square Root and Division Free Givens Rotation for Solving Least Squares Problems on Systolic Arrays.,1991,12,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc12.html#GotzeS91,https://doi.org/10.1137/0912042 +M. Naumov,AmgX: A Library for GPU Accelerated Algebraic Multigrid and Preconditioned Iterative Methods.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#NaumovACCDELMRS15,https://doi.org/10.1137/140980260 +Claudio Padra,An hp Finite Element Method to Solve a Fluid-Solid Vibration Problem.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#PadraRS12,https://doi.org/10.1137/120868396 +Emmanuel Perrey-Debain,A General Asymptotic Expansion Formula for Integrals Involving High-Order Orthogonal Polynomials.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#Perrey-DebainA09,https://doi.org/10.1137/080736740 +Jie Chen 0007,A Fast Summation Tree Code for Matérn Kernel.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#00070A14,https://doi.org/10.1137/120903002 +Zhuliang Chen,A Semi-Lagrangian Approach for Natural Gas Storage Valuation and Optimal Operation.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#ChenF07,https://doi.org/10.1137/060672911 +Leonard J. Gray,Boundary Integral Evaluation of Surface Derivatives.,2004,26,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc26.html#GrayPK04,https://doi.org/10.1137/S1064827502406002 +Horst D. Simon,How Good is Recursive Bisection?,1997,18,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc18.html#SimonT97,https://doi.org/10.1137/S1064827593255135 +Marie-Hélène Lallemand,Iterative Defect Correction and Multigrid Accelerated Explicit Time Stepping Schemes for the Steady Euler Equations.,1993,14,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc14.html#LallemandK93,https://doi.org/10.1137/0914058 +Daniel R. Reynolds,Operator-Based Preconditioning of Stiff Hyperbolic Systems.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#ReynoldsSW10,https://doi.org/10.1137/080713331 +Per Christian Hansen,The Modified Truncated SVD Method for Regularization in General Form.,1992,13,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc13.html#HansenSS92,https://doi.org/10.1137/0913066 +Weiming Cao,A Study of Monitor Functions for Two-Dimensional Adaptive Mesh Generation.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#CaoHR99,https://doi.org/10.1137/S1064827597327656 +Clive Temperton,Self-Sorting In-Place Fast Fourier Transforms.,1991,12,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc12.html#Temperton91,https://doi.org/10.1137/0912043 +Panos Parpas,A Multilevel Proximal Gradient Algorithm for a Class of Composite Optimization Problems.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#Parpas17,https://doi.org/10.1137/16M1082299 +Pierre-Alain Gremaud,Computational Study of Fast Methods for the Eikonal Equation.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#GremaudK06,https://doi.org/10.1137/040605655 +Emmanuel Gobet,Stratified Regression Monte-Carlo Scheme for Semilinear PDEs and BSDEs with Large Scale Parallelization on GPUs.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#GobetLTV16,https://doi.org/10.1137/16M106371X +Dexuan Xie,A New Block Parallel SOR Method and Its Analysis.,2006,27,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc27.html#Xie06,https://doi.org/10.1137/040604777 +Shengguo Li,An Improved DQDS Algorithm.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#LiGP14,https://doi.org/10.1137/120881087 +S. H. Lui,On Schwarz Alternating Methods for the Incompressible Navier-Stokes Equations.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#Lui01,https://doi.org/10.1137/S1064827598347411 +Leonid Y. Zaslavsky,An Adaptive Algebraic Multigrid for Reactor Criticality Calculations.,1995,16,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc16.html#Zaslavsky95,https://doi.org/10.1137/0916049 +Patrick Amestoy,Improving Multifrontal Methods by Means of Block Low-Rank Representations.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#AmestoyABBLW15,https://doi.org/10.1137/120903476 +Lars Ruthotto,jInv-a Flexible Julia Package for PDE Parameter Estimation.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#RuthottoTH17,https://doi.org/10.1137/16M1081063 +Tim Warburton,A Low-Storage Curvilinear Discontinuous Galerkin Method for Wave Problems.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#Warburton13,https://doi.org/10.1137/120899662 +Mélanie Beck,B-Methods for the Numerical Solution of Evolution Problems with Blow-Up Solutions Part I: Variation of the Constant.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#BeckGK15,https://doi.org/10.1137/15M1011767 +Arne Barinka,Adaptive Wavelet Schemes for Elliptic Problems - Implementation and Numerical Experiments.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#BarinkaBCCDDU01,https://doi.org/10.1137/S1064827599365501 +Graeme Fairweather,The Reformulation and Numerical Solution of Certain Nonclassical Initial-Boundary Value Problems.,1991,12,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc12.html#FairweatherS91,https://doi.org/10.1137/0912007 +Fei Xue,A Block Preconditioned Harmonic Projection Method for Large-Scale Nonlinear Eigenvalue Problems.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#Xue18,https://doi.org/10.1137/17M112141X +Spike T. Lee,Shift-Invert Arnoldi Approximation to the Toeplitz Matrix Exponential.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#LeePS10,https://doi.org/10.1137/090758064 +Patrick E. Farrell,A Framework for the Automation of Generalized Stability Theory.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#FarrellCF14,https://doi.org/10.1137/120900745 +Franco Dassi,A Priori Anisotropic Mesh Adaptation on Implicitly Defined Surfaces.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#DassiPF15,https://doi.org/10.1137/140995246 +Thomas Engels,FluSI: A Novel Parallel Simulation Tool for Flapping Insect Flight Using a Fourier Method with Volume Penalization.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#EngelsKSS16,https://doi.org/10.1137/15M1026006 +Gregory E. Fasshauer,Stable Evaluation of Gaussian Radial Basis Function Interpolants.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#FasshauerM12,https://doi.org/10.1137/110824784 +Debojyoti Ghosh,Compact Reconstruction Schemes with Weighted ENO Limiting for Hyperbolic Conservation Laws.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#GhoshB12,https://doi.org/10.1137/110857659 +Yat Tin Chow,Direct Sampling Method for Diffusive Optical Tomography.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#ChowILZ15,https://doi.org/10.1137/14097519X +Jeanne A. Atwell,Reduced Order Controllers for Spatially Distributed Systems via Proper Orthogonal Decomposition.,2004,26,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc26.html#AtwellK04,https://doi.org/10.1137/S1064827599360091 +Jukka Räbinä,Efficient Time Integration of Maxwell's Equations with Generalized Finite Differences.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#RabinaMR15,https://doi.org/10.1137/140988759 +Boris N. Khoromskij,Numerical Solution of the Hartree - Fock Equation in Multilevel Tensor-Structured Format.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#KhoromskijKF11,https://doi.org/10.1137/090777372 +Kui Du,On Well-Conditioned Spectral Collocation and Spectral Methods by the Integral Reformulation.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#Du16,https://doi.org/10.1137/15M1046629 +Roland W. Freund,A Transpose-Free Quasi-Minimal Residual Algorithm for Non-Hermitian Linear Systems.,1993,14,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc14.html#Freund93,https://doi.org/10.1137/0914029 +Benjamin Peherstorfer,Optimal Model Management for Multifidelity Monte Carlo Estimation.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#PeherstorferWG16,https://doi.org/10.1137/15M1046472 +Gary Ulrich,Positivity Conditions for Quartic Polynomials.,1994,15,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc15.html#UlrichW94,https://doi.org/10.1137/0915035 +Miroslav Kuchta,Preconditioners for Saddle Point Systems with Trace Constraints Coupling 2D and 1D Domains.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#KuchtaNVMM16,https://doi.org/10.1137/15M1052822 +Peter Arbenz,Computing Eigenvalues of Banded Symmetric Toeplitz Matrices.,1991,12,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc12.html#Arbenz91,https://doi.org/10.1137/0912039 +Kapil Ahuja,Recycling BiCG with an Application to Model Reduction.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#AhujaSGC12,https://doi.org/10.1137/100801500 +Frédéric Magoulès,Optimal Discrete Transmission Conditions for a Nonoverlapping Domain Decomposition Method for the Helmholtz Equation.,2004,25,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc25.html#MagoulesRS04,https://doi.org/10.1137/S1064827502415351 +Yongjin Zhang,An Efficient Output Error Estimation for Model Order Reduction of Parametrized Evolution Equations.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#ZhangFLB15,https://doi.org/10.1137/140998603 +Marc I. Gerritsma,Compatible Spectral Approximations for the Velocity-Pressure-Stress Formulation of the Stokes Problem.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#GerritsmaP99,https://doi.org/10.1137/S1064827597324846 +Junfeng Yang,An Efficient TVL1 Algorithm for Deblurring Multichannel Images Corrupted by Impulsive Noise.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#YangZY09,https://doi.org/10.1137/080732894 +Lars König,A Matrix-Free Approach to Parallel and Memory-Efficient Deformable Image Registration.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#KonigRDL18,https://doi.org/10.1137/17M1125522 +Kou-Kung Alex Chang,Mass-Conserving Front Tracking for Miscible Two-Phase Flow.,1997,18,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc18.html#ChangL97,https://doi.org/10.1137/S1064827595289480 +Britta Heubeck,New Finite Elements for Large-Scale Simulation of Optical Waves.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#HeubeckPS08,https://doi.org/10.1137/070692224 +Andreas Stathopoulos,Nearly Optimal Preconditioned Methods for Hermitian Eigenproblems Under Limited Memory. Part II: Seeking Many Eigenvalues.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#StathopoulosM07,https://doi.org/10.1137/060661910 +Kenneth Duru,Stable and High-Order Accurate Boundary Treatments for the Elastic Wave Equation on Second-Order Form.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#DuruKM14,https://doi.org/10.1137/130947210 +Paul G. Constantine,Residual Minimizing Model Interpolation for Parameterized Nonlinear Dynamical Systems.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#ConstantineW12,https://doi.org/10.1137/100816717 +Axel Ruhe,Rational Krylov: A Practical Algorithm for Large Sparse Nonsymmetric Matrix Pencils.,1998,19,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc19.html#Ruhe98,https://doi.org/10.1137/S1064827595285597 +Maxence Reberol,Computing the Distance between Two Finite Element Solutions Defined on Different 3D Meshes on a GPU.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#ReberolL18,https://doi.org/10.1137/17M1115976 +Zhiqiang Cai,A Multigrid Method for the Pseudostress Formulation of Stokes Problems.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#CaiW07,https://doi.org/10.1137/060661429 +Fergus R. Cooper,Numerical Analysis of the Immersed Boundary Method for Cell-Based Simulation.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#CooperBF17,https://doi.org/10.1137/16M1092246 +Scott MacLachlan,Greedy Coarsening Strategies for Nonsymmetric Problems.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#MacLachlanS07a,https://doi.org/10.1137/060660928 +Kadir Akbudak,Hypergraph Partitioning Based Models and Methods for Exploiting Cache Locality in Sparse Matrix-Vector Multiplication.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#AkbudakKA13,https://doi.org/10.1137/100813956 +Len G. Margolin,Antidiffusive Velocities for Multipass Donor Cell Advection.,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#MargolinS98,https://doi.org/10.1137/S106482759324700X +Jeff Borggaard,On Efficient Solutions to the Continuous Sensitivity Equation Using Automatic Differentiation.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#BorggaardV00,https://doi.org/10.1137/S1064827599352136 +C. Robert Pinnegar,The Bi-Gaussian S-Transform.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#PinnegarM03,https://doi.org/10.1137/S1064827500369803 +Tyson Brochu,Robust Topological Operations for Dynamic Explicit Surfaces.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#BrochuB09,https://doi.org/10.1137/080737617 +Luc Devroye,Algorithms for Generating Discrete Random Variables with a Given Generating Function or a Given Moment Sequence.,1991,12,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc12.html#Devroye91,https://doi.org/10.1137/0912006 +Ana-Maria Matache,Fast Numerical Solution of Parabolic Integrodifferential Equations with Applications in Finance.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#MatacheSW05,https://doi.org/10.1137/030602617 +Stefan Aeberhard,New Fast Algorithms for Error Rate-Based Stepwise Variable Selection in Discriminant Analysis.,2000,22,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc22.html#AeberhardVC00,https://doi.org/10.1137/S1064827596300784 +Adam B. Singer,Bounding the Solutions of Parameter Dependent Nonlinear Ordinary Differential Equations.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#SingerB06,https://doi.org/10.1137/040604388 +Todd D. Plantenga,A Trust Region Method for Nonlinear Programming Based on Primal Interior-Point Techniques.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#Plantenga98,https://doi.org/10.1137/S1064827595284403 +Joseph M. Teran,Tether Force Constraints in Stokes Flow by the Immersed Boundary Method on a Periodic Domain.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#TeranP09,https://doi.org/10.1137/080720217 +Johannes Semmler,Material Optimization in Transverse Electromagnetic Scattering Applications.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#SemmlerPS18,https://doi.org/10.1137/17M1127569 +Graham W. Alldredge,High-Order Entropy-Based Closures for Linear Transport in Slab Geometry II: A Computational Study of the Optimization Problem.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#AlldredgeHT12,https://doi.org/10.1137/11084772X +Cory D. Hauck,Positive PN Closures.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#HauckM10,https://doi.org/10.1137/090764918 +Mihaela Negreanu,Wavelet Filtering for Exact Controllability of the Wave Equation.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#NegreanuMS06,https://doi.org/10.1137/050622894 +Nguyen Trung Thành,Reconstruction of the Refractive Index from Experimental Backscattering Data Using a Globally Convergent Inverse Method.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#ThanhBKF14,https://doi.org/10.1137/130924962 +Ernesto E. Prudencio,Parallel Multilevel Restricted Schwarz Preconditioners with Pollution Removing for PDE-Constrained Optimization.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#PrudencioC07,https://doi.org/10.1137/050635663 +Claude Manté,The Use of Regularization Methods in Computing Radon-Nikodým Derivatives. Application to Grain-Size Distributions.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#Mante99,https://doi.org/10.1137/S1064827597319374 +John Harlim,Interpolating Irregularly Spaced Observations for Filtering Turbulent Complex Systems.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#Harlim11,https://doi.org/10.1137/100800427 +R. C. Cabrales,A Time-Splitting Finite-Element Stable Approximation for the Ericksen-Leslie Equations.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#CabralesGG15,https://doi.org/10.1137/140960979 +Randall J. LeVeque,One-Dimensional Front Tracking Based on High Resolution Wave Propagation Methods.,1995,16,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc16.html#LeVequeS95,https://doi.org/10.1137/0916023 +Stefan Hüeber,A Primal-Dual Active Set Algorithm for Three-Dimensional Contact Problems with Coulomb Friction.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#HueberSW08,https://doi.org/10.1137/060671061 +G. Migliorati,Approximation of Quantities of Interest in Stochastic PDEs by the Random Discrete L2 Projection on Polynomial Spaces.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#MiglioratiNST13,https://doi.org/10.1137/120897109 +Yves Nievergelt,Extensions of Priest's Double-Precision Summation.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#Nievergelt06,https://doi.org/10.1137/040617005 +Willi Jäger,Asymptotic Analysis of the Laminar Viscous Flow Over a Porous Bed.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#JagerMN01,https://doi.org/10.1137/S1064827599360339 +H. V. R. Mittal,Solving Immersed Interface Problems Using a New Interfacial Points-Based Finite Difference Approach.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#MittalR18,https://doi.org/10.1137/16M1106006 +Qingyuan Liu,Discontinuous Galerkin Methods for Weakly Coupled Hyperbolic MultiDomain Problems.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#LiuSZ17,https://doi.org/10.1137/16M1089332 +Zhongqiang Zhang,A Multistage Wiener Chaos Expansion Method for Stochastic Advection-Diffusion-Reaction Equations.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#ZhangRTK12,https://doi.org/10.1137/110849572 +Jayadeep Gopalakrishnan,Mapped Tent Pitching Schemes for Hyperbolic Systems.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#GopalakrishnanS17,https://doi.org/10.1137/16M1101374 +Amir Averbuch,Direct Inversion of the Three-Dimensional Pseudo-polar Fourier Transform.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#AverbuchSS16,https://doi.org/10.1137/15M1031916 +Thomas Dickopf,Design and Analysis of a Lightweight Parallel Adaptive Scheme for the Solution of the Monodomain Equation.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#DickopfKKP14,https://doi.org/10.1137/130912505 +Paul G. Constantine,Accelerating Markov Chain Monte Carlo with Active Subspaces.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#ConstantineKB16,https://doi.org/10.1137/15M1042127 +Florent Chave,A Hybrid High-Order Method for Darcy Flows in Fractured Porous Media.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#ChavePF18,https://doi.org/10.1137/17M1119500 +Carsten Carstensen,Adaptive Finite Elements for Elastic Bodies in Contact.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#CarstensenSW99,https://doi.org/10.1137/S1064827595295350 +Jie Shen 0001,Efficient Spectral-Galerkin Methods IV. Spherical Geometries.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#Shen99,https://doi.org/10.1137/S1064827597317028 +Bruce Hendrickson,Toward an Efficient Parallel Eigensolver for Dense Symmetric Matrices.,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#HendricksonJS98,https://doi.org/10.1137/S1064827596300681 +Peter N. Brown,A Theoretical Comparison of the Arnoldi and GMRES Algorithms.,1991,12,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc12.html#Brown91,https://doi.org/10.1137/0912003 +Michael D. Marcozzi,On the Valuation of Asian Options by Variational Methods.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#Marcozzi03,https://doi.org/10.1137/S1064827501388169 +Steinar Evje,Weakly Implicit Numerical Schemes for a Two-Fluid Model.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#EvjeF05,https://doi.org/10.1137/030600631 +Kossi D. Edoh,Numerical Approximation of Rough Invariant Curves of Planar Maps.,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#EdohL03,https://doi.org/10.1137/S106482750241373X +N. B. Petrovskaya,On Oscillations in Discontinuous Galerkin Discretization Schemes for Steady State Problems.,2006,27,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc27.html#Petrovskaya06,https://doi.org/10.1137/040603085 +Markus Brunk,Numerical Coupling of Electric Circuit Equations and Energy-Transport Models for Semiconductors.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#BrunkJ08,https://doi.org/10.1137/070681430 +Jing-Rebecca Li,High Order Accurate Methods for the Evaluation of Layer Heat Potentials.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#LiG09,https://doi.org/10.1137/080732389 +Michele Benzi,Special Section: 2016 Copper Mountain Conference.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#Benzi17,https://doi.org/10.1137/15N974416 +John A. Mackenzie,A Discontinuous Galerkin Moving Mesh Method for Hamilton-Jacobi Equations.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#MackenzieN07,https://doi.org/10.1137/060656243 +Marta Benítez,Second-Order Pure Lagrange-Galerkin Methods for Fluid-Structure Interaction Problems.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#BenitezB15,https://doi.org/10.1137/141001081 +Thomas A. Manteuffel,Special Issue on Iterative Methods in Numerical Linear Algebra.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#ManteuffelP92,https://doi.org/10.1137/0913intro1 +Yong-Tao Zhang,Uniformly Accurate Discontinuous Galerkin Fast Sweeping Methods for Eikonal Equations.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#ZhangCLZS11,https://doi.org/10.1137/090770291 +Ignace Bogaert,Iteration-Free Computation of Gauss-Legendre Quadrature Nodes and Weights.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#Bogaert14,https://doi.org/10.1137/140954969 +Hyun-Cheol Hwang,An Internal Structure Dependent Riemann Solver for Regularization-Sensitive Shock Waves and Its Application to Front Tracking.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#Hwang07,https://doi.org/10.1137/040621715 +Martin Tillenius,SuperGlue: A Shared Memory Framework Using Data Versioning for Dependency-Aware Task-Based Parallelization.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#Tillenius15,https://doi.org/10.1137/140989716 +Adam W. Bojanczyk,The Procrustes Problem for Orthogonal Kronecker Products.,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#BojanczykL03,https://doi.org/10.1137/S1064827501396464 +Uri M. Ascher,Stability of Computational Methods for Constrained Dynamics Systems.,1993,14,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc14.html#AscherP93,https://doi.org/10.1137/0914007 +Y. Sudhakar,On the Use of Compressed Polyhedral Quadrature Formulas in Embedded Interface Methods.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#SudhakarSVW17,https://doi.org/10.1137/16M1085206 +Jonas Ballani,Tree Adaptive Approximation in the Hierarchical Tensor Format.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#BallaniG14,https://doi.org/10.1137/130926328 +Delyan Kalchev,Upscaling of Mixed Finite Element Discretization Problems by the Spectral AMGe Method.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#KalchevLVEV16,https://doi.org/10.1137/15M1036683 +Bruno Carpentieri,The BiCOR and CORS Iterative Algorithms for Solving Nonsymmetric Linear Systems.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#CarpentieriJH11,https://doi.org/10.1137/100794031 +R. Baker Kearfott,Empirical Evaluation of Innovations in Interval Branch and Bound Algorithms for Nonlinear Systems.,1997,18,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc18.html#Kearfott97,https://doi.org/10.1137/S1064827594266131 +Silvia Gazzola,Generalized Arnoldi-Tikhonov Method for Sparse Reconstruction.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#GazzolaN14,https://doi.org/10.1137/130917673 +Jennifer Scott,On Using Cholesky-Based Factorizations and Regularization for Solving Rank-Deficient Sparse Linear Least-Squares Problems.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#Scott17,https://doi.org/10.1137/16M1065380 +Mark T. Jones,Parallel Algorithms for Adaptive Mesh Refinement.,1997,18,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc18.html#JonesP97,https://doi.org/10.1137/S106482759528065X +Bruce Hendrickson,An Improved Spectral Graph Partitioning Algorithm for Mapping Parallel Computations.,1995,16,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc16.html#HendricksonL95,https://doi.org/10.1137/0916028 +John T. Betts,Convergence of Nonconvergent IRK Discretizations of Optimal Control Problems with State Inequality Constraints.,2002,23,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc23.html#BettsBC02,https://doi.org/10.1137/S1064827500383044 +Michael Hagemann,Weighted Matchings for Preconditioning Symmetric Indefinite Linear Systems.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#HagemannS06,https://doi.org/10.1137/040615614 +Alyson Fox,Numerical Methods for Gremban's Expansion of Signed Graphs.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#FoxMS17,https://doi.org/10.1137/16M1082433 +Andreas Kleefeld,A Global Galerkin Method for Solving the Exterior Neumann Problem for the Helmholtz Equation Using Panich's Integral Equation Approach.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#KleefeldL13,https://doi.org/10.1137/120873066 +Johan Helsing,A Fast and Stable Solver for Singular Integral Equations on Piecewise Smooth Curves.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#Helsing11,https://doi.org/10.1137/090779218 +Carlo Janna,A Block FSAI-ILU Parallel Preconditioner for Symmetric Positive Definite Linear Systems.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#JannaFG10,https://doi.org/10.1137/090779760 +Todd S. Coffey,Pseudotransient Continuation and Differential-Algebraic Equations.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#CoffeyKK03,https://doi.org/10.1137/S106482750241044X +Jun Lai,A Fast Direct Solver for High Frequency Scattering from a Large Cavity in Two Dimensions.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#LaiAG14,https://doi.org/10.1137/140964904 +Achiya Dax,On Row Relaxation Methods for Large Constrained Least Squares Problems.,1993,14,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc14.html#Dax93,https://doi.org/10.1137/0914036 +Mario Arioli,Stopping Criteria for Adaptive Finite Element Solvers.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#ArioliGL13,https://doi.org/10.1137/120867421 +Ole Løseth Elvetun,PDE-Constrained Optimization with Local Control and Boundary Observations: Robust Preconditioners.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#ElvetunN16,https://doi.org/10.1137/140999098 +Patrick R. Conrad,Adaptive Smolyak Pseudospectral Approximations.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#ConradM13,https://doi.org/10.1137/120890715 +Joel Franklin,Analytic Continuation by the Fast Fourier Transform.,1990,11,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc11.html#Franklin90,https://doi.org/10.1137/0911007 +Semyon Tsynkov,External Boundary Conditions for Three-Dimensional Problems of Computational Aerodynamics.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#Tsynkov99,https://doi.org/10.1137/S1064827597318757 +Jason E. Hicken,Superconvergent Functional Estimates from Summation-By-Parts Finite-Difference Discretizations.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#HickenZ11,https://doi.org/10.1137/100790987 +Matthias Bollhöfer,Multilevel Preconditioners Constructed From Inverse-Based ILUs.,2006,27,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc27.html#BollhoferS06,https://doi.org/10.1137/040608374 +Laura Homa,Bayesian Preconditioned CGLS for Source Separation in MEG Time Series.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#HomaCHS13,https://doi.org/10.1137/120889903 +Edmond Chow,A Priori Sparsity Patterns for Parallel Sparse Approximate Inverse Preconditioners.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#Chow00,https://doi.org/10.1137/S106482759833913X +Dana A. Knoll,On Preconditioning Newton-Krylov Methods in Solidifying Flow Applications.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#KnollVMK01,https://doi.org/10.1137/S1064827500374303 +Joel H. Saltz,Aggregation Methods for Solving Sparse Triangular Systems on Multiprocessors.,1990,11,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc11.html#Saltz90,https://doi.org/10.1137/0911008 +Emmanuil H. Georgoulis,Discontinuous Galerkin Methods for Advection-Diffusion-Reaction Problems on Anisotropically Refined Meshes.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#GeorgoulisHH07,https://doi.org/10.1137/060672352 +Sheng-Gwo Chen,Discrete Conservation Laws on Curved Surfaces II: A Dual Approach.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#ChenW14,https://doi.org/10.1137/130921805 +Douglas N. Arnold,Locally Adapted Tetrahedral Meshes Using Bisection.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#ArnoldMP00,https://doi.org/10.1137/S1064827597323373 +S.-L. Chang,Liapunov-Schmidt Reduction and Continuation for Nonlinear Schrödinger Equations.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#ChangCJ07,https://doi.org/10.1137/050642861 +Wouter Tierens,Unification of Leapfrog and Crank-Nicolson Finite Difference Time Domain Methods.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#Tierens18,https://doi.org/10.1137/16M1079634 +Min Zhou,Controlling Unstructured Mesh Partitions for Massively Parallel Simulations.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#ZhouSDSJ10,https://doi.org/10.1137/090777323 +Russ Wolfinger,Computing Gaussian Likelihoods and Their Derivatives for General Linear Mixed Models.,1994,15,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc15.html#WolfingerTS94,https://doi.org/10.1137/0915079 +Assyr Abdulle,Weak Second Order Explicit Stabilized Methods for Stiff Stochastic Differential Equations.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#AbdulleVZ13,https://doi.org/10.1137/12088954X +Dimitris J. Kavvadias,Locating and Computing All the Simple Roots and Extrema of a Function.,1996,17,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc17.html#KavvadiasV96,https://doi.org/10.1137/S1064827594265666 +Ning Wang,An Efficient Search Algorithm for Minimum Covering Polygons on the Sphere.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#Wang13,https://doi.org/10.1137/120880331 +Marcel Bieri,Sparse Tensor Discretization of Elliptic sPDEs.,2009,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#BieriAS09,https://doi.org/10.1137/090749256 +Matthias Petschow,High-Performance Solvers for Dense Hermitian Eigenproblems.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#PetschowPB13,https://doi.org/10.1137/110848803 +Lisa J. Larsson,An Iterative Algorithm for Computing Measures of Generalized Voronoi Regions.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#LarssonCN14,https://doi.org/10.1137/130935598 +R. Kissmann,A Semidiscrete Finite Volume Constrained Transport Method on Orthogonal Curvilinear Grids.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#KissmannP12,https://doi.org/10.1137/110834329 +Amanda Bienz,Reducing Parallel Communication in Algebraic Multigrid through Sparsification.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#BienzFGOS16,https://doi.org/10.1137/15M1026341 +George Karypis,A Fast and High Quality Multilevel Scheme for Partitioning Irregular Graphs.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#KarypisK98,https://doi.org/10.1137/S1064827595287997 +Michele Benzi,Orderings for Incomplete Factorization Preconditioning of Nonsymmetric Problems.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#BenziSD99,https://doi.org/10.1137/S1064827597326845 +John Greenstadt,Solution of Elliptic Systems of Partial Differential Equations by Cell Discretization.,1993,14,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc14.html#Greenstadt93,https://doi.org/10.1137/0914040 +Navid Rahimi,CAD Model Simplification Error Estimation for Electrostatics Problems.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#RahimiKLM18,https://doi.org/10.1137/16M1078641 +Alfio Borzì,Multigrid Methods and Sparse-Grid Collocation Techniques for Parabolic Optimal Control Problems with Random Coefficients.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#BorziW09,https://doi.org/10.1137/070711311 +Manuel Calvo,On the Preservation of Invariants by Explicit Runge-Kutta Methods.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#CalvoHMR06,https://doi.org/10.1137/04061979X +Tommaso Taddei,A Localization Strategy for Data Assimilation* Application to State Estimation and Parameter Estimation.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#TaddeiP18,https://doi.org/10.1137/17M1116830 +James H. Lai,Algebraic Multigrid for High-Order Hierarchical H(curl) Finite Elements.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#LaiO11,https://doi.org/10.1137/100799095 +Richard A. Redner,Convergence Rates for Uniform B-Spline Density Estimators Part I: One Dimension.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#Redner99,https://doi.org/10.1137/S1064827595291996 +Nicholas J. Higham,Experience with a Matrix Norm Estimator.,1990,11,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc11.html#Higham90,https://doi.org/10.1137/0911047 +Ruth M. Holland,Sparse Approximate Inverses and Target Matrices.,2005,26,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc26.html#HollandWS05,https://doi.org/10.1137/030601132 +Michèle De La Chevrotière,Calibration of the Stochastic Multicloud Model Using Bayesian Inference.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#ChevrotiereKM14,https://doi.org/10.1137/13094267X +James Bremer,On the Numerical Calculation of the Roots of Special Functions Satisfying Second Order Ordinary Differential Equations.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#Bremer17,https://doi.org/10.1137/16M1057139 +Jack Lee,Multiphysics Computational Modeling in CHeart.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#LeeCRKAVSDMSN16,https://doi.org/10.1137/15M1014097 +Joel E. Dendy Jr.,A Semicoarsening Multigrid Algorithm for SIMD Machines.,1992,13,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc13.html#DendyIR92,https://doi.org/10.1137/0913082 +Nils Henrik Risebro,Front Tracking Applied to a Nonstrictly Hyperbolic System of Conservation Laws.,1991,12,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc12.html#RisebroT91,https://doi.org/10.1137/0912076 +Jobst Heitzig,Moving Taylor Bayesian Regression for Nonparametric Multidimensional Function Estimation with Possibly Correlated Errors.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#Heitzig13,https://doi.org/10.1137/12087846X +Bruno Carpentieri,A Class of Spectral Two-Level Preconditioners.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#CarpentieriDG03,https://doi.org/10.1137/S1064827502408591 +Matthew J. Reynolds,Randomized Alternating Least Squares for Canonical Tensor Decompositions: Application to A PDE With Random Data.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#ReynoldsDB16,https://doi.org/10.1137/15M1042802 +Thomas K. DeLillo,Numerical Conformal Mapping Methods for Simply and Doubly Connected Regions.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#DeLilloP98,https://doi.org/10.1137/S1064827596303545 +Jan S. Hesthaven,Stable Spectral Methods on Tetrahedral Elements.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#HesthavenT00,https://doi.org/10.1137/S1064827598343723 +Ivan V. Oseledets,Solution of Linear Systems and Matrix Inversion in the TT-Format.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#OseledetsD12,https://doi.org/10.1137/110833142 +Soumyendu Raha,Constraint Partitioning for Stability in Path-Constrained Dynamic Optimization Problems.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#RahaP01,https://doi.org/10.1137/S1064827500372390 +William F. Trench,Numerical Solution of the Inverse Eigenvalue Problem for Real Symmetric Toeplitz Matrices.,1997,18,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc18.html#Trench97,https://doi.org/10.1137/S1064827595280673 +Emmanuel Audusse,A Fast and Stable Well-Balanced Scheme with Hydrostatic Reconstruction for Shallow Water Flows.,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#AudusseBBKP04,https://doi.org/10.1137/S1064827503431090 +Gudmundur F. Adalsteinsson,Compressive Sampling for Energy Spectrum Estimation of Turbulent Flows.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#AdalsteinssonK15,https://doi.org/10.1137/140966216 +G. Alistair Watson,Robust Solutions to a General Class of Approximation Problems.,2004,25,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc25.html#Watson04,https://doi.org/10.1137/S1064827502412498 +Johannes K. Kraus,Multilevel Preconditioning of Two-dimensional Elliptic Problems Discretized by a Class of Discontinuous Galerkin Methods.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#KrausT08,https://doi.org/10.1137/060667372 +Angelika Bunse-Gerstner,On the Generalized Schur Decomposition of a Matrix Pencil for Parallel Computation.,1991,12,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc12.html#Bunse-GerstnerF91,https://doi.org/10.1137/0912049 +Jennifer M. Deang,Issues Related to Least-Squares Finite Element Methods for the Stokes Equations.,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#DeangG98,https://doi.org/10.1137/S1064827595294526 +Yeonjong Shin,A Randomized Algorithm for Multivariate Function Approximation.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#ShinX17,https://doi.org/10.1137/16M1075193 +Zhonghua Qiao,An Adaptive Time-Stepping Strategy for the Molecular Beam Epitaxy Models.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#QiaoZT11,https://doi.org/10.1137/100812781 +Esmond G. Ng,Block Sparse Cholesky Algorithms on Advanced Uniprocessor Computers.,1993,14,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc14.html#NgP93a,https://doi.org/10.1137/0914063 +Donald Goldfarb,Second-order Cone Programming Methods for Total Variation-Based Image Restoration.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#GoldfarbY05,https://doi.org/10.1137/040608982 +Bruno Lang,A Parallel Algorithm for Reducing Symmetric Banded Matrices to Tridiagonal Form.,1993,14,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc14.html#Lang93,https://doi.org/10.1137/0914078 +Ebrahim M. Kasenally,GMBACK: A Generalised Minimum Backward Error Algorithm for Nonsymmetric Linear Systems.,1995,16,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc16.html#Kasenally95,https://doi.org/10.1137/0916042 +Ionut-Gabriel Farcas,Nonintrusive Uncertainty Analysis of Fluid-Structure Interaction with Spatially Adaptive Sparse Grids and Polynomial Chaos Expansion.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#FarcasUNB18,https://doi.org/10.1137/16M1093975 +Greg Henry,Parallelizing the QR Algorithm for the Unsymmetric Algebraic Eigenvalue Problem: Myths and Reality.,1996,17,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc17.html#HenryG96,https://doi.org/10.1137/0917056 +Scott MacLachlan,Robust Solution of Singularly Perturbed Problems Using Multigrid Methods.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#MacLachlanM13,https://doi.org/10.1137/120889770 +Edward Rothberg,Performance of Panel and Block Approaches to Sparse Cholesky Factorization on the iPSC/860 and Paragon Multicomputers.,1996,17,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc17.html#Rothberg96,https://doi.org/10.1137/S106482759426715X +G. N. Milstein,Numerical Algorithms for Forward-Backward Stochastic Differential Equations.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#MilsteinT06,https://doi.org/10.1137/040614426 +Hasan Metin Aktulga,Reactive Molecular Dynamics: Numerical Methods and Algorithmic Techniques.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#AktulgaPDG12,https://doi.org/10.1137/100808599 +Stefano Serra Capizzano,A Note on Antireflective Boundary Conditions and Fast Deblurring Models.,2004,25,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc25.html#Capizzano04,https://doi.org/10.1137/S1064827502410244 +Claudio Canuto,Finite-Element Preconditioning of G-NI Spectral Methods.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#CanutoGQ10,https://doi.org/10.1137/090746367 +Gunar Matthies,A Multigrid Method for Incompressible Flow Problems Using Quasi Divergence Free Functions.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#MatthiesS06,https://doi.org/10.1137/04061814X +Jeff R. Cash,A Deferred Correction Method for Nonlinear Two-Point Boundary Value Problems: Implementation and Numerical Evaluation.,1991,12,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc12.html#CashW91,https://doi.org/10.1137/0912052 +Tzanio V. Kolev,Parallel Auxiliary Space AMG Solver for H(div) Problems.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#KolevV12,https://doi.org/10.1137/110859361 +Bernard Bialecki,Preconditioned Richardson and Minimal Residual Iterative Methods for Piecewise Hermite Bicubic Orthogonal Spline Collocation Equations.,1994,15,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc15.html#Bialecki94,https://doi.org/10.1137/0915043 +Daryl M. Kempthorne,A Comparison of Techniques for the Reconstruction of Leaf Surfaces from Scanned Data.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#KempthorneTB14,https://doi.org/10.1137/130938761 +Daniel Beylkin,Fitting a Bandlimited Curve to Points in a Plane.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#BeylkinR14,https://doi.org/10.1137/130932703 +Vedran Novakovic,A Hierarchically Blocked Jacobi SVD Algorithm for Single and Multiple Graphics Processing Units.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#Novakovic15,https://doi.org/10.1137/140952429 +Kalvis M. Jansons,Multidimensional Exponential Timestepping with Boundary Test.,2005,27,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc27.html#JansonsL05,https://doi.org/10.1137/040612865 +Carsten Burstedde,A Tetrahedral Space-Filling Curve for Nonconforming Adaptive Meshes.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#BursteddeH16,https://doi.org/10.1137/15M1040049 +Daniel B. Szyld,FQMR: A Flexible Quasi-Minimal Residual Method with Inexact Preconditioning.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#SzyldV01,https://doi.org/10.1137/S106482750037336X +Sirpa Saarinen,Ill-Conditioning in Neural Network Training Problems.,1993,14,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc14.html#SaarinenBC93,https://doi.org/10.1137/0914044 +Michail M. Konstantinov,Perturbation Analysis of Matrix Quadratic Equations.,1990,11,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc11.html#KonstantinovPC90,https://doi.org/10.1137/0911065 +Emmanuel Agullo,Task-Based FMM for Multicore Architectures.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#AgulloBCDMT14,https://doi.org/10.1137/130915662 +Drew P. Kouri,A Trust-Region Algorithm with Adaptive Stochastic Collocation for PDE Optimization under Uncertainty.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#KouriHRW13,https://doi.org/10.1137/120892362 +David A. Kay,Adaptive Time-Stepping for Incompressible Flow Part II: Navier--Stokes Equations.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#KayGGS10,https://doi.org/10.1137/080728032 +Lourenço Beirão da Veiga,Isogeometric BDDC Preconditioners with Deluxe Scaling.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#VeigaPSWZ14,https://doi.org/10.1137/130917399 +M. Garbey,Acceleration of the Schwarz Method for Elliptic Problems.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#Garbey05,https://doi.org/10.1137/S1064827502416344 +Eran Treister,A Multilevel Framework for Sparse Optimization with Application to Inverse Covariance Estimation and Logistic Regression.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#TreisterTY16,https://doi.org/10.1137/15M102469X +Annie A. M. Cuyt,Efficient and Reliable Multiprecision Implementation of Elementary and Special Functions.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#CuytVW06,https://doi.org/10.1137/050629203 +Joan Baiges,Refficientlib: An Efficient Load-Rebalanced Adaptive Mesh Refinement Algorithm for High-Performance Computational Physics Meshes.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#BaigesB17,https://doi.org/10.1137/15M105330X +Ion Victor Gosea,Data-Driven Model Order Reduction of Linear Switched Systems in the Loewner Framework.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#GoseaPA18,https://doi.org/10.1137/17M1120233 +David L. Chopp,Some Improvements of the Fast Marching Method.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#Chopp01,https://doi.org/10.1137/S106482750037617X +Thomas Hagstrom,High-Order Radiation Boundary Conditions for the Convective Wave Equation in Exterior Domains.,2003,25,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc25.html#HagstromHT03,https://doi.org/10.1137/S1064827502419695 +Hongyi Yu,A Local Space-Time Adaptive Scheme in Solving Two-Dimensional Parabolic Problems Based on Domain Decomposition Methods.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#Yu01,https://doi.org/10.1137/S1064827500315360 +Arnold D. Kim,Chebyshev Spectral Methods for Radiative Transfer.,2002,23,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc23.html#KimM02,https://doi.org/10.1137/S1064827500382312 +Bernard Bialecki,Optimal Superconvergent One Step Nodal Cubic Spline Collocation Methods.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#BialeckiFK05,https://doi.org/10.1137/040609793 +David Amsallem,Energy Stable Model Reduction of Neurons by Nonnegative Discrete Empirical Interpolation.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#AmsallemN16,https://doi.org/10.1137/15M1013870 +Zhiming Gao,A Second-Order Positivity-Preserving Finite Volume Scheme for Diffusion Equations on General Meshes.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#GaoW15,https://doi.org/10.1137/140972470 +Luc Giraud,Flexible GMRES with Deflated Restarting.,2010,32,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc32.html#GiraudGPV10,https://doi.org/10.1137/080741847 +Nela Bosner,Parallel and Heterogeneous m-Hessenberg-Triangular-Triangular Reduction.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#BosnerK17,https://doi.org/10.1137/15M1047349 +Takeshi Iwashita,Comparison Criteria for Parallel Orderings in ILU Preconditioning.,2005,26,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc26.html#IwashitaNS05,https://doi.org/10.1137/03060076X +Gregery T. Buzzard,Sharp Interface and Voltage Conservation in the Phase Field Method: Application to Cardiac Electrophysiology.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#BuzzardFS08,https://doi.org/10.1137/060653378 +Fanhai Zeng,A Generalized Spectral Collocation Method with Tunable Accuracy for Fractional Differential Equations with End-Point Singularities.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#ZengMK17,https://doi.org/10.1137/16M1076083 +Knud D. Andersen,Computing Limit Loads by Minimizing a Sum of Norms.,1998,19,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc19.html#AndersenCO98,https://doi.org/10.1137/S1064827594275303 +Matania Ben-Artzi,Remarks on High-Resolution Split Schemes Computation.,2000,22,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc22.html#Ben-ArtziFF00,https://doi.org/10.1137/S1064827599345248 +Yan Jiang,An Alternative Formulation of Finite Difference Weighted ENO Schemes with Lax-Wendroff Time Discretization for Conservation Laws.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#JiangSZ13,https://doi.org/10.1137/120889885 +Claude Brezinski,The Simplified Topological 9*-Algorithms for Accelerating Sequences in a Vector Space.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#BrezinskiR14,https://doi.org/10.1137/140957044 +Vishwas Rao,Robust Data Assimilation Using L1 and Huber Norms.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#RaoSNR17,https://doi.org/10.1137/15M1045910 +William F. Trench,A Note on Computing Eigenvalues of Banded Hermitian Toeplitz Matrices.,1993,14,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc14.html#Trench93,https://doi.org/10.1137/0914015 +Josef Dick,Fast QMC Matrix-Vector Multiplication.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#DickKGS15,https://doi.org/10.1137/151005518 +Andreas Bartel,Dynamic Iteration for Coupled Problems of Electric Circuits and Distributed Devices.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#BartelBGS13,https://doi.org/10.1137/120867111 +Jean-Piero Suarez,A High-Order Dirac-Delta Regularization with Optimal Scaling in the Spectral Solution of One-Dimensional Singular Hyperbolic Conservation Laws.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#SuarezJD14,https://doi.org/10.1137/130939341 +Patrice Coorevits,A Posteriori Error Control of Finite Element Approximations for Coulomb's Frictional Contact.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#CoorevitsHH01,https://doi.org/10.1137/S1064827500375461 +Brian J. McCartin,Computation of Exponential Splines.,1990,11,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc11.html#McCartin90,https://doi.org/10.1137/0911015 +Martin Berzins,Extending the Uintah Framework through the Petascale Modeling of Detonation in Arrays of High Explosive Devices.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#BerzinsBHBHMSW16,https://doi.org/10.1137/15M1023270 +Jan Van Lent,Multigrid Methods for Implicit Runge-Kutta and Boundary Value Method Discretizations of Parabolic PDEs.,2005,27,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc27.html#LentV05,https://doi.org/10.1137/030601144 +Fu-Rong Lin,Factorized Banded Inverse Preconditioners for Matrices with Toeplitz Structure.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#LinNC05,https://doi.org/10.1137/030601272 +Alastair Gregory,Multilevel Ensemble Transform Particle Filtering.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#GregoryCR16,https://doi.org/10.1137/15M1038232 +Haim Avron,Blendenpik: Supercharging LAPACK's Least-Squares Solver.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#AvronMT10,https://doi.org/10.1137/090767911 +Neil V. Budko,Spectrum of the Volume Integral Operator of Electromagnetic Scattering.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#BudkoS06,https://doi.org/10.1137/050630660 +Richard E. Ewing,A Simplified Method for Upscaling Composite Materials with High Contrast of the Conductivity.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#EwingILRW09,https://doi.org/10.1137/080731906 +Marian Brezina,Towards Adaptive Smoothed Aggregation (AlphaSA) for Nonsymmetric Problems.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#BrezinaMMRS10,https://doi.org/10.1137/080727336 +Yanlai Chen,Certified Reduced Basis Methods and Output Bounds for the Harmonic Maxwell's Equations.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#ChenHMR10,https://doi.org/10.1137/09075250X +Randolph E. Bank,An Algebraic Multilevel Multigraph Algorithm.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#BankS02,https://doi.org/10.1137/S1064827500381045 +Olivier Bodart,XFEM-Based Fictitious Domain Method for Linear Elasticity Model with Crack.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#BodartCCK16,https://doi.org/10.1137/15M1008385 +Junichi Imai,Quasi-Monte Carlo Method for Infinitely Divisible Random Vectors via Series Representations.,2010,32,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc32.html#ImaiK10,https://doi.org/10.1137/090752365 +Mayeul d'Avezac,Learning to Predict Physical Properties using Sums of Separable Functions.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#dAvezacBMZ11,https://doi.org/10.1137/100805959 +Mike A. Botchev,Numerical Integration of Damped Maxwell Equations.,2009,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#BotchevV09,https://doi.org/10.1137/08072108X +Jie Shen 0001,Decoupled Energy Stable Schemes for Phase-Field Models of Two-Phase Complex Fluids.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#ShenY14,https://doi.org/10.1137/130921593 +Wanrong Cao,Implicit-Explicit Difference Schemes for Nonlinear Fractional Differential Equations with Nonsmooth Solutions.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#CaoZZK16,https://doi.org/10.1137/16M1070323 +Daniel Ruprecht,Transparent Boundary Conditions for Time-Dependent Problems.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#RuprechtSSZ08,https://doi.org/10.1137/070692637 +Tom Peterka,Self-Adaptive Density Estimation of Particle Data.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#PeterkaCLRC16,https://doi.org/10.1137/15M1016308 +Wayne B. Hayes,A Fast Shadowing Algorithm for High-Dimensional ODE Systems.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#HayesJ07,https://doi.org/10.1137/060654840 +M. A. Williams,Iterative Solution of a Nonlinear System Arising in Phase-Change Problems.,1990,11,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc11.html#WilliamsW90,https://doi.org/10.1137/0911061 +Huu Chuong La,Dual Control and Online Optimal Experimental Design.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#ChuongPSB17,https://doi.org/10.1137/16M1069936 +Juan Kuntz,Bounding Stationary Averages of Polynomial Diffusions via Semidefinite Programming.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#KuntzOSB16,https://doi.org/10.1137/16M107801X +Georgios Akrivis,Computational Study of the Dispersively Modified Kuramoto-Sivashinsky Equation.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#AkrivisPS12,https://doi.org/10.1137/100816791 +Jian Ping Wu,A Parallelization Technique Based on Factor Combination and Graph Partitioning for General Incomplete LU Factorization.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#WuZSL12,https://doi.org/10.1137/100793244 +Veronica Mejia Bustamante,Iterative Breast Tomosynthesis Image Reconstruction.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#BustamanteNFS13,https://doi.org/10.1137/120881440 +Ka Fai Cedric Yiu,On the Optimal Control Method for Airfoil and Cascade Analysis.,1995,16,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc16.html#Yiu95,https://doi.org/10.1137/0916079 +Yousef Saad,Finding Exact and Approximate Block Structures for ILU Preconditioning.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#Saad03,https://doi.org/10.1137/S1064827501393393 +Gary Froyland,Detecting and Locating Near-Optimal Almost-Invariant Sets and Cycles.,2003,24,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc24.html#FroylandD03,https://doi.org/10.1137/S106482750238911X +Delin Chu,Sparse Orthogonal Linear Discriminant Analysis.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#ChuLN12,https://doi.org/10.1137/110851377 +Pavel B. Bochev,An Algebraic Multigrid Approach Based on a Compatible Gauge Reformulation of Maxwell's Equations.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#BochevHST08,https://doi.org/10.1137/070685932 +Daniel Potts,Preconditioners for Ill-Conditioned Toeplitz Systems Constructed from Positive Kernels.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#PottsS01,https://doi.org/10.1137/S1064827599351428 +Chao Yang,Large-Scale Normal Coordinate Analysis for Molecular Structures.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#YangPNST01,https://doi.org/10.1137/S1064827500373668 +Carsten Burstedde,Coarse Mesh Partitioning for Tree-Based AMR.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#BursteddeH17,https://doi.org/10.1137/16M1103518 +Qiya Hu,Novel Multilevel Preconditioners for the Systems Arising from Plane Wave Discretization of Helmholtz Equations with Large Wave Numbers.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#HuL17,https://doi.org/10.1137/15M1022963 +Sarah L. Mitchell,Analysis of Box Schemes for Reactive Flow Problems.,2006,27,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc27.html#MitchellMS06,https://doi.org/10.1137/030601910 +Morten Dahlby,A General Framework for Deriving Integral Preserving Numerical Methods for PDEs.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#DahlbyO11,https://doi.org/10.1137/100810174 +John W. Barrett 0001,On the Variational Approximation of Combined Second and Fourth Order Geometric Evolution Equations.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#BarrettGN07,https://doi.org/10.1137/060653974 +Yassine Boubendir,Domain Decomposition Methods for Solving Stokes-Darcy Problems with Boundary Integrals.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#BoubendirT13,https://doi.org/10.1137/110838376 +Quan-Fang Wang,Theoretical and Computational Issues of Optimal Control for Distributed Hopfield Neural Network Equations with Diffusion Term.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#Wang07a,https://doi.org/10.1137/050647943 +Tony F. Chan,Computing Truncated Singular Value Decomposition Least Squares Solutions by Rank Revealing QR-Factorizations.,1990,11,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc11.html#ChanH90,https://doi.org/10.1137/0911029 +Yu-Wen Li,Exponential Integrators Preserving First Integrals or Lyapunov Functions for Conservative or Dissipative Systems.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#LiW16,https://doi.org/10.1137/15M1023257 +Peter Monk 0001,A Comparison of Three Mixed Methods for the Time-Dependent Maxwell's Equations.,1992,13,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc13.html#Monk92,https://doi.org/10.1137/0913064 +Graham F. Carey,Least-Squares Mixed Finite Element Methods for Non-Selfadjoint Elliptic Problems: II. Performance of Block-ILU Factorization Methods.,1995,16,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc16.html#CareyPV95,https://doi.org/10.1137/0916065 +Mo Mu,A New Family of Preconditioners for Domain Decomposition.,1995,16,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc16.html#Mu95,https://doi.org/10.1137/0916019 +Gundolf Haase,Cache Issues of Algebraic Multigrid Methods for Linear Systems with Multiple Right-Hand Sides.,2005,27,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc27.html#HaaseR05,https://doi.org/10.1137/S1064827502405112 +Alfio Borzì,Optimal Control Formulation for Determining Optical Flow.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#BorziIK03,https://doi.org/10.1137/S1064827501386481 +David Lee,Thin Plate Splines with Discontinuities and Fast Algorithms for Their Computation.,1994,15,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc15.html#LeeS94,https://doi.org/10.1137/0915080 +Paul G. Constantine,Active Subspace Methods in Theory and Practice: Applications to Kriging Surfaces.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#ConstantineDW14,https://doi.org/10.1137/130916138 +Zhenyue Zhang,Principal Manifolds and Nonlinear Dimensionality Reduction via Tangent Space Alignment.,2004,26,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc26.html#ZhangZ04,https://doi.org/10.1137/S1064827502419154 +Desmond J. Higham,Runge-Kutta Defect Control Using Hermite-Birkhoff Interpolation.,1991,12,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc12.html#Higham91,https://doi.org/10.1137/0912053 +Juan M. Restrepo,Circumventing Storage Limitations in Variational Data Assimilation Studies.,1998,19,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc19.html#RestrepoLG98,https://doi.org/10.1137/S1064827595285500 +Qiya Hu,A Plane-Wave Least-Squares Method for Time-Harmonic Maxwell's Equations in Absorbing Media.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#HuY14,https://doi.org/10.1137/130928509 +Eldad Haber,A Multilevel Method for Image Registration.,2006,27,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc27.html#HaberM06,https://doi.org/10.1137/040608106 +Fanhai Zeng,The Use of Finite Difference/Element Approaches for Solving the Time-Fractional Subdiffusion Equation.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#ZengLLT13,https://doi.org/10.1137/130910865 +Artem Napov,An Algebraic Multigrid Method with Guaranteed Convergence Rate.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#NapovN12,https://doi.org/10.1137/100818509 +H. Sue Dollar,Preconditioning Saddle-Point Systems with Applications in Optimization.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#DollarGSW10,https://doi.org/10.1137/080727129 +Zecheng Gan,A Hybrid Method for Systems of Closely Spaced Dielectric Spheres and Ions.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#GanJLX16,https://doi.org/10.1137/15M105046X +William D. Henshaw,On Multigrid for Overlapping Grids.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#Henshaw05,https://doi.org/10.1137/040603735 +Y. F. Xie,A Two-Timensional Composite Grid Numerical Model Based on the Reduced System for Oceanography.,1996,17,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc17.html#XieBC96,https://doi.org/10.1137/S1064827594278113 +Christos Xenophontos,A Singular Function Boundary Integral Method for Laplacian Problems with Boundary Singularities.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#XenophontosEG06,https://doi.org/10.1137/050622742 +Irene Livshits,Multiple Galerkin Adaptive Algebraic Multigrid Algorithm for the Helmholtz Equations.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#Livshits15,https://doi.org/10.1137/140975310 +Changhao Yan,A Parallel Method for Solving Laplace Equations with Dirichlet Data Using Local Boundary Integral Equations and Random Walks.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#YanCZ13,https://doi.org/10.1137/120875004 +Jeffrey M. Hokanson,Data-Driven Polynomial Ridge Approximation Using Variable Projection.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#HokansonC18,https://doi.org/10.1137/17M1117690 +Yvan Notay,Algebraic Multigrid for Stokes Equations.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#Notay17,https://doi.org/10.1137/16M1071419 +Indranil Chowdhury,Single Level Multipole Expansions and Operators for Potentials of the Form r-Lambda.,2005,26,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc26.html#ChowdhuryJ05,https://doi.org/10.1137/030602241 +Achi Brandt,Multigrid Solvers for Nonaligned Sonic Flows.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#BrandtD99,https://doi.org/10.1137/S1064827598332205 +Yi Chen,Local Polynomial Chaos Expansion for Linear Differential Equations with High Dimensional Random Inputs.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#ChenJGX15,https://doi.org/10.1137/140970100 +Qiang Du,Numerical Algorithms of the Lawrence-Doniach Model for Layered Superconductors and their Parallel Implementation.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#DuG99,https://doi.org/10.1137/S1064827596311566 +Julia Docampo-Sánchez,Multi-Dimensional Filtering: Reducing the Dimension Through Rotation.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#Docampo-Sanchez17,https://doi.org/10.1137/16M1097845 +A. Schmidt,Derivative-Extended POD Reduced-Order Modeling for Parameter Estimation.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#SchmidtPKB13,https://doi.org/10.1137/120896694 +Masayuki Yano,A Space-Time Petrov-Galerkin Certified Reduced Basis Method: Application to the Boussinesq Equations.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#Yano14,https://doi.org/10.1137/120903300 +Tom Lyche,A Multiresolution Tensor Spline Method for Fitting Functions on the Sphere.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#LycheS00,https://doi.org/10.1137/S1064827598344388 +Dang-Manh Nguyen,Explicit Least-Degree Boundary Filters for Discontinuous Galerkin.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#NguyenP17,https://doi.org/10.1137/17M1114016 +Syuzanna Sargsyan,Online Interpolation Point Refinement for Reduced-Order Models using a Genetic Algorithm.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#SargsyanBK18,https://doi.org/10.1137/16M1086352 +Jens Keiner,A New Algorithm for the Nonequispaced Fast Fourier Transform on the Rotation Group.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#KeinerV12,https://doi.org/10.1137/110835232 +Uri M. Ascher,Sequential Regularization Methods for Simulating Mechanical Systems with Many Closed Loops.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#AscherL99,https://doi.org/10.1137/S1064827596310238 +Chih-Che Chueh,An h-Adaptive Operator Splitting Method for Two-Phase Flow in 3D Heterogeneous Porous Media.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#ChuehDB13,https://doi.org/10.1137/120866208 +J. A. C. Weideman,Algorithms for Parameter Selection in the Weeks Method for Inverting the Laplace Transform.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#Weideman99,https://doi.org/10.1137/S1064827596312432 +Robert D. Falgout,Non-Galerkin Coarse Grids for Algebraic Multigrid.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#FalgoutS14,https://doi.org/10.1137/130931539 +Charles S. Kenney,Statistical Condition Estimation for Linear Systems.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#KenneyLR98,https://doi.org/10.1137/S1064827595282519 +Liqian Peng,Symplectic Model Reduction of Hamiltonian Systems.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#PengM16,https://doi.org/10.1137/140978922 +Cleve Ashcraft,A Fan-In Algorithm for Distributed Sparse Numerical Factorization.,1990,11,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc11.html#AshcraftEL90,https://doi.org/10.1137/0911033 +Marcus J. Grote,Runge-Kutta-Based Explicit Local Time-Stepping Methods for Wave Propagation.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#GroteMM15,https://doi.org/10.1137/140958293 +Michael Pernice,Solution of Equilibrium Radiation Diffusion Problems Using Implicit Adaptive Mesh Refinement.,2006,27,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc27.html#PerniceP06,https://doi.org/10.1137/040609069 +Anna Gambin,Aggregation Algorithms for Perturbed Markov Chains with Applications to Networks Modeling.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#GambinKP08,https://doi.org/10.1137/050624716 +Xiaoqun Wang,Efficient Weighted Lattice Rules with Applications to Finance.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#WangS06,https://doi.org/10.1137/S1064827502418197 +Silvia Gazzola,Fast Nonnegative Least Squares Through Flexible Krylov Subspaces.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#GazzolaW17,https://doi.org/10.1137/15M1048872 +Assyr Abdulle,High Weak Order Methods for Stochastic Differential Equations Based on Modified Equations.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#AbdulleCVZ12,https://doi.org/10.1137/110846609 +Claude Pommerell,A Set of New Mapping and Coloring Heuristics for Distributed-Memory Parallel Processors.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#PommerellAF92,https://doi.org/10.1137/0913011 +Haim Avron,Efficient Dimensionality Reduction for Canonical Correlation Analysis.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#AvronBTZ14,https://doi.org/10.1137/130919222 +Pedro R. S. Antunes,Numerical Minimization of Dirichlet Laplacian Eigenvalues of Four-Dimensional Geometries.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#AntunesO17,https://doi.org/10.1137/16M1083773 +Hans Z. Munthe-Kaas,Superparallel FFTs.,1993,14,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc14.html#Munthe-Kaas93,https://doi.org/10.1137/0914022 +J. Quer,An Automatic Adaptive Importance Sampling Algorithm for Molecular Dynamics in Reaction Coordinates.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#QuerDKW18,https://doi.org/10.1137/17M1124772 +Pascal Grob,Conservative Coupling between Finite Elements and Retarded Potentials. Application to Vibroacoustics.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#GrobJ07,https://doi.org/10.1137/050647141 +J. M. Varah,Relative Sizes of the Hessian Terms in Nonlinear Parameter Estimation.,1990,11,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc11.html#Varah90,https://doi.org/10.1137/0911011 +Raymond H. Chan,The Numerical Solution of the Biharmonic Equation by Conformal Mapping.,1997,18,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc18.html#ChanDH97,https://doi.org/10.1137/S1064827595292710 +Duan Chen,Accurate and Efficient Nyström Volume Integral Equation Method for Electromagnetic Scattering of 3-D Metamaterials in Layered Media.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#ChenCC18,https://doi.org/10.1137/16M110900X +Lars-Erik Andersson,Best Constrained Approximation in Hilbert Space and Interpolation by Cubic Splines Subject to Obstacles.,1995,16,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc16.html#AnderssonE95,https://doi.org/10.1137/0916070 +Filippo Terragni,Local POD Plus Galerkin Projection in the Unsteady Lid-Driven Cavity Problem.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#TerragniVV11,https://doi.org/10.1137/100816006 +Dexuan Xie,Efficient Algorithms for a Nonlocal Dielectric Model for Protein in Ionic Solvent.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#XieJS13,https://doi.org/10.1137/120899078 +Jan Mayer,Alternative Weighted Dropping Strategies for ILUTP.,2006,27,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc27.html#Mayer06,https://doi.org/10.1137/030602022 +Bogdan Opanchuk,Parallel Optimized Sampling for Stochastic Equations.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#OpanchukKD16,https://doi.org/10.1137/15M1040098 +Oliver Röhrle,Bridging Scales: A Three-Dimensional Electromechanical Finite Element Model of Skeletal Muscle.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#RohrleDP08,https://doi.org/10.1137/070691504 +Zohreh Ranjbar,Solving an Ill-Posed Cauchy Problem for a Two-Dimensional Parabolic PDE with Variable Coefficients Using a Preconditioned GMRES Method.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#RanjbarE14,https://doi.org/10.1137/130951166 +Rickard Enander,Implicit Explicit Residual Smoothing for the Multidimensional Euler and Navier-Stokes Equations.,1997,18,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc18.html#Enander97,https://doi.org/10.1137/S1064827594262637 +Arthur Sherman,A Gradient Random Walk Method for Two-Dimensional Reaction-Diffusion Equations.,1994,15,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc15.html#ShermanM94,https://doi.org/10.1137/0915078 +Yifan Hu,A Multilevel Algorithm for Wavefront Reduction.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#HuS01,https://doi.org/10.1137/S1064827500377733 +Wlodzimierz Proskurowski,Preconditioning Nonsymmetric and Indefinite Capacitance Matrix Problems in Domain Imbedding.,1995,16,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc16.html#ProskurowskiV95,https://doi.org/10.1137/0916026 +Miguel A. Dumett,An Immersed Interface Method for Solving Anisotropic Elliptic Boundary Value Problems in Three Dimensions.,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#DumettK03,https://doi.org/10.1137/S106482750240697X +Tasso Lappas,Riemann Invariant Manifolds for the Multidimensional Euler Equations.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#LappasLD99,https://doi.org/10.1137/S1064827595284063 +Yuanyuan Liu,High Order Finite Difference WENO Schemes for Nonlinear Degenerate Parabolic Equations.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#LiuSZ11,https://doi.org/10.1137/100791002 +Feng Wang,A Crosswind Block Iterative Method for Convection-Dominated Problems.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#WangX99,https://doi.org/10.1137/S106482759631192X +Jennifer A. Scott,On Signed Incomplete Cholesky Factorization Preconditioners for Saddle-Point Systems.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#ScottT14a,https://doi.org/10.1137/140956671 +David Cohen,MultiSymplectic Discretization of Wave Map Equations.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#CohenV16,https://doi.org/10.1137/15M1014322 +Philippe L. Toint,An Assessment of Nonmonotone Linesearch Techniques for Unconstrained Optimization.,1996,17,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc17.html#Toint96,https://doi.org/10.1137/S106482759427021X +Ilan Degani,Quantum Control With Piecewise Constant Control Functions.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#DeganiZlN09,https://doi.org/10.1137/080729839 +Timothy C. Warburton,Basis Functions for Triangular and Quadrilateral High-Order Elements.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#WarburtonSK99,https://doi.org/10.1137/S1064827597315716 +,,,,,,, +,,,,,,, +Andrés Cordón-Franco,A note on parameter free and#928*1-induction and restricted exponentiation.,2011,57,Math. Log. Q.,5,db/journals/mlq/mlq57.html#Cordon-FrancoFL11,https://doi.org/10.1002/malq.201010013 +Angel V. Ditchev,Some results on bounded truth-table degrees.,1990,36,Math. Log. Q.,3,db/journals/mlq/mlq36.html#Ditchev90,https://doi.org/10.1002/malq.19900360311 +Stephan Wehner,The Index Set of Injectively Enumerable Classes of Recursively Enumerable Sets is and#8721*5-Complete.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Wehner94,https://doi.org/10.1002/malq.19940400112 +,,,,,,, +Barbara Klunder,Topos Based Semantic for Constructive Logic with Strong Negation.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Klunder92,https://doi.org/10.1002/malq.19920380146 +Joan Gispert,Lattice BCK logics with Modus Ponens as unique rule.,2014,60,Math. Log. Q.,3,db/journals/mlq/mlq60.html#GispertT14,https://doi.org/10.1002/malq.201300065 +Jason A. Schanker,Weakly measurable cardinals.,2011,57,Math. Log. Q.,3,db/journals/mlq/mlq57.html#Schanker11,https://doi.org/10.1002/malq.201010006 +,,,,,,, +Peter Zahn,"Supplements to ""A Predicative Approach to Nonstandard Mathematics"".",1989,35,Math. Log. Q.,3,db/journals/mlq/mlq35.html#Zahn89a,https://doi.org/10.1002/malq.19890350310 +,,,,,,, +Siu-Ah Ng,Lévy processes on a first order model.,2010,56,Math. Log. Q.,3,db/journals/mlq/mlq56.html#Ng10,https://doi.org/10.1002/malq.200910015 +Grace Piper,The wi-club filter on kappa lambda.,2009,55,Math. Log. Q.,5,db/journals/mlq/mlq55.html#Piper09,https://doi.org/10.1002/malq.200710095 +Petar Maksimovic,Simple characterization of functionally complete one-element sets of propositional connectives.,2006,52,Math. Log. Q.,5,db/journals/mlq/mlq52.html#MaksimovicJ06,https://doi.org/10.1002/malq.200610009 +Karel Chvalovský,Note on Deduction Theorems in contraction-free logics.,2012,58,Math. Log. Q.,3,db/journals/mlq/mlq58.html#ChvalovskyC12,https://doi.org/10.1002/malq.201110065 +Emil Jerábek,Cluster expansion and the boxdot conjecture.,2016,62,Math. Log. Q.,6,db/journals/mlq/mlq62.html#Jerabek16a,https://doi.org/10.1002/malq.201600036 +Nadja Hempel,On n-dependent groups and fields.,2016,62,Math. Log. Q.,3,db/journals/mlq/mlq62.html#Hempel16,https://doi.org/10.1002/malq.201400080 +,,,,,,, +Márton Elekes,Decomposing the real line into Borel sets closed under addition.,2015,61,Math. Log. Q.,6,db/journals/mlq/mlq61.html#ElekesK15,https://doi.org/10.1002/malq.201400100 +Stefano Cavagnetto,Some applications of propositional logic to cellular automata.,2009,55,Math. Log. Q.,6,db/journals/mlq/mlq55.html#Cavagnetto09,https://doi.org/10.1002/malq.200810008 +Stefano Leonesi,Filling certain cuts in discrete weakly o-minimal structures.,2005,51,Math. Log. Q.,2,db/journals/mlq/mlq51.html#LeonesiT05,https://doi.org/10.1002/malq.200410014 +,,,,,,, +Jan Krajícek,Interpolation by a Game.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#Krajicek98,https://doi.org/10.1002/malq.19980440403 +Michal Krynicki,Hierarchies of Partially Ordered Connectives and Quantifiers.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Krynicki93,https://doi.org/10.1002/malq.19930390134 +Günter Asser,Zur Robinson-Charakterisierung Der Einstelligen Primitiv Rekursiven Wortfunktionen.,1988,34,Math. Log. Q.,4,db/journals/mlq/mlq34.html#Asser88,https://doi.org/10.1002/malq.19880340407 +David Makinson,Non-Equivalent Formulae in one Variable in A Strong Omnitemporal Modal Logic.,1981,27,Math. Log. Q.,7,db/journals/mlq/mlq27.html#Makinson81,https://doi.org/10.1002/malq.19810270703 +Jouko A. Väänänen,Reflection of Long Game Formulas.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#VaananenH94,https://doi.org/10.1002/malq.19940400307 +Ján Pich,Nisan-Wigderson generators in proof systems with forms of interpolation.,2011,57,Math. Log. Q.,4,db/journals/mlq/mlq57.html#Pich11,https://doi.org/10.1002/malq.201010012 +Matthias Baaz,The Axiom of Choice in Quantum Theory.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#BaazBS96,https://doi.org/10.1002/malq.19960420128 +Helmut Schwichtenberg,Dialectica interpretation of well-founded induction.,2008,54,Math. Log. Q.,3,db/journals/mlq/mlq54.html#Schwichtenberg08,https://doi.org/10.1002/malq.200710045 +Michael A. McRobbie,A Note on the Admissibility of Cut in Relevant Tableau Systems.,1979,25,Math. Log. Q.,32,db/journals/mlq/mlq25.html#McRobbieM79,https://doi.org/10.1002/malq.19790253203 +,,,,,,, +C. Alkor,Baire Category on Cardinals.,1983,29,Math. Log. Q.,4,db/journals/mlq/mlq29.html#AlkorI83,https://doi.org/10.1002/malq.19830290411 +Pierluigi Minari,On the Semantics of Comparative Logic.,1988,34,Math. Log. Q.,5,db/journals/mlq/mlq34.html#Minari88,https://doi.org/10.1002/malq.19880340507 +Ruy J. G. B. de Queiroz,Proof theory and computer programming.,1990,36,Math. Log. Q.,5,db/journals/mlq/mlq36.html#QueirozM90,https://doi.org/10.1002/malq.19900360505 +,,,,,,, +Teodor Stepien,Minimal systems.,1990,36,Math. Log. Q.,5,db/journals/mlq/mlq36.html#Stepien90,https://doi.org/10.1002/malq.19900360507 +,,,,,,, +J. W. Degen,Some Aspects and Examples of Infinity Notions.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Degen94,https://doi.org/10.1002/malq.19940400116 +,,,,,,, +Helmut Wolter,Entscheidbarkeit der Arithmetik mit Addition und Ordnung in Logiken mit verallgemeinerten Quantoren.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Wolter75,https://doi.org/10.1002/malq.19750210139 +,,,,,,, +Th. Lucas,Universal classes of Monadic Algebras.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Lucas76,https://doi.org/10.1002/malq.19760220105 +,,,,,,, +Frederik Herzberg,A definable nonstandard enlargement.,2008,54,Math. Log. Q.,2,db/journals/mlq/mlq54.html#Herzberg08,https://doi.org/10.1002/malq.200710022 +,,,,,,, +Renato A. Lewin,First order theory for literal-paraconsistent and literal-paracomplete matrices.,2010,56,Math. Log. Q.,4,db/journals/mlq/mlq56.html#LewinM10,https://doi.org/10.1002/malq.200810062 +Charles G. Morgan,A Gap Cohomology Group.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#Morgan95,https://doi.org/10.1002/malq.19950410411 +,,,,,,, +Petr Hájek 0001,On witnessed models in fuzzy logic III - witnessed Gödel logics.,2010,56,Math. Log. Q.,2,db/journals/mlq/mlq56.html#Hajek10,https://doi.org/10.1002/malq.200810047 +Rod Downey,Asymptotic density and the Ershov hierarchy.,2015,61,Math. Log. Q.,3,db/journals/mlq/mlq61.html#DowneyJMS15,https://doi.org/10.1002/malq.201300081 +Fernando Ferreira,Extracting Algorithms from Intuitionistic Proofs.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#FerreiraM98,https://doi.org/10.1002/malq.19980440202 +Jakob Kellner,F-products and nonstandard hulls for semigroups.,2004,50,Math. Log. Q.,1,db/journals/mlq/mlq50.html#KellnerP04,https://doi.org/10.1002/malq.200310071 +Saharon Shelah,Models of expansions of andequation image* with no end extensions.,2011,57,Math. Log. Q.,4,db/journals/mlq/mlq57.html#Shelah11,https://doi.org/10.1002/malq.200910129 +Daniel Abraham Romano,Construction of An Equality Relation on a Set with Coequality Relation.,1989,35,Math. Log. Q.,6,db/journals/mlq/mlq35.html#Romano89a,https://doi.org/10.1002/malq.19890350606 +Maciej Kandulski,Phrase Structure Languages Generated by Categorial Grammars With Product.,1988,34,Math. Log. Q.,4,db/journals/mlq/mlq34.html#Kandulski88a,https://doi.org/10.1002/malq.19880340413 +Lawrence Peter Belluce,Commutative rings whose ideals form an MV-algebra.,2009,55,Math. Log. Q.,5,db/journals/mlq/mlq55.html#BelluceN09,https://doi.org/10.1002/malq.200810012 +Radosav S. Dordevic,Analytic Completeness Theorem for Singular Biprobability Models.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Dordevic93,https://doi.org/10.1002/malq.19930390126 +,,,,,,, +Miklós Erdélyi-Szabó,Decidability in the Constructive Theory of Reals as an Ordered and#8474*-vectorspace.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Erdelyi-Szabo97,https://doi.org/10.1002/malq.19970430307 +Sandra Marques Pinto,Subdirectly irreducible separable dynamic algebras.,2010,56,Math. Log. Q.,4,db/journals/mlq/mlq56.html#PintoO10,https://doi.org/10.1002/malq.200910033 +Hirokazu Nishimura,Some connections between boolean valued analysis and topological reduction theory for C*-algebras.,1990,36,Math. Log. Q.,5,db/journals/mlq/mlq36.html#Nishimura90a,https://doi.org/10.1002/malq.19900360511 +Noboru Osuga,The covering number and the uniformity of the ideal If.,2006,52,Math. Log. Q.,4,db/journals/mlq/mlq52.html#Osuga06,https://doi.org/10.1002/malq.200610001 +Martin Dowd,Higher Type Categories.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Dowd93a,https://doi.org/10.1002/malq.19930390129 +Miroslawa Kolowska-Gawiejnowicz,A Labelled Deductive System for Relational Semantics of the Lambek Calculus.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#Kolowska-Gawiejnowicz99,https://doi.org/10.1002/malq.19990450105 +Stefano Leonesi,On the Boolean algebras of definable sets in weakly o-minimal theories.,2004,50,Math. Log. Q.,3,db/journals/mlq/mlq50.html#LeonesiT04,https://doi.org/10.1002/malq.200310095 +George Weaver,From finitary to infinitary second-order logic.,2005,51,Math. Log. Q.,5,db/journals/mlq/mlq51.html#WeaverP05,https://doi.org/10.1002/malq.200410046 +Antonio di Nola,On Vaught's Conjecture and finitely valued MV algebras.,2012,58,Math. Log. Q.,3,db/journals/mlq/mlq58.html#NolaL12,https://doi.org/10.1002/malq.201020091 +José G. Mijares,A notion of selective ultrafilter corresponding to topological Ramsey spaces.,2007,53,Math. Log. Q.,3,db/journals/mlq/mlq53.html#Mijares07,https://doi.org/10.1002/malq.200510045 +,,,,,,, +Jindrich Zapletal,Bounded Namba forcing axiom may fail.,2018,64,Math. Log. Q.,3,db/journals/mlq/mlq64.html#Zapletal18,https://doi.org/10.1002/malq.201700025 +,,,,,,, +Stephen Flood,Separating principles below WKL0.,2016,62,Math. Log. Q.,6,db/journals/mlq/mlq62.html#FloodT16,https://doi.org/10.1002/malq.201500001 +,,,,,,, +Noriya Kadota,Some extensions of built-upness on systems of fundamental sequences.,1990,36,Math. Log. Q.,4,db/journals/mlq/mlq36.html#KadotaA90,https://doi.org/10.1002/malq.19900360409 +David W. Kueker,Nearly Model Complete Theories.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#KuekerT99,https://doi.org/10.1002/malq.19990450302 +Helmut Pfeiffer,A theorem on labelled trees and the limits of its provability.,1990,36,Math. Log. Q.,2,db/journals/mlq/mlq36.html#Pfeiffer90,https://doi.org/10.1002/malq.19900360204 +Charles E. Hughes,Triadic partial implicational propositional calculi.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Hughes75,https://doi.org/10.1002/malq.19750210103 +Victor Pambuccian,Forms of the Pasch axiom in ordered geometry.,2010,56,Math. Log. Q.,1,db/journals/mlq/mlq56.html#Pambuccian10,https://doi.org/10.1002/malq.200810032 +Miguel Campercholi,Algebraic functions in quasiprimal algebras.,2014,60,Math. Log. Q.,3,db/journals/mlq/mlq60.html#CampercholiV14,https://doi.org/10.1002/malq.201200060 +Somayeh Motamed,Radical of filters in BL-algebras.,2011,57,Math. Log. Q.,2,db/journals/mlq/mlq57.html#MotamedTSM11,https://doi.org/10.1002/malq.201010003 +Jesper Carlström,EM + Ext- + ACint is equivalent to ACext.,2004,50,Math. Log. Q.,3,db/journals/mlq/mlq50.html#Carlstrom04,https://doi.org/10.1002/malq.200410100 +Toshimichi Usuba,Hierarchies of ineffabilities.,2013,59,Math. Log. Q.,3,db/journals/mlq/mlq59.html#Usuba13,https://doi.org/10.1002/malq.201200003 +Thomas G. McLaughlin,A Note on Effective Ultrapowers: Uniform Failure of Bounded Collection.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#McLaughlin93,https://doi.org/10.1002/malq.19930390146 +Mohamed A. Amer,Polyadic and cylindric algebras of sentences.,2006,52,Math. Log. Q.,5,db/journals/mlq/mlq52.html#AmerA06,https://doi.org/10.1002/malq.200510039 +Masazumi Hanazawa,An Extension of the Notion of Relativization to Hilbert's and#1013*-Symbol.,1980,26,Math. Log. Q.,31,db/journals/mlq/mlq26.html#Hanazawa80,https://doi.org/10.1002/malq.19800263103 +Gérard Lopez,Reconstruction d'une S-Expansion.,1983,29,Math. Log. Q.,1,db/journals/mlq/mlq29.html#Lopez83,https://doi.org/10.1002/malq.19830290104 +,,,,,,, +Christine Gaßner,The Axiom of Choice in Second-Order Predicate Logic.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Gassner94,https://doi.org/10.1002/malq.19940400410 +,,,,,,, +Kazuyuki Tanaka,Non standard Analysis in WKL0.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Tanaka97,https://doi.org/10.1002/malq.19970430312 +Beibut Sh. Kulpeshov,Minimality conditions on circularly ordered structures.,2005,51,Math. Log. Q.,4,db/journals/mlq/mlq51.html#KulpeshovM05,https://doi.org/10.1002/malq.200410040 +,,,,,,, +Tarek Sayed Ahmed,The class of infinite dimensional neat reducts of quasi-polyadic algebras is not axiomatizable.,2006,52,Math. Log. Q.,1,db/journals/mlq/mlq52.html#Ahmed06,https://doi.org/10.1002/malq.200510020 +Shingo Ibuka,Kolmogorov complexity and characteristic constants of formal theories of arithmetic.,2011,57,Math. Log. Q.,5,db/journals/mlq/mlq57.html#IbukaKK11,https://doi.org/10.1002/malq.201010017 +Pierre Ille,Cloture intervallaire et extension logique d'une relation.,1990,36,Math. Log. Q.,3,db/journals/mlq/mlq36.html#Ille90,https://doi.org/10.1002/malq.19900360304 +Rod McBeth,Fundamental Sequences for Initial Ordinals Smaller than a Certain and#920*0.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#McBeth76,https://doi.org/10.1002/malq.19760220111 +Heinrich Rolletschek,A Variant of the Notion of Semicreative Set.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Rolletschek93,https://doi.org/10.1002/malq.19930390106 +Gregory L. McColm,Some Ramsey Theory in Boolean Algebra for Complexity Classes.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#McColm92,https://doi.org/10.1002/malq.19920380125 +Jeffrey B. Remmel,Feasible Graphs and Colorings.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#RemmelC95,https://doi.org/10.1002/malq.19950410305 +Gerhard Lischke,Squares of regular languages.,2005,51,Math. Log. Q.,3,db/journals/mlq/mlq51.html#Lischke05,https://doi.org/10.1002/malq.200410032 +Richard Bird,Non recursive functionals.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Bird75,https://doi.org/10.1002/malq.19750210105 +,,,,,,, +Joan Rand Moschovakis,Unavoidable sequences in constructive analysis.,2010,56,Math. Log. Q.,2,db/journals/mlq/mlq56.html#Moschovakis10,https://doi.org/10.1002/malq.200810046 +Benedetto Intrigila,Negative Results on the Reduction of the Recursion Scheme.,1988,34,Math. Log. Q.,4,db/journals/mlq/mlq34.html#Intrigila88,https://doi.org/10.1002/malq.19880340403 +Steven K. Thomason,Reduction of second-order logic to modal logic.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Thomason75a,https://doi.org/10.1002/malq.19750210114 +Hajnal Andréka,Binary Relations and Permutation Groups.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#AndrekaDN95,https://doi.org/10.1002/malq.19950410207 +Rudolf Taschner,The swap of integral and limit in constructive mathematics.,2010,56,Math. Log. Q.,5,db/journals/mlq/mlq56.html#Taschner10,https://doi.org/10.1002/malq.200910107 +Klaus Frovin Jørgensen,Functional interpretation and the existence property.,2004,50,Math. Log. Q.,6,db/journals/mlq/mlq50.html#Jorgensen04,https://doi.org/10.1002/malq.200410004 +Jan von Plato,Translations from natural deduction to sequent calculus.,2003,49,Math. Log. Q.,5,db/journals/mlq/mlq49.html#Plato03,https://doi.org/10.1002/malq.200310047 +Valeriy K. Bulitko,On Some Complexity Characteristics of Immune Sets.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#Bulitko95,https://doi.org/10.1002/malq.19950410303 +Young Bae Jun,New types of hyper MV-deductive systems in hyper MV-algebras.,2010,56,Math. Log. Q.,4,db/journals/mlq/mlq56.html#JunKK10,https://doi.org/10.1002/malq.200910011 +,,,,,,, +,,,,,,, +Guohua Wu,Regular reals.,2005,51,Math. Log. Q.,2,db/journals/mlq/mlq51.html#Wu05,https://doi.org/10.1002/malq.200310129 +Takako Nemoto,Infinite games in the Cantor space and subsystems of second order arithmetic.,2007,53,Math. Log. Q.,3,db/journals/mlq/mlq53.html#NemotoMT07,https://doi.org/10.1002/malq.200610041 +Yong Cheng,The HOD Hypothesis and a supercompact cardinal.,2017,63,Math. Log. Q.,5,db/journals/mlq/mlq63.html#Cheng17,https://doi.org/10.1002/malq.201600007 +,,,,,,, +Nigel J. Cutland,Compactness Without Languages.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Cutland76,https://doi.org/10.1002/malq.19760220113 +Bozena Piekart,Automorphisms of Models of True Arithmetic: Subgroups which Extend to a Maximal Subgroup Uniquely.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#PiekartK94,https://doi.org/10.1002/malq.19940400113 +Joel Uckelman,Representing Utility Functions via Weighted Goals.,2009,55,Math. Log. Q.,4,db/journals/mlq/mlq55.html#UckelmanCEL09,https://doi.org/10.1002/malq.200810024 +Arthur W. Apter,Indestructibility under adding Cohen subsets and level by level equivalence.,2009,55,Math. Log. Q.,3,db/journals/mlq/mlq55.html#Apter09a,https://doi.org/10.1002/malq.200810006 +Athanassios Tzouvaras,Omega- and Beta-Models of Alternative Set Theory.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Tzouvaras94,https://doi.org/10.1002/malq.19940400411 +,,,,,,, +,,,,,,, +Predrag Tanovic,On definability of types of finite Cantor-Bendixson rank.,2011,57,Math. Log. Q.,3,db/journals/mlq/mlq57.html#Tanovic11,https://doi.org/10.1002/malq.200910134 +William S. Hatcher,On the Order Structure of the Hyperreal Line.,1983,29,Math. Log. Q.,4,db/journals/mlq/mlq29.html#HatcherL83,https://doi.org/10.1002/malq.19830290404 +Sidrah Javed,Asymmetric Hardware Distortions in Receive Diversity Systems: Outage Performance Analysis.,2017,5,IEEE Access,,db/journals/access/access5.html#JavedAIA17,https://doi.org/10.1109/ACCESS.2017.2672543 +Tongguang Zhang,Lightweight SOA-Based Multi-Engine Architecture for Workflow Systems in Mobile Ad Hoc Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangZCFHCRH18,https://doi.org/10.1109/ACCESS.2018.2815617 +Sami Sattar,A 2.4/5.2-GHz Concurrent Dual-Band CMOS Low Noise Amplifier.,2017,5,IEEE Access,,db/journals/access/access5.html#SattarZ17,https://doi.org/10.1109/ACCESS.2017.2756985 +Hakim Ghazzai,Next-Generation Environment-Aware Cellular Networks: Modern Green Techniques and Implementation Challenges.,2016,4,IEEE Access,,db/journals/access/access4.html#GhazzaiYKYA16,https://doi.org/10.1109/ACCESS.2016.2609459 +Anzhong Hu,Concavity Approximation Based Power Allocation in Millimeter-Wave MIMO Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#HuP17,https://doi.org/10.1109/ACCESS.2017.2773491 +Mingle Xu,A Novel Heuristic Communication Heterogeneous Dual Population Ant Colony Optimization Algorithm.,2017,5,IEEE Access,,db/journals/access/access5.html#XuYL17,https://doi.org/10.1109/ACCESS.2017.2746569 +Gustavo Hernandez-Penaloza,A Multi-Sensor Fusion Scheme to Increase Life Autonomy of Elderly People With Cognitive Problems.,2018,6,IEEE Access,,db/journals/access/access6.html#Hernandez-Penaloza18,https://doi.org/10.1109/ACCESS.2017.2735809 +Yingkun Zhou,Experiment Study on the Control Method of Motor-Generator Pair System.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhouXWZH18,https://doi.org/10.1109/ACCESS.2017.2776974 +Per-Simon Kildal,"Correction to ""MIMO Characterization on System Level of 5G Micro Base Stations Subject to Randomness in LOS"".",2015,3,IEEE Access,,db/journals/access/access3.html#KildalMCGS15,https://doi.org/10.1109/ACCESS.2015.2466835 +Jinyu Zhang,Combined Exposure Ratio Evaluation for Micro-Power Devices.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangZ18a,https://doi.org/10.1109/ACCESS.2018.2812795 +Jianfeng Li 0003,A Geometry-Appearance-Based Pupil Detection Method for Near-Infrared Head-Mounted Cameras.,2018,6,IEEE Access,,db/journals/access/access6.html#LiLCL18,https://doi.org/10.1109/ACCESS.2018.2828400 +Zhiyong Du,Data-Driven Deployment and Cooperative Self-Organization in Ultra-Dense Small Cell Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#DuSGXWZ18,https://doi.org/10.1109/ACCESS.2018.2826846 +Xuqiang Shao,Improving SPH Fluid Simulation Using Position Based Dynamics.,2017,5,IEEE Access,,db/journals/access/access5.html#ShaoLZ17,https://doi.org/10.1109/ACCESS.2017.2729601 +Uzzal Kumar Dutta,Self-Adaptive Scheduling of Base Transceiver Stations in Green 5G Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#DuttaRAIHG18,https://doi.org/10.1109/ACCESS.2018.2799603 +Wei Kuang Lai,Novel Node Deployment Strategies in Corona Structure for Wireless Sensor Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#LaiF17,https://doi.org/10.1109/ACCESS.2017.2681124 +Saurabh Mani Tripathi,Controller Design for a Variable-Speed Direct-Drive Permanent Magnet Synchronous Generator-Based Grid-Interfaced Wind Energy Conversion System Using D-Partition Technique.,2017,5,IEEE Access,,db/journals/access/access5.html#TripathiTS17,https://doi.org/10.1109/ACCESS.2017.2775250 +Shahed K. Mohammed,Lossless Compression in Bayer Color Filter Array for Capsule Endoscopy.,2017,5,IEEE Access,,db/journals/access/access5.html#MohammedRW17,https://doi.org/10.1109/ACCESS.2017.2726997 +Zhilin Liu,Robust Component Fault Diagnostic Observer Design for Underactuated Surface Vessels Using Moving Horizon Optimization.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuLL18a,https://doi.org/10.1109/ACCESS.2018.2817257 +Sohel Uddin,Energy Management for Distribution Networks Through Capacity Constrained State Optimization.,2017,5,IEEE Access,,db/journals/access/access5.html#UddinKM17,https://doi.org/10.1109/ACCESS.2017.2761391 +Sergi Abadal,Computing and Communications for the Software-Defined Metamaterial Paradigm: A Context Analysis.,2017,5,IEEE Access,,db/journals/access/access5.html#AbadalLTIPSAC17,https://doi.org/10.1109/ACCESS.2017.2693267 +Wen Bin Ye,Design of Low-Power Multiplierless Linear-Phase FIR Filters.,2017,5,IEEE Access,,db/journals/access/access5.html#YeLY17,https://doi.org/10.1109/ACCESS.2017.2740422 +Kashif Sultan,Call Detail Records Driven Anomaly Detection and Traffic Prediction in Mobile Cellular Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#SultanAZ18,https://doi.org/10.1109/ACCESS.2018.2859756 +Jiamin Wei,An Effective Hybrid Cuckoo Search Algorithm for Unknown Parameters and Time Delays Estimation of Chaotic Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#WeiY18,https://doi.org/10.1109/ACCESS.2017.2738006 +Zhixin Zhao,Reduced Complexity Multipath Clutter Rejection Approach for DRM-Based HF Passive Bistatic Radar.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhaoZZH17,https://doi.org/10.1109/ACCESS.2017.2756075 +Teng Xu 0004,Detection of Water Leakage in Underground Tunnels Using Corrected Intensity Data and 3D Point Cloud of Terrestrial Laser Scanning.,2018,6,IEEE Access,,db/journals/access/access6.html#XuXLY18,https://doi.org/10.1109/ACCESS.2018.2842797 +Pranithan Phensadsaeng,The Design and Implementation of an Automatic Tonsillitis Monitoring and Detection System.,2017,5,IEEE Access,,db/journals/access/access5.html#PhensadsaengC17,https://doi.org/10.1109/ACCESS.2017.2699665 +Lo'ai Ali Tawalbeh,Mobile Cloud Computing Model and Big Data Analysis for Healthcare Applications.,2016,4,IEEE Access,,db/journals/access/access4.html#TawalbehMBS16,https://doi.org/10.1109/ACCESS.2016.2613278 +Jiaying Liu 0006,Artificial Intelligence in the 21st Century.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuKXBWQL18,https://doi.org/10.1109/ACCESS.2018.2819688 +Bin Chen 0009,Semi-Empirical Model for Precise Analysis of Copper Losses in High-Frequency Transformers.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenL18,https://doi.org/10.1109/ACCESS.2018.2797359 +Jingfan Fan,Multichannel Fully Convolutional Network for Coronary Artery Segmentation in X-Ray Angiograms.,2018,6,IEEE Access,,db/journals/access/access6.html#FanYWYAHSHW18,https://doi.org/10.1109/ACCESS.2018.2864592 +Lo'ai Ali Tawalbeh,Greener and Smarter Phones for Future Cities: Characterizing the Impact of GPS Signal Strength on Power Consumption.,2016,4,IEEE Access,,db/journals/access/access4.html#TawalbehBMT16,https://doi.org/10.1109/ACCESS.2016.2532745 +Lei Wang 0012,Research on a Dynamic Virus Propagation Model to Improve Smart Campus Security.,2018,6,IEEE Access,,db/journals/access/access6.html#0012YYY18,https://doi.org/10.1109/ACCESS.2018.2817508 +Tenager Mekonnen,Energy Consumption Analysis of Edge Orchestrated Virtualized Wireless Multimedia Sensor Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#MekonnenKMKHKY18,https://doi.org/10.1109/ACCESS.2017.2783447 +Maxim A. Dulebenets,Minimizing Carbon Dioxide Emissions Due to Container Handling at Marine Container Terminals via Hybrid Evolutionary Algorithms.,2017,5,IEEE Access,,db/journals/access/access5.html#DulebenetsMOV17,https://doi.org/10.1109/ACCESS.2017.2693030 +Dan-Ping Xu,Analysis of Sound Pressure Level of a Balanced Armature Receiver Considering Coupling Effects.,2017,5,IEEE Access,,db/journals/access/access5.html#XuLJKKH17,https://doi.org/10.1109/ACCESS.2017.2696565 +Xiaowen Xu,Whole Brain fMRI Pattern Analysis Based on Tensor Neural Network.,2018,6,IEEE Access,,db/journals/access/access6.html#XuWWLSC18,https://doi.org/10.1109/ACCESS.2018.2815770 +Di Zhang 0005,Radiation Performance Synthesis for OAM Vortex Wave Generated by Reflective Metasurface.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangCYG18,https://doi.org/10.1109/ACCESS.2018.2839099 +Sumant G. Kadwane,Symmetrical Shoot-Through Based Decoupled Control of Z-Source Inverter.,2017,5,IEEE Access,,db/journals/access/access5.html#KadwaneSGK17,https://doi.org/10.1109/ACCESS.2017.2715065 +Weizhi Meng,Enhancing Trust Management for Wireless Intrusion Detection via Traffic Sampling in the Era of Big Data.,2018,6,IEEE Access,,db/journals/access/access6.html#MengLSZL18,https://doi.org/10.1109/ACCESS.2017.2772294 +Yanpeng Guan,Distributed Secure Estimation Over Wireless Sensor Networks Against Random Multichannel Jamming Attacks.,2017,5,IEEE Access,,db/journals/access/access5.html#GuanG17,https://doi.org/10.1109/ACCESS.2017.2713807 +Ngoc Duy Nguyen,System Design Perspective for Human-Level Agents Using Deep Reinforcement Learning: A Survey.,2017,5,IEEE Access,,db/journals/access/access5.html#NguyenNN17,https://doi.org/10.1109/ACCESS.2017.2777827 +Siming Wei,Synchronous Motor-Generator Pair to Enhance Small Signal and Transient Stability of Power System With High Penetration of Renewable Energy.,2017,5,IEEE Access,,db/journals/access/access5.html#WeiZH17,https://doi.org/10.1109/ACCESS.2017.2716103 +Zhenyu Zhou,Energy-Efficient Stable Matching for Resource Allocation in Energy Harvesting-Based Device-to-Device Communications.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhouGXCZM17,https://doi.org/10.1109/ACCESS.2017.2678508 +Eunji Lee,Intelligent Handover Scheme for Drone Using Fuzzy Inference Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#LeeCK17,https://doi.org/10.1109/ACCESS.2017.2724067 +Lin Zhang,A CMOS K-Band 6-bit Attenuator With Low Phase Imbalance for Phased Array Applications.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangZZWK17,https://doi.org/10.1109/ACCESS.2017.2750203 +Shanshan Lu,Stationary Points of a Kurtosis Maximization Criterion for Noisy Blind Source Extraction.,2017,5,IEEE Access,,db/journals/access/access5.html#LuWW17,https://doi.org/10.1109/ACCESS.2017.2703840 +Amir Sabbagh Molahosseini,A Multifunctional Unit for Designing Efficient RNS-Based Datapaths.,2017,5,IEEE Access,,db/journals/access/access5.html#MolahosseiniZMS17,https://doi.org/10.1109/ACCESS.2017.2766841 +Ahmad R. Dhaini,Automated Detection and Measurement of Corneal Haze and Demarcation Line in Spectral-Domain Optical Coherence Tomography Images.,2018,6,IEEE Access,,db/journals/access/access6.html#DhainiCEFA18,https://doi.org/10.1109/ACCESS.2018.2789526 +Sami ud Din,A Comparative Experimental Study of Robust Sliding Mode Control Strategies for Underactuated Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#DinKRA17,https://doi.org/10.1109/ACCESS.2017.2712261 +Caifeng Zou,Using Fuzzy Concept Lattice for Intelligent Disease Diagnosis.,2017,5,IEEE Access,,db/journals/access/access5.html#ZouD17,https://doi.org/10.1109/ACCESS.2016.2638848 +José de Jesús Rubio,Sliding Mode Regulator for the Perturbations Attenuation in Two Tank Plants.,2017,5,IEEE Access,,db/journals/access/access5.html#RubioSJP17,https://doi.org/10.1109/ACCESS.2017.2759062 +Xianlin Zhang,Photo-to-Sketch Transformation in a Complex Background.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangLOL17,https://doi.org/10.1109/ACCESS.2017.2707394 +Fangfei Li,Optimal Linear Attack on Cyber Physical Systems With Multiplicative Noise.,2018,6,IEEE Access,,db/journals/access/access6.html#LiYT18,https://doi.org/10.1109/ACCESS.2018.2842711 +Mahmoud Al Ahmad,Monitoring of the Budding Yeast Cell Cycle Using Electrical Parameters.,2018,6,IEEE Access,,db/journals/access/access6.html#AhmadNAH18,https://doi.org/10.1109/ACCESS.2018.2820080 +Wei Feng,Anonymous Authentication on Trust in Pervasive Social Networking Based on Group Signature.,2017,5,IEEE Access,,db/journals/access/access5.html#FengYX17,https://doi.org/10.1109/ACCESS.2017.2679980 +Na Wang 0004,A Hybrid Model for Image Denoising Combining Modified Isotropic Diffusion Model and Modified Perona-Malik Model.,2018,6,IEEE Access,,db/journals/access/access6.html#WangSCYZLG18,https://doi.org/10.1109/ACCESS.2018.2844163 +Jianjun Meng,Effects of Soft Drinks on Resting State EEG and Brain-Computer Interface Performance.,2017,5,IEEE Access,,db/journals/access/access5.html#MengMSMGHH17,https://doi.org/10.1109/ACCESS.2017.2751069 +Xiaobing Pei,Face Hallucination via Gradient Constrained Sparse Representation.,2018,6,IEEE Access,,db/journals/access/access6.html#PeiGCD18,https://doi.org/10.1109/ACCESS.2018.2795038 +A. S. Xanthopoulos,Reinforcement Learning-Based and Parametric Production-Maintenance Control Policies for a Deteriorating Manufacturing System.,2018,6,IEEE Access,,db/journals/access/access6.html#XanthopoulosKKS18,https://doi.org/10.1109/ACCESS.2017.2771827 +Andrey A. Shchurov,A Multilayer Approach to Commercial Computer Networks Testing.,2017,5,IEEE Access,,db/journals/access/access5.html#ShchurovM17,https://doi.org/10.1109/ACCESS.2017.2714098 +Jiachen Sun,Predictability Analysis of Spectrum State Evolution: Performance Bounds and Real-World Data Analytics.,2017,5,IEEE Access,,db/journals/access/access5.html#SunSDLW17,https://doi.org/10.1109/ACCESS.2017.2766076 +Yi Luo 0006,Multi-Parameter-Setting Based on Data Original Distribution for DENCLUE Optimization.,2018,6,IEEE Access,,db/journals/access/access6.html#LuoZCX18,https://doi.org/10.1109/ACCESS.2018.2791203 +Yongmin Park,Fast Execution Schemes for Dark-Channel-Prior-Based Outdoor Video Dehazing.,2018,6,IEEE Access,,db/journals/access/access6.html#ParkK18,https://doi.org/10.1109/ACCESS.2018.2806378 +Weijia Zhang,Research on High Performance Frequency Synthesizer in Radio Frequency Integrated Circuits.,2018,6,IEEE Access,,db/journals/access/access6.html#Zhang18a,https://doi.org/10.1109/ACCESS.2018.2822699 +Xiuxiu Ren,Drusen Segmentation From Retinal Images via Supervised Feature Learning.,2018,6,IEEE Access,,db/journals/access/access6.html#RenZZLWLH18,https://doi.org/10.1109/ACCESS.2017.2786271 +Shie Wu,Cooperative Sleep and Power Allocation for Energy Saving in Dense Small Cell Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#WuLZX16,https://doi.org/10.1109/ACCESS.2016.2616165 +Bin Ma,Modeling and Analysis for Vertical Handoff Based on the Decision Tree in a Heterogeneous Vehicle Network.,2017,5,IEEE Access,,db/journals/access/access5.html#MaWCX17,https://doi.org/10.1109/ACCESS.2017.2707801 +Huan Zhou 0002,A Time-Ordered Aggregation Model-Based Centrality Metric for Mobile Social Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhouRZLXH18,https://doi.org/10.1109/ACCESS.2018.2831247 +Filipe Sousa,Green Wireless Video Sensor Networks Using Low Power Out-of-Band Signalling.,2018,6,IEEE Access,,db/journals/access/access6.html#SousaDRCR18,https://doi.org/10.1109/ACCESS.2018.2841821 +Byung-Seok Kang,Developing Route Optimization-Based PMIPv6 Testbed for Reliable Packet Transmission.,2016,4,IEEE Access,,db/journals/access/access4.html#KangKC16,https://doi.org/10.1109/ACCESS.2016.2541164 +Hang Li 0004,Constructing Service Function Chain Test Database: An Optimal Modeling Approach for Coordinated Resource Allocation.,2018,6,IEEE Access,,db/journals/access/access6.html#LiWWLM18a,https://doi.org/10.1109/ACCESS.2017.2780991 +Jian Yang 0017,A Bionic Polarization Navigation Sensor Based on Polarizing Beam Splitter.,2018,6,IEEE Access,,db/journals/access/access6.html#YangDNLQG18,https://doi.org/10.1109/ACCESS.2018.2794524 +Solmaz Niknam,Interference Analysis for Finite-Area 5-G mmWave Networks Considering Blockage Effect.,2018,6,IEEE Access,,db/journals/access/access6.html#NiknamNB18,https://doi.org/10.1109/ACCESS.2018.2829621 +Elie M. Shaccour,A Loop-Based Methodology for Reducing Computational Redundancy in Workload Sets.,2018,6,IEEE Access,,db/journals/access/access6.html#ShaccourM18,https://doi.org/10.1109/ACCESS.2017.2788921 +Haiwei Dong,An Elicitation Study on Gesture Preferences and Memorability Toward a Practical Hand-Gesture Vocabulary for Smart Televisions.,2015,3,IEEE Access,,db/journals/access/access3.html#DongDFE15,https://doi.org/10.1109/ACCESS.2015.2432679 +Caiyun Wu,Concurrent Learning-Based Global Exponential Tracking Control of Uncertain Switched Systems With Mode-Dependent Average Dwell Time.,2018,6,IEEE Access,,db/journals/access/access6.html#WuHNX18,https://doi.org/10.1109/ACCESS.2018.2854720 +Ryosho Nakane,Reservoir Computing With Spin Waves Excited in a Garnet Film.,2018,6,IEEE Access,,db/journals/access/access6.html#NakaneTH18,https://doi.org/10.1109/ACCESS.2018.2794584 +Kai Zhang,Joint RRH Activation and Robust Coordinated Beamforming for Massive MIMO Heterogeneous Cloud Radio Access Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangTXYLL18,https://doi.org/10.1109/ACCESS.2018.2856831 +Federico Ciccozzi,Adopting MDE for Specifying and Executing Civilian Missions of Mobile Multi-Robot Systems.,2016,4,IEEE Access,,db/journals/access/access4.html#CiccozziRMP16,https://doi.org/10.1109/ACCESS.2016.2613642 +Xiaoshun Zhang,Multi-Agent Bargaining Learning for Distributed Energy Hub Economic Dispatch.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangYZT18,https://doi.org/10.1109/ACCESS.2018.2853263 +Shaohua Wu,Single-Pixel Camera in the Visible Band With Fiber Signal Collection.,2018,6,IEEE Access,,db/journals/access/access6.html#WuZWLX18,https://doi.org/10.1109/ACCESS.2018.2819358 +Amjad Iqbal,Mutual Coupling Reduction Using F-Shaped Stubs in UWB-MIMO Antenna.,2018,6,IEEE Access,,db/journals/access/access6.html#IqbalSAB18,https://doi.org/10.1109/ACCESS.2017.2785232 +Xinzhi Wang,Sentence Vector Model Based on Implicit Word Vector Expression.,2018,6,IEEE Access,,db/journals/access/access6.html#WangZL18a,https://doi.org/10.1109/ACCESS.2018.2817839 +Jianxin Liao,Multi-Context Integrated Deep Neural Network Model for Next Location Prediction.,2018,6,IEEE Access,,db/journals/access/access6.html#LiaoLLWWS18,https://doi.org/10.1109/ACCESS.2018.2827422 +Paolo Bellavista,Improved Adaptation and Survivability via Dynamic Service Composition of Ubiquitous Computing Middleware.,2018,6,IEEE Access,,db/journals/access/access6.html#BellavistaCFM18,https://doi.org/10.1109/ACCESS.2018.2842683 +Navid Tadayon,Inflight Broadband Connectivity Using Cellular Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#TadayonKN16,https://doi.org/10.1109/ACCESS.2016.2537648 +Xiuqin Ma,A Distance-Based Parameter Reduction Algorithm of Fuzzy Soft Sets.,2018,6,IEEE Access,,db/journals/access/access6.html#MaQ18,https://doi.org/10.1109/ACCESS.2018.2800017 +Zehao Wu,On Convergence of Extended State Observer for a Class of MIMO Uncertain Stochastic Nonlinear Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#WuHWLB18,https://doi.org/10.1109/ACCESS.2018.2849199 +Chi Jin,Stability Analysis of Systems With Delay-Dependent Coefficients: An Overview.,2018,6,IEEE Access,,db/journals/access/access6.html#JinGNB18,https://doi.org/10.1109/ACCESS.2018.2828871 +Ke Xu,On the Ergodic Channel Capacity for Indoor Visible Light Communication Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#XuYZS17,https://doi.org/10.1109/ACCESS.2017.2650965 +Mei-Hua Chen,Application of Sentiment Analysis to Language Learning.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenCK18,https://doi.org/10.1109/ACCESS.2018.2832137 +Ryan Clarke,Thermal Modeling of 3-D Stacked DRAM Over SiGe HBT BiCMOS CPU.,2015,3,IEEE Access,,db/journals/access/access3.html#ClarkeJEBRLNKBM15,https://doi.org/10.1109/ACCESS.2015.2396474 +Guanding Yu,Energy Efficiency Tradeoff in Interference Channels.,2016,4,IEEE Access,,db/journals/access/access4.html#YuXFZLZ16,https://doi.org/10.1109/ACCESS.2016.2599288 +Vitor F. Campana,Modification in the SAR Super-Resolution Model Using the Fractal Descriptor LMME in the Term Regularizer.,2018,6,IEEE Access,,db/journals/access/access6.html#CampanaCSC18,https://doi.org/10.1109/ACCESS.2018.2854411 +Wenwei Wang,State of Charge Dependent Constitutive Model of the Jellyroll of Cylindrical Lithium-Ion Cells.,2018,6,IEEE Access,,db/journals/access/access6.html#WangYLL18,https://doi.org/10.1109/ACCESS.2018.2825466 +Guanghui Wang,Robust Structure and Motion Recovery Based on Augmented Factorization.,2017,5,IEEE Access,,db/journals/access/access5.html#Wang17a,https://doi.org/10.1109/ACCESS.2017.2755019 +Wei Zheng 0005,Fuzzy Dynamic Output Feedback Control for T-S Fuzzy Discrete-Time Systems With Multiple Time-Varying Delays and Unmatched Disturbances.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhengWWWZ18,https://doi.org/10.1109/ACCESS.2018.2831250 +Ryosuke Harakawa,Extracting Hierarchical Structure of Web Video Groups Based on Sentiment-Aware Signed Network Analysis.,2017,5,IEEE Access,,db/journals/access/access5.html#HarakawaOH17,https://doi.org/10.1109/ACCESS.2017.2741098 +Hao-Chin Chang,Solving the Flexible Job Shop Scheduling Problem With Makespan Optimization by Using a Hybrid Taguchi-Genetic Algorithm.,2015,3,IEEE Access,,db/journals/access/access3.html#ChangCLC15,https://doi.org/10.1109/ACCESS.2015.2481463 +Xiaohong Huang,LNSC: A Security Model for Electric Vehicle and Charging Pile Management Based on Blockchain Ecosystem.,2018,6,IEEE Access,,db/journals/access/access6.html#HuangXWL18,https://doi.org/10.1109/ACCESS.2018.2812176 +Cristina Rottondi,An Overview on Networked Music Performance Technologies.,2016,4,IEEE Access,,db/journals/access/access4.html#RottondiCAS16,https://doi.org/10.1109/ACCESS.2016.2628440 +Zhengtian Wu,Solving Multiple Fleet Airline Disruption Problems Using a Distributed-Computation Approach to Integer Programming.,2017,5,IEEE Access,,db/journals/access/access5.html#WuLD17,https://doi.org/10.1109/ACCESS.2017.2747155 +Luis Garcia-Hernandez,Fault-Tolerant Certifiable Control for a V-Tail Remotely Piloted Aircraft System.,2017,5,IEEE Access,,db/journals/access/access5.html#Garcia-Hernandez17,https://doi.org/10.1109/ACCESS.2017.2758903 +Mu Zhou,Semi-Supervised Learning for Indoor Hybrid Fingerprint Database Calibration With Low Effort.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhouTTG17,https://doi.org/10.1109/ACCESS.2017.2678603 +Shengjie Xu,On Reliability of Smart Grid Neighborhood Area Networks.,2015,3,IEEE Access,,db/journals/access/access3.html#XuQH15,https://doi.org/10.1109/ACCESS.2015.2502250 +Jun Shen 0003,An Analytical Method of Network Service Scalability.,2018,6,IEEE Access,,db/journals/access/access6.html#ShenJZH18,https://doi.org/10.1109/ACCESS.2017.2789222 +Yong Yang 0001,Multi-Focus Image Fusion via Clustering PCA Based Joint Dictionary Learning.,2017,5,IEEE Access,,db/journals/access/access5.html#YangDHQWYS17,https://doi.org/10.1109/ACCESS.2017.2741500 +Ishan Nigam,Revisiting HEp-2 Cell Image Classification.,2015,3,IEEE Access,,db/journals/access/access3.html#NigamASV15,https://doi.org/10.1109/ACCESS.2015.2504125 +Daeil Kwon,IoT-Based Prognostics and Systems Health Management for Industrial Applications.,2016,4,IEEE Access,,db/journals/access/access4.html#KwonHFSP16,https://doi.org/10.1109/ACCESS.2016.2587754 +Xin Liu 0009,Spectrum Resource Optimization for NOMA-Based Cognitive Radio in 5G Communications.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuWLM18,https://doi.org/10.1109/ACCESS.2018.2828801 +Wei-Ming Huang,Temporal-Based Fuzzy Utility Mining.,2017,5,IEEE Access,,db/journals/access/access5.html#HuangHLCL17,https://doi.org/10.1109/ACCESS.2017.2774510 +Jiahong Wu,EC3: Cutting Cooling Energy Consumption Through Weather-Aware Geo-Scheduling Across Multiple Datacenters.,2018,6,IEEE Access,,db/journals/access/access6.html#WuJY18,https://doi.org/10.1109/ACCESS.2017.2781309 +Junqing Zhang,Experimental Study on Key Generation for Physical Layer Security in Wireless Communications.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhangWDMDHX16,https://doi.org/10.1109/ACCESS.2016.2604618 +Sanjeev Kumar Sharma,A New Sparse Signal-Matched Measurement Matrix for Compressive Sensing in UWB Communication.,2016,4,IEEE Access,,db/journals/access/access4.html#SharmaGB16,https://doi.org/10.1109/ACCESS.2016.2601779 +Bestoun S. Ahmed,Constrained Interaction Testing: A Systematic Literature Study.,2017,5,IEEE Access,,db/journals/access/access5.html#AhmedZAB17,https://doi.org/10.1109/ACCESS.2017.2771562 +Yong Wang 0015,The Influence of Attitude Dilution of Precision on the Observable Degree and Observability Analysis With Different Numbers of Visible Satellites in a Multi-Antenna GNSS/INS Attitude Determination System.,2018,6,IEEE Access,,db/journals/access/access6.html#WangZPFZ18,https://doi.org/10.1109/ACCESS.2018.2825338 +Iván García-Magariño,Survivability Strategies for Emerging Wireless Networks With Data Mining Techniques: a Case Study With NetLogo and RapidMiner.,2018,6,IEEE Access,,db/journals/access/access6.html#Garcia-Magarino18a,https://doi.org/10.1109/ACCESS.2018.2825954 +Hieu Trong Dao,Vertex Graph-Coloring-Based Pilot Assignment With Location-Based Channel Estimation for Massive MIMO Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#DaoK18,https://doi.org/10.1109/ACCESS.2018.2789860 +Tram Truong Huu,Dynamic Flow Scheduling With Uncertain Flow Duration in Optical Data Centers.,2017,5,IEEE Access,,db/journals/access/access5.html#HuuGG17,https://doi.org/10.1109/ACCESS.2017.2716345 +Armed Tusha,IQI Mitigation for Narrowband IoT Systems With OFDM-IM.,2018,6,IEEE Access,,db/journals/access/access6.html#TushaDA18,https://doi.org/10.1109/ACCESS.2018.2864892 +Zhiguo Wang,A Tighter Set-Membership Filter for Some Nonlinear Dynamic Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#WangSZP18,https://doi.org/10.1109/ACCESS.2018.2830350 +Shuwei Pang,An Exact Derivative Based Aero-Engine Modeling Method.,2018,6,IEEE Access,,db/journals/access/access6.html#PangLZ18,https://doi.org/10.1109/ACCESS.2018.2849752 +Qingmin Jia,The Collaboration for Content Delivery and Network Infrastructures: A Survey.,2017,5,IEEE Access,,db/journals/access/access5.html#JiaX0LL17,https://doi.org/10.1109/ACCESS.2017.2715824 +Lina Yuan,Multi-Antenna Enabled Cluster-Based Cooperation in Wireless Powered Communication Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#YuanBZLW17,https://doi.org/10.1109/ACCESS.2017.2726559 +Wenbo Shi,A Verifiable Sealed-Bid Multi-Qualitative-Attribute Based Auction Scheme in the Semi-Honest Model.,2017,5,IEEE Access,,db/journals/access/access5.html#ShiWWZLW17,https://doi.org/10.1109/ACCESS.2016.2624558 +Hao-wei Zhang,Adaptive Strong Tracking Square-Root Cubature Kalman Filter for Maneuvering Aircraft Tracking.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangXGLZ18,https://doi.org/10.1109/ACCESS.2018.2808170 +Jianmei Lei,A Novel Side Face Contour Extraction Algorithm for Driving Fatigue Statue Recognition.,2017,5,IEEE Access,,db/journals/access/access5.html#LeiHCLZL17,https://doi.org/10.1109/ACCESS.2017.2686424 +Jehad M. Hamamreh,OFDM-Subcarrier Index Selection for Enhancing Security and Reliability of 5G URLLC Services.,2017,5,IEEE Access,,db/journals/access/access5.html#HamamrehBA17,https://doi.org/10.1109/ACCESS.2017.2768558 +Qiang Liu 0010,A Pipe Routing Method Considering Vibration for Aero-Engine Using Kriging Model and NSGA-II.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuJ18,https://doi.org/10.1109/ACCESS.2018.2789361 +Claudio Badii,Predicting Available Parking Slots on Critical and Regular Services by Exploiting a Range of Open Data.,2018,6,IEEE Access,,db/journals/access/access6.html#BadiiNP18,https://doi.org/10.1109/ACCESS.2018.2864157 +Munzali Ahmed Abana,Coverage and Rate Analysis in Heterogeneous Cloud Radio Access Networks With Device-to-Device Communication.,2016,4,IEEE Access,,db/journals/access/access4.html#AbanaPZO16,https://doi.org/10.1109/ACCESS.2016.2569591 +Ahmed Alsohaily,The Omitted Dimension: Exploiting Multiuser Diversity in Multi-Radio Access Technology Data Cellular Communication Systems.,2016,4,IEEE Access,,db/journals/access/access4.html#AlsohailyS16,https://doi.org/10.1109/ACCESS.2016.2562024 +Moiz Ahmad,X-Ray Luminescence and X-Ray Fluorescence Computed Tomography: New Molecular Imaging Modalities.,2014,2,IEEE Access,,db/journals/access/access2.html#AhmadPBX14,https://doi.org/10.1109/ACCESS.2014.2353041 +Detian Zhang,Efficient Path Query Processing Through Cloud-Based Mapping Services.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangLLML17,https://doi.org/10.1109/ACCESS.2017.2725308 +Nhan Thanh Nguyen,Cell Coverage Extension With Orthogonal Random Precoding for Massive MIMO Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#NguyenL17,https://doi.org/10.1109/ACCESS.2017.2693023 +Ryan C. Gough,Continuous Electrowetting of Non-toxic Liquid Metal for RF Applications.,2014,2,IEEE Access,,db/journals/access/access2.html#GoughMDHSO14,https://doi.org/10.1109/ACCESS.2014.2350531 +Zhi-Ya Zhang,Broadband Circularly Polarized Bowtie Antenna Array Using Sequentially Rotated Technique.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangZZJF18,https://doi.org/10.1109/ACCESS.2018.2802938 +Ahmed M. Elmisery,A Fog Based Middleware for Automated Compliance With OECD Privacy Principles in Internet of Healthcare Things.,2016,4,IEEE Access,,db/journals/access/access4.html#ElmiseryRB16,https://doi.org/10.1109/ACCESS.2016.2631546 +Peizhe Li,A Game-Theoretic and Energy-Efficient Algorithm in an Improved Software-Defined Wireless Sensor Network.,2017,5,IEEE Access,,db/journals/access/access5.html#PeizheMWM17,https://doi.org/10.1109/ACCESS.2017.2727139 +Aythami Morales,Keystroke Biometrics Ongoing Competition.,2016,4,IEEE Access,,db/journals/access/access4.html#MoralesFTOGGAM16,https://doi.org/10.1109/ACCESS.2016.2626718 +Siva Karteek Bolisetti,RF Sensing Based Target Detector for Smart Sensing Within Internet of Things in Harsh Sensing Environments.,2017,5,IEEE Access,,db/journals/access/access5.html#BolisettiPSA17,https://doi.org/10.1109/ACCESS.2017.2728372 +Ibrahim A. Hemadeh,Multi-Set Space-Time Shift Keying and Space- Frequency Space-Time Shift Keying for Millimeter-Wave Communications.,2017,5,IEEE Access,,db/journals/access/access5.html#HemadehEWH17,https://doi.org/10.1109/ACCESS.2016.2642827 +Sheng Zhang 0006,A Family of Robust M-Shaped Error Weighted Least Mean Square Algorithms: Performance Analysis and Echo Cancellation Application.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangZZH17,https://doi.org/10.1109/ACCESS.2017.2722464 +Romain Favraud,Autonomous Self-Backhauled LTE Mesh Network With QoS Guarantee.,2018,6,IEEE Access,,db/journals/access/access6.html#FavraudCN18,https://doi.org/10.1109/ACCESS.2018.2794333 +Xin Liu 0009,A Multichannel Cognitive Radio System Design and Its Performance Optimization.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuWCXZLL18,https://doi.org/10.1109/ACCESS.2018.2810061 +Akshita Abrol,Power Optimization in 5G Networks: A Step Towards GrEEn Communication.,2016,4,IEEE Access,,db/journals/access/access4.html#AbrolJ16,https://doi.org/10.1109/ACCESS.2016.2549641 +Jorge Cabrejas,Non-Coherent Open-Loop MIMO Communications Over Temporally-Correlated Channels.,2016,4,IEEE Access,,db/journals/access/access4.html#CabrejasRCFGMY16,https://doi.org/10.1109/ACCESS.2016.2580680 +Yang Honghong,Multiple Objects Tracking With Improved Sparse Representation and Rank Based Dynamic Estimation.,2018,6,IEEE Access,,db/journals/access/access6.html#HonghongQCY18,https://doi.org/10.1109/ACCESS.2018.2855703 +Jiamin Li,Benefits of Beamforming Training Scheme in Distributed Large-Scale MIMO Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#LiWZY18,https://doi.org/10.1109/ACCESS.2018.2793845 +Azeem Iqbal,Analytical Modeling of End-to-End Delay in OpenFlow Based Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#IqbalJSKAI17,https://doi.org/10.1109/ACCESS.2016.2636247 +Lun Tang,Queue-Aware Dynamic Placement of Virtual Network Functions in 5G Access Network.,2018,6,IEEE Access,,db/journals/access/access6.html#TangYMHWC18,https://doi.org/10.1109/ACCESS.2018.2862632 +Xiao-Kun Wei,Hybrid Sub-Gridded Time-Domain Method for Ground Penetrating Radar Simulations Including Dispersive Materials.,2018,6,IEEE Access,,db/journals/access/access6.html#WeiSW18,https://doi.org/10.1109/ACCESS.2018.2813298 +Yanhui Zhou,A Generalized Extended State Observer for Supercapacitor State of Energy Estimation With Online Identified Model.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhouHLPLL18,https://doi.org/10.1109/ACCESS.2018.2837036 +Wei Feng 0008,Performance Evaluation of Acoustic Model-Based Blind Channel Estimation in Ocean Waveguides.,2018,6,IEEE Access,,db/journals/access/access6.html#FengLYZ18,https://doi.org/10.1109/ACCESS.2018.2829219 +Xin Deng 0002,Hierarchical Complexity Control of HEVC for Live Video Encoding.,2016,4,IEEE Access,,db/journals/access/access4.html#DengXL16,https://doi.org/10.1109/ACCESS.2016.2612691 +Zhiguo Zeng,A Model-Based Reliability Metric Considering Aleatory and Epistemic Uncertainty.,2017,5,IEEE Access,,db/journals/access/access5.html#ZengKWZ17,https://doi.org/10.1109/ACCESS.2017.2733839 +Qiong Chang,Real-Time Stereo Vision System: A Multi-Block Matching on GPU.,2018,6,IEEE Access,,db/journals/access/access6.html#ChangM18,https://doi.org/10.1109/ACCESS.2018.2859445 +Alberto Albiol,Design of a Remote Signal Processing Student Lab.,2017,5,IEEE Access,,db/journals/access/access5.html#AlbiolCB17,https://doi.org/10.1109/ACCESS.2017.2736165 +Hui Yuan,A Region-Wised Medium Transmission Based Image Dehazing Method.,2017,5,IEEE Access,,db/journals/access/access5.html#YuanLGS17,https://doi.org/10.1109/ACCESS.2017.2660302 +En Yuan,Ranging Method for Navigation Based on High-Speed Frequency-Hopping Signal.,2018,6,IEEE Access,,db/journals/access/access6.html#YuanQLWC18,https://doi.org/10.1109/ACCESS.2017.2787801 +Yongjun Li,User Identification Based on Display Names Across Online Social Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#LiPJZX17,https://doi.org/10.1109/ACCESS.2017.2744646 +Di Guo,Improved Reconstruction of Low Intensity Magnetic Resonance Spectroscopy With Weighted Low Rank Hankel Matrix Completion.,2018,6,IEEE Access,,db/journals/access/access6.html#GuoQ18,https://doi.org/10.1109/ACCESS.2018.2794478 +Lawrence E. Holloway,A Multi-Institutional Approach to Delivering Shared Curricula for Developing a Next-Generation Energy Workforce.,2017,5,IEEE Access,,db/journals/access/access5.html#HollowayQMBBCDD17,https://doi.org/10.1109/ACCESS.2017.2664419 +Paramananda Joshi,Output Power Levels of 4G User Equipment and Implications on Realistic RF EMF Exposure Assessments.,2017,5,IEEE Access,,db/journals/access/access5.html#JoshiCTLT17,https://doi.org/10.1109/ACCESS.2017.2682422 +Seokwon Lee,Effect of Unpredictable Interference on MU-MIMO Systems in HetNet.,2018,6,IEEE Access,,db/journals/access/access6.html#LeeKPCH18,https://doi.org/10.1109/ACCESS.2017.2778274 +Junyi Jiang,Video Streaming in the Multiuser Indoor Visible Light Downlink.,2015,3,IEEE Access,,db/journals/access/access3.html#JiangHJZWXHH15,https://doi.org/10.1109/ACCESS.2015.2513010 +Li He 0002,Wearable Depth Camera: Monocular Depth Estimation via Sparse Optimization Under Weak Supervision.,2018,6,IEEE Access,,db/journals/access/access6.html#HeCZZW18,https://doi.org/10.1109/ACCESS.2018.2857703 +Taimur Hafeez,Detection and Mitigation of Congestion in SDN Enabled Data Center Networks: A Survey.,2018,6,IEEE Access,,db/journals/access/access6.html#HafeezAAM18,https://doi.org/10.1109/ACCESS.2017.2780122 +George R. MacCartney,Indoor Office Wideband Millimeter-Wave Propagation Measurements and Channel Models at 28 and 73 GHz for Ultra-Dense 5G Wireless Networks.,2015,3,IEEE Access,,db/journals/access/access3.html#MacCartneyRSD15,https://doi.org/10.1109/ACCESS.2015.2486778 +Fenglei Fan,Learning From Pseudo-Randomness With an Artificial Neural Network-Does God Play Pseudo-Dice?,2018,6,IEEE Access,,db/journals/access/access6.html#FanW18,https://doi.org/10.1109/ACCESS.2018.2826448 +Wissam Fawaz,Unmanned Aerial Vehicles as Store-Carry-Forward Nodes for Vehicular Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#FawazAAK17,https://doi.org/10.1109/ACCESS.2017.2765498 +En Fan,Neutrosophic Hough Transform-Based Track Initiation Method for Multiple Target Tracking.,2018,6,IEEE Access,,db/journals/access/access6.html#FanXPHL18,https://doi.org/10.1109/ACCESS.2018.2814827 +Jiang Wang 0003,From Partition-Based Clustering to Density-Based Clustering: Fast Find Clusters With Diverse Shapes and Densities in Spatial Databases.,2018,6,IEEE Access,,db/journals/access/access6.html#WangZZZWZ18,https://doi.org/10.1109/ACCESS.2017.2780109 +Wei Zhou 0003,Automatic Detection of Exudates in Digital Color Fundus Images Using Superpixel Multi-Feature Classification.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhouWYD17,https://doi.org/10.1109/ACCESS.2017.2740239 +Wen-Kuang Kuo,Energy Efficiency Optimization for Mobile Ad Hoc Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#KuoC16,https://doi.org/10.1109/ACCESS.2016.2538269 +Chien-Chun Cheng,On Simultaneous Wireless Information and Power Transfer for Receive Spatial Modulation.,2017,5,IEEE Access,,db/journals/access/access5.html#ChengRGZ17,https://doi.org/10.1109/ACCESS.2017.2762524 +Liang Zhao 0005,Parameter-Free Incremental Co-Clustering for Multi-Modal Data in Cyber-Physical-Social Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhaoCY17,https://doi.org/10.1109/ACCESS.2017.2758798 +Jun Zhang,A Hybrid Mechanism for Innovation Diffusion in Social Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhangXNBBSW16,https://doi.org/10.1109/ACCESS.2016.2610101 +Damian Dechev,LC/DC: Lockless Containers and Data Concurrency a Novel Nonblocking Container Library for Multicore Applications.,2013,1,IEEE Access,,db/journals/access/access1.html#DechevLF13,https://doi.org/10.1109/ACCESS.2013.2282500 +Korhan Cengiz,Energy Aware Multi-Hop Routing Protocol for WSNs.,2018,6,IEEE Access,,db/journals/access/access6.html#CengizD18,https://doi.org/10.1109/ACCESS.2017.2784542 +Guan Xu,Surface Reconstruction Adopting Laser Plane of Linear Path System Registered by Parallel Constraint.,2018,6,IEEE Access,,db/journals/access/access6.html#XuCLC18,https://doi.org/10.1109/ACCESS.2018.2851948 +Yanbin Zou,An Iterative Method for Moving Target Localization Using TDOA and FDOA Measurements.,2018,6,IEEE Access,,db/journals/access/access6.html#ZouLW18,https://doi.org/10.1109/ACCESS.2017.2785182 +Xin Liu 0003,Performance Evaluation of a Priori Information on Reconstruction of Fluorescence Molecular Tomography.,2015,3,IEEE Access,,db/journals/access/access3.html#LiuYL15,https://doi.org/10.1109/ACCESS.2015.2402673 +Xi Chen,GNSS Augmentation by FM Radio Symbiosis.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenZJW18,https://doi.org/10.1109/ACCESS.2018.2799678 +Qing-Ling Yang,SIW Multibeam Array for 5G Mobile Devices.,2016,4,IEEE Access,,db/journals/access/access4.html#YangBKSW16,https://doi.org/10.1109/ACCESS.2016.2578458 +Changying Wu,Methodology to Reduce the Number of Switches in Frequency Reconfigurable Antennas With Massive Switches.,2018,6,IEEE Access,,db/journals/access/access6.html#WuYLZY18,https://doi.org/10.1109/ACCESS.2018.2812139 +Joan Adrià Ruiz De Azua,Internet of Satellites (IoSat): Analysis of Network Models and Routing Protocol Requirements.,2018,6,IEEE Access,,db/journals/access/access6.html#AzuaCC18,https://doi.org/10.1109/ACCESS.2018.2823983 +Peng Liu 0022,Distributed Kalman Filtering With Finite-Time Max-Consensus Protocol.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuTZ18,https://doi.org/10.1109/ACCESS.2018.2809451 +Long-jun Dong,Pre-Alarm System Based on Real-Time Monitoring and Numerical Simulation Using Internet of Things and Cloud Computing for Tailings Dam in Mines.,2017,5,IEEE Access,,db/journals/access/access5.html#DongSSLZ17,https://doi.org/10.1109/ACCESS.2017.2753379 +Hung Viet Nguyen,A Network-Coding Aided Road-Map of Large-Scale Near-Capacity Cooperative Communications.,2018,6,IEEE Access,,db/journals/access/access6.html#NguyenNLXH18,https://doi.org/10.1109/ACCESS.2018.2814636 +Yaoguang Shi,Wearable Thermoelectric Generator With Copper Foam as the Heat Sink for Body Heat Harvesting.,2018,6,IEEE Access,,db/journals/access/access6.html#ShiWMC18,https://doi.org/10.1109/ACCESS.2018.2863018 +Hengliang Tan,Patch-Based Principal Covariance Discriminative Learning for Image Set Classification.,2017,5,IEEE Access,,db/journals/access/access5.html#TanG17,https://doi.org/10.1109/ACCESS.2017.2733718 +Jun Long,Reliability Guaranteed Efficient Data Gathering in Wireless Sensor Networks.,2015,3,IEEE Access,,db/journals/access/access3.html#LongDOLH15,https://doi.org/10.1109/ACCESS.2015.2426794 +Guodong Li,Performance Analysis and Evaluation for Active Antenna Arrays Under Three-Dimensional Wireless Channel Model.,2018,6,IEEE Access,,db/journals/access/access6.html#LiWCLTX18,https://doi.org/10.1109/ACCESS.2018.2791429 +Wei Wu 0012,Simulation and Experimental Analysis of Hydraulic Directional Control for Displacement Controlled System.,2018,6,IEEE Access,,db/journals/access/access6.html#WuY18,https://doi.org/10.1109/ACCESS.2017.2777958 +Liaoruo Huang,Optimizing Segment Routing With the Maximum SLD Constraint Using Openflow.,2018,6,IEEE Access,,db/journals/access/access6.html#HuangSSC18,https://doi.org/10.1109/ACCESS.2018.2826925 +Tasiransurini Ab Rahman,Single-Agent Finite Impulse Response Optimizer for Numerical Optimization Problems.,2018,6,IEEE Access,,db/journals/access/access6.html#RahmanIAZA18,https://doi.org/10.1109/ACCESS.2017.2777894 +Aishwari Talhan,Pneumatic Actuation in Haptic-Enabled Medical Simulators: A Review.,2018,6,IEEE Access,,db/journals/access/access6.html#TalhanJ18,https://doi.org/10.1109/ACCESS.2017.2787601 +Godfrey Anuga Akpakwu,A Survey on 5G Networks for the Internet of Things: Communication Technologies and Challenges.,2018,6,IEEE Access,,db/journals/access/access6.html#AkpakwuSHA18,https://doi.org/10.1109/ACCESS.2017.2779844 +Yuan Ren,Wireless Information and Energy Transfer in Multi-Cluster MIMO Uplink Networks Through Opportunistic Interference Alignment.,2016,4,IEEE Access,,db/journals/access/access4.html#RenLGY16,https://doi.org/10.1109/ACCESS.2016.2580681 +Rui Liu,GPU-Based Acceleration for Interior Tomography.,2014,2,IEEE Access,,db/journals/access/access2.html#LiuLY14,https://doi.org/10.1109/ACCESS.2014.2340372 +Peipei Sui,A Study of Enhancing Privacy for Intelligent Transportation Systems: $k$ -Correlation Privacy Model Against Moving Preference Attacks for Location Trajectory Data.,2017,5,IEEE Access,,db/journals/access/access5.html#SuiLB17,https://doi.org/10.1109/ACCESS.2017.2767641 +Jia Xu 0003,Improving Both Quantity and Quality: Incentive Mechanism for Social Mobile Crowdsensing Architecture.,2018,6,IEEE Access,,db/journals/access/access6.html#XuBGXJ18,https://doi.org/10.1109/ACCESS.2018.2860900 +Tianhan Gao,An Anonymous Authentication Scheme based on PMIPv6 for VANETs.,2018,6,IEEE Access,,db/journals/access/access6.html#GaoDGW18,https://doi.org/10.1109/ACCESS.2018.2810096 +Chi Harold Liu,Scalable and Efficient Diagnosis for 5G Data Center Network Traffic.,2014,2,IEEE Access,,db/journals/access/access2.html#LiuF14,https://doi.org/10.1109/ACCESS.2014.2349000 +Moayad Aloqaily,Multiagent/Multiobjective Interaction Game System for Service Provisioning in Vehicular Cloud.,2016,4,IEEE Access,,db/journals/access/access4.html#AloqailyKM16,https://doi.org/10.1109/ACCESS.2016.2575038 +José Carlos Marinello Filho,Uplink Performance of Single-Carrier Receiver in Massive MIMO With Pilot Contamination.,2017,5,IEEE Access,,db/journals/access/access5.html#FilhoPA17,https://doi.org/10.1109/ACCESS.2017.2703632 +Zheng Fang,A Novel Statistical Multi-Channel Busy Recognition Mechanism in the MAC Layer for Airborne Tactical Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#FangZZZ17,https://doi.org/10.1109/ACCESS.2017.2736598 +Ming Liu,Full-Duplex Aided User Virtualization for Mobile Edge Computing in 5G Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuMLM18,https://doi.org/10.1109/ACCESS.2017.2786662 +Muyang Qin,Analytical Parameter Extraction for Small-Signal Equivalent Circuit of 3D FinFET Into Sub-THz Range.,2018,6,IEEE Access,,db/journals/access/access6.html#QinSLS18,https://doi.org/10.1109/ACCESS.2018.2822672 +Gerardo Santillán Martínez,An Integrated Implementation Methodology of a Lifecycle-Wide Tracking Simulation Architecture.,2018,6,IEEE Access,,db/journals/access/access6.html#MartinezKRSV18,https://doi.org/10.1109/ACCESS.2018.2811845 +Wenhui Li,Human Action Recognition Based on Selected Spatio-Temporal Features via Bidirectional LSTM.,2018,6,IEEE Access,,db/journals/access/access6.html#LiNS18,https://doi.org/10.1109/ACCESS.2018.2863943 +Weiwei Jiang,The Impact of the Transportation Network Companies on the Taxi Industry: Evidence from Beijing's GPS Taxi Trajectory Data.,2018,6,IEEE Access,,db/journals/access/access6.html#JiangZ18a,https://doi.org/10.1109/ACCESS.2018.2810140 +Songchao Tan,Visual Information Evaluation With Entropy of Primitive.,2018,6,IEEE Access,,db/journals/access/access6.html#TanWZWWMG18,https://doi.org/10.1109/ACCESS.2018.2825368 +Amjad Mehmood,Secure Knowledge and Cluster-Based Intrusion Detection Mechanism for Smart Wireless Sensor Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#MehmoodKUAAS18,https://doi.org/10.1109/ACCESS.2017.2770020 +Taiyang Wu,An Autonomous Wireless Body Area Network Implementation Towards IoT Connected Healthcare Applications.,2017,5,IEEE Access,,db/journals/access/access5.html#WuWRY17,https://doi.org/10.1109/ACCESS.2017.2716344 +Partha Pratim Ray,Internet of Things for Disaster Management: State-of-the-Art and Prospects.,2017,5,IEEE Access,,db/journals/access/access5.html#RayMS17,https://doi.org/10.1109/ACCESS.2017.2752174 +Mehdi M. Molu,A Novel Equivalent Definition of Modified Bessel Functions for Performance Analysis of Multi-Hop Wireless Communication Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#MoluXKZT17,https://doi.org/10.1109/ACCESS.2017.2685085 +Qiao Cheng,Near-Field Millimeter-Wave Phased Array Imaging With Compressive Sensing.,2017,5,IEEE Access,,db/journals/access/access5.html#ChengAH17,https://doi.org/10.1109/ACCESS.2017.2753881 +Hoa Tran-Dang,An Information Framework for Internet of Things Services in Physical Internet.,2018,6,IEEE Access,,db/journals/access/access6.html#Tran-DangK18,https://doi.org/10.1109/ACCESS.2018.2864310 +Yang Yang 0001,LOCASS: Local Optimal Caching Algorithm With Social Selfishness for Mixed Cooperative and Selfish Devices.,2018,6,IEEE Access,,db/journals/access/access6.html#YangWCWCY18,https://doi.org/10.1109/ACCESS.2018.2835368 +Raul Sánchez-Reillo,Forensic Validation of Biometrics Using Dynamic Handwritten Signatures.,2018,6,IEEE Access,,db/journals/access/access6.html#Sanchez-ReilloL18,https://doi.org/10.1109/ACCESS.2018.2849503 +Burkni Palsson,Hyperspectral Unmixing Using a Neural Network Autoencoder.,2018,6,IEEE Access,,db/journals/access/access6.html#PalssonSSU18,https://doi.org/10.1109/ACCESS.2018.2818280 +Wanjoo Park,Gamma EEG Correlates of Haptic Preferences for a Dial Interface.,2018,6,IEEE Access,,db/journals/access/access6.html#ParkKKLK18,https://doi.org/10.1109/ACCESS.2018.2827023 +Alireza Khodaee,The Effects of Blank Geometry on Gear Rolling for Large Gear Modules: Experiments and Finite Element Simulations.,2018,6,IEEE Access,,db/journals/access/access6.html#KhodaeeMH18,https://doi.org/10.1109/ACCESS.2018.2847737 +Ahmed E. Khaled,"IoT-DDL-Device Description Language for the ""T"" in IoT.",2018,6,IEEE Access,,db/journals/access/access6.html#KhaledHLL18,https://doi.org/10.1109/ACCESS.2018.2825295 +Vo Thi Bich Tram,Vehicle-to-Vehicle Distance Estimation Using a Low-Resolution Camera Based on Visible Light Communications.,2018,6,IEEE Access,,db/journals/access/access6.html#TramY18,https://doi.org/10.1109/ACCESS.2018.2793306 +Izzeldin Idris Abdalla,Analysis of Tubular Linear Motors for Different Shapes of Magnets.,2018,6,IEEE Access,,db/journals/access/access6.html#AbdallaIN18,https://doi.org/10.1109/ACCESS.2017.2775863 +Jaime Laviada,Multistatic Millimeter-Wave Imaging by Multiview Portable Camera.,2017,5,IEEE Access,,db/journals/access/access5.html#LaviadaAL17,https://doi.org/10.1109/ACCESS.2017.2753578 +Zhigang Sun,Fast Top-K Graph Similarity Search Via Representative Matrices.,2018,6,IEEE Access,,db/journals/access/access6.html#SunHC18,https://doi.org/10.1109/ACCESS.2018.2819426 +Eren Balevi,Optimizing the Number of Fog Nodes for Cloud-Fog-Thing Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#BaleviG18a,https://doi.org/10.1109/ACCESS.2018.2808598 +Nafees Mansoor,RARE: A Spectrum Aware Cross-Layer MAC Protocol for Cognitive Radio Ad-Hoc Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#MansoorIZR18,https://doi.org/10.1109/ACCESS.2018.2807781 +Thomas H. Johnson,A Comparison of Ballistic Resistance Testing Techniques in the Department of Defense.,2014,2,IEEE Access,,db/journals/access/access2.html#JohnsonFHB14,https://doi.org/10.1109/ACCESS.2014.2377633 +Woonggy Kim,Standalone OPC UA Wrapper for Industrial Monitoring and Control Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#KimS18,https://doi.org/10.1109/ACCESS.2018.2852792 +Sheng Zeng,Interference Alignment Assisted by D2D Communication for the Downlink of MIMO Heterogeneous Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ZengWQW18,https://doi.org/10.1109/ACCESS.2018.2831907 +Mehdi M. Molu,On Convolutional Lattice Codes and Lattice Decoding Using Trellis Structure.,2016,4,IEEE Access,,db/journals/access/access4.html#MoluCBB16,https://doi.org/10.1109/ACCESS.2016.2632038 +Ting Li,A Cooperative-Based Model for Smart-Sensing Tasks in Fog Computing.,2017,5,IEEE Access,,db/journals/access/access5.html#LiLGL17,https://doi.org/10.1109/ACCESS.2017.2756826 +Vishal Sharma,ISMA: Intelligent Sensing Model for Anomalies Detection in Cross Platform OSNs With a Case Study on IoT.,2017,5,IEEE Access,,db/journals/access/access5.html#SharmaYK17,https://doi.org/10.1109/ACCESS.2017.2666823 +Peng Zhao 0003,An Improved Full-Wave Multilevel Green's Function Interpolation Method With RBF-QR Technique for Fast Field Evaluation.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhaoCW17,https://doi.org/10.1109/ACCESS.2017.2710160 +Huijie Zhang,SAMP-Viz: An Interactive Multivariable Volume Visualization Framework Based on Subspace Analysis and Multidimensional Projection.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangLQHC17,https://doi.org/10.1109/ACCESS.2017.2696739 +Luis A. Vasquez-Toledo,Teletraffic Analysis of OFDMA Cellular Systems With Persistent VoIP Users and Maximum SIR Scheduling Based on Order Statistics.,2018,6,IEEE Access,,db/journals/access/access6.html#Vasquez-ToledoL18,https://doi.org/10.1109/ACCESS.2018.2826526 +Ke Lai,Secure Transmission With Randomized Constellation Rotation for Downlink Sparse Code Multiple Access System.,2018,6,IEEE Access,,db/journals/access/access6.html#LaiLWCLX18,https://doi.org/10.1109/ACCESS.2017.2772259 +Sheng Ge,A Brain-Computer Interface Based on a Few-Channel EEG-fNIRS Bimodal System.,2017,5,IEEE Access,,db/journals/access/access5.html#GeYWLGLYW17,https://doi.org/10.1109/ACCESS.2016.2637409 +Qin Guo,Error Analysis of Least-Squares lq-Regularized Regression Learning Algorithm With the Non-Identical and Dependent Samples.,2018,6,IEEE Access,,db/journals/access/access6.html#GuoY18,https://doi.org/10.1109/ACCESS.2018.2863600 +Chao Song,One-Request Scheme for M2P Data Transmissions in Software-Defined IoT Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#SongQL18,https://doi.org/10.1109/ACCESS.2018.2806621 +Xi Chen 0005,Compact and Wideband Directional Circularly Polarized Distributed Patch Antenna With High Efficiency.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenWWLF17,https://doi.org/10.1109/ACCESS.2017.2735961 +Weizhi Meng,When Intrusion Detection Meets Blockchain Technology: A Review.,2018,6,IEEE Access,,db/journals/access/access6.html#MengTWWH18,https://doi.org/10.1109/ACCESS.2018.2799854 +Yingqian Wang,Disparity Estimation for Camera Arrays Using Reliability Guided Disparity Propagation.,2018,6,IEEE Access,,db/journals/access/access6.html#WangYMXA18,https://doi.org/10.1109/ACCESS.2018.2827085 +Stefania Conti,Battery Management in a Green Fog-Computing Node: a Reinforcement-Learning Approach.,2017,5,IEEE Access,,db/journals/access/access5.html#ContiFNRS17,https://doi.org/10.1109/ACCESS.2017.2755588 +Rafiullah Khan,Design and Implementation of Security Gateway for Synchrophasor Based Real-Time Control and Monitoring in Smart Grid.,2017,5,IEEE Access,,db/journals/access/access5.html#KhanMLS17,https://doi.org/10.1109/ACCESS.2017.2716440 +Tianqiao Zhang,A Novel Technique for Robust and Fast Segmentation of Corneal Layer Interfaces Based on Spectral-Domain Optical Coherence Tomography Imaging.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangEWJWLH17,https://doi.org/10.1109/ACCESS.2017.2712767 +Tsung-Han Tsai,An Efficient ECG Lossless Compression System for Embedded Platforms With Telemedicine Applications.,2018,6,IEEE Access,,db/journals/access/access6.html#TsaiK18,https://doi.org/10.1109/ACCESS.2018.2858857 +Afra Al Ruzaiqi,Organic Thin Film Transistors With Multi-Finger Contacts as Voltage Amplifiers.,2018,6,IEEE Access,,db/journals/access/access6.html#RuzaiqiIG18,https://doi.org/10.1109/ACCESS.2018.2863043 +Yejun He,A Novel Broadband Dual-Polarized Antenna Element for LTE700 MHz/GSM850 MHz/GSM900 MHz Applications.,2016,4,IEEE Access,,db/journals/access/access4.html#HeYS16,https://doi.org/10.1109/ACCESS.2016.2597318 +Xing Wang 0005,KVLMM: A Trajectory Prediction Method Based on a Variable-Order Markov Model With Kernel Smoothing.,2018,6,IEEE Access,,db/journals/access/access6.html#WangJCW18,https://doi.org/10.1109/ACCESS.2018.2829545 +Miaomiao Zhang,A New Time Series Representation Model and Corresponding Similarity Measure for Fast and Accurate Similarity Detection.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangP17,https://doi.org/10.1109/ACCESS.2017.2764633 +Jian Wang 0010,Convergence Analysis of Caputo-Type Fractional Order Complex-Valued Neural Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#WangYZSLW17,https://doi.org/10.1109/ACCESS.2017.2679185 +Roberto Morabito,Virtualization on Internet of Things Edge Devices With Container Technologies: A Performance Evaluation.,2017,5,IEEE Access,,db/journals/access/access5.html#Morabito17,https://doi.org/10.1109/ACCESS.2017.2704444 +Hui Gu,A New Quadri-Polarization Reconfigurable Circular Patch Antenna.,2016,4,IEEE Access,,db/journals/access/access4.html#GuWGS16,https://doi.org/10.1109/ACCESS.2016.2600250 +Igor Ziger,Determination of Core Losses in Open-Core Power Voltage Transformers.,2018,6,IEEE Access,,db/journals/access/access6.html#ZigerTS18,https://doi.org/10.1109/ACCESS.2018.2838446 +Keqiong Chen,Simulated Feedback Mechanism-Based Rotary Kiln Burning State Cognition Intelligence Method.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenWLLZ17,https://doi.org/10.1109/ACCESS.2017.2683480 +Chaolong Zhang,Analog Circuit Incipient Fault Diagnosis Method Using DBN Based Features Extraction.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangHYX18,https://doi.org/10.1109/ACCESS.2018.2823765 +Xinghua Li,Efficient and Consistent Key Extraction Based on Received Signal Strength for Vehicular Ad Hoc Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#LiLYM17,https://doi.org/10.1109/ACCESS.2017.2685627 +Ye Li 0004,On Design and Efficient Decoding of Sparse Random Linear Network Codes.,2017,5,IEEE Access,,db/journals/access/access5.html#LiCB17,https://doi.org/10.1109/ACCESS.2017.2741972 +Xi Chen 0005,Low-Profile and Wide-Beamwidth Dual-Polarized Distributed Microstrip Antenna.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenQGF17,https://doi.org/10.1109/ACCESS.2017.2661278 +Wei Wang 0021,Edge Caching at Base Stations With Device-to-Device Offloading.,2017,5,IEEE Access,,db/journals/access/access5.html#WangLGHSZ17,https://doi.org/10.1109/ACCESS.2017.2679198 +Weitao Fang,Background Subtraction Based on Random Superpixels Under Multiple Scales for Video Analytics.,2018,6,IEEE Access,,db/journals/access/access6.html#FangZZSTH18,https://doi.org/10.1109/ACCESS.2018.2846678 +Tareq Al-Moslmi,Approaches to Cross-Domain Sentiment Analysis: A Systematic Literature Review.,2017,5,IEEE Access,,db/journals/access/access5.html#Al-MoslmiOAA17,https://doi.org/10.1109/ACCESS.2017.2690342 +Eunjeong Park,Requirement Analysis and Implementation of Smart Emergency Medical Services.,2018,6,IEEE Access,,db/journals/access/access6.html#ParkKNC18,https://doi.org/10.1109/ACCESS.2018.2861711 +Jingang Lai,Distributed Multiagent-Oriented Average Control for Voltage Restoration and Reactive Power Sharing of Autonomous Microgrids.,2018,6,IEEE Access,,db/journals/access/access6.html#LaiLLT18,https://doi.org/10.1109/ACCESS.2018.2829881 +Aleksandr Ometov,Modeling Unreliable Operation of mmWave-Based Data Sessions in Mission-Critical PPDR Services.,2017,5,IEEE Access,,db/journals/access/access5.html#OmetovSGAGK17,https://doi.org/10.1109/ACCESS.2017.2756690 +Liufeng Du,Efficient Forecasting Scheme and Optimal Delivery Approach of Energy for the Energy Internet.,2018,6,IEEE Access,,db/journals/access/access6.html#DuZTL18,https://doi.org/10.1109/ACCESS.2018.2812211 +Baogang Li,Energy Efficiency of Proactive Eavesdropping for Multiple Links Wireless System.,2018,6,IEEE Access,,db/journals/access/access6.html#LiYZLZ18,https://doi.org/10.1109/ACCESS.2018.2837059 +Snigdha Tariyal,Deep Dictionary Learning.,2016,4,IEEE Access,,db/journals/access/access4.html#TariyalMSV16,https://doi.org/10.1109/ACCESS.2016.2611583 +Hisham Alshaheen,Energy Saving and Reliability for Wireless Body Sensor Networks (WBSN).,2018,6,IEEE Access,,db/journals/access/access6.html#AlshaheenT18,https://doi.org/10.1109/ACCESS.2018.2817025 +Guangzhi Fu,Adaptive Kalman Estimation of Phase Holdup of Water-Continuous Oil-Water Two-Phase Flow.,2017,5,IEEE Access,,db/journals/access/access5.html#FuTWD17,https://doi.org/10.1109/ACCESS.2017.2670549 +Meichen Yan,FORM and Out-Crossing Combined Time-Variant Reliability Analysis Method for Ship Structures.,2018,6,IEEE Access,,db/journals/access/access6.html#YanSLRYW18,https://doi.org/10.1109/ACCESS.2017.2773575 +Ebrahim Soujeri,Frequency Index Modulation for Low Complexity Low Energy Communication Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#SoujeriKAH17,https://doi.org/10.1109/ACCESS.2017.2713721 +Mohamad Nazrin Napiah,Compression Header Analyzer Intrusion Detection System (CHA - IDS) for 6LoWPAN Communication Protocol.,2018,6,IEEE Access,,db/journals/access/access6.html#NapiahIRA18,https://doi.org/10.1109/ACCESS.2018.2798626 +Chengyuan Sun,An Improved Principal Component Regression for Quality-Related Process Monitoring of Industrial Control Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#SunH17,https://doi.org/10.1109/ACCESS.2017.2761418 +Yanheng Zhang,Design and Implementation of a Two-Wheel and Hopping Robot With a Linkage Mechanism.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangZWLZ18,https://doi.org/10.1109/ACCESS.2018.2859840 +Peng Yao,Three-Dimensional Path Planning for AUV Based on Interfered Fluid Dynamical System Under Ocean Current (June 2018).,2018,6,IEEE Access,,db/journals/access/access6.html#YaoZ18,https://doi.org/10.1109/ACCESS.2018.2861468 +David López-Pérez,Long Term Evolution-Wireless Local Area Network Aggregation Flow Control.,2016,4,IEEE Access,,db/journals/access/access4.html#Lopez-PerezLWPL16,https://doi.org/10.1109/ACCESS.2016.2643690 +Jie Li,Geo-Social Distance-Based Data Dissemination for Socially Aware Networking.,2016,4,IEEE Access,,db/journals/access/access4.html#LiNJXLT16,https://doi.org/10.1109/ACCESS.2016.2553698 +Hongshun Liu,Influence of Hybrid Reactive Power Compensation on the Secondary Arc of Ultra-High-Voltage Transmission Lines (May 2018).,2018,6,IEEE Access,,db/journals/access/access6.html#LiuYJWHYW18,https://doi.org/10.1109/ACCESS.2018.2850812 +Dong-Sheng Xu,Early-Warning System With Quasi-Distributed Fiber Optic Sensor Networks and Cloud Computing for Soil Slopes.,2017,5,IEEE Access,,db/journals/access/access5.html#XuDBL17,https://doi.org/10.1109/ACCESS.2017.2771494 +Rosanna Campagna,A Semi-Automatic Numerical Algorithm for Turing Patterns Formation in a Reaction-Diffusion Model.,2018,6,IEEE Access,,db/journals/access/access6.html#CampagnaCGST18,https://doi.org/10.1109/ACCESS.2017.2780324 +Peitao Cheng,A New Single Image Super-Resolution Method Based on the Infinite Mixture Model.,2017,5,IEEE Access,,db/journals/access/access5.html#ChengQWZ17,https://doi.org/10.1109/ACCESS.2017.2664103 +Fenggang Sun,An Efficient Dictionary Learning-Based 2-D DOA Estimation Without Pair Matching for Co-Prime Parallel Arrays.,2018,6,IEEE Access,,db/journals/access/access6.html#SunLGZ18,https://doi.org/10.1109/ACCESS.2018.2805168 +De-Hui Lin,Mean-Square Asymptotic Synchronization Control of Discrete-Time Neural Networks With Restricted Disturbances and Missing Data.,2018,6,IEEE Access,,db/journals/access/access6.html#LinWCL18,https://doi.org/10.1109/ACCESS.2017.2779159 +Shiping Zhu,Fractal Lossy Hyperspectral Image Coding Algorithm Based on Prediction.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhuZ17,https://doi.org/10.1109/ACCESS.2017.2755681 +Ubaidullah Rajput,A Hierarchical Privacy Preserving Pseudonymous Authentication Protocol for VANET.,2016,4,IEEE Access,,db/journals/access/access4.html#RajputAO16,https://doi.org/10.1109/ACCESS.2016.2620999 +Guangming Nie,Byzantine Defense in Collaborative Spectrum Sensing via Bayesian Learning.,2017,5,IEEE Access,,db/journals/access/access5.html#NieDZW17,https://doi.org/10.1109/ACCESS.2017.2756992 +Zhimin Yu,A Practical Public Key Encryption Scheme Based on Learning Parity With Noise.,2018,6,IEEE Access,,db/journals/access/access6.html#YuGJGC18,https://doi.org/10.1109/ACCESS.2018.2840119 +Changhui Wang,Adaptive Fuzzy Sliding Mode Observer for Cylinder Mass Flow Estimation in SI Engines.,2018,6,IEEE Access,,db/journals/access/access6.html#WangLL18,https://doi.org/10.1109/ACCESS.2018.2840519 +Ahmed Ben Said,A Deep Learning Approach for Vital Signs Compression and Energy Efficient Delivery in mhealth Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#SaidATAMEHO18,https://doi.org/10.1109/ACCESS.2018.2844308 +Jing-Jing Li,A Multi-Label Learning Method Using Affinity Propagation and Support Vector Machine.,2017,5,IEEE Access,,db/journals/access/access5.html#LiAGY17,https://doi.org/10.1109/ACCESS.2017.2676761 +Xiaobo Dou,A Distributed Voltage Control Strategy for Multi-Microgrid Active Distribution Networks Considering Economy and Response Speed.,2018,6,IEEE Access,,db/journals/access/access6.html#DouXHSQWX18,https://doi.org/10.1109/ACCESS.2018.2837082 +Gustavo Anjos,Exploiting the Reciprocal Channel for Discrete Jamming to Secure Wireless Communications Against Multiple-Antenna Eavesdropper.,2018,6,IEEE Access,,db/journals/access/access6.html#AnjosCSGGV18,https://doi.org/10.1109/ACCESS.2018.2845839 +Md. Mahmud Hasan,Optimal Trust System Placement in Smart Grid SCADA Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#HasanM16,https://doi.org/10.1109/ACCESS.2016.2564418 +Young Sam Lee,A Light-Weight Rapid Control Prototyping System Based on Open Source Hardware.,2017,5,IEEE Access,,db/journals/access/access5.html#LeeJH17,https://doi.org/10.1109/ACCESS.2017.2715184 +Akhil Gupta,A Survey of 5G Network: Architecture and Emerging Technologies.,2015,3,IEEE Access,,db/journals/access/access3.html#GuptaJ15,https://doi.org/10.1109/ACCESS.2015.2461602 +Xilu Yang,Ultra-Thin Optical Sheets for Parallel Data Transmission of Visible Light Communications.,2017,5,IEEE Access,,db/journals/access/access5.html#YangLOZ17,https://doi.org/10.1109/ACCESS.2017.2771474 +Xiangyu Peng,Analysis and Design of M-Channel Hybrid Filter Bank With Digital Calibration.,2018,6,IEEE Access,,db/journals/access/access6.html#PengLZLC18,https://doi.org/10.1109/ACCESS.2018.2830967 +Ali Raza,A Protection Scheme for Multi-Terminal VSC-HVDC Transmission Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#RazaAJAGLKIXW18,https://doi.org/10.1109/ACCESS.2017.2787485 +Xiao Liang,Adaptive Fuzzy Global Fast Terminal Sliding Mode Control for Microgyroscope System.,2016,4,IEEE Access,,db/journals/access/access4.html#LiangLF16,https://doi.org/10.1109/ACCESS.2016.2636901 +Yu Xue,A Self-Adaptive Fireworks Algorithm for Classification Problems.,2018,6,IEEE Access,,db/journals/access/access6.html#XueZMP18,https://doi.org/10.1109/ACCESS.2018.2858441 +Qingxue Zhang,HeartID: A Multiresolution Convolutional Neural Network for ECG-Based Biometric Human Identification in Smart Health Applications.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangZZ17,https://doi.org/10.1109/ACCESS.2017.2707460 +Ping-Wei Soh,Adaptive Deep Learning-Based Air Quality Prediction Model Using the Most Relevant Spatial-Temporal Relations.,2018,6,IEEE Access,,db/journals/access/access6.html#SohCH18,https://doi.org/10.1109/ACCESS.2018.2849820 +Anush Sankaran,Multisensor Optical and Latent Fingerprint Database.,2015,3,IEEE Access,,db/journals/access/access3.html#SankaranVS15,https://doi.org/10.1109/ACCESS.2015.2428631 +Xianzhong Xie,Robust Transceiver Design Based on Interference Alignment for Multi-User Multi-Cell MIMO Networks With Channel Uncertainty.,2017,5,IEEE Access,,db/journals/access/access5.html#XieYV17,https://doi.org/10.1109/ACCESS.2017.2687046 +Musa Atas,Hand Tremor Based Biometric Recognition Using Leap Motion Device.,2017,5,IEEE Access,,db/journals/access/access5.html#Atas17,https://doi.org/10.1109/ACCESS.2017.2764471 +Xi Yang 0003,Multiuser Massive MIMO AF Relaying: Spectral Efficiency and Power Allocation.,2018,6,IEEE Access,,db/journals/access/access6.html#YangLSXJ18,https://doi.org/10.1109/ACCESS.2018.2816560 +Valentin G. Ivanov,Systematization of Integrated Motion Control of Ground Vehicles.,2015,3,IEEE Access,,db/journals/access/access3.html#IvanovS15,https://doi.org/10.1109/ACCESS.2015.2496108 +Qiu-Sheng Shen,Ultra-Wideband Filtering 180®6* Hybrid Coupler With Super Wide Upper Stopband Using Swap Phase Inverter and Electromagnetic Bandgap Structures on Double-Sided Parallel-Strip Line.,2018,6,IEEE Access,,db/journals/access/access6.html#ShenGWZ18,https://doi.org/10.1109/ACCESS.2018.2856837 +Fei Lv 0003,Remote Sensing Image Classification Based on Ensemble Extreme Learning Machine With Stacked Autoencoder.,2017,5,IEEE Access,,db/journals/access/access5.html#LvHQ17,https://doi.org/10.1109/ACCESS.2017.2706363 +Xiangdong Jia,Optimal Design of Secrecy Massive MIMO Amplify-and-Forward Relaying Systems With Double-Resolution ADCs Antenna Array.,2016,4,IEEE Access,,db/journals/access/access4.html#JiaZXYZ16,https://doi.org/10.1109/ACCESS.2016.2633330 +Xianghui Wang,D3L-Based Service Runtime Self-Adaptation Using Replanning.,2018,6,IEEE Access,,db/journals/access/access6.html#WangFH18,https://doi.org/10.1109/ACCESS.2018.2810848 +Jilong Zhong,Identification of Vital Nodes in Complex Network via Belief Propagation and Node Reinsertion.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhongZL18,https://doi.org/10.1109/ACCESS.2018.2843532 +Chaoqin Zhang,Towards a SDN-Based Integrated Architecture for Mitigating IP Spoofing Attack.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangHCSZYJ18,https://doi.org/10.1109/ACCESS.2017.2785236 +Saba Yaseen,Improved Generalization for Secure Data Publishing.,2018,6,IEEE Access,,db/journals/access/access6.html#YaseenAASKMASB18,https://doi.org/10.1109/ACCESS.2018.2828398 +Pham Viet Tuan,Optimal Multiuser MISO Beamforming for Power-Splitting SWIPT Cognitive Radio Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#TuanK17,https://doi.org/10.1109/ACCESS.2017.2727073 +Zhipeng Yi,Toward Highly Dependable Power-Aware Mobile Ad Hoc Network-Survivability Evaluation Framework.,2015,3,IEEE Access,,db/journals/access/access3.html#YiD15,https://doi.org/10.1109/ACCESS.2015.2507201 +Muhammad Muneer Umar,Game Theoretic Reward Based Adaptive Data Communication in Wireless Sensor Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#UmarKAS18,https://doi.org/10.1109/ACCESS.2018.2833468 +Qian Song,Radar Image Colorization: Converting Single-Polarization to Fully Polarimetric Using Deep Neural Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#SongXJ18,https://doi.org/10.1109/ACCESS.2017.2779875 +Min Jia,Waveform Design of Zero Head DFT Spread Spectral Efficient Frequency Division Multiplexing.,2017,5,IEEE Access,,db/journals/access/access5.html#JiaYGLG17,https://doi.org/10.1109/ACCESS.2017.2740267 +Ruwu Xiao,A Design of Two Sub-Stage Square-Root Nyquist Matched Filter.,2018,6,IEEE Access,,db/journals/access/access6.html#XiaoLGDZ18,https://doi.org/10.1109/ACCESS.2018.2828405 +Perry Naughton,Self-Localization of a Deforming Swarm of Underwater Vehicles Using Impulsive Sound Sources of Opportunity.,2018,6,IEEE Access,,db/journals/access/access6.html#NaughtonRSKJR18,https://doi.org/10.1109/ACCESS.2017.2779835 +Xiaodong Yang,Norm Characterization for Body-Centric Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#Yang16,https://doi.org/10.1109/ACCESS.2016.2582958 +Biplab Satpati,Sensor-Less Predictive Drying Control of Pneumatic Conveying Batch Dryers.,2017,5,IEEE Access,,db/journals/access/access5.html#SatpatiKD17,https://doi.org/10.1109/ACCESS.2017.2675625 +Xin Zhang 0029,Rotation Invariant Local Binary Convolution Neural Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangXCWYL18,https://doi.org/10.1109/ACCESS.2018.2818887 +Qing-Chang Zhong,Structural Resemblance Between Droop Controllers and Phase-Locked Loops.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhongB16,https://doi.org/10.1109/ACCESS.2016.2606348 +Ahmed Badawy,A Simple Cross Correlation Switched Beam System (XSBS) for Angle of Arrival Estimation.,2017,5,IEEE Access,,db/journals/access/access5.html#BadawyKTEM17,https://doi.org/10.1109/ACCESS.2017.2669202 +Shilie Zheng,Non-Line-of-Sight Channel Performance of Plane Spiral Orbital Angular Momentum MIMO Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhengDZYJCCZ17,https://doi.org/10.1109/ACCESS.2017.2766078 +Weiwei Shan,A Low-Overhead Timing Monitoring Technique for Variation-Tolerant Near-Threshold Digital Integrated Circuits.,2018,6,IEEE Access,,db/journals/access/access6.html#ShanLLWY18,https://doi.org/10.1109/ACCESS.2017.2759802 +Guangwei Shi,Discovering the Trading Pattern of Financial Market Participants: Comparison of Two Co-Clustering Methods.,2018,6,IEEE Access,,db/journals/access/access6.html#ShiRMGCL18,https://doi.org/10.1109/ACCESS.2018.2801263 +Shuxing Du,The Collaborative System Workflow Management of Industrial Design Based on Hierarchical Colored Petri-Net.,2018,6,IEEE Access,,db/journals/access/access6.html#DuWWYZ18,https://doi.org/10.1109/ACCESS.2018.2809439 +Gérald Rocher,Probabilistic Models Toward Controlling Smart-* Environments.,2017,5,IEEE Access,,db/journals/access/access5.html#RocherTL17,https://doi.org/10.1109/ACCESS.2017.2716105 +Tie Qiu,An Efficient Tree-Based Self-Organizing Protocol for Internet of Things.,2016,4,IEEE Access,,db/journals/access/access4.html#QiuLFZZ16,https://doi.org/10.1109/ACCESS.2016.2578298 +Mohammad Tariqul Islam,Detection of Salt and Sugar Contents in Water on the Basis of Dielectric Properties Using Microstrip Antenna-Based Sensor.,2018,6,IEEE Access,,db/journals/access/access6.html#IslamRMS18,https://doi.org/10.1109/ACCESS.2017.2787689 +Te Shao,A Compact Transmission-Line Self-Matched Negative Group Delay Microwave Circuit.,2017,5,IEEE Access,,db/journals/access/access5.html#ShaoWFLF17,https://doi.org/10.1109/ACCESS.2017.2761890 +Ahmad Reza Heravi,Where Does Minimum Error Entropy Outperform Minimum Mean Square Error? A New and Closer Look.,2018,6,IEEE Access,,db/journals/access/access6.html#HeraviH18,https://doi.org/10.1109/ACCESS.2018.2792329 +Qihong Chen,Model Predictive Control for Three-Phase Four-Leg Grid-Tied Inverters.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenLZQ17,https://doi.org/10.1109/ACCESS.2017.2664983 +Hongcheng You,A Three-Level Modular DC/DC Converter Applied in High Voltage DC Grid.,2018,6,IEEE Access,,db/journals/access/access6.html#YouC18,https://doi.org/10.1109/ACCESS.2018.2829703 +Malik Imran,ACryp-Proc: Flexible Asymmetric Crypto Processor for Point Multiplication.,2018,6,IEEE Access,,db/journals/access/access6.html#ImranRJN18,https://doi.org/10.1109/ACCESS.2018.2828319 +Jasraj Meena,Cost Effective Genetic Algorithm for Workflow Scheduling in Cloud Under Deadline Constraint.,2016,4,IEEE Access,,db/journals/access/access4.html#MeenaKV16,https://doi.org/10.1109/ACCESS.2016.2593903 +Panagiotis Botsinis,Low-Complexity Soft-Output Quantum-Assisted Multiuser Detection for Direct-Sequence Spreading and Slow Subcarrier-Hopping Aided SDMA-OFDM Systems.,2014,2,IEEE Access,,db/journals/access/access2.html#BotsinisANH14,https://doi.org/10.1109/ACCESS.2014.2322013 +Xiao Feng Ye,A New Class of Components for Simultaneous Power Splitting Over Microwave and Millimeter-Wave Frequency Bands.,2018,6,IEEE Access,,db/journals/access/access6.html#YeZPHL18,https://doi.org/10.1109/ACCESS.2017.2759961 +Lei-Lei Shi,Event Detection and User Interest Discovering in Social Media Data Streams.,2017,5,IEEE Access,,db/journals/access/access5.html#ShiLWJH17,https://doi.org/10.1109/ACCESS.2017.2675839 +Kuo-Hui Yeh,A Secure IoT-Based Healthcare System With Body Sensor Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#Yeh16,https://doi.org/10.1109/ACCESS.2016.2638038 +Run Tian,A New Leakage-Based Precoding Scheme in IoT Oriented Cognitive MIMO-OFDM Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#TianWT18,https://doi.org/10.1109/ACCESS.2018.2859265 +Bing Song,Temporal-Spatial Global Locality Projections for Multimode Process Monitoring.,2018,6,IEEE Access,,db/journals/access/access6.html#SongS18,https://doi.org/10.1109/ACCESS.2018.2798278 +Ming-Hung Wang,SDUDP: A Reliable UDP-Based Transmission Protocol Over SDN.,2017,5,IEEE Access,,db/journals/access/access5.html#WangCCL17,https://doi.org/10.1109/ACCESS.2017.2693376 +Chunfang Li,Social Recommendation With Multiple Influence From Direct User Interactions.,2017,5,IEEE Access,,db/journals/access/access5.html#LiX17,https://doi.org/10.1109/ACCESS.2017.2739752 +Mehdi Bagheri,Enhancing Power Quality in Microgrids With a New Online Control Strategy for DSTATCOM Using Reinforcement Learning Algorithm.,2018,6,IEEE Access,,db/journals/access/access6.html#BagheriNAN18,https://doi.org/10.1109/ACCESS.2018.2852941 +Hassan Jamil Syed,CloudProcMon: A Non-Intrusive Cloud Monitoring Framework.,2018,6,IEEE Access,,db/journals/access/access6.html#SyedGNNAK18,https://doi.org/10.1109/ACCESS.2018.2864573 +Bai Rui,Nonlinear Backstepping Tracking Control for a Vehicular Electronic Throttle With Input Saturation and External Disturbance.,2018,6,IEEE Access,,db/journals/access/access6.html#RuiYW18,https://doi.org/10.1109/ACCESS.2017.2783948 +Boyu Qin,State Dependent Riccati Equation Based Rotor-Side Converter Control for Doubly Fed Wind Generator.,2018,6,IEEE Access,,db/journals/access/access6.html#QinS18,https://doi.org/10.1109/ACCESS.2018.2839579 +Xin Yao,A Stepwise Spatio-Temporal Flow Clustering Method for Discovering Mobility Trends.,2018,6,IEEE Access,,db/journals/access/access6.html#YaoZGWZL18,https://doi.org/10.1109/ACCESS.2018.2864662 +Lik-Hang Lee,Interaction Methods for Smart Glasses: A Survey.,2018,6,IEEE Access,,db/journals/access/access6.html#LeeH18,https://doi.org/10.1109/ACCESS.2018.2831081 +Minsub Kim,No-Reference Contrast Measurement for Color Images Based on Visual Stimulus.,2018,6,IEEE Access,,db/journals/access/access6.html#KimSK18,https://doi.org/10.1109/ACCESS.2018.2828830 +Alessio Bucaioni,MoVES: A Model-Driven Methodology for Vehicular Embedded Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#BucaioniACCEMS18,https://doi.org/10.1109/ACCESS.2018.2789400 +Siegfried Brandstätter,A Novel MPSoC Interface and Control Architecture for Multistandard RF Transceivers.,2014,2,IEEE Access,,db/journals/access/access2.html#BrandstatterH14,https://doi.org/10.1109/ACCESS.2014.2345194 +Olusegun Peter Awe,Spatio-Temporal Spectrum Sensing in Cognitive Radio Networks Using Beamformer-Aided SVM Algorithms.,2018,6,IEEE Access,,db/journals/access/access6.html#AweDL18,https://doi.org/10.1109/ACCESS.2018.2825603 +Melkamu Deressa Amentie,Maximizing Quality of Experience in Device-to-Device Communication Using an Evolutionary Algorithm Based on Users' Behavior.,2017,5,IEEE Access,,db/journals/access/access5.html#AmentieSWLM17,https://doi.org/10.1109/ACCESS.2017.2685420 +Long-jun Dong,Theoretical and Experimental Studies of Localization Methodology for AE and Microseismic Sources Without Pre-Measured Wave Velocity in Mines.,2017,5,IEEE Access,,db/journals/access/access5.html#DongSLD17,https://doi.org/10.1109/ACCESS.2017.2743115 +Feng Ding 0004,Rising Star Evaluation in Heterogeneous Social Network.,2018,6,IEEE Access,,db/journals/access/access6.html#0004LCC18,https://doi.org/10.1109/ACCESS.2018.2812923 +Jingxuan Zhang,Recommending APIs for API Related Questions in Stack Overflow.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangJRC18,https://doi.org/10.1109/ACCESS.2017.2777845 +Md. Ashraf Uddin,Continuous Patient Monitoring With a Patient Centric Agent: A Block Architecture.,2018,6,IEEE Access,,db/journals/access/access6.html#UddinSGB18,https://doi.org/10.1109/ACCESS.2018.2846779 +Paul J. F. White,Algorithms for Smartphone and Tablet Image Analysis for Healthcare Applications.,2014,2,IEEE Access,,db/journals/access/access2.html#WhitePF14,https://doi.org/10.1109/ACCESS.2014.2348943 +Feng Wang 0018,Decentralized Robust Transceiver Designs for MISO SWIPT Interference Channel.,2018,6,IEEE Access,,db/journals/access/access6.html#WangPH18,https://doi.org/10.1109/ACCESS.2018.2791200 +Zhuo Li 0009,5G with B-MaFIB Based Named Data Networking.,2018,6,IEEE Access,,db/journals/access/access6.html#LiXLWL18,https://doi.org/10.1109/ACCESS.2018.2844294 +Ying He 0006,Big Data Analytics in Mobile Cellular Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#HeYZYYQ16,https://doi.org/10.1109/ACCESS.2016.2540520 +Hui Lin,A Secure Collaborative Spectrum Sensing Strategy in Cyber-Physical Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#LinHMXY17,https://doi.org/10.1109/ACCESS.2017.2767701 +Bao Huynh,An Efficient Parallel Method for Mining Frequent Closed Sequential Patterns.,2017,5,IEEE Access,,db/journals/access/access5.html#HuynhVS17,https://doi.org/10.1109/ACCESS.2017.2739749 +Sung Sik Nam,Performance Analysis of a Threshold-Based Parallel Multiple Beam Selection Scheme for WDM FSO Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#NamAK18,https://doi.org/10.1109/ACCESS.2018.2823298 +Anirban Sengupta,A Framework for Hardware Efficient Reusable IP Core for Grayscale Image CODEC.,2018,6,IEEE Access,,db/journals/access/access6.html#SenguptaRMC18,https://doi.org/10.1109/ACCESS.2017.2776293 +Roee Diamant,Robust Interference Cancellation of Chirp and CW Signals for Underwater Acoustics Applications.,2018,6,IEEE Access,,db/journals/access/access6.html#Diamant18,https://doi.org/10.1109/ACCESS.2017.2787684 +Hang Wei,A New BRB Model for Cloud Security-State Prediction Based on the Large-Scale Monitoring Data.,2018,6,IEEE Access,,db/journals/access/access6.html#WeiHHQZFY18,https://doi.org/10.1109/ACCESS.2017.2779599 +Kang He,A Review of Optimal Sensor Deployment to Diagnose Manufacturing Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#HeJL18,https://doi.org/10.1109/ACCESS.2018.2834556 +Donglin Liu,On the Analog Self-Interference Cancellation for Full-Duplex Communications With Imperfect Channel State Information.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuSSTG17,https://doi.org/10.1109/ACCESS.2017.2702713 +Jinglu Liu,Coordinated Operation of Multi-Integrated Energy System Based on Linear Weighted Sum and Grasshopper Optimization Algorithm.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuWQW18,https://doi.org/10.1109/ACCESS.2018.2859816 +Hengyong Yu,IEEE Access Special Section Editorial: Emerging Computed Tomography Technologies.,2014,2,IEEE Access,,db/journals/access/access2.html#YuMW14,https://doi.org/10.1109/ACCESS.2014.2384851 +Guillermo Pocovi,Joint Link Adaptation and Scheduling for 5G Ultra-Reliable Low-Latency Communications.,2018,6,IEEE Access,,db/journals/access/access6.html#PocoviPM18,https://doi.org/10.1109/ACCESS.2018.2838585 +Fanlong Zhang,Robust Recovery of Corrupted Image Data Based on L1-2 Metric.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangYYW18,https://doi.org/10.1109/ACCESS.2017.2779173 +Abdulrahman Alhothaily,A Secure and Practical Authentication Scheme Using Personal Devices.,2017,5,IEEE Access,,db/journals/access/access5.html#AlhothailyHASCC17,https://doi.org/10.1109/ACCESS.2017.2717862 +Duy H. N. Nguyen,Hybrid MMSE Precoding and Combining Designs for mmWave Multiuser Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#NguyenLLH17,https://doi.org/10.1109/ACCESS.2017.2754979 +Tzuu-Hseng S. Li,A Three-Dimensional Adaptive PSO-Based Packing Algorithm for an IoT-Based Automated e-Fulfillment Packaging System.,2017,5,IEEE Access,,db/journals/access/access5.html#LiLKFLCHWLC17,https://doi.org/10.1109/ACCESS.2017.2702715 +Jianwen Feng,Quasi-Synchronization of Coupled Nonlinear Memristive Neural Networks With Time Delays by Pinning Control.,2018,6,IEEE Access,,db/journals/access/access6.html#FengCWZ18,https://doi.org/10.1109/ACCESS.2018.2836142 +Liang Zou,3D CNN Based Automatic Diagnosis of Attention Deficit Hyperactivity Disorder Using Functional and Structural MRI.,2017,5,IEEE Access,,db/journals/access/access5.html#ZouZMMW17,https://doi.org/10.1109/ACCESS.2017.2762703 +Mohamed Abdur Rahman,Towards a Secure Mobile Edge Computing Framework for Hajj.,2017,5,IEEE Access,,db/journals/access/access5.html#RahmanHH17,https://doi.org/10.1109/ACCESS.2017.2716782 +Yuanhui Wang,Estimating Dynamic Motion Parameters With an Improved Wavelet Thresholding and Inter-Scale Correlation.,2018,6,IEEE Access,,db/journals/access/access6.html#WangZDR18,https://doi.org/10.1109/ACCESS.2018.2846290 +Vladimir M. Petrovic,Artificial Intelligence and Virtual Worlds - Toward Human-Level AI Agents.,2018,6,IEEE Access,,db/journals/access/access6.html#Petrovic18,https://doi.org/10.1109/ACCESS.2018.2855970 +Abdul Rahim Ansari,Accurate 3D Localization Method for Public Safety Applications in Vehicular Ad-Hoc Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#AnsariSHC18,https://doi.org/10.1109/ACCESS.2018.2825371 +Manyun Huang,A Multi-Objective Robust State Estimator for Systems Measured by Phasor Measurement Units.,2018,6,IEEE Access,,db/journals/access/access6.html#HuangWSDZZ18,https://doi.org/10.1109/ACCESS.2018.2790984 +Jinsong Gui,A Game-Based Localized Multi-Objective Topology Control Scheme in Heterogeneous Wireless Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#GuiHX17,https://doi.org/10.1109/ACCESS.2017.2672561 +Shenghong Li 0001,Spectrum Sensing for Cognitive Radios With Unknown Noise Variance and Time-variant Fading Channels.,2017,5,IEEE Access,,db/journals/access/access5.html#LiSLLZ17,https://doi.org/10.1109/ACCESS.2017.2758848 +Mohamad A. Eid,Affective Haptics: Current Research and Future Directions.,2016,4,IEEE Access,,db/journals/access/access4.html#EidO16,https://doi.org/10.1109/ACCESS.2015.2497316 +Chunning Meng,Webcam-Based Eye Movement Analysis Using CNN.,2017,5,IEEE Access,,db/journals/access/access5.html#MengZ17,https://doi.org/10.1109/ACCESS.2017.2754299 +Sreekrishna Pandi,PACE: Redundancy Engineering in RLNC for Low-Latency Communication.,2017,5,IEEE Access,,db/journals/access/access5.html#PandiGGWRF17,https://doi.org/10.1109/ACCESS.2017.2736879 +Ou Ruan,Provably Leakage-Resilient Password-Based Authenticated Key Exchange in the Standard Model.,2017,5,IEEE Access,,db/journals/access/access5.html#RuanCZ17,https://doi.org/10.1109/ACCESS.2017.2776160 +Youwei Yuan,PR-LRU: A Novel Buffer Replacement Algorithm Based on the Probability of Reference for Flash Memory.,2017,5,IEEE Access,,db/journals/access/access5.html#YuanSLYYW17,https://doi.org/10.1109/ACCESS.2017.2723758 +Naveed Ahmed Khan,Optimizing Combined Emission Economic Dispatch for Solar Integrated Power Systems.,2016,4,IEEE Access,,db/journals/access/access4.html#KhanSG16,https://doi.org/10.1109/ACCESS.2016.2587665 +Waleed El-Halwagy,Investigation of Wideband Substrate-Integrated Vertically-Polarized Electric Dipole Antenna and Arrays for mm-Wave 5G Mobile Devices.,2018,6,IEEE Access,,db/journals/access/access6.html#El-HalwagyMMHM18,https://doi.org/10.1109/ACCESS.2017.2782083 +Ran Zhang 0003,Image Sensor Based Visible Light Positioning System With Improved Positioning Algorithm.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangZQW17,https://doi.org/10.1109/ACCESS.2017.2693299 +Lili Zhang,Privacy-Preserving and Dynamic Multi-Attribute Conjunctive Keyword Search Over Encrypted Cloud Data.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangZM18,https://doi.org/10.1109/ACCESS.2018.2823718 +Tassadaq Hussain,Experimental Study on Extreme Learning Machine Applications for Speech Enhancement.,2017,5,IEEE Access,,db/journals/access/access5.html#HussainSLWTL17,https://doi.org/10.1109/ACCESS.2017.2766675 +Toni Levanen,Radio interface evolution towards 5G and enhanced local area communications.,2014,2,IEEE Access,,db/journals/access/access2.html#LevanenPKTV14,https://doi.org/10.1109/ACCESS.2014.2355415 +Qianyu Wang,Multi-View Analysis Dictionary Learning for Image Classification.,2018,6,IEEE Access,,db/journals/access/access6.html#WangGWLK18,https://doi.org/10.1109/ACCESS.2018.2791578 +Xiaojun Zhou,Set-Point Tracking and Multi-Objective Optimization-Based PID Control for the Goethite Process.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhouZYG18,https://doi.org/10.1109/ACCESS.2018.2847641 +Yinghui Zhang,Decorrelating Receiver of Interference Mitigation in MMwave Small Cells Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangLG18,https://doi.org/10.1109/ACCESS.2018.2797161 +Baohua Wang,A Subjective and Objective Integration Approach of Determining Weights for Trustworthy Measurement.,2018,6,IEEE Access,,db/journals/access/access6.html#WangZ18a,https://doi.org/10.1109/ACCESS.2018.2829622 +Minjing Ning,Metaheuristic Algorithms for Proactive and Reactive Project Scheduling to Minimize Contractor's Cash Flow Gap under Random Activity Duration.,2018,6,IEEE Access,,db/journals/access/access6.html#NingHWL18,https://doi.org/10.1109/ACCESS.2018.2828037 +Yi-Fei Pu,Analog Circuit Realization of Arbitrary-Order Fractional Hopfield Neural Networks: A Novel Application of Fractor to Defense Against Chip Cloning Attacks.,2016,4,IEEE Access,,db/journals/access/access4.html#Pu16b,https://doi.org/10.1109/ACCESS.2016.2606160 +Chi-Yi Tsai,Simultaneous 3D Object Recognition and Pose Estimation Based on RGB-D Images.,2018,6,IEEE Access,,db/journals/access/access6.html#TsaiT18,https://doi.org/10.1109/ACCESS.2018.2808225 +Shaohua Zhang,Combinational Biophysical Composition Index (CBCI) for Effective Mapping Biophysical Composition in Urban Areas.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangYLMS18,https://doi.org/10.1109/ACCESS.2018.2857405 +Zebin Yang,Nonsingular Fast Terminal Sliding Mode Control for a Bearingless Induction Motor.,2017,5,IEEE Access,,db/journals/access/access5.html#YangZSSC17,https://doi.org/10.1109/ACCESS.2017.2739199 +Bin Li 0010,Robust Artificial Noise-Aided Secure Beamforming in Wireless-Powered Non-Regenerative Relay Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#LiFC16,https://doi.org/10.1109/ACCESS.2016.2627002 +Fumin Zhu,A Bayesian Learning Method for Financial Time-Series Analysis.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhuQZW18,https://doi.org/10.1109/ACCESS.2018.2853998 +Mada Alhaidary,Vulnerability Analysis for the Authentication Protocols in Trusted Computing Platforms and a Proposed Enhancement of the OffPAD Protocol.,2018,6,IEEE Access,,db/journals/access/access6.html#AlhaidaryRZHAHG18,https://doi.org/10.1109/ACCESS.2017.2789301 +Li Cheng 0004,An Optimized Infrared Detection Strategy for Defective Composite Insulators According to the Law of Heat Flux Propagation Considering the Environmental Factors.,2018,6,IEEE Access,,db/journals/access/access6.html#ChengLYZ18,https://doi.org/10.1109/ACCESS.2018.2854221 +Jing Zhang 0032,A Grid-Based Clustering Algorithm via Load Analysis for Industrial Internet of Things.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangFL18,https://doi.org/10.1109/ACCESS.2018.2797885 +C. Dechsupa,Transformation of the BPMN Design Model into a Colored Petri Net Using the Partitioning Approach.,2018,6,IEEE Access,,db/journals/access/access6.html#DechsupaVT18,https://doi.org/10.1109/ACCESS.2018.2853669 +Tao Zhang 0007,Secure Transmission in Cognitive MIMO Relaying Networks With Outdated Channel State Information.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhangCHDY16,https://doi.org/10.1109/ACCESS.2016.2608966 +Umar Farooq,An Extended State Convergence Architecture for Multilateral Teleoperation Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#FarooqGEAL17,https://doi.org/10.1109/ACCESS.2017.2658347 +Jinfeng Tian,Blind Estimation of Channel Order and SNR for OFDM Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#TianZXHL18,https://doi.org/10.1109/ACCESS.2017.2788020 +Xiao-Jing Yin,A Double Layer BRB Model for Health Prognostics in Complex Electromechanical System.,2017,5,IEEE Access,,db/journals/access/access5.html#YinWZZFHW17,https://doi.org/10.1109/ACCESS.2017.2766086 +Mohammed Amoon,A Multi Criteria-Based Approach for Virtual Machines Consolidation to Save Electrical Power in Cloud Data Centers.,2018,6,IEEE Access,,db/journals/access/access6.html#Amoon18,https://doi.org/10.1109/ACCESS.2018.2830183 +Karim Alinani,Aggregating Author Profiles from Multiple Publisher Networks to Build a List of Potential Collaborators.,2018,6,IEEE Access,,db/journals/access/access6.html#AlinaniANW18,https://doi.org/10.1109/ACCESS.2018.2823720 +Zhiwei Wei,A Collaborative Displacement Approach for Spatial Conflicts in Urban Building Map Generalization.,2018,6,IEEE Access,,db/journals/access/access6.html#WeiHWWG18,https://doi.org/10.1109/ACCESS.2018.2836188 +Waqar Ahmad Malik,Development of Efficient High Power Amplifier With More Than an Octave Bandwidth.,2018,6,IEEE Access,,db/journals/access/access6.html#MalikSE18,https://doi.org/10.1109/ACCESS.2017.2789216 +Min Chen 0003,IEEE Access Special Section Editorial: 5G Wireless Technologies: Perspectives on the Next Generation of Mobile Communications and Networking.,2014,2,IEEE Access,,db/journals/access/access2.html#ChenLL14,https://doi.org/10.1109/ACCESS.2015.2388935 +Philip R. Balogun,Polar Code Design for Irregular Multidimensional Constellations.,2017,5,IEEE Access,,db/journals/access/access5.html#BalogunMGY17,https://doi.org/10.1109/ACCESS.2017.2763614 +Ana Sokolovska,Integrating Technical and Legal Concepts of Privacy.,2018,6,IEEE Access,,db/journals/access/access6.html#SokolovskaK18,https://doi.org/10.1109/ACCESS.2018.2836184 +Rongbin Han,A Novel Model-Based Dynamic Analysis Method for State Correlation With IMA Fault Recovery.,2018,6,IEEE Access,,db/journals/access/access6.html#HanWLZY18,https://doi.org/10.1109/ACCESS.2018.2822763 +Hanlin Zhang,Cloud Storage for Electronic Health Records Based on Secret Sharing With Verifiable Reconstruction Outsourcing.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangYTZXL18,https://doi.org/10.1109/ACCESS.2018.2857205 +Fan Mo,Statistical Analysis of the Influence of Imperfect Texture Shape and Dimensional Uncertainty on Surface Texture Performance.,2017,5,IEEE Access,,db/journals/access/access5.html#MoSZK17a,https://doi.org/10.1109/ACCESS.2017.2769880 +Kai Chen,A New Shape Matching-Based Verification Approach for QPFs.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenLC18,https://doi.org/10.1109/ACCESS.2018.2835440 +Ping-Yi Chou,Modeling and Optimizing Tensile Strength and Yield Point on a Steel Bar Using an Artificial Neural Network With Taguchi Particle Swarm Optimizer.,2016,4,IEEE Access,,db/journals/access/access4.html#ChouTC16,https://doi.org/10.1109/ACCESS.2016.2521162 +Baihong Lin,Hyperspectral and Multispectral Image Fusion Based on Low Rank Constrained Gaussian Mixture Model.,2018,6,IEEE Access,,db/journals/access/access6.html#LinTDL18,https://doi.org/10.1109/ACCESS.2018.2817071 +Zhenyu Zhou,Game-Theoretical Energy Management for Energy Internet With Big Data-Based Renewable Power Forecasting.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhouXHXJLYL17,https://doi.org/10.1109/ACCESS.2017.2658952 +Jianwei Liao,Optimization of Reading Data via Classified Block Access Patterns in File Systems.,2016,4,IEEE Access,,db/journals/access/access4.html#LiaoC16,https://doi.org/10.1109/ACCESS.2016.2642918 +Mengmeng Yang,Machine Learning Differential Privacy With Multifunctional Aggregation in a Fog Computing Architecture.,2018,6,IEEE Access,,db/journals/access/access6.html#YangZLXZ18,https://doi.org/10.1109/ACCESS.2018.2817523 +Su Hu,Practical Implementation of Multi-User Transform Domain Communication System for Control Channels in Cloud-Based Cognitive Radio Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#HuLLLGW18,https://doi.org/10.1109/ACCESS.2018.2799956 +Chuan Chen,Adaptive Lag Synchronization of Memristive Neural Networks With Mixed Delays.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenLPY18,https://doi.org/10.1109/ACCESS.2018.2858246 +Liangtian Wan,Distributed Parameter Estimation for Mobile Wireless Sensor Network Based on Cloud Computing in Battlefield Surveillance System.,2015,3,IEEE Access,,db/journals/access/access3.html#WanHSFZL15,https://doi.org/10.1109/ACCESS.2015.2482981 +Huan Cong Nguyen,How to Ensure Reliable Connectivity for Aerial Vehicles Over Cellular Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#NguyenAWKSM18,https://doi.org/10.1109/ACCESS.2018.2808998 +Hongfei Jia,Random Fuzzy Cost-Profit Equilibrium Model for Locating a Discrete Service Enterprise.,2018,6,IEEE Access,,db/journals/access/access6.html#JiaLTZL18,https://doi.org/10.1109/ACCESS.2017.2773578 +Amr A. Munshi,Data Lake Lambda Architecture for Smart Grids Big Data Analytics.,2018,6,IEEE Access,,db/journals/access/access6.html#MunshiM18,https://doi.org/10.1109/ACCESS.2018.2858256 +Felipe Grijalva,A Recommender System for Improving Median Plane Sound Localization Performance Based on a Nonlinear Representation of HRTFs.,2018,6,IEEE Access,,db/journals/access/access6.html#GrijalvaMMG18,https://doi.org/10.1109/ACCESS.2018.2832645 +Md Shafiullah,S-Transform Based FFNN Approach for Distribution Grids Fault Detection and Classification.,2018,6,IEEE Access,,db/journals/access/access6.html#ShafiullahA18,https://doi.org/10.1109/ACCESS.2018.2809045 +Baozhu Li,MAC Performance Analysis for Drive-Thru Internet Networks With Rayleigh Capture.,2017,5,IEEE Access,,db/journals/access/access5.html#LiCSSL17,https://doi.org/10.1109/ACCESS.2017.2710052 +Muhammad Bilal Bashir,Improved Genetic Algorithm to Reduce Mutation Testing Cost.,2017,5,IEEE Access,,db/journals/access/access5.html#BashirN17,https://doi.org/10.1109/ACCESS.2017.2678200 +Ahmad Naseem Alvi,BEST-MAC: Bitmap-Assisted Efficient and Scalable TDMA-Based WSN MAC Protocol for Smart Cities.,2016,4,IEEE Access,,db/journals/access/access4.html#AlviBAYSS16,https://doi.org/10.1109/ACCESS.2016.2515096 +Shaohong Zhang,Generalized Pair-Counting Similarity Measures for Clustering and Cluster Ensembles.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangYXGXW17,https://doi.org/10.1109/ACCESS.2017.2741221 +Atif Anwer,Underwater 3-D Scene Reconstruction Using Kinect v2 Based on Physical Models for Refraction and Time of Flight Correction.,2017,5,IEEE Access,,db/journals/access/access5.html#AnwerAKM17,https://doi.org/10.1109/ACCESS.2017.2733003 +Adamu I. Abubakar,The Dynamics of Data Packet in Transmission Session.,2017,5,IEEE Access,,db/journals/access/access5.html#AbubakarMZ17,https://doi.org/10.1109/ACCESS.2017.2682108 +Yixin Li,Multiband 10-Antenna Array for Sub-6 GHz MIMO Applications in 5-G Smartphones.,2018,6,IEEE Access,,db/journals/access/access6.html#LiSLY18a,https://doi.org/10.1109/ACCESS.2018.2838337 +Liangkuan Zhu,Robust Adaptive Neural Prescribed Performance Control for MDF Continuous Hot Pressing System With Input Saturation.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhuZL18,https://doi.org/10.1109/ACCESS.2018.2800778 +Jingxian Liu,Resource Allocation in Wireless Powered Sensor Networks With Circuit Energy Consumption Constraints.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuXFZ17a,https://doi.org/10.1109/ACCESS.2017.2757524 +Ungsumalee Suttapakti,Empirical Monocomponent Image Decomposition.,2018,6,IEEE Access,,db/journals/access/access6.html#SuttapaktiPW18,https://doi.org/10.1109/ACCESS.2017.2783399 +Wenwei Wang,Vibration Control Method for an Electric City Bus Driven by a Dual Motor Coaxial Series Drive System Based on Model Predictive Control.,2018,6,IEEE Access,,db/journals/access/access6.html#WangLSL18,https://doi.org/10.1109/ACCESS.2018.2859356 +Muhammad Shafiq,Effect of Project Management in Requirements Engineering and Requirements Change Management Processes for Global Software Development.,2018,6,IEEE Access,,db/journals/access/access6.html#ShafiqZAKHFKS18,https://doi.org/10.1109/ACCESS.2018.2834473 +Luca Felicetti,Congestion Control in Molecular Cyber-Physical Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#FelicettiFR17,https://doi.org/10.1109/ACCESS.2017.2707597 +Gerhard Wunder,Sparse Signal Processing Concepts for Efficient 5G System Design.,2015,3,IEEE Access,,db/journals/access/access3.html#WunderBSJ15,https://doi.org/10.1109/ACCESS.2015.2407194 +Hailiang Li,An Improved Faster R-CNN for Same Object Retrieval.,2017,5,IEEE Access,,db/journals/access/access5.html#LiHZ17,https://doi.org/10.1109/ACCESS.2017.2729943 +Chang-Bin Ha,Signal Detection Scheme Based on Adaptive Ensemble Deep Learning Model.,2018,6,IEEE Access,,db/journals/access/access6.html#HaS18,https://doi.org/10.1109/ACCESS.2018.2825463 +Zhongbiao Chen,A Method to Correct the Influence of Rain on X-Band Marine Radar Image.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenHZM17,https://doi.org/10.1109/ACCESS.2017.2772784 +Yun Lin 0006,Application of Cloud Model in Rock Burst Prediction and Performance Comparison with Three Machine Learning Algorithms.,2018,6,IEEE Access,,db/journals/access/access6.html#LinZL18,https://doi.org/10.1109/ACCESS.2018.2839754 +Huijun Peng,A Detection Method for Anomaly Flow in Software Defined Network.,2018,6,IEEE Access,,db/journals/access/access6.html#PengSZTS18,https://doi.org/10.1109/ACCESS.2018.2839684 +Saad Mubeen,Delay Mitigation in Offloaded Cloud Controllers in Industrial IoT.,2017,5,IEEE Access,,db/journals/access/access5.html#MubeenNDBSB17,https://doi.org/10.1109/ACCESS.2017.2682499 +Rehmat Ullah,Energy and Congestion-Aware Routing Metric for Smart Grid AMI Networks in Smart City.,2017,5,IEEE Access,,db/journals/access/access5.html#UllahFK17,https://doi.org/10.1109/ACCESS.2017.2728623 +Jin Zuo,High Sensitivity Temperature Sensor With an Avoided-Crossing Based Selective-Filling High Birefringent Photonic Crystal Fiber Sagnac Interferometer.,2018,6,IEEE Access,,db/journals/access/access6.html#ZuoHYCLC18,https://doi.org/10.1109/ACCESS.2018.2864937 +Wenjie Zhang,Spectrum Sharing for Heterogeneous Networks and Application Systems in TV White Spaces.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangZZYY18,https://doi.org/10.1109/ACCESS.2018.2824836 +Jianfeng Li 0001,Direction of Arrival Estimation of Quasi-Stationary Signals Using Unfolded Coprime Array.,2017,5,IEEE Access,,db/journals/access/access5.html#LiZ17,https://doi.org/10.1109/ACCESS.2017.2695581 +Yilun Shang,Finite-Time Weighted Average Consensus and Generalized Consensus Over a Subset.,2016,4,IEEE Access,,db/journals/access/access4.html#Shang16,https://doi.org/10.1109/ACCESS.2016.2570518 +Shuaijun Liu,Deep Reinforcement Learning Based Dynamic Channel Allocation Algorithm in Multibeam Satellite Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuHW18,https://doi.org/10.1109/ACCESS.2018.2809581 +Amy J. C. Trappey,A Review of Technology Standards and Patent Portfolios for Enabling Cyber-Physical Systems in Advanced Manufacturing.,2016,4,IEEE Access,,db/journals/access/access4.html#TrappeyTGSC16,https://doi.org/10.1109/ACCESS.2016.2619360 +Hehua Yan,Industrial Big Data Analytics for Prediction of Remaining Useful Life Based on Deep Learning.,2018,6,IEEE Access,,db/journals/access/access6.html#YanWZTHW18,https://doi.org/10.1109/ACCESS.2018.2809681 +Muhammad Sadiq Khan,Concept of Entire Boolean Values Recalculation From Aggregates in the Preprocessed Category of Incomplete Soft Sets.,2017,5,IEEE Access,,db/journals/access/access5.html#KhanHWMA17,https://doi.org/10.1109/ACCESS.2016.2641982 +Samer Hanouneh,EEG Power and Functional Connectivity Correlates with Semantic Long-Term Memory Retrieval.,2018,6,IEEE Access,,db/journals/access/access6.html#HanounehASM18,https://doi.org/10.1109/ACCESS.2017.2788859 +Laizhong Cui,Differential Evolution Algorithm With Tracking Mechanism and Backtracking Mechanism.,2018,6,IEEE Access,,db/journals/access/access6.html#CuiHLYMWLL18,https://doi.org/10.1109/ACCESS.2018.2864324 +Wenwei Wang,Optimization of a Dual-Motor Coupled Powertrain Energy Management Strategy for a Battery Electric Bus Based on Dynamic Programming Method.,2018,6,IEEE Access,,db/journals/access/access6.html#WangZSLG18,https://doi.org/10.1109/ACCESS.2018.2847323 +Jiashen Teh,Prospects of Using the Dynamic Thermal Rating System for Reliable Electrical Networks: A Review.,2018,6,IEEE Access,,db/journals/access/access6.html#TehLMOCZI18,https://doi.org/10.1109/ACCESS.2018.2824238 +Faranak Nejati,PUTRACOM: A Concurrent Component Model With Exogenous Connectors.,2018,6,IEEE Access,,db/journals/access/access6.html#NejatiGYJ18,https://doi.org/10.1109/ACCESS.2018.2810807 +Mohammad S. Khorsheed,Diacritizing Arabic Text Using a Single Hidden Markov Model.,2018,6,IEEE Access,,db/journals/access/access6.html#Khorsheed18,https://doi.org/10.1109/ACCESS.2018.2852619 +Yan Bao,Hammerstein Models and Real-Time System Identification of Load Dynamics for Voltage Management.,2018,6,IEEE Access,,db/journals/access/access6.html#BaoWWW18,https://doi.org/10.1109/ACCESS.2018.2849002 +Yisheng Zhao,Energy-Efficient Sub-Carrier and Power Allocation in Cloud-Based Cellular Network With Ambient RF Energy Harvesting.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhaoLZGCJ17,https://doi.org/10.1109/ACCESS.2017.2667678 +Yaojian Zhou,Time Series Prediction Methods for Depth-Averaged Current Velocities of Underwater Gliders.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhouYW17,https://doi.org/10.1109/ACCESS.2017.2689037 +Dandan Jiang,Sentiment Computing for the News Event Based on the Social Media Big Data.,2017,5,IEEE Access,,db/journals/access/access5.html#JiangLXX17,https://doi.org/10.1109/ACCESS.2016.2607218 +Tao Zhang 0025,A Fast Feature Selection Algorithm Based on Swarm Intelligence in Acoustic Defect Detection.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangDZY18,https://doi.org/10.1109/ACCESS.2018.2833164 +Jianqing Peng,An Efficient Pose Measurement Method of a Space Non-Cooperative Target Based on Stereo Vision.,2017,5,IEEE Access,,db/journals/access/access5.html#PengXY17,https://doi.org/10.1109/ACCESS.2017.2759798 +Pranav S. Koundinya,Joint Design of the Spatial and of the Classic Symbol Alphabet Improves Single-RF Spatial Modulation.,2016,4,IEEE Access,,db/journals/access/access4.html#KoundinyaHH16,https://doi.org/10.1109/ACCESS.2016.2600246 +Xuelian Wu,Hyphae Detection in Fungal Keratitis Images With Adaptive Robust Binary Pattern.,2018,6,IEEE Access,,db/journals/access/access6.html#WuQLZZZWR18,https://doi.org/10.1109/ACCESS.2018.2808941 +Li Yun,Design and Implementation of Cooperative Turning Control for the Towing System of Unpowered Facilities.,2018,6,IEEE Access,,db/journals/access/access6.html#YunJ18,https://doi.org/10.1109/ACCESS.2018.2819692 +Han Yu,A Survey of Multi-Agent Trust Management Systems.,2013,1,IEEE Access,,db/journals/access/access1.html#YuSLML13,https://doi.org/10.1109/ACCESS.2013.2259892 +Mingyang Li,Tri-Polarized 12-Antenna MIMO Array for Future 5G Smartphone Applications.,2018,6,IEEE Access,,db/journals/access/access6.html#LiBXGY18,https://doi.org/10.1109/ACCESS.2017.2781705 +Zidong Han,Numerical Improvement for the Mechanical Performance of Bikes Based on an Intelligent PSO-ABC Algorithm and WSN Technology.,2018,6,IEEE Access,,db/journals/access/access6.html#HanLL18,https://doi.org/10.1109/ACCESS.2018.2845366 +Lijing Zhou,BeeKeeper: A Blockchain-Based IoT System With Secure Storage and Homomorphic Computation.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhouWSL18,https://doi.org/10.1109/ACCESS.2018.2847632 +Hongbing Cheng,Accountable Privacy-Preserving Mechanism for Cloud Computing Based on Identity-Based Encryption.,2018,6,IEEE Access,,db/journals/access/access6.html#ChengRQW18,https://doi.org/10.1109/ACCESS.2018.2851599 +Fuliang Li,A State Transition-Aware Energy-Saving Mechanism for Dense WLANs in Buildings.,2017,5,IEEE Access,,db/journals/access/access5.html#LiWCWB17,https://doi.org/10.1109/ACCESS.2017.2770150 +Woong Choi,Low Cost Convolutional Neural Network Accelerator Based on Bi-Directional Filtering and Bit-Width Reduction.,2018,6,IEEE Access,,db/journals/access/access6.html#ChoiCP18,https://doi.org/10.1109/ACCESS.2018.2816019 +Jaewon Noh,Secure Authentication and Four-Way Handshake Scheme for Protected Individual Communication in Public Wi-Fi Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#NohKC18,https://doi.org/10.1109/ACCESS.2018.2809614 +Musaed Alhussein,Monitoring Parkinson's Disease in Smart Cities.,2017,5,IEEE Access,,db/journals/access/access5.html#Alhussein17,https://doi.org/10.1109/ACCESS.2017.2748561 +Juan Liu,Achievable Rates for Full-Duplex Massive MIMO Systems Over Rician Fading Channels.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuDWZC18,https://doi.org/10.1109/ACCESS.2018.2844372 +Xin Guo 0004,Balanced Diplexers Based on Inner-Coupled Dual-Mode Structures With Intrinsic Common-Mode Suppression.,2017,5,IEEE Access,,db/journals/access/access5.html#GuoZW17,https://doi.org/10.1109/ACCESS.2017.2773467 +Sadik Kamel Gharghan,Adaptive Neural Fuzzy Inference System for Accurate Localization of Wireless Sensor Network in Outdoor and Indoor Cycling Applications.,2018,6,IEEE Access,,db/journals/access/access6.html#GharghanNJJI18,https://doi.org/10.1109/ACCESS.2018.2853996 +Tong Bai,Discrete Multi-Tone Digital Subscriber Loop Performance in the Face of Impulsive Noise.,2017,5,IEEE Access,,db/journals/access/access5.html#BaiZZYRZH17,https://doi.org/10.1109/ACCESS.2017.2712359 +Manman Cui,Energy-Efficient Joint Power Allocation in Uplink Massive MIMO Cognitive Radio Networks With Imperfect CSI.,2017,5,IEEE Access,,db/journals/access/access5.html#CuiHTW17,https://doi.org/10.1109/ACCESS.2017.2771399 +Yuan He 0006,Mining Coherent Topics With Pre-Learned Interest Knowledge in Twitter.,2017,5,IEEE Access,,db/journals/access/access5.html#HeWJ17,https://doi.org/10.1109/ACCESS.2017.2696558 +Jian Hou,A Data-Driven Clustering Approach for Fault Diagnosis.,2017,5,IEEE Access,,db/journals/access/access5.html#HouX17,https://doi.org/10.1109/ACCESS.2017.2771365 +Barbara Hauer,Data and Information Leakage Prevention Within the Scope of Information Security.,2015,3,IEEE Access,,db/journals/access/access3.html#Hauer15,https://doi.org/10.1109/ACCESS.2015.2506185 +Tinghuai Ma,An Improved Web Cache Replacement Algorithm Based on Weighting and Cost.,2018,6,IEEE Access,,db/journals/access/access6.html#MaHSTA18,https://doi.org/10.1109/ACCESS.2018.2829142 +Ruinian Li,Perturbation-Based Private Profile Matching in Social Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#LiLCZLWB17,https://doi.org/10.1109/ACCESS.2017.2748958 +Jun Liu,Bipartite Consensus Control for Coupled Harmonic Oscillators Under a Coopetitive Network Topology.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuLL18,https://doi.org/10.1109/ACCESS.2018.2790970 +Chengming Li,Secure and Efficient Content Distribution in Crowdsourced Vehicular Content-Centric Networking.,2018,6,IEEE Access,,db/journals/access/access6.html#LiGWWJO18,https://doi.org/10.1109/ACCESS.2017.2778502 +Kun-Yi Guo,Angular Glint Error Simulation Using Attributed Scattering Center Models.,2018,6,IEEE Access,,db/journals/access/access6.html#GuoXZS18,https://doi.org/10.1109/ACCESS.2018.2846538 +Yang Lu,The Effect of Power Adjustment on Handover in High-Speed Railway Communication Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#LuXFZA17,https://doi.org/10.1109/ACCESS.2017.2775044 +Chaofeng He,Target Localization for a Distributed SIMO Sonar With an Isogradient Sound Speed Profile.,2018,6,IEEE Access,,db/journals/access/access6.html#HeWCG18,https://doi.org/10.1109/ACCESS.2018.2843438 +Sara Lakani,Optimal Design and Energy Efficient Binary Resource Allocation of Interference-Limited Cellular Relay-Aided Systems With Consideration of Queue Stability.,2017,5,IEEE Access,,db/journals/access/access5.html#LakaniG17,https://doi.org/10.1109/ACCESS.2017.2692206 +Qian Xu,A Fast Method to Measure the Volume of a Large Cavity.,2015,3,IEEE Access,,db/journals/access/access3.html#XuHXTFZ15,https://doi.org/10.1109/ACCESS.2015.2476661 +Sonia Hashish,Dynamic Concentric Rings Infrastructure for Efficient Communications in Wireless Sensor Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#Hashish16,https://doi.org/10.1109/ACCESS.2016.2586464 +Lintao Wang,Reliability-Based Performance Optimization of Tunnel Boring Machine Considering Geological Uncertainties.,2018,6,IEEE Access,,db/journals/access/access6.html#WangSLY18,https://doi.org/10.1109/ACCESS.2018.2821190 +Shunta Saito,Seamline Determination Based on Semantic Segmentation for Aerial Image Mosaicking.,2015,3,IEEE Access,,db/journals/access/access3.html#SaitoAA15,https://doi.org/10.1109/ACCESS.2015.2508921 +Agatha S. Rodrigues,Bayesian Estimation of Component Reliability in Coherent Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#RodriguesBPP18,https://doi.org/10.1109/ACCESS.2018.2821102 +Kai Guo,A Switched Controller Design for Supply Pressure Tracking of Variable Displacement Axial Piston Pumps.,2018,6,IEEE Access,,db/journals/access/access6.html#GuoXL18,https://doi.org/10.1109/ACCESS.2018.2796097 +Okan Yurduseven,Design and Analysis of a Reconfigurable Holographic Metasurface Aperture for Dynamic Focusing in the Fresnel Zone.,2017,5,IEEE Access,,db/journals/access/access5.html#YurdusevenMGS17,https://doi.org/10.1109/ACCESS.2017.2712659 +Mingqiang Wei,Centerline Extraction of Vasculature Mesh.,2018,6,IEEE Access,,db/journals/access/access6.html#WeiWLPLWWAQW18,https://doi.org/10.1109/ACCESS.2018.2802478 +Patrick Murmann,Tools for Achieving Usable Ex Post Transparency: A Survey.,2017,5,IEEE Access,,db/journals/access/access5.html#MurmannF17,https://doi.org/10.1109/ACCESS.2017.2765539 +Guohua Lv,A Novel Correspondence Selection Technique for Affine Rigid Image Registration.,2018,6,IEEE Access,,db/journals/access/access6.html#Lv18,https://doi.org/10.1109/ACCESS.2018.2847399 +Ahmed Elhamy,A Statistical Priority-Based Scheduling Metric for M2M Communications in LTE Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#ElhamyG17,https://doi.org/10.1109/ACCESS.2017.2700409 +Bin Xie,Color Transfer Using Adaptive Second-Order Total Generalized Variation Regularizer.,2018,6,IEEE Access,,db/journals/access/access6.html#XieXHT18,https://doi.org/10.1109/ACCESS.2018.2789981 +Altay Zhakatayev,Closed-Loop Control of Variable Stiffness Actuated Robots via Nonlinear Model Predictive Control.,2015,3,IEEE Access,,db/journals/access/access3.html#ZhakatayevRV15,https://doi.org/10.1109/ACCESS.2015.2418157 +Jose E. Castillo-Aguilella,Multi-Variable Bifacial Photovoltaic Module Test Results and Best-Fit Annual Bifacial Energy Yield Model.,2016,4,IEEE Access,,db/journals/access/access4.html#Castillo-Aguilella16,https://doi.org/10.1109/ACCESS.2016.2518399 +Fan Ding,Impact of Residual Hardware Impairments on Non-Orthogonal Multiple Access Based Amplify-and-Forward Relaying Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#DingWZD18,https://doi.org/10.1109/ACCESS.2018.2813081 +Haitham Abu Damis,Investigation of Epidermal Loop Antennas for Biotelemetry IoT Applications.,2018,6,IEEE Access,,db/journals/access/access6.html#DamisKMCM18,https://doi.org/10.1109/ACCESS.2018.2814005 +Mahdi Nouri,Novel Anti-Deception Jamming Method by Measuring Phase Noise of Oscillators in LFMCW Tracking Radar Sensor Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#NouriMS17,https://doi.org/10.1109/ACCESS.2017.2655040 +Xun Gao,An End-to-End Neural Network for Road Extraction From Remote Sensing Imagery by Multiple Feature Pyramid Network.,2018,6,IEEE Access,,db/journals/access/access6.html#GaoSZYXSJF18,https://doi.org/10.1109/ACCESS.2018.2856088 +Chaker Abdelaziz Kerrache,Trust Management for Vehicular Networks: An Adversary-Oriented Overview.,2016,4,IEEE Access,,db/journals/access/access4.html#KerracheCCLM16,https://doi.org/10.1109/ACCESS.2016.2645452 +Ismaeel Al Ridhawi,Workflow-Net Based Service Composition Using Mobile Edge Nodes.,2017,5,IEEE Access,,db/journals/access/access5.html#RidhawiKR17,https://doi.org/10.1109/ACCESS.2017.2766068 +Yuxin Liu,FFSC: An Energy Efficiency Communications Approach for Delay Minimizing in Internet of Things.,2016,4,IEEE Access,,db/journals/access/access4.html#LiuLHLCSL16,https://doi.org/10.1109/ACCESS.2016.2588278 +Bea Yu,Speech-Based Automated Cognitive Impairment Detection From Remotely-Collected Cognitive Test Audio.,2018,6,IEEE Access,,db/journals/access/access6.html#YuWMQ18,https://doi.org/10.1109/ACCESS.2018.2856478 +Heeseung Bang,Implementation of a Ball and Plate Control System Using Sliding Mode Control.,2018,6,IEEE Access,,db/journals/access/access6.html#BangL18,https://doi.org/10.1109/ACCESS.2018.2838544 +Md Anisur Rahman,Unique Neighborhood Set Parameter Independent Density-Based Clustering With Outlier Detection.,2018,6,IEEE Access,,db/journals/access/access6.html#RahmanAS18,https://doi.org/10.1109/ACCESS.2018.2857834 +Yu Wu,Coalitional Games for Downlink Multicell Beamforming.,2017,5,IEEE Access,,db/journals/access/access5.html#WuDL17,https://doi.org/10.1109/ACCESS.2017.2702058 +Shafii Muhammad Abdulhamid,A Review on Mobile SMS Spam Filtering Techniques.,2017,5,IEEE Access,,db/journals/access/access5.html#AbdulhamidLCOAA17,https://doi.org/10.1109/ACCESS.2017.2666785 +Moises Blanco,A Practical Evaluation of a Collaborative Learning Method for Engineering Project Subjects.,2017,5,IEEE Access,,db/journals/access/access5.html#BlancoGSS17,https://doi.org/10.1109/ACCESS.2017.2751604 +Sining Yang,An Efficient Spatial Representation for Path Planning of Ground Robots in 3D Environments.,2018,6,IEEE Access,,db/journals/access/access6.html#YangYY18,https://doi.org/10.1109/ACCESS.2018.2858809 +Yi Xu,User Grouping for Massive MIMO in FDD Systems: New Design Methods and Analysis.,2014,2,IEEE Access,,db/journals/access/access2.html#XuYM14,https://doi.org/10.1109/ACCESS.2014.2353297 +Wei Pan,A Neuro-Fuzzy Visual Servoing Controller for an Articulated Manipulator.,2018,6,IEEE Access,,db/journals/access/access6.html#PanLHJS18,https://doi.org/10.1109/ACCESS.2017.2787738 +Thinh Duy Tran,Joint Resource Allocation and Content Caching in Virtualized Content-Centric Wireless Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#TranL18,https://doi.org/10.1109/ACCESS.2018.2804902 +JunPo Yang,Constructions of Highly Nonlinear Resilient Vectorial Boolean Functions via Perfect Nonlinear Functions.,2017,5,IEEE Access,,db/journals/access/access5.html#Yang17b,https://doi.org/10.1109/ACCESS.2017.2764919 +Raid Alzubi,A Hybrid Feature Selection Method for Complex Diseases SNPs.,2018,6,IEEE Access,,db/journals/access/access6.html#AlzubiRAA18,https://doi.org/10.1109/ACCESS.2017.2778268 +Joseph A. Issa,Performance Evaluation and Estimation Model Using Regression Method for Hadoop WordCount.,2015,3,IEEE Access,,db/journals/access/access3.html#Issa15,https://doi.org/10.1109/ACCESS.2015.2509598 +Heli Zhang,Combinational Auction-Based Service Provider Selection in Mobile Edge Computing Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangGJZ17,https://doi.org/10.1109/ACCESS.2017.2721957 +Nelson Iruthayanathan,Performance of Spread Spectrum Based Multi-Carrier System in Underwater Communication Using Transmitter Pre-Processing.,2016,4,IEEE Access,,db/journals/access/access4.html#IruthayanathanV16,https://doi.org/10.1109/ACCESS.2016.2591587 +Ivo Friedberg,Evidential Network Modeling for Cyber-Physical System State Inference.,2017,5,IEEE Access,,db/journals/access/access5.html#FriedbergHMSM17,https://doi.org/10.1109/ACCESS.2017.2718498 +Kai Shi,Virtual Inertia Control Strategy in Microgrid Based on Virtual Synchronous Generator Technology.,2018,6,IEEE Access,,db/journals/access/access6.html#ShiYSZ18,https://doi.org/10.1109/ACCESS.2018.2839737 +Ao Guo,Context-Aware Scheduling in Personal Data Collection From Multiple Wearable Devices.,2017,5,IEEE Access,,db/journals/access/access5.html#GuoM17,https://doi.org/10.1109/ACCESS.2017.2666419 +Lin Ye,Checking Function-Level Kernel Control Flow Integrity for Cloud Computing.,2018,6,IEEE Access,,db/journals/access/access6.html#YeYYGZDG18,https://doi.org/10.1109/ACCESS.2018.2859767 +Willie K. Harrison,The Role of Graph Theory in System of Systems Engineering.,2016,4,IEEE Access,,db/journals/access/access4.html#Harrison16,https://doi.org/10.1109/ACCESS.2016.2559450 +Jiujun Cheng,Connectivity Modeling and Analysis for Internet of Vehicles in Urban Road Scene.,2018,6,IEEE Access,,db/journals/access/access6.html#ChengMHGZL18,https://doi.org/10.1109/ACCESS.2017.2784845 +Lucian Trifina,A Coefficient Test for Quintic Permutation Polynomials Over Integer Rings.,2018,6,IEEE Access,,db/journals/access/access6.html#TrifinaT18,https://doi.org/10.1109/ACCESS.2018.2854373 +Muhammad Muzammal,Trajectory Mining Using Uncertain Sensor Data.,2018,6,IEEE Access,,db/journals/access/access6.html#MuzammalGRQAJ18,https://doi.org/10.1109/ACCESS.2017.2778690 +Noha Anous,Performance Evaluation of LOS and NLOS Vertical Inhomogeneous Links in Underwater Visible Light Communications.,2018,6,IEEE Access,,db/journals/access/access6.html#AnousAUQ18,https://doi.org/10.1109/ACCESS.2018.2815743 +Rongbin Xu,Optimally Connected Deep Belief Net for Click Through Rate Prediction in Online Advertising.,2018,6,IEEE Access,,db/journals/access/access6.html#XuWX18,https://doi.org/10.1109/ACCESS.2018.2861429 +Bochao Zhao,On a Training-Less Solution for Non-Intrusive Appliance Load Monitoring Using Graph Signal Processing.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhaoSS16,https://doi.org/10.1109/ACCESS.2016.2557460 +Moise Busogi,Analytical Modeling of Human Choice Complexity in a Mixed Model Assembly Line Using Machine Learning-Based Human in the Loop Simulation.,2017,5,IEEE Access,,db/journals/access/access5.html#BusogiK17,https://doi.org/10.1109/ACCESS.2017.2706739 +Seng Cheong Loke,Astronomical Image Acquisition Using an Improved Track and Accumulate Method.,2017,5,IEEE Access,,db/journals/access/access5.html#Loke17,https://doi.org/10.1109/ACCESS.2017.2700162 +Chien-Ming Chen,A Provable Secure Private Data Delegation Scheme for Mountaineering Events in Emergency System.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenLLWP17,https://doi.org/10.1109/ACCESS.2017.2675163 +Yu Zhang 0037,Hybrid Trajectory Planning for Autonomous Driving in Highly Constrained Environments.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangCWGXYL18,https://doi.org/10.1109/ACCESS.2018.2845448 +Xin Liu 0024,A BP Neural Network-Based Communication Blind Signal Detection Method With Cyber-Physical-Social Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuZWC18,https://doi.org/10.1109/ACCESS.2018.2838123 +Shuo Gao,Piezoelectric vs. Capacitive Based Force Sensing in Capacitive Touch Panels.,2016,4,IEEE Access,,db/journals/access/access4.html#GaoAN16,https://doi.org/10.1109/ACCESS.2016.2591535 +Dan You,Computation of an Optimal Transformed Linear Constraint in a Class of Petri Nets With Uncontrollable Transitions.,2017,5,IEEE Access,,db/journals/access/access5.html#YouWLW17,https://doi.org/10.1109/ACCESS.2017.2696029 +Venus Haghighi,An Offloading Strategy in Mobile Cloud Computing Considering Energy and Delay Constraints.,2018,6,IEEE Access,,db/journals/access/access6.html#HaghighiM18,https://doi.org/10.1109/ACCESS.2018.2808411 +Cheng Yan,A Dimension Distance-Based SCMA Codebook Design.,2017,5,IEEE Access,,db/journals/access/access5.html#YanKZ17,https://doi.org/10.1109/ACCESS.2017.2685618 +Deguang Wang,State-Based Control of Discrete-Event Systems Under Partial Observation.,2018,6,IEEE Access,,db/journals/access/access6.html#WangLLW18,https://doi.org/10.1109/ACCESS.2018.2859798 +Zhe Li,Robust Passivity Control for 2-D Uncertain Markovian Jump Linear Discrete-Time Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#LiZMLL17,https://doi.org/10.1109/ACCESS.2017.2719918 +Ali Arshad,Semi-Supervised Deep Fuzzy C-Mean Clustering for Software Fault Prediction.,2018,6,IEEE Access,,db/journals/access/access6.html#ArshadRJM18,https://doi.org/10.1109/ACCESS.2018.2835304 +Xin Li 0041,Survivable K-Node (Edge) Content Connected Virtual Optical Network (KC-VON) Embedding Over Elastic Optical Data Center Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#LiGZTZH18,https://doi.org/10.1109/ACCESS.2018.2852814 +Jianfeng Huang,An Experimental Study of Clogging Fault Diagnosis in Heat Exchangers Based on Vibration Signals.,2016,4,IEEE Access,,db/journals/access/access4.html#HuangCSWZ16,https://doi.org/10.1109/ACCESS.2016.2555902 +Kunfeng Wang,M4CD: A Robust Change Detection Method for Intelligent Visual Surveillance.,2018,6,IEEE Access,,db/journals/access/access6.html#WangGW18,https://doi.org/10.1109/ACCESS.2018.2812880 +Namuk Ko,Identifying Product Opportunities Using Social Media Mining: Application of Topic Modeling and Chance Discovery Theory.,2018,6,IEEE Access,,db/journals/access/access6.html#KoJCY18,https://doi.org/10.1109/ACCESS.2017.2780046 +Francesco Devoti,Facing the Millimeter-Wave Cell Discovery Challenge in 5G Networks With Context-Awareness.,2016,4,IEEE Access,,db/journals/access/access4.html#DevotiFC16,https://doi.org/10.1109/ACCESS.2016.2628917 +Francisco Javier Fernandez de Gorostiza Luengo,Sound Synthesis for Communicating Nonverbal Expressive Cues.,2017,5,IEEE Access,,db/journals/access/access5.html#LuengoAGS17,https://doi.org/10.1109/ACCESS.2017.2658726 +Patricia Acosta-Vargas,Challenges to Assess Accessibility in Higher Education Websites: A Comparative Study of Latin America Universities.,2018,6,IEEE Access,,db/journals/access/access6.html#Acosta-VargasAL18,https://doi.org/10.1109/ACCESS.2018.2848978 +Maruf Pasha,A Critical Analysis of Software Risk Management Techniques in Large Scale Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#PashaQP18,https://doi.org/10.1109/ACCESS.2018.2805862 +Changsong Cai,Design and Optimization of Load-Independent Magnetic Resonant Wireless Charging System for Electric Vehicles.,2018,6,IEEE Access,,db/journals/access/access6.html#CaiWFZHZLL18,https://doi.org/10.1109/ACCESS.2018.2810128 +Burcu Carkli Yavuz,Prediction of Protein Secondary Structure With Clonal Selection Algorithm and Multilayer Perceptron.,2018,6,IEEE Access,,db/journals/access/access6.html#YavuzYO18,https://doi.org/10.1109/ACCESS.2018.2864665 +Pasquale Avella,A Branch-and-Cut Algorithm for the Multilevel Generalized Assignment Problem.,2013,1,IEEE Access,,db/journals/access/access1.html#AvellaBV13,https://doi.org/10.1109/ACCESS.2013.2273268 +Haochen Zhang,Adaptive Finite-Time Synchronization Control for Teleoperation System With Varying Time Delays.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangSS18,https://doi.org/10.1109/ACCESS.2018.2857802 +Sheng Hong,Chaotic Phase-Coded Waveforms With Space-Time Complementary Coding for MIMO Radar Applications.,2018,6,IEEE Access,,db/journals/access/access6.html#HongZDZWY18,https://doi.org/10.1109/ACCESS.2018.2859404 +Xuehu Yan,General Meaningful Shadow Construction in Secret Image Sharing.,2018,6,IEEE Access,,db/journals/access/access6.html#YanLL18,https://doi.org/10.1109/ACCESS.2018.2865421 +Jie Hu 0001,Bridging the Social and Wireless Networking Divide: Information Dissemination in Integrated Cellular and Opportunistic Networks.,2015,3,IEEE Access,,db/journals/access/access3.html#HuYPH15,https://doi.org/10.1109/ACCESS.2015.2477307 +Aaqib Patel,The Achievable Rate of Interweave Cognitive Radio in the Face of Sensing Errors.,2017,5,IEEE Access,,db/journals/access/access5.html#PatelKMDH17,https://doi.org/10.1109/ACCESS.2016.2612941 +Edward A. Lee,Constructive Models of Discrete and Continuous Physical Phenomena.,2014,2,IEEE Access,,db/journals/access/access2.html#Lee14,https://doi.org/10.1109/ACCESS.2014.2345759 +James J. Q. Yu,Delay Aware Intelligent Transient Stability Assessment System.,2017,5,IEEE Access,,db/journals/access/access5.html#YuLHL17,https://doi.org/10.1109/ACCESS.2017.2746093 +Xu Ma 0005,L2P-Norm Distance Twin Support Vector Machine.,2017,5,IEEE Access,,db/journals/access/access5.html#MaYY17,https://doi.org/10.1109/ACCESS.2017.2761125 +Jiejun Hu,Reward-Aided Sensing Task Execution in Mobile Crowdsensing Enabled by Energy Harvesting.,2018,6,IEEE Access,,db/journals/access/access6.html#HuYHW18,https://doi.org/10.1109/ACCESS.2018.2839582 +Fernando Rosas,A Technological Perspective on Information Cascades via Social Learning.,2017,5,IEEE Access,,db/journals/access/access5.html#RosasHC17,https://doi.org/10.1109/ACCESS.2017.2687422 +Maryam Pouryazdan,Anchor-Assisted and Vote-Based Trustworthiness Assurance in Smart City Crowdsensing.,2016,4,IEEE Access,,db/journals/access/access4.html#PouryazdanKSS16,https://doi.org/10.1109/ACCESS.2016.2519820 +Addy Wahyudie,Perspectives on Damping Strategy for Heaving Wave Energy Converters.,2017,5,IEEE Access,,db/journals/access/access5.html#WahyudieJ17,https://doi.org/10.1109/ACCESS.2017.2757278 +Zhongchen Miao,Joint Prediction of Rating and Popularity for Cold-Start Item by Sentinel User Selection.,2016,4,IEEE Access,,db/journals/access/access4.html#MiaoYCYZZ16,https://doi.org/10.1109/ACCESS.2016.2633282 +Guangfu Ma,Adaptive Backstepping-Based Neural Network Control for Hypersonic Reentry Vehicle With Input Constraints.,2018,6,IEEE Access,,db/journals/access/access6.html#MaCLG18,https://doi.org/10.1109/ACCESS.2017.2780994 +Seppo Sierla,Automatic Generation of Pipelines Into a 3D Industrial Process Model.,2017,5,IEEE Access,,db/journals/access/access5.html#SierlaKV17,https://doi.org/10.1109/ACCESS.2017.2774835 +Jingjing Guo,A Situational Awareness Trust Evolution Model for Mobile Devices in D2D Communication.,2018,6,IEEE Access,,db/journals/access/access6.html#GuoMLZL18,https://doi.org/10.1109/ACCESS.2017.2755058 +Hadi Aliakbarpour,Heterogeneous Multi-View Information Fusion: Review of 3-D Reconstruction Methods and a New Registration with Uncertainty Modeling.,2016,4,IEEE Access,,db/journals/access/access4.html#AliakbarpourPPS16,https://doi.org/10.1109/ACCESS.2016.2629987 +Jin-Xu Xu,Compact Filtering Switch With Wide-Stopband Response.,2017,5,IEEE Access,,db/journals/access/access5.html#XuZX17,https://doi.org/10.1109/ACCESS.2017.2768098 +Dong Zheng 0001,Efficient and Privacy-Preserving Medical Data Sharing in Internet of Things With Limited Computing Power.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhengWZZ18,https://doi.org/10.1109/ACCESS.2018.2840504 +Zhixiong Zhong,Tracking Synchronization for DC Microgrid With Multiple-Photovoltaic Arrays: An Even-Based Fuzzy Control Scheme.,2018,6,IEEE Access,,db/journals/access/access6.html#Zhong18,https://doi.org/10.1109/ACCESS.2018.2827363 +Mengmeng Zhang,A Systematic Review of Business-IT Alignment Research With Enterprise Architecture.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangCL18,https://doi.org/10.1109/ACCESS.2018.2819185 +Jing Wang,A GPU-Accelerated Approach for Collision Detection and Tool Posture Modification in Multi-Axis Machining.,2018,6,IEEE Access,,db/journals/access/access6.html#WangLZ18,https://doi.org/10.1109/ACCESS.2018.2848938 +Thaha Muhammed,UbeHealth: A Personalized Ubiquitous Cloud and Edge-Enabled Networked Healthcare System for Smart Cities.,2018,6,IEEE Access,,db/journals/access/access6.html#MuhammedMAK18,https://doi.org/10.1109/ACCESS.2018.2846609 +Vincenzo Eramo,Migration Energy Aware Reconfigurations of Virtual Network Function Instances in NFV Architectures.,2017,5,IEEE Access,,db/journals/access/access5.html#EramoAL17,https://doi.org/10.1109/ACCESS.2017.2685437 +Xiao-Ying Liu,A Hybrid Genetic Algorithm With Wrapper-Embedded Approaches for Feature Selection.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuLWYY18,https://doi.org/10.1109/ACCESS.2018.2818682 +Sondos Mehri,Design Optimization of Multiple-Layer PSCs With Minimal Losses for Efficient and Robust Inductive Wireless Power Transfer.,2018,6,IEEE Access,,db/journals/access/access6.html#MehriASS18,https://doi.org/10.1109/ACCESS.2018.2831785 +Tugba Erdogan,Systematic Mapping of Process Mining Studies in Healthcare.,2018,6,IEEE Access,,db/journals/access/access6.html#ErdoganT18,https://doi.org/10.1109/ACCESS.2018.2831244 +Xuanxuan Wang,Energy-Efficiency Maximization for Secure Multiuser MIMO SWIPT Systems With CSI Uncertainty.,2018,6,IEEE Access,,db/journals/access/access6.html#WangFCCG18,https://doi.org/10.1109/ACCESS.2017.2781717 +Zhiliang Zhu,A Dynamic Personalized News Recommendation System Based on BAP User Profiling Method.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhuLLLY18,https://doi.org/10.1109/ACCESS.2018.2858564 +Muhammad Mahtab Alam,A Survey on the Roles of Communication Technologies in IoT-Based Personalized Healthcare Applications.,2018,6,IEEE Access,,db/journals/access/access6.html#AlamMKPKM18,https://doi.org/10.1109/ACCESS.2018.2853148 +Claudio Fiandrino,CrowdSenSim: a Simulation Platform for Mobile Crowdsensing in Realistic Urban Environments.,2017,5,IEEE Access,,db/journals/access/access5.html#FiandrinoCCKSBK17,https://doi.org/10.1109/ACCESS.2017.2671678 +Baseem Khan,Selecting a Meta-Heuristic Technique for Smart Micro-Grid Optimization Problem: A Comprehensive Analysis.,2017,5,IEEE Access,,db/journals/access/access5.html#KhanS17,https://doi.org/10.1109/ACCESS.2017.2728683 +Rick L. Sturdivant,Systems Engineering of a Terabit Elliptic Orbit Satellite and Phased Array Ground Station for IoT Connectivity and Consumer Internet Access.,2016,4,IEEE Access,,db/journals/access/access4.html#SturdivantC16,https://doi.org/10.1109/ACCESS.2016.2608929 +Futoshi Yoshida,Experimental and Theoretical Analysis of Active Charge Accumulator for Water Hydraulics System.,2017,5,IEEE Access,,db/journals/access/access5.html#YoshidaIIK17,https://doi.org/10.1109/ACCESS.2016.2605135 +Santiago L. Rovere,Practical Points for the Software Development of an Agent-Based Model of a Coupled Human-Natural System.,2016,4,IEEE Access,,db/journals/access/access4.html#RovereNPB16,https://doi.org/10.1109/ACCESS.2016.2592418 +Joel J. P. C. Rodrigues,Enabling Technologies for the Internet of Health Things.,2018,6,IEEE Access,,db/journals/access/access6.html#RodriguesSJSPAA18,https://doi.org/10.1109/ACCESS.2017.2789329 +Xuefeng Yin,Performance Comparison of SAGE and MUSIC for Channel Estimation in Direction-Scan Measurements.,2016,4,IEEE Access,,db/journals/access/access4.html#YinOW16,https://doi.org/10.1109/ACCESS.2016.2544341 +Corina Vaduva,Understanding Heterogeneous EO Datasets: A Framework for Semantic Representations.,2018,6,IEEE Access,,db/journals/access/access6.html#VaduvaGD18,https://doi.org/10.1109/ACCESS.2018.2801032 +Liming Deng,A Data-Driven Decision Support System for Scoliosis Prognosis.,2017,5,IEEE Access,,db/journals/access/access5.html#DengHCL17,https://doi.org/10.1109/ACCESS.2017.2696704 +Guoliang Zhu,SwapX: An NVM-Based Hierarchical Swapping Framework.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhuLWZZM17,https://doi.org/10.1109/ACCESS.2017.2737634 +Arafat Mohammed Rashad Al-Dhaqm,CDBFIP: Common Database Forensic Investigation Processes for Internet of Things.,2017,5,IEEE Access,,db/journals/access/access5.html#Al-DhaqmROCGAA17,https://doi.org/10.1109/ACCESS.2017.2762693 +Pascal Szacherski,Classification of Proteomic MS Data as Bayesian Solution of an Inverse Problem.,2014,2,IEEE Access,,db/journals/access/access2.html#SzacherskiGGMCGLG14,https://doi.org/10.1109/ACCESS.2014.2359979 +Ramin Zahedi,Adaptive Estimation of Time-Varying Sparse Signals.,2013,1,IEEE Access,,db/journals/access/access1.html#ZahediKCP13,https://doi.org/10.1109/ACCESS.2013.2272664 +Yiming Huo,5G Cellular User Equipment: From Theory to Practical Hardware Design.,2017,5,IEEE Access,,db/journals/access/access5.html#HuoDX17,https://doi.org/10.1109/ACCESS.2017.2727550 +Minghao Li,An Interactive Model-Driven Simulation Approach for Dynamic Behavior Analysis in Armed Conflicts.,2018,6,IEEE Access,,db/journals/access/access6.html#LiXYG18,https://doi.org/10.1109/ACCESS.2018.2852803 +Mohamed Ridha Zenaidi,Performance Limits of Online Energy Harvesting Communications With Noisy Channel State Information at the Transmitter.,2017,5,IEEE Access,,db/journals/access/access5.html#ZenaidiRA17,https://doi.org/10.1109/ACCESS.2017.2654454 +Shuangxi Hong,Personal Privacy Protection Framework Based on Hidden Technology for Smartphones.,2017,5,IEEE Access,,db/journals/access/access5.html#HongLRHC17,https://doi.org/10.1109/ACCESS.2017.2695561 +Hui Shuai,Cascaded Regional Spatio-Temporal Feature-Routing Networks for Video Object Detection.,2018,6,IEEE Access,,db/journals/access/access6.html#ShuaiLZYD18,https://doi.org/10.1109/ACCESS.2017.2787155 +Abdallah Moubayed,E-Learning: Challenges and Research Opportunities Using Machine Learning and Data Analytics.,2018,6,IEEE Access,,db/journals/access/access6.html#MoubayedINLS18,https://doi.org/10.1109/ACCESS.2018.2851790 +Igor Syrytsin,User Impact on Phased and Switch Diversity Arrays in 5G Mobile Terminals.,2018,6,IEEE Access,,db/journals/access/access6.html#SyrytsinZP18,https://doi.org/10.1109/ACCESS.2017.2779792 +Yutae Lee,Availability of Parallel Triplicated Redundancy Models With Imperfect Switchovers and Interrupted Repairs.,2018,6,IEEE Access,,db/journals/access/access6.html#Lee18a,https://doi.org/10.1109/ACCESS.2018.2819640 +Zhong Zhang,Integration Convolutional Neural Network for Person Re-Identification in Camera Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangSL18,https://doi.org/10.1109/ACCESS.2018.2852712 +Song Deng,Distributed Mining for Content Filtering Function Based on Simulated Annealing and Gene Expression Programming in Active Distribution Network.,2017,5,IEEE Access,,db/journals/access/access5.html#DengYYZ17,https://doi.org/10.1109/ACCESS.2017.2669106 +Qihua Wu,Compressive-Sensing-Based Simultaneous Polarimetric HRRP Reconstruction With Random OFDM Pair Radar Signal.,2018,6,IEEE Access,,db/journals/access/access6.html#WuZAALX18,https://doi.org/10.1109/ACCESS.2018.2853111 +Qingyang Song,An Interference Coordination-Based Distributed Resource Allocation Scheme in Heterogeneous Cellular Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#SongWQN17,https://doi.org/10.1109/ACCESS.2017.2657221 +Aqsa Naeem,Understanding Customer Behavior in Multi-Tier Demand Response Management Program.,2015,3,IEEE Access,,db/journals/access/access3.html#NaeemSHYAT15,https://doi.org/10.1109/ACCESS.2015.2507372 +Nhan-Van Vo,Secrecy Performance Analysis of Energy Harvesting Wireless Sensor Networks With a Friendly Jammer.,2017,5,IEEE Access,,db/journals/access/access5.html#VoNSH17,https://doi.org/10.1109/ACCESS.2017.2768443 +Xingwu Song,Localized Fault Tolerant and Connectivity Restoration Algorithms in Mobile Wireless Ad Hoc Network.,2018,6,IEEE Access,,db/journals/access/access6.html#SongZZHW18,https://doi.org/10.1109/ACCESS.2018.2851441 +Esad Kadusic,QoS-Aware Dynamic MAP Selection in HMIPv6 Architectures.,2016,4,IEEE Access,,db/journals/access/access4.html#KadusicZK16,https://doi.org/10.1109/ACCESS.2016.2575098 +Po-Yu Lai,Rapid-Response Framework for Defensive Driving Based on Internet of Vehicles Using Message-Oriented Middleware.,2018,6,IEEE Access,,db/journals/access/access6.html#LaiDC18,https://doi.org/10.1109/ACCESS.2018.2808913 +Abdelaziz El Fazziki,An Agent Based Traffic Regulation System for the Roadside Air Quality Control.,2017,5,IEEE Access,,db/journals/access/access5.html#FazzikiBSOS17,https://doi.org/10.1109/ACCESS.2017.2725984 +Shuxing Du,IIOT-Based Intelligent Control and Management System for Motorcycle Endurance Test.,2018,6,IEEE Access,,db/journals/access/access6.html#DuLMWW18,https://doi.org/10.1109/ACCESS.2018.2841185 +Simon Robin Cowell,On the Exact Reliability Enhancements of Small Hammock Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#CowellBDP18,https://doi.org/10.1109/ACCESS.2018.2828036 +Daecheon Lim,Liquid-Metal-Fluidically Switchable Metasurface for Broadband and Polarization-Insensitive Absorption.,2018,6,IEEE Access,,db/journals/access/access6.html#LimL18,https://doi.org/10.1109/ACCESS.2018.2857472 +Merima Kulin,End-to-End Learning From Spectrum Data: A Deep Learning Approach for Wireless Signal Identification in Spectrum Monitoring Applications.,2018,6,IEEE Access,,db/journals/access/access6.html#KulinKMP18,https://doi.org/10.1109/ACCESS.2018.2818794 +Feng Zhang,Formal Verification of Behavioral AADL Models by Stateful Timed CSP.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangZMN17,https://doi.org/10.1109/ACCESS.2017.2770323 +Samaneh Movassaghi,Enabling Interference-Aware and Energy-Efficient Coexistence of Multiple Wireless Body Area Networks With Unknown Dynamics.,2016,4,IEEE Access,,db/journals/access/access4.html#MovassaghiMJSA16,https://doi.org/10.1109/ACCESS.2016.2577681 +Le Wang,Guaranteed-Performance Time-Varying Formation Control for Swarm Systems Subjected to Communication Constraints.,2018,6,IEEE Access,,db/journals/access/access6.html#WangXYL18,https://doi.org/10.1109/ACCESS.2018.2854848 +Jian Wei,Learning Spatio-Temporal Information for Multi-Object Tracking.,2017,5,IEEE Access,,db/journals/access/access5.html#WeiYL17,https://doi.org/10.1109/ACCESS.2017.2686482 +Austin J. Pickles,Electromagnetic Properties of Disordered Three-Dimensional Mixtures.,2013,1,IEEE Access,,db/journals/access/access1.html#PicklesKS13a,https://doi.org/10.1109/ACCESS.2013.2292024 +Wanke Cao,Speed Synchronization Control for Integrated Automotive Motor-Transmission Powertrains Over CAN Through a Co-Design Methodology.,2018,6,IEEE Access,,db/journals/access/access6.html#CaoWCLLSS18,https://doi.org/10.1109/ACCESS.2018.2810941 +Hanqi Tang,A Network Coding and DES Based Dynamic Encryption Scheme for Moving Target Defense.,2018,6,IEEE Access,,db/journals/access/access6.html#TangSYL18,https://doi.org/10.1109/ACCESS.2018.2832854 +Cheng Li 0004,Outage Performance of the Full-Duplex Two-Way DF Relay System Under Imperfect CSI.,2017,5,IEEE Access,,db/journals/access/access5.html#LiWYCLZ17,https://doi.org/10.1109/ACCESS.2017.2696034 +Nazir A. Loan,Secure and Robust Digital Image Watermarking Using Coefficient Differencing and Chaotic Encryption.,2018,6,IEEE Access,,db/journals/access/access6.html#LoanHPLSB18,https://doi.org/10.1109/ACCESS.2018.2808172 +Kunlei Zhang,Large-Scale Deep Belief Nets With MapReduce.,2014,2,IEEE Access,,db/journals/access/access2.html#ZhangC14,https://doi.org/10.1109/ACCESS.2014.2319813 +Karen Panetta,A New Unified Impulse Noise Removal Algorithm Using a New Reference Sequence-to-Sequence Similarity Detector.,2018,6,IEEE Access,,db/journals/access/access6.html#PanettaBA18,https://doi.org/10.1109/ACCESS.2018.2850518 +Tianyi Pan,Threat From Being Social: Vulnerability Analysis of Social Network Coupled Smart Grid.,2017,5,IEEE Access,,db/journals/access/access5.html#PanMNLKST17,https://doi.org/10.1109/ACCESS.2017.2738565 +Rabe Arshad,Handover Management in 5G and Beyond: A Topology Aware Skipping Approach.,2016,4,IEEE Access,,db/journals/access/access4.html#ArshadESAA16,https://doi.org/10.1109/ACCESS.2016.2642538 +Marcello Caleffi,Optimal Routing for Quantum Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#Caleffi17,https://doi.org/10.1109/ACCESS.2017.2763325 +Junhui Zhao,A Dual-Link Soft Handover Scheme for C/U Plane Split Network in High-Speed Railway.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaoLGWF18,https://doi.org/10.1109/ACCESS.2018.2794770 +Runzi Liu,Energy-Efficient Resource Allocation for Heterogeneous Wireless Network With Multi-Homed User Equipments.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuSW18,https://doi.org/10.1109/ACCESS.2018.2810216 +Farooq Aftab,Self-Organization Based Clustering in MANETs Using Zone Based Group Mobility.,2017,5,IEEE Access,,db/journals/access/access5.html#AftabZA17,https://doi.org/10.1109/ACCESS.2017.2778019 +Nasim Ullah,Improving the Hardware Complexity by Exploiting the Reduced Dynamics-Based Fractional Order Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#UllahUIH17,https://doi.org/10.1109/ACCESS.2017.2700439 +Wei Xiao,Research Into a Recovery Method of GNSS Authorized Service Signal Component.,2018,6,IEEE Access,,db/journals/access/access6.html#XiaoLMYS18,https://doi.org/10.1109/ACCESS.2018.2839679 +Taisong Li,Deep Dynamic Network Embedding for Link Prediction.,2018,6,IEEE Access,,db/journals/access/access6.html#LiZYZY18,https://doi.org/10.1109/ACCESS.2018.2839770 +Yinan Qi,Semi-Persistent RRC Protocol for Machine-Type Communication Devices in LTE Networks.,2015,3,IEEE Access,,db/journals/access/access3.html#QiQIT15,https://doi.org/10.1109/ACCESS.2015.2445976 +Tharinda Nishantha Vidanagama,Service Environment for Smart Wireless Devices: An M2M Gateway Selection Scheme.,2015,3,IEEE Access,,db/journals/access/access3.html#VidanagamaAO15,https://doi.org/10.1109/ACCESS.2015.2436907 +Ranran Zhang,A New Motor Imagery EEG Classification Method FB-TRCSP+RF Based on CSP and Random Forest.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangXLJLCRJC18,https://doi.org/10.1109/ACCESS.2018.2860633 +Rui Teng,Differentiation Presentation for Sustaining Internet Access in a Disaster-Resilient Homogeneous Wireless Infrastructure.,2016,4,IEEE Access,,db/journals/access/access4.html#TengL0M16,https://doi.org/10.1109/ACCESS.2016.2519244 +Peiqiang Li,Sparsity Prevention Pivoting Method for Linear Programming.,2018,6,IEEE Access,,db/journals/access/access6.html#LiLLZCWF18,https://doi.org/10.1109/ACCESS.2018.2817571 +João Carneiro,On the Influence of Velocity and Acceleration Estimators on a Servopneumatic System Behaviour.,2016,4,IEEE Access,,db/journals/access/access4.html#CarneiroA16,https://doi.org/10.1109/ACCESS.2016.2607284 +Jiang Minlan,A Cuckoo Search-Support Vector Machine Model for Predicting Dynamic Measurement Errors of Sensors.,2016,4,IEEE Access,,db/journals/access/access4.html#MinlanJJXSS16,https://doi.org/10.1109/ACCESS.2016.2605041 +Qinghua Li,Process Modeling and Monitoring With Incomplete Data Based on Robust Probabilistic Partial Least Square Method.,2018,6,IEEE Access,,db/journals/access/access6.html#LiPZY18,https://doi.org/10.1109/ACCESS.2018.2810079 +Yao-Tung Tsou,SFTopk: Secure Functional Top-k Query via Untrusted Data Storage.,2015,3,IEEE Access,,db/journals/access/access3.html#TsouHHK15,https://doi.org/10.1109/ACCESS.2015.2511143 +Xuanzhen Chen,Kinematic Modeling for a Class of Free-Floating Space Robots.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenQ17,https://doi.org/10.1109/ACCESS.2017.2721426 +Jie Zhang,A Probabilistic Mechanism Design for Online Auctions.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangLW17,https://doi.org/10.1109/ACCESS.2017.2705120 +Yong Wang 0016,Adaptive Control and Predictive Control for Torsional Vibration Suppression in Helicopter/Engine System.,2018,6,IEEE Access,,db/journals/access/access6.html#WangZZM18,https://doi.org/10.1109/ACCESS.2018.2829723 +Alper Kursat Uysal,On Two-Stage Feature Selection Methods for Text Classification.,2018,6,IEEE Access,,db/journals/access/access6.html#Uysal18,https://doi.org/10.1109/ACCESS.2018.2863547 +Xiong Fengguang,A 3D Surface Matching Method Using Keypoint- Based Covariance Matrix Descriptors.,2017,5,IEEE Access,,db/journals/access/access5.html#FengguangX17,https://doi.org/10.1109/ACCESS.2017.2727066 +Bo Gao 0001,Offload Decision Models and the Price of Anarchy in Mobile Cloud Application Ecosystems.,2015,3,IEEE Access,,db/journals/access/access3.html#GaoHJ15,https://doi.org/10.1109/ACCESS.2016.2518179 +Xiaojuan Yan,Performance Analysis of NOMA-Based Land Mobile Satellite Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#YanXWACZ18,https://doi.org/10.1109/ACCESS.2018.2844783 +Ting Li,Privacy-Preserving Protocol for Sink Node Location in Telemedicine Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#LiLXLCS18,https://doi.org/10.1109/ACCESS.2018.2858274 +Khursheed Aurangzeb,Data Reduction Using Change Coding for Remote Applications of Wireless Visual Sensor Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#AurangzebAO18a,https://doi.org/10.1109/ACCESS.2018.2799958 +Christopher G. Coogan,Brain-Computer Interface Control in a Virtual Reality Environment and Applications for the Internet of Things.,2018,6,IEEE Access,,db/journals/access/access6.html#CooganH18,https://doi.org/10.1109/ACCESS.2018.2809453 +Dejun Zhang,Integrating Feature Selection and Feature Extraction Methods With Deep Learning to Predict Clinical Outcome of Breast Cancer.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangZZH18,https://doi.org/10.1109/ACCESS.2018.2837654 +Rui Li 0010,Cooperative Planning of Active Distribution System With Renewable Energy Sources and Energy Storage Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#LiWX18,https://doi.org/10.1109/ACCESS.2017.2785263 +Hilario Seibel,Eyes on the Target: Super-Resolution and License-Plate Recognition in Low-Quality Surveillance Videos.,2017,5,IEEE Access,,db/journals/access/access5.html#SeibelGR17,https://doi.org/10.1109/ACCESS.2017.2737418 +Yongquan Sun,Computing Lifetime Distributions and Reliability for Systems With Outsourced Components: A Case Study.,2018,6,IEEE Access,,db/journals/access/access6.html#SunSPY18,https://doi.org/10.1109/ACCESS.2018.2843375 +Jikui Liu,A Multiscale Autoregressive Model-Based Electrocardiogram Identification Method.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuYHWHL18,https://doi.org/10.1109/ACCESS.2018.2820684 +Pan Sun,Centrifugal Blower of Stratospheric Airship.,2018,6,IEEE Access,,db/journals/access/access6.html#SunWX18,https://doi.org/10.1109/ACCESS.2018.2809707 +Frank Gabriel,Caterpillar RLNC With Feedback (CRLNC-FB): Reducing Delay in Selective Repeat ARQ Through Coding.,2018,6,IEEE Access,,db/journals/access/access6.html#GabrielWPFR18,https://doi.org/10.1109/ACCESS.2018.2865137 +Muhammad Zubair Ahmad,Mallat's Scattering Transform Based Anomaly Sensing for Detection of Seizures in Scalp EEG.,2017,5,IEEE Access,,db/journals/access/access5.html#AhmadKSK17,https://doi.org/10.1109/ACCESS.2017.2736014 +Jian Chen,Toward Green and Secure Communications over Massive MIMO Relay Networks: Joint Source and Relay Power Allocation.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenCLL17,https://doi.org/10.1109/ACCESS.2017.2651098 +Xuhong Chen,Directivity-Beamwidth Tradeoff of Massive MIMO Uplink Beamforming for High Speed Train Communication.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenLLFL17,https://doi.org/10.1109/ACCESS.2017.2694002 +Son Xuat Ta,Broadband Electrically Small Circularly Polarized Directive Antenna.,2017,5,IEEE Access,,db/journals/access/access5.html#TaPZ17,https://doi.org/10.1109/ACCESS.2017.2730236 +Rodolfo Torrea Duran,Topology-Aware Space-Time Network Coding in Cellular Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#DuranCPVM18,https://doi.org/10.1109/ACCESS.2017.2773709 +Milena Radenkovic,Adaptive Real-Time Predictive Collaborative Content Discovery and Retrieval in Mobile Disconnection Prone Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#RadenkovicHM18,https://doi.org/10.1109/ACCESS.2018.2840040 +Hanan Salam,Fully Automatic Analysis of Engagement and Its Relationship to Personality in Human-Robot Interactions.,2017,5,IEEE Access,,db/journals/access/access5.html#SalamCTGC17,https://doi.org/10.1109/ACCESS.2016.2614525 +Naushad Ansari,M-RWTL: Learning Signal-Matched Rational Wavelet Transform in Lifting Framework.,2018,6,IEEE Access,,db/journals/access/access6.html#AnsariG18,https://doi.org/10.1109/ACCESS.2017.2788084 +Shuaibing Lu,Elastic Scheduling for Scaling Virtual Clusters in Cloud Data Center Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#LuFWQ18,https://doi.org/10.1109/ACCESS.2018.2814565 +Peiying Zhang,Virtual Network Embedding Using Node Multiple Metrics Based on Simplified ELECTRE Method.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangYQL18,https://doi.org/10.1109/ACCESS.2018.2847910 +Vittorio Camarchia,A Design Strategy for AM/PM Compensation in GaN Doherty Power Amplifiers.,2017,5,IEEE Access,,db/journals/access/access5.html#CamarchiaCGGJPQ17,https://doi.org/10.1109/ACCESS.2017.2759164 +Santosh Kumar 0003,"Comments on ""Cutset Bounds on the Capacity of MIMO Relay Channels"".",2018,6,IEEE Access,,db/journals/access/access6.html#KumarPF18,https://doi.org/10.1109/ACCESS.2018.2849640 +Xunpeng Rao,Optimal Recharging With Practical Considerations in Wireless Rechargeable Sensor Network.,2017,5,IEEE Access,,db/journals/access/access5.html#RaoYYZW17,https://doi.org/10.1109/ACCESS.2017.2665471 +Qingguo Sun,DSSRM Design With Multiple Pole Arcs Optimization for High Torque and Low Torque Ripple Applications.,2018,6,IEEE Access,,db/journals/access/access6.html#SunWGSG18,https://doi.org/10.1109/ACCESS.2018.2834901 +Shunya Iwata,A Lower Bound on Secrecy Capacity for MIMO Wiretap Channel Aided by a Cooperative Jammer With Channel Estimation Error.,2017,5,IEEE Access,,db/journals/access/access5.html#IwataOK17,https://doi.org/10.1109/ACCESS.2017.2684901 +Kuldeep Randhawa,Credit Card Fraud Detection Using AdaBoost and Majority Voting.,2018,6,IEEE Access,,db/journals/access/access6.html#RandhawaLSLN18,https://doi.org/10.1109/ACCESS.2018.2806420 +Xueqin Jiang,Constructing Large Girth QC Protograph LDPC Codes Based on PSD-PEG Algorithm.,2017,5,IEEE Access,,db/journals/access/access5.html#JiangHWL17,https://doi.org/10.1109/ACCESS.2017.2688701 +Yi Zhao,Privacy-Preserving Economic Dispatch for An Active Distribution Network With Multiple Networked Microgrids.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaoYBLL18,https://doi.org/10.1109/ACCESS.2018.2854280 +Dapeng Wu 0002,Dynamical Credibility Assessment of Privacy-Preserving Strategy for Opportunistic Mobile Crowd Sensing.,2018,6,IEEE Access,,db/journals/access/access6.html#WuFZWW18,https://doi.org/10.1109/ACCESS.2018.2847251 +Mai Mahmoud Eladany,Power System Transient Stability: An Algorithm for Assessment and Enhancement Based on Catastrophe Theory and FACTS Devices.,2018,6,IEEE Access,,db/journals/access/access6.html#EladanyES18,https://doi.org/10.1109/ACCESS.2018.2834906 +Qing F. Zhou,TDMA-Based Cooperative NC MAC Scheme for Two-Way Relaying Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhouZPLF18,https://doi.org/10.1109/ACCESS.2017.2788559 +Yu-Long Gao,A Secure Cryptocurrency Scheme Based on Post-Quantum Blockchain.,2018,6,IEEE Access,,db/journals/access/access6.html#GaoCCSNY18,https://doi.org/10.1109/ACCESS.2018.2827203 +Huapeng Wu,High Resolution Similarity Directed Adjusted Anchored Neighborhood Regression for Single Image Super-Resolution.,2018,6,IEEE Access,,db/journals/access/access6.html#WuZW18,https://doi.org/10.1109/ACCESS.2018.2831791 +Michele Zorzi,Cognition-Based Networks: A New Perspective on Network Optimization Using Learning and Distributed Intelligence.,2015,3,IEEE Access,,db/journals/access/access3.html#ZorziZTGZ15,https://doi.org/10.1109/ACCESS.2015.2471178 +Atif Raza Jafri,Hardware Complexity Reduction in Universal Filtered Multicarrier Transmitter Implementation.,2017,5,IEEE Access,,db/journals/access/access5.html#JafriMSIN17,https://doi.org/10.1109/ACCESS.2017.2728605 +Ghulam Muhammad,A Facial-Expression Monitoring System for Improved Healthcare in Smart Cities.,2017,5,IEEE Access,,db/journals/access/access5.html#MuhammadAAGA17,https://doi.org/10.1109/ACCESS.2017.2712788 +Tianhua Jiang,Application of Grey Wolf Optimization for Solving Combinatorial Problems: Job Shop and Flexible Job Shop Scheduling Cases.,2018,6,IEEE Access,,db/journals/access/access6.html#JiangZ18b,https://doi.org/10.1109/ACCESS.2018.2833552 +Wanwook Ki,Generating Information Relation Matrix Using Semantic Patent Mining for Technology Planning: A Case of Nano-Sensor.,2017,5,IEEE Access,,db/journals/access/access5.html#KiK17,https://doi.org/10.1109/ACCESS.2017.2771371 +Mou Wu,An Intelligent Adaptive Algorithm for Environment Parameter Estimation in Smart Cities.,2018,6,IEEE Access,,db/journals/access/access6.html#WuXT18,https://doi.org/10.1109/ACCESS.2018.2810891 +Ibrahim Lahmer,Towards a Virtual Domain Based Authentication on MapReduce.,2016,4,IEEE Access,,db/journals/access/access4.html#LahmerZ16,https://doi.org/10.1109/ACCESS.2016.2558456 +Hossein Ziaei Nafchi,Mean Deviation Similarity Index: Efficient and Reliable Full-Reference Image Quality Evaluator.,2016,4,IEEE Access,,db/journals/access/access4.html#NafchiSHC16,https://doi.org/10.1109/ACCESS.2016.2604042 +Mohammed H. Qais,A Grey Wolf Optimizer for Optimum Parameters of Multiple PI Controllers of a Grid-Connected PMSG Driven by Variable Speed Wind Turbine.,2018,6,IEEE Access,,db/journals/access/access6.html#QaisHA18,https://doi.org/10.1109/ACCESS.2018.2864303 +Wenrui Li,A Novel QoS Prediction Approach for Cloud Services Using Bayesian Network Model.,2018,6,IEEE Access,,db/journals/access/access6.html#LiZLJ18,https://doi.org/10.1109/ACCESS.2017.2779045 +Jinglei Li,User Perceived Qos Provisioning for Video Streaming in Wireless OFDMA Systems: Admission Control and Resource Allocation.,2018,6,IEEE Access,,db/journals/access/access6.html#LiYYQK18,https://doi.org/10.1109/ACCESS.2018.2865010 +Duy H. N. Nguyen,Multiuser Admission Control and Beamforming Optimization Algorithms for MISO Heterogeneous Networks.,2015,3,IEEE Access,,db/journals/access/access3.html#NguyenLL15,https://doi.org/10.1109/ACCESS.2015.2441652 +Ranjan Das,Lossy Coupling Matrix Synthesis Approach for the Realization of Negative Group Delay Response.,2018,6,IEEE Access,,db/journals/access/access6.html#DasZL18,https://doi.org/10.1109/ACCESS.2017.2780888 +Muhammad Azeem Akbar,Improving the Quality of Software Development Process by Introducing a New Methodology-AZ-Model.,2018,6,IEEE Access,,db/journals/access/access6.html#AkbarSKFNSHHEX18,https://doi.org/10.1109/ACCESS.2017.2787981 +Siming Peng,Hexagonal Multicarrier Faster-Than-Nyquist Signaling.,2017,5,IEEE Access,,db/journals/access/access5.html#PengLPW17,https://doi.org/10.1109/ACCESS.2017.2674666 +Malik M. Naeem Mannan,Identification and Removal of Physiological Artifacts From Electroencephalogram Signals: A Review.,2018,6,IEEE Access,,db/journals/access/access6.html#MannanKJ18,https://doi.org/10.1109/ACCESS.2018.2842082 +Feng-Que Pei,Multi-Level Welding Quality Fault Discovery of an Intelligent Production Line by Using Taguchi Quality Loss Function and Signal-Noise Ratio.,2018,6,IEEE Access,,db/journals/access/access6.html#PeiTL18,https://doi.org/10.1109/ACCESS.2018.2857506 +Md. Rofiqul Islam,Optimal Execution of Virtualized Network Functions for Applications in Cyber-Physical-Social-Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#IslamPARHA18,https://doi.org/10.1109/ACCESS.2018.2805890 +Shih-An Li,FPGA-Based Hardware Design for Scale-Invariant Feature Transform.,2018,6,IEEE Access,,db/journals/access/access6.html#LiWPHL18,https://doi.org/10.1109/ACCESS.2018.2863019 +Xiangjun Zhang,Research on the Parameter Optimization of Electronic Ballast for UV-Lamps Considering Its Lifetime and UVC Irradiance.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangDWXJ18,https://doi.org/10.1109/ACCESS.2018.2802481 +Chunbo Xiu,Sliding Mode Control Based on Dynamic Model for Transport Vehicle.,2018,6,IEEE Access,,db/journals/access/access6.html#XiuW18,https://doi.org/10.1109/ACCESS.2018.2841994 +Gerald C. Anzalone,A Low-Cost Open-Source Metal 3-D Printer.,2013,1,IEEE Access,,db/journals/access/access1.html#AnzaloneZWSP13,https://doi.org/10.1109/ACCESS.2013.2293018 +Janez Brest,A Heuristic Algorithm for a Low Autocorrelation Binary Sequence Problem With Odd Length and High Merit Factor.,2018,6,IEEE Access,,db/journals/access/access6.html#BrestB18,https://doi.org/10.1109/ACCESS.2018.2789916 +Ra'ed Al-Dujaily,A Scalable Turbo Decoding Algorithm for High-Throughput Network-on-Chip Implementation.,2016,4,IEEE Access,,db/journals/access/access4.html#Al-DujailyLMMAH16,https://doi.org/10.1109/ACCESS.2016.2628801 +Bijoy K. Ghosh,A Geometric Approach to Head/Eye Control.,2014,2,IEEE Access,,db/journals/access/access2.html#GhoshWK14,https://doi.org/10.1109/ACCESS.2014.2315523 +V. Sankardoss,PMDC Motor Parameter Estimation Using Bio-Inspired Optimization Algorithms.,2017,5,IEEE Access,,db/journals/access/access5.html#SankardossG17,https://doi.org/10.1109/ACCESS.2017.2679743 +Mohammed Hawa,On Using Spectrum History to Manage Opportunistic Access in Cognitive Radio Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#HawaAAJ16,https://doi.org/10.1109/ACCESS.2016.2598745 +Wenlong Zhu,An Approach to Web Services Selection for Multiple Users.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhuYGC17,https://doi.org/10.1109/ACCESS.2017.2722228 +Shuo Chen 0002,Exploiting Polarization for System Capacity Maximization in Ultra-Dense Small Cell Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenZG17,https://doi.org/10.1109/ACCESS.2017.2745416 +Salah A. Alabady,Low Complexity Parity Check Code for Futuristic Wireless Networks Applications.,2018,6,IEEE Access,,db/journals/access/access6.html#AlabadyA18,https://doi.org/10.1109/ACCESS.2018.2818740 +Suhib Bani Melhem,Markov Prediction Model for Host Load Detection and VM Placement in Live Migration.,2018,6,IEEE Access,,db/journals/access/access6.html#MelhemAGZ18,https://doi.org/10.1109/ACCESS.2017.2785280 +Kinza Shafique,Energy Harvesting Using a Low-Cost Rectenna for Internet of Things (IoT) Applications.,2018,6,IEEE Access,,db/journals/access/access6.html#ShafiqueKKSSMCY18,https://doi.org/10.1109/ACCESS.2018.2834392 +Meng Zheng 0001,SMCSS: A Quick and Reliable Cooperative Spectrum Sensing Scheme for Cognitive Industrial Wireless Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhengLYS16,https://doi.org/10.1109/ACCESS.2016.2641471 +Zhichao Feng,Fault Diagnosis Based on Belief Rule Base With Considering Attribute Correlation.,2018,6,IEEE Access,,db/journals/access/access6.html#FengZHYHZ18,https://doi.org/10.1109/ACCESS.2017.2781365 +Jun Deng,Exploitation of Phase-Based Features for Whispered Speech Emotion Recognition.,2016,4,IEEE Access,,db/journals/access/access4.html#DengXZFS16,https://doi.org/10.1109/ACCESS.2016.2591442 +S. M. Ahsan Kazmi,Coordinated Device-to-Device Communication With Non-Orthogonal Multiple Access in Future Wireless Cellular Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#KazmiTHMNH18,https://doi.org/10.1109/ACCESS.2018.2850924 +Hanjin Zhang,Detection of Curvilinear Structure in Images by a Multi-Centered Hough Forest Method.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangYS18a,https://doi.org/10.1109/ACCESS.2018.2823726 +Sendren Sheng-Dong Xu,A Feasible Architecture for ARM-Based Microserver Systems Considering Energy Efficiency.,2017,5,IEEE Access,,db/journals/access/access5.html#XuC17,https://doi.org/10.1109/ACCESS.2017.2657658 +Hamid Reza Karimi,IEEE Access Special Section Editorial: Analysis and Synthesis of Large-Scale Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#KarimiZZY18a,https://doi.org/10.1109/ACCESS.2018.2855519 +Lianpeng Zhang,Robust Tracking and Synchronization of Double Shaking Tables Based on Adaptive Sliding Mode Control With Novel Reaching Law.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhangCYZH16,https://doi.org/10.1109/ACCESS.2016.2631662 +Chao Wang,On Computation Reduction of Liveness-Enforcing Supervisors.,2017,5,IEEE Access,,db/journals/access/access5.html#WangWCAL17,https://doi.org/10.1109/ACCESS.2017.2728080 +Chensi Zhang,Graph Theory Based Cooperative Transmission for Physical-Layer Security in 5G Large-Scale Wireless Relay Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangGXD17,https://doi.org/10.1109/ACCESS.2017.2761882 +Ercan Atam,Advanced Air Path Control in Diesel Engines Accounting for Variable Operational Conditions.,2018,6,IEEE Access,,db/journals/access/access6.html#Atam18,https://doi.org/10.1109/ACCESS.2018.2859381 +Xiaolin Li 0010,Fast Location Algorithm Based on an Extended Symmetry Nested Sensor Model in an Intelligent Transportation System.,2018,6,IEEE Access,,db/journals/access/access6.html#LiWHW18,https://doi.org/10.1109/ACCESS.2017.2786711 +Stavros Nousias,An mHealth System for Monitoring Medication Adherence in Obstructive Respiratory Diseases Using Content Based Audio Classification.,2018,6,IEEE Access,,db/journals/access/access6.html#NousiasLAMTKVT18,https://doi.org/10.1109/ACCESS.2018.2809611 +Saeed Ahmad Dobbah Alghamdi,A Time Truncated Moving Average Chart for the Weibull Distribution.,2017,5,IEEE Access,,db/journals/access/access5.html#AlghamdiAKJ17,https://doi.org/10.1109/ACCESS.2017.2697040 +Chi-Chun Lo,Novel Non-Contact Control System for Medical Healthcare of Disabled Patients.,2016,4,IEEE Access,,db/journals/access/access4.html#LoCPL16,https://doi.org/10.1109/ACCESS.2016.2566668 +Xiangtao Li,Multi-Objective Memetic Search Algorithm for Multi-Objective Permutation Flow Shop Scheduling Problem.,2016,4,IEEE Access,,db/journals/access/access4.html#LiM16,https://doi.org/10.1109/ACCESS.2016.2565622 +Ghulam Muhammad,Automatic Seizure Detection in a Mobile Multimedia Framework.,2018,6,IEEE Access,,db/journals/access/access6.html#MuhammadMAAA18,https://doi.org/10.1109/ACCESS.2018.2859267 +Zhenyu Zhou,Energy-Efficient Context-Aware Matching for Resource Allocation in Ultra-Dense Small Cells.,2015,3,IEEE Access,,db/journals/access/access3.html#ZhouDOC15,https://doi.org/10.1109/ACCESS.2015.2478863 +Beibei Yao,Rolling Element Bearing Fault Diagnosis Using Improved Manifold Learning.,2017,5,IEEE Access,,db/journals/access/access5.html#YaoPWG17,https://doi.org/10.1109/ACCESS.2017.2693379 +Yingfeng Cai,Scene-Adaptive Vehicle Detection Algorithm Based on a Composite Deep Structure.,2017,5,IEEE Access,,db/journals/access/access5.html#CaiWZS17,https://doi.org/10.1109/ACCESS.2017.2756081 +Weike Feng,Jointly Iterative Adaptive Approach Based Space Time Adaptive Processing Using MIMO Radar.,2018,6,IEEE Access,,db/journals/access/access6.html#FengGHLG18,https://doi.org/10.1109/ACCESS.2018.2836454 +Chao Dong 0001,Towards Near Optimal WiFi Offloading With Uncertain Contact Duration.,2018,6,IEEE Access,,db/journals/access/access6.html#DongLQWTQ18,https://doi.org/10.1109/ACCESS.2018.2843182 +Yulong Gao,Sparse-Bayesian-Learning-Based Wideband Spectrum Sensing With Simplified Modulated Wideband Converter.,2018,6,IEEE Access,,db/journals/access/access6.html#GaoCM18,https://doi.org/10.1109/ACCESS.2017.2778699 +Ziyi Wang,A Quadrilinear Decomposition Method for Direction Estimation in Bistatic MIMO Radar.,2018,6,IEEE Access,,db/journals/access/access6.html#WangCWH18,https://doi.org/10.1109/ACCESS.2018.2810225 +Hui Li,Securing Offline Delivery Services by Using Kerberos Authentication.,2018,6,IEEE Access,,db/journals/access/access6.html#LiNYL18,https://doi.org/10.1109/ACCESS.2018.2856904 +Tao Wang 0024,Multiple-Antennae Observation and EMTR Processing of Lightning VHF Radiations.,2018,6,IEEE Access,,db/journals/access/access6.html#WangSQSZDL18,https://doi.org/10.1109/ACCESS.2018.2833115 +Qingyi Zhang,Software Defined Networking Meets Information Centric Networking: A Survey.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangWHLD18,https://doi.org/10.1109/ACCESS.2018.2855135 +Hua Sun,Five Decades of Hierarchical Modulation and Its Benefits in Relay-Aided Networking.,2015,3,IEEE Access,,db/journals/access/access3.html#SunDNH15,https://doi.org/10.1109/ACCESS.2015.2510702 +Haohuang Wen,ParGen: A Parallel Method for Partitioning Data Stream Applications in Mobile Edge Computing.,2018,6,IEEE Access,,db/journals/access/access6.html#WenYW18,https://doi.org/10.1109/ACCESS.2017.2776358 +Zhifeng Zhao,SDN Based VxLAN Optimization in Cloud Computing Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhaoHL17,https://doi.org/10.1109/ACCESS.2017.2762362 +Chengjiao Sun,A Maximum Correntropy Divided Difference Filter for Cooperative Localization.,2018,6,IEEE Access,,db/journals/access/access6.html#SunZWG18,https://doi.org/10.1109/ACCESS.2018.2859391 +Jerry Chun-Wei Lin,PTA: An Efficient System for Transaction Database Anonymization.,2016,4,IEEE Access,,db/journals/access/access4.html#LinLFH16,https://doi.org/10.1109/ACCESS.2016.2596542 +Paula Fraga-Lamas,A Review on Industrial Augmented Reality Systems for the Industry 4.0 Shipyard.,2018,6,IEEE Access,,db/journals/access/access6.html#Fraga-LamasFBV18,https://doi.org/10.1109/ACCESS.2018.2808326 +Kwonjong Lee,Latency of Cellular-Based V2X: Perspectives on TTI-Proportional Latency and TTI-Independent Latency.,2017,5,IEEE Access,,db/journals/access/access5.html#LeeKPWH17,https://doi.org/10.1109/ACCESS.2017.2731777 +Anfeng Liu,A Smart High-Speed Backbone Path Construction Approach for Energy and Delay Optimization in WSNs.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuHZW18,https://doi.org/10.1109/ACCESS.2018.2809556 +Zhuo Jiang,scMPTCP: SDN Cooperated Multipath Transfer for Satellite Network With Load Awareness.,2018,6,IEEE Access,,db/journals/access/access6.html#JiangWLW18,https://doi.org/10.1109/ACCESS.2018.2820719 +Lilin Fan,The Capacity of Device-to-Device Communication Underlaying Cellular Networks With Relay Links.,2017,5,IEEE Access,,db/journals/access/access5.html#FanDY17,https://doi.org/10.1109/ACCESS.2017.2743778 +Yuzhou Liu,Verification of Program by Inspecting Internal Relations Relying on User Requirements.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuLLY18,https://doi.org/10.1109/ACCESS.2018.2836342 +Theodoros A. Alexopoulos,Fault Location Observability using Phasor Measurements Units via Semidefinite Programming.,2016,4,IEEE Access,,db/journals/access/access4.html#AlexopoulosMK16,https://doi.org/10.1109/ACCESS.2016.2602838 +Dilip Singh Sisodia,A Discounted Fuzzy Relational Clustering of Web Users' Using Intuitive Augmented Sessions Dissimilarity Metric.,2016,4,IEEE Access,,db/journals/access/access4.html#SisodiaVV16,https://doi.org/10.1109/ACCESS.2016.2611682 +Zhiyong Zhang 0002,Efficient Compressed Ciphertext Length Scheme Using Multi-Authority CP-ABE for Hierarchical Attributes.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangLGN18,https://doi.org/10.1109/ACCESS.2018.2854600 +Sami ud Din,A Comparative Experimental Study of Robust Sliding Mode Control Strategies for Underactuated Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#DinKRA18,https://doi.org/10.1109/ACCESS.2017.2780889 +Ahmed A. Hussain,FPGA Hardware Implementation of DOA Estimation Algorithm Employing LU Decomposition.,2018,6,IEEE Access,,db/journals/access/access6.html#HussainTBSAA18,https://doi.org/10.1109/ACCESS.2018.2820122 +Di Cao,Adaptive Fractional Fuzzy Sliding Mode Control for Three-Phase Active Power Filter.,2016,4,IEEE Access,,db/journals/access/access4.html#CaoF16,https://doi.org/10.1109/ACCESS.2016.2586958 +Stefan Hellstrom,Aging of Silane Crosslinked Polyethylene.,2014,2,IEEE Access,,db/journals/access/access2.html#HellstromBLR14,https://doi.org/10.1109/ACCESS.2014.2308919 +Hui Cui,Achieving Scalable Access Control Over Encrypted Data for Edge Computing Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#CuiYN18,https://doi.org/10.1109/ACCESS.2018.2844373 +Wenjuan Li,Towards False Alarm Reduction Using Fuzzy If-Then Rules for Medical Cyber Physical Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#LiMSK18,https://doi.org/10.1109/ACCESS.2018.2794685 +Muhammad Saqib,Highly Efficient Computational Methods for Two Dimensional Coupled Nonlinear Unsteady Convection-Diffusion Problems.,2017,5,IEEE Access,,db/journals/access/access5.html#SaqibHM17,https://doi.org/10.1109/ACCESS.2017.2699320 +Mohammad Akbari,Ka-Band Linear to Circular Polarization Converter Based on Multilayer Slab With Broadband Performance.,2017,5,IEEE Access,,db/journals/access/access5.html#AkbariFSD17,https://doi.org/10.1109/ACCESS.2017.2746800 +Silvere Mavoungou,Survey on Threats and Attacks on Mobile Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#MavoungouKTM16,https://doi.org/10.1109/ACCESS.2016.2601009 +Xinbin Li,Relay Selection for Underwater Acoustic Sensor Networks: A Multi-User Multi-Armed Bandit Formulation.,2018,6,IEEE Access,,db/journals/access/access6.html#LiLYHG18,https://doi.org/10.1109/ACCESS.2018.2801350 +Lotfi Hidri,New Efficient Lower Bound for the Hybrid Flow Shop Scheduling Problem With Multiprocessor Tasks.,2017,5,IEEE Access,,db/journals/access/access5.html#HidriG17,https://doi.org/10.1109/ACCESS.2017.2696118 +Fatemeh Orooji,Peer Assessment and Self-Assessment in Social Learning Environments Through a New Crowd-Sourced Mechanism.,2018,6,IEEE Access,,db/journals/access/access6.html#OroojiT18,https://doi.org/10.1109/ACCESS.2018.2792059 +Pingping Sun,Protein Function Prediction Using Function Associations in Protein-Protein Interaction Network.,2018,6,IEEE Access,,db/journals/access/access6.html#SunTGZSDWS18,https://doi.org/10.1109/ACCESS.2018.2806478 +Chin-Sheng Chen,Intelligent Computer-aided Process Planning of Multi-axis CNC Tapping Machine.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenS17,https://doi.org/10.1109/ACCESS.2017.2671864 +Junwei Fu,Spatial Audio Acquisition Using a Dual-Functioning MQW-Diode With a Three-Stage Amplifier Circuit.,2018,6,IEEE Access,,db/journals/access/access6.html#FuZSYGW18,https://doi.org/10.1109/ACCESS.2018.2808245 +Vincenzo Carletti,Multi-Object Tracking by Flying Cameras Based on a Forward-Backward Interaction.,2018,6,IEEE Access,,db/journals/access/access6.html#CarlettiGSV18,https://doi.org/10.1109/ACCESS.2018.2864672 +Abdullah Alomari,Swarm Intelligence Optimization Techniques for Obstacle-Avoidance Mobility-Assisted Localization in Wireless Sensor Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#AlomariPAC18,https://doi.org/10.1109/ACCESS.2017.2787140 +Weitao Zhang,FlameDB: A Key-Value Store With Grouped Level Structure and Heterogeneous Bloom Filter.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangXLZL18,https://doi.org/10.1109/ACCESS.2018.2831259 +Simiao Yu,A Force and Displacement Compensation Method Toward Divergence and Accuracy of Hardware-in-the-Loop Simulation System for Manipulator Docking.,2018,6,IEEE Access,,db/journals/access/access6.html#YuHQY18,https://doi.org/10.1109/ACCESS.2018.2842106 +Zhenyu Wu,An Integrated Ensemble Learning Model for Imbalanced Fault Diagnostics and Prognostics.,2018,6,IEEE Access,,db/journals/access/access6.html#WuLJ18,https://doi.org/10.1109/ACCESS.2018.2807121 +Houssen S. A. Milad,Neo-Fuzzy Integrated Adaptive Decayed Brain Emotional Learning Network for Online Time Series Prediction.,2017,5,IEEE Access,,db/journals/access/access5.html#MiladFEA17,https://doi.org/10.1109/ACCESS.2016.2637381 +Xin Li,Distributed Large-Scale Co-Simulation for IoT-Aided Smart Grid Control.,2017,5,IEEE Access,,db/journals/access/access5.html#LiHW17,https://doi.org/10.1109/ACCESS.2017.2753463 +Brent K. Jesiek,The Expansive (Dis)Integration of Electrical Engineering Education.,2017,5,IEEE Access,,db/journals/access/access5.html#JesiekJ17,https://doi.org/10.1109/ACCESS.2017.2677200 +Mimi Wang,A Process-Profile-Based Method to Measure Consistency of E-Commerce System.,2018,6,IEEE Access,,db/journals/access/access6.html#WangDJZ18,https://doi.org/10.1109/ACCESS.2018.2831219 +Christian Poellabauer,Challenges in Concussion Detection Using Vocal Acoustic Biomarkers.,2015,3,IEEE Access,,db/journals/access/access3.html#PoellabauerYDSB15,https://doi.org/10.1109/ACCESS.2015.2457392 +Yankan Song,Efficient GPU-Based Electromagnetic Transient Simulation for Power Systems With Thread-Oriented Transformation and Automatic Code Generation.,2018,6,IEEE Access,,db/journals/access/access6.html#SongCHXYX18,https://doi.org/10.1109/ACCESS.2018.2833506 +Ji-Ren Liang,Turn Any Display Into a Touch Screen Using Infrared Optical Technique.,2018,6,IEEE Access,,db/journals/access/access6.html#LiangLCW18,https://doi.org/10.1109/ACCESS.2018.2812756 +Yu Ma,A Fuzzy Model Predictive Control Based Upon Adaptive Neural Network Disturbance Observer for a Constrained Hypersonic Vehicle.,2018,6,IEEE Access,,db/journals/access/access6.html#MaC18,https://doi.org/10.1109/ACCESS.2017.2780118 +Jingyu Hua,A Novel Physical Layer Encryption Algorithm Based on Statistical Characteristics of Time-Selective Channels.,2018,6,IEEE Access,,db/journals/access/access6.html#HuaJLXL18,https://doi.org/10.1109/ACCESS.2018.2854305 +Dan Wang,Theoretical Investigation of State Bistability Between Pure- and Mixed-Mode States in a 1550-nm VCSEL Under Parallel Optical Injection.,2018,6,IEEE Access,,db/journals/access/access6.html#WangXHYJCW18,https://doi.org/10.1109/ACCESS.2018.2820678 +Ted H. Szymanski,Securing the Industrial-Tactile Internet of Things With Deterministic Silicon Photonics Switches.,2016,4,IEEE Access,,db/journals/access/access4.html#Szymanski16,https://doi.org/10.1109/ACCESS.2016.2613512 +Winston Timp,Think Small: Nanopores for Sensing and Synthesis.,2014,2,IEEE Access,,db/journals/access/access2.html#TimpNNKMT14,https://doi.org/10.1109/ACCESS.2014.2369506 +Yanying Ma,Multi-Parameter Asymptotic Expansions With Errors for Multi-Dimensional Hypersingular Integrals With Product Type and Splitting Extrapolation.,2017,5,IEEE Access,,db/journals/access/access5.html#MaHW17,https://doi.org/10.1109/ACCESS.2017.2769693 +S. M. Shahrear Tanzil,Adaptive Scheme for Caching YouTube Content in a Cellular Network: Machine Learning Approach.,2017,5,IEEE Access,,db/journals/access/access5.html#TanzilHK17,https://doi.org/10.1109/ACCESS.2017.2678990 +Ashraf Tahat,A Look at the Recent Wireless Positioning Techniques With a Focus on Algorithms for Moving Receivers.,2016,4,IEEE Access,,db/journals/access/access4.html#TahatKYVG16,https://doi.org/10.1109/ACCESS.2016.2606486 +Zhitao Wang,Prediction Method for Low Speed Characteristics of Compressor Based on Modified Similarity Theory With Genetic Algorithm.,2018,6,IEEE Access,,db/journals/access/access6.html#WangLFML18,https://doi.org/10.1109/ACCESS.2018.2846049 +Lorenzo Fernandez Maimo,A Self-Adaptive Deep Learning-Based System for Anomaly Detection in 5G Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#MaimoGCPP18,https://doi.org/10.1109/ACCESS.2018.2803446 +Hai Wang,Enhanced Efficiency 3D Convolution Based on Optimal FPGA Accelerator.,2017,5,IEEE Access,,db/journals/access/access5.html#WangSLZ17,https://doi.org/10.1109/ACCESS.2017.2699229 +Lei Xing,A Wideband Hybrid Water Antenna With an F-Shaped Monopole.,2015,3,IEEE Access,,db/journals/access/access3.html#XingHXA15,https://doi.org/10.1109/ACCESS.2015.2461443 +Cao Gu,Joint Multiple Image Parametric Transformation Estimation Via Convolutional Neural Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#GuDCC18,https://doi.org/10.1109/ACCESS.2018.2808459 +Zhihai Jiang,Analysis of a Whole-Space Transient Electromagnetic Field in 2.5-Dimensional FDTD Geoelectric Modeling.,2017,5,IEEE Access,,db/journals/access/access5.html#JiangLM17,https://doi.org/10.1109/ACCESS.2017.2754521 +Albashir Adel Youssef,LDPC Decoding Algorithms for Implant to Implant Wireless Body Area Network.,2018,6,IEEE Access,,db/journals/access/access6.html#YoussefAEEA18,https://doi.org/10.1109/ACCESS.2018.2810293 +Ailane Mohamed Toufik,Chorus-Line Algorithm for Clock Synchronization.,2018,6,IEEE Access,,db/journals/access/access6.html#ToufikYJ18,https://doi.org/10.1109/ACCESS.2018.2789519 +Ting Wang,Two-Dimension Direction-of-Arrival Estimation for Massive MIMO Systems.,2015,3,IEEE Access,,db/journals/access/access3.html#WangAHZ15,https://doi.org/10.1109/ACCESS.2015.2496944 +Kuat Telegenov,A Low-Cost Open-Source 3-D-Printed Three-Finger Gripper Platform for Research and Educational Purposes.,2015,3,IEEE Access,,db/journals/access/access3.html#TelegenovTS15,https://doi.org/10.1109/ACCESS.2015.2433937 +Yi Li,Study on the Dielectric Properties of C4F7N/N2 Mixture Under Highly Non-Uniform Electric Field.,2018,6,IEEE Access,,db/journals/access/access6.html#LiZCFZXCT18,https://doi.org/10.1109/ACCESS.2018.2859358 +Yong Niu,Low Complexity and Robust Codebook-Based Analog Beamforming for Millimeter Wave MIMO Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#NiuFCLZA17,https://doi.org/10.1109/ACCESS.2017.2753285 +Xiang Mi,Statistical QoS-Driven Resource Allocation and Source Adaptation for D2D Communications Underlaying OFDMA-Based Cellular Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#MiXZXW17,https://doi.org/10.1109/ACCESS.2017.2679113 +Zhiwei Chen,Warranty Cost Modeling and Warranty Length Optimization Under Two Types of Failure and Combination Free Replacement and Pro-Rata Warranty.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenZLS17,https://doi.org/10.1109/ACCESS.2017.2715840 +J. Daniel Park,Track Detection of Low Observable Targets Using a Motion Model.,2015,3,IEEE Access,,db/journals/access/access3.html#ParkD15,https://doi.org/10.1109/ACCESS.2015.2471935 +Desong Wang,Longitudinally Uniform Transmission Lines With Frequency-Enabled Mode Conversion.,2018,6,IEEE Access,,db/journals/access/access6.html#WangFW18,https://doi.org/10.1109/ACCESS.2018.2830352 +Sang Hun Han,Information Flow Monitoring System.,2018,6,IEEE Access,,db/journals/access/access6.html#HanNR18,https://doi.org/10.1109/ACCESS.2018.2829495 +Xuekun Zhang,Dual-Mode Index Modulation Aided OFDM With Constellation Power Allocation and Low-Complexity Detector Design.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangBYLT17,https://doi.org/10.1109/ACCESS.2017.2756679 +Youwen Zhang,Soft-Decision-Driven Sparse Channel Estimation and Turbo Equalization for MIMO Underwater Acoustic Communications.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangZL18,https://doi.org/10.1109/ACCESS.2018.2794455 +Shengjun Huang,Real-Time Contingency Analysis on Massively Parallel Architectures With Compensation Method.,2018,6,IEEE Access,,db/journals/access/access6.html#HuangD18a,https://doi.org/10.1109/ACCESS.2018.2864757 +Xiaoyan Huang,Power Control for Full-Duplex Relay-Enhanced Cellular Networks With QoS Guarantees.,2017,5,IEEE Access,,db/journals/access/access5.html#HuangYWL17,https://doi.org/10.1109/ACCESS.2017.2682279 +Taimur Hassan,Fully Automated Multi-Resolution Channels and Multithreaded Spectrum Allocation Protocol for IoT Based Sensor Nets.,2018,6,IEEE Access,,db/journals/access/access6.html#HassanAJ18,https://doi.org/10.1109/ACCESS.2018.2829078 +Myeong-Jin Park,Augmented Lyapunov-Krasovskii Functional Approach to Stability of Discrete Systems With Time-Varying Delays.,2017,5,IEEE Access,,db/journals/access/access5.html#ParkLKR17,https://doi.org/10.1109/ACCESS.2017.2767564 +Atif Raza Jafri,High-Throughput and Area-Efficient Rotated and Cyclic Q Delayed Constellations Demapper for Future Wireless Standards.,2017,5,IEEE Access,,db/journals/access/access5.html#JafriBWN17,https://doi.org/10.1109/ACCESS.2017.2660579 +Jiliang Zhang 0002,T2FA: Transparent Two-Factor Authentication.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangTWYQ18,https://doi.org/10.1109/ACCESS.2018.2844548 +Samar K. Saha,Compact MOSFET Modeling for Process Variability-Aware VLSI Circuit Design.,2014,2,IEEE Access,,db/journals/access/access2.html#Saha14,https://doi.org/10.1109/ACCESS.2014.2304568 +Riham AlTawy,Security Tradeoffs in Cyber Physical Systems: A Case Study Survey on Implantable Medical Devices.,2016,4,IEEE Access,,db/journals/access/access4.html#AlTawyY16,https://doi.org/10.1109/ACCESS.2016.2521727 +Tomohiro Arakawa,Optimizing Wireless Power Transfer From Multiple Transmit Coils.,2018,6,IEEE Access,,db/journals/access/access6.html#ArakawaGKKLMS18,https://doi.org/10.1109/ACCESS.2018.2825290 +Chih-Chiang Chen,Global Stabilization for a Class of Genuinely Nonlinear Systems With a Time-Varying Power: An Interval Homogeneous Domination Approach.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenX18,https://doi.org/10.1109/ACCESS.2018.2807428 +Bing-Long Zheng,Multi-Mode Bandpass Cavity Filters and Duplexer With Slot Mixed-Coupling Structure.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhengWFZY18,https://doi.org/10.1109/ACCESS.2017.2766293 +Xumin Huang,Software Defined Networking With Pseudonym Systems for Secure Vehicular Clouds.,2016,4,IEEE Access,,db/journals/access/access4.html#HuangYKWMZ16,https://doi.org/10.1109/ACCESS.2016.2560902 +Kashif Bilal,Crowdsourced Multi-View Live Video Streaming using Cloud Computing.,2017,5,IEEE Access,,db/journals/access/access5.html#BilalEH17,https://doi.org/10.1109/ACCESS.2017.2720189 +Boqiong Li,Independently Tunable Concurrent Dual-Band VCO Using Square Open-Loop Resonator.,2018,6,IEEE Access,,db/journals/access/access6.html#LiWYL18,https://doi.org/10.1109/ACCESS.2018.2805463 +Houbing Song,IEEE Access Special Section Editorial: Smart Cities.,2016,4,IEEE Access,,db/journals/access/access4.html#SongZJWB16,https://doi.org/10.1109/ACCESS.2016.2570618 +Junliang Yu,A Social Recommender Based on Factorization and Distance Metric Learning.,2017,5,IEEE Access,,db/journals/access/access5.html#YuGRSX17,https://doi.org/10.1109/ACCESS.2017.2762459 +Seyedreza Taghizadeh,CLRPL: Context-Aware and Load Balancing RPL for Iot Networks Under Heavy and Highly Dynamic Load.,2018,6,IEEE Access,,db/journals/access/access6.html#TaghizadehBE18,https://doi.org/10.1109/ACCESS.2018.2817128 +Shan Jia,Coarse-to-Fine Copy-Move Forgery Detection for Video Forensics.,2018,6,IEEE Access,,db/journals/access/access6.html#JiaXWFW18,https://doi.org/10.1109/ACCESS.2018.2819624 +Yu Cheng 0004,Delay-Dependent Fault-Tolerant Shape Control for Stochastic Distribution Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#ChengCLD18,https://doi.org/10.1109/ACCESS.2018.2803779 +Aniello Castiglione,Automated Production of Predetermined Digital Evidence.,2013,1,IEEE Access,,db/journals/access/access1.html#CastiglioneCMS13,https://doi.org/10.1109/ACCESS.2013.2260817 +Chia-Yu Chang,RAN Runtime Slicing System for Flexible and Dynamic Service Execution Environment.,2018,6,IEEE Access,,db/journals/access/access6.html#ChangN18,https://doi.org/10.1109/ACCESS.2018.2847610 +Zhongliang Fu,Irregularly Shaped Cluster Detection Using a CPSO Distribution-Free Spatial Scan Statistic.,2017,5,IEEE Access,,db/journals/access/access5.html#FuZSH17,https://doi.org/10.1109/ACCESS.2017.2766092 +Qing Yang,Joint Optimization of User Grouping and Transmitter Connection on Multi-Cell SNR Blind Interference Alignment.,2016,4,IEEE Access,,db/journals/access/access4.html#YangJJHZ16,https://doi.org/10.1109/ACCESS.2016.2608923 +Yiming Zhao,Survey on Social-Aware Data Dissemination Over Mobile Wireless Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhaoS17,https://doi.org/10.1109/ACCESS.2017.2693689 +Jialong Zhang,Collision Avoidance in Fixed-Wing UAV Formation Flight Based on a Consensus Control Algorithm.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangYZK18,https://doi.org/10.1109/ACCESS.2018.2864169 +Hui Jiang,Energy big data: A survey.,2016,4,IEEE Access,,db/journals/access/access4.html#JiangWWGZ16,https://doi.org/10.1109/ACCESS.2016.2580581 +Guofeng Wang,Leakage Models and Inference Attacks on Searchable Encryption for Cyber-Physical Social Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#WangLDCHPF18,https://doi.org/10.1109/ACCESS.2018.2800684 +Jan Garcia-Morales,Analysis and Optimization of FFR-Aided OFDMA-Based Heterogeneous Cellular Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#Garcia-MoralesF16,https://doi.org/10.1109/ACCESS.2016.2599026 +Seonhee Park,Dual Autoencoder Network for Retinex-Based Low-Light Image Enhancement.,2018,6,IEEE Access,,db/journals/access/access6.html#ParkYKPP18,https://doi.org/10.1109/ACCESS.2018.2812809 +Raul Sánchez-Reillo,Improving Presentation Attack Detection in Dynamic Handwritten Signature Biometrics.,2017,5,IEEE Access,,db/journals/access/access5.html#Sanchez-ReilloQ17,https://doi.org/10.1109/ACCESS.2017.2755771 +Honghao Gao,An Approach to Data Consistency Checking for the Dynamic Replacement of Service Process.,2017,5,IEEE Access,,db/journals/access/access5.html#GaoDMY17,https://doi.org/10.1109/ACCESS.2017.2715322 +Jianfei Sun,Attribute-Hiding Predicate Encryption With Equality Test in Cloud Computing.,2018,6,IEEE Access,,db/journals/access/access6.html#SunBNX18,https://doi.org/10.1109/ACCESS.2018.2843565 +Cheng-Li Fan,New Operators for Aggregating Intuitionistic Fuzzy Information With Their Application in Decision Making.,2018,6,IEEE Access,,db/journals/access/access6.html#FanSFLW18,https://doi.org/10.1109/ACCESS.2018.2832206 +Haiyan Guo,Joint Cooperative Beamforming and Jamming for Physical-Layer Security of Decode-and-Forward Relay Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#GuoYZZZ17,https://doi.org/10.1109/ACCESS.2017.2752199 +Muhammad Bilal 0003,A Cache Management Scheme for Efficient Content Eviction and Replication in Cache Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#BilalK17,https://doi.org/10.1109/ACCESS.2017.2669344 +Ping Tang,A Differential Weighted Accumulation Algorithm Using Variable Sliding Window.,2018,6,IEEE Access,,db/journals/access/access6.html#TangLW18,https://doi.org/10.1109/ACCESS.2018.2824834 +Aqeel Taha,Energy Efficient Multipath Routing Protocol for Mobile Ad-Hoc Network Using the Fitness Function.,2017,5,IEEE Access,,db/journals/access/access5.html#TahaAUAS17,https://doi.org/10.1109/ACCESS.2017.2707537 +Cuie Zheng,Mobile Node Localization in Underwater Wireless Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhengSCL18,https://doi.org/10.1109/ACCESS.2018.2795600 +Hao Cao,Verifiable Threshold Quantum State Sharing Scheme.,2018,6,IEEE Access,,db/journals/access/access6.html#CaoM18,https://doi.org/10.1109/ACCESS.2018.2805724 +Run Tian,Overlapping User Grouping in IoT Oriented Massive MIMO Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#TianLTL17,https://doi.org/10.1109/ACCESS.2017.2729878 +Abdulaziz Shehab,Secure and Robust Fragile Watermarking Scheme for Medical Images.,2018,6,IEEE Access,,db/journals/access/access6.html#ShehabEMSYHH18,https://doi.org/10.1109/ACCESS.2018.2799240 +Haobin Shi,An Adaptive Strategy Selection Method With Reinforcement Learning for Robotic Soccer Games.,2018,6,IEEE Access,,db/journals/access/access6.html#ShiLHYC18,https://doi.org/10.1109/ACCESS.2018.2808266 +Wen-Tsuen Chen,Strengthening Modern Electronics Industry Through the National Program for Intelligent Electronics in Taiwan.,2013,1,IEEE Access,,db/journals/access/access1.html#ChenLLCCC13,https://doi.org/10.1109/ACCESS.2013.2260591 +Qin Zhang,An Efficient and Clinical-Oriented 3D Liver Segmentation Method.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangFWL17,https://doi.org/10.1109/ACCESS.2017.2754298 +Lei Xiao,Visual Tracking via Adaptive Random Projection Based on Sub-Regions.,2018,6,IEEE Access,,db/journals/access/access6.html#XiaoWH18,https://doi.org/10.1109/ACCESS.2018.2857702 +Jing Liang 0002,Soil Moisture Retrieval From UWB Sensor Data by Leveraging Fuzzy Logic.,2018,6,IEEE Access,,db/journals/access/access6.html#LiangZ18a,https://doi.org/10.1109/ACCESS.2018.2840159 +Zhongqiang Wang,High-Quality Real-Time Video Stabilization Using Trajectory Smoothing and Mesh-Based Warping.,2018,6,IEEE Access,,db/journals/access/access6.html#WangZH18,https://doi.org/10.1109/ACCESS.2018.2828653 +Tik Wai Kiral Poon,Algorithms for Size and Color Detection of Smartphone Images of Chronic Wounds for Healthcare Applications.,2015,3,IEEE Access,,db/journals/access/access3.html#PoonF15,https://doi.org/10.1109/ACCESS.2015.2487859 +Xiaoying Gu,An Improved Ambiguity Resolution of Three Carriers in Precise Point Positioning.,2018,6,IEEE Access,,db/journals/access/access6.html#GuZ18,https://doi.org/10.1109/ACCESS.2018.2797216 +Preetpal Singh,Uncover the Degradation Science of Silicone Under the Combined Temperature and Humidity Conditions.,2018,6,IEEE Access,,db/journals/access/access6.html#SinghT18,https://doi.org/10.1109/ACCESS.2017.2778289 +Maia Angelova,User Activity Pattern Analysis in Telecare Data.,2018,6,IEEE Access,,db/journals/access/access6.html#AngelovaEGORZ18,https://doi.org/10.1109/ACCESS.2018.2847294 +Daecheon Lim,Miniaturized Metamaterial Absorber Using Three-Dimensional Printed Stair-Like Jerusalem Cross.,2018,6,IEEE Access,,db/journals/access/access6.html#LimYL18,https://doi.org/10.1109/ACCESS.2018.2862160 +Zhicai Liu,A Realistic Distributed Conditional Privacy- Preserving Authentication Scheme for Vehicular Ad Hoc Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuXPPL18,https://doi.org/10.1109/ACCESS.2018.2834224 +Yuchao Liu,Dynamic Resonance Analysis and Oscillation Damping of Multiterminal DC Grids.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuRRLXW17,https://doi.org/10.1109/ACCESS.2017.2740567 +Neng Hou,A Parallel Genetic Algorithm With Dispersion Correction for HW/SW Partitioning on Multi-Core CPU and Many-Core GPU.,2018,6,IEEE Access,,db/journals/access/access6.html#HouHZCY18,https://doi.org/10.1109/ACCESS.2017.2776295 +Nicholas O. Oyie,Measurements and Analysis of Large-Scale Path Loss Model at 14 and 22 GHz in Indoor Corridor.,2018,6,IEEE Access,,db/journals/access/access6.html#OyieA18,https://doi.org/10.1109/ACCESS.2018.2802038 +Sadiq H. Abdulhussain,On Computational Aspects of Tchebichef Polynomials for Higher Polynomial Order.,2017,5,IEEE Access,,db/journals/access/access5.html#AbdulhussainRAM17,https://doi.org/10.1109/ACCESS.2017.2669218 +Xiaoye Wang,Space-Time Adaptive Processing for Airborne Radars With Space-Time Coprime Sampling Structure.,2018,6,IEEE Access,,db/journals/access/access6.html#WangYHHJ18,https://doi.org/10.1109/ACCESS.2018.2822046 +Omar Tayan,Analysis of a Transportation System With Correlated Network Intersections: A Case Study for a Central Urban City With High Seasonal Fluctuation Trends.,2017,5,IEEE Access,,db/journals/access/access5.html#TayanAKB17,https://doi.org/10.1109/ACCESS.2017.2695159 +Tao Xie 0007,Modeling and Predicting the Active Video-Viewing Time in a Large-Scale E-Learning System.,2017,5,IEEE Access,,db/journals/access/access5.html#XieZZQ17,https://doi.org/10.1109/ACCESS.2017.2717858 +Yue Quan,Observer-Based Distributed Fault Detection and Isolation for Heterogeneous Discrete-Time Multi-Agent Systems With Disturbances.,2016,4,IEEE Access,,db/journals/access/access4.html#QuanCWP16,https://doi.org/10.1109/ACCESS.2016.2602851 +Ye Yuan,Fault Detection and Location System for Diagnosis of Multiple Faults in Aeroengines.,2017,5,IEEE Access,,db/journals/access/access5.html#YuanLDP17,https://doi.org/10.1109/ACCESS.2017.2744639 +Kun-Lin Tsai,TTP Based High-Efficient Multi-Key Exchange Protocol.,2016,4,IEEE Access,,db/journals/access/access4.html#TsaiHLY16,https://doi.org/10.1109/ACCESS.2016.2613442 +Lei Zhang,Multi-Scale Fusion Algorithm Based on Structure Similarity Index Constraint for Infrared Polarization and Intensity Images.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangYJ17,https://doi.org/10.1109/ACCESS.2017.2764101 +Dang Khoa Nguyen,Wireless Energy Harvesting Assisted Two-Way Cognitive Relay Networks: Protocol Design and Performance Analysis.,2017,5,IEEE Access,,db/journals/access/access5.html#NguyenJCTL17,https://doi.org/10.1109/ACCESS.2016.2644758 +Mustafa A. Mustafa,DEP2SA: A Decentralized Efficient Privacy-Preserving and Selective Aggregation Scheme in Advanced Metering Infrastructure.,2015,3,IEEE Access,,db/journals/access/access3.html#MustafaZKF15,https://doi.org/10.1109/ACCESS.2015.2506198 +M. A. Viraj J. Muthugala,A Review of Service Robots Coping With Uncertain Information in Natural Language Instructions.,2018,6,IEEE Access,,db/journals/access/access6.html#MuthugalaJ18,https://doi.org/10.1109/ACCESS.2018.2808369 +Xinye Chen,Ant Colony Optimization Based Memetic Algorithm to Solve Bi-Objective Multiple Traveling Salesmen Problem for Multi-Robot Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenZDL18,https://doi.org/10.1109/ACCESS.2018.2828499 +Haitao Lin,Optimal Strong Solution of the Weighted Minimax Problem With Fuzzy Relation Equation Constraints.,2018,6,IEEE Access,,db/journals/access/access6.html#LinY18,https://doi.org/10.1109/ACCESS.2018.2834231 +Abdolreza Shirvani,On Invoking Transitivity to Enhance the Pursuit-Oriented Object Migration Automata.,2018,6,IEEE Access,,db/journals/access/access6.html#ShirvaniO18,https://doi.org/10.1109/ACCESS.2018.2827305 +Jae-Chang Kim,Model Predictive Virtual Flux Control to Improve Performance Under Distorted Input Voltage Conditions.,2018,6,IEEE Access,,db/journals/access/access6.html#KimK18,https://doi.org/10.1109/ACCESS.2018.2846770 +Hamid Tahaei,Cost Effective Network Flow Measurement for Software Defined Networks: A Distributed Controller Scenario.,2018,6,IEEE Access,,db/journals/access/access6.html#TahaeiSRKA18,https://doi.org/10.1109/ACCESS.2017.2789281 +Xiaodong Zhang 0014,Debugging Multithreaded Programs as if They Were Sequential.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangYZHLYL18,https://doi.org/10.1109/ACCESS.2018.2835672 +Ronie M. Uliana,Identifying Career Boundaries Using Minimum Description Length on a Graph.,2018,6,IEEE Access,,db/journals/access/access6.html#UlianaC18,https://doi.org/10.1109/ACCESS.2018.2856886 +Samar K. Saha,Modeling Statistical Dopant Fluctuations Effect on Threshold Voltage of Scaled JFET Devices.,2016,4,IEEE Access,,db/journals/access/access4.html#Saha16,https://doi.org/10.1109/ACCESS.2016.2519039 +Shinya Sugiura,Deep-Subwavelength MIMO Using Graphene-Based Nanoscale Communication Channel.,2014,2,IEEE Access,,db/journals/access/access2.html#SugiuraI14,https://doi.org/10.1109/ACCESS.2014.2364091 +Kiran Venugopal,Millimeter Wave Networked Wearables in Dense Indoor Environments.,2016,4,IEEE Access,,db/journals/access/access4.html#VenugopalH16,https://doi.org/10.1109/ACCESS.2016.2542478 +Dimitrios Alanis,Non-Dominated Quantum Iterative Routing Optimization for Wireless Multihop Networks.,2015,3,IEEE Access,,db/journals/access/access3.html#AlanisBBNH15,https://doi.org/10.1109/ACCESS.2015.2478793 +Faezeh Fesharaki,Guided-Wave Properties of Mode-Selective Transmission Line.,2018,6,IEEE Access,,db/journals/access/access6.html#FesharakiDCW18,https://doi.org/10.1109/ACCESS.2017.2697867 +Jurica Babic,Evaluating Policies for Parking Lots Handling Electric Vehicles.,2018,6,IEEE Access,,db/journals/access/access6.html#BabicCKP18,https://doi.org/10.1109/ACCESS.2017.2777098 +Xiuquan Du,Deep Regression Segmentation for Cardiac Bi-Ventricle MR Images.,2018,6,IEEE Access,,db/journals/access/access6.html#DuZZCZWBL18,https://doi.org/10.1109/ACCESS.2017.2789179 +Xinmeng Xu,Adaptive Beaconing Based MAC Protocol for Sensor Based Wearable System.,2018,6,IEEE Access,,db/journals/access/access6.html#XuZSLZZ18,https://doi.org/10.1109/ACCESS.2018.2843762 +Hongbo Jiang,Smart Home Based on WiFi Sensing: A Survey.,2018,6,IEEE Access,,db/journals/access/access6.html#JiangCMYL18,https://doi.org/10.1109/ACCESS.2018.2812887 +Hong Huang 0002,Fusion of Weighted Mean Reconstruction and SVMCK for Hyperspectral Image Classification.,2018,6,IEEE Access,,db/journals/access/access6.html#HuangDSL18,https://doi.org/10.1109/ACCESS.2018.2799079 +Mohamed A. Hawas,Are We Intentionally Limiting Urban Planning and Intelligence? A Causal Evaluative Review and Methodical Redirection for Intelligence Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#Hawas17,https://doi.org/10.1109/ACCESS.2017.2725138 +Xing Zhang 0007,A Lightweight Encryption Method for Privacy Protection in Surveillance Videos.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangSW18,https://doi.org/10.1109/ACCESS.2018.2820724 +Xiaomei Bai,Predicting the Number of Publications for Scholarly Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#Bai18,https://doi.org/10.1109/ACCESS.2018.2812804 +Jing Li,Evaluation and Optimization of the Nonlinear Flow Controllability of Switch Valve in Vehicle Electro-Hydraulic Brake System.,2018,6,IEEE Access,,db/journals/access/access6.html#LiDYL18,https://doi.org/10.1109/ACCESS.2018.2841826 +Junyi Xu,Behavior-Based Collective Classification in Sparsely Labeled Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#XuLLHGXY17,https://doi.org/10.1109/ACCESS.2017.2723433 +Xiaoyan Diao,Composite Active Front Steering Controller Design for Vehicle System.,2017,5,IEEE Access,,db/journals/access/access5.html#DiaoJMDJ17,https://doi.org/10.1109/ACCESS.2017.2693687 +Jinho Choi 0001,Channel-Aware Randomized Encryption and Channel Estimation Attack.,2017,5,IEEE Access,,db/journals/access/access5.html#Choi17,https://doi.org/10.1109/ACCESS.2017.2771760 +Md Azher Uddin,Human Action Recognition Using Adaptive Local Motion Descriptor in Spark.,2017,5,IEEE Access,,db/journals/access/access5.html#UddinJAL17,https://doi.org/10.1109/ACCESS.2017.2759225 +Peiying Zhang,Virtual Network Embedding Based on the Degree and Clustering Coefficient Information.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhangYL16,https://doi.org/10.1109/ACCESS.2016.2632421 +Shu-Xue Wang,Synchronization and Robust Synchronization for Fractional-Order Coupled Neural Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#WangHR17,https://doi.org/10.1109/ACCESS.2017.2721950 +Daniel Cabrera-Paniagua,Affective Algorithm for Controlling Emotional Fluctuation of Artificial Investors in Stock Markets.,2018,6,IEEE Access,,db/journals/access/access6.html#Cabrera-Paniagua18,https://doi.org/10.1109/ACCESS.2018.2802781 +Shi Pan,Robust Power Allocation for OFDM-Based Cognitive Radio Networks: A Switched Affine Based Control Approach.,2017,5,IEEE Access,,db/journals/access/access5.html#PanZL17,https://doi.org/10.1109/ACCESS.2017.2751565 +Tao Zhang 0025,Optimal Local Dimming Based on an Improved Shuffled Frog Leaping Algorithm.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangZPLL18,https://doi.org/10.1109/ACCESS.2018.2858827 +Madhuri Suthar,Feature Enhancement in Visually Impaired Images.,2018,6,IEEE Access,,db/journals/access/access6.html#SutharAJ18,https://doi.org/10.1109/ACCESS.2017.2779107 +Zhaoyu Gu,ISAR Imaging With Wideband V-FM Waveforms via Dual-Channel CS-D.,2017,5,IEEE Access,,db/journals/access/access5.html#GuLPALW17,https://doi.org/10.1109/ACCESS.2017.2748959 +Xiyue Tang,Models for Green Supplier Selection in Green Supply Chain Management With Pythagorean 2-Tuple Linguistic Information.,2018,6,IEEE Access,,db/journals/access/access6.html#TangW18,https://doi.org/10.1109/ACCESS.2018.2817551 +Guogang Zhao,A Tele-Traffic-Aware Optimal Base-Station Deployment Strategy for Energy-Efficient Large-Scale Cellular Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhaoCZH16,https://doi.org/10.1109/ACCESS.2016.2543210 +Ning Ran,Event Feedback Supervision for a Class of Petri Nets With Unobservable Transitions.,2018,6,IEEE Access,,db/journals/access/access6.html#RanWW18,https://doi.org/10.1109/ACCESS.2018.2792012 +Jun Li 0035,Performance Analysis for Focused Beamformers in Passive Underwater Acoustic Localization.,2018,6,IEEE Access,,db/journals/access/access6.html#LiLWK18,https://doi.org/10.1109/ACCESS.2018.2821766 +Wei Lu 0007,Profit-Aware Distributed Online Scheduling for Data-Oriented Tasks in Cloud Datacenters.,2018,6,IEEE Access,,db/journals/access/access6.html#LuLSYZ18,https://doi.org/10.1109/ACCESS.2018.2808481 +Jinna Lv,StoryRoleNet: Social Network Construction of Role Relationship in Video.,2018,6,IEEE Access,,db/journals/access/access6.html#LvWZW18,https://doi.org/10.1109/ACCESS.2018.2832087 +Khalid Y. Ahmed,Development of Power Electronic Distribution Transformer Based on Adaptive PI Controller.,2018,6,IEEE Access,,db/journals/access/access6.html#AhmedYASKI18,https://doi.org/10.1109/ACCESS.2018.2861420 +Donghoon Chang,Distinguishers for 4-Branch and 8-Branch Generalized Feistel Network.,2017,5,IEEE Access,,db/journals/access/access5.html#ChangKS17,https://doi.org/10.1109/ACCESS.2017.2688427 +Mingzhe Fang,Locating the Source of Asynchronous Diffusion Process in Online Social Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#FangSSYWL18,https://doi.org/10.1109/ACCESS.2018.2817553 +Aaron M. Johnson,Legged Self-Manipulation.,2013,1,IEEE Access,,db/journals/access/access1.html#JohnsonK13,https://doi.org/10.1109/ACCESS.2013.2263192 +Young-Min Kwon,Empirical Analysis of MAVLink Protocol Vulnerability for Attacking Unmanned Aerial Vehicles.,2018,6,IEEE Access,,db/journals/access/access6.html#KwonYCEP18,https://doi.org/10.1109/ACCESS.2018.2863237 +Mu Zhou,Hotspot Ranking Based Indoor Mapping and Mobility Analysis Using Crowdsourced Wi-Fi Signal.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhouZWT17,https://doi.org/10.1109/ACCESS.2017.2674798 +Md Masud Rana 0002,Position and Velocity Estimations of Mobile Device Incorporate GNSS.,2018,6,IEEE Access,,db/journals/access/access6.html#RanaXL18,https://doi.org/10.1109/ACCESS.2018.2832245 +Liping Huang,Comparing Community Detection Algorithms in Transport Networks via Points of Interest.,2018,6,IEEE Access,,db/journals/access/access6.html#HuangYGZD18,https://doi.org/10.1109/ACCESS.2018.2841321 +He Wang 0003,On Minimizing Data Forwarding Schedule in Multi Transmit/Receive Wireless Mesh Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#WangCS16,https://doi.org/10.1109/ACCESS.2016.2553048 +Siddiq Latif,Mobile Health in the Developing World: Review of Literature and Lessons From a Case Study.,2017,5,IEEE Access,,db/journals/access/access5.html#LatifRQAIY17,https://doi.org/10.1109/ACCESS.2017.2710800 +Yuan-Ko Huang,Location-Based Aggregate Queries for Heterogeneous Neighboring Objects.,2017,5,IEEE Access,,db/journals/access/access5.html#Huang17,https://doi.org/10.1109/ACCESS.2017.2688472 +Renjian Pi,Machine Learning Based on Bayes Networks to Predict the Cascading Failure Propagation.,2018,6,IEEE Access,,db/journals/access/access6.html#PiCLC18,https://doi.org/10.1109/ACCESS.2018.2858838 +Limei Peng,Virtual-Pod-Assisted Routing and Resource Assignment in Elastic All-Optical Intra-Datacenter Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#Peng0PY17,https://doi.org/10.1109/ACCESS.2016.2612651 +Xuxiang Chen,Enhancing the Radiation Performance of a Pyramidal Horn Antenna by Loading a Subwavelength Metasurface.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenG17,https://doi.org/10.1109/ACCESS.2017.2755680 +Weiyao Lin,IEEE Access Special Section Editorial: Intelligent Sensing On Mobile and Social Media Analytics.,2017,5,IEEE Access,,db/journals/access/access5.html#LinXLYCS17,https://doi.org/10.1109/ACCESS.2017.2783138 +Shanshan Li,Land Surface Temperature Retrieval From Landsat-8 Data With the Generalized Split-Window Algorithm.,2018,6,IEEE Access,,db/journals/access/access6.html#LiJ18a,https://doi.org/10.1109/ACCESS.2018.2818741 +Louis Wy Liu,Wireless Energy Harvesting by Direct Voltage Multiplication on Lateral Waves From a Suspended Dielectric Layer.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuZCTD17,https://doi.org/10.1109/ACCESS.2017.2757947 +Qammer H. Abbasi,Cooperative In-Vivo Nano-Network Communication at Terahertz Frequencies.,2017,5,IEEE Access,,db/journals/access/access5.html#AbbasiNYQA17,https://doi.org/10.1109/ACCESS.2017.2677498 +Jiaqiu Wang,A Recommendation Method for Social Collaboration Tasks Based on Personal Social Preferences.,2018,6,IEEE Access,,db/journals/access/access6.html#WangWL18,https://doi.org/10.1109/ACCESS.2018.2863543 +Darko Striga,Benford's Law and Dunbar's Number: Does Facebook Have a Power to Change Natural and Anthropological Laws?,2018,6,IEEE Access,,db/journals/access/access6.html#StrigaP18,https://doi.org/10.1109/ACCESS.2018.2805712 +Muhammad Hashim Dahri,A Review of Wideband Reflectarray Antennas for 5G Communication Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#DahriJAK17,https://doi.org/10.1109/ACCESS.2017.2747844 +Wei Li 0079,Pseudo-Dynamic Network Modeling for PMU-Based State Estimation of Hybrid AC/DC Grids.,2018,6,IEEE Access,,db/journals/access/access6.html#LiVC18,https://doi.org/10.1109/ACCESS.2017.2777185 +Eleni Fotopoulou,Linked Data Analytics in Interdisciplinary Studies: The Health Impact of Air Pollution in Urban Areas.,2016,4,IEEE Access,,db/journals/access/access4.html#FotopoulouZPHTB16,https://doi.org/10.1109/ACCESS.2015.2513439 +Daoben Li,Overlapped Multiplexing Principle and an Improved Capacity on Additive White Gaussian Noise Channel.,2018,6,IEEE Access,,db/journals/access/access6.html#Li18,https://doi.org/10.1109/ACCESS.2017.2787730 +Ahmed Kamil Hasan Al-Ali,Enhanced Forensic Speaker Verification Using a Combination of DWT and MFCC Feature Warping in the Presence of Noise and Reverberation Conditions.,2017,5,IEEE Access,,db/journals/access/access5.html#Al-AliDSCN17,https://doi.org/10.1109/ACCESS.2017.2728801 +Zhenzhou Tang,Throughput Analysis of LAA and Wi-Fi Coexistence Network With Asynchronous Channel Access.,2018,6,IEEE Access,,db/journals/access/access6.html#TangZHY18,https://doi.org/10.1109/ACCESS.2018.2803121 +Wei Huang,Allocating Indivisible Objects With a Parallel Method Insensitive to Identities.,2017,5,IEEE Access,,db/journals/access/access5.html#HuangZHL17,https://doi.org/10.1109/ACCESS.2017.2764093 +Li Fan,Tunable Ultra-Broadband Microwave Frequency Combs Generation Based on a Current Modulated Semiconductor Laser Under Optical Injection.,2017,5,IEEE Access,,db/journals/access/access5.html#FanXTDCLLW17,https://doi.org/10.1109/ACCESS.2017.2737665 +Sung Sik Nam,Impact of Self-Interference on the Performance of Joint Partial RAKE Receiver and Adaptive Modulation.,2016,4,IEEE Access,,db/journals/access/access4.html#NamCAC16,https://doi.org/10.1109/ACCESS.2016.2632105 +Wentao Ma,Sparse Normalized Least Mean Absolute Deviation Algorithm Based on Unbiasedness Criterion for System Identification With Noisy Input.,2018,6,IEEE Access,,db/journals/access/access6.html#MaLLDC18,https://doi.org/10.1109/ACCESS.2018.2800278 +Enzo Baccarelli,Fog-Supported Delay-Constrained Energy-Saving Live Migration of VMs Over MultiPath TCP/IP 5G Connections.,2018,6,IEEE Access,,db/journals/access/access6.html#BaccarelliSM18,https://doi.org/10.1109/ACCESS.2018.2860249 +Sreenu Ponnada,A Hybrid Approach for Identification of Manhole and Staircase to Assist Visually Challenged.,2018,6,IEEE Access,,db/journals/access/access6.html#PonnadaSV18,https://doi.org/10.1109/ACCESS.2018.2852723 +Michel R. Miyazaki,Hybrid Modeling of Strategic Loading of a Marine Hybrid Power Plant With Experimental Validation.,2016,4,IEEE Access,,db/journals/access/access4.html#MiyazakiSLYP16,https://doi.org/10.1109/ACCESS.2016.2629000 +Qipeng Chen,Rule Induction-Based Knowledge Discovery for Energy Efficiency.,2015,3,IEEE Access,,db/journals/access/access3.html#ChenFKA15,https://doi.org/10.1109/ACCESS.2015.2472355 +Liquan Chen,A Public Key Compression Scheme for Fully Homomorphic Encryption Based on Quadratic Parameters With Correction.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenLF17,https://doi.org/10.1109/ACCESS.2017.2749419 +Hongjun Wang 0003,Face Feature Extraction: A Complete Review.,2018,6,IEEE Access,,db/journals/access/access6.html#WangHD18,https://doi.org/10.1109/ACCESS.2017.2784842 +Naser Al-Falahy,Network Capacity Optimisation in Millimetre Wave Band Using Fractional Frequency Reuse.,2018,6,IEEE Access,,db/journals/access/access6.html#Al-FalahyA18,https://doi.org/10.1109/ACCESS.2017.2762338 +Jianqiang Nie,Decentralized Cooperative Lane-Changing Decision-Making for Connected Autonomous Vehicles.,2016,4,IEEE Access,,db/journals/access/access4.html#NieZDWCR16,https://doi.org/10.1109/ACCESS.2017.2649567 +Mikhail Gerasimenko,Adaptive Resource Management Strategy in Practical Multi-Radio Heterogeneous Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#GerasimenkoM0KH17,https://doi.org/10.1109/ACCESS.2016.2638022 +Ishtiaq Ahmad,LTE-Railway User Priority-Based Cooperative Resource Allocation Schemes for Coexisting Public Safety and Railway Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#AhmadCC17,https://doi.org/10.1109/ACCESS.2017.2698098 +Zi-Hui Zhang,A Non-Dominated Sorting Cooperative Co-Evolutionary Differential Evolution Algorithm for Multi-Objective Layout Optimization.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangZXT17,https://doi.org/10.1109/ACCESS.2017.2716111 +Khaled M. Rabie,Two-Stage Non-Orthogonal Multiple Access Over Power Line Communication Channels.,2018,6,IEEE Access,,db/journals/access/access6.html#RabieATYI18,https://doi.org/10.1109/ACCESS.2018.2820175 +Harsha V. Padullaparti,Analytical Approach to Estimate Feeder Accommodation Limits Based on Protection Criteria.,2016,4,IEEE Access,,db/journals/access/access4.html#PadullapartiCHS16,https://doi.org/10.1109/ACCESS.2016.2589545 +Thomas L. Falch,GPU-Accelerated Visualization of Scattered Point Data.,2013,1,IEEE Access,,db/journals/access/access1.html#FalchFBE13,https://doi.org/10.1109/ACCESS.2013.2281080 +Yaoming Zhuang,Non-Preference Bi-Objective Compound Event Barrier Coverage Algorithm in 3-D Sensor Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhuangWZ18,https://doi.org/10.1109/ACCESS.2018.2849995 +Andriy Mazayev,Interoperability in IoT Through the Semantic Profiling of Objects.,2018,6,IEEE Access,,db/journals/access/access6.html#MazayevMC18,https://doi.org/10.1109/ACCESS.2017.2763425 +Quanyou Yue,Comprehensive Power Losses Model for Electronic Power Transformer.,2018,6,IEEE Access,,db/journals/access/access6.html#YueLCHCWZ18,https://doi.org/10.1109/ACCESS.2018.2791587 +Ovidio Mario Bucci,Experimental Framework for Magnetic Nanoparticles Enhanced Breast Cancer Microwave Imaging.,2017,5,IEEE Access,,db/journals/access/access5.html#BucciBBCCMS17,https://doi.org/10.1109/ACCESS.2017.2737488 +Manaf Zghaibeh,d-SHAM: A Constant Degree-Scalable Homogeneous Addressing Mechanism for Structured P2P Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ZghaibehH18,https://doi.org/10.1109/ACCESS.2018.2801259 +Amin Gholami,Toward a Consensus on the Definition and Taxonomy of Power System Resilience.,2018,6,IEEE Access,,db/journals/access/access6.html#GholamiSAAAS18,https://doi.org/10.1109/ACCESS.2018.2845378 +Jingye Sun,Extracting Complex Dielectric Properties From Reflection-Transmission Mode Spectroscopy.,2018,6,IEEE Access,,db/journals/access/access6.html#SunL18a,https://doi.org/10.1109/ACCESS.2018.2797698 +Yi-Zeng Hsieh,Development of Home Intelligent Fall Detection IoT System Based on Feedback Optical Flow Convolutional Neural Network.,2018,6,IEEE Access,,db/journals/access/access6.html#HsiehJ18,https://doi.org/10.1109/ACCESS.2017.2771389 +Mengjun Yin,Multi-Cell Cooperative Outage Compensation in Cloud-RANs Based 5G Public Safety Network.,2017,5,IEEE Access,,db/journals/access/access5.html#YinLFYQ17,https://doi.org/10.1109/ACCESS.2017.2734925 +Chien-I Weng,On-Supporting Energy Balanced $k$ -Barrier Coverage in Wireless Sensor Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#WengCHCC18,https://doi.org/10.1109/ACCESS.2018.2792678 +Laijie Lin,Efficient Tracking of Moving Target Based on an Improved Fast Differential Evolution Algorithm.,2018,6,IEEE Access,,db/journals/access/access6.html#LinZ18,https://doi.org/10.1109/ACCESS.2018.2793298 +Hsing-Cheng Chang,A Wearable Inertial Measurement System With Complementary Filter for Gait Analysis of Patients With Stroke or Parkinson's Disease.,2016,4,IEEE Access,,db/journals/access/access4.html#ChangHYLW16,https://doi.org/10.1109/ACCESS.2016.2633304 +Mengmeng Yang,Density-Based Location Preservation for Mobile Crowdsensing With Differential Privacy.,2018,6,IEEE Access,,db/journals/access/access6.html#YangZXZ18,https://doi.org/10.1109/ACCESS.2018.2816918 +Lin-Ping Feng,Compact Wideband Filtering Balun Using Stacked Composite Resonators.,2018,6,IEEE Access,,db/journals/access/access6.html#FengZ18,https://doi.org/10.1109/ACCESS.2018.2843782 +Dandan Su,Finite-State Model Predictive Current Control for Surface-Mounted Permanent Magnet Synchronous Motors Based on Current Locus.,2017,5,IEEE Access,,db/journals/access/access5.html#SuZD17,https://doi.org/10.1109/ACCESS.2017.2771418 +Javier Medina Quero,Predicting the Urgency Demand of COPD Patients From Environmental Sensors Within Smart Cities With High-Environmental Sensitivity.,2018,6,IEEE Access,,db/journals/access/access6.html#QueroLHE18,https://doi.org/10.1109/ACCESS.2018.2828652 +Muhammad Imran Khalid,Epileptic MEG Spikes Detection Using Common Spatial Patterns and Linear Discriminant Analysis.,2016,4,IEEE Access,,db/journals/access/access4.html#KhalidAAAAAA16,https://doi.org/10.1109/ACCESS.2016.2602354 +Andrzej Bartoszewicz,Reaching Law Based Discrete Time Sliding Mode Inventory Management Strategy.,2016,4,IEEE Access,,db/journals/access/access4.html#BartoszewiczL16,https://doi.org/10.1109/ACCESS.2016.2633618 +Seongjung Kim,Ubiquitous Healthcare System for Analysis of Chronic Patients' Biological and Lifelog Data.,2018,6,IEEE Access,,db/journals/access/access6.html#KimYKSS18,https://doi.org/10.1109/ACCESS.2018.2805304 +Chao Zhang 0010,Dynamic Modeling of Failure Events in Preventative Pipe Maintenance.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangWBMK18,https://doi.org/10.1109/ACCESS.2018.2806340 +Yonglai Zhang,Risk Detection of Stroke Using a Feature Selection and Classification Method.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangSLFL18,https://doi.org/10.1109/ACCESS.2018.2833442 +Logan O. Mailloux,A Modeling Framework for Studying Quantum Key Distribution System Implementation Nonidealities.,2015,3,IEEE Access,,db/journals/access/access3.html#MaillouxMGHJCMH15,https://doi.org/10.1109/ACCESS.2015.2399101 +Jiwei Kuang,Load-Isolation Wireless Power Transfer With K-Inverter for Multiple-Receiver Applications.,2018,6,IEEE Access,,db/journals/access/access6.html#KuangLZHW18,https://doi.org/10.1109/ACCESS.2018.2824334 +Antonio Artuñedo,A Primitive Comparison for Traffic-Free Path Planning.,2018,6,IEEE Access,,db/journals/access/access6.html#ArtunedoGV18,https://doi.org/10.1109/ACCESS.2018.2839884 +Qingzheng Xu,Theoretical Analysis and Experimental Evidence of Opposite-Center Learning.,2018,6,IEEE Access,,db/journals/access/access6.html#XuXW18,https://doi.org/10.1109/ACCESS.2018.2794961 +Haseeb Ahmad,Prediction of Rising Stars in the Game of Cricket.,2017,5,IEEE Access,,db/journals/access/access5.html#AhmadDWHDY17,https://doi.org/10.1109/ACCESS.2017.2682162 +Junhui Zhao,Peak-to-Average Power Ratio Reduction of FBMC/OQAM Signal Using a Joint Optimization Scheme.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhaoNG17,https://doi.org/10.1109/ACCESS.2017.2700078 +Laiding Zhao,A Novel Method of Scanning and Tracking in Satellite Communication Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhaoX17,https://doi.org/10.1109/ACCESS.2017.2702138 +Xingcheng Hua,Hadoop Configuration Tuning With Ensemble Modeling and Metaheuristic Optimization.,2018,6,IEEE Access,,db/journals/access/access6.html#HuaHL18,https://doi.org/10.1109/ACCESS.2018.2857852 +Arash Mahboubi,A Study on Formal Methods to Generalize Heterogeneous Mobile Malware Propagation and Their Impacts.,2017,5,IEEE Access,,db/journals/access/access5.html#MahboubiCM17,https://doi.org/10.1109/ACCESS.2017.2772787 +Hongji Huang,Rate Region Analysis in a Full-Duplex-Aided Cooperative Nonorthogonal Multiple-Access System.,2017,5,IEEE Access,,db/journals/access/access5.html#HuangX0GS17,https://doi.org/10.1109/ACCESS.2017.2747129 +Yuanyuan Kong,The Security Network Coding System With Physical Layer Key Generation in Two-Way Relay Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#KongLCY18,https://doi.org/10.1109/ACCESS.2018.2858282 +Kang Kang,Game-Theory-Based Distributed Power Splitting for Future Wireless Powered MTC Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#KangYPLS17,https://doi.org/10.1109/ACCESS.2017.2756079 +Huan Wang,An Event Detection Method for Social Networks Based on Evolution Fluctuations of Nodes.,2018,6,IEEE Access,,db/journals/access/access6.html#WangHQW18,https://doi.org/10.1109/ACCESS.2017.2785790 +Issa Najafi,Investigation of the Correlation Between Trust and Reputation in B2C e-Commerce Using Alexa Ranking.,2017,5,IEEE Access,,db/journals/access/access5.html#NajafiKKT17,https://doi.org/10.1109/ACCESS.2017.2720118 +Wafa Elmannai,A Highly Accurate and Reliable Data Fusion Framework for Guiding the Visually Impaired.,2018,6,IEEE Access,,db/journals/access/access6.html#ElmannaiE18,https://doi.org/10.1109/ACCESS.2018.2817164 +Rodolfo Torrea Duran,A Multiple-Relay Communication Protocol for Achieving Fairness in Dense Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#DuranRPVM18,https://doi.org/10.1109/ACCESS.2018.2797128 +Tianyi Wang,Evaluation of Self-Reliance Support Robot Through Relative Phase.,2017,5,IEEE Access,,db/journals/access/access5.html#WangJO17,https://doi.org/10.1109/ACCESS.2017.2747841 +Senyu Li,An Improved Information Security Risk Assessments Method for Cyber-Physical-Social Computing and Networking.,2018,6,IEEE Access,,db/journals/access/access6.html#LiBCMLT18,https://doi.org/10.1109/ACCESS.2018.2800664 +Murty S. Challa,A Simple Attitude Unscented Kalman Filter: Theory and Evaluation in a Magnetometer-Only Spacecraft Scenario.,2016,4,IEEE Access,,db/journals/access/access4.html#ChallaMR16,https://doi.org/10.1109/ACCESS.2016.2559445 +Mukhtar Ghaleb,A Performance Simulation Tool for the Analysis of Data Gathering in Both Terrestrial and Underwater Sensor Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#GhalebFSSQ17,https://doi.org/10.1109/ACCESS.2017.2684539 +Hailin Yang,Dense and Tight Detection of Chinese Characters in Historical Documents: Datasets and a Recognition Guided Detector.,2018,6,IEEE Access,,db/journals/access/access6.html#YangJHYLS18,https://doi.org/10.1109/ACCESS.2018.2840218 +Yijun Cui,Ultra-Lightweight and Reconfigurable Tristate Inverter Based Physical Unclonable Function Design.,2018,6,IEEE Access,,db/journals/access/access6.html#CuiGWOL18,https://doi.org/10.1109/ACCESS.2018.2839363 +Anupriya Gogna,A Comprehensive Recommender System Model: Improving Accuracy for Both Warm and Cold Start Users.,2015,3,IEEE Access,,db/journals/access/access3.html#GognaM15,https://doi.org/10.1109/ACCESS.2015.2510659 +Xiao Liu 0007,A Trust With Abstract Information Verified Routing Scheme for Cyber-Physical Network.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuXZLSH18,https://doi.org/10.1109/ACCESS.2018.2799681 +Yaowei Li,Combining Convolutional Neural Network and Distance Distribution Matrix for Identification of Congestive Heart Failure.,2018,6,IEEE Access,,db/journals/access/access6.html#LiZZZLZZLWNLH18,https://doi.org/10.1109/ACCESS.2018.2855420 +Wufei Wu,Sliding Window Optimized Information Entropy Analysis Method for Intrusion Detection on In-Vehicle Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#WuHKZXLL18,https://doi.org/10.1109/ACCESS.2018.2865169 +Zhiliang Huang,Simplified Successive Cancellation Decoding of Polar Codes With Medium-Dimensional Binary Kernels.,2018,6,IEEE Access,,db/journals/access/access6.html#HuangZZDZC18,https://doi.org/10.1109/ACCESS.2018.2834465 +Qingwu Li,Human Pose Estimation by Exploiting Spatial and Temporal Constraints in Body-Part Configurations.,2017,5,IEEE Access,,db/journals/access/access5.html#LiHWZX17,https://doi.org/10.1109/ACCESS.2016.2643439 +Farman Ali,Merged Ontology and SVM-Based Information Extraction and Recommendation System for Social Robots.,2017,5,IEEE Access,,db/journals/access/access5.html#AliKKEIPK17,https://doi.org/10.1109/ACCESS.2017.2718038 +Rajendra Mitharwal,On the Multiplicative Regularization of Graph Laplacians on Closed and Open Structures With Applications to Spectral Partitioning.,2014,2,IEEE Access,,db/journals/access/access2.html#MitharwalA14,https://doi.org/10.1109/ACCESS.2014.2345657 +Sandra Robla-Gómez,Working Together: A Review on Safe Human-Robot Collaboration in Industrial Environments.,2017,5,IEEE Access,,db/journals/access/access5.html#Robla-GomezBLGT17,https://doi.org/10.1109/ACCESS.2017.2773127 +Hongchun Sun,Improved Singular Value Decomposition (TopSVD) for Source Number Estimation of Low SNR in Blind Source Separation.,2017,5,IEEE Access,,db/journals/access/access5.html#SunGF17,https://doi.org/10.1109/ACCESS.2017.2754487 +Azade Fotouhi,Flying Drone Base Stations for Macro Hotspots.,2018,6,IEEE Access,,db/journals/access/access6.html#FotouhiDH18,https://doi.org/10.1109/ACCESS.2018.2817799 +Chuanhao Li,Bearing Fault Diagnosis Using Fully-Connected Winner-Take-All Autoencoder.,2018,6,IEEE Access,,db/journals/access/access6.html#LiZPL18,https://doi.org/10.1109/ACCESS.2017.2717492 +Hengyu Li,A Symmetrical Hybrid Driving Waveform for a Linear Piezoelectric Stick-Slip Actuator.,2017,5,IEEE Access,,db/journals/access/access5.html#LiLCLZG17,https://doi.org/10.1109/ACCESS.2017.2744498 +Xiao Luo,Global Optimization of All-Optical Hybrid-Casting in Inter-Datacenter Elastic Optical Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#LuoSCWY18,https://doi.org/10.1109/ACCESS.2018.2852067 +Mohamed Elhoseny,Secure Medical Data Transmission Model for IoT-Based Healthcare Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#ElhosenyGASNF18,https://doi.org/10.1109/ACCESS.2018.2817615 +Zhongwei Si,Learning Deep Features for DNA Methylation Data Analysis.,2016,4,IEEE Access,,db/journals/access/access4.html#SiYM16,https://doi.org/10.1109/ACCESS.2016.2576598 +Jiliang Zhang 0003,Outage Analysis of Wireless-Powered Relaying MIMO Systems with Non-Linear Energy Harvesters and Imperfect CSI.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhangP16,https://doi.org/10.1109/ACCESS.2016.2617893 +Lingzhi Yang,A Posteriori Processing Optimization Method for Gesture Interaction in Aseptic Operation Room.,2018,6,IEEE Access,,db/journals/access/access6.html#YangBGHZ18,https://doi.org/10.1109/ACCESS.2018.2814621 +Qinlong Huang,Secure Data Access Control With Ciphertext Update and Computation Outsourcing in Fog Computing for Internet of Things.,2017,5,IEEE Access,,db/journals/access/access5.html#HuangYW17,https://doi.org/10.1109/ACCESS.2017.2727054 +Yongchuan Tang,AMWRPN: Ambiguity Measure Weighted Risk Priority Number Model for Failure Mode and Effects Analysis.,2018,6,IEEE Access,,db/journals/access/access6.html#TangZC18,https://doi.org/10.1109/ACCESS.2018.2836139 +Wenjie Yu,Multi-Objective Optimum Design of High-Speed Backplane Connector Using Particle Swarm Optimization.,2018,6,IEEE Access,,db/journals/access/access6.html#YuZPYHJLF18,https://doi.org/10.1109/ACCESS.2018.2847732 +Yanjing Sun,Precoder Design in Statistical CSI Aided Non-Orthogonal Multiple Access.,2018,6,IEEE Access,,db/journals/access/access6.html#SunZCL18,https://doi.org/10.1109/ACCESS.2018.2797882 +Jianhua Ma,Top Challenges for Smart Worlds: A Report on the Top10Cs Forum.,2015,3,IEEE Access,,db/journals/access/access3.html#MaZNYHLMY15,https://doi.org/10.1109/ACCESS.2015.2504123 +Sasirom Tiennoy,Using a Distributed Roadside Unit for the Data Dissemination Protocol in VANET With the Named Data Architecture.,2018,6,IEEE Access,,db/journals/access/access6.html#TiennoyS18,https://doi.org/10.1109/ACCESS.2018.2840088 +Rui Xu 0005,A Design of Broadband Circularly Polarized C-Shaped Slot Antenna With Sword-Shaped Radiator and Its Array for L/S-Band Applications.,2018,6,IEEE Access,,db/journals/access/access6.html#XuLL18,https://doi.org/10.1109/ACCESS.2017.2788008 +Zheng Zhang 0006,A Survey of Sparse Representation: Algorithms and Applications.,2015,3,IEEE Access,,db/journals/access/access3.html#ZhangXYLZ15,https://doi.org/10.1109/ACCESS.2015.2430359 +Jeren Samandari-Rad,Confronting the Variability Issues Affecting the Performance of Next-Generation SRAM Design to Optimize and Predict the Speed and Yield.,2014,2,IEEE Access,,db/journals/access/access2.html#Samandari-RadGH14,https://doi.org/10.1109/ACCESS.2014.2323233 +Adam Polyak,Channel-Level Acceleration of Deep Face Representations.,2015,3,IEEE Access,,db/journals/access/access3.html#PolyakW15,https://doi.org/10.1109/ACCESS.2015.2494536 +Rami Hamdi,Resource Allocation in Downlink Large-Scale MIMO Systems.,2016,4,IEEE Access,,db/journals/access/access4.html#HamdiDA16,https://doi.org/10.1109/ACCESS.2016.2630999 +Weiwei Shi 0002,Temporal Dynamic Matrix Factorization for Missing Data Prediction in Large Scale Coevolving Time Series.,2016,4,IEEE Access,,db/journals/access/access4.html#ShiZYHWMC16,https://doi.org/10.1109/ACCESS.2016.2606242 +Mina Abedi Varnosfaderani,A Comparison of Online Electrochemical Spectroscopy Impedance Estimation of Batteries.,2018,6,IEEE Access,,db/journals/access/access6.html#VarnosfaderaniS18,https://doi.org/10.1109/ACCESS.2018.2808412 +Senlin Zhang,Data-Based Line Trip Fault Prediction in Power Systems Using LSTM Networks and SVM.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangWLB18,https://doi.org/10.1109/ACCESS.2017.2785763 +Zixing Zhang 0001,Leveraging Unlabeled Data for Emotion Recognition With Enhanced Collaborative Semi-Supervised Learning.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangHDXRS18,https://doi.org/10.1109/ACCESS.2018.2821192 +Muhammad Saleh Murtaza Gardezi,Machine Learning Based Adaptive Prediction Horizon in Finite Control Set Model Predictive Control.,2018,6,IEEE Access,,db/journals/access/access6.html#GardeziH18,https://doi.org/10.1109/ACCESS.2018.2839519 +Shuang Jia,Research on Energy Sensing Based Fault-Tolerant Distributed Routing Mechanism for Wireless Sensor Network.,2018,6,IEEE Access,,db/journals/access/access6.html#JiaMQY18,https://doi.org/10.1109/ACCESS.2018.2854900 +Lifeng Wang,An Automated Calibration Method of Ultrasonic Probe Based on Coherent Point Drift Algorithm.,2018,6,IEEE Access,,db/journals/access/access6.html#WangWLHHLGQX18,https://doi.org/10.1109/ACCESS.2018.2791582 +Yanxiao Liu,Enhance Embedding Capacity of Generalized Exploiting Modification Directions in Data Hiding.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuYS18,https://doi.org/10.1109/ACCESS.2017.2787803 +Arslan Musaddiq,A Survey on Resource Management in IoT Operating Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#MusaddiqZHYBK18,https://doi.org/10.1109/ACCESS.2018.2808324 +Hongli Lv,A Robust Active Contour Segmentation Based on Fractional-Order Differentiation and Fuzzy Energy.,2017,5,IEEE Access,,db/journals/access/access5.html#LvWFZZL17,https://doi.org/10.1109/ACCESS.2017.2697975 +Khursheed Aurangzeb,Analysis of Binary Image Coding Methods for Outdoor Applications of Wireless Vision Sensor Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#AurangzebAO18,https://doi.org/10.1109/ACCESS.2018.2816162 +Xi Tan,An Energy-Efficient ECC Processor of UHF RFID Tag for Banknote Anti-Counterfeiting.,2017,5,IEEE Access,,db/journals/access/access5.html#TanDWOWE17,https://doi.org/10.1109/ACCESS.2016.2615003 +Muhtahir O. Oloyede,Unimodal and Multimodal Biometric Sensing Systems: A Review.,2016,4,IEEE Access,,db/journals/access/access4.html#OloyedeH16,https://doi.org/10.1109/ACCESS.2016.2614720 +Mario Manso Vázquez,An xAPI Application Profile to Monitor Self-Regulated Learning Strategies.,2018,6,IEEE Access,,db/journals/access/access6.html#VazquezRN18,https://doi.org/10.1109/ACCESS.2018.2860519 +Hongyan Cui,A Clustering Validity Index Based on Pairing Frequency.,2017,5,IEEE Access,,db/journals/access/access5.html#CuiZFSRH17,https://doi.org/10.1109/ACCESS.2017.2743985 +Xin Ye 0006,Automatic Design and Fabrication of a Custom Ocular Prosthesis Using 3D Volume Difference Reconstruction (VDR).,2018,6,IEEE Access,,db/journals/access/access6.html#YeWZSLQY18,https://doi.org/10.1109/ACCESS.2018.2802700 +Nguyen-Son Vo,5G Optimized Caching and Downlink Resource Sharing for Smart Cities.,2018,6,IEEE Access,,db/journals/access/access6.html#VoDGK18,https://doi.org/10.1109/ACCESS.2018.2839669 +Fei Xu 0005,Dynamic Magnetic Resonance Imaging via Nonconvex Low-Rank Matrix Approximation.,2017,5,IEEE Access,,db/journals/access/access5.html#XuHWCCHH17,https://doi.org/10.1109/ACCESS.2017.2657645 +Maryam Hajjar,Hybrid Clustering Scheme for Relaying in Multi-Cell LTE High User Density Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#HajjarADW17,https://doi.org/10.1109/ACCESS.2016.2627527 +Weifang Zhang,Mechanical Properties and Corrosion Behavior of 5A06 Alloy in Seawater.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangJLLD18,https://doi.org/10.1109/ACCESS.2018.2829549 +Tao Zhang 0021,Multi-Radar Bias Estimation Without a Priori Association.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangLYLW18,https://doi.org/10.1109/ACCESS.2018.2862926 +Lars Gjesteby,Metal Artifact Reduction in CT: Where Are We After Four Decades?,2016,4,IEEE Access,,db/journals/access/access4.html#GjestebyMJPVGW16,https://doi.org/10.1109/ACCESS.2016.2608621 +Jiayin Zhu,An Effective Machine Learning Approach for Identifying the Glyphosate Poisoning Status in Rats Using Blood Routine Test.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhuZLCW18,https://doi.org/10.1109/ACCESS.2018.2809789 +Zhaoying Liu,Multi-Modal Ship Target Image Smoothing Based on Adaptive Mean Shift.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuBSZL18,https://doi.org/10.1109/ACCESS.2018.2794141 +Farrukh Pervez,Memory-Based User-Centric Backhaul-Aware User Cell Association Scheme.,2018,6,IEEE Access,,db/journals/access/access6.html#PervezJQYI18,https://doi.org/10.1109/ACCESS.2018.2850752 +Guihong Chen,Reinforcement Learning Based Power Control for In-Body Sensors in WBANs Against Jamming.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenZCXWA18,https://doi.org/10.1109/ACCESS.2018.2850659 +Pengbo Zhu,Mixture Semisupervised Bayesian Principal Component Regression for Soft Sensor Modeling.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhuLWY18,https://doi.org/10.1109/ACCESS.2018.2859366 +Yunjian Zhang,A Nonlinear ARMA-GARCH Model With Johnson $S_u$ Innovations and Its Application to Sea Clutter Modeling.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangLHD18,https://doi.org/10.1109/ACCESS.2018.2805306 +Runhai Jiao,A Model Combining Stacked Auto Encoder and Back Propagation Algorithm for Short-Term Wind Power Forecasting.,2018,6,IEEE Access,,db/journals/access/access6.html#JiaoHMHT18,https://doi.org/10.1109/ACCESS.2018.2818108 +Tao Song,Numerical Analysis of Influences From Internal Waves on Electromagnetic Scattering From Sea Surface.,2018,6,IEEE Access,,db/journals/access/access6.html#SongTC18,https://doi.org/10.1109/ACCESS.2018.2859592 +Laurence T. Yang,IEEE Access Special Section Editorial: Challenges for Smart Worlds.,2015,3,IEEE Access,,db/journals/access/access3.html#YangYMZN15,https://doi.org/10.1109/ACCESS.2016.2516779 +Qisheng Dong,An Optimized Link Layer Design for Communication-Based Train Control Systems Using WLAN.,2018,6,IEEE Access,,db/journals/access/access6.html#DongHK18,https://doi.org/10.1109/ACCESS.2017.2763173 +D. G. Huang,Chemical Medicine Classification Through Chemical Properties Analysis.,2017,5,IEEE Access,,db/journals/access/access5.html#HuangGYWJ17,https://doi.org/10.1109/ACCESS.2017.2654062 +Yosub Park,Theoretical Analysis of Interference Effect From Idle Cells in Ultra-Dense Small Cell Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ParkH18,https://doi.org/10.1109/ACCESS.2018.2832630 +Ayman Radwan,Low-Cost On-Demand C-RAN Based Mobile Small-Cells.,2016,4,IEEE Access,,db/journals/access/access4.html#RadwanHMTR16,https://doi.org/10.1109/ACCESS.2016.2563518 +Razgar Rahimi,A Two-Way Network Beamforming Approach Based on Total Power Minimization With Symmetric Relay Beamforming Matrices.,2017,5,IEEE Access,,db/journals/access/access5.html#RahimiS17,https://doi.org/10.1109/ACCESS.2017.2710908 +Miguel Gabriel Villarreal-Cervantes,Multi-Objective On-Line Optimization Approach for the DC Motor Controller Tuning Using Differential Evolution.,2017,5,IEEE Access,,db/journals/access/access5.html#Villarreal-Cervantes17,https://doi.org/10.1109/ACCESS.2017.2757959 +FaJun Yang,Petri Net-Based Efficient Determination of Optimal Schedules for Transport-Dominant Single-Arm Multi-Cluster Tools.,2018,6,IEEE Access,,db/journals/access/access6.html#YangWQZSQ18,https://doi.org/10.1109/ACCESS.2017.2763778 +Jiang Zhu 0001,Multi-Armed Bandit Channel Access Scheme With Cognitive Radio Technology in Wireless Sensor Networks for the Internet of Things.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhuSJS16,https://doi.org/10.1109/ACCESS.2016.2600633 +Tinghuai Ma,Weighted Greedy Dual Size Frequency Based Caching Replacement Algorithm.,2018,6,IEEE Access,,db/journals/access/access6.html#MaQSTAA18,https://doi.org/10.1109/ACCESS.2018.2790381 +Muhammad Hilmi Kamarudin,A LogitBoost-Based Algorithm for Detecting Known and Unknown Web Attacks.,2017,5,IEEE Access,,db/journals/access/access5.html#KamarudinMWS17,https://doi.org/10.1109/ACCESS.2017.2766844 +Shuo Chen 0004,Three-Dimensional Terahertz Coded-Aperture Imaging in Space Domain.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenLWPDZ18,https://doi.org/10.1109/ACCESS.2018.2847898 +Zulfiqar Ali,Innovative Method for Unsupervised Voice Activity Detection and Classification of Audio Segments.,2018,6,IEEE Access,,db/journals/access/access6.html#AliT18,https://doi.org/10.1109/ACCESS.2018.2805845 +Linqin Cai,Human Action Recognition Using Improved Sparse Gaussian Process Latent Variable Model and Hidden Conditional Random Filed.,2018,6,IEEE Access,,db/journals/access/access6.html#CaiLDC18,https://doi.org/10.1109/ACCESS.2018.2822713 +Arman Shojaeifard,Stochastic Geometric Analysis of Energy-Efficient Dense Cellular Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#ShojaeifardWHAS17,https://doi.org/10.1109/ACCESS.2016.2643441 +Navid Paydavosi,BSIM - SPICE Models Enable FinFET and UTB IC Designs.,2013,1,IEEE Access,,db/journals/access/access1.html#PaydavosiVCDJNH13,https://doi.org/10.1109/ACCESS.2013.2260816 +Qi Zeng,A Secure Waveform Format for Interference Mitigation in Heterogeneous Uplink Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ZengNG18,https://doi.org/10.1109/ACCESS.2018.2858840 +Jing Wang,Image Skeleton and GA Based Tool Selection for 2 1/2-Axis Rough Milling.,2018,6,IEEE Access,,db/journals/access/access6.html#WangLHZ18,https://doi.org/10.1109/ACCESS.2018.2842091 +Jui-Hung Chang,Analysis of Correlation Between Secondary PM2.5 and Factory Pollution Sources by Using ANN and the Correlation Coefficient.,2017,5,IEEE Access,,db/journals/access/access5.html#ChangT17,https://doi.org/10.1109/ACCESS.2017.2765337 +Ji-Wei Lian,Hybrid Multi-Mode Narrow-Frame Antenna for WWAN/LTE Metal-Rimmed Smartphone Applications.,2016,4,IEEE Access,,db/journals/access/access4.html#LianBYZSK16,https://doi.org/10.1109/ACCESS.2016.2593538 +Kai-Wei Jiang,SIC-Based Secrecy Performance in Uplink NOMA Multi-Eavesdropper Wiretap Channels.,2018,6,IEEE Access,,db/journals/access/access6.html#JiangJHZL18,https://doi.org/10.1109/ACCESS.2018.2823003 +Sung-Hsien Hsieh,A Secure Compressive Sensing-Based Data Gathering System via Cloud Assistance.,2018,6,IEEE Access,,db/journals/access/access6.html#HsiehHLCP18,https://doi.org/10.1109/ACCESS.2018.2844184 +Ioanna Kakalou,Coordination Without Collaboration in Imperfect Games: The Primary User Emulation Attack Example.,2018,6,IEEE Access,,db/journals/access/access6.html#KakalouP18,https://doi.org/10.1109/ACCESS.2018.2791519 +Haixia Cui,Distributed Interference-Aware Cooperative Random Access in Multi-Hop Wireless Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#CuiLLPH16,https://doi.org/10.1109/ACCESS.2016.2594767 +David L. Mccann,"A Simple Offset ""Calibration"" Method for the Accurate Geographic Registration of Ship-Borne X-Band Radar Intensity Imagery.",2018,6,IEEE Access,,db/journals/access/access6.html#MccannB18,https://doi.org/10.1109/ACCESS.2018.2814081 +Kuo-Ching Ying,Minimizing Makespan in Distributed Blocking Flowshops Using Hybrid Iterated Greedy Algorithms.,2017,5,IEEE Access,,db/journals/access/access5.html#YingL17,https://doi.org/10.1109/ACCESS.2017.2732738 +Wei Yin 0004,An Anti-Quantum Transaction Authentication Approach in Blockchain.,2018,6,IEEE Access,,db/journals/access/access6.html#YinWLZJ18,https://doi.org/10.1109/ACCESS.2017.2788411 +Firuz Zare,Harmonic Emissions of Three-Phase Diode Rectifiers in Distribution Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#ZareSKDDB17,https://doi.org/10.1109/ACCESS.2017.2669578 +Haiming Du,Elitism and Distance Strategy for Selection of Evolutionary Algorithms.,2018,6,IEEE Access,,db/journals/access/access6.html#DuWZG18,https://doi.org/10.1109/ACCESS.2018.2861760 +Liangmin Guo,A Game Based Consolidation Method of Virtual Machines in Cloud Data Centers With Energy and Load Constraints.,2018,6,IEEE Access,,db/journals/access/access6.html#GuoHDLZ18,https://doi.org/10.1109/ACCESS.2017.2787735 +Bryan Paul,Survey of RF Communications and Sensing Convergence Research.,2017,5,IEEE Access,,db/journals/access/access5.html#PaulCB17,https://doi.org/10.1109/ACCESS.2016.2639038 +Sike Yao,Joint Dimming and Data Transmission Optimization for Multi-User Visible Light Communication System.,2017,5,IEEE Access,,db/journals/access/access5.html#YaoZQL17,https://doi.org/10.1109/ACCESS.2017.2681798 +Frederick Lie,Demonstration of ACO-Based Freeform Source for ArF Laser Immersion Lithography System.,2017,5,IEEE Access,,db/journals/access/access5.html#LieHWCK17,https://doi.org/10.1109/ACCESS.2017.2694854 +Mateen Ashraf,Energy Harvesting Non-Orthogonal Multiple Access System With Multi-Antenna Relay and Base Station.,2017,5,IEEE Access,,db/journals/access/access5.html#AshrafSJL17a,https://doi.org/10.1109/ACCESS.2017.2747085 +Sascha Frühholz,The Effect of Narrow-Band Transmission on Recognition of Paralinguistic Information From Human Vocalizations.,2016,4,IEEE Access,,db/journals/access/access4.html#FruhholzMS16,https://doi.org/10.1109/ACCESS.2016.2604038 +Jan Bacik,Pathfinder-Development of Automated Guided Vehicle for Hospital Logistics.,2017,5,IEEE Access,,db/journals/access/access5.html#BacikDBKPP17,https://doi.org/10.1109/ACCESS.2017.2767899 +Qinhao Li,Robust Optimal Reactive Power Dispatch With Feedback and Correction Against Uncertainty of Transmission Line Parameters.,2018,6,IEEE Access,,db/journals/access/access6.html#LiZJLLCY18,https://doi.org/10.1109/ACCESS.2018.2853262 +Jesús A. Meda-Campaña,On the Estimation and Control of Nonlinear Systems With Parametric Uncertainties and Noisy Outputs.,2018,6,IEEE Access,,db/journals/access/access6.html#Meda-Campana18,https://doi.org/10.1109/ACCESS.2018.2846483 +Jiachen Yang,No-Reference Stereoimage Quality Assessment for Multimedia Analysis Towards Internet-of-Things.,2018,6,IEEE Access,,db/journals/access/access6.html#YangJSYLL18,https://doi.org/10.1109/ACCESS.2018.2791560 +Qinlong Huang,Secure Identity-Based Data Sharing and Profile Matching for Mobile Healthcare Social Networks in Cloud Computing.,2018,6,IEEE Access,,db/journals/access/access6.html#HuangYHY18,https://doi.org/10.1109/ACCESS.2018.2852784 +Jacky C. K. Chow,Photogrammetric Bundle Adjustment With Self-Calibration of the PrimeSense 3D Camera Technology: Microsoft Kinect.,2013,1,IEEE Access,,db/journals/access/access1.html#ChowL13,https://doi.org/10.1109/ACCESS.2013.2271860 +Konstantinos Christidis,Blockchains and Smart Contracts for the Internet of Things.,2016,4,IEEE Access,,db/journals/access/access4.html#ChristidisD16,https://doi.org/10.1109/ACCESS.2016.2566339 +Yiming Lei,An Efficient Construction Method for Quasi-Cyclic Low Density Parity Check Codes.,2017,5,IEEE Access,,db/journals/access/access5.html#LeiD17,https://doi.org/10.1109/ACCESS.2017.2678515 +Yiping Duan,Hierarchical Multinomial Latent Model With G0 Distribution for Synthetic Aperture Radar Image Semantic Segmentation.,2018,6,IEEE Access,,db/journals/access/access6.html#DuanTXQYHL18,https://doi.org/10.1109/ACCESS.2018.2841041 +Dania Marabissi,Heterogeneous Public Safety Network Architecture Based on RAN Slicing.,2017,5,IEEE Access,,db/journals/access/access5.html#MarabissiF17,https://doi.org/10.1109/ACCESS.2017.2768800 +M. Caroline Viola Stella Mary,Retinal Fundus Image Analysis for Diagnosis of Glaucoma: A Comprehensive Survey.,2016,4,IEEE Access,,db/journals/access/access4.html#MaryRN16,https://doi.org/10.1109/ACCESS.2016.2596761 +Zhi Zhu,Cognitive Behaviors Modeling Using UML Profile: Design and Experience.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhuLZS17,https://doi.org/10.1109/ACCESS.2017.2760060 +Zhendong Bei,MEST: A Model-Driven Efficient Searching Approach for MapReduce Self-Tuning.,2017,5,IEEE Access,,db/journals/access/access5.html#BeiYLXFS17,https://doi.org/10.1109/ACCESS.2017.2672675 +Debajyoti Pal,Smart Homes and Quality of Life for the Elderly: Perspective of Competing Models.,2018,6,IEEE Access,,db/journals/access/access6.html#PalTFC18,https://doi.org/10.1109/ACCESS.2018.2798614 +Umar Farooq,Fuzzy Model Based Bilateral Control Design of Nonlinear Tele-Operation System Using Method of State Convergence.,2016,4,IEEE Access,,db/journals/access/access4.html#FarooqGEAA16,https://doi.org/10.1109/ACCESS.2016.2558524 +Zhangkai Luo,Polarization Filtering Based Physical-Layer Secure Transmission Scheme for Dual-Polarized Satellite Communication.,2017,5,IEEE Access,,db/journals/access/access5.html#LuoWZ17,https://doi.org/10.1109/ACCESS.2017.2762726 +Qiong-Sen Wu,An Improved Method for Accurate Extraction of Coupling Coefficient Between a Lossy Radiator and a Lossless Resonator in Filtering Antennas.,2018,6,IEEE Access,,db/journals/access/access6.html#WuZZ18,https://doi.org/10.1109/ACCESS.2018.2853164 +Mei Bai,Representative Skyline Queries With Total and Partial Order Domains Using US-ELM.,2018,6,IEEE Access,,db/journals/access/access6.html#BaiWLN18,https://doi.org/10.1109/ACCESS.2018.2795040 +Mona Nabil Demaidi,OntoPeFeGe: Ontology-Based Personalized Feedback Generator.,2018,6,IEEE Access,,db/journals/access/access6.html#DemaidiGF18,https://doi.org/10.1109/ACCESS.2018.2846398 +Puguang Liu,Mitigating DoS Attacks Against Pseudonymous Authentication Through Puzzle-Based Co-Authentication in 5G-VANET.,2018,6,IEEE Access,,db/journals/access/access6.html#Liu0SZY18,https://doi.org/10.1109/ACCESS.2018.2826518 +Taejoo Cho,Security Assessment of Code Obfuscation Based on Dynamic Monitoring in Android Things.,2017,5,IEEE Access,,db/journals/access/access5.html#ChoKY17,https://doi.org/10.1109/ACCESS.2017.2693388 +Md. Arifur Rahman,EECOR: An Energy-Efficient Cooperative Opportunistic Routing Protocol for Underwater Acoustic Sensor Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#RahmanLK17,https://doi.org/10.1109/ACCESS.2017.2730233 +Shuangyu He,A Social-Network-Based Cryptocurrency Wallet-Management Scheme.,2018,6,IEEE Access,,db/journals/access/access6.html#HeWLLLFZL18,https://doi.org/10.1109/ACCESS.2018.2799385 +Mugen Peng,IEEE Access Special Section Editorial: Recent Advances in Software Defined Networking for 5G Networks.,2015,3,IEEE Access,,db/journals/access/access3.html#PengHYP15,https://doi.org/10.1109/ACCESS.2016.2514898 +Kai Lei,Understanding User Behavior in Sina Weibo Online Social Network: A Community Approach.,2018,6,IEEE Access,,db/journals/access/access6.html#LeiLZLXSY18,https://doi.org/10.1109/ACCESS.2018.2808158 +Margaret J. Eppstein,Using National Survey Respondents as Consumers in an Agent-Based Model of Plug-In Hybrid Vehicle Adoption.,2015,3,IEEE Access,,db/journals/access/access3.html#EppsteinRLKM15,https://doi.org/10.1109/ACCESS.2015.2427252 +Feras Dayoub,Rubbing Shoulders With Mobile Service Robots.,2015,3,IEEE Access,,db/journals/access/access3.html#DayoubMC15,https://doi.org/10.1109/ACCESS.2015.2424273 +Bolun Chen,Link Prediction on Directed Networks Based on AUC Optimization.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenHYJ18,https://doi.org/10.1109/ACCESS.2018.2838259 +Ling-Jyh Chen,An Open Framework for Participatory PM2.5 Monitoring in Smart Cities.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenHLWLHHL17,https://doi.org/10.1109/ACCESS.2017.2723919 +Youngwook Kim,Application of Micro-Doppler Signatures for Estimation of Total Energy Expenditure in Humans for Walking/Running Activities.,2016,4,IEEE Access,,db/journals/access/access4.html#KimCK16,https://doi.org/10.1109/ACCESS.2016.2547948 +Dang Quang Hien,Handover Procedure and Algorithm in Vehicle to Infrastructure Visible Light Communication.,2017,5,IEEE Access,,db/journals/access/access5.html#HienY17,https://doi.org/10.1109/ACCESS.2017.2771199 +Zhejing Bao,Short-Term Line Maintenance Scheduling of Distribution Network With PV Penetration Considering Uncertainties.,2018,6,IEEE Access,,db/journals/access/access6.html#BaoGG18,https://doi.org/10.1109/ACCESS.2018.2838082 +Yi Han 0004,Improved Dual-Protected Ring Signature for Security and Privacy of Vehicular Communications in Vehicular Ad-Hoc Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#HanXWZLZ18,https://doi.org/10.1109/ACCESS.2018.2822806 +Ahmad Al-Omari,Solving Nonlinear Systems of First Order Ordinary Differential Equations Using a Galerkin Finite Element Method.,2013,1,IEEE Access,,db/journals/access/access1.html#Al-OmariSAT13,https://doi.org/10.1109/ACCESS.2013.2269192 +Dawen Xia,A Map Reduce-Based Nearest Neighbor Approach for Big-Data-Driven Traffic Flow Prediction.,2016,4,IEEE Access,,db/journals/access/access4.html#XiaLWLZ16,https://doi.org/10.1109/ACCESS.2016.2570021 +Changryoul Choi,Enhanced Blind Interleaver Parameters Estimation Algorithm for Noisy Environment.,2018,6,IEEE Access,,db/journals/access/access6.html#ChoiY18,https://doi.org/10.1109/ACCESS.2017.2754638 +Yuexiang Li,cC-GAN: A Robust Transfer-Learning Framework for HEp-2 Specimen Image Segmentation.,2018,6,IEEE Access,,db/journals/access/access6.html#LiS18,https://doi.org/10.1109/ACCESS.2018.2808938 +Maryam Amiri,SDN-Enabled Game-Aware Routing for Cloud Gaming Datacenter Network.,2017,5,IEEE Access,,db/journals/access/access5.html#AmiriSOS17,https://doi.org/10.1109/ACCESS.2017.2752643 +Qiang Zhang 0013,Finite-Time Stabilization for a Class of Non-Affine Nonlinear Systems With Input Saturation and Time-Varying Output Constraints.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangWX18,https://doi.org/10.1109/ACCESS.2018.2829835 +Fusheng Zhu,Beamforming Design for Downlink Non-Orthogonal Multiple Access Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhuLZWH18,https://doi.org/10.1109/ACCESS.2018.2797209 +Asadullah Shaikh,Overview of Slicing and Feedback Techniques for Efficient Verification of UML/OCL Class Diagrams.,2018,6,IEEE Access,,db/journals/access/access6.html#ShaikhW18,https://doi.org/10.1109/ACCESS.2018.2797695 +Yichuan Li,Radio Over Fiber Downlink Design for Spatial Modulation and Multi-Set Space-Time Shift-Keying.,2018,6,IEEE Access,,db/journals/access/access6.html#LiHEH18,https://doi.org/10.1109/ACCESS.2018.2821642 +Md Shipon Ali,Dynamic User Clustering and Power Allocation for Uplink and Downlink Non-Orthogonal Multiple Access (NOMA) Systems.,2016,4,IEEE Access,,db/journals/access/access4.html#AliTH16,https://doi.org/10.1109/ACCESS.2016.2604821 +Ruijin Sun,Destination-Aided Wireless Power Transfer in Energy-Limited Cognitive Relay Systems.,2016,4,IEEE Access,,db/journals/access/access4.html#SunWMW16,https://doi.org/10.1109/ACCESS.2016.2604391 +Mohammed Jama,Online Damping Strategy for Controlling Heaving Wave Energy Converters Using Three-Phase Bridge Boost Rectifier.,2017,5,IEEE Access,,db/journals/access/access5.html#JamaW17,https://doi.org/10.1109/ACCESS.2017.2700380 +Feng Zheng,An Efficient CSI Feedback Scheme for Dual-Polarized Massive MIMO.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhengCPLWFZ18,https://doi.org/10.1109/ACCESS.2018.2811838 +Guilu Wu,Improving Performance by a Dynamic Adaptive Success-Collision Backoff Algorithm for Contention-Based Vehicular Network.,2018,6,IEEE Access,,db/journals/access/access6.html#WuX18,https://doi.org/10.1109/ACCESS.2017.2783909 +Xinwei Liu,Mobility-Aware Coded Probabilistic Caching Scheme for MEC-Enabled Small Cell Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuZ0017,https://doi.org/10.1109/ACCESS.2017.2742555 +Ping Lou,A Comprehensive Assessment Approach to Evaluate the Trustworthiness of Manufacturing Services in Cloud Manufacturing Environment.,2018,6,IEEE Access,,db/journals/access/access6.html#LouYHYF18,https://doi.org/10.1109/ACCESS.2018.2837664 +Lokman Sboui,Energy-Efficient Power Allocation for MIMO-SVD Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#SbouiRA17,https://doi.org/10.1109/ACCESS.2017.2707550 +Ruben De Man,Upper-Bound on Dose Reduction in CT Reconstruction for Nodule Detection.,2016,4,IEEE Access,,db/journals/access/access4.html#ManWKOHP16,https://doi.org/10.1109/ACCESS.2016.2592941 +WeiYe Xu,Millimeter Wave Power Monitoring in EAST ECRH System.,2016,4,IEEE Access,,db/journals/access/access4.html#XuXLTWWWF16,https://doi.org/10.1109/ACCESS.2016.2611618 +Yunquan Dong,Capacity Region of Gaussian Multiple-Access Channels With Energy Harvesting and Energy Cooperation.,2017,5,IEEE Access,,db/journals/access/access5.html#DongCF17,https://doi.org/10.1109/ACCESS.2017.2665468 +Zhenni Feng,A Survey on Trajectory Data Mining: Techniques and Applications.,2016,4,IEEE Access,,db/journals/access/access4.html#FengZ16,https://doi.org/10.1109/ACCESS.2016.2553681 +Yunquan Gao,Construction of Optimal Trees for Maximizing Aggregation Information in Deadline- and Energy-Constrained Unreliable Wireless Sensor Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#GaoLLG18,https://doi.org/10.1109/ACCESS.2017.2788877 +Tianqing Zhou,Joint Cell Activation and Selection for Green Communications in Ultra-Dense Heterogeneous Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhouJLL18,https://doi.org/10.1109/ACCESS.2017.2780818 +Mian Guo,Optimal Scheduling of VMs in Queueing Cloud Computing Systems With a Heterogeneous Workload.,2018,6,IEEE Access,,db/journals/access/access6.html#GuoGK18,https://doi.org/10.1109/ACCESS.2018.2801319 +Shijia E,Entity Search Based on the Representation Learning Model With Different Embedding Strategies.,2017,5,IEEE Access,,db/journals/access/access5.html#EX17,https://doi.org/10.1109/ACCESS.2017.2731761 +Yansheng Li,An Improved Design of Automatic-Identification-System-Based Man Overboard Device: A Multidisciplinary Product.,2018,6,IEEE Access,,db/journals/access/access6.html#LiCXYWG18,https://doi.org/10.1109/ACCESS.2018.2828399 +Fathey Mohammed,Cloud Computing Fitness for E-Government Implementation: Importance-Performance Analysis.,2018,6,IEEE Access,,db/journals/access/access6.html#MohammedAAI18,https://doi.org/10.1109/ACCESS.2017.2778093 +Xiaogang Deng,Nonlinear Multimode Industrial Process Fault Detection Using Modified Kernel Principal Component Analysis.,2017,5,IEEE Access,,db/journals/access/access5.html#DengZW17,https://doi.org/10.1109/ACCESS.2017.2764518 +Guang Han,Adapting Dynamic Appearance for Robust Visual Tracking.,2017,5,IEEE Access,,db/journals/access/access5.html#HanLLSL17,https://doi.org/10.1109/ACCESS.2017.2743108 +Tian-Tian Zhang,Density-Based Multiscale Analysis for Clustering in Strong Noise Settings With Varying Densities.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangY18a,https://doi.org/10.1109/ACCESS.2018.2836389 +Md Masud Rana 0001,Distributed State Estimation Using RSC Coded Smart Grid Communications.,2015,3,IEEE Access,,db/journals/access/access3.html#RanaLS15,https://doi.org/10.1109/ACCESS.2015.2467168 +Shenglong Yu,Novel Quasi-Decentralized SMC-Based Frequency and Voltage Stability Enhancement Strategies Using Valve Position Control and FACTS Device.,2017,5,IEEE Access,,db/journals/access/access5.html#YuCFSI17,https://doi.org/10.1109/ACCESS.2016.2622709 +Chonglin Gu,A Tree Regression-Based Approach for VM Power Metering.,2015,3,IEEE Access,,db/journals/access/access3.html#GuSSHJ15,https://doi.org/10.1109/ACCESS.2015.2430276 +Toufique Ahmed Soomro,Impact of ICA-Based Image Enhancement Technique on Retinal Blood Vessels Segmentation.,2018,6,IEEE Access,,db/journals/access/access6.html#SoomroKKGPZ18,https://doi.org/10.1109/ACCESS.2018.2794463 +Xing Zhang 0005,Parameter Estimation for Multi-Scale Multi-Lag Underwater Acoustic Channels Based on Modified Particle Swarm Optimization Algorithm.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangSLY17,https://doi.org/10.1109/ACCESS.2017.2681101 +Hongjiu Yang,Adaptive Control for Large-Scale Nonlinear Systems With Time Delays and Unmodeled Dynamics.,2017,5,IEEE Access,,db/journals/access/access5.html#YangWY17,https://doi.org/10.1109/ACCESS.2016.2622281 +Shijie Wang,Secure User Association in Two-Tier Heterogeneous Cellular Networks With In-Band Interference.,2018,6,IEEE Access,,db/journals/access/access6.html#WangGDSZ18,https://doi.org/10.1109/ACCESS.2018.2852727 +Shiqi Tao,Transient Behavior Analysis of Offshore Wind Turbines During Lightning Strike to Multi-Blade.,2018,6,IEEE Access,,db/journals/access/access6.html#TaoZWY18,https://doi.org/10.1109/ACCESS.2018.2828043 +Wei Liu 0063,Pinning Group Consensus-Based Distributed Coordination Control for Active Distribution Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuGHCY18,https://doi.org/10.1109/ACCESS.2017.2782817 +Feilin Han,Saliency Detection Method Using Hypergraphs on Adaptive Multiscales.,2018,6,IEEE Access,,db/journals/access/access6.html#HanHH18,https://doi.org/10.1109/ACCESS.2018.2797880 +Chunhua Zhu,Distance Attenuation-Based Elliptical Weighting-g Model in Radio Tomography Imaging.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhuC18,https://doi.org/10.1109/ACCESS.2018.2848720 +Tianqi Mao,Zero-Padded Orthogonal Frequency Division Multiplexing with Index Modulation Using Multiple Constellation Alphabets.,2017,5,IEEE Access,,db/journals/access/access5.html#MaoWQW17,https://doi.org/10.1109/ACCESS.2017.2756659 +Konpal Shaukat Ali,Non-Orthogonal Multiple Access for Large-Scale 5G Networks: Interference Aware Design.,2017,5,IEEE Access,,db/journals/access/access5.html#AliECA17,https://doi.org/10.1109/ACCESS.2017.2753380 +Jia You,Security and Reliability Performance Analysis for Cloud Radio Access Networks With Channel Estimation Errors.,2014,2,IEEE Access,,db/journals/access/access2.html#YouZWA14,https://doi.org/10.1109/ACCESS.2014.2370391 +Chao Wu 0003,Graph-Based Data Gathering Scheme in WSNs With a Mobility-Constrained Mobile Sink.,2017,5,IEEE Access,,db/journals/access/access5.html#WuLWFT17,https://doi.org/10.1109/ACCESS.2017.2742138 +Xu Qi,Real-Time Online Tracking via a Convolution-Based Complementary Model.,2018,6,IEEE Access,,db/journals/access/access6.html#QiWZT18,https://doi.org/10.1109/ACCESS.2018.2841030 +Rajwa Alharthi,A Dataset for Psychological Human Needs Detection From Social Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#AlharthiGGE17,https://doi.org/10.1109/ACCESS.2017.2706084 +Naresh Vemishetty,Low Power Personalized ECG Based System Design Methodology for Remote Cardiac Health Monitoring.,2016,4,IEEE Access,,db/journals/access/access4.html#VemishettyPJCVJ16,https://doi.org/10.1109/ACCESS.2016.2629486 +Yibo Yang,Joint Optimization of Energy Consumption and Packet Scheduling for Mobile Edge Computing in Cyber-Physical Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#YangMXGZ18,https://doi.org/10.1109/ACCESS.2018.2810115 +Dapeng Li 0001,Joint Access Spectrum and Backhaul Energy Allocation for Green Cognitive Heterogeneous Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#LiDXGZ18,https://doi.org/10.1109/ACCESS.2018.2794520 +Debdeep Banerjee,Robotic Arm-Based Face Recognition Software Test Automation.,2018,6,IEEE Access,,db/journals/access/access6.html#BanerjeeY18,https://doi.org/10.1109/ACCESS.2018.2854754 +Albert Rego,An Intelligent System for Video Surveillance in IoT Environments.,2018,6,IEEE Access,,db/journals/access/access6.html#RegoCJL18,https://doi.org/10.1109/ACCESS.2018.2842034 +Zhen Xue,Device-to-Device Communications Underlying UAV-Supported Social Networking.,2018,6,IEEE Access,,db/journals/access/access6.html#XueWDWLT18,https://doi.org/10.1109/ACCESS.2018.2849440 +Pimmy Gandotra,Green Communication in Next Generation Cellular Networks: A Survey.,2017,5,IEEE Access,,db/journals/access/access5.html#GandotraJJ17,https://doi.org/10.1109/ACCESS.2017.2711784 +Chengqiang Liu,Electro-Hydraulic Servo Plate-Inclined Plunger Hydraulic Transformer.,2016,4,IEEE Access,,db/journals/access/access4.html#LiuLLYZQ16,https://doi.org/10.1109/ACCESS.2016.2628355 +Omer Narmanlioglu,Service-Aware Multi-Resource Allocation in Software-Defined Next Generation Cellular Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#NarmanliogluZA18,https://doi.org/10.1109/ACCESS.2018.2818751 +Mingquan Qiu,Remaining Useful Life Estimation for Rolling Bearing With SIOS-Based Indicator and Particle Filtering.,2018,6,IEEE Access,,db/journals/access/access6.html#QiuLJZ18,https://doi.org/10.1109/ACCESS.2018.2831455 +Mohamed Ben Brahim,QoS-Aware Video Transmission Over Hybrid Wireless Network for Connected Vehicles.,2017,5,IEEE Access,,db/journals/access/access5.html#BrahimMZFH17,https://doi.org/10.1109/ACCESS.2017.2682278 +Tri Gia Nguyen,Distributed Deployment Algorithm for Barrier Coverage in Mobile Sensor Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#NguyenS18,https://doi.org/10.1109/ACCESS.2018.2822263 +Dong Yang,A Novel Adaptive Spectrum Noise Cancellation Approach for Enhancing Heartbeat Rate Monitoring in a Wearable Device.,2018,6,IEEE Access,,db/journals/access/access6.html#YangCZXAYP18,https://doi.org/10.1109/ACCESS.2018.2805223 +Cong Liu 0011,A General Multiobjective Clustering Approach Based on Multiple Distance Measures.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuLPW18,https://doi.org/10.1109/ACCESS.2018.2860791 +Ahmed Hussain,Interpreting the Total Isotropic Sensitivity and Diversity Gain of LTE-Enabled Wireless Devices From Over-the-Air Throughput Measurements in Reverberation Chambers.,2015,3,IEEE Access,,db/journals/access/access3.html#HussainKG15,https://doi.org/10.1109/ACCESS.2015.2411393 +Xudong Wu,iBILL: Using iBeacon and Inertial Sensors for Accurate Indoor Localization in Large Open Areas.,2017,5,IEEE Access,,db/journals/access/access5.html#WuSFTLW17,https://doi.org/10.1109/ACCESS.2017.2726088 +Weiwei Zhang 0004,Concurrent Dual-Band Receiver Based on Novel Six-Port Correlator for Wireless Applications.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangHGHWL17,https://doi.org/10.1109/ACCESS.2017.2768364 +Jian Zhao,An Improved Binary Cuckoo Search Algorithm for Solving Unit Commitment Problems: Methodological Description.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaoLZGQ18,https://doi.org/10.1109/ACCESS.2018.2861319 +Junqing Zhang,Key Generation From Wireless Channels: A Review.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhangDMW16,https://doi.org/10.1109/ACCESS.2016.2521718 +Jianxin Jia,Towards Studying the Two-Tier Intra-Frequency X2 Handover Based on Software-Defined Open LTE Platform.,2018,6,IEEE Access,,db/journals/access/access6.html#JiaLHW18a,https://doi.org/10.1109/ACCESS.2018.2854820 +Qing Ai,A Multi-Class Classification Weighted Least Squares Twin Support Vector Hypersphere Using Local Density Information.,2018,6,IEEE Access,,db/journals/access/access6.html#AiWZWS18,https://doi.org/10.1109/ACCESS.2018.2815707 +Chao Liu 0008,CPCA: The Cloud Platform of Complex Virtual Instruments System Architecture.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuGFHJ17,https://doi.org/10.1109/ACCESS.2017.2682258 +Lina Zhou,Pulse-Based Distance Accumulation Localization Algorithm for Wireless Nanosensor Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhouHL17,https://doi.org/10.1109/ACCESS.2017.2732351 +Xinjiang Lu,Construction of Confidence Intervals for Distributed Parameter Processes Under Noise.,2018,6,IEEE Access,,db/journals/access/access6.html#LuCZY18,https://doi.org/10.1109/ACCESS.2018.2852002 +Chih-Lin I,Recent Progress on C-RAN Centralization and Cloudification.,2014,2,IEEE Access,,db/journals/access/access2.html#IHDCJL14,https://doi.org/10.1109/ACCESS.2014.2351411 +Chi-Hua Chen,Vehicle Localization and Velocity Estimation Based on Mobile Phone Sensing.,2016,4,IEEE Access,,db/journals/access/access4.html#ChenLL16,https://doi.org/10.1109/ACCESS.2016.2530806 +Ngoc Thien Le,A Data Imputation Model in Phasor Measurement Units Based on Bagged Averaging of Multiple Linear Regression.,2018,6,IEEE Access,,db/journals/access/access6.html#LeB18,https://doi.org/10.1109/ACCESS.2018.2856768 +Benliang Hao,A Study of the Properties of a Piezoelectric Ceramic Plate in the Symmetric Fixation Mode.,2018,6,IEEE Access,,db/journals/access/access6.html#HaoZZZL18,https://doi.org/10.1109/ACCESS.2018.2852796 +Pengjiang Qian,Multi-View Maximum Entropy Clustering by Jointly Leveraging Inter-View Collaborations and Intra-View-Weighted Attributes.,2018,6,IEEE Access,,db/journals/access/access6.html#QianZJLZWSM18,https://doi.org/10.1109/ACCESS.2018.2825352 +Fei Wang 0019,GNSS Spoofing Countermeasure With a Single Rotating Antenna.,2017,5,IEEE Access,,db/journals/access/access5.html#WangLL17,https://doi.org/10.1109/ACCESS.2017.2698070 +Jiyoung Woo,Contagion of Cheating Behaviors in Online Social Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#WooKKP18,https://doi.org/10.1109/ACCESS.2018.2834220 +Fangxiang Feng,Personalized Image Annotation Using Deep Architecture.,2017,5,IEEE Access,,db/journals/access/access5.html#FengLWLB17,https://doi.org/10.1109/ACCESS.2017.2764510 +Penglang Shui,SAR Image Edge Detection Robust to Isolated Strong Scatterers Using Anisotropic Morphological Directional Ratio Test.,2018,6,IEEE Access,,db/journals/access/access6.html#ShuiF18,https://doi.org/10.1109/ACCESS.2018.2853191 +Chenjia Wei,Soft Iterative Quantum Receivers Approaching the Helstrom Limit Using Realistic Quantum Devices.,2018,6,IEEE Access,,db/journals/access/access6.html#WeiZWTH18,https://doi.org/10.1109/ACCESS.2018.2802447 +Ningxiao Sun,Distributed and Dynamic Resource Management for Wireless Service Delivery to High-Speed Trains.,2017,5,IEEE Access,,db/journals/access/access5.html#SunZSW17,https://doi.org/10.1109/ACCESS.2016.2646461 +Wenson Chang,Energy Efficient Relay Matching With Bottleneck Effect Elimination Power Adjusting for Full-Duplex Relay Assisted D2D Networks Using mmWave Technology.,2018,6,IEEE Access,,db/journals/access/access6.html#ChangT18,https://doi.org/10.1109/ACCESS.2018.2796311 +Dongliang Xu,Massive Fishing Website URL Parallel Filtering Method.,2018,6,IEEE Access,,db/journals/access/access6.html#XuPDWLK18,https://doi.org/10.1109/ACCESS.2017.2782847 +Xiangfeng Dai,Trend Analysis of Fragmented Time Series for mHealth Apps: Hypothesis Testing Based Adaptive Spline Filtering Method With Importance Weighting.,2017,5,IEEE Access,,db/journals/access/access5.html#DaiB17,https://doi.org/10.1109/ACCESS.2017.2696502 +Tung-Kuan Liu,Solving Distributed and Flexible Job-Shop Scheduling Problems for a Real-World Fastener Manufacturer.,2014,2,IEEE Access,,db/journals/access/access2.html#LiuCC14a,https://doi.org/10.1109/ACCESS.2015.2388486 +Kai Wang 0003,Learning to Detect Local Overheating of the High-Power Microwave Heating Process With Deep Learning.,2018,6,IEEE Access,,db/journals/access/access6.html#WangMXLSYYL18,https://doi.org/10.1109/ACCESS.2018.2810266 +Wenchao Xu,Delay Analysis of In-Vehicle Internet Access Via On-Road WiFi Access Points.,2017,5,IEEE Access,,db/journals/access/access5.html#XuOZS17,https://doi.org/10.1109/ACCESS.2017.2669178 +Yongle Wu,A Planar Dual-Band Coupled-Line Balun With Impedance Transformation and High Isolation.,2016,4,IEEE Access,,db/journals/access/access4.html#WuYZWL16,https://doi.org/10.1109/ACCESS.2016.2640187 +Jun Li 0004,A Commercial Video-Caching System for Small-Cell Cellular Networks Using Game Theory.,2016,4,IEEE Access,,db/journals/access/access4.html#LiSQSXX16,https://doi.org/10.1109/ACCESS.2016.2582836 +Guangyu Hu,Decoupling Analysis of a Six-Dimensional Force Sensor Bridge Fault.,2018,6,IEEE Access,,db/journals/access/access6.html#HuGCPS18,https://doi.org/10.1109/ACCESS.2017.2784485 +Ayesha Naz,PDOA Based Indoor Positioning Using Visible Light Communication.,2018,6,IEEE Access,,db/journals/access/access6.html#NazAUK18,https://doi.org/10.1109/ACCESS.2018.2796623 +Deeb Tubail,Artificial Noise-Based Physical-Layer Security in Interference Alignment Multipair Two-Way Relaying Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#TubailEIMK18,https://doi.org/10.1109/ACCESS.2018.2817264 +Atef Ibrahim,Efficient Scalable Digit-Serial Inverter Over GF( $2^{m}$ ) for Ultra-Low Power Devices.,2016,4,IEEE Access,,db/journals/access/access4.html#IbrahimAG16,https://doi.org/10.1109/ACCESS.2016.2639039 +Long Nguyen Hoang,Event-Driven Trust Refreshment on Ambient Services.,2017,5,IEEE Access,,db/journals/access/access5.html#HoangLJPUL17,https://doi.org/10.1109/ACCESS.2017.2677917 +Ke Yu,Positive and Unlabeled Learning for User Behavior Analysis Based on Mobile Internet Traffic Data.,2018,6,IEEE Access,,db/journals/access/access6.html#YuLQWC18,https://doi.org/10.1109/ACCESS.2018.2852008 +Muhammad Sadiq Khan,Virtual Community Detection Through the Association between Prime Nodes in Online Social Networks and Its Application to Ranking Algorithms.,2016,4,IEEE Access,,db/journals/access/access4.html#KhanWHMDA16,https://doi.org/10.1109/ACCESS.2016.2639563 +Tiefeng Gao,A Dynamic Model and Modified One-Cycle Control of Three-Level Front-End Rectifier for Neutral Point Voltage Balance.,2017,5,IEEE Access,,db/journals/access/access5.html#GaoZZZ17,https://doi.org/10.1109/ACCESS.2017.2668398 +Aini Dai,Intelligent Modeling Method for a Combined Radiation-Convection Grain Dryer: A Support Vector Regression Algorithm Based on an Improved Particle Swarm Optimization Algorithm.,2018,6,IEEE Access,,db/journals/access/access6.html#DaiZDSW18,https://doi.org/10.1109/ACCESS.2018.2806370 +Junchao Huang,A New Contactless Method for Velocity Measurement of Bubble and Slug in Millimeter-Scale Pipelines.,2017,5,IEEE Access,,db/journals/access/access5.html#HuangJHWL17,https://doi.org/10.1109/ACCESS.2017.2713809 +Abdurhman Albasir,SMoW: An Energy-Bandwidth Aware Web Browsing Technique for Smartphones.,2014,2,IEEE Access,,db/journals/access/access2.html#AlbasirN14,https://doi.org/10.1109/ACCESS.2014.2365091 +Irfan Khan,Compressive Sensing-Based Optimal Reactive Power Control of a Multi-Area Power System.,2017,5,IEEE Access,,db/journals/access/access5.html#KhanXKS17,https://doi.org/10.1109/ACCESS.2017.2752178 +Chung-Dann Kan,Handmade Trileaflet Valve Design and Validation for Pulmonary Valved Conduit Reconstruction Using Taguchi Method and Cascade Correlation Machine Learning Model.,2018,6,IEEE Access,,db/journals/access/access6.html#KanCLWLCW18,https://doi.org/10.1109/ACCESS.2017.2782686 +Zhe Xu 0004,Robot Simulations Based on Bipedal Spring-Mass Model With Variable Slack Length and Stiffness.,2017,5,IEEE Access,,db/journals/access/access5.html#XuG17,https://doi.org/10.1109/ACCESS.2017.2652128 +Xinping Xu,Optimizing the Cost-Performance Tradeoff for Coflows Across Geo-Distributed Datacenters.,2018,6,IEEE Access,,db/journals/access/access6.html#XuLLQJ18,https://doi.org/10.1109/ACCESS.2018.2832099 +Mirmojtaba Gharibi,Internet of Drones.,2016,4,IEEE Access,,db/journals/access/access4.html#GharibiBW16,https://doi.org/10.1109/ACCESS.2016.2537208 +A. S. M. Zadid Shifat,Game-Based Approach for QoS Provisioning and Interference Management in Heterogeneous Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ShifatCJ18,https://doi.org/10.1109/ACCESS.2017.2704094 +Sumona Mukhopadhyay,Blind System Identification Using Symbolic Dynamics.,2018,6,IEEE Access,,db/journals/access/access6.html#MukhopadhyayL18,https://doi.org/10.1109/ACCESS.2018.2832616 +Younghak Shin,Automatic Colon Polyp Detection Using Region Based Deep CNN and Post Learning Approaches.,2018,6,IEEE Access,,db/journals/access/access6.html#ShinQABB18,https://doi.org/10.1109/ACCESS.2018.2856402 +Zenghui Wei,A Joint Reconstruction and Segmentation Method for Limited-Angle X-Ray Tomography.,2018,6,IEEE Access,,db/journals/access/access6.html#WeiLDW18,https://doi.org/10.1109/ACCESS.2018.2800719 +Yong-Lin Kuo,Pose Determination of a Robot Manipulator Based on Monocular Vision.,2016,4,IEEE Access,,db/journals/access/access4.html#KuoLW16,https://doi.org/10.1109/ACCESS.2016.2633378 +Kamran Siddique,Apache Hama: An Emerging Bulk Synchronous Parallel Computing Framework for Big Data Applications.,2016,4,IEEE Access,,db/journals/access/access4.html#SiddiqueAYJDK16,https://doi.org/10.1109/ACCESS.2016.2631549 +Jian-hua Qiao,Compressive Data Gathering Based on Even Clustering for Wireless Sensor Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#QiaoZ18a,https://doi.org/10.1109/ACCESS.2018.2832626 +Changsheng Yu,Uplink Scheduling and Link Adaptation for Narrowband Internet of Things Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#YuYWHL17,https://doi.org/10.1109/ACCESS.2017.2664418 +Yingbin Liu,Interference Management in Cache-Enabled Stochastic Networks: A Content Diversity Approach.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuYYXCL17,https://doi.org/10.1109/ACCESS.2017.2669958 +Nhu-Ngoc Dao,Adaptive Resource Balancing for Serviceability Maximization in Fog Radio Access Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#DaoLVPKCCK17,https://doi.org/10.1109/ACCESS.2017.2712138 +N. B. Gayathri,Efficient Pairing-Free Certificateless Authentication Scheme With Batch Verification for Vehicular Ad-Hoc Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#GayathriGRR18,https://doi.org/10.1109/ACCESS.2018.2845464 +Anush Sankaran,Latent fingerprint matching: A survey.,2014,2,IEEE Access,,db/journals/access/access2.html#SankaranVS14,https://doi.org/10.1109/ACCESS.2014.2349879 +Zhaoli Liu,An Integrated Method for Anomaly Detection From Massive System Logs.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuQGJW18,https://doi.org/10.1109/ACCESS.2018.2843336 +Zhanshan Zhao,H∞ Synchronization for Uncertain Time-Delay Chaotic Systems With One-Sided Lipschitz Nonlinearity.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaoLZD18,https://doi.org/10.1109/ACCESS.2018.2817617 +Xi Wu 0006,Robust Design Method for the SSDC of a DFIG Based on the Practical Small-Signal Stability Region Considering Multiple Uncertainties.,2018,6,IEEE Access,,db/journals/access/access6.html#WuNYYT18,https://doi.org/10.1109/ACCESS.2018.2802698 +Bin Han 0004,Slice as an Evolutionary Service: Genetic Optimization for Inter-Slice Resource Management in 5G Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#HanJS18,https://doi.org/10.1109/ACCESS.2018.2846543 +Pengbin Feng,A Novel Dynamic Android Malware Detection System With Ensemble Learning.,2018,6,IEEE Access,,db/journals/access/access6.html#FengMSXM18,https://doi.org/10.1109/ACCESS.2018.2844349 +Honghui Xu,Dependent Evidence Combination Based on Shearman Coefficient and Pearson Coefficient.,2018,6,IEEE Access,,db/journals/access/access6.html#XuD18,https://doi.org/10.1109/ACCESS.2017.2783320 +Oh-Jin Kwon,Improvement of JPEG XT Floating-Point HDR Image Coding Using Region Adaptive Prediction.,2018,6,IEEE Access,,db/journals/access/access6.html#KwonCS18,https://doi.org/10.1109/ACCESS.2018.2793228 +Ryan Heartfield,You Are Probably Not the Weakest Link: Towards Practical Prediction of Susceptibility to Semantic Social Engineering Attacks.,2016,4,IEEE Access,,db/journals/access/access4.html#HeartfieldLG16,https://doi.org/10.1109/ACCESS.2016.2616285 +Murali Ravi,A Practical Design and Implementation of a Low-Cost Platform for Real-Time Diagnostic Imaging.,2017,5,IEEE Access,,db/journals/access/access5.html#RaviS17,https://doi.org/10.1109/ACCESS.2017.2765184 +Haibin Duan,Unmanned Aerial Vehicle Distributed Formation Rotation Control Inspired by Leader-Follower Reciprocation of Migrant Birds.,2018,6,IEEE Access,,db/journals/access/access6.html#DuanQ18,https://doi.org/10.1109/ACCESS.2018.2815664 +Olayinka Olaolu Ogundile,A Low Complexity Iterative Channel Estimation and Decoding Receiver Based on Reed-Solomon PTA.,2016,4,IEEE Access,,db/journals/access/access4.html#OgundileV16,https://doi.org/10.1109/ACCESS.2016.2633285 +Urmita Sikder,Optimization of Idealized Quantum Dot Intermediate Band Solar Cells Considering Spatial Variation of Generation Rates.,2013,1,IEEE Access,,db/journals/access/access1.html#SikderH13,https://doi.org/10.1109/ACCESS.2013.2265094 +Zhewei Zhang,A New Rate Control Scheme For Video Coding Based On Region Of Interest.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangJHXZ17,https://doi.org/10.1109/ACCESS.2017.2676125 +Yun Shao,Heuristic Optimization for Reliable Data Congestion Analytics in Crowdsourced eHealth Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#ShaoWSDD16,https://doi.org/10.1109/ACCESS.2016.2646058 +Lei Shu 0001,IEEE Access Special Section Editorial: Industrial Sensor Networks With Advanced Data Management: Design And Security.,2015,3,IEEE Access,,db/journals/access/access3.html#ShuHHW15,https://doi.org/10.1109/ACCESS.2015.2497498 +Qingqing Dang,Multistage Angular Momentum Management for Space Station Attitude Control.,2018,6,IEEE Access,,db/journals/access/access6.html#DangJ18,https://doi.org/10.1109/ACCESS.2018.2811759 +Zi-Ye Gao,Femtosecond Pulses Generation From a Diode-Pumped Yb: CaNb2O6 Disordered Crystal Laser.,2017,5,IEEE Access,,db/journals/access/access5.html#GaoZWW17,https://doi.org/10.1109/ACCESS.2017.2774843 +Mohamed Mamdouh M. Ali,Low Loss and Ultra Flat Rectangular Waveguide Harmonic Coupler.,2018,6,IEEE Access,,db/journals/access/access6.html#AliSS18a,https://doi.org/10.1109/ACCESS.2018.2854189 +Jianfeng Zhu,mm-Wave High Gain Cavity-Backed Aperture-Coupled Patch Antenna Array.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhuCDZYL18,https://doi.org/10.1109/ACCESS.2018.2859835 +Imran Baig,A Precoding-Based Multicarrier Non-Orthogonal Multiple Access Scheme for 5G Cellular Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#Baig17,https://doi.org/10.1109/ACCESS.2017.2752804 +Dongmei Xu,Motion Planning of a Stepping-Wriggle Type Piezoelectric Actuator Operating in Bending Modes.,2016,4,IEEE Access,,db/journals/access/access4.html#XuLLSC16,https://doi.org/10.1109/ACCESS.2016.2570227 +Saishankar Katri Pulliyakode,Predicting the Affordable Rate in Interference-Limited Cellular Systems Using Higher-Order Markov Models.,2016,4,IEEE Access,,db/journals/access/access4.html#PulliyakodeKHG16,https://doi.org/10.1109/ACCESS.2016.2593897 +Zhenzhen Hu,Optimal Resource Allocation for Harvested Energy Maximization in Wideband Cognitive Radio Network With SWIPT.,2017,5,IEEE Access,,db/journals/access/access5.html#HuWZ17,https://doi.org/10.1109/ACCESS.2017.2737034 +Junaid Qadir,IEEE Access Special Section Editorial: Artificial Intelligence Enabled Networking.,2015,3,IEEE Access,,db/journals/access/access3.html#QadirYINV15,https://doi.org/10.1109/ACCESS.2015.2507798 +Nuno Leonor,A 2D Ray-Tracing Based Model for Wave Propagation Through Forests at Micro-and Millimeter Wave Frequencies.,2018,6,IEEE Access,,db/journals/access/access6.html#LeonorSFC18,https://doi.org/10.1109/ACCESS.2018.2836223 +Youxi Wu,NETASPNO: Approximate Strict Pattern Matching Under Nonoverlapping Condition.,2018,6,IEEE Access,,db/journals/access/access6.html#WuLLGW18,https://doi.org/10.1109/ACCESS.2018.2832209 +Affaq Qamar,High-Level Synthesis for Semi-Global Matching: Is the Juice Worth the Squeeze?,2017,5,IEEE Access,,db/journals/access/access5.html#QamarMGLL17,https://doi.org/10.1109/ACCESS.2016.2635378 +Yingxiang Liu,Development of a Four-Feet Driving Type Linear Piezoelectric Actuator Using Bolt-Clamped Transducers.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuCSTSX17,https://doi.org/10.1109/ACCESS.2017.2774258 +Hassan Malik,Radio Resource Management Scheme in NB-IoT Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#MalikPAMKI18,https://doi.org/10.1109/ACCESS.2018.2812299 +Ruben Mulero,An IoT-Aware Approach for Elderly-Friendly Cities.,2018,6,IEEE Access,,db/journals/access/access6.html#MuleroAAAWCPRS18,https://doi.org/10.1109/ACCESS.2018.2800161 +Beom Kwon,Effective Interference Nulling Virtual MIMO Broadcasting Transceiver for Multiple Relaying.,2017,5,IEEE Access,,db/journals/access/access5.html#KwonL17,https://doi.org/10.1109/ACCESS.2017.2752198 +Jeren Samandari-Rad,Power/Energy Minimization Techniques for Variability-Aware High-Performance 16-nm 6T-SRAM.,2016,4,IEEE Access,,db/journals/access/access4.html#Samandari-RadH16,https://doi.org/10.1109/ACCESS.2016.2521385 +Shuai Zhang 0003,Antenna Gain Impact on UWB Wind Turbine Blade Deflection Sensing.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangFBP18,https://doi.org/10.1109/ACCESS.2018.2819880 +Xiaohong Huang,Utility-Optimized Flow-Level Bandwidth Allocation in Hybrid SDNs.,2018,6,IEEE Access,,db/journals/access/access6.html#HuangYM18,https://doi.org/10.1109/ACCESS.2018.2820682 +Pengwu Wan,Accurate Estimation the Scanning Cycle of the Reconnaissance Radar Based on a Single Unmanned Aerial Vehicle.,2017,5,IEEE Access,,db/journals/access/access5.html#WanHLMZ17,https://doi.org/10.1109/ACCESS.2017.2762742 +Jianlin Xuan,Development of Hydraulically Driven Fatigue Testing Machine for Insulators.,2018,6,IEEE Access,,db/journals/access/access6.html#XuanW18,https://doi.org/10.1109/ACCESS.2017.2777103 +Caiping Guo,An Efficient Method for Improving the Dose-Volume-Based Optimization Plan Quality.,2017,5,IEEE Access,,db/journals/access/access5.html#GuoZGS17,https://doi.org/10.1109/ACCESS.2017.2695489 +Youngwook Kim,Hand Gesture Recognition Using Micro-Doppler Signatures With Convolutional Neural Network.,2016,4,IEEE Access,,db/journals/access/access4.html#KimT16,https://doi.org/10.1109/ACCESS.2016.2617282 +Ammar Gharaibeh,An Efficient Online Cache Replacement Algorithm for 5G Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#GharaibehHA18,https://doi.org/10.1109/ACCESS.2018.2856913 +Hua Fan,Exploiting Smallest Error to Calibrate Non-Linearity in SAR Adcs.,2018,6,IEEE Access,,db/journals/access/access6.html#FanLFDLZSH18,https://doi.org/10.1109/ACCESS.2018.2852729 +Seunghyoung Ryu,Gaussian Residual Bidding Based Coalition for Two-Settlement Renewable Energy Market.,2018,6,IEEE Access,,db/journals/access/access6.html#RyuBLK18,https://doi.org/10.1109/ACCESS.2018.2861868 +Xudong Liu,Combined Speed and Current Terminal Sliding Mode Control With Nonlinear Disturbance Observer for PMSM Drive.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuYYZ18,https://doi.org/10.1109/ACCESS.2018.2840521 +Yuzhen Huang,Secure Transmission in Spectrum Sharing MIMO Channels With Generalized Antenna Selection Over Nakagami- $m$ Channels.,2016,4,IEEE Access,,db/journals/access/access4.html#HuangADWC16,https://doi.org/10.1109/ACCESS.2016.2593012 +Yalin Wang 0003,A Novel Sliding Window PCA-IPF Based Steady-State Detection Framework and Its Industrial Application.,2018,6,IEEE Access,,db/journals/access/access6.html#0003SYCLK18,https://doi.org/10.1109/ACCESS.2018.2825451 +Ibraheem Shayea,Real Measurement Study for Rain Rate and Rain Attenuation Conducted Over 26 GHz Microwave 5G Link System in Malaysia.,2018,6,IEEE Access,,db/journals/access/access6.html#ShayeaRAI18,https://doi.org/10.1109/ACCESS.2018.2810855 +Daemin Shin,Secure and Efficient Protocol for Route Optimization in PMIPv6-Based Smart Home IoT Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#ShinSKKY17,https://doi.org/10.1109/ACCESS.2017.2710379 +Tianrui Zong,Rank-Based Image Watermarking Method With High Embedding Capacity and Robustness.,2016,4,IEEE Access,,db/journals/access/access4.html#ZongXGR16,https://doi.org/10.1109/ACCESS.2016.2556723 +Wen-Long Chin,Spectrum Sensor Employing Continuous Pilot Tones in Cognitive Radio Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#Chin17,https://doi.org/10.1109/ACCESS.2017.2694449 +Jussi Kiljander,Semantic Interoperability Architecture for Pervasive Computing and Internet of Things.,2014,2,IEEE Access,,db/journals/access/access2.html#KiljanderDMHTYSC14,https://doi.org/10.1109/ACCESS.2014.2347992 +Ishan Bhardwaj,Study of Imposter Attacks on Novel Fingerprint Dynamics Based Verification System.,2017,5,IEEE Access,,db/journals/access/access5.html#BhardwajLK17,https://doi.org/10.1109/ACCESS.2016.2646398 +Xingze He,A Distortion-Based Approach to Privacy-Preserving Metering in Smart Grids.,2013,1,IEEE Access,,db/journals/access/access1.html#HeZK13,https://doi.org/10.1109/ACCESS.2013.2260815 +Yun Ye,Wireless Video Surveillance: A Survey.,2013,1,IEEE Access,,db/journals/access/access1.html#YeCKLQ13,https://doi.org/10.1109/ACCESS.2013.2282613 +Mingqian Liu,Symbol Rates Estimation of Time-Frequency Overlapped MPSK Signals for Underlay Cognitive Radio Network.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuZL18,https://doi.org/10.1109/ACCESS.2018.2813989 +Guozhi Zhang,Combining Popularity and Locality to Enhance In-Network Caching Performance and Mitigate Pollution Attacks in Content-Centric Networking.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangLCC17,https://doi.org/10.1109/ACCESS.2017.2754058 +Vinh Pham-Xuan,Modified Multilevel Fast Multipole Algorithm for Stationary Iterative Solvers.,2015,3,IEEE Access,,db/journals/access/access3.html#Pham-XuanCB15,https://doi.org/10.1109/ACCESS.2015.2437876 +Shaofang Gong,Pushing the Wireless Data Rate to the Internet Speed.,2016,4,IEEE Access,,db/journals/access/access4.html#GongK16,https://doi.org/10.1109/ACCESS.2016.2631661 +Xue-rong Cui,Vehicle Positioning Using 5G Millimeter-Wave Systems.,2016,4,IEEE Access,,db/journals/access/access4.html#CuiGLZ16,https://doi.org/10.1109/ACCESS.2016.2615425 +Fangzhou Fu,Evaluation of Fault Diagnosability for Dynamic Systems With Unknown Uncertainties.,2018,6,IEEE Access,,db/journals/access/access6.html#FuWLL18,https://doi.org/10.1109/ACCESS.2018.2816167 +Qingneng Li,Glioma Segmentation With a Unified Algorithm in Multimodal MRI Images.,2018,6,IEEE Access,,db/journals/access/access6.html#LiGWXZZLL18,https://doi.org/10.1109/ACCESS.2018.2807698 +Xiaofeng Cao,Interactive Temporal Recurrent Convolution Network for Traffic Prediction in Data Centers.,2018,6,IEEE Access,,db/journals/access/access6.html#CaoZZWZZ18,https://doi.org/10.1109/ACCESS.2017.2787696 +Yu Zhang 0014,A Relay-Aided Transmission Power Control Method in Wireless Body Area Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangZ17,https://doi.org/10.1109/ACCESS.2017.2698158 +Hongfei Fan,A Novel DAL Scheme With Shared-Locking for Semantic Conflict Prevention in Unconstrained Real-Time Collaborative Programming.,2017,5,IEEE Access,,db/journals/access/access5.html#FanZLSS17,https://doi.org/10.1109/ACCESS.2017.2760914 +Xin Feng 0002,An Unequal Clustering Algorithm Concerned With Time-Delay for Internet of Things.,2018,6,IEEE Access,,db/journals/access/access6.html#FengZRG18,https://doi.org/10.1109/ACCESS.2018.2847036 +Jiansheng Guan,Robust Adaptive Tracking Control for Manipulators Based on a TSK Fuzzy Cerebellar Model Articulation Controller.,2018,6,IEEE Access,,db/journals/access/access6.html#GuanLJQZ18,https://doi.org/10.1109/ACCESS.2017.2779940 +Kevin S. Galloway,Torque Saturation in Bipedal Robotic Walking Through Control Lyapunov Function-Based Quadratic Programs.,2015,3,IEEE Access,,db/journals/access/access3.html#GallowaySAG15,https://doi.org/10.1109/ACCESS.2015.2419630 +Byungkyu Ahn,Low Complexity Syndrome-Based Decoding Algorithm Applied to Block Turbo Codes.,2018,6,IEEE Access,,db/journals/access/access6.html#AhnYH18,https://doi.org/10.1109/ACCESS.2018.2829087 +Ling Xing,Content Centric Network With Label Aided User Modeling and Cellular Partition.,2017,5,IEEE Access,,db/journals/access/access5.html#XingZLG17,https://doi.org/10.1109/ACCESS.2017.2720700 +Fuli Zhang,A Personalized Time-Sequence-Based Book Recommendation Algorithm for Digital Libraries.,2016,4,IEEE Access,,db/journals/access/access4.html#Zhang16,https://doi.org/10.1109/ACCESS.2016.2564997 +Wai Yan Yong,Flexible Convoluted Ring Shaped FSS for X-Band Screening Application.,2018,6,IEEE Access,,db/journals/access/access6.html#YongRHSSRE18,https://doi.org/10.1109/ACCESS.2018.2804091 +Fan Mo,Statistical Analysis of Surface Texture Performance With Provisions With Uncertainty in Texture Dimensions.,2017,5,IEEE Access,,db/journals/access/access5.html#MoSZK17,https://doi.org/10.1109/ACCESS.2017.2694608 +Yanhua Qu,Model-Free Cooperative Control for Multi-Agent Systems Using the Approximate Dynamic Programming Approach.,2018,6,IEEE Access,,db/journals/access/access6.html#QuWL18,https://doi.org/10.1109/ACCESS.2018.2849754 +Riste Stojanov,Linked Data Authorization Platform.,2018,6,IEEE Access,,db/journals/access/access6.html#StojanovGMT18,https://doi.org/10.1109/ACCESS.2017.2778029 +Farhan Mahmood,Experimental Validation of a Steady State Model Synthesis Method for a Three-Phase Unbalanced Active Distribution Network Feeder.,2018,6,IEEE Access,,db/journals/access/access6.html#MahmoodVPHSP18,https://doi.org/10.1109/ACCESS.2018.2792320 +Jianan Zhang,An Overview on Thermal Safety Issues of Lithium-ion Batteries for Electric Vehicle Application.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangZSW18,https://doi.org/10.1109/ACCESS.2018.2824838 +Qi Zhang,Magnetic Field Control for Haptic Display: System Design and Simulation.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhangDE16,https://doi.org/10.1109/ACCESS.2016.2514978 +Liyun Zuo,A Multi-Objective Hybrid Cloud Resource Scheduling Method Based on Deadline and Cost Constraints.,2017,5,IEEE Access,,db/journals/access/access5.html#ZuoSDCY17,https://doi.org/10.1109/ACCESS.2016.2633288 +Kuang-Pen Chou,Robust Feature-Based Automated Multi-View Human Action Recognition System.,2018,6,IEEE Access,,db/journals/access/access6.html#ChouPWSLLBLL18,https://doi.org/10.1109/ACCESS.2018.2809552 +Liang-Bi Chen,WristEye: Wrist-Wearable Devices and a System for Supporting Elderly Computer Learners.,2016,4,IEEE Access,,db/journals/access/access4.html#ChenLCTL16,https://doi.org/10.1109/ACCESS.2016.2553838 +Le Tong,Fabric Defect Detection for Apparel Industry: A Nonlocal Sparse Representation Approach.,2017,5,IEEE Access,,db/journals/access/access5.html#TongWK17,https://doi.org/10.1109/ACCESS.2017.2667890 +Huaqun Wang,Anonymous Data Sharing Scheme in Public Cloud and Its Application in E-Health Record.,2018,6,IEEE Access,,db/journals/access/access6.html#Wang18a,https://doi.org/10.1109/ACCESS.2018.2838095 +Long-jun Dong,A Multi-Step Source Localization Method With Narrowing Velocity Interval of Cyber-Physical Systems in Buildings.,2017,5,IEEE Access,,db/journals/access/access5.html#DongSHLW17,https://doi.org/10.1109/ACCESS.2017.2756855 +Fuqiang Yao,Cluster-Based Collaborative Spectrum Sensing for Energy Harvesting Cognitive Wireless Communication Network.,2017,5,IEEE Access,,db/journals/access/access5.html#YaoWCLL17,https://doi.org/10.1109/ACCESS.2017.2703630 +Ruizhi Li,An Efficient Local Search for the Maximum Edge Weighted Clique Problem.,2018,6,IEEE Access,,db/journals/access/access6.html#LiWLWY18,https://doi.org/10.1109/ACCESS.2018.2799953 +Al-Abbass Al-Habashneh,The Effect of Radar Ocean Surface Sampling on Wave Spectrum Estimation Using X-Band Marine Radar.,2018,6,IEEE Access,,db/journals/access/access6.html#Al-HabashnehMGH18,https://doi.org/10.1109/ACCESS.2018.2821564 +Zengfu Wang,Application of the Fast Marching Method for Path Planning of Long-haul Optical Fiber Cables With Shielding.,2018,6,IEEE Access,,db/journals/access/access6.html#WangWMZ18,https://doi.org/10.1109/ACCESS.2018.2854581 +Fazle Karim,LSTM Fully Convolutional Networks for Time Series Classification.,2018,6,IEEE Access,,db/journals/access/access6.html#KarimMDC18,https://doi.org/10.1109/ACCESS.2017.2779939 +Gerardo De J. Martinez-Figueroa,FPGA-Based Smart Sensor for Detection and Classification of Power Quality Disturbances Using Higher Order Statistics.,2017,5,IEEE Access,,db/journals/access/access5.html#Martinez-Figueroa17,https://doi.org/10.1109/ACCESS.2017.2732726 +Abhijit Suprem,Orientation and Displacement Detection for Smartphone Device Based IMUs.,2017,5,IEEE Access,,db/journals/access/access5.html#SupremDE17,https://doi.org/10.1109/ACCESS.2016.2631000 +Ganlin Zhao,An EMD Based Sense-Through-Foliage Target Detection UWB Radar Sensor Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaoLD18a,https://doi.org/10.1109/ACCESS.2018.2841900 +Tiku Yu,Design of Length-Saving Multiway Wilkinson Power Dividers.,2018,6,IEEE Access,,db/journals/access/access6.html#Yu18,https://doi.org/10.1109/ACCESS.2018.2814053 +Hao Fu,Market Equilibrium in Active Distribution System With andmicro*VPPs: A Coevolutionary Approach.,2017,5,IEEE Access,,db/journals/access/access5.html#FuZ17,https://doi.org/10.1109/ACCESS.2017.2691316 +Renwei Zhang,Detection of Composite Operation in Model Management.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangQSLY17,https://doi.org/10.1109/ACCESS.2017.2649565 +Yun-Qing Shi,Reversible Data Hiding: Advances in the Past Two Decades.,2016,4,IEEE Access,,db/journals/access/access4.html#ShiLZWM16,https://doi.org/10.1109/ACCESS.2016.2573308 +Lingling Yu,A Robust Finite-Time Output Feedback Control Scheme for Marine Surface Vehicles Formation.,2018,6,IEEE Access,,db/journals/access/access6.html#YuF18,https://doi.org/10.1109/ACCESS.2018.2857620 +Shin-Young Ahn,Soft Memory Box: A Virtual Shared Memory Framework for Fast Deep Neural Network Training in Distributed High Performance Computing.,2018,6,IEEE Access,,db/journals/access/access6.html#AhnKLK18,https://doi.org/10.1109/ACCESS.2018.2834146 +Takahiro Hara,Dummy-Based User Location Anonymization Under Real-World Constraints.,2016,4,IEEE Access,,db/journals/access/access4.html#HaraSIAX16,https://doi.org/10.1109/ACCESS.2016.2526060 +Muhammad Aslam,A New Control Chart for Monitoring Reliability Using Sudden Death Testing Under Weibull Distribution.,2017,5,IEEE Access,,db/journals/access/access5.html#AslamAJ17,https://doi.org/10.1109/ACCESS.2017.2764953 +Gang Zhong,Spatially Adaptive Tensor Total Variation-Tikhonov Model for Depth Image Super Resolution.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhongXZY17,https://doi.org/10.1109/ACCESS.2017.2715981 +Ahmad Nauman Ghazi,Levels of Exploration in Exploratory Testing: From Freestyle to Fully Scripted.,2018,6,IEEE Access,,db/journals/access/access6.html#GhaziPBR18,https://doi.org/10.1109/ACCESS.2018.2834957 +Min Jia,A Novel Hybrid Access Protocol Based on Traffic Priority in Space-Based Network.,2018,6,IEEE Access,,db/journals/access/access6.html#JiaJGJGZ18,https://doi.org/10.1109/ACCESS.2018.2823303 +Chonglin Gu,Power Metering for Virtual Machine in Cloud Computing-Challenges and Opportunities.,2014,2,IEEE Access,,db/journals/access/access2.html#GuHJ14,https://doi.org/10.1109/ACCESS.2014.2358992 +Juan Li 0004,A Decentralized Trustworthy Context and QoS-Aware Service Discovery Framework for the Internet of Things.,2017,5,IEEE Access,,db/journals/access/access5.html#LiBZL17,https://doi.org/10.1109/ACCESS.2017.2756446 +Youping Fan,A Method for Identifying Critical Elements of a Cyber-Physical System Under Data Attack.,2018,6,IEEE Access,,db/journals/access/access6.html#FanLZ18,https://doi.org/10.1109/ACCESS.2018.2812812 +Tianze Li,An Overhead-Optimizing Task Scheduling Strategy for Ad-hoc Based Mobile Edge Computing.,2017,5,IEEE Access,,db/journals/access/access5.html#TianzeMMW17,https://doi.org/10.1109/ACCESS.2017.2678102 +Yi-Chen Chen,Dictionary-Based Face and Person Recognition From Unconstrained Video.,2015,3,IEEE Access,,db/journals/access/access3.html#ChenPPC15,https://doi.org/10.1109/ACCESS.2015.2485400 +Refik çaglar Kizilirmak,Centralized Light Access Network (C-LiAN): A Novel Paradigm for Next Generation Indoor VLC Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#KizilirmakNU17,https://doi.org/10.1109/ACCESS.2017.2752208 +Haihan Sun,A Wideband Base Station Antenna Element With Stable Radiation Pattern and Reduced Beam Squint.,2017,5,IEEE Access,,db/journals/access/access5.html#SunDJG17,https://doi.org/10.1109/ACCESS.2017.2763177 +Biao Sun,A Deep Learning Framework of Quantized Compressed Sensing for Wireless Neural Recording.,2016,4,IEEE Access,,db/journals/access/access4.html#SunFCZ16,https://doi.org/10.1109/ACCESS.2016.2604397 +Xing Xu,Non-Linear Matrix Completion for Social Image Tagging.,2017,5,IEEE Access,,db/journals/access/access5.html#XuHLST17,https://doi.org/10.1109/ACCESS.2016.2624267 +Hong Yu,DNN Filter Bank Cepstral Coefficients for Spoofing Detection.,2017,5,IEEE Access,,db/journals/access/access5.html#YuTZMG17,https://doi.org/10.1109/ACCESS.2017.2687041 +Mario Ramirez-Neria,On the Robust Trajectory Tracking Task for Flexible-Joint Robotic Arm With Unmodeled Dynamics.,2016,4,IEEE Access,,db/journals/access/access4.html#Ramirez-NeriaOL16,https://doi.org/10.1109/ACCESS.2016.2618373 +Jing Chen 0010,Road Object Detection Using a Disparity-Based Fusion Model.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenXPBXL18,https://doi.org/10.1109/ACCESS.2018.2825229 +Bin Shi,Vanguard: A Cache-Level Sensitive File Integrity Monitoring System in Virtual Machine Environment.,2018,6,IEEE Access,,db/journals/access/access6.html#ShiLCO18,https://doi.org/10.1109/ACCESS.2018.2851192 +Haider Ali,Novel Approach to Non-Invasive Blood Glucose Monitoring Based on Transmittance and Refraction of Visible Laser Light.,2017,5,IEEE Access,,db/journals/access/access5.html#AliBJ17,https://doi.org/10.1109/ACCESS.2017.2707384 +Libao Deng,DE-RCO: Rotating Crossover Operator With Multiangle Searching Strategy for Adaptive Differential Evolution.,2018,6,IEEE Access,,db/journals/access/access6.html#DengWQZ18,https://doi.org/10.1109/ACCESS.2017.2786347 +Hongjiao Niu,Almost-Global Formation Tracking Control for Multiple Vehicles With Disturbance Rejection.,2018,6,IEEE Access,,db/journals/access/access6.html#NiuG18,https://doi.org/10.1109/ACCESS.2018.2820718 +Sadia Din,Service Orchestration of Optimizing Continuous Features in Industrial Surveillance Using Big Data Based Fog-Enabled Internet of Things.,2018,6,IEEE Access,,db/journals/access/access6.html#DinPAGR18,https://doi.org/10.1109/ACCESS.2018.2800758 +Jalal Al-Muhtadi,A Critical Analysis of Mobility Management Related Issues of Wireless Sensor Networks in Cyber Physical Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#Al-MuhtadiQZCSD18,https://doi.org/10.1109/ACCESS.2018.2812741 +Shouyi Yin,Multi-Bank Memory Aware Force Directed Scheduling for High-Level Synthesis.,2018,6,IEEE Access,,db/journals/access/access6.html#YinLYXLW18,https://doi.org/10.1109/ACCESS.2018.2798586 +Muhammad Qasim Pasta,Topology of Complex Networks and Performance Limitations of Community Detection Algorithms.,2017,5,IEEE Access,,db/journals/access/access5.html#PastaZ17,https://doi.org/10.1109/ACCESS.2017.2714018 +Ahsan Adeel,Resource Management and Inter-Cell-Interference Coordination in LTE Uplink System Using Random Neural Network and Optimization.,2015,3,IEEE Access,,db/journals/access/access3.html#AdeelLA15,https://doi.org/10.1109/ACCESS.2015.2489865 +Sebastiao E. Alves Filho,NPi-Cluster: A Low Power Energy-Proportional Computing Cluster Architecture.,2017,5,IEEE Access,,db/journals/access/access5.html#FilhoBAG17,https://doi.org/10.1109/ACCESS.2017.2728720 +Juan Luo,Reliable Virtual Machine Placement Based on Multi-Objective Optimization With Traffic-Aware Algorithm in Industrial Cloud.,2018,6,IEEE Access,,db/journals/access/access6.html#LuoSY18,https://doi.org/10.1109/ACCESS.2018.2816983 +Feng Shu 0002,Robust Synthesis Scheme for Secure Multi-Beam Directional Modulation in Broadcasting Systems.,2016,4,IEEE Access,,db/journals/access/access4.html#ShuWLCV16,https://doi.org/10.1109/ACCESS.2016.2614825 +Si-Ya Xu,Fiber-Wireless Network Virtual Resource Embedding Method Based on Load Balancing and Priority.,2018,6,IEEE Access,,db/journals/access/access6.html#XuLGQ18,https://doi.org/10.1109/ACCESS.2018.2848919 +Shuning Zhang,Combined Eigenvector Analysis and Independent Component Analysis For Multi-Component Periodic Interferences Suppression In PRCPM-PD Detection System.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangXZZ17,https://doi.org/10.1109/ACCESS.2017.2720589 +Xin Liu 0022,A Distributed Video Management Cloud Platform Using Hadoop.,2015,3,IEEE Access,,db/journals/access/access3.html#LiuZXZYC15,https://doi.org/10.1109/ACCESS.2015.2507788 +Xiaojuan Ding,A Robust Online Saccadic Eye Movement Recognition Method Combining Electrooculography and Video.,2017,5,IEEE Access,,db/journals/access/access5.html#DingLZGZ17,https://doi.org/10.1109/ACCESS.2017.2750701 +Adel Y. I. Ashyap,Inverted E-Shaped Wearable Textile Antenna for Medical Applications.,2018,6,IEEE Access,,db/journals/access/access6.html#AshyapADMAKOAN18,https://doi.org/10.1109/ACCESS.2018.2847280 +Zhaoxu Wang,R2T: A Rapid and Reliable Hop-by-Hop Transport Mechanism for Information-Centric Networking.,2018,6,IEEE Access,,db/journals/access/access6.html#WangLZL18,https://doi.org/10.1109/ACCESS.2018.2808296 +Yu-Xiang Zhao,A Real-Time Bicycle Record System of Ground Conditions Based on Internet of Things.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhaoSC17,https://doi.org/10.1109/ACCESS.2017.2740419 +Xiaoxu Liu,Robust Fault Tolerant Control for Discrete-Time Dynamic Systems With Applications to Aero Engineering Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuGZ18,https://doi.org/10.1109/ACCESS.2018.2817548 +Zheng Wang 0034,Deep Learning-Based Intrusion Detection With Adversaries.,2018,6,IEEE Access,,db/journals/access/access6.html#Wang18b,https://doi.org/10.1109/ACCESS.2018.2854599 +R. Marimuthu,Design and Analysis of Multiplier Using Approximate 15-4 Compressor.,2017,5,IEEE Access,,db/journals/access/access5.html#MarimuthuRM17,https://doi.org/10.1109/ACCESS.2016.2636128 +Kentaroh Toyoda,Novel Unsupervised SPITters Detection Scheme by Automatically Solving Unbalanced Situation.,2017,5,IEEE Access,,db/journals/access/access5.html#ToyodaPOO17,https://doi.org/10.1109/ACCESS.2016.2642978 +Zhenyu Na,Turbo Receiver Channel Estimation for GFDM-Based Cognitive Radio Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#NaPXLLWF18,https://doi.org/10.1109/ACCESS.2018.2803742 +Hector Perez-Morago,Efficient Identification of Core and Dead Features in Variability Models.,2015,3,IEEE Access,,db/journals/access/access3.html#Perez-MoragoHFB15,https://doi.org/10.1109/ACCESS.2015.2498764 +Lilian del Consuelo Hernandez Ruiz Gaytan,Dynamic Scheduling for High Throughput Satellites Employing Priority Code Scheme.,2015,3,IEEE Access,,db/journals/access/access3.html#GaytanP0S15,https://doi.org/10.1109/ACCESS.2015.2495226 +Umer Akram,An Improved Optimal Sizing Methodology for Future Autonomous Residential Smart Power Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#AkramKS18,https://doi.org/10.1109/ACCESS.2018.2792451 +Eduardo Hernandez-Marquez,A DC/DC Buck-Boost Converter-Inverter-DC Motor System: Sensorless Passivity-Based Control.,2018,6,IEEE Access,,db/journals/access/access6.html#Hernandez-Marquez18,https://doi.org/10.1109/ACCESS.2018.2846614 +Dandan Lei,Adaptive Dynamic Surface Control of MEMS Gyroscope Sensor Using Fuzzy Compensator.,2016,4,IEEE Access,,db/journals/access/access4.html#LeiWCF16,https://doi.org/10.1109/ACCESS.2016.2596538 +Jianxing Liu,Nonlinear Control of Variable Speed Wind Turbines via Fuzzy Techniques.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuGGW17,https://doi.org/10.1109/ACCESS.2016.2599542 +Yang Tao,Indoor Navigation Validation Framework for Visually Impaired Users.,2017,5,IEEE Access,,db/journals/access/access5.html#TaoDG17,https://doi.org/10.1109/ACCESS.2017.2761698 +Xianjun Gao,Building Extraction From RGB VHR Images Using Shifted Shadow Algorithm.,2018,6,IEEE Access,,db/journals/access/access6.html#GaoWYL18,https://doi.org/10.1109/ACCESS.2018.2819705 +Jingwei Liu,Mutual Heterogeneous Signcryption Schemes for 5G Network Slicings.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuZSDG18,https://doi.org/10.1109/ACCESS.2018.2797102 +Qurrat-Ul-Ain Nadeem,Performance Analysis of Compact FD-MIMO Antenna Arrays in a Correlated Environment.,2017,5,IEEE Access,,db/journals/access/access5.html#NadeemKDA17,https://doi.org/10.1109/ACCESS.2017.2678602 +Mahmoud Barhamgi,Heterogeneous Crowd-Sourced Data Analytics.,2017,5,IEEE Access,,db/journals/access/access5.html#BarhamgiZCT17,https://doi.org/10.1109/ACCESS.2017.2783058 +Jianqiang Zhao,A New Method of Identifying Influential Users in the Micro-Blog Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhaoGT17,https://doi.org/10.1109/ACCESS.2017.2672680 +Keyu Chen,The Influence of MAC Protocol on a Non-Synchronous Localization Scheme in Large-Scale UWSNs.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenCYSM18,https://doi.org/10.1109/ACCESS.2018.2811409 +Eugene Koskin,A Concept of Synchronous ADPLL Networks in Application to Small-Scale Antenna Arrays.,2018,6,IEEE Access,,db/journals/access/access6.html#KoskinGB18,https://doi.org/10.1109/ACCESS.2018.2804324 +Jian Xu 0004,Dynamic Chameleon Authentication Tree for Verifiable Data Streaming in 5G Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#XuLCZCS17,https://doi.org/10.1109/ACCESS.2017.2771281 +Naman Kohli,Multiple Projective Dictionary Learning to Detect Plastic Surgery for Face Verification.,2015,3,IEEE Access,,db/journals/access/access3.html#KohliYN15,https://doi.org/10.1109/ACCESS.2015.2505243 +Anamika Dubey,Electric Vehicle Charging on Residential Distribution Systems: Impacts and Mitigations.,2015,3,IEEE Access,,db/journals/access/access3.html#DubeyS15,https://doi.org/10.1109/ACCESS.2015.2476996 +Md Masud Rana 0002,Architecture of the Internet of Energy Network: An Application to Smart Grid Communications.,2017,5,IEEE Access,,db/journals/access/access5.html#Rana17,https://doi.org/10.1109/ACCESS.2017.2683503 +Tarcio Andre dos Santos Barros,Automatic Characterization System of Switched Reluctance Machines and Nonlinear Modeling by Interpolation Using Smoothing Splines.,2018,6,IEEE Access,,db/journals/access/access6.html#BarrosNPMFF18,https://doi.org/10.1109/ACCESS.2018.2825607 +Chih-Lin I,On Big Data Analytics for Greener and Softer RAN.,2015,3,IEEE Access,,db/journals/access/access3.html#ILHWL15,https://doi.org/10.1109/ACCESS.2015.2469737 +Jean-Pierre Niyigena,ICT Usage and Attitudes Among EAC Undergraduate Students - A Case Study.,2018,6,IEEE Access,,db/journals/access/access6.html#NiyigenaJHZCW18,https://doi.org/10.1109/ACCESS.2018.2854925 +Ai-Min Yang,Research on a Fusion Scheme of Cellular Network and Wireless Sensor for Cyber Physical Social Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#YangYCBKR18,https://doi.org/10.1109/ACCESS.2018.2816565 +Umesh K. Shinde,Sliding Mode Control of Single-Phase Grid-Connected Quasi-Z-Source Inverter.,2017,5,IEEE Access,,db/journals/access/access5.html#ShindeKGRM17,https://doi.org/10.1109/ACCESS.2017.2708720 +Juan Manuel Górriz,Case-Based Statistical Learning: A Non-Parametric Implementation With a Conditional-Error Rate SVM.,2017,5,IEEE Access,,db/journals/access/access5.html#GorrizRSIGMSSW17,https://doi.org/10.1109/ACCESS.2017.2714579 +Basil AsSadhan,Anomaly Detection Based on LRD Behavior Analysis of Decomposed Control and Data Planes Network Traffic Using SOSS and FARIMA Models.,2017,5,IEEE Access,,db/journals/access/access5.html#AsSadhanZAA17,https://doi.org/10.1109/ACCESS.2017.2689001 +Tiago M. Fernández-Caramés,A Review on the Use of Blockchain for the Internet of Things.,2018,6,IEEE Access,,db/journals/access/access6.html#Fernandez-Carames18a,https://doi.org/10.1109/ACCESS.2018.2842685 +Feng Xia,Mobile Multimedia Recommendation in Smart Communities: A Survey.,2013,1,IEEE Access,,db/journals/access/access1.html#XiaAALK13,https://doi.org/10.1109/ACCESS.2013.2281156 +Zheng Chen 0004,A Novel Wave-Variable Based Time-Delay Compensated Four-Channel Control Design for Multilateral Teleoperation System.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenHSZ18,https://doi.org/10.1109/ACCESS.2018.2829601 +Arka Ghosh,A Modified Differential Evolution With Distance-based Selection for Continuous Optimization in Presence of Noise.,2017,5,IEEE Access,,db/journals/access/access5.html#GoshDMDD17,https://doi.org/10.1109/ACCESS.2017.2773825 +Jingjing Guo,Flexible Positioning of Source-Detector Arrays in 3D Visualization Platform for Monte Carlo Simulation of Light Propagation.,2017,5,IEEE Access,,db/journals/access/access5.html#GuoGHS17,https://doi.org/10.1109/ACCESS.2017.2769712 +Beom Kwon,Implementation of a Virtual Training Simulator Based on 360®6* Multi-View Human Action Recognition.,2017,5,IEEE Access,,db/journals/access/access5.html#KwonKLLPL17,https://doi.org/10.1109/ACCESS.2017.2723039 +Song Wang 0008,Graph-Based Safe Support Vector Machine for Multiple Classes.,2018,6,IEEE Access,,db/journals/access/access6.html#WangGTLQG18,https://doi.org/10.1109/ACCESS.2018.2839187 +Yang Liu 0078,Design of a Phase Sensor Applied in the Optical Phase-Locked Loop Based on a High-Speed Coherent Laser Communication System.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuTCSDZAY18,https://doi.org/10.1109/ACCESS.2018.2828026 +Fei Wang 0019,GNSS Spoofing Detection Based on Unsynchronized Double-Antenna Measurements.,2018,6,IEEE Access,,db/journals/access/access6.html#WangLL18a,https://doi.org/10.1109/ACCESS.2018.2845365 +Sachit Mahajan,Improving the Accuracy and Efficiency of PM2.5 Forecast Service Using Cluster-Based Hybrid Neural Network Model.,2018,6,IEEE Access,,db/journals/access/access6.html#MahajanLTC18,https://doi.org/10.1109/ACCESS.2018.2820164 +Xuemei Sun,Multi-Population Ant Colony Algorithm for Virtual Machine Deployment.,2017,5,IEEE Access,,db/journals/access/access5.html#SunZMS17,https://doi.org/10.1109/ACCESS.2017.2768665 +Miao Liu,Resource Configuration Analysis for a Class of Petri Nets Based on Strongly Connected Characteristic Resource Subnets.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuHWAL17,https://doi.org/10.1109/ACCESS.2017.2768069 +Mohammed Hasan Ali,A New Intrusion Detection System Based on Fast Learning Network and Particle Swarm Optimization.,2018,6,IEEE Access,,db/journals/access/access6.html#AliMIZ18,https://doi.org/10.1109/ACCESS.2018.2820092 +Emrecan Demirors,A High-Rate Software-Defined Underwater Acoustic Modem With Real-Time Adaptation Capabilities.,2018,6,IEEE Access,,db/journals/access/access6.html#DemirorsSSMB18,https://doi.org/10.1109/ACCESS.2018.2815026 +Alexandros Palaios,Contemporary Study of Radio Noise Characteristics in Diverse Environments.,2018,6,IEEE Access,,db/journals/access/access6.html#PalaiosMM18,https://doi.org/10.1109/ACCESS.2017.2654064 +Behjat Zuhaira,Identifying Deviations in Software Processes.,2017,5,IEEE Access,,db/journals/access/access5.html#ZuhairaASHMMBA17,https://doi.org/10.1109/ACCESS.2017.2757954 +Abdoulaye Saadou,Optimizing Situational Awareness in Disaster Response Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#SaadouC18,https://doi.org/10.1109/ACCESS.2018.2831448 +Chang Liu,Source Code Revision History Visualization Tools: Do They Work and What Would it Take to Put Them to Work?,2014,2,IEEE Access,,db/journals/access/access2.html#LiuYY14,https://doi.org/10.1109/ACCESS.2014.2322102 +Shanglin Li,Rapid Modeling of Chinese Huizhou Traditional Vernacular Houses.,2017,5,IEEE Access,,db/journals/access/access5.html#LiLCCJL17,https://doi.org/10.1109/ACCESS.2017.2754858 +Jianwen Fu,Malware Visualization for Fine-Grained Classification.,2018,6,IEEE Access,,db/journals/access/access6.html#FuXWLS18,https://doi.org/10.1109/ACCESS.2018.2805301 +Abderrezak Rachedi,IEEE Access Special Section Editorial: The Plethora of Research in Internet of Things (IoT).,2016,4,IEEE Access,,db/journals/access/access4.html#RachediRCR16,https://doi.org/10.1109/ACCESS.2016.2647499 +Zhaocheng Wang 0001,Location-Aware Channel Estimation Enhanced TDD Based Massive MIMO.,2016,4,IEEE Access,,db/journals/access/access4.html#WangZQC16,https://doi.org/10.1109/ACCESS.2016.2625306 +Yeongju Lee,Using a Smartwatch to Detect Stereotyped Movements in Children With Developmental Disabilities.,2017,5,IEEE Access,,db/journals/access/access5.html#LeeS17,https://doi.org/10.1109/ACCESS.2017.2689067 +Mohammad Javad Shafiee,StochasticNet: Forming Deep Neural Networks via Stochastic Connectivity.,2016,4,IEEE Access,,db/journals/access/access4.html#ShafieeSW16,https://doi.org/10.1109/ACCESS.2016.2551458 +Jie Zhang 0029,Path-Loss-Based Fingerprint Localization Approach for Location-Based Services in Indoor Environments.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangHSS17,https://doi.org/10.1109/ACCESS.2017.2728789 +Mengyun Tang,A Joint Tensor Completion and Prediction Scheme for Multi-Dimensional Spectrum Map Construction.,2016,4,IEEE Access,,db/journals/access/access4.html#TangDWXT16,https://doi.org/10.1109/ACCESS.2016.2627243 +Ignacio Martin-Diaz,Advances in Classifier Evaluation: Novel Insights for an Electric Data-Driven Motor Diagnosis.,2016,4,IEEE Access,,db/journals/access/access4.html#Martin-DiazMDR16,https://doi.org/10.1109/ACCESS.2016.2622679 +Hong Zhong 0001,Conditional Privacy-Preserving Authentication Using Registration List in Vehicular Ad Hoc Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhongHCXL18,https://doi.org/10.1109/ACCESS.2017.2782672 +Allan Wainaina Mbugua,Millimeter Wave Multi-User Performance Evaluation Based on Measured Channels With Virtual Antenna Array Channel Sounder.,2018,6,IEEE Access,,db/journals/access/access6.html#MbuguaFJP18,https://doi.org/10.1109/ACCESS.2018.2812304 +Nguyen-Ha Vu,End-to-End Network Slicing in Virtualized OFDMA-Based Cloud Radio Access Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#VuL17,https://doi.org/10.1109/ACCESS.2017.2754461 +Jiangang Wen,Design of Waveform Shaping Filter in the UFMC System.,2018,6,IEEE Access,,db/journals/access/access6.html#WenHLZW18,https://doi.org/10.1109/ACCESS.2018.2837693 +Zhifang Liao,Exploring the Characteristics of Issue-Related Behaviors in GitHub Using Visualization Techniques.,2018,6,IEEE Access,,db/journals/access/access6.html#LiaoHCFZL18,https://doi.org/10.1109/ACCESS.2018.2810295 +Wei Wang 0137,HAST-IDS: Learning Hierarchical Spatial-Temporal Features Using Deep Neural Networks to Improve Intrusion Detection.,2018,6,IEEE Access,,db/journals/access/access6.html#WangSWZYHZ18,https://doi.org/10.1109/ACCESS.2017.2780250 +Fei Wen,Positive Definite Estimation of Large Covariance Matrix Using Generalized Nonconvex Penalties.,2016,4,IEEE Access,,db/journals/access/access4.html#WenYLQ16,https://doi.org/10.1109/ACCESS.2016.2596379 +Jianwei Liao,Block Placement in Distributed File Systems Based on Block Access Frequency.,2018,6,IEEE Access,,db/journals/access/access6.html#LiaoCTP18,https://doi.org/10.1109/ACCESS.2018.2851571 +Guillermo Cabrera-Guerrero,Comparing Local Search Algorithms for the Beam Angles Selection in Radiotherapy.,2018,6,IEEE Access,,db/journals/access/access6.html#Cabrera-Guerrero18,https://doi.org/10.1109/ACCESS.2018.2830646 +Zhenyu Xiao,Channel Estimation and Hybrid Precoding for Millimeter-Wave MIMO Systems: A Low-Complexity Overall Solution.,2017,5,IEEE Access,,db/journals/access/access5.html#XiaoXX17,https://doi.org/10.1109/ACCESS.2017.2724037 +Gen Zhang,PTfuzz: Guided Fuzzing With Processor Trace Feedback.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangZLWM18,https://doi.org/10.1109/ACCESS.2018.2851237 +Yi Ren 0003,A GO-FLOW and Dynamic Bayesian Network Combination Approach for Reliability Evaluation With Uncertainty: A Case Study on a Nuclear Power Plant.,2018,6,IEEE Access,,db/journals/access/access6.html#RenFMWFY18,https://doi.org/10.1109/ACCESS.2017.2775743 +Bin Liu 0023,Toward Emotion-Aware Computing: A Loop Selection Approach Based on Machine Learning for Speculative Multithreading.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuHGHL17,https://doi.org/10.1109/ACCESS.2017.2684129 +Mubashir Ali,Pattern Based Comprehensive Urdu Stemmer and Short Text Classification.,2018,6,IEEE Access,,db/journals/access/access6.html#AliKA18,https://doi.org/10.1109/ACCESS.2017.2787798 +Chao Huang,Exploring Scalability and Time-Sensitiveness in Reliable Social Sensing With Accuracy Assessment.,2017,5,IEEE Access,,db/journals/access/access5.html#HuangW17,https://doi.org/10.1109/ACCESS.2017.2707480 +Jinjiang Li,Image Dehazing Using Residual-Based Deep CNN.,2018,6,IEEE Access,,db/journals/access/access6.html#LiLF18,https://doi.org/10.1109/ACCESS.2018.2833888 +Tengteng Wang,Adaptive Neural Control of Active Power Filter Using Fuzzy Sliding Mode Controller.,2016,4,IEEE Access,,db/journals/access/access4.html#WangF16,https://doi.org/10.1109/ACCESS.2016.2591978 +Xingwen Zhao,Privacy Preserving Data-Sharing Scheme in Content-Centric Networks Against Collusion Name Guessing Attacks.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhaoL17,https://doi.org/10.1109/ACCESS.2017.2740623 +Chaoyin Huang,Secure Pervasive Social Communications Based on Trust in a Distributed Way.,2016,4,IEEE Access,,db/journals/access/access4.html#HuangYLW16,https://doi.org/10.1109/ACCESS.2017.2647824 +Guanlin Wu,Optimal Dynamic Reserved Bandwidth Allocation for Cloud-Integrated Cyber-Physical Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#WuBZXW17,https://doi.org/10.1109/ACCESS.2017.2769665 +Qianping Guo,Adaptive Optimal Dual Frames for Signal Reconstruction With Erasures.,2016,4,IEEE Access,,db/journals/access/access4.html#GuoLHFLG16,https://doi.org/10.1109/ACCESS.2016.2613549 +Guanghui Li 0003,Predicting MicroRNA-Disease Associations Using Network Topological Similarity Based on DeepWalk.,2017,5,IEEE Access,,db/journals/access/access5.html#LiLXLDC17,https://doi.org/10.1109/ACCESS.2017.2766758 +Xuan Sun,Compositional Structure Recognition of 3D Building Models Through Volumetric Analysis.,2018,6,IEEE Access,,db/journals/access/access6.html#SunLY18,https://doi.org/10.1109/ACCESS.2018.2842721 +Guanzhe Zhao,A Parameter Space Framework for Online Outlier Detection Over High-Volume Data Streams.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaoYSZJ18,https://doi.org/10.1109/ACCESS.2018.2854836 +Mohammad Mahdi Honari,Design and Analysis of a Series-Fed Aperture-Coupled Antenna Array With Wideband and High-Efficient Characteristics.,2018,6,IEEE Access,,db/journals/access/access6.html#HonariAMMM18,https://doi.org/10.1109/ACCESS.2018.2827021 +Chenxi Zhao,Analysis and Design of CMOS Doherty Power Amplifier Based on Voltage Combining Method.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhaoLWK17,https://doi.org/10.1109/ACCESS.2017.2678678 +Zhan Wang,Wireless Controlled Local Heating and Mixing Multiple Droplets Using Micro-Fabricated Resonator Array for Micro-Reactor Applications.,2017,5,IEEE Access,,db/journals/access/access5.html#WangZYQHPD17,https://doi.org/10.1109/ACCESS.2017.2766270 +Zhengdao Yuan,Combined Message Passing Based SBL With Dirichlet Process Prior for Sparse Signal Recovery With Multiple Measurement Vectors.,2018,6,IEEE Access,,db/journals/access/access6.html#YuanZGWLW18,https://doi.org/10.1109/ACCESS.2018.2808906 +Zhao-Yan Li,Stability and Robust Stability of Integral Delay Systems With Multiple Exponential Kernels.,2017,5,IEEE Access,,db/journals/access/access5.html#LiFW17,https://doi.org/10.1109/ACCESS.2017.2761352 +Ke Zhang,Incentive-Driven Energy Trading in the Smart Grid.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhangMLMZVJ16,https://doi.org/10.1109/ACCESS.2016.2543841 +Wang He,RF Compliance Study of Temperature Elevation in Human Head Model Around 28 GHz for 5G User Equipment Application: Simulation Analysis.,2018,6,IEEE Access,,db/journals/access/access6.html#HeXGYH18,https://doi.org/10.1109/ACCESS.2017.2776145 +Yong Xiang 0001,IEEE Access Special Section Editorial: Latest Advances and Emerging Applications of Data Hiding.,2016,4,IEEE Access,,db/journals/access/access4.html#XiangHPHM16,https://doi.org/10.1109/ACCESS.2016.2612138 +Syed Afaq Ali Shah,Evolutionary Feature Learning for 3-D Object Recognition.,2018,6,IEEE Access,,db/journals/access/access6.html#ShahBBW18,https://doi.org/10.1109/ACCESS.2017.2783331 +An Liu 0002,A Privacy-Preserving Framework for Trust-Oriented Point-of-Interest Recommendation.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuWLLLZZ18,https://doi.org/10.1109/ACCESS.2017.2765317 +Praveen Damacharla,Common Metrics to Benchmark Human-Machine Teams (HMT): A Review.,2018,6,IEEE Access,,db/journals/access/access6.html#DamacharlaJGD18,https://doi.org/10.1109/ACCESS.2018.2853560 +Pengcheng Shen,Distributed Semi-Supervised Metric Learning.,2016,4,IEEE Access,,db/journals/access/access4.html#ShenDL16,https://doi.org/10.1109/ACCESS.2016.2632158 +Wen Zhang 0008,The Bi-Direction Similarity Integration Method for Predicting Microbe-Disease Associations.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangYLHL18,https://doi.org/10.1109/ACCESS.2018.2851751 +Vitaly Petrov,Terahertz Band Intra-Chip Communications: Can Wireless Links Scale Modern x86 CPUs?,2017,5,IEEE Access,,db/journals/access/access5.html#PetrovMKAKRK17,https://doi.org/10.1109/ACCESS.2017.2689077 +Guangjin Chen,Sparsity-Inspired Sphere Decoding (SI-SD): A Novel Blind Detection Algorithm for Uplink Grant-Free Sparse Code Multiple Access.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenDND17,https://doi.org/10.1109/ACCESS.2017.2752741 +Sarzamin Khan,Bandwidth-Constrained Multi-Objective Segmented Brute-Force Algorithm for Efficient Mapping of Embedded Applications on NoC Architecture.,2018,6,IEEE Access,,db/journals/access/access6.html#KhanAGUK18,https://doi.org/10.1109/ACCESS.2017.2778340 +Kai-Wei Jiang,ZF-SIC Based Individual Secrecy in SIMO Multiple Access Wiretap Channel.,2017,5,IEEE Access,,db/journals/access/access5.html#JiangJZHL17,https://doi.org/10.1109/ACCESS.2017.2696032 +Xiaohang Ren,A Novel Text Structure Feature Extractor for Chinese Scene Text Detection and Recognition.,2017,5,IEEE Access,,db/journals/access/access5.html#RenZHSYC17,https://doi.org/10.1109/ACCESS.2017.2676158 +Fang Lu,Low Complexity Decoding Algorithms for Rate Compatible Modulation.,2018,6,IEEE Access,,db/journals/access/access6.html#LuDRC18,https://doi.org/10.1109/ACCESS.2018.2842095 +Ruyan Wang,Malicious-Behavior-Aware D2D Link Selection Mechanism.,2017,5,IEEE Access,,db/journals/access/access5.html#WangLWWY17,https://doi.org/10.1109/ACCESS.2017.2734807 +Omar Y. Al-Jarrah,Multi-Layered Clustering for Power Consumption Profiling in Smart Grids.,2017,5,IEEE Access,,db/journals/access/access5.html#Al-JarrahAYM17,https://doi.org/10.1109/ACCESS.2017.2712258 +Fei Tao,Digital Twin Shop-Floor: A New Shop-Floor Paradigm Towards Smart Manufacturing.,2017,5,IEEE Access,,db/journals/access/access5.html#TaoZ17,https://doi.org/10.1109/ACCESS.2017.2756069 +Yuxiang Ma,An Architecture for Accountable Anonymous Access in the Internet-of-Things Network.,2018,6,IEEE Access,,db/journals/access/access6.html#MaWGL18,https://doi.org/10.1109/ACCESS.2018.2806483 +Sungkyun Chang,Lyrics-to-Audio Alignment by Unsupervised Discovery of Repetitive Patterns in Vowel Acoustics.,2017,5,IEEE Access,,db/journals/access/access5.html#ChangL17,https://doi.org/10.1109/ACCESS.2017.2738558 +Dongsheng Yu,A Family of Module-Integrated High Step-Up Converters With Dual Coupled Inductors.,2018,6,IEEE Access,,db/journals/access/access6.html#YuYXXIF18,https://doi.org/10.1109/ACCESS.2018.2815148 +Yang Zhao 0002,GUN: Gradual Upsampling Network for Single Image Super-Resolution.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaoLXJML18,https://doi.org/10.1109/ACCESS.2018.2855127 +Chia-Yu Lin,Hybrid Real-Time Matrix Factorization for Implicit Feedback Recommendation Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#LinWT18,https://doi.org/10.1109/ACCESS.2018.2819428 +Zahra Ferdosi,On the Stopping Distance of SA-LDPC Codes by Transversal Designs.,2018,6,IEEE Access,,db/journals/access/access6.html#FerdosiRT18,https://doi.org/10.1109/ACCESS.2018.2857560 +Ali Al-Naji,Monitoring of Cardiorespiratory Signal: Principles of Remote Measurements and Review of Methods.,2017,5,IEEE Access,,db/journals/access/access5.html#Al-NajiGLC17,https://doi.org/10.1109/ACCESS.2017.2735419 +Keichi Takahashi,UnisonFlow: A Software-Defined Coordination Mechanism for Message-Passing Communication and Computation.,2018,6,IEEE Access,,db/journals/access/access6.html#TakahashiDKKYKS18,https://doi.org/10.1109/ACCESS.2018.2829532 +Yun Ren,Learning-Based Saliency Detection of Face Images.,2017,5,IEEE Access,,db/journals/access/access5.html#RenWX17,https://doi.org/10.1109/ACCESS.2017.2689776 +George C. Konstantopoulos,Nonlinear Control of Single-Phase PWM Rectifiers With Inherent Current-Limiting Capability.,2016,4,IEEE Access,,db/journals/access/access4.html#Konstantopoulos16,https://doi.org/10.1109/ACCESS.2016.2585038 +Wenyu Zhang,System-Level Energy Balance for Maximizing Network Lifetime in WSNs.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangZCLZ17,https://doi.org/10.1109/ACCESS.2017.2759093 +Hussein Seleem,Hybrid Precoding-Beamforming Design With Hadamard RF Codebook for mmWave Large-Scale MIMO Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#SeleemSA17,https://doi.org/10.1109/ACCESS.2017.2688345 +Zhengliang Dai,Computational Efficient Two-Dimension DOA Estimation for Incoherently Distributed Noncircular Sources With Automatic Pairing.,2017,5,IEEE Access,,db/journals/access/access5.html#DaiBCS17,https://doi.org/10.1109/ACCESS.2017.2757932 +Dinghui Wu,Convergence Analysis and Improvement of the Chicken Swarm Optimization Algorithm.,2016,4,IEEE Access,,db/journals/access/access4.html#WuXK16,https://doi.org/10.1109/ACCESS.2016.2604738 +Angelito Gabriel,Design and Evaluation of Safety Instrumented Systems: A Simplified and Enhanced Approach.,2017,5,IEEE Access,,db/journals/access/access5.html#Gabriel17,https://doi.org/10.1109/ACCESS.2017.2679023 +Ronghui Zhang,Study on Self-Tuning Tyre Friction Control for Developing Main-Servo Loop Integrated Chassis Control System.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangHWYL17,https://doi.org/10.1109/ACCESS.2017.2669263 +Ying Jiang Guo,Novel Surface Plasmon Polariton Waveguides with Enhanced Field Confinement for Microwave-Frequency Ultra-Wideband Bandpass Filters.,2018,6,IEEE Access,,db/journals/access/access6.html#GuoXLT18,https://doi.org/10.1109/ACCESS.2018.2808335 +Lianchao Sheng,Sensorless Control of a Shearer Short-Range Cutting Interior Permanent Magnet Synchronous Motor Based on a New Sliding Mode Observer.,2017,5,IEEE Access,,db/journals/access/access5.html#Sheng0WFY17,https://doi.org/10.1109/ACCESS.2017.2734699 +Yong Gao,Experimental Investigation on the Interaction Mechanism Between Microwave Field and Semiconductor Material.,2018,6,IEEE Access,,db/journals/access/access6.html#GaoLGZ18,https://doi.org/10.1109/ACCESS.2018.2859803 +Korany R. Mahmoud,Performance of Tri-Band Multi-Polarized Array Antenna for 5G Mobile Base Station Adopting Polarization and Directivity Control.,2018,6,IEEE Access,,db/journals/access/access6.html#MahmoudM18,https://doi.org/10.1109/ACCESS.2018.2805802 +Ubaidullah Rajput,A Hybrid Approach for Efficient Privacy-Preserving Authentication in VANET.,2017,5,IEEE Access,,db/journals/access/access5.html#RajputAEO17,https://doi.org/10.1109/ACCESS.2017.2717999 +Rakshith Rajashekar,Transmit Antenna Subset Selection in Spatial Modulation Relying on a Realistic Error-Infested Feedback Channel.,2018,6,IEEE Access,,db/journals/access/access6.html#RajashekarHH18,https://doi.org/10.1109/ACCESS.2017.2762822 +Mu Zhou,Achieving Cost-Efficient Indoor Fingerprint Localization on WLAN Platform: A Hypothetical Test Approach.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhouWTYL17,https://doi.org/10.1109/ACCESS.2017.2737651 +Yuxi Han,Enabling High Order SCMA Systems in Downlink Scenarios With a Serial Coding Scheme.,2018,6,IEEE Access,,db/journals/access/access6.html#HanZZZ18,https://doi.org/10.1109/ACCESS.2018.2842233 +Min Xu 0003,Efficient Stochastic Approximation Monte Carlo Sampling for Heterogeneous Redundancy Allocation Problem.,2016,4,IEEE Access,,db/journals/access/access4.html#XuZHL16,https://doi.org/10.1109/ACCESS.2016.2611520 +Chungang Yang,Distributed Interference-Aware Power Control in Ultra-Dense Small Cell Networks: A Robust Mean Field Game.,2018,6,IEEE Access,,db/journals/access/access6.html#YangDLZH18,https://doi.org/10.1109/ACCESS.2018.2799138 +Juan C. Aviles,Exploiting Site-Specific Propagation Characteristics in Directional Search at 28 GHz.,2016,4,IEEE Access,,db/journals/access/access4.html#AvilesK16,https://doi.org/10.1109/ACCESS.2016.2584980 +Fatemeh Alimardani,Classification of Bipolar Disorder and Schizophrenia Using Steady-State Visual Evoked Potential Based Features.,2018,6,IEEE Access,,db/journals/access/access6.html#AlimardaniCBH18,https://doi.org/10.1109/ACCESS.2018.2854555 +Takuji Tsuda,Top-k Query Processing and Malicious Node Identification Based on Node Grouping in MANETs.,2016,4,IEEE Access,,db/journals/access/access4.html#TsudaKHN16,https://doi.org/10.1109/ACCESS.2016.2541864 +Shun Yao,Origami Segmented Helical Antenna With Switchable Sense of Polarization.,2018,6,IEEE Access,,db/journals/access/access6.html#YaoG18,https://doi.org/10.1109/ACCESS.2017.2787724 +Xiaoxue Gong,Location-Recommendation-Aware Virtual Network Embedding in Energy-Efficient Optical-Wireless Hybrid Networks Supporting 5G Models.,2016,4,IEEE Access,,db/journals/access/access4.html#GongN0WS16,https://doi.org/10.1109/ACCESS.2016.2580615 +Adeel Aslam,Decision Support System for Risk Assessment and Management Strategies in Distributed Software Development.,2017,5,IEEE Access,,db/journals/access/access5.html#AslamASARAK17,https://doi.org/10.1109/ACCESS.2017.2757605 +Letian Guo,Design of a High-Isolation n-Way Power Combiner Based on a 2n + 1 Port Mode Network.,2018,6,IEEE Access,,db/journals/access/access6.html#GuoLHSB18,https://doi.org/10.1109/ACCESS.2017.2786472 +Hamid Reza Sharifi,Unital Design Based Sink Location Service for Wireless Sensor Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#SharifiJMH18,https://doi.org/10.1109/ACCESS.2018.2840879 +Weiming Yang,Adaptive Online Learning Based Robust Visual Tracking.,2018,6,IEEE Access,,db/journals/access/access6.html#YangZHZ18,https://doi.org/10.1109/ACCESS.2018.2813374 +Waleed Ejaz,Internet of Things (IoT) in 5G Wireless Communications.,2016,4,IEEE Access,,db/journals/access/access4.html#EjazAIJNQW16,https://doi.org/10.1109/ACCESS.2016.2646120 +Zhigang Chu,Two-Dimensional Total Variation Norm Constrained Deconvolution Beamforming Algorithm for Acoustic Source Identification.,2018,6,IEEE Access,,db/journals/access/access6.html#ChuCYS18,https://doi.org/10.1109/ACCESS.2018.2863052 +Xin Jin,Pulse Train Controlled Single-Input Dual-Output Buck Converter With Coupled Inductors.,2018,6,IEEE Access,,db/journals/access/access6.html#JinWYGX18,https://doi.org/10.1109/ACCESS.2018.2854223 +Yukun Zhao,Improving Peak-Wavelength Method to Measure Junction Temperature by Dual-Wavelength LEDs.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhaoYFWLSGDZ17,https://doi.org/10.1109/ACCESS.2017.2716781 +Imad Rida,Palmprint Identification Using an Ensemble of Sparse Representations.,2018,6,IEEE Access,,db/journals/access/access6.html#RidaAMBB18,https://doi.org/10.1109/ACCESS.2017.2787666 +Arshad Ahmad 0003,An Empirical Study of Investigating Mobile Applications Development Challenges.,2018,6,IEEE Access,,db/journals/access/access6.html#AhmadLFAYG18,https://doi.org/10.1109/ACCESS.2018.2818724 +Yuxue Fan,Surfel Set Simplification With Optimized Feature Preservation.,2016,4,IEEE Access,,db/journals/access/access4.html#FanHCYP16,https://doi.org/10.1109/ACCESS.2016.2640999 +Alexander Brown,Automatic and Efficient Denoising of Bioacoustics Recordings Using MMSE STSA.,2018,6,IEEE Access,,db/journals/access/access6.html#BrownGM18,https://doi.org/10.1109/ACCESS.2017.2782778 +Zilong Jiang,Impossible Differential Cryptanalysis of 8-Round Deoxys-BC-256.,2018,6,IEEE Access,,db/journals/access/access6.html#JiangJ18,https://doi.org/10.1109/ACCESS.2018.2808484 +Xiang Chen 0009,Cooperative User Scheduling in Massive MIMO Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenGZL18,https://doi.org/10.1109/ACCESS.2018.2828403 +Raed F. Manna,A Full Diversity Cooperative Spectrum Sharing Scheme for Cognitive Radio Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#MannaAZ17,https://doi.org/10.1109/ACCESS.2017.2732221 +Ahsan Saadat,Collaborative Spectrum Sharing Through Non-Collaborative Gaming for Next-Generation Small Cells.,2017,5,IEEE Access,,db/journals/access/access5.html#SaadatNV17,https://doi.org/10.1109/ACCESS.2017.2712129 +Zhihong Huang,Hyperspectral Image Denoising With Group Sparse and Low-Rank Tensor Decomposition.,2018,6,IEEE Access,,db/journals/access/access6.html#HuangLFLB18,https://doi.org/10.1109/ACCESS.2017.2778947 +Yahia Medjahdi,On the Road to 5G: Comparative Study of Physical Layer in MTC Context.,2017,5,IEEE Access,,db/journals/access/access5.html#MedjahdiTGSZDZD17,https://doi.org/10.1109/ACCESS.2017.2774002 +Sheng Ding,A Novel Efficient Pairing-Free CP-ABE Based on Elliptic Curve Cryptography for IoT.,2018,6,IEEE Access,,db/journals/access/access6.html#DingLL18,https://doi.org/10.1109/ACCESS.2018.2836350 +Francisco Sandoval,Hybrid Peak-to-Average Power Ratio Reduction Techniques: Review and Performance Comparison.,2017,5,IEEE Access,,db/journals/access/access5.html#SandovalPG17,https://doi.org/10.1109/ACCESS.2017.2775859 +Shahriar Badsha,Designing Privacy-Preserving Protocols for Content Sharing and Aggregation in Content Centric Networking.,2018,6,IEEE Access,,db/journals/access/access6.html#BadshaKYA18,https://doi.org/10.1109/ACCESS.2018.2856299 +Xiaoshun Zhang,Culture Evolution Learning for Optimal Carbon-Energy Combined-Flow.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangYGYC18,https://doi.org/10.1109/ACCESS.2018.2815547 +Celimuge Wu,Packet Size-Aware Broadcasting in VANETs With Fuzzy Logic and RL-Based Parameter Adaptation.,2015,3,IEEE Access,,db/journals/access/access3.html#WuCJLOYK15,https://doi.org/10.1109/ACCESS.2015.2502949 +Tarik Taleb,Lightweight mobile core networks for machine type communications.,2014,2,IEEE Access,,db/journals/access/access2.html#TalebKK14,https://doi.org/10.1109/ACCESS.2014.2359649 +Mahyar Nemati,Low ICI Symbol Boundary Alignment for 5G Numerology Design.,2018,6,IEEE Access,,db/journals/access/access6.html#NematiA18,https://doi.org/10.1109/ACCESS.2017.2782830 +Yogi Salomo Mangontang Pratama,Bandwidth Aggregation Protocol and Throughput-Optimal Scheduler for Hybrid RF and Visible Light Communication Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#PratamaC18,https://doi.org/10.1109/ACCESS.2018.2844874 +Zhiqing Wei,DoA-LF: A Location Fingerprint Positioning Algorithm With Millimeter-Wave.,2017,5,IEEE Access,,db/journals/access/access5.html#WeiZLF17,https://doi.org/10.1109/ACCESS.2017.2753781 +Wenbo Zhang,Learning-Aided Unary Error Correction Codes for Non-Stationary and Unknown Sources.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhangSBWMH16,https://doi.org/10.1109/ACCESS.2016.2544060 +Patrick Friudenberg,Mobile Robot Rendezvous Using Potential Fields combined With Parallel Navigation.,2018,6,IEEE Access,,db/journals/access/access6.html#FriudenbergK18,https://doi.org/10.1109/ACCESS.2018.2802468 +Daniel L. Marks,Fourier Accelerated Multistatic Imaging: A Fast Reconstruction Algorithm for Multiple-Input-Multiple-Output Radar Imaging.,2017,5,IEEE Access,,db/journals/access/access5.html#MarksYS17,https://doi.org/10.1109/ACCESS.2017.2661068 +Liang Zhang 0010,Improving Semantic Image Segmentation With a Probabilistic Superpixel-Based Dense Conditional Random Field.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangLSZSSBZ18,https://doi.org/10.1109/ACCESS.2018.2814568 +Aqeel Raza Syed,Route Selection for Multi-Hop Cognitive Radio Networks Using Reinforcement Learning: An Experimental Study.,2016,4,IEEE Access,,db/journals/access/access4.html#SyedYQMRK16,https://doi.org/10.1109/ACCESS.2016.2613122 +Sabo Miya Hassan,Adopting Setpoint Weighting Strategy for WirelessHART Networked Control Systems Characterised by Stochastic Delay.,2017,5,IEEE Access,,db/journals/access/access5.html#HassanISAB17,https://doi.org/10.1109/ACCESS.2017.2772925 +Yan Tang,Geometric-Convolutional Feature Fusion Based on Learning Propagation for Facial Expression Recognition.,2018,6,IEEE Access,,db/journals/access/access6.html#TangZW18,https://doi.org/10.1109/ACCESS.2018.2858278 +Markus Berg 0001,Analysis of Vertical Loop Antenna and Its Wide and Flat Variant Performance in Wearable Use.,2018,6,IEEE Access,,db/journals/access/access6.html#BergCP18,https://doi.org/10.1109/ACCESS.2018.2824542 +Gaoyang Shan,Advertisement Interval to Minimize Discovery Time of Whole BLE Advertisers.,2018,6,IEEE Access,,db/journals/access/access6.html#ShanR18,https://doi.org/10.1109/ACCESS.2018.2817343 +Roserio Valente,Setup for EMI Shielding Effectiveness Tests of Electrically Conductive Polymer Composites at Frequencies up to 3.0 GHz.,2017,5,IEEE Access,,db/journals/access/access5.html#ValenteRVZG17,https://doi.org/10.1109/ACCESS.2017.2741527 +Brandon C. Henley,Compartmental and Data-Based Modeling of Cerebral Hemodynamics: Linear Analysis.,2015,3,IEEE Access,,db/journals/access/access3.html#HenleySZM15,https://doi.org/10.1109/ACCESS.2015.2492945 +Weipeng Jing,A Model of Parallel Mosaicking for Massive Remote Sensing Images Based on Spark.,2017,5,IEEE Access,,db/journals/access/access5.html#JingHMC17,https://doi.org/10.1109/ACCESS.2017.2746098 +Faroq Razzaz,Electromagnetic Coupling and Tunneling Through Chiral Layers.,2017,5,IEEE Access,,db/journals/access/access5.html#RazzazA17,https://doi.org/10.1109/ACCESS.2017.2672206 +Dejun Zhang,Efficient and Accurate Hausdorff Distance Computation Based on Diffusion Search.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangZCH18,https://doi.org/10.1109/ACCESS.2017.2778745 +Rui Zhang 0023,Analytical Characterisation of the Terahertz In-Vivo Nano-Network in the Presence of Interference Based on TS-OOK Communication Scheme.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangYAQA17,https://doi.org/10.1109/ACCESS.2017.2713459 +Tahani Gazdar,An Enhanced Distributed Trust Computing Protocol for VANETs.,2018,6,IEEE Access,,db/journals/access/access6.html#GazdarBA18,https://doi.org/10.1109/ACCESS.2017.2765303 +Xiaodong Han,Polarization-Angle-Frequency Estimation With Linear Nested Vector Sensors.,2018,6,IEEE Access,,db/journals/access/access6.html#HanSHY18,https://doi.org/10.1109/ACCESS.2018.2850902 +Huiwen Guo,Action Extraction in Continuous Unconstrained Video for Cloud-Based Intelligent Service Robot.,2018,6,IEEE Access,,db/journals/access/access6.html#GuoWL18,https://doi.org/10.1109/ACCESS.2018.2842088 +Zhengxuan Liu,Joint Beamforming and Power Optimization With Iterative User Clustering for MISO-NOMA Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#Liu0ZKC17,https://doi.org/10.1109/ACCESS.2017.2700018 +Zhaoyang Zhang 0003,A New MI-Based Visualization Aided Validation Index for Mining Big Longitudinal Web Trial Data.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhangFW16,https://doi.org/10.1109/ACCESS.2016.2569074 +Jianxiang Xi,Dynamic Output Feedback Guaranteed-Cost Synchronization for Multiagent Networks With Given Cost Budgets.,2018,6,IEEE Access,,db/journals/access/access6.html#XiWLW18,https://doi.org/10.1109/ACCESS.2018.2819989 +Guang Wang,Nonlinear Fault Detection Based on An Improved Kernel Approach.,2018,6,IEEE Access,,db/journals/access/access6.html#WangJ18a,https://doi.org/10.1109/ACCESS.2018.2802939 +Zhihua Qu,IEEE Access Special Section Editorial: Innovations in Electrical and Computer Engineering Education.,2017,5,IEEE Access,,db/journals/access/access5.html#QuBFS17,https://doi.org/10.1109/ACCESS.2017.2708458 +Yanwen Jiang,A Side-Lobe Suppression Method Based on Coherence Factor for Terahertz Array Imaging.,2018,6,IEEE Access,,db/journals/access/access6.html#JiangQWDLC18,https://doi.org/10.1109/ACCESS.2018.2799180 +Guang Wang,Quality-Related Fault Detection and Diagnosis Based on Total Principal Component Regression Model.,2018,6,IEEE Access,,db/journals/access/access6.html#WangJ18,https://doi.org/10.1109/ACCESS.2018.2793281 +Amit Banerjee,CLOAK: A Stream Cipher Based Encryption Protocol for Mobile Cloud Computing.,2017,5,IEEE Access,,db/journals/access/access5.html#BanerjeeHRC17,https://doi.org/10.1109/ACCESS.2017.2744670 +Syh-Yuan Tan,"Comment on ""Secure Data Access Control With Ciphertext Update and Computation Outsourcing in Fog Computing for Internet of Things"".",2018,6,IEEE Access,,db/journals/access/access6.html#Tan18,https://doi.org/10.1109/ACCESS.2018.2827698 +Ibrahim Ghafir,A Basic Probability Assignment Methodology for Unsupervised Wireless Intrusion Detection.,2018,6,IEEE Access,,db/journals/access/access6.html#GhafirKALAB18,https://doi.org/10.1109/ACCESS.2018.2855078 +Yongming Wen,A Collision Forecast and Coordination Algorithm in Configuration Control of Missile Autonomous Formation.,2017,5,IEEE Access,,db/journals/access/access5.html#WenWLDW17,https://doi.org/10.1109/ACCESS.2017.2652984 +Nader Mohamed,SmartCityWare: A Service-Oriented Middleware for Cloud and Fog Enabled Smart City Services.,2017,5,IEEE Access,,db/journals/access/access5.html#MohamedAJLM17,https://doi.org/10.1109/ACCESS.2017.2731382 +Qin Guo,Convergence Rate for lq-Coefficient Regularized Regression With Non-i.i.d. Sampling.,2018,6,IEEE Access,,db/journals/access/access6.html#GuoYC18,https://doi.org/10.1109/ACCESS.2018.2817215 +Xiankai Lu,Learning Deconvolutional Network for Object Tracking.,2018,6,IEEE Access,,db/journals/access/access6.html#LuHFZ18,https://doi.org/10.1109/ACCESS.2018.2820004 +Rui Li,Analysis of Panel Antenna Arrays in Los MIMO System.,2018,6,IEEE Access,,db/journals/access/access6.html#LiHHLY18,https://doi.org/10.1109/ACCESS.2018.2829893 +Le Sun,A Novel Weighted Cross Total Variation Method for Hyperspectral Image Mixed Denoising.,2017,5,IEEE Access,,db/journals/access/access5.html#SunJZW17,https://doi.org/10.1109/ACCESS.2017.2768580 +Anita Bai,Selective Database Projections Based Approach for Mining High-Utility Itemsets.,2018,6,IEEE Access,,db/journals/access/access6.html#BaiDD18,https://doi.org/10.1109/ACCESS.2017.2788083 +Sawitchaya Tippaya,Multi-Modal Visual Features-Based Video Shot Boundary Detection.,2017,5,IEEE Access,,db/journals/access/access5.html#TippayaSTKC17,https://doi.org/10.1109/ACCESS.2017.2717998 +Javier Martinez Garcia,MIMO-FMCW Radar-Based Parking Monitoring Application With a Modified Convolutional Neural Network With Spatial Priors.,2018,6,IEEE Access,,db/journals/access/access6.html#GarciaZV18,https://doi.org/10.1109/ACCESS.2018.2857007 +Yi-Bing Lin,CampusTalk: IoT Devices and Their Interesting Features on Campus Applications.,2018,6,IEEE Access,,db/journals/access/access6.html#LinCSLY18,https://doi.org/10.1109/ACCESS.2018.2832222 +Jiaying Liu 0006,A Survey of Scholarly Data Visualization.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuTWXKX18,https://doi.org/10.1109/ACCESS.2018.2815030 +Xiuhua Lu,A Lattice-Based Unordered Aggregate Signature Scheme Based on the Intersection Method.,2018,6,IEEE Access,,db/journals/access/access6.html#LuYWJL18,https://doi.org/10.1109/ACCESS.2018.2847411 +Zhiyong Du,Context-Aware Indoor VLC/RF Heterogeneous Network Selection: Reinforcement Learning With Knowledge Transfer.,2018,6,IEEE Access,,db/journals/access/access6.html#DuWSW18,https://doi.org/10.1109/ACCESS.2018.2844882 +Pei-Yuan Zhou,An Effective Pattern Pruning and Summarization Method Retaining High Quality Patterns With High Area Coverage in Relational Datasets.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhouLW16,https://doi.org/10.1109/ACCESS.2016.2624418 +Dandan Li,Processor Design Space Exploration via Statistical Sampling and Semi-Supervised Ensemble Learning.,2018,6,IEEE Access,,db/journals/access/access6.html#LiYW18a,https://doi.org/10.1109/ACCESS.2018.2831079 +John Polcari,An Informative Interpretation of Decision Theory: Scalar Performance Measures for Binary Decisions.,2014,2,IEEE Access,,db/journals/access/access2.html#Polcari14,https://doi.org/10.1109/ACCESS.2014.2377593 +Lili Cui,Asymptotical Cooperative Tracking Control for Unknown High-Order Multi-Agent Systems via Distributed Adaptive Critic Design.,2018,6,IEEE Access,,db/journals/access/access6.html#CuiLYZ18,https://doi.org/10.1109/ACCESS.2018.2831912 +Adia Khalid,Towards Dynamic Coordination Among Home Appliances Using Multi-Objective Energy Optimization for Demand Side Management in Smart Buildings.,2018,6,IEEE Access,,db/journals/access/access6.html#KhalidJGAAI18,https://doi.org/10.1109/ACCESS.2018.2791546 +John-John Cabibihan,A Method for 3-D Printing Patient-Specific Prosthetic Arms With High Accuracy Shape and Size.,2018,6,IEEE Access,,db/journals/access/access6.html#CabibihanAT18,https://doi.org/10.1109/ACCESS.2018.2825224 +Nuhu Aliyu Shuaibu,Sparse Representation for Crowd Attributes Recognition.,2017,5,IEEE Access,,db/journals/access/access5.html#ShuaibuFAKSM17,https://doi.org/10.1109/ACCESS.2017.2708838 +Konglin Zhu,Social-Aware Incentivized Caching for D2D Communications.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhuZZCF16,https://doi.org/10.1109/ACCESS.2016.2618940 +Katarina Trojachanec,Longitudinal Brain MRI Retrieval for Alzheimer's Disease Using Different Temporal Information.,2018,6,IEEE Access,,db/journals/access/access6.html#TrojachanecKDL18,https://doi.org/10.1109/ACCESS.2017.2773359 +Augustine Ikpehai,Energy-Efficient Vector OFDM PLC Systems With Dynamic Peak-Based Threshold Estimation.,2017,5,IEEE Access,,db/journals/access/access5.html#IkpehaiARFW17,https://doi.org/10.1109/ACCESS.2017.2709254 +Osama M. Haraz,Dense Dielectric Patch Array Antenna With Improved Radiation Characteristics Using EBG Ground Structure and Dielectric Superstrate for Future 5G Cellular Networks.,2014,2,IEEE Access,,db/journals/access/access2.html#HarazEAS14,https://doi.org/10.1109/ACCESS.2014.2352679 +Raja Majid Mehmood,Optimal Feature Selection and Deep Learning Ensembles Method for Emotion Recognition From Human Brain EEG Sensors.,2017,5,IEEE Access,,db/journals/access/access5.html#MehmoodDL17,https://doi.org/10.1109/ACCESS.2017.2724555 +Hui Gao 0001,Energy-Efficient Resource Allocation for Massive MIMO Amplify-and-Forward Relay Systems.,2016,4,IEEE Access,,db/journals/access/access4.html#GaoLSYC16,https://doi.org/10.1109/ACCESS.2016.2570805 +Ruikai Mai,Progressive Hybrid Precoding and Combining for Massive MIMO ARQ Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#MaiCL18,https://doi.org/10.1109/ACCESS.2018.2850059 +Yuan Zhang 0007,Ieee Access Special Section Editorial: Big Data Analytics for Smart and Connected Health.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhangZOCK16,https://doi.org/10.1109/ACCESS.2016.2646158 +Stefan E. Schausberger,Cost-Efficient Open Source Desktop Size Radial Stretching System With Force Sensor.,2015,3,IEEE Access,,db/journals/access/access3.html#SchausbergerKDC15,https://doi.org/10.1109/ACCESS.2015.2433398 +Xianchen Wang,A Dual Locality-Constrained Linear Coding Algorithm for Image Classification.,2018,6,IEEE Access,,db/journals/access/access6.html#WangLX18,https://doi.org/10.1109/ACCESS.2018.2794525 +Juan Luo,Reliable and Cooperative Target Tracking Based on WSN and WiFi in Indoor Wireless Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#LuoZLL18,https://doi.org/10.1109/ACCESS.2018.2830762 +Mohammad Mahdianpoor,Robust Implementation of Distribution Static Compensator Along With Bridge Type Fault Current Limiter for Fault Ride Through Enhancement of Fixed Speed Wind Turbines.,2017,5,IEEE Access,,db/journals/access/access5.html#MahdianpoorKAH17,https://doi.org/10.1109/ACCESS.2017.2696884 +Ying Wang 0002,Challenges of System-Level Simulations and Performance Evaluation for 5G Wireless Networks.,2014,2,IEEE Access,,db/journals/access/access2.html#WangXJ14,https://doi.org/10.1109/ACCESS.2014.2383833 +Yanli Xu,Towards Energy Efficient Device-to-Device Content Dissemination in Cellular Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#XuJW18,https://doi.org/10.1109/ACCESS.2018.2832442 +Wei Wei 0006,Research and Simulation of Queue Management Algorithms in Ad Hoc Networks Under DDoS Attack.,2017,5,IEEE Access,,db/journals/access/access5.html#WeiSWF17,https://doi.org/10.1109/ACCESS.2017.2681684 +Zilong Hu,Identification of Bruised Apples Using a 3-D Multi-Order Local Binary Patterns Based Feature Extraction Algorithm.,2018,6,IEEE Access,,db/journals/access/access6.html#HuTZP18,https://doi.org/10.1109/ACCESS.2018.2806882 +Anabi Hilary Kelechi,SMART: Coordinated Double-Sided Seal Bid Multiunit First Price Auction Mechanism for Cloud-Based TVWS Secondary Spectrum Market.,2017,5,IEEE Access,,db/journals/access/access5.html#KelechiANI17,https://doi.org/10.1109/ACCESS.2017.2768964 +Jianping Wang 0004,Design and Implementation of SDN-Based Underwater Acoustic Sensor Networks With Multi-Controllers.,2018,6,IEEE Access,,db/journals/access/access6.html#WangZCKZY18,https://doi.org/10.1109/ACCESS.2018.2835477 +Wenjing Kang,Corrected Continuous Correlation Filter for Long-Term Tracking.,2018,6,IEEE Access,,db/journals/access/access6.html#KangLLL18,https://doi.org/10.1109/ACCESS.2018.2810382 +Hamza Baali,Inequality Indexes as Sparsity Measures Applied to Ventricular Ectopic Beats Detection and its Efficient Hardware Implementation.,2018,6,IEEE Access,,db/journals/access/access6.html#BaaliZDAB18,https://doi.org/10.1109/ACCESS.2017.2780190 +Laura Arjona,Timing-Aware RFID Anti-Collision Protocol to Increase the Tag Identification Rate.,2018,6,IEEE Access,,db/journals/access/access6.html#ArjonaLPO18,https://doi.org/10.1109/ACCESS.2018.2849223 +Yauhen Leanidavich Arnatovich,A Comparison of Android Reverse Engineering Tools via Program Behaviors Validation Based on Intermediate Languages Transformation.,2018,6,IEEE Access,,db/journals/access/access6.html#ArnatovichWNS18,https://doi.org/10.1109/ACCESS.2018.2808340 +Mikhail Gerasimenko,Cooperative Radio Resource Management in Heterogeneous Cloud Radio Access Networks.,2015,3,IEEE Access,,db/journals/access/access3.html#GerasimenkoMFAK15,https://doi.org/10.1109/ACCESS.2015.2422266 +Yue Xiang,Scale Evolution of Electric Vehicles: A System Dynamics Approach.,2017,5,IEEE Access,,db/journals/access/access5.html#XiangZYLNG17,https://doi.org/10.1109/ACCESS.2017.2699318 +Xinyu Wu,Building a Spatially-Embedded Network of Tourism Hotspots From Geotagged Social Media Data.,2018,6,IEEE Access,,db/journals/access/access6.html#WuHPCL18,https://doi.org/10.1109/ACCESS.2018.2828032 +Wei Duan,Two-Stage Power Allocation for Dual-Hop Relaying Systems With Non-Orthogonal Multiple Access.,2017,5,IEEE Access,,db/journals/access/access5.html#DuanWXL17,https://doi.org/10.1109/ACCESS.2017.2655138 +Shuai Zhao 0001,An Event-Driven Service Provisioning Mechanism for IoT (Internet of Things) System Interaction.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhaoYC16,https://doi.org/10.1109/ACCESS.2016.2606407 +Yuhao Zhang,Energy Efficiency Analysis of Heterogeneous Cellular Networks With Extra Cell Range Expansion.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangCCYLXZ17,https://doi.org/10.1109/ACCESS.2017.2713814 +Abhijeet Bishnu,Sparse Channel Estimation for Interference Limited OFDM Systems and Its Convergence Analysis.,2017,5,IEEE Access,,db/journals/access/access5.html#BishnuB17,https://doi.org/10.1109/ACCESS.2017.2748144 +Laurens Mackay,Optimal Power Flow for Unbalanced Bipolar DC Distribution Grids.,2018,6,IEEE Access,,db/journals/access/access6.html#MackayGDMEB18,https://doi.org/10.1109/ACCESS.2018.2789522 +Jing Zhao 0009,Dual Relay Selection for Cooperative NOMA With Distributed Space Time Coding.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaoDFYK18,https://doi.org/10.1109/ACCESS.2018.2820146 +Xiao Chen,A Three-Stage Matting Method.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenHY17,https://doi.org/10.1109/ACCESS.2017.2773651 +Chuang Ye,Quality-Driven Resource Allocation for Wireless Video Transmissions Under Energy Efficiency and Delay Constraints.,2018,6,IEEE Access,,db/journals/access/access6.html#YeGV18,https://doi.org/10.1109/ACCESS.2018.2859812 +Chenyu You,Structurally-Sensitive Multi-Scale Deep Neural Network for Low-Dose CT Denoising.,2018,6,IEEE Access,,db/journals/access/access6.html#YouYSGLJZZZCW18,https://doi.org/10.1109/ACCESS.2018.2858196 +Muhammad Furqan,A Collaborative Hotspot Caching Design for 5G Cellular Network.,2018,6,IEEE Access,,db/journals/access/access6.html#FurqanZYSWH18,https://doi.org/10.1109/ACCESS.2018.2852278 +Hui Li 0016,Compact Single-Layer RFID Tag Antenna Tolerant to Background Materials.,2017,5,IEEE Access,,db/journals/access/access5.html#LiZY17,https://doi.org/10.1109/ACCESS.2017.2756670 +Ruidong Li,An Aggregatable Name-Based Routing for Energy-Efficient Data Sharing in Big Data Era.,2015,3,IEEE Access,,db/journals/access/access3.html#LiHA15,https://doi.org/10.1109/ACCESS.2015.2448736 +Bing-Fei Wu,An Uphill Safety Controller With Deep Learning-Based Ramp Detection for Intelligent Wheelchairs.,2018,6,IEEE Access,,db/journals/access/access6.html#WuCHC18,https://doi.org/10.1109/ACCESS.2018.2839729 +Li-Bing Wu,Asynchronous Adaptive Fault-Tolerant Control for a Class of Switched Nonlinear Systems With Mode-Dependent Dwell Time.,2017,5,IEEE Access,,db/journals/access/access5.html#WuW17,https://doi.org/10.1109/ACCESS.2017.2761880 +Guangmin Zhang,A Time Reversal Based Pipeline Leakage Localization Method With the Adjustable Resolution.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangZSPS18,https://doi.org/10.1109/ACCESS.2018.2829984 +Adlen Ksentini,A LISP-Based Implementation of Follow Me Cloud.,2014,2,IEEE Access,,db/journals/access/access2.html#KsentiniTM14,https://doi.org/10.1109/ACCESS.2014.2360352 +Christos Politis,SDR Implementation of a Testbed for Real-Time Interference Detection With Signal Cancellation.,2018,6,IEEE Access,,db/journals/access/access6.html#PolitisMMKCO18,https://doi.org/10.1109/ACCESS.2018.2825885 +Mohammad Abu Shattal,Evolutionary Game Theory Perspective on Dynamic Spectrum Access Etiquette.,2018,6,IEEE Access,,db/journals/access/access6.html#ShattalWAKD18,https://doi.org/10.1109/ACCESS.2017.2736520 +Md. Noor-A.-Rahim,Delay-Universal Channel Coding With Feedback.,2018,6,IEEE Access,,db/journals/access/access6.html#Noor-A-RahimKG18,https://doi.org/10.1109/ACCESS.2018.2853140 +Jorge Muñoz-Minjares,Accurate Jitter Computation in CNA Breakpoints Using Hybrid Confidence Masks With Applications to SNP Array Probing.,2018,6,IEEE Access,,db/journals/access/access6.html#Munoz-MinjaresS18,https://doi.org/10.1109/ACCESS.2017.2782158 +Jun-Bo Wang,Online Learning Based Transmission Scheduling for Delay-Sensitive Data Over a Fading Channel With Imperfect Channel State Information.,2017,5,IEEE Access,,db/journals/access/access5.html#WangLWWCC17,https://doi.org/10.1109/ACCESS.2017.2727519 +Jun Ma,Hydrological Analysis Using Satellite Remote Sensing Big Data and CREST Model.,2018,6,IEEE Access,,db/journals/access/access6.html#MaSYZ18,https://doi.org/10.1109/ACCESS.2018.2810252 +Zulfiqar Ali,New Zero-Watermarking Algorithm Using Hurst Exponent for Protection of Privacy in Telemedicine.,2018,6,IEEE Access,,db/journals/access/access6.html#AliHMA18,https://doi.org/10.1109/ACCESS.2018.2799604 +Teresa Cristóbal,Systematic Approach to Analyze Travel Time in Road-Based Mass Transit Systems Based on Data Mining.,2018,6,IEEE Access,,db/journals/access/access6.html#CristobalPQHG18,https://doi.org/10.1109/ACCESS.2018.2837498 +Xin Liu,Design of Folded Reflectarray Antennas Using Pancharatnam-Berry Phase Reflectors.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuGCC18,https://doi.org/10.1109/ACCESS.2018.2838567 +Tzuu-Hseng S. Li,Robots That Think Fast and Slow: An Example of Throwing the Ball Into the Basket.,2016,4,IEEE Access,,db/journals/access/access4.html#LiKHLYYCCCCWF16,https://doi.org/10.1109/ACCESS.2016.2601167 +Isma Farah Siddiqui,Optimizing Lifespan and Energy Consumption by Smart Meters in Green-Cloud-Based Smart Grids.,2017,5,IEEE Access,,db/journals/access/access5.html#SiddiquiLAB17,https://doi.org/10.1109/ACCESS.2017.2752242 +Xiong Luo,Attention-Based Relation Extraction With Bidirectional Gated Recurrent Unit and Highway Network in the Analysis of Geological Data.,2018,6,IEEE Access,,db/journals/access/access6.html#LuoZWZD18,https://doi.org/10.1109/ACCESS.2017.2785229 +Adrian Kliks,Application of Radio Environment Maps for Dynamic Broadband Access in TV Bands in Urban Areas.,2017,5,IEEE Access,,db/journals/access/access5.html#KliksKUPCK17,https://doi.org/10.1109/ACCESS.2017.2751138 +Gabriel Hermosilla Vigneau,Thermal Face Recognition Under Temporal Variation Conditions.,2017,5,IEEE Access,,db/journals/access/access5.html#VigneauVCPV17,https://doi.org/10.1109/ACCESS.2017.2704296 +Austin J. Pickles,Effective Permittivity of 3-D Periodic Composites With Regular and Irregular Inclusions.,2013,1,IEEE Access,,db/journals/access/access1.html#PicklesS13,https://doi.org/10.1109/ACCESS.2013.2279356 +Ling Fu Xie,Channel-Coded Physical-Layer Network Coding With OFDM Modulation.,2018,6,IEEE Access,,db/journals/access/access6.html#XieHSLL18,https://doi.org/10.1109/ACCESS.2018.2825429 +Ehsan Gholamalizadeh,Design of the Collector of a Solar Dish-Stirling System: A Case Study.,2017,5,IEEE Access,,db/journals/access/access5.html#GholamalizadehC17,https://doi.org/10.1109/ACCESS.2017.2758354 +Callum Bailey,Augmenting Computer-Aided Design Software With Multi-Functional Capabilities to Automate Multi-Process Additive Manufacturing.,2018,6,IEEE Access,,db/journals/access/access6.html#BaileyAEMFPDPMW18,https://doi.org/10.1109/ACCESS.2017.2781249 +Wei Liu 0049,Discrete Global Sliding Mode Control for Time-Delay Carbon Fiber Multilayer Diagonal Loom.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuXJ17,https://doi.org/10.1109/ACCESS.2017.2734805 +Hamdi Amroun,Who Used My Smart Object? A Flexible Approach for the Recognition of Users.,2018,6,IEEE Access,,db/journals/access/access6.html#AmrounA18,https://doi.org/10.1109/ACCESS.2017.2776098 +Sizhao Li,Cache Coherence Scheme for HCS-Based CMP and Its System Reliability Analysis.,2017,5,IEEE Access,,db/journals/access/access5.html#LiG17,https://doi.org/10.1109/ACCESS.2017.2701406 +Wei Yang 0009,Evaluation on EM Scattering Properties From a Wind Farm by an Efficient High-Frequency Method.,2018,6,IEEE Access,,db/journals/access/access6.html#YangQZ18,https://doi.org/10.1109/ACCESS.2018.2837083 +Naiyu Tian,A Parallel Extension Rule-Based Algorithm for #SAT Problem Using Model-Counting Tree.,2018,6,IEEE Access,,db/journals/access/access6.html#TianOJLZ18,https://doi.org/10.1109/ACCESS.2018.2855739 +Yuhuan Chen,Neural Networks for the Output Tracking-Control Problem of Nonlinear Strict-Feedback System.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenRY17,https://doi.org/10.1109/ACCESS.2017.2773544 +Yuhua Xu,Database-Assisted Spectrum Access in Dynamic Networks: A Distributed Learning Solution.,2015,3,IEEE Access,,db/journals/access/access3.html#XuXA15,https://doi.org/10.1109/ACCESS.2015.2453266 +Jiyan Zhang,Structural Attack on Reduced-Round Skipjack.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangCJ18,https://doi.org/10.1109/ACCESS.2017.2787575 +Mohamad A. Eid,A Novel Eye-Gaze-Controlled Wheelchair System for Navigating Unknown Environments: Case Study With a Person With ALS.,2016,4,IEEE Access,,db/journals/access/access4.html#EidGE16,https://doi.org/10.1109/ACCESS.2016.2520093 +Qiuming Zhu,A Novel 3D Non-Stationary Vehicle-to-Vehicle Channel Model and its Spatial-Temporal Correlation Properties.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhuYCTFWL18,https://doi.org/10.1109/ACCESS.2018.2859782 +Saliha Buyukcorak,A Bayesian Perspective on RSS Based Localization for Visible Light Communication With Heterogeneous Networks Extension.,2017,5,IEEE Access,,db/journals/access/access5.html#BuyukcorakK17,https://doi.org/10.1109/ACCESS.2017.2746141 +Tianmin Han,Numerical Solution for Super Large Scale Systems.,2013,1,IEEE Access,,db/journals/access/access1.html#HanH13,https://doi.org/10.1109/ACCESS.2013.2280244 +Jiang-Feng Lin,Extending Bandwidth of Antennas With Coupling Theory for Characteristic Modes.,2017,5,IEEE Access,,db/journals/access/access5.html#LinC17,https://doi.org/10.1109/ACCESS.2017.2761888 +Peng-Fei Cui,Measurement and Modeling of Wireless Off-Body Propagation Characteristics Under Hospital Environment at 6-8.5 GHz.,2017,5,IEEE Access,,db/journals/access/access5.html#CuiYLLZ17,https://doi.org/10.1109/ACCESS.2017.2707560 +Zeyang Dou,Image Smoothing via Truncated Total Variation.,2017,5,IEEE Access,,db/journals/access/access5.html#DouSGJ17,https://doi.org/10.1109/ACCESS.2017.2773503 +Haonan Su,Perceptual Enhancement of Low Light Images Based on Two-Step Noise Suppression.,2018,6,IEEE Access,,db/journals/access/access6.html#SuJ18,https://doi.org/10.1109/ACCESS.2018.2790433 +Kanapathippillai Cumanan,Physical Layer Security Jamming: Theoretical Limits and Practical Designs in Wireless Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#CumananXXZDNDK17,https://doi.org/10.1109/ACCESS.2016.2636239 +Mohammad Reza Jabbarpour,A Green Ant-Based method for Path Planning of Unmanned Ground Vehicles.,2017,5,IEEE Access,,db/journals/access/access5.html#JabbarpourZJK17,https://doi.org/10.1109/ACCESS.2017.2656999 +Darong Huang,A New Incipient Fault Diagnosis Method Combining Improved RLS and LMD Algorithm for Rolling Bearings With Strong Background Noise.,2018,6,IEEE Access,,db/journals/access/access6.html#HuangLMZS18,https://doi.org/10.1109/ACCESS.2018.2829803 +Xiaofeng Yuan,Probabilistic Nonlinear Soft Sensor Modeling Based on Generative Topographic Mapping Regression.,2018,6,IEEE Access,,db/journals/access/access6.html#YuanCW18,https://doi.org/10.1109/ACCESS.2018.2798664 +Athira Usha,Linguistic Feature Based Filtering Mechanism for Recommending Posts in a Social Networking Group.,2018,6,IEEE Access,,db/journals/access/access6.html#AthiraT18,https://doi.org/10.1109/ACCESS.2017.2789200 +Congxu Zhu,Cryptanalyzing and Improving a Novel Color Image Encryption Algorithm Using RT-Enhanced Chaotic Tent Maps.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhuS18,https://doi.org/10.1109/ACCESS.2018.2817600 +Xiaoran Wang,Analysis and Optimization of the Novel Inerter-Based Dynamic Vibration Absorbers.,2018,6,IEEE Access,,db/journals/access/access6.html#WangLSSH18,https://doi.org/10.1109/ACCESS.2018.2844086 +Cheng Qin,Fronthaul Load Balancing in Energy Harvesting Powered Cloud Radio Access Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#QinNTL17a,https://doi.org/10.1109/ACCESS.2017.2699198 +Ioannis Avgouleas,Probabilistic Cooperation of a Full-Duplex Relay in Random Access Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#AvgouleasPYA17,https://doi.org/10.1109/ACCESS.2016.2642540 +Chao Yao,Learning Coexistence Discriminative Features for Multi-Class Object Detection.,2018,6,IEEE Access,,db/journals/access/access6.html#YaoSZS18,https://doi.org/10.1109/ACCESS.2018.2852728 +Wenjun Wang,Video Super-Resolution via Residual Learning.,2018,6,IEEE Access,,db/journals/access/access6.html#WangRHCQ18,https://doi.org/10.1109/ACCESS.2018.2829908 +Ganesh R. Naik,Principal Component Analysis Applied to Surface Electromyography: A Comprehensive Review.,2016,4,IEEE Access,,db/journals/access/access4.html#NaikSGAN16,https://doi.org/10.1109/ACCESS.2016.2593013 +Haiyang Che,Reliability Analysis of Load-Sharing Systems Subject to Dependent Degradation Processes and Random Shocks.,2017,5,IEEE Access,,db/journals/access/access5.html#CheZG17,https://doi.org/10.1109/ACCESS.2017.2762727 +Jingxian Liu,RF Energy Harvesting Wireless Powered Sensor Networks for Smart Cities.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuXFZ17,https://doi.org/10.1109/ACCESS.2017.2703847 +Peter Gillingham,800 MB/s DDR NAND Flash Memory Multi-Chip Package With Source-Synchronous Interface for Point-to-Point Ring Topology.,2013,1,IEEE Access,,db/journals/access/access1.html#GillinghamCCKMOPS13,https://doi.org/10.1109/ACCESS.2013.2294433 +Kazuya Kojima,Risk Management of Heatstroke Based on Fast Computation of Temperature and Water Loss Using Weather Data for Exposure to Ambient Heat and Solar Radiation.,2018,6,IEEE Access,,db/journals/access/access6.html#KojimaHHKLSYEHY18,https://doi.org/10.1109/ACCESS.2018.2791962 +Ray-I Chang,Query-Based Learning for Dynamic Particle Swarm Optimization.,2017,5,IEEE Access,,db/journals/access/access5.html#ChangHLCH17,https://doi.org/10.1109/ACCESS.2017.2694843 +Chenglong Wu,Online Multi-Object Tracking via Combining Discriminative Correlation Filters With Making Decision.,2018,6,IEEE Access,,db/journals/access/access6.html#WuSWFXZS18,https://doi.org/10.1109/ACCESS.2018.2858853 +Stephen C. Adams,Feature Selection for Hidden Markov Models and Hidden Semi-Markov Models.,2016,4,IEEE Access,,db/journals/access/access4.html#AdamsBC16,https://doi.org/10.1109/ACCESS.2016.2552478 +Amir H. Jafari,Performance Analysis of Dense Small Cell Networks With Practical Antenna Heights Under Rician Fading.,2018,6,IEEE Access,,db/journals/access/access6.html#JafariLDZ18,https://doi.org/10.1109/ACCESS.2017.2763613 +Zhijia Zhao 0002,Vibration Boundary Control for a One-Dimensional Flexible Beam System With Restricted Input.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaoMRTW18,https://doi.org/10.1109/ACCESS.2018.2863037 +Ting Li 0008,Performance of ZF Linear Equalizers for Single Carrier Massive MIMO Uplink Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#LiT18,https://doi.org/10.1109/ACCESS.2018.2841032 +Maged Abdullah Esmail,On the Performance of Optical Wireless Links Over Random Foggy Channels.,2017,5,IEEE Access,,db/journals/access/access5.html#EsmailFA17,https://doi.org/10.1109/ACCESS.2017.2670682 +Hector Cervantes-Culebro,Constraint-Handling Techniques for the Concurrent Design of a Five-Bar Parallel Robot.,2017,5,IEEE Access,,db/journals/access/access5.html#Cervantes-Culebro17,https://doi.org/10.1109/ACCESS.2017.2764883 +Nasim Moallemi,A Novel Spatio-Temporal Frequency-Domain Imaging Technique for Two-Layer Materials Using Ultrasonic Arrays.,2018,6,IEEE Access,,db/journals/access/access6.html#MoallemiS18,https://doi.org/10.1109/ACCESS.2018.2801842 +Eun-Do Kim,Enhanced Flow Table Management Scheme With an LRU-Based Caching Algorithm for SDN.,2017,5,IEEE Access,,db/journals/access/access5.html#KimCLK17,https://doi.org/10.1109/ACCESS.2017.2771807 +Wei Dai 0004,Robust Regularized Random Vector Functional Link Network and Its Industrial Application.,2017,5,IEEE Access,,db/journals/access/access5.html#DaiCCMC17,https://doi.org/10.1109/ACCESS.2017.2737459 +Dan Song 0006,Data-Driven 3-D Human Body Customization With a Mobile Device.,2018,6,IEEE Access,,db/journals/access/access6.html#SongTDZJ18,https://doi.org/10.1109/ACCESS.2018.2837147 +Chao Liu 0012,Adaptive Blockchain-Based Electric Vehicle Participation Scheme in Smart Grid Platform.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuCZLC18,https://doi.org/10.1109/ACCESS.2018.2835309 +Zhen Xu,Sensitivity Distribution of CCERT Sensor Under Different Excitation Patterns.,2017,5,IEEE Access,,db/journals/access/access5.html#XuJWHJL17,https://doi.org/10.1109/ACCESS.2017.2713834 +Qiuzhen Yan,Error-Tracking Iterative Learning Control for Nonlinearly Parametric Time-Delay Systems With Initial State Errors.,2018,6,IEEE Access,,db/journals/access/access6.html#YanCWZ18,https://doi.org/10.1109/ACCESS.2018.2797099 +Yanshan Li,Survey of Spatio-Temporal Interest Point Detection Algorithms in Video.,2017,5,IEEE Access,,db/journals/access/access5.html#LiXHXL17,https://doi.org/10.1109/ACCESS.2017.2712789 +Palash Sarkar 0002,A Direct Construction of Inter-Group Complementary Code Set.,2018,6,IEEE Access,,db/journals/access/access6.html#SarkarMVM18,https://doi.org/10.1109/ACCESS.2018.2856878 +Xiao Tang,Jamming Mitigation via Hierarchical Security Game for IoT Communications.,2018,6,IEEE Access,,db/journals/access/access6.html#TangRH18,https://doi.org/10.1109/ACCESS.2018.2793280 +Subhendu Bikash Santra,Lyapunov Based Fast Terminal Sliding Mode Q-V Control of Grid Connected Hybrid Solar PV and Wind System.,2018,6,IEEE Access,,db/journals/access/access6.html#SantraKBP18,https://doi.org/10.1109/ACCESS.2018.2850453 +Samar Elaraby,Joint 2D-DOA and Carrier Frequency Estimation Technique Using Nonlinear Kalman Filters for Cognitive Radio.,2017,5,IEEE Access,,db/journals/access/access5.html#ElarabySAM17,https://doi.org/10.1109/ACCESS.2017.2768221 +Dan Meng,Liver Fibrosis Classification Based on Transfer Learning and FCNet for Ultrasound Images.,2017,5,IEEE Access,,db/journals/access/access5.html#MengZCCZH17,https://doi.org/10.1109/ACCESS.2017.2689058 +Lijun Xu,Spatial and Time-Reversal Diversity Aided Least-Symbol-Error-Rate Turbo Receiver for Underwater Acoustic Communications.,2018,6,IEEE Access,,db/journals/access/access6.html#XuZYCJY18,https://doi.org/10.1109/ACCESS.2018.2805816 +Delei Liu,Image Quality Assessment Using Regularity of Color Distribution.,2016,4,IEEE Access,,db/journals/access/access4.html#LiuLS16,https://doi.org/10.1109/ACCESS.2016.2598289 +Xuefeng Yin,Experimental Multipath-Cluster Characteristics of 28-GHz Propagation Channel.,2015,3,IEEE Access,,db/journals/access/access3.html#YinLK15,https://doi.org/10.1109/ACCESS.2016.2517400 +Kurt Schab,Energy Stored by Radiating Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#SchabJCETVG18,https://doi.org/10.1109/ACCESS.2018.2807922 +Hussein A. Abbass,A Review of Theoretical and Practical Challenges of Trusted Autonomy in Big Data.,2016,4,IEEE Access,,db/journals/access/access4.html#AbbassLM16,https://doi.org/10.1109/ACCESS.2016.2571058 +Keunhong Chae,Unambiguous Tracking Technique Based on Sub-Carrier Pulse Grouping for TMBOC-Modulated Signals in GPS.,2016,4,IEEE Access,,db/journals/access/access4.html#ChaeYKJYY16,https://doi.org/10.1109/ACCESS.2016.2627623 +Akhtar Hussain,Robust Optimal Operation of AC/DC Hybrid Microgrids Under Market Price Uncertainties.,2018,6,IEEE Access,,db/journals/access/access6.html#HussainBK18,https://doi.org/10.1109/ACCESS.2017.2784834 +Aini Dai,Design and Simulation of a Genetically Optimized Fuzzy Immune PID Controller for a Novel Grain Dryer.,2017,5,IEEE Access,,db/journals/access/access5.html#DaiZL17,https://doi.org/10.1109/ACCESS.2017.2733760 +Najmeh Madani,Performance Analysis of Non-Orthogonal Multiple Access With Underlaid Device-to-Device Communications.,2018,6,IEEE Access,,db/journals/access/access6.html#MadaniS18,https://doi.org/10.1109/ACCESS.2018.2855753 +Mohammed E. Lotfy,Enhancement of a Small Power System Performance Using Multi-Objective Optimization.,2017,5,IEEE Access,,db/journals/access/access5.html#LotfySFAY17,https://doi.org/10.1109/ACCESS.2017.2692879 +Bin Wang,Nonlinear Modal Decoupling of Multi-Oscillator Systems With Applications to Power Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#WangSK18,https://doi.org/10.1109/ACCESS.2017.2787053 +Navid Khoshavi,Read-Tuned STT-RAM and eDRAM Cache Hierarchies for Throughput and Energy Optimization.,2018,6,IEEE Access,,db/journals/access/access6.html#KhoshaviD18,https://doi.org/10.1109/ACCESS.2018.2813668 +Jaime A. Martins,Hypermedia APIs for the Web of Things.,2017,5,IEEE Access,,db/journals/access/access5.html#MartinsMC17,https://doi.org/10.1109/ACCESS.2017.2755259 +Haiting Chai,Identification of Mammalian Enzymatic Proteins Based on Sequence-Derived Features and Species-Specific Scheme.,2018,6,IEEE Access,,db/journals/access/access6.html#ChaiZ18,https://doi.org/10.1109/ACCESS.2018.2798284 +Licai Zhu,TagCare: Using RFIDs to Monitor the Status of the Elderly Living Alone.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhuWWY17,https://doi.org/10.1109/ACCESS.2017.2716359 +Simone Hantke,Trustability-Based Dynamic Active Learning for Crowdsourced Labelling of Emotional Audio Data.,2018,6,IEEE Access,,db/journals/access/access6.html#HantkeACS18,https://doi.org/10.1109/ACCESS.2018.2858931 +M. Rashid Karim,On Chip Antenna Measurement: A Survey of Challenges and Recent Trends.,2018,6,IEEE Access,,db/journals/access/access6.html#KarimYS18,https://doi.org/10.1109/ACCESS.2018.2821196 +Jordane Lorandel,Fast Power and Performance Evaluation of FPGA-Based Wireless Communication Systems.,2016,4,IEEE Access,,db/journals/access/access4.html#LorandelPH16,https://doi.org/10.1109/ACCESS.2016.2559781 +Yang Wang 0040,A Miniaturized Marchand Balun Model With Short-End and Capacitive Feeding.,2018,6,IEEE Access,,db/journals/access/access6.html#WangL18a,https://doi.org/10.1109/ACCESS.2018.2834948 +Zhikui Chen,Supervised Intra- and Inter-Modality Similarity Preserving Hashing for Cross-Modal Retrieval.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenZMLY18,https://doi.org/10.1109/ACCESS.2018.2832141 +Bin Tang,Digital Signal Modulation Classification With Data Augmentation Using Generative Adversarial Nets in Cognitive Radio Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#TangTZL18,https://doi.org/10.1109/ACCESS.2018.2815741 +Zhaolong Huang,Social-Aware Resource Allocation for Content Dissemination Networks: An Evolutionary Game Approach.,2017,5,IEEE Access,,db/journals/access/access5.html#HuangTFXZ17,https://doi.org/10.1109/ACCESS.2016.2643158 +Ahmed Al-Durra,Adaptive Sliding Mode Observer for Engine Cylinder Pressure Imbalance Under Different Parameter Uncertainties.,2014,2,IEEE Access,,db/journals/access/access2.html#Al-Durra14,https://doi.org/10.1109/ACCESS.2014.2358954 +Wei Yang 0007,Identification of Potential Collective Actions Using Enhanced Gray System Theory on Social Media.,2016,4,IEEE Access,,db/journals/access/access4.html#YangCLL16,https://doi.org/10.1109/ACCESS.2017.2647823 +Peiguo Fu,Finding Abnormal Vessel Trajectories Using Feature Learning.,2017,5,IEEE Access,,db/journals/access/access5.html#FuWLHZ17,https://doi.org/10.1109/ACCESS.2017.2698208 +Tiago M. Fernández-Caramés,A Review on Human-Centered IoT-Connected Smart Labels for the Industry 4.0.,2018,6,IEEE Access,,db/journals/access/access6.html#Fernandez-Carames18,https://doi.org/10.1109/ACCESS.2018.2833501 +Daisuke Murakami,Participatory Sensing Data Tweets for Micro-Urban Real-Time Resiliency Monitoring and Risk Management.,2016,4,IEEE Access,,db/journals/access/access4.html#MurakamiPYM16,https://doi.org/10.1109/ACCESS.2016.2516918 +Kun Gao,Variable Exponent Regularization Approach for Blur Kernel Estimation of Remote Sensing Image Blind Restoration.,2018,6,IEEE Access,,db/journals/access/access6.html#GaoZDH18,https://doi.org/10.1109/ACCESS.2018.2789434 +Yipeng Ding,Human Micro-Doppler Frequency Estimation Approach for Doppler Radar.,2018,6,IEEE Access,,db/journals/access/access6.html#DingLXSW18,https://doi.org/10.1109/ACCESS.2018.2793277 +Lu Ding,Application-Specific Customization of Dynamic Profiling Mechanisms for Sensor Networks.,2015,3,IEEE Access,,db/journals/access/access3.html#DingLSGLL15,https://doi.org/10.1109/ACCESS.2015.2422783 +Amin Azari,Network Lifetime Maximization for Cellular-Based M2M Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#AzariM17,https://doi.org/10.1109/ACCESS.2017.2753283 +Zhiwei Yan,Distributed All-IP Mobility Management Architecture Supported by the NDN Overlay.,2017,5,IEEE Access,,db/journals/access/access5.html#YanGZP17,https://doi.org/10.1109/ACCESS.2016.2639008 +Zhiqiang Yi,An Iterative Channel Estimation Method for Multi-Cell Massive MIMO Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#YiWP18,https://doi.org/10.1109/ACCESS.2018.2854959 +Thanh Nguyen 0004,Classification of Multi-Class BCI Data by Common Spatial Pattern and Fuzzy System.,2018,6,IEEE Access,,db/journals/access/access6.html#NguyenHKGLN18,https://doi.org/10.1109/ACCESS.2018.2841051 +Kai Da Xu,Design of Triplexer Using E-Stub-Loaded Composite Right-/Left-Handed Resonators and Quasi-Lumped Impedance Matching Network.,2018,6,IEEE Access,,db/journals/access/access6.html#XuLLYL18,https://doi.org/10.1109/ACCESS.2018.2819641 +Daosen Zhai,Adaptive Codebook Design and Assignment for Energy Saving in SCMA Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#Zhai17,https://doi.org/10.1109/ACCESS.2017.2764120 +Shelly Vishwakarma,Dictionary Learning With Low Computational Complexity for Classification of Human Micro-Dopplers Across Multiple Carrier Frequencies.,2018,6,IEEE Access,,db/journals/access/access6.html#VishwakarmaR18,https://doi.org/10.1109/ACCESS.2018.2843391 +Bo Ban,Ship Track Regression Based on Support Vector Machine.,2017,5,IEEE Access,,db/journals/access/access5.html#BanYCXW17,https://doi.org/10.1109/ACCESS.2017.2749260 +Xiao Jiang,A Constraint-Programmed Planner for Deep Space Exploration Problems With Table Constraints.,2017,5,IEEE Access,,db/journals/access/access5.html#JiangX17,https://doi.org/10.1109/ACCESS.2017.2744262 +Sheng Jiang,An Approach to Evaluating the Number of Closed Paths in an All-One Base Matrix.,2018,6,IEEE Access,,db/journals/access/access6.html#JiangL18,https://doi.org/10.1109/ACCESS.2018.2819981 +Pablo Padilla,Electromagnetic Near-Field Inhomogeneity Reduction for Image Acquisition Optimization in High-Resolution Multi-Channel Magnetic Resonance Imaging (MRI) Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#PadillaVPL17,https://doi.org/10.1109/ACCESS.2017.2685079 +Qian Shi,Road Detection From Remote Sensing Images by Generative Adversarial Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ShiLL18,https://doi.org/10.1109/ACCESS.2017.2773142 +Weiwei Yuan,Edge-Dual Graph Preserving Sign Prediction for Signed Social Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#YuanHGH17,https://doi.org/10.1109/ACCESS.2017.2746258 +Nils Morozs,Heuristically Accelerated Reinforcement Learning for Dynamic Secondary Spectrum Sharing.,2015,3,IEEE Access,,db/journals/access/access3.html#MorozsCG15,https://doi.org/10.1109/ACCESS.2015.2507158 +Raymond H. Byrne,Energy Management and Optimization Methods for Grid Energy Storage Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#ByrneNCCG18,https://doi.org/10.1109/ACCESS.2017.2741578 +Qiaoqiao Shi,Deep CNN With Multi-Scale Rotation Invariance Features for Ship Classification.,2018,6,IEEE Access,,db/journals/access/access6.html#ShiLZHSG18,https://doi.org/10.1109/ACCESS.2018.2853620 +Shengyao Chen,Quadrature Compressive Sampling for Multiband Radar Echo Signals.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenX17,https://doi.org/10.1109/ACCESS.2017.2753826 +Hao Lin,Flexible Configured OFDM for 5G Air Interface.,2015,3,IEEE Access,,db/journals/access/access3.html#Lin15,https://doi.org/10.1109/ACCESS.2015.2480749 +Ekaterina V. Markova,Flexible Spectrum Management in a Smart City Within Licensed Shared Access Framework.,2017,5,IEEE Access,,db/journals/access/access5.html#MarkovaGODAKS17,https://doi.org/10.1109/ACCESS.2017.2758840 +Haoxiang Wang,Feature Regularization and Deep Learning for Human Resource Recommendation.,2018,6,IEEE Access,,db/journals/access/access6.html#WangLZ18a,https://doi.org/10.1109/ACCESS.2018.2854887 +Edward Li,Sparse Reconstruction of Compressive Sensing Multi-Spectral Data Using an Inter-Spectral Multi-Layered Conditional Random Field Model.,2016,4,IEEE Access,,db/journals/access/access4.html#LiSKW16,https://doi.org/10.1109/ACCESS.2016.2598320 +Filippo Maria Bianchi,Short-Term Electric Load Forecasting Using Echo State Networks and PCA Decomposition.,2015,3,IEEE Access,,db/journals/access/access3.html#BianchiSRS15,https://doi.org/10.1109/ACCESS.2015.2485943 +Chin-Teng Lin,IoT-Based Wireless Polysomnography Intelligent System for Sleep Monitoring.,2018,6,IEEE Access,,db/journals/access/access6.html#LinPCPESWSS18,https://doi.org/10.1109/ACCESS.2017.2765702 +Jiuyu Du,Multi-Objective Optimization Discharge Method for Heating Lithium-Ion Battery at Low Temperatures.,2018,6,IEEE Access,,db/journals/access/access6.html#DuCL18,https://doi.org/10.1109/ACCESS.2018.2837652 +Feng Tian 0007,Secrecy Rate Optimization in Wireless Multi-Hop Full Duplex Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#TianCLYLZY18,https://doi.org/10.1109/ACCESS.2018.2794739 +Onofre A. Morfin,Real-Time SOSM Super-Twisting Combined With Block Control for Regulating Induction Motor Velocity.,2018,6,IEEE Access,,db/journals/access/access6.html#MorfinVBHRV18,https://doi.org/10.1109/ACCESS.2018.2812187 +Jincheng Dai,Does Gaussian Approximation Work Well for the Long-Length Polar Code Construction?,2017,5,IEEE Access,,db/journals/access/access5.html#DaiNSDL17,https://doi.org/10.1109/ACCESS.2017.2692241 +Hui Li 0013,Integrative Method Based on Linear Regression for the Prediction of Zinc-Binding Sites in Proteins.,2017,5,IEEE Access,,db/journals/access/access5.html#LiPWC17,https://doi.org/10.1109/ACCESS.2017.2731872 +Yao-Hsin Chou,A Rule-Based Dynamic Decision-Making Stock Trading System Based on Quantum-Inspired Tabu Search Algorithm.,2014,2,IEEE Access,,db/journals/access/access2.html#ChouKCC14,https://doi.org/10.1109/ACCESS.2014.2352261 +Bao-Jian Gao,A Novel Corporate-Feed Horn Sub-Array Antenna for the 77 GHz-Band.,2018,6,IEEE Access,,db/journals/access/access6.html#GaoRWLLW18,https://doi.org/10.1109/ACCESS.2018.2850309 +Jian Shen 0001,An Efficient Centroid-Based Routing Protocol for Energy Management in WSN-Assisted IoT.,2017,5,IEEE Access,,db/journals/access/access5.html#ShenWWHL17,https://doi.org/10.1109/ACCESS.2017.2749606 +Wei-Chen Wang,A Machine Vision Based Automatic Optical Inspection System for Measuring Drilling Quality of Printed Circuit Boards.,2017,5,IEEE Access,,db/journals/access/access5.html#WangCCC17,https://doi.org/10.1109/ACCESS.2016.2631658 +Andong Wang,Noisy Low-Tubal-Rank Tensor Completion Through Iterative Singular Tube Thresholding.,2018,6,IEEE Access,,db/journals/access/access6.html#WangWWJ18,https://doi.org/10.1109/ACCESS.2018.2850324 +Tongguang Ni,Relative Distance Metric Leaning Based on Clustering Centralization and Projection Vectors Learning for Person Re-Identification.,2018,6,IEEE Access,,db/journals/access/access6.html#NiDCW18,https://doi.org/10.1109/ACCESS.2018.2795020 +Ritamshirsa Choudhuri,Coverage of Targets in Mobile Sensor Networks With Restricted Mobility.,2018,6,IEEE Access,,db/journals/access/access6.html#ChoudhuriD18,https://doi.org/10.1109/ACCESS.2018.2801941 +Tsubasa Hirakawa,Tree-Wise Discriminative Subtree Selection for Texture Image Labeling.,2017,5,IEEE Access,,db/journals/access/access5.html#HirakawaTKRKWN17,https://doi.org/10.1109/ACCESS.2017.2725319 +Dong Wu,Long Short-Term Memory With Quadratic Connections in Recursive Neural Networks for Representing Compositional Semantics.,2017,5,IEEE Access,,db/journals/access/access5.html#WuC17,https://doi.org/10.1109/ACCESS.2016.2647384 +Ashish Dutt,A Systematic Review on Educational Data Mining.,2017,5,IEEE Access,,db/journals/access/access5.html#DuttIH17,https://doi.org/10.1109/ACCESS.2017.2654247 +Linlin Tan,A Segmented Power-Efficiency Coordinated Control Strategy for Bidirectional Wireless Power Transmission Systems With Variable Structural Parameters.,2018,6,IEEE Access,,db/journals/access/access6.html#TanZZDZLH18,https://doi.org/10.1109/ACCESS.2018.2852638 +Yassine Maalej,Vanets Meet Autonomous Vehicles: Multimodal Surrounding Recognition Using Manifold Alignment.,2018,6,IEEE Access,,db/journals/access/access6.html#MaalejSAG18,https://doi.org/10.1109/ACCESS.2018.2839561 +Ali Mehrdadian,Analysis of Graphene-Based Multilayered Three-Dimensional Structures by the Extended Method of Lines.,2018,6,IEEE Access,,db/journals/access/access6.html#MehrdadianF18,https://doi.org/10.1109/ACCESS.2018.2805640 +Fadi Al-Turjman,Seamless Key Agreement Framework for Mobile-Sink in IoT Based Cloud-Centric Secured Public Safety Sensor Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#Al-TurjmanEEND17,https://doi.org/10.1109/ACCESS.2017.2766090 +Kenshi Saho,Automatic Parameter Setting Method for an Accurate Kalman Filter Tracker Using an Analytical Steady-State Performance Index.,2015,3,IEEE Access,,db/journals/access/access3.html#SahoM15,https://doi.org/10.1109/ACCESS.2015.2486766 +Mehdi Bagheri,Transformer Fault Condition Prognosis Using Vibration Signals Over Cloud Environment.,2018,6,IEEE Access,,db/journals/access/access6.html#BagheriZN18,https://doi.org/10.1109/ACCESS.2018.2809436 +Xiao Ling,Simulation of Switched Reluctance Motor Drive System Based on Multi-Physics Modeling Method.,2017,5,IEEE Access,,db/journals/access/access5.html#LingLGHL17,https://doi.org/10.1109/ACCESS.2017.2775340 +Weili Dai,Voltage Regulation System of Doubly Salient Electromagnetic Generator Based on Indirect Adaptive Fuzzy Control.,2017,5,IEEE Access,,db/journals/access/access5.html#DaiYHC17,https://doi.org/10.1109/ACCESS.2017.2719048 +Christopher Huth,Securing Systems With Indispensable Entropy: LWE-Based Lossless Computational Fuzzy Extractor for the Internet of Things.,2017,5,IEEE Access,,db/journals/access/access5.html#HuthBGDG17,https://doi.org/10.1109/ACCESS.2017.2713835 +Abdulkadir Karaagac,Hybrid Schedule Management in 6TiSCH Networks: The Coexistence of Determinism and Flexibility.,2018,6,IEEE Access,,db/journals/access/access6.html#KaraagacMH18,https://doi.org/10.1109/ACCESS.2018.2849090 +Xingzhen Bai,Collaborative Actuation of Wireless Sensor and Actuator Networks for the Agriculture Industry.,2017,5,IEEE Access,,db/journals/access/access5.html#BaiLCPSW17,https://doi.org/10.1109/ACCESS.2017.2725342 +Peter Eder-Neuhauser,Resilience and Security: A Qualitative Survey of Urban Smart Grid Architectures.,2016,4,IEEE Access,,db/journals/access/access4.html#Eder-NeuhauserZ16,https://doi.org/10.1109/ACCESS.2016.2531279 +Peng Liu 0020,On the Unambiguous Distance of Multicarrier Phase Ranging With Random Hopped Frequencies.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuQZW17,https://doi.org/10.1109/ACCESS.2017.2703614 +Jiafu Wan,Cloud robotics: Current status and open issues.,2016,4,IEEE Access,,db/journals/access/access4.html#WanTYLWV16,https://doi.org/10.1109/ACCESS.2016.2574979 +Selcuk Bassoy,Load Aware Self-Organising User-Centric Dynamic CoMP Clustering for 5G Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#BassoyJIX16,https://doi.org/10.1109/ACCESS.2016.2569824 +Fatma Benkhelifa,Precoding Design of MIMO Amplify-and-Forward Communication System With an Energy Harvesting Relay and Possibly Imperfect CSI.,2017,5,IEEE Access,,db/journals/access/access5.html#BenkhelifaA17,https://doi.org/10.1109/ACCESS.2016.2646387 +Yantao Li,Sensor-Based Continuous Authentication Using Cost-Effective Kernel Ridge Regression.,2018,6,IEEE Access,,db/journals/access/access6.html#LiHZD18,https://doi.org/10.1109/ACCESS.2018.2841347 +Hongjun Yang,Active Control of an Elastic Beam Based on State and Input Constraints.,2018,6,IEEE Access,,db/journals/access/access6.html#YangL18a,https://doi.org/10.1109/ACCESS.2018.2805800 +Najam Ul Hasan,Network Selection and Channel Allocation for Spectrum Sharing in 5G Heterogeneous Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#HasanEEKAJ16,https://doi.org/10.1109/ACCESS.2016.2533394 +Chun-Cheng Lin,Peak Load Shifting in the Internet of Energy With Energy Trading Among End-Users.,2017,5,IEEE Access,,db/journals/access/access5.html#LinDLC17,https://doi.org/10.1109/ACCESS.2017.2668143 +Jacobo Fernández-Vargas,Effects of Using Virtual Reality and Virtual Avatar on Hand Motion Reconstruction Accuracy and Brain Activity.,2017,5,IEEE Access,,db/journals/access/access5.html#Fernandez-Vargas17,https://doi.org/10.1109/ACCESS.2017.2766174 +Leibing Yan,An Improved NLOS Identification and Mitigation Approach for Target Tracking in Wireless Sensor Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#YanLZ17,https://doi.org/10.1109/ACCESS.2017.2677480 +Heng Wang 0003,A Global Clock Skew Estimation Scheme for Hierarchical Wireless Sensor Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#WangSLW17,https://doi.org/10.1109/ACCESS.2017.2759165 +Baodong Ma,Spectral Identification of Stress Types for Maize Seedlings Under Single and Combined Stresses.,2018,6,IEEE Access,,db/journals/access/access6.html#MaPZW18,https://doi.org/10.1109/ACCESS.2018.2810084 +Tao Peng 0009,Simulation Study on Dispersion Properties of As2S3 Three-Bridge Suspended-Core Fiber.,2017,5,IEEE Access,,db/journals/access/access5.html#PengXW17,https://doi.org/10.1109/ACCESS.2017.2741974 +Hooman Samani,Robotic Automated External Defibrillator Ambulance for Emergency Medical Service in Smart Cities.,2016,4,IEEE Access,,db/journals/access/access4.html#SamaniZ16,https://doi.org/10.1109/ACCESS.2016.2514263 +Mohammad Reza Amini,Discrete-Time Markov Chain Analysis of Energy Efficiency in a CR Network Regarding Primary and Secondary Traffic With Primary User Returns.,2018,6,IEEE Access,,db/journals/access/access6.html#AminiMO18,https://doi.org/10.1109/ACCESS.2018.2825291 +Xiaoying Liu,Towards Secure and Energy-Efficient CRNs Via Embracing Interference: A Stochastic Geometry Approach.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuZLWD18,https://doi.org/10.1109/ACCESS.2018.2852628 +Xu Zhang 0009,A Frequency Regulation Strategy for Wind Power Based on Limited Over-Speed De-Loading Curve Partitioning.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangZYC18,https://doi.org/10.1109/ACCESS.2018.2825363 +Wooyeol Choi,Design and Implementation of a Full-Duplex Pipelined MAC Protocol for Multihop Wireless Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#ChoiPKSL17,https://doi.org/10.1109/ACCESS.2017.2731368 +Min Xu 0003,Kinship Measurement on Face Images by Structured Similarity Fusion.,2016,4,IEEE Access,,db/journals/access/access4.html#XuS16,https://doi.org/10.1109/ACCESS.2016.2635147 +Sidra Sultana,Computational Conversion via Translation Rules for Transforming C++ Code Into UPPAAL's Automata.,2017,5,IEEE Access,,db/journals/access/access5.html#SultanaA17,https://doi.org/10.1109/ACCESS.2017.2728860 +Yong Chen 0007,A Method of Fiber Bragg Grating Sensing Signal De-Noise Based on Compressive Sensing.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenLL18,https://doi.org/10.1109/ACCESS.2018.2819647 +Qingli Ma,When Will You Have a New Mobile Phone? An Empirical Answer From Big Data.,2016,4,IEEE Access,,db/journals/access/access4.html#MaZZYW16,https://doi.org/10.1109/ACCESS.2016.2635805 +Zhongda Lu,Event-Triggered H∞ Fuzzy Filtering for Networked Control Systems With Quantization and Delays.,2018,6,IEEE Access,,db/journals/access/access6.html#LuRZX18,https://doi.org/10.1109/ACCESS.2018.2819244 +Qichao Xu,Optimal Control Theory-Based Epidemic Information Spreading Scheme for Mobile Social Users With Energy Constraint.,2017,5,IEEE Access,,db/journals/access/access5.html#XuSY17,https://doi.org/10.1109/ACCESS.2017.2720759 +Xi Liu,Maximum Correntropy Kalman Filter With State Constraints.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuCZQC17,https://doi.org/10.1109/ACCESS.2017.2769965 +Yuan Cao,Binary Hashing for Approximate Nearest Neighbor Search on Big Data: A Survey.,2018,6,IEEE Access,,db/journals/access/access6.html#CaoQZKLLG18,https://doi.org/10.1109/ACCESS.2017.2781360 +Yuping Cao,Quality-Relevant Batch Process Fault Detection Using a Multiway Multi-Subspace CVA Method.,2017,5,IEEE Access,,db/journals/access/access5.html#CaoHDT17,https://doi.org/10.1109/ACCESS.2017.2764538 +Mina Askari,On Sum-Rate Maximization Approach to Network Beamforming and Power Allocation for Asynchronous Single-Carrier Two-Way Relay Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#AskariS17,https://doi.org/10.1109/ACCESS.2017.2692210 +Xiaoping Wu,Motion Parameter Capturing of Multiple Mobile Targets in Robotic Sensor Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#WuWFHW18,https://doi.org/10.1109/ACCESS.2018.2830814 +Ernest Greene,Computational Scaling of Shape Similarity That has Potential for Neuromorphic Implementation.,2018,6,IEEE Access,,db/journals/access/access6.html#GreeneM18,https://doi.org/10.1109/ACCESS.2018.2853656 +Mengying Jiang,Extreme Learning Machine With Enhanced Composite Feature for Spectral-Spatial Hyperspectral Image Classification.,2018,6,IEEE Access,,db/journals/access/access6.html#JiangCL18,https://doi.org/10.1109/ACCESS.2018.2825978 +Zhiguo Ding,MIMO-NOMA Design for Small Packet Transmission in the Internet of Things.,2016,4,IEEE Access,,db/journals/access/access4.html#DingDP16,https://doi.org/10.1109/ACCESS.2016.2551040 +Fei Richard Yu,Virtualization for Distributed Ledger Technology (vDLT).,2018,6,IEEE Access,,db/journals/access/access6.html#YuLHSZ18,https://doi.org/10.1109/ACCESS.2018.2829141 +Jin Jin 0002,Achievable Degrees of Freedom for the Two-Cell Two-Hop MIMO Interference Channel With Half-Duplex Relays.,2017,5,IEEE Access,,db/journals/access/access5.html#JinGLLW17,https://doi.org/10.1109/ACCESS.2017.2656558 +Behrouz Maham,Neuro-Spike Communications With Multiple Synapses Under Inter-Neuron Interference.,2018,6,IEEE Access,,db/journals/access/access6.html#MahamK18,https://doi.org/10.1109/ACCESS.2018.2854878 +Ning Fu,Sub-Nyquist Sampling and Recovery of Pulse Streams With the Real Parts of Fourier Coefficients.,2017,5,IEEE Access,,db/journals/access/access5.html#FuHQZ17,https://doi.org/10.1109/ACCESS.2017.2763421 +Zong-Heng Wei,A Fair Multi-Channel Assignment Algorithm With Practical Implementation in Distributed Cognitive Radio Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#WeiH18,https://doi.org/10.1109/ACCESS.2018.2808479 +Aftab Khan,Forensic Video Analysis: Passive Tracking System for Automated Person of Interest (POI) Localization.,2018,6,IEEE Access,,db/journals/access/access6.html#KhanRWKUKAM18,https://doi.org/10.1109/ACCESS.2018.2856936 +Byung-Seok Kang,Distributed Degree-Based Link Scheduling for Collision Avoidance in Wireless Sensor Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#KangMC16,https://doi.org/10.1109/ACCESS.2016.2622720 +Lussac P. Maia,Environmental Model-Based Time-Reversal Underwater Communications.,2018,6,IEEE Access,,db/journals/access/access6.html#MaiaSJ18,https://doi.org/10.1109/ACCESS.2017.2724304 +Minhong Sun,Statistical Resolution Limit Analysis of Two Closely Spaced Signal Sources Using Rao Test.,2017,5,IEEE Access,,db/journals/access/access5.html#SunJSL17,https://doi.org/10.1109/ACCESS.2017.2760885 +Xiao Tu,Novel Multiplex PageRank in Multilayer Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#TuJSZ18,https://doi.org/10.1109/ACCESS.2018.2807778 +C. Dhanamjayulu,Implementation and Comparison of Symmetric and Asymmetric Multilevel Inverters for Dynamic Loads.,2018,6,IEEE Access,,db/journals/access/access6.html#DhanamjayuluM18,https://doi.org/10.1109/ACCESS.2017.2775203 +Sohag Kabir,Uncertainty-Aware Dynamic Reliability Analysis Framework for Complex Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#KabirYAP18,https://doi.org/10.1109/ACCESS.2018.2843166 +Daeyoung Choi,In Vivo Fascicle Bifurcation Imaging of Rat Sciatic Nerve Using Swept-Source Optical Coherence Tomography.,2018,6,IEEE Access,,db/journals/access/access6.html#ChoiLJK18,https://doi.org/10.1109/ACCESS.2018.2796625 +Feng Wang 0010,Robust MISO Beamforming Under the Deterministic Model in Two-Tier Heterogeneous Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#WangCWT17,https://doi.org/10.1109/ACCESS.2017.2731423 +Xing Gao,Progressive Image Retrieval With Quality Guarantee Under MapReduce Framework.,2018,6,IEEE Access,,db/journals/access/access6.html#GaoSZLLLL18,https://doi.org/10.1109/ACCESS.2018.2842796 +Qi Kang,Opposition-Based Hybrid Strategy for Particle Swarm Optimization in Noisy Environments.,2018,6,IEEE Access,,db/journals/access/access6.html#KangXZM18,https://doi.org/10.1109/ACCESS.2018.2809457 +Bing Yu,A Novel Control Approach for a Thrust Vector System With an Electromechanical Actuator.,2017,5,IEEE Access,,db/journals/access/access5.html#YuS17,https://doi.org/10.1109/ACCESS.2017.2731779 +Mikhail Asiatici,Virtualized Execution Runtime for FPGA Accelerators in the Cloud.,2017,5,IEEE Access,,db/journals/access/access5.html#AsiaticiGVFI17,https://doi.org/10.1109/ACCESS.2017.2661582 +Cuili Yao,A Convolutional Neural Network Model for Online Medical Guidance.,2016,4,IEEE Access,,db/journals/access/access4.html#YaoQJGLCF16,https://doi.org/10.1109/ACCESS.2016.2594839 +Mario Vega-Barbas,Interaction Patterns for Smart Spaces: A Confident Interaction Design Solution for Pervasive Sensitive IoT Services.,2018,6,IEEE Access,,db/journals/access/access6.html#Vega-BarbasPAS18,https://doi.org/10.1109/ACCESS.2017.2777999 +Zongan Li,Processing and 3D printing of Gradient Heterogeneous Bio-Model Based on Computer Tomography Images.,2016,4,IEEE Access,,db/journals/access/access4.html#LiYWSZXLT16,https://doi.org/10.1109/ACCESS.2016.2635661 +Qinhui Huang,Low Complexity Coefficient Selection Algorithms for Compute-and-Forward.,2017,5,IEEE Access,,db/journals/access/access5.html#HuangB17,https://doi.org/10.1109/ACCESS.2017.2736543 +Congxuan Zhang,Guided Filtering: Toward Edge-Preserving for Optical Flow.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangGCQLL18,https://doi.org/10.1109/ACCESS.2018.2831920 +Chuan Zhu,A Tree-Cluster-Based Data-Gathering Algorithm for Industrial WSNs With a Mobile Sink.,2015,3,IEEE Access,,db/journals/access/access3.html#ZhuWHSW15,https://doi.org/10.1109/ACCESS.2015.2424452 +Xiaolong Chen,Space-Range-Doppler Focus-Based Low-observable Moving Target Detection Using Frequency Diverse Array MIMO Radar.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenCGHH18,https://doi.org/10.1109/ACCESS.2018.2863745 +Yiqiang Sheng,Scalable Intelligence-Enabled Networking With Traffic Engineering in 5G Scenarios for Future Audio-Visual-Tactile Internet.,2018,6,IEEE Access,,db/journals/access/access6.html#Sheng18,https://doi.org/10.1109/ACCESS.2018.2825980 +Ignacio Mas,Dynamic Control of Mobile Multirobot Systems: The Cluster Space Formulation.,2014,2,IEEE Access,,db/journals/access/access2.html#MasK14,https://doi.org/10.1109/ACCESS.2014.2325742 +F. R. Islam,Aromatic Network: A Novel Structure for Power Distribution System.,2017,5,IEEE Access,,db/journals/access/access5.html#IslamPMLP17,https://doi.org/10.1109/ACCESS.2017.2767037 +Borja Bordel,An Intra-Slice Security Solution for Emerging 5G Networks Based on Pseudo-Random Number Generators.,2018,6,IEEE Access,,db/journals/access/access6.html#BordelLAR18,https://doi.org/10.1109/ACCESS.2018.2815567 +Kai-Lung Hua,A Bandwidth-Efficient Stereo Video Streaming System.,2017,5,IEEE Access,,db/journals/access/access5.html#Hua17,https://doi.org/10.1109/ACCESS.2017.2710100 +Raheel Zafar,Prediction of Human Brain Activity Using Likelihood Ratio Based Score Fusion.,2017,5,IEEE Access,,db/journals/access/access5.html#ZafarDMKRAAR17,https://doi.org/10.1109/ACCESS.2017.2698068 +Siyang Li,Dynamic Surface Adaptive Fuzzy Control of Three-Phase Active Power Filter.,2016,4,IEEE Access,,db/journals/access/access4.html#LiLF16,https://doi.org/10.1109/ACCESS.2016.2636909 +Girdhari Chaudhary,Reflection-Type Topologies With Arbitrary Wideband Flat Group Delays Using Coupled Lines.,2018,6,IEEE Access,,db/journals/access/access6.html#ChaudharyJ18,https://doi.org/10.1109/ACCESS.2017.2779125 +Hyungmin Cho,Impact of Microarchitectural Differences of RISC-V Processor Cores on Soft Error Effects.,2018,6,IEEE Access,,db/journals/access/access6.html#Cho18,https://doi.org/10.1109/ACCESS.2018.2858773 +Mingwei Lin,Efficient Sequential Data Migration Scheme Considering Dying Data for HDD/SSD Hybrid Storage Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#LinCXLY17,https://doi.org/10.1109/ACCESS.2017.2766667 +Xiaoyun Zhong,Bifurcation and Periodic Solutions in Memristive Hyperchaotic System.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhongPSG18,https://doi.org/10.1109/ACCESS.2018.2829207 +Zi Wang,Eye Recognition With Mixed Convolutional and Residual Network (MiCoRe-Net).,2018,6,IEEE Access,,db/journals/access/access6.html#WangLSS18,https://doi.org/10.1109/ACCESS.2018.2812208 +Marko Kos,A Wearable Device and System for Movement and Biometric Data Acquisition for Sports Applications.,2017,5,IEEE Access,,db/journals/access/access5.html#KosK17,https://doi.org/10.1109/ACCESS.2017.2675538 +Zhaoyang He,An Alpha-FL Algorithm for Discovering Free Loop Structures From Incomplete Event Logs.,2018,6,IEEE Access,,db/journals/access/access6.html#HeDWQS18,https://doi.org/10.1109/ACCESS.2018.2840818 +Mohammad Javad Shafiee,Deep Randomly-Connected Conditional Random Fields For Image Segmentation.,2017,5,IEEE Access,,db/journals/access/access5.html#ShafieeWF17,https://doi.org/10.1109/ACCESS.2016.2603976 +Xiaodong Lin,Coordinated Control Strategies for SMES-Battery Hybrid Energy Storage Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#LinL17a,https://doi.org/10.1109/ACCESS.2017.2761889 +Faisal AlGashaam,Multispectral Periocular Classification With Multimodal Compact Multi-Linear Pooling.,2017,5,IEEE Access,,db/journals/access/access5.html#AlGashaamNACBB17,https://doi.org/10.1109/ACCESS.2017.2731118 +Ibrahim A. Hemadeh,Layered Multi-Group Steered Space-Time Shift-Keying for Millimeter-Wave Communications.,2016,4,IEEE Access,,db/journals/access/access4.html#HemadehEWH16,https://doi.org/10.1109/ACCESS.2016.2552078 +Fei Song 0001,Smart Collaborative Connection Management for Identifier-Based Network.,2017,5,IEEE Access,,db/journals/access/access5.html#SongZKZYZ17,https://doi.org/10.1109/ACCESS.2017.2700337 +Seng Cheong Loke,A Software Application for Survey Form Design and Processing for Scientific Use.,2017,5,IEEE Access,,db/journals/access/access5.html#LokeKH17,https://doi.org/10.1109/ACCESS.2017.2719284 +Takaya Yamazato,The Uplink Visible Light Communication Beacon System for Universal Traffic Management.,2017,5,IEEE Access,,db/journals/access/access5.html#YamazatoKOFYAK17,https://doi.org/10.1109/ACCESS.2017.2759179 +Youping Fan,Integrated Approach for Online Dynamic Security Assessment With Credibility and Visualization Based on Exploring Connotative Associations in Massive Data.,2017,5,IEEE Access,,db/journals/access/access5.html#FanLZ17,https://doi.org/10.1109/ACCESS.2017.2739818 +Anh-Dung Vo,Opinion-Aspect Relations in Cognizing Customer Feelings via Reviews.,2018,6,IEEE Access,,db/journals/access/access6.html#VoNO18,https://doi.org/10.1109/ACCESS.2018.2797224 +Wei Sun 0011,WNN-LQE: Wavelet-Neural-Network-Based Link Quality Estimation for Smart Grid WSNs.,2017,5,IEEE Access,,db/journals/access/access5.html#SunLLCMY17,https://doi.org/10.1109/ACCESS.2017.2723360 +Yang Liu 0065,A Closed-Form and Stochastic Wall Insertion Loss Model for Dense Small Cell Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuYWLLZ18,https://doi.org/10.1109/ACCESS.2018.2796082 +Tian Zhang 0002,Data Offloading in Mobile Edge Computing: A Coalition and Pricing Based Approach.,2018,6,IEEE Access,,db/journals/access/access6.html#Zhang18,https://doi.org/10.1109/ACCESS.2017.2785265 +Cong Sun 0001,A Privacy-Preserving Mutual Authentication Resisting DoS Attacks in VANETs.,2017,5,IEEE Access,,db/journals/access/access5.html#SunLXM17,https://doi.org/10.1109/ACCESS.2017.2768499 +Jie Dong,Joint Data-Driven Fault Diagnosis Integrating Causality Graph With Statistical Process Monitoring for Complex Industrial Processes.,2017,5,IEEE Access,,db/journals/access/access5.html#DongWZMP17,https://doi.org/10.1109/ACCESS.2017.2766235 +Shingo Kato,Priority Control in Communication Networks for Accuracy-Freshness Tradeoff in Real-Time Road-Traffic Information Delivery.,2017,5,IEEE Access,,db/journals/access/access5.html#KatoS17,https://doi.org/10.1109/ACCESS.2017.2767058 +Toan X. Doan,Energy Harvesting-Based D2D Communications in the Presence of Interference and Ambient RF Sources.,2017,5,IEEE Access,,db/journals/access/access5.html#DoanHDN17,https://doi.org/10.1109/ACCESS.2017.2681696 +Jianhui Liu,Offloading Schemes in Mobile Edge Computing for Ultra-Reliable Low Latency Communications.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuZ18,https://doi.org/10.1109/ACCESS.2018.2800032 +Yujin Zhang,Fractional Autoregressive Integrated Moving Average and Finite-Element Modal: The Forecast of Tire Vibration Trend.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangSKCK18,https://doi.org/10.1109/ACCESS.2018.2855147 +Jinn-Tsong Tsai,Data-Driven Modeling Using System Integration Scaling Factors and Positioning Performance of an Exposure Machine System.,2017,5,IEEE Access,,db/journals/access/access5.html#TsaiCCC17,https://doi.org/10.1109/ACCESS.2017.2699279 +Idriss Saleh Bachar,Assessing the Radio Access Technologies Impact on the Universal Access Index.,2017,5,IEEE Access,,db/journals/access/access5.html#BacharKFA17,https://doi.org/10.1109/ACCESS.2016.2615467 +Yong Li 0008,Software-Defined Network Function Virtualization: A Survey.,2015,3,IEEE Access,,db/journals/access/access3.html#LiC15,https://doi.org/10.1109/ACCESS.2015.2499271 +Basim Hafidh,SITE: The Simple Internet of Things Enabler for Smart Homes.,2017,5,IEEE Access,,db/journals/access/access5.html#HafidhOADE17,https://doi.org/10.1109/ACCESS.2017.2653079 +Naveen Mishra,An Investigation on Compact Ultra-Thin Triple Band Polarization Independent Metamaterial Absorber for Microwave Frequency Applications.,2017,5,IEEE Access,,db/journals/access/access5.html#MishraCCKC17,https://doi.org/10.1109/ACCESS.2017.2675439 +Gheorghita Ghinea,Gradient-Orientation-Based PCA Subspace for Novel Face Recognition.,2014,2,IEEE Access,,db/journals/access/access2.html#GhineaKK14,https://doi.org/10.1109/ACCESS.2014.2348018 +Dongxu Li,Gender Identification via Reposting Behaviors in Social Media.,2018,6,IEEE Access,,db/journals/access/access6.html#LiLJ18,https://doi.org/10.1109/ACCESS.2017.2785813 +Yuming Fang,Robustness Analysis of Pedestrian Detectors for Surveillance.,2018,6,IEEE Access,,db/journals/access/access6.html#FangDYLL18,https://doi.org/10.1109/ACCESS.2018.2840329 +Dapeng Li 0001,M2M Access With Dynamic Cognitive Virtual Operators: A Data Aggregator's Perspective.,2017,5,IEEE Access,,db/journals/access/access5.html#LiZGZ17,https://doi.org/10.1109/ACCESS.2017.2690674 +Guillem Femenias,Downlink Scheduling and Resource Allocation for 5G MIMO-Multicarrier: OFDM vs FBMC/OQAM.,2017,5,IEEE Access,,db/journals/access/access5.html#FemeniasRMO17,https://doi.org/10.1109/ACCESS.2017.2729599 +Hongbo Li,Narrowing Support Searching Range in Maintaining Arc Consistency for Solving Constraint Satisfaction Problems.,2017,5,IEEE Access,,db/journals/access/access5.html#Li17,https://doi.org/10.1109/ACCESS.2017.2690672 +Suman Kumar Choudhury,An Evaluation of Background Subtraction for Object Detection Vis-a-Vis Mitigating Challenging Scenarios.,2016,4,IEEE Access,,db/journals/access/access4.html#ChoudhurySBM16,https://doi.org/10.1109/ACCESS.2016.2608847 +Yanbo Che,Large Signal Modeling Method for AC/DC Independent Power System in dq-Coordinates.,2018,6,IEEE Access,,db/journals/access/access6.html#CheXYZZ18,https://doi.org/10.1109/ACCESS.2018.2834538 +Xiaoyang Li,A Bayesian Optimal Design for Accelerated Degradation Testing Based on the Inverse Gaussian Process.,2017,5,IEEE Access,,db/journals/access/access5.html#LiHZK17,https://doi.org/10.1109/ACCESS.2017.2683533 +Shengquan Li,Output Predictor-Based Active Disturbance Rejection Control for a Wind Energy Conversion System With PMSG.,2017,5,IEEE Access,,db/journals/access/access5.html#LiL17,https://doi.org/10.1109/ACCESS.2017.2681697 +Vignesh Raja Balu,Computationally Minimized X-Part for FX Correlator in Big-Data Interferometers.,2017,5,IEEE Access,,db/journals/access/access5.html#BaluH17,https://doi.org/10.1109/ACCESS.2017.2772841 +Lianrong Zheng,Detection of Respiration Movement Asymmetry Between the Left and Right Lungs Using Mutual Information and Transfer Entropy.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhengLCWJL18,https://doi.org/10.1109/ACCESS.2017.2772819 +Hengyong Yu,Sart-Type Half-Threshold Filtering Approach for CT Reconstruction.,2014,2,IEEE Access,,db/journals/access/access2.html#Yu014,https://doi.org/10.1109/ACCESS.2014.2326165 +Md Masud Rana 0002,Modelling the Microgrid and Its Parameter Estimations Considering Fading Channels.,2017,5,IEEE Access,,db/journals/access/access5.html#Rana17a,https://doi.org/10.1109/ACCESS.2017.2712790 +Minseok Song 0002,Minimizing Power Consumption in Video Servers by the Combined Use of Solid-State Disks and Multi-Speed Disks.,2018,6,IEEE Access,,db/journals/access/access6.html#Song18,https://doi.org/10.1109/ACCESS.2018.2832221 +Zeeshan Hameed Mir,Collaborative Topology Control for Many-to-One Communications in Wireless Sensor Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#MirK17,https://doi.org/10.1109/ACCESS.2017.2722379 +Ming Li 0041,On Performance of Optical Wireless Communication With Spatial Multiplexing Towards 5-G.,2018,6,IEEE Access,,db/journals/access/access6.html#Li18b,https://doi.org/10.1109/ACCESS.2018.2837145 +Xiaofang Wang,Cycle Structure and Adjacency Graphs of a Class of LFSRs and a New Family of De Bruijn Cycles.,2018,6,IEEE Access,,db/journals/access/access6.html#WangJ18b,https://doi.org/10.1109/ACCESS.2018.2854265 +Jinzhuo Wang,Beyond Knowledge Distillation: Collaborative Learning for Bidirectional Model Assistance.,2018,6,IEEE Access,,db/journals/access/access6.html#WangWG18,https://doi.org/10.1109/ACCESS.2018.2854918 +Sang-Il Choi,Face Recognition Using Composite Features Based on Discriminant Analysis.,2018,6,IEEE Access,,db/journals/access/access6.html#ChoiLCS18,https://doi.org/10.1109/ACCESS.2018.2812725 +Jinglei Li,The Connectivity of Selfish Wireless Networks.,2015,3,IEEE Access,,db/journals/access/access3.html#LiYKH15,https://doi.org/10.1109/ACCESS.2015.2498298 +Xiaoyong Wu,On Favorable Propagation in Massive MIMO Systems and Different Antenna Configurations.,2017,5,IEEE Access,,db/journals/access/access5.html#WuBL17,https://doi.org/10.1109/ACCESS.2017.2695007 +Xiao-Quan Sun,Robust Nonparallel Proximal Support Vector Machine With Lp-Norm Regularization.,2018,6,IEEE Access,,db/journals/access/access6.html#SunCSLW18,https://doi.org/10.1109/ACCESS.2018.2822546 +Yi-Fei Pu,Measurement Units and Physical Dimensions of Fractance-Part I: Position of Purely Ideal Fractor in Chua's Axiomatic Circuit Element System and Fractional-Order Reactance of Fractor in Its Natural Implementation.,2016,4,IEEE Access,,db/journals/access/access4.html#Pu16,https://doi.org/10.1109/ACCESS.2016.2585818 +Sohail Taheri,Efficient Implementation of Filter Bank Multicarrier Systems Using Circular Fast Convolution.,2017,5,IEEE Access,,db/journals/access/access5.html#TaheriGXZ17,https://doi.org/10.1109/ACCESS.2017.2670922 +Yanchun Wu,Temporal Action Detection Based on Action Temporal Semantic Continuity.,2018,6,IEEE Access,,db/journals/access/access6.html#WuYWLDLY18,https://doi.org/10.1109/ACCESS.2018.2842428 +Mohammed Faisal,I3MS: Intelligent Multi-Sensor Multi-Baseline Mapping System.,2018,6,IEEE Access,,db/journals/access/access6.html#FaisalMA18,https://doi.org/10.1109/ACCESS.2017.2788422 +Lin Tao,Outlet: Outsourcing Wearable Computing to the Ambient Mobile Computing Edge.,2018,6,IEEE Access,,db/journals/access/access6.html#TaoLW18,https://doi.org/10.1109/ACCESS.2018.2814215 +Yifan Xu 0003,A One-Leader Multi-Follower Bayesian-Stackelberg Game for Anti-Jamming Transmission in UAV Communication Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#XuRCLJLYX18,https://doi.org/10.1109/ACCESS.2018.2828033 +Wen Xie,POLSAR Image Classification via Clustering-WAE Classification Model.,2018,6,IEEE Access,,db/journals/access/access6.html#XieXZR18,https://doi.org/10.1109/ACCESS.2018.2852768 +Dazhuang Wang,Research on Robust Model Predictive Control for Electro-Hydraulic Servo Active Suspension Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#WangZGY18,https://doi.org/10.1109/ACCESS.2017.2787663 +Daxin Tian,Analytical Model of Spread of Epidemics in Open Finite Regions.,2017,5,IEEE Access,,db/journals/access/access5.html#TianLSCW17,https://doi.org/10.1109/ACCESS.2017.2699970 +Wenqiang Ji,Decentralized Fixed-Order Piecewise Affine Dynamic Output Feedback Controller Design for Discrete-Time Nonlinear Large-Scale Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#JiWQ17,https://doi.org/10.1109/ACCESS.2017.2663525 +Xenofon Fafoutis,Experiences and Lessons Learned From Making IoT Sensing Platforms for Large-Scale Deployments.,2018,6,IEEE Access,,db/journals/access/access6.html#FafoutisEPC18,https://doi.org/10.1109/ACCESS.2017.2787418 +Mubashir Husain Rehmani,IEEE Access Special Section Editorial Smart Grids: a Hub of Interdisciplinary Research.,2015,3,IEEE Access,,db/journals/access/access3.html#RehmaniERRR15,https://doi.org/10.1109/ACCESS.2016.2516158 +Ho Kieu Diem,A Differential Evolution-Based Clustering for Probability Density Functions.,2018,6,IEEE Access,,db/journals/access/access6.html#DiemTNTT18,https://doi.org/10.1109/ACCESS.2018.2849688 +Guofeng Wang,IDCrypt: A Multi-User Searchable Symmetric Encryption Scheme for Cloud Applications.,2018,6,IEEE Access,,db/journals/access/access6.html#WangLDHPF18,https://doi.org/10.1109/ACCESS.2017.2786026 +Li Feng 0003,Incentive-Compatible Packet Forwarding in Mobile Social Networks via Evolutionary Game Theory.,2017,5,IEEE Access,,db/journals/access/access5.html#FengYK17,https://doi.org/10.1109/ACCESS.2017.2689775 +Anirban Sengupta,Exploring Low Cost Optimal Watermark for Reusable IP Cores During High Level Synthesis.,2016,4,IEEE Access,,db/journals/access/access4.html#SenguptaB16,https://doi.org/10.1109/ACCESS.2016.2552058 +Jungkook An,A Data Analytics Approach to the Cybercrime Underground Economy.,2018,6,IEEE Access,,db/journals/access/access6.html#AnK18,https://doi.org/10.1109/ACCESS.2018.2831667 +Liqiang Zhang,Decomposition Study of Degradation Reasons for LiCoO2-Based 14500 Lithium-Ion Batteries Using a Nondestructive Method.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangL18a,https://doi.org/10.1109/ACCESS.2018.2858273 +Dario Sabella,Energy Efficiency Benefits of RAN-as-a-Service Concept for a Cloud-Based 5G Mobile Network Infrastructure.,2014,2,IEEE Access,,db/journals/access/access2.html#SabellaDKIGSLSM14,https://doi.org/10.1109/ACCESS.2014.2381215 +Michael A. Andersson,Feasibility of Ambient RF Energy Harvesting for Self-Sustainable M2M Communications Using Transparent and Flexible Graphene Antennas.,2016,4,IEEE Access,,db/journals/access/access4.html#AnderssonOJEVS16,https://doi.org/10.1109/ACCESS.2016.2604078 +Arvind Rajan,Moment-Constrained Maximum Entropy Method for Expanded Uncertainty Evaluation.,2018,6,IEEE Access,,db/journals/access/access6.html#RajanKODC18,https://doi.org/10.1109/ACCESS.2017.2787736 +Muhammad Ilyas Fakhir,Formal Specification and Verification of Self-Adaptive Concurrent Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#FakhirK18,https://doi.org/10.1109/ACCESS.2018.2849821 +Dao Lam,Clustering Data of Mixed Categorical and Numerical Type With Unsupervised Feature Learning.,2015,3,IEEE Access,,db/journals/access/access3.html#LamWW15,https://doi.org/10.1109/ACCESS.2015.2477216 +Debdeep Banerjee,Hand Jitter Reduction Algorithm Software Test Automation Using Robotic Arm.,2018,6,IEEE Access,,db/journals/access/access6.html#BanerjeeYA18a,https://doi.org/10.1109/ACCESS.2018.2829466 +David A. Elvira-Ortiz,Methodology for Flicker Estimation and Its Correlation to Environmental Factors in Photovoltaic Generation.,2018,6,IEEE Access,,db/journals/access/access6.html#Elvira-OrtizMDJ18,https://doi.org/10.1109/ACCESS.2018.2829148 +Kai Zhou,Complete Initial Solutions for Iterative Pose Estimation From Planar Objects.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhouWWWY18,https://doi.org/10.1109/ACCESS.2018.2827565 +Qinmiao Kang,Energy-Efficient Wireless Transmissions for Battery-Less Vehicle Tire Pressure Monitoring System.,2018,6,IEEE Access,,db/journals/access/access6.html#KangHLXLZ18,https://doi.org/10.1109/ACCESS.2017.2778071 +Xiazhi Lai,Cache-Aided Multiuser Cognitive Relay Networks With Outdated Channel State Information.,2018,6,IEEE Access,,db/journals/access/access6.html#LaiXTZZ18,https://doi.org/10.1109/ACCESS.2018.2829026 +Lin Bai,Performance Analysis for SDMA mmWave Systems: Using an Approximate Closed-Form Solution of Downlink Sum-Rate.,2017,5,IEEE Access,,db/journals/access/access5.html#BaiLXC17,https://doi.org/10.1109/ACCESS.2017.2734739 +Wanbo Zheng,Percentile Performance Estimation of Unreliable IaaS Clouds and Their Cost-Optimal Capacity Decision.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhengZWXLPZW17,https://doi.org/10.1109/ACCESS.2017.2666793 +Hsin-Te Wu,Establishing an Intelligent Transportation System With a Network Security Mechanism in an Internet of Vehicle Environment.,2017,5,IEEE Access,,db/journals/access/access5.html#WuH17,https://doi.org/10.1109/ACCESS.2017.2752420 +Yelin Kim,Towards Emotionally Aware AI Smart Classroom: Current Issues and Directions for Engineering and Education.,2018,6,IEEE Access,,db/journals/access/access6.html#KimSF18,https://doi.org/10.1109/ACCESS.2018.2791861 +Kelvin O. O. Anoh,A New Approach to Iterative Clipping and Filtering PAPR Reduction Scheme for OFDM Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#AnohTAH18,https://doi.org/10.1109/ACCESS.2017.2751620 +Jong-Uk Hou,Copyright Protections of Digital Content in the Age of 3D Printer: Emerging Issues and Survey.,2018,6,IEEE Access,,db/journals/access/access6.html#HouKAL18,https://doi.org/10.1109/ACCESS.2018.2864331 +Tae-Hwan Kim,An Efficient Barrel Distortion Correction Processor for Bayer Pattern Images.,2018,6,IEEE Access,,db/journals/access/access6.html#Kim18a,https://doi.org/10.1109/ACCESS.2018.2841013 +Kuiwen Xu,Multimode and Wideband Printed Loop Antenna Based on Degraded Split-Ring Resonators.,2017,5,IEEE Access,,db/journals/access/access5.html#XuLPZRW17,https://doi.org/10.1109/ACCESS.2017.2729517 +Vinay Bankey,Performance Analysis of Multi-Antenna Multiuser Hybrid Satellite-Terrestrial Relay Systems for Mobile Services Delivery.,2018,6,IEEE Access,,db/journals/access/access6.html#BankeyUCBKD18,https://doi.org/10.1109/ACCESS.2018.2830801 +Jeroen van der Hooft,Performance Characterization of Low-Latency Adaptive Streaming From Video Portals.,2018,6,IEEE Access,,db/journals/access/access6.html#HooftBPWT18,https://doi.org/10.1109/ACCESS.2018.2863033 +Wenchao Zheng,Tracking Control of Manipulator Based on High-Order Disturbance Observer.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhengC18,https://doi.org/10.1109/ACCESS.2018.2834978 +Julien Le Kernec,Performances of Multitones for Ultra-Wideband Software-Defined Radar.,2017,5,IEEE Access,,db/journals/access/access5.html#KernecR17,https://doi.org/10.1109/ACCESS.2017.2693300 +Bing Jie Xiang,Vias and Stubs Loaded Patch and Its Applications in Filter and Rectifier Designs.,2017,5,IEEE Access,,db/journals/access/access5.html#XiangLZPLL17,https://doi.org/10.1109/ACCESS.2017.2695367 +Ying Yan,Fault Diagnosis of Components and Sensors in HVAC Air Handling Systems With New Types of Faults.,2018,6,IEEE Access,,db/journals/access/access6.html#YanLP18,https://doi.org/10.1109/ACCESS.2018.2806373 +T. F. Orchi,Feedback Linearizing Model Predictive Excitation Controller Design for Multimachine Power Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#OrchiRMO18,https://doi.org/10.1109/ACCESS.2017.2782782 +Qiang Liu,An Access Control Model for Resource Sharing Based on the Role-Based Access Control Intended for Multi-Domain Manufacturing Internet of Things.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuZWC17,https://doi.org/10.1109/ACCESS.2017.2693380 +Xuerong Ye,A Joint Distribution-Based Testability Metric Estimation Model for Unreliable Tests.,2018,6,IEEE Access,,db/journals/access/access6.html#YeCKZP18,https://doi.org/10.1109/ACCESS.2018.2859750 +Xiaoqin Zhou,Multi-Channel Features Spatio-Temporal Context Learning for Visual Tracking.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhouLYJY17,https://doi.org/10.1109/ACCESS.2017.2720746 +Yiwen Zhang,Efficient Dynamic Service Maintenance for Edge Services.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangLZL18,https://doi.org/10.1109/ACCESS.2018.2806391 +Tirath Prasad Sahu,Selecting Best Answer: An Empirical Analysis on Community Question Answering Sites.,2016,4,IEEE Access,,db/journals/access/access4.html#SahuNV16,https://doi.org/10.1109/ACCESS.2016.2600622 +Muhammad Mahtab Alam,A Heuristic Self-Adaptive Medium Access Control for Resource-Constrained WBAN Systems.,2016,4,IEEE Access,,db/journals/access/access4.html#AlamHBMS16,https://doi.org/10.1109/ACCESS.2016.2539299 +Zhongxiang Wei,Energy-Efficiency of Millimeter-Wave Full-Duplex Relaying Systems: Challenges and Solutions.,2016,4,IEEE Access,,db/journals/access/access4.html#WeiZSHAJ16,https://doi.org/10.1109/ACCESS.2016.2591954 +Tao Li 0012,Wireless Communications With RF-Based Energy Harvesting: From Information Theory to Green Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#LiDFL17,https://doi.org/10.1109/ACCESS.2017.2777905 +Yingyou Wen,Energy-Efficient Virtual Resource Dynamic Integration Method in Cloud Computing.,2017,5,IEEE Access,,db/journals/access/access5.html#WenLJLL17,https://doi.org/10.1109/ACCESS.2017.2721548 +En Lu,Composite Sliding Mode Control of a Permanent Magnet Direct-Driven System For a Mining Scraper Conveyor.,2017,5,IEEE Access,,db/journals/access/access5.html#LuLYX17,https://doi.org/10.1109/ACCESS.2017.2761846 +Tao Lei,A Semi-Matching Based Load Balancing Scheme for Dense IEEE 802.11 WLANs.,2017,5,IEEE Access,,db/journals/access/access5.html#LeiWLL17,https://doi.org/10.1109/ACCESS.2017.2733083 +Wang Zheng,Unfolded Coprime Planar Array for 2D Direction of Arrival Estimation: An Aperture-Augmented Perspective.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhengZXZ18,https://doi.org/10.1109/ACCESS.2018.2828837 +Guanglou Zheng,Encryption for Implantable Medical Devices Using Modified One-Time Pads.,2015,3,IEEE Access,,db/journals/access/access3.html#ZhengFSO15,https://doi.org/10.1109/ACCESS.2015.2445336 +Angela Sara Cacciapuoti,Mobility-Aware User Association for 5G mmWave Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#Cacciapuoti17,https://doi.org/10.1109/ACCESS.2017.2751422 +Rui Hou,Energy-Balanced Unequal Layering Clustering in Underwater Acoustic Sensor Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#HouHHL18,https://doi.org/10.1109/ACCESS.2018.2854276 +Zhenyu Gao,Fixed-Time Leader-Follower Formation Control of Autonomous Underwater Vehicles With Event-Triggered Intermittent Communications.,2018,6,IEEE Access,,db/journals/access/access6.html#GaoG18,https://doi.org/10.1109/ACCESS.2018.2838121 +Wei Zheng 0005,Memoryless Dynamic Output-Feedback Stabilization for Discrete-Time Closed-Loop Robot Systems With Nonlinear Uncertainties and Multiple Time-Delays.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhengWWWZ17,https://doi.org/10.1109/ACCESS.2017.2727640 +Dong Li 0009,Hybrid Ambient Backscatter Communication Systems With Harvest-Then-Transmit Protocols.,2018,6,IEEE Access,,db/journals/access/access6.html#LiPL18,https://doi.org/10.1109/ACCESS.2018.2864967 +Abebe Abeshu Diro,Analysis of Lightweight Encryption Scheme for Fog-to-Things Communication.,2018,6,IEEE Access,,db/journals/access/access6.html#DiroCN18,https://doi.org/10.1109/ACCESS.2018.2822822 +Yu Zhang 0012,Channel Estimation for Massive MIMO-OFDM Systems by Tracking the Joint Angle-Delay Subspace.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhangWWY16,https://doi.org/10.1109/ACCESS.2016.2634025 +Haijiang Zhu,Homography Estimation Based on Order-Preserving Constraint and Similarity Measurement.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhuWZWW18,https://doi.org/10.1109/ACCESS.2018.2837639 +Dajun Wu,The Design of Directional Coupler for ECRH System.,2017,5,IEEE Access,,db/journals/access/access5.html#WuLWXZXTW17,https://doi.org/10.1109/ACCESS.2017.2694143 +Shree Krishna Sharma,Live Data Analytics With Collaborative Edge and Cloud Processing in Wireless IoT Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#SharmaW17,https://doi.org/10.1109/ACCESS.2017.2682640 +Dan Wu,Adaptive Neural LMI-Based H-Infinity Control for MEMS Gyroscope.,2016,4,IEEE Access,,db/journals/access/access4.html#WuCWFF16,https://doi.org/10.1109/ACCESS.2016.2618910 +Yan Li,A Fast Method for Reliability Evaluation of Ultra High Voltage AC/DC System Based on Hybrid Simulation.,2018,6,IEEE Access,,db/journals/access/access6.html#LiYLZTC18,https://doi.org/10.1109/ACCESS.2018.2817247 +Jiayi Sun,Collision Avoidance for Cooperative UAVs With Optimized Artificial Potential Field Algorithm.,2017,5,IEEE Access,,db/journals/access/access5.html#SunTL17,https://doi.org/10.1109/ACCESS.2017.2746752 +Hanyu Xuan,Robust Lane-Mark Extraction for Autonomous Driving Under Complex Real Conditions.,2018,6,IEEE Access,,db/journals/access/access6.html#XuanLYL18,https://doi.org/10.1109/ACCESS.2017.2731804 +Yao-Hsin Chou,Portfolio Optimization Based on Funds Standardization and Genetic Algorithm.,2017,5,IEEE Access,,db/journals/access/access5.html#ChouKL17,https://doi.org/10.1109/ACCESS.2017.2756842 +Shin-Jie Lee,Energy-Aware Paired Sampling-Based Decision Model for Dynamic Mobile-to-Mobile Service Offloading.,2017,5,IEEE Access,,db/journals/access/access5.html#LeeL17,https://doi.org/10.1109/ACCESS.2017.2695618 +Luca Leonardi,Multi-Hop Real-Time Communications Over Bluetooth Low Energy Industrial Wireless Mesh Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#LeonardiPB18,https://doi.org/10.1109/ACCESS.2018.2834479 +Zhongcheng Lei,Modular Web-Based Interactive Hybrid Laboratory Framework for Research and Education.,2018,6,IEEE Access,,db/journals/access/access6.html#LeiZHDZLL18,https://doi.org/10.1109/ACCESS.2018.2821713 +Han-Joon Kim,Nearly Non-Coupling Coil Array Allowing Many Independent Channels for Magnetic Communication.,2018,6,IEEE Access,,db/journals/access/access6.html#KimKHSC18,https://doi.org/10.1109/ACCESS.2018.2849093 +Fuliang Li,A QoS Guaranteed Technique for Cloud Applications Based on Software Defined Networking.,2017,5,IEEE Access,,db/journals/access/access5.html#LiCWS17,https://doi.org/10.1109/ACCESS.2017.2755768 +Niel Andre Cloete,Design of Smart Sensors for Real-Time Water Quality Monitoring.,2016,4,IEEE Access,,db/journals/access/access4.html#CloeteMN16,https://doi.org/10.1109/ACCESS.2016.2592958 +Jie Zhou 0009,Rough-Fuzzy Clustering Based on Two-Stage Three-Way Approximations.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhouLGYW18,https://doi.org/10.1109/ACCESS.2018.2834348 +Ping Kuang,Analyzing Energy-Efficiency of Two Scheduling Policies in Compute-Intensive Applications on Cloud.,2018,6,IEEE Access,,db/journals/access/access6.html#KuangGXLTB18,https://doi.org/10.1109/ACCESS.2018.2861462 +Zhennao Cai,A New Hybrid Intelligent Framework for Predicting Parkinson's Disease.,2017,5,IEEE Access,,db/journals/access/access5.html#CaiGC17,https://doi.org/10.1109/ACCESS.2017.2741521 +Shuang Feng,A Two-Level Forced Oscillations Source Location Method Based on Phasor and Energy Analysis.,2018,6,IEEE Access,,db/journals/access/access6.html#FengZJL18,https://doi.org/10.1109/ACCESS.2018.2864261 +Fanlei Yan,Hybrid Visual Servo Trajectory Tracking of Wheeled Mobile Robots.,2018,6,IEEE Access,,db/journals/access/access6.html#YanLSW18,https://doi.org/10.1109/ACCESS.2018.2829839 +Bernard B. Munyazikwiye,Optimization of Vehicle-to-Vehicle Frontal Crash Model Based on Measured Data Using Genetic Algorithm.,2017,5,IEEE Access,,db/journals/access/access5.html#MunyazikwiyeKR17,https://doi.org/10.1109/ACCESS.2017.2671357 +Tengjiao He,On Wireless Power Transfer and Max Flow in Rechargeable Wireless Sensor Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#HeCS16,https://doi.org/10.1109/ACCESS.2016.2596776 +Jiajie Liu,A Motif-Based Rescue Mission Planning Method for UAV Swarms Usingan Improved PICEA.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuWWSL18,https://doi.org/10.1109/ACCESS.2018.2857503 +Ahmed Al-Riyami,An Adaptive Early Node Compromise Detection Scheme for Hierarchical WSNs.,2016,4,IEEE Access,,db/journals/access/access4.html#Al-RiyamiZK16,https://doi.org/10.1109/ACCESS.2016.2594478 +Zhi Zhu,Domain Specific MetaModeling for Deep Semantic Composability.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhuLASZ18,https://doi.org/10.1109/ACCESS.2018.2822661 +Zhihua Xia,Secure Image LBP Feature Extraction in Cloud-Based Smart Campus.,2018,6,IEEE Access,,db/journals/access/access6.html#XiaMSSXJ18,https://doi.org/10.1109/ACCESS.2018.2845456 +Jaemyoun Lee,Analyzing I/O Request Characteristics of a Mobile Messenger and Benchmark Framework for Serviceable Cold Storage.,2017,5,IEEE Access,,db/journals/access/access5.html#LeeSPKK17,https://doi.org/10.1109/ACCESS.2017.2701839 +Abdulrahman Fahim,Towards Extended Bit Tracking for Scalable and Robust RFID Tag Identification Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#FahimEMA18,https://doi.org/10.1109/ACCESS.2018.2832119 +Valentín Calzada-Ledesma,Evolutionary Design of Problem-Adapted Image Descriptors for Texture Classification.,2018,6,IEEE Access,,db/journals/access/access6.html#Calzada-Ledesma18,https://doi.org/10.1109/ACCESS.2018.2858660 +Chen Chen 0001,Multi-Temporal Depth Motion Maps-Based Local Binary Patterns for 3-D Human Action Recognition.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenLLZHK17,https://doi.org/10.1109/ACCESS.2017.2759058 +Zhaohui Yang 0001,Power Control and Resource Allocation for Multi-Cell OFDM Networks With Load Coupling.,2018,6,IEEE Access,,db/journals/access/access6.html#YangPXSC18,https://doi.org/10.1109/ACCESS.2018.2816916 +Xiaoxue Liu,ETAP: Energy-Efficient and Traceable Authentication Protocol in Mobile Medical Cloud Architecture.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuM18,https://doi.org/10.1109/ACCESS.2018.2841004 +Dihao Ai,Automatic Pixel-Level Pavement Crack Detection Using Information of Multi-Scale Neighborhoods.,2018,6,IEEE Access,,db/journals/access/access6.html#AiJLL18,https://doi.org/10.1109/ACCESS.2018.2829347 +Md Yeakub Hassan,Interference Minimization in D2D Communication Underlaying Cellular Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#HassanHHCA17,https://doi.org/10.1109/ACCESS.2017.2763424 +Ali Safaei,Adaptive Model-Free Control Based on an Ultra-Local Model With Model-Free Parameter Estimations for a Generic SISO System.,2018,6,IEEE Access,,db/journals/access/access6.html#SafaeiM18,https://doi.org/10.1109/ACCESS.2018.2799229 +Qinlong Huang,"Correction to ""Secure Data Access Control With Ciphertext Update and Computation Outsourcing in Fog Computing for Internet of Things"".",2018,6,IEEE Access,,db/journals/access/access6.html#HuangYW18,https://doi.org/10.1109/ACCESS.2018.2823178 +Bing Zhu 0003,General Fractional Repetition Codes From Combinatorial Designs.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhuLL17,https://doi.org/10.1109/ACCESS.2017.2768799 +Gabriel Hermosilla Vigneau,Particle Swarm Optimization for the Fusion of Thermal and Visible Descriptors in Face Recognition Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#VigneauRMCPSV18,https://doi.org/10.1109/ACCESS.2018.2850281 +Xiaokai Zhang,Physical Layer Secure Transmission Based on Fast Dual Polarization Hopping in Fixed Satellite Communication.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangZG17,https://doi.org/10.1109/ACCESS.2017.2710081 +Zhilu Wu,Robust Automatic Modulation Classification Under Varying Noise Conditions.,2017,5,IEEE Access,,db/journals/access/access5.html#WuZYMY17,https://doi.org/10.1109/ACCESS.2017.2746140 +Robert Ross,LaserTag for STEM Engagement and Education.,2017,5,IEEE Access,,db/journals/access/access5.html#RossWH17,https://doi.org/10.1109/ACCESS.2017.2753218 +Wencheng Wang,A Fast Single-Image Dehazing Method Based on a Physical Model and Gray Projection.,2018,6,IEEE Access,,db/journals/access/access6.html#WangCJW18,https://doi.org/10.1109/ACCESS.2018.2794340 +Piyush Joshi,Continuous Wavelet Transform Based No-Reference Image Quality Assessment for Blur and Noise Distortions.,2018,6,IEEE Access,,db/journals/access/access6.html#JoshiP18,https://doi.org/10.1109/ACCESS.2018.2846585 +Vikram Kumar,Miniaturized Resonant Power Conversion for Implanted Medical Devices.,2017,5,IEEE Access,,db/journals/access/access5.html#KumarK17,https://doi.org/10.1109/ACCESS.2017.2728364 +Solmaz Niknam,A Multiband OFDMA Heterogeneous Network for Millimeter Wave 5G Wireless Applications.,2016,4,IEEE Access,,db/journals/access/access4.html#NiknamNMN16,https://doi.org/10.1109/ACCESS.2016.2604364 +Kashif Hesham Khan,Day Ahead Scheduling to Optimize Industrial HVAC Energy Cost Based ON Peak/OFF-Peak Tariff and Weather Forecasting.,2017,5,IEEE Access,,db/journals/access/access5.html#KhanRA17a,https://doi.org/10.1109/ACCESS.2017.2759800 +Mahammad Abdul Hannan,A Quantum Lightning Search Algorithm-Based Fuzzy Speed Controller for Induction Motor Drive.,2018,6,IEEE Access,,db/journals/access/access6.html#HannanAHHAUB18,https://doi.org/10.1109/ACCESS.2017.2778081 +Xuan Liu 0005,Joint Design of Energy-Efficient Clustering and Data Recovery for Wireless Sensor Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuLDX17,https://doi.org/10.1109/ACCESS.2017.2660770 +Remah Alshinina,A Highly Accurate Deep Learning Based Approach for Developing Wireless Sensor Network Middleware.,2018,6,IEEE Access,,db/journals/access/access6.html#AlshininaE18,https://doi.org/10.1109/ACCESS.2018.2844255 +Ding Zhai,Adaptive Reliable H∞ Control for a Class of T-S Fuzzy Systems With Stochastic Actuator Failures.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhaiLXW17,https://doi.org/10.1109/ACCESS.2017.2765338 +Lien-Wu Chen,Cyber-Physical Signage Interacting With Gesture-Based Human-Machine Interfaces Through Mobile Cloud Computing.,2016,4,IEEE Access,,db/journals/access/access4.html#ChenHTCH16,https://doi.org/10.1109/ACCESS.2016.2594799 +Kazeem B. Adedeji,Towards Achieving a Reliable Leakage Detection and Localization Algorithm for Application in Water Piping Networks: An Overview.,2017,5,IEEE Access,,db/journals/access/access5.html#AdedejiHAA17,https://doi.org/10.1109/ACCESS.2017.2752802 +Omsalama Saeed,Simple Resonance Circuit to Improve Electrical Power Conversion in a Two-Sided Planar Permanent Magnet Linear Generator for Wave Energy Converters.,2017,5,IEEE Access,,db/journals/access/access5.html#SaeedWSS17,https://doi.org/10.1109/ACCESS.2017.2752466 +Jiarong Liang,t/t-Diagnosability and t/k-Diagnosability for Augmented Cube Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#LiangCZX18,https://doi.org/10.1109/ACCESS.2018.2847623 +Francisco Javier Muros,A Game Theoretical Randomized Method for Large-Scale Systems Partitioning.,2018,6,IEEE Access,,db/journals/access/access6.html#MurosMOAC18,https://doi.org/10.1109/ACCESS.2018.2854783 +Ahmed A. Abd El-Latif,Robust Encryption of Quantum Medical Images.,2018,6,IEEE Access,,db/journals/access/access6.html#El-LatifAT18,https://doi.org/10.1109/ACCESS.2017.2777869 +Weiwen Li,Control of Higher Order Harmonics and Spurious Modes for Microstrip Patch Antennas.,2018,6,IEEE Access,,db/journals/access/access6.html#LiLZL18,https://doi.org/10.1109/ACCESS.2018.2850858 +Achuta Kadambi,Rethinking Machine Vision Time of Flight With GHz Heterodyning.,2017,5,IEEE Access,,db/journals/access/access5.html#KadambiR17,https://doi.org/10.1109/ACCESS.2017.2775138 +Massimo Condoluci,Enabling the IoT Machine Age With 5G: Machine-Type Multicast Services for Innovative Real-Time Applications.,2016,4,IEEE Access,,db/journals/access/access4.html#CondoluciAMD16,https://doi.org/10.1109/ACCESS.2016.2573678 +Chun-xia Dou,Hierarchical Delay-Dependent Distributed Coordinated Control for DC Ring-Bus Microgrids.,2017,5,IEEE Access,,db/journals/access/access5.html#DouYZG17,https://doi.org/10.1109/ACCESS.2017.2713773 +Xiaolong Deng,A Novel Centrality Cascading Based Edge Parameter Evaluation Method for Robust Influence Maximization.,2017,5,IEEE Access,,db/journals/access/access5.html#DengDLN17,https://doi.org/10.1109/ACCESS.2017.2764750 +Liqun Zhao,Interference Graph Based Channel Assignment Algorithm for D2D Cellular Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaoWZ18,https://doi.org/10.1109/ACCESS.2018.2789423 +Hongyu Tang,Numerical Thermal Analysis and Optimization of Multi-Chip LED Module Using Response Surface Methodology and Genetic Algorithm.,2017,5,IEEE Access,,db/journals/access/access5.html#TangYCQFZ17,https://doi.org/10.1109/ACCESS.2017.2737638 +Xiaohu Ge,Wireless Single Cellular Coverage Boundary Models.,2016,4,IEEE Access,,db/journals/access/access4.html#GeHCXXZY16,https://doi.org/10.1109/ACCESS.2016.2582960 +Josue Reyes-Garcia,Evaluation of the Impact of Data Uncertainty on the Prediction of Physiological Patient Deterioration.,2018,6,IEEE Access,,db/journals/access/access6.html#Reyes-GarciaGGT18,https://doi.org/10.1109/ACCESS.2018.2853701 +Abdulsalam Yassine,Mining Human Activity Patterns From Smart Home Big Data for Health Care Applications.,2017,5,IEEE Access,,db/journals/access/access5.html#YassineSA17,https://doi.org/10.1109/ACCESS.2017.2719921 +Ahmed Y. Al-nasheri,Voice Pathology Detection and Classification Using Auto-Correlation and Entropy Features in Different Frequency Regions.,2018,6,IEEE Access,,db/journals/access/access6.html#Al-nasheriMAAMM18,https://doi.org/10.1109/ACCESS.2017.2696056 +Mutian Shen,Compressed Sensing by Shortest-Solution Guided Decimation.,2018,6,IEEE Access,,db/journals/access/access6.html#ShenZZ18,https://doi.org/10.1109/ACCESS.2018.2794522 +Abdelkader Aissioui,Toward Elastic Distributed SDN/NFV Controller for 5G Mobile Cloud Management Systems.,2015,3,IEEE Access,,db/journals/access/access3.html#AissiouiKGT15,https://doi.org/10.1109/ACCESS.2015.2489930 +Yuan-Gen Wang,A Study on the Collusion Security of LUT-Based Client-Side Watermark Embedding.,2018,6,IEEE Access,,db/journals/access/access6.html#WangXG18,https://doi.org/10.1109/ACCESS.2018.2802928 +Zhiwei Guo,Fine-Grained Recommendation Mechanism to Curb Astroturfing in Crowdsourcing Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#GuoTNFWXT17,https://doi.org/10.1109/ACCESS.2017.2731360 +Rongxing Lu,A Lightweight Privacy-Preserving Data Aggregation Scheme for Fog Computing-Enhanced IoT.,2017,5,IEEE Access,,db/journals/access/access5.html#LuHLG17,https://doi.org/10.1109/ACCESS.2017.2677520 +Xianxian Zhao,A Wind-Wave Farm System With Self-Energy Storage and Smoothed Power Output.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhaoYZ16,https://doi.org/10.1109/ACCESS.2016.2631505 +Shuni Song,Adaptive Fault Tolerant Control for a Class of Nonlinear Switched Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#SongLW18,https://doi.org/10.1109/ACCESS.2018.2802906 +Khosrow Ramezani,Formal Security Analysis of EAP-ERP Using Casper.,2016,4,IEEE Access,,db/journals/access/access4.html#RamezaniSS16,https://doi.org/10.1109/ACCESS.2016.2517179 +Lu Liu 0006,A Modified Quantum Bacterial Foraging Algorithm for Parameters Identification of Fractional-Order System.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuSDLQ18,https://doi.org/10.1109/ACCESS.2018.2791976 +Thomas Fromenteze,Single-Shot Compressive Multiple-Inputs Multiple-Outputs Radar Imaging Using a Two-Port Passive Device.,2016,4,IEEE Access,,db/journals/access/access4.html#FromentezeKCDS16,https://doi.org/10.1109/ACCESS.2016.2543525 +Yinan Liu,Gaze-Assisted Multi-Stream Deep Neural Network for Action Recognition.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuWTS17,https://doi.org/10.1109/ACCESS.2017.2753830 +Xin Shi,Prediction of Indoor Temperature and Relative Humidity Based on Cloud Database by Using an Improved BP Neural Network in Chongqing.,2018,6,IEEE Access,,db/journals/access/access6.html#ShiLZQ18,https://doi.org/10.1109/ACCESS.2018.2844299 +Lin Cui,DMFA-SR: Deeper Membership and Friendship Awareness for Social Recommendation.,2017,5,IEEE Access,,db/journals/access/access5.html#CuiPZ17,https://doi.org/10.1109/ACCESS.2017.2704115 +Sishi Huang,Characterization of Gas-Liquid Two-Phase Flow by Correlation Dimension of Vortex-Induced Pressure Fluctuation.,2017,5,IEEE Access,,db/journals/access/access5.html#HuangYSLZ17,https://doi.org/10.1109/ACCESS.2017.2713458 +Yingchen Wang,An Immune Genetic Algorithm for Multi-Echelon Inventory Cost Control of IOT Based Supply Chains.,2018,6,IEEE Access,,db/journals/access/access6.html#WangGZR18,https://doi.org/10.1109/ACCESS.2018.2799306 +Liang Xiao 0003,A Mobile Offloading Game Against Smart Attacks.,2016,4,IEEE Access,,db/journals/access/access4.html#XiaoXCDP16,https://doi.org/10.1109/ACCESS.2016.2565198 +Hongmei Li,Collaborative Filtering Recommendation Based on All-Weighted Matrix Factorization and Fast Optimization.,2018,6,IEEE Access,,db/journals/access/access6.html#LiDCZ18,https://doi.org/10.1109/ACCESS.2018.2828401 +Wei Yu 0002,A Survey on the Edge Computing for the Internet of Things.,2018,6,IEEE Access,,db/journals/access/access6.html#YuLHHLLY18,https://doi.org/10.1109/ACCESS.2017.2778504 +Xiangfeng Li,A Simplified Modulation Strategy of Nine-Switch Inverter to Cut Off Half of Switching Modes.,2018,6,IEEE Access,,db/journals/access/access6.html#LiQZZL18,https://doi.org/10.1109/ACCESS.2017.2787669 +Li Wang,Task-Dependent and Query-Dependent Subspace Learning for Cross-Modal Retrieval.,2018,6,IEEE Access,,db/journals/access/access6.html#WangZYSZ18,https://doi.org/10.1109/ACCESS.2018.2831675 +Chatchawit Aporntewan,Indexing Simple Graphs by Means of the Resistance Distance.,2016,4,IEEE Access,,db/journals/access/access4.html#AporntewanCC16,https://doi.org/10.1109/ACCESS.2016.2606764 +Muhammad Usman 0003,A Software-Defined Device-to-Device Communication Architecture for Public Safety Applications in 5G Networks.,2015,3,IEEE Access,,db/journals/access/access3.html#UsmanGRG15,https://doi.org/10.1109/ACCESS.2015.2479855 +Hongzhi Guo,Practical Design and Implementation of Metamaterial-Enhanced Magnetic Induction Communication.,2017,5,IEEE Access,,db/journals/access/access5.html#GuoSZ17,https://doi.org/10.1109/ACCESS.2017.2719406 +Gen Chen,Adaptive Control Strategy for Improving the Efficiency and Reliability of Parallel Wind Power Converters by Optimizing Power Allocation.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenC18a,https://doi.org/10.1109/ACCESS.2018.2789421 +Yuanlong Yu,A Homotopy Iterative Hard Thresholding Algorithm With Extreme Learning Machine for Scene Recognition.,2018,6,IEEE Access,,db/journals/access/access6.html#YuSZG18,https://doi.org/10.1109/ACCESS.2018.2845298 +João Andrade,Design Space Exploration of LDPC Decoders Using High-Level Synthesis.,2017,5,IEEE Access,,db/journals/access/access5.html#AndradeGKNPSIF017,https://doi.org/10.1109/ACCESS.2017.2727221 +Jianqing Zhu,Joint Feature and Similarity Deep Learning for Vehicle Re-identification.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhuZDLZC18,https://doi.org/10.1109/ACCESS.2018.2862382 +Mohamed S. Kheir,A New Class of Highly-Miniaturized Reconfigurable UWB Filters for Multi-Band Multi-Standard Transceiver Architectures.,2017,5,IEEE Access,,db/journals/access/access5.html#KheirKH17,https://doi.org/10.1109/ACCESS.2017.2670526 +Mahmoud Elgenedy,Sparsity-Based Joint NBI and Impulse Noise Mitigation in Hybrid PLC-Wireless Transmissions.,2018,6,IEEE Access,,db/journals/access/access6.html#ElgenedyMHBIA18,https://doi.org/10.1109/ACCESS.2018.2842194 +Ming Chu,Modeling and Self-Learning Soft-Grasp Control for Free-Floating Space Manipulator During Target Capturing Using Variable Stiffness Method.,2018,6,IEEE Access,,db/journals/access/access6.html#ChuW18,https://doi.org/10.1109/ACCESS.2017.2788400 +Basudev Majumder,A Zero Index Based Meta-Lens Loaded Wideband Directive Antenna Combined With Reactive Impedance Surface.,2018,6,IEEE Access,,db/journals/access/access6.html#MajumderKR18,https://doi.org/10.1109/ACCESS.2018.2835652 +Kai Da Xu,Wideband Patch Antenna Using Multiple Parasitic Patches and Its Array Application With Mutual Coupling Reduction.,2018,6,IEEE Access,,db/journals/access/access6.html#XuZLX18,https://doi.org/10.1109/ACCESS.2018.2860594 +Gorka Azkune,A Scalable Hybrid Activity Recognition Approach for Intelligent Environments.,2018,6,IEEE Access,,db/journals/access/access6.html#AzkuneA18,https://doi.org/10.1109/ACCESS.2018.2861004 +Xiao Xu,Model-Mediated Teleoperation: Toward Stable and Transparent Teleoperation Systems.,2016,4,IEEE Access,,db/journals/access/access4.html#XuCSS16,https://doi.org/10.1109/ACCESS.2016.2517926 +Nadeem Javaid,An Intelligent Load Management System With Renewable Energy Integration for Smart Homes.,2017,5,IEEE Access,,db/journals/access/access5.html#JavaidUAIKAA17,https://doi.org/10.1109/ACCESS.2017.2715225 +Elias A. Alwan,Phase Error Evaluation in a Two-Path Receiver Front-End With On-Site Coding.,2015,3,IEEE Access,,db/journals/access/access3.html#AlwanVAKV15,https://doi.org/10.1109/ACCESS.2015.2397697 +Yang Song 0004,An Alternative Parity Space-Based Fault Diagnosability Analysis Approach for Linear Discrete Time Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#SongZCL18,https://doi.org/10.1109/ACCESS.2018.2816970 +Zhiniang Peng,Circulant Rainbow: A New Rainbow Variant With Shorter Private Key and Faster Signature Generation.,2017,5,IEEE Access,,db/journals/access/access5.html#PengT17,https://doi.org/10.1109/ACCESS.2017.2717279 +Yanjuan Geng,A Robust Sparse Representation Based Pattern Recognition Approach for Myoelectric Control.,2018,6,IEEE Access,,db/journals/access/access6.html#GengOSCLLL18,https://doi.org/10.1109/ACCESS.2018.2851282 +Sajjad Haider,Dynamic and Adaptive Fault Tolerant Scheduling With QoS Consideration in Computational Grid.,2017,5,IEEE Access,,db/journals/access/access5.html#HaiderN17,https://doi.org/10.1109/ACCESS.2017.2690458 +Zicong Wang,Cache Access Fairness in 3D Mesh-Based NUCA.,2018,6,IEEE Access,,db/journals/access/access6.html#WangCLG18,https://doi.org/10.1109/ACCESS.2018.2862633 +Nagi N. Mekhiel,Introducing TAM: Time-Based Access Memory.,2016,4,IEEE Access,,db/journals/access/access4.html#Mekhiel16,https://doi.org/10.1109/ACCESS.2016.2524447 +Wei Duan,Two-Stage Superposed Transmission for Cooperative NOMA Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#DuanJWWZ18,https://doi.org/10.1109/ACCESS.2017.2789193 +Changbo Ke,Privacy Disclosure Checking Method Applied on Collaboration Interactions Among SaaS Services.,2017,5,IEEE Access,,db/journals/access/access5.html#KeHC17,https://doi.org/10.1109/ACCESS.2017.2710091 +Than Than Nu,A Traffic Reduction Method for Crowdsourced Multi-View Video Uploading.,2018,6,IEEE Access,,db/journals/access/access6.html#NuFW18,https://doi.org/10.1109/ACCESS.2018.2852293 +Chundong Wang 0002,A Distributed Anomaly Detection System for In-Vehicle Network Using HTM.,2018,6,IEEE Access,,db/journals/access/access6.html#WangZGZLC18,https://doi.org/10.1109/ACCESS.2018.2799210 +Tianpei Zu,Belief Reliability Distribution Based on Maximum Entropy Principle.,2018,6,IEEE Access,,db/journals/access/access6.html#ZuKWZ18,https://doi.org/10.1109/ACCESS.2017.2779475 +Pingyuan Zhang,A New Post-Quantum Blind Signature From Lattice Assumptions.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangJZHX18,https://doi.org/10.1109/ACCESS.2018.2833103 +Xianling Meng,Delay-Constrained Hybrid Computation Offloading With Cloud and Fog Computing.,2017,5,IEEE Access,,db/journals/access/access5.html#MengWZ17,https://doi.org/10.1109/ACCESS.2017.2748140 +Rungrote Kuawattanaphan,A Novel Heterogeneous Wireless Sensor Node Deployment Algorithm With Parameter-Free Configuration.,2018,6,IEEE Access,,db/journals/access/access6.html#KuawattanaphanC18,https://doi.org/10.1109/ACCESS.2018.2865279 +Bharath Shamasundar,Multidimensional Index Modulation in Wireless Communications.,2018,6,IEEE Access,,db/journals/access/access6.html#ShamasundarBJC18,https://doi.org/10.1109/ACCESS.2017.2772018 +Ming-Zheng Wang,Vehicles Assignment With Over-Emission Intensity Considerations: A Perspective on Integrating the Market Mechanism With Government Control.,2016,4,IEEE Access,,db/journals/access/access4.html#WangHCA16,https://doi.org/10.1109/ACCESS.2016.2582521 +Jiaming Li,On the Performance of Wireless-Energy-Transfer-Enabled Massive MIMO Systems With Superimposed Pilot-Aided Channel Estimation.,2015,3,IEEE Access,,db/journals/access/access3.html#LiZLC15,https://doi.org/10.1109/ACCESS.2015.2492780 +Nan Guo,Independent Mix Zone for Location Privacy in Vehicular Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#GuoMG18,https://doi.org/10.1109/ACCESS.2018.2800907 +Xu Miao,Scalable Coverage Path Planning for Cleaning Robots Using Rectangular Map Decomposition on Large Environments.,2018,6,IEEE Access,,db/journals/access/access6.html#MiaoLK18,https://doi.org/10.1109/ACCESS.2018.2853146 +Wenjie Yang,Enhanced System Acquisition for NB-IoT.,2017,5,IEEE Access,,db/journals/access/access5.html#YangHZXZJW17,https://doi.org/10.1109/ACCESS.2017.2724601 +Hossam Diab,An Efficient Chaotic Image Cryptosystem Based on Simultaneous Permutation and Diffusion Operations.,2018,6,IEEE Access,,db/journals/access/access6.html#Diab18,https://doi.org/10.1109/ACCESS.2018.2858839 +Elias A. Alwan,Code Optimization for a Code-Modulated RF Front End.,2015,3,IEEE Access,,db/journals/access/access3.html#AlwanVAKV15a,https://doi.org/10.1109/ACCESS.2015.2419195 +Ming Zou,Low-Complexity Coordinated Beamforming for Full Duplex MIMO Wireless Cellulars.,2018,6,IEEE Access,,db/journals/access/access6.html#ZouMJ18,https://doi.org/10.1109/ACCESS.2018.2842823 +Zhuowei Liu,Robust Student's t Mixture Probability Hypothesis Density Filter for Multi-Target Tracking With Heavy-Tailed Noises.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuCWC18,https://doi.org/10.1109/ACCESS.2018.2856847 +George Azzopardi,Fusion of Domain-Specific and Trainable Features for Gender Recognition From Face Images.,2018,6,IEEE Access,,db/journals/access/access6.html#AzzopardiGSV18,https://doi.org/10.1109/ACCESS.2018.2823378 +Molla S. Hossain Lipu,State of Charge Estimation for Lithium-Ion Battery Using Recurrent NARX Neural Network Model Based Lighting Search Algorithm.,2018,6,IEEE Access,,db/journals/access/access6.html#LipuHHSAB18,https://doi.org/10.1109/ACCESS.2018.2837156 +Hong-Xia Dou,Signal Restoration Combining Modified Tikhonov Regularization and Preconditioning Technology.,2017,5,IEEE Access,,db/journals/access/access5.html#DouLFC17,https://doi.org/10.1109/ACCESS.2017.2767702 +Bo Hu,A Mobility-Oriented Scheme for Virtual Machine Migration in Cloud Data Center Network.,2016,4,IEEE Access,,db/journals/access/access4.html#HuCCH16,https://doi.org/10.1109/ACCESS.2016.2629673 +Naiping Li,Non-Invasive Assessment Model of Liver Disease Severity by Serum Markers Using Cloud Computing and Internet of Things.,2018,6,IEEE Access,,db/journals/access/access6.html#LiJGHM18,https://doi.org/10.1109/ACCESS.2018.2849016 +Rossella Gaffoglio,Vortex Waves and Channel Capacity: Hopes and Reality.,2018,6,IEEE Access,,db/journals/access/access6.html#GaffoglioCVA18,https://doi.org/10.1109/ACCESS.2017.2786467 +Siyu Xing,A Blind Side Information Detection Method for Partial Transmitted Sequence Peak-to-Average Power Reduction Scheme in OFDM Underwater Acoustic Communication System.,2018,6,IEEE Access,,db/journals/access/access6.html#XingQM18,https://doi.org/10.1109/ACCESS.2018.2829620 +Mukhtar M. E. Mahmoud,Enabling Technologies on Cloud of Things for Smart Healthcare.,2018,6,IEEE Access,,db/journals/access/access6.html#MahmoudRASAKA18,https://doi.org/10.1109/ACCESS.2018.2845399 +Wei Peng 0003,Channel Prediction in Time-Varying Massive MIMO Environments.,2017,5,IEEE Access,,db/journals/access/access5.html#PengZJ17,https://doi.org/10.1109/ACCESS.2017.2766091 +Gaolei Li,SLA-Aware Fine-Grained QoS Provisioning for Multi-Tenant Software-Defined Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#LiWLZG18,https://doi.org/10.1109/ACCESS.2017.2761553 +Feng Li 0006,Input Layer Regularization of Multilayer Feedforward Neural Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#LiZLW17,https://doi.org/10.1109/ACCESS.2017.2713389 +Roee Diamant,Low Probability of Detection for Underwater Acoustic Communication: A Review.,2018,6,IEEE Access,,db/journals/access/access6.html#DiamantL18,https://doi.org/10.1109/ACCESS.2018.2818110 +Kun Gao,Deep Data Stream Analysis Model and Algorithm With Memory Mechanism.,2017,5,IEEE Access,,db/journals/access/access5.html#GaoZ17,https://doi.org/10.1109/ACCESS.2016.2613922 +Cheng Qian 0003,Thermal Management on IGBT Power Electronic Devices and Modules.,2018,6,IEEE Access,,db/journals/access/access6.html#QianGFTSYZ18,https://doi.org/10.1109/ACCESS.2018.2793300 +Chih-Yung Chang,Monitoring Quality Guaranteed Barrier Coverage Mechanism for Traffic Counting in Wireless Sensor Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ChangKXC18,https://doi.org/10.1109/ACCESS.2018.2837653 +Markus Laner,Parsimonious Network Traffic Modeling By Transformed ARMA Models.,2014,2,IEEE Access,,db/journals/access/access2.html#LanerSR14,https://doi.org/10.1109/ACCESS.2013.2297736 +Asrar Ashraf,A Heterogeneous Service-Oriented Deep Packet Inspection and Analysis Framework for Traffic-Aware Network Management and Security Systems.,2016,4,IEEE Access,,db/journals/access/access4.html#AshrafJKAB16,https://doi.org/10.1109/ACCESS.2016.2609398 +Fadhel Saadaoui,Optimizing OSSB Generation Using Semiconductor Optical Amplifier (SOA) for 5G Millimeter Wave Switching.,2017,5,IEEE Access,,db/journals/access/access5.html#SaadaouiFRMFA17,https://doi.org/10.1109/ACCESS.2017.2683064 +C. Venkatesan,ECG Signal Preprocessing and SVM Classifier-Based Abnormality Detection in Remote Healthcare Applications.,2018,6,IEEE Access,,db/journals/access/access6.html#VenkatesanKPSK18,https://doi.org/10.1109/ACCESS.2018.2794346 +Ahmed Youssef,On Time Compression Overlap-Add Technique in Linear Frequency Modulation Pulse Compression Radar Systems: Design and Performance Evaluation.,2017,5,IEEE Access,,db/journals/access/access5.html#YoussefDGM17,https://doi.org/10.1109/ACCESS.2017.2771799 +Jusung Kim,The Evolution of Channelization Receiver Architecture: Principles and Design Challenges.,2017,5,IEEE Access,,db/journals/access/access5.html#KimUDHL17,https://doi.org/10.1109/ACCESS.2017.2772810 +Hiroyuki Okamura,A Markov Decision Process Approach to Dynamic Power Management in a Cluster System.,2015,3,IEEE Access,,db/journals/access/access3.html#OkamuraMD15,https://doi.org/10.1109/ACCESS.2015.2508601 +Amna Shifa,Joint Crypto-Stego Scheme for Enhanced Image Protection With Nearest-Centroid Clustering.,2018,6,IEEE Access,,db/journals/access/access6.html#ShifaAAFMAR18,https://doi.org/10.1109/ACCESS.2018.2815037 +Muhammad Imran Khalid,Epileptic MEG Spikes Detection Using Amplitude Thresholding and Dynamic Time Warping.,2017,5,IEEE Access,,db/journals/access/access5.html#KhalidAAAAP17,https://doi.org/10.1109/ACCESS.2017.2718044 +Suk Hoon Jung,Automated Construction and Maintenance of Wi-Fi Radio Maps for Crowdsourcing-Based Indoor Positioning Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#JungH18,https://doi.org/10.1109/ACCESS.2017.2780243 +Bingbing Zhang,Underwater Source Localization Using TDOA and FDOA Measurements With Unknown Propagation Speed and Sensor Parameter Errors.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangHWZ18,https://doi.org/10.1109/ACCESS.2018.2852636 +Il-Young Joo,Distributed Optimization Framework for Energy Management of Multiple Smart Homes With Distributed Energy Resources.,2017,5,IEEE Access,,db/journals/access/access5.html#JooC17,https://doi.org/10.1109/ACCESS.2017.2734911 +Hongyan Xin,Energy-Balanced Transmission With Accurate Distances for Strip-Based Wireless Sensor Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#XinL17,https://doi.org/10.1109/ACCESS.2017.2728367 +Ibrahim Ghafir,BotDet: A System for Real Time Botnet Command and Control Traffic Detection.,2018,6,IEEE Access,,db/journals/access/access6.html#GhafirPHBJKJ18,https://doi.org/10.1109/ACCESS.2018.2846740 +Bo Jin 0001,Predicting the Risk of Heart Failure With EHR Sequential Data Modeling.,2018,6,IEEE Access,,db/journals/access/access6.html#0001CLZYW18,https://doi.org/10.1109/ACCESS.2017.2789324 +Kai Lin,System Design for Big Data Application in Emotion-Aware Healthcare.,2016,4,IEEE Access,,db/journals/access/access4.html#LinXWTS16,https://doi.org/10.1109/ACCESS.2016.2616643 +Guoliang Wang,Fault Detection for Discrete-Time Systems With Fault Signal Happening Randomly: The Markov Approach.,2017,5,IEEE Access,,db/journals/access/access5.html#WangL17b,https://doi.org/10.1109/ACCESS.2017.2732831 +Shen Yan,A Novel Efficient Address Mutation Scheme for IPv6 Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#YanHMZM17,https://doi.org/10.1109/ACCESS.2016.2636907 +Wei Huang 0010,Beam-Blocked Channel Estimation for FDD Massive MIMO With Compressed Feedback.,2017,5,IEEE Access,,db/journals/access/access5.html#HuangHXY17,https://doi.org/10.1109/ACCESS.2017.2715984 +Obaid ur Rehman,Two-Phase Method for Image Authentication and Enhanced Decoding.,2017,5,IEEE Access,,db/journals/access/access5.html#RehmanZ17,https://doi.org/10.1109/ACCESS.2017.2719632 +Kelwin Fernandes,Automated Methods for the Decision Support of Cervical Cancer Screening Using Digital Colposcopies.,2018,6,IEEE Access,,db/journals/access/access6.html#FernandesCF18,https://doi.org/10.1109/ACCESS.2018.2839338 +Qing Su,A Method for Construction of Software Protection Technology Application Sequence Based on Petri Net With Inhibitor Arcs.,2018,6,IEEE Access,,db/journals/access/access6.html#SuHWL18,https://doi.org/10.1109/ACCESS.2018.2812764 +Paramananda Joshi,Power Level Distributions of Radio Base Station Equipment and User Devices in a 3G Mobile Communication Network in India and the Impact on Assessments of Realistic RF EMF Exposure.,2015,3,IEEE Access,,db/journals/access/access3.html#JoshiATCKT15,https://doi.org/10.1109/ACCESS.2015.2453056 +David Viamonte Sole,A Distributed Man-Machine Dispatching Architecture for Emergency Operations Based on 3GPP Mission Critical Services.,2018,6,IEEE Access,,db/journals/access/access6.html#SoleA18,https://doi.org/10.1109/ACCESS.2017.2782760 +Xiaorong Jing,Linear Space-Time Interference Alignment for K -User MIMO Interference Channels.,2018,6,IEEE Access,,db/journals/access/access6.html#JingMLZ18,https://doi.org/10.1109/ACCESS.2017.2787153 +Ahmed M. Almradi,Energy Beamforming for MIMO WIPT Relaying With Arbitrary Correlation.,2018,6,IEEE Access,,db/journals/access/access6.html#AlmradiX18,https://doi.org/10.1109/ACCESS.2018.2847254 +Khaled M. Rabie,A Comparison Between Orthogonal and Non-Orthogonal Multiple Access in Cooperative Relaying Power Line Communication Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#RabieAYGT17,https://doi.org/10.1109/ACCESS.2017.2710280 +Chung-Cheng Lu,Optimal Allocation of Cashiers and Pharmacists in Large Hospitals: A Point-Wise Fluid-Based Dynamic Queueing Network Approach.,2018,6,IEEE Access,,db/journals/access/access6.html#LuLCY18,https://doi.org/10.1109/ACCESS.2017.2785622 +Feilong Wu,Performance Analysis of Secret Precoding-Aided Spatial Modulation With Finite-Alphabet Signaling.,2018,6,IEEE Access,,db/journals/access/access6.html#WuWDY18,https://doi.org/10.1109/ACCESS.2018.2841027 +Yifei Xu,Cross-Tier Interference Alignment With Interfering Pair Selection in Uplink Heterogeneous Networks With Multiple Macrocells.,2018,6,IEEE Access,,db/journals/access/access6.html#XuLLLLP18,https://doi.org/10.1109/ACCESS.2018.2836901 +Naveen Mysore Balasubramanya,Low SNR Uplink CFO Estimation for Energy Efficient IoT Using LTE.,2016,4,IEEE Access,,db/journals/access/access4.html#BalasubramanyaL16,https://doi.org/10.1109/ACCESS.2016.2596679 +Wataru Nakayama,A Card Stack Model to Elucidate Key Challenges in the Development of Future Generation Supercomputers.,2013,1,IEEE Access,,db/journals/access/access1.html#Nakayama13,https://doi.org/10.1109/ACCESS.2013.2272175 +Zhipeng Tang,Social-Aware Data Collection Scheme Through Opportunistic Communication in Vehicular Mobile Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#TangLH16,https://doi.org/10.1109/ACCESS.2016.2611863 +Anam Sajid,Cloud-Assisted IoT-Based SCADA Systems Security: A Review of the State of the Art and Future Challenges.,2016,4,IEEE Access,,db/journals/access/access4.html#SajidAS16,https://doi.org/10.1109/ACCESS.2016.2549047 +Shao-Chou Hung,Architecture Harmonization Between Cloud Radio Access Networks and Fog Networks.,2015,3,IEEE Access,,db/journals/access/access3.html#HungHLC15,https://doi.org/10.1109/ACCESS.2015.2509638 +Ildefonso Ruano-Ruano,Advanced LMS Integration of SCORM Web Laboratories.,2016,4,IEEE Access,,db/journals/access/access4.html#Ruano-RuanoCGO16,https://doi.org/10.1109/ACCESS.2016.2587805 +Lotfi Hidri,Exact and Heuristic Procedures for the Two-Center Hybrid Flow Shop Scheduling Problem With Transportation Times.,2018,6,IEEE Access,,db/journals/access/access6.html#HidriEM18,https://doi.org/10.1109/ACCESS.2018.2826069 +Riaz Ahmad,Pattern Analysis of Citation-Anchors in Citing Documents for Accurate Identification of In-Text Citations.,2017,5,IEEE Access,,db/journals/access/access5.html#AhmadAQ17,https://doi.org/10.1109/ACCESS.2017.2689925 +Wen-Wen Yang,Polarization Reconfigurable Broadband Dielectric Resonator Antenna With a Lattice Structure.,2018,6,IEEE Access,,db/journals/access/access6.html#YangDSC18,https://doi.org/10.1109/ACCESS.2018.2826783 +Jianqin Feng,Atherosclerotic Plaque Pathological Analysis by Unsupervised K-Means Clustering.,2018,6,IEEE Access,,db/journals/access/access6.html#FengZYLSZ18,https://doi.org/10.1109/ACCESS.2018.2820318 +Syed Shakib Sarwar,Memristor-Based Nonvolatile Random Access Memory: Hybrid Architecture for Low Power Compact Memory Design.,2013,1,IEEE Access,,db/journals/access/access1.html#SarwarSQR13,https://doi.org/10.1109/ACCESS.2013.2259891 +Nan Bi,Partition Detection and Location of a Kelvin Wake on a 2-D Rough Sea Surface by Feature Selective Validation.,2018,6,IEEE Access,,db/journals/access/access6.html#BiQJ18,https://doi.org/10.1109/ACCESS.2018.2811038 +Yanhong Li,Probabilistic CkNN Queries of Uncertain Data in Large Road Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#LiZLSL16,https://doi.org/10.1109/ACCESS.2016.2635682 +Yanli Xu,Quality of Service Provisions for Maritime Communications Based on Cellular Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#Xu17,https://doi.org/10.1109/ACCESS.2017.2763639 +Bing Zhang 0011,An Empirical Study on Predicting Blood Pressure Using Classification and Regression Trees.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangWRCZ18,https://doi.org/10.1109/ACCESS.2017.2787980 +Andrés Navarro Cadavid,Using 3-D Video Game Technology in Channel Modeling.,2014,2,IEEE Access,,db/journals/access/access2.html#CadavidIS14,https://doi.org/10.1109/ACCESS.2014.2370758 +Ali Dorri,Multi-Agent Systems: A Survey.,2018,6,IEEE Access,,db/journals/access/access6.html#DorriKJ18,https://doi.org/10.1109/ACCESS.2018.2831228 +Ahmed El Shafie,Achievable Rates of Buffer-Aided Full-Duplex Gaussian Relay Channels.,2017,5,IEEE Access,,db/journals/access/access5.html#ShafieSKAH17,https://doi.org/10.1109/ACCESS.2017.2764079 +Tong Xu,Defending Against New-Flow Attack in SDN-Based Internet of Things.,2017,5,IEEE Access,,db/journals/access/access5.html#XuGDZFC17,https://doi.org/10.1109/ACCESS.2017.2666270 +Feng Zhao,Multi-Slot Spectrum Auction in Heterogeneous Networks Based on Deep Feedforward Network.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaoZW18,https://doi.org/10.1109/ACCESS.2018.2865437 +Tao Han,On Downlink NOMA in Heterogeneous Networks With Non-Uniform Small Cell Deployment.,2018,6,IEEE Access,,db/journals/access/access6.html#HanGLILBK18,https://doi.org/10.1109/ACCESS.2018.2845440 +Kao-Shing Hwang,A Schema-Based DNA Algorithm Applicable on Graphics Processing Units.,2016,4,IEEE Access,,db/journals/access/access4.html#HwangCJ16,https://doi.org/10.1109/ACCESS.2016.2569590 +Chen Zhang 0005,Region Constraint Person Re-Identification via Partial Least Square on Riemannian Manifold.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangL18,https://doi.org/10.1109/ACCESS.2018.2808602 +Yong Yang 0001,Remote Sensing Image Fusion Based on Adaptive IHS and Multiscale Guided Filter.,2016,4,IEEE Access,,db/journals/access/access4.html#YangWHYYQ16,https://doi.org/10.1109/ACCESS.2016.2599403 +Sergey A. Shevchik,Acoustic Emission for In Situ Monitoring of Solid Materials Pre-Weakening by Electric Discharge: A Machine Learning Approach.,2018,6,IEEE Access,,db/journals/access/access6.html#ShevchikMMW18,https://doi.org/10.1109/ACCESS.2018.2853666 +Eklas Hossain,Analysis and Mitigation of Power Quality Issues in Distributed Generation Systems Using Custom Power Devices.,2018,6,IEEE Access,,db/journals/access/access6.html#HossainTPAK18,https://doi.org/10.1109/ACCESS.2018.2814981 +Xin Hu,Secrecy Energy Efficiency in Wireless Powered Heterogeneous Networks: A Distributed ADMM Approach.,2018,6,IEEE Access,,db/journals/access/access6.html#HuLHFW18,https://doi.org/10.1109/ACCESS.2018.2825387 +Junwei Li,Robust Object Tracking via Large Margin and Scale-Adaptive Correlation Filter.,2018,6,IEEE Access,,db/journals/access/access6.html#LiZCC18,https://doi.org/10.1109/ACCESS.2017.2778740 +Yu Xue,An Improved Reciprocally Convex Inequality and Application to Stability Analysis of Time-Delay Systems Based on Delay Partition Approach.,2018,6,IEEE Access,,db/journals/access/access6.html#XueLY18,https://doi.org/10.1109/ACCESS.2018.2854563 +Chaolong Zhang,Capacity Prognostics of Lithium-Ion Batteries using EMD Denoising and Multiple Kernel RVM.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangHYX17,https://doi.org/10.1109/ACCESS.2017.2716353 +Cristina Rottondi,A Privacy-Friendly Gaming Framework in Smart Electricity and Water Grids.,2017,5,IEEE Access,,db/journals/access/access5.html#RottondiV17,https://doi.org/10.1109/ACCESS.2017.2727552 +Edison Cristofani,Random Subsampling and Data Preconditioning for Ground Penetrating Radars.,2018,6,IEEE Access,,db/journals/access/access6.html#CristofaniBLVSD18,https://doi.org/10.1109/ACCESS.2018.2831905 +Gyula Dorgo,Sequence Mining Based Alarm Suppression.,2018,6,IEEE Access,,db/journals/access/access6.html#DorgoA18,https://doi.org/10.1109/ACCESS.2018.2797247 +Xueyan Chen,Secrecy Rate Optimization for Cooperative Cognitive Radio Networks Aided by a Wireless Energy Harvesting Jammer.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenGLDLM18,https://doi.org/10.1109/ACCESS.2018.2850846 +Panagiotis Botsinis,Joint-Alphabet Space Time Shift Keying in mm-Wave Non-Orthogonal Multiple Access.,2018,6,IEEE Access,,db/journals/access/access6.html#BotsinisHABNCNE18,https://doi.org/10.1109/ACCESS.2017.2736978 +Ahmed M. Elmisery,Cognitive Privacy Middleware for Deep Learning Mashup in Environmental IoT.,2018,6,IEEE Access,,db/journals/access/access6.html#ElmiserySG18,https://doi.org/10.1109/ACCESS.2017.2787422 +Alexandru Stancu,Evaluation of a Wireless Transport Network Emulator Used for SDN Applications Development.,2018,6,IEEE Access,,db/journals/access/access6.html#StancuVH18,https://doi.org/10.1109/ACCESS.2018.2815844 +Mao Yang,Ultra-Short-Term Multistep Wind Power Prediction Based on Improved EMD and Reconstruction Method Using Run-Length Analysis.,2018,6,IEEE Access,,db/journals/access/access6.html#YangCDC18,https://doi.org/10.1109/ACCESS.2018.2844278 +Haiqiang Liu,Deterministic Construction of Measurement Matrices Based on Bose Balanced Incomplete Block Designs.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuJHYA18,https://doi.org/10.1109/ACCESS.2018.2824329 +Massimo Cafaro,On Frequency Estimation and Detection of Frequent Items in Time Faded Streams.,2017,5,IEEE Access,,db/journals/access/access5.html#CafaroEPA17,https://doi.org/10.1109/ACCESS.2017.2757238 +Radoslaw Klimek,Exploration of Human Activities Using Message Streaming Brokers and Automated Logical Reasoning for Ambient-Assisted Services.,2018,6,IEEE Access,,db/journals/access/access6.html#Klimek18,https://doi.org/10.1109/ACCESS.2018.2834532 +Adrien Arnaud,On the Fly Plane Detection and Time Consistency for Indoor Building Wall Recognition Using a Tablet Equipped With a Depth Sensor.,2018,6,IEEE Access,,db/journals/access/access6.html#ArnaudGA18,https://doi.org/10.1109/ACCESS.2018.2817838 +Chung-Ming Huang,V2V Data Offloading for Cellular Network Based on the Software Defined Network (SDN) Inside Mobile Edge Computing (MEC) Architecture.,2018,6,IEEE Access,,db/journals/access/access6.html#HuangCDSXZ18,https://doi.org/10.1109/ACCESS.2018.2820679 +Wei Shen 0003,Review of the Energy Saving Hydraulic System Based on Common Pressure Rail.,2017,5,IEEE Access,,db/journals/access/access5.html#ShenHPS17,https://doi.org/10.1109/ACCESS.2017.2648642 +Achilleas Papageorgiou,Security and Privacy Analysis of Mobile Health Applications: The Alarming State of Practice.,2018,6,IEEE Access,,db/journals/access/access6.html#PapageorgiouSPA18,https://doi.org/10.1109/ACCESS.2018.2799522 +Doyoung Kim,Robust Fingerprinting Method for Webtoon Identification in Large-Scale Databases.,2018,6,IEEE Access,,db/journals/access/access6.html#KimLJKL18,https://doi.org/10.1109/ACCESS.2018.2845540 +Yinliang Xu,Optimal Control Based Energy Management of Multiple Energy Storage Systems in a Microgrid.,2018,6,IEEE Access,,db/journals/access/access6.html#XuS18,https://doi.org/10.1109/ACCESS.2018.2845408 +Yanhui Guo,Spectral-Spatial HyperspectralImage Classification With K-Nearest Neighbor and Guided Filter.,2018,6,IEEE Access,,db/journals/access/access6.html#GuoCHSB18,https://doi.org/10.1109/ACCESS.2018.2820043 +Petter Norgren,A Multibeam-Based SLAM Algorithm for Iceberg Mapping Using AUVs.,2018,6,IEEE Access,,db/journals/access/access6.html#NorgrenS18,https://doi.org/10.1109/ACCESS.2018.2830819 +Saraju P. Mohanty,SBPG: Secure Better Portable Graphics for Trustworthy Media Communications in the IoT.,2018,6,IEEE Access,,db/journals/access/access6.html#MohantyKG18,https://doi.org/10.1109/ACCESS.2018.2795478 +Alvaro Rodríguez-Prieto,Polymers Selection for Harsh Environments to Be Processed Using Additive Manufacturing Techniques.,2018,6,IEEE Access,,db/journals/access/access6.html#Rodriguez-Prieto18,https://doi.org/10.1109/ACCESS.2018.2844360 +Kang-Un Choi,High Frequency Buffer-Feedback Oscillator With an RF Negative-Resistance Circuit.,2018,6,IEEE Access,,db/journals/access/access6.html#ChoiNCH18,https://doi.org/10.1109/ACCESS.2018.2818323 +Rui Liu,Device-to-Device Communications in Unlicensed Spectrum: Mode Selection and Resource Allocation.,2016,4,IEEE Access,,db/journals/access/access4.html#LiuYQZ16,https://doi.org/10.1109/ACCESS.2016.2603237 +Benjamin Stephens-Fripp,A Review of Non-Invasive Sensory Feedback Methods for Transradial Prosthetic Hands.,2018,6,IEEE Access,,db/journals/access/access6.html#Stephens-FrippA18,https://doi.org/10.1109/ACCESS.2018.2791583 +Emad Alasadi,OLC: Open-Level Control Plane Architecture for Providing Better Scalability in an SDN Network.,2018,6,IEEE Access,,db/journals/access/access6.html#AlasadiA18,https://doi.org/10.1109/ACCESS.2018.2848638 +Lei Wang,Evaluation on Step Counting Performance of Wristband Activity Monitors in Daily Living Environment.,2017,5,IEEE Access,,db/journals/access/access5.html#WangLWLYI17,https://doi.org/10.1109/ACCESS.2017.2721098 +Giovana Cover,Data-Driven Corpus Callosum Parcellation Method Through Diffusion Tensor Imaging.,2017,5,IEEE Access,,db/journals/access/access5.html#CoverPBAR17,https://doi.org/10.1109/ACCESS.2017.2761701 +Yubo Wang,Multi-Step Prediction of Physiological Tremor With Random Quaternion Neurons for Surgical Robotics Applications.,2018,6,IEEE Access,,db/journals/access/access6.html#WangTAHNAV18,https://doi.org/10.1109/ACCESS.2018.2852323 +Md. Shariful Alam,Phoneme Classification Using the Auditory Neurogram.,2017,5,IEEE Access,,db/journals/access/access5.html#AlamZJA17,https://doi.org/10.1109/ACCESS.2016.2647229 +Estel Cardellach,GNSS Transpolar Earth Reflectometry exploriNg System (G-TERN): Mission Concept.,2018,6,IEEE Access,,db/journals/access/access6.html#CardellachWBBCC18,https://doi.org/10.1109/ACCESS.2018.2814072 +Jong Wook Kim,Application of Local Differential Privacy to Collection of Indoor Positioning Data.,2018,6,IEEE Access,,db/journals/access/access6.html#KimKJ18,https://doi.org/10.1109/ACCESS.2018.2791588 +Cui-Yu Kong,Revenue Optimization Frameworks for Multi-Class PEV Charging Stations.,2015,3,IEEE Access,,db/journals/access/access3.html#KongBD15,https://doi.org/10.1109/ACCESS.2015.2498105 +Cristian Mera Macias,Review of Proposals for the Construction and Management of the Catalog of Information Technology Services.,2018,6,IEEE Access,,db/journals/access/access6.html#MaciasA18,https://doi.org/10.1109/ACCESS.2018.2865470 +Saba Arshad,SAMADroid: A Novel 3-Level Hybrid Malware Detection Model for Android Operating System.,2018,6,IEEE Access,,db/journals/access/access6.html#ArshadSWMSY18,https://doi.org/10.1109/ACCESS.2018.2792941 +Zahid Mahmood,Distributed Multiparty Key Management for Efficient Authentication in the Internet of Things.,2018,6,IEEE Access,,db/journals/access/access6.html#MahmoodUN18,https://doi.org/10.1109/ACCESS.2018.2840131 +Binbin Li,"High Accuracy and Unambiguous 2D-DOA Estimation With an Uniform Planar Array of ""Long"" Electric-Dipoles.",2018,6,IEEE Access,,db/journals/access/access6.html#LiBZZBF18,https://doi.org/10.1109/ACCESS.2018.2857483 +Yaoming Zhuang,Compound Event Barrier Coverage Algorithm Based on Environment Pareto Dominated Selection Strategy in Multi-Constraints Sensor Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhuangWZJ17,https://doi.org/10.1109/ACCESS.2017.2713442 +Hui Sun,Kirchhoff Beam Migration Based on Compressive Sensing.,2018,6,IEEE Access,,db/journals/access/access6.html#SunZHMGLTWY18,https://doi.org/10.1109/ACCESS.2018.2828160 +Sungchul Choi,Analyzing Technological Spillover Effects Between Technology Classes: the Case of Korea Technology Finance Corporation.,2018,6,IEEE Access,,db/journals/access/access6.html#ChoiNYPS18,https://doi.org/10.1109/ACCESS.2017.2788918 +Xin Luo 0001,A Novel Approach to Extracting Non-Negative Latent Factors From Non-Negative Big Sparse Matrices.,2016,4,IEEE Access,,db/journals/access/access4.html#LuoZSLX16,https://doi.org/10.1109/ACCESS.2016.2556680 +Jose Flordelis,Spatial Separation of Closely-Located Users in Measured Massive MIMO Channels.,2018,6,IEEE Access,,db/journals/access/access6.html#FlordelisRGDET18,https://doi.org/10.1109/ACCESS.2018.2854307 +Ryan N. Rakvic,Energy Efficient Iris Recognition With Graphics Processing Units.,2016,4,IEEE Access,,db/journals/access/access4.html#RakvicBN16,https://doi.org/10.1109/ACCESS.2016.2571747 +Ting Li,On Selecting Vehicles as Recommenders for Vehicular Social Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#LiZLH17,https://doi.org/10.1109/ACCESS.2017.2678512 +Guimei Zheng,ESPRIT and Unitary ESPRIT Algorithms for Coexistence of Circular and Noncircular Signals in Bistatic MIMO Radar.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhengTY16,https://doi.org/10.1109/ACCESS.2016.2624561 +Yu-Xiang Lei,Improved Differential Evolution With a Modified Orthogonal Learning Strategy.,2017,5,IEEE Access,,db/journals/access/access5.html#LeiGWLC17,https://doi.org/10.1109/ACCESS.2017.2705019 +Kaikun Niu,Coupling of Gain Medium and Extraordinary Optical Transmission for Effective Loss Compensation.,2018,6,IEEE Access,,db/journals/access/access6.html#NiuHFLLW18,https://doi.org/10.1109/ACCESS.2018.2815519 +Xianneng Li,Revisiting Genetic Network Programming (GNP): Towards the Simplified Genetic Operators.,2018,6,IEEE Access,,db/journals/access/access6.html#LiYY18,https://doi.org/10.1109/ACCESS.2018.2864253 +Guanglin Zhang,Capacity of Content-Centric Hybrid Wireless Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangLRWZ17,https://doi.org/10.1109/ACCESS.2017.2669111 +Zhiyu Lu,A Novel Direct Position Determination Algorithm for Orthogonal Frequency Division Multiplexing Signals Based on the Time and Angle of Arrival.,2017,5,IEEE Access,,db/journals/access/access5.html#LuWBW17,https://doi.org/10.1109/ACCESS.2017.2766632 +Jinzhong Wang,IS2Fun: Identification of Subway Station Functions Using Massive Urban Data.,2017,5,IEEE Access,,db/journals/access/access5.html#WangKRXTA17,https://doi.org/10.1109/ACCESS.2017.2766237 +Bilal Hussain,An Innovative Heuristic Algorithm for IoT-Enabled Smart Homes for Developing Countries.,2018,6,IEEE Access,,db/journals/access/access6.html#HussainHJGAA18,https://doi.org/10.1109/ACCESS.2018.2809778 +Stefan Rass,Physical Intrusion Games - Optimizing Surveillance by Simulation and Game Theory.,2017,5,IEEE Access,,db/journals/access/access5.html#RassAASZM17,https://doi.org/10.1109/ACCESS.2017.2693425 +Ashutosh Singandhupe,Reliable Security Algorithm for Drones Using Individual Characteristics From an EEG Signal.,2018,6,IEEE Access,,db/journals/access/access6.html#SingandhupeLF18,https://doi.org/10.1109/ACCESS.2018.2827362 +Jie Liu 0011,A New Method for the Optimal Control Problem of Path Planning for Unmanned Ground Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuHLP18,https://doi.org/10.1109/ACCESS.2018.2846769 +Qinghe Zheng,Improvement of Generalization Ability of Deep CNN via Implicit Regularization in Two-Stage Training Process.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhengYYZZ18,https://doi.org/10.1109/ACCESS.2018.2810849 +Dayoung Lee,An App-Based Authoring System for Personalized Sensory Stimulation of Children With Developmental Disabilities.,2017,5,IEEE Access,,db/journals/access/access5.html#LeePS17,https://doi.org/10.1109/ACCESS.2017.2712123 +Jian Luo 0004,The Effects of Comparator Dynamic Capacitor Mismatch in SAR ADC and Correction.,2018,6,IEEE Access,,db/journals/access/access6.html#LuoLNLY18,https://doi.org/10.1109/ACCESS.2018.2797242 +Gahangir Hossain,Cognitive Ability-Demand Gap Analysis With Latent Response Models.,2014,2,IEEE Access,,db/journals/access/access2.html#HossainY14,https://doi.org/10.1109/ACCESS.2014.2339328 +Hui-Bin Zhang,Reconfigurable Loop Antenna With Two Parasitic Grounded Strips for WWAN/LTE Unbroken-Metal-Rimmed Smartphones.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangBQGY17,https://doi.org/10.1109/ACCESS.2017.2686431 +Opeyemi A. Osanaiye,Denial of Service Defence for Resource Availability in Wireless Sensor Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#OsanaiyeAH18,https://doi.org/10.1109/ACCESS.2018.2793841 +Mohd Tariq,Modeling and Integration of a Lithium-Ion Battery Energy Storage System With the More Electric Aircraft 270 V DC Power Distribution Architecture.,2018,6,IEEE Access,,db/journals/access/access6.html#TariqMGG18,https://doi.org/10.1109/ACCESS.2018.2860679 +Mikel Uriarte,Expressive Policy-Based Access Control for Resource-Constrained Devices.,2018,6,IEEE Access,,db/journals/access/access6.html#UriarteAJHC18,https://doi.org/10.1109/ACCESS.2017.2730958 +Xiu Zhang,Utilization-Oriented Spectrum Allocation in an Underlay Cognitive Radio Network.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangZHX18,https://doi.org/10.1109/ACCESS.2018.2808473 +Zhenzhou Wang,Determining the Clustering Centers by Slope Difference Distribution.,2017,5,IEEE Access,,db/journals/access/access5.html#Wang17,https://doi.org/10.1109/ACCESS.2017.2715861 +Myunghoon Jeon,MapReduce-Based Distributed Video Encoding Using Content-Aware Video Segmentation and Scheduling.,2016,4,IEEE Access,,db/journals/access/access4.html#JeonKL16,https://doi.org/10.1109/ACCESS.2016.2616540 +Jaeyoung Lee,Determinants of Users' Intention to Purchase Probability-Based Items in Mobile Social Network Games: A Case of South Korea.,2018,6,IEEE Access,,db/journals/access/access6.html#LeeSPL18,https://doi.org/10.1109/ACCESS.2018.2806078 +Limei He,LTE/LTE-A Network Security Data Collection and Analysis for Security Measurement: A Survey.,2018,6,IEEE Access,,db/journals/access/access6.html#HeYA18,https://doi.org/10.1109/ACCESS.2018.2792534 +Ali Mehrdadian,Analysis of Two Dimensional Graphene-Based Multilayered Structures Using the Extended Method of Lines.,2018,6,IEEE Access,,db/journals/access/access6.html#MehrdadianAF18,https://doi.org/10.1109/ACCESS.2018.2820089 +Feng Wang 0002,Towards Understanding Community Interests With Topic Modeling.,2018,6,IEEE Access,,db/journals/access/access6.html#WangOWX18,https://doi.org/10.1109/ACCESS.2018.2815904 +Xuzhen Huang,Suppressing the Thrust Ripple of the Consequent-Pole Permanent Magnet Linear Synchronous Motor by Two-Step Design.,2018,6,IEEE Access,,db/journals/access/access6.html#HuangLZZLG18,https://doi.org/10.1109/ACCESS.2018.2847237 +Qihui Wu,Information Measurement of Cognitive Communication Systems: The Introduction of Negative Cognitive Information.,2018,6,IEEE Access,,db/journals/access/access6.html#WuCWDZZ18,https://doi.org/10.1109/ACCESS.2018.2842245 +Zhe Wang,Nested Array Sensor With Grating Lobe Suppression and Arbitrary Transmit-Receive Beampattern Synthesis.,2018,6,IEEE Access,,db/journals/access/access6.html#WangWZS18,https://doi.org/10.1109/ACCESS.2018.2804486 +Ayush Dogra,From Multi-Scale Decomposition to Non-Multi-Scale Decomposition Methods: A Comprehensive Survey of Image Fusion Techniques and Its Applications.,2017,5,IEEE Access,,db/journals/access/access5.html#DograGA17,https://doi.org/10.1109/ACCESS.2017.2735865 +Rakesh Kumar Lenka,Building Scalable Cyber-Physical-Social Networking Infrastructure Using IoT and Low Power Sensors.,2018,6,IEEE Access,,db/journals/access/access6.html#LenkaRTSPSPRT18,https://doi.org/10.1109/ACCESS.2018.2842760 +Xiwei Liu,Cluster Synchronization for Linearly Coupled Nonidentical Systems With Delays via Aperiodically Intermittent Pinning Control.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuL17,https://doi.org/10.1109/ACCESS.2017.2681800 +Avinash Kumar Singh,Visual Appearance Modulates Prediction Error in Virtual Reality.,2018,6,IEEE Access,,db/journals/access/access6.html#SinghCCKKGL18,https://doi.org/10.1109/ACCESS.2018.2832089 +Rui Yang 0009,Robust Predictive Current Control With Variable-Gain Adaptive Disturbance Observer for PMLSM.,2018,6,IEEE Access,,db/journals/access/access6.html#YangWLZJ18,https://doi.org/10.1109/ACCESS.2018.2809608 +Samsul Setumin,Difference of Gaussian Oriented Gradient Histogram for Face Sketch to Photo Matching.,2018,6,IEEE Access,,db/journals/access/access6.html#SetuminS18,https://doi.org/10.1109/ACCESS.2018.2855208 +Jinqing Luo,A Solution of Optimal Power Flow Incorporating Wind Generation and Power Grid Uncertainties.,2018,6,IEEE Access,,db/journals/access/access6.html#LuoSN18,https://doi.org/10.1109/ACCESS.2018.2823982 +Siyuan Zhou,Performance Analysis of Wireless Powered Communications With Multiple Antennas.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhouWCL18,https://doi.org/10.1109/ACCESS.2018.2810136 +Zhen Tan,GTrans: Generic Knowledge Graph Embedding via Multi-State Entities and Dynamic Relation Spaces.,2018,6,IEEE Access,,db/journals/access/access6.html#TanZFX18,https://doi.org/10.1109/ACCESS.2018.2797876 +Sushant Kumar,Multi-User CFOs Estimation for SC-FDMA System Over Frequency Selective Fading Channels.,2018,6,IEEE Access,,db/journals/access/access6.html#KumarMY18,https://doi.org/10.1109/ACCESS.2018.2856578 +D. G. Kanishka Madusanka,Hybrid Vision Based Reach-to-Grasp Task Planning Method for Trans-Humeral Prostheses.,2017,5,IEEE Access,,db/journals/access/access5.html#MadusankaGAM17,https://doi.org/10.1109/ACCESS.2017.2727502 +Yong Yang 0001,Robust Sparse Representation Combined With Adaptive PCNN for Multifocus Image Fusion.,2018,6,IEEE Access,,db/journals/access/access6.html#YangYHDS18,https://doi.org/10.1109/ACCESS.2018.2822688 +Yu Han 0003,Low-Complexity Iterative Detection Algorithm for Massive Data Communication in IIoT.,2018,6,IEEE Access,,db/journals/access/access6.html#HanWLGL18,https://doi.org/10.1109/ACCESS.2018.2809006 +Chien-Hsing Chou,A Block Recognition System Constructed by Using a Novel Projection Algorithm and Convolution Neural Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#ChouS17,https://doi.org/10.1109/ACCESS.2017.2762526 +Mahmoud A. El-Sharief,Density Table-Based Synchronization for Multi-Hop Wireless Sensor Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#El-ShariefEK18,https://doi.org/10.1109/ACCESS.2017.2780923 +Qing-Chang Zhong,Self-Synchronized Universal Droop Controller.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhongMZ16,https://doi.org/10.1109/ACCESS.2016.2616115 +Dongping Yu,Dictionary Refinement for Compressive Sensing Based Device-Free Localization via the Variational EM Algorithm.,2016,4,IEEE Access,,db/journals/access/access4.html#YuGLF16,https://doi.org/10.1109/ACCESS.2017.2649540 +Jun Li 0036,Virtual Spatial Modulation.,2016,4,IEEE Access,,db/journals/access/access4.html#LiWZC16,https://doi.org/10.1109/ACCESS.2016.2618772 +Hao Zhang 0036,Configuration for Realizing a Push-Push Parallel-Feedback Oscillator Through a Differential Bandpass Filter.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangKW18,https://doi.org/10.1109/ACCESS.2018.2839910 +Huan Wang,A Vulnerability Assessment Method in Industrial Internet of Things Based on Attack Graph and Maximum Flow.,2018,6,IEEE Access,,db/journals/access/access6.html#WangCZDL18,https://doi.org/10.1109/ACCESS.2018.2805690 +Furqan Alam,Data Fusion and IoT for Smart Ubiquitous Environments: A Survey.,2017,5,IEEE Access,,db/journals/access/access5.html#AlamMKAA17,https://doi.org/10.1109/ACCESS.2017.2697839 +Kuo Cao,Secure Transmission With Aid of a Helper for MIMOME Network Having Finite Alphabet Inputs.,2017,5,IEEE Access,,db/journals/access/access5.html#CaoWCY17,https://doi.org/10.1109/ACCESS.2017.2671878 +Ji Zhang,Coupling a Fast Fourier Transformation With a Machine Learning Ensemble Model to Support Recommendations for Heart Disease Patients in a Telehealth Environment.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangLTLCLZ17,https://doi.org/10.1109/ACCESS.2017.2706318 +Weiqiang Tan,Spectral and Energy Efficiency of Massive MIMO for Hybrid Architectures Based on Phase Shifters.,2018,6,IEEE Access,,db/journals/access/access6.html#TanXXTFJ18,https://doi.org/10.1109/ACCESS.2018.2796571 +Zhiqiang Liu,Buffer-Aware Resource Allocation Scheme With Energy Efficiency and QoS Effectiveness in Wireless Body Area Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuLC17,https://doi.org/10.1109/ACCESS.2017.2758348 +Muhammad Muzammel,Event-Related Potential Responses of Motorcyclists Towards Rear End Collision Warning System.,2018,6,IEEE Access,,db/journals/access/access6.html#MuzammelYM18,https://doi.org/10.1109/ACCESS.2018.2845899 +Jing Yang 0014,Sparse Recursive Least Mean p-Power Extreme Learning Machine for Regression.,2018,6,IEEE Access,,db/journals/access/access6.html#YangXRDC18,https://doi.org/10.1109/ACCESS.2018.2815503 +Lu Wang,Nonlinear Blind Source Separation Unifying Vanishing Component Analysis and Temporal Structure.,2018,6,IEEE Access,,db/journals/access/access6.html#WangO18,https://doi.org/10.1109/ACCESS.2018.2860683 +Muhammad Asif,Quality of Service of Routing Protocols in Wireless Sensor Networks: A Review.,2017,5,IEEE Access,,db/journals/access/access5.html#AsifKASS17,https://doi.org/10.1109/ACCESS.2017.2654356 +Itamar Levi,Dual Mode Logic - Design for Energy Efficiency and High Performance.,2013,1,IEEE Access,,db/journals/access/access1.html#LeviF13,https://doi.org/10.1109/ACCESS.2013.2262015 +Quan Xu,Non-Autonomous Second-Order Memristive Chaotic Circuit.,2017,5,IEEE Access,,db/journals/access/access5.html#XuZBH17,https://doi.org/10.1109/ACCESS.2017.2727522 +Tianyu Zhu,A Novel Constant-Frequency Quasi-Resonant Converter.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhuJWL18,https://doi.org/10.1109/ACCESS.2018.2854846 +Hongli He,Proportional Fairness-Based Resource Allocation for LTE-U Coexisting With Wi-Fi.,2017,5,IEEE Access,,db/journals/access/access5.html#HeSHCQ17,https://doi.org/10.1109/ACCESS.2016.2604822 +Zhiyuan Ma,Fast Searching Strategy for Critical Cascading Paths Toward Blackouts.,2018,6,IEEE Access,,db/journals/access/access6.html#MaLSWM18,https://doi.org/10.1109/ACCESS.2018.2846022 +Kai-Ran Xiang,Compact Microstrip Bandpass Filter With Multispurious Suppression Using Quarter-Wavelength and Half-Wavelength Uniform Impedance Resonators.,2018,6,IEEE Access,,db/journals/access/access6.html#XiangC18,https://doi.org/10.1109/ACCESS.2018.2822262 +Huaqing Lin,A Survey on Network Security-Related Data Collection Technologies.,2018,6,IEEE Access,,db/journals/access/access6.html#LinYCZ18,https://doi.org/10.1109/ACCESS.2018.2817921 +Héctor Zatarain-Aceves,The Maximum Uniform Message Distribution Problem.,2018,6,IEEE Access,,db/journals/access/access6.html#Zatarain-Aceves18,https://doi.org/10.1109/ACCESS.2018.2837624 +Joaquin Aparicio,Asynchronous Detection and Identification of Multiple Users by Multi-Carrier Modulated Complementary Set of Sequences.,2018,6,IEEE Access,,db/journals/access/access6.html#AparicioS18,https://doi.org/10.1109/ACCESS.2018.2828500 +Xiaoyan Wang 0003,Energy Efficient Learning-Based Indoor Multi-Band WLAN for Smart Buildings.,2018,6,IEEE Access,,db/journals/access/access6.html#WangUOKT18,https://doi.org/10.1109/ACCESS.2018.2849094 +Chongyi Li,A Cascaded Convolutional Neural Network for Single Image Dehazing.,2018,6,IEEE Access,,db/journals/access/access6.html#LiGPFP18,https://doi.org/10.1109/ACCESS.2018.2818882 +Daryus Chandra,Quantum Coding Bounds and a Closed-Form Approximation of the Minimum Distance Versus Quantum Coding Rate.,2017,5,IEEE Access,,db/journals/access/access5.html#ChandraBNABNH17,https://doi.org/10.1109/ACCESS.2017.2716367 +Vincenzo Genovese,A Smartwatch Step Counter for Slow and Intermittent Ambulation.,2017,5,IEEE Access,,db/journals/access/access5.html#GenoveseMS17,https://doi.org/10.1109/ACCESS.2017.2702066 +Yang Liu 0048,Coding and Detection Schemes for Ambient Backscatter Communication Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuWDZ17,https://doi.org/10.1109/ACCESS.2017.2679135 +Wei Wei,Extending Non-Volatile Operation to DRAM Cells.,2013,1,IEEE Access,,db/journals/access/access1.html#WeiNL13,https://doi.org/10.1109/ACCESS.2013.2288312 +Dazhong He,A Survey to Predict the Trend of AI-able Server Evolution in the Cloud.,2018,6,IEEE Access,,db/journals/access/access6.html#HeWL18,https://doi.org/10.1109/ACCESS.2018.2801293 +Tung Duc Nguyen,Segmentation Mask Refinement Using Image Transformations.,2017,5,IEEE Access,,db/journals/access/access5.html#NguyenSHT17,https://doi.org/10.1109/ACCESS.2017.2772269 +Nan Zhang,Dynamic Channel Modeling for an Indoor Scenario at 23.5 GHz.,2015,3,IEEE Access,,db/journals/access/access3.html#ZhangDTYYMW15,https://doi.org/10.1109/ACCESS.2015.2510363 +Yuki Kaeri,Agent-Based System Architecture Supporting Remote Collaboration via an Internet of Multimedia Things Approach.,2018,6,IEEE Access,,db/journals/access/access6.html#KaeriMSM18,https://doi.org/10.1109/ACCESS.2018.2796307 +Zhiyong Chen 0003,Beamforming for Combating Inter-cluster and Intra-cluster Interference in Hybrid NOMA Systems.,2016,4,IEEE Access,,db/journals/access/access4.html#ChenDD16,https://doi.org/10.1109/ACCESS.2016.2598380 +Anam Amjad,Event-Driven Process Chain for Modeling and Verification of Business Requirements-A Systematic Literature Review.,2018,6,IEEE Access,,db/journals/access/access6.html#AmjadAABR18,https://doi.org/10.1109/ACCESS.2018.2791666 +Sarah S. Bawazir,Multiple Access for Visible Light Communications: Research Challenges and Future Trends.,2018,6,IEEE Access,,db/journals/access/access6.html#BawazirSMAK18,https://doi.org/10.1109/ACCESS.2018.2832088 +Jinxin Li,A Gain Enhancement and Flexible Control of Beam Numbers Antenna Based on Frequency Selective Surfaces.,2018,6,IEEE Access,,db/journals/access/access6.html#LiZLD18,https://doi.org/10.1109/ACCESS.2018.2791844 +Lianming Zhang,A Box-Covering-Based Routing Algorithm for Large-Scale SDNs.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangDSH17,https://doi.org/10.1109/ACCESS.2017.2682501 +Xiang Li 0008,High-Frequency Analysis of Intercalated Multilayer Graphene (IMLG) and Implication for Tunable Terahertz Resonator Design.,2017,5,IEEE Access,,db/journals/access/access5.html#LiWM17,https://doi.org/10.1109/ACCESS.2017.2701506 +Zhengyi Zhou,Hardware-Efficient Hybrid Precoding for Millimeter Wave Systems With Multi-Feed Reflectarrays.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhouGWC18,https://doi.org/10.1109/ACCESS.2018.2793223 +Weigang Hou,Cooperative Mechanism for Energy Transportation and Storage in Internet of Energy.,2017,5,IEEE Access,,db/journals/access/access5.html#HouTGWZN17,https://doi.org/10.1109/ACCESS.2017.2664981 +Umair Sajid Hashmi,User-Centric Cloud RAN: An Analytical Framework for Optimizing Area Spectral and Energy Efficiency.,2018,6,IEEE Access,,db/journals/access/access6.html#HashmiZI18,https://doi.org/10.1109/ACCESS.2018.2820898 +Huijie Zhang,Synthetic Modeling Method for Large Scale Terrain Based on Hydrology.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhangQHGH16,https://doi.org/10.1109/ACCESS.2016.2612700 +Jiaxu Leng,Real-Time RGB-D Visual Tracking With Scale Estimation and Occlusion Handling.,2018,6,IEEE Access,,db/journals/access/access6.html#LengL18,https://doi.org/10.1109/ACCESS.2018.2831443 +Naveed Iqbal,Detection and Denoising of Microseismic Events Using Time-Frequency Representation and Tensor Decomposition.,2018,6,IEEE Access,,db/journals/access/access6.html#IqbalLMAKZ18,https://doi.org/10.1109/ACCESS.2018.2830975 +Linhan Guo,Availability Modeling of Two-Component Repairable Systems Subject to Switch-Off.,2018,6,IEEE Access,,db/journals/access/access6.html#GuoWYL18,https://doi.org/10.1109/ACCESS.2018.2806386 +Zhi Yan,Modeling and Analysis of Two-Tier HetNets With Cognitive Small Cells.,2017,5,IEEE Access,,db/journals/access/access5.html#YanZCL17,https://doi.org/10.1109/ACCESS.2016.2628910 +Xin Li 0017,Migration-Based Online CPSCN Big Data Analysis in Data Centers.,2018,6,IEEE Access,,db/journals/access/access6.html#LiWLQ18,https://doi.org/10.1109/ACCESS.2018.2810255 +Maotian Zhang,You Can Act Locally With Efficiency: Influential User Identification in Mobile Social Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangYTT17,https://doi.org/10.1109/ACCESS.2016.2632900 +Lansheng Han,Equilibrium Index and Core Node Set of New Social Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#HanCDDHY18,https://doi.org/10.1109/ACCESS.2018.2801828 +Siyao Liu,Modeling the Complex Network of Multidimensional Information Time Series to Characterize the Volatility Pattern Evolution.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuGFSFLG18,https://doi.org/10.1109/ACCESS.2018.2842069 +Celia Garrido-Hidalgo,IoT Heterogeneous Mesh Network Deployment for Human-in-the-Loop Challenges Towards a Social and Sustainable Industry 4.0.,2018,6,IEEE Access,,db/journals/access/access6.html#Garrido-Hidalgo18,https://doi.org/10.1109/ACCESS.2018.2836677 +Hanqing Liang,Reproduction Methodology for Single Phase-to-Ground Faults in Overhead Transmission Lines.,2017,5,IEEE Access,,db/journals/access/access5.html#LiangLSJ17,https://doi.org/10.1109/ACCESS.2017.2740955 +Noor Rehman,SDMGRS: Soft Dominance Based Multi Granulation Rough Sets and Their Applications in Conflict Analysis Problems.,2018,6,IEEE Access,,db/journals/access/access6.html#RehmanAAP18,https://doi.org/10.1109/ACCESS.2018.2841876 +Hamidreza Ghafghazi,Location-Aware Authorization Scheme for Emergency Response.,2016,4,IEEE Access,,db/journals/access/access4.html#GhafghaziEMA16,https://doi.org/10.1109/ACCESS.2016.2601442 +Milton Fonseca,Pre-Dispatch of Load in Thermoelectric Power Plants Considering Maintenance Management Using Fuzzy Logic.,2018,6,IEEE Access,,db/journals/access/access6.html#FonsecaBBLN18,https://doi.org/10.1109/ACCESS.2018.2854612 +Alexandre K. Ligo,Throughput and Economics of DSRC-Based Internet of Vehicles.,2018,6,IEEE Access,,db/journals/access/access6.html#LigoPFB18,https://doi.org/10.1109/ACCESS.2017.2785499 +Gang Zhang,Stochastic Resonance in Second-Order Underdamped System With Exponential Bistable Potential for Bearing Fault Diagnosis.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangZZX18,https://doi.org/10.1109/ACCESS.2018.2856620 +Luis Ivan Ruiz Flores,Modernization of National Oil Industry in Mexico: Upgrading With IEC61850.,2014,2,IEEE Access,,db/journals/access/access2.html#FloresG14,https://doi.org/10.1109/ACCESS.2014.2320507 +Shi-Cho Cha,A User-Friendly Privacy Framework for Users to Achieve Consents With Nearby BLE Devices.,2018,6,IEEE Access,,db/journals/access/access6.html#ChaCYHS18,https://doi.org/10.1109/ACCESS.2018.2820716 +Fizza Abbas,PRISM: PRivacy-Aware Interest Sharing and Matching in Mobile Social Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#AbbasRO16,https://doi.org/10.1109/ACCESS.2016.2564985 +Luyi Bai,Reengineering Object-Oriented Fuzzy Spatiotemporal Data into XML.,2018,6,IEEE Access,,db/journals/access/access6.html#BaiJL18,https://doi.org/10.1109/ACCESS.2018.2809858 +Qingshan Xu,Day-Ahead Load Peak Shedding/Shifting Scheme Based on Potential Load Values Utilization: Theory and Practice of Policy-Driven Demand Response in China.,2017,5,IEEE Access,,db/journals/access/access5.html#XuDYZD17,https://doi.org/10.1109/ACCESS.2017.2763678 +Kang He,Dynamic Bayesian Network-Based Approach by Integrating Sensor Deployment for Machining Process Monitoring.,2018,6,IEEE Access,,db/journals/access/access6.html#HeZJL18,https://doi.org/10.1109/ACCESS.2018.2846251 +Lilin Fan,Semi-Supervised Community Detection Based on Distance Dynamics.,2018,6,IEEE Access,,db/journals/access/access6.html#FanXLR18,https://doi.org/10.1109/ACCESS.2018.2838568 +Jie Xiao,Blockchain Architecture Reliability-Based Measurement for Circuit Unit Importance.,2018,6,IEEE Access,,db/journals/access/access6.html#XiaoLJLYH18,https://doi.org/10.1109/ACCESS.2018.2800712 +Zejun Sun,Identifying Influential Nodes in Complex Networks Based on Weighted Formal Concept Analysis.,2017,5,IEEE Access,,db/journals/access/access5.html#SunWSHWS17,https://doi.org/10.1109/ACCESS.2017.2679038 +Weidong Min,Detection of Human Falls on Furniture Using Scene Analysis Based on Deep Learning and Activity Characteristics.,2018,6,IEEE Access,,db/journals/access/access6.html#MinCRLY18,https://doi.org/10.1109/ACCESS.2018.2795239 +Kaijun Yang,A DAQM-Based Load Balancing Scheme for High Performance Computing Platforms.,2017,5,IEEE Access,,db/journals/access/access5.html#YangLZS17,https://doi.org/10.1109/ACCESS.2017.2760251 +Huansheng Ning,From Internet to Smart World.,2015,3,IEEE Access,,db/journals/access/access3.html#NingLMYWYH15,https://doi.org/10.1109/ACCESS.2015.2493890 +Wan Wan,Optimum Design of Low-Cost Dual-Mode Beam-Steerable Arrays for Customer-Premises Equipment Applications.,2018,6,IEEE Access,,db/journals/access/access6.html#WanGG18,https://doi.org/10.1109/ACCESS.2018.2813299 +Baoju Zhang,On the Downlink Throughput Capacity of Hybrid Wireless Networks With MIMO.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangWWT17,https://doi.org/10.1109/ACCESS.2017.2777527 +Yang Zhang,Approximating Extremely Large Networks via Continuum Limits.,2013,1,IEEE Access,,db/journals/access/access1.html#ZhangCHE13,https://doi.org/10.1109/ACCESS.2013.2281668 +Hossam M. Alsaket,Exploring Evolutionary Multi-Objective Techniques in Self-Organizing Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#AlsaketMEA17,https://doi.org/10.1109/ACCESS.2017.2706188 +Suneet Kumar Singh,Impact Analysis of Start-Up Lost Time at Major Intersections on Sathorn Road Using a Synchro Optimization and a Microscopic SUMO Traffic Simulation.,2018,6,IEEE Access,,db/journals/access/access6.html#SinghKA18,https://doi.org/10.1109/ACCESS.2017.2739240 +Mohd Azri Mohd Izhar,Quantum Turbo Decoding for Quantum Channels Exhibiting Memory.,2018,6,IEEE Access,,db/journals/access/access6.html#IzharBNBACNH18,https://doi.org/10.1109/ACCESS.2018.2808373 +Zhongbao Zhou,Anti-Radiation Performance Assessment of Satellite Units Based on the Weiner Process.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhouRZSW18,https://doi.org/10.1109/ACCESS.2018.2799302 +Kui Xiang,Regularized Taylor Echo State Networks for Predictive Control of Partially Observed Systems.,2016,4,IEEE Access,,db/journals/access/access4.html#XiangLZPWL16,https://doi.org/10.1109/ACCESS.2016.2582478 +Zhidu Li,Delay and Delay-Constrained Throughput Performance of a Wireless-Powered Communication System.,2017,5,IEEE Access,,db/journals/access/access5.html#LiJGLSY17,https://doi.org/10.1109/ACCESS.2017.2760378 +Bing-Fei Wu,Adaptive Feature Mapping for Customizing Deep Learning Based Facial Expression Recognition Model.,2018,6,IEEE Access,,db/journals/access/access6.html#WuL18,https://doi.org/10.1109/ACCESS.2018.2805861 +Xiaolong Yang,Optimal File Dissemination and Beamforming for Cache-Enabled C-RANs.,2018,6,IEEE Access,,db/journals/access/access6.html#YangZFL18,https://doi.org/10.1109/ACCESS.2017.2775198 +Piero Diego,Plasma and Fields Evaluation at the Chinese Seismo-Electromagnetic Satellite for Electric Field Detector Measurements.,2017,5,IEEE Access,,db/journals/access/access5.html#DiegoBCMVB17,https://doi.org/10.1109/ACCESS.2017.2674019 +Yao Guo 0001,Understanding Application-Battery Interactions on Smartphones: A Large-Scale Empirical Study.,2017,5,IEEE Access,,db/journals/access/access5.html#GuoWC17,https://doi.org/10.1109/ACCESS.2017.2728620 +Bor-Shing Lin,Development of Novel Lip-Reading Recognition Algorithm.,2017,5,IEEE Access,,db/journals/access/access5.html#LinYLLL17,https://doi.org/10.1109/ACCESS.2017.2649838 +Jian Wang 0018,A Web Service Discovery Approach Based on Common Topic Groups Extraction.,2017,5,IEEE Access,,db/journals/access/access5.html#WangGMHH17,https://doi.org/10.1109/ACCESS.2017.2712744 +Akbar Assa,Similarity-Based Multiple Model Adaptive Estimation.,2018,6,IEEE Access,,db/journals/access/access6.html#AssaP18,https://doi.org/10.1109/ACCESS.2018.2853572 +Abhilash Rakkunedeth Hareendranathan,Random Walker Framework for Sensor-Based Echocardiography Fusion.,2018,6,IEEE Access,,db/journals/access/access6.html#Hareendranathan18,https://doi.org/10.1109/ACCESS.2018.2806228 +Vasilis Maglogiannis,A Q-Learning Scheme for Fair Coexistence Between LTE and Wi-Fi in Unlicensed Spectrum.,2018,6,IEEE Access,,db/journals/access/access6.html#MaglogiannisNSM18,https://doi.org/10.1109/ACCESS.2018.2829492 +Meng Wang 0014,Sentiment Classification Based on Information Geometry and Deep Belief Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#WangNXL18,https://doi.org/10.1109/ACCESS.2018.2848298 +Keke Tang,3D Object Recognition in Cluttered Scenes With Robust Shape Description and Correspondence Selection.,2017,5,IEEE Access,,db/journals/access/access5.html#TangSC17,https://doi.org/10.1109/ACCESS.2017.2658681 +Mehdi Kohani,Malfunctions of Medical Devices Due to Electrostatic Occurrences Big Data Analysis of 10 Years of the FDA's Reports.,2018,6,IEEE Access,,db/journals/access/access6.html#KohaniP18,https://doi.org/10.1109/ACCESS.2017.2782088 +Yidong Xu,Underwater Electro-Location Method Based on Improved Matrix Adaptation Evolution Strategy.,2018,6,IEEE Access,,db/journals/access/access6.html#XuGSL18,https://doi.org/10.1109/ACCESS.2018.2855965 +Fariba Aalamifar,Optimized Data Acquisition Point Placement for an Advanced Metering Infrastructure Based on Power Line Communication Technology.,2018,6,IEEE Access,,db/journals/access/access6.html#AalamifarL18,https://doi.org/10.1109/ACCESS.2018.2865592 +Shuai Xiao,Publication Popularity Modeling via Adversarial Learning of Profile-Specific Dynamic Process.,2018,6,IEEE Access,,db/journals/access/access6.html#XiaoYYZ18,https://doi.org/10.1109/ACCESS.2018.2809687 +Yun Liu 0006,Vector OFDM With Index Modulation.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuJWWZ17,https://doi.org/10.1109/ACCESS.2017.2756080 +Junfeng Zhang,Model Predictive Control With Mixed Performances for Uncertain Positive Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangYJ18,https://doi.org/10.1109/ACCESS.2018.2799159 +Maryam A. Al-Othman,An Adaptive Educational Web Application for Engineering Students.,2017,5,IEEE Access,,db/journals/access/access5.html#Al-OthmanCZP17,https://doi.org/10.1109/ACCESS.2016.2643164 +Jamie Blanche,Analysis of Sandstone Pore Space Fluid Saturation and Mineralogy Variation via Application of Monostatic K-Band Frequency Modulated Continuous Wave Radar.,2018,6,IEEE Access,,db/journals/access/access6.html#BlancheFLCBBT18,https://doi.org/10.1109/ACCESS.2018.2863024 +Wei Ma,Stabilizing the Buck Converter With a First-Order-Filter-Based Time Delay Feedback Controller.,2018,6,IEEE Access,,db/journals/access/access6.html#MaZWLDZH18,https://doi.org/10.1109/ACCESS.2017.2781180 +Changju Kan,Robust Relative Fingerprinting-Based Passive Source Localization via Data Cleansing.,2018,6,IEEE Access,,db/journals/access/access6.html#KanDWLS18,https://doi.org/10.1109/ACCESS.2018.2817576 +Ying He 0009,A Model-Free Hull Deformation Measurement Method Based on Attitude Quaternion Matching.,2018,6,IEEE Access,,db/journals/access/access6.html#HeZP18,https://doi.org/10.1109/ACCESS.2018.2807183 +Jocelyn Rozé,Assessing the Effects of a Primary Control Impairment on the Cellists' Bowing Gesture Inducing Harsh Sounds.,2018,6,IEEE Access,,db/journals/access/access6.html#RozeAKY18,https://doi.org/10.1109/ACCESS.2018.2856178 +Peng Li 0014,PMU-Based Estimation of Voltage-to-Power Sensitivity for Distribution Networks Considering the Sparsity of Jacobian Matrix.,2018,6,IEEE Access,,db/journals/access/access6.html#LiSWLW18,https://doi.org/10.1109/ACCESS.2018.2841010 +Xiaoshi Song,Cache-Enabled Device to Device Networks With Contention-Based Multimedia Delivery.,2017,5,IEEE Access,,db/journals/access/access5.html#SongGMLLW17,https://doi.org/10.1109/ACCESS.2017.2664807 +Morteza Soltani,Randomized Beamforming With Generalized Selection Transmission for Security Enhancement in MISO Wiretap Channels.,2018,6,IEEE Access,,db/journals/access/access6.html#SoltaniA18,https://doi.org/10.1109/ACCESS.2017.2789162 +Angelito Gabriel,A Proposed Alignment of the National Institute of Standards and Technology Framework with the Funnel Risk Graph Method.,2017,5,IEEE Access,,db/journals/access/access5.html#GabrielSO17,https://doi.org/10.1109/ACCESS.2017.2718568 +Frank Alexander Kraemer,Fog Computing in Healthcare-A Review and Discussion.,2017,5,IEEE Access,,db/journals/access/access5.html#KraemerBTP17,https://doi.org/10.1109/ACCESS.2017.2704100 +Petr Sosnin,A Scientifically Experimental Approach to the Simulation of Designer Activity in the Conceptual Designing of Software Intensive Systems.,2013,1,IEEE Access,,db/journals/access/access1.html#Sosnin13,https://doi.org/10.1109/ACCESS.2013.2274896 +SungHyun Nam,Monitoring Newly Adopted Technologies Using Keyword Based Analysis of Cited Patents.,2017,5,IEEE Access,,db/journals/access/access5.html#NamK17,https://doi.org/10.1109/ACCESS.2017.2764478 +Yamen Alsaba,Full-Duplex Cooperative Non-Orthogonal Multiple Access With Beamforming and Energy Harvesting.,2018,6,IEEE Access,,db/journals/access/access6.html#AlsabaLR18,https://doi.org/10.1109/ACCESS.2018.2823723 +Jianqiang Li,Design of a Real-Time ECG Filter for Portable Mobile Medical Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#LiDWWM17,https://doi.org/10.1109/ACCESS.2016.2612222 +Youyun Xu,Three-Dimension Massive MIMO for Air-to-Ground Transmission: Location-Assisted Precoding and Impact of AoD Uncertainty.,2017,5,IEEE Access,,db/journals/access/access5.html#XuXXW17,https://doi.org/10.1109/ACCESS.2017.2726528 +Yue Wang 0010,Joint Caching Placement and User Association for Minimizing User Download Delay.,2016,4,IEEE Access,,db/journals/access/access4.html#WangTZM16,https://doi.org/10.1109/ACCESS.2016.2633488 +Jianping Zheng,Achieving Transmit Diversity in OFDM-IM by Utilizing Multiple Signal Constellations.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhengC17,https://doi.org/10.1109/ACCESS.2017.2708718 +Emanuele Lattanzi,A Scalable Multitasking Wireless Sensor Network Testbed for Monitoring Indoor Human Comfort.,2018,6,IEEE Access,,db/journals/access/access6.html#LattanziDF18,https://doi.org/10.1109/ACCESS.2018.2818191 +Nosheen Sabahat,A Size Estimation Model for Board-Based Desktop Games.,2017,5,IEEE Access,,db/journals/access/access5.html#SabahatMA17,https://doi.org/10.1109/ACCESS.2017.2678459 +Qiangqiang Cheng,An Interactive Meshless Cutting Model for Nonlinear Viscoelastic Soft Tissue in Surgical Simulators.,2017,5,IEEE Access,,db/journals/access/access5.html#ChengLLZ17,https://doi.org/10.1109/ACCESS.2017.2731990 +Kai Ma,Energy Management Based on Demand-Side Pricing: A Supermodular Game Approach.,2017,5,IEEE Access,,db/journals/access/access5.html#MaW0TG17,https://doi.org/10.1109/ACCESS.2017.2740338 +Aidin Razavi,Probability of Detection Functions of Polarization-MIMO Systems in Random-LOS.,2017,5,IEEE Access,,db/journals/access/access5.html#RazaviG17,https://doi.org/10.1109/ACCESS.2017.2769804 +Ka-Po Maggie Tang,Instrumental Evaluation of Stickiness of Textiles Under Wet Skin Surface.,2018,6,IEEE Access,,db/journals/access/access6.html#TangCKF18,https://doi.org/10.1109/ACCESS.2018.2829151 +Zhaoxi Fang,Simultaneous Wireless Information and Power Transfer in Cellular Two-Way Relay Networks With Massive MIMO.,2018,6,IEEE Access,,db/journals/access/access6.html#FangWLHPY18,https://doi.org/10.1109/ACCESS.2018.2834534 +Subhas Barman,Provably Secure Multi-Server Authentication Protocol Using Fuzzy Commitment.,2018,6,IEEE Access,,db/journals/access/access6.html#BarmanDSCRP18,https://doi.org/10.1109/ACCESS.2018.2854798 +Soumya Banerjee,Design of an Anonymity-Preserving Group Formation Based Authentication Protocol in Global Mobility Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#BanerjeeODC00T18,https://doi.org/10.1109/ACCESS.2018.2827027 +Selahattin Gökceli,Practical Implementation of Index Modulation-Based Waveforms.,2017,5,IEEE Access,,db/journals/access/access5.html#GokceliBWK17,https://doi.org/10.1109/ACCESS.2017.2771200 +Meng Wang 0010,Synchronous Flux Weakening Control With Flux Linkage Prediction for Doubly-Fed Wind Power Generation Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#WangSZSL17,https://doi.org/10.1109/ACCESS.2017.2689773 +Hosameldin O. A. Ahmed,Compressive Sampling and Feature Ranking Framework for Bearing Fault Classification With Vibration Signals.,2018,6,IEEE Access,,db/journals/access/access6.html#AhmedN18,https://doi.org/10.1109/ACCESS.2018.2865116 +Shota Yamashita,Exclusive Region Design for Spatial Grid-Based Spectrum Database: A Stochastic Geometry Approach.,2018,6,IEEE Access,,db/journals/access/access6.html#YamashitaYNM18,https://doi.org/10.1109/ACCESS.2018.2832627 +Ghufran Ahmed,Rigorous Analysis and Evaluation of Specific Absorption Rate (SAR) for Mobile Multimedia Healthcare.,2018,6,IEEE Access,,db/journals/access/access6.html#AhmedISAJKRH18,https://doi.org/10.1109/ACCESS.2018.2839909 +Chunjuan Bo,Weighted Generalized Nearest Neighbor for Hyperspectral Image Classification.,2017,5,IEEE Access,,db/journals/access/access5.html#BoLW17,https://doi.org/10.1109/ACCESS.2017.2669149 +Jorge Alberto Soria-Alcaraz,Evolvability Metric Estimation by a Parallel Perceptron for On-Line Selection Hyper-Heuristics.,2017,5,IEEE Access,,db/journals/access/access5.html#Soria-AlcarazES17,https://doi.org/10.1109/ACCESS.2017.2699426 +Haobin Shi,A Sample Aggregation Approach to Experiences Replay of Dyna-Q Learning.,2018,6,IEEE Access,,db/journals/access/access6.html#ShiYHCHZ18,https://doi.org/10.1109/ACCESS.2018.2847048 +Ziran Xing,A Fast and Deterministic Algorithm for Consensus Set Maximization.,2018,6,IEEE Access,,db/journals/access/access6.html#XingS18,https://doi.org/10.1109/ACCESS.2018.2835302 +Binh Van Nguyen,Performance Analysis of a Cognitive Radio Network With an Energy Harvesting Secondary Transmitter Under Nakagami-m Fading.,2018,6,IEEE Access,,db/journals/access/access6.html#NguyenJHK18,https://doi.org/10.1109/ACCESS.2018.2791581 +Hongwei Yao,Robust Multi-Classifier for Camera Model Identification Based on Convolution Neural Network.,2018,6,IEEE Access,,db/journals/access/access6.html#YaoQXZ18,https://doi.org/10.1109/ACCESS.2018.2832066 +Jinxia Zhang,Hypergraph Optimization for Salient Region Detection Based on Foreground and Background Queries.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangFEWYZY18,https://doi.org/10.1109/ACCESS.2018.2834545 +Bingfei Ren,EasyPrivacy: Context-Aware Resource Usage Control System for Android Platform.,2018,6,IEEE Access,,db/journals/access/access6.html#RenLCHGC18,https://doi.org/10.1109/ACCESS.2018.2864992 +Swaminathan Ramabadran,Parameter Estimation of Convolutional and Helical Interleavers in a Noisy Environment.,2017,5,IEEE Access,,db/journals/access/access5.html#RamabadranMTS17,https://doi.org/10.1109/ACCESS.2017.2684189 +Nuno Souto,Efficient Recovery Algorithm for Discrete Valued Sparse Signals Using an ADMM Approach.,2017,5,IEEE Access,,db/journals/access/access5.html#SoutoL17,https://doi.org/10.1109/ACCESS.2017.2754586 +Hongjun Wang 0003,Compressing Fisher Vector for Robust Face Recognition.,2017,5,IEEE Access,,db/journals/access/access5.html#WangHD17,https://doi.org/10.1109/ACCESS.2017.2749331 +Xiaoqing Ye,Efficient Stereo Matching Leveraging Deep Local and Context Information.,2017,5,IEEE Access,,db/journals/access/access5.html#YeLWHZ17,https://doi.org/10.1109/ACCESS.2017.2754318 +Jian Zheng 0002,Design and Experimental Testing of a Free-Running Ship Motion Control Platform.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhengML18,https://doi.org/10.1109/ACCESS.2017.2778180 +Xiuquan Du,DeepSS: Exploring Splice Site Motif Through Convolutional Neural Network Directly From DNA Sequence.,2018,6,IEEE Access,,db/journals/access/access6.html#DuYDZZL18,https://doi.org/10.1109/ACCESS.2018.2848847 +Logan O. Mailloux,Using Modeling and Simulation to Study Photon Number Splitting Attacks.,2016,4,IEEE Access,,db/journals/access/access4.html#MaillouxHGEMB16,https://doi.org/10.1109/ACCESS.2016.2555759 +Du-Mim Yoon,Challenges and Opportunities in Game Artificial Intelligence Education Using Angry Birds.,2015,3,IEEE Access,,db/journals/access/access3.html#YoonK15,https://doi.org/10.1109/ACCESS.2015.2442680 +Jinn-Tsong Tsai,Optimal Design of SAW Gas Sensing Device by Using Improved Adaptive Neuro-Fuzzy Inference System.,2015,3,IEEE Access,,db/journals/access/access3.html#TsaiCC15,https://doi.org/10.1109/ACCESS.2015.2427291 +Ke Yang,Collagen Analysis at Terahertz Band Using Double-Debye Parameter Extraction and Particle Swarm Optimisation.,2017,5,IEEE Access,,db/journals/access/access5.html#YangCAQA17,https://doi.org/10.1109/ACCESS.2017.2674520 +Zunkai Huang,A Vector-Quantization Compression Circuit With On-Chip Learning Ability for High-Speed Image Sensor.,2017,5,IEEE Access,,db/journals/access/access5.html#HuangZCZAWF17,https://doi.org/10.1109/ACCESS.2017.2762399 +Yining Liu,Personal Tastes vs. Fashion Trends: Predicting Ratings Based on Visual Appearances and Reviews.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuS18,https://doi.org/10.1109/ACCESS.2018.2811463 +Kal Jaber,A Study on the Effect of Traceability Links in Software Maintenance.,2013,1,IEEE Access,,db/journals/access/access1.html#JaberSL13,https://doi.org/10.1109/ACCESS.2013.2286822 +Zhewei Zhang,ROI-Based Video Transmission in Heterogeneous Wireless Networks With Multi-Homed Terminals.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangJHXLG17,https://doi.org/10.1109/ACCESS.2017.2748138 +Cheng Yang,Human Upper Limb Motion Analysis for Post-Stroke Impairment Assessment Using Video Analytics.,2016,4,IEEE Access,,db/journals/access/access4.html#YangKSSRC16,https://doi.org/10.1109/ACCESS.2016.2523803 +Taixin Li,SAT-FLOW: Multi-Strategy Flow Table Management for Software Defined Satellite Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#LiZLYX17,https://doi.org/10.1109/ACCESS.2017.2726114 +Rongbo Zhu,ERDT: Energy-Efficient Reliable Decision Transmission for Intelligent Cooperative Spectrum Sensing in Industrial IoT.,2015,3,IEEE Access,,db/journals/access/access3.html#ZhuZLSMJ15,https://doi.org/10.1109/ACCESS.2015.2501644 +Kangjian He,Color Transfer Pulse-Coupled Neural Networks for Underwater Robotic Visual Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#HeWTCL18,https://doi.org/10.1109/ACCESS.2018.2845855 +Shuang Ding,Pre-Decoding Recovery Mechanism for Network Coding Opportunistic Routing in Delay Tolerant Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#DingHWL18,https://doi.org/10.1109/ACCESS.2018.2813382 +Emmanuel Karampasis,Active Thermoelectric Cooling Solutions for Airspace Applications: the THERMICOOL Project.,2017,5,IEEE Access,,db/journals/access/access5.html#KarampasisPVLPB17,https://doi.org/10.1109/ACCESS.2017.2672818 +Peiman Hosseini,2-D Materials as a Functional Platform for Phase Change Tunable NEMS.,2015,3,IEEE Access,,db/journals/access/access3.html#HosseiniKB15,https://doi.org/10.1109/ACCESS.2015.2439572 +Jingping Wang,Ensemble Interval-Valued Fuzzy Cognitive Maps.,2018,6,IEEE Access,,db/journals/access/access6.html#WangG18a,https://doi.org/10.1109/ACCESS.2018.2853995 +Bin Qian,Novel Intersymbol Interference Cancellation Scheme to Enable Parallel Computational and High-Performance Faster-Than-Nyquist Signaling.,2017,5,IEEE Access,,db/journals/access/access5.html#QianWWZC17,https://doi.org/10.1109/ACCESS.2017.2768598 +Aleksandr Ometov,Dynamic Trust Associations Over Socially-Aware D2D Technology: A Practical Implementation Perspective.,2016,4,IEEE Access,,db/journals/access/access4.html#OmetovOMOHAK16,https://doi.org/10.1109/ACCESS.2016.2617207 +Nan Wang,Underwater Image Restoration via Maximum Attenuation Identification.,2017,5,IEEE Access,,db/journals/access/access5.html#WangZZ17,https://doi.org/10.1109/ACCESS.2017.2753796 +Chunghyun Lee,Light-Weight Stackelberg Game Theoretic Demand Response Scheme for Massive Smart Manufacturing Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#LeePC18,https://doi.org/10.1109/ACCESS.2018.2828798 +Xiaocao Hu,Accurate Identification of Ontology Alignments at Different Granularity Levels.,2017,5,IEEE Access,,db/journals/access/access5.html#HuFCHLZ17,https://doi.org/10.1109/ACCESS.2016.2614759 +Irena Spasic,Head to Head: Semantic Similarity of Multi-Word Terms.,2018,6,IEEE Access,,db/journals/access/access6.html#SpasicCGB18,https://doi.org/10.1109/ACCESS.2018.2826224 +Zulfiqar Ali,An Automatic Digital Audio Authentication/Forensics System.,2017,5,IEEE Access,,db/journals/access/access5.html#AliIA17,https://doi.org/10.1109/ACCESS.2017.2672681 +Jinjian Wu,Attended Visual Content Degradation Based Reduced Reference Image Quality Assessment.,2018,6,IEEE Access,,db/journals/access/access6.html#WuLLS18,https://doi.org/10.1109/ACCESS.2018.2798573 +Jixing Gao,Study on Communication Service Strategy for Congestion Issue in Smart Substation Communication Network.,2018,6,IEEE Access,,db/journals/access/access6.html#GaoTJLL18,https://doi.org/10.1109/ACCESS.2018.2863725 +Yalin Wang 0003,Sulfur Flotation Performance Recognition Based on Hierarchical Classification of Local Dynamic and Static Froth Features.,2018,6,IEEE Access,,db/journals/access/access6.html#WangSZZL18,https://doi.org/10.1109/ACCESS.2018.2805265 +Tao Li 0012,Service-Oriented Power Allocation for High-Speed Railway Wireless Communications.,2017,5,IEEE Access,,db/journals/access/access5.html#LiXFL17,https://doi.org/10.1109/ACCESS.2017.2702616 +Zhenbing Zhao,Aggregating Deep Convolutional Feature Maps for Insulator Detection in Infrared Images.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhaoFXZQZ17,https://doi.org/10.1109/ACCESS.2017.2757030 +Kyungroul Lee,TRNG (True Random Number Generator) Method Using Visible Spectrum for Secure Communication on 5G Network.,2018,6,IEEE Access,,db/journals/access/access6.html#LeeLSY18,https://doi.org/10.1109/ACCESS.2018.2799682 +Qinhao Li,Volt/Var Control for Power Grids With Connections of Large-Scale Wind Farms: A Review.,2018,6,IEEE Access,,db/journals/access/access6.html#LiZJLC18,https://doi.org/10.1109/ACCESS.2018.2832175 +Qing-Chang Zhong,Universal Droop Control of Inverters With Different Types of Output Impedance.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhongZ16,https://doi.org/10.1109/ACCESS.2016.2526616 +Md. Shamsul Huda,A Hybrid Feature Selection With Ensemble Classification for Imbalanced Healthcare Data: A Case Study for Brain Tumor Diagnosis.,2016,4,IEEE Access,,db/journals/access/access4.html#HudaYJHFB16,https://doi.org/10.1109/ACCESS.2016.2647238 +Peng Chen 0007,Underdetermined Blind Separation by Combining Sparsity and Independence of Sources.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenPZLX17,https://doi.org/10.1109/ACCESS.2017.2764044 +Zongtao Duan,Improved Deep Hybrid Networks for Urban Traffic Flow Prediction Using Trajectory Data.,2018,6,IEEE Access,,db/journals/access/access6.html#DuanYZNB18,https://doi.org/10.1109/ACCESS.2018.2845863 +Xiaoyu Zhou,An Approximate BER Analysis for Ambient Backscatter Communication Systems With Tag Selection.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhouWWC17,https://doi.org/10.1109/ACCESS.2017.2723438 +Jie Chen 0009,A Reconfigurability-Based Security Service Path Construction Scheme.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenLMWC17,https://doi.org/10.1109/ACCESS.2017.2686486 +Kemedi Moara-Nkwe,A Novel Physical Layer Secure Key Generation and Refreshment Scheme for Wireless Sensor Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#Moara-NkweSLE18,https://doi.org/10.1109/ACCESS.2018.2806423 +Xiaofeng Liu,Stability Analysis for GE T700 Turboshaft Distributed Engine Control Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuL17b,https://doi.org/10.1109/ACCESS.2017.2762081 +Shengjie Li,Lightweight Particle Filter for Robust Visual Tracking.,2018,6,IEEE Access,,db/journals/access/access6.html#LiZCZC18,https://doi.org/10.1109/ACCESS.2018.2846682 +Qun Lin,A Short Linearly Homomorphic Proxy Signature Scheme.,2018,6,IEEE Access,,db/journals/access/access6.html#LinLHCS18,https://doi.org/10.1109/ACCESS.2018.2809684 +Xuanzhen Chen,Motion Planning for Dual-Arm Space Robot Towards Capturing Target Satellite and Keeping the Base Inertially Fixed.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenQ18,https://doi.org/10.1109/ACCESS.2018.2831923 +Junkai Ji,Self-Adaptive Gravitational Search Algorithm With a Modified Chaotic Local Search.,2017,5,IEEE Access,,db/journals/access/access5.html#JiGWTYT17,https://doi.org/10.1109/ACCESS.2017.2748957 +Longfei Dang,Application of Time-Difference-of-Arrival Localization Method in Impulse System Radar and the Prospect of Application of Impulse System Radar in the Internet of Things.,2018,6,IEEE Access,,db/journals/access/access6.html#DangYT18,https://doi.org/10.1109/ACCESS.2018.2864611 +Khagendra Belbase,Coverage Analysis of Millimeter Wave Decode-and-Forward Networks With Best Relay Selection.,2018,6,IEEE Access,,db/journals/access/access6.html#BelbaseZJT18,https://doi.org/10.1109/ACCESS.2018.2827026 +Chunquan Li,A Brain Storm Optimization With Multi-Information Interactions for Global Optimization Problems.,2018,6,IEEE Access,,db/journals/access/access6.html#LiSFCL18,https://doi.org/10.1109/ACCESS.2018.2821118 +Sivaprasad Athikkal,Performance Analysis of Novel Bridge Type Dual Input DC-DC Converters.,2017,5,IEEE Access,,db/journals/access/access5.html#AthikkalKSS17,https://doi.org/10.1109/ACCESS.2017.2734328 +Bobin Yao,Weighted Subspace Fitting for Two-Dimension DOA Estimation in Massive MIMO Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#YaoZW17,https://doi.org/10.1109/ACCESS.2017.2731379 +Asim Ghalib,TCM Analysis of Defected Ground Structures for MIMO Antenna Designs in Mobile Terminals.,2017,5,IEEE Access,,db/journals/access/access5.html#GhalibS17,https://doi.org/10.1109/ACCESS.2017.2739419 +Yinglei Teng,Cross-Layer Optimization and Protocol Analysis for Cognitive Ad Hoc Communications.,2017,5,IEEE Access,,db/journals/access/access5.html#TengS17,https://doi.org/10.1109/ACCESS.2017.2671882 +Moloud Abdar,Design of A Universal User Model for Dynamic Crowd Preference Sensing and Decision-Making Behavior Analysis.,2017,5,IEEE Access,,db/journals/access/access5.html#AbdarY17,https://doi.org/10.1109/ACCESS.2017.2735242 +Yong Li 0019,Evaluating Data Filter on Cross-Project Defect Prediction: Comparison and Improvements.,2017,5,IEEE Access,,db/journals/access/access5.html#LiHWF17,https://doi.org/10.1109/ACCESS.2017.2771460 +Alex Page,An Open Source ECG Clock Generator for Visualization of Long-Term Cardiac Monitoring Data.,2015,3,IEEE Access,,db/journals/access/access3.html#PageSCA15,https://doi.org/10.1109/ACCESS.2015.2509426 +Raquel Lacuesta,System to Recommend the Best Place to Live Based on Wellness State of the User Employing the Heart Rate Variability.,2017,5,IEEE Access,,db/journals/access/access5.html#LacuestaGGL17,https://doi.org/10.1109/ACCESS.2017.2702107 +Olumide J. Akinwande,Managing Crowds in Hazards With Dynamic Grouping.,2015,3,IEEE Access,,db/journals/access/access3.html#AkinwandeBG15,https://doi.org/10.1109/ACCESS.2015.2453341 +Eklas Hossain,A Comprehensive Review on Constant Power Loads Compensation Techniques.,2018,6,IEEE Access,,db/journals/access/access6.html#HossainPNP18,https://doi.org/10.1109/ACCESS.2018.2849065 +Huan Zhang,Design and Analysis of Weighted Frequency-Domain Contention in Wireless LANs.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangZMX17,https://doi.org/10.1109/ACCESS.2017.2656998 +Weiwei Li,A Better Translation From LTL to Transition-Based Generalized Büchi Automata.,2017,5,IEEE Access,,db/journals/access/access5.html#LiKH17,https://doi.org/10.1109/ACCESS.2017.2773123 +Jing Yao,Enabling Search Over Encrypted Cloud Data With Concealed Search Pattern.,2018,6,IEEE Access,,db/journals/access/access6.html#YaoZWG18,https://doi.org/10.1109/ACCESS.2018.2810297 +Jose Maria Maestre,Node Aggregation for Enhancing PageRank.,2017,5,IEEE Access,,db/journals/access/access5.html#MaestreIA17,https://doi.org/10.1109/ACCESS.2017.2750700 +Baoping Ren,Compact Dual-Band Differential Bandpass Filter Using Quadruple-Mode Stepped-Impedance Square Ring Loaded Resonators.,2018,6,IEEE Access,,db/journals/access/access6.html#RenLMOWWG18,https://doi.org/10.1109/ACCESS.2018.2829025 +Stephen Khou,System-Agnostic Security Domains for Understanding and Prioritizing Systems Security Engineering Efforts.,2017,5,IEEE Access,,db/journals/access/access5.html#KhouMP17,https://doi.org/10.1109/ACCESS.2017.2670781 +Fan Li 0001,ClickLeak: Keystroke Leaks Through Multimodal Sensors in Cyber-Physical Social Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#LiWCSW17,https://doi.org/10.1109/ACCESS.2017.2776527 +Lijun Zhang 0007,Remaining Useful Life Prediction for Lithium-Ion Batteries Based on Exponential Model and Particle Filter.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangMS18,https://doi.org/10.1109/ACCESS.2018.2816684 +Qazi Mamoon Ashraf,TOPSIS-Based Service Arbitration for Autonomic Internet of Things.,2016,4,IEEE Access,,db/journals/access/access4.html#AshrafHI16,https://doi.org/10.1109/ACCESS.2016.2545741 +Mohammed G. H. al Zamil,An Annotation Technique for In-Home Smart Monitoring Environments.,2018,6,IEEE Access,,db/journals/access/access6.html#ZamilRSHAR18,https://doi.org/10.1109/ACCESS.2017.2779158 +Min Zhou,Optimal Spatial Sampling Criterion in a 2D THz Holographic Imaging System.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhouAC18,https://doi.org/10.1109/ACCESS.2018.2799962 +Kai Han,Application-Driven End-to-End Slicing: When Wireless Network Virtualization Orchestrates With NFV-Based Mobile Edge Computing.,2018,6,IEEE Access,,db/journals/access/access6.html#HanLTHZFZ18,https://doi.org/10.1109/ACCESS.2018.2834623 +Sandip Roy,On the Design of Provably Secure Lightweight Remote User Authentication Scheme for Mobile Cloud Computing Services.,2017,5,IEEE Access,,db/journals/access/access5.html#RoyCDCKV17,https://doi.org/10.1109/ACCESS.2017.2764913 +Jin Xu,A Novel Passive Jamming Method Against ISAR Based on Resonance Absorption Effect of Metamaterials.,2018,6,IEEE Access,,db/journals/access/access6.html#XuBDZ18,https://doi.org/10.1109/ACCESS.2018.2817064 +Jinn-Tsong Tsai,Performance Prediction and Sensitivity Analysis of SAW Gas Sensors.,2015,3,IEEE Access,,db/journals/access/access3.html#TsaiCC15a,https://doi.org/10.1109/ACCESS.2015.2478789 +Ibrahim Tariq Javed,TrustCall: A Trust Computation Model for Web Conversational Services.,2017,5,IEEE Access,,db/journals/access/access5.html#JavedTC17,https://doi.org/10.1109/ACCESS.2017.2764955 +Qing Li 0004,Degradation Trend Prognostics for Rolling Bearing Using Improved R/S Statistic Model and Fractional Brownian Motion Approach.,2018,6,IEEE Access,,db/journals/access/access6.html#0004L18,https://doi.org/10.1109/ACCESS.2017.2779453 +Hongjiang Lei,On Secure NOMA Systems With Transmit Antenna Selection Schemes.,2017,5,IEEE Access,,db/journals/access/access5.html#LeiZPXAPAA17,https://doi.org/10.1109/ACCESS.2017.2737330 +Duy Thong Nguyen,Enhancement of Data Rate and Packet Size in Image Sensor Communications by Employing Constant Power 4-PAM.,2018,6,IEEE Access,,db/journals/access/access6.html#NguyenCP18,https://doi.org/10.1109/ACCESS.2018.2802948 +Pakhrur Razi,3D Land Mapping and Land Deformation Monitoring Using Persistent Scatterer Interferometry (PSI) ALOS PALSAR: Validated by Geodetic GPS and UAV.,2018,6,IEEE Access,,db/journals/access/access6.html#RaziSPKCP18,https://doi.org/10.1109/ACCESS.2018.2804899 +Mirjam Sepesy Maucec,Improved Differential Evolution for Large-Scale Black-Box Optimization.,2018,6,IEEE Access,,db/journals/access/access6.html#MaucecBBK18,https://doi.org/10.1109/ACCESS.2018.2842114 +Cunsuo Pang,High-Speed Target Detection Algorithm Based on Sparse Fourier Transform.,2018,6,IEEE Access,,db/journals/access/access6.html#PangLH18,https://doi.org/10.1109/ACCESS.2018.2853180 +Xiaoning Feng,Distributed Receiver-Oriented Adaptive Multichannel MAC for Underwater Sensor Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#FengWHQC18,https://doi.org/10.1109/ACCESS.2018.2800703 +Ahmed Bader,Mobile Ad Hoc Networks in Bandwidth-Demanding Mission-Critical Applications: Practical Implementation Insights.,2017,5,IEEE Access,,db/journals/access/access5.html#BaderA17,https://doi.org/10.1109/ACCESS.2016.2614329 +Mao-Lun Chiang,An Agreement Under Early Stopping and Fault Diagnosis Protocol in a Cloud Computing Environment.,2018,6,IEEE Access,,db/journals/access/access6.html#ChiangCH18,https://doi.org/10.1109/ACCESS.2018.2859351 +Junfei Qiao,Highly Efficient Quality Assessment of 3D-Synthesized Views Based on Compression Technology.,2018,6,IEEE Access,,db/journals/access/access6.html#QiaoLLHY18,https://doi.org/10.1109/ACCESS.2018.2859439 +Zhaodi Wang,How Do Detected Objects Affect the Noise Distribution of Terahertz Security Images?,2018,6,IEEE Access,,db/journals/access/access6.html#WangHKZZ18,https://doi.org/10.1109/ACCESS.2018.2859359 +Zhili Zhou,Secret Image Sharing Based on Encrypted Pixels.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhouYCS18,https://doi.org/10.1109/ACCESS.2018.2811722 +Hristijan Gjoreski,The University of Sussex-Huawei Locomotion and Transportation Dataset for Multimodal Analytics With Mobile Devices.,2018,6,IEEE Access,,db/journals/access/access6.html#GjoreskiCWMMVR18,https://doi.org/10.1109/ACCESS.2018.2858933 +Duo Meng,Adaptive Synchronization of 4-Dimensional Energy Resource Unknown Time-Varying Delay Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#MengL17,https://doi.org/10.1109/ACCESS.2017.2758384 +Thinh H. Pham,An End-to-End Multi-Standard OFDM Transceiver Architecture Using FPGA Partial Reconfiguration.,2017,5,IEEE Access,,db/journals/access/access5.html#PhamFM17,https://doi.org/10.1109/ACCESS.2017.2756914 +Minwoo Lee,HybridFTW: Hybrid Computation of Dynamic Time Warping Distances.,2018,6,IEEE Access,,db/journals/access/access6.html#LeeLCML18,https://doi.org/10.1109/ACCESS.2017.2781464 +Yaoming Zhou,Analytical Study on the Reliability of Redundancy Architecture for Flight Control Computer Based on Homogeneous Markov Process.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhouLLX18,https://doi.org/10.1109/ACCESS.2018.2812819 +Jian Jiao,Performance Modeling of LTP-HARQ Schemes Over OSTBC-MIMO Channels for Hybrid Satellite Terrestrial Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#JiaoHZW18,https://doi.org/10.1109/ACCESS.2018.2792400 +Elias Kougianos,Design of a High-Performance System for Secure Image Communication in the Internet of Things.,2016,4,IEEE Access,,db/journals/access/access4.html#KougianosMCAS16,https://doi.org/10.1109/ACCESS.2016.2542800 +Xin Ye 0004,Energy-Efficient Many-Objective Virtual Machine Placement Optimization in a Cloud Computing Environment.,2017,5,IEEE Access,,db/journals/access/access5.html#YeYL17,https://doi.org/10.1109/ACCESS.2017.2733723 +Shi Yan,An Evolutionary Game for User Access Mode Selection in Fog Radio Access Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#YanPAW17,https://doi.org/10.1109/ACCESS.2017.2654266 +Jiachen Sun,Long-Term Spectrum State Prediction: An Image Inference Perspective.,2018,6,IEEE Access,,db/journals/access/access6.html#SunWDSYWY18,https://doi.org/10.1109/ACCESS.2018.2861798 +Xingyu He,HITM: A Hybrid Incentive Trade Model for Data Forwarding in DTNs.,2017,5,IEEE Access,,db/journals/access/access5.html#HeYZ17,https://doi.org/10.1109/ACCESS.2017.2694891 +Chao Liu,IPv6-Based Architecture of Community Medical Internet of Things.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuCZWZZ18,https://doi.org/10.1109/ACCESS.2018.2801563 +Mohamad Mahmoud Al Rahhal,A Dense Phase Descriptor for Human Ear Recognition.,2018,6,IEEE Access,,db/journals/access/access6.html#RahhalMGOLM18,https://doi.org/10.1109/ACCESS.2018.2810339 +Xiaolin Liang,An Improved Algorithm for Through-Wall Target Detection Using Ultra-Wideband Impulse Radar.,2017,5,IEEE Access,,db/journals/access/access5.html#LiangZFYG17,https://doi.org/10.1109/ACCESS.2017.2761771 +María Bárbara Calva-Yáñez,Reconfigurable Mechanical System Design for Tracking an Ankle Trajectory Using an Evolutionary Optimization Algorithm.,2017,5,IEEE Access,,db/journals/access/access5.html#Calva-YanezNPAS17,https://doi.org/10.1109/ACCESS.2017.2692681 +Zhen Wang 0011,Enhanced Instant Message Security and Privacy Protection Scheme for Mobile Social Network Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#WangMLG18,https://doi.org/10.1109/ACCESS.2018.2813432 +Reza Vahidnia,Achievable Rate Region for Energy Harvesting Asynchronous Two-Way Relay Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#VahidniaAM16,https://doi.org/10.1109/ACCESS.2016.2535486 +Hao Zhang,A Digital Twin-Based Approach for Designing and Multi-Objective Optimization of Hollow Glass Production Line.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangLCZL17,https://doi.org/10.1109/ACCESS.2017.2766453 +Rick L. Sturdivant,Systems Engineering Baseline Concept of a Multispectral Drone Detection Solution for Airports.,2017,5,IEEE Access,,db/journals/access/access5.html#SturdivantC17,https://doi.org/10.1109/ACCESS.2017.2697979 +Yuan He 0006,Modeling Data Correlations in Recommendation.,2017,5,IEEE Access,,db/journals/access/access5.html#HeWJ17a,https://doi.org/10.1109/ACCESS.2017.2712196 +William Waites,An Information-Theoretic Measure for Patterning in Epithelial Tissues.,2018,6,IEEE Access,,db/journals/access/access6.html#WaitesCCDD18,https://doi.org/10.1109/ACCESS.2018.2853624 +Triet Nguyen-Van,Stability of FPGA Based Emulator for Half-Bridge Inverters Operated in Stand-Alone and Grid-Connected Modes.,2018,6,IEEE Access,,db/journals/access/access6.html#Nguyen-VanAT18,https://doi.org/10.1109/ACCESS.2018.2791978 +Fan Wu 0004,WE-Safe: A Self-Powered Wearable IoT Sensor Network for Safety Applications Based on LoRa.,2018,6,IEEE Access,,db/journals/access/access6.html#WuRY18,https://doi.org/10.1109/ACCESS.2018.2859383 +Asif Raza Kazmi,Algebraic Side Channel Attack on Trivium and Grain Ciphers.,2017,5,IEEE Access,,db/journals/access/access5.html#KazmiAAAY17,https://doi.org/10.1109/ACCESS.2017.2766234 +Per Zetterberg,Open Source SDR Frontend and Measurements for 60-GHz Wireless Experimentation.,2015,3,IEEE Access,,db/journals/access/access3.html#ZetterbergF15,https://doi.org/10.1109/ACCESS.2015.2414815 +Zhe Zhang,Dynamic User-Centric Clustering for Uplink Cooperation in Multi-Cell Wireless Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangWZM18,https://doi.org/10.1109/ACCESS.2018.2792222 +Hasanin Mohammed Salman,Usability Evaluation of the Smartphone User Interface in Supporting Elderly Users From Experts' Perspective.,2018,6,IEEE Access,,db/journals/access/access6.html#SalmanAS18,https://doi.org/10.1109/ACCESS.2018.2827358 +Junwen Ding,A Quality and Distance Guided Metaheuristic Algorithm for Vertex Separation Problem.,2017,5,IEEE Access,,db/journals/access/access5.html#DingZLY17,https://doi.org/10.1109/ACCESS.2017.2740418 +Ali Akbar Neghabi,Load Balancing Mechanisms in the Software Defined Networks: A Systematic and Comprehensive Review of the Literature.,2018,6,IEEE Access,,db/journals/access/access6.html#NeghabiNHR18,https://doi.org/10.1109/ACCESS.2018.2805842 +Mohammad Eslami,Optimal Design of PID-Based Low-Pass Filter for Gas Turbine Using Intelligent Method.,2018,6,IEEE Access,,db/journals/access/access6.html#EslamiSP18,https://doi.org/10.1109/ACCESS.2018.2808476 +Shirui Huang,Markov Differential Game for Network Defense Decision-Making Method.,2018,6,IEEE Access,,db/journals/access/access6.html#HuangZWH18,https://doi.org/10.1109/ACCESS.2018.2848242 +Kun Wang 0009,Human-Guided Evolutionary Story Narration.,2018,6,IEEE Access,,db/journals/access/access6.html#WangBPA18,https://doi.org/10.1109/ACCESS.2018.2797879 +Arshad Iqbal,Access Mechanism in Wireless Powered Communication Networks With Harvesting Access Point.,2018,6,IEEE Access,,db/journals/access/access6.html#IqbalKL18,https://doi.org/10.1109/ACCESS.2018.2851941 +Yuge Sun,Exact Speed Tracking Realization of the Single Shaft Micro-Turbine System via Higher-Order Sliding Mode Observer.,2018,6,IEEE Access,,db/journals/access/access6.html#SunZCLX18,https://doi.org/10.1109/ACCESS.2018.2852813 +M. S. Liew,Ground Motion Prediction Equations for Malaysia Due to Subduction Zone Earthquakes in Sumatran Region.,2017,5,IEEE Access,,db/journals/access/access5.html#LiewDMSA17,https://doi.org/10.1109/ACCESS.2017.2748360 +Pengcheng Zhang,RBF-MLMR: A Multi-Label Metamorphic Relation Prediction Approach Using RBF Neural Network.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangZPL17,https://doi.org/10.1109/ACCESS.2017.2758790 +Chengyang Luo,Adaptive Repetitive Control of Hydraulic Load Simulator With RISE Feedback.,2017,5,IEEE Access,,db/journals/access/access5.html#LuoYCLX17,https://doi.org/10.1109/ACCESS.2017.2762665 +Xiaoyang Chen,Efficient Graph Similarity Search in External Memory.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenHHV17,https://doi.org/10.1109/ACCESS.2017.2682107 +Ahmed El Shafie,Impact of the Wireless Network's PHY Security and Reliability on Demand-Side Management Cost in the Smart Grid.,2017,5,IEEE Access,,db/journals/access/access5.html#ShafieNHA17,https://doi.org/10.1109/ACCESS.2017.2695520 +James Gerard Wolff,Autonomous Robots and the SP Theory of Intelligence.,2014,2,IEEE Access,,db/journals/access/access2.html#Wolff14a,https://doi.org/10.1109/ACCESS.2014.2382753 +Xiaoxin Chen,Energy Estimation of Partial Discharge Pulse Signals Based on Noise Parameters.,2016,4,IEEE Access,,db/journals/access/access4.html#ChenQXSJ16,https://doi.org/10.1109/ACCESS.2017.2647839 +Li Duan,Automated Policy Combination for Secure Data Sharing in Cross-Organizational Collaborations.,2016,4,IEEE Access,,db/journals/access/access4.html#DuanZCZWLLCC16,https://doi.org/10.1109/ACCESS.2016.2585185 +Hengyang Zhang,DENA: An Intelligent Content Discovery System Used in Named Data Networking.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhangXZHL16,https://doi.org/10.1109/ACCESS.2016.2638474 +Mohammad Ali Khalighi,PAM- and CAP-Based Transmission Schemes for Visible-Light Communications.,2017,5,IEEE Access,,db/journals/access/access5.html#KhalighiLBG17,https://doi.org/10.1109/ACCESS.2017.2765181 +Taerin Chung,Plasmonics in Nanoslit for Manipulation of Light.,2013,1,IEEE Access,,db/journals/access/access1.html#ChungLYCLLL13,https://doi.org/10.1109/ACCESS.2013.2265551 +Jie Yu,Construction of Hierarchical Cognitive Academic Map.,2017,5,IEEE Access,,db/journals/access/access5.html#YuTXWL17,https://doi.org/10.1109/ACCESS.2017.2657790 +Shengli Shi,Extended-State-Observer-Based Chattering Free Sliding Mode Control for Nonlinear Systems With Mismatched Disturbance.,2018,6,IEEE Access,,db/journals/access/access6.html#ShiLF18,https://doi.org/10.1109/ACCESS.2018.2828868 +Yandong Hou,Virtual-Grid Based Traffic Control Strategy With Multiple Intersections Collaboration.,2018,6,IEEE Access,,db/journals/access/access6.html#HouWZ18,https://doi.org/10.1109/ACCESS.2018.2852365 +Tsu-Yang Wu,Non-Repudiable Provable Data Possession Scheme With Designated Verifier in Cloud Storage Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#WuTHL17,https://doi.org/10.1109/ACCESS.2017.2753243 +Zhonghan Wang,A Short-Range Range-Angle Dependent Beampattern Synthesis by Frequency Diverse Array.,2018,6,IEEE Access,,db/journals/access/access6.html#WangSMA18,https://doi.org/10.1109/ACCESS.2018.2827079 +Endong Liu,Mitigating Cyber Privacy Leakage for Distributed DC Optimal Power Flow in Smart Grid With Radial Topology.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuC18,https://doi.org/10.1109/ACCESS.2018.2802456 +Huy T. Nguyen,Secure Cooperative Single Carrier Systems Under Unreliable Backhaul and Dense Networks Impact.,2017,5,IEEE Access,,db/journals/access/access5.html#NguyenZYDH17,https://doi.org/10.1109/ACCESS.2017.2727399 +Qiliang Zhu,Context-Aware Group Recommendation for Point-of-Interests.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhuWCSYC18,https://doi.org/10.1109/ACCESS.2018.2805701 +Shervin Rahimzadeh Arashloo,An Anomaly Detection Approach to Face Spoofing Detection: A New Formulation and Evaluation Protocol.,2017,5,IEEE Access,,db/journals/access/access5.html#ArashlooKC17,https://doi.org/10.1109/ACCESS.2017.2729161 +Haibo Xia,Distributed Control Method for Economic Dispatch in Islanded Microgrids With Renewable Energy Sources.,2018,6,IEEE Access,,db/journals/access/access6.html#XiaLXCWHC18,https://doi.org/10.1109/ACCESS.2018.2827366 +Dipanwita Dasgupta,A Survey of Tablet Applications for Promoting Successful Aging in Older Adults.,2016,4,IEEE Access,,db/journals/access/access4.html#DasguptaCKC16,https://doi.org/10.1109/ACCESS.2016.2632818 +Xiaowang Chen,Time-Frequency Analysis of Torsional Vibration Signals in Resonance Region for Planetary Gearbox Fault Diagnosis Under Variable Speed Conditions.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenF17a,https://doi.org/10.1109/ACCESS.2017.2763172 +Anas Amjad,QoI-Aware Unified Framework for Node Classification and Self-Reconfiguration Within Heterogeneous Visual Sensor Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#AmjadGP16,https://doi.org/10.1109/ACCESS.2016.2635941 +Marissa E. Morales-Rodriguez,Fabrication of Low Cost Surface Acoustic Wave Sensors Using Direct Printing by Aerosol Inkjet.,2018,6,IEEE Access,,db/journals/access/access6.html#Morales-Rodriguez18,https://doi.org/10.1109/ACCESS.2018.2824118 +Vanika Singhal,"Correction to ""Semi-Supervised Deep Blind Compressed Sensing for Analysis and Reconstruction of Biomedical Signals From Compressive Measurements"".",2018,6,IEEE Access,,db/journals/access/access6.html#SinghalMW18a,https://doi.org/10.1109/ACCESS.2018.2845718 +Mingzhi Chen,A Novel Cooperative Hunting Algorithm for Inhomogeneous Multiple Autonomous Underwater Vehicles.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenZ18,https://doi.org/10.1109/ACCESS.2018.2801857 +Nauman Razzaq,An Intelligent Adaptive Filter for Elimination of Power Line Interference From High Resolution Electrocardiogram.,2016,4,IEEE Access,,db/journals/access/access4.html#RazzaqSSZ16,https://doi.org/10.1109/ACCESS.2016.2548362 +Seongwon Kim,Asymmetric Simultaneous Transmit and Receive in WiFi Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#KimSCC17,https://doi.org/10.1109/ACCESS.2017.2723562 +Yongxuan Lai,Distributed Public Vehicle System Based on Fog Nodes and Vehicular Sensing.,2018,6,IEEE Access,,db/journals/access/access6.html#LaiYZL18,https://doi.org/10.1109/ACCESS.2018.2824319 +Xingguang Zhou,Privacy Preservation for Outsourced Medical Data With Flexible Access Control.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhouLWZ18,https://doi.org/10.1109/ACCESS.2018.2810243 +Wei Zhou 0003,Structure Preserving Non-negative Feature Self-Representation for Unsupervised Feature Selection.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhouWYL17,https://doi.org/10.1109/ACCESS.2017.2699741 +Xudong Zhong,Joint Downlink Power and Time-Slot Allocation for Distributed Satellite Cluster Network Based on Pareto Optimization.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhongYHH17,https://doi.org/10.1109/ACCESS.2017.2767061 +Minami Otsuki,Identification Method of Improvements in User Operations on Project Manager Skill-Up Simulator.,2017,5,IEEE Access,,db/journals/access/access5.html#OtsukiAS17,https://doi.org/10.1109/ACCESS.2017.2673019 +Gabriel de Blasio,A Protocol-Channel-Based Indoor Positioning Performance Study for Bluetooth Low Energy.,2018,6,IEEE Access,,db/journals/access/access6.html#BlasioQGRM18,https://doi.org/10.1109/ACCESS.2018.2837497 +Valerio Freschi,Bootstrap Based Uncertainty Propagation for Data Quality Estimation in Crowdsensing Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#FreschiDLB17,https://doi.org/10.1109/ACCESS.2017.2651942 +Sixian Chan,Robust Adaptive Fusion Tracking Based on Complex Cells and Keypoints.,2017,5,IEEE Access,,db/journals/access/access5.html#ChanZC17,https://doi.org/10.1109/ACCESS.2017.2675438 +Saad Mubeen,Management of Service Level Agreements for Cloud Services in IoT: A Systematic Mapping Study.,2018,6,IEEE Access,,db/journals/access/access6.html#MubeenAPABB18,https://doi.org/10.1109/ACCESS.2017.2744677 +Ning Pan,An Approach for Hierarchical RBAC Reconfiguration With Minimal Perturbation.,2018,6,IEEE Access,,db/journals/access/access6.html#PanSHZ18,https://doi.org/10.1109/ACCESS.2017.2782838 +Sheraz Ali Khan,Protocols and Mechanisms to Recover Failed Packets in Wireless Networks: History and Evolution.,2016,4,IEEE Access,,db/journals/access/access4.html#KhanMNAK16,https://doi.org/10.1109/ACCESS.2016.2593605 +Yanjun Yao,Dynamic Spectrum Access With Physical Layer Security: A Game-Based Jamming Approach.,2018,6,IEEE Access,,db/journals/access/access6.html#YaoZKW18,https://doi.org/10.1109/ACCESS.2018.2791548 +Dongming Li,A Novel Full-Duplex Primary Signal Extraction Method Based on Polarization Vector Distance in Cognitive Radio Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#LiZZ18b,https://doi.org/10.1109/ACCESS.2018.2864653 +Mingjun Dai,Bandwidth Overhead-Free Data Reconstruction Scheme for Distributed Storage Code With Low Decoding Complexity.,2017,5,IEEE Access,,db/journals/access/access5.html#DaiWWLC17,https://doi.org/10.1109/ACCESS.2017.2699170 +Zheping Yan,Coordinated Target Tracking Strategy for Multiple Unmanned Underwater Vehicles With Time Delays.,2018,6,IEEE Access,,db/journals/access/access6.html#YanLZW18,https://doi.org/10.1109/ACCESS.2018.2793338 +Hafez Seliem,Drone-Based Highway-VANET and DAS Service.,2018,6,IEEE Access,,db/journals/access/access6.html#SeliemSAS18,https://doi.org/10.1109/ACCESS.2018.2824839 +Yang Yu,ASBSO: An Improved Brain Storm Optimization With Flexible Search Length and Memory-Based Selection.,2018,6,IEEE Access,,db/journals/access/access6.html#YuGWCT18,https://doi.org/10.1109/ACCESS.2018.2852640 +Dionisis Voglitsis,Sensitivity Analysis for the Power Quality Indices of Standalone PV Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#VoglitsisPCBG17,https://doi.org/10.1109/ACCESS.2017.2771527 +Jeffrey A. McDougall,Optimal Transfer Point Locations in Two-Stage Distribution Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#McDougallO18,https://doi.org/10.1109/ACCESS.2017.2781187 +Xiaosong Zhang,A Covert Channel Over VoLTE via Adjusting Silence Periods.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangTLLL18,https://doi.org/10.1109/ACCESS.2018.2802783 +Dechuan Chen,Physical Layer Security in Cognitive Untrusted Relay Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenCYHC18,https://doi.org/10.1109/ACCESS.2017.2762738 +Jie Ren,Coalition Formation Approaches for Cooperative Networks With SWIPT.,2017,5,IEEE Access,,db/journals/access/access5.html#RenXCDW17,https://doi.org/10.1109/ACCESS.2017.2749515 +Wei Wang,Design and Dynamic Modeling of Variable Stiffness Joint Actuator Based on Archimedes Spiral.,2018,6,IEEE Access,,db/journals/access/access6.html#WangZL18b,https://doi.org/10.1109/ACCESS.2018.2864100 +Yongle Wu,A New Coupler Structure with Phase-Controlled Power Divisions of Extremely-Wide Tunable Ranges and Arbitrary Phase Differences.,2018,6,IEEE Access,,db/journals/access/access6.html#WuJZLWL18,https://doi.org/10.1109/ACCESS.2018.2796578 +Ketyllen Da Costa Silva,Adaptive Hysteresis Margin Based on Fuzzy Logic for Handover in Mobile Networks With Dense Small Cells.,2018,6,IEEE Access,,db/journals/access/access6.html#SilvaBF18,https://doi.org/10.1109/ACCESS.2018.2811047 +Changfan Zhang,Robust Synchronous Control of Multi-Motor Integrated With Artificial Potential Field and Sliding Mode Variable Structure.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangNHZWZ17,https://doi.org/10.1109/ACCESS.2016.2636224 +Hui Zhang,Numerical Investigation on the Transmission Loss of Skin Panels Based on the Intelligent PSO-CGA Algorithm.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangXYWG18,https://doi.org/10.1109/ACCESS.2018.2836343 +Shuang Liu,Pedestrian Retrieval via Part-Based Gradation Regularization in Sensor Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuHZ18,https://doi.org/10.1109/ACCESS.2018.2854830 +Gang Ren,A Multi-Perspective Method for Analysis of Cooperative Behaviors Among Industrial Devices of Smart Factory.,2017,5,IEEE Access,,db/journals/access/access5.html#RenHDYZ17,https://doi.org/10.1109/ACCESS.2017.2708127 +Maqbool Ali,A Data-Driven Knowledge Acquisition System: An End-to-End Knowledge Engineering Process for Generating Production Rules.,2018,6,IEEE Access,,db/journals/access/access6.html#AliAKHBHKLK18,https://doi.org/10.1109/ACCESS.2018.2817022 +Ronghui Zhang,Study of Bicycle Movements in Conflicts at Mixed Traffic Unsignalized Intersections.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangWHY17,https://doi.org/10.1109/ACCESS.2017.2703816 +Eiman Kanjo,NotiMind: Utilizing Responses to Smart Phone Notifications as Affective Sensors.,2017,5,IEEE Access,,db/journals/access/access5.html#KanjoKA17,https://doi.org/10.1109/ACCESS.2017.2755661 +Xiao Yang,Communication-Constrained Mobile Edge Computing Systems for Wireless Virtual Reality: Scheduling and Tradeoff.,2018,6,IEEE Access,,db/journals/access/access6.html#YangCLSLXZ18,https://doi.org/10.1109/ACCESS.2018.2817288 +Ren Han,An Effective Multi-Objective Optimization Algorithm for Spectrum Allocations in the Cognitive-Radio-Based Internet of Things.,2018,6,IEEE Access,,db/journals/access/access6.html#HanGWL18,https://doi.org/10.1109/ACCESS.2017.2789198 +Khubaib Amjad Alam,Enabling Far-Edge Analytics: Performance Profiling of Frequent Pattern Mining Algorithms.,2017,5,IEEE Access,,db/journals/access/access5.html#AlamAK17,https://doi.org/10.1109/ACCESS.2017.2699172 +Haibo Zhang,Cluster-Based Resource Allocation for Spectrum-Sharing Femtocell Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhangJLLSD16,https://doi.org/10.1109/ACCESS.2016.2635938 +Zhong Chen,An Analysis of the Charging Characteristics of Electric Vehicles Based on Measured Data and Its Application.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenZZWH18,https://doi.org/10.1109/ACCESS.2018.2835825 +Aihua Zhang 0003,Finite Time Fault Tolerant Attitude Control-Based Observer for a Rigid Satellite Subject to Thruster Faults.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangLZS17,https://doi.org/10.1109/ACCESS.2017.2745701 +Jing Li 0010,A Novel Visual-Vocabulary-Translator-Based Cross-Domain Image Matching.,2017,5,IEEE Access,,db/journals/access/access5.html#LiLYL17,https://doi.org/10.1109/ACCESS.2017.2759799 +Honggang Zhou,BigRoots: An Effective Approach for Root-Cause Analysis of Stragglers in Big Data System.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhouLYJL18,https://doi.org/10.1109/ACCESS.2018.2859826 +Luxi Zhao,Worst-Case Latency Analysis for IEEE 802.1Qbv Time Sensitive Networks Using Network Calculus.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaoPC18,https://doi.org/10.1109/ACCESS.2018.2858767 +Rushan Arshad,Green IoT: An Investigation on Energy Saving Practices for 2020 and Beyond.,2017,5,IEEE Access,,db/journals/access/access5.html#ArshadZSWY17,https://doi.org/10.1109/ACCESS.2017.2686092 +Yu Zhang 0016,Glass-Box Debugging Algorithm Based on Unsatisfiable Dependent Paths.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangOY17,https://doi.org/10.1109/ACCESS.2017.2753381 +Kisong Lee,Joint Optimization of Spectrum Sensing and Transmit Power in Energy Harvesting-Based Cognitive Radio Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#LeeYJL18,https://doi.org/10.1109/ACCESS.2018.2843395 +Maria Hafeez,Development of a Diagnostic Algorithm to Identify Psycho-Physiological Game Addiction Attributes Using Statistical Parameters.,2017,5,IEEE Access,,db/journals/access/access5.html#HafeezIK17,https://doi.org/10.1109/ACCESS.2017.2753287 +Bingcai Chen,A Saliency Map Fusion Method Based on Weighted DS Evidence Theory.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenTYYPL18,https://doi.org/10.1109/ACCESS.2018.2835826 +Kefeng Guo,Performance Analysis of Two-Way Multi-Antenna Multi-Relay Networks With Hardware Impairments.,2017,5,IEEE Access,,db/journals/access/access5.html#GuoGZ17,https://doi.org/10.1109/ACCESS.2017.2735451 +Jian-Ping Cai,Adaptive Neural Network Control for Missile Systems With Unknown Hysteresis Input.,2017,5,IEEE Access,,db/journals/access/access5.html#CaiXZS17,https://doi.org/10.1109/ACCESS.2017.2726186 +Hsin-Yi Tsai,GPU-Accelerated Features Extraction From Magnetic Resonance Images.,2017,5,IEEE Access,,db/journals/access/access5.html#TsaiZHM17,https://doi.org/10.1109/ACCESS.2017.2756624 +Yi-Hsuan Chen,Service Oriented Cloud VM Placement Strategy for Internet of Things.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenC17,https://doi.org/10.1109/ACCESS.2017.2769667 +Tao Yu 0004,Adaptive Cooperative Tracking Control of Multi-Agent Systems With Unknown Actuators Hysteresis.,2018,6,IEEE Access,,db/journals/access/access6.html#YuMQ18,https://doi.org/10.1109/ACCESS.2018.2845387 +Najeeb Khan,Bridgeout: Stochastic Bridge Regularization for Deep Neural Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#KhanSS18,https://doi.org/10.1109/ACCESS.2018.2863606 +Hong Wang 0011,Low Complexity ZF Receiver Design for Multi-User GFDMA Uplink Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#WangS18b,https://doi.org/10.1109/ACCESS.2018.2839750 +Ebubeogu Amarachukwu Felix,Integrated Approach to Software Defect Prediction.,2017,5,IEEE Access,,db/journals/access/access5.html#FelixL17,https://doi.org/10.1109/ACCESS.2017.2759180 +Seyed Ahmad Soleymani,A Secure Trust Model Based on Fuzzy Logic in Vehicular Ad Hoc Networks With Fog Computing.,2017,5,IEEE Access,,db/journals/access/access5.html#SoleymaniAZAVKG17,https://doi.org/10.1109/ACCESS.2017.2733225 +Nicholas P. Lawrence,5G Terrestrial Networks: Mobility and Coverage - Solution in Three Dimensions.,2017,5,IEEE Access,,db/journals/access/access5.html#LawrenceNHA17,https://doi.org/10.1109/ACCESS.2017.2693375 +Emanuele A. Casu,Vanadium Oxide Bandstop Tunable Filter for Ka Frequency Bands Based on a Novel Reconfigurable Spiral Shape Defected Ground Plane CPW.,2018,6,IEEE Access,,db/journals/access/access6.html#CasuMBFKSI18,https://doi.org/10.1109/ACCESS.2018.2795463 +Chuan Xu,A Novel Multipath-Transmission Supported Software Defined Wireless Network Architecture.,2017,5,IEEE Access,,db/journals/access/access5.html#XuJZTYQ17,https://doi.org/10.1109/ACCESS.2017.2653244 +Bing Qi,An Emerging Survivability Technology for Dispatching Service of Electric Power Communication Network.,2018,6,IEEE Access,,db/journals/access/access6.html#QiLLLWLZ18,https://doi.org/10.1109/ACCESS.2018.2823745 +Jui-Di Wu,Efficient Leakage-Resilient Authenticated Key Agreement Protocol in the Continual Leakage eCK Model.,2018,6,IEEE Access,,db/journals/access/access6.html#WuTH18,https://doi.org/10.1109/ACCESS.2018.2799298 +Zhaowei Liu,Structure Learning of Conditional Preference Networks Based on Dependent Degree of Attributes From Preference Database.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuZLZ18,https://doi.org/10.1109/ACCESS.2018.2837340 +Ian Model,Comparison of Data Set Bias in Object Recognition Benchmarks.,2015,3,IEEE Access,,db/journals/access/access3.html#ModelS15,https://doi.org/10.1109/ACCESS.2015.2491921 +Eduardo Esquivel,A Dynamic Compensation for Roll Hemming Process.,2018,6,IEEE Access,,db/journals/access/access6.html#EsquivelCCJ18,https://doi.org/10.1109/ACCESS.2018.2812145 +Sun Liang,An Extraction and Classification Algorithm for Concrete Cracks Based on Machine Vision.,2018,6,IEEE Access,,db/journals/access/access6.html#LiangJX18a,https://doi.org/10.1109/ACCESS.2018.2856806 +Waqar Aslam,A Quantitative Framework for Task Allocation in Distributed Agile Software Development.,2018,6,IEEE Access,,db/journals/access/access6.html#AslamI18,https://doi.org/10.1109/ACCESS.2018.2803685 +Chong Shum,DecompositionJ: Parallel and Deterministic Simulation of Concurrent Java Executions in Cyber-Physical Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#ShumLMCTTL18a,https://doi.org/10.1109/ACCESS.2018.2825254 +Chenxi Huang,A Hybrid Active Contour Segmentation Method for Myocardial D-SPECT Images.,2018,6,IEEE Access,,db/journals/access/access6.html#HuangSLLCCHCP18,https://doi.org/10.1109/ACCESS.2018.2855060 +Xi Tang,Multi-Channel Physical Random Bits Generation Using a Vertical-Cavity Surface-Emitting Laser Under Chaotic Optical Injection.,2018,6,IEEE Access,,db/journals/access/access6.html#TangXJDLFGW18,https://doi.org/10.1109/ACCESS.2018.2800095 +Yu Tai,Towards Quantified Data Analysis of Information Flow Tracking for Secure System Design.,2018,6,IEEE Access,,db/journals/access/access6.html#TaiHMMZ18,https://doi.org/10.1109/ACCESS.2017.2780254 +Ting Liu 0002,SEDEA: State Estimation-Based Dynamic Encryption and Authentication in Smart Grid.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuTGLL17,https://doi.org/10.1109/ACCESS.2017.2713440 +Joel S. Da Cunha Neto,Dynamic Evaluation and Treatment of the Movement Amplitude Using Kinect Sensor.,2018,6,IEEE Access,,db/journals/access/access6.html#NetoFSODA18,https://doi.org/10.1109/ACCESS.2018.2811720 +Lei Xu 0016,Information Security in Big Data: Privacy and Data Mining.,2014,2,IEEE Access,,db/journals/access/access2.html#XuJWYR14,https://doi.org/10.1109/ACCESS.2014.2362522 +Sadi Evren Seker,Computerized Argument Delphi Technique.,2015,3,IEEE Access,,db/journals/access/access3.html#Seker15,https://doi.org/10.1109/ACCESS.2015.2424703 +Yuya Arima,Performance Dependence on System Parameters in Millimeter-Wave Active Imaging Based on Complex-Valued Neural Networks to Classify Complex Texture.,2017,5,IEEE Access,,db/journals/access/access5.html#ArimaH17,https://doi.org/10.1109/ACCESS.2017.2751618 +Min Wang,Energy-Efficient User Association and Power Control in the Heterogeneous Network.,2017,5,IEEE Access,,db/journals/access/access5.html#WangGL17,https://doi.org/10.1109/ACCESS.2017.2690305 +Xianwen Fang,A Method of Mining Hidden Transition of Business Process Based on Region.,2018,6,IEEE Access,,db/journals/access/access6.html#FangCLW18,https://doi.org/10.1109/ACCESS.2018.2833450 +Parag Kulkarni,Smart City Wireless Connectivity Considerations and Cost Analysis: Lessons Learnt From Smart Water Case Studies.,2016,4,IEEE Access,,db/journals/access/access4.html#KulkarniF16,https://doi.org/10.1109/ACCESS.2016.2525041 +Yuezhao Qiang,Energy-Efficiency Models of Sustainable Urban Transportation Structure Optimization.,2018,6,IEEE Access,,db/journals/access/access6.html#QiangTLL18,https://doi.org/10.1109/ACCESS.2018.2818738 +Xueyi Zhang,Permeance Analysis and Calculation of the Double-Radial Rare-Earth Permanent Magnet Voltage-Stabilizing Generation Device.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangDMGHLL18,https://doi.org/10.1109/ACCESS.2018.2792448 +Md. Zia Uddin,Facial Expression Recognition Utilizing Local Direction-Based Robust Features and Deep Belief Network.,2017,5,IEEE Access,,db/journals/access/access5.html#UddinHAAAF17,https://doi.org/10.1109/ACCESS.2017.2676238 +Jesús Bobadilla,Recommender Systems Clustering Using Bayesian Non Negative Matrix Factorization.,2018,6,IEEE Access,,db/journals/access/access6.html#BobadillaBHH18,https://doi.org/10.1109/ACCESS.2017.2788138 +Xinye Wu,Big Data Analysis and Scheduling Optimization System Oriented Assembly Process for Complex Equipment.,2018,6,IEEE Access,,db/journals/access/access6.html#WuZT18,https://doi.org/10.1109/ACCESS.2018.2852791 +Maheep Singh,CHACT: Convex Hull Enabled Active Contour Technique for Salient Object Detection.,2018,6,IEEE Access,,db/journals/access/access6.html#SinghGP18,https://doi.org/10.1109/ACCESS.2018.2826924 +Lifeng Mai,A T2T-Based Offloading Method: Virtual Bank With Movement Prediction.,2018,6,IEEE Access,,db/journals/access/access6.html#MaiPSW18,https://doi.org/10.1109/ACCESS.2018.2801022 +Shuro Nakajima,Improved Gait Algorithm and Mobility Performance of RT-Mover Type Personal Mobility Vehicle.,2014,2,IEEE Access,,db/journals/access/access2.html#Nakajima14,https://doi.org/10.1109/ACCESS.2013.2296557 +Xuezhi Xiang,Scene Flow Estimation Based on 3D Local Rigidity Assumption and Depth Map Driven Anisotropic Smoothness.,2018,6,IEEE Access,,db/journals/access/access6.html#XiangZZXE18,https://doi.org/10.1109/ACCESS.2018.2841880 +Suman Khakurel,QoS-Aware Utility-Based Resource Allocation in Mixed-Traffic Multi-User OFDM Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#KhakurelMVL18,https://doi.org/10.1109/ACCESS.2018.2823004 +Yingfeng Cai,Saliency-Based Pedestrian Detection in Far Infrared Images.,2017,5,IEEE Access,,db/journals/access/access5.html#CaiLWS17,https://doi.org/10.1109/ACCESS.2017.2695721 +Hayoung Choi,Innovation Topic Analysis of Technology: The Case of Augmented Reality Patents.,2018,6,IEEE Access,,db/journals/access/access6.html#ChoiOCY18,https://doi.org/10.1109/ACCESS.2018.2807622 +Md Masud Rana 0002,Monitoring the Smart Grid Incorporating Turbines and Vehicles.,2018,6,IEEE Access,,db/journals/access/access6.html#RanaXWL18,https://doi.org/10.1109/ACCESS.2018.2818884 +Dongdong Zeng,"Correction to ""Background Subtraction Using Multiscale Fully Convolutional Network"".",2018,6,IEEE Access,,db/journals/access/access6.html#ZengZ18a,https://doi.org/10.1109/ACCESS.2018.2843226 +Zhixiong Zhong,Dynamic Output Feedback Fuzzy Control of Large-Scale Nonlinear Networked Systems: A Two-Channel Triggering Approach.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhongZK17,https://doi.org/10.1109/ACCESS.2017.2711488 +Caidong Gu,Fast Discrepancy Identification for RFID-Enabled IoT Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#Gu18,https://doi.org/10.1109/ACCESS.2017.2785810 +Guoliang Zhang,Local Storage-Based Consolidation With Resource Demand Prediction and Live Migration in Clouds.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangZBYT18,https://doi.org/10.1109/ACCESS.2018.2825354 +Muhammad Nasir Khan,Maximizing Throughput of Hybrid FSO-RF Communication System: An Algorithm.,2018,6,IEEE Access,,db/journals/access/access6.html#KhanGJRAKUM18,https://doi.org/10.1109/ACCESS.2018.2840535 +Jianqiang Zhao,Deep Convolution Neural Networks for Twitter Sentiment Analysis.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaoGZ18,https://doi.org/10.1109/ACCESS.2017.2776930 +Yanling Wang,A Novel Fractional-Order Differentiation Model for Low-Dose CT Image Processing.,2016,4,IEEE Access,,db/journals/access/access4.html#WangSGZYL16,https://doi.org/10.1109/ACCESS.2016.2633272 +Peiqiang Li,Secondary Frequency Regulation Strategy With Fuzzy Logic Method and Self-Adaptive Modification of State of Charge.,2018,6,IEEE Access,,db/journals/access/access6.html#LiTZLLQ18,https://doi.org/10.1109/ACCESS.2018.2859354 +Kenichiro Masaoka,Display Gamut Metrology Using Chromaticity Diagram.,2016,4,IEEE Access,,db/journals/access/access4.html#Masaoka16,https://doi.org/10.1109/ACCESS.2016.2588283 +Ji Zhou,Faster-Than-Nyquist Non-Orthogonal Frequency-Division Multiplexing for Visible Light Communications.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhouWWCZYYLQ18,https://doi.org/10.1109/ACCESS.2018.2820100 +Denis Kleyko,Hyperdimensional Computing in Industrial Systems: The Use-Case of Distributed Fault Isolation in a Power Plant.,2018,6,IEEE Access,,db/journals/access/access6.html#KleykoOPV18,https://doi.org/10.1109/ACCESS.2018.2840128 +Xiaowei Xu 0003,Review of the Fault Mechanism and Diagnostic Techniques for the Range Extender Hybrid Electric Vehicle.,2017,5,IEEE Access,,db/journals/access/access5.html#XuWZLW17,https://doi.org/10.1109/ACCESS.2017.2725298 +Zhenyu Zhou,Iterative Energy-Efficient Stable Matching Approach for Context-Aware Resource Allocation in D2D Communications.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhouMDOXJ16,https://doi.org/10.1109/ACCESS.2016.2593047 +Faisel E. M. Tubbal,A Survey and Study of Planar Antennas for Pico-Satellites.,2015,3,IEEE Access,,db/journals/access/access3.html#TubbalRC15,https://doi.org/10.1109/ACCESS.2015.2506577 +Yang Liu 0066,Sensor Network Oriented Human Motion Segmentation With Motion Change Measurement.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuFLS18,https://doi.org/10.1109/ACCESS.2017.2787675 +Wei Hao,Signal Progression Model for Long Arterial: Intersection Grouping and Coordination.,2018,6,IEEE Access,,db/journals/access/access6.html#HaoLCY18,https://doi.org/10.1109/ACCESS.2018.2843324 +Vittorio Degli-Esposti,A Simple and Versatile Field Prediction Model for Indoor and Indoor-to-Outdoor Propagation.,2017,5,IEEE Access,,db/journals/access/access5.html#Degli-EspostiVM17,https://doi.org/10.1109/ACCESS.2017.2715119 +Yong Yang 0005,Non-Coherent Radar Detection Probability for Correlated Gamma Fluctuating Targets in K Distributed Clutter.,2018,6,IEEE Access,,db/journals/access/access6.html#YangXWL18,https://doi.org/10.1109/ACCESS.2017.2783878 +Atique Ahmad Zafar,Taxonomy of Factors Causing Integration Failure during Global Software Development.,2018,6,IEEE Access,,db/journals/access/access6.html#ZafarSKIAAAA18,https://doi.org/10.1109/ACCESS.2017.2782843 +Amedeo Capozzoli,Optimized Trajectory Tracking of a Class of Uncertain Systems Applied to Optimized Raster Scanning in Near-Field Measurements.,2018,6,IEEE Access,,db/journals/access/access6.html#CapozzoliCCLS18,https://doi.org/10.1109/ACCESS.2018.2802638 +Yin Li,Efficient Square-Based Montgomery Multiplier for All Type C.1 Pentanomials.,2018,6,IEEE Access,,db/journals/access/access6.html#LiMCQ18,https://doi.org/10.1109/ACCESS.2018.2806003 +Omer Mujahid,Fast Pattern Recognition Through an LBP Driven CAM on FPGA.,2018,6,IEEE Access,,db/journals/access/access6.html#MujahidUMH18,https://doi.org/10.1109/ACCESS.2018.2854306 +Yongwoo Cho,Scalable Coding and Prioritized Transmission of ECG for Low-Latency Cardiac Monitoring Over Cellular M2M Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ChoSK18,https://doi.org/10.1109/ACCESS.2018.2795028 +Jin-Ling Lin,Gait Balance and Acceleration of a Biped Robot Based on Q-Learning.,2016,4,IEEE Access,,db/journals/access/access4.html#LinHJC16,https://doi.org/10.1109/ACCESS.2016.2570255 +Xiaoxuan Tang,Coverage Performance of Joint Transmission for Moving Relay Enabled Cellular Networks in Dense Urban Scenarios.,2017,5,IEEE Access,,db/journals/access/access5.html#TangXST17,https://doi.org/10.1109/ACCESS.2017.2727516 +Mohammed Faisal,Human Expertise in Mobile Robot Navigation.,2018,6,IEEE Access,,db/journals/access/access6.html#FaisalAADR18,https://doi.org/10.1109/ACCESS.2017.2780082 +Palak Jain,Improved Methodology to Estimate the Power Transfer Efficiency in an Inductively Coupled Radio Frequency Ion Source.,2018,6,IEEE Access,,db/journals/access/access6.html#JainRVCMG18,https://doi.org/10.1109/ACCESS.2018.2829618 +Ric A. Romero,Friendly Spectrally Shaped Radar Waveform With Legacy Communication Systems for Shared Access and Spectrum Management.,2015,3,IEEE Access,,db/journals/access/access3.html#RomeroS15,https://doi.org/10.1109/ACCESS.2015.2473169 +Xiang Song,An Enhanced Clustering-Based Method for Determining Time-of-Day Breakpoints Through Process Optimization.,2018,6,IEEE Access,,db/journals/access/access6.html#SongLMWJ18,https://doi.org/10.1109/ACCESS.2018.2843564 +Thomas Wollmann,User-Centred Design and Usability Evaluation of a Heart Rate Variability Biofeedback Game.,2016,4,IEEE Access,,db/journals/access/access4.html#WollmannAESLHK16,https://doi.org/10.1109/ACCESS.2016.2601882 +Seil Jeon,Distributed Mobility Management for the Future Mobile Networks: A Comprehensive Analysis of Key Design Options.,2017,5,IEEE Access,,db/journals/access/access5.html#JeonFAC17,https://doi.org/10.1109/ACCESS.2017.2713240 +Amjad Khan,Subsea Pipeline Corrosion Estimation by Restoring and Enhancing Degraded Underwater Images.,2018,6,IEEE Access,,db/journals/access/access6.html#KhanAAAM18,https://doi.org/10.1109/ACCESS.2018.2855725 +Chaoyun Mai,Beampattern Optimization for Frequency Diverse Array With Sparse Frequency Waveforms.,2017,5,IEEE Access,,db/journals/access/access5.html#MaiLSW17,https://doi.org/10.1109/ACCESS.2017.2703647 +Deepak Mishra 0001,Effects of Practical Rechargeability Constraints on Perpetual RF Harvesting Sensor Network Operation.,2016,4,IEEE Access,,db/journals/access/access4.html#MishraD16,https://doi.org/10.1109/ACCESS.2016.2528822 +Mauro Biagi,A Multi-Layer Parametric Approach to Maximize the Access Probability of Mobile Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#BiagiCPI16,https://doi.org/10.1109/ACCESS.2016.2614827 +Han Sol Kim,Decentralized Sampled-Data Tracking Control of Large-Scale Fuzzy Systems: An Exact Discretization Approach.,2017,5,IEEE Access,,db/journals/access/access5.html#KimPJ17,https://doi.org/10.1109/ACCESS.2017.2723982 +Zhonghua Zhang,Performance Dependence on Initial Free-End Levitation of a Magnetically Levitated Piezoelectric Vibration Energy Harvester With a Composite Cantilever Beam.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangKWWYC17,https://doi.org/10.1109/ACCESS.2017.2775652 +Yongle Wu,High Performance Single-Ended Wideband and Balanced Bandpass Filters Loaded With Stepped-Impedance Stubs.,2017,5,IEEE Access,,db/journals/access/access5.html#WuCZJZL17,https://doi.org/10.1109/ACCESS.2017.2695220 +Qixu Wang,LACS: A Lightweight Label-Based Access Control Scheme in IoT-Based 5G Caching Context.,2017,5,IEEE Access,,db/journals/access/access5.html#WangCZQQ17,https://doi.org/10.1109/ACCESS.2017.2678510 +Xiang Tian 0004,Design of an Energy Management Strategy for a Parallel Hybrid Electric Bus Based on an IDP-ANFIS Scheme.,2018,6,IEEE Access,,db/journals/access/access6.html#TianHX18,https://doi.org/10.1109/ACCESS.2018.2829701 +Waleed Mugahed Al-Rahmi,Use of E-Learning by University Students in Malaysian Higher Educational Institutions: A Case in Universiti Teknologi Malaysia.,2018,6,IEEE Access,,db/journals/access/access6.html#Al-RahmiAOAASR18,https://doi.org/10.1109/ACCESS.2018.2802325 +Zhipeng Xiao,Dense Scene Flow Based Coarse-to-Fine Rigid Moving Object Detection for Autonomous Vehicle.,2017,5,IEEE Access,,db/journals/access/access5.html#XiaoDWXC17,https://doi.org/10.1109/ACCESS.2017.2764546 +Xing-dong Wang,Reducing the Impact of Thin Clouds on Arctic Ocean Sea Ice Concentration From FengYun-3 MERSI Data Single Cavity.,2017,5,IEEE Access,,db/journals/access/access5.html#WangWWLLQ17,https://doi.org/10.1109/ACCESS.2017.2737326 +Anis Yazidi,Higher-Fidelity Frugal and Accurate Quantile Estimation Using a Novel Incremental Discretized Paradigm.,2018,6,IEEE Access,,db/journals/access/access6.html#YazidiHO18,https://doi.org/10.1109/ACCESS.2018.2820501 +Tingting Huang,A Multi-Carrier M-Ary Differential Chaos Shift Keying System With Low PAPR.,2017,5,IEEE Access,,db/journals/access/access5.html#HuangWXC17,https://doi.org/10.1109/ACCESS.2017.2752238 +Miaomiao Shen,Joint Sparse Representation Model for Multi-Channel Image Based on Reduced Geometric Algebra.,2018,6,IEEE Access,,db/journals/access/access6.html#ShenWC18,https://doi.org/10.1109/ACCESS.2018.2819691 +Michael J. Harris,The Efficiency of a Two-Stage Reluctance Accelerator Through Pulse Shaping.,2017,5,IEEE Access,,db/journals/access/access5.html#HarrisSBVB17,https://doi.org/10.1109/ACCESS.2016.2629672 +Binbin Dai,Sparse Beamforming and User-Centric Clustering for Downlink Cloud Radio Access Network.,2014,2,IEEE Access,,db/journals/access/access2.html#DaiY14,https://doi.org/10.1109/ACCESS.2014.2362860 +Wanwei Tang,On the Performance of PDMA With Decode-and-Forward Relaying in Downlink Network.,2018,6,IEEE Access,,db/journals/access/access6.html#TangKFYZ18,https://doi.org/10.1109/ACCESS.2018.2820717 +Ali Arab,Electric Power Grid Restoration Considering Disaster Economics.,2016,4,IEEE Access,,db/journals/access/access4.html#ArabKKH16,https://doi.org/10.1109/ACCESS.2016.2523545 +Payam Motabar,How Poor Reliability Affects Warranties: An Analysis of General Motors' Powertrain Warranty Reduction.,2018,6,IEEE Access,,db/journals/access/access6.html#MotabarGRP18,https://doi.org/10.1109/ACCESS.2018.2803679 +Xiaojun Zhai,MLP Neural Network Based Gas Classification System on Zynq SoC.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhaiAAB16,https://doi.org/10.1109/ACCESS.2016.2619181 +Zunbing Sheng,Precise Characterizations of the Stability Margin in Time-Domain Space for Planar Systems Undergoing Periodic Switching.,2017,5,IEEE Access,,db/journals/access/access5.html#ShengQ17,https://doi.org/10.1109/ACCESS.2017.2722417 +Sajjad ur Rehman,Design and System Characterization of Ultra-Wideband Antennas With Multiple Band-Rejection.,2017,5,IEEE Access,,db/journals/access/access5.html#RehmanA17,https://doi.org/10.1109/ACCESS.2017.2715881 +Seil Lee,TensorLightning: A Traffic-Efficient Distributed Deep Learning on Commodity Spark Clusters.,2018,6,IEEE Access,,db/journals/access/access6.html#LeeKPJJY18,https://doi.org/10.1109/ACCESS.2018.2842103 +Gabriel Basso,Kalman Filter With Dynamical Setting of Optimal Process Noise Covariance.,2017,5,IEEE Access,,db/journals/access/access5.html#BassoABN17,https://doi.org/10.1109/ACCESS.2017.2697072 +Qing Zhou,Energy-Efficient Data Transmission With Non-FIFO Packets With Processing Cost.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhouYLPY17,https://doi.org/10.1109/ACCESS.2017.2693826 +Asiya Sulthana,An Efficient Kalman Noise Canceller for Cardiac Signal Analysis in Modern Telecardiology Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#SulthanaRM18,https://doi.org/10.1109/ACCESS.2018.2848201 +Lina Ni,DP-MCDBSCAN: Differential Privacy Preserving Multi-Core DBSCAN Clustering for Network User Data.,2018,6,IEEE Access,,db/journals/access/access6.html#NiLWJY18,https://doi.org/10.1109/ACCESS.2018.2824798 +Zhongwei Hu,Maximizing Harvested Energy for Full-Duplex SWIPT System With Power Splitting.,2017,5,IEEE Access,,db/journals/access/access5.html#HuYG17,https://doi.org/10.1109/ACCESS.2017.2767178 +Nadeem Javaid,Balanced Energy Consumption Based Adaptive Routing for IoT Enabling Underwater WSNs.,2017,5,IEEE Access,,db/journals/access/access5.html#JavaidCAAAG17,https://doi.org/10.1109/ACCESS.2017.2706741 +Songyun Wang,A DVFS Based Energy-Efficient Tasks Scheduling in a Data Center.,2017,5,IEEE Access,,db/journals/access/access5.html#WangQYY17,https://doi.org/10.1109/ACCESS.2017.2724598 +Busik Jang,Three Hierarchical Levels of Big-Data Market Model Over Multiple Data Sources for Internet of Things.,2018,6,IEEE Access,,db/journals/access/access6.html#JangPLH18,https://doi.org/10.1109/ACCESS.2018.2845105 +Naizhi Wang,Wideband Fabry-Perot Resonator Antenna With Electrically Thin Dielectric Superstrates.,2018,6,IEEE Access,,db/journals/access/access6.html#WangTZX18,https://doi.org/10.1109/ACCESS.2018.2810085 +Abdulaziz Almehmadi,Micromovement Behavior as an Intention Detection Measurement for Preventing Insider Threats.,2018,6,IEEE Access,,db/journals/access/access6.html#Almehmadi18,https://doi.org/10.1109/ACCESS.2018.2857450 +Kaushik Roy 0008,Background Subtraction Using Dominant Directional Pattern.,2018,6,IEEE Access,,db/journals/access/access6.html#RoyAMCK18,https://doi.org/10.1109/ACCESS.2018.2846749 +Jinjin Men,Performance Analysis for Downlink Relaying Aided Non-Orthogonal Multiple Access Networks With Imperfect CSI Over Nakagami-m Fading.,2017,5,IEEE Access,,db/journals/access/access5.html#MenGZ17,https://doi.org/10.1109/ACCESS.2016.2631482 +Xinheng Wang,Efficient Performance Monitoring for Ubiquitous Virtual Networks Based on Matrix Completion.,2018,6,IEEE Access,,db/journals/access/access6.html#WangXZXY18,https://doi.org/10.1109/ACCESS.2018.2815548 +Muhammad Babar,A Secured Data Management Scheme for Smart Societies in Industrial Internet of Things Environment.,2018,6,IEEE Access,,db/journals/access/access6.html#BabarKIYATC18,https://doi.org/10.1109/ACCESS.2018.2861421 +Khurram Shabih Zaidi,Fading Characteristics in Evaporation Duct: Fade Margin for a Wireless Link in the South China Sea.,2018,6,IEEE Access,,db/journals/access/access6.html#ZaidiJDAI18,https://doi.org/10.1109/ACCESS.2018.2810299 +Haole Chen,User Cooperation in Wireless Powered Communication Networks With a Pricing Mechanism.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenXYZC17,https://doi.org/10.1109/ACCESS.2017.2740403 +Chao-Yi Huang,Design of Broadband Modified Class-J Doherty Power Amplifier With Specific Second Harmonic Terminations.,2018,6,IEEE Access,,db/journals/access/access6.html#HuangHY18,https://doi.org/10.1109/ACCESS.2017.2784094 +Da Cai,Distributed Global Connectivity Maintenance and Control of Multi-Robot Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#CaiWD17,https://doi.org/10.1109/ACCESS.2017.2708422 +Mohammed D. Buhari,Multicarrier SAR Image Reconstruction Using Integrated MUSIC-LSE Algorithm.,2018,6,IEEE Access,,db/journals/access/access6.html#BuhariTTM18,https://doi.org/10.1109/ACCESS.2018.2817359 +Edwin Daniel Oña,Towards an Affordable Assistive Device for Personal Autonomy Recovery in Tasks Required of Manual Dexterity.,2018,6,IEEE Access,,db/journals/access/access6.html#OnaMBH18,https://doi.org/10.1109/ACCESS.2018.2834377 +Hao Wu 0006,Multibit-Quantization-Based Collaborative Spectrum Sensing Scheme for Cognitive Sensor Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#WuYCLL17,https://doi.org/10.1109/ACCESS.2017.2767101 +Guan Xu,Surface Reconstruction With Optimized Random Laser Plane Generated From Cylindrical Reference.,2018,6,IEEE Access,,db/journals/access/access6.html#XuYL18,https://doi.org/10.1109/ACCESS.2018.2854235 +Peiying Tao,An Improved Intrusion Detection Algorithm Based on GA and SVM.,2018,6,IEEE Access,,db/journals/access/access6.html#TaoSS18,https://doi.org/10.1109/ACCESS.2018.2810198 +Zhengyu Chen,Data Reconstruction in Wireless Sensor Networks From Incomplete and Erroneous Observations.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenCHYZY18,https://doi.org/10.1109/ACCESS.2018.2864126 +Tao Chen 0002,LPI Radar Waveform Recognition Based on Multi-Branch MWC Compressed Sampling Receiver.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenLH18,https://doi.org/10.1109/ACCESS.2018.2845102 +Matthäus Wander,Measurement of Globally Visible DNS Injection.,2014,2,IEEE Access,,db/journals/access/access2.html#WanderBSW14,https://doi.org/10.1109/ACCESS.2014.2323299 +Olaoluwa R. Popoola,Design and Analysis of Collision Reduction Algorithms for LED-Based Indoor Positioning With Simulation and Experimental Validation.,2018,6,IEEE Access,,db/journals/access/access6.html#PopoolaS18,https://doi.org/10.1109/ACCESS.2018.2801626 +Xiangyu Zhou,A New Linear Ultrasonic Motor Using Hybrid Longitudinal Vibration Mode.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhouZ16,https://doi.org/10.1109/ACCESS.2017.2647972 +Junhu Zhu,Integrating Temporal Information Into Knowledge Tracing: A Temporal Difference Approach.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhuZQZ18,https://doi.org/10.1109/ACCESS.2018.2833874 +Ying Hu,Modeling for Information Diffusion in Online Social Networks via Hydrodynamics.,2017,5,IEEE Access,,db/journals/access/access5.html#HuSC17,https://doi.org/10.1109/ACCESS.2016.2605009 +Mohsen Sayadi,Robust Optimal Control for Precision Improvement of Guided Gliding Vehicle Positioning.,2018,6,IEEE Access,,db/journals/access/access6.html#SayadiKZ18,https://doi.org/10.1109/ACCESS.2018.2810204 +Zhi Yan,Energy Efficiency Analysis of Cache-Enabled Two-Tier HetNets Under Different Spectrum Deployment Strategies.,2017,5,IEEE Access,,db/journals/access/access5.html#YanCOL17,https://doi.org/10.1109/ACCESS.2017.2670598 +Zhiqun Hu,Stochastic-Geometry-Based Performance Analysis of Delayed Mobile Data Offloading With Mobility Prediction in Dense IEEE 802.11 Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#HuLWL17,https://doi.org/10.1109/ACCESS.2017.2764104 +Xunyou Min,An Approach to Resource and QoS-Aware Services Optimal Composition in the Big Service and Internet of Things.,2018,6,IEEE Access,,db/journals/access/access6.html#MinXLCW18,https://doi.org/10.1109/ACCESS.2018.2855807 +Mingxing Han,Numerical Analysis and Optimisation of the Flow Forces in a Water Hydraulic Proportional Cartridge Valve for Injection System.,2018,6,IEEE Access,,db/journals/access/access6.html#HanLWTL18,https://doi.org/10.1109/ACCESS.2018.2805684 +Xiaoyang Liu,Information Diffusion and Opinion Leader Mathematical Modeling Based on Microblog.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuL18,https://doi.org/10.1109/ACCESS.2018.2849722 +Fayu Wan,The Design Method of the Active Negative Group Delay Circuits Based on a Microwave Amplifier and an RL-Series Network.,2018,6,IEEE Access,,db/journals/access/access6.html#WanLRJLG18,https://doi.org/10.1109/ACCESS.2018.2845411 +Wei Liu 0052,An Ensemble Deep Learning Method for Vehicle Type Classification on Visual Traffic Surveillance Sensors.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuZLC17,https://doi.org/10.1109/ACCESS.2017.2766203 +Robert Ramirez,Improving Interdisciplinary Communication With Standardized Cyber Security Terminology: A Literature Review.,2016,4,IEEE Access,,db/journals/access/access4.html#RamirezC16,https://doi.org/10.1109/ACCESS.2016.2544381 +Song Ci,Reconfigurable Battery Techniques and Systems: A Survey.,2016,4,IEEE Access,,db/journals/access/access4.html#CiLW16,https://doi.org/10.1109/ACCESS.2016.2545338 +Jonathan J. Stanger,Fetal Movement Measurement and Technology: A Narrative Review.,2017,5,IEEE Access,,db/journals/access/access5.html#StangerHHJC17,https://doi.org/10.1109/ACCESS.2017.2716964 +Wei Wang 0096,Optimal Transceiver Designs for Wireless-Powered Full-Duplex Two-Way Relay Networks With SWIPT.,2017,5,IEEE Access,,db/journals/access/access5.html#WangWDFZ17,https://doi.org/10.1109/ACCESS.2017.2761848 +Hyunwoo Yu,SymBiosis: Anti-Censorship and Anonymous Web-Browsing Ecosystem.,2016,4,IEEE Access,,db/journals/access/access4.html#YuLL16,https://doi.org/10.1109/ACCESS.2016.2585163 +Junfei Qiu,Hierarchical Resource Allocation Framework for Hyper-Dense Small Cell Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#QiuDWQTDS16,https://doi.org/10.1109/ACCESS.2016.2633434 +Wenhao Zong,Architecture Design and Implementation of an Autonomous Vehicle.,2018,6,IEEE Access,,db/journals/access/access6.html#ZongZWZC18,https://doi.org/10.1109/ACCESS.2018.2828260 +Swathi Kavuri Sri,Evolutionary Based ICA With Reference for EEG and#956* Rhythm Extraction.,2018,6,IEEE Access,,db/journals/access/access6.html#SriVQ18,https://doi.org/10.1109/ACCESS.2018.2821838 +Yifan Zhou,Large-Scale Spatial Distribution Identification of Base Stations in Cellular Networks.,2015,3,IEEE Access,,db/journals/access/access3.html#ZhouZLYLZCZ15,https://doi.org/10.1109/ACCESS.2015.2508789 +Yang Yang 0001,DECCO: Deep-Learning Enabled Coverage and Capacity Optimization for Massive MIMO Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#YangLLZCWC18,https://doi.org/10.1109/ACCESS.2018.2828859 +Zengshan Tian,WiCatch: A Wi-Fi Based Hand Gesture Recognition System.,2018,6,IEEE Access,,db/journals/access/access6.html#TianWYZ18,https://doi.org/10.1109/ACCESS.2018.2814575 +Wei Xu 0001,Dual-Polarized Massive MIMO Systems Under Multi-Cell Pilot Contamination.,2016,4,IEEE Access,,db/journals/access/access4.html#XuWDZY16,https://doi.org/10.1109/ACCESS.2016.2612248 +Jae Sung Park,High Dynamic Range and Super-Resolution Imaging From a Single Image.,2018,6,IEEE Access,,db/journals/access/access6.html#ParkSC18,https://doi.org/10.1109/ACCESS.2018.2797197 +Jinglun Wang,Outage Performance Analysis for Wireless Non-Orthogonal Multiple Access Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#WangXXGM18,https://doi.org/10.1109/ACCESS.2018.2789581 +Osama Ahmed Abulnaja,Analyzing Power and Energy Efficiency of Bitonic Mergesort Based on Performance Evaluation.,2018,6,IEEE Access,,db/journals/access/access6.html#AbulnajaIAS18,https://doi.org/10.1109/ACCESS.2018.2861571 +Ran Li 0003,Multi-Scheme Frame Rate Up-Conversion Using Space-Time Saliency.,2018,6,IEEE Access,,db/journals/access/access6.html#LiLL18,https://doi.org/10.1109/ACCESS.2017.2780822 +Gang Niu,Failure Prognostics of Locomotive Electro-Pneumatic Brake Based on Bond Graph Modeling.,2017,5,IEEE Access,,db/journals/access/access5.html#NiuH17,https://doi.org/10.1109/ACCESS.2017.2734120 +Sahil Khubchandani,Characterizing the Performance of LED Reflective Distance Sensors.,2017,5,IEEE Access,,db/journals/access/access5.html#KhubchandaniHK17,https://doi.org/10.1109/ACCESS.2017.2731801 +Jimeng Li,An Adaptive Randomized Orthogonal Matching Pursuit Algorithm With Sliding Window for Rolling Bearing Fault Diagnosis.,2018,6,IEEE Access,,db/journals/access/access6.html#LiLYW18,https://doi.org/10.1109/ACCESS.2018.2855732 +Lei Chen 0007,Identify Key Sequence Features to Improve CRISPR sgRNA Efficacy.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenWZLXYHC17,https://doi.org/10.1109/ACCESS.2017.2775703 +Kenneth R. Foster,"Response to ""Children Absorb Higher Doses of Radio Frequency Electromagnetic Radiation From Mobile Phones Than Adults"" and ""Yes the Children Are More Exposed to Radiofrequency Energy From Mobile Telephones Than Adults"".",2016,4,IEEE Access,,db/journals/access/access4.html#FosterC16,https://doi.org/10.1109/ACCESS.2016.2601490 +Rui Guo 0005,Secure Attribute-Based Signature Scheme With Multiple Authorities for Blockchain in Electronic Health Records Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#GuoSZZ18,https://doi.org/10.1109/ACCESS.2018.2801266 +Long Kong,Cascaded α-λ6* Fading Channels: Reliability and Security Analysis.,2018,6,IEEE Access,,db/journals/access/access6.html#KongKC18,https://doi.org/10.1109/ACCESS.2018.2833423 +Forough Goudarzi,Non-Cooperative Beacon Rate and Awareness Control for VANETs.,2017,5,IEEE Access,,db/journals/access/access5.html#GoudarziA17,https://doi.org/10.1109/ACCESS.2017.2742864 +Die Wang,A Statistical Retrieval of Cloud Parameters for the Millimeter Wave Ice Cloud Imager on Board MetOp-SG.,2017,5,IEEE Access,,db/journals/access/access5.html#WangPAJ17,https://doi.org/10.1109/ACCESS.2016.2625742 +Syed Muhammad Ali Shah,Robustness Testing of Embedded Software Systems: An Industrial Interview Study.,2016,4,IEEE Access,,db/journals/access/access4.html#ShahSLA16,https://doi.org/10.1109/ACCESS.2016.2544951 +Nils Gageik,Obstacle Detection and Collision Avoidance for a UAV With Complementary Low-Cost Sensors.,2015,3,IEEE Access,,db/journals/access/access3.html#GageikBM15,https://doi.org/10.1109/ACCESS.2015.2432455 +Yulong Huang,A New Process Uncertainty Robust Student's t Based Kalman Filter for SINS/GPS Integration.,2017,5,IEEE Access,,db/journals/access/access5.html#HuangZ17a,https://doi.org/10.1109/ACCESS.2017.2726519 +Sung-Wook Eo,ASIC Design for Real-Time One-Shot Correction of Optical Aberrations and Perspective Distortion in Microdisplay Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#EoLKK18,https://doi.org/10.1109/ACCESS.2018.2815765 +Md. Hasanul Kabir,Facial Expression Recognition From Depth Video With Patterns of Oriented Motion Flow.,2017,5,IEEE Access,,db/journals/access/access5.html#KabirSUA17,https://doi.org/10.1109/ACCESS.2017.2704087 +Lifeng Zhou,Outsourcing Eigen-Decomposition and Singular Value Decomposition of Large Matrix to a Public Cloud.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhouL16,https://doi.org/10.1109/ACCESS.2016.2535103 +Shichang Chen,A Dielectric Constant Measurement System for Liquid Based on SIW Resonator.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenGXZHDW18,https://doi.org/10.1109/ACCESS.2018.2857514 +Muhammad Sajjad,Leukocytes Classification and Segmentation in Microscopic Blood Smear: A Resource-Aware Healthcare Service in Smart Cities.,2017,5,IEEE Access,,db/journals/access/access5.html#SajjadKJMMKRBM17,https://doi.org/10.1109/ACCESS.2016.2636218 +Mina Baghani,Multi-Objective Resource Allocation in Density-Aware Design of C-RAN in 5G.,2018,6,IEEE Access,,db/journals/access/access6.html#BaghaniPL18,https://doi.org/10.1109/ACCESS.2018.2861909 +Rodney Petrus Balandong,A Review on EEG-Based Automatic Sleepiness Detection Systems for Driver.,2018,6,IEEE Access,,db/journals/access/access6.html#BalandongASM18,https://doi.org/10.1109/ACCESS.2018.2811723 +Ruohan Cao,Detecting Arbitrary Attacks Using Continuous Secured Side Information in Wireless Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#Cao17,https://doi.org/10.1109/ACCESS.2017.2769802 +Hang Li 0003,Multiuser Gain in Energy Harvesting Wireless Communications.,2017,5,IEEE Access,,db/journals/access/access5.html#LiHC17,https://doi.org/10.1109/ACCESS.2017.2709718 +Qiang Wang,Ciphertext-Policy Attribute-Based Encryption With Delegated Equality Test in Cloud Computing.,2018,6,IEEE Access,,db/journals/access/access6.html#WangPXSQ18,https://doi.org/10.1109/ACCESS.2017.2775741 +Zheming Zuo,Gaze-Informed Egocentric Action Recognition for Memory Aid Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#ZuoYPCQ18,https://doi.org/10.1109/ACCESS.2018.2808486 +Weihang Gao,An Embedded Tubular PZT Transducer Based Damage Imaging Method for Two-Dimensional Concrete Structures.,2018,6,IEEE Access,,db/journals/access/access6.html#GaoHLS18,https://doi.org/10.1109/ACCESS.2018.2843788 +Hongpeng Liu,A Modified Single-Phase Transformerless Y-Source PV Grid-Connected Inverter.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuRLWX18,https://doi.org/10.1109/ACCESS.2018.2818188 +S. Yasmin Fathima,Side Lobe Suppression in NC-OFDM Systems Using Variable Cancellation Basis Function.,2017,5,IEEE Access,,db/journals/access/access5.html#FathimaRKBS17,https://doi.org/10.1109/ACCESS.2017.2705351 +Jie Tang 0002,Optimization for Maximizing Sum Secrecy Rate in SWIPT-Enabled NOMA Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#TangDCZSWL18,https://doi.org/10.1109/ACCESS.2018.2859935 +Salvador Martínez,On Watermarking for Collaborative Model-Driven Engineering.,2018,6,IEEE Access,,db/journals/access/access6.html#MartinezGC18,https://doi.org/10.1109/ACCESS.2018.2841020 +Emma Villeneuve,Reconstruction of Angular Kinematics From Wrist-Worn Inertial Sensor Data for Smart Home Healthcare.,2017,5,IEEE Access,,db/journals/access/access5.html#VilleneuveHHJS17,https://doi.org/10.1109/ACCESS.2016.2640559 +Di Zheng,Electromagnetic-Thermal Model for Improved Axial-Flux Eddy Current Couplings With Combine Rectangle-Shaped Magnets.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhengWLZYL18,https://doi.org/10.1109/ACCESS.2018.2835469 +Edouard Buchoud,Enhancement of an Optical Fiber Sensor: Source Separation Based on Brillouin Spectrum.,2013,1,IEEE Access,,db/journals/access/access1.html#BuchoudVMDGBH13,https://doi.org/10.1109/ACCESS.2013.2288113 +Yuanjian Li,Antenna Mode Switching for Full-Duplex Destination-Based Jamming Secure Transmission.,2018,6,IEEE Access,,db/journals/access/access6.html#LiZFL18,https://doi.org/10.1109/ACCESS.2018.2791638 +Zhijun Zhang 0003,Hybrid-Level Joint-Drift-Free Scheme of Redundant Robot Manipulators Synthesized by a Varying-Parameter Recurrent Neural Network.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangY18b,https://doi.org/10.1109/ACCESS.2018.2850758 +Pooran Singh,Ultra-Low Power High Stability 8T SRAM for Application in Object Tracking System.,2018,6,IEEE Access,,db/journals/access/access6.html#SinghV18,https://doi.org/10.1109/ACCESS.2017.2782740 +Ahmed Hamdi Abo Absa,A Hybrid Unsupervised Segmentation Algorithm for Arabic Speech Using Feature Fusion and a Genetic Algorithm (July 2018).,2018,6,IEEE Access,,db/journals/access/access6.html#AbsaDEEJ18,https://doi.org/10.1109/ACCESS.2018.2859631 +Simeng Feng,Hybrid Positioning Aided Amorphous-Cell Assisted User-Centric Visible Light Downlink Techniques.,2016,4,IEEE Access,,db/journals/access/access4.html#FengLZJH16,https://doi.org/10.1109/ACCESS.2016.2567218 +Ammar K. Al Mhdawi,iPRDR: Intelligent Power Reduction Decision Routing Protocol for Big Traffic Flood in Hybrid-SDN Architecture.,2018,6,IEEE Access,,db/journals/access/access6.html#MhdawiA18,https://doi.org/10.1109/ACCESS.2018.2800408 +Rodrigo M. Santos,Providing Real-Time Message Delivery on Opportunistic Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#SantosOOMM18,https://doi.org/10.1109/ACCESS.2018.2848546 +Md. Zia Uddin,Facial Expression Recognition Using Salient Features and Convolutional Neural Network.,2017,5,IEEE Access,,db/journals/access/access5.html#UddinKT17,https://doi.org/10.1109/ACCESS.2017.2777003 +Xingbin Tu,Prefix-Free Frequency Domain Equalization for Underwater Acoustic Single Carrier Transmissions.,2018,6,IEEE Access,,db/journals/access/access6.html#TuSX18,https://doi.org/10.1109/ACCESS.2017.2784388 +Zhibo Zhu,Fast PageRank Computation Based on Network Decomposition and DAG Structure.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhuPLGM18,https://doi.org/10.1109/ACCESS.2018.2851604 +Jan Kallberg,The Unfitness of Traditional Military Thinking in Cyber.,2017,5,IEEE Access,,db/journals/access/access5.html#KallbergC17,https://doi.org/10.1109/ACCESS.2017.2693260 +Janghoon Oh,Blind Classification of Line-Coding Schemes Based on Characteristic Features.,2017,5,IEEE Access,,db/journals/access/access5.html#OhJJLY17,https://doi.org/10.1109/ACCESS.2017.2708739 +Mohammed A. M. Abdullah,A Framework for Iris Biometrics Protection: A Marriage Between Watermarking and Visual Cryptography.,2016,4,IEEE Access,,db/journals/access/access4.html#AbdullahDWC16,https://doi.org/10.1109/ACCESS.2016.2623905 +Mahammad Abdul Hannan,Artificial Intelligent Based Damping Controller Optimization for the Multi-Machine Power System: A Review.,2018,6,IEEE Access,,db/journals/access/access6.html#HannanIMLKRS18,https://doi.org/10.1109/ACCESS.2018.2855681 +Sergio Colangeli,A Simple Test to Check the Inherent-Stability Proviso on Field-Effect Transistors.,2018,6,IEEE Access,,db/journals/access/access6.html#ColangeliGCL18,https://doi.org/10.1109/ACCESS.2018.2862162 +Malcolm M. Sande,Fast Converging Robust Beamforming for Massive MIMO in Heterogeneous Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#SandeHM18,https://doi.org/10.1109/ACCESS.2018.2829534 +Shuying Huang,Multi-Frame Super-Resolution Reconstruction Based on Gradient Vector Flow Hybrid Field.,2017,5,IEEE Access,,db/journals/access/access5.html#HuangSYFL17,https://doi.org/10.1109/ACCESS.2017.2757239 +Yong Wang 0008,Spectrum-Based Fault Localization via Enlarging Non-Fault Region to Improve Fault Absolute Ranking.,2018,6,IEEE Access,,db/journals/access/access6.html#WangHFL18,https://doi.org/10.1109/ACCESS.2018.2796849 +He Li 0005,Experimental Study on Friction Characteristics and Running Stability of a Novel Ultrasonic Levitating Bearing.,2018,6,IEEE Access,,db/journals/access/access6.html#LiD18,https://doi.org/10.1109/ACCESS.2018.2826570 +Deliang Xu,Virtualization of the Encryption Card for Trust Access in Cloud Computing.,2017,5,IEEE Access,,db/journals/access/access5.html#XuFLZZL17,https://doi.org/10.1109/ACCESS.2017.2754515 +Muneeb Ahmed Sahi,Privacy Preservation in e-Healthcare Environments: State of the Art and Future Directions.,2018,6,IEEE Access,,db/journals/access/access6.html#SahiASYDOIRY18,https://doi.org/10.1109/ACCESS.2017.2767561 +Fuchun Ren,Resilience Optimization for Complex Engineered Systems Based on the Multi-Dimensional Resilience Concept.,2017,5,IEEE Access,,db/journals/access/access5.html#RenZJH17,https://doi.org/10.1109/ACCESS.2017.2755043 +Dan Yin,Attribute Couplet Attacks and Privacy Preservation in Social Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#YinSL17,https://doi.org/10.1109/ACCESS.2017.2769090 +Steven J. Duffy,Strain-Reduction Induced Rise in Channel Temperature at Ohmic Contacts of GaN HEMTs.,2018,6,IEEE Access,,db/journals/access/access6.html#DuffyBKBZBS18,https://doi.org/10.1109/ACCESS.2018.2861323 +Kai Shi,Low-Voltage Ride-Through Control Strategy for a Virtual Synchronous Generator Based on Smooth Switching.,2018,6,IEEE Access,,db/journals/access/access6.html#ShiSXLFJ18,https://doi.org/10.1109/ACCESS.2017.2784846 +Xiaolong Zhou,Multiple Perspective Object Tracking via Context-Aware Correlation Filter.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhouLCCL18,https://doi.org/10.1109/ACCESS.2018.2861824 +Zhengqing Yun,Ray Tracing for Radio Propagation Modeling: Principles and Applications.,2015,3,IEEE Access,,db/journals/access/access3.html#YunI15,https://doi.org/10.1109/ACCESS.2015.2453991 +Jinyin Chen,DOE-AND-SCA: A Novel SCA Based on DNN With Optimal Eigenvectors and Automatic Cluster Number Determination.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenWLX18,https://doi.org/10.1109/ACCESS.2018.2805365 +Swagata Das,Impedance-Based Fault Location in Transmission Networks: Theory and Application.,2014,2,IEEE Access,,db/journals/access/access2.html#DasSGP14,https://doi.org/10.1109/ACCESS.2014.2323353 +Yiping Li,A Distributed TDMA Scheduling Algorithm Based on Exponential Backoff Rule and Energy-Topology Factor in Internet of Things.,2017,5,IEEE Access,,db/journals/access/access5.html#LiZQZH17,https://doi.org/10.1109/ACCESS.2017.2758340 +Danilo Corral-De-Witt,From E-911 to NG-911: Overview and Challenges in Ecuador.,2018,6,IEEE Access,,db/journals/access/access6.html#Corral-De-WittC18,https://doi.org/10.1109/ACCESS.2018.2858751 +Peter Hailes,A Flexible FPGA-Based Quasi-Cyclic LDPC Decoder.,2017,5,IEEE Access,,db/journals/access/access5.html#HailesXMAH17,https://doi.org/10.1109/ACCESS.2017.2678103 +Rui Xu 0007,Sliding Mode Tracking Control With Perturbation Estimation for Hysteresis Nonlinearity of Piezo-Actuated Stages.,2018,6,IEEE Access,,db/journals/access/access6.html#XuZGZ18,https://doi.org/10.1109/ACCESS.2018.2840538 +Guangjie Han,Probabilistic Neighborhood Location-Point Covering Set-Based Data Collection Algorithm With Obstacle Avoidance for Three-Dimensional Underwater Acoustic Sensor Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#HanWLJZ17,https://doi.org/10.1109/ACCESS.2017.2767619 +Shangguang Wang,Virtual Vehicle Coordination for Vehicles as Ambient Sensing Platforms.,2018,6,IEEE Access,,db/journals/access/access6.html#WangZZLY18,https://doi.org/10.1109/ACCESS.2018.2808937 +Guidong Zhang,A Five-Terminal Impedance Network Based Three-Port Converter.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangWICZQFZ18,https://doi.org/10.1109/ACCESS.2018.2840528 +Mingyao Ma,An Integrated Switched Reluctance Motor Drive Topology With Voltage-Boosting and On-Board Charging Capabilities for Plug-In Hybrid Electric Vehicles (PHEVs).,2018,6,IEEE Access,,db/journals/access/access6.html#MaCHLGC18,https://doi.org/10.1109/ACCESS.2017.2779460 +Yang Fang,TransPath: Representation Learning for Heterogeneous Information Networks via Translation Mechanism.,2018,6,IEEE Access,,db/journals/access/access6.html#FangZTX18,https://doi.org/10.1109/ACCESS.2018.2827121 +Shih-Huan Chien,Novel Wideband Absorptive Bandstop Filters With Good Selectivity.,2017,5,IEEE Access,,db/journals/access/access5.html#ChienL17,https://doi.org/10.1109/ACCESS.2017.2752903 +Idris Abubakar Umar,TruFiX: A Configurable Trust-Based Cross-Layer Protocol for Wireless Sensor Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#UmarHSZ17,https://doi.org/10.1109/ACCESS.2017.2672827 +Runxia Guo,Prognostics for a Leaking Hydraulic Actuator Based on the F-Distribution Particle Filter.,2017,5,IEEE Access,,db/journals/access/access5.html#GuoG17,https://doi.org/10.1109/ACCESS.2017.2759119 +Liping Huang,Sparse Data-Based Urban Road Travel Speed Prediction Using Probabilistic Principal Component Analysis.,2018,6,IEEE Access,,db/journals/access/access6.html#HuangYZMG18,https://doi.org/10.1109/ACCESS.2018.2864318 +Jameela Al Otaibi,Machine Learning and Conceptual Reasoning for Inconsistency Detection.,2017,5,IEEE Access,,db/journals/access/access5.html#OtaibiSHIJ17,https://doi.org/10.1109/ACCESS.2016.2642402 +Yilong Wang,Exception Handling-Based Dynamic Software Watermarking.,2018,6,IEEE Access,,db/journals/access/access6.html#WangGLXL18,https://doi.org/10.1109/ACCESS.2018.2810058 +Dawar Khan,Robust Tracking Through the Design of High Quality Fiducial Markers: An Optimization Tool for ARToolKit.,2018,6,IEEE Access,,db/journals/access/access6.html#KhanUYRRHBZ18,https://doi.org/10.1109/ACCESS.2018.2801028 +Bo Lang,Achieving Flexible and Self-Contained Data Protection in Cloud Computing.,2017,5,IEEE Access,,db/journals/access/access5.html#LangWL17,https://doi.org/10.1109/ACCESS.2017.2665586 +Jason Paul Cruz,RBAC-SC: Role-Based Access Control Using Smart Contract.,2018,6,IEEE Access,,db/journals/access/access6.html#CruzKY18,https://doi.org/10.1109/ACCESS.2018.2812844 +Hong Zhou,Natural Frequency Optimization of Wireless Power Systems on Power Transmission Lines.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhouGLHDZ18,https://doi.org/10.1109/ACCESS.2018.2812206 +Panagiotis Botsinis,Quantum-Aided Multi-User Transmission in Non-Orthogonal Multiple Access Systems.,2016,4,IEEE Access,,db/journals/access/access4.html#BotsinisABNCNH16,https://doi.org/10.1109/ACCESS.2016.2591904 +Kaikai Song,Discriminative Deep Feature Learning for Semantic-Based Image Retrieval.,2018,6,IEEE Access,,db/journals/access/access6.html#SongLLWL18,https://doi.org/10.1109/ACCESS.2018.2862464 +Faisal AlGashaam,Elliptical Higher-Order-Spectra Periocular Code.,2017,5,IEEE Access,,db/journals/access/access5.html#AlGashaamNCB17,https://doi.org/10.1109/ACCESS.2017.2697898 +Wenyuan Wang,FDD Downlink Channel Estimation Solution With Common Sparsity Learning Algorithm and Zero-Partition Enhanced GAMP Algorithm.,2018,6,IEEE Access,,db/journals/access/access6.html#WangXLZ18,https://doi.org/10.1109/ACCESS.2018.2803262 +Serdar Vural,Dynamic Preamble Subset Allocation for RAN Slicing in 5G Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#VuralWBFTM18,https://doi.org/10.1109/ACCESS.2018.2800661 +Fen Miao,Predictive Modeling of Hospital Mortality for Patients With Heart Failure by Using an Improved Random Survival Forest.,2018,6,IEEE Access,,db/journals/access/access6.html#MiaoCZFL18,https://doi.org/10.1109/ACCESS.2018.2789898 +Adib Habbal,Context-Aware Radio Access Technology Selection in 5G Ultra Dense Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#HabbalGH17,https://doi.org/10.1109/ACCESS.2017.2689725 +Ping Wang 0006,End-Fire Surface Wave Antenna With Metasurface Coating.,2018,6,IEEE Access,,db/journals/access/access6.html#WangS18a,https://doi.org/10.1109/ACCESS.2018.2827199 +Hassan Taghizadeh,An Algorithm for Automatically Calculating Component Current Ratings in Switched-Capacitor DC-DC Converters.,2018,6,IEEE Access,,db/journals/access/access6.html#TaghizadehCWB18,https://doi.org/10.1109/ACCESS.2018.2802040 +Li Wang,Correlation Analysis for Exploring Multivariate Data Sets.,2018,6,IEEE Access,,db/journals/access/access6.html#WangTZG18,https://doi.org/10.1109/ACCESS.2018.2864685 +En Wang,User Recruitment for Optimizing Requester's Profit in Self-Organized Mobile Crowdsensing.,2018,6,IEEE Access,,db/journals/access/access6.html#WangYL18,https://doi.org/10.1109/ACCESS.2018.2814739 +Xuelin Cui,Sparse-Prior-Based Projection Distance Optimization Method for Joint CT-MRI Reconstruction.,2017,5,IEEE Access,,db/journals/access/access5.html#CuiMY17,https://doi.org/10.1109/ACCESS.2017.2754327 +Petteri Kela,Borderless Mobility in 5G Outdoor Ultra-Dense Networks.,2015,3,IEEE Access,,db/journals/access/access3.html#KelaTC15,https://doi.org/10.1109/ACCESS.2015.2470532 +Qihuai Chen,A Novel Control Strategy for an Interior Permanent Magnet Synchronous Machine of a Hybrid Hydraulic Excavator.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenLR18,https://doi.org/10.1109/ACCESS.2017.2787732 +Chaoqun Xiang,Development of a SMA-Fishing-Line-McKibben Bending Actuator.,2018,6,IEEE Access,,db/journals/access/access6.html#XiangGCHD18,https://doi.org/10.1109/ACCESS.2018.2830314 +José A. Montenegro,What Do Software Developers Need to Know to Build Secure Energy-Efficient Android Applications?,2018,6,IEEE Access,,db/journals/access/access6.html#MontenegroPF18,https://doi.org/10.1109/ACCESS.2017.2779131 +Marco Salucci,Material-by-Design Synthesis of Conformal Miniaturized Linear Phased Arrays.,2018,6,IEEE Access,,db/journals/access/access6.html#SalucciOAM18,https://doi.org/10.1109/ACCESS.2018.2833199 +Ying Zhang 0010,An Automatic Approach to Extracting Geographic Information From Internet.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangGZYMWHH18,https://doi.org/10.1109/ACCESS.2018.2844470 +Georgios Georgis,Geosphere: An Exact Depth-First Sphere Decoder Architecture Scalable to Very Dense Constellations.,2017,5,IEEE Access,,db/journals/access/access5.html#GeorgisNJ17,https://doi.org/10.1109/ACCESS.2017.2684706 +Jon Haël Brenas,A Malaria Analytics Framework to Support Evolution and Interoperability of Global Health Surveillance Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#BrenasMBS17,https://doi.org/10.1109/ACCESS.2017.2761232 +Jun Kong,Face Recognition Based on CSGF(2D)2PCANet.,2018,6,IEEE Access,,db/journals/access/access6.html#KongCJSH18,https://doi.org/10.1109/ACCESS.2018.2865425 +Yu Gu 0012,Effective Capacity Analysis in Ultra-Dense Wireless Networks With Random Interference.,2018,6,IEEE Access,,db/journals/access/access6.html#GuCCNTZ18,https://doi.org/10.1109/ACCESS.2018.2820901 +Shuni Song,Adaptive Neural Network Control for Uncertain Switched Nonlinear Systems With Time Delays.,2018,6,IEEE Access,,db/journals/access/access6.html#SongLW18a,https://doi.org/10.1109/ACCESS.2018.2827399 +Li Wang 0039,Wireless Distributed Storage in Socially Enabled D2D Communications.,2016,4,IEEE Access,,db/journals/access/access4.html#WangWH16,https://doi.org/10.1109/ACCESS.2016.2546685 +Sergio Salmeron-Majadas,A Machine Learning Approach to Leverage Individual Keyboard and Mouse Interaction Behavior From Multiple Users in Real-World Learning Scenarios.,2018,6,IEEE Access,,db/journals/access/access6.html#Salmeron-Majadas18,https://doi.org/10.1109/ACCESS.2018.2854966 +Chenghua Li,BundleNet: Learning with Noisy Label via Sample Correlations.,2018,6,IEEE Access,,db/journals/access/access6.html#LiZDLCL18,https://doi.org/10.1109/ACCESS.2017.2782844 +Guofa Cai,A Square-Constellation-Based M-Ary DCSK Communication System.,2016,4,IEEE Access,,db/journals/access/access4.html#CaiFHLW16,https://doi.org/10.1109/ACCESS.2016.2612224 +Ying An,An In-Network Caching Scheme Based on Energy Efficiency for Content-Centric Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#AnL18,https://doi.org/10.1109/ACCESS.2018.2823722 +Rahman Dashti,Impedance-Based Fault Location Method for Four-Wire Power Distribution Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#DashtiDST18,https://doi.org/10.1109/ACCESS.2017.2778427 +Changqing Liu,Minimum-Variance Unbiased Unknown Input and State Estimation for Multi-Agent Systems by Distributed Cooperative Filters.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuWZS18,https://doi.org/10.1109/ACCESS.2018.2815662 +Qiqi Kou,A Multiresolution Gray-Scale and Rotation Invariant Descriptor for Texture Classification.,2018,6,IEEE Access,,db/journals/access/access6.html#KouCCZ18,https://doi.org/10.1109/ACCESS.2018.2842078 +Xiaogong Lin,An Improved Gaussian Filter for Dynamic Positioning Ships With Colored Noises and Random Measurements Loss.,2018,6,IEEE Access,,db/journals/access/access6.html#LinJZ18,https://doi.org/10.1109/ACCESS.2018.2789336 +Cai Xia Yang,Low-Cost Experimental System for Center of Mass and Center of Pressure Measurement (June 2018).,2018,6,IEEE Access,,db/journals/access/access6.html#Yang18,https://doi.org/10.1109/ACCESS.2018.2864677 +Nur Fazliana Rahim,Forecasting Crude Palm Oil Prices Using Fuzzy Rule-Based Time Series Method.,2018,6,IEEE Access,,db/journals/access/access6.html#RahimOSK18,https://doi.org/10.1109/ACCESS.2018.2846809 +Theodora S. Brisimi,Sensing and Classifying Roadway Obstacles in Smart Cities: The Street Bump System.,2016,4,IEEE Access,,db/journals/access/access4.html#BrisimiCOPZ16,https://doi.org/10.1109/ACCESS.2016.2529562 +Sylvain Kubler,Open IoT Ecosystem for Sporting Event Management.,2017,5,IEEE Access,,db/journals/access/access5.html#KublerRHFCB17,https://doi.org/10.1109/ACCESS.2017.2692247 +Chun Jiang,Image Processing of Aluminum Alloy Weld Pool for Robotic VPPAW Based on Visual Sensing.,2017,5,IEEE Access,,db/journals/access/access5.html#JiangZW17,https://doi.org/10.1109/ACCESS.2017.2761986 +Tingqin He,Parallel Community Detection Based on Distance Dynamics for Large-Scale Network.,2018,6,IEEE Access,,db/journals/access/access6.html#HeCMCDC18,https://doi.org/10.1109/ACCESS.2018.2859788 +Botao Feng,A Dual-Wideband and High Gain Magneto-Electric Dipole Antenna and Its 3D MIMO System With Metasurface for 5G/WiMAX/WLAN/X-Band Applications.,2018,6,IEEE Access,,db/journals/access/access6.html#FengLZC18,https://doi.org/10.1109/ACCESS.2018.2848476 +Sachin Umesh Sharma,A Practical Animal Detection and Collision Avoidance System Using Computer Vision Technique.,2017,5,IEEE Access,,db/journals/access/access5.html#SharmaS17,https://doi.org/10.1109/ACCESS.2016.2642981 +Aparajita Nanda,A Neuromorphic Person Re-Identification Framework for Video Surveillance.,2017,5,IEEE Access,,db/journals/access/access5.html#NandaSCBM17,https://doi.org/10.1109/ACCESS.2017.2686438 +Jing Liu 0015,Performance Evaluation of Integrated Multi-Access Edge Computing and Fiber-Wireless Access Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuSLHG18,https://doi.org/10.1109/ACCESS.2018.2833619 +Fasong Wang,Secrecy Analysis of Generalized Space-Shift Keying Aided Visible Light Communication.,2018,6,IEEE Access,,db/journals/access/access6.html#WangLWZZYH18,https://doi.org/10.1109/ACCESS.2018.2799658 +Juhi Gupta,On the Performance of RF-FSO System Over Rayleigh and Kappa-Mu/Inverse Gaussian Fading Environment.,2018,6,IEEE Access,,db/journals/access/access6.html#GuptaDK18,https://doi.org/10.1109/ACCESS.2018.2789478 +Zhenhua Tan,ECRModel: An Elastic Collision-Based Rumor-Propagation Model in Online Social Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#TanNLWYY16,https://doi.org/10.1109/ACCESS.2016.2612298 +Vicente Torres-Sanz,Enhancing the Charging Process of Electric Vehicles at Residential Homes.,2018,6,IEEE Access,,db/journals/access/access6.html#Torres-SanzSMGM18,https://doi.org/10.1109/ACCESS.2018.2829158 +Diego Casado-Mansilla,A Human-Centric and Context-Aware IoT Framework for Enhancing Energy Efficiency in Buildings of Public Use.,2018,6,IEEE Access,,db/journals/access/access6.html#Casado-Mansilla18,https://doi.org/10.1109/ACCESS.2018.2837141 +Oladimeji Ibrahim,Development of Observer State Output Feedback for Phase-Shifted Full Bridge DC-DC Converter Control.,2017,5,IEEE Access,,db/journals/access/access5.html#IbrahimYSA17,https://doi.org/10.1109/ACCESS.2017.2745417 +Yuanjian Li,Artificial Noise Aided Precoding With Imperfect CSI in Full-Duplex Relaying Secure Communications.,2018,6,IEEE Access,,db/journals/access/access6.html#LiZWPL18,https://doi.org/10.1109/ACCESS.2018.2851598 +Weichen Wang,Robust Beamforming and Power Allocation for Secrecy in DF Relay Networks With Imperfect Channel State Information.,2016,4,IEEE Access,,db/journals/access/access4.html#WangLG16,https://doi.org/10.1109/ACCESS.2017.2649568 +Jun Hu 0006,A Wideband Quad-Polarization Reconfigurable Metasurface Antenna.,2018,6,IEEE Access,,db/journals/access/access6.html#HuLH18,https://doi.org/10.1109/ACCESS.2017.2766231 +Pengfei Shao,A Distributed Traffic Control Strategy Based on Cell-Transmission Model.,2018,6,IEEE Access,,db/journals/access/access6.html#ShaoWQWY18,https://doi.org/10.1109/ACCESS.2018.2794555 +Giuseppe Masetti,A Ray-Tracing Uncertainty Estimation Tool for Ocean Mapping.,2018,6,IEEE Access,,db/journals/access/access6.html#MasettiKJB18,https://doi.org/10.1109/ACCESS.2017.2781801 +Saif ur Rehman,Optimized and Frequent Subgraphs: How Are They Related?,2018,6,IEEE Access,,db/journals/access/access6.html#RehmanAF18,https://doi.org/10.1109/ACCESS.2018.2846604 +Suhaib Ahmed,An Electret-Based Angular Electrostatic Energy Harvester for Battery-Less Cardiac and Neural Implants.,2017,5,IEEE Access,,db/journals/access/access5.html#AhmedK17,https://doi.org/10.1109/ACCESS.2017.2739205 +Austin J. Pickles,Automated Creation of Complex Three-Dimensional Composite Mixtures for Use in Electromagnetic Simulation.,2013,1,IEEE Access,,db/journals/access/access1.html#PicklesKS13,https://doi.org/10.1109/ACCESS.2013.2262014 +I. Kazemi,Optimization of Angle-of-Arrival Estimation Via Real-Valued Sparse Representation With Circular Array Radar.,2013,1,IEEE Access,,db/journals/access/access1.html#KazemiMK13,https://doi.org/10.1109/ACCESS.2013.2270173 +Xiaojie Wang,A Demand-Supply Oriented Taxi Recommendation System for Vehicular Social Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#WangZWN18,https://doi.org/10.1109/ACCESS.2018.2857002 +Kai Xu 0011,The Compact Balanced Filtering Power Divider With In-Phase or Out-of-Phase Output Using H-Shape Resonators.,2018,6,IEEE Access,,db/journals/access/access6.html#XuSZM18,https://doi.org/10.1109/ACCESS.2018.2854269 +Weiguang Ding,QoS-Aware Full-Duplex Concurrent Scheduling for Millimeter Wave Wireless Backhaul Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#DingNWLZ18,https://doi.org/10.1109/ACCESS.2018.2828852 +Victor H. Jimenez-Arredondo,Multilevel Color Transfer on Images for Providing an Artistic Sight of the World.,2017,5,IEEE Access,,db/journals/access/access5.html#Jimenez-Arredondo17,https://doi.org/10.1109/ACCESS.2017.2732359 +Hajime Watanabe,Hate Speech on Twitter: A Pragmatic Approach to Collect Hateful and Offensive Expressions and Perform Hate Speech Detection.,2018,6,IEEE Access,,db/journals/access/access6.html#WatanabeBO18,https://doi.org/10.1109/ACCESS.2018.2806394 +Ahmet Yazar,A Flexibility Metric and Optimization Methods for Mixed Numerologies in 5G and Beyond.,2018,6,IEEE Access,,db/journals/access/access6.html#YazarA18,https://doi.org/10.1109/ACCESS.2018.2795752 +Bongsuk Ko,A Comparative Study of Programming Environments Exploiting Heterogeneous Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#KoHPJL17,https://doi.org/10.1109/ACCESS.2017.2708738 +Ning Yang 0003,Time-Frequency Filter Bank: A Simple Approach for Audio and Music Separation.,2017,5,IEEE Access,,db/journals/access/access5.html#YangUHJZ17,https://doi.org/10.1109/ACCESS.2017.2761741 +Zoran Babovic,Web Performance Evaluation for Internet of Things Applications.,2016,4,IEEE Access,,db/journals/access/access4.html#BabovicPM16,https://doi.org/10.1109/ACCESS.2016.2615181 +Rongping Lin,Estimating End-to-End Available Bandwidth With Noises.,2017,5,IEEE Access,,db/journals/access/access5.html#LinHWLXZ17,https://doi.org/10.1109/ACCESS.2017.2741222 +Amalia Beatriz Orúe López,A Lightweight Pseudorandom Number Generator for Securing the Internet of Things.,2017,5,IEEE Access,,db/journals/access/access5.html#LopezEMV17,https://doi.org/10.1109/ACCESS.2017.2774105 +Liyao Li,R and P: An Low-Cost Device-Free Activity Recognition for E-Health.,2018,6,IEEE Access,,db/journals/access/access6.html#LiBXPWWJLC18,https://doi.org/10.1109/ACCESS.2017.2749323 +Woping Xu,Fair Optimal Resource Allocation in Cognitive Radio Networks With Co-Channel Interference Mitigation.,2018,6,IEEE Access,,db/journals/access/access6.html#XuQC18,https://doi.org/10.1109/ACCESS.2018.2845460 +Baoding Zhou,A Graph Optimization-Based Indoor Map Construction Method via Crowdsourcing.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhouLZMYTXC18,https://doi.org/10.1109/ACCESS.2018.2836396 +Hiun Kim,IoT-TaaS: Towards a Prospective IoT Testing Framework.,2018,6,IEEE Access,,db/journals/access/access6.html#KimAHBGOS18,https://doi.org/10.1109/ACCESS.2018.2802489 +Pingping Chen,An Efficient Transmission Scheme for DCSK Cooperative Communication Over Multipath Fading Channels.,2016,4,IEEE Access,,db/journals/access/access4.html#ChenFHC16,https://doi.org/10.1109/ACCESS.2016.2613890 +Bryan Whitsell,Physical Human-Robot Interaction (pHRI) in 6 DOF With Asymmetric Cooperation.,2017,5,IEEE Access,,db/journals/access/access5.html#WhitsellA17,https://doi.org/10.1109/ACCESS.2017.2708658 +Truong-Xuan Do,Usage-Aware Protection Plan for State Management Functions in Service-Based 5G Core Network.,2018,6,IEEE Access,,db/journals/access/access6.html#DoK18,https://doi.org/10.1109/ACCESS.2018.2853127 +Wenjun Xu,Joint Parameter Selection for Massive MIMO: An Energy-Efficient Perspective.,2016,4,IEEE Access,,db/journals/access/access4.html#XuLWFLV16,https://doi.org/10.1109/ACCESS.2016.2591781 +Syeda Mariam Muzammal,Counter Measuring Conceivable Security Threats on Smart Healthcare Devices.,2018,6,IEEE Access,,db/journals/access/access6.html#MuzammalSKJAKHH18,https://doi.org/10.1109/ACCESS.2018.2826225 +Muhamed Turkanovic,EduCTX: A Blockchain-Based Higher Education Credit Platform.,2018,6,IEEE Access,,db/journals/access/access6.html#TurkanovicHKHK18,https://doi.org/10.1109/ACCESS.2018.2789929 +Suguo Du,Modeling Privacy Leakage Risks in Large-Scale Social Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#DuLZZXZS18,https://doi.org/10.1109/ACCESS.2018.2818116 +Amin Zollanvari,Predicting Students' GPA and Developing Intervention Strategies Based on Self-Regulatory Learning Behaviors.,2017,5,IEEE Access,,db/journals/access/access5.html#ZollanvariKKH17,https://doi.org/10.1109/ACCESS.2017.2740980 +Furong Yan,An Improved Ranking-Based Feature Enhancement Approach for Robust Speaker Recognition.,2016,4,IEEE Access,,db/journals/access/access4.html#YanMYJ16,https://doi.org/10.1109/ACCESS.2016.2607778 +Yujuan Tan,Multi-Objective Metrics to Evaluate Deduplication Approaches.,2017,5,IEEE Access,,db/journals/access/access5.html#TanY17,https://doi.org/10.1109/ACCESS.2017.2694014 +Xi Zhang 0008,Improving the Detection of Noise Artifacts in Gravitational-Wave Data With a Classifier Graph.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangJ17,https://doi.org/10.1109/ACCESS.2017.2684902 +He Li 0004,Gravitation-Based 3-D Redeployment Schemes for the Mobile Sensors and Sink in Gas Leakage Monitoring.,2017,5,IEEE Access,,db/journals/access/access5.html#LiYQGG17,https://doi.org/10.1109/ACCESS.2017.2695232 +Fuqiang Sun,Remaining Useful Life Prediction for a Machine With Multiple Dependent Features Based on Bayesian Dynamic Linear Model and Copulas.,2017,5,IEEE Access,,db/journals/access/access5.html#SunWLZ17,https://doi.org/10.1109/ACCESS.2017.2735966 +Jacobo Saenz,Open and Low-Cost Virtual and Remote Labs on Control Engineering.,2015,3,IEEE Access,,db/journals/access/access3.html#SaenzCTVD15,https://doi.org/10.1109/ACCESS.2015.2442613 +Haoran Han,Fault-Tolerant Scheduling for Hybrid Real-Time Tasks Based on CPB Model in Cloud.,2018,6,IEEE Access,,db/journals/access/access6.html#HanBZFZ18,https://doi.org/10.1109/ACCESS.2018.2810214 +Tung-Kuan Liu,Optimizing Adjustable Parameters of Servo Controller by Using UniNeuro-HUDGA for Laser-Auto-Focus-Based Tracking System.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuASH17,https://doi.org/10.1109/ACCESS.2017.2650959 +Kun Yang 0005,Optimization of Resource Allocation and User Association for Energy Efficiency in Future Wireless Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#YangWWZ17,https://doi.org/10.1109/ACCESS.2017.2722007 +Pradeep Lall,Reliability and Failure Modes of Solid-State Lighting Electrical Drivers Subjected to Accelerated Aging.,2015,3,IEEE Access,,db/journals/access/access3.html#LallSD15,https://doi.org/10.1109/ACCESS.2015.2404812 +Guangming Zhu,Multimodal Gesture Recognition Using 3-D Convolution and Convolutional LSTM.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhuZSS17,https://doi.org/10.1109/ACCESS.2017.2684186 +Kwangsoo Seol,Privacy-Preserving Attribute-Based Access Control Model for XML-Based Electronic Health Record System.,2018,6,IEEE Access,,db/journals/access/access6.html#SeolKLSB18,https://doi.org/10.1109/ACCESS.2018.2800288 +Dahai Zhang,A Data-Driven Design for Fault Detection of Wind Turbines Using Random Forests and XGboost.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangQMHHS18,https://doi.org/10.1109/ACCESS.2018.2818678 +Jianxin Jia,A Novel Packets Transmission Scheme Based on Software Defined Open Wireless Platform.,2018,6,IEEE Access,,db/journals/access/access6.html#JiaLHW18,https://doi.org/10.1109/ACCESS.2018.2813007 +Qi Xu,Low Latency Security Function Chain Embedding Across Multiple Domains.,2018,6,IEEE Access,,db/journals/access/access6.html#XuGLZ18,https://doi.org/10.1109/ACCESS.2018.2791963 +Yifu Zeng,Parallel and Progressive Approaches for Skyline Query Over Probabilistic Incomplete Database.,2018,6,IEEE Access,,db/journals/access/access6.html#ZengLYZL18,https://doi.org/10.1109/ACCESS.2018.2806379 +Huijie Zhang,Correlation Visualization of Time-Varying Patterns for Multi-Variable Data.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhangHQL16,https://doi.org/10.1109/ACCESS.2016.2601339 +Dongxu Huang,CoDetect: Financial Fraud Detection With Anomaly Feature Detection.,2018,6,IEEE Access,,db/journals/access/access6.html#HuangMYC18,https://doi.org/10.1109/ACCESS.2018.2816564 +Chengze Li,CRSPR: PageRank for Android Apps.,2017,5,IEEE Access,,db/journals/access/access5.html#LiWWLYGXG17,https://doi.org/10.1109/ACCESS.2017.2747597 +Aykut C. Satici,Robust Optimal Control of Quadrotor UAVs.,2013,1,IEEE Access,,db/journals/access/access1.html#SaticiPS13,https://doi.org/10.1109/ACCESS.2013.2260794 +Jie Yuan,A Reliable and Lightweight Trust Computing Mechanism for IoT Edge Devices Based on Multi-Source Feedback Information Fusion.,2018,6,IEEE Access,,db/journals/access/access6.html#YuanL18,https://doi.org/10.1109/ACCESS.2018.2831898 +Dawei Cheng,Modeling Similarities Among Multi-Dimensional Financial Time Series.,2018,6,IEEE Access,,db/journals/access/access6.html#ChengLNZ18,https://doi.org/10.1109/ACCESS.2018.2862908 +Ateeq Ur Rehman,Performance of Cognitive Selective-Repeat Hybrid Automatic Repeat Request.,2016,4,IEEE Access,,db/journals/access/access4.html#RehmanTYH16,https://doi.org/10.1109/ACCESS.2016.2628776 +Yanping Xiao,Directional Modulation With Cooperative Receivers.,2018,6,IEEE Access,,db/journals/access/access6.html#XiaoTXZWX18,https://doi.org/10.1109/ACCESS.2018.2849098 +Naoki Ishikawa,Subcarrier-Index Modulation Aided OFDM - Will It Work?,2016,4,IEEE Access,,db/journals/access/access4.html#IshikawaSH16,https://doi.org/10.1109/ACCESS.2016.2568040 +Laixin Shen,Functional Curve Fitting Algorithm via Multi-Heterogeneous Data Curve.,2017,5,IEEE Access,,db/journals/access/access5.html#ShenYWC17,https://doi.org/10.1109/ACCESS.2016.2643679 +Om P. Gandhi,Yes the Children Are More Exposed to Radiofrequency Energy From Mobile Telephones Than Adults.,2015,3,IEEE Access,,db/journals/access/access3.html#Gandhi15,https://doi.org/10.1109/ACCESS.2015.2438782 +Lanyong Zhang,Hybrid Prediction Method for the Electromagnetic Interference Characteristics of Printed Circuit Boards Based on the Equivalent Dipole Model and the Finite-Difference Time Domain Method.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangZWLP18,https://doi.org/10.1109/ACCESS.2017.2782879 +Jia Zhu,Cognitive Network Cooperation for Green Cellular Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhuZ16,https://doi.org/10.1109/ACCESS.2016.2532600 +Lujie Zhong,RARE: An Efficient Static Fault Detection Framework for Definition-Use Faults in Large Programs.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhongYHLFZ18,https://doi.org/10.1109/ACCESS.2018.2797314 +Rongfei Fan,Throughput Maximization for Multi-Hop Decode-and-Forward Relay Network With Wireless Energy Harvesting.,2018,6,IEEE Access,,db/journals/access/access6.html#FanACZE18,https://doi.org/10.1109/ACCESS.2018.2831253 +Madhuri Siddula,An Empirical Study on the Privacy Preservation of Online Social Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#SiddulaLL18,https://doi.org/10.1109/ACCESS.2018.2822693 +Sudipta Chattopadhyay,A Physical Insight Into the Influence of Dominant Mode of Rectangular Microstrip Antenna on Its Cross-Polarization Characteristics and Its Improvement With T-Shaped Microstrip Antenna.,2018,6,IEEE Access,,db/journals/access/access6.html#ChattopadhyayC18,https://doi.org/10.1109/ACCESS.2018.2797358 +Neha Mathur,A Practical Design and Implementation of a Low Cost Platform for Remote Monitoring of Lower Limb Health of Amputees in the Developing World.,2016,4,IEEE Access,,db/journals/access/access4.html#MathurPIABG16,https://doi.org/10.1109/ACCESS.2016.2622163 +Mohsen Moradi Dalvand,Modular Instrument for a Haptically-Enabled Robotic Surgical System (HeroSurg).,2018,6,IEEE Access,,db/journals/access/access6.html#DalvandNFMNH18,https://doi.org/10.1109/ACCESS.2018.2844563 +Yuan Xue,A Model on Indoor Localization System Based on the Time Difference Without Synchronization.,2018,6,IEEE Access,,db/journals/access/access6.html#XueSWYM18,https://doi.org/10.1109/ACCESS.2018.2850660 +Xiaoya Xu,Industrial Big Data Analysis in Smart Factory: Current Status and Research Strategies.,2017,5,IEEE Access,,db/journals/access/access5.html#XuH17,https://doi.org/10.1109/ACCESS.2017.2741105 +Farshad Koohifar,Autonomous Tracking of Intermittent RF Source Using a UAV Swarm.,2018,6,IEEE Access,,db/journals/access/access6.html#KoohifarGS18,https://doi.org/10.1109/ACCESS.2018.2810599 +Yuan Ren,Secure Wireless Information and Power Transfer in Heterogeneous Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#RenLGL17,https://doi.org/10.1109/ACCESS.2017.2682277 +Juinn-Horng Deng,Multiuser MIMO Precoders With Proactive Primary Interference Cancelation and Link Quality Enhancement for Cognitive Radio Relay Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#DengCK17,https://doi.org/10.1109/ACCESS.2017.2749122 +Koray Inçki,A Novel Runtime Verification Solution for IoT Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#InckiA18,https://doi.org/10.1109/ACCESS.2018.2813887 +Hanaa Marshoud,Optical Adaptive Precoding for Visible Light Communications.,2018,6,IEEE Access,,db/journals/access/access6.html#MarshoudSMSK18,https://doi.org/10.1109/ACCESS.2018.2805939 +Taufik Abrão,Energy Efficient OFDMA Networks Maintaining Statistical QoS Guarantees for Delay-Sensitive Traffic.,2016,4,IEEE Access,,db/journals/access/access4.html#AbraoSYCJH16,https://doi.org/10.1109/ACCESS.2016.2530688 +Hao Zhang 0004,A UAV Detection Algorithm Based on an Artificial Neural Network.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangCXG18,https://doi.org/10.1109/ACCESS.2018.2831911 +Weixin Si,Mixed Reality Guided Radiofrequency Needle Placement: A Pilot Study.,2018,6,IEEE Access,,db/journals/access/access6.html#SiLQW18,https://doi.org/10.1109/ACCESS.2018.2843378 +Dongho You,Internet of Things (IoT) for Seamless Virtual Reality Space: Challenges and Perspectives.,2018,6,IEEE Access,,db/journals/access/access6.html#YouSJK18,https://doi.org/10.1109/ACCESS.2018.2829194 +Yina Han,Retrieval of TV Talk-Show Speakers by Associating Audio Transcript to Visual Clusters.,2017,5,IEEE Access,,db/journals/access/access5.html#HanSZ17,https://doi.org/10.1109/ACCESS.2017.2756451 +Cheng Pan,Variation of Discharge Characteristics With Temperature in Moving Transformer Oil Contaminated by Metallic Particles.,2018,6,IEEE Access,,db/journals/access/access6.html#PanTZLL18,https://doi.org/10.1109/ACCESS.2018.2856580 +Nishtha Kesswani,Analyzing Android App Privacy With GP-PP Model.,2018,6,IEEE Access,,db/journals/access/access6.html#KesswaniLZ18,https://doi.org/10.1109/ACCESS.2018.2850060 +Xiaowen Tian,Random-Training-Assisted Pilot Spoofing Detection and Security Enhancement.,2017,5,IEEE Access,,db/journals/access/access5.html#TianLL17,https://doi.org/10.1109/ACCESS.2017.2765382 +Meirui Ren,Distributed Data Aggregation Scheduling in Multi-Channel and Multi-Power Wireless Sensor Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#RenLGLF17,https://doi.org/10.1109/ACCESS.2017.2734847 +Nan Zhao,Biometric Behavior Authentication Exploiting Propagation Characteristics of Wireless Channel.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhaoRUZYH16,https://doi.org/10.1109/ACCESS.2016.2602286 +Bing Li 0004,Advanced Perceptive Forwarding in Content-Centric Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#LiMY17,https://doi.org/10.1109/ACCESS.2017.2676341 +Xin Su 0002,Channel Model for Polarized MIMO Systems With Power Radiation Pattern Concern.,2016,4,IEEE Access,,db/journals/access/access4.html#SuCLP16,https://doi.org/10.1109/ACCESS.2016.2543265 +Marko Meza,Towards Automatic Real-Time Estimation of Observed Learner's Attention Using Psychophysiological and Affective Signals: The Touch-Typing Study Case.,2017,5,IEEE Access,,db/journals/access/access5.html#MezaKSK17,https://doi.org/10.1109/ACCESS.2017.2750758 +Shailendra Rathore,A Hesitant Fuzzy Based Security Approach for Fog and Mobile-Edge Computing.,2018,6,IEEE Access,,db/journals/access/access6.html#RathoreSSP18,https://doi.org/10.1109/ACCESS.2017.2774837 +Xuejian Zhao,A Weighted Frequent Itemset Mining Algorithm for Intelligent Decision in Smart Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaoZWCS18,https://doi.org/10.1109/ACCESS.2018.2839751 +Sung Sik Nam,Iterative Relay Scheduling With Hybrid ARQ Under Multiple User Equipment (Type II) Relay Environments.,2018,6,IEEE Access,,db/journals/access/access6.html#NamAC18,https://doi.org/10.1109/ACCESS.2018.2791520 +Jin Hyung Park,Security Architecture for a Secure Database on Android.,2018,6,IEEE Access,,db/journals/access/access6.html#ParkYKL18,https://doi.org/10.1109/ACCESS.2018.2799384 +Tommy Chin,Phishlimiter: A Phishing Detection and Mitigation Approach Using Software-Defined Networking.,2018,6,IEEE Access,,db/journals/access/access6.html#ChinXH18,https://doi.org/10.1109/ACCESS.2018.2837889 +Peng Wu,Software Homology Detection With Software Motifs Based on Function-Call Graph.,2018,6,IEEE Access,,db/journals/access/access6.html#WuWT18,https://doi.org/10.1109/ACCESS.2018.2803738 +óscar Blanco-Novoa,A Practical Evaluation of Commercial Industrial Augmented Reality Systems in an Industry 4.0 Shipyard.,2018,6,IEEE Access,,db/journals/access/access6.html#Blanco-NovoaFFV18,https://doi.org/10.1109/ACCESS.2018.2802699 +Dexin Zhang,Comparison of the Accelerator-Pedal-to-Engine-Control-Module Interfaces on Vehicles With Low and High Reported Rates of Unintended Acceleration.,2015,3,IEEE Access,,db/journals/access/access3.html#ZhangH15,https://doi.org/10.1109/ACCESS.2015.2446415 +Xiaoyu Li,Two-Factor Data Access Control With Efficient Revocation for Multi-Authority Cloud Storage Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#LiTXW017,https://doi.org/10.1109/ACCESS.2016.2609884 +Huan Long,Formulation and Analysis of Grid and Coordinate Models for Planning Wind Farm Layouts.,2017,5,IEEE Access,,db/journals/access/access5.html#LongZSK17,https://doi.org/10.1109/ACCESS.2017.2657638 +Yushu Zhang,A Review of Compressive Sensing in Information Security Field.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhangZZLCH16,https://doi.org/10.1109/ACCESS.2016.2569421 +Jianguo Yao,System-Level Scheduling of Mixed-Criticality Traffics in Avionics Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#YaoWLXZ16,https://doi.org/10.1109/ACCESS.2016.2584859 +Sangdon Park,Event-Driven Energy Trading System in Microgrids: Aperiodic Market Model Analysis With a Game Theoretic Approach.,2017,5,IEEE Access,,db/journals/access/access5.html#ParkLHC17,https://doi.org/10.1109/ACCESS.2017.2766233 +K. Satyanarayana,Adaptive Transceiver Design for C-RAN in mmWave Communications.,2018,6,IEEE Access,,db/journals/access/access6.html#SatyanarayanaEK18,https://doi.org/10.1109/ACCESS.2017.2776083 +Tanner J. Douglas,A High-Isolation Two-Port Planar Antenna System for Communication and Radar Applications.,2018,6,IEEE Access,,db/journals/access/access6.html#DouglasS18,https://doi.org/10.1109/ACCESS.2018.2807415 +Lokman Sboui,Achievable Rates of UAV-Relayed Cooperative Cognitive Radio MIMO Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#SbouiGRA17,https://doi.org/10.1109/ACCESS.2017.2695586 +Gustavo Gonzalez Granadillo,Using an Event Data Taxonomy to Represent the Impact of Cyber Events as Geometrical Instances.,2018,6,IEEE Access,,db/journals/access/access6.html#GranadilloRG18,https://doi.org/10.1109/ACCESS.2017.2740402 +Anum Ali,Receiver-Based Recovery of Clipped OFDM Signals for PAPR Reduction: A Bayesian Approach.,2014,2,IEEE Access,,db/journals/access/access2.html#AliAMA14,https://doi.org/10.1109/ACCESS.2014.2362772 +Luliang Jia,A Multi-Domain Anti-Jamming Defense Scheme in Heterogeneous Wireless Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#JiaXSFYA18,https://doi.org/10.1109/ACCESS.2018.2850879 +Zhao Li 0003,Accurate Prediction and Analysis of Electromagnetic Fields and Forces in Flux-Focusing Eddy Current Coupling With Double Slotted Conductor Rotors.,2018,6,IEEE Access,,db/journals/access/access6.html#LiWZ18a,https://doi.org/10.1109/ACCESS.2018.2849857 +Ferda Ernawan,A Robust Image Watermarking Technique With an Optimal DCT-Psychovisual Threshold.,2018,6,IEEE Access,,db/journals/access/access6.html#ErnawanK18,https://doi.org/10.1109/ACCESS.2018.2819424 +You Li 0003,Performance Analysis of MMSE Pre-Coding Aided Spatial Modulation.,2018,6,IEEE Access,,db/journals/access/access6.html#LiLTHXX18,https://doi.org/10.1109/ACCESS.2018.2864312 +Nasim Ullah,Adaptive Fractional Order Terminal Sliding Mode Control of a Doubly Fed Induction Generator-Based Wind Energy System.,2017,5,IEEE Access,,db/journals/access/access5.html#UllahAIH17,https://doi.org/10.1109/ACCESS.2017.2759579 +Yulong Huang,Robust Student's t-Based Stochastic Cubature Filter for Nonlinear Systems With Heavy-Tailed Process and Measurement Noises.,2017,5,IEEE Access,,db/journals/access/access5.html#HuangZ17,https://doi.org/10.1109/ACCESS.2017.2700428 +Yiming Yu,Analysis and Design of Inductorless Wideband Low-Noise Amplifier With Noise Cancellation Technique.,2017,5,IEEE Access,,db/journals/access/access5.html#YuKFZLWBY17,https://doi.org/10.1109/ACCESS.2017.2692765 +Abdulbast A. Abushgra,A Shared Secret Key Initiated by EPR Authentication and Qubit Transmission Channels.,2017,5,IEEE Access,,db/journals/access/access5.html#AbushgraE17,https://doi.org/10.1109/ACCESS.2017.2741899 +Y. Jay Guo,Advances in Reconfigurable Antenna Systems Facilitated by Innovative Technologies.,2018,6,IEEE Access,,db/journals/access/access6.html#GuoQCLZ18,https://doi.org/10.1109/ACCESS.2017.2789199 +Ahmad Showail,Battling Latency in Modern Wireless Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ShowailS18,https://doi.org/10.1109/ACCESS.2018.2836439 +Fatih Yucel,Clustered Crowd GPS for Privacy Valuing Active Localization.,2018,6,IEEE Access,,db/journals/access/access6.html#YucelB18,https://doi.org/10.1109/ACCESS.2018.2830300 +Siqian Yang,Wireless Vehicular Check-in Protocol at Urban Road Intersection.,2018,6,IEEE Access,,db/journals/access/access6.html#YangWJ18,https://doi.org/10.1109/ACCESS.2018.2822547 +Mansoor Ahmed,Secrecy Capacity of Artificial Noise Aided Secure Communication in MIMO Rician Channels.,2018,6,IEEE Access,,db/journals/access/access6.html#AhmedB18,https://doi.org/10.1109/ACCESS.2018.2804924 +Dong Zhang 0003,Two-Dimensional Direction of Arrival Estimation for Coprime Planar Arrays via Polynomial Root Finding Technique.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangZZDFT18,https://doi.org/10.1109/ACCESS.2018.2821919 +Xiaohu Ge,IEEE Access Special Section Editorial: Ultra-Dense Cellular Networks.,2015,3,IEEE Access,,db/journals/access/access3.html#GeCMKH15,https://doi.org/10.1109/ACCESS.2015.2509081 +Yang Wang 0035,Model-Based Application of Fuzzy Control to a Class of Industrial Process Operation Systems With Uncertainty.,2018,6,IEEE Access,,db/journals/access/access6.html#WangLW18,https://doi.org/10.1109/ACCESS.2017.2768080 +Wenfei Wan,A Novel Just Noticeable Difference Model via Orientation Regularity in DCT Domain.,2017,5,IEEE Access,,db/journals/access/access5.html#WanWXS17,https://doi.org/10.1109/ACCESS.2017.2699858 +Baoqi Li,An Improved ResNet Based on the Adjustable Shortcut Connections.,2018,6,IEEE Access,,db/journals/access/access6.html#LiH18,https://doi.org/10.1109/ACCESS.2018.2814605 +George R. MacCartney,Millimeter-Wave Omnidirectional Path Loss Data for Small Cell 5G Channel Modeling.,2015,3,IEEE Access,,db/journals/access/access3.html#MacCartneyRSS15,https://doi.org/10.1109/ACCESS.2015.2465848 +Yusuf A. Sha'aban,Control Improvement Using MPC: A Case Study of pH Control for Brine Dechlorination.,2018,6,IEEE Access,,db/journals/access/access6.html#ShaabanTMML18,https://doi.org/10.1109/ACCESS.2018.2810813 +Ali Cagatay Cirik,Linear Transceiver Design for Full-Duplex Multi-Cell MIMO Systems.,2016,4,IEEE Access,,db/journals/access/access4.html#CirikTLMH16,https://doi.org/10.1109/ACCESS.2016.2603439 +Jilong Zhong,"Correction to ""Identification of Vital Nodes in Complex Network via Belief Propagation and Node Reinsertion"".",2018,6,IEEE Access,,db/journals/access/access6.html#ZhongZL18a,https://doi.org/10.1109/ACCESS.2018.2856903 +Fujun Zhao,A New Safety Assessment Method Based on Evidential Reasoning Rule With a Prewarning Function.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaoZHCHF18,https://doi.org/10.1109/ACCESS.2018.2815631 +O-Joun Lee,Towards Ontological Approach on Trust-Aware Ambient Services.,2017,5,IEEE Access,,db/journals/access/access5.html#LeeHJUL17,https://doi.org/10.1109/ACCESS.2017.2663407 +Wen Cao,Compact Conditional Joint Decision and Estimation for Joint Tracking and Identification With Performance Evaluation.,2018,6,IEEE Access,,db/journals/access/access6.html#CaoHBY18,https://doi.org/10.1109/ACCESS.2017.2787692 +Qammer H. Abbasi,Nano-Communication for Biomedical Applications: A Review on the State-of-the-Art From Physical Layers to Novel Networking Concepts.,2016,4,IEEE Access,,db/journals/access/access4.html#AbbasiYCJAQA16,https://doi.org/10.1109/ACCESS.2016.2593582 +Wenxiang Cong,X-Ray Fluorescence Computed Tomography With Polycapillary Focusing.,2014,2,IEEE Access,,db/journals/access/access2.html#CongXW14,https://doi.org/10.1109/ACCESS.2014.2359831 +Irfan Khan,Distributed Optimal Reactive Power Control of Power Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#KhanXSB18,https://doi.org/10.1109/ACCESS.2017.2779806 +Dongming Xiao,Power Balance of Starting Process for Pipe Belt Conveyor Based on Master-Slave Control.,2018,6,IEEE Access,,db/journals/access/access6.html#XiaoLH18,https://doi.org/10.1109/ACCESS.2018.2810258 +Tariq Aziz,PV Penetration Limits in Low Voltage Networks and Voltage Variations.,2017,5,IEEE Access,,db/journals/access/access5.html#AzizK17,https://doi.org/10.1109/ACCESS.2017.2747086 +Weimin Wu,CoolConferencing: Enabling Robust Peer-to-Peer Multi-Party Video Conferencing.,2017,5,IEEE Access,,db/journals/access/access5.html#WuMWWWT17,https://doi.org/10.1109/ACCESS.2017.2768798 +Hui Gao,Dual Hesitant Bipolar Fuzzy Hamacher Prioritized Aggregation Operators in Multiple Attribute Decision Making.,2018,6,IEEE Access,,db/journals/access/access6.html#GaoWH18,https://doi.org/10.1109/ACCESS.2017.2784963 +Erchong Liao,A Hierarchical Algorithm Based on Density Peaks Clustering and Ant Colony Optimization for Traveling Salesman Problem.,2018,6,IEEE Access,,db/journals/access/access6.html#LiaoL18,https://doi.org/10.1109/ACCESS.2018.2853129 +Chao Huang,Robustness Evaluation of Extended and Unscented Kalman Filter for Battery State of Charge Estimation.,2018,6,IEEE Access,,db/journals/access/access6.html#HuangWZWLW18,https://doi.org/10.1109/ACCESS.2018.2833858 +Ni Zhang,An Ontological Chinese Legal Consultation System.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangPYZG17,https://doi.org/10.1109/ACCESS.2017.2745208 +Zhenyu Wu,K-PdM: KPI-Oriented Machinery Deterioration Estimation Framework for Predictive Maintenance Using Cluster-Based Hidden Markov Model.,2018,6,IEEE Access,,db/journals/access/access6.html#WuLYLZJW18,https://doi.org/10.1109/ACCESS.2018.2859922 +Halil Yetgin,Network-Lifetime Maximization of Wireless Sensor Networks.,2015,3,IEEE Access,,db/journals/access/access3.html#YetginCEH15,https://doi.org/10.1109/ACCESS.2015.2493779 +Viju Raghupathi,Legal Decision Support: Exploring Big Data Analytics Approach to Modeling Pharma Patent Validity Cases.,2018,6,IEEE Access,,db/journals/access/access6.html#RaghupathiZR18,https://doi.org/10.1109/ACCESS.2018.2859052 +Xuechao Yang,A Secure Verifiable Ranked Choice Online Voting System Based on Homomorphic Encryption.,2018,6,IEEE Access,,db/journals/access/access6.html#YangYNKH18,https://doi.org/10.1109/ACCESS.2018.2817518 +Chi Zhang,A Low-Complexity Massive MIMO Precoding Algorithm Based on Chebyshev Iteration.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangLSYWW17,https://doi.org/10.1109/ACCESS.2017.2760881 +Marcus O. Durham,Does a Unified Energy Equation Contain the Higgs Field?,2013,1,IEEE Access,,db/journals/access/access1.html#DurhamD13,https://doi.org/10.1109/ACCESS.2013.2276623 +Nan Wu 0002,A Hybrid BP-EP-VMP Approach to Joint Channel Estimation and Decoding for FTN Signaling over Frequency Selective Fading Channels.,2017,5,IEEE Access,,db/journals/access/access5.html#WuYGK17,https://doi.org/10.1109/ACCESS.2017.2702571 +Ya Gao 0002,Heterogeneous Statistical QoS Provisioning Over Wireless Powered Sensor Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#GaoCZL17,https://doi.org/10.1109/ACCESS.2017.2694046 +Nayif Saleh,Energy-Efficient Architecture for Wireless Sensor Networks in Healthcare Applications.,2018,6,IEEE Access,,db/journals/access/access6.html#SalehKH18,https://doi.org/10.1109/ACCESS.2018.2789918 +Xin Zhong,Influence of Finite Apertures on Orthogonality and Completeness of Laguerre-Gaussian Beams.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhongZRHW18,https://doi.org/10.1109/ACCESS.2018.2806887 +Hongxing Ma,Sparse Coefficient-Based k-Nearest Neighbor Classification.,2017,5,IEEE Access,,db/journals/access/access5.html#MaGWKZ17,https://doi.org/10.1109/ACCESS.2017.2739807 +Hang Song,A Radar-Based Breast Cancer Detection System Using CMOS Integrated Circuits.,2015,3,IEEE Access,,db/journals/access/access3.html#SongKSASSWOWHTX15,https://doi.org/10.1109/ACCESS.2015.2496101 +Stephane M. Nlom,Cascaded PLC-VLC Channel: An Indoor Measurements Campaign.,2018,6,IEEE Access,,db/journals/access/access6.html#NlomNO18,https://doi.org/10.1109/ACCESS.2018.2831625 +Carlo Galiotto,Unlocking the Deployment of Spectrum Sharing With a Policy Enforcement Framework.,2018,6,IEEE Access,,db/journals/access/access6.html#GaliottoPVBMP18,https://doi.org/10.1109/ACCESS.2018.2799244 +Hua-Wei Zhou,Array Synthesis for Optimal Microwave Power Transmission in the Presence of Excitation Errors.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhouYR18,https://doi.org/10.1109/ACCESS.2018.2834947 +Panbao Wang,Frequency Division Based Coordinated Control of Three-Port Converter Interfaced Hybrid Energy Storage Systems in Autonomous DC Microgrids.,2018,6,IEEE Access,,db/journals/access/access6.html#WangLWX18,https://doi.org/10.1109/ACCESS.2018.2830420 +Yanqiang Yang,Classification of Methods in the SINS/CNS Integration Navigation System.,2018,6,IEEE Access,,db/journals/access/access6.html#YangZLZ18,https://doi.org/10.1109/ACCESS.2017.2787424 +Zhe Yang,A Survey of Collaborative Filtering-Based Recommender Systems for Mobile Internet Applications.,2016,4,IEEE Access,,db/journals/access/access4.html#YangWZWL16,https://doi.org/10.1109/ACCESS.2016.2573314 +Jun Chu,Object Detection Based on Multi-Layer Convolution Feature Fusion and Online Hard Example Mining.,2018,6,IEEE Access,,db/journals/access/access6.html#ChuGL18,https://doi.org/10.1109/ACCESS.2018.2815149 +Jing Xu 0003,Probabilistic Robust Secure Beamforming in MISO Channels With Imperfect LCSI and Statistical ECSI.,2017,5,IEEE Access,,db/journals/access/access5.html#XuXX17,https://doi.org/10.1109/ACCESS.2017.2712569 +Jongho Won,Certificateless Cryptographic Protocols for Efficient Drone-Based Smart City Applications.,2017,5,IEEE Access,,db/journals/access/access5.html#WonSB17,https://doi.org/10.1109/ACCESS.2017.2684128 +Jianyun Lu,An Effective Algorithm Based on Density Clustering Framework.,2017,5,IEEE Access,,db/journals/access/access5.html#LuZ17,https://doi.org/10.1109/ACCESS.2017.2688477 +Zhengjun Liu,An Improved Negative Selection Algorithm Based on Subspace Density Seeking.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuLYY17,https://doi.org/10.1109/ACCESS.2017.2723621 +Yunxia Chen,Life Cycle Prediction Model of Safety Vent Based on Two-Phase Degradation Process.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenGZ18,https://doi.org/10.1109/ACCESS.2018.2809043 +Long Li 0005,A Ciphertext-Policy Attribute-Based Encryption Based on an Ordered Binary Decision Diagram.,2017,5,IEEE Access,,db/journals/access/access5.html#LiGCXLQ17,https://doi.org/10.1109/ACCESS.2017.2651904 +Yong Yang 0001,A Hybrid Method for Multi-Focus Image Fusion Based on Fast Discrete Curvelet Transform.,2017,5,IEEE Access,,db/journals/access/access5.html#YangTHLF17,https://doi.org/10.1109/ACCESS.2017.2698217 +Sunil Kumar Singh,A Survey on Successors of LEACH Protocol.,2017,5,IEEE Access,,db/journals/access/access5.html#SinghKS17,https://doi.org/10.1109/ACCESS.2017.2666082 +Umair F. Siddiqi,A Game Theory Based Post-Processing Method to Enhance VLSI Global Routers.,2017,5,IEEE Access,,db/journals/access/access5.html#SiddiqiS17,https://doi.org/10.1109/ACCESS.2017.2665601 +Yuyang Peng,A Cooperative Transmission Strategy for Body-Area Networks in Healthcare Systems.,2016,4,IEEE Access,,db/journals/access/access4.html#PengP16,https://doi.org/10.1109/ACCESS.2016.2635695 +Zelong Shao,A Comparative Study on Radar Interferometry for Vibrations Monitoring on Different Types of Bridges.,2018,6,IEEE Access,,db/journals/access/access6.html#ShaoZLJ18,https://doi.org/10.1109/ACCESS.2018.2839688 +Chang Ha Lee,Location-Aware Speakers for the Virtual Reality Environments.,2017,5,IEEE Access,,db/journals/access/access5.html#Lee17,https://doi.org/10.1109/ACCESS.2017.2672556 +Jianping Zheng,A Semidefinite Relaxation Approach to OFDM-IM Detection in Rapidly Time-Varying Channels.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhengL18,https://doi.org/10.1109/ACCESS.2018.2814214 +Bing-Fei Wu,Motion Resistant Image-Photoplethysmography Based on Spectral Peak Tracking Algorithm.,2018,6,IEEE Access,,db/journals/access/access6.html#WuHLCTW18,https://doi.org/10.1109/ACCESS.2018.2828133 +Remigiusz Wisniewski,Dynamic Partial Reconfiguration of Concurrent Control Systems Specified by Petri Nets and Implemented in Xilinx FPGA Devices.,2018,6,IEEE Access,,db/journals/access/access6.html#Wisniewski18,https://doi.org/10.1109/ACCESS.2018.2836858 +Qing Yang 0003,An Architecture of Cloud-Assisted Information Dissemination in Vehicular Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#YangZW16,https://doi.org/10.1109/ACCESS.2016.2572206 +Yuntao Ju,Three-Phase Steady-State Model of Doubly Fed Induction Generator Considering Various Rotor Speeds.,2016,4,IEEE Access,,db/journals/access/access4.html#JuGWLW16,https://doi.org/10.1109/ACCESS.2016.2646683 +Muhammad Bilal Qureshi,Grid Resource Allocation for Real-Time Data-Intensive Tasks.,2017,5,IEEE Access,,db/journals/access/access5.html#QureshiAM17,https://doi.org/10.1109/ACCESS.2017.2760801 +Changzhen Li,V2V Radio Channel Performance Based on Measurements in Ramp Scenarios at 5.9 GHz.,2018,6,IEEE Access,,db/journals/access/access6.html#LiYYLSCC18,https://doi.org/10.1109/ACCESS.2017.2788399 +Weizhong Qiang,CloudVMI: A Cloud-Oriented Writable Virtual Machine Introspection.,2017,5,IEEE Access,,db/journals/access/access5.html#QiangXDZJ17,https://doi.org/10.1109/ACCESS.2017.2758356 +Zhiyu Qu,Radar Signal Intra-Pulse Modulation Recognition Based on Convolutional Neural Network.,2018,6,IEEE Access,,db/journals/access/access6.html#QuMD18,https://doi.org/10.1109/ACCESS.2018.2864347 +Lei Lei 0004,Mode Selection and Resource Allocation in Device-to-Device Communications With User Arrivals and Departures.,2016,4,IEEE Access,,db/journals/access/access4.html#LeiHZ16,https://doi.org/10.1109/ACCESS.2016.2577020 +Shuchen Li,Conference Paper Recommendation for Academic Conferences.,2018,6,IEEE Access,,db/journals/access/access6.html#LiBSC18,https://doi.org/10.1109/ACCESS.2018.2817497 +Peng Zhao 0001,On Minimizing Energy Cost in Internet-Scale Systems With Dynamic Data.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhaoYYYL17,https://doi.org/10.1109/ACCESS.2017.2725939 +Zheng Chen 0004,Modular Development of Master-Slave Asymmetric Teleoperation Systems With a Novel Workspace Mapping Algorithm.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenYYYH18,https://doi.org/10.1109/ACCESS.2018.2809860 +Alexey Tyshko,An Increase of a Down-Hole Nuclear Magnetic Resonance Tool's Reliability and Accuracy by the Cancellation of a Multi-Module DC/AC Converter's Output's Higher Harmonics.,2016,4,IEEE Access,,db/journals/access/access4.html#TyshkoBP16,https://doi.org/10.1109/ACCESS.2016.2624498 +Hui Wang 0021,Energy-Aware Dynamic Virtual Machine Consolidation for Cloud Datacenters.,2018,6,IEEE Access,,db/journals/access/access6.html#WangT18,https://doi.org/10.1109/ACCESS.2018.2813541 +Jun-Pyo Hong,Network Throughput Gain of Multicast With User Caching in Heavy Traffic Downlink.,2018,6,IEEE Access,,db/journals/access/access6.html#HongCL18,https://doi.org/10.1109/ACCESS.2018.2834922 +Jong-Hyouk Lee,BIDaaS: Blockchain Based ID As a Service.,2018,6,IEEE Access,,db/journals/access/access6.html#Lee18,https://doi.org/10.1109/ACCESS.2017.2782733 +Bo Zhang 0004,A Hybrid Trust Evaluation Framework for E-Commerce in Online Social Network: A Factor Enrichment Perspective.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangYLPH17,https://doi.org/10.1109/ACCESS.2017.2692249 +Chan S. Yang,Channel Access Scheme With Alignment Reference Interval Adaptation (ARIA) for Frequency Reuse in Unlicensed Band LTE: Fuzzy Q-Learning Approach.,2018,6,IEEE Access,,db/journals/access/access6.html#YangKMPK18,https://doi.org/10.1109/ACCESS.2018.2832448 +Kaveh Pahlavan,A Novel Cyber Physical System for 3-D Imaging of the Small Intestine In Vivo.,2015,3,IEEE Access,,db/journals/access/access3.html#PahlavanGCBMAKS15,https://doi.org/10.1109/ACCESS.2015.2508003 +Mehrnaz Fani,Soccer Video Structure Analysis by Parallel Feature Fusion Network and Hidden-to-Observable Transferring Markov Model.,2017,5,IEEE Access,,db/journals/access/access5.html#FaniYCW17,https://doi.org/10.1109/ACCESS.2017.2769140 +Rabia Jafri,Visual and Infrared Sensor Data-Based Obstacle Detection for the Visually Impaired Using the Google Project Tango Tablet Development Kit and the Unity Engine.,2018,6,IEEE Access,,db/journals/access/access6.html#JafriCAA18,https://doi.org/10.1109/ACCESS.2017.2766579 +Ka Ming Mak,Circularly Polarized Patch Antenna for Future 5G Mobile Phones.,2014,2,IEEE Access,,db/journals/access/access2.html#MakLLC14,https://doi.org/10.1109/ACCESS.2014.2382111 +Yung-Hung Wang,Uniform Phase Empirical Mode Decomposition: An Optimal Hybridization of Masking Signal and Ensemble Approaches.,2018,6,IEEE Access,,db/journals/access/access6.html#WangHL18,https://doi.org/10.1109/ACCESS.2018.2847634 +Zhuofeng Zhao,A Hybrid Processing System for Large-Scale Traffic Sensor Data.,2015,3,IEEE Access,,db/journals/access/access3.html#ZhaoDWH15,https://doi.org/10.1109/ACCESS.2015.2500258 +Anup Das 0004,Theoretical and Experimental Comparison of Off-Grid Sparse Bayesian Direction-of-Arrival Estimation Algorithms.,2017,5,IEEE Access,,db/journals/access/access5.html#Das17,https://doi.org/10.1109/ACCESS.2017.2747153 +Xiaomeng Zhang,BFCO: A BPSO-Based Fine-Grained Communication Optimization Method for MPSoC.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangHYJY18,https://doi.org/10.1109/ACCESS.2018.2813002 +Sheikh Waqas Akhtar,Improving the Robustness of Neural Networks Using K-Support Norm Based Adversarial Training.,2016,4,IEEE Access,,db/journals/access/access4.html#AkhtarRAKRCY16,https://doi.org/10.1109/ACCESS.2016.2643678 +Young Yoon,Bluff Forwarding: A Practical Protocol for Delivering Refreshed Symmetric Keys on a Multi-Path Big Data Ingestion System.,2018,6,IEEE Access,,db/journals/access/access6.html#YoonK18,https://doi.org/10.1109/ACCESS.2018.2828840 +Abdulqader Othman Hamadameen,A Compromise Solution for the Fully Fuzzy Multiobjective Linear Programming Problems.,2018,6,IEEE Access,,db/journals/access/access6.html#HamadameenH18,https://doi.org/10.1109/ACCESS.2018.2863566 +Johan Meyer,Solar Powered Water Security: An Enabler for Rural Development in Limpopo South Africa.,2018,6,IEEE Access,,db/journals/access/access6.html#MeyerS18,https://doi.org/10.1109/ACCESS.2018.2805367 +Marta Gomez-Barrero,Privacy-Preserving Comparison of Variable-Length Data With Application to Biometric Template Protection.,2017,5,IEEE Access,,db/journals/access/access5.html#Gomez-BarreroGM17,https://doi.org/10.1109/ACCESS.2017.2691578 +Xingyuan Wang,Spatiotemporal Chaos in Coupled Logistic Map Lattice With Dynamic Coupling Coefficient and its Application in Image Encryption.,2018,6,IEEE Access,,db/journals/access/access6.html#WangLWZZ18,https://doi.org/10.1109/ACCESS.2018.2855726 +Xintong Lu,SDR Implementation of a Real-Time Testbed for Future Multi-Antenna Smartphone Applications.,2017,5,IEEE Access,,db/journals/access/access5.html#LuNJWL17,https://doi.org/10.1109/ACCESS.2017.2751622 +Guochen Bai,Real-Time Robust Noncontact Heart Rate Monitoring With a Camera.,2018,6,IEEE Access,,db/journals/access/access6.html#BaiHL18,https://doi.org/10.1109/ACCESS.2018.2837086 +Ahmed Alkhateeb,Deep Learning Coordinated Beamforming for Highly-Mobile Millimeter Wave Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#AlkhateebAVLQT18,https://doi.org/10.1109/ACCESS.2018.2850226 +Dianlei Xu,Joint Topology Control and Resource Allocation for Network Coding Enabled D2D Traffic Offloading.,2017,5,IEEE Access,,db/journals/access/access5.html#XuLLAH17,https://doi.org/10.1109/ACCESS.2017.2753284 +Yunkai Zhu,Adaptive Global Fast Terminal Sliding Mode Control of Grid-connected Photovoltaic System Using Fuzzy Neural Network Approach.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhuF17,https://doi.org/10.1109/ACCESS.2017.2707668 +Zhenfeng Wang,Vehicle System State Estimation Based on Adaptive Unscented Kalman Filtering Combing With Road Classification.,2017,5,IEEE Access,,db/journals/access/access5.html#WangQGD17,https://doi.org/10.1109/ACCESS.2017.2771204 +Wen Chen 0004,IEEE Access Special Section Editorial: High Mobility 5G LTE-V: Challenges and Solutions.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenHMTS18,https://doi.org/10.1109/ACCESS.2018.2855266 +Lei Ge,Beamwidth Reconfigurable Magneto-Electric Dipole Antenna Based on Tunable Strip Grating Reflector.,2016,4,IEEE Access,,db/journals/access/access4.html#GeL16,https://doi.org/10.1109/ACCESS.2016.2615947 +Wenlong Chen,Constrained Random Routing Mechanism for Source Privacy Protection in WSNs.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenZHTS17,https://doi.org/10.1109/ACCESS.2017.2752179 +Wenming Cao,Supplementary Virtual Keypoints of Weight-Based Correspondences for Occluded Object Tracking.,2018,6,IEEE Access,,db/journals/access/access6.html#CaoLHCH18,https://doi.org/10.1109/ACCESS.2018.2797421 +Guobing Qian,Generalized Complex Correntropy: Application to Adaptive Filtering of Complex Data.,2018,6,IEEE Access,,db/journals/access/access6.html#QianW18,https://doi.org/10.1109/ACCESS.2018.2821141 +Kai Peng,Clustering Approach Based on Mini Batch Kmeans for Intrusion Detection System Over Big Data.,2018,6,IEEE Access,,db/journals/access/access6.html#PengLH18,https://doi.org/10.1109/ACCESS.2018.2810267 +Gerardo Santillan Martinez,Automatic Generation of a High-Fidelity Dynamic Thermal-Hydraulic Process Simulation Model From a 3D Plant Model.,2018,6,IEEE Access,,db/journals/access/access6.html#MartinezSKLV18,https://doi.org/10.1109/ACCESS.2018.2865206 +Xuefei Wu,Synchronization of Two Nonidentical Complex Dynamical Networks via Periodically Intermittent Pinning.,2018,6,IEEE Access,,db/journals/access/access6.html#WuN18,https://doi.org/10.1109/ACCESS.2017.2758438 +Atefeh Hajijamali Arani,Minimizing Base Stations' ON/OFF Switchings in Self-Organizing Heterogeneous Networks: A Distributed Satisfactory Framework.,2017,5,IEEE Access,,db/journals/access/access5.html#AraniOMA17,https://doi.org/10.1109/ACCESS.2017.2777914 +Mian Qin,Enhancing Security of Primary User in Underlay Cognitive Radio Networks With Secondary User Selection.,2018,6,IEEE Access,,db/journals/access/access6.html#QinYDL18,https://doi.org/10.1109/ACCESS.2018.2841875 +Hazem M. Raafat,Fog Intelligence for Real-Time IoT Sensor Data Analytics.,2017,5,IEEE Access,,db/journals/access/access5.html#RaafatHEETMG17,https://doi.org/10.1109/ACCESS.2017.2754538 +Francisco A. X. Da Mota,Localization and Navigation for Autonomous Mobile Robots Using Petri Nets in Indoor Environments.,2018,6,IEEE Access,,db/journals/access/access6.html#MotaRRAA18,https://doi.org/10.1109/ACCESS.2018.2846554 +Cai Qin,A Distributed Interference Alignment Approach Based on Grouping in Heterogeneous Network.,2018,6,IEEE Access,,db/journals/access/access6.html#QinZWPWZ18,https://doi.org/10.1109/ACCESS.2017.2783907 +Qun Liu,Moment-Based Spectral Analysis of Large-Scale Generalized Random Graphs.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuDW17,https://doi.org/10.1109/ACCESS.2017.2704880 +Yin Li,N-Term Karatsuba Algorithm and its Application to Multiplier Designs for Special Trinomials.,2018,6,IEEE Access,,db/journals/access/access6.html#LiZGQ18,https://doi.org/10.1109/ACCESS.2018.2859451 +Hongxiang Shao,QoE-Aware Downlink User-Cell Association in Small Cell Networks: A Transfer-matching Game Theoretic Solution With Peer Effects.,2016,4,IEEE Access,,db/journals/access/access4.html#ShaoZSZX16,https://doi.org/10.1109/ACCESS.2016.2628382 +Zeeshan Siddiqui,Security Analysis of Smartphone and Cloud Computing Authentication Frameworks and Protocols.,2018,6,IEEE Access,,db/journals/access/access6.html#SiddiquiTK18,https://doi.org/10.1109/ACCESS.2018.2845299 +Tingxi Wen,Deep Convolution Neural Network and Autoencoders-Based Unsupervised Feature Learning of EEG Signals.,2018,6,IEEE Access,,db/journals/access/access6.html#WenZ18,https://doi.org/10.1109/ACCESS.2018.2833746 +Marcos Martinez-Diaz,The DooDB Graphical Password Database: Data Analysis and Benchmark Results.,2013,1,IEEE Access,,db/journals/access/access1.html#Martinez-DiazFG13,https://doi.org/10.1109/ACCESS.2013.2281773 +Mingyang Zhang,Pedestrian Dead-Reckoning Indoor Localization Based on OS-ELM.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangWCYGZ18,https://doi.org/10.1109/ACCESS.2018.2791579 +Minh-Nghia Nguyen,Secure Cooperative Half-Duplex Cognitive Radio Networks With K-th Best Relay Selection.,2017,5,IEEE Access,,db/journals/access/access5.html#NguyenNCNS17,https://doi.org/10.1109/ACCESS.2017.2686984 +Mohammad Ali Khosh Kholghi,Energy-Efficient Algorithms for Dynamic Virtual Machine Consolidation in Cloud Data Centers.,2017,5,IEEE Access,,db/journals/access/access5.html#KholghiDASO17,https://doi.org/10.1109/ACCESS.2017.2711043 +Elisabeth Leiss-Holzinger,A Localized Analysis of the Sterilization Process by Direct Steam Monitoring.,2017,5,IEEE Access,,db/journals/access/access5.html#Leiss-Holzinger17,https://doi.org/10.1109/ACCESS.2017.2753940 +Yiran Shen,CS-CNN: Enabling Robust and Efficient Convolutional Neural Networks Inference for Internet-of-Things Applications.,2018,6,IEEE Access,,db/journals/access/access6.html#ShenHYYWLW18,https://doi.org/10.1109/ACCESS.2018.2810264 +Mingrui Lao,Cross-Modal Multistep Fusion Network With Co-Attention for Visual Question Answering.,2018,6,IEEE Access,,db/journals/access/access6.html#LaoGWZ18,https://doi.org/10.1109/ACCESS.2018.2844789 +Bin Ren,Link Performance Estimation Technique for PDMA Uplink System.,2017,5,IEEE Access,,db/journals/access/access5.html#RenWKDYTN17,https://doi.org/10.1109/ACCESS.2017.2728685 +Md. Noor-A.-Rahim,Performance Analysis of IEEE 802.11p Safety Message Broadcast With and Without Relaying at Road Intersection.,2018,6,IEEE Access,,db/journals/access/access6.html#Noor-A-RahimAN18,https://doi.org/10.1109/ACCESS.2018.2829897 +Shih-Lun Chen,A Power-Efficient Adaptive Fuzzy Resolution Control System for Wireless Body Sensor Networks.,2015,3,IEEE Access,,db/journals/access/access3.html#Chen15,https://doi.org/10.1109/ACCESS.2015.2437897 +To Xuan Dinh,Disturbance Observer Based Finite Time Trajectory Tracking Control for a 3 DOF Hydraulic Manipulator Including Actuator Dynamics.,2018,6,IEEE Access,,db/journals/access/access6.html#DinhTTA18,https://doi.org/10.1109/ACCESS.2018.2848240 +Yanlei Wu,Input-to-State Stability Analysis for Stochastic Delayed Systems With Markovian Switching.,2017,5,IEEE Access,,db/journals/access/access5.html#WuLWZC17,https://doi.org/10.1109/ACCESS.2017.2759304 +Ali A. Haghighi,Stochastic QoE-Aware Optimization in Cloud-Based Content Delivery Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#HaghighiSS18a,https://doi.org/10.1109/ACCESS.2018.2845740 +Dario J. Villarreal,A Perturbation Mechanism for Investigations of Phase-Dependent Behavior in Human Locomotion.,2016,4,IEEE Access,,db/journals/access/access4.html#VillarrealQG16,https://doi.org/10.1109/ACCESS.2016.2535661 +Yanyan Cai,Numerical Study on the Evolution of Mesoscopic Properties and Permeability in Sandstone Under Hydromechanical Coupling Conditions Involving Industrial Internet of Things.,2018,6,IEEE Access,,db/journals/access/access6.html#CaiCYZ18,https://doi.org/10.1109/ACCESS.2018.2799941 +Yan Liu 0034,Control Allocation for an Over-Actuated Aircraft Based on Within-Visual-Range Air Combat Agility.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuGS18,https://doi.org/10.1109/ACCESS.2018.2814958 +Yongli Zhao,Crosstalk-Aware Spectrum Defragmentation Based on Spectrum Compactness in Space Division Multiplexing Enabled Elastic Optical Networks With Multicore Fiber.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaoHZYWZ18,https://doi.org/10.1109/ACCESS.2018.2795102 +Zhixia Xu,Characteristic Mode Analysis of Complex Spoof Localized Surface Plasmon Resonators.,2018,6,IEEE Access,,db/journals/access/access6.html#XuLLZY18,https://doi.org/10.1109/ACCESS.2017.2785809 +Khaled M. Rabie,Enhanced Amplify-and-Forward Relaying in Non-Gaussian PLC Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#RabieA17,https://doi.org/10.1109/ACCESS.2017.2680599 +Felipe A. P. de Figueiredo,Channel Estimation for Massive MIMO TDD Systems Assuming Pilot Contamination and Frequency Selective Fading.,2017,5,IEEE Access,,db/journals/access/access5.html#FigueiredoCMF17,https://doi.org/10.1109/ACCESS.2017.2749602 +Xingyuan Wang,An Image Encryption Algorithm Based on Josephus Traversing and Mixed Chaotic Map.,2018,6,IEEE Access,,db/journals/access/access6.html#WangZZ18,https://doi.org/10.1109/ACCESS.2018.2805847 +Muhammad Awais Azam,Efficient Joint User Association and Resource Allocation for Cloud Radio Access Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#AzamANIEAK17,https://doi.org/10.1109/ACCESS.2017.2663758 +Francesco Beritelli,Rainfall Estimation Based on the Intensity of the Received Signal in a LTE/4G Mobile Terminal by Using a Probabilistic Neural Network.,2018,6,IEEE Access,,db/journals/access/access6.html#BeritelliCSNS18,https://doi.org/10.1109/ACCESS.2018.2839699 +Zhiao Zhao,Statistical Analysis of Time-Varying Characteristics of Testability Index Based on NHPP.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhaoZLQ17,https://doi.org/10.1109/ACCESS.2017.2688698 +Jing Li 0020,Adaptive Tracking Control Approach With Prespecified Accuracy for Uncertain Nonlinearly Parameterized Switching Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#LiYW18,https://doi.org/10.1109/ACCESS.2017.2788446 +Erick A. Padilla-Garcia,Concurrent Optimization for Selection and Control of AC Servomotors on the Powertrain of Industrial Robots.,2018,6,IEEE Access,,db/journals/access/access6.html#Padilla-GarciaR18,https://doi.org/10.1109/ACCESS.2018.2840537 +Dmitri Moltchanov,Statistical Traffic Properties and Model Inference for Shared Cache Interface in Multi-Core CPUs.,2016,4,IEEE Access,,db/journals/access/access4.html#MoltchanovAKBKP16,https://doi.org/10.1109/ACCESS.2016.2603169 +Caixia Zheng,Multicriteria-Based Active Discriminative Dictionary Learning for Scene Recognition.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhengYQLBWK18,https://doi.org/10.1109/ACCESS.2017.2786672 +Bing Hu 0002,Highest Rank First: A New Class of Single-Iteration Scheduling Algorithms for Input-Queued Switches.,2018,6,IEEE Access,,db/journals/access/access6.html#HuFYJ18,https://doi.org/10.1109/ACCESS.2018.2800686 +Anton Kruger,Bridge-Mounted River Stage Sensors (BMRSS).,2016,4,IEEE Access,,db/journals/access/access4.html#KrugerKNCG16,https://doi.org/10.1109/ACCESS.2016.2631172 +Meng Han,Cognitive Approach for Location Privacy Protection.,2018,6,IEEE Access,,db/journals/access/access6.html#HanLXWDLY18,https://doi.org/10.1109/ACCESS.2018.2805464 +Damodhar Reddy,Design of RBFN Controller Based Boost Type Vienna Rectifier for Grid-Tied Wind Energy Conversion System.,2018,6,IEEE Access,,db/journals/access/access6.html#ReddyR18,https://doi.org/10.1109/ACCESS.2017.2787567 +Yu Zheng 0008,Robust MPC-Based Fault-Tolerant Control for Trajectory Tracking of Surface Vessel.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhengLL18,https://doi.org/10.1109/ACCESS.2018.2817345 +Li-Xin Wei,A Hybrid Multiobjective Particle Swarm Optimization Algorithm Based on R2 Indicator.,2018,6,IEEE Access,,db/journals/access/access6.html#WeiLFSH18,https://doi.org/10.1109/ACCESS.2018.2812701 +Abdulsalam Yassine,Smart Meters Big Data: Game Theoretic Model for Fair Data Sharing in Deregulated Smart Grids.,2015,3,IEEE Access,,db/journals/access/access3.html#YassineSS15,https://doi.org/10.1109/ACCESS.2015.2504503 +Janghyeok Yoon,Tracing the Evolving Trends in Electronic Skin (e-Skin) Technology Using Growth Curve and Technology Position-Based Patent Bibliometrics.,2018,6,IEEE Access,,db/journals/access/access6.html#YoonJLK18,https://doi.org/10.1109/ACCESS.2018.2834160 +Donghui Hu,A Novel Image Steganography Method via Deep Convolutional Generative Adversarial Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#HuWJZL18,https://doi.org/10.1109/ACCESS.2018.2852771 +Rahul Kumar Chaurasiya,A Novel Weighted Edit Distance-Based Spelling Correction Approach for Improving the Reliability of Devanagari Script-Based P300 Speller System.,2016,4,IEEE Access,,db/journals/access/access4.html#ChaurasiyaLG16,https://doi.org/10.1109/ACCESS.2016.2614494 +Xinshui Wang,Sum Rate Analysis and Power Allocation for Massive MIMO Systems With Mismatch Channel.,2018,6,IEEE Access,,db/journals/access/access6.html#WangWNSM18,https://doi.org/10.1109/ACCESS.2018.2811040 +Osama Elnahas,Game Theoretic Approaches for Cooperative Spectrum Sensing in Energy-Harvesting Cognitive Radio Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ElnahasEMF18,https://doi.org/10.1109/ACCESS.2018.2810107 +Mu Li,Impact of Correlated Fading Channels on Cognitive Relay Networks With Generalized Relay Selection.,2018,6,IEEE Access,,db/journals/access/access6.html#LiYHW18,https://doi.org/10.1109/ACCESS.2017.2762348 +Xiaolin Liang,Doppler Power Spectra for 3D Vehicle-to-Vehicle Channels With Moving Scatterers.,2018,6,IEEE Access,,db/journals/access/access6.html#LiangCZ18,https://doi.org/10.1109/ACCESS.2018.2859362 +Xiaoying Jia 0002,Efficient Revocable ID-Based Signature With Cloud Revocation Server.,2017,5,IEEE Access,,db/journals/access/access5.html#JiaHZL17,https://doi.org/10.1109/ACCESS.2017.2676021 +Shun-Feng Su,Industry 4.0: A Special Section in IEEE Access.,2017,5,IEEE Access,,db/journals/access/access5.html#SuRZECK17,https://doi.org/10.1109/ACCESS.2017.2704758 +Xin Chen 0004,Frequency-Tracking Clock Servo for Time Synchronization in Networked Motion Control Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenLWTL17,https://doi.org/10.1109/ACCESS.2017.2715878 +Yang Shi 0002,Protecting Encrypted Signature Functions Against Intrusions on Computing Devices by Obfuscation.,2016,4,IEEE Access,,db/journals/access/access4.html#ShiHFZL16,https://doi.org/10.1109/ACCESS.2016.2604289 +Xianming Lang,Leak Detection and Location of Pipelines Based on LMD and Least Squares Twin Support Vector Machine.,2017,5,IEEE Access,,db/journals/access/access5.html#LangLHRL17,https://doi.org/10.1109/ACCESS.2017.2703122 +Tao Wang 0001,Reordered Elias Gamma Error Correction Codes for the Near-Capacity Transmission of Multimedia Information.,2016,4,IEEE Access,,db/journals/access/access4.html#WangBZMH16,https://doi.org/10.1109/ACCESS.2016.2604201 +Rubén Tolosana,Exploring Recurrent Neural Networks for On-Line Handwritten Signature Biometrics.,2018,6,IEEE Access,,db/journals/access/access6.html#TolosanaVFO18,https://doi.org/10.1109/ACCESS.2018.2793966 +Muhammad Irfan 0004,G-AETCAM: Gate-Based Area-Efficient Ternary Content-Addressable Memory on FPGA.,2017,5,IEEE Access,,db/journals/access/access5.html#IrfanU17,https://doi.org/10.1109/ACCESS.2017.2756702 +Ke Wu,Sub-Pixel Mapping Based on MAP Model and Spatial Attraction Theory for Remotely Sensed Image.,2017,5,IEEE Access,,db/journals/access/access5.html#WuDHW17,https://doi.org/10.1109/ACCESS.2017.2768543 +Fasheng Zhou,A Cache-Aided Communication Scheme for Downlink Coordinated Multipoint Transmission.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhouFWLTC18,https://doi.org/10.1109/ACCESS.2017.2779123 +Junqi Xu,Dynamic Modeling and Adaptive Sliding Mode Control for a Maglev Train System Based on a Magnetic Flux Observer.,2018,6,IEEE Access,,db/journals/access/access6.html#XuSGMLQ18,https://doi.org/10.1109/ACCESS.2018.2836348 +Rui Xue,Adaptive Coded Modulation Based on Continuous Phase Modulation for Inter-Satellite Links of Global Navigation Satellite Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#XueYC18,https://doi.org/10.1109/ACCESS.2018.2825255 +Yupeng Wang,Coordinated Scheduling Algorithm for System Utility Maximization With Heterogeneous QoS Requirements in Wireless Relay Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#WangSCC16,https://doi.org/10.1109/ACCESS.2016.2628383 +Chong Wei,Look-Ahead Insertion Policy for a Shared-Taxi System Based on Reinforcement Learning.,2018,6,IEEE Access,,db/journals/access/access6.html#WeiWYS18,https://doi.org/10.1109/ACCESS.2017.2769666 +Ming Zhan,Channel Coding for High Performance Wireless Control in Critical Applications: Survey and Analysis.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhanPDX18,https://doi.org/10.1109/ACCESS.2018.2842231 +Shoulin Yin,Large Scale Remote Sensing Image Segmentation Based on Fuzzy Region Competition and Gaussian Mixture Model.,2018,6,IEEE Access,,db/journals/access/access6.html#YinZK18,https://doi.org/10.1109/ACCESS.2018.2834960 +Wei Wang 0021,IEEE Access Special Section Editorial: Emerging Cloud-Based Wireless Communications and Networks.,2015,3,IEEE Access,,db/journals/access/access3.html#WangLCYS15,https://doi.org/10.1109/ACCESS.2016.2517298 +Li-hui Luo,System for Land Surface Model Applications Based on Cloud Computing.,2017,5,IEEE Access,,db/journals/access/access5.html#LuoZMZ17,https://doi.org/10.1109/ACCESS.2017.2718002 +Lijuan Xiang,A Crossed DD Geometry and Its Double-Coil Excitation Method for Electric Vehicle Dynamic Wireless Charging Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#XiangLTT18,https://doi.org/10.1109/ACCESS.2018.2864999 +Opeyemi A. Osanaiye,From Cloud to Fog Computing: A Review and a Conceptual Live VM Migration Framework.,2017,5,IEEE Access,,db/journals/access/access5.html#OsanaiyeCYLCD17,https://doi.org/10.1109/ACCESS.2017.2692960 +Vanessa Fernandez-Cavero,A Comparison of Techniques for Fault Detection in Inverter-Fed Induction Motors in Transient Regime.,2017,5,IEEE Access,,db/journals/access/access5.html#Fernandez-Cavero17,https://doi.org/10.1109/ACCESS.2017.2702643 +Qasim Umar Khan,Two Novel Blind Equalization Algorithms for Rectangular Quadrature Amplitude Modulation Constellations.,2016,4,IEEE Access,,db/journals/access/access4.html#KhanVS16,https://doi.org/10.1109/ACCESS.2016.2639538 +Yongtang Bao,A Survey of Image-Based Techniques for Hair Modeling.,2018,6,IEEE Access,,db/journals/access/access6.html#BaoQ18,https://doi.org/10.1109/ACCESS.2018.2818795 +Saeed Ahmed,Feature Selection-Based Detection of Covert Cyber Deception Assaults in Smart Grid Communications Networks Using Machine Learning.,2018,6,IEEE Access,,db/journals/access/access6.html#AhmedLHK18,https://doi.org/10.1109/ACCESS.2018.2835527 +Ziaul Haq Abbas,Analysis of Load Balancing and Interference Management in Heterogeneous Cellular Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#AbbasMJ17,https://doi.org/10.1109/ACCESS.2017.2732498 +Shen Qian,Fading Correlations for Wireless Cooperative Communications: Diversity and Coding Gains.,2017,5,IEEE Access,,db/journals/access/access5.html#QianHJM17,https://doi.org/10.1109/ACCESS.2017.2699785 +Stefan Schwarz,Pushing the Limits of LTE: A Survey on Research Enhancing the Standard.,2013,1,IEEE Access,,db/journals/access/access1.html#SchwarzISTWR13,https://doi.org/10.1109/ACCESS.2013.2260371 +Frank Po-Chen Lin,An Efficient Construction of Confidence Regions via Swarm Intelligence and Its Application in Target Localization.,2018,6,IEEE Access,,db/journals/access/access6.html#LinP18,https://doi.org/10.1109/ACCESS.2017.2785789 +Shih-Cheng Lin,An Accurate Filtenna Synthesis Approach Based on Load-Resistance Flattening and Impedance-Transforming Tapped-Feed Techniques.,2018,6,IEEE Access,,db/journals/access/access6.html#LinCCC18,https://doi.org/10.1109/ACCESS.2018.2829841 +Yang Li,A CFAR Detector Based on a Robust Combined Method With Spatial Information and Sparsity Regularization in Non-Homogeneous Weibull Clutter.,2018,6,IEEE Access,,db/journals/access/access6.html#LiWZ18,https://doi.org/10.1109/ACCESS.2018.2800058 +M. Majid Butt,IEEE Access Special Section Editorial: Physical and Medium Access Control Layer Advances in 5G Wireless Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#ButtPSLQG17,https://doi.org/10.1109/ACCESS.2017.2783020 +Samer Samarah,An Efficient Activity Recognition Framework: Toward Privacy-Sensitive Health Data Sensing.,2017,5,IEEE Access,,db/journals/access/access5.html#SamarahZARAA17,https://doi.org/10.1109/ACCESS.2017.2685531 +Chengdong Yang,Synchronization of Nonlinear Complex Spatio-Temporal Networks Using Adaptive Boundary Control and Pinning Adaptive Boundary Control.,2018,6,IEEE Access,,db/journals/access/access6.html#YangHLZQA18,https://doi.org/10.1109/ACCESS.2018.2852489 +Ke Zhang 0005,Age Group and Gender Estimation in the Wild With Deep RoR Architecture.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangGGSYHZL17,https://doi.org/10.1109/ACCESS.2017.2761849 +Xingguang Wei,Software Defined Radio Implementation of a Non-Orthogonal Multiple Access System Towards 5G.,2016,4,IEEE Access,,db/journals/access/access4.html#WeiLGZXLC16,https://doi.org/10.1109/ACCESS.2016.2634038 +Hlabishi I. Kobo,A Survey on Software-Defined Wireless Sensor Networks: Challenges and Design Requirements.,2017,5,IEEE Access,,db/journals/access/access5.html#KoboAH17,https://doi.org/10.1109/ACCESS.2017.2666200 +Manuel Alberto Cordova Neira,Data-Fusion Techniques for Open-Set Recognition Problems.,2018,6,IEEE Access,,db/journals/access/access6.html#NeiraMRT18,https://doi.org/10.1109/ACCESS.2018.2824240 +Samman Zahra,Fog Computing Over IoT: A Secure Deployment and Formal Verification.,2017,5,IEEE Access,,db/journals/access/access5.html#ZahraAJWJMK17,https://doi.org/10.1109/ACCESS.2017.2766180 +Wei Zhang 0089,Inference of Cancer Progression With Probabilistic Graphical Model From Cross-Sectional Mutation Data.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangW18,https://doi.org/10.1109/ACCESS.2018.2827024 +Sooyeon Shin,Two-Factor Authenticated Key Agreement Supporting Unlinkability in 5G-Integrated Wireless Sensor Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ShinK18,https://doi.org/10.1109/ACCESS.2018.2796539 +Peng Qian,Compressive Sensing Based Multiple Source Localization in the Presence of Sensor Position Uncertainty and Nonuniform Noise.,2018,6,IEEE Access,,db/journals/access/access6.html#QianGLF18,https://doi.org/10.1109/ACCESS.2018.2852296 +Xiaobo Chen,Ensemble Learning Multiple LSSVR With Improved Harmony Search Algorithm for Short-Term Traffic Flow Forecasting.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenCLL18,https://doi.org/10.1109/ACCESS.2018.2805299 +Jie Zhang 0030,A Secure System For Pervasive Social Network-Based Healthcare.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhangXH16,https://doi.org/10.1109/ACCESS.2016.2645904 +Tzuu-Hseng S. Li,Reciprocal Learning for Robot Peers.,2017,5,IEEE Access,,db/journals/access/access5.html#LiLKCHWLLYH17,https://doi.org/10.1109/ACCESS.2016.2637438 +Shiguang Liu,Texture-Aware Emotional Color Transfer Between Images.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuP18,https://doi.org/10.1109/ACCESS.2018.2844540 +Xiaodong Dong,AJSR: an Efficient Multiple Jumps Forwarding Scheme in Software-Defined WAN.,2017,5,IEEE Access,,db/journals/access/access5.html#DongGZQL17,https://doi.org/10.1109/ACCESS.2017.2670683 +Hadi Maged El Helw,A Hybrid Maximum Power Point Tracking Technique for Partially Shaded Photovoltaic Arrays.,2017,5,IEEE Access,,db/journals/access/access5.html#HelwSM17,https://doi.org/10.1109/ACCESS.2017.2717540 +Xiaoying Gu,Detection and Correction of Cycle Slip in Triple-Frequency GNSS Positioning.,2017,5,IEEE Access,,db/journals/access/access5.html#GuZ17,https://doi.org/10.1109/ACCESS.2017.2720588 +Deqing Zou,A Fine-Grained Multi-Tenant Permission Management Framework for SDN and NFV.,2018,6,IEEE Access,,db/journals/access/access6.html#ZouLYCJ18,https://doi.org/10.1109/ACCESS.2018.2828132 +Lianfang Cai,Real-Time Detection of Power System Disturbances Based on k-Nearest Neighbor Analysis.,2017,5,IEEE Access,,db/journals/access/access5.html#CaiTKP17,https://doi.org/10.1109/ACCESS.2017.2679006 +Rashid Mehmood,UTiLearn: A Personalised Ubiquitous Teaching and Learning System for Smart Societies.,2017,5,IEEE Access,,db/journals/access/access5.html#MehmoodAAKAA17,https://doi.org/10.1109/ACCESS.2017.2668840 +Muhammad Shoaib 0004,Composite Controller for Antagonistic Tendon Driven Joints With Elastic Tendons and Its Experimental Verification.,2018,6,IEEE Access,,db/journals/access/access6.html#ShoaibCPP18,https://doi.org/10.1109/ACCESS.2017.2787839 +Ibrahim A. Hemadeh,Multi-Set Space-Time Shift-Keying With Reduced Detection Complexity.,2016,4,IEEE Access,,db/journals/access/access4.html#HemadehEWH16b,https://doi.org/10.1109/ACCESS.2016.2582462 +Dezhang Kong,The Impact of the Collective Influence of Search Engines on Social Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#KongFYXH17,https://doi.org/10.1109/ACCESS.2017.2767075 +Xiang Zhao 0003,On Physical-Layer Security in Multiuser Visible Light Communication Systems With Non-Orthogonal Multiple Access.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaoCS18,https://doi.org/10.1109/ACCESS.2018.2847744 +Xiang Wang,Social-Aware Edge Caching in Fog Radio Access Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#WangLY17,https://doi.org/10.1109/ACCESS.2017.2693440 +Erxue Min,A Survey of Clustering With Deep Learning: From the Perspective of Network Architecture.,2018,6,IEEE Access,,db/journals/access/access6.html#MinGLZCL18,https://doi.org/10.1109/ACCESS.2018.2855437 +Wei Luo,Efficient and Secure Access Control Scheme in the Standard Model for Vehicular Cloud Computing.,2018,6,IEEE Access,,db/journals/access/access6.html#LuoM18a,https://doi.org/10.1109/ACCESS.2018.2858233 +Pablo Sotres,Practical Lessons From the Deployment and Management of a Smart City Internet-of-Things Infrastructure: The SmartSantander Testbed Case.,2017,5,IEEE Access,,db/journals/access/access5.html#SotresSSLM17,https://doi.org/10.1109/ACCESS.2017.2723659 +Pablo Poudereux,FPGA-Based Architecture for Medium Access Techniques in Broadband PLC.,2018,6,IEEE Access,,db/journals/access/access6.html#PoudereuxHCM18,https://doi.org/10.1109/ACCESS.2018.2808371 +Panagiotis D. Diamantoulakis,Joint Downlink/Uplink Design for Wireless Powered Networks With Interference.,2017,5,IEEE Access,,db/journals/access/access5.html#DiamantoulakisP17,https://doi.org/10.1109/ACCESS.2017.2657801 +Nam-Phong Nguyen,Secure 5G Wireless Communications: A Joint Relay Selection and Wireless Power Transfer Approach.,2016,4,IEEE Access,,db/journals/access/access4.html#NguyenDNHS16,https://doi.org/10.1109/ACCESS.2016.2582719 +Hadis Karimipour,Robust Massively Parallel Dynamic State Estimation of Power Systems Against Cyber-Attack.,2018,6,IEEE Access,,db/journals/access/access6.html#KarimipourD18,https://doi.org/10.1109/ACCESS.2017.2786584 +Zhang Yu,Pipeline Inclination Measurements Based on a Spherical Detector With Magnetic Proximity Switches.,2018,6,IEEE Access,,db/journals/access/access6.html#YuYXJS18,https://doi.org/10.1109/ACCESS.2018.2856618 +Hua Yang 0004,Baseband Communication Signal Blind Separation Algorithm Based on Complex Nonparametric Probability Density Estimation.,2018,6,IEEE Access,,db/journals/access/access6.html#YangZLYD18,https://doi.org/10.1109/ACCESS.2018.2828870 +Xue-wen Chen 0001,Big Data Deep Learning: Challenges and Perspectives.,2014,2,IEEE Access,,db/journals/access/access2.html#ChenL14,https://doi.org/10.1109/ACCESS.2014.2325029 +Zheng-Guo Sun,A Superimposed Relaying Strategy and Power Allocation for Outdoor Visible Light Communications.,2017,5,IEEE Access,,db/journals/access/access5.html#SunYZ17,https://doi.org/10.1109/ACCESS.2017.2700880 +Xiaoyan Jiang,Data Fusion-Based Multi-Object Tracking for Unconstrained Visual Sensor Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#JiangFXGHZYH18,https://doi.org/10.1109/ACCESS.2018.2812794 +Cong Wang 0004,An Efficient EAP-Based Pre-Authentication for Inter-WRAN Handover in TV White Space.,2017,5,IEEE Access,,db/journals/access/access5.html#WangMZ17,https://doi.org/10.1109/ACCESS.2017.2706738 +Nor Hidayu Shahadan,Steerable Higher Order Mode Dielectric Resonator Antenna With Parasitic Elements for 5G Applications.,2017,5,IEEE Access,,db/journals/access/access5.html#ShahadanJKYKJD17,https://doi.org/10.1109/ACCESS.2017.2760924 +Jiafeng Zhang,Analysis and Control of Dynamic Reconfiguration Processes of Manufacturing Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangFAQWL18,https://doi.org/10.1109/ACCESS.2017.2757044 +Xin Li 0041,Distributed Sub-Tree-Based Optical Multicasting Scheme in Elastic Optical Data Center Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#LiZTGH18,https://doi.org/10.1109/ACCESS.2018.2799867 +Yazan Al-Alem,Low-Profile Low-Cost High Gain 60 GHz Antenna.,2018,6,IEEE Access,,db/journals/access/access6.html#Al-AlemK18,https://doi.org/10.1109/ACCESS.2018.2815082 +Quanyan Zhu,On Multi-Phase and Multi-Stage Game-Theoretic Modeling of Advanced Persistent Threats.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhuR18,https://doi.org/10.1109/ACCESS.2018.2814481 +Minglei Yang,A Unified Array Geometry Composed of Multiple Identical Subarrays With Hole-Free Difference Coarrays for Underdetermined DOA Estimation.,2018,6,IEEE Access,,db/journals/access/access6.html#YangHYSC18,https://doi.org/10.1109/ACCESS.2018.2813313 +Nan Zhao,Antenna and Propagation Considerations for Amateur UAV Monitoring.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaoYRZZHUAA18,https://doi.org/10.1109/ACCESS.2018.2838062 +Sai Zou,An Identification Decision Tree Learning Model for Self-Management in Virtual Radio Access Network: IDTLM.,2018,6,IEEE Access,,db/journals/access/access6.html#ZouTSS18,https://doi.org/10.1109/ACCESS.2017.2768402 +Panagiotis Botsinis,Quantum Search-Aided Multi-User Detection of IDMA-Assisted Multi-Layered Video Streaming.,2017,5,IEEE Access,,db/journals/access/access5.html#BotsinisHABNH17,https://doi.org/10.1109/ACCESS.2017.2732358 +Songli Fan,Cooperative Economic Scheduling for Multiple Energy Hubs: A Bargaining Game Theoretic Perspective.,2018,6,IEEE Access,,db/journals/access/access6.html#FanLWPA18,https://doi.org/10.1109/ACCESS.2018.2839108 +Ibrahim A. Hemadeh,Hierarchical Multi-Functional Layered Spatial Modulation.,2018,6,IEEE Access,,db/journals/access/access6.html#HemadehEH18,https://doi.org/10.1109/ACCESS.2018.2802863 +Mehedi Hasan,A Mirror Shape Chiral Meta Atom for C-Band Communication.,2017,5,IEEE Access,,db/journals/access/access5.html#HasanFI17,https://doi.org/10.1109/ACCESS.2017.2677463 +Yong Lei,Passivity-Based Control Strategy for SMES Under an Unbalanced Voltage Condition.,2018,6,IEEE Access,,db/journals/access/access6.html#LeiLZ18,https://doi.org/10.1109/ACCESS.2018.2831251 +Gangtao Han,Joint Optimization of Energy Harvesting and Detection Threshold for Energy Harvesting Cognitive Radio Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#HanZM16,https://doi.org/10.1109/ACCESS.2016.2616353 +Xiaobo Liu 0001,Ensemble Transfer Learning Algorithm.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuLWCZ18,https://doi.org/10.1109/ACCESS.2017.2782884 +Shutang You,Impact of High PV Penetration on the Inter-Area Oscillations in the U.S. Eastern Interconnection.,2017,5,IEEE Access,,db/journals/access/access5.html#YouKLZCTYL17,https://doi.org/10.1109/ACCESS.2017.2682260 +Hui-Ling Chang,Optimistic DRX for Machine-Type Communications in LTE-A Network.,2018,6,IEEE Access,,db/journals/access/access6.html#ChangT18a,https://doi.org/10.1109/ACCESS.2018.2791466 +Jianbin Gao,GridMonitoring: Secured Sovereign Blockchain Based Monitoring on Smart Grid.,2018,6,IEEE Access,,db/journals/access/access6.html#GaoASSXXZD18,https://doi.org/10.1109/ACCESS.2018.2806303 +Tingkai Chen,Development and Performance Test of a Height-Adaptive Pesticide Spraying System.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenM18,https://doi.org/10.1109/ACCESS.2018.2813667 +Bin Gu,Use of a Rapid Method for Achieving Optimal Sensing Duration and Analysis of Data Rate Loss of Cognitive Radio Due to CLT.,2018,6,IEEE Access,,db/journals/access/access6.html#GuSHLS18,https://doi.org/10.1109/ACCESS.2018.2826655 +Zengqiang Jiang,Distributed Dynamic Scheduling for Cyber-Physical Production Systems Based on a Multi-Agent System.,2018,6,IEEE Access,,db/journals/access/access6.html#JiangJEL18,https://doi.org/10.1109/ACCESS.2017.2780321 +Yilun Shang,Fixed-Time Group Tracking Control With Unknown Inherent Nonlinear Dynamics.,2017,5,IEEE Access,,db/journals/access/access5.html#ShangY17,https://doi.org/10.1109/ACCESS.2017.2723462 +Huijun Zhu,Key-Policy Attribute-Based Encryption With Equality Test in Cloud Computing.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhuWAN17,https://doi.org/10.1109/ACCESS.2017.2756070 +Chong Jin,VTB-RTRRP: Variable Threshold Based Response Time Reliability Real-Time Prediction.,2018,6,IEEE Access,,db/journals/access/access6.html#JinKL18,https://doi.org/10.1109/ACCESS.2017.2741666 +Xuan-Thuan Nguyen,An FPGA-Based Hardware Accelerator for Energy-Efficient Bitmap Index Creation.,2018,6,IEEE Access,,db/journals/access/access6.html#NguyenHNIP18,https://doi.org/10.1109/ACCESS.2018.2816039 +Wei Liu 0029,A Neighbor-Based Probabilistic Broadcast Protocol for Data Dissemination in Mobile IoT Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuNS18,https://doi.org/10.1109/ACCESS.2018.2808356 +Xiaoping Sun,Summarization of Scientific Paper Through Reinforcement Ranking on Semantic Link Network.,2018,6,IEEE Access,,db/journals/access/access6.html#SunZ18,https://doi.org/10.1109/ACCESS.2018.2856530 +Fatemeh Mansourkiaie,Maximizing Lifetime in Wireless Sensor Network for Structural Health Monitoring With and Without Energy Harvesting.,2017,5,IEEE Access,,db/journals/access/access5.html#MansourkiaieSEA17,https://doi.org/10.1109/ACCESS.2017.2669020 +Kaiwen Li,Evolutionary Many-Objective Optimization: A Comparative Study of the State-of-the-Art.,2018,6,IEEE Access,,db/journals/access/access6.html#LiWZI18,https://doi.org/10.1109/ACCESS.2018.2832181 +Jiantao Yuan,Massive Machine-to-Machine Communications in Cellular Network: Distributed Queueing Random Access Meets MIMO.,2017,5,IEEE Access,,db/journals/access/access5.html#YuanSHQY17,https://doi.org/10.1109/ACCESS.2017.2670614 +Carlos M. Lentisco,QoE-Based Analysis of DASH Streaming Parameters Over Mobile Broadcast Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#LentiscoBVPH17,https://doi.org/10.1109/ACCESS.2017.2755438 +Qiang Yu,Robust Locality Preserving Projections With Cosine-Based Dissimilarity for Linear Dimensionality Reduction.,2017,5,IEEE Access,,db/journals/access/access5.html#YuWLYY17,https://doi.org/10.1109/ACCESS.2016.2616584 +Gang Hou,Performance Evaluation for Interrupt-Driven Embedded Software Based on EDSPN.,2017,5,IEEE Access,,db/journals/access/access5.html#HouZQKL17,https://doi.org/10.1109/ACCESS.2017.2689801 +Saleem Zahid,Distributed Partition Detection With Dynamic Replication Management in a DHT-Based MANET.,2018,6,IEEE Access,,db/journals/access/access6.html#ZahidASNM18,https://doi.org/10.1109/ACCESS.2018.2814017 +Feng Lu 0006,Aero Engine Gas Path Performance Tracking Based on Multi-Sensor Asynchronous Integration Filtering Approach.,2018,6,IEEE Access,,db/journals/access/access6.html#LuJHQ18,https://doi.org/10.1109/ACCESS.2018.2835505 +Ali Mohammad Hayajneh,Performance Analysis of UAV Enabled Disaster Recovery Networks: A Stochastic Geometric Framework Based on Cluster Processes.,2018,6,IEEE Access,,db/journals/access/access6.html#HayajnehZMRG18,https://doi.org/10.1109/ACCESS.2018.2835638 +Sudip Misra,A PKI Adapted Model for Secure Information Dissemination in Industrial Control and Automation 6LoWPANs.,2015,3,IEEE Access,,db/journals/access/access3.html#MisraGTMO15,https://doi.org/10.1109/ACCESS.2015.2445817 +Mingzhong Qiao,Research on Design Method and Electromagnetic Vibration of Six-Phase Fractional-Slot Concentrated-Winding PM Motor Suitable for Ship Propulsion.,2016,4,IEEE Access,,db/journals/access/access4.html#QiaoJZL16,https://doi.org/10.1109/ACCESS.2016.2636341 +Qian Wang 0009,CDA: A Clustering Degree Based Influential Spreader Identification Algorithm in Weighted Complex Network.,2018,6,IEEE Access,,db/journals/access/access6.html#WangRWZCZ18,https://doi.org/10.1109/ACCESS.2018.2822844 +Zhaogang Shu,Traffic Engineering in Software-Defined Networking: Measurement and Management.,2016,4,IEEE Access,,db/journals/access/access4.html#ShuWLWLRY16,https://doi.org/10.1109/ACCESS.2016.2582748 +Ali Malik,Optimisation Methods for Fast Restoration of Software-Defined Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#MalikAAK17,https://doi.org/10.1109/ACCESS.2017.2736949 +Zhe Li,Random Time Delay Effect on Out-of-Sequence Measurements.,2016,4,IEEE Access,,db/journals/access/access4.html#LiZMG16,https://doi.org/10.1109/ACCESS.2016.2610098 +Yanzhang Lv,Opinioned Post Detection in Sina Weibo.,2017,5,IEEE Access,,db/journals/access/access5.html#LvLCMLZ17,https://doi.org/10.1109/ACCESS.2017.2679227 +Hesham ElSawy,Base Station Ordering for Emergency Call Localization in Ultra-Dense Cellular Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ElSawyDAW18,https://doi.org/10.1109/ACCESS.2017.2759260 +Rahim Khan,Technology-Assisted Decision Support System for Efficient Water Utilization: A Real-Time Testbed for Irrigation Using Wireless Sensor Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#KhanAZMIS18,https://doi.org/10.1109/ACCESS.2018.2836185 +Haixin Wang,Analysis of the Characteristics of Solar Cell Array Based on MATLAB/Simulink in Solar Unmanned Aerial Vehicle.,2018,6,IEEE Access,,db/journals/access/access6.html#WangS18,https://doi.org/10.1109/ACCESS.2018.2802927 +Ming Cheng 0003,Downlink Ergodic Rate Analysis for Virtual Cell Based Cloud Radio Access Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#ChengWWL17,https://doi.org/10.1109/ACCESS.2017.2728016 +Xiao-Long Liu,Cloud Resource Management With Turnaround Time Driven Auto-Scaling.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuYLHB17,https://doi.org/10.1109/ACCESS.2017.2706019 +Chaochao Bai,Learning Binary Descriptors for Fingerprint Indexing.,2018,6,IEEE Access,,db/journals/access/access6.html#BaiLZW18,https://doi.org/10.1109/ACCESS.2017.2779562 +Loli Burgueño,Formalizing Complex Event Processing Systems in Maude.,2018,6,IEEE Access,,db/journals/access/access6.html#BurguenoBV18,https://doi.org/10.1109/ACCESS.2018.2831185 +Yubin Pan,Extrapolation and Splitting Extrapolation Algorithm for Multidimensional Weakly Singular Integral of Product Type.,2017,5,IEEE Access,,db/journals/access/access5.html#PanH17,https://doi.org/10.1109/ACCESS.2017.2709809 +Kang An,On the Secrecy Performance of Land Mobile Satellite Communication Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#AnLYZ18,https://doi.org/10.1109/ACCESS.2018.2854233 +Xin-Lin Huang,Cooperative Spectrum Sensing With Data Mining of Multiple Users' Historical Sensing Data.,2016,4,IEEE Access,,db/journals/access/access4.html#HuangGWCX16,https://doi.org/10.1109/ACCESS.2016.2623478 +Mario Mureddu,A Statistical Approach for Modeling the Aging Effects in Li-Ion Energy Storage Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#MuredduFD18,https://doi.org/10.1109/ACCESS.2018.2859817 +Jinwook Kim,Hybrid Gate-Level Leakage Model for Monte Carlo Analysis on Multiple GPUs.,2014,2,IEEE Access,,db/journals/access/access2.html#KimK14,https://doi.org/10.1109/ACCESS.2014.2308922 +Wei Wu 0005,Robust Multi-Objective Beamforming Design for Power Efficient and Secure Communication in MU-MISO Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#WuWW17,https://doi.org/10.1109/ACCESS.2017.2726581 +Jiang Chang,Investigating Duration Effects of Emotional Speech Stimuli in a Tonal Language by Using Event-Related Potentials.,2018,6,IEEE Access,,db/journals/access/access6.html#ChangZZS18,https://doi.org/10.1109/ACCESS.2018.2813358 +Benjamin Sherlock,Spread-Spectrum Techniques for Bio-Friendly Underwater Acoustic Communications.,2018,6,IEEE Access,,db/journals/access/access6.html#SherlockNT18,https://doi.org/10.1109/ACCESS.2018.2790478 +Lili Zhao,Improved Imaging Performance in Super-Resolution Localization Microscopy by YALL1 Method.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaoHSLLZYL18,https://doi.org/10.1109/ACCESS.2018.2793847 +Jianhua Ma,Cybermatics: A Holistic Field for Systematic Study of Cyber-Enabled New Worlds.,2015,3,IEEE Access,,db/journals/access/access3.html#MaNHLYCM15,https://doi.org/10.1109/ACCESS.2015.2498288 +Fotis D. Kanellos,Real-Time Control Based on Multi-Agent Systems for the Operation of Large Ports as Prosumer Microgrids.,2017,5,IEEE Access,,db/journals/access/access5.html#Kanellos17,https://doi.org/10.1109/ACCESS.2017.2706091 +Erxue Min,Analysis of the Variance Reduction in SVRG and a New Acceleration Method.,2018,6,IEEE Access,,db/journals/access/access6.html#MinLC18,https://doi.org/10.1109/ACCESS.2018.2814212 +Dayan Adionel Guimarães,Robust Test Statistic for Cooperative Spectrum Sensing Based on the Gerschgorin Circle Theorem.,2018,6,IEEE Access,,db/journals/access/access6.html#Guimaraes18,https://doi.org/10.1109/ACCESS.2017.2783443 +Dongsheng Yu,A New Circuit for Emulating Memristors Using Inductive Coupling.,2017,5,IEEE Access,,db/journals/access/access5.html#YuZIFC17,https://doi.org/10.1109/ACCESS.2017.2649573 +Kun Xie,Real-Time Streaming Communication With Optical Codes.,2016,4,IEEE Access,,db/journals/access/access4.html#XieGH16,https://doi.org/10.1109/ACCESS.2016.2514480 +Youzhi Xiong,Channel Estimation and IQ Imbalance Compensation for Uplink Massive MIMO Systems With Low-Resolution ADCs.,2017,5,IEEE Access,,db/journals/access/access5.html#XiongWZLC17,https://doi.org/10.1109/ACCESS.2017.2690439 +Changqing Xia,Bounding the Demand of Mixed-Criticality Industrial Wireless Sensor Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#XiaJKZ17,https://doi.org/10.1109/ACCESS.2017.2654483 +Zengpeng Li,Towards Multi-Hop Homomorphic Identity-Based Proxy Re-Encryption via Branching Program.,2017,5,IEEE Access,,db/journals/access/access5.html#LiMW17,https://doi.org/10.1109/ACCESS.2017.2740720 +Xiaohui Xu,Stochastic Exponential Robust Stability of Delayed Complex-Valued Neural Networks With Markova Jumping Parameters.,2018,6,IEEE Access,,db/journals/access/access6.html#XuXPZX18,https://doi.org/10.1109/ACCESS.2017.2776168 +Qing Shen,Underdetermined DOA Estimation Under the Compressive Sensing Framework: A Review.,2016,4,IEEE Access,,db/journals/access/access4.html#ShenLCW16,https://doi.org/10.1109/ACCESS.2016.2628869 +Dana Solav,MultiDIC: An Open-Source Toolbox for Multi-View 3D Digital Image Correlation.,2018,6,IEEE Access,,db/journals/access/access6.html#SolavMJGH18,https://doi.org/10.1109/ACCESS.2018.2843725 +Yang Chen 0008,Extended PCJO for the Detection-Localization of Hypersignals and Hyposignals in CT Images.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenZYYYXSLFZ17,https://doi.org/10.1109/ACCESS.2017.2720418 +Tianliang Lin,A Novel Control Strategy for an Energy Saving Hydraulic System With Near-Zero Overflowing Energy-Loss.,2018,6,IEEE Access,,db/journals/access/access6.html#LinZCF18,https://doi.org/10.1109/ACCESS.2018.2834343 +William Hoiles,PAC Algorithms for Detecting Nash Equilibrium Play in Social Networks: From Twitter to Energy Markets.,2016,4,IEEE Access,,db/journals/access/access4.html#HoilesKA16,https://doi.org/10.1109/ACCESS.2016.2629478 +Hang Zhuang,Chinese Language Processing Based on Stroke Representation and Multidimensional Representation.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhuangWLLWZ18,https://doi.org/10.1109/ACCESS.2018.2860058 +Yicheng Li,Image Sequence Matching Using Both Holistic and Local Features for Loop Closure Detection.,2017,5,IEEE Access,,db/journals/access/access5.html#LiHHLS17,https://doi.org/10.1109/ACCESS.2017.2725387 +Jian Hou,Enhanced Dominant Sets Clustering by Cluster Expansion.,2018,6,IEEE Access,,db/journals/access/access6.html#HouZ18,https://doi.org/10.1109/ACCESS.2018.2808485 +Safwan Hafeedh Younus,CGH for Indoor Visible Light Communication System.,2017,5,IEEE Access,,db/journals/access/access5.html#YounusHTE17,https://doi.org/10.1109/ACCESS.2017.2765378 +Weijing Qi,A Unified Routing Framework for Integrated Space/Air Information Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#QiHGSJ16,https://doi.org/10.1109/ACCESS.2016.2618905 +Muhammad Mahboob Ur Rahman,Physical Layer Authentication in Nano Networks at Terahertz Frequencies for Biomedical Applications.,2017,5,IEEE Access,,db/journals/access/access5.html#RahmanACQA17,https://doi.org/10.1109/ACCESS.2017.2700330 +Qin Yang,Optimal UAV Path Planning: Sensing Data Acquisition Over IoT Sensor Networks Using Multi-Objective Bio-Inspired Algorithms.,2018,6,IEEE Access,,db/journals/access/access6.html#YangY18,https://doi.org/10.1109/ACCESS.2018.2812896 +Francesco Vatalaro,The Sub-Band Vectoring Technique for Multi-Operator Environments.,2016,4,IEEE Access,,db/journals/access/access4.html#VatalaroMG16,https://doi.org/10.1109/ACCESS.2016.2580198 +Nirzhar Saha,An Evolutionary Game Theory Approach for Joint Offloading and Interference Management in a Two-Tier HetNet.,2018,6,IEEE Access,,db/journals/access/access6.html#SahaV18,https://doi.org/10.1109/ACCESS.2017.2780253 +Wenjie Zhu,Joint Linear Regression and Nonnegative Matrix Factorization Based on Self-Organized Graph for Image Clustering and Classification.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhuY18,https://doi.org/10.1109/ACCESS.2018.2854232 +Yuecheng Li,An Adaptive Online Prediction Method With Variable Prediction Horizon for Future Driving Cycle of the Vehicle.,2018,6,IEEE Access,,db/journals/access/access6.html#LiHP18,https://doi.org/10.1109/ACCESS.2018.2840536 +Juan C. Aviles,Position-Aided mm-Wave Beam Training Under NLOS Conditions.,2016,4,IEEE Access,,db/journals/access/access4.html#AvilesK16a,https://doi.org/10.1109/ACCESS.2016.2631222 +Hui Guo,DyCache: Dynamic Multi-Grain Cache Management for Irregular Memory Accesses on GPU.,2018,6,IEEE Access,,db/journals/access/access6.html#GuoHLMW18,https://doi.org/10.1109/ACCESS.2018.2818193 +Xiaolin Wu 0003,A Novel Color Image Encryption Scheme Using Rectangular Transform-Enhanced Chaotic Tent Maps.,2017,5,IEEE Access,,db/journals/access/access5.html#WuZHR17,https://doi.org/10.1109/ACCESS.2017.2692043 +Le-Hu Wen,A Wideband Dual-Polarized Antenna Using Shorted Dipoles.,2018,6,IEEE Access,,db/journals/access/access6.html#WenGMLHYY18,https://doi.org/10.1109/ACCESS.2018.2855425 +Saad Mustafa,SLA-Aware Energy Efficient Resource Management for Cloud Environments.,2018,6,IEEE Access,,db/journals/access/access6.html#MustafaBMM18,https://doi.org/10.1109/ACCESS.2018.2808320 +Ahmed El-Azab,Macroscopic Cerebral Tumor Growth Modeling From Medical Images: A Review.,2018,6,IEEE Access,,db/journals/access/access6.html#El-AzabAAHWL18,https://doi.org/10.1109/ACCESS.2018.2839681 +Muhammad Hashim Dahri,Polarization Diversity and Adaptive Beamsteering for 5G Reflectarrays: A Review.,2018,6,IEEE Access,,db/journals/access/access6.html#DahriJKASK18,https://doi.org/10.1109/ACCESS.2018.2821358 +A. B. M. Alim Al Islam,Backpacking: Energy-Efficient Deployment of Heterogeneous Radios in Multi-Radio High-Data-Rate Wireless Sensor Networks.,2014,2,IEEE Access,,db/journals/access/access2.html#IslamHRH14,https://doi.org/10.1109/ACCESS.2014.2364234 +Nan Wang 0003,Security-Aware Task Scheduling Using Untrusted Components in High-Level Synthesis.,2018,6,IEEE Access,,db/journals/access/access6.html#WangCNLZ18,https://doi.org/10.1109/ACCESS.2018.2790392 +Wei Liu 0051,Analytic of B2C E - Commerce Credit Mechanism Mixed Strategy Risk Behavior Based on Logical Game Petri Nets.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuFZDY18,https://doi.org/10.1109/ACCESS.2018.2838765 +Minghua Wan,Multi-Manifold Locality Graph Embedding Based on the Maximum Margin Criterion (MLGE/MMC) for Face Recognition.,2017,5,IEEE Access,,db/journals/access/access5.html#WanL17,https://doi.org/10.1109/ACCESS.2017.2706525 +Yi-Jung Chen,Processors Allocation for MPSoCs With Single ISA Heterogeneous Multi-Core Architecture.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenCLWCT17,https://doi.org/10.1109/ACCESS.2017.2688699 +Ke Xu,Channel-Adaptive Space-Collaborative Constellation Design for MIMO VLC With Fast Maximum Likelihood Detection.,2017,5,IEEE Access,,db/journals/access/access5.html#XuYZC17,https://doi.org/10.1109/ACCESS.2017.2651043 +Muhammad Saleem Khan,Fine-Grained Analysis of Packet Loss in MANETs.,2017,5,IEEE Access,,db/journals/access/access5.html#KhanMKB17,https://doi.org/10.1109/ACCESS.2017.2694467 +Sai Huang,Performance Characterization of Machine-to-Machine Networks With Energy Harvesting and Social-Aware Relays.,2017,5,IEEE Access,,db/journals/access/access5.html#HuangWYFZ17,https://doi.org/10.1109/ACCESS.2017.2657551 +Wei Ji,A Virtual Training Based Programming-Free Automatic Assembly Approach for Future Industry.,2018,6,IEEE Access,,db/journals/access/access6.html#JiYW18,https://doi.org/10.1109/ACCESS.2018.2863697 +Menghui Niu,The Line Scan Camera Calibration Based on Space Rings Group.,2018,6,IEEE Access,,db/journals/access/access6.html#NiuSWZY18,https://doi.org/10.1109/ACCESS.2018.2817629 +Wenbo Zhang,An Improved Ant Colony Algorithm for Path Planning in One Scenic Area With Many Spots.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangGHZ17,https://doi.org/10.1109/ACCESS.2017.2723892 +Xiaoyi Pan,Extraction of Micro-Doppler Frequency From HRRPs of Rotating Targets.,2017,5,IEEE Access,,db/journals/access/access5.html#PanLXAXYL17,https://doi.org/10.1109/ACCESS.2017.2750222 +Jiahuan Lu,Online Estimation of State of Power for Lithium-Ion Batteries in Electric Vehicles Using Genetic Algorithm.,2018,6,IEEE Access,,db/journals/access/access6.html#LuCYL18,https://doi.org/10.1109/ACCESS.2018.2824559 +Bin Xia 0002,An Absorptive Balanced-to-Balanced Power Divider.,2018,6,IEEE Access,,db/journals/access/access6.html#XiaWM18,https://doi.org/10.1109/ACCESS.2018.2815546 +Carlos Andrés Viteri-Mera,Space-Time Block Diagonalization for Frequency-Selective MIMO Broadcast Channels.,2016,4,IEEE Access,,db/journals/access/access4.html#Viteri-MeraT16,https://doi.org/10.1109/ACCESS.2016.2618722 +Zhekang Dong,Multiple Memristor Circuit Parametric Fault Diagnosis Using Feedback-Control Doublet Generator.,2016,4,IEEE Access,,db/journals/access/access4.html#DongLQLD16,https://doi.org/10.1109/ACCESS.2016.2566928 +Longjie Li,An Effective Two-Step Intrusion Detection Approach Based on Binary Classification and $k$ -NN.,2018,6,IEEE Access,,db/journals/access/access6.html#LiYBHC18,https://doi.org/10.1109/ACCESS.2017.2787719 +Xiaoxiao Dong,Asynchronous L1 Tracking Control of Switched Positive Systems With Actuator Saturation.,2017,5,IEEE Access,,db/journals/access/access5.html#DongC17,https://doi.org/10.1109/ACCESS.2017.2748364 +Adam L. Anderson,A Generalized Sum-Rate Optimizer for Cooperative Multiuser Massive MIMO Link Topologies.,2014,2,IEEE Access,,db/journals/access/access2.html#AndersonJ14,https://doi.org/10.1109/ACCESS.2014.2347241 +Yuhang Gan,Feature Extraction Based Multi-Structure Manifold Embedding for Hyperspectral Remote Sensing Image Classification.,2017,5,IEEE Access,,db/journals/access/access5.html#GanLLLZL17,https://doi.org/10.1109/ACCESS.2017.2766242 +Karandeep Singh,An Agent Based Model Approach for Perusal of Social Dynamics.,2018,6,IEEE Access,,db/journals/access/access6.html#SinghA18,https://doi.org/10.1109/ACCESS.2018.2849731 +Yi Hou,Use of Roadway Scene Semantic Information and Geometry-Preserving Landmark Pairs to Improve Visual Place Recognition in Changing Environments.,2017,5,IEEE Access,,db/journals/access/access5.html#HouZZZ17,https://doi.org/10.1109/ACCESS.2017.2698524 +Yao Yu,An Efficient SDN-Based DDoS Attack Detection and Rapid Response Platform in Vehicular Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#YuGLZZ18,https://doi.org/10.1109/ACCESS.2018.2854567 +Mohammad Faisal,Review of Energy Storage System Technologies in Microgrid Applications: Issues and Challenges.,2018,6,IEEE Access,,db/journals/access/access6.html#FaisalHKHMB18,https://doi.org/10.1109/ACCESS.2018.2841407 +Anne Immonen,Requirements of an Open Data Based Business Ecosystem.,2014,2,IEEE Access,,db/journals/access/access2.html#ImmonenPO14,https://doi.org/10.1109/ACCESS.2014.2302872 +Kailing Yao,Distributed ABS-Slot Access in Dense Heterogeneous Networks: A Potential Game Approach With Generalized Interference Model.,2017,5,IEEE Access,,db/journals/access/access5.html#YaoWXJ17,https://doi.org/10.1109/ACCESS.2016.2614701 +Chinmoy Kundu,Effects of CSI Knowledge on Secrecy of Threshold-Selection Decode-and-Forward Relaying.,2017,5,IEEE Access,,db/journals/access/access5.html#KunduGNDDB17,https://doi.org/10.1109/ACCESS.2017.2751525 +Guizhen Mai,Inferring Causal Direction From Multi-Dimensional Causal Networks for Assessing Harmful Factors in Security Analysis.,2017,5,IEEE Access,,db/journals/access/access5.html#MaiHPP17,https://doi.org/10.1109/ACCESS.2017.2746539 +Xiao Yao,Research on Speech Under Stress Based on Glottal Source Using a Physical Speech Production Model.,2018,6,IEEE Access,,db/journals/access/access6.html#YaoXLJZ18,https://doi.org/10.1109/ACCESS.2018.2860130 +Yang Wang,Data-Driven Optimized Distributed Dynamic PCA for Efficient Monitoring of Large-Scale Dynamic Processes.,2017,5,IEEE Access,,db/journals/access/access5.html#WangJF17,https://doi.org/10.1109/ACCESS.2017.2749498 +Xiaojun Yuan,MIMO Multiway Distributed Relay Channel With Full Data Exchange: An Achievable Rate Perspective.,2018,6,IEEE Access,,db/journals/access/access6.html#YuanZZZK18,https://doi.org/10.1109/ACCESS.2018.2857214 +Zheping Yan,Limited Communication Consensus Control of Leader-Following Multi-UUVs in a Swarm System Under Multi-Independent Switching Topologies and Time Delay.,2018,6,IEEE Access,,db/journals/access/access6.html#YanWDL18,https://doi.org/10.1109/ACCESS.2018.2844817 +Robert D. Morris,Children Absorb Higher Doses of Radio Frequency Electromagnetic Radiation From Mobile Phones Than Adults.,2015,3,IEEE Access,,db/journals/access/access3.html#MorrisMD15,https://doi.org/10.1109/ACCESS.2015.2478701 +Harri Viittala,ETSI SmartBAN System Performance and Coexistence Verification for Healthcare.,2017,5,IEEE Access,,db/journals/access/access5.html#ViittalaMHP17,https://doi.org/10.1109/ACCESS.2017.2697502 +Zan Li,A Narrow-Band Indoor Positioning System by Fusing Time and Received Signal Strength via Ensemble Learning.,2018,6,IEEE Access,,db/journals/access/access6.html#LiBZZHL18,https://doi.org/10.1109/ACCESS.2018.2794337 +Shuhei Hayashida,Dummy Generation Based on User-Movement Estimation for Location Privacy Protection.,2018,6,IEEE Access,,db/journals/access/access6.html#HayashidaAHX18,https://doi.org/10.1109/ACCESS.2018.2829898 +Mohammad Mustaneer Rahman,A Personalized Group-Based Recommendation Approach for Web Search in E-Learning.,2018,6,IEEE Access,,db/journals/access/access6.html#RahmanA18,https://doi.org/10.1109/ACCESS.2018.2850376 +Dapeng Wu 0002,An Energy-Efficient Data Forwarding Strategy for Heterogeneous WBANs.,2016,4,IEEE Access,,db/journals/access/access4.html#WuYWWW16,https://doi.org/10.1109/ACCESS.2016.2611820 +Jun Wang 0046,Minimization of Network Losses With Financial Incentives in Voluntary Demand Response.,2018,6,IEEE Access,,db/journals/access/access6.html#WangH18a,https://doi.org/10.1109/ACCESS.2018.2797272 +Md. Saiful Islam 0001,Selection of Heart-Biometric Templates for Fusion.,2017,5,IEEE Access,,db/journals/access/access5.html#IslamAAA17,https://doi.org/10.1109/ACCESS.2017.2667224 +Muhammad Amjad 0001,QoS-Aware and Heterogeneously Clustered Routing Protocol for Wireless Sensor Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#AmjadAUK17,https://doi.org/10.1109/ACCESS.2017.2712662 +Muhammad Al-Qurishi,Sybil Defense Techniques in Online Social Networks: A Survey.,2017,5,IEEE Access,,db/journals/access/access5.html#Al-QurishiAAARH17,https://doi.org/10.1109/ACCESS.2017.2656635 +Min Chen 0003,Narrow Band Internet of Things.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenMHH17,https://doi.org/10.1109/ACCESS.2017.2751586 +Tin Petrovic,Detecting Presence From a WiFi Router's Electric Power Consumption by Machine Learning.,2018,6,IEEE Access,,db/journals/access/access6.html#PetrovicEM18,https://doi.org/10.1109/ACCESS.2018.2797881 +Chun-xia Dou,Multi-Agent System-Based Event-Triggered Hybrid Control Scheme for Energy Internet.,2017,5,IEEE Access,,db/journals/access/access5.html#DouYHG17,https://doi.org/10.1109/ACCESS.2017.2670778 +Ru Zhang,Analysis of Message Attacks in Aviation Data-Link Communication.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangLLN18,https://doi.org/10.1109/ACCESS.2017.2767059 +Xu Xie,Comparison of Feedforward Synchronization Schemes for Full-Response CPM Signals.,2017,5,IEEE Access,,db/journals/access/access5.html#XieX17,https://doi.org/10.1109/ACCESS.2017.2777005 +Yijun Yang,Secure Transmission of Wireless Relaying Systems With Jammer and Multiple-User Selection.,2017,5,IEEE Access,,db/journals/access/access5.html#YangCHWL17,https://doi.org/10.1109/ACCESS.2017.2702663 +Haneul Ko,Spatial and Temporal Computation Offloading Decision Algorithm in Edge Cloud-Enabled Heterogeneous Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#KoLP18,https://doi.org/10.1109/ACCESS.2018.2818111 +Wenhao Wang,User Capacity of Wireless Physical-Layer Identification.,2017,5,IEEE Access,,db/journals/access/access5.html#WangSRZ17,https://doi.org/10.1109/ACCESS.2017.2674967 +Lue Li,Soft Incomplete Discernibility Matrix for Decision-Making Problems.,2018,6,IEEE Access,,db/journals/access/access6.html#LiXFZ18,https://doi.org/10.1109/ACCESS.2018.2838318 +A. Sharmila,DWT Based Detection of Epileptic Seizure From EEG Signals Using Naive Bayes and k-NN Classifiers.,2016,4,IEEE Access,,db/journals/access/access4.html#SharmilaG16,https://doi.org/10.1109/ACCESS.2016.2585661 +Hassan Harb,Comparison of Different Data Aggregation Techniques in Distributed Sensor Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#HarbMTC17,https://doi.org/10.1109/ACCESS.2017.2681207 +Sebastian Sadowski,RSSI-Based Indoor Localization With the Internet of Things.,2018,6,IEEE Access,,db/journals/access/access6.html#SadowskiS18,https://doi.org/10.1109/ACCESS.2018.2843325 +Xinhui Tian,GraphDuo: A Dual-Model Graph Processing Framework.,2018,6,IEEE Access,,db/journals/access/access6.html#TianZ18,https://doi.org/10.1109/ACCESS.2018.2848291 +Pekka Kyösti,On Dimensions of OTA Setups for Massive MIMO Base Stations Radiated Testing.,2016,4,IEEE Access,,db/journals/access/access4.html#KyostiFPL16,https://doi.org/10.1109/ACCESS.2016.2610721 +Jun Wang,Spatial Pyramid Pooling of Selective Convolutional Features for Vein Recognition.,2018,6,IEEE Access,,db/journals/access/access6.html#WangPWLL18,https://doi.org/10.1109/ACCESS.2018.2839720 +Maria Garcia-Fernandez,Antenna Diagnostics and Characterization Using Unmanned Aerial Vehicles.,2017,5,IEEE Access,,db/journals/access/access5.html#Garcia-Fernandez17,https://doi.org/10.1109/ACCESS.2017.2754985 +Xiaodan Zhang,Comparative Analysis of Sequential and Combinatorial Auctions Based on Petri Nets.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangTYEL18,https://doi.org/10.1109/ACCESS.2018.2840539 +Nermin Goran,Mathematical Bottom-to-Up Approach in Video Quality Estimation Based on PHY and MAC Parameters.,2017,5,IEEE Access,,db/journals/access/access5.html#GoranH17,https://doi.org/10.1109/ACCESS.2017.2772042 +Abdulkadir Celik,Resource Allocation and Interference Management for D2D-Enabled DL/UL Decoupled Het-Nets.,2017,5,IEEE Access,,db/journals/access/access5.html#CelikRAA17,https://doi.org/10.1109/ACCESS.2017.2760350 +Dina S. Deif,An Ant Colony Optimization Approach for the Deployment of Reliable Wireless Sensor Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#DeifG17,https://doi.org/10.1109/ACCESS.2017.2711484 +Chongke Bi,Dynamic Mode Decomposition Based Video Shot Detection.,2018,6,IEEE Access,,db/journals/access/access6.html#BiYZSXWZ18,https://doi.org/10.1109/ACCESS.2018.2825106 +Chaoxu Mu,Observer-Based Adaptive Control of Uncertain Nonlinear Systems Via Neural Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#MuZW18,https://doi.org/10.1109/ACCESS.2018.2859263 +Gangman Yi,Energy-Efficient Distributed Topology Control Algorithm for Low-Power IoT Communication Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#YiPC16,https://doi.org/10.1109/ACCESS.2016.2630715 +Yosra Jarraya,Hierarchical Flexible Beta Fuzzy Design by a Multi-Objective Evolutionary Hybrid Approach.,2018,6,IEEE Access,,db/journals/access/access6.html#JarrayaBA18,https://doi.org/10.1109/ACCESS.2018.2807124 +Hongsheng Qi,Graphical Solution for Arterial Road Traffic Flow Model Considering Spillover.,2018,6,IEEE Access,,db/journals/access/access6.html#Qi18,https://doi.org/10.1109/ACCESS.2017.2786217 +Jiawei Luo,Predicting MicroRNA-Disease Associations Using Kronecker Regularized Least Squares Based on Heterogeneous Omics Data.,2017,5,IEEE Access,,db/journals/access/access5.html#LuoXLD17,https://doi.org/10.1109/ACCESS.2017.2672600 +John W. Heron,Demand-Response Round-Trip Latency of IoT SmartGrid Network Topologies.,2018,6,IEEE Access,,db/journals/access/access6.html#HeronJSGD18,https://doi.org/10.1109/ACCESS.2018.2831254 +Mohammad Iman Ghiasi,Lyapunov Based-Distributed Fuzzy-Sliding Mode Control for Building Integrated-DC Microgrid With Plug-In Electric Vehicle.,2017,5,IEEE Access,,db/journals/access/access5.html#GhiasiGH17,https://doi.org/10.1109/ACCESS.2017.2689807 +Wei Yang 0006,Improving Low-Dose CT Image Using Residual Convolutional Network.,2017,5,IEEE Access,,db/journals/access/access5.html#YangZYWYCSLCGF17,https://doi.org/10.1109/ACCESS.2017.2766438 +Po-Jen Ko,$\text{H}_{\infty}$ Control Design of PID-Like Controller for Speed Drive Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#KoT18,https://doi.org/10.1109/ACCESS.2018.2851284 +Peng Bao,A Multiuser Detection Algorithm in the Uplink SC-FDMA System for Green Communication Network.,2016,4,IEEE Access,,db/journals/access/access4.html#BaoGG16,https://doi.org/10.1109/ACCESS.2016.2556279 +Charith Perera,A Survey on Internet of Things From Industrial Market Perspective.,2014,2,IEEE Access,,db/journals/access/access2.html#PereraLJC14,https://doi.org/10.1109/ACCESS.2015.2389854 +Hongtao Zhang,Low-Complexity Sliding Window Block Decoding Using Bit-Flipping for OVFDM Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangCLW17,https://doi.org/10.1109/ACCESS.2017.2768801 +Wencai Ye,Anomaly-Tolerant Traffic Matrix Estimation via Prior Information Guided Matrix Completion.,2017,5,IEEE Access,,db/journals/access/access5.html#YeCYDX17,https://doi.org/10.1109/ACCESS.2017.2671860 +Xin Li 0032,A New Fuzzy Ontology Development Methodology (FODM) Proposal.,2016,4,IEEE Access,,db/journals/access/access4.html#LiMR16,https://doi.org/10.1109/ACCESS.2016.2621756 +Jing Li 0010,Cross-Domain Co-Occurring Feature for Visible-Infrared Image Matching.,2018,6,IEEE Access,,db/journals/access/access6.html#LiLYL18,https://doi.org/10.1109/ACCESS.2018.2820680 +Jiachen Yang,Local Stereo Matching Based on Support Weight With Motion Flow for Dynamic Scene.,2016,4,IEEE Access,,db/journals/access/access4.html#YangWDLWS16,https://doi.org/10.1109/ACCESS.2016.2601069 +Jingjing Gu,Consortium Blockchain-Based Malware Detection in Mobile Devices.,2018,6,IEEE Access,,db/journals/access/access6.html#GuSDWZW18,https://doi.org/10.1109/ACCESS.2018.2805783 +Fu-Xing Liu,A Size-Reduced Tri-Band Gysel Power Divider With Ultra-Wideband Harmonics Suppression Performance.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuWZQL18,https://doi.org/10.1109/ACCESS.2018.2846296 +Wei-Yi Pei,Scene Video Text Tracking With Graph Matching.,2018,6,IEEE Access,,db/journals/access/access6.html#PeiYMHTY18,https://doi.org/10.1109/ACCESS.2018.2797181 +Hua Zong,Design and Analysis of a Coupling-Fed Printed Dipole Array Antenna With High Gain and Omnidirectivity.,2017,5,IEEE Access,,db/journals/access/access5.html#ZongLMLLLF17,https://doi.org/10.1109/ACCESS.2017.2768518 +Moinak Bhaduri,A Novel Weak Estimator For Dynamic Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#BhaduriZC17,https://doi.org/10.1109/ACCESS.2017.2771448 +Ayush Agrawal,First Steps Towards Translating HZD Control of Bipedal Robots to Decentralized Control of Exoskeletons.,2017,5,IEEE Access,,db/journals/access/access5.html#AgrawalHHFMPASG17,https://doi.org/10.1109/ACCESS.2017.2690407 +Ateeq Ur Rehman,Throughput and Delay Analysis of Cognitive Go-Back-N Hybrid Automatic Repeat reQuest Using Discrete-Time Markov Modelling.,2016,4,IEEE Access,,db/journals/access/access4.html#RehmanDTYH16,https://doi.org/10.1109/ACCESS.2016.2632098 +Xiaofan Liu,Guaranteed Cost Control for Descriptor Type-2 Fuzzy Systems With Stochastic Delay Distribution.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuLXYG17,https://doi.org/10.1109/ACCESS.2017.2755041 +Wenbo Zhang,An Energy-Efficient Ring Cross-Layer Optimization Algorithm for Wireless Sensor Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangWHT18,https://doi.org/10.1109/ACCESS.2018.2809663 +Weishan Zhang,A Deep Awareness Framework for Pervasive Video Cloud.,2015,3,IEEE Access,,db/journals/access/access3.html#ZhangDLLGY15,https://doi.org/10.1109/ACCESS.2015.2497278 +Mengyu Sun,Energy-Efficient Composition of Configurable Internet of Things Services.,2017,5,IEEE Access,,db/journals/access/access5.html#SunSCZD17,https://doi.org/10.1109/ACCESS.2017.2768544 +Haitao Zhao 0002,Sequential Fault Diagnosis Based on LSTM Neural Network.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaoSJ18,https://doi.org/10.1109/ACCESS.2018.2794765 +Jung-Chieh Chen,Energy-Efficient Hybrid Precoding Design for Millimeter-Wave Massive MIMO Systems Via Coordinate Update Algorithms.,2018,6,IEEE Access,,db/journals/access/access6.html#Chen18,https://doi.org/10.1109/ACCESS.2018.2819197 +Mahdi Ghane,On the Joint Distribution of Excursion Duration and Amplitude of a Narrow-Band Gaussian Process.,2018,6,IEEE Access,,db/journals/access/access6.html#GhaneGBM18,https://doi.org/10.1109/ACCESS.2018.2816600 +Jiuzhen Liang,Bilateral Two-Dimensional Neighborhood Preserving Discriminant Embedding for Face Recognition.,2017,5,IEEE Access,,db/journals/access/access5.html#LiangCYXD17,https://doi.org/10.1109/ACCESS.2017.2741223 +Qingxuan Jia,Coping Strategy for Multi-Joint Multi-Type Asynchronous Failure of a Space Manipulator.,2018,6,IEEE Access,,db/journals/access/access6.html#JiaWCYF18,https://doi.org/10.1109/ACCESS.2018.2858270 +Chaowen Liu,Joint Transmitter-Receiver Spatial Modulation.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuYWW18,https://doi.org/10.1109/ACCESS.2018.2790959 +Weixing Xue,A New Weighted Algorithm Based on the Uneven Spatial Resolution of RSSI for Indoor Localization.,2018,6,IEEE Access,,db/journals/access/access6.html#XueHLYQZC18,https://doi.org/10.1109/ACCESS.2018.2837018 +Gang Zhang,Compact Tunable Bandpass Filter With Wide Tuning Range of Centre Frequency and Bandwidth Using Short Coupled Lines.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangXW18,https://doi.org/10.1109/ACCESS.2017.2786296 +Duc-Phuc Vuong,Resource Allocation With Minimum Outage Probability in Multicarrier Multicast Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#VuongDL18,https://doi.org/10.1109/ACCESS.2018.2845453 +Abhishek Kumar 0006,Multiyear Load Growth Based Techno-Financial Evaluation of a Microgrid for an Academic Institution.,2018,6,IEEE Access,,db/journals/access/access6.html#KumarSDHKB18a,https://doi.org/10.1109/ACCESS.2018.2849411 +Qikun Zhang,A Dynamic and Cross-Domain Authentication Asymmetric Group Key Agreement in Telemedicine Application.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangGZWT18,https://doi.org/10.1109/ACCESS.2018.2799007 +Ramadhan J. Mstafa,A Robust and Secure Video Steganography Method in DWT-DCT Domains Based on Multiple Object Tracking and ECC.,2017,5,IEEE Access,,db/journals/access/access5.html#MstafaEA17,https://doi.org/10.1109/ACCESS.2017.2691581 +Qiang Liu 0004,A Survey on Security Threats and Defensive Techniques of Machine Learning: A Data Driven View.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuLZCYL18,https://doi.org/10.1109/ACCESS.2018.2805680 +Debdeep Banerjee,Robotic Arm Based 3D Reconstruction Test Automation.,2018,6,IEEE Access,,db/journals/access/access6.html#BanerjeeYA18,https://doi.org/10.1109/ACCESS.2018.2794301 +Shruti Nagpal,Regularized Deep Learning for Face Recognition With Weight Variations.,2015,3,IEEE Access,,db/journals/access/access3.html#NagpalSSV15,https://doi.org/10.1109/ACCESS.2015.2510865 +Yueying Wang,Sampled-Data Exponential Synchronization of Chaotic Lur'e Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#WangZKL17,https://doi.org/10.1109/ACCESS.2017.2741970 +Mingwu Zhang,Consecutive Leakage-Resilient and Updatable Lossy Trapdoor Functions and Application in Sensitive Big-Data Environments.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangHSXD18,https://doi.org/10.1109/ACCESS.2018.2864163 +Khushboo Mittal,Supervisory Control for Resilient Chiller Plants Under Condenser Fouling.,2017,5,IEEE Access,,db/journals/access/access5.html#MittalWBGBL17,https://doi.org/10.1109/ACCESS.2017.2726017 +Yuma Matsuda,Shape Retrieval With Geometrically Characterized Contour Partitions.,2015,3,IEEE Access,,db/journals/access/access3.html#MatsudaOY15,https://doi.org/10.1109/ACCESS.2015.2451627 +Jirui Li,Dynamic Cloudlet-Assisted Energy-Saving Routing Mechanism for Mobile Ad Hoc Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#LiLGGZ17,https://doi.org/10.1109/ACCESS.2017.2759138 +Sohini Roychowdhury,AG-MIC: Azure-Based Generalized Flow for Medical Image Classification.,2016,4,IEEE Access,,db/journals/access/access4.html#RoychowdhuryB16,https://doi.org/10.1109/ACCESS.2016.2605641 +Serdar çakir,Contrast Enhancement of Microscopy Images Using Image Phase Information.,2018,6,IEEE Access,,db/journals/access/access6.html#CakirKCC18,https://doi.org/10.1109/ACCESS.2018.2796646 +Erik L. Bengtsson,A Simulation Framework for Multiple-Antenna Terminals in 5G Massive MIMO Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#BengtssonRMTKE17,https://doi.org/10.1109/ACCESS.2017.2775210 +John Panneerselvam,Mobilouds: An Energy Efficient MCC Collaborative Framework With Extended Mobile Participation for Next Generation Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#PanneerselvamHL16,https://doi.org/10.1109/ACCESS.2016.2602321 +Akashkumar Rajaram,Opportunistic-Harvesting: RF Wireless Power Transfer Scheme for Multiple Access Relays System.,2017,5,IEEE Access,,db/journals/access/access5.html#RajaramJSCS17,https://doi.org/10.1109/ACCESS.2017.2734852 +Shakhirul Mat Salleh,Textile Antenna With Simultaneous Frequency and Polarization Reconfiguration for WBAN.,2018,6,IEEE Access,,db/journals/access/access6.html#SallehJIKNRSOJS18,https://doi.org/10.1109/ACCESS.2017.2787018 +Wenjun Lu,Confidentiality-Preserving Image Search: A Comparative Study Between Homomorphic Encryption and Distance-Preserving Randomization.,2014,2,IEEE Access,,db/journals/access/access2.html#LuV014,https://doi.org/10.1109/ACCESS.2014.2307057 +Tianzhu Qin,A Decoupled Direct Positioning Algorithm for Strictly Noncircular Sources Based on Doppler Shifts and Angle of Arrival.,2018,6,IEEE Access,,db/journals/access/access6.html#QinLBW18,https://doi.org/10.1109/ACCESS.2018.2849574 +Zheng Yang 0003,Impact of Factor Graph on Average Sum Rate for Uplink Sparse Code Multiple Access Systems.,2016,4,IEEE Access,,db/journals/access/access4.html#YangCLDFC16,https://doi.org/10.1109/ACCESS.2016.2614330 +Tetiana Bogodorova,Identifying Uncertainty Distributions and Confidence Regions of Power Plant Parameters.,2017,5,IEEE Access,,db/journals/access/access5.html#BogodorovaVPT17,https://doi.org/10.1109/ACCESS.2017.2754346 +Zhenqi Fu,Quality Assessment of Retargeted Images Using Hand-Crafted and Deep-Learned Features.,2018,6,IEEE Access,,db/journals/access/access6.html#FuSJFH18,https://doi.org/10.1109/ACCESS.2018.2808322 +Jian-Xin Chen,Design of Compact Bandpass Filters Using Novel Dual-Mode Dielectric Patch Resonator.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenLYB18,https://doi.org/10.1109/ACCESS.2018.2818743 +Rajesh Challa,CentFlow: Centrality-Based Flow Balancing and Traffic Distribution for Higher Network Utilization.,2017,5,IEEE Access,,db/journals/access/access5.html#ChallaJKC17,https://doi.org/10.1109/ACCESS.2017.2743697 +Weiwei Jiang,Evaluating the Effects of Double-Apping on the Smartphone-Based E-Hailing Service: A Simulation-Based Study.,2018,6,IEEE Access,,db/journals/access/access6.html#JiangZ18,https://doi.org/10.1109/ACCESS.2018.2797207 +Khondaker M. Salehin,Determination of Interrupt-Coalescence Latency of Remote Hosts Through Active Measurement.,2018,6,IEEE Access,,db/journals/access/access6.html#SalehinSR18,https://doi.org/10.1109/ACCESS.2018.2830125 +Abbas Ebrahimi,Evaluation of FPGA Hardware as a New Approach for Accelerating the Numerical Solution of CFD Problems.,2017,5,IEEE Access,,db/journals/access/access5.html#EbrahimiZ17,https://doi.org/10.1109/ACCESS.2017.2705434 +João Andrade,A Survey on Programmable LDPC Decoders.,2016,4,IEEE Access,,db/journals/access/access4.html#AndradeFSS16,https://doi.org/10.1109/ACCESS.2016.2594265 +Min Zhang,Enhanced Efficiency BPSK Demodulator Based on One-Dimensional Convolutional Neural Network.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangLLW18,https://doi.org/10.1109/ACCESS.2018.2834144 +Dinghui Wu,Fault Estimation and Fault-Tolerant Control of Wind Turbines Using the SDW-LSI Algorithm.,2016,4,IEEE Access,,db/journals/access/access4.html#WuLSS16,https://doi.org/10.1109/ACCESS.2016.2614747 +Mohammad Mehedi Hassan,Resource Provisioning for Cloud-Assisted Body Area Network in a Smart Home Environment.,2017,5,IEEE Access,,db/journals/access/access5.html#HassanAAM17,https://doi.org/10.1109/ACCESS.2017.2726012 +Miaolei He,Extended State Observer-Based Robust Backstepping Sliding Mode Control for a Small-Size Helicopter.,2018,6,IEEE Access,,db/journals/access/access6.html#HeH18,https://doi.org/10.1109/ACCESS.2018.2845134 +Xiaobo Chen,Nonconvex lp-Norm Regularized Sparse Self-Representation for Traffic Sensor Data Recovery.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenCLC18,https://doi.org/10.1109/ACCESS.2018.2832043 +Paulo Victor Rodrigues Ferreira,Interactive Multiple Model Filter for Land-Mobile Satellite Communications at Ka-Band.,2017,5,IEEE Access,,db/journals/access/access5.html#FerreiraPW17,https://doi.org/10.1109/ACCESS.2017.2651742 +Abdulah Jeza Aljohani,Distributed Source Coding and Its Applications in Relaying-Based Transmission.,2016,4,IEEE Access,,db/journals/access/access4.html#AljohaniNH16,https://doi.org/10.1109/ACCESS.2016.2537739 +Zaigham Mushtaq,Multilingual Source Code Analysis: A Systematic Literature Review.,2017,5,IEEE Access,,db/journals/access/access5.html#MushtaqRS17,https://doi.org/10.1109/ACCESS.2017.2710421 +Zhanyu Ma,IEEE Access Special Section Editorial: Recent Advantages of Computer Vision.,2018,6,IEEE Access,,db/journals/access/access6.html#MaLSHJPH18,https://doi.org/10.1109/ACCESS.2018.2844480 +Moona Mazher,An EEG-Based Cognitive Load Assessment in Multimedia Learning Using Feature Extraction and Partial Directed Coherence.,2017,5,IEEE Access,,db/journals/access/access5.html#MazherAMA17,https://doi.org/10.1109/ACCESS.2017.2731784 +Mariusz Oszust,Optimized Filtering With Binary Descriptor for Blind Image Quality Assessment.,2018,6,IEEE Access,,db/journals/access/access6.html#Oszust18,https://doi.org/10.1109/ACCESS.2018.2860127 +Jain-Shing Liu,Delay and Energy Tradeoff in Energy Harvesting Multi-Hop Wireless Networks With Inter-Session Network Coding and Successive Interference Cancellation.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuLT17,https://doi.org/10.1109/ACCESS.2016.2645704 +Junxing Zhu,CHRS: Cold Start Recommendation Across Multiple Heterogeneous Information Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhuZZWJZY17,https://doi.org/10.1109/ACCESS.2017.2726339 +Muneer Alshowkan,Deterministic and Efficient Quantum Key Distribution Using Entanglement Parity Bits and Ancillary Qubits.,2017,5,IEEE Access,,db/journals/access/access5.html#AlshowkanE17,https://doi.org/10.1109/ACCESS.2017.2771395 +Raúl H. Rosero,Regression Testing of Database Applications Under an Incremental Software Development Setting.,2017,5,IEEE Access,,db/journals/access/access5.html#RoseroGR17,https://doi.org/10.1109/ACCESS.2017.2749502 +Xiangbin Yu,Secrecy Performance Analysis of Artificial-Noise-Aided Spatial Modulation in the Presence of Imperfect CSI.,2018,6,IEEE Access,,db/journals/access/access6.html#YuHPDLS18,https://doi.org/10.1109/ACCESS.2018.2859261 +Chaofeng Li,False-Positive Reduction on Lung Nodules Detection in Chest Radiographs by Ensemble of Convolutional Neural Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#LiZWW18,https://doi.org/10.1109/ACCESS.2018.2817023 +Aswad Adib,On Stability of Voltage Source Inverters in Weak Grids.,2018,6,IEEE Access,,db/journals/access/access6.html#AdibMWB18,https://doi.org/10.1109/ACCESS.2017.2788818 +Rayi Yanu Tara,A Suitability Evaluation of Controlling 3D Map Viewpoint by Gamepad Orientation for Remote Navigation.,2017,5,IEEE Access,,db/journals/access/access5.html#TaraT17,https://doi.org/10.1109/ACCESS.2017.2682275 +Dimitrios Alanis,Quantum-Assisted Joint Multi-Objective Routing and Load Balancing for Socially-Aware Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#AlanisHBBNH16,https://doi.org/10.1109/ACCESS.2016.2629671 +Chun Gan,A Review on Machine Topologies and Control Techniques for Low-Noise Switched Reluctance Motors in Electric Vehicle Applications.,2018,6,IEEE Access,,db/journals/access/access6.html#GanWSKLH18,https://doi.org/10.1109/ACCESS.2018.2837111 +Dimitrios Alanis,Quantum-Assisted Routing Optimization for Self-Organizing Networks.,2014,2,IEEE Access,,db/journals/access/access2.html#AlanisBNH14,https://doi.org/10.1109/ACCESS.2014.2327596 +Shen Liu,Design and Fabrication of a Skew-Typed Longitudinal-Torsional Composite Ultrasonic Vibrator for Titanium Wire Drawing.,2016,4,IEEE Access,,db/journals/access/access4.html#LiuSGX16,https://doi.org/10.1109/ACCESS.2016.2614516 +Amit Jyoti Datta,An Investigation of Earth Grid Performance Using Graphene-Coated Copper.,2015,3,IEEE Access,,db/journals/access/access3.html#DattaTWL15,https://doi.org/10.1109/ACCESS.2015.2454295 +Wei Yang 0012,New Pythagorean Fuzzy Interaction Maclaurin Symmetric Mean Operators and Their Application in Multiple Attribute Decision Making.,2018,6,IEEE Access,,db/journals/access/access6.html#YangP18,https://doi.org/10.1109/ACCESS.2018.2856270 +Nurullah Shahin,Hybrid Slotted-CSMA/CA-TDMA for Efficient Massive Registration of IoT Devices.,2018,6,IEEE Access,,db/journals/access/access6.html#ShahinAK18,https://doi.org/10.1109/ACCESS.2018.2815990 +Shiqiang Wang,Online Placement of Multi-Component Applications in Edge Computing Environments.,2017,5,IEEE Access,,db/journals/access/access5.html#WangZL17,https://doi.org/10.1109/ACCESS.2017.2665971 +Jasmine Cashbaugh,Automatic Calculation of a Transformation Matrix Between Two Frames.,2018,6,IEEE Access,,db/journals/access/access6.html#CashbaughK18,https://doi.org/10.1109/ACCESS.2018.2799173 +Hemani Kaushal,Applications of Lasers for Tactical Military Operations.,2017,5,IEEE Access,,db/journals/access/access5.html#KaushalK17,https://doi.org/10.1109/ACCESS.2017.2755678 +Venkata Kishore Kothapudi,A 6-Port Two-Dimensional $3\* 3$ Series-Fed Planar Array Antenna for Dual-Polarized X-Band Airborne Synthetic Aperture Radar Applications.,2018,6,IEEE Access,,db/journals/access/access6.html#KothapudiK18,https://doi.org/10.1109/ACCESS.2018.2810233 +Yin Zhang 0002,IEEE Access Special Section Editorial: Emotion-Aware Mobile Computing.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangFWW17,https://doi.org/10.1109/ACCESS.2017.2719558 +Can Ding,Simplified Tightly-Coupled Cross-Dipole Arrangement for Base Station Applications.,2017,5,IEEE Access,,db/journals/access/access5.html#DingSZG17,https://doi.org/10.1109/ACCESS.2017.2778229 +Jianzhu Guo,Dominant and Complementary Emotion Recognition From Still Images of Faces.,2018,6,IEEE Access,,db/journals/access/access6.html#GuoLWAHKKJBDEAA18,https://doi.org/10.1109/ACCESS.2018.2831927 +Nan Li 0010,Transforming Fuzzy Spatiotemporal Data From Relational Databases to XML.,2018,6,IEEE Access,,db/journals/access/access6.html#LiB18,https://doi.org/10.1109/ACCESS.2018.2790427 +Ruiguo Yu,Authentication With Block-Chain Algorithm and Text Encryption Protocol in Calculation of Social Network.,2017,5,IEEE Access,,db/journals/access/access5.html#YuWXGAZY17,https://doi.org/10.1109/ACCESS.2017.2767285 +Jiaolong Yang,Transceiver Optimization for Two-Hop MIMO Relay Systems With Direct Link and MSE Constraints.,2017,5,IEEE Access,,db/journals/access/access5.html#YangHR17,https://doi.org/10.1109/ACCESS.2017.2771305 +Osama Bin Tariq,Performance of Machine Learning Classifiers for Indoor Person Localization With Capacitive Sensors.,2017,5,IEEE Access,,db/journals/access/access5.html#TariqLIL17,https://doi.org/10.1109/ACCESS.2017.2721538 +Hualong Yu,LW-ELM: A Fast and Flexible Cost-Sensitive Learning Framework for Classifying Imbalanced Data.,2018,6,IEEE Access,,db/journals/access/access6.html#YuSYZWX18,https://doi.org/10.1109/ACCESS.2018.2839340 +Ming Cai,Field Tests and Simulation of Ground and Building Vibrations Caused by Metros on an Elevated Bridge.,2018,6,IEEE Access,,db/journals/access/access6.html#CaiWW18,https://doi.org/10.1109/ACCESS.2018.2850359 +Desta Haileselassie Hagos,General TCP State Inference Model From Passive Measurements Using Machine Learning Techniques.,2018,6,IEEE Access,,db/journals/access/access6.html#HagosEYK18,https://doi.org/10.1109/ACCESS.2018.2833107 +Simin Peng,State of Charge Estimation of Battery Energy Storage Systems Based on Adaptive Unscented Kalman Filter With a Noise Statistics Estimator.,2017,5,IEEE Access,,db/journals/access/access5.html#PengCSY17,https://doi.org/10.1109/ACCESS.2017.2725301 +Ducheng Wu,QoE-Based Distributed Multichannel Allocation in 5G Heterogeneous Cellular Networks: A Matching-Coalitional Game Solution.,2017,5,IEEE Access,,db/journals/access/access5.html#WuWXJQ17,https://doi.org/10.1109/ACCESS.2016.2606404 +Peng-Yong Kong,Charging Schemes for Plug-In Hybrid Electric Vehicles in Smart Grid: A Survey.,2016,4,IEEE Access,,db/journals/access/access4.html#KongK16,https://doi.org/10.1109/ACCESS.2016.2614689 +William Fernando Villota-Jacome,On the Feasibility of Using Hierarchical Task Networks and Network Functions Virtualization for Managing Software-Defined Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#Villota-JacomeG18,https://doi.org/10.1109/ACCESS.2018.2852649 +Jiangtao Ma,De-Anonymizing Social Networks With Random Forest Classifier.,2018,6,IEEE Access,,db/journals/access/access6.html#MaQHHSZWZ18,https://doi.org/10.1109/ACCESS.2017.2756904 +Huma Hayat Khan,Software Standards and Software Failures: A Review With the Perspective of Varying Situational Contexts.,2017,5,IEEE Access,,db/journals/access/access5.html#KhanM17,https://doi.org/10.1109/ACCESS.2017.2738622 +Peiqiang Li,Dynamic Similar Sub-Series Selection Method for Time Series Forecasting.,2018,6,IEEE Access,,db/journals/access/access6.html#LiZLZZZL18,https://doi.org/10.1109/ACCESS.2018.2843774 +Ruohan Cao,Detecting and Tracing i.i.d. Attacks in Networks With Any Number of Relays.,2016,4,IEEE Access,,db/journals/access/access4.html#CaoHL16,https://doi.org/10.1109/ACCESS.2016.2614935 +Angeliki V. Kordali,A Contract-Based Spectrum Trading Scheme for Cognitive Radio Networks Enabling Hybrid Access.,2015,3,IEEE Access,,db/journals/access/access3.html#KordaliC15,https://doi.org/10.1109/ACCESS.2015.2455492 +Jinhuan Xu,A Novel Hyperspectral Image Clustering Method With Context-Aware Unsupervised Discriminative Extreme Learning Machine.,2018,6,IEEE Access,,db/journals/access/access6.html#XuLLX18,https://doi.org/10.1109/ACCESS.2018.2813988 +Xin Quan,Blind Nonlinear Self-Interference Cancellation for Wireless Full-Duplex Transceivers.,2018,6,IEEE Access,,db/journals/access/access6.html#QuanLCSTK18,https://doi.org/10.1109/ACCESS.2018.2852368 +Wenxiang Deng,Adaptive Control of Input Delayed Uncertain Nonlinear Systems With Time-Varying Output Constraints.,2017,5,IEEE Access,,db/journals/access/access5.html#DengYM17,https://doi.org/10.1109/ACCESS.2017.2730222 +Jianwen Sun,A Verified Capability-Based Model for Information Flow Security With Dynamic Policies.,2018,6,IEEE Access,,db/journals/access/access6.html#SunLZ18,https://doi.org/10.1109/ACCESS.2018.2815766 +Zhenyu Wu,Path Planning of UAVs Based on Collision Probability and Kalman Filter.,2018,6,IEEE Access,,db/journals/access/access6.html#WuLZL18,https://doi.org/10.1109/ACCESS.2018.2817648 +Manasjyoti Bhuyan,Nonlinear Mobile Link Adaptation Using Modified FLNN and Channel Sounder Arrangement.,2017,5,IEEE Access,,db/journals/access/access5.html#BhuyanSM17,https://doi.org/10.1109/ACCESS.2017.2693823 +Juntao Fei,A Backstepping Neural Global Sliding Mode Control Using Fuzzy Approximator for Three-Phase Active Power Filter.,2017,5,IEEE Access,,db/journals/access/access5.html#FeiCH17,https://doi.org/10.1109/ACCESS.2017.2732998 +Lingen Luo,Partial Discharge Detection and Recognition in Random Matrix Theory Paradigm.,2017,5,IEEE Access,,db/journals/access/access5.html#LuoHCSJ17,https://doi.org/10.1109/ACCESS.2016.2634622 +Wu Deng,A Novel Fault Diagnosis Method Based on Integrating Empirical Wavelet Transform and Fuzzy Entropy for Motor Bearing.,2018,6,IEEE Access,,db/journals/access/access6.html#DengZZY18,https://doi.org/10.1109/ACCESS.2018.2834540 +Jiayi Ma 0001,Robust Topological Navigation via Convolutional Neural Network Feature and Sharpness Measure.,2017,5,IEEE Access,,db/journals/access/access5.html#MaZ17,https://doi.org/10.1109/ACCESS.2017.2757765 +Wilman Alonso Pineda Munoz,The Predictive Functional Control and the Management of Constraints in GUANAY II Autonomous Underwater Vehicle Actuators.,2018,6,IEEE Access,,db/journals/access/access6.html#MunozSC18,https://doi.org/10.1109/ACCESS.2018.2828325 +Eftychia G. Datsika,Green Cooperative Device-to-Device Communication: a Social-Aware Perspective.,2016,4,IEEE Access,,db/journals/access/access4.html#DatsikaAZV16,https://doi.org/10.1109/ACCESS.2016.2586305 +Chin-Hsien Wu,Rethink the Design of Flash Translation Layers in a Component-Based View.,2017,5,IEEE Access,,db/journals/access/access5.html#WuWCC17,https://doi.org/10.1109/ACCESS.2017.2718559 +Wayes Tushar,Management of Renewable Energy for a Shared Facility Controller in Smart Grid.,2016,4,IEEE Access,,db/journals/access/access4.html#TusharZYSH16,https://doi.org/10.1109/ACCESS.2016.2592509 +Zilong Zhou,Locating an Acoustic Emission Source in Multilayered Media Based on the Refraction Path Method.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhouRZDC18,https://doi.org/10.1109/ACCESS.2018.2805384 +Xiong Wang 0003,A New Chaotic System With Stable Equilibrium: From Theoretical Model to Circuit Implementation.,2017,5,IEEE Access,,db/journals/access/access5.html#WangPJVMT17,https://doi.org/10.1109/ACCESS.2017.2693301 +Aidan F. Browne,A Versatile Approach for Teaching Autonomous Robot Control to Multi-Disciplinary Undergraduate and Graduate Students.,2018,6,IEEE Access,,db/journals/access/access6.html#BrowneC18,https://doi.org/10.1109/ACCESS.2017.2689686 +J. J. Wang,Predicting House Price With a Memristor-Based Artificial Neural Network.,2018,6,IEEE Access,,db/journals/access/access6.html#WangHZLYLCYHL18,https://doi.org/10.1109/ACCESS.2018.2814065 +Javier Atanasio Pastor Perez,Multi-Objective Optimization of Coordinated Multipoint-Aided MIMO-OFDMA Systems With Frequency Reuse.,2017,5,IEEE Access,,db/journals/access/access5.html#PerezRF17,https://doi.org/10.1109/ACCESS.2017.2727220 +Thong Huynh,Joint Downlink and Uplink Interference Management for Device to Device Communication Underlaying Cellular Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#HuynhOKHH16,https://doi.org/10.1109/ACCESS.2016.2603149 +Thomas Wagner 0002,Radar Signal Processing for Jointly Estimating Tracks and Micro-Doppler Signatures.,2017,5,IEEE Access,,db/journals/access/access5.html#WagnerFS17,https://doi.org/10.1109/ACCESS.2017.2667720 +Jin Zheng,An Accurate Multi-Row Panorama Generation Using Multi-Point Joint Stitching.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhengZTSW18,https://doi.org/10.1109/ACCESS.2018.2829082 +Yuan Huang 0004,Fast Point-Based KD-Tree Construction Method for Hybrid High Frequency Method in Electromagnetic Scattering.,2018,6,IEEE Access,,db/journals/access/access6.html#HuangZQNL18,https://doi.org/10.1109/ACCESS.2018.2853659 +Sixian Sun,Real-Time Behavior Analysis and Identification for Android Application.,2018,6,IEEE Access,,db/journals/access/access6.html#SunFRDLG18,https://doi.org/10.1109/ACCESS.2018.2853121 +Jian Ma 0005,Reduced-Reference Stereoscopic Image Quality Assessment Using Natural Scene Statistics and Structural Degradation.,2018,6,IEEE Access,,db/journals/access/access6.html#MaASL18,https://doi.org/10.1109/ACCESS.2017.2785282 +Mansour Taghadosi,High Efficiency Energy Harvesters in 65nm CMOS Process for Autonomous IoT Sensor Applications.,2018,6,IEEE Access,,db/journals/access/access6.html#TaghadosiAQRQ18,https://doi.org/10.1109/ACCESS.2017.2783045 +Zi-Qiang Xu,Reconfigurable MIMO Antenna for Integrated-Metal-Rimmed Smartphone Applications.,2017,5,IEEE Access,,db/journals/access/access5.html#XuSZBLA17,https://doi.org/10.1109/ACCESS.2017.2757949 +Qiule Sun,Robust Covariance Representations With Large Margin Dimensionality Reduction for Visual Classification.,2018,6,IEEE Access,,db/journals/access/access6.html#SunZZWL18,https://doi.org/10.1109/ACCESS.2018.2797419 +Qinghua Huang,Improving Decoupled Spherical Harmonics ESPRIT Using Structured Least Squares.,2018,6,IEEE Access,,db/journals/access/access6.html#HuangZF18,https://doi.org/10.1109/ACCESS.2018.2839260 +Saeedeh Parsaeefard,Joint User-Association and Resource-Allocation in Virtualized Wireless Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#ParsaeefardDDL16,https://doi.org/10.1109/ACCESS.2016.2560218 +Shihua Cao,An Ultra-Wide Stop-Band LPF Using Asymmetric Pi-Shaped Koch Fractal DGS.,2017,5,IEEE Access,,db/journals/access/access5.html#CaoHCL17,https://doi.org/10.1109/ACCESS.2017.2773577 +Baodong Ma,Vegetation Index Differencing for Estimating Foliar Dust in an Ultra-Low-Grade Magnetite Mining Area Using Landsat Imagery.,2017,5,IEEE Access,,db/journals/access/access5.html#MaPWZ17,https://doi.org/10.1109/ACCESS.2017.2700474 +Wei Lu,A Novel Approach for Video Text Detection and Recognition Based on a Corner Response Feature Map and Transferred Deep Convolutional Neural Network.,2018,6,IEEE Access,,db/journals/access/access6.html#LuSCHY18,https://doi.org/10.1109/ACCESS.2018.2851942 +James M. Chappell,The Vector Algebra War: A Historical Perspective.,2016,4,IEEE Access,,db/journals/access/access4.html#ChappellIHA16,https://doi.org/10.1109/ACCESS.2016.2538262 +Weiwei Wu,Non-Payment Incentive Mechanism Design for Resource Allocation in a Private Cloud System.,2018,6,IEEE Access,,db/journals/access/access6.html#WuLWW18,https://doi.org/10.1109/ACCESS.2018.2861561 +Fahad Bin Muslim,Efficient FPGA Implementation of OpenCL High-Performance Computing Applications via High-Level Synthesis.,2017,5,IEEE Access,,db/journals/access/access5.html#MuslimMRL17,https://doi.org/10.1109/ACCESS.2017.2671881 +Ana Rodríguez-Hoyos,Does k-Anonymous Microaggregation Affect Machine-Learned Macrotrends?,2018,6,IEEE Access,,db/journals/access/access6.html#Rodriguez-Hoyos18,https://doi.org/10.1109/ACCESS.2018.2834858 +Jingye Sun,Predicting Atmospheric Attenuation Under Pristine Conditions Between 0.1 and 100 THz.,2016,4,IEEE Access,,db/journals/access/access4.html#SunHL16,https://doi.org/10.1109/ACCESS.2016.2626200 +Mahammad Abdul Hannan,A Review of Internet of Energy Based Building Energy Management Systems: Issues and Recommendations.,2018,6,IEEE Access,,db/journals/access/access6.html#HannanFKMPMB18,https://doi.org/10.1109/ACCESS.2018.2852811 +Van Nguyen,Denoised Maximum Likelihood Estimation of Chest Wall Displacement from the IR-UWB Spectrum.,2018,6,IEEE Access,,db/journals/access/access6.html#NguyenW18,https://doi.org/10.1109/ACCESS.2018.2812890 +Zheng Chen 0008,A Hierarchical Energy Management Strategy for Power-Split Plug-in Hybrid Electric Vehicles Considering Velocity Prediction.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenGSXD18,https://doi.org/10.1109/ACCESS.2018.2848464 +Lei Tian 0003,Bipartite Consensus on Coopetition Networks With Time-Varying Delays.,2018,6,IEEE Access,,db/journals/access/access6.html#TianJHL18,https://doi.org/10.1109/ACCESS.2018.2808942 +Xinying Xu,Generalized Correntropy Filter-Based Fault Diagnosis and Tolerant Control for Non-Gaussian Stochastic Systems Subject to Sensor Faults.,2018,6,IEEE Access,,db/journals/access/access6.html#XuZRZY18,https://doi.org/10.1109/ACCESS.2018.2800730 +Traian E. Abrudan,Impact of Rocks and Minerals on Underground Magneto-Inductive Communication and Localization.,2016,4,IEEE Access,,db/journals/access/access4.html#AbrudanKTM16,https://doi.org/10.1109/ACCESS.2016.2597641 +Stefan Schwarz,Exploring Coordinated Multipoint Beamforming Strategies for 5G Cellular.,2014,2,IEEE Access,,db/journals/access/access2.html#SchwarzR14,https://doi.org/10.1109/ACCESS.2014.2353137 +Prasan Kumar Sahoo,Analyzing Healthcare Big Data With Prediction for Future Health Condition.,2016,4,IEEE Access,,db/journals/access/access4.html#SahooMW16,https://doi.org/10.1109/ACCESS.2016.2647619 +Jin-E Zhang,Robustness Analysis of Global Exponential Stability of Nonlinear Systems With Deviating Argument and Stochastic Disturbance.,2017,5,IEEE Access,,db/journals/access/access5.html#Zhang17,https://doi.org/10.1109/ACCESS.2017.2727500 +Qihui Wu,A Cloud-Based Architecture for the Internet of Spectrum Devices Over Future Wireless Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#WuDDSJV16,https://doi.org/10.1109/ACCESS.2016.2576286 +Min Chen 0003,Disease Prediction by Machine Learning Over Big Data From Healthcare Communities.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenHHWW17,https://doi.org/10.1109/ACCESS.2017.2694446 +Xiaomao Fan,Toward Automated Analysis of Electrocardiogram Big Data by Graphics Processing Unit for Mobile Health Application.,2017,5,IEEE Access,,db/journals/access/access5.html#FanCHCWL17,https://doi.org/10.1109/ACCESS.2017.2743525 +Zhefei Wang,A High-Transmittance Frequency-Selective Rasorber Based on Dipole Arrays.,2018,6,IEEE Access,,db/journals/access/access6.html#WangZFCLSD18,https://doi.org/10.1109/ACCESS.2018.2843795 +Hao Pan,On Stability Region of Two-User Interference Network With Permission to Utilize Past Receptions.,2017,5,IEEE Access,,db/journals/access/access5.html#PanLW17,https://doi.org/10.1109/ACCESS.2016.2636898 +Mengqing Mei,A Discriminant Subspace Learning Based Face Recognition Method.,2018,6,IEEE Access,,db/journals/access/access6.html#MeiHX18,https://doi.org/10.1109/ACCESS.2017.2773653 +Gaosi Li,Iterative Search Algorithm to Maximize System Capacity in Time-Varying MIMO DAS.,2018,6,IEEE Access,,db/journals/access/access6.html#LiWY18,https://doi.org/10.1109/ACCESS.2018.2809550 +Xi Xiao,SAIDR: A New Dynamic Model for SMS-Based Worm Propagation in Mobile Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#XiaoFHSZJ17,https://doi.org/10.1109/ACCESS.2017.2700011 +Biao Yang,Facial Expression Recognition Using Weighted Mixture Deep Neural Network Based on Double-Channel Facial Images.,2018,6,IEEE Access,,db/journals/access/access6.html#YangCNZ18,https://doi.org/10.1109/ACCESS.2017.2784096 +Tamer Abdelkader,A Localized Adaptive Strategy to Calculate the Backoff Interval in Contention-Based Vehicular Networks.,2014,2,IEEE Access,,db/journals/access/access2.html#AbdelkaderN14,https://doi.org/10.1109/ACCESS.2014.2309856 +Biao Yang,Cross-Scene Counting Based on Domain Adaptation-Extreme Learning Machine.,2018,6,IEEE Access,,db/journals/access/access6.html#YangCWZC18,https://doi.org/10.1109/ACCESS.2018.2800688 +Ali Arab,Proactive Recovery of Electric Power Assets for Resiliency Enhancement.,2015,3,IEEE Access,,db/journals/access/access3.html#ArabKHK15,https://doi.org/10.1109/ACCESS.2015.2404215 +Yun Liu 0006,Enhanced Coordinate Interleaved OFDM With Index Modulation.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuJYCWZ17,https://doi.org/10.1109/ACCESS.2017.2777805 +Caihong Kai,CSMA-Based Utility-Optimal Scheduling in the WLAN With a Full-Duplex Access Point.,2018,6,IEEE Access,,db/journals/access/access6.html#KaiHWG18,https://doi.org/10.1109/ACCESS.2018.2859260 +Yu Liu 0011,Active Plant Wall for Green Indoor Climate Based on Cloud and Internet of Things.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuHKWG18,https://doi.org/10.1109/ACCESS.2018.2847440 +Shrey Anand,Extended Understanding of Dyadic Friendship Using Fuzzy Measures: a Simulation Approach.,2017,5,IEEE Access,,db/journals/access/access5.html#AnandSG17,https://doi.org/10.1109/ACCESS.2017.2758395 +Jie Hao,Visible Light Based Occupancy Inference Using Ensemble Learning.,2018,6,IEEE Access,,db/journals/access/access6.html#HaoYYWZL18,https://doi.org/10.1109/ACCESS.2018.2809612 +Shen Liu,Experimental Study on Fine Titanium Wire Drawing with Two Ultrasonically Oscillating Dies.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuYXS18,https://doi.org/10.1109/ACCESS.2018.2811714 +Tan-Hsu Tan,Front-Door Event Classification Algorithm for Elderly People Living Alone in Smart House Using Wireless Binary Sensors.,2017,5,IEEE Access,,db/journals/access/access5.html#TanGJHK17,https://doi.org/10.1109/ACCESS.2017.2711495 +Ruiqi Tian,Coherent Integration Method of High-Speed Target for Frequency Agile Radar.,2018,6,IEEE Access,,db/journals/access/access6.html#TianLBC18,https://doi.org/10.1109/ACCESS.2018.2819167 +Li Wang 0045,Sum Rate Analysis for Precoder Design in Distributed MIMO Systems Over Composite Fading Channels.,2018,6,IEEE Access,,db/journals/access/access6.html#WangLZDH18,https://doi.org/10.1109/ACCESS.2018.2837057 +Goutham Reddy Alavalapati,A Secure Anonymous Authentication Protocol for Mobile Services on Elliptic Curve Cryptography.,2016,4,IEEE Access,,db/journals/access/access4.html#AlavalapatiDYY16,https://doi.org/10.1109/ACCESS.2016.2596292 +Seungcheol Choi,A Method for Fast Multi-Exposure Image Fusion.,2017,5,IEEE Access,,db/journals/access/access5.html#ChoiKL17,https://doi.org/10.1109/ACCESS.2017.2694038 +Tao Lu 0001,Robust Face Super-Resolution via Locality-Constrained Low-Rank Representation.,2017,5,IEEE Access,,db/journals/access/access5.html#LuXZWL17,https://doi.org/10.1109/ACCESS.2017.2717963 +Waixi Liu,Content Popularity Prediction and Caching for ICN: A Deep Learning Approach With SDN.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuZLPC18,https://doi.org/10.1109/ACCESS.2017.2781716 +Enrique Hernández-Orallo,An Analytical Model Based on Population Processes to Characterize Data Dissemination in 5G Opportunistic Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#Hernandez-Orallo18,https://doi.org/10.1109/ACCESS.2017.2779748 +Tarik A. Almohamad,Simultaneous Determination of Modulation Types and Signal-to-Noise Ratios Using Feature-Based Approach.,2018,6,IEEE Access,,db/journals/access/access6.html#AlmohamadSMS18,https://doi.org/10.1109/ACCESS.2018.2809448 +Guomin Sun,An Efficient Sparse Optimization Algorithm for Weighted and#8467*0 Shearlet-Based Method for Image Deblurring.,2017,5,IEEE Access,,db/journals/access/access5.html#SunLH17,https://doi.org/10.1109/ACCESS.2017.2670611 +Ines Ghribi,R-Codesign: Codesign Methodology for Real-Time Reconfigurable Embedded Systems Under Energy Constraints.,2018,6,IEEE Access,,db/journals/access/access6.html#GhribiAKLAP18,https://doi.org/10.1109/ACCESS.2018.2799852 +Xinchuan Fu,Pedestrian Detection by Feature Selected Self-Similarity Features.,2018,6,IEEE Access,,db/journals/access/access6.html#FuYZFS18,https://doi.org/10.1109/ACCESS.2018.2803160 +Marcia R. Friesen,A Survey of Agent-Based Modeling of Hospital Environmentss.,2014,2,IEEE Access,,db/journals/access/access2.html#FriesenM14,https://doi.org/10.1109/ACCESS.2014.2313957 +Ovidio Mario Bucci,Assessing Detection Limits in Magnetic Nanoparticle Enhanced Microwave Imaging.,2018,6,IEEE Access,,db/journals/access/access6.html#BucciBCCMS18,https://doi.org/10.1109/ACCESS.2018.2861461 +Tao Liu 0009,Cyclic Correntropy: Foundations and Theories.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuQL18,https://doi.org/10.1109/ACCESS.2018.2847346 +Sai Wang,Data Collection Strategy for Magnetic Induction Based Monitoring in Underwater Sensor Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#WangNS18,https://doi.org/10.1109/ACCESS.2018.2861946 +Qinghua Zhu,Optimal Scheduling of Complex Multi-Cluster Tools Based on Timed Resource-Oriented Petri Nets.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhuWQZ16,https://doi.org/10.1109/ACCESS.2016.2549546 +Omar Said,IoT-RTP and IoT-RTCP: Adaptive Protocols for Multimedia Transmission over Internet of Things Environments.,2017,5,IEEE Access,,db/journals/access/access5.html#SaidANR17,https://doi.org/10.1109/ACCESS.2017.2726902 +Fawad Khan,Owner Specified Excessive Access Control for Attribute Based Encryption.,2016,4,IEEE Access,,db/journals/access/access4.html#KhanLZ16,https://doi.org/10.1109/ACCESS.2016.2632132 +Jose Saldana,Unsticking the Wi-Fi Client: Smarter Decisions Using a Software Defined Wireless Solution.,2018,6,IEEE Access,,db/journals/access/access6.html#SaldanaMETRFS18,https://doi.org/10.1109/ACCESS.2018.2844088 +Lutao Liu,Joint Estimation of DOA and TDOA of Multiple Reflections in Mobile Communications.,2016,4,IEEE Access,,db/journals/access/access4.html#LiuL16,https://doi.org/10.1109/ACCESS.2016.2584088 +Sani Danjuma,An Alternative Approach to Normal Parameter Reduction Algorithm for Soft Set Theory.,2017,5,IEEE Access,,db/journals/access/access5.html#DanjumaIH17,https://doi.org/10.1109/ACCESS.2016.2645179 +Haixia Wang,Knowledge-Based Control and Optimization of Blast Furnace Gas System in Steel Industry.,2017,5,IEEE Access,,db/journals/access/access5.html#WangSL17,https://doi.org/10.1109/ACCESS.2017.2763630 +Xiangyu Wei,Shortest Path Network Interdiction With Goal Threshold.,2018,6,IEEE Access,,db/journals/access/access6.html#WeiZXYZ18,https://doi.org/10.1109/ACCESS.2018.2838570 +Wan A. W. M. Mahyiddin,Downlink Rate Analysis of Training-Based Massive MIMO Systems With Wireless Backhaul Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#MahyiddinZDM18,https://doi.org/10.1109/ACCESS.2018.2865195 +Samar Kaddouri,High-Frequency Acoustic Estimation of Time-Varying Underwater Sparse Channels Using Multiple Sources and Receivers Operated Simultaneously.,2018,6,IEEE Access,,db/journals/access/access6.html#KaddouriBB18,https://doi.org/10.1109/ACCESS.2018.2805264 +Andrej Dobrovoljc,Predicting Exploitations of Information Systems Vulnerabilities Through Attackers' Characteristics.,2017,5,IEEE Access,,db/journals/access/access5.html#DobrovoljcTL17,https://doi.org/10.1109/ACCESS.2017.2769063 +Xiaoying Gan,Unraveling the Impact of Users' Interest on Information Dissemination in Wireless Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#GanQFW18,https://doi.org/10.1109/ACCESS.2018.2841432 +Ioannis Karatzaferis,Investigation of Energy Savings on Industrial Motor Drives Using Bidirectional Converters.,2017,5,IEEE Access,,db/journals/access/access5.html#KaratzaferisTP17,https://doi.org/10.1109/ACCESS.2017.2748621 +Zhongchao Lin,An Efficient Matrix Equation Parallel Direct Solver for Higher-Order Method of Moments in Solution of Complex Electromagnetic Problems.,2018,6,IEEE Access,,db/journals/access/access6.html#LinGZZL18,https://doi.org/10.1109/ACCESS.2018.2841005 +Weichao Xu,A Fast Algorithm for Unbiased Estimation of Variance of AUC Based on Dynamic Programming.,2016,4,IEEE Access,,db/journals/access/access4.html#XuLSLZ16,https://doi.org/10.1109/ACCESS.2016.2628102 +Qiang Ma 0005,Authentication of Scalable Video Coding Streams Based on Topological Sort on Decoding Dependency Graph.,2017,5,IEEE Access,,db/journals/access/access5.html#MaXZ17,https://doi.org/10.1109/ACCESS.2017.2743019 +Chiu-Hung Chen,Evolutionary Design of Adjustable Six-Linkage Bar Manufacturing Mechanisms Using Niche Genetic Algorithms.,2016,4,IEEE Access,,db/journals/access/access4.html#ChenC16,https://doi.org/10.1109/ACCESS.2016.2597869 +Kyungjae Lee,Brightness-Based Convolutional Neural Network for Thermal Image Enhancement.,2017,5,IEEE Access,,db/journals/access/access5.html#LeeLLHL17,https://doi.org/10.1109/ACCESS.2017.2769687 +Le Sun,Fast Superpixel Based Subspace Low Rank Learning Method for Hyperspectral Denoising.,2018,6,IEEE Access,,db/journals/access/access6.html#SunJSZWX18,https://doi.org/10.1109/ACCESS.2018.2808474 +Hieu Minh Bui,Object Recognition Using Deep Convolutional Features Transformed by a Recursive Network Structure.,2016,4,IEEE Access,,db/journals/access/access4.html#BuiLCNB16,https://doi.org/10.1109/ACCESS.2016.2639543 +Isaac Perez-Andrade,Stochastic Computing Improves the Timing-Error Tolerance and Latency of Turbo Decoders: Design Guidelines and Tradeoffs.,2016,4,IEEE Access,,db/journals/access/access4.html#Perez-AndradeZM16,https://doi.org/10.1109/ACCESS.2016.2523063 +Wei Wang 0096,Beamforming for Simultaneous Wireless Information and Power Transfer in Two-Way Relay Channels.,2017,5,IEEE Access,,db/journals/access/access5.html#WangWMZZ17,https://doi.org/10.1109/ACCESS.2017.2701830 +Kyung-Rae Kim,Multiscale Feature Extractors for Stereo Matching Cost Computation.,2018,6,IEEE Access,,db/journals/access/access6.html#KimKK18a,https://doi.org/10.1109/ACCESS.2018.2838442 +Maharazu Mamman,An Adaptive Call Admission Control With Bandwidth Reservation for Downlink LTE Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#MammanHAM17,https://doi.org/10.1109/ACCESS.2017.2713451 +Shi Cheng,Locating Multiple Optima via Brain Storm Optimization Algorithms.,2018,6,IEEE Access,,db/journals/access/access6.html#ChengCLS18,https://doi.org/10.1109/ACCESS.2018.2811542 +Tariq Aziz,Enhancing PV Penetration in LV Networks Using Reactive Power Control and On Load Tap Changer With Existing Transformers.,2018,6,IEEE Access,,db/journals/access/access6.html#AzizK18,https://doi.org/10.1109/ACCESS.2017.2784840 +Michael Menth,Fair Resource Sharing for Stateless-Core Packet-Switched Networks With Prioritization.,2018,6,IEEE Access,,db/journals/access/access6.html#MenthZ18,https://doi.org/10.1109/ACCESS.2018.2859783 +Yujun Ma,Big Health Application System based on Health Internet of Things and Big Data.,2017,5,IEEE Access,,db/journals/access/access5.html#MaWYML17,https://doi.org/10.1109/ACCESS.2016.2638449 +Francisco D. Guillén-Gámez,A Proposal to Improve the Authentication Process in m-Health Environments.,2017,5,IEEE Access,,db/journals/access/access5.html#Guillen-GamezGA17,https://doi.org/10.1109/ACCESS.2017.2752176 +Changle Jing,Low-Complexity Group Alternate Iterative List Detection for MIMO Systems.,2016,4,IEEE Access,,db/journals/access/access4.html#JingXWWG16,https://doi.org/10.1109/ACCESS.2016.2607222 +Wenbin Cheng,H∞ Stabilization for Sampling Fuzzy Systems With Asynchronous Constraints on Membership Functions.,2017,5,IEEE Access,,db/journals/access/access5.html#ChengWZW17,https://doi.org/10.1109/ACCESS.2017.2656378 +Leyou Zhang,Improving Privacy-Preserving and Security for Decentralized Key-Policy Attributed-Based Encryption.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangLM18,https://doi.org/10.1109/ACCESS.2018.2810810 +Naeem Jan,A Balanced Energy-Consuming and Hole-Alleviating Algorithm for Wireless Sensor Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#JanJJAAKN17,https://doi.org/10.1109/ACCESS.2017.2676004 +Oktay Cetinkaya,Electric-Field Energy Harvesting From Lighting Elements for Battery-Less Internet of Things.,2017,5,IEEE Access,,db/journals/access/access5.html#CetinkayaA17,https://doi.org/10.1109/ACCESS.2017.2690968 +Md Akmol Hussain,Color Constancy Algorithm for Mixed-Illuminant Scene Images.,2018,6,IEEE Access,,db/journals/access/access6.html#HussainA18,https://doi.org/10.1109/ACCESS.2018.2808502 +Lishu Qin,Fuzzy Logic Controllers for Specialty Vehicles Using a Combination of Phase Plane Analysis and Variable Universe Approach.,2017,5,IEEE Access,,db/journals/access/access5.html#QinHLC17,https://doi.org/10.1109/ACCESS.2017.2656124 +Xiaopeng Yang,A Fast and Robust DOA Estimation Method Based on JSVD for Co-Prime Array.,2018,6,IEEE Access,,db/journals/access/access6.html#YangWLS18,https://doi.org/10.1109/ACCESS.2018.2860680 +Imran Hafeez Abbassi,McSeVIC: A Model Checking Based Framework for Security Vulnerability Analysis of Integrated Circuits.,2018,6,IEEE Access,,db/journals/access/access6.html#AbbassiKHKS18,https://doi.org/10.1109/ACCESS.2018.2846583 +Israel Pineda,Leaf Modeling and Growth Process Simulation Using the Level Set Method.,2017,5,IEEE Access,,db/journals/access/access5.html#PinedaG17,https://doi.org/10.1109/ACCESS.2017.2738032 +Mingliu Liu,Sensor Information Retrieval From Internet of Things: Representation and Indexing.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuLCZMZ18,https://doi.org/10.1109/ACCESS.2018.2849865 +Mohd Asyraf Zulkifley,Multiple-Model Fully Convolutional Neural Networks for Single Object Tracking on Thermal Infrared Video.,2018,6,IEEE Access,,db/journals/access/access6.html#ZulkifleyT18,https://doi.org/10.1109/ACCESS.2018.2859595 +Wiem Housseyni,Multiagent Architecture for Distributed Adaptive Scheduling of Reconfigurable Real-Time Tasks With Energy Harvesting Constraints.,2018,6,IEEE Access,,db/journals/access/access6.html#HousseyniMKLY18,https://doi.org/10.1109/ACCESS.2017.2781459 +Lu Zhang 0030,Detecting Spammer Groups From Product Reviews: A Partially Supervised Learning Model.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangWC18,https://doi.org/10.1109/ACCESS.2017.2784370 +Dan Wang,Case-Based Reasoning for Product Style Construction and Fuzzy Analytic Hierarchy Process Evaluation Modeling Using Consumers Linguistic Variables.,2017,5,IEEE Access,,db/journals/access/access5.html#WangLDASS17,https://doi.org/10.1109/ACCESS.2017.2677950 +Ling Xing,An Optimized Algorithm for Protecting Privacy Based on Coordinates Mean Value for Cognitive Radio Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#XingMGC18,https://doi.org/10.1109/ACCESS.2018.2822839 +Mu Li,Cooperation Diversity for Secrecy Enhancement in Cognitive Relay Wiretap Network Over Correlated Fading Channels.,2018,6,IEEE Access,,db/journals/access/access6.html#LiYHWY18,https://doi.org/10.1109/ACCESS.2018.2837225 +Yinglong Dai,Analyzing Tongue Images Using a Conceptual Alignment Deep Autoencoder.,2018,6,IEEE Access,,db/journals/access/access6.html#DaiW18,https://doi.org/10.1109/ACCESS.2017.2788849 +Xiao Yu,Rolling Bearing Fault Diagnosis Using Modified LFDA and EMD With Sensitive Feature Selection.,2018,6,IEEE Access,,db/journals/access/access6.html#YuDDWF18,https://doi.org/10.1109/ACCESS.2017.2773460 +Chuan Zhao,Secure Comparison Under Ideal/Real Simulation Paradigm.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaoZZJCC18,https://doi.org/10.1109/ACCESS.2018.2837665 +Kai Cui,Automated Software Testing Based on Hierarchical State Transition Matrix for Smart TV.,2017,5,IEEE Access,,db/journals/access/access5.html#CuiZSL17,https://doi.org/10.1109/ACCESS.2017.2694880 +Qiang Wu,An Improved Adaptive Subspace Tracking Algorithm Based on Approximated Power Iteration.,2018,6,IEEE Access,,db/journals/access/access6.html#WuZDPWQ18,https://doi.org/10.1109/ACCESS.2018.2863557 +Xin Bian,An Uplink Transmission Scheme for Pattern Division Multiple Access Based on DFT Spread Generalized Multi-Carrier Modulation.,2018,6,IEEE Access,,db/journals/access/access6.html#BianTWLS18,https://doi.org/10.1109/ACCESS.2018.2850146 +Payam Ezatpoor,Finding Top-k Dominance on Incomplete Big Data Using MapReduce Framework.,2018,6,IEEE Access,,db/journals/access/access6.html#EzatpoorZWC18,https://doi.org/10.1109/ACCESS.2018.2797048 +Stefano Borile,A Data-Driven Daylight Estimation Approach to Lighting Control.,2017,5,IEEE Access,,db/journals/access/access5.html#BorilePCSC17,https://doi.org/10.1109/ACCESS.2017.2679807 +Hao Zheng,A Hybrid Energy-Aware Resource Allocation Approach in Cloud Manufacturing Environment.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhengFT17,https://doi.org/10.1109/ACCESS.2017.2715829 +Hung-Min Hsu,Query-Based-Learning Genetic Algorithm to Construct Mobile-Oriented Catalogs in M-Commerce.,2017,5,IEEE Access,,db/journals/access/access5.html#HsuCH17,https://doi.org/10.1109/ACCESS.2017.2694490 +Thanh Nam Pham,A Cloud-Based Smart-Parking System Based on Internet-of-Things Technologies.,2015,3,IEEE Access,,db/journals/access/access3.html#PhamTNDD15,https://doi.org/10.1109/ACCESS.2015.2477299 +Masood Ur-Rehman,Design and Study of a Circular Polarised Conical-Disc-Backed Spiral Antenna for X-Band Applications.,2017,5,IEEE Access,,db/journals/access/access5.html#Ur-RehmanSYC17,https://doi.org/10.1109/ACCESS.2017.2758765 +Fuyang Chen,Nonlinear Fault-Tolerant Control for Hypersonic Flight Vehicle With Multi-Sensor Faults.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenNJ18,https://doi.org/10.1109/ACCESS.2018.2820008 +Ran Zhang,Transfer Learning With Neural Networks for Bearing Fault Diagnosis in Changing Working Conditions.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangTWG17,https://doi.org/10.1109/ACCESS.2017.2720965 +Qingbin Tong,A Fault Diagnosis Approach for Rolling Element Bearings Based on RSGWPT-LCD Bilayer Screening and Extreme Learning Machine.,2017,5,IEEE Access,,db/journals/access/access5.html#TongCHZNWLZ17,https://doi.org/10.1109/ACCESS.2017.2675940 +Fanbo Meng,Software-Reconfigurable System Supporting Point-to-Point Data Communication Between Vehicle Social Networks and Marketers.,2017,5,IEEE Access,,db/journals/access/access5.html#MengGGCZ17,https://doi.org/10.1109/ACCESS.2017.2764098 +Minghua Zhao,Restoration of Motion Blurred Images Based on Rich Edge Region Extraction Using a Gray-Level Co-Occurrence Matrix.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaoZSLL18,https://doi.org/10.1109/ACCESS.2018.2815608 +An Li,Implementation of a Fully-Parallel Turbo Decoder on a General-Purpose Graphics Processing Unit.,2016,4,IEEE Access,,db/journals/access/access4.html#LiMAH16,https://doi.org/10.1109/ACCESS.2016.2586309 +Zhongwei Hu,Weighted Sum Transmit Power Minimization for Full-Duplex System With SWIPT and Self-Energy Recycling.,2016,4,IEEE Access,,db/journals/access/access4.html#HuYZG16,https://doi.org/10.1109/ACCESS.2016.2593914 +Zheng Zhuang,Dual-Band Filtering Balanced-to-Unbalanced Impedance-Transforming Power Divider With High Frequency Ratio and Arbitrary Power Division.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhuangWKWL18,https://doi.org/10.1109/ACCESS.2018.2801816 +Jie Pan,Single-Sample Face Recognition Based on LPP Feature Transfer.,2016,4,IEEE Access,,db/journals/access/access4.html#PanWC16,https://doi.org/10.1109/ACCESS.2016.2574366 +Jun Zuo,Energy Efficient User Association for Cloud Radio Access Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#ZuoZYJL16,https://doi.org/10.1109/ACCESS.2016.2566338 +Anis Koubaa,DroneTrack: Cloud-Based Real-Time Object Tracking Using Unmanned Aerial Vehicles Over the Internet.,2018,6,IEEE Access,,db/journals/access/access6.html#KoubaaQ18,https://doi.org/10.1109/ACCESS.2018.2811762 +Zhao Xu,Data-Driven Inter-Turn Short Circuit Fault Detection in Induction Machines.,2017,5,IEEE Access,,db/journals/access/access5.html#XuHYKGGN17,https://doi.org/10.1109/ACCESS.2017.2764474 +Kefan Chen,A Scheme for Improving the Communications Efficiency Between the Control Plane and Data Plane of the SDN-Enabled Airborne Tactical Network.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenLZWZ18,https://doi.org/10.1109/ACCESS.2018.2852707 +Karim Alghoul,Heart Rate Variability Extraction From Videos Signals: ICA vs. EVM Comparison.,2017,5,IEEE Access,,db/journals/access/access5.html#AlghoulAOE17,https://doi.org/10.1109/ACCESS.2017.2678521 +Ling Tang,When Social Network Meets Mobile Cloud: A Social Group Utility Approach for Optimizing Computation Offloading in Cloudlet.,2016,4,IEEE Access,,db/journals/access/access4.html#TangCH16,https://doi.org/10.1109/ACCESS.2016.2611602 +Guodong Xu,A Hierarchical Energy Scheduling Framework of Microgrids With Hybrid Energy Storage Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#XuSFHC18,https://doi.org/10.1109/ACCESS.2017.2783903 +Xianrong Zheng,QoS Recommendation in Cloud Services.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhengXC17,https://doi.org/10.1109/ACCESS.2017.2695657 +Madhur Srivastava,A New Wavelet Denoising Method for Selecting Decomposition Levels and Noise Thresholds.,2016,4,IEEE Access,,db/journals/access/access4.html#SrivastavaAF16,https://doi.org/10.1109/ACCESS.2016.2587581 +Anne Immonen,Evaluating the Quality of Social Media Data in Big Data Architecture.,2015,3,IEEE Access,,db/journals/access/access3.html#ImmonenPO15,https://doi.org/10.1109/ACCESS.2015.2490723 +Shijing Ma,Multiobjective Environment/Economic Power Dispatch Using Evolutionary Multiobjective Optimization.,2018,6,IEEE Access,,db/journals/access/access6.html#MaWL18,https://doi.org/10.1109/ACCESS.2018.2795702 +Shiyuan Wang,Kernel Adaptive Filters With Feedback Based on Maximum Correntropy.,2018,6,IEEE Access,,db/journals/access/access6.html#WangDWQT18,https://doi.org/10.1109/ACCESS.2018.2808218 +G. Zhao,Detecting APT Malware Infections Based on Malicious DNS and Traffic Analysis.,2015,3,IEEE Access,,db/journals/access/access3.html#ZhaoXXW15,https://doi.org/10.1109/ACCESS.2015.2458581 +Albert Kim,New and Emerging Energy Sources for Implantable Wireless Microdevices.,2015,3,IEEE Access,,db/journals/access/access3.html#KimORZ15,https://doi.org/10.1109/ACCESS.2015.2406292 +Jiong Li,Digital Self-Interference Cancellation Based on Independent Component Analysis for Co-Time Co-frequency Full-Duplex Communication Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#LiZF17,https://doi.org/10.1109/ACCESS.2017.2712614 +María-Emilia Cambronero,A Calculus Supporting Contract Reasoning and Monitoring.,2017,5,IEEE Access,,db/journals/access/access5.html#CambroneroLP17,https://doi.org/10.1109/ACCESS.2017.2696577 +Zhaolong Ning,Rising Star Forecasting Based on Social Network Analysis.,2017,5,IEEE Access,,db/journals/access/access5.html#NingLZW17,https://doi.org/10.1109/ACCESS.2017.2765363 +Xiangzhi Bai,Multi-Focus Image Fusion Through Gradient- Based Decision Map Construction and Mathematical Morphology.,2016,4,IEEE Access,,db/journals/access/access4.html#BaiLCWZ16,https://doi.org/10.1109/ACCESS.2016.2604480 +Bruno Ferrarini,Performance Characterization of Image Feature Detectors in Relation to the Scene Content Utilizing a Large Image Database.,2018,6,IEEE Access,,db/journals/access/access6.html#FerrariniELRM18,https://doi.org/10.1109/ACCESS.2018.2795460 +Yongcheng Li,Multi-Objective Topology Planning for Microwave-Based Wireless Backhaul Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#LiCQSBS16,https://doi.org/10.1109/ACCESS.2016.2581187 +Feng Zhao 0003,Entity-Based Language Model Smoothing Approach for Smart Search.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaoTJ18,https://doi.org/10.1109/ACCESS.2017.2788417 +Eila Ovaska,Piecemeal Development of Intelligent Applications for Smart Spaces.,2014,2,IEEE Access,,db/journals/access/access2.html#OvaskaK14,https://doi.org/10.1109/ACCESS.2014.2309396 +Junjie Ma 0001,Orthogonal AMP.,2017,5,IEEE Access,,db/journals/access/access5.html#MaP17,https://doi.org/10.1109/ACCESS.2017.2653119 +Said M. Mikki,Empirical Geometrical Bounds on MIMO Antenna Arrays for Optimum Diversity Gain Performance: An Electromagnetic Design Approach.,2018,6,IEEE Access,,db/journals/access/access6.html#MikkiCA18,https://doi.org/10.1109/ACCESS.2018.2844022 +Hucheng Sun,Optimum Design of Wireless Power Transmission Systems in Unknown Electromagnetic Environments.,2017,5,IEEE Access,,db/journals/access/access5.html#SunG17,https://doi.org/10.1109/ACCESS.2017.2757002 +Jie Jin,Designing RF Ring Oscillator Using Current-Mode Technology.,2017,5,IEEE Access,,db/journals/access/access5.html#JinZZ17,https://doi.org/10.1109/ACCESS.2017.2692771 +Yang Yu,Multi-Frequency Test Generation for Incipient Faults in Analog Circuits Based on the Aliasing Measuring Model.,2018,6,IEEE Access,,db/journals/access/access6.html#YuJP18,https://doi.org/10.1109/ACCESS.2018.2849697 +Yong Mei Pan,A Compact Quasi-Isotropic Shorted Patch Antenna.,2017,5,IEEE Access,,db/journals/access/access5.html#PanZ17,https://doi.org/10.1109/ACCESS.2017.2651149 +Hailin Chen,Prediction of Drug-Disease Associations for Drug Repositioning Through Drug-miRNA-Disease Heterogeneous Network.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenZ18a,https://doi.org/10.1109/ACCESS.2018.2860632 +Dechuan Chen,Energy-Efficient Secure Transmission Design for the Internet of Things With an Untrusted Relay.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenYHCT18,https://doi.org/10.1109/ACCESS.2018.2805818 +Panagiotis Botsinis,Quantum-Assisted Indoor Localization for Uplink mm-Wave and Downlink Visible Light Communication Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#BotsinisAFBNCNZ17,https://doi.org/10.1109/ACCESS.2017.2733557 +Bo Ma 0004,A Novel Data Integration Framework Based on Unified Concept Model.,2017,5,IEEE Access,,db/journals/access/access5.html#MaJZZY17,https://doi.org/10.1109/ACCESS.2017.2672822 +Jun Wu 0007,Heterogeneous Manifold Ranking for Image Retrieval.,2017,5,IEEE Access,,db/journals/access/access5.html#WuHGZZ17,https://doi.org/10.1109/ACCESS.2017.2740326 +Jiaxin Yang,Joint Secure AF Relaying and Artificial Noise Optimization: A Penalized Difference-of-Convex Programming Framework.,2016,4,IEEE Access,,db/journals/access/access4.html#YangLCZHC16,https://doi.org/10.1109/ACCESS.2016.2628808 +Andrés Alayón Glazunov,A Spherical Probability Distribution Model of the User-Induced Mobile Phone Orientation.,2018,6,IEEE Access,,db/journals/access/access6.html#GlazunovL18,https://doi.org/10.1109/ACCESS.2018.2839960 +Oguz H. Dagci,Hybrid Electric Powertrain Design Methodology With Planetary Gear Sets for Performance and Fuel Economy.,2018,6,IEEE Access,,db/journals/access/access6.html#DagciPG18,https://doi.org/10.1109/ACCESS.2018.2796939 +Almaskhan Baimyshev,Augmenting Variable Stiffness Actuation Using Reaction Wheels.,2016,4,IEEE Access,,db/journals/access/access4.html#BaimyshevZV16,https://doi.org/10.1109/ACCESS.2016.2602704 +Kaiyuan Lu,Multidimensional Data-Driven Life Prediction Method for White LEDs Based on BP-NN and Improved-Adaboost Algorithm.,2017,5,IEEE Access,,db/journals/access/access5.html#LuZS17,https://doi.org/10.1109/ACCESS.2017.2761802 +Changchun Zhang,Massive MIMO as a Big Data System: Random Matrix Models and Testbed.,2015,3,IEEE Access,,db/journals/access/access3.html#ZhangQ15,https://doi.org/10.1109/ACCESS.2015.2433920 +Hanan H. Elazhary,The W5 Framework for Computation Offloading in the Internet of Things.,2018,6,IEEE Access,,db/journals/access/access6.html#ElazharyS18,https://doi.org/10.1109/ACCESS.2018.2829840 +Jahangir Khan,Mapping MODIS LST NDVI Imagery for Drought Monitoring in Punjab Pakistan.,2018,6,IEEE Access,,db/journals/access/access6.html#KhanWXWL18,https://doi.org/10.1109/ACCESS.2018.2821717 +Katerine Díaz-Chito,Continuous Head Pose Estimation Using Manifold Subspace Embedding and Multivariate Regression.,2018,6,IEEE Access,,db/journals/access/access6.html#Diaz-ChitoRHG18,https://doi.org/10.1109/ACCESS.2018.2817252 +Junaid Shuja,Analysis of Vector Code Offloading Framework in Heterogeneous Cloud and Edge Architectures.,2017,5,IEEE Access,,db/journals/access/access5.html#ShujaMAMGK17,https://doi.org/10.1109/ACCESS.2017.2713818 +Mansour Sattam Aldosari,A New Attribute Control Chart Using Multiple Dependent State Repetitive Sampling.,2017,5,IEEE Access,,db/journals/access/access5.html#AldosariAJ17,https://doi.org/10.1109/ACCESS.2017.2687523 +Willard H. Wattenburg,Utility Scale Compressed Air Energy Storage and Clean Power Using Waste Heat From Thermal Power Plants Plus Added Protection for Nuclear Power Plants.,2018,6,IEEE Access,,db/journals/access/access6.html#Wattenburg18,https://doi.org/10.1109/ACCESS.2018.2847351 +Davide Colombi,RF Energy Absorption by Biological Tissues in Close Proximity to Millimeter-Wave 5G Wireless Equipment.,2018,6,IEEE Access,,db/journals/access/access6.html#ColombiTTB18,https://doi.org/10.1109/ACCESS.2018.2790038 +Jianqi Cai,Influence of LED Correlated Color Temperature on Ocular Physiological Function and Subjective Perception of Discomfort.,2018,6,IEEE Access,,db/journals/access/access6.html#CaiHGDWY18,https://doi.org/10.1109/ACCESS.2017.2780276 +Erick Israel Guerra-Hernandez,A FPGA-Based Neuromorphic Locomotion System for Multi-Legged Robots.,2017,5,IEEE Access,,db/journals/access/access5.html#Guerra-Hernandez17,https://doi.org/10.1109/ACCESS.2017.2696985 +Le Xu,Joint Two-Dimensional DOA and Frequency Estimation for L-Shaped Array via Compressed Sensing PARAFAC Method.,2018,6,IEEE Access,,db/journals/access/access6.html#XuWZS18,https://doi.org/10.1109/ACCESS.2018.2850307 +Yuanlong Cao,A LDDoS-Aware Energy-Efficient Multipathing Scheme for Mobile Cloud Computing Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#CaoSLHWY17,https://doi.org/10.1109/ACCESS.2017.2731899 +Suhap Sahin,Smarttag: An Indoor Positioning System Based on Smart Transmit Power Scheme Using Active Tags.,2018,6,IEEE Access,,db/journals/access/access6.html#SahinOK18,https://doi.org/10.1109/ACCESS.2018.2824538 +Haris Pervaiz,Energy and Spectrum Efficient Transmission Techniques Under QoS Constraints Toward Green Heterogeneous Networks.,2015,3,IEEE Access,,db/journals/access/access3.html#PervaizMND15,https://doi.org/10.1109/ACCESS.2015.2479406 +Zhen Luo,Robust Hybrid Transceiver Design for AF Relaying in Millimeter Wave Systems Under Imperfect CSI.,2018,6,IEEE Access,,db/journals/access/access6.html#LuoLLWZ18,https://doi.org/10.1109/ACCESS.2018.2841021 +Yanli Yang,A Signal Theoretic Approach for Envelope Analysis of Real-Valued Signals.,2017,5,IEEE Access,,db/journals/access/access5.html#Yang17,https://doi.org/10.1109/ACCESS.2017.2688467 +Jian Sun 0011,Optimal Mode Selection With Uplink Data Rate Maximization for D2D-Aided Underlaying Cellular Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#SunLWXXVZ16,https://doi.org/10.1109/ACCESS.2016.2631243 +Kraisak Kesorn,Personalized Attraction Recommendation System for Tourists Through Check-In Data.,2017,5,IEEE Access,,db/journals/access/access5.html#KesornJS17,https://doi.org/10.1109/ACCESS.2017.2778293 +Yuan Liang,Research on Constellation-Splitting Criterion in Multiple Parameters WFRFT Modulations.,2018,6,IEEE Access,,db/journals/access/access6.html#LiangDXNZP18,https://doi.org/10.1109/ACCESS.2018.2848918 +Xu Chen 0010,Reengineering Fuzzy Spatiotemporal UML Data Model Into Fuzzy Spatiotemporal XML Model.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenYLM17,https://doi.org/10.1109/ACCESS.2017.2745540 +Hong Zhang 0012,A New Lossless Fault-Tolerance Mechanism in Hybrid Wireless-Optical Broadband Access Network.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangWWW18,https://doi.org/10.1109/ACCESS.2018.2805458 +Rini Ann Jerin Amalorpavaraj,Improved Fault Ride Through Capability in DFIG Based Wind Turbines Using Dynamic Voltage Restorer With Combined Feed-Forward and Feed-Back Control.,2017,5,IEEE Access,,db/journals/access/access5.html#AmalorpavarajKP17,https://doi.org/10.1109/ACCESS.2017.2750738 +Shakila Bu-Pasha,Vulnerabilities in Localization With Regard to GNSS and Harmful Radio Interference: International and EU Law Aspects.,2018,6,IEEE Access,,db/journals/access/access6.html#Bu-Pasha18,https://doi.org/10.1109/ACCESS.2018.2805282 +Yanbin Zou,Semidefinite Programming Methods for Alleviating Sensor Position Error in TDOA Localization.,2017,5,IEEE Access,,db/journals/access/access5.html#ZouLXW17,https://doi.org/10.1109/ACCESS.2017.2752206 +Jiawei Luo,An Efficient Network Motif Discovery Approach for Co-Regulatory Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#LuoDLN18,https://doi.org/10.1109/ACCESS.2018.2796565 +Sheeba Backia Mary Baskaran,QoS-Aware Frequency-Based 4G+Relative Authentication Model for Next Generation LTE and Its Dependent Public Safety Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#BaskaranRBM17,https://doi.org/10.1109/ACCESS.2017.2758646 +Jaber Moghaddasi,Multifunctional Transceiver for Future Radar Sensing and Radio Communicating Data-Fusion Platform.,2016,4,IEEE Access,,db/journals/access/access4.html#MoghaddasiW16,https://doi.org/10.1109/ACCESS.2016.2530979 +Changfan Zhang,Total-Amount Synchronous Control Based on Terminal Sliding-Mode Control.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangLYH17,https://doi.org/10.1109/ACCESS.2017.2688518 +David Dousset,A Compact High-Performance Orthomode Transducer for the Atacama Large Millimeter Array (ALMA) Band 1 (31-45 GHz).,2013,1,IEEE Access,,db/journals/access/access1.html#DoussetCW13,https://doi.org/10.1109/ACCESS.2013.2273971 +Zhiqing Liu,A 62-90 GHz High Linearity and Low Noise CMOS Mixer Using Transformer-Coupling Cascode Topology.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuDCJLWZK18,https://doi.org/10.1109/ACCESS.2018.2814062 +Tianyu Zhang,A Naturalness Preserved Fast Dehazing Algorithm Using HSV Color Space.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangHL18,https://doi.org/10.1109/ACCESS.2018.2806372 +Na Xu,Designing Geodata Service Composition Web Application Based on Service-Oriented Architecture.,2016,4,IEEE Access,,db/journals/access/access4.html#XuPW16,https://doi.org/10.1109/ACCESS.2016.2594066 +Qing Ding,RECT: A Cloud-Based Learning Tool for Graduate Software Engineering Practice Courses With Remote Tutor Support.,2017,5,IEEE Access,,db/journals/access/access5.html#DingC17,https://doi.org/10.1109/ACCESS.2017.2664070 +Katsuya Suto,An Energy-Efficient and Delay-Aware Wireless Computing System for Industrial Wireless Sensor Networks.,2015,3,IEEE Access,,db/journals/access/access3.html#SutoNKH15,https://doi.org/10.1109/ACCESS.2015.2443171 +Ming Zhang 0003,Convolutional Neural Networks for Automatic Cognitive Radio Waveform Recognition.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangDG17a,https://doi.org/10.1109/ACCESS.2017.2716191 +Betania Hernández-Ocaña,Bacterial Foraging Optimization Algorithm for Menu Planning.,2018,6,IEEE Access,,db/journals/access/access6.html#Hernandez-Ocana18,https://doi.org/10.1109/ACCESS.2018.2794198 +Tianqi Mao,Dual-Mode Index Modulation Aided OFDM.,2017,5,IEEE Access,,db/journals/access/access5.html#MaoWWCH17,https://doi.org/10.1109/ACCESS.2016.2601648 +Muhammad Abdulhamid Al-Hashimi,Evaluating Power and Energy Efficiency of Bitonic Mergesort on Graphics Processing Unit.,2017,5,IEEE Access,,db/journals/access/access5.html#Al-HashimiASI17,https://doi.org/10.1109/ACCESS.2017.2736525 +Yurong Wang,Hybrid One-Way Full-Duplex/Two-Way Half-Duplex Relaying Scheme.,2017,5,IEEE Access,,db/journals/access/access5.html#WangXLX17,https://doi.org/10.1109/ACCESS.2017.2694278 +Jingshuang Shen,A Microgrid Energy Management System and Risk Management Under an Electricity Market Environment.,2016,4,IEEE Access,,db/journals/access/access4.html#ShenJLW16,https://doi.org/10.1109/ACCESS.2016.2555926 +Zhongwei Sun,Fast Extended One-Versus-Rest Multi-Label Support Vector Machine Using Approximate Extreme Points.,2017,5,IEEE Access,,db/journals/access/access5.html#SunGLWLL17,https://doi.org/10.1109/ACCESS.2017.2699662 +Yu Zhang 0015,On the Capacity Scaling of Large Multipair Relay Networks With Successive Relaying Protocol.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangZPCZ17,https://doi.org/10.1109/ACCESS.2017.2690310 +Wenjia Wu,Efficient Fingerprinting-Based Android Device Identification With Zero-Permission Identifiers.,2016,4,IEEE Access,,db/journals/access/access4.html#WuWWLY16,https://doi.org/10.1109/ACCESS.2016.2626395 +Xiaolin Wang,Series-Parallel Switched-Capacitor Balancing Circuit for Hybrid Source Package.,2018,6,IEEE Access,,db/journals/access/access6.html#WangCF18,https://doi.org/10.1109/ACCESS.2018.2849864 +Milena Radenkovic,Towards Low Cost Prototyping of Mobile Opportunistic Disconnection Tolerant Networks and Systems.,2016,4,IEEE Access,,db/journals/access/access4.html#RadenkovicCR16,https://doi.org/10.1109/ACCESS.2016.2606501 +Prabhu Chandhar,Multi-Objective Framework for Dynamic Optimization of OFDMA Cellular Systems.,2016,4,IEEE Access,,db/journals/access/access4.html#ChandharD16,https://doi.org/10.1109/ACCESS.2016.2551640 +Xiaomei Bai,The Role of Positive and Negative Citations in Scientific Evaluation.,2017,5,IEEE Access,,db/journals/access/access5.html#BaiLNTX17,https://doi.org/10.1109/ACCESS.2017.2740226 +Wenxin Liang,GLTM: A Global and Local Word Embedding-Based Topic Model for Short Texts.,2018,6,IEEE Access,,db/journals/access/access6.html#LiangFLLZ18,https://doi.org/10.1109/ACCESS.2018.2863260 +Binbin Li,Fault-Tolerant Control of Medium-Voltage Modular Multilevel Converters With Minimum Performance Degradation Under Submodule Failures.,2018,6,IEEE Access,,db/journals/access/access6.html#LiXDX18,https://doi.org/10.1109/ACCESS.2018.2811904 +Jiao Feng,Distributed Reciprocal-Selection-Based 'Win-Win' Cooperative Medium Access and its Stability Analysis.,2016,4,IEEE Access,,db/journals/access/access4.html#FengLNH16,https://doi.org/10.1109/ACCESS.2016.2602398 +Umar Farooq,A Time-Delayed Multi-Master-Single-Slave Non-Linear Tele-Robotic System Through State Convergence.,2018,6,IEEE Access,,db/journals/access/access6.html#FarooqGEAAL18,https://doi.org/10.1109/ACCESS.2017.2782178 +Lianghai Ji,Applying Multiradio Access Technologies for Reliability Enhancement in Vehicle-to-Everything Communication.,2018,6,IEEE Access,,db/journals/access/access6.html#JiWHS18,https://doi.org/10.1109/ACCESS.2018.2829606 +Li Guo 0006,Lossy Compression for Embedded Computer Vision Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#GuoZZKG18,https://doi.org/10.1109/ACCESS.2018.2852809 +Osama Alsaryrah,Bi-Objective Optimization for Energy Aware Internet of Things Service Composition.,2018,6,IEEE Access,,db/journals/access/access6.html#AlsaryrahMC18,https://doi.org/10.1109/ACCESS.2018.2836334 +Yang Fang,Relational Knowledge Prediction via Dynamic Bi-Mode Embedding.,2018,6,IEEE Access,,db/journals/access/access6.html#FangZTX18a,https://doi.org/10.1109/ACCESS.2018.2832165 +Wenson Chang,Efficient Time-Slot Adjustment and Packet-Scheduling Algorithm for Full-Duplex Multi-Hop Relay-Assisted mmWave Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ChangWY18,https://doi.org/10.1109/ACCESS.2018.2856867 +Veronica Fernandez,Correction of Wavefront Tilt Caused by Atmospheric Turbulence Using Quadrant Detectors for Enabling Fast Free-Space Quantum Communications in Daylight.,2018,6,IEEE Access,,db/journals/access/access6.html#FernandezGOC18,https://doi.org/10.1109/ACCESS.2018.2791099 +Bin Chen 0004,Original Symbol Phase Rotated Secure Transmission Against Powerful Massive MIMO Eavesdropper.,2016,4,IEEE Access,,db/journals/access/access4.html#ChenZLWLY16,https://doi.org/10.1109/ACCESS.2016.2580673 +Shushi Gu,ARMA-Based Adaptive Coding Transmission Over Millimeter-Wave Channel for Integrated Satellite-Terrestrial Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#GuJHWZ18,https://doi.org/10.1109/ACCESS.2018.2825256 +Anshul Gupta,Dual-Band Circularly Polarized Aperture Coupled Rectangular Dielectric Resonator Antenna for Wireless Applications.,2018,6,IEEE Access,,db/journals/access/access6.html#GuptaG18,https://doi.org/10.1109/ACCESS.2018.2791417 +Zhitao Guan,Utility-Privacy Tradeoff Based on Random Data Obfuscation in Internet of Energy.,2017,5,IEEE Access,,db/journals/access/access5.html#GuanSWZZM17,https://doi.org/10.1109/ACCESS.2017.2662940 +Xiaohui Peng,Reduction of the Instrument Model Error in Aperture Synthesis Radiometers.,2018,6,IEEE Access,,db/journals/access/access6.html#PengHZCZH18,https://doi.org/10.1109/ACCESS.2018.2795530 +Zhi Wu,Interval State Estimation of Distribution Network With Power Flow Constraint.,2018,6,IEEE Access,,db/journals/access/access6.html#WuZGZL18,https://doi.org/10.1109/ACCESS.2018.2856823 +Wenzhao Zhao,Detail-Preserving Image Denoising via Adaptive Clustering and Progressive PCA Thresholding.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaoLLQ18,https://doi.org/10.1109/ACCESS.2017.2780985 +Jian Xiong 0004,An Intelligent Dual-Voltage Driving Method and Circuit For a Common Rail Injector for Heavy-Duty Diesel Engines.,2018,6,IEEE Access,,db/journals/access/access6.html#XiongG18,https://doi.org/10.1109/ACCESS.2017.2687038 +Xiaoping Yang,Improvement of GPSR Protocol in Vehicular Ad Hoc Network.,2018,6,IEEE Access,,db/journals/access/access6.html#YangLQD18,https://doi.org/10.1109/ACCESS.2018.2853112 +Bruno Augusto Angélico,On Guaranteeing Convergence of Discrete LQG/LTR When Augmenting It With Forward PI Controllers.,2017,5,IEEE Access,,db/journals/access/access5.html#AngelicoTBN17,https://doi.org/10.1109/ACCESS.2017.2768160 +Li Guo 0008,Multi-Label Classification Methods for Green Computing and Application for Mobile Medical Recommendations.,2016,4,IEEE Access,,db/journals/access/access4.html#GuoJYYSH16,https://doi.org/10.1109/ACCESS.2016.2578638 +Yuxuan Ke,Robust Adaptive Beamforming Using Noise Reduction Preprocessing-Based Fully Automatic Diagonal Loading and Steering Vector Estimation.,2017,5,IEEE Access,,db/journals/access/access5.html#KeZPL17,https://doi.org/10.1109/ACCESS.2017.2725450 +Ali Alzahrani,Multi-Core Dataflow Design and Implementation of Secure Hash Algorithm-3.,2018,6,IEEE Access,,db/journals/access/access6.html#AlzahraniG18,https://doi.org/10.1109/ACCESS.2018.2799802 +Lachlan J. Gunn,A New Transient Attack on the Kish Key Distribution System.,2015,3,IEEE Access,,db/journals/access/access3.html#GunnAA15,https://doi.org/10.1109/ACCESS.2015.2480422 +Zhi Zhao,A Green Distributed Signal Reconstruction Algorithm in Wireless Sensor Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhaoFP16,https://doi.org/10.1109/ACCESS.2016.2572303 +Yonghong Hou,Spatially and Temporally Structured Global to Local Aggregation of Dynamic Depth Information for Action Recognition.,2018,6,IEEE Access,,db/journals/access/access6.html#HouWWGL18,https://doi.org/10.1109/ACCESS.2017.2782258 +Phuong Luong,Energy-Efficient WiFi Offloading and Network Management in Heterogeneous Wireless Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#LuongNLDH16,https://doi.org/10.1109/ACCESS.2017.2647739 +Roberto Batista Sardenberg,Generalization of the Passivity Criterion for One-Port Devices Presenting Negative Real Part Admittances.,2017,5,IEEE Access,,db/journals/access/access5.html#SardenbergF17,https://doi.org/10.1109/ACCESS.2017.2747398 +Gang Li,Maximizing Algebraic Connectivity via Minimum Degree and Maximum Distance.,2018,6,IEEE Access,,db/journals/access/access6.html#LiHHW18,https://doi.org/10.1109/ACCESS.2018.2857411 +Hamidreza Iranmanesh,MPC-Based Control of a Large-Scale Power System Subject to Consecutive Pulse Load Variations.,2017,5,IEEE Access,,db/journals/access/access5.html#IranmaneshA17,https://doi.org/10.1109/ACCESS.2017.2772866 +Ruihong Jiang,Optimal Design of SWIPT Systems With Multiple Heterogeneous Users Under Non-linear Energy Harvesting Model.,2017,5,IEEE Access,,db/journals/access/access5.html#JiangXFZZ17,https://doi.org/10.1109/ACCESS.2017.2713464 +Yun Ye,Overview of LTE Spectrum Sharing Technologies.,2016,4,IEEE Access,,db/journals/access/access4.html#YeWSQ16,https://doi.org/10.1109/ACCESS.2016.2626719 +Wei-Po Lee,Predicting Drug Side Effects Using Data Analytics and the Integration of Multiple Data Sources.,2017,5,IEEE Access,,db/journals/access/access5.html#LeeHCLL17,https://doi.org/10.1109/ACCESS.2017.2755045 +Mu-Chun Su,A Jacobian Matrix-Based Learning Machine and Its Applications in Medical Diagnosis.,2017,5,IEEE Access,,db/journals/access/access5.html#SuHWW17,https://doi.org/10.1109/ACCESS.2017.2677458 +Fatma A. Newagy,Global Energy-Efficiency Metric for Coordinated Cognitive Radio Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#Newagy16,https://doi.org/10.1109/ACCESS.2016.2616221 +Fedwa Laamarti,Multimedia for Social Good: Green Energy Donation for Healthier Societies.,2018,6,IEEE Access,,db/journals/access/access6.html#LaamartiE18,https://doi.org/10.1109/ACCESS.2018.2863114 +Jinghua Jiang,Towards Secure and Accurate Targeted Mobile Coupon Delivery.,2016,4,IEEE Access,,db/journals/access/access4.html#JiangZYSGWY16,https://doi.org/10.1109/ACCESS.2016.2624779 +Lingxia Wang,User Oriented Resource Management With Virtualization: A Hierarchical Game Approach.,2018,6,IEEE Access,,db/journals/access/access6.html#WangYWYL18,https://doi.org/10.1109/ACCESS.2018.2845913 +Sana Ullah Jan,Sensor Fault Classification Based on Support Vector Machine and Statistical Time-Domain Features.,2017,5,IEEE Access,,db/journals/access/access5.html#JanLSK17,https://doi.org/10.1109/ACCESS.2017.2705644 +Longzhuang He,Bandwidth Efficiency Maximization for Single-Cell Massive Spatial Modulation MIMO: An Adaptive Power Allocation Perspective.,2017,5,IEEE Access,,db/journals/access/access5.html#HeWSH17,https://doi.org/10.1109/ACCESS.2017.2668420 +Xiyu Wang,Channel Estimation With Expectation Maximization and Historical Information Based Basis Expansion Model for Wireless Communication Systems on High Speed Railways.,2018,6,IEEE Access,,db/journals/access/access6.html#WangWFA18,https://doi.org/10.1109/ACCESS.2017.2745708 +Cheng Peng 0003,Human Action Segmentation Based on a Streaming Uniform Entropy Slice Method.,2018,6,IEEE Access,,db/journals/access/access6.html#PengLHT18,https://doi.org/10.1109/ACCESS.2017.2788943 +Hai-Di Dong,Fast Dual Purpose Algorithm Based on Novel Unified Cost Function.,2018,6,IEEE Access,,db/journals/access/access6.html#Hai-DiYBG18,https://doi.org/10.1109/ACCESS.2018.2808951 +Achilleas Psyllidis,Regionalization of Social Interactions and Points-of-Interest Location Prediction With Geosocial Data.,2018,6,IEEE Access,,db/journals/access/access6.html#PsyllidisYB18,https://doi.org/10.1109/ACCESS.2018.2850062 +Chenguang Shi,Non-Cooperative Game Theoretic Power Allocation Strategy for Distributed Multiple-Radar Architecture in a Spectrum Sharing Environment.,2018,6,IEEE Access,,db/journals/access/access6.html#ShiWSZ18,https://doi.org/10.1109/ACCESS.2018.2817625 +Su Hu,TDCS-IDMA System for Cognitive Radio Networks With Cloud.,2018,6,IEEE Access,,db/journals/access/access6.html#HuLGWB0LY18,https://doi.org/10.1109/ACCESS.2018.2825223 +Tae-Jun Lee,Channel Estimation and Data Detection in the Presence of Phase Noise in MIMO-OFDM Systems With Independent Oscillators.,2017,5,IEEE Access,,db/journals/access/access5.html#LeeK17,https://doi.org/10.1109/ACCESS.2017.2709325 +Xinqiang Liu,Performance Calculation and Design of Stratospheric Propeller.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuH17,https://doi.org/10.1109/ACCESS.2017.2725303 +Jin Zhang,An Improved Archaeology Algorithm Based on Integrated Multi-Source Biological Information for Yeast Protein Interaction Network.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangYSZ17,https://doi.org/10.1109/ACCESS.2017.2690664 +Zhengrui Zhang,Sparse Constrained Transformation Model Based on Radial Basis Function Expansion: Application to Cardiac and Brain Image Registration.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangYLC18,https://doi.org/10.1109/ACCESS.2018.2860627 +Yitao Mo,Resource Allocation in Cloud Radio Access Networks With Device-to-Device Communications.,2017,5,IEEE Access,,db/journals/access/access5.html#MoPXSJ17,https://doi.org/10.1109/ACCESS.2017.2669220 +Dimitris Chatzopoulos,Mobile Augmented Reality Survey: From Where We Are to Where We Go.,2017,5,IEEE Access,,db/journals/access/access5.html#ChatzopoulosBHH17,https://doi.org/10.1109/ACCESS.2017.2698164 +Yi-Chung Chen,Skyline Path Queries With Aggregate Attributes.,2016,4,IEEE Access,,db/journals/access/access4.html#ChenL16,https://doi.org/10.1109/ACCESS.2016.2602702 +Shuihua Wang,Cerebral Micro-Bleed Detection Based on the Convolution Neural Network With Rank Based Average Pooling.,2017,5,IEEE Access,,db/journals/access/access5.html#WangJHCD17,https://doi.org/10.1109/ACCESS.2017.2736558 +Sherif M. Ismael,Practical Considerations for Optimal Conductor Reinforcement and Hosting Capacity Enhancement in Radial Distribution Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#IsmaelAAZ18,https://doi.org/10.1109/ACCESS.2018.2835165 +Pengyu Zhang,Automatic Image Annotation Based on Multi-Auxiliary Information.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangWLZ17,https://doi.org/10.1109/ACCESS.2017.2749252 +Bjorn Thors,Time-Averaged Realistic Maximum Power Levels for the Assessment of Radio Frequency Exposure for 5G Radio Base Stations Using Massive MIMO.,2017,5,IEEE Access,,db/journals/access/access5.html#ThorsFCT17,https://doi.org/10.1109/ACCESS.2017.2753459 +Yan Wang,Skyline Preference Query Based on Massive and Incomplete Dataset.,2017,5,IEEE Access,,db/journals/access/access5.html#WangSWSS17,https://doi.org/10.1109/ACCESS.2016.2639558 +Olivera Kotevska,Dynamic Network Model for Smart City Data-Loss Resilience Case Study: City-to-City Network for Crime Analytics.,2017,5,IEEE Access,,db/journals/access/access5.html#KotevskaKSLB17,https://doi.org/10.1109/ACCESS.2017.2757841 +Hung-Fei Kuo,Fabrication of p-n Junction With an n-Type Silicon Nanoparticle Layer by Using Infrared Fiber Laser Illumination.,2016,4,IEEE Access,,db/journals/access/access4.html#KuoDF16,https://doi.org/10.1109/ACCESS.2016.2612687 +Zheng Fang,A QoS Guarantee Based Hybrid Media Access Control Protocol of Aeronautical Ad Hoc Network.,2018,6,IEEE Access,,db/journals/access/access6.html#FangQDD18,https://doi.org/10.1109/ACCESS.2017.2775342 +Chunsheng Zhu,Green Internet of Things for Smart World.,2015,3,IEEE Access,,db/journals/access/access3.html#ZhuLSN15,https://doi.org/10.1109/ACCESS.2015.2497312 +Sabih ur Rehman,Enhancing Quality-of-Service Conditions Using a Cross-Layer Paradigm for Ad-Hoc Vehicular Communication.,2017,5,IEEE Access,,db/journals/access/access5.html#RehmanKIZI17,https://doi.org/10.1109/ACCESS.2017.2717501 +Jin Qi,A Hybrid Security and Compressive Sensing-Based Sensor Data Gathering Scheme.,2015,3,IEEE Access,,db/journals/access/access3.html#QiHMS15,https://doi.org/10.1109/ACCESS.2015.2439034 +Yue Xiao,Hybrid Prefix OFDM Transmission Toward Future Wireless Communications.,2018,6,IEEE Access,,db/journals/access/access6.html#XiaoLWXX18,https://doi.org/10.1109/ACCESS.2018.2827160 +Huanyu Li 0002,An Integrated Altitude Control Design for a Tail-Sitter UAV Equipped With Turbine Engines.,2017,5,IEEE Access,,db/journals/access/access5.html#LiLLLX17,https://doi.org/10.1109/ACCESS.2017.2707982 +Xiaojie Tian,Numerical and Experimental Studies on a Three-Dimensional Numerical Wave Tank.,2018,6,IEEE Access,,db/journals/access/access6.html#TianWLDG18,https://doi.org/10.1109/ACCESS.2018.2794064 +Houhua Jing,Multi-Objective Optimal Control Allocation for an Over-Actuated Electric Vehicle.,2018,6,IEEE Access,,db/journals/access/access6.html#JingJL18,https://doi.org/10.1109/ACCESS.2017.2788941 +Bowen Feng,An Efficient Rateless Scheme Based on the Extendibility of Systematic Polar Codes.,2017,5,IEEE Access,,db/journals/access/access5.html#FengZJ17,https://doi.org/10.1109/ACCESS.2017.2762363 +Chen Jia,Identification of Pedestrians From Confused Planar Objects Using Light Field Imaging.,2018,6,IEEE Access,,db/journals/access/access6.html#JiaSZZWC18,https://doi.org/10.1109/ACCESS.2018.2855723 +Fangqing Wen,A Tensor-Based Covariance Differencing Method for Direction Estimation in Bistatic MIMO Radar With Unknown Spatial Colored Noise.,2017,5,IEEE Access,,db/journals/access/access5.html#WenZZZWZ17,https://doi.org/10.1109/ACCESS.2017.2749404 +Mouna Hajir,Coalitional Games for Joint Co-Tier and Cross-Tier Cooperative Spectrum Sharing in Dense Heterogeneous Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#HajirLG16,https://doi.org/10.1109/ACCESS.2016.2562498 +Roomana Yousaf,Fuzzy Power Allocation for Opportunistic Relay in Energy Harvesting Wireless Sensor Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#YousafAAH17,https://doi.org/10.1109/ACCESS.2017.2743063 +Anwen Liao,2D Unitary ESPRIT Based Super-Resolution Channel Estimation for Millimeter-Wave Massive MIMO With Hybrid Precoding.,2017,5,IEEE Access,,db/journals/access/access5.html#LiaoGWWA17,https://doi.org/10.1109/ACCESS.2017.2768579 +Yuhao Wang,Multi-Objective Resource Allocation in a NOMA Cognitive Radio Network With a Practical Non-Linear Energy Harvesting Model.,2018,6,IEEE Access,,db/journals/access/access6.html#WangWZCWY18,https://doi.org/10.1109/ACCESS.2017.2783880 +Rory Raeper,Cooperative Correlational and Discriminative Ensemble Classifier Learning for Early Dementia Diagnosis Using Morphological Brain Multiplexes.,2018,6,IEEE Access,,db/journals/access/access6.html#RaeperLR18,https://doi.org/10.1109/ACCESS.2018.2863657 +Jianping Zheng,Hybrid Spatial Modulation Aided Distributed Relays: Threshold Detection and Constellation Rotation.,2017,5,IEEE Access,,db/journals/access/access5.html#Zheng17,https://doi.org/10.1109/ACCESS.2017.2757512 +Siddharth Sharma,OFDMA-Based Device-to-Device Communication Frameworks: Testbed Deployment and Measurement Results.,2018,6,IEEE Access,,db/journals/access/access6.html#SharmaGB18,https://doi.org/10.1109/ACCESS.2018.2807816 +Guanding Yu,IEEE Access Special Section Editorial: Mobile Edge Computing for Wireless Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#YuZLKW18,https://doi.org/10.1109/ACCESS.2018.2806239 +Nicholas P. Lawrence,3-D Low Earth Orbit Vector Estimation of Faraday Rotation and Path Delay.,2015,3,IEEE Access,,db/journals/access/access3.html#LawrenceHA15,https://doi.org/10.1109/ACCESS.2015.2479247 +Jian Shen,Sliding Block-Based Hybrid Feature Subset Selection in Network Traffic.,2017,5,IEEE Access,,db/journals/access/access5.html#ShenXZJ17,https://doi.org/10.1109/ACCESS.2017.2750489 +Jin-Ling Lin,Balancing and Reconstruction of Segmented Postures for Humanoid Robots in Imitation of Motion.,2017,5,IEEE Access,,db/journals/access/access5.html#LinH17,https://doi.org/10.1109/ACCESS.2017.2743068 +Mingjun Dai,A Low Storage Room Requirement Framework for Distributed Ledger in Blockchain.,2018,6,IEEE Access,,db/journals/access/access6.html#DaiZWJ18,https://doi.org/10.1109/ACCESS.2018.2814624 +Yuting Su,Spatiotemporal Joint Mitosis Detection Using CNN-LSTM Network in Time-Lapse Phase Contrast Microscopy Images.,2017,5,IEEE Access,,db/journals/access/access5.html#SuLCL17,https://doi.org/10.1109/ACCESS.2017.2745544 +Shengli Xie,Low-Sparsity Unobservable Attacks Against Smart Grid: Attack Exposure Analysis and a Data-Driven Attack Scheme.,2017,5,IEEE Access,,db/journals/access/access5.html#XieYXLH17,https://doi.org/10.1109/ACCESS.2017.2680463 +Zhuojun Duan,Practical Incentive Mechanisms for IoT-Based Mobile Crowdsensing Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#DuanTYCHY17,https://doi.org/10.1109/ACCESS.2017.2751304 +Awais Qasim,MAPE-K Interfaces for Formal Modeling of Real-Time Self-Adaptive Multi-Agent Systems.,2016,4,IEEE Access,,db/journals/access/access4.html#QasimK16,https://doi.org/10.1109/ACCESS.2016.2592381 +Lamia Al-Braheem,Toward Designing a Li-Fi-Based Hierarchical IoT Architecture.,2018,6,IEEE Access,,db/journals/access/access6.html#Al-BraheemAAAB18,https://doi.org/10.1109/ACCESS.2018.2857627 +Norhasliza M. Yusoff,Selection of Measurement Method for Detection of Driver Visual Cognitive Distraction: A Review.,2017,5,IEEE Access,,db/journals/access/access5.html#YusoffAGMSM17,https://doi.org/10.1109/ACCESS.2017.2750743 +Xinlei Ma,Exploration of the Reliability of Automotive Electronic Power Steering System Using Device Junction Electrothermal Profile Cycle.,2016,4,IEEE Access,,db/journals/access/access4.html#MaGWJ16,https://doi.org/10.1109/ACCESS.2016.2621034 +Fares Al-shargie,Stress Assessment Based on Decision Fusion of EEG and fNIRS Signals.,2017,5,IEEE Access,,db/journals/access/access5.html#Al-shargieTK17,https://doi.org/10.1109/ACCESS.2017.2754325 +Zhongliang Fu,Mining Frequent Route Patterns Based on Personal Trajectory Abstraction.,2017,5,IEEE Access,,db/journals/access/access5.html#FuTXZ17,https://doi.org/10.1109/ACCESS.2017.2712703 +Yue Quan,Distributed Fault Detection for Second-Order Delayed Multi-Agent Systems With Adversaries.,2017,5,IEEE Access,,db/journals/access/access5.html#QuanCWP17,https://doi.org/10.1109/ACCESS.2017.2723906 +Zhiqiang Li 0004,Stabilization of Discrete-Time Systems via a Partially Disabled Controller Experiencing Forced Dwell Times.,2018,6,IEEE Access,,db/journals/access/access6.html#LiW18a,https://doi.org/10.1109/ACCESS.2018.2826524 +Kyungmo Park,Performance Evaluation of the Emerging Media-Transport Technologies for the Next-Generation Digital Broadcasting Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#ParkKL17,https://doi.org/10.1109/ACCESS.2017.2737557 +Xue-yuan Yin,Research of Security as a Service for VMs in IaaS Platform.,2018,6,IEEE Access,,db/journals/access/access6.html#YinCCSLT18,https://doi.org/10.1109/ACCESS.2018.2837039 +Longmei Li,Preference-Based Evolutionary Many-Objective Optimization for Agile Satellite Mission Planning.,2018,6,IEEE Access,,db/journals/access/access6.html#LiCLJE18,https://doi.org/10.1109/ACCESS.2018.2859028 +Hong Lu,Object Tracking Based on Stable Feature Mining Using Intraframe Clustering and Interframe Association.,2017,5,IEEE Access,,db/journals/access/access5.html#LuGLZ17,https://doi.org/10.1109/ACCESS.2017.2673400 +Fengyong Li,Robust Batch Steganography in Social Networks With Non-Uniform Payload and Data Decomposition.,2018,6,IEEE Access,,db/journals/access/access6.html#LiWZYLW18,https://doi.org/10.1109/ACCESS.2018.2841415 +Hyunjin Choi,VPL-Based Big Data Analysis System: UDAS.,2018,6,IEEE Access,,db/journals/access/access6.html#ChoiGSB18,https://doi.org/10.1109/ACCESS.2018.2857845 +Abdulsahib Albehadili,An Upper Bound on PHY-Layer Key Generation for Secure Communications Over a Nakagami-M Fading Channel With Asymmetric Additive Noise.,2018,6,IEEE Access,,db/journals/access/access6.html#AlbehadiliSJOD18,https://doi.org/10.1109/ACCESS.2018.2827925 +Si-Zhe Chen,An Aerodynamics-Based Novel Optimal Power Extraction Strategy for Offshore Wind Farms With Central VSCs.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenXZYIFZ18,https://doi.org/10.1109/ACCESS.2018.2864600 +Yu Xie,The Modeling and Cross-Layer Optimization of 802.11p VANET Unicast.,2018,6,IEEE Access,,db/journals/access/access6.html#XieHM18,https://doi.org/10.1109/ACCESS.2017.2761788 +Ruixia Liu,Finite-Time Synchronization Control of Spacecraft Formation With Network-Induced Communication Delay.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuCL17,https://doi.org/10.1109/ACCESS.2017.2772319 +Jiawei Xu,Optimized Near-Zero Quantization Method for Flexible Memristor Based Neural Network.,2018,6,IEEE Access,,db/journals/access/access6.html#XuHYZZZ18,https://doi.org/10.1109/ACCESS.2018.2839106 +Byung Moo Lee,Improved Energy Efficiency of Massive MIMO-OFDM in Battery-Limited IoT Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#Lee18c,https://doi.org/10.1109/ACCESS.2018.2851591 +Asma Bouhlel,Performance of OFDM-IM Under Joint Hardware Impairments and Channel Estimation Errors Over Correlated Fading Channels.,2017,5,IEEE Access,,db/journals/access/access5.html#BouhlelDIS17,https://doi.org/10.1109/ACCESS.2017.2771198 +Ahmad Rauf Subhani,Machine Learning Framework for the Detection of Mental Stress at Multiple Levels.,2017,5,IEEE Access,,db/journals/access/access5.html#SubhaniMSKM17,https://doi.org/10.1109/ACCESS.2017.2723622 +R. Sanjay,Optimal Allocation of Distributed Generation Using Hybrid Grey Wolf Optimizer.,2017,5,IEEE Access,,db/journals/access/access5.html#SanjayJRRM17,https://doi.org/10.1109/ACCESS.2017.2726586 +Sen Qiu,Using Body-Worn Sensors for Preliminary Rehabilitation Assessment in Stroke Victims With Gait Impairment.,2018,6,IEEE Access,,db/journals/access/access6.html#QiuWZLJ18,https://doi.org/10.1109/ACCESS.2018.2816816 +Zeng Hu,Low-Complexity Subcarrier-Wise Detection for MIMO-OFDM With Index Modulation.,2017,5,IEEE Access,,db/journals/access/access5.html#HuLZCWW17,https://doi.org/10.1109/ACCESS.2017.2743744 +Zhengfei Liu,An Adaptive AQM Algorithm Based on a Novel Information Compression Model.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuSHH18,https://doi.org/10.1109/ACCESS.2018.2844407 +Hung-Fei Kuo,Artificial Neural Network for Diffraction Based Overlay Measurement.,2016,4,IEEE Access,,db/journals/access/access4.html#KuoF16,https://doi.org/10.1109/ACCESS.2016.2618350 +Yihenew Dagne Beyene,Cloud-RAN Architecture for Indoor DAS.,2014,2,IEEE Access,,db/journals/access/access2.html#BeyeneJR14,https://doi.org/10.1109/ACCESS.2014.2361259 +Piroska Haller,Using Sensitivity Analysis and Cross-Association for the Design of Intrusion Detection Systems in Industrial Cyber-Physical Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#HallerG17,https://doi.org/10.1109/ACCESS.2017.2703906 +Xin Wu,A Load Identification Algorithm of Frequency Domain Filtering Under Current Underdetermined Separation.,2018,6,IEEE Access,,db/journals/access/access6.html#WuHLQ18,https://doi.org/10.1109/ACCESS.2018.2851018 +Huaming Chen,Structural Principles Analysis of Host-Pathogen Protein-Protein Interactions: A Structural Bioinformatics Survey.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenGSWS18,https://doi.org/10.1109/ACCESS.2018.2807881 +Umer Akram,An Innovative Hybrid Wind-Solar and Battery-Supercapacitor Microgrid System - Development and Optimization.,2017,5,IEEE Access,,db/journals/access/access5.html#AkramKS17,https://doi.org/10.1109/ACCESS.2017.2767618 +Emeka Emmanuel Ugwuanyi,Reliable Resource Provisioning Using Bankers' Deadlock Avoidance Algorithm in MEC for Industrial IoT.,2018,6,IEEE Access,,db/journals/access/access6.html#UgwuanyiGID18,https://doi.org/10.1109/ACCESS.2018.2857726 +Aihua Liu,Fast DOA Estimation Algorithms for Sparse Uniform Linear Array With Multiple Integer Frequencies.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuZYD18,https://doi.org/10.1109/ACCESS.2018.2842262 +Haifeng Li 0004,An Improved Analysis for Support Recovery With Orthogonal Matching Pursuit Under General Perturbations.,2018,6,IEEE Access,,db/journals/access/access6.html#LiL18,https://doi.org/10.1109/ACCESS.2018.2820804 +Jian-Ning Li,Passivity and Fault Alarm-Based Hybrid Control for a Markovian Jump Delayed System With Actuator Failures.,2018,6,IEEE Access,,db/journals/access/access6.html#LiXBX18,https://doi.org/10.1109/ACCESS.2017.2776121 +Carlos M. Garcia Algora,Review and Classification of Multichannel MAC Protocols for Low-Power and Lossy Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#AlgoraRDS17,https://doi.org/10.1109/ACCESS.2017.2748178 +Mao Wang,Power Modulation System and Experiments of Lower Hybrid Wave on EAST.,2018,6,IEEE Access,,db/journals/access/access6.html#WangWMHFYLZJZLZ18,https://doi.org/10.1109/ACCESS.2018.2851982 +Yongli Feng,Engagement Evaluation for Autism Intervention by Robots Based on Dynamic Bayesian Network and Expert Elicitation.,2017,5,IEEE Access,,db/journals/access/access5.html#FengJCW17,https://doi.org/10.1109/ACCESS.2017.2754291 +Chunlei Li,Fabric Defect Detection Based on Biological Vision Modeling.,2018,6,IEEE Access,,db/journals/access/access6.html#LiGLYH18,https://doi.org/10.1109/ACCESS.2018.2841055 +Longyu Jiang,Phase-Constrained Parallel Magnetic Resonance Imaging Reconstruction Based on Low-Rank Matrix Completion.,2018,6,IEEE Access,,db/journals/access/access6.html#JiangHLCWSC18,https://doi.org/10.1109/ACCESS.2017.2780921 +Liang Gao,Flight Dynamics Modeling and Control of a Novel Catapult Launched Tandem-Wing Micro Aerial Vehicle With Variable Sweep.,2018,6,IEEE Access,,db/journals/access/access6.html#GaoJZCZ18,https://doi.org/10.1109/ACCESS.2018.2858293 +Xiaomin Yang,Multi-Semi-Couple Super-Resolution Method for Edge Computing.,2018,6,IEEE Access,,db/journals/access/access6.html#YangWLKSJ18,https://doi.org/10.1109/ACCESS.2018.2790482 +Zhen-Guo Liu,Low-Profile Design of Broadband High Gain Circularly Polarized Fabry-Perot Resonator Antenna and its Array with Linearly Polarized Feed.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuL17a,https://doi.org/10.1109/ACCESS.2017.2675378 +Wenwei Yang,Real-Time Monitoring of Soil Compaction Using Piezoceramic-Based Embeddable Transducers and Wavelet Packet Analysis.,2018,6,IEEE Access,,db/journals/access/access6.html#YangKHMS18,https://doi.org/10.1109/ACCESS.2018.2790902 +Song Liu 0005,A Polling-Based Traffic-Aware MAC Protocol for Centralized Full-Duplex Wireless Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuHP18,https://doi.org/10.1109/ACCESS.2018.2841888 +Zhenya Ji,Day-Ahead Schedule and Equilibrium for the Coupled Electricity and Natural Gas Markets.,2018,6,IEEE Access,,db/journals/access/access6.html#JiH18,https://doi.org/10.1109/ACCESS.2018.2835522 +Majid Memarian Sorkhabi,Deep-Brain Transcranial Stimulation: A Novel Approach for High 3-D Resolution.,2017,5,IEEE Access,,db/journals/access/access5.html#SorkhabiFSV17,https://doi.org/10.1109/ACCESS.2017.2672566 +Zeeshan Kaleem,Public Safety Priority-Based User Association for Load Balancing and Interference Reduction in PS-LTE Systems.,2016,4,IEEE Access,,db/journals/access/access4.html#KaleemC16,https://doi.org/10.1109/ACCESS.2016.2598198 +Hongxiang Xie,An Overview of Low-Rank Channel Estimation for Massive MIMO Systems.,2016,4,IEEE Access,,db/journals/access/access4.html#XieGJ16,https://doi.org/10.1109/ACCESS.2016.2623772 +Ting Wang 0007,A Sparse Representation Method for a Priori Target Signature Optimization in Hyperspectral Target Detection.,2018,6,IEEE Access,,db/journals/access/access6.html#WangZLJ18,https://doi.org/10.1109/ACCESS.2017.2773662 +Hong Shen 0002,Optimized Full-Duplex MIMO DF Relaying With Limited Dynamic Range.,2017,5,IEEE Access,,db/journals/access/access5.html#ShenLXZ17,https://doi.org/10.1109/ACCESS.2017.2757039 +Ge Wang 0001,A Perspective on Deep Imaging.,2016,4,IEEE Access,,db/journals/access/access4.html#Wang16,https://doi.org/10.1109/ACCESS.2016.2624938 +Muhammad Noman Malik,Investigating Software Standards: A Lens of Sustainability for Software Crowdsourcing.,2018,6,IEEE Access,,db/journals/access/access6.html#MalikK18,https://doi.org/10.1109/ACCESS.2018.2791843 +Antony F. Anderson,Case Study: NHTSA's Denial of Dr Raghavan's Petition to Investigate Sudden Acceleration in Toyota Vehicles Fitted With Electronic Throttles.,2016,4,IEEE Access,,db/journals/access/access4.html#Anderson16,https://doi.org/10.1109/ACCESS.2016.2545713 +Yanguo Peng,Towards Secure Approximate ${k}$ -Nearest Neighbor Query Over Encrypted High-Dimensional Data.,2018,6,IEEE Access,,db/journals/access/access6.html#PengLCML18,https://doi.org/10.1109/ACCESS.2018.2830355 +Haifeng Zheng,Design and Analysis of In-Network Computation Protocols With Compressive Sensing in Wireless Sensor Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhengGFC17,https://doi.org/10.1109/ACCESS.2017.2715182 +Vignesh Thangavel,Intrinsic Evolution of Truncated Puiseux Series on a Mixed-Signal Field-Programmable SoC.,2016,4,IEEE Access,,db/journals/access/access4.html#ThangavelSD16,https://doi.org/10.1109/ACCESS.2016.2537983 +Youngmin Jeong,Cutset Bounds on the Capacity of MIMO Relay Channels.,2017,5,IEEE Access,,db/journals/access/access5.html#JeongTS17,https://doi.org/10.1109/ACCESS.2017.2752177 +Debdeep Banerjee,Image Rectification Software Test Automation Using a Robotic ARM.,2018,6,IEEE Access,,db/journals/access/access6.html#BanerjeeYA18b,https://doi.org/10.1109/ACCESS.2018.2846761 +Junyan Qian,A Mathematical Model for Reconfiguring VLSI Subarrays Under Row and Column Rerouting.,2017,5,IEEE Access,,db/journals/access/access5.html#QianWCZZ17,https://doi.org/10.1109/ACCESS.2017.2765084 +Hung Viet Nguyen,Towards the Quantum Internet: Generalised Quantum Network Coding for Large-Scale Quantum Communication Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#NguyenBABCINH17,https://doi.org/10.1109/ACCESS.2017.2738781 +Mingxing Li,A Planar Balanced-to-Balanced Power Divider With Wideband Filtering Responses and Common-Mode Suppressions.,2018,6,IEEE Access,,db/journals/access/access6.html#LiWJMWL18,https://doi.org/10.1109/ACCESS.2018.2859230 +Hongping Gan,A Novel Secure Data Transmission Scheme Using Chaotic Compressed Sensing.,2018,6,IEEE Access,,db/journals/access/access6.html#GanXZ18,https://doi.org/10.1109/ACCESS.2017.2780323 +Meihang Li,Auxiliary Model Based Least Squares Iterative Algorithms for Parameter Estimation of Bilinear Systems Using Interval-Varying Measurements.,2018,6,IEEE Access,,db/journals/access/access6.html#LiL18b,https://doi.org/10.1109/ACCESS.2018.2794396 +J. Gerard Wolff,Big Data and the SP Theory of Intelligence.,2014,2,IEEE Access,,db/journals/access/access2.html#Wolff14,https://doi.org/10.1109/ACCESS.2014.2315297 +Zhenshou Song,A Simple Brain Storm Optimization Algorithm With a Periodic Quantum Learning Strategy.,2018,6,IEEE Access,,db/journals/access/access6.html#SongPLL18,https://doi.org/10.1109/ACCESS.2017.2776958 +Zhiying Wang,Kernel Solver Design of FPGA-Based Real-Time Simulator for Active Distribution Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#WangZLWFW18,https://doi.org/10.1109/ACCESS.2018.2842076 +Ibrar Ahmad,Line and Ligature Segmentation of Urdu Nastaleeq Text.,2017,5,IEEE Access,,db/journals/access/access5.html#AhmadWLAU17,https://doi.org/10.1109/ACCESS.2017.2703155 +Torstein I. Bo,Marine Vessel and Power Plant System Simulator.,2015,3,IEEE Access,,db/journals/access/access3.html#BoDJMMPSSTY15,https://doi.org/10.1109/ACCESS.2015.2496122 +Feifei Zhao,A Graph-Based QoS-Aware Resource Management Scheme for OFDMA Femtocell Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaoMZZ18,https://doi.org/10.1109/ACCESS.2017.2780520 +Zulfiqar Ali,An Automatic Health Monitoring System for Patients Suffering From Voice Complications in Smart Cities.,2017,5,IEEE Access,,db/journals/access/access5.html#AliMA17,https://doi.org/10.1109/ACCESS.2017.2680467 +Dongliang Yan,ADMM-Based Robust Beamforming Design for Downlink Cloud Radio Access Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#YanWLH18,https://doi.org/10.1109/ACCESS.2018.2839675 +Xindong You,A Survey and Taxonomy of Energy Efficiency Relevant Surveys in Cloud-Related Environments.,2017,5,IEEE Access,,db/journals/access/access5.html#YouLZZY17,https://doi.org/10.1109/ACCESS.2017.2718001 +Yuma Sasaka,A Novel Framework for Estimating Viewer Interest by Unsupervised Multimodal Anomaly Detection.,2018,6,IEEE Access,,db/journals/access/access6.html#SasakaOH18,https://doi.org/10.1109/ACCESS.2018.2804925 +Jun Tang,Graphical Modeling and Analysis Software for State Space-Based Optimization of Discrete Event Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#TangZ18,https://doi.org/10.1109/ACCESS.2018.2852324 +Lu Miao,4-DMWM Approach for Caching Based Optimal D2D Pairing and Channel Allocation: Centralized and Distributed Algorithm Design.,2016,4,IEEE Access,,db/journals/access/access4.html#MiaoBC16,https://doi.org/10.1109/ACCESS.2016.2640270 +Kun Lin Tsai,Residence Energy Control System Based on Wireless Smart Socket and IoT.,2016,4,IEEE Access,,db/journals/access/access4.html#TsaiLY16,https://doi.org/10.1109/ACCESS.2016.2574199 +Jiliang Zhang 0003,On physical-layer security in underlay cognitive radio networks with full-duplex wireless-powered secondary system.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhangPW16,https://doi.org/10.1109/ACCESS.2016.2591782 +Kento Takabayashi,Cross-Layer Design and Performance Analysis of Quality of Service Control Scheme for Wireless Body Area Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#TakabayashiTSSK17,https://doi.org/10.1109/ACCESS.2017.2762078 +Dan Deng,Joint User and Relay Selection for Cooperative NOMA Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#DengFLTX17,https://doi.org/10.1109/ACCESS.2017.2751503 +Yong Liu 0006,A Distribution Level Wide Area Monitoring System for the Electric Power Grid-FNET/GridEye.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuYYCWZZLL17,https://doi.org/10.1109/ACCESS.2017.2666541 +Joshin John Mathew,Edge-Aware Spatial Denoising Filtering Based on a Psychological Model of Stimulus Similarity.,2018,6,IEEE Access,,db/journals/access/access6.html#MathewZJ18,https://doi.org/10.1109/ACCESS.2017.2745903 +Damian Dechev,Using SST/Macro for Effective Analysis of MPI-Based Applications: Evaluating Large-Scale Genomic Sequence Search.,2013,1,IEEE Access,,db/journals/access/access1.html#DechevA13,https://doi.org/10.1109/ACCESS.2013.2272434 +Jun-feng Xie,ICICD: An Efficient Content Distribution Architecture in Mobile Cellular Network.,2017,5,IEEE Access,,db/journals/access/access5.html#XieXHLL17,https://doi.org/10.1109/ACCESS.2017.2671745 +David Stuart Muirhead,Insights and Approaches for Low-Complexity 5G Small-Cell Base-Station Design for Indoor Dense Networks.,2015,3,IEEE Access,,db/journals/access/access3.html#MuirheadIA15,https://doi.org/10.1109/ACCESS.2015.2473661 +Yong-An Jung,Complexity Efficient Least Squares Estimation of Frequency Offsets for DVB-C2 OFDM Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#JungKY18,https://doi.org/10.1109/ACCESS.2018.2844800 +Xianglin Zuo,Coupled Low Rank Approximation for Collaborative Filtering in Social Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ZuoLY18,https://doi.org/10.1109/ACCESS.2018.2806488 +Shu-Yu Kuo,Entanglement-Enhanced Quantum-Inspired Tabu Search Algorithm for Function Optimization.,2017,5,IEEE Access,,db/journals/access/access5.html#KuoC17,https://doi.org/10.1109/ACCESS.2017.2723538 +Junwen Zhang,Effects of Anisotropy for P-Wave Velocity on Locating Accuracy of Acoustic Emission Sources in Sandstone.,2017,5,IEEE Access,,db/journals/access/access5.html#Zhang17a,https://doi.org/10.1109/ACCESS.2017.2745498 +Zhiyao Ma,Adaptive Finite-Time Dynamic Output-Feedback FTC Design for MIMO Nonlinear Systems With Actuator and Sensor Faults.,2018,6,IEEE Access,,db/journals/access/access6.html#MaM18,https://doi.org/10.1109/ACCESS.2018.2865447 +Wentao Ma,General Mixed-Norm-Based Diffusion Adaptive Filtering Algorithm for Distributed Estimation Over Network.,2017,5,IEEE Access,,db/journals/access/access5.html#MaDMLC17,https://doi.org/10.1109/ACCESS.2017.2651144 +Zhijiang Yu,Analog Network-Coded Modulation With Maximum Euclidean Distance: Mapping Criterion and Constellation Design.,2017,5,IEEE Access,,db/journals/access/access5.html#Yu0GCS17,https://doi.org/10.1109/ACCESS.2017.2747901 +Song Li 0001,Resource Allocation for Weighted Sum-Rate Maximization in Multi-User Full-Duplex Device-to-Device Communications: Approaches for Perfect and Statistical CSIs.,2017,5,IEEE Access,,db/journals/access/access5.html#LiNSM17,https://doi.org/10.1109/ACCESS.2017.2751084 +Youngrock Oh,A New Autonomous Adaptive MAC Protocol in Wireless Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#OhKKHP18,https://doi.org/10.1109/ACCESS.2018.2805334 +Manzoor Ahmed Khan,Meta-Learning for Realizing Self-x Management of Future Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#KhanT17,https://doi.org/10.1109/ACCESS.2017.2745999 +Chao-Dong Tan,Discovering Patterns With Weak-Wildcard Gaps.,2016,4,IEEE Access,,db/journals/access/access4.html#TanMWZZ16,https://doi.org/10.1109/ACCESS.2016.2593953 +Aisha Sikandar,Decision Tree Based Approaches for Detecting Protein Complex in Protein Protein Interaction Network (PPI) via Link and Sequence Analysis.,2018,6,IEEE Access,,db/journals/access/access6.html#SikandarABWSYJC18,https://doi.org/10.1109/ACCESS.2018.2807811 +Shih-Lun Chen,VLSI Implementation of a Cost-Efficient Near-Lossless CFA Image Compressor for Wireless Capsule Endoscopy.,2016,4,IEEE Access,,db/journals/access/access4.html#ChenLST16,https://doi.org/10.1109/ACCESS.2016.2638475 +Ying Ling,Lévy Flight Trajectory-Based Whale Optimization Algorithm for Global Optimization.,2017,5,IEEE Access,,db/journals/access/access5.html#LingZL17,https://doi.org/10.1109/ACCESS.2017.2695498 +Zhiyao Zhao,A Performance Evaluation Algorithm of Stochastic Hybrid Systems Based on Fuzzy Health Degree and Its Application to Quadrotors.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaoWXY18,https://doi.org/10.1109/ACCESS.2018.2838149 +Laura A. Viafora,Infrared Microscopy Imaging of Index-Finger Pads.,2018,6,IEEE Access,,db/journals/access/access6.html#ViaforaTMGJG18,https://doi.org/10.1109/ACCESS.2018.2845110 +Nguyen Van Toan,Performance Analysis of Wireless Energy Harvesting Multihop Cluster-Based Networks Over Nakagami- m Fading Channels.,2018,6,IEEE Access,,db/journals/access/access6.html#ToanDBA18,https://doi.org/10.1109/ACCESS.2017.2787055 +Deqiang Yang,A Miniaturized Ultra-Wideband Vivaldi Antenna With Low Cross Polarization.,2017,5,IEEE Access,,db/journals/access/access5.html#YangLG17,https://doi.org/10.1109/ACCESS.2017.2766184 +Murilo E. C. Bento,A Procedure to Design Fault-Tolerant Wide-Area Damping Controllers.,2018,6,IEEE Access,,db/journals/access/access6.html#BentoDKR18,https://doi.org/10.1109/ACCESS.2018.2828609 +Guibo Luo,Hole Filling for View Synthesis Using Depth Guided Global Optimization.,2018,6,IEEE Access,,db/journals/access/access6.html#LuoZ18,https://doi.org/10.1109/ACCESS.2018.2847312 +Ting Jiang,A Codebook-Adaptive Feedback Algorithm for Cellular-Based Positioning.,2018,6,IEEE Access,,db/journals/access/access6.html#JiangSZL18,https://doi.org/10.1109/ACCESS.2018.2846041 +Funmilayo B. Ogunkoya,On PAPR Reduction in Pilot-Assisted Optical OFDM Communication Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#OgunkoyaSP17,https://doi.org/10.1109/ACCESS.2017.2700877 +Zhuo Wei,HIBS-KSharing: Hierarchical Identity-Based Signature Key Sharing for Automotive.,2017,5,IEEE Access,,db/journals/access/access5.html#WeiYWWD17,https://doi.org/10.1109/ACCESS.2017.2737957 +Bei Han,Framework of Random Matrix Theory for Power System Data Mining in a Non-Gaussian Environment.,2016,4,IEEE Access,,db/journals/access/access4.html#HanLSLJ16,https://doi.org/10.1109/ACCESS.2017.2649841 +Xuya Cong,Optimal Petri Net Supervisors of Discrete Event Systems via Weighted and Data Inhibitor Arcs.,2018,6,IEEE Access,,db/journals/access/access6.html#CongCLWNE18,https://doi.org/10.1109/ACCESS.2018.2797213 +Qingling Zhang 0001,Robust Sliding-Mode Control for Fuzzy Stochastic Singular Systems With Different Local Input Matrices.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangZW18,https://doi.org/10.1109/ACCESS.2018.2837063 +Alexander Wong,A Deep-Structured Fully Connected Random Field Model for Structured Inference.,2015,3,IEEE Access,,db/journals/access/access3.html#WongSSW15,https://doi.org/10.1109/ACCESS.2015.2425304 +Louis Wy Liu,Avramenko Diode Circuit Topology for Microwave Energy Harvesting in Goubau Line and Wireless Mediums.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuZC18,https://doi.org/10.1109/ACCESS.2018.2822342 +Mohammad A. Salahuddin,A Survey on Content Placement Algorithms for Cloud-Based Content Delivery Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#SalahuddinSGEA18,https://doi.org/10.1109/ACCESS.2017.2754419 +Yu Nakayama,Optically Backhauled Moving Network for Local Trains: Architecture and Scheduling.,2018,6,IEEE Access,,db/journals/access/access6.html#NakayamaMTS18a,https://doi.org/10.1109/ACCESS.2018.2844865 +Zhongyi Zhai,A Data-Driven Service Creation Approach for End-Users.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhaiCTCZN16,https://doi.org/10.1109/ACCESS.2017.2647838 +Zhi Wu,Automatic Selection Method for Candidate Lines in Transmission Expansion Planning.,2018,6,IEEE Access,,db/journals/access/access6.html#WuDGZL18,https://doi.org/10.1109/ACCESS.2018.2798063 +Meysam Azizian,An Optimized Flow Allocation in Vehicular Cloud.,2016,4,IEEE Access,,db/journals/access/access4.html#AzizianCH16,https://doi.org/10.1109/ACCESS.2016.2615323 +Ling Tong,A PSO Optimization Scale-Transformation Stochastic-Resonance Algorithm With Stability Mutation Operator.,2018,6,IEEE Access,,db/journals/access/access6.html#TongLHR18,https://doi.org/10.1109/ACCESS.2017.2778022 +Junjie Pang,SDN-Based Data Center Networking With Collaboration of Multipath TCP and Segment Routing.,2017,5,IEEE Access,,db/journals/access/access5.html#PangXF17,https://doi.org/10.1109/ACCESS.2017.2700867 +Martin Mellincovsky,Active DC Link Capacitance Reduction in Grid-Connected Power Conversion Systems by Direct Voltage Regulation.,2018,6,IEEE Access,,db/journals/access/access6.html#MellincovskyYZP18,https://doi.org/10.1109/ACCESS.2018.2820095 +Yuka Komai,k Nearest Neighbor Search for Location-Dependent Sensor Data in MANETs.,2015,3,IEEE Access,,db/journals/access/access3.html#KomaiSHN15,https://doi.org/10.1109/ACCESS.2015.2445323 +Kyung Jun Choi,Optimal Semi-Persistent Uplink Scheduling Policy for Large-Scale Antenna Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#ChoiK17,https://doi.org/10.1109/ACCESS.2017.2764803 +Jimmy Ming-Thai Wu,TUB-HAUPM: Tighter Upper Bound for Mining High Average-Utility Patterns.,2018,6,IEEE Access,,db/journals/access/access6.html#WuLPF18,https://doi.org/10.1109/ACCESS.2018.2820740 +Jianchao Chen,Performance Analysis of Cooperative NOMA Schemes in Spatially Random Relaying Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenYA18,https://doi.org/10.1109/ACCESS.2018.2846773 +Siby Jose Plathottam,Transient Energy Efficiency Analysis of Field Oriented Induction Machines.,2017,5,IEEE Access,,db/journals/access/access5.html#PlathottamS17,https://doi.org/10.1109/ACCESS.2017.2757492 +Bin Liu 0028,Delay-Aware LTE WLAN Aggregation in Heterogeneous Wireless Network.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuZZ18,https://doi.org/10.1109/ACCESS.2018.2801386 +Nam Ky Giang,Exogenous Coordination for Building Fog-Based Cyber Physical Social Computing and Networking Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#GiangLL18,https://doi.org/10.1109/ACCESS.2018.2844336 +Angelos Amanatiadis,A Multi-Objective Exploration Strategy for Mobile Robots Under Operational Constraints.,2013,1,IEEE Access,,db/journals/access/access1.html#AmanatiadisCCDKTGR13,https://doi.org/10.1109/ACCESS.2013.2283031 +Gábor Fodor,An Overview of Device-to-Device Communications Technology Components in METIS.,2016,4,IEEE Access,,db/journals/access/access4.html#FodorRRSSPSA16,https://doi.org/10.1109/ACCESS.2016.2585188 +Arvind Rajan,Analytical Standard Uncertainty Evaluation Using Mellin Transform.,2015,3,IEEE Access,,db/journals/access/access3.html#RajanOKD15,https://doi.org/10.1109/ACCESS.2015.2415592 +Kunyi Cai,Photodetector Selection Aided Multiuser MIMO Optical OFDM Imaging Visible Light Communication System.,2016,4,IEEE Access,,db/journals/access/access4.html#CaiJM16,https://doi.org/10.1109/ACCESS.2016.2640361 +Shu Fu,Cross-Networks Energy Efficiency Tradeoff: From Wired Networks to Wireless Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#FuWWW17,https://doi.org/10.1109/ACCESS.2016.2585221 +Arwa Alrawais,An Attribute-Based Encryption Scheme to Secure Fog Communications.,2017,5,IEEE Access,,db/journals/access/access5.html#AlrawaisAHXC17,https://doi.org/10.1109/ACCESS.2017.2705076 +Yang Wang,Joint-Individual Monitoring of Parallel-Running Batch Processes Based on MCCA.,2018,6,IEEE Access,,db/journals/access/access6.html#WangJLC18,https://doi.org/10.1109/ACCESS.2017.2784097 +Bing Nan Li,Selective Level Set Segmentation Using Fuzzy Region Competition.,2016,4,IEEE Access,,db/journals/access/access4.html#LiQWWL16,https://doi.org/10.1109/ACCESS.2016.2590440 +Geng Sun,A Sidelobe and Energy Optimization Array Node Selection Algorithm for Collaborative Beamforming in Wireless Sensor Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#SunLLCWJZ18,https://doi.org/10.1109/ACCESS.2017.2783969 +Zheng Yan 0002,IEEE Access Special Section Editorial: Trust Management in Pervasive Social Networking (TruPSN).,2018,6,IEEE Access,,db/journals/access/access6.html#YanWYN18,https://doi.org/10.1109/ACCESS.2018.2817858 +Yuan Jiang 0005,Reignition After Interruption of Intermediate-Frequency Vacuum Arc in Aircraft Power System.,2018,6,IEEE Access,,db/journals/access/access6.html#YuanJB18,https://doi.org/10.1109/ACCESS.2018.2805940 +Ning Wang,Generalized Queue-Aware Resource Management and Scheduling for Wireless Communications.,2015,3,IEEE Access,,db/journals/access/access3.html#WangHGB15,https://doi.org/10.1109/ACCESS.2015.2461007 +Lishu Qin,An Approach to Improve the Performance of Simulated Annealing Algorithm Utilizing the Variable Universe Adaptive Fuzzy Logic System.,2017,5,IEEE Access,,db/journals/access/access5.html#QinWLSL17,https://doi.org/10.1109/ACCESS.2017.2750399 +Ran Zhang 0004,Adaptive Compression Trie Based Bloom Filter: Request Filter for NDN Content Store.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangLHPW17,https://doi.org/10.1109/ACCESS.2017.2764106 +Nanxi Li,Hybrid Precoding for mmWave Massive MIMO Systems With Partially Connected Structure.,2017,5,IEEE Access,,db/journals/access/access5.html#LiWYZY17,https://doi.org/10.1109/ACCESS.2017.2720163 +Weicheng Zhao,An Efficient Cache Strategy in Information Centric Networking Vehicle-to-Vehicle Scenario.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhaoQGFC17,https://doi.org/10.1109/ACCESS.2017.2714191 +Laihang Yu,A Novel Multi-Feature Representation of Images for Heterogeneous IoTs.,2016,4,IEEE Access,,db/journals/access/access4.html#YuFCQLW16,https://doi.org/10.1109/ACCESS.2016.2607841 +Chunhua Jia,Theoretical Analysis of a 750-nm Bandwidth Hollow-Core Ring Photonic Crystal Fiber With a Graded Structure for Transporting 38 Orbital Angular Momentum Modes.,2018,6,IEEE Access,,db/journals/access/access6.html#JiaJWCXLLPX18,https://doi.org/10.1109/ACCESS.2018.2817577 +Wanming Hao,Energy-Efficient Resource Allocation for mmWave Massive MIMO HetNets With Wireless Backhaul.,2018,6,IEEE Access,,db/journals/access/access6.html#HaoZCYS18,https://doi.org/10.1109/ACCESS.2017.2783544 +Cheng Li,An Electric Vehicle Routing Optimization Model With Hybrid Plug-In and Wireless Charging Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#LiDLH18,https://doi.org/10.1109/ACCESS.2018.2832187 +Bingbing Zhang,Tracking a Duty-Cycled Autonomous Underwater Vehicle by Underwater Wireless Sensor Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangWWGZ17,https://doi.org/10.1109/ACCESS.2017.2750322 +Zong-Heng Wei,A Contention-Free Reporting Scheme Based MAC Protocol for Cooperative Spectrum Sensing in Cognitive Radio Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#WeiHXL18,https://doi.org/10.1109/ACCESS.2018.2853988 +Talha Younas,On Bandwidth Efficiency Analysis for LS-MIMO With Hardware Impairments.,2017,5,IEEE Access,,db/journals/access/access5.html#YounasLA17,https://doi.org/10.1109/ACCESS.2017.2669943 +Jinghua Zhu,A New Structure-Hole-Based Algorithm For Influence Maximization in Large Online Social Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhuLY17,https://doi.org/10.1109/ACCESS.2017.2758353 +Chi-Wen Hsieh,Bandpass Impedance Transformers With Extremely High Transforming Ratios Using and#928*-Tapped Feeds.,2018,6,IEEE Access,,db/journals/access/access6.html#HsiehLL18,https://doi.org/10.1109/ACCESS.2018.2837355 +Hui Tang,Microfluidically Frequency-Reconfigurable Microstrip Patch Antenna and Array.,2017,5,IEEE Access,,db/journals/access/access5.html#TangC17,https://doi.org/10.1109/ACCESS.2017.2756638 +Nils Morozs,TDA-MAC: TDMA Without Clock Synchronization in Underwater Acoustic Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#MorozsMZ18,https://doi.org/10.1109/ACCESS.2017.2777899 +Shuo He,Distributed Cache Placement and User Association in Multicast-Aided Heterogeneous Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#HeTLNF17,https://doi.org/10.1109/ACCESS.2017.2769664 +Amr El-Keyi,LTE for Public Safety Networks: Synchronization in the Presence of Jamming.,2017,5,IEEE Access,,db/journals/access/access5.html#El-KeyiUYY17,https://doi.org/10.1109/ACCESS.2017.2751964 +Taek-Young Youn,Efficient Client-Side Deduplication of Encrypted Data With Public Auditing in Cloud Storage.,2018,6,IEEE Access,,db/journals/access/access6.html#YounCRS18,https://doi.org/10.1109/ACCESS.2018.2836328 +Shafaan Khaliq Bhatti,Leveraging the Big Data Produced by the Network to Take Intelligent Decisions on Flow Management.,2018,6,IEEE Access,,db/journals/access/access6.html#BhattiLSJMR18,https://doi.org/10.1109/ACCESS.2018.2808358 +Michael Wang 0002,A Survey of Client-Controlled HetNets for 5G.,2017,5,IEEE Access,,db/journals/access/access5.html#WangCAC17,https://doi.org/10.1109/ACCESS.2016.2624755 +Jungpil Shin,Non-Touch Character Input System Based on Hand Tapping Gestures Using Kinect Sensor.,2017,5,IEEE Access,,db/journals/access/access5.html#ShinK17,https://doi.org/10.1109/ACCESS.2017.2703783 +Michael Chen 0002,Microwave Excitation of Crystalline Energetic Composites.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenZS18,https://doi.org/10.1109/ACCESS.2018.2810265 +Zewei Zheng,Adaptive Sliding Mode Relative Motion Control for Autonomous Carrier Landing of Fixed-Wing Unmanned Aerial Vehicles.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhengJSZ17,https://doi.org/10.1109/ACCESS.2017.2671440 +Laisen Nie,Spatio-Temporal Network Traffic Estimation and Anomaly Detection Based on Convolutional Neural Network in Vehicular Ad-Hoc Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#NieLK18,https://doi.org/10.1109/ACCESS.2018.2854842 +Jingjing Xu,A New Inter-Domain Information Sharing Smart System Based on ABSES in SDN.,2018,6,IEEE Access,,db/journals/access/access6.html#XuHLS18,https://doi.org/10.1109/ACCESS.2017.2788443 +Ming Zhan,A Novel Error Correction Mechanism for Energy-Efficient Cyber-Physical Systems in Smart Building.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhanWWZ18,https://doi.org/10.1109/ACCESS.2018.2854794 +Fan Huang,A Color Multi-Exposure Image Fusion Approach Using Structural Patch Decomposition.,2018,6,IEEE Access,,db/journals/access/access6.html#HuangZNY18,https://doi.org/10.1109/ACCESS.2018.2859355 +Chao Tan,Optimization of Dual Frequency-Difference MIT Sensor Array Based on Sensitivity and Resolution Analysis.,2018,6,IEEE Access,,db/journals/access/access6.html#TanWXD18,https://doi.org/10.1109/ACCESS.2018.2849412 +Hung Viet Nguyen,Network Coding Aided Cooperative Quantum Key Distribution Over Free-Space Optical Channels.,2017,5,IEEE Access,,db/journals/access/access5.html#NguyenTPBABCNH17,https://doi.org/10.1109/ACCESS.2017.2712288 +Weiguo Sheng,An Adaptive Memetic Algorithm With Rank-Based Mutation for Artificial Neural Network Architecture Optimization.,2017,5,IEEE Access,,db/journals/access/access5.html#ShengSMZCW17,https://doi.org/10.1109/ACCESS.2017.2752901 +Rafael Cisneros-Magana,Time-Domain Power Quality State Estimation Based on Kalman Filter Using Parallel Computing on Graphics Processing Units.,2018,6,IEEE Access,,db/journals/access/access6.html#Cisneros-Magana18,https://doi.org/10.1109/ACCESS.2018.2823721 +Ruizhi Wu,Learning Individual Moving Preference and Social Interaction for Location Prediction.,2018,6,IEEE Access,,db/journals/access/access6.html#WuLYS18,https://doi.org/10.1109/ACCESS.2018.2805831 +Vinay R. Gowda,Focusing Microwaves in the Fresnel Zone With a Cavity-Backed Holographic Metasurface.,2018,6,IEEE Access,,db/journals/access/access6.html#GowdaISYS18,https://doi.org/10.1109/ACCESS.2018.2802379 +Fan Xiaoyu,Compressed Sensing MRI With Phase Noise Disturbance Based on Adaptive Tight Frame and Total Variation.,2017,5,IEEE Access,,db/journals/access/access5.html#XiaoyuLS17,https://doi.org/10.1109/ACCESS.2017.2749381 +Ayesha Ijaz,Enabling Massive IoT in 5G and Beyond Systems: PHY Radio Frame Design Considerations.,2016,4,IEEE Access,,db/journals/access/access4.html#Ijaz0GMVQIFT16,https://doi.org/10.1109/ACCESS.2016.2584178 +Muhammad A. Ashraf,Design and Analysis of Multi-Resonators Loaded Broadband Antipodal Tapered Slot Antenna for Chipless RFID Applications.,2017,5,IEEE Access,,db/journals/access/access5.html#AshrafABAAIF17,https://doi.org/10.1109/ACCESS.2017.2768118 +Hongyang Li,Low-Velocity Impact Localization on Composites Under Sensor Damage by Interpolation Reference Database and Fuzzy Evidence Theory.,2018,6,IEEE Access,,db/journals/access/access6.html#LiWFJ18,https://doi.org/10.1109/ACCESS.2018.2844802 +A. Xiaofeng Ye,Time Sequential Phase Partition and Modeling Method for Fault Detection of Batch Processes.,2018,6,IEEE Access,,db/journals/access/access6.html#YeWY18,https://doi.org/10.1109/ACCESS.2017.2778095 +Yu Wang,A Column-Generation Based Approach for Integrating Surgeon and Surgery Scheduling.,2018,6,IEEE Access,,db/journals/access/access6.html#WangZZTM18,https://doi.org/10.1109/ACCESS.2018.2854839 +Qian Lei,Fingerprint-Based Device-Free Localization in Changing Environments Using Enhanced Channel Selection and Logistic Regression.,2018,6,IEEE Access,,db/journals/access/access6.html#LeiZST18,https://doi.org/10.1109/ACCESS.2017.2784387 +Wei Huang 0012,QoE-Based Resource Allocation for Heterogeneous Multi-Radio Communication in Software-Defined Vehicle Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#HuangDMHXZ18,https://doi.org/10.1109/ACCESS.2018.2800036 +Angela Sara Cacciapuoti,Mobile Smart Grids: Exploiting the TV White Space in Urban Scenarios.,2016,4,IEEE Access,,db/journals/access/access4.html#CacciapuotiCMP16,https://doi.org/10.1109/ACCESS.2016.2620564 +Jianping Shi,A Porous Scaffold Design Method for Bone Tissue Engineering Using Triply Periodic Minimal Surfaces.,2018,6,IEEE Access,,db/journals/access/access6.html#ShiYZLLW18,https://doi.org/10.1109/ACCESS.2017.2777521 +Shih-Wei Lin,Uniform Parallel-Machine Scheduling for Minimizing Total Resource Consumption With a Bounded Makespan.,2017,5,IEEE Access,,db/journals/access/access5.html#LinY17,https://doi.org/10.1109/ACCESS.2017.2735538 +Ing-Jr Ding,Performance Improvement of Kinect Software Development Kit-Constructed Speech Recognition Using a Client-Server Sensor Fusion Strategy for Smart Human-Computer Interface Control Applications.,2017,5,IEEE Access,,db/journals/access/access5.html#DingL17,https://doi.org/10.1109/ACCESS.2017.2679116 +Elias A. Alwan,Indium Tin Oxide Film Characterization at 0.1-20 GHz Using Coaxial Probe Method.,2015,3,IEEE Access,,db/journals/access/access3.html#AlwanKV15,https://doi.org/10.1109/ACCESS.2015.2433062 +Nanmu Hui,A Novel Hybrid Filter-Based PLL to Eliminate Effect of Input Harmonics and DC Offset.,2018,6,IEEE Access,,db/journals/access/access6.html#HuiWL18,https://doi.org/10.1109/ACCESS.2018.2821704 +Aleksandr Ometov,Mobile Social Networking Under Side-Channel Attacks: Practical Security Challenges.,2017,5,IEEE Access,,db/journals/access/access5.html#OmetovLBMOA17,https://doi.org/10.1109/ACCESS.2017.2665640 +Sarzamin Khan,An Efficient Algorithm for Mapping Real Time Embedded Applications on NoC Architecture.,2018,6,IEEE Access,,db/journals/access/access6.html#KhanAGAUI18,https://doi.org/10.1109/ACCESS.2018.2811716 +Guangqian Xie,Cluster-Based Routing for the Mobile Sink in Wireless Sensor Networks With Obstacles.,2016,4,IEEE Access,,db/journals/access/access4.html#XieP16,https://doi.org/10.1109/ACCESS.2016.2558196 +Kazi Ashrafuzzaman,Efficient and Agile Carrier Sense Multiple Access in Capillary Machine-to-Machine Communication Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#AshrafuzzamanF18,https://doi.org/10.1109/ACCESS.2018.2790842 +Bin Xiang,Greedy-Ant: Ant Colony System-Inspired Workflow Scheduling for Heterogeneous Computing.,2017,5,IEEE Access,,db/journals/access/access5.html#XiangZZ17,https://doi.org/10.1109/ACCESS.2017.2715279 +Chang-Hee Kang,Signal Detection Scheme in Ambient Backscatter System With Multiple Antennas.,2017,5,IEEE Access,,db/journals/access/access5.html#KangLYS17,https://doi.org/10.1109/ACCESS.2017.2732948 +David A. Gianetto,Dynamic Structure of Competition Networks in Affordable Care Act Insurance Market.,2018,6,IEEE Access,,db/journals/access/access6.html#GianettoMH18,https://doi.org/10.1109/ACCESS.2018.2800659 +Gantham Pang,A Neo-Reflective Wrist Pulse Oximeter.,2014,2,IEEE Access,,db/journals/access/access2.html#PangM14,https://doi.org/10.1109/ACCESS.2014.2382179 +Riccardo Pozza,Neighbor Discovery for Opportunistic Networking in Internet of Things Scenarios: A Survey.,2015,3,IEEE Access,,db/journals/access/access3.html#PozzaNGMG15,https://doi.org/10.1109/ACCESS.2015.2457031 +Haoran Chen,Static Routing and Spectrum Assignment for Deadline-Driven Bulk-Data Transfer in Elastic Optical Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenZZWZ17,https://doi.org/10.1109/ACCESS.2017.2727338 +Lokesh Sharma,Energy-Efficient Resource Scheduling Within DRX Cycles for LTE-A Networks With Carrier Aggregation.,2018,6,IEEE Access,,db/journals/access/access6.html#SharmaLW18,https://doi.org/10.1109/ACCESS.2018.2833887 +Ziyuan Sha,Data-Aided Spatial Modulation.,2017,5,IEEE Access,,db/journals/access/access5.html#ShaZZW17,https://doi.org/10.1109/ACCESS.2017.2696575 +Chengzong Li,Synthesis of Liveness-Enforcing Petri Net Supervisors Based on a Think-Globally-Act-Locally Approach and Vector Covering for Flexible Manufacturing Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#LiCLB17,https://doi.org/10.1109/ACCESS.2017.2720630 +Xin Li 0050,Assessment of Urban Fabric for Smart Cities.,2016,4,IEEE Access,,db/journals/access/access4.html#LiLHJLL16,https://doi.org/10.1109/ACCESS.2016.2517072 +Dawei Sun 0001,A Stable Online Scheduling Strategy for Real-Time Stream Computing Over Fluctuating Big Data Streams.,2016,4,IEEE Access,,db/journals/access/access4.html#SunH16,https://doi.org/10.1109/ACCESS.2016.2634557 +Han Wang 0005,Preamble Design With Interference Cancellation for Channel Estimation in MIMO-FBMC/OQAM Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#WangXWT18,https://doi.org/10.1109/ACCESS.2018.2864221 +Yong Li 0020,A Nonlinear Decoupling Control Approach Using RBFNNI-Based Robust Pole Placement for a Permanent Magnet In-Wheel Motor.,2018,6,IEEE Access,,db/journals/access/access6.html#LiLXS18,https://doi.org/10.1109/ACCESS.2017.2780286 +Feiteng Xue,An Improved H/α Unsupervised Classification Method for Circular PolSAR Images.,2018,6,IEEE Access,,db/journals/access/access6.html#XueLHCS18,https://doi.org/10.1109/ACCESS.2018.2838329 +Fang Xin,General Regression Neural Network and Artificial-Bee-Colony Based General Regression Neural Network Approaches to the Number of End-of-Life Vehicles in China.,2018,6,IEEE Access,,db/journals/access/access6.html#XinNLZ18,https://doi.org/10.1109/ACCESS.2018.2814054 +Ladislau Matekovits,IEEE Access Special Section Editorial: Bio-Compatible Devices and Bio-Electromagnetics for Bio-Medical Applications.,2015,3,IEEE Access,,db/journals/access/access3.html#MatekovitsKPE15,https://doi.org/10.1109/ACCESS.2016.2514818 +Yanjun Yu,Modeling and Decoupling Control for Rotor System in Magnetic Levitation Wind Turbine.,2017,5,IEEE Access,,db/journals/access/access5.html#YuSZ17,https://doi.org/10.1109/ACCESS.2017.2732450 +Xiazhi Lai,DF Relaying Networks With Randomly Distributed Interferers.,2017,5,IEEE Access,,db/journals/access/access5.html#LaiZXLF17,https://doi.org/10.1109/ACCESS.2017.2751105 +Zhikui Chen,TCMHG: Topic-Based Cross-Modal Hypergraph Learning for Online Service Recommendations.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenLYZ18,https://doi.org/10.1109/ACCESS.2017.2782668 +Pavan Kumar Mishra,Efficient Resource Management by Exploiting D2D Communication for 5G Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#MishraPB16a,https://doi.org/10.1109/ACCESS.2016.2602843 +Peiyan Yuan,Ties in Overlapping Community Structures: Strong or Weak?,2017,5,IEEE Access,,db/journals/access/access5.html#YuanWS17,https://doi.org/10.1109/ACCESS.2017.2710360 +Raúl Lara-Cabrera,Measuring the Radicalisation Risk in Social Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#Lara-CabreraGBF17,https://doi.org/10.1109/ACCESS.2017.2706018 +Juana Maria Martinez-Heredia,Development of an Emergency Radio Beacon for Small Unmanned Aerial Vehicles.,2018,6,IEEE Access,,db/journals/access/access6.html#Martinez-Heredia18,https://doi.org/10.1109/ACCESS.2018.2826918 +Yanqi Zhao,Secure Pub-Sub: Blockchain-Based Fair Payment With Reputation for Reliable Cyber Physical Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaoLMYY18,https://doi.org/10.1109/ACCESS.2018.2799205 +Liang Hu,Semantic Preference-Based Personalized Recommendation on Heterogeneous Information Network.,2017,5,IEEE Access,,db/journals/access/access5.html#HuWXW17,https://doi.org/10.1109/ACCESS.2017.2751682 +Hyung-Kyu Kim,Practical Design of a Speaker Box With a Passive Vibrator (February 2018).,2018,6,IEEE Access,,db/journals/access/access6.html#KimJXKH18,https://doi.org/10.1109/ACCESS.2018.2803745 +Qinghua Lu,CF4BDA: A Conceptual Framework for Big Data Analytics Applications in the Cloud.,2015,3,IEEE Access,,db/journals/access/access3.html#LuLKZZ15,https://doi.org/10.1109/ACCESS.2015.2490085 +Hassan Mussafir,Dynamic Hassan Nelder Mead with Simplex Free Selectivity for Unconstrained Optimization.,2018,6,IEEE Access,,db/journals/access/access6.html#MussafirM18,https://doi.org/10.1109/ACCESS.2018.2855079 +Jusung Kim,Injection-Locked Frequency Divider Topology and Design Techniques for Wide Locking-Range and High-Order Division.,2017,5,IEEE Access,,db/journals/access/access5.html#KimLC17,https://doi.org/10.1109/ACCESS.2017.2647822 +Madan Krishnamurthy,Representing Social Network Patient Data as Evidence-Based Knowledge to Support Decision Making in Disease Progression for Comorbidities.,2018,6,IEEE Access,,db/journals/access/access6.html#KrishnamurthyMM18,https://doi.org/10.1109/ACCESS.2018.2810702 +Simon Haykin,Cognitive Risk Control for Physical Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#HaykinFFF17,https://doi.org/10.1109/ACCESS.2017.2726439 +Tiejun Lv,Semi-Blind Channel Estimation Relying on Optimum Pilots Designed for Multi-Cell Large-Scale MIMO Systems.,2016,4,IEEE Access,,db/journals/access/access4.html#LvYG16,https://doi.org/10.1109/ACCESS.2016.2543300 +Cheng Fang,Fine-Grained HTTP Web Traffic Analysis Based on Large-Scale Mobile Datasets.,2016,4,IEEE Access,,db/journals/access/access4.html#FangLL16,https://doi.org/10.1109/ACCESS.2016.2597538 +Lars Ohlsson,A 15-Gb/s Wireless ON-OFF Keying Link.,2014,2,IEEE Access,,db/journals/access/access2.html#OhlssonW14,https://doi.org/10.1109/ACCESS.2014.2364638 +Jianbo Li,Estimation of Large Covariance Matrices by Shrinking to Structured Target in Normal and Non-Normal Distributions.,2018,6,IEEE Access,,db/journals/access/access6.html#LiZZ18,https://doi.org/10.1109/ACCESS.2017.2782208 +Zakariya Dalala,Modeling and Controller Design of a Bidirectional Resonant Converter Battery Charger.,2018,6,IEEE Access,,db/journals/access/access6.html#DalalaZSL18,https://doi.org/10.1109/ACCESS.2018.2830321 +Stefanus A. Wirdatmadja,Microfluidic System Protocols for Integrated On-Chip Communications and Cooling.,2017,5,IEEE Access,,db/journals/access/access5.html#WirdatmadjaMBK17,https://doi.org/10.1109/ACCESS.2017.2662798 +Xiaolong Zhai,Automated ECG Classification Using Dual Heartbeat Coupling Based on Convolutional Neural Network.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaiT18,https://doi.org/10.1109/ACCESS.2018.2833841 +Lan Liu,A New Fuzzy Clustering Method With Neighborhood Distance Constraint for Volcanic Ash Cloud.,2016,4,IEEE Access,,db/journals/access/access4.html#LiuLLZYS16,https://doi.org/10.1109/ACCESS.2016.2621063 +Xiaofei Wang,E-SC: Collusion-Resistant Secure Outsourcing of Sequence Comparison Algorithm.,2018,6,IEEE Access,,db/journals/access/access6.html#WangZ18,https://doi.org/10.1109/ACCESS.2017.2780129 +Tian Li Wu,Design of a Low Profile and Compact Omnidirectional Filtering Patch Antenna.,2017,5,IEEE Access,,db/journals/access/access5.html#WuPHZ17,https://doi.org/10.1109/ACCESS.2017.2651143 +Yeong-Sheng Chen,Range-Based Localization Algorithm for Next Generation Wireless Networks Using Radical Centers.,2016,4,IEEE Access,,db/journals/access/access4.html#ChenDT16,https://doi.org/10.1109/ACCESS.2016.2551704 +Asif Khan 0004,Analyzing Integrated Renewable Energy and Smart-Grid Systems to Improve Voltage Quality and Harmonic Distortion Losses at Electric-Vehicle Charging Stations.,2018,6,IEEE Access,,db/journals/access/access6.html#KhanMS18,https://doi.org/10.1109/ACCESS.2018.2830187 +Liwen Jing,Channel Characterization of Acoustic Waveguides Consisting of Straight Gas and Water Pipelines.,2018,6,IEEE Access,,db/journals/access/access6.html#JingLLM18,https://doi.org/10.1109/ACCESS.2018.2793299 +Xiao Sun,Infectious Disease Containment Based on a Wireless Sensor System.,2016,4,IEEE Access,,db/journals/access/access4.html#SunLZSC16,https://doi.org/10.1109/ACCESS.2016.2551199 +Liwen Zhang,Numerical Investigation of the Dynamic Responses of Long-Span Bridges With Consideration of the Random Traffic Flow Based on the Intelligent ACO-BPNN Model.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangSZDW18,https://doi.org/10.1109/ACCESS.2018.2840333 +Mahmoud Al Ahmad,Electrical Characterization of Normal and Cancer Cells.,2018,6,IEEE Access,,db/journals/access/access6.html#AhmadNMR18,https://doi.org/10.1109/ACCESS.2018.2830883 +Mingwen Zheng,Fixed-Time Synchronization of Memristive Fuzzy BAM Cellular Neural Networks With Time-Varying Delays Based on Feedback Controllers.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhengLPXYZ18,https://doi.org/10.1109/ACCESS.2018.2805183 +Chunjie Zhang,A New Approach for Sparse Signal Recovery in Compressed Sensing Based on Minimizing Composite Trigonometric Function.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangHHY18,https://doi.org/10.1109/ACCESS.2018.2855958 +Dapai Shi,Energy Control Strategy of HEB Based on the Instantaneous Optimization Algorithm.,2017,5,IEEE Access,,db/journals/access/access5.html#ShiCGTFL17,https://doi.org/10.1109/ACCESS.2017.2742142 +Gábor Fodor,Device-to-Device Communications for National Security and Public Safety.,2014,2,IEEE Access,,db/journals/access/access2.html#FodorPSWLB14,https://doi.org/10.1109/ACCESS.2014.2379938 +Rutvij H. Jhaveri,Sensitivity Analysis of an Attack-Pattern Discovery Based Trusted Routing Scheme for Mobile Ad-Hoc Networks in Industrial IoT.,2018,6,IEEE Access,,db/journals/access/access6.html#JhaveriPZS18,https://doi.org/10.1109/ACCESS.2018.2822945 +Tingwei Wu,Photonic Microwave Waveforms Generation Based on Frequency and Time-Domain Synthesis.,2018,6,IEEE Access,,db/journals/access/access6.html#WuZZHQ18,https://doi.org/10.1109/ACCESS.2018.2842250 +Qinghua Yu,Hybrid-Residual-Based RGBD Visual Odometry.,2018,6,IEEE Access,,db/journals/access/access6.html#YuXLZ18,https://doi.org/10.1109/ACCESS.2018.2836928 +Justin Ker,Deep Learning Applications in Medical Image Analysis.,2018,6,IEEE Access,,db/journals/access/access6.html#KerWRL18,https://doi.org/10.1109/ACCESS.2017.2788044 +Oren Y. Kanner,Adaptive Legged Robots Through Exactly Constrained and Non-Redundant Design.,2017,5,IEEE Access,,db/journals/access/access5.html#KannerROD17,https://doi.org/10.1109/ACCESS.2017.2704088 +Mohammed Shaaban Ibraheem,Fast and Parallel AAC Decoder Architecture for a Digital Radio Mondiale 30 Receiver.,2017,5,IEEE Access,,db/journals/access/access5.html#IbraheemHR17,https://doi.org/10.1109/ACCESS.2017.2731902 +Changhua Yao,Bloomfield Model Based Signal Process for Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#YaoWY18,https://doi.org/10.1109/ACCESS.2018.2820510 +Yuhan Su,LTE-U and Wi-Fi Coexistence Algorithm Based on Q-Learning in Multi-Channel.,2018,6,IEEE Access,,db/journals/access/access6.html#SuDHGG18,https://doi.org/10.1109/ACCESS.2018.2803258 +Binjie Qin,Joint-Saliency Structure Adaptive Kernel Regression with Adaptive-Scale Kernels for Deformable Registration of Challenging Images.,2018,6,IEEE Access,,db/journals/access/access6.html#QinSFZLB18,https://doi.org/10.1109/ACCESS.2017.2762901 +Bo Liang,Numerical Optimization and Cyber-Physical- Social Computing for Vibrations of the Elliptical Treadmill Based on GSO-BPNN Model.,2018,6,IEEE Access,,db/journals/access/access6.html#LiangZ18,https://doi.org/10.1109/ACCESS.2018.2799607 +Xiaobing Yuan,Reliability Evaluation Methodology of Complex Systems Based on Dynamic Object-Oriented Bayesian Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#YuanCMZMLC18,https://doi.org/10.1109/ACCESS.2018.2810386 +Chunjie Zhai,Cooperative Look-Ahead Control of Vehicle Platoon for Maximizing Fuel Efficiency Under System Constraints.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaiLL18,https://doi.org/10.1109/ACCESS.2018.2848480 +Qingwen Zheng,Safety Tracking Motion Control Based on Forbidden Virtual Fixtures in Robot Assisted Nasal Surgery.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhengHQZHL18,https://doi.org/10.1109/ACCESS.2018.2861572 +Tao Liu 0016,An Approach to 3D Building Model Retrieval Based on Topology Structure and View Feature.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuGZ18a,https://doi.org/10.1109/ACCESS.2018.2846759 +Saurabh Saxena,Exploding E-Cigarettes: A Battery Safety Issue.,2018,6,IEEE Access,,db/journals/access/access6.html#SaxenaKP18,https://doi.org/10.1109/ACCESS.2018.2821142 +Ismail M. Keshta,Towards Implementation of Process and Product Quality Assurance Process Area for Saudi Arabian Small and Medium Sized Software Development Organizations.,2018,6,IEEE Access,,db/journals/access/access6.html#KeshtaNA18,https://doi.org/10.1109/ACCESS.2018.2859249 +Abhishek Sehgal,A Convolutional Neural Network Smartphone App for Real-Time Voice Activity Detection.,2018,6,IEEE Access,,db/journals/access/access6.html#SehgalK18,https://doi.org/10.1109/ACCESS.2018.2800728 +Yao Zhao,Fault-Tolerant Performance of a Three-Phase Dual Armature-Winding Doubly Salient Brushless DC Generator.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaoWLQ18,https://doi.org/10.1109/ACCESS.2018.2819239 +Qilian Yu,Fast Budgeted Influence Maximization Over Multi-Action Event Logs.,2018,6,IEEE Access,,db/journals/access/access6.html#YuLLC18,https://doi.org/10.1109/ACCESS.2018.2809547 +Enhui Lv,Deep Convolutional Network Based on Pyramid Architecture.,2018,6,IEEE Access,,db/journals/access/access6.html#LvWCY18,https://doi.org/10.1109/ACCESS.2018.2860785 +Yu Sun 0018,Robot-Assisted Decompressive Laminectomy Planning Based on 3D Medical Image.,2018,6,IEEE Access,,db/journals/access/access6.html#SunJQHLZ18,https://doi.org/10.1109/ACCESS.2018.2828641 +Won-Seok Lee,Determination Scheme for Detection Thresholds Using Multiple Antennas in Wi-Fi Backscatter Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#LeeKMS17,https://doi.org/10.1109/ACCESS.2017.2759806 +Guanhua Qiao,Joint Deployment and Mobility Management of Energy Harvesting Small Cells in Heterogeneous Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#QiaoLZY17,https://doi.org/10.1109/ACCESS.2016.2635878 +Honghui Dong,Improved Robust Vehicle Detection and Identification Based on Single Magnetic Sensor.,2018,6,IEEE Access,,db/journals/access/access6.html#DongWZHJQ18,https://doi.org/10.1109/ACCESS.2018.2791446 +Jia Yang,A New Progressively Refined Wyner-Ziv Video Coding for Low-Power Human-Centered Telehealth.,2018,6,IEEE Access,,db/journals/access/access6.html#YangHQXP18,https://doi.org/10.1109/ACCESS.2018.2850052 +Nhan-Van Vo,Secrecy Outage Performance Analysis for Energy Harvesting Sensor Networks With a Jammer Using Relay Selection Strategy.,2018,6,IEEE Access,,db/journals/access/access6.html#VoNSBS18,https://doi.org/10.1109/ACCESS.2018.2829485 +Alex D. L. Gray,A Standardised Modular Approach for Site SCADA Applications Within a Water Utility.,2017,5,IEEE Access,,db/journals/access/access5.html#GrayPTW17,https://doi.org/10.1109/ACCESS.2017.2654685 +Artur Mariano,A Practical View of the State-of-the-Art of Lattice-Based Cryptanalysis.,2017,5,IEEE Access,,db/journals/access/access5.html#MarianoLCRF17,https://doi.org/10.1109/ACCESS.2017.2748179 +Reza Shahidi,On the Analytical Calculation of the Probability Distribution of End-to-End Delay in a Two-Way Highway VANET.,2018,6,IEEE Access,,db/journals/access/access6.html#ShahidiA18,https://doi.org/10.1109/ACCESS.2017.2777963 +Kuiwen Xu,Novel Microwave Sensors Based on Split Ring Resonators for Measuring Permittivity.,2018,6,IEEE Access,,db/journals/access/access6.html#XuLCZPDW18,https://doi.org/10.1109/ACCESS.2018.2834726 +Bo Sun 0002,Gamma Degradation Process and Accelerated Model Combined Reliability Analysis Method for Rubber O-Rings.,2018,6,IEEE Access,,db/journals/access/access6.html#SunYFLRZZ18,https://doi.org/10.1109/ACCESS.2018.2799853 +Yingying Liu,Barrier Lyapunov Functions-Based Adaptive Neural Control for Permanent Magnet Synchronous Motors With Full-State Constraints.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuYYLZ17,https://doi.org/10.1109/ACCESS.2017.2713419 +Xu Xie,Channel Capacity Analysis of Spread Spectrum Watermarking in Radio Frequency Signals.,2017,5,IEEE Access,,db/journals/access/access5.html#XieXX17,https://doi.org/10.1109/ACCESS.2017.2726552 +Songlin Sun,Spatial Domain Management and Massive MIMO Coordination in 5G SDN.,2015,3,IEEE Access,,db/journals/access/access3.html#SunRHQ15,https://doi.org/10.1109/ACCESS.2015.2498609 +Qian Gao 0004,Robust QoS-Aware Cross-layer Design of Adaptive Modulation Transmission on OFDM Systems in High-Speed Railway.,2016,4,IEEE Access,,db/journals/access/access4.html#GaoZLLXXQ16,https://doi.org/10.1109/ACCESS.2016.2623490 +Hamid Reza Karimi,IEEE Access Special Section Editorial: Analysis and Synthesis of Large-Scale Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#KarimiZZY18,https://doi.org/10.1109/ACCESS.2018.2856307 +Di Lu,Building a Secure Scheme for a Trusted Hardware Sharing Environment.,2017,5,IEEE Access,,db/journals/access/access5.html#LuMSWSX17,https://doi.org/10.1109/ACCESS.2017.2703124 +Teng Zhao,Spatio-Temporal Analysis and Forecasting of Distributed PV Systems Diffusion: A Case Study of Shanghai Using a Data-Driven Approach.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhaoZZLT17,https://doi.org/10.1109/ACCESS.2017.2694009 +Xiuwen Yin,A Low-Complexity Synchronizer for OFDM-UWB-Based Vehicular Communications.,2017,5,IEEE Access,,db/journals/access/access5.html#YinLSXX17,https://doi.org/10.1109/ACCESS.2017.2697908 +Sze Sing Lee,A Single-Phase Single-Source 7-Level Inverter With Triple Voltage Boosting Gain.,2018,6,IEEE Access,,db/journals/access/access6.html#Lee18b,https://doi.org/10.1109/ACCESS.2018.2842182 +Xiangtao Li,Multi-Population Based Ensemble Mutation Method for Single Objective Bilevel Optimization Problem.,2016,4,IEEE Access,,db/journals/access/access4.html#LiMW16,https://doi.org/10.1109/ACCESS.2016.2617738 +Jeremy Nadal,Design and Evaluation of a Novel Short Prototype Filter for FBMC/OQAM Modulation.,2018,6,IEEE Access,,db/journals/access/access6.html#NadalNB18,https://doi.org/10.1109/ACCESS.2018.2818883 +Itamar Levi,A Survey of the Sensitivities of Security Oriented Flip-Flop Circuits.,2017,5,IEEE Access,,db/journals/access/access5.html#LeviMAKF17,https://doi.org/10.1109/ACCESS.2017.2766243 +Fuxin Zhang,Model Predictive Power Control for Cooperative Vehicle Safety Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangDLL18,https://doi.org/10.1109/ACCESS.2018.2791536 +Massimo Condoluci,Soft Resource Reservation for Low-Delayed Teleoperation Over Mobile Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#CondoluciMSD17,https://doi.org/10.1109/ACCESS.2017.2707319 +Xinyu Gu,Performance Analysis for Interconnected Virtual Reality With Two-Stage Cooperative Transmission Scheme in 3D UDNs.,2018,6,IEEE Access,,db/journals/access/access6.html#GuZLWZ18,https://doi.org/10.1109/ACCESS.2018.2836676 +Yupeng Yuan,A Vector Matroid-Theoretic Approach in the Study of Structural Controllability Over F(z).,2017,5,IEEE Access,,db/journals/access/access5.html#YuanLMCC17,https://doi.org/10.1109/ACCESS.2017.2687825 +Yixue Hao,Energy Efficient Task Caching and Offloading for Mobile Edge Computing.,2018,6,IEEE Access,,db/journals/access/access6.html#HaoCHHG18,https://doi.org/10.1109/ACCESS.2018.2805798 +Xiaodong Zhu,FRIOD: A Deeply Integrated Feature-Rich Interactive System for Effective and Efficient Outlier Detection.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhuZLFLC17,https://doi.org/10.1109/ACCESS.2017.2771237 +Haibo Mei,Multi-Layer Cloud-RAN With Cooperative Resource Allocations for Low-Latency Computing and Communication Services.,2017,5,IEEE Access,,db/journals/access/access5.html#MeiWY17,https://doi.org/10.1109/ACCESS.2017.2752279 +Xiaofeng Wang 0004,Overlapping Community Detection Based on Structural Centrality in Complex Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#WangLL17a,https://doi.org/10.1109/ACCESS.2017.2769484 +Jiachen Yin,Robust GPS Carrier Tracking Model Using Unscented Kalman Filter for a Dynamic Vehicular Communication Channel.,2018,6,IEEE Access,,db/journals/access/access6.html#YinTJ18,https://doi.org/10.1109/ACCESS.2018.2834470 +Eduard Alarcón,Design and Optimization of a Polar Satellite Mission to Complement the Copernicus System.,2018,6,IEEE Access,,db/journals/access/access6.html#AlarconSABBCCCP18,https://doi.org/10.1109/ACCESS.2018.2844257 +Yi Qin,Adaptively Detecting the Transient Feature of Faulty Wind Turbine Planetary Gearboxes by the Improved Kurtosis and Iterative Thresholding Algorithm.,2018,6,IEEE Access,,db/journals/access/access6.html#QinZC18,https://doi.org/10.1109/ACCESS.2018.2809744 +Alex Arsenovic,Applications of Conformal Geometric Algebra to Transmission Line Theory.,2017,5,IEEE Access,,db/journals/access/access5.html#Arsenovic17,https://doi.org/10.1109/ACCESS.2017.2727819 +Feng Hu 0003,Full Spectrum Sharing in Cognitive Radio Networks Toward 5G: A Survey.,2018,6,IEEE Access,,db/journals/access/access6.html#HuCZ18,https://doi.org/10.1109/ACCESS.2018.2802450 +Syed Ahsan Raza Naqvi,Energy-Aware Radio Resource Management in D2D-Enabled Multi-Tier HetNets.,2018,6,IEEE Access,,db/journals/access/access6.html#NaqviPHMNIGT18,https://doi.org/10.1109/ACCESS.2018.2817189 +Parag Aggarwal,On the Multiband Carrier Aggregated Nonlinear LTE-A System.,2017,5,IEEE Access,,db/journals/access/access5.html#AggarwalB17,https://doi.org/10.1109/ACCESS.2017.2740498 +Lingchuan Sun,Semi-Coupled Dictionary Learning With Relaxation Label Space Transformation for Video-Based Person Re-Identification.,2018,6,IEEE Access,,db/journals/access/access6.html#SunJSLM18,https://doi.org/10.1109/ACCESS.2018.2803789 +Jeong Park,A Sub-Nyquist Radar Electronic Surveillance System.,2018,6,IEEE Access,,db/journals/access/access6.html#ParkJIL18,https://doi.org/10.1109/ACCESS.2018.2799304 +Yang Zhang,A Weighted Evidence Combination Approach for Target Identification in Wireless Sensor Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangLZCZL17,https://doi.org/10.1109/ACCESS.2017.2758419 +Lifeng Zhou,Outsourcing Large-Scale Quadratic Programming to a Public Cloud.,2015,3,IEEE Access,,db/journals/access/access3.html#ZhouL15,https://doi.org/10.1109/ACCESS.2015.2505720 +Bing Wang 0009,Resource Allocation for Secure Communication in K -Tier Heterogeneous Cellular Networks: A Spatial-Temporal Perspective.,2018,6,IEEE Access,,db/journals/access/access6.html#WangHXJZW18,https://doi.org/10.1109/ACCESS.2017.2776119 +Longjun Huang,EOC: Energy Optimization Coding for Wireless Nanosensor Networks in the Terahertz Band.,2017,5,IEEE Access,,db/journals/access/access5.html#HuangYWS17,https://doi.org/10.1109/ACCESS.2017.2665487 +Jianfeng Liao,Performance-Oriented Coordinated Adaptive Robust Control for Four-Wheel Independently Driven Skid Steer Mobile Robot.,2017,5,IEEE Access,,db/journals/access/access5.html#LiaoCY17,https://doi.org/10.1109/ACCESS.2017.2754647 +Linsong Du,Optimal Save-Then-Transmit for Random Energy Harvesting Communications: An Optimal Stopping Approach.,2017,5,IEEE Access,,db/journals/access/access5.html#DuLH17,https://doi.org/10.1109/ACCESS.2017.2772317 +Antony F. Anderson,Intermittent Electrical Contact Resistance as a Contributory Factor in the Loss of Automobile Speed Control Functional Integrity.,2014,2,IEEE Access,,db/journals/access/access2.html#Anderson14,https://doi.org/10.1109/ACCESS.2014.2313296 +Khaled Ahmeda,Role of Self-Heating and Polarization in AlGaN/GaN-Based Heterostructures.,2017,5,IEEE Access,,db/journals/access/access5.html#AhmedaUBDSZK17,https://doi.org/10.1109/ACCESS.2017.2755984 +Shiqi Cheng,Performance of a Novel Automatic Identification Algorithm for the Clustering of Radio Channel Parameters.,2015,3,IEEE Access,,db/journals/access/access3.html#ChengMGPLD15,https://doi.org/10.1109/ACCESS.2015.2497970 +Jiqin Zhou,Expected Completion Time Aware Message Scheduling for UM-BUS Interconnected System.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhouZQBWZ17,https://doi.org/10.1109/ACCESS.2017.2772328 +Jianchun Zhang,Reliability Demonstration for Long-Life Products Based on Hardened Testing Method and Gamma Process.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangMZ17,https://doi.org/10.1109/ACCESS.2017.2738066 +Yang Zhou 0005,Elastic Switch Migration for Control Plane Load Balancing in SDN.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhouZNL18,https://doi.org/10.1109/ACCESS.2018.2795576 +Wai-Kong Lee,Parallel and High Speed Hashing in GPU for Telemedicine Applications.,2018,6,IEEE Access,,db/journals/access/access6.html#LeePGCZX18,https://doi.org/10.1109/ACCESS.2018.2849439 +Zehui Shao,On the Maximum ABC Index of Graphs With Prescribed Size and Without Pendent Vertices.,2018,6,IEEE Access,,db/journals/access/access6.html#ShaoWZDL18,https://doi.org/10.1109/ACCESS.2018.2831910 +Youfang Yu,Suboptimal Learning Control for Nonlinearly Parametric Time-Delay Systems Under Alignment Condition.,2018,6,IEEE Access,,db/journals/access/access6.html#YuWB18,https://doi.org/10.1109/ACCESS.2017.2786216 +Faria Kanwal,Factors Affecting E-Learning Adoption in Developing Countries-Empirical Evidence From Pakistan's Higher Education Sector.,2017,5,IEEE Access,,db/journals/access/access5.html#KanwalR17,https://doi.org/10.1109/ACCESS.2017.2714379 +Jiangbo Liu,Robust Widely Linear Beamforming via the Techniques of Iterative QCQP and Shrinkage for Steering Vector Estimation.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuXWG18,https://doi.org/10.1109/ACCESS.2018.2806004 +Abdel Ghani Karkar,Illustrate It! An Arabic Multimedia Text-to-Picture m-Learning System.,2017,5,IEEE Access,,db/journals/access/access5.html#KarkarAM17,https://doi.org/10.1109/ACCESS.2017.2710315 +Yaping Huang,CBM Reservoir Rock Physics Model and Its Response Characteristic Study.,2017,5,IEEE Access,,db/journals/access/access5.html#HuangWMZ17,https://doi.org/10.1109/ACCESS.2017.2687882 +Byeonggil Park,Area-Optimized Fully-Flexible BCH Decoder for Multiple GF Dimensions.,2018,6,IEEE Access,,db/journals/access/access6.html#ParkPL18,https://doi.org/10.1109/ACCESS.2018.2815640 +Pengfei Song,Robust Output Voltage Regulation for DC-DC Buck Converters Under Load Variations via Sampled-Data Sensorless Control.,2018,6,IEEE Access,,db/journals/access/access6.html#SongCB18,https://doi.org/10.1109/ACCESS.2018.2794458 +Chuan Yin,Fast Algorithm for Rough-Surface Scene Simulation in Passive Millimeter Wave Imaging.,2018,6,IEEE Access,,db/journals/access/access6.html#YinGPJ18,https://doi.org/10.1109/ACCESS.2018.2827020 +Jianwei Feng,Quantitative Prediction of 3-D Multiple Parameters of Tectonic Fractures in Tight Sandstone Reservoirs Based on Geomechanical Method.,2018,6,IEEE Access,,db/journals/access/access6.html#FengDLL18,https://doi.org/10.1109/ACCESS.2018.2847723 +Wenfeng Yin,ECG Monitoring System Integrated With IR-UWB Radar Based on CNN.,2016,4,IEEE Access,,db/journals/access/access4.html#YinYZO16,https://doi.org/10.1109/ACCESS.2016.2608777 +Viacheslav Yuzhaninov,Design Flow and Characterization Methodology for Dual Mode Logic.,2015,3,IEEE Access,,db/journals/access/access3.html#YuzhaninovLF15,https://doi.org/10.1109/ACCESS.2016.2514398 +Shih-Lun Chen,VLSI Implementation of a Cost-Efficient Micro Control Unit With an Asymmetric Encryption for Wireless Body Sensor Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenTLL17,https://doi.org/10.1109/ACCESS.2017.2679123 +M. Ramos Garcia,Stabilizing an Urban Semi-Autonomous Bicycle.,2018,6,IEEE Access,,db/journals/access/access6.html#GarciaMAF18,https://doi.org/10.1109/ACCESS.2018.2795247 +Yunchuan Sun,Internet of Things and Big Data Analytics for Smart and Connected Communities.,2016,4,IEEE Access,,db/journals/access/access4.html#SunSJB16,https://doi.org/10.1109/ACCESS.2016.2529723 +Bin Cao 0005,Distributed Parallel Particle Swarm Optimization for Multi-Objective and Many-Objective Large-Scale Optimization.,2017,5,IEEE Access,,db/journals/access/access5.html#CaoZLLYKK17,https://doi.org/10.1109/ACCESS.2017.2702561 +Yenming Huang,Circularly Pulse-Shaped Precoding for OFDM: A New Waveform and Its Optimization Design for 5G New Radio.,2018,6,IEEE Access,,db/journals/access/access6.html#HuangS18,https://doi.org/10.1109/ACCESS.2018.2864336 +Yonghua Mao,A Study on Deep Belief Net for Branch Prediction.,2018,6,IEEE Access,,db/journals/access/access6.html#MaoSG18,https://doi.org/10.1109/ACCESS.2017.2772334 +Junhee Ryu,File-System-Level Storage Tiering for Faster Application Launches on Logical Hybrid Disks.,2016,4,IEEE Access,,db/journals/access/access4.html#RyuLHSK16,https://doi.org/10.1109/ACCESS.2016.2587777 +Jean Pierre De Vries,A Risk-Informed Interference Assessment of MetSat/LTE Coexistence.,2017,5,IEEE Access,,db/journals/access/access5.html#VriesLT17,https://doi.org/10.1109/ACCESS.2017.2685592 +Yuriy V. Zakharov,Low-Complexity DCD-Based Sparse Recovery Algorithms.,2017,5,IEEE Access,,db/journals/access/access5.html#ZakharovNLN17,https://doi.org/10.1109/ACCESS.2017.2715882 +Wenfa Kang,Distributed Secondary Control Method for Islanded Microgrids With Communication Constraints.,2018,6,IEEE Access,,db/journals/access/access6.html#KangLGLWXC18,https://doi.org/10.1109/ACCESS.2017.2762356 +Sudhir K. Mishra,Reduced Feedback Rate Schemes for Transmit Antenna Selection With Alamouti Coding.,2018,6,IEEE Access,,db/journals/access/access6.html#MishraK18,https://doi.org/10.1109/ACCESS.2018.2806375 +Yongle Chen,Localizing Access Point Through Simple Gesture.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenWYYC18,https://doi.org/10.1109/ACCESS.2018.2853599 +Jun Wang 0027,A Differentially Private Unscented Kalman Filter for Streaming Data in IoT.,2018,6,IEEE Access,,db/journals/access/access6.html#WangZL18,https://doi.org/10.1109/ACCESS.2018.2797159 +Khoa Tran Phan,Power Allocation for Buffer-Aided Full-Duplex Relaying With Imperfect Self-Interference Cancelation and Statistical Delay Constraint.,2016,4,IEEE Access,,db/journals/access/access4.html#PhanL16,https://doi.org/10.1109/ACCESS.2016.2594216 +Feng Lu 0006,A Hybrid Kalman Filtering Approach Based on Federated Framework for Gas Turbine Engine Health Monitoring.,2018,6,IEEE Access,,db/journals/access/access6.html#LuHHQ18,https://doi.org/10.1109/ACCESS.2017.2780278 +Ying Li 0014,High-Dimensional Sparse Graph Estimation by Integrating DTW-D Into Bayesian Gaussian Graphical Models.,2018,6,IEEE Access,,db/journals/access/access6.html#LiXL18,https://doi.org/10.1109/ACCESS.2018.2849213 +Jianqiang Zhao,Comparison Research on Text Pre-processing Methods on Twitter Sentiment Analysis.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhaoG17,https://doi.org/10.1109/ACCESS.2017.2672677 +Jiafu Wan,Mobile Services for Customization Manufacturing Systems: An Example of Industry 4.0.,2016,4,IEEE Access,,db/journals/access/access4.html#WanYLZWZ16,https://doi.org/10.1109/ACCESS.2016.2631152 +Mudassar Ahmad,End-to-End Loss Based TCP Congestion Control Mechanism as a Secured Communication Technology for Smart Healthcare Enterprises.,2018,6,IEEE Access,,db/journals/access/access6.html#AhmadHAAJAA18,https://doi.org/10.1109/ACCESS.2018.2802841 +Xue Ren,Design of Wideband Circularly Polarized Vivaldi Antenna With Stable Radiation Pattern.,2018,6,IEEE Access,,db/journals/access/access6.html#RenLX18,https://doi.org/10.1109/ACCESS.2017.2773566 +Zhiqiang Qi,Distributed Resource Scheduling Based on Potential Game in Dense Cellular Network.,2018,6,IEEE Access,,db/journals/access/access6.html#QiPW18,https://doi.org/10.1109/ACCESS.2018.2806178 +Junjun Zheng,Component Importance Analysis of Mobile Cloud Computing System in the Presence of Common-Cause Failures.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhengOD18,https://doi.org/10.1109/ACCESS.2018.2822338 +Zheng Shi,Goodput Maximization of HARQ-IR Over Arbitrarily Correlated Rician Fading Channels.,2018,6,IEEE Access,,db/journals/access/access6.html#ShiWMYY18,https://doi.org/10.1109/ACCESS.2018.2839615 +Rongteng Wu,A Heterogeneous Parallel Cholesky Block Factorization Algorithm.,2018,6,IEEE Access,,db/journals/access/access6.html#Wu18a,https://doi.org/10.1109/ACCESS.2018.2803794 +Anselme Ndikumana,Joint Incentive Mechanism for Paid Content Caching and Price Based Cache Replacement Policy in Named Data Networking.,2018,6,IEEE Access,,db/journals/access/access6.html#NdikumanaTHNHH18,https://doi.org/10.1109/ACCESS.2018.2848231 +Peng Zhou,Rail Profile Measurement Based on Line-structured Light Vision.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhouXW18,https://doi.org/10.1109/ACCESS.2018.2813319 +Jiannan Wei,A Privacy-Preserving Fog Computing Framework for Vehicular Crowdsensing Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#WeiWLYM18,https://doi.org/10.1109/ACCESS.2018.2861430 +Shiwei Chen,Preimage Attacks on Some Hashing Modes Instantiating Reduced-Round LBlock.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenJ18,https://doi.org/10.1109/ACCESS.2018.2864663 +Haiping Zhu,A Group-Oriented Recommendation Algorithm Based on Similarities of Personal Learning Generative Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhuNTFCZ18,https://doi.org/10.1109/ACCESS.2018.2856753 +Yangmei Zhang,Multiplication-Based Pulse Integration for Detecting Underwater Target in Impulsive Noise Environment.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhangX16,https://doi.org/10.1109/ACCESS.2016.2618375 +Zeinab Zali,Peer-Assisted Information-Centric Network (PICN): A Backward Compatible Solution.,2017,5,IEEE Access,,db/journals/access/access5.html#ZaliAMHT17,https://doi.org/10.1109/ACCESS.2017.2762697 +Xiaokang Ye,Neural-Network-Assisted UE Localization Using Radio-Channel Fingerprints in LTE Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#YeYCYX17,https://doi.org/10.1109/ACCESS.2017.2712131 +Peng Li,An ADMM Based Distributed Finite-Time Algorithm for Economic Dispatch Problems.,2018,6,IEEE Access,,db/journals/access/access6.html#LiH18a,https://doi.org/10.1109/ACCESS.2018.2837663 +Carsten Bockelmann,Towards Massive Connectivity Support for Scalable mMTC Communications in 5G Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#BockelmannPWSNG18,https://doi.org/10.1109/ACCESS.2018.2837382 +Hongyuan Gao,Cooperative Wireless Energy Harvesting and Spectrum Sharing in 5G Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#GaoEJ16,https://doi.org/10.1109/ACCESS.2016.2579598 +Zhi-Zhong Liu,ECoFFeS: A Software Using Evolutionary Computation for Feature Selection in Drug Discovery.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuH0C18,https://doi.org/10.1109/ACCESS.2018.2821441 +Setareh Maghsudi,Distributed User Association in Energy Harvesting Dense Small Cell Networks: A Mean-Field Multi-Armed Bandit Approach.,2017,5,IEEE Access,,db/journals/access/access5.html#MaghsudiH17,https://doi.org/10.1109/ACCESS.2017.2676166 +Ahmed El Shafie,Securing Untrusted RF-EH Relay Networks Using Cooperative Jamming Signals.,2017,5,IEEE Access,,db/journals/access/access5.html#ShafieMTAH17,https://doi.org/10.1109/ACCESS.2017.2768508 +Sijia Chen,Attention Alignment Multimodal LSTM for Fine-Gained Common Space Learning.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenSG18,https://doi.org/10.1109/ACCESS.2018.2822663 +Ali M. Mahmood,A New Processing Approach for Reducing Computational Complexity in Cloud-RAN Mobile Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#MahmoodAA18,https://doi.org/10.1109/ACCESS.2017.2782763 +Hermenegilda Macià,Complex Event Processing Modeling by Prioritized Colored Petri Nets.,2016,4,IEEE Access,,db/journals/access/access4.html#MaciaVDBO16,https://doi.org/10.1109/ACCESS.2016.2621718 +Wencheng Yang,Securing Mobile Healthcare Data: A Smart Card Based Cancelable Finger-Vein Bio-Cryptosystem.,2018,6,IEEE Access,,db/journals/access/access6.html#YangWHZCAV18,https://doi.org/10.1109/ACCESS.2018.2844182 +Kurban Ubul,Script Identification of Multi-Script Documents: A Survey.,2017,5,IEEE Access,,db/journals/access/access5.html#UbulTAIPY17,https://doi.org/10.1109/ACCESS.2017.2689159 +Shuang Feng,Mitigation of Power System Forced Oscillations: An E-STATCOM Approach.,2018,6,IEEE Access,,db/journals/access/access6.html#FengWJXL18,https://doi.org/10.1109/ACCESS.2017.2784407 +Xiuhua Li,CaaS: Caching as a Service for 5G Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#LiWLL17,https://doi.org/10.1109/ACCESS.2017.2689678 +Sumaya Abusaleh,The Art of Reading Explosion Phenomena: Science and Algorithms.,2018,6,IEEE Access,,db/journals/access/access6.html#AbusalehME18,https://doi.org/10.1109/ACCESS.2017.2780277 +Hao Liang 0004,Efficient Design of Multi-Packet Hybrid ARQ Transmission Scheme Based on Polar Codes.,2018,6,IEEE Access,,db/journals/access/access6.html#LiangLZL18,https://doi.org/10.1109/ACCESS.2018.2845122 +Xinghao Chen,SHPR-Net: Deep Semantic Hand Pose Regression From Point Clouds.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenWZKJ18,https://doi.org/10.1109/ACCESS.2018.2863540 +Kui Liu,Breast Cancer Classification Based on Fully-Connected Layer First Convolutional Neural Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuKZH18,https://doi.org/10.1109/ACCESS.2018.2817593 +Xuan Li,A Patch-Based Saliency Detection Method for Assessing the Visual Privacy Levels of Objects in Photos.,2017,5,IEEE Access,,db/journals/access/access5.html#LiLYC17,https://doi.org/10.1109/ACCESS.2017.2767622 +Julie Iskander,A Review on Ocular Biomechanic Models for Assessing Visual Fatigue in Virtual Reality.,2018,6,IEEE Access,,db/journals/access/access6.html#IskanderHN18,https://doi.org/10.1109/ACCESS.2018.2815663 +Liu Sheng,Robust Adaptive Backstepping Sliding Mode Control for Six-Phase Permanent Magnet Synchronous Motor Using Recurrent Wavelet Fuzzy Neural Network.,2017,5,IEEE Access,,db/journals/access/access5.html#ShengXL17,https://doi.org/10.1109/ACCESS.2017.2721459 +Ramon dos Reis Fontes,From Theory to Experimental Evaluation: Resource Management in Software-Defined Vehicular Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#FontesCRM17,https://doi.org/10.1109/ACCESS.2017.2671030 +Huayan Guo,Soft Combination for Cooperative Spectrum Sensing in Fading Channels.,2017,5,IEEE Access,,db/journals/access/access5.html#GuoRJL17,https://doi.org/10.1109/ACCESS.2016.2628860 +Hadeal Abdulaziz Al Hamid,A Security Model for Preserving the Privacy of Medical Big Data in a Healthcare Cloud Using a Fog Computing Facility With Pairing-Based Cryptography.,2017,5,IEEE Access,,db/journals/access/access5.html#HamidRHAA17,https://doi.org/10.1109/ACCESS.2017.2757844 +Rocco Giofre,A Design Approach to Maximize the Efficiency vs. Linearity Trade-Off in Fixed and Modulated Load GaN Power Amplifiers.,2018,6,IEEE Access,,db/journals/access/access6.html#GiofreCG18,https://doi.org/10.1109/ACCESS.2018.2807479 +Bin Lyu,Wireless Powered Communication Networks Assisted by Backscatter Communication.,2017,5,IEEE Access,,db/journals/access/access5.html#LyuYGF17,https://doi.org/10.1109/ACCESS.2017.2677521 +Lan Wang,A Secure Link State Routing Protocol for NDN.,2018,6,IEEE Access,,db/journals/access/access6.html#WangLHZYZ18,https://doi.org/10.1109/ACCESS.2017.2789330 +Jiamin Li,Uplink Spectral Efficiency Analysis of Distributed Massive MIMO With Channel Impairments.,2017,5,IEEE Access,,db/journals/access/access5.html#LiWZY17,https://doi.org/10.1109/ACCESS.2017.2694010 +Jung Hee Cheon,Toward a Secure Drone System: Flying With Real-Time Homomorphic Authenticated Encryption.,2018,6,IEEE Access,,db/journals/access/access6.html#CheonHHKKKSSS18,https://doi.org/10.1109/ACCESS.2018.2819189 +Zheping Yan,Clustering Statistic Hough Transform Based Estimation Method for Motion Elements of Multiple Underwater Targets.,2018,6,IEEE Access,,db/journals/access/access6.html#YanZXCDL18,https://doi.org/10.1109/ACCESS.2018.2825887 +Xiangrui Kong,Three-Stage Distributed State Estimation for AC-DC Hybrid Distribution Network Under Mixed Measurement Environment.,2018,6,IEEE Access,,db/journals/access/access6.html#KongYGXF18,https://doi.org/10.1109/ACCESS.2018.2853664 +Taj Rahman Siddiqi,DPCA: Data Prioritization and Capacity Assignment in Wireless Sensor Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#SiddiqiNPM17,https://doi.org/10.1109/ACCESS.2016.2630118 +Tayler Pino,Dominating Set Algorithms for Wireless Sensor Networks Survivability.,2018,6,IEEE Access,,db/journals/access/access6.html#PinoCA18,https://doi.org/10.1109/ACCESS.2018.2819083 +Aqeel Sahi Khader,An Efficient DDoS TCP Flood Attack Detection and Prevention System in a Cloud Environment.,2017,5,IEEE Access,,db/journals/access/access5.html#SahiLLD17,https://doi.org/10.1109/ACCESS.2017.2688460 +Zhi Han,Active Trace: A Sparse Spatiotemporal Representation for Videos.,2017,5,IEEE Access,,db/journals/access/access5.html#HanSYDTT17,https://doi.org/10.1109/ACCESS.2017.2763963 +Ghulam Mujtaba Shaikh,Email Classification Research Trends: Review and Open Issues.,2017,5,IEEE Access,,db/journals/access/access5.html#ShaikhSRMA17,https://doi.org/10.1109/ACCESS.2017.2702187 +Federica Cena,Principles to Design Smart Physical Objects as Adaptive Recommenders.,2017,5,IEEE Access,,db/journals/access/access5.html#CenaCMT17,https://doi.org/10.1109/ACCESS.2017.2765746 +Gong-Qing Wu,Entity Linking: An Issue to Extract Corresponding Entity With Knowledge Base.,2018,6,IEEE Access,,db/journals/access/access6.html#WuHH18,https://doi.org/10.1109/ACCESS.2017.2787787 +Nenad S. Jovicic,A Floating Linear Voltage Regulator for Powering Large-Scale Differential Communication Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#JovicicR18,https://doi.org/10.1109/ACCESS.2018.2832123 +Kai Da Xu,Printed Quasi-Yagi Antennas Using Double Dipoles and Stub-Loaded Technique for Multi-Band and Broadband Applications.,2018,6,IEEE Access,,db/journals/access/access6.html#XuLLL18,https://doi.org/10.1109/ACCESS.2018.2838328 +Zhipeng Feng,Adaptive Mode Decomposition Methods and Their Applications in Signal Analysis for Machinery Fault Diagnosis: A Review With Examples.,2017,5,IEEE Access,,db/journals/access/access5.html#FengZZ17,https://doi.org/10.1109/ACCESS.2017.2766232 +Tsung-Jung Liu,A High-Definition Diversity-Scene Database for Image Quality Assessment.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuLPL18,https://doi.org/10.1109/ACCESS.2018.2864514 +Nursyarizal Mohd Nor,Battery Storage for the Utility-Scale Distributed Photovoltaic Generations.,2018,6,IEEE Access,,db/journals/access/access6.html#NorAIR18,https://doi.org/10.1109/ACCESS.2017.2778004 +Xiaojin Ding,Security-Reliability Tradeoff for Friendly Jammer Assisted User-Pair Selection in the Face of Multiple Eavesdroppers.,2016,4,IEEE Access,,db/journals/access/access4.html#DingSZC16,https://doi.org/10.1109/ACCESS.2016.2607783 +Mikael Björkbom,Localization Services for Online Common Operational Picture and Situation Awareness.,2013,1,IEEE Access,,db/journals/access/access1.html#BjorkbomTYKGMSKCJVVK13,https://doi.org/10.1109/ACCESS.2013.2287302 +Wen-Hsien Ho,Intelligent Hybrid Taguchi-Genetic Algorithm for Multi-Criteria Optimization of Shaft Alignment in Marine Vessels.,2016,4,IEEE Access,,db/journals/access/access4.html#HoTCY16,https://doi.org/10.1109/ACCESS.2016.2569537 +Rui Xiong,Critical Review on the Battery State of Charge Estimation Methods for Electric Vehicles.,2018,6,IEEE Access,,db/journals/access/access6.html#XiongCYHS18,https://doi.org/10.1109/ACCESS.2017.2780258 +Li Wang,Kernel Entropy-Based Classification Approach for Superbuck Converter Circuit Fault Diagnosis.,2018,6,IEEE Access,,db/journals/access/access6.html#WangLSY18,https://doi.org/10.1109/ACCESS.2018.2864138 +Mona Jaber,A Distributed SON-Based User-Centric Backhaul Provisioning Scheme.,2016,4,IEEE Access,,db/journals/access/access4.html#JaberITT16a,https://doi.org/10.1109/ACCESS.2016.2566958 +Weiwei Rao,Efficient Amplitude Shift Keying-Aided Orthogonal Chaotic Vector Position Shift Keying Scheme With QoS Considerations.,2017,5,IEEE Access,,db/journals/access/access5.html#RaoZLW17,https://doi.org/10.1109/ACCESS.2017.2728799 +Yadong Zhou,ProGuard: Detecting Malicious Accounts in Social-Network-Based Online Promotions.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhouKZLJJL17,https://doi.org/10.1109/ACCESS.2017.2654272 +Jie Ding,Exploring Auto-Generation of Network Models With Performance Evaluation Process Algebra.,2018,6,IEEE Access,,db/journals/access/access6.html#DingWCG18,https://doi.org/10.1109/ACCESS.2018.2862390 +Tibin Joseph,Asset Management Strategies for Power Electronic Converters in Transmission Networks: Application to Hvdc and FACTS Devices.,2018,6,IEEE Access,,db/journals/access/access6.html#JosephULC18,https://doi.org/10.1109/ACCESS.2018.2826360 +Xingguo Huang,Extended Beam Approximation for High-Frequency Wave Propagation.,2018,6,IEEE Access,,db/journals/access/access6.html#Huang18,https://doi.org/10.1109/ACCESS.2018.2849595 +Marko Höyhtyä,Database-Assisted Spectrum Sharing in Satellite Communications: A Survey.,2017,5,IEEE Access,,db/journals/access/access5.html#HoyhtyaMCHJDG17,https://doi.org/10.1109/ACCESS.2017.2771300 +Wenxuan Yao,Source Location Identification of Distribution-Level Electric Network Frequency Signals at Multiple Geographic Scales.,2017,5,IEEE Access,,db/journals/access/access5.html#YaoZTYLCL17,https://doi.org/10.1109/ACCESS.2017.2707060 +Neng-Wu Liu,A Wideband Differential-Fed Dual-Polarized Microstrip Antenna Under Radiation of Dual Improved Odd-Order Resonant Modes.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuZZC17,https://doi.org/10.1109/ACCESS.2017.2751498 +An-Dong Huang,A General Dimension Reduction Method for the Dispersion Modeling of Semiconductor Devices.,2018,6,IEEE Access,,db/journals/access/access6.html#HuangZGW18,https://doi.org/10.1109/ACCESS.2018.2855044 +Haopeng Zhang,Accurate Star Centroid Detection for the Advanced Geosynchronous Radiation Imager of Fengyun-4A.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangSSYCLWZZ18,https://doi.org/10.1109/ACCESS.2018.2798625 +Shabnam Sodagari,Technologies and Challenges for Cognitive Radio Enabled Medical Wireless Body Area Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#SodagariBA18,https://doi.org/10.1109/ACCESS.2018.2843259 +Xize Zhang,An Approach for Repairing Process Models Based on Logic Petri Nets.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangDQS18,https://doi.org/10.1109/ACCESS.2018.2843137 +Qi Zhang,Heart Rate Extraction Based on Near-Infrared Camera: Towards Driver State Monitoring.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangZSLN18,https://doi.org/10.1109/ACCESS.2018.2845390 +Alan Díaz-Manríquez,An Automatic Document Classifier System Based on Genetic Algorithm and Taxonomy.,2018,6,IEEE Access,,db/journals/access/access6.html#Diaz-ManriquezR18,https://doi.org/10.1109/ACCESS.2018.2815992 +Li Zhang,Dynamic Interference Steering in Heterogeneous Cellular Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangGSSL18,https://doi.org/10.1109/ACCESS.2018.2836221 +Ismail M. Keshta,Towards Implementation of Requirements Management Specific Practices (SP1.3 and SP1.4) for Saudi Arabian Small and Medium Sized Software Development Organizations.,2017,5,IEEE Access,,db/journals/access/access5.html#KeshtaNA17,https://doi.org/10.1109/ACCESS.2017.2764490 +Qibiao Zhu,Radio Vortex-Multiple-Input Multiple-Output Communication Systems With High Capacity.,2015,3,IEEE Access,,db/journals/access/access3.html#ZhuJQCZ15,https://doi.org/10.1109/ACCESS.2015.2503293 +Jae-Sung Lee,Smartphone-Assisted Pronunciation Learning Technique for Ambient Intelligence.,2017,5,IEEE Access,,db/journals/access/access5.html#LeeLKK17,https://doi.org/10.1109/ACCESS.2016.2641474 +Pengtao Zhao,Energy-Saving Offloading by Jointly Allocating Radio and Computational Resources for Mobile Edge Computing.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhaoTQN17,https://doi.org/10.1109/ACCESS.2017.2710056 +Yanping Yang,Truncated-ARQ Aided Adaptive Network Coding for Cooperative Two-Way Relaying Networks: Cross-Layer Design and Analysis.,2016,4,IEEE Access,,db/journals/access/access4.html#YangCLLH16,https://doi.org/10.1109/ACCESS.2016.2604323 +Hongming Zhang,Compressed Impairment Sensing-Assisted and Interleaved-Double-FFT-Aided Modulation Improves Broadband Power Line Communications Subjected to Asynchronous Impulsive Noise.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhangYH16,https://doi.org/10.1109/ACCESS.2015.2505676 +Jingjing Cui,On the Robustness and Reliability in the Pose Deformation System of Mobile Robots.,2018,6,IEEE Access,,db/journals/access/access6.html#CuiZRCG18,https://doi.org/10.1109/ACCESS.2018.2835836 +Shengjun Huang,Fast Batched Solution for Real-Time Optimal Power Flow With Penetration of Renewable Energy.,2018,6,IEEE Access,,db/journals/access/access6.html#HuangD18,https://doi.org/10.1109/ACCESS.2018.2812084 +Mohamed Labidi,A Computational Study of the Two-Machine No-Wait Flow Shop Scheduling Problem Subject to Unequal Release Dates and Non-Availability Constraints.,2018,6,IEEE Access,,db/journals/access/access6.html#LabidiKLGS18,https://doi.org/10.1109/ACCESS.2018.2815598 +Carlos Bousoño-Calzón,Expert Selection in Prediction Markets With Homological Invariants.,2018,6,IEEE Access,,db/journals/access/access6.html#Bousono-CalzonM18,https://doi.org/10.1109/ACCESS.2018.2846878 +Keiji Miura,Real-Time Computing of Touch Topology via Poincare-Hopf Index.,2015,3,IEEE Access,,db/journals/access/access3.html#MiuraN15,https://doi.org/10.1109/ACCESS.2015.2504387 +Yuvraj Sahni,Edge Mesh: A New Paradigm to Enable Distributed Intelligence in Internet of Things.,2017,5,IEEE Access,,db/journals/access/access5.html#SahniCZY17,https://doi.org/10.1109/ACCESS.2017.2739804 +Yi Zhang 0021,Non-Orthogonal Multiple Access Assisted Multi-Region Geocast.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangWDL18,https://doi.org/10.1109/ACCESS.2017.2782821 +Jiang-Qiao Ding,Beam Shaping Performance Based on Metallic Corrugated Grooves and Dielectric Periodic Gratings at 500 GHz.,2018,6,IEEE Access,,db/journals/access/access6.html#DingHSZ18,https://doi.org/10.1109/ACCESS.2018.2861727 +Huaxia Wang,Prioritized Secondary User Access Control in Cognitive Radio Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#WangYP18,https://doi.org/10.1109/ACCESS.2018.2811341 +Jian Zou,Split Bregman Algorithm for Structured Sparse Reconstruction.,2018,6,IEEE Access,,db/journals/access/access6.html#ZouLL18,https://doi.org/10.1109/ACCESS.2018.2825323 +Xuezhi Xiang,Deep Optical Flow Supervised Learning With Prior Assumptions.,2018,6,IEEE Access,,db/journals/access/access6.html#XiangZZQE18,https://doi.org/10.1109/ACCESS.2018.2863233 +Lei Shu 0001,When Mobile Crowd Sensing Meets Traditional Industry.,2017,5,IEEE Access,,db/journals/access/access5.html#ShuCHBW17,https://doi.org/10.1109/ACCESS.2017.2657820 +Khaqan Zaheer,A Survey of Decision-Theoretic Models for Cognitive Internet of Things (CIoT).,2018,6,IEEE Access,,db/journals/access/access6.html#ZaheerORP18,https://doi.org/10.1109/ACCESS.2018.2825282 +Akin Cellatoglu,Increasing the Sensitivity of Vibrating Wire Pressure Sensor.,2013,1,IEEE Access,,db/journals/access/access1.html#CellatogluB13,https://doi.org/10.1109/ACCESS.2013.2262012 +Sanjay Misra,A Suite of Object Oriented Cognitive Complexity Metrics.,2018,6,IEEE Access,,db/journals/access/access6.html#MisraASD18,https://doi.org/10.1109/ACCESS.2018.2791344 +Lars Gjesteby,Hybrid Imaging System for Simultaneous Spiral MR and X-ray (MRX) Scans.,2017,5,IEEE Access,,db/journals/access/access5.html#GjestebyXKYW17,https://doi.org/10.1109/ACCESS.2016.2637660 +Yuhao Shan,Descriptor Matching for a Discrete Spherical Image With a Convolutional Neural Network.,2018,6,IEEE Access,,db/journals/access/access6.html#ShanL18,https://doi.org/10.1109/ACCESS.2018.2825477 +Zude Zhou,Fog Computing-Based Cyber-Physical Machine Tool System.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhouHLLYL18,https://doi.org/10.1109/ACCESS.2018.2863258 +Sara Tehsin,Self-Organizing Hierarchical Particle Swarm Optimization of Correlation Filters for Object Recognition.,2017,5,IEEE Access,,db/journals/access/access5.html#TehsinRSRHAYA17,https://doi.org/10.1109/ACCESS.2017.2762354 +Tian Zhang 0002,Energy Harvesting Aided Multiuser Transmission in Spectrum Sharing Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhangCW16,https://doi.org/10.1109/ACCESS.2016.2591550 +Yan Li,IBAS: Index Based A-Star.,2018,6,IEEE Access,,db/journals/access/access6.html#LiZZLYW18,https://doi.org/10.1109/ACCESS.2018.2808407 +Hongliang Ren 0001,Electromagnetic Needleless Injector With Halbach Array Towards Intravitreal Delivery.,2018,6,IEEE Access,,db/journals/access/access6.html#RenYSI18,https://doi.org/10.1109/ACCESS.2017.2778193 +Gemma Hornero,A Wireless Augmentative and Alternative Communication System for People With Speech Disabilities.,2015,3,IEEE Access,,db/journals/access/access3.html#HorneroCQDRRC15,https://doi.org/10.1109/ACCESS.2015.2466110 +Jun Hu 0006,A Wideband Array Antenna With 1-Bit Digital-Controllable Radiation Beams.,2018,6,IEEE Access,,db/journals/access/access6.html#HuHW18,https://doi.org/10.1109/ACCESS.2018.2801940 +Ke Lai,Sub-Graph Based Joint Sparse Graph for Sparse Code Multiple Access Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#LaiWLXMI18,https://doi.org/10.1109/ACCESS.2018.2828126 +Tao Hu,Multi-controller Based Software-Defined Networking: A Survey.,2018,6,IEEE Access,,db/journals/access/access6.html#HuGYBL18,https://doi.org/10.1109/ACCESS.2018.2814738 +Hanyu Wang,MPNET: An End-to-End Deep Neural Network for Object Detection in Surveillance Video.,2018,6,IEEE Access,,db/journals/access/access6.html#WangWQ18,https://doi.org/10.1109/ACCESS.2018.2836921 +Enrique Dávalos,A Survey on Algorithmic Aspects of Virtual Optical Network Embedding for Cloud Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#DavalosB18,https://doi.org/10.1109/ACCESS.2018.2821179 +Gurbinder Singh Brar,Energy Efficient Direction-Based PDORP Routing Protocol for WSN.,2016,4,IEEE Access,,db/journals/access/access4.html#BrarRCMSA16,https://doi.org/10.1109/ACCESS.2016.2576475 +Tao Zhang 0025,Individual-Activation-Factor Memory Proportionate Affine Projection Algorithm With Evolving Regularization.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangJL17,https://doi.org/10.1109/ACCESS.2017.2682918 +Qiang Wang 0005,Secure Collaborative Publicly Verifiable Computation.,2017,5,IEEE Access,,db/journals/access/access5.html#WangZCXW17,https://doi.org/10.1109/ACCESS.2017.2672866 +Jinbao Wang,Achieving Effective $k$ -Anonymity for Query Privacy in Location-Based Services.,2017,5,IEEE Access,,db/journals/access/access5.html#WangLYGLL17,https://doi.org/10.1109/ACCESS.2017.2766669 +Xiaogang Song,Optimal Design of the k-Out-of-n: G (F) Majority Voter.,2017,5,IEEE Access,,db/journals/access/access5.html#SongZLGZ17,https://doi.org/10.1109/ACCESS.2017.2761776 +Pradyumna S. Singh,From Sensors to Systems: CMOS-Integrated Electrochemical Biosensors.,2015,3,IEEE Access,,db/journals/access/access3.html#Singh15,https://doi.org/10.1109/ACCESS.2015.2410256 +Quang-Phuoc Nguyen,Effect of Word Sense Disambiguation on Neural Machine Translation: A Case Study in Korean.,2018,6,IEEE Access,,db/journals/access/access6.html#NguyenVSO18,https://doi.org/10.1109/ACCESS.2018.2851281 +Qing-Chang Zhong,The Ghost Operator and Its Applications to Reveal the Physical Meaning of Reactive Power for Electrical and Mechanical Systems and Others.,2017,5,IEEE Access,,db/journals/access/access5.html#Zhong17,https://doi.org/10.1109/ACCESS.2017.2720161 +Jongheon Kim,Development of a Novel Hybrid-Type Rotary Steerable System for Directional Drilling.,2017,5,IEEE Access,,db/journals/access/access5.html#KimM17,https://doi.org/10.1109/ACCESS.2017.2768389 +Yan Lyu,R-Sharing: Rendezvous for Personalized Taxi Sharing.,2018,6,IEEE Access,,db/journals/access/access6.html#LyuLCNLZ18,https://doi.org/10.1109/ACCESS.2017.2778221 +Zhengtian Wu,A Rapid Solving Method to Large Airline Disruption Problems Caused by Airports Closure.,2017,5,IEEE Access,,db/journals/access/access5.html#WuGLDH17,https://doi.org/10.1109/ACCESS.2017.2773534 +Ying Liu,Distributed Blind Estimation Over Sensor Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuL17c,https://doi.org/10.1109/ACCESS.2017.2723051 +Weiqi Dai,SBLWT: A Secure Blockchain Lightweight Wallet Based on Trustzone.,2018,6,IEEE Access,,db/journals/access/access6.html#DaiDWCZJ18,https://doi.org/10.1109/ACCESS.2018.2856864 +Takuma Oide,COSAP: Contract-Oriented Sensor-Based Application Platform.,2017,5,IEEE Access,,db/journals/access/access5.html#OideAS17,https://doi.org/10.1109/ACCESS.2017.2696027 +Michael G. Pecht,Phthalates in Electronics: The Risks and the Alternatives.,2018,6,IEEE Access,,db/journals/access/access6.html#PechtAC18,https://doi.org/10.1109/ACCESS.2017.2778950 +Ning Yang 0003,A Novel Collaborative Task Offloading Scheme for Secure and Sustainable Mobile Cloudlet Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#YangFPHNG18,https://doi.org/10.1109/ACCESS.2018.2853634 +Clint Seward,Ball Lightning Events Explained as Self-Stable Spinning High-Density Plasma Toroids or Atmospheric Spheromaks.,2014,2,IEEE Access,,db/journals/access/access2.html#Seward14,https://doi.org/10.1109/ACCESS.2014.2308476 +Chenglong Li 0004,Adaptive Contour Feature and Color Feature Fusion for Monocular Textureless 3D Object Tracking.,2018,6,IEEE Access,,db/journals/access/access6.html#LiG18,https://doi.org/10.1109/ACCESS.2018.2839761 +Luuc Van Der Horst,Process Memory Investigation of the Bitcoin Clients Electrum and Bitcoin Core.,2017,5,IEEE Access,,db/journals/access/access5.html#HorstCL17,https://doi.org/10.1109/ACCESS.2017.2759766 +Fan Li 0004,Optimal Operation Planning for Orchestrating Multiple Pulsed Loads With Transient Stability Constraints in Isolated Power Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#LiCXSZQ18,https://doi.org/10.1109/ACCESS.2018.2819984 +Wenjing Zhao,Ambient Backscatter Communication Systems: Capacity and Outage Performance Analysis.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaoWFFA18,https://doi.org/10.1109/ACCESS.2018.2828021 +Charles Sawma,Bidirectional Parallel Capacitive Data Links: Modeling and Experimental Results.,2018,6,IEEE Access,,db/journals/access/access6.html#SawmaHKAS18,https://doi.org/10.1109/ACCESS.2018.2817583 +Devrim ünay,An Evaluation on the Robustness of Five Popular Keypoint Descriptors to Image Modifications Specific to Laser Scanning Microscopy.,2018,6,IEEE Access,,db/journals/access/access6.html#UnayS18,https://doi.org/10.1109/ACCESS.2018.2855264 +Azimah Ajam,A Review on Segmentation and Modeling of Cerebral Vasculature for Surgical Planning.,2017,5,IEEE Access,,db/journals/access/access5.html#AjamAAMFG17,https://doi.org/10.1109/ACCESS.2017.2718590 +Concepcion Sanchis-Borras,Experimental Study of MIMO-OFDM Transmissions at 94 GHz in Indoor Environments.,2017,5,IEEE Access,,db/journals/access/access5.html#Sanchis-BorrasM17,https://doi.org/10.1109/ACCESS.2017.2691402 +Xiao-Feng Gong,A Jacobi Generalized Orthogonal Joint Diagonalization Algorithm for Joint Blind Source Separation.,2018,6,IEEE Access,,db/journals/access/access6.html#GongMLL18,https://doi.org/10.1109/ACCESS.2018.2850784 +Jilin Zhang,An Adaptive Synchronous Parallel Strategy for Distributed Machine Learning.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangTRWZLW18,https://doi.org/10.1109/ACCESS.2018.2820899 +Linyan Guo,A Compact Antipodal Tapered Slot Antenna With Artificial Material Lens and Reflector for GPR Applications.,2018,6,IEEE Access,,db/journals/access/access6.html#GuoYZD18,https://doi.org/10.1109/ACCESS.2018.2864618 +Georgios Korres,Haptogram: Ultrasonic Point-Cloud Tactile Stimulation.,2016,4,IEEE Access,,db/journals/access/access4.html#KorresE16,https://doi.org/10.1109/ACCESS.2016.2608835 +Zhihua Zhang,Intrusion Detection Based on State Context and Hierarchical Trust in Wireless Sensor Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangZLXL17,https://doi.org/10.1109/ACCESS.2017.2717387 +Xin-Lin Huang,Spectrum Mapping in Large-Scale Cognitive Radio Networks With Historical Spectrum Decision Results Learning.,2018,6,IEEE Access,,db/journals/access/access6.html#HuangGTW18,https://doi.org/10.1109/ACCESS.2018.2822831 +Ao Li,Collaborative Self-Regression Method With Nonlinear Feature Based on Multi-Task Learning for Image Classification.,2018,6,IEEE Access,,db/journals/access/access6.html#LiWLCS18,https://doi.org/10.1109/ACCESS.2018.2862159 +Zahid Khan,On the Connectivity of Vehicular Ad Hoc Network Under Various Mobility Scenarios.,2017,5,IEEE Access,,db/journals/access/access5.html#KhanFF17,https://doi.org/10.1109/ACCESS.2017.2761551 +Zhijian Yin,A Deep Normalization and Convolutional Neural Network for Image Smoke Detection.,2017,5,IEEE Access,,db/journals/access/access5.html#YinWYXS17,https://doi.org/10.1109/ACCESS.2017.2747399 +Jie Zheng 0005,Joint Energy Management and Interference Coordination With Max-Min Fairness in Ultra-Dense HetNets.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhengGZZWGL18,https://doi.org/10.1109/ACCESS.2018.2841989 +Wonjun Kim,Thermal Sensor-Based Multiple Object Tracking for Intelligent Livestock Breeding.,2017,5,IEEE Access,,db/journals/access/access5.html#KimCL17,https://doi.org/10.1109/ACCESS.2017.2775040 +Nazih Hajri,Statistical Properties of Double Hoyt Fading With Applications to the Performance Analysis of Wireless Communication Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#HajriYKPD18,https://doi.org/10.1109/ACCESS.2018.2820746 +Wen Wu,Data-Driven Diagnosis of Cervical Cancer With Support Vector Machine-Based Approaches.,2017,5,IEEE Access,,db/journals/access/access5.html#WuZ17,https://doi.org/10.1109/ACCESS.2017.2763984 +Xiaoming Chen 0001,A Unified Performance Optimization for Secrecy Wireless Information and Power Transfer Over Interference Channels.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenCL17,https://doi.org/10.1109/ACCESS.2017.2723040 +Dong Zheng,Real-Time Estimation of Battery State of Charge With Metabolic Grey Model and LabVIEW Platform.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhengWACPC18,https://doi.org/10.1109/ACCESS.2018.2807805 +Okan Yurduseven,Design and Simulation of a Frequency-Diverse Aperture for Imaging of Human-Scale Targets.,2016,4,IEEE Access,,db/journals/access/access4.html#YurdusevenGRMS16,https://doi.org/10.1109/ACCESS.2016.2604823 +Huan Zhou 0002,A Survey on Mobile Data Offloading Technologies.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhouWLL18,https://doi.org/10.1109/ACCESS.2018.2799546 +Ganesh Chandrasekaran,Mobility as a Service (MaaS): A D2D-Based Information Centric Network Architecture for Edge-Controlled Content Distribution.,2018,6,IEEE Access,,db/journals/access/access6.html#ChandrasekaranW18,https://doi.org/10.1109/ACCESS.2017.2781736 +Nour Moustafa,A New Threat Intelligence Scheme for Safeguarding Industry 4.0 Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#MoustafaATH18,https://doi.org/10.1109/ACCESS.2018.2844794 +Yanhong Feng,Binary Moth Search Algorithm for Discounted {0-1} Knapsack Problem.,2018,6,IEEE Access,,db/journals/access/access6.html#FengW18,https://doi.org/10.1109/ACCESS.2018.2809445 +Qi Jiang 0001,Lightweight Three-Factor Authentication and Key Agreement Protocol for Internet-Integrated Wireless Sensor Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#JiangZMH17,https://doi.org/10.1109/ACCESS.2017.2673239 +Haoqian Huang,Attitude Estimation Fusing Quasi-Newton and Cubature Kalman Filtering for Inertial Navigation System Aided With Magnetic Sensors.,2018,6,IEEE Access,,db/journals/access/access6.html#HuangZZYSCZ18,https://doi.org/10.1109/ACCESS.2018.2833290 +Zain Ali,Achieving Green Transmission With Energy Harvesting Based Cooperative Communication.,2018,6,IEEE Access,,db/journals/access/access6.html#AliSZXG18,https://doi.org/10.1109/ACCESS.2018.2833507 +Rui Chen 0005,An Interactive Task Analysis Framework and Interactive System Research for Computer Aided Diagnosis.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenHJLWLLF17,https://doi.org/10.1109/ACCESS.2017.2761235 +Taha Mujahid,GPU-Accelerated Multivariate Empirical Mode Decomposition for Massive Neural Data Processing.,2017,5,IEEE Access,,db/journals/access/access5.html#MujahidRK17,https://doi.org/10.1109/ACCESS.2017.2705136 +Minh-Thuyen Thi,Proportional Selection of Mobile Relays in Millimeter-Wave Heterogeneous Networks.,2018,6,IEEE Access,,db/journals/access/access6.html#ThiHH18,https://doi.org/10.1109/ACCESS.2018.2812736 +Bjorn Thors,Exposure to RF EMF From Array Antennas in 5G Mobile Communication Equipment.,2016,4,IEEE Access,,db/journals/access/access4.html#ThorsCYBT16,https://doi.org/10.1109/ACCESS.2016.2601145 +Kun Xie,E3MC: Improving Energy Efficiency via Elastic Multi-Controller SDN in Data Center Networks.,2016,4,IEEE Access,,db/journals/access/access4.html#XieHHMZH16,https://doi.org/10.1109/ACCESS.2016.2617871 +Raymond Ahn,Using Proxies for Node Immunization Identification on Large Graphs.,2017,5,IEEE Access,,db/journals/access/access5.html#AhnZ17,https://doi.org/10.1109/ACCESS.2017.2723838 +Jingon Joung,Space-Time Line Code.,2018,6,IEEE Access,,db/journals/access/access6.html#Joung18a,https://doi.org/10.1109/ACCESS.2017.2777528 +Sun Liang,An Algorithm for Concrete Crack Extraction and Identification Based on Machine Vision.,2018,6,IEEE Access,,db/journals/access/access6.html#LiangJX18,https://doi.org/10.1109/ACCESS.2018.2844100 +Yanshan Li,Road Traffic Anomaly Detection Based on Fuzzy Theory.,2018,6,IEEE Access,,db/journals/access/access6.html#LiGXX18,https://doi.org/10.1109/ACCESS.2018.2851747 +Chaoben Du,Image Segmentation-Based Multi-Focus Image Fusion Through Multi-Scale Convolutional Neural Network.,2017,5,IEEE Access,,db/journals/access/access5.html#DuG17,https://doi.org/10.1109/ACCESS.2017.2735019 +Lili Cong,Ultra-Wideband Low-RCS Circularly-Polarized Metasurface-Based Array Antenna Using Tightly-Coupled Anisotropic Element.,2018,6,IEEE Access,,db/journals/access/access6.html#CongCGS18,https://doi.org/10.1109/ACCESS.2018.2857225 +Tzuu-Hseng S. Li,Design of Autonomous and Manual Driving System for 4WIS4WID Vehicle.,2016,4,IEEE Access,,db/journals/access/access4.html#LiLLLC16,https://doi.org/10.1109/ACCESS.2016.2548081 +Ivan B. Djordjevic,Multidimensional OAM-Based Secure High-Speed Wireless Communications.,2017,5,IEEE Access,,db/journals/access/access5.html#Djordjevic17,https://doi.org/10.1109/ACCESS.2017.2735994 +Yu Wang,A Fast Feature Fusion Algorithm in Image Classification for Cyber Physical Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#WangSZXC17,https://doi.org/10.1109/ACCESS.2017.2705798 +Murad Khan,Internet of Things Based Energy Aware Smart Home Control System.,2016,4,IEEE Access,,db/journals/access/access4.html#KhanSH16,https://doi.org/10.1109/ACCESS.2016.2621752 +Chitradeep Majumdar,Packet-Size Optimization for Multiple-Input Multiple-Output Cognitive Radio Sensor Networks-Aided Internet of Things.,2017,5,IEEE Access,,db/journals/access/access5.html#MajumdarLPMD17a,https://doi.org/10.1109/ACCESS.2017.2687083 +María-Emilia Cambronero,Modeling and Analysis of the 1-Wire Communication Protocol Using Timed Colored Petri Nets.,2018,6,IEEE Access,,db/journals/access/access6.html#CambroneroMRO18,https://doi.org/10.1109/ACCESS.2018.2833213 +Weiwei Shan,In-Situ Timing Monitor-Based Adaptive Voltage Scaling System for Wide-Voltage-Range Applications.,2017,5,IEEE Access,,db/journals/access/access5.html#ShanSY17,https://doi.org/10.1109/ACCESS.2017.2670644 +Justas Poderys,Caching at the Mobile Edge: A Practical Implementation.,2018,6,IEEE Access,,db/journals/access/access6.html#PoderysALCS18,https://doi.org/10.1109/ACCESS.2018.2809490 +Dan Xu,Fatigue Damage Mechanism-Based Dependent Modeling With Stochastic Degradation and Random Shocks.,2018,6,IEEE Access,,db/journals/access/access6.html#XuHSJZ18,https://doi.org/10.1109/ACCESS.2017.2787184 +Yusuf Mufti,A Readiness Model for Security Requirements Engineering.,2018,6,IEEE Access,,db/journals/access/access6.html#MuftiNAM18,https://doi.org/10.1109/ACCESS.2018.2840322 +Shihui Guo,Optimizing Neural Network as Locomotion Controller With Motion Data.,2018,6,IEEE Access,,db/journals/access/access6.html#GuoJGWL18,https://doi.org/10.1109/ACCESS.2018.2834380 +Xi Chen 0021,Minimum Bayesian Risk Based Robust Spectrum Prediction in the Presence of Sensing Errors.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenYD18,https://doi.org/10.1109/ACCESS.2018.2836940 +Monika Fedorova,The Fuzzy System as a Promising Tool for Drugs Selection in Medical Practice.,2018,6,IEEE Access,,db/journals/access/access6.html#FedorovaPPFSP18,https://doi.org/10.1109/ACCESS.2018.2831282 +Sung Sik Nam,New Closed-Form Results on Ordered Statistics of Partial Sums of Gamma Random Variables and Its Application to Performance Evaluation in the Presence of Nakagami Fading.,2017,5,IEEE Access,,db/journals/access/access5.html#NamKA17,https://doi.org/10.1109/ACCESS.2017.2717048 +Fadi M. Al-Turjman,Energy Efficiency Perspectives of Femtocells in Internet of Things: Recent Advances and Challenges.,2017,5,IEEE Access,,db/journals/access/access5.html#Al-TurjmanIB17,https://doi.org/10.1109/ACCESS.2017.2773834 +Hai Yu,GPI-Based Secrecy Rate Maximization Beamforming Scheme for Wireless Transmission With AN-Aided Directional Modulation.,2018,6,IEEE Access,,db/journals/access/access6.html#YuWCXZWWSWW18,https://doi.org/10.1109/ACCESS.2018.2812180 +Xiongwen Zhao,A Dual-Band Frequency Reconfigurable MIMO Patch-Slot Antenna Based on Reconfigurable Microstrip Feedline.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaoR18,https://doi.org/10.1109/ACCESS.2018.2858442 +Iván García-Magariño,Agent-Based Simulation of Smart Beds With Internet-of-Things for Exploring Big Data Analytics.,2018,6,IEEE Access,,db/journals/access/access6.html#Garcia-Magarino18,https://doi.org/10.1109/ACCESS.2017.2764467 +Jongyeop Kim,Physical-Layer Security Against Smart Eavesdroppers: Exploiting Full-Duplex Receivers.,2018,6,IEEE Access,,db/journals/access/access6.html#KimKLC18,https://doi.org/10.1109/ACCESS.2018.2844558 +Chao Zhang,Secrecy Outage Analysis on Underlay Cognitive Radio System With Full-Duplex Secondary User.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangWYLZPF17,https://doi.org/10.1109/ACCESS.2017.2769131 +Wei Liu 0051,Extended Logical Petri Nets-Based Modeling and Analysis of Business Processes.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuWDZY17,https://doi.org/10.1109/ACCESS.2017.2743113 +Riheng Jia,Modeling Dynamic Adaptive Streaming Over Information-Centric Networking.,2016,4,IEEE Access,,db/journals/access/access4.html#JiaLWGWX16,https://doi.org/10.1109/ACCESS.2016.2621114 +Kaung Oo Htet,Power Management Using Photovoltaic Cells for Implantable Devices.,2018,6,IEEE Access,,db/journals/access/access6.html#HtetGAH18,https://doi.org/10.1109/ACCESS.2018.2860793 +Muhammad Azeem Akbar,Statistical Analysis of the Effects of Heavyweight and Lightweight Methodologies on the Six-Pointed Star Model.,2018,6,IEEE Access,,db/journals/access/access6.html#AkbarSKFNHSXC18,https://doi.org/10.1109/ACCESS.2018.2805702 +Zhiwei Yan,Network Mobility in a Locator/ID Separation Context.,2017,5,IEEE Access,,db/journals/access/access5.html#YanAGNP17,https://doi.org/10.1109/ACCESS.2017.2734898 +Yayuan Tang,Relevant Feedback Based Accurate and Intelligent Retrieval on Capturing User Intention for Personalized Websites.,2018,6,IEEE Access,,db/journals/access/access6.html#TangWGXC18,https://doi.org/10.1109/ACCESS.2018.2828081 +Xiao Chen 0005,Blind Interference Alignment in Two-Cell Z Interference MIMO Channel.,2017,5,IEEE Access,,db/journals/access/access5.html#ChenZZWDLS17,https://doi.org/10.1109/ACCESS.2017.2712787 +Donghai Guan,Improving Label Noise Filtering by Exploiting Unlabeled Data.,2018,6,IEEE Access,,db/journals/access/access6.html#GuanWYHTAA18,https://doi.org/10.1109/ACCESS.2018.2807779 +Ying-Ren Chien,Convex Combined Adaptive Filtering Algorithm for Acoustic Echo Cancellation in Hostile Environments.,2018,6,IEEE Access,,db/journals/access/access6.html#ChienL18,https://doi.org/10.1109/ACCESS.2018.2804298 +Umer Akram,A Coordinated Frequency Regulation Framework Based on Hybrid Battery-Ultracapacitor Energy Storage Technologies.,2018,6,IEEE Access,,db/journals/access/access6.html#AkramK18,https://doi.org/10.1109/ACCESS.2017.2786283 +Yoghitha Ramamoorthi,Resource Allocation for CoMP in Cellular Networks With Base Station Sleeping.,2018,6,IEEE Access,,db/journals/access/access6.html#RamamoorthiK18,https://doi.org/10.1109/ACCESS.2017.2783398 +Kai Zhang,A Comparison of Different Statistics for Detecting Multiplicative Faults in Multivariate Statistics-Based Fault Detection Approaches.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangPS18,https://doi.org/10.1109/ACCESS.2018.2862940 +Ming Zhang,WCET-Aware Control Flow Checking With Super-Nodes for Resource-Constrained Embedded Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangGLZ18,https://doi.org/10.1109/ACCESS.2018.2852805 +Tengjiao Wang,Spectral-Efficient Generalized Spatial Modulation Based Hybrid Dimming Scheme With LACO-OFDM in VLC.,2018,6,IEEE Access,,db/journals/access/access6.html#WangYCS18,https://doi.org/10.1109/ACCESS.2018.2851076 +Dabin Kim,BiPi-TMAC: A Bidirectional-Pipelined TDMA for Reliability and QoS Support in Tactical Unmanned Vehicle Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#KimKK18,https://doi.org/10.1109/ACCESS.2018.2834152 +Chi-Wai Chow,Pre-Distortion Scheme to Enhance the Transmission Performance of Organic Photo-Detector (OPD) Based Visible Light Communication (VLC).,2018,6,IEEE Access,,db/journals/access/access6.html#ChowWCZYM18,https://doi.org/10.1109/ACCESS.2018.2805226 +Yunkai Zhu,Disturbance Observer Based Fuzzy Sliding Mode Control of PV Grid Connected Inverter.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhuF18,https://doi.org/10.1109/ACCESS.2018.2825678 +Zuqin Ji,The Modeling and Analysis of the Extensible Network Service Model.,2018,6,IEEE Access,,db/journals/access/access6.html#JiSDC18,https://doi.org/10.1109/ACCESS.2017.2789178 +Chunbiao Li,Constructing Infinitely Many Attractors in a Programmable Chaotic Circuit.,2018,6,IEEE Access,,db/journals/access/access6.html#LiTSIX18,https://doi.org/10.1109/ACCESS.2018.2824984 +Jiguang Lv,Robust WLAN-Based Indoor Intrusion Detection Using PHY Layer Information.,2018,6,IEEE Access,,db/journals/access/access6.html#LvMYDY18,https://doi.org/10.1109/ACCESS.2017.2785444 +Takuya Sakamoto,Spectrum-Free Estimation of Doppler Velocities Using Ultra-Wideband Radar.,2017,5,IEEE Access,,db/journals/access/access5.html#SakamotoASS17,https://doi.org/10.1109/ACCESS.2016.2614824 +Xin Yao 0002,Privacy-Preserving Search Over Encrypted Personal Health Record In Multi-Source Cloud.,2018,6,IEEE Access,,db/journals/access/access6.html#YaoLLZ18,https://doi.org/10.1109/ACCESS.2018.2793304 +Wen Xiong,ATH: Auto-Tuning HBase's Configuration via Ensemble Learning.,2017,5,IEEE Access,,db/journals/access/access5.html#XiongBXY17,https://doi.org/10.1109/ACCESS.2017.2716441 +Shuang Song,Real-Time Tracking and Navigation for Magnetically Manipulated Untethered Robot.,2016,4,IEEE Access,,db/journals/access/access4.html#SongQWM16,https://doi.org/10.1109/ACCESS.2016.2618949 +Joongheon Kim,Numerical Simulation Study for Frequency Sharing Between Micro-Cellular Systems and Fixed Service Systems in Millimeter-Wave Bands.,2016,4,IEEE Access,,db/journals/access/access4.html#KimXS16,https://doi.org/10.1109/ACCESS.2016.2641450 +Kefeng Guo,Outage Analysis of Multi-Relay Networks With Hardware Impairments Using SECps Scheduling Scheme in Shadowed-Rician Channel.,2017,5,IEEE Access,,db/journals/access/access5.html#GuoZHG17,https://doi.org/10.1109/ACCESS.2017.2687479 +Daniel van den Berg,Challenges in Haptic Communications Over the Tactile Internet.,2017,5,IEEE Access,,db/journals/access/access5.html#BergGKKLPVSTW17,https://doi.org/10.1109/ACCESS.2017.2764181 +Wenchi Cheng,Orbital-Angular-Momentum Embedded Massive MIMO: Achieving Multiplicative Spectrum-Efficiency for mmWave Communications.,2018,6,IEEE Access,,db/journals/access/access6.html#ChengZLJL18,https://doi.org/10.1109/ACCESS.2017.2785125 +Fazel Anjomshoa,Social Behaviometrics for Personalized Devices in the Internet of Things Era.,2017,5,IEEE Access,,db/journals/access/access5.html#AnjomshoaAKES17,https://doi.org/10.1109/ACCESS.2017.2719706 +Rongbo Zhu,A Special Section in IEEE Access: Cooperative and Intelligent Sensing.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhuMLM17,https://doi.org/10.1109/ACCESS.2017.2783139 +Alexander Wong,A Bayesian Residual Transform for Signal Processing.,2015,3,IEEE Access,,db/journals/access/access3.html#WongW15,https://doi.org/10.1109/ACCESS.2015.2437873 +Zhe Liu 0019,Nonuniformity Correction Based on Adaptive Sparse Representation Using Joint Local and Global Constraints Based Learning Rate.,2018,6,IEEE Access,,db/journals/access/access6.html#LiuMFM18,https://doi.org/10.1109/ACCESS.2018.2799606 +Jun Xu,Energy Efficiency Optimization for MIMO Distributed Antenna Systems With Pilot Contamination.,2018,6,IEEE Access,,db/journals/access/access6.html#XuZLY18,https://doi.org/10.1109/ACCESS.2018.2831210 +Shubham Sahay,Comprehensive Analysis of Gate-Induced Drain Leakage in Emerging FET Architectures: Nanotube FETs Versus Nanowire FETs.,2017,5,IEEE Access,,db/journals/access/access5.html#SahayK17,https://doi.org/10.1109/ACCESS.2017.2751518 +Vittorio Degli-Esposti,Ray-Tracing-Based mm-Wave Beamforming Assessment.,2014,2,IEEE Access,,db/journals/access/access2.html#Degli-EspostiFVBZTYDMST14,https://doi.org/10.1109/ACCESS.2014.2365991 +Zhixiong Zhong,Robust Decentralized Static Output-Feedback Control Design for Large-Scale Nonlinear Systems Using Takagi-Sugeno Fuzzy Models.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhongZY16,https://doi.org/10.1109/ACCESS.2016.2627222 +Zhiqiang Shen,A Hybrid 3D Descriptor With Global Structural Frames and Local Signatures of Histograms.,2018,6,IEEE Access,,db/journals/access/access6.html#ShenML18,https://doi.org/10.1109/ACCESS.2018.2856866 +Shulun Zhao,Power Amplifier Energy Efficiency Enhancement via Adaptive Polarization-QAM Modulation Scheme in OFDM Systems.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhaoZFL17,https://doi.org/10.1109/ACCESS.2017.2764117 +Qi Xia,MeDShare: Trust-Less Medical Data Sharing Among Cloud Service Providers via Blockchain.,2017,5,IEEE Access,,db/journals/access/access5.html#XiaSAGDG17,https://doi.org/10.1109/ACCESS.2017.2730843 +Jingxiao Ma,Robust Iterative Transceiver Beamforming for Multipair Two-Way Distributed Relay Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#MaL17,https://doi.org/10.1109/ACCESS.2017.2768436 +Alaa Al-Ibadi,Active Soft End Effectors for Efficient Grasping and Safe Handling.,2018,6,IEEE Access,,db/journals/access/access6.html#Al-IbadiND18,https://doi.org/10.1109/ACCESS.2018.2829351 +Mahmoud Khasawneh,A Secure and Efficient Authentication Mechanism Applied to Cognitive Radio Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#KhasawnehA17,https://doi.org/10.1109/ACCESS.2017.2723322 +Abubakar Zakari,Simultaneous Localization of Software Faults Based on Complex Network Theory.,2018,6,IEEE Access,,db/journals/access/access6.html#ZakariLC18,https://doi.org/10.1109/ACCESS.2018.2829541 +Wenjie Zhang,Energy Efficiency Consideration for Indoor Femtocell Networks in TV White Spaces.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhangZZXY18,https://doi.org/10.1109/ACCESS.2017.2779467 +Zhaolong Ning,Integration of Image Feature and Word Relevance: Toward Automatic Image Annotation in Cyber-Physical-Social Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#NingZCL18,https://doi.org/10.1109/ACCESS.2018.2864332 +Dong Han,Performance Analysis of Distributed Auxiliary Radio Telescopes Under Shared Spectrum Access Paradigm and Cooling Power Constraint.,2017,5,IEEE Access,,db/journals/access/access5.html#HanM17,https://doi.org/10.1109/ACCESS.2017.2762240 +Hamza Umit Sokun,Optimization of Discrete Power and Resource Block Allocation for Achieving Maximum Energy Efficiency in OFDMA Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#SokunBGY17,https://doi.org/10.1109/ACCESS.2017.2689718 +Nikolaos Pappas,Throughput and Delay Analysis of Wireless Caching Helper Systems With Random Availability.,2018,6,IEEE Access,,db/journals/access/access6.html#PappasCD18,https://doi.org/10.1109/ACCESS.2018.2801246 +Chaouki Hannachi,A Compact V-Band Planar Gap-Coupled 4*1 Antenna Array: Improved Design and Analysis.,2017,5,IEEE Access,,db/journals/access/access5.html#HannachiT17,https://doi.org/10.1109/ACCESS.2017.2705484 +Wei He 0008,A New Belief-Rule-Based Method for Fault Diagnosis of Wireless Sensor Network.,2018,6,IEEE Access,,db/journals/access/access6.html#HeQZHFW18,https://doi.org/10.1109/ACCESS.2018.2808605 +Sining Chen,Random Positional Deviations Correction for Each LED via ePIE in Fourier Ptychographic Microscopy.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenXZWZ18,https://doi.org/10.1109/ACCESS.2018.2849010 +Wanru Xu,Turning Small to Big: Efficient Mobile Advertisement Propagation With Local Information.,2017,5,IEEE Access,,db/journals/access/access5.html#XuYZX17,https://doi.org/10.1109/ACCESS.2017.2728601 +Jose Luis Canovas Sanchez,Integration of Anonymous Credential Systems in IoT Constrained Environments.,2018,6,IEEE Access,,db/journals/access/access6.html#SanchezBS18,https://doi.org/10.1109/ACCESS.2017.2788464 +Ghada Moussa Bahig,Formal Verification of Automotive Design in Compliance With ISO 26262 Design Verification Guidelines.,2017,5,IEEE Access,,db/journals/access/access5.html#BahigE17,https://doi.org/10.1109/ACCESS.2017.2683508 +Yinghui Wang,A Novel Slicing-Based Regularization Method for Raw Point Clouds in Visible IoT.,2018,6,IEEE Access,,db/journals/access/access6.html#WangWHNSZ18,https://doi.org/10.1109/ACCESS.2018.2798640 +Jian Mao,Phishing-Alarm: Robust and Efficient Phishing Detection via Page Component Similarity.,2017,5,IEEE Access,,db/journals/access/access5.html#MaoTLWL17,https://doi.org/10.1109/ACCESS.2017.2743528 +Ce Zhang,Direction Finding in MIMO Radar With Unknown Mutual Coupling.,2017,5,IEEE Access,,db/journals/access/access5.html#ZhangHL17,https://doi.org/10.1109/ACCESS.2017.2684465 +Mario Versaci,Adaptive Image Contrast Enhancement by Computing Distances into a 4-Dimensional Fuzzy Unit Hypercube.,2017,5,IEEE Access,,db/journals/access/access5.html#VersaciMA17,https://doi.org/10.1109/ACCESS.2017.2776349 +Liang Tao,Double Hyperbolic Reaching Law With Chattering-Free and Fast Convergence.,2018,6,IEEE Access,,db/journals/access/access6.html#TaoCNW18,https://doi.org/10.1109/ACCESS.2018.2838127 +Da Yin,A DDoS Attack Detection and Mitigation With Software-Defined Internet of Things Framework.,2018,6,IEEE Access,,db/journals/access/access6.html#YinZY18,https://doi.org/10.1109/ACCESS.2018.2831284 +Zhen Liu 0003,Similarity-Based Difference Analysis Approach for Remaining Useful Life Prediction of GaAs-Based Semiconductor Lasers.,2017,5,IEEE Access,,db/journals/access/access5.html#LiuWSC17,https://doi.org/10.1109/ACCESS.2017.2759325 +Xianyi Xie,Integrated Dynamics Control System With ESC and RAS for a Distributed Electric Vehicle.,2018,6,IEEE Access,,db/journals/access/access6.html#XieJJG18,https://doi.org/10.1109/ACCESS.2018.2819206 +Jiang Quan,Numerical Analysis of the Water Film Characteristics in the Eccentric State of a Radial Piston Pump.,2018,6,IEEE Access,,db/journals/access/access6.html#QuanYYLC18,https://doi.org/10.1109/ACCESS.2018.2808298 +Carles Fernández-Prades,Continuous Reproducibility in GNSS Signal Processing.,2018,6,IEEE Access,,db/journals/access/access6.html#Fernandez-Prades18,https://doi.org/10.1109/ACCESS.2018.2822835 +Mustafa Agaoglu,Predicting Instructor Performance Using Data Mining Techniques in Higher Education.,2016,4,IEEE Access,,db/journals/access/access4.html#Agaoglu16,https://doi.org/10.1109/ACCESS.2016.2568756 +Liye Wang,Research on Multiple States Joint Estimation Algorithm for Electric Vehicles Under Charge Mode.,2018,6,IEEE Access,,db/journals/access/access6.html#WangWLZ18,https://doi.org/10.1109/ACCESS.2018.2849419 +Junqiang Zhang,A Conceptual Framework for the Automated Generalization of Geological Maps Based on Multiple Agents and Workflow.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhangWW16,https://doi.org/10.1109/ACCESS.2016.2594259 +Luyao Wang,A Novel Flow-Aware Fair Scheduler for Multi Transmit/Receive Wireless Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#WangCSH17,https://doi.org/10.1109/ACCESS.2017.2708160 +Yijiu Zhao,Sparse Multiband Signal Acquisition Receiver With Co-Prime Sampling.,2018,6,IEEE Access,,db/journals/access/access6.html#ZhaoX18,https://doi.org/10.1109/ACCESS.2018.2829762 +Yu-Chieh Chen,Two-Dimensional Multiply-Accumulator for Classification of Neural Signals.,2018,6,IEEE Access,,db/journals/access/access6.html#ChenCC18,https://doi.org/10.1109/ACCESS.2018.2814625 +Ateeq Ur Rehman,Performance of Cognitive Stop-and-Wait Hybrid Automatic Repeat Request in the Face of Imperfect Sensing.,2016,4,IEEE Access,,db/journals/access/access4.html#RehmanDYH16,https://doi.org/10.1109/ACCESS.2016.2593421 +Omar Hiari,A Reconfigurable SDR Transmitter Platform Architecture for Space Modulation MIMO Techniques.,2017,5,IEEE Access,,db/journals/access/access5.html#HiariM17,https://doi.org/10.1109/ACCESS.2017.2761859 +Hadeel T. El Kassabi,A Multi-Dimensional Trust Model for Processing Big Data Over Competing Clouds.,2018,6,IEEE Access,,db/journals/access/access6.html#KassabiSDB18,https://doi.org/10.1109/ACCESS.2018.2856623 +Sohail Jabbar,A Methodology of Real-Time Data Fusion for Localized Big Data Analytics.,2018,6,IEEE Access,,db/journals/access/access6.html#JabbarMAAHKHA18,https://doi.org/10.1109/ACCESS.2018.2820176 +Juraj Gazda,Unsupervised Learning Algorithm for Intelligent Coverage Planning and Performance Optimization of Multitier Heterogeneous Network.,2018,6,IEEE Access,,db/journals/access/access6.html#GazdaSBHMJ18,https://doi.org/10.1109/ACCESS.2018.2847609 +Deepa Krishnaswamy,A Semi-Automated Method for Measurement of Left Ventricular Volumes in 3D Echocardiography.,2018,6,IEEE Access,,db/journals/access/access6.html#KrishnaswamyHSB18,https://doi.org/10.1109/ACCESS.2018.2816340 +Sunday C. Ekpo,Regulated-Element Frost Beamformer for Vehicular Multimedia Sound Enhancement and Noise Reduction Applications.,2017,5,IEEE Access,,db/journals/access/access5.html#EkpoAW17,https://doi.org/10.1109/ACCESS.2017.2775707 +Yong Yang 0001,Multifocus Image Fusion Based on Extreme Learning Machine and Human Visual System.,2017,5,IEEE Access,,db/journals/access/access5.html#YangYHQDS17,https://doi.org/10.1109/ACCESS.2017.2696119 +Anthony A. Maciejewski,A Holistic Approach to Transforming Undergraduate Electrical Engineering Education.,2017,5,IEEE Access,,db/journals/access/access5.html#MaciejewskiCBMM17,https://doi.org/10.1109/ACCESS.2017.2690221 +Pedro M. Varela,Discovering Co-Located Walking Groups of People Using iBeacon Technology.,2016,4,IEEE Access,,db/journals/access/access4.html#VarelaO16,https://doi.org/10.1109/ACCESS.2016.2615863 +Joseph Issa,Processing Time Analysis and Estimation for 3-D Applications.,2014,2,IEEE Access,,db/journals/access/access2.html#Issa14,https://doi.org/10.1109/ACCESS.2014.2363113 +Zhihua Xu,Evaluation of Electromagnetic Fields Induced by Wake of an Undersea-Moving Slender Body.,2018,6,IEEE Access,,db/journals/access/access6.html#XuDX18,https://doi.org/10.1109/ACCESS.2017.2786246 +Bo Xu 0008,Leveraging Biomedical Resources in Bi-LSTM for Drug-Drug Interaction Extraction.,2018,6,IEEE Access,,db/journals/access/access6.html#XuSZZ18,https://doi.org/10.1109/ACCESS.2018.2845840 +Arif Mahmood,Multi-Order Statistical Descriptors for Real-Time Face Recognition and Object Classification.,2018,6,IEEE Access,,db/journals/access/access6.html#MahmoodUA18,https://doi.org/10.1109/ACCESS.2018.2794357 +Yan Shi 0001,Generation of Wideband Tunable Orbital Angular Momentum Vortex Waves Using Graphene Metamaterial Reflectarray.,2018,6,IEEE Access,,db/journals/access/access6.html#ShiZ18,https://doi.org/10.1109/ACCESS.2017.2740323 +Bailing Tian,A Continuous Finite-Time Output Feedback Control Scheme and Its Application in Quadrotor UAVs.,2018,6,IEEE Access,,db/journals/access/access6.html#TianMZ18,https://doi.org/10.1109/ACCESS.2018.2822321 +Carter Chiu,Uncovering Suspicious Activity From Partially Paired and Incomplete Multimodal Data.,2017,5,IEEE Access,,db/journals/access/access5.html#ChiuZZ17,https://doi.org/10.1109/ACCESS.2017.2726078 +Zaqueu Cabral Pereira,Generalized Network-Coded Cooperation in OFDMA Communications.,2018,6,IEEE Access,,db/journals/access/access6.html#PereiraTRSF18,https://doi.org/10.1109/ACCESS.2018.2789861 +Yaodong Zhang,Interference-Aware Coordinated Power Allocation in Autonomous Wi-Fi Environment.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhangJHYY16,https://doi.org/10.1109/ACCESS.2016.2585581 +Bing Xu 0004,Efficient Range Estimation in Beat Radio Interferometry.,2017,5,IEEE Access,,db/journals/access/access5.html#XuQWZ17,https://doi.org/10.1109/ACCESS.2017.2679724 +Mei Zheng,Fast Recommendations With the M-Distance.,2016,4,IEEE Access,,db/journals/access/access4.html#ZhengMZC16,https://doi.org/10.1109/ACCESS.2016.2549182 +Ginny,MultiDroid: An Energy Optimization Technique for Multi-Window Operations on OLED Smartphones.,2018,6,IEEE Access,,db/journals/access/access6.html#RohitKN18,https://doi.org/10.1109/ACCESS.2018.2845418 +Ting-Lan Lin,Novel Pixel Recovery Method Based on Motion Vector Disparity and Compensation Difference.,2018,6,IEEE Access,,db/journals/access/access6.html#LinWWSC18,https://doi.org/10.1109/ACCESS.2018.2803733 +Wei Peng 0003,Distributed Precoding for BER Minimization With PAPR Constraint in Uplink Massive MIMO Systems.,2018,6,IEEE Access,,db/journals/access/access6.html#PengZCNJ18,https://doi.org/10.1109/ACCESS.2017.2707396 +Emmanouil Pateromichelakis,Service-Tailored User-Plane Design Framework and Architecture Considerations in 5G Radio Access Networks.,2017,5,IEEE Access,,db/journals/access/access5.html#Pateromichelakis17,https://doi.org/10.1109/ACCESS.2017.2736579 +Bilin Shao,Dynamic Data Integrity Auditing Method Supporting Privacy Protection in Vehicular Cloud Environment.,2018,6,IEEE Access,,db/journals/access/access6.html#ShaoBWSG18,https://doi.org/10.1109/ACCESS.2018.2863270 +Muhammad Kashif,Capability Indices for Non-Normal Distribution Using Gini's Mean Difference as Measure of Variability.,2016,4,IEEE Access,,db/journals/access/access4.html#KashifAAJ16,https://doi.org/10.1109/ACCESS.2016.2620241 +Mubashir Husain Rehmani,IEEE Access Special Section Editorial: Body Area Networks For Interdisciplinary Research.,2016,4,IEEE Access,,db/journals/access/access4.html#RehmaniAKR16,https://doi.org/10.1109/ACCESS.2016.2580464 +Majdi Khalel,Trigger-based Intelligent Controller for Distributed SCADA Systems.,2011,3,JUSPN,1,db/journals/juspn/juspn3.html#KhalelA11,https://doi.org/10.5383/JUSPN.03.01.004 +Talal H. Noor,Stenog-Shell Framework for Anonymous File Exchange.,2010,1,JUSPN,1,db/journals/juspn/juspn1.html#NoorHMR10,https://doi.org/10.5383/juspn.01.01.002 +Navid Rezaei,Electromagnetic Energy and Data Transfer for a Neural Implant.,2014,5,JUSPN,1,db/journals/juspn/juspn5.html#RezaeiMCS14,https://doi.org/10.5383/JUSPN.05.01.002 +Sami Bourouis,Fully Automatic Brain Tumor Segmentation Based on Multi-Modality MRI and Level-set.,2011,3,JUSPN,2,db/journals/juspn/juspn3.html#BourouisH11,https://doi.org/10.5383/JUSPN.03.02.002 +Jessie J. Walker,Intrusion Detection for Ubiquitous and Pervasive Environments using Plan Recognition.,2011,3,JUSPN,1,db/journals/juspn/juspn3.html#WalkerJBA11,https://doi.org/10.5383/JUSPN.03.01.001 +S. M. F. D. Syed Mustapha,Context-based Integrated Suites for News Delivery System.,2011,2,JUSPN,1,db/journals/juspn/juspn2.html#Mustapha11,https://doi.org/10.5383/JUSPN.02.01.003 +Shu Yun Lim,Energy-Efficient and Scalable Group Key Management for Hierarchical Sensor Network.,2011,2,JUSPN,1,db/journals/juspn/juspn2.html#LimL11,https://doi.org/10.5383/JUSPN.02.01.005 +M. Manjula,Implementation of Decoders for LTE Interface Messages.,2011,3,JUSPN,2,db/journals/juspn/juspn3.html#ManjulaV11,https://doi.org/10.5383/JUSPN.03.02.003 +Ben Arbia Anis,A Generic Autonomic Architecture To Improve Routing In MANETs.,2011,2,JUSPN,1,db/journals/juspn/juspn2.html#AnisH11,https://doi.org/10.5383/JUSPN.02.01.001 +Stéphane Galland,Simulation of Carpooling Agents with the Janus Platform.,2014,5,JUSPN,2,db/journals/juspn/juspn5.html#GallandYKGBJ14,https://doi.org/10.5383/JUSPN.05.02.002 +Valderi R. Q. Leithardt,Privacy Management Solution in Ubiquitous Environments Using Percontrol.,2014,5,JUSPN,2,db/journals/juspn/juspn5.html#LeithardtNRRGS14,https://doi.org/10.5383/JUSPN.05.02.004 +Luis Javier García-Villalba,An Extension Proposal of D2HCP for Network Merging.,2011,3,JUSPN,1,db/journals/juspn/juspn3.html#Garcia-VillalbaMOC11,https://doi.org/10.5383/JUSPN.03.01.007 +Aymen Omri,Estimation of highly Selective Channels for Downlink LTE MIMO-OFDM System by a Robust Neural Network.,2011,2,JUSPN,1,db/journals/juspn/juspn2.html#OmriHHBC11,https://doi.org/10.5383/JUSPN.02.01.004 +Imad Zyout,Embedded Feature Selection using PSO-kNN: Shape-Based Diagnosis of Microcalcification Clusters in Mammography.,2011,3,JUSPN,1,db/journals/juspn/juspn3.html#ZyoutAJ11,https://doi.org/10.5383/JUSPN.03.01.002 +Moath Hashim Alsafasfeh,Configuring Snort as a Firewall on Windows 7 Environment.,2011,3,JUSPN,2,db/journals/juspn/juspn3.html#AlsafasfehA11,https://doi.org/10.5383/JUSPN.03.02.006 +Delfín Rupérez Cañas,An Extension Proposal of AntOR for Parallel Computing.,2011,3,JUSPN,2,db/journals/juspn/juspn3.html#CanasOG11,https://doi.org/10.5383/JUSPN.03.02.005 +Shafique Ahmad Chaudhry,EMP: A Protocol for IP-Based Wireless Sensor Networks Management.,2011,2,JUSPN,1,db/journals/juspn/juspn2.html#ChaudhrySVS11,https://doi.org/10.5383/JUSPN.02.01.002 +Omar Abed,A Micro Simulated and Demand Driven Supply Chain Model To Estimate Regional Production and Consumption Relations.,2014,5,JUSPN,2,db/journals/juspn/juspn5.html#AbedBJYJW14,https://doi.org/10.5383/JUSPN.05.02.003 +Oded Cats,Multi-Agent Transit Operations and Assignment Model.,2014,5,JUSPN,2,db/journals/juspn/juspn5.html#Cats14,https://doi.org/10.5383/JUSPN.05.02.001 +Jianwei Zhang 0008,A Multimodal Transport Network Model for Advanced Traveler Information System.,2012,4,JUSPN,1,db/journals/juspn/juspn4.html#ZhangAT12,https://doi.org/10.5383/JUSPN.04.01.004 +Moh'd Sami Ashhab,Reconfigurable High Performance Integrated Micro Strip Yagi-Uda Antenna for Frequencies Between 75 -100GHz.,2011,3,JUSPN,1,db/journals/juspn/juspn3.html#AshhabAH11,https://doi.org/10.5383/JUSPN.03.01.006 +Mohammad Alzorgan,An Automated System for Irrigation and Frost Protection.,2011,3,JUSPN,1,db/journals/juspn/juspn3.html#AlzorganAA11,https://doi.org/10.5383/JUSPN.03.01.003 +Sherenaz W. Al-Haj Baddar,PISC: A Portable Interactive Surface Computer.,2011,3,JUSPN,2,db/journals/juspn/juspn3.html#BaddarM11,https://doi.org/10.5383/JUSPN.03.02.001 +Daniele Magliocchetti,Ambient Intelligence on Personal Mobility Assistants for Sustainable Travel Choices.,2012,4,JUSPN,1,db/journals/juspn/juspn4.html#MagliocchettiGVCA12,https://doi.org/10.5383/JUSPN.04.01.001 +Scott Cadzow,The protection of privacy in the i-Tour framework.,2012,4,JUSPN,1,db/journals/juspn/juspn4.html#Cadzow12,https://doi.org/10.5383/JUSPN.04.01.003 +Ouissem Ben Fredj,Survey on Architectures and Communication Libraries dedicated for High Speed Networks.,2011,3,JUSPN,2,db/journals/juspn/juspn3.html#FredjSRAAS11,https://doi.org/10.5383/JUSPN.03.02.007 +Cristina d'Alessandro,Business potential and market opportunities of intelligent LBSs for personal mobility - A European case study.,2012,4,JUSPN,1,db/journals/juspn/juspn4.html#dAlessandroT12,https://doi.org/10.5383/JUSPN.04.01.002 +Mohamed Khalgui,New Solutions for Feasible and Coherent Reconfigurations of Multi-Agent Embedded Software Architectures.,2010,1,JUSPN,1,db/journals/juspn/juspn1.html#KhalguiG10,https://doi.org/10.5383/juspn.01.01.003 +M. M. Qasaymeh,An Efficient Channel Estimator for Frequency Hopping System via Propagator Method.,2011,3,JUSPN,1,db/journals/juspn/juspn3.html#QasaymehNM11,https://doi.org/10.5383/JUSPN.03.01.005 +Anas Aloudat,Recommendations for Australia's Implementation of the National Emergency Warning System Using Location-Based Services.,2011,3,JUSPN,2,db/journals/juspn/juspn3.html#AloudatMA11,https://doi.org/10.5383/JUSPN.03.02.004 +Jiazhen Zhou,Adaptive Scheduling of Message Carrying in a Pigeon Network.,2010,1,JUSPN,1,db/journals/juspn/juspn1.html#ZhouLM10,https://doi.org/10.5383/juspn.01.01.004 +Xiongwei Xie,Detecting Primary User Emulation Attacks in Cognitive Radio Networks via Physical Layer Network Coding.,2014,5,JUSPN,1,db/journals/juspn/juspn5.html#XieW14,https://doi.org/10.5383/JUSPN.05.01.001 +Sujith Samuel Mathew,Ambient Things on the Web.,2010,1,JUSPN,1,db/journals/juspn/juspn1.html#MathewASM10,https://doi.org/10.5383/juspn.01.01.001 +S. M. F. D. Syed Mustapha,Dynamic Service Composition for Telecommunication Services and Its Challenges.,2014,5,JUSPN,1,db/journals/juspn/juspn5.html#MustaphaC14,https://doi.org/10.5383/JUSPN.05.01.003 +Mohsen Rouached,LoWPANs Meet Service-Oriented Architecture.,2010,1,JUSPN,1,db/journals/juspn/juspn1.html#RouachedCK10,https://doi.org/10.5383/juspn.01.01.005 +Christina Strohrmann,Feedback Provision on Running Technique with a Smartphone.,2014,5,JUSPN,1,db/journals/juspn/juspn5.html#StrohrmannST14,https://doi.org/10.5383/JUSPN.05.01.004 +Lamjed Touil,Multi-video processing applications on FPGA.,2015,5,IJAMC,4,db/journals/ijamc/ijamc5.html#TouilAM15,https://doi.org/10.1504/IJAMC.2015.076879 +José Jailton Jr.,Seamless handover and QoS provisioning for mobile video applications in an integrated WiMAX/MIP/MPLS architecture.,2009,3,IJAMC,4,db/journals/ijamc/ijamc3.html#JailtonDCC09,https://doi.org/10.1504/IJAMC.2009.028710 +Jeong Ho Kwak,Korea's strategies for mobile technology standards in smart ecosystem.,2017,7,IJAMC,1,db/journals/ijamc/ijamc7.html#KwakLL17,https://doi.org/10.1504/IJAMC.2017.10004901 +John M. Carroll,Logging home use of the internet in the Blacksburg Electronic Village.,2009,3,IJAMC,3,db/journals/ijamc/ijamc3.html#CarrollSI09,https://doi.org/10.1504/IJAMC.2009.027016 +Ty Mey Eap,Technologies for enabling the sharing of Learning Objects.,2008,2,IJAMC,1,db/journals/ijamc/ijamc2.html#EapHG08,https://doi.org/10.1504/IJAMC.2008.016211 +Anders Drachen,Patterns in the distribution of digital games via BitTorrent.,2013,5,IJAMC,1,db/journals/ijamc/ijamc5.html#DrachenV13,https://doi.org/10.1504/IJAMC.2013.053675 +Anis Masmoudi,Metadata-driven software components aggregation process with reuse.,2008,2,IJAMC,1,db/journals/ijamc/ijamc2.html#MasmoudiPC08,https://doi.org/10.1504/IJAMC.2008.016213 +Yan Yang,Multi-torrent: a performance study and applications.,2010,4,IJAMC,1,db/journals/ijamc/ijamc4.html#YangCG10,https://doi.org/10.1504/IJAMC.2010.030005 +Jean Botev,The HyperVerse: concepts for a federated and Torrent-based '3D Web'.,2008,2,IJAMC,4,db/journals/ijamc/ijamc2.html#BotevHSSSE08,https://doi.org/10.1504/IJAMC.2008.022219 +Woong Cho,Pedestrian-to-vehicle communication-based safety message transmission for the elderly in the conflict area.,2016,6,IJAMC,1,db/journals/ijamc/ijamc6.html#Cho16,https://doi.org/10.1504/IJAMC.2016.079106 +Amit Pande,Dynamic multimedia content allocation for scarce resource networks.,2009,3,IJAMC,3,db/journals/ijamc/ijamc3.html#PandeVMA09,https://doi.org/10.1504/IJAMC.2009.027011 +Haifa Harrouch,A new fault-tolerant architecture based on DASH for adaptive streaming video.,2017,7,IJAMC,3,db/journals/ijamc/ijamc7.html#HarrouchKADB17,https://doi.org/10.1504/IJAMC.2017.10010346 +Ivan L. Preston,Reflections on a career in communication research as used in investigating puffery and other internet advertising claims for deceptiveness.,2006,1,IJAMC,2,db/journals/ijamc/ijamc1.html#Preston06,https://doi.org/10.1504/IJAMC.2006.009732 +Simon Rieche,Clustering players for load balancing in virtual worlds.,2008,2,IJAMC,4,db/journals/ijamc/ijamc2.html#RiecheWFNTC08,https://doi.org/10.1504/IJAMC.2008.022220 +Grenville J. Armitage,Discovering First Person Shooter game servers online: techniques and challenges.,2008,2,IJAMC,4,db/journals/ijamc/ijamc2.html#Armitage08,https://doi.org/10.1504/IJAMC.2008.022223 +Shervin Shirmohammadi,Embedding watermark images in transcoded audio streams for content protection and Quality of Service monitoring.,2007,1,IJAMC,4,db/journals/ijamc/ijamc1.html#ShirmohammadiJZ07,https://doi.org/10.1504/IJAMC.2007.014814 +M. Shamim Hossain,Scalability measurement of a proxy-based multimedia content repurposing system.,2008,2,IJAMC,3,db/journals/ijamc/ijamc2.html#HossainE08,https://doi.org/10.1504/IJAMC.2008.020180 +Dorra Bouattour,A conceptualisation of the relationship between virtual experience and cybernauts' satisfaction with virtual communities.,2015,5,IJAMC,4,db/journals/ijamc/ijamc5.html#BouattourDA15,https://doi.org/10.1504/IJAMC.2015.076897 +Vicky Laurens,DDoSniffer: Detecting DDoS attack at the source agents.,2009,3,IJAMC,3,db/journals/ijamc/ijamc3.html#LaurensMED09,https://doi.org/10.1504/IJAMC.2009.027014 +Fotis Lazarinis,Engineering an interoperable multimedia assessment authoring and run-time environment conforming to IMS QTI.,2009,3,IJAMC,3,db/journals/ijamc/ijamc3.html#LazarinisGP09,https://doi.org/10.1504/IJAMC.2009.027012 +Zhenyu Cheryl Qian,Developing a simple repository to support authoring Learning Objects.,2008,2,IJAMC,2,db/journals/ijamc/ijamc2.html#QianCW08,https://doi.org/10.1504/IJAMC.2008.018505 +Chien-Hao Chien,Bandwidth-aware Peer-to-Peer 3D streaming.,2010,4,IJAMC,4,db/journals/ijamc/ijamc4.html#ChienHJC10,https://doi.org/10.1504/IJAMC.2010.036834 +Mun-Kyu Park,Verification of the performance of respiratory synchronisation radiation switchgear by using imaging technique.,2016,6,IJAMC,1,db/journals/ijamc/ijamc6.html#ParkPBL16,https://doi.org/10.1504/IJAMC.2016.079111 +Helge Backhaus,QuON: a quad-tree-based overlay protocol for distributed virtual worlds.,2010,4,IJAMC,2,db/journals/ijamc/ijamc4.html#BackhausK10,https://doi.org/10.1504/IJAMC.2010.032139 +Diego F. de Carvalho,MP4Stego: steganography in MPEG-4 videos.,2009,3,IJAMC,4,db/journals/ijamc/ijamc3.html#CarvalhoG09,https://doi.org/10.1504/IJAMC.2009.028712 +Hanghang Qi,Optimisation of capacity in various 802.11 gaming scenarios.,2010,4,IJAMC,4,db/journals/ijamc/ijamc4.html#QiMB10,https://doi.org/10.1504/IJAMC.2010.036833 +Maria da Graça Campos Pimentel,End-user live editing of iTV programmes.,2010,4,IJAMC,1,db/journals/ijamc/ijamc4.html#PimentelCMPT10,https://doi.org/10.1504/IJAMC.2010.030007 +Ruzheng Zhao,Gradient vector flow combined saliency analysis for active contours.,2017,7,IJAMC,2,db/journals/ijamc/ijamc7.html#ZhaoZDT17,https://doi.org/10.1504/IJAMC.2017.10006887 +Richard Khoury,Keyword extraction rules based on a part-of-speech hierarchy.,2008,2,IJAMC,2,db/journals/ijamc/ijamc2.html#KhouryKK08,https://doi.org/10.1504/IJAMC.2008.018504 +Rajan Nataraajan,Marketing on the internet: looking back and looking forward.,2006,1,IJAMC,2,db/journals/ijamc/ijamc1.html#Nataraajan06,https://doi.org/10.1504/IJAMC.2006.009731 +Alexander E. Voiskounsky,Communicative patterns and flow experience of MUD players.,2005,1,IJAMC,1,db/journals/ijamc/ijamc1.html#VoiskounskyMA05,https://doi.org/10.1504/IJAMC.2005.007720 +Lu Fan,Deadline-Driven Auctions for NPC host allocation in P2P MMOGs.,2010,4,IJAMC,2,db/journals/ijamc/ijamc4.html#FanTT10a,https://doi.org/10.1504/IJAMC.2010.032140 +Liam Peyton,Information rich monitoring of interoperating services in privacy enabled B2B networks.,2010,4,IJAMC,3,db/journals/ijamc/ijamc4.html#PeytonDHS10,https://doi.org/10.1504/IJAMC.2010.034660 +Mannir Bello,A survey on success factors and obstacles for further adoption of agile in IT organisations.,2017,7,IJAMC,3,db/journals/ijamc/ijamc7.html#BelloG17,https://doi.org/10.1504/IJAMC.2017.10010314 +Kevin Curran,Intelligent information retrieval.,2006,1,IJAMC,2,db/journals/ijamc/ijamc1.html#CurranMA06,https://doi.org/10.1504/IJAMC.2006.009734 +Teresa Chambel,Content-based search overviews and exploratory browsing of movies with MovieClouds.,2013,5,IJAMC,1,db/journals/ijamc/ijamc5.html#ChambelLMGSD13,https://doi.org/10.1504/IJAMC.2013.053674 +Mohammed Boulmalf,Semi-empirical method for simulating wireless indoor attenuation.,2007,1,IJAMC,3,db/journals/ijamc/ijamc1.html#BoulmalfL07,https://doi.org/10.1504/IJAMC.2007.013915 +Ben K. Daniel,Social Network Analysis techniques: implications for information and knowledge sharing in virtual learning communities.,2008,2,IJAMC,1,db/journals/ijamc/ijamc2.html#DanielMS08,https://doi.org/10.1504/IJAMC.2008.016212 +Sabine Bachmayer,Digital clip gift shops as scenarios for collaborative architectures for monetising broadcast archive content: an evaluation from a technical and business viewpoint.,2013,5,IJAMC,1,db/journals/ijamc/ijamc5.html#BachmayerLK13,https://doi.org/10.1504/IJAMC.2013.053673 +V. Santhi,Adaptive visible/invisible watermarking scheme in wavelet domain using SURF technique.,2015,5,IJAMC,4,db/journals/ijamc/ijamc5.html#SanthiA15,https://doi.org/10.1504/IJAMC.2015.076887 +Thomas Ndie Djotio,MONI: Mobile Agents Ontology based for Network Intrusions Management.,2008,2,IJAMC,3,db/journals/ijamc/ijamc2.html#DjotioTTB08,https://doi.org/10.1504/IJAMC.2008.020181 +Vasileios C. Tsarouchas,The use of chat by Greek students.,2008,2,IJAMC,2,db/journals/ijamc/ijamc2.html#TsarouchasE08,https://doi.org/10.1504/IJAMC.2008.018511 +Seong Hwan Kim,The study on the cell survival for bioartificial liver by using standardisation extracorporeal circulation method.,2017,7,IJAMC,3,db/journals/ijamc/ijamc7.html#KimC17,https://doi.org/10.1504/IJAMC.2017.10010310 +R. Ashok Kumar,M-chaining scheme for VoD application on cluster-based Markov process.,2009,3,IJAMC,3,db/journals/ijamc/ijamc3.html#KumarHGM09,https://doi.org/10.1504/IJAMC.2009.027013 +Nigel J. Holden,Culturally distinctive manifestations in international knowledge management: a historical perspective.,2007,1,IJAMC,4,db/journals/ijamc/ijamc1.html#HoldenT07,https://doi.org/10.1504/IJAMC.2007.014810 +Vivek Venkatesh,Topic maps as indexing tools in e-learning: bridging theoretical and practical gaps between information retrieval and educational psychology.,2008,2,IJAMC,3,db/journals/ijamc/ijamc2.html#Venkatesh08,https://doi.org/10.1504/IJAMC.2008.020177 +Sukjae Choi,Unsupervised method of word sense disambiguation for real time associated word identification in human-robot interaction.,2016,6,IJAMC,1,db/journals/ijamc/ijamc6.html#ChoiK16,https://doi.org/10.1504/IJAMC.2016.079088 +Yinghua Wang,A method study on the value chain optimisation of tourism industry based on big data.,2017,7,IJAMC,2,db/journals/ijamc/ijamc7.html#Wang17a,https://doi.org/10.1504/IJAMC.2017.10006886 +Karl M. Wiig,Societal knowledge management in the globalised economy.,2006,1,IJAMC,2,db/journals/ijamc/ijamc1.html#Wiig06,https://doi.org/10.1504/IJAMC.2006.009737 +Issam Rebaï,To store and retrieve software components for Interactive Learning Environments: the ECR repository.,2008,2,IJAMC,1,db/journals/ijamc/ijamc2.html#RebaiPL08,https://doi.org/10.1504/IJAMC.2008.016214 +Seung Baek,Exploring customer preferences for online games.,2005,1,IJAMC,1,db/journals/ijamc/ijamc1.html#Baek05,https://doi.org/10.1504/IJAMC.2005.007721 +Majed Alhaisoni,Resource-awareness and trade-off optimisation in P2P video streaming.,2010,4,IJAMC,1,db/journals/ijamc/ijamc4.html#AlhaisoniLG10,https://doi.org/10.1504/IJAMC.2010.030006 +Haiyan Huang,Exploring the situated context of knowledge management in e-government development.,2006,1,IJAMC,2,db/journals/ijamc/ijamc1.html#HuangYT06,https://doi.org/10.1504/IJAMC.2006.009735 +Abu Saleh Md. Mahfujur Rahman,Traffic architecture motivated Learning Object organisation in a virtual environment.,2008,2,IJAMC,1,db/journals/ijamc/ijamc2.html#RahmanE08,https://doi.org/10.1504/IJAMC.2008.016215 +Weihua Ou,Structured sparsity model with spatial similarity regularisation for semantic feature selection.,2017,7,IJAMC,2,db/journals/ijamc/ijamc7.html#OuX17a,https://doi.org/10.1504/IJAMC.2017.10006892 +Qing Chen,Navigating a 3D virtual environment of learning objects by hand gestures.,2007,1,IJAMC,4,db/journals/ijamc/ijamc1.html#ChenRSEG07,https://doi.org/10.1504/IJAMC.2007.014812 +Lu Fan,Design issues for Peer-to-Peer Massively Multiplayer Online Games.,2010,4,IJAMC,2,db/journals/ijamc/ijamc4.html#FanTT10,https://doi.org/10.1504/IJAMC.2010.032138 +Mirko Suznjevic,Why MMORPG players do what they do: relating motivations to action categories.,2010,4,IJAMC,4,db/journals/ijamc/ijamc4.html#SuznjevicM10,https://doi.org/10.1504/IJAMC.2010.036838 +Hyonam Jeong,Decision support system for course enrolment management using qualitative information.,2017,7,IJAMC,1,db/journals/ijamc/ijamc7.html#JeongH17,https://doi.org/10.1504/IJAMC.2017.10004897 +Greg Wadley,Factors influencing users' decisions to adopt voice communication in online console games.,2005,1,IJAMC,1,db/journals/ijamc/ijamc1.html#WadleyGH05,https://doi.org/10.1504/IJAMC.2005.007722 +Isabel Azevedo,Effective characterisation of learning objects.,2008,2,IJAMC,3,db/journals/ijamc/ijamc2.html#AzevedoCC08,https://doi.org/10.1504/IJAMC.2008.020178 +Mohammed N. A. Abdelhakim,Improving Educational Multimedia selection process using group decision support systems.,2008,2,IJAMC,2,db/journals/ijamc/ijamc2.html#AbdelhakimS08,https://doi.org/10.1504/IJAMC.2008.018507 +Yue Dai,MOETA: a novel text-mining model for collecting and analysing competitive intelligence.,2013,5,IJAMC,1,db/journals/ijamc/ijamc5.html#DaiKALS13,https://doi.org/10.1504/IJAMC.2013.053672 +Ook Lee,Facilitating maintenance of knowledge management systems with a software tool.,2006,1,IJAMC,2,db/journals/ijamc/ijamc1.html#Lee06,https://doi.org/10.1504/IJAMC.2006.009736 +Martin Lesage,IMS-QTI sub-standards in computerised adaptive testing and interfacing.,2008,2,IJAMC,2,db/journals/ijamc/ijamc2.html#LesageRRS08,https://doi.org/10.1504/IJAMC.2008.018503 +Qifeng Zhang,Delay-dependent stability analysis of convection-diffusion equations with delay.,2017,7,IJAMC,2,db/journals/ijamc/ijamc7.html#ZhangLQ17,https://doi.org/10.1504/IJAMC.2017.10006893 +Márcio Ferreira Moreno,Adaptable software components in an electronic program/service guide application architecture for context aware guide presentation.,2009,3,IJAMC,4,db/journals/ijamc/ijamc3.html#MorenoNS09,https://doi.org/10.1504/IJAMC.2009.028707 +John L. Miller,Group movement in World of Warcraft Battlegrounds.,2010,4,IJAMC,4,db/journals/ijamc/ijamc4.html#MillerC10,https://doi.org/10.1504/IJAMC.2010.036837 +Alexandru Iosup,The impact of virtualisation on the performance and operational costs of Massively Multiplayer Online Games.,2010,4,IJAMC,4,db/journals/ijamc/ijamc4.html#IosupNP10,https://doi.org/10.1504/IJAMC.2010.036836 +Roy Morien,Business computing education: a radical approach for efficient streamlining of an effective education process and relevant curriculum.,2017,7,IJAMC,1,db/journals/ijamc/ijamc7.html#Morien17,https://doi.org/10.1504/IJAMC.2017.10004902 +Grenville J. Armitage,Distribution of first person shooter online multiplayer games.,2005,1,IJAMC,1,db/journals/ijamc/ijamc1.html#ArmitageB05,https://doi.org/10.1504/IJAMC.2005.007723 +Shuang Zhao,Research on precision marketing data source system based on big data.,2017,7,IJAMC,2,db/journals/ijamc/ijamc7.html#ZhaoM17,https://doi.org/10.1504/IJAMC.2017.10006888 +Zouheir Trabelsi,A novel covert channel based on the IP header record route option.,2007,1,IJAMC,4,db/journals/ijamc/ijamc1.html#TrabelsiEFR07,https://doi.org/10.1504/IJAMC.2007.014811 +Mohamad A. Eid,A guided tour in haptic audio visual environments and applications.,2007,1,IJAMC,3,db/journals/ijamc/ijamc1.html#EidTE07,https://doi.org/10.1504/IJAMC.2007.013918 +Nizar Sakr,Adaptive digital image watermarking based on predictive embedding and a Dynamic Fuzzy Inference System model.,2007,1,IJAMC,3,db/journals/ijamc/ijamc1.html#SakrZG07,https://doi.org/10.1504/IJAMC.2007.013917 +Bara'a Ali Attea,Evolutionary colourisation of greyscale images.,2007,1,IJAMC,3,db/journals/ijamc/ijamc1.html#AtteaA07,https://doi.org/10.1504/IJAMC.2007.013914 +Arno Wacker,Towards an authentication service for Peer-to-Peer based Massively Multiuser Virtual Environments.,2008,2,IJAMC,4,db/journals/ijamc/ijamc2.html#WackerSSW08,https://doi.org/10.1504/IJAMC.2008.022221 +Tao Wang,Improved adaptive multi-objective particle swarm algorithm under big data.,2017,7,IJAMC,2,db/journals/ijamc/ijamc7.html#Wang17,https://doi.org/10.1504/IJAMC.2017.10006890 +Weihua Ou,Sparsity constrained model for the semantic features selection.,2017,7,IJAMC,2,db/journals/ijamc/ijamc7.html#OuX17,https://doi.org/10.1504/IJAMC.2017.10006891 +Marcelo G. Manzato,Evaluation of video news classification techniques for automatic content personalisation.,2009,3,IJAMC,4,db/journals/ijamc/ijamc3.html#ManzatoMG09,https://doi.org/10.1504/IJAMC.2009.028709 +R. Ashok Kumar,Video segmentation using Metropolis Hastings Algorithm for the VCR operations.,2010,4,IJAMC,3,db/journals/ijamc/ijamc4.html#KumarG10,https://doi.org/10.1504/IJAMC.2010.034661 +Ming-Hui Huang,An interdisciplinary view of electronic commerce.,2006,1,IJAMC,2,db/journals/ijamc/ijamc1.html#Huang06,https://doi.org/10.1504/IJAMC.2006.009730 +Guan-Yu Huang,Scalable reputation management with trustworthy user selection for P2P MMOGs.,2008,2,IJAMC,4,db/journals/ijamc/ijamc2.html#HuangHJ08,https://doi.org/10.1504/IJAMC.2008.022222 +Jaeyoung Park,Swing analysis by body type with golf shot analysing device.,2016,6,IJAMC,1,db/journals/ijamc/ijamc6.html#ParkCBL16,https://doi.org/10.1504/IJAMC.2016.079089 +Sangdon Kim,Detection of metamorphic malicious mobile code on android-based smartphones.,2017,7,IJAMC,1,db/journals/ijamc/ijamc7.html#KimLLK17,https://doi.org/10.1504/IJAMC.2017.10004905 +Hiroyuki Kimiyama,An UHD video handling system using a scalable server over an IP network.,2017,7,IJAMC,1,db/journals/ijamc/ijamc7.html#KimiyamaMKSM17,https://doi.org/10.1504/IJAMC.2017.10004860 +Victor B. Kreng,The principle of knowledge management.,2006,1,IJAMC,2,db/journals/ijamc/ijamc1.html#KrengC06,https://doi.org/10.1504/IJAMC.2006.009738 +Yong-Young Kim,What makes people experience flow? Social characteristics of online games.,2005,1,IJAMC,1,db/journals/ijamc/ijamc1.html#KimOL05,https://doi.org/10.1504/IJAMC.2005.007724 +Daejin Kim,A Unity3D-based mobile fashion coordination system.,2016,6,IJAMC,1,db/journals/ijamc/ijamc6.html#KimRLLL16,https://doi.org/10.1504/IJAMC.2016.079110 +Emad Eldin Mohamed,Multicast for multimedia collaborative applications: services and mechanisms.,2007,1,IJAMC,3,db/journals/ijamc/ijamc1.html#MohamedA07,https://doi.org/10.1504/IJAMC.2007.013916 +José Renato Villela Dantas,Using NavCon for conceptual navigation in web documents.,2009,3,IJAMC,4,db/journals/ijamc/ijamc3.html#DantasF09,https://doi.org/10.1504/IJAMC.2009.028711 +Nima Kaviani,Integration of rules and policies for Semantic Web Services.,2007,1,IJAMC,4,db/journals/ijamc/ijamc1.html#KavianiGHCW07,https://doi.org/10.1504/IJAMC.2007.014815 +Yongwoon Shim,The growth of broadband internet in Sweden: contributing factors.,2006,1,IJAMC,2,db/journals/ijamc/ijamc1.html#ShimLY06,https://doi.org/10.1504/IJAMC.2006.009733 +Mario Ciampi,Middleware mechanisms for interaction interoperability in Collaborative Virtual Environments.,2010,4,IJAMC,2,db/journals/ijamc/ijamc4.html#CiampiGCP10,https://doi.org/10.1504/IJAMC.2010.032141 +Junseob Yoon,Advanced assessment model for improving effectiveness of information security measurement.,2016,6,IJAMC,1,db/journals/ijamc/ijamc6.html#YoonL16,https://doi.org/10.1504/IJAMC.2016.079084 +Xi Wu,A semi-supervised locally linear embedding spectral clustering algorithm.,2017,7,IJAMC,2,db/journals/ijamc/ijamc7.html#WuS17,https://doi.org/10.1504/IJAMC.2017.10006889 +Sylvain Laube,A scenario model based on anthropology of didactics for Enquiry-Based Science Teaching.,2008,2,IJAMC,2,db/journals/ijamc/ijamc2.html#LaubeGT08,https://doi.org/10.1504/IJAMC.2008.018509 +Aravindan Raghuveer,StatStream: providing statistical reliability guarantees in peer-to-peer live video streaming.,2010,4,IJAMC,1,db/journals/ijamc/ijamc4.html#RaghuveerDD10,https://doi.org/10.1504/IJAMC.2010.030004 +Jaime R. S. Fonseca,An empirical examination of the relationship between contemporary media exposure patterns and different audience characteristics.,2015,5,IJAMC,4,db/journals/ijamc/ijamc5.html#Fonseca15,https://doi.org/10.1504/IJAMC.2015.076899 +Doohwan Lim,Design and implementation smart device control system based on indoor positioning.,2016,6,IJAMC,1,db/journals/ijamc/ijamc6.html#LimLLKL16,https://doi.org/10.1504/IJAMC.2016.079109 +Marwan Mohamed Abdeldayem,A study of customer satisfaction with online shopping: evidence from the UAE.,2010,4,IJAMC,3,db/journals/ijamc/ijamc4.html#Abdeldayem10,https://doi.org/10.1504/IJAMC.2010.034659 +Luiz Gustavo Pacola Alves,CollaboraTVware: a context-aware infrastructure with support for collaborative participation in an interactive digital TV environment.,2009,3,IJAMC,4,db/journals/ijamc/ijamc3.html#AlvesSB09,https://doi.org/10.1504/IJAMC.2009.028708 +Tomoki Yoshihisa,A bandwidth reduction method for selective contents broadcasting.,2009,3,IJAMC,3,db/journals/ijamc/ijamc3.html#YoshihisaN09,https://doi.org/10.1504/IJAMC.2009.027015 +Chang-Mo Yang,A new embedded image compression scheme using rate-distortion optimised block coding of wavelet coefficients.,2017,7,IJAMC,3,db/journals/ijamc/ijamc7.html#YangC17,https://doi.org/10.1504/IJAMC.2017.10010320 +Jae Youn Shim,Using circular dot pattern code tag for medical information on the round type medical package.,2016,6,IJAMC,1,db/journals/ijamc/ijamc6.html#ShimK16,https://doi.org/10.1504/IJAMC.2016.079105 +Karima Ait Saadi,Efficient pre-processing watermark for robust video watermarking of H.264/AVC.,2010,4,IJAMC,3,db/journals/ijamc/ijamc4.html#SaadiGB10,https://doi.org/10.1504/IJAMC.2010.034658 +Jean Botev,HyperVerse: simulation and testbed reconciled.,2010,4,IJAMC,2,db/journals/ijamc/ijamc4.html#BotevESSS10,https://doi.org/10.1504/IJAMC.2010.032142 +Jaime Diaz Pineda,On using Content Delivery Networks to improve MOG performance.,2010,4,IJAMC,2,db/journals/ijamc/ijamc4.html#PinedaS10,https://doi.org/10.1504/IJAMC.2010.032143 +Bongen Gu,MAP task allocation strategy in an ARM-based Hadoop cluster by using local storage as split cache.,2016,6,IJAMC,1,db/journals/ijamc/ijamc6.html#GuK16,https://doi.org/10.1504/IJAMC.2016.079108 +Jari Juhani Jussila,Innovation-related benefits of social media in Business-to-Business customer relationships.,2013,5,IJAMC,1,db/journals/ijamc/ijamc5.html#JussilaKL13,https://doi.org/10.1504/IJAMC.2013.053671 +Mohd. Firdaus Md. Khalid,Real-life classroom scenario of m-learning improvements using features of Massive Multiplayer Online Games and Instructional Design.,2010,4,IJAMC,3,db/journals/ijamc/ijamc4.html#KhalidK10,https://doi.org/10.1504/IJAMC.2010.034657 +Tamer F. Rabie,Frequency-domain data hiding based on the Matryoshka principle.,2007,1,IJAMC,3,db/journals/ijamc/ijamc1.html#Rabie07,https://doi.org/10.1504/IJAMC.2007.013952 +Fernando Alonso Mendo,Understanding web site redesigns in small- and medium-sized enterprises (SMEs): a U.K.-based study on the applicability of e-commerce Stage Models.,2009,18,EJIS,3,db/journals/ejis/ejis18.html#MendoFF09,https://doi.org/10.1057/ejis.2009.14 +Jyoti Choudrie,Broadband development in South Korea: institutional and cultural factors.,2004,13,EJIS,2,db/journals/ejis/ejis13.html#ChoudrieL04,https://doi.org/10.1057/palgrave.ejis.3000494 +Clay Posey,Taking stock of organisations' protection of privacy: categorising and assessing threats to personally identifiable information in the USA.,2017,26,EJIS,6,db/journals/ejis/ejis26.html#PoseyRCB17,https://doi.org/10.1057/s41303-017-0065-y +Tsai-Hsin Chu,Explaining changes in learning and work practice following the adoption of online learning: a human agency perspective.,2008,17,EJIS,1,db/journals/ejis/ejis17.html#ChuR08,https://doi.org/10.1057/palgrave.ejis.3000731 +Sarah Emery,Claudio Ciborra: convenor of information systems October 2000 to February 2005.,2005,14,EJIS,5,db/journals/ejis/ejis14.html#Emery05,https://doi.org/10.1057/palgrave.ejis.3000571 +John D. Wells,Designing consumer interfaces for experiential tasks: an empirical investigation.,2005,14,EJIS,3,db/journals/ejis/ejis14.html#WellsFP05,https://doi.org/10.1057/palgrave.ejis.3000516 +Maurizio Naldi,Economic decision criteria for the migration to cloud storage.,2016,25,EJIS,1,db/journals/ejis/ejis25.html#NaldiM16,https://doi.org/10.1057/ejis.2014.34 +Patrick Y. K. Chau,Editorial.,2007,16,EJIS,3,db/journals/ejis/ejis16.html#ChauKL07,https://doi.org/10.1057/palgrave.ejis.3000666 +Cheon-Pyo Lee,An exploratory study of radio frequency identification (RFID) adoption in the healthcare industry.,2007,16,EJIS,6,db/journals/ejis/ejis16.html#LeeS07,https://doi.org/10.1057/palgrave.ejis.3000716 +Antonio Cordella,From Italy to East London.,2005,14,EJIS,5,db/journals/ejis/ejis14.html#Cordella05,https://doi.org/10.1057/palgrave.ejis.3000565 +François-Xavier de Vaujany,An historically grounded critical analysis of research articles in IS.,2011,20,EJIS,4,db/journals/ejis/ejis20.html#VaujanyWM11,https://doi.org/10.1057/ejis.2011.13 +Ken Peffers,Research opportunities in information technology funding and system justification.,2013,22,EJIS,2,db/journals/ejis/ejis22.html#PeffersS13,https://doi.org/10.1057/ejis.2012.60 +Joeri van Laere,Understanding champion behaviour in a health-care information system development project - how multiple champions and champion behaviours build a coherent whole.,2016,25,EJIS,1,db/journals/ejis/ejis25.html#LaereA16,https://doi.org/10.1057/ejis.2015.5 +Jo Hanisch,Impediments to requirements engineering during global software development.,2007,16,EJIS,6,db/journals/ejis/ejis16.html#HanischC07,https://doi.org/10.1057/palgrave.ejis.3000723 +David E. Avison,A narrative approach to publishing information systems research: inspiration from the French New Novel tradition.,2017,26,EJIS,3,db/journals/ejis/ejis26.html#AvisonME17,https://doi.org/10.1057/s41303-016-0022-1 +Vesa Torvinen,Stimulating power games as a part of systems development.,2000,9,EJIS,1,db/journals/ejis/ejis9.html#TorvinenJ00,https://doi.org/10.1057/palgrave.ejis.3000342 +Rachida Parks,Examining the intended and unintended consequences of organisational privacy safeguards.,2017,26,EJIS,1,db/journals/ejis/ejis26.html#ParksXCL17,https://doi.org/10.1057/s41303-016-0001-6 +Chee-Wee Tan,Managing e-transformation in the public sector: an e-government study of the Inland Revenue Authority of Singapore (IRAS).,2003,12,EJIS,4,db/journals/ejis/ejis12.html#TanP03,https://doi.org/10.1057/palgrave.ejis.3000479 +Guy Paré,Re-examining the causal structure of information technology impact research.,2008,17,EJIS,4,db/journals/ejis/ejis17.html#PareBMNS08,https://doi.org/10.1057/ejis.2008.34 +Elina Niemimaa,Information systems security policy implementation in practice: from best practices to situated practices.,2017,26,EJIS,1,db/journals/ejis/ejis26.html#NiemimaaN17,https://doi.org/10.1057/s41303-016-0025-y +Stan Karanasios,Mobile technology in mobile work: contradictions and congruencies in activity systems.,2014,23,EJIS,5,db/journals/ejis/ejis23.html#KaranasiosA14,https://doi.org/10.1057/ejis.2014.20 +Russell Haines,A new perspective on de-individuation via computer-mediated communication.,2011,20,EJIS,2,db/journals/ejis/ejis20.html#HainesM11,https://doi.org/10.1057/ejis.2010.70 +Hsiao-Lan Wei,The strategic value of supply chain visibility: increasing the ability to reconfigure.,2010,19,EJIS,2,db/journals/ejis/ejis19.html#WeiW10,https://doi.org/10.1057/ejis.2010.10 +Jianan Wu,The role of online seller reviews and product price on buyers' willingness-to-pay: a risk perspective.,2013,22,EJIS,4,db/journals/ejis/ejis22.html#WuG13,https://doi.org/10.1057/ejis.2012.33 +Ian Alexander,Handbook of Action Research Participative Inquiry and Practice.,2001,10,EJIS,3,db/journals/ejis/ejis10.html#Alexander01,https://doi.org/10.1057/palgrave.ejis.3000387 +Bob O'Keefe,Editorial.,2000,9,EJIS,2,db/journals/ejis/ejis9.html#OKeefeP00a,https://doi.org/10.1057/palgrave.ejis.3000364 +Sabine Dernbecher,The concept of mindfulness in information systems research: a multi-dimensional analysis.,2017,26,EJIS,2,db/journals/ejis/ejis26.html#DernbecherB17,https://doi.org/10.1057/s41303-016-0032-z +Rajeev Sharma,Top management support and IS implementation: further support for the moderating role of task interdependence.,2011,20,EJIS,6,db/journals/ejis/ejis20.html#SharmaY11,https://doi.org/10.1057/ejis.2011.39 +Liisa Myyry,What levels of moral reasoning and values explain adherence to information security rules? An empirical study.,2009,18,EJIS,2,db/journals/ejis/ejis18.html#MyyrySPVV09,https://doi.org/10.1057/ejis.2009.10 +Laurie McLeod,Information systems development as situated socio-technical change: a process approach.,2012,21,EJIS,2,db/journals/ejis/ejis21.html#McLeodD12,https://doi.org/10.1057/ejis.2011.43 +Ofir Turel,Board-level IT governance and organizational performance.,2014,23,EJIS,2,db/journals/ejis/ejis23.html#TurelB14,https://doi.org/10.1057/ejis.2012.61 +Claudia Loebbecke,What drives netsourcing decisions? An empirical analysis.,2006,15,EJIS,4,db/journals/ejis/ejis15.html#LoebbeckeH06,https://doi.org/10.1057/palgrave.ejis.3000621 +Frantz Rowe,Toward a richer diversity of genres in information systems research: new categorization and guidelines.,2012,21,EJIS,5,db/journals/ejis/ejis21.html#Rowe12,https://doi.org/10.1057/ejis.2012.38 +Rens Scheepers,Contextual influences on user satisfaction with mobile computing: findings from two healthcare organizations.,2006,15,EJIS,3,db/journals/ejis/ejis15.html#ScheepersSN06,https://doi.org/10.1057/palgrave.ejis.3000615 +Arno Nuijten,Collaborative partner or opponent: How the messenger influences the deaf effect in IT projects.,2016,25,EJIS,6,db/journals/ejis/ejis25.html#NuijtenKC16,https://doi.org/10.1057/ejis.2016.6 +Shirley Gregor,A 'sweet spot' change strategy for a least developed country: leveraging e-Government in Bangladesh.,2014,23,EJIS,6,db/journals/ejis/ejis23.html#GregorIT14,https://doi.org/10.1057/ejis.2013.14 +Gee-Woo Bock,Are norms enough? The role of collaborative norms in promoting organizational knowledge seeking.,2006,15,EJIS,4,db/journals/ejis/ejis15.html#BockKS06,https://doi.org/10.1057/palgrave.ejis.3000630 +Nelson E. King,Exploring the impact of operating model choice on the governance of inter-organizational workflow: the U.S. e-prescribing network.,2013,22,EJIS,5,db/journals/ejis/ejis22.html#King13,https://doi.org/10.1057/ejis.2012.47 +Hsiao-Lan Wei,Understanding misalignment and cascading change of ERP implementation: a stage view of process analysis.,2005,14,EJIS,4,db/journals/ejis/ejis14.html#WeiWJ05,https://doi.org/10.1057/palgrave.ejis.3000547 +Edgar A. Whitley,Visiting the red-light zones with Claudio.,2005,14,EJIS,5,db/journals/ejis/ejis14.html#Whitley05,https://doi.org/10.1057/palgrave.ejis.3000554 +Dave W. Randall,'Memories are made of this': explicating organisational knowledge and memory.,2001,10,EJIS,2,db/journals/ejis/ejis10.html#RandallHORT01,https://doi.org/10.1057/palgrave.ejis.3000396 +Reeva M. Lederman,Decision support or support for situated choice: lessons for system design from effective manual systems.,2011,20,EJIS,5,db/journals/ejis/ejis20.html#LedermanJ11,https://doi.org/10.1057/ejis.2011.11 +Shirin Madon,Governance lessons from the experience of telecentres in Kerala.,2005,14,EJIS,4,db/journals/ejis/ejis14.html#Madon05,https://doi.org/10.1057/palgrave.ejis.3000576 +Jong Han Park,A framework for designing the balanced supply chain scorecard.,2005,14,EJIS,4,db/journals/ejis/ejis14.html#ParkLY05,https://doi.org/10.1057/palgrave.ejis.3000544 +Fredrik Karlsson,Longitudinal use of method rationale in method configuration: an exploratory study.,2013,22,EJIS,6,db/journals/ejis/ejis22.html#Karlsson13,https://doi.org/10.1057/ejis.2012.30 +Alessandro D'Atri,ItAIS (the Italian chapter of AIS) remembers Claudio.,2005,14,EJIS,5,db/journals/ejis/ejis14.html#DAtri05a,https://doi.org/10.1057/palgrave.ejis.3000578 +Chitu Okoli,The effects of infrastructure and policy on e-business in Latin America and Sub-Saharan Africa.,2010,19,EJIS,1,db/journals/ejis/ejis19.html#OkoliMM10,https://doi.org/10.1057/ejis.2009.48 +Ioanna D. Constantiou,Changing information retrieval behaviours: an empirical investigation of users' cognitive processes in the choice of location-based services.,2014,23,EJIS,5,db/journals/ejis/ejis23.html#ConstantiouLH14,https://doi.org/10.1057/ejis.2014.12 +Richard Baskerville,Changing the challenge: measure what makes you better and be better at what you measure.,2008,17,EJIS,1,db/journals/ejis/ejis17.html#Baskerville08,https://doi.org/10.1057/ejis.2008.1 +Wasana Bandara,Factors and measures of business process modelling: model building through a multiple case study.,2005,14,EJIS,4,db/journals/ejis/ejis14.html#BandaraGR05,https://doi.org/10.1057/palgrave.ejis.3000546 +Jing Zhang 0006,Distributed leadership in the development of a knowledge sharing system.,2007,16,EJIS,4,db/journals/ejis/ejis16.html#ZhangF07,https://doi.org/10.1057/palgrave.ejis.3000694 +Aaron Baird,Associating consumer perceived value with business models for digital services.,2015,24,EJIS,1,db/journals/ejis/ejis24.html#BairdR15,https://doi.org/10.1057/ejis.2013.12 +Magnus Holmqvist,Agility through scenario development and continuous implementation: a global aftermarket logistics case.,2006,15,EJIS,2,db/journals/ejis/ejis15.html#HolmqvistP06,https://doi.org/10.1057/palgrave.ejis.3000602 +Nannette P. Napier,Building contextual ambidexterity in a software company to improve firm-level coordination.,2011,20,EJIS,6,db/journals/ejis/ejis20.html#NapierMR11,https://doi.org/10.1057/ejis.2011.32 +Riitta Hekkala,Everyday power struggles: living in an IOIS project.,2013,22,EJIS,1,db/journals/ejis/ejis22.html#HekkalaU13,https://doi.org/10.1057/ejis.2012.43 +Joost F. Wolfswinkel,Using grounded theory as a method for rigorously reviewing literature.,2013,22,EJIS,1,db/journals/ejis/ejis22.html#WolfswinkelFW13,https://doi.org/10.1057/ejis.2011.51 +Cengiz Kahraman,Prioritization of e-Government strategies using a SWOT-AHP analysis: the case of Turkey.,2007,16,EJIS,3,db/journals/ejis/ejis16.html#KahramanDD07,https://doi.org/10.1057/palgrave.ejis.3000679 +Rens Scheepers,A conceptual framework for the implementation of enterprise information portals in large organizations.,2006,15,EJIS,6,db/journals/ejis/ejis15.html#Scheepers06,https://doi.org/10.1057/palgrave.ejis.3000646 +Kristine Dery,Working with connective flow: how smartphone use is evolving in practice.,2014,23,EJIS,5,db/journals/ejis/ejis23.html#DeryKM14,https://doi.org/10.1057/ejis.2014.13 +Alena Audzeyeva,How to get the most from a business intelligence application during the post implementation phase? Deep structure transformation at a U.K. retail bank.,2016,25,EJIS,1,db/journals/ejis/ejis25.html#AudzeyevaH16,https://doi.org/10.1057/ejis.2014.44 +Gregory Vial,A process explanation of the effects of institutional distance between parties in outsourced information systems development projects.,2016,25,EJIS,5,db/journals/ejis/ejis25.html#VialR16,https://doi.org/10.1057/s41303-016-0021-2 +Jungjoo Jahng,Personality traits and effectiveness of presentation of product information in e-business systems.,2002,11,EJIS,3,db/journals/ejis/ejis11.html#JahngJR02,https://doi.org/10.1057/palgrave.ejis.3000431 +Michael Foth,Factors influencing the intention to comply with data protection regulations in hospitals: based on gender differences in behaviour and deterrence.,2016,25,EJIS,2,db/journals/ejis/ejis25.html#Foth16,https://doi.org/10.1057/ejis.2015.9 +Mark Keil,How user risk and requirements risk moderate the effects of formal and informal control on the process performance of IT projects.,2013,22,EJIS,6,db/journals/ejis/ejis22.html#KeilRL13,https://doi.org/10.1057/ejis.2012.42 +Dov Te'eni,Journals and conferences in discourse.,2013,22,EJIS,6,db/journals/ejis/ejis22.html#Teeni13,https://doi.org/10.1057/ejis.2013.30 +Thomas Puschmann,Developing an integration architecture for process portals.,2005,14,EJIS,2,db/journals/ejis/ejis14.html#PuschmannA05,https://doi.org/10.1057/palgrave.ejis.3000527 +Carl Erik Moe,The public procurement of information systems: dialectics in requirements specification.,2017,26,EJIS,2,db/journals/ejis/ejis26.html#MoeNS17,https://doi.org/10.1057/s41303-017-0035-4 +Nicolas Lesca,Strategic scanning project failure and abandonment factors: lessons learned.,2008,17,EJIS,4,db/journals/ejis/ejis17.html#LescaC08,https://doi.org/10.1057/ejis.2008.21 +Aggeliki Tsohou,Managing the introduction of information security awareness programmes in organisations.,2015,24,EJIS,1,db/journals/ejis/ejis24.html#TsohouKKK15,https://doi.org/10.1057/ejis.2013.27 +Merrill Warkentin,Behavioral and policy issues in information systems security: the insider threat.,2009,18,EJIS,2,db/journals/ejis/ejis18.html#WarkentinW09,https://doi.org/10.1057/ejis.2009.12 +Ahmed Driouchi,Determinants of software piracy under risk aversion: a model with empirical evidence.,2015,24,EJIS,5,db/journals/ejis/ejis24.html#DriouchiWD15,https://doi.org/10.1057/ejis.2014.14 +Tamara Dinev,Why would we care about privacy?,2014,23,EJIS,2,db/journals/ejis/ejis23.html#Dinev14,https://doi.org/10.1057/ejis.2014.1 +Mikko T. Siponen,Guidelines for improving the contextual relevance of field surveys: the case of information security policy violations.,2014,23,EJIS,3,db/journals/ejis/ejis23.html#SiponenV14,https://doi.org/10.1057/ejis.2012.59 +Luis F. Luna-Reyes,Information systems development as emergent socio-technical change: a practice approach.,2005,14,EJIS,1,db/journals/ejis/ejis14.html#Luna-ReyesZGC05,https://doi.org/10.1057/palgrave.ejis.3000524 +Bernd Carsten Stahl,Focus groups and critical social IS research: how the choice of method can promote emancipation of respondents and researchers.,2011,20,EJIS,4,db/journals/ejis/ejis20.html#StahlTL11,https://doi.org/10.1057/ejis.2011.21 +Bart van den Hooff,Us and them: a social capital perspective on the relationship between the business and IT departments.,2011,20,EJIS,3,db/journals/ejis/ejis20.html#HooffW11,https://doi.org/10.1057/ejis.2011.4 +Hanifa Shah,ALTAR: achieving learning through action research.,2007,16,EJIS,6,db/journals/ejis/ejis16.html#ShahEW07,https://doi.org/10.1057/palgrave.ejis.3000720 +Juhani Iivari,Expert evaluation vs bibliometric evaluation: experiences from Finland.,2008,17,EJIS,2,db/journals/ejis/ejis17.html#Iivari08,https://doi.org/10.1057/ejis.2008.10 +Zahir Irani,Transforming failure into success through organisational learning: an analysis of a manufacturing information system.,2001,10,EJIS,1,db/journals/ejis/ejis10.html#IraniSL01,https://doi.org/10.1057/palgrave.ejis.3000384 +Iris A. Junglas,The inflation of academic intellectual capital: the case for design science research in Europe.,2011,20,EJIS,1,db/journals/ejis/ejis20.html#JunglasNSSWWB11,https://doi.org/10.1057/ejis.2010.57 +Henry E. Newkirk,Rapid business and IT change: drivers for strategic information systems planning?,2008,17,EJIS,3,db/journals/ejis/ejis17.html#NewkirkLJ08,https://doi.org/10.1057/ejis.2008.16 +Norman A. Johnson,The effect of flaming on computer-mediated negotiations.,2008,17,EJIS,4,db/journals/ejis/ejis17.html#JohnsonCC08,https://doi.org/10.1057/ejis.2008.22 +Lior Fink,How do IT capabilities create strategic value? Toward greater integration of insights from reductionistic and holistic approaches.,2011,20,EJIS,1,db/journals/ejis/ejis20.html#Fink11,https://doi.org/10.1057/ejis.2010.53 +Ofir Turel,The benefits and dangers of enjoyment with social networking websites.,2012,21,EJIS,5,db/journals/ejis/ejis21.html#TurelS12,https://doi.org/10.1057/ejis.2012.1 +Lucas D. Introna,Claudio Ciborra's way of being: authenticity and the world of information systems.,2005,14,EJIS,5,db/journals/ejis/ejis14.html#Introna05,https://doi.org/10.1057/palgrave.ejis.3000574 +Paul P. Tallon,Do you see what I see? The search for consensus among executives' perceptions of IT business value.,2014,23,EJIS,3,db/journals/ejis/ejis23.html#Tallon14,https://doi.org/10.1057/ejis.2013.2 +Laurence Brooks,Review: Information Systems: an Introduction to Informatics in Organisations.,2003,12,EJIS,3,db/journals/ejis/ejis12.html#Brooks03,https://doi.org/10.1057/palgrave.ejis.3000464 +Armin Vermerris,No time to waste: the role of timing and complementarity of alignment practices in creating business value in IT projects.,2014,23,EJIS,6,db/journals/ejis/ejis23.html#VermerrisMH14,https://doi.org/10.1057/ejis.2013.11 +Allen C. Johnston,Dispositional and situational factors: influences on information security policy violations.,2016,25,EJIS,3,db/journals/ejis/ejis25.html#JohnstonWMC16,https://doi.org/10.1057/ejis.2015.15 +Murray Scott,Measuring eGovernment success: a public value approach.,2016,25,EJIS,3,db/journals/ejis/ejis25.html#ScottDG16,https://doi.org/10.1057/ejis.2015.11 +Ray J. Paul,Making the changes.,2006,15,EJIS,6,db/journals/ejis/ejis15.html#Paul06b,https://doi.org/10.1057/palgrave.ejis.3000655 +Sven Laumer,Work routines as an object of resistance during information systems implementations: theoretical foundation and empirical evidence.,2016,25,EJIS,4,db/journals/ejis/ejis25.html#LaumerMEW16,https://doi.org/10.1057/ejis.2016.1 +Antony Bryant,The future of information systems - Thinking Informatically.,2008,17,EJIS,6,db/journals/ejis/ejis17.html#Bryant08,https://doi.org/10.1057/ejis.2008.52 +Nick Marshall,Knowledge management and the politics of knowledge: illustrations from complex products and systems.,2001,10,EJIS,2,db/journals/ejis/ejis10.html#MarshallB01,https://doi.org/10.1057/palgrave.ejis.3000398 +M. N. Ravishankar,Information technology offshoring in India: a postcolonial perspective.,2013,22,EJIS,4,db/journals/ejis/ejis22.html#RavishankarPM13,https://doi.org/10.1057/ejis.2012.32 +Bongsik Shin,Investigating the reliability of second-order formative measurement in information systems research.,2011,20,EJIS,5,db/journals/ejis/ejis20.html#ShinK11,https://doi.org/10.1057/ejis.2011.7 +Jane Elisabeth Frisk,Design matters for decision makers: Discovering IT investment alternatives.,2014,23,EJIS,4,db/journals/ejis/ejis23.html#FriskLM14,https://doi.org/10.1057/ejis.2013.13 +Jungjoo Jahng,Effects of interaction richness on consumer attitudes and behavioral intentions in e-commerce: some experimental results.,2007,16,EJIS,3,db/journals/ejis/ejis16.html#JahngJR07,https://doi.org/10.1057/palgrave.ejis.3000665 +Elisa Mattarelli,The use of ethnography and grounded theory in the development of a management information system.,2013,22,EJIS,1,db/journals/ejis/ejis22.html#MattarelliBM13,https://doi.org/10.1057/ejis.2011.34 +Younghwa Lee,Threat or coping appraisal: determinants of SMB executives' decision to adopt anti-malware software.,2009,18,EJIS,2,db/journals/ejis/ejis18.html#LeeL09,https://doi.org/10.1057/ejis.2009.11 +Robert P. Marble,Operationalising the implementation puzzle: an argument for eclecticism in research and in practice.,2000,9,EJIS,3,db/journals/ejis/ejis9.html#Marble00,https://doi.org/10.1057/palgrave.ejis.3000369 +Gunnar Dietz,Negotiating language barriers - a methodology for cross-organisational conceptual modelling.,2012,21,EJIS,3,db/journals/ejis/ejis21.html#DietzJ12,https://doi.org/10.1057/ejis.2011.30 +Brent Work,Doing research in Business and Management: An Introduction to process and method.,2000,9,EJIS,3,db/journals/ejis/ejis9.html#Work00,https://doi.org/10.1057/palgrave.ejis.3000353 +ángel Meroño-Cerdán,External Web content and its influence on organizational performance.,2007,16,EJIS,1,db/journals/ejis/ejis16.html#Merono-CerdanS07,https://doi.org/10.1057/palgrave.ejis.3000656 +Christopher T. Street,Improving validity and reliability in longitudinal case study timelines.,2012,21,EJIS,2,db/journals/ejis/ejis21.html#StreetW12,https://doi.org/10.1057/ejis.2011.53 +Janice C. Sipior,The digital divide and t-government in the United States: using the technology acceptance model to understand usage.,2011,20,EJIS,3,db/journals/ejis/ejis20.html#SipiorWC11,https://doi.org/10.1057/ejis.2010.64 +Albert Boonstra,Structure and analysis of IS decision-making processes.,2003,12,EJIS,3,db/journals/ejis/ejis12.html#Boonstra03,https://doi.org/10.1057/palgrave.ejis.3000461 +Vassilios Peristeras,Towards an enterprise architecture for public administration using a top-down approach.,2000,9,EJIS,4,db/journals/ejis/ejis9.html#PeristerasT00,https://doi.org/10.1057/palgrave.ejis.3000378 +Ting Li,Willing to pay for quality personalization? Trade-off between quality and privacy.,2012,21,EJIS,6,db/journals/ejis/ejis21.html#LiU12,https://doi.org/10.1057/ejis.2012.13 +Amany Elbanna,Top management support in multiple-project environments: an in-practice view.,2013,22,EJIS,3,db/journals/ejis/ejis22.html#Elbanna13,https://doi.org/10.1057/ejis.2012.16 +Kieran Conboy,Project failure en masse: a study of loose budgetary control in ISD projects.,2010,19,EJIS,3,db/journals/ejis/ejis19.html#Conboy10,https://doi.org/10.1057/ejis.2010.7 +Jan Damsgaard,Binary trading relations and the limits of EDI standards: the Procrustean bed of standards.,2000,9,EJIS,3,db/journals/ejis/ejis9.html#DamsgaardT00,https://doi.org/10.1057/palgrave.ejis.3000368 +Elizabeth M. Daniel,The role of dynamic capabilities in e-business transformation.,2003,12,EJIS,4,db/journals/ejis/ejis12.html#DanielW03,https://doi.org/10.1057/palgrave.ejis.3000478 +Kevin Williams,Design of emerging digital services: a taxonomy.,2008,17,EJIS,5,db/journals/ejis/ejis17.html#WilliamsCR08,https://doi.org/10.1057/ejis.2008.38 +Galal H. Galal-Edeen,From contexts to constructs: the use of grounded theory in operationalising contingent process models.,2001,10,EJIS,1,db/journals/ejis/ejis10.html#Galal-Edeen01,https://doi.org/10.1057/palgrave.ejis.3000381 +Hyung Jin Kim,The mediating role of psychological contract breach in IS outsourcing: inter-firm governance perspective.,2013,22,EJIS,5,db/journals/ejis/ejis22.html#KimSL13,https://doi.org/10.1057/ejis.2012.41 +Robert D. Galliers,Commentary on Wanda Orlikowski's 'Material knowing: the scaffolding of human knowledgeability'.,2006,15,EJIS,5,db/journals/ejis/ejis15.html#Galliers06,https://doi.org/10.1057/palgrave.ejis.3000641 +Chon Abraham,Enriching our theoretical repertoire: the role of evolutionary psychology in technology acceptance.,2013,22,EJIS,1,db/journals/ejis/ejis22.html#AbrahamBJW13,https://doi.org/10.1057/ejis.2011.25 +Michael I. Barrett,Electronic trading and the process of globalization in traditional futures exchanges: a temporal perspective.,2004,13,EJIS,1,db/journals/ejis/ejis13.html#BarrettS04,https://doi.org/10.1057/palgrave.ejis.3000487 +Constantinos J. Stefanou,A framework for the ex-ante evaluation of ERP software.,2001,10,EJIS,4,db/journals/ejis/ejis10.html#Stefanou01,https://doi.org/10.1057/palgrave.ejis.3000407 +Pamela Y. Abbott,Everywhere and nowhere: nearshore software development in the context of globalisation.,2012,21,EJIS,5,db/journals/ejis/ejis21.html#AbbottJ12,https://doi.org/10.1057/ejis.2012.7 +Hannu Salmela,Information systems planning in a turbulent environment.,2000,9,EJIS,1,db/journals/ejis/ejis9.html#SalmelaLR00,https://doi.org/10.1057/palgrave.ejis.3000339 +Ray J. Paul,Editor's View: an opportunity for editors of IS journals to relate their experiences and offer advice. The Editorial View of Ray J. Paul. First in a series.,2005,14,EJIS,3,db/journals/ejis/ejis14.html#Paul05,https://doi.org/10.1057/palgrave.ejis.3000542 +Claudio Vitari,A longitudinal analysis of trajectory changes in the software industry: the case of the content management application segment.,2009,18,EJIS,3,db/journals/ejis/ejis18.html#VitariR09,https://doi.org/10.1057/ejis.2009.13 +R. J. Paul,(IS)3: Is Information Systems an intellectual subject?,2002,11,EJIS,2,db/journals/ejis/ejis11.html#Paul02,https://doi.org/10.1057/palgrave.ejis.3000428 +Jan Kietzmann,Interactive innovation of technology for mobile work.,2008,17,EJIS,3,db/journals/ejis/ejis17.html#Kietzmann08,https://doi.org/10.1057/ejis.2008.18 +Hüseyin Tanriverdi,When IT capabilities are not scale-free in merger and acquisition integrations: how do capital markets react to IT capability asymmetries between acquirer and target?,2015,24,EJIS,2,db/journals/ejis/ejis24.html#TanriverdiU15,https://doi.org/10.1057/ejis.2013.22 +Karlene C. Cousins,Managing strategic contradictions in hybrid teams.,2007,16,EJIS,4,db/journals/ejis/ejis16.html#CousinsRZ07,https://doi.org/10.1057/palgrave.ejis.3000692 +Dubravka Cecez-Kecmanovic,Doing critical information systems research - arguments for a critical research methodology.,2011,20,EJIS,4,db/journals/ejis/ejis20.html#Cecez-Kecmanovic11,https://doi.org/10.1057/ejis.2010.67 +Elaine Ferneley,Secondary user relations in emerging mobile computing environments.,2006,15,EJIS,3,db/journals/ejis/ejis15.html#FerneleyL06,https://doi.org/10.1057/palgrave.ejis.3000620 +Michelle Carter,Understanding online customers' ties to merchants: the moderating influence of trust on the relationship between switching costs and e-loyalty.,2014,23,EJIS,2,db/journals/ejis/ejis23.html#CarterWTK14,https://doi.org/10.1057/ejis.2012.55 +Andrea Resca,Imagining Claudio Ciborra's next research agenda.,2005,14,EJIS,5,db/journals/ejis/ejis14.html#Resca05,https://doi.org/10.1057/palgrave.ejis.3000566 +Rajiv D. Banker,Evaluating cross-organizational impacts of information technology - an empirical analysis.,2010,19,EJIS,2,db/journals/ejis/ejis19.html#BankerCK10,https://doi.org/10.1057/ejis.2010.9 +Paul C. van Fenema,Implementing packaged enterprise software in multi-site firms: intensification of organizing and learning.,2007,16,EJIS,5,db/journals/ejis/ejis16.html#FenemaKB07,https://doi.org/10.1057/palgrave.ejis.3000708 +Dixi Louise Strand,Let's be baroque!,2005,14,EJIS,5,db/journals/ejis/ejis14.html#Strand05,https://doi.org/10.1057/palgrave.ejis.3000558 +Elizabeth Davidson,Contextual influences on technology use mediation: a comparative analysis of electronic medical record systems.,2005,14,EJIS,1,db/journals/ejis/ejis14.html#DavidsonC05,https://doi.org/10.1057/palgrave.ejis.3000518 +L. A. Tai,CEO and CIO perceptions of information systems strategy: evidence from Hong Kong.,2000,9,EJIS,3,db/journals/ejis/ejis9.html#TaiP00,https://doi.org/10.1057/palgrave.ejis.3000362 +Peter B. Seddon,Towards the improved treatment of generalization of knowledge claims in IS research: drawing general conclusions from samples.,2012,21,EJIS,1,db/journals/ejis/ejis21.html#SeddonS12,https://doi.org/10.1057/ejis.2011.9 +José-Rodrigo Córdoba,Information systems as a discipline in the making: comparing EJIS and MISQ between 1995 and 2008.,2012,21,EJIS,5,db/journals/ejis/ejis21.html#CordobaPB12,https://doi.org/10.1057/ejis.2011.58 +Ian Alexander,Review: Designing Collaborative Systems. A Practical Guide to Ethnography.,2003,12,EJIS,3,db/journals/ejis/ejis12.html#Alexander03b,https://doi.org/10.1057/palgrave.ejis.3000469 +Ahmad Ghoneim,Guest Editorial.,2011,20,EJIS,3,db/journals/ejis/ejis20.html#GhoneimIS11,https://doi.org/10.1057/ejis.2011.6 +Nik Rushdi Hassan,Paradigm lost ... paradigm gained: a hermeneutical rejoinder to Banville and Landry's 'Can the Field of MIS be Disciplined?'.,2014,23,EJIS,6,db/journals/ejis/ejis23.html#Hassan14,https://doi.org/10.1057/ejis.2013.29 +Tim Klaus,User resistance determinants and the psychological contract in enterprise system implementations.,2010,19,EJIS,6,db/journals/ejis/ejis19.html#KlausB10,https://doi.org/10.1057/ejis.2010.39 +Peter Axel Nielsen,Useful business cases: value creation in IS projects.,2017,26,EJIS,1,db/journals/ejis/ejis26.html#NielsenP17,https://doi.org/10.1057/s41303-016-0026-x +Dov Te'eni,Stimulating dialog between information systems research and practice.,2017,26,EJIS,6,db/journals/ejis/ejis26.html#TeeniSB17,https://doi.org/10.1057/s41303-017-0067-9 +Joe Nandhakumar,Moderating a discourse on the moderating effects in the study of top management support.,2011,20,EJIS,6,db/journals/ejis/ejis20.html#NandhakumarB11,https://doi.org/10.1057/ejis.2011.40 +Christophe M. Elie-Dit-Cosaque,Opening the black box of system usage: user adaptation to disruptive IT.,2011,20,EJIS,5,db/journals/ejis/ejis20.html#Elie-Dit-CosaqueS11,https://doi.org/10.1057/ejis.2010.23 +Sang Cheol Park,Understanding overbidding behavior in C2C auctions: an escalation theory perspective.,2012,21,EJIS,6,db/journals/ejis/ejis21.html#ParkKKB12,https://doi.org/10.1057/ejis.2012.11 +Craig Van Slyke,Perceived critical mass and the adoption of a communication technology.,2007,16,EJIS,3,db/journals/ejis/ejis16.html#SlykeILS07,https://doi.org/10.1057/palgrave.ejis.3000680 +Neil F. Doherty,A re-conceptualization of the interpretive flexibility of information technologies: redressing the balance between the social and the technical.,2006,15,EJIS,6,db/journals/ejis/ejis15.html#DohertyCL06,https://doi.org/10.1057/palgrave.ejis.3000653 +Ray J. Paul,Quality changes.,2011,20,EJIS,6,db/journals/ejis/ejis20.html#Paul11,https://doi.org/10.1057/ejis.2011.38 +Ela Klecun,A critical approach to evaluation.,2005,14,EJIS,3,db/journals/ejis/ejis14.html#KlecunC05,https://doi.org/10.1057/palgrave.ejis.3000540 +Erja Mustonen-Ollila,How organizations adopt information system process innovations: a longitudinal analysis.,2004,13,EJIS,1,db/journals/ejis/ejis13.html#Mustonen-OllilaL04,https://doi.org/10.1057/palgrave.ejis.3000467 +Mikko T. Siponen,An analysis of the traditional IS security approaches: implications for research and practice.,2005,14,EJIS,3,db/journals/ejis/ejis14.html#Siponen05,https://doi.org/10.1057/palgrave.ejis.3000537 +Jessie Pallud,User experience of museum technologies: the phenomenological scales.,2010,19,EJIS,5,db/journals/ejis/ejis19.html#PalludM10,https://doi.org/10.1057/ejis.2010.37 +Brian Fitzgerald,Customising agile methods to software practices at Intel Shannon.,2006,15,EJIS,2,db/journals/ejis/ejis15.html#FitzgeraldHC06,https://doi.org/10.1057/palgrave.ejis.3000605 +Cynthia K. Riemenschneider,Meeting the demand for IT workers: A call for research.,2009,18,EJIS,5,db/journals/ejis/ejis18.html#RiemenschneiderAM09,https://doi.org/10.1057/ejis.2009.36 +Pablo Erat,Business customer communities and knowledge sharing: exploratory study of critical issues.,2006,15,EJIS,5,db/journals/ejis/ejis15.html#EratDSK06,https://doi.org/10.1057/palgrave.ejis.3000643 +Javier Busquets,Discovery paths: exploring emergence and IT evolutionary design in cross-border M and As. Analysing grupo Santander's acquisition of abbey (2004-2009).,2015,24,EJIS,2,db/journals/ejis/ejis24.html#Busquets15,https://doi.org/10.1057/ejis.2014.38 +Marcus Keutel,Towards mindful case study research in IS: a critical analysis of the past ten years.,2014,23,EJIS,3,db/journals/ejis/ejis23.html#KeutelMR14,https://doi.org/10.1057/ejis.2013.26 +Robert Willison,Opportunities for computer crime: considering systems risk from a criminological perspective.,2006,15,EJIS,4,db/journals/ejis/ejis15.html#WillisonB06,https://doi.org/10.1057/palgrave.ejis.3000592 +Mohamed Khalifa,Online consumer retention: contingent effects of online shopping habit and online shopping experience.,2007,16,EJIS,6,db/journals/ejis/ejis16.html#KhalifaL07,https://doi.org/10.1057/palgrave.ejis.3000711 +Emmanuelle Vaast,Grounded theorizing for electronically mediated social contexts.,2013,22,EJIS,1,db/journals/ejis/ejis22.html#VaastW13,https://doi.org/10.1057/ejis.2011.26 +Clay Posey,Proposing the online community self-disclosure model: the case of working professionals in France and the U.K. who use online communities.,2010,19,EJIS,2,db/journals/ejis/ejis19.html#PoseyLRE10,https://doi.org/10.1057/ejis.2010.15 +Bijan Azad,Enacting computer workaround practices within a medication dispensing system.,2008,17,EJIS,3,db/journals/ejis/ejis17.html#AzadK08,https://doi.org/10.1057/ejis.2008.14 +Gabriele Piccoli,The competitive impact of information technology: can commodity IT contribute to competitive performance?,2014,23,EJIS,6,db/journals/ejis/ejis23.html#PiccoliL14,https://doi.org/10.1057/ejis.2013.20 +Patrick Y. K. Chau,Information systems research in the Asia Pacific region.,2005,14,EJIS,4,db/journals/ejis/ejis14.html#ChauHL05,https://doi.org/10.1057/palgrave.ejis.3000548 +Amir M. Sharif,Integrating ERP using EAI: a model for post hoc evaluation.,2005,14,EJIS,2,db/journals/ejis/ejis14.html#SharifIL05,https://doi.org/10.1057/palgrave.ejis.3000533 +Richard Baskerville,Information design.,2011,20,EJIS,4,db/journals/ejis/ejis20.html#Baskerville11a,https://doi.org/10.1057/ejis.2011.22 +Merrill Warkentin,Cross-cultural IS research: perspectives from Eastern and Western traditions.,2015,24,EJIS,3,db/journals/ejis/ejis24.html#WarkentinCC15,https://doi.org/10.1057/ejis.2015.7 +Hung-Pin Shih,Constraint-based and dedication-based mechanisms for encouraging online self-disclosure: Is personalization the only thing that matters?,2017,26,EJIS,4,db/journals/ejis/ejis26.html#ShihLC17,https://doi.org/10.1057/s41303-016-0031-0 +Teresa Lynch,User participation in decision support systems development: Influencing system outcomes.,2004,13,EJIS,4,db/journals/ejis/ejis13.html#LynchG04,https://doi.org/10.1057/palgrave.ejis.3000512 +Balasubramaniam Ramesh,Conflicts and complements between eastern cultures and agile methods: an empirical investigation.,2017,26,EJIS,2,db/journals/ejis/ejis26.html#RameshCKMJ17,https://doi.org/10.1057/s41303-016-0023-0 +John McAvoy,The role of project management in ineffective decision making within Agile software development projects.,2009,18,EJIS,4,db/journals/ejis/ejis18.html#McAvoyB09,https://doi.org/10.1057/ejis.2009.22 +Marta Indulska,Quantitative approaches to content analysis: identifying conceptual drift across publication outlets.,2012,21,EJIS,1,db/journals/ejis/ejis21.html#IndulskaHR12,https://doi.org/10.1057/ejis.2011.37 +Paulus Insap Santosa,User involvement and user satisfaction with information-seeking activity.,2005,14,EJIS,4,db/journals/ejis/ejis14.html#SantosaWC05,https://doi.org/10.1057/palgrave.ejis.3000545 +Steve Smithson,Editorial.,2000,9,EJIS,4,db/journals/ejis/ejis9.html#Smithson00,https://doi.org/10.1057/palgrave.ejis.3000380 +Hans van der Heijden,Introduction to the special issue on mobile user behaviour.,2006,15,EJIS,3,db/journals/ejis/ejis15.html#HeijdenJ06,https://doi.org/10.1057/palgrave.ejis.3000613 +Maurizio Cavallari,A grand master and an exceptional mind.,2005,14,EJIS,5,db/journals/ejis/ejis14.html#Cavallari05,https://doi.org/10.1057/palgrave.ejis.3000585 +Adel M. Aladwani,The development of two tools for measuring the easiness and usefulness of transactional Web sites.,2002,11,EJIS,3,db/journals/ejis/ejis11.html#Aladwani02,https://doi.org/10.1057/palgrave.ejis.3000432 +John Mingers,Ranking journals in business and management: a statistical analysis of the Harzing data set.,2007,16,EJIS,4,db/journals/ejis/ejis16.html#MingersH07,https://doi.org/10.1057/palgrave.ejis.3000696 +Antonio Cordella,Editorial.,2005,14,EJIS,5,db/journals/ejis/ejis14.html#CordellaWK05,https://doi.org/10.1057/palgrave.ejis.3000584 +Lapo Mola,Escaping 'localisms' in IT sourcing: tracing changes in institutional logics in an Italian firm.,2012,21,EJIS,4,db/journals/ejis/ejis21.html#MolaC12,https://doi.org/10.1057/ejis.2011.47 +Robert Wayne Gregory,Blending bureaucratic and collaborative management styles to achieve control ambidexterity in IS projects.,2014,23,EJIS,3,db/journals/ejis/ejis23.html#GregoryK14,https://doi.org/10.1057/ejis.2013.3 +Brian W. Hollocks,Electronic Brains: Stories from the Dawn of the Computer Age.,2006,15,EJIS,6,db/journals/ejis/ejis15.html#Hollocks06,https://doi.org/10.1057/palgrave.ejis.3000651 +Jimmy C. Huang,The process of global knowledge integration: a case study of a multinational investment bank's Y2K program.,2001,10,EJIS,3,db/journals/ejis/ejis10.html#HuangNP01,https://doi.org/10.1057/palgrave.ejis.3000402 +Sunyoung Cho,Contextual dynamics during health information systems implementation: an event-based actor-network approach.,2008,17,EJIS,6,db/journals/ejis/ejis17.html#ChoMN08,https://doi.org/10.1057/ejis.2008.49 +Richard J. Boland Jr.,Fake!,2005,14,EJIS,5,db/journals/ejis/ejis14.html#Boland05,https://doi.org/10.1057/palgrave.ejis.3000581 +Marinos Themistoceleous,Review: E-business applications: technologies for tomorrow's solutions.,2003,12,EJIS,4,db/journals/ejis/ejis12.html#Themistoceleous03,https://doi.org/10.1057/palgrave.ejis.3000477 +Ray J. Paul,More changes and responses.,2003,12,EJIS,3,db/journals/ejis/ejis12.html#Paul03a,https://doi.org/10.1057/palgrave.ejis.3000472 +Andrew Schwarz,Towards an understanding of assimilation in virtual worlds: the 3C approach.,2012,21,EJIS,3,db/journals/ejis/ejis21.html#SchwarzSJPW12,https://doi.org/10.1057/ejis.2011.49 +Fahri Yetim,Acting with genres: discursive-ethical concepts for reflecting on and legitimating genres.,2006,15,EJIS,1,db/journals/ejis/ejis15.html#Yetim06,https://doi.org/10.1057/palgrave.ejis.3000595 +Abdullah Al-Mudimigh,ERP software implementation: an integrative framework.,2001,10,EJIS,4,db/journals/ejis/ejis10.html#Al-MudimighZA01,https://doi.org/10.1057/palgrave.ejis.3000406 +Yu-Wei Chang,Knowledge sharing intention in the United States and China: a cross-cultural study.,2015,24,EJIS,3,db/journals/ejis/ejis24.html#ChangHST15,https://doi.org/10.1057/ejis.2014.28 +Christoph Rosenkranz,Supporting the design of data integration requirements during the development of data warehouses: a communication theory-based approach.,2017,26,EJIS,1,db/journals/ejis/ejis26.html#RosenkranzHRB17,https://doi.org/10.1057/ejis.2015.22 +Edward Bernroider,Effective ERP adoption processes: the role of project activators and resource investments.,2013,22,EJIS,2,db/journals/ejis/ejis22.html#Bernroider13,https://doi.org/10.1057/ejis.2012.51 +Pär J. ågerfalk,Embracing diversity through mixed methods research.,2013,22,EJIS,3,db/journals/ejis/ejis22.html#Agerfalk13,https://doi.org/10.1057/ejis.2013.6 +Susan Gasson,Using a grounded theory approach to study online collaboration behaviors.,2013,22,EJIS,1,db/journals/ejis/ejis22.html#GassonW13,https://doi.org/10.1057/ejis.2011.24 +Richard Baskerville,The EJIS editorial organisation and submissions.,2009,18,EJIS,1,db/journals/ejis/ejis18.html#Baskerville09,https://doi.org/10.1057/ejis.2009.3 +Anjana Bhattacharjee,"Special issue on ""interpretive"" approaches to information systems and computing.",2004,13,EJIS,3,db/journals/ejis/ejis13.html#BhattacharjeeP04,https://doi.org/10.1057/palgrave.ejis.3000507 +Eduardo Fernández-Medina,Model-driven multidimensional modeling of secure data warehouses.,2007,16,EJIS,4,db/journals/ejis/ejis16.html#Fernandez-MedinaTP07,https://doi.org/10.1057/palgrave.ejis.3000687 +Ulrike Schultze,Performing embodied identity in virtual worlds.,2014,23,EJIS,1,db/journals/ejis/ejis23.html#Schultze14,https://doi.org/10.1057/ejis.2012.52 +Jacky Swan,Commentary on Wanda Orlikowski's 'Material knowing: the scaffolding of human knowledgeability'.,2006,15,EJIS,5,db/journals/ejis/ejis15.html#Swan06,https://doi.org/10.1057/palgrave.ejis.3000640 +David Gefen,Why the first provider takes it all: the consequences of a low trust culture on pricing and ratings in online sourcing markets.,2013,22,EJIS,6,db/journals/ejis/ejis22.html#GefenC13,https://doi.org/10.1057/ejis.2012.49 +John Lee Reardon,An organizational learning perspective on the assimilation of electronic medical records among small physician practices.,2007,16,EJIS,6,db/journals/ejis/ejis16.html#ReardonD07,https://doi.org/10.1057/palgrave.ejis.3000714 +Shoshana Altschuller,The pursuit of trust in ad hoc virtual teams: how much electronic portrayal is too much?,2013,22,EJIS,6,db/journals/ejis/ejis22.html#AltschullerB13,https://doi.org/10.1057/ejis.2012.39 +Bob O'Keefe,Editorial.,2002,11,EJIS,4,db/journals/ejis/ejis11.html#OKeefeP02a,https://doi.org/10.1057/palgrave.ejis.3000441 +Ole Hanseth,Drifting with Claudio.,2005,14,EJIS,5,db/journals/ejis/ejis14.html#Hanseth05,https://doi.org/10.1057/palgrave.ejis.3000572 +Fredrik Karlsson,Combining method engineering with activity theory: theoretical grounding of the method component concept.,2006,15,EJIS,1,db/journals/ejis/ejis15.html#KarlssonW06,https://doi.org/10.1057/palgrave.ejis.3000596 +Abdullah Algarni,An empirical study on the susceptibility to social engineering in social networking sites: the case of Facebook.,2017,26,EJIS,6,db/journals/ejis/ejis26.html#AlgarniXC17,https://doi.org/10.1057/s41303-017-0057-y +Riccardo Mercurio,Remembering Claudio: a note from his friends at Universities of Naples and Catanzaro.,2005,14,EJIS,5,db/journals/ejis/ejis14.html#MercurioMMNMC05,https://doi.org/10.1057/palgrave.ejis.3000557 +Neil F. Doherty,An investigation of the factors affecting the successful treatment of organisational issues in systems development projects.,2001,10,EJIS,3,db/journals/ejis/ejis10.html#DohertyK01,https://doi.org/10.1057/palgrave.ejis.3000401 +Mohammed Ibrahim,The impacts of competence-trust and openness-trust on interorganizational systems.,2009,18,EJIS,3,db/journals/ejis/ejis18.html#IbrahimR09,https://doi.org/10.1057/ejis.2009.17 +John F. Veiga,The longitudinal impact of enterprise system users' pre-adoption expectations and organizational support on post-adoption proficient usage.,2014,23,EJIS,6,db/journals/ejis/ejis23.html#VeigaKFK14,https://doi.org/10.1057/ejis.2013.15 +Samuel Fosso Wamba,A contingency model for creating value from RFID supply chain network projects in logistics and manufacturing environments.,2009,18,EJIS,6,db/journals/ejis/ejis18.html#WambaC09,https://doi.org/10.1057/ejis.2009.44 +Joshua M. Davis,When users are IT experts too: the effects of joint IT competence and partnership on satisfaction with enterprise-level systems implementation.,2009,18,EJIS,1,db/journals/ejis/ejis18.html#DavisKK09,https://doi.org/10.1057/ejis.2009.4 +Srinarayan Sharma,Adopting IS process innovations in organizations: the role of IS leaders' individual factors and technology perceptions in decision making.,2015,24,EJIS,1,db/journals/ejis/ejis24.html#SharmaR15,https://doi.org/10.1057/ejis.2013.24 +Zafer D. Ozdemir,Antecedents and outcomes of information privacy concerns in a peer context: An exploratory study.,2017,26,EJIS,6,db/journals/ejis/ejis26.html#OzdemirSB17,https://doi.org/10.1057/s41303-017-0056-z +Xiang Fang,Coping with rapid information technology change in different national cultures.,2011,20,EJIS,5,db/journals/ejis/ejis20.html#FangBL11,https://doi.org/10.1057/ejis.2011.20 +Mari-Klara Stein,Twenty years of the European information systems academy at ECIS: emergent trends and research topics.,2016,25,EJIS,1,db/journals/ejis/ejis25.html#SteinGW16,https://doi.org/10.1057/ejis.2014.25 +Mark Lycett,'Datafication': making sense of (big) data in a complex world.,2013,22,EJIS,4,db/journals/ejis/ejis22.html#Lycett13,https://doi.org/10.1057/ejis.2013.10 +Bernd Carsten Stahl,Interpretive accounts and fairy tales: a critical polemic against the empiricist bias in interpretive IS research.,2014,23,EJIS,1,db/journals/ejis/ejis23.html#Stahl14,https://doi.org/10.1057/ejis.2012.58 +Alessandro D'Atri,Bricolage in system design and trust in cooperation.,2005,14,EJIS,5,db/journals/ejis/ejis14.html#DAtri05,https://doi.org/10.1057/palgrave.ejis.3000579 +Sarmad Alshawi,Oracle8i Data Warehousing.,2001,10,EJIS,1,db/journals/ejis/ejis10.html#Alshawi01,https://doi.org/10.1057/palgrave.ejis.3000356 +Shantanu Bagchi,Modeling use of enterprise resource planning systems: a path analytic study.,2003,12,EJIS,2,db/journals/ejis/ejis12.html#BagchiKD03,https://doi.org/10.1057/palgrave.ejis.3000453 +Jennifer Blechar,Exploring the influence of reference situations and reference pricing on mobile service user behaviour.,2006,15,EJIS,3,db/journals/ejis/ejis15.html#BlecharCD06,https://doi.org/10.1057/palgrave.ejis.3000618 +Gregory D. Moody,Which phish get caught? An exploratory study of individuals** susceptibility to phishing.,2017,26,EJIS,6,db/journals/ejis/ejis26.html#MoodyGD17,https://doi.org/10.1057/s41303-017-0058-x +Carla Wilkin,Creating value through governing IT deployment in a public/private-sector inter-organisational context: a human agency perspective.,2013,22,EJIS,5,db/journals/ejis/ejis22.html#WilkinCM13,https://doi.org/10.1057/ejis.2012.21 +Sabine Matook,Forming an intention to act on recommendations given via online social networks.,2015,24,EJIS,1,db/journals/ejis/ejis24.html#MatookBR15,https://doi.org/10.1057/ejis.2013.28 +Hugh Preston,Information Systems and Global Diversity.,2002,11,EJIS,4,db/journals/ejis/ejis11.html#Preston02,https://doi.org/10.1057/palgrave.ejis.3000426 +Egon Berghout,Information technology standards and standardization: A global perspective.,2000,9,EJIS,3,db/journals/ejis/ejis9.html#Berghout00a,https://doi.org/10.1057/palgrave.ejis.3000367 +Richard Varey,Review: Information Systems and the Economics of Innovation.,2003,12,EJIS,3,db/journals/ejis/ejis12.html#Varey03,https://doi.org/10.1057/palgrave.ejis.3000468 +Jeff Shantz,Beyond risk and boredom: reflections on Claudio Ciborra and sociology.,2005,14,EJIS,5,db/journals/ejis/ejis14.html#Shantz05,https://doi.org/10.1057/palgrave.ejis.3000564 +Ismail Sila,Do organisational and environmental factors moderate the effects of Internet-based interorganisational systems on firm performance?,2010,19,EJIS,5,db/journals/ejis/ejis19.html#Sila10,https://doi.org/10.1057/ejis.2010.28 +Joe Peppard,The conundrum of IT management.,2007,16,EJIS,4,db/journals/ejis/ejis16.html#Peppard07,https://doi.org/10.1057/palgrave.ejis.3000697 +Jannis Kallinikos,The spirit never dies.,2005,14,EJIS,5,db/journals/ejis/ejis14.html#Kallinikos05,https://doi.org/10.1057/palgrave.ejis.3000582 +Ray J. Paul,Changing the challenge: To challenge makes you larger and being challenged makes you small.,2007,16,EJIS,4,db/journals/ejis/ejis16.html#Paul07b,https://doi.org/10.1057/palgrave.ejis.3000705 +Ian Alexander,Software process improvement: Concepts and practices.,2000,9,EJIS,2,db/journals/ejis/ejis9.html#Alexander00,https://doi.org/10.1057/palgrave.ejis.3000348 +Thompson S. H. Teo,A contingency perspective on Internet adoption and competitive advantage.,2003,12,EJIS,2,db/journals/ejis/ejis12.html#TeoP03,https://doi.org/10.1057/palgrave.ejis.3000448 +Daniel Port,Simulating mixed agile and plan-based requirements prioritization strategies: proof-of-concept and practical implications.,2009,18,EJIS,4,db/journals/ejis/ejis18.html#PortB09,https://doi.org/10.1057/ejis.2009.19 +Judith Weedman,Client as designer in collaborative design science research projects: what does social science design theory tell us?,2008,17,EJIS,5,db/journals/ejis/ejis17.html#Weedman08,https://doi.org/10.1057/ejis.2008.46 +Ron Chi-Wai Kwok,Role of GSS on collaborative problem-based learning: a study on knowledge externalisation.,2002,11,EJIS,2,db/journals/ejis/ejis11.html#KwokLHP02,https://doi.org/10.1057/palgrave.ejis.3000421 +Richard Baskerville,Reviving the IT in the IS.,2012,21,EJIS,6,db/journals/ejis/ejis21.html#Baskerville12,https://doi.org/10.1057/ejis.2012.46 +Frantz Rowe,Valuing worldwide diversity in a European spirit: being more critical and open.,2010,19,EJIS,5,db/journals/ejis/ejis19.html#Rowe10,https://doi.org/10.1057/ejis.2010.43 +Andrew Basden,Enabling a Kleinian integration of interpretivist and socio-critical IS research: the contribution of Dooyeweerd's philosophy.,2011,20,EJIS,4,db/journals/ejis/ejis20.html#Basden11,https://doi.org/10.1057/ejis.2011.18 +Narges Kasiri,A balanced scorecard for item-level RFID in the retail sector: a Delphi study.,2012,21,EJIS,3,db/journals/ejis/ejis21.html#KasiriSH12,https://doi.org/10.1057/ejis.2011.33 +Bandula Jayatilaka,Determinants of ASP choice: an integrated perspective.,2003,12,EJIS,3,db/journals/ejis/ejis12.html#JayatilakaSH03,https://doi.org/10.1057/palgrave.ejis.3000466 +Catherine L. Wang,Knowledge management orientation: construct development and empirical validation.,2008,17,EJIS,3,db/journals/ejis/ejis17.html#WangAR08,https://doi.org/10.1057/ejis.2008.12 +Zahir Irani,Creating social entrepreneurship in local government.,2008,17,EJIS,4,db/journals/ejis/ejis17.html#IraniE08,https://doi.org/10.1057/ejis.2008.35 +Bijan Azad,Institutionalized computer workaround practices in a Mediterranean country: an examination of two organizations.,2012,21,EJIS,4,db/journals/ejis/ejis21.html#AzadK12,https://doi.org/10.1057/ejis.2011.48 +Matthias Söllner,Why different trust relationships matter for information systems users.,2016,25,EJIS,3,db/journals/ejis/ejis25.html#SollnerHL16,https://doi.org/10.1057/ejis.2015.17 +Matthias Trier,Sympathy or strategy: social capital drivers for collaborative contributions to the IS community.,2013,22,EJIS,3,db/journals/ejis/ejis22.html#TrierM13,https://doi.org/10.1057/ejis.2012.27 +Hope Koch,Bridging the work/social divide: the emotional response to organizational social networking sites.,2012,21,EJIS,6,db/journals/ejis/ejis21.html#KochGL12,https://doi.org/10.1057/ejis.2012.18 +Aurélie Leclercq-Vandelannoitte,Interrelationships of identity and technology in IT assimilation.,2014,23,EJIS,1,db/journals/ejis/ejis23.html#Leclercq-Vandelannoitte14,https://doi.org/10.1057/ejis.2013.16 +Jenny M. Carroll,Structured-case: a methodological framework for building theory in information systems research.,2000,9,EJIS,4,db/journals/ejis/ejis9.html#CarrollS00,https://doi.org/10.1057/palgrave.ejis.3000374 +Olga Volkoff,Understanding enterprise systems-enabled integration.,2005,14,EJIS,2,db/journals/ejis/ejis14.html#VolkoffSE05,https://doi.org/10.1057/palgrave.ejis.3000528 +Steve John Simon,The reorganization of the information systems of the US Naval Construction Forces: an action research project.,2000,9,EJIS,3,db/journals/ejis/ejis9.html#Simon00,https://doi.org/10.1057/palgrave.ejis.3000363 +Cynthia LeRouge,Guest Editorial.,2007,16,EJIS,6,db/journals/ejis/ejis16.html#LeRougeMW07,https://doi.org/10.1057/palgrave.ejis.3000712 +Hartmut Hoehle,An espoused cultural perspective to understand continued intention to use mobile applications: a four-country study of mobile social media application usability.,2015,24,EJIS,3,db/journals/ejis/ejis24.html#HoehleZV15,https://doi.org/10.1057/ejis.2014.43 +Raymond R. Panko,IT employment prospects: beyond the dotcom bubble.,2008,17,EJIS,3,db/journals/ejis/ejis17.html#Panko08,https://doi.org/10.1057/ejis.2008.19 +Pierre J. Richard,Designing IS service strategy: an information acceleration approach.,2012,21,EJIS,1,db/journals/ejis/ejis21.html#RichardCK12,https://doi.org/10.1057/ejis.2010.62 +David E. Cook,The Component-based Business: Plug and Play.,2001,10,EJIS,3,db/journals/ejis/ejis10.html#Cook01,https://doi.org/10.1057/palgrave.ejis.3000391 +Egon Berghout,Beyond the productivity paradox.,2000,9,EJIS,2,db/journals/ejis/ejis9.html#Berghout00,https://doi.org/10.1057/palgrave.ejis.3000351 +Richard Baskerville,For better or worse: how we apply journal ranking lists.,2008,17,EJIS,2,db/journals/ejis/ejis17.html#Baskerville08a,https://doi.org/10.1057/ejis.2008.7 +Sang-Yong Tom Lee,Bundling strategy in base-supplemental goods markets: the case of Microsoft.,2000,9,EJIS,4,db/journals/ejis/ejis9.html#Lee00,https://doi.org/10.1057/palgrave.ejis.3000377 +Steven Sawyer,Packaged software: implications of the differences from custom approaches to software development.,2000,9,EJIS,1,db/journals/ejis/ejis9.html#Sawyer00,https://doi.org/10.1057/palgrave.ejis.3000345 +Sangeeta Shah Bharadwaj,Building a successful relationship in business process outsourcing: an exploratory study.,2010,19,EJIS,2,db/journals/ejis/ejis19.html#BharadwajSH10,https://doi.org/10.1057/ejis.2010.8 +Nathalie Moreno Vergara,Model-driven component adaptation in the context of Web Engineering.,2007,16,EJIS,4,db/journals/ejis/ejis16.html#VergaraLM07,https://doi.org/10.1057/palgrave.ejis.3000691 +Aristeidis Theotokis,The moderating role of customer-technology contact on attitude towards technology-based services.,2008,17,EJIS,4,db/journals/ejis/ejis17.html#TheotokisVP08,https://doi.org/10.1057/ejis.2008.32 +Maddalena Sorrentino,Taking care of invisible technology.,2005,14,EJIS,5,db/journals/ejis/ejis14.html#Sorrentino05,https://doi.org/10.1057/palgrave.ejis.3000563 +Andy Crabtree,Taking technomethodology seriously: hybrid change in the ethnomethodology-design relationship.,2004,13,EJIS,3,db/journals/ejis/ejis13.html#Crabtree04,https://doi.org/10.1057/palgrave.ejis.3000500 +Michael Grimsley,e-Government information systems: Evaluation-led design for public value and client trust.,2007,16,EJIS,2,db/journals/ejis/ejis16.html#GrimsleyM07,https://doi.org/10.1057/palgrave.ejis.3000674 +Winnie Ng Picoto,An organizational perspective on m-business: usage factors and value determination.,2014,23,EJIS,5,db/journals/ejis/ejis23.html#PicotoBP14,https://doi.org/10.1057/ejis.2014.15 +Steve Eliott,Review: Electronic Commerce: B2C Strategies and Models.,2003,12,EJIS,1,db/journals/ejis/ejis12.html#Eliott03,https://doi.org/10.1057/palgrave.ejis.3000435 +Suzanne D. Pawlowski,Focusing the research agenda on burnout in IT: social representations of burnout in the profession.,2007,16,EJIS,5,db/journals/ejis/ejis16.html#PawlowskiKC07,https://doi.org/10.1057/palgrave.ejis.3000699 +Rosane Pagano,Review: Knowledge and Business Process Management.,2003,12,EJIS,2,db/journals/ejis/ejis12.html#Pagano03,https://doi.org/10.1057/palgrave.ejis.3000452 +Hans van der Heijden,Progress in information systems research.,2009,18,EJIS,5,db/journals/ejis/ejis18.html#Heijden09,https://doi.org/10.1057/ejis.2009.35 +Mike Chiasson,Reconsidering deconstruction in information systems research.,2012,21,EJIS,2,db/journals/ejis/ejis21.html#ChiassonD12,https://doi.org/10.1057/ejis.2011.55 +Ali Farhoomand,Special section on managing e-business transformation.,2003,12,EJIS,4,db/journals/ejis/ejis12.html#FarhoomandW03,https://doi.org/10.1057/palgrave.ejis.3000481 +Robert D. Galliers,A discipline for a stage? A Shakespearean reflection on the research plot and performance of the Information Systems field.,2008,17,EJIS,4,db/journals/ejis/ejis17.html#Galliers08,https://doi.org/10.1057/ejis.2008.30 +Andreja Habjan,The role of GPS-enabled information in transforming operational decision making: an exploratory study.,2014,23,EJIS,4,db/journals/ejis/ejis23.html#HabjanAG14,https://doi.org/10.1057/ejis.2014.2 +Rui Chen 0002,Learning and self-disclosure behavior on social networking sites: the case of Facebook users.,2015,24,EJIS,1,db/journals/ejis/ejis24.html#ChenS15,https://doi.org/10.1057/ejis.2013.31 +Sanjay Gosain,The management of cross-functional inter-dependencies in ERP implementations: emergent coordination patterns.,2005,14,EJIS,4,db/journals/ejis/ejis14.html#GosainLK05,https://doi.org/10.1057/palgrave.ejis.3000549 +Ben Light,Introducing Masculinity Studies to Information Systems Research: the case of Gaydar.,2007,16,EJIS,5,db/journals/ejis/ejis16.html#Light07,https://doi.org/10.1057/palgrave.ejis.3000709 +Nik Rushdi Hassan,Is information systems a discipline? Foucauldian and Toulminian insights.,2011,20,EJIS,4,db/journals/ejis/ejis20.html#Hassan11,https://doi.org/10.1057/ejis.2011.2 +Rudy Hirschheim,Special issue on the Kleinian approach to information system research - foreword.,2011,20,EJIS,4,db/journals/ejis/ejis20.html#HirschheimLM11,https://doi.org/10.1057/ejis.2011.15 +Boriana Rukanova,Understanding the influence of multiple levels of governments on the development of inter-organizational systems.,2009,18,EJIS,5,db/journals/ejis/ejis18.html#RukanovaSHBT09,https://doi.org/10.1057/ejis.2009.28 +Tejaswini Herath,Protection motivation and deterrence: a framework for security policy compliance in organisations.,2009,18,EJIS,2,db/journals/ejis/ejis18.html#HerathR09,https://doi.org/10.1057/ejis.2009.6 +John Krogstie,Process models representing knowledge for action: a revised quality framework.,2006,15,EJIS,1,db/journals/ejis/ejis15.html#KrogstieSJ06,https://doi.org/10.1057/palgrave.ejis.3000598 +Gabriele Piccoli,Triggered essential reviewing: the effect of technology affordances on service experience evaluations.,2016,25,EJIS,6,db/journals/ejis/ejis25.html#Piccoli16,https://doi.org/10.1057/s41303-016-0019-9 +Kai Reimers,An empirical evaluation of existing IS change theories for the case of IOIS evolution.,2014,23,EJIS,4,db/journals/ejis/ejis23.html#ReimersJK14,https://doi.org/10.1057/ejis.2013.7 +Ela Klecun,Transforming healthcare: policy discourses of IT and patient-centred care.,2016,25,EJIS,1,db/journals/ejis/ejis25.html#Klecun16,https://doi.org/10.1057/ejis.2014.40 +Heiko Roßnagel,Users' willingness to pay for web identity management systems.,2014,23,EJIS,1,db/journals/ejis/ejis23.html#RossnagelZHM14,https://doi.org/10.1057/ejis.2013.33 +John R. Venable,FEDS: a Framework for Evaluation in Design Science Research Open.,2016,25,EJIS,1,db/journals/ejis/ejis25.html#VenablePB16,https://doi.org/10.1057/ejis.2014.36 +Robert Winter,Guest Editorial.,2008,17,EJIS,5,db/journals/ejis/ejis17.html#Winter08,https://doi.org/10.1057/ejis.2008.44 +K. Mcgrath,The Golden Circle: a way of arguing and acting about technology in the London Ambulance Service.,2002,11,EJIS,4,db/journals/ejis/ejis11.html#Mcgrath02,https://doi.org/10.1057/palgrave.ejis.3000436 +Bob O'Keefe,Theory with everything?,2003,12,EJIS,1,db/journals/ejis/ejis12.html#OKeefe03,https://doi.org/10.1057/palgrave.ejis.3000451 +Susana Montero,From requirements to implementations: a model-driven approach for web development.,2007,16,EJIS,4,db/journals/ejis/ejis16.html#MonteroDA07,https://doi.org/10.1057/palgrave.ejis.3000689 +Hee-Dong Yang,An exploratory study on meta skills in software development teams: antecedent cooperation skills and personality for shared mental models.,2008,17,EJIS,1,db/journals/ejis/ejis17.html#YangKM08,https://doi.org/10.1057/palgrave.ejis.3000730 +Dov Te'eni,Challenges in learning and improving continuously.,2015,24,EJIS,1,db/journals/ejis/ejis24.html#Teeni15,https://doi.org/10.1057/ejis.2014.37 +Ofir Turel,Quitting the use of a habituated hedonic information system: a theoretical model and empirical examination of Facebook users.,2015,24,EJIS,4,db/journals/ejis/ejis24.html#Turel15,https://doi.org/10.1057/ejis.2014.19 +Duncan R. Shaw,Manchester United Football Club: developing a Network Orchestration Model.,2007,16,EJIS,5,db/journals/ejis/ejis16.html#Shaw07,https://doi.org/10.1057/palgrave.ejis.3000702 +Leslie P. Willcocks,The ranking of top IS journals: a perspective from the London School of Economics.,2008,17,EJIS,2,db/journals/ejis/ejis17.html#WillcocksWA08,https://doi.org/10.1057/ejis.2008.9 +Robert B. Johnston,A theory of industry-level activity for understanding the adoption of interorganizational systems.,2000,9,EJIS,4,db/journals/ejis/ejis9.html#JohnstonG00,https://doi.org/10.1057/palgrave.ejis.3000375 +Catherine A. Middleton,Is mobile email functional or dysfunctional? Two perspectives on mobile email usage.,2006,15,EJIS,3,db/journals/ejis/ejis15.html#MiddletonC06,https://doi.org/10.1057/palgrave.ejis.3000614 +Robert D. Galliers,The European Information Systems Academy.,2007,16,EJIS,1,db/journals/ejis/ejis16.html#GalliersWP07,https://doi.org/10.1057/palgrave.ejis.3000669 +Corinne M. Karuppan,Resilience of super users' mental models of enterprise-wide systems.,2008,17,EJIS,1,db/journals/ejis/ejis17.html#KaruppanK08,https://doi.org/10.1057/palgrave.ejis.3000728 +Joshua M. Davis,Leveraging the IT competence of non-IS workers: social exchange and the good corporate citizen.,2013,22,EJIS,4,db/journals/ejis/ejis22.html#Davis13,https://doi.org/10.1057/ejis.2012.36 +David H. Brown,Potential of critical e-applications for engaging SMEs in e-business: a provider perspective.,2004,13,EJIS,1,db/journals/ejis/ejis13.html#BrownL04,https://doi.org/10.1057/palgrave.ejis.3000480 +Laurie L. Novak,Mediating the intersections of organizational routines during the introduction of a health IT system.,2012,21,EJIS,5,db/journals/ejis/ejis21.html#NovakBGAL12,https://doi.org/10.1057/ejis.2012.2 +Lorraine Morgan,Exploring value networks: theorising the creation and capture of value with open source software.,2013,22,EJIS,5,db/journals/ejis/ejis22.html#MorganFF13,https://doi.org/10.1057/ejis.2012.44 +Ricky Y. K. Chan,Does ethical ideology affect software piracy attitude and behaviour? An empirical investigation of computer users in China.,2011,20,EJIS,6,db/journals/ejis/ejis20.html#ChanL11,https://doi.org/10.1057/ejis.2011.31 +Ivan Aaen,Essence: facilitating software innovation.,2008,17,EJIS,5,db/journals/ejis/ejis17.html#Aaen08,https://doi.org/10.1057/ejis.2008.43 +Ray J. Paul,Loose Change.,2010,19,EJIS,4,db/journals/ejis/ejis19.html#Paul10,https://doi.org/10.1057/ejis.2010.40 +Stephen Burgess,Representing small business web presence content: the web presence pyramid model.,2016,25,EJIS,2,db/journals/ejis/ejis25.html#Burgess16,https://doi.org/10.1057/ejis.2015.4 +Suprateek Sarker,Implications of space and time for distributed work: an interpretive study of US-Norwegian systems development teams.,2004,13,EJIS,1,db/journals/ejis/ejis13.html#SarkerS04,https://doi.org/10.1057/palgrave.ejis.3000485 +Sia Siew Kien,An assessment of package-organisation misalignment: institutional and ontological structures.,2007,16,EJIS,5,db/journals/ejis/ejis16.html#KienS07,https://doi.org/10.1057/palgrave.ejis.3000700 +Steven Verjans,Bricolage as a way of life - improvisation and irony in information systems.,2005,14,EJIS,5,db/journals/ejis/ejis14.html#Verjans05,https://doi.org/10.1057/palgrave.ejis.3000559 +Pratim Datta,Knowledge-acquisitions and post-acquisition innovation performance: a comparative hazards model.,2015,24,EJIS,2,db/journals/ejis/ejis24.html#DattaR15,https://doi.org/10.1057/ejis.2014.32 +Andrew Burton-Jones,Theoretical perspectives in IS research: from variance and process to conceptual latitude and conceptual fit.,2015,24,EJIS,6,db/journals/ejis/ejis24.html#Burton-JonesMM15,https://doi.org/10.1057/ejis.2014.31 +Dominic M. Thomas,Team leader strategies for enabling collaboration technology adaptation: team technology knowledge to improve globally distributed systems development work.,2010,19,EJIS,2,db/journals/ejis/ejis19.html#ThomasB10,https://doi.org/10.1057/ejis.2010.14 +Richard Baskerville,Third-degree conflicts: information warfare.,2010,19,EJIS,1,db/journals/ejis/ejis19.html#Baskerville10,https://doi.org/10.1057/ejis.2010.2 +Marinos Themistocleous,EJIS special issue on making enterprise systems work.,2005,14,EJIS,2,db/journals/ejis/ejis14.html#ThemistocleousW05,https://doi.org/10.1057/palgrave.ejis.3000534 +Jonny Holmström,Requirements engineering blinders: exploring information systems developers' black-boxing of the emergent character of requirements.,2011,20,EJIS,1,db/journals/ejis/ejis20.html#HolmstromS11,https://doi.org/10.1057/ejis.2010.51 +Bruce R. Lewis,A methodology for construct development in MIS research.,2005,14,EJIS,4,db/journals/ejis/ejis14.html#LewisTB05,https://doi.org/10.1057/palgrave.ejis.3000552 +Jörg Henseler,Analysing quadratic effects of formative constructs by means of variance-based structural equation modelling.,2012,21,EJIS,1,db/journals/ejis/ejis21.html#HenselerFDW12,https://doi.org/10.1057/ejis.2011.36 +Steven Jones,Understanding IS evaluation as a complex social process: a case study of a UK local authority.,2001,10,EJIS,4,db/journals/ejis/ejis10.html#JonesH01,https://doi.org/10.1057/palgrave.ejis.3000405 +Mary Coombs,Review: A computer called LEO.,2003,12,EJIS,3,db/journals/ejis/ejis12.html#Coombs03,https://doi.org/10.1057/palgrave.ejis.3000463 +Eric Monteiro,Trans-situated use of integrated information systems.,2012,21,EJIS,6,db/journals/ejis/ejis21.html#MonteiroR12,https://doi.org/10.1057/ejis.2012.8 +D. C. Sutton,What is knowledge and can it be managed?,2001,10,EJIS,2,db/journals/ejis/ejis10.html#Sutton01,https://doi.org/10.1057/palgrave.ejis.3000397 +Mahmood Hussain Shah,A survey of critical success factors in e-Banking: an organisational perspective.,2007,16,EJIS,4,db/journals/ejis/ejis16.html#ShahBM07,https://doi.org/10.1057/palgrave.ejis.3000693 +Yogesh Kumar Dwivedi,Profile of IS research published in the European Journal of Information Systems.,2008,17,EJIS,6,db/journals/ejis/ejis17.html#DwivediK08,https://doi.org/10.1057/ejis.2008.57 +Ray J. Paul,Change strikes back.,2007,16,EJIS,1,db/journals/ejis/ejis16.html#Paul07,https://doi.org/10.1057/palgrave.ejis.3000668 +Stephen Duhan,Information systems strategies in knowledge-based SMEs: the role of core competencies.,2001,10,EJIS,1,db/journals/ejis/ejis10.html#DuhanLP01,https://doi.org/10.1057/palgrave.ejis.3000379 +Robert D. Macredie,A theory-grounded framework of Open Source Software adoption in SMEs.,2011,20,EJIS,2,db/journals/ejis/ejis20.html#MacredieM11,https://doi.org/10.1057/ejis.2010.60 +W. Alec Cram,Mindful revolution or mindless trend? Examining agile development as a management fashion.,2016,25,EJIS,2,db/journals/ejis/ejis25.html#CramN16,https://doi.org/10.1057/ejis.2015.13 +Caroline Lancelot Miltgen,Cultural and generational influences on privacy concerns: a qualitative study in seven European countries.,2014,23,EJIS,2,db/journals/ejis/ejis23.html#MiltgenP14,https://doi.org/10.1057/ejis.2013.17 +Likoebe M. Maruping,Role of collective ownership and coding standards in coordinating expertise in software project teams.,2009,18,EJIS,4,db/journals/ejis/ejis18.html#MarupingZV09,https://doi.org/10.1057/ejis.2009.24 +Patrick Y. K. Chau,For the Special Issue on 'Personal Aspects of E-Business'.,2002,11,EJIS,3,db/journals/ejis/ejis11.html#Chau02,https://doi.org/10.1057/palgrave.ejis.3000433 +Anja Mursu,Identifying software project risks in Nigeria: an International Comparative Study.,2003,12,EJIS,3,db/journals/ejis/ejis12.html#MursuLSK03,https://doi.org/10.1057/palgrave.ejis.3000462 +Samuel Otim,An empirical study on Web-based services and customer loyalty.,2006,15,EJIS,6,db/journals/ejis/ejis15.html#OtimG06,https://doi.org/10.1057/palgrave.ejis.3000652 +A. Brown,The IT value quest: How to capture the business value of IT-based infrastructure.,2000,9,EJIS,3,db/journals/ejis/ejis9.html#Brown00a,https://doi.org/10.1057/palgrave.ejis.3000360 +J. Korn,Design and delivery of information.,2001,10,EJIS,1,db/journals/ejis/ejis10.html#Korn01,https://doi.org/10.1057/palgrave.ejis.3000388 +Bernd Carsten Stahl,The obituary as bricolage: the Mann Gulch disaster and the problem of heroic rationality.,2005,14,EJIS,5,db/journals/ejis/ejis14.html#Stahl05,https://doi.org/10.1057/palgrave.ejis.3000560 +Matthias Lange,An empirical analysis of the factors and measures of Enterprise Architecture Management success.,2016,25,EJIS,5,db/journals/ejis/ejis25.html#LangeMR16,https://doi.org/10.1057/ejis.2014.39 +Federico Iannacci,When is an information infrastructure? Investigating the emergence of public sector information infrastructures.,2010,19,EJIS,1,db/journals/ejis/ejis19.html#Iannacci10,https://doi.org/10.1057/ejis.2010.3 +Juan Rodon,Analysing IOIS adoption through structural contradictions.,2010,19,EJIS,6,db/journals/ejis/ejis19.html#RodonS10,https://doi.org/10.1057/ejis.2010.44 +Janis L. Gogan,Commentary on Karl E. Weick's 'The role of imagination in the organizing of knowledge'.,2006,15,EJIS,5,db/journals/ejis/ejis15.html#Gogan06,https://doi.org/10.1057/palgrave.ejis.3000636 +Zhengchuan Xu,Online game addiction among adolescents: motivation and prevention factors.,2012,21,EJIS,3,db/journals/ejis/ejis21.html#XuTY12,https://doi.org/10.1057/ejis.2011.56 +Gaurav Kapoor,Challenges associated with RFID tag implementations in supply chains.,2009,18,EJIS,6,db/journals/ejis/ejis18.html#KapoorZP09,https://doi.org/10.1057/ejis.2009.41 +Nikolaos Papas,The action research vs design science debate: reflections from an intervention in eGovernment.,2012,21,EJIS,2,db/journals/ejis/ejis21.html#PapasOS12,https://doi.org/10.1057/ejis.2011.50 +Sue Newell,Facilitating - or inhibiting - knowing in practice.,2006,15,EJIS,5,db/journals/ejis/ejis15.html#NewellG06,https://doi.org/10.1057/palgrave.ejis.3000633 +Michele Zappavigna,Eliciting tacit knowledge about requirement analysis with a Grammar-targeted Interview Method (GIM).,2010,19,EJIS,1,db/journals/ejis/ejis19.html#ZappavignaP10,https://doi.org/10.1057/ejis.2010.1 +Anita Mangan,Information systems and the allure of organisational integration: a cautionary tale from the Irish financial services sector.,2009,18,EJIS,1,db/journals/ejis/ejis18.html#ManganK09,https://doi.org/10.1057/ejis.2008.60 +Rui Huang,Influencing the effectiveness of IT governance practices through steering committees and communication policies.,2010,19,EJIS,3,db/journals/ejis/ejis19.html#HuangZP10,https://doi.org/10.1057/ejis.2010.16 +Zahir Irani,Linking knowledge transformation to Information Systems evaluation.,2005,14,EJIS,3,db/journals/ejis/ejis14.html#IraniSL05,https://doi.org/10.1057/palgrave.ejis.3000538 +Pairin Katerattanakul,Are European IS Journals under-rated? An answer based on citation analysis.,2003,12,EJIS,1,db/journals/ejis/ejis12.html#KaterattanakulH03,https://doi.org/10.1057/palgrave.ejis.3000447 +Richard Baskerville,What design science is not.,2008,17,EJIS,5,db/journals/ejis/ejis17.html#Baskerville08d,https://doi.org/10.1057/ejis.2008.45 +Ram L. Kumar,A process model for analyzing and managing flexibility in information systems.,2014,23,EJIS,2,db/journals/ejis/ejis23.html#KumarS14,https://doi.org/10.1057/ejis.2012.53 +Kennedy Njenga,Conceptualising improvisation in information systems security.,2012,21,EJIS,6,db/journals/ejis/ejis21.html#NjengaB12,https://doi.org/10.1057/ejis.2012.3 +Daphne Ruth Raban,Conversation as a source of satisfaction and continuance in a question-and-answer site.,2012,21,EJIS,4,db/journals/ejis/ejis21.html#Ruth12,https://doi.org/10.1057/ejis.2011.42 +Bernhard R. Katzy,Alignment in an inter-organisational network: the case of ARC transistance.,2016,25,EJIS,6,db/journals/ejis/ejis25.html#KatzySC16,https://doi.org/10.1057/ejis.2016.9 +Mads Bødker,What else is there...?: reporting meditations in experiential computing.,2017,26,EJIS,3,db/journals/ejis/ejis26.html#Bodker17,https://doi.org/10.1057/s41303-017-0041-6 +Marianna Sigala,The impact of geocollaborative portals on group decision making for trip planning.,2012,21,EJIS,4,db/journals/ejis/ejis21.html#Sigala12,https://doi.org/10.1057/ejis.2012.22 +Matthias Wenzel,The funeral industry and the Internet: on the historical emergence and destabilization of strategic paths.,2017,26,EJIS,4,db/journals/ejis/ejis26.html#WenzelWK17,https://doi.org/10.1057/s41303-017-0048-z +Pasi Tyrväinen,Characterizing the evolving research on enterprise content management.,2006,15,EJIS,6,db/journals/ejis/ejis15.html#TyrvainenPSI06,https://doi.org/10.1057/palgrave.ejis.3000648 +Nicholas C. Romano Jr.,A motivational model for technology-supported cross-organizational and cross-border collaboration.,2010,19,EJIS,2,db/journals/ejis/ejis19.html#RomanoPR10,https://doi.org/10.1057/ejis.2010.17 +Kalle Lyytinen,Information system development agility as organizational learning.,2006,15,EJIS,2,db/journals/ejis/ejis15.html#LyytinenR06,https://doi.org/10.1057/palgrave.ejis.3000604 +Colin Ashurst,Improving the impact of IT development projects: the benefits realization capability model.,2008,17,EJIS,4,db/journals/ejis/ejis17.html#AshurstDP08,https://doi.org/10.1057/ejis.2008.33 +Richard J. Boland,The limits to language in doing systems design.,2017,26,EJIS,3,db/journals/ejis/ejis26.html#BolandL17,https://doi.org/10.1057/s41303-017-0043-4 +Brian W. Hollocks,Handbook on Electronic Commerce.,2001,10,EJIS,1,db/journals/ejis/ejis10.html#Hollocks01,https://doi.org/10.1057/palgrave.ejis.3000386 +Geoff Walsham,Empiricism in interpretive IS research: a response to Stahl.,2014,23,EJIS,1,db/journals/ejis/ejis23.html#Walsham14,https://doi.org/10.1057/ejis.2012.57 +Yang Yang,Satisfaction with employee relationship management systems: the impact of usefulness on systems quality perceptions.,2011,20,EJIS,2,db/journals/ejis/ejis20.html#YangSG11,https://doi.org/10.1057/ejis.2010.69 +Hans van der Heijden,Understanding online purchase intentions: contributions from technology and trust perspectives.,2003,12,EJIS,1,db/journals/ejis/ejis12.html#HeijdenVC03,https://doi.org/10.1057/palgrave.ejis.3000445 +Petros Panagiotidis,Organisational learning - a critical systems thinking discipline.,2001,10,EJIS,3,db/journals/ejis/ejis10.html#PanagiotidisE01,https://doi.org/10.1057/palgrave.ejis.3000394 +David E. Avison,Is IS an intellectual subject?,2003,12,EJIS,3,db/journals/ejis/ejis12.html#Avison03,https://doi.org/10.1057/palgrave.ejis.3000474 +Katharina Krell,Development of an IS change reason-IS change type combinations matrix.,2011,20,EJIS,6,db/journals/ejis/ejis20.html#KrellMR11,https://doi.org/10.1057/ejis.2011.28 +Susan Gasson,A genealogical study of boundary-spanning IS design.,2006,15,EJIS,1,db/journals/ejis/ejis15.html#Gasson06,https://doi.org/10.1057/palgrave.ejis.3000594 +Albert Boonstra,Stakeholder management in IOS projects: analysis of an attempt to implement an electronic patient file.,2008,17,EJIS,2,db/journals/ejis/ejis17.html#BoonstraBB08,https://doi.org/10.1057/ejis.2008.2 +Mark John Somers,Using the theory of the professions to understand the IS identity crisis.,2010,19,EJIS,4,db/journals/ejis/ejis19.html#Somers10,https://doi.org/10.1057/ejis.2010.26 +Nancy Pouloudi,Organizational and ethical issues in the information society.,2006,15,EJIS,4,db/journals/ejis/ejis15.html#PouloudiO06,https://doi.org/10.1057/palgrave.ejis.3000628 +Scott McCoy,Applying TAM across cultures: the need for caution.,2007,16,EJIS,1,db/journals/ejis/ejis16.html#McCoyGK07,https://doi.org/10.1057/palgrave.ejis.3000659 +Rajendra Singh,Identifying and overcoming the challenges of implementing a project management office.,2009,18,EJIS,5,db/journals/ejis/ejis18.html#SinghKK09,https://doi.org/10.1057/ejis.2009.29 +Richard Hecks,IT investments in developing countries: An assessment and practical guide.,2000,9,EJIS,2,db/journals/ejis/ejis9.html#Hecks00,https://doi.org/10.1057/palgrave.ejis.3000352 +Jeanette Van Akkeren,An epidemic of pain in an Australian radiology practice.,2007,16,EJIS,6,db/journals/ejis/ejis16.html#AkkerenR07,https://doi.org/10.1057/palgrave.ejis.3000715 +Jonas Hedman,Information system integration in mergers and acquisitions: research ahead.,2015,24,EJIS,2,db/journals/ejis/ejis24.html#HedmanS15,https://doi.org/10.1057/ejis.2015.2 +M. N. Ravishankar,The realignment of offshoring frame disputes (OFD): an ethnographic 'cultural' analysis.,2015,24,EJIS,3,db/journals/ejis/ejis24.html#Ravishankar15,https://doi.org/10.1057/ejis.2014.5 +Tamara Dinev,Information privacy and correlates: an empirical attempt to bridge and distinguish privacy-related concepts.,2013,22,EJIS,3,db/journals/ejis/ejis22.html#DinevXSH13,https://doi.org/10.1057/ejis.2012.23 +Sebastián Bruque Cámara,Organizational determinants of IT adoption in the pharmaceutical distribution sector.,2004,13,EJIS,2,db/journals/ejis/ejis13.html#CamaraVH04,https://doi.org/10.1057/palgrave.ejis.3000490 +Mark I. Hwang,Assessing moderating effect in meta-analysis: a re-analysis of top management support studies and suggestions for researchers.,2011,20,EJIS,6,db/journals/ejis/ejis20.html#HwangS11,https://doi.org/10.1057/ejis.2011.12 +Douglas Kunda,Identifying and classifying processes (traditional and soft factors) that support COTS component selection: a case study.,2000,9,EJIS,4,db/journals/ejis/ejis9.html#KundaB00,https://doi.org/10.1057/palgrave.ejis.3000376 +Sunyoung Cho,The role of industry infrastructure in telehealth innovations: a multi-level analysis of a telestroke program.,2007,16,EJIS,6,db/journals/ejis/ejis16.html#ChoM07,https://doi.org/10.1057/palgrave.ejis.3000718 +Dirk S. Hovorka,Enabling agile adoption practices through network organizations.,2006,15,EJIS,2,db/journals/ejis/ejis15.html#HovorkaL06,https://doi.org/10.1057/palgrave.ejis.3000606 +Rangarirai Matavire,Profiling grounded theory approaches in information systems research.,2013,22,EJIS,1,db/journals/ejis/ejis22.html#MatavireB13,https://doi.org/10.1057/ejis.2011.35 +Guy Fitzgerald,The turnaround of the London Ambulance Service Computer-Aided Despatch system (LASCAD).,2005,14,EJIS,3,db/journals/ejis/ejis14.html#FitzgeraldR05,https://doi.org/10.1057/palgrave.ejis.3000541 +Marco de Marco,A portrait of a scientist.,2005,14,EJIS,5,db/journals/ejis/ejis14.html#Marco05,https://doi.org/10.1057/palgrave.ejis.3000553 +Eric Overby,Enterprise agility and the enabling role of information technology.,2006,15,EJIS,2,db/journals/ejis/ejis15.html#OverbyBS06,https://doi.org/10.1057/palgrave.ejis.3000600 +Peter B. Seddon,Does Domberger's theory of 'The Contracting Organization' explain why organizations outsource IT and the levels of satisfaction achieved?,2007,16,EJIS,3,db/journals/ejis/ejis16.html#SeddonCW07,https://doi.org/10.1057/palgrave.ejis.3000664 +Cliff Oswick,Commentary on Karl E. Weick's 'The role of imagination in the organizing of knowledge'.,2006,15,EJIS,5,db/journals/ejis/ejis15.html#Oswick06,https://doi.org/10.1057/palgrave.ejis.3000638 +Tina Blegind Jensen,Special Section Articles.,2007,16,EJIS,6,db/journals/ejis/ejis16.html#JensenA07,https://doi.org/10.1057/palgrave.ejis.3000713 +Robert P. Marble,Technological switchbacks: the transition to Western information systems in privatised firms of the former East Germany.,2004,13,EJIS,2,db/journals/ejis/ejis13.html#Marble04,https://doi.org/10.1057/palgrave.ejis.3000489 +Tim Barnett,Five-factor model personality traits as predictors of perceived and actual usage of technology.,2015,24,EJIS,4,db/journals/ejis/ejis24.html#BarnettPPK15,https://doi.org/10.1057/ejis.2014.10 +Richard Baskerville,Individual information systems as a research arena.,2011,20,EJIS,3,db/journals/ejis/ejis20.html#Baskerville11,https://doi.org/10.1057/ejis.2011.8 +Radhika P. Jain,The roles of contextual elements in post-merger common platform development: an empirical investigation.,2015,24,EJIS,2,db/journals/ejis/ejis24.html#JainR15,https://doi.org/10.1057/ejis.2014.42 +S. Poon,Business environment and internet commerce benefit - a small business perspective.,2000,9,EJIS,2,db/journals/ejis/ejis9.html#Poon00,https://doi.org/10.1057/palgrave.ejis.3000361 +Nathan Heinze,Why college undergraduates choose IT: a multi-theoretical perspective.,2009,18,EJIS,5,db/journals/ejis/ejis18.html#HeinzeH09,https://doi.org/10.1057/ejis.2009.30 +Tally Hatzakis,A programme management approach for ensuring curriculum coherence in IS (higher) education.,2007,16,EJIS,5,db/journals/ejis/ejis16.html#HatzakisLS07,https://doi.org/10.1057/palgrave.ejis.3000707 +Colin Gabriel Onita,Alignment within the corporate IT unit: an analysis of software testing and development.,2011,20,EJIS,1,db/journals/ejis/ejis20.html#OnitaD11,https://doi.org/10.1057/ejis.2010.52 +Chih-Ping Wei,Managing document categories in e-commerce environments: an evolution-based approach.,2002,11,EJIS,3,db/journals/ejis/ejis11.html#WeiHD02,https://doi.org/10.1057/palgrave.ejis.3000429 +Saonee Sarker,Assessing the relative contribution of the facets of agility to distributed systems development success: an Analytic Hierarchy Process approach.,2009,18,EJIS,4,db/journals/ejis/ejis18.html#SarkerMSC09,https://doi.org/10.1057/ejis.2009.25 +Zahir Irani,Developing a frame of reference for ex-ante IT/IS investment evaluation.,2002,11,EJIS,1,db/journals/ejis/ejis11.html#IraniL02,https://doi.org/10.1057/palgrave.ejis.3000411 +C. Ranganathan,Switching behavior of mobile users: do users' relational investments and demographics matter?,2006,15,EJIS,3,db/journals/ejis/ejis15.html#RanganathanSB06,https://doi.org/10.1057/palgrave.ejis.3000616 +Thompson S. H. Teo,Knowledge portals in Chinese consulting firms: a task-technology fit perspective.,2008,17,EJIS,6,db/journals/ejis/ejis17.html#TeoM08,https://doi.org/10.1057/ejis.2008.41 +George D. Magoulas,Model-based design and evaluation of interactive applications.,2001,10,EJIS,3,db/journals/ejis/ejis10.html#Magoulas01,https://doi.org/10.1057/palgrave.ejis.3000385 +Bernd Carsten Stahl,Responsible research and innovation in information systems.,2012,21,EJIS,3,db/journals/ejis/ejis21.html#Stahl12,https://doi.org/10.1057/ejis.2012.19 +Vasiliki Mantzana,Identifying healthcare actors involved in the adoption of information systems.,2007,16,EJIS,1,db/journals/ejis/ejis16.html#MantzanaTIM07,https://doi.org/10.1057/palgrave.ejis.3000660 +W. Alec Cram,Organizational information security policies: a review and research framework.,2017,26,EJIS,6,db/journals/ejis/ejis26.html#CramPD17,https://doi.org/10.1057/s41303-017-0059-9 +Gamel O. Wiredu,The dynamics of control and mobile computing in distributed activities.,2006,15,EJIS,3,db/journals/ejis/ejis15.html#WireduS06,https://doi.org/10.1057/palgrave.ejis.3000577 +Robin L. Wakefield,How website socialness leads to website use.,2011,20,EJIS,1,db/journals/ejis/ejis20.html#WakefieldWBW11,https://doi.org/10.1057/ejis.2010.47 +Geoffrey Elliott,Market-oriented Technology Management - Innovating for Profit in Entrepreneurial Times.,2001,10,EJIS,3,db/journals/ejis/ejis10.html#Elliott01,https://doi.org/10.1057/palgrave.ejis.3000392 +Ali Alper Yayla,The impact of IT-business strategic alignment on firm performance in a developing country setting: exploring moderating roles of environmental uncertainty and strategic orientation.,2012,21,EJIS,4,db/journals/ejis/ejis21.html#YaylaH12,https://doi.org/10.1057/ejis.2011.52 +Steve Smith,Offshoring Information Technology.,2006,15,EJIS,4,db/journals/ejis/ejis15.html#Smith06,https://doi.org/10.1057/palgrave.ejis.3000624 +Edgar A. Whitley,Doing the politics of technological decision making: due process and the debate about identity cards in the U.K.,2008,17,EJIS,6,db/journals/ejis/ejis17.html#WhitleyH08,https://doi.org/10.1057/ejis.2008.53 +Adamantia G. Pateli,A research framework for analysing eBusiness models.,2004,13,EJIS,4,db/journals/ejis/ejis13.html#PateliG04,https://doi.org/10.1057/palgrave.ejis.3000513 +Anna Maria Morazzoni,Challenging wisdom.,2005,14,EJIS,5,db/journals/ejis/ejis14.html#Morazzoni05,https://doi.org/10.1057/palgrave.ejis.3000586 +José Ramón Gil-García,Collaborative e-Government: impediments and benefits of information-sharing projects in the public sector.,2007,16,EJIS,2,db/journals/ejis/ejis16.html#Gil-GarciaCD07,https://doi.org/10.1057/palgrave.ejis.3000673 +Colin G. Ash,Assessing the benefits from e-business transformation through effective enterprise management.,2003,12,EJIS,4,db/journals/ejis/ejis12.html#AshB03,https://doi.org/10.1057/palgrave.ejis.3000476 +Ricky Y. K. Chan,Impact of executive compensation on the execution of IT-based environmental strategies under competition.,2017,26,EJIS,5,db/journals/ejis/ejis26.html#ChanM17,https://doi.org/10.1057/s41303-017-0052-3 +Dov Te'eni,Publishing and getting published in EJIS: marshaling contributions for a diversity of genres.,2015,24,EJIS,6,db/journals/ejis/ejis24.html#TeeniRAL15,https://doi.org/10.1057/ejis.2015.20 +Anna Börjesson,Agile improvement practices in software organizations.,2006,15,EJIS,2,db/journals/ejis/ejis15.html#BorjessonMT06,https://doi.org/10.1057/palgrave.ejis.3000603 +Namchul Shin,The impact of information technology on financial performance: the importance of strategic choice.,2001,10,EJIS,4,db/journals/ejis/ejis10.html#Shin01,https://doi.org/10.1057/palgrave.ejis.3000409 +Richard T. Vidgen,What sort of community is the European Conference on Information Systems? A social network analysis 1993-2005.,2007,16,EJIS,1,db/journals/ejis/ejis16.html#VidgenHN07,https://doi.org/10.1057/palgrave.ejis.3000661 +Hugh Preston,Managing Electronic Services* A Public Sector Perspective.,2001,10,EJIS,3,db/journals/ejis/ejis10.html#Preston01,https://doi.org/10.1057/palgrave.ejis.3000390 +Lan Cao,Adapting funding processes for agile IT projects: an empirical investigation.,2013,22,EJIS,2,db/journals/ejis/ejis22.html#CaoMRS13,https://doi.org/10.1057/ejis.2012.9 +Mike Newman,Making ERPs work: accountants and the introduction of ERP systems.,2005,14,EJIS,3,db/journals/ejis/ejis14.html#NewmanW05,https://doi.org/10.1057/palgrave.ejis.3000539 +Joe Nandhakumar,Guest Editorial: Contrarian information systems studies.,2010,19,EJIS,6,db/journals/ejis/ejis19.html#Nandhakumar10,https://doi.org/10.1057/ejis.2010.49 +Mário M. Caldeira,Using resource-based theory to interpret the successful adoption and use of information systems and technology in manufacturing small and medium-sized enterprises.,2003,12,EJIS,2,db/journals/ejis/ejis12.html#CaldeiraW03,https://doi.org/10.1057/palgrave.ejis.3000454 +Ofir Turel,Untangling the complex role of guilt in rational decisions to discontinue the use of a hedonic Information System.,2016,25,EJIS,5,db/journals/ejis/ejis25.html#Turel16,https://doi.org/10.1057/s41303-016-0002-5 +W. Andrew Taylor,Computer-mediated knowledge sharing and individual user differences: an exploratory study.,2004,13,EJIS,1,db/journals/ejis/ejis13.html#Taylor04,https://doi.org/10.1057/palgrave.ejis.3000484 +Ray J. Paul,Measuring research quality: the United Kingdom Government's Research Assessment Exercise.,2008,17,EJIS,4,db/journals/ejis/ejis17.html#Paul08,https://doi.org/10.1057/ejis.2008.31 +Nancy MacKay,A model of electronic commerce adoption by small voluntary organizations.,2004,13,EJIS,2,db/journals/ejis/ejis13.html#MacKayPG04,https://doi.org/10.1057/palgrave.ejis.3000491 +Bob O'Keefe,Editorial.,2000,9,EJIS,3,db/journals/ejis/ejis9.html#OKeefeP00b,https://doi.org/10.1057/palgrave.ejis.3000370 +Duane P. Truex,The scholarly influence of Heinz Klein: ideational and social measures of his impact on IS research and IS scholars.,2011,20,EJIS,4,db/journals/ejis/ejis20.html#TruexCTV11,https://doi.org/10.1057/ejis.2011.16 +Kalle Lyytinen,Explaining information systems change: a punctuated socio-technical change model.,2008,17,EJIS,6,db/journals/ejis/ejis17.html#LyytinenN08,https://doi.org/10.1057/ejis.2008.50 +Eleanor Wynn,Claudio Ciborra: his life as a formative context.,2005,14,EJIS,5,db/journals/ejis/ejis14.html#Wynn05,https://doi.org/10.1057/palgrave.ejis.3000570 +Richard Baskerville,An Editor's Values.,2004,13,EJIS,1,db/journals/ejis/ejis13.html#Baskerville04,https://doi.org/10.1057/palgrave.ejis.3000488 +Peter Rittgen,A language-mapping approach to action-oriented development of information systems.,2006,15,EJIS,1,db/journals/ejis/ejis15.html#Rittgen06,https://doi.org/10.1057/palgrave.ejis.3000597 +Ming Fan,The adoption and design methodologies of component-based enterprise systems.,2000,9,EJIS,1,db/journals/ejis/ejis9.html#FanSW00,https://doi.org/10.1057/palgrave.ejis.3000343 +Heikki Topi,Using informal notes for sharing corporate technology know-how.,2006,15,EJIS,5,db/journals/ejis/ejis15.html#TopiLB06,https://doi.org/10.1057/palgrave.ejis.3000637 +Denise Gengatharen,A framework to assess the factors affecting success or failure of the implementation of government-supported regional e-marketplaces for SMEs.,2005,14,EJIS,4,db/journals/ejis/ejis14.html#GengatharenS05,https://doi.org/10.1057/palgrave.ejis.3000551 +Pnina Soffer,Applying ontology-based rules to conceptual modeling: a reflection on modeling decision making.,2007,16,EJIS,5,db/journals/ejis/ejis16.html#SofferH07,https://doi.org/10.1057/palgrave.ejis.3000683 +Richard Baskerville,Artful planning.,2006,15,EJIS,2,db/journals/ejis/ejis15.html#Baskerville06,https://doi.org/10.1057/palgrave.ejis.3000622 +Shoshana Zuboff,Ciborra disclosed: aletheia in the life and scholarship of Claudio Ciborra.,2005,14,EJIS,5,db/journals/ejis/ejis14.html#Zuboff05,https://doi.org/10.1057/palgrave.ejis.3000580 +Ian Alexander,Review: Knowledge Management Systems.,2003,12,EJIS,1,db/journals/ejis/ejis12.html#Alexander03,https://doi.org/10.1057/palgrave.ejis.3000440 +Briony J. Oates,New frontiers for information systems research: computer art as an information system.,2006,15,EJIS,6,db/journals/ejis/ejis15.html#Oates06,https://doi.org/10.1057/palgrave.ejis.3000649 +Marie Caroline Oetzel,A systematic methodology for privacy impact assessments: a design science approach.,2014,23,EJIS,2,db/journals/ejis/ejis23.html#OetzelS14,https://doi.org/10.1057/ejis.2013.18 +Lars Mathiassen,How a professionally qualified doctoral student bridged the practice-research gap: a confessional account of Collaborative Practice Research.,2013,22,EJIS,4,db/journals/ejis/ejis22.html#MathiassenS13,https://doi.org/10.1057/ejis.2012.35 +Donal Flynn,A case study of the legitimation process undertaken to gain support for an information system in a Chinese university.,2012,21,EJIS,3,db/journals/ejis/ejis21.html#FlynnD12,https://doi.org/10.1057/ejis.2011.27 +Joyce Yi-Hui Lee,Business strategic conflict in computer-mediated communication.,2010,19,EJIS,2,db/journals/ejis/ejis19.html#LeeP10,https://doi.org/10.1057/ejis.2010.4 +Ray J. Paul,The Labyrinths of Information: Challenging the Wisdom of Systems.,2005,14,EJIS,5,db/journals/ejis/ejis14.html#Paul05a,https://doi.org/10.1057/palgrave.ejis.3000587 +Ian Alexander,An introduction to qualitative research.,2000,9,EJIS,2,db/journals/ejis/ejis9.html#Alexander00a,https://doi.org/10.1057/palgrave.ejis.3000350 +Elmar Kutsch,Does risk matter? Disengagement from risk management practices in information systems projects.,2013,22,EJIS,6,db/journals/ejis/ejis22.html#KutschDHL13,https://doi.org/10.1057/ejis.2012.6 +Anol Bhattacherjee,Why end-users move to the cloud: a migration-theoretic analysis.,2014,23,EJIS,3,db/journals/ejis/ejis23.html#BhattacherjeeP14,https://doi.org/10.1057/ejis.2013.1 +Lan Cao,A framework for adapting agile development methodologies.,2009,18,EJIS,4,db/journals/ejis/ejis18.html#CaoMXR09,https://doi.org/10.1057/ejis.2009.26 +Joseph Feller,Open innovation and public administration: transformational typologies and business model impacts.,2011,20,EJIS,3,db/journals/ejis/ejis20.html#FellerFN11,https://doi.org/10.1057/ejis.2010.65 +Marc Bidan,An empirical study of IS architectures in French SMEs: integration approaches.,2012,21,EJIS,3,db/journals/ejis/ejis21.html#BidanRT12,https://doi.org/10.1057/ejis.2012.12 +Ben Light,Guest Editorial.,2007,16,EJIS,5,db/journals/ejis/ejis16.html#LightS07,https://doi.org/10.1057/palgrave.ejis.3000706 +Neil F. Doherty,From technical to socio-technical change: tackling the human and organizational aspects of systems development projects.,2005,14,EJIS,1,db/journals/ejis/ejis14.html#DohertyK05,https://doi.org/10.1057/palgrave.ejis.3000517 +Lars Mathiassen,Business agility and diffusion of information technology.,2006,15,EJIS,2,db/journals/ejis/ejis15.html#MathiassenP06,https://doi.org/10.1057/palgrave.ejis.3000610 +Richard Klein 0001,An empirical examination of patient-physician portal acceptance.,2007,16,EJIS,6,db/journals/ejis/ejis16.html#Klein07,https://doi.org/10.1057/palgrave.ejis.3000719 +Elpida Prasopoulou,Enacting new temporal boundaries: the role of mobile phones.,2006,15,EJIS,3,db/journals/ejis/ejis15.html#PrasopoulouPP06,https://doi.org/10.1057/palgrave.ejis.3000617 +Sabine Madsen,A framework for understanding how a unique and local IS development method emerges in practice.,2006,15,EJIS,2,db/journals/ejis/ejis15.html#MadsenKV06,https://doi.org/10.1057/palgrave.ejis.3000593 +Chaomei Chen,Bringing global information systems into business.,2000,9,EJIS,3,db/journals/ejis/ejis9.html#Chen00,https://doi.org/10.1057/palgrave.ejis.3000366 +Stefan Henningsson,Learning to acquire: how serial acquirers build organisational knowledge for information systems integration.,2015,24,EJIS,2,db/journals/ejis/ejis24.html#Henningsson15,https://doi.org/10.1057/ejis.2014.18 +Iris A. Junglas,Personality traits and concern for privacy: an empirical study in the context of location-based services.,2008,17,EJIS,4,db/journals/ejis/ejis17.html#JunglasJS08,https://doi.org/10.1057/ejis.2008.29 +Séamus Gallagher,Paradigmatic analysis as a means of eliciting knowledge to assist multimedia methodological development.,2000,9,EJIS,2,db/journals/ejis/ejis9.html#GallagherW00,https://doi.org/10.1057/palgrave.ejis.3000355 +Lynne P. Baldwin,Outsourcing information systems: drawing lessons from a banking case study.,2001,10,EJIS,1,db/journals/ejis/ejis10.html#BaldwinIL01,https://doi.org/10.1057/palgrave.ejis.3000372 +Joseph K. Nwankpa,Balancing exploration and exploitation of IT resources: the influence of Digital Business Intensity on perceived organizational performance.,2017,26,EJIS,5,db/journals/ejis/ejis26.html#NwankpaD17,https://doi.org/10.1057/s41303-017-0049-y +Robin L. Wakefield,Mobile computing: a user study on hedonic/utilitarian mobile device usage.,2006,15,EJIS,3,db/journals/ejis/ejis15.html#WakefieldW06,https://doi.org/10.1057/palgrave.ejis.3000619 +Chao-Min Chiu,Examining the antecedents of user gratification and its effects on individuals' social network services usage: the moderating role of habit.,2015,24,EJIS,4,db/journals/ejis/ejis24.html#ChiuH15,https://doi.org/10.1057/ejis.2014.9 +Jennifer E. Gerow,Can we have fun @ work? The role of intrinsic motivation for utilitarian systems.,2013,22,EJIS,3,db/journals/ejis/ejis22.html#GerowATR13,https://doi.org/10.1057/ejis.2012.25 +Aurelie Dudezert,Illusions of control and social domination strategies in knowledge mapping system use.,2011,20,EJIS,5,db/journals/ejis/ejis20.html#DudezertL11,https://doi.org/10.1057/ejis.2011.17 +Frédéric Thiesse,Understanding the value of integrated RFID systems: a case study from apparel retail.,2009,18,EJIS,6,db/journals/ejis/ejis18.html#ThiesseAF09,https://doi.org/10.1057/ejis.2009.33 +Bjarne Rerup Schlichter,Trust dynamics in a large system implementation: six theoretical propositions.,2013,22,EJIS,4,db/journals/ejis/ejis22.html#SchlichterR13,https://doi.org/10.1057/ejis.2012.24 +Tanya V. Bondarouk,Action-oriented group learning in the implementation of information technologies: results from three case studies.,2006,15,EJIS,1,db/journals/ejis/ejis15.html#Bondarouk06,https://doi.org/10.1057/palgrave.ejis.3000608 +Christian Schmidt 0007,Outcomes and success factors of enterprise IT architecture management: empirical insight from the international financial services industry.,2011,20,EJIS,2,db/journals/ejis/ejis20.html#SchmidtB11,https://doi.org/10.1057/ejis.2010.68 +Angela Lin,The social and political construction of technological frames.,2005,14,EJIS,1,db/journals/ejis/ejis14.html#LinS05,https://doi.org/10.1057/palgrave.ejis.3000521 +Mark Lycett,Guest Editorial.,2007,16,EJIS,4,db/journals/ejis/ejis16.html#LycettMS07,https://doi.org/10.1057/palgrave.ejis.3000684 +Gary Hackbarth,Strategic aspirations for net-enabled business.,2004,13,EJIS,4,db/journals/ejis/ejis13.html#HackbarthK04,https://doi.org/10.1057/palgrave.ejis.3000511 +Pratim Datta,The economics and psychology of consumer trust in intermediaries in electronic markets: the EM-Trust Framework.,2008,17,EJIS,1,db/journals/ejis/ejis17.html#DattaC08,https://doi.org/10.1057/palgrave.ejis.3000729 +Martin Wiener,The effective promotion of informal control in information systems offshoring projects.,2015,24,EJIS,6,db/journals/ejis/ejis24.html#WienerRHM15,https://doi.org/10.1057/ejis.2014.16 +Phil Seltsikas,System development: A strategic framework.,2000,9,EJIS,3,db/journals/ejis/ejis9.html#Seltsikas00,https://doi.org/10.1057/palgrave.ejis.3000365 +Yuehua Lin,Special Section Articles.,2007,16,EJIS,4,db/journals/ejis/ejis16.html#LinGJ07,https://doi.org/10.1057/palgrave.ejis.3000685 +Israr Qureshi,Understanding online customer repurchasing intention and the mediating role of trust - an empirical investigation in two developed countries.,2009,18,EJIS,3,db/journals/ejis/ejis18.html#QureshiFRMIC09,https://doi.org/10.1057/ejis.2009.15 +Jie Zhang 0023,Improving multiple-password recall: an empirical study.,2009,18,EJIS,2,db/journals/ejis/ejis18.html#ZhangLAZ09,https://doi.org/10.1057/ejis.2009.9 +Kai Riemer,Rethinking the place of the artefact in IS using Heidegger's analysis of equipment.,2014,23,EJIS,3,db/journals/ejis/ejis23.html#RiemerJ14,https://doi.org/10.1057/ejis.2013.5 +Marcel van Oosterhout,Change factors requiring agility and implications for IT.,2006,15,EJIS,2,db/journals/ejis/ejis15.html#OosterhoutWH06,https://doi.org/10.1057/palgrave.ejis.3000601 +Selamawit Molla Mekonnen,An institutional analysis on the dynamics of the interaction between standardizing and scaling processes: a case study from Ethiopia.,2008,17,EJIS,3,db/journals/ejis/ejis17.html#MekonnenS08,https://doi.org/10.1057/ejis.2008.17 +Gaurav Bansal,The role of privacy assurance mechanisms in building trust and the moderating role of privacy concern.,2015,24,EJIS,6,db/journals/ejis/ejis24.html#BansalZG15,https://doi.org/10.1057/ejis.2014.41 +Bill Doolin,Sociomateriality and boundary objects in information systems development.,2012,21,EJIS,5,db/journals/ejis/ejis21.html#DoolinM12,https://doi.org/10.1057/ejis.2012.20 +Magno Queiroz,Mixed results in strategic IT alignment research: a synthesis and empirical study.,2017,26,EJIS,1,db/journals/ejis/ejis26.html#Queiroz17,https://doi.org/10.1057/s41303-016-0024-z +George P. Huber,Transfer of knowledge in knowledge management systems: unexplored issues and suggested studies.,2001,10,EJIS,2,db/journals/ejis/ejis10.html#Huber01,https://doi.org/10.1057/palgrave.ejis.3000399 +Juhani Iivari,Distinguishing and contrasting two strategies for design science research.,2015,24,EJIS,1,db/journals/ejis/ejis24.html#Iivari15,https://doi.org/10.1057/ejis.2013.35 +Wendy L. Currie,Exploring the supply-side of IT outsourcing: evaluating the emerging role of application service providers.,2001,10,EJIS,3,db/journals/ejis/ejis10.html#CurrieS01,https://doi.org/10.1057/palgrave.ejis.3000393 +Chaojie Duan,Business Process Outsourcing: an event study on the nature of processes and firm valuation.,2009,18,EJIS,5,db/journals/ejis/ejis18.html#DuanGB09,https://doi.org/10.1057/ejis.2009.38 +Brent Lyle Work,Patterns of software quality management in TickIT certified firms.,2002,11,EJIS,1,db/journals/ejis/ejis11.html#Work02,https://doi.org/10.1057/palgrave.ejis.3000410 +Merrill Warkentin,The influence of the informal social learning environment on information privacy policy compliance efficacy and intention.,2011,20,EJIS,3,db/journals/ejis/ejis20.html#WarkentinJS11,https://doi.org/10.1057/ejis.2010.72 +Véronique Guilloux,Digital business reporting standards: mapping the battle in France.,2013,22,EJIS,3,db/journals/ejis/ejis22.html#GuillouxLL13,https://doi.org/10.1057/ejis.2012.5 +Regis Meissonier,Toward an 'IT Conflict-Resistance Theory': action research during IT pre-implementation.,2010,19,EJIS,5,db/journals/ejis/ejis19.html#MeissonierH10,https://doi.org/10.1057/ejis.2010.35 +Fredrik J. Karlsson,Exploring agile values in method configuration.,2009,18,EJIS,4,db/journals/ejis/ejis18.html#KarlssonA09,https://doi.org/10.1057/ejis.2009.20 +Kiran Jude Fernandes,Eureka moments in the works of Claudio Ciborra.,2005,14,EJIS,5,db/journals/ejis/ejis14.html#Fernandes05,https://doi.org/10.1057/palgrave.ejis.3000556 +Pei-Ying Huang,Developing information processing capability for operational agility: implications from a Chinese manufacturer.,2014,23,EJIS,4,db/journals/ejis/ejis23.html#HuangPO14,https://doi.org/10.1057/ejis.2014.4 +Zixing Shen,Time and information technology in teams: a review of empirical research and future research directions.,2015,24,EJIS,5,db/journals/ejis/ejis24.html#ShenLY15,https://doi.org/10.1057/ejis.2014.8 +Luning Liu,From transactional user to VIP: how organizational and cognitive factors affect ERP assimilation at individual level.,2011,20,EJIS,2,db/journals/ejis/ejis20.html#LiuFHH11,https://doi.org/10.1057/ejis.2010.66 +Surendra N. Singh,Understanding Web home page perception.,2005,14,EJIS,3,db/journals/ejis/ejis14.html#SinghDS05,https://doi.org/10.1057/palgrave.ejis.3000525 +Anol Bhattacherjee,A unified model of IT continuance: three complementary perspectives and crossover effects.,2015,24,EJIS,4,db/journals/ejis/ejis24.html#BhattacherjeeL15,https://doi.org/10.1057/ejis.2013.36 +Lucas D. Introna,Disciplining Information Systems: Truth and its Regimes.,2003,12,EJIS,3,db/journals/ejis/ejis12.html#Introna03,https://doi.org/10.1057/palgrave.ejis.3000465 +Björn Niehaves,Internet adoption by the elderly: employing IS technology acceptance theories for understanding the age-related digital divide Open.,2014,23,EJIS,6,db/journals/ejis/ejis23.html#NiehavesP14,https://doi.org/10.1057/ejis.2013.19 +Wei Zhou 0001,RFID-enabled item-level product information revelation.,2009,18,EJIS,6,db/journals/ejis/ejis18.html#ZhouKP09,https://doi.org/10.1057/ejis.2009.45 +Damien Power,Variable use of standards-based IOS enabling technologies in Australian SMEs: an examination of deliberate and emergent decision making processes.,2017,26,EJIS,2,db/journals/ejis/ejis26.html#PowerG17,https://doi.org/10.1057/s41303-017-0034-5 +Tobias Mettler,Service robots in hospitals: new perspectives on niche evolution and technology affordances.,2017,26,EJIS,5,db/journals/ejis/ejis26.html#MettlerSW17,https://doi.org/10.1057/s41303-017-0046-1 +Ray J. Paul,Challenges to information systems: time to change.,2007,16,EJIS,3,db/journals/ejis/ejis16.html#Paul07a,https://doi.org/10.1057/palgrave.ejis.3000681 +Susan J. Winter,Electronic window dressing: impression management with Websites.,2003,12,EJIS,4,db/journals/ejis/ejis12.html#WinterSH03,https://doi.org/10.1057/palgrave.ejis.3000470 +Vera Kartseva,Control patterns in a health-care network.,2010,19,EJIS,3,db/journals/ejis/ejis19.html#KartsevaHGT10,https://doi.org/10.1057/ejis.2010.13 +Michel Avital,Alternative genres in information systems research.,2017,26,EJIS,3,db/journals/ejis/ejis26.html#AvitalMS17,https://doi.org/10.1057/s41303-017-0051-4 +David E. Cook,Review: Information Security Management: Global Changes in the New Millennium.,2002,11,EJIS,1,db/journals/ejis/ejis11.html#Cook02,https://doi.org/10.1057/palgrave.ejis.3000416 +Weizi Li,Integrated clinical pathway management for medical quality improvement - based on a semiotically inspired systems architecture Open.,2014,23,EJIS,4,db/journals/ejis/ejis23.html#LiLYY14,https://doi.org/10.1057/ejis.2013.9 +Ray J. Paul,Changeover and celebrating change: 20 reasons for celebrating 20 years.,2007,16,EJIS,5,db/journals/ejis/ejis16.html#Paul07c,https://doi.org/10.1057/palgrave.ejis.3000710 +Cristina Cachero Castro,Towards improving the navigability of Web applications: a model-driven approach.,2007,16,EJIS,4,db/journals/ejis/ejis16.html#CastroMGPC07,https://doi.org/10.1057/palgrave.ejis.3000690 +Richard Baskerville,Preparing for evidence-based management.,2009,18,EJIS,6,db/journals/ejis/ejis18.html#Baskerville09a,https://doi.org/10.1057/ejis.2009.42 +Rajeev Sharma,Transforming decision-making processes: a research agenda for understanding the impact of business analytics on organisations.,2014,23,EJIS,4,db/journals/ejis/ejis23.html#SharmaMK14,https://doi.org/10.1057/ejis.2014.17 +Carol W. Hsu,Frame misalignment: interpreting the implementation of information systems security certification in an organization.,2009,18,EJIS,2,db/journals/ejis/ejis18.html#Hsu09,https://doi.org/10.1057/ejis.2009.7 +Jonas Hedman,The business model concept: theoretical underpinnings and empirical illustrations.,2003,12,EJIS,1,db/journals/ejis/ejis12.html#HedmanK03,https://doi.org/10.1057/palgrave.ejis.3000446 +Robert C. Nickerson,A method for taxonomy development and its application in information systems.,2013,22,EJIS,3,db/journals/ejis/ejis22.html#NickersonVM13,https://doi.org/10.1057/ejis.2012.26 +Eileen M. Trauth,Retaining women in the U.S. IT workforce: theorizing the influence of organizational factors.,2009,18,EJIS,5,db/journals/ejis/ejis18.html#TrauthQH09,https://doi.org/10.1057/ejis.2009.31 +Eszter Bartis,A multiple narrative approach to information systems failure: a successful system that failed.,2008,17,EJIS,2,db/journals/ejis/ejis17.html#BartisM08,https://doi.org/10.1057/ejis.2008.3 +Christian Maier,Giving too much social support: social overload on social networking sites.,2015,24,EJIS,5,db/journals/ejis/ejis24.html#MaierLEW15,https://doi.org/10.1057/ejis.2014.3 +Kalle Lyytinen,Why the old world cannot publish? Overcoming challenges in publishing high-impact IS research.,2007,16,EJIS,4,db/journals/ejis/ejis16.html#LyytinenBIT07,https://doi.org/10.1057/palgrave.ejis.3000695 +Andrea Carugati,Information system development activities and inquiring systems: an integrating framework.,2008,17,EJIS,2,db/journals/ejis/ejis17.html#Carugati08,https://doi.org/10.1057/ejis.2008.5 +Dennis Wagelaar,Platform ontologies for the model-driven architecture.,2007,16,EJIS,4,db/journals/ejis/ejis16.html#WagelaarS07,https://doi.org/10.1057/palgrave.ejis.3000686 +Calvin Meng Lai Chan,Managing e-Government system implementation: a resource enactment perspective.,2011,20,EJIS,5,db/journals/ejis/ejis20.html#ChanHPC11,https://doi.org/10.1057/ejis.2011.19 +Isabel M. Prieto,Dynamic capabilities and the role of organizational knowledge: an exploration.,2006,15,EJIS,5,db/journals/ejis/ejis15.html#PrietoE06,https://doi.org/10.1057/palgrave.ejis.3000642 +Daqing Zheng,E-government adoption in public administration organizations: integrating institutional theory perspective and resource-based view.,2013,22,EJIS,2,db/journals/ejis/ejis22.html#ZhengCHZ13,https://doi.org/10.1057/ejis.2012.28 +Kevin Zhu,Innovation diffusion in global contexts: determinants of post-adoption digital transformation of European companies.,2006,15,EJIS,6,db/journals/ejis/ejis15.html#ZhuDXK06,https://doi.org/10.1057/palgrave.ejis.3000650 +Marinos Themistocleous,Editorial.,2005,14,EJIS,3,db/journals/ejis/ejis14.html#Themistocleous05,https://doi.org/10.1057/palgrave.ejis.3000543 +Randolph B. Cooper,The Influence of workspace awareness on group intellective decision effectiveness.,2008,17,EJIS,6,db/journals/ejis/ejis17.html#CooperH08,https://doi.org/10.1057/ejis.2008.51 +Peter Bøgh Andersen,Activity-based design.,2006,15,EJIS,1,db/journals/ejis/ejis15.html#Andersen06,https://doi.org/10.1057/palgrave.ejis.3000599 +Lucas D. Introna,The ontological screening of contemporary life: a phenomenological analysis of screens.,2004,13,EJIS,3,db/journals/ejis/ejis13.html#IntronaI04,https://doi.org/10.1057/palgrave.ejis.3000503 +Adela Mlcakova,Configuring peer-to-peer software: an empirical study of how users react to the regulatory features of software.,2004,13,EJIS,2,db/journals/ejis/ejis13.html#MlcakovaW04,https://doi.org/10.1057/palgrave.ejis.3000493 +Elizabeth M. Daniel,The future of inter-organisational system linkages: findings of an international Delphi study.,2005,14,EJIS,2,db/journals/ejis/ejis14.html#DanielW05,https://doi.org/10.1057/palgrave.ejis.3000529 +Gerald Grant,Governing IT in inter-organizational relationships: Issues and future research.,2013,22,EJIS,5,db/journals/ejis/ejis22.html#GrantT13,https://doi.org/10.1057/ejis.2013.21 +Ojelanki K. Ngwenyama,Software process improvement with weak management support: an analysis of the dynamics of intra-organizational alliances in IS change initiatives.,2010,19,EJIS,3,db/journals/ejis/ejis19.html#NgwenyamaN10,https://doi.org/10.1057/ejis.2010.18 +Gaëtan Mourmant,Another road to IT turnover: the entrepreneurial path.,2009,18,EJIS,5,db/journals/ejis/ejis18.html#MourmantGK09,https://doi.org/10.1057/ejis.2009.37 +Ray J. Paul,The only duty we owe to history is to rewrite it: reflections on Bob Galliers' article 'A discipline for a stage?'.,2008,17,EJIS,5,db/journals/ejis/ejis17.html#Paul08a,https://doi.org/10.1057/ejis.2008.47 +Bruce R. Lewis,Development of a measure for the information technology infrastructure construct.,2003,12,EJIS,2,db/journals/ejis/ejis12.html#LewisB03,https://doi.org/10.1057/palgrave.ejis.3000449 +Wanda J. Orlikowski,Material knowing: the scaffolding of human knowledgeability.,2006,15,EJIS,5,db/journals/ejis/ejis15.html#Orlikowski06,https://doi.org/10.1057/palgrave.ejis.3000639 +Sabrina Karwatzki,Adverse consequences of access to individuals' information: an analysis of perceptions and the scope of organisational influence.,2017,26,EJIS,6,db/journals/ejis/ejis26.html#KarwatzkiTTV17,https://doi.org/10.1057/s41303-017-0064-z +Alemayehu Molla,Adding clicks to bricks: a case study of e-commerce adoption by a Catalan small retailer.,2006,15,EJIS,4,db/journals/ejis/ejis15.html#MollaHB06,https://doi.org/10.1057/palgrave.ejis.3000623 +John Collins,Flexible decision support in dynamic inter-organisational networks.,2010,19,EJIS,4,db/journals/ejis/ejis19.html#CollinsKG10,https://doi.org/10.1057/ejis.2010.24 +Roozmehr Safi,Online product review as an indicator of users' degree of innovativeness and product adoption time: a longitudinal analysis of text reviews.,2017,26,EJIS,4,db/journals/ejis/ejis26.html#SafiY17,https://doi.org/10.1057/s41303-017-0045-2 +Gerald Grant,Reconceptualizing the concept of business and IT alignment: from engineering to agriculture.,2010,19,EJIS,6,db/journals/ejis/ejis19.html#Grant10,https://doi.org/10.1057/ejis.2010.50 +Mark J. Perry,(IS)4: is information systems interesting in itself?,2003,12,EJIS,3,db/journals/ejis/ejis12.html#Perry03,https://doi.org/10.1057/palgrave.ejis.3000471 +Robert D. Galliers,The teaching of qualitative research methods in information systems: an explorative study utilizing learning theory.,2012,21,EJIS,2,db/journals/ejis/ejis21.html#GalliersH12,https://doi.org/10.1057/ejis.2011.44 +Steven Alter,Defining information systems as work systems: implications for the IS field.,2008,17,EJIS,5,db/journals/ejis/ejis17.html#Alter08,https://doi.org/10.1057/ejis.2008.37 +Fergle D'Aubeterre,Secure activity resource coordination: empirical evidence of enhanced security awareness in designing secure business processes.,2008,17,EJIS,5,db/journals/ejis/ejis17.html#DAubeterreSI08,https://doi.org/10.1057/ejis.2008.42 +Ian Alexander,Review: Visualizing Argumentation: Software Tools for Collaborative and Educational Sense-making.,2003,12,EJIS,2,db/journals/ejis/ejis12.html#Alexander03a,https://doi.org/10.1057/palgrave.ejis.3000457 +Elpida Prasopoulou,A half-moon on my skin: a memoir on life with an activity tracker.,2017,26,EJIS,3,db/journals/ejis/ejis26.html#Prasopoulou17,https://doi.org/10.1057/s41303-017-0040-7 +Selamawit Molla Mekonnen,An institutional analysis on the dynamics of the interaction between standardizing and scaling processes: a case study from Ethiopia.,2009,18,EJIS,1,db/journals/ejis/ejis18.html#MekonnenS09,https://doi.org/10.1057/ejis.2008.59 +Yujong Hwang,Personal information management effectiveness of knowledge workers: conceptual development and empirical validation.,2015,24,EJIS,6,db/journals/ejis/ejis24.html#HwangKY15,https://doi.org/10.1057/ejis.2014.24 +Jennifer E. Gerow,Six types of IT-business strategic alignment: an investigation of the constructs and their measurement.,2015,24,EJIS,5,db/journals/ejis/ejis24.html#GerowTG15,https://doi.org/10.1057/ejis.2014.6 +Jiming Wu,Toward a better understanding of behavioral intention and system usage constructs.,2012,21,EJIS,6,db/journals/ejis/ejis21.html#WuD12,https://doi.org/10.1057/ejis.2012.15 +David K. Allen,Information sharing and interoperability: the case of major incident management.,2014,23,EJIS,4,db/journals/ejis/ejis23.html#AllenKN14,https://doi.org/10.1057/ejis.2013.8 +Ying Lu,Proactive or reactive IT leaders? A test of two competing hypotheses of IT innovation and environment alignment.,2010,19,EJIS,5,db/journals/ejis/ejis19.html#LuR10,https://doi.org/10.1057/ejis.2010.36 +Paul B. Cragg,Benchmarking information technology practices in small firms.,2002,11,EJIS,4,db/journals/ejis/ejis11.html#Cragg02,https://doi.org/10.1057/palgrave.ejis.3000430 +Liang Xiao 0002,Towards agent-oriented model-driven architecture.,2007,16,EJIS,4,db/journals/ejis/ejis16.html#XiaoG07,https://doi.org/10.1057/palgrave.ejis.3000688 +Han Li,Exploring the impact of instant messaging on subjective task complexity and user satisfaction.,2011,20,EJIS,2,db/journals/ejis/ejis20.html#LiGLW11,https://doi.org/10.1057/ejis.2010.59 +Bonnie Brinton Anderson,How users perceive and respond to security messages: a NeuroIS research agenda and empirical study.,2016,25,EJIS,4,db/journals/ejis/ejis25.html#AndersonVKEJ16,https://doi.org/10.1057/ejis.2015.21 +John S. Edwards,An analysis of expert systems for business decision making at different levels and in different roles.,2000,9,EJIS,1,db/journals/ejis/ejis9.html#EdwardsDR00,https://doi.org/10.1057/palgrave.ejis.3000344 +Pernille Bjørn,Boundary factors and contextual contingencies: configuring electronic templates for healthcare professionals.,2009,18,EJIS,5,db/journals/ejis/ejis18.html#BjornBCMPM09,https://doi.org/10.1057/ejis.2009.34 +Bob O'Keefe,Editorial.,2000,9,EJIS,1,db/journals/ejis/ejis9.html#OKeefeP00,https://doi.org/10.1057/palgrave.ejis.3000346 +Chi-Wen Chen,The impact of decision support system features on user overconfidence and risky behavior.,2015,24,EJIS,6,db/journals/ejis/ejis24.html#ChenK15,https://doi.org/10.1057/ejis.2014.30 +Lai Xu,Concepts of Product Software.,2007,16,EJIS,5,db/journals/ejis/ejis16.html#XuB07,https://doi.org/10.1057/palgrave.ejis.3000703 +Karthikeyan Umapathy,Designing enterprise integration solutions: effectively.,2008,17,EJIS,5,db/journals/ejis/ejis17.html#UmapathyPB08,https://doi.org/10.1057/ejis.2008.39 +Vicky Arnold,Competing pressures of risk and absorptive capacity potential on commitment and information sharing in global supply chains.,2010,19,EJIS,2,db/journals/ejis/ejis19.html#ArnoldBHS10,https://doi.org/10.1057/ejis.2009.49 +Melanie Wilson,Re-conceptualising failure: social shaping meets IS research.,2002,11,EJIS,4,db/journals/ejis/ejis11.html#WilsonH02,https://doi.org/10.1057/palgrave.ejis.3000437 +George Mangalaraj,Acceptance of software process innovations - the case of extreme programming.,2009,18,EJIS,4,db/journals/ejis/ejis18.html#MangalarajMN09,https://doi.org/10.1057/ejis.2009.23 +Eduardo Redondo,Combining the rational and relational perspectives of electronic trading.,2009,18,EJIS,1,db/journals/ejis/ejis18.html#RedondoDW09,https://doi.org/10.1057/ejis.2008.61 +Christopher J. Atkinson,The 'Soft Information Systems and Technologies Methodology' (SISTeM): an actor network contingency approach to integrated development.,2000,9,EJIS,2,db/journals/ejis/ejis9.html#Atkinson00,https://doi.org/10.1057/palgrave.ejis.3000359 +Jan Ljungberg,Open source movements as a model for organising.,2000,9,EJIS,4,db/journals/ejis/ejis9.html#Ljungberg00,https://doi.org/10.1057/palgrave.ejis.3000373 +Douglas A. Battleson,Achieving dynamic capabilities with cloud computing: an empirical investigation.,2016,25,EJIS,3,db/journals/ejis/ejis25.html#BattlesonWKRR16,https://doi.org/10.1057/ejis.2015.12 +Hans van der Heijden,Editorial.,2008,17,EJIS,6,db/journals/ejis/ejis17.html#Heijden08a,https://doi.org/10.1057/ejis.2008.58 +John Edwards,Editorial.,2001,10,EJIS,2,db/journals/ejis/ejis10.html#Edwards01,https://doi.org/10.1057/palgrave.ejis.3000400 +Ray J. Paul,What is published in our journals cannot change unless we do.,2009,18,EJIS,3,db/journals/ejis/ejis18.html#Paul09,https://doi.org/10.1057/ejis.2009.21 +Gholamreza Torkzadeh,Usage and impact of technology enabled job learning.,2011,20,EJIS,1,db/journals/ejis/ejis20.html#TorkzadehCH11,https://doi.org/10.1057/ejis.2010.46 +Carlos Flavián Blanco,Effects of visual and textual information in online product presentations: looking for the best combination in website design.,2010,19,EJIS,6,db/journals/ejis/ejis19.html#BlancoSS10,https://doi.org/10.1057/ejis.2010.42 +Marjolein van Offenbeek,Towards integrating acceptance and resistance research: evidence from a telecare case study.,2013,22,EJIS,4,db/journals/ejis/ejis22.html#OffenbeekBS13,https://doi.org/10.1057/ejis.2012.29 +Richard Baskerville,Introduction to the Opinion Paper: Bryant's 'The future of information systems'.,2008,17,EJIS,6,db/journals/ejis/ejis17.html#Baskerville08e,https://doi.org/10.1057/ejis.2008.54 +Tally Hatzakis,Towards the development of a social capital approach to evaluating change management interventions.,2005,14,EJIS,1,db/journals/ejis/ejis14.html#HatzakisLMM05,https://doi.org/10.1057/palgrave.ejis.3000522 +Ojelanki K. Ngwenyama,Using organizational influence processes to overcome IS implementation barriers: lessons from a longitudinal case study of SPI implementation.,2014,23,EJIS,2,db/journals/ejis/ejis23.html#NgwenyamaN14,https://doi.org/10.1057/ejis.2012.56 +Nancy Pouloudi,A profile of information systems research in the Mediterranean region.,2012,21,EJIS,4,db/journals/ejis/ejis21.html#PouloudiPP12,https://doi.org/10.1057/ejis.2012.31 +Saonee Sarker,The impact of the nature of globally distributed work arrangement on work-life conflict and valence: the Indian GSD professionals' perspective.,2010,19,EJIS,2,db/journals/ejis/ejis19.html#SarkerSJ10,https://doi.org/10.1057/ejis.2010.20 +Yang Chen 0006,IT capability and organizational performance: the roles of business process agility and environmental factors.,2014,23,EJIS,3,db/journals/ejis/ejis23.html#ChenWNJWC14,https://doi.org/10.1057/ejis.2013.4 +Tamara Dinev,Privacy calculus model in e-commerce - a study of Italy and the United States.,2006,15,EJIS,4,db/journals/ejis/ejis15.html#DinevBHRSC06,https://doi.org/10.1057/palgrave.ejis.3000590 +Christos D. Melas,An empirical investigation of Technology Readiness among medical staff based in Greek hospitals.,2014,23,EJIS,6,db/journals/ejis/ejis23.html#MelasZDM14,https://doi.org/10.1057/ejis.2013.23 +Alexander Dreiling,Model-based software configuration: patterns and languages.,2006,15,EJIS,6,db/journals/ejis/ejis15.html#DreilingRAHS06,https://doi.org/10.1057/palgrave.ejis.3000645 +Hubert österle,Memorandum on design-oriented information systems research.,2011,20,EJIS,1,db/journals/ejis/ejis20.html#OsterleBFHKKLMOS11,https://doi.org/10.1057/ejis.2010.55 +Robert F. Otondo,Managerial problem-solving in the adoption of Radio Frequency Identification Technologies.,2009,18,EJIS,6,db/journals/ejis/ejis18.html#OtondoPPSS09,https://doi.org/10.1057/ejis.2009.39 +Richard Baskerville,A response to the design-oriented information systems research memorandum.,2011,20,EJIS,1,db/journals/ejis/ejis20.html#BaskervilleLSS11,https://doi.org/10.1057/ejis.2010.56 +Anssi öörni,Consumer search in electronic markets: an experimental analysis of travel services.,2003,12,EJIS,1,db/journals/ejis/ejis12.html#Oorni03,https://doi.org/10.1057/palgrave.ejis.3000450 +C. James Bacon,Process improvement and organisational learning: The role of collaboration technologies.,2000,9,EJIS,2,db/journals/ejis/ejis9.html#Bacon00,https://doi.org/10.1057/palgrave.ejis.3000349 +Gove Allen,How well do shopbots represent online markets? A study of shopbots' vendor coverage strategy.,2010,19,EJIS,3,db/journals/ejis/ejis19.html#AllenW10,https://doi.org/10.1057/ejis.2010.6 +Kevin Zhu,Electronic business adoption by European firms: a cross-country assessment of the facilitators and inhibitors.,2003,12,EJIS,4,db/journals/ejis/ejis12.html#ZhuKX03,https://doi.org/10.1057/palgrave.ejis.3000475 +Bob O'Keefe,Editorial.,2002,11,EJIS,2,db/journals/ejis/ejis11.html#OKeefe02,https://doi.org/10.1057/palgrave.ejis.3000427 +Ole Hanseth,Flexible generification: ICT standardization strategies and service innovation in health care.,2015,24,EJIS,6,db/journals/ejis/ejis24.html#HansethB15,https://doi.org/10.1057/ejis.2015.1 +Greta L. Polites,Conceptualizing models using multidimensional constructs: a review and guidelines for their use.,2012,21,EJIS,1,db/journals/ejis/ejis21.html#PolitesRT12,https://doi.org/10.1057/ejis.2011.10 +Boontaree Kositanurit,An exploration of factors that impact individual performance in an ERP environment: an analysis using multiple analytical techniques.,2006,15,EJIS,6,db/journals/ejis/ejis15.html#KositanuritNO06,https://doi.org/10.1057/palgrave.ejis.3000654 +Richard Heeks,Understanding e-Government project trajectories from an actor-network perspective.,2007,16,EJIS,2,db/journals/ejis/ejis16.html#HeeksS07,https://doi.org/10.1057/palgrave.ejis.3000676 +Ray Hackney,Towards an e-Government efficiency agenda: the impact of information and communication behaviour on e-Reverse auctions in public sector procurement.,2007,16,EJIS,2,db/journals/ejis/ejis16.html#HackneyJL07,https://doi.org/10.1057/palgrave.ejis.3000677 +Frank Land,Measuring Information Technology Investment Payoff: a Contemporary Approach.,2001,10,EJIS,1,db/journals/ejis/ejis10.html#Land01,https://doi.org/10.1057/palgrave.ejis.3000383 +Brian W. Hollocks,Review: Qualitative Research in IS: Issues and Trends.,2002,11,EJIS,1,db/journals/ejis/ejis11.html#Hollocks02,https://doi.org/10.1057/palgrave.ejis.3000404 +JingHua Xiao,Inter-firm IT governance in power-imbalanced buyer-supplier dyads: exploring how it works and why it lasts.,2013,22,EJIS,5,db/journals/ejis/ejis22.html#XiaoXH13,https://doi.org/10.1057/ejis.2012.40 +Aurélie Leclercq-Vandelannoitte,Mobile information systems and organisational control: beyond the panopticon metaphor?,2014,23,EJIS,5,db/journals/ejis/ejis23.html#Leclercq-VandelannoitteIK14,https://doi.org/10.1057/ejis.2014.11 +Chee Wei Phang,Customers' preference of online store visit strategies: an investigation of demographic variables.,2010,19,EJIS,3,db/journals/ejis/ejis19.html#PhangKRR10,https://doi.org/10.1057/ejis.2010.32 +Jeremy Fisher,Regulation as a barrier to electronic commerce in Europe: the case of the European fund management industry.,2004,13,EJIS,4,db/journals/ejis/ejis13.html#FisherH04,https://doi.org/10.1057/palgrave.ejis.3000510 +Diederik W. van Liere,Guest Editorial: Theme of the Special Issue - IS in interorganizational networks,2010,19,EJIS,4,db/journals/ejis/ejis19.html#LiereVKH10,https://doi.org/10.1057/ejis.2010.29 +Ray J. Paul,Time for a change.,2007,16,EJIS,6,db/journals/ejis/ejis16.html#Paul07d,https://doi.org/10.1057/palgrave.ejis.3000722 +Rik Maes,What do Claudio Ciborra and Sandro Botticelli have in common? On the renaissance of la Primavera.,2005,14,EJIS,5,db/journals/ejis/ejis14.html#MaesH05,https://doi.org/10.1057/palgrave.ejis.3000555 +Vijay Kasi,The post mortem paradox: a Delphi study of IT specialist perceptions.,2008,17,EJIS,1,db/journals/ejis/ejis17.html#KasiKMP08,https://doi.org/10.1057/palgrave.ejis.3000727 +Jan Recker,The ontological deficiencies of process modeling in practice.,2010,19,EJIS,5,db/journals/ejis/ejis19.html#ReckerIRG10,https://doi.org/10.1057/ejis.2010.38 +Jan Recker,Empirical investigation of the usefulness of Gateway constructs in process models.,2013,22,EJIS,6,db/journals/ejis/ejis22.html#Recker13,https://doi.org/10.1057/ejis.2012.50 +Xiang Fang,Coping with rapid information technology change in different national cultures.,2011,20,EJIS,6,db/journals/ejis/ejis20.html#FangBL11a,https://doi.org/10.1057/ejis.2011.45 +Galal H. Galal-Edeen,Requirements engineering: A good practice.,2000,9,EJIS,2,db/journals/ejis/ejis9.html#Galal-Edeen00,https://doi.org/10.1057/palgrave.ejis.3000347 +Zhenyu Huang,A comprehensive analysis of U.S. counties' e-Government portals: development status and functionalities.,2007,16,EJIS,2,db/journals/ejis/ejis16.html#Huang07,https://doi.org/10.1057/palgrave.ejis.3000675 +Zahir Irani,Electronic transformation of government in the U.K.: a research agenda.,2007,16,EJIS,4,db/journals/ejis/ejis16.html#IraniEJ07,https://doi.org/10.1057/palgrave.ejis.3000698 +Indranil Bose,Managing RFID projects in organizations.,2009,18,EJIS,6,db/journals/ejis/ejis18.html#BoseNTS09,https://doi.org/10.1057/ejis.2009.43 +Ian Colville,Future organizational design: the scope for IT-based enterprise.,2000,9,EJIS,3,db/journals/ejis/ejis9.html#Colville00,https://doi.org/10.1057/palgrave.ejis.3000354 +Wynne W. Chin,Some considerations for articles introducing new and/or novel quantitative methods to IS researchers.,2012,21,EJIS,1,db/journals/ejis/ejis21.html#ChinJR12,https://doi.org/10.1057/ejis.2011.46 +Troy J. Strader,Perceived network externalities and communication technology acceptance.,2007,16,EJIS,1,db/journals/ejis/ejis16.html#StraderRH07,https://doi.org/10.1057/palgrave.ejis.3000657 +Thomas Kern,Exploring relationships in information technology outsourcing: the interaction approach.,2002,11,EJIS,1,db/journals/ejis/ejis11.html#KernW02,https://doi.org/10.1057/palgrave.ejis.3000415 +Robert D. Galliers,Vive les differences? Developing a profile of European information systems research as a basis for international comparisons.,2007,16,EJIS,1,db/journals/ejis/ejis16.html#GalliersW07,https://doi.org/10.1057/palgrave.ejis.3000662 +Nicholas Evangelopoulos,Latent Semantic Analysis: five methodological recommendations.,2012,21,EJIS,1,db/journals/ejis/ejis21.html#EvangelopoulosZP12,https://doi.org/10.1057/ejis.2010.61 +Husnayati Hussin,IT alignment in small firms.,2002,11,EJIS,2,db/journals/ejis/ejis11.html#HussinKC02,https://doi.org/10.1057/palgrave.ejis.3000422 +David Graham Wastell,Managing as designing: 'opportunity knocks' for the IS field?,2010,19,EJIS,4,db/journals/ejis/ejis19.html#Wastell10,https://doi.org/10.1057/ejis.2010.31 +Luca Giustiniano,The heresy and the sport of information systems.,2005,14,EJIS,5,db/journals/ejis/ejis14.html#Giustiniano05,https://doi.org/10.1057/palgrave.ejis.3000562 +Cameron Lawrence,From Milan to Mann Gulch: reflections on the intellectual contributions of Professor Claudio Ciborra.,2005,14,EJIS,5,db/journals/ejis/ejis14.html#Lawrence05,https://doi.org/10.1057/palgrave.ejis.3000567 +Paul Benjamin Lowry,Why security and privacy research lies at the centre of the information systems (IS) artefact: proposing a bold research agenda.,2017,26,EJIS,6,db/journals/ejis/ejis26.html#LowryDW17,https://doi.org/10.1057/s41303-017-0066-x +Ryan T. Wright,The role of context in IT assimilation: A multi-method study of a SaaS platform in the US nonprofit sector.,2017,26,EJIS,5,db/journals/ejis/ejis26.html#WrightRW17,https://doi.org/10.1057/s41303-017-0053-2 +Wing Lam,Investigating success factors in enterprise application integration: a case-driven analysis.,2005,14,EJIS,2,db/journals/ejis/ejis14.html#Lam05,https://doi.org/10.1057/palgrave.ejis.3000530 +Yurong Yao,Remote electronic voting systems: an exploration of voters' perceptions and intention to use.,2007,16,EJIS,2,db/journals/ejis/ejis16.html#YaoM07,https://doi.org/10.1057/palgrave.ejis.3000672 +Yasmin Merali,The role of boundaries in knowledge processes.,2002,11,EJIS,1,db/journals/ejis/ejis11.html#Merali02,https://doi.org/10.1057/palgrave.ejis.3000413 +Theerasak Thanasankit,Requirements engineering - exploring the influence of power and Thai values.,2002,11,EJIS,2,db/journals/ejis/ejis11.html#Thanasankit02,https://doi.org/10.1057/palgrave.ejis.3000423 +Susan A. Brown,Do I really have to? User acceptance of mandated technology.,2002,11,EJIS,4,db/journals/ejis/ejis11.html#BrownMMB02,https://doi.org/10.1057/palgrave.ejis.3000438 +Tuure Tuunanen,The effect of culture on requirements: a value-based view of prioritization.,2015,24,EJIS,3,db/journals/ejis/ejis24.html#TuunanenK15,https://doi.org/10.1057/ejis.2014.29 +Eric Tze Kuan Lim,Managing user acceptance towards enterprise resource planning (ERP) systems - understanding the dissonance between user expectations and managerial policies.,2005,14,EJIS,2,db/journals/ejis/ejis14.html#LimPT05,https://doi.org/10.1057/palgrave.ejis.3000531 +Stig Nordheim,Implementing enterprise content management: from evolution through strategy to contradictions out-of-the-box.,2006,15,EJIS,6,db/journals/ejis/ejis15.html#NordheimP06,https://doi.org/10.1057/palgrave.ejis.3000647 +Karl E. Weick,The role of imagination in the organizing of knowledge.,2006,15,EJIS,5,db/journals/ejis/ejis15.html#Weick06,https://doi.org/10.1057/palgrave.ejis.3000634 +Guy Paré,Contextualizing the twin concepts of systematicity and transparency in information systems literature reviews.,2016,25,EJIS,6,db/journals/ejis/ejis25.html#PareTJK16,https://doi.org/10.1057/s41303-016-0020-3 +Michelle L. Kaarst-Brown,Once upon a time: Crafting allegories to analyze and share the cultural complexity of strategic alignment.,2017,26,EJIS,3,db/journals/ejis/ejis26.html#Kaarst-Brown17,https://doi.org/10.1057/s41303-017-0042-5 +Ned Kock,Team adaptation to electronic communication media: evidence of compensatory adaptation in new product development teams.,2006,15,EJIS,3,db/journals/ejis/ejis15.html#KockLDA06,https://doi.org/10.1057/palgrave.ejis.3000612 +Zhen Shao,Effectiveness of top management support in enterprise systems success: a contingency perspective of fit between leadership style and system life-cycle.,2016,25,EJIS,2,db/journals/ejis/ejis25.html#ShaoFH16,https://doi.org/10.1057/ejis.2015.6 +Carol Hsu,A legitimacy challenge of a cross-cultural interorganizational information system.,2015,24,EJIS,3,db/journals/ejis/ejis24.html#HsuLW15,https://doi.org/10.1057/ejis.2014.33 +Philip Seltsikas,Expectations and outcomes in electronic identity management: the role of trust and public value.,2010,19,EJIS,1,db/journals/ejis/ejis19.html#SeltsikasO10,https://doi.org/10.1057/ejis.2009.51 +Jan Recker,Continued use of process modeling grammars: the impact of individual difference factors.,2010,19,EJIS,1,db/journals/ejis/ejis19.html#Recker10,https://doi.org/10.1057/ejis.2010.5 +Ting Li,Information capability and value creation strategy: advancing revenue management through mobile ticketing technologies.,2009,18,EJIS,1,db/journals/ejis/ejis18.html#LiHV09,https://doi.org/10.1057/ejis.2009.1 +H. Lou,Perceived critical mass effect on groupware acceptance.,2000,9,EJIS,2,db/journals/ejis/ejis9.html#LouLS00,https://doi.org/10.1057/palgrave.ejis.3000358 +Keith S. Horton,The shaping of I.T. trajectories: evidence from the U.K. public sector.,2006,15,EJIS,2,db/journals/ejis/ejis15.html#HortonW06,https://doi.org/10.1057/palgrave.ejis.3000611 +Kalle Lyytinen,Inter-organizational information systems adoption - a configuration analysis approach.,2011,20,EJIS,5,db/journals/ejis/ejis20.html#LyytinenD11,https://doi.org/10.1057/ejis.2010.71 +Tao Hu,The effect of online social value on satisfaction and continued use of social media.,2015,24,EJIS,4,db/journals/ejis/ejis24.html#HuKP15,https://doi.org/10.1057/ejis.2014.22 +Mark O. Lewis,Scalable growth in IT-enabled service provisioning: a sensemaking perspective.,2011,20,EJIS,3,db/journals/ejis/ejis20.html#LewisMR11,https://doi.org/10.1057/ejis.2011.5 +William L. Kuechler Jr.,On theory development in design science research: anatomy of a research project.,2008,17,EJIS,5,db/journals/ejis/ejis17.html#KuechlerV08,https://doi.org/10.1057/ejis.2008.40 +Anastasia Utesheva,Identity metamorphoses in digital disruption: a relational theory of identity.,2016,25,EJIS,4,db/journals/ejis/ejis25.html#UteshevaSC16,https://doi.org/10.1057/ejis.2015.19 +Paul Wernick,Can Thomas Kuhn's paradigms help us understand software engineering?,2004,13,EJIS,3,db/journals/ejis/ejis13.html#WernickH04,https://doi.org/10.1057/palgrave.ejis.3000501 +Henk Akkermans,Vicious and virtuous cycles in ERP implementation: a case study of interrelations between critical success factors.,2002,11,EJIS,1,db/journals/ejis/ejis11.html#AkkermansH02,https://doi.org/10.1057/palgrave.ejis.3000418 +Christina Ling-Hsing Chang,Information system personnel career anchor changes leading to career changes.,2011,20,EJIS,1,db/journals/ejis/ejis20.html#ChangCKJ11,https://doi.org/10.1057/ejis.2010.54 +Anol Bhattacherjee,Physicians' resistance toward healthcare information technology: a theoretical model and empirical test.,2007,16,EJIS,6,db/journals/ejis/ejis16.html#BhattacherjeeH07,https://doi.org/10.1057/palgrave.ejis.3000717 +Geoff Walsham,Doing interpretive research.,2006,15,EJIS,3,db/journals/ejis/ejis15.html#Walsham06,https://doi.org/10.1057/palgrave.ejis.3000589 +Nilesh Saraf,IS integration and knowledge sharing in multi-unit firms: the winner's curse.,2013,22,EJIS,6,db/journals/ejis/ejis22.html#SarafLS13,https://doi.org/10.1057/ejis.2012.37 +Greg Filbeck,Shareholder reaction to firm investments in the capability maturity model: an event study.,2013,22,EJIS,2,db/journals/ejis/ejis22.html#FilbeckSZ13,https://doi.org/10.1057/ejis.2012.54 +Regina Connolly,Government website service quality: a study of the Irish revenue online service.,2010,19,EJIS,6,db/journals/ejis/ejis19.html#ConnollyBK10,https://doi.org/10.1057/ejis.2010.45 +José-Rodrigo Córdoba,Beyond organisational agendas: using boundary critique to facilitate the inclusion of societal concerns in information systems planning.,2008,17,EJIS,2,db/journals/ejis/ejis17.html#CordobaM08,https://doi.org/10.1057/ejis.2008.4 +Gwanhoo Lee,The ability of information systems development project teams to respond to business and technology changes: a study of flexibility measures.,2005,14,EJIS,1,db/journals/ejis/ejis14.html#LeeX05,https://doi.org/10.1057/palgrave.ejis.3000523 +Pär J. ågerfalk,Getting pragmatic.,2010,19,EJIS,3,db/journals/ejis/ejis19.html#Agerfalk10,https://doi.org/10.1057/ejis.2010.22 +Alison E. Adam,Being an 'it' in IT: gendered identities in IT work.,2006,15,EJIS,4,db/journals/ejis/ejis15.html#AdamGKMRT06,https://doi.org/10.1057/palgrave.ejis.3000631 +Liwei Chen,Cross-national differences in individual knowledge-seeking patterns: a climato-economic contextualization.,2015,24,EJIS,3,db/journals/ejis/ejis24.html#ChenHVH15,https://doi.org/10.1057/ejis.2014.26 +R. Pagano,Knowledge Management and Business Model Innovation.,2002,11,EJIS,4,db/journals/ejis/ejis11.html#Pagano02,https://doi.org/10.1057/palgrave.ejis.3000414 +Göran Goldkuhl,Pragmatism vs interpretivism in qualitative information systems research.,2012,21,EJIS,2,db/journals/ejis/ejis21.html#Goldkuhl12,https://doi.org/10.1057/ejis.2011.54 +Ray J. Paul,Changing issues: sixes and specials.,2006,15,EJIS,1,db/journals/ejis/ejis15.html#Paul06,https://doi.org/10.1057/palgrave.ejis.3000609 +Mutaz M. Al-Debei,Developing a unified framework of the business model concept.,2010,19,EJIS,3,db/journals/ejis/ejis19.html#Al-DebeiA10,https://doi.org/10.1057/ejis.2010.21 +Björn Niehaves,The inner and the outer model in explanatory design theory: the case of designing electronic feedback systems.,2016,25,EJIS,4,db/journals/ejis/ejis25.html#NiehavesO16,https://doi.org/10.1057/ejis.2016.3 +Susan A. Brown,Handle mergers and acquisitions with care: the fragility of trust between the IT-service provider and end-users.,2016,25,EJIS,2,db/journals/ejis/ejis25.html#BrownMW16,https://doi.org/10.1057/ejis.2015.10 +John D'Arcy,A review and analysis of deterrence theory in the IS security literature: making sense of the disparate findings.,2011,20,EJIS,6,db/journals/ejis/ejis20.html#DArcyH11,https://doi.org/10.1057/ejis.2011.23 +Michael Tyworth,Organizational identity and information systems: how organizational ICT reflect who an organization is.,2014,23,EJIS,1,db/journals/ejis/ejis23.html#Tyworth14,https://doi.org/10.1057/ejis.2013.32 +Sarah S. Khan,Effects of time-inconsistent preferences on information technology infrastructure investments with growth options.,2013,22,EJIS,2,db/journals/ejis/ejis22.html#KhanKK13,https://doi.org/10.1057/ejis.2012.4 +Tony Cornford,Do penguins eat scallops?,2005,14,EJIS,5,db/journals/ejis/ejis14.html#CornfordCS05,https://doi.org/10.1057/palgrave.ejis.3000583 +Dewi Rooslani Tojib,User satisfaction with business-to-employee portals: conceptualization and scale development.,2008,17,EJIS,6,db/journals/ejis/ejis17.html#TojibSS08,https://doi.org/10.1057/ejis.2008.55 +Sangjae Lee,Business use of Internet-based information systems: the case of Korea.,2003,12,EJIS,3,db/journals/ejis/ejis12.html#Lee03,https://doi.org/10.1057/palgrave.ejis.3000460 +Dimitris Boucas,A brief glimpse of Claudio.,2005,14,EJIS,5,db/journals/ejis/ejis14.html#Boucas05,https://doi.org/10.1057/palgrave.ejis.3000568 +Knut Grahlmann,Reviewing Enterprise Content Management: a functional framework.,2012,21,EJIS,3,db/journals/ejis/ejis21.html#GrahlmannHHBA12,https://doi.org/10.1057/ejis.2011.41 +Melissa Cole,The potential of hermeneutics in information systems research.,2007,16,EJIS,6,db/journals/ejis/ejis16.html#ColeA07,https://doi.org/10.1057/palgrave.ejis.3000725 +J.-M. Choe,The organisational learning effects of management accounting information under advanced manufacturing technology.,2002,11,EJIS,2,db/journals/ejis/ejis11.html#Choe02,https://doi.org/10.1057/palgrave.ejis.3000424 +Pär J. ågerfalk,Action-oriented conceptual modelling.,2004,13,EJIS,1,db/journals/ejis/ejis13.html#AgerfalkE04,https://doi.org/10.1057/palgrave.ejis.3000486 +Thomas F. Stafford,Online tax payment systems as an emergent aspect of governmental transformation.,2011,20,EJIS,3,db/journals/ejis/ejis20.html#StaffordT11,https://doi.org/10.1057/ejis.2010.63 +Tibert Verhagen,Perceived risk and trust associated with purchasing at electronic marketplaces.,2006,15,EJIS,6,db/journals/ejis/ejis15.html#VerhagenMT06,https://doi.org/10.1057/palgrave.ejis.3000644 +Astrid Dickinger,The role of perceived enjoyment and social norm in the adoption of technology with network externalities.,2008,17,EJIS,1,db/journals/ejis/ejis17.html#DickingerAM08,https://doi.org/10.1057/palgrave.ejis.3000726 +Margaret F. Reid,Perspectives on challenges facing women in IS: the cognitive gender gap.,2010,19,EJIS,5,db/journals/ejis/ejis19.html#ReidAAR10,https://doi.org/10.1057/ejis.2010.30 +Philip Powell,Time to stop researching the important things?,2008,17,EJIS,2,db/journals/ejis/ejis17.html#PowellW08,https://doi.org/10.1057/ejis.2008.11 +Jennifer A. Howard-Grenville,The incompatibility of knowledge regimes: consequences of the material world for cross-domain work.,2006,15,EJIS,5,db/journals/ejis/ejis15.html#Howard-GrenvilleC06,https://doi.org/10.1057/palgrave.ejis.3000635 +Catherine A. Middleton,When mobile is the norm: researching mobile information systems and mobility as post-adoption phenomena.,2014,23,EJIS,5,db/journals/ejis/ejis23.html#MiddletonST14,https://doi.org/10.1057/ejis.2014.21 +Derrick J. Neufeld,Charismatic leadership and user acceptance of information technology.,2007,16,EJIS,4,db/journals/ejis/ejis16.html#NeufeldDH07,https://doi.org/10.1057/palgrave.ejis.3000682 +Helena Karsten,Crossing boundaries and conscripting participation: representing and integrating knowledge in a paper machinery project.,2001,10,EJIS,2,db/journals/ejis/ejis10.html#KarstenLHK01,https://doi.org/10.1057/palgrave.ejis.3000395 +Mei-Lien Young,To share or not to share: a critical research perspective on knowledge management systems.,2012,21,EJIS,5,db/journals/ejis/ejis21.html#YoungKM12,https://doi.org/10.1057/ejis.2012.10 +Ann-Frances Cameron,Four common multicommunicating misconceptions.,2016,25,EJIS,5,db/journals/ejis/ejis25.html#CameronWBG16,https://doi.org/10.1057/ejis.2016.8 +Javier Busquets,Discovery paths: exploring emergence and IT evolutionary design in cross-border M and As. Analysing Grupo Santander's acquisition of Abbey (2004-2009).,2015,24,EJIS,2,db/journals/ejis/ejis24.html#Busquets15a,https://doi.org/10.1057/ejis.2015.3 +Rikard Lindgren,Rethinking competence systems for knowledge-based organizations.,2003,12,EJIS,1,db/journals/ejis/ejis12.html#LindgrenSL03,https://doi.org/10.1057/palgrave.ejis.3000442 +James Love,Crowdsourcing of information systems research.,2017,26,EJIS,3,db/journals/ejis/ejis26.html#LoveH17,https://doi.org/10.1057/s41303-017-0036-3 +Michael J. Gallivan,Analyzing IS research productivity: an inclusive approach to global IS scholarship.,2007,16,EJIS,1,db/journals/ejis/ejis16.html#GallivanB07,https://doi.org/10.1057/palgrave.ejis.3000667 +A. Brown,Book review/viewpoint on Ian Angell's book - 'The New Barbarian Manifesto: How to Survive in the Information Age'.,2000,9,EJIS,3,db/journals/ejis/ejis9.html#Brown00,https://doi.org/10.1057/palgrave.ejis.3000371 +Pär J. ågerfalk,Insufficient theoretical contribution: a conclusive rationale for rejection?,2014,23,EJIS,6,db/journals/ejis/ejis23.html#Agerfalk14,https://doi.org/10.1057/ejis.2014.35 +Hanifa Shah,ALTAR in action: knowledge management.,2007,16,EJIS,6,db/journals/ejis/ejis16.html#ShahEW07a,https://doi.org/10.1057/palgrave.ejis.3000721 +Steven Alter,Possibilities for cross-fertilization between interpretive approaches and other methods for analyzing information systems.,2004,13,EJIS,3,db/journals/ejis/ejis13.html#Alter04,https://doi.org/10.1057/palgrave.ejis.3000499 +Dov Te'eni,What's communication got to do with IT?,2012,21,EJIS,4,db/journals/ejis/ejis21.html#Teeni12,https://doi.org/10.1057/ejis.2012.34 +Isabelle Walsh,Using quantitative data in mixed-design grounded theory studies: an enhanced path to formal grounded theory in information systems.,2015,24,EJIS,5,db/journals/ejis/ejis24.html#Walsh15,https://doi.org/10.1057/ejis.2014.23 +Hans van der Heijden,Editorial.,2008,17,EJIS,2,db/journals/ejis/ejis17.html#Heijden08,https://doi.org/10.1057/ejis.2008.6 +Carlos E. de Souza,An adaptive control algorithm for linear systems having unknown time delay.,1988,24,Automatica,3,db/journals/automatica/automatica24.html#SouzaGMP88,https://doi.org/10.1016/0005-1098(88)90074-X +Xiao Lu,Kalman filtering for multiple time-delay systems.,2005,41,Automatica,8,db/journals/automatica/automatica41.html#LuZWT05,https://doi.org/10.1016/j.automatica.2005.03.018 +T. Irisa,A novel approach on a parameter self-tuning method in an ac servo system.,1986,22,Automatica,3,db/journals/automatica/automatica22.html#IrisaTUSM86,https://doi.org/10.1016/0005-1098(86)90027-0 +Rodney A. Kennedy,Linear system theory : Wilson J. Rugh.,1994,30,Automatica,11,db/journals/automatica/automatica30.html#Kennedy94,https://doi.org/10.1016/0005-1098(94)90090-6 +Sigurd Skogestad,Robust performance of decentralized control systems by independent designs.,1989,25,Automatica,1,db/journals/automatica/automatica25.html#SkogestadM89,https://doi.org/10.1016/0005-1098(89)90127-1 +F. Viel,Stability of polymerization reactors using I/O linearization and a high-gain observer.,1995,31,Automatica,7,db/journals/automatica/automatica31.html#VielBG95,https://doi.org/10.1016/0005-1098(95)00009-L +T. Ph. Proychev,Transformation of nonlinear systems in observer canonical form with reduced dependency on derivatives of the input.,1993,29,Automatica,2,db/journals/automatica/automatica29.html#ProychevM93,https://doi.org/10.1016/0005-1098(93)90145-J +Mohammad Karimadini,Guaranteed global performance through local coordinations.,2011,47,Automatica,5,db/journals/automatica/automatica47.html#KarimadiniL11,https://doi.org/10.1016/j.automatica.2011.01.078 +Ignacio Rubio Scola,Optimizing Kalman optimal observer for state affine systems by input selection.,2018,93,Automatica,,db/journals/automatica/automatica93.html#ScolaBG18,https://doi.org/10.1016/j.automatica.2018.03.060 +Ching-An Lin,Block-decoupling linear multivariable systems: necessary and sufficient conditions.,1998,34,Automatica,2,db/journals/automatica/automatica34.html#LinW98,https://doi.org/10.1016/S0005-1098(97)00180-5 +Xiefu Jiang,Delay-dependent robust stability for uncertain linear systems with interval time-varying delay.,2006,42,Automatica,6,db/journals/automatica/automatica42.html#JiangH06,https://doi.org/10.1016/j.automatica.2006.02.019 +Guy Lebret,Proportional and proportional-derivative canonical forms for descriptor systems with outputs.,1994,30,Automatica,5,db/journals/automatica/automatica30.html#LebretL94,https://doi.org/10.1016/0005-1098(94)90173-2 +Hiroaki Mukaidani,New results for near-optimal control of linear multiparameter singularly perturbed systems.,2003,39,Automatica,12,db/journals/automatica/automatica39.html#MukaidaniXM03,https://doi.org/10.1016/S0005-1098(03)00248-6 +Sorin C. Bengea,Optimal control of switching systems.,2005,41,Automatica,1,db/journals/automatica/automatica41.html#BengeaD05,https://doi.org/10.1016/j.automatica.2004.08.003 +Petar V. Kokotovic,Singular perturbation and iterative separation of time scales.,1980,16,Automatica,1,db/journals/automatica/automatica16.html#KokotovicAWC80,https://doi.org/10.1016/0005-1098(80)90083-7 +Santosh Devasia,Iterative learning control with time-partitioned update for collaborative output tracking.,2016,69,Automatica,,db/journals/automatica/automatica69.html#Devasia16,https://doi.org/10.1016/j.automatica.2016.02.027 +G. Zhu,A Quasi-Tracking Approach for Finite-Time Control of a Mass-Beam System.,1998,34,Automatica,7,db/journals/automatica/automatica34.html#ZhuG98,https://doi.org/10.1016/S0005-1098(98)00031-4 +Jan Lunze,Stability analysis of large-scale systems composed of strongly coupled similar subsystems.,1989,25,Automatica,4,db/journals/automatica/automatica25.html#Lunze89,https://doi.org/10.1016/0005-1098(89)90098-8 +Taha Boukhobza,Generic uniform observability analysis for bilinear systems.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#Boukhobza08,https://doi.org/10.1016/j.automatica.2008.05.012 +Dietmar Bauer,Some facts about the choice of the weighting matrices in Larimore type of subspace algorithms.,2002,38,Automatica,5,db/journals/automatica/automatica38.html#BauerL02,https://doi.org/10.1016/S0005-1098(01)00261-8 +Zhijiang Wang,Adaptive interval model control of weld pool surface in pulsed gas metal arc welding.,2012,48,Automatica,1,db/journals/automatica/automatica48.html#WangZW12,https://doi.org/10.1016/j.automatica.2011.09.052 +S. O. Reza Moheimani,Spatial balanced model reduction for flexible structures.,1999,35,Automatica,2,db/journals/automatica/automatica35.html#MoheimaniPP99,https://doi.org/10.1016/S0005-1098(98)00151-4 +Abbas K. Zaidi,Validation and verification of decision making rules.,1997,33,Automatica,2,db/journals/automatica/automatica33.html#ZaidiL97,https://doi.org/10.1016/S0005-1098(96)00165-3 +Kun Liu,Stability analysis of systems with time-varying delays via the second-order Bessel-Legendre inequality.,2017,76,Automatica,,db/journals/automatica/automatica76.html#LiuSX17,https://doi.org/10.1016/j.automatica.2016.11.001 +Frédéric Mazenc,New control design for bounded backstepping under input delays.,2016,66,Automatica,,db/journals/automatica/automatica66.html#MazencM16,https://doi.org/10.1016/j.automatica.2015.12.012 +Myoung Soo Park,Inversion-free design algorithms for multivariable quantitative feedback theory: An application to robust control of a CD-ROM.,1997,33,Automatica,5,db/journals/automatica/automatica33.html#ParkCS97,https://doi.org/10.1016/S0005-1098(96)00221-X +Alberto Leva,Set point tracking optimisation by causal nonparametric modelling.,2007,43,Automatica,11,db/journals/automatica/automatica43.html#LevaB07,https://doi.org/10.1016/j.automatica.2007.04.002 +Roberto Tempo,Two new editors.,2015,51,Automatica,,db/journals/automatica/automatica51.html#Tempo15a,https://doi.org/10.1016/j.automatica.2014.10.014 +Liguo Zhang,Stochastic stability of Markov jump hyperbolic systems with application to traffic flow control.,2017,86,Automatica,,db/journals/automatica/automatica86.html#ZhangP17a,https://doi.org/10.1016/j.automatica.2017.08.007 +Carine Jauberthie,An optimal input design procedure.,2006,42,Automatica,5,db/journals/automatica/automatica42.html#JauberthieDCJ06,https://doi.org/10.1016/j.automatica.2006.01.003 +Markus Schöberl,On an intrinsic formulation of time-variant Port Hamiltonian systems.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#SchoberlS12,https://doi.org/10.1016/j.automatica.2012.06.014 +Magnus Evestedt,Stationary behavior of an anti-windup scheme for recursive parameter estimation under lack of excitation.,2006,42,Automatica,1,db/journals/automatica/automatica42.html#EvestedtM06,https://doi.org/10.1016/j.automatica.2005.08.015 +Joaquín Carrasco,Factorization of multipliers in passivity and IQC analysis.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#CarrascoHL12,https://doi.org/10.1016/j.automatica.2012.02.035 +Chong Lin,Observer-based Hinfinity fuzzy control design for T-S fuzzy systems with state delays.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#LinWLHC08,https://doi.org/10.1016/j.automatica.2007.07.018 +Bogdan Marinescu,Output feedback pole placement for linear time-varying systems with application to the control of nonlinear systems.,2010,46,Automatica,9,db/journals/automatica/automatica46.html#Marinescu10,https://doi.org/10.1016/j.automatica.2010.06.022 +Stefan Kowalewski,Verification of logic controllers for continuous plants using timed condition/event-system models.,1999,35,Automatica,3,db/journals/automatica/automatica35.html#KowalewskiEPS99,https://doi.org/10.1016/S0005-1098(98)00179-4 +Alexey Matveev,Observation of nonlinear systems via finite capacity channels: Constructive data rate limits.,2016,70,Automatica,,db/journals/automatica/automatica70.html#MatveevP16,https://doi.org/10.1016/j.automatica.2016.04.005 +Roberto Diversi,Maximum likelihood identification of noisy input-output models.,2007,43,Automatica,3,db/journals/automatica/automatica43.html#DiversiGS07,https://doi.org/10.1016/j.automatica.2006.09.009 +T. Yu,R(λ*) imitation learning for automatic generation control of interconnected power grids.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#YuZCYYW12,https://doi.org/10.1016/j.automatica.2012.05.043 +Craig A. Woolsey,Stabilizing underwater vehicle motion using internal rotors.,2002,38,Automatica,12,db/journals/automatica/automatica38.html#WoolseyL02,https://doi.org/10.1016/S0005-1098(02)00136-X +Likui Wang,"Comments on ""Further studies on LMI-based relaxed stabilization conditions for nonlinear systems in Takagi-Sugeno's form"".",2008,44,Automatica,11,db/journals/automatica/automatica44.html#WangL08,https://doi.org/10.1016/j.automatica.2008.06.001 +Rogelio Lozano-Leal,Convergence analysis of recursive identification algorithms with forgetting factor.,1983,19,Automatica,1,db/journals/automatica/automatica19.html#Lozano-Leal83,https://doi.org/10.1016/0005-1098(83)90080-8 +Elisa Franco,Book review.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#Franco09,https://doi.org/10.1016/j.automatica.2009.09.035 +Jonathan R. Lawton,Synchronized multiple spacecraft rotations.,2002,38,Automatica,8,db/journals/automatica/automatica38.html#LawtonB02,https://doi.org/10.1016/S0005-1098(02)00025-0 +Andrew R. Teel,Stability analysis for stochastic hybrid systems: A survey.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#TeelSS14,https://doi.org/10.1016/j.automatica.2014.08.006 +Wei Xing,Some geometric properties of Lyapunov equation and LTI system.,2001,37,Automatica,2,db/journals/automatica/automatica37.html#XingZZW01,https://doi.org/10.1016/S0005-1098(00)00146-1 +Héctor Ríos,A hybrid fixed-time observer for state estimation of linear systems.,2018,87,Automatica,,db/journals/automatica/automatica87.html#RiosT18,https://doi.org/10.1016/j.automatica.2017.09.019 +Ali Al-Matouq,Multiple window moving horizon estimation.,2015,53,Automatica,,db/journals/automatica/automatica53.html#Al-MatouqV15,https://doi.org/10.1016/j.automatica.2014.12.002 +S. Ali A. Moosavian,Modified transpose Jacobian control of robotic systems.,2007,43,Automatica,7,db/journals/automatica/automatica43.html#MoosavianP07,https://doi.org/10.1016/j.automatica.2006.12.029 +Francesco Amato,Stability analysis of nonlinear quadratic systems via polyhedral Lyapunov functions.,2011,47,Automatica,3,db/journals/automatica/automatica47.html#AmatoCCM11,https://doi.org/10.1016/j.automatica.2010.12.005 +Young-Hoon Roh,Robust stabilization of uncertain input-delay systems by sliding mode control with delay compensation.,1999,35,Automatica,11,db/journals/automatica/automatica35.html#RohO99,https://doi.org/10.1016/S0005-1098(99)00106-5 +Meng-Bi Cheng,Sliding mode boundary control of a parabolic PDE system with parameter variations and boundary uncertainties.,2011,47,Automatica,2,db/journals/automatica/automatica47.html#ChengRS11,https://doi.org/10.1016/j.automatica.2010.10.045 +Baltazar Aguirre-Hernández,Smooth trivial vector bundle structure of the space of Hurwitz polynomials.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#Aguirre-HernandezFV09,https://doi.org/10.1016/j.automatica.2009.09.011 +Stéphane Ploix,Parity relations for linear uncertain dynamic systems.,2006,42,Automatica,9,db/journals/automatica/automatica42.html#PloixA06,https://doi.org/10.1016/j.automatica.2006.04.010 +Sourav Patra,Design of static Hinfinity loop shaping controller in four-block framework using LMI approach.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#PatraSR08,https://doi.org/10.1016/j.automatica.2008.01.008 +Dina-Alina Irofti,Some insights into the migration of double imaginary roots under small deviation of two parameters.,2018,88,Automatica,,db/journals/automatica/automatica88.html#IroftiGBN18,https://doi.org/10.1016/j.automatica.2017.11.015 +Mohamed I. El-Hawwary,Three-dimensional circular formations via set stabilization.,2015,54,Automatica,,db/journals/automatica/automatica54.html#El-Hawwary15,https://doi.org/10.1016/j.automatica.2015.01.010 +Tomas McKelvey,Data driven local coordinates for multivariable linear systems and their application to system identification.,2004,40,Automatica,9,db/journals/automatica/automatica40.html#McKelveyHR04,https://doi.org/10.1016/j.automatica.2004.04.015 +Young Sam Lee,Author's reply: Comments on delay-dependent robust Hinfinity control for uncertain systems with a state-delay.,2007,43,Automatica,3,db/journals/automatica/automatica43.html#LeeKP07,https://doi.org/10.1016/j.automatica.2006.10.003 +Francesco Amato,H optimal terminal state control for linear systems with lumped and distributed time delays.,1999,35,Automatica,9,db/journals/automatica/automatica35.html#AmatoP99,https://doi.org/10.1016/S0005-1098(99)00063-1 +F. Crevecoeur,Improving the state estimation for optimal control of stochastic processes subject to multiplicative noise.,2011,47,Automatica,3,db/journals/automatica/automatica47.html#CrevecoeurSTL11,https://doi.org/10.1016/j.automatica.2011.01.026 +C. Bohn,The application of matrix differential calculus for the derivation of simplified expressions in approximate non-linear filtering algorithms.,2000,36,Automatica,10,db/journals/automatica/automatica36.html#BohnU00,https://doi.org/10.1016/S0005-1098(00)00069-8 +Masasumi Kokawa,Failure propagating simulation and nonfailure paths search in network systems.,1982,18,Automatica,3,db/journals/automatica/automatica18.html#KokawaS82,https://doi.org/10.1016/0005-1098(82)90094-2 +Mojtaba Izadi,PDE backstepping control of one-dimensional heat equation with time-varying domain.,2015,54,Automatica,,db/journals/automatica/automatica54.html#IzadiAD15,https://doi.org/10.1016/j.automatica.2015.01.024 +Bernard Friedland,A nonlinear observer for estimating parameters in dynamic systems.,1997,33,Automatica,8,db/journals/automatica/automatica33.html#Friedland97,https://doi.org/10.1016/S0005-1098(97)00062-9 +Efstathios Bakolas,Optimal partitioning for spatiotemporal coverage in a drift field.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#BakolasT13,https://doi.org/10.1016/j.automatica.2013.04.013 +Rajendra Kumar,Detection techniques in least squares identification.,1981,17,Automatica,6,db/journals/automatica/automatica17.html#KumarM81,https://doi.org/10.1016/0005-1098(81)90068-6 +Antoine Chaillet,Strong iISS is preserved under cascade interconnection.,2014,50,Automatica,9,db/journals/automatica/automatica50.html#ChailletAI14,https://doi.org/10.1016/j.automatica.2014.07.025 +Xiangpeng Li,Design of a robust unified controller for cell manipulation with a robot-aided optical tweezers system.,2015,55,Automatica,,db/journals/automatica/automatica55.html#LiYWS15,https://doi.org/10.1016/j.automatica.2015.03.013 +Yasuaki Oishi,Polynomial-time algorithms for probabilistic solutions of parameter-dependent linear matrix inequalities.,2007,43,Automatica,3,db/journals/automatica/automatica43.html#Oishi07,https://doi.org/10.1016/j.automatica.2006.09.020 +Geert Jan Olsder,Reviewer's reply.,1984,20,Automatica,4,db/journals/automatica/automatica20.html#Olsder84,https://doi.org/10.1016/0005-1098(84)90110-9 +Svante Björklund,An improved phase method for time-delay estimation.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#BjorklundL09,https://doi.org/10.1016/j.automatica.2009.07.001 +Peyman Mohajerin Esfahani,The stochastic reach-avoid problem and set characterization for diffusions.,2016,70,Automatica,,db/journals/automatica/automatica70.html#EsfahaniCL16,https://doi.org/10.1016/j.automatica.2016.03.016 +Torsten Söderström,On a method for model structure selection in system identification.,1981,17,Automatica,2,db/journals/automatica/automatica17.html#Soderstrom81,https://doi.org/10.1016/0005-1098(81)90056-X +Jorma Rissanen,Modeling by shortest data description.,1978,14,Automatica,5,db/journals/automatica/automatica14.html#Rissanen78,https://doi.org/10.1016/0005-1098(78)90005-5 +Jérémy R. Dehaye,LQ-optimal boundary control of infinite-dimensional systems with Yosida-type approximate boundary observation.,2016,67,Automatica,,db/journals/automatica/automatica67.html#DehayeW16,https://doi.org/10.1016/j.automatica.2015.12.033 +Vasfi Eldem,Parametrization of multivariable systems using output injections: Alpha canonical forms.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#EldemD93,https://doi.org/10.1016/0005-1098(93)90113-8 +A. K. Tangirala,Ripple-free conditions for lifted multirate control systems.,2001,37,Automatica,10,db/journals/automatica/automatica37.html#TangiralaLPSC01,https://doi.org/10.1016/S0005-1098(01)00116-9 +ülle Kotta,Minimal realizations of nonlinear systems.,2018,95,Automatica,,db/journals/automatica/automatica95.html#KottaMT18,https://doi.org/10.1016/j.automatica.2018.05.007 +Minh Hoang Trinh,The Fermat-Weber location problem in single integrator dynamics using only local bearing angles.,2015,59,Automatica,,db/journals/automatica/automatica59.html#TrinhLA15,https://doi.org/10.1016/j.automatica.2015.06.017 +M. J. Grimble,Observations weighted controllers for linear stochastic systems.,1986,22,Automatica,4,db/journals/automatica/automatica22.html#Grimble86,https://doi.org/10.1016/0005-1098(86)90047-6 +Feng Zheng,Adaptive robust control of uncertain time delay systems.,2005,41,Automatica,8,db/journals/automatica/automatica41.html#ZhengWL05,https://doi.org/10.1016/j.automatica.2005.03.014 +Ian Postlethwaite,Robust control of the benchmark problem using H∞ methods and numerical optimization techniques.,1994,30,Automatica,4,db/journals/automatica/automatica30.html#PostlethwaiteWMG94,https://doi.org/10.1016/0005-1098(94)90149-X +Haojian Xu,Robust adaptive control of linearizable nonlinear single input systems with guaranteed error bounds.,2004,40,Automatica,11,db/journals/automatica/automatica40.html#XuI04,https://doi.org/10.1016/j.automatica.2004.04.019 +Michael Döhler,Subspace-based fault detection robust to changes in the noise covariances.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#DohlerM13,https://doi.org/10.1016/j.automatica.2013.06.019 +Emilia Fridman,Delay-induced stability of vector second-order systems via simple Lyapunov functionals.,2016,74,Automatica,,db/journals/automatica/automatica74.html#FridmanS16,https://doi.org/10.1016/j.automatica.2016.07.034 +Jun Shen,Positivity and stability of coupled differential-difference equations with time-varying delays.,2015,57,Automatica,,db/journals/automatica/automatica57.html#ShenZ15a,https://doi.org/10.1016/j.automatica.2015.04.007 +Fabio Morbidi,The deformed consensus protocol.,2013,49,Automatica,10,db/journals/automatica/automatica49.html#Morbidi13,https://doi.org/10.1016/j.automatica.2013.07.006 +Maria Letizia Corradini,Robust quantized feedback stabilization of linear systems.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#CorradiniO08,https://doi.org/10.1016/j.automatica.2008.01.027 +Dimitry Gorinevsky,Model-based update in task-level feedforward control using on-line approximation.,2001,37,Automatica,3,db/journals/automatica/automatica37.html#GorinevskyV01,https://doi.org/10.1016/S0005-1098(00)00178-3 +Vinay Kariwala,Branch and bound method for multiobjective pairing selection.,2010,46,Automatica,5,db/journals/automatica/automatica46.html#KariwalaC10,https://doi.org/10.1016/j.automatica.2010.02.014 +Valery A. Ugrinovskii,Risk-sensitivity conditions for stochastic uncertain model validation.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#Ugrinovskii09,https://doi.org/10.1016/j.automatica.2009.07.019 +Jianjun Gao 0001,Time cardinality constrained mean-variance dynamic portfolio selection and market timing: A stochastic control approach.,2015,54,Automatica,,db/journals/automatica/automatica54.html#GaoLCW15,https://doi.org/10.1016/j.automatica.2015.01.040 +Kenko Uchida,The linear-quadratic optimal control approach to feedback control design for systems with delay.,1988,24,Automatica,6,db/journals/automatica/automatica24.html#UchidaSKA88,https://doi.org/10.1016/0005-1098(88)90053-2 +Ola Dahl,Observer forms for perspective systems.,2010,46,Automatica,11,db/journals/automatica/automatica46.html#DahlWLH10,https://doi.org/10.1016/j.automatica.2010.06.047 +Mark W. Brantley,An efficient simulation budget allocation method incorporating regression for partitioned domains.,2014,50,Automatica,5,db/journals/automatica/automatica50.html#BrantleyLCX14,https://doi.org/10.1016/j.automatica.2014.03.011 +Colin D. Tebbutt,An expert system for multivariable controller design.,1992,28,Automatica,3,db/journals/automatica/automatica28.html#Tebbutt92,https://doi.org/10.1016/0005-1098(92)90172-C +Xiaodong Xu,Output and error feedback regulator designs for linear infinite-dimensional systems.,2017,83,Automatica,,db/journals/automatica/automatica83.html#XuD17,https://doi.org/10.1016/j.automatica.2017.06.003 +T. Harakawa,Digital control in iron- and steelmaking processes.,1993,29,Automatica,5,db/journals/automatica/automatica29.html#HarakawaK93,https://doi.org/10.1016/0005-1098(93)90046-V +Jinhu Lu,Generating 3-D multi-scroll chaotic attractors: A hysteresis series switching method.,2004,40,Automatica,10,db/journals/automatica/automatica40.html#LuHYC04,https://doi.org/10.1016/j.automatica.2004.06.001 +Bernard Brogliato,Practical stabilization of a class of nonlinear systems with partially known uncertainties.,1995,31,Automatica,1,db/journals/automatica/automatica31.html#BrogliatoN95,https://doi.org/10.1016/0005-1098(94)E0050-R +Wu-Hua Chen,Delay-dependent output feedback guaranteed cost control for uncertain time-delay systems.,2004,40,Automatica,7,db/journals/automatica/automatica40.html#ChenGL04,https://doi.org/10.1016/j.automatica.2004.02.003 +Peter Van Overschee,Choice of state-space basis in combined deterministic-stochastic subspace identification.,1995,31,Automatica,12,db/journals/automatica/automatica31.html#OverscheeM95a,https://doi.org/10.1016/0005-1098(95)00071-9 +Vikram R. Saksena,A multimodel approach to stochastic team problems.,1982,18,Automatica,6,db/journals/automatica/automatica18.html#SaksenaB82,https://doi.org/10.1016/0005-1098(82)90060-7 +Yasir Mehmood,Approximate discretization of regular descriptor (singular) systems with impulsive mode.,2016,73,Automatica,,db/journals/automatica/automatica73.html#MehmoodMKAD16,https://doi.org/10.1016/j.automatica.2016.07.017 +Hao Ying,Sufficient conditions on general fuzzy systems as function approximators.,1994,30,Automatica,3,db/journals/automatica/automatica30.html#Ying94,https://doi.org/10.1016/0005-1098(94)90130-9 +Frédéric Mazenc,Lyapunov-Krasovskii functionals and application to input delay compensation for linear time-invariant systems.,2012,48,Automatica,7,db/journals/automatica/automatica48.html#MazencNK12,https://doi.org/10.1016/j.automatica.2012.04.002 +Anqi Fu,Decentralized periodic event-triggered control with quantization and asynchronous communication.,2018,94,Automatica,,db/journals/automatica/automatica94.html#FuM18,https://doi.org/10.1016/j.automatica.2018.04.045 +Ian R. Petersen,Robust control of uncertain systems: Classical results and recent developments.,2014,50,Automatica,5,db/journals/automatica/automatica50.html#PetersenT14,https://doi.org/10.1016/j.automatica.2014.02.042 +Boleslaw Z. Kacewicz,Worst-case conditional system identification in a general class of norms.,1999,35,Automatica,6,db/journals/automatica/automatica35.html#Kacewicz99,https://doi.org/10.1016/S0005-1098(99)00005-9 +Naim Bajçinca,Design of robust PID controllers using decoupling at singular frequencies.,2006,42,Automatica,11,db/journals/automatica/automatica42.html#Bajcinca06,https://doi.org/10.1016/j.automatica.2006.06.006 +Ernesto Kofman,Continuous-time probabilistic ultimate bounds and invariant sets: Computation and assignment.,2016,71,Automatica,,db/journals/automatica/automatica71.html#KofmanDSP16,https://doi.org/10.1016/j.automatica.2016.04.041 +Venugopal Pichai,A graph-theoretic characterization of structurally fixed modes.,1984,20,Automatica,2,db/journals/automatica/automatica20.html#PichaiSS84,https://doi.org/10.1016/0005-1098(84)90033-5 +Youshen Xia,Novel parameter estimation of autoregressive signals in the presence of noise.,2015,62,Automatica,,db/journals/automatica/automatica62.html#XiaZ15,https://doi.org/10.1016/j.automatica.2015.09.008 +Giordano Pola,Design of decentralized critical observers for networks of finite state machines: A formal method approach.,2017,86,Automatica,,db/journals/automatica/automatica86.html#PolaSBP17,https://doi.org/10.1016/j.automatica.2017.08.025 +Walter Jakoby,A prediction-error-method for recursive identification of nonlinear systems.,1987,23,Automatica,4,db/journals/automatica/automatica23.html#JakobyP87,https://doi.org/10.1016/0005-1098(87)90078-1 +Dongjun Lee,Distributed backstepping control of multiple thrust-propelled vehicles on a balanced graph.,2012,48,Automatica,11,db/journals/automatica/automatica48.html#Lee12,https://doi.org/10.1016/j.automatica.2012.08.005 +Catherine Bonnet,Analysis of fractional delay systems of retarded and neutral type.,2002,38,Automatica,7,db/journals/automatica/automatica38.html#BonnetP02,https://doi.org/10.1016/S0005-1098(01)00306-5 +R. Tuschák,ICONGRAPH - Program package for interactive controller design by graphical plotting.,1984,20,Automatica,4,db/journals/automatica/automatica20.html#TuschakBHHKVV84,https://doi.org/10.1016/0005-1098(84)90103-1 +Qinghua Zhang,From structurally independent local LTI models to LPV model.,2017,84,Automatica,,db/journals/automatica/automatica84.html#ZhangL17,https://doi.org/10.1016/j.automatica.2017.06.006 +Ibtissem Didi,An invariant observer for a chemostat model.,2014,50,Automatica,9,db/journals/automatica/automatica50.html#DidiDC14,https://doi.org/10.1016/j.automatica.2014.07.005 +Tohru Katayama,An approach to closed-loop subspace identification by orthogonal decomposition.,2007,43,Automatica,9,db/journals/automatica/automatica43.html#KatayamaT07,https://doi.org/10.1016/j.automatica.2007.02.011 +Andrey V. Savkin,A switched server system of order n with all its trajectories converging to (n-1)! limit cycles.,2001,37,Automatica,2,db/journals/automatica/automatica37.html#SavkinM01,https://doi.org/10.1016/S0005-1098(00)00144-8 +Zhao-Yan Li,Detectability and observability of discrete-time stochastic systems and their applications.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#LiWZD09,https://doi.org/10.1016/j.automatica.2009.01.014 +Shaunak D. Bopardikar,Convergence analysis of Iterated Best Response for a trusted computation game.,2017,78,Automatica,,db/journals/automatica/automatica78.html#BopardikarSL17,https://doi.org/10.1016/j.automatica.2016.11.046 +Bo-Chao Zheng,Quantized feedback sliding-mode control: An event-triggered approach.,2018,91,Automatica,,db/journals/automatica/automatica91.html#ZhengYX18,https://doi.org/10.1016/j.automatica.2018.01.007 +Francesco Bullo,Stabilization of relative equilibria for underactuated systems on Riemannian manifolds.,2000,36,Automatica,12,db/journals/automatica/automatica36.html#Bullo00,https://doi.org/10.1016/S0005-1098(00)00115-1 +Bao-Zhu Guo,"Comments on ""Stabilization of a class of nonlinear systems with actuator saturation via active disturbance rejection control"" [Automatica 63 (2016) 302-310].",2017,83,Automatica,,db/journals/automatica/automatica83.html#GuoWZ17,https://doi.org/10.1016/j.automatica.2017.06.010 +Yi Cheng,Event-triggered leader-following tracking control for multivariable multi-agent systems.,2016,70,Automatica,,db/journals/automatica/automatica70.html#ChengU16,https://doi.org/10.1016/j.automatica.2016.04.003 +Mohamed F. Hassan,The optimization of non-linear systems using a new two level method.,1976,12,Automatica,4,db/journals/automatica/automatica12.html#HassanS76,https://doi.org/10.1016/0005-1098(76)90055-8 +Xiangpeng Li,A switching controller for high speed cell transportation by using a robot-aided optical tweezers system.,2018,89,Automatica,,db/journals/automatica/automatica89.html#LiYHS18,https://doi.org/10.1016/j.automatica.2017.11.014 +Ngoc Anh Nguyen,Convex liftings-based robust control design.,2017,77,Automatica,,db/journals/automatica/automatica77.html#NguyenORK17,https://doi.org/10.1016/j.automatica.2016.11.031 +Jiri Kadlec,The block regularised parameter estimator and its parallelisation.,1995,31,Automatica,8,db/journals/automatica/automatica31.html#KadlecGI95,https://doi.org/10.1016/0005-1098(95)00015-O +Qiang Shen 0002,Rigid-body attitude stabilization with attitude and angular rate constraints.,2018,90,Automatica,,db/journals/automatica/automatica90.html#ShenYGWW18,https://doi.org/10.1016/j.automatica.2017.12.029 +Zigang Pan,Differential geometric condition for feedback complete linearization of stochastic nonlinear system.,2001,37,Automatica,1,db/journals/automatica/automatica37.html#Pan01,https://doi.org/10.1016/S0005-1098(00)00132-1 +Pu Li,A probabilistically constrained model predictive controller.,2002,38,Automatica,7,db/journals/automatica/automatica38.html#LiWW02,https://doi.org/10.1016/S0005-1098(02)00002-X +Dimitrios Karagiannis,Dynamic scaling and observer design with application to adaptive control.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#KaragiannisSA09,https://doi.org/10.1016/j.automatica.2009.09.013 +K. Xiong,"Author's reply to ""Comments on 'Performance evaluation of UKF-based nonlinear filtering""'.",2007,43,Automatica,3,db/journals/automatica/automatica43.html#XiongZC07,https://doi.org/10.1016/j.automatica.2006.10.002 +Wenwu Yu,On pinning synchronization of complex dynamical networks.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#YuCL09,https://doi.org/10.1016/j.automatica.2008.07.016 +Soumya Kundu,A multiple-comparison-systems method for distributed stability analysis of large-scale nonlinear systems.,2017,78,Automatica,,db/journals/automatica/automatica78.html#KunduA17,https://doi.org/10.1016/j.automatica.2016.12.003 +Yuxin Su,"Comments on ""Chattering free full-order sliding-mode control [Automatica 50 (2014) 1310-1314]"".",2016,72,Automatica,,db/journals/automatica/automatica72.html#Su16,https://doi.org/10.1016/j.automatica.2016.04.035 +Ronghu Chi,Adaptive ILC for a class of discrete-time systems with iteration-varying trajectory and random initial condition.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#ChiHX08,https://doi.org/10.1016/j.automatica.2007.12.004 +Mehmet Turan Söylemez,Fast calculation of stabilizing PID controllers.,2003,39,Automatica,1,db/journals/automatica/automatica39.html#SoylemezMB03,https://doi.org/10.1016/S0005-1098(02)00180-2 +Stephen V. Hanly,Power control and capacity of spread spectrum wireless networks.,1999,35,Automatica,12,db/journals/automatica/automatica35.html#HanlyT99,https://doi.org/10.1016/S0005-1098(99)00133-8 +Bahare Kiumarsi,H∞ control of linear discrete-time systems: Off-policy reinforcement learning.,2017,78,Automatica,,db/journals/automatica/automatica78.html#KiumarsiLJ17,https://doi.org/10.1016/j.automatica.2016.12.009 +Hassan K. Khalil,Cascade high-gain observers in output feedback control.,2017,80,Automatica,,db/journals/automatica/automatica80.html#Khalil17,https://doi.org/10.1016/j.automatica.2017.02.031 +Huibert Kwakernaak,Estimation of pulse heights and arrival *.,1980,16,Automatica,4,db/journals/automatica/automatica16.html#Kwakernaak80,https://doi.org/10.1016/0005-1098(80)90021-7 +Henrik Rehbinder,Scheduling of a limited communication channel for optimal control.,2004,40,Automatica,3,db/journals/automatica/automatica40.html#RehbinderS04,https://doi.org/10.1016/j.automatica.2003.10.022 +Alexander L. Fradkov,Exponential Feedback Passivity and Stabilizability of Nonlinear Systems.,1998,34,Automatica,6,db/journals/automatica/automatica34.html#FradkovH98,https://doi.org/10.1016/S0005-1098(97)00230-6 +Mehrdad Saif,Decentralized state estimation in large-scale interconnected dynamical systems.,1992,28,Automatica,1,db/journals/automatica/automatica28.html#SaifG92,https://doi.org/10.1016/0005-1098(92)90024-A +A. K. Mahalanabis,Introduction to random signal analysis and kalman filtering: Robert G. Brown.,1986,22,Automatica,3,db/journals/automatica/automatica22.html#Mahalanabis86,https://doi.org/10.1016/0005-1098(86)90041-5 +Ruth F. Curtain,A Kleinman-Newton construction of the maximal solution of the infinite-dimensional control Riccati equation.,2017,86,Automatica,,db/journals/automatica/automatica86.html#CurtainZI17,https://doi.org/10.1016/j.automatica.2017.08.030 +Philip M. Fitzsimons,Reducing the computation required to solve a standard minimax problem.,1995,31,Automatica,12,db/journals/automatica/automatica31.html#Fitzsimons95,https://doi.org/10.1016/0005-1098(95)00095-1 +Richard H. Middleton,Tracking sensitivity and achievable I performance in preview control.,2004,40,Automatica,8,db/journals/automatica/automatica40.html#MiddletonCF04,https://doi.org/10.1016/j.automatica.2004.02.019 +Jitendra K. Tugnait,Consistent parameter estimation for non-causal autoregressive models via higher-order statistics.,1990,26,Automatica,1,db/journals/automatica/automatica26.html#Tugnait90,https://doi.org/10.1016/0005-1098(90)90157-D +Heinz Unbehauen,Comparison and application of DDC algorithms for a heat exchanger.,1976,12,Automatica,5,db/journals/automatica/automatica12.html#UnbehauenSB76,https://doi.org/10.1016/0005-1098(76)90001-7 +Xin Yu,Small-gain control method for stochastic nonlinear systems with stochastic iISS inverse dynamics.,2010,46,Automatica,11,db/journals/automatica/automatica46.html#YuXD10,https://doi.org/10.1016/j.automatica.2010.06.042 +P. Kolár,An introduction to automata theory : M. W. Shields.,1990,26,Automatica,2,db/journals/automatica/automatica26.html#Kolar90,https://doi.org/10.1016/0005-1098(90)90148-B +Ion Necoara,On linear convergence of a distributed dual gradient algorithm for linearly constrained separable convex problems.,2015,55,Automatica,,db/journals/automatica/automatica55.html#NecoaraN15,https://doi.org/10.1016/j.automatica.2015.02.038 +Zhao-Yan Li,On robustness of predictor feedback control of linear systems with input delays.,2014,50,Automatica,5,db/journals/automatica/automatica50.html#LiZL14,https://doi.org/10.1016/j.automatica.2014.03.018 +Hanz Richter,A multi-regulator sliding mode control strategy for output-constrained systems.,2011,47,Automatica,10,db/journals/automatica/automatica47.html#Richter11,https://doi.org/10.1016/j.automatica.2011.08.003 +Jin-Liang Wang,Passivity-based synchronization of a class of complex dynamical networks with time-varying delay.,2015,56,Automatica,,db/journals/automatica/automatica56.html#WangWH15,https://doi.org/10.1016/j.automatica.2015.03.027 +Hernando Diaz,Modeling of nonlinear discrete-time systems from input-output data.,1988,24,Automatica,5,db/journals/automatica/automatica24.html#DiazD88,https://doi.org/10.1016/0005-1098(88)90110-0 +Benoît Codrons,Closed-loop identification with an unstable or nonminimum phase controller.,2002,38,Automatica,12,db/journals/automatica/automatica38.html#CodronsAG02,https://doi.org/10.1016/S0005-1098(02)00137-1 +B. P. Molinari,The time-invariant linear-quadratic optimal control problem.,1977,13,Automatica,4,db/journals/automatica/automatica13.html#Molinari77,https://doi.org/10.1016/0005-1098(77)90017-6 +Dimitris Vafiadis,Decoupling and pole assignment of singular systems: A frequency domain approach.,1997,33,Automatica,8,db/journals/automatica/automatica33.html#VafiadisK97a,https://doi.org/10.1016/S0005-1098(97)81033-3 +Sandro Zampieri,A behavioral approach to identifiability of 2D scalar systems.,1997,33,Automatica,1,db/journals/automatica/automatica33.html#Zampieri97,https://doi.org/10.1016/S0005-1098(96)00139-2 +Naim A. Kheir,Control system design.,2001,37,Automatica,11,db/journals/automatica/automatica37.html#Kheir01,https://doi.org/10.1016/S0005-1098(01)00146-7 +Kanti B. Datta,H∞-based synthesis for a robust controller of interval plants.,1996,32,Automatica,11,db/journals/automatica/automatica32.html#DattaP96,https://doi.org/10.1016/S0005-1098(96)00098-2 +Paul P. Wang,Fuzzy dynamic system and fuzzy linguistic controller classification.,1994,30,Automatica,11,db/journals/automatica/automatica30.html#WangT94,https://doi.org/10.1016/0005-1098(94)90080-9 +Bjørnar Bøhagen,Active surge control of compression system using drive torque.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#BohagenG08,https://doi.org/10.1016/j.automatica.2007.11.002 +Byeong-Yeon Kim,Distributed coordination and control of multiple photovoltaic generators for power distribution in a microgrid.,2016,73,Automatica,,db/journals/automatica/automatica73.html#KimOMA16,https://doi.org/10.1016/j.automatica.2016.07.012 +Le Yi Wang,Closed-loop persistent identification of linear systems with unmodeled dynamics and stochastic disturbances.,2002,38,Automatica,9,db/journals/automatica/automatica38.html#WangY02,https://doi.org/10.1016/S0005-1098(02)00054-7 +Egi Hidayat,Laguerre domain identification of continuous linear time-delay systems from impulse response data.,2012,48,Automatica,11,db/journals/automatica/automatica48.html#HidayatM12,https://doi.org/10.1016/j.automatica.2012.06.077 +Pedro M. G. Ferreira,Tracking with sensor failures.,2002,38,Automatica,9,db/journals/automatica/automatica38.html#Ferreira02,https://doi.org/10.1016/S0005-1098(02)00070-5 +Zalman J. Palmor,Properties of optimal stochastic control systems with dead-time.,1982,18,Automatica,1,db/journals/automatica/automatica18.html#Palmor82,https://doi.org/10.1016/0005-1098(82)90033-4 +Per Hedelin,Discrete-time estimation in continuous-time communication systems.,1978,14,Automatica,3,db/journals/automatica/automatica14.html#Hedelin78,https://doi.org/10.1016/0005-1098(78)90089-4 +Mohammad Fuad Mohammad Naser,Hysteresis loop of the LuGre model.,2015,59,Automatica,,db/journals/automatica/automatica59.html#NaserI15,https://doi.org/10.1016/j.automatica.2015.06.006 +Jun Fu,Global finite-time stabilization of a class of switched nonlinear systems with the powers of positive odd rational numbers.,2015,54,Automatica,,db/journals/automatica/automatica54.html#FuMC15,https://doi.org/10.1016/j.automatica.2015.02.023 +Aurelio Piazzi,Optimal noncausal set-point regulation of scalar systems.,2001,37,Automatica,1,db/journals/automatica/automatica37.html#PiazziV01,https://doi.org/10.1016/S0005-1098(00)00130-8 +Ning-Shou Xu,Predictive structural control based on dominant interal model approach.,1999,35,Automatica,1,db/journals/automatica/automatica35.html#XuY99,https://doi.org/10.1016/S0005-1098(98)00123-X +Robert H. Baran,"Comments on ""the parameter identification of a population model of China"".",1986,22,Automatica,2,db/journals/automatica/automatica22.html#BaranC86,https://doi.org/10.1016/0005-1098(86)90090-7 +Paolo Bolzern,Design of stabilizing strategies for discrete-time dual switching linear systems.,2016,69,Automatica,,db/journals/automatica/automatica69.html#BolzernCN16,https://doi.org/10.1016/j.automatica.2016.02.032 +Luc Moreau,Asymptotic methods in the stability analysis of parametrized homogeneous flows.,2000,36,Automatica,8,db/journals/automatica/automatica36.html#MoreauA00,https://doi.org/10.1016/S0005-1098(00)00031-5 +Simone Formentin,Optimal input design for direct data-driven tuning of model-reference controllers.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#FormentinKS13,https://doi.org/10.1016/j.automatica.2013.02.054 +Anna Hagenblad,Maximum likelihood identification of Wiener models.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#HagenbladLW08,https://doi.org/10.1016/j.automatica.2008.02.016 +Shalom D. Ruben,Real-time optimal commutation for minimizing thermally induced inaccuracy in multi-motor driven stages.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#RubenT12,https://doi.org/10.1016/j.automatica.2012.05.051 +Mark W. Spong,Nonlinear control of the Reaction Wheel Pendulum.,2001,37,Automatica,11,db/journals/automatica/automatica37.html#SpongCL01,https://doi.org/10.1016/S0005-1098(01)00145-5 +Jacques-Louis Lions,Asymptotic methods in the optimal control of distributed systems.,1978,14,Automatica,3,db/journals/automatica/automatica14.html#Lions78,https://doi.org/10.1016/0005-1098(78)90085-7 +Andrei Polyakov,Invariant ellipsoid method for minimization of unmatched disturbances effects in sliding mode control.,2011,47,Automatica,7,db/journals/automatica/automatica47.html#PolyakovP11,https://doi.org/10.1016/j.automatica.2011.02.013 +Miloslav Hájek,Mathematical model of heart rate regulation during exercise.,1980,16,Automatica,2,db/journals/automatica/automatica16.html#HajekPB80,https://doi.org/10.1016/0005-1098(80)90054-0 +Johannes Henikl,Infinite-dimensional decentralized damping control of large-scale manipulators with hydraulic actuation.,2016,63,Automatica,,db/journals/automatica/automatica63.html#HeniklKMK16,https://doi.org/10.1016/j.automatica.2015.10.024 +Charalambos D. Charalambous,LQG optimality and separation principle for general discrete time partially observed stochastic systems over finite capacity communication channels.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#CharalambousF08,https://doi.org/10.1016/j.automatica.2008.05.021 +Uri Ben-Hanan,Classification of fruits by a boltzmann perceptron neural network.,1992,28,Automatica,5,db/journals/automatica/automatica28.html#Ben-HananPG92,https://doi.org/10.1016/0005-1098(92)90148-9 +Bilal Gunes,Predictor-Based Tensor Regression (PBTR) for LPV subspace identification.,2017,79,Automatica,,db/journals/automatica/automatica79.html#GunesWV17,https://doi.org/10.1016/j.automatica.2017.01.039 +Yoshio Ebihara,New dilated LMI characterizations for continuous-time multiobjective controller synthesis.,2004,40,Automatica,11,db/journals/automatica/automatica40.html#EbiharaH04,https://doi.org/10.1016/j.automatica.2004.06.009 +Sjoerd M. Baas,Rating and ranking of multiple-aspect alternatives using fuzzy sets.,1977,13,Automatica,1,db/journals/automatica/automatica13.html#BaasK77,https://doi.org/10.1016/0005-1098(77)90008-5 +Shihua Li,Finite-time consensus algorithm for multi-agent systems with double-integrator dynamics.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#LiDL11,https://doi.org/10.1016/j.automatica.2011.02.045 +Chengpu Yu,Blind system identification using precise and quantized observations.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#YuZX13a,https://doi.org/10.1016/j.automatica.2013.05.020 +Efim Malakhovski,On stability of second-order quasi-polynomials with a single delay.,2006,42,Automatica,6,db/journals/automatica/automatica42.html#MalakhovskiM06,https://doi.org/10.1016/j.automatica.2006.01.024 +Jing Sun,A hybrid adaptive control scheme using sampled data and intersampling compensation.,1997,33,Automatica,2,db/journals/automatica/automatica33.html#Sun97,https://doi.org/10.1016/S0005-1098(96)00146-X +Guangchen Wang,A partial information non-zero sum differential game of backward stochastic differential equations with applications.,2012,48,Automatica,2,db/journals/automatica/automatica48.html#WangY12,https://doi.org/10.1016/j.automatica.2011.11.010 +David Hertz,Root exclusion from complex polydomains and some of its applications.,1987,23,Automatica,3,db/journals/automatica/automatica23.html#HertzJZ87,https://doi.org/10.1016/0005-1098(87)90014-8 +Brian D. O. Anderson,Robust Stabilization of Nonlinear Systems via Normalized Coprime Factor Representations.,1998,34,Automatica,12,db/journals/automatica/automatica34.html#AndersonJL98,https://doi.org/10.1016/S0005-1098(98)80013-7 +Mario Milanese,Hinfinity set membership identification: A survey.,2005,41,Automatica,12,db/journals/automatica/automatica41.html#MilaneseT05,https://doi.org/10.1016/j.automatica.2005.07.007 +Juan C. Martínez-Rosas,Decentralized control of cooperative robots without velocity-force measurements.,2006,42,Automatica,2,db/journals/automatica/automatica42.html#Martinez-RosasAC06,https://doi.org/10.1016/j.automatica.2005.10.007 +Bin Zhou 0001,Stabilization of linear systems with distributed input delay and input saturation.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#ZhouGLD12,https://doi.org/10.1016/j.automatica.2012.02.007 +Yu. V. Orlov,Sliding mode control in indefinite-dimensional systems.,1987,23,Automatica,6,db/journals/automatica/automatica23.html#OrlovU87,https://doi.org/10.1016/0005-1098(87)90032-X +Kenko Uchida,Another look at finite horizon H∞ control problems for systems with input delays.,2004,40,Automatica,6,db/journals/automatica/automatica40.html#UchidaFI04,https://doi.org/10.1016/j.automatica.2004.01.005 +Ywh-Pyng Harn,Optimal low-order controller design via 'LQG-like' parametrization.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#HarnK93,https://doi.org/10.1016/0005-1098(93)90004-D +Dipankar Ghosh,Measurement selection for linear multivariable control systems.,1989,25,Automatica,1,db/journals/automatica/automatica25.html#GhoshK89,https://doi.org/10.1016/0005-1098(89)90119-2 +Richard G. Gibbs,New Kalman filter and smoother consistency tests.,2013,49,Automatica,10,db/journals/automatica/automatica49.html#Gibbs13,https://doi.org/10.1016/j.automatica.2013.07.013 +Xiefu Jiang,New stability criteria for linear systems with interval time-varying delay.,2008,44,Automatica,10,db/journals/automatica/automatica44.html#JiangH08,https://doi.org/10.1016/j.automatica.2008.02.020 +Ligang Wu,Generalized H2 fault detection for two-dimensional Markovian jump systems.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#WuYZ12,https://doi.org/10.1016/j.automatica.2012.05.024 +Sergio Bittanti,The extended periodic lyapunov lemma.,1985,21,Automatica,5,db/journals/automatica/automatica21.html#BittantiBC85,https://doi.org/10.1016/0005-1098(85)90009-3 +Amit Ailon,Closed-form nonlinear tracking controllers for quadrotors with model and input generator uncertainties.,2015,54,Automatica,,db/journals/automatica/automatica54.html#AilonA15,https://doi.org/10.1016/j.automatica.2015.02.020 +Han Ho Choi,Memoryless H∞ controller design for linear systems with delayed state and control.,1995,31,Automatica,6,db/journals/automatica/automatica31.html#ChoiC95,https://doi.org/10.1016/0005-1098(95)00001-D +Sergio Beghelli,The frisch scheme in dynamic system identification.,1990,26,Automatica,1,db/journals/automatica/automatica26.html#BeghelliGS90,https://doi.org/10.1016/0005-1098(90)90168-H +Behzad Samadi,A unified dissipativity approach for stability analysis of piecewise smooth systems.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#SamadiR11,https://doi.org/10.1016/j.automatica.2011.09.018 +Li Li 0031,Structured coprime factor model reduction based on LMIs.,2005,41,Automatica,1,db/journals/automatica/automatica41.html#LiP05,https://doi.org/10.1016/j.automatica.2004.09.003 +George S. Axelby,The IFAC journal - A new Automatica.,1969,5,Automatica,1,db/journals/automatica/automatica5.html#Axelby69,https://doi.org/10.1016/0005-1098(69)90043-0 +Han Yu,Event-triggered output feedback control for networked control systems using passivity: Achieving L2 stability in the presence of communication delays and signal quantization.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#YuA13,https://doi.org/10.1016/j.automatica.2012.09.005 +Yue Cheng,Unbiased minimum-variance state estimation for linear systems with unknown input.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#ChengYWZ09,https://doi.org/10.1016/j.automatica.2008.08.009 +Anders Hansson,A stochastic interpretation of membership functions.,1994,30,Automatica,3,db/journals/automatica/automatica30.html#Hansson94,https://doi.org/10.1016/0005-1098(94)90137-6 +Wassim M. Haddad,Adaptive control for nonlinear nonnegative dynamical systems.,2004,40,Automatica,9,db/journals/automatica/automatica40.html#HaddadH04,https://doi.org/10.1016/j.automatica.2004.03.006 +M. Vidyasagar,Robust controllers for uncertain linear multivariable systems.,1986,22,Automatica,1,db/journals/automatica/automatica22.html#VidyasagarK86,https://doi.org/10.1016/0005-1098(86)90107-X +Wook Hyun Kwon,General receding horizon control for linear time-delay systems.,2004,40,Automatica,9,db/journals/automatica/automatica40.html#KwonLH04,https://doi.org/10.1016/j.automatica.2004.04.003 +Z. Shafiei,Frequency-domain design of pid controllers for stable and unstable systems with time delay.,1997,33,Automatica,12,db/journals/automatica/automatica33.html#ShafieiS97,https://doi.org/10.1016/S0005-1098(97)00148-9 +Laura Menini,Stability analysis of planar systems with nilpotent (non-zero) linear part.,2010,46,Automatica,3,db/journals/automatica/automatica46.html#MeniniT10,https://doi.org/10.1016/j.automatica.2009.12.009 +Horng-Bin Chen,Simultaneous stabilization using stable system inversion.,1995,31,Automatica,4,db/journals/automatica/automatica31.html#ChenCKM95,https://doi.org/10.1016/0005-1098(95)98482-L +Robert Haber,Identification and adaptive control of a glass furnace.,1981,17,Automatica,1,db/journals/automatica/automatica17.html#HaberHKVFCCT81,https://doi.org/10.1016/0005-1098(81)90093-5 +Hans Schumacher,Call for papers Automatica special issue on hybrid systems.,1997,33,Automatica,4,db/journals/automatica/automatica33.html#Schumacher97,https://doi.org/10.1016/S0005-1098(97)90000-5 +Tianshi Chen,A small gain approach to global stabilization of nonlinear feedforward systems with input unmodeled dynamics.,2010,46,Automatica,6,db/journals/automatica/automatica46.html#ChenH10,https://doi.org/10.1016/j.automatica.2010.02.028 +K. D. Do,Robust adaptive path following of underactuated ships.,2004,40,Automatica,6,db/journals/automatica/automatica40.html#DoJP04,https://doi.org/10.1016/j.automatica.2004.01.021 +Alessandro Abate,Probabilistic reachability and safety for controlled discrete time stochastic hybrid systems.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#AbatePLS08,https://doi.org/10.1016/j.automatica.2008.03.027 +Hassan K. Khalil,A note on the robustness of high-gain-observer-based controllers to unmodeled actuator and sensor dynamics.,2005,41,Automatica,10,db/journals/automatica/automatica41.html#Khalil05,https://doi.org/10.1016/j.automatica.2005.04.008 +Valery A. Ugrinovskii,Controller-jammer game models of Denial of Service in control systems operating over packet-dropping links.,2017,84,Automatica,,db/journals/automatica/automatica84.html#UgrinovskiiL17,https://doi.org/10.1016/j.automatica.2017.07.009 +Bo Wahlberg,The effects of rapid sampling in system identification.,1990,26,Automatica,1,db/journals/automatica/automatica26.html#Wahlberg90,https://doi.org/10.1016/0005-1098(90)90167-G +Leonardo A. Mozelli,Reducing conservativeness in recent stability conditions of TS fuzzy systems.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#MozelliPSM09,https://doi.org/10.1016/j.automatica.2009.02.023 +Harimohan Navin Kumar Balini,Synthesis and implementation of gain-scheduling and LPV controllers for an AMB system.,2012,48,Automatica,3,db/journals/automatica/automatica48.html#BaliniWS12,https://doi.org/10.1016/j.automatica.2011.08.061 +Cristiano Maria Verrelli,Space-learning tracking control for permanent magnet step motors.,2016,73,Automatica,,db/journals/automatica/automatica73.html#VerrelliTCL16,https://doi.org/10.1016/j.automatica.2016.07.019 +John Villandsen,Chemical process dynamics: Rezsö Mohilla and Béla Ferencz.,1983,19,Automatica,5,db/journals/automatica/automatica19.html#Villandsen83,https://doi.org/10.1016/0005-1098(83)90017-1 +Jorge A. Torres-Muñoz,Simultaneous model matching and disturbance rejection with stability by state feedback.,2003,39,Automatica,8,db/journals/automatica/automatica39.html#Torres-MunozM03,https://doi.org/10.1016/S0005-1098(03)00115-8 +Bao-Zhu Guo,The active disturbance rejection and sliding mode control approach to the stabilization of the Euler-Bernoulli beam equation with boundary input disturbance.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#GuoJ13,https://doi.org/10.1016/j.automatica.2013.06.018 +Vikram Manikonda,Controllability of a class of underactuated mechanical systems with symmetry.,2002,38,Automatica,11,db/journals/automatica/automatica38.html#ManikondaK02,https://doi.org/10.1016/S0005-1098(02)00095-X +Hendra Ishwara Nurdin,The transfer function of generic linear quantum stochastic systems has a pure cascade realization.,2016,69,Automatica,,db/journals/automatica/automatica69.html#NurdinGP16,https://doi.org/10.1016/j.automatica.2016.03.002 +Hyeong-Joon Ahn,Frequency domain control-relevant identification of MIMO AMB rigid rotor.,2003,39,Automatica,2,db/journals/automatica/automatica39.html#AhnLLH03,https://doi.org/10.1016/S0005-1098(02)00203-0 +Mitsuaki Ishitobi,Nyquist stability criterion of intrinsic zeros for continuous-time pure imaginary zeros.,2002,38,Automatica,12,db/journals/automatica/automatica38.html#IshitobiK02,https://doi.org/10.1016/S0005-1098(02)00140-1 +Milan Korda,Stability and performance verification of optimization-based controllers.,2017,78,Automatica,,db/journals/automatica/automatica78.html#KordaJ17,https://doi.org/10.1016/j.automatica.2016.12.008 +Tao Li 0002,Distributed consensus over digital networks with limited bandwidth and time-varying topologies.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#LiX11,https://doi.org/10.1016/j.automatica.2011.05.017 +Daizhan Cheng,On finite potential games.,2014,50,Automatica,7,db/journals/automatica/automatica50.html#Cheng14,https://doi.org/10.1016/j.automatica.2014.05.005 +Xiao-Li Hu,Necessary and sufficient convergence conditions of the instrumental variable method for identification.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#HuW13,https://doi.org/10.1016/j.automatica.2013.06.004 +Tuhin Das,Optimally switched linear systems.,2008,44,Automatica,5,db/journals/automatica/automatica44.html#DasM08,https://doi.org/10.1016/j.automatica.2007.10.008 +Thomas Holding,On the emergence of oscillations in distributed resource allocation.,2017,85,Automatica,,db/journals/automatica/automatica85.html#HoldingL17,https://doi.org/10.1016/j.automatica.2017.07.022 +Oded Yaniv,Synthesis of uncertain MIMO feedback systems for gain and phase margin at different channel breaking points.,1992,28,Automatica,5,db/journals/automatica/automatica28.html#Yaniv92,https://doi.org/10.1016/0005-1098(92)90156-A +Shuli Sun,Optimal linear estimation for systems with multiple packet dropouts.,2008,44,Automatica,5,db/journals/automatica/automatica44.html#SunXXS08,https://doi.org/10.1016/j.automatica.2007.09.023 +Der-Cherng Liaw,Active control of compressor stall inception: a bifurcation-theoretic approach.,1996,32,Automatica,1,db/journals/automatica/automatica32.html#LiawA96,https://doi.org/10.1016/0005-1098(95)00096-8 +Michael Ouimet,Hedonic coalition formation for optimal deployment.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#OuimetC13,https://doi.org/10.1016/j.automatica.2013.08.019 +Debarghya Ghoshdastidar,Newton-based stochastic optimization using q-Gaussian smoothed functional algorithms.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#GhoshdastidarDB14,https://doi.org/10.1016/j.automatica.2014.08.021 +Brad Lehman,Vibrational stabilization and calculation formulas for nonlinear time delay systems: Linear multiplicative vibrations.,1994,30,Automatica,7,db/journals/automatica/automatica30.html#LehmanB94,https://doi.org/10.1016/0005-1098(94)90216-X +Daisuke Tsubakino,Backstepping observer design for parabolic PDEs with measurement of weighted spatial averages.,2015,53,Automatica,,db/journals/automatica/automatica53.html#TsubakinoH15,https://doi.org/10.1016/j.automatica.2014.12.019 +Junhong Nie,FCMAC: A fuzzified cerebellar model articulation controller with self-organizing capacity.,1994,30,Automatica,4,db/journals/automatica/automatica30.html#NieL94,https://doi.org/10.1016/0005-1098(94)90154-6 +Rudolf Kulhavý,On duality of regularized exponential and linear forgetting.,1996,32,Automatica,10,db/journals/automatica/automatica32.html#KulhavyK96,https://doi.org/10.1016/0005-1098(96)00092-1 +Luc Dugard,Recursive output error identification algorithms theory and evaluation.,1980,16,Automatica,5,db/journals/automatica/automatica16.html#DugardL80,https://doi.org/10.1016/0005-1098(80)90066-7 +Gila E. Fruchter,Generalized zero sets location and absolute robust stabilization of continuous nonlinear control systems.,1991,27,Automatica,3,db/journals/automatica/automatica27.html#Fruchter91,https://doi.org/10.1016/0005-1098(91)90107-D +Mojtaba Zarei,Arc Length based Maximal Lyapunov Functions and domains of attraction estimation for polynomial nonlinear systems.,2018,90,Automatica,,db/journals/automatica/automatica90.html#ZareiKB18,https://doi.org/10.1016/j.automatica.2017.12.056 +Jorge Cortés,Distributed algorithms for reaching consensus on general functions.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#Cortes08,https://doi.org/10.1016/j.automatica.2007.07.022 +W. Steven Gray,Left inversion of analytic nonlinear SISO systems via formal power series methods.,2014,50,Automatica,9,db/journals/automatica/automatica50.html#GrayET14,https://doi.org/10.1016/j.automatica.2014.07.017 +Derui Ding,Event-triggered consensus control for discrete-time stochastic multi-agent systems: The input-to-state stability in probability.,2015,62,Automatica,,db/journals/automatica/automatica62.html#DingWSW15,https://doi.org/10.1016/j.automatica.2015.09.037 +Jiahu Qin,Cluster consensus control of generic linear multi-agent systems under directed topology with acyclic partition.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#QinY13,https://doi.org/10.1016/j.automatica.2013.06.017 +Xu Zhang 0007,Adaptive control of time-delay cascade systems with unknown parameters by partial state feedback.,2018,94,Automatica,,db/journals/automatica/automatica94.html#ZhangLL18,https://doi.org/10.1016/j.automatica.2018.04.007 +P. M. Mills,A practical study of adaptive control of an alumina calciner.,1991,27,Automatica,3,db/journals/automatica/automatica27.html#MillsLM91,https://doi.org/10.1016/0005-1098(91)90102-8 +Jie Yu,Optimal induced l1-norm state feedback control.,1999,35,Automatica,5,db/journals/automatica/automatica35.html#YuS99,https://doi.org/10.1016/S0005-1098(98)00214-3 +Peter B. Goldsmith,"Author's reply to ""Comments on 'On the Equivalence of Causal LTI Iterative Learning Control and Feedback Control""'.",2004,40,Automatica,5,db/journals/automatica/automatica40.html#Goldsmith04,https://doi.org/10.1016/j.automatica.2003.12.018 +Huiping Li,Robust H∞ filtering for nonlinear stochastic systems with uncertainties and Markov delays.,2012,48,Automatica,1,db/journals/automatica/automatica48.html#LiS12,https://doi.org/10.1016/j.automatica.2011.09.045 +Hongjiu Yang,Low frequency positive real control for delta operator systems.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#YangX12,https://doi.org/10.1016/j.automatica.2012.05.045 +Anna Patete,Self-tuning control based on generalized minimum variance criterion for auto-regressive models.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#PateteFT08,https://doi.org/10.1016/j.automatica.2007.11.008 +Petre Stoica,Analysis of an output error identification algorithm.,1981,17,Automatica,6,db/journals/automatica/automatica17.html#StoicaS81,https://doi.org/10.1016/0005-1098(81)90074-1 +Raphaël M. Jungers,Fast computation of minimal elementary decompositions of metabolic flux vectors.,2011,47,Automatica,6,db/journals/automatica/automatica47.html#JungersZBWB11,https://doi.org/10.1016/j.automatica.2011.01.011 +Robert Schmid,Limitations of nonlinear discrete periodic control for disturbance attenuation and robust stabilization.,2006,42,Automatica,12,db/journals/automatica/automatica42.html#Schmid06,https://doi.org/10.1016/j.automatica.2006.06.024 +Salah Laghrouche,Higher order sliding mode control based on integral sliding mode.,2007,43,Automatica,3,db/journals/automatica/automatica43.html#LaghrouchePG07,https://doi.org/10.1016/j.automatica.2006.09.017 +Florian A. Bayer,Robust economic Model Predictive Control using stochastic information.,2016,74,Automatica,,db/journals/automatica/automatica74.html#BayerLMA16,https://doi.org/10.1016/j.automatica.2016.08.008 +Christian Commault,Minimal structure in the block decoupling problem with stability.,1991,27,Automatica,2,db/journals/automatica/automatica27.html#CommaultDT91,https://doi.org/10.1016/0005-1098(91)90081-C +Jay H. Lee,State-space interpretation of model predictive control.,1994,30,Automatica,4,db/journals/automatica/automatica30.html#LeeMG94,https://doi.org/10.1016/0005-1098(94)90159-7 +Ngoc-Tu Trinh,Output regulation for a cascaded network of 2 and** 2 hyperbolic systems with PI controller.,2018,91,Automatica,,db/journals/automatica/automatica91.html#TrinhAX18,https://doi.org/10.1016/j.automatica.2018.01.010 +Ebrahim Moradi Shahrivar,Spectral and structural properties of random interdependent networks.,2017,83,Automatica,,db/journals/automatica/automatica83.html#ShahrivarPS17,https://doi.org/10.1016/j.automatica.2017.06.024 +Christopher Edwards,Anti-windup and bumpless-transfer schemes.,1998,34,Automatica,2,db/journals/automatica/automatica34.html#EdwardsP98,https://doi.org/10.1016/S0005-1098(97)00165-9 +Vikram Krishnamurthy,Filters for estimating Markov modulated poisson processes and image-based tracking.,1997,33,Automatica,5,db/journals/automatica/automatica33.html#KrishnamurthyE97,https://doi.org/10.1016/S0005-1098(96)00257-9 +Karl Henrik Johansson,Interaction bounds in multivariable control systems.,2002,38,Automatica,6,db/journals/automatica/automatica38.html#Johansson02,https://doi.org/10.1016/S0005-1098(01)00285-0 +PooGyeon Park,Output feedback variable structure control for linear systems with uncertainties and disturbances.,2007,43,Automatica,1,db/journals/automatica/automatica43.html#ParkCK07,https://doi.org/10.1016/j.automatica.2006.07.015 +Xavier Bombois,Robustness analysis tools for an uncertainty set obtained by prediction error identification.,2001,37,Automatica,10,db/journals/automatica/automatica37.html#BomboisGSA01,https://doi.org/10.1016/S0005-1098(01)00104-2 +Magdi S. Mahmoud,Observer-based positive real control of uncertain linear systems.,1999,35,Automatica,4,db/journals/automatica/automatica35.html#MahmoudSX99,https://doi.org/10.1016/S0005-1098(98)00216-7 +Jan-Willem van Wingerden,Subspace identification of Bilinear and LPV systems for open- and closed-loop data.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#WingerdenV09,https://doi.org/10.1016/j.automatica.2008.08.015 +PooGyeon Park,Constrained RHC for LPV systems with bounded rates of parameter variations.,2004,40,Automatica,5,db/journals/automatica/automatica40.html#ParkJ04,https://doi.org/10.1016/j.automatica.2003.12.016 +J. Zeng,Control relevant estimation of plant and disturbance dynamics.,2006,42,Automatica,11,db/journals/automatica/automatica42.html#ZengC06,https://doi.org/10.1016/j.automatica.2006.06.012 +Lilian K. Carvalho,Robust diagnosis of discrete event systems against intermittent loss of observations.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#CarvalhoBM12,https://doi.org/10.1016/j.automatica.2012.06.042 +Taha Boukhobza,Observability analysis and sensor location study for structured linear systems in descriptor form with unknown inputs.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#BoukhobzaH11a,https://doi.org/10.1016/j.automatica.2011.08.048 +Yuji Kakutani,LMI representation of the shifted Popov criterion.,2000,36,Automatica,5,db/journals/automatica/automatica36.html#KakutaniHA00,https://doi.org/10.1016/S0005-1098(99)00190-9 +Etienne Lucien,Observer synthesis under time-varying sampling for Lipschitz nonlinear systems.,2017,85,Automatica,,db/journals/automatica/automatica85.html#EtienneHEP17,https://doi.org/10.1016/j.automatica.2017.07.050 +Leonid Naimark,Stabilizability considerations and design of rational controllers for a class of time-delay systems.,2000,36,Automatica,3,db/journals/automatica/automatica36.html#NaimarkKZ00,https://doi.org/10.1016/S0005-1098(99)00189-2 +Philip Holmes,Bifurcation to divergence and flutter in flow-induced oscillations: an infinite dimensional analysis.,1978,14,Automatica,4,db/journals/automatica/automatica14.html#HolmesM78,https://doi.org/10.1016/0005-1098(78)90036-5 +Zi Qiang Lang,Output frequency response function of nonlinear Volterra systems.,2007,43,Automatica,5,db/journals/automatica/automatica43.html#LangBYL07,https://doi.org/10.1016/j.automatica.2006.11.013 +Huibert Kwakernaak,Introduction to the special section.,1994,30,Automatica,4,db/journals/automatica/automatica30.html#Kwakernaak94a,https://doi.org/10.1016/0005-1098(94)90141-4 +Tarek Hamel,Image based visual servo control for a class of aerial robotic systems.,2007,43,Automatica,11,db/journals/automatica/automatica43.html#HamelM07,https://doi.org/10.1016/j.automatica.2007.03.030 +Jung-Min Yang,Fault-tolerant control of a class of asynchronous sequential machines with permanent faults.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#Yang14,https://doi.org/10.1016/j.automatica.2013.12.034 +Kaushik Mahata,Modeling continuous-time processes via input-to-state filters.,2006,42,Automatica,7,db/journals/automatica/automatica42.html#MahataF06,https://doi.org/10.1016/j.automatica.2006.02.014 +Chen Wang,Convergence properties of constrained linear system under MPC control law using affine disturbance feedback.,2009,45,Automatica,7,db/journals/automatica/automatica45.html#WangOS09,https://doi.org/10.1016/j.automatica.2009.03.002 +Juan C. Agüero,A virtual closed loop method for closed loop identification.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#AgueroGH11,https://doi.org/10.1016/j.automatica.2011.04.014 +J. C. Kollodge,Advanced star tracker design using the charge injection device.,1984,20,Automatica,6,db/journals/automatica/automatica20.html#KollodgeS84,https://doi.org/10.1016/0005-1098(84)90087-6 +Iman Saboori,Actuator fault accommodation strategy for a team of multi-agent systems subject to switching topology.,2015,62,Automatica,,db/journals/automatica/automatica62.html#SabooriK15,https://doi.org/10.1016/j.automatica.2015.09.025 +Zhengqiang Zhang,Observer design for uncertain nonlinear systems with unmodeled dynamics.,2015,51,Automatica,,db/journals/automatica/automatica51.html#ZhangX15,https://doi.org/10.1016/j.automatica.2014.10.068 +Bengt Lindoff,Exact distribution and moments for the RLS estimate in a time-varying AR(1) process.,1996,32,Automatica,3,db/journals/automatica/automatica32.html#LindoffH96,https://doi.org/10.1016/0005-1098(95)00154-9 +Yuxin Su,Robust finite-time output feedback control of perturbed double integrator.,2015,60,Automatica,,db/journals/automatica/automatica60.html#SuZ15,https://doi.org/10.1016/j.automatica.2015.07.008 +M. S. Ahmed,An innovation representation for nonlinear systems with application to parameter and state estimation.,1994,30,Automatica,12,db/journals/automatica/automatica30.html#Ahmed94,https://doi.org/10.1016/0005-1098(94)90058-2 +Liang Dai,On the nuclear norm heuristic for a Hankel matrix completion problem.,2015,51,Automatica,,db/journals/automatica/automatica51.html#DaiP15,https://doi.org/10.1016/j.automatica.2014.10.045 +Xiao Yu,Distributed circular formation control of ring-networked nonholonomic vehicles.,2016,68,Automatica,,db/journals/automatica/automatica68.html#YuL16,https://doi.org/10.1016/j.automatica.2016.01.056 +Chao Sun 0003,Robust finite-time connectivity preserving coordination of second-order multi-agent systems.,2018,89,Automatica,,db/journals/automatica/automatica89.html#SunHXE18,https://doi.org/10.1016/j.automatica.2017.11.020 +Fulvio Forni,Reset passivation of nonlinear controllers via a suitable time-regular reset map.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#ForniNZ11,https://doi.org/10.1016/j.automatica.2011.06.022 +Chuangchuang Sun,Rank-constrained optimization and its applications.,2017,82,Automatica,,db/journals/automatica/automatica82.html#SunD17,https://doi.org/10.1016/j.automatica.2017.04.039 +Luca Zaccarian,Dynamic allocation for input redundant control systems.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#Zaccarian09,https://doi.org/10.1016/j.automatica.2009.01.013 +W. J. Edwards,Coating mass control system design for a continuous galvanizing line.,1976,12,Automatica,3,db/journals/automatica/automatica12.html#EdwardsCHEM76,https://doi.org/10.1016/0005-1098(76)90022-4 +Rabah Ammour,Fault prognosis of timed stochastic discrete event systems with bounded estimation error.,2017,82,Automatica,,db/journals/automatica/automatica82.html#AmmourLSL17,https://doi.org/10.1016/j.automatica.2017.04.028 +Mario Sznaier,"An analog ""neural net"" based suboptimal controller for constrained discrete-time linear systems.",1992,28,Automatica,1,db/journals/automatica/automatica28.html#SznaierD92,https://doi.org/10.1016/0005-1098(92)90013-6 +Alex Esbrook,An indirect adaptive servocompensator for signals of unknown frequencies with application to nanopositioning.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#EsbrookTK13,https://doi.org/10.1016/j.automatica.2013.03.016 +John B. Moore,On robustness to noise of least squares based adaptive control.,1987,23,Automatica,2,db/journals/automatica/automatica23.html#MooreC87,https://doi.org/10.1016/0005-1098(87)90092-6 +B. Drazenovic,The invariance conditions in variable structure systems.,1969,5,Automatica,3,db/journals/automatica/automatica5.html#Drazenovic69,https://doi.org/10.1016/0005-1098(69)90071-5 +Corrado Possieri,Asymptotic stability in probability for Stochastic Boolean Networks.,2017,83,Automatica,,db/journals/automatica/automatica83.html#PossieriT17,https://doi.org/10.1016/j.automatica.2017.04.040 +Tung-Sang Ng,Optimal experiment design for linear systems with input-output constraints.,1977,13,Automatica,6,db/journals/automatica/automatica13.html#NgGS77,https://doi.org/10.1016/0005-1098(77)90078-4 +Alán Tapia,An LMI approach for second-order sliding set design using piecewise Lyapunov functions.,2017,79,Automatica,,db/journals/automatica/automatica79.html#TapiaBF17,https://doi.org/10.1016/j.automatica.2017.02.014 +Chee-Fai Yung,Hinfinity controller reduction for nonlinear systems.,2001,37,Automatica,11,db/journals/automatica/automatica37.html#YungW01,https://doi.org/10.1016/S0005-1098(01)00132-7 +Jietae Lee,ISE tuning rule revisited.,2004,40,Automatica,8,db/journals/automatica/automatica40.html#LeeE04,https://doi.org/10.1016/j.automatica.2004.03.008 +Qikun Shen,Distributed command filtered backstepping consensus tracking control of nonlinear multiple-agent systems in strict-feedback form.,2015,53,Automatica,,db/journals/automatica/automatica53.html#ShenS15,https://doi.org/10.1016/j.automatica.2014.12.046 +Yanling Wei 0001,Sliding mode control for semi-Markovian jump systems via output feedback.,2017,81,Automatica,,db/journals/automatica/automatica81.html#WeiPQWJ17,https://doi.org/10.1016/j.automatica.2017.03.032 +Mou Chen,Adaptive tracking control of uncertain MIMO nonlinear systems with input constraints.,2011,47,Automatica,3,db/journals/automatica/automatica47.html#ChenGR11,https://doi.org/10.1016/j.automatica.2011.01.025 +Alena Halousková,Adaptive cross-direction control of paper basis weight.,1993,29,Automatica,2,db/journals/automatica/automatica29.html#HalouskovaKN93,https://doi.org/10.1016/0005-1098(93)90133-E +Shin-Yeu Lin,Complete decomposition algorithm for nonconvex separable optimization problems and applications.,1992,28,Automatica,6,db/journals/automatica/automatica28.html#Lin92,https://doi.org/10.1016/0005-1098(92)90069-R +Kees A. Immink,Controller design based on a limit criterion.,1976,12,Automatica,6,db/journals/automatica/automatica12.html#ImminkN76,https://doi.org/10.1016/0005-1098(76)90044-3 +J. L. Calvet,Overlapping vs partitioning in block-iteration methods: Application in large-scale system theory.,1989,25,Automatica,1,db/journals/automatica/automatica25.html#CalvetT89,https://doi.org/10.1016/0005-1098(89)90130-1 +Ying Zhang,Indirect closed-loop identification by optimal instrumental variable method.,1997,33,Automatica,12,db/journals/automatica/automatica33.html#ZhangWS97,https://doi.org/10.1016/S0005-1098(97)00152-0 +Joseph J. Winkin,Dynamical analysis of distributed parameter tubular reactors.,2000,36,Automatica,3,db/journals/automatica/automatica36.html#WinkinDL00,https://doi.org/10.1016/S0005-1098(99)00170-3 +Jacob Engwerda,Feedback Nash equilibria for linear quadratic descriptor differential games.,2012,48,Automatica,4,db/journals/automatica/automatica48.html#EngwerdaS12,https://doi.org/10.1016/j.automatica.2012.01.004 +J. V. Candy,Plasma estimation: A noise cancelling application.,1986,22,Automatica,2,db/journals/automatica/automatica22.html#CandyCK86,https://doi.org/10.1016/0005-1098(86)90084-1 +Giulio Bottegal,Regularized spectrum estimation using stable spline kernels.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#BottegalP13,https://doi.org/10.1016/j.automatica.2013.08.010 +Leonardo Azevedo Scardua,Complete offline tuning of the unscented Kalman filter.,2017,80,Automatica,,db/journals/automatica/automatica80.html#ScarduaC17,https://doi.org/10.1016/j.automatica.2017.01.008 +Guodong Shi,Global target aggregation and state agreement of nonlinear multi-agent systems with switching topologies.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#ShiH09,https://doi.org/10.1016/j.automatica.2008.12.015 +S. A. Soliman,Optimization of hydropower systems operation with a quadratic model.,1988,24,Automatica,2,db/journals/automatica/automatica24.html#SolimanC88,https://doi.org/10.1016/0005-1098(88)90034-9 +Joaquín Carrasco,Equivalence between classes of multipliers for slope-restricted nonlinearities.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#CarrascoHL13,https://doi.org/10.1016/j.automatica.2013.02.012 +H. Raghav Rao,Two schemes for information acquisition: An entropic assessment.,1994,30,Automatica,5,db/journals/automatica/automatica30.html#Rao94,https://doi.org/10.1016/0005-1098(94)90170-8 +Pablo Millán,Distributed consensus-based estimation considering network induced delays and dropouts.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#MillanOVR12,https://doi.org/10.1016/j.automatica.2012.06.093 +Rushikesh Kamalapurkar,Model-based reinforcement learning for approximate optimal regulation.,2016,64,Automatica,,db/journals/automatica/automatica64.html#KamalapurkarWD16,https://doi.org/10.1016/j.automatica.2015.10.039 +Duo Han,Optimal sensor scheduling for multiple linear dynamical systems.,2017,75,Automatica,,db/journals/automatica/automatica75.html#HanWZS17,https://doi.org/10.1016/j.automatica.2016.09.015 +Nicholas Cox,Isolating invisible dynamics in the design of robust hybrid internal models.,2016,68,Automatica,,db/journals/automatica/automatica68.html#CoxMT16,https://doi.org/10.1016/j.automatica.2016.01.050 +Miki Livne,Proper discretization of homogeneous differentiators.,2014,50,Automatica,8,db/journals/automatica/automatica50.html#LivneL14,https://doi.org/10.1016/j.automatica.2014.05.028 +Carlos Canudas de Wit,Robust control for servo-mechanisms under inexact friction compensation.,1993,29,Automatica,3,db/journals/automatica/automatica29.html#Wit93,https://doi.org/10.1016/0005-1098(93)90070-A +Mohammad Bozorg,Domains of PID controller coefficients which guarantee stability and performance for LTI time-delay systems.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#BozorgT11,https://doi.org/10.1016/j.automatica.2011.06.002 +Vincent Léchappé,New predictive scheme for the control of LTI systems with input delay and unknown disturbances.,2015,52,Automatica,,db/journals/automatica/automatica52.html#LechappeMPGC15,https://doi.org/10.1016/j.automatica.2014.11.003 +Gang George Yin,Tracking and identification of regime-switching systems using binary sensors.,2009,45,Automatica,4,db/journals/automatica/automatica45.html#YinWK09,https://doi.org/10.1016/j.automatica.2008.11.025 +Yuanjin Liu,Near-optimal controls of random-switching LQ problems with indefinite control weight costs.,2005,41,Automatica,6,db/journals/automatica/automatica41.html#LiuYZ05,https://doi.org/10.1016/j.automatica.2005.01.002 +Alberto Bemporad,Multiobjective model predictive control.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#BemporadP09,https://doi.org/10.1016/j.automatica.2009.09.032 +Håkan Hjalmarsson,From experiment design to closed-loop control.,2005,41,Automatica,3,db/journals/automatica/automatica41.html#Hjalmarsson05,https://doi.org/10.1016/j.automatica.2004.11.021 +Nader Meskin,Fault Detection and Isolation of discrete-time Markovian jump linear systems with application to a network of multi-agent systems having imperfect communication channels.,2009,45,Automatica,9,db/journals/automatica/automatica45.html#MeskinK09a,https://doi.org/10.1016/j.automatica.2009.04.020 +Antonio González 0004,Predictor-based stabilization of discrete time-varying input-delay systems.,2012,48,Automatica,2,db/journals/automatica/automatica48.html#GonzalezSA12,https://doi.org/10.1016/j.automatica.2011.10.005 +Sheng-Li Du,Pursuing an evader through cooperative relaying in multi-agent surveillance networks.,2017,83,Automatica,,db/journals/automatica/automatica83.html#DuSCW17,https://doi.org/10.1016/j.automatica.2017.06.022 +Ligang Wu,I filtering for 2D Markovian jump systems.,2008,44,Automatica,7,db/journals/automatica/automatica44.html#WuSGW08,https://doi.org/10.1016/j.automatica.2007.10.027 +Grzegorz J. Kulawski,Stable adaptive control with recurrent networks.,2000,36,Automatica,1,db/journals/automatica/automatica36.html#KulawskiB00,https://doi.org/10.1016/S0005-1098(99)00092-8 +A. Niemi,IFAC symposium in Israel.,1969,5,Automatica,1,db/journals/automatica/automatica5.html#Niemi69,https://doi.org/10.1016/0005-1098(69)90049-1 +Xiaojing Zhang,Robust optimal control with adjustable uncertainty sets.,2017,75,Automatica,,db/journals/automatica/automatica75.html#ZhangKGGL17,https://doi.org/10.1016/j.automatica.2016.09.016 +Maiying Zhong,Optimal fault detection for linear discrete time-varying systems.,2010,46,Automatica,8,db/journals/automatica/automatica46.html#ZhongDD10,https://doi.org/10.1016/j.automatica.2010.05.022 +Thananchai Leephakpreeda,Hinfinity stability robustness of fuzzy control systems.,1999,35,Automatica,8,db/journals/automatica/automatica35.html#Leephakpreeda99,https://doi.org/10.1016/S0005-1098(99)00043-6 +Tomislav B. Sekara,Relay-based critical point estimation of a process with the PID controller in the loop.,2011,47,Automatica,5,db/journals/automatica/automatica47.html#SekaraM11,https://doi.org/10.1016/j.automatica.2011.02.010 +Matthew C. Turner,Improving sector-based results for systems with dead-zone nonlinearities and constrained control applications.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#TurnerHP09,https://doi.org/10.1016/j.automatica.2008.05.031 +Michel Malabre,On the fixed poles for disturbance rejection.,1997,33,Automatica,6,db/journals/automatica/automatica33.html#MalabreMD97,https://doi.org/10.1016/S0005-1098(97)00043-5 +Ian A. Henderson,Symbolic codes for multifrequency binary testing of control systems.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#HendersonM93,https://doi.org/10.1016/0005-1098(93)90016-M +Kenji Fujimoto,Trajectory tracking control of port-controlled Hamiltonian systems via generalized canonical transformations.,2003,39,Automatica,12,db/journals/automatica/automatica39.html#FujimotoSS03,https://doi.org/10.1016/j.automatica.2003.07.005 +Masato Inagaki,Nonisomorphic classes of inhomogeneous bilinear realizations: Realizability and existence.,1980,16,Automatica,1,db/journals/automatica/automatica16.html#InagakiF80,https://doi.org/10.1016/0005-1098(80)90092-8 +Ssu-Hsin Yu,Stable Neural Controllers for Nonlinear Dynamic Systems.,1998,34,Automatica,5,db/journals/automatica/automatica34.html#YuA98,https://doi.org/10.1016/S0005-1098(98)00012-0 +Kurt S. Riedel,Block diagonally dominant positive definite approximate filters and smoothers.,1993,29,Automatica,3,db/journals/automatica/automatica29.html#Riedel93,https://doi.org/10.1016/0005-1098(93)90074-4 +B. Fardanesh,Two-step optimal thermal generation scheduling.,1986,22,Automatica,3,db/journals/automatica/automatica22.html#FardaneshV86,https://doi.org/10.1016/0005-1098(86)90034-8 +Yuan Gong Sun,On stability of a class of switched nonlinear systems.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#SunW13,https://doi.org/10.1016/j.automatica.2012.10.011 +Robert E. Larson,Applications of dynamic programming to the control of water resource systems.,1969,5,Automatica,1,db/journals/automatica/automatica5.html#LarsonK69,https://doi.org/10.1016/0005-1098(69)90050-8 +Naoki Yamamoto,Feedback control of quantum entanglement in a two-spin system.,2007,43,Automatica,6,db/journals/automatica/automatica43.html#YamamotoTH07,https://doi.org/10.1016/j.automatica.2006.12.008 +Graham C. Goodwin,Control system principles and design : Ernest O. Doebelin.,1988,24,Automatica,1,db/journals/automatica/automatica24.html#Goodwin88,https://doi.org/10.1016/0005-1098(88)90017-9 +Panagiotis Patrinos,Convex parametric piecewise quadratic optimization: Theory and algorithms.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#PatrinosS11,https://doi.org/10.1016/j.automatica.2011.04.003 +Airong Wei,Stabilization and Hinfinity control of nonlinear port-controlled Hamiltonian systems subject to actuator saturation.,2010,46,Automatica,12,db/journals/automatica/automatica46.html#WeiW10,https://doi.org/10.1016/j.automatica.2010.08.001 +A. J. Shaiju,A formula for the optimal cost in the general discrete-time LEQG problem.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#ShaijuP09,https://doi.org/10.1016/j.automatica.2009.06.029 +Lubomír Bakule,Decentralized H-infinity control of complex systems with delayed feedback.,2016,67,Automatica,,db/journals/automatica/automatica67.html#BakuleRP16,https://doi.org/10.1016/j.automatica.2016.01.013 +K. Khorasani,Asymptotic stability of nonlinear singularly perturbed systems using higher order corrections.,1985,21,Automatica,6,db/journals/automatica/automatica21.html#KhorasaniP85,https://doi.org/10.1016/0005-1098(85)90045-7 +Jun Li 0011,Robust control reconfiguration of resource allocation systems with Petri nets and integer programming.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#LiZGGD14,https://doi.org/10.1016/j.automatica.2013.12.015 +Xiaodong Xu,Output regulation for a class of linear boundary controlled first-order hyperbolic PIDE systems.,2017,85,Automatica,,db/journals/automatica/automatica85.html#XuD17a,https://doi.org/10.1016/j.automatica.2017.07.036 +Ziad Alkhoury,Identifiability of affine linear parameter-varying models.,2017,80,Automatica,,db/journals/automatica/automatica80.html#AlkhouryPM17,https://doi.org/10.1016/j.automatica.2017.01.029 +Tingshu Hu,An analysis and design method for linear systems subject to actuator saturation and disturbance.,2002,38,Automatica,2,db/journals/automatica/automatica38.html#HuLC02,https://doi.org/10.1016/S0005-1098(01)00209-6 +Axel Munack,Application of decomposition/coordination methods to parameter identification problems in interconnected distributed parameter systems.,1986,22,Automatica,1,db/journals/automatica/automatica22.html#MunackT86,https://doi.org/10.1016/0005-1098(86)90111-1 +Joachim Deutscher,Output regulation for linear distributed-parameter systems using finite-dimensional dual observers.,2011,47,Automatica,11,db/journals/automatica/automatica47.html#Deutscher11,https://doi.org/10.1016/j.automatica.2011.08.033 +Shengyuan Xu,Robust stabilization for uncertain discrete singular systems.,2001,37,Automatica,5,db/journals/automatica/automatica37.html#XuYNL01,https://doi.org/10.1016/S0005-1098(01)00013-9 +Yen-Chen Liu,Control of semi-autonomous teleoperation system with time delays.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#LiuC13,https://doi.org/10.1016/j.automatica.2013.02.009 +Paul M. J. Van den Hof,Delay structure conditions for identifiability of closed loop systems.,1992,28,Automatica,5,db/journals/automatica/automatica28.html#HofVS92,https://doi.org/10.1016/0005-1098(92)90161-8 +Konstantinos G. Arvanitis,On the Localization of Intersample Ripples of Linear Systems Controlled by Generalized Sampled-Data Hold Functions.,1998,34,Automatica,8,db/journals/automatica/automatica34.html#Arvanitis98,https://doi.org/10.1016/S0005-1098(98)00041-7 +Pasquale Lucibello,Output zeroing with internal stability by learning.,1995,31,Automatica,11,db/journals/automatica/automatica31.html#Lucibello95a,https://doi.org/10.1016/0005-1098(95)00081-7 +Yongqiang Wang,On influences of global and local cues on the rate of synchronization of oscillator networks.,2011,47,Automatica,6,db/journals/automatica/automatica47.html#WangD11,https://doi.org/10.1016/j.automatica.2011.01.074 +M. Yazdani,On the existence of periodic solutions in time-invariant fractional order systems.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#YazdaniS11,https://doi.org/10.1016/j.automatica.2011.04.013 +Dragoslav D. Siljak,Robust D-stability via positivity.,1999,35,Automatica,8,db/journals/automatica/automatica35.html#SiljakS99,https://doi.org/10.1016/S0005-1098(99)00042-4 +D. Metz,Near time-optimal control of racing vehicles.,1989,25,Automatica,6,db/journals/automatica/automatica25.html#MetzW89,https://doi.org/10.1016/0005-1098(89)90052-6 +Wail Gueaieb,Robust computationally efficient control of cooperative closed-chain manipulators with uncertain dynamics.,2007,43,Automatica,5,db/journals/automatica/automatica43.html#GueaiebAB07,https://doi.org/10.1016/j.automatica.2006.10.025 +Hamid M. Faridani,Performance of kalman filter with missing measurements.,1986,22,Automatica,1,db/journals/automatica/automatica22.html#Faridani86,https://doi.org/10.1016/0005-1098(86)90112-3 +Jong Min Lee 0002,Approximate dynamic programming-based approaches for input-output data-driven control of nonlinear processes.,2005,41,Automatica,7,db/journals/automatica/automatica41.html#LeeL05,https://doi.org/10.1016/j.automatica.2005.02.006 +V. Dos Santos,Boundary control with integral action for hyperbolic systems of conservation laws: Stability and experiments.,2008,44,Automatica,5,db/journals/automatica/automatica44.html#SantosBCD08,https://doi.org/10.1016/j.automatica.2007.09.022 +Panagiotis Tsiotras,Control of underactuated spacecraft with bounded inputs.,2000,36,Automatica,8,db/journals/automatica/automatica36.html#TsiotrasL00,https://doi.org/10.1016/S0005-1098(00)00025-X +Mattia Zorzi,The harmonic analysis of kernel functions.,2018,94,Automatica,,db/journals/automatica/automatica94.html#ZorziC18,https://doi.org/10.1016/j.automatica.2018.04.015 +Diego S. Carrasco,Connecting filtering and control sensitivity functions.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#CarrascoG14,https://doi.org/10.1016/j.automatica.2014.10.042 +D. F. Wilkie,Design of model following systems using the companion transformation.,1969,5,Automatica,5,db/journals/automatica/automatica5.html#WilkieP69a,https://doi.org/10.1016/0005-1098(69)90028-4 +Dean Richert,Optimal leader allocation in UAV formation pairs ensuring cooperation.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#RichertC13,https://doi.org/10.1016/j.automatica.2013.07.030 +Dao Yi Xu,Robust stability of neutral delay differential systems.,1994,30,Automatica,4,db/journals/automatica/automatica30.html#Xu94,https://doi.org/10.1016/0005-1098(94)90158-9 +Clive Marsh,Robustness bounds for systems with parametric uncertainty.,1996,32,Automatica,10,db/journals/automatica/automatica32.html#MarshW96,https://doi.org/10.1016/0005-1098(96)00094-5 +Er-Wei Bai,Zeros of sampled data systems represented by FIR models.,2000,36,Automatica,1,db/journals/automatica/automatica36.html#BaiD00,https://doi.org/10.1016/S0005-1098(99)00109-0 +J.-L. Lin,λ6*-K iteration: A new algorithm for and#956*-synthesis.,1993,29,Automatica,1,db/journals/automatica/automatica29.html#LinPG93,https://doi.org/10.1016/0005-1098(93)90185-V +Yu-Ping Tian,High-order consensus of heterogeneous multi-agent systems with unknown communication delays.,2012,48,Automatica,6,db/journals/automatica/automatica48.html#TianZ12,https://doi.org/10.1016/j.automatica.2012.03.017 +Yuri B. Shtessel,Smooth second-order sliding modes: Missile guidance application.,2007,43,Automatica,8,db/journals/automatica/automatica43.html#ShtesselSL07,https://doi.org/10.1016/j.automatica.2007.01.008 +Gautam Kumar,Sensitivity of linear systems to input orientation and novelty.,2018,93,Automatica,,db/journals/automatica/automatica93.html#KumarMC18,https://doi.org/10.1016/j.automatica.2018.03.006 +H. Maeda,Infinite gain margin problem in multivariable feedback systems.,1986,22,Automatica,1,db/journals/automatica/automatica22.html#MaedaV86,https://doi.org/10.1016/0005-1098(86)90115-9 +Dequan Li,"Erratum to ""Consensus seeking over directed networks with limited information communication"" [Automatica 49 (2) (2013) 610-618].",2014,50,Automatica,9,db/journals/automatica/automatica50.html#LiLWL14,https://doi.org/10.1016/j.automatica.2014.07.026 +Riccardo Marino,A nonlinear tracking control for sensorless induction motors.,2005,41,Automatica,6,db/journals/automatica/automatica41.html#MarinoTV05,https://doi.org/10.1016/j.automatica.2005.01.015 +Yibing Wang,An adaptive freeway traffic state estimator.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#WangPMCTN09,https://doi.org/10.1016/j.automatica.2008.05.019 +Leonardo C. Kammer,Stability assessment for cautious iterative controller tuning.,2005,41,Automatica,10,db/journals/automatica/automatica41.html#Kammer05,https://doi.org/10.1016/j.automatica.2005.04.023 +Bernard C. Levy,A scattering framework for decentralized estimation problems.,1983,19,Automatica,4,db/journals/automatica/automatica19.html#LevyCVW83,https://doi.org/10.1016/0005-1098(83)90051-1 +Sunan Huang 0001,Decentralized control of a class of large-scale nonlinear systems using neural networks.,2005,41,Automatica,9,db/journals/automatica/automatica41.html#HuangTL05,https://doi.org/10.1016/j.automatica.2005.02.010 +Sergei V. Gusev,Minimax control under a bound on the partial covariance sequence of the disturbance.,1995,31,Automatica,9,db/journals/automatica/automatica31.html#Gusev95,https://doi.org/10.1016/0005-1098(95)00018-R +R. Medding,Simulation and design of the control system for a 1200 ton coal dredger.,1969,5,Automatica,5,db/journals/automatica/automatica5.html#Medding69,https://doi.org/10.1016/0005-1098(69)90025-9 +Tetsuya Asai,Simultaneous parametric uncertainty modeling and robust control synthesis by LFT scaling.,2000,36,Automatica,10,db/journals/automatica/automatica36.html#AsaiHI00,https://doi.org/10.1016/S0005-1098(00)00061-3 +Hiroaki Fukushima,Adaptive model predictive control for a class of constrained linear systems based on the comparison model.,2007,43,Automatica,2,db/journals/automatica/automatica43.html#FukushimaKS07,https://doi.org/10.1016/j.automatica.2006.08.026 +Enrique Zuazua,Averaged control.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#Zuazua14,https://doi.org/10.1016/j.automatica.2014.10.054 +Petar Crnosija,Sensitivity model and synthesis of dead-beat algorithms in digital servosystems.,1994,30,Automatica,8,db/journals/automatica/automatica30.html#CrnosijaBK94,https://doi.org/10.1016/0005-1098(94)90114-7 +Yue-E Wang,Stability of switched nonlinear systems with delay and disturbance.,2016,69,Automatica,,db/journals/automatica/automatica69.html#WangSM16,https://doi.org/10.1016/j.automatica.2016.02.015 +Gang Zheng,Unknown input observer for linear time-delay systems.,2015,61,Automatica,,db/journals/automatica/automatica61.html#ZhengBPR15,https://doi.org/10.1016/j.automatica.2015.07.029 +Wei He 0001,Adaptive boundary control of a flexible marine installation system.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#HeGZ11,https://doi.org/10.1016/j.automatica.2011.09.025 +Duan Li 0002,Cost smoothing in discrete-time linear-quadratic control.,1997,33,Automatica,3,db/journals/automatica/automatica33.html#LiS97,https://doi.org/10.1016/S0005-1098(96)00171-9 +Giacomo Tortora,Fault-accommodation with intelligent sensors.,2003,39,Automatica,7,db/journals/automatica/automatica39.html#TortoraKC03,https://doi.org/10.1016/S0005-1098(03)00088-8 +Antonio Sala 0001,Optimisation of transient and ultimate inescapable sets with polynomial boundaries for nonlinear systems.,2016,73,Automatica,,db/journals/automatica/automatica73.html#SalaP16,https://doi.org/10.1016/j.automatica.2016.06.017 +Silvere Bonnabel,Observer-based Hamiltonian identification for quantum systems.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#BonnabelMR09,https://doi.org/10.1016/j.automatica.2008.12.007 +Jiahu Qin,On leaderless and leader-following consensus for interacting clusters of second-order multi-agent systems.,2016,74,Automatica,,db/journals/automatica/automatica74.html#QinYA16,https://doi.org/10.1016/j.automatica.2016.07.008 +Ian J. Couchman,Model reduction of homogeneous-in-the-state bilinear systems with input constraints.,2011,47,Automatica,4,db/journals/automatica/automatica47.html#CouchmanKB11,https://doi.org/10.1016/j.automatica.2011.01.030 +Harish J. Palanthandalam-Madapusi,Robust estimation of nonlinear constitutive law from static equilibrium data for modeling the mechanics of DNA.,2011,47,Automatica,6,db/journals/automatica/automatica47.html#Palanthandalam-MadapusiG11,https://doi.org/10.1016/j.automatica.2011.02.047 +Daniele Casagrande,Global asymptotic stabilization of the attitude and the angular rates of an underactuated non-symmetric rigid body.,2008,44,Automatica,7,db/journals/automatica/automatica44.html#CasagrandeAP08,https://doi.org/10.1016/j.automatica.2007.11.022 +A. F. Konar,Sensitivity aspects of linear digital control systems.,1969,5,Automatica,2,db/journals/automatica/automatica5.html#KonarKC69,https://doi.org/10.1016/0005-1098(69)90014-4 +Joon-Young Choi,Global stability analysis scheme for a class of nonlinear time delay systems.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#Choi09,https://doi.org/10.1016/j.automatica.2009.06.017 +Jian-Hua Ge,Robust H∞ state feedback control for linear systems with state delay and parameter uncertainty.,1996,32,Automatica,8,db/journals/automatica/automatica32.html#GeFL96,https://doi.org/10.1016/0005-1098(96)00053-2 +Rik Pintelon,Box-Jenkins identification revisited - Part III: Multivariable systems.,2007,43,Automatica,5,db/journals/automatica/automatica43.html#PintelonSG07,https://doi.org/10.1016/j.automatica.2006.11.007 +Luis G. Crespo,Stochastic optimal control via Bellman's principle.,2003,39,Automatica,12,db/journals/automatica/automatica39.html#CrespoS03,https://doi.org/10.1016/S0005-1098(03)00238-3 +Fulvio Forni,Event-triggered transmission for linear control over communication channels.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#ForniGNZ14,https://doi.org/10.1016/j.automatica.2013.11.001 +Giuseppe Carlo Calafiore,Sparse identification of posynomial models.,2015,59,Automatica,,db/journals/automatica/automatica59.html#CalafioreGN15,https://doi.org/10.1016/j.automatica.2015.06.003 +Tomomichi Hagiwara,Popov-Type Criterion for Stability of Nonlinear Sampled-Data Systems.,1998,34,Automatica,6,db/journals/automatica/automatica34.html#HagiwaraKA98,https://doi.org/10.1016/S0005-1098(98)00017-X +Zhi Guo Feng,Hybrid method for a general optimal sensor scheduling problem in discrete time.,2008,44,Automatica,5,db/journals/automatica/automatica44.html#FengTR08,https://doi.org/10.1016/j.automatica.2007.09.024 +Phan Thanh Nam,Further result on reachable set bounding for linear uncertain polytopic systems with interval time-varying delays.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#NamP11,https://doi.org/10.1016/j.automatica.2011.05.003 +B. Huang,The role of the unitary interactor matrix in the explicit solution of the singular LQ output feedback control problem.,1997,33,Automatica,11,db/journals/automatica/automatica33.html#HuangS97,https://doi.org/10.1016/S0005-1098(97)00119-2 +S.-H. Lee,Switching control of Hinfinity gain scheduled controllers in uncertain nonlinear systems.,2000,36,Automatica,7,db/journals/automatica/automatica36.html#LeeL00,https://doi.org/10.1016/S0005-1098(99)00222-8 +Li Xie,On the two-degree-of-freedom Wiener-Hopf optimal design with tracking and disturbance rejection constraints.,2000,36,Automatica,12,db/journals/automatica/automatica36.html#XieXT00,https://doi.org/10.1016/S0005-1098(00)00108-4 +Xiang Li 0009,Global task-space adaptive control of robot.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#LiC13,https://doi.org/10.1016/j.automatica.2012.07.003 +Runyi Yu,Regularizability of linear time-invariant descriptor systems under decentralized control.,2005,41,Automatica,9,db/journals/automatica/automatica41.html#Yu05,https://doi.org/10.1016/j.automatica.2005.04.002 +K. Zhang,Augmented Lagrangian method applied to American option pricing.,2006,42,Automatica,8,db/journals/automatica/automatica42.html#ZhangYT06,https://doi.org/10.1016/j.automatica.2006.01.017 +Andrew P. Sage,Linear control systems - a computer-aided approach: M. Jamshidi and M. Malek-Zavarei.,1989,25,Automatica,1,db/journals/automatica/automatica25.html#Sage89,https://doi.org/10.1016/0005-1098(89)90134-9 +G. B. Mahapatra,On convergence properties of eigenvalues of space discretized wave equations.,1977,13,Automatica,5,db/journals/automatica/automatica13.html#Mahapatra77a,https://doi.org/10.1016/0005-1098(77)90075-9 +Vladimir Gaitsgory,Stabilization of strictly dissipative discrete time systems with discounted optimal control.,2018,93,Automatica,,db/journals/automatica/automatica93.html#GaitsgoryGHKW18,https://doi.org/10.1016/j.automatica.2018.03.076 +Emmanuel Nuño,Passivity-based control for bilateral teleoperation: A tutorial.,2011,47,Automatica,3,db/journals/automatica/automatica47.html#NunoBO11,https://doi.org/10.1016/j.automatica.2011.01.004 +Quan-Gen Zhou,Recursive Identification of Time-varying Systems via Incremental Estimation.,1996,32,Automatica,10,db/journals/automatica/automatica32.html#ZhouC96,https://doi.org/10.1016/0005-1098(96)00091-X +Zhiyong Chen 0001,Robust output regulation with nonlinear exosystems.,2005,41,Automatica,8,db/journals/automatica/automatica41.html#ChenH05,https://doi.org/10.1016/j.automatica.2005.03.015 +Jun Shen 0002,Static output-feedback stabilization with optimal L1-gain for positive linear systems.,2016,63,Automatica,,db/journals/automatica/automatica63.html#ShenL16,https://doi.org/10.1016/j.automatica.2015.10.025 +Vassilis L. Syrmos,On the finite transmission zero assignment problem.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#Syrmos93,https://doi.org/10.1016/0005-1098(93)90112-7 +Chien Chern Cheah,Grasping and manipulation of a micro-particle using multiple optical traps.,2016,68,Automatica,,db/journals/automatica/automatica68.html#CheahTH16,https://doi.org/10.1016/j.automatica.2016.01.059 +José-Luis Menaldi,Optimal correction problem of a multidimensional stochastic system.,1989,25,Automatica,2,db/journals/automatica/automatica25.html#MenaldiT89,https://doi.org/10.1016/0005-1098(89)90075-7 +Francesco Alessandro Cuzzola,Explicit formulas for LMI-based H2 filtering and deconvolution.,2001,37,Automatica,9,db/journals/automatica/automatica37.html#CuzzolaF01,https://doi.org/10.1016/S0005-1098(01)00077-2 +Valery A. Ugrinovskii,Robust output feedback stabilization via risk-sensitive control.,2002,38,Automatica,6,db/journals/automatica/automatica38.html#UgrinovskiiP02,https://doi.org/10.1016/S0005-1098(01)00288-6 +Carlos C. Amaro,Non-preemptive scheduling to maximize the minimum global inter-completion time.,2003,39,Automatica,6,db/journals/automatica/automatica39.html#AmaroBSH03,https://doi.org/10.1016/S0005-1098(03)00028-1 +Jan Komenda,Supervisory control synthesis of discrete-event systems using a coordination scheme.,2012,48,Automatica,2,db/journals/automatica/automatica48.html#KomendaMS12,https://doi.org/10.1016/j.automatica.2011.07.008 +Fabien Lauer,A continuous optimization framework for hybrid system identification.,2011,47,Automatica,3,db/journals/automatica/automatica47.html#LauerBV11,https://doi.org/10.1016/j.automatica.2011.01.020 +Smriti Chopra,Spatio-temporal multi-robot routing.,2015,60,Automatica,,db/journals/automatica/automatica60.html#ChopraE15,https://doi.org/10.1016/j.automatica.2015.07.010 +Tetsuo Sawaragi,Self-organization of conceptual generalities and pattern-directed learning.,1990,26,Automatica,6,db/journals/automatica/automatica26.html#SawaragiIK90,https://doi.org/10.1016/0005-1098(90)90085-V +Xiangyu Meng,Pulse width modulation for multi-agent systems.,2016,70,Automatica,,db/journals/automatica/automatica70.html#MengMCDJ16,https://doi.org/10.1016/j.automatica.2016.03.012 +Kazuhiro Sato,Riemannian optimal model reduction of linear port-Hamiltonian systems.,2018,93,Automatica,,db/journals/automatica/automatica93.html#Sato18,https://doi.org/10.1016/j.automatica.2018.03.051 +Anna Maria Perdon,Necessary and sufficient conditions for asymptotic model matching of switching linear systems.,2016,64,Automatica,,db/journals/automatica/automatica64.html#PerdonCZ16,https://doi.org/10.1016/j.automatica.2015.11.017 +Richard C. H. Lee,Robustness and Trade-offs in Repetitive Control.,1998,34,Automatica,7,db/journals/automatica/automatica34.html#LeeS98,https://doi.org/10.1016/S0005-1098(98)00024-7 +Daizhan Cheng,Realization of Boolean control networks.,2010,46,Automatica,1,db/journals/automatica/automatica46.html#ChengLQ10,https://doi.org/10.1016/j.automatica.2009.10.036 +Elena Borzova,Passively walking five-link robot.,2004,40,Automatica,4,db/journals/automatica/automatica40.html#BorzovaH04,https://doi.org/10.1016/j.automatica.2003.10.015 +Xue-Jun Xie,Further results on output feedback stabilization for stochastic high-order nonlinear systems with time-varying delay.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#XieL12,https://doi.org/10.1016/j.automatica.2012.06.061 +Giulio Bottegal,On the identifiability of errors-in-variables models with white measurement errors.,2011,47,Automatica,3,db/journals/automatica/automatica47.html#BottegalPP11,https://doi.org/10.1016/j.automatica.2010.12.004 +Chandra Kambhampati,The relative order and inverses of recurrent networks.,1996,32,Automatica,1,db/journals/automatica/automatica32.html#KambhampatiMDGWT96,https://doi.org/10.1016/0005-1098(95)00098-4 +Atsunobu Ichikawa,Sensor and controller location problems for distributed parameter systems.,1979,15,Automatica,3,db/journals/automatica/automatica15.html#IchikawaR79,https://doi.org/10.1016/0005-1098(79)90051-7 +Gevorg Nahapetian,Uncertainty structures in adaptive and robust stabilization.,1995,31,Automatica,11,db/journals/automatica/automatica31.html#NahapetianR95,https://doi.org/10.1016/0005-1098(95)00076-9 +Michael M. Zavlanos,Inferring stable genetic networks from steady-state data.,2011,47,Automatica,6,db/journals/automatica/automatica47.html#ZavlanosJBP11,https://doi.org/10.1016/j.automatica.2011.02.006 +Guang-Ren Duan,Complete parametric approach for eigenstructure assignment in a class of second-order linear systems.,2002,38,Automatica,4,db/journals/automatica/automatica38.html#DuanL02,https://doi.org/10.1016/S0005-1098(01)00251-5 +Lijun Zhu,Robust input-to-output stabilization of nonlinear systems with a specified gain.,2017,84,Automatica,,db/journals/automatica/automatica84.html#ZhuC17,https://doi.org/10.1016/j.automatica.2017.07.019 +Yuanqing Xia,Stability and stabilization of continuous-time singular hybrid systems.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#XiaBSZ09,https://doi.org/10.1016/j.automatica.2009.02.008 +George H. Hines,Equilibrium-independent passivity: A new definition and numerical certification.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#HinesAP11,https://doi.org/10.1016/j.automatica.2011.05.011 +Fotis N. Koumboulis,On the generic controllability of continuous generalized state-space systems.,1993,29,Automatica,2,db/journals/automatica/automatica29.html#KoumboulisP93,https://doi.org/10.1016/0005-1098(93)90151-I +P. Fessas,On pole placement with decentralized static feedback.,1993,29,Automatica,2,db/journals/automatica/automatica29.html#Fessas93,https://doi.org/10.1016/0005-1098(93)90139-K +Yunlei Zou,System decomposition with respect to inputs for Boolean control networks.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#ZouZ14,https://doi.org/10.1016/j.automatica.2014.02.039 +Hassan K. Khalil,Robust servomechanism output feedback controllers for feedback linearizable systems.,1994,30,Automatica,10,db/journals/automatica/automatica30.html#Khalil94,https://doi.org/10.1016/0005-1098(94)90098-1 +I. B. Junger,Algebraic analysis of absolute stability for uncertain dynamical systems with nonlinear time-varying properties.,1993,29,Automatica,3,db/journals/automatica/automatica29.html#JungerG93,https://doi.org/10.1016/0005-1098(93)90071-Z +Daniel Graupe,A unified sequential identification structure based on convergence considerations.,1976,12,Automatica,1,db/journals/automatica/automatica12.html#GraupeF76,https://doi.org/10.1016/0005-1098(76)90068-6 +Michel Gevers,Identification of multi-input systems: variance analysis and input design issues.,2006,42,Automatica,4,db/journals/automatica/automatica42.html#GeversMBK06,https://doi.org/10.1016/j.automatica.2005.12.017 +Luis Rodrigues,Stability of sampled-data piecewise-affine systems under state feedback.,2007,43,Automatica,7,db/journals/automatica/automatica43.html#Rodrigues07,https://doi.org/10.1016/j.automatica.2006.12.016 +Jinpeng Yu,Finite-time command filtered backstepping control for a class of nonlinear systems.,2018,92,Automatica,,db/journals/automatica/automatica92.html#YuSZ18,https://doi.org/10.1016/j.automatica.2018.03.033 +Tom Oomen,System identification for achieving robust performance.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#OomenB12,https://doi.org/10.1016/j.automatica.2012.06.011 +Pieter Eykhoff,"IFAC journal Automatica special issue on ""Identification and system parameter estimation"": November 1989.",1988,24,Automatica,3,db/journals/automatica/automatica24.html#EykhoffP88,https://doi.org/10.1016/0005-1098(88)90072-6 +Michael Margaliot,Root-mean-square gains of switched linear systems: A variational approach.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#MargaliotH08,https://doi.org/10.1016/j.automatica.2008.01.026 +Hannu T. Toivonen,Variance constrained self-tuning control.,1983,19,Automatica,4,db/journals/automatica/automatica19.html#Toivonen83,https://doi.org/10.1016/0005-1098(83)90056-0 +Chien-Shu Hsieh,Optimal filtering for systems with unknown inputs via the descriptor Kalman filtering method.,2011,47,Automatica,10,db/journals/automatica/automatica47.html#Hsieh11,https://doi.org/10.1016/j.automatica.2011.08.012 +Lei Guo 0003,Generalized discrete-time PI control of output PDFs using square root B-spline expansion.,2005,41,Automatica,1,db/journals/automatica/automatica41.html#GuoW05,https://doi.org/10.1016/j.automatica.2004.08.007 +Jun Shen 0002,Non-existence of finite-time stable equilibria in fractional-order nonlinear systems.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#ShenL14a,https://doi.org/10.1016/j.automatica.2013.11.018 +Torsten Bohlin,A case study of grey box identification.,1994,30,Automatica,2,db/journals/automatica/automatica30.html#Bohlin94,https://doi.org/10.1016/0005-1098(94)90032-9 +Mohamed Aoun,Synthesis of fractional Laguerre basis for system approximation.,2007,43,Automatica,9,db/journals/automatica/automatica43.html#AounMLO07,https://doi.org/10.1016/j.automatica.2007.02.013 +A. Saberi,Simultaneous stabilization with almost disturbance decoupling-uniform rank system.,1987,23,Automatica,5,db/journals/automatica/automatica23.html#Saberi87,https://doi.org/10.1016/0005-1098(87)90062-8 +Frédéric Mazenc,Further results on input-to-state stability for nonlinear systems with delayed feedbacks.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#MazencML08,https://doi.org/10.1016/j.automatica.2008.01.024 +Zi-Jiang Yang,System Impulse Response Identification Using a Multiresolution Neural Network.,1997,33,Automatica,7,db/journals/automatica/automatica33.html#YangST97,https://doi.org/10.1016/S0005-1098(97)00047-2 +Yan Li 0004,"Reply to ""Comments on 'Mittag-Leffler stability of fractional order nonlinear dynamic systems' [Automatica 45(8) (2009) 1965-1969]"".",2017,75,Automatica,,db/journals/automatica/automatica75.html#LiCP17,https://doi.org/10.1016/j.automatica.2016.09.026 +Han Ho Choi,An Explicit Formula of Linear Sliding Surfaces for a Class of Uncertain Dynamic Systems with Mismatched Uncertainties.,1998,34,Automatica,8,db/journals/automatica/automatica34.html#Choi98,https://doi.org/10.1016/S0005-1098(98)00042-9 +Tobias Glück,Swing-up control of a triple pendulum on a cart with experimental validation.,2013,49,Automatica,3,db/journals/automatica/automatica49.html#GluckEK13,https://doi.org/10.1016/j.automatica.2012.12.006 +Wook Hyun Kwon,Recursive solution of generalized predictive control and its equivalence to receding horizon tracking control.,1992,28,Automatica,6,db/journals/automatica/automatica28.html#KwonCBN92,https://doi.org/10.1016/0005-1098(92)90066-O +Lu Lu,Online constrained optimization based adaptive robust control of a class of MIMO nonlinear systems with matched uncertainties and input/state constraints.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#LuY14,https://doi.org/10.1016/j.automatica.2013.12.005 +Wenjie Dong,Decentralized cooperative control of multiple nonholonomic dynamic systems with uncertainty.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#DongF09,https://doi.org/10.1016/j.automatica.2008.09.015 +Sebastien Lagrange,Injectivity analysis using interval analysis: Application to structural identifiability.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#LagrangeDJ08,https://doi.org/10.1016/j.automatica.2008.04.018 +Bernard Vau,Generalized convergence conditions of the parameter adaptation algorithm in discrete-time recursive identification and adaptive control.,2018,92,Automatica,,db/journals/automatica/automatica92.html#VauB18,https://doi.org/10.1016/j.automatica.2018.02.016 +Vasfi Eldem,Parameter and structure identification of linear multivariable systems.,1988,24,Automatica,3,db/journals/automatica/automatica24.html#EldemY88,https://doi.org/10.1016/0005-1098(88)90077-5 +Gang Zheng,Identification of the delay parameter for nonlinear time-delay systems with unknown inputs.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#ZhengBB13,https://doi.org/10.1016/j.automatica.2013.02.020 +Han Yan,Integrated guidance and control for dual-control missiles based on small-gain theorem.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#YanJ12,https://doi.org/10.1016/j.automatica.2012.06.084 +Bin Zhou 0001,Input delay compensation of linear systems with both state and input delays by nested prediction.,2014,50,Automatica,5,db/journals/automatica/automatica50.html#Zhou14,https://doi.org/10.1016/j.automatica.2014.03.010 +Mario Milanese,The filter design from data (FD2) problem: Nonlinear Set Membership approach.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#MilaneseNHP09,https://doi.org/10.1016/j.automatica.2009.06.014 +Nithin Govindarajan,A sparse collocation method for solving time-dependent HJB equations using multivariate B-splines.,2014,50,Automatica,9,db/journals/automatica/automatica50.html#GovindarajanVK14,https://doi.org/10.1016/j.automatica.2014.07.012 +Yuanlong Li,Stability and performance analysis of saturated systems via partitioning of the virtual input space.,2015,53,Automatica,,db/journals/automatica/automatica53.html#LiL15,https://doi.org/10.1016/j.automatica.2014.12.033 +Francesca Boem,Distributed Pareto-optimal state estimation using sensor networks.,2018,93,Automatica,,db/journals/automatica/automatica93.html#BoemZFP18,https://doi.org/10.1016/j.automatica.2018.03.071 +Janos Gertler,Frigyes Csáki (1921-1977).,1978,14,Automatica,3,db/journals/automatica/automatica14.html#Gertler78,https://doi.org/10.1016/0005-1098(78)90084-5 +Yugang Niu,Sliding mode control for Itô stochastic systems with Markovian switching.,2007,43,Automatica,10,db/journals/automatica/automatica43.html#NiuHW07,https://doi.org/10.1016/j.automatica.2007.02.023 +Qing-Chang Zhong,"Correction to ""Frequency domain solution to delay-type Nehari problem"".",2004,40,Automatica,7,db/journals/automatica/automatica40.html#Zhong04,https://doi.org/10.1016/j.automatica.2004.02.011 +David W. Clarke,Adaptive control : K. J. åström and B. Wittenmark.,1991,27,Automatica,1,db/journals/automatica/automatica27.html#Clarke91,https://doi.org/10.1016/0005-1098(91)90023-U +Hayato Nakada,Identification of piecewise affine systems based on statistical clustering technique.,2005,41,Automatica,5,db/journals/automatica/automatica41.html#NakadaTK05,https://doi.org/10.1016/j.automatica.2004.12.005 +Michel Gevers,Model validation for control and controller validation in a prediction error identification framework - Part I: theory.,2003,39,Automatica,3,db/journals/automatica/automatica39.html#GeversBCSA03,https://doi.org/10.1016/S0005-1098(02)00234-0 +Sasa V. Rakovic,The Minkowski-Lyapunov equation for linear dynamics: Theoretical foundations.,2014,50,Automatica,8,db/journals/automatica/automatica50.html#RakovicL14,https://doi.org/10.1016/j.automatica.2014.05.023 +James D. Schoeffler,Distributed control system data base updating and error recovery.,1980,16,Automatica,1,db/journals/automatica/automatica16.html#Schoeffler80,https://doi.org/10.1016/0005-1098(80)90087-4 +Jan Feiling,Gradient extremum seeking for static maps with actuation dynamics governed by diffusion PDEs.,2018,95,Automatica,,db/journals/automatica/automatica95.html#FeilingKKO18,https://doi.org/10.1016/j.automatica.2018.05.023 +Laurent El Ghaoui,Control of rational systems using linear-fractional representations and linear matrix inequalities.,1996,32,Automatica,9,db/journals/automatica/automatica32.html#GhaouiS96,https://doi.org/10.1016/0005-1098(96)00071-4 +Pasquale Lucibello,Application of Cyclic Control to a Two-link Flexible Arm.,1998,34,Automatica,8,db/journals/automatica/automatica34.html#LucibelloP98,https://doi.org/10.1016/S0005-1098(98)00046-6 +Huaguang Zhang,"Corrigendum to ""Stability analysis for linear delayed systems via an optimally dividing delay interval approach"" [Automatica 47 (2011) 2126-2129].",2014,50,Automatica,6,db/journals/automatica/automatica50.html#ZhangL14,https://doi.org/10.1016/j.automatica.2014.03.023 +Qinghua Zhang,Early warning of slight changes in systems.,1994,30,Automatica,1,db/journals/automatica/automatica30.html#ZhangBB94,https://doi.org/10.1016/0005-1098(94)90231-3 +Chunling Du,Hinfinity control and robust stabilization of two-dimensional systems in Roesser models.,2001,37,Automatica,2,db/journals/automatica/automatica37.html#DuXZ01,https://doi.org/10.1016/S0005-1098(00)00155-2 +Ze Zhang,On-line fault detection and isolation for linear discrete-time uncertain systems.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#ZhangJ14,https://doi.org/10.1016/j.automatica.2013.11.003 +Costas Kiparissides,Self-tuning and stable adaptive control of a batch polymerization reactor.,1983,19,Automatica,3,db/journals/automatica/automatica19.html#KiparissidesS83,https://doi.org/10.1016/0005-1098(83)90099-7 +Ketao Liu,Integrated modeling and controller design with application to flexible structure control.,1993,29,Automatica,5,db/journals/automatica/automatica29.html#LiuS93,https://doi.org/10.1016/0005-1098(93)90051-T +C. Arduini,Constrained optimal estimation and control.,1997,33,Automatica,12,db/journals/automatica/automatica33.html#ArduiniC97,https://doi.org/10.1016/S0005-1098(97)00150-7 +José Paulo Vilela Soares da Cunha,Peaking free variable structure control of uncertain linear systems based on a high-gain observer.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#CunhaCLH09,https://doi.org/10.1016/j.automatica.2008.12.018 +Mark Ardema,Nonlinear singularly perturbed optimal control problems with singular arcs.,1980,16,Automatica,1,db/journals/automatica/automatica16.html#Ardema80,https://doi.org/10.1016/0005-1098(80)90091-6 +Karel Hinnen,Robust spectral factor approximation of discrete-time frequency domain power spectras.,2005,41,Automatica,10,db/journals/automatica/automatica41.html#HinnenVD05,https://doi.org/10.1016/j.automatica.2005.04.019 +Heikki N. Koivo,Tuning of multivariable PI-controllers for unknown systems with input delay.,1985,21,Automatica,1,db/journals/automatica/automatica21.html#KoivoP85,https://doi.org/10.1016/0005-1098(85)90100-1 +Ding Liu,Liveness of an extended S3PR.,2010,46,Automatica,6,db/journals/automatica/automatica46.html#LiuLZ10,https://doi.org/10.1016/j.automatica.2010.03.011 +A. Barreiro,On the stabilizing conic sectors obtained using small-gain techniques.,1997,33,Automatica,6,db/journals/automatica/automatica33.html#Barreiro97,https://doi.org/10.1016/S0005-1098(97)00006-X +C. Frangos,The application of parameter optimisation techniques to linear optimal control system design.,1992,28,Automatica,1,db/journals/automatica/automatica28.html#FrangosS92,https://doi.org/10.1016/0005-1098(92)90015-8 +LiYing Sun,Finite-time stabilization and H∞ control for a class of nonlinear Hamiltonian descriptor systems with application to affine nonlinear descriptor systems.,2014,50,Automatica,8,db/journals/automatica/automatica50.html#SunFW14,https://doi.org/10.1016/j.automatica.2014.05.031 +Jukka Ruusunen,Intertemporal electricity exchange through barter.,1992,28,Automatica,1,db/journals/automatica/automatica28.html#Ruusunen92,https://doi.org/10.1016/0005-1098(92)90022-8 +Michael K. Tippett,Bounds for the solution of the discrete algebraic Lyapunov equation.,1998,34,Automatica,2,db/journals/automatica/automatica34.html#Tippett98,https://doi.org/10.1016/S0005-1098(97)00189-1 +Francisco Javier Bejarano,Observability of singular systems with commensurate time-delays and neutral terms.,2017,85,Automatica,,db/journals/automatica/automatica85.html#BejaranoZ17a,https://doi.org/10.1016/j.automatica.2017.08.001 +Shu-Jun Liu,Newton-based stochastic extremum seeking.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#LiuK14,https://doi.org/10.1016/j.automatica.2013.12.023 +Ali Saberi,Simultaneous H2/H∞ optimal control: The state feedback case.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#SaberiCSL93,https://doi.org/10.1016/0005-1098(93)90031-N +Rémi Azouit,Strong iISS for a class of systems under saturated feedback.,2016,71,Automatica,,db/journals/automatica/automatica71.html#AzouitCCG16,https://doi.org/10.1016/j.automatica.2016.04.023 +M. Cuénod,Comparison of some methods used for process identification.,1968,4,Automatica,4,db/journals/automatica/automatica4.html#CuenodS68,https://doi.org/10.1016/0005-1098(68)90016-2 +A. Carrie,Manufacturing systems: An introduction to the technologies : David Williams.,1990,26,Automatica,2,db/journals/automatica/automatica26.html#Carrie90,https://doi.org/10.1016/0005-1098(90)90147-A +Gerhard Kreisselmeier,An approach to stable indirect adaptive control.,1985,21,Automatica,4,db/journals/automatica/automatica21.html#Kreisselmeier85,https://doi.org/10.1016/0005-1098(85)90078-0 +Jiu-Gang Dong,Finite-time connectivity preservation rendezvous with disturbance rejection.,2016,71,Automatica,,db/journals/automatica/automatica71.html#Dong16,https://doi.org/10.1016/j.automatica.2016.04.032 +El Kebir Boukas,Exponential stabilizability of stochastic systems with Markovian jumping parameters.,1999,35,Automatica,8,db/journals/automatica/automatica35.html#BoukasY99,https://doi.org/10.1016/S0005-1098(99)00033-3 +éva Gyurkovics,A note on Wirtinger-type integral inequalities for time-delay systems.,2015,61,Automatica,,db/journals/automatica/automatica61.html#Gyurkovics15,https://doi.org/10.1016/j.automatica.2015.07.033 +Q. H. Wu,Laboratory evaluation of adaptive controllers for synchronous generators.,1991,27,Automatica,5,db/journals/automatica/automatica27.html#WuH91,https://doi.org/10.1016/0005-1098(91)90039-5 +A. Toola,The safety of process automation.,1993,29,Automatica,2,db/journals/automatica/automatica29.html#Toola93,https://doi.org/10.1016/0005-1098(93)90154-L +Guoxiang Gu,Connection of Multiplicative/Relative Perturbation in Coprime Factors and Gap Metric Uncertainty.,1998,34,Automatica,5,db/journals/automatica/automatica34.html#GuQ98,https://doi.org/10.1016/S0005-1098(97)00186-6 +Mauro Cimino,Design of linear time-invariant controllers for multirate systems.,2010,46,Automatica,8,db/journals/automatica/automatica46.html#CiminoP10,https://doi.org/10.1016/j.automatica.2010.05.003 +Graham C. Goodwin,Architectures and coder design for networked control systems.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#GoodwinQS08,https://doi.org/10.1016/j.automatica.2007.05.015 +ömer Morgül,An exponential stability result for the wave equation.,2002,38,Automatica,4,db/journals/automatica/automatica38.html#Morgul02,https://doi.org/10.1016/S0005-1098(01)00252-7 +Peter Van Overschee,N4SID: Subspace algorithms for the identification of combined deterministic-stochastic systems.,1994,30,Automatica,1,db/journals/automatica/automatica30.html#OverscheeM94,https://doi.org/10.1016/0005-1098(94)90230-5 +Guang-Hong Yang,Non-fragile Hinfinity filter design for linear continuous-time systems.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#YangC08b,https://doi.org/10.1016/j.automatica.2008.03.018 +ümit özgüner,A series solution to the nash strategy for large scale interconnected systems.,1977,13,Automatica,3,db/journals/automatica/automatica13.html#OzgunerP77,https://doi.org/10.1016/0005-1098(77)90059-0 +A. T. Fuller,Directions of research in control.,1963,1,Automatica,4,db/journals/automatica/automatica1.html#Fuller63,https://doi.org/10.1016/0005-1098(63)90013-X +B. P. Furey,A sequential quadratic programming-based algorithm for optimization of gas networks.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#Furey93,https://doi.org/10.1016/0005-1098(93)90008-H +Valery A. Ugrinovskii,Gain-scheduled synchronization of parameter varying systems via relative H∞ consensus with application to synchronization of uncertain bilinear systems.,2014,50,Automatica,11,db/journals/automatica/automatica50.html#Ugrinovskii14,https://doi.org/10.1016/j.automatica.2014.10.003 +Jian Chen,Range identification of features on an object using a single camera.,2011,47,Automatica,1,db/journals/automatica/automatica47.html#ChenCD11,https://doi.org/10.1016/j.automatica.2010.10.034 +Mehdi Abrishamchian,Reduction of robust stabilization problems to standard H∞ problems for classes of systems with structured uncertainty.,1996,32,Automatica,8,db/journals/automatica/automatica32.html#AbrishamchianB96,https://doi.org/10.1016/0005-1098(96)00015-5 +Apiwat Saengdeejing,Simplified robust control for nonlinear uncertain systems: a method of projection and online estimation.,2005,41,Automatica,6,db/journals/automatica/automatica41.html#SaengdeejingQ05,https://doi.org/10.1016/j.automatica.2004.12.012 +Soura Dasgupta,Characterizing persistent excitation for the sign-sign equation error identifier.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#DasguptaJB93,https://doi.org/10.1016/0005-1098(93)90011-H +Pertti M. Mäkilä,A self-tuning regulator based on optimal output feedback theory.,1984,20,Automatica,5,db/journals/automatica/automatica20.html#Makila84,https://doi.org/10.1016/0005-1098(84)90017-7 +Michael J. Grimble,Implicit and explicit LQG self-tuning controllers.,1984,20,Automatica,5,db/journals/automatica/automatica20.html#Grimble84,https://doi.org/10.1016/0005-1098(84)90016-5 +Ran Yang,H2 and mixed H2/Hinfinity control of two-dimensional systems in Roesser model.,2006,42,Automatica,9,db/journals/automatica/automatica42.html#YangXZ06,https://doi.org/10.1016/j.automatica.2006.04.002 +Xinghuo Yu,Analysis of a class of discrete-time systems with power rule.,2007,43,Automatica,3,db/journals/automatica/automatica43.html#YuXHY07,https://doi.org/10.1016/j.automatica.2006.09.013 +Linlin Li 0005,An optimal fault detection approach for piecewise affine systems via diagnostic observers.,2017,85,Automatica,,db/journals/automatica/automatica85.html#0005DQPY17,https://doi.org/10.1016/j.automatica.2017.07.062 +Junlin Xiong,On lossless negative imaginary systems.,2012,48,Automatica,6,db/journals/automatica/automatica48.html#XiongPL12,https://doi.org/10.1016/j.automatica.2012.03.016 +Jiangshuai Huang,Design of adaptive finite-time controllers for nonlinear uncertain systems based on given transient specifications.,2016,69,Automatica,,db/journals/automatica/automatica69.html#HuangWWS16,https://doi.org/10.1016/j.automatica.2015.08.013 +W. S. Gesing,An exact penalty function algorithm for solving general constrained parameter optimization problems.,1979,15,Automatica,2,db/journals/automatica/automatica15.html#GesingD79,https://doi.org/10.1016/0005-1098(79)90068-2 +Shigeru Hanba,Existence of an observation window of finite width for continuous-time autonomous nonlinear systems.,2017,75,Automatica,,db/journals/automatica/automatica75.html#Hanba17,https://doi.org/10.1016/j.automatica.2016.08.005 +Hisaya Fujioka,LQ optimal control for a class of pulse width modulated systems.,2007,43,Automatica,6,db/journals/automatica/automatica43.html#FujiokaKAJ07,https://doi.org/10.1016/j.automatica.2006.12.011 +Er-Wei Bai,Bounded-error parameter estimation: Noise models and recursive algorithms.,1996,32,Automatica,7,db/journals/automatica/automatica32.html#BaiNT96,https://doi.org/10.1016/0005-1098(96)00040-4 +Li Ding,Consensus of second-order multi-agent systems via impulsive control using sampled hetero-information.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#DingYLGF13,https://doi.org/10.1016/j.automatica.2013.06.014 +Huaguang Zhang,An iterative adaptive dynamic programming method for solving a class of nonlinear zero-sum differential games.,2011,47,Automatica,1,db/journals/automatica/automatica47.html#ZhangWL11,https://doi.org/10.1016/j.automatica.2010.10.033 +Denis Dochain,Modelling and adaptive control of nonlinear distributed parameter bioreactors via orthogonal collocation.,1992,28,Automatica,5,db/journals/automatica/automatica28.html#DochainBT92,https://doi.org/10.1016/0005-1098(92)90141-2 +Luca Lambertini,Coordinating static and dynamic supply chains with advertising through two-part tariffs.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#Lambertini14,https://doi.org/10.1016/j.automatica.2013.11.024 +Simone De Marco,Output regulation for systems on matrix Lie-groups.,2018,87,Automatica,,db/journals/automatica/automatica87.html#MarcoMMH18,https://doi.org/10.1016/j.automatica.2017.08.006 +Sandor Vajda,Direct and indirect least squares methods in continuous-time parameter estimation.,1987,23,Automatica,6,db/journals/automatica/automatica23.html#VajdaVG87,https://doi.org/10.1016/0005-1098(87)90027-6 +Maurizio Cirrincione,Sensorless direct torque control of an induction motor by a TLS-based MRAS observer with adaptive integration.,2005,41,Automatica,11,db/journals/automatica/automatica41.html#CirrincioneP05,https://doi.org/10.1016/j.automatica.2005.06.004 +Zahra Gallehdari,An ∞ cooperative fault recovery control of multi-agent systems.,2017,84,Automatica,,db/journals/automatica/automatica84.html#GallehdariMK17,https://doi.org/10.1016/j.automatica.2017.07.017 +Amin Haj-Ali,Structural analysis of fuzzy controllers with nonlinear input fuzzy sets in relation to nonlinear PID control with variable gains.,2004,40,Automatica,9,db/journals/automatica/automatica40.html#Haj-AliY04,https://doi.org/10.1016/j.automatica.2004.03.019 +Jacques Hernandez,Sliding observer-based feedback control for flexible joints manipulator.,1996,32,Automatica,9,db/journals/automatica/automatica32.html#HernandezB96,https://doi.org/10.1016/0005-1098(96)00069-6 +Delin Chu,Numerically reliable design for proportional and derivative state-feedback decoupling controller.,2002,38,Automatica,12,db/journals/automatica/automatica38.html#ChuM02,https://doi.org/10.1016/S0005-1098(02)00138-3 +Jan C. Willems,From time series to linear system - Part I. Finite dimensional linear time invariant systems.,1986,22,Automatica,5,db/journals/automatica/automatica22.html#Willems86,https://doi.org/10.1016/0005-1098(86)90066-X +Yashar Kouhi,On the quadratic stability of switched linear systems associated with symmetric transfer function matrices.,2014,50,Automatica,11,db/journals/automatica/automatica50.html#KouhiBRS14,https://doi.org/10.1016/j.automatica.2014.09.007 +Han Ho Choi,Lower matrix bounds for the continuous algebraic Riccati and Lyapunov matrix equations.,2002,38,Automatica,7,db/journals/automatica/automatica38.html#ChoiK02,https://doi.org/10.1016/S0005-1098(01)00304-1 +Yvo Boers,Hybrid state estimation: a target tracking application.,2002,38,Automatica,12,db/journals/automatica/automatica38.html#BoersD02,https://doi.org/10.1016/S0005-1098(02)00184-X +Prosper Chemouil,Maximum a posteriori parameter estimation in large-scale systems.,1981,17,Automatica,6,db/journals/automatica/automatica17.html#ChemouilKDS81,https://doi.org/10.1016/0005-1098(81)90072-8 +T. R. Fortescue,Implementation of self-tuning regulators with variable forgetting factors.,1981,17,Automatica,6,db/journals/automatica/automatica17.html#FortescueKY81,https://doi.org/10.1016/0005-1098(81)90070-4 +Jiguo Dai,UDE-based robust boundary control for an unstable parabolic PDE with unknown input disturbance.,2018,93,Automatica,,db/journals/automatica/automatica93.html#DaiR18,https://doi.org/10.1016/j.automatica.2018.03.080 +Onur Toker,On the complexity of the robust stability problem for linear parameter varying systems.,1997,33,Automatica,11,db/journals/automatica/automatica33.html#Toker97,https://doi.org/10.1016/S0005-1098(97)00129-5 +Kadri özçaldiran,A complete classification of minimal realizations of nonsingular and strictly proper transfers under similarity transformations.,1997,33,Automatica,5,db/journals/automatica/automatica33.html#OzcaldiranE97,https://doi.org/10.1016/S0005-1098(96)00236-1 +Oscar Barambones,Robust neural control for robotic manipulators.,2002,38,Automatica,2,db/journals/automatica/automatica38.html#BarambonesE02,https://doi.org/10.1016/S0005-1098(01)00191-1 +Erik Chumacero,Velocity-sensorless tracking control and identification of switched-reluctance motors.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#ChumaceroLE14,https://doi.org/10.1016/j.automatica.2014.10.004 +Tuhin Das,"Authors' reply to comments on ""Optimally switched linear systems"".",2009,45,Automatica,6,db/journals/automatica/automatica45.html#DasM09,https://doi.org/10.1016/j.automatica.2009.02.007 +S. Yusef Shafi,Synchronization under space and time-dependent heterogeneities.,2015,62,Automatica,,db/journals/automatica/automatica62.html#ShafiB15,https://doi.org/10.1016/j.automatica.2015.09.033 +Robert A. E. Zidek,Drift counteraction optimal control for deterministic systems and enhancing convergence of value iteration.,2017,83,Automatica,,db/journals/automatica/automatica83.html#ZidekK17,https://doi.org/10.1016/j.automatica.2017.06.015 +Ali Saberi,H2 optimal controllers with measurement feedback for discrete-time systems: Flexibility in closed-loop pole placement.,1997,33,Automatica,3,db/journals/automatica/automatica33.html#SaberiSS97,https://doi.org/10.1016/S0005-1098(96)00195-1 +Mario Sassano,Dynamic generalized controllability and observability functions with applications to model reduction and sensor deployment.,2014,50,Automatica,5,db/journals/automatica/automatica50.html#SassanoA14,https://doi.org/10.1016/j.automatica.2014.02.041 +Shigemasa Takai,A characterization of realizable behavior in supervisory control of timed event graphs.,1997,33,Automatica,11,db/journals/automatica/automatica33.html#Takai97a,https://doi.org/10.1016/S0005-1098(97)00121-0 +Xiang Chen,Rotating Stall Control via Bifurcation Stabilization.,1998,34,Automatica,4,db/journals/automatica/automatica34.html#ChenGMZ98,https://doi.org/10.1016/S0005-1098(97)00185-4 +Yuan-Qing Wu,Adaptive output synchronization of heterogeneous network with an uncertain leader.,2017,76,Automatica,,db/journals/automatica/automatica76.html#WuL0SW17,https://doi.org/10.1016/j.automatica.2016.10.020 +Hanlei Wang,Adaptive inverse dynamics control of robots with uncertain kinematics and dynamics.,2009,45,Automatica,9,db/journals/automatica/automatica45.html#WangX09a,https://doi.org/10.1016/j.automatica.2009.05.011 +Rongni Yang,Network-based feedback control for systems with mixed delays based on quantization and dropout compensation.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#YangSLG11,https://doi.org/10.1016/j.automatica.2011.09.007 +Behzad Samadi,Stability of sampled-data piecewise affine systems: A time-delay approach.,2009,45,Automatica,9,db/journals/automatica/automatica45.html#SamadiR09a,https://doi.org/10.1016/j.automatica.2009.04.025 +M. Machacek,Control sensors and actuators : Clarence W. de Silva.,1993,29,Automatica,2,db/journals/automatica/automatica29.html#Machacek93,https://doi.org/10.1016/0005-1098(93)90161-L +Yantao Feng,A game theoretic algorithm to compute local stabilizing solutions to HJBI equations in nonlinear H INFINITY control.,2009,45,Automatica,4,db/journals/automatica/automatica45.html#FengAR09,https://doi.org/10.1016/j.automatica.2008.11.006 +Mattia Zorzi,On the robustness of the Bayes and Wiener estimators under model uncertainty.,2017,83,Automatica,,db/journals/automatica/automatica83.html#Zorzi17,https://doi.org/10.1016/j.automatica.2017.06.005 +Samir Aberkane,Output feedback control of a class of stochastic hybrid systems.,2008,44,Automatica,5,db/journals/automatica/automatica44.html#AberkanePRS08,https://doi.org/10.1016/j.automatica.2007.09.021 +Z. Li,Dynamic coupling switching control incorporating Support Vector Machines for wheeled mobile manipulators with hybrid joints.,2010,46,Automatica,5,db/journals/automatica/automatica46.html#LiK10,https://doi.org/10.1016/j.automatica.2010.02.019 +Guangyu Liu,Decentralized control design of interconnected chains of integrators: A case study.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#LiuMN08,https://doi.org/10.1016/j.automatica.2007.12.011 +Xianfu Zhang,Finite-time stabilization by state feedback control for a class of time-varying nonlinear systems.,2012,48,Automatica,3,db/journals/automatica/automatica48.html#ZhangFS12,https://doi.org/10.1016/j.automatica.2011.07.014 +Constantino M. Lagoa,A convex parametrization of risk-adjusted stabilizing controllers.,2003,39,Automatica,10,db/journals/automatica/automatica39.html#Lagoa03,https://doi.org/10.1016/S0005-1098(03)00183-3 +Roberto Sanchis,Design of robust output predictors under scarce measurements with time-varying delays.,2007,43,Automatica,2,db/journals/automatica/automatica43.html#SanchisPA07,https://doi.org/10.1016/j.automatica.2006.08.016 +H. Boehm,Adaptive control to a dry etch process by microcomputer.,1982,18,Automatica,6,db/journals/automatica/automatica18.html#Boehm82,https://doi.org/10.1016/0005-1098(82)90055-3 +Long Cheng 0001,Solving a modified consensus problem of linear multi-agent systems.,2011,47,Automatica,10,db/journals/automatica/automatica47.html#ChengHLTZ11,https://doi.org/10.1016/j.automatica.2011.03.014 +Raman K. Sahgal,Smoothing algorithms for nonlinear distributed parameter systems.,1976,12,Automatica,3,db/journals/automatica/automatica12.html#SahgalW76,https://doi.org/10.1016/0005-1098(76)90023-6 +Raymond Gorez,"Erratum to ""New design relations for 2-DOF PID-like control systems"" [Automatica 39(5) (2003) 901-908].",2003,39,Automatica,10,db/journals/automatica/automatica39.html#Gorez03a,https://doi.org/10.1016/S0005-1098(03)00187-0 +Sandeep S. Mulgund,Optimal nonlinear estimation for aircraft flight control in wind shear.,1996,32,Automatica,1,db/journals/automatica/automatica32.html#MulgundS96,https://doi.org/10.1016/0005-1098(95)00102-6 +Yuewu Dong,On hybrid control of a class of stochastic non-linear Markovian switching systems.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#DongS08,https://doi.org/10.1016/j.automatica.2007.08.006 +Bernhard Döring,A simulation study with a combined network and production systems model of pilot behavior on an ILS-approach.,1983,19,Automatica,6,db/journals/automatica/automatica19.html#DoringK83,https://doi.org/10.1016/0005-1098(83)90041-9 +Jun Yang 0011,Continuous nonsingular terminal sliding mode control for systems with mismatched disturbances.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#YangLSY13,https://doi.org/10.1016/j.automatica.2013.03.026 +Guido O. Guardabassi,Approximate linearization via feedback - an overview.,2001,37,Automatica,1,db/journals/automatica/automatica37.html#GuardabassiS01,https://doi.org/10.1016/S0005-1098(00)00117-5 +Hanqin Zhang,Trading a mean-reverting asset: Buy low and sell high.,2008,44,Automatica,6,db/journals/automatica/automatica44.html#ZhangZ08,https://doi.org/10.1016/j.automatica.2007.11.003 +Ahmet üstüntürk,Output feedback stabilization of nonlinear dual-rate sampled-data systems via an approximate discrete-time model.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#Ustunturk12,https://doi.org/10.1016/j.automatica.2012.05.044 +Christopher J. Damaren,"Comments on ""Fully magnetic attitude control for spacecraft subject to gravity gradient"".",2002,38,Automatica,12,db/journals/automatica/automatica38.html#Damaren02,https://doi.org/10.1016/S0005-1098(02)00146-2 +Johann F. Böhme,Introduction to signals and systems : Edward Kamen.,1991,27,Automatica,1,db/journals/automatica/automatica27.html#Bohme91,https://doi.org/10.1016/0005-1098(91)90024-V +Wei-Yen Wang,Hierarchical T-S fuzzy-neural control of anti-lock braking system and active suspension in a vehicle.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#WangCS12,https://doi.org/10.1016/j.automatica.2012.05.033 +Alexandr A. Zevin,Optimal exponential feedback stabilization of planar systems.,2011,47,Automatica,5,db/journals/automatica/automatica47.html#ZevinP11,https://doi.org/10.1016/j.automatica.2011.01.051 +Mark A. Lau,Input shaping and time-optimal control of flexible structures.,2003,39,Automatica,5,db/journals/automatica/automatica39.html#LauP03,https://doi.org/10.1016/S0005-1098(03)00024-4 +Shin-Yeu Lin,Basic hardware module for a nonlinear programming algorithm and applications.,1997,33,Automatica,8,db/journals/automatica/automatica33.html#Lin97a,https://doi.org/10.1016/S0005-1098(97)00053-8 +Edoardo Mosca,A polynomial approach to the MIMO LQ servo and disturbance rejection problems.,1992,28,Automatica,1,db/journals/automatica/automatica28.html#MoscaG92,https://doi.org/10.1016/0005-1098(92)90023-9 +Michael Ederer,The Glansdorff-Prigogine stability criterion for biochemical reaction networks.,2011,47,Automatica,6,db/journals/automatica/automatica47.html#EdererGS11,https://doi.org/10.1016/j.automatica.2011.01.072 +Nicole Abaid,Leader-follower consensus over numerosity-constrained random networks.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#AbaidP12,https://doi.org/10.1016/j.automatica.2012.05.058 +M. Sofiane Benachour,Locally optimal controllers and globally inverse optimal controllers.,2014,50,Automatica,11,db/journals/automatica/automatica50.html#BenachourSA14,https://doi.org/10.1016/j.automatica.2014.10.019 +Chengshan Xiao,Concepts of Strict Positive Realness and the Absolute Stability Problem of Continuous-Time Systems.,1998,34,Automatica,9,db/journals/automatica/automatica34.html#XiaoH98,https://doi.org/10.1016/S0005-1098(98)00049-1 +Marco C. Campi,On the convergence of minimum-variance directional-forgetting adaptive control scheme.,1992,28,Automatica,1,db/journals/automatica/automatica28.html#Campi92,https://doi.org/10.1016/0005-1098(92)90025-B +Mario E. Salgado,Qualitative aspects of the distribution of errors in least squares estimation.,1990,26,Automatica,1,db/journals/automatica/automatica26.html#SalgadoSG90,https://doi.org/10.1016/0005-1098(90)90161-A +S. D. O'Young,Optimal performance and robust stabilization.,1986,22,Automatica,2,db/journals/automatica/automatica22.html#OYoungF86,https://doi.org/10.1016/0005-1098(86)90078-6 +C. Richard Johnson Jr.,Adaptive input matching control of structurally varying plants.,1980,16,Automatica,3,db/journals/automatica/automatica16.html#JohnsonT80,https://doi.org/10.1016/0005-1098(80)90040-0 +J. Adamy,Soft variable-structure controls: a survey.,2004,40,Automatica,11,db/journals/automatica/automatica40.html#AdamyF04,https://doi.org/10.1016/j.automatica.2004.05.017 +Andrea Balluchi,The design of dynamical observers for hybrid systems: Theory and application to an automotive control problem.,2013,49,Automatica,4,db/journals/automatica/automatica49.html#BalluchiBBS13,https://doi.org/10.1016/j.automatica.2013.01.037 +Johannes Schiffer,Stability of a class of delayed port-Hamiltonian systems with application to microgrids with distributed rotational and electronic generation.,2016,74,Automatica,,db/journals/automatica/automatica74.html#SchifferFOR16,https://doi.org/10.1016/j.automatica.2016.07.022 +Feng Ding 0001,Hierarchical gradient-based identification of multivariable discrete-time systems.,2005,41,Automatica,2,db/journals/automatica/automatica41.html#DingC05,https://doi.org/10.1016/j.automatica.2004.10.010 +Jing Zhu,Stability of systems with time-varying delays: An L1 small-gain perspective.,2015,52,Automatica,,db/journals/automatica/automatica52.html#ZhuC15,https://doi.org/10.1016/j.automatica.2014.12.011 +Robert C. Williges,Human-computer dialogue design considerations.,1983,19,Automatica,6,db/journals/automatica/automatica19.html#WilligesW83,https://doi.org/10.1016/0005-1098(83)90045-6 +Bin Jiang 0001,Neural-networked adaptive tracking control for switched nonlinear pure-feedback systems under arbitrary switching.,2015,61,Automatica,,db/journals/automatica/automatica61.html#JiangS015,https://doi.org/10.1016/j.automatica.2015.08.001 +M. Amouroux,Adaptive open loop control for a class of distributed parameter systems.,1978,14,Automatica,6,db/journals/automatica/automatica14.html#AmourouxBJ78,https://doi.org/10.1016/0005-1098(78)90049-3 +Tae-Hyoung Kim,Robust PID controller tuning based on the constrained particle swarm optimization.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#KimMS08,https://doi.org/10.1016/j.automatica.2007.08.017 +Jing Chen,Variational Bayesian approach for ARX systems with missing observations and varying time-delays.,2018,94,Automatica,,db/journals/automatica/automatica94.html#ChenHDG18,https://doi.org/10.1016/j.automatica.2018.04.003 +Chong Jin Ong,Enlarging the terminal region of nonlinear model predictive control using the support vector machine method.,2006,42,Automatica,6,db/journals/automatica/automatica42.html#OngSG06,https://doi.org/10.1016/j.automatica.2006.02.023 +Jason L. Speyer,A stochastic controller for a scalar linear system with additive Cauchy noise.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#SpeyerIF14,https://doi.org/10.1016/j.automatica.2013.11.005 +Kwai Sang Sin,Stochastic adaptive control using a modified least squares algorithm.,1982,18,Automatica,3,db/journals/automatica/automatica18.html#SinG82,https://doi.org/10.1016/0005-1098(82)90091-7 +Victor Torres-Gonzalez,Design of Continuous Twisting Algorithm.,2017,80,Automatica,,db/journals/automatica/automatica80.html#Torres-Gonzalez17,https://doi.org/10.1016/j.automatica.2017.02.035 +Paul H. Wewerinke,Model of the human observer and decision maker - Theory and validation.,1983,19,Automatica,6,db/journals/automatica/automatica19.html#Wewerinke83,https://doi.org/10.1016/0005-1098(83)90033-X +Aneel Tanwani,Invertibility of switched nonlinear systems.,2010,46,Automatica,12,db/journals/automatica/automatica46.html#TanwaniL10,https://doi.org/10.1016/j.automatica.2010.08.002 +W. Langson,Robust model predictive control using tubes.,2004,40,Automatica,1,db/journals/automatica/automatica40.html#LangsonCRM04,https://doi.org/10.1016/j.automatica.2003.08.009 +Ming Liu,Fault reconstruction for stochastic hybrid systems with adaptive discontinuous observer and non-homogeneous differentiator.,2017,85,Automatica,,db/journals/automatica/automatica85.html#LiuZZ17,https://doi.org/10.1016/j.automatica.2017.07.071 +Hongyinping Feng,Output feedback stabilization of an unstable wave equation with general corrupted boundary observation.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#FengG14,https://doi.org/10.1016/j.automatica.2014.10.016 +Yoonsoo Kim,Spectral radius minimization for optimal average consensus and output feedback stabilization.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#KimGP09,https://doi.org/10.1016/j.automatica.2009.02.001 +Francisco J. Vargas,Optimal ripple-free deadbeat control using an integral of time squared error (ITSE) index.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#VargasSS11,https://doi.org/10.1016/j.automatica.2011.06.006 +Augusto Ferrante,Discrete-time negative imaginary systems.,2017,79,Automatica,,db/journals/automatica/automatica79.html#FerranteLN17,https://doi.org/10.1016/j.automatica.2017.01.001 +Vincent Verdult,Kernel methods for subspace identification of multivariable LPV and bilinear systems.,2005,41,Automatica,9,db/journals/automatica/automatica41.html#VerdultV05,https://doi.org/10.1016/j.automatica.2005.03.027 +Miloje S. Radenkovic,On multi-agent self-tuning consensus.,2015,55,Automatica,,db/journals/automatica/automatica55.html#RadenkovicB15,https://doi.org/10.1016/j.automatica.2015.02.025 +Gianluigi Pillonetto,A new kernel-based approach to hybrid system identification.,2016,70,Automatica,,db/journals/automatica/automatica70.html#Pillonetto16,https://doi.org/10.1016/j.automatica.2016.03.011 +Lin Guo,Parameter identification with derivative shift operator parametrization.,1999,35,Automatica,6,db/journals/automatica/automatica35.html#GuoT99,https://doi.org/10.1016/S0005-1098(99)00014-X +Cheng Tan,Stabilization of networked control systems with both network-induced delay and packet dropout.,2015,59,Automatica,,db/journals/automatica/automatica59.html#TanLZ15,https://doi.org/10.1016/j.automatica.2015.06.026 +Jonas Sjöberg,Initializing Wiener-Hammerstein models based on partitioning of the best linear approximation.,2012,48,Automatica,2,db/journals/automatica/automatica48.html#SjobergS12,https://doi.org/10.1016/j.automatica.2011.07.007 +James C. Spall,The Kantorovich inequality for error analysis of the Kalman filter with unknown noise distributions.,1995,31,Automatica,10,db/journals/automatica/automatica31.html#Spall95,https://doi.org/10.1016/0005-1098(95)00069-9 +José Claudio Geromel,Global optimization of measurement strategies for linear stochastic systems.,1989,25,Automatica,2,db/journals/automatica/automatica25.html#Geromel89,https://doi.org/10.1016/0005-1098(89)90084-8 +Thanh Huu Nguyen,Output feedback controllers for disturbance attenuation with actuator amplitude and rate saturation.,2000,36,Automatica,9,db/journals/automatica/automatica36.html#NguyenJ00,https://doi.org/10.1016/S0005-1098(00)00051-0 +Frank L. Lewis,Towards a paradigm for fuzzy logic control.,1996,32,Automatica,2,db/journals/automatica/automatica32.html#LewisL96,https://doi.org/10.1016/0005-1098(96)85547-6 +Pedro Gajardo,Minimal time bioremediation of natural water resources.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#GajardoHCR11,https://doi.org/10.1016/j.automatica.2011.03.001 +Masood Dehghan,Computations of mode-dependent dwell * for discrete-time switching system.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#DehghanO13,https://doi.org/10.1016/j.automatica.2013.02.038 +Luigi Chisci,Systems with persistent disturbances: predictive control with restricted constraints.,2001,37,Automatica,7,db/journals/automatica/automatica37.html#ChisciRZ01,https://doi.org/10.1016/S0005-1098(01)00051-6 +Behnam Pourbabai,Optimal selection of buffers in a tandem finite capacity G/M/1 queueing system.,1989,25,Automatica,6,db/journals/automatica/automatica25.html#Pourbabai89,https://doi.org/10.1016/0005-1098(89)90056-3 +Csilla Bányász,Continuous-time self-tuning control volume II - Implementation : P. J. Gawthrop.,1992,28,Automatica,2,db/journals/automatica/automatica28.html#Banyasz92,https://doi.org/10.1016/0005-1098(92)90136-4 +Yeong-Chan Chang,Robust tracking control for nonlinear MIMO systems via fuzzy approaches.,2000,36,Automatica,10,db/journals/automatica/automatica36.html#Chang00,https://doi.org/10.1016/S0005-1098(00)00083-2 +Chi-Jay Huang,Selection of measurement locations for the control of rapid thermal processor.,2000,36,Automatica,5,db/journals/automatica/automatica36.html#HuangYS00,https://doi.org/10.1016/S0005-1098(99)00197-1 +Yu-Long Wang,Network-based modelling and dynamic output feedback control for unmanned marine vehicles in network environments.,2018,91,Automatica,,db/journals/automatica/automatica91.html#WangH18,https://doi.org/10.1016/j.automatica.2018.01.026 +R. A. Freeman,Tracking controllers for systems linear in the unmeasured states.,1996,32,Automatica,5,db/journals/automatica/automatica32.html#FreemanK96,https://doi.org/10.1016/0005-1098(95)00193-X +Michel C. Delfour,Linear optimal control of systems with state and control variable delays.,1984,20,Automatica,1,db/journals/automatica/automatica20.html#Delfour84,https://doi.org/10.1016/0005-1098(84)90066-9 +Milos Doroslovacki,Wavelet-Based Identification of Linear Discrete-Time Systems: Robustness Issue.,1998,34,Automatica,12,db/journals/automatica/automatica34.html#DoroslovackiFY98,https://doi.org/10.1016/S0005-1098(98)80020-4 +Tomas Johnson,Rigorous parameter reconstruction for differential equations with noisy data.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#JohnsonT08,https://doi.org/10.1016/j.automatica.2008.01.032 +K. D. Do,Formation control of multiple elliptical agents with limited sensing ranges.,2012,48,Automatica,7,db/journals/automatica/automatica48.html#Do12,https://doi.org/10.1016/j.automatica.2012.04.005 +Mariagrazia Dotoli,On-line fault detection in discrete event systems by Petri nets and integer linear programming.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#DotoliFMU09,https://doi.org/10.1016/j.automatica.2009.07.021 +Luigi Chisci,A systolic architecture for iterative LQ optimization.,1991,27,Automatica,5,db/journals/automatica/automatica27.html#ChisciZ91,https://doi.org/10.1016/0005-1098(91)90034-Y +Zhi-Hong Guan,Robust decentralized stabilization for a class of large-scale time-delay uncertain impulsive dynamical systems.,2002,38,Automatica,12,db/journals/automatica/automatica38.html#GuanCYQ02,https://doi.org/10.1016/S0005-1098(02)00104-8 +Kuo-Kai Shyu,A dynamic output feedback controllers for mismatched uncertain variable structure systems.,2001,37,Automatica,5,db/journals/automatica/automatica37.html#ShyuTL01,https://doi.org/10.1016/S0005-1098(01)00014-0 +D. W. Pessen,Ladder-diagram design for programmable controllers.,1989,25,Automatica,3,db/journals/automatica/automatica25.html#Pessen89,https://doi.org/10.1016/0005-1098(89)90008-3 +Michael A. Demetriou,Design of adaptive output feedback synchronizing controllers for networked PDEs with boundary and in-domain structured perturbations and disturbances.,2018,90,Automatica,,db/journals/automatica/automatica90.html#Demetriou18,https://doi.org/10.1016/j.automatica.2017.12.047 +D. F. Wilkie,Essential parameters in sensitivity analysis.,1969,5,Automatica,2,db/journals/automatica/automatica5.html#WilkieP69,https://doi.org/10.1016/0005-1098(69)90013-2 +Claudio De Persis,Nonlinear stabilizability via encoded feedback: The case of integral ISS systems.,2006,42,Automatica,10,db/journals/automatica/automatica42.html#Persis06,https://doi.org/10.1016/j.automatica.2006.05.019 +Ali Saberi,Constrained stabilization problems for linear plants.,2002,38,Automatica,4,db/journals/automatica/automatica38.html#SaberiHS02,https://doi.org/10.1016/S0005-1098(01)00248-5 +Ashutosh Prasad,Understanding the impact of churn in dynamic oligopoly markets.,2012,48,Automatica,11,db/journals/automatica/automatica48.html#PrasadSN12,https://doi.org/10.1016/j.automatica.2012.08.031 +Chien-Chern Cheah,Stability of hybrid position and force control for robotic manipulator with kinematics and dynamics uncertainties.,2003,39,Automatica,5,db/journals/automatica/automatica39.html#CheahKA03,https://doi.org/10.1016/S0005-1098(03)00002-5 +ülo Nurges,Robust pole assignment via reflection coefficients of polynomials.,2006,42,Automatica,7,db/journals/automatica/automatica42.html#Nurges06,https://doi.org/10.1016/j.automatica.2006.03.007 +J. P. Corfmat,Decentralized control of linear multivariable systems.,1976,12,Automatica,5,db/journals/automatica/automatica12.html#CorfmatM76,https://doi.org/10.1016/0005-1098(76)90008-X +Sergio Daniel Pequito,On the complexity of the constrained input selection problem for structural linear systems.,2015,62,Automatica,,db/journals/automatica/automatica62.html#PequitoKA15,https://doi.org/10.1016/j.automatica.2015.06.022 +Jorge Cortés,Global and robust formation-shape stabilization of relative sensing networks.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#Cortes09,https://doi.org/10.1016/j.automatica.2009.09.019 +Youyi Wang,Robust nonlinear coordinated control of power systems.,1996,32,Automatica,4,db/journals/automatica/automatica32.html#WangH96,https://doi.org/10.1016/0005-1098(95)00186-7 +Xiaoqiang Ren,Attack allocation on remote state estimation in multi-systems: Structural results and asymptotic solution.,2018,87,Automatica,,db/journals/automatica/automatica87.html#RenWDS18,https://doi.org/10.1016/j.automatica.2017.09.021 +M. Guay,Adaptive extremum seeking control of nonlinear dynamic systems with parametric uncertainties.,2003,39,Automatica,7,db/journals/automatica/automatica39.html#GuayZ03,https://doi.org/10.1016/S0005-1098(03)00105-5 +María M. Seron,Robust fault estimation and compensation for LPV systems under actuator and sensor faults.,2015,52,Automatica,,db/journals/automatica/automatica52.html#SeronD15,https://doi.org/10.1016/j.automatica.2014.12.003 +Mahmoud Abdelrahim,Co-design of output feedback laws and event-triggering conditions for the and#8466*2-stabilization of linear systems.,2018,87,Automatica,,db/journals/automatica/automatica87.html#AbdelrahimPDNH18,https://doi.org/10.1016/j.automatica.2017.10.008 +Marco Frego,Semi-analytical minimum time solutions with velocity constraints for trajectory following of vehicles.,2017,86,Automatica,,db/journals/automatica/automatica86.html#FregoBBFP17,https://doi.org/10.1016/j.automatica.2017.08.020 +Ziyang Meng,Formation control with mismatched compasses.,2016,69,Automatica,,db/journals/automatica/automatica69.html#MengAH16,https://doi.org/10.1016/j.automatica.2016.02.029 +Maciej Niedzwiecki,On adaptive covariance and spectrum estimation of locally stationary multivariate processes.,2017,82,Automatica,,db/journals/automatica/automatica82.html#NiedzwieckiCK17,https://doi.org/10.1016/j.automatica.2017.04.033 +K. D. Do,A global output-feedback controller for stabilization and tracking of underactuated ODIN: A spherical underwater vehicle.,2004,40,Automatica,1,db/journals/automatica/automatica40.html#DoJPN04,https://doi.org/10.1016/j.automatica.2003.08.004 +Jin-De Chang,Identification of variable spacial coefficients for a beam equation from boundary measurements.,2007,43,Automatica,4,db/journals/automatica/automatica43.html#ChangG07,https://doi.org/10.1016/j.automatica.2006.11.002 +Y. Li,Neuro-controller design for nonlinear fighter aircraft maneuver using fully tuned RBF networks.,2001,37,Automatica,8,db/journals/automatica/automatica37.html#LiSS01,https://doi.org/10.1016/S0005-1098(01)00090-5 +Zhisheng Duan,Stability analysis and decentralized control of a class of complex dynamical networks.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#DuanWCH08,https://doi.org/10.1016/j.automatica.2007.08.005 +Qing-Wen Wang,Solvability conditions and general solution for mixed Sylvester equations.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#WangH13,https://doi.org/10.1016/j.automatica.2013.06.009 +Graham C. Goodwin,Receding horizon control applied to optimal mine planning.,2006,42,Automatica,8,db/journals/automatica/automatica42.html#GoodwinSMZHSM06,https://doi.org/10.1016/j.automatica.2006.01.016 +David Rijlaarsdam,Spectral analysis of block structured nonlinear systems and higher order sinusoidal input describing functions.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#RijlaarsdamNSS11,https://doi.org/10.1016/j.automatica.2011.08.049 +Riccardo Scattolini,On the choice of the horizon in long-range predictive control - Some simple criteria.,1990,26,Automatica,5,db/journals/automatica/automatica26.html#ScattoliniB90,https://doi.org/10.1016/0005-1098(90)90009-7 +Emilia Fridman,On input-to-state stability of systems with time-delay: A matrix inequalities approach.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#FridmanDY08,https://doi.org/10.1016/j.automatica.2008.01.012 +C.-S. Huang,A radial basis collocation method for Hamilton-Jacobi-Bellman equations.,2006,42,Automatica,12,db/journals/automatica/automatica42.html#HuangWCL06,https://doi.org/10.1016/j.automatica.2006.07.013 +Chao Xu 0001,Sequential linear quadratic control of bilinear parabolic PDEs based on POD model reduction.,2011,47,Automatica,2,db/journals/automatica/automatica47.html#XuOS11,https://doi.org/10.1016/j.automatica.2010.11.001 +Manuel Mazo Jr.,Asynchronous decentralized event-triggered control.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#MazoC14,https://doi.org/10.1016/j.automatica.2014.10.029 +Jung-Min Yang,Model matching inclusion for input/state asynchronous sequential machines.,2011,47,Automatica,3,db/journals/automatica/automatica47.html#Yang11,https://doi.org/10.1016/j.automatica.2011.01.016 +Kevin L. Boettcher,Modeling and analysis of teams of interacting decisionmakers with bounded rationality.,1983,19,Automatica,6,db/journals/automatica/automatica19.html#BoettcherL83,https://doi.org/10.1016/0005-1098(83)90035-3 +Ziyang Meng,Targeted agreement of multiple Lagrangian systems.,2017,84,Automatica,,db/journals/automatica/automatica84.html#MengYSDHJ17,https://doi.org/10.1016/j.automatica.2017.07.010 +K. D. Do,Stochastic boundary control design for extensible marine risers in three dimensional space.,2017,77,Automatica,,db/journals/automatica/automatica77.html#Do17,https://doi.org/10.1016/j.automatica.2016.11.032 +Francois-Xavier Orbandexivry,Nearest stable system using successive convex approximations.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#OrbandexivryND13,https://doi.org/10.1016/j.automatica.2013.01.053 +Ramine Nikoukhah,Innovations generation in the presence of unknown inputs: Application to robust failure detection.,1994,30,Automatica,12,db/journals/automatica/automatica30.html#Nikoukhah94,https://doi.org/10.1016/0005-1098(94)90047-7 +Enric Xargay,Multi-leader coordination algorithm for networks with switching topology and quantized information.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#XargayCHK14,https://doi.org/10.1016/j.automatica.2014.02.004 +Henrik Sandberg,A case study in model reduction of linear time-varying systems.,2006,42,Automatica,3,db/journals/automatica/automatica42.html#Sandberg06,https://doi.org/10.1016/j.automatica.2005.10.016 +N. K. Bose,Edge property from end-points for scattering Hurwitz polynomials.,1996,32,Automatica,4,db/journals/automatica/automatica32.html#Bose96,https://doi.org/10.1016/0005-1098(96)81393-8 +Dawei Shi,On finite-horizon ℓ*2ℓ*2-induced norms of discrete-time switched linear systems.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#ShiC13a,https://doi.org/10.1016/j.automatica.2013.04.042 +Markos Papageorgiou,Continuous-time and discrete-time design of water flow and water level regulators.,1985,21,Automatica,6,db/journals/automatica/automatica21.html#PapageorgiouM85,https://doi.org/10.1016/0005-1098(85)90039-1 +Wen Kang,Distributed sampled-data control of Kuramoto-Sivashinsky equation.,2018,95,Automatica,,db/journals/automatica/automatica95.html#KangF18,https://doi.org/10.1016/j.automatica.2018.06.009 +Dirk Aeyels,On exponential stability of nonlinear time-varying differential equations.,1999,35,Automatica,6,db/journals/automatica/automatica35.html#AeyelsP99,https://doi.org/10.1016/S0005-1098(99)00012-6 +K. Hui,Noise attenuation of compensators for rate and amplitude constrained systems.,1999,35,Automatica,5,db/journals/automatica/automatica35.html#HuiC99,https://doi.org/10.1016/S0005-1098(98)00231-3 +Katsuhisa Furuta,Structural identification and software package for linear multivariable systems.,1981,17,Automatica,5,db/journals/automatica/automatica17.html#FurutaHK81,https://doi.org/10.1016/0005-1098(81)90023-6 +Chang Zhang,Run-to-run control methods based on the DHOBE algorithm.,2003,39,Automatica,1,db/journals/automatica/automatica39.html#ZhangDB03,https://doi.org/10.1016/S0005-1098(02)00197-8 +Ligang Wu,Sliding mode control of singular stochastic hybrid systems.,2010,46,Automatica,4,db/journals/automatica/automatica46.html#WuH10,https://doi.org/10.1016/j.automatica.2010.01.010 +Tianshi Chen,Implementation of algorithms for tuning parameters in regularized least squares problems in system identification.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#ChenL13,https://doi.org/10.1016/j.automatica.2013.03.030 +Massimiliano Mattei,An LMI approach to the design of a robust observer with application to a temperature control problem for space vehicle testing.,2001,37,Automatica,12,db/journals/automatica/automatica37.html#Mattei01,https://doi.org/10.1016/S0005-1098(01)00150-9 +Wen Yang,Stochastic sensor activation for distributed state estimation over a sensor network.,2014,50,Automatica,8,db/journals/automatica/automatica50.html#YangCWS14,https://doi.org/10.1016/j.automatica.2014.05.025 +Shen Yin,Descriptor reduced-order sliding mode observers design for switched systems with sensor and actuator faults.,2017,76,Automatica,,db/journals/automatica/automatica76.html#YinGQK17,https://doi.org/10.1016/j.automatica.2016.10.025 +Hernan Haimovich,Multivariable quadratically-stabilizing quantizers with finite density.,2008,44,Automatica,7,db/journals/automatica/automatica44.html#HaimovichS08,https://doi.org/10.1016/j.automatica.2007.11.019 +Takahiro Endo,Boundary cooperative control by flexible Timoshenko arms.,2017,81,Automatica,,db/journals/automatica/automatica81.html#EndoMJ17,https://doi.org/10.1016/j.automatica.2017.04.017 +Mohamed F. Hassan,Synchronous machine control using a two level model follower.,1977,13,Automatica,2,db/journals/automatica/automatica13.html#HassanS77,https://doi.org/10.1016/0005-1098(77)90041-3 +Jozef Vörös,Modeling and identification of systems with backlash.,2010,46,Automatica,2,db/journals/automatica/automatica46.html#Voros10,https://doi.org/10.1016/j.automatica.2009.11.005 +Xiaobin Gao,Optimal communication scheduling and remote estimation over an additive noise channel.,2018,88,Automatica,,db/journals/automatica/automatica88.html#GaoAB18,https://doi.org/10.1016/j.automatica.2017.10.010 +Gu-Min Jeong,Iterative learning control for linear discrete time nonminimum phase systems.,2002,38,Automatica,2,db/journals/automatica/automatica38.html#JeongC02,https://doi.org/10.1016/S0005-1098(01)00197-2 +Roland Tóth,Instrumental variable scheme for closed-loop LPV model identification.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#TothLGG12,https://doi.org/10.1016/j.automatica.2012.06.037 +Ming Liu,Stabilization of Markovian jump linear system over networks with random communication delay.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#LiuHN09,https://doi.org/10.1016/j.automatica.2008.06.023 +Lei Ding 0005,Network-based practical set consensus of multi-agent systems subject to input saturation.,2018,89,Automatica,,db/journals/automatica/automatica89.html#DingZG18,https://doi.org/10.1016/j.automatica.2017.12.001 +Michael McCreesh,Stability of bounded subsets of Metzler sparse matrix cones.,2018,95,Automatica,,db/journals/automatica/automatica95.html#McCreeshG18,https://doi.org/10.1016/j.automatica.2018.05.041 +Pauline Bernard,Adaptive output-feedback stabilization of non-local hyperbolic PDEs.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#BernardK14,https://doi.org/10.1016/j.automatica.2014.09.001 +Joachim Deutscher,Input-output linearization of nonlinear systems using multivariable Legendre polynomials.,2005,41,Automatica,2,db/journals/automatica/automatica41.html#Deutscher05,https://doi.org/10.1016/j.automatica.2004.11.001 +Shuai Liu 0001,Convergence rate analysis of distributed optimization with projected subgradient algorithm.,2017,83,Automatica,,db/journals/automatica/automatica83.html#LiuQX17,https://doi.org/10.1016/j.automatica.2017.06.011 +Jiuxiang Dong,Robust static output feedback control synthesis for linear continuous systems with polytopic uncertainties.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#DongY13,https://doi.org/10.1016/j.automatica.2013.02.047 +Elham (Fatemeh) Asadi,Scalable distributed model predictive control for constrained systems.,2018,93,Automatica,,db/journals/automatica/automatica93.html#AsadiR18,https://doi.org/10.1016/j.automatica.2018.03.050 +Thomas R. Bewley,Efficient grid-based Bayesian estimation of nonlinear low-dimensional systems with sparse non-Gaussian PDFs.,2012,48,Automatica,7,db/journals/automatica/automatica48.html#BewleyS12,https://doi.org/10.1016/j.automatica.2012.02.039 +Douglas P. Looze,A dual optimization procedure for linear quadratic robust control problems.,1983,19,Automatica,3,db/journals/automatica/automatica19.html#Looze83,https://doi.org/10.1016/0005-1098(83)90107-3 +Silun Zhang,Intrinsic tetrahedron formation of reduced attitude.,2018,87,Automatica,,db/journals/automatica/automatica87.html#ZhangSHHH18,https://doi.org/10.1016/j.automatica.2017.10.023 +D. Bosman,Handbook of measurement science : Peter H. Sydenham.,1984,20,Automatica,6,db/journals/automatica/automatica20.html#Bosman84,https://doi.org/10.1016/0005-1098(84)90092-X +Dimitris Vafiadis,Canonical forms for descriptor systems under restricted system equivalence.,1997,33,Automatica,5,db/journals/automatica/automatica33.html#VafiadisK97,https://doi.org/10.1016/S0005-1098(96)00250-6 +Kang-Zhi Liu,A partial parameterization of nonlinear output feedback controllers for saturated linear systems.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#LiuA14,https://doi.org/10.1016/j.automatica.2013.10.003 +Yat-wah Wan,The control of a two-level Markov decision process by time aggregation.,2006,42,Automatica,3,db/journals/automatica/automatica42.html#WanC06,https://doi.org/10.1016/j.automatica.2005.11.006 +Rik Pintelon,Uncertainty of transfer function modelling using prior estimated noise models.,2003,39,Automatica,10,db/journals/automatica/automatica39.html#PintelonSR03,https://doi.org/10.1016/S0005-1098(03)00185-7 +Seunggyun Cheong,Divination of closed-loop stability and performance via frequency response function estimates.,2012,48,Automatica,7,db/journals/automatica/automatica48.html#CheongB12,https://doi.org/10.1016/j.automatica.2012.05.007 +Miroslav Baric,An efficient algorithm for optimal control of PWA systems with polyhedral performance indices.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#BaricGBM08,https://doi.org/10.1016/j.automatica.2007.05.005 +Chang Chieh Hang,A dual-rate adaptive digital smith predictor.,1989,25,Automatica,1,db/journals/automatica/automatica25.html#HangLC89,https://doi.org/10.1016/0005-1098(89)90115-5 +Nicola Ceccarelli,Collective circular motion of multi-vehicle systems.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#CeccarelliMGG08,https://doi.org/10.1016/j.automatica.2008.04.024 +Greg L. Yorke,An algorithm for non-linear space - Time nuclear reactor control.,1981,17,Automatica,3,db/journals/automatica/automatica17.html#YorkeC81,https://doi.org/10.1016/0005-1098(81)90005-4 +María M. Seron,Nonlinear adaptive control of feedback passive systems.,1995,31,Automatica,7,db/journals/automatica/automatica31.html#SeronHF95,https://doi.org/10.1016/0005-1098(95)00004-G +Peter J. Gawthrop,Emulator-based control and internal model control: Complementary approaches to robust control design.,1996,32,Automatica,8,db/journals/automatica/automatica32.html#GawthropJS96,https://doi.org/10.1016/0005-1098(96)00059-3 +A. R. Woodyatt,An integral constraint for single input two output feedback systems.,2001,37,Automatica,11,db/journals/automatica/automatica37.html#WoodyattFM01,https://doi.org/10.1016/S0005-1098(01)00142-X +Yeng C. Soh,Characterization of robust controllers.,1989,25,Automatica,1,db/journals/automatica/automatica25.html#SohE89,https://doi.org/10.1016/0005-1098(89)90126-X +Srdjan S. Stankovic,Self-tuning servo for stochastic references.,1986,22,Automatica,2,db/journals/automatica/automatica22.html#StankovicR86,https://doi.org/10.1016/0005-1098(86)90087-7 +Wei Xing Zheng,Identification of closed-loop systems with low-order controllers.,1996,32,Automatica,12,db/journals/automatica/automatica32.html#Zheng96,https://doi.org/10.1016/S0005-1098(96)80015-X +Elias Jarlebring,Invariance properties in the root sensitivity of time-delay systems with double imaginary roots.,2010,46,Automatica,6,db/journals/automatica/automatica46.html#JarlebringM10,https://doi.org/10.1016/j.automatica.2010.03.014 +Yoram Halevi,On the class of reduced order models obtainable by projection.,2006,42,Automatica,11,db/journals/automatica/automatica42.html#Halevi06,https://doi.org/10.1016/j.automatica.2006.06.017 +R. Rodosek,A Search Control for Scheduling Problems.,1998,34,Automatica,6,db/journals/automatica/automatica34.html#Rodosek98,https://doi.org/10.1016/S0005-1098(98)80003-4 +Serhat Obuz,Unknown time-varying input delay compensation for uncertain nonlinear systems.,2017,76,Automatica,,db/journals/automatica/automatica76.html#ObuzKKD17,https://doi.org/10.1016/j.automatica.2016.09.030 +M. Hou,Design of decentralized linear state function observers.,1994,30,Automatica,11,db/journals/automatica/automatica30.html#HouM94,https://doi.org/10.1016/0005-1098(94)90086-8 +João Pedro Hespanha,Lyapunov conditions for input-to-state stability of impulsive systems.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#HespanhaLT08,https://doi.org/10.1016/j.automatica.2008.03.021 +Daniel W. Berns,Detecting period-doubling bifurcation: an approximate monodromy matrix approach.,2001,37,Automatica,11,db/journals/automatica/automatica37.html#BernsMC01,https://doi.org/10.1016/S0005-1098(01)00131-5 +Enbin Song,Sensors' optimal dimensionality compression matrix in estimation fusion.,2005,41,Automatica,12,db/journals/automatica/automatica41.html#SongZZ05,https://doi.org/10.1016/j.automatica.2005.07.011 +Giorgio Bartolini,Simplex sliding mode methods for the chattering reduction control of multi-input nonlinear uncertain systems.,2009,45,Automatica,8,db/journals/automatica/automatica45.html#BartoliniPZ09,https://doi.org/10.1016/j.automatica.2009.04.014 +Jian-Xin Xu 0001,Multi-scale direct learning control of linear time-varying high-order systems.,2000,36,Automatica,1,db/journals/automatica/automatica36.html#XuS00,https://doi.org/10.1016/S0005-1098(99)00101-6 +Hector Ramirez Estay,Stabilization of infinite dimensional port-Hamiltonian systems by nonlinear dynamic boundary control.,2017,85,Automatica,,db/journals/automatica/automatica85.html#EstayZG17,https://doi.org/10.1016/j.automatica.2017.07.045 +Zhiyong Yu,The stochastic maximum principle for optimal control problems of delay systems involving continuous and impulse controls.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#Yu12,https://doi.org/10.1016/j.automatica.2012.06.082 +Ioannis Ch. Paschalidis,Class-specific quality of service guarantees in multimedia communication networks.,1999,35,Automatica,12,db/journals/automatica/automatica35.html#Paschalidis99,https://doi.org/10.1016/S0005-1098(99)00125-9 +Jinghui Suo,Asymptotic stability of differential systems with impulsive effects suffered by logic choice.,2015,51,Automatica,,db/journals/automatica/automatica51.html#SuoS15,https://doi.org/10.1016/j.automatica.2014.10.090 +Ricardo Julián Mantz,A new approach to reaching mode of VSS using trajectory planning.,2001,37,Automatica,5,db/journals/automatica/automatica37.html#MantzBP01,https://doi.org/10.1016/S0005-1098(01)00012-7 +Florian Dörfler,Gather-and-broadcast frequency control in power systems.,2017,79,Automatica,,db/journals/automatica/automatica79.html#DorflerG17,https://doi.org/10.1016/j.automatica.2017.02.003 +Yu Zhao,Distributed finite-time tracking of multiple non-identical second-order nonlinear systems with settling time estimation.,2016,64,Automatica,,db/journals/automatica/automatica64.html#ZhaoDWC16,https://doi.org/10.1016/j.automatica.2015.11.005 +Harald K. Wimmer,Spectral factorizations with unmixed pole and zero sets.,1997,33,Automatica,2,db/journals/automatica/automatica33.html#Wimmer97,https://doi.org/10.1016/S0005-1098(96)00156-2 +Michael Larsen,Coordinated passivation designs.,2003,39,Automatica,2,db/journals/automatica/automatica39.html#LarsenJK03,https://doi.org/10.1016/S0005-1098(02)00237-6 +Frank Allgöwer,Introduction to the special issue on systems biology.,2011,47,Automatica,6,db/journals/automatica/automatica47.html#AllgowerD11,https://doi.org/10.1016/j.automatica.2011.04.011 +Shoulie Xie,Stabilization of a class of uncertain large-scale stochastic systems with time delays.,2000,36,Automatica,1,db/journals/automatica/automatica36.html#XieX00,https://doi.org/10.1016/S0005-1098(99)00147-8 +Konstantinos Koutroumpas,Modeling and analysis of DNA replication.,2011,47,Automatica,6,db/journals/automatica/automatica47.html#KoutroumpasL11,https://doi.org/10.1016/j.automatica.2011.02.007 +Xi Chen,Complete coverage and point coverage in randomly distributed sensor networks.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#ChenHB09,https://doi.org/10.1016/j.automatica.2009.02.020 +Muhammad Zakiyullah Romdlony,Stabilization with guaranteed safety using Control Lyapunov-Barrier Function.,2016,66,Automatica,,db/journals/automatica/automatica66.html#RomdlonyJ16,https://doi.org/10.1016/j.automatica.2015.12.011 +Yutaka Yamamoto,Approximation of frequency response for sampled-data control systems.,1999,35,Automatica,4,db/journals/automatica/automatica35.html#YamamotoMA99,https://doi.org/10.1016/S0005-1098(98)00206-4 +Keng Peng Tee,Barrier Lyapunov Functions for the control of output-constrained nonlinear systems.,2009,45,Automatica,4,db/journals/automatica/automatica45.html#TeeGT09,https://doi.org/10.1016/j.automatica.2008.11.017 +Howard Fan,An efficient order recursive algorithm with a lattice structure for estimating continuous-time AR process parameters.,1997,33,Automatica,3,db/journals/automatica/automatica33.html#Fan97,https://doi.org/10.1016/S0005-1098(96)00161-6 +Masayuki Sato,Gain-scheduled output-feedback controllers depending solely on scheduling parameters via parameter-dependent Lyapunov functions.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#Sato11,https://doi.org/10.1016/j.automatica.2011.09.023 +Tamer Basar,Transition in an editorship.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#Basar09,https://doi.org/10.1016/j.automatica.2008.11.002 +Bin Zhou 0001,An improved treatment of saturation nonlinearity with its application to control of systems subject to nested saturation.,2011,47,Automatica,2,db/journals/automatica/automatica47.html#ZhouZD11,https://doi.org/10.1016/j.automatica.2010.10.001 +Victor S. Dolk,Event-triggered control systems under packet losses.,2017,80,Automatica,,db/journals/automatica/automatica80.html#DolkH17,https://doi.org/10.1016/j.automatica.2017.02.029 +Björn Wittenmark,A two-level estimator for time varying parameters.,1979,15,Automatica,1,db/journals/automatica/automatica15.html#Wittenmark79,https://doi.org/10.1016/0005-1098(79)90089-X +Eloy García,Decentralized event-triggered consensus with general linear dynamics.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#GarciaCC14,https://doi.org/10.1016/j.automatica.2014.08.024 +Hansjörg G. Sage,Canonical H state-space parametrization.,2000,36,Automatica,7,db/journals/automatica/automatica36.html#SageM00,https://doi.org/10.1016/S0005-1098(00)00015-7 +Gianpasquale Martelli,Stability of PID-controlled second-order time-delay feedback systems.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#Martelli09,https://doi.org/10.1016/j.automatica.2009.05.031 +Atair Rios Neto,A stochastic rudder control law for ship path-following autopilots.,1985,21,Automatica,4,db/journals/automatica/automatica21.html#NetoC85,https://doi.org/10.1016/0005-1098(85)90074-3 +Xuerong Mao,Stabilization of continuous-time hybrid stochastic differential equations by discrete-time feedback control.,2013,49,Automatica,12,db/journals/automatica/automatica49.html#Mao13,https://doi.org/10.1016/j.automatica.2013.09.005 +Eero Immonen,Practical output regulation for bounded linear infinite-dimensional state space systems.,2007,43,Automatica,5,db/journals/automatica/automatica43.html#Immonen07,https://doi.org/10.1016/j.automatica.2006.11.009 +Qingbin Gao,Bounds of imaginary spectra of LTI systems in the domain of two of the multiple time delays.,2016,72,Automatica,,db/journals/automatica/automatica72.html#GaoO16,https://doi.org/10.1016/j.automatica.2016.05.011 +Tomas B. Co,Batch scheme recursive parameter estimation of continuous-time systems using the modulating functions method.,1997,33,Automatica,6,db/journals/automatica/automatica33.html#CoU97,https://doi.org/10.1016/S0005-1098(97)00020-4 +T. Alamo,Guaranteed state estimation by zonotopes.,2005,41,Automatica,6,db/journals/automatica/automatica41.html#AlamoBC05,https://doi.org/10.1016/j.automatica.2004.12.008 +M. E. Evans,Controllability of discrete time inhomogeneous bilinear systems.,1978,14,Automatica,2,db/journals/automatica/automatica14.html#EvansM78,https://doi.org/10.1016/0005-1098(78)90019-5 +Taiga Saito,Derivatives pricing with market impact and limit order book.,2017,86,Automatica,,db/journals/automatica/automatica86.html#SaitoT17,https://doi.org/10.1016/j.automatica.2017.08.028 +Jianjun Gao 0001,Linear-quadratic switching control with switching cost.,2012,48,Automatica,6,db/journals/automatica/automatica48.html#GaoL12,https://doi.org/10.1016/j.automatica.2012.03.006 +B.-G. Hu,Control Curve Design for Nonlinear (or Fuzzy) Proportional Actions Using Spline-based Functions.,1998,34,Automatica,9,db/journals/automatica/automatica34.html#HuMG98,https://doi.org/10.1016/S0005-1098(98)00060-0 +Karl Johan åström,Control: A perspective.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#AstromK14,https://doi.org/10.1016/j.automatica.2013.10.012 +L. Pau,Knowledge representation approaches in sensor fusion.,1989,25,Automatica,2,db/journals/automatica/automatica25.html#Pau89,https://doi.org/10.1016/0005-1098(89)90073-3 +Kay Yuh-Ju Ko,Adaptive control and identification of the dissolved oxygen process.,1982,18,Automatica,6,db/journals/automatica/automatica18.html#KoMG82,https://doi.org/10.1016/0005-1098(82)90062-0 +Dimos V. Dimarogonas,A connection between formation infeasibility and velocity alignment in kinematic multi-agent systems.,2008,44,Automatica,10,db/journals/automatica/automatica44.html#DimarogonasK08,https://doi.org/10.1016/j.automatica.2008.03.013 +Alessandro Casavola,A robust deconvolution scheme for fault detection and isolation of uncertain linear systems: an LMI approach.,2005,41,Automatica,8,db/journals/automatica/automatica41.html#CasavolaFF05,https://doi.org/10.1016/j.automatica.2005.03.019 +Andrea Garulli,Optimal induced-norm and set membership state smoothing and filtering for linear systems with bounded disturbances.,1999,35,Automatica,5,db/journals/automatica/automatica35.html#GarulliVZ99,https://doi.org/10.1016/S0005-1098(98)00212-X +Rolf Isermann,State space theory of discrete linear control : Vladimir Strejc.,1983,19,Automatica,1,db/journals/automatica/automatica19.html#Isermann83,https://doi.org/10.1016/0005-1098(83)90083-3 +Vincent D. Blondel,A survey of computational complexity results in systems and control.,2000,36,Automatica,9,db/journals/automatica/automatica36.html#BlondelT00,https://doi.org/10.1016/S0005-1098(00)00050-9 +John O'Reilly,The discrete linear time invariant time-optimal control problem - An overview.,1981,17,Automatica,2,db/journals/automatica/automatica17.html#OReilly81,https://doi.org/10.1016/0005-1098(81)90053-4 +Aydin Yesildirek,Feedback linearization using neural networks.,1995,31,Automatica,11,db/journals/automatica/automatica31.html#YesildirekL95,https://doi.org/10.1016/0005-1098(95)00078-B +Yi Liu,Frequency weighted controller reduction methods and loop transfer recovery.,1990,26,Automatica,3,db/journals/automatica/automatica26.html#LiuA90,https://doi.org/10.1016/0005-1098(90)90020-I +Robert Griñó,A feedback-based L2-norm limiter for periodic signals.,2012,48,Automatica,1,db/journals/automatica/automatica48.html#GrinoOF12,https://doi.org/10.1016/j.automatica.2011.09.037 +Michael Valásek,Efficient eigenvalue assignments for general linear MIMO systems.,1995,31,Automatica,11,db/journals/automatica/automatica31.html#ValasekO95,https://doi.org/10.1016/0005-1098(95)00091-A +Chunyan Han,Optimal filtering for networked systems with Markovian communication delays.,2013,49,Automatica,10,db/journals/automatica/automatica49.html#HanZF13,https://doi.org/10.1016/j.automatica.2013.07.018 +Yiding Ji,Enforcement of opacity by public and private insertion functions.,2018,93,Automatica,,db/journals/automatica/automatica93.html#JiWL18,https://doi.org/10.1016/j.automatica.2018.03.041 +Berç Rustem,Respecifying the weighting matrix of a quadratic objective function.,1978,14,Automatica,6,db/journals/automatica/automatica14.html#RustemVW78,https://doi.org/10.1016/0005-1098(78)90046-8 +Ying Zhang,Robust adaptive control of uncertain discrete-time systems.,1999,35,Automatica,2,db/journals/automatica/automatica35.html#ZhangWS99,https://doi.org/10.1016/S0005-1098(98)00156-3 +Ding Liu,"Erratum to ""Liveness of an extended S3PR "" [Automatica 46 (2010) 1008-1018].",2012,48,Automatica,5,db/journals/automatica/automatica48.html#LiuLZ12,https://doi.org/10.1016/j.automatica.2012.01.012 +U. Hartmann,Command and stability systems for aircraft: A new digital adaptive approach.,1980,16,Automatica,2,db/journals/automatica/automatica16.html#HartmannK80,https://doi.org/10.1016/0005-1098(80)90049-7 +Erik Frisk,Robust residual generation for diagnosis including a reference model for residual behavior.,2006,42,Automatica,3,db/journals/automatica/automatica42.html#FriskN06,https://doi.org/10.1016/j.automatica.2005.10.009 +A. Hmamed,Componentwise stability of continuous-time delay linear systems.,1996,32,Automatica,4,db/journals/automatica/automatica32.html#Hmamed96,https://doi.org/10.1016/0005-1098(95)00183-2 +Chun-Bo Feng,A design scheme of variable structure adaptive control for uncertain dynamic systems.,1996,32,Automatica,4,db/journals/automatica/automatica32.html#FengW96,https://doi.org/10.1016/0005-1098(95)00192-1 +Ilya V. Kolmanovsky,Discrete-time drift counteraction stochastic optimal control: Theory and application-motivated examples.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#KolmanovskyLM08,https://doi.org/10.1016/j.automatica.2007.06.002 +Emilia Fridman,A refined input delay approach to sampled-data control.,2010,46,Automatica,2,db/journals/automatica/automatica46.html#Fridman10,https://doi.org/10.1016/j.automatica.2009.11.017 +Jun-Wei Wang 0001,Stochastically exponential stability and stabilization of uncertain linear hyperbolic PDE systems with Markov jumping parameters.,2012,48,Automatica,3,db/journals/automatica/automatica48.html#WangWL12,https://doi.org/10.1016/j.automatica.2012.01.006 +Nader Motee,Stability analysis of quasi-polynomial dynamical systems with applications to biological network models.,2012,48,Automatica,11,db/journals/automatica/automatica48.html#MoteeBK12,https://doi.org/10.1016/j.automatica.2012.06.094 +Brian R. Gaines,Fitting control mathematics to control hardware: An aspect of the 1968 IFAC pulse-symposium.,1969,5,Automatica,1,db/journals/automatica/automatica5.html#GainesS69,https://doi.org/10.1016/0005-1098(69)90053-3 +Edward Boje,Multivariable quantitative feedback design for tracking error specifications.,2002,38,Automatica,1,db/journals/automatica/automatica38.html#Boje02,https://doi.org/10.1016/S0005-1098(01)00177-7 +Andrzej Banaszuk,Design of controllers for MG3 compressor models with general characteristics using graph backstepping.,1999,35,Automatica,8,db/journals/automatica/automatica35.html#BanaszukK99,https://doi.org/10.1016/S0005-1098(99)00046-1 +Chengjin Zhang,Subspace system identification for training-based MIMO channel estimation.,2005,41,Automatica,9,db/journals/automatica/automatica41.html#ZhangB05,https://doi.org/10.1016/j.automatica.2005.04.010 +Xianwei Li,Robust finite frequency Hinfinity filtering for uncertain 2-D Roesser systems.,2012,48,Automatica,6,db/journals/automatica/automatica48.html#LiG12,https://doi.org/10.1016/j.automatica.2012.03.012 +Humberto Stein Shiromoto,A region-dependent gain condition for asymptotic stability.,2015,52,Automatica,,db/journals/automatica/automatica52.html#ShiromotoAP15,https://doi.org/10.1016/j.automatica.2014.12.017 +Parijat Bhowmick,On decentralized integral controllability of stable negative-imaginary systems and some related extensions.,2018,94,Automatica,,db/journals/automatica/automatica94.html#BhowmickP18,https://doi.org/10.1016/j.automatica.2018.03.053 +Yuqian Guo,Robust stability of reset control systems with uncertain output matrix.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#GuoWX12,https://doi.org/10.1016/j.automatica.2012.05.062 +Tong Heng Lee,Implementation of a knowledge-based PID auto-tuner.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#LeeHHY93,https://doi.org/10.1016/0005-1098(93)90110-F +Petre Stoica,Approximate maximum likelihood frequency estimation.,1994,30,Automatica,1,db/journals/automatica/automatica30.html#StoicaHS94,https://doi.org/10.1016/0005-1098(94)90233-X +Lu Liu 0002,Global robust output regulation of lower triangular systems with unknown control direction.,2008,44,Automatica,5,db/journals/automatica/automatica44.html#LiuH08,https://doi.org/10.1016/j.automatica.2007.09.014 +Wladyslaw Mielczarski,Nonlinear field voltage control of a synchronous generator using feedback linearization.,1994,30,Automatica,10,db/journals/automatica/automatica30.html#MielczarskiZ94,https://doi.org/10.1016/0005-1098(94)90102-3 +Milan Korda,Nonquadratic stochastic model predictive control: A tractable approach.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#KordaC12,https://doi.org/10.1016/j.automatica.2012.06.053 +Diego Napp,"Corrigendum to: ""Time-relevant stability of 2D systems"" [Automatica 47 (11) (2011) 2373-2382].",2012,48,Automatica,10,db/journals/automatica/automatica48.html#NappRR12,https://doi.org/10.1016/j.automatica.2012.06.101 +Runyi Yu,On impulsive algebraic multiplicities of linear time-invariant singular systems under feedback.,2005,41,Automatica,9,db/journals/automatica/automatica41.html#Yu05a,https://doi.org/10.1016/j.automatica.2005.04.005 +Liang Xu,Mean square consensus of multi-agent systems over fading networks with directed graphs.,2018,95,Automatica,,db/journals/automatica/automatica95.html#XuZXX18,https://doi.org/10.1016/j.automatica.2018.06.005 +Paul Kotyczka,Local linear dynamics assignment in IDA-PBC.,2013,49,Automatica,4,db/journals/automatica/automatica49.html#Kotyczka13,https://doi.org/10.1016/j.automatica.2013.01.028 +Jorge Júlvez,Steady-state performance evaluation of continuous mono-T-semiflow Petri nets.,2005,41,Automatica,4,db/journals/automatica/automatica41.html#JulvezRS05,https://doi.org/10.1016/j.automatica.2004.11.007 +Karolos M. Grigoriadis,Minimum-energy covariance controllers.,1997,33,Automatica,4,db/journals/automatica/automatica33.html#GrigoriadisS97,https://doi.org/10.1016/S0005-1098(96)00188-4 +Khalid L. Sorensen,Command-induced vibration analysis using input shaping principles.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#SorensenS08,https://doi.org/10.1016/j.automatica.2008.01.029 +Dwaipayan Mukherjee,Generalized hierarchical cyclic pursuit.,2016,71,Automatica,,db/journals/automatica/automatica71.html#MukherjeeG16,https://doi.org/10.1016/j.automatica.2016.05.023 +Magnus Egerstedt,A hybrid control approach to action coordination for mobile robots.,2002,38,Automatica,1,db/journals/automatica/automatica38.html#EgerstedtH02,https://doi.org/10.1016/S0005-1098(01)00185-6 +Jin Zhou,"Erratum to: ""Pinning adaptive synchronization of a general complex dynamical network"" [Automatica 44 (2008) 996-1003].",2009,45,Automatica,2,db/journals/automatica/automatica45.html#ZhouLL09,https://doi.org/10.1016/j.automatica.2008.11.001 +Baibing Li,State estimation with partially observed inputs: A unified Kalman filtering approach.,2013,49,Automatica,3,db/journals/automatica/automatica49.html#Li13,https://doi.org/10.1016/j.automatica.2012.12.007 +Hongyinping Feng,New unknown input observer and output feedback stabilization for uncertain heat equation.,2017,86,Automatica,,db/journals/automatica/automatica86.html#FengG17,https://doi.org/10.1016/j.automatica.2017.08.004 +Wei Liu,State estimation for discrete-time Markov jump linear systems with time-correlated measurement noise.,2017,76,Automatica,,db/journals/automatica/automatica76.html#Liu17,https://doi.org/10.1016/j.automatica.2016.10.028 +Weiguo Xia,Clustering in diffusively coupled networks.,2011,47,Automatica,11,db/journals/automatica/automatica47.html#XiaC11,https://doi.org/10.1016/j.automatica.2011.08.043 +Graziano Chesi,Minimizing trigonometric matrix polynomials over semi-algebraic sets.,2015,52,Automatica,,db/journals/automatica/automatica52.html#Chesi15,https://doi.org/10.1016/j.automatica.2014.12.007 +Yunlei Zou,Cycles of periodically time-variant Boolean networks.,2015,51,Automatica,,db/journals/automatica/automatica51.html#ZouZ15,https://doi.org/10.1016/j.automatica.2014.10.071 +W. Alejandro Apaza-Perez,Dissipative approach to sliding mode observers design for uncertain mechanical systems.,2018,87,Automatica,,db/journals/automatica/automatica87.html#Apaza-PerezMF18,https://doi.org/10.1016/j.automatica.2017.10.016 +Angelo Alessandri,Design of state estimators for uncertain linear systems using quadratic boundedness.,2006,42,Automatica,3,db/journals/automatica/automatica42.html#AlessandriBB06,https://doi.org/10.1016/j.automatica.2005.10.013 +Miloje S. Radenkovic,Extremum seeking-based perfect adaptive tracking of non-PE references despite nonvanishing variance of perturbation.,2018,93,Automatica,,db/journals/automatica/automatica93.html#RadenkovicK18a,https://doi.org/10.1016/j.automatica.2018.03.068 +Chirayu D. Athalye,ℓ*: The cases of infinite dimensional discrete autonomous systems and 2-D autonomous systems.,2017,84,Automatica,,db/journals/automatica/automatica84.html#AthalyePP17,https://doi.org/10.1016/j.automatica.2017.06.028 +Mark A. Shayman,Pole placement by dynamic compensation for descriptor systems.,1988,24,Automatica,2,db/journals/automatica/automatica24.html#Shayman88,https://doi.org/10.1016/0005-1098(88)90040-4 +Paolo Bolzern,Markov Jump Linear Systems with switching transition rates: Mean square stability with dwell-time.,2010,46,Automatica,6,db/journals/automatica/automatica46.html#BolzernCN10,https://doi.org/10.1016/j.automatica.2010.03.007 +Miroslav Krstic,Modular approach to adaptive nonlinear stabilization.,1996,32,Automatica,4,db/journals/automatica/automatica32.html#KrsticK96,https://doi.org/10.1016/0005-1098(95)00179-4 +Andrew R. Teel,Transition in an editorship.,2017,78,Automatica,,db/journals/automatica/automatica78.html#Teel17,https://doi.org/10.1016/j.automatica.2017.02.020 +Siep Weiland,Optimal Hankel-norm Identification of Dynamical Systems.,1997,33,Automatica,7,db/journals/automatica/automatica33.html#WeilandS97,https://doi.org/10.1016/S0005-1098(97)00023-X +Abbas Dideban,Reduction of constraints for controller synthesis based on safe Petri Nets.,2008,44,Automatica,7,db/journals/automatica/automatica44.html#DidebanA08,https://doi.org/10.1016/j.automatica.2007.10.031 +Pedro Tiago Martins Batista,A GES attitude observer with single vector observations.,2012,48,Automatica,2,db/journals/automatica/automatica48.html#BatistaSO12,https://doi.org/10.1016/j.automatica.2011.07.005 +Bin Zhou 0001,Pseudo-predictor feedback stabilization of linear systems with time-varying input delays.,2014,50,Automatica,11,db/journals/automatica/automatica50.html#Zhou14b,https://doi.org/10.1016/j.automatica.2014.08.036 +Munther A. Dahleh,An overview of extremal properties for robust control of interval plants.,1993,29,Automatica,3,db/journals/automatica/automatica29.html#DahlehTV93,https://doi.org/10.1016/0005-1098(93)90065-2 +Vasile Dragan,Control of singularly perturbed systems with Markovian jump parameters: an Hinfinity approach.,1999,35,Automatica,8,db/journals/automatica/automatica35.html#DraganSB99,https://doi.org/10.1016/S0005-1098(99)00047-3 +D. V. Iourtchenko,Solution to a class of stochastic LQ problems with bounded control.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#Iourtchenko09,https://doi.org/10.1016/j.automatica.2009.01.019 +Darrell Williamson,Nonlinear compensation of linear processes.,1979,15,Automatica,5,db/journals/automatica/automatica15.html#Williamson79,https://doi.org/10.1016/0005-1098(79)90008-6 +Hyeong Soo Chang,On functional equations for Kth best policies in Markov decision processes.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#Chang13,https://doi.org/10.1016/j.automatica.2012.09.016 +Michael P. Niemiec,Nonlinear model-state feedback control for nonminimum-phase processes.,2003,39,Automatica,7,db/journals/automatica/automatica39.html#NiemiecK03,https://doi.org/10.1016/S0005-1098(03)00103-1 +Michael Margaliot,Stability analysis of switched systems using variational principles: An introduction.,2006,42,Automatica,12,db/journals/automatica/automatica42.html#Margaliot06,https://doi.org/10.1016/j.automatica.2006.06.020 +Xu Jin,Fault tolerant finite-time leader-follower formation control for autonomous surface vessels with LOS range and angle constraints.,2016,68,Automatica,,db/journals/automatica/automatica68.html#Jin16,https://doi.org/10.1016/j.automatica.2016.01.064 +Tengfei Liu,Distributed nonlinear control of mobile autonomous multi-agents.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#LiuJ14,https://doi.org/10.1016/j.automatica.2014.02.023 +Ernst Presman,Existence of Optimal Feedback Production Plans in Stochastic Flowshops with Limited Buffers.,1997,33,Automatica,10,db/journals/automatica/automatica33.html#PresmanSS97,https://doi.org/10.1016/S0005-1098(97)00096-4 +D. J. G. Morrell,Identification and validation of turbogenerator models.,1990,26,Automatica,1,db/journals/automatica/automatica26.html#MorrellH90,https://doi.org/10.1016/0005-1098(90)90165-E +Tian Qi,On delay radii and bounds of MIMO systems.,2017,77,Automatica,,db/journals/automatica/automatica77.html#QiZC17,https://doi.org/10.1016/j.automatica.2016.11.038 +Torsten Söderström,Accuracy analysis of a covariance matching approach for identifying errors-in-variables systems.,2011,47,Automatica,2,db/journals/automatica/automatica47.html#SoderstromM11,https://doi.org/10.1016/j.automatica.2010.10.046 +Fouad Giri,Parameter identification of Hammerstein systems containing backlash operators with arbitrary-shape parametric borders.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#GiriRBC11,https://doi.org/10.1016/j.automatica.2011.05.008 +W. Harmon Ray,An adaptive control of the batch reactor - III : Simplified parameter estimation.,1965,3,Automatica,2,db/journals/automatica/automatica3.html#RayA65,https://doi.org/10.1016/0005-1098(65)90001-4 +Emilia Fridman,Exponential stability of linear distributed parameter systems with time-varying delays.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#FridmanO09,https://doi.org/10.1016/j.automatica.2008.06.006 +Jamie S. Evans,Optimal filtering of doubly stochastic auto-regressive processes.,1999,35,Automatica,2,db/journals/automatica/automatica35.html#EvansK99,https://doi.org/10.1016/S0005-1098(98)00149-6 +C. S. Elsden,A digital transfer function analyser based on pulse rate techniques.,1969,5,Automatica,1,db/journals/automatica/automatica5.html#ElsdenL69,https://doi.org/10.1016/0005-1098(69)90055-7 +David W. Clarke,Implementation and application of microprocessor-based self-tuners.,1981,17,Automatica,1,db/journals/automatica/automatica17.html#ClarkeG81,https://doi.org/10.1016/0005-1098(81)90098-4 +Zidong Wang,Robust Hinfinity observer design of linear state delayed systems with parametric uncertainty: the discrete-time case.,1999,35,Automatica,6,db/journals/automatica/automatica35.html#WangHU99a,https://doi.org/10.1016/S0005-1098(99)00008-4 +Toshiharu Sugie,Noise tolerant iterative learning control for a class of continuous-time systems.,2007,43,Automatica,10,db/journals/automatica/automatica43.html#SugieS07,https://doi.org/10.1016/j.automatica.2007.02.021 +Niklas Everitt,An empirical Bayes approach to identification of modules in dynamic networks.,2018,91,Automatica,,db/journals/automatica/automatica91.html#EverittBH18,https://doi.org/10.1016/j.automatica.2018.01.011 +Tsutomu Mita,Extended Hinfinity control - Hinfinity control with unstable weights.,2000,36,Automatica,5,db/journals/automatica/automatica36.html#MitaXA00,https://doi.org/10.1016/S0005-1098(99)00200-9 +Yunfei Xu,Spatial prediction with mobile sensor networks using Gaussian processes with built-in Gaussian Markov random fields.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#XuC12,https://doi.org/10.1016/j.automatica.2012.05.029 +Jan C. Willems,From time series to linear system - Part II. Exact modelling.,1986,22,Automatica,6,db/journals/automatica/automatica22.html#Willems86a,https://doi.org/10.1016/0005-1098(86)90005-1 +Dimitri Jeltsema,An energy-balancing perspective of interconnection and damping assignment control of nonlinear systems.,2004,40,Automatica,9,db/journals/automatica/automatica40.html#JeltsemaOS04,https://doi.org/10.1016/j.automatica.2004.04.007 +J. T.-H. Lo,Optimal estimation for the satellite attitude using star tracker measurements.,1986,22,Automatica,4,db/journals/automatica/automatica22.html#Lo86,https://doi.org/10.1016/0005-1098(86)90052-X +S. Humble,Safety systems reliability : A. E. Green.,1986,22,Automatica,4,db/journals/automatica/automatica22.html#Humble86,https://doi.org/10.1016/0005-1098(86)90057-9 +J. F. Dunne,An explicit control energy function for optimal suppression in linear systems.,2000,36,Automatica,1,db/journals/automatica/automatica36.html#Dunne00,https://doi.org/10.1016/S0005-1098(99)00145-4 +Vira Chankong,On the characterization of noninferior solutions of the vector optimization problem.,1982,18,Automatica,6,db/journals/automatica/automatica18.html#ChankongH82,https://doi.org/10.1016/0005-1098(82)90058-9 +Kun Deng,Structure-preserving model reduction of nonlinear building thermal models.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#DengGBM14,https://doi.org/10.1016/j.automatica.2014.02.009 +Chi-Jo Wang,Impulse observability and impulse controllability of linear time-varying singular systems.,2001,37,Automatica,11,db/journals/automatica/automatica37.html#WangL01,https://doi.org/10.1016/S0005-1098(01)00137-6 +Christian Furtmüller,Adaptive robust stabilization of continuous casting.,2012,48,Automatica,1,db/journals/automatica/automatica48.html#FurtmullerCR12,https://doi.org/10.1016/j.automatica.2011.09.049 +Stefan Almér,Harmonic analysis of pulse-width modulated systems.,2009,45,Automatica,4,db/journals/automatica/automatica45.html#AlmerJ09,https://doi.org/10.1016/j.automatica.2008.10.029 +Ling Shi,Kalman filtering over a packet-delaying network: A probabilistic approach.,2009,45,Automatica,9,db/journals/automatica/automatica45.html#ShiXM09,https://doi.org/10.1016/j.automatica.2009.05.018 +James A. Primbs,Feasibility and stability of constrained finite receding horizon control.,2000,36,Automatica,7,db/journals/automatica/automatica36.html#PrimbsN00,https://doi.org/10.1016/S0005-1098(00)00004-2 +Keigo Watanabe,A hierarchical multiple model adaptive control of discrete-time stochastic systems for sensor and actuator uncertainties.,1990,26,Automatica,5,db/journals/automatica/automatica26.html#WatanabeT90,https://doi.org/10.1016/0005-1098(90)90004-2 +Marco A. Arteaga,Tracking control of flexible robot arms with a nonlinear observer.,2000,36,Automatica,9,db/journals/automatica/automatica36.html#Arteaga00,https://doi.org/10.1016/S0005-1098(00)00043-1 +Keqin Gu,Quadratic stabilizability of uncertain systems : A two level optimization setup.,1991,27,Automatica,1,db/journals/automatica/automatica27.html#GuCZL91,https://doi.org/10.1016/0005-1098(91)90015-T +Coen C. de Visser,Differential constraints for bounded recursive identification with multivariate splines.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#VisserCM11,https://doi.org/10.1016/j.automatica.2011.06.011 +Urban Forssell,Closed-loop identification revisited.,1999,35,Automatica,7,db/journals/automatica/automatica35.html#ForssellL99,https://doi.org/10.1016/S0005-1098(99)00022-9 +Giorgio Valmorbida,Region of attraction estimation using invariant sets and rational Lyapunov functions.,2017,75,Automatica,,db/journals/automatica/automatica75.html#ValmorbidaA17,https://doi.org/10.1016/j.automatica.2016.09.003 +Carles Batlle,On the approximation of delay elements by feedback.,2000,36,Automatica,5,db/journals/automatica/automatica36.html#BatlleM00,https://doi.org/10.1016/S0005-1098(99)00195-8 +Alireza Karimi,Robust control of polytopic systems by convex optimization.,2007,43,Automatica,8,db/journals/automatica/automatica43.html#KarimiKL07,https://doi.org/10.1016/j.automatica.2007.01.022 +Seiichi Nakamori,New design of linear discrete-time predictor using covariance information.,1983,19,Automatica,3,db/journals/automatica/automatica19.html#Nakamori83,https://doi.org/10.1016/0005-1098(83)90116-4 +Wei Wang 0071,Observer design for networked control systems with FlexRay.,2017,82,Automatica,,db/journals/automatica/automatica82.html#WangNP17,https://doi.org/10.1016/j.automatica.2017.03.038 +Giuseppe Carlo Calafiore,Ellipsoidal bounds for uncertain linear equations and dynamical systems.,2004,40,Automatica,5,db/journals/automatica/automatica40.html#CalafioreG04,https://doi.org/10.1016/j.automatica.2004.01.001 +Bei Chen,Adaptive sliding mode control for stochastic Markovian jumping systems with actuator degradation.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#ChenNZ13,https://doi.org/10.1016/j.automatica.2013.02.014 +Jari J. Hätönen,Convex modifications to an iterative learning control law.,2004,40,Automatica,7,db/journals/automatica/automatica40.html#HatonenO04,https://doi.org/10.1016/j.automatica.2004.02.005 +Chieh-Li Chen,A pneumatic model-following control system using a fuzzy adaptive controller.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#ChenCC93,https://doi.org/10.1016/0005-1098(93)90109-7 +O. L. R. Jacobs,Modelling estimation and control in the relief of post-operative pain.,1985,21,Automatica,4,db/journals/automatica/automatica21.html#JacobsBLMOR85,https://doi.org/10.1016/0005-1098(85)90072-X +Rihab El Houda Thabet,An effective method to interval observer design for time-varying systems.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#ThabetRCEZ14,https://doi.org/10.1016/j.automatica.2014.08.035 +P. M. Mäkilä,Linear quadratic control revisited.,2000,36,Automatica,1,db/journals/automatica/automatica36.html#Makila00,https://doi.org/10.1016/S0005-1098(99)00102-8 +Yu Jiang 0003,Computational adaptive optimal control for continuous-time linear systems with completely unknown dynamics.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#JiangJ12,https://doi.org/10.1016/j.automatica.2012.06.096 +Cristian Oara,All doubly coprime factorizations of a general rational matrix.,2009,45,Automatica,8,db/journals/automatica/automatica45.html#OaraS09,https://doi.org/10.1016/j.automatica.2009.03.021 +B. Zhou,A unified approach to data association in multitarget tracking.,1994,30,Automatica,9,db/journals/automatica/automatica30.html#ZhouB94,https://doi.org/10.1016/0005-1098(94)90013-2 +Svyatoslav Pavlichkov,Decentralized uniform input-to-state stabilization of hierarchically interconnected triangular switched systems with arbitrary switchings.,2018,94,Automatica,,db/journals/automatica/automatica94.html#PavlichkovP18,https://doi.org/10.1016/j.automatica.2018.04.029 +William E. Schmitendorf,Methods for obtaining robust tracking control laws.,1987,23,Automatica,5,db/journals/automatica/automatica23.html#Schmitendorf87,https://doi.org/10.1016/0005-1098(87)90066-5 +Graziano Chesi,Robust stability of time-varying polytopic systems via parameter-dependent homogeneous Lyapunov functions.,2007,43,Automatica,2,db/journals/automatica/automatica43.html#ChesiGTV07,https://doi.org/10.1016/j.automatica.2006.08.024 +Audrey Favache,Power-shaping control of reaction systems: The CSTR case.,2010,46,Automatica,11,db/journals/automatica/automatica46.html#FavacheD10,https://doi.org/10.1016/j.automatica.2010.07.011 +Néstor Osvaldo Pérez-Arancibia,A new method for synthesizing multiple-period adaptive-repetitive controllers and its application to the control of hard disk drives.,2010,46,Automatica,7,db/journals/automatica/automatica46.html#Perez-ArancibiaTG10,https://doi.org/10.1016/j.automatica.2010.04.007 +Manfred Gilli,Understanding complex systems.,1981,17,Automatica,4,db/journals/automatica/automatica17.html#GilliR81,https://doi.org/10.1016/0005-1098(81)90039-X +Ying Zhang,Unbiased parameter estimation of linear systems with colored noises.,1997,33,Automatica,5,db/journals/automatica/automatica33.html#ZhangF97,https://doi.org/10.1016/S0005-1098(96)00246-4 +Ian R. Manchester,A nonlinear observer for on-line estimation of the cerebrospinal fluid outflow resistance.,2008,44,Automatica,5,db/journals/automatica/automatica44.html#ManchesterAASE08,https://doi.org/10.1016/j.automatica.2007.09.025 +Mert Bastug,Reachability and observability reduction for linear switched systems with constrained switching.,2016,74,Automatica,,db/journals/automatica/automatica74.html#BastugPWL16,https://doi.org/10.1016/j.automatica.2016.08.002 +Vikram R. Saksena,A multimodel approach to stochastic nash games.,1982,18,Automatica,3,db/journals/automatica/automatica18.html#SaksenaC82,https://doi.org/10.1016/0005-1098(82)90089-9 +Yuan Fan,Distributed event-triggered control of multi-agent systems with combinational measurements.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#FanFWS13,https://doi.org/10.1016/j.automatica.2012.11.010 +Bert Pluymers,Constrained linear MPC with time-varying terminal cost using convex combinations.,2005,41,Automatica,5,db/journals/automatica/automatica41.html#PluymersRBSM05,https://doi.org/10.1016/j.automatica.2004.11.023 +Jacques Vlassenbroeck,A chebyshev polynomial method for optimal control with state constraints.,1988,24,Automatica,4,db/journals/automatica/automatica24.html#Vlassenbroeck88,https://doi.org/10.1016/0005-1098(88)90094-5 +Seyed Rasoul Etesami,Price of anarchy and an approximation algorithm for the binary-preference capacitated selfish replication game.,2017,76,Automatica,,db/journals/automatica/automatica76.html#EtesamiB17,https://doi.org/10.1016/j.automatica.2016.10.002 +Bei Lu,Switching LPV control designs using multiple parameter-dependent Lyapunov functions.,2004,40,Automatica,11,db/journals/automatica/automatica40.html#LuW04,https://doi.org/10.1016/j.automatica.2004.06.011 +Alexey S. Matveev,Range-only based circumnavigation of a group of moving targets by a non-holonomic mobile robot.,2016,65,Automatica,,db/journals/automatica/automatica65.html#MatveevSS16,https://doi.org/10.1016/j.automatica.2015.11.032 +S. Gigi,Quantification of interaction in multiloop control systems using directed spectral decomposition.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#GigiT13,https://doi.org/10.1016/j.automatica.2013.01.061 +John van der Hoek,A modified hidden Markov model.,2013,49,Automatica,12,db/journals/automatica/automatica49.html#HoekE13,https://doi.org/10.1016/j.automatica.2013.09.012 +Juanjuan Xu,Input delay margin for consensusability of multi-agent systems.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#XuZX13,https://doi.org/10.1016/j.automatica.2013.02.044 +Willem L. De Koning,Optimal estimation of linear discrete-time systems with stochastic parameters.,1984,20,Automatica,1,db/journals/automatica/automatica20.html#Koning84,https://doi.org/10.1016/0005-1098(84)90071-2 +Chengtao Wen,Analytical expression of explicit MPC solution via lattice piecewise-affine function.,2009,45,Automatica,4,db/journals/automatica/automatica45.html#WenMY09,https://doi.org/10.1016/j.automatica.2008.11.023 +P. B. Dickinson,A parameter space approach to constrained variance PID controller design.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#DickinsonS09,https://doi.org/10.1016/j.automatica.2008.10.030 +Abderrhaman Iggidr,On the stability of nonautonomous systems.,2003,39,Automatica,1,db/journals/automatica/automatica39.html#IggidrS03,https://doi.org/10.1016/S0005-1098(02)00206-6 +Florin Sebastian Tudor,H2 optimal control for generalized discrete-time systems.,2014,50,Automatica,5,db/journals/automatica/automatica50.html#TudorO14,https://doi.org/10.1016/j.automatica.2014.03.004 +Guillaume Mercère,Convergence analysis of instrumental variable recursive subspace identification algorithms.,2007,43,Automatica,8,db/journals/automatica/automatica43.html#MercereL07,https://doi.org/10.1016/j.automatica.2007.01.014 +Ulf Borison,Self-tuning regulators for a class of multivariable systems.,1979,15,Automatica,2,db/journals/automatica/automatica15.html#Borison79,https://doi.org/10.1016/0005-1098(79)90071-2 +Karthik Elamvazhuthi,PDE-based optimization for stochastic mapping and coverage strategies using robotic ensembles.,2018,95,Automatica,,db/journals/automatica/automatica95.html#ElamvazhuthiKB18,https://doi.org/10.1016/j.automatica.2018.06.007 +Bi-Qiang Mu,Identification of linear continuous-time systems under irregular and random output sampling.,2015,60,Automatica,,db/journals/automatica/automatica60.html#MuGWYXZ15,https://doi.org/10.1016/j.automatica.2015.07.009 +Georgios Birpoutsoukis,Regularized nonparametric Volterra kernel estimation.,2017,82,Automatica,,db/journals/automatica/automatica82.html#BirpoutsoukisML17,https://doi.org/10.1016/j.automatica.2017.04.014 +Chaouki T. Abdallah,Controller synthesis for a class of interval plants.,1995,31,Automatica,2,db/journals/automatica/automatica31.html#AbdallahDPD95,https://doi.org/10.1016/0005-1098(94)00136-7 +Franco Blanchini,Guaranteed cost control for multi-inventory systems with uncertain demand.,2004,40,Automatica,2,db/journals/automatica/automatica40.html#BlanchiniMR04,https://doi.org/10.1016/j.automatica.2003.09.015 +Xiaodong Zhang 0009,Fault diagnosis of a class of nonlinear uncertain systems with Lipschitz nonlinearities using adaptive estimation.,2010,46,Automatica,2,db/journals/automatica/automatica46.html#ZhangPP10,https://doi.org/10.1016/j.automatica.2009.11.014 +Lamia Ben Jemaa,Limiting performance of optimal linear discrete filters.,2003,39,Automatica,7,db/journals/automatica/automatica39.html#JemaaD03a,https://doi.org/10.1016/S0005-1098(03)00090-6 +Bin Zhou 0001,Stabilization of linear systems with both input and state delays by observer-predictors.,2017,83,Automatica,,db/journals/automatica/automatica83.html#ZhouLM17,https://doi.org/10.1016/j.automatica.2017.06.027 +Bartlomiej Sulikowski,Output feedback control of discrete linear repetitive processes.,2004,40,Automatica,12,db/journals/automatica/automatica40.html#SulikowskiGRO04,https://doi.org/10.1016/j.automatica.2004.07.010 +Baozhu Du,Stabilization for state/input delay systems via static and integral output feedback.,2010,46,Automatica,12,db/journals/automatica/automatica46.html#DuLS10,https://doi.org/10.1016/j.automatica.2010.08.005 +Jari J. Hätönen,Basis functions and parameter optimisation in high-order iterative learning control.,2006,42,Automatica,2,db/journals/automatica/automatica42.html#HatonenOF06,https://doi.org/10.1016/j.automatica.2005.05.025 +Shengyuan Xu,Hinfinity output feedback control for uncertain stochastic systems with time-varying delays.,2004,40,Automatica,12,db/journals/automatica/automatica40.html#XuC04,https://doi.org/10.1016/j.automatica.2004.06.018 +R. Starkermann,Das kriterium der symmetrie-minimalstabilität mehrfachgeregelter systeme.,1963,1,Automatica,1,db/journals/automatica/automatica1.html#Starkermann63,https://doi.org/10.1016/0005-1098(63)90004-9 +Joachim Deutscher,A backstepping approach to the output regulation of boundary controlled parabolic PDEs.,2015,57,Automatica,,db/journals/automatica/automatica57.html#Deutscher15,https://doi.org/10.1016/j.automatica.2015.04.008 +Huibert Kwakernaak,An algorithm for rating multiple-aspect alternatives using fuzzy sets.,1979,15,Automatica,5,db/journals/automatica/automatica15.html#Kwakernaak79,https://doi.org/10.1016/0005-1098(79)90010-4 +Paul D. Couchman,Stochastic MPC with inequality stability constraints.,2006,42,Automatica,12,db/journals/automatica/automatica42.html#CouchmanCK06,https://doi.org/10.1016/j.automatica.2006.07.006 +J. M. Schumacher,Time-scaling symmetry and Zeno solutions.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#Schumacher09,https://doi.org/10.1016/j.automatica.2008.12.008 +Un Sik Park,Stability analysis and control design of LTI discrete-time systems by the direct use of time series data.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#ParkI09,https://doi.org/10.1016/j.automatica.2008.12.012 +Stanoje P. Bingulac,On the role of orthonormality of sensitivity functions in parameter optimization problems.,1969,5,Automatica,4,db/journals/automatica/automatica5.html#Bingulac69,https://doi.org/10.1016/0005-1098(69)90113-7 +Todd D. Murphey,On multiple model control for multiple contact systems.,2008,44,Automatica,2,db/journals/automatica/automatica44.html#Murphey08,https://doi.org/10.1016/j.automatica.2007.05.018 +Hiroaki Mukaidani,A new approach to robust guaranteed cost control for uncertain multimodeling systems.,2005,41,Automatica,6,db/journals/automatica/automatica41.html#Mukaidani05,https://doi.org/10.1016/j.automatica.2005.01.003 +Edoardo Mosca,Predictive switching supervisory control of persistently disturbed input-saturated plants.,2005,41,Automatica,1,db/journals/automatica/automatica41.html#Mosca05,https://doi.org/10.1016/j.automatica.2004.09.002 +Adrian-Mihail Stoica,A bounded real lemma type-result with respect to the anisotropic norm setup for stochastic systems with multiplicative noise.,2017,84,Automatica,,db/journals/automatica/automatica84.html#StoicaY17,https://doi.org/10.1016/j.automatica.2017.07.023 +Hendrik Lens,A fast nonlinear control method for linear systems with input saturation.,2011,47,Automatica,4,db/journals/automatica/automatica47.html#LensAD11,https://doi.org/10.1016/j.automatica.2011.01.028 +Takuya Ikeda,Value function in maximum hands-off control for linear systems.,2016,64,Automatica,,db/journals/automatica/automatica64.html#IkedaN16,https://doi.org/10.1016/j.automatica.2015.10.043 +Miad Moarref,Asymptotic stability of sampled-data piecewise affine slab systems.,2012,48,Automatica,11,db/journals/automatica/automatica48.html#MoarrefR12,https://doi.org/10.1016/j.automatica.2012.08.028 +Tao Shen,An improved method of ultimate bound computation for linear switched systems with bounded disturbances.,2016,70,Automatica,,db/journals/automatica/automatica70.html#ShenP16,https://doi.org/10.1016/j.automatica.2016.03.031 +Halil I. Basturk,Cancellation of unmatched biased sinusoidal disturbances for unknown LTI systems in the presence of state delay.,2017,76,Automatica,,db/journals/automatica/automatica76.html#Basturk17,https://doi.org/10.1016/j.automatica.2016.10.006 +Claudio De Persis,Parsimonious event-triggered distributed control: A Zeno free approach.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#PersisSW13,https://doi.org/10.1016/j.automatica.2013.03.003 +Chiang-Ju Chien,Further results on adaptive iterative learning control of robot manipulators.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#ChienT08,https://doi.org/10.1016/j.automatica.2007.06.023 +D. H. Sanjeeva Maithripala,An intrinsic PID controller for mechanical systems on Lie groups.,2015,54,Automatica,,db/journals/automatica/automatica54.html#MaithripalaB15,https://doi.org/10.1016/j.automatica.2015.01.005 +Shuzhi Sam Ge,Adaptive NN control for a class of strict-feedback discrete-time nonlinear systems.,2003,39,Automatica,5,db/journals/automatica/automatica39.html#GeLL03,https://doi.org/10.1016/S0005-1098(03)00032-3 +Gang Tao,Multivariable adaptive control: A survey.,2014,50,Automatica,11,db/journals/automatica/automatica50.html#Tao14,https://doi.org/10.1016/j.automatica.2014.10.015 +Xin-Jiang Wei,Disturbance observer-based disturbance attenuation control for a class of stochastic systems.,2016,63,Automatica,,db/journals/automatica/automatica63.html#WeiWK16,https://doi.org/10.1016/j.automatica.2015.10.019 +Amir Ajorlou,Two-stage energy-optimal formation reconfiguration strategy.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#AjorlouMATN12,https://doi.org/10.1016/j.automatica.2012.06.059 +Ibrahima N'Doye,Robust stabilization of uncertain descriptor fractional-order systems.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#NDoyeDZR13,https://doi.org/10.1016/j.automatica.2013.02.066 +Maciej Niedzwiecki,Estimation and tracking of complex-valued quasi-periodically varying systems.,2005,41,Automatica,9,db/journals/automatica/automatica41.html#NiedzwieckiK05,https://doi.org/10.1016/j.automatica.2005.04.011 +J. Anthony Rossiter,A numerically robust state-space approach to stable-predictive control strategies.,1998,34,Automatica,1,db/journals/automatica/automatica34.html#RossiterKR98,https://doi.org/10.1016/S0005-1098(97)00171-4 +George Calcev,Passivity approach to fuzzy control systems.,1998,34,Automatica,3,db/journals/automatica/automatica34.html#CalcevGN98,https://doi.org/10.1016/S0005-1098(97)00202-1 +Claudio Bonivento,Output regulation of nonlinear systems by sliding mode.,2001,37,Automatica,4,db/journals/automatica/automatica37.html#BoniventoMZ01,https://doi.org/10.1016/S0005-1098(00)00184-9 +Ji Xiang,Cooperative output regulation of linear multi-agent network systems with dynamic edges.,2017,77,Automatica,,db/journals/automatica/automatica77.html#XiangLH17,https://doi.org/10.1016/j.automatica.2016.11.016 +Devi Putra,Analysis of undercompensation and overcompensation of friction in 1DOF mechanical systems.,2007,43,Automatica,8,db/journals/automatica/automatica43.html#PutraNW07,https://doi.org/10.1016/j.automatica.2007.01.021 +Michael P. Vitus,On efficient sensor scheduling for linear dynamical systems.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#Vitus0AHT12,https://doi.org/10.1016/j.automatica.2012.06.092 +Delphine Bresch-Pietri,Robust compensation of a chattering time-varying input delay with jumps.,2018,92,Automatica,,db/journals/automatica/automatica92.html#Bresch-PietriMP18,https://doi.org/10.1016/j.automatica.2018.03.058 +Marcello Farina,Tube-based robust sampled-data MPC for linear continuous-time systems.,2012,48,Automatica,7,db/journals/automatica/automatica48.html#FarinaS12a,https://doi.org/10.1016/j.automatica.2012.03.026 +Chong Lin,Improvement on observer-based Hinfinity control for T-S fuzzy systems.,2005,41,Automatica,9,db/journals/automatica/automatica41.html#LinWL05,https://doi.org/10.1016/j.automatica.2005.04.004 +Yan Cui,Cellphone geolocation via magnetic mapping.,2015,51,Automatica,,db/journals/automatica/automatica51.html#CuiAA15,https://doi.org/10.1016/j.automatica.2014.10.118 +Hossein Beikzadeh,Dissipativity of nonlinear multirate sampled-data systems under emulation design.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#BeikzadehM13,https://doi.org/10.1016/j.automatica.2012.10.003 +Jan Maximilian Montenbruck,Practical synchronization with diffusive couplings.,2015,53,Automatica,,db/journals/automatica/automatica53.html#MontenbruckBA15,https://doi.org/10.1016/j.automatica.2014.12.024 +Leonid Mirkin,H2 optimization for systems with adobe input delays: A loop shifting approach.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#MirkinPS12,https://doi.org/10.1016/j.automatica.2012.05.036 +Fu-Shiung Hsieh,Analysis of contract net in multi-agent systems.,2006,42,Automatica,5,db/journals/automatica/automatica42.html#Hsieh06,https://doi.org/10.1016/j.automatica.2005.12.002 +Yue Fu,Nonlinear multivariable adaptive control using multiple models and neural networks.,2007,43,Automatica,6,db/journals/automatica/automatica43.html#FuC07,https://doi.org/10.1016/j.automatica.2006.12.010 +Z. G. Ying,A stochastically averaged optimal control strategy for quasi-Hamiltonian systems with actuator saturation.,2006,42,Automatica,9,db/journals/automatica/automatica42.html#YingZ06,https://doi.org/10.1016/j.automatica.2006.04.023 +J. A. Sefton,Uncertainty in the weighted gap metric: A geometric approach.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#SeftonO93a,https://doi.org/10.1016/0005-1098(93)90108-6 +John Hauser,Nonlinear control design for slightly non-minimum phase systems: Application to V/STOL aircraft.,1992,28,Automatica,4,db/journals/automatica/automatica28.html#HauserSM92,https://doi.org/10.1016/0005-1098(92)90029-F +Jiangshuai Huang,Smooth control design for adaptive leader-following consensus control of a class of high-order nonlinear systems with time-varying reference.,2017,83,Automatica,,db/journals/automatica/automatica83.html#HuangSWWL17,https://doi.org/10.1016/j.automatica.2017.06.025 +Jian Chen,Navigation function-based visual servo control.,2007,43,Automatica,7,db/journals/automatica/automatica43.html#ChenDDC07,https://doi.org/10.1016/j.automatica.2006.12.018 +T. P. Zhang,Adaptive neural control of MIMO nonlinear state time-varying delay systems with unknown dead-zones and gain signs.,2007,43,Automatica,6,db/journals/automatica/automatica43.html#ZhangG07,https://doi.org/10.1016/j.automatica.2006.12.014 +Sen Kuang,Rapid Lyapunov control of finite-dimensional quantum systems.,2017,81,Automatica,,db/journals/automatica/automatica81.html#KuangDP17,https://doi.org/10.1016/j.automatica.2017.02.041 +Tao Li 0002,Mean square average-consensus under measurement noises and fixed topologies: Necessary and sufficient conditions.,2009,45,Automatica,8,db/journals/automatica/automatica45.html#LiZ09a,https://doi.org/10.1016/j.automatica.2009.04.017 +Hyeong Soo Chang,An exact iterative search algorithm for constrained Markov decision processes.,2014,50,Automatica,5,db/journals/automatica/automatica50.html#Chang14a,https://doi.org/10.1016/j.automatica.2014.03.020 +Yuan-Xin Li,Adaptive asymptotic tracking control of uncertain nonlinear systems with input quantization and actuator faults.,2016,72,Automatica,,db/journals/automatica/automatica72.html#LiY16,https://doi.org/10.1016/j.automatica.2016.06.008 +Peter H. Heins,Passivity-based output-feedback control of turbulent channel flow.,2016,69,Automatica,,db/journals/automatica/automatica69.html#HeinsJS16,https://doi.org/10.1016/j.automatica.2016.03.007 +P. A. Cook,Nonlinear oscillations in feedback systems: V. Biró.,1987,23,Automatica,5,db/journals/automatica/automatica23.html#Cook87,https://doi.org/10.1016/0005-1098(87)90070-7 +B. S. Heck,Singular perturbation analysis of linear systems with scalar quantized control.,1988,24,Automatica,6,db/journals/automatica/automatica24.html#HeckH88,https://doi.org/10.1016/0005-1098(88)90051-9 +Kar-Keung D. Young,Analysis of feedback-loop interactions with actuator and sensor parasitics.,1982,18,Automatica,5,db/journals/automatica/automatica18.html#YoungK82a,https://doi.org/10.1016/0005-1098(82)90008-5 +D. H. Martin,Optimal control laws for a class of constrained linear-quadratic problems.,1979,15,Automatica,4,db/journals/automatica/automatica15.html#MartinJ79,https://doi.org/10.1016/0005-1098(79)90017-7 +Didier Henrion,LMI relaxations for robust stability of linear systems with saturating controls.,1999,35,Automatica,9,db/journals/automatica/automatica35.html#HenrionT99,https://doi.org/10.1016/S0005-1098(99)00060-6 +Ababacar Diagne,Lyapunov exponential stability of 1-D linear hyperbolic systems of balance laws.,2012,48,Automatica,1,db/journals/automatica/automatica48.html#DiagneBC12,https://doi.org/10.1016/j.automatica.2011.09.030 +P. Tsiotras,Drag-law effects in the goddard problem.,1991,27,Automatica,3,db/journals/automatica/automatica27.html#TsiotrasK91,https://doi.org/10.1016/0005-1098(91)90105-B +Luigi Chisci,MMSE deconvolution via polynomial methods and its dual LQG regulation.,1994,30,Automatica,7,db/journals/automatica/automatica30.html#ChisciM94,https://doi.org/10.1016/0005-1098(94)90214-3 +William R. Cluett,Autotuning for model-based predictive control.,1990,26,Automatica,4,db/journals/automatica/automatica26.html#CluettG90,https://doi.org/10.1016/0005-1098(90)90046-K +Katsuhisa Furuta,Variable structure control with sliding sector.,2000,36,Automatica,2,db/journals/automatica/automatica36.html#FurutaP00,https://doi.org/10.1016/S0005-1098(99)00116-8 +Philip G. Gallman,Representations of nonlinear systems via the stone-weierstrass theorem.,1976,12,Automatica,6,db/journals/automatica/automatica12.html#GallmanN76,https://doi.org/10.1016/0005-1098(76)90043-1 +Chanying Li,A new critical theorem for adaptive nonlinear stabilization.,2010,46,Automatica,6,db/journals/automatica/automatica46.html#LiG10a,https://doi.org/10.1016/j.automatica.2010.03.008 +Karl Johan åström,Automatica prize paper awards.,1989,25,Automatica,6,db/journals/automatica/automatica25.html#Astrom89,https://doi.org/10.1016/0005-1098(89)90048-4 +Chunyan Ji,Dynamics of a multigroup SIR epidemic model with stochastic perturbation.,2012,48,Automatica,1,db/journals/automatica/automatica48.html#JiJYS12,https://doi.org/10.1016/j.automatica.2011.09.044 +James A. Primbs,The analysis of optimization based controllers.,2001,37,Automatica,6,db/journals/automatica/automatica37.html#Primbs01,https://doi.org/10.1016/S0005-1098(01)00036-X +Andrea Serrani,Rejection of harmonic disturbances at the controller input via hybrid adaptive external models.,2006,42,Automatica,11,db/journals/automatica/automatica42.html#Serrani06,https://doi.org/10.1016/j.automatica.2006.06.014 +Ilya Ioslovich,Hamilton-Jacobi-Bellman formalism for optimal climate control of greenhouse crop.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#IoslovichGL09,https://doi.org/10.1016/j.automatica.2008.12.024 +David Henry 0001,Design and analysis of robust residual generators for systems under feedback control.,2005,41,Automatica,2,db/journals/automatica/automatica41.html#HenryZ05,https://doi.org/10.1016/j.automatica.2004.09.013 +Konstantinos I. Kouramas,Explicit/multi-parametric model predictive control (MPC) of linear discrete-time systems by dynamic and multi-parametric programming.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#KouramasFPP11,https://doi.org/10.1016/j.automatica.2011.05.001 +C. Y. Chan,Discrete adaptive sliding-mode control of a class of stochastic systems.,1999,35,Automatica,8,db/journals/automatica/automatica35.html#Chan99,https://doi.org/10.1016/S0005-1098(99)00045-X +Daniel Coca,Identification of finite dimensional models of infinite dimensional dynamical systems.,2002,38,Automatica,11,db/journals/automatica/automatica38.html#CocaB02,https://doi.org/10.1016/S0005-1098(02)00099-7 +Hongyi Li 0001,Observer-based adaptive sliding mode control for nonlinear Markovian jump systems.,2016,64,Automatica,,db/journals/automatica/automatica64.html#Li0YW16,https://doi.org/10.1016/j.automatica.2015.11.007 +Alejandro J. Rojas,Fundamental limitations in control over a communication channel.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#RojasBM08,https://doi.org/10.1016/j.automatica.2008.05.014 +Eugenii Shustin,On delay-derivative-dependent stability of systems with fast-varying delays.,2007,43,Automatica,9,db/journals/automatica/automatica43.html#ShustinF07,https://doi.org/10.1016/j.automatica.2007.02.009 +Yue-E Wang,Construction of Lyapunov-Krasovskii functionals for switched nonlinear systems with input delay.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#WangSWZ14,https://doi.org/10.1016/j.automatica.2014.02.029 +Fouad Giri,Interval-excitation through impulse sequences. A technical lemma.,2002,38,Automatica,3,db/journals/automatica/automatica38.html#GiriCR02,https://doi.org/10.1016/S0005-1098(01)00222-9 +Carlos Andrey Maia,On the control of max-plus linear system subject to state restriction.,2011,47,Automatica,5,db/journals/automatica/automatica47.html#MaiaAH11,https://doi.org/10.1016/j.automatica.2011.01.047 +Hao Xu 0002,Stochastic optimal control of unknown linear networked control system in the presence of random delays and packet losses.,2012,48,Automatica,6,db/journals/automatica/automatica48.html#XuJL12,https://doi.org/10.1016/j.automatica.2012.03.007 +Florian David Brunner,Stochastic thresholds in event-triggered control: A consistent policy for quadratic control.,2018,89,Automatica,,db/journals/automatica/automatica89.html#BrunnerAA18,https://doi.org/10.1016/j.automatica.2017.12.043 +David Henry 0001,"Corrigendum to: ""Design and analysis of robust residual generators for systems under feedback control"" [Automatica 41 (2005) 251-264].",2008,44,Automatica,11,db/journals/automatica/automatica44.html#HenryZ08,https://doi.org/10.1016/j.automatica.2008.06.002 +Václav Peterka,Predictor-based self-tuning control.,1984,20,Automatica,1,db/journals/automatica/automatica20.html#Peterka84,https://doi.org/10.1016/0005-1098(84)90063-3 +Tohru Katayama,Realization of stochastic systems with exogenous inputs and subspace identification methods.,1999,35,Automatica,10,db/journals/automatica/automatica35.html#KatayamaP99,https://doi.org/10.1016/S0005-1098(99)00072-2 +Reine Talj,Passivity and robust PI control of the air supply system of a PEM fuel cell model.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#TaljOA11,https://doi.org/10.1016/j.automatica.2011.08.028 +Takashi Shima,New overlapping coordination methodologies for large-scale optimization problems.,1991,27,Automatica,6,db/journals/automatica/automatica27.html#Shima91,https://doi.org/10.1016/0005-1098(91)90135-O +Juan Gonzalo Barajas-Ramírez,Synchronization and activation in a model of a network of 6*-cells.,2011,47,Automatica,6,db/journals/automatica/automatica47.html#Barajas-RamirezSFN11,https://doi.org/10.1016/j.automatica.2011.02.041 +Kenneth Hsu,An LFT approach to parameter estimation.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#HsuVWRP08,https://doi.org/10.1016/j.automatica.2008.04.026 +Xing-Gang Yan,Sliding mode control for time-varying delayed systems based on a reduced-order observer.,2010,46,Automatica,8,db/journals/automatica/automatica46.html#YanSE10,https://doi.org/10.1016/j.automatica.2010.05.017 +F. Viel,Global stabilization of exothermic chemical reactors under input constraints.,1997,33,Automatica,8,db/journals/automatica/automatica33.html#VielJB97,https://doi.org/10.1016/S0005-1098(97)00071-X +Siyang Gao,Efficient subset selection for the expected opportunity cost.,2015,59,Automatica,,db/journals/automatica/automatica59.html#GaoC15,https://doi.org/10.1016/j.automatica.2015.06.005 +George I. Stassinopoulos,Fenchel duality and smoothness of solution of the optimal routing problem.,1986,22,Automatica,1,db/journals/automatica/automatica22.html#Stassinopoulos86,https://doi.org/10.1016/0005-1098(86)90108-1 +Liang Dai,Sparse estimation from noisy observations of an overdetermined linear system.,2014,50,Automatica,11,db/journals/automatica/automatica50.html#DaiP14,https://doi.org/10.1016/j.automatica.2014.08.018 +Zidong Wang,H∞ filtering for uncertain stochastic time-delay systems with sector-bounded nonlinearities.,2008,44,Automatica,5,db/journals/automatica/automatica44.html#WangLL08,https://doi.org/10.1016/j.automatica.2007.09.016 +M. Thoma,Multivariable control for industrial application: John O'Reilly (editor).,1989,25,Automatica,6,db/journals/automatica/automatica25.html#Thoma89,https://doi.org/10.1016/0005-1098(89)90065-4 +Patricio E. Valenzuela,A graph theoretical approach to input design for identification of nonlinear dynamical models.,2015,51,Automatica,,db/journals/automatica/automatica51.html#ValenzuelaRH15,https://doi.org/10.1016/j.automatica.2014.10.097 +Xudong Zhao,Adaptive tracking control for a class of uncertain switched nonlinear systems.,2015,52,Automatica,,db/journals/automatica/automatica52.html#ZhaoZNL15,https://doi.org/10.1016/j.automatica.2014.11.019 +Xiangyu Bao,Finite gain stabilization of discrete-time linear systems subject to actuator saturation.,2000,36,Automatica,2,db/journals/automatica/automatica36.html#BaoLS00,https://doi.org/10.1016/S0005-1098(99)00138-7 +Dirk Aeyels,Pole assignment for linear time-invariant systems by periodic memoryless output feedback.,1992,28,Automatica,6,db/journals/automatica/automatica28.html#AeyelsW92,https://doi.org/10.1016/0005-1098(92)90057-M +Hongyi Li 0001,Model reduction for interval type-2 Takagi-Sugeno fuzzy systems.,2015,61,Automatica,,db/journals/automatica/automatica61.html#LiYPL15,https://doi.org/10.1016/j.automatica.2015.08.020 +Dragan Nesic,Finite-gain LpLp stability for hybrid dynamical systems.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#NesicTVZ13,https://doi.org/10.1016/j.automatica.2013.05.003 +Fredrik Rosenqvist,Realisation and estimation of piecewise-linear output-error models.,2005,41,Automatica,3,db/journals/automatica/automatica41.html#RosenqvistK05,https://doi.org/10.1016/j.automatica.2004.11.011 +Joost Bolder,Inferential Iterative Learning Control: A 2D-system approach.,2016,71,Automatica,,db/journals/automatica/automatica71.html#BolderO16,https://doi.org/10.1016/j.automatica.2016.04.029 +Se-Kyu Oh,Point-to-point iterative learning model predictive control.,2018,89,Automatica,,db/journals/automatica/automatica89.html#OhPL18,https://doi.org/10.1016/j.automatica.2017.11.010 +Gido Haarbrücker,Valuation of electricity swing options by multistage stochastic programming.,2009,45,Automatica,4,db/journals/automatica/automatica45.html#HaarbruckerK09,https://doi.org/10.1016/j.automatica.2008.11.022 +Helen Henninger,Optimal under-actuated kinematic motion planning on the and#1013*-group.,2018,90,Automatica,,db/journals/automatica/automatica90.html#HenningerB18,https://doi.org/10.1016/j.automatica.2017.12.049 +M. Mariton,Stochastic controllability of linear systems with Markovian jumps.,1987,23,Automatica,6,db/journals/automatica/automatica23.html#Mariton87a,https://doi.org/10.1016/0005-1098(87)90039-2 +Uros V. Kalabic,MPC on manifolds with an application to the control of spacecraft attitude on SO(3).,2017,76,Automatica,,db/journals/automatica/automatica76.html#Kalabic0CBK17,https://doi.org/10.1016/j.automatica.2016.10.022 +Willi Stein,Human display monitoring and failure detection: Control theoretic models and experiments.,1983,19,Automatica,6,db/journals/automatica/automatica19.html#SteinW83,https://doi.org/10.1016/0005-1098(83)90036-5 +Zhongkui Li,Distributed robust consensus control of multi-agent systems with heterogeneous matching uncertainties.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#LiDL14,https://doi.org/10.1016/j.automatica.2013.12.008 +Augusto Ferrante,Convergent algorithm for L2 model reduction.,1999,35,Automatica,1,db/journals/automatica/automatica35.html#FerranteKLV99,https://doi.org/10.1016/S0005-1098(98)00142-3 +Mike Chappell,Optimal control of drug administration in cancer chemotherapy : By R. Martin and K. L. Teo. World Scientific (1994). ISBN 9810214286.,1995,31,Automatica,7,db/journals/automatica/automatica31.html#Chappell95,https://doi.org/10.1016/0005-1098(95)90005-5 +Kenneth S. Vastola,An analysis of the effects of spectral uncertainty on wiener filtering.,1983,19,Automatica,3,db/journals/automatica/automatica19.html#VastolaP83,https://doi.org/10.1016/0005-1098(83)90105-X +E. F. Mageirou,Decentralized stabilization via game theoretic methods.,1977,13,Automatica,4,db/journals/automatica/automatica13.html#MageirouH77,https://doi.org/10.1016/0005-1098(77)90023-1 +Pedro Casau,Robust global trajectory tracking for a class of underactuated vehicles.,2015,58,Automatica,,db/journals/automatica/automatica58.html#CasauSCCS15,https://doi.org/10.1016/j.automatica.2015.05.011 +Liang Lu,L2 gain analysis for a class of switched systems.,2009,45,Automatica,4,db/journals/automatica/automatica45.html#LuLF09,https://doi.org/10.1016/j.automatica.2008.10.021 +Charalampos P. Bechlioulis,Guaranteeing prescribed performance and contact maintenance via an approximation free robot force/position controller.,2012,48,Automatica,2,db/journals/automatica/automatica48.html#BechlioulisDR12,https://doi.org/10.1016/j.automatica.2011.07.009 +Cüneyt M. özveren,Aggregation and multi-level control in discrete event dynamic systems.,1992,28,Automatica,3,db/journals/automatica/automatica28.html#OzverenW92,https://doi.org/10.1016/0005-1098(92)90180-N +Martin Guay,A time-varying extremum-seeking control approach.,2015,51,Automatica,,db/journals/automatica/automatica51.html#GuayD15,https://doi.org/10.1016/j.automatica.2014.10.078 +Tarek Ahmed-Ali,Using exponential time-varying gains for sampled-data stabilization and estimation.,2016,67,Automatica,,db/journals/automatica/automatica67.html#Ahmed-AliFGBL16,https://doi.org/10.1016/j.automatica.2016.01.048 +Fouad Mesquine,Regulator problem for linear systems with constraints on control and its increment or rate.,2004,40,Automatica,8,db/journals/automatica/automatica40.html#MesquineTB04,https://doi.org/10.1016/j.automatica.2004.02.020 +K. D. Young,On near optimal decentralized control.,1985,21,Automatica,5,db/journals/automatica/automatica21.html#Young85,https://doi.org/10.1016/0005-1098(85)90010-X +Weihua Li,Kalman filters in non-uniformly sampled multirate systems: For FDI and beyond.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#LiSX08,https://doi.org/10.1016/j.automatica.2007.05.009 +Robert R. Bitmead,Convergence rate determination for gradient-based adaptive estimators.,1986,22,Automatica,2,db/journals/automatica/automatica22.html#BitmeadAN86,https://doi.org/10.1016/0005-1098(86)90079-8 +Zong-Yao Sun,A new approach to finite-time adaptive stabilization of high-order uncertain nonlinear system.,2015,58,Automatica,,db/journals/automatica/automatica58.html#SunXZ15,https://doi.org/10.1016/j.automatica.2015.05.005 +Wen-Xiao Zhao,Kernel-based local order estimation of nonlinear nonparametric systems.,2015,51,Automatica,,db/journals/automatica/automatica51.html#ZhaoCBL15,https://doi.org/10.1016/j.automatica.2014.10.069 +Weiyu Xu,System identification in the presence of outliers and random noises: A compressed sensing approach.,2014,50,Automatica,11,db/journals/automatica/automatica50.html#XuBC14,https://doi.org/10.1016/j.automatica.2014.10.017 +Björn Pehrson,Cautious stochastic computer control applied to concrete mixing.,1979,15,Automatica,6,db/journals/automatica/automatica15.html#Pehrson79,https://doi.org/10.1016/0005-1098(79)90031-1 +Sung Jin Yoo,Decentralized adaptive stabilization of interconnected nonlinear systems with unknown non-symmetric dead-zone inputs.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#YooPC09,https://doi.org/10.1016/j.automatica.2008.07.019 +Yong He 0003,Delay-range-dependent stability for systems with time-varying delay.,2007,43,Automatica,2,db/journals/automatica/automatica43.html#HeWLW07,https://doi.org/10.1016/j.automatica.2006.08.015 +Miao Du,Isolation and handling of sensor faults in nonlinear systems.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#DuM14,https://doi.org/10.1016/j.automatica.2014.02.017 +Fulvio Forni,Model recovery anti-windup for continuous-time rate and magnitude saturated linear plants.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#ForniGZ12,https://doi.org/10.1016/j.automatica.2012.05.019 +Supratim Ghosh,Graphical coprime walk algorithm for structural controllability of discrete-time rank-one bilinear systems.,2017,86,Automatica,,db/journals/automatica/automatica86.html#GhoshRY17,https://doi.org/10.1016/j.automatica.2017.08.029 +Aykut C. Satici,Global swarming while preserving connectivity via Lagrange-Poincarè equations.,2016,71,Automatica,,db/journals/automatica/automatica71.html#SaticiS16,https://doi.org/10.1016/j.automatica.2016.04.042 +Zongyao Sun,Adaptive state-feedback stabilization for a class of high-order nonlinear uncertain systems.,2007,43,Automatica,10,db/journals/automatica/automatica43.html#SunL07,https://doi.org/10.1016/j.automatica.2007.02.024 +Qinghua Zhang,Fault Detection and Isolation in Nonlinear Dynamic Systems: A Combined Input-Output and Local Approach.,1998,34,Automatica,11,db/journals/automatica/automatica34.html#ZhangBB98,https://doi.org/10.1016/S0005-1098(98)00085-5 +Arie Leizarowitz,Exact finite approximations of average-cost countable Markov decision processes.,2008,44,Automatica,6,db/journals/automatica/automatica44.html#LeizarowitzS08,https://doi.org/10.1016/j.automatica.2007.09.013 +Efstathios Bakolas,Partitioning algorithms for multi-agent systems based on finite-time proximity metrics.,2015,55,Automatica,,db/journals/automatica/automatica55.html#Bakolas15,https://doi.org/10.1016/j.automatica.2015.03.011 +Sang Hwan Park,Estimation and detection of unknown inputs using optimal FIR filter.,2000,36,Automatica,10,db/journals/automatica/automatica36.html#ParkKKK00,https://doi.org/10.1016/S0005-1098(00)00063-7 +Jonathan R. Partington,Approximation of delay systems by fourier-laguerre series.,1991,27,Automatica,3,db/journals/automatica/automatica27.html#Partington91,https://doi.org/10.1016/0005-1098(91)90118-L +Karl Johan åström,Maximum likelihood and prediction error methods.,1980,16,Automatica,5,db/journals/automatica/automatica16.html#Astrom80a,https://doi.org/10.1016/0005-1098(80)90078-3 +Jun Song 0002,Finite-time sliding mode control synthesis under explicit output constraint.,2016,65,Automatica,,db/journals/automatica/automatica65.html#SongNZ16,https://doi.org/10.1016/j.automatica.2015.11.037 +O. Badr,On the dual-adaptive control and its practical applications.,1979,15,Automatica,1,db/journals/automatica/automatica15.html#BadrRL79,https://doi.org/10.1016/0005-1098(79)90090-6 +Frank Allgöwer,Call for Papers for a Special Issue on Systems Biology.,2009,45,Automatica,9,db/journals/automatica/automatica45.html#Allgower09,https://doi.org/10.1016/j.automatica.2009.06.002 +M. Bryds,Double loop iterative strategies for hierarchical control of industrial processes.,1989,25,Automatica,5,db/journals/automatica/automatica25.html#BrydsRBKA89,https://doi.org/10.1016/0005-1098(89)90030-7 +Joaquín Cervera,Interconnection of port-Hamiltonian systems and composition of Dirac structures.,2007,43,Automatica,2,db/journals/automatica/automatica43.html#CerveraSB07,https://doi.org/10.1016/j.automatica.2006.08.014 +Huibing Yin,Hopf bifurcation and oscillations in a communication network with heterogeneous delays.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#YinWAM09,https://doi.org/10.1016/j.automatica.2009.06.012 +Xu Zhang 0007,Nonlinear decentralized control of large-scale systems with strong interconnections.,2014,50,Automatica,9,db/journals/automatica/automatica50.html#ZhangL14a,https://doi.org/10.1016/j.automatica.2014.07.024 +Ljubisa Miskovic,Correlation-based tuning of decoupling multivariable controllers.,2007,43,Automatica,9,db/journals/automatica/automatica43.html#MiskovicKBG07,https://doi.org/10.1016/j.automatica.2007.02.006 +L. Shaw,An expansion for evaluating sensitivity to a random parameter.,1969,5,Automatica,3,db/journals/automatica/automatica5.html#ShawC69,https://doi.org/10.1016/0005-1098(69)90068-5 +Giorgio Valmorbida,State feedback design for input-saturating quadratic systems.,2010,46,Automatica,7,db/journals/automatica/automatica46.html#ValmorbidaTG10,https://doi.org/10.1016/j.automatica.2010.03.016 +Xuan Zhang,A real-time control framework for smart power networks: Design methodology and stability.,2015,58,Automatica,,db/journals/automatica/automatica58.html#ZhangP15,https://doi.org/10.1016/j.automatica.2015.05.003 +Humberto E. Garcia,"Erratum to ""Model-based detection of routing events in discrete flow networks"" [Automatica 41 (2005) 583-594].",2005,41,Automatica,10,db/journals/automatica/automatica41.html#GarciaY05a,https://doi.org/10.1016/j.automatica.2005.06.001 +Halil I. Basturk,Adaptive sinusoidal disturbance cancellation for unknown LTI systems despite input delay.,2015,58,Automatica,,db/journals/automatica/automatica58.html#BasturkK15,https://doi.org/10.1016/j.automatica.2015.05.013 +Yu Chen,Control of classical regime molecular objectives - Applications of tracking and variations on the theme.,1997,33,Automatica,9,db/journals/automatica/automatica33.html#ChenGRRMS97,https://doi.org/10.1016/S0005-1098(97)00077-0 +S. J. L. M. van Loon,Frequency-domain tools for stability analysis of reset control systems.,2017,82,Automatica,,db/journals/automatica/automatica82.html#LoonGHWH17,https://doi.org/10.1016/j.automatica.2017.04.008 +Tao Shen,A new stability criterion for fixed-point state-space digital filters using two's complement arithmetic.,2011,47,Automatica,7,db/journals/automatica/automatica47.html#ShenYW11,https://doi.org/10.1016/j.automatica.2011.04.008 +Mahir A. Nayfeh,High-gain feedback control of rotating stall in axial flow compressors.,2002,38,Automatica,6,db/journals/automatica/automatica38.html#NayfehA02,https://doi.org/10.1016/S0005-1098(01)00294-1 +Zongli Lin,Perfect regulation of linear discrete-time systems: A low-gain-based design approach.,1996,32,Automatica,7,db/journals/automatica/automatica32.html#LinSSS96,https://doi.org/10.1016/0005-1098(96)00039-8 +H. Rake,Industrial control electronics: Applications and design: J. Michael Jacob.,1991,27,Automatica,2,db/journals/automatica/automatica27.html#Rake91,https://doi.org/10.1016/0005-1098(91)90098-M +N. S. Rousan,Necessary and sufficient conditions for global optimality for linear discrete time systems.,1993,29,Automatica,2,db/journals/automatica/automatica29.html#Rousan93,https://doi.org/10.1016/0005-1098(93)90153-K +Masashi Wakaiki,Stabilization of systems with asynchronous sensors and controllers.,2017,81,Automatica,,db/journals/automatica/automatica81.html#WakaikiOH17,https://doi.org/10.1016/j.automatica.2017.04.005 +Thomas A. Badgwell,Robust Stability Conditions for SISO Model Predictive Control Algorithms.,1997,33,Automatica,7,db/journals/automatica/automatica33.html#Badgwell97,https://doi.org/10.1016/S0005-1098(97)00031-9 +Gang Chen 0014,Finite-time distributed consensus via binary control protocols.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#ChenLX11,https://doi.org/10.1016/j.automatica.2011.05.013 +Jyun-Horng Fu,Linear feedback stabilization of nonlinear systems with an uncontrollable critical mode.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#FuA93,https://doi.org/10.1016/0005-1098(93)90102-Y +Hayco H. J. Bloemen,Optimizing the end-point state-weighting matrix in model-based predictive control.,2002,38,Automatica,6,db/journals/automatica/automatica38.html#BloemenBV02,https://doi.org/10.1016/S0005-1098(01)00296-5 +Lennart Ljung,A unified approach to smoothing formulas.,1976,12,Automatica,2,db/journals/automatica/automatica12.html#LjungK76,https://doi.org/10.1016/0005-1098(76)90078-9 +Gianluigi Pillonetto,Identifiability of the stochastic semi-blind deconvolution problem for a class of time-invariant linear systems.,2007,43,Automatica,4,db/journals/automatica/automatica43.html#PillonettoC07,https://doi.org/10.1016/j.automatica.2006.10.009 +Hui Xiao,Simulation budget allocation for simultaneously selecting the best and worst subsets.,2017,84,Automatica,,db/journals/automatica/automatica84.html#XiaoGL17,https://doi.org/10.1016/j.automatica.2017.07.006 +Chao Yang,On the effectiveness of Monte Carlo for initial uncertainty forecasting in nonlinear dynamical systems.,2018,87,Automatica,,db/journals/automatica/automatica87.html#YangK18,https://doi.org/10.1016/j.automatica.2017.09.025 +Brian D. O. Anderson,Dynamic errors-in-variables systems with three variables.,1987,23,Automatica,5,db/journals/automatica/automatica23.html#AndersonD87,https://doi.org/10.1016/0005-1098(87)90056-2 +Gian Paolo Incremona,Second order sliding mode control for nonlinear affine systems with quantized uncertainty.,2017,86,Automatica,,db/journals/automatica/automatica86.html#IncremonaCF17,https://doi.org/10.1016/j.automatica.2017.08.019 +Alexandre Seuret,Stability analysis of uncertain sampled-data systems with incremental delay using looped-functionals.,2015,55,Automatica,,db/journals/automatica/automatica55.html#SeuretB15,https://doi.org/10.1016/j.automatica.2015.03.015 +Will C. Clarke,Hierarchical economic MPC for systems with storage states.,2018,94,Automatica,,db/journals/automatica/automatica94.html#ClarkeMB18,https://doi.org/10.1016/j.automatica.2018.04.012 +William S. Kerwin,On the optimality of recursive unbiased state estimation with unknown inputs.,2000,36,Automatica,9,db/journals/automatica/automatica36.html#KerwinP00,https://doi.org/10.1016/S0005-1098(00)00046-7 +Michael P. Lukas,Distributed control systems - Their evaluation and design.,1988,24,Automatica,2,db/journals/automatica/automatica24.html#Lukas88,https://doi.org/10.1016/0005-1098(88)90046-5 +Maciej Niedzwiecki,Easy recipes for cooperative smoothing.,2010,46,Automatica,4,db/journals/automatica/automatica46.html#Niedzwiecki10,https://doi.org/10.1016/j.automatica.2010.01.030 +Daniel L. Laughlin,Robust performance of cross-directional basis-weight control in paper machines.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#LaughlinMB93,https://doi.org/10.1016/0005-1098(93)90005-E +Yuanxin Wu,"Comments on ""Performance evaluation of UKF-based nonlinear filtering"".",2007,43,Automatica,3,db/journals/automatica/automatica43.html#WuHH07,https://doi.org/10.1016/j.automatica.2006.08.029 +Graziano Chesi,A convex approach to the characterization of the frequency response of ellipsoidal plants.,2002,38,Automatica,2,db/journals/automatica/automatica38.html#ChesiGTV02,https://doi.org/10.1016/S0005-1098(01)00196-0 +Sandor M. Veres,Adaptive Robust Control under Unknown Plant Orders.,1998,34,Automatica,6,db/journals/automatica/automatica34.html#VeresS98,https://doi.org/10.1016/S0005-1098(98)00007-7 +Xiaojing Shen,An efficient sensor quantization algorithm for decentralized estimation fusion.,2011,47,Automatica,5,db/journals/automatica/automatica47.html#ShenZY11,https://doi.org/10.1016/j.automatica.2011.01.082 +Ying Yang 0002,A control-theoretic study on iterative solutions to nonlinear equations for applications in embedded systems.,2012,48,Automatica,4,db/journals/automatica/automatica48.html#YangD12,https://doi.org/10.1016/j.automatica.2012.01.007 +Zi-Li Deng,Descriptor Wiener state estimators.,2000,36,Automatica,11,db/journals/automatica/automatica36.html#DengX00,https://doi.org/10.1016/S0005-1098(00)00079-0 +Arun Ghosh,Periodic compensation of a class of decentralized systems with fixed modes.,2010,46,Automatica,9,db/journals/automatica/automatica46.html#GhoshD10,https://doi.org/10.1016/j.automatica.2010.06.024 +Sei Zhen Khong,Iterative learning control based on extremum seeking.,2016,66,Automatica,,db/journals/automatica/automatica66.html#KhongNK16,https://doi.org/10.1016/j.automatica.2015.12.019 +Kristian Hengster-Movric,Synchronization of discrete-time multi-agent systems on graphs using Riccati design.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#Hengster-MovricYLX13,https://doi.org/10.1016/j.automatica.2012.11.038 +Abdelkader Abdessameud,Formation control of VTOL Unmanned Aerial Vehicles with communication delays.,2011,47,Automatica,11,db/journals/automatica/automatica47.html#AbdessameudT11,https://doi.org/10.1016/j.automatica.2011.08.042 +Wladyslaw Findeisen,Decentralized and hierarchical control under consistency or disagreement of interests.,1982,18,Automatica,6,db/journals/automatica/automatica18.html#Findeisen82,https://doi.org/10.1016/0005-1098(82)90054-1 +Jonas Mårtensson,Variance-error quantification for identified poles and zeros.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#MartenssonH09,https://doi.org/10.1016/j.automatica.2009.08.001 +Lingji Chen,Nonlinear adaptive control using neural networks and multiple models.,2001,37,Automatica,8,db/journals/automatica/automatica37.html#ChenN01,https://doi.org/10.1016/S0005-1098(01)00072-3 +Zhongkui Li,Distributed adaptive controllers for cooperative output regulation of heterogeneous agents over directed graphs.,2016,68,Automatica,,db/journals/automatica/automatica68.html#LiCD16,https://doi.org/10.1016/j.automatica.2016.01.076 +Fredrik Gustafsson,Closed-Loop Performance Monitoring in the Presence of System Changes and Disturbances.,1998,34,Automatica,11,db/journals/automatica/automatica34.html#GustafssonG98,https://doi.org/10.1016/S0005-1098(98)00078-8 +Yan Yan,A decoupled inversion-based iterative control approach to multi-axis precision positioning: 3D nanopositioning example.,2012,48,Automatica,1,db/journals/automatica/automatica48.html#YanWZ12,https://doi.org/10.1016/j.automatica.2011.09.032 +Minh Hong Ha,Optimal dual adaptive agile mobile wireless power control.,2016,74,Automatica,,db/journals/automatica/automatica74.html#HaB16,https://doi.org/10.1016/j.automatica.2016.07.015 +Hajime Akashi,Parameter identification technique for multivariate stochastic systems.,1979,15,Automatica,2,db/journals/automatica/automatica15.html#AkashiIM79,https://doi.org/10.1016/0005-1098(79)90072-4 +Maria Elena Valcher,On the consensus of homogeneous multi-agent systems with arbitrarily switching topology.,2017,84,Automatica,,db/journals/automatica/automatica84.html#ValcherZ17,https://doi.org/10.1016/j.automatica.2017.07.011 +Javad Lavaei,Simultaneous LQ control of a set of LTI systems using constrained generalized sampled-data hold functions.,2007,43,Automatica,2,db/journals/automatica/automatica43.html#LavaeiA07,https://doi.org/10.1016/j.automatica.2006.08.013 +Jae-Won Lee,On Stability of Constrained Receding Horizon Control with Finite Terminal Weighting Matrix.,1998,34,Automatica,12,db/journals/automatica/automatica34.html#LeeKC98,https://doi.org/10.1016/S0005-1098(98)80015-0 +Bruce A. Francis,Signal compression by subband coding.,1999,35,Automatica,12,db/journals/automatica/automatica35.html#FrancisD99,https://doi.org/10.1016/S0005-1098(99)00126-0 +Miroslav Krstic,Output-feedback stabilization of an unstable wave equation.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#KrsticGBS08,https://doi.org/10.1016/j.automatica.2007.05.012 +Vijay V. Patel,On least-degree unit interpolation in RH∞.,1996,32,Automatica,9,db/journals/automatica/automatica32.html#Patel96,https://doi.org/10.1016/0005-1098(96)00073-8 +Jay H. Lee,Robust measurement selection.,1991,27,Automatica,3,db/journals/automatica/automatica27.html#LeeM91,https://doi.org/10.1016/0005-1098(91)90109-F +Sergio M. Savaresi,Approximate I/O Feedback Linearization of Discrete-Time Non-Linear Systems via Virtual Input Direct Design.,1998,34,Automatica,6,db/journals/automatica/automatica34.html#SavaresiG98,https://doi.org/10.1016/S0005-1098(97)00222-7 +Chris Phelps,Consistent approximation of a nonlinear optimal control problem with uncertain parameters.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#PhelpsGRWK14,https://doi.org/10.1016/j.automatica.2014.10.025 +Bor-Sen Chen,LQG optimal control system design under plant perturbation and noise uncertainty : A state-space approach.,1989,25,Automatica,3,db/journals/automatica/automatica25.html#ChenD89,https://doi.org/10.1016/0005-1098(89)90012-5 +Yueqiao Han,Robust sliding mode control for uncertain discrete singular systems with time-varying delays and external disturbances.,2017,75,Automatica,,db/journals/automatica/automatica75.html#HanKG17,https://doi.org/10.1016/j.automatica.2016.10.001 +Mircea Lazar,Predictive control of hybrid systems: Input-to-state stability results for sub-optimal solutions.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#LazarH09,https://doi.org/10.1016/j.automatica.2008.06.007 +Kevin S. Galloway,Collective motion under beacon-referenced cyclic pursuit.,2018,91,Automatica,,db/journals/automatica/automatica91.html#GallowayD18,https://doi.org/10.1016/j.automatica.2018.01.015 +Alexandre Seuret,Complete quadratic Lyapunov functionals for distributed delay systems.,2015,62,Automatica,,db/journals/automatica/automatica62.html#SeuretGA15,https://doi.org/10.1016/j.automatica.2015.09.030 +H. L. Helers,Shuttle orbiter guidance system for the terminal flight phase.,1977,13,Automatica,1,db/journals/automatica/automatica13.html#HelersK77,https://doi.org/10.1016/0005-1098(77)90005-X +Pedro Albertos,On generalized predictive control: Two alternative formulations.,1989,25,Automatica,5,db/journals/automatica/automatica25.html#AlbertosO89,https://doi.org/10.1016/0005-1098(89)90031-9 +Joachim Deutscher,Finite-time output regulation for linear 2*2 hyperbolic systems using backstepping.,2017,75,Automatica,,db/journals/automatica/automatica75.html#Deutscher17,https://doi.org/10.1016/j.automatica.2016.09.020 +Francesco Amato,Finite-time control of discrete-time linear systems: Analysis and design conditions.,2010,46,Automatica,5,db/journals/automatica/automatica46.html#AmatoAC10,https://doi.org/10.1016/j.automatica.2010.02.008 +Youyi Wang,Robust decentralized nonlinear controller design for multimachine power systems.,1997,33,Automatica,9,db/journals/automatica/automatica33.html#WangGH97,https://doi.org/10.1016/S0005-1098(97)00091-5 +Felipe Castillo,Boundary observers for linear and quasi-linear hyperbolic systems with application to flow control.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#CastilloWPD13,https://doi.org/10.1016/j.automatica.2013.07.027 +J. C. Gille,Sur l'existence des oscillations forcees dans les systemes asservis a relais.,1964,2,Automatica,2,db/journals/automatica/automatica2.html#GillePP64,https://doi.org/10.1016/0005-1098(64)90009-3 +Ehsan Peymani,Homogeneous networks of non-introspective agents under external disturbances - H∞ almost synchronization.,2015,52,Automatica,,db/journals/automatica/automatica52.html#PeymaniGS15,https://doi.org/10.1016/j.automatica.2014.10.109 +Ramon Costa-Castelló,A repetitive controller for discrete-time passive systems.,2006,42,Automatica,9,db/journals/automatica/automatica42.html#Costa-CastelloG06,https://doi.org/10.1016/j.automatica.2006.04.020 +Louis Wozniak,Modern control systems: A manual of design methods : John A. Borrie.,1987,23,Automatica,6,db/journals/automatica/automatica23.html#Wozniak87,https://doi.org/10.1016/0005-1098(87)90045-8 +Giuseppe De Nicolao,Robust predictive control of systems with uncertain impulse response.,1996,32,Automatica,10,db/journals/automatica/automatica32.html#NicolaoMS96,https://doi.org/10.1016/0005-1098(96)00082-9 +Wenting Zha,Robust control for a class of nonlinear systems with unknown measurement drifts.,2016,71,Automatica,,db/journals/automatica/automatica71.html#ZhaQZF16,https://doi.org/10.1016/j.automatica.2016.04.018 +Tim Hesketh,Adaptive mould level control for continuous steel slab casting.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#HeskethCW93,https://doi.org/10.1016/0005-1098(93)90091-7 +Chien-Shu Hsieh,Modified stochastic Luenberger observers.,2000,36,Automatica,12,db/journals/automatica/automatica36.html#HsiehC00,https://doi.org/10.1016/S0005-1098(00)00105-9 +Pasquale Lucibello,Repositioning control of a two-link flexible arm by learning.,1997,33,Automatica,4,db/journals/automatica/automatica33.html#LucibelloPU97,https://doi.org/10.1016/S0005-1098(96)00199-9 +Daniel Dolz,Co-design of jump estimators and transmission policies for wireless multi-hop networks with fading channels.,2017,81,Automatica,,db/journals/automatica/automatica81.html#DolzQPLS17,https://doi.org/10.1016/j.automatica.2017.03.006 +Jing Zhou,Convergence speed in distributed consensus over dynamically switching random networks.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#ZhouW09,https://doi.org/10.1016/j.automatica.2009.01.021 +Gregory E. Stewart,Two-dimensional loop shaping.,2003,39,Automatica,5,db/journals/automatica/automatica39.html#StewartGD03,https://doi.org/10.1016/S0005-1098(03)00022-0 +Chee Pin Tan,Terminal sliding mode observers for a class of nonlinear systems.,2010,46,Automatica,8,db/journals/automatica/automatica46.html#TanYM10,https://doi.org/10.1016/j.automatica.2010.05.010 +Insoon Yang,A dynamic game approach to distributionally robust safety specifications for stochastic systems.,2018,94,Automatica,,db/journals/automatica/automatica94.html#Yang18a,https://doi.org/10.1016/j.automatica.2018.04.022 +Tomás Vyhlídal,Signal shaper with a distributed delay: Spectral analysis and design.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#VyhlidalKH13,https://doi.org/10.1016/j.automatica.2013.08.029 +Hidenori Shingin,Reduction of state variables based on regulation and filtering performances.,2018,92,Automatica,,db/journals/automatica/automatica92.html#ShinginO18,https://doi.org/10.1016/j.automatica.2018.03.002 +J. A. Githens,Telstar antenna pointing system organization and performance.,1964,2,Automatica,2,db/journals/automatica/automatica2.html#GithensKLL64,https://doi.org/10.1016/0005-1098(64)90010-X +Rick H. Middleton,Non-pathological sampling for generalized sampled-data hold functions.,1995,31,Automatica,2,db/journals/automatica/automatica31.html#MiddletonF95,https://doi.org/10.1016/0005-1098(94)00095-Z +Yue-E Wang,Lyapunov-Krasovskii functionals for switched nonlinear input delay systems under asynchronous switching.,2015,61,Automatica,,db/journals/automatica/automatica61.html#WangSW15,https://doi.org/10.1016/j.automatica.2015.08.008 +Christoforos N. Hadjicostis,Periodic and non-concurrent error detection and identification in one-hot encoded FSMs.,2004,40,Automatica,10,db/journals/automatica/automatica40.html#Hadjicostis04,https://doi.org/10.1016/j.automatica.2004.05.005 +Tor Arne Johansen,Energy-based control of a distributed solar collector field.,2002,38,Automatica,7,db/journals/automatica/automatica38.html#JohansenS02,https://doi.org/10.1016/S0005-1098(02)00008-0 +Juan-Carlos Avila-Vilchis,Nonlinear modelling and control of helicopters.,2003,39,Automatica,9,db/journals/automatica/automatica39.html#Avila-VilchisBDL03,https://doi.org/10.1016/S0005-1098(03)00168-7 +Kiyoshi Suzuki,Optimal switching strategy of a mean-reverting asset over multiple regimes.,2016,67,Automatica,,db/journals/automatica/automatica67.html#Suzuki16,https://doi.org/10.1016/j.automatica.2015.12.023 +Maria Letizia Corradini,Sensorless efficient fault-tolerant control of wind turbines with geared generator.,2015,62,Automatica,,db/journals/automatica/automatica62.html#CorradiniIO15,https://doi.org/10.1016/j.automatica.2015.09.024 +Jacques Descusse,Block noninteracting control with (non)regular static state feedback: A complete solution.,1991,27,Automatica,5,db/journals/automatica/automatica27.html#Descusse91,https://doi.org/10.1016/0005-1098(91)90046-5 +Jérôme Harmand,Output tracking of continuous bioreactors through recirculation and by-pass.,2006,42,Automatica,6,db/journals/automatica/automatica42.html#HarmandRM06,https://doi.org/10.1016/j.automatica.2006.02.012 +Martin Corless,New results on composite control of singularly perturbed uncertain linear systems.,1993,29,Automatica,2,db/journals/automatica/automatica29.html#CorlessGG93,https://doi.org/10.1016/0005-1098(93)90131-C +David H. Owens 0001,High performance controllers for unknown multivariable systems.,1982,18,Automatica,5,db/journals/automatica/automatica18.html#OwensC82,https://doi.org/10.1016/0005-1098(82)90009-7 +Baocang Ding,Quadratic boundedness via dynamic output feedback for constrained nonlinear systems in Takagi-Sugeno's form.,2009,45,Automatica,9,db/journals/automatica/automatica45.html#Ding09,https://doi.org/10.1016/j.automatica.2009.05.017 +Hiroaki Mukaidani,Soft-constrained stochastic Nash games for weakly coupled large-scale systems.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#Mukaidani09,https://doi.org/10.1016/j.automatica.2008.12.020 +Juan Ignacio Mulero Martínez,Asymptote angles of polynomic root loci.,2016,71,Automatica,,db/journals/automatica/automatica71.html#Martinez16,https://doi.org/10.1016/j.automatica.2016.05.025 +Gerald J. Bierman,Measurement updating using the U-D factorization.,1976,12,Automatica,4,db/journals/automatica/automatica12.html#Bierman76,https://doi.org/10.1016/0005-1098(76)90058-3 +Qing-Guo Wang,Single-loop controller design via IMC principles.,2001,37,Automatica,12,db/journals/automatica/automatica37.html#WangHY01,https://doi.org/10.1016/S0005-1098(01)00170-4 +Qingze Zou,Precision preview-based stable-inversion for nonlinear nonminimum-phase systems: The VTOL example.,2007,43,Automatica,1,db/journals/automatica/automatica43.html#ZouD07,https://doi.org/10.1016/j.automatica.2006.08.007 +Qing-Guo Wang,Necessary and sufficient conditions for stability of a matrix polytope with normal vertex matrices.,1991,27,Automatica,5,db/journals/automatica/automatica27.html#Wang91,https://doi.org/10.1016/0005-1098(91)90047-6 +Jingtao Shi,Leader-follower stochastic differential game with asymmetric information and applications.,2016,63,Automatica,,db/journals/automatica/automatica63.html#ShiWX16,https://doi.org/10.1016/j.automatica.2015.10.011 +Kim Batselier,Computing the state difference equations for discrete overdetermined linear systems.,2016,64,Automatica,,db/journals/automatica/automatica64.html#BatselierW16,https://doi.org/10.1016/j.automatica.2015.11.019 +C. Frangos,Feasible control design for plants with discrete-time Markov jump parameters.,1996,32,Automatica,1,db/journals/automatica/automatica32.html#FrangosY96,https://doi.org/10.1016/0005-1098(95)00097-6 +Haranath Kar,"Comments on ""Modified criterion for global asymptotic stability of fixed-point state-space digital filters using two's complement arithmetic"" [Automatica 46 (2010) 475-478].",2010,46,Automatica,11,db/journals/automatica/automatica46.html#Kar10,https://doi.org/10.1016/j.automatica.2010.08.014 +George S. Axelby,Transitions - New editors.,1984,20,Automatica,3,db/journals/automatica/automatica20.html#Axelby84,https://doi.org/10.1016/0005-1098(84)90043-8 +Ilya Ioslovich,Optimal control of crop spacing in a plant factory.,2000,36,Automatica,11,db/journals/automatica/automatica36.html#IoslovichG00,https://doi.org/10.1016/S0005-1098(00)00086-8 +Roy S. Smith,Model validation for robust control: an experimental process control application.,1995,31,Automatica,11,db/journals/automatica/automatica31.html#Smith95a,https://doi.org/10.1016/0005-1098(95)00093-C +Yawvi A. Fiagbedzi,A multistage reduction technique for feedback stabilizing distributed time-lag systems.,1987,23,Automatica,3,db/journals/automatica/automatica23.html#FiagbedziP87,https://doi.org/10.1016/0005-1098(87)90005-7 +Mahdi Imani,Finite-horizon LQR controller for partially-observed Boolean dynamical systems.,2018,95,Automatica,,db/journals/automatica/automatica95.html#ImaniB18a,https://doi.org/10.1016/j.automatica.2018.05.028 +André C. M. Ran,Necessary and sufficient conditions for existence of J-spectral factorization for para-Hermitian rational matrix functions.,2003,39,Automatica,11,db/journals/automatica/automatica39.html#Ran03,https://doi.org/10.1016/S0005-1098(03)00201-2 +Qing Hui,Optimal distributed linear averaging.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#Hui11,https://doi.org/10.1016/j.automatica.2011.09.001 +Eyal Weiss,Minimal controllability of conjunctive Boolean networks is NP-complete.,2018,92,Automatica,,db/journals/automatica/automatica92.html#WeissME18,https://doi.org/10.1016/j.automatica.2018.02.014 +Chao Zhai,Decentralized sweep coverage algorithm for multi-agent systems with workload uncertainties.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#ZhaiH13,https://doi.org/10.1016/j.automatica.2013.03.017 +Fei-Yue Wang,A coordination theory for intelligent machines.,1990,26,Automatica,5,db/journals/automatica/automatica26.html#WangS90,https://doi.org/10.1016/0005-1098(90)90001-X +Tor Arne Johansen,Identification of non-linear systems using empirical data and prior knowledge - an optimization approach.,1996,32,Automatica,3,db/journals/automatica/automatica32.html#Johansen96,https://doi.org/10.1016/0005-1098(95)00146-8 +Soohee Han,Stochastic feedback and its relation to the entropy criterion.,2011,47,Automatica,3,db/journals/automatica/automatica47.html#Han11,https://doi.org/10.1016/j.automatica.2011.01.038 +Chee-Fai Yung,Reduced-order Hinfinity controller design - an algebraic Riccati equation approach.,2000,36,Automatica,6,db/journals/automatica/automatica36.html#Yung00,https://doi.org/10.1016/S0005-1098(99)00219-8 +Leandros Tassiulas,Information delivery through broadcasting in satellite communication networks.,1999,35,Automatica,12,db/journals/automatica/automatica35.html#TassiulasS99,https://doi.org/10.1016/S0005-1098(99)00134-X +Aleksander Kowalski,On state estimation and control in discrete-time systems of linear type.,1988,24,Automatica,6,db/journals/automatica/automatica24.html#KowalskiS88,https://doi.org/10.1016/0005-1098(88)90062-3 +A. J. M. Van Overbeek,On-line structure selection for multivariable state-space models.,1982,18,Automatica,5,db/journals/automatica/automatica18.html#OverbeekL82,https://doi.org/10.1016/0005-1098(82)90003-6 +Han-Fu Chen,Recursive identification for multivariate errors-in-variables systems.,2007,43,Automatica,7,db/journals/automatica/automatica43.html#Chen07,https://doi.org/10.1016/j.automatica.2006.12.015 +Emilia Fridman,An LMI approach to Hinfinity boundary control of semilinear parabolic and hyperbolic systems.,2009,45,Automatica,9,db/journals/automatica/automatica45.html#FridmanO09a,https://doi.org/10.1016/j.automatica.2009.04.026 +Jorge R. Chavez-Fuentes,Metrics of performance for discrete-time descriptor jump linear systems.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#Chavez-FuentesCT14,https://doi.org/10.1016/j.automatica.2014.01.005 +Mao-Lin Ni,A note on the maximum solutions of riccati equations.,1991,27,Automatica,6,db/journals/automatica/automatica27.html#Ni91,https://doi.org/10.1016/0005-1098(91)90144-Q +James F. Whidborne,EMS control system design for a maglev vehicle - A critical system.,1993,29,Automatica,5,db/journals/automatica/automatica29.html#Whidborne93,https://doi.org/10.1016/0005-1098(93)90054-W +Kendra Lesser,Reachability for partially observable discrete time stochastic hybrid systems.,2014,50,Automatica,8,db/journals/automatica/automatica50.html#LesserO14,https://doi.org/10.1016/j.automatica.2014.05.012 +Ondrej Straka,Unscented Kalman filter with advanced adaptation of scaling parameter.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#StrakaDS14,https://doi.org/10.1016/j.automatica.2014.08.030 +Humberto Caballero-Barragán,Sliding mode predictive control of linear uncertain systems with delays.,2018,94,Automatica,,db/journals/automatica/automatica94.html#Caballero-Barragan18,https://doi.org/10.1016/j.automatica.2018.04.040 +Chi-Man Kwan,Sliding mode control of linear systems with mismatched uncertainties.,1995,31,Automatica,2,db/journals/automatica/automatica31.html#Kwan95,https://doi.org/10.1016/0005-1098(94)00093-X +Gregory E. Coxson,"Remarks on an affinity condition in ""a survey of extreme point results for robustness of control systems"".",1994,30,Automatica,5,db/journals/automatica/automatica30.html#Coxson94,https://doi.org/10.1016/0005-1098(94)90184-8 +Carlos Renato Vázquez,Timing and liveness in continuous Petri nets.,2011,47,Automatica,2,db/journals/automatica/automatica47.html#VazquezS11,https://doi.org/10.1016/j.automatica.2010.10.047 +Andrzej Banaszuk,Remarks on observability of implicit linear discrete-time systems.,1990,26,Automatica,2,db/journals/automatica/automatica26.html#BanaszukKP90,https://doi.org/10.1016/0005-1098(90)90140-D +Aleksandar I. Zecevic,Control design with arbitrary information structure constraints.,2008,44,Automatica,10,db/journals/automatica/automatica44.html#ZecevicS08,https://doi.org/10.1016/j.automatica.2008.02.029 +Anmar Khadra,Impulsively synchronizing chaotic systems with delay and applications to secure communication.,2005,41,Automatica,9,db/journals/automatica/automatica41.html#KhadraLS05,https://doi.org/10.1016/j.automatica.2005.04.012 +Kyriakos G. Vamvoudakis,Model-free event-triggered control algorithm for continuous-time linear systems with optimal performance.,2018,87,Automatica,,db/journals/automatica/automatica87.html#VamvoudakisF18,https://doi.org/10.1016/j.automatica.2017.03.013 +Matthias Albrecht Müller,Fault coverage modeling in nonlinear dynamical systems.,2012,48,Automatica,7,db/journals/automatica/automatica48.html#MullerD12,https://doi.org/10.1016/j.automatica.2012.04.007 +Myung-Gon Yoon,"A comment on ""Linfinity optimal control of SISO continuous-time systems"".",2000,36,Automatica,12,db/journals/automatica/automatica36.html#Yoon00,https://doi.org/10.1016/S0005-1098(00)00112-6 +Peter V. Zhivoglyadov,Switching controller design via convex polyhedral Lyapunov functions.,2002,38,Automatica,9,db/journals/automatica/automatica38.html#ZhivoglyadovM02,https://doi.org/10.1016/S0005-1098(02)00043-2 +Agnes Rensfelt,Parametric identification of complex modulus.,2011,47,Automatica,4,db/journals/automatica/automatica47.html#RensfeltS11,https://doi.org/10.1016/j.automatica.2011.01.076 +Yan Wang,Interval observer design for LPV systems with parametric uncertainty.,2015,60,Automatica,,db/journals/automatica/automatica60.html#WangBR15,https://doi.org/10.1016/j.automatica.2015.07.001 +John Lataire,Non-parametric estimate of the system function of a time-varying system.,2012,48,Automatica,4,db/journals/automatica/automatica48.html#LatairePL12,https://doi.org/10.1016/j.automatica.2012.01.013 +Ichiro Maruta,Fixed-structure H INFINITY controller synthesis: A meta-heuristic approach using simple constrained particle swarm optimization.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#MarutaKS09,https://doi.org/10.1016/j.automatica.2008.09.019 +Nicoletta Bof,Output feedback stabilization of Boolean control networks.,2015,57,Automatica,,db/journals/automatica/automatica57.html#BofFV15,https://doi.org/10.1016/j.automatica.2015.03.032 +João Yoshiyuki Ishihara,Doubly coprime factorizations related to any stabilizing controllers in state space.,1999,35,Automatica,9,db/journals/automatica/automatica35.html#IshiharaS99,https://doi.org/10.1016/S0005-1098(99)00056-4 +Howard Kaufman,Adaptive flight control using optimal linear regulator techniques.,1976,12,Automatica,6,db/journals/automatica/automatica12.html#KaufmanB76,https://doi.org/10.1016/0005-1098(76)90038-8 +Tong Zhou,Identification of normalized coprime factors through constrained curve fitting.,2004,40,Automatica,9,db/journals/automatica/automatica40.html#ZhouX04,https://doi.org/10.1016/j.automatica.2004.04.005 +Johan Schoukens,Identification of linear systems with nonlinear distortions.,2005,41,Automatica,3,db/journals/automatica/automatica41.html#SchoukensPDR05,https://doi.org/10.1016/j.automatica.2004.10.004 +Yan-Jun Liu,Barrier Lyapunov Functions-based adaptive control for a class of nonlinear pure-feedback systems with full state constraints.,2016,64,Automatica,,db/journals/automatica/automatica64.html#LiuT16,https://doi.org/10.1016/j.automatica.2015.10.034 +Xiaobo Li,A time domain approach to robust fault detection of linear time-varying systems.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#LiZ09,https://doi.org/10.1016/j.automatica.2008.07.017 +Mondher Farza,Adaptive observer design for a class of nonlinear systems. Application to speed sensorless induction motor.,2018,90,Automatica,,db/journals/automatica/automatica90.html#FarzaMMLM18,https://doi.org/10.1016/j.automatica.2017.12.058 +Cristian R. Rojas,The cost of complexity in system identification: The Output Error case.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#RojasBWH11,https://doi.org/10.1016/j.automatica.2011.06.021 +Pavel Trnka,Subspace like identification incorporating prior information.,2009,45,Automatica,4,db/journals/automatica/automatica45.html#TrnkaH09,https://doi.org/10.1016/j.automatica.2008.12.005 +Parijat Dube,Bertrand equilibria and efficiency in markets for congestible network services.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#DubeJ14,https://doi.org/10.1016/j.automatica.2013.12.020 +Beidaghi Sahereh,filtering for descriptor systems with strict LMI conditions.,2017,80,Automatica,,db/journals/automatica/automatica80.html#SaherehJK17,https://doi.org/10.1016/j.automatica.2017.02.021 +S. Marshall,Machine vision: Automated visual inspection and robot vision : David Vernon.,1994,30,Automatica,4,db/journals/automatica/automatica30.html#Marshall94,https://doi.org/10.1016/0005-1098(94)90163-5 +Daniel N. Miller,Subspace identification with eigenvalue constraints.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#MillerC13,https://doi.org/10.1016/j.automatica.2013.04.028 +Lennart Ljung,Adaptation and tracking in system identification - A survey.,1990,26,Automatica,1,db/journals/automatica/automatica26.html#LjungG90,https://doi.org/10.1016/0005-1098(90)90154-A +Giorgio Battistelli,A distributed Kalman filter with event-triggered communication and guaranteed stability.,2018,93,Automatica,,db/journals/automatica/automatica93.html#BattistelliCS18,https://doi.org/10.1016/j.automatica.2018.03.005 +Lihua Xie,Improved robust H2 and Hinfinity filtering for uncertain discrete-time systems.,2004,40,Automatica,5,db/journals/automatica/automatica40.html#XieLZZ04,https://doi.org/10.1016/j.automatica.2004.01.003 +Ruth F. Curtain,System theoretic properties of a class of spatially invariant systems.,2009,45,Automatica,7,db/journals/automatica/automatica45.html#CurtainIZ09,https://doi.org/10.1016/j.automatica.2009.03.005 +W. E. Schmitendorf,Design of observer-based robust stabilizing controllers.,1988,24,Automatica,5,db/journals/automatica/automatica24.html#Schmitendorf88,https://doi.org/10.1016/0005-1098(88)90117-3 +Stephen Duncan,Processing data from scanning gauges on industrial web processes.,2004,40,Automatica,3,db/journals/automatica/automatica40.html#DuncanW04,https://doi.org/10.1016/j.automatica.2003.10.013 +Salomon Oldak,The sensor noise problem in dithered feedback systems.,1992,28,Automatica,5,db/journals/automatica/automatica28.html#OldakHS92,https://doi.org/10.1016/0005-1098(92)90157-B +Héctor Ríos,Continuous and discrete state estimation for switched LPV systems using parameter identification.,2015,62,Automatica,,db/journals/automatica/automatica62.html#RiosMEPD15,https://doi.org/10.1016/j.automatica.2015.09.016 +çetin Kaya Koç,A Parallel algorithm for principal nth roots of matrices.,1997,33,Automatica,9,db/journals/automatica/automatica33.html#KocI97,https://doi.org/10.1016/S0005-1098(97)00067-8 +Yonggang Chen,Stabilization of neutral time-delay systems with actuator saturation via auxiliary time-delay feedback.,2015,52,Automatica,,db/journals/automatica/automatica52.html#ChenFL15,https://doi.org/10.1016/j.automatica.2014.11.015 +Gunter Stein,A parameter-adaptive control technique.,1969,5,Automatica,6,db/journals/automatica/automatica5.html#SteinS69,https://doi.org/10.1016/0005-1098(69)90086-7 +Guy Albert Dumont,Application of advanced control methods in the pulp and paper industry - A survey.,1986,22,Automatica,2,db/journals/automatica/automatica22.html#Dumont86,https://doi.org/10.1016/0005-1098(86)90076-2 +Mukul Agarwal,Self-tuning controllers for nonlinear systems.,1987,23,Automatica,2,db/journals/automatica/automatica23.html#AgarwalS87,https://doi.org/10.1016/0005-1098(87)90093-8 +Jean Auriol,Delay-robust stabilization of a hyperbolic PDE-ODE system.,2018,95,Automatica,,db/journals/automatica/automatica95.html#AuriolASLM18,https://doi.org/10.1016/j.automatica.2018.06.033 +Yaakov Oshman,Square root filtering via covariance and information eigenfactors.,1986,22,Automatica,5,db/journals/automatica/automatica22.html#OshmanB86,https://doi.org/10.1016/0005-1098(86)90070-1 +Ewoud Vos,Equal distribution of satellite constellations on circular target orbits.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#VosSS14,https://doi.org/10.1016/j.automatica.2014.08.027 +Huaibin Tang,Continuous-time stochastic consensus: Stochastic approximation and Kalman-Bucy filtering based protocols.,2015,61,Automatica,,db/journals/automatica/automatica61.html#TangL15,https://doi.org/10.1016/j.automatica.2015.08.007 +Xi Liu,Input-to-state stabilization for nonlinear dual-rate sampled-data systems via approximate discrete-time model.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#LiuML08,https://doi.org/10.1016/j.automatica.2008.05.016 +Rafal Wisniewski,Fully magnetic attitude control for spacecraft subject to gravity gradient.,1999,35,Automatica,7,db/journals/automatica/automatica35.html#WisniewskiB99,https://doi.org/10.1016/S0005-1098(99)00021-7 +Ljubomir T. Grujic,On absolute stability and the aizerman conjecture.,1981,17,Automatica,2,db/journals/automatica/automatica17.html#Grujic81,https://doi.org/10.1016/0005-1098(81)90051-0 +Hiroaki Mukaidani,Robust guaranteed cost control for uncertain stochastic systems with multiple decision makers.,2009,45,Automatica,7,db/journals/automatica/automatica45.html#Mukaidani09a,https://doi.org/10.1016/j.automatica.2009.03.013 +Kenneth Hsu,Parametric and nonparametric curve fitting.,2006,42,Automatica,11,db/journals/automatica/automatica42.html#HsuNVMP06,https://doi.org/10.1016/j.automatica.2006.05.024 +Paul M. J. Van den Hof,Identification of dynamic models in complex networks with prediction error methods - Basic methods for consistent module estimates.,2013,49,Automatica,10,db/journals/automatica/automatica49.html#HofDHB13,https://doi.org/10.1016/j.automatica.2013.07.011 +Michael J. Tippett,Control of plant-wide systems using dynamic supply rates.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#TippettB14,https://doi.org/10.1016/j.automatica.2013.09.028 +Ping Jiang 0001,A universal iterative learning stabilizer for a class of MIMO systems.,2006,42,Automatica,6,db/journals/automatica/automatica42.html#JiangCB06,https://doi.org/10.1016/j.automatica.2006.02.001 +Meng Guo,Consensus with quantized relative state measurements.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#GuoD13,https://doi.org/10.1016/j.automatica.2013.05.001 +Mauro Franceschelli,Quantized consensus in Hamiltonian graphs.,2011,47,Automatica,11,db/journals/automatica/automatica47.html#FranceschelliGS11,https://doi.org/10.1016/j.automatica.2011.08.032 +Fernando Antonio Gomide,Large scale systems with multiple objectives: An interactive negotiation procedure.,1991,27,Automatica,4,db/journals/automatica/automatica27.html#GomideCT91,https://doi.org/10.1016/0005-1098(91)90059-B +A. M. Stamatelos,On-line regeneration control for a diesel particulate trap system.,1994,30,Automatica,3,db/journals/automatica/automatica30.html#Stamatelos94,https://doi.org/10.1016/0005-1098(94)90129-5 +Marion Gilson,Instrumental variable methods for closed-loop system identification.,2005,41,Automatica,2,db/journals/automatica/automatica41.html#GilsonH05,https://doi.org/10.1016/j.automatica.2004.09.016 +Chao Liu,L2 norm performance index of synchronization and LQR control synthesis of complex networks.,2009,45,Automatica,8,db/journals/automatica/automatica45.html#LiuDCH09,https://doi.org/10.1016/j.automatica.2009.04.004 +Weiyin Fei,Delay dependent stability of highly nonlinear hybrid stochastic systems.,2017,82,Automatica,,db/journals/automatica/automatica82.html#FeiHMS17,https://doi.org/10.1016/j.automatica.2017.04.050 +Shuxia Tang,State-of-Charge estimation from a thermal-electrochemical model of lithium-ion batteries.,2017,83,Automatica,,db/journals/automatica/automatica83.html#TangCWK17,https://doi.org/10.1016/j.automatica.2017.06.030 +Salim Ibrir,Adaptive observers for time-delay nonlinear systems in triangular form.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#Ibrir09,https://doi.org/10.1016/j.automatica.2009.06.027 +Marco Tulio Angulo,Output-feedback finite-time stabilization of disturbed feedback linearizable nonlinear systems.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#AnguloFM13,https://doi.org/10.1016/j.automatica.2013.05.013 +Luc Jaulin,Proving set inclusion via intervals: application to parametric robust stability.,1999,35,Automatica,4,db/journals/automatica/automatica35.html#JaulinB99,https://doi.org/10.1016/S0005-1098(98)00201-5 +N. L. C. Chui,Realization of stable models with subspace methods.,1996,32,Automatica,11,db/journals/automatica/automatica32.html#ChuiM96,https://doi.org/10.1016/S0005-1098(96)00104-5 +Soura Dasgupta,Identification of physical parameters in structured systems.,1988,24,Automatica,2,db/journals/automatica/automatica24.html#DasguptaAK88,https://doi.org/10.1016/0005-1098(88)90030-1 +Peilian Guo,Algebraic formulation and strategy optimization for a class of evolutionary networked games via semi-tensor product method.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#GuoWL13,https://doi.org/10.1016/j.automatica.2013.08.008 +Kang Li 0002,A two-stage algorithm for identification of nonlinear dynamic systems.,2006,42,Automatica,7,db/journals/automatica/automatica42.html#LiPB06,https://doi.org/10.1016/j.automatica.2006.03.004 +Alessandro Beghi,Discrete-Time Optimal Control with Control-Dependent Noise and Generalized Riccati Difference Equations.,1998,34,Automatica,8,db/journals/automatica/automatica34.html#BeghiD98,https://doi.org/10.1016/S0005-1098(98)00044-2 +D. Benlahcen,A fuzzy automaton synthesis method.,1981,17,Automatica,2,db/journals/automatica/automatica17.html#BenlahcenL81,https://doi.org/10.1016/0005-1098(81)90048-0 +Salim Ibrir,Circle-criterion approach to discrete-time nonlinear observer design.,2007,43,Automatica,8,db/journals/automatica/automatica43.html#Ibrir07,https://doi.org/10.1016/j.automatica.2007.01.012 +Ilia G. Polushin,Control schemes for stable teleoperation with communication delay based on IOS small gain theorem.,2006,42,Automatica,6,db/journals/automatica/automatica42.html#PolushinTM06,https://doi.org/10.1016/j.automatica.2006.02.020 +David W. Clarke,Generalized predictive control - Part I. The basic algorithm.,1987,23,Automatica,2,db/journals/automatica/automatica23.html#ClarkeMT87,https://doi.org/10.1016/0005-1098(87)90087-2 +P. M. Mäkilä,On robustness in system identification.,1999,35,Automatica,5,db/journals/automatica/automatica35.html#MakilaP99,https://doi.org/10.1016/S0005-1098(98)00223-4 +I. Flügge-Lotz,Attitude stabilization using a contactor control system with a linear switching criterion.,1965,2,Automatica,4,db/journals/automatica/automatica2.html#Flugge-LotzM65,https://doi.org/10.1016/0005-1098(65)90015-4 +Do Chang Oh,Discrete model reduction preserving bounded realness.,1997,33,Automatica,4,db/journals/automatica/automatica33.html#OhP97,https://doi.org/10.1016/S0005-1098(96)00216-6 +George S. Axelby,Special sections and issues.,1980,16,Automatica,5,db/journals/automatica/automatica16.html#Axelby80b,https://doi.org/10.1016/0005-1098(80)90065-5 +Zoran Gajic,Improvement of system order reduction via balancing using the method of singular perturbations.,2001,37,Automatica,11,db/journals/automatica/automatica37.html#GajicL01a,https://doi.org/10.1016/S0005-1098(01)00139-X +Hacene Habbi,A dynamic fuzzy model for a drum-boiler-turbine system.,2003,39,Automatica,7,db/journals/automatica/automatica39.html#HabbiZB03,https://doi.org/10.1016/S0005-1098(03)00075-X +Gianluigi Pillonetto,Optimal smoothing of non-linear dynamic systems via Monte Carlo Markov chains.,2008,44,Automatica,7,db/journals/automatica/automatica44.html#PillonettoB08,https://doi.org/10.1016/j.automatica.2007.10.028 +H. W. Joseph Lee,Sensor scheduling in continuous time.,2001,37,Automatica,12,db/journals/automatica/automatica37.html#LeeTL01,https://doi.org/10.1016/S0005-1098(01)00159-5 +Er-Wei Bai,Identification of linear systems with hard input nonlinearities of known structure.,2002,38,Automatica,5,db/journals/automatica/automatica38.html#Bai02,https://doi.org/10.1016/S0005-1098(01)00281-3 +Sergio Bittanti,The autonomous linear quadratic control problem: Theory and numerical solutions : V. M. Mehrmann.,1994,30,Automatica,3,db/journals/automatica/automatica30.html#BittantiN94,https://doi.org/10.1016/0005-1098(94)90138-4 +Fu-Shiung Hsieh,Holarchy formation and optimization in holonic manufacturing systems with contract net.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#Hsieh08,https://doi.org/10.1016/j.automatica.2007.09.006 +David Henry 0001,Off-line robust fault diagnosis using the generalized structured singular value.,2002,38,Automatica,8,db/journals/automatica/automatica38.html#HenryZMY02,https://doi.org/10.1016/S0005-1098(02)00026-2 +David Angeli,Data-based supervisory control of uncertain systems with application to automatic drug delivery for anesthesia.,2007,43,Automatica,7,db/journals/automatica/automatica43.html#AngeliMM07,https://doi.org/10.1016/j.automatica.2007.01.001 +C. Schmid,Computer control of machines and processes: John G. Bollinger and Neil A. Duffei.,1991,27,Automatica,2,db/journals/automatica/automatica27.html#Schmid91,https://doi.org/10.1016/0005-1098(91)90097-L +S. Emre Tuna,Growth rate of switched homogeneous systems.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#Tuna08a,https://doi.org/10.1016/j.automatica.2008.03.017 +Alexey V. Pavlov,Steady-state performance optimization for nonlinear control systems of Lur'e type.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#PavlovHWN13,https://doi.org/10.1016/j.automatica.2013.04.017 +Federico Felici,Subspace identification of MIMO LPV systems using a periodic scheduling sequence.,2007,43,Automatica,10,db/journals/automatica/automatica43.html#FeliciWV07,https://doi.org/10.1016/j.automatica.2007.02.027 +M. Ilic,A structure-based modeling and control of Electric power systems.,1997,33,Automatica,4,db/journals/automatica/automatica33.html#IlicLEVA97,https://doi.org/10.1016/S0005-1098(96)00212-9 +William Paul Heath,Bias of indirect non-parametric transfer function estimates for plants in closed loop.,2001,37,Automatica,10,db/journals/automatica/automatica37.html#Heath01,https://doi.org/10.1016/S0005-1098(01)00105-4 +S. Emre Tuna,Synchronizing linear systems via partial-state coupling.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#Tuna08,https://doi.org/10.1016/j.automatica.2008.01.004 +Myeong-Jin Park,Stability of time-delay systems via Wirtinger-based double integral inequality.,2015,55,Automatica,,db/journals/automatica/automatica55.html#ParkKPLC15,https://doi.org/10.1016/j.automatica.2015.03.010 +Xinmin Song,Stochastic linear quadratic regulation for discrete-time linear systems with input delay.,2009,45,Automatica,9,db/journals/automatica/automatica45.html#SongZX09,https://doi.org/10.1016/j.automatica.2009.04.024 +Mohammad Rasouli 0002,Quasiconvexity analysis of the Hammerstein model.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#RasouliWR14,https://doi.org/10.1016/j.automatica.2013.11.004 +Xiongping Dai,Periodically switched stability induces exponential stability of discrete-time linear switched systems in the sense of Markovian probabilities.,2011,47,Automatica,7,db/journals/automatica/automatica47.html#DaiHX11,https://doi.org/10.1016/j.automatica.2011.02.034 +J.-H. Kim,Model-free H INFINITY control design for unknown linear discrete-time systems via Q-learning with LMI.,2010,46,Automatica,8,db/journals/automatica/automatica46.html#KimL10,https://doi.org/10.1016/j.automatica.2010.05.002 +Harold J. Kushner,A partial history of the early development of continuous-time nonlinear stochastic systems theory.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#Kushner14,https://doi.org/10.1016/j.automatica.2013.10.013 +Wânderson O. Assis,Generation of optimal schedules for metro lines using model predictive control.,2004,40,Automatica,8,db/journals/automatica/automatica40.html#AssisM04,https://doi.org/10.1016/j.automatica.2004.02.021 +Lennart Ljung,Automatica prize paper awards 1996.,1996,32,Automatica,8,db/journals/automatica/automatica32.html#Ljung96,https://doi.org/10.1016/0005-1098(96)00096-9 +Pietro De Lellis,The partial pinning control strategy for large complex networks.,2018,89,Automatica,,db/journals/automatica/automatica89.html#DeLellisGI18,https://doi.org/10.1016/j.automatica.2017.11.025 +Wuquan Li,Further results on adaptive state-feedback stabilization for stochastic high-order nonlinear systems.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#LiLZ12,https://doi.org/10.1016/j.automatica.2012.05.035 +Warody Lombardi,Cyclic invariance for discrete time-delay systems.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#LombardiOBN12,https://doi.org/10.1016/j.automatica.2012.06.097 +Olivier Bahn,A stochastic control model for optimal timing of climate policies.,2008,44,Automatica,6,db/journals/automatica/automatica44.html#BahnHM08,https://doi.org/10.1016/j.automatica.2008.03.004 +Fotis N. Koumboulis,Robust Disturbance Rejection with Simultaneous Robust Input-Output Decoupling.,1997,33,Automatica,7,db/journals/automatica/automatica33.html#KoumboulisS97,https://doi.org/10.1016/S0005-1098(97)00038-1 +Mathias Bürger,A distributed simplex algorithm for degenerate linear programs and multi-agent assignments.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#BurgerNBA12,https://doi.org/10.1016/j.automatica.2012.06.040 +Christodoulos Keliris,A robust nonlinear observer-based approach for distributed fault detection of input-output interconnected systems.,2015,53,Automatica,,db/journals/automatica/automatica53.html#KelirisPP15,https://doi.org/10.1016/j.automatica.2015.01.042 +Qifeng Wei,Nonlinear controller for an inverted pendulum having restricted travel.,1995,31,Automatica,6,db/journals/automatica/automatica31.html#WeiDL95,https://doi.org/10.1016/0005-1098(94)00138-9 +Dragan Nesic,Input-to-state stability of networked control systems.,2004,40,Automatica,12,db/journals/automatica/automatica40.html#NesicT04a,https://doi.org/10.1016/j.automatica.2004.07.003 +Jin Hyun Park,Improved relay auto-tuning with static load disturbance.,1997,33,Automatica,4,db/journals/automatica/automatica33.html#ParkSL97,https://doi.org/10.1016/S0005-1098(96)00174-4 +Orest V. Iftime,Block circulant and block Toeplitz approximants of a class of spatially distributed systems - An LQR perspective.,2012,48,Automatica,12,db/journals/automatica/automatica48.html#Iftime12,https://doi.org/10.1016/j.automatica.2012.08.021 +Feng Zheng,An H INFINITY approach to the controller design of AQM routers supporting TCP flows.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#ZhengN09,https://doi.org/10.1016/j.automatica.2008.10.014 +Petros G. Voulgaris,H∞ and H2 optimal controllers for periodic and multirate systems.,1994,30,Automatica,2,db/journals/automatica/automatica30.html#VoulgarisDV94,https://doi.org/10.1016/0005-1098(94)90028-0 +Shanshan Li,Feedback based adaptive compensation of control system sensor uncertainties.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#LiT09,https://doi.org/10.1016/j.automatica.2008.09.017 +Farzad Salehisadaghiani,Distributed Nash equilibrium seeking: A gossip-based algorithm.,2016,72,Automatica,,db/journals/automatica/automatica72.html#Salehisadaghiani16,https://doi.org/10.1016/j.automatica.2016.06.004 +He Cai,The adaptive distributed observer approach to the cooperative output regulation of linear multi-agent systems.,2017,75,Automatica,,db/journals/automatica/automatica75.html#CaiLHH17,https://doi.org/10.1016/j.automatica.2016.09.038 +Seiichi Shin,Self-tuning systems control and signal processing : R. E. Wellstead and M. B. Zarrop.,1992,28,Automatica,6,db/journals/automatica/automatica28.html#Shin92,https://doi.org/10.1016/0005-1098(92)90077-S +Wouter H. T. M. Aangenent,Linear control of time-domain constrained systems.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#AangenentHMHS12,https://doi.org/10.1016/j.automatica.2012.02.017 +Shigemasa Takai,Verification of robust diagnosability for partially observed discrete event systems.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#Takai12,https://doi.org/10.1016/j.automatica.2012.06.024 +Hong Lin 0001,On stability and convergence of optimal estimation for networked control systems with dual packet losses without acknowledgment.,2018,90,Automatica,,db/journals/automatica/automatica90.html#LinSCSLW18,https://doi.org/10.1016/j.automatica.2017.12.059 +David Q. Mayne,Robust output feedback model predictive control of constrained linear systems.,2006,42,Automatica,7,db/journals/automatica/automatica42.html#MayneRFA06,https://doi.org/10.1016/j.automatica.2006.03.005 +B. R. Barmish,In memoriam: Kehui Wei (1946-1992).,1993,29,Automatica,1,db/journals/automatica/automatica29.html#BarmishA93,https://doi.org/10.1016/0005-1098(93)90170-X +Hosik Yoon,Q domain optimization method for l1-optimal controllers.,2000,36,Automatica,4,db/journals/automatica/automatica36.html#YoonTP00,https://doi.org/10.1016/S0005-1098(99)00184-3 +Dale A. Lawrence,Adaptive system stability robustness via burst recovery.,1995,31,Automatica,4,db/journals/automatica/automatica31.html#Lawrence95,https://doi.org/10.1016/0005-1098(95)98485-O +Hassan Hammouri,Unknown input observer for state affine systems: A necessary and sufficient condition.,2010,46,Automatica,2,db/journals/automatica/automatica46.html#HammouriT10,https://doi.org/10.1016/j.automatica.2009.11.004 +Nicolas Marchand,Global stabilization of multiple integrators with bounded controls.,2005,41,Automatica,12,db/journals/automatica/automatica41.html#MarchandH05,https://doi.org/10.1016/j.automatica.2005.07.004 +Andrea Holmberg,Procedures for parameter and state estimation of microbial growth process models.,1982,18,Automatica,2,db/journals/automatica/automatica18.html#HolmbergR82,https://doi.org/10.1016/0005-1098(82)90107-8 +Fu-Shiung Hsieh,Robustness analysis of holonic assembly/disassembly processes with Petri nets.,2008,44,Automatica,10,db/journals/automatica/automatica44.html#Hsieh08a,https://doi.org/10.1016/j.automatica.2008.03.008 +Sergio M. Savaresi,Identification of semi-physical and black-box non-linear models: the case of MR-dampers for vehicles control.,2005,41,Automatica,1,db/journals/automatica/automatica41.html#SavaresiBM05,https://doi.org/10.1016/j.automatica.2004.08.012 +Miloslav S. Vosvrda,Discrete random signals and statistical signal processing: Charles W. Therrien.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#Vosvrda93,https://doi.org/10.1016/0005-1098(93)90033-P +Manuel Mazo Jr.,An ISS self-triggered implementation of linear controllers.,2010,46,Automatica,8,db/journals/automatica/automatica46.html#MazoMT10,https://doi.org/10.1016/j.automatica.2010.05.009 +Andrey Smyshlyaev,On control design for PDEs with space-dependent diffusivity or time-dependent reactivity.,2005,41,Automatica,9,db/journals/automatica/automatica41.html#SmyshlyaevK05,https://doi.org/10.1016/j.automatica.2005.04.006 +G. B. Mahapatra,Convergence properties of eigenvalues of space discretized diffusion equations.,1977,13,Automatica,2,db/journals/automatica/automatica13.html#Mahapatra77,https://doi.org/10.1016/0005-1098(77)90045-0 +Zhong-Ping Jiang,A combined backstepping and small-gain approach to adaptive output feedback control.,1999,35,Automatica,6,db/journals/automatica/automatica35.html#Jiang99,https://doi.org/10.1016/S0005-1098(99)00015-1 +S. Emre Tuna,State deadbeat control of nonlinear systems: Construction via sets.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#Tuna12a,https://doi.org/10.1016/j.automatica.2012.06.017 +Gustavo H. M. de Arruda,Relay-based closed loop transfer function frequency points estimation.,2003,39,Automatica,2,db/journals/automatica/automatica39.html#ArrudaB03,https://doi.org/10.1016/S0005-1098(02)00205-4 +Anton A. Stoorvogel,Solvability conditions and design for state synchronization of multi-agent systems.,2017,84,Automatica,,db/journals/automatica/automatica84.html#StoorvogelSZ17,https://doi.org/10.1016/j.automatica.2017.06.016 +Marco A. Rodrigues,MPC for stable linear systems with model uncertainty.,2003,39,Automatica,4,db/journals/automatica/automatica39.html#RodriguesO03,https://doi.org/10.1016/S0005-1098(02)00176-0 +Graziano Chesi,On the non-conservatism of a novel LMI relaxation for robust analysis of polytopic systems.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#Chesi08,https://doi.org/10.1016/j.automatica.2008.05.002 +Alessandro Chiuso,Subspace identification by data orthogonalization and model decoupling.,2004,40,Automatica,10,db/journals/automatica/automatica40.html#ChiusoP04b,https://doi.org/10.1016/j.automatica.2004.05.008 +El Kebir Boukas,Static output feedback control for stochastic hybrid systems: LMI approach.,2006,42,Automatica,1,db/journals/automatica/automatica42.html#Boukas06,https://doi.org/10.1016/j.automatica.2005.08.012 +Shyh-Hong Hwang,Use of two-stage least-squares algorithms for identification of continuous systems with time delay based on pulse responses.,2004,40,Automatica,9,db/journals/automatica/automatica40.html#HwangL04,https://doi.org/10.1016/j.automatica.2004.03.017 +George Miminis,A direct algorithm for pole assignment of time-invariant multi-input linear systems using state feedback.,1988,24,Automatica,3,db/journals/automatica/automatica24.html#MiminisP88,https://doi.org/10.1016/0005-1098(88)90075-1 +Giorgio Bartolini,Output tracking control of uncertain nonlinear second-order systems.,1997,33,Automatica,12,db/journals/automatica/automatica33.html#BartoliniFU97,https://doi.org/10.1016/S0005-1098(97)00147-7 +Liping Yin,Fault isolation for multivariate nonlinear non-Gaussian systems using generalized entropy optimization principle.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#YinG09,https://doi.org/10.1016/j.automatica.2009.07.023 +Gang Zheng,Observer design for linear singular time-delay systems.,2017,80,Automatica,,db/journals/automatica/automatica80.html#ZhengB17,https://doi.org/10.1016/j.automatica.2017.01.025 +Madalena Chaves,Exact control of genetic networks in a qualitative framework: The bistable switch example.,2011,47,Automatica,6,db/journals/automatica/automatica47.html#ChavesG11,https://doi.org/10.1016/j.automatica.2011.01.071 +Giuseppe Casalino,Further results on implicit models with application to LQ adaptive optimization.,1992,28,Automatica,2,db/journals/automatica/automatica28.html#CasalinoM92,https://doi.org/10.1016/0005-1098(92)90127-2 +Lacra Pavel,Dynamics and stability in optical communication networks: a system theory framework.,2004,40,Automatica,8,db/journals/automatica/automatica40.html#Pavel04,https://doi.org/10.1016/j.automatica.2004.03.014 +Luciano Pandolfi,Dynamic stabilization of systems with input delays.,1991,27,Automatica,6,db/journals/automatica/automatica27.html#Pandolfi91,https://doi.org/10.1016/0005-1098(91)90141-N +Alexander Schaum,Dissipative observers for coupled diffusion-convection-reaction systems.,2018,94,Automatica,,db/journals/automatica/automatica94.html#SchaumMM18,https://doi.org/10.1016/j.automatica.2018.04.041 +Hakan Elmali,Robust output tracking control of nonlinear MIMO systems via sliding mode technique.,1992,28,Automatica,1,db/journals/automatica/automatica28.html#ElmaliO92,https://doi.org/10.1016/0005-1098(92)90014-7 +Tetsuya Iwasaki,Computational Complexity Reduction in Scaled H∞ Synthesis.,1997,33,Automatica,7,db/journals/automatica/automatica33.html#IwasakiHR97,https://doi.org/10.1016/S0005-1098(97)00045-9 +Tomás Vyhlídal,Parameterization of input shapers with delays of various distribution.,2015,59,Automatica,,db/journals/automatica/automatica59.html#VyhlidalH15,https://doi.org/10.1016/j.automatica.2015.06.025 +Lin Wang,Controllability of networked MIMO systems.,2016,69,Automatica,,db/journals/automatica/automatica69.html#WangCWT16,https://doi.org/10.1016/j.automatica.2016.03.013 +Herbert G. Tanner,Backstepping for nonsmooth systems.,2003,39,Automatica,7,db/journals/automatica/automatica39.html#TannerK03,https://doi.org/10.1016/S0005-1098(03)00081-5 +Eiichi Ono,Vehicle integrated control for steering and traction systems by and#956*-synthesis.,1994,30,Automatica,11,db/journals/automatica/automatica30.html#OnoTIHHS94,https://doi.org/10.1016/0005-1098(94)90068-X +Marta Neve,Nonparametric identification of population models via Gaussian processes.,2007,43,Automatica,7,db/journals/automatica/automatica43.html#NeveNM07,https://doi.org/10.1016/j.automatica.2006.12.024 +Er-Wei Bai,A blind approach to the Hammerstein-Wiener model identification.,2002,38,Automatica,6,db/journals/automatica/automatica38.html#Bai02a,https://doi.org/10.1016/S0005-1098(01)00292-8 +Cheng-Zong Bai,Data-injection attacks in stochastic control systems: Detectability and performance tradeoffs.,2017,82,Automatica,,db/journals/automatica/automatica82.html#BaiPG17,https://doi.org/10.1016/j.automatica.2017.04.047 +Sheng Chen 0010,Synchronization control for reaction-diffusion FitzHugh-Nagumo systems with spatial sampled-data.,2018,93,Automatica,,db/journals/automatica/automatica93.html#ChenLSL18,https://doi.org/10.1016/j.automatica.2018.03.043 +Alberto Leva,Estimating model mismatch overbounds for the robust autotuning of industrial regulators.,2000,36,Automatica,12,db/journals/automatica/automatica36.html#LevaC00,https://doi.org/10.1016/S0005-1098(00)00094-7 +B. G. B. Hunnekens,Overcoming a fundamental time-domain performance limitation by nonlinear control.,2016,67,Automatica,,db/journals/automatica/automatica67.html#HunnekensWN16,https://doi.org/10.1016/j.automatica.2016.01.021 +Xianfu Zhang,Output feedback control of large-scale nonlinear time-delay systems in lower triangular form.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#ZhangLFZ13,https://doi.org/10.1016/j.automatica.2013.08.026 +Angelo Alessandri,A maximum-likelihood Kalman filter for switching discrete-time linear systems.,2010,46,Automatica,11,db/journals/automatica/automatica46.html#AlessandriBB10,https://doi.org/10.1016/j.automatica.2010.07.001 +Javad Lavaei,Control of continuous-time LTI systems by means of structurally constrained controllers.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#LavaeiA08,https://doi.org/10.1016/j.automatica.2007.04.027 +Sung Jin Yoo,Distributed formation tracking of networked mobile robots under unknown slippage effects.,2015,54,Automatica,,db/journals/automatica/automatica54.html#YooK15,https://doi.org/10.1016/j.automatica.2015.01.043 +Sergio Bittanti,Invariant representations of discrete-time periodic systems.,2000,36,Automatica,12,db/journals/automatica/automatica36.html#BittantiC00,https://doi.org/10.1016/S0005-1098(00)00087-X +Nicolas Boizot,An adaptive high-gain observer for nonlinear systems.,2010,46,Automatica,9,db/journals/automatica/automatica46.html#BoizotBG10,https://doi.org/10.1016/j.automatica.2010.06.004 +Tao Yang 0003,Global consensus for discrete-time multi-agent systems with input saturation constraints.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#YangMDJ14,https://doi.org/10.1016/j.automatica.2013.11.008 +Bohyung Lee,Robust stability and stabilization of linear delayed systems with structured uncertainty.,1999,35,Automatica,6,db/journals/automatica/automatica35.html#LeeL99,https://doi.org/10.1016/S0005-1098(99)00018-7 +Masashi Yamashita,Application of H∞ control to active suspension systems.,1994,30,Automatica,11,db/journals/automatica/automatica30.html#YamashitaFHK94,https://doi.org/10.1016/0005-1098(94)90074-4 +Niklas Everitt,Variance analysis of linear SIMO models with spatially correlated noise.,2017,77,Automatica,,db/journals/automatica/automatica77.html#EverittBRH17,https://doi.org/10.1016/j.automatica.2016.11.017 +Yakov Z. Tsypkin,A frequency-domain robust instability criterion for time-varying and non-linear systems.,1994,30,Automatica,11,db/journals/automatica/automatica30.html#TsypkinHI94,https://doi.org/10.1016/0005-1098(94)90082-5 +Satoshi Murata,Design of a high gain regulator by the multiple time scale approach.,1990,26,Automatica,3,db/journals/automatica/automatica26.html#MurataAS90,https://doi.org/10.1016/0005-1098(90)90030-L +Johannes Buerger,An active set solver for input-constrained robust receding horizon control.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#BuergerCK14,https://doi.org/10.1016/j.automatica.2013.09.032 +Tomas McKelvey,Vibration data analysis for a commercial aircraft : Multivariable vibration data from an aircraft is analyzed using modern system identification tools. The identified linear vibrational model accurately describes the measured motion.,1996,32,Automatica,12,db/journals/automatica/automatica32.html#McKelveyAL96a,https://doi.org/10.1016/S0005-1098(96)80005-7 +Min Zheng,"Comments on ""Wirtinger-based integral inequality: Application to time-delay systems [Automatica 49 (2013) 2860-2866]"".",2014,50,Automatica,1,db/journals/automatica/automatica50.html#ZhengLF14,https://doi.org/10.1016/j.automatica.2013.09.047 +Mahmut Parlar,Solving dynamic optimization problems on a personal computer using an electronic spreadsheet.,1989,25,Automatica,1,db/journals/automatica/automatica25.html#Parlar89,https://doi.org/10.1016/0005-1098(89)90123-4 +Dennis J. F. Heck,Guaranteeing stable tracking of hybrid position-force trajectories for a robot manipulator interacting with a stiff environment.,2016,63,Automatica,,db/journals/automatica/automatica63.html#HeckSWN16,https://doi.org/10.1016/j.automatica.2015.10.029 +Tamer Basar,Automatica Prize Paper Awards 2008.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#Basar08a,https://doi.org/10.1016/j.automatica.2008.07.001 +Wen-Hua Chen,Optimal control of nonlinear systems: a predictive control approach.,2003,39,Automatica,4,db/journals/automatica/automatica39.html#ChenBG03,https://doi.org/10.1016/S0005-1098(02)00272-8 +Chao Liu 0003,Adaptive Jacobian tracking control of rigid-link electrically driven robots based on visual task-space information.,2006,42,Automatica,9,db/journals/automatica/automatica42.html#LiuCS06,https://doi.org/10.1016/j.automatica.2006.04.022 +Feng Ding 0001,"Author's reply to ""comments on 'identification of Hammerstein nonlinear ARMAX systems'"".",2007,43,Automatica,8,db/journals/automatica/automatica43.html#DingC07a,https://doi.org/10.1016/j.automatica.2007.01.013 +Alessandro De Luca 0001,PD control with on-line gravity compensation for robots with elastic joints: Theory and experiments.,2005,41,Automatica,10,db/journals/automatica/automatica41.html#LucaSZ05,https://doi.org/10.1016/j.automatica.2005.05.009 +Nitendra Nath,Range identification for nonlinear parameterizable paracatadioptric systems.,2010,46,Automatica,7,db/journals/automatica/automatica46.html#NathTD10,https://doi.org/10.1016/j.automatica.2010.03.017 +Samuel Martin,New cut-balance conditions in networks of clusters.,2017,77,Automatica,,db/journals/automatica/automatica77.html#MartinMN17,https://doi.org/10.1016/j.automatica.2016.11.043 +Eugenio Cinquemani,Convexity and convex approximations of discrete-time stochastic control problems with constraints.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#CinquemaniACL11,https://doi.org/10.1016/j.automatica.2011.01.023 +Dawei Shi,Event-based state estimation of linear dynamic systems with unknown exogenous inputs.,2016,69,Automatica,,db/journals/automatica/automatica69.html#ShiCD16,https://doi.org/10.1016/j.automatica.2016.02.031 +Matthew L. Tyler,Performance monitoring of control systems using likelihood methods.,1996,32,Automatica,8,db/journals/automatica/automatica32.html#TylerM96,https://doi.org/10.1016/0005-1098(96)00058-1 +Vijay Gupta,On a stochastic sensor selection algorithm with applications in sensor scheduling and sensor coverage.,2006,42,Automatica,2,db/journals/automatica/automatica42.html#GuptaCHM06,https://doi.org/10.1016/j.automatica.2005.09.016 +Alberto Leva,Self-tuning PI-PID regulators for stable systems with varying delay.,1994,30,Automatica,7,db/journals/automatica/automatica30.html#LevaMS94,https://doi.org/10.1016/0005-1098(94)90212-7 +Vito Cerone,A convex relaxation approach to set-membership identification of LPV systems.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#CeronePR13,https://doi.org/10.1016/j.automatica.2013.05.028 +Gustavo Belforte,Parameter estimation algorithms for a set-membership description of uncertainty.,1990,26,Automatica,5,db/journals/automatica/automatica26.html#BelforteBC90,https://doi.org/10.1016/0005-1098(90)90005-3 +Yinyan Zhang,Perturbing consensus for complexity: A finite-time discrete biased min-consensus under time-delay and asynchronism.,2017,85,Automatica,,db/journals/automatica/automatica85.html#Zhang017a,https://doi.org/10.1016/j.automatica.2017.08.014 +Alexander Yu. Aleksandrov,Stability analysis for a class of switched nonlinear systems.,2011,47,Automatica,10,db/journals/automatica/automatica47.html#AleksandrovCPZ11,https://doi.org/10.1016/j.automatica.2011.08.016 +Yves Rolain,Generating robust starting values for frequency-domain transfer function estimation.,1999,35,Automatica,5,db/journals/automatica/automatica35.html#RolainP99,https://doi.org/10.1016/S0005-1098(98)00237-4 +Orhan Beker,Fundamental properties of reset control systems.,2004,40,Automatica,6,db/journals/automatica/automatica40.html#BekerHCH04,https://doi.org/10.1016/j.automatica.2004.01.004 +George S. Axelby,Multiple anniversaries.,1988,24,Automatica,3,db/journals/automatica/automatica24.html#Axelby88,https://doi.org/10.1016/0005-1098(88)90071-4 +Mahmut Parlar,Efficiency of rolling schedules for a class of stochastic control problems.,1982,18,Automatica,4,db/journals/automatica/automatica18.html#Parlar82,https://doi.org/10.1016/0005-1098(82)90081-4 +Asgeir J. Sørensen,Design of ride control system for surface effect ships using dissipative control.,1995,31,Automatica,2,db/journals/automatica/automatica31.html#SorensenE95,https://doi.org/10.1016/0005-1098(94)00090-6 +Joe H. Chow,Singular perturbation analysis of systems with sustained high frequency oscillations.,1978,14,Automatica,3,db/journals/automatica/automatica14.html#ChowAK78,https://doi.org/10.1016/0005-1098(78)90091-2 +Chun-Yi Su,Combined adaptive and variable structure control for constrained robots.,1995,31,Automatica,3,db/journals/automatica/automatica31.html#SuSL95,https://doi.org/10.1016/0005-1098(94)00119-4 +Charalampos P. Bechlioulis,Adaptive control with guaranteed transient and steady state tracking error bounds for strict feedback systems.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#BechlioulisR09,https://doi.org/10.1016/j.automatica.2008.08.012 +ülle Kotta,Realization of discrete-time nonlinear input-output equations: Polynomial approach.,2012,48,Automatica,2,db/journals/automatica/automatica48.html#KottaT12,https://doi.org/10.1016/j.automatica.2011.07.010 +D. K. Lindner,The generalized hessenberg representation and near aggregation.,1988,24,Automatica,2,db/journals/automatica/automatica24.html#LindnerP88,https://doi.org/10.1016/0005-1098(88)90037-4 +Marcello Farina,Distributed predictive control: A non-cooperative algorithm with neighbor-to-neighbor communication for linear systems.,2012,48,Automatica,6,db/journals/automatica/automatica48.html#FarinaS12,https://doi.org/10.1016/j.automatica.2012.03.020 +John F. Dorsey,Structural archetypes for coherency: A framework for comparing power system equivalents.,1984,20,Automatica,3,db/journals/automatica/automatica20.html#DorseyS84,https://doi.org/10.1016/0005-1098(84)90049-9 +Yu-Chi Ho,Infinitesimal and finite perturbation analysis for queueing networks.,1983,19,Automatica,4,db/journals/automatica/automatica19.html#HoCC83,https://doi.org/10.1016/0005-1098(83)90060-2 +Rainer Palm,Robust control by fuzzy sliding mode.,1994,30,Automatica,9,db/journals/automatica/automatica30.html#Palm94,https://doi.org/10.1016/0005-1098(94)90008-6 +Tianju Sui,Stability of MMSE state estimators over lossy networks using linear coding.,2015,51,Automatica,,db/journals/automatica/automatica51.html#SuiYFM15,https://doi.org/10.1016/j.automatica.2014.10.086 +Guillaume Morel,The precise control of manipulators with high joint-friction using base force/torque sensing.,2000,36,Automatica,7,db/journals/automatica/automatica36.html#MorelID00,https://doi.org/10.1016/S0005-1098(00)00007-8 +Lei Wang 0059,Robust output regulation for invertible nonlinear MIMO systems.,2017,82,Automatica,,db/journals/automatica/automatica82.html#WangILS17,https://doi.org/10.1016/j.automatica.2017.04.049 +Mazen Farhood,Model reduction of periodic systems: a lifting approach.,2005,41,Automatica,6,db/journals/automatica/automatica41.html#FarhoodBD05,https://doi.org/10.1016/j.automatica.2005.01.008 +Wen-an Zhang,Stability analysis for discrete-time switched time-delay systems.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#ZhangY09,https://doi.org/10.1016/j.automatica.2009.05.027 +John B. Moore,On a class of stabilizing partially decentralized controllers.,1989,25,Automatica,6,db/journals/automatica/automatica25.html#MooreX89,https://doi.org/10.1016/0005-1098(89)90059-9 +Tejas R. Mehta,Multi-modal control using adaptive motion description languages.,2008,44,Automatica,7,db/journals/automatica/automatica44.html#MehtaE08,https://doi.org/10.1016/j.automatica.2007.11.024 +Henri Dang Van Mien,Nonlinear state affine identification methods: Applications to electrical power plants.,1984,20,Automatica,2,db/journals/automatica/automatica20.html#MienN84,https://doi.org/10.1016/0005-1098(84)90023-2 +Zidong Wang,Reliable H INFINITY control for discrete-time piecewise linear systems with infinite distributed delays.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#WangWF09,https://doi.org/10.1016/j.automatica.2009.09.012 +Ehsan Peymani,H∞ almost output synchronization for heterogeneous networks of introspective agents under external disturbances.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#PeymaniGSWF14,https://doi.org/10.1016/j.automatica.2013.12.021 +N. Sundararajan,Experimental evaluation of flexible structure identification using lattice filters.,1987,23,Automatica,5,db/journals/automatica/automatica23.html#Sundararajan87,https://doi.org/10.1016/0005-1098(87)90052-5 +Christian Commault,Optimal choice of modes for aggregation.,1981,17,Automatica,2,db/journals/automatica/automatica17.html#Commault81,https://doi.org/10.1016/0005-1098(81)90059-5 +Gyeongbeom Yi,Adaptive model predictive inventory controller for multiproduct warehouse system.,2014,50,Automatica,9,db/journals/automatica/automatica50.html#YiR14,https://doi.org/10.1016/j.automatica.2014.07.022 +Catalin Arghir,Grid-forming control for power converters based on matching of synchronous machines.,2018,95,Automatica,,db/journals/automatica/automatica95.html#ArghirJD18,https://doi.org/10.1016/j.automatica.2018.05.037 +Germain Garcia,The infinite time near optimal decentralized regulator problem for singularly perturbed systems: a convex optimization approach.,2002,38,Automatica,8,db/journals/automatica/automatica38.html#GarciaDB02,https://doi.org/10.1016/S0005-1098(02)00035-3 +Joseph K. Scott,Constrained zonotopes: A new tool for set-based estimation and fault detection.,2016,69,Automatica,,db/journals/automatica/automatica69.html#ScottRMB16,https://doi.org/10.1016/j.automatica.2016.02.036 +Huibert Kwakernaak,A. K. Mahalanabis.,1988,24,Automatica,6,db/journals/automatica/automatica24.html#Kwakernaak88,https://doi.org/10.1016/0005-1098(88)90049-0 +Gert Janssens,Strategic price subsidies for new technologies.,2014,50,Automatica,8,db/journals/automatica/automatica50.html#JanssensZ14,https://doi.org/10.1016/j.automatica.2014.05.017 +Giuseppe Carlo Calafiore,Multi-period portfolio optimization with linear control policies.,2008,44,Automatica,10,db/journals/automatica/automatica44.html#Calafiore08,https://doi.org/10.1016/j.automatica.2008.02.007 +Alessandro Pisano,Switched/time-based adaptation for second-order sliding mode control.,2016,64,Automatica,,db/journals/automatica/automatica64.html#PisanoTF16,https://doi.org/10.1016/j.automatica.2015.11.006 +John S. Reed,Discrete-time decentralized adaptive control.,1988,24,Automatica,3,db/journals/automatica/automatica24.html#ReedI88,https://doi.org/10.1016/0005-1098(88)90084-2 +Jian-Xin Xu 0001,Parallel structure and tuning of a fuzzy PID controller.,2000,36,Automatica,5,db/journals/automatica/automatica36.html#XuHL00,https://doi.org/10.1016/S0005-1098(99)00192-2 +Shibdas Roy,Coherent-classical estimation for linear quantum systems.,2017,82,Automatica,,db/journals/automatica/automatica82.html#RoyPH17,https://doi.org/10.1016/j.automatica.2017.04.034 +Haiming Wang,BB-spline-decomposition-based output tracking with preview for nonminimum-phase linear systems.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#WangKZ13,https://doi.org/10.1016/j.automatica.2013.01.044 +Robert Haber,Structure identification of nonlinear dynamic systems - A survey on input/output approaches.,1990,26,Automatica,4,db/journals/automatica/automatica26.html#HaberU90,https://doi.org/10.1016/0005-1098(90)90044-I +Branko Ristic,Sensor control for multi-object state-space estimation using random finite sets.,2010,46,Automatica,11,db/journals/automatica/automatica46.html#RisticV10,https://doi.org/10.1016/j.automatica.2010.06.045 +Hernan Haimovich,Bounds and invariant sets for a class of switching systems with delayed-state-dependent perturbations.,2013,49,Automatica,3,db/journals/automatica/automatica49.html#HaimovichS13,https://doi.org/10.1016/j.automatica.2012.10.002 +Zachary T. Dydek,Composite adaptive posicast control for a class of LTI plants with known delay.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#DydekASL13,https://doi.org/10.1016/j.automatica.2013.02.065 +Yunpeng Zhu,The effects of linear and nonlinear characteristic parameters on the output frequency responses of nonlinear systems: The associated output frequency response function.,2018,93,Automatica,,db/journals/automatica/automatica93.html#ZhuL18,https://doi.org/10.1016/j.automatica.2018.03.070 +Kaushik Mahata,Computationally efficient estimation of wave propagation functions from 1-D wave experiments on viscoelastic materials.,2004,40,Automatica,5,db/journals/automatica/automatica40.html#MahataSH04,https://doi.org/10.1016/j.automatica.2003.12.015 +Sarangapani Jagannathan,Feedback Linearization using CMAC Neural Networks.,1998,34,Automatica,5,db/journals/automatica/automatica34.html#JagannathanCL98,https://doi.org/10.1016/S0005-1098(97)00206-9 +Francois Chaplais,Two time scaled parameter identification by coordination of local identifiers.,1996,32,Automatica,9,db/journals/automatica/automatica32.html#ChaplaisA96,https://doi.org/10.1016/0005-1098(96)00072-6 +Halil I. Basturk,State derivative feedback for adaptive cancellation of unmatched disturbances in unknown strict-feedback LTI systems.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#BasturkK14,https://doi.org/10.1016/j.automatica.2014.08.002 +Philippe Darondeau,Linear control of live marked graphs.,2003,39,Automatica,3,db/journals/automatica/automatica39.html#DarondeauX03,https://doi.org/10.1016/S0005-1098(02)00266-2 +Guang-Hong Yang,Structural properties of large-scale systems possessing similar structures.,1995,31,Automatica,7,db/journals/automatica/automatica31.html#YangZ95a,https://doi.org/10.1016/0005-1098(95)00013-M +Xu Jin,Iterative learning control for output-constrained systems with both parametric and nonparametric uncertainties.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#JinX13,https://doi.org/10.1016/j.automatica.2013.04.039 +Yi Dong,Flocking with connectivity preservation of multiple double integrator systems subject to external disturbances by a distributed control law.,2015,55,Automatica,,db/journals/automatica/automatica55.html#DongH15,https://doi.org/10.1016/j.automatica.2015.03.006 +Edward J. Hancock,Generalised absolute stability and sum of squares.,2013,49,Automatica,4,db/journals/automatica/automatica49.html#HancockP13,https://doi.org/10.1016/j.automatica.2013.01.006 +Matthew Levitt,Power spectrum identification for quantum linear systems.,2018,90,Automatica,,db/journals/automatica/automatica90.html#LevittGN18,https://doi.org/10.1016/j.automatica.2017.12.037 +Tor Arne Johansen,Approximate explicit receding horizon control of constrained nonlinear systems.,2004,40,Automatica,2,db/journals/automatica/automatica40.html#Johansen04,https://doi.org/10.1016/j.automatica.2003.09.021 +Weisheng Chen,"Authors' reply to ""Comments on 'Finite-time stability theorem of stochastic nonlinear systems [Automatica 46 (2010) 2105-2108]""'.",2011,47,Automatica,7,db/journals/automatica/automatica47.html#ChenJ11,https://doi.org/10.1016/j.automatica.2011.02.053 +Petar V. Kokotovic,Recent trends in feedback design: An overview.,1985,21,Automatica,3,db/journals/automatica/automatica21.html#Kokotovic85,https://doi.org/10.1016/0005-1098(85)90056-1 +Torben Knudsen,Consistency analysis of subspace identification methods based on a linear regression approach.,2001,37,Automatica,1,db/journals/automatica/automatica37.html#Knudsen01,https://doi.org/10.1016/S0005-1098(00)00125-4 +Yan-Jun Liu,Barrier Lyapunov functions for Nussbaum gain adaptive control of full state constrained nonlinear systems.,2017,76,Automatica,,db/journals/automatica/automatica76.html#LiuT17,https://doi.org/10.1016/j.automatica.2016.10.011 +Erik V. Bohn,Consistent parameter estimation in multi-input multi-output discrete systems.,1977,13,Automatica,3,db/journals/automatica/automatica13.html#BohnB77,https://doi.org/10.1016/0005-1098(77)90057-7 +Francisco Javier Muros,Networked control design for coalitional schemes using game-theoretic methods.,2017,78,Automatica,,db/journals/automatica/automatica78.html#MurosMAAC17,https://doi.org/10.1016/j.automatica.2016.12.010 +Henrik Anfinsen,Estimation of boundary parameters in general heterodirectional linear hyperbolic systems.,2017,79,Automatica,,db/journals/automatica/automatica79.html#AnfinsenDAK17,https://doi.org/10.1016/j.automatica.2017.01.015 +Mazen Alamir,Stability of a truncated infinite constrained receding horizon scheme: the general discrete nonlinear case.,1995,31,Automatica,9,db/journals/automatica/automatica31.html#AlamirB95,https://doi.org/10.1016/0005-1098(95)00042-U +Diego Eckhard,Cost function shaping of the output error criterion.,2017,76,Automatica,,db/journals/automatica/automatica76.html#EckhardBRH17,https://doi.org/10.1016/j.automatica.2016.10.015 +Gang Zheng,Design of interval observer for a class of uncertain unobservable nonlinear systems.,2016,63,Automatica,,db/journals/automatica/automatica63.html#ZhengEP16,https://doi.org/10.1016/j.automatica.2015.10.007 +Z. H. Liu,Asymptotic Lyapunov stability with probability one of quasi-integrable Hamiltonian systems with delayed feedback control.,2008,44,Automatica,7,db/journals/automatica/automatica44.html#LiuZ08a,https://doi.org/10.1016/j.automatica.2007.10.038 +Pradeep Misra,Time-invariant representation of discrete periodic systems.,1996,32,Automatica,2,db/journals/automatica/automatica32.html#Misra96,https://doi.org/10.1016/0005-1098(96)85558-0 +Andreas Svensson,A flexible state-space model for learning nonlinear dynamical systems.,2017,80,Automatica,,db/journals/automatica/automatica80.html#SvenssonS17,https://doi.org/10.1016/j.automatica.2017.02.030 +Emilia Fridman,On reachable sets for linear systems with delay and bounded peak inputs.,2003,39,Automatica,11,db/journals/automatica/automatica39.html#FridmanS03,https://doi.org/10.1016/S0005-1098(03)00204-8 +Mesut E. Sezer,On decentralized stabilization and structure of linear large scale systems.,1981,17,Automatica,4,db/journals/automatica/automatica17.html#SezerS81,https://doi.org/10.1016/0005-1098(81)90037-6 +Tengfei Liu,Distributed formation control of nonholonomic mobile robots without global position measurements.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#LiuJ13,https://doi.org/10.1016/j.automatica.2012.11.031 +Yusuke Fujimoto,Informative input design for Kernel-Based system identification.,2018,89,Automatica,,db/journals/automatica/automatica89.html#FujimotoS18,https://doi.org/10.1016/j.automatica.2017.11.019 +Engin Yaz,Parametrization of all linear compensators for discrete-time stochastic parameter systems.,1994,30,Automatica,6,db/journals/automatica/automatica30.html#YazS94,https://doi.org/10.1016/0005-1098(94)90189-9 +Miroslav Krstic,Stability of extremum seeking feedback for general nonlinear dynamic systems.,2000,36,Automatica,4,db/journals/automatica/automatica36.html#KrsticW00,https://doi.org/10.1016/S0005-1098(99)00183-1 +Alberto Bemporad,The explicit linear quadratic regulator for constrained systems.,2002,38,Automatica,1,db/journals/automatica/automatica38.html#BemporadMDP02,https://doi.org/10.1016/S0005-1098(01)00174-1 +Alireza Khosravian,Observers for invariant systems on Lie groups with biased input measurements and homogeneous outputs.,2015,55,Automatica,,db/journals/automatica/automatica55.html#KhosravianTML15,https://doi.org/10.1016/j.automatica.2015.02.030 +Fu-Shiung Hsieh,Model and control holonic manufacturing systems based on fusion of contract nets and Petri nets.,2004,40,Automatica,1,db/journals/automatica/automatica40.html#Hsieh04,https://doi.org/10.1016/j.automatica.2003.07.008 +Tong Zhou,Unfalsified plant model parameterization from closed-loop experimental data.,1997,33,Automatica,5,db/journals/automatica/automatica33.html#Zhou97,https://doi.org/10.1016/S0005-1098(96)00235-X +Lixian Zhang,Mode-dependent Hinfinity filtering for discrete-time Markovian jump linear systems with partly unknown transition probabilities.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#ZhangB09a,https://doi.org/10.1016/j.automatica.2009.02.002 +Hebertt Sira-Ramírez,Passivity-based controllers for the stabilization of Dc-to-Dc Power converters.,1997,33,Automatica,4,db/journals/automatica/automatica33.html#Sira-RamirezPOG97,https://doi.org/10.1016/S0005-1098(96)00207-5 +Hui Yu,Adaptive consensus of multi-agents in networks with jointly connected topologies.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#YuX12,https://doi.org/10.1016/j.automatica.2012.05.068 +Junyu Zhang,Continuous-time Markov decision processes with nth-bias optimality criteria.,2009,45,Automatica,7,db/journals/automatica/automatica45.html#ZhangC09,https://doi.org/10.1016/j.automatica.2009.03.009 +Violet B. Haas,Reduced order state estimation for linear systems with exact measurements.,1984,20,Automatica,2,db/journals/automatica/automatica20.html#Haas84,https://doi.org/10.1016/0005-1098(84)90029-3 +Merid Ljesnjanin,Robust stability of a class of Networked Control Systems.,2016,73,Automatica,,db/journals/automatica/automatica73.html#LjesnjaninNQ16,https://doi.org/10.1016/j.automatica.2016.06.026 +Liuping Wang,Frequency-sampling filters: An improved model structure for step-response identification.,1997,33,Automatica,5,db/journals/automatica/automatica33.html#WangC97,https://doi.org/10.1016/S0005-1098(96)00251-8 +Jens Rasmussen,Decision support in supervisory control of high-risk industrial systems.,1987,23,Automatica,5,db/journals/automatica/automatica23.html#RasmussenG87,https://doi.org/10.1016/0005-1098(87)90064-1 +Xiaojing Shen,Globally optimal flight path update with adding or removing out-of-sequence measurements.,2010,46,Automatica,9,db/journals/automatica/automatica46.html#ShenLZSY10,https://doi.org/10.1016/j.automatica.2010.06.023 +Lukasz Balbus,Existence of perfect equilibria in a class of multigenerational stochastic games of capital accumulation.,2008,44,Automatica,6,db/journals/automatica/automatica44.html#BalbusN08,https://doi.org/10.1016/j.automatica.2008.03.001 +Eloy García,Active target defense using first order missile models.,2017,78,Automatica,,db/journals/automatica/automatica78.html#GarciaCP17,https://doi.org/10.1016/j.automatica.2016.12.032 +Yutao Tang,Distributed output regulation for a class of nonlinear multi-agent systems with unknown-input leaders.,2015,62,Automatica,,db/journals/automatica/automatica62.html#TangHW15,https://doi.org/10.1016/j.automatica.2015.09.014 +Ying Tan 0001,On reference governor in iterative learning control for dynamic systems with input saturation.,2011,47,Automatica,11,db/journals/automatica/automatica47.html#TanXNF11,https://doi.org/10.1016/j.automatica.2011.08.024 +Jonathan H. Friedman,Worst-case and average H2 performance analysis against real constant parametric uncertainty.,1995,31,Automatica,4,db/journals/automatica/automatica31.html#FriedmanKK95,https://doi.org/10.1016/0005-1098(95)98497-T +Mathieu Claeys,Modal occupation measures and LMI relaxations for nonlinear switched systems control.,2016,64,Automatica,,db/journals/automatica/automatica64.html#ClaeysDH16,https://doi.org/10.1016/j.automatica.2015.11.003 +Yongru Gu,On Delay-Dependent Stability and Decay Estimate for Uncertain Systems with Time-Varying Delay.,1998,34,Automatica,8,db/journals/automatica/automatica34.html#GuWLCQ98,https://doi.org/10.1016/S0005-1098(98)00045-4 +George S. Axelby,Control frontiers in knowledge based and man-machine systems.,1983,19,Automatica,6,db/journals/automatica/automatica19.html#Axelby83c,https://doi.org/10.1016/0005-1098(83)90021-3 +Jan C. Willems,Lyapunov functions for diagonally dominant systems.,1976,12,Automatica,5,db/journals/automatica/automatica12.html#Willems76,https://doi.org/10.1016/0005-1098(76)90011-X +Jean-Yves Keller,Reduced-Order Kalman Filter with Unknown Inputs.,1998,34,Automatica,11,db/journals/automatica/automatica34.html#KellerD98,https://doi.org/10.1016/S0005-1098(98)00094-6 +Jun Yang 0011,Global output regulation for a class of lower triangular nonlinear systems: A feedback domination approach.,2017,76,Automatica,,db/journals/automatica/automatica76.html#YangD17,https://doi.org/10.1016/j.automatica.2016.11.008 +George S. Axelby,The IFAC-one-publisher scheme.,1977,13,Automatica,2,db/journals/automatica/automatica13.html#Axelby77a,https://doi.org/10.1016/0005-1098(77)90035-8 +Timothy J. Graettinger,On the computation of reference signal constraints for guaranteed tracking performance.,1992,28,Automatica,6,db/journals/automatica/automatica28.html#GraettingerK92,https://doi.org/10.1016/0005-1098(92)90055-K +Roland Longchamp,Singular perturbation analysis of a receding horizon controller.,1983,19,Automatica,3,db/journals/automatica/automatica19.html#Longchamp83,https://doi.org/10.1016/0005-1098(83)90108-5 +Hüseyin Akçay,Rational Basis Functions for Robust Identification from Frequency and Time-Domain Measurements.,1998,34,Automatica,9,db/journals/automatica/automatica34.html#AkcayN98,https://doi.org/10.1016/S0005-1098(98)00052-1 +Mingyue Cui,Output feedback tracking control of stochastic Lagrangian systems and its application.,2014,50,Automatica,5,db/journals/automatica/automatica50.html#CuiWX14,https://doi.org/10.1016/j.automatica.2014.03.001 +Mohammad Saleh Tavazoei,A note on fractional-order derivatives of periodic functions.,2010,46,Automatica,5,db/journals/automatica/automatica46.html#Tavazoei10,https://doi.org/10.1016/j.automatica.2010.02.023 +Gerald J. Bierman,Numerical comparison of kalman filter algorithms: Orbit determination case study.,1977,13,Automatica,1,db/journals/automatica/automatica13.html#BiermanT77,https://doi.org/10.1016/0005-1098(77)90006-1 +Wei Chen,Stabilization of networked control systems with multirate sampling.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#ChenQ13,https://doi.org/10.1016/j.automatica.2013.02.010 +Ernst Dieter Gilles,Structural theory of distributed systems: A. G. Butkovskiy.,1985,21,Automatica,2,db/journals/automatica/automatica21.html#GillesK85,https://doi.org/10.1016/0005-1098(85)90117-7 +Michele Pavon,Suboptimal Markovian smoothing estimates based on continuous curves of solutions of the algebraic Riccati inequality.,2002,38,Automatica,6,db/journals/automatica/automatica38.html#PavonW02,https://doi.org/10.1016/S0005-1098(02)00019-5 +Franco Blanchini,Modal and transition dwell time computation in switching systems: A set-theoretic approach.,2010,46,Automatica,9,db/journals/automatica/automatica46.html#BlanchiniCM10,https://doi.org/10.1016/j.automatica.2010.06.006 +Ricardo Julián Mantz,VSS global performance improvement based on AW concepts.,2005,41,Automatica,6,db/journals/automatica/automatica41.html#MantzBB05,https://doi.org/10.1016/j.automatica.2005.01.007 +Haruhiko Asada,Robot analysis and control.,1988,24,Automatica,2,db/journals/automatica/automatica24.html#AsadaS88,https://doi.org/10.1016/0005-1098(88)90042-8 +Gjerrit Meinsma,Unstable and nonproper weights in H∞ control.,1995,31,Automatica,11,db/journals/automatica/automatica31.html#Meinsma95,https://doi.org/10.1016/0005-1098(95)00086-C +E. Fredriksen,Global kappa-exponential way-point maneuvering of ships: Theory and experiments.,2006,42,Automatica,4,db/journals/automatica/automatica42.html#FredriksenP06,https://doi.org/10.1016/j.automatica.2005.12.020 +Rolf Isermann,Intelligent actuators - Ways to autonomous actuating systems.,1993,29,Automatica,5,db/journals/automatica/automatica29.html#IsermannR93,https://doi.org/10.1016/0005-1098(93)90052-U +Vladimir J. Lumelsky,Dynamic path planning for a planar articulated robot arm moving amidst unknown obstacles.,1987,23,Automatica,5,db/journals/automatica/automatica23.html#Lumelsky87,https://doi.org/10.1016/0005-1098(87)90051-3 +Rohan C. Shekhar,Optimal move blocking strategies for model predictive control.,2015,61,Automatica,,db/journals/automatica/automatica61.html#ShekharM15,https://doi.org/10.1016/j.automatica.2015.07.030 +Paul M. J. Van den Hof,Model sets and parametrizations for identification of multivariable equation error models.,1994,30,Automatica,3,db/journals/automatica/automatica30.html#Hof94,https://doi.org/10.1016/0005-1098(94)90120-1 +Sebastian Trip,An internal model approach to (optimal) frequency regulation in power grids with time-varying voltages.,2016,64,Automatica,,db/journals/automatica/automatica64.html#TripBP16,https://doi.org/10.1016/j.automatica.2015.11.021 +Mihajlo D. Mesarovic,Synthesis of interaction in multivariable control systems.,1964,2,Automatica,1,db/journals/automatica/automatica2.html#MesarovicB64,https://doi.org/10.1016/0005-1098(64)90004-4 +Mattia Zorzi,On the estimation of structured covariance matrices.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#ZorziF12,https://doi.org/10.1016/j.automatica.2012.05.057 +L. G. van Willigenburg,Optimal reduced-order compensation of time-varying discrete-time systems with deterministic and white parameters.,1999,35,Automatica,1,db/journals/automatica/automatica35.html#WilligenburgK99,https://doi.org/10.1016/S0005-1098(98)00138-1 +Timothy L. Molloy,Finite-horizon inverse optimal control for discrete-time nonlinear systems.,2018,87,Automatica,,db/journals/automatica/automatica87.html#MolloyFP18,https://doi.org/10.1016/j.automatica.2017.09.023 +Bartlomiej Sulikowski,PI control of discrete linear repetitive processes.,2006,42,Automatica,5,db/journals/automatica/automatica42.html#SulikowskiGRO06,https://doi.org/10.1016/j.automatica.2006.01.012 +René Vidal,Recursive identification of switched ARX systems.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#Vidal08,https://doi.org/10.1016/j.automatica.2008.01.025 +Robert Schmid,A unified method for optimal arbitrary pole placement.,2014,50,Automatica,8,db/journals/automatica/automatica50.html#SchmidNNP14,https://doi.org/10.1016/j.automatica.2014.06.006 +René David,Petri nets for modeling of dynamic systems: A survey.,1994,30,Automatica,2,db/journals/automatica/automatica30.html#DavidA94,https://doi.org/10.1016/0005-1098(94)90024-8 +Ian R. Petersen,Cascade cavity realization for a class of complex transfer functions arising in coherent quantum feedback control.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#Petersen11a,https://doi.org/10.1016/j.automatica.2011.03.006 +Douglas P. Looze,Realization of systems with CCD-based measurements.,2005,41,Automatica,11,db/journals/automatica/automatica41.html#Looze05,https://doi.org/10.1016/j.automatica.2005.05.022 +Hung Gia Hoang,Sensor management for multi-target tracking via multi-Bernoulli filtering.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#HoangV14,https://doi.org/10.1016/j.automatica.2014.02.007 +Didier Henrion,Positive polynomial matrices and improved LMI robustness conditions.,2003,39,Automatica,8,db/journals/automatica/automatica39.html#HenrionAP03,https://doi.org/10.1016/S0005-1098(03)00129-8 +Yacov Y. Haimes,Systems and control encyclopedia : Edited by Madan G. Singh.,1988,24,Automatica,6,db/journals/automatica/automatica24.html#Haimes88,https://doi.org/10.1016/0005-1098(88)90063-5 +Feng Xiao 0002,Connectivity preservation for multi-agent rendezvous with link failure.,2012,48,Automatica,1,db/journals/automatica/automatica48.html#XiaoWC12,https://doi.org/10.1016/j.automatica.2011.09.027 +Dieky Adzkiya,Computational techniques for reachability analysis of Max-Plus-Linear systems.,2015,53,Automatica,,db/journals/automatica/automatica53.html#AdzkiyaSA15,https://doi.org/10.1016/j.automatica.2015.01.002 +Biqing Wu,Multi-channel active noise control for periodic sources - indirect approach.,2004,40,Automatica,2,db/journals/automatica/automatica40.html#WuB04,https://doi.org/10.1016/j.automatica.2003.09.014 +Erik Frisk,Lowering orders of derivatives in non-linear residual generation using realization theory.,2005,41,Automatica,10,db/journals/automatica/automatica41.html#FriskA05,https://doi.org/10.1016/j.automatica.2005.04.022 +Christopher Edwards,An anti-windup scheme with closed-loop stability considerations.,1999,35,Automatica,4,db/journals/automatica/automatica35.html#EdwardsP99,https://doi.org/10.1016/S0005-1098(98)00225-8 +Rong Su,Supervisor synthesis to thwart cyber attack with bounded sensor reading alterations.,2018,94,Automatica,,db/journals/automatica/automatica94.html#Su18,https://doi.org/10.1016/j.automatica.2018.04.006 +Chung Choo Chung,Nonlinear control of a swinging pendulum.,1995,31,Automatica,6,db/journals/automatica/automatica31.html#ChungH95,https://doi.org/10.1016/0005-1098(94)00148-C +Frédéric Hamelin,Robust fault detection in uncertain dynamic systems.,2000,36,Automatica,11,db/journals/automatica/automatica36.html#HamelinS00,https://doi.org/10.1016/S0005-1098(00)00101-1 +Jinya Su,"Further results on ""Reduced order disturbance observer for discrete-time linear systems"".",2018,93,Automatica,,db/journals/automatica/automatica93.html#SuC18a,https://doi.org/10.1016/j.automatica.2018.04.032 +Eva Trulsson,Adaptive control based on explicit criterion minimization.,1985,21,Automatica,4,db/journals/automatica/automatica21.html#TrulssonL85,https://doi.org/10.1016/0005-1098(85)90075-5 +Walter Murray Wonham,Geometric state-space theory in linear multivariable control: A status report.,1979,15,Automatica,1,db/journals/automatica/automatica15.html#Wonham79,https://doi.org/10.1016/0005-1098(79)90083-9 +Xiao Yan,Multilevel-based topology design and shape control of robot swarms.,2012,48,Automatica,12,db/journals/automatica/automatica48.html#YanCS12,https://doi.org/10.1016/j.automatica.2012.08.019 +Alexander Medvedev,Elementwise decoupling and convergence of the Riccati equation in the SG algorithm.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#MedvedevE09,https://doi.org/10.1016/j.automatica.2009.02.010 +K. D. Do,Formation control of underactuated ships with elliptical shape approximation and limited communication ranges.,2012,48,Automatica,7,db/journals/automatica/automatica48.html#Do12a,https://doi.org/10.1016/j.automatica.2011.11.013 +Ernst Presman,Optimal feedback production planning in a stochastic N-machine flowshop.,1995,31,Automatica,9,db/journals/automatica/automatica31.html#PresmanSZ95,https://doi.org/10.1016/0005-1098(95)00040-4 +Hoda Sadeghian,On the linear-quadratic regulator problem in one-dimensional linear fractional stochastic systems.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#SadeghianSAM14,https://doi.org/10.1016/j.automatica.2013.09.003 +Han Zhang,Consensus control for linear systems with optimal energy cost.,2018,93,Automatica,,db/journals/automatica/automatica93.html#ZhangH18,https://doi.org/10.1016/j.automatica.2018.03.044 +Chaoxu Mu,Novel iterative neural dynamic programming for data-based approximate optimal control design.,2017,81,Automatica,,db/journals/automatica/automatica81.html#MuWH17,https://doi.org/10.1016/j.automatica.2017.03.022 +Alexander Lanzon,Selection of a single uniquely specifiable I controller in the chain-scattering framework.,2004,40,Automatica,6,db/journals/automatica/automatica40.html#LanzonAB04,https://doi.org/10.1016/j.automatica.2004.01.013 +Yanlong Zhao,Erratum to: Identification of Wiener systems with binary-valued output observations.,2008,44,Automatica,7,db/journals/automatica/automatica44.html#ZhaoWYZ08,https://doi.org/10.1016/j.automatica.2007.10.002 +Dabo Xu,Global robust stabilization of nonlinear cascaded systems with integral ISS dynamic uncertainties.,2017,80,Automatica,,db/journals/automatica/automatica80.html#XuCW17,https://doi.org/10.1016/j.automatica.2017.02.023 +F. A. G. Dumortier,Theory and practice of recursive identification: Lennart Ljung and Torsten Söderström.,1985,21,Automatica,4,db/journals/automatica/automatica21.html#Dumortier85,https://doi.org/10.1016/0005-1098(85)90088-3 +Y. William Wang,H2-suboptimal stable stabilization.,1994,30,Automatica,11,db/journals/automatica/automatica30.html#WangB94,https://doi.org/10.1016/0005-1098(94)90085-X +Louis R. Hunt,Stable inversion for nonlinear systems.,1997,33,Automatica,8,db/journals/automatica/automatica33.html#HuntM97,https://doi.org/10.1016/S0005-1098(97)00064-2 +Tadeusz P. Dobrowiecki,Measuring a linear approximation to weakly nonlinear MIMO systems.,2007,43,Automatica,10,db/journals/automatica/automatica43.html#DobrowieckiS07,https://doi.org/10.1016/j.automatica.2007.03.007 +Ivan Malloci,Bumpless transfer for switched linear systems.,2012,48,Automatica,7,db/journals/automatica/automatica48.html#MallociHDIS12,https://doi.org/10.1016/j.automatica.2012.05.027 +Parijat Bhowmick,An observer-based control scheme using negative-imaginary theory.,2017,81,Automatica,,db/journals/automatica/automatica81.html#BhowmickP17,https://doi.org/10.1016/j.automatica.2017.03.024 +Chunhe Hu,"Comments on ""Input-to-state stability of hybrid systems with receding horizon control in the presence of packet dropouts"" [Automatica 48 (2012) 1920-1923].",2014,50,Automatica,9,db/journals/automatica/automatica50.html#Hu14,https://doi.org/10.1016/j.automatica.2014.07.006 +David S. Bayard,Automated on-orbit frequency domain identification for large space structures.,1991,27,Automatica,6,db/journals/automatica/automatica27.html#BayardHYSMM91,https://doi.org/10.1016/0005-1098(91)90129-P +Katrina Lau,Properties of modulated and demodulated systems with implications to feedback limitations.,2005,41,Automatica,12,db/journals/automatica/automatica41.html#LauGM05,https://doi.org/10.1016/j.automatica.2005.07.009 +Weilin Wang,Optimal sensor activation for diagnosing discrete event systems.,2010,46,Automatica,7,db/journals/automatica/automatica46.html#WangLGL10,https://doi.org/10.1016/j.automatica.2010.04.004 +Mats Viberg,Subspace-based methods for the identification of linear time-invariant systems.,1995,31,Automatica,12,db/journals/automatica/automatica31.html#Viberg95,https://doi.org/10.1016/0005-1098(95)00107-5 +Gianluca Meneghello,A probabilistic framework for the control of systems with discrete states and stochastic excitation.,2018,88,Automatica,,db/journals/automatica/automatica88.html#MeneghelloLB18,https://doi.org/10.1016/j.automatica.2017.11.001 +Meng Joo Er,Design of reduced-order multirate output linear functional observer-based compensators.,1995,31,Automatica,2,db/journals/automatica/automatica31.html#ErA95,https://doi.org/10.1016/0005-1098(94)00063-O +Jonathan Chauvin,Reconstruction of the Fourier expansion of inputs of linear time-varying systems.,2010,46,Automatica,2,db/journals/automatica/automatica46.html#ChauvinP10,https://doi.org/10.1016/j.automatica.2009.11.001 +Fabrice Le Bars,Set-membership state estimation with fleeting data.,2012,48,Automatica,2,db/journals/automatica/automatica48.html#BarsSJR12,https://doi.org/10.1016/j.automatica.2011.11.004 +Jan H. van Schuppen,Jump linear systems in automatic control : M. Mariton.,1992,28,Automatica,6,db/journals/automatica/automatica28.html#Schuppen92,https://doi.org/10.1016/0005-1098(92)90075-Q +Le Yi Wang,Asymptotically efficient parameter estimation using quantized output observations.,2007,43,Automatica,7,db/journals/automatica/automatica43.html#WangY07,https://doi.org/10.1016/j.automatica.2006.12.030 +Ali A. Zaidi,On optimal policies for control and estimation over a Gaussian relay channel.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#ZaidiYOS13,https://doi.org/10.1016/j.automatica.2013.06.011 +Samira S. Farahani,On optimization of stochastic max-min-plus-scaling systems - An approximation approach.,2017,83,Automatica,,db/journals/automatica/automatica83.html#FarahaniBS17,https://doi.org/10.1016/j.automatica.2017.05.001 +Vaibhav Katewa,On a rate control protocol for networked estimation.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#KatewaG13,https://doi.org/10.1016/j.automatica.2013.01.050 +Biao Lu,Modeling and nonlinear coordination control for an underactuated dual overhead crane system.,2018,91,Automatica,,db/journals/automatica/automatica91.html#LuFS18,https://doi.org/10.1016/j.automatica.2018.01.008 +Gang Feng 0001,An approach to H∞ control of a class of nonlinear systems.,1996,32,Automatica,10,db/journals/automatica/automatica32.html#FengCR96,https://doi.org/10.1016/0005-1098(96)00100-8 +Claudia Califano,Linearization of time-delay systems by input-output injection and output transformation.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#CalifanoMM13,https://doi.org/10.1016/j.automatica.2013.03.001 +Benjamin Kuipers,The composition and validation of heterogeneous control laws.,1994,30,Automatica,2,db/journals/automatica/automatica30.html#KuipersA94,https://doi.org/10.1016/0005-1098(94)90027-2 +M. J. Grimble,Relationship between internal model control and LQG controller structures.,1989,25,Automatica,1,db/journals/automatica/automatica25.html#GrimbleSH89,https://doi.org/10.1016/0005-1098(89)90118-0 +Kunihisa Okano,Stabilization of uncertain systems using quantized and lossy observations and uncertain control inputs.,2017,81,Automatica,,db/journals/automatica/automatica81.html#OkanoI17,https://doi.org/10.1016/j.automatica.2017.03.036 +Hyungbo Shim,A system theoretic study on a treatment of AIDS patient by achieving long-term non-progressor.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#ShimJCS09,https://doi.org/10.1016/j.automatica.2008.09.021 +Naresh K. Sinha,Recursive estimation and time-series analysis: An introduction: Peter Young.,1986,22,Automatica,3,db/journals/automatica/automatica22.html#Sinha86,https://doi.org/10.1016/0005-1098(86)90042-7 +Jonathan Chauvin,Periodic input estimation for linear periodic systems: Automotive engine applications.,2007,43,Automatica,6,db/journals/automatica/automatica43.html#ChauvinCPR07,https://doi.org/10.1016/j.automatica.2006.12.012 +Jian Wang,Asymptotic stabilization of continuous-time linear systems with quantized state feedback.,2018,88,Automatica,,db/journals/automatica/automatica88.html#Wang18,https://doi.org/10.1016/j.automatica.2017.11.027 +Youfeng Su,Cooperative global output regulation of heterogeneous second-order nonlinear uncertain multi-agent systems.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#SuH13,https://doi.org/10.1016/j.automatica.2013.08.001 +R. M. J. Withers,Work of the social effects of automation committee from bad boll to enschede.,1978,14,Automatica,2,db/journals/automatica/automatica14.html#WithersR78,https://doi.org/10.1016/0005-1098(78)90028-6 +Vladimir Suplin,Sampled-data Hinfinity control and filtering: Nonuniform uncertain sampling.,2007,43,Automatica,6,db/journals/automatica/automatica43.html#SuplinFS07,https://doi.org/10.1016/j.automatica.2006.11.024 +Changchun Hua,Smooth dynamic output feedback control for multiple time-delay systems with nonlinear uncertainties.,2016,68,Automatica,,db/journals/automatica/automatica68.html#HuaG16,https://doi.org/10.1016/j.automatica.2016.01.007 +Jiahu Qin,Exponential consensus of general linear multi-agent systems under directed dynamic topology.,2014,50,Automatica,9,db/journals/automatica/automatica50.html#QinY14,https://doi.org/10.1016/j.automatica.2014.07.009 +Ruth F. Curtain,Functional analysis and linear control theory : J. R. Leigh.,1983,19,Automatica,1,db/journals/automatica/automatica19.html#Curtain83,https://doi.org/10.1016/0005-1098(83)90082-1 +Yunlei Zou,Kalman decomposition for Boolean control networks.,2015,54,Automatica,,db/journals/automatica/automatica54.html#ZouZ15a,https://doi.org/10.1016/j.automatica.2015.01.023 +Miad Moarref,Stability and stabilization of linear sampled-data systems with multi-rate samplers and time driven zero order holds.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#MoarrefR14,https://doi.org/10.1016/j.automatica.2014.08.037 +Peter M. Young,Robustness analysis with full-structured uncertainties.,1997,33,Automatica,12,db/journals/automatica/automatica33.html#Young97,https://doi.org/10.1016/S0005-1098(97)00138-6 +Stanoje P. Bingulac,Simultaneous generation of sensitivity functions - Transfer function matrix approach.,1988,24,Automatica,2,db/journals/automatica/automatica24.html#BingulacCW88,https://doi.org/10.1016/0005-1098(88)90032-5 +Christopher Edwards,On discrete dynamic output feedback min-max controllers.,2005,41,Automatica,10,db/journals/automatica/automatica41.html#EdwardsLS05,https://doi.org/10.1016/j.automatica.2005.05.003 +Romeo Ortega,A note on direct adaptive control of systems with bounded disturbances.,1987,23,Automatica,2,db/journals/automatica/automatica23.html#OrtegaL87,https://doi.org/10.1016/0005-1098(87)90101-4 +Hamid Beigy,Asynchronous cellular learning automata.,2008,44,Automatica,5,db/journals/automatica/automatica44.html#BeigyM08,https://doi.org/10.1016/j.automatica.2007.09.018 +Imad M. Jaimoukha,A matrix factorization solution to the I fault detection problem.,2006,42,Automatica,11,db/journals/automatica/automatica42.html#JaimoukhaLP06,https://doi.org/10.1016/j.automatica.2006.06.002 +Efstratios Skafidas,Stability results for switched controller systems.,1999,35,Automatica,4,db/journals/automatica/automatica35.html#SkafidasESP99,https://doi.org/10.1016/S0005-1098(98)00167-8 +Zalman J. Palmor,On the design and properties of multivariable dead time compensators.,1983,19,Automatica,3,db/journals/automatica/automatica19.html#PalmorH83,https://doi.org/10.1016/0005-1098(83)90102-4 +S. Kotob,Analysis and applications of self-tuning controls in a refining process: Case study.,1994,30,Automatica,11,db/journals/automatica/automatica30.html#KotobBAJ94,https://doi.org/10.1016/0005-1098(94)90070-1 +H. A. Spang III,"A look at the IFAC/IFIP toronto symposium on ""Digital control of large industrial systems"".",1969,5,Automatica,2,db/journals/automatica/automatica5.html#Spang69,https://doi.org/10.1016/0005-1098(69)90005-3 +Wei Feng,Stability analysis of switched stochastic systems.,2011,47,Automatica,1,db/journals/automatica/automatica47.html#FengTZ11,https://doi.org/10.1016/j.automatica.2010.10.023 +K. Birmiwal,Dual control guidance for simultaneous identification and interception.,1984,20,Automatica,6,db/journals/automatica/automatica20.html#BirmiwalB84,https://doi.org/10.1016/0005-1098(84)90083-9 +S. A. Barton,Two-dimensional movement controlled by a chaotic neural network.,1995,31,Automatica,8,db/journals/automatica/automatica31.html#Barton95,https://doi.org/10.1016/0005-1098(95)00017-Q +Selim Solmaz,A design methodology for switched discrete time linear systems with applications to automotive roll dynamics control.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#SolmazSWC08,https://doi.org/10.1016/j.automatica.2008.01.014 +Tomomichi Hagiwara,Upper and lower bounds of the frequency response gain of sampled-data systems.,2001,37,Automatica,9,db/journals/automatica/automatica37.html#HagiwaraSA01,https://doi.org/10.1016/S0005-1098(01)00076-0 +ömer Morgül,Dynamic boundary control of the timoshenko beam.,1992,28,Automatica,6,db/journals/automatica/automatica28.html#Morgul92,https://doi.org/10.1016/0005-1098(92)90070-V +Panos Brezas,A clipped-optimal control algorithm for semi-active vehicle suspensions: Theory and experimental evaluation.,2015,53,Automatica,,db/journals/automatica/automatica53.html#BrezasSH15,https://doi.org/10.1016/j.automatica.2014.12.026 +Shaunak Dattaprasad Bopardikar,Randomized sampling for large zero-sum games.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#BopardikarBHPB13,https://doi.org/10.1016/j.automatica.2013.01.062 +Raheleh Nazari,Actuator fault tolerant control of systems with polytopic uncertainties using set-based diagnosis and virtual-actuator-based reconfiguration.,2017,75,Automatica,,db/journals/automatica/automatica75.html#NazariSD17,https://doi.org/10.1016/j.automatica.2016.09.012 +Yunmin Zhu,The optimality for the distributed Kalman filtering fusion with feedback.,2001,37,Automatica,9,db/journals/automatica/automatica37.html#ZhuYZZL01,https://doi.org/10.1016/S0005-1098(01)00074-7 +Miomir Vukobratovic,Contribution to the decoupled control of large-scale mechanical systems.,1980,16,Automatica,1,db/journals/automatica/automatica16.html#VukobratovicS80,https://doi.org/10.1016/0005-1098(80)90082-5 +R. Doraiswami,A novel narrow band digital filter and its application to multivariable system identification.,1986,22,Automatica,6,db/journals/automatica/automatica22.html#DoraiswamiJB86,https://doi.org/10.1016/0005-1098(86)90012-9 +Ruijun Zhu,"Comments on ""Robust stabilization of MIMO nonlinear time-varying mismatched uncertain systems"".",2001,37,Automatica,6,db/journals/automatica/automatica37.html#ZhuPH01,https://doi.org/10.1016/S0005-1098(01)00039-5 +Claudio Altafini,Signed bounded confidence models for opinion dynamics.,2018,93,Automatica,,db/journals/automatica/automatica93.html#AltafiniC18,https://doi.org/10.1016/j.automatica.2018.03.064 +Torsten Söderström,On the accuracy of a covariance matching method for continuous-time errors-in-variables identification.,2013,49,Automatica,10,db/journals/automatica/automatica49.html#SoderstromIMZ13,https://doi.org/10.1016/j.automatica.2013.07.010 +Kun Liu,Generalized Jensen inequalities with application to stability analysis of systems with distributed delays over infinite time-horizons.,2016,69,Automatica,,db/journals/automatica/automatica69.html#LiuFJX16,https://doi.org/10.1016/j.automatica.2016.02.038 +Heinz Unbehauen,Rechnergestützte optimierung statischer und dynamischer systeme: H. G. Jacob.,1984,20,Automatica,1,db/journals/automatica/automatica20.html#Unbehauen84,https://doi.org/10.1016/0005-1098(84)90078-5 +Frédéric Mazenc,Predictor-based sampled-data exponential stabilization through continuous-discrete observers.,2016,63,Automatica,,db/journals/automatica/automatica63.html#MazencF16,https://doi.org/10.1016/j.automatica.2015.10.016 +Murat Arcak,Robust nonlinear control of feedforward systems with unmodeled dynamics.,2001,37,Automatica,2,db/journals/automatica/automatica37.html#ArcakTK01,https://doi.org/10.1016/S0005-1098(00)00138-2 +Zhongjing Ma,Efficient decentralized coordination of large-scale plug-in electric vehicle charging.,2016,69,Automatica,,db/journals/automatica/automatica69.html#MaZRSH16,https://doi.org/10.1016/j.automatica.2016.01.035 +Boris Houska,Enforcing asymptotic orbital stability of economic model predictive control.,2015,57,Automatica,,db/journals/automatica/automatica57.html#Houska15,https://doi.org/10.1016/j.automatica.2015.04.004 +Huibert Kwakernaak,AUtomatica and applications papers.,1996,32,Automatica,1,db/journals/automatica/automatica32.html#Kwakernaak96,https://doi.org/10.1016/S0005-1098(96)90005-9 +Anders Hansson,Maximum likelihood estimation of Gaussian models with missing data - Eight equivalent formulations.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#HanssonW12,https://doi.org/10.1016/j.automatica.2012.05.060 +Juan Luis Jerez,A sparse and condensed QP formulation for predictive control of LTI systems.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#JerezKC12,https://doi.org/10.1016/j.automatica.2012.03.010 +Hiroyuki Kano,Periodic smoothing splines.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#KanoEFTM08,https://doi.org/10.1016/j.automatica.2007.05.011 +Rahmat Heidari,Ultimate boundedness and regions of attraction of frequency droop controlled microgrids with secondary control loops.,2017,81,Automatica,,db/journals/automatica/automatica81.html#HeidariSB17,https://doi.org/10.1016/j.automatica.2016.12.021 +Zhangjie Liu,Stability analysis of DC microgrids with constant power load under distributed control methods.,2018,90,Automatica,,db/journals/automatica/automatica90.html#LiuSSHHG18,https://doi.org/10.1016/j.automatica.2017.12.051 +Dragan B. Dacic,Path-following for linear systems with unstable zero dynamics.,2006,42,Automatica,10,db/journals/automatica/automatica42.html#DacicK06,https://doi.org/10.1016/j.automatica.2006.05.014 +Changchun Hua,Leader-following consensus for a class of high-order nonlinear multi-agent systems.,2016,73,Automatica,,db/journals/automatica/automatica73.html#HuaYG16,https://doi.org/10.1016/j.automatica.2016.06.025 +Kapil G. Gadkar,Optimal genetic manipulations in batch bioreactor control.,2006,42,Automatica,10,db/journals/automatica/automatica42.html#GadkarMD06,https://doi.org/10.1016/j.automatica.2006.05.004 +Tao Shen,An improved stability criterion for fixed-point state-space digital filters using two's complement arithmetic.,2012,48,Automatica,1,db/journals/automatica/automatica48.html#ShenYW12,https://doi.org/10.1016/j.automatica.2011.09.054 +L. Mili,Decision theory for fault diagnosis in electric power systems.,1987,23,Automatica,3,db/journals/automatica/automatica23.html#MiliCR87,https://doi.org/10.1016/0005-1098(87)90007-0 +Jorge M. Gonçalves,Necessary Conditions for Robust Stability of a Class of Nonlinear Systems.,1998,34,Automatica,6,db/journals/automatica/automatica34.html#GoncalvesD98,https://doi.org/10.1016/S0005-1098(97)00231-8 +Vincent Laurain,An instrumental least squares support vector machine for nonlinear system identification.,2015,54,Automatica,,db/journals/automatica/automatica54.html#LaurainTPZ15,https://doi.org/10.1016/j.automatica.2015.02.017 +Er-Wei Bai,Towards identification of Wiener systems with the least amount of a priori information on the nonlinearity.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#BaiR08,https://doi.org/10.1016/j.automatica.2007.08.001 +Fotis N. Koumboulis,Input-output triangular decoupling and data sensitivity.,1996,32,Automatica,4,db/journals/automatica/automatica32.html#Koumboulis96,https://doi.org/10.1016/0005-1098(95)00165-4 +Duarte Antunes,Stability of networked control systems with asynchronous renewal links: An impulsive systems approach.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#AntunesHS13,https://doi.org/10.1016/j.automatica.2012.11.033 +Zhipu Jin,State estimation over packet dropping networks using multiple description coding.,2006,42,Automatica,9,db/journals/automatica/automatica42.html#JinGM06,https://doi.org/10.1016/j.automatica.2006.03.020 +Liyu Cao,A directional forgetting algorithm based on the decomposition of the information matrix.,2000,36,Automatica,11,db/journals/automatica/automatica36.html#CaoS00,https://doi.org/10.1016/S0005-1098(00)00093-5 +Niklas Everitt,Open-loop asymptotically efficient model reduction with the Steiglitz-McBride method.,2018,89,Automatica,,db/journals/automatica/automatica89.html#EverittGH18,https://doi.org/10.1016/j.automatica.2017.12.016 +Er-Wei Bai,Representation and identification of non-parametric nonlinear systems of short term memory and low degree of interaction.,2010,46,Automatica,10,db/journals/automatica/automatica46.html#BaiT10,https://doi.org/10.1016/j.automatica.2010.06.031 +Brian A. Paden,Point-to-point control near heteroclinic orbits: Plant and controller optimality conditions.,2013,49,Automatica,12,db/journals/automatica/automatica49.html#PadenM13,https://doi.org/10.1016/j.automatica.2013.09.030 +Young-Hyun Moon,Estimating the domain of attraction for power systems via a group of damping-reflected energy functions.,2000,36,Automatica,3,db/journals/automatica/automatica36.html#MoonCR00,https://doi.org/10.1016/S0005-1098(99)00162-4 +Qing-Long Han,A discrete delay decomposition approach to stability of linear retarded and neutral systems.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#Han09,https://doi.org/10.1016/j.automatica.2008.08.005 +O. L. R. Jacobs,Gaussian approximation in recursive estimation of multiple states of nonlinear wiener systems.,1988,24,Automatica,2,db/journals/automatica/automatica24.html#Jacobs88,https://doi.org/10.1016/0005-1098(88)90033-7 +Jeng-Ming Chen,A higher-order correlation method for model-order and parameter estimation.,1994,30,Automatica,8,db/journals/automatica/automatica30.html#ChenC94,https://doi.org/10.1016/0005-1098(94)90113-9 +Petre Stoica,On the uniqueness of prediction error models for systems with noisy input-output data.,1987,23,Automatica,4,db/journals/automatica/automatica23.html#StoicaN87,https://doi.org/10.1016/0005-1098(87)90083-5 +Florin Gheorghe Filip,On an on-line dynamic direct coordination method in process industry.,1983,19,Automatica,3,db/journals/automatica/automatica19.html#FilipD83,https://doi.org/10.1016/0005-1098(83)90110-3 +Josep M. Olm,Stable inversion of Abel equations: Application to tracking control in DC-DC nonminimum phase boost converters.,2011,47,Automatica,1,db/journals/automatica/automatica47.html#OlmRS11,https://doi.org/10.1016/j.automatica.2010.10.035 +Michèle Basseville,Information criteria for residual generation and fault detection and isolation.,1997,33,Automatica,5,db/journals/automatica/automatica33.html#Basseville97,https://doi.org/10.1016/S0005-1098(97)00004-6 +Jim V. Candy,Invariant system description of the stochastic realization.,1979,15,Automatica,4,db/journals/automatica/automatica15.html#CandyBW79,https://doi.org/10.1016/0005-1098(79)90026-8 +De-Jin Wang,Synthesis of phase-lead/lag compensators with complete information on gain and phase margins.,2009,45,Automatica,4,db/journals/automatica/automatica45.html#Wang09,https://doi.org/10.1016/j.automatica.2008.11.021 +Reinaldo M. Palhares,Robust filtering with guaranteed energy-to-peak performance - an LM1 approach.,2000,36,Automatica,6,db/journals/automatica/automatica36.html#PalharesP00,https://doi.org/10.1016/S0005-1098(99)00211-3 +Marco Morgado,Position USBL/DVL sensor-based navigation filter in the presence of unknown ocean currents.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#MorgadoBOS11,https://doi.org/10.1016/j.automatica.2011.09.024 +Alfredo Bermúdez,A state constrained optimal control problem related to the sterilization of canned foods.,1994,30,Automatica,2,db/journals/automatica/automatica30.html#BermudezM94,https://doi.org/10.1016/0005-1098(94)90033-7 +Peter Dorato,Report on the second IFAC symposium on system sensitivity and adaptivity.,1969,5,Automatica,3,db/journals/automatica/automatica5.html#DoratoKK69,https://doi.org/10.1016/0005-1098(69)90066-1 +Frank M. Callier,Open-loop unstable convolution feedback systems with dynamical feedbacks.,1976,12,Automatica,5,db/journals/automatica/automatica12.html#CallierD76,https://doi.org/10.1016/0005-1098(76)90010-8 +Jeffrey Azzato,Applying a finite-horizon numerical optimization method to a periodic optimal control problem.,2008,44,Automatica,6,db/journals/automatica/automatica44.html#AzzatoK08,https://doi.org/10.1016/j.automatica.2007.12.022 +Yutaka Hori,Existence criteria of periodic oscillations in cyclic gene regulatory networks.,2011,47,Automatica,6,db/journals/automatica/automatica47.html#HoriKH11,https://doi.org/10.1016/j.automatica.2011.02.042 +Pengyuan Zheng,Improved model prediction and RMPC design for LPV systems with bounded parameter changes.,2013,49,Automatica,12,db/journals/automatica/automatica49.html#ZhengLXZ13,https://doi.org/10.1016/j.automatica.2013.09.024 +Hao Ying,Practical design of nonlinear fuzzy controllers with stability analysis for regulating processes with unknown mathematical models.,1994,30,Automatica,7,db/journals/automatica/automatica30.html#Ying94a,https://doi.org/10.1016/0005-1098(94)90213-5 +Dave W. Oyler,Pursuit-evasion games in the presence of obstacles.,2016,65,Automatica,,db/journals/automatica/automatica65.html#OylerKG16,https://doi.org/10.1016/j.automatica.2015.11.018 +Daniel Ferreira Coutinho,Delay-dependent robust stability and 2-gain analysis of a class of nonlinear time-delay systems.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#CoutinhoS08,https://doi.org/10.1016/j.automatica.2008.01.003 +Eric F. Mulder,Simultaneous linear and anti-windup controller synthesis using multiobjective convex optimization.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#MulderTK09,https://doi.org/10.1016/j.automatica.2008.10.019 +Torkel Glad,Bounds on the response time under control constraints.,2001,37,Automatica,12,db/journals/automatica/automatica37.html#GladI01,https://doi.org/10.1016/S0005-1098(01)00162-5 +Rong Su,Nonconflict check by using sequential automaton abstractions based on weak observation equivalence.,2010,46,Automatica,6,db/journals/automatica/automatica46.html#SuSRH10,https://doi.org/10.1016/j.automatica.2010.02.025 +Amir G. Aghdam,Discrete-time control of continuous systems with approximate decentralized fixed modes.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#AghdamD08,https://doi.org/10.1016/j.automatica.2007.05.004 +Peter Wieland,An internal model principle is necessary and sufficient for linear output synchronization.,2011,47,Automatica,5,db/journals/automatica/automatica47.html#WielandSA11,https://doi.org/10.1016/j.automatica.2011.01.081 +David W. Clarke,Generalized Predictive Control - Part II Extensions and interpretations.,1987,23,Automatica,2,db/journals/automatica/automatica23.html#ClarkeMT87a,https://doi.org/10.1016/0005-1098(87)90088-4 +Michele Cucuzzella,Practical second order sliding modes in single-loop networked control of nonlinear systems.,2018,89,Automatica,,db/journals/automatica/automatica89.html#CucuzzellaF18,https://doi.org/10.1016/j.automatica.2017.11.034 +Xiaojie Su,A novel approach to output feedback control of fuzzy stochastic systems.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#SuWSS14,https://doi.org/10.1016/j.automatica.2014.10.053 +Shalabh Bhatnagar,Natural actor-critic algorithms.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#BhatnagarSGL09,https://doi.org/10.1016/j.automatica.2009.07.008 +K. Hashtrudi-Zaad,An integral manifold approach to tracking control for a class of non-minimum phase linear systems using output feedback.,1996,32,Automatica,11,db/journals/automatica/automatica32.html#Hashtrudi-ZaadK96,https://doi.org/10.1016/S0005-1098(96)00110-0 +Shu-Guang Cao,Analysis and design for a class of complex control systems part II: Fuzzy controller design.,1997,33,Automatica,6,db/journals/automatica/automatica33.html#CaoRF97a,https://doi.org/10.1016/S0005-1098(97)00011-3 +Mario Lefebvre,Hitting lines at minimal cost with a gaussian process.,1990,26,Automatica,2,db/journals/automatica/automatica26.html#Lefebvre90,https://doi.org/10.1016/0005-1098(90)90143-6 +Robert J. Elliott,A filter for a state space model with fractional Gaussian noise.,2010,46,Automatica,10,db/journals/automatica/automatica46.html#ElliottD10,https://doi.org/10.1016/j.automatica.2010.06.026 +Qiang Bi,Relay-based estimation of multiple points on process frequency response.,1997,33,Automatica,9,db/journals/automatica/automatica33.html#BiWH97,https://doi.org/10.1016/S0005-1098(97)00090-3 +Fudong Ge,Regional controllability analysis of fractional diffusion equations with Riemann-Liouville time fractional derivatives.,2017,76,Automatica,,db/journals/automatica/automatica76.html#GeCK17,https://doi.org/10.1016/j.automatica.2016.10.018 +Xiaodong Liu,New approaches to H INFINITY controller designs based on fuzzy observers for T-S fuzzy systems via LMI.,2003,39,Automatica,9,db/journals/automatica/automatica39.html#LiuZ03a,https://doi.org/10.1016/S0005-1098(03)00172-9 +Arne Tyssø,Installation and operation of a multivariable ship boiler control system.,1978,14,Automatica,3,db/journals/automatica/automatica14.html#TyssoB78,https://doi.org/10.1016/0005-1098(78)90086-9 +Per Ivar Barth Berntsen,Ensuring mooring line integrity by dynamic positioning: Controller design and experimental tests.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#BerntsenAL09,https://doi.org/10.1016/j.automatica.2008.12.019 +Chang-Po Chao,Stabilization of a large class of nonlinear systems using conic sector bounds.,1997,33,Automatica,5,db/journals/automatica/automatica33.html#ChaoF97,https://doi.org/10.1016/S0005-1098(96)00228-2 +Esteban A. Hernandez-Vargas,Optimal therapy scheduling for a simplified HIV infection model.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#Hernandez-VargasCM13,https://doi.org/10.1016/j.automatica.2013.06.001 +Sergiy M. Zhuk,Minimax state estimation for linear discrete-time differential-algebraic equations.,2010,46,Automatica,11,db/journals/automatica/automatica46.html#Zhuk10,https://doi.org/10.1016/j.automatica.2010.06.040 +Bruce A. Francis,Convergence in the boundary layer for singularly perturbed equations.,1982,18,Automatica,1,db/journals/automatica/automatica18.html#Francis82,https://doi.org/10.1016/0005-1098(82)90026-7 +Xing-Gang Yan,Decentralised robust sliding mode control for a class of nonlinear interconnected systems by static output feedback.,2004,40,Automatica,4,db/journals/automatica/automatica40.html#YanES04,https://doi.org/10.1016/j.automatica.2003.10.025 +Marko Tanaskovic,Data-driven control of nonlinear systems: An on-line direct approach.,2017,75,Automatica,,db/journals/automatica/automatica75.html#TanaskovicFNM17,https://doi.org/10.1016/j.automatica.2016.09.032 +Grantham K. H. Pang,A knowledge environment for an interactive control system design package.,1992,28,Automatica,3,db/journals/automatica/automatica28.html#Pang92,https://doi.org/10.1016/0005-1098(92)90173-D +George S. Axelby,Editor-in-chief's note.,1990,26,Automatica,1,db/journals/automatica/automatica26.html#Axelby90,https://doi.org/10.1016/0005-1098(90)90152-8 +Franck O. Hounkpevi,Robust minimum variance linear state estimators for multiple sensors with different failure rates.,2007,43,Automatica,7,db/journals/automatica/automatica43.html#HounkpeviY07,https://doi.org/10.1016/j.automatica.2006.12.025 +Osita D. I. Nwokah,On multivariable stability in the gain space.,1991,27,Automatica,6,db/journals/automatica/automatica27.html#NwokahP91,https://doi.org/10.1016/0005-1098(91)90132-L +Gökhan M. Atinç,Supervised coverage control of multi-agent systems.,2014,50,Automatica,11,db/journals/automatica/automatica50.html#AtincSV14,https://doi.org/10.1016/j.automatica.2014.10.023 +Franco Blanchini,Stabilizability of switched linear systems does not imply the existence of convex Lyapunov functions.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#BlanchiniS08,https://doi.org/10.1016/j.automatica.2007.08.012 +Martin Guay,A proportional-integral extremum-seeking controller design technique.,2017,77,Automatica,,db/journals/automatica/automatica77.html#GuayD17,https://doi.org/10.1016/j.automatica.2016.11.018 +Michael K. F. Knoop,Approximate model matching with multivariable PI-controllers.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#KnoopP93,https://doi.org/10.1016/0005-1098(93)90032-O +Hao Ying,The simplest fuzzy controllers using different inference methods are different nonlinear proportional-integral controllers with variable gains.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#Ying93b,https://doi.org/10.1016/0005-1098(93)90025-O +Shahin Hashtrudi-Zad,Generic solvability of the failure detection and identification problem.,1999,35,Automatica,5,db/journals/automatica/automatica35.html#Hashtrudi-ZadM99,https://doi.org/10.1016/S0005-1098(98)00221-0 +Maurício C. de Oliveira,Synthesis of non-rational controllers for linear delay systems.,2004,40,Automatica,2,db/journals/automatica/automatica40.html#OliveiraG04,https://doi.org/10.1016/j.automatica.2003.09.004 +Wenguo Liu 0002,Probabilistic bounds for l1 uncertainty model validation.,2007,43,Automatica,6,db/journals/automatica/automatica43.html#LiuCE07,https://doi.org/10.1016/j.automatica.2006.11.022 +N. Sharav-Schapiro,Output Stabilizing Robust Control for Discrete Uncertain Systems.,1998,34,Automatica,6,db/journals/automatica/automatica34.html#Sharav-SchapiroPS98,https://doi.org/10.1016/S0005-1098(97)00232-X +Elijah Polak,On the removal of ill conditioning effects in the computation of optimal controls.,1969,5,Automatica,5,db/journals/automatica/automatica5.html#Polak69,https://doi.org/10.1016/0005-1098(69)90027-2 +Hiroaki Fukushima,Robust constrained predictive control using comparison model.,2005,41,Automatica,1,db/journals/automatica/automatica41.html#FukushimaB05,https://doi.org/10.1016/j.automatica.2004.08.010 +Minyi Huang,Stochastic consensus over noisy networks with Markovian and arbitrary switches.,2010,46,Automatica,10,db/journals/automatica/automatica46.html#HuangDNM10,https://doi.org/10.1016/j.automatica.2010.06.016 +Hernan Haimovich,Systematic ultimate bound computation for sampled-data systems with quantization.,2007,43,Automatica,6,db/journals/automatica/automatica43.html#HaimovichKS07,https://doi.org/10.1016/j.automatica.2006.12.002 +Mario Sznaier,"Author's reply: ""A comment on Linfinity optimal control of SISO continuous-time systems"".",2000,36,Automatica,12,db/journals/automatica/automatica36.html#SznaierW00,https://doi.org/10.1016/S0005-1098(00)00113-8 +Hyung Keun Lee,Fault-tolerant compression filters by time-propagated measurement fusion.,2007,43,Automatica,2,db/journals/automatica/automatica43.html#LeeL07,https://doi.org/10.1016/j.automatica.2006.09.005 +Gunnar Johannsen,Towards a new quality of automation in complex man-machine systems.,1992,28,Automatica,2,db/journals/automatica/automatica28.html#Johannsen92,https://doi.org/10.1016/0005-1098(92)90121-U +Jun-Min Wang,Sliding mode control to stabilization of cascaded heat PDE-ODE systems subject to boundary control matched disturbance.,2015,52,Automatica,,db/journals/automatica/automatica52.html#WangLRC15,https://doi.org/10.1016/j.automatica.2014.10.117 +George S. Axelby,Editorial changes.,1993,29,Automatica,2,db/journals/automatica/automatica29.html#Axelby93a,https://doi.org/10.1016/0005-1098(93)90121-9 +Patrick De Leenheer,Stabilization of positive systems with first integrals.,2002,38,Automatica,9,db/journals/automatica/automatica38.html#LeenheerA02,https://doi.org/10.1016/S0005-1098(02)00056-0 +André Teixeira,A secure control framework for resource-limited adversaries.,2015,51,Automatica,,db/journals/automatica/automatica51.html#TeixeiraSSJ15,https://doi.org/10.1016/j.automatica.2014.10.067 +Henk Nijmeijer,Phase portraits of control dynamical systems: Anatoliy G. Butkovskiy.,1992,28,Automatica,5,db/journals/automatica/automatica28.html#Nijmeijer92,https://doi.org/10.1016/0005-1098(92)90169-G +Basil Kouvaritakis,Explicit use of probabilistic distributions in linear predictive control.,2010,46,Automatica,10,db/journals/automatica/automatica46.html#KouvaritakisCRC10,https://doi.org/10.1016/j.automatica.2010.06.034 +Franklin T. Luk,A new matrix decomposition for signal processing.,1994,30,Automatica,1,db/journals/automatica/automatica30.html#LukQ94,https://doi.org/10.1016/0005-1098(94)90227-5 +Bruce H. Wilson,Simplified tree-structured decomposition using bond graphs.,1999,35,Automatica,4,db/journals/automatica/automatica35.html#WilsonE99,https://doi.org/10.1016/S0005-1098(98)00226-X +Carlos Canudas de Wit,Direct adaptive impedance control including transition phases.,1997,33,Automatica,4,db/journals/automatica/automatica33.html#WitB97,https://doi.org/10.1016/S0005-1098(96)00190-2 +Frank M. Callier,LQ-optimal control of infinite-dimensional systems by spectral factorization.,1992,28,Automatica,4,db/journals/automatica/automatica28.html#CallierW92,https://doi.org/10.1016/0005-1098(92)90035-E +Luis A. Aguirre,Identification of smooth nonlinear dynamical systems with non-smooth steady-state features.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#Aguirre14,https://doi.org/10.1016/j.automatica.2014.02.012 +Da-Wei Gu,An algorithm for super-optimal H∞ design: The two-block case.,1989,25,Automatica,2,db/journals/automatica/automatica25.html#GuTP89,https://doi.org/10.1016/0005-1098(89)90074-5 +Taha Boukhobza,Observability of switching structured linear systems with unknown input. A graph-theoretic approach.,2011,47,Automatica,2,db/journals/automatica/automatica47.html#BoukhobzaH11,https://doi.org/10.1016/j.automatica.2010.11.003 +Jean Auriol,Minimum time control of heterodirectional linear coupled hyperbolic PDEs.,2016,71,Automatica,,db/journals/automatica/automatica71.html#AuriolM16,https://doi.org/10.1016/j.automatica.2016.05.030 +Weizhou Su,Robust stabilization of nonlinear cascaded systems.,2006,42,Automatica,4,db/journals/automatica/automatica42.html#SuF06,https://doi.org/10.1016/j.automatica.2005.12.005 +Roland Hildebrand,Identification for control: Optimal input intended to identify a minimum variance controller.,2007,43,Automatica,5,db/journals/automatica/automatica43.html#HildebrandS07,https://doi.org/10.1016/j.automatica.2006.11.003 +Tan-Jan Ho,A switched IMM-Extended Viterbi estimator-based algorithm for maneuvering target tracking.,2011,47,Automatica,1,db/journals/automatica/automatica47.html#Ho11,https://doi.org/10.1016/j.automatica.2010.10.005 +Haifa Ethabet,Interval estimation for continuous-time switched linear systems.,2018,90,Automatica,,db/journals/automatica/automatica90.html#EthabetRER18,https://doi.org/10.1016/j.automatica.2017.12.035 +Yao Chen 0003,Synchronizing nonlinear complex networks via switching disconnected topology.,2016,70,Automatica,,db/journals/automatica/automatica70.html#ChenYTZ16,https://doi.org/10.1016/j.automatica.2016.03.033 +M. Pachter,Speed control of a field controlled D.C. traction motor.,1981,17,Automatica,4,db/journals/automatica/automatica17.html#Pachter81,https://doi.org/10.1016/0005-1098(81)90034-0 +Sergey Dashkovskiy,Input-to-state stability of interconnected hybrid systems.,2013,49,Automatica,4,db/journals/automatica/automatica49.html#DashkovskiyK13,https://doi.org/10.1016/j.automatica.2013.01.045 +Claudio Bonivento,Discrete variable-structure integral controllers.,1998,34,Automatica,3,db/journals/automatica/automatica34.html#BoniventoSZ98,https://doi.org/10.1016/S0005-1098(97)00197-0 +Hans-Bernd Dürr,Lie bracket approximation of extremum seeking systems.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#DurrSEJ13,https://doi.org/10.1016/j.automatica.2013.02.016 +George S. Axelby,New positions and directions.,1981,17,Automatica,3,db/journals/automatica/automatica17.html#Axelby81,https://doi.org/10.1016/0005-1098(81)90001-7 +Wenlian Lu,Global stabilization of complex networks with digraph topologies via a local pinning algorithm.,2010,46,Automatica,1,db/journals/automatica/automatica46.html#LuLR10,https://doi.org/10.1016/j.automatica.2009.10.006 +Vilas Wuwongse,An interactive system for supporting multiobjective decision making.,1983,19,Automatica,6,db/journals/automatica/automatica19.html#WuwongseKI83,https://doi.org/10.1016/0005-1098(83)90034-1 +Murat Arcak,A framework for nonlinear sampled-data observer design via approximate discrete-time models and emulation.,2004,40,Automatica,11,db/journals/automatica/automatica40.html#ArcakN04,https://doi.org/10.1016/j.automatica.2004.06.004 +Jean-Michel Dion,MIMO adaptive constrained predictive control case study: An environmental test chamber.,1991,27,Automatica,4,db/journals/automatica/automatica27.html#DionDFTR91,https://doi.org/10.1016/0005-1098(91)90053-5 +Markus Gerdin,On parameter and state estimation for linear differential-algebraic equations.,2007,43,Automatica,3,db/journals/automatica/automatica43.html#GerdinSGGL07,https://doi.org/10.1016/j.automatica.2006.09.016 +N. Sivashankar,Induced norms for sampled-data systems.,1992,28,Automatica,6,db/journals/automatica/automatica28.html#SivashankarK92,https://doi.org/10.1016/0005-1098(92)90072-N +Weiguo Xia,Optimal tradeoff between instantaneous and delayed neighbor information in consensus algorithms.,2017,83,Automatica,,db/journals/automatica/automatica83.html#XiaMSJ17,https://doi.org/10.1016/j.automatica.2017.06.021 +Wubbe J. R. Velthuis,Stability analysis of learning feed-forward control.,2000,36,Automatica,12,db/journals/automatica/automatica36.html#VelthuisVSG00,https://doi.org/10.1016/S0005-1098(00)00107-2 +Maciej Niedzwiecki,"On ""cheap smoothing"" opportunities in identification of time-varying systems.",2008,44,Automatica,5,db/journals/automatica/automatica44.html#Niedzwiecki08a,https://doi.org/10.1016/j.automatica.2007.09.007 +Mei Hong,Accuracy analysis of bias-eliminating least squares estimates for errors-in-variables systems.,2007,43,Automatica,9,db/journals/automatica/automatica43.html#HongSZ07,https://doi.org/10.1016/j.automatica.2007.02.002 +Torsten Söderström,Introduction to the special issue on data-based modelling and system identification.,2005,41,Automatica,3,db/journals/automatica/automatica41.html#SoderstromHWW05,https://doi.org/10.1016/j.automatica.2004.11.004 +Aarne Halme,Digital control using microprocessors: Paul Katz.,1983,19,Automatica,2,db/journals/automatica/automatica19.html#Halme83,https://doi.org/10.1016/0005-1098(83)90096-1 +Xin W. Chen,Conflict and error prevention and detection in complex networks.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#ChenN12,https://doi.org/10.1016/j.automatica.2012.02.030 +Chaodong Huang,On feedback capability for a class of semiparametric uncertain systems.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#HuangG12,https://doi.org/10.1016/j.automatica.2012.02.023 +Zhe Gao,A computing method on stability intervals of time-delay for fractional-order retarded systems with commensurate time-delays.,2014,50,Automatica,6,db/journals/automatica/automatica50.html#Gao14,https://doi.org/10.1016/j.automatica.2014.03.019 +Anthony J. Calise,Optimal output feedback design of systems with ill-conditioned dynamics.,1985,21,Automatica,3,db/journals/automatica/automatica21.html#CaliseM85,https://doi.org/10.1016/0005-1098(85)90060-3 +Mehmet Karan,Transition probability bounds for the stochastic stability robustness of continuous- and discrete-time Markovian jump linear systems.,2006,42,Automatica,12,db/journals/automatica/automatica42.html#KaranSK06,https://doi.org/10.1016/j.automatica.2006.07.002 +Rik Pintelon,Box-Jenkins identification revisited - Part II: Applications.,2006,42,Automatica,1,db/journals/automatica/automatica42.html#PintelonRS06,https://doi.org/10.1016/j.automatica.2005.09.005 +Xiang Xu 0003,Stabilization of linear systems with distributed infinite input delays: A low gain approach.,2018,94,Automatica,,db/journals/automatica/automatica94.html#XuLF18,https://doi.org/10.1016/j.automatica.2018.04.049 +George S. Axelby,Format changes.,1976,12,Automatica,2,db/journals/automatica/automatica12.html#Axelby76,https://doi.org/10.1016/0005-1098(76)90074-1 +A. Hmamed,Componentwise stability of 1D and 2D linear discrete-time systems.,1997,33,Automatica,9,db/journals/automatica/automatica33.html#Hmamed97,https://doi.org/10.1016/S0005-1098(97)00037-X +Ernesto Kofman,Non-conservative ultimate bound estimation in LTI perturbed systems.,2005,41,Automatica,10,db/journals/automatica/automatica41.html#Kofman05,https://doi.org/10.1016/j.automatica.2005.04.024 +Zhiyun Lin,Distributed localization with mixed measurements under switching topologies.,2017,76,Automatica,,db/journals/automatica/automatica76.html#LinHZY17,https://doi.org/10.1016/j.automatica.2016.11.005 +Sarit K. Das,Robust compensation of a Cart-Inverted Pendulum system using a periodic controller: Experimental results.,2011,47,Automatica,11,db/journals/automatica/automatica47.html#DasP11,https://doi.org/10.1016/j.automatica.2011.08.035 +Yutaka Hori,Biochemical oscillations in delayed negative cyclic feedback: Existence and profiles.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#HoriTH13,https://doi.org/10.1016/j.automatica.2013.04.020 +Toshiharu Sugie,An iterative learning control law for dynamical systems.,1991,27,Automatica,4,db/journals/automatica/automatica27.html#SugieO91,https://doi.org/10.1016/0005-1098(91)90066-B +Basil Kouvaritakis,A line search improvement of efficient MPC.,2010,46,Automatica,11,db/journals/automatica/automatica46.html#KouvaritakisLC10,https://doi.org/10.1016/j.automatica.2010.07.003 +Andrey V. Savkin,Almost Optimal LQ-Control Using Stable Periodic Controllers.,1998,34,Automatica,10,db/journals/automatica/automatica34.html#SavkinP98a,https://doi.org/10.1016/S0005-1098(98)00063-6 +Madan G. Singh,Closed loop hierarchical control for river pollution.,1976,12,Automatica,3,db/journals/automatica/automatica12.html#SinghH76,https://doi.org/10.1016/0005-1098(76)90026-1 +O. D. Lyantsev,On-line performance optimisation of aero engine control system.,2003,39,Automatica,12,db/journals/automatica/automatica39.html#LyantsevBKA03,https://doi.org/10.1016/S0005-1098(03)00224-3 +Min-Sung Koo,Global regulation of a class of feedforward and non-feedforward nonlinear systems with a delay in the input.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#KooCL12,https://doi.org/10.1016/j.automatica.2012.06.062 +Guy Campion,Book review.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#Campion09,https://doi.org/10.1016/j.automatica.2008.12.001 +Nicolas William Bauer,Stability analysis of networked control systems: A sum of squares approach.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#BauerMH12,https://doi.org/10.1016/j.automatica.2012.05.023 +Housheng Su,Synchronization of coupled harmonic oscillators in a dynamic proximity network.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#SuWL09,https://doi.org/10.1016/j.automatica.2009.05.026 +Xiaomeng Liu,Structural controllability of switched linear systems.,2013,49,Automatica,12,db/journals/automatica/automatica49.html#LiuLC13,https://doi.org/10.1016/j.automatica.2013.09.015 +Elmer G. Gilbert,Constrained linear systems with hard constraints and disturbances: An extended command governor with large domain of attraction.,2011,47,Automatica,2,db/journals/automatica/automatica47.html#GilbertO11,https://doi.org/10.1016/j.automatica.2010.10.016 +Eduardo Aranda-Bricaire,Linearization of discrete-time systems by exogenous dynamic feedback.,2008,44,Automatica,7,db/journals/automatica/automatica44.html#Aranda-BricaireM08,https://doi.org/10.1016/j.automatica.2007.10.030 +Vito Cerone,Enforcing stability constraints in set-membership identification of linear dynamic systems.,2011,47,Automatica,11,db/journals/automatica/automatica47.html#CeronePR11a,https://doi.org/10.1016/j.automatica.2011.08.034 +Shu-Li Sun,Multi-sensor optimal information fusion Kalman filter.,2004,40,Automatica,6,db/journals/automatica/automatica40.html#SunD04,https://doi.org/10.1016/j.automatica.2004.01.014 +Ian R. Petersen,A riccati equation approach to the stabilization of uncertain linear systems.,1986,22,Automatica,4,db/journals/automatica/automatica22.html#PetersenH86,https://doi.org/10.1016/0005-1098(86)90045-2 +Jingyuan Zhan,Consensus of sampled-data multi-agent networking systems via model predictive control.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#ZhanL13,https://doi.org/10.1016/j.automatica.2013.04.037 +Sidney J. Yakowitz,Convergence rate analysis of the state increment dynamic programming method.,1983,19,Automatica,1,db/journals/automatica/automatica19.html#Yakowitz83,https://doi.org/10.1016/0005-1098(83)90074-2 +Veit Hagenmeyer,Robustness analysis of exact feedforward linearization based on differential flatness.,2003,39,Automatica,11,db/journals/automatica/automatica39.html#HagenmeyerD03,https://doi.org/10.1016/S0005-1098(03)00215-2 +Christopher V. Rao,Constrained linear state estimation - a moving horizon approach.,2001,37,Automatica,10,db/journals/automatica/automatica37.html#RaoRL01,https://doi.org/10.1016/S0005-1098(01)00115-7 +Ioannis Exarchos,Stochastic optimal control via forward and backward stochastic differential equations and importance sampling.,2018,87,Automatica,,db/journals/automatica/automatica87.html#ExarchosT18,https://doi.org/10.1016/j.automatica.2017.09.004 +Onur Toker,Gap metric problem for MIMO delay systems: Parametrization of all suboptimal controllers.,1995,31,Automatica,7,db/journals/automatica/automatica31.html#TokerO95,https://doi.org/10.1016/0005-1098(94)00171-E +Jitendra K. Tugnait,Detection and estimation for abruptly changing systems.,1982,18,Automatica,5,db/journals/automatica/automatica18.html#Tugnait82,https://doi.org/10.1016/0005-1098(82)90012-7 +Shihua Li,Finite-time consensus and collision avoidance control algorithms for multiple AUVs.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#LiW13,https://doi.org/10.1016/j.automatica.2013.08.003 +Zhuquan Zang,Iterative weighted least-squares identification and weighted LQG control design.,1995,31,Automatica,11,db/journals/automatica/automatica31.html#ZangBG95,https://doi.org/10.1016/0005-1098(95)00082-8 +Job C. Oostveen,Riccati Equations for Strongly Stabilizable Bounded Linear Systems.,1998,34,Automatica,8,db/journals/automatica/automatica34.html#OostveenC98,https://doi.org/10.1016/S0005-1098(98)00035-1 +Bin Zhou 0001,Semi-global stabilization of linear time-delay systems with control energy constraint.,2012,48,Automatica,4,db/journals/automatica/automatica48.html#ZhouLL12,https://doi.org/10.1016/j.automatica.2012.01.011 +Qing-Long Han,Robust stability of uncertain delay-differential systems of neutral type.,2002,38,Automatica,4,db/journals/automatica/automatica38.html#Han02,https://doi.org/10.1016/S0005-1098(01)00250-3 +Roland Tóth,Asymptotically optimal orthonormal basis functions for LPV system identification.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#TothHH09,https://doi.org/10.1016/j.automatica.2009.01.010 +Asok Ray,Calibration and estimation of redundant signals.,2000,36,Automatica,10,db/journals/automatica/automatica36.html#RayP00,https://doi.org/10.1016/S0005-1098(00)00067-4 +Xiangyu Meng,Asynchronous periodic event-triggered consensus for multi-agent systems.,2017,84,Automatica,,db/journals/automatica/automatica84.html#MengXS17,https://doi.org/10.1016/j.automatica.2017.07.008 +Tom Oomen,Suppressing intersample behavior in iterative learning control.,2009,45,Automatica,4,db/journals/automatica/automatica45.html#OomenWB09,https://doi.org/10.1016/j.automatica.2008.10.022 +Frédéric Rotella,A direct design procedure for linear state functional observers.,2016,70,Automatica,,db/journals/automatica/automatica70.html#RotellaZ16,https://doi.org/10.1016/j.automatica.2016.04.001 +Stefano Di Gennaro,Output attitude tracking for flexible spacecraft.,2002,38,Automatica,10,db/journals/automatica/automatica38.html#Gennaro02,https://doi.org/10.1016/S0005-1098(02)00082-1 +Yang Shen,Maximum principle for mean-field jump-diffusion stochastic delay differential equations and its application to finance.,2014,50,Automatica,6,db/journals/automatica/automatica50.html#ShenMS14,https://doi.org/10.1016/j.automatica.2014.03.021 +Dario Bauso,On robustness and dynamics in (un)balanced coalitional games.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#BausoT12,https://doi.org/10.1016/j.automatica.2012.06.057 +YuanYuan Zou,Constrained predictive control synthesis for quantized systems with Markovian data loss.,2015,55,Automatica,,db/journals/automatica/automatica55.html#ZouLNL15,https://doi.org/10.1016/j.automatica.2015.03.016 +Huibert Kwakernaak,Special issue on robust control.,1993,29,Automatica,1,db/journals/automatica/automatica29.html#Kwakernaak93,https://doi.org/10.1016/0005-1098(93)90169-T +A. Stephen Morse,Ring models for delay-differential systems.,1976,12,Automatica,5,db/journals/automatica/automatica12.html#Morse76,https://doi.org/10.1016/0005-1098(76)90013-3 +Hamed Rezaee,"Comment on ""Attitude synchronization control for a group of flexible spacecraft"" [Automatica 50 (2014) 646-651].",2017,83,Automatica,,db/journals/automatica/automatica83.html#RezaeeA17,https://doi.org/10.1016/j.automatica.2017.04.023 +Andrea Lecchini,A model reference approach to safe controller changes in iterative identification and control.,2006,42,Automatica,2,db/journals/automatica/automatica42.html#LecchiniLA06,https://doi.org/10.1016/j.automatica.2005.08.022 +Graziano Chesi,Homogeneous Lyapunov functions for systems with structured uncertainties.,2003,39,Automatica,6,db/journals/automatica/automatica39.html#ChesiGTV03,https://doi.org/10.1016/S0005-1098(03)00039-6 +Jean-Pierre Babary,State-space and frequency-domain methods in the control of distributed parameter systems: Stephan P. Banks.,1986,22,Automatica,1,db/journals/automatica/automatica22.html#Babary86,https://doi.org/10.1016/0005-1098(86)90116-0 +Jun Fu,Sampled-data-based stabilization of switched linear neutral systems.,2016,72,Automatica,,db/journals/automatica/automatica72.html#FuLCS16,https://doi.org/10.1016/j.automatica.2016.05.020 +Johannes Schiffer,Robustness of distributed averaging control in power systems: Time delays and dynamic communication topology.,2017,80,Automatica,,db/journals/automatica/automatica80.html#SchifferDF17,https://doi.org/10.1016/j.automatica.2017.02.040 +H. G. Natke,System identification: Torsten Söderström and Petre Stoica.,1992,28,Automatica,5,db/journals/automatica/automatica28.html#Natke92,https://doi.org/10.1016/0005-1098(92)90167-E +Nathan van de Wouw,Performance of convergence-based variable-gain control of optical storage drives.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#WouwPHPN08,https://doi.org/10.1016/j.automatica.2007.04.004 +J. S. Gibson,Least-squares estimation of input/output models for distributed linear systems in the presence of noise.,2000,36,Automatica,10,db/journals/automatica/automatica36.html#GibsonLW00,https://doi.org/10.1016/S0005-1098(00)00059-5 +Hüseyin Akçay,A frequency-domain iterative identification algorithm using general orthonormal basis functions.,2001,37,Automatica,5,db/journals/automatica/automatica37.html#AkcayH01,https://doi.org/10.1016/S0005-1098(01)00003-6 +J. S. Luo,Independent of delay stability criteria for uncertain linear state space models.,1997,33,Automatica,2,db/journals/automatica/automatica33.html#LuoB97,https://doi.org/10.1016/S0005-1098(96)00160-4 +Farzad Yousefian,On stochastic gradient and subgradient methods with adaptive steplength sequences.,2012,48,Automatica,1,db/journals/automatica/automatica48.html#YousefianNS12,https://doi.org/10.1016/j.automatica.2011.09.043 +Yang Zhu,Adaptive backstepping control of uncertain linear systems under unknown actuator delay.,2015,54,Automatica,,db/journals/automatica/automatica54.html#ZhuSK15,https://doi.org/10.1016/j.automatica.2015.02.013 +Shao-Kung Chang,"Comments on ""sensitivity of failure detection using generalized observers"".",1994,30,Automatica,2,db/journals/automatica/automatica30.html#ChangH94,https://doi.org/10.1016/0005-1098(94)90039-6 +Tongwen Chen,H∞ design of general multirate sampled-data control systems.,1994,30,Automatica,7,db/journals/automatica/automatica30.html#ChenQ94,https://doi.org/10.1016/0005-1098(94)90210-0 +Giorgio Bartolini,Digital second-order sliding mode control for uncertain nonlinear systems.,2001,37,Automatica,9,db/journals/automatica/automatica37.html#BartoliniPU01,https://doi.org/10.1016/S0005-1098(01)00085-1 +Giulia Prando,Maximum Entropy vector kernels for MIMO system identification.,2017,79,Automatica,,db/journals/automatica/automatica79.html#PrandoCP17,https://doi.org/10.1016/j.automatica.2017.01.020 +Graziano Chesi,Time-invariant uncertain systems: A necessary and sufficient condition for stability and instability via homogeneous parameter-dependent quadratic Lyapunov functions.,2010,46,Automatica,2,db/journals/automatica/automatica46.html#Chesi10,https://doi.org/10.1016/j.automatica.2009.11.007 +Angelo Alessandri,Time-varying increasing-gain observers for nonlinear systems.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#AlessandriR13,https://doi.org/10.1016/j.automatica.2013.05.026 +Pradeep Bhatta,Nonlinear gliding stability and control for vehicles with hydrodynamic forcing.,2008,44,Automatica,5,db/journals/automatica/automatica44.html#BhattaL08,https://doi.org/10.1016/j.automatica.2007.10.006 +Michel de Mathelin,Multivariable model reference adaptive control without constraints on the high-frequency gain matrix.,1995,31,Automatica,4,db/journals/automatica/automatica31.html#MathelinB95,https://doi.org/10.1016/0005-1098(95)98489-S +David T. Westwick,Initial estimates of the linear subsystems of Wiener-Hammerstein models.,2012,48,Automatica,11,db/journals/automatica/automatica48.html#WestwickS12,https://doi.org/10.1016/j.automatica.2012.06.091 +Haitao Li 0001,Further results on feedback stabilization control design of Boolean control networks.,2017,83,Automatica,,db/journals/automatica/automatica83.html#LiW17,https://doi.org/10.1016/j.automatica.2017.06.043 +Marco Casini,Input design in worst-case system identification with quantized measurements.,2012,48,Automatica,12,db/journals/automatica/automatica48.html#CasiniGV12,https://doi.org/10.1016/j.automatica.2012.08.016 +Vivek S. Borkar,Charge-based control of DiffServ-like queues.,2004,40,Automatica,12,db/journals/automatica/automatica40.html#BorkarM04,https://doi.org/10.1016/j.automatica.2004.07.012 +O. L. R. Jacobs,Comparison of adaptive controllers.,1980,16,Automatica,1,db/journals/automatica/automatica16.html#JacobsS80,https://doi.org/10.1016/0005-1098(80)90090-4 +Paresh Deshpande,Delayed static output feedback control of a network of double integrator agents.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#DeshpandeME13,https://doi.org/10.1016/j.automatica.2013.08.006 +Yasumasa Fujisaki,Guaranteed cost regulator design: A probabilistic solution and a randomized algorithm.,2007,43,Automatica,2,db/journals/automatica/automatica43.html#FujisakiO07,https://doi.org/10.1016/j.automatica.2006.08.020 +Jiangshuai Huang,Adaptive control of a class of strict-feedback time-varying nonlinear systems with unknown control coefficients.,2018,93,Automatica,,db/journals/automatica/automatica93.html#HuangWWZ18,https://doi.org/10.1016/j.automatica.2018.03.061 +Chyi Hwang,Authors' Reply.,2002,38,Automatica,3,db/journals/automatica/automatica38.html#HwangY02,https://doi.org/10.1016/S0005-1098(01)00221-7 +Oswaldo Luiz V. Costa,Constrained quadratic state feedback control of discrete-time Markovian jump linear systems.,1999,35,Automatica,4,db/journals/automatica/automatica35.html#CostaFBM99,https://doi.org/10.1016/S0005-1098(98)00202-7 +Leonardo C. Kammer,Direct iterative tuning via spectral analysis.,2000,36,Automatica,9,db/journals/automatica/automatica36.html#KammerBB00,https://doi.org/10.1016/S0005-1098(00)00040-6 +Ljubomir T. Grujic,"Reply to ""comments on 'on absolute stability and the aizerman conjecture'"".",1993,29,Automatica,2,db/journals/automatica/automatica29.html#Grujic93,https://doi.org/10.1016/0005-1098(93)90158-P +Mondher Farza,Extended high gain observer design for a class of MIMO non-uniformly observable systems.,2017,86,Automatica,,db/journals/automatica/automatica86.html#FarzaMLBMM17,https://doi.org/10.1016/j.automatica.2017.08.002 +Keum-Shik Hong,Application of averaging method for integro-differential equations to model reference adaptive control of parabolic systems.,1994,30,Automatica,9,db/journals/automatica/automatica30.html#HongB94,https://doi.org/10.1016/0005-1098(94)90006-X +Seong-Sik Yoon,Dynamic anti-windup scheme for feedback linearizable nonlinear control systems with saturating inputs.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#YoonPY08,https://doi.org/10.1016/j.automatica.2008.10.003 +Domenico D'Alessandro,A parametrization of the nonnegative definite solutions of the algebraic Riccati equation.,1998,34,Automatica,3,db/journals/automatica/automatica34.html#DAlessandro98,https://doi.org/10.1016/S0005-1098(97)00193-3 +Gang George Yin,Stability of Markov modulated discrete-time dynamic systems.,2003,39,Automatica,8,db/journals/automatica/automatica39.html#YinZ03,https://doi.org/10.1016/S0005-1098(03)00133-X +Robert W. Haessler,Production planning and scheduling for an integrated container company.,1985,21,Automatica,4,db/journals/automatica/automatica21.html#Haessler85,https://doi.org/10.1016/0005-1098(85)90080-9 +Lilian K. Carvalho,Diagnosability of intermittent sensor faults in discrete event systems.,2017,79,Automatica,,db/journals/automatica/automatica79.html#CarvalhoMB17,https://doi.org/10.1016/j.automatica.2017.01.017 +Zhiyun Lin,On a reachability problem for affine hypersurface systems on polytopes.,2011,47,Automatica,4,db/journals/automatica/automatica47.html#LinB11,https://doi.org/10.1016/j.automatica.2011.01.031 +Xian-Ming Zhang,Abel lemma-based finite-sum inequality and its application to stability analysis for linear discrete time-delay systems.,2015,57,Automatica,,db/journals/automatica/automatica57.html#ZhangH15a,https://doi.org/10.1016/j.automatica.2015.04.019 +Oh-Kyu Kwon,FIR filters and recursive forms for discrete-time state-space models.,1989,25,Automatica,5,db/journals/automatica/automatica25.html#KwonKL89,https://doi.org/10.1016/0005-1098(89)90027-7 +Krzysztof Malinowski,Controllability and observability of expanded systems with overlapping decompositions.,1985,21,Automatica,2,db/journals/automatica/automatica21.html#MalinowskiS85,https://doi.org/10.1016/0005-1098(85)90115-3 +Chun H. Cho,Computer optimization of refrigeration systems in a textile plant: A case history.,1982,18,Automatica,6,db/journals/automatica/automatica18.html#ChoN82,https://doi.org/10.1016/0005-1098(82)90056-5 +Chang Chieh Hang,Relay auto-tuning in the presence of static load disturbance.,1993,29,Automatica,2,db/journals/automatica/automatica29.html#HangAH93,https://doi.org/10.1016/0005-1098(93)90159-Q +J. Richalet,Industrial applications of model based predictive control.,1993,29,Automatica,5,db/journals/automatica/automatica29.html#Richalet93,https://doi.org/10.1016/0005-1098(93)90049-Y +Fabio Morbidi,Observer design via Immersion and Invariance for vision-based leader-follower formation control.,2010,46,Automatica,1,db/journals/automatica/automatica46.html#MorbidiMP10,https://doi.org/10.1016/j.automatica.2009.10.016 +Seong-Jin Park,Nonblocking supervisory control of timed discrete event systems under communication delays: The existence conditions.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#ParkC08a,https://doi.org/10.1016/j.automatica.2007.08.007 +Zongli Lin,The almost disturbance decoupling problem with internal stability for linear systems subject to input saturation - state feedback case.,1996,32,Automatica,4,db/journals/automatica/automatica32.html#LinST96,https://doi.org/10.1016/0005-1098(95)00176-X +Kai Cai,Convergence time analysis of quantized gossip consensus on digraphs.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#CaiI12,https://doi.org/10.1016/j.automatica.2012.06.048 +Carlo Novara,Data-driven design of two degree-of-freedom nonlinear controllers: The -IBC approach.,2016,72,Automatica,,db/journals/automatica/automatica72.html#NovaraFSM16,https://doi.org/10.1016/j.automatica.2016.05.010 +Douglas J. Leith,Inference of disjoint linear and nonlinear sub-domains of a nonlinear mapping.,2006,42,Automatica,5,db/journals/automatica/automatica42.html#LeithLM06,https://doi.org/10.1016/j.automatica.2006.01.019 +B. T. Poljak,Robust identification.,1980,16,Automatica,1,db/journals/automatica/automatica16.html#PoljakT80,https://doi.org/10.1016/0005-1098(80)90086-2 +Oded Yaniv,Direct control design in sampled-data uncertain systems.,1993,29,Automatica,2,db/journals/automatica/automatica29.html#YanivC93,https://doi.org/10.1016/0005-1098(93)90129-H +Rong-Yao Ruan,On-line order estimation and parameter identification for linear stochastic feedback control systems (CARMA model).,2003,39,Automatica,2,db/journals/automatica/automatica39.html#RuanYCL03,https://doi.org/10.1016/S0005-1098(02)00242-X +Emmanuel Bernuau,Stability of homogeneous nonlinear systems with sampled-data inputs.,2017,85,Automatica,,db/journals/automatica/automatica85.html#BernuauMC17,https://doi.org/10.1016/j.automatica.2017.07.048 +Alessandro Falsone,Dual decomposition for multi-agent distributed optimization with coupling constraints.,2017,84,Automatica,,db/journals/automatica/automatica84.html#FalsoneMGP17,https://doi.org/10.1016/j.automatica.2017.07.003 +A. K. Kochhar,Dynamical modelling and control of plastics extrusion processes.,1977,13,Automatica,2,db/journals/automatica/automatica13.html#KochharP77,https://doi.org/10.1016/0005-1098(77)90042-5 +Wout Weijtjens,Operational modal parameter estimation of MIMO systems using transmissibility functions.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#WeijtjensSDG14,https://doi.org/10.1016/j.automatica.2013.11.021 +Vladimír Kucera,Design of steady-state minimum variance controllers.,1979,15,Automatica,4,db/journals/automatica/automatica15.html#Kucera79,https://doi.org/10.1016/0005-1098(79)90015-3 +Pierre R. Bélanger,On type 1 systems and the clarke-gawthrop regulator.,1983,19,Automatica,1,db/journals/automatica/automatica19.html#Belanger83,https://doi.org/10.1016/0005-1098(83)90079-1 +Pieter Eykhoff,Automatica prize paper awards.,1987,23,Automatica,1,db/journals/automatica/automatica23.html#Eykhoff87,https://doi.org/10.1016/0005-1098(87)90112-9 +Liang Liu,State feedback stabilization for stochastic feedforward nonlinear systems with time-varying delay.,2013,49,Automatica,4,db/journals/automatica/automatica49.html#LiuX13,https://doi.org/10.1016/j.automatica.2013.01.007 +Dale B. Cherchas,Optimum control of neutron flux during nuclear station load following.,1978,14,Automatica,6,db/journals/automatica/automatica14.html#CherchasN78,https://doi.org/10.1016/0005-1098(78)90043-2 +Karl Heinz Kienitz,Controller design using fuzzy logic - A case study.,1993,29,Automatica,2,db/journals/automatica/automatica29.html#Kienitz93,https://doi.org/10.1016/0005-1098(93)90155-M +Zhihua Qu,Continuous I/O robust control of SISO time-varying systems.,1997,33,Automatica,4,db/journals/automatica/automatica33.html#QuKD97,https://doi.org/10.1016/S0005-1098(96)00182-3 +Giuseppe C. Calafiore,Research on probabilistic methods for control system design.,2011,47,Automatica,7,db/journals/automatica/automatica47.html#CalafioreDT11,https://doi.org/10.1016/j.automatica.2011.02.029 +Efstathios Bakolas,Finite-horizon covariance control for discrete-time stochastic linear systems subject to input constraints.,2018,91,Automatica,,db/journals/automatica/automatica91.html#Bakolas18,https://doi.org/10.1016/j.automatica.2018.01.029 +Mauro Cimino,Optimal location of mouse sensors on mobile robots for position sensing.,2011,47,Automatica,10,db/journals/automatica/automatica47.html#CiminoP11,https://doi.org/10.1016/j.automatica.2011.08.004 +J. Q. Gong,Neural network adaptive robust control of nonlinear systems in semi-strict feedback form.,2001,37,Automatica,8,db/journals/automatica/automatica37.html#GongY01,https://doi.org/10.1016/S0005-1098(01)00069-3 +J. P. Norton,Identification and application of bounded-parameter models.,1987,23,Automatica,4,db/journals/automatica/automatica23.html#Norton87,https://doi.org/10.1016/0005-1098(87)90079-3 +Denis V. Efimov,Linear interval observers under delayed measurements and delay-dependent positivity.,2016,72,Automatica,,db/journals/automatica/automatica72.html#EfimovFPPR16,https://doi.org/10.1016/j.automatica.2016.05.022 +Joonho Lee,Output feedback stabilization of inverted pendulum on a cart in the presence of uncertainties.,2015,54,Automatica,,db/journals/automatica/automatica54.html#LeeMK15,https://doi.org/10.1016/j.automatica.2015.01.013 +Ahmad Haidar,Exponential stability of singular systems with multiple time-varying delays.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#HaidarB09,https://doi.org/10.1016/j.automatica.2008.08.019 +Franky De Bruyne,Recursive identification of nonlinear plants operating in closed loop using kernel representations.,2002,38,Automatica,11,db/journals/automatica/automatica38.html#BruyneAL02,https://doi.org/10.1016/S0005-1098(02)00103-6 +Masood Ghasemi,Finite-time coordination in multiagent systems using sliding mode control approach.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#GhasemiN14,https://doi.org/10.1016/j.automatica.2014.02.019 +Kwang-Hyun Cho,Mixed centralized/decentralized supervisory control of discrete event dynamic systems.,1999,35,Automatica,1,db/journals/automatica/automatica35.html#ChoL99,https://doi.org/10.1016/S0005-1098(98)00137-X +Hong-Jun Ma,Adaptive output control of uncertain nonlinear systems with non-symmetric dead-zone input.,2010,46,Automatica,2,db/journals/automatica/automatica46.html#MaY10,https://doi.org/10.1016/j.automatica.2009.11.010 +Ioan Doré Landau,Recursive algorithms for identification in closed loop: A unified approach and evaluation.,1997,33,Automatica,8,db/journals/automatica/automatica33.html#LandauK97a,https://doi.org/10.1016/S0005-1098(97)00061-7 +Franky De Bruyne,On Plant and LQG Controller Continuity Questions.,1998,34,Automatica,5,db/journals/automatica/automatica34.html#BruyneAG98,https://doi.org/10.1016/S0005-1098(98)00005-3 +Guanghui Sun,Practical tracking control of linear motor via fractional-order sliding mode.,2018,94,Automatica,,db/journals/automatica/automatica94.html#SunWKML18,https://doi.org/10.1016/j.automatica.2018.02.011 +Roman Weinfeld,Towards more precise recursive prediction error algorithms.,1990,26,Automatica,5,db/journals/automatica/automatica26.html#Weinfeld90,https://doi.org/10.1016/0005-1098(90)90011-6 +Stevan Dubljevic,A new Lyapunov design approach for nonlinear systems based on Zubov's method.,2002,38,Automatica,11,db/journals/automatica/automatica38.html#DubljevicK02,https://doi.org/10.1016/S0005-1098(02)00110-3 +Ienkaran Arasaratnam,Cubature Kalman smoothers.,2011,47,Automatica,10,db/journals/automatica/automatica47.html#ArasaratnamH11,https://doi.org/10.1016/j.automatica.2011.08.005 +Morten Hovd,Relaxing PWQ Lyapunov stability criteria for PWA systems.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#HovdO13,https://doi.org/10.1016/j.automatica.2012.10.013 +Zhen Wu,A general maximum principle for optimal control of forward-backward stochastic systems.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#Wu13,https://doi.org/10.1016/j.automatica.2013.02.005 +Romeo Ortega,Adaptive motion control of rigid robots: A tutorial.,1989,25,Automatica,6,db/journals/automatica/automatica25.html#OrtegaS89,https://doi.org/10.1016/0005-1098(89)90054-X +Thomas Meurer,Tracking control for boundary controlled parabolic PDEs with varying parameters: Combining backstepping and differential flatness.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#MeurerK09,https://doi.org/10.1016/j.automatica.2009.01.006 +Ye Wang,Set-membership approach and Kalman observer based on zonotopes for discrete-time descriptor systems.,2018,93,Automatica,,db/journals/automatica/automatica93.html#WangPC18,https://doi.org/10.1016/j.automatica.2018.03.082 +Alexandre R. Mesquita,Redundant data transmission in control/estimation over lossy networks.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#MesquitaHN12,https://doi.org/10.1016/j.automatica.2012.06.009 +Nan Xiao 0001,Stabilization of Markov jump linear systems using quantized state feedback.,2010,46,Automatica,10,db/journals/automatica/automatica46.html#XiaoXF10,https://doi.org/10.1016/j.automatica.2010.06.018 +Laura Menini,A Newton-like algorithm to compute the inverse of a nonlinear map that converges in finite time.,2018,89,Automatica,,db/journals/automatica/automatica89.html#MeniniPT18,https://doi.org/10.1016/j.automatica.2017.12.021 +Aneel Tanwani,Determinability and state estimation for switched differential-algebraic equations.,2017,76,Automatica,,db/journals/automatica/automatica76.html#TanwaniT17,https://doi.org/10.1016/j.automatica.2016.10.024 +D. F. Liang,Authors' reply.,1979,15,Automatica,1,db/journals/automatica/automatica15.html#LiangC79,https://doi.org/10.1016/0005-1098(79)90096-7 +Vasile Dragan,Optimal H2 filtering for a class of linear stochastic systems with sampling.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#DraganS12,https://doi.org/10.1016/j.automatica.2012.06.089 +Atreyee Kundu,Generalized switching signals for input-to-state stability of switched systems.,2016,64,Automatica,,db/journals/automatica/automatica64.html#KunduCL16,https://doi.org/10.1016/j.automatica.2015.11.027 +H. Y. Zhang,Fuzzy artmap neural network and its application to fault diagnosis of navigation systems.,2001,37,Automatica,7,db/journals/automatica/automatica37.html#ZhangCCY01,https://doi.org/10.1016/S0005-1098(01)00058-9 +Alaleh Vafaei,A chain observer for nonlinear long constant delay systems: A matrix inequality approach.,2016,65,Automatica,,db/journals/automatica/automatica65.html#VafaeiY16,https://doi.org/10.1016/j.automatica.2015.11.012 +Jee-Hun Park,Output feedback model predictive control for LPV systems based on quasi-min-max algorithm.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#ParkKS11,https://doi.org/10.1016/j.automatica.2011.06.015 +Cédric Langbort,Diagonal stability of stochastic systems subject to nonlinear disturbances and diagonal H2 norms.,2011,47,Automatica,7,db/journals/automatica/automatica47.html#LangbortU11,https://doi.org/10.1016/j.automatica.2011.02.019 +J. H. Lee,Worst-case formulations of model predictive control for systems with bounded parameters.,1997,33,Automatica,5,db/journals/automatica/automatica33.html#LeeY97,https://doi.org/10.1016/S0005-1098(96)00255-5 +Rajesh Bansal,Simultaneous design of measurement and control strategies for stochastic systems with feedback.,1989,25,Automatica,5,db/journals/automatica/automatica25.html#BansalB89,https://doi.org/10.1016/0005-1098(89)90024-1 +Chengpu Yu,Data-driven fault estimation of non-minimum phase LTI systems.,2018,92,Automatica,,db/journals/automatica/automatica92.html#YuV18,https://doi.org/10.1016/j.automatica.2018.03.035 +David John Hill,Nonlinear control systems: An introduction: A. Isidori.,1987,23,Automatica,3,db/journals/automatica/automatica23.html#Hill87,https://doi.org/10.1016/0005-1098(87)90019-7 +Vassilis L. Syrmos,A geometric approach to proportional-plus-derivative feedback using quotient and partitioned subspaces.,1991,27,Automatica,2,db/journals/automatica/automatica27.html#SyrmosL91,https://doi.org/10.1016/0005-1098(91)90083-E +Hong Liu,The asymptotic behavior of stochastically perturbed DI SIR epidemic models with saturated incidences.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#LiuYJ12,https://doi.org/10.1016/j.automatica.2012.02.010 +Maopeng Ran,Stabilization of a class of nonlinear systems with actuator saturation via active disturbance rejection control.,2016,63,Automatica,,db/journals/automatica/automatica63.html#RanWD16,https://doi.org/10.1016/j.automatica.2015.10.010 +ülle Kotta,Transfer equivalence and realization of nonlinear higher order input-output difference equations.,2001,37,Automatica,11,db/journals/automatica/automatica37.html#KottaZL01,https://doi.org/10.1016/S0005-1098(01)00144-3 +Svante Gunnarsson,On the design of ILC algorithms using optimization.,2001,37,Automatica,12,db/journals/automatica/automatica37.html#GunnarssonN01,https://doi.org/10.1016/S0005-1098(01)00154-6 +Rudolf Kulhavý,Statistical analysis and control of dynamic systems : H. Akaike and T. Nakagawa.,1991,27,Automatica,1,db/journals/automatica/automatica27.html#Kulhavy91,https://doi.org/10.1016/0005-1098(91)90027-Y +Young Ho Kim,Intelligent optimal control of robotic manipulators using neural networks.,2000,36,Automatica,9,db/journals/automatica/automatica36.html#KimLD00,https://doi.org/10.1016/S0005-1098(00)00045-5 +Xuerong Mao,Stabilization and destabilization of hybrid systems of stochastic differential equations.,2007,43,Automatica,2,db/journals/automatica/automatica43.html#MaoYY07,https://doi.org/10.1016/j.automatica.2006.09.006 +Chaohong Cai,Converting chaos into periodic motion by state feedback control.,2002,38,Automatica,11,db/journals/automatica/automatica38.html#CaiXX02,https://doi.org/10.1016/S0005-1098(02)00078-X +Do-Wan Kim,Effective digital implementation of fuzzy control systems based on approximate discrete-time models.,2007,43,Automatica,10,db/journals/automatica/automatica43.html#KimPJ07,https://doi.org/10.1016/j.automatica.2007.01.025 +John F. Coales,Victor Broïda (1907-1976).,1977,13,Automatica,5,db/journals/automatica/automatica13.html#Coales77,https://doi.org/10.1016/0005-1098(77)90066-8 +Christopher I. Byrnes,On the attitude stabilization of rigid spacecraft.,1991,27,Automatica,1,db/journals/automatica/automatica27.html#ByrnesI91,https://doi.org/10.1016/0005-1098(91)90008-P +George J. Pappas,Bisimilar linear systems.,2003,39,Automatica,12,db/journals/automatica/automatica39.html#Pappas03,https://doi.org/10.1016/j.automatica.2003.07.003 +Josef Böhm,Uncertain models and robust control: Alexander Weinmann.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#Bohm93,https://doi.org/10.1016/0005-1098(93)90035-R +Mustapha Ait Rami,Positivity of discrete singular systems and their stability: An LP-based approach.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#RamiN14,https://doi.org/10.1016/j.automatica.2013.10.011 +Edouard Leclercq,Feasibility of piecewise-constant control sequences for timed continuous Petri nets.,2013,49,Automatica,12,db/journals/automatica/automatica49.html#LeclercqL13,https://doi.org/10.1016/j.automatica.2013.09.017 +Zhuo-Heng He,A system of quaternary coupled Sylvester-type real quaternion matrix equations.,2018,87,Automatica,,db/journals/automatica/automatica87.html#HeWZ18,https://doi.org/10.1016/j.automatica.2017.09.008 +Alicia Esparza,Asymptotic statistical analysis for model-based control design strategies.,2011,47,Automatica,5,db/journals/automatica/automatica47.html#EsparzaARG11,https://doi.org/10.1016/j.automatica.2011.01.058 +Andrzej Banaszuk,An adaptive algorithm for control of combustion instability.,2004,40,Automatica,11,db/journals/automatica/automatica40.html#BanaszukAKJ04,https://doi.org/10.1016/j.automatica.2004.06.008 +Yan Liang 0001,Multi-rate stochastic H INFINITY filtering for networked multi-sensor fusion.,2010,46,Automatica,2,db/journals/automatica/automatica46.html#LiangCP10,https://doi.org/10.1016/j.automatica.2009.11.019 +Hiroaki Kobayashi,Adaptive neural network control of tendon-driven mechanisms with elastic tendons.,2003,39,Automatica,9,db/journals/automatica/automatica39.html#KobayashiO03,https://doi.org/10.1016/S0005-1098(03)00142-0 +Alessandro Vittorio Papadopoulos,Model reduction of switched affine systems.,2016,70,Automatica,,db/journals/automatica/automatica70.html#PapadopoulosP16,https://doi.org/10.1016/j.automatica.2016.03.019 +Yiming Wan,Data-driven robust receding horizon fault estimation.,2016,71,Automatica,,db/journals/automatica/automatica71.html#WanKVG16,https://doi.org/10.1016/j.automatica.2016.04.020 +Alina Voda Besançon,Analysis of a two-relay system configuration with application to Coulomb friction identification.,1999,35,Automatica,8,db/journals/automatica/automatica35.html#BesanconB99,https://doi.org/10.1016/S0005-1098(99)00049-7 +Ping Zhang 0007,An integrated trade-off design of observer based fault detection systems.,2008,44,Automatica,7,db/journals/automatica/automatica44.html#ZhangD08,https://doi.org/10.1016/j.automatica.2007.11.021 +Bruno Gaujal,Optimal stationary behavior for a class of timed continuous Petri nets.,2004,40,Automatica,9,db/journals/automatica/automatica40.html#GaujalG04,https://doi.org/10.1016/j.automatica.2004.04.018 +Shigemasa Takai,Maximizing robustness of supervisors for partially observed discrete event systems.,2004,40,Automatica,3,db/journals/automatica/automatica40.html#Takai04,https://doi.org/10.1016/j.automatica.2003.11.006 +Qing-Long Han,A new delay-dependent absolute stability criterion for a class of nonlinear neutral systems.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#Han08,https://doi.org/10.1016/j.automatica.2007.04.009 +Jiangfeng Zhang,A model predictive control approach to the periodic implementation of the solutions of the optimal dynamic resource allocation problem.,2011,47,Automatica,2,db/journals/automatica/automatica47.html#ZhangX11,https://doi.org/10.1016/j.automatica.2010.10.049 +Tao Shen,Stability of fixed-point state-space digital filters using two's complement arithmetic: Further insight.,2010,46,Automatica,12,db/journals/automatica/automatica46.html#ShenY10,https://doi.org/10.1016/j.automatica.2010.08.017 +Bo Huang 0008,Synthesis of Petri net supervisors for FMS via redundant constraint elimination.,2015,61,Automatica,,db/journals/automatica/automatica61.html#HuangZZ15,https://doi.org/10.1016/j.automatica.2015.08.011 +Qiao Zhu,Iterative learning control design for linear discrete-time systems with multiple high-order internal models.,2015,62,Automatica,,db/journals/automatica/automatica62.html#ZhuXHH15,https://doi.org/10.1016/j.automatica.2015.09.017 +Martin J. Corless,On a class of generalized eigenvalue problems and equivalent eigenvalue problems that arise in systems and control theory.,2011,47,Automatica,3,db/journals/automatica/automatica47.html#CorlessS11,https://doi.org/10.1016/j.automatica.2010.10.009 +Song Fang,Design constraints and limits of networked feedback in disturbance attenuation: An information-theoretic analysis.,2017,79,Automatica,,db/journals/automatica/automatica79.html#FangCI17,https://doi.org/10.1016/j.automatica.2017.01.005 +Behzad Samadi,A duality-based convex optimization approach to L2 -gain control of piecewise affine slab differential inclusions.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#SamadiR09,https://doi.org/10.1016/j.automatica.2008.10.032 +Po-Feng Wu,On the geometric structures of the H∞ controllers for descriptor systems.,2018,95,Automatica,,db/journals/automatica/automatica95.html#WuYW18,https://doi.org/10.1016/j.automatica.2018.06.018 +Philippe Lemmerling,Misfit versus latency.,2001,37,Automatica,12,db/journals/automatica/automatica37.html#LemmerlingM01,https://doi.org/10.1016/S0005-1098(01)00180-7 +Jan Goos,Continuous-time identification of periodically parameter-varying state space models.,2016,71,Automatica,,db/journals/automatica/automatica71.html#GoosP16,https://doi.org/10.1016/j.automatica.2016.04.013 +Yiguang Hong,Distributed observers design for leader-following control of multi-agent networks.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#HongCB08,https://doi.org/10.1016/j.automatica.2007.07.004 +Jing Yuan 0003,Composite adaptive control of flexible joint robots.,1993,29,Automatica,3,db/journals/automatica/automatica29.html#YuanS93,https://doi.org/10.1016/0005-1098(93)90058-2 +Mario Milanese,Direct data-driven filter design for uncertain LTI systems with bounded noise.,2010,46,Automatica,11,db/journals/automatica/automatica46.html#MilaneseRT10,https://doi.org/10.1016/j.automatica.2010.07.006 +Nathan van de Wouw,Model reduction for delay differential equations with guaranteed stability and error bound.,2015,55,Automatica,,db/journals/automatica/automatica55.html#WouwMB15,https://doi.org/10.1016/j.automatica.2015.02.031 +Raúl Ordóñez,Control of discrete time nonlinear systems with a time-varying structure.,2003,39,Automatica,3,db/journals/automatica/automatica39.html#OrdonezP03,https://doi.org/10.1016/S0005-1098(02)00249-2 +Tengfei Liu,Lyapunov formulation of ISS cyclic-small-gain in continuous-time dynamical networks.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#LiuHJ11,https://doi.org/10.1016/j.automatica.2011.06.018 +Vladimír Kucera,Optimal control : Frank L. Lewis.,1988,24,Automatica,1,db/journals/automatica/automatica24.html#KuceraO88,https://doi.org/10.1016/0005-1098(88)90015-5 +Li-Xin Wang,Modeling and control of hierarchical systems with fuzzy systems.,1997,33,Automatica,6,db/journals/automatica/automatica33.html#Wang97,https://doi.org/10.1016/S0005-1098(97)00012-5 +Hüseyin Akçay,Synthesis of complete rational orthonormal bases with prescribed asymptotic order.,2001,37,Automatica,4,db/journals/automatica/automatica37.html#Akcay01,https://doi.org/10.1016/S0005-1098(00)00187-4 +Wen-Xiao Zhao,"Comments on ""Identification of Hammerstein nonlinear ARMAX systems"".",2007,43,Automatica,8,db/journals/automatica/automatica43.html#ZhaoF07,https://doi.org/10.1016/j.automatica.2006.12.021 +Zhiguang Feng,α-Dissipativity analysis of singular time-delay systems.,2011,47,Automatica,11,db/journals/automatica/automatica47.html#FengLG11,https://doi.org/10.1016/j.automatica.2011.06.025 +Thierry Floquet,State and unknown input estimation for linear discrete-time systems.,2006,42,Automatica,11,db/journals/automatica/automatica42.html#FloquetB06,https://doi.org/10.1016/j.automatica.2006.05.030 +Hannu T. Toivonen,A descent anderson-moore algorithm for optimal decentralized control.,1985,21,Automatica,6,db/journals/automatica/automatica21.html#ToivonenM85,https://doi.org/10.1016/0005-1098(85)90048-2 +Arash Kh. Sichani,A numerical approach to optimal coherent quantum LQG controller design using gradient descent.,2017,85,Automatica,,db/journals/automatica/automatica85.html#SichaniVP17,https://doi.org/10.1016/j.automatica.2017.07.070 +Koen Tiels,Wiener system identification with generalized orthonormal basis functions.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#TielsS14,https://doi.org/10.1016/j.automatica.2014.10.010 +Dragan Stokic,Practical stabilization of robotic systems by decentralized control.,1984,20,Automatica,3,db/journals/automatica/automatica20.html#StokicV84,https://doi.org/10.1016/0005-1098(84)90050-5 +D. Y. Ohm,Structural synthesis of multivariable controllers.,1985,21,Automatica,1,db/journals/automatica/automatica21.html#OhmHB85,https://doi.org/10.1016/0005-1098(85)90097-4 +Rachid Malti,A note on ℓ6*pℓ6*p-norms of fractional systems.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#Malti13,https://doi.org/10.1016/j.automatica.2013.06.002 +Ulf Holmberg,On compensation of nonminimum-phase zeros.,1995,31,Automatica,10,db/journals/automatica/automatica31.html#HolmbergMPL95,https://doi.org/10.1016/0005-1098(95)00041-T +Ki Baek Kim,Implementation of stabilizing receding horizon controls for time-varying systems.,2002,38,Automatica,10,db/journals/automatica/automatica38.html#Kim02,https://doi.org/10.1016/S0005-1098(02)00087-0 +Giuseppe C. Calafiore,A probabilistic analytic center cutting plane method for feasibility of uncertain LMIs.,2007,43,Automatica,12,db/journals/automatica/automatica43.html#CalafioreD07,https://doi.org/10.1016/j.automatica.2007.04.003 +Colin Neil Jones,A logarithmic-time solution to the point location problem for parametric linear programming.,2006,42,Automatica,12,db/journals/automatica/automatica42.html#JonesGR06,https://doi.org/10.1016/j.automatica.2006.07.010 +Fengwei Chen,Issues in separable identification of continuous-time models with time-delay.,2018,94,Automatica,,db/journals/automatica/automatica94.html#ChenZGG18,https://doi.org/10.1016/j.automatica.2018.04.014 +Xiaoxu Wang,A Gaussian approximation recursive filter for nonlinear systems with correlated noises.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#WangLPY12,https://doi.org/10.1016/j.automatica.2012.06.035 +I. N. Kar,Design of static output feedback controller for uncertain systems.,1999,35,Automatica,1,db/journals/automatica/automatica35.html#Kar99,https://doi.org/10.1016/S0005-1098(98)00170-8 +Bruce A. Francis,Algebraic and topological aspects of the regulator problem for lumped linear systems.,1983,19,Automatica,1,db/journals/automatica/automatica19.html#FrancisV83,https://doi.org/10.1016/0005-1098(83)90078-X +Lantao Xing,Adaptive compensation for actuator failures with event-triggered input.,2017,85,Automatica,,db/journals/automatica/automatica85.html#XingWLSC17,https://doi.org/10.1016/j.automatica.2017.07.061 +Giuseppe Carlo Calafiore,A probabilistic framework for problems with real structured uncertainty in systems and control.,2002,38,Automatica,8,db/journals/automatica/automatica38.html#CalafioreD02,https://doi.org/10.1016/S0005-1098(02)00015-8 +Madan M. Gupta,On dynamic behavior of stochastic systems with discontinuities in parameters.,1976,12,Automatica,1,db/journals/automatica/automatica12.html#GuptaN76,https://doi.org/10.1016/0005-1098(76)90071-6 +Jacob van der Woude,Disturbance decoupling by measurement feedback for structured transfer matrix systems.,1996,32,Automatica,3,db/journals/automatica/automatica32.html#Woude96,https://doi.org/10.1016/0005-1098(95)00157-3 +Richard G. Hakvoort,Consistent parameter bounding identification for linearly parametrized model sets.,1995,31,Automatica,7,db/journals/automatica/automatica31.html#HakvoortH95,https://doi.org/10.1016/0005-1098(95)00173-T +Mario Sassano,Observer design for range and orientation identification.,2010,46,Automatica,8,db/journals/automatica/automatica46.html#SassanoCA10,https://doi.org/10.1016/j.automatica.2010.05.018 +George S. Axelby,On book reviews - A new editor.,1987,23,Automatica,1,db/journals/automatica/automatica23.html#AxelbyL87,https://doi.org/10.1016/0005-1098(87)90113-0 +Bruno Picasso,An MPC approach to the design of two-layer hierarchical control systems.,2010,46,Automatica,5,db/journals/automatica/automatica46.html#PicassoVSC10,https://doi.org/10.1016/j.automatica.2010.02.013 +Shreekant Gayaka,Global stabilization of a chain of integrators with input saturation and disturbances: A new approach.,2012,48,Automatica,7,db/journals/automatica/automatica48.html#GayakaLY12,https://doi.org/10.1016/j.automatica.2011.11.012 +Tamer Basar,Change of an editorship and renaming of an area.,2006,42,Automatica,1,db/journals/automatica/automatica42.html#Basar06,https://doi.org/10.1016/j.automatica.2005.09.003 +Octavian C. Pastravanu,Max-type copositive Lyapunov functions for switching positive linear systems.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#PastravanuM14,https://doi.org/10.1016/j.automatica.2014.10.043 +G. R. Duan,Solution to matrix equation AV + BW = EVF and eigenstructure assignment for descriptor systems.,1992,28,Automatica,3,db/journals/automatica/automatica28.html#Duan92,https://doi.org/10.1016/0005-1098(92)90191-H +Rudy Cepeda-Gomez,Some special cases in the stability analysis of multi-dimensional time-delay systems using the matrix Lambert W function.,2015,53,Automatica,,db/journals/automatica/automatica53.html#Cepeda-GomezM15,https://doi.org/10.1016/j.automatica.2015.01.016 +Masato Koda,Estimation of urban air pollution.,1978,14,Automatica,6,db/journals/automatica/automatica14.html#KodaS78,https://doi.org/10.1016/0005-1098(78)90047-X +Uwe Küchler,On guaranteed parameter estimation of a multiparameter linear regression process.,2010,46,Automatica,4,db/journals/automatica/automatica46.html#KuchlerV10,https://doi.org/10.1016/j.automatica.2010.01.003 +Bao-Zhu Guo,Dynamic stabilization of an Euler-Bernoulli beam equation with time delay in boundary observation.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#GuoY09,https://doi.org/10.1016/j.automatica.2009.02.004 +Bin Yao,Adaptive robust control of SISO nonlinear systems in a semi-strict feedback form.,1997,33,Automatica,5,db/journals/automatica/automatica33.html#YaoT97,https://doi.org/10.1016/S0005-1098(96)00222-1 +S. P. Chan,An approach to perturbation compensation for variable structure systems.,1996,32,Automatica,3,db/journals/automatica/automatica32.html#Chan96a,https://doi.org/10.1016/0005-1098(95)00161-1 +Vladimir Dombrovskii,Model predictive control for constrained systems with serially correlated stochastic parameters and portfolio optimization.,2015,54,Automatica,,db/journals/automatica/automatica54.html#DombrovskiiO15,https://doi.org/10.1016/j.automatica.2015.02.021 +Zongli Lin,Output regulation for linear systems subject to input saturation.,1996,32,Automatica,1,db/journals/automatica/automatica32.html#LinSS96,https://doi.org/10.1016/0005-1098(95)00110-7 +J. Vande Vegte,Analysis and synthesis of feedback control systems for the automatic balancing of rotating shaft systems.,1965,2,Automatica,4,db/journals/automatica/automatica2.html#Vegte65,https://doi.org/10.1016/0005-1098(65)90014-2 +George C. Konstantopoulos,Bounded droop controller for parallel operation of inverters.,2015,53,Automatica,,db/journals/automatica/automatica53.html#Konstantopoulos15,https://doi.org/10.1016/j.automatica.2015.01.012 +David Q. Mayne,"Correction to ""Constrained model predictive control: stability and optimality"".",2001,37,Automatica,3,db/journals/automatica/automatica37.html#MayneR01,https://doi.org/10.1016/S0005-1098(00)00173-4 +Henrik Anfinsen,Adaptive control of linear 2 and#215* 2 hyperbolic systems.,2018,87,Automatica,,db/journals/automatica/automatica87.html#AnfinsenA18,https://doi.org/10.1016/j.automatica.2017.09.020 +Karl Johan åström,Swinging up a pendulum by energy control.,2000,36,Automatica,2,db/journals/automatica/automatica36.html#AstromF00,https://doi.org/10.1016/S0005-1098(99)00140-5 +Francesco Carravetta,Suboptimal stochastic linear feedback control of linear systems with state- and control-dependent noise: The incomplete information case.,2007,43,Automatica,5,db/journals/automatica/automatica43.html#CarravettaM07,https://doi.org/10.1016/j.automatica.2006.09.010 +Hassan K. Khalil,Asymptotic stability of nonlinear multiparameter singularly perturbed systems.,1981,17,Automatica,6,db/journals/automatica/automatica17.html#Khalil81,https://doi.org/10.1016/0005-1098(81)90067-4 +Giuseppe De Nicolao,Fast spline smoothing via spectral factorization concepts.,2000,36,Automatica,11,db/journals/automatica/automatica36.html#NicolaoFS00,https://doi.org/10.1016/S0005-1098(00)00100-X +Valery A. Ugrinovskii,Distributed robust estimation over randomly switching networks using H∞ consensus.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#Ugrinovskii13,https://doi.org/10.1016/j.automatica.2012.09.010 +Yong-Yan Cao,Static Output Feedback Stabilization: An ILMI Approach.,1998,34,Automatica,12,db/journals/automatica/automatica34.html#CaoLS98,https://doi.org/10.1016/S0005-1098(98)80021-6 +Xiefu Jiang,On Hinfinity control for linear systems with interval time-varying delay.,2005,41,Automatica,12,db/journals/automatica/automatica41.html#JiangH05,https://doi.org/10.1016/j.automatica.2005.06.012 +Yoshikazu Sawaragi,Statistical prediction of air pollution levels using non-physical models.,1979,15,Automatica,4,db/journals/automatica/automatica15.html#SawaragiSTYOCI79,https://doi.org/10.1016/0005-1098(79)90018-9 +Richard G. Hakvoort,Approximate identification with closed-loop performance criterion and application to LQG feedback design.,1994,30,Automatica,4,db/journals/automatica/automatica30.html#HakvoortSH94,https://doi.org/10.1016/0005-1098(94)90156-2 +Wenying Hou,Consensus conditions for general second-order multi-agent systems with communication delay.,2017,75,Automatica,,db/journals/automatica/automatica75.html#HouFZW17,https://doi.org/10.1016/j.automatica.2016.09.042 +Chang Chieh Hang,Reduced order process modelling in self-tuning control.,1991,27,Automatica,3,db/journals/automatica/automatica27.html#HangC91,https://doi.org/10.1016/0005-1098(91)90110-N +Do Wan Kim,Stability connection between sampled-data fuzzy control systems with quantization and their approximate discrete-time model.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#KimL09,https://doi.org/10.1016/j.automatica.2009.02.009 +Hyo-Sung Ahn,"Authors' reply to ""Comments on 'Necessary and sufficient stability condition of fractional-order interval linear systems""' [Automatica 44 (2008) 2985-2988].",2014,50,Automatica,10,db/journals/automatica/automatica50.html#AhnC14,https://doi.org/10.1016/j.automatica.2014.08.014 +Ian Postlethwaite,Sensitivity of the characteristic gain loci.,1982,18,Automatica,6,db/journals/automatica/automatica18.html#Postlethwaite82,https://doi.org/10.1016/0005-1098(82)90059-0 +Håkan Hjalmarsson,Closed loop experiment design for linear time invariant dynamical systems via LMIs.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#HjalmarssonJ08,https://doi.org/10.1016/j.automatica.2007.06.022 +Sven Nõmm,Further results on identifiability of discrete-time nonlinear systems.,2016,68,Automatica,,db/journals/automatica/automatica68.html#NommM16,https://doi.org/10.1016/j.automatica.2016.01.054 +Lu Lu,A performance oriented multi-loop constrained adaptive robust tracking control of one-degree-of-freedom mechanical systems: Theory and experiments.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#LuY14a,https://doi.org/10.1016/j.automatica.2014.02.003 +Vakhtang Lomadze,The PBH test for multidimensional LTID systems.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#Lomadze13a,https://doi.org/10.1016/j.automatica.2013.06.010 +Robin M. C. De Keyser,A comparative study of self-adaptive long-range predictive control methods.,1988,24,Automatica,2,db/journals/automatica/automatica24.html#KeyserVD88,https://doi.org/10.1016/0005-1098(88)90024-6 +P. Rousseaux,Dynamic state prediction and hierarchical filtering for power system state estimation.,1988,24,Automatica,5,db/journals/automatica/automatica24.html#RousseauxMCR88,https://doi.org/10.1016/0005-1098(88)90108-2 +Paul A. S. De Wit,Indirect field-oriented control of induction motors is robustly globally stable.,1996,32,Automatica,10,db/journals/automatica/automatica32.html#WitOM96,https://doi.org/10.1016/0005-1098(96)00070-2 +Weiming Xiang,Stability analysis and L1-gain characterization for switched positive systems under dwell-time constraint.,2017,85,Automatica,,db/journals/automatica/automatica85.html#XiangLS17,https://doi.org/10.1016/j.automatica.2017.07.016 +Daniele Bernardini,Energy-aware robust model predictive control based on noisy wireless sensors.,2012,48,Automatica,1,db/journals/automatica/automatica48.html#BernardiniB12,https://doi.org/10.1016/j.automatica.2011.09.022 +David Di Ruscio,A weighted view on the partial least-squares algorithm.,2000,36,Automatica,6,db/journals/automatica/automatica36.html#Ruscio00,https://doi.org/10.1016/S0005-1098(99)00210-1 +Alain Sarlette,Control limitations from distributed sensing: Theory and Extremely Large Telescope application.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#SarletteS14,https://doi.org/10.1016/j.automatica.2013.12.014 +João P. Hespanha,Stabilization of nonholonomic integrators via logic-based switching.,1999,35,Automatica,3,db/journals/automatica/automatica35.html#HespanhaM99,https://doi.org/10.1016/S0005-1098(98)00166-6 +Feng-Fei Jin,Lyapunov approach to output feedback stabilization for the Euler-Bernoulli beam equation with boundary input disturbance.,2015,52,Automatica,,db/journals/automatica/automatica52.html#JinG15,https://doi.org/10.1016/j.automatica.2014.10.123 +Siyang Gao,Robust ranking and selection with optimal computing budget allocation.,2017,81,Automatica,,db/journals/automatica/automatica81.html#GaoXZC17,https://doi.org/10.1016/j.automatica.2017.03.019 +Hyeong Soo Chang,Value set iteration for Markov decision processes.,2014,50,Automatica,7,db/journals/automatica/automatica50.html#Chang14b,https://doi.org/10.1016/j.automatica.2014.05.009 +Veijo Kaitala,Nonuniqueness of no-memory feedback equilibria in a fishery resource game.,1989,25,Automatica,4,db/journals/automatica/automatica25.html#Kaitala89,https://doi.org/10.1016/0005-1098(89)90100-3 +Changzhi Wu,Min-max optimal control of linear systems with uncertainty and terminal state constraints.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#WuTW13,https://doi.org/10.1016/j.automatica.2013.02.052 +Holger Rootzén,Consistency in least-squares estimation: A Bayesian approach.,1984,20,Automatica,4,db/journals/automatica/automatica20.html#RootzenS84,https://doi.org/10.1016/0005-1098(84)90105-5 +Jiaxiang Zhang,Light-based circadian rhythm control: Entrainment and optimization.,2016,68,Automatica,,db/journals/automatica/automatica68.html#ZhangQWJ16,https://doi.org/10.1016/j.automatica.2016.01.052 +Fernand Badano,Control of a planar fine positioner actuated by metal bellows.,1994,30,Automatica,11,db/journals/automatica/automatica30.html#BadanoBT94,https://doi.org/10.1016/0005-1098(94)90071-X +Mark Haring,On the accuracy of gradient estimation in extremum-seeking control using small perturbations.,2018,95,Automatica,,db/journals/automatica/automatica95.html#HaringJ18,https://doi.org/10.1016/j.automatica.2018.05.001 +Youyi Wang,Transient stabilization of power systems with an adaptive control law.,1994,30,Automatica,9,db/journals/automatica/automatica30.html#WangHMG94,https://doi.org/10.1016/0005-1098(94)90005-1 +ángel F. García-Fernández,Adaptive unscented Gaussian likelihood approximation filter.,2015,54,Automatica,,db/journals/automatica/automatica54.html#Garcia-Fernandez15,https://doi.org/10.1016/j.automatica.2015.02.005 +Augusto Ferrante,The generalized continuous algebraic Riccati equation and impulse-free continuous-time LQ optimal control.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#FerranteN14,https://doi.org/10.1016/j.automatica.2014.02.014 +Junjie Fu,Observer-based finite-time coordinated tracking for general linear multi-agent systems.,2016,66,Automatica,,db/journals/automatica/automatica66.html#FuW16,https://doi.org/10.1016/j.automatica.2015.12.025 +J. V. Candy,Wave estimation: A model-based identification approach.,1990,26,Automatica,1,db/journals/automatica/automatica26.html#CandyS90,https://doi.org/10.1016/0005-1098(90)90166-F +Paolo Frasca,On the mean square error of randomized averaging algorithms.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#FrascaH13,https://doi.org/10.1016/j.automatica.2013.04.035 +Prasad Vilas Chanekar,Co-design of linear systems using Generalized Benders Decomposition.,2018,89,Automatica,,db/journals/automatica/automatica89.html#ChanekarCA18,https://doi.org/10.1016/j.automatica.2017.12.009 +Kushal Mukherjee,Real-time adaptation of decision thresholds in sensor networks for detection of moving targets.,2011,47,Automatica,1,db/journals/automatica/automatica47.html#MukherjeeRWGP11,https://doi.org/10.1016/j.automatica.2010.10.031 +Kai Cai,Average consensus on general strongly connected digraphs.,2012,48,Automatica,11,db/journals/automatica/automatica48.html#CaiI12a,https://doi.org/10.1016/j.automatica.2012.08.003 +Xiaodi Li,Effect of delayed impulses on input-to-state stability of nonlinear systems.,2017,76,Automatica,,db/journals/automatica/automatica76.html#LiZS17,https://doi.org/10.1016/j.automatica.2016.08.009 +Jitendra K. Tugnait,On closed-loop system identification using polyspectral analysis given noisy input-output time-domain data.,2000,36,Automatica,12,db/journals/automatica/automatica36.html#TugnaitZ00,https://doi.org/10.1016/S0005-1098(00)00104-7 +Jun-Fei Qiao,Identification and modeling of nonlinear dynamical systems using a novel self-organizing RBF-based approach.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#QiaoH12,https://doi.org/10.1016/j.automatica.2012.05.034 +Tamer Basar,Automatica Prize Paper Awards 2011.,2011,47,Automatica,11,db/journals/automatica/automatica47.html#Basar11a,https://doi.org/10.1016/j.automatica.2011.09.053 +Mark Cannon,Enlargement of polytopic terminal region in NMPC by interpolation and partial invariance.,2004,40,Automatica,2,db/journals/automatica/automatica40.html#CannonKD04,https://doi.org/10.1016/j.automatica.2003.10.004 +Hannu T. Toivonen,Minimax robust LQ control of a thermomechanical pulping plant.,1990,26,Automatica,2,db/journals/automatica/automatica26.html#ToivonenT90,https://doi.org/10.1016/0005-1098(90)90128-5 +Lei Zhang,Communication and control co-design for networked control systems.,2006,42,Automatica,6,db/journals/automatica/automatica42.html#ZhangH06,https://doi.org/10.1016/j.automatica.2006.01.022 +Mario Milanese,Optimal estimation theory for dynamic systems with set membership uncertainty: An overview.,1991,27,Automatica,6,db/journals/automatica/automatica27.html#MilaneseV91a,https://doi.org/10.1016/0005-1098(91)90134-N +Dabo Xu,Global adaptive output regulation for a class of nonlinear systems with iISS inverse dynamics using output feedback.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#XuHJ13,https://doi.org/10.1016/j.automatica.2013.03.024 +R. Wade Allen,The man/machine control interface - Pursuit control.,1979,15,Automatica,6,db/journals/automatica/automatica15.html#AllenM79,https://doi.org/10.1016/0005-1098(79)90037-2 +R. Lopezlena Estrada,Fixed poles and disturbance rejecting feedback synthesis.,1999,35,Automatica,10,db/journals/automatica/automatica35.html#EstradaM99,https://doi.org/10.1016/S0005-1098(99)00090-4 +Chengpu Yu,Quantized identification of ARMA systems with colored measurement noise.,2016,66,Automatica,,db/journals/automatica/automatica66.html#YuYX16,https://doi.org/10.1016/j.automatica.2015.12.013 +Vincent Andrieu,A hybrid scheme for reducing peaking in high-gain observers for a class of nonlinear systems.,2016,72,Automatica,,db/journals/automatica/automatica72.html#AndrieuPTZ16,https://doi.org/10.1016/j.automatica.2016.06.013 +M. D. S. Aliyu,On the bounded-real and positive-real conditions for affine nonlinear state-delayed systems and applications to stability.,2006,42,Automatica,2,db/journals/automatica/automatica42.html#AliyuL06,https://doi.org/10.1016/j.automatica.2005.10.005 +Shengyuan Xu,Stabilization of discrete-time singular systems: a matrix inequalities approach.,1999,35,Automatica,9,db/journals/automatica/automatica35.html#XuY99a,https://doi.org/10.1016/S0005-1098(99)00061-8 +Kyriakos G. Vamvoudakis,Online actor-critic algorithm to solve the continuous-time infinite horizon optimal control problem.,2010,46,Automatica,5,db/journals/automatica/automatica46.html#VamvoudakisL10,https://doi.org/10.1016/j.automatica.2010.02.018 +Eyad H. Abed,On participation factors for linear systems.,2000,36,Automatica,10,db/journals/automatica/automatica36.html#AbedLH00,https://doi.org/10.1016/S0005-1098(00)00082-0 +Le Van Hien,A new approach to state bounding for linear time-varying systems with delay and bounded disturbances.,2014,50,Automatica,6,db/journals/automatica/automatica50.html#HienT14,https://doi.org/10.1016/j.automatica.2014.04.025 +Jian Wu 0008,Global finite-time adaptive stabilization for nonlinear systems with multiple unknown control directions.,2016,69,Automatica,,db/journals/automatica/automatica69.html#WuCL16,https://doi.org/10.1016/j.automatica.2016.03.005 +Piotr Myszkorowski,On the stability of discrete-time linear interval systems.,1994,30,Automatica,5,db/journals/automatica/automatica30.html#Myszkorowski94,https://doi.org/10.1016/0005-1098(94)90183-X +F. J. D'Amato,New results for analysis of systems with repeated nonlinearities.,2001,37,Automatica,5,db/journals/automatica/automatica37.html#DAmatoRMJ01,https://doi.org/10.1016/S0005-1098(01)00009-7 +Maziar Izadi,Rigid body attitude estimation based on the Lagrange-d'Alembert principle.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#IzadiS14,https://doi.org/10.1016/j.automatica.2014.08.010 +Jacky Montmain,Dynamic causal model diagnostic reasoning for online technical process supervision.,2000,36,Automatica,8,db/journals/automatica/automatica36.html#MontmainG00,https://doi.org/10.1016/S0005-1098(00)00024-8 +Shaunak D. Bopardikar,On incremental approximate saddle-point computation in zero-sum matrix games.,2016,69,Automatica,,db/journals/automatica/automatica69.html#BopardikarL16,https://doi.org/10.1016/j.automatica.2016.02.018 +T. P. Zhang,Adaptive dynamic surface control of nonlinear systems with unknown dead zone in pure feedback form.,2008,44,Automatica,7,db/journals/automatica/automatica44.html#ZhangG08,https://doi.org/10.1016/j.automatica.2007.11.025 +Thomas Meurer,Flatness-based trajectory planning for diffusion-reaction systems in a parallelepipedon - A spectral approach.,2011,47,Automatica,5,db/journals/automatica/automatica47.html#Meurer11,https://doi.org/10.1016/j.automatica.2011.02.004 +Ryan C. Loxton,Optimal control problems with a continuous inequality constraint on the state and the control.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#LoxtonTRY09,https://doi.org/10.1016/j.automatica.2009.05.029 +Petter Tøndel,Evaluation of piecewise affine control via binary search tree.,2003,39,Automatica,5,db/journals/automatica/automatica39.html#TondelJB03a,https://doi.org/10.1016/S0005-1098(02)00308-4 +Henk A. P. Blom,Exact Bayesian filter and joint IMM coupled PDA tracking of maneuvering targets from possibly missing and false measurements.,2006,42,Automatica,1,db/journals/automatica/automatica42.html#BlomB06,https://doi.org/10.1016/j.automatica.2005.08.008 +Fangfei Li,On stabilization and set stabilization of multivalued logical systems.,2017,80,Automatica,,db/journals/automatica/automatica80.html#LiLXZ17,https://doi.org/10.1016/j.automatica.2017.01.032 +Stefano Chiaverini,Bandwidth vs. gains design of H INFINITY tracking controllers for current-fed induction motors.,2002,38,Automatica,9,db/journals/automatica/automatica38.html#ChiaveriniF02,https://doi.org/10.1016/S0005-1098(02)00052-3 +Haichao Gui,Global finite-time attitude consensus of leader-following spacecraft systems based on distributed observers.,2018,91,Automatica,,db/journals/automatica/automatica91.html#GuiR18,https://doi.org/10.1016/j.automatica.2018.01.037 +Masashi Wakaiki,Stability analysis of sampled-data switched systems with quantization.,2016,69,Automatica,,db/journals/automatica/automatica69.html#WakaikiY16,https://doi.org/10.1016/j.automatica.2016.02.025 +Heather Arneson,A linear programming approach to routing control in networks of constrained nonlinear positive systems with concave flow rates.,2016,68,Automatica,,db/journals/automatica/automatica68.html#ArnesonDL16,https://doi.org/10.1016/j.automatica.2016.01.067 +Mingxuan Sun,Partial-period adaptive repetitive control by symmetry.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#Sun12a,https://doi.org/10.1016/j.automatica.2012.05.065 +Hongli Dong,Variance-constrained H∞ control for a class of nonlinear stochastic discrete time-varying systems: The event-triggered design.,2016,72,Automatica,,db/journals/automatica/automatica72.html#DongWSD16,https://doi.org/10.1016/j.automatica.2016.05.012 +Miroslav Kárný,Towards fully probabilistic control design.,1996,32,Automatica,12,db/journals/automatica/automatica32.html#Karny96,https://doi.org/10.1016/S0005-1098(96)80009-4 +Francis J. Doyle III,Nonlinear model-based control using second-order Volterra models.,1995,31,Automatica,5,db/journals/automatica/automatica31.html#DoyleOP95,https://doi.org/10.1016/0005-1098(94)00150-H +Konstantin Zimenko,A note on delay robustness for homogeneous systems with negative degree.,2017,79,Automatica,,db/journals/automatica/automatica79.html#ZimenkoEPP17,https://doi.org/10.1016/j.automatica.2017.01.036 +Brett Ninness,Quantifying the accuracy of Hammerstein model estimation.,2002,38,Automatica,12,db/journals/automatica/automatica38.html#NinnessG02,https://doi.org/10.1016/S0005-1098(02)00101-2 +Byung-Hun Lee,Distributed formation control via global orientation estimation.,2016,73,Automatica,,db/journals/automatica/automatica73.html#LeeA16,https://doi.org/10.1016/j.automatica.2016.06.030 +Björn Wahlström,A distributed control system and its application to a board mill.,1983,19,Automatica,1,db/journals/automatica/automatica19.html#WahlstromJONLL83,https://doi.org/10.1016/0005-1098(83)90070-5 +M. K. K. Cevik,The regulator problem with robust stability.,1995,31,Automatica,10,db/journals/automatica/automatica31.html#CevikS95,https://doi.org/10.1016/0005-1098(95)00060-A +S. Barnett,Linear system theory and design: By C.-T. Chen.,1986,22,Automatica,3,db/journals/automatica/automatica22.html#Barnett86,https://doi.org/10.1016/0005-1098(86)90039-7 +Ya Zhang 0001,Consentability and protocol design of multi-agent systems with stochastic switching topology.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#ZhangT09,https://doi.org/10.1016/j.automatica.2008.11.005 +Fouad Giri,Parameter identification of a class of Hammerstein plants.,2001,37,Automatica,5,db/journals/automatica/automatica37.html#GiriCR01,https://doi.org/10.1016/S0005-1098(01)00010-3 +Stephen H. Lane,Flight control design using non-linear inverse dynamics.,1988,24,Automatica,4,db/journals/automatica/automatica24.html#LaneS88,https://doi.org/10.1016/0005-1098(88)90092-1 +Giovanni Marro,H2-optimal rejection with preview in the continuous-time domain.,2005,41,Automatica,5,db/journals/automatica/automatica41.html#MarroZ05,https://doi.org/10.1016/j.automatica.2004.11.030 +Marco A. Arteaga,Robot control and parameter estimation with only joint position measurements.,2003,39,Automatica,1,db/journals/automatica/automatica39.html#Arteaga03,https://doi.org/10.1016/S0005-1098(02)00166-8 +David J. Clements,Monotonicity of the optimal cost in the discrete-time regulator problem and Schur complements.,2001,37,Automatica,11,db/journals/automatica/automatica37.html#ClementsW01,https://doi.org/10.1016/S0005-1098(01)00147-9 +Sean Summers,Verification of discrete time stochastic hybrid systems: A stochastic reach-avoid decision problem.,2010,46,Automatica,12,db/journals/automatica/automatica46.html#SummersL10,https://doi.org/10.1016/j.automatica.2010.08.006 +David H. Owens 0001,Robust sampled regulators for stable systems from plant step data.,1984,20,Automatica,4,db/journals/automatica/automatica20.html#OwensC84,https://doi.org/10.1016/0005-1098(84)90104-3 +Zehui Mao,Fault-tolerant control for a class of nonlinear sampled-data systems via a Euler approximate observer.,2010,46,Automatica,11,db/journals/automatica/automatica46.html#MaoJS10,https://doi.org/10.1016/j.automatica.2010.06.052 +Vincent Andrieu,Self-triggered continuous-discrete observer with updated sampling period.,2015,62,Automatica,,db/journals/automatica/automatica62.html#AndrieuNSV15,https://doi.org/10.1016/j.automatica.2015.09.018 +J. D. Gifford,Design of a control system for a hot strip finishing mill.,1969,5,Automatica,4,db/journals/automatica/automatica5.html#GiffordL69,https://doi.org/10.1016/0005-1098(69)90106-X +I. Emre Köse,Scheduled controllers for linear systems with bounded actuators.,2003,39,Automatica,8,db/journals/automatica/automatica39.html#KoseJ03,https://doi.org/10.1016/S0005-1098(03)00114-6 +Zhou Zhou,Reliable approximations of probability-constrained stochastic linear-quadratic control.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#ZhouC13,https://doi.org/10.1016/j.automatica.2013.03.010 +Panagiotis D. Christofides,Compensation of measurable disturbances for two-time-scale nonlinear systems.,1996,32,Automatica,11,db/journals/automatica/automatica32.html#ChristofidesD96,https://doi.org/10.1016/S0005-1098(96)00085-4 +Pontus Giselsson,Metric selection in fast dual forward-backward splitting.,2015,62,Automatica,,db/journals/automatica/automatica62.html#GiselssonB15,https://doi.org/10.1016/j.automatica.2015.09.010 +Emanuele Garone,Linear matrix inequalities for globally monotonic tracking control.,2015,61,Automatica,,db/journals/automatica/automatica61.html#GaroneN15,https://doi.org/10.1016/j.automatica.2015.08.009 +Dimitrios Katselis,On the end-performance metric estimator selection.,2015,58,Automatica,,db/journals/automatica/automatica58.html#KatselisRGAB15,https://doi.org/10.1016/j.automatica.2015.04.026 +Lydie Leyval,Model-based causal reasoning for process supervision.,1994,30,Automatica,8,db/journals/automatica/automatica30.html#LeyvalGF94,https://doi.org/10.1016/0005-1098(94)90109-0 +José Guadalupe Romero,Two globally convergent adaptive speed observers for mechanical systems.,2015,60,Automatica,,db/journals/automatica/automatica60.html#RomeroO15,https://doi.org/10.1016/j.automatica.2015.06.032 +Bo Wahlberg,Identification of linear systems: A practical guideline to accurate modeling: J. Schoukens and R. Pintelon.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#Wahlberg93,https://doi.org/10.1016/0005-1098(93)90036-S +Berç Rustem,Call for papers for an Automatica special issue on optimal control applications to management sciences.,2004,40,Automatica,11,db/journals/automatica/automatica40.html#Rustem04,https://doi.org/10.1016/j.automatica.2004.08.001 +Fumitoshi Matsuno,Modeling and control of a flexible solar array paddle as a clamped-free-free-free rectangular plate.,1996,32,Automatica,1,db/journals/automatica/automatica32.html#MatsunoHSIS96,https://doi.org/10.1016/0005-1098(95)00100-X +Roberto Tempo,Worst-case optimality of smoothing algorithms for parametric system identification.,1995,31,Automatica,5,db/journals/automatica/automatica31.html#Tempo95,https://doi.org/10.1016/0005-1098(94)00157-E +Luis R. Suazo,Controlling the motion of charged particles in a vacuum electromagnetic field from the boundary.,2009,45,Automatica,4,db/journals/automatica/automatica45.html#SuazoL09,https://doi.org/10.1016/j.automatica.2008.11.011 +Huibert Kwakernaak,New editorial appointment.,1996,32,Automatica,7,db/journals/automatica/automatica32.html#Kwakernaak96d,https://doi.org/10.1016/0005-1098(96)00080-5 +Fu-Shiung Hsieh,Robustness analysis of Petri nets for assembly/disassembly processes with unreliable resources.,2006,42,Automatica,7,db/journals/automatica/automatica42.html#Hsieh06a,https://doi.org/10.1016/j.automatica.2006.02.022 +S. O. Reza Moheimani,Guaranteed Cost Control of Uncertain Systems with a Time-Multiplied Quadratic Cost Function: An Approach Based on Linear Matrix Inequalities.,1998,34,Automatica,5,db/journals/automatica/automatica34.html#MoheimaniP98,https://doi.org/10.1016/S0005-1098(98)00016-8 +Roberto Sanchis,Recursive identification under scarce measurements - convergence analysis.,2002,38,Automatica,3,db/journals/automatica/automatica38.html#SanchisA02,https://doi.org/10.1016/S0005-1098(01)00236-9 +Shuai Liu 0001,Synchronization of multi-agent systems with delayed control input information from neighbors.,2011,47,Automatica,10,db/journals/automatica/automatica47.html#LiuXL11,https://doi.org/10.1016/j.automatica.2011.03.015 +Gustav Feichtinger,A new solution property in optimal control: The lens.,2007,43,Automatica,4,db/journals/automatica/automatica43.html#FeichtingerHKY07,https://doi.org/10.1016/j.automatica.2006.11.001 +Syed Ali Asad Rizvi,Output feedback Q-learning for discrete-time linear zero-sum games with application to the H-infinity control.,2018,95,Automatica,,db/journals/automatica/automatica95.html#RizviL18,https://doi.org/10.1016/j.automatica.2018.05.027 +Hongji Ma,Infinite horizon H2/H∞ control for discrete-time time-varying Markov jump systems with multiplicative noise.,2012,48,Automatica,7,db/journals/automatica/automatica48.html#MaZH12,https://doi.org/10.1016/j.automatica.2012.05.006 +Shigemasa Takai,Robust prognosability for a set of partially observed discrete event systems.,2015,51,Automatica,,db/journals/automatica/automatica51.html#Takai15,https://doi.org/10.1016/j.automatica.2014.10.104 +Wu-Xing Jing,Memorised quasi-time-fuel-optimal feedback control of perturbed double integrator.,2002,38,Automatica,8,db/journals/automatica/automatica38.html#JingM02,https://doi.org/10.1016/S0005-1098(02)00037-7 +Fabrizio Dabbene,Simple approximations of semialgebraic sets and their applications to control.,2017,78,Automatica,,db/journals/automatica/automatica78.html#DabbeneHL17,https://doi.org/10.1016/j.automatica.2016.11.021 +George S. Axelby,Further discussion on the calculation of transmission zeros.,1978,14,Automatica,4,db/journals/automatica/automatica14.html#AxelbyLD78,https://doi.org/10.1016/0005-1098(78)90039-0 +Xian-Ming Zhang,An improved reciprocally convex inequality and an augmented Lyapunov-Krasovskii functional for stability of linear systems with time-varying delay.,2017,84,Automatica,,db/journals/automatica/automatica84.html#ZhangHSG17,https://doi.org/10.1016/j.automatica.2017.04.048 +Qing-Guo Wang,Automatic tuning of finite spectrum assignment controllers for delay systems.,1995,31,Automatica,3,db/journals/automatica/automatica31.html#WangLT95,https://doi.org/10.1016/0005-1098(94)00118-3 +Jun-Wei Wang 0001,Pointwise exponential stabilization of a linear parabolic PDE system using non-collocated pointwise observation.,2018,93,Automatica,,db/journals/automatica/automatica93.html#WangLS18,https://doi.org/10.1016/j.automatica.2018.03.015 +Miomir Vukobratovic,An approach to adaptive control of robotic manipulators.,1985,21,Automatica,6,db/journals/automatica/automatica21.html#VukobratovicK85,https://doi.org/10.1016/0005-1098(85)90038-X +J. Anthony Rossiter,Feasibility and stability results for constrained stable generalized predictive control.,1995,31,Automatica,6,db/journals/automatica/automatica31.html#RossiterKG95,https://doi.org/10.1016/0005-1098(94)00166-G +Sourav Patra,A closed-loop data based test for robust performance improvement in iterative identification and control redesigns.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#PatraL12,https://doi.org/10.1016/j.automatica.2012.06.087 +B. R. Barmish,Extreme point results for robust stability of interval plants: Beyond first order compensators.,1992,28,Automatica,6,db/journals/automatica/automatica28.html#BarmishK92,https://doi.org/10.1016/0005-1098(92)90058-N +T. J. Harris,Performance assessment of multivariable feedback controllers.,1996,32,Automatica,11,db/journals/automatica/automatica32.html#HarrisBM96,https://doi.org/10.1016/S0005-1098(96)00108-2 +Anantharaman Subbaraman,A converse Lyapunov theorem for strong global recurrence.,2013,49,Automatica,10,db/journals/automatica/automatica49.html#SubbaramanT13,https://doi.org/10.1016/j.automatica.2013.07.001 +Hitay özbay,On the structure of suboptimal H∞ controllers in the sensitivity minimization problem for distributed stable plants.,1991,27,Automatica,2,db/journals/automatica/automatica27.html#OzbayT91,https://doi.org/10.1016/0005-1098(91)90078-G +Muhammad Aurangzeb,Internal structure of coalitions in competitive and altruistic graphical coalitional games.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#AurangzebL14,https://doi.org/10.1016/j.automatica.2013.11.002 +Frédéric Mazenc,Strict Lyapunov functions for time-varying systems.,2003,39,Automatica,2,db/journals/automatica/automatica39.html#Mazenc03,https://doi.org/10.1016/S0005-1098(02)00233-9 +Rafal Goebel,Optimal control for pointwise asymptotic stability in a hybrid control system.,2017,81,Automatica,,db/journals/automatica/automatica81.html#Goebel17,https://doi.org/10.1016/j.automatica.2017.04.021 +Chien-Chern Cheah,Region-based shape control for a swarm of robots.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#CheahHS09,https://doi.org/10.1016/j.automatica.2009.06.026 +G. M. Philip,Automatic interpolation methods for mapping piezometric surfaces.,1986,22,Automatica,6,db/journals/automatica/automatica22.html#PhilipW86,https://doi.org/10.1016/0005-1098(86)90016-6 +Laurence R. Young,The current status of vestibular system models.,1969,5,Automatica,3,db/journals/automatica/automatica5.html#Young69,https://doi.org/10.1016/0005-1098(69)90078-8 +James H. Graham,Interaction with the environment: Philippe Coiffet.,1985,21,Automatica,4,db/journals/automatica/automatica21.html#Graham85,https://doi.org/10.1016/0005-1098(85)90089-5 +Eun-Seok Choi,More on the applications of the contraction mapping method in robotics.,2000,36,Automatica,11,db/journals/automatica/automatica36.html#ChoiA00,https://doi.org/10.1016/S0005-1098(00)00078-9 +Yu-Ping Tian,Stability of the Internet congestion control with diverse delays.,2004,40,Automatica,9,db/journals/automatica/automatica40.html#TianY04,https://doi.org/10.1016/j.automatica.2004.03.015 +Jonathan R. Partington,Analysis of linear methods for robust identification in and#8467*1.,1995,31,Automatica,5,db/journals/automatica/automatica31.html#PartingtonM95,https://doi.org/10.1016/0005-1098(94)00163-D +Alessandro De Luca 0001,A sensitivity approach to optimal spline robot trajectories.,1991,27,Automatica,3,db/journals/automatica/automatica27.html#LucaLO91,https://doi.org/10.1016/0005-1098(91)90111-E +A. Y. Bilal,Stability and performance analysis of a certain class of nonlinear time varying feedback control systems.,1964,2,Automatica,2,db/journals/automatica/automatica2.html#BilalK64,https://doi.org/10.1016/0005-1098(64)90008-1 +Neil D. Evans,Identifiability of uncontrolled nonlinear rational systems.,2002,38,Automatica,10,db/journals/automatica/automatica38.html#EvansCCG02,https://doi.org/10.1016/S0005-1098(02)00094-8 +Hyeong Soo Chang,Random search for constrained Markov decision processes with multi-policy improvement.,2015,58,Automatica,,db/journals/automatica/automatica58.html#Chang15,https://doi.org/10.1016/j.automatica.2015.05.016 +Taha Boukhobza,Discrete mode observability of structured switching descriptor linear systems: A graph-theoretic approach.,2013,49,Automatica,10,db/journals/automatica/automatica49.html#BoukhobzaH13,https://doi.org/10.1016/j.automatica.2013.06.006 +Qi Gong,Global practical tracking of a class of nonlinear systems by output feedback.,2007,43,Automatica,1,db/journals/automatica/automatica43.html#GongQ07,https://doi.org/10.1016/j.automatica.2006.08.008 +Gang Tao,Adaptive control of systems with backlash.,1993,29,Automatica,2,db/journals/automatica/automatica29.html#TaoK93,https://doi.org/10.1016/0005-1098(93)90126-E +Ziyang Meng,Coordinated output regulation of heterogeneous linear systems under switching topologies.,2015,53,Automatica,,db/journals/automatica/automatica53.html#MengYDJ15,https://doi.org/10.1016/j.automatica.2015.01.009 +Wu-Hua Chen,On improved robust stabilization of uncertain systems with unknown input delay.,2006,42,Automatica,6,db/journals/automatica/automatica42.html#ChenZ06,https://doi.org/10.1016/j.automatica.2006.02.015 +Douglas A. Lawrence,Gain scheduling dynamic linear controllers for a nonlinear plant.,1995,31,Automatica,3,db/journals/automatica/automatica31.html#LawrenceR95,https://doi.org/10.1016/0005-1098(94)00113-W +H. L. Mason,Committee on terminology.,1969,5,Automatica,5,db/journals/automatica/automatica5.html#MasonN69,https://doi.org/10.1016/0005-1098(69)90039-9 +Torsten Söderström,Some properties of the output error method.,1982,18,Automatica,1,db/journals/automatica/automatica18.html#SoderstromS82,https://doi.org/10.1016/0005-1098(82)90031-0 +Andrey V. Savkin,Existence and stability of periodic trajectories in switched server systems.,2000,36,Automatica,5,db/journals/automatica/automatica36.html#SavkinM00a,https://doi.org/10.1016/S0005-1098(99)00206-X +Cheng Song,Decentralized adaptive awareness coverage control for multi-agent networks.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#SongFFW11,https://doi.org/10.1016/j.automatica.2011.09.006 +Jiarao Huang,Energy-based event-triggered state estimation for hidden Markov models.,2017,79,Automatica,,db/journals/automatica/automatica79.html#HuangSC17,https://doi.org/10.1016/j.automatica.2017.02.012 +Yongqiang Ye,Clean system inversion learning control law.,2005,41,Automatica,9,db/journals/automatica/automatica41.html#YeW05,https://doi.org/10.1016/j.automatica.2005.03.025 +Elena M. Parilina,Node-consistent core for games played over event trees.,2015,53,Automatica,,db/journals/automatica/automatica53.html#ParilinaZ15,https://doi.org/10.1016/j.automatica.2015.01.007 +Abdel-Latif Elshafei,Perturbation analysis of GPC with one-step control horizon.,1991,27,Automatica,4,db/journals/automatica/automatica27.html#ElshafeiDE91,https://doi.org/10.1016/0005-1098(91)90065-A +Justin D. Beck,Incompetence and impact of training in bimatrix games.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#BeckEF12,https://doi.org/10.1016/j.automatica.2012.06.046 +Peddapullaiah Sannuti,Direct singular perturbation analysis of high-gain and cheap control problems.,1983,19,Automatica,1,db/journals/automatica/automatica19.html#Sannuti83,https://doi.org/10.1016/0005-1098(83)90073-0 +Dragan B. Dacic,Observer design for wired linear networked control systems using matrix inequalities.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#DacicN08,https://doi.org/10.1016/j.automatica.2008.03.028 +Miroslav Simandl,Active fault detection and control: Unified formulation and optimal design.,2009,45,Automatica,9,db/journals/automatica/automatica45.html#SimandlP09,https://doi.org/10.1016/j.automatica.2009.04.028 +M. Tarokh,Fixed modes in multivariable systems using constrained controllers.,1985,21,Automatica,4,db/journals/automatica/automatica21.html#Tarokh85,https://doi.org/10.1016/0005-1098(85)90087-1 +Arvo Kaldmäe,Realization of time-delay systems.,2018,90,Automatica,,db/journals/automatica/automatica90.html#KaldmaeK18,https://doi.org/10.1016/j.automatica.2018.01.001 +Pierre Apkarian,On the discretization of LMI-synthesized linear parameter-varying controllers.,1997,33,Automatica,4,db/journals/automatica/automatica33.html#Apkarian97,https://doi.org/10.1016/S0005-1098(96)00211-7 +Alvaro E. Gil,Stability analysis of network-based cooperative resource allocation strategies.,2006,42,Automatica,2,db/journals/automatica/automatica42.html#GilP06,https://doi.org/10.1016/j.automatica.2005.09.015 +Jianchang Liu,New result on PID controller design of LTI systems via dominant eigenvalue assignment.,2015,62,Automatica,,db/journals/automatica/automatica62.html#LiuWZ15,https://doi.org/10.1016/j.automatica.2015.09.009 +Ikuya Hoshino,Observer-based multivariable control of the aluminum cold tandem mill.,1988,24,Automatica,6,db/journals/automatica/automatica24.html#HoshinoMFKK88,https://doi.org/10.1016/0005-1098(88)90050-7 +C. J. Goh,On the nonlinear optimal regulator problem.,1993,29,Automatica,3,db/journals/automatica/automatica29.html#Goh93,https://doi.org/10.1016/0005-1098(93)90069-6 +George S. Axelby,Research surveys.,1983,19,Automatica,5,db/journals/automatica/automatica19.html#Axelby83b,https://doi.org/10.1016/0005-1098(83)90001-8 +Melkior Ornik,Chattering in the Reach Control Problem.,2018,89,Automatica,,db/journals/automatica/automatica89.html#OrnikB18,https://doi.org/10.1016/j.automatica.2017.11.008 +Luc Jaulin,Set inversion via interval analysis for nonlinear bounded-error estimation.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#JaulinW93,https://doi.org/10.1016/0005-1098(93)90106-4 +Roger W. Brockett,An addendum to volterra series and geometric control theory.,1976,12,Automatica,6,db/journals/automatica/automatica12.html#BrockettG76,https://doi.org/10.1016/0005-1098(76)90047-9 +Robert Griñó,Digital repetitive plug-in controller for odd-harmonic periodic references and disturbances.,2005,41,Automatica,1,db/journals/automatica/automatica41.html#GrinoC05,https://doi.org/10.1016/j.automatica.2004.08.006 +Martin Enqvist,Linear approximations of nonlinear FIR systems for separable input processes.,2005,41,Automatica,3,db/journals/automatica/automatica41.html#EnqvistL05,https://doi.org/10.1016/j.automatica.2004.11.016 +Terrence T. Ho,Computationally efficient steady-state multiscale estimation for 1-D diffusion processes.,2001,37,Automatica,3,db/journals/automatica/automatica37.html#HoFW01,https://doi.org/10.1016/S0005-1098(00)00174-6 +Sofie Haesaert,Data-driven and model-based verification via Bayesian identification and reachability analysis.,2017,79,Automatica,,db/journals/automatica/automatica79.html#HaesaertHA17,https://doi.org/10.1016/j.automatica.2017.01.037 +øyvind Hegrenæs,Spacecraft attitude control using explicit model predictive control.,2005,41,Automatica,12,db/journals/automatica/automatica41.html#HegrenaesGT05,https://doi.org/10.1016/j.automatica.2005.06.015 +M. A. Salman,An incentive model of duopoly with government coordination.,1981,17,Automatica,6,db/journals/automatica/automatica17.html#SalmanC81,https://doi.org/10.1016/0005-1098(81)90069-8 +Fayçal Ikhouane,Adaptive Backstepping with Parameter Projection: Robustness and Asymptotic Performance.,1998,34,Automatica,4,db/journals/automatica/automatica34.html#IkhouaneK98,https://doi.org/10.1016/S0005-1098(97)00184-2 +Phil G. Howlett,Local energy minimization in optimal train control.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#HowlettPV09,https://doi.org/10.1016/j.automatica.2009.07.028 +Timothy M. Caldwell,Switching mode generation and optimal estimation with application to skid-steering.,2011,47,Automatica,1,db/journals/automatica/automatica47.html#CaldwellM11,https://doi.org/10.1016/j.automatica.2010.10.010 +Sheng-Guo Wang,Parameterization theory of balanced truncation method for any evenly distributed RC interconnect circuits and transmission lines.,2010,46,Automatica,3,db/journals/automatica/automatica46.html#WangW10,https://doi.org/10.1016/j.automatica.2010.01.015 +Johan Schoukens,Analysis of windowing/leakage effects in frequency response function measurements.,2006,42,Automatica,1,db/journals/automatica/automatica42.html#SchoukensRP06,https://doi.org/10.1016/j.automatica.2005.08.004 +Sarangapani Jagannathan,Adaptive Fuzzy Logic Control of Feedback Linearizable Discrete-time Dynamical Systems Under Persistence of Excitation.,1998,34,Automatica,11,db/journals/automatica/automatica34.html#Jagannathan98,https://doi.org/10.1016/S0005-1098(98)00084-3 +Lawrence P. Grayson,The status of synthesis using Lyapunov's method.,1965,3,Automatica,2,db/journals/automatica/automatica3.html#Grayson65,https://doi.org/10.1016/0005-1098(65)90003-8 +Xuejiao Yang,A comparison of zonotope order reduction techniques.,2018,95,Automatica,,db/journals/automatica/automatica95.html#YangS18,https://doi.org/10.1016/j.automatica.2018.06.006 +William L. Brogan,Theory and application of optimal control for distributed parameter systems - II : Computational results.,1967,4,Automatica,3,db/journals/automatica/automatica4.html#Brogan67a,https://doi.org/10.1016/0005-1098(67)90003-9 +Gregory Walsh,Error encoding algorithms for networked control systems.,2002,38,Automatica,2,db/journals/automatica/automatica38.html#WalshBB02,https://doi.org/10.1016/S0005-1098(01)00195-9 +Dirk Aeyels,Cluster formation in a time-varying multi-agent system.,2011,47,Automatica,11,db/journals/automatica/automatica47.html#AeyelsS11,https://doi.org/10.1016/j.automatica.2011.08.036 +Ion Necoara,Stabilization of max-plus-linear systems using model predictive control: The unconstrained case.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#NecoaraBSH08,https://doi.org/10.1016/j.automatica.2007.09.010 +Ping Zhang 0007,A frequency domain approach to fault detection in sampled-data systems.,2003,39,Automatica,7,db/journals/automatica/automatica39.html#ZhangDWZ03,https://doi.org/10.1016/S0005-1098(03)00106-7 +Neil D. Evans,Structural indistinguishability between uncontrolled (autonomous) nonlinear analytic systems.,2004,40,Automatica,11,db/journals/automatica/automatica40.html#EvansCCG04,https://doi.org/10.1016/j.automatica.2004.06.002 +Alexey S. Matveev,A method of reactive 3D navigation for a tight surface scan by a nonholonomic mobile robot.,2017,75,Automatica,,db/journals/automatica/automatica75.html#MatveevOS17,https://doi.org/10.1016/j.automatica.2016.09.021 +Christian Løvaas,Affine and predictive control policies for a class of nonlinear systems.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#LovaasM09,https://doi.org/10.1016/j.automatica.2008.12.022 +Michael J. Grimble,Controller performance benchmarking and tuning using generalised minimum variance control.,2002,38,Automatica,12,db/journals/automatica/automatica38.html#Grimble02,https://doi.org/10.1016/S0005-1098(02)00141-3 +Riccardo Marino,Nonlinear adaptive control of permanent magnet step motors.,1995,31,Automatica,11,db/journals/automatica/automatica31.html#MarinoPT95,https://doi.org/10.1016/0005-1098(95)00087-D +éva Gyurkovics,Stabilization of sampled-data nonlinear systems by receding horizon control via discrete-time approximations.,2004,40,Automatica,12,db/journals/automatica/automatica40.html#GyurkovicsE04,https://doi.org/10.1016/j.automatica.2004.06.019 +Fredrik Gustafsson,Slip-based tire-road friction estimation.,1997,33,Automatica,6,db/journals/automatica/automatica33.html#Gustafsson97,https://doi.org/10.1016/S0005-1098(97)00003-4 +Yun Chen,A new result on stability analysis for stochastic neutral systems.,2010,46,Automatica,12,db/journals/automatica/automatica46.html#ChenZX10,https://doi.org/10.1016/j.automatica.2010.08.007 +Matthew W. Harris,Lossless convexification of non-convex optimal control problems for state constrained linear systems.,2014,50,Automatica,9,db/journals/automatica/automatica50.html#HarrisA14,https://doi.org/10.1016/j.automatica.2014.06.008 +Dominic Groß,On the steady-state behavior of a nonlinear power system model.,2018,90,Automatica,,db/journals/automatica/automatica90.html#GrossAD18,https://doi.org/10.1016/j.automatica.2017.12.057 +Rob H. Gielen,Stabilization of polytopic delay difference inclusions via the Razumikhin approach.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#GielenL11,https://doi.org/10.1016/j.automatica.2011.08.046 +Guang-Hong Yang,Comparisons among robust stability criteria for linear systems with affine parameter uncertainties.,2007,43,Automatica,3,db/journals/automatica/automatica43.html#YangL07,https://doi.org/10.1016/j.automatica.2006.09.011 +Florian Knorn,On linear co-positive Lyapunov functions for sets of linear positive systems.,2009,45,Automatica,8,db/journals/automatica/automatica45.html#KnornMS09,https://doi.org/10.1016/j.automatica.2009.04.013 +Dhruva V. Raman,On the performance of nonlinear dynamical systems under parameter perturbation.,2016,63,Automatica,,db/journals/automatica/automatica63.html#RamanAP16,https://doi.org/10.1016/j.automatica.2015.10.009 +Paulo Tabuada,"Corrigendum to ""Hierarchical trajectory refinement for a class of nonlinear systems"" [Automatica 41(4) (2005) 701-708].",2006,42,Automatica,10,db/journals/automatica/automatica42.html#TabuadaP06,https://doi.org/10.1016/j.automatica.2006.06.001 +George N. Saridis,Analytical design of intelligent machines.,1988,24,Automatica,2,db/journals/automatica/automatica24.html#SaridisV88,https://doi.org/10.1016/0005-1098(88)90022-2 +Sunan Huang 0001,Adaptive motion control using neural network approximations.,2002,38,Automatica,2,db/journals/automatica/automatica38.html#HuangTL02,https://doi.org/10.1016/S0005-1098(01)00192-3 +M. Braae,Theoretical and linguistic aspects of the fuzzy logic controller.,1979,15,Automatica,5,db/journals/automatica/automatica15.html#BraaeA79,https://doi.org/10.1016/0005-1098(79)90005-0 +Behçet Açikmese,Decentralized observers with consensus filters for distributed discrete-time linear systems.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#AcikmeseMS14,https://doi.org/10.1016/j.automatica.2014.02.008 +Xudong Zhao,Adaptive tracking control for switched stochastic nonlinear systems with unknown actuator dead-zone.,2015,60,Automatica,,db/journals/automatica/automatica60.html#Zhao0ZZ15,https://doi.org/10.1016/j.automatica.2015.07.022 +Ravi Gondhalekar,Controlled invariant feasibility - A general approach to enforcing strong feasibility in MPC applied to move-blocking.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#GondhalekarIK09,https://doi.org/10.1016/j.automatica.2009.09.020 +Andrew H. Jazwinski,Adaptive filtering.,1969,5,Automatica,4,db/journals/automatica/automatica5.html#Jazwinski69,https://doi.org/10.1016/0005-1098(69)90109-5 +Wei Ren 0001,Synchronization of coupled harmonic oscillators with local interaction.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#Ren08,https://doi.org/10.1016/j.automatica.2008.05.027 +Y. Zhong,Parameter identification of the heating zone dynamics in the kamyr digester.,1990,26,Automatica,3,db/journals/automatica/automatica26.html#ZhongBG90,https://doi.org/10.1016/0005-1098(90)90038-J +Robbert van Herpen,Optimally conditioned instrumental variable approach for frequency-domain system identification.,2014,50,Automatica,9,db/journals/automatica/automatica50.html#HerpenOS14,https://doi.org/10.1016/j.automatica.2014.07.002 +V. O. Nikiforov,Robust high-order tuner of simplified structure.,1999,35,Automatica,8,db/journals/automatica/automatica35.html#Nikiforov99,https://doi.org/10.1016/S0005-1098(99)00051-5 +Yun Hong,A globally stable saturated desired compensation adaptive robust control for linear motor systems with comparative experiments.,2007,43,Automatica,10,db/journals/automatica/automatica43.html#HongY07,https://doi.org/10.1016/j.automatica.2007.03.021 +Ioannis Kordonis,Stochastic stability in Max-Product and Max-Plus Systems with Markovian Jumps.,2018,92,Automatica,,db/journals/automatica/automatica92.html#KordonisMP18,https://doi.org/10.1016/j.automatica.2018.03.008 +Nicholas R. Fischer,Saturated control of an uncertain nonlinear system with input delay.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#FischerDSD13,https://doi.org/10.1016/j.automatica.2013.02.013 +Ulf Borisson,Self-tuning control of an ore crusher.,1976,12,Automatica,1,db/journals/automatica/automatica12.html#BorissonS76,https://doi.org/10.1016/0005-1098(76)90063-7 +Sheng-de Wang,Design of robust linear state feedback laws: Ellipsoidal set-theoretic approach.,1990,26,Automatica,2,db/journals/automatica/automatica26.html#WangK90,https://doi.org/10.1016/0005-1098(90)90124-Z +Hideo Nakamura,Statistical identification for optimal control of supercritical thermal power plants.,1981,17,Automatica,1,db/journals/automatica/automatica17.html#NakamuraA81,https://doi.org/10.1016/0005-1098(81)90090-X +Franz S. Hover,Application of polynomial chaos in stability and control.,2006,42,Automatica,5,db/journals/automatica/automatica42.html#HoverT06,https://doi.org/10.1016/j.automatica.2006.01.010 +Fabio Pasqualetti,Distributed estimation via iterative projections with application to power network monitoring.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#PasqualettiCB12,https://doi.org/10.1016/j.automatica.2012.02.025 +Pierdomenico Pepe,Direct and converse Lyapunov theorems for functional difference systems.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#Pepe14,https://doi.org/10.1016/j.automatica.2014.10.048 +Robert E. O'Malley Jr.,Time-scale modeling of dynamic networks with applications to power systems: J. H. Chow.,1985,21,Automatica,2,db/journals/automatica/automatica21.html#OMalley85,https://doi.org/10.1016/0005-1098(85)90118-9 +J. Glaría,Regulation by tables.,2000,36,Automatica,6,db/journals/automatica/automatica36.html#GlariaRSV00,https://doi.org/10.1016/S0005-1098(99)00209-5 +Francesco Maria Raimondi,Fuzzy motion control strategy for cooperation of multiple automated vehicles with passengers comfort.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#RaimondiM08,https://doi.org/10.1016/j.automatica.2008.04.012 +Frédéric Mazenc,Asymptotic tracking of a reference state for systems with a feedforward structure.,2000,36,Automatica,2,db/journals/automatica/automatica36.html#MazencP00,https://doi.org/10.1016/S0005-1098(99)00136-3 +Per Rutquist,On the infinite time solution to state-constrained stochastic optimal control problems.,2008,44,Automatica,7,db/journals/automatica/automatica44.html#RutquistBW08,https://doi.org/10.1016/j.automatica.2007.10.018 +Andrey Polyakov,Finite-time and fixed-time stabilization: Implicit Lyapunov function approach.,2015,51,Automatica,,db/journals/automatica/automatica51.html#PolyakovEP15,https://doi.org/10.1016/j.automatica.2014.10.082 +Jing Na,Robust adaptive parameter estimation of sinusoidal signals.,2015,53,Automatica,,db/journals/automatica/automatica53.html#NaYWG15,https://doi.org/10.1016/j.automatica.2015.01.019 +Olga I. Koroleva,Averaging analysis of periodically forced fluid networks.,2005,41,Automatica,1,db/journals/automatica/automatica41.html#KorolevaK05,https://doi.org/10.1016/j.automatica.2004.09.005 +Hyungbo Shim,Nonlinear observer design via passivation of error dynamics.,2003,39,Automatica,5,db/journals/automatica/automatica39.html#ShimST03,https://doi.org/10.1016/S0005-1098(03)00023-2 +Graziano Chesi,Establishing robust stability of discrete-time systems with time-varying uncertainty: The Gram-SOS approach.,2014,50,Automatica,11,db/journals/automatica/automatica50.html#Chesi14,https://doi.org/10.1016/j.automatica.2014.10.007 +Giuseppe Roberto Marseglia,Active fault diagnosis: A multi-parametric approach.,2017,79,Automatica,,db/journals/automatica/automatica79.html#MarsegliaR17,https://doi.org/10.1016/j.automatica.2017.01.021 +Alain Sarlette,Autonomous rigid body attitude synchronization.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#SarletteSL09,https://doi.org/10.1016/j.automatica.2008.09.020 +Stephen D. Patek,On terminating Markov decision processes with a risk-averse objective function.,2001,37,Automatica,9,db/journals/automatica/automatica37.html#Patek01,https://doi.org/10.1016/S0005-1098(01)00084-X +Daniel Limón,Enlarging the domain of attraction of MPC controllers.,2005,41,Automatica,4,db/journals/automatica/automatica41.html#LimonAC05,https://doi.org/10.1016/j.automatica.2004.10.011 +David A. Wagie,Model reduction and controller synthesis in the presence of parameter uncertainty.,1986,22,Automatica,3,db/journals/automatica/automatica22.html#WagieS86,https://doi.org/10.1016/0005-1098(86)90028-2 +Igor Gumowski,Sensitivity problems related to certain bifurcations in non-linear recurrence relations.,1969,5,Automatica,3,db/journals/automatica/automatica5.html#GumowskiM69,https://doi.org/10.1016/0005-1098(69)90073-9 +Xinzhi Liu,Synchronization of linear dynamical networks on time scales: Pinning control via delayed impulses.,2016,72,Automatica,,db/journals/automatica/automatica72.html#LiuZ16a,https://doi.org/10.1016/j.automatica.2016.06.001 +Jun Song 0002,Asynchronous sliding mode control of Markovian jump systems with time-varying delays and partly accessible mode detection probabilities.,2018,93,Automatica,,db/journals/automatica/automatica93.html#SongNZ18,https://doi.org/10.1016/j.automatica.2018.03.037 +Ivan Markovsky,Algorithms for deterministic balanced subspace identification.,2005,41,Automatica,5,db/journals/automatica/automatica41.html#MarkovskyWRM05,https://doi.org/10.1016/j.automatica.2004.10.007 +Vladimir Kharitonov,Lyapunov-Krasovskii approach to the robust stability analysis of time-delay systems.,2003,39,Automatica,1,db/journals/automatica/automatica39.html#KharitonovZ03,https://doi.org/10.1016/S0005-1098(02)00195-4 +Tae-Woong Yoon,Supervisory control using a new control-relevant switching.,2007,43,Automatica,10,db/journals/automatica/automatica43.html#YoonKM07,https://doi.org/10.1016/j.automatica.2007.03.001 +Weiyong Yan,A multiple controller structure and design strategy with stability analysis.,1992,28,Automatica,6,db/journals/automatica/automatica28.html#YanM92,https://doi.org/10.1016/0005-1098(92)90067-P +Patricio E. Valenzuela,On robust input design for nonlinear dynamical models.,2017,77,Automatica,,db/journals/automatica/automatica77.html#ValenzuelaDRS17,https://doi.org/10.1016/j.automatica.2016.11.030 +Zhihua Qu,Exponentially stable trajectory following of robotic manipulators under a class of adaptive controls.,1992,28,Automatica,3,db/journals/automatica/automatica28.html#QuDD92,https://doi.org/10.1016/0005-1098(92)90181-E +Dongmei Shen,Some new properties of the right invertible system in control theory.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#ShenW12,https://doi.org/10.1016/j.automatica.2012.05.037 +Eugenio Cinquemani,Wavelet estimation by Bayesian thresholding and model selection.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#CinquemaniP08,https://doi.org/10.1016/j.automatica.2008.01.021 +Zhong-Ping Jiang,Stabilization and Tracking via Output Feedback for the Nonlinear Benchmark System.,1998,34,Automatica,7,db/journals/automatica/automatica34.html#JiangHG98,https://doi.org/10.1016/S0005-1098(98)00022-3 +Kerim Demirbas,Multidimensional state estimation using stacks for dynamic systems with interference.,1989,25,Automatica,4,db/journals/automatica/automatica25.html#Demirbas89,https://doi.org/10.1016/0005-1098(89)90106-4 +Lantao Xing,Output feedback control for uncertain nonlinear systems with input quantization.,2016,65,Automatica,,db/journals/automatica/automatica65.html#XingWZSL16,https://doi.org/10.1016/j.automatica.2015.11.028 +Eduardo I. Silva,Control of LTI plants over erasure channels.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#SilvaP11,https://doi.org/10.1016/j.automatica.2011.02.050 +Alberto Tesi,Robust absolute stability of Lur'e control systems in parameter space.,1991,27,Automatica,1,db/journals/automatica/automatica27.html#TesiV91,https://doi.org/10.1016/0005-1098(91)90013-R +João B. D. Cabrera,Periodic sensor switching and the random walk.,2014,50,Automatica,7,db/journals/automatica/automatica50.html#Cabrera14,https://doi.org/10.1016/j.automatica.2014.05.003 +Jing Yuan,A neural network measuring the intersection of m-dimensional convex polyhedra.,1995,31,Automatica,4,db/journals/automatica/automatica31.html#Yuan95,https://doi.org/10.1016/0005-1098(95)98481-K +Mazen Alamir,Stability proof for nonlinear MPC design using monotonically increasing weighting profiles without terminal constraints.,2018,87,Automatica,,db/journals/automatica/automatica87.html#Alamir18,https://doi.org/10.1016/j.automatica.2017.10.002 +M. A. Alam,Comments on: Successful adaptive control of paper machines.,1976,12,Automatica,3,db/journals/automatica/automatica12.html#Alam76,https://doi.org/10.1016/0005-1098(76)90031-5 +Suman Chakravorty,A frequentist approach to mapping under uncertainty.,2011,47,Automatica,3,db/journals/automatica/automatica47.html#ChakravortyS11,https://doi.org/10.1016/j.automatica.2011.01.003 +Jaesop Kong,Graph-theoretic characterization of fixed modes in frequency domain.,1996,32,Automatica,7,db/journals/automatica/automatica32.html#KongS96,https://doi.org/10.1016/0005-1098(96)00041-6 +Patrick C. Parks,Obituary.,1995,31,Automatica,9,db/journals/automatica/automatica31.html#ParksA95,https://doi.org/10.1016/0005-1098(95)90015-2 +Michael R. Frater,Local minima escape transients by stochastic gradient descent algorithms in blind adaptive equalizers.,1995,31,Automatica,4,db/journals/automatica/automatica31.html#FraterBJ95,https://doi.org/10.1016/0005-1098(95)98495-R +Kanti B. Datta,H2/H INFINITY Control of discrete singularly perturbed systems: the state feedback case.,2002,38,Automatica,10,db/journals/automatica/automatica38.html#DattaR02,https://doi.org/10.1016/S0005-1098(02)00090-0 +Jean-Pierre Richard,Time-delay systems: an overview of some recent advances and open problems.,2003,39,Automatica,10,db/journals/automatica/automatica39.html#Richard03,https://doi.org/10.1016/S0005-1098(03)00167-5 +Pietro De Lellis,Novel decentralized adaptive strategies for the synchronization of complex networks.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#LellisBG09,https://doi.org/10.1016/j.automatica.2009.01.001 +Boris M. Mirkin,Tube model reference adaptive control.,2013,49,Automatica,4,db/journals/automatica/automatica49.html#MirkinG13,https://doi.org/10.1016/j.automatica.2013.01.022 +A. Johnson,The control of fed-batch fermentation processes - A survey.,1987,23,Automatica,6,db/journals/automatica/automatica23.html#Johnson87,https://doi.org/10.1016/0005-1098(87)90026-4 +Ruggero Carli,Communication constraints in the average consensus problem.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#CarliFSZ08,https://doi.org/10.1016/j.automatica.2007.07.009 +Shun-ichi Azuma,Synthesis of optimal controllers for piecewise affine systems with sampled-data switching.,2006,42,Automatica,5,db/journals/automatica/automatica42.html#AzumaI06,https://doi.org/10.1016/j.automatica.2005.12.023 +Veerachai Malyavej,Precision missile guidance using radar/multiple-video sensor fusion via communication channels with bit-rate constraints.,2006,42,Automatica,5,db/journals/automatica/automatica42.html#MalyavejMS06,https://doi.org/10.1016/j.automatica.2005.12.024 +Ali H. Sayed,An l2-stable feedback structure for nonlinear adaptive filtering and identification.,1997,33,Automatica,1,db/journals/automatica/automatica33.html#SayedR97,https://doi.org/10.1016/S0005-1098(96)00136-7 +B. Tolwinski,A concept of cooperative equilibrium for dynamic games.,1982,18,Automatica,4,db/journals/automatica/automatica18.html#Tolwinski82,https://doi.org/10.1016/0005-1098(82)90071-1 +Daizhan Cheng,Identification of Boolean control networks.,2011,47,Automatica,4,db/journals/automatica/automatica47.html#ChengZ11,https://doi.org/10.1016/j.automatica.2011.01.083 +Shahriar Shokoohi,Identification and model reduction of time-varying discrete-time systems.,1987,23,Automatica,4,db/journals/automatica/automatica23.html#ShokoohiS87,https://doi.org/10.1016/0005-1098(87)90080-X +Ettore Fornasini,On the structure of finite memory and separable two-dimensional systems.,1994,30,Automatica,2,db/journals/automatica/automatica30.html#FornasiniMV94,https://doi.org/10.1016/0005-1098(94)90036-1 +Darko Musicki,Integrated probabilistic data association-finite resolution.,1995,31,Automatica,4,db/journals/automatica/automatica31.html#MusickiE95,https://doi.org/10.1016/0005-1098(95)98484-N +Ping Hou,Simultaneous External and Internal Stabilization for Continuous and Discrete-Time Critically Unstable Linear Systems with Saturating Actuators.,1998,34,Automatica,12,db/journals/automatica/automatica34.html#HouSLS98,https://doi.org/10.1016/S0005-1098(98)80008-3 +Muhammad Arif,Incorporation of experience in iterative learning controllers using locally weighted learning.,2001,37,Automatica,6,db/journals/automatica/automatica37.html#ArifII01,https://doi.org/10.1016/S0005-1098(01)00030-9 +Huibert Kwakernaak,Automatica review and publication *.,1996,32,Automatica,2,db/journals/automatica/automatica32.html#Kwakernaak96a,https://doi.org/10.1016/0005-1098(96)85545-2 +M. J. Grimble,LQG predictive optimal control for adaptive applications.,1990,26,Automatica,6,db/journals/automatica/automatica26.html#Grimble90,https://doi.org/10.1016/0005-1098(90)90080-2 +Chengpu Yu,Identification of structured state-space models.,2018,90,Automatica,,db/journals/automatica/automatica90.html#YuLV18,https://doi.org/10.1016/j.automatica.2017.12.023 +Piotr Suchomski,A J-lossless coprime factorisation approach to H INFINITY control in delta domain.,2002,38,Automatica,10,db/journals/automatica/automatica38.html#Suchomski02,https://doi.org/10.1016/S0005-1098(02)00096-1 +Jian Liang Wang,An LMI approach to H_ index and mixed H_/Hinfinit fault detection observer design.,2007,43,Automatica,9,db/journals/automatica/automatica43.html#WangYL07,https://doi.org/10.1016/j.automatica.2007.02.019 +Alexandre Seuret,LQ-based event-triggered controller co-design for saturated linear systems.,2016,74,Automatica,,db/journals/automatica/automatica74.html#SeuretPTZ16,https://doi.org/10.1016/j.automatica.2016.07.004 +Takehiro Mori,A way to stabilize linear systems with delayed state.,1983,19,Automatica,5,db/journals/automatica/automatica19.html#MoriNK83,https://doi.org/10.1016/0005-1098(83)90013-4 +Marcel Staroswiecki,Models and languages for the interoperability of smart instruments.,1996,32,Automatica,6,db/journals/automatica/automatica32.html#StaroswieckiB96,https://doi.org/10.1016/0005-1098(96)00016-7 +Bin Liu,Initial condition of costate in linear optimal control using convex analysis.,2011,47,Automatica,4,db/journals/automatica/automatica47.html#Liu11,https://doi.org/10.1016/j.automatica.2011.01.033 +Wojciech Grega,Decomposition approach to the public transport scheduling problem.,1993,29,Automatica,3,db/journals/automatica/automatica29.html#Grega93,https://doi.org/10.1016/0005-1098(93)90068-5 +Fan Zhang,Fully distributed robust synchronization of networked Lur'e systems with incremental nonlinearities.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#ZhangTS14,https://doi.org/10.1016/j.automatica.2014.08.033 +Anastasiia A. Usova,Scattering-based stabilization of non-planar conic systems.,2018,93,Automatica,,db/journals/automatica/automatica93.html#UsovaPP18,https://doi.org/10.1016/j.automatica.2018.03.028 +H. Yousef,Adaptive fuzzy decentralized control for interconnected MIMO nonlinear subsystems.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#YousefHEE09,https://doi.org/10.1016/j.automatica.2008.07.018 +Enrico S. Canuto,Multi-input digital frequency stabilization of monolithic lasers.,2004,40,Automatica,12,db/journals/automatica/automatica40.html#CanutoR04,https://doi.org/10.1016/j.automatica.2004.07.004 +Maria Prandini,Performance assessment and design of abstracted models for stochastic hybrid systems through a randomized approach.,2014,50,Automatica,11,db/journals/automatica/automatica50.html#PrandiniGV14,https://doi.org/10.1016/j.automatica.2014.08.029 +Zhijun Li,Robust adaptive control of uncertain force/motion constrained nonholonomic mobile manipulators.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#LiGAW08,https://doi.org/10.1016/j.automatica.2007.07.012 +Paraskevas N. Paraskevopoulos,An algorithm for the computation of the transfer function matrix for singular systems.,1984,20,Automatica,2,db/journals/automatica/automatica20.html#Paraskevopoulos84,https://doi.org/10.1016/0005-1098(84)90036-0 +D. William Luse,Applied digital control : J. R.Leigh.,1986,22,Automatica,4,db/journals/automatica/automatica22.html#Luse86,https://doi.org/10.1016/0005-1098(86)90059-2 +Giuseppe Conte,Robust control of a remotely operated underwater vehicle.,1998,34,Automatica,2,db/journals/automatica/automatica34.html#ConteS98,https://doi.org/10.1016/S0005-1098(97)00191-X +Anton H. J. de Ruiter,Computationally simple sub-optimal filtering for spacecraft motion estimation.,2015,57,Automatica,,db/journals/automatica/automatica57.html#Ruiter15,https://doi.org/10.1016/j.automatica.2015.04.018 +Toshiyuki Ohtsuka,Real-time optimization algorithm for nonlinear receding-horizon control.,1997,33,Automatica,6,db/journals/automatica/automatica33.html#OhtsukaF97,https://doi.org/10.1016/S0005-1098(97)00005-8 +Ananth Subramanian,A robust power and rate control method for state-delayed wireless networks.,2005,41,Automatica,11,db/journals/automatica/automatica41.html#SubramanianS05,https://doi.org/10.1016/j.automatica.2005.05.024 +P. Martin Larsen,Trends in automatic control education: Report from the IFAC symposium in Barcelona 1977.,1979,15,Automatica,1,db/journals/automatica/automatica15.html#Larsen79,https://doi.org/10.1016/0005-1098(79)90092-X +Sing Kiong Nguang,Fuzzy Hinfinity output feedback control of nonlinear systems under sampled measurements.,2003,39,Automatica,12,db/journals/automatica/automatica39.html#NguangS03,https://doi.org/10.1016/S0005-1098(03)00236-X +Zidong Wang,H∞ filtering with randomly occurring sensor saturations and missing measurements.,2012,48,Automatica,3,db/journals/automatica/automatica48.html#WangSL12,https://doi.org/10.1016/j.automatica.2012.01.008 +Gerard Ledwich,Minimal stable partial realization.,1976,12,Automatica,5,db/journals/automatica/automatica12.html#LedwichM76,https://doi.org/10.1016/0005-1098(76)90009-1 +Shaolong Shu,Decentralized control of networked discrete event systems with communication delays.,2014,50,Automatica,8,db/journals/automatica/automatica50.html#ShuL14,https://doi.org/10.1016/j.automatica.2014.05.035 +Marwan A. Simaan,Equilibrium properties of the nash and stackelberg strategies.,1977,13,Automatica,6,db/journals/automatica/automatica13.html#Simaan77,https://doi.org/10.1016/0005-1098(77)90086-3 +Yuzhen Wang,Generalized Hamiltonian realization of time-invariant nonlinear systems.,2003,39,Automatica,8,db/journals/automatica/automatica39.html#WangLC03,https://doi.org/10.1016/S0005-1098(03)00132-8 +Anil Aswani,Provably safe and robust learning-based model predictive control.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#AswaniGST13,https://doi.org/10.1016/j.automatica.2013.02.003 +Henning Tolle,Robot dynamics algorithms : Roy Featherstone.,1989,25,Automatica,5,db/journals/automatica/automatica25.html#Tolle89,https://doi.org/10.1016/0005-1098(89)90037-X +Madan M. Gupta,Fuzzy techniques in pattern recognition: A. Kandel.,1984,20,Automatica,3,db/journals/automatica/automatica20.html#Gupta84,https://doi.org/10.1016/0005-1098(84)90056-6 +Aman Behal,Partial state feedback control of induction motors with magnetic saturation: elimination of flux measurements.,2002,38,Automatica,2,db/journals/automatica/automatica38.html#BehalFDM02,https://doi.org/10.1016/S0005-1098(01)00201-1 +George N. Saridis,Linguistic decision schemata for intelligent robots.,1984,20,Automatica,1,db/journals/automatica/automatica20.html#SaridisG84,https://doi.org/10.1016/0005-1098(84)90073-6 +Gerhard K. Lausterer,Real time distributed parameter state estimation applied to a two dimensional heated ingot.,1978,14,Automatica,4,db/journals/automatica/automatica14.html#LaustererRM78,https://doi.org/10.1016/0005-1098(78)90033-X +Runyi Yu,Structural properties and poles assignability of LTI singular systems under output feedback.,2003,39,Automatica,4,db/journals/automatica/automatica39.html#YuW03,https://doi.org/10.1016/S0005-1098(02)00283-2 +Denis Dochain,Adaptive identification and control algorithms for nonlinear bacterial growth systems.,1984,20,Automatica,5,db/journals/automatica/automatica20.html#DochainB84,https://doi.org/10.1016/0005-1098(84)90012-8 +Ramine Rouhani,Model algorithmic control (MAC)* basic theoretical properties.,1982,18,Automatica,4,db/journals/automatica/automatica18.html#RouhaniM82,https://doi.org/10.1016/0005-1098(82)90069-3 +Michael Margaliot,Contraction after small transients.,2016,67,Automatica,,db/journals/automatica/automatica67.html#MargaliotST16,https://doi.org/10.1016/j.automatica.2016.01.018 +Xiaoxiao Cheng,On robustness analysis of linear vibrational control systems.,2018,87,Automatica,,db/journals/automatica/automatica87.html#ChengTM18,https://doi.org/10.1016/j.automatica.2017.09.029 +S. Humble,Failure diagnosis and performance monitoring: L. F. Pau.,1982,18,Automatica,6,db/journals/automatica/automatica18.html#Humble82,https://doi.org/10.1016/0005-1098(82)90063-2 +Kueiming Lo,New identification approaches for disturbed models.,2003,39,Automatica,9,db/journals/automatica/automatica39.html#LoK03,https://doi.org/10.1016/S0005-1098(03)00147-X +Hans G. M. Dötsch,Test for local structural identifiability of high-order non-linearly parametrized state space models.,1996,32,Automatica,6,db/journals/automatica/automatica32.html#DotschH96,https://doi.org/10.1016/0005-1098(96)00021-0 +Paul A. Trodden,Cooperative distributed MPC of linear systems with coupled constraints.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#TroddenR13,https://doi.org/10.1016/j.automatica.2012.11.007 +Jiahu Qin,Consensus of multiple second-order vehicles with a time-varying reference signal under directed topology.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#QinZG11,https://doi.org/10.1016/j.automatica.2011.05.014 +Michel Zasadzinski,Disturbance Attenuation and Trajectory Tracking via a Reduced-order Output Feedback Controller for Robot Manipulators.,1998,34,Automatica,12,db/journals/automatica/automatica34.html#ZasadzinskiRKD98,https://doi.org/10.1016/S0005-1098(98)80007-1 +Aldo Balestrino,A new class of Lyapunov functions for the constrained stabilization of linear systems.,2012,48,Automatica,11,db/journals/automatica/automatica48.html#BalestrinoCG12,https://doi.org/10.1016/j.automatica.2012.06.099 +Antti J. Koivo,Control of redundant manipulators with constraints using a reduced order model.,1994,30,Automatica,4,db/journals/automatica/automatica30.html#KoivoA94,https://doi.org/10.1016/0005-1098(94)90155-4 +Zhongcheng Zhou,Stabilization of linear heat equation with a heat source at intermediate point by boundary control.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#ZhouG13,https://doi.org/10.1016/j.automatica.2012.11.005 +Panagiotis Patrinos,A global piecewise smooth Newton method for fast large-scale model predictive control.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#PatrinosSS11,https://doi.org/10.1016/j.automatica.2011.05.024 +Feng Ding 0001,Performance analysis of multi-innovation gradient type identification methods.,2007,43,Automatica,1,db/journals/automatica/automatica43.html#DingC07,https://doi.org/10.1016/j.automatica.2006.07.024 +Umut Orguner,An online sequential algorithm for the estimation of transition probabilities for jump Markov linear systems.,2006,42,Automatica,10,db/journals/automatica/automatica42.html#OrgunerD06,https://doi.org/10.1016/j.automatica.2006.05.002 +Ir. Frits Dumortier,Control and dynamic systems : C. T. Leondes.,1992,28,Automatica,3,db/journals/automatica/automatica28.html#Dumortier92,https://doi.org/10.1016/0005-1098(92)90194-K +Qing-Guo Wang,Low-order stabilizers for linear systems.,1997,33,Automatica,4,db/journals/automatica/automatica33.html#WangLH97,https://doi.org/10.1016/S0005-1098(96)00192-6 +Gautam Kumar,Trapping Brownian ensemble optimally using Broadcast Stochastic Receding Horizon Control.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#KumarK14,https://doi.org/10.1016/j.automatica.2013.11.025 +A. H. W. (Ton) Geerts,Impulsive-smooth behavior in multimode systems part I: State-space and polynomial representations.,1996,32,Automatica,5,db/journals/automatica/automatica32.html#GeertsS96,https://doi.org/10.1016/0005-1098(96)00008-8 +Cong Wang 0007,An ISS-modular approach for adaptive neural control of pure-feedback systems.,2006,42,Automatica,5,db/journals/automatica/automatica42.html#WangHGC06,https://doi.org/10.1016/j.automatica.2006.01.004 +D. J. Bell,Modelling of dynamical systems : Vols 1 and 2. Edited by H. Nicholson.,1982,18,Automatica,2,db/journals/automatica/automatica18.html#Bell82,https://doi.org/10.1016/0005-1098(82)90113-3 +Seppo Pohjolainen,On the optimal tuning of a robust controller for parabolic distributed parameter systems.,1987,23,Automatica,6,db/journals/automatica/automatica23.html#Pohjolainen87,https://doi.org/10.1016/0005-1098(87)90028-8 +Hao Ying,The Takagi-Sugeno fuzzy controllers using the simplified linear control rules are nonlinear variable gain controllers.,1998,34,Automatica,2,db/journals/automatica/automatica34.html#Ying98,https://doi.org/10.1016/S0005-1098(97)00173-8 +Roberto Guidorzi,Optimal errors-in-variables filtering.,2003,39,Automatica,2,db/journals/automatica/automatica39.html#GuidorziDS03,https://doi.org/10.1016/S0005-1098(02)00200-5 +Qing-Chang Zhong,Frequency domain solution to delay-type Nehari problem.,2003,39,Automatica,3,db/journals/automatica/automatica39.html#Zhong03a,https://doi.org/10.1016/S0005-1098(02)00246-7 +Matei Kelemen,Modeling and feedback control of a flexible arm of a robot for prescribed frequency-domain tolerances.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#KelemenB93,https://doi.org/10.1016/0005-1098(93)90095-B +Wann-Jiun Ma,Input-to-state stability of hybrid systems with receding horizon control in the presence of packet dropouts.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#MaG12,https://doi.org/10.1016/j.automatica.2012.05.040 +Koichi Suyama,Finite spectrum assignment for linear systems with non-commensurate time-delays.,2001,37,Automatica,1,db/journals/automatica/automatica37.html#Suyama01,https://doi.org/10.1016/S0005-1098(00)00121-7 +Takamichi Hosoda,The governing dynamics of supply chains: The impact of altruistic behaviour.,2006,42,Automatica,8,db/journals/automatica/automatica42.html#HosodaD06,https://doi.org/10.1016/j.automatica.2006.03.013 +Kun-Zhi Liu,Distributed predictor-based stabilization of continuous interconnected systems with input delays.,2018,91,Automatica,,db/journals/automatica/automatica91.html#LiuSK18,https://doi.org/10.1016/j.automatica.2018.01.030 +Giuseppe Casalino,On implicit modelling theory: Basic concepts and application to adaptive control.,1987,23,Automatica,2,db/journals/automatica/automatica23.html#CasalinoDMZ87,https://doi.org/10.1016/0005-1098(87)90091-4 +Pauline Bernard,Observers for a non-Lipschitz triangular form.,2017,82,Automatica,,db/journals/automatica/automatica82.html#BernardPA17,https://doi.org/10.1016/j.automatica.2017.04.054 +Paul Milliken,Minimax controller design for a class of uncertain linear systems.,1999,35,Automatica,4,db/journals/automatica/automatica35.html#MillikenMB99,https://doi.org/10.1016/S0005-1098(98)00162-9 +Xing-Gang Yan,Nonlinear robust fault reconstruction and estimation using a sliding mode observer.,2007,43,Automatica,9,db/journals/automatica/automatica43.html#YanE07,https://doi.org/10.1016/j.automatica.2007.02.008 +Sergey Edward Lyshevski,Nonlinear Control of Servo - Systems Actuated by Permanent-Magnet Synchronous Motors.,1998,34,Automatica,10,db/journals/automatica/automatica34.html#Lyshevski98a,https://doi.org/10.1016/S0005-1098(98)00071-5 +Jieqiang Wei,Consensus dynamics with arbitrary sign-preserving nonlinearities.,2017,83,Automatica,,db/journals/automatica/automatica83.html#WeiECS17,https://doi.org/10.1016/j.automatica.2017.06.001 +Abdelkader Abdessameud,Synchronization of nonlinear systems with communication delays and intermittent information exchange.,2015,59,Automatica,,db/journals/automatica/automatica59.html#AbdessameudPT15,https://doi.org/10.1016/j.automatica.2015.05.020 +Daniel Axehill,Convex relaxations for mixed integer predictive control.,2010,46,Automatica,9,db/journals/automatica/automatica46.html#AxehillVH10,https://doi.org/10.1016/j.automatica.2010.06.015 +Hiroaki Mukaidani,Infinite horizon linear-quadratic Stackelberg games for discrete-time stochastic systems.,2017,76,Automatica,,db/journals/automatica/automatica76.html#MukaidaniX17,https://doi.org/10.1016/j.automatica.2016.10.016 +Enrique S. Quintana-Ortí,Parallel solution of Riccati matrix equations with the matrix sign function.,1998,34,Automatica,2,db/journals/automatica/automatica34.html#Quintana-OrtiH98,https://doi.org/10.1016/S0005-1098(97)00179-9 +Ton Geerts,A Note on lattices of euclidean subspaces.,1995,31,Automatica,2,db/journals/automatica/automatica31.html#Geerts95,https://doi.org/10.1016/0005-1098(94)00137-8 +Sathyendra Ghantasala,Robust actuator fault isolation and management in constrained uncertain parabolic PDE systems.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#GhantasalaE09,https://doi.org/10.1016/j.automatica.2009.06.024 +Miroslav Krstic,On using least-squares updates without regressor filtering in identification and adaptive control of nonlinear systems.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#Krstic09,https://doi.org/10.1016/j.automatica.2008.09.024 +Yu Ren,Switched systems with average dwell time: Computation of the robust positive invariant set.,2017,85,Automatica,,db/journals/automatica/automatica85.html#RenES17a,https://doi.org/10.1016/j.automatica.2017.07.066 +Felipe Núñez,Global synchronization of pulse-coupled oscillators interacting on cycle graphs.,2015,52,Automatica,,db/journals/automatica/automatica52.html#NunezWD15,https://doi.org/10.1016/j.automatica.2014.10.111 +Michael L. Walker 0004,On feedback stabilization of the tokamak plasma vertical instability.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#WalkerH09,https://doi.org/10.1016/j.automatica.2008.10.011 +L. F. Pau,Stochastic control for economic models: David Kendrick.,1983,19,Automatica,4,db/journals/automatica/automatica19.html#Pau83,https://doi.org/10.1016/0005-1098(83)90064-X +R. Srikant,Sequential decomposition and policy iteration schemes for M-player games with partial weak coupling.,1992,28,Automatica,1,db/journals/automatica/automatica28.html#SrikantB92,https://doi.org/10.1016/0005-1098(92)90010-D +Jun Zhao,Hybrid control for global stabilization of the cart-pendulum system.,2001,37,Automatica,12,db/journals/automatica/automatica37.html#ZhaoS01,https://doi.org/10.1016/S0005-1098(01)00164-9 +Yossi Joseph Peretz,A randomized approximation algorithm for the minimal-norm static-output-feedback problem.,2016,63,Automatica,,db/journals/automatica/automatica63.html#Peretz16,https://doi.org/10.1016/j.automatica.2015.10.001 +Markéta Valecková,Bayesian M-T clustering for reduced parameterisation of Markov chains used for non-linear adaptive elements.,2001,37,Automatica,7,db/journals/automatica/automatica37.html#ValeckovaKS01,https://doi.org/10.1016/S0005-1098(01)00060-7 +Xiaodong Ai,Second-order consensus of multi-agent systems under limited interaction ranges.,2016,68,Automatica,,db/journals/automatica/automatica68.html#AiSY16,https://doi.org/10.1016/j.automatica.2016.01.073 +Oswaldo Luiz do Valle Costa,Quadratic control with partial information for discrete-time jump systems with the Markov chain in a general Borel space.,2016,66,Automatica,,db/journals/automatica/automatica66.html#CostaF16,https://doi.org/10.1016/j.automatica.2015.12.017 +Huanshui Zhang,Hinfinity Fixed-lag smoothing for discrete linear time-varying systems.,2005,41,Automatica,5,db/journals/automatica/automatica41.html#ZhangXSZ05,https://doi.org/10.1016/j.automatica.2004.11.028 +Marouane Alma,Adaptive observers design for a class of linear descriptor systems.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#AlmaD14,https://doi.org/10.1016/j.automatica.2013.11.036 +Nikolaos Bekiaris-Liberis,Stability of predictor-based feedback for nonlinear systems with distributed input delay.,2016,70,Automatica,,db/journals/automatica/automatica70.html#Bekiaris-Liberis16,https://doi.org/10.1016/j.automatica.2016.04.011 +Chunkai Gao,Notes on averaging over acyclic digraphs and discrete coverage control.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#GaoCB08,https://doi.org/10.1016/j.automatica.2007.12.017 +Hamidreza Modares,Optimal model-free output synchronization of heterogeneous systems using off-policy reinforcement learning.,2016,71,Automatica,,db/journals/automatica/automatica71.html#ModaresNLBL16,https://doi.org/10.1016/j.automatica.2016.05.017 +Tao Bian,Adaptive dynamic programming and optimal control of nonlinear nonaffine systems.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#BianJJ14,https://doi.org/10.1016/j.automatica.2014.08.023 +Gianluigi Pillonetto,Prediction error identification of linear systems: A nonparametric Gaussian regression approach.,2011,47,Automatica,2,db/journals/automatica/automatica47.html#PillonettoCN11,https://doi.org/10.1016/j.automatica.2010.11.004 +Markos Papageorgiou,Flow control of a long river stretch.,1989,25,Automatica,2,db/journals/automatica/automatica25.html#PapageorgiouM89,https://doi.org/10.1016/0005-1098(89)90071-X +D. Mustafa,Solutions to the H∞ general distance problem which minimize an entropy integral.,1991,27,Automatica,1,db/journals/automatica/automatica27.html#MustafaGL91,https://doi.org/10.1016/0005-1098(91)90021-S +Chong Jin Ong,The minimal disturbance invariant set: Outer approximations via its partial sums.,2006,42,Automatica,9,db/journals/automatica/automatica42.html#OngG06,https://doi.org/10.1016/j.automatica.2006.04.019 +Andrei Tchernychev,A Multiplier Approach for the Robust Design of Discrete-Time Control Systems with Real/Complex Uncertainties.,1998,34,Automatica,7,db/journals/automatica/automatica34.html#TchernychevS98,https://doi.org/10.1016/S0005-1098(98)00026-0 +Tianshi Chen,Maximum entropy properties of discrete-time first-order stable spline kernel.,2016,66,Automatica,,db/journals/automatica/automatica66.html#ChenACCLP16,https://doi.org/10.1016/j.automatica.2015.12.009 +Torkel Glad,Automatic control systems (fifth edition) : Benjamin C. Kuo.,1988,24,Automatica,6,db/journals/automatica/automatica24.html#Glad88,https://doi.org/10.1016/0005-1098(88)90066-0 +James M. Buffington,Robust longitudinal axis flight control for an aircraft with thrust vectoring.,1994,30,Automatica,10,db/journals/automatica/automatica30.html#BuffingtonSB94,https://doi.org/10.1016/0005-1098(94)90093-0 +Robert Schmid,Limit or limit superior? Observations on the convergence of some iterative learning control schemes.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#Schmid09,https://doi.org/10.1016/j.automatica.2009.06.009 +Jianliang Wang,Extended nonlinear flight controller design for aircraft.,1996,32,Automatica,8,db/journals/automatica/automatica32.html#WangS96,https://doi.org/10.1016/0005-1098(96)00066-0 +Michel Gevers,Model validation for control and controller validation in a prediction error identification framework - Part II: illustrations.,2003,39,Automatica,3,db/journals/automatica/automatica39.html#GeversBCSA03a,https://doi.org/10.1016/S0005-1098(02)00235-2 +Huibert Kwakernaak,A new editorial appointment.,1998,34,Automatica,2,db/journals/automatica/automatica34.html#Kwakernaak98,https://doi.org/10.1016/S0005-1098(97)00227-6 +Lixian Zhang,Asynchronously switched control of switched linear systems with average dwell time.,2010,46,Automatica,5,db/journals/automatica/automatica46.html#ZhangG10,https://doi.org/10.1016/j.automatica.2010.02.021 +Alireza Esna Ashari,Effects of feedback on active fault detection.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#AshariNC12,https://doi.org/10.1016/j.automatica.2012.02.020 +Filippo Cacace,Feedback quadratic filtering.,2017,82,Automatica,,db/journals/automatica/automatica82.html#CacaceCGP17,https://doi.org/10.1016/j.automatica.2017.04.046 +Mesut E. Sezer,Nested 9*-decompositions and clustering of complex systems.,1986,22,Automatica,3,db/journals/automatica/automatica22.html#SezerS86,https://doi.org/10.1016/0005-1098(86)90030-0 +Francesco Amato,A Robust Stability Problem for Discrete-Time Systems Subject to an Uncertain Parameter.,1998,34,Automatica,4,db/journals/automatica/automatica34.html#AmatoM098,https://doi.org/10.1016/S0005-1098(97)00237-9 +Ulf Jönsson,Robustness of trajectories with finite time extent.,2002,38,Automatica,9,db/journals/automatica/automatica38.html#Jonsson02,https://doi.org/10.1016/S0005-1098(02)00061-4 +Fuchun Liu,Bisimilarity control of partially observed nondeterministic discrete event systems and a test algorithm.,2011,47,Automatica,4,db/journals/automatica/automatica47.html#LiuLD11,https://doi.org/10.1016/j.automatica.2011.01.066 +Huibert Kwakernaak,Automatica cumulative contents and indexes 1963-1995.,1996,32,Automatica,6,db/journals/automatica/automatica32.html#Kwakernaak96c,https://doi.org/10.1016/0005-1098(96)89427-1 +Vlad Ionescu,Generalized Popov theory applied to state-delayed systems.,2001,37,Automatica,1,db/journals/automatica/automatica37.html#IonescuNDDL01,https://doi.org/10.1016/S0005-1098(00)00126-6 +Jakob Kjøbsted Huusom,A design algorithm using external perturbation to improve Iterative Feedback Tuning convergence.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#HuusomHPJ11,https://doi.org/10.1016/j.automatica.2011.05.029 +Graham C. Goodwin,A modified relay autotuner for systems having large broadband disturbances.,2018,94,Automatica,,db/journals/automatica/automatica94.html#GoodwinST18,https://doi.org/10.1016/j.automatica.2018.04.031 +F. M. Hughes,Frequency response methods for nuclear station boiler control.,1976,12,Automatica,3,db/journals/automatica/automatica12.html#HughesM76,https://doi.org/10.1016/0005-1098(76)90020-0 +Cristiano Maria Verrelli,Establishing improved convergence properties for the adaptive learning control.,2011,47,Automatica,4,db/journals/automatica/automatica47.html#Verrelli11,https://doi.org/10.1016/j.automatica.2011.01.086 +Xiangtao Zhuan,Speed regulation with measured output feedback in the control of heavy haul trains.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#ZhuanX08,https://doi.org/10.1016/j.automatica.2007.05.002 +Vilas K. Chitrakaran,Identification of a moving object's velocity with a fixed camera.,2005,41,Automatica,3,db/journals/automatica/automatica41.html#ChitrakaranDDC05,https://doi.org/10.1016/j.automatica.2004.11.020 +Qing-Guo Wang,Tuning of phase-lead compensators for exact gain and phase margins.,2006,42,Automatica,2,db/journals/automatica/automatica42.html#WangYH06,https://doi.org/10.1016/j.automatica.2005.09.017 +Junlin Xiong,Stabilization of discrete-time Markovian jump linear systems via time-delayed controllers.,2006,42,Automatica,5,db/journals/automatica/automatica42.html#XiongL06,https://doi.org/10.1016/j.automatica.2005.12.015 +Yoshio Ebihara,On the degree of polynomial parameter-dependent Lyapunov functions for robust stability of single parameter-dependent LTI systems: A counter-example to Barmish's conjecture.,2006,42,Automatica,9,db/journals/automatica/automatica42.html#EbiharaH06,https://doi.org/10.1016/j.automatica.2006.04.011 +Ranran Li,Nonlinear output regulation with adaptive conditional servocompensator.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#LiK12,https://doi.org/10.1016/j.automatica.2012.06.052 +Wei-Jie Mao,D-stability and D-stabilization of linear discrete time-delay systems with polytopic uncertainties.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#MaoC09,https://doi.org/10.1016/j.automatica.2008.11.003 +Samuel Coogan,Stability of traffic flow networks with a polytree topology.,2016,66,Automatica,,db/journals/automatica/automatica66.html#CooganA16,https://doi.org/10.1016/j.automatica.2015.12.015 +Luc C. G. J. M. Habets,A control problem for affine dynamical systems on a full-dimensional polytope.,2004,40,Automatica,1,db/journals/automatica/automatica40.html#HabetsS04,https://doi.org/10.1016/j.automatica.2003.08.001 +K. Ramar,Pole assignment for multi-input multi-output systems using output feedback.,1991,27,Automatica,6,db/journals/automatica/automatica27.html#RamarA91,https://doi.org/10.1016/0005-1098(91)90145-R +Kai Höffner,Generalized derivatives of dynamic systems with a linear program embedded.,2016,63,Automatica,,db/journals/automatica/automatica63.html#HoffnerKB16,https://doi.org/10.1016/j.automatica.2015.10.026 +Keqin Gu,Lyapunov-Krasovskii functional for uniform stability of coupled differential-functional equations.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#GuL09,https://doi.org/10.1016/j.automatica.2008.10.024 +Andreas Johansson,Dynamic threshold generators for robust fault detection in linear systems with parameter uncertainty.,2006,42,Automatica,7,db/journals/automatica/automatica42.html#JohanssonBN06,https://doi.org/10.1016/j.automatica.2006.02.009 +Tyrone L. Vincent,Mixed parametric/non-parametric identification of systems with discontinuous nonlinearities.,2013,49,Automatica,12,db/journals/automatica/automatica49.html#VincentN13,https://doi.org/10.1016/j.automatica.2013.09.022 +Jean-Yves Keller,Optimal two-stage Kalman filter in the presence of random bias.,1997,33,Automatica,9,db/journals/automatica/automatica33.html#KellerD97,https://doi.org/10.1016/S0005-1098(97)00088-5 +David Q. Mayne,Characterization of the solution to a constrained Hinfinity optimal control problem.,2006,42,Automatica,3,db/journals/automatica/automatica42.html#MayneRVK06,https://doi.org/10.1016/j.automatica.2005.10.015 +Hideaki Ishii,Stabilization with control networks.,2002,38,Automatica,10,db/journals/automatica/automatica38.html#IshiiF02,https://doi.org/10.1016/S0005-1098(02)00076-6 +Giovanni L. Santosuosso,Robust regulation with minimal parametrization for a class of nonlinear systems.,1999,35,Automatica,7,db/journals/automatica/automatica35.html#Santosuosso99,https://doi.org/10.1016/S0005-1098(99)00024-2 +Xin Xin,Reduced-order controllers for continuous and discrete-time singular H∞ control problems based on LMI.,1996,32,Automatica,11,db/journals/automatica/automatica32.html#XinGF96,https://doi.org/10.1016/S0005-1098(96)00103-3 +Kyung-Soo Kim,Designing robust sliding hyperplanes for parametric uncertain systems: a Riccati approach.,2000,36,Automatica,7,db/journals/automatica/automatica36.html#KimPO00,https://doi.org/10.1016/S0005-1098(00)00014-5 +Weihai Zhang,Stochastic affine quadratic regulator with applications to tracking control of quantum systems.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#ZhangC08,https://doi.org/10.1016/j.automatica.2008.03.024 +Frédéric Hamelin,Uncoupling Isaacs equations in two-player nonzero-sum differential games. Parental conflict over care as an example.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#HamelinB08,https://doi.org/10.1016/j.automatica.2007.07.016 +Martin B. Zarrop,Variable forgetting factors in parameter estimation.,1983,19,Automatica,3,db/journals/automatica/automatica19.html#Zarrop83,https://doi.org/10.1016/0005-1098(83)90106-1 +Masaki Ogura,Stability of Markov regenerative switched linear systems.,2016,69,Automatica,,db/journals/automatica/automatica69.html#OguraP16,https://doi.org/10.1016/j.automatica.2016.02.022 +Pierre Riedinger,"Erratum to: Comments on ""Optimally switched linear systems"" [Automatica 45 (6) (2009) 1588-1590].",2009,45,Automatica,9,db/journals/automatica/automatica45.html#Riedinger09a,https://doi.org/10.1016/j.automatica.2009.06.001 +Zhao-Yan Li,Stability analysis of linear stochastic neutral-type time-delay systems with two delays.,2018,91,Automatica,,db/journals/automatica/automatica91.html#LiLW18,https://doi.org/10.1016/j.automatica.2018.01.014 +Lucas Pun,Computer assisted static and dynamical plannings for production activities.,1981,17,Automatica,2,db/journals/automatica/automatica17.html#Pun81,https://doi.org/10.1016/0005-1098(81)90049-2 +Jacob Engwerda,Properties of feedback Nash equilibria in scalar LQ differential games.,2016,69,Automatica,,db/journals/automatica/automatica69.html#Engwerda16,https://doi.org/10.1016/j.automatica.2016.03.014 +Mohamed F. Hassan,A three level costate prediction method for continuous dynamical systems.,1978,14,Automatica,2,db/journals/automatica/automatica14.html#HassanHST78,https://doi.org/10.1016/0005-1098(78)90025-0 +Tore Hägglund,Industrial adaptive controllers based on frequency response techniques.,1991,27,Automatica,4,db/journals/automatica/automatica27.html#HagglundA91,https://doi.org/10.1016/0005-1098(91)90052-4 +Y. Oshima,Recent trends of manufacturing technology in Japan.,1981,17,Automatica,3,db/journals/automatica/automatica17.html#Oshima81,https://doi.org/10.1016/0005-1098(81)90002-9 +S. Emre Tuna,Synchronization analysis of coupled Lienard-type oscillators by averaging.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#Tuna12,https://doi.org/10.1016/j.automatica.2012.05.075 +John W. Brewer,On the design of feedback control for relative stability.,1981,17,Automatica,5,db/journals/automatica/automatica17.html#BrewerA81,https://doi.org/10.1016/0005-1098(81)90025-X +Ian R. Petersen,A procedure for simultaneously stabilizing a collection of single input linear systems using non-linear state feedback control.,1987,23,Automatica,1,db/journals/automatica/automatica23.html#Petersen87,https://doi.org/10.1016/0005-1098(87)90116-6 +Yury Sokolov,Complete stability analysis of a heuristic approximate dynamic programming control design.,2015,59,Automatica,,db/journals/automatica/automatica59.html#SokolovKWW15,https://doi.org/10.1016/j.automatica.2015.06.001 +Magdi S. Mahmoud,Resilient linear filtering of uncertain systems.,2004,40,Automatica,10,db/journals/automatica/automatica40.html#Mahmoud04a,https://doi.org/10.1016/j.automatica.2004.05.007 +Konstantinos I. Kouramas,An algorithm for robust explicit/multi-parametric model predictive control.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#KouramasPFP13,https://doi.org/10.1016/j.automatica.2012.11.035 +John Baillieul,Survey articles in Automatica.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#Baillieul11,https://doi.org/10.1016/j.automatica.2011.10.001 +Sunan Huang 0001,Necessary and sufficient condition for convergence of iterative learning algorithm.,2002,38,Automatica,7,db/journals/automatica/automatica38.html#HuangTL02a,https://doi.org/10.1016/S0005-1098(02)00014-6 +Ji-Woong Lee,Uniform stabilization of discrete-time switched and Markovian jump linear systems.,2006,42,Automatica,2,db/journals/automatica/automatica42.html#LeeD06,https://doi.org/10.1016/j.automatica.2005.08.019 +Janos Gertler,Computational experience with the constrained minimum variance input-output estimator.,1980,16,Automatica,4,db/journals/automatica/automatica16.html#GertlerVS80,https://doi.org/10.1016/0005-1098(80)90029-1 +Driss Boutat,New algorithm for observer error linearization with a diffeomorphism on the outputs.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#BoutatBHB09,https://doi.org/10.1016/j.automatica.2009.05.030 +Desong Chen,Adaptive control of hot-dip galvanizing.,1995,31,Automatica,5,db/journals/automatica/automatica31.html#Chen95,https://doi.org/10.1016/0005-1098(94)00132-3 +Michael Ouimet,Robust coordinated rendezvous of depth-actuated drifters in ocean internal waves.,2016,69,Automatica,,db/journals/automatica/automatica69.html#OuimetC16,https://doi.org/10.1016/j.automatica.2016.02.035 +Yongqiang Ye,All-pass filtering in iterative learning control.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#YeTL09,https://doi.org/10.1016/j.automatica.2008.07.011 +M. J. Grimble,Two-degrees of freedom feedback and feedforward optimal control of multivariable stochastic systems.,1988,24,Automatica,6,db/journals/automatica/automatica24.html#Grimble88,https://doi.org/10.1016/0005-1098(88)90057-X +Chengtao Wen,Identification of dynamic systems using Piecewise-Affine basis function models.,2007,43,Automatica,10,db/journals/automatica/automatica43.html#WenWJM07,https://doi.org/10.1016/j.automatica.2007.03.003 +J. Spruce Riordon,An adaptive automaton controller for discrete-time markov processes.,1969,5,Automatica,6,db/journals/automatica/automatica5.html#Riordon69,https://doi.org/10.1016/0005-1098(69)90085-5 +Renato Markele Ferreira Cândido,Conditional reachability of uncertain Max Plus Linear systems.,2018,94,Automatica,,db/journals/automatica/automatica94.html#CandidoHLS18,https://doi.org/10.1016/j.automatica.2017.11.030 +Tudor-Bogdan Airimitoaie,"Improving adaptive feedforward vibration compensation by using "" Integral+Proportional "" adaptation.",2013,49,Automatica,5,db/journals/automatica/automatica49.html#AirimitoaieL13,https://doi.org/10.1016/j.automatica.2013.01.025 +Francisco Javier Bejarano,Observability of linear systems with commensurate delays and unknown inputs.,2014,50,Automatica,8,db/journals/automatica/automatica50.html#BejaranoZ14,https://doi.org/10.1016/j.automatica.2014.05.032 +Mattia Zorzi,An interpretation of the dual problem of the THREE-like approaches.,2015,62,Automatica,,db/journals/automatica/automatica62.html#Zorzi15,https://doi.org/10.1016/j.automatica.2015.09.023 +Alexandra Grancharova,Explicit stochastic predictive control of combustion plants based on Gaussian process models.,2008,44,Automatica,6,db/journals/automatica/automatica44.html#GrancharovaKJ08,https://doi.org/10.1016/j.automatica.2008.04.002 +Vinay Kariwala,Fundamental limitation on achievable decentralized performance.,2007,43,Automatica,10,db/journals/automatica/automatica43.html#Kariwala07,https://doi.org/10.1016/j.automatica.2007.03.004 +Harry G. Kwatny,Turbine-generator system control for a HTGR power plant.,1980,16,Automatica,3,db/journals/automatica/automatica16.html#KwatnyK80,https://doi.org/10.1016/0005-1098(80)90036-9 +Giorgio Battistelli,Performance-oriented transfer for switching control.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#BattistelliMMT13,https://doi.org/10.1016/j.automatica.2013.04.024 +Mau-Hsiang Shih,Simultaneous Schur stability of interval matrices.,2008,44,Automatica,10,db/journals/automatica/automatica44.html#ShihP08,https://doi.org/10.1016/j.automatica.2008.02.026 +Jean-Claude Hennet,A bimodal scheme for multi-stage production and inventory control.,2003,39,Automatica,5,db/journals/automatica/automatica39.html#Hennet03,https://doi.org/10.1016/S0005-1098(03)00026-8 +Rajendra K. Mutha,Nonlinear model-based predictive control of control nonaffine systems.,1997,33,Automatica,5,db/journals/automatica/automatica33.html#MuthaCP97,https://doi.org/10.1016/S0005-1098(96)00220-8 +Tiantian Jiang,Control of uncertain nonlinear systems based on observers and estimators.,2015,59,Automatica,,db/journals/automatica/automatica59.html#JiangH015,https://doi.org/10.1016/j.automatica.2015.06.012 +Xu Li,"Comments on ""Stability of linear time invariant fractional delay systems of retarded type in the space of delay parameters [Automatica 49 (2013) 1287-1294]"".",2016,72,Automatica,,db/journals/automatica/automatica72.html#LiZ16,https://doi.org/10.1016/j.automatica.2016.04.051 +Jeroen van de Wijdeven,Iterative Learning Control for uncertain systems: Robust monotonic convergence analysis.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#WijdevenDB09,https://doi.org/10.1016/j.automatica.2009.06.033 +Orest V. Iftime,From a standard factorization to a J-spectral factorization for a class of infinite-dimensional systems.,2016,63,Automatica,,db/journals/automatica/automatica63.html#Iftime16,https://doi.org/10.1016/j.automatica.2015.10.021 +Andrzej Polanski,On absolute stability analysis by polyhedral Lyapunov functions.,2000,36,Automatica,4,db/journals/automatica/automatica36.html#Polanski00,https://doi.org/10.1016/S0005-1098(99)00180-6 +Jian Sun 0003,Improved delay-range-dependent stability criteria for linear systems with time-varying delays.,2010,46,Automatica,2,db/journals/automatica/automatica46.html#SunLCR10,https://doi.org/10.1016/j.automatica.2009.11.002 +Prathyush P. Menon,Decentralised static output feedback stabilisation and synchronisation of networks.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#MenonE09,https://doi.org/10.1016/j.automatica.2009.09.029 +Hendra Ishwara Nurdin,Coherent quantum LQG control.,2009,45,Automatica,8,db/journals/automatica/automatica45.html#NurdinJP09,https://doi.org/10.1016/j.automatica.2009.04.018 +Rudolf Kulhavý,Restricted exponential forgetting in real-time identification.,1987,23,Automatica,5,db/journals/automatica/automatica23.html#Kulhavy87,https://doi.org/10.1016/0005-1098(87)90054-9 +Liangjian Hu,Almost sure exponential stabilisation of stochastic systems by state-feedback control.,2008,44,Automatica,2,db/journals/automatica/automatica44.html#HuM08,https://doi.org/10.1016/j.automatica.2007.05.027 +Jinxin Hao,An efficient controller structure with minimum roundoff noise gain.,2007,43,Automatica,5,db/journals/automatica/automatica43.html#HaoL07,https://doi.org/10.1016/j.automatica.2006.11.012 +Frank L. Lewis,Analysis of Deadlock and Circular Waits Using a Matrix Model for Flexible Manufacturing Systems.,1998,34,Automatica,9,db/journals/automatica/automatica34.html#LewisGBDP98,https://doi.org/10.1016/S0005-1098(98)00048-X +Denis V. Efimov,Global sliding-mode observer with adjusted gains for locally Lipschitz systems.,2011,47,Automatica,3,db/journals/automatica/automatica47.html#EfimovF11,https://doi.org/10.1016/j.automatica.2010.12.003 +Guoping Lu,A note on the existence of a solution and stability for Lipschitz discrete-time descriptor systems.,2011,47,Automatica,7,db/journals/automatica/automatica47.html#LuHZ11,https://doi.org/10.1016/j.automatica.2011.04.001 +V. Y. Arkov,Optimal spectral resolution in system identification.,2003,39,Automatica,4,db/journals/automatica/automatica39.html#ArkovKB03,https://doi.org/10.1016/S0005-1098(02)00277-7 +Muhammad Saeed Aslam,Maximum likelihood least squares identification method for active noise control systems with autoregressive moving average noise.,2016,69,Automatica,,db/journals/automatica/automatica69.html#Aslam16,https://doi.org/10.1016/j.automatica.2016.02.011 +Kou-Cheng Hsu,Variable Structure Control Design for Uncertain Dynamic Systems with Sector Nonlinearities.,1998,34,Automatica,4,db/journals/automatica/automatica34.html#Hsu98,https://doi.org/10.1016/S0005-1098(97)00233-1 +Shunyi Zhao,Minimum variance unbiased FIR filter for discrete time-variant systems.,2015,53,Automatica,,db/journals/automatica/automatica53.html#ZhaoSHL15,https://doi.org/10.1016/j.automatica.2015.01.022 +Kunfeng Lu,Adaptive attitude tracking control for rigid spacecraft with finite-time convergence.,2013,49,Automatica,12,db/journals/automatica/automatica49.html#LuX13,https://doi.org/10.1016/j.automatica.2013.09.001 +Yu Tang,Adaptive tuning to frequency response specifications.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#TangO93,https://doi.org/10.1016/0005-1098(93)90021-K +Serkan Gugercin,Structure-preserving tangential interpolation for model reduction of port-Hamiltonian systems.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#GugercinPBS12,https://doi.org/10.1016/j.automatica.2012.05.052 +Sei Zhen Khong,Multidimensional global extremum seeking via the DIRECT optimisation algorithm.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#KhongNMT13,https://doi.org/10.1016/j.automatica.2013.04.006 +C. Frangos,A synthesis procedure for discrete linear time-dependent control systems.,1994,30,Automatica,6,db/journals/automatica/automatica30.html#FrangosY94,https://doi.org/10.1016/0005-1098(94)90200-3 +Domenico D'Alessandro,Optimal steering for an extended class of nonholonomic systems using Lagrange functional.,1997,33,Automatica,9,db/journals/automatica/automatica33.html#DAlessandroF97,https://doi.org/10.1016/S0005-1098(97)00060-5 +Luca Benvenuti,On model consistency in compartmental systems identification.,2002,38,Automatica,11,db/journals/automatica/automatica38.html#BenvenutiSF02,https://doi.org/10.1016/S0005-1098(02)00107-3 +Mo Jamshidi,An imbedded initialization of Newton's algorithm for matrix Riccati equation.,1978,14,Automatica,2,db/journals/automatica/automatica14.html#Jamshidi78,https://doi.org/10.1016/0005-1098(78)90023-7 +Hao Yu 0007,Input-to-state stability of integral-based event-triggered control for linear plants.,2017,85,Automatica,,db/journals/automatica/automatica85.html#YuH17,https://doi.org/10.1016/j.automatica.2017.07.068 +Pietro Muraca,A Variable-structure Regulator for Robotic Systems.,1997,33,Automatica,7,db/journals/automatica/automatica33.html#MuracaP97,https://doi.org/10.1016/S0005-1098(97)00057-5 +Wei Kang 0001,Bifurcation test functions and surge control for axial flow compressors.,1999,35,Automatica,2,db/journals/automatica/automatica35.html#KangGSB99,https://doi.org/10.1016/S0005-1098(98)00148-4 +Jenq-Tzong H. Chan,Data-based synthesis of a multivariable linear-quadratic regulator.,1996,32,Automatica,3,db/journals/automatica/automatica32.html#Chan96,https://doi.org/10.1016/0005-1098(95)00142-5 +Xun Li 0002,Saddle points of discrete Markov zero-sum game with stopping.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#LiSS12,https://doi.org/10.1016/j.automatica.2012.06.012 +Arjan van der Schaft,Nonlinear systems analysis: M. Vidyasagar.,1994,30,Automatica,10,db/journals/automatica/automatica30.html#Schaft94,https://doi.org/10.1016/0005-1098(94)90103-1 +C. X. Zhu,Feedback control of nonlinear stochastic systems for targeting a specified stationary probability density.,2011,47,Automatica,3,db/journals/automatica/automatica47.html#ZhuZ11,https://doi.org/10.1016/j.automatica.2010.10.044 +R. A. Paz,Design of disturbance attenuating controllers: A Riccati-based FH norm optimization algorithm.,1990,26,Automatica,5,db/journals/automatica/automatica26.html#PazM90,https://doi.org/10.1016/0005-1098(90)90008-6 +Ali Saberi,Cheap control problem of a linear uniform rank system: Design by composite control.,1986,22,Automatica,6,db/journals/automatica/automatica22.html#SaberiS86,https://doi.org/10.1016/0005-1098(86)90017-8 +Martina Favaro,Consistency of subspace methods for signals with almost-periodic components.,2012,48,Automatica,3,db/journals/automatica/automatica48.html#FavaroP12,https://doi.org/10.1016/j.automatica.2011.08.059 +Xinkai Chen,Adaptive control for continuous-time systems with actuator and sensor hysteresis.,2016,64,Automatica,,db/journals/automatica/automatica64.html#ChenFS16,https://doi.org/10.1016/j.automatica.2015.11.009 +Ioana Fagarasan,Causal fault detection and isolation based on a set-membership approach.,2004,40,Automatica,12,db/journals/automatica/automatica40.html#FagarasanPG04,https://doi.org/10.1016/j.automatica.2004.06.021 +U. Piechottka,Controllability of bilinear systems.,1992,28,Automatica,5,db/journals/automatica/automatica28.html#PiechottkaF92,https://doi.org/10.1016/0005-1098(92)90160-H +Seong-Jin Park,"Reply to ""Comments on 'Supervisory control for real-time scheduling of periodic and sporadic tasks with resource constraints""' [Automatica 45 (2009) 2597-2604].",2017,82,Automatica,,db/journals/automatica/automatica82.html#ParkY17,https://doi.org/10.1016/j.automatica.2017.04.012 +Ji Ma,An approach to quantized consensus of continuous-time linear multi-agent systems.,2018,91,Automatica,,db/journals/automatica/automatica91.html#MaJSF18,https://doi.org/10.1016/j.automatica.2018.01.028 +Saïd Moussaoui,Regularization aspects in continuous-time model identification.,2005,41,Automatica,2,db/journals/automatica/automatica41.html#MoussaouiBR05,https://doi.org/10.1016/j.automatica.2004.10.008 +Luca Consolini,Path following for the PVTOL aircraft.,2010,46,Automatica,8,db/journals/automatica/automatica46.html#ConsoliniMNT10,https://doi.org/10.1016/j.automatica.2010.05.014 +W. Gawronski,A balanced LQG compensator for flexible structures.,1994,30,Automatica,10,db/journals/automatica/automatica30.html#Gawronski94,https://doi.org/10.1016/0005-1098(94)90095-7 +Jin Wang,Neural network enhanced output regulation in nonlinear systems.,2001,37,Automatica,8,db/journals/automatica/automatica37.html#WangH01,https://doi.org/10.1016/S0005-1098(01)00068-1 +Hannu T. Toivonen,Comments on self-tuning regulator applied to a binary distillation column.,1979,15,Automatica,2,db/journals/automatica/automatica15.html#ToivonenW79,https://doi.org/10.1016/0005-1098(79)90073-6 +Qing-Guo Wang,Pole assignment by output feedback: A solution for 2 and** 2 plants.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#WangLH93,https://doi.org/10.1016/0005-1098(93)90028-R +S. V. Gaikwad,Multivariable frequency-response curve fitting with application to control-relevant parameter estimation.,1997,33,Automatica,6,db/journals/automatica/automatica33.html#GaikwadR97,https://doi.org/10.1016/S0005-1098(97)00018-6 +Miroslav Simandl,Advanced point-mass method for nonlinear state estimation.,2006,42,Automatica,7,db/journals/automatica/automatica42.html#SimandlKS06,https://doi.org/10.1016/j.automatica.2006.03.010 +Josef Shinar,On applications of singular perturbation techniques in nonlinear optimal control.,1983,19,Automatica,2,db/journals/automatica/automatica19.html#Shinar83,https://doi.org/10.1016/0005-1098(83)90093-6 +Jan Eric Larsson,An expert system interface for an identification program.,1991,27,Automatica,6,db/journals/automatica/automatica27.html#LarssonP91,https://doi.org/10.1016/0005-1098(91)90128-O +Tao Li 0002,Decentralized tracking-type games for multi-agent systems with coupled ARX models: Asymptotic Nash equilibria.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#LiZ08,https://doi.org/10.1016/j.automatica.2007.07.007 +Mehdi Abedinpour Fallah,A class of interference induced games: Asymptotic Nash equilibria and parameterized cooperative solutions.,2016,69,Automatica,,db/journals/automatica/automatica69.html#FallahMM16,https://doi.org/10.1016/j.automatica.2016.02.030 +Abhishek Halder,Probabilistic model validation for uncertain nonlinear systems.,2014,50,Automatica,8,db/journals/automatica/automatica50.html#HalderB14,https://doi.org/10.1016/j.automatica.2014.05.026 +Mike Chen,Reliability by design in distributed power transmission networks.,2006,42,Automatica,8,db/journals/automatica/automatica42.html#ChenCM06,https://doi.org/10.1016/j.automatica.2005.12.013 +D. Glasser,Numerical optimisation of dynamic systems: L. C. W. Dixon and G. P. Szegö.,1982,18,Automatica,3,db/journals/automatica/automatica18.html#Glasser82,https://doi.org/10.1016/0005-1098(82)90100-5 +Henry J. Kelley,Thrust-vectored differential turns.,1982,18,Automatica,5,db/journals/automatica/automatica18.html#KelleyCL82,https://doi.org/10.1016/0005-1098(82)90006-1 +Yongping Pan,Composite learning robot control with guaranteed parameter convergence.,2018,89,Automatica,,db/journals/automatica/automatica89.html#PanY18,https://doi.org/10.1016/j.automatica.2017.11.032 +Martin Böck,Constrained model predictive manifold stabilization based on transverse normal forms.,2016,74,Automatica,,db/journals/automatica/automatica74.html#BockK16,https://doi.org/10.1016/j.automatica.2016.07.046 +Marc Jungers,Bounds for the remainders of uncertain matrix exponential and sampled-data control of polytopic linear systems.,2017,82,Automatica,,db/journals/automatica/automatica82.html#JungersDG17,https://doi.org/10.1016/j.automatica.2017.04.057 +Michael Margaliot,Absolute stability of third-order systems: A numerical algorithm.,2006,42,Automatica,10,db/journals/automatica/automatica42.html#MargaliotY06,https://doi.org/10.1016/j.automatica.2006.04.025 +Min Wu 0002,Delay-dependent criteria for robust stability of time-varying delay systems.,2004,40,Automatica,8,db/journals/automatica/automatica40.html#WuHSL04,https://doi.org/10.1016/j.automatica.2004.03.004 +Francesco Ticozzi,Symmetrizing quantum dynamics beyond gossip-type algorithms.,2016,74,Automatica,,db/journals/automatica/automatica74.html#Ticozzi16,https://doi.org/10.1016/j.automatica.2016.06.019 +Weining Feng,On practical stability of linear multivariable feedback systems with time-delays.,1991,27,Automatica,2,db/journals/automatica/automatica27.html#Feng91,https://doi.org/10.1016/0005-1098(91)90087-I +James J. Buckley,Fuzzy controller theory: Limit theorems for linear fuzzy control rules.,1989,25,Automatica,3,db/journals/automatica/automatica25.html#BuckleyY89,https://doi.org/10.1016/0005-1098(89)90017-4 +Damir Vrancic,A magnitude optimum multiple integration tuning method for filtered PID controller.,2001,37,Automatica,9,db/journals/automatica/automatica37.html#VrancicSJ01,https://doi.org/10.1016/S0005-1098(01)00088-7 +Mattia Mattioni,Immersion and invariance stabilization of strict-feedback dynamics under sampling.,2017,76,Automatica,,db/journals/automatica/automatica76.html#MattioniMN17,https://doi.org/10.1016/j.automatica.2016.10.009 +Laura Menini,State estimation of (otherwise unobservable) linear mechanical systems through the use of non-smooth impacts: the case of two mating gears.,2002,38,Automatica,10,db/journals/automatica/automatica38.html#MeniniT02,https://doi.org/10.1016/S0005-1098(02)00065-1 +Balaji Sampathnarayanan,An optimal regulation strategy with disturbance rejection for energy management of hybrid electric vehicles.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#SampathnarayananOY14,https://doi.org/10.1016/j.automatica.2013.11.006 +Simon Wollnack,Fixed-structure LPV-IO controllers: An implicit representation based approach.,2017,83,Automatica,,db/journals/automatica/automatica83.html#WollnackATW17,https://doi.org/10.1016/j.automatica.2017.06.009 +Emad Abd-Elrady,Least-squares periodic signal modeling using orbits of nonlinear ODEs and fully automated spectral analysis.,2005,41,Automatica,5,db/journals/automatica/automatica41.html#Abd-ElradyS05,https://doi.org/10.1016/j.automatica.2004.11.031 +Christoforos Keroglou,Verification of detectability in Probabilistic Finite Automata.,2017,86,Automatica,,db/journals/automatica/automatica86.html#KeroglouH17,https://doi.org/10.1016/j.automatica.2017.08.027 +Juan C. Agüero,On the equivalence of time and frequency domain maximum likelihood estimation.,2010,46,Automatica,2,db/journals/automatica/automatica46.html#AgueroYGD10,https://doi.org/10.1016/j.automatica.2009.10.038 +Stuart H. Starr,Concise encyclopedia of modelling and simulation: D. P. Atherton and P. Borne (editors).,1993,29,Automatica,6,db/journals/automatica/automatica29.html#Starr93,https://doi.org/10.1016/0005-1098(93)90037-T +Bayu Jayawardhana,Stability of systems with the Duhem hysteresis operator: The dissipativity approach.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#JayawardhanaOA12,https://doi.org/10.1016/j.automatica.2012.06.069 +Fabio Morbidi,Visibility maintenance via controlled invariance for leader-follower vehicle formations.,2011,47,Automatica,5,db/journals/automatica/automatica47.html#MorbidiBP11,https://doi.org/10.1016/j.automatica.2011.01.065 +Magdi S. Mahmoud,Uncertain jumping systems with strong and weak functional delays.,2004,40,Automatica,3,db/journals/automatica/automatica40.html#Mahmoud04,https://doi.org/10.1016/j.automatica.2003.11.001 +Alexandros Kiparissides,'Closing the loop' in biological systems modeling - From the in silico to the in vitro.,2011,47,Automatica,6,db/journals/automatica/automatica47.html#KiparissidesKKMP11,https://doi.org/10.1016/j.automatica.2011.01.013 +Dionisis Stefanatos,Optimal shortcuts to adiabaticity for a quantum piston.,2013,49,Automatica,10,db/journals/automatica/automatica49.html#Stefanatos13,https://doi.org/10.1016/j.automatica.2013.07.020 +Peter E. Wellstead,An instrumental product moment test for model order estimation.,1978,14,Automatica,1,db/journals/automatica/automatica14.html#Wellstead78,https://doi.org/10.1016/0005-1098(78)90079-1 +Farhad Farokhi,On reconstructability of quadratic utility functions from the iterations in gradient methods.,2016,66,Automatica,,db/journals/automatica/automatica66.html#FarokhiSRJ16,https://doi.org/10.1016/j.automatica.2016.01.014 +Giordano Pola,Approximately bisimilar symbolic models for nonlinear control systems.,2008,44,Automatica,10,db/journals/automatica/automatica44.html#PolaGT08,https://doi.org/10.1016/j.automatica.2008.02.021 +István Vajk,Identification of nonlinear errors-in-variables models.,2003,39,Automatica,12,db/journals/automatica/automatica39.html#VajkH03,https://doi.org/10.1016/j.automatica.2003.06.001 +Philippe de Larminat,On the stabilizability condition in indirect adaptive control.,1984,20,Automatica,6,db/journals/automatica/automatica20.html#Larminat84,https://doi.org/10.1016/0005-1098(84)90088-8 +Gang Zheng,A nonlinear Luenberger-like observer for nonlinear singular systems.,2017,86,Automatica,,db/journals/automatica/automatica86.html#ZhengBW17,https://doi.org/10.1016/j.automatica.2017.08.018 +Yanjun Shen,Continuous observer design for a class of multi-output nonlinear systems with multi-rate sampled and delayed output measurements.,2017,75,Automatica,,db/journals/automatica/automatica75.html#ShenZX17,https://doi.org/10.1016/j.automatica.2016.09.028 +Yinfang Song,New criteria on asymptotic behavior of neutral stochastic functional differential equations.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#SongS13,https://doi.org/10.1016/j.automatica.2012.11.045 +Hyungbo Shim,A note on the differential regulator equation for non-minimum phase linear systems with time-varying exosystems.,2010,46,Automatica,3,db/journals/automatica/automatica46.html#ShimKKB10,https://doi.org/10.1016/j.automatica.2009.12.007 +Fabio Celani,Output regulation for the TORA benchmark via rotational position feedback.,2011,47,Automatica,3,db/journals/automatica/automatica47.html#Celani11,https://doi.org/10.1016/j.automatica.2011.01.008 +Carlos S. Kubrusly,Sensors and controllers location in distributed systems - A survey.,1985,21,Automatica,2,db/journals/automatica/automatica21.html#KubruslyM85,https://doi.org/10.1016/0005-1098(85)90107-4 +Arvo Kaldmäe,Measurement feedback disturbance decoupling in discrete-time nonlinear systems.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#KaldmaeKSZ13,https://doi.org/10.1016/j.automatica.2013.06.013 +Boris Houska,An economic objective for the optimal experiment design of nonlinear dynamic processes.,2015,51,Automatica,,db/journals/automatica/automatica51.html#HouskaTLDI15,https://doi.org/10.1016/j.automatica.2014.10.100 +Pengnian Chen,Local stabilization of a class of nonlinear systems by dynamic output feedback.,2001,37,Automatica,7,db/journals/automatica/automatica37.html#ChenQH01,https://doi.org/10.1016/S0005-1098(01)00047-4 +Ioan Doré Landau,Adaptive feedforward compensation algorithms for active vibration control with mechanical coupling.,2011,47,Automatica,10,db/journals/automatica/automatica47.html#LandauAA11,https://doi.org/10.1016/j.automatica.2011.08.015 +Pierdomenico Pepe,Lyapunov criteria for stability in Lp norm of special neutral systems.,2012,48,Automatica,1,db/journals/automatica/automatica48.html#PepeV12,https://doi.org/10.1016/j.automatica.2011.09.040 +Martin A. Sehr,Stochastic output-feedback model predictive control.,2018,94,Automatica,,db/journals/automatica/automatica94.html#SehrB18,https://doi.org/10.1016/j.automatica.2018.04.013 +Hongwei Zhang,On constructing Lyapunov functions for multi-agent systems.,2015,58,Automatica,,db/journals/automatica/automatica58.html#ZhangLQL15,https://doi.org/10.1016/j.automatica.2015.05.006 +Christian Løvaas,Robust output-feedback model predictive control for systems with unstructured uncertainty.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#LovaasSG08,https://doi.org/10.1016/j.automatica.2007.10.003 +João P. Hespanha,Switching between stabilizing controllers.,2002,38,Automatica,11,db/journals/automatica/automatica38.html#HespanhaM02,https://doi.org/10.1016/S0005-1098(02)00139-5 +Hadi Taghvafard,Local and global analysis of endocrine regulation as a non-cyclic feedback system.,2018,91,Automatica,,db/journals/automatica/automatica91.html#TaghvafardPC18,https://doi.org/10.1016/j.automatica.2018.01.035 +Shan Ma,Robust decentralized stabilization of Markovian jump large-scale systems: A neighboring mode dependent control approach.,2013,49,Automatica,10,db/journals/automatica/automatica49.html#MaXUP13,https://doi.org/10.1016/j.automatica.2013.07.019 +Gabriela W. Gabriel,Performance evaluation of sampled-data control of Markov jump linear systems.,2017,86,Automatica,,db/journals/automatica/automatica86.html#GabrielG17,https://doi.org/10.1016/j.automatica.2017.08.015 +Jochen Langer,Combined pole placement/sensitivity function shaping method using convex optimization criteria.,1999,35,Automatica,6,db/journals/automatica/automatica35.html#LangerL99,https://doi.org/10.1016/S0005-1098(99)00013-8 +Mehmet Akar,Decentralized sliding mode control design using overlapping decompositions.,2002,38,Automatica,10,db/journals/automatica/automatica38.html#AkarO02,https://doi.org/10.1016/S0005-1098(02)00077-8 +Peng Lin,Multi-agent consensus with diverse time-delays and jointly-connected topologies.,2011,47,Automatica,4,db/journals/automatica/automatica47.html#LinJ11,https://doi.org/10.1016/j.automatica.2011.01.053 +Xu Wang 0005,Consensus in the network with uniform constant communication delay.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#WangSSGY13,https://doi.org/10.1016/j.automatica.2013.04.023 +Brigitte d'Andréa-Novel,Exponential stabilization of an overhead crane with flexible cable via a back-stepping approach.,2000,36,Automatica,4,db/journals/automatica/automatica36.html#Andrea-NovelC00,https://doi.org/10.1016/S0005-1098(99)00182-X +Masaki Inoue,Dissipativity reinforcement in interconnected systems.,2018,95,Automatica,,db/journals/automatica/automatica95.html#InoueU18,https://doi.org/10.1016/j.automatica.2018.05.006 +Pasquale Lucibello,State steering by learning for a class of nonlinear control systems.,1994,30,Automatica,9,db/journals/automatica/automatica30.html#Lucibello94,https://doi.org/10.1016/0005-1098(94)90012-4 +Claudio Bonivento,Implicit fault-tolerant control: application to induction motors.,2004,40,Automatica,3,db/journals/automatica/automatica40.html#BoniventoIMP04,https://doi.org/10.1016/j.automatica.2003.10.003 +Jin Hyun Park,An Enhanced PID Control Strategy for Unstable Processes.,1998,34,Automatica,6,db/journals/automatica/automatica34.html#ParkSL98,https://doi.org/10.1016/S0005-1098(97)00235-5 +James R. Winkelman,Multi-time-scale analysis of a power system.,1980,16,Automatica,1,db/journals/automatica/automatica16.html#WinkelmanCAK80,https://doi.org/10.1016/0005-1098(80)90084-9 +Dietmar Bauer,Asymptotic properties of subspace estimators.,2005,41,Automatica,3,db/journals/automatica/automatica41.html#Bauer05,https://doi.org/10.1016/j.automatica.2004.11.012 +J. Kadlec,Parallel processing in digital control: D. Fabian Garcia Nocetti and Peter J. Fleming.,1994,30,Automatica,5,db/journals/automatica/automatica30.html#Kadlec94,https://doi.org/10.1016/0005-1098(94)90185-6 +Fabio Fagnani,The robustness of democratic consensus.,2015,52,Automatica,,db/journals/automatica/automatica52.html#FagnaniD15,https://doi.org/10.1016/j.automatica.2014.12.001 +Hüseyin Akçay,The size of the membership-set in a probabilistic framework.,2004,40,Automatica,2,db/journals/automatica/automatica40.html#Akcay04,https://doi.org/10.1016/j.automatica.2003.10.002 +Julio B. Clempner,Necessary and sufficient Karush-Kuhn-Tucker conditions for multiobjective Markov chains optimality.,2016,71,Automatica,,db/journals/automatica/automatica71.html#Clempner16,https://doi.org/10.1016/j.automatica.2016.04.044 +Guy A. Dumont,Self-tuning control of a chip refiner motor load.,1982,18,Automatica,3,db/journals/automatica/automatica18.html#Dumont82,https://doi.org/10.1016/0005-1098(82)90090-5 +Yoshifumi Sunahara,A method for parameter estimation of a class of non-linear distributed systems under noisy observations.,1986,22,Automatica,6,db/journals/automatica/automatica22.html#SunaharaAK86,https://doi.org/10.1016/0005-1098(86)90011-7 +Li Xia,Policy iteration for customer-average performance optimization of closed queueing systems.,2009,45,Automatica,7,db/journals/automatica/automatica45.html#XiaCC09,https://doi.org/10.1016/j.automatica.2009.03.007 +Maciej Niedzwiecki,Generalized adaptive comb filters/smoothers and their application to the identification of quasi-periodically varying systems and signals.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#NiedzwieckiM13,https://doi.org/10.1016/j.automatica.2013.02.037 +Cheng-Chih Chien,Traffic Density Control for Automated Highway Systems.,1997,33,Automatica,7,db/journals/automatica/automatica33.html#ChienZI97,https://doi.org/10.1016/S0005-1098(97)00050-2 +P. M. Mäkilä,Lethargy results in LTI System Modelling.,1998,34,Automatica,9,db/journals/automatica/automatica34.html#MakiLaP98,https://doi.org/10.1016/S0005-1098(98)00051-X +F. J. Evans,Multivariable control - A graph theoretic approach: K. J. Reinschke.,1989,25,Automatica,6,db/journals/automatica/automatica25.html#Evans89,https://doi.org/10.1016/0005-1098(89)90064-2 +Alessandro Costalunga,Synthesis of virtual holonomic constraints for obtaining stable constraint dynamics.,2018,93,Automatica,,db/journals/automatica/automatica93.html#CostalungaC18,https://doi.org/10.1016/j.automatica.2018.03.030 +Georg S. Seyboth,Cooperative control of linear multi-agent systems via distributed output regulation and transient synchronization.,2016,68,Automatica,,db/journals/automatica/automatica68.html#SeybothRA16,https://doi.org/10.1016/j.automatica.2016.01.068 +Willem L. De Koning,Infinite horizon optimal control of linear discrete time systems with stochastic parameters.,1982,18,Automatica,4,db/journals/automatica/automatica18.html#Koning82,https://doi.org/10.1016/0005-1098(82)90072-3 +Peter Van Overschee,A subspace algorithm for the identification of discrete time frequency domain power spectra.,1997,33,Automatica,12,db/journals/automatica/automatica33.html#OverscheeMDS97,https://doi.org/10.1016/S0005-1098(97)00126-X +Javad Lavaei,Stabilization of decentralized control systems by means of periodic feedback.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#LavaeiA08a,https://doi.org/10.1016/j.automatica.2007.09.005 +Hua Chen,On weak topology for optimal control of switched nonlinear systems.,2017,81,Automatica,,db/journals/automatica/automatica81.html#ChenZ17,https://doi.org/10.1016/j.automatica.2017.03.039 +Ying Tang,Tikhonov theorem for linear hyperbolic systems.,2015,57,Automatica,,db/journals/automatica/automatica57.html#TangPG15,https://doi.org/10.1016/j.automatica.2015.03.028 +Yu Tang,Terminal sliding mode control for rigid robots.,1998,34,Automatica,1,db/journals/automatica/automatica34.html#Tang98,https://doi.org/10.1016/S0005-1098(97)00174-X +Chaohong Cai,Notch filter feedback control in a class of chaotic systems.,2002,38,Automatica,4,db/journals/automatica/automatica38.html#CaiXXF02,https://doi.org/10.1016/S0005-1098(01)00239-4 +Bjarne A. Foss,Benchmark IFAC 93: Adaptive predictive PI-control of an unknown plant.,1994,30,Automatica,4,db/journals/automatica/automatica30.html#FossW94,https://doi.org/10.1016/0005-1098(94)90146-5 +Cloud Makasu,Risk-sensitive control for a class of homing problems.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#Makasu09,https://doi.org/10.1016/j.automatica.2009.06.015 +Jianan Wang,Robust cooperative control of multiple heterogeneous Negative-Imaginary systems.,2015,61,Automatica,,db/journals/automatica/automatica61.html#WangLP15,https://doi.org/10.1016/j.automatica.2015.07.028 +Geert Jan Olsder,Dynamical hierarchical control: M. G. Singh.,1982,18,Automatica,4,db/journals/automatica/automatica18.html#Olsder82,https://doi.org/10.1016/0005-1098(82)90083-8 +Jiuxiang Dong,Robust H2 control of continuous-time Markov jump linear systems.,2008,44,Automatica,5,db/journals/automatica/automatica44.html#DongY08a,https://doi.org/10.1016/j.automatica.2007.09.015 +Bruce A. Francis,The internal model principle of control theory.,1976,12,Automatica,5,db/journals/automatica/automatica12.html#FrancisW76,https://doi.org/10.1016/0005-1098(76)90006-6 +Nalin A. Chaturvedi,Stabilization of a 3D axially symmetric pendulum.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#ChaturvediMB08,https://doi.org/10.1016/j.automatica.2008.01.013 +Er-Wei Bai,Robust target localization in the absence of signal propagation models.,2017,76,Automatica,,db/journals/automatica/automatica76.html#BaiD17,https://doi.org/10.1016/j.automatica.2016.10.008 +Hak-Sung Lee,A note on convergence property of iterative learning controller with respect to sup norm.,1997,33,Automatica,8,db/journals/automatica/automatica33.html#LeeB97,https://doi.org/10.1016/S0005-1098(97)00068-X +Feng Tan,Finite-time stabilization of linear time-varying systems by piecewise constant feedback.,2016,68,Automatica,,db/journals/automatica/automatica68.html#TanZD16,https://doi.org/10.1016/j.automatica.2016.01.003 +Maxim V. Subbotin,Design of distributed decentralized estimators for formations with fixed and stochastic communication topologies.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#SubbotinS09,https://doi.org/10.1016/j.automatica.2009.07.005 +Johan Schoukens,Structure discrimination in block-oriented models using linear approximations: A theoretic framework.,2015,53,Automatica,,db/journals/automatica/automatica53.html#SchoukensPRSTVM15,https://doi.org/10.1016/j.automatica.2014.12.045 +Mao-Lin Ni,A riccati equation approach to the design of linear robust controllers.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#NiW93,https://doi.org/10.1016/0005-1098(93)90029-S +Christian Commault,Sensor location and classification for disturbance rejection by measurement feedback.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#CommaultDD11,https://doi.org/10.1016/j.automatica.2011.09.021 +Qiang Jiao,Distributed L2-gain output-feedback control of homogeneous and heterogeneous systems.,2016,71,Automatica,,db/journals/automatica/automatica71.html#JiaoMLXX16,https://doi.org/10.1016/j.automatica.2016.04.025 +Håvard Fjær Grip,Parameter estimation and compensation in systems with nonlinearly parameterized perturbations.,2010,46,Automatica,1,db/journals/automatica/automatica46.html#GripJIK10,https://doi.org/10.1016/j.automatica.2009.10.013 +Marc Jungers,A dynamic output feedback controller for NCS based on delay estimates.,2013,49,Automatica,3,db/journals/automatica/automatica49.html#JungersCMM13,https://doi.org/10.1016/j.automatica.2012.11.047 +C. C. H. Ma,Direct adaptive cutting force control of milling processes.,1990,26,Automatica,5,db/journals/automatica/automatica26.html#MaA90,https://doi.org/10.1016/0005-1098(90)90006-4 +Huiyang Liu,Containment control of continuous-time linear multi-agent systems with aperiodic sampling.,2015,57,Automatica,,db/journals/automatica/automatica57.html#LiuCTH15,https://doi.org/10.1016/j.automatica.2015.04.005 +A. Herrera,A semi-canonical form for a class of right-invertible linear systems.,1997,33,Automatica,2,db/journals/automatica/automatica33.html#HerreraLZ97,https://doi.org/10.1016/S0005-1098(96)00164-1 +Zhongwei Lin,A unified design for state and output feedback H INFINITY control of nonlinear stochastic Markovian jump systems with state and disturbance-dependent noise.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#LinLZ09,https://doi.org/10.1016/j.automatica.2009.09.027 +Lorenzo Fagiano,Generalized terminal state constraint for model predictive control.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#FagianoT13,https://doi.org/10.1016/j.automatica.2013.05.019 +W. E. Schmitendorf,Robust asymptotic tracking for linear systems with unknown parameters.,1986,22,Automatica,3,db/journals/automatica/automatica22.html#SchmitendorfB86,https://doi.org/10.1016/0005-1098(86)90033-6 +Nicolaos E. Manitara,Distributed stopping for average consensus in undirected graphs via event-triggered strategies.,2016,70,Automatica,,db/journals/automatica/automatica70.html#ManitaraH16,https://doi.org/10.1016/j.automatica.2016.03.030 +R. W. Jones,Application of optimal control theory in biomedicine: George W. Swan.,1987,23,Automatica,1,db/journals/automatica/automatica23.html#Jones87,https://doi.org/10.1016/0005-1098(87)90126-9 +Michael Zabarankin,Optimization of convergence rate and stability margin of information flow in cooperative systems.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#ZabarankinMM13,https://doi.org/10.1016/j.automatica.2013.03.018 +David Q. Mayne,Linear identification of ARMA processes.,1982,18,Automatica,4,db/journals/automatica/automatica18.html#MayneF82,https://doi.org/10.1016/0005-1098(82)90074-7 +Peter Young,Parameter estimation for continuous-time models - A survey.,1981,17,Automatica,1,db/journals/automatica/automatica17.html#Young81,https://doi.org/10.1016/0005-1098(81)90082-0 +Annalisa Zappavigna,Unconditional stability of the Foschini-Miljanic algorithm.,2012,48,Automatica,1,db/journals/automatica/automatica48.html#ZappavignaCK12,https://doi.org/10.1016/j.automatica.2011.09.051 +Shengtao Pan,Stabilization of discrete-time Markovian jump linear systems via time-delayed and impulsive controllers.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#PanSZ08,https://doi.org/10.1016/j.automatica.2008.04.004 +Lei Zhou,Detection and stabilization for discrete-time descriptor systems via a limited capacity communication channel.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#ZhouL09,https://doi.org/10.1016/j.automatica.2009.05.022 +Kenji Kashima,A new expression for the H2 performance limit based on state-space representation.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#Kashima09,https://doi.org/10.1016/j.automatica.2008.07.008 +Muhammad F. Emzir,On physical realizability of nonlinear quantum stochastic differential equations.,2018,95,Automatica,,db/journals/automatica/automatica95.html#EmzirWP18,https://doi.org/10.1016/j.automatica.2018.05.011 +Steffi Knorn,Passivity-based control for multi-vehicle systems subject to string constraints.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#KnornDAM14,https://doi.org/10.1016/j.automatica.2014.10.038 +Matthias Albrecht Müller,Quadratic costs do not always work in MPC.,2017,82,Automatica,,db/journals/automatica/automatica82.html#MullerW17,https://doi.org/10.1016/j.automatica.2017.04.058 +Ichiro Jikuya,On the Klimushchev-Krasovskii theorem.,2011,47,Automatica,10,db/journals/automatica/automatica47.html#JikuyaH11,https://doi.org/10.1016/j.automatica.2011.07.003 +Roger W. Ehrich,DMS - A system for defining and managing human-computer dialogues.,1983,19,Automatica,6,db/journals/automatica/automatica19.html#Ehrich83,https://doi.org/10.1016/0005-1098(83)90029-8 +Bruno Picasso,Hierarchical Model Predictive Control of independent systems with joint constraints.,2016,74,Automatica,,db/journals/automatica/automatica74.html#PicassoZS16,https://doi.org/10.1016/j.automatica.2016.07.030 +Huiping Li,Receding horizon control based consensus scheme in general linear multi-agent systems.,2015,56,Automatica,,db/journals/automatica/automatica56.html#LiY15,https://doi.org/10.1016/j.automatica.2015.03.023 +Guiomar Martín-Herrán,Competing for consumer's attention.,2008,44,Automatica,2,db/journals/automatica/automatica44.html#Martin-HerranRZ08,https://doi.org/10.1016/j.automatica.2007.06.009 +Mario El-Khoury,Influence of zero locations on the number of step-response extrema.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#El-KhouryCL93,https://doi.org/10.1016/0005-1098(93)90023-M +Heinz Unbehauen,The load dependent multivariable steam temperature control system in a boiler.,1969,5,Automatica,4,db/journals/automatica/automatica5.html#Unbehauen69,https://doi.org/10.1016/0005-1098(69)90105-8 +Rogelio Lozano,Robust prediction-based control for unstable delay systems: Application to the yaw control of a mini-helicopter.,2004,40,Automatica,4,db/journals/automatica/automatica40.html#LozanoCGD04,https://doi.org/10.1016/j.automatica.2003.10.007 +Anton A. Stoorvogel,Performance with regulation constraints.,2000,36,Automatica,10,db/journals/automatica/automatica36.html#StoorvogelSS00,https://doi.org/10.1016/S0005-1098(00)00060-1 +Eugene M. Cliff,Thrust-vectored energy turns.,1982,18,Automatica,5,db/journals/automatica/automatica18.html#CliffKL82,https://doi.org/10.1016/0005-1098(82)90005-X +Francesco Amato,Finite-time stability of linear time-varying systems with jumps.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#AmatoAAC09,https://doi.org/10.1016/j.automatica.2008.12.016 +Graham C. Goodwin,Frequency domain sensitivity functions for continuous time systems under sampled data control.,1994,30,Automatica,8,db/journals/automatica/automatica30.html#GoodwinS94,https://doi.org/10.1016/0005-1098(94)90107-4 +F. Z. Chaoui,Adaptive control of input-constrained type-1 plants stabilization and tracking.,2001,37,Automatica,2,db/journals/automatica/automatica37.html#ChaouiGM01a,https://doi.org/10.1016/S0005-1098(00)00154-0 +Adrian D. McKernan,Sampled-data gain scheduling of continuous LTV plants.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#McKernanSAI09,https://doi.org/10.1016/j.automatica.2009.06.010 +Yazeng Liu,Infinite horizon backward stochastic differential equation and exponential convergence index assignment of stochastic control systems.,2002,38,Automatica,8,db/journals/automatica/automatica38.html#LiuP02,https://doi.org/10.1016/S0005-1098(02)00041-9 +Rosario Toscano,Robust PID controller tuning based on the heuristic Kalman algorithm.,2009,45,Automatica,9,db/journals/automatica/automatica45.html#ToscanoL09,https://doi.org/10.1016/j.automatica.2009.05.007 +Suchitra Pandey,"Comments on ""New finite-sum inequalities with applications to stability of discrete time-delay systems"".",2018,91,Automatica,,db/journals/automatica/automatica91.html#PandeyDT18,https://doi.org/10.1016/j.automatica.2018.01.006 +Linh Vu,Input-to-state stability of switched systems and switching adaptive control.,2007,43,Automatica,4,db/journals/automatica/automatica43.html#VuCL07,https://doi.org/10.1016/j.automatica.2006.10.007 +Jin-Hua She,Design of a modified repetitive-control system based on a continuous-discrete 2D model.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#SheZWZH12,https://doi.org/10.1016/j.automatica.2012.02.019 +Paul J. Goulart,Input-to-state stability of robust receding horizon control with an expected value cost.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#GoulartK08,https://doi.org/10.1016/j.automatica.2007.08.009 +Wenjie Li,Peer-Assisted Individual Assessment in a multi-agent system.,2017,83,Automatica,,db/journals/automatica/automatica83.html#LiBGK17,https://doi.org/10.1016/j.automatica.2017.06.031 +Yi Liu,Coprime factorization controller reduction with bezout identity induced frequency weighting.,1990,26,Automatica,2,db/journals/automatica/automatica26.html#LiuAL90,https://doi.org/10.1016/0005-1098(90)90118-2 +Berç Rustem,The diagonalizability of quadratic functions and the arbitrariness of shadow prices.,1991,27,Automatica,3,db/journals/automatica/automatica27.html#Rustem91,https://doi.org/10.1016/0005-1098(91)90119-M +Francesca Albertini,Time optimal simultaneous control of two level quantum systems.,2016,74,Automatica,,db/journals/automatica/automatica74.html#AlbertiniD16,https://doi.org/10.1016/j.automatica.2016.07.014 +Sofiène Kamoun,Convergence characteristics of a maximum likelihood load model identification scheme.,1992,28,Automatica,5,db/journals/automatica/automatica28.html#KamounM92,https://doi.org/10.1016/0005-1098(92)90142-3 +Steven Gillijns,Unbiased minimum-variance input and state estimation for linear discrete-time systems with direct feedthrough.,2007,43,Automatica,5,db/journals/automatica/automatica43.html#GillijnsM07a,https://doi.org/10.1016/j.automatica.2006.11.016 +P. M. Mäkilä,Robust input-output stabilization on I for persistent signals.,2006,42,Automatica,9,db/journals/automatica/automatica42.html#Makila06b,https://doi.org/10.1016/j.automatica.2006.04.003 +Tie-cheng Li,Stabilization analysis of a generalized nonlinear axially moving string by boundary velocity feedback.,2008,44,Automatica,2,db/journals/automatica/automatica44.html#LiHL08,https://doi.org/10.1016/j.automatica.2007.06.004 +Ricardo J. G. B. Campello,A note on the optimal expansion of Volterra models using Laguerre functions.,2006,42,Automatica,4,db/journals/automatica/automatica42.html#CampelloAF06,https://doi.org/10.1016/j.automatica.2005.12.003 +Emmanuel Prempain,I and I performance analysis and gain-scheduling synthesis for parameter-dependent systems.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#PrempainP08,https://doi.org/10.1016/j.automatica.2007.12.008 +Jitendra K. Tugnait,Identification of non-minimum phase linear stochastic systems.,1986,22,Automatica,4,db/journals/automatica/automatica22.html#Tugnait86,https://doi.org/10.1016/0005-1098(86)90050-6 +Chee-Fai Yung,Parameterization of nonlinear H∞ state-feedback controllers.,1997,33,Automatica,8,db/journals/automatica/automatica33.html#YungWL97,https://doi.org/10.1016/S0005-1098(97)00054-X +Xiaodong Zhao,On the horizons in constrained linear quadratic regulation.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#ZhaoL08,https://doi.org/10.1016/j.automatica.2008.05.008 +Alan R. Dohner,Optimal control solution of the automotive emission-constrained minimum fuel problem.,1981,17,Automatica,3,db/journals/automatica/automatica17.html#Dohner81,https://doi.org/10.1016/0005-1098(81)90003-0 +Arunabha Bagchi,Probability theory an d mathematical statistics: V. S. Pugachev.,1985,21,Automatica,4,db/journals/automatica/automatica21.html#Bagchi85,https://doi.org/10.1016/0005-1098(85)90091-3 +Domitilla Del Vecchio,Decomposition of human motion into dynamics-based primitives with application to drawing tasks.,2003,39,Automatica,12,db/journals/automatica/automatica39.html#VecchioMP03,https://doi.org/10.1016/S0005-1098(03)00250-4 +Eduardo Montijano,Robust discrete time dynamic average consensus.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#MontijanoMSM14,https://doi.org/10.1016/j.automatica.2014.10.005 +Matthew O. T. Cole,Controller design for flexible structure vibration suppression with robustness to contacts.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#ColeWPF08,https://doi.org/10.1016/j.automatica.2008.03.022 +Weiming Xiang,On equivalence of two stability criteria for continuous-time switched systems with dwell time constraint.,2015,54,Automatica,,db/journals/automatica/automatica54.html#Xiang15,https://doi.org/10.1016/j.automatica.2015.01.033 +Libin Wang,On stability and application of extremum seeking control without steady-state oscillation.,2016,68,Automatica,,db/journals/automatica/automatica68.html#WangCM16,https://doi.org/10.1016/j.automatica.2016.01.009 +Yunmin Zhu,Optimal interval estimation fusion based on sensor interval estimates with confidence degrees.,2006,42,Automatica,1,db/journals/automatica/automatica42.html#ZhuL06,https://doi.org/10.1016/j.automatica.2005.07.008 +Ben M. Chen,Mappings of the finite and infinite zero structures and invertibility structures of general linear multivariable systems under the bilinear transformation.,1998,34,Automatica,1,db/journals/automatica/automatica34.html#ChenW98,https://doi.org/10.1016/S0005-1098(97)00187-8 +Ding Wang 0001,Optimal control of unknown nonaffine nonlinear discrete-time systems based on adaptive dynamic programming.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#WangLWZJ12,https://doi.org/10.1016/j.automatica.2012.05.049 +Qing-Chang Zhong,H INFINITY control of dead-time systems based on a transformation.,2003,39,Automatica,2,db/journals/automatica/automatica39.html#Zhong03,https://doi.org/10.1016/S0005-1098(02)00225-X +Ivan Markovsky,Structured low-rank approximation and its applications.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#Markovsky08,https://doi.org/10.1016/j.automatica.2007.09.011 +Miomir Vukobratovic,A decentralized approach to integrated flight control synthesis.,1986,22,Automatica,6,db/journals/automatica/automatica22.html#VukobratovicS86,https://doi.org/10.1016/0005-1098(86)90006-3 +Cemal Tugrul Yilmaz,Rejection of sinusoidal disturbances for known LTI systems in the presence of output delay.,2018,92,Automatica,,db/journals/automatica/automatica92.html#YilmazB18,https://doi.org/10.1016/j.automatica.2018.02.018 +C. Y. Choi,Optimal contaminant removal in fermentation and waste treatment processes.,1978,14,Automatica,4,db/journals/automatica/automatica14.html#ChoiP78,https://doi.org/10.1016/0005-1098(78)90032-8 +Emilia Fridman,Observers and initial state recovering for a class of hyperbolic systems via Lyapunov method.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#Fridman13,https://doi.org/10.1016/j.automatica.2013.04.015 +Andrew R. Liu,Stochastic observability in network state estimation and control.,2011,47,Automatica,1,db/journals/automatica/automatica47.html#LiuB11,https://doi.org/10.1016/j.automatica.2010.10.017 +Tyrone L. Vincent,Input design for structured nonlinear system identification.,2010,46,Automatica,6,db/journals/automatica/automatica46.html#VincentNHP10,https://doi.org/10.1016/j.automatica.2010.02.029 +John Darlington,An algorithm for constrained nonlinear optimization under uncertainty.,1999,35,Automatica,2,db/journals/automatica/automatica35.html#DarlingtonPRT99,https://doi.org/10.1016/S0005-1098(98)00150-2 +Alexandre S. Bazanella,Robust tuning of the speed loop in indirect field oriented control of induction motors.,2001,37,Automatica,11,db/journals/automatica/automatica37.html#BazanellaR01,https://doi.org/10.1016/S0005-1098(01)00128-5 +Qianchuan Zhao,On stabilization of min-max systems.,2003,39,Automatica,4,db/journals/automatica/automatica39.html#ZhaoZ03,https://doi.org/10.1016/S0005-1098(02)00271-6 +Saleh S. Delshad,Robust state estimation and unknown inputs reconstruction for a class of nonlinear systems: Multiobjective approach.,2016,64,Automatica,,db/journals/automatica/automatica64.html#DelshadJDG16,https://doi.org/10.1016/j.automatica.2015.10.051 +H. L. Prasad,General-sum stochastic games: Verifiability conditions for Nash equilibria.,2012,48,Automatica,11,db/journals/automatica/automatica48.html#PrasadB12,https://doi.org/10.1016/j.automatica.2012.06.088 +Pauline Bernard,Convergence of gradient observer for rotor position and magnet flux estimation of permanent magnet synchronous motors.,2018,94,Automatica,,db/journals/automatica/automatica94.html#BernardP18,https://doi.org/10.1016/j.automatica.2018.04.009 +John B. Moore,Author's reply.,1984,20,Automatica,2,db/journals/automatica/automatica20.html#Moore84,https://doi.org/10.1016/0005-1098(84)90038-4 +J. S. Luo,Minimax guaranteed cost control for linear continuous-time systems with large parameter uncertainty.,1994,30,Automatica,4,db/journals/automatica/automatica30.html#LuoJB94,https://doi.org/10.1016/0005-1098(94)90160-0 +øyvind Nistad Stamnes,Redesign of adaptive observers for improved parameter identification in nonlinear systems.,2011,47,Automatica,2,db/journals/automatica/automatica47.html#StamnesAK11,https://doi.org/10.1016/j.automatica.2010.11.005 +Takeshi Hatanaka,Computations of probabilistic output admissible set for uncertain constrained systems.,2008,44,Automatica,2,db/journals/automatica/automatica44.html#HatanakaT08,https://doi.org/10.1016/j.automatica.2007.03.031 +Petre Stoica,Optimal instrumental-variable methods for identification of multivariable linear systems.,1983,19,Automatica,4,db/journals/automatica/automatica19.html#StoicaS83,https://doi.org/10.1016/0005-1098(83)90058-4 +Runmin Zou,Almost disturbance decoupling and pole placement.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#ZouM09,https://doi.org/10.1016/j.automatica.2009.07.030 +Antonio González 0004,Robust stabilization of linear discrete-time systems with time-varying input delay.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#Gonzalez13,https://doi.org/10.1016/j.automatica.2013.05.031 +J. G. Owen,Duality theory of robust disturbance attenuation.,1993,29,Automatica,3,db/journals/automatica/automatica29.html#OwenZ93,https://doi.org/10.1016/0005-1098(93)90064-Z +Magdi S. Mahmoud,Design of observer-based controllers for a class of discrete systems.,1982,18,Automatica,3,db/journals/automatica/automatica18.html#Mahmoud82,https://doi.org/10.1016/0005-1098(82)90092-9 +Héctor Rotstein,Convergence of optimal control problems with an H∞-norm constraint.,1997,33,Automatica,3,db/journals/automatica/automatica33.html#Rotstein97,https://doi.org/10.1016/S0005-1098(96)00175-6 +I. D. Landau,Recursive identification algorithms for continuous-time nonlinear plants operating in closed loop.,2001,37,Automatica,3,db/journals/automatica/automatica37.html#LandauAB01,https://doi.org/10.1016/S0005-1098(00)00171-0 +Peddapullaiah Sannuti,Squaring down of general MIMO systems to invertible uniform rank systems via pre- and/or post-compensators.,2014,50,Automatica,8,db/journals/automatica/automatica50.html#SannutiSZ14,https://doi.org/10.1016/j.automatica.2014.05.030 +Chao Huang,Tuning function design for nonlinear adaptive control systems with multiple unknown control directions.,2018,89,Automatica,,db/journals/automatica/automatica89.html#HuangY18,https://doi.org/10.1016/j.automatica.2017.11.024 +Wenwu Yu,Distributed control gains design for consensus in multi-agent systems with second-order nonlinear dynamics.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#Yu0ZCL13,https://doi.org/10.1016/j.automatica.2013.03.005 +Peter Verboven,Multivariable frequency-response curve fitting with application to modal parameter estimation.,2005,41,Automatica,10,db/journals/automatica/automatica41.html#VerbovenGC05,https://doi.org/10.1016/j.automatica.2005.03.023 +O. Brovko,The extended Kalman filter as a pulmonary blood flow estimator.,1981,17,Automatica,1,db/journals/automatica/automatica17.html#BrovkoWAB81,https://doi.org/10.1016/0005-1098(81)90096-0 +Rick H. Middleton,Trade-offs in linear control system design.,1991,27,Automatica,2,db/journals/automatica/automatica27.html#Middleton91,https://doi.org/10.1016/0005-1098(91)90077-F +Guopei Chen,"Comments on ""Finite-time stability of a class of nonlinear time-delay systems"".",2016,66,Automatica,,db/journals/automatica/automatica66.html#ChenY16,https://doi.org/10.1016/j.automatica.2015.12.004 +Vincent Andrieu,High gain observers with updated gain and homogeneous correction terms.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#AndrieuPA09,https://doi.org/10.1016/j.automatica.2008.07.015 +Francesco Scibilia,On feasible sets for MPC and their approximations.,2011,47,Automatica,1,db/journals/automatica/automatica47.html#ScibiliaOH11,https://doi.org/10.1016/j.automatica.2010.10.022 +Richard P. Wishner,A comparison of three non-linear filters.,1969,5,Automatica,4,db/journals/automatica/automatica5.html#WishnerTA69,https://doi.org/10.1016/0005-1098(69)90110-1 +Mohsen Mojiri,Stability analysis of periodic orbit of an adaptive notch filter for frequency estimation of a periodic signal.,2007,43,Automatica,3,db/journals/automatica/automatica43.html#MojiriB07,https://doi.org/10.1016/j.automatica.2006.08.018 +Mazen Alamir,Synaptic plasticity based model for epileptic seizures.,2011,47,Automatica,6,db/journals/automatica/automatica47.html#AlamirWG11,https://doi.org/10.1016/j.automatica.2011.02.018 +Franco Blanchini,Nonquadratic Lyapunov functions for robust control.,1995,31,Automatica,3,db/journals/automatica/automatica31.html#Blanchini95,https://doi.org/10.1016/0005-1098(94)00133-4 +Zhen Kan,Containment control for a social network with state-dependent connectivity.,2015,56,Automatica,,db/journals/automatica/automatica56.html#KanKPD15,https://doi.org/10.1016/j.automatica.2015.03.026 +Baoyong Zhang,Improved stability criterion and its applications in delayed controller design for discrete-time systems.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#ZhangXZ08,https://doi.org/10.1016/j.automatica.2008.04.017 +Chun-Yi Su,Adaptive sliding mode control of robot manipulators: General sliding manifold case.,1994,30,Automatica,9,db/journals/automatica/automatica30.html#SuS94,https://doi.org/10.1016/0005-1098(94)90019-1 +Umit S. Bititci,Manufacturing intelligence : Paul Kenneth Wright and David Allan Bourne.,1990,26,Automatica,2,db/journals/automatica/automatica26.html#Bititci90,https://doi.org/10.1016/0005-1098(90)90149-C +Martín D. España,Reduced order bilinear models for distillation columns.,1978,14,Automatica,4,db/journals/automatica/automatica14.html#EspanaL78,https://doi.org/10.1016/0005-1098(78)90034-1 +Walter Murray Wonham,Optimal stochastic control.,1969,5,Automatica,1,db/journals/automatica/automatica5.html#Wonham69,https://doi.org/10.1016/0005-1098(69)90061-2 +Jan C. Willems,Algebraic theory for multivariable linear systems: H. Blomberg and R. Ylinen.,1985,21,Automatica,1,db/journals/automatica/automatica21.html#Willems85,https://doi.org/10.1016/0005-1098(85)90103-7 +Alistair G. J. MacFarlane,Future design environments for control engineering.,1989,25,Automatica,2,db/journals/automatica/automatica25.html#MacfarlaneGA89,https://doi.org/10.1016/0005-1098(89)90070-8 +Yuksel Subasi,Quantitative measure of observability for linear stochastic systems.,2014,50,Automatica,6,db/journals/automatica/automatica50.html#SubasiD14,https://doi.org/10.1016/j.automatica.2014.04.008 +Fudong Ge,On the regional gradient observability of time fractional diffusion processes.,2016,74,Automatica,,db/journals/automatica/automatica74.html#GeCK16,https://doi.org/10.1016/j.automatica.2016.07.023 +Mohammad Amin Rahimian,Structural controllability of multi-agent networks: Robustness against simultaneous failures.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#RahimianA13,https://doi.org/10.1016/j.automatica.2013.06.023 +M. G. Rodd,Real-time software for control: Program examples in C : David M. Auslander and Cheng H. Tham.,1992,28,Automatica,1,db/journals/automatica/automatica28.html#Rodd92,https://doi.org/10.1016/0005-1098(92)90027-D +Alexander G. Loukianov,Robust sliding mode regulation of nonlinear systems.,2018,89,Automatica,,db/journals/automatica/automatica89.html#LoukianovDC18,https://doi.org/10.1016/j.automatica.2017.12.003 +Huan Zhang,Max-plus fundamental solution semigroups for a class of difference Riccati equations.,2015,52,Automatica,,db/journals/automatica/automatica52.html#ZhangD15,https://doi.org/10.1016/j.automatica.2014.10.115 +Bruno Picasso,Non-minimal factorization approach to the ℓ*∞ℓ*∞-gain of discrete-time linear systems.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#PicassoC13,https://doi.org/10.1016/j.automatica.2013.06.003 +Baocang Ding,"Reply to ""Comments on 'Further studies on LMI-based relaxed stabilization conditions for nonlinear systems in Takagi-Sugeno's form' "".",2008,44,Automatica,11,db/journals/automatica/automatica44.html#Ding08a,https://doi.org/10.1016/j.automatica.2008.08.001 +Gustavo Ayres de Castro,Convex synthesis of localized controllers for spatially invariant systems.,2002,38,Automatica,3,db/journals/automatica/automatica38.html#CastroP02,https://doi.org/10.1016/S0005-1098(01)00245-X +Yuanxin Wu,Observability analysis of rotation estimation by fusing inertial and line-based visual information: A revisit.,2006,42,Automatica,10,db/journals/automatica/automatica42.html#WuHWHW06,https://doi.org/10.1016/j.automatica.2006.05.005 +Gerd S. Schmidt,Frequency synchronization and phase agreement in Kuramoto oscillator networks with delays.,2012,48,Automatica,12,db/journals/automatica/automatica48.html#SchmidtPMA12,https://doi.org/10.1016/j.automatica.2012.08.013 +Chandeok Park,Determination of optimal feedback terminal controllers for general boundary conditions using generating functions.,2006,42,Automatica,5,db/journals/automatica/automatica42.html#ParkS06,https://doi.org/10.1016/j.automatica.2006.01.015 +Chengtao Wen,"Reply to ""Comments on 'Analytical expression of explicit MPC solution via lattice piecewise-affine function' [Automatica 45 (2009) 910-917]"".",2012,48,Automatica,11,db/journals/automatica/automatica48.html#WenMY12,https://doi.org/10.1016/j.automatica.2012.08.011 +Sandeep Jain,Robust Adaptive Control of Flexible Joint Manipulators.,1998,34,Automatica,5,db/journals/automatica/automatica34.html#JainK98,https://doi.org/10.1016/S0005-1098(97)00199-4 +Torsten Söderström,Special issue on trends in system identification.,1995,31,Automatica,12,db/journals/automatica/automatica31.html#SoderstromA95,https://doi.org/10.1016/0005-1098(95)90026-8 +M. H. Hamza,A self-tuning regulator for distributed parameter systems.,1978,14,Automatica,5,db/journals/automatica/automatica14.html#HamzaS78,https://doi.org/10.1016/0005-1098(78)90004-3 +Agoes A. Moelja,H2-optimal control of systems with multiple i/o delays: Time domain approach.,2005,41,Automatica,7,db/journals/automatica/automatica41.html#MoeljaM05,https://doi.org/10.1016/j.automatica.2005.01.016 +Karine Beauchard,Stabilization of an arbitrary profile for an ensemble of half-spin systems.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#BeauchardSR13,https://doi.org/10.1016/j.automatica.2013.03.011 +Alfonso Baños,Stabilization of nonlinear systems based on a generalized Bézout identity.,1996,32,Automatica,4,db/journals/automatica/automatica32.html#Banos96,https://doi.org/10.1016/0005-1098(95)00164-6 +Jianbo Lu,Robust variance control for systems with finite-signal-to-noise uncertainty.,2000,36,Automatica,4,db/journals/automatica/automatica36.html#LuS00,https://doi.org/10.1016/S0005-1098(99)00175-2 +Norbert Hohenbichler,All stabilizing PID controllers for time delay systems.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#Hohenbichler09,https://doi.org/10.1016/j.automatica.2009.07.026 +Debarghya Ghosh,Optimal identification experiment design for LPV systems using the local approach.,2018,87,Automatica,,db/journals/automatica/automatica87.html#GhoshBHSM18,https://doi.org/10.1016/j.automatica.2017.10.013 +N. Sivashankar,Optimal controller synthesis with D stability.,1994,30,Automatica,6,db/journals/automatica/automatica30.html#SivashankarKK94,https://doi.org/10.1016/0005-1098(94)90193-7 +Alexander N. Churilov,An impulse-to-impulse discrete-time mapping for a time-delay impulsive system.,2014,50,Automatica,8,db/journals/automatica/automatica50.html#ChurilovM14,https://doi.org/10.1016/j.automatica.2014.05.021 +Sergio Bittanti,Local identifiability of time-invariant linear systems by periodic test signals.,1982,18,Automatica,2,db/journals/automatica/automatica18.html#Bittanti82,https://doi.org/10.1016/0005-1098(82)90109-1 +Zalman J. Palmor,On the practical stability of optimal stochastic control systems with dead-time.,1982,18,Automatica,4,db/journals/automatica/automatica18.html#Palmor82a,https://doi.org/10.1016/0005-1098(82)90080-2 +Ming Ge,Noise covariance identification for nonlinear systems using expectation maximization and moving horizon estimation.,2017,77,Automatica,,db/journals/automatica/automatica77.html#GeK17,https://doi.org/10.1016/j.automatica.2016.11.011 +Weihai Zhang,Some remarks on stability of stochastic singular systems with state-dependent noise.,2015,51,Automatica,,db/journals/automatica/automatica51.html#ZhangZS15,https://doi.org/10.1016/j.automatica.2014.10.044 +Kliti Kodra,Optimal control for a new class of singularly perturbed linear systems.,2017,81,Automatica,,db/journals/automatica/automatica81.html#KodraG17,https://doi.org/10.1016/j.automatica.2017.03.017 +Toivo Henningsson,Sporadic event-based control of first-order linear stochastic systems.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#HenningssonJC08,https://doi.org/10.1016/j.automatica.2008.03.026 +Mohamed Amin Ben Sassi,Computation of polytopic invariants for polynomial dynamical systems using linear programming.,2012,48,Automatica,12,db/journals/automatica/automatica48.html#SassiG12,https://doi.org/10.1016/j.automatica.2012.08.014 +Ramdane Tami,Partial observer normal form for nonlinear system.,2016,64,Automatica,,db/journals/automatica/automatica64.html#TamiZBAW16,https://doi.org/10.1016/j.automatica.2015.10.041 +Jian-Xin Xu 0001,Iterative learning control design based on composite energy function with input saturation.,2004,40,Automatica,8,db/journals/automatica/automatica40.html#XuTL04,https://doi.org/10.1016/j.automatica.2004.01.029 +Fredrik Gustafsson,Statistical results for system identification based on quantized observations.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#GustafssonK09,https://doi.org/10.1016/j.automatica.2009.09.014 +Georges Zaccour,On the coordination of dynamic marketing channels and two-part tariffs.,2008,44,Automatica,5,db/journals/automatica/automatica44.html#Zaccour08,https://doi.org/10.1016/j.automatica.2007.10.009 +R. A. Hilhorst,A supervisor for control of mode-switch processes.,1994,30,Automatica,8,db/journals/automatica/automatica30.html#HilhorstALT94,https://doi.org/10.1016/0005-1098(94)90111-2 +Aleksandar I. Zecevic,Estimating the region of attraction for large-scale systems with uncertainties.,2010,46,Automatica,2,db/journals/automatica/automatica46.html#ZecevicS10,https://doi.org/10.1016/j.automatica.2009.11.021 +Pascal Grieder,Stabilizing low complexity feedback control of constrained piecewise affine systems.,2005,41,Automatica,10,db/journals/automatica/automatica41.html#GriederKBM05,https://doi.org/10.1016/j.automatica.2005.04.016 +Hong Wang,On the use of adaptive updating rules for actuator and sensor fault diagnosis.,1997,33,Automatica,2,db/journals/automatica/automatica33.html#WangHD97,https://doi.org/10.1016/S0005-1098(96)00155-0 +Hyun-Sik Ahn,Iterative learning control for a class of nonlinear systems.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#AhnCK93,https://doi.org/10.1016/0005-1098(93)90024-N +Madan G. Singh,Hierarchical optimisation for non-linear dynamical systems with non-separable cost functions.,1978,14,Automatica,1,db/journals/automatica/automatica14.html#SinghH78,https://doi.org/10.1016/0005-1098(78)90082-1 +Symeon Grivopoulos,Bilinear Hamiltonian interactions between linear quantum systems via feedback.,2018,89,Automatica,,db/journals/automatica/automatica89.html#GrivopoulosP18,https://doi.org/10.1016/j.automatica.2017.11.002 +Seong-Jin Park,Decentralized supervisory control of nondeterministic discrete event systems: The existence condition of a robust and nonblocking supervisor.,2007,43,Automatica,2,db/journals/automatica/automatica43.html#ParkC07,https://doi.org/10.1016/j.automatica.2006.08.017 +Chen Peng,Event-triggered communication and H∞H∞ control co-design for networked control systems.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#PengY13,https://doi.org/10.1016/j.automatica.2013.01.038 +Eduardo D. Sontag,Exact computation of amplification for a class of nonlinear systems arising from cellular signaling pathways.,2006,42,Automatica,11,db/journals/automatica/automatica42.html#SontagC06,https://doi.org/10.1016/j.automatica.2006.06.011 +I. Emre Köse,Rbust control of linear systems with real parametric uncertainty.,1999,35,Automatica,4,db/journals/automatica/automatica35.html#KoseJ99,https://doi.org/10.1016/S0005-1098(98)00184-8 +Alireza Khosravian,State estimation for invariant systems on Lie groups with delayed output measurements.,2016,68,Automatica,,db/journals/automatica/automatica68.html#KhosravianTMH16,https://doi.org/10.1016/j.automatica.2016.01.024 +Eugênio B. Castelan,Eigenstructure assignment for state constrained linear continuous time systems.,1992,28,Automatica,3,db/journals/automatica/automatica28.html#CastelanH92,https://doi.org/10.1016/0005-1098(92)90185-I +Dawei Shi,Event-triggered maximum likelihood state estimation.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#ShiCS14,https://doi.org/10.1016/j.automatica.2013.10.005 +Huai-Ning Wu,H2 guaranteed cost fuzzy control design for discrete-time nonlinear systems with parameter uncertainty.,2006,42,Automatica,7,db/journals/automatica/automatica42.html#WuC06,https://doi.org/10.1016/j.automatica.2006.02.025 +Martha Galaz,An energy-shaping approach to the design of excitation control of synchronous generators.,2003,39,Automatica,1,db/journals/automatica/automatica39.html#GalazOBS03,https://doi.org/10.1016/S0005-1098(02)00177-2 +H. J. C. Huijberts,Local nonlinear model matching: From linearity to nonlinearity.,1990,26,Automatica,6,db/journals/automatica/automatica26.html#HuijbertsN90,https://doi.org/10.1016/0005-1098(90)90082-S +Wei Wang 0071,Emulation-based stabilization of networked control systems implemented on FlexRay.,2015,59,Automatica,,db/journals/automatica/automatica59.html#WangNP15,https://doi.org/10.1016/j.automatica.2015.06.010 +Lennart Ljung,Analysis of a general recursive prediction error identification algorithm.,1981,17,Automatica,1,db/journals/automatica/automatica17.html#Ljung81,https://doi.org/10.1016/0005-1098(81)90086-8 +Emmanuel Prempain,A Multivariable Two-Degree-Of-Freedom Control Methodology.,1998,34,Automatica,12,db/journals/automatica/automatica34.html#PrempainB98,https://doi.org/10.1016/S0005-1098(98)80014-9 +Jun Zhang,Optimal compression of generalized Prandtl-Ishlinskii hysteresis models.,2015,57,Automatica,,db/journals/automatica/automatica57.html#ZhangMST15,https://doi.org/10.1016/j.automatica.2015.04.012 +Stefano Carabelli,Designing linear control systems with Matlab : Katsuhiko Ogata.,1995,31,Automatica,10,db/journals/automatica/automatica31.html#Carabelli95,https://doi.org/10.1016/0005-1098(95)90001-2 +Jan Lunze,A state-feedback approach to event-based control.,2010,46,Automatica,1,db/journals/automatica/automatica46.html#LunzeL10,https://doi.org/10.1016/j.automatica.2009.10.035 +Roberto Guidorzi,Minimal representations of MIMO time-varying systems and realization of cyclostationary models.,2003,39,Automatica,11,db/journals/automatica/automatica39.html#GuidorziD03,https://doi.org/10.1016/S0005-1098(03)00195-X +Xianwei Li,Delay-independent stability analysis of linear time-delay systems based on frequency discretization.,2016,70,Automatica,,db/journals/automatica/automatica70.html#LiGG16,https://doi.org/10.1016/j.automatica.2015.12.031 +John E. Rijnsdorp,Advanced process control: W. Harmon Ray.,1982,18,Automatica,4,db/journals/automatica/automatica18.html#Rijnsdorp82,https://doi.org/10.1016/0005-1098(82)90084-X +Richard Rebarber,Internal model based tracking and disturbance rejection for stable well-posed systems.,2003,39,Automatica,9,db/journals/automatica/automatica39.html#RebarberW03,https://doi.org/10.1016/S0005-1098(03)00192-4 +Francesco Basile,On K-diagnosability of Petri nets via integer linear programming.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#BasileCT12,https://doi.org/10.1016/j.automatica.2012.06.039 +Prashant Mhaskar,Isolation and handling of actuator faults in nonlinear systems.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#MhaskarMGCD08,https://doi.org/10.1016/j.automatica.2007.05.006 +Draguna Vrabie,Adaptive optimal control for continuous-time linear systems based on policy iteration.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#VrabiePAL09,https://doi.org/10.1016/j.automatica.2008.08.017 +John Lygeros,Controllers for reachability specifications for hybrid systems.,1999,35,Automatica,3,db/journals/automatica/automatica35.html#LygerosTS99,https://doi.org/10.1016/S0005-1098(98)00193-9 +Giorgio Bartolini,Adaptive sliding mode control in discrete-time systems.,1995,31,Automatica,5,db/journals/automatica/automatica31.html#BartoliniFU95,https://doi.org/10.1016/0005-1098(94)00154-B +Chenxi Lin,Efficient optimal design of uncertain discrete time dynamical systems.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#LinR12,https://doi.org/10.1016/j.automatica.2012.06.049 +Mohamed Darouach,H∞ observers design for a class of nonlinear singular systems.,2011,47,Automatica,11,db/journals/automatica/automatica47.html#DarouachBZ11,https://doi.org/10.1016/j.automatica.2011.08.037 +Minh Hoang Trinh,Matrix-weighted consensus and its applications.,2018,89,Automatica,,db/journals/automatica/automatica89.html#TrinhNLA18,https://doi.org/10.1016/j.automatica.2017.12.024 +Ido Avraham,Real-time power sharing: Dynamic control allocation and VPP aggregation.,2018,94,Automatica,,db/journals/automatica/automatica94.html#AvrahamKLM18,https://doi.org/10.1016/j.automatica.2018.04.020 +Francesca Albertini,Discrete-time controllability for feedback quantum dynamics.,2011,47,Automatica,11,db/journals/automatica/automatica47.html#AlbertiniT11,https://doi.org/10.1016/j.automatica.2011.08.018 +Mustapha Ait Rami,A hierarchy of LMI inner approximations of the set of stable polynomials.,2011,47,Automatica,7,db/journals/automatica/automatica47.html#RamiH11,https://doi.org/10.1016/j.automatica.2011.02.026 +Shihong Ding,Nonsmooth stabilization of a class of nonlinear cascaded systems.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#DingLZ12,https://doi.org/10.1016/j.automatica.2012.06.060 +Mo Jamshidi,Application of dynamic programming to control khuzestan water resources system.,1977,13,Automatica,3,db/journals/automatica/automatica13.html#JamshidiH77,https://doi.org/10.1016/0005-1098(77)90055-3 +Emmanuel Cruz-Zavala,Homogeneous High Order Sliding Mode design: A Lyapunov approach.,2017,80,Automatica,,db/journals/automatica/automatica80.html#Cruz-ZavalaM17,https://doi.org/10.1016/j.automatica.2017.02.039 +Fredrik Lindsten,Bayesian semiparametric Wiener system identification.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#LindstenSJ13,https://doi.org/10.1016/j.automatica.2013.03.021 +R. A. Vingerhoeds,Applied optimal control and estimation: Digital design and implementation : Frank R. Lewis.,1994,30,Automatica,9,db/journals/automatica/automatica30.html#Vingerhoeds94,https://doi.org/10.1016/0005-1098(94)90021-3 +Ying Luo,Fractional order [proportional derivative] controller for a class of fractional order systems.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#LuoC09,https://doi.org/10.1016/j.automatica.2009.06.022 +Kiyotaka Shimizu,A new solution to optimization-satisfaction problems by a penalty method.,1982,18,Automatica,1,db/journals/automatica/automatica18.html#ShimizuA82,https://doi.org/10.1016/0005-1098(82)90024-3 +A. A. Voronov,State-of-the-art and prospects of adaptive systems.,1984,20,Automatica,5,db/journals/automatica/automatica20.html#VoronovR84,https://doi.org/10.1016/0005-1098(84)90006-2 +Jean-Pierre Le Cadre,Optimizing the receiver maneuvers for bearings-only tracking.,1999,35,Automatica,4,db/journals/automatica/automatica35.html#CadreL99,https://doi.org/10.1016/S0005-1098(98)00183-6 +Valery A. Ugrinovskii,Robust controllability of linear stochastic uncertain systems.,2005,41,Automatica,5,db/journals/automatica/automatica41.html#Ugrinovskii05,https://doi.org/10.1016/j.automatica.2004.10.016 +Claus Müller,Duality and symmetry in constrained estimation and control problems.,2006,42,Automatica,12,db/journals/automatica/automatica42.html#MullerZD06,https://doi.org/10.1016/j.automatica.2006.07.005 +Lj. B. Jocic,On the attractivity of imbedded systems.,1981,17,Automatica,6,db/journals/automatica/automatica17.html#Jocic81,https://doi.org/10.1016/0005-1098(81)90073-X +Haitao Li 0001,Boolean derivative calculation with application to fault detection of combinational circuits via the semi-tensor product method.,2012,48,Automatica,4,db/journals/automatica/automatica48.html#LiW12,https://doi.org/10.1016/j.automatica.2012.01.021 +Keyou You,Mean square stability for Kalman filtering with Markovian packet losses.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#YouFX11,https://doi.org/10.1016/j.automatica.2011.09.015 +Ross P. Anderson,Self-triggered sampling for second-moment stability of state-feedback controlled SDE systems.,2015,54,Automatica,,db/journals/automatica/automatica54.html#AndersonMD15,https://doi.org/10.1016/j.automatica.2015.01.020 +Hao Xia,Improved efficiency of adaptive robust control by model unfalsification.,1999,35,Automatica,5,db/journals/automatica/automatica35.html#XiaV99,https://doi.org/10.1016/S0005-1098(98)00234-9 +Andrea Balluchi,Hybrid control in automotive applications: the cut-off control.,1999,35,Automatica,3,db/journals/automatica/automatica35.html#BalluchiBPRS99,https://doi.org/10.1016/S0005-1098(98)00181-2 +Andre Costa,Adaptive stepsize selection for tracking in a regime-switching environment.,2007,43,Automatica,11,db/journals/automatica/automatica43.html#CostaV07,https://doi.org/10.1016/j.automatica.2007.03.025 +Shubhendu Bhasin,A novel actor-critic-identifier architecture for approximate optimal control of uncertain nonlinear systems.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#BhasinKJVLD13,https://doi.org/10.1016/j.automatica.2012.09.019 +Li Dai,Stochastic self-triggered model predictive control for linear systems with probabilistic constraints.,2018,92,Automatica,,db/journals/automatica/automatica92.html#DaiGXJX18,https://doi.org/10.1016/j.automatica.2018.02.017 +Arnab Dey,Absolute stability analysis for negative-imaginary systems.,2016,67,Automatica,,db/journals/automatica/automatica67.html#DeyP016,https://doi.org/10.1016/j.automatica.2016.01.029 +Alessandro Casavola,Continuous-time LQ regulator design by polynomial equations.,1991,27,Automatica,3,db/journals/automatica/automatica27.html#CasavolaGMN91,https://doi.org/10.1016/0005-1098(91)90115-I +Yu Feng,Hinfinity control with unstable and nonproper weights for descriptor systems.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#FengYC12,https://doi.org/10.1016/j.automatica.2012.02.036 +Jun Shen,Stability analysis of linear delay systems with cone invariance.,2015,53,Automatica,,db/journals/automatica/automatica53.html#ShenZ15,https://doi.org/10.1016/j.automatica.2014.12.014 +Paul M. J. Van den Hof,System identification with generalized orthonormal basis functions.,1995,31,Automatica,12,db/journals/automatica/automatica31.html#HofHB95,https://doi.org/10.1016/0005-1098(95)00074-4 +Alberto Bemporad,A Predictive Controller with Artificial Lyapunov Function for Linear Systems with Input/State Constraints.,1998,34,Automatica,10,db/journals/automatica/automatica34.html#Bemporad98,https://doi.org/10.1016/S0005-1098(98)00066-1 +Rafal Goebel,Solutions to hybrid inclusions via set and graphical convergence with stability theory applications.,2006,42,Automatica,4,db/journals/automatica/automatica42.html#GoebelT06,https://doi.org/10.1016/j.automatica.2005.12.019 +Francesco Dinuzzo,Finite-time output stabilization with second order sliding modes.,2009,45,Automatica,9,db/journals/automatica/automatica45.html#DinuzzoF09,https://doi.org/10.1016/j.automatica.2009.05.015 +Deming Yuan,Optimal distributed stochastic mirror descent for strongly convex optimization.,2018,90,Automatica,,db/journals/automatica/automatica90.html#YuanHHJ18,https://doi.org/10.1016/j.automatica.2017.12.053 +Huibert Kwakernaak,Reviewers' commendations.,2001,37,Automatica,2,db/journals/automatica/automatica37.html#Kwakernaak01,https://doi.org/10.1016/S0005-1098(00)00179-5 +Anthony Tzes,Weighted minimum uncertainty prediction control.,1996,32,Automatica,5,db/journals/automatica/automatica32.html#TzesL96,https://doi.org/10.1016/0005-1098(95)00201-4 +R. Katoh,Control method of biped locomotion giving asymptotic stability of trajectory.,1984,20,Automatica,4,db/journals/automatica/automatica20.html#KatohM84,https://doi.org/10.1016/0005-1098(84)90099-2 +Matthew O. T. Cole,A class of low-pass FIR input shaping filters achieving exact residual vibration cancelation.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#Cole12,https://doi.org/10.1016/j.automatica.2012.06.005 +Kenneth I. Mummé,Cyclic control of water quality in a tidal river segment.,1979,15,Automatica,1,db/journals/automatica/automatica15.html#Mumme79,https://doi.org/10.1016/0005-1098(79)90086-4 +Minh-Duc Hua,Control of VTOL vehicles with thrust-tilting augmentation.,2015,52,Automatica,,db/journals/automatica/automatica52.html#HuaHMS15,https://doi.org/10.1016/j.automatica.2014.10.129 +Tingshu Hu,Nonlinear control design for linear differential inclusions via convex hull of quadratics.,2007,43,Automatica,4,db/journals/automatica/automatica43.html#Hu07,https://doi.org/10.1016/j.automatica.2006.10.015 +Sergio Bittanti,Convergence and exponential convergence of identification algorithms with directional forgetting factor.,1990,26,Automatica,5,db/journals/automatica/automatica26.html#BittantiBC90,https://doi.org/10.1016/0005-1098(90)90012-7 +Bor-Sen Chen,Robust stabilization of nonlinearly perturbed large-scale systems by decentralized observer-controller compensators.,1990,26,Automatica,6,db/journals/automatica/automatica26.html#ChenW90,https://doi.org/10.1016/0005-1098(90)90087-X +Er-Wei Bai,Kernel based approaches to local nonlinear non-parametric variable selection.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#BaiLZX14,https://doi.org/10.1016/j.automatica.2013.10.010 +Kwang-Hyun Cho,On-line tracing supervisory control of discrete-event dynamic systems based on outlooking.,1999,35,Automatica,10,db/journals/automatica/automatica35.html#ChoL99a,https://doi.org/10.1016/S0005-1098(99)00084-9 +Munther A. Dahleh,Worst-case identification of nonlinear fading memory systems.,1995,31,Automatica,3,db/journals/automatica/automatica31.html#DahlehSTT95,https://doi.org/10.1016/0005-1098(94)00131-2 +Xing-Song Wang,Robust adaptive control of a class of nonlinear systems with unknown dead-zone.,2004,40,Automatica,3,db/journals/automatica/automatica40.html#WangSH04,https://doi.org/10.1016/j.automatica.2003.10.021 +Nan Gao,New unified H∞ dynamic observer design for linear systems with unknown inputs.,2016,65,Automatica,,db/journals/automatica/automatica65.html#GaoDVA16,https://doi.org/10.1016/j.automatica.2015.10.052 +Fanbiao Li,State estimation and sliding mode control for semi-Markovian jump systems with mismatched uncertainties.,2015,51,Automatica,,db/journals/automatica/automatica51.html#LiWSL15,https://doi.org/10.1016/j.automatica.2014.10.065 +Floriane Anstett,Identifiability of discrete-time nonlinear systems: The local state isomorphism approach.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#AnstettBMD08,https://doi.org/10.1016/j.automatica.2008.03.019 +Xuemei Ren,Neural network compensation control for mechanical systems with disturbances.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#RenLZ09,https://doi.org/10.1016/j.automatica.2008.12.009 +Ibtissem Bouraoui,Observer design for a class of uncertain nonlinear systems with sampled outputs - Application to the estimation of kinetic rates in bioreactors.,2015,55,Automatica,,db/journals/automatica/automatica55.html#BouraouiFMAMM15,https://doi.org/10.1016/j.automatica.2015.02.036 +Yutaka Yamamoto,Internal and external stability and robust stability condition for a class of infinite-dimensional systems.,1992,28,Automatica,1,db/journals/automatica/automatica28.html#YamamotoH92,https://doi.org/10.1016/0005-1098(92)90009-5 +Dan Yu,A stochastic unknown input realization and filtering technique.,2016,63,Automatica,,db/journals/automatica/automatica63.html#YuC16,https://doi.org/10.1016/j.automatica.2015.10.013 +Robert J. Veillette,Reliable linear-quadratic state-feedback control.,1995,31,Automatica,1,db/journals/automatica/automatica31.html#Veillette95,https://doi.org/10.1016/0005-1098(94)E0045-J +Trifon G. Koussiouris,Frequency-domain conditions for disturbance rejection and decoupling with stability or pole placement.,1996,32,Automatica,2,db/journals/automatica/automatica32.html#KoussiourisT96,https://doi.org/10.1016/0005-1098(96)85552-X +Jun Shen 0002,L∞-gain analysis for positive systems with distributed delays.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#ShenL14,https://doi.org/10.1016/j.automatica.2013.09.037 +W. Oppelt,Committee on education.,1969,5,Automatica,5,db/journals/automatica/automatica5.html#Oppelt69,https://doi.org/10.1016/0005-1098(69)90036-3 +Tomomichi Hagiwara,Separator-type robust stability theorem of sampled-data systems allowing noncausal LPTV scaling.,2009,45,Automatica,8,db/journals/automatica/automatica45.html#Hagiwara09,https://doi.org/10.1016/j.automatica.2009.03.023 +Robert J. Elliott,A Zakai equation derivation of the extended Kalman filter.,2010,46,Automatica,3,db/journals/automatica/automatica46.html#ElliottH10,https://doi.org/10.1016/j.automatica.2010.01.006 +Johannes D. Stigter,Optimal parametric sensitivity control of a fed-batch reactor.,2004,40,Automatica,8,db/journals/automatica/automatica40.html#StigterK04,https://doi.org/10.1016/j.automatica.2004.03.007 +H. Demircioglu,Continuous-time generalized predictive control (CGPC).,1991,27,Automatica,1,db/journals/automatica/automatica27.html#DemirciogluG91,https://doi.org/10.1016/0005-1098(91)90006-N +Wen-Xiao Zhao,Weighted least squares based recursive parametric identification for the submodels of a PWARX system.,2012,48,Automatica,6,db/journals/automatica/automatica48.html#ZhaoZ12,https://doi.org/10.1016/j.automatica.2012.03.015 +S. J. Xu,On the robustness of linear systems with nonlinear uncertain parameters.,1998,34,Automatica,8,db/journals/automatica/automatica34.html#XuD98,https://doi.org/10.1016/S0005-1098(98)00040-5 +Qingshuo Song,On singular control problems with state constraints and regime-switching: A viscosity solution approach.,2016,70,Automatica,,db/journals/automatica/automatica70.html#SongZ16,https://doi.org/10.1016/j.automatica.2016.03.017 +Young Ho Kim,A dynamic recurrent neural-network-based adaptive observer for a class of nonlinear systems.,1997,33,Automatica,8,db/journals/automatica/automatica33.html#KimLA97,https://doi.org/10.1016/S0005-1098(97)00065-4 +F. M. D'Hulster,Simulations of adaptive controllers for a paper machine headbox.,1983,19,Automatica,4,db/journals/automatica/automatica19.html#DHulsterKC83,https://doi.org/10.1016/0005-1098(83)90055-9 +Leonid Berezansky,On nonoscillation and stability for systems of differential equations with a distributed delay.,2012,48,Automatica,4,db/journals/automatica/automatica48.html#BerezanskyB12,https://doi.org/10.1016/j.automatica.2011.08.062 +M. J. Shah,Control and optimization of a large ammonia plant with a digital computer.,1969,5,Automatica,3,db/journals/automatica/automatica5.html#ShahW69,https://doi.org/10.1016/0005-1098(69)90074-0 +Yuqian Guo,Redefined observability matrix for Boolean networks and distinguishable partitions of state space.,2018,91,Automatica,,db/journals/automatica/automatica91.html#GuoGY18,https://doi.org/10.1016/j.automatica.2018.01.013 +Feng Ding 0001,Parameter estimation with scarce measurements.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#DingLL11,https://doi.org/10.1016/j.automatica.2011.05.007 +Hao Ying,A nonlinear fuzzy controller with linear control rules is the sum of a global two-dimensional multilevel relay and a local nonlinear proportional-integral controller.,1993,29,Automatica,2,db/journals/automatica/automatica29.html#Ying93,https://doi.org/10.1016/0005-1098(93)90146-K +Emmanuel Nuño,"Erratum to ""An adaptive controller for nonlinear teleoperators"" [Automatica 46 (2010) 155-159].",2011,47,Automatica,5,db/journals/automatica/automatica47.html#NunoOB11,https://doi.org/10.1016/j.automatica.2011.01.044 +Liya Dou,Nonuniform coverage control for heterogeneous mobile sensor networks on the line.,2017,81,Automatica,,db/journals/automatica/automatica81.html#DouSWLF17,https://doi.org/10.1016/j.automatica.2017.04.029 +Yuanlong Li,Saturation-based switching anti-windup design for linear systems with nested input saturation.,2014,50,Automatica,11,db/journals/automatica/automatica50.html#LiL14,https://doi.org/10.1016/j.automatica.2014.10.006 +Mohsen Zamani,Zeros of networked systems with time-invariant interconnections.,2015,61,Automatica,,db/journals/automatica/automatica61.html#ZamaniHA15,https://doi.org/10.1016/j.automatica.2015.08.005 +Anthony M. Bloch,Stabilizability of nonholonomic control systems.,1992,28,Automatica,2,db/journals/automatica/automatica28.html#Bloch92,https://doi.org/10.1016/0005-1098(92)90132-Y +William B. Rouse,Conceptual design of a human error tolerant interface for complex engineering systems.,1987,23,Automatica,2,db/journals/automatica/automatica23.html#RouseM87,https://doi.org/10.1016/0005-1098(87)90097-5 +Wuquan Li,Output-feedback stabilization for stochastic nonlinear systems whose linearizations are not stabilizable.,2010,46,Automatica,4,db/journals/automatica/automatica46.html#LiJZ10,https://doi.org/10.1016/j.automatica.2010.01.033 +Zidong Wang,Robust H INFINITY control for a class of nonlinear discrete time-delay stochastic systems with missing measurements.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#WangHLL09,https://doi.org/10.1016/j.automatica.2008.10.025 +Swann Marx,Semi-global stabilization by an output feedback law from a hybrid state controller.,2016,74,Automatica,,db/journals/automatica/automatica74.html#MarxAP16,https://doi.org/10.1016/j.automatica.2016.07.011 +S. R. Duncan,The spatial bandwidth of cross-directional control systems for web processes.,1997,33,Automatica,2,db/journals/automatica/automatica33.html#DuncanB97,https://doi.org/10.1016/S0005-1098(96)00143-4 +Leo Motus,Temporal logic for real-time systems : Jonathan S. Ostroff.,1992,28,Automatica,6,db/journals/automatica/automatica28.html#Motus92,https://doi.org/10.1016/0005-1098(92)90078-T +Paolo Caravani,A polytopic game.,2000,36,Automatica,7,db/journals/automatica/automatica36.html#CaravaniS00,https://doi.org/10.1016/S0005-1098(00)00003-0 +Hui Wang,Finite-time stabilization of high-order stochastic nonlinear systems in strict-feedback form.,2015,54,Automatica,,db/journals/automatica/automatica54.html#WangZ15,https://doi.org/10.1016/j.automatica.2015.02.016 +M. Pachter,Guidelines for automatic gearbox design for an electrically propelled vehicle.,1983,19,Automatica,5,db/journals/automatica/automatica19.html#Pachter83,https://doi.org/10.1016/0005-1098(83)90009-2 +Michal Kvasnica,Complexity reduction of explicit model predictive control via separation.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#KvasnicaHRF13,https://doi.org/10.1016/j.automatica.2013.02.018 +Frank L. Lewis,Geometric design techniques for observers in singular systems.,1990,26,Automatica,2,db/journals/automatica/automatica26.html#Lewis90,https://doi.org/10.1016/0005-1098(90)90138-8 +Lina Fu,Extremum seeking with sliding mode gradient estimation and asymptotic regulation for a class of nonlinear systems.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#FuO11,https://doi.org/10.1016/j.automatica.2011.09.031 +Keng Peng Tee,Control of nonlinear systems with time-varying output constraints.,2011,47,Automatica,11,db/journals/automatica/automatica47.html#TeeRG11,https://doi.org/10.1016/j.automatica.2011.08.044 +Bahman Gharesifard,Stabilization of bilinear sparse matrix control systems using periodic inputs.,2017,77,Automatica,,db/journals/automatica/automatica77.html#Gharesifard17,https://doi.org/10.1016/j.automatica.2016.11.028 +P. Caravani,Robust Control of Synchronous Motors with Non-linearities and Parameter Uncertainties.,1998,34,Automatica,4,db/journals/automatica/automatica34.html#CaravaniG98,https://doi.org/10.1016/S0005-1098(97)00211-2 +Li Yu,An LMI approach to guaranteed cost control of linear uncertain time-delay systems.,1999,35,Automatica,6,db/journals/automatica/automatica35.html#YuC99,https://doi.org/10.1016/S0005-1098(99)00007-2 +Avraham Feintuch,Uniformly optimal control of linear feedback systems.,1985,21,Automatica,5,db/journals/automatica/automatica21.html#FeintuchF85,https://doi.org/10.1016/0005-1098(85)90005-6 +Kim Batselier,A Tensor Network Kalman filter with an application in recursive MIMO Volterra system identification.,2017,84,Automatica,,db/journals/automatica/automatica84.html#BatselierCW17,https://doi.org/10.1016/j.automatica.2017.06.019 +H. Kurz,Digital parameter-adaptive control of processes with unknown dead time.,1981,17,Automatica,1,db/journals/automatica/automatica17.html#KurzG81,https://doi.org/10.1016/0005-1098(81)90099-6 +Zidong Wang,A note on control of a class of discrete-time stochastic systems with distributed delays and nonlinear disturbances.,2010,46,Automatica,3,db/journals/automatica/automatica46.html#WangLWL10,https://doi.org/10.1016/j.automatica.2009.11.020 +Heinz Unbehauen,Engineering applications of microcomputers: Instrumentation and control : Roy Ball and Roger Pratt.,1988,24,Automatica,1,db/journals/automatica/automatica24.html#Unbehauen88,https://doi.org/10.1016/0005-1098(88)90020-9 +Hansheng Wu,Adaptive robust control of uncertain nonlinear systems with nonlinear delayed state perturbations.,2009,45,Automatica,8,db/journals/automatica/automatica45.html#Wu09a,https://doi.org/10.1016/j.automatica.2009.04.008 +P. M. Mäkilä,Laguerre series approximation of infinite dimensional systems.,1990,26,Automatica,6,db/journals/automatica/automatica26.html#Makila90b,https://doi.org/10.1016/0005-1098(90)90083-T +Dietmar Bauer,Order estimation for subspace methods.,2001,37,Automatica,10,db/journals/automatica/automatica37.html#Bauer01,https://doi.org/10.1016/S0005-1098(01)00118-2 +Brandon J. Moore,Optimal allocation of heterogeneous resources in cooperative control scenarios.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#MooreFP09,https://doi.org/10.1016/j.automatica.2008.09.007 +Arie Leizarowitz,Turnpike properties of a class of aquifer control problems.,2008,44,Automatica,6,db/journals/automatica/automatica44.html#Leizarowitz08,https://doi.org/10.1016/j.automatica.2007.08.024 +Fabien Lauer,On the complexity of piecewise affine system identification.,2015,62,Automatica,,db/journals/automatica/automatica62.html#Lauer15,https://doi.org/10.1016/j.automatica.2015.09.031 +Johan Schoukens,Box-Jenkins alike identification using nonparametric noise models.,2004,40,Automatica,12,db/journals/automatica/automatica40.html#SchoukensPR04,https://doi.org/10.1016/j.automatica.2004.06.016 +Johannes D. Stigter,A fast algorithm to assess local structural identifiability.,2015,58,Automatica,,db/journals/automatica/automatica58.html#StigterM15,https://doi.org/10.1016/j.automatica.2015.05.004 +Duan Li 0002,Optimal nominal dual control for discrete-time linear-quadratic Gaussian problems with unknown parameters.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#LiQF08,https://doi.org/10.1016/j.automatica.2007.04.014 +Francesco Amato,Necessary and sufficient conditions for finite-time stability of impulsive dynamical linear systems.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#AmatoTP13,https://doi.org/10.1016/j.automatica.2013.04.004 +Kim Batselier,Tensor Network alternating linear scheme for MIMO Volterra system identification.,2017,84,Automatica,,db/journals/automatica/automatica84.html#BatselierCW17a,https://doi.org/10.1016/j.automatica.2017.06.033 +Emilia Fridman,Robust Hinfinity minimum entropy static output-feedback control of singularly perturbed systems.,2000,36,Automatica,8,db/journals/automatica/automatica36.html#FridmanS00,https://doi.org/10.1016/S0005-1098(00)00027-3 +Stephen Prajna,Barrier certificates for nonlinear model validation.,2006,42,Automatica,1,db/journals/automatica/automatica42.html#Prajna06,https://doi.org/10.1016/j.automatica.2005.08.007 +Alain Bensoussan,A class of non-zero-sum stochastic differential investment and reinsurance games.,2014,50,Automatica,8,db/journals/automatica/automatica50.html#BensoussanSYY14,https://doi.org/10.1016/j.automatica.2014.05.033 +Cristian R. Rojas,Analyzing iterations in identification with application to nonparametric H∞-norm estimation.,2012,48,Automatica,11,db/journals/automatica/automatica48.html#RojasOHW12,https://doi.org/10.1016/j.automatica.2012.08.025 +D. N. P. Murthy,Observability in discrete time system with faulty sensor.,1980,16,Automatica,6,db/journals/automatica/automatica16.html#Murthy80,https://doi.org/10.1016/0005-1098(80)90013-8 +Fangfei Li,Controllability of probabilistic Boolean control networks.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#LiS11a,https://doi.org/10.1016/j.automatica.2011.09.016 +Peter Hippe,Design of MIMO compensators for systems with unmeasurable disturbances: The polynomial approach.,1992,28,Automatica,5,db/journals/automatica/automatica28.html#Hippe92,https://doi.org/10.1016/0005-1098(92)90154-8 +Peter M. Young,The rank one mixed and#956* problem and 'kharitonov-type' analysis.,1994,30,Automatica,12,db/journals/automatica/automatica30.html#Young94,https://doi.org/10.1016/0005-1098(94)90050-7 +Iven Mareels,Linear controller design limits of performance : Stephen P. Boyd and Craig H. Barratt.,1993,29,Automatica,3,db/journals/automatica/automatica29.html#Mareels93,https://doi.org/10.1016/0005-1098(93)90084-7 +Wei Wang 0016,Adaptive compensation for infinite number of actuator failures or faults.,2011,47,Automatica,10,db/journals/automatica/automatica47.html#WangW11,https://doi.org/10.1016/j.automatica.2011.08.022 +Anatoly I. Kalinin,Asymptotic Solution of the Minimum Force Problem for Linear Singularly Perturbed Systems.,1998,34,Automatica,5,db/journals/automatica/automatica34.html#KalininP98,https://doi.org/10.1016/S0005-1098(97)00221-5 +K. D. Do,Boundary stabilization of extensible and unshearable marine risers with large in-plane deflection.,2017,77,Automatica,,db/journals/automatica/automatica77.html#DoL17,https://doi.org/10.1016/j.automatica.2016.11.044 +A. K. Mahalanabis,Recursive decision directed estimation of reflection coefficients for seismic data deconvolution.,1982,18,Automatica,6,db/journals/automatica/automatica18.html#MahalanabisPM82,https://doi.org/10.1016/0005-1098(82)90061-9 +Adrian Wills,Identification of Hammerstein-Wiener models.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#WillsSLN13,https://doi.org/10.1016/j.automatica.2012.09.018 +Maciej Niedzwiecki,Identification of time-varying systems with abrupt parameter changes.,1994,30,Automatica,3,db/journals/automatica/automatica30.html#Niedzwiecki94,https://doi.org/10.1016/0005-1098(94)90121-X +Michael A. Vaudrey,Stability and operating constraints of adaptive LMS-based feedback control.,2003,39,Automatica,4,db/journals/automatica/automatica39.html#VaudreyBS03,https://doi.org/10.1016/S0005-1098(02)00288-1 +Aline I. Maalouf,Time-varying H∞ control for a class of linear quantum systems: A dynamic game approach.,2012,48,Automatica,11,db/journals/automatica/automatica48.html#MaaloufP12,https://doi.org/10.1016/j.automatica.2012.06.079 +Aleksandar I. Zecevic,A new approach to control design with overlapping information structure constraints.,2005,41,Automatica,2,db/journals/automatica/automatica41.html#ZecevicS05,https://doi.org/10.1016/j.automatica.2004.09.011 +ülle Kotta,Relaxing realizability conditions for discrete-time nonlinear systems.,2015,58,Automatica,,db/journals/automatica/automatica58.html#KottaST15,https://doi.org/10.1016/j.automatica.2015.05.007 +Xiaojing Shen,Robust distributed maximum likelihood estimation with dependent quantized data.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#ShenVZ14,https://doi.org/10.1016/j.automatica.2013.09.036 +Ming Hou 0001,Input Observability and Input Reconstruction.,1998,34,Automatica,6,db/journals/automatica/automatica34.html#HouP98,https://doi.org/10.1016/S0005-1098(98)00021-1 +Xavier Litrico,Boundary control of linearized Saint-Venant equations oscillating modes.,2006,42,Automatica,6,db/journals/automatica/automatica42.html#LitricoF06,https://doi.org/10.1016/j.automatica.2006.02.002 +Brandon Hencey,An anti-windup technique for LMI regions.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#HenceyA09,https://doi.org/10.1016/j.automatica.2009.06.021 +Tadashi Ishihara,Robust stability bounds for a class of discrete-time regulators with computation delays.,1988,24,Automatica,5,db/journals/automatica/automatica24.html#Ishihara88,https://doi.org/10.1016/0005-1098(88)90118-5 +George S. Axelby,About this and future issues.,1969,5,Automatica,5,db/journals/automatica/automatica5.html#Axelby69e,https://doi.org/10.1016/0005-1098(69)90020-X +Tae-Woong Yoon,Adaptive predictive control of the benchmark plant.,1994,30,Automatica,4,db/journals/automatica/automatica30.html#YoonC94,https://doi.org/10.1016/0005-1098(94)90150-3 +Huibert Kwakernaak,New faces - More issues - Increasing service.,1994,30,Automatica,1,db/journals/automatica/automatica30.html#Kwakernaak94,https://doi.org/10.1016/0005-1098(94)90221-6 +Xiaoyue Li,A note on almost sure asymptotic stability of neutral stochastic delay differential equations with Markovian switching.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#LiM12,https://doi.org/10.1016/j.automatica.2012.06.045 +Izumi Masubuchi,H∞ control for descriptor systems: A matrix inequalities approach.,1997,33,Automatica,4,db/journals/automatica/automatica33.html#MasubuchiKOS97,https://doi.org/10.1016/S0005-1098(96)00193-8 +Hamidreza Modares,Integral reinforcement learning and experience replay for adaptive optimal control of partially-unknown constrained-input continuous-time systems.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#ModaresLS14,https://doi.org/10.1016/j.automatica.2013.09.043 +Domenico D'Alessandro,Optimal evaluation of generalized Euler angles with applications to control.,2004,40,Automatica,11,db/journals/automatica/automatica40.html#DAlessandro04,https://doi.org/10.1016/j.automatica.2004.06.006 +Eric S. Kim,Symbolic control design for monotone systems with directed specifications.,2017,83,Automatica,,db/journals/automatica/automatica83.html#KimAS17,https://doi.org/10.1016/j.automatica.2017.04.060 +J. M. Jover,A parallel architecture for Kalman filter measurement update and parameter estimation.,1986,22,Automatica,1,db/journals/automatica/automatica22.html#JoverK86,https://doi.org/10.1016/0005-1098(86)90104-4 +He Huang,An improved robust model predictive control design in the presence of actuator saturation.,2011,47,Automatica,4,db/journals/automatica/automatica47.html#HuangLLX11,https://doi.org/10.1016/j.automatica.2011.01.045 +Kemi Ding,A multi-channel transmission schedule for remote state estimation under DoS attacks.,2017,78,Automatica,,db/journals/automatica/automatica78.html#DingLQDS17,https://doi.org/10.1016/j.automatica.2016.12.020 +Young Soo Suh,Modified Kalman filter for networked monitoring systems employing a send-on-delta method.,2007,43,Automatica,2,db/journals/automatica/automatica43.html#SuhNR07,https://doi.org/10.1016/j.automatica.2006.08.022 +Miloje S. Radenkovic,Strong consistency of parameter estimates in direct self-tuning control algorithms based on stochastic approximation.,1990,26,Automatica,3,db/journals/automatica/automatica26.html#RadenkovicS90,https://doi.org/10.1016/0005-1098(90)90024-C +Adrian M. Medioli,Maximal controllability of input constrained unstable systems by the addition of implicit constraints.,2011,47,Automatica,10,db/journals/automatica/automatica47.html#MedioliSM11,https://doi.org/10.1016/j.automatica.2011.08.001 +M. Berka,A discrete-time algorithm for nuclear reactor spatial control.,1985,21,Automatica,4,db/journals/automatica/automatica21.html#BerkaC85,https://doi.org/10.1016/0005-1098(85)90082-2 +Lee Thompson,Real-time expert system implementation at monsanto-krummrich.,1993,29,Automatica,5,db/journals/automatica/automatica29.html#ThompsonM93,https://doi.org/10.1016/0005-1098(93)90045-U +Yasushi Iwatani,Stability tests and stabilization for piecewise linear systems based on poles and zeros of subsystems.,2006,42,Automatica,10,db/journals/automatica/automatica42.html#IwataniH06,https://doi.org/10.1016/j.automatica.2006.06.009 +Ratnesh Kumar 0001,"Comment on ""Bisimilarity control of partially observed nondeterministic discrete event systems and a test algorithm"" [Automatica 47 (2011) 782-788].",2014,50,Automatica,1,db/journals/automatica/automatica50.html#KumarJZ14,https://doi.org/10.1016/j.automatica.2013.09.040 +James Fisher,Analysis of partial stability problems using sum of squares techniques.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#FisherB09,https://doi.org/10.1016/j.automatica.2008.09.027 +Jinwen Hu,Online model regression for nonlinear time-varying manufacturing systems.,2017,78,Automatica,,db/journals/automatica/automatica78.html#HuZLX17,https://doi.org/10.1016/j.automatica.2016.12.012 +Flemming Buchholt,A multivariable selftuning regulator to control a double effect evaporator.,1981,17,Automatica,5,db/journals/automatica/automatica17.html#BuchholtK81,https://doi.org/10.1016/0005-1098(81)90020-0 +Yanjiao Wang,Novel data filtering based parameter identification for multiple-input multiple-output systems using the auxiliary model.,2016,71,Automatica,,db/journals/automatica/automatica71.html#WangD16,https://doi.org/10.1016/j.automatica.2016.05.024 +Shengyue Yang,Novel iterative learning controls for linear discrete-time systems based on a performance index over iterations.,2008,44,Automatica,5,db/journals/automatica/automatica44.html#YangQFN08,https://doi.org/10.1016/j.automatica.2007.10.024 +Hai-Jiao Guo,A state-space parametrization of discrete-time two-degree-of-freedom integral controllers.,1994,30,Automatica,3,db/journals/automatica/automatica30.html#GuoIT94,https://doi.org/10.1016/0005-1098(94)90125-2 +Shreyas Sundaram,A control-theoretic approach to disseminating values and overcoming malicious links in wireless networks.,2012,48,Automatica,11,db/journals/automatica/automatica48.html#SundaramRP12,https://doi.org/10.1016/j.automatica.2012.06.072 +N. Harris McClamroch,Sensitivity of linear control systems to large parameter variations.,1969,5,Automatica,3,db/journals/automatica/automatica5.html#McClamrochCA69,https://doi.org/10.1016/0005-1098(69)90067-3 +H. Zhang,Identification and control of a large kinescope glass furnace.,1994,30,Automatica,5,db/journals/automatica/automatica30.html#ZhangHWS94,https://doi.org/10.1016/0005-1098(94)90178-3 +P. Schwarz,A control strategy for a six-pulse bridge converter especially suitable for the use of microcomputers.,1987,23,Automatica,2,db/journals/automatica/automatica23.html#Schwarz87,https://doi.org/10.1016/0005-1098(87)90096-3 +Guofeng Zhang 0003,Comparing digital implementation via the bilinear and step-invariant transformations.,2004,40,Automatica,2,db/journals/automatica/automatica40.html#ZhangC04a,https://doi.org/10.1016/j.automatica.2003.08.010 +Brian D. O. Anderson,Model approximations via prediction error identification.,1978,14,Automatica,6,db/journals/automatica/automatica14.html#AndersonMH78,https://doi.org/10.1016/0005-1098(78)90051-1 +Long Cheng 0001,Sampled-data based average consensus of second-order integral multi-agent systems: Switching topologies and communication noises.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#ChengWHTC13,https://doi.org/10.1016/j.automatica.2013.02.004 +Mihály Petreczky,Partial-realization theory for linear switched systems - A formal power series approach.,2011,47,Automatica,10,db/journals/automatica/automatica47.html#PetreczkyS11,https://doi.org/10.1016/j.automatica.2011.08.013 +Ali Khanafer 0002,Stability of epidemic models over directed graphs: A positive systems approach.,2016,74,Automatica,,db/journals/automatica/automatica74.html#KhanaferBG16,https://doi.org/10.1016/j.automatica.2016.07.037 +Märta Barenthin,Identification and control: Joint input design and I state feedback with ellipsoidal parametric uncertainty via LMIs.,2008,44,Automatica,2,db/journals/automatica/automatica44.html#BarenthinH08,https://doi.org/10.1016/j.automatica.2007.06.025 +H. Kurz,Experimental comparison and application of various parameter-adaptive control algorithms.,1980,16,Automatica,2,db/journals/automatica/automatica16.html#KurzIS80,https://doi.org/10.1016/0005-1098(80)90048-5 +Mrdjan Jankovic,Global adaptive stabilization of cascade nonlinear systems.,1997,33,Automatica,2,db/journals/automatica/automatica33.html#JankovicSK97,https://doi.org/10.1016/S0005-1098(96)00181-1 +Arthur W. Berger,Existence of coordinating prices in dynamic systems.,1989,25,Automatica,5,db/journals/automatica/automatica25.html#BergerS89,https://doi.org/10.1016/0005-1098(89)90036-8 +Marco C. Campi,Non-asymptotic confidence regions for model parameters in the presence of unmodelled dynamics.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#CampiKW09,https://doi.org/10.1016/j.automatica.2009.05.028 +He Cai,Leader-following attitude consensus of multiple rigid body systems by attitude feedback control.,2016,69,Automatica,,db/journals/automatica/automatica69.html#Cai016,https://doi.org/10.1016/j.automatica.2016.02.010 +P. P. J. van den Bosch,A hierarchical approach to dynamic optimization of power systems.,1984,20,Automatica,2,db/journals/automatica/automatica20.html#BoschHS84,https://doi.org/10.1016/0005-1098(84)90025-6 +K. Xiong,Performance evaluation of UKF-based nonlinear filtering.,2006,42,Automatica,2,db/journals/automatica/automatica42.html#XiongZC06,https://doi.org/10.1016/j.automatica.2005.10.004 +Ilia G. Polushin,A small gain framework for networked cooperative force-reflecting teleoperation.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#PolushinDTP13,https://doi.org/10.1016/j.automatica.2012.11.001 +Dina Shona Laila,A discrete-time observer design for spacecraft attitude determination using an orthogonality-preserving algorithm.,2011,47,Automatica,5,db/journals/automatica/automatica47.html#LailaLA11,https://doi.org/10.1016/j.automatica.2011.01.049 +Baozhu Du,On reachable sets for positive linear systems under constrained exogenous inputs.,2016,74,Automatica,,db/journals/automatica/automatica74.html#DuLSC16,https://doi.org/10.1016/j.automatica.2016.07.048 +Alok Sinha,Real-time dynamics of manipulation robots: M. Vukobratovic and N. Kircanski.,1987,23,Automatica,1,db/journals/automatica/automatica23.html#Sinha87,https://doi.org/10.1016/0005-1098(87)90125-7 +Maria Inés Troparevsky,Adaptive stabilization of time-varying discrete-time linear systems.,1996,32,Automatica,1,db/journals/automatica/automatica32.html#Troparevsky96,https://doi.org/10.1016/0005-1098(95)00136-0 +Karl Johan åström,Automatic tuning of digital controllers with applications to HVAC plants.,1993,29,Automatica,5,db/journals/automatica/automatica29.html#AstromHW93,https://doi.org/10.1016/0005-1098(93)90053-V +Stefano Battilotti,Adaptive disturbance attenuation with global stability for rigid and elastic joint robots.,1997,33,Automatica,2,db/journals/automatica/automatica33.html#BattilottiL97,https://doi.org/10.1016/S0005-1098(96)00144-6 +Wei-Jie Feng,A family of multi-path congestion control algorithms with global stability and delay robustness.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#FengWW14,https://doi.org/10.1016/j.automatica.2014.10.061 +Keith W. Ross,Optimal dynamic routing in Markov queueing networks.,1986,22,Automatica,3,db/journals/automatica/automatica22.html#Ross86,https://doi.org/10.1016/0005-1098(86)90035-X +Attilio Priolo,A distributed algorithm for average consensus on strongly connected weighted digraphs.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#PrioloGMS14,https://doi.org/10.1016/j.automatica.2013.12.026 +S. M. Shahruz,Boundedness of voltages and currents in Josephson junctions represented by the perturbed sine-Gordon equation.,2001,37,Automatica,9,db/journals/automatica/automatica37.html#ShahruzK01,https://doi.org/10.1016/S0005-1098(01)00101-7 +Derui Ding,Distributed recursive filtering for stochastic systems under uniform quantizations and deception attacks through sensor networks.,2017,78,Automatica,,db/journals/automatica/automatica78.html#DingWHW17,https://doi.org/10.1016/j.automatica.2016.12.026 +Mohamed Darouach,Functional observers design for descriptor systems via LMI: Continuous and discrete-time cases.,2017,86,Automatica,,db/journals/automatica/automatica86.html#DarouachAA17,https://doi.org/10.1016/j.automatica.2017.08.016 +Zi-Qin Wang,L∞ Optimal control of SISO continuous-time systems.,1997,33,Automatica,1,db/journals/automatica/automatica33.html#WangS97,https://doi.org/10.1016/S0005-1098(96)00126-4 +R. A. Freeman,Design of 'softer' robust nonlinear control laws.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#FreemanK93,https://doi.org/10.1016/0005-1098(93)90007-G +Armin Ataei-Esfahani,A probabilistic ellipsoid algorithm for linear optimization problems with uncertain LMI constraints.,2015,52,Automatica,,db/journals/automatica/automatica52.html#Ataei-EsfahaniW15,https://doi.org/10.1016/j.automatica.2014.11.010 +Isaac Horowitz,Feedback design of systems with significant uncertainty: M. J. Ashworth.,1983,19,Automatica,5,db/journals/automatica/automatica19.html#Horowitz83,https://doi.org/10.1016/0005-1098(83)90016-X +Roberto Guidorzi,Positive output/state maps and quasi-positive realization of MIMO discrete systems.,2016,71,Automatica,,db/journals/automatica/automatica71.html#Guidorzi16,https://doi.org/10.1016/j.automatica.2016.04.024 +Le Ha Vy Nguyen,Stabilization of MISO fractional systems with delays.,2017,83,Automatica,,db/journals/automatica/automatica83.html#NguyenB17,https://doi.org/10.1016/j.automatica.2017.06.032 +James L. Nevins,Assembly research.,1980,16,Automatica,6,db/journals/automatica/automatica16.html#NevinsW80,https://doi.org/10.1016/0005-1098(80)90003-5 +Carsten W. Scherer,The state-feedback H∞-problem at optimality.,1994,30,Automatica,2,db/journals/automatica/automatica30.html#Scherer94,https://doi.org/10.1016/0005-1098(94)90031-0 +Tamer Basar,In Memoriam.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#Basar08b,https://doi.org/10.1016/j.automatica.2008.10.008 +Huanshui Zhang,Robust filtering under stochastic parametric uncertainties.,2004,40,Automatica,9,db/journals/automatica/automatica40.html#ZhangZXL04,https://doi.org/10.1016/j.automatica.2004.04.002 +Delphine Bresch-Pietri,Adaptive trajectory tracking despite unknown input delay and plant parameters.,2009,45,Automatica,9,db/journals/automatica/automatica45.html#Bresch-PietriK09,https://doi.org/10.1016/j.automatica.2009.04.027 +Jin H. Seo,Decentralized Hinfinity-controller design.,1999,35,Automatica,5,db/journals/automatica/automatica35.html#SeoJL99,https://doi.org/10.1016/S0005-1098(98)00208-8 +Jun Moon,Minimax estimation with intermittent observations.,2015,62,Automatica,,db/journals/automatica/automatica62.html#MoonB15a,https://doi.org/10.1016/j.automatica.2015.09.004 +Shu-Jun Liu,Stochastic source seeking for nonholonomic unicycle.,2010,46,Automatica,9,db/journals/automatica/automatica46.html#LiuK10,https://doi.org/10.1016/j.automatica.2010.05.025 +Katsuhisa Furuta,Discrete-time LQG dynamic controller design using plant Markov parameters.,1995,31,Automatica,9,db/journals/automatica/automatica31.html#FurutaW95,https://doi.org/10.1016/0005-1098(95)00045-X +Kar-Keung D. Young,Variable structure servomechanism design and applications to overspeed protection control.,1982,18,Automatica,4,db/journals/automatica/automatica18.html#YoungK82,https://doi.org/10.1016/0005-1098(82)90068-1 +Christian Commault,Input addition and leader selection for the controllability of graph-based systems.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#CommaultD13,https://doi.org/10.1016/j.automatica.2013.07.021 +Han Ho Choi,Variable structure output feedback control design for a class of uncertain dynamic systems.,2002,38,Automatica,2,db/journals/automatica/automatica38.html#Choi02,https://doi.org/10.1016/S0005-1098(01)00211-4 +Min-Shin Chen,An LTR-observer-based dynamic sliding mode control for chattering reduction.,2007,43,Automatica,6,db/journals/automatica/automatica43.html#ChenCY07,https://doi.org/10.1016/j.automatica.2006.12.001 +Rama K. Yedavalli,Robust root clustering for linear uncertain systems using generalized lyapunov theory.,1993,29,Automatica,1,db/journals/automatica/automatica29.html#Yedavalli93,https://doi.org/10.1016/0005-1098(93)90188-Y +Robert J. Elliott,A BSDE approach to a risk-based optimal investment of an insurer.,2011,47,Automatica,2,db/journals/automatica/automatica47.html#ElliottS11,https://doi.org/10.1016/j.automatica.2010.10.032 +Mohammad Javed Khosrowjerdi,A mixed I approach to simultaneous fault detection and control.,2004,40,Automatica,2,db/journals/automatica/automatica40.html#KhosrowjerdiNS04,https://doi.org/10.1016/j.automatica.2003.09.011 +Ambalal V. Patel,Analytical structures and analysis of the simplest fuzzy PI controllers.,2002,38,Automatica,6,db/journals/automatica/automatica38.html#PatelM02,https://doi.org/10.1016/S0005-1098(01)00297-7 +Craig F. Cutforth,Adaptive input shaping for maneuvering flexible structures.,2004,40,Automatica,4,db/journals/automatica/automatica40.html#CutforthP04,https://doi.org/10.1016/j.automatica.2003.11.013 +Mauro Di Marco,A set theoretic approach for time-to-contact estimation in dynamic vision.,2003,39,Automatica,6,db/journals/automatica/automatica39.html#MarcoGPV03,https://doi.org/10.1016/S0005-1098(03)00062-1 +Chaoyong Li,Distributed finite-time consensus of nonlinear systems under switching topologies.,2014,50,Automatica,6,db/journals/automatica/automatica50.html#LiQ14,https://doi.org/10.1016/j.automatica.2014.04.002 +Rolf Johansson,Estimation and direct adaptive control of delay-differential systems.,1986,22,Automatica,5,db/journals/automatica/automatica22.html#Johansson86,https://doi.org/10.1016/0005-1098(86)90065-8 +Yu Pan,Analysis and control of quantum finite-level systems driven by single-photon input states.,2016,69,Automatica,,db/journals/automatica/automatica69.html#PanZJ16,https://doi.org/10.1016/j.automatica.2016.02.020 +Rik Pintelon,Box-Jenkins identification revisited - Part I: Theory.,2006,42,Automatica,1,db/journals/automatica/automatica42.html#PintelonS06,https://doi.org/10.1016/j.automatica.2005.09.004 +Peter D. Roberts,On an algorithm for combined system optimisation and parameter estimation.,1981,17,Automatica,1,db/journals/automatica/automatica17.html#RobertsW81,https://doi.org/10.1016/0005-1098(81)90095-9 +Hideaki Ishii,A subband coding approach to control under limited data rates and message losses.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#IshiiH08,https://doi.org/10.1016/j.automatica.2007.09.002 +T. Alamo,Min-max MPC using a tractable QP problem.,2007,43,Automatica,4,db/journals/automatica/automatica43.html#AlamoRPC07,https://doi.org/10.1016/j.automatica.2006.10.006 +Alexander I. Matasov,Guaranteeing parameter estimation with anomalous measurement errors.,1996,32,Automatica,9,db/journals/automatica/automatica32.html#MatasovS96,https://doi.org/10.1016/0005-1098(96)00064-7 +Shalabh Bhatnagar,New algorithms of the Q-learning type.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#BhatnagarB08,https://doi.org/10.1016/j.automatica.2007.09.009 +Yaakov Bar-Shalom,Consistency and robustness of PDAF for target tracking in cluttered environments.,1983,19,Automatica,4,db/journals/automatica/automatica19.html#Bar-ShalomB83,https://doi.org/10.1016/0005-1098(83)90059-6 +Fuchun Sun,Robot discrete adaptive control based on dynamic inversion using dynamical neural networks.,2002,38,Automatica,11,db/journals/automatica/automatica38.html#SunLL02,https://doi.org/10.1016/S0005-1098(02)00116-4 +Hiroyuki Tamura,Multistage linear programming for discrete optimal control with distributed-lags.,1977,13,Automatica,4,db/journals/automatica/automatica13.html#Tamura77,https://doi.org/10.1016/0005-1098(77)90019-X +Xu Wang 0005,Simultaneous global external and internal stabilization of linear time-invariant discrete-time systems subject to actuator saturation.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#WangSSS12,https://doi.org/10.1016/j.automatica.2012.02.004 +Jitendra K. Tugnait,An addendum and correction to: 'On identification and adaptive estimation for systems with interrupted observations'.,1984,20,Automatica,1,db/journals/automatica/automatica20.html#Tugnait84,https://doi.org/10.1016/0005-1098(84)90077-3 +Alexander V. Nazin,Asymptotically optimal smoothing of averaged LMS estimates for regression parameter tracking.,2002,38,Automatica,8,db/journals/automatica/automatica38.html#NazinL02,https://doi.org/10.1016/S0005-1098(02)00028-6 +Johan Thunberg,Dynamic controllers for column synchronization of rotation matrices: A QR-factorization approach.,2018,93,Automatica,,db/journals/automatica/automatica93.html#ThunbergMG18,https://doi.org/10.1016/j.automatica.2018.03.023 +C. J. Goh,Control parametrization: A unified approach to optimal control problems with general constraints.,1988,24,Automatica,1,db/journals/automatica/automatica24.html#GohT88,https://doi.org/10.1016/0005-1098(88)90003-9 +Toshio Yoshimura,A modified extended Kalman filter for linear discrete-time systems with unknown parameters.,1981,17,Automatica,4,db/journals/automatica/automatica17.html#YoshimuraKS81,https://doi.org/10.1016/0005-1098(81)90041-8 +Joseph K. Scott,Bounds on the reachable sets of nonlinear control systems.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#ScottB13,https://doi.org/10.1016/j.automatica.2012.09.020 +William F. Guy,IFAC 6th triennial world congress explores control science solutions for global problems.,1976,12,Automatica,5,db/journals/automatica/automatica12.html#Guy76,https://doi.org/10.1016/0005-1098(76)90015-7 +Wei Wang 0071,Analysis for a class of singularly perturbed hybrid systems via averaging.,2012,48,Automatica,6,db/journals/automatica/automatica48.html#WangTN12,https://doi.org/10.1016/j.automatica.2012.03.013 +David W. Clarke,Adaptive control of materials-testing machines.,1997,33,Automatica,6,db/journals/automatica/automatica33.html#ClarkeH97,https://doi.org/10.1016/S0005-1098(97)00013-7 +Ben M. Chen,A new stable compensator design for exact and approximate loop transfer recovery.,1991,27,Automatica,2,db/journals/automatica/automatica27.html#ChenSS91,https://doi.org/10.1016/0005-1098(91)90076-E +Nikolai M. Filatov,Dual pole-placement controller with direct adaptation.,1997,33,Automatica,1,db/journals/automatica/automatica33.html#FilatovUK97,https://doi.org/10.1016/S0005-1098(96)00150-1 +Pierdomenico Pepe,On Liapunov-Krasovskii functionals under Carathéodory conditions.,2007,43,Automatica,4,db/journals/automatica/automatica43.html#Pepe07,https://doi.org/10.1016/j.automatica.2006.10.024 +Chunyue Song,Near optimal control for a class of stochastic hybrid systems.,2010,46,Automatica,9,db/journals/automatica/automatica46.html#SongL10,https://doi.org/10.1016/j.automatica.2010.05.024 +Pradip K. Sinha,Model reference adaptive control of a maglev system with stable maximum descent criterion.,1999,35,Automatica,8,db/journals/automatica/automatica35.html#SinhaP99,https://doi.org/10.1016/S0005-1098(99)00040-0 +Yujiro Inouye,Approximation of multivariable linear systems with impulse response and autocorrelation sequences.,1983,19,Automatica,3,db/journals/automatica/automatica19.html#Inouye83,https://doi.org/10.1016/0005-1098(83)90103-6 +Akira Ohsumi,Subspace identification for continuous-time stochastic systems via distribution-based approach.,2002,38,Automatica,1,db/journals/automatica/automatica38.html#OhsumiKY02,https://doi.org/10.1016/S0005-1098(01)00190-X +Gang Tao,An adaptive control scheme for systems with unknown actuator failures.,2002,38,Automatica,6,db/journals/automatica/automatica38.html#TaoCJ02,https://doi.org/10.1016/S0005-1098(02)00018-3 +Lijuan Shen,Controllability of linear impulsive stochastic systems in Hilbert spaces.,2013,49,Automatica,4,db/journals/automatica/automatica49.html#ShenSW13,https://doi.org/10.1016/j.automatica.2013.01.036 +Kok Kiong Tan,Decentralized adaptive controller design of large-scale uncertain robotic systems.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#TanHL09,https://doi.org/10.1016/j.automatica.2008.06.005 +Riccardo Scattolini,A multivariable self-tuning controller with integral action.,1986,22,Automatica,6,db/journals/automatica/automatica22.html#Scattolini86,https://doi.org/10.1016/0005-1098(86)90001-4 +Benoîte de Saporta,Numerical method for impulse control of piecewise deterministic Markov processes.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#SaportaD12,https://doi.org/10.1016/j.automatica.2012.02.031 +Frank Allgöwer,High-gain adaptive and#955*-tracking for nonlinear systems.,1997,33,Automatica,5,db/journals/automatica/automatica33.html#AllgowerAI97,https://doi.org/10.1016/S0005-1098(96)00226-9 +Jonas Gillberg,Frequency-domain identification of continuous-time ARMA models from sampled data.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#GillbergL09,https://doi.org/10.1016/j.automatica.2009.01.016 +Karl Johan åström,Zeros of sampled systems.,1984,20,Automatica,1,db/journals/automatica/automatica20.html#AstromHS84,https://doi.org/10.1016/0005-1098(84)90062-1 +Francesco Borrelli,On the computation of linear model predictive control laws.,2010,46,Automatica,6,db/journals/automatica/automatica46.html#BorrelliBPS10,https://doi.org/10.1016/j.automatica.2010.02.031 +Weili Yan,A general multirate approach for direct closed-loop identification to the Nyquist frequency and beyond.,2015,53,Automatica,,db/journals/automatica/automatica53.html#YanDP15,https://doi.org/10.1016/j.automatica.2014.12.038 +Boris Houska,An auto-generated real-time iteration algorithm for nonlinear MPC in the microsecond range.,2011,47,Automatica,10,db/journals/automatica/automatica47.html#HouskaFD11,https://doi.org/10.1016/j.automatica.2011.08.020 +Hao Yang 0001,Supervisory fault tolerant control for a class of uncertain nonlinear systems.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#YangJS09,https://doi.org/10.1016/j.automatica.2009.06.019 +W. Harmon Ray,Some recent applications of distributed parameter systems theory - A survey.,1978,14,Automatica,3,db/journals/automatica/automatica14.html#Ray78,https://doi.org/10.1016/0005-1098(78)90092-4 +Guang-Hong Yang,Insensitive Hinfinity filter design for continuous-time systems with respect to filter coefficient variations.,2010,46,Automatica,11,db/journals/automatica/automatica46.html#YangG10,https://doi.org/10.1016/j.automatica.2010.07.004 +Xiaofeng Wang,Lebesgue approximation model of continuous-time nonlinear dynamic systems.,2016,64,Automatica,,db/journals/automatica/automatica64.html#WangZ16,https://doi.org/10.1016/j.automatica.2015.11.016 +George S. Axelby,Impact of automatic control: Present and future.,1983,19,Automatica,3,db/journals/automatica/automatica19.html#Axelby83,https://doi.org/10.1016/0005-1098(83)90112-7 +David A. Castañón,On stochastic dynamic stackelberg strategies.,1976,12,Automatica,2,db/journals/automatica/automatica12.html#CastanonA76,https://doi.org/10.1016/0005-1098(76)90081-9 +Er-Wei Bai,Identification of an additive nonlinear system and its applications in generalized Hammerstein models.,2008,44,Automatica,2,db/journals/automatica/automatica44.html#BaiC08,https://doi.org/10.1016/j.automatica.2007.05.023 +Keyou You,Recursive algorithms for parameter estimation with adaptive quantizer.,2015,52,Automatica,,db/journals/automatica/automatica52.html#You15,https://doi.org/10.1016/j.automatica.2014.11.018 +Derui Ding,Envelope-constrained H∞ filtering with fading measurements and randomly occurring nonlinearities: The finite horizon case.,2015,55,Automatica,,db/journals/automatica/automatica55.html#DingWSD15,https://doi.org/10.1016/j.automatica.2015.02.024 +éric Poulin,Development and evaluation of an auto-tuning and adaptive PID controller.,1996,32,Automatica,1,db/journals/automatica/automatica32.html#PoulinPDH96,https://doi.org/10.1016/0005-1098(95)00105-0 +Yang Liu,Filtering and fault detection for nonlinear systems with polynomial approximation.,2015,54,Automatica,,db/journals/automatica/automatica54.html#LiuWHZ15,https://doi.org/10.1016/j.automatica.2015.02.022 +John F. Coales,The birth of an IFAC journal.,1969,5,Automatica,1,db/journals/automatica/automatica5.html#Coales69,https://doi.org/10.1016/0005-1098(69)90045-4 +Robert E. Mahony,Output stabilization of square nonlinear systems.,1997,33,Automatica,8,db/journals/automatica/automatica33.html#MahonyMBC97,https://doi.org/10.1016/S0005-1098(97)00052-6 +Bernard Bercu,A new concept of strong controllability via the Schur complement for ARX models in adaptive tracking.,2010,46,Automatica,11,db/journals/automatica/automatica46.html#BercuV10,https://doi.org/10.1016/j.automatica.2010.06.043 +Per Sjövall,Constrained state-space system identification with application to structural dynamics.,2006,42,Automatica,9,db/journals/automatica/automatica42.html#SjovallMA06,https://doi.org/10.1016/j.automatica.2006.04.021 +Jiaxing Guo,A multivariable MRAC scheme with application to a nonlinear aircraft model.,2011,47,Automatica,4,db/journals/automatica/automatica47.html#GuoTL11,https://doi.org/10.1016/j.automatica.2011.01.069 +Hongbin Ma,Finite-model adaptive control using WLS-like algorithm.,2007,43,Automatica,4,db/journals/automatica/automatica43.html#Ma07,https://doi.org/10.1016/j.automatica.2006.10.017 +C. S. Chen,Stepping motors and their microprocessor controls: Takashi Kenjo.,1985,21,Automatica,5,db/journals/automatica/automatica21.html#Chen85,https://doi.org/10.1016/0005-1098(85)90012-3 +Phan Thanh Nam,Componentwise ultimate bounds for positive discrete time-delay systems perturbed by interval disturbances.,2016,72,Automatica,,db/journals/automatica/automatica72.html#NamTP16,https://doi.org/10.1016/j.automatica.2016.06.007 +Andrey V. Savkin,An uncertainty averaging approach to optimal guaranteed cost control of uncertain systems with structured uncertainty.,1995,31,Automatica,11,db/journals/automatica/automatica31.html#SavkinP95,https://doi.org/10.1016/0005-1098(95)00080-G +Guodong Shi,Randomized optimal consensus of multi-agent systems.,2012,48,Automatica,12,db/journals/automatica/automatica48.html#ShiJ12,https://doi.org/10.1016/j.automatica.2012.08.018 +Oswaldo Luiz V. Costa,Linear minimum mean square filter for discrete-time linear systems with Markov jumps and multiplicative noises.,2011,47,Automatica,3,db/journals/automatica/automatica47.html#CostaB11,https://doi.org/10.1016/j.automatica.2011.01.015 +Chunhai Hou,Decay Estimates for Applications of Razumikhin-Type Theorems.,1998,34,Automatica,7,db/journals/automatica/automatica34.html#HouQ98,https://doi.org/10.1016/S0005-1098(98)00015-6 +Wu-Hua Chen,Exponential stability of nonlinear time-delay systems with delayed impulse effects.,2011,47,Automatica,5,db/journals/automatica/automatica47.html#ChenZ11a,https://doi.org/10.1016/j.automatica.2011.02.031 +Khashayar Khorasani,An optimal feedback regulation of nonlinear singularly perturbed systems via slow manifold approach.,1988,24,Automatica,1,db/journals/automatica/automatica24.html#Khorasani88,https://doi.org/10.1016/0005-1098(88)90014-3 +Johan Schoukens,Frequency-domain system identification using non-parametric noise models estimated from a small number of data sets.,1997,33,Automatica,6,db/journals/automatica/automatica33.html#SchoukensPVG97,https://doi.org/10.1016/S0005-1098(97)00002-2 +Jay H. Lee,Min-max predictive control techniques for a linear state-space system with a bounded set of input matrices.,2000,36,Automatica,3,db/journals/automatica/automatica36.html#LeeC00,https://doi.org/10.1016/S0005-1098(99)00178-8 +Farzad Hashemzadeh,Teleoperation in the presence of varying time delays and sandwich linearity in actuators.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#HashemzadehHT13,https://doi.org/10.1016/j.automatica.2013.05.012 +Donald J. Schmidt,Discussion of 'square root algorithms for parallel processing in optimal estimation'.,1979,15,Automatica,4,db/journals/automatica/automatica15.html#Schmidt79,https://doi.org/10.1016/0005-1098(79)90027-X +Mario Sznaier,Heuristically enhanced feedback control of constrained discrete-time linear systems.,1990,26,Automatica,3,db/journals/automatica/automatica26.html#SznaierD90,https://doi.org/10.1016/0005-1098(90)90023-B +Tomomichi Hagiwara,Positive-realness analysis of sampled-data systems and its applications.,2004,40,Automatica,6,db/journals/automatica/automatica40.html#HagiwaraM04,https://doi.org/10.1016/j.automatica.2004.01.015 +Antonio Barreiro,Nonlinear robust stabilization by conicity and QFT techniques.,2000,36,Automatica,9,db/journals/automatica/automatica36.html#BarreiroB00,https://doi.org/10.1016/S0005-1098(00)00041-8 +Samer Riachy,A continuous-time framework for least squares parameter estimation.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#Riachy14,https://doi.org/10.1016/j.automatica.2014.10.055 +Pawel J. Nowacki,A message from the president of IFAC.,1969,5,Automatica,1,db/journals/automatica/automatica5.html#Nowacki69,https://doi.org/10.1016/0005-1098(69)90044-2 +George S. Axelby,Editorial note.,1984,20,Automatica,5,db/journals/automatica/automatica20.html#Axelby84a,https://doi.org/10.1016/0005-1098(84)90001-3 +Bipin Mishra,Distributed digital processing and closed loop computer control of wastewater treatment.,1980,16,Automatica,1,db/journals/automatica/automatica16.html#Mishra80,https://doi.org/10.1016/0005-1098(80)90088-6 +Deyuan Meng,Convergence of iterative learning control for SISO nonrepetitive systems subject to iteration-dependent uncertainties.,2017,79,Automatica,,db/journals/automatica/automatica79.html#MengM17a,https://doi.org/10.1016/j.automatica.2017.02.009 +Tin-Zhu Huang,Stability Criteria for Matrices.,1998,34,Automatica,5,db/journals/automatica/automatica34.html#Huang98,https://doi.org/10.1016/S0005-1098(97)00234-3 +Friedrich Radke,A parameter-adaptive PID-controller with stepwise parameter optimization.,1987,23,Automatica,4,db/journals/automatica/automatica23.html#RadkeI87,https://doi.org/10.1016/0005-1098(87)90074-4 +Zhendong Sun,Robust switching of discrete-time switched linear systems.,2012,48,Automatica,1,db/journals/automatica/automatica48.html#Sun12,https://doi.org/10.1016/j.automatica.2011.10.004 +Shang-Teh Wu,Dynamic transfer between sliding control and internal model control.,1999,35,Automatica,9,db/journals/automatica/automatica35.html#Wu99,https://doi.org/10.1016/S0005-1098(99)00059-X +Ye Xudong,Universal stabilization of feedforward nonlinear systems.,2003,39,Automatica,1,db/journals/automatica/automatica39.html#Xudong03,https://doi.org/10.1016/S0005-1098(02)00196-6 +Paolo Rocco,Implicit force control for industrial robots in contact with stiff surfaces.,1997,33,Automatica,11,db/journals/automatica/automatica33.html#RoccoFM97,https://doi.org/10.1016/S0005-1098(97)00113-1 +Riccardo Marino,Adaptive output feedback tracking with almost disturbance decoupling for a class of nonlinear systems.,2000,36,Automatica,12,db/journals/automatica/automatica36.html#MarinoT00,https://doi.org/10.1016/S0005-1098(00)00109-6 +T. Y. Chai,A new model reference robust adaptive controller in the presence of unmodeled dynamics and bounded disturbances.,1994,30,Automatica,5,db/journals/automatica/automatica30.html#ChaiZ94,https://doi.org/10.1016/0005-1098(94)90174-0 +Thomas Ribarits,An analysis of separable least squares data driven local coordinates for maximum likelihood estimation of linear systems.,2005,41,Automatica,3,db/journals/automatica/automatica41.html#RibaritsDH05,https://doi.org/10.1016/j.automatica.2004.11.014 +PooGyeon Park,Reciprocally convex approach to stability of systems with time-varying delays.,2011,47,Automatica,1,db/journals/automatica/automatica47.html#ParkKJ11,https://doi.org/10.1016/j.automatica.2010.10.014 +Anders Ahlén,Identifiability of the deconvolution problem.,1990,26,Automatica,1,db/journals/automatica/automatica26.html#Ahlen90,https://doi.org/10.1016/0005-1098(90)90169-I +Tongwen Chen,Linear time-varying H2-optimal control of sampled-data systems.,1991,27,Automatica,6,db/journals/automatica/automatica27.html#ChenF91,https://doi.org/10.1016/0005-1098(91)90131-K +Benjamin L. Pence,Recursive maximum likelihood parameter estimation for state space systems using polynomial chaos theory.,2011,47,Automatica,11,db/journals/automatica/automatica47.html#PenceFS11,https://doi.org/10.1016/j.automatica.2011.08.014 +Håkan Hjalmarsson,Finite model order accuracy in Hammerstein model estimation.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#HjalmarssonM12,https://doi.org/10.1016/j.automatica.2012.06.067 +Bin Zhou 0001,On the absolute stability approach to quantized feedback control.,2010,46,Automatica,2,db/journals/automatica/automatica46.html#ZhouDL10,https://doi.org/10.1016/j.automatica.2009.10.039 +Jean-Michel Dion,Structural analysis of sensor location for disturbance rejection by measurement feedback.,2015,52,Automatica,,db/journals/automatica/automatica52.html#DionC15,https://doi.org/10.1016/j.automatica.2014.11.016 +Antonio Barreiro,Delay-dependent stability of reset systems.,2010,46,Automatica,1,db/journals/automatica/automatica46.html#BarreiroB10,https://doi.org/10.1016/j.automatica.2009.10.029 +Chung-Yao Kao,Characterization of robust stability of a class of interconnected systems.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#KaoJF09,https://doi.org/10.1016/j.automatica.2008.06.021 +Morten Hovd,Control of symmetrically interconnected plants.,1994,30,Automatica,6,db/journals/automatica/automatica30.html#HovdS94,https://doi.org/10.1016/0005-1098(94)90190-2 +Jay H. Lee,Screening tools for robust control structure selection.,1995,31,Automatica,2,db/journals/automatica/automatica31.html#LeeBMP95,https://doi.org/10.1016/0005-1098(94)00062-N +Qianqian Xia,"Comments on ""Exact and approximate feedback linearization without the linear controllability assumption [Automatica 48 (2012) 2221-2228]"".",2014,50,Automatica,2,db/journals/automatica/automatica50.html#XiaG14,https://doi.org/10.1016/j.automatica.2013.11.012 +Gianni Ferretti,On the identifiability of the time delay with least-squares methods.,1996,32,Automatica,3,db/journals/automatica/automatica32.html#FerrettiMS96,https://doi.org/10.1016/0005-1098(95)00172-7 +Zhengguang Wu,Asynchronous I2-I∞ filtering for discrete-time stochastic Markov jump systems with randomly occurred sensor nonlinearities.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#WuSSC14,https://doi.org/10.1016/j.automatica.2013.09.041 +Chao Zhu,Optimal control of the risk process in a regime-switching environment.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#Zhu11,https://doi.org/10.1016/j.automatica.2011.03.007 +A. F. Vaz,The structured robust decentralized servomechanism problem for interconnected systems.,1989,25,Automatica,2,db/journals/automatica/automatica25.html#VazD89,https://doi.org/10.1016/0005-1098(89)90080-0 +Ion Matei,A linear distributed filter inspired by the Markovian jump linear system filtering problem.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#MateiB12a,https://doi.org/10.1016/j.automatica.2012.05.028 +C. Y. Chan,Discrete adaptive sliding-mode tracking controller.,1997,33,Automatica,5,db/journals/automatica/automatica33.html#Chan97,https://doi.org/10.1016/S0005-1098(97)00001-0 +John R. Broussard,Design and flight testing of a digital optimal control general aviation autopilot.,1985,21,Automatica,1,db/journals/automatica/automatica21.html#BroussardDB85,https://doi.org/10.1016/0005-1098(85)90096-2 +Hongli Dong,Finite-horizon estimation of randomly occurring faults for a class of nonlinear time-varying systems.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#DongWDG14,https://doi.org/10.1016/j.automatica.2014.10.026 +Ian R. Petersen,Performance analysis and controller synthesis for nonlinear systems with stochastic uncertainty constraints.,1996,32,Automatica,7,db/journals/automatica/automatica32.html#PetersenJ96,https://doi.org/10.1016/0005-1098(96)00023-4 +Valery S. Patsko,Families of semipermeable curves in differential games with the homicidal chauffeur dynamics.,2004,40,Automatica,12,db/journals/automatica/automatica40.html#PatskoT04,https://doi.org/10.1016/j.automatica.2004.07.008 +Alexander S. Poznyak,On-line identification and adaptive trajectory tracking for nonlinear stochastic continuous time systems using differential neural networks.,2001,37,Automatica,8,db/journals/automatica/automatica37.html#PoznyakL01,https://doi.org/10.1016/S0005-1098(01)00067-X +Salim Ibrir,Linear time-derivative trackers.,2004,40,Automatica,3,db/journals/automatica/automatica40.html#Ibrir04,https://doi.org/10.1016/j.automatica.2003.09.020 +Neil Biehn,Numerically constructible observers for linear time-varying descriptor systems.,2001,37,Automatica,3,db/journals/automatica/automatica37.html#BiehnCND01,https://doi.org/10.1016/S0005-1098(00)00168-0 +Kwan Ho Lee,Stability and H2 objective characterizations in control: A comparative study.,2010,46,Automatica,11,db/journals/automatica/automatica46.html#LeeL10,https://doi.org/10.1016/j.automatica.2010.06.044 +Rik Pintelon,Identification of continuous-time systems using arbitrary signals.,1997,33,Automatica,5,db/journals/automatica/automatica33.html#PintelonS97,https://doi.org/10.1016/S0005-1098(96)00258-0 +Shuanghe Yu,Continuous finite-time control for robotic manipulators with terminal sliding mode.,2005,41,Automatica,11,db/journals/automatica/automatica41.html#YuYSM05,https://doi.org/10.1016/j.automatica.2005.07.001 +Haixiang Yao,Uncertain exit time multi-period mean-variance portfolio selection with endogenous liabilities and Markov jumps.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#YaoLH13,https://doi.org/10.1016/j.automatica.2013.08.023 +Plínio B. L. Castrucci,Linear modelling and optimal control applied to an indexing process.,1981,17,Automatica,1,db/journals/automatica/automatica17.html#CastrucciG81,https://doi.org/10.1016/0005-1098(81)90097-2 +Anil V. Phatak,Identification of a modified optimal control model for the human operator.,1976,12,Automatica,1,db/journals/automatica/automatica12.html#PhatakWSD76,https://doi.org/10.1016/0005-1098(76)90066-2 +Ilia G. Polushin,Multirate versions of sampled-data stabilization of nonlinear systems.,2004,40,Automatica,6,db/journals/automatica/automatica40.html#PolushinM04,https://doi.org/10.1016/j.automatica.2004.01.017 +Alessandro Giua,Observer-controller design for cranes via Lyapunov equivalence.,1999,35,Automatica,4,db/journals/automatica/automatica35.html#GiuaSU99,https://doi.org/10.1016/S0005-1098(98)00204-0 +Emilia Fridman,Robust sampled-data stabilization of linear systems: an input delay approach.,2004,40,Automatica,8,db/journals/automatica/automatica40.html#FridmanSR04,https://doi.org/10.1016/j.automatica.2004.03.003 +Er-Wei Bai,Convergence of the iterative algorithm for a general Hammerstein system identification.,2010,46,Automatica,11,db/journals/automatica/automatica46.html#BaiL10,https://doi.org/10.1016/j.automatica.2010.07.007 +Yacov Tsur,On the dynamics of competing energy sources.,2011,47,Automatica,7,db/journals/automatica/automatica47.html#TsurZ11,https://doi.org/10.1016/j.automatica.2011.02.016 +Dario Piga,A bias-corrected estimator for nonlinear systems with output-error type model structures.,2014,50,Automatica,9,db/journals/automatica/automatica50.html#PigaT14,https://doi.org/10.1016/j.automatica.2014.07.021 +Alex S. Leong,Transmission scheduling for remote state estimation and control with an energy harvesting sensor.,2018,91,Automatica,,db/journals/automatica/automatica91.html#LeongDQ18,https://doi.org/10.1016/j.automatica.2018.01.027 +M. J. Grimble,LQG Controllers for State-Space Systems with Pure Transport Delays: Application to Hot Strip Mills.,1998,34,Automatica,10,db/journals/automatica/automatica34.html#GrimbleH98,https://doi.org/10.1016/S0005-1098(98)00067-3 +Lyudmila Mihaylova,Freeway traffic estimation within particle filtering framework.,2007,43,Automatica,2,db/journals/automatica/automatica43.html#MihaylovaBH07,https://doi.org/10.1016/j.automatica.2006.08.023 +Dan Dai,Output feedback design for saturated linear plants using deadzone loops.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#DaiHTZ09,https://doi.org/10.1016/j.automatica.2009.09.022 +Mats Sågfors,H∞ and LQG control of asynchronous sampled-data systems.,1997,33,Automatica,9,db/journals/automatica/automatica33.html#SagforsT97,https://doi.org/10.1016/S0005-1098(97)00084-8 +Huibert Kwakernaak,"Erratum to ""Rectification - List of Reviewers for Automatica 2001"": [Automatica 37 (2001) 2081-2085].",2002,38,Automatica,6,db/journals/automatica/automatica38.html#Kwakernaak02a,https://doi.org/10.1016/S0005-1098(02)00006-7 +Naira Hovakimyan,Adaptive output feedback control methodology applicable to non-minimum phase nonlinear systems.,2006,42,Automatica,4,db/journals/automatica/automatica42.html#HovakimyanYC06,https://doi.org/10.1016/j.automatica.2005.11.001 +Mario Sassano,Dynamic Lyapunov functions.,2013,49,Automatica,4,db/journals/automatica/automatica49.html#SassanoA13,https://doi.org/10.1016/j.automatica.2013.01.027 +Theodore J. Williams,Economics and the future of process control.,1965,3,Automatica,1,db/journals/automatica/automatica3.html#Williams65,https://doi.org/10.1016/0005-1098(65)90017-8 +V. K. Chichinadze,The and#936*-transform for solving linear and non-linear programming problems.,1969,5,Automatica,3,db/journals/automatica/automatica5.html#Chichinadze69,https://doi.org/10.1016/0005-1098(69)90076-4 +Stanislav Chebotarev,Interval observers for continuous-time LPV systems with L1/L2 performance.,2015,58,Automatica,,db/journals/automatica/automatica58.html#ChebotarevERZ15,https://doi.org/10.1016/j.automatica.2015.05.009 +Naeem Khan,Robust state estimation and its application to spacecraft control.,2012,48,Automatica,12,db/journals/automatica/automatica48.html#KhanKG12,https://doi.org/10.1016/j.automatica.2012.07.002 +Peter Wellstead,Dynamic modeling and control of engineering systems : J. Lowen Shearer and B. T. Kulakowski.,1992,28,Automatica,2,db/journals/automatica/automatica28.html#Wellstead92,https://doi.org/10.1016/0005-1098(92)90137-5 +Haijun Fang,Disturbance tolerance and rejection of linear systems with imprecise knowledge of actuator input output characteristics.,2006,42,Automatica,9,db/journals/automatica/automatica42.html#FangLS06,https://doi.org/10.1016/j.automatica.2006.04.008 +Kok Kiong Tan,Controller design of eddy current braking in an air bearing system.,2012,48,Automatica,11,db/journals/automatica/automatica48.html#TanHTY12,https://doi.org/10.1016/j.automatica.2012.05.014 +Luca Consolini,Leader-follower formation control of nonholonomic mobile robots with input constraints.,2008,44,Automatica,5,db/journals/automatica/automatica44.html#ConsoliniMPT08,https://doi.org/10.1016/j.automatica.2007.09.019 +Guiomar Martín-Herrán,A time-consistent open-loop Stackelberg equilibrium of shelf-space allocation.,2005,41,Automatica,6,db/journals/automatica/automatica41.html#Martin-HerranTZ05,https://doi.org/10.1016/j.automatica.2005.01.004 +Ben M. Chen,Robust and perfect tracking of discrete-time systems.,2002,38,Automatica,2,db/journals/automatica/automatica38.html#ChenLL02,https://doi.org/10.1016/S0005-1098(01)00198-4 +Margreet Kuijper,Why do stabilizing controllers stabilize?,1995,31,Automatica,4,db/journals/automatica/automatica31.html#Kuijper95,https://doi.org/10.1016/0005-1098(95)98493-P +Xingzhe Fan,A passivity approach to game-theoretic CDMA power control.,2006,42,Automatica,11,db/journals/automatica/automatica42.html#FanAAWB06,https://doi.org/10.1016/j.automatica.2006.05.022 +Ofelia Begovich,Adaptive head control of a hydraulic open channel model.,1989,25,Automatica,1,db/journals/automatica/automatica25.html#BegovichO89,https://doi.org/10.1016/0005-1098(89)90124-6 +K. Shinohara,Stability improvement of a current source inverter-induction motor drive system.,1987,23,Automatica,2,db/journals/automatica/automatica23.html#ShinoharaN87,https://doi.org/10.1016/0005-1098(87)90089-6 +Lihua Xie,Robust control of linear systems with generalized positive real uncertainty.,1997,33,Automatica,5,db/journals/automatica/automatica33.html#XieS97,https://doi.org/10.1016/S0005-1098(96)00247-6 +Christopher Edwards,Sliding mode observers for fault detection and isolation.,2000,36,Automatica,4,db/journals/automatica/automatica36.html#EdwardsSP00,https://doi.org/10.1016/S0005-1098(99)00177-6 +Xinmin Liu,Further results on structural assignment of linear systems via sensor selection.,2007,43,Automatica,9,db/journals/automatica/automatica43.html#LiuLC07,https://doi.org/10.1016/j.automatica.2007.02.017 +Mohamed F. Hassan,Near optimal decentralised control with a pre-specified degree of stability.,1979,15,Automatica,4,db/journals/automatica/automatica15.html#HassanST79,https://doi.org/10.1016/0005-1098(79)90024-4 +João Yoshiyuki Ishihara,Hinfinity filtering for rectangular discrete-time descriptor systems.,2009,45,Automatica,7,db/journals/automatica/automatica45.html#IshiharaTE09,https://doi.org/10.1016/j.automatica.2009.03.012 +D. Altshuler,Near optimal smoothing for singularly perturbed linear systems.,1978,14,Automatica,1,db/journals/automatica/automatica14.html#AltshulerH78,https://doi.org/10.1016/0005-1098(78)90078-X +W. Schäfer,Quality control of large limestone quarries and kilns.,1969,5,Automatica,2,db/journals/automatica/automatica5.html#Schafer69,https://doi.org/10.1016/0005-1098(69)90006-5 +Jan C. Willems,Linear systems: Thomas Kailath.,1982,18,Automatica,4,db/journals/automatica/automatica18.html#Willems82,https://doi.org/10.1016/0005-1098(82)90082-6 +Alexey S. Matveev,A globally converging algorithm for reactive robot navigation among moving and deforming obstacles.,2015,54,Automatica,,db/journals/automatica/automatica54.html#MatveevHS15,https://doi.org/10.1016/j.automatica.2015.02.012 +Jürgen Ackermann,Robust gamma-stability analysis in a plant parameter space.,1991,27,Automatica,1,db/journals/automatica/automatica27.html#AckermannKM91,https://doi.org/10.1016/0005-1098(91)90007-O +Robert J. Elliott,Exact adaptive filters for Markov chains observed in Gaussian noise.,1994,30,Automatica,9,db/journals/automatica/automatica30.html#Elliott94,https://doi.org/10.1016/0005-1098(94)90004-3 +Johan Schoukens,Modeling of continuous time systems using a discrete time representation.,1990,26,Automatica,3,db/journals/automatica/automatica26.html#Schoukens90,https://doi.org/10.1016/0005-1098(90)90029-H +Huai-Ning Wu,Reliable mixed I fuzzy static output feedback control for nonlinear systems with sensor faults.,2005,41,Automatica,11,db/journals/automatica/automatica41.html#WuZ05,https://doi.org/10.1016/j.automatica.2005.05.006 +Tao Shen,Stability analysis for a class of digital filters with single saturation nonlinearity.,2010,46,Automatica,12,db/journals/automatica/automatica46.html#ShenWY10,https://doi.org/10.1016/j.automatica.2010.09.008 +Alessandro Pisano,On the ISS properties of a class of parabolic DPS' with discontinuous control using sampled-in-space sensing and actuation.,2017,81,Automatica,,db/journals/automatica/automatica81.html#PisanoO17,https://doi.org/10.1016/j.automatica.2017.04.025 +Ebru Aydin Gol,Temporal logic model predictive control.,2015,56,Automatica,,db/journals/automatica/automatica56.html#GolLB15,https://doi.org/10.1016/j.automatica.2015.03.029 +Sophie Legras,Temporal flexibility of permit trading when pollutants are correlated.,2011,47,Automatica,5,db/journals/automatica/automatica47.html#LegrasZ11,https://doi.org/10.1016/j.automatica.2011.01.057 +W. Bamberger,Adaptive on-line steady-state optimization of slow dynamic processes.,1978,14,Automatica,3,db/journals/automatica/automatica14.html#BambergerI78,https://doi.org/10.1016/0005-1098(78)90087-0 +Florian David Brunner,Robust self-triggered MPC for constrained linear systems: A tube-based approach.,2016,72,Automatica,,db/journals/automatica/automatica72.html#BrunnerHA16,https://doi.org/10.1016/j.automatica.2016.05.004 +Cristian R. Rojas,On the equivalence of least costly and traditional experiment design for control.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#RojasAWG08,https://doi.org/10.1016/j.automatica.2008.03.023 +Jürgen Ackermann,Robustness against sensor failures.,1984,20,Automatica,2,db/journals/automatica/automatica20.html#Ackermann84,https://doi.org/10.1016/0005-1098(84)90027-X +Yinyan Zhang,Adaptive near-optimal consensus of high-order nonlinear multi-agent systems with heterogeneity.,2017,85,Automatica,,db/journals/automatica/automatica85.html#Zhang017,https://doi.org/10.1016/j.automatica.2017.08.010 +Jongrae Kim,Nonlinear robust performance analysis using complex-step gradient approximation.,2006,42,Automatica,1,db/journals/automatica/automatica42.html#KimBP06,https://doi.org/10.1016/j.automatica.2005.09.008 +Andrea Simonetto,Constrained distributed algebraic connectivity maximization in robotic networks.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#SimonettoKB13,https://doi.org/10.1016/j.automatica.2013.02.031 +Feng Lin,Analysis of temporal performance of supervised discrete event systems.,1994,30,Automatica,3,db/journals/automatica/automatica30.html#Lin94,https://doi.org/10.1016/0005-1098(94)90132-5 +J. Bontsema,Robust control of flexible structures A case study.,1988,24,Automatica,2,db/journals/automatica/automatica24.html#BontsemaCS88,https://doi.org/10.1016/0005-1098(88)90026-X +Chang-Jun Seo,Robust and reliable H∞ control for linear systems with parameter uncertainty and actuator failure.,1996,32,Automatica,3,db/journals/automatica/automatica32.html#SeoK96,https://doi.org/10.1016/0005-1098(95)00149-2 +José Luis Mancilla-Aguilar,Some results on the stabilization of switched systems.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#Mancilla-AguilarG13,https://doi.org/10.1016/j.automatica.2012.11.002 +Athanasios Sideris,Single-input-single-output H∞-control with time domain constraints.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#SiderisR93,https://doi.org/10.1016/0005-1098(93)90100-8 +Zaiyue Yang,Simultaneous estimation of the input and output frequencies of nonlinear systems.,2008,44,Automatica,7,db/journals/automatica/automatica44.html#YangC08,https://doi.org/10.1016/j.automatica.2007.10.032 +Clément Aubry,Loop detection of mobile robots using interval analysis.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#AubryDJ13,https://doi.org/10.1016/j.automatica.2012.11.009 +Jitendra K. Tugnait,A detection-estimation scheme for state estimation in switching environments.,1979,15,Automatica,4,db/journals/automatica/automatica15.html#TugnaitH79,https://doi.org/10.1016/0005-1098(79)90023-2 +Jun Shen 0002,Input-output gain analysis for linear systems on cones.,2017,77,Automatica,,db/journals/automatica/automatica77.html#ShenL17,https://doi.org/10.1016/j.automatica.2016.11.010 +Said Oucheriah,Robust exponential convergence of a class of linear delayed systems with bounded controllers and disturbances.,2006,42,Automatica,11,db/journals/automatica/automatica42.html#Oucheriah06,https://doi.org/10.1016/j.automatica.2006.05.023 +Basílio E. A. Milani,Piecewise-affine Lyapunov functions for discrete-time linear systems with saturating controls.,2002,38,Automatica,12,db/journals/automatica/automatica38.html#Milani02,https://doi.org/10.1016/S0005-1098(02)00193-0 +Wann-Jiun Ma,"Reply to ""Comments on 'Input-to-state stability of hybrid systems with receding horizon control in the presence of packet dropouts' [Automatica 48 (2012) 1920-1923]"".",2014,50,Automatica,9,db/journals/automatica/automatica50.html#MaG14,https://doi.org/10.1016/j.automatica.2014.07.007 +Carlos E. Puente,Error identification and decomposition in large stochastic rainfall-runoff models.,1987,23,Automatica,5,db/journals/automatica/automatica23.html#PuenteB87,https://doi.org/10.1016/0005-1098(87)90053-7 +Zi-Jiang Yang,Identification of continuous-time systems with multiple unknown time delays by global nonlinear least-squares and instrumental variable methods.,2007,43,Automatica,7,db/journals/automatica/automatica43.html#YangIKW07,https://doi.org/10.1016/j.automatica.2006.12.026 +Jacob Engwerda,A result on output feedback linear quadratic control.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#EngwerdaW08,https://doi.org/10.1016/j.automatica.2007.04.025 +Teturo Itami,Nonlinear optimal control as quantum mechanical eigenvalue problems.,2005,41,Automatica,9,db/journals/automatica/automatica41.html#Itami05,https://doi.org/10.1016/j.automatica.2005.04.007 +Daniel U. Campos-Delgado,A parametric optimization approach to H INFINITY and H2 strong stabilization.,2003,39,Automatica,7,db/journals/automatica/automatica39.html#Campos-DelgadoZ03,https://doi.org/10.1016/S0005-1098(03)00065-7 +Carine Jauberthie,A sufficient condition to test identifiability of nonlinear delayed-differential models with constant delays and multi-inputs.,2010,46,Automatica,7,db/journals/automatica/automatica46.html#JauberthieT10,https://doi.org/10.1016/j.automatica.2010.04.003 +Noboru Sebe,Unification of independent and sequential procedures for decentralized controller design.,2007,43,Automatica,4,db/journals/automatica/automatica43.html#Sebe07,https://doi.org/10.1016/j.automatica.2006.10.021 +Björn Rüffer,Connection between cooperative positive systems and integral input-to-state stability of large-scale systems.,2010,46,Automatica,6,db/journals/automatica/automatica46.html#RufferKW10,https://doi.org/10.1016/j.automatica.2010.03.012 +Yong Ren,Stabilization of stochastic differential equations driven by G-Brownian motion with feedback control based on discrete-time state observation.,2018,95,Automatica,,db/journals/automatica/automatica95.html#RenYS18,https://doi.org/10.1016/j.automatica.2018.05.039 +Pietro De Lellis,Convergence and synchronization in heterogeneous networks of smooth and piecewise smooth systems.,2015,56,Automatica,,db/journals/automatica/automatica56.html#LellisBL15,https://doi.org/10.1016/j.automatica.2015.03.003 +Weng Khuen Ho,Relay auto-tuning of PID controllers using iterative feedback tuning.,2003,39,Automatica,1,db/journals/automatica/automatica39.html#HoHHHD03,https://doi.org/10.1016/S0005-1098(02)00201-7 +Amit P. Pandey,A new discrete-time stabilizability condition for Linear Parameter-Varying systems.,2017,79,Automatica,,db/journals/automatica/automatica79.html#PandeyO17,https://doi.org/10.1016/j.automatica.2017.02.006 +Ziyang Meng,Robust cooperative tracking for multiple non-identical second-order nonlinear systems.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#MengL013,https://doi.org/10.1016/j.automatica.2013.04.040 +Michael Valásek,Pole placement for linear time-varying non-lexicographically fixed MIMO systems.,1999,35,Automatica,1,db/journals/automatica/automatica35.html#ValasekO99,https://doi.org/10.1016/S0005-1098(98)00134-4 +Lorenzo Marconi,Modelling and control of a flying robot interacting with the environment.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#MarconiNG11,https://doi.org/10.1016/j.automatica.2011.09.020 +Qiang Shen 0002,Inertia-free fault-tolerant spacecraft attitude tracking using control allocation.,2015,62,Automatica,,db/journals/automatica/automatica62.html#ShenWZP15,https://doi.org/10.1016/j.automatica.2015.09.027 +Jordan M. Berg,Vibrational control without averaging.,2015,58,Automatica,,db/journals/automatica/automatica58.html#BergW15,https://doi.org/10.1016/j.automatica.2015.04.028 +Jian-Xin Xu 0001,Analysis of Iterative Learning Control for a Class of Nonlinear Discrete-time Systems.,1997,33,Automatica,10,db/journals/automatica/automatica33.html#Xu97,https://doi.org/10.1016/S0005-1098(97)00107-6 +Jung Hoon Kim,L∞-induced norm analysis of sampled-data systems via piecewise constant and linear approximations.,2015,51,Automatica,,db/journals/automatica/automatica51.html#KimH15,https://doi.org/10.1016/j.automatica.2014.10.102 +Christopher J. Harris 0001,Neurocontrol : H. Tolle and E. Ersu.,1994,30,Automatica,11,db/journals/automatica/automatica30.html#Harris94,https://doi.org/10.1016/0005-1098(94)90089-2 +Takehiro Mori,Preservation of Lyapunov functions under bilinear mapping.,2006,42,Automatica,6,db/journals/automatica/automatica42.html#MoriNMK06,https://doi.org/10.1016/j.automatica.2006.02.005 +Kenji Kashima,Selective pattern formation control: Spatial spectrum consensus and Turing instability approach.,2015,56,Automatica,,db/journals/automatica/automatica56.html#KashimaOS15,https://doi.org/10.1016/j.automatica.2015.03.019 +Kostas J. Kyriakopoulos,An integrated collision prediction and avoidance scheme for mobile robots in non-stationary environments.,1993,29,Automatica,2,db/journals/automatica/automatica29.html#KyriakopoulosS93,https://doi.org/10.1016/0005-1098(93)90125-D +Mohamed I. Younis,Linear estimator stabilization of nonlinear sampled-data systems.,1977,13,Automatica,5,db/journals/automatica/automatica13.html#YounisVM77,https://doi.org/10.1016/0005-1098(77)90072-3 +Marc W. McConley,A separate bias U-D factorization filter.,1996,32,Automatica,3,db/journals/automatica/automatica32.html#McConley96,https://doi.org/10.1016/0005-1098(95)00144-1 +Elijah Polak,Algorithms for a class of computer-aided design problems: A review.,1979,15,Automatica,5,db/journals/automatica/automatica15.html#Polak79,https://doi.org/10.1016/0005-1098(79)90003-7 +Yunpeng Wang,Containment control of multi-agent systems in a noisy communication environment.,2014,50,Automatica,7,db/journals/automatica/automatica50.html#WangCHTW14,https://doi.org/10.1016/j.automatica.2014.05.018 +Luc Dugard,The role of the interactor matrix in multivariable stochastic adaptive control.,1984,20,Automatica,5,db/journals/automatica/automatica20.html#DugardGX84,https://doi.org/10.1016/0005-1098(84)90019-0 +Paulo Andre Nobre Rosa,Stability overlay for adaptive control laws.,2011,47,Automatica,5,db/journals/automatica/automatica47.html#RosaSSA11,https://doi.org/10.1016/j.automatica.2011.01.068 +Tong Duy Son,Iterative learning control in optimal tracking problems with specified data points.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#SonAM13,https://doi.org/10.1016/j.automatica.2013.02.008 +Elijah Polak,Nondifferentiable optimization algorithm for designing control systems having singular value inequalities.,1982,18,Automatica,3,db/journals/automatica/automatica18.html#PolakW82,https://doi.org/10.1016/0005-1098(82)90087-5 +Jian-Xin Xu 0001,Robust optimal design and convergence properties analysis of iterative learning control approaches.,2002,38,Automatica,11,db/journals/automatica/automatica38.html#XuT02a,https://doi.org/10.1016/S0005-1098(02)00143-7 +Thor I. Fossen,Passive nonlinear observer design for ships using Lyapunov methods: full-scale experiments with a supply vessel.,1999,35,Automatica,1,db/journals/automatica/automatica35.html#FossenS99,https://doi.org/10.1016/S0005-1098(98)00121-6 +Henrik Anfinsen,Disturbance rejection in general heterodirectional 1-D linear hyperbolic systems using collocated sensing and control.,2017,76,Automatica,,db/journals/automatica/automatica76.html#AnfinsenA17,https://doi.org/10.1016/j.automatica.2016.10.027 +Robert Shorten,Analysis and design of AIMD congestion control algorithms in communication networks.,2005,41,Automatica,4,db/journals/automatica/automatica41.html#ShortenLFK05,https://doi.org/10.1016/j.automatica.2004.09.017 +Gianluigi Pillonetto,Consistent identification of Wiener systems: A machine learning viewpoint.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#Pillonetto13,https://doi.org/10.1016/j.automatica.2013.06.005 +Tao Shen,An ultimate state bound for a class of linear systems with delay.,2018,87,Automatica,,db/journals/automatica/automatica87.html#ShenP18,https://doi.org/10.1016/j.automatica.2017.09.026 +H. Hanselmann,Implementation of digital controllers - A survey.,1987,23,Automatica,1,db/journals/automatica/automatica23.html#Hanselmann87,https://doi.org/10.1016/0005-1098(87)90115-4 +Claes G. Källström,Adaptive autopilots for tankers.,1979,15,Automatica,3,db/journals/automatica/automatica15.html#KallstromATES79,https://doi.org/10.1016/0005-1098(79)90042-6 +Shuo Wang,Free-endpoint optimal control of inhomogeneous bilinear ensemble systems.,2018,95,Automatica,,db/journals/automatica/automatica95.html#WangL18,https://doi.org/10.1016/j.automatica.2018.05.009 +Ettore Fornasini,On the periodic trajectories of Boolean control networks.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#FornasiniV13,https://doi.org/10.1016/j.automatica.2013.02.027 +Ari Naim,On-line estimation of probabilities for distributed bayesian detection.,1994,30,Automatica,4,db/journals/automatica/automatica30.html#NaimK94,https://doi.org/10.1016/0005-1098(94)90152-X +Nicolas Marchand,Discontinuous exponential stabilization of chained form systems.,2003,39,Automatica,2,db/journals/automatica/automatica39.html#MarchandA03,https://doi.org/10.1016/S0005-1098(02)00229-7 +Chaouki T. Abdallah,New sufficient conditions for strong simultaneous stabilization.,1997,33,Automatica,6,db/journals/automatica/automatica33.html#AbdallahDB97,https://doi.org/10.1016/S0005-1098(97)00021-6 +Aniruddha Datta,On the transient behaviour in discrete-time model reference adaptive control: Analysis and possible improvement.,1994,30,Automatica,3,db/journals/automatica/automatica30.html#Datta94,https://doi.org/10.1016/0005-1098(94)90131-7 +Jinwoo Hong,Simplified time-optimal path planning of X-Y gantry systems along circular paths.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#HongKH08,https://doi.org/10.1016/j.automatica.2007.04.008 +Ruth F. Curtain,Riccati equations for second order spatially invariant partial differential systems.,2012,48,Automatica,1,db/journals/automatica/automatica48.html#Curtain12,https://doi.org/10.1016/j.automatica.2011.09.035 +Simona Dobre,Limits of variance-based sensitivity analysis for non-identifiability testing in high dimensional dynamic models.,2012,48,Automatica,11,db/journals/automatica/automatica48.html#DobreBPBR12,https://doi.org/10.1016/j.automatica.2012.05.004 +Rune Schlanbusch,On the stability and stabilization of quaternion equilibria of rigid bodies.,2012,48,Automatica,12,db/journals/automatica/automatica48.html#SchlanbuschLN12,https://doi.org/10.1016/j.automatica.2012.08.012 +Amir G. Aghdam,Structural modification of systems using discretization and generalized sampled-data hold functions.,2006,42,Automatica,11,db/journals/automatica/automatica42.html#AghdamDB06,https://doi.org/10.1016/j.automatica.2006.06.005 +Andrea Garulli,Minimum switching control for systems of coupled double integrators.,2015,60,Automatica,,db/journals/automatica/automatica60.html#GarulliGL15,https://doi.org/10.1016/j.automatica.2015.07.004 +Susan E. Hodge,Closed-loop discrete-time control of a hinged wavemaker.,1988,24,Automatica,3,db/journals/automatica/automatica24.html#HodgeC88,https://doi.org/10.1016/0005-1098(88)90080-5 +Nazli E. Kahveci,Adaptive steering control for uncertain ship dynamics and stability analysis.,2013,49,Automatica,3,db/journals/automatica/automatica49.html#KahveciI13,https://doi.org/10.1016/j.automatica.2012.11.026 +Aarne Halme,Adaptive control with nonlinear filtering.,1985,21,Automatica,4,db/journals/automatica/automatica21.html#HalmeSS85,https://doi.org/10.1016/0005-1098(85)90081-0 +Juan C. Cockburn,Linear Fractional Representations of Uncertain Systems.,1997,33,Automatica,7,db/journals/automatica/automatica33.html#CockburnM97,https://doi.org/10.1016/S0005-1098(97)00049-6 +S. Sen,A quasi-newton differential dynamic programming algorithm for discrete-time optimal control.,1987,23,Automatica,6,db/journals/automatica/automatica23.html#SenY87,https://doi.org/10.1016/0005-1098(87)90031-8 +Lorenzo Fagiano,A combined Moving Horizon and Direct Virtual Sensor approach for constrained nonlinear estimation.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#FagianoN13,https://doi.org/10.1016/j.automatica.2012.09.009 +N. S. Rajbman,Minimax identification.,1978,14,Automatica,2,db/journals/automatica/automatica14.html#Rajbman78,https://doi.org/10.1016/0005-1098(78)90017-1 +Daniel Eriksson,A method for quantitative fault diagnosability analysis of stochastic linear descriptor models.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#ErikssonFK13,https://doi.org/10.1016/j.automatica.2013.02.045 +Sangho Ko,"Authors' reply to ""Comments on ""State estimation for linear systems with state equality constraints"" [Automatica 43 (2007) 1363-1368]"".",2010,46,Automatica,11,db/journals/automatica/automatica46.html#KoB10,https://doi.org/10.1016/j.automatica.2010.07.012 +Sohyung Cho,Sliding mode dynamics in continuous feedback control for distributed discrete-event scheduling.,2002,38,Automatica,9,db/journals/automatica/automatica38.html#ChoP02,https://doi.org/10.1016/S0005-1098(02)00093-6 +Ramaprasad Bhar,The volatility of the instantaneous spot interest rate implied by arbitrage pricing - A dynamic Bayesian approach.,2006,42,Automatica,8,db/journals/automatica/automatica42.html#BharCHR06,https://doi.org/10.1016/j.automatica.2005.12.027 +Payman Sadegh,Constrained optimization via stochastic approximation with a simultaneous perturbation gradient approximation.,1997,33,Automatica,5,db/journals/automatica/automatica33.html#Sadegh97,https://doi.org/10.1016/S0005-1098(96)00230-0 +William L. Garrard,Design of nonlinear automatic flight control systems.,1977,13,Automatica,5,db/journals/automatica/automatica13.html#GarrardJ77,https://doi.org/10.1016/0005-1098(77)90070-X +Lamia Ben Jemaa,Performance limitations in the robust servomechanism problem for discrete time periodic systems.,2003,39,Automatica,6,db/journals/automatica/automatica39.html#JemaaD03,https://doi.org/10.1016/S0005-1098(03)00063-3 +Matthew R. Graham,Linear matrix inequality tests for frequency domain inequalities with affine multipliers.,2010,46,Automatica,5,db/journals/automatica/automatica46.html#GrahamO10,https://doi.org/10.1016/j.automatica.2010.02.009 +Sunan Huang 0001,Further result on a dynamic recurrent neural-network-based adaptive observer for a class of nonlinear systems.,2005,41,Automatica,12,db/journals/automatica/automatica41.html#HuangTL05a,https://doi.org/10.1016/j.automatica.2005.07.003 +Wiktor Bolek,Derivation of operational matrices of differentiation for orthogonal polynomials.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#Bolek93,https://doi.org/10.1016/0005-1098(93)90030-W +Yi Guo,Nonlinear decentralized control of large-scale power systems.,2000,36,Automatica,9,db/journals/automatica/automatica36.html#GuoHW00,https://doi.org/10.1016/S0005-1098(00)00038-8 +Wilfried Schumacher,Human control strategies in concurrent binary tasks under overload conditions.,1983,19,Automatica,6,db/journals/automatica/automatica19.html#SchumacherG83,https://doi.org/10.1016/0005-1098(83)90038-9 +Mohammad Mehdi Asadi,Distributed control of a network of single integrators with limited angular fields of view.,2016,63,Automatica,,db/journals/automatica/automatica63.html#AsadiAA16,https://doi.org/10.1016/j.automatica.2015.09.035 +Les S. Jennings,A computational algorithm for functional inequality constrained optimization problems.,1990,26,Automatica,2,db/journals/automatica/automatica26.html#JenningsT90,https://doi.org/10.1016/0005-1098(90)90131-Z +J. A. Sefton,On the gap metric and coprime factor perturbations.,1993,29,Automatica,3,db/journals/automatica/automatica29.html#SeftonO93,https://doi.org/10.1016/0005-1098(93)90066-3 +Espen Oland,Subsumption architecture applied to flight control using composite rotations.,2016,69,Automatica,,db/journals/automatica/automatica69.html#OlandAK16,https://doi.org/10.1016/j.automatica.2016.02.034 +Sergio Galeani,Design of Marx generators as a structured eigenvalue assignment.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#GaleaniHJZ14,https://doi.org/10.1016/j.automatica.2014.09.003 +Dan Wang,Adaptive neural network control for a class of uncertain nonlinear systems in pure-feedback form.,2002,38,Automatica,8,db/journals/automatica/automatica38.html#WangH02,https://doi.org/10.1016/S0005-1098(02)00034-1 +Chaohong Cai,Input-output-to-state stability for discrete-time systems.,2008,44,Automatica,2,db/journals/automatica/automatica44.html#CaiT08,https://doi.org/10.1016/j.automatica.2007.05.022 +Fen Wu,On convexified robust control synthesis.,2004,40,Automatica,6,db/journals/automatica/automatica40.html#WuL04,https://doi.org/10.1016/j.automatica.2004.01.010 +Y. S. Hung,Robust H INFINITY filtering with error variance constraints for discrete time-varying systems with uncertainty.,2003,39,Automatica,7,db/journals/automatica/automatica39.html#HungY03,https://doi.org/10.1016/S0005-1098(03)00117-1 +Murat Arcak,Input-to-state stability for a class of Lurie systems.,2002,38,Automatica,11,db/journals/automatica/automatica38.html#ArcakT02,https://doi.org/10.1016/S0005-1098(02)00100-0 +Ching-Wei Koung,Identification for robust multivariable control: The design of experiments.,1994,30,Automatica,10,db/journals/automatica/automatica30.html#KoungM94,https://doi.org/10.1016/0005-1098(94)90094-9 +David W. Clarke,Properties of generalized predictive control.,1989,25,Automatica,6,db/journals/automatica/automatica25.html#ClarkeM89,https://doi.org/10.1016/0005-1098(89)90053-8 +Alexey V. Pavlov,Global nonlinear output regulation: Convergence-based controller design.,2007,43,Automatica,3,db/journals/automatica/automatica43.html#PavlovWN07,https://doi.org/10.1016/j.automatica.2006.09.007 +John L. Barnes,Information theoretic aspects of feedback control systems.,1968,4,Automatica,4,db/journals/automatica/automatica4.html#Barnes68,https://doi.org/10.1016/0005-1098(68)90012-5 +Z. Li,Minimum-variance control of linear time-varying systems.,1997,33,Automatica,8,db/journals/automatica/automatica33.html#LiE97,https://doi.org/10.1016/S0005-1098(97)00066-6 +Yong Fang,Iterative Learning Control of Linear Discrete-Time Multivariable Systems.,1998,34,Automatica,11,db/journals/automatica/automatica34.html#FangC98,https://doi.org/10.1016/S0005-1098(98)00091-0 +Minghui Zhu,Distributed robust adaptive equilibrium computation for generalized convex games.,2016,63,Automatica,,db/journals/automatica/automatica63.html#ZhuF16,https://doi.org/10.1016/j.automatica.2015.10.012 +Chunyu Yang 0001,Stabilization bound of singularly perturbed systems subject to actuator saturation.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#YangSM13,https://doi.org/10.1016/j.automatica.2012.11.004 +Tor Arne Johansen,Explicit sub-optimal linear quadratic regulation with state and input constraints.,2002,38,Automatica,7,db/journals/automatica/automatica38.html#JohansenPS02,https://doi.org/10.1016/S0005-1098(02)00004-3 +Kazuo Yamanaka,Effects of mismatched smith controller on stability in systems with time-delay.,1987,23,Automatica,6,db/journals/automatica/automatica23.html#YamanakaS87,https://doi.org/10.1016/0005-1098(87)90040-9 +J. R. Parrish,Inferential control applications.,1985,21,Automatica,5,db/journals/automatica/automatica21.html#ParrishB85,https://doi.org/10.1016/0005-1098(85)90002-0 +Yasuhiko Mutoh,Interactor structure estimation for adaptive control of discrete-time multivariable nondecouplable systems.,1993,29,Automatica,3,db/journals/automatica/automatica29.html#MutohO93,https://doi.org/10.1016/0005-1098(93)90060-7 +Kyungsu Kim,A frequency response identification method for discrete-time processes with cyclic steady state conditions.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#KimCLLS14,https://doi.org/10.1016/j.automatica.2014.10.052 +Jung-Hoon Lee,A new improved continuous variable structure controller for accurately prescribed tracking control of BLDD servo motors.,2004,40,Automatica,12,db/journals/automatica/automatica40.html#LeeY04,https://doi.org/10.1016/j.automatica.2004.06.010 +Changxin Liu,Robust self-triggered min-max model predictive control for discrete-time nonlinear systems.,2018,89,Automatica,,db/journals/automatica/automatica89.html#LiuLGX18,https://doi.org/10.1016/j.automatica.2017.12.034 +Marco C. Campi,The problem of pole-zero cancellation in transfer function identification and application to adaptive stabilization.,1996,32,Automatica,6,db/journals/automatica/automatica32.html#Campi96,https://doi.org/10.1016/0005-1098(96)00010-6 +Peng Yang,Decentralized estimation and control of graph connectivity for mobile sensor networks.,2010,46,Automatica,2,db/journals/automatica/automatica46.html#YangFGLSS10,https://doi.org/10.1016/j.automatica.2009.11.012 +Jaromír Fessl,An application of multivariable self-tuning regulators to drum boiler control.,1986,22,Automatica,5,db/journals/automatica/automatica22.html#Fessl86,https://doi.org/10.1016/0005-1098(86)90067-1 +Wenchao Meng,Adaptive neural control of high-order uncertain nonaffine systems: A transformation to affine systems approach.,2014,50,Automatica,5,db/journals/automatica/automatica50.html#MengYJS14,https://doi.org/10.1016/j.automatica.2014.03.013 +Hidenori Shingin,Disturbance rejection with information constraints: Performance limitations of a scalar system for bounded and Gaussian disturbances.,2012,48,Automatica,6,db/journals/automatica/automatica48.html#ShinginO12,https://doi.org/10.1016/j.automatica.2012.02.040 +Dong Eui Chang,A simple proof of the Pontryagin maximum principle on manifolds.,2011,47,Automatica,3,db/journals/automatica/automatica47.html#Chang11,https://doi.org/10.1016/j.automatica.2011.01.037 +Milena Anguelova,On analytic and algebraic observability of nonlinear delay systems.,2010,46,Automatica,4,db/journals/automatica/automatica46.html#AnguelovaW10,https://doi.org/10.1016/j.automatica.2010.01.031 +Oliver M. O'Reilly,On the formulation of cost functions for torque-optimized control of rigid bodies.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#OReilly14,https://doi.org/10.1016/j.automatica.2014.08.005 +Magdi S. Mahmoud,Robust H control of linear neutral systems.,2000,36,Automatica,5,db/journals/automatica/automatica36.html#Mahmoud00a,https://doi.org/10.1016/S0005-1098(99)00159-4 +Tsuneo Yoshikawa,Separation of estimation and control for decentralized stochastic control systems.,1978,14,Automatica,6,db/journals/automatica/automatica14.html#YoshikawaK78,https://doi.org/10.1016/0005-1098(78)90052-3 +Thomas J. de Hoog,Minimal partial realization from generalized orthonormal basis function expansions.,2002,38,Automatica,4,db/journals/automatica/automatica38.html#HoogSHHB02,https://doi.org/10.1016/S0005-1098(01)00247-3 +Gilberto Pin,Robust finite-time estimation of biased sinusoidal signals: A volterra operators approach.,2017,77,Automatica,,db/journals/automatica/automatica77.html#PinCP17,https://doi.org/10.1016/j.automatica.2016.10.031 +Liang Liu,Output-feedback stabilization for stochastic high-order nonlinear systems with time-varying delay.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#LiuX11,https://doi.org/10.1016/j.automatica.2011.09.014 +Karine Beauchard,Stabilization for an ensemble of half-spin systems.,2012,48,Automatica,1,db/journals/automatica/automatica48.html#BeauchardSR12,https://doi.org/10.1016/j.automatica.2011.09.050 +G. I. Voss,Regarding self-tuning controllers for nonminimum phase plants.,1987,23,Automatica,3,db/journals/automatica/automatica23.html#VossCK87,https://doi.org/10.1016/0005-1098(87)90015-X +Tong Zhou,Closed-loop model set validation under a stochastic framework.,2002,38,Automatica,9,db/journals/automatica/automatica38.html#ZhouLS02,https://doi.org/10.1016/S0005-1098(02)00049-3 +V. S. Pugachev,Conditionally optimal estimation in stochastic differential systems.,1982,18,Automatica,6,db/journals/automatica/automatica18.html#Pugachev82,https://doi.org/10.1016/0005-1098(82)90057-7 +Xi-Cheng Lou,Optimally robust redundancy relations for failure detection in uncertain systems.,1986,22,Automatica,3,db/journals/automatica/automatica22.html#LouWV86,https://doi.org/10.1016/0005-1098(86)90031-2 +Ingela Lind,Regressor and structure selection in NARX models using a structured ANOVA approach.,2008,44,Automatica,2,db/journals/automatica/automatica44.html#LindL08,https://doi.org/10.1016/j.automatica.2007.06.010 +Chyi Hwang,A numerical algorithm for stability testing of fractional delay systems.,2006,42,Automatica,5,db/journals/automatica/automatica42.html#HwangC06,https://doi.org/10.1016/j.automatica.2006.01.008 +Daoyi Dong,Notes on sliding mode control of two-level quantum systems.,2012,48,Automatica,12,db/journals/automatica/automatica48.html#DongP12a,https://doi.org/10.1016/j.automatica.2012.08.020 +W. M. Gaines,Analog computers for the dynamic evaluation of on-line digital control computer programs.,1965,2,Automatica,3,db/journals/automatica/automatica2.html#GainesGL65,https://doi.org/10.1016/0005-1098(65)90009-9 +X. C. Du,Fast algorithm of chandrasekhar type for ARMA model identification.,1992,28,Automatica,5,db/journals/automatica/automatica28.html#DuBL92,https://doi.org/10.1016/0005-1098(92)90145-6 +Yawvi A. Fiagbedzi,A state observer for systems described by functional differential equations.,1990,26,Automatica,2,db/journals/automatica/automatica26.html#FiagbedziP90,https://doi.org/10.1016/0005-1098(90)90126-3 +Basil Kouvaritakis,Who needs QP for linear MPC anyway?,2002,38,Automatica,5,db/journals/automatica/automatica38.html#KouvaritakisCR02,https://doi.org/10.1016/S0005-1098(01)00263-1 +Danwei Wang,Convergence and Robustness of Discrete Time Nonlinear Systems with Iterative Learning Control.,1998,34,Automatica,11,db/journals/automatica/automatica34.html#Wang98,https://doi.org/10.1016/S0005-1098(98)00098-3 +Seiichi Nakamori,A new prediction algorithm using covariance information in linear continuous systems.,1991,27,Automatica,6,db/journals/automatica/automatica27.html#Nakamori91,https://doi.org/10.1016/0005-1098(91)90143-P +Vimal Singh,Elimination of overflow oscillations in direct form digital filters using saturation arithmetic.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#Singh08a,https://doi.org/10.1016/j.automatica.2008.08.002 +Suiyang Khoo,"Comments on ""Adaptive multiple-surface sliding control for non-autonomous systems with mismatched uncertainties"".",2008,44,Automatica,11,db/journals/automatica/automatica44.html#KhooMZ08,https://doi.org/10.1016/j.automatica.2008.07.002 +Chok-You Chan,Simplified parallel-damped passivity-based controllers for dc-dc power converters.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#Chan08,https://doi.org/10.1016/j.automatica.2008.05.005 +Ignacio A. Latorre,On the effect of additional input channels on the achievable performance of discrete-time control systems.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#LatorreSS14,https://doi.org/10.1016/j.automatica.2013.11.033 +María M. Seron,Multisensor switching control strategy with fault tolerance guarantees.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#SeronZDM08,https://doi.org/10.1016/j.automatica.2007.05.024 +Timothy H. Hughes,A theory of passive linear systems with no assumptions.,2017,86,Automatica,,db/journals/automatica/automatica86.html#Hughes17,https://doi.org/10.1016/j.automatica.2017.08.017 +T. M. Spencer,Atmospheric perturbation and control of a shuttle/tethered satellite.,1980,16,Automatica,6,db/journals/automatica/automatica16.html#Spencer80,https://doi.org/10.1016/0005-1098(80)90005-9 +Weisheng Chen,Finite-time stability theorem of stochastic nonlinear systems.,2010,46,Automatica,12,db/journals/automatica/automatica46.html#ChenJ10,https://doi.org/10.1016/j.automatica.2010.08.009 +Sing Kiong Nguang,Nonlinear H filtering of sampled-data systems.,2000,36,Automatica,2,db/journals/automatica/automatica36.html#NguangS00,https://doi.org/10.1016/S0005-1098(99)00141-7 +Arie Levant,Homogeneity approach to high-order sliding mode design.,2005,41,Automatica,5,db/journals/automatica/automatica41.html#Levant05,https://doi.org/10.1016/j.automatica.2004.11.029 +Gideon Langholz,Lower bounds on the quadratic cost of optimal regulators.,1978,14,Automatica,2,db/journals/automatica/automatica14.html#LangholzH78,https://doi.org/10.1016/0005-1098(78)90024-9 +Lanlan Su,Robust stability of uncertain linear systems with input and output quantization and packet loss.,2018,87,Automatica,,db/journals/automatica/automatica87.html#SuC18,https://doi.org/10.1016/j.automatica.2017.10.014 +Danyang Liu,Optimal and minimum-energy optimal tracking of discrete linear time-varying systems.,1995,31,Automatica,10,db/journals/automatica/automatica31.html#LiuL95,https://doi.org/10.1016/0005-1098(95)00064-4 +Zhao-Jing Wu,Adaptive backstepping controller design using stochastic small-gain theorem.,2007,43,Automatica,4,db/journals/automatica/automatica43.html#WuXZ07,https://doi.org/10.1016/j.automatica.2006.10.020 +Erik I. Verriest,Partial state reachability of multiple linear systems in series.,2017,85,Automatica,,db/journals/automatica/automatica85.html#VerriestH17,https://doi.org/10.1016/j.automatica.2017.07.030 +Naim A. Kheir,Feedback control systems : John Van de Vegte.,1986,22,Automatica,6,db/journals/automatica/automatica22.html#Kheir86,https://doi.org/10.1016/0005-1098(86)90021-X +Ilya A. Shkolnikov,Tracking in a class of nonminimum-phase systems with nonlinear internal dynamics via sliding mode control using method of system center.,2002,38,Automatica,5,db/journals/automatica/automatica38.html#ShkolnikovS02,https://doi.org/10.1016/S0005-1098(01)00275-8 +Sanda Lefteriu,System identification of microwave filters from multiplexers by rational interpolation.,2017,76,Automatica,,db/journals/automatica/automatica76.html#LefteriuOSO17,https://doi.org/10.1016/j.automatica.2016.09.034 +Er-Wei Bai,Stochastic and worst case system identification are not necessarily incompatible.,1994,30,Automatica,9,db/journals/automatica/automatica30.html#BaiA94,https://doi.org/10.1016/0005-1098(94)90017-5 +Vincent D. Blondel,On primitivity of sets of matrices.,2015,61,Automatica,,db/journals/automatica/automatica61.html#BlondelJO15,https://doi.org/10.1016/j.automatica.2015.07.026 +Pierdomenico Pepe,On the Liapunov-Krasovskii methodology for the ISS of systems described by coupled delay differential and difference equations.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#PepeKJ08,https://doi.org/10.1016/j.automatica.2008.01.010 +Edoardo Mosca,Closed-loop monitoring for early detection of performance losses in feedback-control systems.,2003,39,Automatica,12,db/journals/automatica/automatica39.html#MoscaA03,https://doi.org/10.1016/S0005-1098(03)00249-8 +Juan Li,Stochastic maximum principle in the mean-field controls.,2012,48,Automatica,2,db/journals/automatica/automatica48.html#Li12,https://doi.org/10.1016/j.automatica.2011.11.006 +Roberto Guidorzi,Invariants and canonical forms for systems structural and parametric identification.,1981,17,Automatica,1,db/journals/automatica/automatica17.html#Guidorzi81,https://doi.org/10.1016/0005-1098(81)90088-1 +David Angeli,Almost global stabilization of the inverted pendulum via continuous state feedback.,2001,37,Automatica,7,db/journals/automatica/automatica37.html#Angeli01,https://doi.org/10.1016/S0005-1098(01)00064-4 +Shengyuan Xu,Robust H INFINITY filtering for uncertain impulsive stochastic systems under sampled measurements.,2003,39,Automatica,3,db/journals/automatica/automatica39.html#XuC03,https://doi.org/10.1016/S0005-1098(02)00248-0 +Michael J. Grimble,Research survey : M. J. Grimble.,1984,20,Automatica,6,db/journals/automatica/automatica20.html#Grimble84a,https://doi.org/10.1016/0005-1098(84)90091-8 +Yaakov Bar-Shalom,Applicability of adaptive control to real problems - trends and opinions.,1978,14,Automatica,4,db/journals/automatica/automatica14.html#Bar-ShalomG78,https://doi.org/10.1016/0005-1098(78)90040-7 +P. C. Tan,Recursive identification and adaptive prediction of wastewater flows.,1991,27,Automatica,5,db/journals/automatica/automatica27.html#TanBDM91,https://doi.org/10.1016/0005-1098(91)90031-V +Tohru Katayama,Linear approximation and identification of MIMO Wiener-Hammerstein systems.,2016,71,Automatica,,db/journals/automatica/automatica71.html#KatayamaA16,https://doi.org/10.1016/j.automatica.2016.04.040 +Hamid Krim,Smoothed eigenspace-based parameter estimation.,1994,30,Automatica,1,db/journals/automatica/automatica30.html#KrimP94,https://doi.org/10.1016/0005-1098(94)90226-7 +Odd Andreas Asbjornsen,Chemical process control: An introduction to theory and practice: George Stephanopoulos.,1985,21,Automatica,4,db/journals/automatica/automatica21.html#Asbjornsen85,https://doi.org/10.1016/0005-1098(85)90090-1 +Wei-Song Lin,Optimality and convergence of adaptive optimal control by reinforcement synthesis.,2011,47,Automatica,5,db/journals/automatica/automatica47.html#Lin11a,https://doi.org/10.1016/j.automatica.2011.01.060 +Mats Viberg,Analysis of state space system identification methods based on instrumental variables and subspace fitting.,1997,33,Automatica,9,db/journals/automatica/automatica33.html#VibergWO97,https://doi.org/10.1016/S0005-1098(97)00097-6 +Timo Sorsa,Application of artificial neural networks in process fault diagnosis.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#SorsaK93,https://doi.org/10.1016/0005-1098(93)90090-G +Witold Respondek,Time scaling for observer design with linearizable error dynamics.,2004,40,Automatica,2,db/journals/automatica/automatica40.html#RespondekPN04,https://doi.org/10.1016/j.automatica.2003.09.012 +Ye Yuan 0002,Decentralised minimum-time consensus.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#YuanSSBG13,https://doi.org/10.1016/j.automatica.2013.02.015 +Agostino Capponi,A convex optimization approach to filtering in jump linear systems with state dependent transitions.,2010,46,Automatica,2,db/journals/automatica/automatica46.html#Capponi10,https://doi.org/10.1016/j.automatica.2009.11.011 +Vikram R. Saksena,Optimal and near-optimal incentive strategies in the hierarchical control of markov chains.,1985,21,Automatica,2,db/journals/automatica/automatica21.html#SaksenaC85,https://doi.org/10.1016/0005-1098(85)90112-8 +Fernando de Oliveira Souza,Stability independent of delay using rational functions.,2009,45,Automatica,9,db/journals/automatica/automatica45.html#SouzaOP09,https://doi.org/10.1016/j.automatica.2009.05.012 +Jindrich Duník,Design of measurement difference autocovariance method for estimation of process and measurement noise covariances.,2018,90,Automatica,,db/journals/automatica/automatica90.html#DunikKS18,https://doi.org/10.1016/j.automatica.2017.12.040 +Kam-Chi Li,Sliding mode control of distributed parameter systems.,1994,30,Automatica,12,db/journals/automatica/automatica30.html#LiLH94,https://doi.org/10.1016/0005-1098(94)90057-4 +Vimal Singh,Stability of discrete-time systems joined with a saturation operator on the state-space: Generalized form of Liu-Michel's criterion.,2011,47,Automatica,3,db/journals/automatica/automatica47.html#Singh11,https://doi.org/10.1016/j.automatica.2011.01.041 +Prabhat Kumar Mishra,Sparse and constrained stochastic predictive control for networked systems.,2018,87,Automatica,,db/journals/automatica/automatica87.html#MishraCQ18,https://doi.org/10.1016/j.automatica.2017.09.013 +Levent U. Gökdere,Global asymptotic stability of indirect field-oriented speed control of current-fed induction motors.,1998,34,Automatica,1,db/journals/automatica/automatica34.html#GokdereSB98,https://doi.org/10.1016/S0005-1098(97)00144-1 +Daniel Graupe,A unified sequential identification structure based on convergence considerations.,1979,15,Automatica,3,db/journals/automatica/automatica15.html#GraupeF79,https://doi.org/10.1016/0005-1098(79)90064-5 +Michèle Basseville,On-board Component Fault Detection and Isolation Using the Statistical Local Approach.,1998,34,Automatica,11,db/journals/automatica/automatica34.html#Basseville98,https://doi.org/10.1016/S0005-1098(98)00086-7 +Qingshuo Song,An optimal pairs-trading rule.,2013,49,Automatica,10,db/journals/automatica/automatica49.html#SongZ13,https://doi.org/10.1016/j.automatica.2013.07.012 +Efstratios Skafidas,Trajectory-approximation-based adaptive control for nonlinear systems under matching conditions.,1998,34,Automatica,3,db/journals/automatica/automatica34.html#SkafidasFEM98,https://doi.org/10.1016/S0005-1098(97)00195-7 +Enrique A. Medina,Reachability and observability of linear impulsive systems.,2008,44,Automatica,5,db/journals/automatica/automatica44.html#MedinaL08,https://doi.org/10.1016/j.automatica.2007.09.017 +Erliang Zhang,Nonparametric identification of linear dynamic errors-in-variables systems.,2018,94,Automatica,,db/journals/automatica/automatica94.html#ZhangP18,https://doi.org/10.1016/j.automatica.2018.04.039 +Daniel E. Quevedo,Robust stability of packetized predictive control of nonlinear systems with disturbances and Markovian packet losses.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#QuevedoN12,https://doi.org/10.1016/j.automatica.2012.05.046 +Sangho Ko,Non-asymptotic model quality assessment of transfer functions at multiple frequency points.,2015,60,Automatica,,db/journals/automatica/automatica60.html#KoWC15,https://doi.org/10.1016/j.automatica.2015.06.040 +Márcio A. F. Martins,A robustly stabilizing model predictive control strategy of stable and unstable processes.,2016,67,Automatica,,db/journals/automatica/automatica67.html#MartinsO16,https://doi.org/10.1016/j.automatica.2016.01.046 +Seong-Ho Song,H∞ Control of discrete-time linear systems with norm-bounded uncertainties and time delay in state.,1998,34,Automatica,1,db/journals/automatica/automatica34.html#SongK98,https://doi.org/10.1016/S0005-1098(97)00182-9 +Christopher Thomas Freeman,Robust ILC design with application to stroke rehabilitation.,2017,81,Automatica,,db/journals/automatica/automatica81.html#Freeman17,https://doi.org/10.1016/j.automatica.2017.04.016 +Yang Shen,Mean-variance portfolio selection in a complete market with unbounded random coefficients.,2015,55,Automatica,,db/journals/automatica/automatica55.html#Shen15,https://doi.org/10.1016/j.automatica.2015.03.009 +W. S. Gesing,Improvements on a robust conjugate-gradient algorithm which minimizes and#8466*-functions.,1978,14,Automatica,5,db/journals/automatica/automatica14.html#GesingD78,https://doi.org/10.1016/0005-1098(78)90012-2 +P. M. Mäkilä,Worst-case control-relevant identification.,1995,31,Automatica,12,db/journals/automatica/automatica31.html#MakilaPG95,https://doi.org/10.1016/0005-1098(95)00106-3 +Gunnar Johannsen,Theoretical problems in man-machine systems and their experimental validation.,1994,30,Automatica,2,db/journals/automatica/automatica30.html#JohannsenLS94,https://doi.org/10.1016/0005-1098(94)90026-4 +Anatoli A. Pervozvanski,Asymptotic analysis of the dither effect in systems with friction.,2002,38,Automatica,1,db/journals/automatica/automatica38.html#PervozvanskiW02,https://doi.org/10.1016/S0005-1098(01)00166-2 +Xian-Ming Zhang,Robust Hinfinity filtering for a class of uncertain linear systems with time-varying delay.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#ZhangH08,https://doi.org/10.1016/j.automatica.2007.04.024 +Boyan Yordanov,Formal analysis of piecewise affine systems through formula-guided refinement.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#YordanovTCBB13,https://doi.org/10.1016/j.automatica.2012.09.027 +Tobias Geyer,Optimal complexity reduction of polyhedral piecewise affine systems.,2008,44,Automatica,7,db/journals/automatica/automatica44.html#GeyerTM08,https://doi.org/10.1016/j.automatica.2007.11.027 +Adrian Bonchis,Variable structure methods in hydraulic servo systems control.,2001,37,Automatica,4,db/journals/automatica/automatica37.html#BonchisCRH01,https://doi.org/10.1016/S0005-1098(00)00192-8 +Torsten Söderström,Identification of stochastic linear systems in presence of input noise.,1981,17,Automatica,5,db/journals/automatica/automatica17.html#Soderstrom81a,https://doi.org/10.1016/0005-1098(81)90018-2 +Cristian Oara,Constructive solutions to spectral and inner-outer factorizations with respect to the disk.,2005,41,Automatica,11,db/journals/automatica/automatica41.html#Oara05,https://doi.org/10.1016/j.automatica.2005.04.009 +Henrik Rehbinder,Drift-free attitude estimation for accelerated rigid bodies.,2004,40,Automatica,4,db/journals/automatica/automatica40.html#RehbinderH04,https://doi.org/10.1016/j.automatica.2003.11.002 +Kan Xie,A fast clock synchronization algorithm for wireless sensor networks.,2018,92,Automatica,,db/journals/automatica/automatica92.html#XieCF18,https://doi.org/10.1016/j.automatica.2018.03.004 +Xu Wang 0005,Stabilization of linear system with input saturation and unknown constant delays.,2013,49,Automatica,12,db/journals/automatica/automatica49.html#WangSS13,https://doi.org/10.1016/j.automatica.2013.09.007 +Jin-Hoon Kim,Improved ellipsoidal bound of reachable sets for time-delayed linear systems with disturbances.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#Kim08,https://doi.org/10.1016/j.automatica.2008.03.015 +Djordjija Petkovski,Fast suboptimal solution to the static output control problem of linear singularly perturbed systems.,1991,27,Automatica,4,db/journals/automatica/automatica27.html#PetkovskiHG91,https://doi.org/10.1016/0005-1098(91)90064-9 +Ubaldo Tiberi,Energy-efficient sampling of networked control systems over IEEE 802.15.4 wireless networks.,2013,49,Automatica,3,db/journals/automatica/automatica49.html#TiberiFJB13,https://doi.org/10.1016/j.automatica.2012.11.046 +Ole Solheim,Multivariable and optimal systems: D. H. Owens.,1983,19,Automatica,3,db/journals/automatica/automatica19.html#Solheim83,https://doi.org/10.1016/0005-1098(83)90120-6 +Giuseppe Carlo Calafiore,Robust maximum likelihood estimation in the linear model.,2001,37,Automatica,4,db/journals/automatica/automatica37.html#CalafioreG01,https://doi.org/10.1016/S0005-1098(00)00189-8 +Gabriel Mihai Lipsa,Optimal memoryless control in Gaussian noise: A simple counterexample.,2011,47,Automatica,3,db/journals/automatica/automatica47.html#LipsaM11,https://doi.org/10.1016/j.automatica.2010.12.001 +Vikram R. Saksena,Singular perturbations and time-scale methods in control theory: Survey 1976-1983.,1984,20,Automatica,3,db/journals/automatica/automatica20.html#SaksenaOK84,https://doi.org/10.1016/0005-1098(84)90044-X +Henry J. Kelley,Variable-sweep optimization.,1979,15,Automatica,4,db/journals/automatica/automatica15.html#KelleySB79,https://doi.org/10.1016/0005-1098(79)90014-1 +A. Bellini,Parameter identification for induction motor simulation.,1976,12,Automatica,4,db/journals/automatica/automatica12.html#BelliniCC76,https://doi.org/10.1016/0005-1098(76)90059-5 +Hyeong Soo Chang,Policy set iteration for Markov decision processes.,2013,49,Automatica,12,db/journals/automatica/automatica49.html#Chang13a,https://doi.org/10.1016/j.automatica.2013.09.010 +Tao Liu 0002,A synthetic approach for robust constrained iterative learning control of piecewise affine batch processes.,2012,48,Automatica,11,db/journals/automatica/automatica48.html#LiuW12a,https://doi.org/10.1016/j.automatica.2012.08.026 +Sandip Roy,Static decentralized control of a single-integrator network with Markovian sensing topology.,2005,41,Automatica,11,db/journals/automatica/automatica41.html#RoyS05,https://doi.org/10.1016/j.automatica.2005.05.012 +Andrea Paoli,Safe diagnosability for fault-tolerant supervision of discrete-event systems.,2005,41,Automatica,8,db/journals/automatica/automatica41.html#PaoliL05,https://doi.org/10.1016/j.automatica.2005.03.017 +Fen Wu,Gain-scheduling control of LFT systems using parameter-dependent Lyapunov functions.,2006,42,Automatica,1,db/journals/automatica/automatica42.html#WuD06,https://doi.org/10.1016/j.automatica.2005.08.020 +Jason R. Marden,State based potential games.,2012,48,Automatica,12,db/journals/automatica/automatica48.html#Marden12,https://doi.org/10.1016/j.automatica.2012.08.037 +Halim Alwi,Fault tolerant control using sliding modes with on-line control allocation.,2008,44,Automatica,7,db/journals/automatica/automatica44.html#AlwiE08,https://doi.org/10.1016/j.automatica.2007.10.034 +Carla A. Schwartz,Comments on 'achieving diagonal interactor matrix for multivariable linear systems with uncertain parameters'.,1995,31,Automatica,1,db/journals/automatica/automatica31.html#SchwartzY95,https://doi.org/10.1016/0005-1098(94)00126-4 +Andrea Bisoffi,Hybrid cancellation of ripple disturbances arising in AC/DC converters.,2017,77,Automatica,,db/journals/automatica/automatica77.html#BisoffiZLCC17,https://doi.org/10.1016/j.automatica.2016.11.013 +Alessandro Macchelli,Dissipativity-based boundary control of linear distributed port-Hamiltonian systems.,2018,95,Automatica,,db/journals/automatica/automatica95.html#MacchelliC18,https://doi.org/10.1016/j.automatica.2018.05.029 +Jiangping Hu,Nonlinear filtering in target tracking using cooperative mobile sensors.,2010,46,Automatica,12,db/journals/automatica/automatica46.html#HuH10,https://doi.org/10.1016/j.automatica.2010.08.016 +Divya Garg,Pseudospectral methods for solving infinite-horizon optimal control problems.,2011,47,Automatica,4,db/journals/automatica/automatica47.html#GargHR11,https://doi.org/10.1016/j.automatica.2011.01.085 +Kristinn Kristinsson,Cross-directional control on paper machines using gram polynomials.,1996,32,Automatica,4,db/journals/automatica/automatica32.html#KristinssonD96,https://doi.org/10.1016/0005-1098(95)00181-6 +William M. McEneaney,A new fundamental solution for differential Riccati equations arising in control.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#McEneaney08,https://doi.org/10.1016/j.automatica.2007.08.019 +Shunyi Zhao,Bayesian state estimation on finite horizons: The case of linear state-space model.,2017,85,Automatica,,db/journals/automatica/automatica85.html#ZhaoHS17,https://doi.org/10.1016/j.automatica.2017.07.043 +Zhongkui Li,Distributed consensus of linear multi-agent systems with adaptive dynamic protocols.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#LiRLX13,https://doi.org/10.1016/j.automatica.2013.03.015 +S. Mijanovic,A controller perturbation technique for transferring closed-loop stability between systems.,2003,39,Automatica,10,db/journals/automatica/automatica39.html#MijanovicSDD03,https://doi.org/10.1016/S0005-1098(03)00173-0 +Roger W. Brockett,The early days of geometric nonlinear control.,2014,50,Automatica,9,db/journals/automatica/automatica50.html#Brockett14,https://doi.org/10.1016/j.automatica.2014.06.010 +Warren E. Dixon,Global exponential setpoint control of wheeled mobile robots: a Lyapunov approach.,2000,36,Automatica,11,db/journals/automatica/automatica36.html#DixonJD00,https://doi.org/10.1016/S0005-1098(00)00099-6 +Mingzhe Hou,Global stabilization of switched stochastic nonlinear systems in strict-feedback form under arbitrary switchings.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#HouFD13,https://doi.org/10.1016/j.automatica.2013.04.031 +Christophe Louembet,Motion planning for flat systems using positive B-splines: An LMI approach.,2010,46,Automatica,8,db/journals/automatica/automatica46.html#LouembetCZ10,https://doi.org/10.1016/j.automatica.2010.05.001 +Vladimír Kucera,New results in state estimation and regulation.,1981,17,Automatica,5,db/journals/automatica/automatica17.html#Kucera81,https://doi.org/10.1016/0005-1098(81)90021-2 +Yu-Ping Tian,Global stabilization of rigid formations in the plane.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#TianW13,https://doi.org/10.1016/j.automatica.2013.01.057 +Anton A. Stoorvogel,The singular H2 control problem.,1992,28,Automatica,3,db/journals/automatica/automatica28.html#Stoorvogel92,https://doi.org/10.1016/0005-1098(92)90189-M +Marieke B. G. Cloosterman,Controller synthesis for networked control systems.,2010,46,Automatica,10,db/journals/automatica/automatica46.html#CloostermanHWHDN10,https://doi.org/10.1016/j.automatica.2010.06.017 +Wen-an Zhang,Sequential fusion estimation for clustered sensor networks.,2018,89,Automatica,,db/journals/automatica/automatica89.html#ZhangS18,https://doi.org/10.1016/j.automatica.2017.12.038 +Martín D. España,Variable structure systems with chattering reduction: A microprocessor based design.,1984,20,Automatica,1,db/journals/automatica/automatica20.html#EspanaOE84,https://doi.org/10.1016/0005-1098(84)90076-1 +W. Yu,Robust eigenstructure assignment for the extended medium range air-to-air missile.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#YuPS93,https://doi.org/10.1016/0005-1098(93)90094-A +Jun-ichi Imura,Optimal control of sampled-data piecewise affine systems.,2004,40,Automatica,4,db/journals/automatica/automatica40.html#Imura04,https://doi.org/10.1016/j.automatica.2003.11.012 +W. P. M. H. Heemels,Input-to-state stability and interconnections of discontinuous dynamical systems.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#HeemelsW08,https://doi.org/10.1016/j.automatica.2008.04.025 +Xiao-Jian Li,Adaptive decentralized control for a class of interconnected nonlinear systems via backstepping approach and graph theory.,2017,76,Automatica,,db/journals/automatica/automatica76.html#LiY17,https://doi.org/10.1016/j.automatica.2016.10.019 +Zhao-Jing Wu,Backstepping controller design for a class of stochastic nonlinear systems with Markovian switching.,2009,45,Automatica,4,db/journals/automatica/automatica45.html#WuXSX09,https://doi.org/10.1016/j.automatica.2008.12.002 +Vijay V. Patel,Some applications of randomized algorithms for control system design.,2002,38,Automatica,12,db/journals/automatica/automatica38.html#PatelDV02,https://doi.org/10.1016/S0005-1098(02)00112-7 +Yaakov Bar-Shalom,Dual adaptive control and uncertainty effects in macroeconomic systems optimization.,1980,16,Automatica,2,db/journals/automatica/automatica16.html#Bar-ShalomW80,https://doi.org/10.1016/0005-1098(80)90050-3 +Grzegorz Mzyk,Kernel-based identification of Wiener-Hammerstein system.,2017,83,Automatica,,db/journals/automatica/automatica83.html#MzykW17,https://doi.org/10.1016/j.automatica.2017.06.038 +S. Gentil,SEXI: An expert identification package.,1990,26,Automatica,4,db/journals/automatica/automatica26.html#GentilBS90,https://doi.org/10.1016/0005-1098(90)90056-N +Ratnesh Kumar 0001,Extension based Limited Lookahead Supervision of Discrete Event Systems.,1998,34,Automatica,11,db/journals/automatica/automatica34.html#KumarCM98,https://doi.org/10.1016/S0005-1098(98)00077-6 +Akira Kojima,LQ control for constrained continuous-time systems.,2004,40,Automatica,7,db/journals/automatica/automatica40.html#KojimaM04,https://doi.org/10.1016/j.automatica.2004.02.007 +Michèle Breton,Mutual fund competition in the presence of dynamic flows.,2010,46,Automatica,7,db/journals/automatica/automatica46.html#BretonHM10,https://doi.org/10.1016/j.automatica.2010.04.006 +Shuzhi Sam Ge,Robust adaptive control of nonlinear systems with unknown time delays.,2005,41,Automatica,7,db/journals/automatica/automatica41.html#GeHL05,https://doi.org/10.1016/j.automatica.2005.01.011 +Shousong Hu,Stochastic optimal control and analysis of stability of networked control systems with long delay.,2003,39,Automatica,11,db/journals/automatica/automatica39.html#HuZ03,https://doi.org/10.1016/S0005-1098(03)00196-1 +Sailesh K. Rao,Design of minimal-degree compensators with assignable poles or structure.,1987,23,Automatica,2,db/journals/automatica/automatica23.html#RaoC87,https://doi.org/10.1016/0005-1098(87)90099-9 +C. C. Chen,On receding horizon feedback control.,1982,18,Automatica,3,db/journals/automatica/automatica18.html#ChenS82,https://doi.org/10.1016/0005-1098(82)90096-6 +Thor I. Fossen,On uniform semiglobal exponential stability (USGES) of proportional line-of-sight guidance laws.,2014,50,Automatica,11,db/journals/automatica/automatica50.html#FossenP14,https://doi.org/10.1016/j.automatica.2014.10.018 +Jun Hu,Adaptive control of induction motor systems despite rotor resistance uncertainty.,1996,32,Automatica,8,db/journals/automatica/automatica32.html#HuD96,https://doi.org/10.1016/0005-1098(96)00043-X +Mohammadreza Chamanbaz,A statistical learning theory approach for uncertain linear and bilinear matrix inequalities.,2014,50,Automatica,6,db/journals/automatica/automatica50.html#ChamanbazDTVW14,https://doi.org/10.1016/j.automatica.2014.04.005 +Luca Grosset,Optimal dynamic advertising with an adverse exogenous effect on brand goodwill.,2009,45,Automatica,4,db/journals/automatica/automatica45.html#GrossetV09,https://doi.org/10.1016/j.automatica.2008.10.027 +Babji Srinivasan,Control loop performance assessment using detrended fluctuation analysis (DFA).,2012,48,Automatica,7,db/journals/automatica/automatica48.html#SrinivasanSR12,https://doi.org/10.1016/j.automatica.2012.04.003 +Hong-Bing Zeng,New results on stability analysis for systems with discrete distributed delay.,2015,60,Automatica,,db/journals/automatica/automatica60.html#ZengHWS15,https://doi.org/10.1016/j.automatica.2015.07.017 +W. Weber,Supercomputer architecture : Paul B. Schneck.,1988,24,Automatica,6,db/journals/automatica/automatica24.html#Weber88,https://doi.org/10.1016/0005-1098(88)90065-9 +Ambrose A. Adegbege,A framework for multivariable algebraic loops in linear anti-windup implementations.,2017,83,Automatica,,db/journals/automatica/automatica83.html#AdegbegeH17,https://doi.org/10.1016/j.automatica.2017.05.009 +Tzuen-Lih Chern,Automatic Voltage Regulator Design by Modified Discrete Integral Variable Structure Model Following Control.,1998,34,Automatica,12,db/journals/automatica/automatica34.html#ChernC98,https://doi.org/10.1016/S0005-1098(98)80011-3 +Kristin Ytterstad Pettersen,Lyapunov sufficient conditions for uniform semiglobal exponential stability.,2017,78,Automatica,,db/journals/automatica/automatica78.html#Pettersen17,https://doi.org/10.1016/j.automatica.2016.12.004 +Seunggyun Cheong,Input design for discrimination between classes of LTI models.,2015,53,Automatica,,db/journals/automatica/automatica53.html#CheongM15,https://doi.org/10.1016/j.automatica.2014.12.005 +Sarangapani Jagannathan,Adaptive fuzzy logic control of discrete-time dynamical systems.,2000,36,Automatica,2,db/journals/automatica/automatica36.html#JagannathanVL00,https://doi.org/10.1016/S0005-1098(99)00143-0 +Emanuele Garone,Sensorless supervision of linear dynamical systems: The Feed-Forward Command Governor approach.,2011,47,Automatica,7,db/journals/automatica/automatica47.html#GaroneTC11,https://doi.org/10.1016/j.automatica.2011.01.034 +Stephen Boyd,Necessary and sufficient conditions for parameter convergence in adaptive control.,1986,22,Automatica,6,db/journals/automatica/automatica22.html#BoydS86,https://doi.org/10.1016/0005-1098(86)90002-6 +Michael A. Arbib,Trends and focus in control.,1976,12,Automatica,6,db/journals/automatica/automatica12.html#Arbib76,https://doi.org/10.1016/0005-1098(76)90045-5 +Peter Dorato,Periodic optimization with applications to solar energy control.,1979,15,Automatica,6,db/journals/automatica/automatica15.html#DoratoK79,https://doi.org/10.1016/0005-1098(79)90035-9 +Ljubisa Miskovic,Closed-loop identification of multivariable systems: With or without excitation of all references?,2008,44,Automatica,8,db/journals/automatica/automatica44.html#MiskovicKBG08,https://doi.org/10.1016/j.automatica.2007.11.016 +Oleg Wasynczuk,The component connection model and structure preserving model order reduction.,1981,17,Automatica,4,db/journals/automatica/automatica17.html#WasynczukD81,https://doi.org/10.1016/0005-1098(81)90033-9 +Weiming Xiang,On stability and H∞ control of switched systems with random switching signals.,2018,95,Automatica,,db/journals/automatica/automatica95.html#XiangLL18,https://doi.org/10.1016/j.automatica.2018.06.001 +Amir Alizadeh Moghadam,Boundary optimal (LQ) control of coupled hyperbolic PDEs and ODEs.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#MoghadamADF13,https://doi.org/10.1016/j.automatica.2012.11.016 +Weihai Zhang,Infinite horizon stochastic H2/Hinfinity control for discrete-time systems with state and disturbance dependent noise.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#ZhangHX08,https://doi.org/10.1016/j.automatica.2008.01.028 +Gang Chen,A fixed-time convergent algorithm for distributed convex optimization in multi-agent systems.,2018,95,Automatica,,db/journals/automatica/automatica95.html#ChenL18,https://doi.org/10.1016/j.automatica.2018.05.032 +Dina Shona Laila,Changing supply rates for input-output to state stable discrete-time nonlinear systems with applications.,2003,39,Automatica,5,db/journals/automatica/automatica39.html#LailaN03,https://doi.org/10.1016/S0005-1098(03)00055-4 +Bernard Brogliato,Robust adaptive control of a class of nonlinear first order systems.,1992,28,Automatica,4,db/journals/automatica/automatica28.html#BrogliatoNL92,https://doi.org/10.1016/0005-1098(92)90039-I +Emmanuel Nuño,Coordination of multi-agent Euler-Lagrange systems via energy-shaping: Networking improves robustness.,2013,49,Automatica,10,db/journals/automatica/automatica49.html#NunoOJB13,https://doi.org/10.1016/j.automatica.2013.07.002 +Christian Lageman,Simultaneous velocity consensus and shape control for a finite number of point agents on the unit circle.,2018,90,Automatica,,db/journals/automatica/automatica90.html#LagemanHA18,https://doi.org/10.1016/j.automatica.2017.12.060 +Kevin L. Moore,Monotonically convergent iterative learning control for linear discrete-time systems.,2005,41,Automatica,9,db/journals/automatica/automatica41.html#MooreCB05,https://doi.org/10.1016/j.automatica.2005.01.019 +Bing-Chang Wang,Distributed output feedback control of Markov jump multi-agent systems.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#WangZ13,https://doi.org/10.1016/j.automatica.2013.01.063 +Q. Zhao,Reliable State Feedback Control System Design Against Actuator Failures.,1998,34,Automatica,10,db/journals/automatica/automatica34.html#ZhaoJ98,https://doi.org/10.1016/S0005-1098(98)00072-7 +Hidenori Kimura,Perfect and subperfect regulation in linear multivariable control systems.,1982,18,Automatica,2,db/journals/automatica/automatica18.html#Kimura82,https://doi.org/10.1016/0005-1098(82)90103-0 +Murali R. Rajamani,Estimation of the disturbance structure from data using semidefinite programming and optimal weighting.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#RajamaniR09,https://doi.org/10.1016/j.automatica.2008.05.032 +J. Marton,Scientific fundamentals of robotics 1. Dynamics of manipulation robots: Theory and application: Edited by Miomir Vukobratovic and Veljko Potkonjak.,1984,20,Automatica,2,db/journals/automatica/automatica20.html#Marton84,https://doi.org/10.1016/0005-1098(84)90041-4 +Lina Yao,Design of new fault diagnosis and fault tolerant control scheme for non-Gaussian singular stochastic distribution systems.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#YaoQ0J12,https://doi.org/10.1016/j.automatica.2012.06.036 +Dongmei Shen,The pole assignment for the regular triangular decoupling problem.,2015,53,Automatica,,db/journals/automatica/automatica53.html#ShenW15,https://doi.org/10.1016/j.automatica.2014.12.023 +Astrid H. Brodtkorb,Hybrid controller concept for dynamic positioning of marine vessels with experimental results.,2018,93,Automatica,,db/journals/automatica/automatica93.html#BrodtkorbVTSS18,https://doi.org/10.1016/j.automatica.2018.03.047 +Andrea Alessandretti,On convergence and performance certification of a continuous-time economic model predictive control scheme with time-varying performance index.,2016,68,Automatica,,db/journals/automatica/automatica68.html#AlessandrettiAJ16,https://doi.org/10.1016/j.automatica.2016.01.020 +Fen Wu,LPV Systems with parameter-varying time delays: analysis and control.,2001,37,Automatica,2,db/journals/automatica/automatica37.html#WuG01,https://doi.org/10.1016/S0005-1098(00)00156-4 +Peddapullaiah Sannuti,Singular perturbation method for near optimum design of high-order non-linear systems.,1969,5,Automatica,6,db/journals/automatica/automatica5.html#SannutiK69,https://doi.org/10.1016/0005-1098(69)90090-9 +Naresh K. Sinha,Recursive estimation of the parameters of linear multivariable systems.,1979,15,Automatica,4,db/journals/automatica/automatica15.html#SinhaK79,https://doi.org/10.1016/0005-1098(79)90022-0 +Xu Wang 0005,Simultaneous external and internal stabilization of linear systems with input saturation and non-input-additive sustained disturbances.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#WangSGS12,https://doi.org/10.1016/j.automatica.2012.06.063 +Chih-Yuan Chen,Quantitative robust performance design with minimal cost of feedback.,1995,31,Automatica,6,db/journals/automatica/automatica31.html#ChenP95,https://doi.org/10.1016/0005-1098(94)00174-H +Ihab Haidar,Converse Lyapunov-Krasovskii theorems for uncertain retarded differential equations.,2015,62,Automatica,,db/journals/automatica/automatica62.html#HaidarMS15,https://doi.org/10.1016/j.automatica.2015.09.034 +Vincent Bachtiar,Continuity and monotonicity of the MPC value function with respect to sampling time and prediction horizon.,2016,63,Automatica,,db/journals/automatica/automatica63.html#BachtiarKMM16,https://doi.org/10.1016/j.automatica.2015.10.042 +Andrew Hazell,An efficient algorithm for discrete-time I preview control.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#HazellL08,https://doi.org/10.1016/j.automatica.2008.02.003 +Weitian Chen,Properties of blocked linear systems.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#ChenADF12,https://doi.org/10.1016/j.automatica.2012.06.020 +Fuwen Yang,Set-membership filtering for systems with sensor saturation.,2009,45,Automatica,8,db/journals/automatica/automatica45.html#YangL09,https://doi.org/10.1016/j.automatica.2009.04.011 +Kooktae Lee,Performance and robustness analysis of stochastic jump linear systems using Wasserstein metric.,2015,51,Automatica,,db/journals/automatica/automatica51.html#LeeHB15,https://doi.org/10.1016/j.automatica.2014.10.080 +Adrian-Mihail Stoica,Markovian jump delayed Hopfield networks with multiplicative noise.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#StoicaY08,https://doi.org/10.1016/j.automatica.2007.12.013 +Zohra Kader,Finite-time and asymptotic left inversion of nonlinear time-delay systems.,2018,95,Automatica,,db/journals/automatica/automatica95.html#KaderZB18,https://doi.org/10.1016/j.automatica.2018.05.002 +Zhen-Guo Liu,Universal strategies to explicit adaptive control of nonlinear time-delay systems with different structures.,2018,89,Automatica,,db/journals/automatica/automatica89.html#LiuW18,https://doi.org/10.1016/j.automatica.2017.11.023 +Pedro Tiago Martins Batista,Optimal position and velocity navigation filters for autonomous vehicles.,2010,46,Automatica,4,db/journals/automatica/automatica46.html#BatistaSO10,https://doi.org/10.1016/j.automatica.2010.02.004 +Luc Jaulin,Nonlinear bounded-error state estimation of continuous-time systems.,2002,38,Automatica,6,db/journals/automatica/automatica38.html#Jaulin02,https://doi.org/10.1016/S0005-1098(01)00284-9 +Zhongyang Fei,New results on stabilization of Markovian jump systems with time delay.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#FeiGS09,https://doi.org/10.1016/j.automatica.2009.06.020 +Michel Verhaegen,N2SID: Nuclear norm subspace identification of innovation models.,2016,72,Automatica,,db/journals/automatica/automatica72.html#VerhaegenH16,https://doi.org/10.1016/j.automatica.2016.05.021 +Paul Kump,Variable selection via RIVAL (removing irrelevant variables amidst Lasso iterations) and its application to nuclear material detection.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#KumpBCEL12,https://doi.org/10.1016/j.automatica.2012.06.051 +Jinbo Fu,Unconstrained optimal control of regular languages.,2004,40,Automatica,4,db/journals/automatica/automatica40.html#FuRL04,https://doi.org/10.1016/j.automatica.2003.11.011 +Raffaella Mattone,Relaxed fault detection and isolation: An application to a nonlinear case study.,2006,42,Automatica,1,db/journals/automatica/automatica42.html#MattoneL06,https://doi.org/10.1016/j.automatica.2005.08.018 +Wei-Song Lin,Constrained adaptive optimal control using a reinforcement learning agent.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#LinZ12,https://doi.org/10.1016/j.automatica.2012.06.064 +Zhongyang Fei,Asynchronous control for 2-D switched systems with mode-dependent average dwell time.,2017,79,Automatica,,db/journals/automatica/automatica79.html#FeiSZW17,https://doi.org/10.1016/j.automatica.2017.01.026 +Karl Henrik Johansson,Fast switches in relay feedback systems.,1999,35,Automatica,4,db/journals/automatica/automatica35.html#JohanssonRA99,https://doi.org/10.1016/S0005-1098(98)00160-5 +Yongcan Cao,UAV circumnavigating an unknown target under a GPS-denied environment with range-only measurements.,2015,55,Automatica,,db/journals/automatica/automatica55.html#Cao15,https://doi.org/10.1016/j.automatica.2015.03.007 +Pierre-Alexandre Bliman,Average consensus problems in networks of agents with delayed communications.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#BlimanF08,https://doi.org/10.1016/j.automatica.2007.12.010 +Przemyslaw Ignaciuk,Linear-quadratic optimal control strategy for periodic-review inventory systems.,2010,46,Automatica,12,db/journals/automatica/automatica46.html#IgnaciukB10,https://doi.org/10.1016/j.automatica.2010.09.010 +Marko Tanaskovic,On the optimal worst-case experiment design for constrained linear systems.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#TanaskovicFM14,https://doi.org/10.1016/j.automatica.2014.10.058 +Hassan K. Khalil,Control of linear systems with multiparameter singular perturbations.,1979,15,Automatica,2,db/journals/automatica/automatica15.html#KhalilK79,https://doi.org/10.1016/0005-1098(79)90070-0 +Suat Gumussoy,Computation of extremum singular values and the strong H-infinity norm of SISO time-delay systems.,2015,54,Automatica,,db/journals/automatica/automatica54.html#GumussoyM15,https://doi.org/10.1016/j.automatica.2015.02.003 +Tony Huschto,Numerical solution of a conspicuous consumption model with constant control delay.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#HuschtoFHKSS11,https://doi.org/10.1016/j.automatica.2011.06.004 +P. J. King,The application of fuzzy control systems to industrial processes.,1977,13,Automatica,3,db/journals/automatica/automatica13.html#KingM77,https://doi.org/10.1016/0005-1098(77)90050-4 +Zoran Gajic,Solution of the state-dependent noise optimal control problem in terms of Lyapunov iterations.,1999,35,Automatica,5,db/journals/automatica/automatica35.html#GajicL99,https://doi.org/10.1016/S0005-1098(98)00232-5 +Yeng C. Soh,Robust pole assignment.,1987,23,Automatica,5,db/journals/automatica/automatica23.html#SohEPB87,https://doi.org/10.1016/0005-1098(87)90055-0 +Petar V. Kokotovic,Singular perturbations and order reduction in control theory - An overview.,1976,12,Automatica,2,db/journals/automatica/automatica12.html#KokotovicOS76,https://doi.org/10.1016/0005-1098(76)90076-5 +Jean-Noel Aubrun,Performance analysis of the segment alignment control system for the ten-meter telescope.,1988,24,Automatica,4,db/journals/automatica/automatica24.html#AubrunLHH88,https://doi.org/10.1016/0005-1098(88)90090-8 +Cristian Oara,JJ factorizations of a general discrete-time system.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#OaraM13,https://doi.org/10.1016/j.automatica.2013.03.023 +Federico Najson,Authors' reply to drs Phadke's and Kuber's comments.,1996,32,Automatica,1,db/journals/automatica/automatica32.html#NajsonK96,https://doi.org/10.1016/0005-1098(95)00084-4 +Youbin Peng,Anti-Windup Designs for Multivariable Controllers.,1998,34,Automatica,12,db/journals/automatica/automatica34.html#PengVHW98,https://doi.org/10.1016/S0005-1098(98)80009-5 +J. A. Aseltine,Committee on space.,1969,5,Automatica,5,db/journals/automatica/automatica5.html#Aseltine69,https://doi.org/10.1016/0005-1098(69)90037-5 +Hüseyin Akçay,A generalization of a standard inequality for Hardy space H1.,2001,37,Automatica,11,db/journals/automatica/automatica37.html#Akcay01a,https://doi.org/10.1016/S0005-1098(01)00148-0 +Hong Chen 0003,rank Quasi-Infinite Horizon Nonlinear Model Predictive Control Scheme with Guaranteed Stability.,1998,34,Automatica,10,db/journals/automatica/automatica34.html#ChenA98,https://doi.org/10.1016/S0005-1098(98)00073-9 +Graham C. Goodwin,Trade-offs in linear filter design.,1995,31,Automatica,10,db/journals/automatica/automatica31.html#GoodwinMS95,https://doi.org/10.1016/0005-1098(95)00061-Z +Will Gersch,Smoothness priors transfer function estimation.,1989,25,Automatica,4,db/journals/automatica/automatica25.html#GerschK89,https://doi.org/10.1016/0005-1098(89)90103-9 +Hamed Samie,Power control in Wireless Cellular Networks with a time-varying delay.,2017,83,Automatica,,db/journals/automatica/automatica83.html#SamieMCV17,https://doi.org/10.1016/j.automatica.2017.06.034 +Mauro Franceschelli,Fast discrete consensus based on gossip for makespan minimization in networked systems.,2015,56,Automatica,,db/journals/automatica/automatica56.html#FranceschelliGS15,https://doi.org/10.1016/j.automatica.2015.02.040 +M. I. Gil,On Aizerman-Myshkis problem for systems with delay.,2000,36,Automatica,11,db/journals/automatica/automatica36.html#Gil00,https://doi.org/10.1016/S0005-1098(00)00071-6 +Vikram Krishnamurthy,Estimation of quantized linear errors-in-variables models.,1995,31,Automatica,10,db/journals/automatica/automatica31.html#Krishnamurthy95,https://doi.org/10.1016/0005-1098(95)00070-D +Robin Hill,Exact recursive updating of state uncertainty sets for linear SISO systems.,2018,95,Automatica,,db/journals/automatica/automatica95.html#HillLS18,https://doi.org/10.1016/j.automatica.2018.05.010 +Keqin Gu,Absolute stability of systems under block diagonal memoryless uncertainties.,1995,31,Automatica,4,db/journals/automatica/automatica31.html#Gu95,https://doi.org/10.1016/0005-1098(95)98486-P +Yvo Boers,A multiple model multiple hypothesis filter for Markovian switching systems.,2005,41,Automatica,4,db/journals/automatica/automatica41.html#BoersD05,https://doi.org/10.1016/j.automatica.2004.11.018 +Wei Zhang 0013,Dynamic buffer management using optimal control of hybrid systems.,2008,44,Automatica,7,db/journals/automatica/automatica44.html#ZhangH08a,https://doi.org/10.1016/j.automatica.2007.10.036 +R. A. Vingerhoeds,Modelisation et identification en traitement du signal: M. Najim.,1990,26,Automatica,1,db/journals/automatica/automatica26.html#Vingerhoeds90,https://doi.org/10.1016/0005-1098(90)90171-D +Roberto Tempo,Beginning the second half-century.,2015,51,Automatica,,db/journals/automatica/automatica51.html#Tempo15,https://doi.org/10.1016/j.automatica.2014.10.013 +George S. Axelby,About this and future issues.,1969,5,Automatica,1,db/journals/automatica/automatica5.html#Axelby69a,https://doi.org/10.1016/0005-1098(69)90048-X +Pradeep Misra,Computation of structural invariants of generalized state-space systems.,1994,30,Automatica,12,db/journals/automatica/automatica30.html#MisraDV94,https://doi.org/10.1016/0005-1098(94)90052-3 +Philippe Müllhaupt,Analysis of exclusively kinetic two-link underactuated mechanical systems.,2002,38,Automatica,9,db/journals/automatica/automatica38.html#MullhauptSB02,https://doi.org/10.1016/S0005-1098(02)00048-1 +Petar V. Kokotovic,Constructive nonlinear control: a historical perspective.,2001,37,Automatica,5,db/journals/automatica/automatica37.html#KokotovicA01,https://doi.org/10.1016/S0005-1098(01)00002-4 +R. Bakker,Low-order multivariable adaptive control with application to flexible structures.,1996,32,Automatica,3,db/journals/automatica/automatica32.html#BakkerA96,https://doi.org/10.1016/0005-1098(95)00150-6 +Andrzej Bartoszewicz,A comment on 'A time-varying sliding surface for fast and robust tracking control of second-order uncertain systems'.,1995,31,Automatica,12,db/journals/automatica/automatica31.html#Bartoszewicz95,https://doi.org/10.1016/0005-1098(95)00122-1 +William S. Levine,On propelling a rod to a maximum vertical or horizontal distance.,1983,19,Automatica,3,db/journals/automatica/automatica19.html#LevineCZ83,https://doi.org/10.1016/0005-1098(83)90111-5 +Gal Hochma,Symbolic dynamics of Boolean control networks.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#HochmaMFV13,https://doi.org/10.1016/j.automatica.2013.05.004 +Mont Hubbard,Estimation of feedstream concentrations in cement raw material blending.,1982,18,Automatica,5,db/journals/automatica/automatica18.html#HubbardD82,https://doi.org/10.1016/0005-1098(82)90011-5 +Bojan Grcar,A contribution to the control of the non-holonomic integrator including drift.,2012,48,Automatica,11,db/journals/automatica/automatica48.html#GrcarHCS12,https://doi.org/10.1016/j.automatica.2012.08.030 +J. P. Keller,Selection of input and output variables as a model reduction problem.,1992,28,Automatica,1,db/journals/automatica/automatica28.html#KellerB92,https://doi.org/10.1016/0005-1098(92)90018-B +K. D. Wall,Policy optimisation studies using a simple U.K. economy control model.,1976,12,Automatica,6,db/journals/automatica/automatica12.html#WallW76,https://doi.org/10.1016/0005-1098(76)90037-6 +Arthur L. Dexter,Self-tuning optimum start control of heating plant.,1981,17,Automatica,3,db/journals/automatica/automatica17.html#Dexter81,https://doi.org/10.1016/0005-1098(81)90006-6 +Rafal Goebel,Set-valued Lyapunov functions for difference inclusions.,2011,47,Automatica,1,db/journals/automatica/automatica47.html#Goebel11,https://doi.org/10.1016/j.automatica.2010.10.018 +Ravi Gondhalekar,Least-restrictive robust periodic model predictive control applied to room temperature regulation.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#GondhalekarOJ13,https://doi.org/10.1016/j.automatica.2013.05.009 +Jie Huang 0001,On a nonlinear multivariable servomechanism problem.,1990,26,Automatica,6,db/journals/automatica/automatica26.html#HuangR90,https://doi.org/10.1016/0005-1098(90)90081-R +Tianju Sui,Stability conditions for multi-sensor state estimation over a lossy network.,2015,53,Automatica,,db/journals/automatica/automatica53.html#SuiYF15,https://doi.org/10.1016/j.automatica.2014.12.022 +Kaushik Mahata,Information matrix and D-optimal design with Gaussian inputs for Wiener model identification.,2016,69,Automatica,,db/journals/automatica/automatica69.html#MahataSC16,https://doi.org/10.1016/j.automatica.2016.02.026 +Srdjan S. Stankovic,Analysis of robust stochastic approximation algorithms for process identification.,1986,22,Automatica,4,db/journals/automatica/automatica22.html#StankovicK86,https://doi.org/10.1016/0005-1098(86)90053-1 +Carlos Canudas de Wit,Robust torque control design for induction motors: The minimum energy approach.,1997,33,Automatica,1,db/journals/automatica/automatica33.html#WitS97,https://doi.org/10.1016/S0005-1098(96)00142-2 +Yuanyuan Zhao,Localized adaptive bounds for approximation-based backstepping.,2008,44,Automatica,10,db/journals/automatica/automatica44.html#ZhaoF08,https://doi.org/10.1016/j.automatica.2008.02.013 +William D. O'Neill,An interacting control systems analysis of the human lens accommodative controller.,1969,5,Automatica,5,db/journals/automatica/automatica5.html#ONeill69,https://doi.org/10.1016/0005-1098(69)90031-4 +J. Godet,Optimal control of primary coolant temperature in a nuclear plant.,1982,18,Automatica,4,db/journals/automatica/automatica18.html#GodetG82,https://doi.org/10.1016/0005-1098(82)90067-X +Bo Wahlberg,Variance results for identification of cascade systems.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#WahlbergHM09,https://doi.org/10.1016/j.automatica.2009.01.020 +A. Nazli Gündes,Simultaneous stabilization of MIMO systems with integral action controllers.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#Gundes08,https://doi.org/10.1016/j.automatica.2007.08.003 +Peter J. Gawthrop,Real-time computing with applications to data acquisition and control: Edited by D. A. Mellichamp.,1984,20,Automatica,4,db/journals/automatica/automatica20.html#Gawthrop84,https://doi.org/10.1016/0005-1098(84)90115-8 +Pierre Riedinger,Dynamic output feedback for switched linear systems based on a LQG design.,2015,54,Automatica,,db/journals/automatica/automatica54.html#RiedingerV15,https://doi.org/10.1016/j.automatica.2015.02.007 +Delin Chu,The extended J-spectral factorization for descriptor systems.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#ChuT08,https://doi.org/10.1016/j.automatica.2007.03.012 +Hanlong Yang,Observer design and fault diagnosis for state-retarded dynamical systems.,1998,34,Automatica,2,db/journals/automatica/automatica34.html#YangS98,https://doi.org/10.1016/S0005-1098(97)00175-1 +Yi Xiong,Unknown disturbance inputs estimation based on a state functional observer design.,2003,39,Automatica,8,db/journals/automatica/automatica39.html#XiongS03,https://doi.org/10.1016/S0005-1098(03)00087-6 +David P. Hayden,Sparse network identifiability via Compressed Sensing.,2016,68,Automatica,,db/journals/automatica/automatica68.html#HaydenCGT16,https://doi.org/10.1016/j.automatica.2016.01.008 +Aysen D. Akkaya,Robust estimation in multiple linear regression model with non-Gaussian noise.,2008,44,Automatica,2,db/journals/automatica/automatica44.html#AkkayaT08,https://doi.org/10.1016/j.automatica.2007.06.029 +Per Hägg,On optimal input design for networked systems.,2015,53,Automatica,,db/journals/automatica/automatica53.html#HaggW15,https://doi.org/10.1016/j.automatica.2014.12.012 +Manfred Morari,Optimal sensor location in the presence of nonstationary noise.,1980,16,Automatica,5,db/journals/automatica/automatica16.html#MorariO80,https://doi.org/10.1016/0005-1098(80)90067-9 +Masood Dehghan,Discrete-time switching linear system with constraints: Characterization and computation of invariant sets under dwell-time consideration.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#DehghanO12,https://doi.org/10.1016/j.automatica.2012.02.045 +Kang-Zhi Liu,Robust performance synthesis for systems with positive-real uncertainty and an extension to the negative-imaginary case.,2017,82,Automatica,,db/journals/automatica/automatica82.html#LiuOLW17,https://doi.org/10.1016/j.automatica.2017.04.037 +Phebe Vayanos,A constraint sampling approach for multi-stage robust optimization.,2012,48,Automatica,3,db/journals/automatica/automatica48.html#VayanosKR12,https://doi.org/10.1016/j.automatica.2011.12.002 +Lucíola Campestrini,Virtual Reference Feedback Tuning for non-minimum phase plants.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#CampestriniEGB11,https://doi.org/10.1016/j.automatica.2011.04.002 +Adel Djaballah,Construction of parametric barrier functions for dynamical systems using interval analysis.,2017,78,Automatica,,db/journals/automatica/automatica78.html#DjaballahCKB17,https://doi.org/10.1016/j.automatica.2016.12.013 +George S. Axelby,Two golden jubilees.,1989,25,Automatica,3,db/journals/automatica/automatica25.html#AxelbyP89,https://doi.org/10.1016/0005-1098(89)90001-0 +Cheng Song,Persistent awareness coverage control for mobile sensor networks.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#SongLFWG13,https://doi.org/10.1016/j.automatica.2013.02.048 +Shun-ichi Azuma,Broadcast control of multi-agent systems.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#AzumaYS13,https://doi.org/10.1016/j.automatica.2013.04.022 +D. A. Pierre,Properties of a discrete-time enhanced linear-quadratic controller.,1991,27,Automatica,6,db/journals/automatica/automatica27.html#Pierre91,https://doi.org/10.1016/0005-1098(91)90137-Q +Atsushi Kawamoto,The semi-stabilizing solution of generalized algebraic Riccati equation for descriptor systems.,2002,38,Automatica,10,db/journals/automatica/automatica38.html#KawamotoK02,https://doi.org/10.1016/S0005-1098(02)00073-0 +Yuri A. W. Shardt,Closed-loop identification condition for ARMAX models using routine operating data.,2011,47,Automatica,7,db/journals/automatica/automatica47.html#ShardtH11,https://doi.org/10.1016/j.automatica.2011.04.006 +Brian D. O. Anderson,Algebraic characterization of fixed modes in decentralized control.,1981,17,Automatica,5,db/journals/automatica/automatica17.html#AndersonC81,https://doi.org/10.1016/0005-1098(81)90017-0 +Leang-San Shieh,Linear quadratic regulators with eigenvalue placement in a specified region.,1988,24,Automatica,6,db/journals/automatica/automatica24.html#ShiehDG88,https://doi.org/10.1016/0005-1098(88)90058-1 +Thomas Voss,Stabilization and shape control of a 1D piezoelectric Timoshenko beam.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#VossS11,https://doi.org/10.1016/j.automatica.2011.09.026 +Timm Strecker 0001,Output feedback boundary control of 2 and#215* 2 semilinear hyperbolic systems.,2017,83,Automatica,,db/journals/automatica/automatica83.html#StreckerA17,https://doi.org/10.1016/j.automatica.2017.06.026 +S. Sepehr Tabatabaei,An adaptive order/state estimator for linear systems with non-integer time-varying order.,2017,84,Automatica,,db/journals/automatica/automatica84.html#TabatabaeiTT17,https://doi.org/10.1016/j.automatica.2017.06.042 +Ross Drummond,The Aizerman and Kalman conjectures using symmetry.,2018,92,Automatica,,db/journals/automatica/automatica92.html#DrummondD18,https://doi.org/10.1016/j.automatica.2018.02.002 +Lei Guo 0003,Optimal probability density function control for NARMAX stochastic systems.,2008,44,Automatica,7,db/journals/automatica/automatica44.html#GuoWW08,https://doi.org/10.1016/j.automatica.2007.11.028 +Melinda P. Golden,Small amplitude chaos and ergodicity in adaptive control.,1992,28,Automatica,1,db/journals/automatica/automatica28.html#GoldenY92,https://doi.org/10.1016/0005-1098(92)90003-X +G. V. Baliga,On symmetric and unity interconnections between three nonlinear subsystems.,1980,16,Automatica,6,db/journals/automatica/automatica16.html#BaligaR80,https://doi.org/10.1016/0005-1098(80)90014-X +Allan E. Pearson,Finite time interval linear system identification without initial state estimation.,1976,12,Automatica,6,db/journals/automatica/automatica12.html#Pearson76,https://doi.org/10.1016/0005-1098(76)90039-X +J. E. Ackermann,Robustness of sampled-data control systems with uncertain physical plant parameters.,1991,27,Automatica,4,db/journals/automatica/automatica27.html#AckermannH91,https://doi.org/10.1016/0005-1098(91)90061-6 +Michel de Mathelin,Frequency domain conditions for parameter convergence in multivariable recursive identification.,1990,26,Automatica,4,db/journals/automatica/automatica26.html#MathelinB90,https://doi.org/10.1016/0005-1098(90)90051-I +Seong-Jin Park,Robust supervisory control of timed discrete event systems under partial observation based on eligible time bounds: The existence conditions.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#ParkC08,https://doi.org/10.1016/j.automatica.2007.07.019 +Zi-Li Deng,Self-tuning decoupled information fusion Wiener state component filters and their convergence.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#DengGLH08,https://doi.org/10.1016/j.automatica.2007.07.008 +Nima Ghods,Speed regulation in steering-based source seeking.,2010,46,Automatica,2,db/journals/automatica/automatica46.html#GhodsK10,https://doi.org/10.1016/j.automatica.2009.11.023 +Shigeru Akashi,Self-triggered control with tradeoffs in communication and computation.,2018,94,Automatica,,db/journals/automatica/automatica94.html#AkashiIC18,https://doi.org/10.1016/j.automatica.2018.04.028 +Er-Wei Bai,Identification of nonlinear additive FIR systems.,2005,41,Automatica,7,db/journals/automatica/automatica41.html#Bai05,https://doi.org/10.1016/j.automatica.2005.02.001 +Tao Liu 0011,Leader-following attitude consensus of multiple rigid body systems subject to jointly connected switching networks.,2018,92,Automatica,,db/journals/automatica/automatica92.html#LiuH18,https://doi.org/10.1016/j.automatica.2018.02.012 +Panagiotis Patrinos,A new algorithm for solving convex parametric quadratic programs based on graphical derivatives of solution mappings.,2010,46,Automatica,9,db/journals/automatica/automatica46.html#PatrinosS10,https://doi.org/10.1016/j.automatica.2010.06.008 +Meng Zhang 0011,Further deleterious effects of the dissipation obstacle in control-by-interconnection of port-Hamiltonian systems.,2015,61,Automatica,,db/journals/automatica/automatica61.html#ZhangOJS15,https://doi.org/10.1016/j.automatica.2015.08.010 +Michael M. Zavlanos,A dynamical systems approach to weighted graph matching.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#ZavlanosP08,https://doi.org/10.1016/j.automatica.2008.04.009 +Gildas Besançon,Global output feedback tracking control for a class of Lagrangian systems.,2000,36,Automatica,12,db/journals/automatica/automatica36.html#Besancon00,https://doi.org/10.1016/S0005-1098(00)00111-4 +T. Martin,Human software requirements engineering for computer-controlled manufacturing systems.,1983,19,Automatica,6,db/journals/automatica/automatica19.html#Martin83,https://doi.org/10.1016/0005-1098(83)90043-2 +Tomoki Ohsawa,Contact geometry of the Pontryagin maximum principle.,2015,55,Automatica,,db/journals/automatica/automatica55.html#Ohsawa15,https://doi.org/10.1016/j.automatica.2015.02.015 +Leonid B. Freidovich,Periodic motions of the Pendubot via virtual holonomic constraints: Theory and experiments.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#FreidovichRSJ08,https://doi.org/10.1016/j.automatica.2007.07.011 +Daniel Liberzon,Finite data-rate feedback stabilization of switched and hybrid linear systems.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#Liberzon14,https://doi.org/10.1016/j.automatica.2013.11.037 +Farnaz Adib Yaghmaie,Bipartite and cooperative output synchronizations of linear heterogeneous agents: A unified framework.,2017,80,Automatica,,db/journals/automatica/automatica80.html#YaghmaieSLO17,https://doi.org/10.1016/j.automatica.2017.02.033 +Ramdane Tami,Extended output depending normal form.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#TamiBZ13,https://doi.org/10.1016/j.automatica.2013.03.025 +Paolo Castaldi,Identification of dynamic errors-in-variables models.,1996,32,Automatica,4,db/journals/automatica/automatica32.html#CastaldiS96,https://doi.org/10.1016/0005-1098(95)00187-5 +Anastasios N. Delopoulos,Consistent identification of stochastic linear systems with noisy input-output data.,1994,30,Automatica,8,db/journals/automatica/automatica30.html#DelopoulosG94,https://doi.org/10.1016/0005-1098(94)90108-2 +Rudolf Kulhavý,Control and dynamic systems: Advances in theory and applications. Volume 26: System identification and adaptive control: C. T. Leondes (editor).,1990,26,Automatica,1,db/journals/automatica/automatica26.html#Kulhavy90,https://doi.org/10.1016/0005-1098(90)90170-M +P. A. Cook,Application of model reference adaptive control to a benchmark problem.,1994,30,Automatica,4,db/journals/automatica/automatica30.html#Cook94,https://doi.org/10.1016/0005-1098(94)90144-9 +Ka Fai Cedric Yiu,Optimal portfolios with regime switching and value-at-risk constraint.,2010,46,Automatica,6,db/journals/automatica/automatica46.html#YiuLSC10,https://doi.org/10.1016/j.automatica.2010.02.027 +Arvin Dehghani,I design to generalize internal model control.,2006,42,Automatica,11,db/journals/automatica/automatica42.html#DehghaniLA06,https://doi.org/10.1016/j.automatica.2006.06.007 +Dong Yue,Robust stabilization of uncertain systems with unknown input delay.,2004,40,Automatica,2,db/journals/automatica/automatica40.html#Yue04,https://doi.org/10.1016/j.automatica.2003.10.005 +Jie Chen 0003,Multi-player pursuit-evasion games with one superior evader.,2016,71,Automatica,,db/journals/automatica/automatica71.html#ChenZPG16,https://doi.org/10.1016/j.automatica.2016.04.012 +Lin Li 0012,Consensus control for a network of high order continuous-time agents with communication delays.,2018,89,Automatica,,db/journals/automatica/automatica89.html#LiFZL18,https://doi.org/10.1016/j.automatica.2017.12.006 +Fredrik Tjärnström,L2 Model reduction and variance reduction.,2002,38,Automatica,9,db/journals/automatica/automatica38.html#TjarnstromL02,https://doi.org/10.1016/S0005-1098(02)00066-3 +Frédéric Mazenc,Robustness of nonlinear systems with respect to delay and sampling of the controls.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#MazencMD13,https://doi.org/10.1016/j.automatica.2013.02.064 +Gaomin Zhang,New bounded real lemma for discrete-time singular systems.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#ZhangXS08,https://doi.org/10.1016/j.automatica.2007.07.017 +Pietro De Lellis,State estimation of heterogeneous oscillators by means of proximity measurements.,2015,51,Automatica,,db/journals/automatica/automatica51.html#LellisGIM15,https://doi.org/10.1016/j.automatica.2014.10.066 +Damiano Rotondo,Dilated LMI characterization for the robust finite time control of discrete-time uncertain linear systems.,2016,63,Automatica,,db/journals/automatica/automatica63.html#RotondoNP16,https://doi.org/10.1016/j.automatica.2015.10.003 +James K. Mills,Stability of robotic manipulators during transition to and from compliant motion.,1990,26,Automatica,5,db/journals/automatica/automatica26.html#Mills90,https://doi.org/10.1016/0005-1098(90)90003-Z +Alessandro Casavola,Robust constrained predictive control of uncertain norm-bounded linear systems.,2004,40,Automatica,11,db/journals/automatica/automatica40.html#CasavolaFF04,https://doi.org/10.1016/j.automatica.2004.05.016 +Eli Gershon,H∞ output-feedback control of discrete-time systems with state-multiplicative noise.,2008,44,Automatica,2,db/journals/automatica/automatica44.html#GershonS08,https://doi.org/10.1016/j.automatica.2007.06.005 +Mansour Eslami,Computer-aided determination of stability robustness measure of linear discrete-time systems.,1990,26,Automatica,3,db/journals/automatica/automatica26.html#Eslami90,https://doi.org/10.1016/0005-1098(90)90037-I +Denis V. Efimov,Comments on finite-time stability of time-delay systems.,2014,50,Automatica,7,db/journals/automatica/automatica50.html#EfimovPFPR14,https://doi.org/10.1016/j.automatica.2014.05.010 +Osvaldo Maria Grasselli,Robust output regulation and tracking for linear periodic systems under structured uncertainties.,1996,32,Automatica,7,db/journals/automatica/automatica32.html#GrasselliLTV96,https://doi.org/10.1016/0005-1098(96)00046-5 +Graham C. Goodwin,A fundamental control limitation for linear positive systems with application to Type 1 diabetes treatment.,2015,55,Automatica,,db/journals/automatica/automatica55.html#GoodwinMCKF15,https://doi.org/10.1016/j.automatica.2015.02.041 +Yujuan Wang,Fault-tolerant finite time consensus for multiple uncertain nonlinear mechanical systems under single-way directed communication interactions and actuation failures.,2016,63,Automatica,,db/journals/automatica/automatica63.html#WangSKW16,https://doi.org/10.1016/j.automatica.2015.10.049 +Oren Solomon,New stability conditions for systems with distributed delays.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#SolomonF13,https://doi.org/10.1016/j.automatica.2013.08.025 +Björn Wittenmark,Computer control of industrial processes: Edited by S. Bennett and D. A. Linkens.,1984,20,Automatica,2,db/journals/automatica/automatica20.html#Wittenmark84,https://doi.org/10.1016/0005-1098(84)90040-2 +Salim Ibrir,New sufficient conditions for observer-based control of fractional-order uncertain systems.,2015,59,Automatica,,db/journals/automatica/automatica59.html#IbrirB15,https://doi.org/10.1016/j.automatica.2015.06.002 +Sergio M. Savaresi,Funnel filters: a new class of filters for frequency estimation of harmonic signals.,1997,33,Automatica,9,db/journals/automatica/automatica33.html#Savaresi97,https://doi.org/10.1016/S0005-1098(97)00085-X +R. W. Wilde,The characteristics of the human operator engaged in a tracking task.,1963,1,Automatica,1,db/journals/automatica/automatica1.html#WildeW63,https://doi.org/10.1016/0005-1098(63)90003-7 +Xudong Chen,Distributed averaging with linear objective maps.,2016,70,Automatica,,db/journals/automatica/automatica70.html#ChenBB16,https://doi.org/10.1016/j.automatica.2016.03.023 +C. P. Jefferson,Feedforward control of blast furnace stoves.,1979,15,Automatica,2,db/journals/automatica/automatica15.html#Jefferson79,https://doi.org/10.1016/0005-1098(79)90066-9 +C. Verde,On the use of sensitivity functions to design dead-beat control algorithm.,1999,35,Automatica,5,db/journals/automatica/automatica35.html#Verde99,https://doi.org/10.1016/S0005-1098(98)00235-0 +Alireza Mohammadi,Dynamic virtual holonomic constraints for stabilization of closed orbits in underactuated mechanical systems.,2018,94,Automatica,,db/journals/automatica/automatica94.html#MohammadiMC18,https://doi.org/10.1016/j.automatica.2018.04.023 +Wenwu Yu,Some necessary and sufficient conditions for second-order consensus in multi-agent dynamical systems.,2010,46,Automatica,6,db/journals/automatica/automatica46.html#YuCC10,https://doi.org/10.1016/j.automatica.2010.03.006 +Douglas G. Robertson,A method for the estimation of infrequent abrupt changes in nonlinear systems.,1998,34,Automatica,2,db/journals/automatica/automatica34.html#RobertsonL98,https://doi.org/10.1016/S0005-1098(97)00192-1 +Chao Liu 0003,Adaptive task-space regulation of rigid-link flexible-joint robots with uncertain kinematics.,2008,44,Automatica,7,db/journals/automatica/automatica44.html#LiuCS08,https://doi.org/10.1016/j.automatica.2007.10.039 +David C. Hyland,Some majorant robustness results for discrete-time systems.,1991,27,Automatica,1,db/journals/automatica/automatica27.html#HylandJ91,https://doi.org/10.1016/0005-1098(91)90016-U +Edoardo Serpelloni,Bang-bang hybrid stabilization of perturbed double-integrators.,2016,69,Automatica,,db/journals/automatica/automatica69.html#SerpelloniMD16,https://doi.org/10.1016/j.automatica.2016.02.028 +Jie Bao 0002,A passivity-based analysis for decentralized integral controllability.,2002,38,Automatica,2,db/journals/automatica/automatica38.html#BaoMF02,https://doi.org/10.1016/S0005-1098(01)00193-5 +Kaiqi Xiong,Necessary and sufficient conditions for the existence of a G-type Lyapunov function.,1995,31,Automatica,5,db/journals/automatica/automatica31.html#Xiong95,https://doi.org/10.1016/0005-1098(94)00170-N +Joachim Deutscher,Output feedback control of general linear heterodirectional hyperbolic ODE-PDE-ODE systems.,2018,95,Automatica,,db/journals/automatica/automatica95.html#DeutscherGK18,https://doi.org/10.1016/j.automatica.2018.06.021 +Miroslav Halás,An algebraic framework generalizing the concept of transfer functions to nonlinear systems.,2008,44,Automatica,5,db/journals/automatica/automatica44.html#Halas08,https://doi.org/10.1016/j.automatica.2007.09.008 +Marc De Neyer,Comments on 'practical design of nonlinear fuzzy controllers with stability analysis for regulating processes with unknown mathematical models'.,1996,32,Automatica,11,db/journals/automatica/automatica32.html#NeyerG96,https://doi.org/10.1016/S0005-1098(96)00106-9 +Yasuaki Oishi,Robust semidefinite programming problems with general nonlinear parameter dependence: Approaches using the DC-representations.,2012,48,Automatica,11,db/journals/automatica/automatica48.html#OishiA12,https://doi.org/10.1016/j.automatica.2012.06.090 +Vladimír Kucera,Fundamental theorem of state feedback for singular systems.,1988,24,Automatica,5,db/journals/automatica/automatica24.html#KuceraZ88,https://doi.org/10.1016/0005-1098(88)90112-4 +Jian-Xin Xu 0001,Initial state iterative learning for final state control in motion systems.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#XuH08,https://doi.org/10.1016/j.automatica.2008.05.017 +Er-Wei Bai,Robust tracking of piecewise linear trajectories with binary sensor networks.,2015,61,Automatica,,db/journals/automatica/automatica61.html#BaiBMD15,https://doi.org/10.1016/j.automatica.2015.07.012 +Yury Stepanenko,Robust adaptive control of a class of nonlinear mechanical systems with unbounded and fast-varying uncertainties.,1992,28,Automatica,2,db/journals/automatica/automatica28.html#StepanenkoY92,https://doi.org/10.1016/0005-1098(92)90114-U +Matin Jafarian,Formation control of a multi-agent system subject to Coulomb friction.,2015,61,Automatica,,db/journals/automatica/automatica61.html#JafarianVPSS15,https://doi.org/10.1016/j.automatica.2015.08.021 +Georg S. Seyboth,On robust synchronization of heterogeneous linear multi-agent systems with static couplings.,2015,53,Automatica,,db/journals/automatica/automatica53.html#SeybothDJFA15,https://doi.org/10.1016/j.automatica.2015.01.031 +Chien-Shu Hsieh,State estimation for descriptor systems via the unknown input filtering method.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#Hsieh13,https://doi.org/10.1016/j.automatica.2013.01.049 +Gianluigi Pillonetto,A new kernel-based approach for linear system identification.,2010,46,Automatica,1,db/journals/automatica/automatica46.html#PillonettoN10,https://doi.org/10.1016/j.automatica.2009.10.031 +Torsten Söderström,Errors-in-variables methods in system identification.,2007,43,Automatica,6,db/journals/automatica/automatica43.html#Soderstrom07,https://doi.org/10.1016/j.automatica.2006.11.025 +Frédéric Mazenc,Design of continuous-discrete observers for time-varying nonlinear systems.,2015,57,Automatica,,db/journals/automatica/automatica57.html#MazencAM15,https://doi.org/10.1016/j.automatica.2015.04.016 +Martin Gugat,Boundary feedback stabilization of the Schlögl system.,2015,51,Automatica,,db/journals/automatica/automatica51.html#GugatT15,https://doi.org/10.1016/j.automatica.2014.10.106 +Claudio Altafini,Minimal eventually positive realizations of externally positive systems.,2016,68,Automatica,,db/journals/automatica/automatica68.html#Altafini16,https://doi.org/10.1016/j.automatica.2016.01.072 +Luc Pronzato,Optimal experimental design and some related control problems.,2008,44,Automatica,2,db/journals/automatica/automatica44.html#Pronzato08,https://doi.org/10.1016/j.automatica.2007.05.016 +David Q. Mayne,Model predictive control: Recent developments and future promise.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#Mayne14,https://doi.org/10.1016/j.automatica.2014.10.128 +Torsten Söderström,Comparison of some instrumental variable methods - Consistency and accuracy aspects.,1981,17,Automatica,1,db/journals/automatica/automatica17.html#SoderstromS81,https://doi.org/10.1016/0005-1098(81)90087-X +Pawel J. Nowacki,The importance of automatic control.,1969,5,Automatica,5,db/journals/automatica/automatica5.html#Nowacki69a,https://doi.org/10.1016/0005-1098(69)90021-1 +Nie-Zen Yen,A multirate controller design of linear periodic time delay systems.,1992,28,Automatica,6,db/journals/automatica/automatica28.html#YenW92,https://doi.org/10.1016/0005-1098(92)90071-M +M. S. Ahmed,State space based dual-rate self-tuning.,1994,30,Automatica,12,db/journals/automatica/automatica30.html#Ahmed94a,https://doi.org/10.1016/0005-1098(94)90062-0 +David W. K. Yeung,Subgame consistent cooperative solution for NTU dynamic games via variable weights.,2015,59,Automatica,,db/journals/automatica/automatica59.html#YeungP15,https://doi.org/10.1016/j.automatica.2015.01.030 +Yulong Huang,Gaussian filter for nonlinear systems with correlated noises at the same epoch.,2015,60,Automatica,,db/journals/automatica/automatica60.html#HuangZWZ15,https://doi.org/10.1016/j.automatica.2015.06.035 +M.-S. Chen,Linear time-varying system control based on the inversion transformation.,1997,33,Automatica,4,db/journals/automatica/automatica33.html#ChenH97,https://doi.org/10.1016/S0005-1098(96)00202-6 +G. B. Mahapatra,Eigenvalue convergence properties of spatially discretised partial differential equations.,1978,14,Automatica,1,db/journals/automatica/automatica14.html#Mahapatra78,https://doi.org/10.1016/0005-1098(78)90081-X +Xue-Jun Xie,Adaptive state-feedback stabilization of high-order stochastic systems with nonlinear parameterization.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#XieT09,https://doi.org/10.1016/j.automatica.2008.10.006 +E. J. Hannan,Linear estimation of ARMA processes.,1983,19,Automatica,4,db/journals/automatica/automatica19.html#HannanK83,https://doi.org/10.1016/0005-1098(83)90061-4 +Xingkang He,Consistent distributed state estimation with global observability over sensor network.,2018,92,Automatica,,db/journals/automatica/automatica92.html#HeXF18,https://doi.org/10.1016/j.automatica.2018.03.029 +B. M. Mohan,Linear time-invariant distributed parameter system identification via orthogonal functions.,1991,27,Automatica,2,db/journals/automatica/automatica27.html#MohanD91,https://doi.org/10.1016/0005-1098(91)90091-F +Xin Xin,Swing-up control based on virtual composite links for n-link underactuated robot with passive first joint.,2009,45,Automatica,9,db/journals/automatica/automatica45.html#XinSYL09,https://doi.org/10.1016/j.automatica.2009.04.023 +Mustafa Khammash,Time-varying control and the robust performance of systems with structured norm-bounded perturbations.,1992,28,Automatica,4,db/journals/automatica/automatica28.html#KhammashD92,https://doi.org/10.1016/0005-1098(92)90043-F +George S. Axelby,New address - Present procedures.,1987,23,Automatica,1,db/journals/automatica/automatica23.html#Axelby87,https://doi.org/10.1016/0005-1098(87)90111-7 +Xing-Gang Yan,Decentralised sliding mode control for nonminimum phase interconnected systems based on a reduced-order compensator.,2006,42,Automatica,10,db/journals/automatica/automatica42.html#YanSE06,https://doi.org/10.1016/j.automatica.2006.05.017 +Dawei Shi,An event-triggered approach to state estimation with multiple point- and set-valued measurements.,2014,50,Automatica,6,db/journals/automatica/automatica50.html#ShiCS14a,https://doi.org/10.1016/j.automatica.2014.04.004 +Heng Wang 0002,The nonlinearity structure of point feature SLAM problems with spherical covariance matrices.,2013,49,Automatica,10,db/journals/automatica/automatica49.html#WangHFD13,https://doi.org/10.1016/j.automatica.2013.07.025 +Chee Pin Tan,Sliding mode observers for detection and reconstruction of sensor faults.,2002,38,Automatica,10,db/journals/automatica/automatica38.html#TanE02,https://doi.org/10.1016/S0005-1098(02)00098-5 +Bryon R. Maner,Nonlinear model predictive control of a simulated multivariable polymerization reactor using second-order Volterra models.,1996,32,Automatica,9,db/journals/automatica/automatica32.html#ManerDOP96,https://doi.org/10.1016/0005-1098(96)00086-6 +Jürgen Ackermann,On the synthesis of linear control systems with specified characteristics.,1977,13,Automatica,1,db/journals/automatica/automatica13.html#Ackermann77,https://doi.org/10.1016/0005-1098(77)90012-7 +Jang-Lee Hong,A derivation of the Glover-Doyle algorithms for general H∞ control problems.,1996,32,Automatica,4,db/journals/automatica/automatica32.html#HongT96,https://doi.org/10.1016/0005-1098(95)00117-4 +Harm H. M. Weerts,Identifiability of linear dynamic networks.,2018,89,Automatica,,db/journals/automatica/automatica89.html#WeertsHD18,https://doi.org/10.1016/j.automatica.2017.12.013 +Kentaro Kameyama,Subspace-based prediction of linear time-varying stochastic systems.,2007,43,Automatica,12,db/journals/automatica/automatica43.html#KameyamaO07,https://doi.org/10.1016/j.automatica.2007.03.029 +Thierry-Marie Guerra,LMI-based relaxed nonquadratic stabilization conditions for nonlinear systems in the Takagi-Sugeno's form.,2004,40,Automatica,5,db/journals/automatica/automatica40.html#GuerraV04,https://doi.org/10.1016/j.automatica.2003.12.014 +Laura Giarré,Model quality evaluation in set membership identification.,1997,33,Automatica,6,db/journals/automatica/automatica33.html#GiarreKM97,https://doi.org/10.1016/S0005-1098(97)00007-1 +Alberto Bemporad,Anti-windup synthesis via sampled-data piecewise affine optimal control.,2004,40,Automatica,4,db/journals/automatica/automatica40.html#BemporadTZ04,https://doi.org/10.1016/j.automatica.2003.11.004 +Yu Kawano,PBH tests for nonlinear systems.,2017,80,Automatica,,db/journals/automatica/automatica80.html#KawanoO17,https://doi.org/10.1016/j.automatica.2017.02.027 +Mohammed Chadli,H_/H∞ fault detection filter design for discrete-time Takagi-Sugeno fuzzy system.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#ChadliAD13,https://doi.org/10.1016/j.automatica.2013.03.014 +Weiming Xiang,Stabilization of switched continuous-time systems with all modes unstable via dwell time switching.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#XiangX14,https://doi.org/10.1016/j.automatica.2013.12.028 +Johan Thunberg,Consensus and formation control on SE(3) for switching topologies.,2016,66,Automatica,,db/journals/automatica/automatica66.html#ThunbergGH16,https://doi.org/10.1016/j.automatica.2015.12.035 +Konrad Szafnicki,Knowledge-based real-time fault detection and supervision of urban drainage systems.,1996,32,Automatica,7,db/journals/automatica/automatica32.html#SzafnickiG96,https://doi.org/10.1016/0005-1098(96)00045-3 +Pedro Albertos,Multivariable control systems - an engineering approach.,2005,41,Automatica,9,db/journals/automatica/automatica41.html#AlbertosSC05,https://doi.org/10.1016/j.automatica.2005.04.003 +Mark French,LQ performance bounds for adaptive output feedback controllers for functionally uncertain nonlinear systems.,2002,38,Automatica,4,db/journals/automatica/automatica38.html#FrenchSR02,https://doi.org/10.1016/S0005-1098(01)00218-7 +Emmanuel Bernuau,Retraction obstruction to time-varying stabilization.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#BernuauPM13,https://doi.org/10.1016/j.automatica.2013.03.012 +Stefano Battilotti,Dwell-time controllers for stochastic systems with switching Markov chain.,2005,41,Automatica,6,db/journals/automatica/automatica41.html#BattilottiS05,https://doi.org/10.1016/j.automatica.2004.11.024 +Youshen Xia,Analysis and application of a novel fast algorithm for 2-D ARMA model parameter estimation.,2013,49,Automatica,10,db/journals/automatica/automatica49.html#XiaDZ13,https://doi.org/10.1016/j.automatica.2013.07.007 +Johan Schoukens,Study of the LTI relations between the outputs of two coupled Wiener systems and its application to the generation of initial estimates for Wiener-Hammerstein systems.,2008,44,Automatica,7,db/journals/automatica/automatica44.html#SchoukensPE08,https://doi.org/10.1016/j.automatica.2007.10.017 +Danwei Wang,Robust motion and force control of constrained manipulators by learning.,1995,31,Automatica,2,db/journals/automatica/automatica31.html#WangSC95,https://doi.org/10.1016/0005-1098(94)00066-R +Xue Luo,A novel suboptimal method for solving polynomial filtering problems.,2015,62,Automatica,,db/journals/automatica/automatica62.html#LuoJCY15,https://doi.org/10.1016/j.automatica.2015.09.001 +Emre özkan,Marginalized adaptive particle filtering for nonlinear models with unknown time-varying noise parameters.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#OzkanSSLG13,https://doi.org/10.1016/j.automatica.2013.02.046 +Kehui Wei,An iterative design procedure for simultaneous stabilization of MIMO systems.,1988,24,Automatica,5,db/journals/automatica/automatica24.html#WeiB88,https://doi.org/10.1016/0005-1098(88)90111-2 +Rolf Isermann,Preface.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#IsermannF93,https://doi.org/10.1016/0005-1098(93)90087-A +ömer Morgül,A dynamic control law for the wave equation.,1994,30,Automatica,11,db/journals/automatica/automatica30.html#Morgul94a,https://doi.org/10.1016/0005-1098(94)90083-3 +Thomas E. Marlin,Integrated process control and automation: John E. Rijnsdorp.,1994,30,Automatica,2,db/journals/automatica/automatica30.html#Marlin94,https://doi.org/10.1016/0005-1098(94)90040-X +Huibert Kwakernaak,Robert Bitmead succeeds retiring Editor Frank L. Lewis.,2002,38,Automatica,1,db/journals/automatica/automatica38.html#Kwakernaak02,https://doi.org/10.1016/S0005-1098(01)00205-9 +Magdi S. Mahmoud,Reliable decentralized control of interconnected discrete delay systems.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#Mahmoud12,https://doi.org/10.1016/j.automatica.2012.02.011 +Hui Zhang,Exponential stability of stochastic systems with hysteresis switching.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#ZhangWX14,https://doi.org/10.1016/j.automatica.2013.11.032 +Brian D. O. Anderson,Identifiability of linear stochastic systems operating under linear feedback.,1982,18,Automatica,2,db/journals/automatica/automatica18.html#AndersonG82,https://doi.org/10.1016/0005-1098(82)90108-X +Yiannis Karayiannidis,Adaptive control of robot contact tasks with on-line learning of planar surfaces.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#KarayiannidisD09,https://doi.org/10.1016/j.automatica.2009.06.023 +T. Zwartbol,Attitude estimation and control of manoeuvring spacecraft.,1985,21,Automatica,5,db/journals/automatica/automatica21.html#ZwartbolDTW85,https://doi.org/10.1016/0005-1098(85)90001-9 +W. D. Collins,Singular perturbation analysis of discrete control systems: D. S. Naidu and A. K. Rao.,1987,23,Automatica,5,db/journals/automatica/automatica23.html#Collins87,https://doi.org/10.1016/0005-1098(87)90067-7 +Bing Chen,Tracking of multiple maneuvering targets in clutter using IMM/JPDA filtering and fixed-lag smoothing.,2001,37,Automatica,2,db/journals/automatica/automatica37.html#ChenT01,https://doi.org/10.1016/S0005-1098(00)00158-8 +Jing Li 0020,"Comments on ""Adaptive ILC for a class of discrete-time systems with iteration-varying trajectory and random initial condition"".",2010,46,Automatica,3,db/journals/automatica/automatica46.html#LiLC10,https://doi.org/10.1016/j.automatica.2010.01.004 +Chyi Hwang,Solution of a non-convex optimization arising in PI/PID control design.,2002,38,Automatica,11,db/journals/automatica/automatica38.html#HwangH02,https://doi.org/10.1016/S0005-1098(02)00115-2 +Chunlei Zhang,Extremum seeking for moderately unstable systems and for autonomous vehicle target tracking without position measurements.,2007,43,Automatica,10,db/journals/automatica/automatica43.html#ZhangSK07,https://doi.org/10.1016/j.automatica.2007.03.009 +Xunyuan Yin,Distributed moving horizon state estimation of two-time-scale nonlinear systems.,2017,79,Automatica,,db/journals/automatica/automatica79.html#YinL17,https://doi.org/10.1016/j.automatica.2017.01.023 +Guojie Zheng,Stabilization for the multi-dimensional heat equation with disturbance on the controller.,2017,82,Automatica,,db/journals/automatica/automatica82.html#ZhengL17,https://doi.org/10.1016/j.automatica.2017.04.011 +Seiichi Nakamori,New design of linear least-squares fixed-interval smoother using covariance information.,1981,17,Automatica,4,db/journals/automatica/automatica17.html#NakamoriH81a,https://doi.org/10.1016/0005-1098(81)90042-X +Young Man Cho,Fast recursive identification of state space models via exploitation of displacement structure.,1994,30,Automatica,1,db/journals/automatica/automatica30.html#ChoXK94,https://doi.org/10.1016/0005-1098(94)90228-3 +Marc Jungers,A gametheoretic approach for non-uniform pole shifting and pole homothety.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#JungersACP13,https://doi.org/10.1016/j.automatica.2012.09.021 +Edward J. Davison,Characterizations of decentralized fixed modes for interconnected systems.,1983,19,Automatica,2,db/journals/automatica/automatica19.html#DavisonO83,https://doi.org/10.1016/0005-1098(83)90089-4 +Torsten Söderström,Periodic signal analysis by maximum likelihood modeling of orbits of nonlinear ODEs.,2005,41,Automatica,5,db/journals/automatica/automatica41.html#SoderstromWA05,https://doi.org/10.1016/j.automatica.2004.11.033 +Yang Su,"Comments on ""Model predictive control for systems with stochastic multiplicative uncertainty and probabilistic constraints"" [Automatica 45 (2009) 167-172].",2011,47,Automatica,2,db/journals/automatica/automatica47.html#SuTL11,https://doi.org/10.1016/j.automatica.2010.10.042 +Karl Johan åström,Theory and applications of self-tuning regulators.,1977,13,Automatica,5,db/journals/automatica/automatica13.html#AstromBLW77,https://doi.org/10.1016/0005-1098(77)90067-X +Hossny El-Sherief,Suboptimal control of linear stochastic multivariable systems with unknown parameters.,1982,18,Automatica,1,db/journals/automatica/automatica18.html#El-SheriefS82,https://doi.org/10.1016/0005-1098(82)90032-2 +Torsten Cegrell,Authors' reply.,1976,12,Automatica,3,db/journals/automatica/automatica12.html#CegrellH76,https://doi.org/10.1016/0005-1098(76)90032-7 +Y. Nakamori,Development and application of an interactive modeling support system.,1989,25,Automatica,2,db/journals/automatica/automatica25.html#Nakamori89,https://doi.org/10.1016/0005-1098(89)90072-1 +Fernando H. D. Guaracy,The discrete-time controller for the H∞/LTR problem with mixed-sensitivity properties.,2015,58,Automatica,,db/journals/automatica/automatica58.html#GuaracyFP15,https://doi.org/10.1016/j.automatica.2015.04.030 +F. Ley,Programmable logic controllers - Architecture and applications : Gilles Michel.,1992,28,Automatica,3,db/journals/automatica/automatica28.html#Ley92,https://doi.org/10.1016/0005-1098(92)90195-L +Matthias Heinkenschloss,Balanced truncation model reduction for systems with inhomogeneous initial conditions.,2011,47,Automatica,3,db/journals/automatica/automatica47.html#HeinkenschlossRA11,https://doi.org/10.1016/j.automatica.2010.12.002 +Yong Wang,Bifurcation control of rotating stall with actuator magnitude and rate limits: Part II - control synthesis and comparison with experiments.,2002,38,Automatica,4,db/journals/automatica/automatica38.html#WangYM02,https://doi.org/10.1016/S0005-1098(01)00241-2 +Alberto Cavallo,A sliding manifold approach for vibration reduction of flexible systems.,1999,35,Automatica,10,db/journals/automatica/automatica35.html#CavalloMS99,https://doi.org/10.1016/S0005-1098(99)00068-0 +Stefan Ljung,Error propagation properties of recursive least-squares adaptation algorithms.,1985,21,Automatica,2,db/journals/automatica/automatica21.html#LjungL85,https://doi.org/10.1016/0005-1098(85)90110-4 +Violet Mwaffo,Linear analysis of the vectorial network model in the presence of leaders.,2015,58,Automatica,,db/journals/automatica/automatica58.html#MwaffoP15,https://doi.org/10.1016/j.automatica.2015.05.018 +Michèle Basseville,Detecting changes in signals and systems - A survey.,1988,24,Automatica,3,db/journals/automatica/automatica24.html#Basseville88,https://doi.org/10.1016/0005-1098(88)90073-8 +Luca De Cicco,Robust stability analysis of Smith predictor-based congestion control algorithms for computer networks.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#CiccoMN11,https://doi.org/10.1016/j.automatica.2011.02.036 +Shuzhi Sam Ge,Non-smooth Lyapunov function-based global stabilization for quantum filters.,2012,48,Automatica,6,db/journals/automatica/automatica48.html#GeVH12,https://doi.org/10.1016/j.automatica.2012.03.001 +Philippe Martin 0001,Controllability of the 1D Schrödinger equation using flatness.,2018,91,Automatica,,db/journals/automatica/automatica91.html#MartinRR18,https://doi.org/10.1016/j.automatica.2018.01.005 +Gildas Besançon,High-gain observation with disturbance attenuation and application to robust fault detection.,2003,39,Automatica,6,db/journals/automatica/automatica39.html#Besancon03,https://doi.org/10.1016/S0005-1098(03)00059-1 +Cristiano Maria Verrelli,Persistency of excitation and position-sensorless control of permanent magnet synchronous motors.,2018,95,Automatica,,db/journals/automatica/automatica95.html#VerrelliTL18,https://doi.org/10.1016/j.automatica.2018.05.004 +Baocang Ding,Output feedback robust MPC with one free control move for the linear polytopic uncertain system with bounded disturbance.,2014,50,Automatica,11,db/journals/automatica/automatica50.html#DingP14,https://doi.org/10.1016/j.automatica.2014.10.021 +Miroslaw Galicki,Finite-time control of robotic manipulators.,2015,51,Automatica,,db/journals/automatica/automatica51.html#Galicki15,https://doi.org/10.1016/j.automatica.2014.10.089 +S. Torkel Glad,Robustness of nonlinear state feedback - A survey.,1987,23,Automatica,4,db/journals/automatica/automatica23.html#Glad87,https://doi.org/10.1016/0005-1098(87)90072-0 +A. Nazli Gündes,PID controller synthesis for a class of unstable MIMO plants with I/O delays.,2007,43,Automatica,1,db/journals/automatica/automatica43.html#GundesOO07,https://doi.org/10.1016/j.automatica.2006.08.009 +Elnaz Kanani Kuchesfehani,Incentive equilibrium strategies in dynamic games played over event trees.,2016,71,Automatica,,db/journals/automatica/automatica71.html#KuchesfehaniZ16,https://doi.org/10.1016/j.automatica.2016.04.026 +Zhijian Ji,Interconnection topologies for multi-agent coordination under leader-follower framework.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#JiWLW09,https://doi.org/10.1016/j.automatica.2009.09.002 +Chris Vermillion,Stable hierarchical model predictive control using an inner loop reference model and lambda-contractive terminal constraint sets.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#VermillionMK14,https://doi.org/10.1016/j.automatica.2013.10.009 +Mei Liu,Properties and stability analysis of discrete-time negative imaginary systems.,2017,83,Automatica,,db/journals/automatica/automatica83.html#LiuX17,https://doi.org/10.1016/j.automatica.2017.05.006 +C. Richard Johnson Jr.,Computer-controlled systems: Theory and design : Karl J. åström and Björn Wittenmark.,1985,21,Automatica,6,db/journals/automatica/automatica21.html#Johnson85,https://doi.org/10.1016/0005-1098(85)90050-0 +Erliang Zhang,Identification of multivariable dynamic errors-in-variables system with arbitrary inputs.,2017,82,Automatica,,db/journals/automatica/automatica82.html#ZhangP17,https://doi.org/10.1016/j.automatica.2017.04.031 +Do Wan Kim,Tracking of REMUS autonomous underwater vehicles with actuator saturations.,2015,58,Automatica,,db/journals/automatica/automatica58.html#Kim15,https://doi.org/10.1016/j.automatica.2015.04.029 +Hongyi Li 0001,Fault-tolerant control of Markovian jump stochastic systems via the augmented sliding mode observer approach.,2014,50,Automatica,7,db/journals/automatica/automatica50.html#LiGSZ14,https://doi.org/10.1016/j.automatica.2014.04.006 +Alberto Cavallo,Supervised control of buck-boost converters for aeronautical applications.,2017,83,Automatica,,db/journals/automatica/automatica83.html#CavalloCG17,https://doi.org/10.1016/j.automatica.2017.05.005 +Ilia G. Polushin,On the model-based approach to nonlinear networked control systems.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#PolushinLL08,https://doi.org/10.1016/j.automatica.2008.01.031 +Kai Cai,Local average consensus in distributed measurement of spatial-temporal varying parameters: 1D case.,2015,52,Automatica,,db/journals/automatica/automatica52.html#CaiAYM15,https://doi.org/10.1016/j.automatica.2014.11.002 +Luca Benvenuti,Individual cylinder characteristic estimation for a spark injection engine.,2003,39,Automatica,7,db/journals/automatica/automatica39.html#BenvenutiBGS03,https://doi.org/10.1016/S0005-1098(03)00077-3 +Behçet Açikmese,Lossless convexification of a class of optimal control problems with non-convex control constraints.,2011,47,Automatica,2,db/journals/automatica/automatica47.html#AcikmeseB11,https://doi.org/10.1016/j.automatica.2010.10.037 +Christian Bunse,Improved software quality through improved development process descriptions.,1998,34,Automatica,1,db/journals/automatica/automatica34.html#BunseVG98,https://doi.org/10.1016/S0005-1098(97)00161-1 +Yu Pan,Ground-state stabilization of quantum finite-level systems by dissipation.,2016,65,Automatica,,db/journals/automatica/automatica65.html#PanUJ16,https://doi.org/10.1016/j.automatica.2015.11.041 +Oded Yaniv,An algorithm for the adaptation of a robust controller to reduced plant uncertainty.,1990,26,Automatica,4,db/journals/automatica/automatica26.html#YanivGN90,https://doi.org/10.1016/0005-1098(90)90048-M +Soo Hee Han,Minimax FIR smoothers for deterministic continuous-time state space models.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#HanKK09,https://doi.org/10.1016/j.automatica.2009.02.022 +Krishnan Balachandran,Controllability of nonlinear systems consisting of a bilinear mode with time-varying delays in control.,1984,20,Automatica,2,db/journals/automatica/automatica20.html#BalachandranS84,https://doi.org/10.1016/0005-1098(84)90035-9 +Jonas Sjöberg,Nonlinear black-box modeling in system identification: a unified overview.,1995,31,Automatica,12,db/journals/automatica/automatica31.html#SjobergZLBDGHJ95,https://doi.org/10.1016/0005-1098(95)00120-8 +Riccardo Porreca,Partitioning datasets based on equalities among parameters.,2010,46,Automatica,2,db/journals/automatica/automatica46.html#PorrecaF10,https://doi.org/10.1016/j.automatica.2009.12.006 +D. Metz,Optimal ride height and pitch control for championship race cars.,1986,22,Automatica,5,db/journals/automatica/automatica22.html#MetzM86,https://doi.org/10.1016/0005-1098(86)90061-0 +David L. Kleinman,Continuous-discrete gain transformation methods for linear feedback control.,1977,13,Automatica,4,db/journals/automatica/automatica13.html#KleinmanR77,https://doi.org/10.1016/0005-1098(77)90027-9 +Alessandro Chiuso,Asymptotic variance of subspace methods by data orthogonalization and model decoupling: a comparative analysis.,2004,40,Automatica,10,db/journals/automatica/automatica40.html#ChiusoP04c,https://doi.org/10.1016/j.automatica.2004.05.009 +J. P. Norton,System identification and control design using P.I.M. + software: I. D. Landau.,1991,27,Automatica,6,db/journals/automatica/automatica27.html#Norton91,https://doi.org/10.1016/0005-1098(91)90148-U +O. I. Aven,Principles of optimum planning and regulating the metal supply system in the soviet union.,1969,5,Automatica,2,db/journals/automatica/automatica5.html#AvenLM69,https://doi.org/10.1016/0005-1098(69)90009-0 +Subhrakanti Dey,Kalman filtering with faded measurements.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#DeyLE09,https://doi.org/10.1016/j.automatica.2009.06.025 +Graham C. Goodwin,Rapprochement between continuous and discrete model reference adaptive control.,1986,22,Automatica,2,db/journals/automatica/automatica22.html#GoodwinLMM86,https://doi.org/10.1016/0005-1098(86)90081-6 +Alessandro Chiuso,On the ill-conditioning of subspace identification with inputs.,2004,40,Automatica,4,db/journals/automatica/automatica40.html#ChiusoP04,https://doi.org/10.1016/j.automatica.2003.11.009 +Michel de Mathelin,Comments on a robust model reference adaptive control for non-minimum phase systems with unknown or time-varying delay.,2002,38,Automatica,4,db/journals/automatica/automatica38.html#Mathelin02,https://doi.org/10.1016/S0005-1098(01)00249-7 +Alain Haurie,A stochastic control model of economic growth with environmental disaster prevention.,2006,42,Automatica,8,db/journals/automatica/automatica42.html#HaurieM06,https://doi.org/10.1016/j.automatica.2005.10.018 +Rubiyah Yusof,Self-tuning PID control: A multivariable derivation and application.,1994,30,Automatica,12,db/journals/automatica/automatica30.html#YusofOK94,https://doi.org/10.1016/0005-1098(94)90059-0 +Olav Aarna,Automation of chemical plant modelling.,1980,16,Automatica,6,db/journals/automatica/automatica16.html#Aarna80,https://doi.org/10.1016/0005-1098(80)90007-2 +ülle Kotta,On realizability of neural networks-based input-output models in the classical state-space form.,2006,42,Automatica,7,db/journals/automatica/automatica42.html#KottaCN06,https://doi.org/10.1016/j.automatica.2006.03.003 +Lei Zhou,Stability analysis of switched linear singular systems.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#ZhouHZ13,https://doi.org/10.1016/j.automatica.2013.02.002 +Tao Cheng,A neural network solution for fixed-final time optimal control of nonlinear systems.,2007,43,Automatica,3,db/journals/automatica/automatica43.html#ChengLA07,https://doi.org/10.1016/j.automatica.2006.09.021 +Hiroshi Ito 0001,Construction of Lyapunov-Krasovskii functionals for networks of iISS retarded systems in small-gain formulation.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#ItoJP13,https://doi.org/10.1016/j.automatica.2013.08.020 +Bo Yang,Forced consensus in networks of double integrator systems with delayed input.,2010,46,Automatica,3,db/journals/automatica/automatica46.html#YangF10,https://doi.org/10.1016/j.automatica.2010.01.013 +Siyu Lv,Optimal switching under a hybrid diffusion model and applications to stock trading.,2018,94,Automatica,,db/journals/automatica/automatica94.html#LvWZ18,https://doi.org/10.1016/j.automatica.2018.04.048 +Fernando Castaños,Asymptotic stabilization via control by interconnection of port-Hamiltonian systems.,2009,45,Automatica,7,db/journals/automatica/automatica45.html#CastanosOSA09,https://doi.org/10.1016/j.automatica.2009.03.015 +Jun Hu,Position tracking control of an induction motor via partial state feedback.,1995,31,Automatica,7,db/journals/automatica/automatica31.html#HuDQ95,https://doi.org/10.1016/0005-1098(95)00007-J +Xian-Ming Zhang,Delay-dependent stabilization of linear systems with time-varying state and input delays.,2005,41,Automatica,8,db/journals/automatica/automatica41.html#ZhangWSH05,https://doi.org/10.1016/j.automatica.2005.03.009 +A. Vanecek,Controlled and conditioned invariants in linear system theory: Guiseppe Basile and Giovanni Marro.,1994,30,Automatica,2,db/journals/automatica/automatica30.html#Vanecek94,https://doi.org/10.1016/0005-1098(94)90042-6 +Andrea Paoli,Active fault tolerant control of discrete event systems using online diagnostics.,2011,47,Automatica,4,db/journals/automatica/automatica47.html#PaoliSL11,https://doi.org/10.1016/j.automatica.2011.01.007 +Marc Haest,ESPION: An expert system for system identification.,1990,26,Automatica,1,db/journals/automatica/automatica26.html#HaestBGW90,https://doi.org/10.1016/0005-1098(90)90160-J +K. J. Hunt,Implied polynomial matrix equations in multivariable stochastic optimal control.,1991,27,Automatica,2,db/journals/automatica/automatica27.html#HuntS91,https://doi.org/10.1016/0005-1098(91)90088-J +Ruth F. Curtain,Linear-quadratic control: An introduction.,1997,33,Automatica,5,db/journals/automatica/automatica33.html#Curtain97a,https://doi.org/10.1016/S0005-1098(97)88641-4 +Y.-C. Juan,Optimal hold functions for sampled data regulation.,1991,27,Automatica,1,db/journals/automatica/automatica27.html#JuanK91,https://doi.org/10.1016/0005-1098(91)90018-W +Shawn A. Hall,Real-time control of a nonlinear electromagnetic actuator.,1989,25,Automatica,1,db/journals/automatica/automatica25.html#Hall89,https://doi.org/10.1016/0005-1098(89)90116-7 +J. C. Wang,A microcomputer-based control system for the total artificial heart.,1987,23,Automatica,3,db/journals/automatica/automatica23.html#WangLM87,https://doi.org/10.1016/0005-1098(87)90001-X +Emanuele Garone,Clock synchronization protocol for wireless sensor networks with bounded communication delays.,2015,59,Automatica,,db/journals/automatica/automatica59.html#GaroneGL15,https://doi.org/10.1016/j.automatica.2015.06.014 +Yong Hu,Gait generation and control for biped robots with underactuation degree one.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#HuYL11,https://doi.org/10.1016/j.automatica.2011.04.018 +Mario Sznaier,Heuristically enhanced feedback control of constrained systems: The minimum time case.,1993,29,Automatica,2,db/journals/automatica/automatica29.html#SznaierD93,https://doi.org/10.1016/0005-1098(93)90135-G +Giulia Piovan,On frame and orientation localization for relative sensing networks.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#PiovanSFBA13,https://doi.org/10.1016/j.automatica.2012.09.014 +Luis T. Aguilar,Nonlinear Hinfinity-control of nonsmooth time-varying systems with application to friction mechanical manipulators.,2003,39,Automatica,9,db/journals/automatica/automatica39.html#AguilarOA03,https://doi.org/10.1016/S0005-1098(03)00148-1 +Won Il Lee,Affine Bessel-Legendre inequality: Application to stability analysis for systems with time-varying delays.,2018,93,Automatica,,db/journals/automatica/automatica93.html#LeeLP18,https://doi.org/10.1016/j.automatica.2018.03.073 +Zhisheng Duan,Criteria for dichotomy and gradient-like behavior of a class of nonlinear systems with multiple equilibria.,2007,43,Automatica,9,db/journals/automatica/automatica43.html#DuanWH07,https://doi.org/10.1016/j.automatica.2007.02.003 +Antoine Chaillet,Necessary and sufficient conditions for uniform semiglobal practical asymptotic stability: Application to cascaded systems.,2006,42,Automatica,11,db/journals/automatica/automatica42.html#ChailletL06,https://doi.org/10.1016/j.automatica.2006.05.028 +Francesco Basile,A branch and bound approach for the design of decentralized supervisors in Petri net models.,2015,52,Automatica,,db/journals/automatica/automatica52.html#BasileCP15,https://doi.org/10.1016/j.automatica.2014.12.004 +Zbigniew Bartosiewicz,Algebraic criteria of global observability of polynomial systems.,2016,69,Automatica,,db/journals/automatica/automatica69.html#Bartosiewicz16,https://doi.org/10.1016/j.automatica.2016.02.033 +Donghoon Shin,Enhanced nonlinear damping for a class of singularly perturbed interconnected nonlinear systems.,2016,65,Automatica,,db/journals/automatica/automatica65.html#ShinKLC16,https://doi.org/10.1016/j.automatica.2015.11.026 +Matthew C. Turner,A non-square sector condition and its application in deferred-action anti-windup compensator design.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#TurnerH14,https://doi.org/10.1016/j.automatica.2013.10.007 +Guang-Hong Yang,Stabilizing controllers for uncertain symmetric composite systems.,1995,31,Automatica,2,db/journals/automatica/automatica31.html#YangZ95,https://doi.org/10.1016/0005-1098(94)00135-6 +G. E. Young,A short-cut to the Mobius transformation with a recursive algorithm.,1989,25,Automatica,2,db/journals/automatica/automatica25.html#YoungT89,https://doi.org/10.1016/0005-1098(89)90088-5 +João Yoshiyuki Ishihara,Recursive linear estimation for general discrete-time descriptor systems.,2010,46,Automatica,4,db/journals/automatica/automatica46.html#IshiharaTB10,https://doi.org/10.1016/j.automatica.2010.02.003 +Andrzej Tarczynski,Simple discrete-time regulator minimizing sensitivity.,1993,29,Automatica,3,db/journals/automatica/automatica29.html#Tarczynski93,https://doi.org/10.1016/0005-1098(93)90077-7 +Corentin Briat,Convex lifted conditions for robust l2-stability analysis and l2-stabilization of linear discrete-time switched systems with minimum dwell-time constraint.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#Briat14,https://doi.org/10.1016/j.automatica.2013.12.037 +Brian D. O. Anderson,Solution set properties for static errors-in-variables problems.,1996,32,Automatica,7,db/journals/automatica/automatica32.html#AndersonDS96,https://doi.org/10.1016/0005-1098(96)00032-5 +Amie R. Albrecht,Energy-efficient train control: From local convexity to global optimization and uniqueness.,2013,49,Automatica,10,db/journals/automatica/automatica49.html#AlbrechtHPV13,https://doi.org/10.1016/j.automatica.2013.07.008 +Srdjan S. Stankovic,Sequential LQG optimization of hierarchically structured systems.,1989,25,Automatica,4,db/journals/automatica/automatica25.html#StankovicS89,https://doi.org/10.1016/0005-1098(89)90097-6 +Steffen Jørgensen,Advertising an event.,2006,42,Automatica,8,db/journals/automatica/automatica42.html#JorgensenKZ06,https://doi.org/10.1016/j.automatica.2005.11.007 +William H. Moase,Fast extremum-seeking for Wiener-Hammerstein plants.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#MoaseM12,https://doi.org/10.1016/j.automatica.2012.06.071 +Yufeng Chen,On structural minimality of optimal supervisors for flexible manufacturing systems.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#ChenL12,https://doi.org/10.1016/j.automatica.2012.06.068 +Homayoun Seraji,Design of pole-placement compensators for multivariable systems.,1980,16,Automatica,3,db/journals/automatica/automatica16.html#Seraji80,https://doi.org/10.1016/0005-1098(80)90043-6 +Javad Lavaei,Overlapping control design for multi-channel systems.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#LavaeiA09,https://doi.org/10.1016/j.automatica.2009.01.007 +Mark L. Darby,Multivariable system identification for integral controllability.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#DarbyN09,https://doi.org/10.1016/j.automatica.2009.05.025 +Marcos G. Todorov,A new perspective on the robustness of Markov jump linear systems.,2013,49,Automatica,3,db/journals/automatica/automatica49.html#TodorovF13,https://doi.org/10.1016/j.automatica.2012.12.005 +Efstathios Bakolas,Decentralized spatial partitioning for multi-vehicle systems in spatiotemporal flow-field.,2014,50,Automatica,9,db/journals/automatica/automatica50.html#Bakolas14,https://doi.org/10.1016/j.automatica.2014.07.016 +Wassim M. Haddad,Controller synthesis with guaranteed closed-loop phase constraints.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#HaddadCG08,https://doi.org/10.1016/j.automatica.2008.09.002 +Louis F. Godbout Jr.,Pole placement algorithms for multirate-sampled linear systems.,1994,30,Automatica,4,db/journals/automatica/automatica30.html#GodboutJS94,https://doi.org/10.1016/0005-1098(94)90161-9 +Yajuan Sun,Bisimilarity enforcing supervisory control for deterministic specifications.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#SunLC14,https://doi.org/10.1016/j.automatica.2013.09.025 +S.-H. Lee,Fast gain scheduling on tracking problems using derivative information.,1997,33,Automatica,12,db/journals/automatica/automatica33.html#LeeL97,https://doi.org/10.1016/S0005-1098(97)00154-4 +Junlin Xiong,On robust stabilization of Markovian jump systems with uncertain switching probabilities.,2005,41,Automatica,5,db/journals/automatica/automatica41.html#XiongLGH05,https://doi.org/10.1016/j.automatica.2004.12.001 +David Q. Mayne,Constrained model predictive control: Stability and optimality.,2000,36,Automatica,6,db/journals/automatica/automatica36.html#MayneRRS00,https://doi.org/10.1016/S0005-1098(99)00214-9 +Christian Commault,Transfer matrix approach to the triangular block decoupling problem.,1983,19,Automatica,5,db/journals/automatica/automatica19.html#CommaultD83,https://doi.org/10.1016/0005-1098(83)90008-0 +Andrii Mironchenko,Lyapunov small-gain theorems for networks of not necessarily ISS hybrid systems.,2018,88,Automatica,,db/journals/automatica/automatica88.html#MironchenkoYL18,https://doi.org/10.1016/j.automatica.2017.10.020 +Ruslan E. Seifullaev,Energy control of a pendulum with quantized feedback.,2016,67,Automatica,,db/journals/automatica/automatica67.html#SeifullaevFL16,https://doi.org/10.1016/j.automatica.2016.01.019 +Graham W. Pulford,Probabilistic data association for systems with multiple simultaneous measurements.,1996,32,Automatica,9,db/journals/automatica/automatica32.html#PulfordE96,https://doi.org/10.1016/0005-1098(96)00060-X +Arpita Sinha,Generalization of nonlinear cyclic pursuit.,2007,43,Automatica,11,db/journals/automatica/automatica43.html#SinhaG07,https://doi.org/10.1016/j.automatica.2007.03.024 +Ping Zhao,Stochastic input-to-state stability of switched stochastic nonlinear systems.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#ZhaoFK12,https://doi.org/10.1016/j.automatica.2012.06.058 +Håvard Fjær Grip,On the existence of virtual exosystems for synchronized linear networks.,2013,49,Automatica,10,db/journals/automatica/automatica49.html#GripSS13,https://doi.org/10.1016/j.automatica.2013.07.004 +Bartek Roszak,Necessary and sufficient conditions for reachability on a simplex.,2006,42,Automatica,11,db/journals/automatica/automatica42.html#RoszakB06,https://doi.org/10.1016/j.automatica.2006.06.003 +Dale R. Sebok,Feedback gain optimization in decentralized eigenvalue assignment.,1986,22,Automatica,4,db/journals/automatica/automatica22.html#SebokRD86,https://doi.org/10.1016/0005-1098(86)90048-8 +Ruth F. Curtain,A comparison between LQR control for a long string of SISO systems and LQR control of the infinite spatially invariant version.,2010,46,Automatica,10,db/journals/automatica/automatica46.html#CurtainIZ10,https://doi.org/10.1016/j.automatica.2010.06.030 +Alain Haurie,Market equilibrium in a multistage commodity network.,1985,21,Automatica,5,db/journals/automatica/automatica21.html#HaurieB85,https://doi.org/10.1016/0005-1098(85)90007-X +Bo Shen,Finite-horizon H∞ fault estimation for linear discrete time-varying systems with delayed measurements.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#ShenDW13,https://doi.org/10.1016/j.automatica.2012.09.003 +Youcheng Lou,Distributed continuous-time approximate projection protocols for shortest distance optimization problems.,2016,69,Automatica,,db/journals/automatica/automatica69.html#LouHW16,https://doi.org/10.1016/j.automatica.2016.02.019 +Seppo Pohjolainen,Mobile control of distributed parameter systems: A. G. Butkovskiy and L. M. Pustyl'nikov.,1989,25,Automatica,4,db/journals/automatica/automatica25.html#Pohjolainen89,https://doi.org/10.1016/0005-1098(89)90111-8 +Michael Epstein,Probabilistic performance of state estimation across a lossy network.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#EpsteinSTM08,https://doi.org/10.1016/j.automatica.2008.05.026 +Bor-Sen Chen,Adaptive control in robotic systems with H∞ tracking performance.,1997,33,Automatica,2,db/journals/automatica/automatica33.html#ChenCL97,https://doi.org/10.1016/S0005-1098(96)00147-1 +Francisco Javier Bejarano,Unknown input functional observability of descriptor systems with neutral and distributed delay effects.,2017,85,Automatica,,db/journals/automatica/automatica85.html#BejaranoZ17,https://doi.org/10.1016/j.automatica.2017.07.044 +Matias Waller,Estimating the degree of time variance in a parametric model.,2000,36,Automatica,4,db/journals/automatica/automatica36.html#WallerS00,https://doi.org/10.1016/S0005-1098(99)00151-X +Pramod P. Khargonekar,Robust stabilization of distributed systems.,1986,22,Automatica,1,db/journals/automatica/automatica22.html#KhargonekarP86,https://doi.org/10.1016/0005-1098(86)90106-8 +Hong-Gi Lee,Restricted dynamic observer error linearizability.,2015,53,Automatica,,db/journals/automatica/automatica53.html#LeeKJ15,https://doi.org/10.1016/j.automatica.2014.12.037 +Henk Nijmeijer,Nonlinear control design : By Riccardo Marino and Patrizio Tomei.,1997,33,Automatica,9,db/journals/automatica/automatica33.html#Nijmeijer97,https://doi.org/10.1016/S0005-1098(97)82237-6 +Petros Ioannou,Decentralized adaptive control of interconnected systems with reduced-order models.,1985,21,Automatica,4,db/journals/automatica/automatica21.html#IoannouK85,https://doi.org/10.1016/0005-1098(85)90076-7 +Mark Cannon,Stochastic tube MPC with state estimation.,2012,48,Automatica,3,db/journals/automatica/automatica48.html#CannonCKR12,https://doi.org/10.1016/j.automatica.2011.08.058 +Prashanth Krishnamurthy,Decentralized control and disturbance attenuation for large-scale nonlinear systems in generalized output-feedback canonical form.,2003,39,Automatica,11,db/journals/automatica/automatica39.html#KrishnamurthyK03,https://doi.org/10.1016/S0005-1098(03)00199-7 +Xinghu Wang,Cooperative robust output regulation of linear uncertain multiple multivariable systems with performance constraint.,2018,95,Automatica,,db/journals/automatica/automatica95.html#WangSX18a,https://doi.org/10.1016/j.automatica.2018.05.030 +Huijin Fan,Adaptive fault-tolerant stabilization for nonlinear systems with Markovian jumping actuator failures and stochastic noises.,2015,51,Automatica,,db/journals/automatica/automatica51.html#FanLWW15,https://doi.org/10.1016/j.automatica.2014.10.084 +Hakan Köroglu,Generalized asymptotic regulation with guaranteed H2 performance: An LMI solution.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#KorogluS09,https://doi.org/10.1016/j.automatica.2008.10.026 +Jia Xu,Optimistic optimization for model predictive control of max-plus linear systems.,2016,74,Automatica,,db/journals/automatica/automatica74.html#XuBS16,https://doi.org/10.1016/j.automatica.2016.07.002 +Milos S. Stankovic,Extremum seeking under stochastic noise and applications to mobile sensors.,2010,46,Automatica,8,db/journals/automatica/automatica46.html#StankovicS10,https://doi.org/10.1016/j.automatica.2010.05.005 +Eric Bullinger,Adaptive lambda-tracking for nonlinear higher relative degree systems.,2005,41,Automatica,7,db/journals/automatica/automatica41.html#BullingerA05,https://doi.org/10.1016/j.automatica.2005.01.012 +Sanjay Lall,An LMI solution to the robust synthesis problem for multi-rate sampled-data systems.,2001,37,Automatica,12,db/journals/automatica/automatica37.html#LallD01,https://doi.org/10.1016/S0005-1098(01)00167-4 +Cihan Oguz,Optimization of a thin film deposition process using a dynamic model extracted from molecular simulations.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#OguzG08,https://doi.org/10.1016/j.automatica.2007.11.017 +Alexey S. Matveev,Range-only measurements based target following for wheeled mobile robots.,2011,47,Automatica,1,db/journals/automatica/automatica47.html#MatveevTS11a,https://doi.org/10.1016/j.automatica.2010.10.025 +Christian W. Frei,Alternatives to Monte-Carlo simulation evaluations of two multisensor fusion algorithms.,1998,34,Automatica,1,db/journals/automatica/automatica34.html#FreiP98,https://doi.org/10.1016/S0005-1098(97)00167-2 +Jean-Jacques Fuchs,On estimating the order of an ARMA process.,1987,23,Automatica,6,db/journals/automatica/automatica23.html#Fuchs87,https://doi.org/10.1016/0005-1098(87)90038-0 +Davide Dragone,Hamiltonian potential functions for differential games.,2015,62,Automatica,,db/journals/automatica/automatica62.html#DragoneLLP15,https://doi.org/10.1016/j.automatica.2015.09.036 +Murat Arcak,Certifying spatially uniform behavior in reaction-diffusion PDE and compartmental ODE systems.,2011,47,Automatica,6,db/journals/automatica/automatica47.html#Arcak11,https://doi.org/10.1016/j.automatica.2011.01.010 +Stuart C. Kramer,Recursive Bayesian estimation using piece-wise constant approximations.,1988,24,Automatica,6,db/journals/automatica/automatica24.html#KramerS88,https://doi.org/10.1016/0005-1098(88)90055-6 +Xianfu Zhang,Feedback stabilization for high order feedforward nonlinear time-delay systems.,2011,47,Automatica,5,db/journals/automatica/automatica47.html#ZhangLBB11,https://doi.org/10.1016/j.automatica.2011.01.018 +Andrew R. Teel,Transition in an editorship.,2017,79,Automatica,,db/journals/automatica/automatica79.html#Teel17b,https://doi.org/10.1016/j.automatica.2017.03.026 +Vishwesh V. Kulkarni,Feasibility of SINR guarantees for downlink transmissions in relay-enabled OFDMA networks.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#KulkarniLJ12,https://doi.org/10.1016/j.automatica.2012.05.048 +Dimitrios Karagiannis,Two results for adaptive output feedback stabilization of nonlinear systems.,2003,39,Automatica,5,db/journals/automatica/automatica39.html#KaragiannisAO03,https://doi.org/10.1016/S0005-1098(03)00003-7 +Hari Priyadarshan,Reorientation of linear switched systems using state feedback.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#PriyadarshanP13,https://doi.org/10.1016/j.automatica.2013.02.057 +Deyuan Meng,Bipartite containment tracking of signed networks.,2017,79,Automatica,,db/journals/automatica/automatica79.html#Meng17,https://doi.org/10.1016/j.automatica.2017.01.044 +Bonnie S. Heck,Numerical methods to design the reaching phase of output feedback variable structure control.,1995,31,Automatica,2,db/journals/automatica/automatica31.html#HeckYF95,https://doi.org/10.1016/0005-1098(94)00084-V +Huijun Gao,Robust sampled-data H INFINITY control with stochastic sampling.,2009,45,Automatica,7,db/journals/automatica/automatica45.html#GaoWS09,https://doi.org/10.1016/j.automatica.2009.03.004 +Ping Zhao,Controllability and adaptation of linear time-invariant systems under irregular and Markovian sampling.,2016,63,Automatica,,db/journals/automatica/automatica63.html#ZhaoWY16,https://doi.org/10.1016/j.automatica.2015.10.022 +Oded Yaniv,Robust feedback synthesis for margins at the plant input.,1995,31,Automatica,2,db/journals/automatica/automatica31.html#Yaniv95,https://doi.org/10.1016/0005-1098(94)00104-Q +Lalo Magni,Stabilizing decentralized model predictive control of nonlinear systems.,2006,42,Automatica,7,db/journals/automatica/automatica42.html#MagniS06,https://doi.org/10.1016/j.automatica.2006.02.010 +Xudong Ye,Adaptive stabilization of time-delay feedforward nonlinear systems.,2011,47,Automatica,5,db/journals/automatica/automatica47.html#Ye11,https://doi.org/10.1016/j.automatica.2011.01.006 +Xudong Ye,Pseudo-decentralized adaptive stabilization of large-scale feedforward nonlinear systems.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#Ye09,https://doi.org/10.1016/j.automatica.2008.12.021 +S. O. Reza Moheimani,A convex optimization approach to the mode acceleration problem.,2004,40,Automatica,5,db/journals/automatica/automatica40.html#MoheimaniH04,https://doi.org/10.1016/j.automatica.2003.12.012 +Taha Boukhobza,Sensor location for discrete mode observability of switching linear systems with unknown inputs.,2012,48,Automatica,7,db/journals/automatica/automatica48.html#Boukhobza12,https://doi.org/10.1016/j.automatica.2012.05.011 +Tibor Vámos,Competent expert systems: A case study in fault diagnosis : E. T. Keravnou and L. Johnson.,1988,24,Automatica,1,db/journals/automatica/automatica24.html#Vamos88,https://doi.org/10.1016/0005-1098(88)90018-0 +Jiuxiang Dong,H∞ control for fast sampling discrete-time singularly perturbed systems.,2008,44,Automatica,5,db/journals/automatica/automatica44.html#DongY08,https://doi.org/10.1016/j.automatica.2007.10.010 +Sheng Wan,Robust performance assessment of feedback control systems.,2002,38,Automatica,1,db/journals/automatica/automatica38.html#WanH02,https://doi.org/10.1016/S0005-1098(01)00175-3 +A. Espada,Robust stability of fuzzy control systems based on conicity conditions.,1999,35,Automatica,4,db/journals/automatica/automatica35.html#EspadaB99,https://doi.org/10.1016/S0005-1098(98)00168-X +Jun Xu 0008,Adaptive hinging hyperplanes and its applications in dynamic system identification.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#XuHW09,https://doi.org/10.1016/j.automatica.2009.06.013 +Alexey S. Matveev,Tight circumnavigation of multiple moving targets based on a new method of tracking environmental boundaries.,2017,79,Automatica,,db/journals/automatica/automatica79.html#MatveevSS17,https://doi.org/10.1016/j.automatica.2017.01.041 +Luigi Chisci,Indirect and implicit adaptive predictive control of the benchmark plant.,1994,30,Automatica,4,db/journals/automatica/automatica30.html#ChisciGM94,https://doi.org/10.1016/0005-1098(94)90143-0 +Rogelio Lozano-Leal,Reformulation of the parameter identification problem for systems with bounded disturbances.,1987,23,Automatica,2,db/journals/automatica/automatica23.html#Lozano-LealO87,https://doi.org/10.1016/0005-1098(87)90100-2 +Johan Schoukens,Initial estimates for the dynamics of a Hammerstein system.,2007,43,Automatica,7,db/journals/automatica/automatica43.html#SchoukensWGP07,https://doi.org/10.1016/j.automatica.2006.12.003 +Alan A. Desrochers,A method for high order linear system reduction and nonlinear system simplification.,1985,21,Automatica,1,db/journals/automatica/automatica21.html#DesrochersA85,https://doi.org/10.1016/0005-1098(85)90101-3 +L. F. Yeung,Optimal input-output variable assignments for multivariable systems.,1991,27,Automatica,4,db/journals/automatica/automatica27.html#Yeung91,https://doi.org/10.1016/0005-1098(91)90067-C +Xianwei Li,Passivity-preserving model reduction with finite frequency H∞ approximation performance.,2014,50,Automatica,9,db/journals/automatica/automatica50.html#LiYG14,https://doi.org/10.1016/j.automatica.2014.07.001 +Michel Verhaegen,Identification of the deterministic part of MIMO state space models given in innovations form from input-output data.,1994,30,Automatica,1,db/journals/automatica/automatica30.html#Verhaegen94,https://doi.org/10.1016/0005-1098(94)90229-1 +Wei Wang 0016,Distributed adaptive control for consensus tracking with application to formation control of nonholonomic mobile robots.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#0016HWF14,https://doi.org/10.1016/j.automatica.2014.02.028 +Ilyasse Aksikas,On asymptotic stability of semi-linear distributed parameter dissipative systems.,2010,46,Automatica,6,db/journals/automatica/automatica46.html#AksikasF10,https://doi.org/10.1016/j.automatica.2010.02.030 +Xiuxian Li,Consensus networks with switching topology and time-delays over finite fields.,2016,68,Automatica,,db/journals/automatica/automatica68.html#LiCSL16,https://doi.org/10.1016/j.automatica.2016.01.033 +Shigemasa Takai,A modified normality condition for decentralized supervisory control of discrete event systems.,2002,38,Automatica,1,db/journals/automatica/automatica38.html#TakaiU02,https://doi.org/10.1016/S0005-1098(01)00187-X +Junfeng Wu,An improved stability condition for Kalman filtering with bounded Markovian packet losses.,2015,62,Automatica,,db/journals/automatica/automatica62.html#WuSXJ15,https://doi.org/10.1016/j.automatica.2015.09.005 +Heinz Unbehauen,Continuous-time approaches to system identification - A survey.,1990,26,Automatica,1,db/journals/automatica/automatica26.html#UnbehauenR90,https://doi.org/10.1016/0005-1098(90)90155-B +Wanzhi Qiu,A subspace method for the computation of the GCD of polynomials.,1997,33,Automatica,4,db/journals/automatica/automatica33.html#QiuHA97,https://doi.org/10.1016/S0005-1098(96)00244-0 +Pertti M. Mäkilä,Approximation of stable systems by laguerre filters.,1990,26,Automatica,2,db/journals/automatica/automatica26.html#Makila90,https://doi.org/10.1016/0005-1098(90)90127-4 +Suh-Wen Chiou,Optimization of a nonlinear area traffic control system with elastic demand.,2010,46,Automatica,10,db/journals/automatica/automatica46.html#Chiou10,https://doi.org/10.1016/j.automatica.2010.06.029 +V. O. Nikiforov,Nonlinear servocompensation of unknown external disturbances.,2001,37,Automatica,10,db/journals/automatica/automatica37.html#Nikiforov01,https://doi.org/10.1016/S0005-1098(01)00117-0 +Liang Chen,Local asymptotic coherence of time-varying discrete ecological networks.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#ChenLLH09,https://doi.org/10.1016/j.automatica.2008.09.006 +J. C. Gille,A model for developmental systems - II : Generating word with an operating system.,1989,25,Automatica,5,db/journals/automatica/automatica25.html#GilleWV89,https://doi.org/10.1016/0005-1098(89)90026-5 +Sung-Mo Kang,Shape and orientation control of moving formation in multi-agent systems without global reference frame.,2018,92,Automatica,,db/journals/automatica/automatica92.html#KangA18,https://doi.org/10.1016/j.automatica.2018.03.019 +Tibor Vámos,Mr. Babbage's secret. The tale of a cypher - And APL: Ole Immanuel Franksen.,1985,21,Automatica,5,db/journals/automatica/automatica21.html#Vamos85,https://doi.org/10.1016/0005-1098(85)90013-5 +O. L. R. Jacobs,Trends and progress in system identification.,1982,18,Automatica,5,db/journals/automatica/automatica18.html#Jacobs82,https://doi.org/10.1016/0005-1098(82)90016-4 +Craig R. Edgar,MIMO fuzzy internal model control.,2000,36,Automatica,6,db/journals/automatica/automatica36.html#EdgarP00,https://doi.org/10.1016/S0005-1098(99)00213-7 +Aart van Harten,Singularly perturbed systems of diffusion type and feedback control.,1984,20,Automatica,1,db/journals/automatica/automatica20.html#Harten84,https://doi.org/10.1016/0005-1098(84)90067-0 +Vladimir Havlena,Simultaneous parameter tracking and state estimation in a linear system.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#Havlena93,https://doi.org/10.1016/0005-1098(93)90105-3 +Li-Sheng Hu,Robust sampled-data control for Markovian jump linear systems.,2006,42,Automatica,11,db/journals/automatica/automatica42.html#HuSF06,https://doi.org/10.1016/j.automatica.2006.05.029 +Huijun Wu,p-Moment stability of stochastic differential equations with impulsive jump and Markovian switching.,2006,42,Automatica,10,db/journals/automatica/automatica42.html#WuS06,https://doi.org/10.1016/j.automatica.2006.05.009 +Wu-Hua Chen,Delay-dependent robust stabilization for uncertain neutral systems with distributed delays.,2007,43,Automatica,1,db/journals/automatica/automatica43.html#ChenZ07,https://doi.org/10.1016/j.automatica.2006.07.019 +B. Leden,Different methods for estimating thermal diffusivity of a heat process.,1976,12,Automatica,5,db/journals/automatica/automatica12.html#LedenHS76,https://doi.org/10.1016/0005-1098(76)90005-4 +Francesco Basile,Integrated design of optimal supervisors for the enforcement of static and behavioral specifications in Petri net models.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#BasileCP13,https://doi.org/10.1016/j.automatica.2013.08.018 +Alex Esbrook,Inversion-free stabilization and regulation of systems with hysteresis via integral action.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#EsbrookTK14,https://doi.org/10.1016/j.automatica.2013.11.013 +Jan Anthonis,Linear mechanical systems and dyadic transfer function matrices.,2003,39,Automatica,8,db/journals/automatica/automatica39.html#AnthonisR03,https://doi.org/10.1016/S0005-1098(03)00107-9 +Z. Shafiei,Tuning of PID-type controllers for stable and unstable systems with time delay.,1994,30,Automatica,10,db/journals/automatica/automatica30.html#ShafieiS94,https://doi.org/10.1016/0005-1098(94)90100-7 +Ali Karimoddini,Hybrid three-dimensional formation control for unmanned helicopters.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#KarimoddiniLCL13,https://doi.org/10.1016/j.automatica.2012.10.008 +Eduardo Arvelo,Maximizing the set of recurrent states of an MDP subject to convex constraints.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#ArveloM14,https://doi.org/10.1016/j.automatica.2014.01.002 +George S. Axelby,Some Automatica history and recognition at a time of transition.,2003,39,Automatica,12,db/journals/automatica/automatica39.html#Axelby03,https://doi.org/10.1016/j.automatica.2003.09.009 +Juhoon Back,Adding robustness to nominal output-feedback controllers for uncertain nonlinear systems: A nonlinear version of disturbance observer.,2008,44,Automatica,10,db/journals/automatica/automatica44.html#BackS08,https://doi.org/10.1016/j.automatica.2008.02.024 +Woei Wan Tan,A self-learning fuzzy controller for embedded applications.,2000,36,Automatica,8,db/journals/automatica/automatica36.html#TanD00,https://doi.org/10.1016/S0005-1098(00)00028-5 +Tomomichi Hagiwara,Noncausal linear periodically time-varying scaling for robust stability analysis of discrete-time systems: Frequency-dependent scaling induced by static separators.,2010,46,Automatica,1,db/journals/automatica/automatica46.html#HagiwaraO10,https://doi.org/10.1016/j.automatica.2009.10.019 +A. Pedro Aguiar,Performance limitations in reference tracking and path following for nonlinear systems.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#AguiarHK08,https://doi.org/10.1016/j.automatica.2007.06.030 +George S. Axelby,Updated key word selection list.,1982,18,Automatica,5,db/journals/automatica/automatica18.html#Axelby82,https://doi.org/10.1016/0005-1098(82)90001-2 +Ho-Lim Choi,Stabilization of a class of nonlinear systems by adaptive output feedback.,2005,41,Automatica,6,db/journals/automatica/automatica41.html#ChoiL05,https://doi.org/10.1016/j.automatica.2005.01.009 +Torsten Söderström,Performance evaluation of methods for identifying continuous-time autoregressive processes.,2000,36,Automatica,1,db/journals/automatica/automatica36.html#SoderstromM00,https://doi.org/10.1016/S0005-1098(99)00104-1 +Alberto De Santis,Identification of positive linear systems with Poisson output transformation.,2002,38,Automatica,5,db/journals/automatica/automatica38.html#SantisF02,https://doi.org/10.1016/S0005-1098(01)00277-1 +Jing Yao,Passive stability and synchronization of complex spatio-temporal switching networks with time delays.,2009,45,Automatica,7,db/journals/automatica/automatica45.html#YaoWGX09,https://doi.org/10.1016/j.automatica.2009.02.030 +Daniel E. Miller,An adaptive tracking problem with a control input constraint.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#MillerD93,https://doi.org/10.1016/0005-1098(93)90093-9 +Daniel E. Quevedo,Adaptive controller placement for wireless sensor-actuator networks with erasure channels.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#QuevedoJAJ13,https://doi.org/10.1016/j.automatica.2013.08.024 +Ezra Zeheb,Necessary and sufficient conditions for robust stability of discrete systems with coefficients depending continuously on two interval parameters.,1993,29,Automatica,1,db/journals/automatica/automatica29.html#Zeheb93,https://doi.org/10.1016/0005-1098(93)90189-Z +Xiangru Xu,Constrained control of input-output linearizable systems using control sharing barrier functions.,2018,87,Automatica,,db/journals/automatica/automatica87.html#Xu18,https://doi.org/10.1016/j.automatica.2017.10.005 +Avraham Feintuch,Infinite chains of kinematic points.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#FeintuchF12,https://doi.org/10.1016/j.automatica.2012.02.034 +Weng Khuen Ho,Optimal Gain and Phase Margin Tuning for PID Controllers.,1998,34,Automatica,8,db/journals/automatica/automatica34.html#HoLX98,https://doi.org/10.1016/S0005-1098(98)00032-6 +David G. Luenberger,Dynamic equilibria for linear systems and quadratic costs.,1987,23,Automatica,1,db/journals/automatica/automatica23.html#Luenberger87,https://doi.org/10.1016/0005-1098(87)90121-X +Michael A. Demetriou,A new actuator activation policy for performance enhancement of controlled diffusion processes.,2004,40,Automatica,3,db/journals/automatica/automatica40.html#DemetriouK04,https://doi.org/10.1016/j.automatica.2003.10.023 +Dario Bauso,Consensus in opinion dynamics as a repeated game.,2018,90,Automatica,,db/journals/automatica/automatica90.html#BausoC18,https://doi.org/10.1016/j.automatica.2017.12.062 +Yoram Baram,On the internal structure of minimal stochastic realizations.,1988,24,Automatica,5,db/journals/automatica/automatica24.html#BaramS88,https://doi.org/10.1016/0005-1098(88)90122-7 +Er-Wei Bai,Limiting zero distribution of sampled systems.,2002,38,Automatica,5,db/journals/automatica/automatica38.html#BaiW02,https://doi.org/10.1016/S0005-1098(01)00280-1 +Hernán De Battista,Global stabilisation of continuous bioreactors: Tools for analysis and design of feeding laws.,2018,89,Automatica,,db/journals/automatica/automatica89.html#BattistaJGP18,https://doi.org/10.1016/j.automatica.2017.12.041 +Zigang Pan,Canonical forms for stochastic nonlinear systems.,2002,38,Automatica,7,db/journals/automatica/automatica38.html#Pan02,https://doi.org/10.1016/S0005-1098(02)00020-1 +Sahar Mohajerani,Compositional synthesis of supervisors in the form of state machines and state maps.,2017,76,Automatica,,db/journals/automatica/automatica76.html#MohajeraniMF17,https://doi.org/10.1016/j.automatica.2016.10.012 +H. W. Brewer,Least squares estimation of nonstationary covariance parameters in linear systems.,1977,13,Automatica,3,db/journals/automatica/automatica13.html#BrewerL77,https://doi.org/10.1016/0005-1098(77)90053-X +John Wagner,A robust failure diagnostic system for thermofluid processes.,1992,28,Automatica,2,db/journals/automatica/automatica28.html#WagnerS92,https://doi.org/10.1016/0005-1098(92)90122-V +Weng Khuen Ho,Getting more phase margin and performance out of PID controllers.,1999,35,Automatica,9,db/journals/automatica/automatica35.html#HoLHN99,https://doi.org/10.1016/S0005-1098(99)00055-2 +Christian Commault,Structural analysis for the sensor location problem in fault detection and isolation.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#CommaultDA08,https://doi.org/10.1016/j.automatica.2007.12.014 +Shengyuan Xu,New results on delay-dependent robust Hinfinity control for systems with time-varying delays.,2006,42,Automatica,2,db/journals/automatica/automatica42.html#XuLZ06,https://doi.org/10.1016/j.automatica.2005.09.013 +Mehrdad Moallem,Nonlinear tip-position tracking control of a flexible-link manipulator: theory and experiments.,2001,37,Automatica,11,db/journals/automatica/automatica37.html#MoallemPK01,https://doi.org/10.1016/S0005-1098(01)00130-3 +Michael Di Loreto,Approximation of linear distributed parameter systems by delay systems.,2016,68,Automatica,,db/journals/automatica/automatica68.html#LoretoDEB16,https://doi.org/10.1016/j.automatica.2016.01.065 +O. L. R. Jacobs,Modern control system theory: M. Gopal.,1986,22,Automatica,2,db/journals/automatica/automatica22.html#Jacobs86,https://doi.org/10.1016/0005-1098(86)90092-0 +S. J. L. M. van Loon,Split-path nonlinear integral control for transient performance improvement.,2016,66,Automatica,,db/journals/automatica/automatica66.html#LoonHHWN16,https://doi.org/10.1016/j.automatica.2016.01.005 +Y. N. Rosenwasser,Frequency-domain Method for H2 Optimization of Time-delayed Sampled-data Systems.,1997,33,Automatica,7,db/journals/automatica/automatica33.html#RosenwasserPL97,https://doi.org/10.1016/S0005-1098(97)00025-3 +Jae Young Lee,Integral Q-learning and explorized policy iteration for adaptive optimal control of continuous-time linear systems.,2012,48,Automatica,11,db/journals/automatica/automatica48.html#LeePC12,https://doi.org/10.1016/j.automatica.2012.06.008 +Yoshikazu Nishikawa,A method for auto-tuning of PID control parameters.,1984,20,Automatica,3,db/journals/automatica/automatica20.html#NishikawaSOT84,https://doi.org/10.1016/0005-1098(84)90047-5 +Supratim Ghosh,Structural control of single-input rank one bilinear systems.,2016,64,Automatica,,db/journals/automatica/automatica64.html#GhoshR16,https://doi.org/10.1016/j.automatica.2015.10.053 +Huiping Li,Distributed receding horizon control of large-scale nonlinear systems: Handling communication delays and disturbances.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#LiS14,https://doi.org/10.1016/j.automatica.2014.02.031 +Tayfun çimen,"Authors' Reply to: ""Comment on ""Nonlinear optimal tracking control with application to super-tankers for autopilot design"""".",2006,42,Automatica,12,db/journals/automatica/automatica42.html#CimenB06,https://doi.org/10.1016/j.automatica.2006.06.019 +Jiun-Kai Chen,Optimal input design using generalized binary sequence.,1997,33,Automatica,11,db/journals/automatica/automatica33.html#ChenY97,https://doi.org/10.1016/S0005-1098(97)00122-2 +Wenjun Song,Intrinsic reduced attitude formation with ring inter-agent graph.,2017,85,Automatica,,db/journals/automatica/automatica85.html#SongMZHH17,https://doi.org/10.1016/j.automatica.2017.07.015 +Petr Zagalák,Singular control systems : L. Dai.,1992,28,Automatica,3,db/journals/automatica/automatica28.html#Zagalak92,https://doi.org/10.1016/0005-1098(92)90193-J +Anna Voelker,Moving horizon estimation: Error dynamics and bounding error sets for robust control.,2013,49,Automatica,4,db/journals/automatica/automatica49.html#VoelkerKP13,https://doi.org/10.1016/j.automatica.2013.01.008 +Ping Lu,Tracking control of nonlinear systems with bounded controls and control rates.,1997,33,Automatica,6,db/journals/automatica/automatica33.html#Lu97,https://doi.org/10.1016/S0005-1098(97)00033-2 +Corné E. van Daalen,Fast conflict detection using probability flow.,2009,45,Automatica,8,db/journals/automatica/automatica45.html#DaalenJ09,https://doi.org/10.1016/j.automatica.2009.04.010 +Jianping Gao,LMI-based robust Hinfinity control of uncertain linear jump systems with time-delays.,2001,37,Automatica,7,db/journals/automatica/automatica37.html#GaoHW01,https://doi.org/10.1016/S0005-1098(01)00046-2 +M. Ulm,A concept for parameter independent evaluation of decentralized stabilizability.,1989,25,Automatica,1,db/journals/automatica/automatica25.html#UlmW89,https://doi.org/10.1016/0005-1098(89)90129-5 +C. Rech,About structural controllability of interconnected dynamical systems.,1991,27,Automatica,5,db/journals/automatica/automatica27.html#RechP91,https://doi.org/10.1016/0005-1098(91)90045-4 +Hassan Omran,Stability analysis of bilinear systems under aperiodic sampled-data control.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#OmranHRL14,https://doi.org/10.1016/j.automatica.2014.02.033 +H. H. Rosenbrock,A Lyapunov function with applications to some nonlinear physical systems.,1963,1,Automatica,1,db/journals/automatica/automatica1.html#Rosenbrock63,https://doi.org/10.1016/0005-1098(63)90005-0 +Zhiqiang Zuo,Reachable set bounding for delayed systems with polytopic uncertainties: The maximal Lyapunov-Krasovskii functional approach.,2010,46,Automatica,5,db/journals/automatica/automatica46.html#ZuoHW10a,https://doi.org/10.1016/j.automatica.2010.02.022 +Pierre-François D. Quet,Rate-based flow controllers for communication networks in the presence of uncertain time-varying multiple time-delays.,2002,38,Automatica,6,db/journals/automatica/automatica38.html#QuetAIOKK02,https://doi.org/10.1016/S0005-1098(01)00276-X +Aivar Sootla,Parametrized model reduction based on semidefinite programming.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#SootlaSR13,https://doi.org/10.1016/j.automatica.2013.05.022 +Ricardo G. Sanfelice,On minimum-time paths of bounded curvature with position-dependent constraints.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#SanfeliceYF14,https://doi.org/10.1016/j.automatica.2013.11.016 +Musheng Wei,Some new results for system decoupling and pole assignment problems.,2010,46,Automatica,5,db/journals/automatica/automatica46.html#WeiWC10,https://doi.org/10.1016/j.automatica.2010.02.017 +Liqian Zhang,On H2 model reduction of bilinear systems.,2002,38,Automatica,2,db/journals/automatica/automatica38.html#ZhangL02,https://doi.org/10.1016/S0005-1098(01)00204-7 +Kai Wulff,A control design method for a class of switched linear systems.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#WulffWS09,https://doi.org/10.1016/j.automatica.2009.07.010 +Franco Blanchini,A Razumikhin-type lemma for functional differential equations with application to adaptive control.,1999,35,Automatica,5,db/journals/automatica/automatica35.html#BlanchiniR99,https://doi.org/10.1016/S0005-1098(98)00227-1 +S. G. Choi,Polynomial LQG control of back-up-roll eccentricity gauge variations in cold rolling mills.,1994,30,Automatica,6,db/journals/automatica/automatica30.html#ChoiJG94,https://doi.org/10.1016/0005-1098(94)90191-0 +Giacomo Innocenti,Modeling the topology of a dynamical network via Wiener filtering approach.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#InnocentiM12,https://doi.org/10.1016/j.automatica.2012.02.026 +Seiichi Nakamori,New prediction algorithms by covariance information based on innovation theory.,1981,17,Automatica,2,db/journals/automatica/automatica17.html#NakamoriH81,https://doi.org/10.1016/0005-1098(81)90055-8 +Daniel M. Rovner,Experiments in load-adaptive control of a very flexible one-link manipulator.,1988,24,Automatica,4,db/journals/automatica/automatica24.html#RovnerF88,https://doi.org/10.1016/0005-1098(88)90098-2 +Toshiaki Hirata,H∞ Control of railroad vehicle active suspension.,1995,31,Automatica,1,db/journals/automatica/automatica31.html#HirataKT95,https://doi.org/10.1016/0005-1098(94)E0048-M +Han-Lim Choi,Continuous trajectory planning of mobile sensors for informative forecasting.,2010,46,Automatica,8,db/journals/automatica/automatica46.html#ChoiH10,https://doi.org/10.1016/j.automatica.2010.05.004 +Stefano Battilotti,Sufficient conditions for global output regulation of nonlinear interconnected systems.,1999,35,Automatica,5,db/journals/automatica/automatica35.html#Battilotti99,https://doi.org/10.1016/S0005-1098(98)00213-1 +Sabato Manfredi,Frozen state conditions for exponential consensus of time-varying cooperative nonlinear networks.,2016,64,Automatica,,db/journals/automatica/automatica64.html#ManfrediA16,https://doi.org/10.1016/j.automatica.2015.11.011 +Oscar Gomez,On-line identification of SISO linear time-invariant delay systems from output measurements.,2007,43,Automatica,12,db/journals/automatica/automatica43.html#GomezOK07,https://doi.org/10.1016/j.automatica.2007.03.018 +Wei He 0001,Cooperative control of a nonuniform gantry crane with constrained tension.,2016,66,Automatica,,db/journals/automatica/automatica66.html#HeG16,https://doi.org/10.1016/j.automatica.2015.12.026 +P. Tsiotras,A novel approach to the attitude control of axisymmetric spacecraft.,1995,31,Automatica,8,db/journals/automatica/automatica31.html#TsiotrasCL95,https://doi.org/10.1016/0005-1098(95)00010-T +Raffaele Iervolino,Lyapunov stability for piecewise affine systems via cone-copositivity.,2017,81,Automatica,,db/journals/automatica/automatica81.html#IervolinoTV17,https://doi.org/10.1016/j.automatica.2017.03.011 +J. C. Gille,On developmental systems: Multilevel and parallel development.,1994,30,Automatica,11,db/journals/automatica/automatica30.html#GilleWV94,https://doi.org/10.1016/0005-1098(94)90078-7 +Jan Lunze,On the Markov Property of Quantised State Measuirement Sequences.,1998,34,Automatica,11,db/journals/automatica/automatica34.html#Lunze98,https://doi.org/10.1016/S0005-1098(98)00099-5 +Hans-Bernd Dürr,Extremum seeking for dynamic maps using Lie brackets and singular perturbations.,2017,83,Automatica,,db/journals/automatica/automatica83.html#DurrKSE17,https://doi.org/10.1016/j.automatica.2017.05.002 +Marco Lovera,"Comments on the paper ""Global stabilisation of periodic linear systems by bounded controls with applications to spacecraft magnetic attitude control"".",2018,90,Automatica,,db/journals/automatica/automatica90.html#Lovera18,https://doi.org/10.1016/j.automatica.2018.01.002 +Eric W. Justh,Analysis of a high-resolution optical wave-front control system.,2004,40,Automatica,7,db/journals/automatica/automatica40.html#JusthKV04,https://doi.org/10.1016/j.automatica.2004.02.010 +A. El Kashlan,Design of decentralized control for symmetrically interconnected systems.,1996,32,Automatica,3,db/journals/automatica/automatica32.html#KashlanG96,https://doi.org/10.1016/0005-1098(95)00160-3 +Ruggero Carli,Distributed averaging on digital erasure networks.,2011,47,Automatica,1,db/journals/automatica/automatica47.html#CarliCFG11,https://doi.org/10.1016/j.automatica.2010.10.015 +Jinhui Zhang,Event-driven observer-based output feedback control for linear systems.,2014,50,Automatica,7,db/journals/automatica/automatica50.html#ZhangF14,https://doi.org/10.1016/j.automatica.2014.04.026 +Cinzia Bernardeschi,Temporal analysis of data flow control systems.,1998,34,Automatica,2,db/journals/automatica/automatica34.html#BernardeschiBCMS98,https://doi.org/10.1016/S0005-1098(97)00176-3 +Liang Liu,Decentralized adaptive stabilization for interconnected systems with dynamic input-output and nonlinear interactions.,2010,46,Automatica,6,db/journals/automatica/automatica46.html#LiuX10,https://doi.org/10.1016/j.automatica.2010.03.003 +Itziar Baragaña,Feedback invariants of supplementary pairs of matrices.,1997,33,Automatica,12,db/journals/automatica/automatica33.html#BaraganaZ97,https://doi.org/10.1016/S0005-1098(97)00146-5 +J. Mikles,A multivariable self-tuning controller based on pole-placement design.,1990,26,Automatica,2,db/journals/automatica/automatica26.html#Mikles90,https://doi.org/10.1016/0005-1098(90)90123-Y +Eugenio Schuster,MHD channel flow control in 2D: Mixing enhancement by boundary feedback.,2008,44,Automatica,10,db/journals/automatica/automatica44.html#SchusterLK08,https://doi.org/10.1016/j.automatica.2008.02.018 +Qi Xu,Delay-dependent stability analysis by using delay-independent integral evaluation.,2016,70,Automatica,,db/journals/automatica/automatica70.html#XuSW16,https://doi.org/10.1016/j.automatica.2016.03.028 +Pedro Albertos,Dual-rate adaptive control.,1996,32,Automatica,7,db/journals/automatica/automatica32.html#AlbertosST96,https://doi.org/10.1016/0005-1098(96)00034-9 +George S. Axelby,Into the 21st year.,1978,14,Automatica,1,db/journals/automatica/automatica14.html#Axelby78,https://doi.org/10.1016/0005-1098(78)90071-7 +Kenji Fujimoto,Passivity based control of a class of Hamiltonian systems with nonholonomic constraints.,2012,48,Automatica,12,db/journals/automatica/automatica48.html#FujimotoSS12,https://doi.org/10.1016/j.automatica.2012.08.032 +F. Van Diggelen,A hadamard weighted loop shaping design procedure for robust decoupling.,1994,30,Automatica,5,db/journals/automatica/automatica30.html#DiggelenG94,https://doi.org/10.1016/0005-1098(94)90172-4 +Augusto Ferrante,A note on finite-horizon LQ problems with indefinite cost.,2015,52,Automatica,,db/journals/automatica/automatica52.html#FerranteN15,https://doi.org/10.1016/j.automatica.2014.12.008 +An-Chyau Huang,Adaptive multiple-surface sliding control for non-autonomous systems with mismatched uncertainties.,2004,40,Automatica,11,db/journals/automatica/automatica40.html#HuangC04,https://doi.org/10.1016/j.automatica.2004.06.007 +Xingjian Jing,Truncation order and its effect in a class of nonlinear systems.,2012,48,Automatica,11,db/journals/automatica/automatica48.html#Jing12,https://doi.org/10.1016/j.automatica.2012.08.004 +Qing-Wen Wang,Systems of coupled generalized Sylvester matrix equations.,2014,50,Automatica,11,db/journals/automatica/automatica50.html#WangH14,https://doi.org/10.1016/j.automatica.2014.10.033 +Björn Wittenmark,Practical issues in the implementation of self-tuning control.,1984,20,Automatica,5,db/journals/automatica/automatica20.html#WittenmarkA84,https://doi.org/10.1016/0005-1098(84)90010-4 +Martín D. España,Intermittent phenomena in adaptive systems: A case study.,1991,27,Automatica,4,db/journals/automatica/automatica27.html#Espana91,https://doi.org/10.1016/0005-1098(91)90063-8 +P. S. Satsangi,Introduction to system science: Gary M. Sandquist.,1987,23,Automatica,2,db/journals/automatica/automatica23.html#Satsangi87,https://doi.org/10.1016/0005-1098(87)90104-X +Ilya V. Kolmanovsky,Parameter governors for discrete-time nonlinear systems with pointwise-in-time state and control constraints.,2006,42,Automatica,5,db/journals/automatica/automatica42.html#KolmanovskyS06,https://doi.org/10.1016/j.automatica.2006.01.011 +J. Auricoste,Application des calculateurs numeriques a la conduite automatisee des centrales nucleaires.,1963,1,Automatica,4,db/journals/automatica/automatica1.html#AuricosteM63,https://doi.org/10.1016/0005-1098(63)90011-6 +H. R. Kashani,Intelligent control for urban traffic systems.,1983,19,Automatica,2,db/journals/automatica/automatica19.html#KashaniS83,https://doi.org/10.1016/0005-1098(83)90091-2 +Francisco Casiello,Optimal policies for passive learning controllers.,1989,25,Automatica,5,db/journals/automatica/automatica25.html#CasielloL89,https://doi.org/10.1016/0005-1098(89)90032-0 +Guisheng Zhai,Decentralized Hinfinity controller design: a matrix inequality approach using a homotopy method.,2001,37,Automatica,4,db/journals/automatica/automatica37.html#ZhaiIF01,https://doi.org/10.1016/S0005-1098(00)00190-4 +Ben M. Chen,Simultaneous finite- and infinite-zero assignments of linear systems.,1995,31,Automatica,4,db/journals/automatica/automatica31.html#ChenZ95,https://doi.org/10.1016/0005-1098(95)98496-S +Mazen Alamir,Contraction-based nonlinear model predictive control formulation without stability-related terminal constraints.,2017,75,Automatica,,db/journals/automatica/automatica75.html#Alamir17,https://doi.org/10.1016/j.automatica.2016.09.045 +W. Draijer,Adaptive control of the radial servo system of a compact disc player.,1992,28,Automatica,3,db/journals/automatica/automatica28.html#DraijerSB92,https://doi.org/10.1016/0005-1098(92)90171-B +Afshin Mesbahi,Stability of linear time invariant fractional delay systems of retarded type in the space of delay parameters.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#MesbahiH13,https://doi.org/10.1016/j.automatica.2013.01.041 +G. F. Wredenhagen,Piecewise-linear LQ control for systems with input constraints.,1994,30,Automatica,3,db/journals/automatica/automatica30.html#WredenhagenB94,https://doi.org/10.1016/0005-1098(94)90118-X +Kuize Zhang,Invertibility and nonsingularity of Boolean control networks.,2015,60,Automatica,,db/journals/automatica/automatica60.html#ZhangZX15,https://doi.org/10.1016/j.automatica.2015.07.016 +William Scott,Optimal evasive strategies for multiple interacting agents with motion constraints.,2018,94,Automatica,,db/journals/automatica/automatica94.html#ScottL18,https://doi.org/10.1016/j.automatica.2018.04.008 +Alessandro Astolfi,New Results on the Global Stabilization of Minimum-Phase Nonlinear Systems.,1998,34,Automatica,6,db/journals/automatica/automatica34.html#Astolfi98,https://doi.org/10.1016/S0005-1098(98)00008-9 +Shu-Li Sun,Multi-sensor information fusion white noise filter weighted by scalars based on Kalman predictor.,2004,40,Automatica,8,db/journals/automatica/automatica40.html#Sun04,https://doi.org/10.1016/j.automatica.2004.03.012 +Augusto Ferrante,Some new results in the theory of negative imaginary systems with symmetric transfer matrix function.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#FerranteN13a,https://doi.org/10.1016/j.automatica.2013.03.008 +J. R. H. Carvalho,Multiple-criterion control: a convex programming approach.,1995,31,Automatica,7,db/journals/automatica/automatica31.html#CarvalhoF95,https://doi.org/10.1016/0005-1098(94)00178-L +Qing Gao 0001,Fault tolerant quantum filtering and fault detection for quantum systems.,2016,71,Automatica,,db/journals/automatica/automatica71.html#GaoDP16,https://doi.org/10.1016/j.automatica.2016.04.045 +Lars Nielsen,Automated guidance of vehicles using vision and projective invariant marking.,1988,24,Automatica,2,db/journals/automatica/automatica24.html#Nielsen88,https://doi.org/10.1016/0005-1098(88)90023-4 +Keck Voon Ling,Expert control of air-conditioning plant.,1994,30,Automatica,5,db/journals/automatica/automatica30.html#LingD94,https://doi.org/10.1016/0005-1098(94)90167-8 +Giovanni Guida,An expert intermediary system for interactive document retrieval.,1983,19,Automatica,6,db/journals/automatica/automatica19.html#GuidaT83,https://doi.org/10.1016/0005-1098(83)90044-4 +Wei-Song Lin,Adaptive critic motion control design of autonomous wheeled mobile robot by dual heuristic programming.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#LinY08,https://doi.org/10.1016/j.automatica.2008.03.029 +Dongchuan Yu,Estimating the topology of complex dynamical networks by steady state control: Generality and limitation.,2010,46,Automatica,12,db/journals/automatica/automatica46.html#Yu10,https://doi.org/10.1016/j.automatica.2010.08.010 +Timothy J. Broomhead,Robust periodic economic MPC for linear systems.,2015,60,Automatica,,db/journals/automatica/automatica60.html#BroomheadMSH15,https://doi.org/10.1016/j.automatica.2015.06.034 +Frédéric Mazenc,Construction of interval observers for continuous-time systems with discrete measurements.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#MazencD14,https://doi.org/10.1016/j.automatica.2014.08.008 +Antonio Loría,A remark on passivity-based and discontinuous control of uncertain nonlinear systems.,2001,37,Automatica,9,db/journals/automatica/automatica37.html#LoriaPN01,https://doi.org/10.1016/S0005-1098(01)00097-8 +Pierre Apkarian,Self-scheduled H∞ control of linear parameter-varying systems: a design example.,1995,31,Automatica,9,db/journals/automatica/automatica31.html#ApkarianGB95,https://doi.org/10.1016/0005-1098(95)00038-X +Christiaan Heij,Exact modelling and identifiability of linear systems.,1992,28,Automatica,2,db/journals/automatica/automatica28.html#Heij92,https://doi.org/10.1016/0005-1098(92)90119-Z +Yoshifumi Sunahara,A method of parameter identification for linear distributed parameter systems.,1976,12,Automatica,3,db/journals/automatica/automatica12.html#SunaharaOI76,https://doi.org/10.1016/0005-1098(76)90024-8 +Mario Milanese,Estimation theory for nonlinear models and set membership uncertainty.,1991,27,Automatica,2,db/journals/automatica/automatica27.html#MilaneseV91,https://doi.org/10.1016/0005-1098(91)90090-O +Jun Wang 0002,A multilayer recurrent neural network for on-line synthesis of minimum-norm linear feedback control systems via pole assignment.,1996,32,Automatica,3,db/journals/automatica/automatica32.html#WangW96,https://doi.org/10.1016/0005-1098(95)00156-5 +John E. Rijnsdorp,Interaction in two-variable control systems for distillation columns - I : Theory.,1965,3,Automatica,1,db/journals/automatica/automatica3.html#Rijnsdorp65,https://doi.org/10.1016/0005-1098(65)90018-X +Andrea Bacciotti,Nonpathological Lyapunov functions and discontinuous Carathéodory systems.,2006,42,Automatica,3,db/journals/automatica/automatica42.html#BacciottiC06,https://doi.org/10.1016/j.automatica.2005.10.014 +Alexander Zuyev,Partial asymptotic stabilization of nonlinear distributed parameter systems.,2005,41,Automatica,1,db/journals/automatica/automatica41.html#Zuyev05,https://doi.org/10.1016/j.automatica.2004.08.009 +Ying Tan 0001,Unified iterative learning control schemes for nonlinear dynamic systems with nonlinear input uncertainties.,2012,48,Automatica,12,db/journals/automatica/automatica48.html#TanDHX12,https://doi.org/10.1016/j.automatica.2012.08.038 +Teodoro Alamo,Randomized methods for design of uncertain systems: Sample complexity and sequential algorithms.,2015,52,Automatica,,db/journals/automatica/automatica52.html#AlamoTSR15,https://doi.org/10.1016/j.automatica.2014.11.004 +He Bai,Adaptive motion coordination: Using relative velocity feedback to track a reference velocity.,2009,45,Automatica,4,db/journals/automatica/automatica45.html#BaiAW09,https://doi.org/10.1016/j.automatica.2008.11.008 +Jacob Roll,Nonlinear system identification via direct weight optimization.,2005,41,Automatica,3,db/journals/automatica/automatica41.html#RollNL05,https://doi.org/10.1016/j.automatica.2004.11.010 +Diego Feijer,Stability of primal-dual gradient dynamics and applications to network optimization.,2010,46,Automatica,12,db/journals/automatica/automatica46.html#FeijerP10,https://doi.org/10.1016/j.automatica.2010.08.011 +Zhongcheng Zhou,Stabilization of a second order ODE-heat system coupling at intermediate point.,2015,60,Automatica,,db/journals/automatica/automatica60.html#ZhouX15,https://doi.org/10.1016/j.automatica.2015.06.039 +Vincent Laurain,Refined instrumental variable methods for identification of LPV Box-Jenkins models.,2010,46,Automatica,6,db/journals/automatica/automatica46.html#LaurainGTG10,https://doi.org/10.1016/j.automatica.2010.02.026 +Zhiguang Feng,Two equivalent sets: Application to singular systems.,2017,77,Automatica,,db/journals/automatica/automatica77.html#FengS17,https://doi.org/10.1016/j.automatica.2016.11.035 +Marco Tulio Angulo,Output-feedback finite-time stabilization of disturbed LTI systems.,2012,48,Automatica,4,db/journals/automatica/automatica48.html#AnguloFL12,https://doi.org/10.1016/j.automatica.2012.01.003 +Joost Veenman,A synthesis framework for robust gain-scheduling controllers.,2014,50,Automatica,11,db/journals/automatica/automatica50.html#VeenmanS14,https://doi.org/10.1016/j.automatica.2014.10.002 +Zhisheng Duan,On the effects of redundant control inputs.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#DuanHYJ12,https://doi.org/10.1016/j.automatica.2012.06.001 +Jinling Liang,On algorithms for state feedback stabilization of Boolean control networks.,2017,84,Automatica,,db/journals/automatica/automatica84.html#LiangCL17,https://doi.org/10.1016/j.automatica.2017.06.040 +Qinmin Yang,Adaptive actuator fault tolerant control for uncertain nonlinear systems with multiple actuators.,2015,60,Automatica,,db/journals/automatica/automatica60.html#YangGS15,https://doi.org/10.1016/j.automatica.2015.07.006 +Zhong-Ping Jiang,A Lyapunov formulation of the nonlinear small-gain theorem for interconnected ISS systems.,1996,32,Automatica,8,db/journals/automatica/automatica32.html#JiangMW96,https://doi.org/10.1016/0005-1098(96)00051-9 +Ning Sun 0002,Nonlinear tracking control of underactuated cranes with load transferring and lowering: Theory and experimentation.,2014,50,Automatica,9,db/journals/automatica/automatica50.html#SunF14,https://doi.org/10.1016/j.automatica.2014.07.023 +Yong Feng,Chattering free full-order sliding-mode control.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#FengHY14,https://doi.org/10.1016/j.automatica.2014.01.004 +Xavier Litrico,Boundary control of hyperbolic conservation laws using a frequency domain approach.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#LitricoF09,https://doi.org/10.1016/j.automatica.2008.09.022 +Lorenzo Fagiano,Set membership approximation of discontinuous nonlinear model predictive control laws.,2012,48,Automatica,1,db/journals/automatica/automatica48.html#FagianoCM12,https://doi.org/10.1016/j.automatica.2011.09.039 +Luc Jaulin,Interval constraint propagation with application to bounded-error estimation.,2000,36,Automatica,10,db/journals/automatica/automatica36.html#Jaulin00,https://doi.org/10.1016/S0005-1098(00)00068-6 +D. Flynn,Neural control of turbogenerator systems.,1997,33,Automatica,11,db/journals/automatica/automatica33.html#FlynnMIBSH97,https://doi.org/10.1016/S0005-1098(97)00142-8 +Wei Lin 0001,Global asymptotic stabilization of general nonlinear systems with stable free dynamics via passivity and bounded feedback.,1996,32,Automatica,6,db/journals/automatica/automatica32.html#Lin96,https://doi.org/10.1016/0005-1098(96)00013-1 +Bin Zhou,Improved Razumikhin and Krasovskii approaches for discrete-time time-varying time-delay systems.,2018,91,Automatica,,db/journals/automatica/automatica91.html#Zhou18,https://doi.org/10.1016/j.automatica.2018.01.004 +Fernando Castaños,Dynamic switching surfaces for output sliding mode control: An Hinfinity approach.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#CastanosF11,https://doi.org/10.1016/j.automatica.2011.05.012 +Rui Ru Chen,Markovian jump guaranteed cost congestion control strategies for large scale mobile networks with differentiated services traffic.,2014,50,Automatica,7,db/journals/automatica/automatica50.html#ChenK14,https://doi.org/10.1016/j.automatica.2014.05.004 +M. M. Bayoumi,A self-tuning regulator for multivariable systems.,1981,17,Automatica,4,db/journals/automatica/automatica17.html#BayoumiWE81,https://doi.org/10.1016/0005-1098(81)90030-3 +Gerald Weiss,Feedback control: Theory and design : Konstanty J. Kurman.,1986,22,Automatica,6,db/journals/automatica/automatica22.html#Weiss86,https://doi.org/10.1016/0005-1098(86)90018-X +T. Shiraiwa,Automatic control of casting speed in ingot casting.,1981,17,Automatica,4,db/journals/automatica/automatica17.html#ShiraiwaSKAKK81,https://doi.org/10.1016/0005-1098(81)90032-7 +Lixian Zhang,Non-weighted quasi-time-dependent H∞ filtering for switched linear systems with persistent dwell-time.,2015,54,Automatica,,db/journals/automatica/automatica54.html#ZhangZS15a,https://doi.org/10.1016/j.automatica.2015.02.010 +M. D. S. Aliyu,A transformation approach for solving the Hamilton-Jacobi-Bellman equation in H2 deterministic and stochastic optimal control of affine nonlinear systems.,2003,39,Automatica,7,db/journals/automatica/automatica39.html#Aliyu03a,https://doi.org/10.1016/S0005-1098(03)00080-3 +Yoram Halevi,A riccati equation approach to the singular LQG problem.,1993,29,Automatica,3,db/journals/automatica/automatica29.html#HaleviHB93,https://doi.org/10.1016/0005-1098(93)90073-3 +Yoram Halevi,Admissible MIMO singular observation LQG designs.,1988,24,Automatica,1,db/journals/automatica/automatica24.html#HaleviP88,https://doi.org/10.1016/0005-1098(88)90006-4 +Giuseppe C. Calafiore,Structural interpretation of transmission zeros for matrix second-order systems.,1997,33,Automatica,4,db/journals/automatica/automatica33.html#CalafioreCB97,https://doi.org/10.1016/S0005-1098(96)00241-5 +José Claudio Geromel,An algorithm for optimal decentralized regulation of linear quadratic interconnected systems.,1979,15,Automatica,4,db/journals/automatica/automatica15.html#GeromelB79,https://doi.org/10.1016/0005-1098(79)90025-6 +Xinggao Liu,Least squares based iterative identification for a class of multirate systems.,2010,46,Automatica,3,db/journals/automatica/automatica46.html#LiuL10,https://doi.org/10.1016/j.automatica.2010.01.007 +Vladimir Macias,Image feedback based optimal control and the value of information in a differential game.,2018,90,Automatica,,db/journals/automatica/automatica90.html#MaciasBMBH18,https://doi.org/10.1016/j.automatica.2017.12.045 +Behrouz Touri,On backward product of stochastic matrices.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#TouriN12,https://doi.org/10.1016/j.automatica.2012.05.025 +K. N. Swamy,Deterministic and stochastic control of discrete-time bilinear systems.,1979,15,Automatica,6,db/journals/automatica/automatica15.html#SwamyT79,https://doi.org/10.1016/0005-1098(79)90036-0 +Mario Sznaier,Is set modeling of white noise a good tool for robust H analysis?,2000,36,Automatica,2,db/journals/automatica/automatica36.html#SznaierT00,https://doi.org/10.1016/S0005-1098(99)00137-5 +John F. Coales,The birth of IFAC and its publications.,1983,19,Automatica,3,db/journals/automatica/automatica19.html#Coales83,https://doi.org/10.1016/0005-1098(83)90114-0 +Mohamadreza Ahmadi,Dissipation inequalities for the analysis of a class of PDEs.,2016,66,Automatica,,db/journals/automatica/automatica66.html#AhmadiVP16,https://doi.org/10.1016/j.automatica.2015.12.010 +Howard Elliott,Parameterization issues in multivariable adaptive control.,1984,20,Automatica,5,db/journals/automatica/automatica20.html#ElliottW84,https://doi.org/10.1016/0005-1098(84)90005-0 +S. J. Goldsack,Invariants in the application-oriented specification of control systems.,1982,18,Automatica,1,db/journals/automatica/automatica18.html#GoldsackK82,https://doi.org/10.1016/0005-1098(82)90028-0 +Yalu Li,Event-triggered control for robust set stabilization of logical control networks.,2018,95,Automatica,,db/journals/automatica/automatica95.html#LiLS18,https://doi.org/10.1016/j.automatica.2018.06.030 +Peter F. Hokayem,Bilateral teleoperation: An historical survey.,2006,42,Automatica,12,db/journals/automatica/automatica42.html#HokayemS06,https://doi.org/10.1016/j.automatica.2006.06.027 +Brett Ninness,Analysis of the variability of joint input-output estimation methods.,2005,41,Automatica,7,db/journals/automatica/automatica41.html#NinnessH05a,https://doi.org/10.1016/j.automatica.2005.03.006 +Jalil Sharafi,Fast extremum seeking on Hammerstein plants: A model-based approach.,2015,59,Automatica,,db/journals/automatica/automatica59.html#SharafiMM15,https://doi.org/10.1016/j.automatica.2015.06.024 +Wanquan Liu,Initial and transient response improvement for singular systems.,1996,32,Automatica,3,db/journals/automatica/automatica32.html#LiuYT96,https://doi.org/10.1016/0005-1098(95)00153-0 +Josip Cesic,Extended information filter on matrix Lie groups.,2017,82,Automatica,,db/journals/automatica/automatica82.html#CesicMBP17,https://doi.org/10.1016/j.automatica.2017.04.056 +David Q. Mayne,Robust time-optimal control of constrained linear Systems.,1997,33,Automatica,12,db/journals/automatica/automatica33.html#MayneS97,https://doi.org/10.1016/S0005-1098(97)00157-X +Ying Tan 0001,On non-local stability properties of extremum seeking control.,2006,42,Automatica,6,db/journals/automatica/automatica42.html#TanNM06,https://doi.org/10.1016/j.automatica.2006.01.014 +Jin Guo 0003,Asymptotically efficient identification of FIR systems with quantized observations and general quantized inputs.,2015,57,Automatica,,db/journals/automatica/automatica57.html#GuoWYZZ15,https://doi.org/10.1016/j.automatica.2015.04.009 +William M. Steedly,Statistical analysis of TLS-based prony techniques.,1994,30,Automatica,1,db/journals/automatica/automatica30.html#SteedlyYM94,https://doi.org/10.1016/0005-1098(94)90232-1 +Ufuk Topcu,Local stability analysis using simulations and sum-of-squares programming.,2008,44,Automatica,10,db/journals/automatica/automatica44.html#TopcuPS08,https://doi.org/10.1016/j.automatica.2008.03.010 +Marcello Farina,An approach to output-feedback MPC of stochastic linear discrete-time systems.,2015,55,Automatica,,db/journals/automatica/automatica55.html#FarinaGMS15,https://doi.org/10.1016/j.automatica.2015.02.039 +Lixian Zhang,H INFINITY estimation for discrete-time piecewise homogeneous Markov jump linear systems.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#Zhang09,https://doi.org/10.1016/j.automatica.2009.07.004 +Li Xia,Mean-variance optimization of discrete time discounted Markov decision processes.,2018,88,Automatica,,db/journals/automatica/automatica88.html#Xia18,https://doi.org/10.1016/j.automatica.2017.11.012 +Jurre Hanema,Stabilizing tube-based model predictive control: Terminal set and cost construction for LPV systems.,2017,85,Automatica,,db/journals/automatica/automatica85.html#HanemaLT17,https://doi.org/10.1016/j.automatica.2017.07.046 +Mani M. Tousi,Optimal hybrid fault recovery in a team of unmanned aerial vehicles.,2012,48,Automatica,2,db/journals/automatica/automatica48.html#TousiK12,https://doi.org/10.1016/j.automatica.2011.07.006 +Thomas K. Bliss,Resonance entrainment of tensegrity structures via CPG control.,2012,48,Automatica,11,db/journals/automatica/automatica48.html#BlissIB12,https://doi.org/10.1016/j.automatica.2012.08.023 +M. Scott,Time/fuel optimal control of constrained linear discrete systems.,1986,22,Automatica,6,db/journals/automatica/automatica22.html#Scott86,https://doi.org/10.1016/0005-1098(86)90008-7 +Zalman J. Palmor,Robust digital dead time compensator controller for a class of stable systems.,1986,22,Automatica,5,db/journals/automatica/automatica22.html#Palmor86,https://doi.org/10.1016/0005-1098(86)90068-3 +Aarne Halme,Discrete-time control systems : K. Ogata.,1989,25,Automatica,5,db/journals/automatica/automatica25.html#Halme89,https://doi.org/10.1016/0005-1098(89)90039-3 +Pablo Borja,A constructive procedure for energy shaping of port - Hamiltonian systems.,2016,72,Automatica,,db/journals/automatica/automatica72.html#BorjaCO16,https://doi.org/10.1016/j.automatica.2016.05.028 +Gunnar Johannsen,Human system interface concerns in support system design.,1983,19,Automatica,6,db/journals/automatica/automatica19.html#JohannsenRS83,https://doi.org/10.1016/0005-1098(83)90023-7 +Ramine Nikoukhah,Guaranteed Active Failure Detection and Isolation for Linear Dynamical Systems.,1998,34,Automatica,11,db/journals/automatica/automatica34.html#Nikoukhah98,https://doi.org/10.1016/S0005-1098(98)00079-X +Sérine Damak,Exponential L2-stability for a class of linear systems governed by continuous-time difference equations.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#DamakLLA14,https://doi.org/10.1016/j.automatica.2014.10.087 +Houria Bourdache-Siguerdidjane,Optimal feedback control of non-linear systems.,1987,23,Automatica,3,db/journals/automatica/automatica23.html#Bourdache-SiguerdidjaneF87,https://doi.org/10.1016/0005-1098(87)90009-4 +Gregory P. Matthews,Decentralized tracking for a class of interconnected nonlinear systems using variable structure control.,1988,24,Automatica,2,db/journals/automatica/automatica24.html#MatthewsD88,https://doi.org/10.1016/0005-1098(88)90027-1 +Torsten Söderström,A unified framework for EIV identification methods when the measurement noises are mutually correlated.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#SoderstromDS14,https://doi.org/10.1016/j.automatica.2014.10.037 +Mikael Sternad,LQG-optimal feedforward regulators.,1988,24,Automatica,4,db/journals/automatica/automatica24.html#SternadS88,https://doi.org/10.1016/0005-1098(88)90100-8 +Maaz Mahmood,Lyapunov-based model predictive control of stochastic nonlinear systems.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#MahmoodM12,https://doi.org/10.1016/j.automatica.2012.06.033 +André L. Tits,"Comment on ""The use of Routh array for testing the Hurwitz property of a segment of polynomials"".",2002,38,Automatica,3,db/journals/automatica/automatica38.html#Tits02,https://doi.org/10.1016/S0005-1098(01)00220-5 +V. A. Sastry,Self-tuning regulator applied to a binary distillation column.,1977,13,Automatica,4,db/journals/automatica/automatica13.html#SastrySW77,https://doi.org/10.1016/0005-1098(77)90026-7 +Matthias Albrecht Müller,Input/output-to-state stability and state-norm estimators for switched nonlinear systems.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#MullerL12,https://doi.org/10.1016/j.automatica.2012.06.026 +Fouad Giri,Combined frequency-prediction error identification approach for Wiener systems with backlash and backlash-inverse operators.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#GiriRBC14,https://doi.org/10.1016/j.automatica.2013.12.030 +Xianwei Li,H∞ and H2 filtering for linear systems with uncertain Markov transitions.,2016,67,Automatica,,db/journals/automatica/automatica67.html#LiLGX16,https://doi.org/10.1016/j.automatica.2016.01.016 +Riccardo Sven Risuleo,A nonparametric kernel-based approach to Hammerstein system identification.,2017,85,Automatica,,db/journals/automatica/automatica85.html#RisuleoBH17,https://doi.org/10.1016/j.automatica.2017.07.055 +Zhiyong Sun,Conservation and decay laws in distributed coordination control systems.,2018,87,Automatica,,db/journals/automatica/automatica87.html#SunMAY18,https://doi.org/10.1016/j.automatica.2017.08.024 +Kristiaan Pelckmans,MINLIP for the identification of monotone Wiener systems.,2011,47,Automatica,10,db/journals/automatica/automatica47.html#Pelckmans11,https://doi.org/10.1016/j.automatica.2011.08.026 +Yasir Irshad,System identification in a networked environment using second order statistical properties.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#IrshadMS13,https://doi.org/10.1016/j.automatica.2012.11.039 +Chong Lin,Observer-based networked control for continuous-time systems with random sensor delays.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#LinWY09,https://doi.org/10.1016/j.automatica.2008.09.009 +Ming Liu 0014,Adaptive fault-tolerant compensation control for Markovian jump systems with mismatched external disturbance.,2015,58,Automatica,,db/journals/automatica/automatica58.html#LiuHS15,https://doi.org/10.1016/j.automatica.2015.04.022 +Elena Zattoni,Output regulation by error dynamic feedback in hybrid systems with periodic state jumps.,2017,81,Automatica,,db/journals/automatica/automatica81.html#ZattoniPC17,https://doi.org/10.1016/j.automatica.2017.03.037 +Pierre Apkarian,Nonsmooth optimization for multiband frequency domain control design.,2007,43,Automatica,4,db/journals/automatica/automatica43.html#ApkarianN07,https://doi.org/10.1016/j.automatica.2006.08.031 +John E. McInroy,Techniques for selecting pose algorithms.,1994,30,Automatica,3,db/journals/automatica/automatica30.html#McInroyS94,https://doi.org/10.1016/0005-1098(94)90123-6 +Jo W. Howze,Control system synthesis with response insensitivity.,1983,19,Automatica,4,db/journals/automatica/automatica19.html#HowzeO83,https://doi.org/10.1016/0005-1098(83)90050-X +Goele Pipeleers,Robust high-order repetitive control: Optimal performance trade-offs.,2008,44,Automatica,10,db/journals/automatica/automatica44.html#PipeleersDSS08,https://doi.org/10.1016/j.automatica.2008.02.028 +Lorenzo Marconi,Robust full degree-of-freedom tracking control of a helicopter.,2007,43,Automatica,11,db/journals/automatica/automatica43.html#MarconiN07,https://doi.org/10.1016/j.automatica.2007.03.028 +Honghai Ji,Distributed information-weighted Kalman consensus filter for sensor networks.,2017,77,Automatica,,db/journals/automatica/automatica77.html#JiLHM17,https://doi.org/10.1016/j.automatica.2016.11.014 +Alessandro Giua,Firing rate optimization of cyclic timed event graphs by token allocations.,2002,38,Automatica,1,db/journals/automatica/automatica38.html#GiuaPS02,https://doi.org/10.1016/S0005-1098(01)00189-3 +Soura Dasgupta,Physically based parameterizations for designing adaptive algorithms.,1987,23,Automatica,4,db/journals/automatica/automatica23.html#DasguptaA87,https://doi.org/10.1016/0005-1098(87)90076-8 +Hao Wu 0008,State estimation for Markovian Jump Linear Systems with bounded disturbances.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#WuWYW13,https://doi.org/10.1016/j.automatica.2013.08.030 +Graham A. Parker,Practical nonlinear system identification using a modified volterra series approach.,1982,18,Automatica,1,db/journals/automatica/automatica18.html#ParkerM82,https://doi.org/10.1016/0005-1098(82)90030-9 +Magdi S. Mahmoud,Robust H control of discrete systems with uncertain parameters and unknown delays.,2000,36,Automatica,4,db/journals/automatica/automatica36.html#Mahmoud00,https://doi.org/10.1016/S0005-1098(99)00158-2 +Kaddour Najim,Optimization based on a team of automata with binary outputs.,2004,40,Automatica,8,db/journals/automatica/automatica40.html#NajimPI04,https://doi.org/10.1016/j.automatica.2004.03.013 +Aditya Mahajan,An algorithmic approach to identify irrelevant information in sequential teams.,2015,61,Automatica,,db/journals/automatica/automatica61.html#MahajanT15,https://doi.org/10.1016/j.automatica.2015.08.002 +Mingxuan Sun,Iterative learning control with initial rectifying action.,2002,38,Automatica,7,db/journals/automatica/automatica38.html#SunW02,https://doi.org/10.1016/S0005-1098(02)00003-1 +John D. Finney,Matrix scaling for large-scale system decomposition.,1996,32,Automatica,8,db/journals/automatica/automatica32.html#FinneyH96,https://doi.org/10.1016/0005-1098(96)00018-0 +J. S. McDonald,ℓ*1-optimal control of multivariable systems with output norm constraints.,1991,27,Automatica,2,db/journals/automatica/automatica27.html#McDonaldP91,https://doi.org/10.1016/0005-1098(91)90080-L +Marios M. Polycarpou,A robust adaptive nonlinear control design.,1996,32,Automatica,3,db/journals/automatica/automatica32.html#PolycarpouI96,https://doi.org/10.1016/0005-1098(95)00147-6 +Zi-Jiang Yang,Adaptive robust nonlinear control of a magnetic levitation system.,2001,37,Automatica,7,db/journals/automatica/automatica37.html#YangT01,https://doi.org/10.1016/S0005-1098(01)00063-2 +Ilyasse Aksikas,LQ control design of a class of hyperbolic PDE systems: Application to fixed-bed reactor.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#AksikasFFW09,https://doi.org/10.1016/j.automatica.2009.02.017 +Ravi Gondhalekar,Least-restrictive move-blocking model predictive control.,2010,46,Automatica,7,db/journals/automatica/automatica46.html#GondhalekarI10,https://doi.org/10.1016/j.automatica.2010.04.010 +J. W. Lee,On QFT tuning of multivariable andmicro* controllers.,2000,36,Automatica,11,db/journals/automatica/automatica36.html#LeeCS00,https://doi.org/10.1016/S0005-1098(00)00076-5 +Zhijun Li,Adaptive robust coordinated control of multiple mobile manipulators interacting with rigid environments.,2010,46,Automatica,12,db/journals/automatica/automatica46.html#LiLK10,https://doi.org/10.1016/j.automatica.2010.08.012 +Zhiwei Gao,Observer-based controller design for stochastic descriptor systems with Brownian motions.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#GaoS13,https://doi.org/10.1016/j.automatica.2013.04.001 +Berk Altin,Exponential stability of nonlinear differential repetitive processes with applications to iterative learning control.,2017,81,Automatica,,db/journals/automatica/automatica81.html#AltinB17,https://doi.org/10.1016/j.automatica.2017.04.004 +Francesco Amato,Solution of the state feedback singular Hinfinity control problem for linear time-varying systems.,2000,36,Automatica,10,db/journals/automatica/automatica36.html#AmatoMP00,https://doi.org/10.1016/S0005-1098(00)00062-5 +Jacques L. Willems,Time-varying feedback for the stabilization of fixed modes in decentralized control systems.,1989,25,Automatica,1,db/journals/automatica/automatica25.html#Willems89,https://doi.org/10.1016/0005-1098(89)90128-3 +Kiheon Park,Wiener-Hopf design of the optimal decoupling control system with state-space formulas.,2002,38,Automatica,2,db/journals/automatica/automatica38.html#ParkCK02,https://doi.org/10.1016/S0005-1098(01)00206-0 +M. Vidyasagar,Probabilistic solutions to some NP-hard matrix problems.,2001,37,Automatica,9,db/journals/automatica/automatica37.html#VidyasagarB01,https://doi.org/10.1016/S0005-1098(01)00089-9 +Alexandre Seuret,Wirtinger-based integral inequality: Application to time-delay systems.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#SeuretG13,https://doi.org/10.1016/j.automatica.2013.05.030 +Amit A. Kale,On Kharitonov's theorem without invariant degree assumption.,2000,36,Automatica,7,db/journals/automatica/automatica36.html#KaleT00,https://doi.org/10.1016/S0005-1098(00)00016-9 +Robert Tenno,State estimation for a large-scale wastewater treatment system.,1996,32,Automatica,3,db/journals/automatica/automatica32.html#TennoU96,https://doi.org/10.1016/0005-1098(95)00141-7 +Lorenzo Marconi,Autonomous vertical landing on an oscillating platform: an internal-model based approach.,2002,38,Automatica,1,db/journals/automatica/automatica38.html#MarconiIS02,https://doi.org/10.1016/S0005-1098(01)00184-4 +Vladimir L. Kharitonov,Lyapunov matrices: Existence and uniqueness issues.,2010,46,Automatica,10,db/journals/automatica/automatica46.html#Kharitonov10,https://doi.org/10.1016/j.automatica.2010.06.039 +S. Humble,Cybernetics: A new management tool: Dr Barry Clemson.,1988,24,Automatica,4,db/journals/automatica/automatica24.html#Humble88,https://doi.org/10.1016/0005-1098(88)90104-5 +Yao Chen 0003,Consensus of discrete-time multi-agent systems with transmission nonlinearity.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#ChenLL13,https://doi.org/10.1016/j.automatica.2013.02.021 +Pieter Eykhoff,Automatica prize paper awards - 1987.,1988,24,Automatica,1,db/journals/automatica/automatica24.html#Eykhoff88,https://doi.org/10.1016/0005-1098(88)90002-7 +Cong-Ran Zhao,Global stabilization of stochastic high-order feedforward nonlinear systems with time-varying delay.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#ZhaoX14,https://doi.org/10.1016/j.automatica.2013.09.044 +Shuzhi Sam Ge,Adaptive NN control of uncertain nonlinear pure-feedback systems.,2002,38,Automatica,4,db/journals/automatica/automatica38.html#GeW02,https://doi.org/10.1016/S0005-1098(01)00254-0 +Jan Komenda,Supervisory control of modular systems with global specification languages.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#KomendaSGM08,https://doi.org/10.1016/j.automatica.2007.09.004 +Xinghuo Yu,Multi-input uncertain linear systems with terminal sliding-mode control.,1998,34,Automatica,3,db/journals/automatica/automatica34.html#YuM98,https://doi.org/10.1016/S0005-1098(97)00205-7 +Christopher Edwards,Adaptive continuous higher order sliding mode control.,2016,65,Automatica,,db/journals/automatica/automatica65.html#EdwardsS16,https://doi.org/10.1016/j.automatica.2015.11.038 +Changyun Wen,Global boundedness of discrete-time adaptive control just using estimator projection.,1992,28,Automatica,6,db/journals/automatica/automatica28.html#WenH92,https://doi.org/10.1016/0005-1098(92)90056-L +Edgar N. Sánchez,Recurrent neural block form control.,2003,39,Automatica,7,db/journals/automatica/automatica39.html#SanchezLF03,https://doi.org/10.1016/S0005-1098(03)00084-0 +Wei Su,Noise leads to quasi-consensus of Hegselmann-Krause opinion dynamics.,2017,85,Automatica,,db/journals/automatica/automatica85.html#SuCH17,https://doi.org/10.1016/j.automatica.2017.08.008 +Hossny El-Sherief,Multivariable system structure and parameter identification using the correlation method.,1981,17,Automatica,3,db/journals/automatica/automatica17.html#El-Sherief81,https://doi.org/10.1016/0005-1098(81)90011-X +Keigo Watanabe,A new forward-pass fixed-interval smoother using the U-D information matrix factorization.,1986,22,Automatica,4,db/journals/automatica/automatica22.html#Watanabe86,https://doi.org/10.1016/0005-1098(86)90051-8 +Jiang Wei,Controllability of singular systems with control delay.,2001,37,Automatica,11,db/journals/automatica/automatica37.html#WeiW01,https://doi.org/10.1016/S0005-1098(01)00135-2 +Mohammad Saleh Tavazoei,A proof for non existence of periodic solutions in time invariant fractional order systems.,2009,45,Automatica,8,db/journals/automatica/automatica45.html#TavazoeiH09,https://doi.org/10.1016/j.automatica.2009.04.001 +Igor B. Furtat,Compensation of disturbances for MIMO systems with quantized output.,2015,60,Automatica,,db/journals/automatica/automatica60.html#FurtatFL15,https://doi.org/10.1016/j.automatica.2015.07.024 +Junlin Xiong,Stabilization of linear systems over networks with bounded packet loss.,2007,43,Automatica,1,db/journals/automatica/automatica43.html#XiongL07,https://doi.org/10.1016/j.automatica.2006.07.017 +Haichao Gui,Finite-time output-feedback position and attitude tracking of a rigid body.,2016,74,Automatica,,db/journals/automatica/automatica74.html#GuiV16,https://doi.org/10.1016/j.automatica.2016.08.003 +Giuseppe De Nicolao,Stabilizing Predictive Control of Nonlinear ARX Models.,1997,33,Automatica,9,db/journals/automatica/automatica33.html#NicolaoMS97,https://doi.org/10.1016/S0005-1098(97)00079-4 +George S. Axelby,Introduction.,1993,29,Automatica,1,db/journals/automatica/automatica29.html#Axelby93,https://doi.org/10.1016/0005-1098(93)90168-S +Francesco Amato,Input-output finite time stabilization of linear systems.,2010,46,Automatica,9,db/journals/automatica/automatica46.html#AmatoACT10,https://doi.org/10.1016/j.automatica.2010.06.005 +Jürgen Ackermann,Research survey.,1987,23,Automatica,3,db/journals/automatica/automatica23.html#Ackermann87,https://doi.org/10.1016/0005-1098(87)90016-1 +Rifat Sipahi,Complete stability robustness of third-order LTI multiple time-delay systems.,2005,41,Automatica,8,db/journals/automatica/automatica41.html#SipahiO05,https://doi.org/10.1016/j.automatica.2005.03.022 +Neil D. Evans,Structural identifiability of surface binding reactions involving heterogeneous analyte: Application to surface plasmon resonance experiments.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#EvansMLBHMZC13,https://doi.org/10.1016/j.automatica.2012.09.015 +Kevin Schmidt,Yield trajectory tracking for hyperbolic age-structured population systems.,2018,90,Automatica,,db/journals/automatica/automatica90.html#SchmidtKK18,https://doi.org/10.1016/j.automatica.2017.12.050 +Toshiyuki Ohtsuka,A continuation/GMRES method for fast computation of nonlinear receding horizon control.,2004,40,Automatica,4,db/journals/automatica/automatica40.html#Ohtsuka04,https://doi.org/10.1016/j.automatica.2003.11.005 +K. S. Hindi,Control systems design: An introduction to state-space methods : Bernard Friedland.,1987,23,Automatica,6,db/journals/automatica/automatica23.html#Hindi87,https://doi.org/10.1016/0005-1098(87)90044-6 +Xidong Tang,Adaptive actuator failure compensation for parametric strict feedback systems and an aircraft application.,2003,39,Automatica,11,db/journals/automatica/automatica39.html#TangTJ03,https://doi.org/10.1016/S0005-1098(03)00219-X +Jorma Rissanen,On the theory of self-adjusting models.,1963,1,Automatica,4,db/journals/automatica/automatica1.html#Rissanen63,https://doi.org/10.1016/0005-1098(63)90014-1 +Suwanchai Sangsuk-Iam,Analysis of continuous-time Kalman filtering under incorrect noise covariances.,1988,24,Automatica,5,db/journals/automatica/automatica24.html#Sangsuk-IamB88,https://doi.org/10.1016/0005-1098(88)90113-6 +E. Irving,Improving power network stability and unit stress with adaptive generator control.,1979,15,Automatica,1,db/journals/automatica/automatica15.html#IrvingBCM79,https://doi.org/10.1016/0005-1098(79)90085-2 +Mauricio G. Cea,Temporal sampling issues in discrete nonlinear filtering.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#CeaG13,https://doi.org/10.1016/j.automatica.2012.09.026 +Hisham Abou-Kandil,On the solution of discrete-time Markovian jump linear quadratic control problems.,1995,31,Automatica,5,db/journals/automatica/automatica31.html#Abou-KandilFJ95,https://doi.org/10.1016/0005-1098(94)00164-E +Ernesto Kofman,Probabilistic set invariance and ultimate boundedness.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#KofmanDS12,https://doi.org/10.1016/j.automatica.2012.06.074 +Jie Chen 0005,Worst case identification of continuous time systems via interpolation.,1994,30,Automatica,12,db/journals/automatica/automatica30.html#ChenGN94,https://doi.org/10.1016/0005-1098(94)90045-0 +Huibert Kwakernaak,New Automatica submission and review system PAMPUS.,2001,37,Automatica,9,db/journals/automatica/automatica37.html#Kwakernaak01a,https://doi.org/10.1016/S0005-1098(01)00138-8 +Zhan Shu,Static output-feedback stabilization of discrete-time Markovian jump linear systems: A system augmentation approach.,2010,46,Automatica,4,db/journals/automatica/automatica46.html#ShuLX10,https://doi.org/10.1016/j.automatica.2010.02.001 +Rong Su,Discrete-event modeling of multi-agent systems with broadcasting-based parallel composition.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#Su13,https://doi.org/10.1016/j.automatica.2013.08.007 +Peter Young,A second generation adaptive autostabilization system for airborne vehicles.,1981,17,Automatica,3,db/journals/automatica/automatica17.html#Young81a,https://doi.org/10.1016/0005-1098(81)90004-2 +Zhong-Ping Jiang,Design of Robust Adaptive Controllers for Nonlinear Systems with Dynamic Uncertainties.,1998,34,Automatica,7,db/journals/automatica/automatica34.html#JiangP98,https://doi.org/10.1016/S0005-1098(98)00018-1 +Xiaojie Su,Sliding mode control of hybrid switched systems via an event-triggered mechanism.,2018,90,Automatica,,db/journals/automatica/automatica90.html#SuLSS18,https://doi.org/10.1016/j.automatica.2017.12.033 +Le Yi Wang,Joint state and event observers for linear switching systems under irregular sampling.,2013,49,Automatica,4,db/journals/automatica/automatica49.html#WangFY13,https://doi.org/10.1016/j.automatica.2013.01.013 +Maurizio Porfiri,Criteria for global pinning-controllability of complex networks.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#PorfiriB08,https://doi.org/10.1016/j.automatica.2008.05.006 +Erik Bølviken,Monte Carlo filters for non-linear state estimation.,2001,37,Automatica,2,db/journals/automatica/automatica37.html#BolvikenACS01,https://doi.org/10.1016/S0005-1098(00)00151-5 +Pradip K. Sinha,Analytical and design aspects of magnetically suspended vehicles.,1979,15,Automatica,5,db/journals/automatica/automatica15.html#SinhaJ79,https://doi.org/10.1016/0005-1098(79)90004-9 +Sze Zheng Yong,A unified filter for simultaneous input and state estimation of linear discrete-time stochastic systems.,2016,63,Automatica,,db/journals/automatica/automatica63.html#YongZF16,https://doi.org/10.1016/j.automatica.2015.10.040 +Masoud Abbaszadeh,A generalized framework for robust nonlinear Hinfinity filtering of Lipschitz descriptor systems with parametric and nonlinear uncertainties.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#AbbaszadehM12,https://doi.org/10.1016/j.automatica.2012.02.033 +William B. Dunbar,Distributed receding horizon control for multi-vehicle formation stabilization.,2006,42,Automatica,4,db/journals/automatica/automatica42.html#DunbarM06,https://doi.org/10.1016/j.automatica.2005.12.008 +Sung Hyun Kim,Networked-based robust Hinfinity control design using multiple levels of network traffic.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#KimP09,https://doi.org/10.1016/j.automatica.2008.10.013 +Weitian Chen,Actuator fault diagnosis for a class of nonlinear systems and its application to a laboratory 3D crane.,2011,47,Automatica,7,db/journals/automatica/automatica47.html#ChenS11,https://doi.org/10.1016/j.automatica.2011.02.012 +Taeyoung Lee,Optimal control of partitioned hybrid systems via discrete-time Hamilton-Jacobi theory.,2014,50,Automatica,8,db/journals/automatica/automatica50.html#Lee14,https://doi.org/10.1016/j.automatica.2014.05.024 +Petros Ioannou,Reduced-order performance of parallel and series-parallel identifiers with weakly observable parasitics.,1983,19,Automatica,1,db/journals/automatica/automatica19.html#IoannouJ83,https://doi.org/10.1016/0005-1098(83)90076-6 +Abhijit Das 0005,Distributed adaptive control for synchronization of unknown nonlinear networked systems.,2010,46,Automatica,12,db/journals/automatica/automatica46.html#DasL10,https://doi.org/10.1016/j.automatica.2010.08.008 +Andrei M. Shkel,The Jogger's Problem: Control of Dynamics in Real-time Motion Planning.,1997,33,Automatica,7,db/journals/automatica/automatica33.html#ShkelL97,https://doi.org/10.1016/S0005-1098(97)00024-1 +Laurent Vanbeylen,A fractional approach to identify Wiener-Hammerstein systems.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#Vanbeylen14,https://doi.org/10.1016/j.automatica.2013.12.013 +Xiaojie Su,Event-triggered fuzzy control of nonlinear systems with its application to inverted pendulum systems.,2018,94,Automatica,,db/journals/automatica/automatica94.html#SuXLW18,https://doi.org/10.1016/j.automatica.2018.04.025 +Jaime Rubio Hervas,Controllability and stabilizability of a class of systems with higher-order nonholonomic constraints.,2015,54,Automatica,,db/journals/automatica/automatica54.html#HervasR15,https://doi.org/10.1016/j.automatica.2015.02.006 +Vincent D. Blondel,Complexity of stability and controllability of elementary hybrid systems.,1999,35,Automatica,3,db/journals/automatica/automatica35.html#BlondelT99,https://doi.org/10.1016/S0005-1098(98)00175-7 +Arthur L. Dexter,Microcomputer bus structures and bus interface design.,1988,24,Automatica,2,db/journals/automatica/automatica24.html#Dexter88,https://doi.org/10.1016/0005-1098(88)90044-1 +Han Ho Choi,A new method for variable structure control system design: A linear matrix inequality approach.,1997,33,Automatica,11,db/journals/automatica/automatica33.html#Choi97,https://doi.org/10.1016/S0005-1098(97)00118-0 +Xinwu Liang,A unified design method for adaptive visual tracking control of robots with eye-in-hand/fixed camera configuration.,2015,59,Automatica,,db/journals/automatica/automatica59.html#LiangWLCZ15,https://doi.org/10.1016/j.automatica.2015.06.018 +Hongkeun Kim,Design of stable parallel feedforward compensator and its application to synchronization problem.,2016,64,Automatica,,db/journals/automatica/automatica64.html#KimKBSS16,https://doi.org/10.1016/j.automatica.2015.11.020 +Vito Cerone,A fast technique for the generation of the spectral set of a polytope of polynomials.,1997,33,Automatica,2,db/journals/automatica/automatica33.html#Cerone97,https://doi.org/10.1016/S0005-1098(96)00196-3 +Romeo Ortega,Robustness of adaptive controllers - A survey.,1989,25,Automatica,5,db/journals/automatica/automatica25.html#OrtegaT89,https://doi.org/10.1016/0005-1098(89)90023-X +V. Panuska,Author's reply to comments on 'non-convergence of the approximate maximum likelihood identification algorithm'.,1980,16,Automatica,2,db/journals/automatica/automatica16.html#Panuska80a,https://doi.org/10.1016/0005-1098(80)90060-6 +Liu Hsu,Automated synthesis of decentralized tuning regulators for systems with measurable DC gain.,1992,28,Automatica,1,db/journals/automatica/automatica28.html#HsuCB92,https://doi.org/10.1016/0005-1098(92)90020-G +Petros G. Voulgaris,Robust adaptive control: A slowly varying systems approach.,1994,30,Automatica,9,db/journals/automatica/automatica30.html#VoulgarisDV94a,https://doi.org/10.1016/0005-1098(94)90011-6 +J. Richalet,Model predictive heuristic control: Applications to industrial processes.,1978,14,Automatica,5,db/journals/automatica/automatica14.html#RichaletRTP78,https://doi.org/10.1016/0005-1098(78)90001-8 +Bi-Qiang Mu,A globally consistent nonlinear least squares estimator for identification of nonlinear rational systems.,2017,77,Automatica,,db/journals/automatica/automatica77.html#MuBZZ17,https://doi.org/10.1016/j.automatica.2016.11.009 +Eduard Eitelberg,Quantitative feedback design for tracking error tolerance.,2000,36,Automatica,2,db/journals/automatica/automatica36.html#Eitelberg00,https://doi.org/10.1016/S0005-1098(99)00149-1 +Franco Blanchini,Set invariance in control.,1999,35,Automatica,11,db/journals/automatica/automatica35.html#Blanchini99,https://doi.org/10.1016/S0005-1098(99)00113-2 +Christian Harkort,Stability and passivity preserving Petrov-Galerkin approximation of linear infinite-dimensional systems.,2012,48,Automatica,7,db/journals/automatica/automatica48.html#HarkortD12,https://doi.org/10.1016/j.automatica.2012.04.010 +Francesco Borrelli,Robust invariant sets for constrained storage systems.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#BorrelliVP09,https://doi.org/10.1016/j.automatica.2009.09.028 +Lennart Ljung,On the estimation of transfer functions.,1985,21,Automatica,6,db/journals/automatica/automatica21.html#Ljung85,https://doi.org/10.1016/0005-1098(85)90042-1 +Peter W. Gibbens,Achieving diagonal interactor matrix for multivariable linear systems with uncertain parameters.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#GibbensSF93,https://doi.org/10.1016/0005-1098(93)90019-P +T. Takamatsu,A geometric approach to multivariable control system design of a distillation column.,1979,15,Automatica,4,db/journals/automatica/automatica15.html#TakamatsuHN79,https://doi.org/10.1016/0005-1098(79)90013-X +István Nagy 0001,Control of electrical drives: W. Leonhard.,1986,22,Automatica,5,db/journals/automatica/automatica22.html#Nagy86,https://doi.org/10.1016/0005-1098(86)90073-7 +Sergio Pequito,Structural minimum controllability problem for switched linear continuous-time systems.,2017,78,Automatica,,db/journals/automatica/automatica78.html#PequitoP17,https://doi.org/10.1016/j.automatica.2016.12.039 +Jonathan D. Wolfe,The periodic optimality of LQ controllers satisfying strong stabilization.,2003,39,Automatica,10,db/journals/automatica/automatica39.html#WolfeS03,https://doi.org/10.1016/S0005-1098(03)00178-X +Sridhar Seshagiri,Robust output feedback regulation of minimum-phase nonlinear systems using conditional integrators.,2005,41,Automatica,1,db/journals/automatica/automatica41.html#SeshagiriK05,https://doi.org/10.1016/j.automatica.2004.08.013 +Paul M. Frank,Frequency domain approach to optimally robust residual generation and evaluation for model-based fault diagnosis.,1994,30,Automatica,5,db/journals/automatica/automatica30.html#FrankD94,https://doi.org/10.1016/0005-1098(94)90169-4 +Gengshen Liu,Application of EKF technique to ship resistance measurement.,1993,29,Automatica,2,db/journals/automatica/automatica29.html#Liu93,https://doi.org/10.1016/0005-1098(93)90123-B +Didier Henrion,An LMI condition for robust stability of polynomial matrix polytopes.,2001,37,Automatica,3,db/journals/automatica/automatica37.html#HenrionAPS01,https://doi.org/10.1016/S0005-1098(00)00170-9 +Bernardo A. León de la Barra,Transient properties of type m continuous time scalar systems.,1994,30,Automatica,9,db/journals/automatica/automatica30.html#SF94,https://doi.org/10.1016/0005-1098(94)90018-3 +Tae-Yong Kuc,An adaptive PID learning control of robot manipulators.,2000,36,Automatica,5,db/journals/automatica/automatica36.html#KucH00,https://doi.org/10.1016/S0005-1098(99)00198-3 +Wei-Jie Mao,"Robust stabilization of uncertain time-varying discrete systems and comments on ""an improved approach for constrained robust model predictive control"".",2003,39,Automatica,6,db/journals/automatica/automatica39.html#Mao03,https://doi.org/10.1016/S0005-1098(03)00069-4 +Levent Turan,A unified loop transfer recovery approach to robust control using H∞ optimization methods.,1995,31,Automatica,7,db/journals/automatica/automatica31.html#TuranM95,https://doi.org/10.1016/0005-1098(95)00003-F +Corentin Briat,Convex conditions for robust stability analysis and stabilization of linear aperiodic impulsive and sampled-data systems under dwell-time constraints.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#Briat13,https://doi.org/10.1016/j.automatica.2013.08.022 +Marco Casini,On input design in linfinity conditional set membership identification.,2006,42,Automatica,5,db/journals/automatica/automatica42.html#CasiniGV06,https://doi.org/10.1016/j.automatica.2006.01.006 +Bin Zhou 0001,Observer based output feedback control of linear systems with input and output delays.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#ZhouLL13a,https://doi.org/10.1016/j.automatica.2013.03.031 +R. I. Badr,Stability and performance robustness for multivariable linear systems.,1989,25,Automatica,6,db/journals/automatica/automatica25.html#BadrHBB89,https://doi.org/10.1016/0005-1098(89)90060-5 +Sonia Martínez,Optimal sensor placement and motion coordination for target tracking.,2006,42,Automatica,4,db/journals/automatica/automatica42.html#MartinezB06,https://doi.org/10.1016/j.automatica.2005.12.018 +Yusheng Liu,Robust adaptive observer for nonlinear systems with unmodeled dynamics.,2009,45,Automatica,8,db/journals/automatica/automatica45.html#Liu09,https://doi.org/10.1016/j.automatica.2009.04.002 +Da-Wei Gu,Improved formulae for the 2-block H∞ super-optimal solution.,1990,26,Automatica,2,db/journals/automatica/automatica26.html#GuTP90,https://doi.org/10.1016/0005-1098(90)90144-7 +Yaning Lin,Pareto-based guaranteed cost control of the uncertain mean-field stochastic systems in infinite horizon.,2018,92,Automatica,,db/journals/automatica/automatica92.html#LinZZ18,https://doi.org/10.1016/j.automatica.2018.03.017 +Jun Hu 0004,Extended Kalman filtering with stochastic nonlinearities and multiple missing measurements.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#HuWGS12,https://doi.org/10.1016/j.automatica.2012.03.027 +Xianwei Li,Design of delta-sigma modulators via generalized Kalman-Yakubovich-Popov lemma.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#LiYG14a,https://doi.org/10.1016/j.automatica.2014.09.002 +Franco Blanchini,Piecewise-linear Lyapunov functions for structural stability of biochemical networks.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#BlanchiniG14,https://doi.org/10.1016/j.automatica.2014.08.012 +M. Ribbens-Pavella,Direct methods for studying dynamics of large-scale electric power systems - A survey.,1985,21,Automatica,1,db/journals/automatica/automatica21.html#Ribbens-Pavella85,https://doi.org/10.1016/0005-1098(85)90095-0 +Qiangde Wang,Decentralized robust adaptive output feedback control of stochastic nonlinear interconnected systems with dynamic interactions.,2015,54,Automatica,,db/journals/automatica/automatica54.html#WangW15,https://doi.org/10.1016/j.automatica.2015.01.017 +Lauri Hakkala,On-line co-ordination under uncertainty of weakly interacting dynamical systems.,1976,12,Automatica,2,db/journals/automatica/automatica12.html#HakkalaB76,https://doi.org/10.1016/0005-1098(76)90082-0 +Kathryn E. Lenz,Weights Determine Stability of Sensitivity-optimal Controllers.,1997,33,Automatica,7,db/journals/automatica/automatica33.html#Lenz97,https://doi.org/10.1016/S0005-1098(97)00016-2 +Gabriela Iuliana Bara,"Comments on ""Dissipative analysis and control of state-space symmetric systems"" [Automatica 45 (2009) 1574-1579].",2012,48,Automatica,10,db/journals/automatica/automatica48.html#Bara12,https://doi.org/10.1016/j.automatica.2012.06.015 +Ralf Rothfuß,Flatness based control of a nonlinear chemical reactor model.,1996,32,Automatica,10,db/journals/automatica/automatica32.html#RothfussRZ96,https://doi.org/10.1016/0005-1098(96)00090-8 +Tiejun Zhang,Output tracking of constrained nonlinear processes with offset-free input-to-state stable fuzzy predictive control.,2009,45,Automatica,4,db/journals/automatica/automatica45.html#ZhangFZ09,https://doi.org/10.1016/j.automatica.2008.11.016 +Claus Danielson,Constrained flow control in storage networks: Capacity maximization and balancing.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#DanielsonBOAP13,https://doi.org/10.1016/j.automatica.2013.05.014 +Taro Tsujino,On the connection between controllability and stabilizability of linear systems with structural uncertain parameters.,1993,29,Automatica,1,db/journals/automatica/automatica29.html#TsujinoFW93,https://doi.org/10.1016/0005-1098(93)90171-O +Rogelio Lozano-Leal,Independent tracking and regulation adaptive control with forgetting factor.,1982,18,Automatica,4,db/journals/automatica/automatica18.html#Lozano-Leal82,https://doi.org/10.1016/0005-1098(82)90073-5 +Shunli Li,Active disturbance rejection control for high pointing accuracy and rotation speed.,2009,45,Automatica,8,db/journals/automatica/automatica45.html#LiYY09,https://doi.org/10.1016/j.automatica.2009.03.029 +Umer Hameed Shah,Active vibration control of a flexible rod moving in water: Application to nuclear refueling machines.,2018,93,Automatica,,db/journals/automatica/automatica93.html#ShahH18,https://doi.org/10.1016/j.automatica.2018.03.048 +Maria Pia Saccomani,Parameter identifiability of nonlinear systems: the role of initial conditions.,2003,39,Automatica,4,db/journals/automatica/automatica39.html#SaccomaniAD03,https://doi.org/10.1016/S0005-1098(02)00302-3 +Xiaoxu Wang,Gaussian filter for nonlinear systems with one-step randomly delayed measurements.,2013,49,Automatica,4,db/journals/automatica/automatica49.html#WangLPZ13,https://doi.org/10.1016/j.automatica.2013.01.012 +Jiangping Hu,Adaptive tracking control of leader-follower systems with unknown dynamics and partial measurements.,2014,50,Automatica,5,db/journals/automatica/automatica50.html#HuZ14,https://doi.org/10.1016/j.automatica.2014.02.037 +Michel Gevers,Optimal experiment designs with respect to the intended model application.,1986,22,Automatica,5,db/journals/automatica/automatica22.html#GeversL86,https://doi.org/10.1016/0005-1098(86)90064-6 +N. Danesh Pour,Performance assessment of advanced supervisory-regulatory control systems with subspace LQG benchmark.,2010,46,Automatica,8,db/journals/automatica/automatica46.html#PourHS10,https://doi.org/10.1016/j.automatica.2010.05.016 +Li Chen,Maximum principle for the stochastic optimal control problem with delay and application.,2010,46,Automatica,6,db/journals/automatica/automatica46.html#ChenW10,https://doi.org/10.1016/j.automatica.2010.03.005 +Héctor G. Chiacchiarini,Variable structure control with a second-order sliding condition: Application to a steam generator.,1995,31,Automatica,8,db/journals/automatica/automatica31.html#ChiacchiariniDRP95,https://doi.org/10.1016/0005-1098(95)00033-S +Tao Bian,Value iteration and adaptive dynamic programming for data-driven adaptive optimal control design.,2016,71,Automatica,,db/journals/automatica/automatica71.html#BianJ16,https://doi.org/10.1016/j.automatica.2016.05.003 +Ivan Tyukin,Adaptive observers and parameter estimation for a class of systems nonlinear in the parameters.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#TyukinSNL13,https://doi.org/10.1016/j.automatica.2013.05.008 +Tong Zhou,Minimal inputs/outputs for subsystems in a networked system.,2018,94,Automatica,,db/journals/automatica/automatica94.html#Zhou18a,https://doi.org/10.1016/j.automatica.2018.04.027 +He Kong,Predictive metamorphic control.,2013,49,Automatica,12,db/journals/automatica/automatica49.html#KongGS13,https://doi.org/10.1016/j.automatica.2013.09.029 +Konstantin Usevich,Optimization on a Grassmann manifold with application to system identification.,2014,50,Automatica,6,db/journals/automatica/automatica50.html#UsevichM14,https://doi.org/10.1016/j.automatica.2014.04.010 +Yong-Feng Gao,Event-triggered control for stochastic nonlinear systems.,2018,95,Automatica,,db/journals/automatica/automatica95.html#GaoSWW18,https://doi.org/10.1016/j.automatica.2018.05.021 +Hao Chen 0012,Output controllability and optimal output control of state-dependent switched Boolean control networks.,2014,50,Automatica,7,db/journals/automatica/automatica50.html#ChenS14,https://doi.org/10.1016/j.automatica.2014.05.013 +Ngoc Anh Nguyen,A family of piecewise affine control Lyapunov functions.,2018,90,Automatica,,db/journals/automatica/automatica90.html#NguyenO18,https://doi.org/10.1016/j.automatica.2017.12.052 +Wenwu Yu,Second-order consensus in multi-agent dynamical systems with sampled position data.,2011,47,Automatica,7,db/journals/automatica/automatica47.html#YuZCRC11,https://doi.org/10.1016/j.automatica.2011.02.027 +Yuzhen Wang,Simultaneous stabilization of a set of nonlinear port-controlled Hamiltonian systems.,2007,43,Automatica,3,db/journals/automatica/automatica43.html#WangFC07,https://doi.org/10.1016/j.automatica.2006.09.008 +Francesco Amato,Finite-time control of linear systems subject to parametric uncertainties and disturbances.,2001,37,Automatica,9,db/journals/automatica/automatica37.html#AmatoAD01,https://doi.org/10.1016/S0005-1098(01)00087-5 +József Hatvany,The DDA integrator as the iterative module of a variable structure process control computer.,1969,5,Automatica,1,db/journals/automatica/automatica5.html#Hatvany69a,https://doi.org/10.1016/0005-1098(69)90054-5 +Coen C. de Visser,A new approach to linear regression with multivariate splines.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#VisserCM09,https://doi.org/10.1016/j.automatica.2009.09.017 +Joël Blot,Conjugate points in infinite-horizon control problems.,2001,37,Automatica,4,db/journals/automatica/automatica37.html#BlotH01,https://doi.org/10.1016/S0005-1098(00)00182-5 +Aleksandr Y. Aravkin,Generalized Kalman smoothing: Modeling and algorithms.,2017,86,Automatica,,db/journals/automatica/automatica86.html#AravkinBLLP17,https://doi.org/10.1016/j.automatica.2017.08.011 +Kenichi Hamamoto,An iterative learning control algorithm within prescribed input-output subspace.,2001,37,Automatica,11,db/journals/automatica/automatica37.html#HamamotoS01,https://doi.org/10.1016/S0005-1098(01)00133-9 +Hongli Dong,Finite-horizon reliable control with randomly occurring uncertainties and nonlinearities subject to output quantization.,2015,52,Automatica,,db/journals/automatica/automatica52.html#DongWDG15,https://doi.org/10.1016/j.automatica.2014.11.020 +Amir Ajorlou,Sufficient conditions for the convergence of a class of nonlinear distributed consensus algorithms.,2011,47,Automatica,3,db/journals/automatica/automatica47.html#AjorlouMA11,https://doi.org/10.1016/j.automatica.2011.01.042 +Rolf Johansson,Observer-based strict positive real (SPR) feedback control system design.,2002,38,Automatica,9,db/journals/automatica/automatica38.html#JohanssonR02,https://doi.org/10.1016/S0005-1098(02)00044-4 +P. S. V. Nataraj,Template generation for continuous transfer functions using interval analysis.,2000,36,Automatica,1,db/journals/automatica/automatica36.html#NatarajS00,https://doi.org/10.1016/S0005-1098(99)00082-5 +Somayeh Sojoudi,Interconnection-based performance analysis for a class of decentralized controllers.,2010,46,Automatica,5,db/journals/automatica/automatica46.html#SojoudiA10,https://doi.org/10.1016/j.automatica.2010.02.005 +Seyed Rasoul Etesami,Complexity of equilibrium in competitive diffusion games on social networks.,2016,68,Automatica,,db/journals/automatica/automatica68.html#EtesamiB16,https://doi.org/10.1016/j.automatica.2016.01.063 +Pierre Riedinger,"Comments on ""Optimally switched linear systems"".",2009,45,Automatica,6,db/journals/automatica/automatica45.html#Riedinger09,https://doi.org/10.1016/j.automatica.2008.11.028 +Yu Zhao,Distributed average tracking for multiple signals generated by linear dynamical systems: An edge-based framework.,2017,75,Automatica,,db/journals/automatica/automatica75.html#ZhaoLLD17,https://doi.org/10.1016/j.automatica.2016.09.005 +Li Li 0031,Decentralized robust control of uncertain Markov jump parameter systems via output feedback.,2007,43,Automatica,11,db/journals/automatica/automatica43.html#LiUO07,https://doi.org/10.1016/j.automatica.2007.03.016 +Chaoli Wang,Semiglobal practical stabilization of nonholonomic wheeled mobile robots with saturated inputs.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#Wang08,https://doi.org/10.1016/j.automatica.2007.07.013 +Zheng Wen,On the disturbance response and external stability of a saturating static-feedback-controlled double integrator.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#WenRS08,https://doi.org/10.1016/j.automatica.2007.11.005 +Leonid Mirkin,Every stabilizing dead-time controller has an observer-predictor-based structure.,2003,39,Automatica,10,db/journals/automatica/automatica39.html#MirkinR03,https://doi.org/10.1016/S0005-1098(03)00182-1 +Jan Lunze,Structural properties of networked systems with random communication links.,2017,80,Automatica,,db/journals/automatica/automatica80.html#Lunze17,https://doi.org/10.1016/j.automatica.2017.01.035 +George S. Axelby,Lyapunov centenary.,1992,28,Automatica,5,db/journals/automatica/automatica28.html#AxelbyP92,https://doi.org/10.1016/0005-1098(92)90139-7 +Peter Hokayem,Stochastic receding horizon control with output feedback and bounded controls.,2012,48,Automatica,1,db/journals/automatica/automatica48.html#HokayemCCRL12,https://doi.org/10.1016/j.automatica.2011.09.048 +Ian R. Petersen,Guaranteed cost control of stochastic uncertain systems with slope bounded nonlinearities via the use of dynamic multipliers.,2011,47,Automatica,2,db/journals/automatica/automatica47.html#Petersen11,https://doi.org/10.1016/j.automatica.2010.11.002 +James W. T. Yates,Structural identifiability analysis via symmetries of differential equations.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#YatesEC09,https://doi.org/10.1016/j.automatica.2009.07.009 +Maria Paola Cabasino,Optimal sensor selection for ensuring diagnosability in labeled Petri nets.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#CabasinoLS13,https://doi.org/10.1016/j.automatica.2013.04.041 +Graham C. Goodwin,A globally convergent adaptive predictor.,1981,17,Automatica,1,db/journals/automatica/automatica17.html#GoodwinRC81,https://doi.org/10.1016/0005-1098(81)90089-3 +Yuzhe Qian,Adaptive repetitive learning control for an offshore boom crane.,2017,82,Automatica,,db/journals/automatica/automatica82.html#QianFL17,https://doi.org/10.1016/j.automatica.2017.04.003 +Hernan Haimovich,Componentwise ultimate bound and invariant set computation for switched linear systems.,2010,46,Automatica,11,db/journals/automatica/automatica46.html#HaimovichS10,https://doi.org/10.1016/j.automatica.2010.08.018 +Ligang Wu,Passivity-based sliding mode control of uncertain singular time-delay systems.,2009,45,Automatica,9,db/journals/automatica/automatica45.html#WuZ09a,https://doi.org/10.1016/j.automatica.2009.05.014 +Tao Shen,Stability analysis for digital filters with multiple saturation nonlinearities.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#ShenYW12a,https://doi.org/10.1016/j.automatica.2012.06.085 +Mariagrazia Dotoli,Real time identification of discrete event systems using Petri nets.,2008,44,Automatica,5,db/journals/automatica/automatica44.html#DotoliFM08,https://doi.org/10.1016/j.automatica.2007.10.014 +Håkan Hjalmarsson,On the accuracy in errors-in-variables identification compared to prediction-error identification.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#HjalmarssonMRS11,https://doi.org/10.1016/j.automatica.2011.09.002 +Xian-Ming Zhang,Network-based H∞H∞ filtering using a logic jumping-like trigger.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#ZhangH13,https://doi.org/10.1016/j.automatica.2013.01.060 +Henrik Ohlsson,Segmentation of ARX-models using sum-of-norms regularization.,2010,46,Automatica,6,db/journals/automatica/automatica46.html#OhlssonLB10,https://doi.org/10.1016/j.automatica.2010.03.013 +Wei Liu,Cooperative global robust output regulation for a class of nonlinear multi-agent systems by distributed event-triggered control.,2018,93,Automatica,,db/journals/automatica/automatica93.html#LiuH18a,https://doi.org/10.1016/j.automatica.2018.03.062 +Thomas Holzhüter,Optimal regulator for the inverted pendulum via Euler-Lagrange backward integration.,2004,40,Automatica,9,db/journals/automatica/automatica40.html#Holzhuter04,https://doi.org/10.1016/j.automatica.2004.04.012 +Robert H. Chen,Optimal stochastic fault detection filter.,2003,39,Automatica,3,db/journals/automatica/automatica39.html#ChenMS03,https://doi.org/10.1016/S0005-1098(02)00245-5 +Basílio E. A. Milani,On invariant polyhedra of continuous-time systems subject to additive disturbances.,1996,32,Automatica,5,db/journals/automatica/automatica32.html#MilaniD96,https://doi.org/10.1016/0005-1098(96)00002-7 +David Kreiberg,Errors-in-variables system identification using structural equation modeling.,2016,66,Automatica,,db/journals/automatica/automatica66.html#KreibergSY16,https://doi.org/10.1016/j.automatica.2015.12.007 +Torsten Söderström,Can errors-in-variables systems be identified from closed-loop experiments?,2013,49,Automatica,2,db/journals/automatica/automatica49.html#SoderstromWPS13,https://doi.org/10.1016/j.automatica.2012.11.017 +Magnus Mossberg,Non-parametric identification of viscoelastic materials from wave propagation experiments.,2001,37,Automatica,4,db/journals/automatica/automatica37.html#MossbergHS01,https://doi.org/10.1016/S0005-1098(00)00188-6 +Allen R. Tannenbaum,On the multivariable gain margin problem.,1986,22,Automatica,3,db/journals/automatica/automatica22.html#Tannenbaum86,https://doi.org/10.1016/0005-1098(86)90038-5 +Zhen Kan,Leader-follower containment control over directed random graphs.,2016,66,Automatica,,db/journals/automatica/automatica66.html#KanSD16,https://doi.org/10.1016/j.automatica.2015.12.016 +Magnus Mossberg,Long-term fading channel estimation from sample covariances.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#MossbergLM09,https://doi.org/10.1016/j.automatica.2008.12.013 +Yoshito Ohta,Formulas for Hankel singular values and vectors for a class of input delay systems.,1999,35,Automatica,2,db/journals/automatica/automatica35.html#OhtaK99,https://doi.org/10.1016/S0005-1098(98)00158-7 +Xin Xin,Reduced-order stable controllers for two-link underactuated planar robots.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#XinL13,https://doi.org/10.1016/j.automatica.2013.03.027 +Rui Yan,A power system nonlinear adaptive decentralized controller design.,2010,46,Automatica,2,db/journals/automatica/automatica46.html#YanDSM10,https://doi.org/10.1016/j.automatica.2009.10.020 +Julien Thénié,Step decision rules for multistage stochastic programming: A heuristic approach.,2008,44,Automatica,6,db/journals/automatica/automatica44.html#ThenieV08,https://doi.org/10.1016/j.automatica.2008.02.001 +Milos S. Stankovic,Consensus-based decentralized real-time identification of large-scale systems.,2015,60,Automatica,,db/journals/automatica/automatica60.html#StankovicSS15,https://doi.org/10.1016/j.automatica.2015.07.018 +Haitao Li 0001,On reachability and controllability of switched Boolean control networks.,2012,48,Automatica,11,db/journals/automatica/automatica48.html#LiW12a,https://doi.org/10.1016/j.automatica.2012.08.029 +Katrina Lau,An errors-in-variables method for non-stationary data with application to mineral exploration.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#LauBAG09,https://doi.org/10.1016/j.automatica.2009.10.009 +Ebrahim M. Kasenally,Robust control toolbox: Richard Y. Chiang and Michael G. Safonov.,1994,30,Automatica,5,db/journals/automatica/automatica30.html#Kasenally94,https://doi.org/10.1016/0005-1098(94)90186-4 +Zhendong Sun,Analysis and synthesis of switched linear control systems.,2005,41,Automatica,2,db/journals/automatica/automatica41.html#SunG05,https://doi.org/10.1016/j.automatica.2004.09.015 +Efstathios Bakolas,Relay pursuit of a maneuvering target using dynamic Voronoi diagrams.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#BakolasT12,https://doi.org/10.1016/j.automatica.2012.06.003 +Farhad Bayat,"Comments on ""Analytical expression of explicit MPC solution via lattice piecewise-affine function"" [Automatica 45 (2009) 910-917].",2012,48,Automatica,11,db/journals/automatica/automatica48.html#Bayat12,https://doi.org/10.1016/j.automatica.2012.08.009 +Miguel Aranda,Coordinate-free formation stabilization based on relative position measurements.,2015,57,Automatica,,db/journals/automatica/automatica57.html#ArandaLSZ15,https://doi.org/10.1016/j.automatica.2015.03.030 +Björn Wittenmark,Adaptive filter theory : Simon Haykin.,1993,29,Automatica,2,db/journals/automatica/automatica29.html#Wittenmark93,https://doi.org/10.1016/0005-1098(93)90162-M +Tzuen-Lih Chern,Design of discrete integral variable structure control systems and application to a brushless DC motor control.,1996,32,Automatica,5,db/journals/automatica/automatica32.html#ChernCJ96,https://doi.org/10.1016/0005-1098(95)00197-2 +M. Mariton,Jump Linear Quadratic control with Random state discontinuities.,1987,23,Automatica,2,db/journals/automatica/automatica23.html#Mariton87,https://doi.org/10.1016/0005-1098(87)90098-7 +Karolos M. Grigoriadis,Low-order control design for LMI problems using alternating projection methods.,1996,32,Automatica,8,db/journals/automatica/automatica32.html#GrigoriadisS96,https://doi.org/10.1016/0005-1098(96)00057-X +Daniele Casagrande,Asymptotic stabilization of passive systems without damping injection: A sampled integral technique.,2011,47,Automatica,2,db/journals/automatica/automatica47.html#CasagrandeAO11,https://doi.org/10.1016/j.automatica.2010.10.026 +Kyriakos G. Vamvoudakis,Multi-player non-zero-sum games: Online adaptive learning solution of coupled Hamilton-Jacobi equations.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#VamvoudakisL11,https://doi.org/10.1016/j.automatica.2011.03.005 +Shigeru Hanba,Output feedback stabilization of bilinear systems using dead-beat observers.,2001,37,Automatica,6,db/journals/automatica/automatica37.html#HanbaM01,https://doi.org/10.1016/S0005-1098(01)00034-6 +Slim Belhaiza,On proper refinement of Nash equilibria for bimatrix games.,2012,48,Automatica,2,db/journals/automatica/automatica48.html#BelhaizaAH12,https://doi.org/10.1016/j.automatica.2011.07.013 +Si-Lu Chen,Composite jerk feedforward and disturbance observer for robust tracking of flexible systems.,2017,80,Automatica,,db/journals/automatica/automatica80.html#ChenLTT17,https://doi.org/10.1016/j.automatica.2017.02.024 +Julian Stoev,Adaptive control for output feedback nonlinear systems in the presence of modeling errors.,2002,38,Automatica,10,db/journals/automatica/automatica38.html#StoevCF02,https://doi.org/10.1016/S0005-1098(02)00067-5 +Hyeong Soo Chang,Value set iteration for two-person zero-sum Markov games.,2017,76,Automatica,,db/journals/automatica/automatica76.html#Chang17,https://doi.org/10.1016/j.automatica.2016.10.010 +Heikki N. Koivo,A multivariable self-tuning controller.,1980,16,Automatica,4,db/journals/automatica/automatica16.html#Koivo80,https://doi.org/10.1016/0005-1098(80)90020-5 +Nikola Stankovic,Further remarks on asymptotic stability and set invariance for linear delay-difference equations.,2014,50,Automatica,8,db/journals/automatica/automatica50.html#StankovicON14,https://doi.org/10.1016/j.automatica.2014.05.019 +Qingze Zou,Optimal preview-based stable-inversion for output tracking of nonminimum-phase linear systems.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#Zou09,https://doi.org/10.1016/j.automatica.2008.06.014 +Weisheng Chen,Consensus-based distributed cooperative learning control for a group of discrete-time nonlinear multi-agent systems using neural networks.,2014,50,Automatica,9,db/journals/automatica/automatica50.html#ChenHG14,https://doi.org/10.1016/j.automatica.2014.07.020 +Masanori Sugisaka,Filtering algorithm for estimating fluid temperature profile in solar collectors.,1988,24,Automatica,3,db/journals/automatica/automatica24.html#SugisakaFHKR88,https://doi.org/10.1016/0005-1098(88)90082-9 +Fredrik Tjärnström,Variance analysis of L2 model reduction when undermodeling - the output error case.,2003,39,Automatica,10,db/journals/automatica/automatica39.html#Tjarnstrom03,https://doi.org/10.1016/S0005-1098(03)00175-4 +Hamidou Tembine,Risk-sensitive mean-field-type games with Lp-norm drifts.,2015,59,Automatica,,db/journals/automatica/automatica59.html#Tembine15,https://doi.org/10.1016/j.automatica.2015.06.036 +Yunong Zhang,Recurrent neural networks for nonlinear output regulation.,2001,37,Automatica,8,db/journals/automatica/automatica37.html#ZhangW01,https://doi.org/10.1016/S0005-1098(01)00092-9 +Bin Zhou 0001,Global stabilization of periodic linear systems by bounded controls with applications to spacecraft magnetic attitude control.,2015,60,Automatica,,db/journals/automatica/automatica60.html#Zhou15a,https://doi.org/10.1016/j.automatica.2015.07.003 +Abdelhanine Benallou,Characterization of equilibrium sets for bilinear systems with feedback control.,1983,19,Automatica,2,db/journals/automatica/automatica19.html#BenallouMS83,https://doi.org/10.1016/0005-1098(83)90090-0 +Baochang Zhang,Cooperative and Geometric Learning Algorithm (CGLA) for path planning of UAVs with limited information.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#ZhangLMLS14,https://doi.org/10.1016/j.automatica.2013.12.035 +Xi-Ming Sun,Delay-dependent stability for discrete systems with large delay sequence based on switching techniques.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#SunLRW08,https://doi.org/10.1016/j.automatica.2008.04.006 +Roberto Naldi,Optimal transition maneuvers for a class of V/STOL aircraft.,2011,47,Automatica,5,db/journals/automatica/automatica47.html#NaldiM11,https://doi.org/10.1016/j.automatica.2011.01.027 +Mohamed Darouach,Unbiased minimum variance estimation for systems with unknown exogenous inputs.,1997,33,Automatica,4,db/journals/automatica/automatica33.html#DarouachZ97,https://doi.org/10.1016/S0005-1098(96)00217-8 +Peter V. Zhivoglyadov,Further results on localization-based switching adaptive control.,2001,37,Automatica,2,db/journals/automatica/automatica37.html#ZhivoglyadovMF01,https://doi.org/10.1016/S0005-1098(00)00160-6 +Zhixin Liu,Distributed sampled-data control of nonholonomic multi-robot systems with proximity networks.,2017,77,Automatica,,db/journals/automatica/automatica77.html#LiuWWDH17,https://doi.org/10.1016/j.automatica.2016.11.027 +Minyue Fu,State estimation for linear discrete-time systems using quantized measurements.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#FuS09,https://doi.org/10.1016/j.automatica.2009.09.033 +Phillippe Micheau,Adaptive controller using filter banks to reject multi-sinusoidal disturbance.,2000,36,Automatica,11,db/journals/automatica/automatica36.html#MicheauC00,https://doi.org/10.1016/S0005-1098(00)00072-8 +Georg S. Seyboth,Event-based broadcasting for multi-agent average consensus.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#SeybothDJ13,https://doi.org/10.1016/j.automatica.2012.08.042 +Liangmin Zhou,Perturbation analysis and condition numbers of symmetric algebraic Riccati equations.,2009,45,Automatica,4,db/journals/automatica/automatica45.html#ZhouLWQ09,https://doi.org/10.1016/j.automatica.2008.11.010 +George S. Axelby,Improving IFAC symposia.,1969,5,Automatica,2,db/journals/automatica/automatica5.html#Axelby69b,https://doi.org/10.1016/0005-1098(69)90003-X +Guang-Hong Yang,Decentralized robust control for interconnected systems with time-varying uncertainties.,1996,32,Automatica,11,db/journals/automatica/automatica32.html#YangZ96,https://doi.org/10.1016/S0005-1098(96)00112-4 +Torsten Bohlin,Experiment design for maximum-power model validation.,1980,16,Automatica,4,db/journals/automatica/automatica16.html#BohlinR80,https://doi.org/10.1016/0005-1098(80)90025-4 +Tong Zhou,Robust control of the sydney benchmark problem with intermittent adaptation.,1994,30,Automatica,4,db/journals/automatica/automatica30.html#ZhouK94a,https://doi.org/10.1016/0005-1098(94)90151-1 +J. Böhm,Digital control system analysis and design : By Charles L. Phillips and H. Troy Nagle.,1997,33,Automatica,9,db/journals/automatica/automatica33.html#Bohm97,https://doi.org/10.1016/S0005-1098(97)82236-4 +Youfeng Su,Cooperative semi-global robust output regulation for a class of nonlinear uncertain multi-agent systems.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#SuH14,https://doi.org/10.1016/j.automatica.2014.02.010 +Qing'an Ren,Optimal sensor rules and unified fusion rules for multisensor multi-hypothesis network decision systems with channel errors.,2009,45,Automatica,7,db/journals/automatica/automatica45.html#RenZSS09,https://doi.org/10.1016/j.automatica.2009.02.032 +Erik Weyer,Non-asymptotic confidence ellipsoids for the least-squares estimate.,2002,38,Automatica,9,db/journals/automatica/automatica38.html#WeyerC02,https://doi.org/10.1016/S0005-1098(02)00064-X +Jacob Tal,Synchronization characteristics of controllable oscillators.,1977,13,Automatica,2,db/journals/automatica/automatica13.html#Tal77,https://doi.org/10.1016/0005-1098(77)90039-5 +James M. Krause,Parameter identification in the presence of non-parametric dynamic uncertainty.,1990,26,Automatica,1,db/journals/automatica/automatica26.html#KrauseK90,https://doi.org/10.1016/0005-1098(90)90163-C +Wen-Hua Chen,Constrained predictive pole-placement control with linear models.,2006,42,Automatica,4,db/journals/automatica/automatica42.html#ChenG06,https://doi.org/10.1016/j.automatica.2005.09.020 +Li Xia,Parameterized Markov decision process and its application to service rate control.,2015,54,Automatica,,db/journals/automatica/automatica54.html#XiaJ15,https://doi.org/10.1016/j.automatica.2015.01.006 +Howard Hua Yang,Statistical analysis of an eigendecomposition based method for 2-D frequency estimation.,1994,30,Automatica,1,db/journals/automatica/automatica30.html#YangH94,https://doi.org/10.1016/0005-1098(94)90235-6 +Zhenwei Liu,State synchronization of multi-agent systems via static or adaptive nonlinear dynamic protocols.,2018,95,Automatica,,db/journals/automatica/automatica95.html#LiuZSS18,https://doi.org/10.1016/j.automatica.2018.05.034 +Shuzhi Sam Ge,Adaptive controller design for flexible joint manipulators.,1996,32,Automatica,2,db/journals/automatica/automatica32.html#Ge96,https://doi.org/10.1016/0005-1098(96)85559-2 +Chian-Song Chiu,Robust adaptive motion/force tracking control design for uncertain constrained robot manipulators.,2004,40,Automatica,12,db/journals/automatica/automatica40.html#ChiuLW04,https://doi.org/10.1016/j.automatica.2004.06.017 +Pengnian Chen,Repetitive learning control for a class of partially linearizable uncertain nonlinear systems.,2017,85,Automatica,,db/journals/automatica/automatica85.html#ChenL17a,https://doi.org/10.1016/j.automatica.2017.07.058 +Zong-Yao Sun,A unified time-varying feedback approach and its applications in adaptive stabilization of high-order uncertain nonlinear systems.,2016,70,Automatica,,db/journals/automatica/automatica70.html#SunLY16,https://doi.org/10.1016/j.automatica.2016.04.010 +Nitin Sydney,Multivehicle coverage control for a nonstationary spatiotemporal field.,2014,50,Automatica,5,db/journals/automatica/automatica50.html#SydneyP14,https://doi.org/10.1016/j.automatica.2014.03.007 +George S. Axelby,Rapid publications: Technical communiques and correspondence.,1986,22,Automatica,3,db/journals/automatica/automatica22.html#AxelbyL86,https://doi.org/10.1016/0005-1098(86)90025-7 +Rajko Tomovic,On man - Machine control.,1969,5,Automatica,4,db/journals/automatica/automatica5.html#Tomovic69,https://doi.org/10.1016/0005-1098(69)90101-0 +Anton V. Proskurnikov,Differential inequalities in multi-agent coordination and opinion dynamics modeling.,2017,85,Automatica,,db/journals/automatica/automatica85.html#ProskurnikovC17,https://doi.org/10.1016/j.automatica.2017.07.065 +Mauro Bisiacco,Behavior decompositions and two-sided diophantine equations.,2001,37,Automatica,9,db/journals/automatica/automatica37.html#BisiaccoV01,https://doi.org/10.1016/S0005-1098(01)00079-6 +M. S. Ahmed,Fast GLS algorithm for parameter estimation.,1984,20,Automatica,2,db/journals/automatica/automatica20.html#Ahmed84,https://doi.org/10.1016/0005-1098(84)90030-X +Xiang Yin,Initial-state detectability of stochastic discrete-event systems with probabilistic sensor failures.,2017,80,Automatica,,db/journals/automatica/automatica80.html#Yin17,https://doi.org/10.1016/j.automatica.2017.02.032 +P. Kallappa,Life-extending control of fossil fuel power plants.,1997,33,Automatica,6,db/journals/automatica/automatica33.html#KallappaHR97,https://doi.org/10.1016/S0005-1098(97)00014-9 +Stephen Kahne,Obituary: N. B. Nichols.,1997,33,Automatica,12,db/journals/automatica/automatica33.html#Kahne97,https://doi.org/10.1016/S0005-1098(97)00158-1 +Sung Jin Yoo,Fault detection and accommodation of a class of nonlinear systems with unknown multiple time-delayed faults.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#Yoo14,https://doi.org/10.1016/j.automatica.2013.10.006 +Johan Thunberg,Optimal output consensus for linear systems: a topology free approach.,2016,68,Automatica,,db/journals/automatica/automatica68.html#ThunbergH16,https://doi.org/10.1016/j.automatica.2016.02.003 +Driss Mehdi,Robustness and optimality of linear quadratic controller for uncertain systems.,1996,32,Automatica,7,db/journals/automatica/automatica32.html#MehdiHP96,https://doi.org/10.1016/0005-1098(96)00037-4 +Jørgen Spjøtvold,On the facet-to-facet property of solutions to convex parametric quadratic programs.,2006,42,Automatica,12,db/journals/automatica/automatica42.html#SpjotvoldKJTJ06,https://doi.org/10.1016/j.automatica.2006.06.026 +Ricardo J. G. B. Campello,Optimal expansions of discrete-time Volterra models using Laguerre functions.,2004,40,Automatica,5,db/journals/automatica/automatica40.html#CampelloFA04,https://doi.org/10.1016/j.automatica.2003.11.016 +Lucian Busoniu,Planning for optimal control and performance certification in nonlinear systems with controlled or uncontrolled switches.,2017,78,Automatica,,db/journals/automatica/automatica78.html#BusoniuDBM17,https://doi.org/10.1016/j.automatica.2016.12.027 +Ying Tan 0001,On global extremum seeking in the presence of local extrema.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#TanNMA09,https://doi.org/10.1016/j.automatica.2008.06.010 +Alan F. Lynch,Nonlinear tension observers for web machines.,2004,40,Automatica,9,db/journals/automatica/automatica40.html#LynchBR04,https://doi.org/10.1016/j.automatica.2004.03.021 +Feiqi Deng,Stochastic stabilization of hybrid differential equations.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#DengLM12,https://doi.org/10.1016/j.automatica.2012.06.044 +Gautam Kumar,Broadcast stochastic receding horizon control of multi-agent systems.,2013,49,Automatica,12,db/journals/automatica/automatica49.html#KumarK13,https://doi.org/10.1016/j.automatica.2013.09.002 +Hannu T. Toivonen,Sampled-data control of continuous-time systems with an H∞ optimality criterion.,1992,28,Automatica,1,db/journals/automatica/automatica28.html#Toivonen92,https://doi.org/10.1016/0005-1098(92)90006-2 +Marco Baglietto,Active mode observability of switching linear systems.,2007,43,Automatica,8,db/journals/automatica/automatica43.html#BagliettoBS07,https://doi.org/10.1016/j.automatica.2007.01.006 +Hao Ying,A general technique for deriving analytical structure of fuzzy controllers using arbitrary trapezoidal input fuzzy sets and Zadeh AND operator.,2003,39,Automatica,7,db/journals/automatica/automatica39.html#Ying03,https://doi.org/10.1016/S0005-1098(03)00086-4 +Kenneth R. Lorell,A microprocessor-based position control system for a telescope secondary mirror.,1984,20,Automatica,3,db/journals/automatica/automatica20.html#LorellCBL84,https://doi.org/10.1016/0005-1098(84)90045-1 +Fahimeh Rezayat,On the use of an SPSA-based model-free controller in quality improvement.,1995,31,Automatica,6,db/journals/automatica/automatica31.html#Rezayat95,https://doi.org/10.1016/0005-1098(95)00002-E +Sunan Huang 0001,A combined PID/adaptive controller for a class of nonlinear systems.,2001,37,Automatica,4,db/journals/automatica/automatica37.html#HuangTL01,https://doi.org/10.1016/S0005-1098(00)00195-3 +Artemis K. Kostarigka,Prescribed performance tracking for flexible joint robots with unknown dynamics and variable elasticity.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#KostarigkaDR13,https://doi.org/10.1016/j.automatica.2013.01.042 +Yingfeng Shan,Accounting for hysteresis in repetitive control design: Nanopositioning example.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#ShanL12,https://doi.org/10.1016/j.automatica.2012.05.055 +M. Dalsmo,Singular H∞ Suboptimal Control for a Class of Nonlinear Cascade Systems.,1998,34,Automatica,12,db/journals/automatica/automatica34.html#DalsmoM98,https://doi.org/10.1016/S0005-1098(98)80006-X +Xiaoshan Chen,Characterization of stochastic control with optimal stopping in a Sobolev space.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#ChenSYY13,https://doi.org/10.1016/j.automatica.2013.02.040 +Bader Aloliwi,Robust adaptive output feedback control of nonlinear systems without persistence of excitation.,1997,33,Automatica,11,db/journals/automatica/automatica33.html#AloliwiK97,https://doi.org/10.1016/S0005-1098(97)00117-9 +W. B. J. Hakvoort,A computationally efficient algorithm of iterative learning control for discrete-time linear time-varying systems.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#HakvoortADJ09,https://doi.org/10.1016/j.automatica.2009.09.023 +Jianhui Huang,Near-optimal control problems for linear forward-backward stochastic systems.,2010,46,Automatica,2,db/journals/automatica/automatica46.html#HuangLW10,https://doi.org/10.1016/j.automatica.2009.11.016 +J. Penttinen,Multivariable tuning regulators for unknown systems.,1980,16,Automatica,4,db/journals/automatica/automatica16.html#PenttinenK80,https://doi.org/10.1016/0005-1098(80)90023-0 +Jun Zhou,H2 and H INFINITY norm computations of linear continuous-time periodic systems via the skew analysis of frequency response operators.,2002,38,Automatica,8,db/journals/automatica/automatica38.html#ZhouH02,https://doi.org/10.1016/S0005-1098(02)00038-9 +Rosalba Lamanna de Rocco,On a realization method for discrete-time linear systems.,1985,21,Automatica,5,db/journals/automatica/automatica21.html#RoccoP85,https://doi.org/10.1016/0005-1098(85)90011-1 +Dani Juricic,Robust detection of sensor faults by means of a statistical test.,2002,38,Automatica,4,db/journals/automatica/automatica38.html#JuricicZ02,https://doi.org/10.1016/S0005-1098(01)00256-4 +Antti J. Niemi,Simulation and control of flotation circuits.,1969,5,Automatica,5,db/journals/automatica/automatica5.html#NiemiP69,https://doi.org/10.1016/0005-1098(69)90023-5 +Gene Grimm,Examples when nonlinear model predictive control is nonrobust.,2004,40,Automatica,10,db/journals/automatica/automatica40.html#GrimmMTT04,https://doi.org/10.1016/j.automatica.2004.04.014 +Francesco Ferrante,State estimation of linear systems in the presence of sporadic measurements.,2016,73,Automatica,,db/journals/automatica/automatica73.html#FerranteGST16,https://doi.org/10.1016/j.automatica.2016.05.032 +Jan Nygaard Nielsen,Applying the EKF to stochastic differential equations with level effects.,2001,37,Automatica,1,db/journals/automatica/automatica37.html#NielsenM01,https://doi.org/10.1016/S0005-1098(00)00128-X +Zohreh Fathi,Use of optimal control theory for computing optimal injection policies for enhanced oil recovery.,1986,22,Automatica,1,db/journals/automatica/automatica22.html#FathiR86,https://doi.org/10.1016/0005-1098(86)90103-2 +Bo Shen,Distributed H INFINITY -consensus filtering in sensor networks with multiple missing measurements: The finite-horizon case.,2010,46,Automatica,10,db/journals/automatica/automatica46.html#ShenWH10,https://doi.org/10.1016/j.automatica.2010.06.025 +Maryam Kamgarpour,Control synthesis for stochastic systems given automata specifications defined by stochastic sets.,2017,76,Automatica,,db/journals/automatica/automatica76.html#KamgarpourWSL17,https://doi.org/10.1016/j.automatica.2016.10.013 +Manfred Grötzbach,Analysis of periodically switch controlled lowpass systems by continuous approximation models.,1981,17,Automatica,2,db/journals/automatica/automatica17.html#Grotzbach81,https://doi.org/10.1016/0005-1098(81)90050-9 +Saeed M. Hoseini,Robust adaptive control of nonlinear non-minimum phase systems with uncertainties.,2011,47,Automatica,2,db/journals/automatica/automatica47.html#HoseiniFK11,https://doi.org/10.1016/j.automatica.2010.10.036 +H. H.-y Chien,The adaptive control of a batch reactor - II: Optimal path control.,1964,2,Automatica,1,db/journals/automatica/automatica2.html#ChienA64a,https://doi.org/10.1016/0005-1098(64)90006-8 +Arno Linnemann,Existence of controllers stabilizing the reduced-order model and not the plant.,1988,24,Automatica,5,db/journals/automatica/automatica24.html#Linnemann88,https://doi.org/10.1016/0005-1098(88)90123-9 +Zongze Wu,A distributed Kalman filtering algorithm with fast finite-time convergence for sensor networks.,2018,95,Automatica,,db/journals/automatica/automatica95.html#WuFXL18,https://doi.org/10.1016/j.automatica.2018.05.012 +Mark Cannon,Nonlinear model predictive control with polytopic invariant sets.,2003,39,Automatica,8,db/journals/automatica/automatica39.html#CannonDK03,https://doi.org/10.1016/S0005-1098(03)00128-6 +Paresh Date,Algorithms for worst case identification in I and in the nu-gap metric.,2004,40,Automatica,6,db/journals/automatica/automatica40.html#DateV04,https://doi.org/10.1016/j.automatica.2004.01.019 +Er-Wei Bai,Convergence Properties of the Membership Set.,1998,34,Automatica,10,db/journals/automatica/automatica34.html#BaiCT98,https://doi.org/10.1016/S0005-1098(98)00065-X +Marco Baglietto,Discerning controllers for switching linear systems: Existence and genericity.,2014,50,Automatica,9,db/journals/automatica/automatica50.html#BagliettoBT14,https://doi.org/10.1016/j.automatica.2014.07.018 +M. J. Grimble,Minimization of a combined H∞ and LQG cost-function for a two-degrees-of-freedom control design.,1989,25,Automatica,4,db/journals/automatica/automatica25.html#Grimble89,https://doi.org/10.1016/0005-1098(89)90109-X +Chris P. Diduch,Reachability of sampled data systems with input and output delays.,1990,26,Automatica,2,db/journals/automatica/automatica26.html#DiduchD90,https://doi.org/10.1016/0005-1098(90)90141-4 +Kyung-Soo Kim,Reduced order disturbance observer for discrete-time linear systems.,2013,49,Automatica,4,db/journals/automatica/automatica49.html#KimR13,https://doi.org/10.1016/j.automatica.2013.01.014 +Fred J. Taylor,Optimal wind velocity estimation.,1977,13,Automatica,1,db/journals/automatica/automatica13.html#TaylorPH77,https://doi.org/10.1016/0005-1098(77)90004-8 +Giuseppe De Nicolao,Zeros of Continuous-time Linear Periodic Systems.,1998,34,Automatica,12,db/journals/automatica/automatica34.html#NicolaoFP98,https://doi.org/10.1016/S0005-1098(98)80023-X +Arne G. Dankers,Errors-in-variables identification in dynamic networks - Consistency results for an instrumental variable approach.,2015,62,Automatica,,db/journals/automatica/automatica62.html#DankersHBH15,https://doi.org/10.1016/j.automatica.2015.09.021 +A. Hmamed,Further results on the robust stability of linear systems including delayed perturbations.,1997,33,Automatica,9,db/journals/automatica/automatica33.html#Hmamed97a,https://doi.org/10.1016/S0005-1098(97)00036-8 +Robert Orsi,A Newton-like method for solving rank constrained linear matrix inequalities.,2006,42,Automatica,11,db/journals/automatica/automatica42.html#OrsiHM06,https://doi.org/10.1016/j.automatica.2006.05.026 +Tamer Basar,Change of an editorship.,2005,41,Automatica,9,db/journals/automatica/automatica41.html#Basar05,https://doi.org/10.1016/j.automatica.2005.05.001 +Paolo Magni,Output feedback and tracking of nonlinear systems with model predictive control.,2001,37,Automatica,10,db/journals/automatica/automatica37.html#MagniNS01a,https://doi.org/10.1016/S0005-1098(01)00102-9 +Guoxiang Gu,Stability testing of time delay systems.,1989,25,Automatica,5,db/journals/automatica/automatica25.html#GuL89,https://doi.org/10.1016/0005-1098(89)90035-6 +Francisco Lopez-Ramirez,Finite-time and fixed-time observer design: Implicit Lyapunov function approach.,2018,87,Automatica,,db/journals/automatica/automatica87.html#Lopez-RamirezPE18,https://doi.org/10.1016/j.automatica.2017.09.007 +Paulo J. de Oliveira,I guaranteed cost computation by means of parameter-dependent Lyapunov functions.,2004,40,Automatica,6,db/journals/automatica/automatica40.html#OliveiraOLMP04,https://doi.org/10.1016/j.automatica.2004.01.025 +Graziano Chesi,Estimating the domain of attraction for non-polynomial systems via LMI optimizations.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#Chesi09,https://doi.org/10.1016/j.automatica.2009.02.011 +Amit Patra,Block pulse functions and their applications in control systems: Z. H. Jiang and W. Schaufelberger.,1994,30,Automatica,2,db/journals/automatica/automatica30.html#Patra94,https://doi.org/10.1016/0005-1098(94)90043-4 +Mengran Xue,Security concepts for the dynamics of autonomous vehicle networks.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#XueWR14,https://doi.org/10.1016/j.automatica.2013.12.001 +Zhijun Cai,Making parametric Hammerstein system identification a linear problem.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#CaiB11,https://doi.org/10.1016/j.automatica.2011.05.002 +J. J. Benjamin Biemond,Distance function design and Lyapunov techniques for the stability of hybrid trajectories.,2016,73,Automatica,,db/journals/automatica/automatica73.html#BiemondHSW16,https://doi.org/10.1016/j.automatica.2016.07.006 +Branimir Anic,Interpolatory weighted-H2H2 model reduction.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#AnicBGA13,https://doi.org/10.1016/j.automatica.2013.01.040 +Mahmoud Abdelrahim,Event-triggered control of nonlinear singularly perturbed systems based only on the slow dynamics.,2015,52,Automatica,,db/journals/automatica/automatica52.html#AbdelrahimPD15,https://doi.org/10.1016/j.automatica.2014.10.125 +Kun-Zhi Liu,Razumikhin-type theorems for hybrid system with memory.,2016,71,Automatica,,db/journals/automatica/automatica71.html#LiuS16,https://doi.org/10.1016/j.automatica.2016.04.038 +Brett Ninness,Bayesian system identification via Markov chain Monte Carlo techniques.,2010,46,Automatica,1,db/journals/automatica/automatica46.html#NinnessH10,https://doi.org/10.1016/j.automatica.2009.10.015 +Fred Margulies,Man's role in man-machine systems.,1983,19,Automatica,6,db/journals/automatica/automatica19.html#MarguliesZ83,https://doi.org/10.1016/0005-1098(83)90031-6 +Jun-Guo Lu,Maximal perturbation bounds for robust alpha-stability of matrix second-order systems with one-parameter perturbations.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#LuXC12,https://doi.org/10.1016/j.automatica.2012.02.042 +Tor Arne Johansen,Computation of Lyapunov functions for smooth nonlinear systems using convex optimization.,2000,36,Automatica,11,db/journals/automatica/automatica36.html#Johansen00,https://doi.org/10.1016/S0005-1098(00)00088-1 +Byung-Su Ko,Performance assessment of multivariable feedback control systems.,2001,37,Automatica,6,db/journals/automatica/automatica37.html#KoE01,https://doi.org/10.1016/S0005-1098(01)00032-2 +Kristian Nolde,Medium term scheduling of a hydro-thermal system using stochastic model predictive control.,2008,44,Automatica,6,db/journals/automatica/automatica44.html#NoldeUM08,https://doi.org/10.1016/j.automatica.2008.03.002 +Zhengqiang Zhang,Exact tracking control of nonlinear systems with time delays and dead-zone input.,2015,52,Automatica,,db/journals/automatica/automatica52.html#ZhangXZ15,https://doi.org/10.1016/j.automatica.2014.11.013 +Samuel Coogan,Scaling the size of a formation using relative position feedback.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#CooganA12,https://doi.org/10.1016/j.automatica.2012.06.083 +Hugh Bannister,Multiperiod mean-standard-deviation time consistent portfolio selection.,2016,73,Automatica,,db/journals/automatica/automatica73.html#BannisterGPW16,https://doi.org/10.1016/j.automatica.2016.06.021 +Ilyasse Aksikas,Asymptotic behaviour of contraction non-autonomous semi-flows in a Banach space: Application to first-order hyperbolic PDEs.,2016,65,Automatica,,db/journals/automatica/automatica65.html#Aksikas16,https://doi.org/10.1016/j.automatica.2015.11.039 +Vaibhav Srivastava,Attention allocation for decision making queues.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#SrivastavaCLB14,https://doi.org/10.1016/j.automatica.2013.11.028 +Jung-Ho Moon,A Robust Approach to Iterative Learning Control Design for Uncertain Systems.,1998,34,Automatica,8,db/journals/automatica/automatica34.html#MoonDC98,https://doi.org/10.1016/S0005-1098(98)00028-4 +Quanxin Zhu,Output feedback stabilization of stochastic feedforward systems with unknown control coefficients and unknown output function.,2018,87,Automatica,,db/journals/automatica/automatica87.html#ZhuW18,https://doi.org/10.1016/j.automatica.2017.10.004 +Jongeun Choi,Distributed learning and cooperative control for multi-agent systems.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#ChoiOH09,https://doi.org/10.1016/j.automatica.2009.09.025 +Rogelio Lozano,Identification of linear time-varying systems using a modified least-squares algorithm.,2000,36,Automatica,7,db/journals/automatica/automatica36.html#LozanoDM00,https://doi.org/10.1016/S0005-1098(00)00010-8 +Li Li,Stochastic stability of the unscented Kalman filter with intermittent observations.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#LiX12,https://doi.org/10.1016/j.automatica.2012.02.014 +Wu-Hua Chen,Stability and L2-gain analysis for impulsive delay systems: An impulse-time-dependent discretized Lyapunov functional method.,2017,86,Automatica,,db/journals/automatica/automatica86.html#ChenRZ17,https://doi.org/10.1016/j.automatica.2017.08.023 +S. Y. Chan,A study of linear time-varying systems subject to stochastic disturbances.,1966,4,Automatica,1,db/journals/automatica/automatica4.html#ChanC66,https://doi.org/10.1016/0005-1098(66)90004-5 +Erik Weyer,Finite sample properties of system identification of ARX models under mixing conditions.,2000,36,Automatica,9,db/journals/automatica/automatica36.html#Weyer00,https://doi.org/10.1016/S0005-1098(00)00039-X +Fanghong Guo,A distributed hierarchical algorithm for multi-cluster constrained optimization.,2017,77,Automatica,,db/journals/automatica/automatica77.html#GuoWMLS17,https://doi.org/10.1016/j.automatica.2016.11.029 +Ioan Doré Landau,Unification of discrete time explicit model reference adaptive control designs.,1981,17,Automatica,4,db/journals/automatica/automatica17.html#LandauL81,https://doi.org/10.1016/0005-1098(81)90031-5 +H. Ersin Erol,Stabilization of decentralized descriptor-type neutral time-delay systems by time-delay controllers.,2016,64,Automatica,,db/journals/automatica/automatica64.html#ErolI16,https://doi.org/10.1016/j.automatica.2015.11.022 +Yavuz Eren,Quadratic stability and stabilization of bimodal piecewise linear systems.,2014,50,Automatica,5,db/journals/automatica/automatica50.html#ErenSC14,https://doi.org/10.1016/j.automatica.2014.03.009 +I. M. Horowitz,Passive-adaptive flight control design for re-entry vehicles.,1965,2,Automatica,3,db/journals/automatica/automatica2.html#Horowitz65,https://doi.org/10.1016/0005-1098(65)90007-5 +Chenliang Wang,Decentralized adaptive tracking control for a class of interconnected nonlinear time-varying systems.,2015,54,Automatica,,db/journals/automatica/automatica54.html#WangL15,https://doi.org/10.1016/j.automatica.2015.01.041 +B. D. Coller,Intriguing nonlinear dynamics of a controller with a sluggish actuator.,2003,39,Automatica,12,db/journals/automatica/automatica39.html#Coller03,https://doi.org/10.1016/j.automatica.2003.07.006 +Johannes Philippus Maree,Combined economic and regulatory predictive control.,2016,69,Automatica,,db/journals/automatica/automatica69.html#MareeI16,https://doi.org/10.1016/j.automatica.2015.12.003 +Alejandro J. Rojas,Signal-to-noise ratio fundamental constraints in discrete-time linear output feedback control.,2011,47,Automatica,2,db/journals/automatica/automatica47.html#Rojas11,https://doi.org/10.1016/j.automatica.2010.10.043 +Jean-Michel Coron,Explicit feedbacks stabilizing the attitude of a rigid spacecraft with two control torques.,1996,32,Automatica,5,db/journals/automatica/automatica32.html#CoronK96,https://doi.org/10.1016/0005-1098(95)00194-8 +J. V. Candy,Safeguards design for a plutonium concentrator: An applied estimation approach.,1980,16,Automatica,6,db/journals/automatica/automatica16.html#CandyR80,https://doi.org/10.1016/0005-1098(80)90004-7 +Andrey Smyshlyaev,Adaptive boundary control for unstable parabolic PDEs - Part II: Estimation-based designs.,2007,43,Automatica,9,db/journals/automatica/automatica43.html#SmyshlyaevK07,https://doi.org/10.1016/j.automatica.2007.02.014 +József Hatvany,The April 1968 international symposium on pulse-rate and pulse-number signals in automatic control.,1969,5,Automatica,1,db/journals/automatica/automatica5.html#Hatvany69,https://doi.org/10.1016/0005-1098(69)90052-1 +Han Ho Choi,Robust observer-based H∞ controller design for linear uncertain time-delay systems.,1997,33,Automatica,9,db/journals/automatica/automatica33.html#ChoiC97a,https://doi.org/10.1016/S0005-1098(97)82235-2 +S. O. Reza Moheimani,Optimal guaranteed cost control of uncertain systems via static and dynamic output feedback.,1996,32,Automatica,4,db/journals/automatica/automatica32.html#MoheimaniP96,https://doi.org/10.1016/0005-1098(95)00178-6 +Mohamed Ouzahra,Global stabilization of semilinear systems using switching controls.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#Ouzahra12,https://doi.org/10.1016/j.automatica.2012.02.018 +Fabrizio Caccavale,Task-space regulation of cooperative manipulators.,2000,36,Automatica,6,db/journals/automatica/automatica36.html#CaccavaleCC00,https://doi.org/10.1016/S0005-1098(99)00215-0 +Vladimír Kucera,Diophantine equations in control - A survey.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#Kucera93,https://doi.org/10.1016/0005-1098(93)90003-C +Gang George Yin,Asymptotic properties of consensus-type algorithms for networked systems with regime-switching topologies.,2011,47,Automatica,7,db/journals/automatica/automatica47.html#YinSW11,https://doi.org/10.1016/j.automatica.2011.02.028 +Anton Selivanov,Distributed event-triggered control of diffusion semilinear PDEs.,2016,68,Automatica,,db/journals/automatica/automatica68.html#SelivanovF16,https://doi.org/10.1016/j.automatica.2016.02.006 +Michel Zasadzinski,Residual generator design for singular bilinear systems subjected to unmeasurable disturbances: an LMI approach.,2003,39,Automatica,4,db/journals/automatica/automatica39.html#ZasadzinskiMRA03,https://doi.org/10.1016/S0005-1098(02)00301-1 +Anton A. Stoorvogel,Properties of recoverable region and semi-global stabilization in recoverable region for linear systems subject to constraints.,2004,40,Automatica,9,db/journals/automatica/automatica40.html#StoorvogelSS04,https://doi.org/10.1016/j.automatica.2004.04.008 +Tomas McKelvey,Subspace-based identification of infinite-dimensional multivariable systems from frequency-response data.,1996,32,Automatica,6,db/journals/automatica/automatica32.html#McKelveyAL96,https://doi.org/10.1016/0005-1098(96)00022-2 +Giuseppe Franzè,Model predictive control for constrained networked systems subject to data losses.,2015,54,Automatica,,db/journals/automatica/automatica54.html#FranzeTF15,https://doi.org/10.1016/j.automatica.2015.02.018 +Mohammad Saleh Tavazoei,Rational approximations in the simulation and implementation of fractional-order dynamics: A descriptor system approach.,2010,46,Automatica,1,db/journals/automatica/automatica46.html#TavazoeiH10,https://doi.org/10.1016/j.automatica.2009.09.016 +Derek P. Atherton,Optimal relay and saturating control systems synthesis : E. P. Ryan.,1984,20,Automatica,6,db/journals/automatica/automatica20.html#Atherton84,https://doi.org/10.1016/0005-1098(84)90093-1 +M. R. Katebi,Predictive control design for large-scale systems.,1997,33,Automatica,3,db/journals/automatica/automatica33.html#KatebiJ97,https://doi.org/10.1016/S0005-1098(96)00166-5 +Yan-Ru Hu,Dynamic control of coordinated redundant robots with torque optimization.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#HuG93,https://doi.org/10.1016/0005-1098(93)90006-F +Jimin Yu,Generalized Mittag-Leffler stability of multi-variables fractional order nonlinear systems.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#YuHZL13,https://doi.org/10.1016/j.automatica.2013.02.041 +Benben Jiang,Simultaneous identification of bi-directional paths in closed-loop systems with coloured noise.,2015,58,Automatica,,db/journals/automatica/automatica58.html#JiangYWH15,https://doi.org/10.1016/j.automatica.2015.05.008 +Andrés Marcos,A symbolic matrix decomposition algorithm for reduced order linear fractional transformation modelling.,2007,43,Automatica,7,db/journals/automatica/automatica43.html#MarcosBP07,https://doi.org/10.1016/j.automatica.2006.12.031 +Khaled F. Aljanaideh,Time-domain analysis of sensor-to-sensor transmissibility operators.,2015,53,Automatica,,db/journals/automatica/automatica53.html#AljanaidehB15,https://doi.org/10.1016/j.automatica.2015.01.004 +Matthias Albrecht Müller,Economic model predictive control without terminal constraints for optimal periodic behavior.,2016,70,Automatica,,db/journals/automatica/automatica70.html#MullerG16,https://doi.org/10.1016/j.automatica.2016.03.024 +David Q. Mayne,Robust output feedback model predictive control of constrained linear systems: Time varying case.,2009,45,Automatica,9,db/journals/automatica/automatica45.html#MayneRFA09,https://doi.org/10.1016/j.automatica.2009.05.009 +Tarek Hamel,On robustness and precision of mobile robots missions.,2001,37,Automatica,3,db/journals/automatica/automatica37.html#HamelM01,https://doi.org/10.1016/S0005-1098(00)00167-9 +Wenjie Dong,On trajectory and force tracking control of constrained mobile manipulators with parameter uncertainty.,2002,38,Automatica,9,db/journals/automatica/automatica38.html#Dong02,https://doi.org/10.1016/S0005-1098(02)00060-2 +Dejan Milutinovic,Markov inequality rule for switching among time optimal controllers in a multiple vehicle intercept problem.,2018,87,Automatica,,db/journals/automatica/automatica87.html#MilutinovicCP18,https://doi.org/10.1016/j.automatica.2017.09.009 +L. G. van Willigenburg,Linear systems theory revisited.,2008,44,Automatica,7,db/journals/automatica/automatica44.html#WilligenburgK08,https://doi.org/10.1016/j.automatica.2007.10.021 +P. M. Mäkilä,Robustness in Hinfinity identification.,2000,36,Automatica,11,db/journals/automatica/automatica36.html#MakilaP00,https://doi.org/10.1016/S0005-1098(00)00074-1 +Jean-Michel Coron,Finite-time boundary stabilization of general linear hyperbolic balance laws via Fredholm backstepping transformation.,2017,84,Automatica,,db/journals/automatica/automatica84.html#CoronHO17,https://doi.org/10.1016/j.automatica.2017.05.013 +Kan-Jian Zhang,Policy iteration based feedback control.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#ZhangXCC08,https://doi.org/10.1016/j.automatica.2007.08.014 +Shahram Nosrati,Dynamic average consensus via nonlinear protocols.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#NosratiSM12,https://doi.org/10.1016/j.automatica.2012.06.031 +Igor Mezic,Uncertainty propagation in dynamical systems.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#MezicR08,https://doi.org/10.1016/j.automatica.2008.04.020 +Xianfu Zhang,Asymptotical stabilization of fractional-order linear systems in triangular form.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#ZhangLFW13,https://doi.org/10.1016/j.automatica.2013.08.002 +Peng Lu 0003,Framework for state and unknown input estimation of linear time-varying systems.,2016,73,Automatica,,db/journals/automatica/automatica73.html#LuKVC16,https://doi.org/10.1016/j.automatica.2016.07.009 +Ron H. A. Hensen,Friction induced hunting limit cycles: A comparison between the LuGre and switch friction model.,2003,39,Automatica,12,db/journals/automatica/automatica39.html#HensenMS03,https://doi.org/10.1016/S0005-1098(03)00234-6 +Long Zhang 0006,Forward and backward least angle regression for nonlinear system identification.,2015,53,Automatica,,db/journals/automatica/automatica53.html#ZhangL15a,https://doi.org/10.1016/j.automatica.2014.12.010 +Vladimír Kucera,Optimal control: Linear quadratic methods: Brian D. O. Anderson and John B. Moore.,1992,28,Automatica,5,db/journals/automatica/automatica28.html#Kucera92a,https://doi.org/10.1016/0005-1098(92)90166-D +Chuxiong Hu,Integrated direct/indirect adaptive robust contouring control of a biaxial gantry with accurate parameter estimations.,2010,46,Automatica,4,db/journals/automatica/automatica46.html#HuYW10,https://doi.org/10.1016/j.automatica.2010.01.022 +Kun Liu,Wirtinger's inequality and Lyapunov-based sampled-data stabilization.,2012,48,Automatica,1,db/journals/automatica/automatica48.html#LiuF12,https://doi.org/10.1016/j.automatica.2011.09.029 +Kenji Fujimoto,Freedom in coordinate transformation for exact linearization and its application to transient behavior improvement.,2001,37,Automatica,1,db/journals/automatica/automatica37.html#FujimotoS01,https://doi.org/10.1016/S0005-1098(00)00134-5 +Jean-Pierre Vila,Predictive neuro-control of uncertain systems: design and use of a neuro-optimizer.,2003,39,Automatica,5,db/journals/automatica/automatica39.html#VilaW03,https://doi.org/10.1016/S0005-1098(03)00005-0 +Tor Arne Johansen,Control allocation - A survey.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#JohansenF13,https://doi.org/10.1016/j.automatica.2013.01.035 +A. Medvedev,Fault detection and isolation by a continuous parity space method.,1995,31,Automatica,7,db/journals/automatica/automatica31.html#Medvedev95,https://doi.org/10.1016/0005-1098(95)00008-K +David Q. Mayne,A solution of the smoothing problem for linear dynamic systems.,1966,4,Automatica,2,db/journals/automatica/automatica4.html#Mayne66a,https://doi.org/10.1016/0005-1098(66)90019-7 +Vicente Costanza,Finite-horizon dynamic optimization of nonlinear systems in real time.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#CostanzaR08,https://doi.org/10.1016/j.automatica.2008.01.033 +Ying Tang,Stability analysis of coupled linear ODE-hyperbolic PDE systems with two time scales.,2017,85,Automatica,,db/journals/automatica/automatica85.html#TangM17,https://doi.org/10.1016/j.automatica.2017.07.052 +P. Misra,Computation of transfer function matrices of linear multivariable systems.,1987,23,Automatica,5,db/journals/automatica/automatica23.html#MisraP87,https://doi.org/10.1016/0005-1098(87)90059-8 +Vimal Singh,Stability analysis of a class of digital filters utilizing single saturation nonlinearity.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#Singh08,https://doi.org/10.1016/j.automatica.2007.04.015 +Michael B. Rosenhaus,Construction of a fault location algorithm.,1996,32,Automatica,3,db/journals/automatica/automatica32.html#Rosenhaus96,https://doi.org/10.1016/0005-1098(95)00151-4 +Jonathan Chauvin,Periodic inputs reconstruction of partially measured linear periodic systems.,2012,48,Automatica,7,db/journals/automatica/automatica48.html#ChauvinP12,https://doi.org/10.1016/j.automatica.2012.05.020 +Han Ho Choi,Adaptive controller design for uncertain fuzzy systems using variable structure control approach.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#Choi09a,https://doi.org/10.1016/j.automatica.2009.07.016 +Mamoru Kawahara,Tracking control system using image sensor for arc welding.,1983,19,Automatica,4,db/journals/automatica/automatica19.html#Kawahara83,https://doi.org/10.1016/0005-1098(83)90049-3 +Tao Yang 0017,Multivariable feedback particle filter.,2016,71,Automatica,,db/journals/automatica/automatica71.html#YangLMM16,https://doi.org/10.1016/j.automatica.2016.04.019 +Wei Pan 0004,Online fault diagnosis for nonlinear power systems.,2015,55,Automatica,,db/journals/automatica/automatica55.html#PanYSGS15,https://doi.org/10.1016/j.automatica.2015.02.032 +Panshuo Li,Stability and stabilization of periodic piecewise linear systems: A matrix polynomial approach.,2018,94,Automatica,,db/journals/automatica/automatica94.html#LiLKL18,https://doi.org/10.1016/j.automatica.2018.02.015 +Duc N. Tran,Qualitative equivalences of ISS and lp-gain stability properties for discrete-time nonlinear systems.,2017,77,Automatica,,db/journals/automatica/automatica77.html#TranKD17,https://doi.org/10.1016/j.automatica.2016.11.033 +Shaosheng Zhou,H∞ filtering for discrete-time systems with randomly varying sensor delays.,2008,44,Automatica,7,db/journals/automatica/automatica44.html#ZhouF08,https://doi.org/10.1016/j.automatica.2007.10.026 +Ryder C. Winck,Dimension reduction in a feedback loop using the SVD: Results on controllability and stability.,2013,49,Automatica,10,db/journals/automatica/automatica49.html#WinckB13,https://doi.org/10.1016/j.automatica.2013.07.017 +Anton Selivanov,Sampled-data relay control of diffusion PDEs.,2017,82,Automatica,,db/journals/automatica/automatica82.html#SelivanovF17,https://doi.org/10.1016/j.automatica.2017.04.022 +Hideaki Ishii,Quadratic stabilization of sampled-data systems with quantization.,2003,39,Automatica,10,db/journals/automatica/automatica39.html#IshiiF03,https://doi.org/10.1016/S0005-1098(03)00179-1 +Keliang Zhou,Dual-mode structure digital repetitive control.,2007,43,Automatica,3,db/journals/automatica/automatica43.html#ZhouWZWFH07,https://doi.org/10.1016/j.automatica.2006.09.018 +Saeid Jafari,Robust adaptive attenuation of unknown periodic disturbances in uncertain multi-input multi-output systems.,2016,70,Automatica,,db/journals/automatica/automatica70.html#JafariI16,https://doi.org/10.1016/j.automatica.2016.03.029 +Christian Lyzell,Difference algebra and system identification.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#LyzellGEL11,https://doi.org/10.1016/j.automatica.2011.06.013 +Ying Zhang,Improved robust backstepping adaptive control for nonlinear discrete-time systems without overparameterization.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#ZhangCS08,https://doi.org/10.1016/j.automatica.2007.07.015 +Zvi Artstein,Feedback and invariance under uncertainty via set-iterates.,2008,44,Automatica,2,db/journals/automatica/automatica44.html#ArtsteinR08,https://doi.org/10.1016/j.automatica.2007.06.013 +S. Emre Tuna,Synchronization of harmonic oscillators under restorative coupling with applications in electrical networks.,2017,75,Automatica,,db/journals/automatica/automatica75.html#Tuna17,https://doi.org/10.1016/j.automatica.2016.09.035 +Vassilis L. Syrmos,Robust eigenvalue assignment for generalized systems.,1992,28,Automatica,6,db/journals/automatica/automatica28.html#SyrmosL92,https://doi.org/10.1016/0005-1098(92)90064-M +Brian L. Cooley,Control-relevant experiment design for multivariable systems described by expansions in orthonormal bases.,2001,37,Automatica,2,db/journals/automatica/automatica37.html#CooleyL01,https://doi.org/10.1016/S0005-1098(00)00139-4 +J.-M. Godhavn,Steering of a class of nonholonomic systems with drift terms.,1999,35,Automatica,5,db/journals/automatica/automatica35.html#GodhavnBCS99,https://doi.org/10.1016/S0005-1098(98)00211-8 +Pascal Gahinet,Explicit controller formulas for LMI-based H∞ synthesis.,1996,32,Automatica,7,db/journals/automatica/automatica32.html#Gahinet96,https://doi.org/10.1016/0005-1098(96)00033-7 +Ying Zhang,Robust decentralized adaptive stabilization of interconnected systems with guaranteed transient performance.,2000,36,Automatica,6,db/journals/automatica/automatica36.html#ZhangWS00,https://doi.org/10.1016/S0005-1098(99)00218-6 +H. De Waard,Optimal control of the wafer temperatures in diffusion/LPCVD reactors.,1992,28,Automatica,2,db/journals/automatica/automatica28.html#WaardK92,https://doi.org/10.1016/0005-1098(92)90112-S +C. Richard Johnson Jr.,An output error identification interpretation of model reference adaptive control.,1980,16,Automatica,4,db/journals/automatica/automatica16.html#Johnson80,https://doi.org/10.1016/0005-1098(80)90028-X +David W. K. Yeung,A cooperative stochastic differential game of transboundary industrial pollution.,2008,44,Automatica,6,db/journals/automatica/automatica44.html#YeungP08,https://doi.org/10.1016/j.automatica.2008.03.005 +Majid Zamani,Symbolic models for stochastic switched systems: A discretization and a discretization-free approach.,2015,55,Automatica,,db/journals/automatica/automatica55.html#ZamaniAG15,https://doi.org/10.1016/j.automatica.2015.03.004 +M. Drouin,Feedback control for linear discrete-time systems with time delays.,1985,21,Automatica,3,db/journals/automatica/automatica21.html#DrouinAB85,https://doi.org/10.1016/0005-1098(85)90066-4 +Hongxia Wang,LQ control for Itô-type stochastic systems with input delays.,2013,49,Automatica,12,db/journals/automatica/automatica49.html#WangZ13a,https://doi.org/10.1016/j.automatica.2013.09.018 +Eric Walter,Theoretical properties of sign change criteria for robust off-line estimation.,1989,25,Automatica,6,db/journals/automatica/automatica25.html#WalterPV89,https://doi.org/10.1016/0005-1098(89)90062-9 +Akira Kojima,H INFINITY performance of preview control systems.,2003,39,Automatica,4,db/journals/automatica/automatica39.html#KojimaI03,https://doi.org/10.1016/S0005-1098(02)00286-8 +Jin-Hoon Kim,Note on stability of linear systems with time-varying delay.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#Kim11,https://doi.org/10.1016/j.automatica.2011.05.023 +Antonio Barreiro,Input-output stability of systems with backlash.,2006,42,Automatica,6,db/journals/automatica/automatica42.html#BarreiroB06,https://doi.org/10.1016/j.automatica.2006.02.017 +Magdi S. Mahmoud,Optimal control of constrained problems by the costate coordination structure.,1978,14,Automatica,1,db/journals/automatica/automatica14.html#Mahmoud78,https://doi.org/10.1016/0005-1098(78)90074-2 +Francisco Javier Bejarano,Partial unknown input reconstruction for linear systems.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#Bejarano11,https://doi.org/10.1016/j.automatica.2011.03.002 +Emilia Fridman,Stabilization by using artificial delays: An LMI approach.,2017,81,Automatica,,db/journals/automatica/automatica81.html#FridmanS17,https://doi.org/10.1016/j.automatica.2017.04.015 +Douwe K. de Vries,Quantification of uncertainty in transfer function estimation: a mixed probabilistic-worst-case approach.,1995,31,Automatica,4,db/journals/automatica/automatica31.html#VriesH95,https://doi.org/10.1016/0005-1098(95)98483-M +Nael H. El-Farra,Analysis and control of parabolic PDE systems with input constraints.,2003,39,Automatica,4,db/journals/automatica/automatica39.html#El-FarraAC03,https://doi.org/10.1016/S0005-1098(02)00304-7 +J. Anthony Rossiter,Using interpolation to improve efficiency of multiparametric predictive control.,2005,41,Automatica,4,db/journals/automatica/automatica41.html#RossiterG05,https://doi.org/10.1016/j.automatica.2004.08.021 +Xavier Bombois,Optimal identification experiment design for the interconnection of locally controlled systems.,2018,89,Automatica,,db/journals/automatica/automatica89.html#BomboisKHS18,https://doi.org/10.1016/j.automatica.2017.12.014 +Raimo Ylinen,A linear-quadratic-Gaussian control algorithm for sulphide ore grinding.,1987,23,Automatica,3,db/journals/automatica/automatica23.html#YlinenNI87,https://doi.org/10.1016/0005-1098(87)90002-1 +Jiangbo Yu,Global robust output tracking control for a class of uncertain cascaded nonlinear systems.,2018,93,Automatica,,db/journals/automatica/automatica93.html#YuZW18,https://doi.org/10.1016/j.automatica.2018.03.018 +Jing Zhou,Adaptive backstepping control of uncertain systems with unknown input time-delay.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#ZhouWW09,https://doi.org/10.1016/j.automatica.2009.01.012 +P. Hippe,Windup prevention for unstable systems.,2003,39,Automatica,11,db/journals/automatica/automatica39.html#Hippe03,https://doi.org/10.1016/S0005-1098(03)00216-4 +András Varga,Accuracy-enhancing methods for balancing-related frequency-weighted model and controller reduction.,2003,39,Automatica,5,db/journals/automatica/automatica39.html#VargaA03,https://doi.org/10.1016/S0005-1098(03)00030-X +Ning Wang 0002,Global asymptotic output tracking of nonlinear second-order systems with power integrators.,2017,80,Automatica,,db/journals/automatica/automatica80.html#WangQS17,https://doi.org/10.1016/j.automatica.2017.02.026 +Yupeng Qiao,On partitioned controllability of switched linear systems.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#QiaoC09,https://doi.org/10.1016/j.automatica.2008.06.009 +Yeal Biran,Optimal control of bilinear systems: Time-varying effects of cancer drugs.,1979,15,Automatica,3,db/journals/automatica/automatica15.html#BiranM79,https://doi.org/10.1016/0005-1098(79)90048-7 +Michèle Breton,A decomposition approach for the solution of the unit loading problem in hydroplants.,2002,38,Automatica,3,db/journals/automatica/automatica38.html#BretonHH02,https://doi.org/10.1016/S0005-1098(01)00225-4 +Shuzhi Sam Ge,Approximation-based control of nonlinear MIMO time-delay systems.,2007,43,Automatica,1,db/journals/automatica/automatica43.html#GeT07,https://doi.org/10.1016/j.automatica.2006.08.003 +Edward J. Davison,A nonminimum phase index and its application to interacting multivariable control systems.,1969,5,Automatica,6,db/journals/automatica/automatica5.html#Davison69,https://doi.org/10.1016/0005-1098(69)90092-2 +Hidekatsu Tokumaru,Prediction of pollution levels by mixed order multi-variable AR scheme.,1978,14,Automatica,6,db/journals/automatica/automatica14.html#TokumaruH78,https://doi.org/10.1016/0005-1098(78)90048-1 +Su Whan Sung,New Process Identification Method for Automatic Design of PID Controllers.,1998,34,Automatica,4,db/journals/automatica/automatica34.html#SungLL98,https://doi.org/10.1016/S0005-1098(97)00218-5 +Giorgio Battistelli,On stabilization of switching linear systems.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#Battistelli13,https://doi.org/10.1016/j.automatica.2013.01.055 +Hiroaki Mukaidani,A revised Kleinman algorithm to solve algebraic Riccati equation of singularly perturbed systems.,2002,38,Automatica,3,db/journals/automatica/automatica38.html#MukaidaniXM02,https://doi.org/10.1016/S0005-1098(01)00230-8 +Chian-Song Chiu,Derivative and integral terminal sliding mode control for a class of MIMO nonlinear systems.,2012,48,Automatica,2,db/journals/automatica/automatica48.html#Chiu12,https://doi.org/10.1016/j.automatica.2011.08.055 +Ching-Wen Liao,New FIR filter-based adaptive algorithms incorporating with commutation error to improve active noise control performance.,2007,43,Automatica,2,db/journals/automatica/automatica43.html#LiaoL07,https://doi.org/10.1016/j.automatica.2006.08.019 +Carlos E. de Souza,Gain-scheduled control of two-dimensional discrete-time linear parameter-varying systems in the Roesser model.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#SouzaO13,https://doi.org/10.1016/j.automatica.2012.09.024 +Karl Rieger,Implicit discrete-time systems and accessibility.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#RiegerS11,https://doi.org/10.1016/j.automatica.2011.05.006 +Jana Novovicová,M-estimators and gnostical estimators for identification of a regression model.,1990,26,Automatica,3,db/journals/automatica/automatica26.html#Novovicova90,https://doi.org/10.1016/0005-1098(90)90033-E +Gildas Besançon,A new separation result for a class of quadratic-like systems with application to Euler-Lagrange models.,2003,39,Automatica,6,db/journals/automatica/automatica39.html#BesanconBL03,https://doi.org/10.1016/S0005-1098(03)00073-6 +Neil Munro,Recent advances in computer-aided control systems engineering : Edited by M. Jamshidi and C. J. Herget.,1995,31,Automatica,4,db/journals/automatica/automatica31.html#Munro95,https://doi.org/10.1016/0005-1098(95)90030-6 +Inge Troch,Simulation fundamentals : By B. S. Bennett. Prentice Hall (1995). ISBN 0-13-813262-3.,1997,33,Automatica,3,db/journals/automatica/automatica33.html#Troch97,https://doi.org/10.1016/S0005-1098(97)84593-1 +Randy Cogill,Structured semidefinite programs for the control of symmetric systems.,2008,44,Automatica,5,db/journals/automatica/automatica44.html#CogillLP08,https://doi.org/10.1016/j.automatica.2007.10.004 +Malur K. Sundareshan,Neural network-assisted variable structure control scheme for control of a flexible manipulator arm.,1997,33,Automatica,9,db/journals/automatica/automatica33.html#SundareshanA97,https://doi.org/10.1016/S0005-1098(97)00086-1 +A. Breton,Efficient management of interconnected power systems: A game-theoretic approach.,1978,14,Automatica,5,db/journals/automatica/automatica14.html#BretonHK78,https://doi.org/10.1016/0005-1098(78)90003-1 +Guoliang Wei,Probability-guaranteed set-membership filtering for systems with incomplete measurements.,2015,60,Automatica,,db/journals/automatica/automatica60.html#WeiLSL15,https://doi.org/10.1016/j.automatica.2015.06.037 +Edoardo Mosca,Feasibility of horizon-switching predictive control under positional and incremental input saturations.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#MoscaTZ08,https://doi.org/10.1016/j.automatica.2008.03.016 +Brendan J. Bialy,Adaptive boundary control of store induced oscillations in a flexible aircraft wing.,2016,70,Automatica,,db/journals/automatica/automatica70.html#BialyCCD16,https://doi.org/10.1016/j.automatica.2016.04.004 +Min-Sung Koo,Output feedback regulation of a chain of integrators with unknown time-varying delays in states and input.,2015,58,Automatica,,db/journals/automatica/automatica58.html#KooC15,https://doi.org/10.1016/j.automatica.2015.05.019 +Dirk Förstner,A discrete-event model of asynchronous quantised systems.,2002,38,Automatica,8,db/journals/automatica/automatica38.html#ForstnerJL02,https://doi.org/10.1016/S0005-1098(02)00023-7 +Daniele Pucci,Nonlinear feedback control of axisymmetric aerial vehicles.,2015,53,Automatica,,db/journals/automatica/automatica53.html#PucciHMS15,https://doi.org/10.1016/j.automatica.2014.12.031 +T. Sasagawa,Parametrization method for calculating exact stability bounds of stochastic linear systems with multiplicative noise.,1996,32,Automatica,12,db/journals/automatica/automatica32.html#SasagawaW96,https://doi.org/10.1016/S0005-1098(96)80013-6 +Ligang Wu,Weighted H INFINITY model reduction for linear switched systems with time-varying delay.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#WuZ09,https://doi.org/10.1016/j.automatica.2008.06.024 +Maciej Niedzwiecki,Generalized adaptive notch filters with frequency debiasing for tracking of polynomial phase systems.,2007,43,Automatica,1,db/journals/automatica/automatica43.html#NiedzwieckiS07,https://doi.org/10.1016/j.automatica.2006.08.004 +Yuki Nishimura,Stochastic Lyapunov functions without differentiability at supposed equilibria.,2018,92,Automatica,,db/journals/automatica/automatica92.html#NishimuraI18,https://doi.org/10.1016/j.automatica.2018.03.013 +Matthew Ellis,On finite-time and infinite-time cost improvement of economic model predictive control for nonlinear systems.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#EllisC14,https://doi.org/10.1016/j.automatica.2014.08.011 +Guoliang Wei,Robust filtering with stochastic nonlinearities and multiple missing measurements.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#WeiWS09,https://doi.org/10.1016/j.automatica.2008.10.028 +Yu Tang,Adaptive frequency response identification using the lagrange filter.,1993,29,Automatica,2,db/journals/automatica/automatica29.html#Tang93,https://doi.org/10.1016/0005-1098(93)90137-I +L. G. van Willigenburg,Minimal and non-minimal optimal fixed-order compensators for time-varying discrete-time systems.,2002,38,Automatica,1,db/journals/automatica/automatica38.html#WilligenburgK02,https://doi.org/10.1016/S0005-1098(01)00182-0 +Gunhyung Park,Sliding mode control of continuous-time weakly coupled linear systems with external disturbances.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#ParkG13,https://doi.org/10.1016/j.automatica.2012.11.019 +Jan åslund,An observer for non-linear differential-algebraic systems.,2006,42,Automatica,6,db/journals/automatica/automatica42.html#AslundF06,https://doi.org/10.1016/j.automatica.2006.01.026 +Miroslav Krstic,Lyapunov tools for predictor feedbacks for delay systems: Inverse optimality and robustness to delay mismatch.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#Krstic08,https://doi.org/10.1016/j.automatica.2008.04.010 +José Claudio Geromel,Optimal decentralized control of dynamic systems.,1982,18,Automatica,5,db/journals/automatica/automatica18.html#GeromelB82,https://doi.org/10.1016/0005-1098(82)90004-8 +Guillermo I. Gómez,Integral constraints on sensitivity vectors for multivariable linear systems.,1996,32,Automatica,4,db/journals/automatica/automatica32.html#GomezG96,https://doi.org/10.1016/0005-1098(95)00185-9 +Vasfi Eldem,Decoupling through specified input-output channels with internal stability.,1996,32,Automatica,3,db/journals/automatica/automatica32.html#Eldem96,https://doi.org/10.1016/0005-1098(95)00155-7 +Johan Schoukens,Fast approximate identification of nonlinear systems.,2003,39,Automatica,7,db/journals/automatica/automatica39.html#SchoukensNCRP03,https://doi.org/10.1016/S0005-1098(03)00083-9 +Lennart Ljung,On global identifiability for arbitrary model parametrizations.,1994,30,Automatica,2,db/journals/automatica/automatica30.html#LjungG94,https://doi.org/10.1016/0005-1098(94)90029-9 +Yong-Yan Cao,Anti-windup design of output tracking systems subject to actuator saturation and constant disturbances.,2004,40,Automatica,7,db/journals/automatica/automatica40.html#CaoLW04,https://doi.org/10.1016/j.automatica.2004.02.012 +S. Kanev,Robust output-feedback controller design via local BMI optimization.,2004,40,Automatica,7,db/journals/automatica/automatica40.html#KanevSVS04,https://doi.org/10.1016/j.automatica.2004.01.028 +Michel Kieffer,Guaranteed characterization of exact non-asymptotic confidence regions as defined by LSCR and SPS.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#KiefferW14,https://doi.org/10.1016/j.automatica.2013.11.010 +Yan Li 0004,When is a Mittag-Leffler function a Nussbaum function?,2009,45,Automatica,8,db/journals/automatica/automatica45.html#LiC09,https://doi.org/10.1016/j.automatica.2009.03.020 +Jackeline Abad Torres,Graph-theoretic analysis of network input-output processes: Zero structure and its implications on remote feedback control.,2015,61,Automatica,,db/journals/automatica/automatica61.html#TorresR15,https://doi.org/10.1016/j.automatica.2015.07.034 +Vladimír Kucera,Partial model matching: Parametrization of solutions.,1997,33,Automatica,5,db/journals/automatica/automatica33.html#KuceraMM97,https://doi.org/10.1016/S0005-1098(96)00252-X +Jonathan de Halleux,Boundary feedback control in networks of open channels.,2003,39,Automatica,8,db/journals/automatica/automatica39.html#HalleuxPCdB03,https://doi.org/10.1016/S0005-1098(03)00109-2 +W. P. M. H. Heemels,Model-based periodic event-triggered control for linear systems.,2013,49,Automatica,3,db/journals/automatica/automatica49.html#HeemelsD13,https://doi.org/10.1016/j.automatica.2012.11.025 +Cecília F. Morais,An LMI approach for H2 and H∞ reduced-order filtering of uncertain discrete-time Markov and Bernoulli jump linear systems.,2018,95,Automatica,,db/journals/automatica/automatica95.html#MoraisPPO18,https://doi.org/10.1016/j.automatica.2018.06.014 +Mondher Farza,Simple nonlinear observers for on-line estimation of kinetic rates in bioreactors.,1998,34,Automatica,3,db/journals/automatica/automatica34.html#FarzaBH98,https://doi.org/10.1016/S0005-1098(97)00166-0 +Michael K. Tippett,Upper bounds for the solution of the discrete algebraic Lyapunov equation.,1999,35,Automatica,8,db/journals/automatica/automatica35.html#TippettM99,https://doi.org/10.1016/S0005-1098(99)00041-2 +Simon Rohou,Reliable non-linear state estimation involving time uncertainties.,2018,93,Automatica,,db/journals/automatica/automatica93.html#RohouJMBV18,https://doi.org/10.1016/j.automatica.2018.03.074 +Hossein Sartipizadeh,A new robust MPC using an approximate convex hull.,2018,92,Automatica,,db/journals/automatica/automatica92.html#SartipizadehV18,https://doi.org/10.1016/j.automatica.2018.03.010 +Aurelio Piazzi,Using stable input-output inversion for minimum-time feedforward constrained regulation of scalar systems.,2005,41,Automatica,2,db/journals/automatica/automatica41.html#PiazziV05,https://doi.org/10.1016/j.automatica.2004.10.009 +Héctor Ríos,Fault tolerant control allocation via continuous integral sliding-modes: A HOSM-Observer approach.,2015,51,Automatica,,db/journals/automatica/automatica51.html#RiosKFZ15,https://doi.org/10.1016/j.automatica.2014.10.085 +M. El Adel,Decentralized adaptive control of linear interconnected systems based on Laguerre series representation.,1999,35,Automatica,11,db/journals/automatica/automatica35.html#AdelMR99,https://doi.org/10.1016/S0005-1098(99)00107-7 +Erik V. Bohn,Recursive evaluation of walsh coefficients for multiple integrals of walsh series.,1984,20,Automatica,2,db/journals/automatica/automatica20.html#Bohn84,https://doi.org/10.1016/0005-1098(84)90032-3 +Xiaobo Tan,Modeling and control of hysteresis in magnetostrictive actuators.,2004,40,Automatica,9,db/journals/automatica/automatica40.html#TanB04,https://doi.org/10.1016/j.automatica.2004.04.006 +Lilianne Denis-Vidal,Equivalence and identifiability analysis of uncontrolled nonlinear dynamical systems.,2004,40,Automatica,2,db/journals/automatica/automatica40.html#Denis-VidalJ04,https://doi.org/10.1016/j.automatica.2003.09.013 +Thomas Meurer,Finite-time multi-agent deployment: A nonlinear PDE motion planning approach.,2011,47,Automatica,11,db/journals/automatica/automatica47.html#MeurerK11,https://doi.org/10.1016/j.automatica.2011.08.045 +Jurgen van Zundert,Optimality and flexibility in Iterative Learning Control for varying tasks.,2016,67,Automatica,,db/journals/automatica/automatica67.html#ZundertBO16,https://doi.org/10.1016/j.automatica.2016.01.026 +Mao-Lin Ni,Decentralized stabilization and output tracking of large-scale uncertain systems.,1996,32,Automatica,7,db/journals/automatica/automatica32.html#NiC96,https://doi.org/10.1016/0005-1098(96)00030-1 +Moritz Lang,Zeros of nonlinear systems with input invariances.,2017,81,Automatica,,db/journals/automatica/automatica81.html#LangS17,https://doi.org/10.1016/j.automatica.2017.03.030 +Wladyslaw Hejmo,Time-optimal feedback system controlling a discontinuous dynamic object reaching a moving target.,1994,30,Automatica,12,db/journals/automatica/automatica30.html#Hejmo94,https://doi.org/10.1016/0005-1098(94)90053-1 +M. Kuijper,Descriptor representations without direct feedthrough term.,1992,28,Automatica,3,db/journals/automatica/automatica28.html#Kuijper92,https://doi.org/10.1016/0005-1098(92)90190-Q +H. S. Hoang,On the design of a stable adaptive filter for state estimation in high dimensional systems.,2001,37,Automatica,3,db/journals/automatica/automatica37.html#HoangBT01,https://doi.org/10.1016/S0005-1098(00)00175-8 +Zhiqiang Tan,Dissipative control for linear discrete-time systems.,1999,35,Automatica,9,db/journals/automatica/automatica35.html#TanSX99,https://doi.org/10.1016/S0005-1098(99)00069-2 +Matthew R. Graham,An alternative Kalman-Yakubovich-Popov lemma and some extensions.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#GrahamOC09,https://doi.org/10.1016/j.automatica.2009.02.006 +Dario Bauso,The linear saturated decentralized strategy for constrained flow control is asymptotically optimal.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#BausoBGP13,https://doi.org/10.1016/j.automatica.2013.03.029 +Graham C. Goodwin,A parameter estimation perspective of continuous time model reference adaptive control.,1987,23,Automatica,1,db/journals/automatica/automatica23.html#GoodwinM87,https://doi.org/10.1016/0005-1098(87)90118-X +S. J. Lawrence,The solid electrolyte oxygen sensor theory and applications.,1969,5,Automatica,5,db/journals/automatica/automatica5.html#LawrenceSS69,https://doi.org/10.1016/0005-1098(69)90030-2 +Pierre Grosdidier,Interaction measures for systems under decentralized control.,1986,22,Automatica,3,db/journals/automatica/automatica22.html#GrosdidierM86,https://doi.org/10.1016/0005-1098(86)90029-4 +Toshimitsu Ushio,Control-invariance of hybrid systems with forcible events.,2005,41,Automatica,4,db/journals/automatica/automatica41.html#UshioT05,https://doi.org/10.1016/j.automatica.2004.10.013 +Roger W. Brockett,Volterra series and geometric control theory.,1976,12,Automatica,2,db/journals/automatica/automatica12.html#Brockett76,https://doi.org/10.1016/0005-1098(76)90080-7 +Luc Jaulin,Guaranteed parameter bounding for nonlinear models with uncertain experimental factors.,1999,35,Automatica,5,db/journals/automatica/automatica35.html#JaulinW99,https://doi.org/10.1016/S0005-1098(98)00209-X +Harold Chestnut,Automation - What it is and what are the problems it poses.,1963,1,Automatica,4,db/journals/automatica/automatica1.html#Chestnut63,https://doi.org/10.1016/0005-1098(63)90010-4 +Paolo Bolzern,Hinfinity-robustness of adaptive filters against measurement noise and parameter drift.,1999,35,Automatica,9,db/journals/automatica/automatica35.html#BolzernCN99,https://doi.org/10.1016/S0005-1098(99)00073-4 +Li-Cheng Shen,Robust Design of Fault Isolation Observers.,1998,34,Automatica,11,db/journals/automatica/automatica34.html#ShenH98,https://doi.org/10.1016/S0005-1098(98)00087-9 +Imad M. Jaimoukha,Controller reduction for linear parameter-varying systems with a priori bounds.,2005,41,Automatica,2,db/journals/automatica/automatica41.html#JaimoukhaELS05,https://doi.org/10.1016/j.automatica.2004.10.001 +Richard W. Pew,Perspectives on human performance modelling.,1983,19,Automatica,6,db/journals/automatica/automatica19.html#PewB83,https://doi.org/10.1016/0005-1098(83)90030-4 +Petre Stoica,Uniqueness of prediction error estimates of multivariable moving average models.,1982,18,Automatica,5,db/journals/automatica/automatica18.html#StoicaS82,https://doi.org/10.1016/0005-1098(82)90013-9 +Chi-Jo Wang,State feedback impulse elimination of linear time-varying singular systems.,1996,32,Automatica,1,db/journals/automatica/automatica32.html#Wang96,https://doi.org/10.1016/0005-1098(95)00135-2 +Andrew P. Sage,Guest editorial.,1983,19,Automatica,6,db/journals/automatica/automatica19.html#Sage83a,https://doi.org/10.1016/0005-1098(83)90022-5 +Farshad R. Pour Safaei,On controller initialization in multivariable switching systems.,2012,48,Automatica,12,db/journals/automatica/automatica48.html#SafaeiHS12,https://doi.org/10.1016/j.automatica.2012.08.034 +Minhui Sun,Robust exponential stabilization for Markovian jump systems with mode-dependent input delay.,2007,43,Automatica,10,db/journals/automatica/automatica43.html#SunLXZ07,https://doi.org/10.1016/j.automatica.2007.03.005 +Changyun Wen,Decentralized robust control of class unknown interconnected systems.,1994,30,Automatica,3,db/journals/automatica/automatica30.html#Wen94,https://doi.org/10.1016/0005-1098(94)90134-1 +David Angeli,On feasible set-membership state estimators in constrained command governor control.,2001,37,Automatica,1,db/journals/automatica/automatica37.html#AngeliCM01,https://doi.org/10.1016/S0005-1098(00)00133-3 +Mark J. Balas,Linear distributed parameter systems: Closed-loop exponential stability with a finite-dimensional controller.,1984,20,Automatica,3,db/journals/automatica/automatica20.html#Balas84,https://doi.org/10.1016/0005-1098(84)90053-0 +B. Hertzanu,Microprocessor-based control of industrial sewing machines.,1986,22,Automatica,1,db/journals/automatica/automatica22.html#HertzanuT86,https://doi.org/10.1016/0005-1098(86)90102-0 +Jorge R. Chávez-Fuentes,Regularity and stability analysis of discrete-time Markov jump linear singular systems.,2017,76,Automatica,,db/journals/automatica/automatica76.html#Chavez-FuentesC17,https://doi.org/10.1016/j.automatica.2016.11.007 +Ding Liu,"Authors' Reply to 'Comments on ""Liveness of an extended S3PR "" [Automatica 46(6) (2010) 1008-1018]'.",2014,50,Automatica,8,db/journals/automatica/automatica50.html#LiuLZ14,https://doi.org/10.1016/j.automatica.2014.05.037 +Alexey S. Matveev,Method for tracking of environmental level sets by a unicycle-like vehicle.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#MatveevTS12,https://doi.org/10.1016/j.automatica.2012.06.030 +Nils R. Sandell,Robust stability of systems with application to singular perturbations.,1979,15,Automatica,4,db/journals/automatica/automatica15.html#Sandell79,https://doi.org/10.1016/0005-1098(79)90021-9 +Liyong Lin,Symbolic reachability analysis and maximally permissive entrance control for globally synchronized templates.,2018,87,Automatica,,db/journals/automatica/automatica87.html#LinSWSW18,https://doi.org/10.1016/j.automatica.2017.10.015 +Junqiang Fan,Two-dimensional frequency analysis for unconstrained model predictive control of cross-directional processes.,2004,40,Automatica,11,db/journals/automatica/automatica40.html#FanSD04,https://doi.org/10.1016/j.automatica.2004.07.002 +Nathan Cohn,Recollections of the evolution of realtime control applications to power systems.,1984,20,Automatica,2,db/journals/automatica/automatica20.html#Cohn84,https://doi.org/10.1016/0005-1098(84)90021-9 +Piet M. T. Broersen,Mean square error of the Empirical Transfer Function Estimator for stochastic input signals.,2004,40,Automatica,1,db/journals/automatica/automatica40.html#Broersen04,https://doi.org/10.1016/j.automatica.2003.08.007 +John B. Moore,Asymptotically optimum recursive prediction error methods in adaptive estimation and control.,1986,22,Automatica,2,db/journals/automatica/automatica22.html#MooreB86,https://doi.org/10.1016/0005-1098(86)90086-5 +John W. Simpson-Porco,Synchronization and power sharing for droop-controlled inverters in islanded microgrids.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#Simpson-PorcoDB13,https://doi.org/10.1016/j.automatica.2013.05.018 +Hannes Bleuler,New concepts for cost-effective magnetic bearing control.,1994,30,Automatica,5,db/journals/automatica/automatica30.html#BleulerVSTZ94,https://doi.org/10.1016/0005-1098(94)90175-9 +Tamer Basar,A retirement and a new editor: Book and software reviews.,2007,43,Automatica,4,db/journals/automatica/automatica43.html#Basar07,https://doi.org/10.1016/j.automatica.2007.02.001 +Didier Henrion,Symmetric Matrix Polynomial Equation: Interpolation Results.,1998,34,Automatica,7,db/journals/automatica/automatica34.html#HenrionS98,https://doi.org/10.1016/S0005-1098(98)00029-6 +Jeremy G. VanAntwerp,Cross-directional control of sheet and film processes.,2007,43,Automatica,2,db/journals/automatica/automatica43.html#VanAntwerpFBO07,https://doi.org/10.1016/j.automatica.2006.07.025 +Taha Boukhobza,State and input observability for structured linear systems: A graph-theoretic approach.,2007,43,Automatica,7,db/journals/automatica/automatica43.html#BoukhobzaHM07,https://doi.org/10.1016/j.automatica.2006.12.004 +Mario Jungbeck,"Comments on ""intelligent optimal control of robotic manipulator using neural networks"".",2002,38,Automatica,4,db/journals/automatica/automatica38.html#JungbeckC02,https://doi.org/10.1016/S0005-1098(01)00255-2 +Christopher I. Byrnes,Structurally stable output regulation of nonlinear systems.,1997,33,Automatica,3,db/journals/automatica/automatica33.html#ByrnesPIK97,https://doi.org/10.1016/S0005-1098(96)00184-7 +Xiwei Liu,"Comments on ""Distributed nonlinear control algorithms for network consensus"" [Automatica 44 (2008) 2375-2381].",2010,46,Automatica,9,db/journals/automatica/automatica46.html#Liu10,https://doi.org/10.1016/j.automatica.2010.05.026 +Maojiao Ye,A robust extremum seeking scheme for dynamic systems with uncertainties and disturbances.,2016,66,Automatica,,db/journals/automatica/automatica66.html#YeH16,https://doi.org/10.1016/j.automatica.2015.12.034 +Jonas Mårtensson,Covariance analysis in SISO linear systems identification.,2017,77,Automatica,,db/journals/automatica/automatica77.html#MartenssonEH17,https://doi.org/10.1016/j.automatica.2016.11.025 +Yucai Zhu,Estimation of an N-L-N Hammerstein-Wiener model.,2002,38,Automatica,9,db/journals/automatica/automatica38.html#Zhu02,https://doi.org/10.1016/S0005-1098(02)00062-6 +Stephen A. Billings,Identification of systems containing linear dynamic and static nonlinear elements.,1982,18,Automatica,1,db/journals/automatica/automatica18.html#BillingsF82,https://doi.org/10.1016/0005-1098(82)90022-X +J. R. Howell,Some Classes of Step-response Models without Extrema.,1997,33,Automatica,7,db/journals/automatica/automatica33.html#Howell97,https://doi.org/10.1016/S0005-1098(97)00000-9 +J. S. Gibson,Approximation of discrete-time LQG compensators for distributed systems with boundary input and unbounded measurement.,1988,24,Automatica,4,db/journals/automatica/automatica24.html#GibsonR88,https://doi.org/10.1016/0005-1098(88)90096-9 +Davide Martino Raimondo,Closed-loop input design for guaranteed fault diagnosis using set-valued observers.,2016,74,Automatica,,db/journals/automatica/automatica74.html#RaimondoMBS16,https://doi.org/10.1016/j.automatica.2016.07.033 +David W. Clarke,Self-tuning control of nonminimum-phase systems.,1984,20,Automatica,5,db/journals/automatica/automatica20.html#Clarke84,https://doi.org/10.1016/0005-1098(84)90003-7 +Alexandre Seuret,Generalized reciprocally convex combination lemmas and its application to time-delay systems.,2018,95,Automatica,,db/journals/automatica/automatica95.html#SeuretLG18,https://doi.org/10.1016/j.automatica.2018.06.017 +Sri R. Kolla,Improved stability robustness bounds using state transformation for linear discrete systems.,1990,26,Automatica,5,db/journals/automatica/automatica26.html#KollaF90a,https://doi.org/10.1016/0005-1098(90)90013-8 +Daniel Viegas,Distributed state estimation for linear multi-agent systems with time-varying measurement topology.,2015,54,Automatica,,db/journals/automatica/automatica54.html#ViegasBOSC15,https://doi.org/10.1016/j.automatica.2015.01.036 +Xiaocong Zhu,Adaptive robust posture control of a parallel manipulator driven by pneumatic muscles.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#ZhuTYC08,https://doi.org/10.1016/j.automatica.2008.01.015 +Aranya Chakrabortty,Time-scale separation redesigns for stabilization and performance recovery of uncertain nonlinear systems.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#ChakraborttyA09,https://doi.org/10.1016/j.automatica.2008.06.004 +Elena Panteley,Growth rate conditions for uniform asymptotic stability of cascaded time-varying systems.,2001,37,Automatica,3,db/journals/automatica/automatica37.html#PanteleyL01,https://doi.org/10.1016/S0005-1098(00)00169-2 +L. Daniel Metz,Robust control performance of time-varying human controller models.,1985,21,Automatica,4,db/journals/automatica/automatica21.html#MetzC85,https://doi.org/10.1016/0005-1098(85)90083-4 +Tal Monovich,A second-order maximum principle for discrete-time bilinear control systems with applications to discrete-time linear switched systems.,2011,47,Automatica,7,db/journals/automatica/automatica47.html#MonovichM11,https://doi.org/10.1016/j.automatica.2011.02.025 +Farshid Abbasi,A team-based approach for coverage control of moving sensor networks.,2017,81,Automatica,,db/journals/automatica/automatica81.html#AbbasiMV17,https://doi.org/10.1016/j.automatica.2017.04.019 +Maja Karasalo,An optimization approach to adaptive Kalman filtering.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#KarasaloH11,https://doi.org/10.1016/j.automatica.2011.04.004 +Hassan K. Khalil,Control of linear singularly perturbed systems with colored noise disturbance.,1978,14,Automatica,2,db/journals/automatica/automatica14.html#Khalil78,https://doi.org/10.1016/0005-1098(78)90020-1 +Ingela Lind,Regressor selection with the analysis of variance method.,2005,41,Automatica,4,db/journals/automatica/automatica41.html#LindL05,https://doi.org/10.1016/j.automatica.2004.11.017 +Zhengtao Ding,Asymptotic rejection of unknown sinusoidal disturbances in nonlinear systems.,2007,43,Automatica,1,db/journals/automatica/automatica43.html#Ding07,https://doi.org/10.1016/j.automatica.2006.08.006 +Robert Elliott,Discrete time mean-field stochastic linear-quadratic optimal control problems.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#ElliottLN13,https://doi.org/10.1016/j.automatica.2013.08.017 +Shuzhi Sam Ge,"Correction to ""Adaptive NN control for a class of strict-feedback discrete-time nonlinear systems"".",2008,44,Automatica,7,db/journals/automatica/automatica44.html#GeLL08,https://doi.org/10.1016/j.automatica.2007.11.018 +Gunnar Bengtsson,Output regulation and internal models - A frequency domain approach.,1977,13,Automatica,4,db/journals/automatica/automatica13.html#Bengtsson77,https://doi.org/10.1016/0005-1098(77)90016-4 +Dong-Mei Zhu,Optimal portfolios with maximum Value-at-Risk constraint under a hidden Markovian regime-switching model.,2016,74,Automatica,,db/journals/automatica/automatica74.html#ZhuXCS16,https://doi.org/10.1016/j.automatica.2016.07.032 +Jitka Mayerová,SOCOCO '79 panel discussion on the influence of microprocessors on the process control.,1980,16,Automatica,2,db/journals/automatica/automatica16.html#Mayerova80,https://doi.org/10.1016/0005-1098(80)90062-X +Katherine S. Peterson,Extremum seeking control for soft landing of an electromechanical valve actuator.,2004,40,Automatica,6,db/journals/automatica/automatica40.html#PetersonS04,https://doi.org/10.1016/j.automatica.2004.01.027 +Mirko Fiacchini,Control co-design for discrete-time switched linear systems.,2017,82,Automatica,,db/journals/automatica/automatica82.html#FiacchiniT17,https://doi.org/10.1016/j.automatica.2017.04.043 +Huu Chuong La,Partial stability for nonlinear model predictive control.,2017,78,Automatica,,db/journals/automatica/automatica78.html#LaPB17,https://doi.org/10.1016/j.automatica.2016.11.047 +Li Xie,Lyapunov-based adaptive state estimation for a class of nonlinear stochastic systems.,2012,48,Automatica,7,db/journals/automatica/automatica48.html#XieK12,https://doi.org/10.1016/j.automatica.2012.05.002 +Riccardo Marino,An adaptive tracking control from current measurements for induction motors with uncertain load torque and rotor resistance.,2008,44,Automatica,10,db/journals/automatica/automatica44.html#MarinoTV08,https://doi.org/10.1016/j.automatica.2008.02.023 +David S. Bayard,Optimal experiment design for identification of large space structures.,1988,24,Automatica,3,db/journals/automatica/automatica24.html#BayardHM88,https://doi.org/10.1016/0005-1098(88)90076-3 +Alessandro Abate,Box invariance in biologically-inspired dynamical systems.,2009,45,Automatica,7,db/journals/automatica/automatica45.html#AbateTS09,https://doi.org/10.1016/j.automatica.2009.02.028 +Frida Eng,Identification with stochastic sampling time jitter.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#EngG08,https://doi.org/10.1016/j.automatica.2007.06.018 +David Bensoussan,Robust and ultrafast response compensator for unstable invertible plants.,2015,60,Automatica,,db/journals/automatica/automatica60.html#Bensoussan15,https://doi.org/10.1016/j.automatica.2015.06.038 +Rogelio Lozano,Singularity-free adaptive pole placement for second-order systems.,1994,30,Automatica,5,db/journals/automatica/automatica30.html#LozanoZM94,https://doi.org/10.1016/0005-1098(94)90182-1 +Rong Gao,Receding horizon control for multiplicative noise stochastic systems with input delay.,2017,81,Automatica,,db/journals/automatica/automatica81.html#GaoXZ17,https://doi.org/10.1016/j.automatica.2017.04.002 +Masatoshi Nakamura,Short term load forecasting using daily updated load models.,1985,21,Automatica,6,db/journals/automatica/automatica21.html#Nakamura85,https://doi.org/10.1016/0005-1098(85)90046-9 +Siyu Xie,A necessary and sufficient condition for stability of LMS-based consensus adaptive filters.,2018,93,Automatica,,db/journals/automatica/automatica93.html#XieG18,https://doi.org/10.1016/j.automatica.2018.03.027 +Yongqiang Li,Data-driven approximate value iteration with optimality error bound analysis.,2017,78,Automatica,,db/journals/automatica/automatica78.html#LiHFC17,https://doi.org/10.1016/j.automatica.2016.12.019 +Wen Mi,On backward shift algorithm for estimating poles of systems.,2014,50,Automatica,6,db/journals/automatica/automatica50.html#MiQ14,https://doi.org/10.1016/j.automatica.2014.04.030 +Peng Cheng 0001,Strong gammak-gamma cl Hinfinity stabilization with a new slack variable approach.,2009,45,Automatica,8,db/journals/automatica/automatica45.html#ChengCS09,https://doi.org/10.1016/j.automatica.2009.03.024 +Robert Shorten,Modelling TCP congestion control dynamics in drop-tail environments.,2007,43,Automatica,3,db/journals/automatica/automatica43.html#ShortenKWL07,https://doi.org/10.1016/j.automatica.2006.07.026 +M. Ashhab,Dynamical analysis and control of microcantilevers.,1999,35,Automatica,10,db/journals/automatica/automatica35.html#AshhabSDM99,https://doi.org/10.1016/S0005-1098(99)00077-1 +Graciela Adriana González,Adaptive control of linearizable discrete-time systems.,1997,33,Automatica,4,db/journals/automatica/automatica33.html#Gonzalez97,https://doi.org/10.1016/S0005-1098(96)00232-4 +Zhaolin Cheng,The optimal regulation of generalized state-space systems with quadratic cost.,1988,24,Automatica,5,db/journals/automatica/automatica24.html#ChengHZ88,https://doi.org/10.1016/0005-1098(88)90120-3 +Wei Guo,Adaptive rejection of harmonic disturbance anticollocated with control in 1D wave equation.,2017,79,Automatica,,db/journals/automatica/automatica79.html#GuoSK17,https://doi.org/10.1016/j.automatica.2017.01.034 +R. H. Liu,Asymptotically optimal controls of hybrid linear quadratic regulators in discrete time.,2002,38,Automatica,3,db/journals/automatica/automatica38.html#LiuZY02,https://doi.org/10.1016/S0005-1098(01)00226-6 +Rolf Isermann,Parameter-adaptive control with configuration aids and supervision functions.,1985,21,Automatica,6,db/journals/automatica/automatica21.html#IsermannL85,https://doi.org/10.1016/0005-1098(85)90037-8 +Marco Lovera,Recursive subspace identification of linear and non-linear Wiener state-space models.,2000,36,Automatica,11,db/journals/automatica/automatica36.html#LoveraGV00,https://doi.org/10.1016/S0005-1098(00)00103-5 +Vladimir Turetsky,Capture zones of linear feedback pursuer strategies.,2008,44,Automatica,2,db/journals/automatica/automatica44.html#Turetsky08,https://doi.org/10.1016/j.automatica.2007.06.014 +Tetsuya Iwasaki,All controllers for the general H∞ control problem: LMI existence conditions and state space formulas.,1994,30,Automatica,8,db/journals/automatica/automatica30.html#IwasakiS94,https://doi.org/10.1016/0005-1098(94)90110-4 +Montassar Ezzine,A controller design based on a functional H∞ filter for descriptor systems: The time and frequency domain cases.,2012,48,Automatica,3,db/journals/automatica/automatica48.html#EzzineADM12,https://doi.org/10.1016/j.automatica.2011.08.060 +John T. Wen,Motion and force control of multiple robotic manipulators.,1992,28,Automatica,4,db/journals/automatica/automatica28.html#WenK92,https://doi.org/10.1016/0005-1098(92)90033-C +Jalal Habibi,Low-complexity control of hybrid systems using approximate multi-parametric MILP.,2016,63,Automatica,,db/journals/automatica/automatica63.html#HabibiMKM16,https://doi.org/10.1016/j.automatica.2015.10.032 +M. Mansour,Instability criteria of linear discrete systems.,1965,2,Automatica,3,db/journals/automatica/automatica2.html#Mansour65,https://doi.org/10.1016/0005-1098(65)90008-7 +Myung-Gon Yoon,On the worst-case disturbance of minimax optimal control.,2005,41,Automatica,5,db/journals/automatica/automatica41.html#YoonUP05,https://doi.org/10.1016/j.automatica.2004.11.027 +S. Kanev,Robustly asymptotically stable finite-horizon MPC.,2006,42,Automatica,12,db/journals/automatica/automatica42.html#KanevV06,https://doi.org/10.1016/j.automatica.2006.07.011 +Franco Blanchini,Polyhedral Lyapunov functions structurally ensure global asymptotic stability of dynamical networks iff the Jacobian is non-singular.,2017,86,Automatica,,db/journals/automatica/automatica86.html#BlanchiniG17,https://doi.org/10.1016/j.automatica.2017.08.022 +Maciej Niedzwiecki,On noncausal weighted least squares identification of nonstationary stochastic systems.,2011,47,Automatica,10,db/journals/automatica/automatica47.html#NiedzwieckiG11,https://doi.org/10.1016/j.automatica.2011.08.008 +Sing Kiong Nguang,Robust nonlinear H∞ filtering.,1996,32,Automatica,8,db/journals/automatica/automatica32.html#NguangF96,https://doi.org/10.1016/0005-1098(96)00067-2 +Abolfazl Yaghmaei,Trajectory tracking for a class of contractive port Hamiltonian systems.,2017,83,Automatica,,db/journals/automatica/automatica83.html#YaghmaeiY17,https://doi.org/10.1016/j.automatica.2017.06.039 +Haibo Du,Finite-time consensus of multiple nonholonomic chained-form systems based on recursive distributed observer.,2015,62,Automatica,,db/journals/automatica/automatica62.html#DuWYLC15,https://doi.org/10.1016/j.automatica.2015.09.026 +Halim Alwi,An adaptive sliding mode differentiator for actuator oscillatory failure case reconstruction.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#AlwiE13,https://doi.org/10.1016/j.automatica.2012.11.042 +Seyed Mehran Dibaji,Resilient consensus of second-order agent networks: Asynchronous update rules with delays.,2017,81,Automatica,,db/journals/automatica/automatica81.html#DibajiI17,https://doi.org/10.1016/j.automatica.2017.03.008 +Masayasu Suzuki,Analysis and stabilization for networked linear hyperbolic systems of rationally dependent conservation laws.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#SuzukiIA13,https://doi.org/10.1016/j.automatica.2013.08.016 +Alberto Isidori,Robust design of nonlinear internal models without adaptation.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#IsidoriMP12,https://doi.org/10.1016/j.automatica.2012.06.076 +U. Baur,On-line identification of a heat exchanger with a process computer - A case study.,1977,13,Automatica,5,db/journals/automatica/automatica13.html#BaurI77,https://doi.org/10.1016/0005-1098(77)90069-3 +Frédéric Mazenc,Extensions of Razumikhin's theorem and Lyapunov-Krasovskii functional constructions for time-varying systems with delay.,2017,78,Automatica,,db/journals/automatica/automatica78.html#MazencM17,https://doi.org/10.1016/j.automatica.2016.12.005 +Philippe Martin 0001,A different look at output tracking: control of a vtol aircraft.,1996,32,Automatica,1,db/journals/automatica/automatica32.html#MartinDP96,https://doi.org/10.1016/0005-1098(95)00099-2 +Noboru Sebe,Explicit characterization of decentralized coprime factors.,2004,40,Automatica,9,db/journals/automatica/automatica40.html#Sebe04,https://doi.org/10.1016/j.automatica.2004.03.020 +Julio H. Braslavsky,Limiting performance of optimal linear filters.,1999,35,Automatica,2,db/journals/automatica/automatica35.html#BraslavskySMK99,https://doi.org/10.1016/S0005-1098(98)00144-7 +T. Graham Freeman,Selecting the best linear transfer function model.,1985,21,Automatica,4,db/journals/automatica/automatica21.html#Freeman85,https://doi.org/10.1016/0005-1098(85)90073-1 +Jerry Ding,A stochastic games framework for verification and control of discrete time stochastic hybrid systems.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#DingKSALT13,https://doi.org/10.1016/j.automatica.2013.05.025 +Noboru Sakamoto,Case studies on the application of the stable manifold approach for nonlinear optimal control design.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#Sakamoto13,https://doi.org/10.1016/j.automatica.2012.11.032 +Ravi K. Prasanth,State-space approach to control design under partial statistical information for exogenous signals.,2000,36,Automatica,8,db/journals/automatica/automatica36.html#PrasanthN00,https://doi.org/10.1016/S0005-1098(00)00032-7 +Steven Richardson,A multivariate adaptive regression B-spline algorithm (BMARS) for solving a class of nonlinear optimal feedback control problems.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#RichardsonWJ08,https://doi.org/10.1016/j.automatica.2007.09.001 +Yangquan Chen,Analytical stability bound for delayed second-order systems with repeating poles using Lambert function W.,2002,38,Automatica,5,db/journals/automatica/automatica38.html#ChenM02,https://doi.org/10.1016/S0005-1098(01)00264-3 +Elham Semsar-Kazerooni,Multi-agent team cooperation: A game theory approach.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#Semsar-KazerooniK09,https://doi.org/10.1016/j.automatica.2009.06.006 +Valery A. Ugrinovskii,Guaranteed cost control of uncertain systems via Lur'e-Postnikov Lyapunov functions.,2000,36,Automatica,2,db/journals/automatica/automatica36.html#UgrinovskiiP00,https://doi.org/10.1016/S0005-1098(99)00139-9 +Mohamed F. Hassan,A two-level parameter estimation algorithm using the multiple projection approach.,1982,18,Automatica,5,db/journals/automatica/automatica18.html#HassanMSS82,https://doi.org/10.1016/0005-1098(82)90014-0 +Mats Sågfors,H∞ Control of Multirate Sampled-Data Systems: A State-Space Approach.,1998,34,Automatica,4,db/journals/automatica/automatica34.html#SagforsTL98,https://doi.org/10.1016/S0005-1098(97)00236-7 +Yun Zou,Jump modes analysis and observer design for discrete singular systems.,2007,43,Automatica,1,db/journals/automatica/automatica43.html#ZouWXX07,https://doi.org/10.1016/j.automatica.2006.07.007 +Caroline Kulcsar,Minimum variance prediction and control for adaptive optics.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#KulcsarRPC12,https://doi.org/10.1016/j.automatica.2012.03.030 +S. Yusef Shafi,Synchronization of diffusively-coupled limit cycle oscillators.,2013,49,Automatica,12,db/journals/automatica/automatica49.html#ShafiAJP13,https://doi.org/10.1016/j.automatica.2013.09.011 +C. Richard Johnson Jr.,Modern control systems : 3rd edn by R. C. Dorf.,1982,18,Automatica,2,db/journals/automatica/automatica18.html#Johnson82,https://doi.org/10.1016/0005-1098(82)90114-5 +Andrea Cristofaro,Fault tolerant control allocation using unknown input observers.,2014,50,Automatica,7,db/journals/automatica/automatica50.html#CristofaroJ14,https://doi.org/10.1016/j.automatica.2014.05.007 +Samir Aberkane,H∞ filtering of periodic Markovian jump systems: Application to filtering with communication constraints.,2012,48,Automatica,12,db/journals/automatica/automatica48.html#AberkaneD12,https://doi.org/10.1016/j.automatica.2012.08.040 +M. Ghandhari,A control strategy for controllable series capacitor in electric power systems.,2001,37,Automatica,10,db/journals/automatica/automatica37.html#GhandhariAPE01,https://doi.org/10.1016/S0005-1098(01)00099-1 +Zhiyong Sun,Distributed stabilization control of rigid formations with prescribed orientation.,2017,78,Automatica,,db/journals/automatica/automatica78.html#SunPAA17,https://doi.org/10.1016/j.automatica.2016.12.031 +Yue Fu,Robust adaptive regulation of discrete time nonlinear systems with arbitrary nonlinearities.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#FuC13,https://doi.org/10.1016/j.automatica.2013.04.030 +Bin Yao,Adaptive robust control of MIMO nonlinear systems in semi-strict feedback forms.,2001,37,Automatica,9,db/journals/automatica/automatica37.html#YaoT01,https://doi.org/10.1016/S0005-1098(01)00082-6 +Victor M. Zavala,Stability of multiobjective predictive control: A utopia-tracking approach.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#ZavalaF12,https://doi.org/10.1016/j.automatica.2012.06.066 +Dan Chen,Robust Nyquist array analysis based on uncertainty descriptions from system identification.,2002,38,Automatica,3,db/journals/automatica/automatica38.html#ChenS02,https://doi.org/10.1016/S0005-1098(01)00207-2 +Yan Li 0004,Mittag-Leffler stability of fractional order nonlinear dynamic systems.,2009,45,Automatica,8,db/journals/automatica/automatica45.html#LiCP09,https://doi.org/10.1016/j.automatica.2009.04.003 +Ricardo G. Sanfelice,On the performance of high-gain observers with gain adaptation under measurement noise.,2011,47,Automatica,10,db/journals/automatica/automatica47.html#SanfeliceP11,https://doi.org/10.1016/j.automatica.2011.08.002 +Marina Guihard,A new controller adapted to constrained pneumatic multichain structures.,2000,36,Automatica,9,db/journals/automatica/automatica36.html#GuihardG00,https://doi.org/10.1016/S0005-1098(00)00042-X +Zongli Lin,Linear controller for an inverted pendulum having restricted travel: A high-and-low gain approach.,1996,32,Automatica,6,db/journals/automatica/automatica32.html#LinSGS96,https://doi.org/10.1016/0005-1098(96)00006-4 +Yuan Fan,Virtual neighbor based connectivity preserving of multi-agent systems with bounded control inputs in the presence of unreliable communication links.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#FanLFSW13,https://doi.org/10.1016/j.automatica.2013.02.030 +Zhijun Li,Direct adaptive controller for uncertain MIMO dynamic systems with time-varying delay and dead-zone inputs.,2016,63,Automatica,,db/journals/automatica/automatica63.html#LiCFS16,https://doi.org/10.1016/j.automatica.2015.10.036 +Bo Shen,H INFINITY filtering for nonlinear discrete-time stochastic systems with randomly varying sensor delays.,2009,45,Automatica,4,db/journals/automatica/automatica45.html#ShenWSW09,https://doi.org/10.1016/j.automatica.2008.11.009 +Elena De Santis,On invariant sets for constrained discrete time linear systems with disturbances and parametric uncertainties.,1997,33,Automatica,11,db/journals/automatica/automatica33.html#Santis97,https://doi.org/10.1016/S0005-1098(97)00114-3 +Dragan Nesic,Stabilization of sampled-data nonlinear systems via backstepping on their Euler approximate model.,2006,42,Automatica,10,db/journals/automatica/automatica42.html#NesicT06,https://doi.org/10.1016/j.automatica.2006.05.015 +Edgar H. Bristol,Pattern recognition: An alternative to parameter identification in adaptive control.,1977,13,Automatica,2,db/journals/automatica/automatica13.html#Bristol77,https://doi.org/10.1016/0005-1098(77)90046-2 +Martin Morf,Reply to discussion of 'square-root algorithms for parallel processing in optimal estimation'.,1979,15,Automatica,4,db/journals/automatica/automatica15.html#MorfKDFN79,https://doi.org/10.1016/0005-1098(79)90028-1 +Ruiyun Qi,Adaptive control of MIMO time-varying systems with indicator function based parametrization.,2014,50,Automatica,5,db/journals/automatica/automatica50.html#QiTJ14,https://doi.org/10.1016/j.automatica.2014.03.005 +Henrik Ohlsson,Smoothed state estimates under abrupt changes using sum-of-norms regularization.,2012,48,Automatica,4,db/journals/automatica/automatica48.html#OhlssonGLB12,https://doi.org/10.1016/j.automatica.2011.08.063 +David Q. Mayne,Computer-aided design via optimization : A review.,1982,18,Automatica,2,db/journals/automatica/automatica18.html#MaynePS82,https://doi.org/10.1016/0005-1098(82)90104-2 +D. Franke,Sensors and controls in the analysis of distributed systems: A. El Jai and A. J. Pritchard.,1989,25,Automatica,6,db/journals/automatica/automatica25.html#Franke89,https://doi.org/10.1016/0005-1098(89)90066-6 +Bin Zhou 0001,Discrete-time I∞ and I2 norm vanishment and low gain feedback with their applications in constrained control.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#ZhouLL13,https://doi.org/10.1016/j.automatica.2012.09.023 +Yuchun Li,A finite-time convergent observer with robustness to piecewise-constant measurement noise.,2015,57,Automatica,,db/journals/automatica/automatica57.html#LiS15,https://doi.org/10.1016/j.automatica.2015.04.013 +Sigeru Omatu,Estimation of nitrogen dioxide concentrations in the vicinity of a roadway by optimal filtering theory.,1988,24,Automatica,1,db/journals/automatica/automatica24.html#OmatuSSS88,https://doi.org/10.1016/0005-1098(88)90004-0 +David J. Hill 0001,Stability results for nonlinear feedback systems.,1977,13,Automatica,4,db/journals/automatica/automatica13.html#HillM77,https://doi.org/10.1016/0005-1098(77)90020-6 +Guang-Hong Yang,Reliable Hinfinity controller design for linear systems.,2001,37,Automatica,5,db/journals/automatica/automatica37.html#YangWS01,https://doi.org/10.1016/S0005-1098(01)00007-3 +Steinar Saelid,Observability theorems for some linear hyperbolic systems.,1978,14,Automatica,5,db/journals/automatica/automatica14.html#Saelid78,https://doi.org/10.1016/0005-1098(78)90009-2 +Basil Kouvaritakis,A priori stability conditions for an arbitrary number of unstable poles.,1996,32,Automatica,10,db/journals/automatica/automatica32.html#KouvaritakisGR96,https://doi.org/10.1016/0005-1098(96)00093-3 +Kyriakos G. Vamvoudakis,Non-zero sum Nash Q-learning for unknown deterministic continuous-time linear systems.,2015,61,Automatica,,db/journals/automatica/automatica61.html#Vamvoudakis15,https://doi.org/10.1016/j.automatica.2015.08.017 +Frédéric Mazenc,Tracking trajectories of the cart-pendulum system.,2003,39,Automatica,4,db/journals/automatica/automatica39.html#MazencB03,https://doi.org/10.1016/S0005-1098(02)00279-0 +George S. Axelby,Technical communiques.,1979,15,Automatica,4,db/journals/automatica/automatica15.html#Axelby79b,https://doi.org/10.1016/0005-1098(79)90012-8 +Jose Alvarez-Ramirez,Semiglobal stability of saturated linear PID control for robot manipulators.,2003,39,Automatica,6,db/journals/automatica/automatica39.html#Alvarez-RamirezKC03,https://doi.org/10.1016/S0005-1098(03)00035-9 +Hiroshi Shinozaki,Robust stability analysis of linear time-delay systems by Lambert W function: Some extreme point results.,2006,42,Automatica,10,db/journals/automatica/automatica42.html#ShinozakiM06,https://doi.org/10.1016/j.automatica.2006.05.008 +J. S. Luo,Stability robustness of the continuous-time LQG system under plant perturbation and noise uncertainty.,1993,29,Automatica,2,db/journals/automatica/automatica29.html#LuoJ93,https://doi.org/10.1016/0005-1098(93)90143-H +Maarten Schoukens,Identification of block-oriented nonlinear systems starting from linear approximations: A survey.,2017,85,Automatica,,db/journals/automatica/automatica85.html#SchoukensT17,https://doi.org/10.1016/j.automatica.2017.06.044 +Mazen Alamir,Swing-up and stabilization of a Twin-Pendulum under state and control constraints by a fast NMPC scheme.,2008,44,Automatica,5,db/journals/automatica/automatica44.html#AlamirM08,https://doi.org/10.1016/j.automatica.2007.09.020 +Bruce H. Krogh,Synthesis of feedback control logic for discrete manufacturing systems.,1991,27,Automatica,4,db/journals/automatica/automatica27.html#KroghH91,https://doi.org/10.1016/0005-1098(91)90055-7 +Xingwen Liu,Delay-dependent robust stability of uncertain fuzzy large-scale systems with time-varying delays.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#LiuZ08,https://doi.org/10.1016/j.automatica.2007.05.001 +Sergio Galeani,On a performance-robustness trade-off intrinsic to the natural anti-windup problem.,2006,42,Automatica,11,db/journals/automatica/automatica42.html#GaleaniT06,https://doi.org/10.1016/j.automatica.2006.05.027 +Chandrasekhar Kambhampati,A stable one-step-ahead predictive control of non-linear systems.,2000,36,Automatica,4,db/journals/automatica/automatica36.html#KambhampatiMW00,https://doi.org/10.1016/S0005-1098(99)00173-9 +Giuseppe C. Calafiore,Stochastic model predictive control of LPV systems via scenario optimization.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#CalafioreF13,https://doi.org/10.1016/j.automatica.2013.02.060 +Carlos E. de Souza,Robust filtering for uncertain linear discrete-time descriptor systems.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#SouzaBF08,https://doi.org/10.1016/j.automatica.2007.07.006 +José B. Mare,Symmetry between constrained reference tracking and constrained state estimation.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#MareD09,https://doi.org/10.1016/j.automatica.2008.06.020 +Abbas Emami-Naeini,Computation of zeros of linear multivariable systems.,1982,18,Automatica,4,db/journals/automatica/automatica18.html#Emami-NaeiniD82,https://doi.org/10.1016/0005-1098(82)90070-X +Daniel E. Quevedo,On Kalman filtering over fading wireless channels with controlled transmission powers.,2012,48,Automatica,7,db/journals/automatica/automatica48.html#QuevedoALD12,https://doi.org/10.1016/j.automatica.2012.03.025 +Kurt V. Waller,Distillation columns: A. Eli Nisenfeld and Richard C. Seemann.,1982,18,Automatica,6,db/journals/automatica/automatica18.html#Waller82,https://doi.org/10.1016/0005-1098(82)90064-4 +Alessandro Casavola,Robust fault detection of uncertain linear systems via quasi-LMIs.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#CasavolaFF08,https://doi.org/10.1016/j.automatica.2007.05.010 +Johan Schoukens,Frequency response function measurements in the presence of nonlinear distortions.,2001,37,Automatica,6,db/journals/automatica/automatica37.html#SchoukensPRD01,https://doi.org/10.1016/S0005-1098(01)00037-1 +Serkan T. Impram,A note on absolute stability of uncertain systems.,2001,37,Automatica,4,db/journals/automatica/automatica37.html#ImpramM01,https://doi.org/10.1016/S0005-1098(00)00194-1 +Iasson Karafyllis,Sampled-data boundary feedback control of 1-D parabolic PDEs.,2018,87,Automatica,,db/journals/automatica/automatica87.html#KarafyllisK18,https://doi.org/10.1016/j.automatica.2017.10.006 +Cecília F. Morais,H∞ state feedback control for MJLS with uncertain probabilities.,2015,52,Automatica,,db/journals/automatica/automatica52.html#MoraisBOP15,https://doi.org/10.1016/j.automatica.2014.12.013 +Hoang Duong Tuan,On Robust and H∞ Controls for a Class of Linear and Bilinear Systems with Nonlinear Uncertainty.,1997,33,Automatica,7,db/journals/automatica/automatica33.html#TuanH97,https://doi.org/10.1016/S0005-1098(97)00027-7 +Jianhua Pan,Computer-aided design of control systems using nonparametric models.,1991,27,Automatica,5,db/journals/automatica/automatica27.html#PanV91,https://doi.org/10.1016/0005-1098(91)90042-Z +Jialu Du,Robust dynamic positioning of ships with disturbances under input saturation.,2016,73,Automatica,,db/journals/automatica/automatica73.html#DuHKS16,https://doi.org/10.1016/j.automatica.2016.06.020 +Michele Tucci,Stable current sharing and voltage balancing in DC microgrids: A consensus-based secondary control layer.,2018,95,Automatica,,db/journals/automatica/automatica95.html#TucciMGF18,https://doi.org/10.1016/j.automatica.2018.04.017 +Andong Liu,New results on stabilization of networked control systems with packet disordering.,2015,52,Automatica,,db/journals/automatica/automatica52.html#LiuZYLC15,https://doi.org/10.1016/j.automatica.2014.12.006 +Yu Ru,Coverage control in constant flow environments based on a mixed energy-time metric.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#RuM13,https://doi.org/10.1016/j.automatica.2013.05.024 +J. J. Rodden,Closed-loop magnetic control of a spin-stabilized satellite.,1984,20,Automatica,6,db/journals/automatica/automatica20.html#Rodden84,https://doi.org/10.1016/0005-1098(84)90082-7 +Shmuel Yonatan Hayoun,On guaranteeing point capture in linear n-on-1 endgame interception engagements with bounded controls.,2017,85,Automatica,,db/journals/automatica/automatica85.html#HayounS17,https://doi.org/10.1016/j.automatica.2017.07.054 +N. A. Kheir,Control systems engineering education.,1996,32,Automatica,2,db/journals/automatica/automatica32.html#KheirAACFMR96,https://doi.org/10.1016/0005-1098(96)85546-4 +Frédéric Mazenc,Tracking control and robustness analysis for a nonlinear model of human heart rate during exercise.,2011,47,Automatica,5,db/journals/automatica/automatica47.html#MazencMQ11,https://doi.org/10.1016/j.automatica.2011.01.079 +Steffi Knorn,Optimal energy allocation for linear control with packet loss under energy harvesting constraints.,2017,77,Automatica,,db/journals/automatica/automatica77.html#KnornD17,https://doi.org/10.1016/j.automatica.2016.11.036 +Jian-Xin Xu 0001,Learning variable structure control approaches for repeatable tracking control tasks.,2001,37,Automatica,7,db/journals/automatica/automatica37.html#XuC01,https://doi.org/10.1016/S0005-1098(01)00049-8 +Enbin Song,Optimal Kalman filtering fusion with cross-correlated sensor noises.,2007,43,Automatica,8,db/journals/automatica/automatica43.html#SongZZY07,https://doi.org/10.1016/j.automatica.2007.01.010 +Stefano Liuzzo,A global adaptive learning control for robotic manipulators.,2008,44,Automatica,5,db/journals/automatica/automatica44.html#LiuzzoT08,https://doi.org/10.1016/j.automatica.2007.10.025 +Phil Howlett,Optimal strategies for the control of a train.,1996,32,Automatica,4,db/journals/automatica/automatica32.html#Howlett96,https://doi.org/10.1016/0005-1098(95)00184-0 +Klaus Stark,Modal control of a nuclear power reactor.,1976,12,Automatica,6,db/journals/automatica/automatica12.html#Stark76,https://doi.org/10.1016/0005-1098(76)90042-X +F. T. Man,On the optimal linear regulator problem with control energy constraint.,1969,5,Automatica,6,db/journals/automatica/automatica5.html#Man69,https://doi.org/10.1016/0005-1098(69)90098-3 +Moshe Idan,An estimation approach for linear stochastic systems based on characteristic functions.,2017,78,Automatica,,db/journals/automatica/automatica78.html#IdanS17,https://doi.org/10.1016/j.automatica.2016.12.038 +Wei Wang 0016,Adaptive actuator failure compensation control of uncertain nonlinear systems with guaranteed transient performance.,2010,46,Automatica,12,db/journals/automatica/automatica46.html#WangW10a,https://doi.org/10.1016/j.automatica.2010.09.006 +Ronald G. Sea,Steady state analysis of non-linear systems and multiple input describing functions (M.I.D.F.).,1969,5,Automatica,6,db/journals/automatica/automatica5.html#SeaV69,https://doi.org/10.1016/0005-1098(69)90089-2 +Benoîte de Saporta,Optimal strategies for impulse control of piecewise deterministic Markov processes.,2017,77,Automatica,,db/journals/automatica/automatica77.html#SaportaDG17,https://doi.org/10.1016/j.automatica.2016.11.039 +Peilin Fu,Generalized eigenvalue-based stability tests for 2-D linear systems: Necessary and sufficient conditions.,2006,42,Automatica,9,db/journals/automatica/automatica42.html#FuCN06,https://doi.org/10.1016/j.automatica.2006.04.015 +D. Bünz,CATPAC - An interactive software package for control system design.,1985,21,Automatica,2,db/journals/automatica/automatica21.html#BunzG85,https://doi.org/10.1016/0005-1098(85)90116-5 +Li-Chen Fu,A new robust MRAC using variable structure design for relative degree two plants.,1992,28,Automatica,5,db/journals/automatica/automatica28.html#Fu92,https://doi.org/10.1016/0005-1098(92)90144-5 +Bomin Jiang,Optimal path planning and sensor placement for mobile target detection.,2015,60,Automatica,,db/journals/automatica/automatica60.html#JiangBAD15,https://doi.org/10.1016/j.automatica.2015.07.007 +Jian Liu,An LMI approach to minimum sensitivity analysis with application to fault detection.,2005,41,Automatica,11,db/journals/automatica/automatica41.html#LiuWY05,https://doi.org/10.1016/j.automatica.2005.06.005 +James J. Buckley,Universal fuzzy controllers.,1992,28,Automatica,6,db/journals/automatica/automatica28.html#Buckley92,https://doi.org/10.1016/0005-1098(92)90068-Q +Rik Pintelon,Frequency domain maximum likelihood estimation of linear dynamic errors-in-variables models.,2007,43,Automatica,4,db/journals/automatica/automatica43.html#PintelonS07,https://doi.org/10.1016/j.automatica.2006.10.004 +Patrick C. Parks,Results of some studies of p.c.m. network synchronisation systems.,1969,5,Automatica,4,db/journals/automatica/automatica5.html#ParksM69,https://doi.org/10.1016/0005-1098(69)90107-1 +Per Hägg,The transient impulse response modeling method for non-parametric system identification.,2016,68,Automatica,,db/journals/automatica/automatica68.html#HaggSGH16,https://doi.org/10.1016/j.automatica.2016.01.062 +Chih-Lyang Hwang,Robust discrete variable structure control with finite-time approach to switching surface.,2002,38,Automatica,1,db/journals/automatica/automatica38.html#Hwang02,https://doi.org/10.1016/S0005-1098(01)00188-1 +Rajendra Kumar,State inverse and decorrelated state stochastic approximation.,1980,16,Automatica,3,db/journals/automatica/automatica16.html#KumarM80,https://doi.org/10.1016/0005-1098(80)90038-2 +Alessandro Pisano,Output-feedback control of an underwater vehicle prototype by higher-order sliding modes.,2004,40,Automatica,9,db/journals/automatica/automatica40.html#PisanoU04,https://doi.org/10.1016/j.automatica.2004.03.016 +Tor Arne Johansen,Identification of non-linear system structure and parameters using regime decomposition.,1995,31,Automatica,2,db/journals/automatica/automatica31.html#JohansenF95,https://doi.org/10.1016/0005-1098(94)00096-2 +Lisandro De Nicolo,Ideal switched-model dynamic stability conditions for semi-quasi-Z-source inverters.,2016,63,Automatica,,db/journals/automatica/automatica63.html#NicoloHM16,https://doi.org/10.1016/j.automatica.2015.10.031 +Takuya Sogo,On the equivalence between stable inversion for nonminimum phase systems and reciprocal transfer functions defined by the two-sided Laplace transform.,2010,46,Automatica,1,db/journals/automatica/automatica46.html#Sogo10,https://doi.org/10.1016/j.automatica.2009.10.008 +Hoang Duong Tuan,On linear robust H controllers for a class of nonlinear singular perturbed systems.,1999,35,Automatica,4,db/journals/automatica/automatica35.html#TuanH99,https://doi.org/10.1016/S0005-1098(98)00217-9 +Y. J. Lootsma,Uniqueness of solutions of linear relay systems.,1999,35,Automatica,3,db/journals/automatica/automatica35.html#LootsmaSC99,https://doi.org/10.1016/S0005-1098(98)90177-7 +Naoki Hayashi,GTS-based communication task scheduling for quantized output consensus over IEEE 802.15.4 wireless networks.,2015,55,Automatica,,db/journals/automatica/automatica55.html#HayashiT15,https://doi.org/10.1016/j.automatica.2015.02.028 +Rogelio Luck,An observer-based compensator for distributed delays.,1990,26,Automatica,5,db/journals/automatica/automatica26.html#LuckR90,https://doi.org/10.1016/0005-1098(90)90007-5 +Kenji Fujimoto,A parametrization for closed-loop identification of nonlinear systems based on differentially coprime kernel representations.,2001,37,Automatica,12,db/journals/automatica/automatica37.html#FujimotoAB01,https://doi.org/10.1016/S0005-1098(01)00151-0 +Sophie Tarbouriech,Stability analysis for linear systems with input backlash through sufficient LMI conditions.,2010,46,Automatica,11,db/journals/automatica/automatica46.html#TarbouriechPQ10,https://doi.org/10.1016/j.automatica.2010.07.005 +J. Prock,A new technique for fault detection using Petri nets.,1991,27,Automatica,2,db/journals/automatica/automatica27.html#Prock91,https://doi.org/10.1016/0005-1098(91)90074-C +John N. Maidens,Lagrangian methods for approximating the viability kernel in high-dimensional systems.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#MaidensKMOD13,https://doi.org/10.1016/j.automatica.2013.03.020 +Reza Haghighi,Multi-group coordination control for robot swarms.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#HaghighiC12,https://doi.org/10.1016/j.automatica.2012.03.028 +Mario A. Rotea,H2-optimal control with an H∞-constraint The state feedback case.,1991,27,Automatica,2,db/journals/automatica/automatica27.html#RoteaK91,https://doi.org/10.1016/0005-1098(91)90079-H +Rafael Vazquez,Magnetohydrodynamic state estimation with boundary sensors.,2008,44,Automatica,10,db/journals/automatica/automatica44.html#VazquezSK08,https://doi.org/10.1016/j.automatica.2008.02.022 +Dany Abou Jaoude,Balanced truncation model reduction of nonstationary systems interconnected over arbitrary graphs.,2017,85,Automatica,,db/journals/automatica/automatica85.html#JaoudeF17,https://doi.org/10.1016/j.automatica.2017.07.031 +Filippo Cacace,The observer follower filter: A new approach to nonlinear suboptimal filtering.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#CacaceGP13,https://doi.org/10.1016/j.automatica.2012.11.023 +Giorgio Battistelli,Adaptive memory in multi-model switching control of uncertain plants.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#BattistelliMT14,https://doi.org/10.1016/j.automatica.2013.12.002 +Yonggui Kao,A sliding mode approach to H∞ non-fragile observer-based control design for uncertain Markovian neutral-type stochastic systems.,2015,52,Automatica,,db/journals/automatica/automatica52.html#KaoXWK15,https://doi.org/10.1016/j.automatica.2014.10.095 +Panagiotis D. Christofides,Robust output feedback control of nonlinear singularly perturbed systems.,2000,36,Automatica,1,db/journals/automatica/automatica36.html#Christofides00,https://doi.org/10.1016/S0005-1098(99)00105-3 +Lennart Ljung,Issues in sampling and estimating continuous-time models with stochastic disturbances.,2010,46,Automatica,5,db/journals/automatica/automatica46.html#LjungW10,https://doi.org/10.1016/j.automatica.2010.02.011 +Xiaobo Li,Parametrization of optimal fault detection filters.,2015,56,Automatica,,db/journals/automatica/automatica56.html#LiLJ15,https://doi.org/10.1016/j.automatica.2014.12.043 +øyvind Nistad Stamnes,A constructive speed observer design for general Euler-Lagrange systems.,2011,47,Automatica,10,db/journals/automatica/automatica47.html#StamnesAK11a,https://doi.org/10.1016/j.automatica.2011.08.006 +John Jairo Martínez 0001,Improving playability of Blu-ray disc drives by using adaptive suppression of repetitive disturbances.,2012,48,Automatica,4,db/journals/automatica/automatica48.html#MartinezA12,https://doi.org/10.1016/j.automatica.2012.01.016 +Vincent Andrieu,A unifying point of view on output feedback designs for global asymptotic stabilization.,2009,45,Automatica,8,db/journals/automatica/automatica45.html#AndrieuP09,https://doi.org/10.1016/j.automatica.2009.04.015 +Karina A. Barbosa,Admissibility analysis of discrete linear time-varying descriptor systems.,2018,91,Automatica,,db/journals/automatica/automatica91.html#BarbosaSC18,https://doi.org/10.1016/j.automatica.2018.01.033 +V. R. Sule,Directional sensitivity tradeoffs in multivariable feedback systems.,1991,27,Automatica,5,db/journals/automatica/automatica27.html#SuleA91,https://doi.org/10.1016/0005-1098(91)90043-2 +Antoine Chaillet,Uniform semiglobal practical asymptotic stability for non-autonomous cascaded systems and applications.,2008,44,Automatica,2,db/journals/automatica/automatica44.html#ChailletL08,https://doi.org/10.1016/j.automatica.2007.05.019 +Karl Johan åström,Encyclopedia of artificial intelligence. Volumes 1 and 2: Stuart C. Shapiro (Editor-in-Chief).,1990,26,Automatica,3,db/journals/automatica/automatica26.html#Astrom90,https://doi.org/10.1016/0005-1098(90)90041-F +Erik Frisk,Sensor placement for fault isolation in linear differential-algebraic systems.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#FriskKA09,https://doi.org/10.1016/j.automatica.2008.08.013 +Ivan Markovsky,Linear dynamic filtering with noisy input and output.,2005,41,Automatica,1,db/journals/automatica/automatica41.html#MarkovskyM05,https://doi.org/10.1016/j.automatica.2004.08.014 +Edward J. Davison,A design technique for the incomplete state feedback problem in multivariable control systems.,1969,5,Automatica,3,db/journals/automatica/automatica5.html#DavisonG69,https://doi.org/10.1016/0005-1098(69)90075-2 +Domitilla Del Vecchio,Discrete state estimators for systems on a lattice.,2006,42,Automatica,2,db/journals/automatica/automatica42.html#VecchioMK06,https://doi.org/10.1016/j.automatica.2005.10.006 +Hassan Modir,A dynamic state estimator for power system dynamic security assessment.,1984,20,Automatica,2,db/journals/automatica/automatica20.html#ModirS84,https://doi.org/10.1016/0005-1098(84)90024-4 +Dario Piga,LPV system identification under noise corrupted scheduling and output signal observations.,2015,53,Automatica,,db/journals/automatica/automatica53.html#PigaCTL15,https://doi.org/10.1016/j.automatica.2015.01.018 +Zuguang Gao,Stability structures of conjunctive Boolean networks.,2018,89,Automatica,,db/journals/automatica/automatica89.html#GaoCB18,https://doi.org/10.1016/j.automatica.2017.11.017 +Ai-Guo Wu,An iterative algorithm for discrete periodic Lyapunov matrix equations.,2018,87,Automatica,,db/journals/automatica/automatica87.html#WuZZ18,https://doi.org/10.1016/j.automatica.2017.06.012 +A. A. Safavi,Comments on 'nonlinear black box modeling in system identification: A unified overview'.,1997,33,Automatica,6,db/journals/automatica/automatica33.html#SafaviR97,https://doi.org/10.1016/S0005-1098(96)00219-1 +L. Billmann,Leak detection methods for pipelines.,1987,23,Automatica,3,db/journals/automatica/automatica23.html#BillmannI87,https://doi.org/10.1016/0005-1098(87)90011-2 +Tomohisa Hayakawa,Adaptive quantized control for linear uncertain discrete-time systems.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#HayakawaIT09,https://doi.org/10.1016/j.automatica.2008.07.005 +Daisuke Tsubakino,Exact predictor feedbacks for multi-input LTI systems with distinct input delays.,2016,71,Automatica,,db/journals/automatica/automatica71.html#TsubakinoKO16,https://doi.org/10.1016/j.automatica.2016.04.047 +Antonio Ferramosca,MPC for tracking with optimal closed-loop performance.,2009,45,Automatica,8,db/journals/automatica/automatica45.html#FerramoscaLAAC09,https://doi.org/10.1016/j.automatica.2009.04.007 +Carlo Novara,Direct feedback control design for nonlinear systems.,2013,49,Automatica,4,db/journals/automatica/automatica49.html#NovaraFM13,https://doi.org/10.1016/j.automatica.2013.01.002 +Franck Plestan,Robust output feedback sampling control based on second-order sliding mode.,2010,46,Automatica,6,db/journals/automatica/automatica46.html#PlestanMGC10,https://doi.org/10.1016/j.automatica.2010.03.004 +He Bai,Two-time-scale adaptive internal model designs for motion coordination.,2016,73,Automatica,,db/journals/automatica/automatica73.html#Bai16,https://doi.org/10.1016/j.automatica.2016.06.029 +Pieter Eykhoff,Process parameter and state estimation.,1968,4,Automatica,4,db/journals/automatica/automatica4.html#Eykhoff68,https://doi.org/10.1016/0005-1098(68)90015-0 +Daoyi Dong,Sliding mode control of two-level quantum systems.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#DongP12,https://doi.org/10.1016/j.automatica.2012.02.003 +Fangpo He,Design of an adaptive bilinear power system stabilizer.,1997,33,Automatica,4,db/journals/automatica/automatica33.html#HeG97,https://doi.org/10.1016/S0005-1098(96)00191-4 +John Lataire,Transfer function and transient estimation by Gaussian process regression in the frequency domain.,2016,72,Automatica,,db/journals/automatica/automatica72.html#LataireC16,https://doi.org/10.1016/j.automatica.2016.06.009 +Sami El-Ferik,Neuro-adaptive cooperative tracking control of unknown higher-order affine nonlinear systems.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#El-FerikQL14,https://doi.org/10.1016/j.automatica.2013.12.033 +S. Kotsios,Finite input/output representative of a class of Volterra polynomial systems.,1997,33,Automatica,2,db/journals/automatica/automatica33.html#Kotsios97,https://doi.org/10.1016/S0005-1098(96)00178-1 +Feng Zhao,Adaptive simulation and control of variable-structure control systems in sliding regimes.,1996,32,Automatica,7,db/journals/automatica/automatica32.html#ZhaoU96,https://doi.org/10.1016/0005-1098(96)00036-2 +Fangfei Li,Controllability of Boolean control networks with time delays in states.,2011,47,Automatica,3,db/journals/automatica/automatica47.html#LiS11,https://doi.org/10.1016/j.automatica.2011.01.040 +Rachit Mehra,Control of a class of underactuated mechanical systems obviating matching conditions.,2017,86,Automatica,,db/journals/automatica/automatica86.html#MehraSKS17,https://doi.org/10.1016/j.automatica.2017.07.033 +Guido O. Guardabassi,1976 IFAC symposium on large scale systems theory and applications.,1977,13,Automatica,4,db/journals/automatica/automatica13.html#GuardabassiL77,https://doi.org/10.1016/0005-1098(77)90031-0 +Fangfei Li,Set stabilization for switched Boolean control networks.,2017,78,Automatica,,db/journals/automatica/automatica78.html#LiT17,https://doi.org/10.1016/j.automatica.2016.12.007 +Stefano Di Cairano,Event-driven optimization-based control of hybrid systems with integral continuous-time dynamics.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#CairanoBJ09,https://doi.org/10.1016/j.automatica.2008.12.011 +Laurent Vanbeylen,Blind maximum likelihood identification of Hammerstein systems.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#VanbeylenPS08,https://doi.org/10.1016/j.automatica.2008.05.013 +Maarten Steinbuch,Repetitive control for systems with uncertain period-time.,2002,38,Automatica,12,db/journals/automatica/automatica38.html#Steinbuch02,https://doi.org/10.1016/S0005-1098(02)00134-6 +Hiroshi Ito 0001,State-dependent scaling design for a unified approach to robust backstepping.,2001,37,Automatica,6,db/journals/automatica/automatica37.html#ItoF01,https://doi.org/10.1016/S0005-1098(01)00025-5 +Adrian Gambier,Multivariable generalized state-space receding horizon control in a real-time environment.,1999,35,Automatica,11,db/journals/automatica/automatica35.html#GambierU99,https://doi.org/10.1016/S0005-1098(99)00095-3 +S. J. Williams,Applied dynamic and CAD of manipulation robots : M. Vukobratovic and V. Potkonjak.,1986,22,Automatica,6,db/journals/automatica/automatica22.html#Williams86,https://doi.org/10.1016/0005-1098(86)90020-8 +H. Ito,New characterization and solution of input-to-state stabilization: a state-dependent scaling approach.,2001,37,Automatica,10,db/journals/automatica/automatica37.html#Ito01,https://doi.org/10.1016/S0005-1098(01)00120-0 +Willem L. De Koning,Stationary optimal control of stochastically sampled continuous-time systems.,1988,24,Automatica,1,db/journals/automatica/automatica24.html#Koning88,https://doi.org/10.1016/0005-1098(88)90009-X +P. M. Mäkilä,On model and filter sensitivity.,2000,36,Automatica,12,db/journals/automatica/automatica36.html#MakilaJ00,https://doi.org/10.1016/S0005-1098(00)00091-1 +A. P. Loh,Auto-tuning of phase lead/lag compensators.,2004,40,Automatica,3,db/journals/automatica/automatica40.html#LohCT04,https://doi.org/10.1016/j.automatica.2003.10.009 +Jung-Hoon Lee,Highly robust position control of BLDDSM using an improved integral variable structure systems.,2006,42,Automatica,6,db/journals/automatica/automatica42.html#Lee06,https://doi.org/10.1016/j.automatica.2006.01.021 +Alan A. Desrochers,A model reduction technique for nonlinear systems.,1980,16,Automatica,3,db/journals/automatica/automatica16.html#DesrochersS80,https://doi.org/10.1016/0005-1098(80)90041-2 +Paul J. Goulart,Optimization over state feedback policies for robust control with constraints.,2006,42,Automatica,4,db/journals/automatica/automatica42.html#GoulartKM06,https://doi.org/10.1016/j.automatica.2005.08.023 +Chun Yin,Fractional-order sliding mode based extremum seeking control of a class of nonlinear systems.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#YinCZ14,https://doi.org/10.1016/j.automatica.2014.10.027 +Patrizio Colaneri,Convexity of the cost functional in an optimal control problem for a class of positive switched systems.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#ColaneriMCCB14,https://doi.org/10.1016/j.automatica.2014.02.025 +Mattia Zorzi,Sparse plus low rank network identification: A nonparametric approach.,2017,76,Automatica,,db/journals/automatica/automatica76.html#ZorziC17,https://doi.org/10.1016/j.automatica.2016.08.014 +Simone Baldi,Multi-model unfalsified adaptive switching supervisory control.,2010,46,Automatica,2,db/journals/automatica/automatica46.html#BaldiBMT10,https://doi.org/10.1016/j.automatica.2009.10.034 +Tryphon T. Georgiou,On the robust stabilizability of uncertain linear time-invariant plants using nonlinear time-varying controllers.,1987,23,Automatica,5,db/journals/automatica/automatica23.html#GeorgiouPK87,https://doi.org/10.1016/0005-1098(87)90057-4 +Shuyou Yu,Stability of finite horizon model predictive control with incremental input constraints.,2017,79,Automatica,,db/journals/automatica/automatica79.html#YuQXCH17,https://doi.org/10.1016/j.automatica.2017.01.040 +Rong Su,Maximally permissive coordinated distributed supervisory control of nondeterministic discrete-event systems.,2012,48,Automatica,7,db/journals/automatica/automatica48.html#SuSR12,https://doi.org/10.1016/j.automatica.2012.04.004 +Sei Zhen Khong,Multi-agent source seeking via discrete-time extremum seeking control.,2014,50,Automatica,9,db/journals/automatica/automatica50.html#KhongTMN14,https://doi.org/10.1016/j.automatica.2014.06.009 +Yu Feng,Robust stabilization subject to structured uncertainties and mean power constraint.,2018,92,Automatica,,db/journals/automatica/automatica92.html#FengCG18,https://doi.org/10.1016/j.automatica.2018.02.005 +Elena Panteley,Overcoming the detectability obstacle in certainty equivalence adaptive control.,2002,38,Automatica,7,db/journals/automatica/automatica38.html#PanteleyOM02,https://doi.org/10.1016/S0005-1098(01)00305-3 +X. Jin,Identification of switched Markov autoregressive eXogenous systems with hidden switching state.,2012,48,Automatica,2,db/journals/automatica/automatica48.html#JinH12,https://doi.org/10.1016/j.automatica.2011.08.054 +Magne Fjeld,Application of modern control concepts on a kraft paper machine.,1978,14,Automatica,2,db/journals/automatica/automatica14.html#Fjeld78,https://doi.org/10.1016/0005-1098(78)90015-8 +Wook Hyun Kwon,Fast algorithms for optimal FIR filter and smoother of discrete-time state-space models.,1994,30,Automatica,3,db/journals/automatica/automatica30.html#KwonLL94,https://doi.org/10.1016/0005-1098(94)90124-4 +Giorgio Battistelli,Data-driven communication for state estimation with sensor networks.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#BattistelliBC12,https://doi.org/10.1016/j.automatica.2012.02.028 +Alejandro Donaire,Dynamic positioning of marine craft using a port-Hamiltonian framework.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#DonaireP12,https://doi.org/10.1016/j.automatica.2012.02.022 +Maria Letizia Corradini,Linear unstable plants with saturating actuators: Robust stabilization by a time varying sliding surface.,2007,43,Automatica,1,db/journals/automatica/automatica43.html#CorradiniO07,https://doi.org/10.1016/j.automatica.2006.07.018 +Rabah W. Aldhaheri,Effect of unmodeled actuator dynamics on output feedback stabilization of nonlinear systems.,1996,32,Automatica,9,db/journals/automatica/automatica32.html#AldhaheriK96,https://doi.org/10.1016/0005-1098(96)00077-5 +Giorgio Valmorbida,Regional L2m gain analysis for linear saturating systems.,2017,76,Automatica,,db/journals/automatica/automatica76.html#ValmorbidaGZ17,https://doi.org/10.1016/j.automatica.2016.10.030 +Takayuki Ishizaki,Clustered model reduction of positive directed networks.,2015,59,Automatica,,db/journals/automatica/automatica59.html#IshizakiKGICA15,https://doi.org/10.1016/j.automatica.2015.06.027 +Min-Shin Chen,Exponential stabilization of a constrained bilinear system.,1998,34,Automatica,8,db/journals/automatica/automatica34.html#Chen98,https://doi.org/10.1016/S0005-1098(98)00037-5 +John E. Gough,On realization theory of quantum linear systems.,2015,59,Automatica,,db/journals/automatica/automatica59.html#GoughZ15,https://doi.org/10.1016/j.automatica.2015.06.023 +Duane T. McRuer,Human dynamics in man-machine systems.,1980,16,Automatica,3,db/journals/automatica/automatica16.html#McRuer80,https://doi.org/10.1016/0005-1098(80)90034-5 +Na Huang,Some necessary and sufficient conditions for consensus of second-order multi-agent systems with sampled position data.,2016,63,Automatica,,db/journals/automatica/automatica63.html#HuangDC16,https://doi.org/10.1016/j.automatica.2015.10.020 +Deyuan Meng,Learning to cooperate: Networks of formation agents with switching topologies.,2016,64,Automatica,,db/journals/automatica/automatica64.html#MengM16,https://doi.org/10.1016/j.automatica.2015.11.013 +Arunabha Bagchi,Parameter identification in tidal models with uncertain boundaries.,1994,30,Automatica,5,db/journals/automatica/automatica30.html#BagchiB94,https://doi.org/10.1016/0005-1098(94)90166-X +Wim Michiels,Continuous pole placement for delay equations.,2002,38,Automatica,5,db/journals/automatica/automatica38.html#MichielsEVR02,https://doi.org/10.1016/S0005-1098(01)00257-6 +Yonghong Tan,Nonlinear one-step-ahead control using neural networks: Control strategy and stability design.,1996,32,Automatica,12,db/journals/automatica/automatica32.html#TanC96,https://doi.org/10.1016/S0005-1098(96)80006-9 +El Kebir Boukas,Manufacturing systems with random breakdowns and deteriorating items.,2001,37,Automatica,3,db/journals/automatica/automatica37.html#BoukasL01,https://doi.org/10.1016/S0005-1098(00)00163-1 +Steven W. Su,Multi-realization of nonlinear systems.,2012,48,Automatica,7,db/journals/automatica/automatica48.html#SuACN12,https://doi.org/10.1016/j.automatica.2012.05.013 +Jean-François Camart,Fixed poles of simultaneous disturbance rejection and decoupling: a geometric approach.,2001,37,Automatica,2,db/journals/automatica/automatica37.html#CamartMM01,https://doi.org/10.1016/S0005-1098(00)00143-6 +Frédéric Mazenc,Stabilization of a chemostat model with Haldane growth functions and a delay in the measurements.,2010,46,Automatica,9,db/journals/automatica/automatica46.html#MazencM10,https://doi.org/10.1016/j.automatica.2010.06.012 +Bao-Zhu Guo,The strong stabilization of a one-dimensional wave equation by non-collocated dynamic boundary feedback control.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#GuoG09,https://doi.org/10.1016/j.automatica.2008.10.015 +Vladimir L. Kharitonov,Robust stability of nested polynomial families.,1996,32,Automatica,3,db/journals/automatica/automatica32.html#Kharitonov96,https://doi.org/10.1016/0005-1098(95)00143-3 +Bao-Zhu Guo,Arbitrary decay rate for two connected strings with joint anti-damping by boundary output feedback.,2010,46,Automatica,7,db/journals/automatica/automatica46.html#GuoJ10,https://doi.org/10.1016/j.automatica.2010.03.019 +Jacob Engwerda,Uniqueness conditions for the affine open-loop linear quadratic differential game.,2008,44,Automatica,2,db/journals/automatica/automatica44.html#Engwerda08,https://doi.org/10.1016/j.automatica.2007.06.006 +Chunming Xia,Detecting and isolating multiple plant-wide oscillations via spectral independent component analysis.,2005,41,Automatica,12,db/journals/automatica/automatica41.html#XiaHT05,https://doi.org/10.1016/j.automatica.2005.02.011 +Xiaoming Tang,Model predictive control of linear systems over networks with data quantizations and packet losses.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#TangD13,https://doi.org/10.1016/j.automatica.2013.02.033 +P. M. Mäkilä,Least-squares LTI approximation of nonlinear systems and quasistationarity analysis.,2004,40,Automatica,7,db/journals/automatica/automatica40.html#MakilaP04,https://doi.org/10.1016/j.automatica.2004.02.008 +Kai Zhang,Pricing American bond options using a penalty method.,2012,48,Automatica,3,db/journals/automatica/automatica48.html#ZhangW12,https://doi.org/10.1016/j.automatica.2012.01.009 +Francesco Borrelli,Dynamic programming for constrained optimal control of discrete-time linear hybrid systems.,2005,41,Automatica,10,db/journals/automatica/automatica41.html#BorrelliBBM05,https://doi.org/10.1016/j.automatica.2005.04.017 +VijaySekhar Chellaboina,Structured matrix norms for real and complex block-structured uncertainty.,1997,33,Automatica,5,db/journals/automatica/automatica33.html#ChellaboinaH97,https://doi.org/10.1016/S0005-1098(96)00259-2 +Magdi S. Mahmoud,Robustness of high-gain observer-based nonlinear controllers to unmodeled actuators and sensors.,2002,38,Automatica,2,db/journals/automatica/automatica38.html#MahmoudK02,https://doi.org/10.1016/S0005-1098(01)00253-9 +C. F. Long,Dynamic scheduling in the process industries by predictive control.,1969,5,Automatica,2,db/journals/automatica/automatica5.html#LongS69,https://doi.org/10.1016/0005-1098(69)90017-X +Masayuki Sato,Filter design for LPV systems using quadratically parameter-dependent Lyapunov functions.,2006,42,Automatica,11,db/journals/automatica/automatica42.html#Sato06,https://doi.org/10.1016/j.automatica.2006.07.001 +Sandor M. Veres,Predictive self-tuning control by parameter bounding and worst-case design.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#VeresN93,https://doi.org/10.1016/0005-1098(93)90096-C +Wencen Wu,Cooperative exploration of level surfaces of three dimensional scalar fields.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#WuZ11,https://doi.org/10.1016/j.automatica.2011.06.001 +Ljubomir T. Grujic,On robustness of Lurie systems with multiple non-linearities.,1987,23,Automatica,3,db/journals/automatica/automatica23.html#GrujicP87,https://doi.org/10.1016/0005-1098(87)90006-9 +Ronghao Zheng,Enclosing a target by nonholonomic mobile robots with bearing-only measurements.,2015,53,Automatica,,db/journals/automatica/automatica53.html#ZhengLS15,https://doi.org/10.1016/j.automatica.2015.01.014 +M. Guay,On the linearizability of nonisothermal continuous stirred-tank reactors.,2002,38,Automatica,2,db/journals/automatica/automatica38.html#Guay02,https://doi.org/10.1016/S0005-1098(01)00194-7 +Bo Hu,Stability analysis of digital feedback control systems with time-varying sampling periods.,2000,36,Automatica,6,db/journals/automatica/automatica36.html#HuM00,https://doi.org/10.1016/S0005-1098(99)00217-4 +Denis V. Efimov,Interval state observer for nonlinear time varying systems.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#EfimovRCZ13,https://doi.org/10.1016/j.automatica.2012.07.004 +Taek L. Song,The modified gain extended Kalman filter and parameter identification in linear systems.,1986,22,Automatica,1,db/journals/automatica/automatica22.html#SongS86,https://doi.org/10.1016/0005-1098(86)90105-6 +Chen Wang 0005,Controlling anonymous mobile agents with unidirectional locomotion to form formations on a circle.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#WangXC14,https://doi.org/10.1016/j.automatica.2014.02.036 +Daniel Tabak,Application of multiobjective optimization in aircraft control systems design.,1979,15,Automatica,5,db/journals/automatica/automatica15.html#TabakSGJ79,https://doi.org/10.1016/0005-1098(79)90007-4 +Jean Lévine,Quality control of binary distillation columns via nonlinear aggregated models.,1991,27,Automatica,3,db/journals/automatica/automatica27.html#LevineR91,https://doi.org/10.1016/0005-1098(91)90104-A +Jian Luo,Frequency domain iterative feedforward/feedback tuning for MIMO ANVC.,2010,46,Automatica,4,db/journals/automatica/automatica46.html#LuoV10,https://doi.org/10.1016/j.automatica.2010.01.025 +Richard Rebarber,Robustness and continuity of the spectrum for uncertain distributed parameter systems.,1995,31,Automatica,11,db/journals/automatica/automatica31.html#RebarberT95,https://doi.org/10.1016/0005-1098(95)00088-E +Jie Xiong,"Comments on ""Robust state estimation for uncertain discrete-time stochastic systems with missing measurements"" [Automatica 47 (2011) 1520-1524].",2014,50,Automatica,7,db/journals/automatica/automatica50.html#Xiong14,https://doi.org/10.1016/j.automatica.2014.04.024 +Feng Xiao 0002,Consensus protocols for discrete-time multi-agent systems with time-varying delays.,2008,44,Automatica,10,db/journals/automatica/automatica44.html#XiaoW08,https://doi.org/10.1016/j.automatica.2008.02.017 +Zhiqiang Zuo,Stabilization of linear systems with direct feedthrough term in the presence of output saturation.,2017,77,Automatica,,db/journals/automatica/automatica77.html#ZuoLW17,https://doi.org/10.1016/j.automatica.2016.11.045 +Steffi Knorn,Deviation bounds in multi agent systems described by undirected graphs.,2016,67,Automatica,,db/journals/automatica/automatica67.html#KnornA16,https://doi.org/10.1016/j.automatica.2016.01.038 +S. Balakrishna,Contributions of congruent pitch motion cue to human activity in manual control.,1983,19,Automatica,6,db/journals/automatica/automatica19.html#BalakrishnaRR83,https://doi.org/10.1016/0005-1098(83)90042-0 +Thomas B. Schön,System identification of nonlinear state-space models.,2011,47,Automatica,1,db/journals/automatica/automatica47.html#SchonWN11,https://doi.org/10.1016/j.automatica.2010.10.013 +Ana Sofia Rufino Ferreira,Stability certification of large scale stochastic systems using dissipativity.,2012,48,Automatica,11,db/journals/automatica/automatica48.html#FerreiraAS12,https://doi.org/10.1016/j.automatica.2012.07.001 +Leonid Mirkin,Mixed discrete/continuous specifications in sampled-data H2-optimal control.,1997,33,Automatica,11,db/journals/automatica/automatica33.html#MirkinP97,https://doi.org/10.1016/S0005-1098(97)00135-0 +Claudio De Persis,Supervisory control with state-dependent dwell-time logic and constraints.,2004,40,Automatica,2,db/journals/automatica/automatica40.html#PersisSM04,https://doi.org/10.1016/j.automatica.2003.09.005 +Nahid Masoudi,Emissions control policies under uncertainty and rational learning in a linear-state dynamic model.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#MasoudiZ14,https://doi.org/10.1016/j.automatica.2013.11.040 +Tor Steinar Schei,A finite-difference method for linearization in nonlinear estimation algorithms.,1997,33,Automatica,11,db/journals/automatica/automatica33.html#Schei97,https://doi.org/10.1016/S0005-1098(97)00127-1 +Ky Tran,Numerical methods for optimal harvesting strategies in random environments under partial observations.,2016,70,Automatica,,db/journals/automatica/automatica70.html#TranY16,https://doi.org/10.1016/j.automatica.2016.03.025 +George A. Rovithakis,Stable adaptive neuro-control design via Lyapunov function derivative estimation.,2001,37,Automatica,8,db/journals/automatica/automatica37.html#Rovithakis01,https://doi.org/10.1016/S0005-1098(01)00094-2 +Chen Wang,Constrained linear system with disturbance: Convergence under disturbance feedback.,2008,44,Automatica,10,db/journals/automatica/automatica44.html#WangOS08,https://doi.org/10.1016/j.automatica.2008.02.011 +David B. Doman,A fixed-order optimal control model of human operator response.,2000,36,Automatica,3,db/journals/automatica/automatica36.html#DomanA00,https://doi.org/10.1016/S0005-1098(99)00161-2 +Davide Liuzza,Distributed model based event-triggered control for synchronization of multi-agent systems.,2016,73,Automatica,,db/journals/automatica/automatica73.html#LiuzzaDBJ16,https://doi.org/10.1016/j.automatica.2016.06.011 +Ashish Cherukuri,Initialization-free distributed coordination for economic dispatch under varying loads and generator commitment.,2016,74,Automatica,,db/journals/automatica/automatica74.html#CherukuriC16,https://doi.org/10.1016/j.automatica.2016.07.003 +Asma Al-Tamimi,Model-free Q-learning designs for linear discrete-time zero-sum games with application to H-infinity control.,2007,43,Automatica,3,db/journals/automatica/automatica43.html#Al-TamimiLA07,https://doi.org/10.1016/j.automatica.2006.09.019 +Meriyan Eren-Oruklu,Adaptive system identification for estimating future glucose concentrations and hypoglycemia alarms.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#Eren-OrukluCRQ12,https://doi.org/10.1016/j.automatica.2012.05.076 +Chung-Yao Kao,Specialized fast algorithms for IQC feasibility and optimization problems.,2004,40,Automatica,2,db/journals/automatica/automatica40.html#KaoMJ04,https://doi.org/10.1016/j.automatica.2003.09.016 +Brian D. O. Anderson,IFAC symposium on system dynamics and automatic control in basic industries.,1969,5,Automatica,5,db/journals/automatica/automatica5.html#Anderson69,https://doi.org/10.1016/0005-1098(69)90022-3 +Haim Weiss,Recursive prediction error algorithms without a stability test.,1980,16,Automatica,6,db/journals/automatica/automatica16.html#WeissM80,https://doi.org/10.1016/0005-1098(80)90009-6 +Peter C. Young,An instrumental variable method for model order identification.,1980,16,Automatica,3,db/journals/automatica/automatica16.html#YoungJM80,https://doi.org/10.1016/0005-1098(80)90037-0 +Patrizio Colaneri,Root mean square gain of discrete-time switched linear systems under dwell time constraints.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#ColaneriBG11,https://doi.org/10.1016/j.automatica.2011.02.035 +Robert F. Stengel,Digital flight control design for a tandem-rotor helicopter.,1978,14,Automatica,4,db/journals/automatica/automatica14.html#StengelBB78,https://doi.org/10.1016/0005-1098(78)90030-4 +John Kormylo,Kalman smoothing via auxiliary outputs.,1991,27,Automatica,2,db/journals/automatica/automatica27.html#Kormylo91,https://doi.org/10.1016/0005-1098(91)90084-F +Miroslav Kárný,Estimation of the control period for self-tuners.,1991,27,Automatica,2,db/journals/automatica/automatica27.html#Karny91,https://doi.org/10.1016/0005-1098(91)90082-D +Matthias Albrecht Müller,Nonlinear moving horizon estimation in the presence of bounded disturbances.,2017,79,Automatica,,db/journals/automatica/automatica79.html#Muller17,https://doi.org/10.1016/j.automatica.2017.01.033 +Weiguo Xia,Analysis and applications of spectral properties of grounded Laplacian matrices for directed networks.,2017,80,Automatica,,db/journals/automatica/automatica80.html#XiaC17,https://doi.org/10.1016/j.automatica.2017.01.009 +Xu-Guang Li,Stability analysis of neutral systems with mixed delays.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#LiZCR08,https://doi.org/10.1016/j.automatica.2008.05.004 +Zhongsheng Hou,"Reply to ""Comments on 'Adaptive ILC for a class of discrete-time systems with iteration-varying trajectory and random initial condition""'.",2010,46,Automatica,3,db/journals/automatica/automatica46.html#HouCX10,https://doi.org/10.1016/j.automatica.2010.01.005 +Roberto Horowitz,Wiener-filter-based Minimum Variance Self-tuning Regulation.,1998,34,Automatica,5,db/journals/automatica/automatica34.html#HorowitzLM98,https://doi.org/10.1016/S0005-1098(97)00190-8 +R. Johansson,Binäre steuerungstechnik - Eine einführung : K. H. Fasol.,1991,27,Automatica,1,db/journals/automatica/automatica27.html#Johansson91,https://doi.org/10.1016/0005-1098(91)90026-X +Jacob Reiner,Flight control design using robust dynamic inversion and time-scale separation.,1996,32,Automatica,11,db/journals/automatica/automatica32.html#ReinerBG96,https://doi.org/10.1016/S0005-1098(96)00101-X +Haibo Du,Chattering-free discrete-time sliding mode control.,2016,68,Automatica,,db/journals/automatica/automatica68.html#DuYCL16,https://doi.org/10.1016/j.automatica.2016.01.047 +Seiichi Nakamori,Initial-value system for linear smoothing problems by covariance information.,1977,13,Automatica,6,db/journals/automatica/automatica13.html#NakamoriS77,https://doi.org/10.1016/0005-1098(77)90084-X +M. I. Gil',A new stability test for nonlinear nonautonomous systems.,2004,40,Automatica,12,db/journals/automatica/automatica40.html#Gil04,https://doi.org/10.1016/j.automatica.2004.07.007 +Dimitris Vafiadis,Disturbance and input-output decoupling of singular systems.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#VafiadisK12,https://doi.org/10.1016/j.automatica.2012.05.021 +Miroslaw Galicki,Finite-time trajectory tracking control in a task space of robotic manipulators.,2016,67,Automatica,,db/journals/automatica/automatica67.html#Galicki16,https://doi.org/10.1016/j.automatica.2016.01.025 +Boe-Shong Hong,LPV modeling and game-theoretic control synthesis to design energy-motion regulators for electric scooters.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#HongSC14,https://doi.org/10.1016/j.automatica.2014.02.018 +Xue-Bo Chen,Decomposition and decentralized control of systems with multi-overlapping structure.,2005,41,Automatica,10,db/journals/automatica/automatica41.html#ChenS05,https://doi.org/10.1016/j.automatica.2005.01.020 +Youfeng Su,Two consensus problems for discrete-time multi-agent systems with switching network topology.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#SuH12,https://doi.org/10.1016/j.automatica.2012.03.029 +Mazen Alamir,New path-generation based receding-horizon formulation for constrained stabilization of nonlinear systems.,2004,40,Automatica,4,db/journals/automatica/automatica40.html#Alamir04,https://doi.org/10.1016/j.automatica.2003.11.010 +B. Ross Barmish,Robustness of luenberger observers: Linear systems stabilized via non-linear control.,1986,22,Automatica,4,db/journals/automatica/automatica22.html#BarmishG86,https://doi.org/10.1016/0005-1098(86)90046-4 +Robert F. Stengel,Equilibrium response of flight control systems.,1982,18,Automatica,3,db/journals/automatica/automatica18.html#Stengel82,https://doi.org/10.1016/0005-1098(82)90095-4 +Zoran Gajic,Comments on the review of the book Modern Control System Engineering.,2001,37,Automatica,1,db/journals/automatica/automatica37.html#GajicL01,https://doi.org/10.1016/S0005-1098(00)00135-7 +Ting Hou,Spectral tests for observability and detectability of periodic Markov jump systems with nonhomogeneous Markov chain.,2016,63,Automatica,,db/journals/automatica/automatica63.html#HouMZ16,https://doi.org/10.1016/j.automatica.2015.10.004 +Hanyong Shao,Improved delay-dependent stability criteria for systems with a delay varying in a range.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#Shao08,https://doi.org/10.1016/j.automatica.2008.09.003 +Greg Foderaro,Distributed optimal control for multi-agent trajectory optimization.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#FoderaroFW14,https://doi.org/10.1016/j.automatica.2013.09.014 +Marcos G. Todorov,Detector-based H∞ results for discrete-time Markov jump linear systems with partial observations.,2018,91,Automatica,,db/journals/automatica/automatica91.html#TodorovFC18,https://doi.org/10.1016/j.automatica.2018.01.034 +Ron J. Patton,Design of Fault Detection and Isolation Observers: A Matrix Pencil Approach.,1998,34,Automatica,9,db/journals/automatica/automatica34.html#PattonH98,https://doi.org/10.1016/S0005-1098(98)00043-0 +Malur K. Sundareshan,Design of decentralized observation schemes for large-scale interconnected systems: Some new results.,1990,26,Automatica,4,db/journals/automatica/automatica26.html#SundareshanE90,https://doi.org/10.1016/0005-1098(90)90054-L +Anuradha M. Annaswamy,Adaptive control of continuous time systems with convex/concave parametrization.,1998,34,Automatica,1,db/journals/automatica/automatica34.html#AnnaswamySL98,https://doi.org/10.1016/S0005-1098(97)00159-3 +Wei-Yong Yan,The combined sensitivity and phase margin problem.,1992,28,Automatica,2,db/journals/automatica/automatica28.html#YanAB92,https://doi.org/10.1016/0005-1098(92)90129-4 +Takayuki Wada,A stopping rule for stochastic approximation.,2015,60,Automatica,,db/journals/automatica/automatica60.html#WadaF15,https://doi.org/10.1016/j.automatica.2015.06.029 +Carine Jauberthie,Optimal input design for parameter estimation in a bounded-error context for nonlinear dynamical systems.,2018,92,Automatica,,db/journals/automatica/automatica92.html#JauberthieDLC18,https://doi.org/10.1016/j.automatica.2018.03.003 +Fumitoshi Matsuno,Proportional derivative and strain (PDS) boundary feedback control of a flexible space structure with a closed-loop chain mechanism.,2002,38,Automatica,7,db/journals/automatica/automatica38.html#MatsunoOO02,https://doi.org/10.1016/S0005-1098(02)00013-4 +Simone Formentin,Direct learning of LPV controllers from data.,2016,65,Automatica,,db/journals/automatica/automatica65.html#FormentinPTS16,https://doi.org/10.1016/j.automatica.2015.11.031 +Alberto Bemporad,Optimal control of investments for quality of supply improvement in electrical energy distribution networks.,2006,42,Automatica,8,db/journals/automatica/automatica42.html#BemporadPP06,https://doi.org/10.1016/j.automatica.2006.02.008 +Yasumasa Fujisaki,Probabilistic design of LPV control systems.,2003,39,Automatica,8,db/journals/automatica/automatica39.html#FujisakiDT03,https://doi.org/10.1016/S0005-1098(03)00108-0 +Fouad Giri,Frequency identification of nonparametric Wiener systems containing backlash nonlinearities.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#GiriRRBC13,https://doi.org/10.1016/j.automatica.2012.08.043 +Hongwei Zhang,Adaptive cooperative tracking control of higher-order nonlinear systems with unknown dynamics.,2012,48,Automatica,7,db/journals/automatica/automatica48.html#ZhangL12,https://doi.org/10.1016/j.automatica.2012.05.008 +Adam Czornik,Set of possible values of maximal Lyapunov exponents of discrete time-varying linear system.,2008,44,Automatica,2,db/journals/automatica/automatica44.html#CzornikJ08,https://doi.org/10.1016/j.automatica.2007.06.028 +Dimitri P. Bertsekas,Multiplier methods: A survey.,1976,12,Automatica,2,db/journals/automatica/automatica12.html#Bertsekas76,https://doi.org/10.1016/0005-1098(76)90077-7 +Han Ho Choi,Memoryless stabilization of uncertain dynamic systems with time-varying delayed states and controls.,1995,31,Automatica,9,db/journals/automatica/automatica31.html#ChoiC95a,https://doi.org/10.1016/0005-1098(95)00043-V +Zong-Yao Sun,Adaptive disturbance attenuation for generalized high-order uncertain nonlinear systems.,2017,80,Automatica,,db/journals/automatica/automatica80.html#SunZW17,https://doi.org/10.1016/j.automatica.2017.02.036 +Tamer Basar,Concluding remarks on the 7th world congress.,1979,15,Automatica,3,db/journals/automatica/automatica15.html#Basar79,https://doi.org/10.1016/0005-1098(79)90061-X +Yih T. Tsay,Block decompositions and block modal controls of multivariable control systems.,1983,19,Automatica,1,db/journals/automatica/automatica19.html#TsayS83,https://doi.org/10.1016/0005-1098(83)90072-9 +Stephen Kahne,Automatic control systems: Benjamin C. Kuo.,1983,19,Automatica,2,db/journals/automatica/automatica19.html#Kahne83,https://doi.org/10.1016/0005-1098(83)90094-8 +Yongqiang Wang,Residual generation and evaluation of networked control systems subject to random packet dropout.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#WangYDWZ09,https://doi.org/10.1016/j.automatica.2009.06.031 +Yew-Wen Liang,Analysis of SDC matrices for successfully implementing the SDRE scheme.,2013,49,Automatica,10,db/journals/automatica/automatica49.html#LiangL13,https://doi.org/10.1016/j.automatica.2013.07.026 +Mansour Eslami,Stability robustness analysis of discrete-time systems with multiple large parameter variations.,1994,30,Automatica,2,db/journals/automatica/automatica30.html#Eslami94,https://doi.org/10.1016/0005-1098(94)90038-8 +Jing Yao,Passivity-based control and synchronization of general complex dynamical networks.,2009,45,Automatica,9,db/journals/automatica/automatica45.html#YaoGH09,https://doi.org/10.1016/j.automatica.2009.05.006 +Guy Albert Dumont,Laguerre-based adaptive control of pH in an industrial bleach plant extraction stage.,1990,26,Automatica,4,db/journals/automatica/automatica26.html#DumontZP90,https://doi.org/10.1016/0005-1098(90)90053-K +Yucai Zhu,Optimal closed-loop identification test design for internal model control.,2000,36,Automatica,8,db/journals/automatica/automatica36.html#ZhuB00,https://doi.org/10.1016/S0005-1098(00)00034-0 +Alberto Bemporad,On the stabilizing property of SIORHC.,1994,30,Automatica,12,db/journals/automatica/automatica30.html#BemporadCM94,https://doi.org/10.1016/0005-1098(94)90064-7 +Marco C. Campi,Interval predictor models: Identification and reliability.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#CampiCG09,https://doi.org/10.1016/j.automatica.2008.09.004 +Janos J. Gertler,Generating directional residuals with dynamic parity relations.,1995,31,Automatica,4,db/journals/automatica/automatica31.html#GertlerM95,https://doi.org/10.1016/0005-1098(95)98494-Q +A. V. Rao,Dichotomic basis approach to solving hyper-sensitive optimal control problems.,1999,35,Automatica,4,db/journals/automatica/automatica35.html#RaoM99,https://doi.org/10.1016/S0005-1098(98)00161-7 +Liuping Wang,Real-time estimation of process frequency response and step response from relay feedback experiments.,1999,35,Automatica,8,db/journals/automatica/automatica35.html#WangDC99,https://doi.org/10.1016/S0005-1098(99)00053-9 +Dominicus P. Borgers,Periodic event-triggered control of nonlinear systems using overapproximation techniques.,2018,94,Automatica,,db/journals/automatica/automatica94.html#BorgersPMTNH18,https://doi.org/10.1016/j.automatica.2018.04.019 +Yunjun Xu,Sequential virtual motion camouflage method for nonlinear constrained optimal trajectory control.,2012,48,Automatica,7,db/journals/automatica/automatica48.html#XuB12,https://doi.org/10.1016/j.automatica.2012.05.017 +Brian J. Odelson,A new autocovariance least-squares method for estimating noise covariances.,2006,42,Automatica,2,db/journals/automatica/automatica42.html#OdelsonRR06,https://doi.org/10.1016/j.automatica.2005.09.006 +Wei Lin 0001,discrete-time nonlinear H∞ control with measurement feedback.,1995,31,Automatica,3,db/journals/automatica/automatica31.html#LinB95b,https://doi.org/10.1016/0005-1098(94)00116-Z +Andrew Roberts,A new position regulation strategy for VTOL UAVs using IMU and GPS measurements.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#RobertsT13,https://doi.org/10.1016/j.automatica.2012.10.009 +Karl Johan åström,Automatic tuning of simple regulators with specifications on phase and amplitude margins.,1984,20,Automatica,5,db/journals/automatica/automatica20.html#AstromH84,https://doi.org/10.1016/0005-1098(84)90014-1 +Masao Ikeda,On decentrally stabilizable large-scale systems.,1980,16,Automatica,3,db/journals/automatica/automatica16.html#IkedaS80,https://doi.org/10.1016/0005-1098(80)90042-4 +Vito Cerone,Bounded error identification of Hammerstein systems through sparse polynomial optimization.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#CeronePR12,https://doi.org/10.1016/j.automatica.2012.06.078 +Peter J. Gawthrop,Identification of partially-known systems.,1992,28,Automatica,4,db/journals/automatica/automatica28.html#GawthropJM92,https://doi.org/10.1016/0005-1098(92)90046-I +Bayu Jayawardhana,Tracking and disturbance rejection for fully actuated mechanical systems.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#JayawardhanaW08,https://doi.org/10.1016/j.automatica.2008.03.030 +Jong-Koo Park,Dynamic observers for linear time-invariant systems.,2002,38,Automatica,6,db/journals/automatica/automatica38.html#ParkSC02,https://doi.org/10.1016/S0005-1098(01)00293-X +Dramane Traore,Adaptive interconnected observer-based backstepping control design for sensorless induction motor.,2012,48,Automatica,4,db/journals/automatica/automatica48.html#TraoreLG12,https://doi.org/10.1016/j.automatica.2012.01.018 +Hideki Sano,Low order stabilizing controllers for a class of distributed parameter systems.,2018,92,Automatica,,db/journals/automatica/automatica92.html#Sano18,https://doi.org/10.1016/j.automatica.2018.02.013 +Housheng Su,Adaptive second-order consensus of networked mobile agents with nonlinear dynamics.,2011,47,Automatica,2,db/journals/automatica/automatica47.html#SuCWL11,https://doi.org/10.1016/j.automatica.2010.10.050 +S. A. Jalali,Measurement of the parameters of all-pole transfer functions using shifted hermite modulating functions.,1992,28,Automatica,3,db/journals/automatica/automatica28.html#JalaliJM92,https://doi.org/10.1016/0005-1098(92)90186-J +Jun Yan,Incorporating state estimation into model predictive control and its application to network traffic control.,2005,41,Automatica,4,db/journals/automatica/automatica41.html#YanB05,https://doi.org/10.1016/j.automatica.2004.11.022 +W. Leonhard,Microcomputer control of high dynamic performance ac-drives - A survey.,1986,22,Automatica,1,db/journals/automatica/automatica22.html#Leonhard86,https://doi.org/10.1016/0005-1098(86)90101-9 +Knut Graichen,A new approach to inversion-based feedforward control design for nonlinear systems.,2005,41,Automatica,12,db/journals/automatica/automatica41.html#GraichenHZ05,https://doi.org/10.1016/j.automatica.2005.06.008 +Moisés E. Bonilla,Geometric minimization under external equivalence for implicit descriptions.,1995,31,Automatica,6,db/journals/automatica/automatica31.html#BonillaM95,https://doi.org/10.1016/0005-1098(94)00175-I +J. Lieslehto,An expert system for multivariable controller design.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#LieslehtoTK93,https://doi.org/10.1016/0005-1098(93)90099-F +Chong Li,Stochastic sensor scheduling via distributed convex optimization.,2015,58,Automatica,,db/journals/automatica/automatica58.html#LiE15,https://doi.org/10.1016/j.automatica.2015.05.014 +Pantelis Sopasakis,Stabilising model predictive control for discrete-time fractional-order systems.,2017,75,Automatica,,db/journals/automatica/automatica75.html#SopasakisS17,https://doi.org/10.1016/j.automatica.2016.09.014 +Marc van de Wal,A review of methods for input/output selection.,2001,37,Automatica,4,db/journals/automatica/automatica37.html#WalJ01,https://doi.org/10.1016/S0005-1098(00)00181-3 +Tingshu Hu,Null controllable region of LTI discrete-time systems with input saturation.,2002,38,Automatica,11,db/journals/automatica/automatica38.html#HuMQ02,https://doi.org/10.1016/S0005-1098(02)00091-2 +Xingwen Liu,Stability analysis of a class of switched nonlinear systems with delays: A trajectory-based comparison method.,2018,91,Automatica,,db/journals/automatica/automatica91.html#LiuZZ18a,https://doi.org/10.1016/j.automatica.2018.01.018 +Yue Yang,Necessary and sufficient conditions for regional stabilisability of second-order switched linear systems with a finite number of subsystems.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#YangXL14,https://doi.org/10.1016/j.automatica.2013.12.029 +Hideaki Ishii,Probabilistic sorting and stabilization of switched systems.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#IshiiT09,https://doi.org/10.1016/j.automatica.2008.10.016 +Henry de Plinval,Stabilization of a class of underactuated vehicles with uncertain position measurements and application to visual servoing.,2017,77,Automatica,,db/journals/automatica/automatica77.html#PlinvalMM17,https://doi.org/10.1016/j.automatica.2016.11.012 +K. V. S. Hari,Effect of spatial smoothing on the performance of subspace methods in the presence of array model errors.,1994,30,Automatica,1,db/journals/automatica/automatica30.html#HariG94,https://doi.org/10.1016/0005-1098(94)90225-9 +Hiroshi Ito 0001,A small-gain condition for iISS of interconnected retarded systems based on Lyapunov-Krasovskii functionals.,2010,46,Automatica,10,db/journals/automatica/automatica46.html#ItoPJ10,https://doi.org/10.1016/j.automatica.2010.06.037 +Daniel J. Stilwell,Stability preserving interpolation methods for the synthesis of gain scheduled controllers.,2000,36,Automatica,5,db/journals/automatica/automatica36.html#StilwellR00,https://doi.org/10.1016/S0005-1098(99)00193-4 +Willem Esterhuizen,Barriers and potentially safe sets in hybrid systems: Pendulum with non-rigid cable.,2016,73,Automatica,,db/journals/automatica/automatica73.html#EsterhuizenL16,https://doi.org/10.1016/j.automatica.2016.07.001 +Stuart Gibson,Robust maximum-likelihood estimation of multivariable dynamic systems.,2005,41,Automatica,10,db/journals/automatica/automatica41.html#GibsonN05,https://doi.org/10.1016/j.automatica.2005.05.008 +M. C. F. Donkers,Stability analysis of stochastic networked control systems.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#DonkersHBBS12,https://doi.org/10.1016/j.automatica.2012.02.029 +Francesco Martinelli,Optimal cycle production of a manufacturing system subject to deterioration.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#MartinelliP08,https://doi.org/10.1016/j.automatica.2008.01.019 +Christopher K. King,A Kalman-Yakubovich-Popov-type lemma for systems with certain state-dependent constraints.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#KingGS11,https://doi.org/10.1016/j.automatica.2011.06.016 +Dmitriy Laschov,Controllability of Boolean control networks via the Perron-Frobenius theory.,2012,48,Automatica,6,db/journals/automatica/automatica48.html#LaschovM12,https://doi.org/10.1016/j.automatica.2012.03.022 +Tae-Jeong Jang,Iterative learning control in feedback systems.,1995,31,Automatica,2,db/journals/automatica/automatica31.html#JangCA95,https://doi.org/10.1016/0005-1098(94)00064-P +Shuqian Zhu,I1-gain performance analysis and positive filter design for positive discrete-time Markov jump linear systems: A linear programming approach.,2014,50,Automatica,8,db/journals/automatica/automatica50.html#ZhuHZ14,https://doi.org/10.1016/j.automatica.2014.05.022 +Huai-Ning Wu,Design of distributed H∞ fuzzy controllers with constraint for nonlinear hyperbolic PDE systems.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#WuWL12,https://doi.org/10.1016/j.automatica.2012.06.043 +Sergio Grammatico,Discrete-time stochastic control systems: A continuous Lyapunov function implies robustness to strictly causal perturbations.,2013,49,Automatica,10,db/journals/automatica/automatica49.html#GrammaticoST13,https://doi.org/10.1016/j.automatica.2013.06.021 +Giuseppe Carlo Calafiore,Direct data-driven portfolio optimization with guaranteed shortfall probability.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#Calafiore13,https://doi.org/10.1016/j.automatica.2012.11.012 +T. Alamo,A new concept of invariance for saturated systems.,2006,42,Automatica,9,db/journals/automatica/automatica42.html#AlamoCLC06,https://doi.org/10.1016/j.automatica.2006.04.006 +K. David Young,Sliding-mode Design for Robust Linear Optimal Control.,1997,33,Automatica,7,db/journals/automatica/automatica33.html#YoungO97,https://doi.org/10.1016/S0005-1098(97)00051-4 +Rolf Isermann,Guest editorial.,1981,17,Automatica,1,db/journals/automatica/automatica17.html#Isermann81,https://doi.org/10.1016/0005-1098(81)90080-7 +Jinxin Zhao,Distributed control and optimization in DC microgrids.,2015,61,Automatica,,db/journals/automatica/automatica61.html#ZhaoD15,https://doi.org/10.1016/j.automatica.2015.07.015 +Ai Hui Tan,Direction-dependent systems - A survey.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#Tan09,https://doi.org/10.1016/j.automatica.2009.09.024 +Paraskevas N. Paraskevopoulos,Disturbance rejection of left-invertible systems.,1992,28,Automatica,2,db/journals/automatica/automatica28.html#ParaskevopoulosKT92,https://doi.org/10.1016/0005-1098(92)90131-X +Ion Matei,Consensus-based linear distributed filtering.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#MateiB12,https://doi.org/10.1016/j.automatica.2012.05.042 +Ian R. Petersen,A notion of possible controllability for uncertain linear systems with structured uncertainty.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#Petersen09,https://doi.org/10.1016/j.automatica.2008.05.033 +Umut Orguner,Risk-sensitive filtering for jump Markov linear systems.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#OrgunerD08,https://doi.org/10.1016/j.automatica.2007.04.018 +Stefan Preitl,An extension of tuning relations after symmetrical optimum method for PI and PID controllers.,1999,35,Automatica,10,db/journals/automatica/automatica35.html#PreitlP99,https://doi.org/10.1016/S0005-1098(99)00091-6 +Mathias Bürger,Dynamic coupling design for nonlinear output agreement and time-varying flow control.,2015,51,Automatica,,db/journals/automatica/automatica51.html#BurgerP15,https://doi.org/10.1016/j.automatica.2014.10.081 +X. Zeng,A strategy for controlling nonlinear systems using a learning automaton.,2000,36,Automatica,10,db/journals/automatica/automatica36.html#ZengZV00,https://doi.org/10.1016/S0005-1098(00)00066-2 +He Bai,Rigid body attitude coordination without inertial frame information.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#BaiAW08,https://doi.org/10.1016/j.automatica.2008.05.018 +Junchao Ren,Robust normalization and guaranteed cost control for a class of uncertain descriptor systems.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#RenZ12,https://doi.org/10.1016/j.automatica.2012.05.038 +Lotfi Belkoura,Identifiabilty of systems described by convolution equations.,2005,41,Automatica,3,db/journals/automatica/automatica41.html#Belkoura05,https://doi.org/10.1016/j.automatica.2004.11.013 +Pascal Grieder,Computation of the constrained infinite time linear quadratic regulator.,2004,40,Automatica,4,db/journals/automatica/automatica40.html#GriederBTM04,https://doi.org/10.1016/j.automatica.2003.11.014 +R. Schumann,Digital parameter-adaptive control of an air-conditioning plant.,1982,18,Automatica,5,db/journals/automatica/automatica18.html#Schumann82,https://doi.org/10.1016/0005-1098(82)90007-3 +Franco Blanchini,Adaptive control of compressor surge instability.,2002,38,Automatica,8,db/journals/automatica/automatica38.html#BlanchiniG02,https://doi.org/10.1016/S0005-1098(02)00031-6 +P. W. Staats Jr.,Robust solution of the linear servomechanism problem.,1977,13,Automatica,2,db/journals/automatica/automatica13.html#StaatsP77,https://doi.org/10.1016/0005-1098(77)90037-1 +Xi Li,Criteria for robust stability and stabilization of uncertain linear systems with state delay.,1997,33,Automatica,9,db/journals/automatica/automatica33.html#LiS97a,https://doi.org/10.1016/S0005-1098(97)00082-4 +Antoine Girard,Approximate bisimulation relations for constrained linear systems.,2007,43,Automatica,8,db/journals/automatica/automatica43.html#GirardP07,https://doi.org/10.1016/j.automatica.2007.01.019 +Hiroaki Kawashima,Manipulability of leader-follower networks with the rigid-link approximation.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#KawashimaE14,https://doi.org/10.1016/j.automatica.2013.11.041 +Mohammad Reza Davoodi,Simultaneous fault detection and consensus control design for a network of multi-agent systems.,2016,66,Automatica,,db/journals/automatica/automatica66.html#DavoodiMK16,https://doi.org/10.1016/j.automatica.2015.12.027 +Mikael Norrlöf,A note on causal and CITE iterative learning control algorithms.,2005,41,Automatica,2,db/journals/automatica/automatica41.html#NorrlofG05,https://doi.org/10.1016/j.automatica.2004.10.003 +Wen Kang,Boundary control of delayed ODE-heat cascade under actuator saturation.,2017,83,Automatica,,db/journals/automatica/automatica83.html#KangF17,https://doi.org/10.1016/j.automatica.2017.06.014 +W. Harmon Ray,An adaptive control of the batch reactor - IV : A more sophisticated controller.,1967,4,Automatica,3,db/journals/automatica/automatica4.html#RayA67,https://doi.org/10.1016/0005-1098(67)90004-0 +Pawel Miroslaw Stano,Saturated Particle Filter: Almost sure convergence and improved resampling.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#StanoLB13,https://doi.org/10.1016/j.automatica.2012.10.006 +Richard Seeber,Stability proof for a well-established super-twisting parameter setting.,2017,84,Automatica,,db/journals/automatica/automatica84.html#SeeberH17,https://doi.org/10.1016/j.automatica.2017.07.002 +Maiying Zhong,Parity space-based fault detection for linear discrete time-varying systems with unknown input.,2015,59,Automatica,,db/journals/automatica/automatica59.html#ZhongSD15,https://doi.org/10.1016/j.automatica.2015.06.013 +Michal Kvasnica,Stabilizing polynomial approximation of explicit MPC.,2011,47,Automatica,10,db/journals/automatica/automatica47.html#KvasnicaLF11,https://doi.org/10.1016/j.automatica.2011.08.023 +Frédéric Mazenc,Stabilization and robustness analysis for time-varying systems with time-varying delays using a sequential subpredictors approach.,2017,82,Automatica,,db/journals/automatica/automatica82.html#MazencM17a,https://doi.org/10.1016/j.automatica.2017.04.020 +Lijun Long,Switched adaptive control of switched nonlinearly parameterized systems with unstable subsystems.,2015,54,Automatica,,db/journals/automatica/automatica54.html#LongWZ15,https://doi.org/10.1016/j.automatica.2015.02.004 +Per Mattsson,Convergence analysis for recursive Hammerstein identification.,2016,71,Automatica,,db/journals/automatica/automatica71.html#MattssonW16,https://doi.org/10.1016/j.automatica.2016.04.014 +Ricardo G. Sanfelice,On singular perturbations due to fast actuators in hybrid control systems.,2011,47,Automatica,4,db/journals/automatica/automatica47.html#SanfeliceT11,https://doi.org/10.1016/j.automatica.2011.01.055 +Lijuan Shen,Complete controllability of impulsive stochastic integro-differential systems.,2010,46,Automatica,6,db/journals/automatica/automatica46.html#ShenSS10,https://doi.org/10.1016/j.automatica.2010.03.002 +Wuquan Li,Containment control of leader-following multi-agent systems with Markovian switching network topologies and measurement noises.,2015,51,Automatica,,db/journals/automatica/automatica51.html#LiXZ15,https://doi.org/10.1016/j.automatica.2014.10.070 +Xiaodi Li,Impulsive differential equations: Periodic solutions and applications.,2015,52,Automatica,,db/journals/automatica/automatica52.html#LiBW15,https://doi.org/10.1016/j.automatica.2014.11.009 +Igor Boiko,Oscillations and transfer properties of relay servo systems - the locus of a perturbed relay system approach.,2005,41,Automatica,4,db/journals/automatica/automatica41.html#Boiko05,https://doi.org/10.1016/j.automatica.2004.11.002 +Guilherme V. Raffo,An integral predictive/nonlinear Hinfinity control structure for a quadrotor helicopter.,2010,46,Automatica,1,db/journals/automatica/automatica46.html#RaffoOR10,https://doi.org/10.1016/j.automatica.2009.10.018 +Ivar Gustavsson,Identification of processes in closed loop - identifiability and accuracy aspects.,1977,13,Automatica,1,db/journals/automatica/automatica13.html#GustavssonLS77,https://doi.org/10.1016/0005-1098(77)90009-7 +Timm Faulwasser,Constrained reachability and trajectory generation for flat systems.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#FaulwasserHF14,https://doi.org/10.1016/j.automatica.2014.02.011 +Ramine Nikoukhah,Auxiliary signal design for active failure detection in uncertain linear systems with a priori information.,2006,42,Automatica,2,db/journals/automatica/automatica42.html#NikoukhahC06,https://doi.org/10.1016/j.automatica.2005.09.011 +Christophe Fiter,A robust stability framework for LTI systems with time-varying sampling.,2015,54,Automatica,,db/journals/automatica/automatica54.html#FiterHPR15,https://doi.org/10.1016/j.automatica.2015.01.035 +Min Shi,An effective analytical criterion for stability testing of fractional-delay systems.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#ShiW11,https://doi.org/10.1016/j.automatica.2011.05.018 +Marius Tucsnak,Well-posed systems - The LTI case and beyond.,2014,50,Automatica,7,db/journals/automatica/automatica50.html#TucsnakW14,https://doi.org/10.1016/j.automatica.2014.04.016 +Fengwei Chen,EM-based identification of continuous-time ARMA Models from irregularly sampled data.,2017,77,Automatica,,db/journals/automatica/automatica77.html#ChenAGGL17,https://doi.org/10.1016/j.automatica.2016.11.020 +Cheng Song,Optimal control for multi-agent persistent monitoring.,2014,50,Automatica,6,db/journals/automatica/automatica50.html#SongLFX14,https://doi.org/10.1016/j.automatica.2014.04.011 +Wolfgang J. Runggaldier,Combined filtering and parameter estimation: Approximations and robustness.,1990,26,Automatica,2,db/journals/automatica/automatica26.html#RunggaldierV90,https://doi.org/10.1016/0005-1098(90)90136-6 +André J. Fossard,On coherency-based decomposition algorithms.,1983,19,Automatica,3,db/journals/automatica/automatica19.html#FossardBM83,https://doi.org/10.1016/0005-1098(83)90101-2 +Roger S. Benson,Introduction to chemical process instrumentation: Ivan Nagy.,1994,30,Automatica,6,db/journals/automatica/automatica30.html#Benson94,https://doi.org/10.1016/0005-1098(94)90204-6 +Heqing Sun,A computationally efficient norm optimal iterative learning control approach for LTV systems.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#SunA14,https://doi.org/10.1016/j.automatica.2013.09.009 +Daniel Silvestre,Stochastic and deterministic fault detection for randomized gossip algorithms.,2017,78,Automatica,,db/journals/automatica/automatica78.html#SilvestreRHS17,https://doi.org/10.1016/j.automatica.2016.12.011 +Anantharaman Subbaraman,A Matrosov theorem for strong global recurrence.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#SubbaramanT13a,https://doi.org/10.1016/j.automatica.2013.08.009 +Zhixin Liu,Synchronization of multi-agent systems without connectivity assumptions.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#LiuG09a,https://doi.org/10.1016/j.automatica.2009.09.015 +Naresh K. Sinha,System identification - Theory for the user : Lennart Ljung.,1989,25,Automatica,3,db/journals/automatica/automatica25.html#Sinha89,https://doi.org/10.1016/0005-1098(89)90019-8 +Per Mattsson,Recursive nonlinear-system identification using latent variables.,2018,93,Automatica,,db/journals/automatica/automatica93.html#MattssonZS18,https://doi.org/10.1016/j.automatica.2018.03.007 +Ahmet Behçet Açikmese,Robust output tracking for uncertain/nonlinear systems subject to almost constant disturbances.,2002,38,Automatica,11,db/journals/automatica/automatica38.html#AcikmeseC02,https://doi.org/10.1016/S0005-1098(02)00071-7 +Elham Semsar-Kazerooni,Optimal consensus algorithms for cooperative team of agents subject to partial information.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#Semsar-KazerooniK08,https://doi.org/10.1016/j.automatica.2008.04.016 +Anders Hansson,Existence of minimum upcrossing controllers.,1997,33,Automatica,5,db/journals/automatica/automatica33.html#HanssonH97,https://doi.org/10.1016/S0005-1098(96)00256-7 +Danchi Jiang,Augmented gradient flows for on-line robust pole assignment via state and output feedback.,2002,38,Automatica,2,db/journals/automatica/automatica38.html#JiangW02,https://doi.org/10.1016/S0005-1098(01)00200-X +G. Gopalakrishnan Nair,Suboptimal control of nonlinear systems.,1978,14,Automatica,5,db/journals/automatica/automatica14.html#Nair78,https://doi.org/10.1016/0005-1098(78)90013-4 +Changyun Wen,Decentralized adaptive backstepping stabilization of interconnected systems with dynamic input and output interactions.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#WenZW09,https://doi.org/10.1016/j.automatica.2008.06.018 +Magnus Egerstedt,Optimal trajectory planning and smoothing splines.,2001,37,Automatica,7,db/journals/automatica/automatica37.html#EgerstedtM01,https://doi.org/10.1016/S0005-1098(01)00055-3 +Yasmina Becis-Aubry,State estimation in the presence of bounded disturbances.,2008,44,Automatica,7,db/journals/automatica/automatica44.html#Becis-AubryBD08,https://doi.org/10.1016/j.automatica.2007.10.033 +Er-Wei Bai,A random least-trimmed-squares identification algorithm.,2003,39,Automatica,9,db/journals/automatica/automatica39.html#Bai03a,https://doi.org/10.1016/S0005-1098(03)00193-6 +Fredrik Gustafsson,Generating dithering noise for maximum likelihood estimation from quantized data.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#GustafssonK13,https://doi.org/10.1016/j.automatica.2012.11.028 +Divya Garg,A unified framework for the numerical solution of optimal control problems using pseudospectral methods.,2010,46,Automatica,11,db/journals/automatica/automatica46.html#GargPHRBH10,https://doi.org/10.1016/j.automatica.2010.06.048 +Yohei Hosoe,Unified treatment of robust stability conditions for discrete-time systems through an infinite matrix framework.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#HosoeH13,https://doi.org/10.1016/j.automatica.2013.02.017 +Xiaoping Liu,Asymptotic output tracking of nonlinear differential-algebraic control systems.,1998,34,Automatica,3,db/journals/automatica/automatica34.html#Liu98,https://doi.org/10.1016/S0005-1098(97)00224-0 +Grazyna Pajunen,Adaptive control of wiener type nonlinear systems.,1992,28,Automatica,4,db/journals/automatica/automatica28.html#Pajunen92,https://doi.org/10.1016/0005-1098(92)90037-G +E. G. Eszter,An IQC for uncertainty satisfying both norm-bounded and passivity constraints.,1997,33,Automatica,8,db/journals/automatica/automatica33.html#EszterH97,https://doi.org/10.1016/S0005-1098(97)00063-0 +Zhengguo Li,Lyapunov stability of a class of hybrid dynamic systems.,2000,36,Automatica,2,db/journals/automatica/automatica36.html#LiSX00,https://doi.org/10.1016/S0005-1098(99)00144-2 +Le Yi Wang,Joint identification of plant rational models and noise distribution functions using binary-valued observations.,2006,42,Automatica,4,db/journals/automatica/automatica42.html#WangYZ06,https://doi.org/10.1016/j.automatica.2005.12.004 +Garry Didinsky,Parameter identification for uncertain plants using H∞ methods.,1995,31,Automatica,9,db/journals/automatica/automatica31.html#DidinskyPB95,https://doi.org/10.1016/0005-1098(95)00073-6 +Xiaojun Tang,Integral fractional pseudospectral methods for solving fractional optimal control problems.,2015,62,Automatica,,db/journals/automatica/automatica62.html#TangLW15,https://doi.org/10.1016/j.automatica.2015.09.007 +Heikki N. Koivo,An optimal control for a flotation circuit.,1977,13,Automatica,1,db/journals/automatica/automatica13.html#KoivoC77,https://doi.org/10.1016/0005-1098(77)90007-3 +Ghislaine Joly-Blanchard,Some Remarks about an Identifiability Result of Nonlinear Systems.,1998,34,Automatica,9,db/journals/automatica/automatica34.html#Joly-BlanchardD98,https://doi.org/10.1016/S0005-1098(98)00055-7 +Qing-Long Han,A descriptor system approach to robust stability of uncertain neutral systems with discrete and distributed delays.,2004,40,Automatica,10,db/journals/automatica/automatica40.html#Han04a,https://doi.org/10.1016/j.automatica.2004.05.002 +Damiano Varagnolo,Distributed parametric and nonparametric regression with on-line performance bounds computation.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#VaragnoloPS12,https://doi.org/10.1016/j.automatica.2012.06.080 +Ralf L. M. Peeters,Identifiability of homogeneous systems using the state isomorphism approach.,2005,41,Automatica,3,db/journals/automatica/automatica41.html#PeetersH05,https://doi.org/10.1016/j.automatica.2004.11.019 +Gene Grimm,Linear LMI-based external anti-windup augmentation for stable linear systems.,2004,40,Automatica,11,db/journals/automatica/automatica40.html#GrimmTZ04,https://doi.org/10.1016/j.automatica.2004.07.001 +Saeed Ahmed,Dynamic output feedback stabilization of switched linear systems with delay via a trajectory based approach.,2018,93,Automatica,,db/journals/automatica/automatica93.html#AhmedMO18,https://doi.org/10.1016/j.automatica.2018.03.072 +Halim Alwi,Sliding mode estimation schemes for incipient sensor faults.,2009,45,Automatica,7,db/journals/automatica/automatica45.html#AlwiET09,https://doi.org/10.1016/j.automatica.2009.02.031 +Zhongkui Li,Distributed adaptive consensus and output tracking of unknown linear systems on directed graphs.,2015,55,Automatica,,db/journals/automatica/automatica55.html#LiD15,https://doi.org/10.1016/j.automatica.2015.02.033 +Mona Meisami-Azad,Dissipative analysis and control of state-space symmetric systems.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#Meisami-AzadMG09,https://doi.org/10.1016/j.automatica.2009.02.015 +Yongmin Li,Estimating stable delay intervals with a discretized Lyapunov-Krasovskii functional formulation.,2014,50,Automatica,6,db/journals/automatica/automatica50.html#LiGZX14,https://doi.org/10.1016/j.automatica.2014.04.019 +Nicolas Léchevin,Trajectory tracking of leader-follower formations characterized by constant line-of-sight angles.,2006,42,Automatica,12,db/journals/automatica/automatica42.html#LechevinRS06,https://doi.org/10.1016/j.automatica.2006.06.023 +Emilia Fridman,Effects of small delays on stability of singularly perturbed systems.,2002,38,Automatica,5,db/journals/automatica/automatica38.html#Fridman02,https://doi.org/10.1016/S0005-1098(01)00265-5 +Stefano Riverso,Plug-and-play model predictive control based on robust control invariant sets.,2014,50,Automatica,8,db/journals/automatica/automatica50.html#RiversoFF14,https://doi.org/10.1016/j.automatica.2014.06.004 +Alain Bensoussan,Computation of approximate optimal policies in a partially observed inventory model with rain checks.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#BensoussanCSS11,https://doi.org/10.1016/j.automatica.2011.04.005 +Guobin Chang,Error analysis of Davenport's q method.,2017,75,Automatica,,db/journals/automatica/automatica75.html#ChangXW17,https://doi.org/10.1016/j.automatica.2016.09.018 +Ligang Wu,Stability analysis and stabilization of 2-D switched systems under arbitrary and restricted switchings.,2015,59,Automatica,,db/journals/automatica/automatica59.html#WuY0S15,https://doi.org/10.1016/j.automatica.2015.06.008 +Giuseppe De Nicolao,An adaptive predictive regulator with input saturations.,1996,32,Automatica,4,db/journals/automatica/automatica32.html#NicolaoSS96,https://doi.org/10.1016/0005-1098(95)00166-2 +Ying Tan 0001,On the choice of dither in extremum seeking systems: A case study.,2008,44,Automatica,5,db/journals/automatica/automatica44.html#TanNM08,https://doi.org/10.1016/j.automatica.2007.10.016 +Manfred Morari,Nonlinear offset-free model predictive control.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#MorariM12,https://doi.org/10.1016/j.automatica.2012.06.038 +Eric Coulibaly,Internal model predictive control (IMPC).,1995,31,Automatica,10,db/journals/automatica/automatica31.html#CoulibalyMB95,https://doi.org/10.1016/0005-1098(95)00053-Y +Mojtaba Nouri Manzar,Input-constrained multi-model unfalsified switching control.,2017,83,Automatica,,db/journals/automatica/automatica83.html#ManzarBK17,https://doi.org/10.1016/j.automatica.2017.04.044 +Edoardo Mosca,Robustness of multipredictor adaptive regulators: MUSMAR.,1989,25,Automatica,4,db/journals/automatica/automatica25.html#MoscaZL89,https://doi.org/10.1016/0005-1098(89)90095-2 +M. Cremer,Parameter identification for a traffic flow model.,1981,17,Automatica,6,db/journals/automatica/automatica17.html#CremerP81,https://doi.org/10.1016/0005-1098(81)90071-6 +Marcio J. Lacerda,Stability of uncertain systems using Lyapunov functions with non-monotonic terms.,2017,82,Automatica,,db/journals/automatica/automatica82.html#LacerdaS17,https://doi.org/10.1016/j.automatica.2017.04.042 +José M. Bravo,Robust MPC of constrained discrete-time nonlinear systems based on approximated reachable sets.,2006,42,Automatica,10,db/journals/automatica/automatica42.html#BravoAC06,https://doi.org/10.1016/j.automatica.2006.05.003 +Nem Stefanovic,Robust power control of multi-link single-sink optical networks with time-delays.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#StefanovicP13,https://doi.org/10.1016/j.automatica.2013.04.009 +Juan C. Agüero,Accuracy of linear multiple-input multiple-output (MIMO) models obtained by maximum likelihood estimation.,2012,48,Automatica,4,db/journals/automatica/automatica48.html#AgueroRHG12,https://doi.org/10.1016/j.automatica.2012.01.015 +Karim Ramdani,Recovering the initial state of an infinite-dimensional system using observers.,2010,46,Automatica,10,db/journals/automatica/automatica46.html#RamdaniTW10,https://doi.org/10.1016/j.automatica.2010.06.032 +Yingmin Jia,Condition and algorithm for simultaneous stabilization of linear plants.,2001,37,Automatica,9,db/journals/automatica/automatica37.html#JiaA01,https://doi.org/10.1016/S0005-1098(01)00080-2 +Aneesh Venkatraman,Full-order observer design for a class of port-Hamiltonian systems.,2010,46,Automatica,3,db/journals/automatica/automatica46.html#VenkatramanS10,https://doi.org/10.1016/j.automatica.2010.01.019 +Michael Sebek,Two-dimensional linear systems: T. Kaczorek.,1987,23,Automatica,1,db/journals/automatica/automatica23.html#Sebek87,https://doi.org/10.1016/0005-1098(87)90123-3 +Yiguang Hong,Tracking control for multi-agent consensus with an active leader and variable topology.,2006,42,Automatica,7,db/journals/automatica/automatica42.html#HongHG06,https://doi.org/10.1016/j.automatica.2006.02.013 +Hanlei Wang,Adaptive visual tracking for robotic systems without image-space velocity measurement.,2015,55,Automatica,,db/journals/automatica/automatica55.html#Wang15,https://doi.org/10.1016/j.automatica.2015.02.029 +Dragan Obradovic,Stability and performance in the presence of magnitude bounded real uncertainty: Riccati equation based state space approaches.,1992,28,Automatica,4,db/journals/automatica/automatica28.html#ObradovicV92,https://doi.org/10.1016/0005-1098(92)90045-H +William Lee Mahood,Natural language processing* a knowledge-engineering approach: Richard E. Cullingford.,1988,24,Automatica,3,db/journals/automatica/automatica24.html#MahoodS88,https://doi.org/10.1016/0005-1098(88)90088-X +Mark J. Willis,Artificial neural networks in process estimation and control.,1992,28,Automatica,6,db/journals/automatica/automatica28.html#WillisMMTM92,https://doi.org/10.1016/0005-1098(92)90059-O +Andrea Gombani,A general hankel-norm approximation scheme for linear recursive filtering.,1990,26,Automatica,1,db/journals/automatica/automatica26.html#GombaniP90,https://doi.org/10.1016/0005-1098(90)90162-B +Masaki Inoue,State-space H∞ controller design for descriptor systems.,2015,59,Automatica,,db/journals/automatica/automatica59.html#InoueWIU15,https://doi.org/10.1016/j.automatica.2015.06.021 +Jie Mei,Distributed adaptive coordination for multiple Lagrangian systems under a directed graph without using neighbors' velocity information.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#Mei0CM13,https://doi.org/10.1016/j.automatica.2013.02.058 +Mehmet Akar,Associative memory design using overlapping decompositions.,2001,37,Automatica,4,db/journals/automatica/automatica37.html#AkarS01,https://doi.org/10.1016/S0005-1098(00)00191-6 +Nem Stefanovic,A stability analysis with time-delay of primal-dual power control in optical links.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#StefanovicP09a,https://doi.org/10.1016/j.automatica.2009.01.005 +Alexander Lanzon,On the formulation and solution of robust performance problems.,2003,39,Automatica,10,db/journals/automatica/automatica39.html#LanzonC03,https://doi.org/10.1016/S0005-1098(03)00184-5 +Pedro Albertos,Output prediction under scarce data operation: control applications.,1999,35,Automatica,10,db/journals/automatica/automatica35.html#AlbertosSS99,https://doi.org/10.1016/S0005-1098(99)00078-3 +Chih-Hsien Chung,A robust adaptive feedforward control in repetitive control design for linear systems.,2012,48,Automatica,1,db/journals/automatica/automatica48.html#ChungC12,https://doi.org/10.1016/j.automatica.2011.09.034 +Erliang Zhang,Errors-in-variables identification of dynamic systems excited by arbitrary non-white input.,2013,49,Automatica,10,db/journals/automatica/automatica49.html#ZhangPS13,https://doi.org/10.1016/j.automatica.2013.06.008 +Sandra R. Merritt,Energy-modelled climb and climb-dash - the Kaiser technique.,1985,21,Automatica,3,db/journals/automatica/automatica21.html#MerrittCK85,https://doi.org/10.1016/0005-1098(85)90065-2 +Jian-Xin Xu 0001,A VSS identification scheme for time-varying parameters.,2003,39,Automatica,4,db/journals/automatica/automatica39.html#XuPL03,https://doi.org/10.1016/S0005-1098(02)00303-5 +Fahed Abdallah,Box particle filtering for nonlinear state estimation using interval analysis.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#AbdallahGB08,https://doi.org/10.1016/j.automatica.2007.07.024 +Sedat ölçer,Convergence analysis of ladder algorithms for AR and ARMA models.,1986,22,Automatica,3,db/journals/automatica/automatica22.html#OlcerEM86,https://doi.org/10.1016/0005-1098(86)90032-4 +Peter Nauclér,Unbalance estimation using linear and nonlinear regression.,2010,46,Automatica,11,db/journals/automatica/automatica46.html#NauclerS10,https://doi.org/10.1016/j.automatica.2010.06.053 +Hosam E. Emara-Shabaik,A note on the extended kalman filter.,1981,17,Automatica,2,db/journals/automatica/automatica17.html#Emara-ShabaikL81,https://doi.org/10.1016/0005-1098(81)90062-5 +Davi Antônio dos Santos,A Bayesian solution to the multiple composite hypothesis testing for fault diagnosis in dynamic systems.,2011,47,Automatica,1,db/journals/automatica/automatica47.html#SantosY11,https://doi.org/10.1016/j.automatica.2010.10.030 +Andrey V. Savkin,Robust output feedback stabilizability via controller switching.,1999,35,Automatica,1,db/journals/automatica/automatica35.html#SavkinSE99,https://doi.org/10.1016/S0005-1098(98)00136-8 +Justin P. Koeln,Stability of decentralized model predictive control of graph-based power flow systems via passivity.,2017,82,Automatica,,db/journals/automatica/automatica82.html#KoelnA17,https://doi.org/10.1016/j.automatica.2017.04.026 +Sasa V. Rakovic,Homothetic tube model predictive control.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#RakovicKFC12,https://doi.org/10.1016/j.automatica.2012.05.003 +Dimas Abreu Dutra,Maximum a posteriori state path estimation: Discretization limits and their interpretation.,2014,50,Automatica,5,db/journals/automatica/automatica50.html#DutraTA14,https://doi.org/10.1016/j.automatica.2014.03.003 +Li-Xin Wang,Structured neural networks for constrained model predictive control.,2001,37,Automatica,8,db/journals/automatica/automatica37.html#WangW01,https://doi.org/10.1016/S0005-1098(01)00091-7 +Qinglei Hu,Robust and adaptive variable structure output feedback control of uncertain systems with input nonlinearity.,2008,44,Automatica,2,db/journals/automatica/automatica44.html#HuMX08,https://doi.org/10.1016/j.automatica.2007.06.024 +Alessandro Chiuso,Numerical conditioning and asymptotic variance of subspace estimates.,2004,40,Automatica,4,db/journals/automatica/automatica40.html#ChiusoP04a,https://doi.org/10.1016/j.automatica.2003.11.008 +J. Dwight Aplevich,Minimal representations of implicit linear systems.,1985,21,Automatica,3,db/journals/automatica/automatica21.html#Aplevich85,https://doi.org/10.1016/0005-1098(85)90059-7 +Michèle Basseville,Detection and diagnosis of changes in the eigenstructure of nonstationary multivariable systems.,1987,23,Automatica,4,db/journals/automatica/automatica23.html#BassevilleBMR87,https://doi.org/10.1016/0005-1098(87)90077-X +Richard C. Hill,Multi-level hierarchical interface-based supervisory control.,2010,46,Automatica,7,db/journals/automatica/automatica46.html#HillCQTL10,https://doi.org/10.1016/j.automatica.2010.04.002 +Luigi Fortuna,On the bilinear transformation of LQG-balanced realizations.,1995,31,Automatica,2,db/journals/automatica/automatica31.html#FortunaMN95,https://doi.org/10.1016/0005-1098(94)00143-7 +Jun Wu 0003,A andmicro*-based optimal finite-word-length controller design.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#WuLCC08,https://doi.org/10.1016/j.automatica.2008.05.007 +Etienne Farcot,A mathematical framework for the control of piecewise-affine models of gene networks.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#FarcotG08,https://doi.org/10.1016/j.automatica.2007.12.019 +Francesco Ticozzi,Analysis and synthesis of attractive quantum Markovian dynamics.,2009,45,Automatica,9,db/journals/automatica/automatica45.html#TicozziV09,https://doi.org/10.1016/j.automatica.2009.05.005 +Deqing Huang,D-type anticipatory iterative learning control for a class of inhomogeneous heat equations.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#HuangXLXY13,https://doi.org/10.1016/j.automatica.2013.05.005 +Yu-Ping Tian,Robust consensus of multi-agent systems with diverse input delays and asymmetric interconnection perturbations.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#TianL09,https://doi.org/10.1016/j.automatica.2009.01.009 +Peter Kosmol,Solving optimal control problems by means of general Lagrange functionals.,2001,37,Automatica,6,db/journals/automatica/automatica37.html#KosmolP01,https://doi.org/10.1016/S0005-1098(01)00033-4 +Xinghu Wang,A nonlinear internal model design for heterogeneous second-order multi-agent systems with unknown leader.,2018,91,Automatica,,db/journals/automatica/automatica91.html#WangSX18,https://doi.org/10.1016/j.automatica.2018.01.003 +Yongming Li 0002,Adaptive output-feedback control design with prescribed performance for switched nonlinear systems.,2017,80,Automatica,,db/journals/automatica/automatica80.html#LiTLF17,https://doi.org/10.1016/j.automatica.2017.02.005 +Ci Chen,Adaptive asymptotic control of multivariable systems based on a one-parameter estimation approach.,2017,83,Automatica,,db/journals/automatica/automatica83.html#ChenWLXZC17,https://doi.org/10.1016/j.automatica.2017.03.003 +Nikolaos Bekiaris-Liberis,Stabilization of linear strict-feedback systems with delayed integrators.,2010,46,Automatica,11,db/journals/automatica/automatica46.html#Bekiaris-LiberisK10,https://doi.org/10.1016/j.automatica.2010.07.008 +Xueyan Zhao,Moment stability of nonlinear discrete stochastic systems with time-delays based on H-representation technique.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#ZhaoD14,https://doi.org/10.1016/j.automatica.2013.11.015 +Katsuhisa Furuta,Automatica prize paper award 2002.,2002,38,Automatica,11,db/journals/automatica/automatica38.html#Furuta02,https://doi.org/10.1016/S0005-1098(02)00148-6 +Sung Jin Yoo,Distributed adaptive containment control of uncertain nonlinear multi-agent systems in strict-feedback form.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#Yoo13,https://doi.org/10.1016/j.automatica.2013.03.007 +Jorge Mari,A covariance extension approach to identification of time series.,2000,36,Automatica,3,db/journals/automatica/automatica36.html#MariDL00,https://doi.org/10.1016/S0005-1098(99)00172-7 +Roberto Zanasi,Nonlinear filters for the generation of smooth trajectories.,2000,36,Automatica,3,db/journals/automatica/automatica36.html#ZanasiBT00,https://doi.org/10.1016/S0005-1098(99)00164-8 +Shoudong Huang,Analysis of input-to-state stability for discrete time nonlinear systems via dynamic programming.,2005,41,Automatica,12,db/journals/automatica/automatica41.html#HuangJND05,https://doi.org/10.1016/j.automatica.2005.07.005 +Sheida Ghapani,Fully distributed flocking with a moving leader for Lagrange networks with parametric uncertainties.,2016,67,Automatica,,db/journals/automatica/automatica67.html#GhapaniM0S16,https://doi.org/10.1016/j.automatica.2016.01.004 +Mohit Kumar,An energy-gain bounding approach to robust fuzzy identification.,2006,42,Automatica,5,db/journals/automatica/automatica42.html#KumarSS06,https://doi.org/10.1016/j.automatica.2006.01.013 +Teruyo Wada,Parametric absolute stability of multivariable Lur'e systems.,2000,36,Automatica,9,db/journals/automatica/automatica36.html#WadaIOS00,https://doi.org/10.1016/S0005-1098(00)00052-2 +Anna Jaskiewicz,Stochastic games of resource extraction.,2015,54,Automatica,,db/journals/automatica/automatica54.html#JaskiewiczN15,https://doi.org/10.1016/j.automatica.2015.01.028 +Stefano Riverso,Tube-based distributed control of linear constrained systems.,2012,48,Automatica,11,db/journals/automatica/automatica48.html#RiversoF12,https://doi.org/10.1016/j.automatica.2012.08.024 +Li Xu,Output feedback adaptive robust precision motion control of linear motors.,2001,37,Automatica,7,db/journals/automatica/automatica37.html#XuY01,https://doi.org/10.1016/S0005-1098(01)00052-8 +William Paul Heath,Second-order counterexamples to the discrete-time Kalman conjecture.,2015,60,Automatica,,db/journals/automatica/automatica60.html#HeathCS15,https://doi.org/10.1016/j.automatica.2015.07.005 +Klaus H. Well,Henry J. Kelley.,1988,24,Automatica,6,db/journals/automatica/automatica24.html#Well88,https://doi.org/10.1016/0005-1098(88)90048-9 +Hector Perez,Optimal output-transitions for linear systems.,2003,39,Automatica,2,db/journals/automatica/automatica39.html#PerezD03,https://doi.org/10.1016/S0005-1098(02)00240-6 +Simone Formentin,Enhancing statistical performance of data-driven controller tuning via L2-regularization.,2014,50,Automatica,5,db/journals/automatica/automatica50.html#FormentinK14,https://doi.org/10.1016/j.automatica.2014.04.001 +Christopher Edwards,On the limitations of some variable structure output feedback controller designs.,2000,36,Automatica,5,db/journals/automatica/automatica36.html#EdwardsS00,https://doi.org/10.1016/S0005-1098(99)00201-0 +Cristian R. Rojas,Robust optimal experiment design for system identification.,2007,43,Automatica,6,db/journals/automatica/automatica43.html#RojasWGF07,https://doi.org/10.1016/j.automatica.2006.12.013 +Domenico Prattichizzo,A new approach to the cheap LQ regulator exploiting the geometric properties of the Hamiltonian system.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#PrattichizzoNM08,https://doi.org/10.1016/j.automatica.2008.02.009 +Scott A. Bortoff,Approximate state-feedback linearization using spline functions.,1997,33,Automatica,8,db/journals/automatica/automatica33.html#Bortoff97,https://doi.org/10.1016/S0005-1098(97)00070-8 +Vicente Feliú Batlle,On the robust control of stable minimum phase plants with large uncertainty in a time constant. A fractional-order control approach.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#BatlleC14,https://doi.org/10.1016/j.automatica.2013.10.002 +Ye Xudong,Asymptotic regulation of time-varying uncertain nonlinear systems with unknown control directions.,1999,35,Automatica,5,db/journals/automatica/automatica35.html#Xudong99,https://doi.org/10.1016/S0005-1098(98)00228-3 +Mustapha S. Fofana,On the stability bifurcation of a nonlinear time delay system.,1998,34,Automatica,3,db/journals/automatica/automatica34.html#FofanaL98,https://doi.org/10.1016/S0005-1098(97)00208-2 +Marcello Farina,A hierarchical multi-rate MPC scheme for interconnected systems.,2018,90,Automatica,,db/journals/automatica/automatica90.html#FarinaZS18,https://doi.org/10.1016/j.automatica.2017.12.036 +Lilian K. Carvalho,Robust diagnosis of discrete-event systems against permanent loss of observations.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#CarvalhoMBL13,https://doi.org/10.1016/j.automatica.2012.09.017 +Dong Shen,On almost sure and mean square convergence of P-type ILC under randomly varying iteration lengths.,2016,63,Automatica,,db/journals/automatica/automatica63.html#ShenZWC16,https://doi.org/10.1016/j.automatica.2015.10.050 +Jérôme Antoni,A comprehensive study of the bias and variance of frequency-response-function measurements: Optimal window selection and overlapping strategies.,2007,43,Automatica,10,db/journals/automatica/automatica43.html#AntoniS07,https://doi.org/10.1016/j.automatica.2007.02.020 +Marco Forgione,Data-driven model improvement for model-based control.,2015,52,Automatica,,db/journals/automatica/automatica52.html#ForgioneBH15,https://doi.org/10.1016/j.automatica.2014.11.006 +Andrew G. Lamperski,Optimal decentralized state-feedback control with sparsity and delays.,2015,58,Automatica,,db/journals/automatica/automatica58.html#LamperskiL15,https://doi.org/10.1016/j.automatica.2015.05.010 +Jin-Zhi Wang,Control of a class of pendulum-like systems with Lagrange stability.,2006,42,Automatica,1,db/journals/automatica/automatica42.html#WangDH06,https://doi.org/10.1016/j.automatica.2005.08.014 +Jean-Charles Delvenne,Characterising solution sets of LTI differential equations.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#Delvenne12,https://doi.org/10.1016/j.automatica.2012.05.032 +Christian Ott,Prioritized multi-task compliance control of redundant manipulators.,2015,53,Automatica,,db/journals/automatica/automatica53.html#OttDA15,https://doi.org/10.1016/j.automatica.2015.01.015 +Wook Hyun Kwon,A receding horizon unbiased FIR filter for discrete-time state space models.,2002,38,Automatica,3,db/journals/automatica/automatica38.html#KwonKH02,https://doi.org/10.1016/S0005-1098(01)00242-4 +Scot L. Osburn,An exact treatment of the achievable closed-loop H2 performance of sampled-data controllers: from continuous-time to open-loop.,1995,31,Automatica,4,db/journals/automatica/automatica31.html#OsburnB95,https://doi.org/10.1016/0005-1098(95)98492-O +Jie Xiong,Structure identification for gene regulatory networks via linearization and robust state estimation.,2014,50,Automatica,11,db/journals/automatica/automatica50.html#XiongZ14,https://doi.org/10.1016/j.automatica.2014.08.003 +Alessandro Chiuso,Information fusion strategies and performance bounds in packet-drop networks.,2011,47,Automatica,7,db/journals/automatica/automatica47.html#ChiusoS11,https://doi.org/10.1016/j.automatica.2011.02.002 +Fouad Giri,Parameter estimation aspects in adaptive control.,1991,27,Automatica,2,db/journals/automatica/automatica27.html#GiriDDM91,https://doi.org/10.1016/0005-1098(91)90089-K +Raimo P. Hämäläinen,A solution of nonlinear TPBVP's occuring in optimal control.,1976,12,Automatica,5,db/journals/automatica/automatica12.html#HamalainenH76,https://doi.org/10.1016/0005-1098(76)90002-9 +Kevin L. Moore,Capabilities and limitations of multirate control schemes.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#MooreBD93,https://doi.org/10.1016/0005-1098(93)90098-E +Se-Hwa Park,H∞ control with performance bound for a class of uncertain linear systems.,1994,30,Automatica,12,db/journals/automatica/automatica30.html#ParkB94,https://doi.org/10.1016/0005-1098(94)90063-9 +Harald Pfifer,Integral quadratic constraints for delayed nonlinear and parameter-varying systems.,2015,56,Automatica,,db/journals/automatica/automatica56.html#PfiferS15,https://doi.org/10.1016/j.automatica.2015.03.021 +Vadim I. Utkin,Nonlinear control engineering: D. P. Atherton.,1984,20,Automatica,3,db/journals/automatica/automatica20.html#Utkin84,https://doi.org/10.1016/0005-1098(84)90054-2 +Bartek Roszak,Optimal complementary control for positive stable LTI systems.,2014,50,Automatica,5,db/journals/automatica/automatica50.html#RoszakD14,https://doi.org/10.1016/j.automatica.2013.11.027 +Merid Ljesnjanin,Packetized MPC with dynamic scheduling constraints and bounded packet dropouts.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#LjesnjaninQN14,https://doi.org/10.1016/j.automatica.2013.12.031 +Dongguang Li,Analysis of dual-rate inferential control systems.,2002,38,Automatica,6,db/journals/automatica/automatica38.html#LiSC02,https://doi.org/10.1016/S0005-1098(01)00295-3 +Goran Golo,Hamiltonian discretization of boundary control systems.,2004,40,Automatica,5,db/journals/automatica/automatica40.html#GoloTSM04,https://doi.org/10.1016/j.automatica.2003.12.017 +Guobin Chang,"Comments on ""A Gaussian approximation recursive filter for nonlinear systems with correlated noises"" [Automatica 48 (2012) 2290-2297].",2014,50,Automatica,2,db/journals/automatica/automatica50.html#Chang14,https://doi.org/10.1016/j.automatica.2013.12.018 +Moisés Bonilla Estrada,Angular position adaptive control of a squirrel-cage induction machine.,1997,33,Automatica,4,db/journals/automatica/automatica33.html#EstradaASG97,https://doi.org/10.1016/S0005-1098(96)00243-9 +Weiyao Lan,Explicit construction of Hinfinity control law for a class of nonminimum phase nonlinear systems.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#LanC08,https://doi.org/10.1016/j.automatica.2007.06.019 +A. B. Cox,Identification by a combined smoothing nonlinear programming algorithm.,1980,16,Automatica,6,db/journals/automatica/automatica16.html#CoxB80,https://doi.org/10.1016/0005-1098(80)90010-2 +Vinicius Mariano Gonçalves,On max-plus linear dynamical system theory: The regulation problem.,2017,75,Automatica,,db/journals/automatica/automatica75.html#GoncalvesMH17,https://doi.org/10.1016/j.automatica.2016.09.019 +Michael Green,Modern signals and systems : H. Kwakernaak and R. Sivan.,1993,29,Automatica,3,db/journals/automatica/automatica29.html#Green93,https://doi.org/10.1016/0005-1098(93)90080-D +Jing Sun 0003,A stable block model predictive control with variable implementation horizon.,2007,43,Automatica,11,db/journals/automatica/automatica43.html#SunKGC07,https://doi.org/10.1016/j.automatica.2007.03.026 +Brett Ninness,Estimation of model quality.,1995,31,Automatica,12,db/journals/automatica/automatica31.html#NinnessG95,https://doi.org/10.1016/0005-1098(95)00108-7 +Sandip Roy,Scaled consensus.,2015,51,Automatica,,db/journals/automatica/automatica51.html#Roy15,https://doi.org/10.1016/j.automatica.2014.10.073 +Jianying Zheng,Stability of discrete-time positive switched linear systems with stable and marginally stable subsystems.,2018,91,Automatica,,db/journals/automatica/automatica91.html#ZhengDX18,https://doi.org/10.1016/j.automatica.2018.01.032 +Sergio Pequito,Minimum cost input/output design for large-scale linear structural systems.,2016,68,Automatica,,db/journals/automatica/automatica68.html#PequitoKA16,https://doi.org/10.1016/j.automatica.2016.02.005 +Christos C. Zervos,On PID controller tuning using orthonormal series identification.,1988,24,Automatica,2,db/journals/automatica/automatica24.html#ZervosBD88,https://doi.org/10.1016/0005-1098(88)90025-8 +Jun Liu 0015,On asymptotic convergence and boundedness of stochastic systems with time-delay.,2012,48,Automatica,12,db/journals/automatica/automatica48.html#Liu12,https://doi.org/10.1016/j.automatica.2012.08.041 +Valentina Breschi,Piecewise affine regression via recursive multiple least squares and multicategory discrimination.,2016,73,Automatica,,db/journals/automatica/automatica73.html#BreschiPB16,https://doi.org/10.1016/j.automatica.2016.07.016 +Rolf Isermann,Practical aspects of process identification.,1980,16,Automatica,5,db/journals/automatica/automatica16.html#Isermann80a,https://doi.org/10.1016/0005-1098(80)90079-5 +Steffen Jørgensen,A differential game of retailer promotions.,2003,39,Automatica,7,db/journals/automatica/automatica39.html#JorgensenZ03,https://doi.org/10.1016/S0005-1098(03)00082-7 +M. K. çamlibel,A full characterization of stabilizability of bimodal piecewise linear systems with scalar inputs.,2008,44,Automatica,5,db/journals/automatica/automatica44.html#CamlibelHS08,https://doi.org/10.1016/j.automatica.2007.09.012 +Daniel Ferreira Coutinho,Robust Hinfinity filter design for a class of discrete-time parameter varying systems.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#CoutinhoSB09,https://doi.org/10.1016/j.automatica.2009.09.034 +An-Min Zou,Distributed finite-time velocity-free attitude coordination control for spacecraft formations.,2016,67,Automatica,,db/journals/automatica/automatica67.html#ZouRK16,https://doi.org/10.1016/j.automatica.2015.12.029 +Li-Sheng Hu,Sampled-data control of networked linear control systems.,2007,43,Automatica,5,db/journals/automatica/automatica43.html#HuBSW07,https://doi.org/10.1016/j.automatica.2006.11.015 +Hyung K. Song,A self-tuning robust controller.,1986,22,Automatica,5,db/journals/automatica/automatica22.html#SongSF86,https://doi.org/10.1016/0005-1098(86)90062-2 +Rune Schlanbusch,Spacecraft formation reconfiguration with collision avoidance.,2011,47,Automatica,7,db/journals/automatica/automatica47.html#SchlanbuschKN11,https://doi.org/10.1016/j.automatica.2011.02.014 +Bengt Lennartson,On the choice of controller and sampling period for linear stochastic control.,1990,26,Automatica,3,db/journals/automatica/automatica26.html#Lennartson90,https://doi.org/10.1016/0005-1098(90)90028-G +Pieter W. Otter,Identification and estimation of discrete state-vector models with stochastic inputs.,1981,17,Automatica,2,db/journals/automatica/automatica17.html#Otter81,https://doi.org/10.1016/0005-1098(81)90057-1 +Reinder Banning,State-space analysis and identification for a class of hysteretic systems.,2001,37,Automatica,12,db/journals/automatica/automatica37.html#BanningKAK01,https://doi.org/10.1016/S0005-1098(01)00157-1 +Emmanuel Moulay,Stabilization via homogeneous feedback controls.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#Moulay08,https://doi.org/10.1016/j.automatica.2008.05.003 +Abdel-Latif Elshafei,Adaptive GPC based on laguerre-filters modelling.,1994,30,Automatica,12,db/journals/automatica/automatica30.html#ElshafeiDE94,https://doi.org/10.1016/0005-1098(94)90051-5 +Xiang Yin,Decentralized fault prognosis of discrete event systems with guaranteed performance bound.,2016,69,Automatica,,db/journals/automatica/automatica69.html#YinL16,https://doi.org/10.1016/j.automatica.2016.03.015 +Le Yi Wang,Space and time complexities and sensor threshold selection in quantized identification.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#WangYZZ08,https://doi.org/10.1016/j.automatica.2008.04.022 +Giuseppe Conte,Exact output control for a family of linear plants with parameter uncertainties.,1996,32,Automatica,2,db/journals/automatica/automatica32.html#ConteJLP96,https://doi.org/10.1016/0005-1098(96)85550-6 +Huaping Liu,Design of Hinfinity filter for Markov jumping linear systems with non-accessible mode information.,2008,44,Automatica,10,db/journals/automatica/automatica44.html#LiuHS08,https://doi.org/10.1016/j.automatica.2008.03.011 +Maziar Izadi,Rigid body pose estimation based on the Lagrange-d'Alembert principle.,2016,71,Automatica,,db/journals/automatica/automatica71.html#IzadiS16,https://doi.org/10.1016/j.automatica.2016.04.028 +Andreas Moser,Extending the domain of definition of functional series for nonlinear systems.,1996,32,Automatica,8,db/journals/automatica/automatica32.html#Moser96,https://doi.org/10.1016/0005-1098(96)00056-8 +Didier Georges,A decentralized optimal LQ state observer based on an augmented Lagrangian approach.,2014,50,Automatica,5,db/journals/automatica/automatica50.html#GeorgesBD14,https://doi.org/10.1016/j.automatica.2014.03.006 +Pierre Bernhard,Jacques Louis Lions.,2002,38,Automatica,4,db/journals/automatica/automatica38.html#Bernhard02,https://doi.org/10.1016/S0005-1098(01)00283-7 +George S. Axelby,About this and future issues.,1969,5,Automatica,4,db/journals/automatica/automatica5.html#Axelby69d,https://doi.org/10.1016/0005-1098(69)90102-2 +BaoCang Ding,Further studies on LMI-based relaxed stabilization conditions for nonlinear systems in Takagi-Sugeno's form.,2006,42,Automatica,3,db/journals/automatica/automatica42.html#DingSY06,https://doi.org/10.1016/j.automatica.2005.11.005 +Ziyang Meng,Behaviors of networks with antagonistic interactions and switching topologies.,2016,73,Automatica,,db/journals/automatica/automatica73.html#MengSJCH16,https://doi.org/10.1016/j.automatica.2016.06.022 +Gérard Favier,A review of k-step-ahead predictors.,1990,26,Automatica,1,db/journals/automatica/automatica26.html#FavierD90,https://doi.org/10.1016/0005-1098(90)90159-F +Giorgio Quazza,Large scale control problems in electric power systems.,1977,13,Automatica,6,db/journals/automatica/automatica13.html#Quazza77,https://doi.org/10.1016/0005-1098(77)90079-6 +Muhammad Iqbal,Cartesian product-based hierarchical scheme for multi-agent systems.,2018,88,Automatica,,db/journals/automatica/automatica88.html#IqbalLN18,https://doi.org/10.1016/j.automatica.2017.11.009 +Jin Guo 0003,Recursive projection algorithm on FIR system identification with binary-valued observations.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#GuoZ13,https://doi.org/10.1016/j.automatica.2013.08.011 +Gianluigi Pillonetto,Distributed Kalman smoothing in static Bayesian networks.,2013,49,Automatica,4,db/journals/automatica/automatica49.html#PillonettoBF13,https://doi.org/10.1016/j.automatica.2013.01.016 +Prashant Mhaskar,Robust hybrid predictive control of nonlinear systems.,2005,41,Automatica,2,db/journals/automatica/automatica41.html#MhaskarEC05,https://doi.org/10.1016/j.automatica.2004.08.020 +Dong Shen,Iterative learning control for large scale nonlinear systems with observation noise.,2012,48,Automatica,3,db/journals/automatica/automatica48.html#ShenC12,https://doi.org/10.1016/j.automatica.2012.01.005 +Shuai Liu 0001,Distributed consensus for multi-agent systems with delays and noises in transmission channels.,2011,47,Automatica,5,db/journals/automatica/automatica47.html#LiuXZ11,https://doi.org/10.1016/j.automatica.2011.02.003 +Paolo Massioni,Subspace identification of circulant systems.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#MassioniV08,https://doi.org/10.1016/j.automatica.2008.04.014 +Tong Zhou,On the controllability and observability of networked dynamic systems.,2015,52,Automatica,,db/journals/automatica/automatica52.html#Zhou15,https://doi.org/10.1016/j.automatica.2014.10.121 +Gugan Thoppe,A stochastic Kaczmarz algorithm for network tomography.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#ThoppeBM14,https://doi.org/10.1016/j.automatica.2013.12.016 +Ali Saberi,H2 optimal controllers with measurement feedback for continuous-time systems - Flexibility in closed-loop pole placement.,1996,32,Automatica,8,db/journals/automatica/automatica32.html#SaberiSS96,https://doi.org/10.1016/0005-1098(96)00052-0 +Laura Menini,Exact and approximate feedback linearization without the linear controllability assumption.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#MeniniT12,https://doi.org/10.1016/j.automatica.2012.06.023 +Carlos Arturo Loredo-Villalobos,Necessary conditions for Hadamard factorizations of Hurwitz polynomials.,2011,47,Automatica,7,db/journals/automatica/automatica47.html#Loredo-VillalobosA11,https://doi.org/10.1016/j.automatica.2011.02.008 +John M. Carson III,A robust model predictive control algorithm augmented with a reactive safety mode.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#CarsonAMM13,https://doi.org/10.1016/j.automatica.2013.02.025 +Petro Feketa,Almost ISS property for feedback connected systems.,2017,79,Automatica,,db/journals/automatica/automatica79.html#FeketaSD17,https://doi.org/10.1016/j.automatica.2017.02.016 +Jun Fu,Motion/force tracking control of nonholonomic mechanical systems via combining cascaded design and backstepping.,2013,49,Automatica,12,db/journals/automatica/automatica49.html#FuCS013,https://doi.org/10.1016/j.automatica.2013.09.004 +Qian Wang,Robust control of nonlinear systems with parametric uncertainty.,2002,38,Automatica,9,db/journals/automatica/automatica38.html#WangS02,https://doi.org/10.1016/S0005-1098(02)00046-8 +Yongming Li 0002,Robust adaptive output feedback control to a class of non-triangular stochastic nonlinear systems.,2018,89,Automatica,,db/journals/automatica/automatica89.html#LiLF18,https://doi.org/10.1016/j.automatica.2017.12.020 +J. F. Barrett,Random signals and systems: Richard E. Mortensen.,1991,27,Automatica,2,db/journals/automatica/automatica27.html#Barrett91,https://doi.org/10.1016/0005-1098(91)90100-G +Basil Kouvaritakis,Linear Quadratic Feasible Predictive Control.,1998,34,Automatica,12,db/journals/automatica/automatica34.html#KouvaritakisRC98,https://doi.org/10.1016/S0005-1098(98)80012-5 +Ratnesh Kumar 0001,Maximally permissive mutually and globally nonblocking supervision with application to switching control.,2005,41,Automatica,8,db/journals/automatica/automatica41.html#KumarTFU05,https://doi.org/10.1016/j.automatica.2005.03.011 +Paolo Caravani,Doubly invariant equilibria of linear discrete-time games.,2002,38,Automatica,9,db/journals/automatica/automatica38.html#CaravaniS02,https://doi.org/10.1016/S0005-1098(02)00063-8 +Parag M. Patre,Composite adaptive control for Euler-Lagrange systems with additive disturbances.,2010,46,Automatica,1,db/journals/automatica/automatica46.html#PatreMJD10,https://doi.org/10.1016/j.automatica.2009.10.017 +K. Y. K. Ng,Dynamic programming algorithm for optimizing distributed parameter trajectories with constraints.,1980,16,Automatica,2,db/journals/automatica/automatica16.html#NgS80,https://doi.org/10.1016/0005-1098(80)90055-2 +Jun Xu 0008,Irredundant lattice representations of continuous piecewise affine functions.,2016,70,Automatica,,db/journals/automatica/automatica70.html#XuBSW16,https://doi.org/10.1016/j.automatica.2016.03.018 +Young Il Lee,Superposition in efficient robust constrained predictive control.,2002,38,Automatica,5,db/journals/automatica/automatica38.html#LeeK02,https://doi.org/10.1016/S0005-1098(01)00262-X +George Zames,Adaptive Control: Towards a Complexity-Based General Theory.,1998,34,Automatica,10,db/journals/automatica/automatica34.html#Zames98,https://doi.org/10.1016/S0005-1098(98)00089-2 +Georgios C. Chasparis,Design and implementation of distributed resource management for time-sensitive applications.,2016,64,Automatica,,db/journals/automatica/automatica64.html#ChasparisMBA16,https://doi.org/10.1016/j.automatica.2015.09.015 +Emmanuel Prempain,Feedforward control: a full-information approach.,2001,37,Automatica,1,db/journals/automatica/automatica37.html#PrempainP01,https://doi.org/10.1016/S0005-1098(00)00118-7 +Shun-ichi Azuma,Optimal dynamic quantizers for discrete-valued input control.,2008,44,Automatica,2,db/journals/automatica/automatica44.html#AzumaS08,https://doi.org/10.1016/j.automatica.2007.06.012 +John B. Moore,A note on a singular optimal control problem.,1969,5,Automatica,6,db/journals/automatica/automatica5.html#Moore69,https://doi.org/10.1016/0005-1098(69)90099-5 +Johan Thunberg,Distributed methods for synchronization of orthogonal matrices over graphs.,2017,80,Automatica,,db/journals/automatica/automatica80.html#ThunbergBG17,https://doi.org/10.1016/j.automatica.2017.02.025 +Johannes Reinschke,Designing robustly stabilising controllers for LTI spatially distributed systems using coprime factor synthesis.,2003,39,Automatica,2,db/journals/automatica/automatica39.html#ReinschkeS03,https://doi.org/10.1016/S0005-1098(02)00198-X +Jinsha Li,Adaptive consensus of multi-agent systems under quantized measurements via the edge Laplacian.,2018,92,Automatica,,db/journals/automatica/automatica92.html#LiHL18,https://doi.org/10.1016/j.automatica.2018.03.022 +Ying-Ju Chen,Supply chain structure and demand risk.,2006,42,Automatica,8,db/journals/automatica/automatica42.html#ChenS06a,https://doi.org/10.1016/j.automatica.2005.11.008 +Jun Zhao 0002,Stability of dynamical networks with non-identical nodes: A multiple v-Lyapunov function method.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#ZhaoHL11,https://doi.org/10.1016/j.automatica.2011.09.012 +Tae H. Lee,A novel Lyapunov functional for stability of time-varying delay systems via matrix-refined-function.,2017,80,Automatica,,db/journals/automatica/automatica80.html#LeeP17,https://doi.org/10.1016/j.automatica.2017.02.004 +Sung Jin Yoo,Distributed consensus tracking of a class of asynchronously switched nonlinear multi-agent systems.,2018,87,Automatica,,db/journals/automatica/automatica87.html#Yoo18,https://doi.org/10.1016/j.automatica.2017.04.006 +George S. Axelby,Automatica editorial staff changes - With additions.,1992,28,Automatica,2,db/journals/automatica/automatica28.html#Axelby92,https://doi.org/10.1016/0005-1098(92)90110-2 +David H. Owens 0001,Models and sensitivity of control systems: A. Wierzbicki.,1986,22,Automatica,2,db/journals/automatica/automatica22.html#Owens86,https://doi.org/10.1016/0005-1098(86)90093-2 +Markus Schöberl,Jet bundle formulation of infinite-dimensional port-Hamiltonian systems using differential operators.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#SchoberlS14,https://doi.org/10.1016/j.automatica.2013.11.035 +Li-Xin Wang,Automatic design of fuzzy controllers.,1999,35,Automatica,8,db/journals/automatica/automatica35.html#Wang99,https://doi.org/10.1016/S0005-1098(99)00044-8 +Mihály Petreczky,Realization theory of discrete-time linear switched systems.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#PetreczkyBS13,https://doi.org/10.1016/j.automatica.2013.07.022 +Jian-Xin Xu 0001,Robust Iterative Learning Control for a Class of Nonlinear Systems.,1998,34,Automatica,8,db/journals/automatica/automatica34.html#XuQ98,https://doi.org/10.1016/S0005-1098(98)00036-3 +Daniel Melchor-Aguilar,A note on stability of functional difference equations.,2016,67,Automatica,,db/journals/automatica/automatica67.html#Melchor-Aguilar16,https://doi.org/10.1016/j.automatica.2016.01.049 +Xianya Xie,Discrete-time adaptive control for deterministic time-varying systems.,1984,20,Automatica,3,db/journals/automatica/automatica20.html#XieE84,https://doi.org/10.1016/0005-1098(84)90046-3 +Po-Yuan Huang,Robust tracking of linear MIMO time-varying systems.,1994,30,Automatica,5,db/journals/automatica/automatica30.html#HuangC94,https://doi.org/10.1016/0005-1098(94)90171-6 +Chenliang Wang,Decentralized adaptive tracking control for a class of interconnected nonlinear systems with input quantization.,2017,81,Automatica,,db/journals/automatica/automatica81.html#WangWLW17,https://doi.org/10.1016/j.automatica.2017.03.010 +Tamer Basar,Transition in an Editorship.,2011,47,Automatica,5,db/journals/automatica/automatica47.html#Basar11,https://doi.org/10.1016/j.automatica.2011.03.011 +Jianhong Xu,A characterization of the generalized spectral radius with Kronecker powers.,2011,47,Automatica,7,db/journals/automatica/automatica47.html#XuX11,https://doi.org/10.1016/j.automatica.2011.04.007 +Frédéric Mazenc,Asymptotic stabilization for feedforward systems with delayed feedbacks.,2013,49,Automatica,3,db/journals/automatica/automatica49.html#MazencM13,https://doi.org/10.1016/j.automatica.2012.11.049 +Ajay Deshpande,Optimal coverage of an infrastructure network using sensors with distance-decaying sensing quality.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#DeshpandeSYM13,https://doi.org/10.1016/j.automatica.2013.07.029 +Alistair G. J. MacFarlane,Multivariable feedback systems: F.M. Callier and C.A. Desoer.,1984,20,Automatica,4,db/journals/automatica/automatica20.html#MacFarlane84,https://doi.org/10.1016/0005-1098(84)90112-2 +Bijnan Bandyopadhyay,A New Algorithm for Compensator Design for Higher-Order System via Reduced Model.,1998,34,Automatica,7,db/journals/automatica/automatica34.html#BandyopadhyayUP98,https://doi.org/10.1016/S0005-1098(98)00014-4 +Bernard Hanzon,Constructive algebra methods for the L2-problem for stable linear systems.,1996,32,Automatica,12,db/journals/automatica/automatica32.html#HanzonM96,https://doi.org/10.1016/S0005-1098(96)80002-1 +Bin Zhou 0001,Razumikhin and Krasovskii stability theorems for time-varying time-delay systems.,2016,71,Automatica,,db/journals/automatica/automatica71.html#ZhouE16,https://doi.org/10.1016/j.automatica.2016.04.048 +Jastej S. Dhingra,A computationally efficient technique for state estimation of nonlinear systems.,1992,28,Automatica,2,db/journals/automatica/automatica28.html#DhingraMVL92,https://doi.org/10.1016/0005-1098(92)90125-Y +Johan Nilsson,Stochastic analysis and control of real-time systems with random time delays.,1998,34,Automatica,1,db/journals/automatica/automatica34.html#NilssonBW98,https://doi.org/10.1016/S0005-1098(97)00170-2 +Eric F. Mulder,Multivariable anti-windup controller synthesis using linear matrix inequalities.,2001,37,Automatica,9,db/journals/automatica/automatica37.html#MulderKM01,https://doi.org/10.1016/S0005-1098(01)00075-9 +Anders Malmgren,A contraction property for state feedback design of linear discrete-time systems.,1994,30,Automatica,9,db/journals/automatica/automatica30.html#MalmgrenN94,https://doi.org/10.1016/0005-1098(94)90016-7 +P. Foudopoulos,An efficient approach to the detection of Bernoulli-Gaussian processes.,1994,30,Automatica,6,db/journals/automatica/automatica30.html#FoudopoulosKH94,https://doi.org/10.1016/0005-1098(94)90194-5 +Torsten Söderström,On covariance function tests used in system identification.,1990,26,Automatica,1,db/journals/automatica/automatica26.html#SoderstromS90,https://doi.org/10.1016/0005-1098(90)90164-D +Mark E. Halpern,Optimization-based design of fixed-order controllers for command following.,2002,38,Automatica,9,db/journals/automatica/automatica38.html#HalpernP02,https://doi.org/10.1016/S0005-1098(02)00045-6 +Harold Chestnut,25 Years of IFAC - From Heidelberg to Heidelberg.,1983,19,Automatica,3,db/journals/automatica/automatica19.html#Chestnut83,https://doi.org/10.1016/0005-1098(83)90115-2 +Cameron Nowzari,Self-triggered coordination of robotic networks for optimal deployment.,2012,48,Automatica,6,db/journals/automatica/automatica48.html#NowzariC12,https://doi.org/10.1016/j.automatica.2012.03.009 +Bo Qi,A two-step strategy for stabilizing control of quantum systems with uncertainties.,2013,49,Automatica,3,db/journals/automatica/automatica49.html#Qi13,https://doi.org/10.1016/j.automatica.2013.01.011 +Vicente Feliu,Matrix factorization method to stabilize multivariable control systems.,1987,23,Automatica,5,db/journals/automatica/automatica23.html#FeliuA87,https://doi.org/10.1016/0005-1098(87)90061-6 +H. Ramon,Power hydraulics: Michael J. Pinches and John G. Ashby.,1991,27,Automatica,2,db/journals/automatica/automatica27.html#Ramon91,https://doi.org/10.1016/0005-1098(91)90099-N +Hannu T. Toivonen,Fourier state-space analysis of linear discrete-time periodic systems.,2015,53,Automatica,,db/journals/automatica/automatica53.html#ToivonenH15,https://doi.org/10.1016/j.automatica.2014.12.042 +Edoardo Mosca,On the absence of positive realness conditions in self-tuning regulators based on explicit criterion minimization.,1987,23,Automatica,2,db/journals/automatica/automatica23.html#MoscaZ87,https://doi.org/10.1016/0005-1098(87)90103-8 +Kaushik Mahata,On the indirect approaches for CARMA model identification.,2007,43,Automatica,8,db/journals/automatica/automatica43.html#MahataF07,https://doi.org/10.1016/j.automatica.2007.01.007 +Chenda Liao,Distributed clock skew and offset estimation from relative measurements in mobile networks with Markovian switching topology.,2013,49,Automatica,10,db/journals/automatica/automatica49.html#LiaoB13,https://doi.org/10.1016/j.automatica.2013.07.015 +B. Hamzi,Ignored input dynamics and a new characterization of control Lyapunov functions.,2001,37,Automatica,6,db/journals/automatica/automatica37.html#HamziP01,https://doi.org/10.1016/S0005-1098(01)00026-7 +Zongyu Zuo,Nonsingular fixed-time consensus tracking for second-order multi-agent networks.,2015,54,Automatica,,db/journals/automatica/automatica54.html#Zuo15,https://doi.org/10.1016/j.automatica.2015.01.021 +Thomas J. McAvoy,Contemplative stance for chemical process control : An IFAC report.,1992,28,Automatica,2,db/journals/automatica/automatica28.html#McAvoy92,https://doi.org/10.1016/0005-1098(92)90134-2 +Thierry Floquet,Higher-order sliding mode stabilization for a class of nonholonomic perturbed systems.,2003,39,Automatica,6,db/journals/automatica/automatica39.html#FloquetBP03,https://doi.org/10.1016/S0005-1098(03)00076-1 +Peter B. Luh,Solutions and properties of multi-stage stackelberg games.,1984,20,Automatica,2,db/journals/automatica/automatica20.html#LuhCC84,https://doi.org/10.1016/0005-1098(84)90034-7 +Thomas Chambrion,Periodic excitations of bilinear quantum systems.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#Chambrion12,https://doi.org/10.1016/j.automatica.2012.03.031 +Yebin Wang,A Hamiltonian approach to compute an energy efficient trajectory for a servomotor system.,2013,49,Automatica,12,db/journals/automatica/automatica49.html#WangUB13,https://doi.org/10.1016/j.automatica.2013.09.019 +El-Kébir Boukas,Hinfinity control for discrete-time linear systems with Frobenius norm-bounded uncertainties.,1999,35,Automatica,9,db/journals/automatica/automatica35.html#BoukasS99,https://doi.org/10.1016/S0005-1098(99)00071-0 +Gilles Millerioux,On persistent excitations for the identification of switched linear dynamical systems over finite fields.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#MilleriouxD14,https://doi.org/10.1016/j.automatica.2014.10.050 +Linh Vu,Invertibility of switched linear systems.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#VuL08,https://doi.org/10.1016/j.automatica.2007.08.015 +Romain Postoyan,Robust backstepping for the Euler approximate model of sampled-data strict-feedback systems.,2009,45,Automatica,9,db/journals/automatica/automatica45.html#PostoyanAL09,https://doi.org/10.1016/j.automatica.2009.05.001 +Sergey Edward Lyshevski,State-Space Model Identification of Deterministic Nonlinear Systems: Nonlinear Mapping Technology and Application of the Lyapunov Theory.,1998,34,Automatica,5,db/journals/automatica/automatica34.html#Lyshevski98,https://doi.org/10.1016/S0005-1098(98)00002-8 +A. Nazli Gündes,Reliable stabilization with integral action in decentralized control systems.,1996,32,Automatica,7,db/journals/automatica/automatica32.html#GundesK96,https://doi.org/10.1016/0005-1098(96)00035-0 +Tsutomu Mita,A complete and simple parametrization of controllers for a nonstandard H∞ control problem.,1998,34,Automatica,3,db/journals/automatica/automatica34.html#MitaMA98,https://doi.org/10.1016/S0005-1098(97)00207-0 +Farnaz Adib Yaghmaie,Output regulation of linear heterogeneous multi-agent systems via output and state feedback.,2016,67,Automatica,,db/journals/automatica/automatica67.html#YaghmaieLS16,https://doi.org/10.1016/j.automatica.2016.01.040 +Wu-Hua Chen,Impulsive stabilization of a class of singular systems with time-delays.,2017,83,Automatica,,db/journals/automatica/automatica83.html#ChenZL17,https://doi.org/10.1016/j.automatica.2017.05.008 +Badong Chen,Maximum correntropy Kalman filter.,2017,76,Automatica,,db/journals/automatica/automatica76.html#ChenLZP17,https://doi.org/10.1016/j.automatica.2016.10.004 +Sarah C. Hamilton,Patterned linear systems.,2012,48,Automatica,2,db/journals/automatica/automatica48.html#HamiltonB12,https://doi.org/10.1016/j.automatica.2011.07.004 +Zhong-Ping Jiang,Tracking Control of Mobile Robots: A Case Study in Backstepping.,1997,33,Automatica,7,db/journals/automatica/automatica33.html#JiangN97,https://doi.org/10.1016/S0005-1098(97)00055-1 +David H. Owens 0001,Comments on 'On the equivalence of causal LTI iterative learning control and feedback control'.,2004,40,Automatica,5,db/journals/automatica/automatica40.html#OwensR04,https://doi.org/10.1016/j.automatica.2003.05.001 +Yoshikazu Sawaragi,Synthesis of open-loop optimal control with zero sensitive terminal constraints.,1969,5,Automatica,3,db/journals/automatica/automatica5.html#SawaragiIA69,https://doi.org/10.1016/0005-1098(69)90080-6 +Qin Liu,An LMI-based approach to distributed model predictive control design for spatially-interconnected systems.,2018,95,Automatica,,db/journals/automatica/automatica95.html#LiuAV18,https://doi.org/10.1016/j.automatica.2018.06.024 +Riccardo Marino,Robust adaptive compensation of biased sinusoidal disturbances with unknown frequency.,2003,39,Automatica,10,db/journals/automatica/automatica39.html#MarinoST03,https://doi.org/10.1016/S0005-1098(03)00170-5 +Thomas Berger,Disturbance decoupling by behavioral feedback for linear differential-algebraic systems.,2017,80,Automatica,,db/journals/automatica/automatica80.html#Berger17,https://doi.org/10.1016/j.automatica.2017.01.012 +S. P. Sanoff,Comments on: 'Implementation of self-tuning regulators with variable forgetting factors'.,1983,19,Automatica,3,db/journals/automatica/automatica19.html#SanoffW83,https://doi.org/10.1016/0005-1098(83)90117-6 +Ming Liu 0014,Sliding mode control of continuous-time Markovian jump systems with digital data transmission.,2017,80,Automatica,,db/journals/automatica/automatica80.html#LiuZSZ17,https://doi.org/10.1016/j.automatica.2017.02.002 +Miad Moarref,An obstruction to solvability of the reach control problem using affine feedback.,2016,71,Automatica,,db/journals/automatica/automatica71.html#MoarrefOB16,https://doi.org/10.1016/j.automatica.2016.04.033 +Han Ho Choi,On the existence of linear sliding surfaces for a class of uncertain dynamic systems with mismatched uncertainties.,1999,35,Automatica,10,db/journals/automatica/automatica35.html#Choi99,https://doi.org/10.1016/S0005-1098(99)00081-3 +Vojislav Kecman,Eigenvector approach for order reduction of singularly perturbed linear-quadratic optimal control problems.,1999,35,Automatica,1,db/journals/automatica/automatica35.html#KecmanBG99,https://doi.org/10.1016/S0005-1098(98)00141-1 +Keith R. Godfrey,Correlation methods.,1980,16,Automatica,5,db/journals/automatica/automatica16.html#Godfrey80,https://doi.org/10.1016/0005-1098(80)90076-X +Ernesto Estrada,Design of highly synchronizable and robust networks.,2010,46,Automatica,11,db/journals/automatica/automatica46.html#EstradaGC10,https://doi.org/10.1016/j.automatica.2010.06.046 +Craig D. Walrath,Adaptive bearing friction compensation based on recent knowledge of dynamic friction.,1984,20,Automatica,6,db/journals/automatica/automatica20.html#Walrath84,https://doi.org/10.1016/0005-1098(84)90081-5 +Rogelio Lozano,Model reference adaptive control with unknown high frequency gain sign.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#LozanoM93,https://doi.org/10.1016/0005-1098(93)90022-L +Yiannis Kantaros,Distributed communication-aware coverage control by mobile sensor networks.,2016,63,Automatica,,db/journals/automatica/automatica63.html#KantarosZ16,https://doi.org/10.1016/j.automatica.2015.10.035 +Kenji Kashima,System theory for numerical analysis.,2007,43,Automatica,7,db/journals/automatica/automatica43.html#KashimaY07,https://doi.org/10.1016/j.automatica.2006.12.028 +Xiaofeng Wang,On event design in event-triggered feedback systems.,2011,47,Automatica,10,db/journals/automatica/automatica47.html#WangL11,https://doi.org/10.1016/j.automatica.2011.05.027 +Yongduan Song,Indirect neuroadaptive control of unknown MIMO systems tracking uncertain target under sensor failures.,2017,77,Automatica,,db/journals/automatica/automatica77.html#SongZZ17,https://doi.org/10.1016/j.automatica.2016.11.034 +Zhiqiang Miao,Collision-free consensus in multi-agent networks: A monotone systems perspective.,2016,64,Automatica,,db/journals/automatica/automatica64.html#MiaoWF16,https://doi.org/10.1016/j.automatica.2015.11.025 +P. A. Janakiraman,Recursive computation of pseudo-inverse of matrices.,1982,18,Automatica,5,db/journals/automatica/automatica18.html#JanakiramanR82,https://doi.org/10.1016/0005-1098(82)90015-2 +Yanjie Li,A unified approach to time-aggregated Markov decision processes.,2016,67,Automatica,,db/journals/automatica/automatica67.html#LiW16a,https://doi.org/10.1016/j.automatica.2015.12.022 +Mark Cannon,Model predictive control for systems with stochastic multiplicative uncertainty and probabilistic constraints.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#CannonKW09,https://doi.org/10.1016/j.automatica.2008.06.017 +Pieter Eykhoff,Identification and system parameter estimation* where do we stand now?,1990,26,Automatica,1,db/journals/automatica/automatica26.html#EykhoffP90,https://doi.org/10.1016/0005-1098(90)90153-9 +Wenxue Li,Global stability analysis for stochastic coupled systems on networks.,2011,47,Automatica,1,db/journals/automatica/automatica47.html#LiSW11,https://doi.org/10.1016/j.automatica.2010.10.041 +Gustav S. Christensen,Optimal filtering of linear discrete dynamic systems based on least absolute value approximations.,1990,26,Automatica,2,db/journals/automatica/automatica26.html#ChristensenS90,https://doi.org/10.1016/0005-1098(90)90134-4 +Murad Abu-Khalaf,Nearly optimal control laws for nonlinear systems with saturating actuators using a neural network HJB approach.,2005,41,Automatica,5,db/journals/automatica/automatica41.html#Abu-KhalafL05,https://doi.org/10.1016/j.automatica.2004.11.034 +Anton G. Madievski,Optimum realizations of sampled-data controllers for FWL sensitivity minimization.,1995,31,Automatica,3,db/journals/automatica/automatica31.html#MadievskiAG95,https://doi.org/10.1016/0005-1098(94)00112-V +Altug Iftar,A game theoretic approach to the optimal control of uncertain systems.,1996,32,Automatica,12,db/journals/automatica/automatica32.html#IftarO96,https://doi.org/10.1016/S0005-1098(96)80014-8 +Guangchen Wang,An optimal control problem for mean-field forward-backward stochastic differential equation with noisy observation.,2017,86,Automatica,,db/journals/automatica/automatica86.html#WangXX17,https://doi.org/10.1016/j.automatica.2017.07.018 +Marcello Montanari,A speed-sensorless indirect field-oriented control for induction motors based on high gain speed estimation.,2006,42,Automatica,10,db/journals/automatica/automatica42.html#MontanariPT06,https://doi.org/10.1016/j.automatica.2006.05.021 +Xiangze Lin,Smooth output feedback stabilization of a class of planar switched nonlinear systems under arbitrary switchings.,2017,82,Automatica,,db/journals/automatica/automatica82.html#LinCQ17,https://doi.org/10.1016/j.automatica.2017.03.020 +Karl Heinz Fasol,Principles of model building and identification.,1980,16,Automatica,5,db/journals/automatica/automatica16.html#FasolJ80,https://doi.org/10.1016/0005-1098(80)90074-6 +Ulrich Münz,Delay robustness in consensus problems.,2010,46,Automatica,8,db/journals/automatica/automatica46.html#MunzPA10,https://doi.org/10.1016/j.automatica.2010.04.008 +Mohammed M'Saad,Partial state reference model (adaptive) control of a benchmark example.,1994,30,Automatica,4,db/journals/automatica/automatica30.html#MSaadH94,https://doi.org/10.1016/0005-1098(94)90148-1 +Xiaoping Liu,Global decentralized robust stabilization for interconnected uncertain nonlinear systems with multiple inputs.,2001,37,Automatica,9,db/journals/automatica/automatica37.html#LiuH01,https://doi.org/10.1016/S0005-1098(01)00086-3 +Hossein M. Oloomi,H∞ model matching problem for singularly perturbed systems.,1996,32,Automatica,3,db/journals/automatica/automatica32.html#OloomiS96,https://doi.org/10.1016/0005-1098(95)00170-0 +Libei Chen,A case study of adaptive nonlinear regulation of fed-batch biological reactors.,1995,31,Automatica,1,db/journals/automatica/automatica31.html#ChenBB95,https://doi.org/10.1016/0005-1098(94)00068-T +László Keviczky,Self-tuning adaptive control of cement raw material blending.,1978,14,Automatica,6,db/journals/automatica/automatica14.html#KeviczkyHHK78,https://doi.org/10.1016/0005-1098(78)90042-0 +Hideaki Kanoh,Nonlinear systems vol. 1: Dynamics and control* vol. 2: Applications to bilinear control: Ronald R. Mohler.,1992,28,Automatica,4,db/journals/automatica/automatica28.html#Kanoh92,https://doi.org/10.1016/0005-1098(92)90051-G +T. Alamo,A set-membership state estimation algorithm based on DC programming.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#AlamoBRC08,https://doi.org/10.1016/j.automatica.2007.05.008 +Anton S. Shiriaev,Stabilization of invariant sets for nonlinear non-affine systems.,2000,36,Automatica,11,db/journals/automatica/automatica36.html#ShiriaevF00,https://doi.org/10.1016/S0005-1098(00)00077-7 +Dejan M. Boskovic,Nonlinear stabilization of a thermal convection loop by state feedback.,2001,37,Automatica,12,db/journals/automatica/automatica37.html#BoskovicK01,https://doi.org/10.1016/S0005-1098(01)00169-8 +Alexander Yu. Pogromsky,On solution concepts and well-posedness of linear relay systems.,2003,39,Automatica,12,db/journals/automatica/automatica39.html#PogromskyHN03,https://doi.org/10.1016/S0005-1098(03)00237-1 +H. Wong,Adaptive tracking control using synthesized velocity from attitude measurements.,2001,37,Automatica,6,db/journals/automatica/automatica37.html#WongQK01,https://doi.org/10.1016/S0005-1098(01)00038-3 +Fernando C. Lizarralde,Adaptive visual servoing scheme free of image velocity measurement for uncertain robot manipulators.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#LizarraldeLHC13,https://doi.org/10.1016/j.automatica.2013.01.047 +Wenlian Lu,Contraction and incremental stability of switched Carathéodory systems using multiple norms.,2016,70,Automatica,,db/journals/automatica/automatica70.html#LuB16,https://doi.org/10.1016/j.automatica.2016.02.039 +Matías García-Rivera,Analysis of networked control systems with drops and variable delays.,2007,43,Automatica,12,db/journals/automatica/automatica43.html#Garcia-RiveraB07,https://doi.org/10.1016/j.automatica.2007.03.027 +Tibor Vámos,Automation production systems and computer integrated manufacturing: Mikell P. Groover.,1988,24,Automatica,4,db/journals/automatica/automatica24.html#Vamos88a,https://doi.org/10.1016/0005-1098(88)90106-9 +Milad Siami,New spectral bounds on H2-norm of linear dynamical networks.,2017,80,Automatica,,db/journals/automatica/automatica80.html#SiamiM17,https://doi.org/10.1016/j.automatica.2017.01.043 +Kunihisa Okano,Characterization of a complementary sensitivity property in feedback control: An information theoretic approach.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#OkanoHI09,https://doi.org/10.1016/j.automatica.2008.08.011 +Alan A. Desrochers,On an improved model reduction technique for nonlinear systems.,1981,17,Automatica,2,db/journals/automatica/automatica17.html#Desrochers81,https://doi.org/10.1016/0005-1098(81)90061-3 +M. M'Saad,Partial state reference model adaptive control of multivariable systems.,1992,28,Automatica,6,db/journals/automatica/automatica28.html#MSaadS92,https://doi.org/10.1016/0005-1098(92)90060-S +Canghua Jiang,A suboptimal feedback control for nonlinear time-varying systems with continuous inequality constraints.,2012,48,Automatica,4,db/journals/automatica/automatica48.html#JiangTD12,https://doi.org/10.1016/j.automatica.2012.01.019 +Alexander Scheinker,Bounded extremum seeking with discontinuous dithers.,2016,69,Automatica,,db/journals/automatica/automatica69.html#ScheinkerS16,https://doi.org/10.1016/j.automatica.2016.02.023 +Yanjun Liu 0001,An efficient hierarchical identification method for general dual-rate sampled-data systems.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#LiuDS14,https://doi.org/10.1016/j.automatica.2013.12.025 +Hervé Chapellat,Extremal robustness properties of multilinear interval systems.,1994,30,Automatica,6,db/journals/automatica/automatica30.html#ChapellatKB94,https://doi.org/10.1016/0005-1098(94)90198-8 +Oswaldo Luiz do Valle Costa,Filtering and#8466*-coupled algebraic Riccati equations for discrete-time Markov jump systems.,2017,83,Automatica,,db/journals/automatica/automatica83.html#CostaF17,https://doi.org/10.1016/j.automatica.2017.05.007 +Cristiano Maria Verrelli,Repetitive learning position control for full order model permanent magnet step motors.,2016,63,Automatica,,db/journals/automatica/automatica63.html#VerrelliTSB16,https://doi.org/10.1016/j.automatica.2015.10.038 +Hajime Akashi,Random sampling approach to state estimation in switching environments.,1977,13,Automatica,4,db/journals/automatica/automatica13.html#AkashiK77,https://doi.org/10.1016/0005-1098(77)90028-0 +N. Eva Wu,Control reconfigurability of linear time-invariant systems.,2000,36,Automatica,11,db/journals/automatica/automatica36.html#WuZS00,https://doi.org/10.1016/S0005-1098(00)00080-7 +Alessio Franci,Existence and robustness of phase-locking in coupled Kuramoto oscillators under mean-field feedback.,2011,47,Automatica,6,db/journals/automatica/automatica47.html#FranciCP11,https://doi.org/10.1016/j.automatica.2011.03.003 +Dongping Song,Optimal Service Control of a Serial Production Line with Unreliable Workstations and Random Demand.,1998,34,Automatica,9,db/journals/automatica/automatica34.html#SongS98,https://doi.org/10.1016/S0005-1098(98)00050-8 +Luc Jaulin,Robust set-membership state estimation* application to underwater robotics.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#Jaulin09,https://doi.org/10.1016/j.automatica.2008.06.013 +Yang-Yang Qian,An implicit sequential algorithm for solving coupled Lyapunov equations of continuous-time Markovian jump systems.,2015,60,Automatica,,db/journals/automatica/automatica60.html#QianP15,https://doi.org/10.1016/j.automatica.2015.07.011 +Xinghu Wang,Robust almost output consensus in networks of nonlinear agents with external disturbances.,2016,70,Automatica,,db/journals/automatica/automatica70.html#WangXJ16,https://doi.org/10.1016/j.automatica.2016.03.022 +T. Rajagopalan,Pole assignment with output feedback.,1984,20,Automatica,1,db/journals/automatica/automatica20.html#Rajagopalan84,https://doi.org/10.1016/0005-1098(84)90074-8 +Tadashi Ishihara,A design of discrete-time integral controllers with computation delays via loop transfer recovery.,1992,28,Automatica,3,db/journals/automatica/automatica28.html#IshiharaGT92,https://doi.org/10.1016/0005-1098(92)90184-H +Ankur A. Kulkarni,On the variational equilibrium as a refinement of the generalized Nash equilibrium.,2012,48,Automatica,1,db/journals/automatica/automatica48.html#KulkarniS12,https://doi.org/10.1016/j.automatica.2011.09.042 +Andrey Polyakov,Output stabilization of time-varying input delay systems using interval observation technique.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#PolyakovEPR13,https://doi.org/10.1016/j.automatica.2013.08.012 +Jun Liu 0015,Stochastic consensus seeking with communication delays.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#LiuLXZ11,https://doi.org/10.1016/j.automatica.2011.09.005 +Yun-Hui Liu,Adaptive visual servoing using common image features with unknown geometric parameters.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#LiuWCZ13,https://doi.org/10.1016/j.automatica.2013.04.018 +Chien-Shu Hsieh,Unbiased minimum-variance input and state estimation for systems with unknown inputs: A system reformation approach.,2017,84,Automatica,,db/journals/automatica/automatica84.html#Hsieh17,https://doi.org/10.1016/j.automatica.2017.06.037 +Douglas G. Robertson,On the use of constraints in least squares estimation and control.,2002,38,Automatica,7,db/journals/automatica/automatica38.html#RobertsonL02,https://doi.org/10.1016/S0005-1098(02)00029-8 +Ying Luo,Stabilizing and robust fractional order PI controller synthesis for first order plus time delay systems.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#LuoC12,https://doi.org/10.1016/j.automatica.2012.05.072 +Stefan Wrzaczek,Anticipation in innovative investment under oligopolistic competition.,2012,48,Automatica,11,db/journals/automatica/automatica48.html#WrzaczekK12,https://doi.org/10.1016/j.automatica.2012.08.007 +Bruno Siciliano,A passivity-based approach to force regulation and motion control of robot manipulators.,1996,32,Automatica,3,db/journals/automatica/automatica32.html#SicilianoV96,https://doi.org/10.1016/0005-1098(95)00173-5 +Denis V. Efimov,Uniting global and local controllers under acting disturbances.,2006,42,Automatica,3,db/journals/automatica/automatica42.html#Efimov06,https://doi.org/10.1016/j.automatica.2005.11.003 +Luca Scardovi,Synchronization in networks of identical linear systems.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#ScardoviS09,https://doi.org/10.1016/j.automatica.2009.07.006 +Thomas B. Sheridan,Telerobotics.,1989,25,Automatica,4,db/journals/automatica/automatica25.html#Sheridan89,https://doi.org/10.1016/0005-1098(89)90093-9 +Torsten Söderström,A covariance matching approach for identifying errors-in-variables systems.,2009,45,Automatica,9,db/journals/automatica/automatica45.html#SoderstromMH09,https://doi.org/10.1016/j.automatica.2009.05.010 +Weifeng Liu,Structure modeling and estimation of multiple resolvable group targets via graph theory and multi-Bernoulli filter.,2018,89,Automatica,,db/journals/automatica/automatica89.html#LiuZWY18,https://doi.org/10.1016/j.automatica.2017.12.004 +Marion Gilson,On the relation between a bias-eliminated least-squares (BELS) and an IV estimator in closed-loop identification.,2001,37,Automatica,10,db/journals/automatica/automatica37.html#GilsonH01,https://doi.org/10.1016/S0005-1098(01)00119-4 +John N. Tsitsiklis,Average cost temporal-difference learning.,1999,35,Automatica,11,db/journals/automatica/automatica35.html#TsitsiklisR99,https://doi.org/10.1016/S0005-1098(99)00099-0 +Eveline Gottzein,Control aspects of a tracked magnetic levitation high speed test vehicle.,1977,13,Automatica,3,db/journals/automatica/automatica13.html#GottzeinBSP77,https://doi.org/10.1016/0005-1098(77)90048-6 +Pontus Giselsson,Accelerated gradient methods and dual decomposition in distributed model predictive control.,2013,49,Automatica,3,db/journals/automatica/automatica49.html#GiselssonDKSR13,https://doi.org/10.1016/j.automatica.2013.01.009 +Bing-Chang Wang,Distributed control of multi-agent systems with random parameters and a major agent.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#WangZ12,https://doi.org/10.1016/j.automatica.2012.06.050 +Peter Van Overschee,A unifying theorem for three subspace system identification algorithms.,1995,31,Automatica,12,db/journals/automatica/automatica31.html#OverscheeM95,https://doi.org/10.1016/0005-1098(95)00072-0 +David G. Luenberger,Time-invariant descriptor systems.,1978,14,Automatica,5,db/journals/automatica/automatica14.html#Luenberger78,https://doi.org/10.1016/0005-1098(78)90006-7 +Taketoshi Yoshida,Quadratic regulatory theory for analytic non-linear systems with additive controls.,1989,25,Automatica,4,db/journals/automatica/automatica25.html#YoshidaL89,https://doi.org/10.1016/0005-1098(89)90096-4 +Athanasios C. Antoulas,On the choice of inputs in identification for robust control.,1999,35,Automatica,6,db/journals/automatica/automatica35.html#AntoulasA99,https://doi.org/10.1016/S0005-1098(99)00002-3 +Changchun Hua,Exponential stabilization controller design for interconnected time delay systems.,2008,44,Automatica,10,db/journals/automatica/automatica44.html#HuaWG08,https://doi.org/10.1016/j.automatica.2008.02.010 +Victor F. Sokolov,Closed-loop identification for the best asymptotic performance of adaptive robust control.,1996,32,Automatica,8,db/journals/automatica/automatica32.html#Sokolov96,https://doi.org/10.1016/0005-1098(96)00044-1 +Orhan C. Imer,Optimal control of LTI systems over unreliable communication links.,2006,42,Automatica,9,db/journals/automatica/automatica42.html#ImerYB06,https://doi.org/10.1016/j.automatica.2006.03.011 +Soroosh Sorooshian,Large scale systems modelling: M. S. Mahmoud and M. G. Singh.,1983,19,Automatica,3,db/journals/automatica/automatica19.html#SorooshianC83,https://doi.org/10.1016/0005-1098(83)90121-8 +Brian G. Romanchuk,Incremental gain analysis of piecewise linear systems and application to the antiwindup problem.,1999,35,Automatica,7,db/journals/automatica/automatica35.html#RomanchukS99,https://doi.org/10.1016/S0005-1098(99)00023-0 +Zhijian Ji,A new perspective on criteria and algorithms for reachability of discrete-time switched linear systems.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#JiLL09,https://doi.org/10.1016/j.automatica.2009.02.024 +H. W. Smith,Dynamic control of a two-stand cold mill.,1969,5,Automatica,2,db/journals/automatica/automatica5.html#Smith69,https://doi.org/10.1016/0005-1098(69)90012-0 +Francesca Ceragioli,Discontinuities and hysteresis in quantized average consensus.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#CeragioliPF11,https://doi.org/10.1016/j.automatica.2011.06.020 +Qinghua Li,Fast reference governors for second-order linear systems with constraints and an input time-delay.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#LiKK14,https://doi.org/10.1016/j.automatica.2013.11.007 +István Vajk,Identification methods in a unified framework.,2005,41,Automatica,8,db/journals/automatica/automatica41.html#Vajk05,https://doi.org/10.1016/j.automatica.2005.03.012 +Jesse B. Hoagg,Decentralized filtered dynamic inversion for uncertain minimum-phase systems.,2015,61,Automatica,,db/journals/automatica/automatica61.html#HoaggS15,https://doi.org/10.1016/j.automatica.2015.08.012 +P. Vedagarbha,An adaptive controller for a general class of switched reluctance motor models.,1997,33,Automatica,9,db/journals/automatica/automatica33.html#VedagarbhaDR97,https://doi.org/10.1016/S0005-1098(97)00087-3 +R. M. Tong,A control engineering review of fuzzy systems.,1977,13,Automatica,6,db/journals/automatica/automatica13.html#Tong77,https://doi.org/10.1016/0005-1098(77)90077-2 +Hiroshi Ito 0001,Stability of stochastic nonlinear systems in cascade with not necessarily unbounded decay rates.,2015,62,Automatica,,db/journals/automatica/automatica62.html#ItoN15,https://doi.org/10.1016/j.automatica.2015.09.011 +Maarten Schoukens,Identification of Wiener-Hammerstein systems by a nonparametric separation of the best linear approximation.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#SchoukensPR14,https://doi.org/10.1016/j.automatica.2013.12.027 +Jing Zhou,Decentralized adaptive control for large-scale time-delay systems with dead-zone input.,2008,44,Automatica,7,db/journals/automatica/automatica44.html#Zhou08,https://doi.org/10.1016/j.automatica.2007.10.037 +Han Ho Choi,Observer-based H∞ controller design for state delayed linear systems.,1996,32,Automatica,7,db/journals/automatica/automatica32.html#ChoiC96,https://doi.org/10.1016/0005-1098(96)00014-3 +Gianluigi Pillonetto,Input estimation in nonlinear dynamical systems using differential algebra techniques.,2006,42,Automatica,12,db/journals/automatica/automatica42.html#PillonettoS06,https://doi.org/10.1016/j.automatica.2006.07.014 +Edward J. Davison,Remark on multiple transmission zeros of a system.,1976,12,Automatica,2,db/journals/automatica/automatica12.html#DavisonW76,https://doi.org/10.1016/0005-1098(76)90083-2 +Christophe Farges,Pseudo-state feedback stabilization of commensurate fractional order systems.,2010,46,Automatica,10,db/journals/automatica/automatica46.html#FargesMS10,https://doi.org/10.1016/j.automatica.2010.06.038 +Liangquan Zhang,Observability conservation by output feedback and observability Gramian bounds.,2015,60,Automatica,,db/journals/automatica/automatica60.html#ZhangZ15,https://doi.org/10.1016/j.automatica.2015.06.031 +Peng Yi,Initialization-free distributed algorithms for optimal resource allocation with feasibility constraints and application to economic dispatch of power systems.,2016,74,Automatica,,db/journals/automatica/automatica74.html#YiHL16,https://doi.org/10.1016/j.automatica.2016.08.007 +Fernando Daniel Bianchi,Multivariable PID control with set-point weighting via BMI optimisation.,2008,44,Automatica,2,db/journals/automatica/automatica44.html#BianchiMC08,https://doi.org/10.1016/j.automatica.2007.05.021 +Yangquan Chen,Analysis of a high-order iterative learning control algorithm for uncertain nonlinear systems with state delays.,1998,34,Automatica,3,db/journals/automatica/automatica34.html#ChenGW98,https://doi.org/10.1016/S0005-1098(97)00196-9 +Graham C. Goodwin,Non-stationary stochastic embedding for transfer function estimation.,2002,38,Automatica,1,db/journals/automatica/automatica38.html#GoodwinBS02,https://doi.org/10.1016/S0005-1098(01)00186-8 +Alireza Karimi,Fixed-order H INFINITY controller design for nonparametric models by convex optimization.,2010,46,Automatica,8,db/journals/automatica/automatica46.html#KarimiG10,https://doi.org/10.1016/j.automatica.2010.05.019 +Ji Liu 0001,Request-based gossiping without deadlocks.,2018,93,Automatica,,db/journals/automatica/automatica93.html#LiuMMAY18,https://doi.org/10.1016/j.automatica.2018.03.001 +Fabien Lauer,Global optimization for low-dimensional switching linear regression and bounded-error estimation.,2018,89,Automatica,,db/journals/automatica/automatica89.html#Lauer18,https://doi.org/10.1016/j.automatica.2017.11.026 +David D. Sworder,Control of linear jump systems in noise.,1999,35,Automatica,2,db/journals/automatica/automatica35.html#SworderB99,https://doi.org/10.1016/S0005-1098(98)00147-2 +Kumpati S. Narendra,Direct and indirect model reference adaptive control.,1979,15,Automatica,6,db/journals/automatica/automatica15.html#NarendraV79,https://doi.org/10.1016/0005-1098(79)90033-5 +Gregor Goebel,Semi-explicit MPC based on subspace clustering.,2017,83,Automatica,,db/journals/automatica/automatica83.html#GoebelA17,https://doi.org/10.1016/j.automatica.2017.06.036 +Mohammad Naghnaeian,Performance optimization over positive l∞ cones.,2017,80,Automatica,,db/journals/automatica/automatica80.html#NaghnaeianV17,https://doi.org/10.1016/j.automatica.2017.02.038 +Miroslav Simandl,Derivative-free estimation methods: New results and performance analysis.,2009,45,Automatica,7,db/journals/automatica/automatica45.html#SimandlD09,https://doi.org/10.1016/j.automatica.2009.03.008 +M. Perron,A survey of control strategies in chemical pulp plants.,1977,13,Automatica,4,db/journals/automatica/automatica13.html#PerronR77,https://doi.org/10.1016/0005-1098(77)90021-8 +Derya H. Cansever,Optimum/near-optimum incentive policies for stochastic decision problems involving parametric uncertainty.,1985,21,Automatica,5,db/journals/automatica/automatica21.html#CanseverB85,https://doi.org/10.1016/0005-1098(85)90006-8 +Somayeh Sojoudi,Overlapping control systems with optimal information exchange.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#SojoudiA09,https://doi.org/10.1016/j.automatica.2009.01.002 +Malcolm C. Smith,On the order of stable compensators.,1986,22,Automatica,1,db/journals/automatica/automatica22.html#SmithS86,https://doi.org/10.1016/0005-1098(86)90114-7 +Yurii Nesterov,Confidence level solutions for stochastic programming.,2008,44,Automatica,6,db/journals/automatica/automatica44.html#NesterovV08,https://doi.org/10.1016/j.automatica.2008.01.017 +Yibing Sun,Dynamic state estimation for power networks using distributed MAP technique.,2016,73,Automatica,,db/journals/automatica/automatica73.html#SunFWZM16,https://doi.org/10.1016/j.automatica.2016.06.015 +Jacques L. Willems,Lineare kontrolltheorie: H.W. Knobloch and H. Kwakernaak.,1987,23,Automatica,4,db/journals/automatica/automatica23.html#Willems87a,https://doi.org/10.1016/0005-1098(87)90084-7 +Huaguang Zhang,Stability analysis for linear delayed systems via an optimally dividing delay interval approach.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#ZhangL11,https://doi.org/10.1016/j.automatica.2011.06.003 +Keun-Ho Rew,An impulse-time perturbation approach for enhancing the robustness of extra-insensitive input shapers.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#RewHK13,https://doi.org/10.1016/j.automatica.2013.08.015 +Yilin Wang,An improved dynamic quantization scheme for uncertain linear networked control systems.,2018,92,Automatica,,db/journals/automatica/automatica92.html#WangY18,https://doi.org/10.1016/j.automatica.2018.02.007 +Elias Karakitsos,Optimal fixed rules and simple feedback laws in the design of economic policy.,1985,21,Automatica,2,db/journals/automatica/automatica21.html#KarakitsosR85,https://doi.org/10.1016/0005-1098(85)90111-6 +Alexander L. Fradkov,Passification based synchronization of nonlinear systems under communication constraints and bounded disturbances.,2015,55,Automatica,,db/journals/automatica/automatica55.html#FradkovAA15,https://doi.org/10.1016/j.automatica.2015.03.012 +Kenji Kashima,Oscillation analysis of linearly coupled piecewise affine systems: Application to spatio-temporal neuron dynamics.,2011,47,Automatica,6,db/journals/automatica/automatica47.html#KashimaKI11,https://doi.org/10.1016/j.automatica.2011.02.039 +Marcel Heertjes,Stability and performance of a variable gain controller with application to a dvd storage drive.,2004,40,Automatica,4,db/journals/automatica/automatica40.html#HeertjesS04,https://doi.org/10.1016/j.automatica.2003.12.005 +Arie Levant,Weighted homogeneity and robustness of sliding mode control.,2016,72,Automatica,,db/journals/automatica/automatica72.html#LevantL16,https://doi.org/10.1016/j.automatica.2016.06.014 +Ramachandra Rao Kolluri,Stability and active power sharing in droop controlled inverter interfaced microgrids: Effect of clock mismatches.,2018,93,Automatica,,db/journals/automatica/automatica93.html#KolluriMABHT18,https://doi.org/10.1016/j.automatica.2018.03.025 +Magdi S. Mahmoud,On the use of reduced-order models in output feedback design of discrete systems.,1985,21,Automatica,4,db/journals/automatica/automatica21.html#MahmoudS85,https://doi.org/10.1016/0005-1098(85)90085-8 +Yoshio Ebihara,A dilated LMI approach to robust performance analysis of linear time-invariant uncertain systems.,2005,41,Automatica,11,db/journals/automatica/automatica41.html#EbiharaH05,https://doi.org/10.1016/j.automatica.2005.05.023 +Jun Zhao 0002,Vector L2-gain and stability of feedback switched systems.,2009,45,Automatica,7,db/journals/automatica/automatica45.html#ZhaoH09,https://doi.org/10.1016/j.automatica.2009.02.026 +Weihua Li,Subspace identification for FDI in systems with non-uniformly sampled multirate data.,2006,42,Automatica,4,db/journals/automatica/automatica42.html#LiHS06,https://doi.org/10.1016/j.automatica.2005.11.010 +Brian D. O. Anderson,An approach to multivariable system identification.,1977,13,Automatica,4,db/journals/automatica/automatica13.html#Anderson77,https://doi.org/10.1016/0005-1098(77)90024-3 +Vikram Kapila,Memoryless H∞ Controllers for Discrete-Time Systems with Time Delay.,1998,34,Automatica,9,db/journals/automatica/automatica34.html#KapilaH98,https://doi.org/10.1016/S0005-1098(98)00054-5 +Pieter Eykhoff,"Special issue of Automatica on ""identification and systems parameter estimation"".",1989,25,Automatica,6,db/journals/automatica/automatica25.html#EykhoffP89,https://doi.org/10.1016/0005-1098(89)90047-2 +Zairong Xi,Global adaptive output regulation of a class of nonlinear systems with nonlinear exosystems.,2007,43,Automatica,1,db/journals/automatica/automatica43.html#XiD07,https://doi.org/10.1016/j.automatica.2006.08.011 +Martin Lazar,Greedy controllability of finite dimensional linear systems.,2016,74,Automatica,,db/journals/automatica/automatica74.html#LazarZ16,https://doi.org/10.1016/j.automatica.2016.08.010 +Witold Pedrycz,Experience-consistent modeling: Regression and classification problems.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#PedryczR09,https://doi.org/10.1016/j.automatica.2008.07.010 +Dong Yue,Delayed feedback control of uncertain systems with time-varying input delay.,2005,41,Automatica,2,db/journals/automatica/automatica41.html#YueH05,https://doi.org/10.1016/j.automatica.2004.09.006 +Ali Bazaei,An analysis of signal transformation approach to triangular waveform tracking.,2011,47,Automatica,4,db/journals/automatica/automatica47.html#BazaeiMS11,https://doi.org/10.1016/j.automatica.2011.01.075 +Hoi Tin Kong,A trend-following strategy: Conditions for optimality.,2011,47,Automatica,4,db/journals/automatica/automatica47.html#KongZY11,https://doi.org/10.1016/j.automatica.2011.01.039 +Arun Ghosh,Decentralized simultaneous stabilization of a class of two MIMO systems using a continuous-time periodic controller.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#Ghosh13,https://doi.org/10.1016/j.automatica.2013.02.063 +Guido Herrmann,A robust override scheme enforcing strict output constraints for a class of strictly proper systems.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#HerrmannTP08,https://doi.org/10.1016/j.automatica.2007.06.021 +Xu Chen 0001,Pseudo Youla-Kucera parameterization with control of the waterbed effect for local loop shaping.,2015,62,Automatica,,db/journals/automatica/automatica62.html#ChenJT15,https://doi.org/10.1016/j.automatica.2015.09.029 +Marco Ariola,Hinifinity optimal terminal control for linear systems with delayed states and controls.,2008,44,Automatica,10,db/journals/automatica/automatica44.html#AriolaP08,https://doi.org/10.1016/j.automatica.2008.02.015 +Chin-Yao Chang,Distributed control of inverter-based lossy microgrids for power sharing and frequency regulation under voltage constraints.,2016,66,Automatica,,db/journals/automatica/automatica66.html#Chang016,https://doi.org/10.1016/j.automatica.2015.12.014 +Erik Noldus,Non-linear model following.,1987,23,Automatica,3,db/journals/automatica/automatica23.html#Noldus87,https://doi.org/10.1016/0005-1098(87)90012-4 +Arne Tyssø,Modelling and parameter estimation of a ship boiler.,1981,17,Automatica,1,db/journals/automatica/automatica17.html#Tysso81,https://doi.org/10.1016/0005-1098(81)90091-1 +Kazuhiko Terashima,Decomposition and stability of linear systems with multiplicative noise.,1984,20,Automatica,6,db/journals/automatica/automatica20.html#TerashimaA84,https://doi.org/10.1016/0005-1098(84)90086-4 +Jesús Picó,Stability preserving maps for finite-time convergence: Super-twisting sliding-mode algorithm.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#PicoPVB13,https://doi.org/10.1016/j.automatica.2012.11.022 +Wei Liu 0057,Controlled synchronization for chaotic systems via limited information with data packet dropout.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#LiuWN13,https://doi.org/10.1016/j.automatica.2013.04.044 +E. P. Maslov,Sensitivity of linear systems with respect to random disturbances.,1969,5,Automatica,3,db/journals/automatica/automatica5.html#MaslovP69,https://doi.org/10.1016/0005-1098(69)90069-7 +Antonio Ferramosca,Cooperative distributed MPC for tracking.,2013,49,Automatica,4,db/journals/automatica/automatica49.html#FerramoscaLAC13,https://doi.org/10.1016/j.automatica.2013.01.019 +Germain Garcia,Robust stabilization and guaranteed cost control for discrete-time linear systems by static output feedback.,2003,39,Automatica,9,db/journals/automatica/automatica39.html#GarciaPTZ03,https://doi.org/10.1016/S0005-1098(03)00174-2 +Lixian Zhang,H∞ model reduction for uncertain switched linear discrete-time systems.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#ZhangSBW08,https://doi.org/10.1016/j.automatica.2008.03.025 +M. Vidyasagar,Reliable stabilization using a multi-controller configuration.,1985,21,Automatica,5,db/journals/automatica/automatica21.html#VidyasagarV85,https://doi.org/10.1016/0005-1098(85)90008-1 +Leonid Mirkin,On the Hinfinity fixed-lag smoothing: how to exploit the information preview.,2003,39,Automatica,8,db/journals/automatica/automatica39.html#Mirkin03,https://doi.org/10.1016/S0005-1098(03)00141-9 +Sergey G. Nersesov,Stabilization of sets with application to multi-vehicle coordinated motion.,2010,46,Automatica,9,db/journals/automatica/automatica46.html#NersesovGA10,https://doi.org/10.1016/j.automatica.2010.06.009 +Mamadou Diagne,Compensation of input delay that depends on delayed input.,2017,85,Automatica,,db/journals/automatica/automatica85.html#DiagneBK17,https://doi.org/10.1016/j.automatica.2017.07.069 +J. V. Candy,Electromagnetic signal processing An estimation/identification application.,1987,23,Automatica,2,db/journals/automatica/automatica23.html#CandyZ87,https://doi.org/10.1016/0005-1098(87)90090-2 +Anton Selivanov,Observer-based input-to-state stabilization of networked control systems with large uncertain delays.,2016,74,Automatica,,db/journals/automatica/automatica74.html#SelivanovF16b,https://doi.org/10.1016/j.automatica.2016.07.031 +Alessandro Falsone,A randomized algorithm for nonlinear model structure selection.,2015,60,Automatica,,db/journals/automatica/automatica60.html#FalsonePP15,https://doi.org/10.1016/j.automatica.2015.07.023 +Jin-Zhi Wang,Design of controller for a class of pendulum-like system guaranteeing dichotomy.,2004,40,Automatica,6,db/journals/automatica/automatica40.html#WangHD04,https://doi.org/10.1016/j.automatica.2004.01.018 +Alexandre Seuret,A novel stability analysis of linear systems under asynchronous samplings.,2012,48,Automatica,1,db/journals/automatica/automatica48.html#Seuret12,https://doi.org/10.1016/j.automatica.2011.09.033 +Mohamed Adlene Maghenem,Strict Lyapunov functions for time-varying systems with persistency of excitation.,2017,78,Automatica,,db/journals/automatica/automatica78.html#MaghenemL17,https://doi.org/10.1016/j.automatica.2016.12.029 +Chun-Hsiung Fang,Robust control analysis and design for discrete-time singular systems.,1994,30,Automatica,11,db/journals/automatica/automatica30.html#FangLC94,https://doi.org/10.1016/0005-1098(94)90076-0 +Matthew O. T. Cole,A discrete-time approach to impulse-based adaptive input shaping for motion control without residual vibration.,2011,47,Automatica,11,db/journals/automatica/automatica47.html#Cole11,https://doi.org/10.1016/j.automatica.2011.08.039 +Georgios B. Giannakis,Identifiability of general ARMA processes using linear cumulant-based estimators.,1992,28,Automatica,4,db/journals/automatica/automatica28.html#GiannakisS92,https://doi.org/10.1016/0005-1098(92)90036-F +Jay H. Lee,Model-based iterative learning control with a quadratic criterion for time-varying linear systems.,2000,36,Automatica,5,db/journals/automatica/automatica36.html#LeeLK00,https://doi.org/10.1016/S0005-1098(99)00194-6 +Eweda Eweda,Tracking error bounds of adaptive nonstationary filtering.,1985,21,Automatica,3,db/journals/automatica/automatica21.html#EwedaM85,https://doi.org/10.1016/0005-1098(85)90062-7 +Isaac Kaminer,A velocity algorithm for the implementation of gain-scheduled controllers.,1995,31,Automatica,8,db/journals/automatica/automatica31.html#KaminerPKC95,https://doi.org/10.1016/0005-1098(95)00026-S +Pradeep Misra,Pole-zero representation of descriptor systems.,1995,31,Automatica,6,db/journals/automatica/automatica31.html#MisraDS95,https://doi.org/10.1016/0005-1098(94)00176-J +Mondher Farza,Observer design for a class of MIMO nonlinear systems.,2004,40,Automatica,1,db/journals/automatica/automatica40.html#FarzaMR04,https://doi.org/10.1016/j.automatica.2003.08.008 +Gentian Buzi,Analysis of autocatalytic networks in biology.,2011,47,Automatica,6,db/journals/automatica/automatica47.html#BuziTD11,https://doi.org/10.1016/j.automatica.2011.02.040 +Ruggero Fabbiano,Source localization by gradient estimation based on Poisson integral.,2014,50,Automatica,6,db/journals/automatica/automatica50.html#FabbianoWG14,https://doi.org/10.1016/j.automatica.2014.04.029 +Thomas S. Brinsmead,Cheap decoupled control.,2001,37,Automatica,9,db/journals/automatica/automatica37.html#BrinsmeadG01,https://doi.org/10.1016/S0005-1098(01)00096-6 +David D. Sworder,Utility of imaging sensors in tracking systems.,1993,29,Automatica,2,db/journals/automatica/automatica29.html#SworderHK93,https://doi.org/10.1016/0005-1098(93)90136-H +András Edelmayer,Robust detection filter design in the presence of time-varying system perturbations.,1997,33,Automatica,3,db/journals/automatica/automatica33.html#EdelmayerBSK97,https://doi.org/10.1016/S0005-1098(96)00189-6 +Tie Long Shen,Adaptive nonlinear excitation control with L2 disturbance attenuation for power systems.,2003,39,Automatica,1,db/journals/automatica/automatica39.html#ShenMLHT03,https://doi.org/10.1016/S0005-1098(02)00175-9 +Hemara In,A multirate digital controller for model matching.,1994,30,Automatica,6,db/journals/automatica/automatica30.html#InZ94,https://doi.org/10.1016/0005-1098(94)90199-6 +Nikolaos Kazantzis,Optimal controller tuning for nonlinear processes.,2005,41,Automatica,1,db/journals/automatica/automatica41.html#KazantzisKTW05,https://doi.org/10.1016/j.automatica.2004.07.009 +Haitao Li 0001,Output feedback stabilization control design for Boolean control networks.,2013,49,Automatica,12,db/journals/automatica/automatica49.html#LiW13a,https://doi.org/10.1016/j.automatica.2013.09.023 +Laurent Bako,Adaptive identification of linear systems subject to gross errors.,2016,67,Automatica,,db/journals/automatica/automatica67.html#Bako16,https://doi.org/10.1016/j.automatica.2016.01.023 +H. Rotstein,Robust characteristic polynomial assignment.,1991,27,Automatica,4,db/journals/automatica/automatica27.html#RotsteinPBDR91,https://doi.org/10.1016/0005-1098(91)90062-7 +Daniel Limón,Input to state stability of min-max MPC controllers for nonlinear systems with bounded uncertainties.,2006,42,Automatica,5,db/journals/automatica/automatica42.html#LimonASC06,https://doi.org/10.1016/j.automatica.2006.01.001 +Edward J. Davison,Connectability and structural controllability of composite systems.,1977,13,Automatica,2,db/journals/automatica/automatica13.html#Davison77,https://doi.org/10.1016/0005-1098(77)90036-X +Shu-Guang Cao,Analysis and design for a class of complex control systems Part I: Fuzzy modelling and identification.,1997,33,Automatica,6,db/journals/automatica/automatica33.html#CaoRF97,https://doi.org/10.1016/S0005-1098(97)00010-1 +Jianglin Lan,A decoupling approach to integrated fault-tolerant control for linear systems with unmatched non-differentiable faults.,2018,89,Automatica,,db/journals/automatica/automatica89.html#LanP18,https://doi.org/10.1016/j.automatica.2017.12.011 +Balasubramaniam Srinivasan 0001,Global stabilization of an inverted pendulum-Control strategy and experimental verification.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#SrinivasanHB09,https://doi.org/10.1016/j.automatica.2008.07.004 +Paulo Tabuada,Hierarchical trajectory refinement for a class of nonlinear systems.,2005,41,Automatica,4,db/journals/automatica/automatica41.html#TabuadaP05,https://doi.org/10.1016/j.automatica.2004.11.008 +Carlos Murguia,Network synchronization using invariant-manifold-based diffusive dynamic couplings with time-delay.,2015,57,Automatica,,db/journals/automatica/automatica57.html#MurguiaFN15,https://doi.org/10.1016/j.automatica.2015.03.031 +Jacopo Guanetti,Optimal energy management in series hybrid electric bicycles.,2017,81,Automatica,,db/journals/automatica/automatica81.html#GuanettiFCS17,https://doi.org/10.1016/j.automatica.2017.03.021 +Jerzy A. Filar,A two-factor stochastic production model with two time scales.,2001,37,Automatica,10,db/journals/automatica/automatica37.html#FilarH01,https://doi.org/10.1016/S0005-1098(01)00123-6 +Georges Bastin,On-line estimation of microbial specific growth rates.,1986,22,Automatica,6,db/journals/automatica/automatica22.html#BastinD86,https://doi.org/10.1016/0005-1098(86)90007-5 +Wuchen Li,Method of evolving junctions: A new approach to optimal control with constraints.,2017,78,Automatica,,db/journals/automatica/automatica78.html#LiLZC17,https://doi.org/10.1016/j.automatica.2016.12.023 +Zibo Miao,Coherent observers for linear quantum stochastic systems.,2016,71,Automatica,,db/journals/automatica/automatica71.html#MiaoJP16,https://doi.org/10.1016/j.automatica.2016.04.039 +Christophe Prieur 0001,Lyapunov-based hybrid loops for stability and performance of continuous-time control systems.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#PrieurTZ13,https://doi.org/10.1016/j.automatica.2012.11.030 +Alejandro J. Rojas,Closed-form solution for a class of continuous-time algebraic Riccati equations.,2010,46,Automatica,1,db/journals/automatica/automatica46.html#Rojas10,https://doi.org/10.1016/j.automatica.2009.10.028 +Yunjun Xu,A quadrature-based method of moments for nonlinear filtering.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#XuV09,https://doi.org/10.1016/j.automatica.2009.01.015 +Jan Tommy Gravdahl,Drive torque actuation in active surge control of centrifugal compressors.,2002,38,Automatica,11,db/journals/automatica/automatica38.html#GravdahlEV02,https://doi.org/10.1016/S0005-1098(02)00113-9 +Roel J. E. Merry,Delay-varying repetitive control with application to a walking piezo actuator.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#MerryKHMS11,https://doi.org/10.1016/j.automatica.2011.02.044 +Ravi Gondhalekar,Periodic zone-MPC with asymmetric costs for outpatient-ready safety of an artificial pancreas to treat type 1 diabetes.,2016,71,Automatica,,db/journals/automatica/automatica71.html#GondhalekarDD16,https://doi.org/10.1016/j.automatica.2016.04.015 +Stephen L. Campbell,Regularizations of linear time varying singular systems.,1984,20,Automatica,3,db/journals/automatica/automatica20.html#Campbell84,https://doi.org/10.1016/0005-1098(84)90052-9 +Bo Wahlberg,On approximation of stable linear dynamical systems using Laguerre and Kautz functions.,1996,32,Automatica,5,db/journals/automatica/automatica32.html#WahlbergM96,https://doi.org/10.1016/0005-1098(95)00198-0 +Young Soo Moon,Robust stabilization of uncertain input-delayed systems using reduction method.,2001,37,Automatica,2,db/journals/automatica/automatica37.html#MoonPK01,https://doi.org/10.1016/S0005-1098(00)00145-X +Urban Forssell,Some results on optimal experiment design.,2000,36,Automatica,5,db/journals/automatica/automatica36.html#ForssellL00,https://doi.org/10.1016/S0005-1098(99)00205-8 +Hong Yue,Minimum entropy of B-spline PDF systems with mean constraint.,2006,42,Automatica,6,db/journals/automatica/automatica42.html#YueZW06,https://doi.org/10.1016/j.automatica.2006.02.004 +Xiaoran Han,Sliding mode control in the presence of input delay: A singular perturbation approach.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#HanFS12,https://doi.org/10.1016/j.automatica.2012.06.016 +Weili Yan,Multirate adaptive control of uncertain resonances beyond the Nyquist frequency in high-performance mechatronic systems.,2016,66,Automatica,,db/journals/automatica/automatica66.html#YanDP16,https://doi.org/10.1016/j.automatica.2015.12.018 +Lorenzo Marconi,Mixed internal model-based and feedforward control for robust tracking in nonlinear systems.,2000,36,Automatica,7,db/journals/automatica/automatica36.html#MarconiI00,https://doi.org/10.1016/S0005-1098(00)00008-X +Charlotte T. M. Kwok,Maximum a posteriori estimation of activation energies that control silicon self-diffusion.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#KwokDSB08,https://doi.org/10.1016/j.automatica.2008.01.020 +Farhad Bayat,Using hash tables to manage the time-storage complexity in a point location problem: Application to explicit model predictive control.,2011,47,Automatica,3,db/journals/automatica/automatica47.html#BayatJJ11,https://doi.org/10.1016/j.automatica.2011.01.009 +William A. Wolovich,A general algorithm for determining state-space representations.,1977,13,Automatica,3,db/journals/automatica/automatica13.html#WolovichG77,https://doi.org/10.1016/0005-1098(77)90056-5 +Håvard Fjær Grip,Output synchronization for heterogeneous networks of non-introspective agents.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#GripYSS12,https://doi.org/10.1016/j.automatica.2012.06.081 +Derek A. Paley,Stabilization of collective motion on a sphere.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#Paley09,https://doi.org/10.1016/j.automatica.2008.06.012 +Wei Zhu 0004,Event-based consensus of second-order multi-agent systems with discrete time.,2017,79,Automatica,,db/journals/automatica/automatica79.html#ZhuPWL17,https://doi.org/10.1016/j.automatica.2017.01.042 +Graham C. Goodwin,A fundamental control performance limit for a class of positive nonlinear systems.,2018,95,Automatica,,db/journals/automatica/automatica95.html#GoodwinCSM18,https://doi.org/10.1016/j.automatica.2018.05.008 +Christian Feller,A stabilizing iteration scheme for model predictive control based on relaxed barrier functions.,2017,80,Automatica,,db/journals/automatica/automatica80.html#FellerE17,https://doi.org/10.1016/j.automatica.2017.02.001 +Kuo-Kai Shyu,A modified variable structure controller.,1992,28,Automatica,6,db/journals/automatica/automatica28.html#ShyuTY92,https://doi.org/10.1016/0005-1098(92)90062-K +Francesco Alessandro Cuzzola,An improved approach for constrained robust model predictive control.,2002,38,Automatica,7,db/journals/automatica/automatica38.html#CuzzolaGM02,https://doi.org/10.1016/S0005-1098(02)00012-2 +Rong Su,Control protocol synthesis for multi-agent systems with similar actions instantiated from agent and requirement templates.,2017,79,Automatica,,db/journals/automatica/automatica79.html#SuL17,https://doi.org/10.1016/j.automatica.2017.01.003 +Koji Tsumura,Tradeoffs between quantization and packet loss in networked control of linear systems.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#TsumuraIH09,https://doi.org/10.1016/j.automatica.2009.09.030 +Mario Sznaier,A convex approach to robust H2 performance analysis.,2002,38,Automatica,6,db/journals/automatica/automatica38.html#SznaierAPT02,https://doi.org/10.1016/S0005-1098(01)00299-0 +Chun-Hung Chiu,Supply chain coordination with risk sensitive retailer under target sales rebate.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#ChiuCL11,https://doi.org/10.1016/j.automatica.2011.04.012 +Sang Deuk Lee,Nonlinear self-tuning regulator for pH systems.,1994,30,Automatica,10,db/journals/automatica/automatica30.html#LeeLP94,https://doi.org/10.1016/0005-1098(94)90097-3 +Torsten Söderström,A theoretical analysis of recursive identification methods.,1978,14,Automatica,3,db/journals/automatica/automatica14.html#SoderstromLG78,https://doi.org/10.1016/0005-1098(78)90088-2 +Leslaw Socha,The asymptotic stochastic stability in large of the composite stochastic systems.,1986,22,Automatica,5,db/journals/automatica/automatica22.html#Socha86,https://doi.org/10.1016/0005-1098(86)90071-3 +Akira Ohsumi,Linear estimation of random fields with second-order increments and its application.,1988,24,Automatica,2,db/journals/automatica/automatica24.html#Ohsumi88,https://doi.org/10.1016/0005-1098(88)90029-5 +Wu-Hua Chen,Adaptive impulsive observers for nonlinear systems: Revisited.,2015,61,Automatica,,db/journals/automatica/automatica61.html#ChenYZ15,https://doi.org/10.1016/j.automatica.2015.08.018 +Christophe Combastel,Zonotopes and Kalman observers: Gain optimality under distinct uncertainty paradigms and robust convergence.,2015,55,Automatica,,db/journals/automatica/automatica55.html#Combastel15,https://doi.org/10.1016/j.automatica.2015.03.008 +David Evan Zlotnik,Exponential convergence of a nonlinear attitude estimator.,2016,72,Automatica,,db/journals/automatica/automatica72.html#ZlotnikF16,https://doi.org/10.1016/j.automatica.2016.05.018 +Oded Yaniv,Arbitrarily small sensitivity in multiple-input-output uncertain feedback systems.,1991,27,Automatica,3,db/journals/automatica/automatica27.html#Yaniv91,https://doi.org/10.1016/0005-1098(91)90117-K +Tung-Sang Ng,Optimal input design for an AR model with output constraints.,1984,20,Automatica,3,db/journals/automatica/automatica20.html#NgQC84,https://doi.org/10.1016/0005-1098(84)90051-7 +Ruicheng Ma,Backstepping design for global stabilization of switched nonlinear systems in lower triangular form under arbitrary switchings.,2010,46,Automatica,11,db/journals/automatica/automatica46.html#MaZ10,https://doi.org/10.1016/j.automatica.2010.06.050 +Long Gao,A nonlinear control design for power systems.,1992,28,Automatica,5,db/journals/automatica/automatica28.html#GaoCFM92,https://doi.org/10.1016/0005-1098(92)90150-E +J. F. Baldwin,The use of a method of perturbations in the synthesis of closed-loop optimal control laws for non-linear systems.,1969,5,Automatica,3,db/journals/automatica/automatica5.html#BaldwinW69,https://doi.org/10.1016/0005-1098(69)90077-6 +Roberto Genesio,Harmonic balance methods for the analysis of chaotic dynamics in nonlinear systems.,1992,28,Automatica,3,db/journals/automatica/automatica28.html#GenesioT92,https://doi.org/10.1016/0005-1098(92)90177-H +Miguel A. Davó,Stability analysis of linear impulsive delay dynamical systems via looped-functionals.,2017,81,Automatica,,db/journals/automatica/automatica81.html#DavoBGTS17,https://doi.org/10.1016/j.automatica.2017.03.029 +Young-Hun Lim,On the positive invariance of polyhedral sets in fractional-order linear systems.,2013,49,Automatica,12,db/journals/automatica/automatica49.html#LimA13b,https://doi.org/10.1016/j.automatica.2013.09.020 +Avishy Carmi,The Gaussian mixture MCMC particle algorithm for dynamic cluster tracking.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#CarmiSG12,https://doi.org/10.1016/j.automatica.2012.06.086 +D. L. Yu,A bilinear fault detection observer.,1996,32,Automatica,11,db/journals/automatica/automatica32.html#YuS96,https://doi.org/10.1016/S0005-1098(96)00111-2 +Yafeng Guo,"Comments and improved results on ""H INFINITY filtering for discrete-time systems with randomly varying sensor delays"".",2009,45,Automatica,7,db/journals/automatica/automatica45.html#GuoL09,https://doi.org/10.1016/j.automatica.2009.02.033 +Zhendong Sun,Stabilization and optimization of switched linear systems.,2006,42,Automatica,5,db/journals/automatica/automatica42.html#Sun06,https://doi.org/10.1016/j.automatica.2005.12.022 +Alessandro Chiuso,A Bayesian approach to sparse dynamic network identification.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#ChiusoP12,https://doi.org/10.1016/j.automatica.2012.05.054 +Mirza Tariq Hamayun,A fault tolerant control allocation scheme with output integral sliding modes.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#HamayunEA13,https://doi.org/10.1016/j.automatica.2013.02.043 +Jiaqiao Hu,Approximate stochastic annealing for online control of infinite horizon Markov decision processes.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#HuC12,https://doi.org/10.1016/j.automatica.2012.06.010 +Tamer Basar,Team-optimal closed-loop Stackelberg strategies in hierarchical control problems.,1980,16,Automatica,4,db/journals/automatica/automatica16.html#BasarO80,https://doi.org/10.1016/0005-1098(80)90026-6 +Andreas Johansson,An observer for systems with nonlinear output map.,2003,39,Automatica,5,db/journals/automatica/automatica39.html#JohanssonM03,https://doi.org/10.1016/S0005-1098(03)00031-1 +Tara Baldacchino,Structure detection and parameter estimation for NARX models in a unified EM framework.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#BaldacchinoAK12,https://doi.org/10.1016/j.automatica.2012.02.021 +Wassim M. Haddad,Parameter-dependent Lyapunov functions and the discrete-time Popov criterion for robust analysis.,1994,30,Automatica,6,db/journals/automatica/automatica30.html#HaddadB94,https://doi.org/10.1016/0005-1098(94)90195-3 +Mohamed A. Abu-El-Magd,Modelling and forecasting short-term load demand: A multivariate approach.,1982,18,Automatica,3,db/journals/automatica/automatica18.html#Abu-El-MagdS82,https://doi.org/10.1016/0005-1098(82)90093-0 +Chan-Tang Hsu,Nonlinear control of a 3-pole active magnetic bearing system.,2003,39,Automatica,2,db/journals/automatica/automatica39.html#HsuC03,https://doi.org/10.1016/S0005-1098(02)00207-8 +Jonas Mårtensson,Conditions when minimum variance control is the optimal experiment for identifying a minimum variance controller.,2011,47,Automatica,3,db/journals/automatica/automatica47.html#MartenssonRH11,https://doi.org/10.1016/j.automatica.2011.01.014 +Benoît Raucent,Identification of the barycentric parameters of robot manipulators from external measurements.,1992,28,Automatica,5,db/journals/automatica/automatica28.html#RaucentCBSW92,https://doi.org/10.1016/0005-1098(92)90155-9 +Junlin Xiong,Output feedback negative imaginary synthesis under structural constraints.,2016,71,Automatica,,db/journals/automatica/automatica71.html#XiongLP16,https://doi.org/10.1016/j.automatica.2016.04.046 +Dario Piga,An SDP approach for l0-minimization: Application to ARX model segmentation.,2013,49,Automatica,12,db/journals/automatica/automatica49.html#PigaT13,https://doi.org/10.1016/j.automatica.2013.09.021 +Janine Mukuddem-Petersen,Bank management via stochastic optimal control.,2006,42,Automatica,8,db/journals/automatica/automatica42.html#Mukuddem-PetersenP06,https://doi.org/10.1016/j.automatica.2006.03.012 +Panagiotis Patrinos,A dual gradient-projection algorithm for model predictive control in fixed-point arithmetic.,2015,55,Automatica,,db/journals/automatica/automatica55.html#PatrinosGB15,https://doi.org/10.1016/j.automatica.2015.03.002 +G. Prasad,A Local Model Networks Based Multivariable Long-Range Predictive Control Strategy for Thermal Power Plants.,1998,34,Automatica,10,db/journals/automatica/automatica34.html#PrasadSH98,https://doi.org/10.1016/S0005-1098(98)00068-5 +Mazen Alamir,Redundancy versus multiple starting points in nonlinear system related inverse problems.,2009,45,Automatica,4,db/journals/automatica/automatica45.html#AlamirWG09,https://doi.org/10.1016/j.automatica.2008.11.026 +Emmanuel Prempain,Static I loop shaping control of a fly-by-wire helicopter.,2005,41,Automatica,9,db/journals/automatica/automatica41.html#PrempainP05,https://doi.org/10.1016/j.automatica.2005.04.001 +Adolf H. Glattfelder,Microcomputer based self-tuning and self-selecting controllers.,1980,16,Automatica,1,db/journals/automatica/automatica16.html#GlattfelderHS80,https://doi.org/10.1016/0005-1098(80)90081-3 +Uwe Kruger,Improved principal component monitoring using the local approach.,2007,43,Automatica,9,db/journals/automatica/automatica43.html#KrugerKL07,https://doi.org/10.1016/j.automatica.2007.02.016 +Irina V. Alexandrova,A new LKF approach to stability analysis of linear systems with uncertain delays.,2018,91,Automatica,,db/journals/automatica/automatica91.html#AlexandrovaZ18,https://doi.org/10.1016/j.automatica.2018.01.012 +Chen-Wen Yen,A training sample sequence planning method for pattern recognition problems.,2005,41,Automatica,4,db/journals/automatica/automatica41.html#YenYN05,https://doi.org/10.1016/j.automatica.2004.10.012 +Richard Oberdieck,Explicit hybrid model-predictive control: The exact solution.,2015,58,Automatica,,db/journals/automatica/automatica58.html#OberdieckP15,https://doi.org/10.1016/j.automatica.2015.05.021 +V. Solo,The convergence of an instrumental-variable-like recursion.,1981,17,Automatica,3,db/journals/automatica/automatica17.html#Solo81,https://doi.org/10.1016/0005-1098(81)90012-1 +Kumpati S. Narendra,Introduction to the special issue on neural network feedback control.,2001,37,Automatica,8,db/journals/automatica/automatica37.html#NarendraL01,https://doi.org/10.1016/S0005-1098(01)00125-X +MengChu Zhou,Design and implementation of a petri net based supervisor for a flexible manufacturing system.,1992,28,Automatica,6,db/journals/automatica/automatica28.html#ZhouDR92,https://doi.org/10.1016/0005-1098(92)90061-J +Jin-Hoon Kim,Further improvement of Jensen inequality and application to stability of time-delayed systems.,2016,64,Automatica,,db/journals/automatica/automatica64.html#Kim16,https://doi.org/10.1016/j.automatica.2015.08.025 +Feng Zheng,On the design of multivariable PID controllers via LMI approach.,2002,38,Automatica,3,db/journals/automatica/automatica38.html#ZhengWL02,https://doi.org/10.1016/S0005-1098(01)00237-0 +Stefano Bifaretti,A global robust iterative learning position control for current-fed permanent magnet step motors.,2011,47,Automatica,1,db/journals/automatica/automatica47.html#BifarettiTV11,https://doi.org/10.1016/j.automatica.2010.10.048 +Craig T. Lawrence,A fast algorithm for the computation of an upper bound on the andmicro*-norm.,2000,36,Automatica,3,db/journals/automatica/automatica36.html#LawrenceTD00,https://doi.org/10.1016/S0005-1098(99)00165-X +Solmaz S. Kia,Distributed event-triggered communication for dynamic average consensus in networked systems.,2015,59,Automatica,,db/journals/automatica/automatica59.html#KiaCM15a,https://doi.org/10.1016/j.automatica.2015.06.011 +Ikuro Mizumoto,Adaptive output predictor based adaptive predictive control with ASPR constraint.,2015,57,Automatica,,db/journals/automatica/automatica57.html#MizumotoFI15,https://doi.org/10.1016/j.automatica.2015.04.020 +Shi Wang,Quantum optical realization of classical linear stochastic systems.,2013,49,Automatica,10,db/journals/automatica/automatica49.html#WangNZJ13,https://doi.org/10.1016/j.automatica.2013.07.014 +Zdzislaw Kowalczuk,Continuous-time approaches to identification of continuous-time systems.,2000,36,Automatica,8,db/journals/automatica/automatica36.html#KowalczukK00,https://doi.org/10.1016/S0005-1098(00)00033-9 +Elzbieta Roszkowska,A distributed protocol for motion coordination in free-range vehicular systems.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#RoszkowskaR13,https://doi.org/10.1016/j.automatica.2013.02.036 +Philippe Crama,Generation of enhanced initial estimates for Hammerstein Systems.,2004,40,Automatica,7,db/journals/automatica/automatica40.html#CramaSP04,https://doi.org/10.1016/j.automatica.2004.02.004 +Kiam Tian Seow,Syntax-based synthesis for temporal-safety supervision.,2005,41,Automatica,11,db/journals/automatica/automatica41.html#Seow05,https://doi.org/10.1016/j.automatica.2005.05.011 +Masaaki Nagahara,Digital repetitive controller design via sampled-data delayed signal reconstruction.,2016,65,Automatica,,db/journals/automatica/automatica65.html#NagaharaY16,https://doi.org/10.1016/j.automatica.2015.11.029 +Janos Gertler,A constrained minimum variance input-output estimator for linear dynamic systems.,1979,15,Automatica,3,db/journals/automatica/automatica15.html#Gertler79,https://doi.org/10.1016/0005-1098(79)90052-9 +Huibert Kwakernaak,Robust control and H∞-optimization - Tutorial paper.,1993,29,Automatica,2,db/journals/automatica/automatica29.html#Kwakernaak93a,https://doi.org/10.1016/0005-1098(93)90122-A +Xiaoping Liu,Output regulation of strongly coupled symmetric composite systems.,1992,28,Automatica,5,db/journals/automatica/automatica28.html#Liu92,https://doi.org/10.1016/0005-1098(92)90159-D +Salvatore Nicosia,Model reference adaptive control algorithms for industrial robots.,1984,20,Automatica,5,db/journals/automatica/automatica20.html#NicosiaT84,https://doi.org/10.1016/0005-1098(84)90013-X +Denis V. Efimov,Enhancement of adaptive observer robustness applying sliding mode techniques.,2016,72,Automatica,,db/journals/automatica/automatica72.html#EfimovEZ16,https://doi.org/10.1016/j.automatica.2016.05.029 +Haibo Du,Attitude synchronization control for a group of flexible spacecraft.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#DuL14,https://doi.org/10.1016/j.automatica.2013.11.022 +Hiroaki Mukaidani,Stackelberg strategies for stochastic systems with multiple followers.,2015,53,Automatica,,db/journals/automatica/automatica53.html#MukaidaniX15,https://doi.org/10.1016/j.automatica.2014.12.021 +Philippe Müllhaupt,A numerical sufficiency test for the asymptotic stability of linear time-varying systems.,2007,43,Automatica,4,db/journals/automatica/automatica43.html#MullhauptBB07,https://doi.org/10.1016/j.automatica.2006.10.014 +Sergio Bittanti,Bootstrap-based estimates of uncertainty in subspace identification methods.,2000,36,Automatica,11,db/journals/automatica/automatica36.html#BittantiL00,https://doi.org/10.1016/S0005-1098(00)00081-9 +Albert Benveniste,Commande adaptative aspects pratiques et théoriques: Editors I. D. Landau and L. Dugard.,1987,23,Automatica,5,db/journals/automatica/automatica23.html#Benveniste87,https://doi.org/10.1016/0005-1098(87)90069-0 +Guy Albert Dumont,Comparison of an auto-tuned PID regulator and an adaptive predictive control system on an industrial bleach plant.,1989,25,Automatica,1,db/journals/automatica/automatica25.html#DumontMZ89,https://doi.org/10.1016/0005-1098(89)90117-9 +Bart Besselink,Model reduction for nonlinear systems with incremental gain or passivity properties.,2013,49,Automatica,4,db/journals/automatica/automatica49.html#BesselinkWN13,https://doi.org/10.1016/j.automatica.2013.01.004 +Jorge I. Poveda,A framework for a class of hybrid extremum seeking controllers with dynamic inclusions.,2017,76,Automatica,,db/journals/automatica/automatica76.html#PovedaT17,https://doi.org/10.1016/j.automatica.2016.10.029 +Torsten Bohlin,Maximum-power validation of models without higher-order fitting.,1978,14,Automatica,2,db/journals/automatica/automatica14.html#Bohlin78,https://doi.org/10.1016/0005-1098(78)90018-3 +Kostas Tsakalis,Performance limitations of adaptive parameter estimation and system identification algorithms in the absence of excitation.,1996,32,Automatica,4,db/journals/automatica/automatica32.html#Tsakalis96,https://doi.org/10.1016/0005-1098(95)00163-8 +Bogumil Eichstaedt,Multivariable closed-loop deadbeat control: a polynomial-matrix approach.,1982,18,Automatica,5,db/journals/automatica/automatica18.html#Eichstaedt82,https://doi.org/10.1016/0005-1098(82)90010-3 +Mohamed Boutayeb,"Comments on ""a computationally efficient technique for state estimation of non-linear systems"".",1994,30,Automatica,3,db/journals/automatica/automatica30.html#BoutayebD94,https://doi.org/10.1016/0005-1098(94)90135-X +Umberto Soverini,Identification of static errors-in-variables models: the rank reducibility problem.,2001,37,Automatica,7,db/journals/automatica/automatica37.html#SoveriniB01,https://doi.org/10.1016/S0005-1098(01)00057-7 +J. W. Auernig,Time optimal control of overhead cranes with hoisting of the load.,1987,23,Automatica,4,db/journals/automatica/automatica23.html#AuernigT87,https://doi.org/10.1016/0005-1098(87)90073-2 +Dimos V. Dimarogonas,Stability analysis for multi-agent systems using the incidence matrix: Quantized communication and formation control.,2010,46,Automatica,4,db/journals/automatica/automatica46.html#DimarogonasJ10,https://doi.org/10.1016/j.automatica.2010.01.012 +Magnus Nørgaard,New developments in state estimation for nonlinear systems.,2000,36,Automatica,11,db/journals/automatica/automatica36.html#NorgaardPR00,https://doi.org/10.1016/S0005-1098(00)00089-3 +Peter C. Young,Refined instrumental variable estimation: Maximum likelihood optimization of a unified Box-Jenkins model.,2015,52,Automatica,,db/journals/automatica/automatica52.html#Young15,https://doi.org/10.1016/j.automatica.2014.10.126 +Tamer Basar,Obituary.,2017,78,Automatica,,db/journals/automatica/automatica78.html#BasarI17,https://doi.org/10.1016/j.automatica.2017.02.019 +Yangzi Hu,Robustness of exponential stability of a class of stochastic functional differential equations with infinite delay.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#HuWH09,https://doi.org/10.1016/j.automatica.2009.07.007 +Setsuo Ohsuga,Knowledge-based man-machine systems.,1983,19,Automatica,6,db/journals/automatica/automatica19.html#Ohsuga83,https://doi.org/10.1016/0005-1098(83)90032-8 +Aniruddha Datta,Adaptive internal model control: Design and stability analysis.,1996,32,Automatica,2,db/journals/automatica/automatica32.html#DattaO96,https://doi.org/10.1016/0005-1098(96)85557-9 +Milos S. Stankovic,Distributed time synchronization for networks with random delays and measurement noise.,2018,93,Automatica,,db/journals/automatica/automatica93.html#StankovicSJ18,https://doi.org/10.1016/j.automatica.2018.03.054 +Thomas Parisini,A receding-horizon regulator for nonlinear systems and a neural approximation.,1995,31,Automatica,10,db/journals/automatica/automatica31.html#ParisiniZ95,https://doi.org/10.1016/0005-1098(95)00044-W +Yongping Pan,Dynamic surface control via singular perturbation analysis.,2015,57,Automatica,,db/journals/automatica/automatica57.html#PanY15,https://doi.org/10.1016/j.automatica.2015.03.033 +R. M. Tong,Fuzzy control of the activated sludge wastewater treatment process.,1980,16,Automatica,6,db/journals/automatica/automatica16.html#TongBL80,https://doi.org/10.1016/0005-1098(80)90011-4 +Khaled F. Aljanaideh,A behavioral equation framework for time-domain transmissibilities.,2017,78,Automatica,,db/journals/automatica/automatica78.html#AljanaidehB17,https://doi.org/10.1016/j.automatica.2016.12.006 +R. H. Kwong,"Comments on: ""Existence conditions of positive-definite solutions for algebraic matrix Riccati equations"".",1989,25,Automatica,1,db/journals/automatica/automatica25.html#KwongR89,https://doi.org/10.1016/0005-1098(89)90132-5 +Wei-Yen Wang,Adaptive T-S fuzzy-neural modeling and control for general MIMO unknown nonaffine nonlinear systems using projection update laws.,2010,46,Automatica,5,db/journals/automatica/automatica46.html#WangCLL10,https://doi.org/10.1016/j.automatica.2010.02.024 +Giancarlo Ferrari-Trecate,A clustering technique for the identification of piecewise affine systems.,2003,39,Automatica,2,db/journals/automatica/automatica39.html#Ferrari-TrecateMLM03,https://doi.org/10.1016/S0005-1098(02)00224-8 +Qiang Zhang 0008,An improved result for complete stability of delayed cellular neural networks.,2005,41,Automatica,2,db/journals/automatica/automatica41.html#ZhangWX05,https://doi.org/10.1016/j.automatica.2004.09.008 +Osvaldo Maria Grasselli,Disturbance localization by measurement feedback for linear periodic discrete-time systems.,1988,24,Automatica,3,db/journals/automatica/automatica24.html#GrasselliL88,https://doi.org/10.1016/0005-1098(88)90078-7 +Y. M. Chan,Self-tuning leader-follower games.,1983,19,Automatica,3,db/journals/automatica/automatica19.html#ChanC83,https://doi.org/10.1016/0005-1098(83)90100-0 +Thomas Rittenschober,Observer-based self sensing actuation of piezoelastic structures for robust vibration control.,2012,48,Automatica,6,db/journals/automatica/automatica48.html#RittenschoberS12,https://doi.org/10.1016/j.automatica.2012.02.038 +Francisco Javier Bejarano,Observability and detectability of singular linear systems with unknown inputs.,2013,49,Automatica,3,db/journals/automatica/automatica49.html#BejaranoFPZ13,https://doi.org/10.1016/j.automatica.2012.11.043 +Kaushik Mahata,An improved bias-compensation approach for errors-in-variables model identification.,2007,43,Automatica,8,db/journals/automatica/automatica43.html#Mahata07,https://doi.org/10.1016/j.automatica.2007.01.011 +Zhendong Sun,On Nonregular Feedback Linearization.,1997,33,Automatica,7,db/journals/automatica/automatica33.html#SunX97,https://doi.org/10.1016/S0005-1098(97)00030-7 +Vasile Dragan,H2 Optimal control for linear stochastic systems.,2004,40,Automatica,7,db/journals/automatica/automatica40.html#DraganMS04,https://doi.org/10.1016/j.automatica.2004.01.023 +Urban Maeder,Linear offset-free Model Predictive Control.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#MaederBM09,https://doi.org/10.1016/j.automatica.2009.06.005 +Wen-Xiao Zhao,Adaptive tracking and recursive identification for Hammerstein systems.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#ZhaoC09,https://doi.org/10.1016/j.automatica.2009.09.009 +Huijin Fan,Decentralized adaptive output-feedback controller design for stochastic nonlinear interconnected systems.,2012,48,Automatica,11,db/journals/automatica/automatica48.html#FanHWX12,https://doi.org/10.1016/j.automatica.2012.08.022 +Bo Shen,Robust Hinfinity finite-horizon filtering with randomly occurred nonlinearities and quantization effects.,2010,46,Automatica,11,db/journals/automatica/automatica46.html#ShenWSW10,https://doi.org/10.1016/j.automatica.2010.06.041 +Alexey S. Matveev,A method for guidance and control of an autonomous vehicle in problems of border patrolling and obstacle avoidance.,2011,47,Automatica,3,db/journals/automatica/automatica47.html#MatveevTS11b,https://doi.org/10.1016/j.automatica.2011.01.024 +Loc X. Le,Bias reduction in parameter estimation.,1988,24,Automatica,6,db/journals/automatica/automatica24.html#LeW88,https://doi.org/10.1016/0005-1098(88)90059-3 +Hui Zhang,Hybrid life-extending control of mechanical systems: experimental validation of the concept.,2000,36,Automatica,1,db/journals/automatica/automatica36.html#ZhangRP00,https://doi.org/10.1016/S0005-1098(99)00114-4 +Marc Bodson,Adaptive algorithms for the rejection of sinusoidal disturbances with unknown frequency.,1997,33,Automatica,12,db/journals/automatica/automatica33.html#BodsonD97,https://doi.org/10.1016/S0005-1098(97)00149-0 +Zhengtao Ding,Global stabilization and disturbance suppression of a class of nonlinear systems with uncertain internal model.,2003,39,Automatica,3,db/journals/automatica/automatica39.html#Ding03,https://doi.org/10.1016/S0005-1098(02)00251-0 +Simone Garatti,Assessing the quality of identified models through the asymptotic theory - when is the result reliable?,2004,40,Automatica,8,db/journals/automatica/automatica40.html#GarattiCB04,https://doi.org/10.1016/j.automatica.2004.03.005 +Mohammad N. ElBsat,Robust and resilient finite-time bounded control of discrete-time uncertain nonlinear systems.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#ElBsatY13,https://doi.org/10.1016/j.automatica.2013.04.003 +Mark W. Spong,Adaptive control of flexible joint manipulators: Comments on two papers.,1995,31,Automatica,4,db/journals/automatica/automatica31.html#Spong95,https://doi.org/10.1016/0005-1098(95)98487-Q +Fen Wu,Induced L2 norm model reduction of polytopic uncertain linear systems.,1996,32,Automatica,10,db/journals/automatica/automatica32.html#Wu96,https://doi.org/10.1016/0005-1098(96)00109-4 +Yong Chen,Estimation and synthesis of reachable set for switched linear systems.,2016,63,Automatica,,db/journals/automatica/automatica63.html#ChenLZ16,https://doi.org/10.1016/j.automatica.2015.10.033 +Bin Zhou 0001,Improved Razumikhin and Krasovskii stability criteria for time-varying stochastic time-delay systems.,2018,89,Automatica,,db/journals/automatica/automatica89.html#ZhouL18,https://doi.org/10.1016/j.automatica.2017.12.015 +Yi Dong,A leader-following rendezvous problem of double integrator multi-agent systems.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#DongH13,https://doi.org/10.1016/j.automatica.2013.02.024 +Mustafa ç. Pinar,Sharpe-ratio pricing and hedging of contingent claims in incomplete markets by convex programming.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#Pinar08,https://doi.org/10.1016/j.automatica.2007.11.006 +H. A. Fertik,Feedforward control of glass mold colling.,1977,13,Automatica,3,db/journals/automatica/automatica13.html#Fertik77,https://doi.org/10.1016/0005-1098(77)90049-8 +Guido Herrmann,Stability and performance recovery within discretized non-linear control systems.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#HerrmannSE08,https://doi.org/10.1016/j.automatica.2007.08.023 +Reza Ghaemi,An integrated perturbation analysis and Sequential Quadratic Programming approach for Model Predictive Control.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#GhaemiSK09,https://doi.org/10.1016/j.automatica.2009.06.028 +Han Ho Choi,An LMI approach to H∞ controller design for linear time-delay systems.,1997,33,Automatica,4,db/journals/automatica/automatica33.html#ChoiC97,https://doi.org/10.1016/S0005-1098(96)00242-7 +Jun Wu,Observer-driven switching stabilization of switched linear systems.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#WuS13,https://doi.org/10.1016/j.automatica.2013.04.010 +Euan William McGookin,"Comment on ""Nonlinear optimal tracking control with application to super-tankers for autopilot design"" by T. çimen and S.P. Banks.",2006,42,Automatica,12,db/journals/automatica/automatica42.html#McGookinM06,https://doi.org/10.1016/j.automatica.2006.06.018 +Mingxuan Sun,Sampled-data iterative learning control for nonlinear systems with arbitrary relative degree.,2001,37,Automatica,2,db/journals/automatica/automatica37.html#SunW01,https://doi.org/10.1016/S0005-1098(00)00141-2 +K. Yamuna Rani,Study of predictive controller tuning methods.,1997,33,Automatica,12,db/journals/automatica/automatica33.html#RaniU97,https://doi.org/10.1016/S0005-1098(97)00134-9 +Bard B. Stovner,Attitude estimation by multiplicative exogenous Kalman filter.,2018,95,Automatica,,db/journals/automatica/automatica95.html#StovnerJFS18,https://doi.org/10.1016/j.automatica.2018.05.038 +Lennart Ljung,Comments on 'non-convergence of the approximate maximum likelihood identification algorithm'.,1980,16,Automatica,2,db/journals/automatica/automatica16.html#Ljung80,https://doi.org/10.1016/0005-1098(80)90059-X +Benjamin Kuipers,Qualitative reasoning: Modeling and simulation with incomplete knowledge.,1989,25,Automatica,4,db/journals/automatica/automatica25.html#Kuipers89,https://doi.org/10.1016/0005-1098(89)90099-X +Romeo Ortega,Interconnection and damping assignment passivity-based control of port-controlled Hamiltonian systems.,2002,38,Automatica,4,db/journals/automatica/automatica38.html#OrtegaSME02,https://doi.org/10.1016/S0005-1098(01)00278-3 +Alessandro De Luca 0001,An iterative scheme for learning gravity compensation in flexible robot arms.,1994,30,Automatica,6,db/journals/automatica/automatica30.html#0001P94,https://doi.org/10.1016/0005-1098(94)90192-9 +S.-H. Lee,A new stability analysis of switched systems.,2000,36,Automatica,6,db/journals/automatica/automatica36.html#LeeKL00,https://doi.org/10.1016/S0005-1098(99)00208-3 +Clement Roos,A convex characterization of dynamically-constrained anti-windup controllers.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#RoosB08,https://doi.org/10.1016/j.automatica.2008.01.009 +Ikuro Mizumoto,Output feedback strict passivity of discrete-time nonlinear systems and adaptive control system design with a PFC.,2010,46,Automatica,9,db/journals/automatica/automatica46.html#MizumotoOI10,https://doi.org/10.1016/j.automatica.2010.06.007 +Yuqiong Liu,Reliable Control of Uncertain Nonlinear Systems.,1998,34,Automatica,7,db/journals/automatica/automatica34.html#LiuWY98,https://doi.org/10.1016/S0005-1098(98)00027-2 +Carlos Canudas de Wit,Nonlinear control for a convoy-like vehicle.,2000,36,Automatica,3,db/journals/automatica/automatica36.html#WitN00,https://doi.org/10.1016/S0005-1098(99)00167-3 +Kok Yew Ng,Disturbance decoupled fault reconstruction using cascaded sliding mode observers.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#NgTO12,https://doi.org/10.1016/j.automatica.2012.02.005 +D. Bell,Algebraic and geometric methods in nonlinear control theory: Editors M. Fliess and M. Hazewinkel.,1988,24,Automatica,4,db/journals/automatica/automatica24.html#Bell88,https://doi.org/10.1016/0005-1098(88)90105-7 +Thomas Berger,Controlled invariance for nonlinear differential-algebraic systems.,2016,64,Automatica,,db/journals/automatica/automatica64.html#Berger16,https://doi.org/10.1016/j.automatica.2015.11.024 +Zhong-Ping Jiang,Robust exponential regulation of nonholonomic systems with uncertainties.,2000,36,Automatica,2,db/journals/automatica/automatica36.html#Jiang00,https://doi.org/10.1016/S0005-1098(99)00115-6 +Achim Ilchmann,Robust adaptive stabilization of discrete-time first-order systems.,1991,27,Automatica,5,db/journals/automatica/automatica27.html#Ilchmann91,https://doi.org/10.1016/0005-1098(91)90037-3 +Farshad R. Pour Safaei,Quadratic control of stochastic hybrid systems with renewal transitions.,2014,50,Automatica,11,db/journals/automatica/automatica50.html#SafaeiRPH14,https://doi.org/10.1016/j.automatica.2014.10.012 +Nicoletta Bof,Is ADMM always faster than Average Consensus?,2018,91,Automatica,,db/journals/automatica/automatica91.html#BofCS18,https://doi.org/10.1016/j.automatica.2018.01.009 +Han-Fu Chen,On stochastic observability and controllability.,1980,16,Automatica,2,db/journals/automatica/automatica16.html#Chen80,https://doi.org/10.1016/0005-1098(80)90053-9 +Bradley M. Bell,An inequality constrained nonlinear Kalman-Bucy smoother by interior point likelihood maximization.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#BellBP09,https://doi.org/10.1016/j.automatica.2008.05.029 +Jin-Ming Xu,A distributed simultaneous perturbation approach for large-scale dynamic optimization problems.,2016,72,Automatica,,db/journals/automatica/automatica72.html#XuS16,https://doi.org/10.1016/j.automatica.2016.06.010 +L. Stark,The pupillary control system: Its non-linear adaptive and stochastic engineering design characteristics.,1969,5,Automatica,5,db/journals/automatica/automatica5.html#Stark69,https://doi.org/10.1016/0005-1098(69)90032-6 +Ji Liu 0001,Exponential convergence of a distributed algorithm for solving linear algebraic equations.,2017,83,Automatica,,db/journals/automatica/automatica83.html#LiuMNB17,https://doi.org/10.1016/j.automatica.2017.05.004 +Shuai Feng,Resilient control under Denial-of-Service: Robust design.,2017,79,Automatica,,db/journals/automatica/automatica79.html#FengT17,https://doi.org/10.1016/j.automatica.2017.01.031 +Frédéric Mazenc,Remarks on output feedback stabilization of two-species chemostat models.,2010,46,Automatica,10,db/journals/automatica/automatica46.html#MazencM10a,https://doi.org/10.1016/j.automatica.2010.06.035 +Ivar-André F. Ihle,Passivity-based designs for synchronized path-following.,2007,43,Automatica,9,db/journals/automatica/automatica43.html#IhleAF07,https://doi.org/10.1016/j.automatica.2007.02.018 +Chengdi Xiang,Coherent robust H∞ control of linear quantum systems with uncertainties in the Hamiltonian and coupling operators.,2017,81,Automatica,,db/journals/automatica/automatica81.html#XiangPD17,https://doi.org/10.1016/j.automatica.2017.02.046 +K. Akimoto,An optimal gas supply for a power plant using a mixed integer programming model.,1991,27,Automatica,3,db/journals/automatica/automatica27.html#AkimotoSNT91,https://doi.org/10.1016/0005-1098(91)90108-E +R. Krtolica,A singular perturbation model of reliability in systems control.,1984,20,Automatica,1,db/journals/automatica/automatica20.html#Krtolica84,https://doi.org/10.1016/0005-1098(84)90064-5 +Fabrizio Dabbene,Recursive algorithms for inner ellipsoidal approximation of convex polytopes.,2003,39,Automatica,10,db/journals/automatica/automatica39.html#DabbeneGP03,https://doi.org/10.1016/S0005-1098(03)00180-8 +Augusto Ferrante,On the reduction of the continuous-time generalized algebraic Riccati equation: An effective procedure for solving the singular LQ problem with smooth solutions.,2018,93,Automatica,,db/journals/automatica/automatica93.html#FerranteN18,https://doi.org/10.1016/j.automatica.2018.04.034 +Edwin Kinnen,Liapunov functions derived from auxiliary exact differential equations.,1968,4,Automatica,4,db/journals/automatica/automatica4.html#KinnenC68,https://doi.org/10.1016/0005-1098(68)90014-9 +Jin Guo,Identification of Wiener systems with quantized inputs and binary-valued output observations.,2017,78,Automatica,,db/journals/automatica/automatica78.html#GuoWYZZ17,https://doi.org/10.1016/j.automatica.2016.12.034 +Michael J. Messina,Discrete-time certainty equivalence output feedback: allowing discontinuous control laws including those from model predictive control.,2005,41,Automatica,4,db/journals/automatica/automatica41.html#MessinaTT05,https://doi.org/10.1016/j.automatica.2004.11.015 +Seong-Jin Park,Delay-coobservability and its algebraic properties for the decentralized supervisory control of discrete event systems with communication delays.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#ParkC09,https://doi.org/10.1016/j.automatica.2008.12.006 +Ramu S. Chandra,Antenna array synthesis with clusters of unmanned aerial vehicles.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#ChandraBD08,https://doi.org/10.1016/j.automatica.2007.11.015 +Zhi-Hong Guan,Modified tracking performance limitations of unstable linear SIMO feedback control systems.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#GuanWD14,https://doi.org/10.1016/j.automatica.2013.10.008 +Howard Elliott,A frequency domain model reduction procedure.,1980,16,Automatica,2,db/journals/automatica/automatica16.html#ElliottW80,https://doi.org/10.1016/0005-1098(80)90052-7 +C. Y. Chan,Discrete Adaptive Sliding Mode Control of a State-Space System with a Bounded Disturbance.,1998,34,Automatica,12,db/journals/automatica/automatica34.html#Chan98,https://doi.org/10.1016/S0005-1098(98)80019-8 +Ahmet Karakasoglu,A recurrent neural network-based adaptive variable structure model-following control of robotic manipulators.,1995,31,Automatica,10,db/journals/automatica/automatica31.html#KarakasogluS95,https://doi.org/10.1016/0005-1098(95)00057-4 +Toshiro Terano,Human reliability and safety evaluation of man-machine systems.,1983,19,Automatica,6,db/journals/automatica/automatica19.html#TeranoMA83,https://doi.org/10.1016/0005-1098(83)90037-7 +Sangho Ko,State estimation for linear systems with state equality constraints.,2007,43,Automatica,8,db/journals/automatica/automatica43.html#KoB07,https://doi.org/10.1016/j.automatica.2007.01.017 +I. Nikiforov,Application of statistical fault detection algorithms to navigation systems monitoring.,1993,29,Automatica,5,db/journals/automatica/automatica29.html#NikiforovVK93,https://doi.org/10.1016/0005-1098(93)90050-4 +Yacov Y. Haimes,A hierarchical-multiobjective framework for risk management.,1991,27,Automatica,3,db/journals/automatica/automatica27.html#HaimesL91,https://doi.org/10.1016/0005-1098(91)90120-Q +Liang-Wey Chang,A MIMO sliding control with a first-order plus integral sliding condition.,1991,27,Automatica,5,db/journals/automatica/automatica27.html#Chang91,https://doi.org/10.1016/0005-1098(91)90040-9 +David J. N. Limebeer,On the design of robust two degree of freedom controllers.,1993,29,Automatica,1,db/journals/automatica/automatica29.html#LimebeerKP93,https://doi.org/10.1016/0005-1098(93)90179-W +Minhui Sun,"Corrigendum to: ""Robust exponential stabilization for Markovian jump systems with mode-dependent input delay"" [Automatica 43 (10) (2008) 1799-1807].",2008,44,Automatica,12,db/journals/automatica/automatica44.html#SunLXZ08,https://doi.org/10.1016/j.automatica.2008.10.005 +Massimiliano Mattei,Robust multivariable PID control for linear parameter varying systems.,2001,37,Automatica,12,db/journals/automatica/automatica37.html#Mattei01a,https://doi.org/10.1016/S0005-1098(01)00156-X +Derong Liu,Criteria for robust absolute stability of time-varying nonlinear continuous-time systems.,2002,38,Automatica,4,db/journals/automatica/automatica38.html#LiuM02,https://doi.org/10.1016/S0005-1098(01)00243-6 +Peng Lin 0001,Distributed multi-agent optimization subject to nonidentical constraints and communication delays.,2016,65,Automatica,,db/journals/automatica/automatica65.html#Lin0S16,https://doi.org/10.1016/j.automatica.2015.11.014 +Karl-Erik årzén,An architecture for expert system based feedback control.,1989,25,Automatica,6,db/journals/automatica/automatica25.html#Arzen89,https://doi.org/10.1016/0005-1098(89)90050-2 +Renyuan Zhang,Supervision localization of timed discrete-event systems.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#ZhangCGWW13,https://doi.org/10.1016/j.automatica.2013.05.015 +PooGyeon Park,Stability and robust stability for systems with a time-varying delay.,2007,43,Automatica,10,db/journals/automatica/automatica43.html#ParkK07,https://doi.org/10.1016/j.automatica.2007.02.022 +Bozidar Avramovic,Area decomposition for electromechanical models of power systems.,1980,16,Automatica,6,db/journals/automatica/automatica16.html#AvramovicKWC80,https://doi.org/10.1016/0005-1098(80)90006-0 +Hasan A. Poonawala,Time-optimal velocity tracking control for differential drive robots.,2017,85,Automatica,,db/journals/automatica/automatica85.html#PoonawalaS17,https://doi.org/10.1016/j.automatica.2017.07.038 +Omar Naifar,"Comments on ""Mittag-Leffler stability of fractional order nonlinear dynamic systems [Automatica 45(8) (2009) 1965-1969]"".",2017,75,Automatica,,db/journals/automatica/automatica75.html#NaifarMH17,https://doi.org/10.1016/j.automatica.2016.09.023 +Naser Prljaca,A method for optimal control and filtering of multitime-scale linear singularly-perturbed stochastic systems.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#PrljacaG08,https://doi.org/10.1016/j.automatica.2007.12.001 +Raghvendra V. Cowlagi,Hierarchical trajectory optimization for a class of hybrid dynamical systems.,2017,77,Automatica,,db/journals/automatica/automatica77.html#Cowlagi17,https://doi.org/10.1016/j.automatica.2016.11.040 +Graziano Chesi,LMI conditions for time-varying uncertain systems can be non-conservative.,2011,47,Automatica,3,db/journals/automatica/automatica47.html#Chesi11,https://doi.org/10.1016/j.automatica.2011.01.043 +X. F. Shi,A passivity approach to controller design for quasi-resonant converters.,2002,38,Automatica,10,db/journals/automatica/automatica38.html#ShiC02,https://doi.org/10.1016/S0005-1098(02)00074-2 +N. Sureshbabu,On output regulation for discrete-time nonlinear systems.,1997,33,Automatica,9,db/journals/automatica/automatica33.html#SureshbabuR97,https://doi.org/10.1016/S0005-1098(97)00098-8 +James K. Mills,Global connective stability of a class of robotic manipulators.,1988,24,Automatica,6,db/journals/automatica/automatica24.html#MillsG88,https://doi.org/10.1016/0005-1098(88)90061-1 +Zhisheng Duan,Robust H2 and Hinfinity filtering for uncertain linear systems.,2006,42,Automatica,11,db/journals/automatica/automatica42.html#DuanZZM06,https://doi.org/10.1016/j.automatica.2006.06.004 +H. Anthony Barker,Wiener models of direction-dependent dynamic systems.,2003,39,Automatica,1,db/journals/automatica/automatica39.html#BarkerTG03,https://doi.org/10.1016/S0005-1098(02)00181-4 +Daniel Liberzon,Hybrid feedback stabilization of systems with quantized signals.,2003,39,Automatica,9,db/journals/automatica/automatica39.html#Liberzon03a,https://doi.org/10.1016/S0005-1098(03)00151-1 +Denis V. Efimov,Adaptive tuning to bifurcation for time-varying nonlinear systems.,2006,42,Automatica,3,db/journals/automatica/automatica42.html#EfimovF06,https://doi.org/10.1016/j.automatica.2005.09.018 +Yoshito Ohta,Stochastic system transformation using generalized orthonormal basis functions with applications to continuous-time system identification.,2011,47,Automatica,5,db/journals/automatica/automatica47.html#Ohta11,https://doi.org/10.1016/j.automatica.2011.01.059 +Wuquan Li,Distributed containment tracking of multiple stochastic nonlinear systems.,2016,69,Automatica,,db/journals/automatica/automatica69.html#LiLF16,https://doi.org/10.1016/j.automatica.2016.02.021 +Kuo-Kai Shyu,Design of large-scale time-delayed systems with dead-zone input via variable structure control.,2005,41,Automatica,7,db/journals/automatica/automatica41.html#ShyuLH05,https://doi.org/10.1016/j.automatica.2005.03.004 +Leonid Berezansky,Preservation of exponential stability for linear non-autonomous functional differential systems.,2010,46,Automatica,12,db/journals/automatica/automatica46.html#BerezanskyB10,https://doi.org/10.1016/j.automatica.2010.09.007 +George N. Saridis,Analytic formulation of the principle of increasing precision with decreasing intelligence for intelligent machines.,1989,25,Automatica,3,db/journals/automatica/automatica25.html#Saridis89,https://doi.org/10.1016/0005-1098(89)90016-2 +Lee H. Keel,Robust stability and performance with fixed-order controllers.,1999,35,Automatica,10,db/journals/automatica/automatica35.html#KeelB99a,https://doi.org/10.1016/S0005-1098(99)00080-1 +Ahmad Bilal Asghar,A complete greedy algorithm for infinite-horizon sensor scheduling.,2017,81,Automatica,,db/journals/automatica/automatica81.html#AsgharJS17,https://doi.org/10.1016/j.automatica.2017.04.018 +Luca Greco 0003,Exploiting packet size in uncertain nonlinear networked control systems.,2012,48,Automatica,11,db/journals/automatica/automatica48.html#GrecoCB12,https://doi.org/10.1016/j.automatica.2012.08.027 +Jovan Stefanovski,Polynomial J-spectral factorization in minimal state space.,2003,39,Automatica,11,db/journals/automatica/automatica39.html#Stefanovski03,https://doi.org/10.1016/S0005-1098(03)00191-2 +Xi Chen,Design of a randomly distributed sensor network for target detection.,2007,43,Automatica,10,db/journals/automatica/automatica43.html#ChenBXH07,https://doi.org/10.1016/j.automatica.2007.02.026 +Zhiwei Gao,Actuator fault robust estimation and fault-tolerant control for a class of nonlinear descriptor systems.,2007,43,Automatica,5,db/journals/automatica/automatica43.html#GaoD07,https://doi.org/10.1016/j.automatica.2006.11.018 +Marcos Azevedo da Silveira,On the parametrization of solutions to the servomechanism problem.,1991,27,Automatica,6,db/journals/automatica/automatica27.html#SilveiraC91,https://doi.org/10.1016/0005-1098(91)90138-R +Keyi Xing,Deadlock characterization and control of flexible assembly systems with Petri nets.,2018,87,Automatica,,db/journals/automatica/automatica87.html#XingWZLL18,https://doi.org/10.1016/j.automatica.2017.09.001 +Mario E. Salgado,H2 optimal ripple-free deadbeat controller design.,2007,43,Automatica,11,db/journals/automatica/automatica43.html#SalgadoOS07,https://doi.org/10.1016/j.automatica.2007.03.014 +Abdelhamid Tayebi,Adaptive iterative learning control for robot manipulators.,2004,40,Automatica,7,db/journals/automatica/automatica40.html#Tayebi04,https://doi.org/10.1016/j.automatica.2004.01.026 +Rafael Suzuki Bayma,The analysis of nonlinear systems in the frequency domain using Nonlinear Output Frequency Response Functions.,2018,94,Automatica,,db/journals/automatica/automatica94.html#BaymaZL18,https://doi.org/10.1016/j.automatica.2018.04.030 +Ying Shang,An integrated control strategy to solve the disturbance decoupling problem for max-plus linear systems with applications to a high throughput screening system.,2016,63,Automatica,,db/journals/automatica/automatica63.html#ShangHLM16,https://doi.org/10.1016/j.automatica.2015.10.030 +Vakhtang Lomadze,Axiomatic characterization of linear differential systems (and operators).,2012,48,Automatica,5,db/journals/automatica/automatica48.html#Lomadze12,https://doi.org/10.1016/j.automatica.2012.02.016 +Katerina Yamalidou,Feedback control of petri nets based on place invariants.,1996,32,Automatica,1,db/journals/automatica/automatica32.html#YamalidouMLA96,https://doi.org/10.1016/0005-1098(95)00103-4 +Ignacio J. Pérez-Arriaga,Developments in selective modal analysis of small-signal stability in electric power systems.,1990,26,Automatica,2,db/journals/automatica/automatica26.html#Perez-ArriagaVPSS90,https://doi.org/10.1016/0005-1098(90)90117-Z +Yin Tong,Decidability of opacity verification problems in labeled Petri net systems.,2017,80,Automatica,,db/journals/automatica/automatica80.html#TongLSG17,https://doi.org/10.1016/j.automatica.2017.01.013 +Kevin M. Lynch,Optimal control of the thrusted skate.,2003,39,Automatica,1,db/journals/automatica/automatica39.html#Lynch03,https://doi.org/10.1016/S0005-1098(02)00165-6 +Olafur P. Palsson,Generalized predictive control for non-stationary systems.,1994,30,Automatica,12,db/journals/automatica/automatica30.html#PalssonMS94,https://doi.org/10.1016/0005-1098(94)90061-2 +Avishy Carmi,Sensor selection via compressed sensing.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#CarmiG13,https://doi.org/10.1016/j.automatica.2013.08.032 +Junfeng Wu,Data-driven power control for state estimation: A Bayesian inference approach.,2015,54,Automatica,,db/journals/automatica/automatica54.html#WuLQLS15,https://doi.org/10.1016/j.automatica.2015.02.019 +V. T. Sunil Elanayar,State estimation of continuous-time radial basis function networks.,2000,36,Automatica,3,db/journals/automatica/automatica36.html#ElanayarS00,https://doi.org/10.1016/S0005-1098(99)00160-0 +Didier Dubois,Evidence measures based on fuzzy information.,1985,21,Automatica,5,db/journals/automatica/automatica21.html#DuboisP85,https://doi.org/10.1016/0005-1098(85)90004-4 +Vladimír Kucera,Model matching of descriptor systems by proportional state feedback.,1992,28,Automatica,2,db/journals/automatica/automatica28.html#Kucera92,https://doi.org/10.1016/0005-1098(92)90130-8 +Matthijs van Berkel,Frequency domain sample maximum likelihood estimation for spatially dependent parameter estimation in PDEs.,2014,50,Automatica,8,db/journals/automatica/automatica50.html#BerkelVGPZB14,https://doi.org/10.1016/j.automatica.2014.05.027 +Joseph Bentsman,Dynamical systems with active singularities: Input/state/output modeling and control.,2008,44,Automatica,7,db/journals/automatica/automatica44.html#BentsmanMR08,https://doi.org/10.1016/j.automatica.2007.11.026 +Peter Dorato,Bibliography on robust control.,1993,29,Automatica,1,db/journals/automatica/automatica29.html#DoratoTM93,https://doi.org/10.1016/0005-1098(93)90183-T +G. Bagni,Synthesis of MIMO controllers for extending the stability range of periodic solutions in forced nonlinear systems.,2005,41,Automatica,4,db/journals/automatica/automatica41.html#BagniBGT05,https://doi.org/10.1016/j.automatica.2004.09.014 +Masanao Aoki,Synthesis of optimal controllers for a class of maximization problems.,1963,1,Automatica,1,db/journals/automatica/automatica1.html#Aoki63,https://doi.org/10.1016/0005-1098(63)90007-4 +Soura Dasgupta,A Parametrization for the closed-loop identification of nonlinear time-varying systems.,1996,32,Automatica,10,db/journals/automatica/automatica32.html#DasguptaA96,https://doi.org/10.1016/0005-1098(96)00084-2 +Qinghua Zhang,Adaptive Kalman filter for actuator fault diagnosis.,2018,93,Automatica,,db/journals/automatica/automatica93.html#Zhang18,https://doi.org/10.1016/j.automatica.2018.03.075 +Rahul Jain 0002,Simulation-based optimization of Markov decision processes: An empirical process theory approach.,2010,46,Automatica,8,db/journals/automatica/automatica46.html#JainV10,https://doi.org/10.1016/j.automatica.2010.05.021 +Ming-Feng Ge,Distributed controller-estimator for target tracking of networked robotic systems under sampled interaction.,2016,69,Automatica,,db/journals/automatica/automatica69.html#GeGHHL16,https://doi.org/10.1016/j.automatica.2016.03.008 +Xiaoming Hu,Active state estimation of nonlinear systems.,2004,40,Automatica,12,db/journals/automatica/automatica40.html#HuE04,https://doi.org/10.1016/j.automatica.2004.06.015 +Romain Postoyan,On emulated nonlinear reduced-order observers for networked control systems.,2012,48,Automatica,4,db/journals/automatica/automatica48.html#PostoyanN12,https://doi.org/10.1016/j.automatica.2012.01.017 +Hannu T. Toivonen,Damping of harmonic disturbances in sampled-data systems - parameterization of all optimal controllers.,2003,39,Automatica,1,db/journals/automatica/automatica39.html#ToivonenM03,https://doi.org/10.1016/S0005-1098(02)00172-3 +M. Mansour,Linear control system analysis and design: John D'Azzo and Constantine H. Houpis.,1983,19,Automatica,5,db/journals/automatica/automatica19.html#Mansour83,https://doi.org/10.1016/0005-1098(83)90019-5 +Wei Zhang 0013,Optimal solutions to a class of power management problems in mobile robots.,2009,45,Automatica,4,db/journals/automatica/automatica45.html#ZhangLH09,https://doi.org/10.1016/j.automatica.2008.11.004 +Ravi Gondhalekar,Velocity-weighting and velocity-penalty MPC of an artificial pancreas: Improved safety and performance.,2018,91,Automatica,,db/journals/automatica/automatica91.html#GondhalekarDD18,https://doi.org/10.1016/j.automatica.2018.01.025 +Ky Tran,Optimal harvesting strategies for stochastic competitive Lotka-Volterra ecosystems.,2015,55,Automatica,,db/journals/automatica/automatica55.html#TranY15,https://doi.org/10.1016/j.automatica.2015.03.017 +Yong Wang,Stochastic minimax control for stabilizing uncertain quasi- integrable Hamiltonian systems.,2009,45,Automatica,8,db/journals/automatica/automatica45.html#WangYZ09,https://doi.org/10.1016/j.automatica.2009.03.025 +Karl Worthmann,Interaction of open and closed loop control in MPC.,2017,82,Automatica,,db/journals/automatica/automatica82.html#WorthmannMMGP17,https://doi.org/10.1016/j.automatica.2017.04.038 +Tarek Hamel,Position estimation from direction or range measurements.,2017,82,Automatica,,db/journals/automatica/automatica82.html#HamelS17,https://doi.org/10.1016/j.automatica.2017.04.045 +Karl-Erik årzén,Grafcet for intelligent supervisory control applications.,1994,30,Automatica,10,db/journals/automatica/automatica30.html#Arzen94,https://doi.org/10.1016/0005-1098(94)90092-2 +Richard H. Middleton,On the robustness of adaptive controllers using relative deadzones.,1989,25,Automatica,6,db/journals/automatica/automatica25.html#MiddletonGW89,https://doi.org/10.1016/0005-1098(89)90055-1 +Jonathan Eden,On the positive output controllability of linear time invariant systems.,2016,71,Automatica,,db/journals/automatica/automatica71.html#EdenTLO16,https://doi.org/10.1016/j.automatica.2016.04.017 +Manfred Deistler,Consistency and relative efficiency of subspace methods.,1995,31,Automatica,12,db/journals/automatica/automatica31.html#DeistlerPS95,https://doi.org/10.1016/0005-1098(95)00089-6 +Shahriar Shokoohi,Linear time-variable systems: Stability of reduced models.,1984,20,Automatica,1,db/journals/automatica/automatica20.html#ShokoohiSD84,https://doi.org/10.1016/0005-1098(84)90065-7 +W. Lu,Nonlinear interval model control of quasi-keyhole arc welding process.,2004,40,Automatica,5,db/journals/automatica/automatica40.html#LuZL04,https://doi.org/10.1016/j.automatica.2003.11.017 +John G. Truxal,Fifth annual lecture of the United Kingdom automation council: The emerging responsibilities of control technology.,1966,4,Automatica,1,db/journals/automatica/automatica4.html#Truxal66,https://doi.org/10.1016/0005-1098(66)90002-1 +Jong-Yih Lin,New IIR filter-based adaptive algorithm in active noise control applications: Commutation error-introduced LMS algorithm and associated convergence assessment by a deterministic approach.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#LinL08,https://doi.org/10.1016/j.automatica.2008.04.008 +Hanlei Wang,Passivity based adaptive Jacobian tracking for free-floating space manipulators without using spacecraft acceleration.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#WangX09,https://doi.org/10.1016/j.automatica.2009.02.013 +Beipeng Mu,Efficient distributed sensing using adaptive censoring-based inference.,2014,50,Automatica,6,db/journals/automatica/automatica50.html#MuCH14,https://doi.org/10.1016/j.automatica.2014.04.013 +Saverio Mascolo,Congestion control in high-speed communication networks using the Smith principle.,1999,35,Automatica,12,db/journals/automatica/automatica35.html#Mascolo99,https://doi.org/10.1016/S0005-1098(99)00128-4 +Quan Min Zhu,Development of omni-directional correlation functions for nonlinear model validation.,2007,43,Automatica,9,db/journals/automatica/automatica43.html#ZhuZL07,https://doi.org/10.1016/j.automatica.2007.02.010 +Lijun Liu,A general H∞ fault tolerant control and management for a linear system with actuator faults.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#LiuSDZ12,https://doi.org/10.1016/j.automatica.2012.05.018 +Qun Lin 0002,Parameter estimation for nonlinear time-delay systems with noisy output measurements.,2015,60,Automatica,,db/journals/automatica/automatica60.html#LinL0T15,https://doi.org/10.1016/j.automatica.2015.06.028 +Alain Sarlette,Cooperative frequency control with a multi-terminal high-voltage DC network.,2012,48,Automatica,12,db/journals/automatica/automatica48.html#SarletteDPE12,https://doi.org/10.1016/j.automatica.2012.08.017 +José Carlos Aleixo,Representations and structural properties of periodic systems.,2007,43,Automatica,11,db/journals/automatica/automatica43.html#AleixoPR07,https://doi.org/10.1016/j.automatica.2007.03.013 +Yuanlong Li,The maximal contractively invariant ellipsoids for discrete-time linear systems under saturated linear feedback.,2017,76,Automatica,,db/journals/automatica/automatica76.html#LiL17,https://doi.org/10.1016/j.automatica.2016.10.007 +Xue Luo,The suboptimal method via probabilists' Hermite polynomials to solve nonlinear filtering problems.,2018,94,Automatica,,db/journals/automatica/automatica94.html#LuoY18,https://doi.org/10.1016/j.automatica.2018.04.004 +J. D. van der Bij,Prediction of railway power demand.,1983,19,Automatica,5,db/journals/automatica/automatica19.html#BijS83,https://doi.org/10.1016/0005-1098(83)90003-1 +Torsten Söderström,Comparing some classes of bias-compensating least squares methods.,2013,49,Automatica,3,db/journals/automatica/automatica49.html#Soderstrom13,https://doi.org/10.1016/j.automatica.2013.01.003 +Job van Amerongen,Control systems modeling and analysis : Gerard Voland.,1987,23,Automatica,6,db/journals/automatica/automatica23.html#Amerongen87,https://doi.org/10.1016/0005-1098(87)90046-X +Zhiyun Lin,Leader-follower formation via complex Laplacian.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#LinDYYG13,https://doi.org/10.1016/j.automatica.2013.02.055 +Marcello Farina,Block-wise discretization accounting for structural constraints.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#FarinaCS13,https://doi.org/10.1016/j.automatica.2013.08.013 +Yu Zhang,Dominant pole placement for multi-loop control systems.,2002,38,Automatica,7,db/journals/automatica/automatica38.html#ZhangWA02,https://doi.org/10.1016/S0005-1098(02)00009-2 +Qijiang Song,Recursive identification of systems with binary-valued outputs and with ARMA noises.,2018,93,Automatica,,db/journals/automatica/automatica93.html#Song18,https://doi.org/10.1016/j.automatica.2018.03.059 +Sergio Galeani,On input allocation-based regulation for linear over-actuated systems.,2015,52,Automatica,,db/journals/automatica/automatica52.html#GaleaniSVZ15,https://doi.org/10.1016/j.automatica.2014.10.112 +P. Martin Larsen,IFAC education prize.,1987,23,Automatica,1,db/journals/automatica/automatica23.html#Larsen87,https://doi.org/10.1016/0005-1098(87)90114-2 +Sebastian Engell,Robust multivariable feedback control: Jan Lunze.,1991,27,Automatica,4,db/journals/automatica/automatica27.html#Engell91,https://doi.org/10.1016/0005-1098(91)90070-I +Giulio Bottegal,Robust EM kernel-based methods for linear system identification.,2016,67,Automatica,,db/journals/automatica/automatica67.html#BottegalAHP16,https://doi.org/10.1016/j.automatica.2016.01.036 +Jing Yuan 0003,Improving an adaptive controller for non-minimum phase plants.,2002,38,Automatica,5,db/journals/automatica/automatica38.html#Yuan02,https://doi.org/10.1016/S0005-1098(01)00258-8 +B. F. Gardner Jr.,Lower order control for systems with fast and slow modes.,1980,16,Automatica,2,db/journals/automatica/automatica16.html#GardnerC80,https://doi.org/10.1016/0005-1098(80)90057-6 +Rastko R. Selmic,Neural net backlash compensation with Hebbian tuning using dynamic inversion.,2001,37,Automatica,8,db/journals/automatica/automatica37.html#SelmicL01,https://doi.org/10.1016/S0005-1098(01)00066-8 +Chih-Min Lin,Multivariable model reference linear quadratic optimal systems.,1996,32,Automatica,7,db/journals/automatica/automatica32.html#LinT96,https://doi.org/10.1016/0005-1098(96)00042-8 +Zhijun Li,Robust adaptive motion/force control for wheeled inverted pendulums.,2010,46,Automatica,8,db/journals/automatica/automatica46.html#LiZ10,https://doi.org/10.1016/j.automatica.2010.05.015 +V. O. Nikiforov,Adaptive backstepping with a high-order tuner.,2001,37,Automatica,12,db/journals/automatica/automatica37.html#NikiforovV01,https://doi.org/10.1016/S0005-1098(01)00171-6 +Xin-Ge Liu,Auxiliary function-based summation inequalities and their applications to discrete-time systems.,2017,78,Automatica,,db/journals/automatica/automatica78.html#LiuWT17,https://doi.org/10.1016/j.automatica.2016.12.036 +Vladimir L. Kharitonov,Prediction-based control for systems with state and several input delays.,2017,79,Automatica,,db/journals/automatica/automatica79.html#Kharitonov17,https://doi.org/10.1016/j.automatica.2017.01.028 +Elena Panteley,Cascaded control of feedback interconnected nonlinear systems: Application to robots with AC drives.,1997,33,Automatica,11,db/journals/automatica/automatica33.html#PanteleyO97,https://doi.org/10.1016/S0005-1098(97)00112-X +Wei Ding,Collective motions and formations under pursuit strategies on directed acyclic graphs.,2010,46,Automatica,1,db/journals/automatica/automatica46.html#DingYL10,https://doi.org/10.1016/j.automatica.2009.10.025 +Efstathios Bakolas,The Zermelo-Voronoi diagram: A dynamic partition problem.,2010,46,Automatica,12,db/journals/automatica/automatica46.html#BakolasT10,https://doi.org/10.1016/j.automatica.2010.09.003 +Ioan Doré Landau,A Youla-Kucera parametrized adaptive feedforward compensator for active vibration control with mechanical coupling.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#LandauAA12,https://doi.org/10.1016/j.automatica.2012.05.066 +Chunling Du,Multi-frequency disturbance rejection via blending control technique for hard disk drives.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#DuXLW09,https://doi.org/10.1016/j.automatica.2009.05.019 +Dapeng Li,Bode-like integral for stochastic switched systems in the presence of limited information.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#LiH13,https://doi.org/10.1016/j.automatica.2012.09.001 +Soon-Jo Chung,Phase synchronization control of complex networks of Lagrangian systems on adaptive digraphs.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#ChungBCH13,https://doi.org/10.1016/j.automatica.2013.01.048 +K. D. Do,Global tracking control of underactuated ships with nonzero off-diagonal terms in their system matrices.,2005,41,Automatica,1,db/journals/automatica/automatica41.html#DoP05,https://doi.org/10.1016/j.automatica.2004.08.005 +Frank L. Lewis,A tutorial on the geometric analysis of linear time-invariant implicit systems.,1992,28,Automatica,1,db/journals/automatica/automatica28.html#Lewis92,https://doi.org/10.1016/0005-1098(92)90012-5 +Robert Tenno,Stochastic control for stabilization of sludge loading characteristics in an aerobic waste water treatment system.,1989,25,Automatica,5,db/journals/automatica/automatica25.html#TennoVO89,https://doi.org/10.1016/0005-1098(89)90029-0 +Han-Lim Choi,Informative windowed forecasting of continuous-time linear systems for mutual information-based sensor planning.,2015,57,Automatica,,db/journals/automatica/automatica57.html#ChoiH15,https://doi.org/10.1016/j.automatica.2015.04.011 +Simone Garatti,On resampling and uncertainty estimation in Linear System Identification.,2010,46,Automatica,5,db/journals/automatica/automatica46.html#GarattiB10,https://doi.org/10.1016/j.automatica.2010.02.015 +Carlos E. de Souza,Robust stability and control of uncertain linear discrete-time periodic systems with time-delay.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#SouzaC14,https://doi.org/10.1016/j.automatica.2013.11.038 +Donald L. Snyder,A separation theorem for stochastic control problems with point-process observations.,1977,13,Automatica,1,db/journals/automatica/automatica13.html#SnyderRH77,https://doi.org/10.1016/0005-1098(77)90011-5 +Martin J. Corless,Deterministic and stochastic convergence properties of AIMD algorithms with nonlinear back-off functions.,2012,48,Automatica,7,db/journals/automatica/automatica48.html#CorlessS12,https://doi.org/10.1016/j.automatica.2012.03.014 +Xinmiao Sun,Optimal dynamic formation control of multi-agent systems in constrained environments.,2016,73,Automatica,,db/journals/automatica/automatica73.html#SunC16,https://doi.org/10.1016/j.automatica.2016.07.028 +Bin Zhou 0001,Global stabilization of feedforward nonlinear time-delay systems by bounded controls.,2018,88,Automatica,,db/journals/automatica/automatica88.html#ZhouY18,https://doi.org/10.1016/j.automatica.2017.10.021 +Mark Mutsaers,Rational representations and controller synthesis of L2 behaviors.,2012,48,Automatica,1,db/journals/automatica/automatica48.html#MutsaersW12,https://doi.org/10.1016/j.automatica.2011.09.009 +Hariharan Krishnan,Attitude stabilization of a rigid spacecraft using two control torques: A nonlinear control approach based on the spacecraft attitude dynamics.,1994,30,Automatica,6,db/journals/automatica/automatica30.html#KrishnanRM94,https://doi.org/10.1016/0005-1098(94)90196-1 +Romeo Ortega,Passivity properties for stabilization of cascaded nonlinear systems.,1991,27,Automatica,2,db/journals/automatica/automatica27.html#Ortega91,https://doi.org/10.1016/0005-1098(91)90094-I +Xinkai Chen,Pseudo-inverse-based adaptive control for uncertain discrete time systems preceded by hysteresis.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#ChenHS09,https://doi.org/10.1016/j.automatica.2008.08.004 +Wei Xi,Gibbs sampler-based coordination of autonomous swarms.,2006,42,Automatica,7,db/journals/automatica/automatica42.html#XiTB06,https://doi.org/10.1016/j.automatica.2006.03.006 +Azeem Sarwar,Identification of spatiotemporally invariant systems for control adaptation.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#SarwarVS12,https://doi.org/10.1016/j.automatica.2012.06.047 +Romeo Ortega,To tune or not to tune?: A monitoring procedure to decide.,1992,28,Automatica,1,db/journals/automatica/automatica28.html#OrtegaEG92,https://doi.org/10.1016/0005-1098(92)90019-C +Pedro O. Pereira,Family of controllers for attitude synchronization on the sphere.,2017,75,Automatica,,db/journals/automatica/automatica75.html#PereiraD17,https://doi.org/10.1016/j.automatica.2016.09.033 +Gianluigi Pillonetto,Tuning complexity in regularized kernel-based regression and linear system identification: The robustness of the marginal likelihood estimator.,2015,58,Automatica,,db/journals/automatica/automatica58.html#PillonettoC15,https://doi.org/10.1016/j.automatica.2015.05.012 +Yan Yan,Euler's discretization effect on a twisting algorithm based sliding mode control.,2016,68,Automatica,,db/journals/automatica/automatica68.html#YanGYS16,https://doi.org/10.1016/j.automatica.2016.01.051 +Xiaofeng Zong,Stability of stochastic functional differential systems using degenerate Lyapunov functionals and applications.,2018,91,Automatica,,db/journals/automatica/automatica91.html#ZongYWLZ18,https://doi.org/10.1016/j.automatica.2018.01.038 +Luca Luigi Ghezzi,PID control of a chaotic system: An application to an epidemiological model.,1997,33,Automatica,2,db/journals/automatica/automatica33.html#GhezziP97,https://doi.org/10.1016/S0005-1098(96)00163-X +Van Tri Nguyen,State and parameter estimation in 1-D hyperbolic PDEs based on an adjoint method.,2016,67,Automatica,,db/journals/automatica/automatica67.html#NguyenGB16,https://doi.org/10.1016/j.automatica.2016.01.031 +Gangaram S. Ladde,Multiparameter singular perturbations of linear systems with multiple time scales.,1983,19,Automatica,4,db/journals/automatica/automatica19.html#LaddeS83,https://doi.org/10.1016/0005-1098(83)90052-3 +Ngoc Anh Nguyen,Explicit robustness and fragility margins for linear discrete systems with piecewise affine control law.,2016,68,Automatica,,db/journals/automatica/automatica68.html#NguyenORBH16,https://doi.org/10.1016/j.automatica.2015.10.048 +Anders Malmgren,Optimal state feedback control with a prescribed contraction property.,1994,30,Automatica,11,db/journals/automatica/automatica30.html#MalmgrenN94a,https://doi.org/10.1016/0005-1098(94)90077-9 +Víctor Santibáñez,Strict Lyapunov functions for control of robot manipulators.,1997,33,Automatica,4,db/journals/automatica/automatica33.html#SantibanezK97,https://doi.org/10.1016/S0005-1098(96)00194-X +Josef Shinar,State-dependent optimality of a singular subarc.,1988,24,Automatica,2,db/journals/automatica/automatica24.html#Shinar88,https://doi.org/10.1016/0005-1098(88)90028-3 +Daniele Fontanelli,Soft real-time scheduling for embedded control systems.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#FontanelliGP13,https://doi.org/10.1016/j.automatica.2013.04.036 +Karl Johan åström,Identification of ship steering dynamics.,1976,12,Automatica,1,db/journals/automatica/automatica12.html#AstromK76,https://doi.org/10.1016/0005-1098(76)90064-9 +Murti V. Salapaka,SISO controller design to minimize a positive combination of the l1 and the H2 norms.,1997,33,Automatica,3,db/journals/automatica/automatica33.html#SalapakaVD97,https://doi.org/10.1016/S0005-1098(96)00169-0 +Naohisa Otsuka,A necessary and sufficient condition for parameter insensitive disturbance-rejection problem with state feedback.,2006,42,Automatica,3,db/journals/automatica/automatica42.html#Otsuka06,https://doi.org/10.1016/j.automatica.2005.10.012 +Sergio Delgado,Energy shaping for position and speed control of a wheeled inverted pendulum in reduced space.,2016,74,Automatica,,db/journals/automatica/automatica74.html#DelgadoK16,https://doi.org/10.1016/j.automatica.2016.07.045 +Sahika Genc,Predictability of event occurrences in partially-observed discrete-event systems.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#GencL09,https://doi.org/10.1016/j.automatica.2008.06.022 +Izumi Masubuchi,Gain-scheduled control via filtered scheduling parameters.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#MasubuchiK11,https://doi.org/10.1016/j.automatica.2011.05.005 +Kaddour Najim,Adaptive policy for two finite Markov chains zero-sum stochastic game with unknown transition matrices and average payoffs.,2001,37,Automatica,7,db/journals/automatica/automatica37.html#NajimPG01,https://doi.org/10.1016/S0005-1098(01)00050-4 +Stefano Miani,Switching and sweeping vibration absorbers: Theory and experimental validation.,2018,93,Automatica,,db/journals/automatica/automatica93.html#MianiZGBC18,https://doi.org/10.1016/j.automatica.2018.03.021 +Mayuresh V. Kothare,Multiplier theory for stability analysis of anti-windup control systems.,1999,35,Automatica,5,db/journals/automatica/automatica35.html#KothareM99,https://doi.org/10.1016/S0005-1098(98)00229-5 +C. G. Proudfoot,Microprocessor-based process control : Curtis D. Johnson.,1985,21,Automatica,6,db/journals/automatica/automatica21.html#Proudfoot85,https://doi.org/10.1016/0005-1098(85)90051-2 +M. B. Priestley,Estimation of transfer functions in closed loop stochastic systems.,1969,5,Automatica,5,db/journals/automatica/automatica5.html#Priestley69,https://doi.org/10.1016/0005-1098(69)90029-6 +Tore Hägglund,Supervision of adaptive control algorithms.,2000,36,Automatica,8,db/journals/automatica/automatica36.html#HagglundA00,https://doi.org/10.1016/S0005-1098(00)00026-1 +Graziano Chesi,Exact robust stability analysis of uncertain systems with a scalar parameter via LMIs.,2013,49,Automatica,4,db/journals/automatica/automatica49.html#Chesi13a,https://doi.org/10.1016/j.automatica.2013.01.033 +Qing-Long Han,Absolute stability of time-delay systems with sector-bounded nonlinearity.,2005,41,Automatica,12,db/journals/automatica/automatica41.html#Han05a,https://doi.org/10.1016/j.automatica.2005.08.005 +Qingshuo Song,Numerical methods for controlled regime-switching diffusions and regime-switching jump diffusions.,2006,42,Automatica,7,db/journals/automatica/automatica42.html#SongYZ06,https://doi.org/10.1016/j.automatica.2006.03.016 +Lisanne Bainbridge,Ironies of automation.,1983,19,Automatica,6,db/journals/automatica/automatica19.html#Bainbridge83,https://doi.org/10.1016/0005-1098(83)90046-8 +Yiannis Karayiannidis,Force/position tracking for a robotic manipulator in compliant contact with a surface using neuro-adaptive control.,2007,43,Automatica,7,db/journals/automatica/automatica43.html#KarayiannidisRD07,https://doi.org/10.1016/j.automatica.2006.12.019 +Tingshu Hu,Lyapunov characterization of forced oscillations.,2005,41,Automatica,10,db/journals/automatica/automatica41.html#HuTL05,https://doi.org/10.1016/j.automatica.2005.04.021 +Lahcen Saydy,A bound approach to asymptotic optimality in non-linear filtering of diffusion processes.,1989,25,Automatica,5,db/journals/automatica/automatica25.html#SaydyB89,https://doi.org/10.1016/0005-1098(89)90028-9 +Liyu Cao,Mixed Sensitivity Optimization to Avoid Pole/Zero Cancellation.,1997,33,Automatica,7,db/journals/automatica/automatica33.html#CaoH97,https://doi.org/10.1016/S0005-1098(97)00029-0 +Gary M. Bone,A novel iterative learning control formulation of generalized predictive control.,1995,31,Automatica,10,db/journals/automatica/automatica31.html#Bone95,https://doi.org/10.1016/0005-1098(95)00051-W +P. O. Arambel,Identifiability and persistent excitation in full matrix fraction parameter estimation.,1997,33,Automatica,4,db/journals/automatica/automatica33.html#ArambelT97,https://doi.org/10.1016/S0005-1098(96)00201-4 +Huibert Kwakernaak,Editorial.,1996,32,Automatica,10,db/journals/automatica/automatica32.html#Kwakernaak96e,https://doi.org/10.1016/S0005-1098(96)90002-3 +Lixin Lang,Bayesian estimation via sequential Monte Carlo sampling - Constrained dynamic systems.,2007,43,Automatica,9,db/journals/automatica/automatica43.html#LangCBGU07,https://doi.org/10.1016/j.automatica.2007.02.012 +Piotr Tatjewski,New dual-type decomposition algorithm for nonconvex separable optimization problems.,1989,25,Automatica,2,db/journals/automatica/automatica25.html#Tatjewski89,https://doi.org/10.1016/0005-1098(89)90076-9 +Robert A. Singer,Selecting state variables to minimize eigenvalue sensitivity of multivariable systems.,1969,5,Automatica,1,db/journals/automatica/automatica5.html#Singer69,https://doi.org/10.1016/0005-1098(69)90059-4 +Furqan Tahir,Causal state-feedback parameterizations in robust model predictive control.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#TahirJ13,https://doi.org/10.1016/j.automatica.2013.06.015 +Li Kui Wang,"Comments on ""Parameter-dependent robust H∞ filtering for uncertain discrete-time systems"" [Automatica 45 (2009) 560-565].",2011,47,Automatica,8,db/journals/automatica/automatica47.html#Wang11,https://doi.org/10.1016/j.automatica.2011.01.087 +Ralph K. Cavin III,Distributed parameter system optimum control design via finite element discretization.,1977,13,Automatica,6,db/journals/automatica/automatica13.html#CavinT77,https://doi.org/10.1016/0005-1098(77)90082-6 +George S. Axelby,Survey papers.,1980,16,Automatica,4,db/journals/automatica/automatica16.html#Axelby80a,https://doi.org/10.1016/0005-1098(80)90019-9 +Alessandro Casavola,Minimax LQ exact and inexact model matching problems.,1994,30,Automatica,3,db/journals/automatica/automatica30.html#CasavolaM94,https://doi.org/10.1016/0005-1098(94)90128-7 +Qing-Chang Zhong,J-spectral factorization of regular para-Hermitian transfer matrices.,2005,41,Automatica,7,db/journals/automatica/automatica41.html#Zhong05,https://doi.org/10.1016/j.automatica.2005.03.002 +Peter E. Wellstead,Non-parametric methods of system identification.,1981,17,Automatica,1,db/journals/automatica/automatica17.html#Wellstead81,https://doi.org/10.1016/0005-1098(81)90084-4 +Zhiyong Chen 0001,A Lyapunov's direct method for the global robust stabilization of nonlinear cascaded systems.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#ChenH08,https://doi.org/10.1016/j.automatica.2007.06.027 +R. Brockhaus,Automatic flight control systems series in system on control engineering : D. McLean.,1992,28,Automatica,4,db/journals/automatica/automatica28.html#Brockhaus92,https://doi.org/10.1016/0005-1098(92)90049-L +Zheming Wang,Distributed Model Predictive Control of linear discrete-time systems with local and global constraints.,2017,81,Automatica,,db/journals/automatica/automatica81.html#WangO17,https://doi.org/10.1016/j.automatica.2017.03.027 +Xudong Zhao,Stability of switched positive linear systems with average dwell time switching.,2012,48,Automatica,6,db/journals/automatica/automatica48.html#ZhaoZSL12,https://doi.org/10.1016/j.automatica.2012.03.008 +Ping Li 0004,Positivity-preserving H∞ model reduction for positive systems.,2011,47,Automatica,7,db/journals/automatica/automatica47.html#LiLWD11,https://doi.org/10.1016/j.automatica.2011.02.032 +Haichao Gui,"Comments on ""Finite-time consensus and collision avoidance control algorithms for multiple AUVs"" [Automatica 49 (2013) 3359-3367].",2017,75,Automatica,,db/journals/automatica/automatica75.html#GuiV17,https://doi.org/10.1016/j.automatica.2016.09.036 +Le Yi Wang,Continuity of optimal robustness and robust stabilization in slowly varying systems.,1995,31,Automatica,1,db/journals/automatica/automatica31.html#WangJ95,https://doi.org/10.1016/0005-1098(94)E0047-L +Jan Goos,Frequency domain weighted nonlinear least squares estimation of parameter-varying differential equations.,2017,75,Automatica,,db/journals/automatica/automatica75.html#GoosLLP17,https://doi.org/10.1016/j.automatica.2016.09.031 +Jürgen Ackermann,Stable polyhedra in parameter space.,2003,39,Automatica,5,db/journals/automatica/automatica39.html#AckermannK03,https://doi.org/10.1016/S0005-1098(03)00034-7 +Hildo Bijl,Mean and variance of the LQG cost function.,2016,67,Automatica,,db/journals/automatica/automatica67.html#BijlWSV16,https://doi.org/10.1016/j.automatica.2016.01.030 +Lyes Nechak,Model order reduction of random parameter-dependent linear systems.,2015,55,Automatica,,db/journals/automatica/automatica55.html#NechakRK15,https://doi.org/10.1016/j.automatica.2015.02.027 +Yau-Zen Chang,On the adaptive control of flexible joint robots.,1992,28,Automatica,5,db/journals/automatica/automatica28.html#ChangD92,https://doi.org/10.1016/0005-1098(92)90149-A +Kwang-Kyo Oh,A survey of multi-agent formation control.,2015,53,Automatica,,db/journals/automatica/automatica53.html#OhPA15,https://doi.org/10.1016/j.automatica.2014.10.022 +Yalcin Erol,Deadbeat control of discrete-time systems with singular state matrix using canonical decomposition.,1983,19,Automatica,5,db/journals/automatica/automatica19.html#ErolL83,https://doi.org/10.1016/0005-1098(83)90014-6 +Maria Letizia Corradini,A MIMO variable structure model of the controller of voluntary arm movements: an identification study.,1995,31,Automatica,11,db/journals/automatica/automatica31.html#CorradiniO95,https://doi.org/10.1016/0005-1098(95)00090-J +Rong-Fong Fung,Exponential stabilization of an axially moving string by linear boundary feedback.,1999,35,Automatica,1,db/journals/automatica/automatica35.html#FungWW99,https://doi.org/10.1016/S0005-1098(98)00173-3 +Yuqian Guo,Set stability and set stabilization of Boolean control networks based on invariant subsets.,2015,61,Automatica,,db/journals/automatica/automatica61.html#GuoWGY15,https://doi.org/10.1016/j.automatica.2015.08.006 +F. K. Greiss,Stochastic control of processes having moving boundaries - An experimental study.,1980,16,Automatica,2,db/journals/automatica/automatica16.html#GreissR80,https://doi.org/10.1016/0005-1098(80)90051-5 +Zhixin Liu,Consensus of a group of mobile agents in three dimensions.,2014,50,Automatica,6,db/journals/automatica/automatica50.html#Liu14,https://doi.org/10.1016/j.automatica.2014.04.017 +Mondher Farza,Cascade observer design for a class of uncertain nonlinear systems with delayed outputs.,2018,89,Automatica,,db/journals/automatica/automatica89.html#FarzaHMTMA18,https://doi.org/10.1016/j.automatica.2017.12.012 +Dewei Li,Synthesis of dynamic output feedback RMPC with saturated inputs.,2013,49,Automatica,4,db/journals/automatica/automatica49.html#LiXG13,https://doi.org/10.1016/j.automatica.2013.01.010 +Stefano Di Cairano,Reference governor for Network Control Systems subject to variable time-delay.,2015,62,Automatica,,db/journals/automatica/automatica62.html#CairanoKK15,https://doi.org/10.1016/j.automatica.2015.09.006 +F. A. Roberge,Paradoxical inhibition: A negative feedback principle in oscillatory systems.,1969,5,Automatica,4,db/journals/automatica/automatica5.html#Roberge69,https://doi.org/10.1016/0005-1098(69)90103-4 +Torsten Söderström,A generalized instrumental variable estimation method for errors-in-variables identification problems.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#Soderstrom11,https://doi.org/10.1016/j.automatica.2011.05.010 +Kenneth R. Lorell,Image motion compensation system for the shuttle infrared telescope facility.,1981,17,Automatica,4,db/journals/automatica/automatica17.html#LorellPP81,https://doi.org/10.1016/0005-1098(81)90028-5 +Michael V. Basin,A closed-form optimal control for linear systems with equal state and input delays.,2005,41,Automatica,5,db/journals/automatica/automatica41.html#BasinR05,https://doi.org/10.1016/j.automatica.2004.12.004 +Iman Shames,Distributed fault detection for interconnected second-order systems.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#ShamesTSJ11,https://doi.org/10.1016/j.automatica.2011.09.011 +Karl Heinz Fasol,Industrial automation - Circuit design and components : David W. Pessen.,1992,28,Automatica,3,db/journals/automatica/automatica28.html#Fasol92,https://doi.org/10.1016/0005-1098(92)90196-M +Yao Chen 0003,Delay-induced discrete-time consensus.,2017,85,Automatica,,db/journals/automatica/automatica85.html#ChenL17,https://doi.org/10.1016/j.automatica.2017.07.059 +Juanyu Bu,A linear matrix inequality approach to synthesizing low-order suboptimal mixed L1/H controllers.,2000,36,Automatica,7,db/journals/automatica/automatica36.html#BuS00,https://doi.org/10.1016/S0005-1098(00)00005-4 +Rafal Goebel,Smooth patchy control Lyapunov functions.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#GoebelPT09,https://doi.org/10.1016/j.automatica.2008.10.023 +Su-Hau Hsu,A fully adaptive decentralized control of robot manipulators.,2006,42,Automatica,10,db/journals/automatica/automatica42.html#HsuF06,https://doi.org/10.1016/j.automatica.2006.05.012 +Seong-Ho Song,Hinfinity control of discrete-time linear systems with time-varying delays in state.,1999,35,Automatica,9,db/journals/automatica/automatica35.html#SongKYK99,https://doi.org/10.1016/S0005-1098(99)00057-6 +Michel de Mathelin,Robust adaptive identification of slowly time-varying parameters with bounded disturbances.,1999,35,Automatica,7,db/journals/automatica/automatica35.html#MathelinL99,https://doi.org/10.1016/S0005-1098(99)00026-6 +Salim Ibrir,Adaptive tracking of nonlinear systems with non-symmetric dead-zone input.,2007,43,Automatica,3,db/journals/automatica/automatica43.html#IbrirXS07,https://doi.org/10.1016/j.automatica.2006.09.022 +Dragan B. Dacic,Quadratic stabilization of linear networked control systems via simultaneous protocol and controller design.,2007,43,Automatica,7,db/journals/automatica/automatica43.html#DacicN07,https://doi.org/10.1016/j.automatica.2006.12.027 +João P. Hespanha,Supervision of integral-input-to-state stabilizing controllers.,2002,38,Automatica,8,db/journals/automatica/automatica38.html#HespanhaLM02,https://doi.org/10.1016/S0005-1098(02)00024-9 +Pablo A. Iglesias,Tradeoffs in linear time-varying systems: an analogue of Bode's sensitivity integral.,2001,37,Automatica,10,db/journals/automatica/automatica37.html#Iglesias01a,https://doi.org/10.1016/S0005-1098(01)00103-0 +Xiaojun Tang,A new framework for solving fractional optimal control problems using fractional pseudospectral methods.,2017,78,Automatica,,db/journals/automatica/automatica78.html#TangSW17,https://doi.org/10.1016/j.automatica.2016.12.022 +Halil I. Basturk,Adaptive wave cancelation by acceleration feedback for ramp-connected air cushion-actuated surface effect ships.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#BasturkK13,https://doi.org/10.1016/j.automatica.2013.05.017 +Gerd Vandersteen,Non-parametric Estimation of the Frequency-response Functions of the Linear Blocks of a Wiener-Hammerstein Model.,1997,33,Automatica,7,db/journals/automatica/automatica33.html#VandersteenRS97,https://doi.org/10.1016/S0005-1098(97)00032-0 +Zoltán Szabó 0002,Extended Ho-Kalman algorithm for systems represented in generalized orthonormal bases.,2000,36,Automatica,12,db/journals/automatica/automatica36.html#SzaboHBH00,https://doi.org/10.1016/S0005-1098(00)00092-3 +Christian Commault,Output feedback disturbance decoupling graph interpretation for structured systems.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#CommaultDB93,https://doi.org/10.1016/0005-1098(93)90010-Q +Giuseppe Giordano,An improved method for Wiener-Hammerstein system identification based on the Fractional Approach.,2018,94,Automatica,,db/journals/automatica/automatica94.html#GiordanoGS18,https://doi.org/10.1016/j.automatica.2018.04.046 +Uday B. Desai,Reduced-complexity LQR design using canonical correlation analysis.,1986,22,Automatica,5,db/journals/automatica/automatica22.html#DesaiB86,https://doi.org/10.1016/0005-1098(86)90069-5 +Xiang-Shen Ye,Optimization in curbing risk contagion among financial institutes.,2018,94,Automatica,,db/journals/automatica/automatica94.html#YeXGC18,https://doi.org/10.1016/j.automatica.2018.04.036 +Lassi Paunonen,Asymptotic behaviour in the robot rendezvous problem.,2017,79,Automatica,,db/journals/automatica/automatica79.html#PaunonenS17,https://doi.org/10.1016/j.automatica.2017.02.015 +Kiyotsugu Takaba,H2 Output Feedback Control for Descriptor Systems.,1998,34,Automatica,7,db/journals/automatica/automatica34.html#TakabaK98,https://doi.org/10.1016/S0005-1098(98)00025-9 +Alejandro R. Mosteo,Optimal role and position assignment in multi-robot freely reachable formations.,2017,81,Automatica,,db/journals/automatica/automatica81.html#MosteoMT17,https://doi.org/10.1016/j.automatica.2017.03.040 +Martin Guay,Adaptive extremum seeking control of continuous stirred tank bioreactors with unknown growth kinetics.,2004,40,Automatica,5,db/journals/automatica/automatica40.html#GuayDP04,https://doi.org/10.1016/j.automatica.2004.01.002 +Yilin Mo,Sensor selection strategies for state estimation in energy constrained wireless sensor networks.,2011,47,Automatica,7,db/journals/automatica/automatica47.html#MoAS11,https://doi.org/10.1016/j.automatica.2011.02.001 +Kazumune Hashimoto,Event-triggered intermittent sampling for nonlinear model predictive control.,2017,81,Automatica,,db/journals/automatica/automatica81.html#HashimotoAD17,https://doi.org/10.1016/j.automatica.2017.03.028 +R. G. Whiting,On model order estimation for partially observed Markov chains.,1988,24,Automatica,4,db/journals/automatica/automatica24.html#WhitingP88,https://doi.org/10.1016/0005-1098(88)90102-1 +R. Metzger,A simple stability criterion for spinning satellites with flexible appendages.,1980,16,Automatica,5,db/journals/automatica/automatica16.html#Metzger80,https://doi.org/10.1016/0005-1098(80)90068-0 +Abraham Orbach,Optimal control of a solar collector loop using a distributed-lumped model.,1981,17,Automatica,3,db/journals/automatica/automatica17.html#OrbachRF81,https://doi.org/10.1016/0005-1098(81)90010-8 +Dragoslav D. Siljak,Multilevel stabilization of large-scale systems: A spinning flexible spacecraft.,1976,12,Automatica,4,db/journals/automatica/automatica12.html#Siljak76,https://doi.org/10.1016/0005-1098(76)90051-0 +S. Partovi,Absolute stability of dynamic system containing non-linear functions of several state variables.,1969,5,Automatica,4,db/journals/automatica/automatica5.html#PartoviN69,https://doi.org/10.1016/0005-1098(69)90108-3 +P. S. V. Nataraj,Computation of QFT bounds for robust tracking specifications.,2002,38,Automatica,2,db/journals/automatica/automatica38.html#Nataraj02,https://doi.org/10.1016/S0005-1098(01)00203-5 +Chun-Chia Huang,Escape time formulation of state estimation and stabilization with quantized intermittent communication.,2015,61,Automatica,,db/journals/automatica/automatica61.html#HuangB15,https://doi.org/10.1016/j.automatica.2015.08.014 +Adriano Fagiolini,On the robust synthesis of logical consensus algorithms for distributed intrusion detection.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#FagioliniB13,https://doi.org/10.1016/j.automatica.2013.04.033 +Huan-Shui Zhang,A Unified Approach to Optimal State Estimation for Stochastic Singular Systems.,1998,34,Automatica,6,db/journals/automatica/automatica34.html#ZhangCL98,https://doi.org/10.1016/S0005-1098(98)00020-X +Fredrik Gustafsson,Twenty-one ML estimators for model selection.,1995,31,Automatica,10,db/journals/automatica/automatica31.html#GustafssonH95,https://doi.org/10.1016/0005-1098(95)00058-5 +Xingyong Song,Robust stabilizer design for linear time-varying internal model based output regulation and its application to an electrohydraulic system.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#SongWS14,https://doi.org/10.1016/j.automatica.2014.02.005 +Frédéric Mazenc,Further results on strict Lyapunov functions for rapidly time-varying nonlinear systems.,2006,42,Automatica,10,db/journals/automatica/automatica42.html#MazencMQ06,https://doi.org/10.1016/j.automatica.2006.05.020 +Siyu Lv,Continuous-time mean-variance portfolio selection with random horizon in an incomplete market.,2016,69,Automatica,,db/journals/automatica/automatica69.html#LvWY16,https://doi.org/10.1016/j.automatica.2016.02.017 +Hadis Amini,Feedback stabilization of discrete-time quantum systems subject to non-demolition measurements with imperfections and delays.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#AminiSDSMR13,https://doi.org/10.1016/j.automatica.2013.06.012 +Grace S. Deaecto,Dynamic output feedback Hinfinity control of switched linear systems.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#DeaectoGD11,https://doi.org/10.1016/j.automatica.2011.02.046 +Aiping Xu,Nonlinear system fault diagnosis based on adaptive estimation.,2004,40,Automatica,7,db/journals/automatica/automatica40.html#XuZ04,https://doi.org/10.1016/j.automatica.2004.02.018 +Yuan Fan,A novel approach to coordination of multiple robots with communication failures via proximity graph.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#FanFWQ11,https://doi.org/10.1016/j.automatica.2011.04.017 +Torsten Söderström,Errors-in-variables identification using maximum likelihood estimation in the frequency domain.,2017,79,Automatica,,db/journals/automatica/automatica79.html#SoderstromS17,https://doi.org/10.1016/j.automatica.2017.01.016 +Mathieu Gerard,A hybrid steepest descent method for constrained convex optimization.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#GerardSV09,https://doi.org/10.1016/j.automatica.2008.08.018 +Necmiye Ozay,Set membership identification of switched linear systems with known number of subsystems.,2015,51,Automatica,,db/journals/automatica/automatica51.html#OzayLS15,https://doi.org/10.1016/j.automatica.2014.10.101 +Yi Dong,An internal model approach for multi-agent rendezvous and connectivity preservation with nonlinear dynamics.,2018,89,Automatica,,db/journals/automatica/automatica89.html#DongSLX18,https://doi.org/10.1016/j.automatica.2017.12.018 +Seung-Bok Choi,A time-varying sliding surface for fast and robust tracking control of second-order uncertain systems.,1994,30,Automatica,5,db/journals/automatica/automatica30.html#ChoiPJ94,https://doi.org/10.1016/0005-1098(94)90180-5 +B. Ross Barmish,Linear ultimate boundedness control of uncertain dynamical systems.,1983,19,Automatica,5,db/journals/automatica/automatica19.html#BarmishPF83,https://doi.org/10.1016/0005-1098(83)90007-9 +Kemin Zhou,Robust performance of systems with structured uncertainties in state space.,1995,31,Automatica,2,db/journals/automatica/automatica31.html#ZhouKSN95,https://doi.org/10.1016/0005-1098(94)00065-Q +W. A. Berger,An algorithm for the assignment of system zeros.,1991,27,Automatica,3,db/journals/automatica/automatica27.html#BergerPS91,https://doi.org/10.1016/0005-1098(91)90112-F +Wassim M. Haddad,Energy-based control for hybrid port-controlled Hamiltonian systems.,2003,39,Automatica,8,db/journals/automatica/automatica39.html#HaddadNC03,https://doi.org/10.1016/S0005-1098(03)00113-4 +George S. Axelby,Introduction.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#Axelby93c,https://doi.org/10.1016/0005-1098(93)90086-9 +Wei-Hua Wang,Robust stabilization of mimo nonlinear time-varying mismatched uncertain systems.,1997,33,Automatica,12,db/journals/automatica/automatica33.html#WangSC97,https://doi.org/10.1016/S0005-1098(97)00137-4 +Qing-Chang Zhong,Robust stability analysis of simple systems controlled over communication networks.,2003,39,Automatica,7,db/journals/automatica/automatica39.html#Zhong03b,https://doi.org/10.1016/S0005-1098(03)00110-9 +Håkan Hjalmarsson,Least-squares estimation of a class of frequency functions: A finite sample variance expression.,2006,42,Automatica,4,db/journals/automatica/automatica42.html#HjalmarssonN06,https://doi.org/10.1016/j.automatica.2005.12.021 +Lifeng Ma,Envelope-constrained H∞ filtering for nonlinear systems with quantization effects: The finite horizon case.,2018,93,Automatica,,db/journals/automatica/automatica93.html#MaWHL18,https://doi.org/10.1016/j.automatica.2018.03.038 +ömer Morgül,Control and stabilization of a rotating flexible structure.,1994,30,Automatica,2,db/journals/automatica/automatica30.html#Morgul94,https://doi.org/10.1016/0005-1098(94)90037-X +Er-Wei Bai,Robust system identification with noisy experimental data: Projection operator and linear algorithms.,1994,30,Automatica,7,db/journals/automatica/automatica30.html#BaiR94,https://doi.org/10.1016/0005-1098(94)90215-1 +Petros A. Ioannou,Instability analysis and improvement of robustness of adaptive control.,1984,20,Automatica,5,db/journals/automatica/automatica20.html#IoannouK84,https://doi.org/10.1016/0005-1098(84)90009-8 +Xiaoming Chen,ℓ*1ℓ*1-induced norm and controller synthesis of positive systems.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#ChenLLS13,https://doi.org/10.1016/j.automatica.2013.02.023 +Hyeong Soo Chang,Sleeping experts and bandits approach to constrained Markov decision processes.,2016,63,Automatica,,db/journals/automatica/automatica63.html#Chang16,https://doi.org/10.1016/j.automatica.2015.10.015 +Rostyslav V. Polyuga,Structure preserving model reduction of port-Hamiltonian systems by moment matching at infinity.,2010,46,Automatica,4,db/journals/automatica/automatica46.html#PolyugaS10,https://doi.org/10.1016/j.automatica.2010.01.018 +Martin Herceg,Enumeration-based approach to solving parametric linear complementarity problems.,2015,62,Automatica,,db/journals/automatica/automatica62.html#HercegJKM15,https://doi.org/10.1016/j.automatica.2015.09.019 +Luciano Frezzatto,Robust H∞ filter design with past output measurements for uncertain discrete-time systems.,2016,71,Automatica,,db/journals/automatica/automatica71.html#FrezzattoOOP16,https://doi.org/10.1016/j.automatica.2016.04.050 +Erik J. Noldus,New direct lyapunov-type method for studying synchronization problems.,1977,13,Automatica,2,db/journals/automatica/automatica13.html#Noldus77,https://doi.org/10.1016/0005-1098(77)90038-3 +Anne Van Mulders,Two nonlinear optimization methods for black box identification compared.,2010,46,Automatica,10,db/journals/automatica/automatica46.html#MuldersSVD10,https://doi.org/10.1016/j.automatica.2010.06.021 +Carlo Novara,Parametric identification of structured nonlinear systems.,2011,47,Automatica,4,db/journals/automatica/automatica47.html#NovaraVHMP11,https://doi.org/10.1016/j.automatica.2011.01.063 +Bin Zhou 0001,A parametric periodic Lyapunov equation with application in semi-global stabilization of discrete-time periodic systems subject to actuator saturation.,2011,47,Automatica,2,db/journals/automatica/automatica47.html#ZhouDL11,https://doi.org/10.1016/j.automatica.2010.10.011 +Guodong Shi,Convergence of max-min consensus algorithms.,2015,62,Automatica,,db/journals/automatica/automatica62.html#ShiXJ15,https://doi.org/10.1016/j.automatica.2015.09.012 +Graziano Chesi,Estimating the domain of attraction for uncertain polynomial systems.,2004,40,Automatica,11,db/journals/automatica/automatica40.html#Chesi04,https://doi.org/10.1016/j.automatica.2004.06.014 +José Calazans de Castro,Frequency Domain Analysis of Oscillatory Modes in Decentralized Control Systems.,1998,34,Automatica,12,db/journals/automatica/automatica34.html#CastroA98,https://doi.org/10.1016/S0005-1098(98)80022-8 +Chi Seng Pun,Robust time-inconsistent stochastic control problems.,2018,94,Automatica,,db/journals/automatica/automatica94.html#Pun18,https://doi.org/10.1016/j.automatica.2018.04.038 +Zidong Wang,Robust reliable control for a class of uncertain nonlinear state-delayed systems.,1999,35,Automatica,5,db/journals/automatica/automatica35.html#WangHU99,https://doi.org/10.1016/S0005-1098(98)00233-7 +Orest V. Iftime,On the Newton-Kleinman method for strongly stabilizable infinite-dimensional systems.,2017,79,Automatica,,db/journals/automatica/automatica79.html#Iftime17,https://doi.org/10.1016/j.automatica.2017.02.017 +Marouane Alma,Adaptive feedforward compensation algorithms for AVC systems in the presence of a feedback controller.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#AlmaLA12,https://doi.org/10.1016/j.automatica.2012.02.015 +Stefano Battilotti,Nonlinear predictors for systems with bounded trajectories and delayed measurements.,2015,59,Automatica,,db/journals/automatica/automatica59.html#Battilotti15,https://doi.org/10.1016/j.automatica.2015.06.007 +T. Martin,Appropriate automation for flexible manufacturing.,1990,26,Automatica,3,db/journals/automatica/automatica26.html#MartinUW90,https://doi.org/10.1016/0005-1098(90)90034-F +Leonardo C. Kammer,Optimal controller properties from closed-loop experiments.,1998,34,Automatica,1,db/journals/automatica/automatica34.html#KammerBB98,https://doi.org/10.1016/S0005-1098(97)00169-6 +Farhad Farokhi,Optimal structured static state-feedback control design with limited model information for fully-actuated systems.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#FarokhiLJ13,https://doi.org/10.1016/j.automatica.2012.10.004 +Constantin-Irinel Morarescu,Passivity-based switching control of flexible-joint complementarity mechanical systems.,2010,46,Automatica,1,db/journals/automatica/automatica46.html#MorarescuB10,https://doi.org/10.1016/j.automatica.2009.10.023 +Juan M. Martin-Sanchez,Multivariable adaptive predictive control of a binary distillation column.,1984,20,Automatica,5,db/journals/automatica/automatica20.html#Martin-SanchezS84,https://doi.org/10.1016/0005-1098(84)90011-6 +Oskar Vivero,A regularised estimator for long-range dependent processes.,2012,48,Automatica,2,db/journals/automatica/automatica48.html#ViveroH12,https://doi.org/10.1016/j.automatica.2011.07.012 +Jan Lunze,Deterministic discrete-event representations of linear continuous-variable systems.,1999,35,Automatica,3,db/journals/automatica/automatica35.html#LunzeNS99,https://doi.org/10.1016/S0005-1098(98)00176-9 +Jiangshuai Huang,Adaptive finite-time consensus control of a group of uncertain nonlinear mechanical systems.,2015,51,Automatica,,db/journals/automatica/automatica51.html#HuangWWS15,https://doi.org/10.1016/j.automatica.2014.10.093 +Jay D. Schwartz,Simulation-based optimization of process control policies for inventory management in supply chains.,2006,42,Automatica,8,db/journals/automatica/automatica42.html#SchwartzWR06,https://doi.org/10.1016/j.automatica.2006.03.019 +Boris M. Miller,Optimization of queuing system via stochastic control.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#Miller09,https://doi.org/10.1016/j.automatica.2009.01.011 +Mei Deng,An ordinal optimization approach to optimal control problems.,1999,35,Automatica,2,db/journals/automatica/automatica35.html#DengH99,https://doi.org/10.1016/S0005-1098(98)00155-1 +Karima Fredj,Slowing deforestation pace through subsidies: a differential game.,2004,40,Automatica,2,db/journals/automatica/automatica40.html#FredjMZ04,https://doi.org/10.1016/j.automatica.2003.10.020 +Michael Sebek,Asymptotic tracking for 2-D and delay-differential systems.,1988,24,Automatica,5,db/journals/automatica/automatica24.html#Sebek88,https://doi.org/10.1016/0005-1098(88)90121-5 +Stefano Longo,Constrained LQR for low-precision data representation.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#LongoKC14,https://doi.org/10.1016/j.automatica.2013.09.035 +Chong Lin,An improvement on multivariable PID controller design via iterative LMI approach.,2004,40,Automatica,3,db/journals/automatica/automatica40.html#LinWL04,https://doi.org/10.1016/j.automatica.2003.10.008 +Jacques L. Willems,The return difference for discrete-time optimal feedback systems.,1978,14,Automatica,5,db/journals/automatica/automatica14.html#WillemsV78,https://doi.org/10.1016/0005-1098(78)90011-0 +Bum Yong Park,An improved stability criterion for discrete-time Lur'e systems with sector- and slope-restrictions.,2015,51,Automatica,,db/journals/automatica/automatica51.html#ParkPK15,https://doi.org/10.1016/j.automatica.2014.10.098 +Erik Wernholt,Nonlinear gray-box identification using local models applied to industrial robots.,2011,47,Automatica,4,db/journals/automatica/automatica47.html#WernholtM11,https://doi.org/10.1016/j.automatica.2011.01.021 +Do-Wan Kim,Theoretical justification of approximate norm minimization method for intelligent digital redesign.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#KimPJ08,https://doi.org/10.1016/j.automatica.2007.07.003 +M. D. S. Aliyu,An approach for solving the Hamilton-Jacobi-Isaacs equation (HJIE) in nonlinear Hinfinity control.,2003,39,Automatica,5,db/journals/automatica/automatica39.html#Aliyu03,https://doi.org/10.1016/S0005-1098(03)00025-6 +Jesse R. Gossner,Stable generalized predictive control with constraints and bounded disturbances.,1997,33,Automatica,4,db/journals/automatica/automatica33.html#GossnerKR97,https://doi.org/10.1016/S0005-1098(96)00214-2 +Patrick C. Parks,Watch on the rhine.,1969,5,Automatica,4,db/journals/automatica/automatica5.html#Parks69,https://doi.org/10.1016/0005-1098(69)90104-6 +Qing-Guo Wang,Robust identification of continuous systems with dead-time from step responses.,2001,37,Automatica,3,db/journals/automatica/automatica37.html#WangZ01,https://doi.org/10.1016/S0005-1098(00)00177-1 +Yufeng Chen,On the enforcement of a class of nonlinear constraints on Petri nets.,2015,55,Automatica,,db/journals/automatica/automatica55.html#ChenLBG15,https://doi.org/10.1016/j.automatica.2015.02.014 +Dinh Hoa Nguyen,A sub-optimal consensus design for multi-agent systems based on hierarchical LQR.,2015,55,Automatica,,db/journals/automatica/automatica55.html#Nguyen15,https://doi.org/10.1016/j.automatica.2015.02.037 +Shu Li,Distributed algorithms for the computation of noncooperative equilibria.,1987,23,Automatica,4,db/journals/automatica/automatica23.html#LiB87,https://doi.org/10.1016/0005-1098(87)90081-1 +Eugenio Schuster,Plasma vertical stabilization with actuation constraints in the DIII-D tokamak.,2005,41,Automatica,7,db/journals/automatica/automatica41.html#SchusterWHK05,https://doi.org/10.1016/j.automatica.2004.12.015 +Chiang-Ju Chien,Iterative learning of model reference adaptive controller for uncertain nonlinear systems with only output measurement.,2004,40,Automatica,5,db/journals/automatica/automatica40.html#ChienY04a,https://doi.org/10.1016/j.automatica.2003.12.009 +Chengzhi Yuan,Exact-memory and memoryless control of linear systems with time-varying input delay using dynamic IQCs.,2017,77,Automatica,,db/journals/automatica/automatica77.html#YuanW17,https://doi.org/10.1016/j.automatica.2016.11.015 +Aykut Yildiz,Foraging motion of swarms with leaders as Nash equilibria.,2016,73,Automatica,,db/journals/automatica/automatica73.html#YildizO16,https://doi.org/10.1016/j.automatica.2016.07.024 +Xi-Ren Cao,A time aggregation approach to Markov decision processes.,2002,38,Automatica,6,db/journals/automatica/automatica38.html#CaoRBFM02,https://doi.org/10.1016/S0005-1098(01)00282-5 +Gila E. Fruchter,Dynamic brand-image-based production location decisions.,2006,42,Automatica,8,db/journals/automatica/automatica42.html#FruchterJN06,https://doi.org/10.1016/j.automatica.2006.01.020 +Andrey V. Borisov,The Wonham filter under uncertainty: A game-theoretic approach.,2011,47,Automatica,5,db/journals/automatica/automatica47.html#Borisov11,https://doi.org/10.1016/j.automatica.2011.01.056 +Dirk Aeyels,Mathematical theories of non-linear systems : Stephen P. Banks.,1990,26,Automatica,6,db/journals/automatica/automatica26.html#Aeyels90,https://doi.org/10.1016/0005-1098(90)90089-Z +Sei Zhen Khong,Extremum seeking of dynamical systems via gradient descent and stochastic approximation methods.,2015,56,Automatica,,db/journals/automatica/automatica56.html#KhongTMN15,https://doi.org/10.1016/j.automatica.2015.03.018 +Roberto Naldi,Robust control of transition maneuvers for a class of V/STOL aircraft.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#NaldiM13,https://doi.org/10.1016/j.automatica.2013.03.006 +Zhesheng Jiang,On-line robust trajectory generation on approach and landing for reusable launch vehicles.,2009,45,Automatica,7,db/journals/automatica/automatica45.html#JiangO09,https://doi.org/10.1016/j.automatica.2009.03.017 +Xing Zhu 0001,Design and analysis of discrete-time robust Kalman filters.,2002,38,Automatica,6,db/journals/automatica/automatica38.html#ZhuSX02,https://doi.org/10.1016/S0005-1098(01)00298-9 +Jianghua Zhong,Constructive stabilization for quadratic input nonlinear systems.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#ZhongCH08,https://doi.org/10.1016/j.automatica.2008.01.005 +Shaoshuai Mou,Target-point formation control.,2015,61,Automatica,,db/journals/automatica/automatica61.html#MouCM15,https://doi.org/10.1016/j.automatica.2015.08.004 +Carlos Canudas de Wit,Sliding observers for robot manipulators.,1991,27,Automatica,5,db/journals/automatica/automatica27.html#WitS91,https://doi.org/10.1016/0005-1098(91)90041-Y +Mohammed M'Saad,Adaptive controllers for discrete-time systems with arbitrary zeros: An overview.,1985,21,Automatica,4,db/journals/automatica/automatica21.html#MSaadOL85,https://doi.org/10.1016/0005-1098(85)90077-9 +H. Ying,Author's reply to M. De Neyer and R. Gorez's comments.,1996,32,Automatica,11,db/journals/automatica/automatica32.html#Ying96,https://doi.org/10.1016/S0005-1098(96)00107-0 +Vincent Fromion,The weighted incremental norm approach: from linear to nonlinear Hinfinity control.,2001,37,Automatica,10,db/journals/automatica/automatica37.html#FromionMN01,https://doi.org/10.1016/S0005-1098(01)00106-6 +E. Tissir,Further results on stability of dbt(t) = Ax(t) + Bx(t-χ4*).,1996,32,Automatica,12,db/journals/automatica/automatica32.html#TissirH96,https://doi.org/10.1016/S0005-1098(96)80010-0 +Paolo Bolzern,On almost sure stability of continuous-time Markov jump linear systems.,2006,42,Automatica,6,db/journals/automatica/automatica42.html#BolzernCN06,https://doi.org/10.1016/j.automatica.2006.02.007 +Amenda Chow,Control of the Landau-Lifshitz equation.,2016,67,Automatica,,db/journals/automatica/automatica67.html#ChowM16,https://doi.org/10.1016/j.automatica.2016.01.044 +Huibert Kwakernaak,Optimale lineare regelung: S. Engell.,1991,27,Automatica,4,db/journals/automatica/automatica27.html#Kwakernaak91,https://doi.org/10.1016/0005-1098(91)90071-9 +Tibor Vámos,Introduction and overview.,1983,19,Automatica,3,db/journals/automatica/automatica19.html#Vamos83,https://doi.org/10.1016/0005-1098(83)90113-9 +Alberto Tesi,Clockwise property of the Nyquist plot with implications for absolute stability.,1992,28,Automatica,1,db/journals/automatica/automatica28.html#TesiVZ92,https://doi.org/10.1016/0005-1098(92)90008-4 +Matthew L. Tyler,Propositional logic in control and monitoring problems.,1999,35,Automatica,4,db/journals/automatica/automatica35.html#TylerM99,https://doi.org/10.1016/S0005-1098(98)00198-8 +Christopher Nielsen,Path following using transverse feedback linearization: Application to a maglev positioning system.,2010,46,Automatica,3,db/journals/automatica/automatica46.html#NielsenFM10,https://doi.org/10.1016/j.automatica.2010.01.009 +J. D. Paduano,Modeling for control of rotating stall.,1994,30,Automatica,9,db/journals/automatica/automatica30.html#PaduanoVEGG94,https://doi.org/10.1016/0005-1098(94)90001-9 +Térence Bayen,Optimization of the separation of two species in a chemostat.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#BayenM14,https://doi.org/10.1016/j.automatica.2014.02.024 +Maarten Schoukens,Parametric identification of parallel Wiener-Hammerstein systems.,2015,51,Automatica,,db/journals/automatica/automatica51.html#SchoukensMPVR15,https://doi.org/10.1016/j.automatica.2014.10.105 +Sequare Daniel-Berhe,Bilinear Continuous-Time Systems Identification via Hartley-Based Modulating Functions.,1998,34,Automatica,4,db/journals/automatica/automatica34.html#Daniel-BerheU98,https://doi.org/10.1016/S0005-1098(97)00216-1 +Bernardo A. León de la Barra,On undershoot in scalar discrete-time systems.,1996,32,Automatica,2,db/journals/automatica/automatica32.html#BarraEF96,https://doi.org/10.1016/0005-1098(96)85556-7 +Guangming Xie,Periodic stabilizability of switched linear control systems.,2009,45,Automatica,9,db/journals/automatica/automatica45.html#XieW09,https://doi.org/10.1016/j.automatica.2009.05.016 +José E. R. Cury,Supervisory control of discrete event systems with distinguishers.,2015,56,Automatica,,db/journals/automatica/automatica56.html#CuryQBT15,https://doi.org/10.1016/j.automatica.2015.03.025 +Ali Zemouche,On LMI conditions to design observers for Lipschitz nonlinear systems.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#ZemoucheB13,https://doi.org/10.1016/j.automatica.2012.11.029 +Tae-Yong Kuc,Learning strictly positive real linear systems with uncertain parameters and unknown input disturbances.,1996,32,Automatica,5,db/journals/automatica/automatica32.html#KucL96,https://doi.org/10.1016/0005-1098(96)00001-5 +Ahmet Palazoglu,Control of nonlinear distributed parameter systems using generalized invariants.,2000,36,Automatica,5,db/journals/automatica/automatica36.html#PalazogluK00,https://doi.org/10.1016/S0005-1098(99)00196-X +C. Santacesaria,Easy tuning of smith predictor in presence of delay uncertainty.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#SantacesariaS93,https://doi.org/10.1016/0005-1098(93)90027-Q +H. Rake,Step response and frequency response methods.,1980,16,Automatica,5,db/journals/automatica/automatica16.html#Rake80,https://doi.org/10.1016/0005-1098(80)90075-8 +Simone Del Favero,A majorization inequality and its application to distributed Kalman filtering.,2011,47,Automatica,11,db/journals/automatica/automatica47.html#FaveroZ11,https://doi.org/10.1016/j.automatica.2011.08.031 +Zongli Lin,Solutions to general Hinfinity almost disturbance decoupling problem with measurement feedback and internal stability for discrete-time systems.,2000,36,Automatica,8,db/journals/automatica/automatica36.html#LinC00,https://doi.org/10.1016/S0005-1098(00)00022-4 +Shihong Ding,Simple homogeneous sliding-mode controller.,2016,67,Automatica,,db/journals/automatica/automatica67.html#DingLL16,https://doi.org/10.1016/j.automatica.2016.01.017 +Alberto Isidori,Nonlinear dynamical systems : P. A. Cook.,1990,26,Automatica,5,db/journals/automatica/automatica26.html#Isidori90,https://doi.org/10.1016/0005-1098(90)90016-B +Hamed Kebriaei,On the stability of quadratic dynamics in discrete time n-player Cournot games.,2012,48,Automatica,6,db/journals/automatica/automatica48.html#KebriaeiR12,https://doi.org/10.1016/j.automatica.2012.03.021 +H. S. Hoang,On the stability of a reduced-order filter based on dominant singular value decomposition of the system dynamics.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#HoangBT09,https://doi.org/10.1016/j.automatica.2009.06.032 +Necati özdemir,Integral control by variable sampling based on steady-state data.,2003,39,Automatica,1,db/journals/automatica/automatica39.html#OzdemirT03,https://doi.org/10.1016/S0005-1098(02)00182-6 +Antonio Sala 0001,"Extensions to ""virtual reference feedback tuning: A direct method for the design of feedback controllers"".",2005,41,Automatica,8,db/journals/automatica/automatica41.html#SalaE05,https://doi.org/10.1016/j.automatica.2005.02.008 +Antoine Girard,Hierarchical control system design using approximate simulation.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#GirardP09,https://doi.org/10.1016/j.automatica.2008.09.016 +Runsheng Cao,Evaluation of a pattern recognition adaptive PID controller.,1990,26,Automatica,4,db/journals/automatica/automatica26.html#CaoM90,https://doi.org/10.1016/0005-1098(90)90055-M +Peter J. Gawthrop,Data compression for estimation of the physical parameters of stable and unstable linear systems.,2005,41,Automatica,8,db/journals/automatica/automatica41.html#GawthropW05,https://doi.org/10.1016/j.automatica.2005.03.013 +Mohamed El Mongi Ben Gaid,Trading quantization precision for update rates for systems with limited communication in the uplink channel.,2010,46,Automatica,7,db/journals/automatica/automatica46.html#GaidC10,https://doi.org/10.1016/j.automatica.2010.04.001 +Taha Boukhobza,Observability of structured linear systems in descriptor form: A graph-theoretic approach.,2006,42,Automatica,4,db/journals/automatica/automatica42.html#BoukhobzaHS06,https://doi.org/10.1016/j.automatica.2005.12.001 +Nacim Ramdani,Mode discernibility and bounded-error state estimation for nonlinear hybrid systems.,2018,91,Automatica,,db/journals/automatica/automatica91.html#RamdaniTJ18,https://doi.org/10.1016/j.automatica.2018.01.022 +Christiaan Heij,Consistency of system identification by global total least squares.,1999,35,Automatica,6,db/journals/automatica/automatica35.html#HeijS99,https://doi.org/10.1016/S0005-1098(99)00006-0 +Keat-Choon Goh,Duality and basis functions for robust H2-performance analysis.,1997,33,Automatica,11,db/journals/automatica/automatica33.html#GohW97,https://doi.org/10.1016/S0005-1098(97)00103-9 +Xinkai Chen,Adaptive sliding mode control for discrete-time multi-input multi-output systems.,2006,42,Automatica,3,db/journals/automatica/automatica42.html#Chen06,https://doi.org/10.1016/j.automatica.2005.10.008 +Erik Frisk,A minimal polynomial basis solution to residual generation for fault diagnosis in linear systems.,2001,37,Automatica,9,db/journals/automatica/automatica37.html#FriskN01,https://doi.org/10.1016/S0005-1098(01)00078-4 +Ivan Markovsky,Realization and identification of autonomous linear periodically time-varying systems.,2014,50,Automatica,6,db/journals/automatica/automatica50.html#MarkovskyGUP14,https://doi.org/10.1016/j.automatica.2014.04.003 +Setsuo Sagara,Numerical integration approach to on-line identification of continuous-time systems.,1990,26,Automatica,1,db/journals/automatica/automatica26.html#SagaraZ90,https://doi.org/10.1016/0005-1098(90)90158-E +Alexandre S. Bazanella,Iterative minimization of H2 control performance criteria.,2008,44,Automatica,10,db/journals/automatica/automatica44.html#BazanellaGMA08,https://doi.org/10.1016/j.automatica.2008.03.014 +Meryem Makoudi,Robust decentralized adaptive control for non-minimum phase systems with unknown and/or time varying delay.,1999,35,Automatica,8,db/journals/automatica/automatica35.html#MakoudiR99,https://doi.org/10.1016/S0005-1098(99)00052-7 +Richard J. Gibbens,Resource pricing and the evolution of congestion control.,1999,35,Automatica,12,db/journals/automatica/automatica35.html#GibbensK99,https://doi.org/10.1016/S0005-1098(99)00135-1 +Nam Hoon Jo,A study of disturbance observers with unknown relative degree of the plant.,2014,50,Automatica,6,db/journals/automatica/automatica50.html#JoJS14,https://doi.org/10.1016/j.automatica.2014.04.015 +Xiaohua Xia,Delta-Modulated feedback in discretization of sliding mode control.,2006,42,Automatica,5,db/journals/automatica/automatica42.html#XiaZ06,https://doi.org/10.1016/j.automatica.2005.12.026 +Jordan M. Berg,A canonical parameterization of the Kronecker form of a matrix pencil.,1995,31,Automatica,5,db/journals/automatica/automatica31.html#BergK95,https://doi.org/10.1016/0005-1098(94)00111-U +Wuquan Li,Distributed practical output tracking of high-order stochastic multi-agent systems with inherent nonlinear drift and diffusion terms.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#LiZ14,https://doi.org/10.1016/j.automatica.2014.10.041 +Hervé Marchand,On optimal control of a class of partially observed discrete event systems.,2002,38,Automatica,11,db/journals/automatica/automatica38.html#MarchandBL02,https://doi.org/10.1016/S0005-1098(02)00089-4 +Han-Fu Chen,Strongly consistent coefficient estimate for errors-in-variables models.,2005,41,Automatica,6,db/journals/automatica/automatica41.html#ChenY05,https://doi.org/10.1016/j.automatica.2004.12.007 +Dionisis Stefanatos,Fast cavity optomechanical cooling.,2016,73,Automatica,,db/journals/automatica/automatica73.html#Stefanatos16,https://doi.org/10.1016/j.automatica.2016.07.035 +Marcelo Moisan,Near optimal interval observers bundle for uncertain bioreactors.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#MoisanBG09,https://doi.org/10.1016/j.automatica.2008.07.006 +Nem Stefanovic,An analysis of stability with time-delay of link level power control in optical networks.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#StefanovicP09,https://doi.org/10.1016/j.automatica.2008.05.030 +B. V. Jayawant,Low-speed vehicle dynamics and ride quality using controlled D.C. electromagnets.,1977,13,Automatica,6,db/journals/automatica/automatica13.html#JayawantS77,https://doi.org/10.1016/0005-1098(77)90081-4 +Seong-Jin Park,Supervisory control for real-time scheduling of periodic and sporadic tasks with resource constraints.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#ParkY09,https://doi.org/10.1016/j.automatica.2009.07.011 +Alex D. Kalafatis,Identification of time-varying pH processes using sinusoidal signals.,2005,41,Automatica,4,db/journals/automatica/automatica41.html#KalafatisWC05,https://doi.org/10.1016/j.automatica.2004.11.003 +Niranjan A. Subrahmanya,Adaptive divided difference filtering for simultaneous state and parameter estimation.,2009,45,Automatica,7,db/journals/automatica/automatica45.html#SubrahmanyaS09,https://doi.org/10.1016/j.automatica.2009.02.029 +Konrad Reif,An EKF-Based Nonlinear Observer with a Prescribed Degree of Stability.,1998,34,Automatica,9,db/journals/automatica/automatica34.html#ReifSU98,https://doi.org/10.1016/S0005-1098(98)00053-3 +,Naum Samoylovich Rajbman 4 February 1921-8 January 1981.,1981,17,Automatica,5,db/journals/automatica/automatica17.html#X81a,https://doi.org/10.1016/0005-1098(81)90014-5 +Jean-Jacques E. Slotine,Composite adaptive control of robot manipulators.,1989,25,Automatica,4,db/journals/automatica/automatica25.html#SlotineL89,https://doi.org/10.1016/0005-1098(89)90094-0 +P. M. Mäkilä,On robustness in control and LTI identification: Near-linearity and non-conic uncertainty.,2006,42,Automatica,4,db/journals/automatica/automatica42.html#Makila06,https://doi.org/10.1016/j.automatica.2005.12.011 +T. Roland Fredriksen,The closed-loop step motor: An ideal actuator for process control.,1969,5,Automatica,1,db/journals/automatica/automatica5.html#Fredriksen69,https://doi.org/10.1016/0005-1098(69)90056-9 +Georges Bastin,Identification and optimal estimation of random fields from scattered point-wise data.,1985,21,Automatica,2,db/journals/automatica/automatica21.html#BastinG85,https://doi.org/10.1016/0005-1098(85)90109-8 +Keyou You,Attainability of the minimum data rate for stabilization of linear systems via logarithmic quantization.,2011,47,Automatica,1,db/journals/automatica/automatica47.html#YouSFX11,https://doi.org/10.1016/j.automatica.2010.10.024 +Ali Zolghadri,A two-ellipsoid overlap test for on-line failure detection.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#ZolghadriBM93,https://doi.org/10.1016/0005-1098(93)90014-K +Xinyun Liu,On potential equations of finite games.,2016,68,Automatica,,db/journals/automatica/automatica68.html#LiuZ16,https://doi.org/10.1016/j.automatica.2016.01.074 +Qingshuo Song,Convergence of Markov chain approximation on generalized HJB equation and its applications.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#Song08,https://doi.org/10.1016/j.automatica.2007.07.014 +Miguel Galrinho,ARX modeling of unstable linear systems.,2017,75,Automatica,,db/journals/automatica/automatica75.html#GalrinhoEH17,https://doi.org/10.1016/j.automatica.2016.09.041 +Shuzhi Sam Ge,Adaptive stabilization of uncertain nonholonomic systems by state and output feedback.,2003,39,Automatica,8,db/journals/automatica/automatica39.html#GeWL03,https://doi.org/10.1016/S0005-1098(03)00119-5 +Petros A. Ioannou,Dominant richness and improvement of performance of robust adaptive control.,1989,25,Automatica,2,db/journals/automatica/automatica25.html#IoannouT89,https://doi.org/10.1016/0005-1098(89)90083-6 +Pertti M. Mäkilä,Constrained linear quadratic gaussian control with process applications.,1984,20,Automatica,1,db/journals/automatica/automatica20.html#MakilaWT84,https://doi.org/10.1016/0005-1098(84)90061-X +J. B. Knowles,Computational error effects in a direct digital control system.,1966,4,Automatica,1,db/journals/automatica/automatica4.html#KnowlesE66,https://doi.org/10.1016/0005-1098(66)90003-3 +Maria Paola Cabasino,Fault detection for discrete event systems using Petri nets with unobservable transitions.,2010,46,Automatica,9,db/journals/automatica/automatica46.html#CabasinoGS10,https://doi.org/10.1016/j.automatica.2010.06.013 +Huiping Li,Receding horizon consensus of general linear multi-agent systems with input constraints: An inverse optimality approach.,2018,91,Automatica,,db/journals/automatica/automatica91.html#LiSYL18,https://doi.org/10.1016/j.automatica.2018.01.024 +P. Kallappa,Fuzzy wide-range control of fossil power plants for life extension and robust performance.,2000,36,Automatica,1,db/journals/automatica/automatica36.html#KallappaR00,https://doi.org/10.1016/S0005-1098(99)00103-X +Carlos Mosquera,Algebraic solution to the robust SPR problem for two polynomials.,2001,37,Automatica,5,db/journals/automatica/automatica37.html#MosqueraP01a,https://doi.org/10.1016/S0005-1098(01)00011-5 +Yu-Ping Tian,Structural modeling and convergence analysis of consensus-based time synchronization algorithms over networks: Non-topological conditions.,2016,65,Automatica,,db/journals/automatica/automatica65.html#TianZC16,https://doi.org/10.1016/j.automatica.2015.11.034 +Jingyi Wang,The synchronization of instantaneously coupled harmonic oscillators using sampled data with measurement noise.,2016,66,Automatica,,db/journals/automatica/automatica66.html#WangFXCZF16,https://doi.org/10.1016/j.automatica.2016.01.012 +Håvard Fjær Grip,Globally exponentially stable attitude and gyro bias estimation with application to GNSS/INS integration.,2015,51,Automatica,,db/journals/automatica/automatica51.html#GripFJS15,https://doi.org/10.1016/j.automatica.2014.10.076 +Bing Chen 0001,Novel adaptive neural control design for nonlinear MIMO time-delay systems.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#ChenLLL09a,https://doi.org/10.1016/j.automatica.2009.02.021 +Masayuki Sato,Gain-scheduled output-feedback controllers using inexact scheduling parameters for continuous-time LPV systems.,2013,49,Automatica,4,db/journals/automatica/automatica49.html#SatoP13,https://doi.org/10.1016/j.automatica.2013.01.034 +Agoes A. Moelja,H2 control of preview systems.,2006,42,Automatica,6,db/journals/automatica/automatica42.html#MoeljaM06,https://doi.org/10.1016/j.automatica.2006.01.023 +Graziano Chesi,Rational Lyapunov functions for estimating and controlling the robust domain of attraction.,2013,49,Automatica,4,db/journals/automatica/automatica49.html#Chesi13,https://doi.org/10.1016/j.automatica.2013.01.032 +Xiaojun Tang,New results on pseudospectral methods for optimal control.,2016,65,Automatica,,db/journals/automatica/automatica65.html#TangLH16,https://doi.org/10.1016/j.automatica.2015.11.035 +Vincent Wertz,Application of Clarke-Gawthrop type controllers for the bottom temperature of a glass furnace.,1987,23,Automatica,2,db/journals/automatica/automatica23.html#WertzD87,https://doi.org/10.1016/0005-1098(87)90094-X +Jacob Engwerda,The regular convex cooperative linear quadratic control problem.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#Engwerda08a,https://doi.org/10.1016/j.automatica.2008.01.022 +Baoqi Huang,Performance limits in sensor localization.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#HuangLAY13,https://doi.org/10.1016/j.automatica.2012.11.011 +Steven W. Su,Use of integrator in nonlinear H INFINITY design for disturbance rejection.,2002,38,Automatica,11,db/journals/automatica/automatica38.html#SuAB02,https://doi.org/10.1016/S0005-1098(02)00117-6 +Carlos E. Garcia,Model predictive control: Theory and practice - A survey.,1989,25,Automatica,3,db/journals/automatica/automatica25.html#GarciaPM89,https://doi.org/10.1016/0005-1098(89)90002-2 +Steffen Jørgensen,Incentive equilibrium strategies and welfare allocation in a dynamic game of pollution control.,2001,37,Automatica,1,db/journals/automatica/automatica37.html#JorgensenZ01,https://doi.org/10.1016/S0005-1098(00)00119-9 +Rafael Castro,Nonlinear disturbance decoupling control of a binary distillation column.,1990,26,Automatica,3,db/journals/automatica/automatica26.html#CastroAA90,https://doi.org/10.1016/0005-1098(90)90027-F +Basílio E. A. Milani,Robust linear regulator design for discrete-time systems under polyhedral constraints.,1995,31,Automatica,10,db/journals/automatica/automatica31.html#MilaniC95,https://doi.org/10.1016/0005-1098(95)00056-3 +Takayuki Ishizaki,Interval quadratic programming for day-ahead dispatch of uncertain predicted demand.,2016,64,Automatica,,db/journals/automatica/automatica64.html#IshizakiKRUMOSI16,https://doi.org/10.1016/j.automatica.2015.11.002 +Li Qiu,A formula for computation of the real stability radius.,1995,31,Automatica,6,db/journals/automatica/automatica31.html#QiuBRDYD95,https://doi.org/10.1016/0005-1098(95)00024-Q +Sabine Van Huffel,On the accuracy of total least squares and least squares techniques in the presence of errors on all data.,1989,25,Automatica,5,db/journals/automatica/automatica25.html#HuffelV89,https://doi.org/10.1016/0005-1098(89)90033-2 +Sen Kuang,Lyapunov control methods of closed quantum systems.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#KuangC08,https://doi.org/10.1016/j.automatica.2007.05.013 +Yong Feng,"Reply to ""Comments on 'Chattering free full-order sliding-mode control' [Automatica 50 (2014) 1310-1314]"".",2016,72,Automatica,,db/journals/automatica/automatica72.html#FengHY16,https://doi.org/10.1016/j.automatica.2016.04.036 +Yong Liu,An application of dynamic Nash task assignment strategies to multi-team military air operations.,2003,39,Automatica,8,db/journals/automatica/automatica39.html#LiuSC03,https://doi.org/10.1016/S0005-1098(03)00122-5 +Efstathios N. Antoniou,A note on the action of constant pseudostate feedback on the internal properness of an ARMA model.,1999,35,Automatica,8,db/journals/automatica/automatica35.html#AntoniouV99,https://doi.org/10.1016/S0005-1098(99)00039-4 +Yan Zhang 0035,Stabilization for Markovian jump systems with partial information on transition probability based on free-connection weighting matrices.,2011,47,Automatica,1,db/journals/automatica/automatica47.html#ZhangHWZ11,https://doi.org/10.1016/j.automatica.2010.09.009 +O. O. Badmus,Nonlinear control of surge in axial compression systems.,1996,32,Automatica,1,db/journals/automatica/automatica32.html#BadmusCN96,https://doi.org/10.1016/0005-1098(95)00104-2 +Sinuhé Martinez-Martinez,Graphic approach for the determination of the existence of sequences guaranteeing observability of switched linear systems.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#Martinez-MartinezMHMB14,https://doi.org/10.1016/j.automatica.2013.11.026 +Pubudu N. Pathirana,Stability of positive coupled differential-difference equations with unbounded time-varying delays.,2018,92,Automatica,,db/journals/automatica/automatica92.html#PathiranaNT18,https://doi.org/10.1016/j.automatica.2018.03.055 +Lacra Pavel,An extension of duality to a game-theoretic framework.,2007,43,Automatica,2,db/journals/automatica/automatica43.html#Pavel07,https://doi.org/10.1016/j.automatica.2006.08.027 +Vladimir L. Kharitonov,An extension of the prediction scheme to the case of systems with both input and state delay.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#Kharitonov14,https://doi.org/10.1016/j.automatica.2013.09.042 +Vassilis L. Syrmos,Static output feedback - A survey.,1997,33,Automatica,2,db/journals/automatica/automatica33.html#SyrmosADG97,https://doi.org/10.1016/S0005-1098(96)00141-0 +Belle R. Upadhyaya,Synthesis of linear stochastic signals in identification problems.,1977,13,Automatica,6,db/journals/automatica/automatica13.html#UpadhyayaS77,https://doi.org/10.1016/0005-1098(77)90083-8 +Giovanni Marro,Convolution profiles for right inversion of multivariable non-minimum phase discrete-time systems.,2002,38,Automatica,10,db/journals/automatica/automatica38.html#MarroPZ02,https://doi.org/10.1016/S0005-1098(02)00088-2 +Kostas Tsakalis,Adaptive control of linear time-varying plants.,1987,23,Automatica,4,db/journals/automatica/automatica23.html#TsakalisI87,https://doi.org/10.1016/0005-1098(87)90075-6 +Jung-Min Yang,A simple fault tolerant control for input/output asynchronous sequential machines.,2015,52,Automatica,,db/journals/automatica/automatica52.html#Yang15,https://doi.org/10.1016/j.automatica.2014.10.107 +Pauline Bernard,On the triangular canonical form for uniformly observable controlled systems.,2017,85,Automatica,,db/journals/automatica/automatica85.html#BernardPAH17,https://doi.org/10.1016/j.automatica.2017.07.034 +Rodney A. Martin,Optimal level-crossing prediction for jump linear MIMO dynamical systems.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#Martin13,https://doi.org/10.1016/j.automatica.2013.04.008 +Jesús Marín-Solano,Non-constant discounting and differential games with random time horizon.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#Marin-SolanoS11,https://doi.org/10.1016/j.automatica.2011.09.010 +Anthony Vannelli,Maximal lyapunov functions and domains of attraction for autonomous nonlinear systems.,1985,21,Automatica,1,db/journals/automatica/automatica21.html#VannelliV85,https://doi.org/10.1016/0005-1098(85)90099-8 +James J. Buckley,Erratum: Universal fuzzy controllers.,1997,33,Automatica,9,db/journals/automatica/automatica33.html#Buckley97,https://doi.org/10.1016/S0005-1098(97)00109-X +Hag Seong Kim,Robust nonlinear task space control for 6 DOF parallel manipulator.,2005,41,Automatica,9,db/journals/automatica/automatica41.html#KimCL05,https://doi.org/10.1016/j.automatica.2005.04.014 +Paraskevas N. Paraskevopoulos,Exact model matching of linear systems using generalized sampled-data hold functions.,1994,30,Automatica,3,db/journals/automatica/automatica30.html#ParaskevopoulosA94,https://doi.org/10.1016/0005-1098(94)90127-9 +Elena De Santis,A structural approach to detectability for a class of hybrid systems.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#SantisBP09,https://doi.org/10.1016/j.automatica.2008.12.014 +Christian van Delft,A practical implementation of stochastic programming: an application to the evaluation of option contracts in supply chains.,2004,40,Automatica,5,db/journals/automatica/automatica40.html#DelftV04,https://doi.org/10.1016/j.automatica.2003.12.008 +Pertti M. Mäkilä,H∞-optimization and optimal rejection of persistent disturbances.,1990,26,Automatica,3,db/journals/automatica/automatica26.html#Makila90a,https://doi.org/10.1016/0005-1098(90)90035-G +Hyeygjeon Chang,A control theoretic approach to malaria immunotherapy with state jumps.,2011,47,Automatica,6,db/journals/automatica/automatica47.html#ChangAS11,https://doi.org/10.1016/j.automatica.2011.03.009 +Michael Malisoff,Stabilization and robustness analysis for a chain of exponential integrators using strict Lyapunov functions.,2016,68,Automatica,,db/journals/automatica/automatica68.html#MalisoffK16,https://doi.org/10.1016/j.automatica.2016.01.066 +Alex da Rosa,Choice of free parameters in expansions of discrete-time Volterra models using Kautz functions.,2007,43,Automatica,6,db/journals/automatica/automatica43.html#RosaCA07,https://doi.org/10.1016/j.automatica.2006.12.007 +Giorgio Battistelli,Moving horizon estimation for discrete-time linear systems with binary sensors: Algorithms and stability results.,2017,85,Automatica,,db/journals/automatica/automatica85.html#BattistelliCG17,https://doi.org/10.1016/j.automatica.2017.07.035 +Peng Cui,Indefinite linear quadratic optimal control problem for singular discrete-time system with multiple input delays.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#CuiZZZ09,https://doi.org/10.1016/j.automatica.2009.06.018 +Jie Mei,Distributed containment control for Lagrangian networks with parametric uncertainties under a directed graph.,2012,48,Automatica,4,db/journals/automatica/automatica48.html#MeiRM12,https://doi.org/10.1016/j.automatica.2012.01.020 +Kiheon Park,A simple existence condition of one-degree-of-freedom block decoupling controllers.,2015,51,Automatica,,db/journals/automatica/automatica51.html#Park15,https://doi.org/10.1016/j.automatica.2014.10.072 +Francesco Bullo,Tracking for fully actuated mechanical systems: a geometric framework.,1999,35,Automatica,1,db/journals/automatica/automatica35.html#BulloM99,https://doi.org/10.1016/S0005-1098(98)00119-8 +Michèle Breton,A differential game of joint implementation of environmental projects.,2005,41,Automatica,10,db/journals/automatica/automatica41.html#BretonZZ05,https://doi.org/10.1016/j.automatica.2005.05.004 +Jean-Claude Hennet,A class of invariant regulators for the discrete-time linear constrained regulation problem.,1991,27,Automatica,3,db/journals/automatica/automatica27.html#HennetB91,https://doi.org/10.1016/0005-1098(91)90114-H +Elias B. Kosmatopoulos,An adaptive optimization scheme with satisfactory transient performance.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#Kosmatopoulos09,https://doi.org/10.1016/j.automatica.2008.09.014 +Zhi-gang Su,Global stabilization via sampled-data output feedback for large-scale systems interconnected by inherent nonlinearities.,2018,92,Automatica,,db/journals/automatica/automatica92.html#SuQHZ18,https://doi.org/10.1016/j.automatica.2018.03.057 +Ivan R. Gurov,On the robustness of H∞ state feedback control to nonlinear perturbations.,1994,30,Automatica,3,db/journals/automatica/automatica30.html#GurovT94,https://doi.org/10.1016/0005-1098(94)90126-0 +Shuping Ma,A singular system approach to robust sliding mode control for uncertain Markov jump systems.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#MaB09,https://doi.org/10.1016/j.automatica.2009.07.027 +David Angeli,Predictive PI-control of linear plants under positional and incremental input saturations.,2000,36,Automatica,10,db/journals/automatica/automatica36.html#AngeliCM00,https://doi.org/10.1016/S0005-1098(00)00065-0 +D. Marc Kilgour,The graph model for conflicts.,1987,23,Automatica,1,db/journals/automatica/automatica23.html#KilgourHF87,https://doi.org/10.1016/0005-1098(87)90117-8 +Diego Eckhard,Input design as a tool to improve the convergence of PEM.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#EckhardBRH13,https://doi.org/10.1016/j.automatica.2013.08.027 +Guangwei Zhu,A distributed continuous-time algorithm for network localization using angle-of-arrival information.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#ZhuH14,https://doi.org/10.1016/j.automatica.2013.09.033 +Elena N. Gryazina,Stability regions in the parameter space: D-decomposition revisited.,2006,42,Automatica,1,db/journals/automatica/automatica42.html#GryazinaP06,https://doi.org/10.1016/j.automatica.2005.08.010 +Silviu-Iulian Niculescu,On delay robustness analysis of a simple control algorithm in high-speed networks.,2002,38,Automatica,5,db/journals/automatica/automatica38.html#Niculescu02,https://doi.org/10.1016/S0005-1098(01)00260-6 +Diego Muñoz-Carpintero,Striped Parameterized Tube Model Predictive Control.,2016,67,Automatica,,db/journals/automatica/automatica67.html#Munoz-Carpintero16,https://doi.org/10.1016/j.automatica.2015.12.032 +Xinmin Liu,On the problem of general structural assignments of linear systems through sensor/actuator selection.,2003,39,Automatica,2,db/journals/automatica/automatica39.html#LiuCL03,https://doi.org/10.1016/S0005-1098(02)00167-X +Riccardo Marino,An adaptive learning regulator for uncertain minimum phase systems with undermodeled unknown exosystems.,2011,47,Automatica,4,db/journals/automatica/automatica47.html#MarinoT11,https://doi.org/10.1016/j.automatica.2011.01.019 +Tadashi Ishihara,Integral controller design based on disturbance cancellation: Partial LTR approach for non-minimum phase plants.,2005,41,Automatica,12,db/journals/automatica/automatica41.html#IshiharaGT05,https://doi.org/10.1016/j.automatica.2005.06.009 +Richard E. Cullingford,A heuristically 'optimal' knowledge base organization technique.,1983,19,Automatica,6,db/journals/automatica/automatica19.html#CullingfordJ83,https://doi.org/10.1016/0005-1098(83)90028-6 +Pranob Banerjee,The role of signal processing methods in the robust design of predictive control.,1995,31,Automatica,5,db/journals/automatica/automatica31.html#BanerjeeS95,https://doi.org/10.1016/0005-1098(94)00152-9 +Suman Chakravorty,Motion planning in uncertain environments with vision-like sensors.,2007,43,Automatica,12,db/journals/automatica/automatica43.html#ChakravortyJ07,https://doi.org/10.1016/j.automatica.2007.04.022 +Dragan Nesic,Lyapunov-based continuous-time nonlinear controller redesign for sampled-data implementation.,2005,41,Automatica,7,db/journals/automatica/automatica41.html#NesicG05,https://doi.org/10.1016/j.automatica.2005.03.001 +Chunlei Zhang,Robust and adaptive design of numerical optimization-based extremum seeking control.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#ZhangO09,https://doi.org/10.1016/j.automatica.2008.09.025 +James M. Krause,Sufficient conditions for robust performance of adaptive controllers with general uncertainty structure.,1992,28,Automatica,2,db/journals/automatica/automatica28.html#KrauseSK92,https://doi.org/10.1016/0005-1098(92)90115-V +Srikant Sukumar,A jammer's perspective of reachability and LQ optimal control.,2016,70,Automatica,,db/journals/automatica/automatica70.html#SukumarC16,https://doi.org/10.1016/j.automatica.2016.03.026 +Sebastian Ibarra-Rojas,Global observability analysis of sensorless induction motors.,2004,40,Automatica,6,db/journals/automatica/automatica40.html#Ibarra-RojasME04,https://doi.org/10.1016/j.automatica.2004.01.020 +Ben M. Chen,Construction and parameterization of all static and dynamic H2-optimal state feedback solutions for discrete-time systems.,1994,30,Automatica,10,db/journals/automatica/automatica30.html#ChenSSS94,https://doi.org/10.1016/0005-1098(94)90101-5 +Mesut E. Sezer,On decentralized stabilization of interconnected systems.,1980,16,Automatica,2,db/journals/automatica/automatica16.html#SezerH80,https://doi.org/10.1016/0005-1098(80)90056-4 +Chien-Shu Hsieh,On the global optimality of unbiased minimum-variance state estimation for systems with unknown inputs.,2010,46,Automatica,4,db/journals/automatica/automatica46.html#Hsieh10,https://doi.org/10.1016/j.automatica.2010.01.029 +Stephen Kahne,George S. Axelby.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#Kahne93,https://doi.org/10.1016/0005-1098(93)90002-B +Navid Noroozi,Gronwall inequality for hybrid systems.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#NorooziNT14,https://doi.org/10.1016/j.automatica.2014.08.004 +Yun-Hui Liu,Adaptive and Nonadaptive Hybrid Controllers for Rheonomically Constrained Manipulators.,1998,34,Automatica,4,db/journals/automatica/automatica34.html#LiuA98,https://doi.org/10.1016/S0005-1098(97)00220-3 +Abdelmoula El Bouhtouri,Stability radii of discrete-time stochastic systems with respect to blockdiagonal perturbations.,2000,36,Automatica,7,db/journals/automatica/automatica36.html#BouhtouriHP00,https://doi.org/10.1016/S0005-1098(00)00013-3 +Zhengtao Ding,Adaptive consensus output regulation of a class of nonlinear systems with unknown high-frequency gain.,2015,51,Automatica,,db/journals/automatica/automatica51.html#Ding15,https://doi.org/10.1016/j.automatica.2014.10.079 +Kuo-Kai Shyu,Estimation of asymptotic stability region and sliding domain of uncertain variable structure systems with bounded controllers.,1996,32,Automatica,5,db/journals/automatica/automatica32.html#ShyuC96,https://doi.org/10.1016/0005-1098(96)00004-0 +Matthias Albrecht Müller,Transient average constraints in economic model predictive control.,2014,50,Automatica,11,db/journals/automatica/automatica50.html#MullerAA14,https://doi.org/10.1016/j.automatica.2014.10.024 +Huazhen Fang,Simultaneous input and state estimation for nonlinear systems with applications to flow field estimation.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#FangCC13,https://doi.org/10.1016/j.automatica.2013.05.010 +Christoph Böhm 0002,Stability of periodically time-varying systems: Periodic Lyapunov functions.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#BohmLA12,https://doi.org/10.1016/j.automatica.2012.06.070 +P. M. Mäkilä,A bicriteria stationary LQ control problem.,1991,27,Automatica,6,db/journals/automatica/automatica27.html#Makila91a,https://doi.org/10.1016/0005-1098(91)90146-S +Edoardo Mosca,Adaptive predictive control with mean-square input constraint.,1992,28,Automatica,3,db/journals/automatica/automatica28.html#MoscaLMN92,https://doi.org/10.1016/0005-1098(92)90183-G +Zdzislaw Kowalczuk,Competitive identification for self-tuning control: Robust estimation design and simulation experiments.,1992,28,Automatica,1,db/journals/automatica/automatica28.html#Kowalczuk92,https://doi.org/10.1016/0005-1098(92)90021-7 +Jacob Engwerda,The open-loop linear quadratic differential game for index one descriptor systems.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#Engwerda09,https://doi.org/10.1016/j.automatica.2008.09.012 +Murat Zeren,On the strong stabilization and stable Hinfinity-controller design problems for MIMO systems.,2000,36,Automatica,11,db/journals/automatica/automatica36.html#ZerenO00,https://doi.org/10.1016/S0005-1098(00)00073-X +Xiang Li 0009,Dynamic trapping and manipulation of biological cells with optical tweezers.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#LiCHS13,https://doi.org/10.1016/j.automatica.2013.02.067 +Alexander Lanzon,Weight optimisation in I loop-shaping.,2005,41,Automatica,7,db/journals/automatica/automatica41.html#Lanzon05,https://doi.org/10.1016/j.automatica.2005.01.010 +Xu Jin,Fault-tolerant iterative learning control for mobile robots non-repetitive trajectory tracking with output constraints.,2018,94,Automatica,,db/journals/automatica/automatica94.html#Jin18,https://doi.org/10.1016/j.automatica.2018.04.011 +Chien-Shu Hsieh,Performance gain margins of the two-stage LQ reliable control.,2002,38,Automatica,11,db/journals/automatica/automatica38.html#Hsieh02,https://doi.org/10.1016/S0005-1098(02)00114-0 +P. M. Mäkilä,LTI approximation of nonlinear systems via signal distribution theory.,2006,42,Automatica,6,db/journals/automatica/automatica42.html#Makila06a,https://doi.org/10.1016/j.automatica.2006.02.018 +Andrew E. B. Lim,Multiple-objective risk-sensitive control and its small noise limit.,2003,39,Automatica,3,db/journals/automatica/automatica39.html#LimZM03,https://doi.org/10.1016/S0005-1098(02)00270-4 +Fu-Shiung Hsieh,Robustness of deadlock avoidance algorithms for sequential processes.,2003,39,Automatica,10,db/journals/automatica/automatica39.html#Hsieh03,https://doi.org/10.1016/S0005-1098(03)00176-6 +Abdullah Omar Hamadeh,Reachability analysis of continuous-time piecewise affine systems.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#HamadehG08,https://doi.org/10.1016/j.automatica.2008.05.023 +Huibert Kwakernaak,Introduction.,1993,29,Automatica,5,db/journals/automatica/automatica29.html#Kwakernaak93b,https://doi.org/10.1016/0005-1098(93)90042-R +Shaohua Tan,Adaptive fuzzy modeling of nonlinear dynamical systems.,1996,32,Automatica,4,db/journals/automatica/automatica32.html#TanY96,https://doi.org/10.1016/0005-1098(95)00188-3 +Ioan Doré Landau,Direct controller order reduction by identification in closed loop.,2001,37,Automatica,11,db/journals/automatica/automatica37.html#LandauKC01,https://doi.org/10.1016/S0005-1098(01)00127-3 +P. Valkó,Periodic optimization of hammerstein-type systems.,1982,18,Automatica,2,db/journals/automatica/automatica18.html#ValkoA82,https://doi.org/10.1016/0005-1098(82)90112-1 +Er-Wei Bai,Author's reply.,2008,44,Automatica,5,db/journals/automatica/automatica44.html#Bai08,https://doi.org/10.1016/j.automatica.2007.09.028 +Jacques L. Willems,Feedback stabilizability for stochastic systems with state and control dependent noise.,1976,12,Automatica,3,db/journals/automatica/automatica12.html#WillemsW76,https://doi.org/10.1016/0005-1098(76)90029-7 +Allan E. Pearson,Nonlinear system identification with limited time data.,1979,15,Automatica,1,db/journals/automatica/automatica15.html#Pearson79,https://doi.org/10.1016/0005-1098(79)90088-8 +Shyam Kamal,Continuous terminal sliding-mode controller.,2016,69,Automatica,,db/journals/automatica/automatica69.html#KamalMCBF16,https://doi.org/10.1016/j.automatica.2016.02.001 +Paul A. Trodden,Distributed predictive control with minimization of mutual disturbances.,2017,77,Automatica,,db/journals/automatica/automatica77.html#TroddenM17,https://doi.org/10.1016/j.automatica.2016.11.023 +Graziano Chesi,Stability analysis of uncertain genetic sum regulatory networks.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#ChesiH08,https://doi.org/10.1016/j.automatica.2008.01.030 +Zhong-Ping Jiang,Global tracking control of underactuated ships by Lyapunov's direct method.,2002,38,Automatica,2,db/journals/automatica/automatica38.html#Jiang02,https://doi.org/10.1016/S0005-1098(01)00199-6 +David John Hill,A generalization of the small-gain theorem for nonlinear feedback systems.,1991,27,Automatica,6,db/journals/automatica/automatica27.html#Hill91,https://doi.org/10.1016/0005-1098(91)90140-W +Claude Samson,Stability analysis of adaptively controlled systems subject to bounded disturbances.,1983,19,Automatica,1,db/journals/automatica/automatica19.html#Samson83,https://doi.org/10.1016/0005-1098(83)90077-8 +Zongli Lin,Global Control of Linear Systems with Saturating Actuators.,1998,34,Automatica,7,db/journals/automatica/automatica34.html#Lin98,https://doi.org/10.1016/S0005-1098(98)00023-5 +Jean-Jacques Fuchs,Multiscale identification of real sinusoids in noise.,1994,30,Automatica,1,db/journals/automatica/automatica30.html#Fuchs94,https://doi.org/10.1016/0005-1098(94)90234-8 +Chiang-Ju Chien,A robust MRAC using variable structure design for multivariable plants.,1996,32,Automatica,6,db/journals/automatica/automatica32.html#ChienSWF96,https://doi.org/10.1016/0005-1098(96)00009-X +Yanqiong Zhang,Distributed optimal coordination for multiple heterogeneous Euler-Lagrangian systems.,2017,79,Automatica,,db/journals/automatica/automatica79.html#ZhangDH17,https://doi.org/10.1016/j.automatica.2017.01.004 +Tetsuya Iwasaki,Multivariable harmonic balance for central pattern generators.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#Iwasaki08,https://doi.org/10.1016/j.automatica.2008.05.024 +Damián Marelli,Identification of ARMA models using intermittent and quantized output observations.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#MarelliYF13,https://doi.org/10.1016/j.automatica.2012.11.020 +Gustav S. Christensen,Optimal filtering for continuous linear dynamic systems based on WLAV approximations.,1990,26,Automatica,2,db/journals/automatica/automatica26.html#ChristensenS90a,https://doi.org/10.1016/0005-1098(90)90135-5 +Steven Gillijns,Unbiased minimum-variance input and state estimation for linear discrete-time systems.,2007,43,Automatica,1,db/journals/automatica/automatica43.html#GillijnsM07,https://doi.org/10.1016/j.automatica.2006.08.002 +Charalampos P. Bechlioulis,A low-complexity global approximation-free control scheme with prescribed performance for unknown pure feedback systems.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#BechlioulisR14,https://doi.org/10.1016/j.automatica.2014.02.020 +Michael Jost 0001,Online constraint removal: Accelerating MPC with a Lyapunov function.,2015,57,Automatica,,db/journals/automatica/automatica57.html#JostPM15,https://doi.org/10.1016/j.automatica.2015.04.014 +Lirong Huang,SMC design for robust H INFINITY control of uncertain stochastic delay systems.,2010,46,Automatica,2,db/journals/automatica/automatica46.html#HuangM10,https://doi.org/10.1016/j.automatica.2009.11.013 +Milan Korda,Controller design and value function approximation for nonlinear dynamical systems.,2016,67,Automatica,,db/journals/automatica/automatica67.html#KordaHJ16,https://doi.org/10.1016/j.automatica.2016.01.022 +Dequan Li,Consensus seeking over directed networks with limited information communication.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#LiLWL13,https://doi.org/10.1016/j.automatica.2012.11.041 +Joris Sijs,State fusion with unknown correlation: Ellipsoidal intersection.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#SijsL12,https://doi.org/10.1016/j.automatica.2012.05.077 +Pingan He,Neuro-controller for reducing cyclic variation in lean combustion spark ignition engines.,2005,41,Automatica,7,db/journals/automatica/automatica41.html#HeJ05,https://doi.org/10.1016/j.automatica.2005.01.013 +Knut Graichen,A fixed-point iteration scheme for real-time model predictive control.,2012,48,Automatica,7,db/journals/automatica/automatica48.html#Graichen12,https://doi.org/10.1016/j.automatica.2012.03.023 +Mattia Bruschetta,A variational integrators approach to second order modeling and identification of linear mechanical systems.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#BruschettaPS14,https://doi.org/10.1016/j.automatica.2013.12.012 +Chee Tsai,An adaptive robustizing approach to kalman filtering.,1983,19,Automatica,3,db/journals/automatica/automatica19.html#TsaiK83,https://doi.org/10.1016/0005-1098(83)90104-8 +Romain Postoyan,On the Lyapunov-based adaptive control redesign for a class of nonlinear sampled-data systems.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#PostoyanABL08,https://doi.org/10.1016/j.automatica.2007.12.007 +Ran Huang,Decentralized adaptive controller design for large-scale power systems.,2017,79,Automatica,,db/journals/automatica/automatica79.html#HuangZL17,https://doi.org/10.1016/j.automatica.2017.01.022 +Volker Mehrmann,Using permuted graph bases in H∞H∞ control.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#MehrmannP13,https://doi.org/10.1016/j.automatica.2013.02.039 +Alberto Bemporad,Fulfilling Hard Constraints in Uncertain Linear Systems by Reference Managing.,1998,34,Automatica,4,db/journals/automatica/automatica34.html#BemporadM98,https://doi.org/10.1016/S0005-1098(97)00213-6 +Lei Guo 0001,Convergence and logarithm laws of self-tuning regulators.,1995,31,Automatica,3,db/journals/automatica/automatica31.html#Guo95,https://doi.org/10.1016/0005-1098(94)00127-5 +Gang Tao,On robust adaptive control of robot manipulators.,1992,28,Automatica,4,db/journals/automatica/automatica28.html#Tao92,https://doi.org/10.1016/0005-1098(92)90040-M +Shaolong Shu,State estimation and detectability of probabilistic discrete event systems.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#ShuLYC08,https://doi.org/10.1016/j.automatica.2008.05.025 +Dimitra Panagou,Viability control for a class of underactuated systems.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#PanagouK13,https://doi.org/10.1016/j.automatica.2012.09.002 +Shuanghe Yu,Finite-time consensus for second-order multi-agent systems with disturbances by integral sliding mode.,2015,54,Automatica,,db/journals/automatica/automatica54.html#YuL15,https://doi.org/10.1016/j.automatica.2015.02.001 +Didier Henrion,Control of linear systems subject to input constraints: a polynomial approach.,2001,37,Automatica,4,db/journals/automatica/automatica37.html#HenrionTK01,https://doi.org/10.1016/S0005-1098(00)00193-X +Jinglai Shen,Observability analysis of conewise linear systems via directional derivative and positive invariance techniques.,2010,46,Automatica,5,db/journals/automatica/automatica46.html#Shen10,https://doi.org/10.1016/j.automatica.2010.02.016 +Kiheon Park,Wiener-Hopf approach to derivation of rational doubly coprime factorizations.,1999,35,Automatica,4,db/journals/automatica/automatica35.html#ParkCLK99,https://doi.org/10.1016/S0005-1098(98)00197-6 +Somayeh Sojoudi,Robust controllability and observability degrees of polynomially uncertain systems.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#SojoudiLA09,https://doi.org/10.1016/j.automatica.2009.07.017 +Thor I. Fossen,Nonlinear passive weather optimal positioning control (WOPC) system for ships and rigs: experimental results.,2001,37,Automatica,5,db/journals/automatica/automatica37.html#FossenS01,https://doi.org/10.1016/S0005-1098(01)00006-1 +Shreyas Sundaram,Partial state observers for linear systems with unknown inputs.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#SundaramH08,https://doi.org/10.1016/j.automatica.2008.05.011 +Xavier David-Henriet,Model predictive control for discrete event systems with partial synchronization.,2016,70,Automatica,,db/journals/automatica/automatica70.html#David-HenrietHR16,https://doi.org/10.1016/j.automatica.2015.12.006 +Abdelkader Abdessameud,On consensus algorithms design for double integrator dynamics.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#AbdessameudT13,https://doi.org/10.1016/j.automatica.2012.08.044 +Yong-Jun Liu,Fuzzy multi-period portfolio selection optimization models using multiple criteria.,2012,48,Automatica,12,db/journals/automatica/automatica48.html#LiuZX12,https://doi.org/10.1016/j.automatica.2012.08.036 +Eli Gershon,Hinfinity control and filtering of discrete-time stochastic systems with multiplicative noise.,2001,37,Automatica,3,db/journals/automatica/automatica37.html#GershonSY01,https://doi.org/10.1016/S0005-1098(00)00164-3 +Stéphane Thil,Third-order cumulants based methods for continuous-time errors-in-variables model identification.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#ThilGG08,https://doi.org/10.1016/j.automatica.2007.07.010 +Lea Sirota,Fractional order control of the two-dimensional wave equation.,2015,59,Automatica,,db/journals/automatica/automatica59.html#SirotaH15,https://doi.org/10.1016/j.automatica.2015.06.016 +Alina Voda,A method for the auto-calibration of PID controllers.,1995,31,Automatica,1,db/journals/automatica/automatica31.html#VodaL95,https://doi.org/10.1016/0005-1098(94)00067-S +Zheming Wang,Speeding up finite-time consensus via minimal polynomial of a weighted graph - A numerical approach.,2018,93,Automatica,,db/journals/automatica/automatica93.html#WangO18,https://doi.org/10.1016/j.automatica.2018.03.067 +K. J. Hunt,Polynomial LQ optimization for the standard control structure: Scalar solution.,1993,29,Automatica,2,db/journals/automatica/automatica29.html#HuntS93,https://doi.org/10.1016/0005-1098(93)90147-L +Mohamed F. Younis,Formal Verification of Compiler Transformations for Speculative Real-Time Execution.,1998,34,Automatica,8,db/journals/automatica/automatica34.html#YounisTMS98,https://doi.org/10.1016/S0005-1098(98)00034-X +F. Xue,Towards understanding the capability of adaptation for time-varying systems.,2001,37,Automatica,10,db/journals/automatica/automatica37.html#XueGH01,https://doi.org/10.1016/S0005-1098(01)00098-X +Wuquan Li,Inverse optimal stabilization for stochastic nonlinear systems whose linearizations are not stabilizable.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#LiX09,https://doi.org/10.1016/j.automatica.2008.08.006 +Claudio Altafini,Stability analysis of diagonally equipotent matrices.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#Altafini13,https://doi.org/10.1016/j.automatica.2013.05.016 +Xiaotian Chen,The analytic formulas of the ripple-free tracking problem.,1994,30,Automatica,5,db/journals/automatica/automatica30.html#ChenZR94,https://doi.org/10.1016/0005-1098(94)90181-3 +Mazen Alamir,Solutions of nonlinear optimal and robust control problems via a mixed collocation/DAE's based algorithm.,2001,37,Automatica,7,db/journals/automatica/automatica37.html#Alamir01,https://doi.org/10.1016/S0005-1098(01)00062-0 +Changchun Hua,Robust controller design for uncertain multiple-delay systems with unknown actuator parameters.,2012,48,Automatica,1,db/journals/automatica/automatica48.html#HuaDG12,https://doi.org/10.1016/j.automatica.2011.09.047 +Magdi S. Mahmoud,Performance analysis of two-level structures on finite-precision machines.,1986,22,Automatica,3,db/journals/automatica/automatica22.html#MahmoudA86,https://doi.org/10.1016/0005-1098(86)90036-1 +A. Al-Shaikh,Application of multi-level control of calenders in the tire industry.,1978,14,Automatica,1,db/journals/automatica/automatica14.html#Al-ShaikhL78,https://doi.org/10.1016/0005-1098(78)90072-9 +Assaf Gurt,Internal stability of dynamic quantised control for stochastic linear plants.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#GurtN09,https://doi.org/10.1016/j.automatica.2009.02.016 +Michael Margaliot,The problem of absolute stability: a dynamic programming approach.,2004,40,Automatica,7,db/journals/automatica/automatica40.html#MargaliotG04,https://doi.org/10.1016/j.automatica.2004.02.015 +Ryan C. Loxton,Optimal switching instants for a switched-capacitor DC/DC power converter.,2009,45,Automatica,4,db/journals/automatica/automatica45.html#LoxtonTRL09,https://doi.org/10.1016/j.automatica.2008.10.031 +Martin Guay,Distributed extremum-seeking control over networks of dynamically coupled unstable dynamic agents.,2018,93,Automatica,,db/journals/automatica/automatica93.html#GuayVDM18,https://doi.org/10.1016/j.automatica.2018.03.081 +Young Il Lee,Constrained robust model predictive control based on periodic invariance.,2006,42,Automatica,12,db/journals/automatica/automatica42.html#LeeK06,https://doi.org/10.1016/j.automatica.2006.07.004 +Haichao Gui,Small-time local controllability of spacecraft attitude using control moment gyros.,2015,53,Automatica,,db/journals/automatica/automatica53.html#GuiJX15,https://doi.org/10.1016/j.automatica.2014.12.047 +Bengt Schmidtbauer,Microprocessor-based control systems : N. K. Sinha.,1989,25,Automatica,2,db/journals/automatica/automatica25.html#Schmidtbauer89,https://doi.org/10.1016/0005-1098(89)90091-5 +T. Rajagopalan,Pole assignment with constraints using output feedback.,1988,24,Automatica,3,db/journals/automatica/automatica24.html#RajagopalanA88,https://doi.org/10.1016/0005-1098(88)90085-4 +Thierry-Marie Guerra,Observer design for Takagi-Sugeno descriptor models: An LMI approach.,2015,52,Automatica,,db/journals/automatica/automatica52.html#GuerraEL15,https://doi.org/10.1016/j.automatica.2014.11.008 +Jae Young Lee,On integral generalized policy iteration for continuous-time linear quadratic regulations.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#LeePC14,https://doi.org/10.1016/j.automatica.2013.12.009 +Alan J. Laub,Calculation of transmission zeros using QZ techniques.,1978,14,Automatica,6,db/journals/automatica/automatica14.html#LaubM78,https://doi.org/10.1016/0005-1098(78)90045-6 +S. Barabaschi,Heat exchange simulator.,1964,2,Automatica,1,db/journals/automatica/automatica2.html#BarabaschiCGM64,https://doi.org/10.1016/0005-1098(64)90003-2 +Maiying Zhong,An LMI approach to design robust fault detection filter for uncertain LTI systems.,2003,39,Automatica,3,db/journals/automatica/automatica39.html#ZhongDLW03,https://doi.org/10.1016/S0005-1098(02)00269-8 +Girish N. Nair,Exponential stabilisability of finite-dimensional linear systems with limited data rates.,2003,39,Automatica,4,db/journals/automatica/automatica39.html#NairE03,https://doi.org/10.1016/S0005-1098(02)00285-6 +Herbert J. A. F. Tulleken,Generalized binary noise test-signal concept for improved identification-experiment design.,1990,26,Automatica,1,db/journals/automatica/automatica26.html#Tulleken90,https://doi.org/10.1016/0005-1098(90)90156-C +Keqin Gu,Linear control guaranteeing stability of uncertain systems via orthogonal decomposition.,1991,27,Automatica,5,db/journals/automatica/automatica27.html#GuC91,https://doi.org/10.1016/0005-1098(91)90044-3 +Jemin George,A robust estimator for stochastic systems under unknown persistent excitation.,2016,63,Automatica,,db/journals/automatica/automatica63.html#George16,https://doi.org/10.1016/j.automatica.2015.10.006 +Lei Zou 0003,Set-membership filtering for time-varying systems with mixed time-delays under Round-Robin and Weighted Try-Once-Discard protocols.,2016,74,Automatica,,db/journals/automatica/automatica74.html#ZouWG16a,https://doi.org/10.1016/j.automatica.2016.07.025 +I. Borno,Parallel computation of the solutions of coupled algebraic Lyapunov equations.,1995,31,Automatica,9,db/journals/automatica/automatica31.html#Borno95,https://doi.org/10.1016/0005-1098(95)00037-W +Maria Pia Fanti,A new class of consensus protocols for agent networks with discrete time dynamics.,2015,54,Automatica,,db/journals/automatica/automatica54.html#FantiMMU15,https://doi.org/10.1016/j.automatica.2015.01.025 +Dina Shona Laila,Nonlinear output feedback and periodic disturbance attenuation for setpoint tracking of a combustion engine test bench.,2016,64,Automatica,,db/journals/automatica/automatica64.html#LailaG16,https://doi.org/10.1016/j.automatica.2015.10.054 +Koen Tiels,Initial estimates for Wiener-Hammerstein models using phase-coupled multisines.,2015,60,Automatica,,db/journals/automatica/automatica60.html#TielsSS15,https://doi.org/10.1016/j.automatica.2015.07.020 +Behnam Allahverdi Charandabi,A novel approach to unknown input filter design for discrete-time linear systems.,2014,50,Automatica,11,db/journals/automatica/automatica50.html#CharandabiM14,https://doi.org/10.1016/j.automatica.2014.07.015 +Bernardo A. León de la Barra,On the frequency response of scalar discrete-time systems.,1999,35,Automatica,11,db/journals/automatica/automatica35.html#BarraP99,https://doi.org/10.1016/S0005-1098(99)00062-X +Ya-Gang Wang,Optimal tuning for PI controller.,2000,36,Automatica,1,db/journals/automatica/automatica36.html#WangS00,https://doi.org/10.1016/S0005-1098(99)00130-2 +Masaki Ogura,State-feedback control of Markov jump linear systems with hidden-Markov mode observation.,2018,89,Automatica,,db/journals/automatica/automatica89.html#OguraCHP18,https://doi.org/10.1016/j.automatica.2017.11.022 +William Paul Heath,Lyapunov functions for the multivariable Popov criterion with indefinite multipliers.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#HeathL09,https://doi.org/10.1016/j.automatica.2009.09.010 +Jana Tumova,Multi-agent planning under local LTL specifications and event-based synchronization.,2016,70,Automatica,,db/journals/automatica/automatica70.html#TumovaD16,https://doi.org/10.1016/j.automatica.2016.04.006 +Stephen Kahne,IFAC publications - Four years later.,1980,16,Automatica,3,db/journals/automatica/automatica16.html#Kahne80,https://doi.org/10.1016/0005-1098(80)90033-3 +Shu Wang,Robust synthesis for linear parameter varying systems using integral quadratic constraints.,2016,68,Automatica,,db/journals/automatica/automatica68.html#WangPS16,https://doi.org/10.1016/j.automatica.2016.01.053 +R. B. Martin,Optimal control drug scheduling of cancer chemotherapy.,1992,28,Automatica,6,db/journals/automatica/automatica28.html#Martin92,https://doi.org/10.1016/0005-1098(92)90054-J +Steffen Jørgensen,An overlapping generations stochastic differential game.,2005,41,Automatica,1,db/journals/automatica/automatica41.html#JorgensenY05,https://doi.org/10.1016/j.automatica.2004.06.022 +Claes G. Källström,Experiences of system identification applied to ship steering.,1981,17,Automatica,1,db/journals/automatica/automatica17.html#KallstromA81,https://doi.org/10.1016/0005-1098(81)90094-7 +Feng Xiao 0002,Finite-time formation control for multi-agent systems.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#XiaoWCG09,https://doi.org/10.1016/j.automatica.2009.07.012 +Gernot Schullerus,Input signal design for identification of max-plus-linear systems.,2006,42,Automatica,6,db/journals/automatica/automatica42.html#SchullerusKSB06,https://doi.org/10.1016/j.automatica.2006.01.025 +James Fisher,Linear quadratic regulation of systems with stochastic parameter uncertainties.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#FisherB09a,https://doi.org/10.1016/j.automatica.2009.10.001 +Bo Wahlberg,Non-parametric methods for L2-gain estimation using iterative experiments.,2010,46,Automatica,8,db/journals/automatica/automatica46.html#WahlbergSH10,https://doi.org/10.1016/j.automatica.2010.05.012 +Gianfranco Fenu,A note on nonparametric kernel smoothing for model-free fault symptom generation.,1999,35,Automatica,6,db/journals/automatica/automatica35.html#FenuP99,https://doi.org/10.1016/S0005-1098(99)00030-8 +A. Rachid,A remark on the discretization of singular systems.,1995,31,Automatica,2,db/journals/automatica/automatica31.html#Rachid95,https://doi.org/10.1016/0005-1098(94)00142-6 +Leonardo C. Kammer,Semi-intrusive multivariable model invalidation.,2003,39,Automatica,8,db/journals/automatica/automatica39.html#KammerGD03,https://doi.org/10.1016/S0005-1098(03)00118-3 +Aldo Balestrino,Nonlinear adaptive model-following control.,1984,20,Automatica,5,db/journals/automatica/automatica20.html#BalestrinoMZ84,https://doi.org/10.1016/0005-1098(84)90007-4 +Ming Liu 0014,Sensor fault estimation and tolerant control for Itô stochastic systems with a descriptor sliding mode approach.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#LiuS13,https://doi.org/10.1016/j.automatica.2013.01.030 +Sanqing Hu,Quadratic stabilizability of a new class of linear systems with structural independent time-varying uncertainty.,2001,37,Automatica,1,db/journals/automatica/automatica37.html#HuW01,https://doi.org/10.1016/S0005-1098(00)00122-9 +Xing-Long Liu,Optimal soft landing control for moon lander.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#LiuDT08,https://doi.org/10.1016/j.automatica.2007.08.021 +Chengpu Yu,Blind identification of non-minimum phase ARMA systems.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#YuZX13,https://doi.org/10.1016/j.automatica.2013.02.059 +Simon G. Fabri,Dual adaptive control of nonlinear stochastic systems using neural networks.,1998,34,Automatica,2,db/journals/automatica/automatica34.html#FabriK98,https://doi.org/10.1016/S0005-1098(97)00181-7 +Annika Eichler,Robust control of decomposable LPV systems.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#EichlerHW14,https://doi.org/10.1016/j.automatica.2014.10.046 +Giuseppe De Nicolao,Regularization networks for inverse problems: A state-space approach.,2003,39,Automatica,4,db/journals/automatica/automatica39.html#NicolaoF03,https://doi.org/10.1016/S0005-1098(02)00280-7 +Kemao Peng,Design and implementation of an autonomous flight control law for a UAV helicopter.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#PengCCDLL09,https://doi.org/10.1016/j.automatica.2009.06.016 +Jeff Kramer,A software architecture for distributed computer control systems.,1984,20,Automatica,1,db/journals/automatica/automatica20.html#KramerMS84,https://doi.org/10.1016/0005-1098(84)90068-2 +Brian Armstrong,PID control in the presence of static friction: A comparison of algebraic and describing function analysis.,1996,32,Automatica,5,db/journals/automatica/automatica32.html#ArmstrongA96,https://doi.org/10.1016/0005-1098(95)00199-9 +Morten Hovd,Sequential design of decentralized controllers.,1994,30,Automatica,10,db/journals/automatica/automatica30.html#HovdS94a,https://doi.org/10.1016/0005-1098(94)90099-X +Bong Seok Park,Neural network-based output feedback control for reference tracking of underactuated surface vessels.,2017,77,Automatica,,db/journals/automatica/automatica77.html#ParkKK17,https://doi.org/10.1016/j.automatica.2016.11.024 +Florian Dörfler,Synchronization in complex networks of phase oscillators: A survey.,2014,50,Automatica,6,db/journals/automatica/automatica50.html#DorflerB14,https://doi.org/10.1016/j.automatica.2014.04.012 +Stuart Bennett,The emergence of a discipline: Automatic control 1940-1960.,1976,12,Automatica,2,db/journals/automatica/automatica12.html#Bennett76,https://doi.org/10.1016/0005-1098(76)90075-3 +Alessandro Giua,Decentralized observability of discrete event systems with synchronizations.,2017,85,Automatica,,db/journals/automatica/automatica85.html#GiuaMS17,https://doi.org/10.1016/j.automatica.2017.08.009 +Huibert Kwakernaak,Some statistics about Automatica authors.,1995,31,Automatica,11,db/journals/automatica/automatica31.html#Kwakernaak95a,https://doi.org/10.1016/0005-1098(95)93589-W +Fotis N. Koumboulis,Block Decoupling of Generalized State Space Systems.,1997,33,Automatica,10,db/journals/automatica/automatica33.html#Koumboulis97,https://doi.org/10.1016/S0005-1098(97)00078-2 +Xudong Ye,Switching adaptive output-feedback control of nonlinearly parametrized systems.,2005,41,Automatica,6,db/journals/automatica/automatica41.html#Ye05,https://doi.org/10.1016/j.automatica.2004.10.021 +Minh-Duc Hua,Stability analysis of velocity-aided attitude observers for accelerated vehicles.,2016,63,Automatica,,db/journals/automatica/automatica63.html#HuaMH16,https://doi.org/10.1016/j.automatica.2015.10.014 +John Howell,Model-based fault detection in information poor plants.,1994,30,Automatica,6,db/journals/automatica/automatica30.html#Howell94,https://doi.org/10.1016/0005-1098(94)90188-0 +M. Hodzic,Estimation and control of large sparse systems.,1985,21,Automatica,3,db/journals/automatica/automatica21.html#HodzicS85,https://doi.org/10.1016/0005-1098(85)90061-5 +Alessandro Casavola,"A correction to ""Min-max predictive control strategies for input-saturated polytopic uncertain systems"" [Automatica 36 (2000) 125-133].",2007,43,Automatica,2,db/journals/automatica/automatica43.html#CasavolaM07,https://doi.org/10.1016/j.automatica.2006.10.001 +Zong-Yao Sun,A new approach to fast global finite-time stabilization of high-order nonlinear system.,2017,81,Automatica,,db/journals/automatica/automatica81.html#SunYL17,https://doi.org/10.1016/j.automatica.2017.04.024 +Oswaldo Luiz V. Costa,Continuous-time state-feedback H2-control of Markovian jump linear systems via convex analysis.,1999,35,Automatica,2,db/journals/automatica/automatica35.html#CostaVG99,https://doi.org/10.1016/S0005-1098(98)00145-9 +Vahid Badri,On tuning fractional order [proportional-derivative] controllers for a class of fractional order systems.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#BadriT13,https://doi.org/10.1016/j.automatica.2013.04.026 +Mark Haring,Extremum-seeking control for nonlinear systems with periodic steady-state outputs.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#HaringWN13,https://doi.org/10.1016/j.automatica.2013.02.061 +Lars Imsland,More efficient predictive control.,2005,41,Automatica,8,db/journals/automatica/automatica41.html#ImslandBF05,https://doi.org/10.1016/j.automatica.2005.03.010 +Mauro Franceschelli,Decentralized estimation of Laplacian eigenvalues in multi-agent systems.,2013,49,Automatica,4,db/journals/automatica/automatica49.html#FranceschelliGGS13,https://doi.org/10.1016/j.automatica.2013.01.029 +Jorge Davila,Dynamic sliding mode control design using attracting ellipsoid method.,2011,47,Automatica,7,db/journals/automatica/automatica47.html#DavilaP11,https://doi.org/10.1016/j.automatica.2011.02.023 +Douglas P. Looze,Hierarchical control of weakly-coupled systems.,1982,18,Automatica,4,db/journals/automatica/automatica18.html#LoozeS82,https://doi.org/10.1016/0005-1098(82)90075-9 +Vladimir L. Kharitonov,Predictor based stabilization of neutral type systems with input delay.,2015,52,Automatica,,db/journals/automatica/automatica52.html#Kharitonov15,https://doi.org/10.1016/j.automatica.2014.11.005 +Ola Härkegård,Resolving actuator redundancy - optimal control vs. control allocation.,2005,41,Automatica,1,db/journals/automatica/automatica41.html#HarkegardG05,https://doi.org/10.1016/j.automatica.2004.09.007 +Xiaotai Wu,Input-to-state stability of impulsive stochastic delayed systems under linear assumptions.,2016,66,Automatica,,db/journals/automatica/automatica66.html#WuTZ16,https://doi.org/10.1016/j.automatica.2016.01.002 +Wilson J. Rugh,Research on gain scheduling.,2000,36,Automatica,10,db/journals/automatica/automatica36.html#RughS00,https://doi.org/10.1016/S0005-1098(00)00058-3 +Paolo Bolzern,Stochastic stability of Positive Markov Jump Linear Systems.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#BolzernCN14,https://doi.org/10.1016/j.automatica.2014.02.016 +Hisaya Fujioka,Stability analysis of systems with aperiodic sample-and-hold devices.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#Fujioka09,https://doi.org/10.1016/j.automatica.2008.10.017 +Li Xu,The design of practically stable nD feedback systems.,1994,30,Automatica,9,db/journals/automatica/automatica30.html#XuSA94,https://doi.org/10.1016/0005-1098(94)90003-5 +Torsten Söderström,Identification of dynamic errors-in-variables models: Approaches based on two-dimensional ARMA modeling of the data.,2003,39,Automatica,5,db/journals/automatica/automatica39.html#SoderstromMS03,https://doi.org/10.1016/S0005-1098(03)00033-5 +Marco M. Nicotra,Nonlinear control of a tethered UAV: The taut cable case.,2017,78,Automatica,,db/journals/automatica/automatica78.html#NicotraNG17,https://doi.org/10.1016/j.automatica.2016.12.018 +Marcus Hedegärd,Non-parametric convex identification of extended generalized Prandtl-Ishlinskii models.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#HedegardW14,https://doi.org/10.1016/j.automatica.2013.12.010 +William L. Brogan,Theory and application of optimal control for distributed parameter systems - I : Theory.,1967,4,Automatica,3,db/journals/automatica/automatica4.html#Brogan67,https://doi.org/10.1016/0005-1098(67)90002-7 +Viorel Barbu,Mild solutions to the dynamic programming equation for stochastic optimal control problems.,2018,93,Automatica,,db/journals/automatica/automatica93.html#BarbuBP18,https://doi.org/10.1016/j.automatica.2018.02.008 +Hajime Akashi,Insensitive observers for discrete time linear systems.,1979,15,Automatica,6,db/journals/automatica/automatica15.html#AkashiI79,https://doi.org/10.1016/0005-1098(79)90032-3 +Jian-Xin Xu 0001,VSS theory-based parameter identification scheme for MIMO systems.,1996,32,Automatica,2,db/journals/automatica/automatica32.html#XuH96,https://doi.org/10.1016/0005-1098(96)85560-9 +Xing-Gang Yan,Reduced-order control for a class of nonlinear similar interconnected systems with mismatched uncertainty.,2003,39,Automatica,1,db/journals/automatica/automatica39.html#YanX03,https://doi.org/10.1016/S0005-1098(02)00194-2 +Carlos Canudas de Wit,Control of partially-known dynamical systems : A. A. Bahnasawi and M. S. Mahmoud.,1991,27,Automatica,5,db/journals/automatica/automatica27.html#Wit91,https://doi.org/10.1016/0005-1098(91)90049-8 +Xiangyu Wang 0003,Distributed active anti-disturbance output consensus algorithms for higher-order multi-agent systems with mismatched disturbances.,2016,74,Automatica,,db/journals/automatica/automatica74.html#WangLL16,https://doi.org/10.1016/j.automatica.2016.07.010 +BaoCang Ding,Improving off-line approach to robust MPC based-on nominal performance cost.,2007,43,Automatica,1,db/journals/automatica/automatica43.html#DingXCO07,https://doi.org/10.1016/j.automatica.2006.07.022 +H. S. Tharp,Parameterization of frequency weighting for a two-stage linear quadratic regulator based design.,1988,24,Automatica,3,db/journals/automatica/automatica24.html#TharpMP88,https://doi.org/10.1016/0005-1098(88)90083-0 +Nata K. Dinata,Control relevant identification for robust optimal control.,2005,41,Automatica,8,db/journals/automatica/automatica41.html#DinataC05,https://doi.org/10.1016/j.automatica.2005.03.020 +Guang-Ren Duan,A Note on Hurwitz Stability of Matrices.,1998,34,Automatica,4,db/journals/automatica/automatica34.html#DuanP98,https://doi.org/10.1016/S0005-1098(97)00217-3 +Oswaldo Luiz V. Costa,Monte Carlo TD(lambda)-methods for the optimal control of discrete-time Markovian jump linear systems.,2002,38,Automatica,2,db/journals/automatica/automatica38.html#CostaA02,https://doi.org/10.1016/S0005-1098(01)00215-1 +Jinglu Hu,A homotopy approach to improving PEM identification of ARMAX models.,2001,37,Automatica,9,db/journals/automatica/automatica37.html#HuHK01,https://doi.org/10.1016/S0005-1098(01)00081-4 +Munther A. Dahleh,Controller design for plants with structured uncertainty.,1993,29,Automatica,1,db/journals/automatica/automatica29.html#DahlehK93,https://doi.org/10.1016/0005-1098(93)90173-Q +Gianni Ferretti,A novel approach to speed control of hydro power stations.,1990,26,Automatica,3,db/journals/automatica/automatica26.html#FerrettiMR90,https://doi.org/10.1016/0005-1098(90)90026-E +Igor Boiko,On frequency-domain criterion of finite-time convergence of second-order sliding mode control algorithms.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#Boiko11,https://doi.org/10.1016/j.automatica.2011.05.016 +Ruth F. Curtain,Stochastic models for uncertain flexible systems.,1987,23,Automatica,5,db/journals/automatica/automatica23.html#CurtainK87,https://doi.org/10.1016/0005-1098(87)90063-X +R. M. Stephan,Adaptive and robust cascade schemes for thyristor driven DC-motor speed control.,1991,27,Automatica,3,db/journals/automatica/automatica27.html#StephanHDU91,https://doi.org/10.1016/0005-1098(91)90103-9 +Shouwei Zhao,Switching control of closed quantum systems via the Lyapunov method.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#ZhaoLX12,https://doi.org/10.1016/j.automatica.2012.05.069 +Ernesto Kofman,Control design with guaranteed ultimate bound for perturbed systems.,2008,44,Automatica,7,db/journals/automatica/automatica44.html#KofmanSH08,https://doi.org/10.1016/j.automatica.2007.10.022 +Antonio Loría,Force/position regulation for robot manipulators with unmeasurable velocities and uncertain gravity.,1996,32,Automatica,6,db/journals/automatica/automatica32.html#LoriaO96,https://doi.org/10.1016/0005-1098(96)00005-2 +Agnes Rensfelt,Structure testing of wave propagation models used in identification of viscoelastic materials.,2010,46,Automatica,4,db/journals/automatica/automatica46.html#RensfeltS10,https://doi.org/10.1016/j.automatica.2010.01.027 +Vito Cerone,Set-membership estimation of fiber laser physical parameters from input-output power measurements.,2015,61,Automatica,,db/journals/automatica/automatica61.html#CeroneRR15,https://doi.org/10.1016/j.automatica.2015.08.019 +J. I. Soliman,Sampled-data controls and the bilinear transformation.,1965,2,Automatica,4,db/journals/automatica/automatica2.html#SolimanA65,https://doi.org/10.1016/0005-1098(65)90013-0 +Wu-Hua Chen,Input-to-state stability for networked control systems via an improved impulsive system approach.,2011,47,Automatica,4,db/journals/automatica/automatica47.html#ChenZ11,https://doi.org/10.1016/j.automatica.2011.01.050 +Kristian Hengster-Movric,Distributed static output-feedback control for state synchronization in networks of identical LTI systems.,2015,53,Automatica,,db/journals/automatica/automatica53.html#Hengster-Movric15,https://doi.org/10.1016/j.automatica.2014.12.015 +Farshad Harirchi,Guaranteed model-based fault detection in cyber-physical systems: A model invalidation approach.,2018,93,Automatica,,db/journals/automatica/automatica93.html#HarirchiO18,https://doi.org/10.1016/j.automatica.2018.03.040 +John T. Spanos,A new algorithm for L2 optimal model reduction.,1992,28,Automatica,5,db/journals/automatica/automatica28.html#SpanosMM92,https://doi.org/10.1016/0005-1098(92)90143-4 +Van-Tsai Liu,Robust stabilization for composite observer-based control of discrete systems.,1994,30,Automatica,5,db/journals/automatica/automatica30.html#LiuL94,https://doi.org/10.1016/0005-1098(94)90176-7 +Juan C. Agüero,Dual time-frequency domain system identification.,2012,48,Automatica,12,db/journals/automatica/automatica48.html#AgueroTYDG12,https://doi.org/10.1016/j.automatica.2012.08.033 +Piet M. T. Broersen,Autoregressive spectral analysis when observations are missing.,2004,40,Automatica,9,db/journals/automatica/automatica40.html#BroersenWB04,https://doi.org/10.1016/j.automatica.2004.04.011 +Shu-Jun Liu,Global output-feedback stabilization for a class of stochastic non-minimum-phase nonlinear systems.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#LiuJZ08,https://doi.org/10.1016/j.automatica.2007.11.011 +Murat Arcak,Nonlinear observers: a circle criterion design and robustness analysis.,2001,37,Automatica,12,db/journals/automatica/automatica37.html#ArcakK01,https://doi.org/10.1016/S0005-1098(01)00160-1 +G. Marchetti,Identification and control of open-loop unstable processes by relay methods.,2001,37,Automatica,12,db/journals/automatica/automatica37.html#MarchettiSL01,https://doi.org/10.1016/S0005-1098(01)00181-9 +Wenjing Ma,A risk adjusted approach to robust simultaneous fault detection and isolation.,2007,43,Automatica,3,db/journals/automatica/automatica43.html#MaSL07,https://doi.org/10.1016/j.automatica.2006.09.012 +Anthony M. Bloch,Stabilization of rigid body dynamics by internal and external torques.,1992,28,Automatica,4,db/journals/automatica/automatica28.html#BlochKMA92,https://doi.org/10.1016/0005-1098(92)90034-D +Chenguang Yang,Output feedback adaptive control of a class of nonlinear discrete-time systems with unknown control directions.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#YangGL09,https://doi.org/10.1016/j.automatica.2008.07.009 +Oumar Gaye,H∞H∞ stabilization of the current profile in tokamak plasmas via an LMI approach.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#GayeAOMBN13,https://doi.org/10.1016/j.automatica.2013.05.011 +M. A. Erickson,An algorithmic test for checking stability of feedback spectral systems.,1995,31,Automatica,1,db/journals/automatica/automatica31.html#EricksonL95,https://doi.org/10.1016/0005-1098(94)00073-R +Paolo Bolzern,Finite escapes and convergence properties of guaranteed-cost robust filters.,1997,33,Automatica,1,db/journals/automatica/automatica33.html#BolzernCN97,https://doi.org/10.1016/S0005-1098(96)00138-0 +Sabato Manfredi,Necessary and sufficient conditions for consensus in nonlinear monotone networks with unilateral interactions.,2017,77,Automatica,,db/journals/automatica/automatica77.html#ManfrediA17,https://doi.org/10.1016/j.automatica.2016.11.037 +Bart De Schutter,Model predictive control for max-plus-linear discrete event systems.,2001,37,Automatica,7,db/journals/automatica/automatica37.html#SchutterB01,https://doi.org/10.1016/S0005-1098(01)00054-1 +Janos Gertler,Performance index sensitivity of the constrained minimum variance input-output estimator.,1981,17,Automatica,2,db/journals/automatica/automatica17.html#GertlerS81,https://doi.org/10.1016/0005-1098(81)90060-1 +Jacob Engwerda,On the choice of weighting matrices in the minimum variance controller.,1989,25,Automatica,2,db/journals/automatica/automatica25.html#EngwerdaO89,https://doi.org/10.1016/0005-1098(89)90082-4 +George S. Axelby,Editorial. The 150th issue.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#Axelby93d,https://doi.org/10.1016/0005-1098(93)90001-A +Yuecheng Yang,Opinion consensus of modified Hegselmann-Krause models.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#YangDH14,https://doi.org/10.1016/j.automatica.2013.11.031 +Ian Postlethwaite,Robustness with simultaneous pole and zero movement across the jχ9*-axis.,1985,21,Automatica,4,db/journals/automatica/automatica21.html#PostlethwaiteF85,https://doi.org/10.1016/0005-1098(85)90079-2 +Ge Guo,A distributed event-triggered transmission strategy for sampled-data consensus of multi-agent systems.,2014,50,Automatica,5,db/journals/automatica/automatica50.html#GuoDH14,https://doi.org/10.1016/j.automatica.2014.03.017 +Edoardo Mosca,Inference of candidate loop performance and data filtering for switching supervisory control.,2001,37,Automatica,4,db/journals/automatica/automatica37.html#MoscaA01,https://doi.org/10.1016/S0005-1098(00)00183-7 +Johan Schoukens,Modified AIC rule for model selection in combination with prior estimated noise models.,2002,38,Automatica,5,db/journals/automatica/automatica38.html#SchoukensRP02,https://doi.org/10.1016/S0005-1098(01)00270-9 +L. S. Kershenbaum,Implementation of on-line control in chemical process plants.,1981,17,Automatica,6,db/journals/automatica/automatica17.html#KershenbaumF81,https://doi.org/10.1016/0005-1098(81)90065-0 +Shengxiang Jiang,A convex optimization approach to signal reconstruction over switching networks.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#JiangV09,https://doi.org/10.1016/j.automatica.2009.09.008 +Constantino M. Lagoa,Robust optimal control of regular languages.,2005,41,Automatica,8,db/journals/automatica/automatica41.html#LagoaFR05,https://doi.org/10.1016/j.automatica.2005.03.016 +Hongchuan Wei,Information value in nonparametric Dirichlet-process Gaussian-process (DPGP) mixture models.,2016,74,Automatica,,db/journals/automatica/automatica74.html#WeiLZFLKOH16,https://doi.org/10.1016/j.automatica.2016.07.018 +Jingying Ma,Equilibrium topology of multi-agent systems with two leaders: A zero-sum game perspective.,2016,73,Automatica,,db/journals/automatica/automatica73.html#MaZWW16,https://doi.org/10.1016/j.automatica.2016.07.005 +Jihene Ben Rejeb,Control design with guaranteed cost for synchronization in networks of linear singularly perturbed systems.,2018,91,Automatica,,db/journals/automatica/automatica91.html#RejebMD18,https://doi.org/10.1016/j.automatica.2018.01.019 +G. Sridharan,A note on the effect of asynchronous sampling on estimation accuracy.,1985,21,Automatica,4,db/journals/automatica/automatica21.html#SridharanSR85,https://doi.org/10.1016/0005-1098(85)90086-X +A. L. Maitelli,A two-stage dual suboptimal controller for stochastic systems using approximate moments.,1994,30,Automatica,12,db/journals/automatica/automatica30.html#MaitelliY94,https://doi.org/10.1016/0005-1098(94)90055-8 +Cesar O. Aguilar,Almost equitable partitions and new necessary conditions for network controllability.,2017,80,Automatica,,db/journals/automatica/automatica80.html#AguilarG17,https://doi.org/10.1016/j.automatica.2017.01.018 +Dimas Abreu Dutra,Joint maximum a posteriori state path and parameter estimation in stochastic differential equations.,2017,81,Automatica,,db/journals/automatica/automatica81.html#DutraTA17,https://doi.org/10.1016/j.automatica.2017.03.035 +Rong Xu,Sliding mode control of a class of underactuated systems.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#XuO08,https://doi.org/10.1016/j.automatica.2007.05.014 +Jean-Pierre Barbot,An observation algorithm for nonlinear systems with unknown inputs.,2009,45,Automatica,8,db/journals/automatica/automatica45.html#BarbotBF09,https://doi.org/10.1016/j.automatica.2009.04.009 +Rajendra K. Mutha,Modifying the Prediction Equation for Nonlinear Model-Based Predictive Control.,1998,34,Automatica,10,db/journals/automatica/automatica34.html#MuthaCP98,https://doi.org/10.1016/S0005-1098(98)00082-X +Peter C. Müller,Robot dynamics and control : Mark W. Spong and M. Vidyasagar.,1992,28,Automatica,3,db/journals/automatica/automatica28.html#Muller92,https://doi.org/10.1016/0005-1098(92)90197-N +Mohammed Chadli,Novel bounded real lemma for discrete-time descriptor systems: Application to H∞ control design.,2012,48,Automatica,2,db/journals/automatica/automatica48.html#ChadliD12,https://doi.org/10.1016/j.automatica.2011.10.003 +Anton S. Shiriaev,Stabilization of compact sets for passive affine nonlinear systems.,2000,36,Automatica,9,db/journals/automatica/automatica36.html#Shiriaev00,https://doi.org/10.1016/S0005-1098(00)00053-4 +Yongcan Cao,Finite-time consensus for multi-agent networks with unknown inherent nonlinear dynamics.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#Cao014,https://doi.org/10.1016/j.automatica.2014.08.028 +Juan Carlos Zúñiga Anaya,A Toeplitz algorithm for polynomial J-spectral factorization.,2006,42,Automatica,7,db/journals/automatica/automatica42.html#ZunigaH06,https://doi.org/10.1016/j.automatica.2006.02.011 +Maciej Niedzwiecki,On the lower smoothing bound in identification of time-varying systems.,2008,44,Automatica,2,db/journals/automatica/automatica44.html#Niedzwiecki08,https://doi.org/10.1016/j.automatica.2007.05.020 +Brian D. O. Anderson,Optimal control problems over large time intervals.,1987,23,Automatica,3,db/journals/automatica/automatica23.html#AndersonK87,https://doi.org/10.1016/0005-1098(87)90008-2 +C. C. H. Ma,Parametric conditions for stability of reduced-order linear time-varying control systems.,1987,23,Automatica,5,db/journals/automatica/automatica23.html#MaV87,https://doi.org/10.1016/0005-1098(87)90058-6 +Peilin Fu,"Author's reply to ""A counterexample to Generalized eigenvalue-based stability tests for 2-D linear systems: Necessary and sufficient conditions"".",2010,46,Automatica,1,db/journals/automatica/automatica46.html#FuCN10,https://doi.org/10.1016/j.automatica.2009.10.003 +Dale E. Seborg,"A reply to ""comments on self-tuning regulator applied to a binary distillation column"".",1979,15,Automatica,2,db/journals/automatica/automatica15.html#SeborgW79,https://doi.org/10.1016/0005-1098(79)90074-8 +Konstantin Kogan,Learning by doing with spillovers: Strategic complementarity versus strategic substitutability.,2016,67,Automatica,,db/journals/automatica/automatica67.html#KoganOC16,https://doi.org/10.1016/j.automatica.2016.01.032 +Yuqian Guo,Stability analysis and design of reset control systems with discrete-time triggering conditions.,2012,48,Automatica,3,db/journals/automatica/automatica48.html#GuoGYX12,https://doi.org/10.1016/j.automatica.2011.12.001 +Mahdi Imani,Particle filters for partially-observed Boolean dynamical systems.,2018,87,Automatica,,db/journals/automatica/automatica87.html#ImaniB18,https://doi.org/10.1016/j.automatica.2017.10.009 +Emilio Pérez,Explicit predictive control with non-convex polyhedral constraints.,2012,48,Automatica,2,db/journals/automatica/automatica48.html#PerezAFM12,https://doi.org/10.1016/j.automatica.2011.07.011 +Ilya Ioslovich,Arbitrary fuel-optimal attitude maneuvering of a non-symmetric space vehicle in a vehicle-fixed coordinate frame.,2003,39,Automatica,3,db/journals/automatica/automatica39.html#Ioslovich03,https://doi.org/10.1016/S0005-1098(02)00247-9 +R. A. Freeman,Robustness of Adaptive Nonlinear Control to Bounded Uncertainties.,1998,34,Automatica,10,db/journals/automatica/automatica34.html#FreemanKK98,https://doi.org/10.1016/S0005-1098(98)00070-3 +Hupo Ouyang,Adaptive fault-tolerant control for actuator failures: A switching strategy.,2017,81,Automatica,,db/journals/automatica/automatica81.html#OuyangL17,https://doi.org/10.1016/j.automatica.2017.03.014 +Zhendong Sun,Reachability analysis of constrained switched linear systems.,2007,43,Automatica,1,db/journals/automatica/automatica43.html#Sun07,https://doi.org/10.1016/j.automatica.2006.07.016 +Michel Gevers,Asymptotic variance expressions for closed-loop identification.,2001,37,Automatica,5,db/journals/automatica/automatica37.html#GeversLH01,https://doi.org/10.1016/S0005-1098(01)00015-2 +David P. Lindorff,Relay control of systems with parameter uncertainties and disturbances.,1969,5,Automatica,6,db/journals/automatica/automatica5.html#Lindorff69,https://doi.org/10.1016/0005-1098(69)90088-0 +Nicolas Gillis,On computing the distance to stability for matrices using linear dissipative Hamiltonian systems.,2017,85,Automatica,,db/journals/automatica/automatica85.html#GillisS17,https://doi.org/10.1016/j.automatica.2017.07.047 +Bi-Qiang Mu,Recursive identification of errors-in-variables Wiener systems.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#MuC13,https://doi.org/10.1016/j.automatica.2013.06.022 +Yuanlong Li,Improvements to the linear differential inclusion approach to stability analysis of linear systems with saturated linear feedback.,2013,49,Automatica,3,db/journals/automatica/automatica49.html#LiL13,https://doi.org/10.1016/j.automatica.2012.12.002 +Liyu Cao,Analysis of the Kalman filter based estimation algorithm: an orthogonal decomposition approach.,2004,40,Automatica,1,db/journals/automatica/automatica40.html#CaoS04,https://doi.org/10.1016/j.automatica.2003.07.011 +Somayeh Bahrami,Global attitude estimation using single delayed vector measurement and biased gyro.,2017,75,Automatica,,db/journals/automatica/automatica75.html#BahramiN17,https://doi.org/10.1016/j.automatica.2016.09.010 +John E. Rijnsdorp,Interaction in two-variable control systems for distillation columns - II : Application of theory.,1965,3,Automatica,1,db/journals/automatica/automatica3.html#Rijnsdorp65a,https://doi.org/10.1016/0005-1098(65)90019-1 +Hamed Haghshenas,Containment control of heterogeneous linear multi-agent systems.,2015,54,Automatica,,db/journals/automatica/automatica54.html#HaghshenasBB15,https://doi.org/10.1016/j.automatica.2015.02.002 +Nikolaos Bekiaris-Liberis,Compensation of actuator dynamics governed by quasilinear hyperbolic PDEs.,2018,92,Automatica,,db/journals/automatica/automatica92.html#Bekiaris-Liberis18,https://doi.org/10.1016/j.automatica.2018.02.006 +L. Ladányi,A complex controller using digital-operational techniques.,1969,5,Automatica,1,db/journals/automatica/automatica5.html#Ladanyi69,https://doi.org/10.1016/0005-1098(69)90058-2 +Syed I. Ahson,Comments on: 'Diagonal dominance for multivariable Nyquist array methods using function minimization'.,1980,16,Automatica,6,db/journals/automatica/automatica16.html#Ahson80,https://doi.org/10.1016/0005-1098(80)90015-1 +Robert J. Fuentes,The spring paradigm in tracking control of simple mechanical systems.,2011,47,Automatica,5,db/journals/automatica/automatica47.html#FuentesHO11,https://doi.org/10.1016/j.automatica.2011.01.046 +Alessandro Chiuso,Consistency analysis of some closed-loop subspace identification methods.,2005,41,Automatica,3,db/journals/automatica/automatica41.html#ChiusoP05,https://doi.org/10.1016/j.automatica.2004.10.015 +Luca Consolini,A path following problem for a class of non-holonomic control systems with noise.,2005,41,Automatica,6,db/journals/automatica/automatica41.html#ConsoliniT05,https://doi.org/10.1016/j.automatica.2004.12.006 +H. W. Joseph Lee,Control parametrization enhancing technique for optimal discrete-valued control problems.,1999,35,Automatica,8,db/journals/automatica/automatica35.html#LeeTRJ99,https://doi.org/10.1016/S0005-1098(99)00050-3 +Yacov Y. Haimes,Kuhn-Tucker multipliers as trade-offs in multiobjective decision-making analysis.,1979,15,Automatica,1,db/journals/automatica/automatica15.html#HaimesC79,https://doi.org/10.1016/0005-1098(79)90087-6 +Sangho Ko,Optimal control for linear systems with state equality constraints.,2007,43,Automatica,9,db/journals/automatica/automatica43.html#KoB07a,https://doi.org/10.1016/j.automatica.2007.01.024 +Tae-Sang Chung,A computationally efficient numerical algorithm for the minimum-time control problem of continuous systems.,1992,28,Automatica,4,db/journals/automatica/automatica28.html#ChungW92,https://doi.org/10.1016/0005-1098(92)90048-K +Ralf L. M. Peeters,Symbolic computation of Fisher information matrices for parametrized state-space systems.,1999,35,Automatica,6,db/journals/automatica/automatica35.html#PeetersH99,https://doi.org/10.1016/S0005-1098(99)00004-7 +Cameron S. R. Fraser,A hyperparameter consensus method for agreement under uncertainty.,2012,48,Automatica,2,db/journals/automatica/automatica48.html#FraserBCH12,https://doi.org/10.1016/j.automatica.2011.11.003 +Rolf Isermann,Fault diagnosis of machines via parameter estimation and knowledge processing - Tutorial paper.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#Isermann93,https://doi.org/10.1016/0005-1098(93)90088-B +Qiuhui Chen,System identification by discrete rational atoms.,2015,56,Automatica,,db/journals/automatica/automatica56.html#ChenM0M15,https://doi.org/10.1016/j.automatica.2015.03.022 +A. Nazli Gündes,Simultaneously stabilizing controller design for a class of MIMO systems.,2001,37,Automatica,12,db/journals/automatica/automatica37.html#GundesK01,https://doi.org/10.1016/S0005-1098(01)00155-8 +Gleb Zherlitsyn,Min-max optimal data encoding and fusion in sensor networks.,2010,46,Automatica,9,db/journals/automatica/automatica46.html#ZherlitsynM10,https://doi.org/10.1016/j.automatica.2010.06.019 +A. Pedro Aguiar,Switched seesaw control for the stabilization of underactuated vehicles.,2007,43,Automatica,12,db/journals/automatica/automatica43.html#AguiarHP07,https://doi.org/10.1016/j.automatica.2007.03.023 +Santosh Devasia,Nonlinear minimum-time control with pre- and post-actuation.,2011,47,Automatica,7,db/journals/automatica/automatica47.html#Devasia11,https://doi.org/10.1016/j.automatica.2011.02.022 +Graham C. Goodwin,Fundamental limitations due to jomega-axis zeros in SISO systems.,1999,35,Automatica,5,db/journals/automatica/automatica35.html#GoodwinWMS99,https://doi.org/10.1016/S0005-1098(98)00224-6 +Izumi Masubuchi,Output feedback controller synthesis for descriptor systems satisfying closed-loop dissipativity.,2007,43,Automatica,2,db/journals/automatica/automatica43.html#Masubuchi07,https://doi.org/10.1016/j.automatica.2006.09.002 +Michael Kordt,Aircraft load alleviation by robust yaw-lateral decoupling.,2003,39,Automatica,11,db/journals/automatica/automatica39.html#KordtA03,https://doi.org/10.1016/S0005-1098(03)00218-8 +Panos Koukoulas,A cumulant based algorithm for the identification of input-output quadratic systems.,2002,38,Automatica,3,db/journals/automatica/automatica38.html#KoukoulasTK02,https://doi.org/10.1016/S0005-1098(01)00227-8 +Fuchun Liu,Reliable supervisory control for general architecture of decentralized discrete event systems.,2010,46,Automatica,9,db/journals/automatica/automatica46.html#LiuL10a,https://doi.org/10.1016/j.automatica.2010.06.011 +Stefen Hui,Solving minimum norm problems using penalty functions and the gradient method.,1995,31,Automatica,1,db/journals/automatica/automatica31.html#HuiLZ95,https://doi.org/10.1016/0005-1098(94)00072-Q +Keyou You,Consensus condition for linear multi-agent systems over randomly switching topologies.,2013,49,Automatica,10,db/journals/automatica/automatica49.html#YouLX13,https://doi.org/10.1016/j.automatica.2013.07.024 +Philippe Martin 0001,Null controllability of the heat equation using flatness.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#MartinRR14,https://doi.org/10.1016/j.automatica.2014.10.049 +Iasson Karafyllis,Delay-robustness of linear predictor feedback without restriction on delay rate.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#KarafyllisK13,https://doi.org/10.1016/j.automatica.2013.02.019 +Haijun Fang,Analysis of linear systems in the presence of actuator saturation and I-disturbances.,2004,40,Automatica,7,db/journals/automatica/automatica40.html#FangLH04,https://doi.org/10.1016/j.automatica.2004.02.009 +Hong-Bing Zeng,A new looped-functional for stability analysis of sampled-data systems.,2017,82,Automatica,,db/journals/automatica/automatica82.html#ZengTH17,https://doi.org/10.1016/j.automatica.2017.04.051 +Lucian Busoniu,Continuous-action planning for discounted infinite-horizon nonlinear optimal control with Lipschitz values.,2018,92,Automatica,,db/journals/automatica/automatica92.html#BusoniuPM18,https://doi.org/10.1016/j.automatica.2018.03.009 +Li-Gang Lin,Analytical representation of the state-dependent coefficients in the SDRE/SDDRE scheme for multivariable systems.,2015,59,Automatica,,db/journals/automatica/automatica59.html#LinVL15,https://doi.org/10.1016/j.automatica.2015.06.015 +Heather Arneson,A linear programming approach to routing control in networks of constrained linear positive systems.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#ArnesonL12,https://doi.org/10.1016/j.automatica.2012.02.001 +Shuyou Yu,Inherent robustness properties of quasi-infinite horizon nonlinear model predictive control.,2014,50,Automatica,9,db/journals/automatica/automatica50.html#YuRCA14,https://doi.org/10.1016/j.automatica.2014.07.014 +Huibert Kwakernaak,Yoshifumi Sunahara.,1995,31,Automatica,3,db/journals/automatica/automatica31.html#Kwakernaak95,https://doi.org/10.1016/0005-1098(95)90007-1 +F. Berthier,Identifiability and distinguishability concepts in electrochemistry.,1996,32,Automatica,7,db/journals/automatica/automatica32.html#BerthierDPW96,https://doi.org/10.1016/0005-1098(96)00031-3 +Ameet Shridhar Deshpande,Max-plus representation for the fundamental solution of the time-varying differential Riccati equation.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#Deshpande11,https://doi.org/10.1016/j.automatica.2011.05.009 +Mahmoud Abdelrahim,Robust event-triggered output feedback controllers for nonlinear systems.,2017,75,Automatica,,db/journals/automatica/automatica75.html#AbdelrahimPDN17,https://doi.org/10.1016/j.automatica.2016.09.044 +Igor Boiko,Oscillations and transfer properties of relay feedback systems with time-delay linear plants.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#Boiko09,https://doi.org/10.1016/j.automatica.2009.09.006 +Jovan D. Stefanovski,Passive fault tolerant perfect tracking with additive faults.,2018,87,Automatica,,db/journals/automatica/automatica87.html#Stefanovski18,https://doi.org/10.1016/j.automatica.2017.09.011 +Xudong Zhao,Improved results on stability of continuous-time switched positive linear systems.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#ZhaoLYL14,https://doi.org/10.1016/j.automatica.2013.11.039 +Ai Hui Tan,Application of multi-level signals to the identification of direction-dependent processes.,2004,40,Automatica,5,db/journals/automatica/automatica40.html#TanGB04,https://doi.org/10.1016/j.automatica.2003.12.004 +Matthew C. Turner,Linear quadratic bumpless transfer.,2000,36,Automatica,8,db/journals/automatica/automatica36.html#TurnerW00,https://doi.org/10.1016/S0005-1098(00)00021-2 +Stefano Liuzzo,Adaptive learning control of linear systems by output error feedback.,2007,43,Automatica,4,db/journals/automatica/automatica43.html#LiuzzoMT07,https://doi.org/10.1016/j.automatica.2006.10.011 +Rob H. Gielen,On stability analysis methods for large-scale discrete-time systems.,2015,55,Automatica,,db/journals/automatica/automatica55.html#GielenL15,https://doi.org/10.1016/j.automatica.2015.02.034 +João C. C. Henriques,A high-order Discontinuous Galerkin Method with mesh refinement for optimal control.,2017,85,Automatica,,db/journals/automatica/automatica85.html#HenriquesLEGF17,https://doi.org/10.1016/j.automatica.2017.07.029 +Iven M. Y. Mareels,Controlling nonlinear time-varying systems via euler approximations.,1992,28,Automatica,4,db/journals/automatica/automatica28.html#MareelsPE92,https://doi.org/10.1016/0005-1098(92)90030-J +Gjerrit Meinsma,Frequency-truncated system norms.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#MeinsmaS11,https://doi.org/10.1016/j.automatica.2011.05.004 +Bahman Gharesifard,Distributed convergence to Nash equilibria in two-network zero-sum games.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#GharesifardC13,https://doi.org/10.1016/j.automatica.2013.02.062 +Sonja Stüdli,Vehicular platoons in cyclic interconnections.,2018,94,Automatica,,db/journals/automatica/automatica94.html#StudliSM18,https://doi.org/10.1016/j.automatica.2018.04.033 +Xing-Gang Yan,Decentralized Output Feedback Robust Control for Nonlinear Large-scale Systems.,1998,34,Automatica,11,db/journals/automatica/automatica34.html#YanD98,https://doi.org/10.1016/S0005-1098(98)00090-9 +Shuai Liu 0001,Continuous-time and sampled-data-based average consensus with logarithmic quantizers.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#LiuLXFZ13,https://doi.org/10.1016/j.automatica.2013.07.016 +Ikuro Mizumoto,Adaptive output feedback control of general MIMO systems using multirate sampling and its application to a cart-crane system.,2007,43,Automatica,12,db/journals/automatica/automatica43.html#MizumotoCOKI07,https://doi.org/10.1016/j.automatica.2007.04.017 +M. M. Bayoumi,"Comments on ""self-tuning adaptive control of cement raw material blending"".",1979,15,Automatica,6,db/journals/automatica/automatica15.html#BayoumiE79,https://doi.org/10.1016/0005-1098(79)90039-6 +Tsuneo Yoshikawa,Inverse systems for reproducing linear functions of inputs.,1981,17,Automatica,5,db/journals/automatica/automatica17.html#YoshikawaS81,https://doi.org/10.1016/0005-1098(81)90024-8 +Vassilis Sakizlis,Design of robust model-based controllers via parametric programming.,2004,40,Automatica,2,db/journals/automatica/automatica40.html#SakizlisKDPP04,https://doi.org/10.1016/j.automatica.2003.08.011 +Johan Markdahl,Exact solutions to a class of feedback systems on.,2016,63,Automatica,,db/journals/automatica/automatica63.html#MarkdahlH16,https://doi.org/10.1016/j.automatica.2015.10.023 +Sergio Bittanti,Spectral factorization of linear periodic systems with application to the optimal prediction of periodic ARMA models.,1993,29,Automatica,2,db/journals/automatica/automatica29.html#BittantiN93,https://doi.org/10.1016/0005-1098(93)90149-N +Harold Chestnut,1964 joint automatic control conference.,1965,2,Automatica,3,db/journals/automatica/automatica2.html#Chestnut65,https://doi.org/10.1016/0005-1098(65)90011-7 +Soura Dasgupta,Persistence of excitation conditions for partially known systems.,1994,30,Automatica,3,db/journals/automatica/automatica30.html#DasguptaAK94,https://doi.org/10.1016/0005-1098(94)90136-8 +Benjamin Noack,Decentralized data fusion with inverse covariance intersection.,2017,79,Automatica,,db/journals/automatica/automatica79.html#NoackSRH17,https://doi.org/10.1016/j.automatica.2017.01.019 +M. Kuijper,Minimality of descriptor representations under external equivalence.,1991,27,Automatica,6,db/journals/automatica/automatica27.html#KuijperS91,https://doi.org/10.1016/0005-1098(91)90133-M +Björn Wittenmark,Control systems engineering: Stephen P. Banks.,1987,23,Automatica,3,db/journals/automatica/automatica23.html#Wittenmark87,https://doi.org/10.1016/0005-1098(87)90020-3 +Jianping He,Practical closed-loop dynamic pricing in smart grid for supply and demand balancing.,2018,89,Automatica,,db/journals/automatica/automatica89.html#HeZCCS18,https://doi.org/10.1016/j.automatica.2017.11.011 +Yiannis (John) Stergiopoulos,Spatially distributed area coverage optimisation in mobile robotic networks with arbitrary convex anisotropic patterns.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#StergiopoulosT13,https://doi.org/10.1016/j.automatica.2012.09.012 +Manoj Shouche,Simultaneous Constrained Model Predictive Control and Identification of DARX Processes.,1998,34,Automatica,12,db/journals/automatica/automatica34.html#ShoucheGPN98,https://doi.org/10.1016/S0005-1098(98)80005-8 +Huai-Ning Wu,Static output feedback control via PDE boundary and ODE measurements in linear cascaded ODE-beam systems.,2014,50,Automatica,11,db/journals/automatica/automatica50.html#WuW14,https://doi.org/10.1016/j.automatica.2014.09.006 +Francesco Amato,Guaranteeing cost strategies for linear quadratic differential games under uncertain dynamics.,2002,38,Automatica,3,db/journals/automatica/automatica38.html#AmatoMP02,https://doi.org/10.1016/S0005-1098(01)00224-2 +Svante Gunnarsson,On the disturbance properties of high order iterative learning control algorithms.,2006,42,Automatica,11,db/journals/automatica/automatica42.html#GunnarssonN06,https://doi.org/10.1016/j.automatica.2006.06.010 +Panos Parpas,A stochastic minimum principle and an adaptive pathwise algorithm for stochastic optimal control.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#ParpasW13,https://doi.org/10.1016/j.automatica.2013.02.053 +Sri R. Kolla,Improved robust stability bounds for discrete-time linear regulators with computational delays.,1990,26,Automatica,3,db/journals/automatica/automatica26.html#KollaF90,https://doi.org/10.1016/0005-1098(90)90036-H +Avinash Taware,Friction compensation for a sandwich dynamic system.,2003,39,Automatica,3,db/journals/automatica/automatica39.html#TawareTPT03,https://doi.org/10.1016/S0005-1098(02)00284-4 +Solmaz Sajjadi-Kia,Controllers for linear systems with bounded actuators: Slab scheduling and anti-windup.,2013,49,Automatica,3,db/journals/automatica/automatica49.html#Sajjadi-KiaJ13,https://doi.org/10.1016/j.automatica.2012.11.018 +Mengyuan Fang,Analysis of over-sampling based identification.,2017,79,Automatica,,db/journals/automatica/automatica79.html#FangZ17,https://doi.org/10.1016/j.automatica.2017.01.006 +Altug Iftar,Modeling of uncertain dynamics for robust controller design in state space.,1991,27,Automatica,1,db/journals/automatica/automatica27.html#IftarO91,https://doi.org/10.1016/0005-1098(91)90012-Q +Wu-Chung Su,Constructing discontinuity surfaces for variable structure systems: A Lyapunov approach.,1996,32,Automatica,6,db/journals/automatica/automatica32.html#SuDO96,https://doi.org/10.1016/0005-1098(96)00017-9 +A. M. King,A generalized approach to q-Markov covariance equivalent realizations for discrete systems.,1988,24,Automatica,4,db/journals/automatica/automatica24.html#KingDS88,https://doi.org/10.1016/0005-1098(88)90095-7 +Petre Stoica,An introduction to identification: J. P. Norton.,1988,24,Automatica,3,db/journals/automatica/automatica24.html#Stoica88,https://doi.org/10.1016/0005-1098(88)90087-8 +Yuzhen Wang,Problems on time-varying port-controlled Hamiltonian systems: geometric structure and dissipative realization.,2005,41,Automatica,4,db/journals/automatica/automatica41.html#WangCH05,https://doi.org/10.1016/j.automatica.2004.11.006 +Francesco Delli Priscoli,Design of a bandwidth-on-demand (BoD) protocol for satellite networks modelled as time-delay systems.,2004,40,Automatica,5,db/journals/automatica/automatica40.html#PriscoliP04,https://doi.org/10.1016/j.automatica.2003.12.013 +Jong-Hae Kim,Delay-dependent robust Hinfinity filtering for uncertain discrete-time singular systems with interval time-varying delay.,2010,46,Automatica,3,db/journals/automatica/automatica46.html#Kim10,https://doi.org/10.1016/j.automatica.2010.01.011 +Christian Commault,A geometric approach for structured systems: Application to disturbance decoupling.,1997,33,Automatica,3,db/journals/automatica/automatica33.html#CommaultDH97,https://doi.org/10.1016/S0005-1098(96)00186-0 +S. De La Salle,Stochastic optimal control theory and application: Robert F. Stengel.,1988,24,Automatica,3,db/journals/automatica/automatica24.html#Salle88,https://doi.org/10.1016/0005-1098(88)90086-6 +Roger Skjetne,Robust output maneuvering for a class of nonlinear systems.,2004,40,Automatica,3,db/journals/automatica/automatica40.html#SkjetneFK04,https://doi.org/10.1016/j.automatica.2003.10.010 +Sirish L. Shah,Authors' reply.,1984,20,Automatica,4,db/journals/automatica/automatica20.html#ShahK84,https://doi.org/10.1016/0005-1098(84)90108-0 +Paulo Tabuada,Abstractions of Hamiltonian control systems.,2003,39,Automatica,12,db/journals/automatica/automatica39.html#TabuadaP03,https://doi.org/10.1016/S0005-1098(03)00235-8 +Bi-Qiang Mu,On asymptotic properties of hyperparameter estimators for kernel-based regularization methods.,2018,94,Automatica,,db/journals/automatica/automatica94.html#MuCL18,https://doi.org/10.1016/j.automatica.2018.04.035 +Chen Wang,Distributed model predictive control of dynamically decoupled systems with coupled cost.,2010,46,Automatica,12,db/journals/automatica/automatica46.html#WangO10,https://doi.org/10.1016/j.automatica.2010.09.002 +Alejandro Fernández Villaverde,Passive position error correction in Internet-based teleoperation.,2010,46,Automatica,11,db/journals/automatica/automatica46.html#VillaverdeBR10,https://doi.org/10.1016/j.automatica.2010.07.009 +Richard Wheeler,Learning models for decentralized decision making.,1985,21,Automatica,4,db/journals/automatica/automatica21.html#WheelerN85,https://doi.org/10.1016/0005-1098(85)90084-6 +Georgios E. Fainekos,Temporal logic motion planning for dynamic robots.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#FainekosGKP09,https://doi.org/10.1016/j.automatica.2008.08.008 +Yasuaki Oishi,Computational complexity of randomized algorithms for solving parameter-dependent linear matrix inequalities.,2003,39,Automatica,12,db/journals/automatica/automatica39.html#OishiK03,https://doi.org/10.1016/j.automatica.2003.07.001 +Baozhu Du,"Corrigendum to ""On reachable sets for positive linear systems under constrained exogenous inputs"" [Automatica 74 (2016) 230-237].",2017,82,Automatica,,db/journals/automatica/automatica82.html#DuLSC17,https://doi.org/10.1016/j.automatica.2017.02.007 +Weisheng Chen,Quantized consensus of second-order continuous-time multi-agent systems with a directed topology via sampled data.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#ChenLJ13,https://doi.org/10.1016/j.automatica.2013.04.002 +Lucian Busoniu,Approximate dynamic programming with a fuzzy parameterization.,2010,46,Automatica,5,db/journals/automatica/automatica46.html#BusoniuESB10,https://doi.org/10.1016/j.automatica.2010.02.006 +Guoxiang Gu,Networked stabilization for multi-input systems over quantized fading channels.,2015,61,Automatica,,db/journals/automatica/automatica61.html#GuWQ15,https://doi.org/10.1016/j.automatica.2015.07.019 +Madan M. Gupta,Second IFAC round table on fuzzy automata and decision processes.,1976,12,Automatica,3,db/journals/automatica/automatica12.html#GuptaM76,https://doi.org/10.1016/0005-1098(76)90033-9 +Sándor Kolumbán,Perturbed datasets methods for hypothesis testing and structure of corresponding confidence sets.,2015,51,Automatica,,db/journals/automatica/automatica51.html#KolumbanVS15,https://doi.org/10.1016/j.automatica.2014.10.083 +Young Hwan Chang,Secure estimation based Kalman Filter for cyber-physical systems against sensor attacks.,2018,95,Automatica,,db/journals/automatica/automatica95.html#ChangHT18,https://doi.org/10.1016/j.automatica.2018.06.010 +Tamer Basar,Transition in an editorship.,2008,44,Automatica,7,db/journals/automatica/automatica44.html#Basar08,https://doi.org/10.1016/j.automatica.2008.05.001 +Zalman J. Palmor,A general and exact method for determining limit cycles in decentralized relay systems.,1995,31,Automatica,9,db/journals/automatica/automatica31.html#PalmorHE95,https://doi.org/10.1016/0005-1098(95)00031-Q +Yi-Liang Chen,Incremental model evolution and reusability of supervisors for discrete event systems.,2000,36,Automatica,2,db/journals/automatica/automatica36.html#ChenLL00,https://doi.org/10.1016/S0005-1098(99)00142-9 +Björn Wittenmark,Constrained pole-placement using transformation and LQ-design.,1987,23,Automatica,6,db/journals/automatica/automatica23.html#WittenmarkES87,https://doi.org/10.1016/0005-1098(87)90035-5 +Markus Mauder 0002,Robust tracking control of nonholonomic dynamic systems with application to the bi-steerable mobile robot.,2008,44,Automatica,10,db/journals/automatica/automatica44.html#Mauder08,https://doi.org/10.1016/j.automatica.2008.02.012 +Masao Ikeda,Optimality and robustness of linear quadratic control for nonlinear systems.,1990,26,Automatica,3,db/journals/automatica/automatica26.html#IkedaS90,https://doi.org/10.1016/0005-1098(90)90021-9 +Kenji Hirata,Exact determinations of the maximal output admissible set for a class of nonlinear systems.,2008,44,Automatica,2,db/journals/automatica/automatica44.html#HirataO08,https://doi.org/10.1016/j.automatica.2007.06.016 +Young Soo Suh,Stability and stabilization of nonuniform sampling systems.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#Suh08,https://doi.org/10.1016/j.automatica.2008.10.002 +Yang Su,"Comments on ""Output feedback model predictive control for LPV systems based on quasi-min-max algorithm"".",2012,48,Automatica,9,db/journals/automatica/automatica48.html#SuT12,https://doi.org/10.1016/j.automatica.2012.06.100 +Jong Hae Kim,Reduced-order delay-dependent H∞ filtering for uncertain discrete-time singular systems with time-varying delay.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#Kim11a,https://doi.org/10.1016/j.automatica.2011.08.052 +Jiangping Hu,Distributed tracking control of leader-follower multi-agent systems under noisy measurement.,2010,46,Automatica,8,db/journals/automatica/automatica46.html#HuF10,https://doi.org/10.1016/j.automatica.2010.05.020 +Tarek Raïssi,Interval observer design for consistency checks of nonlinear continuous-time systems.,2010,46,Automatica,3,db/journals/automatica/automatica46.html#RaissiVZ10,https://doi.org/10.1016/j.automatica.2009.12.005 +Ivo Herman,Disturbance scaling in bidirectional vehicle platoons with different asymmetry in position and velocity coupling.,2017,82,Automatica,,db/journals/automatica/automatica82.html#HermanKA17,https://doi.org/10.1016/j.automatica.2017.04.010 +Jie Chen 0005,The role of the condition number and the relative gain array in robustness analysis.,1994,30,Automatica,6,db/journals/automatica/automatica30.html#ChenFN94,https://doi.org/10.1016/0005-1098(94)90197-X +Tarek Hamel,Transverse function control of a motorboat.,2016,65,Automatica,,db/journals/automatica/automatica65.html#HamelS16,https://doi.org/10.1016/j.automatica.2015.11.040 +Qingling Zhang 0001,Sliding mode control for singular stochastic Markovian jump systems with uncertainties.,2017,79,Automatica,,db/journals/automatica/automatica79.html#ZhangLYS17,https://doi.org/10.1016/j.automatica.2017.01.002 +Danqin Yang,Coordinating a two-supplier and one-retailer supply chain with forecast updating.,2011,47,Automatica,7,db/journals/automatica/automatica47.html#YangCXC11,https://doi.org/10.1016/j.automatica.2011.02.005 +Eugênio B. Castelan,Control design for a class of nonlinear continuous-time systems.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#CastelanTQ08,https://doi.org/10.1016/j.automatica.2007.11.013 +Sven Haadem,Maximum principles for jump diffusion processes with infinite horizon.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#HaademOP13,https://doi.org/10.1016/j.automatica.2013.04.011 +Jinchang Hu,Immersion and invariance based command-filtered adaptive backstepping control of VTOL vehicles.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#HuZ13,https://doi.org/10.1016/j.automatica.2013.03.019 +Issa Amadou Tall,Linearization of control systems: A Lie series approach.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#Tall14,https://doi.org/10.1016/j.automatica.2014.10.063 +Seog-Joo Kim,Structurally constrained H2 and Hinfinity control: A rank-constrained LMI approach.,2006,42,Automatica,9,db/journals/automatica/automatica42.html#KimM06,https://doi.org/10.1016/j.automatica.2006.03.017 +Indira Nagesh,A multivariable super-twisting sliding mode approach.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#NageshE14,https://doi.org/10.1016/j.automatica.2013.12.032 +Mirko Fiacchini,On the computation of convex robust control invariant sets for nonlinear systems.,2010,46,Automatica,8,db/journals/automatica/automatica46.html#FiacchiniAC10,https://doi.org/10.1016/j.automatica.2010.05.007 +Elma O'Sullivan-Greene,Observability limits for networked oscillators.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#OSullivan-GreeneMKB14,https://doi.org/10.1016/j.automatica.2014.02.035 +Harold Chestnut,Comments from the Automatica editorial board.,1969,5,Automatica,1,db/journals/automatica/automatica5.html#Chestnut69,https://doi.org/10.1016/0005-1098(69)90047-8 +Qijiang Song,Identification of errors-in-variables systems with nonlinear output observations.,2013,49,Automatica,4,db/journals/automatica/automatica49.html#Song13,https://doi.org/10.1016/j.automatica.2013.01.023 +Rui Li,Localization and circumnavigation of multiple agents along an unknown target based on bearing-only measurement: A three dimensional solution.,2018,94,Automatica,,db/journals/automatica/automatica94.html#LiSS18,https://doi.org/10.1016/j.automatica.2018.04.005 +Pasquale Lucibello,Experiments on output tracking with internal stability by learning for a one-link flexible arm.,1997,33,Automatica,11,db/journals/automatica/automatica33.html#LucibelloP97,https://doi.org/10.1016/S0005-1098(97)00120-9 +Chia-Chi Tsui,On robust observer compensator design.,1988,24,Automatica,5,db/journals/automatica/automatica24.html#Tsui88,https://doi.org/10.1016/0005-1098(88)90116-1 +Michael Malisoff,Adaptive control for planar curve tracking under controller uncertainty.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#MalisoffZ13,https://doi.org/10.1016/j.automatica.2013.01.056 +C. C. H. Ma,Rapid tracking of complex trajectories in short-duration processes.,1991,27,Automatica,1,db/journals/automatica/automatica27.html#Ma91,https://doi.org/10.1016/0005-1098(91)90017-V +Irma Ivanoviene,Complement to method of analysis of time delay systems via the Lambert W function.,2015,54,Automatica,,db/journals/automatica/automatica54.html#IvanovieneR15,https://doi.org/10.1016/j.automatica.2015.01.039 +Suat Gumussoy,A predictor-corrector type algorithm for the pseudospectral abscissa computation of time-delay systems.,2010,46,Automatica,4,db/journals/automatica/automatica46.html#GumussoyM10,https://doi.org/10.1016/j.automatica.2010.01.032 +Ole Morten Aamo,Control of mixing by boundary feedback in 2D channel flow.,2003,39,Automatica,9,db/journals/automatica/automatica39.html#AamoKB03,https://doi.org/10.1016/S0005-1098(03)00140-7 +Andrei Polyakov,"Lyapunov function design for finite-time convergence analysis: ""Twisting"" controller for second-order sliding mode realization.",2009,45,Automatica,2,db/journals/automatica/automatica45.html#PolyakovP09,https://doi.org/10.1016/j.automatica.2008.07.013 +W. S. Lee,On some key issues in the windsurfer approach to adaptive robust control.,1995,31,Automatica,11,db/journals/automatica/automatica31.html#LeeAMK95,https://doi.org/10.1016/0005-1098(95)00092-B +Jakob Stoustrup,The H∞ control problem: A state space approach: Anton A. Stoorvogel.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#Stoustrup93,https://doi.org/10.1016/0005-1098(93)90117-C +Christos A. Tsiligiannis,Deterministic convergence of a Clarke-Gawthrop self-tuning controller.,1986,22,Automatica,2,db/journals/automatica/automatica22.html#TsiligiannisS86,https://doi.org/10.1016/0005-1098(86)90080-4 +Solmaz S. Kia,Distributed convex optimization via continuous-time coordination algorithms with discrete-time communication.,2015,55,Automatica,,db/journals/automatica/automatica55.html#KiaCM15,https://doi.org/10.1016/j.automatica.2015.03.001 +Graham C. Goodwin,On the use of one bit quantizers in networked control.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#GoodwinGFM14,https://doi.org/10.1016/j.automatica.2014.02.006 +Syed Zeeshan Rizvi,State-space LPV model identification using kernelized machine learning.,2018,88,Automatica,,db/journals/automatica/automatica88.html#RizviVATM18,https://doi.org/10.1016/j.automatica.2017.11.004 +Jin Guo 0003,Recursive identification of FIR systems with binary-valued outputs and communication channels.,2015,60,Automatica,,db/journals/automatica/automatica60.html#0003ZSY15,https://doi.org/10.1016/j.automatica.2015.06.030 +D. Hrovat,Optimal active suspension structures for quarter-car vehicle models.,1990,26,Automatica,5,db/journals/automatica/automatica26.html#Hrovat90,https://doi.org/10.1016/0005-1098(90)90002-Y +Rolf Isermann,Parameter adaptive control algorithms - A tutorial.,1982,18,Automatica,5,db/journals/automatica/automatica18.html#Isermann82,https://doi.org/10.1016/0005-1098(82)90002-4 +Fouad Giri,Identification of Hammerstein systems in presence of hysteresis-backlash and hysteresis-relay nonlinearities.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#GiriRCB08,https://doi.org/10.1016/j.automatica.2007.07.005 +Riccardo Marino,Disturbance cancellation for linear systems by adaptive internal models.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#MarinoT13,https://doi.org/10.1016/j.automatica.2013.02.011 +Alessio Merola,Optimal control of uncertain nonlinear quadratic systems.,2017,83,Automatica,,db/journals/automatica/automatica83.html#MerolaCCA17,https://doi.org/10.1016/j.automatica.2017.05.012 +Chien-Shu Hsieh,Extension of unbiased minimum-variance input and state estimation for systems with unknown inputs.,2009,45,Automatica,9,db/journals/automatica/automatica45.html#Hsieh09,https://doi.org/10.1016/j.automatica.2009.05.004 +H. Raghav Rao,An information and preference theory approach to a discrete resource allocation problem.,1991,27,Automatica,5,db/journals/automatica/automatica27.html#Rao91,https://doi.org/10.1016/0005-1098(91)90038-4 +Roman Geiselhart,Equivalent types of ISS Lyapunov functions for discontinuous discrete-time systems.,2017,84,Automatica,,db/journals/automatica/automatica84.html#GeiselhartN17,https://doi.org/10.1016/j.automatica.2017.06.020 +Jozsef Bokor,Detection filter design for LPV systems - a geometric approach.,2004,40,Automatica,3,db/journals/automatica/automatica40.html#BokorB04,https://doi.org/10.1016/j.automatica.2003.11.003 +Yi Guo,Control of frictional dynamics of a one-dimensional particle array.,2008,44,Automatica,10,db/journals/automatica/automatica44.html#GuoQ08,https://doi.org/10.1016/j.automatica.2008.03.012 +Dobrila Skataric,Linear control of nearly singularly perturbed hydropower plants.,1992,28,Automatica,1,db/journals/automatica/automatica28.html#SkataricG92,https://doi.org/10.1016/0005-1098(92)90016-9 +PooGyeon Park,A Revisited Tsypkin Criterion for Discrete-Time Nonlinear Lur'e Systems with Monotonic Sector-Restrictions.,1998,34,Automatica,11,db/journals/automatica/automatica34.html#ParkK98,https://doi.org/10.1016/S0005-1098(98)00100-9 +Yu Li,Dynamic pricing and periodic ordering for a stochastic inventory system with deteriorating items.,2017,76,Automatica,,db/journals/automatica/automatica76.html#LiZH17,https://doi.org/10.1016/j.automatica.2016.11.003 +Pierdomenico Pepe,On the asymptotic stability of coupled delay differential and continuous time difference equations.,2005,41,Automatica,1,db/journals/automatica/automatica41.html#Pepe05,https://doi.org/10.1016/j.automatica.2004.08.011 +Frédéric Grognard,Improving the performance of low-gain designs for bounded control of linear systems.,2002,38,Automatica,10,db/journals/automatica/automatica38.html#GrognardSB02,https://doi.org/10.1016/S0005-1098(02)00086-9 +Vikram Krishnamurthy,Finite-Dimensional Filters for Passive Tracking of Markov Jump Linear Systems.,1998,34,Automatica,6,db/journals/automatica/automatica34.html#KrishnamurthyE98,https://doi.org/10.1016/S0005-1098(98)00006-5 +Johan Löfberg,Oops! I cannot do it again: Testing for recursive feasibility in MPC.,2012,48,Automatica,3,db/journals/automatica/automatica48.html#Lofberg12,https://doi.org/10.1016/j.automatica.2011.12.003 +Carlos A. Cavichioli Gonzaga,Stability analysis of discrete-time Lur'e systems.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#GonzagaJD12,https://doi.org/10.1016/j.automatica.2012.06.034 +Renming Yang,Finite-time stability analysis and H∞ control for a class of nonlinear time-delay Hamiltonian systems.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#YangW13,https://doi.org/10.1016/j.automatica.2012.11.034 +Steffen Waldherr,Robust stability and instability of biochemical networks with parametric uncertainty.,2011,47,Automatica,6,db/journals/automatica/automatica47.html#WaldherrA11,https://doi.org/10.1016/j.automatica.2011.01.012 +Ioannis Sarras,Constructive immersion and invariance stabilization for a class of underactuated mechanical systems.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#SarrasAOM13,https://doi.org/10.1016/j.automatica.2013.01.059 +Kaiyang Yang,Generalized pole placement via static output feedback: A methodology based on projections.,2006,42,Automatica,12,db/journals/automatica/automatica42.html#YangO06,https://doi.org/10.1016/j.automatica.2006.06.021 +Oded Levin,Optimal control of a storage reservoir during a flood season.,1969,5,Automatica,1,db/journals/automatica/automatica5.html#Levin69,https://doi.org/10.1016/0005-1098(69)90051-X +Thomas Parisini,Stable hybrid control based on discrete-event automata and receding-horizon neural regulators.,2001,37,Automatica,8,db/journals/automatica/automatica37.html#ParisiniS01,https://doi.org/10.1016/S0005-1098(01)00095-4 +Vladimir Havlena,Receding-horizon MIMO LQ controller design with guaranteed stability.,1997,33,Automatica,8,db/journals/automatica/automatica33.html#HavlenaK97,https://doi.org/10.1016/S0005-1098(97)00046-0 +Florin Sebastian Tudor,Robust stabilization of discrete generalized systems.,2018,94,Automatica,,db/journals/automatica/automatica94.html#TudorO18,https://doi.org/10.1016/j.automatica.2018.04.043 +Tongwen Chen,H∞-optimal sampled-data control: Computation and designs.,1996,32,Automatica,2,db/journals/automatica/automatica32.html#ChenF96,https://doi.org/10.1016/0005-1098(96)85551-8 +Mark Cannon,Infinite horizon predictive control of constrained continuous-time linear systems.,2000,36,Automatica,7,db/journals/automatica/automatica36.html#CannonK00,https://doi.org/10.1016/S0005-1098(00)00006-6 +Chee-Yee Chong,On the periodic coordination of linear stochastic systems.,1976,12,Automatica,4,db/journals/automatica/automatica12.html#ChongA76,https://doi.org/10.1016/0005-1098(76)90052-2 +H. Demircioglu,Multivariable continuous-time generalized predictive control (MCGPC).,1992,28,Automatica,4,db/journals/automatica/automatica28.html#DemirciogluG92,https://doi.org/10.1016/0005-1098(92)90031-A +Yanjun Shen,Semi-global finite-time observers for nonlinear systems.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#ShenX08,https://doi.org/10.1016/j.automatica.2008.05.015 +T. K. Gustafsson,Modelling of uncertain systems via linear programming.,1996,32,Automatica,3,db/journals/automatica/automatica32.html#GustafssonM96,https://doi.org/10.1016/0005-1098(95)00148-4 +Alan S. Willsky,A survey of design methods for failure detection in dynamic systems.,1976,12,Automatica,6,db/journals/automatica/automatica12.html#Willsky76,https://doi.org/10.1016/0005-1098(76)90041-8 +André L. Tits,On the small-λ6* theorem.,1995,31,Automatica,8,db/journals/automatica/automatica31.html#TitsF95,https://doi.org/10.1016/0005-1098(95)00035-U +Erik K. Larsson,Identification of continuous-time AR processes from unevenly sampled data.,2002,38,Automatica,4,db/journals/automatica/automatica38.html#LarssonS02,https://doi.org/10.1016/S0005-1098(01)00244-8 +Lionel Magnis,Angular velocity nonlinear observer from vector measurements.,2017,75,Automatica,,db/journals/automatica/automatica75.html#MagnisP17,https://doi.org/10.1016/j.automatica.2016.09.027 +Howard Kaufman,Model reference adaptive control of drug infusion rate.,1984,20,Automatica,2,db/journals/automatica/automatica20.html#KaufmanRX84,https://doi.org/10.1016/0005-1098(84)90026-8 +Jan Lunze,Qualitative modelling of linear dynamical systems with quantized state measurements.,1994,30,Automatica,3,db/journals/automatica/automatica30.html#Lunze94,https://doi.org/10.1016/0005-1098(94)90119-8 +Yuxin Su,"Comment on ""Robust and adaptive variable structure output feedback control of uncertain systems with input nonlinearity"" [Automatica 44 (2008) 552-559].",2015,58,Automatica,,db/journals/automatica/automatica58.html#Su15a,https://doi.org/10.1016/j.automatica.2015.05.017 +Gianmaria De Tommasi,Nonlinear dynamic allocator for optimal input/output performance trade-off: Application to the JET tokamak shape controller.,2011,47,Automatica,5,db/journals/automatica/automatica47.html#TommasiGPVZ11,https://doi.org/10.1016/j.automatica.2011.01.080 +Li Yu,Robust memoryless H∞ controller design for linear time-delay systems with norm-bounded time-varying uncertainty.,1996,32,Automatica,12,db/journals/automatica/automatica32.html#YuCS96,https://doi.org/10.1016/S0005-1098(96)80016-1 +Stephen A. Billings,Electric arc furnace modelling and control.,1979,15,Automatica,2,db/journals/automatica/automatica15.html#BillingsBN79,https://doi.org/10.1016/0005-1098(79)90065-7 +Mario Milanese,Robust performances control design for a high accuracy calibration device.,1993,29,Automatica,1,db/journals/automatica/automatica29.html#MilaneseFM93,https://doi.org/10.1016/0005-1098(93)90178-V +Tsuneo Yoshikawa,Steering law for roof type configuration control moment gyro system.,1977,13,Automatica,4,db/journals/automatica/automatica13.html#Yoshikawa77,https://doi.org/10.1016/0005-1098(77)90018-8 +Lei Wang 0059,High-gain observers with limited gain power for systems with observability canonical form.,2017,75,Automatica,,db/journals/automatica/automatica75.html#WangAMS17,https://doi.org/10.1016/j.automatica.2016.09.006 +Mario Sznaier,Open-loop worst-case identification of nonSchur plants.,2003,39,Automatica,6,db/journals/automatica/automatica39.html#SznaierMC03,https://doi.org/10.1016/S0005-1098(03)00061-X +W. L. Chen,A Lyapunov robustness bound for linear systems with periodic uncertainties.,1991,27,Automatica,3,db/journals/automatica/automatica27.html#ChenG91,https://doi.org/10.1016/0005-1098(91)90113-G +Mohammad Mostafa Asheghan,Stability analysis and robust control of heart beat rate during treadmill exercise.,2016,63,Automatica,,db/journals/automatica/automatica63.html#AsheghanM16,https://doi.org/10.1016/j.automatica.2015.10.027 +Antonio Sala 0001,Integrating virtual reference feedback tuning into a unified closed-loop identification framework.,2007,43,Automatica,1,db/journals/automatica/automatica43.html#Sala07,https://doi.org/10.1016/j.automatica.2006.08.005 +Duan Li 0002,Reachability determination in acyclic Petri nets by cell enumeration approach.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#LiSGGZ11,https://doi.org/10.1016/j.automatica.2011.06.017 +Dong-Soo Choi,A phase-plane approach to time-optimal control of single-DOF mechanical systems with friction.,2003,39,Automatica,8,db/journals/automatica/automatica39.html#ChoiKH03,https://doi.org/10.1016/S0005-1098(03)00112-2 +Baocang Ding,Stabilization of linear systems over networks with bounded packet loss and its use in model predictive control.,2011,47,Automatica,11,db/journals/automatica/automatica47.html#Ding11,https://doi.org/10.1016/j.automatica.2011.08.038 +Nicolás Espitia,Event-based control of linear hyperbolic systems of conservation laws.,2016,70,Automatica,,db/journals/automatica/automatica70.html#EspitiaGMP16,https://doi.org/10.1016/j.automatica.2016.04.009 +Masayuki Fujita,Integrity against arbitrary feedback-loop failure in linear multivariable control systems.,1988,24,Automatica,6,db/journals/automatica/automatica24.html#FujitaS88,https://doi.org/10.1016/0005-1098(88)90052-0 +Mo Jamshidi,Problems of automatic control education in developing countries.,1979,15,Automatica,1,db/journals/automatica/automatica15.html#JamshidiMV79,https://doi.org/10.1016/0005-1098(79)90093-1 +Helmut Bittner,Flat-earth guidance law using inflight vehicle parameter identification.,1976,12,Automatica,5,db/journals/automatica/automatica12.html#Bittner76,https://doi.org/10.1016/0005-1098(76)90004-2 +B. Tamm,International symposium on software for computer control - 1976.,1977,13,Automatica,3,db/journals/automatica/automatica13.html#Tamm77,https://doi.org/10.1016/0005-1098(77)90062-0 +Yanlong Zhao,Identification of Wiener systems with binary-valued output observations.,2007,43,Automatica,10,db/journals/automatica/automatica43.html#ZhaoWYZ07,https://doi.org/10.1016/j.automatica.2007.03.006 +Yu Feng,Comprehensive admissibility for descriptor systems.,2016,66,Automatica,,db/journals/automatica/automatica66.html#FengY16,https://doi.org/10.1016/j.automatica.2016.01.028 +Louis Wehenkel,Inductive inference applied to on-line transient stability assessment of electric power systems.,1989,25,Automatica,3,db/journals/automatica/automatica25.html#WehenkelCR89,https://doi.org/10.1016/0005-1098(89)90014-9 +Maurizio Porfiri,Tracking and formation control of multiple autonomous agents: A two-level consensus approach.,2007,43,Automatica,8,db/journals/automatica/automatica43.html#PorfiriRS07,https://doi.org/10.1016/j.automatica.2007.01.004 +Anekal B. Sripad,Performance degradation in digitally implemented optimal regulators using fixed-point arithmetic.,1982,18,Automatica,3,db/journals/automatica/automatica18.html#Sripad82,https://doi.org/10.1016/0005-1098(82)90097-8 +Alireza Esna Ashari,Application of matrix perturbation theory in robust control of large-scale systems.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#AshariL12,https://doi.org/10.1016/j.automatica.2012.05.061 +Hartmut Logemann,Multivariable feedback design : J. M. Maciejowski.,1991,27,Automatica,5,db/journals/automatica/automatica27.html#Logemann91a,https://doi.org/10.1016/0005-1098(91)90048-7 +Bernard Brogliato,Global tracking controllers for flexible-joint manipulators: a comparative study.,1995,31,Automatica,7,db/journals/automatica/automatica31.html#BrogliatoOL95,https://doi.org/10.1016/0005-1098(94)00172-F +Tae-Hyoung Kim,Cooperative control for target-capturing task based on a cyclic pursuit strategy.,2007,43,Automatica,8,db/journals/automatica/automatica43.html#KimS07,https://doi.org/10.1016/j.automatica.2007.01.018 +Ole B. Gjøsæter,On the use of diagonal control versus decoupling for ill-conditioned processes.,1997,33,Automatica,3,db/journals/automatica/automatica33.html#GjosaeterF97,https://doi.org/10.1016/S0005-1098(96)00170-7 +Yuemei Qin,Minimum upper-bound filter of Markovian jump linear systems with generalized unknown disturbances.,2016,73,Automatica,,db/journals/automatica/automatica73.html#QinLYPY16,https://doi.org/10.1016/j.automatica.2016.07.013 +Alessandro Casavola,A fast ellipsoidal MPC scheme for discrete-time polytopic linear parameter varying systems.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#CasavolaFFG12,https://doi.org/10.1016/j.automatica.2012.06.065 +Yoshio Ebihara,On the structure of generalized plant convexifying static H∞ control problems.,2014,50,Automatica,6,db/journals/automatica/automatica50.html#EbiharaPA14,https://doi.org/10.1016/j.automatica.2014.04.027 +Hassan Omran,Stability analysis of some classes of input-affine nonlinear systems with aperiodic sampled-data control.,2016,70,Automatica,,db/journals/automatica/automatica70.html#OmranHPRL16,https://doi.org/10.1016/j.automatica.2016.02.013 +Wenjun Xiong,Iterative learning control for discrete-time systems with event-triggered transmission strategy and quantization.,2016,72,Automatica,,db/journals/automatica/automatica72.html#XiongYPY16,https://doi.org/10.1016/j.automatica.2016.05.031 +M. A. Lohe,Synchronization control in networks with uniform and distributed phase lag.,2015,54,Automatica,,db/journals/automatica/automatica54.html#Lohe15,https://doi.org/10.1016/j.automatica.2015.01.034 +Graeme Ashford,Time-varying affine feedback for reach control on simplices.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#AshfordB13,https://doi.org/10.1016/j.automatica.2013.02.032 +Hongbo Li,A network-bound-dependent stabilization method of networked control systems.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#LiYSX13,https://doi.org/10.1016/j.automatica.2013.04.032 +Weidong Zhang 0004,Quantitative performance design for integrating processes with time delay.,1999,35,Automatica,4,db/journals/automatica/automatica35.html#ZhangXS99,https://doi.org/10.1016/S0005-1098(98)00207-6 +Chien-Chern Cheah,Adaptive Jacobian vision based control for robots with uncertain depth information.,2010,46,Automatica,7,db/journals/automatica/automatica46.html#CheahLS10,https://doi.org/10.1016/j.automatica.2010.04.009 +Tuhin Das,Exponential stabilization of the rolling sphere.,2004,40,Automatica,11,db/journals/automatica/automatica40.html#DasM04,https://doi.org/10.1016/j.automatica.2004.06.003 +Carl N. Nett,An explicit formula and an optimal weight for the 2-block structured singular value interaction measure.,1988,24,Automatica,2,db/journals/automatica/automatica24.html#NettU88,https://doi.org/10.1016/0005-1098(88)90036-2 +Taek Lyul Song,Smoothing innovations and data association with IPDA.,2012,48,Automatica,7,db/journals/automatica/automatica48.html#SongM12,https://doi.org/10.1016/j.automatica.2012.04.001 +Antonio Loría,Explicit convergence rates for MRAC-type systems.,2004,40,Automatica,8,db/journals/automatica/automatica40.html#Loria04,https://doi.org/10.1016/j.automatica.2004.04.004 +M. C. Tsai,Pole-zero cancellations and closed-loop properties of an H∞ mixed sensitivity design problem.,1992,28,Automatica,3,db/journals/automatica/automatica28.html#TsaiGP92,https://doi.org/10.1016/0005-1098(92)90176-G +Wei Xing Zheng,Identification of stochastic time lag systems in the presence of colored noise.,1990,26,Automatica,4,db/journals/automatica/automatica26.html#ZhengF90,https://doi.org/10.1016/0005-1098(90)90052-J +J. E. Cooling,Real-time interfacing: Engineering aspects of microprocessor peripheral systems.,1988,24,Automatica,2,db/journals/automatica/automatica24.html#Cooling88,https://doi.org/10.1016/0005-1098(88)90045-3 +Xianghua Wang,A novel sliding mode observer for state and fault estimation in systems not satisfying matching and minimum phase conditions.,2017,79,Automatica,,db/journals/automatica/automatica79.html#WangTZ17,https://doi.org/10.1016/j.automatica.2017.01.027 +Vimal Singh,"Author's reply to ""Comments on 'Modified criterion for global asymptotic stability of fixed-point state-space digital filters using two's complement arithmetic [Automatica 46 (2010) 475-478]'"".",2010,46,Automatica,11,db/journals/automatica/automatica46.html#Singh10a,https://doi.org/10.1016/j.automatica.2010.08.015 +Qing-Long Han,On stability of linear neutral systems with mixed time delays: A discretized Lyapunov functional approach.,2005,41,Automatica,7,db/journals/automatica/automatica41.html#Han05,https://doi.org/10.1016/j.automatica.2005.01.014 +Guoxiang Gu,A class of algorithms for identification in H∞.,1992,28,Automatica,2,db/journals/automatica/automatica28.html#GuK92,https://doi.org/10.1016/0005-1098(92)90117-X +Kostas J. Kyriakopoulos,Distance estimation and collision prediction for on-line robotic motion planning.,1992,28,Automatica,2,db/journals/automatica/automatica28.html#KyriakopoulosS92,https://doi.org/10.1016/0005-1098(92)90124-X +Abdelkader Abdessameud,Distributed output regulation of heterogeneous linear multi-agent systems with communication constraints.,2018,91,Automatica,,db/journals/automatica/automatica91.html#AbdessameudT18,https://doi.org/10.1016/j.automatica.2018.01.020 +Gianni Ferretti,Recursive estimation of time delay in sampled systems.,1991,27,Automatica,4,db/journals/automatica/automatica27.html#FerrettiMS91,https://doi.org/10.1016/0005-1098(91)90056-8 +Zdzislaw Kowalczuk,Finite register length issue in the digital implementation of discrete PID algorithms.,1989,25,Automatica,3,db/journals/automatica/automatica25.html#Kowalczuk89,https://doi.org/10.1016/0005-1098(89)90007-1 +Mattias Nordin,Controlling mechanical systems with backlash - a survey.,2002,38,Automatica,10,db/journals/automatica/automatica38.html#NordinG02,https://doi.org/10.1016/S0005-1098(02)00047-X +Alain Yetendje,Multisensor fusion fault tolerant control.,2011,47,Automatica,7,db/journals/automatica/automatica47.html#YetendjeDS11,https://doi.org/10.1016/j.automatica.2011.02.024 +Patricio Torres,PO-MOESP subspace identification of Directed Acyclic Graphs with unknown topology.,2015,53,Automatica,,db/journals/automatica/automatica53.html#TorresWV15,https://doi.org/10.1016/j.automatica.2014.12.020 +Deyuan Meng,Uniform convergence for signed networks under directed switching topologies.,2018,90,Automatica,,db/journals/automatica/automatica90.html#MengMH18,https://doi.org/10.1016/j.automatica.2017.12.028 +Xiang Li,Iterative learning impedance control for rehabilitation robots driven by series elastic actuators.,2018,90,Automatica,,db/journals/automatica/automatica90.html#LiLY18,https://doi.org/10.1016/j.automatica.2017.12.031 +Jesus Leyva-Ramos,Output feedback stabilizing controller for time-delay systems.,2000,36,Automatica,4,db/journals/automatica/automatica36.html#Leyva-RamosP00,https://doi.org/10.1016/S0005-1098(99)00150-8 +Shun Li,Stabilization of the Euler-Bernoulli plate with variable coefficients by nonlinear internal feedback.,2014,50,Automatica,9,db/journals/automatica/automatica50.html#LiY14,https://doi.org/10.1016/j.automatica.2014.07.010 +Chengpu Yu,Blind multivariable ARMA subspace identification.,2016,66,Automatica,,db/journals/automatica/automatica66.html#YuV16,https://doi.org/10.1016/j.automatica.2015.12.005 +Marko Tanaskovic,Adaptive receding horizon control for constrained MIMO systems.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#TanaskovicFSM14,https://doi.org/10.1016/j.automatica.2014.10.036 +Boris T. Polyak,Large deviations for non-zero initial conditions in linear systems.,2016,74,Automatica,,db/journals/automatica/automatica74.html#PolyakS16,https://doi.org/10.1016/j.automatica.2016.07.047 +Wei Zhang 0013,Exponential stabilization of discrete-time switched linear systems.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#ZhangAHV09,https://doi.org/10.1016/j.automatica.2009.07.018 +Gang Feng 0001,Stability of input amplitude constrained adaptive pole placement control systems.,1994,30,Automatica,6,db/journals/automatica/automatica30.html#FengZP94,https://doi.org/10.1016/0005-1098(94)90202-X +Martin W. Schwartz,Model identification using tie line power and frequency measurements.,1976,12,Automatica,1,db/journals/automatica/automatica12.html#SchwartzPS76,https://doi.org/10.1016/0005-1098(76)90065-0 +Alexey V. Egorov,Necessary and sufficient stability conditions for linear systems with pointwise and distributed delays.,2017,80,Automatica,,db/journals/automatica/automatica80.html#EgorovCM17,https://doi.org/10.1016/j.automatica.2017.02.034 +Xu Wang 0005,Further results on the disturbance response of a double integrator controlled by a saturating linear static state feedback.,2012,48,Automatica,2,db/journals/automatica/automatica48.html#WangSSG12,https://doi.org/10.1016/j.automatica.2011.07.015 +Guo-Hua Wu,Robust controller design based on simplified triangular model.,1998,34,Automatica,3,db/journals/automatica/automatica34.html#WuXZ98,https://doi.org/10.1016/S0005-1098(97)00162-3 +W. R. Cluett,Robust design of adaptive control systems using conic sector theory.,1987,23,Automatica,2,db/journals/automatica/automatica23.html#CluettSF87,https://doi.org/10.1016/0005-1098(87)90095-1 +Andrey V. Savkin,Fixed-order robust filtering for linear uncertain systems.,1997,33,Automatica,2,db/journals/automatica/automatica33.html#SavkinP97,https://doi.org/10.1016/S0005-1098(96)00157-4 +Hisakazu Nakamura,étale backstepping for control Lyapunov function design on manifold.,2017,83,Automatica,,db/journals/automatica/automatica83.html#NakamuraS17,https://doi.org/10.1016/j.automatica.2017.05.010 +Viorel Barbu,Exponential stabilization of the linearized Navier-Stokes equation by pointwise feedback noise controllers.,2010,46,Automatica,12,db/journals/automatica/automatica46.html#Barbu10,https://doi.org/10.1016/j.automatica.2010.08.013 +Yuzhen Wang,A matrix approach to graph maximum stable set and coloring problems with application to multi-agent systems.,2012,48,Automatica,7,db/journals/automatica/automatica48.html#WangZL12,https://doi.org/10.1016/j.automatica.2012.03.024 +Tianping Zhang,Adaptive neural dynamic surface control of strict-feedback nonlinear systems with full state constraints and unmodeled dynamics.,2017,81,Automatica,,db/journals/automatica/automatica81.html#ZhangXY17,https://doi.org/10.1016/j.automatica.2017.03.033 +Karanjit Kalsi,Sliding-mode observers for systems with unknown inputs: A high-gain approach.,2010,46,Automatica,2,db/journals/automatica/automatica46.html#KalsiLHZ10,https://doi.org/10.1016/j.automatica.2009.10.040 +Kathryn E. Lenz,Frequency domain analysis and robust control design for an ideal flexible beam.,1991,27,Automatica,6,db/journals/automatica/automatica27.html#LenzOTTM91,https://doi.org/10.1016/0005-1098(91)90130-T +Denis V. Efimov,Delayed sliding mode control.,2016,64,Automatica,,db/journals/automatica/automatica64.html#EfimovPFPR16,https://doi.org/10.1016/j.automatica.2015.10.055 +T. H. Thomas,Performance of a digital two-term controller.,1969,5,Automatica,1,db/journals/automatica/automatica5.html#ThomasH69,https://doi.org/10.1016/0005-1098(69)90057-0 +Suiyang Khoo,Finite-time stabilization of stochastic nonlinear systems in strict-feedback form.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#KhooYMY13,https://doi.org/10.1016/j.automatica.2013.01.054 +Diederich Hinrichsen,An algorithm for the computation of the structured complex stability radius.,1989,25,Automatica,5,db/journals/automatica/automatica25.html#HinrichsenKL89,https://doi.org/10.1016/0005-1098(89)90034-4 +Huong Ha,Useful redundancy in parameter and time delay estimation for continuous-time models.,2018,95,Automatica,,db/journals/automatica/automatica95.html#HaWA18,https://doi.org/10.1016/j.automatica.2018.06.023 +Musheng Wei,Pole assignment in the regular row-by-row decoupling problem.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#WeiS13,https://doi.org/10.1016/j.automatica.2012.11.008 +Sarangapani Jagannathan,Identification of nonlinear dynamical systems using multilayered neural networks.,1996,32,Automatica,12,db/journals/automatica/automatica32.html#JagannathanL96a,https://doi.org/10.1016/S0005-1098(96)80007-0 +Francisco J. Vargas,Stabilization of two-input two-output systems over SNR-constrained channels.,2013,49,Automatica,10,db/journals/automatica/automatica49.html#VargasSC13,https://doi.org/10.1016/j.automatica.2013.07.031 +Ricardo C. L. F. Oliveira,Time-varying discrete-time linear systems with bounded rates of variation: Stability analysis and control design.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#OliveiraP09,https://doi.org/10.1016/j.automatica.2009.07.015 +Bill Goodwine,Multi-agent compositional stability exploiting system symmetries.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#GoodwineA13,https://doi.org/10.1016/j.automatica.2013.07.003 +Pingyuan Cui,Trajectory curvature guidance for Mars landings in hazardous terrains.,2018,93,Automatica,,db/journals/automatica/automatica93.html#CuiQZLXY18,https://doi.org/10.1016/j.automatica.2018.03.049 +Zhihua Qu,Robust control of nonlinear uncertain systems under generalized matching conditions.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#Qu93,https://doi.org/10.1016/0005-1098(93)90101-X +Karl Rieger,On the observability of discrete-time dynamic systems - A geometric approach.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#RiegerSH08,https://doi.org/10.1016/j.automatica.2007.11.007 +Masayuki Sato,Inverse system design for LPV systems using parameter-dependent Lyapunov functions.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#Sato08,https://doi.org/10.1016/j.automatica.2007.08.013 +Vinay Kariwala,Integrity of systems under decentralized integral control.,2005,41,Automatica,9,db/journals/automatica/automatica41.html#KariwalaFM05,https://doi.org/10.1016/j.automatica.2005.03.024 +Rama K. Yedavalli,H∞ Control with regional stability constraints.,1995,31,Automatica,4,db/journals/automatica/automatica31.html#YedavalliL95,https://doi.org/10.1016/0005-1098(95)98491-N +Vassilios Petridis,A Multi-model Algorithm for Parameter Estimation of Time-varying Nonlinear Systems.,1998,34,Automatica,4,db/journals/automatica/automatica34.html#PetridisK98,https://doi.org/10.1016/S0005-1098(97)00203-3 +B. Ding,Constrained robust model predictive control via parameter-dependent dynamic output feedback.,2010,46,Automatica,9,db/journals/automatica/automatica46.html#Ding10,https://doi.org/10.1016/j.automatica.2010.06.014 +George Gatt,Identification of discrete-time state affine state space models using cumulants.,2002,38,Automatica,10,db/journals/automatica/automatica38.html#GattK02,https://doi.org/10.1016/S0005-1098(02)00075-4 +Vasile Dragan,Optimal filtering for a class of linear Itô stochastic systems: The dichotomic case.,2018,90,Automatica,,db/journals/automatica/automatica90.html#DraganAP18,https://doi.org/10.1016/j.automatica.2017.12.025 +Gabriele Oliva,Sparse and distributed Analytic Hierarchy Process.,2017,85,Automatica,,db/journals/automatica/automatica85.html#OlivaSS17,https://doi.org/10.1016/j.automatica.2017.07.051 +Hamid Maarouf,The resolution of the equation XA+XBX=HX and the pole assignment problem: A general approach.,2017,79,Automatica,,db/journals/automatica/automatica79.html#Maarouf17,https://doi.org/10.1016/j.automatica.2017.01.024 +Anton Selivanov,Predictor-based networked control under uncertain transmission delays.,2016,70,Automatica,,db/journals/automatica/automatica70.html#SelivanovF16a,https://doi.org/10.1016/j.automatica.2016.03.032 +Changbin Brad Yu,Cluster synchronization in directed networks of partial-state coupled linear systems under pinning control.,2014,50,Automatica,9,db/journals/automatica/automatica50.html#YuQG14,https://doi.org/10.1016/j.automatica.2014.07.013 +Jian-Xin Xu 0001,Synthesized sliding mode and time-delay control for a class of uncertain systems.,2000,36,Automatica,12,db/journals/automatica/automatica36.html#XuC00,https://doi.org/10.1016/S0005-1098(00)00110-2 +Jérémy Vayssettes,New developments for matrix fraction descriptions: A fully-parametrised approach.,2016,66,Automatica,,db/journals/automatica/automatica66.html#VayssettesMP16,https://doi.org/10.1016/j.automatica.2015.12.002 +Jun-ichi Imura,A Hamilton-Jacobi inequality approach to the strict H∞ control problem of nonlinear systems.,1996,32,Automatica,4,db/journals/automatica/automatica32.html#ImuraSY96,https://doi.org/10.1016/0005-1098(95)00182-4 +Riccardo Marino,Observer-based adaptive stabilization for a class of non-linear systems.,1992,28,Automatica,4,db/journals/automatica/automatica28.html#MarinoT92,https://doi.org/10.1016/0005-1098(92)90038-H +Denis V. Efimov,Actuator fault detection and compensation under feedback control.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#EfimovZR11,https://doi.org/10.1016/j.automatica.2011.02.043 +Raymond Gorez,New design relations for 2-DOF PID-like control systems.,2003,39,Automatica,5,db/journals/automatica/automatica39.html#Gorez03,https://doi.org/10.1016/S0005-1098(03)00029-3 +Giovanni B. Di Masi,Design of an L.Q.G. controller for single point moored large tankers.,1986,22,Automatica,2,db/journals/automatica/automatica22.html#MasiFP86,https://doi.org/10.1016/0005-1098(86)90077-4 +David A. Copp,Simultaneous nonlinear model predictive control and state estimation.,2017,77,Automatica,,db/journals/automatica/automatica77.html#CoppH17,https://doi.org/10.1016/j.automatica.2016.11.041 +Ming-Li Chiang,Adaptive stabilization of a class of uncertain switched nonlinear systems with backstepping control.,2014,50,Automatica,8,db/journals/automatica/automatica50.html#ChiangF14,https://doi.org/10.1016/j.automatica.2014.05.029 +Ravi K. Prasanth,Two-Sided Tangential Interpolation with Real Rational Units in H∞.,1998,34,Automatica,7,db/journals/automatica/automatica34.html#Prasanth98,https://doi.org/10.1016/S0005-1098(98)00030-2 +Bernardino Castillo-Toledo,Discrete time sliding mode control with application to induction motors.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#Castillo-ToledoGLR08,https://doi.org/10.1016/j.automatica.2008.05.009 +Mrdjan Jankovic,Recursive predictor design for state and output feedback controllers for linear time delay systems.,2010,46,Automatica,3,db/journals/automatica/automatica46.html#Jankovic10,https://doi.org/10.1016/j.automatica.2010.01.021 +Do Wan Kim,Further refinement on controller design for linear systems with input saturation.,2017,77,Automatica,,db/journals/automatica/automatica77.html#Kim17,https://doi.org/10.1016/j.automatica.2016.11.004 +Duzhi Wu,A new approximate algorithm for the Chebyshev center.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#WuZH13,https://doi.org/10.1016/j.automatica.2013.04.029 +Manas Mejari,A bias-correction method for closed-loop identification of Linear Parameter-Varying systems.,2018,87,Automatica,,db/journals/automatica/automatica87.html#MejariPB18,https://doi.org/10.1016/j.automatica.2017.09.014 +Bin Zhou 0001,Input delay compensation for neutral type time-delay systems.,2017,78,Automatica,,db/journals/automatica/automatica78.html#ZhouL17,https://doi.org/10.1016/j.automatica.2016.12.015 +Lin Tie,On controllability and near-controllability of discrete-time inhomogeneous bilinear systems without drift.,2014,50,Automatica,7,db/journals/automatica/automatica50.html#Tie14,https://doi.org/10.1016/j.automatica.2014.05.016 +P. M. Mäkilä,Squared and absolute errors in optimal approximation of nonlinear systems.,2003,39,Automatica,11,db/journals/automatica/automatica39.html#Makila03,https://doi.org/10.1016/S0005-1098(03)00200-0 +Y.-S. Zhong,Globally stable adaptive system design for minimum phase SISO plants with input saturation.,2005,41,Automatica,9,db/journals/automatica/automatica41.html#Zhong05a,https://doi.org/10.1016/j.automatica.2005.02.009 +Eduardo F. Costa,Gain scheduled controllers for dynamic systems using sector nonlinearities.,2002,38,Automatica,7,db/journals/automatica/automatica38.html#CostaO02,https://doi.org/10.1016/S0005-1098(02)00007-9 +Iman Izadi,Norm invariant discretization for sampled-data fault detection.,2005,41,Automatica,9,db/journals/automatica/automatica41.html#IzadiCZ05,https://doi.org/10.1016/j.automatica.2005.03.028 +Jamie S. Evans,Image-enhanced multiple model tracking.,1999,35,Automatica,11,db/journals/automatica/automatica35.html#EvansE99,https://doi.org/10.1016/S0005-1098(99)00086-2 +Milan Korda,Linear predictors for nonlinear dynamical systems: Koopman operator meets model predictive control.,2018,93,Automatica,,db/journals/automatica/automatica93.html#KordaM18,https://doi.org/10.1016/j.automatica.2018.03.046 +Tong Zhou,Nonparametric estimation for normalized coprime factors of a MIMO system.,2005,41,Automatica,4,db/journals/automatica/automatica41.html#Zhou05,https://doi.org/10.1016/j.automatica.2004.10.014 +Franco Blanchini,A minimum-time control strategy for torque tracking in permanent magnet AC motor drives.,2007,43,Automatica,3,db/journals/automatica/automatica43.html#BlanchiniMTTVZ07,https://doi.org/10.1016/j.automatica.2006.09.014 +,Boris Nikolaevich Petrov 1913-1980.,1981,17,Automatica,4,db/journals/automatica/automatica17.html#X81,https://doi.org/10.1016/0005-1098(81)90027-3 +Yi-Chin Wu,Synthesis of insertion functions for enforcement of opacity security properties.,2014,50,Automatica,5,db/journals/automatica/automatica50.html#WuL14,https://doi.org/10.1016/j.automatica.2014.02.038 +Leopoldo Jetto,Assigning closed-loop invariant polynomials over polytopes for linear periodic systems.,1999,35,Automatica,1,db/journals/automatica/automatica35.html#JettoL99,https://doi.org/10.1016/S0005-1098(98)00122-8 +Mihailo R. Jovanovic,I norm of linear time-periodic systems: A perturbation analysis.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#JovanovicF08,https://doi.org/10.1016/j.automatica.2007.12.015 +João Yoshiyuki Ishihara,The full information and state feedback H2 optimal controllers for descriptor systems.,2003,39,Automatica,3,db/journals/automatica/automatica39.html#IshiharaTS03,https://doi.org/10.1016/S0005-1098(02)00243-1 +Lijuan Shen,Approximate controllability of stochastic impulsive functional systems with infinite delay.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#ShenS12,https://doi.org/10.1016/j.automatica.2012.06.098 +S. M. Bozic,Digital processing of signals: Maurice Bellanger.,1986,22,Automatica,2,db/journals/automatica/automatica22.html#Bozic86,https://doi.org/10.1016/0005-1098(86)90091-9 +Cishen Zhang,Analysis of H2 and H∞ performance of discrete periodically time-varying controllers.,1997,33,Automatica,4,db/journals/automatica/automatica33.html#ZhangZF97,https://doi.org/10.1016/S0005-1098(96)00224-5 +Wu-Hua Chen,Delay-independent stabilization of a class of time-delay systems via periodically intermittent control.,2016,71,Automatica,,db/journals/automatica/automatica71.html#ChenZZ16,https://doi.org/10.1016/j.automatica.2016.04.031 +Jozsef Bokor,Approximate Identification in Laguerre and Kautz Bases.,1998,34,Automatica,4,db/journals/automatica/automatica34.html#BokorS98,https://doi.org/10.1016/S0005-1098(97)00201-X +John B. Moore,Robust frequency-shaped LQ control.,1987,23,Automatica,5,db/journals/automatica/automatica23.html#MooreM87,https://doi.org/10.1016/0005-1098(87)90060-4 +Adriaan van den Bos,A class of small sample nonlinear least squares problems.,1980,16,Automatica,5,db/journals/automatica/automatica16.html#Bos80,https://doi.org/10.1016/0005-1098(80)90069-2 +Ioan Doré Landau,Adaptive narrow band disturbance rejection applied to an active suspension - an internal model principle approach.,2005,41,Automatica,4,db/journals/automatica/automatica41.html#LandauCR05,https://doi.org/10.1016/j.automatica.2004.08.022 +Margreet Kuijper,A periodically time-varying minimal partial realization algorithm based on twisting.,1999,35,Automatica,9,db/journals/automatica/automatica35.html#Kuijper99,https://doi.org/10.1016/S0005-1098(99)00064-3 +Derui Ding,Distributed H∞ state estimation with stochastic parameters and nonlinearities through sensor networks: The finite-horizon case.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#DingWDS12,https://doi.org/10.1016/j.automatica.2012.05.070 +Young Il Lee,Extended invariance and its use in model predictive control.,2005,41,Automatica,12,db/journals/automatica/automatica41.html#LeeCK05,https://doi.org/10.1016/j.automatica.2005.07.012 +Ahmet Cetinkaya,Feedback control of switched stochastic systems using randomly available active mode information.,2015,52,Automatica,,db/journals/automatica/automatica52.html#CetinkayaH15,https://doi.org/10.1016/j.automatica.2014.10.122 +Stephen J. Kahne,Comments on round tables.,1979,15,Automatica,3,db/journals/automatica/automatica15.html#Kahne79,https://doi.org/10.1016/0005-1098(79)90059-1 +Tor Steinar Schei,Automatic tuning of PID controllers based on transfer function estimation.,1994,30,Automatica,12,db/journals/automatica/automatica30.html#Schei94,https://doi.org/10.1016/0005-1098(94)90060-4 +Sheida Ghapani,Distributed average tracking for double-integrator multi-agent systems with reduced requirement on velocity measurements.,2017,81,Automatica,,db/journals/automatica/automatica81.html#GhapaniRCS17,https://doi.org/10.1016/j.automatica.2017.02.043 +Vladimír Kucera,FIFO stable control systems.,1995,31,Automatica,4,db/journals/automatica/automatica31.html#KuceraK95,https://doi.org/10.1016/0005-1098(95)98490-W +George S. Axelby,The 100th issue.,1985,21,Automatica,4,db/journals/automatica/automatica21.html#Axelby85,https://doi.org/10.1016/0005-1098(85)90071-8 +Konstantinos Gatsis,Random access design for wireless control systems.,2018,91,Automatica,,db/journals/automatica/automatica91.html#GatsisRP18,https://doi.org/10.1016/j.automatica.2018.01.021 +Niels Rode Kristensen,Parameter estimation in stochastic grey-box models.,2004,40,Automatica,2,db/journals/automatica/automatica40.html#KristensenMJ04,https://doi.org/10.1016/j.automatica.2003.10.001 +Jian-Xin Xu 0001,On the P-type and Newton-type ILC schemes for dynamic systems with non-affine-in-input factors.,2002,38,Automatica,7,db/journals/automatica/automatica38.html#XuT02,https://doi.org/10.1016/S0005-1098(02)00021-3 +Zalman J. Palmor,On the recovery procedure for LQG systems.,1988,24,Automatica,2,db/journals/automatica/automatica24.html#PalmorH88,https://doi.org/10.1016/0005-1098(88)90039-8 +Deyuan Meng,Robust cooperative learning control for directed networks with nonlinear dynamics.,2017,75,Automatica,,db/journals/automatica/automatica75.html#MengM17,https://doi.org/10.1016/j.automatica.2016.09.022 +Guido O. Guardabassi,Structural uncontrollability of sensitivity systems.,1969,5,Automatica,3,db/journals/automatica/automatica5.html#GuardabassiLR69,https://doi.org/10.1016/0005-1098(69)90072-7 +Jean Jacques Loiseau,Pole structure assignment via non-regular static state feedback.,1999,35,Automatica,9,db/journals/automatica/automatica35.html#LoiseauZK99,https://doi.org/10.1016/S0005-1098(99)00065-5 +Corentin Briat,"Corrigendum to ""Convex lifted conditions for robust and#8467*2-stability analysis and and#8467*2-stabilization of linear discrete-time switched systems with minimum dwell-time constraint"" [Automatica 50 (3) (2014) 976-983].",2016,74,Automatica,,db/journals/automatica/automatica74.html#Briat16a,https://doi.org/10.1016/j.automatica.2016.09.007 +Magne Fjeld,Optimal control of multivariable periodic processes.,1969,5,Automatica,4,db/journals/automatica/automatica5.html#Fjeld69,https://doi.org/10.1016/0005-1098(69)90111-3 +Riccardo Marino,A global tracking control for speed-sensorless induction motors.,2004,40,Automatica,6,db/journals/automatica/automatica40.html#MarinoTV04,https://doi.org/10.1016/j.automatica.2004.01.022 +Horacio J. Marquez,Sensitivity of failure detection using generalized observers.,1992,28,Automatica,4,db/journals/automatica/automatica28.html#MarquezD92,https://doi.org/10.1016/0005-1098(92)90047-J +Wen-an Zhang,Optimal linear estimation for networked systems with communication constraints.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#ZhangYF11,https://doi.org/10.1016/j.automatica.2011.05.020 +Er-Wei Bai,Variable gain parameter estimation algorithms for fast tracking and smooth steady state.,2000,36,Automatica,7,db/journals/automatica/automatica36.html#BaiH00,https://doi.org/10.1016/S0005-1098(00)00009-1 +Xingye Zhang,Subsystem identification of multivariable feedback and feedforward systems.,2016,72,Automatica,,db/journals/automatica/automatica72.html#ZhangH16,https://doi.org/10.1016/j.automatica.2016.05.027 +Dragan Nesic,Stability properties of reset systems.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#NesicZT08,https://doi.org/10.1016/j.automatica.2007.11.014 +Ian R. Petersen,Equivalent realizations for uncertain systems with an IQC uncertainty description.,2007,43,Automatica,1,db/journals/automatica/automatica43.html#Petersen07,https://doi.org/10.1016/j.automatica.2006.08.012 +Mario Di Ferdinando,Robustification of sample-and-hold stabilizers for control-affine time-delay systems.,2017,83,Automatica,,db/journals/automatica/automatica83.html#FerdinandoP17,https://doi.org/10.1016/j.automatica.2017.06.029 +Lars Grüne,Continuous-time controller redesign for digital implementation: A trajectory based approach.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#GruneWN08,https://doi.org/10.1016/j.automatica.2007.05.003 +K. J. Aoström,A family of smooth controllers for swinging up a pendulum.,2008,44,Automatica,7,db/journals/automatica/automatica44.html#AostromAG08,https://doi.org/10.1016/j.automatica.2007.10.040 +Fei Chen 0008,On the optimal parameter of the composite Laplacian quadratics function.,2016,72,Automatica,,db/journals/automatica/automatica72.html#ChenF16,https://doi.org/10.1016/j.automatica.2016.05.006 +Jianping He,Accurate clock synchronization in wireless sensor networks with bounded noise.,2017,81,Automatica,,db/journals/automatica/automatica81.html#HeDCSC17,https://doi.org/10.1016/j.automatica.2017.03.009 +Ruth F. Curtain,Coprime factorization for regular linear systems.,1996,32,Automatica,11,db/journals/automatica/automatica32.html#CurtainWW96,https://doi.org/10.1016/S0005-1098(96)00102-1 +Dale B. Cherchas,An optimal control algorithm for nuclear reactor load cycling.,1977,13,Automatica,3,db/journals/automatica/automatica13.html#CherchasL77,https://doi.org/10.1016/0005-1098(77)90054-1 +Bertrand Cottenceau,Model reference control for timed event graphs in dioids.,2001,37,Automatica,9,db/journals/automatica/automatica37.html#CottenceauHBF01,https://doi.org/10.1016/S0005-1098(01)00073-5 +Zhi-Hong Guan,Guaranteed performance consensus in second-order multi-agent systems with hybrid impulsive control.,2014,50,Automatica,9,db/journals/automatica/automatica50.html#GuanHCHC14,https://doi.org/10.1016/j.automatica.2014.07.008 +Corentin Briat,Interval peak-to-peak observers for continuous- and discrete-time systems with persistent inputs and delays.,2016,74,Automatica,,db/journals/automatica/automatica74.html#BriatK16,https://doi.org/10.1016/j.automatica.2016.07.043 +Emiliano Pereira,Adaptive input shaping for manoeuvring flexible structures using an algebraic identification technique.,2009,45,Automatica,4,db/journals/automatica/automatica45.html#PereiraTDF09,https://doi.org/10.1016/j.automatica.2008.11.014 +J. L. Shearer,Committee on components.,1969,5,Automatica,5,db/journals/automatica/automatica5.html#Shearer69,https://doi.org/10.1016/0005-1098(69)90035-1 +Paul M. J. Van den Hof,Call for papers for an Automatica Special Issue on Data-based modelling and system identification.,2003,39,Automatica,12,db/journals/automatica/automatica39.html#Hof03,https://doi.org/10.1016/j.automatica.2003.09.010 +Chung-Yao Kao,Simple stability criteria for systems with time-varying delays.,2004,40,Automatica,8,db/journals/automatica/automatica40.html#KaoL04,https://doi.org/10.1016/j.automatica.2004.03.011 +Marco C. Campi,Non-asymptotic quality assessment of generalised FIR models with periodic inputs.,2004,40,Automatica,12,db/journals/automatica/automatica40.html#CampiOW04,https://doi.org/10.1016/j.automatica.2004.06.020 +S. K. Katti,Comments on 'decentralized control of linear multivariable systems'.,1981,17,Automatica,4,db/journals/automatica/automatica17.html#Katti81,https://doi.org/10.1016/0005-1098(81)90043-1 +Tohru Katayama,Subspace identification of closed loop systems by the orthogonal decomposition method.,2005,41,Automatica,5,db/journals/automatica/automatica41.html#KatayamaKP05,https://doi.org/10.1016/j.automatica.2004.11.026 +Xidong Tang,Adaptive actuator failure compensation for nonlinear MIMO systems with an aircraft control application.,2007,43,Automatica,11,db/journals/automatica/automatica43.html#TangTJ07,https://doi.org/10.1016/j.automatica.2007.03.019 +Limin Guo 0001,Control of hydraulic rotary multi-motor systems based on bilinearization.,1994,30,Automatica,9,db/journals/automatica/automatica30.html#GuoSD94,https://doi.org/10.1016/0005-1098(94)90010-8 +Matthew M. Peet,On the conservatism of the sum-of-squares method for analysis of time-delayed systems.,2011,47,Automatica,11,db/journals/automatica/automatica47.html#PeetB11,https://doi.org/10.1016/j.automatica.2011.08.010 +Qinyuan Liu,Event-triggered resilient filtering with measurement quantization and random sensor failures: Monotonicity and convergence.,2018,94,Automatica,,db/journals/automatica/automatica94.html#LiuWHZ18,https://doi.org/10.1016/j.automatica.2018.03.031 +K. H. You,BIBO stability integral (Linfinity-gain) for second-order systems with numerator dynamics.,2000,36,Automatica,11,db/journals/automatica/automatica36.html#YouL00,https://doi.org/10.1016/S0005-1098(00)00075-3 +C. G. Kim,A model reference adaptive technique of identification for discrete systems.,1981,17,Automatica,4,db/journals/automatica/automatica17.html#KimG81,https://doi.org/10.1016/0005-1098(81)90036-4 +Kwang-Kyo Oh,Formation control of mobile agents based on inter-agent distance dynamics.,2011,47,Automatica,10,db/journals/automatica/automatica47.html#OhA11,https://doi.org/10.1016/j.automatica.2011.08.019 +Tung-Sang Ng,Identifiability of MIMO linear dynamic systems operating in closed loop.,1977,13,Automatica,5,db/journals/automatica/automatica13.html#NgGA77,https://doi.org/10.1016/0005-1098(77)90068-1 +George S. Axelby,Editor's note.,1980,16,Automatica,5,db/journals/automatica/automatica16.html#Axelby80c,https://doi.org/10.1016/0005-1098(80)90072-2 +A. V. Balakrishnan,Identification in automatic control systems.,1969,5,Automatica,6,db/journals/automatica/automatica5.html#BalakrishnanP69,https://doi.org/10.1016/0005-1098(69)90095-8 +Märta Barenthin,Identification for control of multivariable systems: Controller validation and experiment design via LMIs.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#BarenthinBHS08,https://doi.org/10.1016/j.automatica.2008.05.022 +Gürdal Arslan,Disturbance attenuating controller design for strict-feedback systems with structurally unknown dynamics.,2001,37,Automatica,8,db/journals/automatica/automatica37.html#ArslanB01,https://doi.org/10.1016/S0005-1098(01)00071-1 +Alessandro Astolfi,Trading robustness with optimality in nonlinear control.,2001,37,Automatica,12,db/journals/automatica/automatica37.html#AstolfiC01,https://doi.org/10.1016/S0005-1098(01)00152-2 +Harry G. Kwatny,Variable structure control of systems with uncertain nonlinear friction.,2002,38,Automatica,7,db/journals/automatica/automatica38.html#KwatnyTM02,https://doi.org/10.1016/S0005-1098(02)00011-0 +Tomas Menard,Fixed-time observer with simple gains for uncertain systems.,2017,81,Automatica,,db/journals/automatica/automatica81.html#MenardMP17,https://doi.org/10.1016/j.automatica.2017.04.009 +C. Ganesh,H2-optimization with stable controllers.,1989,25,Automatica,4,db/journals/automatica/automatica25.html#GaneshP89,https://doi.org/10.1016/0005-1098(89)90108-8 +Jonathan Blake Vance,Discrete-time neural network output feedback control of nonlinear discrete-time systems in non-strict form.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#VanceJ08,https://doi.org/10.1016/j.automatica.2007.08.008 +Amit Ailon,Output controllers based on iterative schemes for set-point regulation of uncertain flexible-joint robot models.,1996,32,Automatica,10,db/journals/automatica/automatica32.html#Ailon96,https://doi.org/10.1016/0005-1098(96)00087-8 +Ke Le,Sufficient stability conditions for the weighted minimum uncertainty prediction controller.,1997,33,Automatica,12,db/journals/automatica/automatica33.html#LeT97,https://doi.org/10.1016/S0005-1098(97)00153-2 +John Zaborszky,Local feedback stabilization of large interconnected power systems in emergencies.,1981,17,Automatica,5,db/journals/automatica/automatica17.html#ZaborszkyWPK81,https://doi.org/10.1016/0005-1098(81)90015-7 +Miroslav Halás,When retarded nonlinear time-delay systems admit an input-output representation of neutral type.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#HalasA13,https://doi.org/10.1016/j.automatica.2012.11.027 +Masao Ikeda,Optimality of decentralized control for large-scale systems.,1983,19,Automatica,3,db/journals/automatica/automatica19.html#IkedaSY83,https://doi.org/10.1016/0005-1098(83)90109-7 +Ravi Kumar 0004,Design of input shapers using modal cost for multi-mode systems.,2010,46,Automatica,3,db/journals/automatica/automatica46.html#KumarS10,https://doi.org/10.1016/j.automatica.2010.01.016 +Jinglin Zhou,Distribution function tracking filter design using hybrid characteristic functions.,2010,46,Automatica,1,db/journals/automatica/automatica46.html#ZhouZWGC10,https://doi.org/10.1016/j.automatica.2009.09.004 +Andrey Barabanov,On ultimate boundedness around non-assignable equilibria of linear time-invariant systems.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#BarabanovOE08,https://doi.org/10.1016/j.automatica.2007.04.013 +Yulei Wang 0001,Subspace aided data-driven design of robust fault detection and isolation systems.,2011,47,Automatica,11,db/journals/automatica/automatica47.html#WangMDL11,https://doi.org/10.1016/j.automatica.2011.05.028 +Zalman J. Palmor,Robustness properties of sampled-data systems with dead time compensators.,1990,26,Automatica,3,db/journals/automatica/automatica26.html#PalmorH90,https://doi.org/10.1016/0005-1098(90)90040-O +Y. M. Zhang,Control of dynamic keyhole welding process.,2007,43,Automatica,5,db/journals/automatica/automatica43.html#ZhangL07,https://doi.org/10.1016/j.automatica.2006.11.008 +Minh Hoang Trinh,"Comments on ""Global stabilization of rigid formations in the plane [Automatica 49 (2013) 1436-1441]"".",2017,77,Automatica,,db/journals/automatica/automatica77.html#TrinhPPSAA17,https://doi.org/10.1016/j.automatica.2016.11.006 +Jing Wang,Mitigation of complex behavior over networked systems: Analysis of spatially invariant structures.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#WangE13,https://doi.org/10.1016/j.automatica.2013.02.042 +Eloísa García-Canseco,Power-based control of physical systems.,2010,46,Automatica,1,db/journals/automatica/automatica46.html#Garcia-CansecoJOS10,https://doi.org/10.1016/j.automatica.2009.10.012 +P. A. Janakiraman,A new on-line identification method for discrete multivariable linear systems.,1981,17,Automatica,4,db/journals/automatica/automatica17.html#JanakiramanR81,https://doi.org/10.1016/0005-1098(81)90040-6 +Hans-Bernd Dürr,Extremum seeking on submanifolds in the Euclidian space.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#DurrSJE14,https://doi.org/10.1016/j.automatica.2014.08.019 +Lei Liu,Noise suppresses explosive solutions of differential systems with coefficients satisfying the polynomial growth condition.,2012,48,Automatica,4,db/journals/automatica/automatica48.html#LiuS12,https://doi.org/10.1016/j.automatica.2012.01.022 +Chetan D. Pahlajani,Error probability bounds for nuclear detection: Improving accuracy through controlled mobility.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#PahlajaniSPT14,https://doi.org/10.1016/j.automatica.2014.08.025 +Ding Liu,A parameterized liveness and ratio-enforcing supervisor for a class of generalized Petri nets.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#LiuLZ13,https://doi.org/10.1016/j.automatica.2013.07.023 +Luc Pronzato,Minimum-volume ellipsoids containing compact sets : Application to parameter bounding.,1994,30,Automatica,11,db/journals/automatica/automatica30.html#PronzatoW94,https://doi.org/10.1016/0005-1098(94)90075-2 +Ruth F. Curtain,Pole assignment for distributed systems by finite-dimensional control.,1985,21,Automatica,1,db/journals/automatica/automatica21.html#Curtain85,https://doi.org/10.1016/0005-1098(85)90098-6 +Cosimo Greco,Performance improvements of self-tuning controllers by multistep horizons: The MUSMAR approach.,1984,20,Automatica,5,db/journals/automatica/automatica20.html#GrecoMMZ84,https://doi.org/10.1016/0005-1098(84)90018-9 +Mituhiko Araki,Frequency response of sampled-data systems.,1996,32,Automatica,4,db/journals/automatica/automatica32.html#ArakiIH96,https://doi.org/10.1016/0005-1098(95)00162-X +Defeng He,On stability of multiobjective NMPC with objective prioritization.,2015,57,Automatica,,db/journals/automatica/automatica57.html#HeWS15,https://doi.org/10.1016/j.automatica.2015.04.024 +Elena De Santis,Observability and diagnosability of finite state systems: A unifying framework.,2017,81,Automatica,,db/journals/automatica/automatica81.html#SantisB17,https://doi.org/10.1016/j.automatica.2017.02.042 +Zehor Belkhatir,High-order sliding mode observer for fractional commensurate linear systems with unknown input.,2017,82,Automatica,,db/journals/automatica/automatica82.html#BelkhatirL17,https://doi.org/10.1016/j.automatica.2017.04.035 +Zhihua Qu,Robust fault-tolerant self-recovering control of nonlinear uncertain systems.,2003,39,Automatica,10,db/journals/automatica/automatica39.html#QuIJS03,https://doi.org/10.1016/S0005-1098(03)00181-X +Er-Wei Bai,An optimal two-stage identification algorithm for Hammerstein-Wiener nonlinear systems.,1998,34,Automatica,3,db/journals/automatica/automatica34.html#Bai98,https://doi.org/10.1016/S0005-1098(97)00198-2 +Maria Letizia Corradini,A VSC algorithm based on generalized predictive control.,1997,33,Automatica,5,db/journals/automatica/automatica33.html#CorradiniO97,https://doi.org/10.1016/S0005-1098(96)00229-4 +Shaohua Tan,Gain scheduling: from conventional to neuro-fuzzy.,1997,33,Automatica,3,db/journals/automatica/automatica33.html#TanHC97,https://doi.org/10.1016/S0005-1098(96)00162-8 +Mahdi Jalili-Kharaajoo,The Schur stability via the Hurwitz stability analysis using a biquadratic transformation.,2005,41,Automatica,1,db/journals/automatica/automatica41.html#Jalili-KharaajooA05,https://doi.org/10.1016/j.automatica.2004.09.004 +Ashutosh Prasad,Integrated marketing communications in markets with uncertainty and competition.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#PrasadS09,https://doi.org/10.1016/j.automatica.2008.09.018 +George N. Saridis,An automatic surface inspection system for flat rolled steel.,1979,15,Automatica,5,db/journals/automatica/automatica15.html#SaridisB79,https://doi.org/10.1016/0005-1098(79)90001-3 +Ibrahim Kavrakoglu,Models for national energy policy analysis and planning.,1980,16,Automatica,4,db/journals/automatica/automatica16.html#Kavrakoglu80,https://doi.org/10.1016/0005-1098(80)90022-9 +Basil Kouvaritakis,Bicausal representations and multivariable generalized predictive control.,1991,27,Automatica,5,db/journals/automatica/automatica27.html#KouvaritakisR91,https://doi.org/10.1016/0005-1098(91)90036-2 +Nikolaos Athanasopoulos,On stability and stabilization of periodic discrete-time systems with an application to satellite attitude control.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#AthanasopoulosL0A14,https://doi.org/10.1016/j.automatica.2014.10.028 +Sophie Tarbouriech,Ultimate bounded stability and stabilization of linear systems interconnected with generalized saturated functions.,2011,47,Automatica,7,db/journals/automatica/automatica47.html#TarbouriechQAFC11,https://doi.org/10.1016/j.automatica.2011.02.020 +Tae-Yong Kuc,An iterative learning control theory for a class of nonlinear dynamic systems.,1992,28,Automatica,6,db/journals/automatica/automatica28.html#KucLN92,https://doi.org/10.1016/0005-1098(92)90063-L +Hideyuki Tanaka,Minimum phase properties of finite-interval stochastic realization.,2007,43,Automatica,9,db/journals/automatica/automatica43.html#TanakaK07,https://doi.org/10.1016/j.automatica.2007.02.004 +Kenji Fujimoto,Hamiltonian realizations of nonlinear adjoint operators.,2002,38,Automatica,10,db/journals/automatica/automatica38.html#FujimotoSG02,https://doi.org/10.1016/S0005-1098(02)00079-1 +W. P. M. H. Heemels,Equivalence of hybrid dynamical models.,2001,37,Automatica,7,db/journals/automatica/automatica37.html#HeemelsSB01,https://doi.org/10.1016/S0005-1098(01)00059-0 +Guopei Chen,New stability conditions for a class of linear time-varying systems.,2016,71,Automatica,,db/journals/automatica/automatica71.html#ChenY16a,https://doi.org/10.1016/j.automatica.2016.05.005 +Yongcan Cao,Distributed discrete-time coordinated tracking with a time-varying reference state and limited communication.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#CaoRL09,https://doi.org/10.1016/j.automatica.2009.01.018 +Carlos Mosquera,An algorithm for interpolation with positive rational functions on the imaginary axis.,1997,33,Automatica,12,db/journals/automatica/automatica33.html#MosqueraP97,https://doi.org/10.1016/S0005-1098(97)00143-X +Charles E. Rohrs,Some design guidelines for discrete-time adaptive controllers.,1984,20,Automatica,5,db/journals/automatica/automatica20.html#RohrsAVS84,https://doi.org/10.1016/0005-1098(84)90015-3 +Anatoli Juditsky,Nonlinear black-box models in system identification: Mathematical foundations.,1995,31,Automatica,12,db/journals/automatica/automatica31.html#JuditskyHBDLSZ95,https://doi.org/10.1016/0005-1098(95)00119-1 +Xu Zhang 0007,Adaptive output feedback tracking for a class of nonlinear systems.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#ZhangL12a,https://doi.org/10.1016/j.automatica.2012.06.002 +Jan Maciej Kóscielny,Fault isolation in industrial processes by the dynamic table of states method.,1995,31,Automatica,5,db/journals/automatica/automatica31.html#Koscielny95,https://doi.org/10.1016/0005-1098(94)00147-B +Takayuki Wada,Stochastic ellipsoid methods for robust control: Multiple updates and multiple cuts.,2010,46,Automatica,8,db/journals/automatica/automatica46.html#WadaF10,https://doi.org/10.1016/j.automatica.2010.05.008 +Alessandro Casavola,Min-max predictive control strategies for input-saturated polytopic uncertain systems.,2000,36,Automatica,1,db/journals/automatica/automatica36.html#CasavolaGM00,https://doi.org/10.1016/S0005-1098(99)00112-0 +Claudio Carnevale,A multi-objective nonlinear optimization approach to designing effective air quality control policies.,2008,44,Automatica,6,db/journals/automatica/automatica44.html#CarnevalePV08,https://doi.org/10.1016/j.automatica.2008.04.001 +D. Mustafa,Block bialternate sum and associated stability formulae.,1995,31,Automatica,9,db/journals/automatica/automatica31.html#MustafaD95,https://doi.org/10.1016/0005-1098(95)00050-7 +Marco Casini,Efficient computation of and#8467*l uncertainty model from an impulse response set.,2008,44,Automatica,10,db/journals/automatica/automatica44.html#CasiniGV08,https://doi.org/10.1016/j.automatica.2008.02.006 +Sung Wook Yun,H2 control of continuous-time uncertain linear systems with input quantization and matched disturbances.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#YunCP09,https://doi.org/10.1016/j.automatica.2009.05.023 +W. Steven Gray,Balanced realizations near stable invariant manifolds.,2006,42,Automatica,4,db/journals/automatica/automatica42.html#GrayV06,https://doi.org/10.1016/j.automatica.2005.12.007 +David J. Clements,Linear-quadratic discrete-time control and constant directions.,1977,13,Automatica,3,db/journals/automatica/automatica13.html#ClementsA77,https://doi.org/10.1016/0005-1098(77)90052-8 +Yasuaki Oishi,Stability and stabilization of aperiodic sampled-data control systems using robust linear matrix inequalities.,2010,46,Automatica,8,db/journals/automatica/automatica46.html#OishiF10,https://doi.org/10.1016/j.automatica.2010.05.006 +Carlos F. Alcala,Reconstruction-based contribution for process monitoring.,2009,45,Automatica,7,db/journals/automatica/automatica45.html#AlcalaQ09,https://doi.org/10.1016/j.automatica.2009.02.027 +Jiliang Luo,Maximally permissive supervisor synthesis based on a new constraint transformation method.,2012,48,Automatica,6,db/journals/automatica/automatica48.html#LuoSNJ12,https://doi.org/10.1016/j.automatica.2012.02.002 +Yong-Yan Cao,Stability analysis of discrete-time systems with actuator saturation by a saturation-dependent Lyapunov function.,2003,39,Automatica,7,db/journals/automatica/automatica39.html#CaoL03,https://doi.org/10.1016/S0005-1098(03)00072-4 +Xi-Ming Sun,Predictive control of nonlinear continuous networked control systems with large time-varying transmission delays and transmission protocols.,2016,64,Automatica,,db/journals/automatica/automatica64.html#SunLWW16,https://doi.org/10.1016/j.automatica.2015.11.001 +Shan Zuo,Adaptive output containment control of heterogeneous multi-agent systems with unknown leaders.,2018,92,Automatica,,db/journals/automatica/automatica92.html#ZuoSLD18,https://doi.org/10.1016/j.automatica.2018.02.004 +J. Rudolph,Some Examples and Remarks on Quasi-Static Feedback of Generalized States.,1998,34,Automatica,8,db/journals/automatica/automatica34.html#RudolphD98,https://doi.org/10.1016/S0005-1098(98)00047-8 +George S. Axelby,On to new horizons.,1993,29,Automatica,3,db/journals/automatica/automatica29.html#Axelby93b,https://doi.org/10.1016/0005-1098(93)90056-Y +Hisaya Fujioka,Robust tracking with Hinfinit performance for PWM systems.,2009,45,Automatica,8,db/journals/automatica/automatica45.html#FujiokaKAJ09,https://doi.org/10.1016/j.automatica.2009.03.026 +Rahul Jain 0002,An efficient Nash-implementation mechanism for network resource allocation.,2010,46,Automatica,8,db/journals/automatica/automatica46.html#JainW10,https://doi.org/10.1016/j.automatica.2010.05.013 +Bernard Yaged Jr.,Traffic flow information for minimum cost routing procedures.,1969,5,Automatica,2,db/journals/automatica/automatica5.html#Yaged69,https://doi.org/10.1016/0005-1098(69)90010-7 +Tor Aksel N. Heirung,Dual adaptive model predictive control.,2017,80,Automatica,,db/journals/automatica/automatica80.html#HeirungYF17,https://doi.org/10.1016/j.automatica.2017.01.030 +Aleksandar Kojic,Adaptive control of nonlinearly parameterized systems with a triangular structure.,2002,38,Automatica,1,db/journals/automatica/automatica38.html#KojicA02,https://doi.org/10.1016/S0005-1098(01)00173-X +Gianluigi Pillonetto,Solutions of nonlinear control and estimation problems in reproducing kernel Hilbert spaces: Existence and numerical determination.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#Pillonetto08,https://doi.org/10.1016/j.automatica.2007.12.005 +Hakan Köroglu,Scheduled control for robust attenuation of non-stationary sinusoidal disturbances with measurable frequencies.,2011,47,Automatica,3,db/journals/automatica/automatica47.html#KorogluS11,https://doi.org/10.1016/j.automatica.2011.01.017 +J. Tsinias,Global stabilization by output dynamic feedback for triangular systems.,1999,35,Automatica,1,db/journals/automatica/automatica35.html#Tsinias99,https://doi.org/10.1016/S0005-1098(98)00172-1 +Huiping Li,Event-triggered robust model predictive control of continuous-time nonlinear systems.,2014,50,Automatica,5,db/journals/automatica/automatica50.html#LiS14a,https://doi.org/10.1016/j.automatica.2014.03.015 +J. Davidson,Mathematical model for simulation of hierarchically distributed process control computer systems.,1988,24,Automatica,5,db/journals/automatica/automatica24.html#DavidsonH88,https://doi.org/10.1016/0005-1098(88)90115-X +Damián Edgardo Marelli,Distributed weighted least-squares estimation with fast convergence for large-scale systems.,2015,51,Automatica,,db/journals/automatica/automatica51.html#MarelliF15,https://doi.org/10.1016/j.automatica.2014.10.077 +Douglas J. Bender,The linear-quadratic optimal regulator for descriptor systems: Discrete-time case.,1987,23,Automatica,1,db/journals/automatica/automatica23.html#BenderL87,https://doi.org/10.1016/0005-1098(87)90119-1 +Lihua Xie,Robust control of discrete time uncertain dynamical systems.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#XieSW93,https://doi.org/10.1016/0005-1098(93)90114-9 +Tiago Gaspar,Model-based H2 adaptive filter for 3D positioning and tracking systems.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#GasparO14,https://doi.org/10.1016/j.automatica.2013.10.001 +Kazuo Yamanaka,A higher order approximate model of singularly perturbed systems with white noise.,1986,22,Automatica,6,db/journals/automatica/automatica22.html#YamanakaA86,https://doi.org/10.1016/0005-1098(86)90010-5 +Dongfang Han,Guaranteed cost control of affine nonlinear systems via partition of unity method.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#HanS13,https://doi.org/10.1016/j.automatica.2012.11.050 +David J. Sandoz,Computer aided control system design applied to milk drying plants.,1981,17,Automatica,5,db/journals/automatica/automatica17.html#SandozW81,https://doi.org/10.1016/0005-1098(81)90019-4 +Tamer Basar,Equilibrium strategies in dynamic games with multi-levels of hierarchy.,1981,17,Automatica,5,db/journals/automatica/automatica17.html#Basar81,https://doi.org/10.1016/0005-1098(81)90022-4 +Mondher Farza,Adaptive observers for nonlinearly parameterized class of nonlinear systems.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#FarzaMMK09,https://doi.org/10.1016/j.automatica.2009.06.008 +Eli Fogel,On the value of information in system identification - Bounded noise case.,1982,18,Automatica,2,db/journals/automatica/automatica18.html#FogelH82,https://doi.org/10.1016/0005-1098(82)90110-8 +Laura Menini,Linearization through state immersion of nonlinear systems admitting Lie symmetries.,2009,45,Automatica,8,db/journals/automatica/automatica45.html#MeniniT09,https://doi.org/10.1016/j.automatica.2009.03.028 +Jing Lei,High-gain-predictor-based output feedback control for time-delay nonlinear systems.,2016,71,Automatica,,db/journals/automatica/automatica71.html#LeiK16,https://doi.org/10.1016/j.automatica.2016.05.026 +J. B. Pearson,On nonlinear least-squares filtering.,1967,4,Automatica,3,db/journals/automatica/automatica4.html#Pearson67,https://doi.org/10.1016/0005-1098(67)90001-5 +Jyh-Horng Chou,Robustness of disk-stability for perturbed large-scale systems.,1992,28,Automatica,5,db/journals/automatica/automatica28.html#ChouHH92,https://doi.org/10.1016/0005-1098(92)90164-B +Xavier Bombois,Identification for robust H2 deconvolution filtering.,2010,46,Automatica,3,db/journals/automatica/automatica46.html#BomboisHS10,https://doi.org/10.1016/j.automatica.2010.01.023 +Myung-Gon Yoon,"Erratum to ""A comment on Linfinity optimal control of SISO continuous-time systems"" [Automatica 36 (2000) 1923].",2001,37,Automatica,3,db/journals/automatica/automatica37.html#Yoon01,https://doi.org/10.1016/S0005-1098(00)00180-1 +Alexey S. Matveev,3D environmental extremum seeking navigation of a nonholonomic mobile robot.,2014,50,Automatica,7,db/journals/automatica/automatica50.html#MatveevHS14,https://doi.org/10.1016/j.automatica.2014.05.014 +Hyo-Sung Ahn,Necessary and sufficient stability condition of fractional-order interval linear systems.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#AhnC08,https://doi.org/10.1016/j.automatica.2008.07.003 +Chyi Hwang,A note on the use of the Lambert W function in the stability analysis of time-delay systems.,2005,41,Automatica,11,db/journals/automatica/automatica41.html#HwangC05,https://doi.org/10.1016/j.automatica.2005.05.020 +Gianluigi Pillonetto,Fast algorithms for nonparametric population modeling of large data sets.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#PillonettoNCC09,https://doi.org/10.1016/j.automatica.2008.06.003 +Melanie Nicole Zeilinger,On real-time robust model predictive control.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#ZeilingerRDMJ14,https://doi.org/10.1016/j.automatica.2013.11.019 +Jing Lü,Nonsmooth leader-following formation control of nonidentical multi-agent systems with directed communication topologies.,2016,64,Automatica,,db/journals/automatica/automatica64.html#LuCC16,https://doi.org/10.1016/j.automatica.2015.11.004 +Håvard Fjær Grip,Observers for interconnected nonlinear and linear systems.,2012,48,Automatica,7,db/journals/automatica/automatica48.html#GripSJ12,https://doi.org/10.1016/j.automatica.2012.04.008 +G. Datatreya Reddy,Discrete-time output feedback sliding mode control for spatial control of a large PHWR.,2009,45,Automatica,9,db/journals/automatica/automatica45.html#ReddyPBT09,https://doi.org/10.1016/j.automatica.2009.05.003 +Yuri B. Shtessel,A novel adaptive-gain supertwisting sliding mode controller: Methodology and application.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#ShtesselTP12,https://doi.org/10.1016/j.automatica.2012.02.024 +Hiroshi Ito 0001,Robust disturbance attenuation of nonlinear systems using output feedback and state-dependent scaling.,2004,40,Automatica,9,db/journals/automatica/automatica40.html#ItoJ04,https://doi.org/10.1016/j.automatica.2004.04.010 +Kaiqi Xiong,Comments on 'on absolute stability and the aizerman conjecture'.,1993,29,Automatica,2,db/journals/automatica/automatica29.html#Kaiqi93,https://doi.org/10.1016/0005-1098(93)90157-O +Hyo-Sung Ahn,Stability analysis of discrete-time iterative learning control systems with interval uncertainty.,2007,43,Automatica,5,db/journals/automatica/automatica43.html#AhnMC07,https://doi.org/10.1016/j.automatica.2006.11.020 +Min-Chio Kung,Discrete time adaptive control of linear systems with preload nonlinearity.,1984,20,Automatica,4,db/journals/automatica/automatica20.html#KungW84,https://doi.org/10.1016/0005-1098(84)90106-7 +Weisheng Chen,Event-triggered zero-gradient-sum distributed consensus optimization over directed networks.,2016,65,Automatica,,db/journals/automatica/automatica65.html#ChenR16,https://doi.org/10.1016/j.automatica.2015.11.015 +Aniruddha Datta,Adaptive internal model control: H2 optimization for stable plants.,1998,34,Automatica,1,db/journals/automatica/automatica34.html#DattaO98,https://doi.org/10.1016/S0005-1098(97)00163-5 +Lukas Jadachowski,Backstepping observers for linear PDEs on higher-dimensional spatial domains.,2015,51,Automatica,,db/journals/automatica/automatica51.html#JadachowskiMK15,https://doi.org/10.1016/j.automatica.2014.10.108 +Zhuo Jin,Numerical solutions of optimal risk control and dividend optimization policies under a generalized singular control formulation.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#JinYZ12,https://doi.org/10.1016/j.automatica.2012.05.039 +Jian-Xin Xu 0001,Terminal iterative learning control with an application to RTPCVD thickness control.,1999,35,Automatica,9,db/journals/automatica/automatica35.html#XuCLY99,https://doi.org/10.1016/S0005-1098(99)00076-X +Laurent Bako,Identification of switched linear systems via sparse optimization.,2011,47,Automatica,4,db/journals/automatica/automatica47.html#Bako11,https://doi.org/10.1016/j.automatica.2011.01.036 +Thomas Ribarits,An analysis of the parametrization by data driven local coordinates for multivariable linear systems.,2004,40,Automatica,5,db/journals/automatica/automatica40.html#RibaritsDM04,https://doi.org/10.1016/j.automatica.2004.01.009 +Efstathios Bakolas,Optimal partitioning for multi-vehicle systems using quadratic performance criteria.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#Bakolas13,https://doi.org/10.1016/j.automatica.2013.08.005 +Wei He 0001,Robust adaptive control of a thruster assisted position mooring system.,2014,50,Automatica,7,db/journals/automatica/automatica50.html#HeZG14,https://doi.org/10.1016/j.automatica.2014.04.023 +Cheng Jiaxin,Application of critical velocities to the minimisation of fuel consumption in the control of trains.,1992,28,Automatica,1,db/journals/automatica/automatica28.html#JiaxinH92,https://doi.org/10.1016/0005-1098(92)90017-A +Yue-Yun Wang,Near-optimal control of nonstandard singularly perturbed systems.,1994,30,Automatica,2,db/journals/automatica/automatica30.html#WangFW94,https://doi.org/10.1016/0005-1098(94)90030-2 +Mikhail Krastanov,On the constrained small-time controllability of linear systems.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#Krastanov08,https://doi.org/10.1016/j.automatica.2008.01.007 +László Gerencsér,Identification of ARX systems with non-stationary inputs - asymptotic analysis with application to adaptive input design.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#GerencserHM09,https://doi.org/10.1016/j.automatica.2008.09.011 +Tony Gustafsson,Subspace-based system identification: weighting and pre-filtering of instruments.,2002,38,Automatica,3,db/journals/automatica/automatica38.html#Gustafsson02,https://doi.org/10.1016/S0005-1098(01)00235-7 +Javad Ghaderi,Opinion dynamics in social networks with stubborn agents: Equilibrium and convergence rate.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#GhaderiS14,https://doi.org/10.1016/j.automatica.2014.10.034 +Mingyue Cui,Modeling and adaptive tracking for a class of stochastic Lagrangian control systems.,2013,49,Automatica,3,db/journals/automatica/automatica49.html#CuiWXS13,https://doi.org/10.1016/j.automatica.2012.11.013 +Pantelis Isaiah,Motion planning algorithms for the Dubins Travelling Salesperson Problem.,2015,53,Automatica,,db/journals/automatica/automatica53.html#IsaiahS15,https://doi.org/10.1016/j.automatica.2014.12.041 +Iven M. Y. Mareels,Non-linear dynamics in adaptive control: Periodic and chaotic stabilization - II. Analysis.,1988,24,Automatica,4,db/journals/automatica/automatica24.html#MareelsB88,https://doi.org/10.1016/0005-1098(88)90093-3 +Ruth F. Curtain,Transfer functions of distributed parameter systems: A tutorial.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#CurtainM09,https://doi.org/10.1016/j.automatica.2009.01.008 +Brett Ninness,On the frequency domain accuracy of closed-loop estimates.,2005,41,Automatica,7,db/journals/automatica/automatica41.html#NinnessH05,https://doi.org/10.1016/j.automatica.2005.03.005 +Hans W. Gottinger,Acknowledgement of priority.,1978,14,Automatica,3,db/journals/automatica/automatica14.html#Gottinger78,https://doi.org/10.1016/0005-1098(78)90096-1 +Kyriakos G. Vamvoudakis,Multi-agent differential graphical games: Online adaptive learning solution for synchronization with optimality.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#VamvoudakisLH12,https://doi.org/10.1016/j.automatica.2012.05.074 +Huiyang Liu,Necessary and sufficient conditions for containment control of networked multi-agent systems.,2012,48,Automatica,7,db/journals/automatica/automatica48.html#LiuXW12,https://doi.org/10.1016/j.automatica.2012.05.010 +Zhong-Hua Li,Optimal design of adaptive tracking controllers for non-linear systems.,1997,33,Automatica,8,db/journals/automatica/automatica33.html#LiK97,https://doi.org/10.1016/S0005-1098(97)00072-1 +Farshad Khorrami,Experimental results on adaptive nonlinear control and input preshaping for multi-link flexible manipulators.,1995,31,Automatica,1,db/journals/automatica/automatica31.html#KhorramiJT95,https://doi.org/10.1016/0005-1098(94)00070-Y +Kaihua Xi,Power-Imbalance Allocation Control of Power Systems-Secondary Frequency Control.,2018,92,Automatica,,db/journals/automatica/automatica92.html#XiDLS18,https://doi.org/10.1016/j.automatica.2018.02.019 +Rafael Becerril-Arreola,Output feedback nonlinear control for a linear motor in suspension mode.,2004,40,Automatica,12,db/journals/automatica/automatica40.html#Arreola04,https://doi.org/10.1016/j.automatica.2004.07.005 +Kazunori Yasuda,Covariance controllers: A new parametrization of the class of all stabilizing controllers.,1993,29,Automatica,3,db/journals/automatica/automatica29.html#YasudaSG93,https://doi.org/10.1016/0005-1098(93)90075-5 +Nathan van de Wouw,A discrete-time framework for stability analysis of nonlinear networked control systems.,2012,48,Automatica,6,db/journals/automatica/automatica48.html#WouwNH12,https://doi.org/10.1016/j.automatica.2012.03.005 +Domenico Famularo,A global optimization technique for checking parametric robustness.,1999,35,Automatica,9,db/journals/automatica/automatica35.html#FamularoPS99,https://doi.org/10.1016/S0005-1098(99)00058-8 +Christopher J. Bett,Bounded amplitude performance of switched LPV systems with applications to hybrid systems.,1999,35,Automatica,3,db/journals/automatica/automatica35.html#BettL99,https://doi.org/10.1016/S0005-1098(98)00180-0 +Matin Jafarian,Formation control using binary information.,2015,53,Automatica,,db/journals/automatica/automatica53.html#JafarianP15,https://doi.org/10.1016/j.automatica.2014.12.016 +J. C. Castro,Identification of the generating units to be equipped with stabilizers in a multimachine power system.,1988,24,Automatica,3,db/journals/automatica/automatica24.html#CastroCD88,https://doi.org/10.1016/0005-1098(88)90081-7 +Won Hee Kim,The Lyapunov-based controller with a passive nonlinear observer to improve position tracking performance of microstepping in permanent magnet stepper motors.,2012,48,Automatica,12,db/journals/automatica/automatica48.html#KimSC12,https://doi.org/10.1016/j.automatica.2012.08.035 +Fu-Shiung Hsieh,Collaborative reconfiguration mechanism for holonic manufacturing systems.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#Hsieh09a,https://doi.org/10.1016/j.automatica.2009.07.002 +Maciej Niedzwiecki,Optimal and suboptimal smoothing algorithms for identification of time-varying systems with randomly drifting parameters.,2008,44,Automatica,7,db/journals/automatica/automatica44.html#Niedzwiecki08b,https://doi.org/10.1016/j.automatica.2007.10.029 +Peter D. Roberts,Optimal control of a class of discrete-continuous non-linear systems - decomposition and hierarchical structure.,2001,37,Automatica,11,db/journals/automatica/automatica37.html#RobertsB01,https://doi.org/10.1016/S0005-1098(01)00141-8 +Carlos E. de Souza,Delay-dependent robust H control of uncertain linear state-delayed systems.,1999,35,Automatica,7,db/journals/automatica/automatica35.html#SouzaL99,https://doi.org/10.1016/S0005-1098(99)00025-4 +Dimitrios Karagiannis,Output-feedback stabilization of a class of uncertain non-minimum-phase nonlinear systems.,2005,41,Automatica,9,db/journals/automatica/automatica41.html#KaragiannisJOA05,https://doi.org/10.1016/j.automatica.2005.04.013 +Ignace A. Derese,Multivariable system theory and design: Rajnikant V. Patel and Neil Munro.,1983,19,Automatica,2,db/journals/automatica/automatica19.html#Derese83,https://doi.org/10.1016/0005-1098(83)90095-X +P. Giordano,The design of a non-linear reactor control system.,1965,3,Automatica,2,db/journals/automatica/automatica3.html#GiordanoMS65,https://doi.org/10.1016/0005-1098(65)90002-6 +Dong Kyoo Kim,Output-feedback I control of systems over communication networks using a deterministic switching system approach.,2004,40,Automatica,7,db/journals/automatica/automatica40.html#KimPK04,https://doi.org/10.1016/j.automatica.2004.01.024 +K. J. Hunt,Neural networks for control systems - A survey.,1992,28,Automatica,6,db/journals/automatica/automatica28.html#HuntSZG92,https://doi.org/10.1016/0005-1098(92)90053-I +Shaunak Dattaprasad Bopardikar,A cooperative Homicidal Chauffeur game.,2009,45,Automatica,7,db/journals/automatica/automatica45.html#BopardikarBH09,https://doi.org/10.1016/j.automatica.2009.03.014 +Er-Wei Bai,Frequency domain identification of Wiener models.,2003,39,Automatica,9,db/journals/automatica/automatica39.html#Bai03,https://doi.org/10.1016/S0005-1098(03)00149-3 +Aleksandar Haber,Sparse solution of the Lyapunov equation for large-scale interconnected systems.,2016,73,Automatica,,db/journals/automatica/automatica73.html#HaberV16,https://doi.org/10.1016/j.automatica.2016.06.002 +Chong Lin,On uniqueness of solutions to relay feedback systems.,2002,38,Automatica,1,db/journals/automatica/automatica38.html#LinW02,https://doi.org/10.1016/S0005-1098(01)00172-8 +Jeff S. Shamma,Guaranteed properties of gain scheduled control for linear parameter-varying plants.,1991,27,Automatica,3,db/journals/automatica/automatica27.html#ShammaA91,https://doi.org/10.1016/0005-1098(91)90116-J +Wenling Li,Non-augmented state estimation for nonlinear stochastic coupling networks.,2017,78,Automatica,,db/journals/automatica/automatica78.html#LiJD17,https://doi.org/10.1016/j.automatica.2016.12.033 +Karl Johan åström,Theory and applications of adaptive control - A survey.,1983,19,Automatica,5,db/journals/automatica/automatica19.html#Astrom83,https://doi.org/10.1016/0005-1098(83)90002-X +Jinglin Zhou,Robust tracking controller design for non-Gaussian singular uncertainty stochastic distribution systems.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#ZhouL014,https://doi.org/10.1016/j.automatica.2014.02.032 +Tong Zhou,Unfalsified model parametrization based on frequency domain noise information.,2000,36,Automatica,5,db/journals/automatica/automatica36.html#Zhou00,https://doi.org/10.1016/S0005-1098(99)00191-0 +Aras Adhami-Mirhosseini,Automatic bottom-following for underwater robotic vehicles.,2014,50,Automatica,8,db/journals/automatica/automatica50.html#Adhami-MirhosseiniYA14,https://doi.org/10.1016/j.automatica.2014.06.003 +Lawrence E. Holloway,Trajectory encoding for systems with irregular observations.,1995,31,Automatica,3,db/journals/automatica/automatica31.html#Holloway95,https://doi.org/10.1016/0005-1098(94)00115-Y +John K. Sharp,A new approach to dynamic input-output models.,1978,14,Automatica,1,db/journals/automatica/automatica14.html#SharpP78,https://doi.org/10.1016/0005-1098(78)90077-8 +Branislav Rehák,Numerical method for the solution of the regulator equation with application to nonlinear tracking.,2008,44,Automatica,5,db/journals/automatica/automatica44.html#RehakC08,https://doi.org/10.1016/j.automatica.2007.10.015 +Björn Wittenmark,Identification based on data with sampling delays.,1988,24,Automatica,2,db/journals/automatica/automatica24.html#WittenmarkO88,https://doi.org/10.1016/0005-1098(88)90038-6 +Mirko Fiacchini,Necessary and sufficient condition for stabilizability of discrete-time linear switched systems: A set-theory approach.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#FiacchiniJ14,https://doi.org/10.1016/j.automatica.2013.09.038 +Shanying Zhu,Collective behavior of mobile agents with state-dependent interactions.,2015,51,Automatica,,db/journals/automatica/automatica51.html#ZhuXCG15,https://doi.org/10.1016/j.automatica.2014.10.064 +Attilio Priolo,"Corrigendum to ""A distributed algorithm for average consensus on strongly connected weighted digraphs"" [Automatica 50(3) (2014) 946-951].",2015,59,Automatica,,db/journals/automatica/automatica59.html#PrioloGMS15,https://doi.org/10.1016/j.automatica.2015.03.024 +Henrik Anfinsen,A note on establishing convergence in adaptive systems.,2018,93,Automatica,,db/journals/automatica/automatica93.html#AnfinsenA18a,https://doi.org/10.1016/j.automatica.2018.03.079 +John Lygeros,On reachability and minimum cost optimal control.,2004,40,Automatica,6,db/journals/automatica/automatica40.html#Lygeros04,https://doi.org/10.1016/j.automatica.2004.01.012 +K. D. Do,Stochastic stabilization of slender beams in space: Modeling and boundary control.,2018,91,Automatica,,db/journals/automatica/automatica91.html#DoL18,https://doi.org/10.1016/j.automatica.2018.01.017 +Kwang-Kyo Oh,Consensus of generalized integrators: Convergence rate and disturbance attenuation property.,2016,65,Automatica,,db/journals/automatica/automatica65.html#OhKCMA16,https://doi.org/10.1016/j.automatica.2015.11.036 +Zhiyun Lin,Reachability and stabilization of discrete-time affine systems with disturbances.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#LinWY11,https://doi.org/10.1016/j.automatica.2011.09.003 +Ziyang Guo,Worst-case stealthy innovation-based linear attack on remote state estimation.,2018,89,Automatica,,db/journals/automatica/automatica89.html#GuoSJS18,https://doi.org/10.1016/j.automatica.2017.11.018 +Vito Cerone,Set-membership LPV model identification of vehicle lateral dynamics.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#CeronePR11,https://doi.org/10.1016/j.automatica.2011.04.016 +B. David,Parameter estimation in nonlinear systems with auto and crosscorrelated noise.,2002,38,Automatica,1,db/journals/automatica/automatica38.html#DavidB02,https://doi.org/10.1016/S0005-1098(01)00183-2 +Serafeim P. Moustakidis,An adaptive neuro-fuzzy tracking control for multi-input nonlinear dynamic systems.,2008,44,Automatica,5,db/journals/automatica/automatica44.html#MoustakidisRT08,https://doi.org/10.1016/j.automatica.2007.10.019 +Václav Peterka,Bayesian system identification.,1981,17,Automatica,1,db/journals/automatica/automatica17.html#Peterka81,https://doi.org/10.1016/0005-1098(81)90083-2 +Vito Cerone,Feasible parameter set for linear models with bounded errors in all variables.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#Cerone93,https://doi.org/10.1016/0005-1098(93)90020-T +Peter Dorato,Robust Multi-Objective Feedback Design with Linear Guaranteed-Cost Bounds.,1998,34,Automatica,10,db/journals/automatica/automatica34.html#DoratoMT98,https://doi.org/10.1016/S0005-1098(98)00062-4 +Daniel W. C. Ho,Bezout identity related to reduced-order observer-based controllers for singular systems.,2001,37,Automatica,10,db/journals/automatica/automatica37.html#HoG01,https://doi.org/10.1016/S0005-1098(01)00121-2 +Job C. Oostveen,Robustly stabilizing controllers for dissipative infinite-dimensional systems with collocated actuators and sensors.,2000,36,Automatica,3,db/journals/automatica/automatica36.html#OostveenC00,https://doi.org/10.1016/S0005-1098(99)00169-7 +Hamed M. Al-Rahmani,Multirate control: A new approach.,1992,28,Automatica,1,db/journals/automatica/automatica28.html#Al-RahmaniF92,https://doi.org/10.1016/0005-1098(92)90005-Z +Alexander Medvedev,Disturbance attenuation in finite-spectrum-assignment controllers.,1997,33,Automatica,6,db/journals/automatica/automatica33.html#Medvedev97,https://doi.org/10.1016/S0005-1098(97)00019-8 +A. Likar,On-line correction of the gain in kalman filtering.,1994,30,Automatica,4,db/journals/automatica/automatica30.html#LikarD94,https://doi.org/10.1016/0005-1098(94)90162-7 +L. K. Dodgson,Application of automatic control to a large coal dredger.,1969,5,Automatica,5,db/journals/automatica/automatica5.html#Dodgson69,https://doi.org/10.1016/0005-1098(69)90024-7 +George Weiss,Repetitive control of MIMO systems using Hinfinity design.,1999,35,Automatica,7,db/journals/automatica/automatica35.html#WeissH99,https://doi.org/10.1016/S0005-1098(99)00036-9 +Toni Bakhtiar,I regulation performance limitations for SIMO linear time-invariant feedback control systems.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#BakhtiarH08,https://doi.org/10.1016/j.automatica.2007.07.002 +Wei He 0001,Robust adaptive boundary control of a flexible marine riser with vessel dynamics.,2011,47,Automatica,4,db/journals/automatica/automatica47.html#HeGHCH11,https://doi.org/10.1016/j.automatica.2011.01.064 +Dan Simon,Unified forms for Kalman and finite impulse response filtering and smoothing.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#SimonS13,https://doi.org/10.1016/j.automatica.2013.02.026 +Zepeng Ning,Stability and stabilization of a class of stochastic switching systems with lower bound of sojourn time.,2018,92,Automatica,,db/journals/automatica/automatica92.html#NingZL18,https://doi.org/10.1016/j.automatica.2018.02.020 +Guoqiang Hu,Robust tracking control of an array of nanoparticles moving on a substrate.,2012,48,Automatica,2,db/journals/automatica/automatica48.html#HuDD12,https://doi.org/10.1016/j.automatica.2011.08.056 +Bing Chen 0001,Direct adaptive fuzzy control of nonlinear strict-feedback systems.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#ChenLLL09,https://doi.org/10.1016/j.automatica.2009.02.025 +Yuzhen Wang,Adaptive L2 disturbance attenuation control of multi-machine power systems with SMES units.,2006,42,Automatica,7,db/journals/automatica/automatica42.html#WangFCL06,https://doi.org/10.1016/j.automatica.2006.03.014 +Hossein Beikzadeh,Input-to-error stable observer for nonlinear sampled-data systems with application to one-sided Lipschitz systems.,2016,67,Automatica,,db/journals/automatica/automatica67.html#BeikzadehM16,https://doi.org/10.1016/j.automatica.2015.12.021 +Daniel W. Berns,Feedback Control of Limit Cycle Amplitudes from A Frequency Domain Approach.,1998,34,Automatica,12,db/journals/automatica/automatica34.html#BernsMC98,https://doi.org/10.1016/S0005-1098(98)80010-1 +Michael Di Loreto,Disturbance attenuation by dynamic output feedback for input-delay systems.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#LoretoLL08,https://doi.org/10.1016/j.automatica.2007.12.003 +Jakob Björnberg,Approximate robust dynamic programming and robustly stable MPC.,2006,42,Automatica,5,db/journals/automatica/automatica42.html#BjornbergD06,https://doi.org/10.1016/j.automatica.2005.12.016 +Uy-Loi Ly,Design of low-order compensators using parameter optimization.,1985,21,Automatica,3,db/journals/automatica/automatica21.html#LyBC85,https://doi.org/10.1016/0005-1098(85)90064-0 +Patrizio Tomei,Multi-sinusoidal disturbance rejection for discrete-time uncertain stable systems.,2017,79,Automatica,,db/journals/automatica/automatica79.html#Tomei17,https://doi.org/10.1016/j.automatica.2017.01.038 +K. D. Do,Global robust adaptive path following of underactuated ships.,2006,42,Automatica,10,db/journals/automatica/automatica42.html#DoP06,https://doi.org/10.1016/j.automatica.2006.04.026 +João Bosco Ribeiro do Val,The H2-control for jump linear systems: cluster observations of the Markov state.,2002,38,Automatica,2,db/journals/automatica/automatica38.html#ValGG02,https://doi.org/10.1016/S0005-1098(01)00210-2 +Ziyang Meng,Distributed finite-time attitude containment control for multiple rigid bodies.,2010,46,Automatica,12,db/journals/automatica/automatica46.html#MengRY10,https://doi.org/10.1016/j.automatica.2010.09.005 +Zeng-Guang Hou,A hierarchical optimization neural network for large-scale dynamic systems.,2001,37,Automatica,12,db/journals/automatica/automatica37.html#Hou01,https://doi.org/10.1016/S0005-1098(01)00158-3 +C. M. Kwan,Adaptive control of induction motors without flux measurements.,1996,32,Automatica,6,db/journals/automatica/automatica32.html#KwanLY96,https://doi.org/10.1016/0005-1098(96)00012-X +Saeed Ahmadizadeh,On synchronization of networks of Wilson-Cowan oscillators with diffusive coupling.,2016,71,Automatica,,db/journals/automatica/automatica71.html#AhmadizadehNFG16,https://doi.org/10.1016/j.automatica.2016.04.030 +Yang Liu,Optimal filtering for networked systems with stochastic sensor gain degradation.,2014,50,Automatica,5,db/journals/automatica/automatica50.html#LiuHWZ14,https://doi.org/10.1016/j.automatica.2014.03.002 +Shambhu N. Sharma,A Kushner approach for small random perturbations of the Duffing-van der Pol system.,2009,45,Automatica,4,db/journals/automatica/automatica45.html#Sharma09,https://doi.org/10.1016/j.automatica.2008.12.010 +Yueying Wang,A new integral sliding mode design method for nonlinear stochastic systems.,2018,90,Automatica,,db/journals/automatica/automatica90.html#WangXLZ18,https://doi.org/10.1016/j.automatica.2017.11.029 +Wen Yang,Nodes selection strategy in cooperative tracking problem.,2016,74,Automatica,,db/journals/automatica/automatica74.html#YangWZYS16,https://doi.org/10.1016/j.automatica.2016.07.021 +W. J. Devey,An active nutation control system for spin stabilised satellites.,1977,13,Automatica,2,db/journals/automatica/automatica13.html#DeveyFF77,https://doi.org/10.1016/0005-1098(77)90040-1 +Keck Voon Ling,Multiplexed model predictive control.,2012,48,Automatica,2,db/journals/automatica/automatica48.html#LingMRW12,https://doi.org/10.1016/j.automatica.2011.11.001 +José M. Bravo,On the computation of invariant sets for constrained nonlinear systems: An interval arithmetic approach.,2005,41,Automatica,9,db/journals/automatica/automatica41.html#BravoLAC05,https://doi.org/10.1016/j.automatica.2005.04.015 +Haruhisa Kawasaki,Decentralized adaptive coordinated control of multiple robot arms without using a force sensor.,2006,42,Automatica,3,db/journals/automatica/automatica42.html#KawasakiUI06,https://doi.org/10.1016/j.automatica.2005.11.009 +Tomás Masopust,Complexity of deciding detectability in discrete event systems.,2018,93,Automatica,,db/journals/automatica/automatica93.html#Masopust18,https://doi.org/10.1016/j.automatica.2018.03.077 +Francisco Javier Bejarano,Functional unknown input reconstruction of descriptor systems: Application to fault detection.,2015,57,Automatica,,db/journals/automatica/automatica57.html#Bejarano15,https://doi.org/10.1016/j.automatica.2015.04.023 +Bahare Kiumarsi,Output synchronization of heterogeneous discrete-time systems: A model-free optimal approach.,2017,84,Automatica,,db/journals/automatica/automatica84.html#KiumarsiL17,https://doi.org/10.1016/j.automatica.2017.07.004 +Zhong-Ping Jiang,Input-to-state stability for discrete-time nonlinear systems.,2001,37,Automatica,6,db/journals/automatica/automatica37.html#JiangW01,https://doi.org/10.1016/S0005-1098(01)00028-0 +Chun-Hua Xie,Decentralized adaptive fault-tolerant control for large-scale systems with external disturbances and actuator faults.,2017,85,Automatica,,db/journals/automatica/automatica85.html#XieY17,https://doi.org/10.1016/j.automatica.2017.07.037 +Lei Wang 0055,Bounded synchronization of a heterogeneous complex switched network.,2015,56,Automatica,,db/journals/automatica/automatica56.html#WangCW15,https://doi.org/10.1016/j.automatica.2015.03.020 +Yang Shi,Robust mixed H2/H∞ control of networked control systems with random time delays in both forward and backward communication links.,2011,47,Automatica,4,db/journals/automatica/automatica47.html#ShiY11,https://doi.org/10.1016/j.automatica.2011.01.022 +Claudio De Persis,A power consensus algorithm for DC microgrids.,2018,89,Automatica,,db/journals/automatica/automatica89.html#PersisWD18,https://doi.org/10.1016/j.automatica.2017.12.026 +Miguel A. Davó,Enlarging the basin of attraction by a uniting output feedback controller.,2018,90,Automatica,,db/journals/automatica/automatica90.html#DavoPFN18,https://doi.org/10.1016/j.automatica.2017.12.044 +Graham C. Goodwin,Lagrangian duality between constrained estimation and control.,2005,41,Automatica,6,db/journals/automatica/automatica41.html#GoodwinDSZ05,https://doi.org/10.1016/j.automatica.2004.12.014 +Lidong He,Optimal linear state estimation over a packet-dropping network using linear temporal coding.,2013,49,Automatica,4,db/journals/automatica/automatica49.html#HeHWS13,https://doi.org/10.1016/j.automatica.2013.01.043 +Lei Ding 0005,Network-based leader-following consensus for distributed multi-agent systems.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#DingHG13,https://doi.org/10.1016/j.automatica.2013.04.021 +Qinghua Zhang,Statistical detection and isolation of additive faults in linear time-varying systems.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#ZhangB14,https://doi.org/10.1016/j.automatica.2014.09.004 +C. G. Proudfoot,Principles and practice of automatic process control: Carlos A. Smith and Armando B. Corripio.,1987,23,Automatica,3,db/journals/automatica/automatica23.html#Proudfoot87,https://doi.org/10.1016/0005-1098(87)90018-5 +H. H.-y Chien,An adaptive control of the batch reactor - I: Identification of kinetics.,1964,2,Automatica,1,db/journals/automatica/automatica2.html#ChienA64,https://doi.org/10.1016/0005-1098(64)90005-6 +Lahcen Saydy,New stability/performance results for singularly perturbed systems.,1996,32,Automatica,6,db/journals/automatica/automatica32.html#Saydy96,https://doi.org/10.1016/0005-1098(96)00011-8 +Dawei Shi,Approximate optimal periodic scheduling of multiple sensors with constraints.,2013,49,Automatica,4,db/journals/automatica/automatica49.html#ShiC13,https://doi.org/10.1016/j.automatica.2013.01.024 +Youssef Rochdi,Identification of block-oriented systems in the presence of nonparametric input nonlinearities of switch and backlash types.,2010,46,Automatica,5,db/journals/automatica/automatica46.html#RochdiGGC10,https://doi.org/10.1016/j.automatica.2010.02.020 +Irina V. Medvedeva,Synthesis of Razumikhin and Lyapunov-Krasovskii approaches to stability analysis of time-delay systems.,2015,51,Automatica,,db/journals/automatica/automatica51.html#MedvedevaZ15,https://doi.org/10.1016/j.automatica.2014.10.074 +Matthias Albrecht Müller,Convergence in economic model predictive control with average constraints.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#MullerAAAR14,https://doi.org/10.1016/j.automatica.2014.10.059 +Yanjie Li,Coupling based estimation approaches for the average reward performance potential in Markov chains.,2018,93,Automatica,,db/journals/automatica/automatica93.html#LiWLCL18,https://doi.org/10.1016/j.automatica.2018.03.011 +Arturo Zavala-Río,Direct adaptive control design for one-degree-of-freedom complementary-slackness jugglers.,2001,37,Automatica,7,db/journals/automatica/automatica37.html#Zavala-RioB01,https://doi.org/10.1016/S0005-1098(01)00061-9 +Hans M. Amman,Solving the Beck and Wieland model with optimal experimentation in DualPC.,2008,44,Automatica,6,db/journals/automatica/automatica44.html#AmmanKT08,https://doi.org/10.1016/j.automatica.2007.11.004 +Florent Di Meglio,Stabilization of coupled linear heterodirectional hyperbolic PDE-ODE systems.,2018,87,Automatica,,db/journals/automatica/automatica87.html#MeglioAHK18,https://doi.org/10.1016/j.automatica.2017.09.027 +Shreyas Sundaram,Error detection and correction in switched linear controllers via periodic and non-concurrent checks.,2006,42,Automatica,3,db/journals/automatica/automatica42.html#SundaramH06,https://doi.org/10.1016/j.automatica.2005.10.011 +Alireza Karimi,A data-driven approach to robust control of multivariable systems by convex optimization.,2017,85,Automatica,,db/journals/automatica/automatica85.html#KarimiK17,https://doi.org/10.1016/j.automatica.2017.07.063 +Matthew R. James,Numerical approximation of the H∞ norm for nonlinear systems.,1995,31,Automatica,8,db/journals/automatica/automatica31.html#JamesY95,https://doi.org/10.1016/0005-1098(94)00161-B +Tong Heng Lee,Robust adaptive control of discrete-time systems using persistent excitation.,1988,24,Automatica,6,db/journals/automatica/automatica24.html#LeeN88,https://doi.org/10.1016/0005-1098(88)90054-4 +Adam Czornik,Lower bounds on the solution of coupled algebraic Riccati equation.,2001,37,Automatica,4,db/journals/automatica/automatica37.html#CzornikS01,https://doi.org/10.1016/S0005-1098(00)00196-5 +Dmitry V. Balandin,Pareto suboptimal controllers in multi-objective disturbance attenuation problems.,2017,84,Automatica,,db/journals/automatica/automatica84.html#BalandinK17,https://doi.org/10.1016/j.automatica.2017.06.041 +C. W. Chan,Fault detection of systems with redundant sensors using constrained Kohonen networks.,2001,37,Automatica,10,db/journals/automatica/automatica37.html#ChanJCZ01,https://doi.org/10.1016/S0005-1098(01)00126-1 +Alexander N. Churilov,A state observer for continuous oscillating systems under intrinsic pulse-modulated feedback.,2012,48,Automatica,6,db/journals/automatica/automatica48.html#ChurilovMS12,https://doi.org/10.1016/j.automatica.2012.02.044 +Denis V. Efimov,Exciting multi-DOF systems by feedback resonance.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#EfimovFI13,https://doi.org/10.1016/j.automatica.2013.02.035 +Yaning Lin,Necessary and sufficient conditions for Pareto optimality of the stochastic systems in finite horizon.,2018,94,Automatica,,db/journals/automatica/automatica94.html#LinJZ18,https://doi.org/10.1016/j.automatica.2018.04.044 +Gianluigi Pillonetto,System identification using kernel-based regularization: New insights on stability and consistency issues.,2018,93,Automatica,,db/journals/automatica/automatica93.html#Pillonetto18,https://doi.org/10.1016/j.automatica.2018.03.065 +A. Garcia,Open channel transient flow control by discrete time LQR methods.,1992,28,Automatica,2,db/journals/automatica/automatica28.html#GarciaHV92,https://doi.org/10.1016/0005-1098(92)90113-T +Davide Fiore,Contraction analysis of switched systems via regularization.,2016,73,Automatica,,db/journals/automatica/automatica73.html#FioreHB16,https://doi.org/10.1016/j.automatica.2016.06.028 +Yaguang Yang,An efficient LQR design for discrete-time linear periodic system based on a novel lifting method.,2018,87,Automatica,,db/journals/automatica/automatica87.html#Yang18,https://doi.org/10.1016/j.automatica.2017.10.019 +Carlos Mosquera,On the strengthened robust SPR problem for discrete-time systems.,2001,37,Automatica,4,db/journals/automatica/automatica37.html#MosqueraP01,https://doi.org/10.1016/S0005-1098(00)00197-7 +Rafael Kelly,Manipulator motion control in operational space using joint velocity inner loops.,2005,41,Automatica,8,db/journals/automatica/automatica41.html#KellyM05,https://doi.org/10.1016/j.automatica.2005.03.008 +Sara Susca,Gradient algorithms for polygonal approximation of convex contours.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#SuscaBM09,https://doi.org/10.1016/j.automatica.2008.08.020 +James S. Thorp,An optimal secondary voltage-VAR control technique.,1986,22,Automatica,2,db/journals/automatica/automatica22.html#ThorpIV86,https://doi.org/10.1016/0005-1098(86)90083-X +Xun-Lin Zhu,"Comments on ""Stability analysis of uncertain sampled-data systems with incremental delay using looped-functionals [Automatica 55 (2015) 274-278]"".",2017,75,Automatica,,db/journals/automatica/automatica75.html#ZhuSX17,https://doi.org/10.1016/j.automatica.2016.09.013 +Alemdar Hasanov,Identification of unknown temporal and spatial load distributions in a vibrating Euler-Bernoulli beam from Dirichlet boundary measured data.,2016,71,Automatica,,db/journals/automatica/automatica71.html#HasanovB16,https://doi.org/10.1016/j.automatica.2016.04.034 +David W. Clarke,Identification of industrial processes: N. S. Rajbman and V. M. Chadeev.,1982,18,Automatica,3,db/journals/automatica/automatica18.html#Clarke82,https://doi.org/10.1016/0005-1098(82)90099-1 +Hiroyuki Kano,Existence condition of positive-definite solutions for algebraic matrix riccati equations.,1987,23,Automatica,3,db/journals/automatica/automatica23.html#Kano87,https://doi.org/10.1016/0005-1098(87)90013-6 +Elias Jarlebring,The Lambert W function and the spectrum of some multidimensional time-delay systems.,2007,43,Automatica,12,db/journals/automatica/automatica43.html#JarlebringD07,https://doi.org/10.1016/j.automatica.2007.04.001 +J.-K. Park,Dynamical anti-reset windup method for discrete-time saturating systems.,1997,33,Automatica,6,db/journals/automatica/automatica33.html#ParkC97,https://doi.org/10.1016/S0005-1098(96)00208-7 +Rajesh Devaraj,"Comments on ""Supervisory control for real-time scheduling of periodic and sporadic tasks with resource constraints"" [Automatica 45 (2009) 2597-2604].",2017,82,Automatica,,db/journals/automatica/automatica82.html#DevarajSB17,https://doi.org/10.1016/j.automatica.2017.04.007 +Hiroshi Ito 0001,A degree of flexibility in Lyapunov inequalities for establishing input-to-state stability of interconnected systems.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#Ito08,https://doi.org/10.1016/j.automatica.2008.01.001 +Cheng-Jyi Mao,Decentralized control of interconnected systems with unmodelled nonlinearity and interaction.,1990,26,Automatica,2,db/journals/automatica/automatica26.html#MaoL90,https://doi.org/10.1016/0005-1098(90)90120-7 +Fei Qi,Bayesian methods for control loop diagnosis in the presence of temporal dependent evidences.,2011,47,Automatica,7,db/journals/automatica/automatica47.html#QiH11,https://doi.org/10.1016/j.automatica.2011.02.015 +Vojislav Z. Filipovic,On robust AML identification algorithms.,1994,30,Automatica,11,db/journals/automatica/automatica30.html#FilipovicK94,https://doi.org/10.1016/0005-1098(94)90081-7 +Er-Wei Bai,Blind identifiability of IIR systems.,2002,38,Automatica,1,db/journals/automatica/automatica38.html#BaiLD02,https://doi.org/10.1016/S0005-1098(01)00179-0 +Minghui Zhu,Discrete-time dynamic average consensus.,2010,46,Automatica,2,db/journals/automatica/automatica46.html#ZhuM10,https://doi.org/10.1016/j.automatica.2009.10.021 +Darrell Williamson,Observation of bilinear systems with application to biological control.,1977,13,Automatica,3,db/journals/automatica/automatica13.html#Williamson77,https://doi.org/10.1016/0005-1098(77)90051-6 +Rik Pintelon,Frequency-domain subspace system identification using non-parametric noise models.,2002,38,Automatica,8,db/journals/automatica/automatica38.html#Pintelon02,https://doi.org/10.1016/S0005-1098(02)00036-5 +Walter Schaufelberger,Low cost control education software for MS-DOS PCs.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#Schaufelberger93,https://doi.org/10.1016/0005-1098(93)90013-J +Gang Zheng,Interval observer for a class of uncertain nonlinear singular systems.,2016,71,Automatica,,db/journals/automatica/automatica71.html#ZhengEBPW16,https://doi.org/10.1016/j.automatica.2016.04.002 +Xin Xin,Reduced-order controllers for the Hinfinity control problem with unstable invariant zeros.,2004,40,Automatica,2,db/journals/automatica/automatica40.html#Xin04,https://doi.org/10.1016/j.automatica.2003.10.006 +Jan Jezek,Efficient algorithm for matrix spectral factorization.,1985,21,Automatica,6,db/journals/automatica/automatica21.html#JezekK85,https://doi.org/10.1016/0005-1098(85)90040-8 +Makarand S. Phatak,A homotopy approach for stabilizing single-input systems with control structure constraints.,1992,28,Automatica,5,db/journals/automatica/automatica28.html#PhatakK92,https://doi.org/10.1016/0005-1098(92)90151-5 +Ruggero Carli,Gossip consensus algorithms via quantized communication.,2010,46,Automatica,1,db/journals/automatica/automatica46.html#CarliFFZ10,https://doi.org/10.1016/j.automatica.2009.10.032 +Kalyan Raman,Boundary value problems in stochastic optimal control of advertising.,2006,42,Automatica,8,db/journals/automatica/automatica42.html#Raman06,https://doi.org/10.1016/j.automatica.2006.04.016 +Dong Yue,Network-based robust Hinfinity control of systems with uncertainty.,2005,41,Automatica,6,db/journals/automatica/automatica41.html#YueHL05,https://doi.org/10.1016/j.automatica.2004.12.011 +Laurent Bako,Robustness analysis of a maximum correntropy framework for linear regression.,2018,87,Automatica,,db/journals/automatica/automatica87.html#Bako18,https://doi.org/10.1016/j.automatica.2017.09.006 +Klaus Röbenack,Computation of state and input trajectories for flat systems using automatic differentiation.,2004,40,Automatica,3,db/journals/automatica/automatica40.html#RobenackV04,https://doi.org/10.1016/j.automatica.2003.10.018 +Harry Berghuis,Experimental comparison of parameter estimation methods in adaptive robot control.,1995,31,Automatica,9,db/journals/automatica/automatica31.html#BerghuisRN95,https://doi.org/10.1016/0005-1098(95)00046-Y +Jun Wang 0002,Formation of machine cells and part families in cellular manufacturing systems using a linear assignment algorithm.,2003,39,Automatica,9,db/journals/automatica/automatica39.html#Wang03b,https://doi.org/10.1016/S0005-1098(03)00150-X +L. H. Ferry,Optimal minimal order N-State estimators for linear stochastic systems.,1976,12,Automatica,4,db/journals/automatica/automatica12.html#FerryW76,https://doi.org/10.1016/0005-1098(76)90056-X +Fernando Castaños,Integral sliding-mode control for linear time-invariant implicit systems.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#CastanosHF14,https://doi.org/10.1016/j.automatica.2013.12.024 +Min-Sung Koo,Non-predictor controller for feedforward and non-feedforward nonlinear systems with an unknown time-varying delay in the input.,2016,65,Automatica,,db/journals/automatica/automatica65.html#KooC16,https://doi.org/10.1016/j.automatica.2015.11.033 +Sandira Gayadeen,Discrete-time anti-windup compensation for synchrotron electron beam controllers with rate constrained actuators.,2016,67,Automatica,,db/journals/automatica/automatica67.html#GayadeenD16,https://doi.org/10.1016/j.automatica.2016.01.037 +Young Sam Lee,Delay-dependent robust Hinfinity control for uncertain systems with a state-delay.,2004,40,Automatica,1,db/journals/automatica/automatica40.html#LeeMKP04,https://doi.org/10.1016/j.automatica.2003.07.004 +Sekhar Tangirala,Life-extending control of mechanical structures: Experimental verification of the concept.,1998,34,Automatica,1,db/journals/automatica/automatica34.html#TangiralaHRC98,https://doi.org/10.1016/S0005-1098(97)00145-3 +Xiaoming Hu,Global Nonlinear Feedback Stabilization and Nonpeaking Conditions.,1998,34,Automatica,11,db/journals/automatica/automatica34.html#Hu98,https://doi.org/10.1016/S0005-1098(98)00093-4 +Athanasios Sideris,Multiplier-based robust Hinfinity design with time-varying uncertainties.,2000,36,Automatica,4,db/journals/automatica/automatica36.html#SiderisT00,https://doi.org/10.1016/S0005-1098(99)00181-8 +Frank Willems,Positive feedback stabilization of centrifugal compressor surge.,2002,38,Automatica,2,db/journals/automatica/automatica38.html#WillemsHJS02,https://doi.org/10.1016/S0005-1098(01)00202-3 +Murat Arcak,Diagonal stability of a class of cyclic systems and its connection with the secant criterion.,2006,42,Automatica,9,db/journals/automatica/automatica42.html#ArcakS06,https://doi.org/10.1016/j.automatica.2006.04.009 +R. Cori,Practical-optimal control of a drum boiler power plant.,1984,20,Automatica,2,db/journals/automatica/automatica20.html#CoriM84,https://doi.org/10.1016/0005-1098(84)90022-0 +Kevin Spieser,Multi-agent stabilisation of the psychological dynamics of one-dimensional crowds.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#SpieserD09,https://doi.org/10.1016/j.automatica.2008.09.013 +Jie Mei,Distributed coordination for second-order multi-agent systems with nonlinear dynamics using only relative position measurements.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#Mei0M13,https://doi.org/10.1016/j.automatica.2013.01.058 +Christian Conte,Distributed synthesis and stability of cooperative distributed model predictive control for linear systems.,2016,69,Automatica,,db/journals/automatica/automatica69.html#ConteJMZ16,https://doi.org/10.1016/j.automatica.2016.02.009 +Juan Ignacio Mulero Martínez,Canonical transformations used to derive robot control laws from a port-controlled Hamiltonian system perspective.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#Martinez08,https://doi.org/10.1016/j.automatica.2008.02.004 +B. Leden,Multivariable dead-beat control.,1977,13,Automatica,2,db/journals/automatica/automatica13.html#Leden77,https://doi.org/10.1016/0005-1098(77)90043-7 +Richard Stone,The model in its environment.,1966,4,Automatica,2,db/journals/automatica/automatica4.html#Stone66,https://doi.org/10.1016/0005-1098(66)90018-5 +Anthony N. Michel,Towards a stability theory of general hybrid dynamical systems.,1999,35,Automatica,3,db/journals/automatica/automatica35.html#MichelH99,https://doi.org/10.1016/S0005-1098(98)00165-4 +Xu-Guang Li,Stability analysis of neutral systems with distributed delays.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#LiZ08a,https://doi.org/10.1016/j.automatica.2007.12.009 +Xianfu Zhang,Leader-follower consensus of time-varying nonlinear multi-agent systems.,2015,52,Automatica,,db/journals/automatica/automatica52.html#ZhangLF15,https://doi.org/10.1016/j.automatica.2014.10.127 +Thijs van Keulen,Solution for state constrained optimal control problems applied to power split control for hybrid vehicles.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#KeulenGJS14,https://doi.org/10.1016/j.automatica.2013.09.039 +Brian G. Romanchuk,Computing regions of attraction with polytopes: Planar case.,1996,32,Automatica,12,db/journals/automatica/automatica32.html#Romanchuk96,https://doi.org/10.1016/S0005-1098(96)80011-2 +Bogdan Marinescu,Robust state-predictive control with separation property: A reduced-state design for control systems with non-equal time delays.,2000,36,Automatica,4,db/journals/automatica/automatica36.html#MarinescuB00,https://doi.org/10.1016/S0005-1098(99)00166-1 +Arild Thowsen,Sampled-data stabilization of linear time-delay systems.,1982,18,Automatica,4,db/journals/automatica/automatica18.html#Thowsen82,https://doi.org/10.1016/0005-1098(82)90078-4 +Luca Gentili,Robust nonlinear disturbance suppression of a magnetic levitation system.,2003,39,Automatica,4,db/journals/automatica/automatica39.html#GentiliM03,https://doi.org/10.1016/S0005-1098(02)00307-2 +Bin Zhou 0001,On asymptotic stability of linear time-varying systems.,2016,68,Automatica,,db/journals/automatica/automatica68.html#Zhou16,https://doi.org/10.1016/j.automatica.2015.12.030 +Adrian G. Wills,Barrier function based model predictive control.,2004,40,Automatica,8,db/journals/automatica/automatica40.html#WillsH04,https://doi.org/10.1016/j.automatica.2004.03.002 +Jorge Cortés,Cooperative detection of areas of rapid change in spatial fields.,2012,48,Automatica,4,db/journals/automatica/automatica48.html#Cortes12,https://doi.org/10.1016/j.automatica.2012.01.014 +Yu Tang,Frequency domain adaptive control: Band-wise compensation.,1995,31,Automatica,5,db/journals/automatica/automatica31.html#TangCF95,https://doi.org/10.1016/0005-1098(94)00140-E +Mirko Fiacchini,Stabilization and control Lyapunov functions for language constrained discrete-time switched linear systems.,2018,93,Automatica,,db/journals/automatica/automatica93.html#FiacchiniJG18,https://doi.org/10.1016/j.automatica.2018.03.039 +Shipei Huang,Finite-time stabilization of switched stochastic nonlinear systems with mixed odd and even powers.,2016,73,Automatica,,db/journals/automatica/automatica73.html#HuangX16,https://doi.org/10.1016/j.automatica.2016.06.023 +Hao Ying,Fuzzy control theory: A nonlinear case.,1990,26,Automatica,3,db/journals/automatica/automatica26.html#YingSB90,https://doi.org/10.1016/0005-1098(90)90022-A +M. G. Rodd,Introduction to robotics: Mechanics and control: John J. Craig.,1987,23,Automatica,2,db/journals/automatica/automatica23.html#Rodd87,https://doi.org/10.1016/0005-1098(87)90105-1 +B. Ross Barmish,The robust root locus.,1990,26,Automatica,2,db/journals/automatica/automatica26.html#BarmishT90,https://doi.org/10.1016/0005-1098(90)90122-X +B. David,An estimator of the inverse covariance matrix and its application to ML parameter estimation in dynamical systems.,2001,37,Automatica,1,db/journals/automatica/automatica37.html#DavidB01,https://doi.org/10.1016/S0005-1098(00)00127-8 +Arunabha Bagchi,Research survey.,1984,20,Automatica,4,db/journals/automatica/automatica20.html#Bagchi84,https://doi.org/10.1016/0005-1098(84)90111-0 +Zhengtao Ding,Distributed adaptive consensus control of nonlinear output-feedback systems on directed graphs.,2016,72,Automatica,,db/journals/automatica/automatica72.html#DingL16,https://doi.org/10.1016/j.automatica.2016.05.014 +Graziano Chesi,Quantifying the unstable in linearized nonlinear systems.,2015,60,Automatica,,db/journals/automatica/automatica60.html#Chesi15a,https://doi.org/10.1016/j.automatica.2015.07.014 +Weiming Xiang,Parameter-memorized Lyapunov functions for discrete-time systems with time-varying parametric uncertainties.,2018,87,Automatica,,db/journals/automatica/automatica87.html#Xiang18,https://doi.org/10.1016/j.automatica.2017.10.001 +Ling Shi,Sensor scheduling over a packet-delaying network.,2011,47,Automatica,5,db/journals/automatica/automatica47.html#ShiJMS11,https://doi.org/10.1016/j.automatica.2011.02.011 +Xiaofu Ji,A note on equivalence between two integral inequalities for time-delay systems.,2015,53,Automatica,,db/journals/automatica/automatica53.html#JiS15,https://doi.org/10.1016/j.automatica.2014.12.030 +Claudio Bonivento,Giuseppe Evangelisti 1903-1981.,1983,19,Automatica,3,db/journals/automatica/automatica19.html#BoniventoM83,https://doi.org/10.1016/0005-1098(83)90098-5 +Andreas Deutschmann,Backstepping-based boundary observer for a class of time-varying linear hyperbolic PIDEs.,2016,68,Automatica,,db/journals/automatica/automatica68.html#DeutschmannJK16,https://doi.org/10.1016/j.automatica.2016.02.007 +Petre Stoica,Eigenvalue location of certain matrices arising in convergence analysis problems.,1982,18,Automatica,4,db/journals/automatica/automatica18.html#StoicaHS82,https://doi.org/10.1016/0005-1098(82)90079-6 +Reyad El-Khazal,Output feedback variable structure control design.,1995,31,Automatica,6,db/journals/automatica/automatica31.html#El-KhazalD95,https://doi.org/10.1016/0005-1098(94)00151-8 +Lars Grüne,Economic receding horizon control without terminal constraints.,2013,49,Automatica,3,db/journals/automatica/automatica49.html#Grune13,https://doi.org/10.1016/j.automatica.2012.12.003 +Herbert Werner,Multimodel Robust Control by Fast Output Sampling - An LMI Approach.,1998,34,Automatica,12,db/journals/automatica/automatica34.html#Werner98,https://doi.org/10.1016/S0005-1098(98)80018-6 +Thomas Thibodeau,Set invariance and performance analysis of linear systems via truncated ellipsoids.,2009,45,Automatica,9,db/journals/automatica/automatica45.html#ThibodeauTH09,https://doi.org/10.1016/j.automatica.2009.04.022 +Harold Chestnut,Committee on systems engineering.,1969,5,Automatica,5,db/journals/automatica/automatica5.html#ChestnutMNK69,https://doi.org/10.1016/0005-1098(69)90038-7 +Maria Letizia Corradini,Nonsingular terminal sliding-mode control of nonlinear planar systems with global fixed-time stability guarantees.,2018,95,Automatica,,db/journals/automatica/automatica95.html#CorradiniC18,https://doi.org/10.1016/j.automatica.2018.06.032 +Stephen Kahne,A message from the IFAC president.,1994,30,Automatica,1,db/journals/automatica/automatica30.html#Kahne94,https://doi.org/10.1016/0005-1098(94)90220-8 +Guillermo J. Silva,PI stabilization of first-order systems with time delay.,2001,37,Automatica,12,db/journals/automatica/automatica37.html#SilvaDB01,https://doi.org/10.1016/S0005-1098(01)00165-0 +Adrian N. Bishop,Optimality analysis of sensor-target localization geometries.,2010,46,Automatica,3,db/journals/automatica/automatica46.html#BishopFADP10,https://doi.org/10.1016/j.automatica.2009.12.003 +Adel Chala,The relaxed optimal control problem for Mean-Field SDEs systems and application.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#Chala14,https://doi.org/10.1016/j.automatica.2013.12.022 +Robert L. Kosut,An input-output view of robustness in adaptive control.,1984,20,Automatica,5,db/journals/automatica/automatica20.html#KosutJ84,https://doi.org/10.1016/0005-1098(84)90008-6 +Abhijit Gosavi,A risk-sensitive approach to total productive maintenance.,2006,42,Automatica,8,db/journals/automatica/automatica42.html#Gosavi06,https://doi.org/10.1016/j.automatica.2006.02.006 +Pasquale Lucibello,Output regulation of nonlinear systems evolving in the neighborhood of a periodic orbit.,1995,31,Automatica,2,db/journals/automatica/automatica31.html#Lucibello95,https://doi.org/10.1016/0005-1098(94)00094-Y +Hüseyin Akçay,An insight into instrumental variable frequency-domain subspace identification.,2010,46,Automatica,2,db/journals/automatica/automatica46.html#Akcay10,https://doi.org/10.1016/j.automatica.2009.11.009 +Ababacar Diagne,Backstepping stabilization of the linearized Saint-Venant-Exner model.,2017,76,Automatica,,db/journals/automatica/automatica76.html#DiagneDTK17,https://doi.org/10.1016/j.automatica.2016.10.017 +Yugang Niu,Control strategy with adaptive quantizer's parameters under digital communication channels.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#NiuH14,https://doi.org/10.1016/j.automatica.2014.08.032 +Nikhil Chopra,Synchronization of bilateral teleoperators with time delay.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#ChopraSL08,https://doi.org/10.1016/j.automatica.2007.12.002 +Zohreh Fathi,Optimization of an enhanced oil recovery process with boundary controls - A large-scale non-linear maximization.,1987,23,Automatica,3,db/journals/automatica/automatica23.html#FathiR87,https://doi.org/10.1016/0005-1098(87)90004-5 +Naomi Ehrich Leonard,Stability of a bottom-heavy underwater vehicle.,1997,33,Automatica,3,db/journals/automatica/automatica33.html#Leonard97,https://doi.org/10.1016/S0005-1098(96)00176-8 +Geir E. Dullerud,Analysis of structured LTI uncertainty in sampled-data systems.,1995,31,Automatica,1,db/journals/automatica/automatica31.html#DullerudG95,https://doi.org/10.1016/0005-1098(94)00071-P +E. L. Harris,Using discrete models with continuous design packages.,1979,15,Automatica,1,db/journals/automatica/automatica15.html#Harris79,https://doi.org/10.1016/0005-1098(79)90091-8 +Tingshu Hu,Non-conservative matrix inequality conditions for stability/stabilizability of linear differential inclusions.,2010,46,Automatica,1,db/journals/automatica/automatica46.html#HuB10,https://doi.org/10.1016/j.automatica.2009.10.022 +Robin M. C. De Keyser,A self-tuning multistep predictor application.,1981,17,Automatica,1,db/journals/automatica/automatica17.html#KeyserC81,https://doi.org/10.1016/0005-1098(81)90092-3 +Wei Zhan,Disturbance attenuation via state feedback for systems with a saturation nonlinearity in the control channel.,1996,32,Automatica,6,db/journals/automatica/automatica32.html#ZhanW96,https://doi.org/10.1016/0005-1098(96)00019-2 +Tarek Ahmed-Ali,Continuous-discrete adaptive observers for state affine systems.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#Ahmed-AliPL09,https://doi.org/10.1016/j.automatica.2009.09.005 +H. Tokunaga,Analysis and synthesis of the robust impulse-to-peak performance.,1998,34,Automatica,11,db/journals/automatica/automatica34.html#TokunagaIH98,https://doi.org/10.1016/S0005-1098(98)00096-X +K. Ichikawa,On stabilization of nonlinear systems with enlarged domain of attraction.,1992,28,Automatica,3,db/journals/automatica/automatica28.html#IchikawaO92,https://doi.org/10.1016/0005-1098(92)90188-L +István Vajk,Adaptive load-frequency control of the hungarian power system.,1985,21,Automatica,2,db/journals/automatica/automatica21.html#VajkVKHHK85,https://doi.org/10.1016/0005-1098(85)90108-6 +Lorenzo Marconi,Robust nonlinear control of shunt active filters for harmonic current compensation.,2007,43,Automatica,2,db/journals/automatica/automatica43.html#MarconiRT07,https://doi.org/10.1016/j.automatica.2006.08.021 +Petter Tøndel,An algorithm for multi-parametric quadratic programming and explicit MPC solutions.,2003,39,Automatica,3,db/journals/automatica/automatica39.html#TondelJB03,https://doi.org/10.1016/S0005-1098(02)00250-9 +Vasilis Z. Marmarelis,Error analysis and optimal estimation procedures in identification of nonlinear volterra systems.,1979,15,Automatica,2,db/journals/automatica/automatica15.html#Marmarelis79,https://doi.org/10.1016/0005-1098(79)90067-0 +Jean-Claude Hennet,Stability and stabilization of delay differential systems.,1997,33,Automatica,3,db/journals/automatica/automatica33.html#HennetT97,https://doi.org/10.1016/S0005-1098(96)00185-9 +Chyi Hwang,The use of Routh array for testing the Hurwitz property of a segment of polynomials.,2001,37,Automatica,2,db/journals/automatica/automatica37.html#HwangY01,https://doi.org/10.1016/S0005-1098(00)00142-4 +Oded Yaniv,Design of PID controllers satisfying gain margin and sensitivity constraints on a set of plants.,2004,40,Automatica,1,db/journals/automatica/automatica40.html#YanivN04,https://doi.org/10.1016/j.automatica.2003.08.005 +Manuel López-Martínez,Nonlinear L2 control of a laboratory helicopter with variable speed rotors.,2007,43,Automatica,4,db/journals/automatica/automatica43.html#Lopez-MartinezOVR07,https://doi.org/10.1016/j.automatica.2006.10.013 +Rik Pintelon,Box-Jenkins continuous-time modeling.,2000,36,Automatica,7,db/journals/automatica/automatica36.html#PintelonSR00,https://doi.org/10.1016/S0005-1098(00)00002-9 +Fredrik P. Skantze,Adaptive estimation of discrete-time systems with nonlinear parameterization.,2000,36,Automatica,12,db/journals/automatica/automatica36.html#SkantzeKLA00,https://doi.org/10.1016/S0005-1098(00)00106-0 +László Gerencsér,A two-stage information criterion for stochastic systems revisited.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#GerencserF11,https://doi.org/10.1016/j.automatica.2011.08.051 +Zhibin Yan,Use Hausdorff metric to analyze convergence of parameter estimation in system identification.,2014,50,Automatica,8,db/journals/automatica/automatica50.html#YanC14,https://doi.org/10.1016/j.automatica.2014.06.005 +Xu-Guang Li,"Comments on ""Delay-dependent robust Hinfinity control for uncertain systems with a state-delay"".",2007,43,Automatica,3,db/journals/automatica/automatica43.html#LiZ07,https://doi.org/10.1016/j.automatica.2006.08.030 +Jeffrey H. Ahrens,High-gain observers in the presence of measurement noise: A switched-gain approach.,2009,45,Automatica,4,db/journals/automatica/automatica45.html#AhrensK09,https://doi.org/10.1016/j.automatica.2008.11.012 +Su Whan Sung,Relay feedback method under large static disturbances.,2006,42,Automatica,2,db/journals/automatica/automatica42.html#SungL06,https://doi.org/10.1016/j.automatica.2005.10.001 +Suyan Teng,Multi-objective ordinal optimization for simulation optimization problems.,2007,43,Automatica,11,db/journals/automatica/automatica43.html#TengLC07,https://doi.org/10.1016/j.automatica.2007.03.011 +James B. Rawlings,Model predictive control with discrete actuators: Theory and application.,2017,78,Automatica,,db/journals/automatica/automatica78.html#RawlingsR17,https://doi.org/10.1016/j.automatica.2016.12.024 +Henk Nijmeijer,Estimation and control of systems : Theodore F. Elbert.,1986,22,Automatica,4,db/journals/automatica/automatica22.html#Nijmeijer86,https://doi.org/10.1016/0005-1098(86)90056-7 +Wu-Hua Chen,Robust stability and H INFINITY -control of uncertain impulsive systems with time-delay.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#ChenZ09,https://doi.org/10.1016/j.automatica.2008.05.020 +Jan H. Richter,Reconfigurable control of piecewise affine systems with actuator and sensor faults: Stability and tracking.,2011,47,Automatica,4,db/journals/automatica/automatica47.html#RichterHWL11,https://doi.org/10.1016/j.automatica.2011.01.048 +Qijun Xia,Adaptive fading Kalman filter with an application.,1994,30,Automatica,8,db/journals/automatica/automatica30.html#XiaRYS94,https://doi.org/10.1016/0005-1098(94)90112-0 +Ioan Doré Landau,Combining model reference adaptive controllers and stochastic self-tuning regulators.,1982,18,Automatica,1,db/journals/automatica/automatica18.html#Landau82,https://doi.org/10.1016/0005-1098(82)90029-2 +Ali Parsa,Measurement and control of nonlinear dynamic systems over the internet (IoT): Applications in remote control of autonomous vehicles.,2018,95,Automatica,,db/journals/automatica/automatica95.html#ParsaF18,https://doi.org/10.1016/j.automatica.2018.05.016 +Marcel Staroswiecki,Progressive accommodation of parametric faults in linear quadratic control.,2007,43,Automatica,12,db/journals/automatica/automatica43.html#StaroswieckiYJ07,https://doi.org/10.1016/j.automatica.2007.04.016 +Anton A. Stoorvogel,On global external stochastic stabilization of linear systems with input saturation.,2015,51,Automatica,,db/journals/automatica/automatica51.html#StoorvogelS15,https://doi.org/10.1016/j.automatica.2014.10.060 +Thomas L. Harris,A continuation approach to eigenvalue assignment.,1983,19,Automatica,5,db/journals/automatica/automatica19.html#HarrisDR83,https://doi.org/10.1016/0005-1098(83)90010-9 +Vikram Krishnamurthy,Multiple stopping time POMDPs: Structural results and application in interactive advertising on social media.,2018,95,Automatica,,db/journals/automatica/automatica95.html#KrishnamurthyAB18,https://doi.org/10.1016/j.automatica.2018.06.013 +Tove Gustavi,Sufficient conditions for connectivity maintenance and rendezvous in leader-follower networks.,2010,46,Automatica,1,db/journals/automatica/automatica46.html#GustaviDEH10,https://doi.org/10.1016/j.automatica.2009.10.014 +Boris M. Miller,Towards the optimal control of Markov chains with constraints.,2010,46,Automatica,9,db/journals/automatica/automatica46.html#MillerMS10,https://doi.org/10.1016/j.automatica.2010.06.003 +Dmitriy Laschov,On Boolean control networks with maximal topological entropy.,2014,50,Automatica,11,db/journals/automatica/automatica50.html#LaschovM14,https://doi.org/10.1016/j.automatica.2014.10.020 +Graziano Chesi,Robustness analysis of genetic regulatory networks affected by model uncertainty.,2011,47,Automatica,6,db/journals/automatica/automatica47.html#Chesi11a,https://doi.org/10.1016/j.automatica.2010.10.012 +M. C. Han,Polynomial robust control design for uncertain systems.,1992,28,Automatica,4,db/journals/automatica/automatica28.html#HanC92,https://doi.org/10.1016/0005-1098(92)90041-D +B. Egardt,Performance modeling of automated manufacturing systems.,1995,31,Automatica,2,db/journals/automatica/automatica31.html#EgardtL95,https://doi.org/10.1016/0005-1098(95)90023-3 +Wen-June Wang,Variable structure-based covariance assignment for stochastic multivariable model reference systems.,2000,36,Automatica,1,db/journals/automatica/automatica36.html#WangC00,https://doi.org/10.1016/S0005-1098(99)00123-5 +Frank L. Lewis,A review of 2-D implicit systems.,1992,28,Automatica,2,db/journals/automatica/automatica28.html#Lewis92a,https://doi.org/10.1016/0005-1098(92)90120-5 +Toshio Mike Chin,A distributed and iterative method for square root filtering in space-time estimation.,1995,31,Automatica,1,db/journals/automatica/automatica31.html#ChinKW95,https://doi.org/10.1016/0005-1098(94)00069-U +Wei Sun,Sequential pursuit of multiple targets under external disturbances via Zermelo-Voronoi diagrams.,2017,81,Automatica,,db/journals/automatica/automatica81.html#SunT17,https://doi.org/10.1016/j.automatica.2017.03.015 +Lirong Huang,Robust delayed-state-feedback stabilization of uncertain stochastic systems.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#HuangM09,https://doi.org/10.1016/j.automatica.2009.01.004 +Tony Gustafsson,Subspace identification using instrumental variable techniques.,2001,37,Automatica,12,db/journals/automatica/automatica37.html#Gustafsson01,https://doi.org/10.1016/S0005-1098(01)00153-4 +Mingming Liu,On the stability and convergence of a class of consensus systems with a nonlinear input.,2017,86,Automatica,,db/journals/automatica/automatica86.html#LiuWCS17,https://doi.org/10.1016/j.automatica.2017.08.003 +Georges Bitsoris,Constrained regulation of linear systems.,1995,31,Automatica,2,db/journals/automatica/automatica31.html#BitsorisV95,https://doi.org/10.1016/0005-1098(94)E0053-K +Torsten Söderström,An indirect prediction error method for system identification.,1991,27,Automatica,1,db/journals/automatica/automatica27.html#SoderstromSF91,https://doi.org/10.1016/0005-1098(91)90019-X +João Bosco Ribeiro do Val,Optimal production with preemption to meet stochastic demand.,1999,35,Automatica,11,db/journals/automatica/automatica35.html#ValS99,https://doi.org/10.1016/S0005-1098(99)00066-7 +Jingxin Zhang,Explicit self-tuning control for a class of non-linear systems.,1989,25,Automatica,4,db/journals/automatica/automatica25.html#ZhangL89,https://doi.org/10.1016/0005-1098(89)90101-5 +Henrik Anfinsen,Stabilization of a linear hyperbolic PDE with actuator and sensor dynamics.,2018,95,Automatica,,db/journals/automatica/automatica95.html#AnfinsenA18b,https://doi.org/10.1016/j.automatica.2018.05.019 +Yong Wan,Practical nonlinear excitation control for a single-machine infinite-bus power system based on a detailed model.,2015,62,Automatica,,db/journals/automatica/automatica62.html#WanJ15,https://doi.org/10.1016/j.automatica.2015.09.002 +Nikolaos Bekiaris-Liberis,Robustness of nonlinear predictor feedback laws to time- and state-dependent delay perturbations.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#Bekiaris-LiberisK13,https://doi.org/10.1016/j.automatica.2013.02.050 +Xian-Ming Zhang,Event-based H∞ filtering for sampled-data systems.,2015,51,Automatica,,db/journals/automatica/automatica51.html#ZhangH15,https://doi.org/10.1016/j.automatica.2014.10.092 +Hong Chen 0003,Moving horizon I control with performance adaptation for constrained linear systems.,2006,42,Automatica,6,db/journals/automatica/automatica42.html#ChenS06,https://doi.org/10.1016/j.automatica.2006.03.001 +Edwin Burmeister,Uniqueness of rest points for optimal control models in economics.,1978,14,Automatica,2,db/journals/automatica/automatica14.html#Burmeister78,https://doi.org/10.1016/0005-1098(78)90021-3 +George S. Axelby,On the computation of transmission zeros of linear multivariable systems.,1976,12,Automatica,5,db/journals/automatica/automatica12.html#AxelbyD76,https://doi.org/10.1016/0005-1098(76)90014-5 +Eduard Eitelberg,Comments on: 'A method for auto-tuning of PID control parameters'.,1985,21,Automatica,4,db/journals/automatica/automatica21.html#Eitelberg85,https://doi.org/10.1016/0005-1098(85)90092-5 +Richard H. Middleton,Slow stable open-loop poles: to cancel or not to cancel.,1999,35,Automatica,5,db/journals/automatica/automatica35.html#MiddletonG99,https://doi.org/10.1016/S0005-1098(98)00220-9 +Zhendong Sun,Stabilizing switching design for switched linear systems: A state-feedback path-wise switching approach.,2009,45,Automatica,7,db/journals/automatica/automatica45.html#Sun09,https://doi.org/10.1016/j.automatica.2009.03.001 +Walter J. M. Kickert,Application of a fuzzy controller in a warm water plant.,1976,12,Automatica,4,db/journals/automatica/automatica12.html#KickertL76,https://doi.org/10.1016/0005-1098(76)90050-9 +Javad Lavaei,Performance improvement of robust controllers for polynomially uncertain systems.,2010,46,Automatica,1,db/journals/automatica/automatica46.html#LavaeiA10,https://doi.org/10.1016/j.automatica.2009.10.007 +N. L. Segall,One-step optimal saturation correction.,1991,27,Automatica,1,db/journals/automatica/automatica27.html#SegallMW91,https://doi.org/10.1016/0005-1098(91)90011-P +Orest V. Iftime,Optimal control of switched distributed parameter systems with spatially scheduled actuators.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#IftimeD09,https://doi.org/10.1016/j.automatica.2008.07.012 +Andrew Packard,The complex structured singular value.,1993,29,Automatica,1,db/journals/automatica/automatica29.html#PackardD93,https://doi.org/10.1016/0005-1098(93)90175-S +Xing Jian Jing,Magnitude bounds of generalized frequency response functions for nonlinear Volterra systems described by NARX model.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#JingLB08,https://doi.org/10.1016/j.automatica.2007.06.020 +William Paul Heath,Multipliers for model predictive control with structured input constraints.,2010,46,Automatica,3,db/journals/automatica/automatica46.html#HeathL10,https://doi.org/10.1016/j.automatica.2010.01.020 +Gianluigi Pillonetto,Fast computation of smoothing splines subject to equality constraints.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#PillonettoC09,https://doi.org/10.1016/j.automatica.2009.07.031 +Theodore J. Williams,The IFAC optimal systems planning symposium.,1969,5,Automatica,2,db/journals/automatica/automatica5.html#Williams69,https://doi.org/10.1016/0005-1098(69)90007-7 +Shogo Tanaka,Optimal timing of observations for state estimation in a one-dimensional linear continuous system.,1985,21,Automatica,3,db/journals/automatica/automatica21.html#TanakaO85,https://doi.org/10.1016/0005-1098(85)90067-6 +Toru Fujinaka,Discrete-time optimal control of systems with unilateral time-delays.,1987,23,Automatica,6,db/journals/automatica/automatica23.html#FujinakaA87,https://doi.org/10.1016/0005-1098(87)90034-3 +Shengyuan Xu,New results on H INFINITY control of discrete singularly perturbed systems.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#XuF09,https://doi.org/10.1016/j.automatica.2009.06.011 +Damir Filipovic,Control of vibrations in multi-mass systems with locally controlled absorbers.,2001,37,Automatica,2,db/journals/automatica/automatica37.html#FilipovicS01,https://doi.org/10.1016/S0005-1098(00)00140-0 +Francesco Ferrante,Stabilization of continuous-time linear systems subject to input quantization.,2015,58,Automatica,,db/journals/automatica/automatica58.html#FerranteGT15,https://doi.org/10.1016/j.automatica.2015.05.015 +Xi Wang,Priority-free conditionally-preemptive scheduling of modular sporadic real-time systems.,2018,89,Automatica,,db/journals/automatica/automatica89.html#WangLW18,https://doi.org/10.1016/j.automatica.2017.12.010 +Minyue Fu,Integral quadratic constraint approach vs. multiplier approach.,2005,41,Automatica,2,db/journals/automatica/automatica41.html#FuDS05,https://doi.org/10.1016/j.automatica.2004.10.005 +Weinan Gao,Output-feedback adaptive optimal control of interconnected systems based on robust adaptive dynamic programming.,2016,72,Automatica,,db/journals/automatica/automatica72.html#GaoJJC16,https://doi.org/10.1016/j.automatica.2016.05.008 +P. M. Taylor,Handbook of industrial robotics: Editor Shimon Y. Nof.,1987,23,Automatica,2,db/journals/automatica/automatica23.html#Taylor87,https://doi.org/10.1016/0005-1098(87)90106-3 +Jonas Jansson,A framework and automotive application of collision avoidance decision making.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#JanssonG08,https://doi.org/10.1016/j.automatica.2008.01.016 +Shayok Mukhopadhyay,A high-gain adaptive observer for detecting Li-ion battery terminal voltage collapse.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#MukhopadhyayZ14,https://doi.org/10.1016/j.automatica.2013.12.011 +Hakki Ulas ünal,A small gain theorem for systems with non-causal subsystems.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#UnalI08,https://doi.org/10.1016/j.automatica.2008.04.005 +Bin Wang,ZOH discretization effect on single-input sliding mode control systems with matched uncertainties.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#WangYC09,https://doi.org/10.1016/j.automatica.2008.05.028 +Zhengyuan Zhou,Cooperative pursuit with Voronoi partitions.,2016,72,Automatica,,db/journals/automatica/automatica72.html#ZhouZDHST16,https://doi.org/10.1016/j.automatica.2016.05.007 +Tengfei Liu,Decentralized output-feedback control of large-scale nonlinear systems with sensor noise.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#LiuJH12a,https://doi.org/10.1016/j.automatica.2012.06.054 +Hong Son Hoang,On the efficient low cost procedure for estimation of high-dimensional prediction error covariance matrices.,2017,83,Automatica,,db/journals/automatica/automatica83.html#HoangB17,https://doi.org/10.1016/j.automatica.2017.06.018 +M. Vidyasagar,Some results on simultaneous stabilization with multiple domains of stability.,1987,23,Automatica,4,db/journals/automatica/automatica23.html#Vidyasagar87,https://doi.org/10.1016/0005-1098(87)90082-3 +Tamás Keviczky,Decentralized receding horizon control for large scale dynamically decoupled systems.,2006,42,Automatica,12,db/journals/automatica/automatica42.html#KeviczkyBB06,https://doi.org/10.1016/j.automatica.2006.07.008 +Daniel E. Davison,Stabilization using pseudolinearization and high-gain feedback.,1997,33,Automatica,2,db/journals/automatica/automatica33.html#DavisonB97,https://doi.org/10.1016/S0005-1098(96)00148-3 +Tianshi Chen,"Comments on ""State estimation for linear systems with state equality constraints"" [Automatica 43 (2007) 1363-1368].",2010,46,Automatica,11,db/journals/automatica/automatica46.html#Chen10a,https://doi.org/10.1016/j.automatica.2010.07.010 +H. Amrehn,Computer control in the polymerization industry.,1977,13,Automatica,5,db/journals/automatica/automatica13.html#Amrehn77,https://doi.org/10.1016/0005-1098(77)90073-5 +William M. McEneaney,Optimization formulation and monotonic solution method for the Witsenhausen problem.,2015,55,Automatica,,db/journals/automatica/automatica55.html#McEneaneyH15,https://doi.org/10.1016/j.automatica.2015.02.026 +Boris E. Dainson,A non-conservative stability test for 2 and** 2 MIMO linear systems under decentralized control.,1993,29,Automatica,2,db/journals/automatica/automatica29.html#DainsonL93,https://doi.org/10.1016/0005-1098(93)90156-N +Yugang Li,Adaptive vibration isolation for axially moving strings: theory and experiment.,2002,38,Automatica,3,db/journals/automatica/automatica38.html#LiAR02,https://doi.org/10.1016/S0005-1098(01)00219-9 +Liuping Wang,Use of PRESS residuals in dynamic system identification.,1996,32,Automatica,5,db/journals/automatica/automatica32.html#WangC96,https://doi.org/10.1016/0005-1098(96)00003-9 +Aldo-Jonathan Munoz-Vazquez,Uniformly continuous differintegral sliding mode control of nonlinear systems subject to Hölder disturbances.,2016,66,Automatica,,db/journals/automatica/automatica66.html#Munoz-VazquezPS16,https://doi.org/10.1016/j.automatica.2016.01.011 +Mario Sznaier,Computational complexity analysis of set membership identification of Hammerstein and Wiener systems.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#Sznaier09,https://doi.org/10.1016/j.automatica.2008.09.026 +Mickaël Hilairet,Speed and rotor flux estimation of induction machines using a two-stage extended Kalman filter.,2009,45,Automatica,8,db/journals/automatica/automatica45.html#HilairetAB09,https://doi.org/10.1016/j.automatica.2009.04.005 +Jaime Glaría,A laboratory plant for feedback theories.,1997,33,Automatica,11,db/journals/automatica/automatica33.html#GlariaM97,https://doi.org/10.1016/S0005-1098(97)00124-6 +Junfeng Wu,Finite-horizon Gaussianity-preserving event-based sensor scheduling in Kalman filter applications.,2016,72,Automatica,,db/journals/automatica/automatica72.html#WuRHSS16,https://doi.org/10.1016/j.automatica.2016.05.013 +Jiangshuai Huang,Adaptive output feedback tracking control of a nonholonomic mobile robot.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#HuangW0J14,https://doi.org/10.1016/j.automatica.2013.12.036 +Salim Ibrir,Observer-based control of a class of time-delay nonlinear systems having triangular structure.,2011,47,Automatica,2,db/journals/automatica/automatica47.html#Ibrir11,https://doi.org/10.1016/j.automatica.2010.10.052 +Huanshui Zhang,An innovation approach to Hinfinity prediction for continuous-time systems with application to systems with delayed measurements.,2004,40,Automatica,7,db/journals/automatica/automatica40.html#ZhangZX04,https://doi.org/10.1016/j.automatica.2004.02.016 +Alexandre S. Bazanella,Necessary and sufficient conditions for uniqueness of the minimum in Prediction Error Identification.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#BazanellaBG12,https://doi.org/10.1016/j.automatica.2012.06.018 +Alejandro Donaire,On the addition of integral action to port-controlled Hamiltonian systems.,2009,45,Automatica,8,db/journals/automatica/automatica45.html#DonaireJ09,https://doi.org/10.1016/j.automatica.2009.04.006 +Wu-Sheng Lu,A staircase model for unknown multivariable systems and design of regulators.,1984,20,Automatica,1,db/journals/automatica/automatica20.html#LuK84,https://doi.org/10.1016/0005-1098(84)90070-0 +Hua Ouyang,Stability analysis and state feedback stabilization of pendulum-like systems with multiple nonlinearities.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#OuyangPU12,https://doi.org/10.1016/j.automatica.2012.06.022 +Steven X. Ding,Data-driven realizations of kernel and image representations and their application to fault detection and control system design.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#DingYZL14,https://doi.org/10.1016/j.automatica.2014.08.022 +Emma Delgado,Sonar-based robot navigation using nonlinear robust observers.,2003,39,Automatica,7,db/journals/automatica/automatica39.html#DelgadoB03,https://doi.org/10.1016/S0005-1098(03)00089-X +Romeo Ortega,On speed control of induction motors.,1996,32,Automatica,3,db/journals/automatica/automatica32.html#OrtegaNE96,https://doi.org/10.1016/0005-1098(95)00171-9 +Mario Eduardo Villanueva,Robust MPC via min-max differential inequalities.,2017,77,Automatica,,db/journals/automatica/automatica77.html#VillanuevaQDCH17,https://doi.org/10.1016/j.automatica.2016.11.022 +Fabio Pasqualetti,Consensus networks over finite fields.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#PasqualettiBB14,https://doi.org/10.1016/j.automatica.2013.11.011 +George A. Rovithakis,Real-time control of manufacturing cells using dynamic neural networks.,1999,35,Automatica,1,db/journals/automatica/automatica35.html#RovithakisGPC99,https://doi.org/10.1016/S0005-1098(98)00139-3 +Oswaldo Luiz V. Costa,Optimal mean-variance control for discrete-time linear systems with Markovian jumps and multiplicative noises.,2012,48,Automatica,2,db/journals/automatica/automatica48.html#CostaO12,https://doi.org/10.1016/j.automatica.2011.11.009 +Jirí Benes,Automatic cooperative control of a group of mobiles.,1978,14,Automatica,4,db/journals/automatica/automatica14.html#BenesK78,https://doi.org/10.1016/0005-1098(78)90031-6 +Sina Yamac Caliskan,Towards Kron reduction of generalized electrical networks.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#CaliskanT14,https://doi.org/10.1016/j.automatica.2014.08.017 +Koichi Kobayashi,An integer programming approach to optimal control problems in context-sensitive probabilistic Boolean networks.,2011,47,Automatica,6,db/journals/automatica/automatica47.html#KobayashiH11,https://doi.org/10.1016/j.automatica.2011.01.035 +Antonio A. Alonso,Stabilization of distributed systems using irreversible thermodynamics.,2001,37,Automatica,11,db/journals/automatica/automatica37.html#AlonsoY01,https://doi.org/10.1016/S0005-1098(01)00140-6 +Daniel Tabak,Identification of unknown parameters in cash flow systems of insurance.,1976,12,Automatica,1,db/journals/automatica/automatica12.html#TabakRC76,https://doi.org/10.1016/0005-1098(76)90067-4 +Rogelio Lozano,Singularity-free adaptive pole-placement without resorting to persistency of excitation : Detailed analysis for first order systems.,1992,28,Automatica,1,db/journals/automatica/automatica28.html#Lozano92,https://doi.org/10.1016/0005-1098(92)90004-Y +Willem L. De Koning,Digital optimal reduced-order control of pulse-width-modulated switched linear systems.,2003,39,Automatica,11,db/journals/automatica/automatica39.html#Koning03,https://doi.org/10.1016/S0005-1098(03)00221-8 +Mazen Alamir,A framework for real-time implementation of low-dimensional parameterized NMPC.,2012,48,Automatica,1,db/journals/automatica/automatica48.html#Alamir12,https://doi.org/10.1016/j.automatica.2011.09.046 +Anton V. Proskurnikov,Consensus in switching networks with sectorial nonlinear couplings: Absolute stability approach.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#Proskurnikov13,https://doi.org/10.1016/j.automatica.2012.11.021 +Boris I. Godoy,On identification of FIR systems having quantized output data.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#GodoyGAMW11,https://doi.org/10.1016/j.automatica.2011.06.008 +Jianglin Lan,A new strategy for integration of fault estimation within fault-tolerant control.,2016,69,Automatica,,db/journals/automatica/automatica69.html#LanP16,https://doi.org/10.1016/j.automatica.2016.02.014 +Peter Kopacek,Applied robotic analysis: Robert E. Parkin.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#Kopacek93,https://doi.org/10.1016/0005-1098(93)90118-D +Xu Zhang 0007,Adaptive output feedback control for a class of large-scale nonlinear time-delay systems.,2015,52,Automatica,,db/journals/automatica/automatica52.html#ZhangL15,https://doi.org/10.1016/j.automatica.2014.10.116 +Haibin Sun,Disturbance attenuation and rejection for stochastic Markovian jump system with partially known transition probabilities.,2018,89,Automatica,,db/journals/automatica/automatica89.html#SunLZH18,https://doi.org/10.1016/j.automatica.2017.12.046 +Rob H. Gielen,Tractable Razumikhin-type conditions for input-to-state stability analysis of delay difference inclusions.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#GielenTL13,https://doi.org/10.1016/j.automatica.2012.11.048 +Andreas A. Malikopoulos,A decentralized energy-optimal control framework for connected automated vehicles at signal-free intersections.,2018,93,Automatica,,db/journals/automatica/automatica93.html#MalikopoulosCZ18,https://doi.org/10.1016/j.automatica.2018.03.056 +R. Bhushan Gopaluni,The nature of data pre-filters in MPC relevant identification - open- and closed-loop issues.,2003,39,Automatica,9,db/journals/automatica/automatica39.html#GopaluniPS03,https://doi.org/10.1016/S0005-1098(03)00146-8 +Akshay Kashyap,Quantized consensus.,2007,43,Automatica,7,db/journals/automatica/automatica43.html#KashyapBS07,https://doi.org/10.1016/j.automatica.2007.01.002 +Tamer Basar,Introduction to differential games and control theory : V. N. Lagunov.,1986,22,Automatica,6,db/journals/automatica/automatica22.html#Basar86,https://doi.org/10.1016/0005-1098(86)90019-1 +Franco Blanchini,Robust performance with fixed and worst-case signals for uncertain time-varying systems.,1997,33,Automatica,12,db/journals/automatica/automatica33.html#BlanchiniMS97,https://doi.org/10.1016/S0005-1098(97)00136-2 +Luis Orihuela,Negotiated distributed estimation with guaranteed performance for bandwidth-limited situations.,2018,87,Automatica,,db/journals/automatica/automatica87.html#OrihuelaMRG18,https://doi.org/10.1016/j.automatica.2017.09.022 +Wenjie Dong,On consensus algorithms of multiple uncertain mechanical systems with a reference trajectory.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#Dong11,https://doi.org/10.1016/j.automatica.2011.05.025 +M. Fabian,Mutually nonblocking supervisory control of discrete event systems.,2000,36,Automatica,12,db/journals/automatica/automatica36.html#FabianK00,https://doi.org/10.1016/S0005-1098(00)00102-3 +L. S. Kershenbaum,Authors' reply.,1983,19,Automatica,3,db/journals/automatica/automatica19.html#KershenbaumY83,https://doi.org/10.1016/0005-1098(83)90118-8 +Yueyun Lu,A piecewise smooth control-Lyapunov function framework for switching stabilization.,2017,76,Automatica,,db/journals/automatica/automatica76.html#LuZ17,https://doi.org/10.1016/j.automatica.2016.09.029 +Yorai Wardi,IPA for continuous stochastic marked graphs.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#WardiGS13,https://doi.org/10.1016/j.automatica.2013.02.006 +Tatiana Kharkovskaya,Design of interval observers and controls for PDEs using finite-element approximations.,2018,93,Automatica,,db/journals/automatica/automatica93.html#KharkovskayaEPR18,https://doi.org/10.1016/j.automatica.2018.03.016 +Kwan Ho Lee,Robust H2 optimal filtering for continuous-time stochastic systems with polytopic parameter uncertainty.,2008,44,Automatica,10,db/journals/automatica/automatica44.html#LeeH08,https://doi.org/10.1016/j.automatica.2008.02.025 +Umberto Di Caprio,Conditions for theoretical coherency in multimachine power systems.,1981,17,Automatica,5,db/journals/automatica/automatica17.html#Caprio81,https://doi.org/10.1016/0005-1098(81)90016-9 +Giuseppe C. Calafiore,Leading impulse response identification via the Elastic Net criterion.,2017,80,Automatica,,db/journals/automatica/automatica80.html#CalafioreNT17,https://doi.org/10.1016/j.automatica.2017.01.011 +Yu-Ping Tian,A general stability criterion for congestion control with diverse communication delays.,2005,41,Automatica,7,db/journals/automatica/automatica41.html#Tian05,https://doi.org/10.1016/j.automatica.2005.02.007 +Salim Ibrir,A projection-based algorithm for model-order reduction with H2 performance: A convex-optimization setting.,2018,93,Automatica,,db/journals/automatica/automatica93.html#Ibrir18,https://doi.org/10.1016/j.automatica.2018.03.052 +Serkan Gugercin,Krylov projection framework for Fourier model reduction.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#GugercinW08,https://doi.org/10.1016/j.automatica.2007.05.007 +Marco Tulio Angulo,Robust exact uniformly convergent arbitrary order differentiator.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#AnguloMF13,https://doi.org/10.1016/j.automatica.2013.04.034 +Le Van Hien,New finite-sum inequalities with applications to stability of discrete time-delay systems.,2016,71,Automatica,,db/journals/automatica/automatica71.html#HienT16,https://doi.org/10.1016/j.automatica.2016.04.049 +P. J. Vermeulen,Growth in a finite world - a comprehensive sensitivity analysis.,1977,13,Automatica,1,db/journals/automatica/automatica13.html#VermeulenJ77,https://doi.org/10.1016/0005-1098(77)90010-3 +Vincent Verdult,Subspace identification of multivariable linear parameter-varying systems.,2002,38,Automatica,5,db/journals/automatica/automatica38.html#VerdultV02,https://doi.org/10.1016/S0005-1098(01)00268-0 +David Angeli,An ellipsoidal off-line MPC scheme for uncertain polytopic discrete-time systems.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#AngeliCFM08,https://doi.org/10.1016/j.automatica.2008.04.027 +Job van Amerongen,Adaptive steering of ships - A model reference approach.,1984,20,Automatica,1,db/journals/automatica/automatica20.html#Amerongen84,https://doi.org/10.1016/0005-1098(84)90060-8 +Joseph K. Scott,Input design for guaranteed fault diagnosis using zonotopes.,2014,50,Automatica,6,db/journals/automatica/automatica50.html#ScottFBR14,https://doi.org/10.1016/j.automatica.2014.03.016 +Jindong Tan,A singularity-free motion control algorithm for robot manipulators - a hybrid system approach.,2004,40,Automatica,7,db/journals/automatica/automatica40.html#TanXW04,https://doi.org/10.1016/j.automatica.2004.02.013 +Xiao He 0001,Robust fault detection for networked systems with communication delay and data missing.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#HeWZ09,https://doi.org/10.1016/j.automatica.2009.07.020 +Tianshi Chen,On the stability of reproducing kernel Hilbert spaces of discrete-time impulse responses.,2018,95,Automatica,,db/journals/automatica/automatica95.html#ChenP18,https://doi.org/10.1016/j.automatica.2018.05.017 +Chee Pin Tan,Extended results on robust state estimation and fault detection.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#TanCA08,https://doi.org/10.1016/j.automatica.2007.11.012 +Min-Sung Koo,Universal control of nonlinear systems with unknown nonlinearity and growth rate by adaptive output feedback.,2011,47,Automatica,10,db/journals/automatica/automatica47.html#KooCL11,https://doi.org/10.1016/j.automatica.2011.07.002 +Saïd Djennoune,Optimal synergetic control for fractional-order systems.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#DjennouneB13,https://doi.org/10.1016/j.automatica.2013.04.007 +Alan R. Weston,Altitude transitions in energy climbs.,1983,19,Automatica,2,db/journals/automatica/automatica19.html#WestonCK83,https://doi.org/10.1016/0005-1098(83)90092-4 +Yue-xin Zhu,The parameter identification of a population model of China.,1984,20,Automatica,4,db/journals/automatica/automatica20.html#ZhuW84,https://doi.org/10.1016/0005-1098(84)90100-6 +Didier Henrion,Positive trigonometric polynomials for strong stability of difference equations.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#HenrionV12,https://doi.org/10.1016/j.automatica.2012.06.021 +Mark L. Darby,A parametric programming approach to moving-horizon state estimation.,2007,43,Automatica,5,db/journals/automatica/automatica43.html#DarbyN07,https://doi.org/10.1016/j.automatica.2006.11.021 +Denis V. Efimov,Interval estimation for LPV systems applying high order sliding mode techniques.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#EfimovFRZS12,https://doi.org/10.1016/j.automatica.2012.06.073 +Björn Johansson 0003,On decentralized negotiation of optimal consensus.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#JohanssonSJJ08,https://doi.org/10.1016/j.automatica.2007.09.003 +S. O. Reza Moheimani,Minimizing the effect of out-of-bandwidth dynamics in the models of reverberant systems that arise in modal analysis: implications on spatial H Control.,2000,36,Automatica,7,db/journals/automatica/automatica36.html#Moheimani00,https://doi.org/10.1016/S0005-1098(00)00012-1 +Xiao Zhao,On the relation between continuous and discrete nonlinear parametric models.,1997,33,Automatica,1,db/journals/automatica/automatica33.html#ZhaoM97,https://doi.org/10.1016/S0005-1098(96)00132-X +Pablo A. Parrilo,Mixed Time/Frequency-Domain Based Robust Identification.,1998,34,Automatica,11,db/journals/automatica/automatica34.html#ParriloSPI98,https://doi.org/10.1016/S0005-1098(98)00083-1 +Peter E. Wellstead,The ball and hoop system.,1983,19,Automatica,4,db/journals/automatica/automatica19.html#Wellstead83,https://doi.org/10.1016/0005-1098(83)90054-7 +Jing Zhou,Adaptive control of uncertain nonlinear systems with quantized input signal.,2018,95,Automatica,,db/journals/automatica/automatica95.html#ZhouWW18,https://doi.org/10.1016/j.automatica.2018.05.014 +Li Xia,Optimization of Markov decision processes under the variance criterion.,2016,73,Automatica,,db/journals/automatica/automatica73.html#Xia16,https://doi.org/10.1016/j.automatica.2016.06.018 +Shu Liang,Distributed Nash equilibrium seeking for aggregative games with coupled constraints.,2017,85,Automatica,,db/journals/automatica/automatica85.html#LiangYH17,https://doi.org/10.1016/j.automatica.2017.07.064 +Christiaan Moons,Parameter identification of induction motor drives.,1995,31,Automatica,8,db/journals/automatica/automatica31.html#MoonsM95,https://doi.org/10.1016/0005-1098(95)00016-P +Liang Dai,Identifiability and convergence analysis of the MINLIP estimator.,2015,51,Automatica,,db/journals/automatica/automatica51.html#DaiPB15,https://doi.org/10.1016/j.automatica.2014.10.091 +Tao Liu 0002,A generalized relay identification method for time delay and non-minimum phase processes.,2009,45,Automatica,4,db/journals/automatica/automatica45.html#LiuG09,https://doi.org/10.1016/j.automatica.2008.11.024 +Mehdi Lhommeau,Interval analysis and dioid: application to robust controller design for timed event graphs.,2004,40,Automatica,11,db/journals/automatica/automatica40.html#LhommeauHCJ04,https://doi.org/10.1016/j.automatica.2004.05.013 +Claire Valentin,A port-Hamiltonian formulation of physical switching systems with varying constraints.,2007,43,Automatica,7,db/journals/automatica/automatica43.html#ValentinMM07,https://doi.org/10.1016/j.automatica.2006.12.022 +Wei Xu,Optimal switching for linear quadratic problem of switched systems in discrete time.,2017,78,Automatica,,db/journals/automatica/automatica78.html#XuFPY17,https://doi.org/10.1016/j.automatica.2016.12.002 +Peter M. Kort,Brand image and brand dilution in the fashion industry.,2006,42,Automatica,8,db/journals/automatica/automatica42.html#KortCHF06,https://doi.org/10.1016/j.automatica.2005.10.002 +Saverio Messineo,Offshore crane control based on adaptive external models.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#MessineoS09,https://doi.org/10.1016/j.automatica.2009.07.032 +Van Thang Pham,Receding horizon boundary control of nonlinear conservation laws with shock avoidance.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#PhamGB12,https://doi.org/10.1016/j.automatica.2012.06.025 +Kuo-Chu Chang,Distributed adaptive estimation with probabilistic data association.,1989,25,Automatica,3,db/journals/automatica/automatica25.html#ChangB89,https://doi.org/10.1016/0005-1098(89)90004-6 +Brian D. O. Anderson,On model reduction of discrete time systems.,1986,22,Automatica,6,db/journals/automatica/automatica22.html#AndersonJM86,https://doi.org/10.1016/0005-1098(86)90009-9 +A. Bellini,Analysis and design of a microcomputer-based observer for an induction machine.,1988,24,Automatica,4,db/journals/automatica/automatica24.html#BelliniFU88,https://doi.org/10.1016/0005-1098(88)90099-4 +Mario A. Rotea,The generalized H2 control problem.,1993,29,Automatica,2,db/journals/automatica/automatica29.html#Rotea93,https://doi.org/10.1016/0005-1098(93)90130-L +Eoin Devane,Delay-independent incremental stability in time-varying monotone systems satisfying a generalized condition of two-sided scalability.,2017,76,Automatica,,db/journals/automatica/automatica76.html#DevaneL17,https://doi.org/10.1016/j.automatica.2016.07.044 +Shaohua Tan,Modern control system theory and design: Stanley M. Shinners.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#Tan93,https://doi.org/10.1016/0005-1098(93)90034-Q +Huibert Kwakernaak,On-line iterative optimization of stochastic control systems.,1965,2,Automatica,3,db/journals/automatica/automatica2.html#Kwakernaak65,https://doi.org/10.1016/0005-1098(65)90010-5 +Torbjörn Wigren,Recursive prediction error identification using the nonlinear wiener model.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#Wigren93,https://doi.org/10.1016/0005-1098(93)90103-Z +Yan-Wu Wang,Synchronization of complex dynamical networks under recoverable attacks.,2010,46,Automatica,1,db/journals/automatica/automatica46.html#WangWXG10,https://doi.org/10.1016/j.automatica.2009.10.024 +Feng Zheng,Variable structure control of time-delay systems with a simulation study on stabilizing combustion in liquid propellant rocket motors.,1995,31,Automatica,7,db/journals/automatica/automatica31.html#ZhengCG95,https://doi.org/10.1016/0005-1098(95)00012-L +Alejandro I. Maass,Optimal control over multiple erasure channels using a data dropout compensation scheme.,2016,68,Automatica,,db/journals/automatica/automatica68.html#MaassVS16,https://doi.org/10.1016/j.automatica.2016.01.061 +Jun Fu,Local optimization of dynamic programs with guaranteed satisfaction of path constraints.,2015,62,Automatica,,db/journals/automatica/automatica62.html#FuFCM15,https://doi.org/10.1016/j.automatica.2015.09.013 +Hua Xu 0002,Infinite-horizon differential games of singularly perturbed systems: A unified approach.,1997,33,Automatica,2,db/journals/automatica/automatica33.html#XuM97,https://doi.org/10.1016/S0005-1098(96)00173-2 +Sean Summers,Stochastic system controller synthesis for reachability specifications encoded by random sets.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#SummersKTL13,https://doi.org/10.1016/j.automatica.2013.06.016 +Amol Sasane,Stability of switching infinite-dimensional systems.,2005,41,Automatica,1,db/journals/automatica/automatica41.html#Sasane05,https://doi.org/10.1016/j.automatica.2004.07.013 +Eduardo I. Silva,Control system design subject to SNR constraints.,2010,46,Automatica,2,db/journals/automatica/automatica46.html#SilvaGQ10,https://doi.org/10.1016/j.automatica.2009.12.001 +Johan Schoukens,Study of conditional ML estimators in time and frequency-domain system identification.,1999,35,Automatica,1,db/journals/automatica/automatica35.html#SchoukensPR99,https://doi.org/10.1016/S0005-1098(98)00140-X +Fyodor A. Mikhailov,On Zadeh's block-diagram algebra.,1976,12,Automatica,1,db/journals/automatica/automatica12.html#Mikhailov76,https://doi.org/10.1016/0005-1098(76)90072-8 +Winfried Lohmiller,On Contraction Analysis for Non-linear Systems.,1998,34,Automatica,6,db/journals/automatica/automatica34.html#LohmillerS98,https://doi.org/10.1016/S0005-1098(98)00019-3 +Tomás Oliveira e Silva,On the asymptotic eigenvalue distribution of Block-Toeplitz matrices related to the generalized orthonormal basis functions model.,1999,35,Automatica,10,db/journals/automatica/automatica35.html#Silva99,https://doi.org/10.1016/S0005-1098(99)00075-8 +Markus Schöberl,On an implicit triangular decomposition of nonlinear control systems that are 1-flat - A constructive approach.,2014,50,Automatica,6,db/journals/automatica/automatica50.html#SchoberlS14a,https://doi.org/10.1016/j.automatica.2014.04.007 +Fernando de Oliveira Souza,A simple necessary and sufficient LMI condition for the strong delay-independent stability of LTI systems with single delay.,2018,89,Automatica,,db/journals/automatica/automatica89.html#SouzaOP18,https://doi.org/10.1016/j.automatica.2017.11.006 +Yongduan Song,Time-varying feedback for regulation of normal-form nonlinear systems in prescribed finite time.,2017,83,Automatica,,db/journals/automatica/automatica83.html#SongWHK17,https://doi.org/10.1016/j.automatica.2017.06.008 +Madan M. Gupta,Report on the third IFAC round table discussion session (RT-15) on fuzzy decision making and applications at the seventh IFAC world congress.,1979,15,Automatica,3,db/journals/automatica/automatica15.html#Gupta79,https://doi.org/10.1016/0005-1098(79)90058-X +Zhihua Qu,Robust state observer and control design using command-to-state mapping.,2005,41,Automatica,8,db/journals/automatica/automatica41.html#Qu05,https://doi.org/10.1016/j.automatica.2005.03.021 +Tengfei Liu,A sector bound approach to feedback control of nonlinear systems with state quantization.,2012,48,Automatica,1,db/journals/automatica/automatica48.html#LiuJH12,https://doi.org/10.1016/j.automatica.2011.09.041 +Daizhan Cheng,Non-regular feedback linearization of nonlinear systems via a normal form algorithm.,2004,40,Automatica,3,db/journals/automatica/automatica40.html#ChengHW04,https://doi.org/10.1016/j.automatica.2003.10.014 +Veronica Adetola,Parameter convergence in adaptive extremum-seeking control.,2007,43,Automatica,1,db/journals/automatica/automatica43.html#AdetolaG07,https://doi.org/10.1016/j.automatica.2006.07.021 +Zoran Gajic,Study of the discrete singularly perturbed linear-quadratic control problem by a bilinear transformation.,1991,27,Automatica,6,db/journals/automatica/automatica27.html#GajicS91,https://doi.org/10.1016/0005-1098(91)90136-P +Quang Phuc Ha,State and input simultaneous estimation for a class of nonlinear systems.,2004,40,Automatica,10,db/journals/automatica/automatica40.html#HaT04,https://doi.org/10.1016/j.automatica.2004.05.012 +Jie Yu,Comparison of nonlinear control design techniques on a model of the Caltech ducted fan.,2001,37,Automatica,12,db/journals/automatica/automatica37.html#YuJPH01,https://doi.org/10.1016/S0005-1098(01)00149-2 +Duan Li 0002,Hierarchical control for large-scale systems with general multiple linear-quadratic structure.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#Li93a,https://doi.org/10.1016/0005-1098(93)90009-I +Masasumi Kokawa,Fault location using digraph and inverse direction search with application.,1983,19,Automatica,6,db/journals/automatica/automatica19.html#KokawaMS83,https://doi.org/10.1016/0005-1098(83)90039-0 +Zhihua Qu,Robust control of cascaded and individually feedback linearizable nonlinear systems.,1994,30,Automatica,6,db/journals/automatica/automatica30.html#QuD94,https://doi.org/10.1016/0005-1098(94)90201-1 +Wuquan Li,Cooperative control of multiple stochastic high-order nonlinear systems.,2017,82,Automatica,,db/journals/automatica/automatica82.html#LiLF17,https://doi.org/10.1016/j.automatica.2017.04.052 +Flemming Buchholt,Self-tuning control of a pH-neutralization process.,1979,15,Automatica,6,db/journals/automatica/automatica15.html#BuchholtK79,https://doi.org/10.1016/0005-1098(79)90034-7 +Wuhua Hu,Self-clocking principle for congestion control in the Internet.,2012,48,Automatica,2,db/journals/automatica/automatica48.html#HuX12,https://doi.org/10.1016/j.automatica.2011.11.007 +Per Olof Gutman,Classification by varying features with an erring sensor.,1994,30,Automatica,12,db/journals/automatica/automatica30.html#GutmanPB94,https://doi.org/10.1016/0005-1098(94)90054-X +Miomir Vukobratovic,Stabilizing position/force control of robots interacting with environment by learning connectionist structures.,1996,32,Automatica,12,db/journals/automatica/automatica32.html#VukobratovicK96,https://doi.org/10.1016/S0005-1098(96)80012-4 +Yun-Feng Cai,Robust partial pole assignment problem for high order control systems.,2012,48,Automatica,7,db/journals/automatica/automatica48.html#CaiQX12,https://doi.org/10.1016/j.automatica.2012.05.015 +Silvia Mastellone,Formation control and coordinated tracking via asymptotic decoupling for Lagrangian multi-agent systems.,2011,47,Automatica,11,db/journals/automatica/automatica47.html#MastelloneMSS11,https://doi.org/10.1016/j.automatica.2011.08.030 +Qing Hui,Distributed nonlinear control algorithms for network consensus.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#HuiH08,https://doi.org/10.1016/j.automatica.2008.01.011 +Dan Ivanescu,On delay-dependent stability for linear neutral systems.,2003,39,Automatica,2,db/journals/automatica/automatica39.html#IvanescuNDDV03,https://doi.org/10.1016/S0005-1098(02)00227-3 +Masami Saeki,Stability analysis of feedback systems with dead-zone nonlinearities by circle and Popov criteria.,2016,66,Automatica,,db/journals/automatica/automatica66.html#SaekiWS16,https://doi.org/10.1016/j.automatica.2015.12.020 +Sasa V. Rakovic,Minkowski terminal cost functions for MPC.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#RakovicL12,https://doi.org/10.1016/j.automatica.2012.06.075 +Jinghao Li,A linear switching function approach to sliding mode control and observation of descriptor systems.,2018,95,Automatica,,db/journals/automatica/automatica95.html#LiZ18,https://doi.org/10.1016/j.automatica.2018.05.031 +Jianhong Xu,On the iterative refinement of matrix upper bounds for the solution of continuous coupled algebraic Riccati equations.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#XuX13,https://doi.org/10.1016/j.automatica.2013.03.022 +V. Hovelaque,Zeros of structured linear systems.,1999,35,Automatica,10,db/journals/automatica/automatica35.html#HovelaqueCD99,https://doi.org/10.1016/S0005-1098(99)00085-0 +Vaithianathan Venkatasubramanian,Numerical Approximation of (n-1)-Dimensional Stable Manifolds in Large Systems such as the Power System.,1997,33,Automatica,10,db/journals/automatica/automatica33.html#VenkatasubramanianJ97,https://doi.org/10.1016/S0005-1098(97)00094-0 +Gang Tao,Optimal and nonlinear decoupling control of systems with sandwiched backlash.,2001,37,Automatica,2,db/journals/automatica/automatica37.html#TaoML01,https://doi.org/10.1016/S0005-1098(00)00153-9 +Tamer Basar,A time of transition.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#Basar14b,https://doi.org/10.1016/j.automatica.2014.10.001 +Krzysztof J. Latawiec,On low frequency and long-run effects in self-tuning control.,1983,19,Automatica,4,db/journals/automatica/automatica19.html#LatawiecC83,https://doi.org/10.1016/0005-1098(83)90057-2 +Chenggui Yuan,Robust stability and controllability of stochastic differential delay equations with Markovian switching.,2004,40,Automatica,3,db/journals/automatica/automatica40.html#YuanM04,https://doi.org/10.1016/j.automatica.2003.10.012 +Liang Xu,Consensusability of discrete-time linear multi-agent systems over analog fading networks.,2016,71,Automatica,,db/journals/automatica/automatica71.html#XuXX16,https://doi.org/10.1016/j.automatica.2016.04.043 +David Q. Mayne,A new algorithm for recursive estimation of parameters in controlled ARMA processes.,1984,20,Automatica,6,db/journals/automatica/automatica20.html#MayneAC84,https://doi.org/10.1016/0005-1098(84)90084-0 +Paul F. Weston,Linear conditioning for systems containing saturating actuators.,2000,36,Automatica,9,db/journals/automatica/automatica36.html#WestonP00,https://doi.org/10.1016/S0005-1098(00)00044-3 +Paul Kabaila,On system identification for linear minimum variance prediction or control.,1990,26,Automatica,3,db/journals/automatica/automatica26.html#Kabaila90,https://doi.org/10.1016/0005-1098(90)90039-K +Matthew Philippe,Stability of discrete-time switching systems with constrained switching sequences.,2016,72,Automatica,,db/journals/automatica/automatica72.html#PhilippeEDJ16,https://doi.org/10.1016/j.automatica.2016.05.015 +Lennart Ljung,Frequency domain versus time domain methods in system identification.,1981,17,Automatica,1,db/journals/automatica/automatica17.html#LjungG81,https://doi.org/10.1016/0005-1098(81)90085-6 +Dietmar Bauer,Consistency and asymptotic normality of some subspace algorithms for systems without observed inputs.,1999,35,Automatica,7,db/journals/automatica/automatica35.html#BauerDS99,https://doi.org/10.1016/S0005-1098(99)00031-X +Job van Amerongen,Rudder roll stabilization for ships.,1990,26,Automatica,4,db/journals/automatica/automatica26.html#AmerongenKL90,https://doi.org/10.1016/0005-1098(90)90045-J +Pierre-Jean Meyer,Robust controlled invariance for monotone systems: Application to ventilation regulation in buildings.,2016,70,Automatica,,db/journals/automatica/automatica70.html#MeyerGW16,https://doi.org/10.1016/j.automatica.2016.03.004 +A. K. Schierwagen,Identification problems in distributed parameter neuron models.,1990,26,Automatica,4,db/journals/automatica/automatica26.html#Schierwagen90,https://doi.org/10.1016/0005-1098(90)90050-R +María Barbero-Liñán,New high order sufficient conditions for configuration tracking.,2015,62,Automatica,,db/journals/automatica/automatica62.html#Barbero-LinanS15,https://doi.org/10.1016/j.automatica.2015.09.032 +Abhisek K. Behera,Steady-state behaviour of discretized terminal sliding mode.,2015,54,Automatica,,db/journals/automatica/automatica54.html#BeheraB15,https://doi.org/10.1016/j.automatica.2015.02.009 +Ryozo Nagamune,Sensitivity shaping with degree constraint by nonlinear least-squares optimization.,2005,41,Automatica,7,db/journals/automatica/automatica41.html#NagamuneB05,https://doi.org/10.1016/j.automatica.2005.01.017 +Dragoslav D. Siljak,Parameter analysis of absolute stability.,1969,5,Automatica,3,db/journals/automatica/automatica5.html#Siljak69,https://doi.org/10.1016/0005-1098(69)90079-X +Basil Kouvaritakis,The use of walsh functions in multivariable limit cycle prediction.,1983,19,Automatica,5,db/journals/automatica/automatica19.html#KouvaritakisC83,https://doi.org/10.1016/0005-1098(83)90006-7 +Swaroop Darbha,On the synthesis of controllers for continuous time LTI systems that achieve a non-negative impulse response.,2003,39,Automatica,1,db/journals/automatica/automatica39.html#Darbha03,https://doi.org/10.1016/S0005-1098(02)00202-9 +Yinghua Zhang,Extremum seeking control of a nonholonomic system with sensor constraints.,2016,70,Automatica,,db/journals/automatica/automatica70.html#ZhangMG16,https://doi.org/10.1016/j.automatica.2016.03.001 +Madan G. Singh,A two level prediction algorithm for non-linear systems.,1977,13,Automatica,1,db/journals/automatica/automatica13.html#SinghH77,https://doi.org/10.1016/0005-1098(77)90013-9 +Mahmut Reyhanoglu,Exponential stabilization of an underactuated autonomous surface vessel.,1997,33,Automatica,12,db/journals/automatica/automatica33.html#Reyhanoglu97,https://doi.org/10.1016/S0005-1098(97)00141-6 +Byung-Gun Park,Robust one-step receding horizon control of discrete-time Markovian jump uncertain systems.,2002,38,Automatica,7,db/journals/automatica/automatica38.html#ParkK02,https://doi.org/10.1016/S0005-1098(02)00017-1 +Jin Heon Seo,Consensus of high-order linear systems using dynamic output feedback compensator: Low gain approach.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#SeoSB09,https://doi.org/10.1016/j.automatica.2009.07.022 +Delphine Bresch-Pietri,Adaptive control scheme for uncertain time-delay systems.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#Bresch-PietriCP12,https://doi.org/10.1016/j.automatica.2012.05.056 +Wen-an Zhang,Multi-rate distributed fusion estimation for sensor networks with packet losses.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#ZhangFY12,https://doi.org/10.1016/j.automatica.2012.06.027 +Michel Kinnaert,Robust fault detection based on observers for bilinear systems.,1999,35,Automatica,11,db/journals/automatica/automatica35.html#Kinnaert99,https://doi.org/10.1016/S0005-1098(99)00067-9 +J. C. A. de Bruin,Control of mechanical motion systems with non-collocation of actuation and friction: A Popov criterion approach for input-to-state stability and set-valued nonlinearities.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#BruinDWHN09,https://doi.org/10.1016/j.automatica.2008.09.008 +Xuya Cong,On-line verification of current-state opacity by Petri nets and integer linear programming.,2018,94,Automatica,,db/journals/automatica/automatica94.html#CongFML18,https://doi.org/10.1016/j.automatica.2018.04.021 +Ji Liu 0001,Analysis of accelerated gossip algorithms.,2013,49,Automatica,4,db/journals/automatica/automatica49.html#LiuACM13,https://doi.org/10.1016/j.automatica.2013.01.001 +Matthew S. Hölzel,A matrix nullspace approach for solving equality-constrained multivariable polynomial least-squares problems.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#HolzelB14,https://doi.org/10.1016/j.automatica.2014.10.039 +Patrizio Colaneri,The realization problem for linear periodic systems.,1995,31,Automatica,5,db/journals/automatica/automatica31.html#ColaneriL95,https://doi.org/10.1016/0005-1098(94)00155-C +Karl Johan åström,Design of PI Controllers based on Non-Convex Optimization.,1998,34,Automatica,5,db/journals/automatica/automatica34.html#AstromPH98,https://doi.org/10.1016/S0005-1098(98)00011-9 +Syed Talha Jawaid,Submodularity and greedy algorithms in sensor scheduling for linear dynamical systems.,2015,61,Automatica,,db/journals/automatica/automatica61.html#JawaidS15,https://doi.org/10.1016/j.automatica.2015.08.022 +Dong Hwan Lee,Approaches to extended non-quadratic stability and stabilization conditions for discrete-time Takagi-Sugeno fuzzy systems.,2011,47,Automatica,3,db/journals/automatica/automatica47.html#LeePJ11,https://doi.org/10.1016/j.automatica.2010.10.029 +G. L. Santosuosso,Passivity of nonlinear systems with input-output feedthrough.,1997,33,Automatica,4,db/journals/automatica/automatica33.html#Santosuosso97,https://doi.org/10.1016/S0005-1098(96)00200-2 +Shin Kawai,General mapping discrete-time models of a descriptor system with an arbitrary initial condition.,2018,87,Automatica,,db/journals/automatica/automatica87.html#KawaiH18,https://doi.org/10.1016/j.automatica.2017.09.005 +Haibo Du,Recursive design of finite-time convergent observers for a class of time-varying nonlinear systems.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#DuQYL13,https://doi.org/10.1016/j.automatica.2012.11.036 +Abdelkader Abdessameud,Global trajectory tracking control of VTOL-UAVs without linear velocity measurements.,2010,46,Automatica,6,db/journals/automatica/automatica46.html#AbdessameudT10,https://doi.org/10.1016/j.automatica.2010.03.010 +Catherine Bonnet,Stabilization of some fractional delay systems of neutral type.,2007,43,Automatica,12,db/journals/automatica/automatica43.html#BonnetP07,https://doi.org/10.1016/j.automatica.2007.03.017 +H. H. Rosenbrock,The future of control.,1977,13,Automatica,4,db/journals/automatica/automatica13.html#Rosenbrock77,https://doi.org/10.1016/0005-1098(77)90022-X +Kenneth D. Mease,Geometric synthesis of aerospace plane ascent guidance logic.,1994,30,Automatica,12,db/journals/automatica/automatica30.html#MeaseB94,https://doi.org/10.1016/0005-1098(94)90046-9 +Adriano Da Silva,Robustness of critical bit rates for practical stabilization of networked control systems.,2018,93,Automatica,,db/journals/automatica/automatica93.html#SilvaK18,https://doi.org/10.1016/j.automatica.2018.03.042 +Frédéric Rotella,Minimal single linear functional observers for linear systems.,2011,47,Automatica,1,db/journals/automatica/automatica47.html#RotellaZ11,https://doi.org/10.1016/j.automatica.2010.10.027 +Zijad Aganovic,Optimal control of weakly coupled bilinear systems.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#AganovicG93,https://doi.org/10.1016/0005-1098(93)90026-P +Zhao-Yan Li,On exponential stability of integral delay systems.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#LiZL13,https://doi.org/10.1016/j.automatica.2013.08.004 +Nael H. El-Farra,Uniting bounded control and MPC for stabilization of constrained linear systems.,2004,40,Automatica,1,db/journals/automatica/automatica40.html#El-FarraMC04,https://doi.org/10.1016/j.automatica.2003.08.002 +Moisés Bonilla Estrada,On the control of linear systems having internal variations.,2003,39,Automatica,11,db/journals/automatica/automatica39.html#EstradaM03,https://doi.org/10.1016/S0005-1098(03)00222-X +Yen-Chen Liu,On stability and regulation performance for flexible-joint robots with input/output communication delays.,2014,50,Automatica,6,db/journals/automatica/automatica50.html#LiuC14,https://doi.org/10.1016/j.automatica.2014.04.022 +Hakki Ulas ünal,Stable H∞ controller design for systems with multiple input/output time-delays.,2012,48,Automatica,3,db/journals/automatica/automatica48.html#UnalI12,https://doi.org/10.1016/j.automatica.2012.01.001 +Chuan-Ke Zhang,An improved summation inequality to discrete-time systems with time-varying delay.,2016,74,Automatica,,db/journals/automatica/automatica74.html#ZhangHJ016,https://doi.org/10.1016/j.automatica.2016.07.040 +Tobias Damm,On detectability of stochastic systems.,2007,43,Automatica,5,db/journals/automatica/automatica43.html#Damm07,https://doi.org/10.1016/j.automatica.2006.11.004 +Patrizio Colaneri,Polynomial approach to the control of SISO periodic systems subject to input constraint.,2003,39,Automatica,8,db/journals/automatica/automatica39.html#ColaneriKL03,https://doi.org/10.1016/S0005-1098(03)00111-0 +H. G. Natke,Holistic modelling as a tool for the diagnosis of critical complex systems.,1996,32,Automatica,1,db/journals/automatica/automatica32.html#NatkeC96,https://doi.org/10.1016/0005-1098(95)00112-3 +Stefen Hui,Robust control synthesis for uncertain/nonlinear dynamical systems.,1992,28,Automatica,2,db/journals/automatica/automatica28.html#HuiZ92,https://doi.org/10.1016/0005-1098(92)90116-W +Athanasios C. Antoulas,Obituary for Professor Rudolf Emil Kalman.,2016,74,Automatica,,db/journals/automatica/automatica74.html#AntoulasGKOSY16,https://doi.org/10.1016/j.automatica.2016.09.039 +Takehiro Mori,Comments on 'on the stability of discrete-time linear interval systems'.,1995,31,Automatica,6,db/journals/automatica/automatica31.html#MoriK95,https://doi.org/10.1016/0005-1098(95)00019-S +Peter Seiler,A gain-based lower bound algorithm for real and mixed andmicro* problems.,2010,46,Automatica,3,db/journals/automatica/automatica46.html#SeilerPB10,https://doi.org/10.1016/j.automatica.2009.12.008 +Maciej Niedzwiecki,Steady-state and parameter tracking properties of self-tuning minimum variance regulators.,1989,25,Automatica,4,db/journals/automatica/automatica25.html#Niedzwiecki89,https://doi.org/10.1016/0005-1098(89)90102-7 +Bin Zhou 0001,Stability and stabilization of discrete-time periodic linear systems with actuator saturation.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#ZhouZD11a,https://doi.org/10.1016/j.automatica.2011.04.015 +M. Lundh,Automatic initialization of a robust self-tuning controller.,1994,30,Automatica,11,db/journals/automatica/automatica30.html#LundhA94,https://doi.org/10.1016/0005-1098(94)90069-8 +Tao Liu 0012,Distributed event-triggered control for asymptotic synchronization of dynamical networks.,2017,86,Automatica,,db/journals/automatica/automatica86.html#LiuCPH17,https://doi.org/10.1016/j.automatica.2017.08.026 +Christos N. Houmkozlis,A neuro-adaptive congestion control scheme for round trip regulation.,2008,44,Automatica,5,db/journals/automatica/automatica44.html#HoumkozlisR08,https://doi.org/10.1016/j.automatica.2007.10.012 +Yucai Zhu,The Box-Jenkins Steiglitz-McBride algorithm.,2016,65,Automatica,,db/journals/automatica/automatica65.html#ZhuH16,https://doi.org/10.1016/j.automatica.2015.12.001 +Mazen Farhood,Control of nonstationary LPV systems.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#FarhoodD08,https://doi.org/10.1016/j.automatica.2007.12.016 +H. Al-Duwaish,A New Method for the Identification of Hammerstein Model.,1997,33,Automatica,10,db/journals/automatica/automatica33.html#Al-DuwaishK97,https://doi.org/10.1016/S0005-1098(97)00105-2 +Igor Boiko,Parameter tuning of second-order sliding mode controllers for linear plants with dynamic actuators.,2006,42,Automatica,5,db/journals/automatica/automatica42.html#BoikoFIPU06,https://doi.org/10.1016/j.automatica.2006.01.009 +George Meyer,Application of nonlinear transformations to automatic flight control.,1984,20,Automatica,1,db/journals/automatica/automatica20.html#MeyerSH84,https://doi.org/10.1016/0005-1098(84)90069-4 +Jürgen Werner,Control aspects of human temperature regulation.,1981,17,Automatica,2,db/journals/automatica/automatica17.html#Werner81,https://doi.org/10.1016/0005-1098(81)90052-2 +William Paul Heath,Orthogonal functions for cross-directional control of web forming processes.,1996,32,Automatica,2,db/journals/automatica/automatica32.html#Heath96,https://doi.org/10.1016/0005-1098(96)85548-8 +Li Qiu,A unified approach for the stability robustness of polynomials in a convex set.,1992,28,Automatica,5,db/journals/automatica/automatica28.html#QiuD92,https://doi.org/10.1016/0005-1098(92)90147-8 +Daniel Graupe,A comparative analysis of various least-squares identification algorithms.,1980,16,Automatica,6,db/journals/automatica/automatica16.html#GraupeJS80,https://doi.org/10.1016/0005-1098(80)90008-4 +R. A. Swan,The design and operation of flexible manufacturing systems (FMS) : Paul Ránky.,1985,21,Automatica,6,db/journals/automatica/automatica21.html#Swan85,https://doi.org/10.1016/0005-1098(85)90052-4 +R. J. Dias,A closed form solution for regular descriptor systems using the moore-penrose generalized inverse.,1990,26,Automatica,2,db/journals/automatica/automatica26.html#DiasM90,https://doi.org/10.1016/0005-1098(90)90139-9 +Gérald Joalland,Optimal control of a water distribution network by two multilevel methods.,1980,16,Automatica,1,db/journals/automatica/automatica16.html#JoallandC80,https://doi.org/10.1016/0005-1098(80)90089-8 +Alfredo Germani,Two families of semiglobal state observers for analytic discrete-time systems.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#GermaniM12,https://doi.org/10.1016/j.automatica.2012.05.030 +Urban Maeder,Offset-free reference tracking with model predictive control.,2010,46,Automatica,9,db/journals/automatica/automatica46.html#MaederM10,https://doi.org/10.1016/j.automatica.2010.05.023 +Yun Liu,Iterative identification of Hammerstein systems.,2007,43,Automatica,2,db/journals/automatica/automatica43.html#LiuB07,https://doi.org/10.1016/j.automatica.2006.09.004 +Jor-Yan Wong,Robust performance for systems with component-bounded signals.,1995,31,Automatica,3,db/journals/automatica/automatica31.html#WongL95,https://doi.org/10.1016/0005-1098(94)00117-2 +Torsten Söderström,Extended accuracy analysis of a covariance matching approach for identifying errors-in-variables systems.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#SoderstromKM14,https://doi.org/10.1016/j.automatica.2014.08.020 +Bin Jia,Sparse-grid quadrature nonlinear filtering.,2012,48,Automatica,2,db/journals/automatica/automatica48.html#JiaXC12,https://doi.org/10.1016/j.automatica.2011.08.057 +Anton Selivanov,Passification-based adaptive control: Uncertain input and output delays.,2015,54,Automatica,,db/journals/automatica/automatica54.html#SelivanovFF15,https://doi.org/10.1016/j.automatica.2015.01.029 +Xi-Ming Sun,Integral input-to-state stability for hybrid delayed systems with unstable continuous dynamics.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#SunW12,https://doi.org/10.1016/j.automatica.2012.06.056 +Adriaan van den Bos,Nonlinear least-absolute-values and minimax model fitting.,1988,24,Automatica,6,db/journals/automatica/automatica24.html#Bos88,https://doi.org/10.1016/0005-1098(88)90056-8 +Raymond Kristiansen,Spacecraft relative rotation tracking without angular velocity measurements.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#KristiansenLCN09,https://doi.org/10.1016/j.automatica.2008.10.012 +Zhenbin Liu,Nonsingularity of feedback shift registers.,2015,55,Automatica,,db/journals/automatica/automatica55.html#LiuWC15,https://doi.org/10.1016/j.automatica.2015.03.014 +Young H. Moon,Observable island identification for state estimation using incidence matrix.,1988,24,Automatica,1,db/journals/automatica/automatica24.html#MoonPL88,https://doi.org/10.1016/0005-1098(88)90008-8 +Xiang Yin 0003,Verification complexity of a class of observational properties for modular discrete events systems.,2017,83,Automatica,,db/journals/automatica/automatica83.html#YinL17b,https://doi.org/10.1016/j.automatica.2017.06.013 +Naoya Kawasaki,Determining quadratic weighting matrices to locate poles in a specified region.,1983,19,Automatica,5,db/journals/automatica/automatica19.html#KawasakiS83,https://doi.org/10.1016/0005-1098(83)90011-0 +Angelo Alessandri,Stubborn state observers for linear time-invariant systems.,2018,88,Automatica,,db/journals/automatica/automatica88.html#AlessandriZ18,https://doi.org/10.1016/j.automatica.2017.10.022 +George S. Axelby,About this and future issues.,1969,5,Automatica,6,db/journals/automatica/automatica5.html#Axelby69f,https://doi.org/10.1016/0005-1098(69)90082-X +Marc Bodson,Pseudo-burst phenomenon in ideal adaptive systems.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#Bodson93,https://doi.org/10.1016/0005-1098(93)90097-D +Babak Azimi-Sadjadi,Approximate nonlinear filtering and its application in navigation.,2005,41,Automatica,6,db/journals/automatica/automatica41.html#Azimi-SadjadiK05,https://doi.org/10.1016/j.automatica.2004.12.013 +Vadim I. Utkin,Adaptive sliding mode control with application to super-twist algorithm: Equivalent control method.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#UtkinP13,https://doi.org/10.1016/j.automatica.2012.09.008 +David R. Downing,Flight test of a digital controller used in a helicopter autoland system.,1987,23,Automatica,3,db/journals/automatica/automatica23.html#DowningB87,https://doi.org/10.1016/0005-1098(87)90003-3 +Dean A. Carlson,Large-scale convex optimization methods for air quality policy assessment.,2004,40,Automatica,3,db/journals/automatica/automatica40.html#CarlsonHVZ04,https://doi.org/10.1016/j.automatica.2003.09.019 +David N. Hoover,Two-degree-of-freedom l2-optimal tracking with preview.,2004,40,Automatica,1,db/journals/automatica/automatica40.html#HooverLR04,https://doi.org/10.1016/j.automatica.2003.09.003 +Günter Roppenecker,Parametric output feedback controller design.,1989,25,Automatica,2,db/journals/automatica/automatica25.html#RoppeneckerO89,https://doi.org/10.1016/0005-1098(89)90079-4 +Damien Koenig,Filtering and fault estimation of descriptor switched systems.,2016,63,Automatica,,db/journals/automatica/automatica63.html#KoenigMV16,https://doi.org/10.1016/j.automatica.2015.10.017 +Uros Kalabic,Reduced order extended command governor.,2014,50,Automatica,5,db/journals/automatica/automatica50.html#KalabicKG14,https://doi.org/10.1016/j.automatica.2014.03.012 +Tatiana Kameneva,Robustness of quantized control systems with mismatch between coder/decoder initializations.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#KamenevaN09,https://doi.org/10.1016/j.automatica.2008.10.020 +Calin Belta,Rotating stall control for axial flow compressors.,2001,37,Automatica,6,db/journals/automatica/automatica37.html#BeltaGSB01,https://doi.org/10.1016/S0005-1098(01)00035-8 +Brett Ninness,Integral constraints on the accuracy of least-squares estimation.,1996,32,Automatica,3,db/journals/automatica/automatica32.html#Ninness96,https://doi.org/10.1016/0005-1098(95)00145-X +Saeid Jafari,Leader localization in multi-agent systems subject to failure: A graph-theoretic approach.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#JafariAA11,https://doi.org/10.1016/j.automatica.2011.02.051 +M. R. Elhami,Sequential identification of coulomb and viscous friction in robot drives.,1997,33,Automatica,3,db/journals/automatica/automatica33.html#ElhamiB97,https://doi.org/10.1016/S0005-1098(96)00183-5 +José Claudio Geromel,I robust filter design with performance certificate via convex programming.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#GeromelK08,https://doi.org/10.1016/j.automatica.2007.08.010 +Zbigniew Bartosiewicz,Local observability of nonlinear positive continuous-time systems.,2017,78,Automatica,,db/journals/automatica/automatica78.html#Bartosiewicz17,https://doi.org/10.1016/j.automatica.2016.12.037 +Shanying Zhu,Performance analysis of averaging based distributed estimation algorithm with additive quantization model.,2017,80,Automatica,,db/journals/automatica/automatica80.html#ZhuLSX17,https://doi.org/10.1016/j.automatica.2017.02.022 +Jian-Xin Xu 0001,Direct learning of control efforts for trajectories with different magnitude scales.,1997,33,Automatica,12,db/journals/automatica/automatica33.html#Xu97a,https://doi.org/10.1016/S0005-1098(97)00140-4 +Ye Xudong,Adaptive output-feedback control of nonlinear systems with unknown nonlinearities.,2005,41,Automatica,8,db/journals/automatica/automatica41.html#Xudong05,https://doi.org/10.1016/j.automatica.2005.03.003 +Michael Cantoni,H∞ sampled-data synthesis and related numerical issues.,1997,33,Automatica,12,db/journals/automatica/automatica33.html#CantoniG97,https://doi.org/10.1016/S0005-1098(97)00151-9 +Miomir Vukobratovic,Contribution to the Position/Force Control of Manipulation Robots Interacting with Dynamic Environment - A Generalization.,1998,34,Automatica,10,db/journals/automatica/automatica34.html#VukobratovicSE98,https://doi.org/10.1016/S0005-1098(98)00069-7 +Onvaree Techakesari,Practical stability of approximating discrete-time filters with respect to model mismatch.,2012,48,Automatica,11,db/journals/automatica/automatica48.html#TechakesariFN12,https://doi.org/10.1016/j.automatica.2012.08.006 +Shaik Fiaz,Tracking and regulation in the behavioral framework.,2011,47,Automatica,11,db/journals/automatica/automatica47.html#FiazTT11,https://doi.org/10.1016/j.automatica.2011.08.025 +Sing Kiong Nguang,"Comments on ""Robust stabilization of uncertain input-delay systems by sliding mode control with delay compensation"".",2001,37,Automatica,10,db/journals/automatica/automatica37.html#Nguang01,https://doi.org/10.1016/S0005-1098(01)00124-8 +BaoCang Ding,A synthesis approach for output feedback robust constrained model predictive control.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#DingXCO08,https://doi.org/10.1016/j.automatica.2007.04.005 +Panagiotis Patrinos,Stochastic model predictive control for constrained discrete-time Markovian switching systems.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#PatrinosSSB14,https://doi.org/10.1016/j.automatica.2014.08.031 +Yugang Niu,Robust integral sliding mode control for uncertain stochastic systems with time-varying delay.,2005,41,Automatica,5,db/journals/automatica/automatica41.html#NiuHL05,https://doi.org/10.1016/j.automatica.2004.11.035 +Chong Lin,Necessary and sufficient conditions for the controllability of linear interval descriptor systems.,1998,34,Automatica,3,db/journals/automatica/automatica34.html#LinWS98,https://doi.org/10.1016/S0005-1098(97)00204-5 +Frank Kozin,A survey of stability of stochastic systems.,1969,5,Automatica,1,db/journals/automatica/automatica5.html#Kozin69,https://doi.org/10.1016/0005-1098(69)90060-0 +George S. Axelby,Key word indexes.,1977,13,Automatica,1,db/journals/automatica/automatica13.html#Axelby77,https://doi.org/10.1016/0005-1098(77)90002-4 +Vu Tuan Hieu Le,Zonotopic guaranteed state estimation for uncertain systems.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#LeSACD13,https://doi.org/10.1016/j.automatica.2013.08.014 +Laurie Ricker,Mind the gap: Expanding communication options in decentralized discrete-event control.,2011,47,Automatica,11,db/journals/automatica/automatica47.html#RickerC11,https://doi.org/10.1016/j.automatica.2011.08.040 +Antonios Armaou,Robust control of parabolic PDE systems with time-dependent spatial domains.,2001,37,Automatica,1,db/journals/automatica/automatica37.html#ArmaouC01,https://doi.org/10.1016/S0005-1098(00)00123-0 +Ian R. Petersen,Robust adaptive Hinfinity control using integral quadratic constraints.,2008,44,Automatica,10,db/journals/automatica/automatica44.html#Petersen08,https://doi.org/10.1016/j.automatica.2008.03.007 +Avrie Levent,Robust exact differentiation via sliding mode technique.,1998,34,Automatica,3,db/journals/automatica/automatica34.html#Levent98,https://doi.org/10.1016/S0005-1098(97)00209-4 +Hannu T. Toivonen,Sampled-data H∞ optimal control of time-varying systems.,1992,28,Automatica,4,db/journals/automatica/automatica28.html#Toivonen92a,https://doi.org/10.1016/0005-1098(92)90044-G +Maopeng Ran,"Reply to ""Comments on 'Stabilization of a class of nonlinear systems with actuator saturation via active disturbance rejection control' [Automatica 63 (2016) 302-310]"".",2017,83,Automatica,,db/journals/automatica/automatica83.html#RanWD17,https://doi.org/10.1016/j.automatica.2017.06.023 +Marc Jungers,Bounded Nash type controls for uncertain linear systems.,2008,44,Automatica,7,db/journals/automatica/automatica44.html#JungersCPA08,https://doi.org/10.1016/j.automatica.2007.10.035 +Kaushik Mahata,Identification of continuous-time errors-in-variables models.,2006,42,Automatica,9,db/journals/automatica/automatica42.html#MahataG06,https://doi.org/10.1016/j.automatica.2006.04.012 +Enrique A. Medina,Feedback-reversibility and reachability of linear impulsive systems.,2010,46,Automatica,6,db/journals/automatica/automatica46.html#MedinaL10,https://doi.org/10.1016/j.automatica.2010.03.009 +Lei Guo 0001,Consistent order estimation for linear stochastic feedback control systems (CARMA model).,1989,25,Automatica,1,db/journals/automatica/automatica25.html#GuoCZ89,https://doi.org/10.1016/0005-1098(89)90131-3 +Baocang Ding,A synthesis approach of on-line constrained robust model predictive control.,2004,40,Automatica,1,db/journals/automatica/automatica40.html#DingXL04,https://doi.org/10.1016/j.automatica.2003.07.007 +Christiaan Heij,System identifiability from finite time series.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#Heij93,https://doi.org/10.1016/0005-1098(93)90107-5 +Peter Kloeden,Stochastic versus fuzzy approaches to multiobjective mathematical programming under uncertainty : Roman Slowinski and Jacques Teghem.,1993,29,Automatica,3,db/journals/automatica/automatica29.html#Kloeden93,https://doi.org/10.1016/0005-1098(93)90082-5 +Chunling Du,A generalized KYP lemma based approach for disturbance rejection in data storage systems.,2007,43,Automatica,12,db/journals/automatica/automatica43.html#DuXGT07,https://doi.org/10.1016/j.automatica.2007.04.023 +Xiuming Yao,Composite anti-disturbance control for Markovian jump nonlinear systems via disturbance observer.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#YaoG13,https://doi.org/10.1016/j.automatica.2013.05.002 +Gang Zheng,Delay estimation via sliding mode for nonlinear time-delay systems.,2018,89,Automatica,,db/journals/automatica/automatica89.html#ZhengPL18,https://doi.org/10.1016/j.automatica.2017.11.033 +Yu-Chi Ho,A new approach to the analysis of discrete event dynamic systems.,1983,19,Automatica,2,db/journals/automatica/automatica19.html#HoC83,https://doi.org/10.1016/0005-1098(83)90088-2 +Raúl A. Casas,Prediction error methods for limit cycle data.,2002,38,Automatica,10,db/journals/automatica/automatica38.html#CasasBJJ02,https://doi.org/10.1016/S0005-1098(02)00085-7 +Nejat Olgaç,A practical method for analyzing the stability of neutral type LTI-time delayed systems.,2004,40,Automatica,5,db/journals/automatica/automatica40.html#OlgacS04,https://doi.org/10.1016/j.automatica.2003.12.010 +Michael Malisoff,Further remarks on strict input-to-state stable Lyapunov functions for time-varying systems.,2005,41,Automatica,11,db/journals/automatica/automatica41.html#MalisoffM05,https://doi.org/10.1016/j.automatica.2005.05.015 +Anthony J. Calise,Adaptive output feedback control of nonlinear systems using neural networks.,2001,37,Automatica,8,db/journals/automatica/automatica37.html#CaliseHI01,https://doi.org/10.1016/S0005-1098(01)00070-X +Cristian R. Rojas,An adaptive method for consistent estimation of real-valued non-minimum phase zeros in stable LTI systems.,2011,47,Automatica,7,db/journals/automatica/automatica47.html#RojasHGM11,https://doi.org/10.1016/j.automatica.2011.02.033 +Sei Zhen Khong,Unified frameworks for sampled-data extremum seeking control: Global optimisation and multi-unit systems.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#KhongNTM13,https://doi.org/10.1016/j.automatica.2013.06.020 +Grégory Batt,Symbolic reachability analysis of genetic regulatory networks using discrete abstractions.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#BattJPG08,https://doi.org/10.1016/j.automatica.2007.08.004 +Saurabh Amin,Security of interdependent and identical networked control systems.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#AminSS13,https://doi.org/10.1016/j.automatica.2012.09.007 +Andreea Grigoriu,Stability analysis of discontinuous quantum control systems with dipole and polarizability coupling.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#Grigoriu12,https://doi.org/10.1016/j.automatica.2012.06.028 +Yu Kawano,Observability at an initial state for polynomial systems.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#KawanoO13,https://doi.org/10.1016/j.automatica.2013.01.020 +Wei Lin 0001,Robust passivity and feedback design for minimum-phase nonlinear systems with structural uncertainty.,1999,35,Automatica,1,db/journals/automatica/automatica35.html#WeiT99,https://doi.org/10.1016/S0005-1098(98)00120-4 +Hao Ying,Necessary Conditions for Some Typical Fuzzy Systems as Universal Approximators.,1997,33,Automatica,7,db/journals/automatica/automatica33.html#YingC97,https://doi.org/10.1016/S0005-1098(97)00026-5 +Evangelia Gazi,A non-parametric Monte Carlo technique for controller verification.,1997,33,Automatica,5,db/journals/automatica/automatica33.html#GaziSU97,https://doi.org/10.1016/S0005-1098(96)00227-0 +Gunnar Johannsen,Knowledge engineering for industrial expert systems.,1991,27,Automatica,1,db/journals/automatica/automatica27.html#JohannsenA91,https://doi.org/10.1016/0005-1098(91)90009-Q +Masami Saeki,H∞/LTR procedure with specified degree of recovery.,1992,28,Automatica,3,db/journals/automatica/automatica28.html#Saeki92,https://doi.org/10.1016/0005-1098(92)90175-F +Jun Hu 0004,A variance-constrained approach to recursive state estimation for time-varying complex networks with missing measurements.,2016,64,Automatica,,db/journals/automatica/automatica64.html#HuWLG16,https://doi.org/10.1016/j.automatica.2015.11.008 +Huijun Gao,A new approach to quantized feedback control systems.,2008,44,Automatica,2,db/journals/automatica/automatica44.html#GaoC08,https://doi.org/10.1016/j.automatica.2007.06.015 +P. Picard,Model matching for linear systems with delays and 2D systems.,1998,34,Automatica,2,db/journals/automatica/automatica34.html#PicardLK98,https://doi.org/10.1016/S0005-1098(98)00177-0 +Y. Liu,Convergence rate for an approximation approach to H∞-norm optimization problems with an application to controller order reduction.,1992,28,Automatica,3,db/journals/automatica/automatica28.html#LiuT92,https://doi.org/10.1016/0005-1098(92)90187-K +Paul M. J. Van den Hof,Identification and control - Closed-loop issues.,1995,31,Automatica,12,db/journals/automatica/automatica31.html#HofS95,https://doi.org/10.1016/0005-1098(95)00094-X +Carsten W. Scherer,LPV control and full block multipliers.,2001,37,Automatica,3,db/journals/automatica/automatica37.html#Scherer01,https://doi.org/10.1016/S0005-1098(00)00176-X +Rohit Gupta 0004,Solution to the HJB equation for LQR-type problems on compact connected Lie groups.,2018,95,Automatica,,db/journals/automatica/automatica95.html#GuptaKBK18,https://doi.org/10.1016/j.automatica.2017.11.013 +Mihály Petreczky,Span-reachability and observability of bilinear hybrid systems.,2010,46,Automatica,3,db/journals/automatica/automatica46.html#PetreczkyS10,https://doi.org/10.1016/j.automatica.2010.01.008 +Elijah Polak,On the global stabilization of locally convergent algorithms.,1976,12,Automatica,4,db/journals/automatica/automatica12.html#Polak76,https://doi.org/10.1016/0005-1098(76)90053-4 +Lu Lu,Adaptive robust control of linear motors with dynamic friction compensation using modified LuGre model.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#LuYWC09,https://doi.org/10.1016/j.automatica.2009.09.007 +Laura Ryan Ray,A monte carlo approach to the analysis of control system robustness.,1993,29,Automatica,1,db/journals/automatica/automatica29.html#RayS93,https://doi.org/10.1016/0005-1098(93)90187-X +Shou-Yuan Zhang,Input-output feedback compensator design.,1987,23,Automatica,2,db/journals/automatica/automatica23.html#Zhang87,https://doi.org/10.1016/0005-1098(87)90102-6 +Jenq-Lang Wu,Stabilizing controllers design for switched nonlinear systems in strict-feedback form.,2009,45,Automatica,4,db/journals/automatica/automatica45.html#Wu09,https://doi.org/10.1016/j.automatica.2008.12.004 +Fabien Lauer,On the complexity of switching linear regression.,2016,74,Automatica,,db/journals/automatica/automatica74.html#Lauer16,https://doi.org/10.1016/j.automatica.2016.07.027 +Michèle Basseville,Subspace-based fault detection algorithms for vibration monitoring.,2000,36,Automatica,1,db/journals/automatica/automatica36.html#BassevilleAB00,https://doi.org/10.1016/S0005-1098(99)00093-X +Ion Zaballa,Feedback invariants of restrictions - a polynomial approach.,2001,37,Automatica,2,db/journals/automatica/automatica37.html#Zaballa01,https://doi.org/10.1016/S0005-1098(00)00152-7 +Ming-Tzu Ho,Synthesis of H INFINITY PID controllers: A parametric approach.,2003,39,Automatica,6,db/journals/automatica/automatica39.html#Ho03,https://doi.org/10.1016/S0005-1098(03)00078-5 +John B. Moore,On strong consistency of least squares identification algorithms.,1978,14,Automatica,5,db/journals/automatica/automatica14.html#Moore78,https://doi.org/10.1016/0005-1098(78)90010-9 +Ivan Goethals,Identification of MIMO Hammerstein models using least squares support vector machines.,2005,41,Automatica,7,db/journals/automatica/automatica41.html#GoethalsPSM05,https://doi.org/10.1016/j.automatica.2005.02.002 +B. G. Kunciw,Optimal space station detumbling by internal mass motion.,1976,12,Automatica,5,db/journals/automatica/automatica12.html#KunciwK76,https://doi.org/10.1016/0005-1098(76)90003-0 +Kiyoshi Nishiyama,A computationally reduced version of the fast H∞ filter.,2018,92,Automatica,,db/journals/automatica/automatica92.html#Nishiyama18,https://doi.org/10.1016/j.automatica.2018.02.009 +B. Erik Ydstie,Convergence and stability properties of an adaptive regulator with variable forgetting factor.,1986,22,Automatica,6,db/journals/automatica/automatica22.html#YdstieS86,https://doi.org/10.1016/0005-1098(86)90015-4 +Gyeongbeom Yi,Computer control of cell mass concentration in continuous culture.,1989,25,Automatica,2,db/journals/automatica/automatica25.html#YiHCL89,https://doi.org/10.1016/0005-1098(89)90077-0 +Marcello Farina,Moving-horizon partition-based state estimation of large-scale systems.,2010,46,Automatica,5,db/journals/automatica/automatica46.html#FarinaFS10,https://doi.org/10.1016/j.automatica.2010.02.010 +Huibert Kwakernaak,Electronic submission and review of technical communiques and correspondence items.,1996,32,Automatica,12,db/journals/automatica/automatica32.html#Kwakernaak96g,https://doi.org/10.1016/S0005-1098(96)80000-8 +Guanyu Lai,Adaptive backstepping-based tracking control of a class of uncertain switched nonlinear systems.,2018,91,Automatica,,db/journals/automatica/automatica91.html#LaiLZCX18,https://doi.org/10.1016/j.automatica.2017.12.008 +Amit Ailon,A solution to the disturbance decoupling problem in singular systems via analogy with state-space systems.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#Ailon93,https://doi.org/10.1016/0005-1098(93)90018-O +Johan Paduart,Identification of nonlinear systems using Polynomial Nonlinear State Space models.,2010,46,Automatica,4,db/journals/automatica/automatica46.html#PaduartLSSSP10,https://doi.org/10.1016/j.automatica.2010.01.001 +Ryan C. Loxton,Optimal control problems with multiple characteristic time points in the objective and constraints.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#LoxtonTR08,https://doi.org/10.1016/j.automatica.2008.04.011 +Young Il Lee,Constrained receding horizon predictive control for nonlinear systems.,2002,38,Automatica,12,db/journals/automatica/automatica38.html#LeeKC02,https://doi.org/10.1016/S0005-1098(02)00133-4 +Wim Michiels,An eigenvalue based approach for the stabilization of linear time-delay systems of neutral type.,2005,41,Automatica,6,db/journals/automatica/automatica41.html#MichielsV05,https://doi.org/10.1016/j.automatica.2004.11.032 +Hua O. Wang,Bifurcation control of a chaotic system.,1995,31,Automatica,9,db/journals/automatica/automatica31.html#WangA95,https://doi.org/10.1016/0005-1098(94)00146-A +L. K. Nenonen,Conjugate gradient optimization applied to a copper converter model.,1969,5,Automatica,6,db/journals/automatica/automatica5.html#NenonenP69,https://doi.org/10.1016/0005-1098(69)90093-4 +Vimal Singh,Modified criterion for global asymptotic stability of fixed-point state-space digital filters using two's complement arithmetic.,2010,46,Automatica,2,db/journals/automatica/automatica46.html#Singh10,https://doi.org/10.1016/j.automatica.2009.11.022 +K. Y. Choi,Synthesis of open-loop controls for semibatch copolymerization reactors by inverse feedback control method.,1989,25,Automatica,6,db/journals/automatica/automatica25.html#ChoiB89,https://doi.org/10.1016/0005-1098(89)90058-7 +Peter J. Gawthrop,Identification of continuous systems : H. Unbehauen and G. P. Rao.,1989,25,Automatica,3,db/journals/automatica/automatica25.html#Gawthrop89,https://doi.org/10.1016/0005-1098(89)90020-4 +Pawel Miroslaw Stano,Convex saturated particle filter.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#StanoDLB14,https://doi.org/10.1016/j.automatica.2014.08.026 +Iliya V. Miroshnik,Attractors and partial stability of nonlinear dynamical systems.,2004,40,Automatica,3,db/journals/automatica/automatica40.html#Miroshnik04,https://doi.org/10.1016/j.automatica.2003.10.016 +I. D. Landau,"Summary of ""Adaptive control today"": A round table discussion session at IFAC/75.",1976,12,Automatica,5,db/journals/automatica/automatica12.html#LandauK76,https://doi.org/10.1016/0005-1098(76)90017-0 +R. Doraiswami,Performance monitoring in expert control systems.,1989,25,Automatica,6,db/journals/automatica/automatica25.html#DoraiswamiJ89,https://doi.org/10.1016/0005-1098(89)90049-6 +Erin M. Aylward,Stability and robustness analysis of nonlinear systems via contraction metrics and SOS programming.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#AylwardPS08,https://doi.org/10.1016/j.automatica.2007.12.012 +Masih Hanifzadegan,Smooth switching LPV controller design for LPV systems.,2014,50,Automatica,5,db/journals/automatica/automatica50.html#HanifzadeganN14,https://doi.org/10.1016/j.automatica.2014.03.014 +Shen Zeng,Structured optimal feedback in multi-agent systems: A static output feedback perspective.,2017,76,Automatica,,db/journals/automatica/automatica76.html#ZengA17,https://doi.org/10.1016/j.automatica.2016.10.021 +Daniel J. Stilwell,Stability and L2 gain properties of LPV systems.,2002,38,Automatica,9,db/journals/automatica/automatica38.html#StilwellR02,https://doi.org/10.1016/S0005-1098(02)00055-9 +Frédéric Mazenc,Interval observers for linear time-invariant systems with disturbances.,2011,47,Automatica,1,db/journals/automatica/automatica47.html#MazencB11,https://doi.org/10.1016/j.automatica.2010.10.019 +Petr Zagalák,Linear multichannel control: A system matrix approach : A. Bülent özgüler.,1995,31,Automatica,10,db/journals/automatica/automatica31.html#Zagalak95,https://doi.org/10.1016/0005-1098(95)90002-0 +Philippos Peleties,Analysis of a hybrid system using symbolic dynamics and Petri Nets.,1994,30,Automatica,9,db/journals/automatica/automatica30.html#PeletiesD94,https://doi.org/10.1016/0005-1098(94)90007-8 +Peter V. Zhivoglyadov,Stability and switching control design issues for a class of discrete time hybrid systems.,2003,39,Automatica,6,db/journals/automatica/automatica39.html#ZhivoglyadovM03a,https://doi.org/10.1016/S0005-1098(02)00305-9 +W. J. Edwards,Design of entry strip thickness controls for tandem cold mills.,1978,14,Automatica,5,db/journals/automatica/automatica14.html#Edwards78,https://doi.org/10.1016/0005-1098(78)90002-X +Qian Ma,Strong stability of a class of difference equations of continuous time and structured singular value problem.,2018,87,Automatica,,db/journals/automatica/automatica87.html#MaGC18,https://doi.org/10.1016/j.automatica.2017.09.012 +Michel Gevers,Uniquely identifiable state-space and ARMA parametrizations for multivariable linear systems.,1984,20,Automatica,3,db/journals/automatica/automatica20.html#GeversW84,https://doi.org/10.1016/0005-1098(84)90048-7 +Johan Schoukens,Estimation of the risk for an unstable behaviour of feedback systems in the presence of nonlinear distortions.,2004,40,Automatica,7,db/journals/automatica/automatica40.html#SchoukensDP04,https://doi.org/10.1016/j.automatica.2004.02.006 +Ali Zemouche,Circle criterion-based H∞ observer design for Lipschitz and monotonic nonlinear systems - Enhanced LMI conditions and constructive discussions.,2017,85,Automatica,,db/journals/automatica/automatica85.html#ZemoucheRPBRZ17,https://doi.org/10.1016/j.automatica.2017.07.067 +Ying Zhang,Robust adaptive control of nonlinear discrete-time systems by backstepping without overparameterization.,2001,37,Automatica,4,db/journals/automatica/automatica37.html#ZhangWS01,https://doi.org/10.1016/S0005-1098(00)00186-2 +Shigeto Nishida,A morphological filter for extracting waveform characteristics of single-sweep evoked potentials.,1999,35,Automatica,5,db/journals/automatica/automatica35.html#NishidaNSKS99,https://doi.org/10.1016/S0005-1098(98)00230-1 +Zi-Li Deng,Optimal and self-tuning white noise estimators with applications to deconvolution and filtering problems.,1996,32,Automatica,2,db/journals/automatica/automatica32.html#DengZLZ96,https://doi.org/10.1016/0005-1098(96)85549-X +Igor Skrjanc,Identification of dynamical systems with a robust interval fuzzy model.,2005,41,Automatica,2,db/journals/automatica/automatica41.html#SkrjancBA05,https://doi.org/10.1016/j.automatica.2004.09.010 +Yujuan Wang,Leader-following control of high-order multi-agent systems under directed graphs: Pre-specified finite time approach.,2018,87,Automatica,,db/journals/automatica/automatica87.html#WangS18,https://doi.org/10.1016/j.automatica.2017.09.017 +Lixian Zhang,Stability and stabilization of Markovian jump linear systems with partly unknown transition probabilities.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#ZhangB09,https://doi.org/10.1016/j.automatica.2008.08.010 +Kamran Akbari Moornani,On robust stability of LTI fractional-order delay systems of retarded and neutral type.,2010,46,Automatica,2,db/journals/automatica/automatica46.html#MoornaniH10,https://doi.org/10.1016/j.automatica.2009.11.006 +Tarek Ahmed-Ali,Adaptive observer design with heat PDE sensor.,2017,82,Automatica,,db/journals/automatica/automatica82.html#Ahmed-AliGKBL17,https://doi.org/10.1016/j.automatica.2017.04.030 +Carla A. Schwartz,Smooth stabilization of nonlinear control systems.,1996,32,Automatica,11,db/journals/automatica/automatica32.html#SchwartzV96,https://doi.org/10.1016/S0005-1098(96)00099-4 +Weng Khuen Ho,Tuning of PID controllers based on gain and phase margin specifications.,1995,31,Automatica,3,db/journals/automatica/automatica31.html#HoHC95,https://doi.org/10.1016/0005-1098(94)00130-B +Peter V. Zhivoglyadov,Networked control design for linear systems.,2003,39,Automatica,4,db/journals/automatica/automatica39.html#ZhivoglyadovM03,https://doi.org/10.1016/S0005-1098(02)00306-0 +Kotaro Minato,Parameter estimation of radiocardiogram using a minicomputer.,1979,15,Automatica,5,db/journals/automatica/automatica15.html#MinatoKYH79,https://doi.org/10.1016/0005-1098(79)90002-5 +V. A. Armentano,Almost disturbance decoupling by a proportional derivative state feedback law.,1986,22,Automatica,4,db/journals/automatica/automatica22.html#Armentano86,https://doi.org/10.1016/0005-1098(86)90049-X +Yun Zou,Algorithms for the computation of the transfer function matrix for two-dimensional regular and singular general state-space models.,1995,31,Automatica,9,db/journals/automatica/automatica31.html#ZouY95,https://doi.org/10.1016/0005-1098(95)00014-N +R. Doraiswami,Performance monitoring and fault prediction using a linear predictive coding algorithm.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#Doraiswami93,https://doi.org/10.1016/0005-1098(93)90111-6 +Bin Zhou 0001,Consensus of high-order multi-agent systems with large input and communication delays.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#ZhouL14,https://doi.org/10.1016/j.automatica.2013.12.006 +Manfred Deistler,Properties of the parametrization of monic ARMA systems.,1989,25,Automatica,1,db/journals/automatica/automatica25.html#DeistlerG89,https://doi.org/10.1016/0005-1098(89)90122-2 +Myung-Gon Yoon,Transfer function representation of cyclic consensus systems.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#YoonT11,https://doi.org/10.1016/j.automatica.2011.05.019 +Victor F. Sokolov,Adaptive stabilization of parameter-affine minimum-phase plants under Lipschitz uncertainty.,2016,73,Automatica,,db/journals/automatica/automatica73.html#Sokolov16,https://doi.org/10.1016/j.automatica.2016.07.020 +M. A. A. Shoukat Choudhury,Diagnosis of poor control-loop performance using higher-order statistics.,2004,40,Automatica,10,db/journals/automatica/automatica40.html#ChoudhuryST04,https://doi.org/10.1016/j.automatica.2004.03.022 +Andrey V. Savkin,Robust control with a terminal state constraint.,1996,32,Automatica,7,db/journals/automatica/automatica32.html#SavkinP96a,https://doi.org/10.1016/0005-1098(96)00047-7 +Marko Seslija,Hamiltonian perspective on compartmental reaction-diffusion networks.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#SeslijaSS14a,https://doi.org/10.1016/j.automatica.2013.12.017 +Khashayar Khorasani,A slow manifold approach to linear equivalents of nonlinear singularly perturbed systems.,1989,25,Automatica,2,db/journals/automatica/automatica25.html#Khorasani89,https://doi.org/10.1016/0005-1098(89)90085-X +Uwe D. Hanebeck,On combining statistical and set-theoretic estimation.,1999,35,Automatica,6,db/journals/automatica/automatica35.html#HanebeckHS99,https://doi.org/10.1016/S0005-1098(99)00011-4 +Ludovic Mailleret,Global stabilization of a class of partially known nonnegative systems.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#MailleretGB08,https://doi.org/10.1016/j.automatica.2007.12.006 +Jinhui Zhang,Parameter-dependent robust H INFINITY filtering for uncertain discrete-time systems.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#ZhangXS09,https://doi.org/10.1016/j.automatica.2008.09.005 +Brendan M. Quine,A derivative-free implementation of the extended Kalman filter.,2006,42,Automatica,11,db/journals/automatica/automatica42.html#Quine06,https://doi.org/10.1016/j.automatica.2006.06.013 +Björn E. Ottersten,Statistical signal processing and control.,1994,30,Automatica,1,db/journals/automatica/automatica30.html#OtterstenSW94,https://doi.org/10.1016/0005-1098(94)90224-0 +Daizhan Cheng,Bi-decomposition of multi-valued logical functions and its applications.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#ChengX13,https://doi.org/10.1016/j.automatica.2013.03.013 +Tiago Roux Oliveira,Global and exact HOSM differentiator with dynamic gains for output-feedback sliding mode control.,2017,81,Automatica,,db/journals/automatica/automatica81.html#OliveiraEF17,https://doi.org/10.1016/j.automatica.2017.03.007 +Robert J. Elliott,Application of variational inequalities to stochastic control: A. Bensoussan and J. L. Lions.,1983,19,Automatica,4,db/journals/automatica/automatica19.html#Elliott83,https://doi.org/10.1016/0005-1098(83)90063-8 +Minghui Zhu,On distributed constrained formation control in operator-vehicle adversarial networks.,2013,49,Automatica,12,db/journals/automatica/automatica49.html#ZhuM13,https://doi.org/10.1016/j.automatica.2013.09.031 +Andrés A. Peters,Leader tracking in homogeneous vehicle platoons with broadcast delays.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#PetersMM14,https://doi.org/10.1016/j.automatica.2013.09.034 +Luigi Scibile,Stability region for a class of open-loop unstable linear systems: Theory and application.,2000,36,Automatica,1,db/journals/automatica/automatica36.html#ScibileK00,https://doi.org/10.1016/S0005-1098(99)00097-7 +Jiaxing Guo,A discrete-time multivariable MRAC scheme applied to a nonlinear aircraft model with structural damage.,2015,53,Automatica,,db/journals/automatica/automatica53.html#GuoT15,https://doi.org/10.1016/j.automatica.2014.12.036 +Ilia G. Polushin,Stability of bilateral teleoperators with generalized projection-based force reflection algorithms.,2012,48,Automatica,6,db/journals/automatica/automatica48.html#PolushinLL12,https://doi.org/10.1016/j.automatica.2012.02.043 +Emilia Fridman,New conditions for delay-derivative-dependent stability.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#FridmanSL09,https://doi.org/10.1016/j.automatica.2009.08.002 +Mohamed F. Hassan,A two-level costate prediction algorithm for non-linear systems.,1977,13,Automatica,6,db/journals/automatica/automatica13.html#HassanS77a,https://doi.org/10.1016/0005-1098(77)90085-1 +Ludovic Mailleret,Nonlinear adaptive control for bioreactors with unknown kinetics.,2004,40,Automatica,8,db/journals/automatica/automatica40.html#MailleretBS04,https://doi.org/10.1016/j.automatica.2004.01.030 +Laurentiu Hetel,Recent developments on the stability of systems with aperiodic sampling: An overview.,2017,76,Automatica,,db/journals/automatica/automatica76.html#HetelFOSFRN17,https://doi.org/10.1016/j.automatica.2016.10.023 +H. Souley Ali,Robust I reduced order filtering for uncertain bilinear systems.,2006,42,Automatica,3,db/journals/automatica/automatica42.html#AliZRD06,https://doi.org/10.1016/j.automatica.2005.08.009 +Sohom Chakrabarty,A generalized reaching law with different convergence rates.,2016,63,Automatica,,db/journals/automatica/automatica63.html#ChakrabartyB16,https://doi.org/10.1016/j.automatica.2015.10.018 +Yoonsoo Kim,Real-time path planning with limited information for autonomous unmanned air vehicles.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#KimGP08,https://doi.org/10.1016/j.automatica.2007.07.023 +Jin Zhou,Pinning adaptive synchronization of a general complex dynamical network.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#ZhouLL08,https://doi.org/10.1016/j.automatica.2007.08.016 +Donghoon Kim,Near-minimum-time control of asymmetric rigid spacecraft using two controls.,2014,50,Automatica,8,db/journals/automatica/automatica50.html#KimT14,https://doi.org/10.1016/j.automatica.2014.05.038 +Luigi Chisci,Sidestepping the positive real condition in RELS via multiple RLS identifiers.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#ChisciGM93,https://doi.org/10.1016/0005-1098(93)90116-B +Y. C. E. Lee,Optimal control solutions to the maximum volume isoperimetric pillars problem.,2008,44,Automatica,5,db/journals/automatica/automatica44.html#LeeL08,https://doi.org/10.1016/j.automatica.2007.09.026 +Robert Schmid,A unified method for the design of nonovershooting linear multivariable state-feedback tracking controllers.,2010,46,Automatica,2,db/journals/automatica/automatica46.html#SchmidN10,https://doi.org/10.1016/j.automatica.2009.11.018 +Fikret A. Aliev,Algorithm of J-spectral factorization of polynomial matrices.,1997,33,Automatica,12,db/journals/automatica/automatica33.html#AlievL97,https://doi.org/10.1016/S0005-1098(97)00133-7 +Tong Zhou,"Reply to ""Comments on 'Robust state estimation for uncertain discrete-time stochastic systems with missing measurements'"".",2014,50,Automatica,7,db/journals/automatica/automatica50.html#Zhou14a,https://doi.org/10.1016/j.automatica.2014.04.031 +Giacomo Canciello,Selective modal control for vibration reduction in flexible structures.,2017,75,Automatica,,db/journals/automatica/automatica75.html#CancielloC17,https://doi.org/10.1016/j.automatica.2016.09.043 +James C. Spall,A one-measurement form of simultaneous perturbation stochastic approximation.,1997,33,Automatica,1,db/journals/automatica/automatica33.html#Spall97,https://doi.org/10.1016/S0005-1098(96)00149-5 +H. K. Lam,Output-feedback sampled-data polynomial controller for nonlinear systems.,2011,47,Automatica,11,db/journals/automatica/automatica47.html#Lam11,https://doi.org/10.1016/j.automatica.2011.08.009 +Eva M. Navarro-López,Local feedback passivation of nonlinear discrete-time systems through the speed-gradient algorithm.,2007,43,Automatica,7,db/journals/automatica/automatica43.html#Navarro-Lopez07,https://doi.org/10.1016/j.automatica.2006.12.017 +Peter Lindskog,Ensuring monotonic gain characteristics in estimated models by fuzzy model structures.,2000,36,Automatica,2,db/journals/automatica/automatica36.html#LindskogL00,https://doi.org/10.1016/S0005-1098(99)00154-5 +Longjun Qian,Synthesis of Quadratic Stability Control for Similar Composite Systems.,1998,34,Automatica,4,db/journals/automatica/automatica34.html#QianLWZ98,https://doi.org/10.1016/S0005-1098(97)00172-6 +Alessandro D'Innocenzo,Resilient stabilization of Multi-Hop Control Networks subject to malicious attacks.,2016,71,Automatica,,db/journals/automatica/automatica71.html#DInnocenzoSB16,https://doi.org/10.1016/j.automatica.2016.04.016 +Jaroslav Marsík,Application of identification-free algorithms for adaptive control.,1989,25,Automatica,2,db/journals/automatica/automatica25.html#MarsikS89,https://doi.org/10.1016/0005-1098(89)90081-2 +Henry J. Kelley,Differential-turn maneuvering.,1976,12,Automatica,3,db/journals/automatica/automatica12.html#Kelley76,https://doi.org/10.1016/0005-1098(76)90025-X +Henrik Ohlsson,Scalable anomaly detection in large homogeneous populations.,2014,50,Automatica,5,db/journals/automatica/automatica50.html#OhlssonCPLS14,https://doi.org/10.1016/j.automatica.2014.03.008 +Klaus Schmidt 0002,Abstraction-based verification of codiagnosability for discrete event systems.,2010,46,Automatica,9,db/journals/automatica/automatica46.html#Schmidt10,https://doi.org/10.1016/j.automatica.2010.06.010 +Zhu Ren,Dynamic sensor transmission power scheduling for remote state estimation.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#RenCCSZ14,https://doi.org/10.1016/j.automatica.2014.02.022 +Yuzhe Xu,Model based peer-to-peer estimator over wireless sensor networks with lossy channels.,2015,61,Automatica,,db/journals/automatica/automatica61.html#XuFS15,https://doi.org/10.1016/j.automatica.2015.08.003 +Baoxian Wang,Optimal tracking and two-channel disturbance rejection under control energy constraint.,2011,47,Automatica,4,db/journals/automatica/automatica47.html#WangGY11,https://doi.org/10.1016/j.automatica.2011.01.005 +Xiao-Dong Li,Quasi-sliding mode based repetitive control for nonlinear continuous-time systems with rejection of periodic disturbances.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#LiCH09,https://doi.org/10.1016/j.automatica.2008.04.023 +Irving Lefkowitz,Applied control theory: J. R. Leigh.,1985,21,Automatica,1,db/journals/automatica/automatica21.html#Lefkowitz85,https://doi.org/10.1016/0005-1098(85)90104-9 +Shi Wang,Quantum feedback control of linear stochastic systems with feedback-loop time delays.,2015,52,Automatica,,db/journals/automatica/automatica52.html#WangJ15,https://doi.org/10.1016/j.automatica.2014.11.014 +Petre Stoica,Optimization with respect to covariance sequence parameters.,1985,21,Automatica,6,db/journals/automatica/automatica21.html#StoicaS85,https://doi.org/10.1016/0005-1098(85)90041-X +Hassan K. Khalil,Steering control of singularly perturbed systems: a composite control approach.,1989,25,Automatica,1,db/journals/automatica/automatica25.html#KhalilH89,https://doi.org/10.1016/0005-1098(89)90120-9 +Wen Mi,Frequency-domain identification: An algorithm based on an adaptive rational orthogonal system.,2012,48,Automatica,6,db/journals/automatica/automatica48.html#MiQ12,https://doi.org/10.1016/j.automatica.2012.03.002 +Oswaldo Luiz V. Costa,A generalized multi-period mean-variance portfolio optimization with Markov switching parameters.,2008,44,Automatica,10,db/journals/automatica/automatica44.html#CostaA08,https://doi.org/10.1016/j.automatica.2008.02.014 +Bo Shen,Stabilization for sampled-data systems under noisy sampling interval.,2016,63,Automatica,,db/journals/automatica/automatica63.html#ShenWH16,https://doi.org/10.1016/j.automatica.2015.10.005 +Roberto Naldi,Passivity-based control for hybrid systems with applications to mechanical systems exhibiting impacts.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#NaldiS13,https://doi.org/10.1016/j.automatica.2013.01.018 +Zidong Wang,Filtering on nonlinear time-delay stochastic systems.,2003,39,Automatica,1,db/journals/automatica/automatica39.html#WangH03,https://doi.org/10.1016/S0005-1098(02)00178-4 +P. R. Bélanger,Direct performance optimization using Laguerre models.,1994,30,Automatica,5,db/journals/automatica/automatica30.html#BelangerAGGV94,https://doi.org/10.1016/0005-1098(94)90177-5 +Changyun Wen,Decentralized adaptive stabilization in the presence of unknown backlash-like hysteresis.,2007,43,Automatica,3,db/journals/automatica/automatica43.html#WenZ07,https://doi.org/10.1016/j.automatica.2006.10.012 +Luca Consolini,Generalized bang-bang control for feedforward constrained regulation.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#ConsoliniP09,https://doi.org/10.1016/j.automatica.2009.06.030 +Barry Dwolatzky,Intermediate domain system identification using walsh transforms.,1984,20,Automatica,2,db/journals/automatica/automatica20.html#Dwolatzky84,https://doi.org/10.1016/0005-1098(84)90031-1 +Zhe Gao,Robust stabilization criterion of fractional-order controllers for interval fractional-order plants.,2015,61,Automatica,,db/journals/automatica/automatica61.html#Gao15,https://doi.org/10.1016/j.automatica.2015.07.021 +Giulio Bottegal,The generalized cross validation filter.,2018,90,Automatica,,db/journals/automatica/automatica90.html#BottegalP18,https://doi.org/10.1016/j.automatica.2017.12.054 +Gang Tao,Discrete-time adaptive control of plants with unknown output dead-zones.,1995,31,Automatica,2,db/journals/automatica/automatica31.html#TaoK95,https://doi.org/10.1016/0005-1098(94)00087-Y +Baoping Guo,The application and expansion of the input-output consumption-tracking control model.,1989,25,Automatica,2,db/journals/automatica/automatica25.html#GuoH89,https://doi.org/10.1016/0005-1098(89)90078-2 +Darryl DeHaan,Extremum-seeking control of state-constrained nonlinear systems.,2005,41,Automatica,9,db/journals/automatica/automatica41.html#DeHaanG05,https://doi.org/10.1016/j.automatica.2005.03.030 +Marcos Cesar Bragagnolo,Reset strategy for consensus in networks of clusters.,2016,65,Automatica,,db/journals/automatica/automatica65.html#BragagnoloMDR16,https://doi.org/10.1016/j.automatica.2015.11.030 +Rahmat Shoureshi,Robust control for manipulators with uncertain dynamics.,1990,26,Automatica,2,db/journals/automatica/automatica26.html#ShoureshiMR90,https://doi.org/10.1016/0005-1098(90)90129-6 +Yong-Yan Cao,On simultaneous Hinfinity control and strong Hinfinity stabilization.,2000,36,Automatica,6,db/journals/automatica/automatica36.html#CaoL00,https://doi.org/10.1016/S0005-1098(99)00212-5 +Kenan Ezal,Disturbance attenuating output-feedback control of nonlinear systems with local optimality.,2001,37,Automatica,6,db/journals/automatica/automatica37.html#EzalKTB01,https://doi.org/10.1016/S0005-1098(01)00024-3 +Wu-Hua Chen,Input-to-state stability and integral input-to-state stability of nonlinear impulsive systems with delays.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#ChenZ09a,https://doi.org/10.1016/j.automatica.2009.02.005 +Alex A. Kurzhanskiy,Reach set computation and control synthesis for discrete-time dynamical systems with disturbances.,2011,47,Automatica,7,db/journals/automatica/automatica47.html#KurzhanskiyV11,https://doi.org/10.1016/j.automatica.2011.02.009 +Paulo A. V. Ferreira,System modeling and optimization under vector-valued criteria.,1994,30,Automatica,2,db/journals/automatica/automatica30.html#FerreiraB94,https://doi.org/10.1016/0005-1098(94)90034-5 +Yunjun Xu,Virtual motion camouflage based phantom track generation through cooperative electronic combat air vehicles.,2010,46,Automatica,9,db/journals/automatica/automatica46.html#XuB10,https://doi.org/10.1016/j.automatica.2010.05.027 +Osvaldo E. Agamennoni,On robust stability analysis of a control system using laguerre series.,1992,28,Automatica,4,db/journals/automatica/automatica28.html#AgamennoniPD92,https://doi.org/10.1016/0005-1098(92)90042-E +Mara Tanelli,Robust nonlinear output feedback control for brake by wire control systems.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#TanelliAS08,https://doi.org/10.1016/j.automatica.2007.08.020 +Bin Zhou 0001,Truncated predictor feedback for linear systems with long time-varying input delays.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#ZhouLD12,https://doi.org/10.1016/j.automatica.2012.06.032 +Patrizio Colaneri,Multirate LQG control of continuous-time stochastic systems.,1995,31,Automatica,4,db/journals/automatica/automatica31.html#ColaneriN95,https://doi.org/10.1016/0005-1098(95)98488-R +Weizhou Su,Fundamental limit of discrete-time systems in tracking multi-tone sinusoidal signals.,2007,43,Automatica,1,db/journals/automatica/automatica43.html#SuQC07,https://doi.org/10.1016/j.automatica.2006.08.001 +John O. Gray,Computer aided design of multivariable nonlinear control systems using frequency domain techniques.,1979,15,Automatica,3,db/journals/automatica/automatica15.html#GrayT79,https://doi.org/10.1016/0005-1098(79)90045-1 +Nader Meskin,Robust fault detection and isolation of time-delay systems using a geometric approach.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#MeskinK09,https://doi.org/10.1016/j.automatica.2009.02.019 +José Ragot,An algorithm for obtaining the redundancy equations of LTI systems.,1994,30,Automatica,3,db/journals/automatica/automatica30.html#RagotM94,https://doi.org/10.1016/0005-1098(94)90133-3 +Erik Weyer,Asymptotic properties of SPS confidence regions.,2017,82,Automatica,,db/journals/automatica/automatica82.html#WeyerCC17,https://doi.org/10.1016/j.automatica.2017.04.041 +Iman Shames,Minimization of the effect of noisy measurements on localization of multi-agent autonomous formations.,2009,45,Automatica,4,db/journals/automatica/automatica45.html#ShamesFA09,https://doi.org/10.1016/j.automatica.2008.11.018 +Ioannis Kanellakopoulos,An extended direct scheme for robust adaptive nonlinear control.,1991,27,Automatica,2,db/journals/automatica/automatica27.html#KanellakopoulosKM91,https://doi.org/10.1016/0005-1098(91)90075-D +Zhirong Qiu,Distributed constrained optimal consensus of multi-agent systems.,2016,68,Automatica,,db/journals/automatica/automatica68.html#QiuLX16,https://doi.org/10.1016/j.automatica.2016.01.055 +Xiaobo Tan,Decentralized coordination of autonomous swarms using parallel Gibbs sampling.,2010,46,Automatica,12,db/journals/automatica/automatica46.html#TanXB10,https://doi.org/10.1016/j.automatica.2010.09.004 +Mehmet önder Efe,Variable structure control of a class of uncertain systems.,2004,40,Automatica,1,db/journals/automatica/automatica40.html#EfeUKY04,https://doi.org/10.1016/j.automatica.2003.07.010 +Peng Lin,Consensus of second-order discrete-time multi-agent systems with nonuniform time-delays and dynamically changing topologies.,2009,45,Automatica,9,db/journals/automatica/automatica45.html#LinJ09,https://doi.org/10.1016/j.automatica.2009.05.002 +Zhiyun Zhao,Global leader-following consensus of a group of general linear systems using bounded controls.,2016,68,Automatica,,db/journals/automatica/automatica68.html#ZhaoL16,https://doi.org/10.1016/j.automatica.2016.01.027 +Giorgio Bartolini,Second-order sliding-mode control of container cranes.,2002,38,Automatica,10,db/journals/automatica/automatica38.html#BartoliniPU02,https://doi.org/10.1016/S0005-1098(02)00081-X +Hector Ramirez Estay,On the passivity based control of irreversible processes: A port-Hamiltonian approach.,2016,64,Automatica,,db/journals/automatica/automatica64.html#EstayGMC16,https://doi.org/10.1016/j.automatica.2015.07.002 +P. P. J. van den Bosch,Adaptive attitude control for large-angle slew manoeuvres.,1986,22,Automatica,2,db/journals/automatica/automatica22.html#BoschJS86,https://doi.org/10.1016/0005-1098(86)90082-8 +Frédéric Mazenc,Stabilization in a chemostat with sampled and delayed measurements and uncertain growth functions.,2017,78,Automatica,,db/journals/automatica/automatica78.html#MazencHM17,https://doi.org/10.1016/j.automatica.2016.12.035 +Jinbiao Lin,Stochastic source seeking with forward and angular velocity regulation.,2017,83,Automatica,,db/journals/automatica/automatica83.html#LinSYK17,https://doi.org/10.1016/j.automatica.2017.06.007 +Wei Zhu 0004,Event-based consensus of multi-agent systems with general linear models.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#ZhuJF14,https://doi.org/10.1016/j.automatica.2013.11.023 +Tryphon C. Xinogalas,Hierarchical computation of decentralized gains for interconnected systems.,1982,18,Automatica,4,db/journals/automatica/automatica18.html#XinogalasMS82,https://doi.org/10.1016/0005-1098(82)90076-0 +Weizhou Su,Global robust disturbance attenuation and almost disturbance decoupling for uncertain cascaded nonlinear systems.,1999,35,Automatica,4,db/journals/automatica/automatica35.html#SuXS99,https://doi.org/10.1016/S0005-1098(98)00200-3 +Marcel Staroswiecki,Analytical redundancy relations for fault detection and isolation in algebraic dynamic systems.,2001,37,Automatica,5,db/journals/automatica/automatica37.html#StaroswieckiC01,https://doi.org/10.1016/S0005-1098(01)00005-X +Joseph A. Ball,Robust L2-gain control for nonlinear systems with projection dynamics and input constraints: an example from traffic control.,1999,35,Automatica,3,db/journals/automatica/automatica35.html#BallDYK99,https://doi.org/10.1016/S0005-1098(98)00164-2 +Thomas Berger,Funnel control for nonlinear systems with known strict relative degree.,2018,87,Automatica,,db/journals/automatica/automatica87.html#BergerLR18,https://doi.org/10.1016/j.automatica.2017.10.017 +Jay A. Farrell,Persistence of excitation conditions in passive learning control.,1997,33,Automatica,4,db/journals/automatica/automatica33.html#Farrell97,https://doi.org/10.1016/S0005-1098(96)00203-8 +Anne Goelzer,Cell design in bacteria as a convex optimization problem.,2011,47,Automatica,6,db/journals/automatica/automatica47.html#GoelzerFS11,https://doi.org/10.1016/j.automatica.2011.02.038 +Marc Bodson,An Adaptive Algorithm for the Tuning of Two Input Shaping Methods.,1998,34,Automatica,6,db/journals/automatica/automatica34.html#Bodson98,https://doi.org/10.1016/S0005-1098(98)00004-1 +Christophe Fiter,A state dependent sampling for linear state feedback.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#FiterHPR12,https://doi.org/10.1016/j.automatica.2012.05.063 +Oswaldo Luiz V. Costa,Indefinite quadratic with linear costs optimal control of Markov jump with multiplicative noise systems.,2007,43,Automatica,4,db/journals/automatica/automatica43.html#CostaP07,https://doi.org/10.1016/j.automatica.2006.10.022 +Lorenzo Marconi,Matched disturbance suppression for nonlinear systems stabilizable by logic-based feedback.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#MarconiT12,https://doi.org/10.1016/j.automatica.2012.02.027 +James W. Howse,Least squares estimation techniques for position tracking of radioactive sources.,2001,37,Automatica,11,db/journals/automatica/automatica37.html#HowseTM01,https://doi.org/10.1016/S0005-1098(01)00134-0 +Hua Yong Liang,Robust state estimation for uncertain discrete-time stochastic systems with missing measurements.,2011,47,Automatica,7,db/journals/automatica/automatica47.html#LiangZ11,https://doi.org/10.1016/j.automatica.2011.04.009 +P. M. Mäkilä,On linear models for nonlinear systems.,2003,39,Automatica,1,db/journals/automatica/automatica39.html#MakilaP03,https://doi.org/10.1016/S0005-1098(02)00183-8 +Michel C. Delfour,F-reduction of the operator Riccati equation for hereditary differential systems.,1978,14,Automatica,4,db/journals/automatica/automatica14.html#DelfourLM78,https://doi.org/10.1016/0005-1098(78)90037-7 +Chris Meissen,Compositional performance certification of interconnected systems using ADMM.,2015,61,Automatica,,db/journals/automatica/automatica61.html#MeissenLAP15,https://doi.org/10.1016/j.automatica.2015.07.027 +Rifat Sipahi,Extraction of 3D stability switching hypersurfaces of a time delay system with multiple fixed delays.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#SipahiD09,https://doi.org/10.1016/j.automatica.2009.01.017 +Hongfei Li,Discretized Lyapunov-Krasovskii functional for coupled differential-difference equations with multiple delay channels.,2010,46,Automatica,5,db/journals/automatica/automatica46.html#LiG10,https://doi.org/10.1016/j.automatica.2010.02.007 +Chiang-Ju Chien,A new approach to model reference control for a class of arbitrarily fast time-varying unknown plants.,1992,28,Automatica,2,db/journals/automatica/automatica28.html#ChienF92,https://doi.org/10.1016/0005-1098(92)90133-Z +Zhiguang Feng,On reachable set estimation of singular systems.,2015,52,Automatica,,db/journals/automatica/automatica52.html#FengL15,https://doi.org/10.1016/j.automatica.2014.11.007 +Kai-ching Chu,Real-time urban power dispatch with ambient air quality constraints.,1978,14,Automatica,1,db/journals/automatica/automatica14.html#ChuJL78,https://doi.org/10.1016/0005-1098(78)90073-0 +I. Borno,Parallel algorithms for optimal control of weakly coupled and singularly perturbed jump linear systems.,1995,31,Automatica,7,db/journals/automatica/automatica31.html#BornoG95,https://doi.org/10.1016/0005-1098(95)00011-K +Keck Voon Ling,A state space GPC with extensions to multirate control.,1996,32,Automatica,7,db/journals/automatica/automatica32.html#LingL96,https://doi.org/10.1016/0005-1098(96)00049-0 +Rajni V. Patel,Bounds on performance of nonstationary continuous-time filters under modelling uncertainty.,1984,20,Automatica,1,db/journals/automatica/automatica20.html#PatelT84,https://doi.org/10.1016/0005-1098(84)90072-4 +T. W. U. Madhushani,Semi-globally exponential trajectory tracking for a class of spherical robots.,2017,85,Automatica,,db/journals/automatica/automatica85.html#MadhushaniMWB17,https://doi.org/10.1016/j.automatica.2017.07.060 +Xiaojing Zhang,On the sample size of random convex programs with structured dependence on the uncertainty.,2015,60,Automatica,,db/journals/automatica/automatica60.html#ZhangGSGL15,https://doi.org/10.1016/j.automatica.2015.07.013 +Augusto Ferrante,A parametrization of the solutions of the finite-horizon LQ problem with general cost and boundary conditions.,2005,41,Automatica,8,db/journals/automatica/automatica41.html#FerranteMN05,https://doi.org/10.1016/j.automatica.2005.01.018 +Romain Postoyan,Event-triggered tracking control of unicycle mobile robots.,2015,52,Automatica,,db/journals/automatica/automatica52.html#PostoyanBGDNC15,https://doi.org/10.1016/j.automatica.2014.12.009 +Junqiang Zhou,Predictive inverse model allocation for constrained over-actuated linear systems.,2016,67,Automatica,,db/journals/automatica/automatica67.html#ZhouCS16,https://doi.org/10.1016/j.automatica.2016.01.045 +Meryem Makoudi,A robust decentralized model reference adaptive control for non-minimum-phase interconnected systems.,1999,35,Automatica,8,db/journals/automatica/automatica35.html#MakoudiR99a,https://doi.org/10.1016/S0005-1098(99)00054-0 +Tudor Ionescu,Discrete model reference adaptive control with an augmented error signal.,1977,13,Automatica,5,db/journals/automatica/automatica13.html#IonescuM77,https://doi.org/10.1016/0005-1098(77)90071-1 +Srdjan S. Stankovic,Consensus based overlapping decentralized estimation with missing observations and communication faults.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#StankovicSS09,https://doi.org/10.1016/j.automatica.2009.02.014 +Saber Jafarizadeh,Optimizing the convergence rate of the quantum consensus: A discrete-time model.,2016,73,Automatica,,db/journals/automatica/automatica73.html#Jafarizadeh16,https://doi.org/10.1016/j.automatica.2016.07.029 +Wei Wang 0016,Distributed adaptive asymptotically consensus tracking control of nonlinear multi-agent systems with unknown parameters and uncertain disturbances.,2017,77,Automatica,,db/journals/automatica/automatica77.html#0016WH17,https://doi.org/10.1016/j.automatica.2016.11.019 +Ioannis Lestas,Scalable robust stability for nonsymmetric heterogeneous networks.,2007,43,Automatica,4,db/journals/automatica/automatica43.html#LestasV07,https://doi.org/10.1016/j.automatica.2006.10.018 +Yuqian Guo,Stability analysis and design of reset systems: Theory and an application.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#GuoWXZ09,https://doi.org/10.1016/j.automatica.2008.08.016 +Cheng-Lin Liu,Stationary consensus of heterogeneous multi-agent systems with bounded communication delays.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#LiuL11,https://doi.org/10.1016/j.automatica.2011.06.005 +Hariharan Krishnan,Tracking in nonlinear differential-algebraic control systems with applications to constrained robot systems.,1994,30,Automatica,12,db/journals/automatica/automatica30.html#KrishnanM94,https://doi.org/10.1016/0005-1098(94)90049-3 +Yang Liu 0040,Controllability of probabilistic Boolean control networks based on transition probability matrices.,2015,52,Automatica,,db/journals/automatica/automatica52.html#LiuCLW15,https://doi.org/10.1016/j.automatica.2014.12.018 +Ramón A. Delgado,A combined MAP and Bayesian scheme for finite data and/or moving horizon estimation.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#DelgadoG14,https://doi.org/10.1016/j.automatica.2014.02.001 +Michel Verhaegen,A class of subspace model identification algorithms to identify periodically and arbitrarily time-varying systems.,1995,31,Automatica,2,db/journals/automatica/automatica31.html#VerhaegenY95,https://doi.org/10.1016/0005-1098(94)00091-V +Po-Feng Wu,On the geometric and dynamic structures of the H2 optimal and Hinfinity central controllers.,2010,46,Automatica,11,db/journals/automatica/automatica46.html#WuY10,https://doi.org/10.1016/j.automatica.2010.06.049 +Reyad El-Khazali,Variable structure robust control of uncertain time-delay systems.,1998,34,Automatica,3,db/journals/automatica/automatica34.html#El-Khazali98,https://doi.org/10.1016/S0005-1098(97)00200-8 +Gábor Stikkel,Necessary and sufficient condition for the controllability of switching linear hybrid systems.,2004,40,Automatica,6,db/journals/automatica/automatica40.html#StikkelBS04,https://doi.org/10.1016/j.automatica.2004.01.011 +Hideyuki Tanaka,A stochastic realization algorithm via block LQ decomposition in Hilbert space.,2006,42,Automatica,5,db/journals/automatica/automatica42.html#TanakaK06,https://doi.org/10.1016/j.automatica.2005.12.025 +Amr M. Pertew,LMI-based sensor fault diagnosis for nonlinear Lipschitz systems.,2007,43,Automatica,8,db/journals/automatica/automatica43.html#PertewMZ07,https://doi.org/10.1016/j.automatica.2007.01.015 +Patrizio Colaneri,Stabilization of multirate sampled-data linear systems.,1990,26,Automatica,2,db/journals/automatica/automatica26.html#ColaneriSS90,https://doi.org/10.1016/0005-1098(90)90132-2 +Laura Menini,Velocity observers for non-linear mechanical systems subject to non-smooth impacts.,2002,38,Automatica,12,db/journals/automatica/automatica38.html#MeniniT02a,https://doi.org/10.1016/S0005-1098(02)00164-4 +Wei Lin 0001,Global robust stabilization of minimum-phase nonlinear systems with uncertainty.,1997,33,Automatica,3,db/journals/automatica/automatica33.html#Lin97,https://doi.org/10.1016/S0005-1098(96)00179-3 +Ye Yuan 0002,Robust dynamical network structure reconstruction.,2011,47,Automatica,6,db/journals/automatica/automatica47.html#YuanSWG11,https://doi.org/10.1016/j.automatica.2011.03.008 +D. Hrovat,A class of active LQG optimal actuators.,1982,18,Automatica,1,db/journals/automatica/automatica18.html#Hrovat82,https://doi.org/10.1016/0005-1098(82)90034-6 +Dale E. Seborg,Digital control systems: Rolf Isermann.,1984,20,Automatica,1,db/journals/automatica/automatica20.html#Seborg84,https://doi.org/10.1016/0005-1098(84)90079-7 +Minyue Fu,The edge theorem and graphical tests for robust stability of neutral time-delay systems.,1991,27,Automatica,4,db/journals/automatica/automatica27.html#FuOP91,https://doi.org/10.1016/0005-1098(91)90068-D +Rita Cunha,Vision-based control for rigid body stabilization.,2011,47,Automatica,5,db/journals/automatica/automatica47.html#CunhaSHA11,https://doi.org/10.1016/j.automatica.2011.01.062 +Ankur A. Kulkarni,Finite dimensional approximation and Newton-based algorithm for stochastic approximation in Hilbert space.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#KulkarniB09,https://doi.org/10.1016/j.automatica.2009.09.031 +Tiebao Yang,Local I gain of bifurcation stabilization.,2008,44,Automatica,10,db/journals/automatica/automatica44.html#YangC08a,https://doi.org/10.1016/j.automatica.2008.02.019 +Jian-Xin Xu 0001,Iterative learning control design without a priori knowledge of the control direction.,2004,40,Automatica,10,db/journals/automatica/automatica40.html#XuY04,https://doi.org/10.1016/j.automatica.2004.05.010 +Ping Zhang 0007,Disturbance decoupling in fault detection of linear periodic systems.,2007,43,Automatica,8,db/journals/automatica/automatica43.html#ZhangD07,https://doi.org/10.1016/j.automatica.2007.01.005 +Huai-Ning Wu,An ILMI approach to robust I static output feedback fuzzy control for uncertain discrete-time nonlinear systems.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#Wu08,https://doi.org/10.1016/j.automatica.2008.01.002 +Luis Antonio Montestruque,On the model-based control of networked systems.,2003,39,Automatica,10,db/journals/automatica/automatica39.html#MontestruqueA03,https://doi.org/10.1016/S0005-1098(03)00186-9 +Ruth F. Curtain,Green's function and transfer functions handbook: Anatoliy G. Butkovskiy.,1983,19,Automatica,5,db/journals/automatica/automatica19.html#Curtain83a,https://doi.org/10.1016/0005-1098(83)90018-3 +Fernando Madeira,Guidance and control of a launch vehicle using a stochastic gradient projection method.,2000,36,Automatica,3,db/journals/automatica/automatica36.html#MadeiraN00,https://doi.org/10.1016/S0005-1098(99)00163-6 +Daniel R. Ramírez,Piecewise affinity of min-max MPC with bounded additive uncertainties and a quadratic criterion.,2006,42,Automatica,2,db/journals/automatica/automatica42.html#RamirezC06,https://doi.org/10.1016/j.automatica.2005.09.009 +Petros G. Voulgaris,On optimal and#8467*∞ to and#8467*∞ filtering.,1995,31,Automatica,3,db/journals/automatica/automatica31.html#Voulgaris95,https://doi.org/10.1016/0005-1098(94)00123-Z +Mohammed Dahleh,On slowly time-varying systems.,1991,27,Automatica,1,db/journals/automatica/automatica27.html#DahlehD91,https://doi.org/10.1016/0005-1098(91)90022-T +Douglas F. Elliott,A variable metric technique for parameter optimization.,1969,5,Automatica,6,db/journals/automatica/automatica5.html#ElliottS69,https://doi.org/10.1016/0005-1098(69)90094-6 +Leo Motus,Real-time computer control: An introduction: Stuart Bennett.,1991,27,Automatica,2,db/journals/automatica/automatica27.html#Motus91,https://doi.org/10.1016/0005-1098(91)90096-K +Emilia Fridman,Robust sampled-data control of a class of semilinear parabolic systems.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#FridmanB12,https://doi.org/10.1016/j.automatica.2012.02.006 +David W. K. Yeung,Dynamically stable corporate joint ventures.,2006,42,Automatica,3,db/journals/automatica/automatica42.html#YeungP06,https://doi.org/10.1016/j.automatica.2005.10.010 +Arne Tyssø,The design of a multivariable control system for a ship boiler.,1976,12,Automatica,3,db/journals/automatica/automatica12.html#TyssoBL76,https://doi.org/10.1016/0005-1098(76)90021-2 +Marco Lovera,Spacecraft attitude control using magnetic actuators.,2004,40,Automatica,8,db/journals/automatica/automatica40.html#LoveraA04,https://doi.org/10.1016/j.automatica.2004.02.022 +Raymond Kristiansen,Spacecraft coordination control in 6DOF: Integrator backstepping vs passivity-based control.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#KristiansenNG08,https://doi.org/10.1016/j.automatica.2008.04.019 +Xiaojian Li,Development of a collision-avoidance vector based control algorithm for automated in-vivo transportation of biological cells.,2018,90,Automatica,,db/journals/automatica/automatica90.html#LiCLCWS18,https://doi.org/10.1016/j.automatica.2017.12.022 +Tianshi Chen,On kernel design for regularized LTI system identification.,2018,90,Automatica,,db/journals/automatica/automatica90.html#Chen18,https://doi.org/10.1016/j.automatica.2017.12.039 +Hüseyin Akçay,Frequency domain subspace-based identification of discrete-time power spectra from uniformly spaced measurements.,2011,47,Automatica,2,db/journals/automatica/automatica47.html#Akcay11,https://doi.org/10.1016/j.automatica.2010.10.051 +Young-Hun Lim,Stability analysis of linear systems under state and rate saturations.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#LimA13,https://doi.org/10.1016/j.automatica.2012.11.015 +Céline Casenave,Time-local formulation and identification of implicit Volterra models by use of diffusive representation.,2011,47,Automatica,10,db/journals/automatica/automatica47.html#Casenave11,https://doi.org/10.1016/j.automatica.2011.08.007 +Jun Wu 0003,Robust Finite Word Length controller design.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#WuLCC09,https://doi.org/10.1016/j.automatica.2009.09.001 +Shaunak Dattaprasad Bopardikar,On vehicle placement to intercept moving targets.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#BopardikarSB11,https://doi.org/10.1016/j.automatica.2011.06.010 +S. Kim,Aiming control: Design of residence probability controllers.,1992,28,Automatica,3,db/journals/automatica/automatica28.html#KimMR92a,https://doi.org/10.1016/0005-1098(92)90179-J +Brian D. O. Anderson,Identification of scalar errors-in-variables models with dynamics.,1985,21,Automatica,6,db/journals/automatica/automatica21.html#Anderson85a,https://doi.org/10.1016/0005-1098(85)90044-5 +Mario Innocenti,Sliding mode control for two-time scale systems: stability issues.,2003,39,Automatica,2,db/journals/automatica/automatica39.html#InnocentiGP03,https://doi.org/10.1016/S0005-1098(02)00199-1 +Xiaoping Liu,Almost disturbance decoupling of MIMO nonlinear systems and application to chemical processes.,2004,40,Automatica,3,db/journals/automatica/automatica40.html#LiuJR04,https://doi.org/10.1016/j.automatica.2003.10.019 +Masoud Abbaszadeh,Robust Hinfinity observer design for sampled-data Lipschitz nonlinear systems with exact and Euler approximate models.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#AbbaszadehM08,https://doi.org/10.1016/j.automatica.2007.07.021 +Jan Staar,A study of MBH-type realization algorithms.,1981,17,Automatica,3,db/journals/automatica/automatica17.html#Staar81,https://doi.org/10.1016/0005-1098(81)90009-1 +George S. Axelby,Automatica prize paper awards.,1980,16,Automatica,2,db/journals/automatica/automatica16.html#Axelby80,https://doi.org/10.1016/0005-1098(80)90047-3 +Zhiyong Chen,Global stabilization of nonlinear cascaded systems with a Lyapunov function in superposition form.,2009,45,Automatica,9,db/journals/automatica/automatica45.html#Chen09,https://doi.org/10.1016/j.automatica.2009.04.021 +Philippe de Larminat,Application of ACSYDE (automatic control system design) to the IFAC-93 benchmark.,1994,30,Automatica,4,db/journals/automatica/automatica30.html#LarminatH94,https://doi.org/10.1016/0005-1098(94)90145-7 +Agnes Rensfelt,Optimal sensor locations for nonparametric identification of viscoelastic materials.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#RensfeltMMS08,https://doi.org/10.1016/j.automatica.2007.04.007 +L. Y. Shih,Automatic guidance of mobile robots in two-way traffic.,1985,21,Automatica,2,db/journals/automatica/automatica21.html#Shih85,https://doi.org/10.1016/0005-1098(85)90113-X +Biao Luo,Data-based approximate policy iteration for affine nonlinear continuous-time optimal control design.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#LuoWHL14,https://doi.org/10.1016/j.automatica.2014.10.056 +John Hugh Westcott,Committee on control theory.,1969,5,Automatica,5,db/journals/automatica/automatica5.html#Westcott69,https://doi.org/10.1016/0005-1098(69)90040-5 +Alexey A. Bobtsov,A note to output feedback adaptive control for uncertain system with static nonlinearity.,2005,41,Automatica,12,db/journals/automatica/automatica41.html#Bobtsov05,https://doi.org/10.1016/j.automatica.2005.08.006 +Kumpati S. Narendra,The use of learning algorithms in telephone traffic routing - A methodology.,1983,19,Automatica,5,db/journals/automatica/automatica19.html#NarendraM83,https://doi.org/10.1016/0005-1098(83)90004-3 +Meryem Makoudi,A robust model reference adaptive control for non-minimum phase systems with unknown or time-varying delay.,2000,36,Automatica,7,db/journals/automatica/automatica36.html#MakoudiR00,https://doi.org/10.1016/S0005-1098(99)00223-X +Juhoon Back,An algorithm for system immersion into nonlinear observer form: SISO case.,2006,42,Automatica,2,db/journals/automatica/automatica42.html#BackS06,https://doi.org/10.1016/j.automatica.2005.09.014 +Mi-Ching Tsai,Balanced minimal realization via singular value decomposition of Sarason operator.,1988,24,Automatica,5,db/journals/automatica/automatica24.html#TsaiS88,https://doi.org/10.1016/0005-1098(88)90119-7 +Chang Chieh Hang,Editorial.,2005,41,Automatica,11,db/journals/automatica/automatica41.html#Chang-Chieh05,https://doi.org/10.1016/j.automatica.2005.07.002 +Vladimír Strejc,Least squares parameter estimation.,1980,16,Automatica,5,db/journals/automatica/automatica16.html#Strejc80,https://doi.org/10.1016/0005-1098(80)90077-1 +Zairong Xi,Nonlinear decentralized controller design for multimachine power systems using Hamiltonian function method.,2002,38,Automatica,3,db/journals/automatica/automatica38.html#XiCLM02,https://doi.org/10.1016/S0005-1098(01)00233-3 +Emilia Fridman,A descriptor system approach to nonlinear singularly perturbed optimal control problem.,2001,37,Automatica,4,db/journals/automatica/automatica37.html#Fridman01,https://doi.org/10.1016/S0005-1098(00)00185-0 +Sean R. Anderson,Modelling and identification of non-linear deterministic systems in the delta-domain.,2007,43,Automatica,11,db/journals/automatica/automatica43.html#AndersonK07,https://doi.org/10.1016/j.automatica.2007.03.020 +Unai Ugalde,Generalized sampled-data hold functions with asymptotic zero-order hold behavior and polynomic reconstruction.,2012,48,Automatica,6,db/journals/automatica/automatica48.html#UgaldeBB12,https://doi.org/10.1016/j.automatica.2012.03.004 +Paul M. Frank,Fault diagnosis in dynamic systems using analytical and knowledge-based redundancy: A survey and some new results.,1990,26,Automatica,3,db/journals/automatica/automatica26.html#Frank90,https://doi.org/10.1016/0005-1098(90)90018-D +Heng Wang 0002,Dimensionality reduction for point feature SLAM problems with spherical covariance matrices.,2015,51,Automatica,,db/journals/automatica/automatica51.html#WangHKFDL15,https://doi.org/10.1016/j.automatica.2014.10.114 +Fernando Daniel Bianchi,Interpolation for gain-scheduled control with guarantees.,2011,47,Automatica,1,db/journals/automatica/automatica47.html#BianchiP11,https://doi.org/10.1016/j.automatica.2010.10.028 +Shenquan Wang,"Comment on ""On LMI conditions to design observer-based controllers for linear systems with parameter uncertainties [Automatica 49 (2013) 3700-3704]"".",2014,50,Automatica,10,db/journals/automatica/automatica50.html#WangJ14,https://doi.org/10.1016/j.automatica.2014.08.001 +Rudolf Kulhavý,Recursive nonlinear estimation: A geometric approach.,1990,26,Automatica,3,db/journals/automatica/automatica26.html#Kulhavy90a,https://doi.org/10.1016/0005-1098(90)90025-D +S. O. Reza Moheimani,Model correction for a class of spatio-temporal systems.,2002,38,Automatica,1,db/journals/automatica/automatica38.html#MoheimaniH02,https://doi.org/10.1016/S0005-1098(01)00178-9 +Wei Liu 0041,Event-triggered cooperative robust practical output regulation for a class of linear multi-agent systems.,2017,85,Automatica,,db/journals/automatica/automatica85.html#LiuH17a,https://doi.org/10.1016/j.automatica.2017.07.049 +S. Barnett,Some results on the sensitivity and synthesis of asymptotically stable linear and non-linear systems.,1968,4,Automatica,4,db/journals/automatica/automatica4.html#BarnettS68,https://doi.org/10.1016/0005-1098(68)90013-7 +Fabrizio Padula,Inversion-based feedforward and reference signal design for fractional constrained control systems.,2014,50,Automatica,8,db/journals/automatica/automatica50.html#PadulaV14,https://doi.org/10.1016/j.automatica.2014.06.007 +S. Emre Tuna,A dual pair of optimization-based formulations for estimation and control.,2015,51,Automatica,,db/journals/automatica/automatica51.html#Tuna15,https://doi.org/10.1016/j.automatica.2014.10.110 +Roberto Zanasi,Discrete minimum time tracking problem for a chain of three integrators with bounded input.,2003,39,Automatica,9,db/journals/automatica/automatica39.html#ZanasiM03,https://doi.org/10.1016/S0005-1098(03)00169-9 +W. Mann,Digital control of a rotary dryer in the sugar industry.,1983,19,Automatica,2,db/journals/automatica/automatica19.html#Mann83,https://doi.org/10.1016/0005-1098(83)90087-0 +Carlos E. de Souza,Mean square state estimation for sensor networks.,2016,72,Automatica,,db/journals/automatica/automatica72.html#SouzaCK16,https://doi.org/10.1016/j.automatica.2016.05.016 +Ji Xiang,On the V-stability of complex dynamical networks.,2007,43,Automatica,6,db/journals/automatica/automatica43.html#XiangC07,https://doi.org/10.1016/j.automatica.2006.11.014 +Charles A. Desoer,Stability of a nonlinear time-invariant feedback system under almost constant inputs.,1969,5,Automatica,2,db/journals/automatica/automatica5.html#DesoerW69,https://doi.org/10.1016/0005-1098(69)90016-8 +François Dufour,An image-based filter for discrete-time markovian jump linear systems.,1996,32,Automatica,2,db/journals/automatica/automatica32.html#DufourB96,https://doi.org/10.1016/0005-1098(96)85554-3 +Hyeygjeon Chang,Enhancement of the immune system in HIV dynamics by output feedback.,2009,45,Automatica,7,db/journals/automatica/automatica45.html#ChangA09,https://doi.org/10.1016/j.automatica.2009.03.016 +Martin Enqvist,Separability of scalar random multisine signals.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#Enqvist11,https://doi.org/10.1016/j.automatica.2011.05.015 +Roland Strietzel,An elementary introduction to optimal control : John M. Blatt.,1983,19,Automatica,1,db/journals/automatica/automatica19.html#Strietzel83,https://doi.org/10.1016/0005-1098(83)90084-5 +Sandra H. Dandach,Distributed sequential algorithms for regional source localization.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#DandachB13,https://doi.org/10.1016/j.automatica.2012.09.006 +Zhijie Liu,Modeling and vibration control of a flexible aerial refueling hose with variable lengths and input constraint.,2017,77,Automatica,,db/journals/automatica/automatica77.html#LiuLH17,https://doi.org/10.1016/j.automatica.2016.11.002 +Jisang Park,Controller certification.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#ParkB08,https://doi.org/10.1016/j.automatica.2007.04.021 +Marcio S. de Queiroz,Adaptive control of robot manipulators with controller/update law modularity.,1999,35,Automatica,8,db/journals/automatica/automatica35.html#QueirozDA99,https://doi.org/10.1016/S0005-1098(99)00048-5 +Jun Liu 0015,Input-to-state stability of impulsive and switching hybrid systems with time-delay.,2011,47,Automatica,5,db/journals/automatica/automatica47.html#LiuLX11,https://doi.org/10.1016/j.automatica.2011.01.061 +Chan H. Ham,Nonlinear learning control for a class of nonlinear systems.,2001,37,Automatica,3,db/journals/automatica/automatica37.html#HamQK01,https://doi.org/10.1016/S0005-1098(00)00165-5 +Wei Feng,Stability analysis and stabilization control of multi-variable switched stochastic systems.,2006,42,Automatica,1,db/journals/automatica/automatica42.html#FengZ06,https://doi.org/10.1016/j.automatica.2005.08.016 +Jun Yoneyama,Robust Adaptive Control for Linear Systems with Unknown Parameters.,1997,33,Automatica,10,db/journals/automatica/automatica33.html#YoneyamaSD97,https://doi.org/10.1016/S0005-1098(97)00095-2 +Qing-Guo Wang,Decoupling with internal stability for unity output feedback systems.,1992,28,Automatica,2,db/journals/automatica/automatica28.html#Wang92,https://doi.org/10.1016/0005-1098(92)90128-3 +Xiangyu Meng,A delay-partitioning approach to the stability analysis of discrete-time systems.,2010,46,Automatica,3,db/journals/automatica/automatica46.html#MengLDG10,https://doi.org/10.1016/j.automatica.2009.12.004 +Xu Chu Ding,LTL receding horizon control for finite deterministic systems.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#DingLB14,https://doi.org/10.1016/j.automatica.2013.11.030 +Taha Boukhobza,State and input observability recovering by additional sensor implementation: A graph-theoretic approach.,2009,45,Automatica,7,db/journals/automatica/automatica45.html#BoukhobzaH09,https://doi.org/10.1016/j.automatica.2009.03.011 +Douglas A. Lawrence,Analysis and design of gain scheduled sampled-data control systems.,2001,37,Automatica,7,db/journals/automatica/automatica37.html#Lawrence01,https://doi.org/10.1016/S0005-1098(01)00053-X +Marc A. Peters,Minimum entropy control for discrete-time time-varying systems.,1997,33,Automatica,4,db/journals/automatica/automatica33.html#PetersI97,https://doi.org/10.1016/S0005-1098(96)00209-9 +Tomás Masopust,A note on controllability of deterministic context-free systems.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#Masopust12,https://doi.org/10.1016/j.automatica.2012.06.004 +W. W. Willman,On second-order filter performance.,1985,21,Automatica,3,db/journals/automatica/automatica21.html#Willman85,https://doi.org/10.1016/0005-1098(85)90068-8 +Young-Hun Lim,Decentralized control of nonlinear interconnected systems under both amplitude and rate saturations.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#LimA13a,https://doi.org/10.1016/j.automatica.2013.04.005 +Kyösti Tarvainen,Decomposition methods in multiobjective discrete-time dynamic problems.,1983,19,Automatica,1,db/journals/automatica/automatica19.html#TarvainenHL83,https://doi.org/10.1016/0005-1098(83)90071-7 +Angelo Alessandri,Moving-horizon state estimation for nonlinear discrete-time systems: New stability results and approximation schemes.,2008,44,Automatica,7,db/journals/automatica/automatica44.html#AlessandriBB08,https://doi.org/10.1016/j.automatica.2007.11.020 +Marco Caponigro,Sparse Jurdjevic-Quinn stabilization of dissipative systems.,2017,86,Automatica,,db/journals/automatica/automatica86.html#CaponigroPRT17,https://doi.org/10.1016/j.automatica.2017.08.012 +Yoshiyuki Sakawa,Optimal control of container cranes.,1982,18,Automatica,3,db/journals/automatica/automatica18.html#SakawaS82a,https://doi.org/10.1016/0005-1098(82)90086-3 +Li Lee,Exact Unidirectional Perturbation Bounds for Robustness of Uncertain Generalized State-Space Systems: Continuous-Time Cases.,1997,33,Automatica,10,db/journals/automatica/automatica33.html#LeeFH97,https://doi.org/10.1016/S0005-1098(97)00106-4 +Carlos E. de Souza,Robust filtering for 2-D discrete-time linear systems with convex-bounded parameter uncertainty.,2010,46,Automatica,4,db/journals/automatica/automatica46.html#SouzaXC10,https://doi.org/10.1016/j.automatica.2010.01.017 +Per Olof Gutman,Book reviews.,2000,36,Automatica,10,db/journals/automatica/automatica36.html#Gutman00,https://doi.org/10.1016/S0005-1098(00)00070-4 +Bruce J. Allison,Dual adaptive control of chip refiner motor load.,1995,31,Automatica,8,db/journals/automatica/automatica31.html#AllisonCTD95,https://doi.org/10.1016/0005-1098(95)00030-Z +Insik Chin,A two-stage iterative learning control technique combined with real-time feedback for independent disturbance rejection.,2004,40,Automatica,11,db/journals/automatica/automatica40.html#ChinQLC04,https://doi.org/10.1016/j.automatica.2004.05.011 +M. Cuénod,Ed. Gerecke 1899-1983.,1984,20,Automatica,1,db/journals/automatica/automatica20.html#Cuenod84,https://doi.org/10.1016/0005-1098(84)90059-1 +Hanyong Shao,New delay-dependent stability criteria for systems with interval delay.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#Shao09,https://doi.org/10.1016/j.automatica.2008.09.010 +Hans S. Witsenhausen,Inequalities for the performance of suboptimal uncertain systems.,1969,5,Automatica,4,db/journals/automatica/automatica5.html#Witsenhausen69,https://doi.org/10.1016/0005-1098(69)90112-5 +Giulio Bottegal,A new kernel-based approach to system identification with quantized output data.,2017,85,Automatica,,db/journals/automatica/automatica85.html#BottegalHP17,https://doi.org/10.1016/j.automatica.2017.07.053 +Xiaoqing Cheng,Discrimination of singleton and periodic attractors in Boolean networks.,2017,84,Automatica,,db/journals/automatica/automatica84.html#ChengTCA17,https://doi.org/10.1016/j.automatica.2017.07.012 +Maojiao Ye,Nash equilibrium seeking for N-coalition noncooperative games.,2018,95,Automatica,,db/journals/automatica/automatica95.html#YeHL18,https://doi.org/10.1016/j.automatica.2018.05.020 +Zijad Aganovic,New method for optimal control and filtering of weakly coupled linear discrete stochastic systems.,1996,32,Automatica,1,db/journals/automatica/automatica32.html#AganovicGS96,https://doi.org/10.1016/0005-1098(95)00111-5 +Kenji Fujimoto,Characterization of all nonlinear stabilizing controllers via observer-based kernel representations.,2000,36,Automatica,8,db/journals/automatica/automatica36.html#FujimotoS00,https://doi.org/10.1016/S0005-1098(00)00023-6 +Alessandro Alessio,Squaring the circle: An algorithm for generating polyhedral invariant sets from ellipsoidal ones.,2007,43,Automatica,12,db/journals/automatica/automatica43.html#AlessioLBH07,https://doi.org/10.1016/j.automatica.2007.04.028 +Ari G. Partanen,The application of an iterative identification and controller design to a sugar cane crushing mill.,1995,31,Automatica,11,db/journals/automatica/automatica31.html#PartanenB95,https://doi.org/10.1016/0005-1098(95)00077-A +Peter K. Kitanidis,Unbiased minimum-variance linear state estimation.,1987,23,Automatica,6,db/journals/automatica/automatica23.html#Kitanidis87,https://doi.org/10.1016/0005-1098(87)90037-9 +N. Eva Wu,Coverage in fault-tolerant control.,2004,40,Automatica,4,db/journals/automatica/automatica40.html#Wu04,https://doi.org/10.1016/j.automatica.2003.11.015 +Stefano Battilotti,Control over a communication channel with random noise and delays.,2008,44,Automatica,2,db/journals/automatica/automatica44.html#Battilotti08,https://doi.org/10.1016/j.automatica.2007.05.025 +Azad Ghaffari,Multivariable Newton-based extremum seeking.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#GhaffariKN12,https://doi.org/10.1016/j.automatica.2012.05.059 +Frédéric Mazenc,Robust interval observers and stabilization design for discrete-time systems with input and output.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#MazencDN13,https://doi.org/10.1016/j.automatica.2013.09.016 +Maryam Kamgarpour,On optimal control of non-autonomous switched systems with a fixed mode sequence.,2012,48,Automatica,6,db/journals/automatica/automatica48.html#KamgarpourT12,https://doi.org/10.1016/j.automatica.2012.03.019 +Ton J. J. van den Boom,Complexity reduction in MPC for stochastic max-plus-linear discrete event systems by variability expansion.,2007,43,Automatica,6,db/journals/automatica/automatica43.html#BoomH07,https://doi.org/10.1016/j.automatica.2006.11.023 +Keith Dupree,Asymptotic optimal control of uncertain nonlinear Euler-Lagrange systems.,2011,47,Automatica,1,db/journals/automatica/automatica47.html#DupreePWD11,https://doi.org/10.1016/j.automatica.2010.10.007 +Davide Invernizzi,Trajectory tracking control of thrust-vectoring UAVs.,2018,95,Automatica,,db/journals/automatica/automatica95.html#InvernizziL18,https://doi.org/10.1016/j.automatica.2018.05.024 +Franco Blanchini,Simultaneous performance achievement via compensator blending.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#BlanchiniCP08,https://doi.org/10.1016/j.automatica.2007.04.010 +David Angeli,Adaptive switching supervisory control of nonlinear systems with no prior knowledge of noise bounds.,2004,40,Automatica,3,db/journals/automatica/automatica40.html#AngeliM04,https://doi.org/10.1016/j.automatica.2003.12.001 +Zhendong Sun,Controllability and reachability criteria for switched linear systems.,2002,38,Automatica,5,db/journals/automatica/automatica38.html#SunGL02,https://doi.org/10.1016/S0005-1098(01)00267-9 +J. Dwight Aplevich,Tableau methods for analysis and design of linear systems.,1979,15,Automatica,4,db/journals/automatica/automatica15.html#Aplevich79,https://doi.org/10.1016/0005-1098(79)90016-5 +M. Vidyasagar,Randomized algorithms for robust controller synthesis using statistical learning theory.,2001,37,Automatica,10,db/journals/automatica/automatica37.html#Vidyasagar01,https://doi.org/10.1016/S0005-1098(01)00122-4 +De-Jin Wang,Hinfinity design with fractional-order PDU controllers.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#WangG12,https://doi.org/10.1016/j.automatica.2012.02.012 +Engelbert Gruenbacher,Guaranteed robustness bounds for matched-disturbance nonlinear systems.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#GruenbacherCR08,https://doi.org/10.1016/j.automatica.2007.12.018 +Vladimír Strejc,Prague IFAC symposium 1967 on identification in automatic control systems.,1968,4,Automatica,4,db/journals/automatica/automatica4.html#StrejcP68,https://doi.org/10.1016/0005-1098(68)90017-4 +Eliezer Kreindler,Advanced control system design : By B. Friedland. Prentice Hall (1996). ISBN 0-13-014010-4.,1997,33,Automatica,3,db/journals/automatica/automatica33.html#Kreindler97,https://doi.org/10.1016/S0005-1098(97)84594-3 +Zhiyun Lin,Reach almost sure consensus with only group information.,2015,52,Automatica,,db/journals/automatica/automatica52.html#LinHYY15,https://doi.org/10.1016/j.automatica.2014.11.011 +Kiyoshi Nishiyama,optimality and a posteriori output estimate of the forgetting factor NLMS algorithm.,2017,75,Automatica,,db/journals/automatica/automatica75.html#Nishiyama17,https://doi.org/10.1016/j.automatica.2016.09.025 +Mayuresh V. Kothare,A unified framework for the study of anti-windup designs.,1994,30,Automatica,12,db/journals/automatica/automatica30.html#KothareCMN94,https://doi.org/10.1016/0005-1098(94)90048-5 +Gianluigi Pillonetto,Bayes and empirical Bayes semi-blind deconvolution using eigenfunctions of a prior covariance.,2007,43,Automatica,10,db/journals/automatica/automatica43.html#PillonettoB07,https://doi.org/10.1016/j.automatica.2007.02.025 +Zhihua Qu,Modularized design for cooperative control and plug-and-play operation of networked heterogeneous systems.,2014,50,Automatica,9,db/journals/automatica/automatica50.html#QuS14,https://doi.org/10.1016/j.automatica.2014.07.003 +Ha Binh Minh,A new estimation of the lower error bound in balanced truncation method.,2014,50,Automatica,8,db/journals/automatica/automatica50.html#MinhBF14,https://doi.org/10.1016/j.automatica.2014.05.020 +Hiroshi Oku,Recursive 4SID algorithms using gradient type subspace tracking.,2002,38,Automatica,6,db/journals/automatica/automatica38.html#OkuK02,https://doi.org/10.1016/S0005-1098(01)00286-2 +Shan Ma,Cascade and locally dissipative realizations of linear quantum systems for pure Gaussian state covariance assignment.,2018,90,Automatica,,db/journals/automatica/automatica90.html#MaWPY18,https://doi.org/10.1016/j.automatica.2017.12.061 +Antonio Sala 0001,Computer control under time-varying sampling period: An LMI gridding approach.,2005,41,Automatica,12,db/journals/automatica/automatica41.html#Sala05,https://doi.org/10.1016/j.automatica.2005.05.017 +Massimiliano Mattei,A constrained control strategy for the shape control in thermonuclear fusion tokamaks.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#MatteiLF13,https://doi.org/10.1016/j.automatica.2012.09.004 +Jie Zhong,Global robust stability and stabilization of Boolean network with disturbances.,2017,84,Automatica,,db/journals/automatica/automatica84.html#ZhongHLX17,https://doi.org/10.1016/j.automatica.2017.07.013 +Dragan Nesic,A non-gradient approach to global extremum seeking: An adaptation of the Shubert algorithm.,2013,49,Automatica,3,db/journals/automatica/automatica49.html#NesicNTM13,https://doi.org/10.1016/j.automatica.2012.12.004 +Eduardo Montijano,Average consensus on strongly connected weighted digraphs: A generalized error bound.,2015,58,Automatica,,db/journals/automatica/automatica58.html#MontijanoGPS15,https://doi.org/10.1016/j.automatica.2015.04.025 +Haitao Li 0001,On robust control invariance of Boolean control networks.,2016,68,Automatica,,db/journals/automatica/automatica68.html#LiXW16,https://doi.org/10.1016/j.automatica.2016.01.075 +Mohsen Khalili,Distributed adaptive fault-tolerant control of uncertain multi-agent systems.,2018,87,Automatica,,db/journals/automatica/automatica87.html#KhaliliZPPC18,https://doi.org/10.1016/j.automatica.2017.09.002 +Edoardo Mosca,A semi-infinite horizon LQ self-tuning regulator for ARMAX plants based on RLS.,1992,28,Automatica,2,db/journals/automatica/automatica28.html#MoscaL92,https://doi.org/10.1016/0005-1098(92)90126-Z +Stefano Malan,Robust Analysis and Design of Control Systems Using Interval Arithmetic.,1997,33,Automatica,7,db/journals/automatica/automatica33.html#MalanMT97,https://doi.org/10.1016/S0005-1098(97)00028-9 +Er-Wei Bai,Decoupling the linear and nonlinear parts in Hammerstein model identification.,2004,40,Automatica,4,db/journals/automatica/automatica40.html#Bai04,https://doi.org/10.1016/j.automatica.2003.11.007 +Jorge I. Poveda,Shahshahani gradient-like extremum seeking.,2015,58,Automatica,,db/journals/automatica/automatica58.html#PovedaQ15,https://doi.org/10.1016/j.automatica.2015.05.002 +Tao Zhang,Adaptive neural network control for strict-feedback nonlinear systems using backstepping design.,2000,36,Automatica,12,db/journals/automatica/automatica36.html#ZhangGH00,https://doi.org/10.1016/S0005-1098(00)00116-3 +Jin Zhou,Synchronization of coupled harmonic oscillators with local instantaneous interaction.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#ZhouZXW12,https://doi.org/10.1016/j.automatica.2012.05.022 +A. Iliadis,Mathematical modeling and equilibrium analysis of the coagulolytic system.,1979,15,Automatica,4,db/journals/automatica/automatica15.html#IliadisCDD79,https://doi.org/10.1016/0005-1098(79)90019-0 +Cheng Song,Coverage control for mobile sensor networks with limited communication ranges on a circle.,2018,92,Automatica,,db/journals/automatica/automatica92.html#SongF18,https://doi.org/10.1016/j.automatica.2018.03.014 +Wassim M. Haddad,Robust adaptive control for nonlinear uncertain systems.,2003,39,Automatica,3,db/journals/automatica/automatica39.html#HaddadHC03,https://doi.org/10.1016/S0005-1098(02)00244-3 +Hao Yang 0001,Fault recoverability and fault tolerant control for a class of interconnected nonlinear systems.,2015,54,Automatica,,db/journals/automatica/automatica54.html#YangJS015,https://doi.org/10.1016/j.automatica.2015.01.037 +Guillaume Mercère,Parameterization and identification of multivariable state-space systems: A canonical approach.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#MercereB11,https://doi.org/10.1016/j.automatica.2011.02.049 +Bahare Kiumarsi,Reinforcement Q-learning for optimal tracking control of linear discrete-time systems with unknown dynamics.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#KiumarsiLMKS14,https://doi.org/10.1016/j.automatica.2014.02.015 +Ricardo Sanz,Enhanced disturbance rejection for a predictor-based control of LTI systems with input delay.,2016,72,Automatica,,db/journals/automatica/automatica72.html#SanzGA16,https://doi.org/10.1016/j.automatica.2016.05.019 +Arunabha Bagchi,Stochastic differential systems - Analysis and filtering: V. S. Pugachev and I. N. Sinitsyn.,1989,25,Automatica,4,db/journals/automatica/automatica25.html#Bagchi89,https://doi.org/10.1016/0005-1098(89)90110-6 +Liping Yan,Optimal sequential and distributed fusion for state estimation in cross-correlated noise.,2013,49,Automatica,12,db/journals/automatica/automatica49.html#YanLXF13,https://doi.org/10.1016/j.automatica.2013.09.013 +Arturo F. Locatelli,Reliable regulation in centralized control systems.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#LocatelliS09,https://doi.org/10.1016/j.automatica.2009.07.024 +Pietro Carlo Cacciabue,A model of operator behaviour for man-machine system simulation.,1990,26,Automatica,6,db/journals/automatica/automatica26.html#CacciabueMB90,https://doi.org/10.1016/0005-1098(90)90086-W +Zhiyong Sun,"Comments on ""Distributed event-triggered control of multi-agent systems with combinational measurements"".",2018,92,Automatica,,db/journals/automatica/automatica92.html#SunHAD18,https://doi.org/10.1016/j.automatica.2018.03.026 +Pierdomenico Pepe,On global exponential stability preservation under sampling for globally Lipschitz time-delay systems.,2017,82,Automatica,,db/journals/automatica/automatica82.html#PepeF17,https://doi.org/10.1016/j.automatica.2017.04.055 +Xin Xin,Linear strong structural controllability and observability of an n-link underactuated revolute planar robot with active intermediate joint or joints.,2018,94,Automatica,,db/journals/automatica/automatica94.html#Xin18,https://doi.org/10.1016/j.automatica.2018.04.050 +Hartmut Hirsch-Kreinsen,Implementation processes of new technologies - Management objectives and interests.,1990,26,Automatica,2,db/journals/automatica/automatica26.html#Hirsch-KreinsenS90,https://doi.org/10.1016/0005-1098(90)90142-5 +Randal W. Beard,Galerkin approximations of the generalized Hamilton-Jacobi-Bellman equation.,1997,33,Automatica,12,db/journals/automatica/automatica33.html#BeardSW97,https://doi.org/10.1016/S0005-1098(97)00128-3 +Z. Li,Minimum variance prediction for linear time-varying systems.,1997,33,Automatica,4,db/journals/automatica/automatica33.html#LiEW97,https://doi.org/10.1016/S0005-1098(96)00210-5 +Prabhakar R. Pagilla,An adaptive output feedback controller for robot arms: stability and experiments.,2001,37,Automatica,7,db/journals/automatica/automatica37.html#PagillaT01,https://doi.org/10.1016/S0005-1098(01)00048-6 +S. M. Shahruz,Boundary Control of the Axially Moving Kirchhoff String.,1998,34,Automatica,10,db/journals/automatica/automatica34.html#Shahruz98,https://doi.org/10.1016/S0005-1098(98)00074-0 +Xiangpeng Li,A bounded controller for multirobot navigation while maintaining network connectivity in the presence of obstacles.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#LiS013,https://doi.org/10.1016/j.automatica.2012.10.014 +Jeong Wan Ko,Stabilization for Takagi-Sugeno fuzzy systems based on partitioning the range of fuzzy weights.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#KoLP12,https://doi.org/10.1016/j.automatica.2012.02.013 +Weili Yan,Disturbance observer-based multirate control for rejecting periodic disturbances to the Nyquist frequency and beyond.,2017,82,Automatica,,db/journals/automatica/automatica82.html#YanPD17,https://doi.org/10.1016/j.automatica.2017.04.027 +Vivek S. Borkar,Weak convergence methods and singularly perturbed stochastic control and filtering problems: Harold J. Kushner.,1992,28,Automatica,5,db/journals/automatica/automatica28.html#Borkar92,https://doi.org/10.1016/0005-1098(92)90168-F +Kuize Zhang,The problem of determining the weak (periodic) detectability of discrete event systems is PSPACE-complete.,2017,81,Automatica,,db/journals/automatica/automatica81.html#Zhang17,https://doi.org/10.1016/j.automatica.2017.03.023 +Madan G. Singh,Authors' reply.,1979,15,Automatica,1,db/journals/automatica/automatica15.html#SinghH79,https://doi.org/10.1016/0005-1098(79)90098-0 +Timm Faulwasser,On turnpike and dissipativity properties of continuous-time optimal control problems.,2017,81,Automatica,,db/journals/automatica/automatica81.html#FaulwasserKJB17,https://doi.org/10.1016/j.automatica.2017.03.012 +Wei-Jie Mao,I-stability for linear continuous-time systems with multiple time delays.,2006,42,Automatica,9,db/journals/automatica/automatica42.html#MaoC06,https://doi.org/10.1016/j.automatica.2006.03.018 +Huiping Li,Continuous-time model predictive control of under-actuated spacecraft with bounded control torques.,2017,75,Automatica,,db/journals/automatica/automatica75.html#LiYS17,https://doi.org/10.1016/j.automatica.2016.09.024 +Heping Dai,Robust combined estimation of states and parameters of bilinear systems.,1989,25,Automatica,4,db/journals/automatica/automatica25.html#DaiSP89,https://doi.org/10.1016/0005-1098(89)90105-2 +Yuri B. Shtessel,Sliding mode control of boost and buck-boost power converters using method of stable system centre.,2003,39,Automatica,6,db/journals/automatica/automatica39.html#ShtesselZS03,https://doi.org/10.1016/S0005-1098(03)00068-2 +Andrew P. Sage,System dynamics and the analysis of change: Edited by B. E. Paulré.,1983,19,Automatica,3,db/journals/automatica/automatica19.html#Sage83,https://doi.org/10.1016/0005-1098(83)90119-X +Zhan Shu,Robust stabilization of Markovian delay systems with delay-dependent exponential estimates.,2006,42,Automatica,11,db/journals/automatica/automatica42.html#ShuLX06,https://doi.org/10.1016/j.automatica.2006.06.016 +John W. Tanney,The evolution of some fluid measurement and control components.,1976,12,Automatica,4,db/journals/automatica/automatica12.html#TanneyTH76,https://doi.org/10.1016/0005-1098(76)90054-6 +Rob H. Gielen,On polytopic inclusions as a modeling framework for systems with time-varying delays.,2010,46,Automatica,3,db/journals/automatica/automatica46.html#GielenOLHWN10,https://doi.org/10.1016/j.automatica.2010.01.002 +Choon Ki Ahn,Stochastic stability analysis for 2-D Roesser systems with multiplicative noise.,2016,69,Automatica,,db/journals/automatica/automatica69.html#AhnWS16,https://doi.org/10.1016/j.automatica.2016.03.006 +N. Harris McClamroch,Space vehicle dynamics and control.,2001,37,Automatica,12,db/journals/automatica/automatica37.html#McClamroch01,https://doi.org/10.1016/S0005-1098(01)00163-7 +Shi-Chung Chang,A hierarchical decomposition for large-scale optimal control problems with parallel processing structure.,1989,25,Automatica,1,db/journals/automatica/automatica25.html#ChangCL89,https://doi.org/10.1016/0005-1098(89)90121-0 +Eun Tae Jeung,Robust controller design for uncertain systems with time delays: LMI approach.,1996,32,Automatica,8,db/journals/automatica/automatica32.html#JeungOKP96,https://doi.org/10.1016/0005-1098(96)00055-6 +Luis Orihuela,Periodicity of Kalman-based scheduled filters.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#OrihuelaBGR14,https://doi.org/10.1016/j.automatica.2014.08.034 +Ragnar Wallin,A cutting plane method for solving KYP-SDPs.,2008,44,Automatica,2,db/journals/automatica/automatica44.html#WallinKH08,https://doi.org/10.1016/j.automatica.2007.06.026 +Zhongkui Li,On H∞ and H2 performance regions of multi-agent systems.,2011,47,Automatica,4,db/journals/automatica/automatica47.html#LiDC11,https://doi.org/10.1016/j.automatica.2011.01.054 +Hamidreza Modares,Optimal tracking control of nonlinear partially-unknown constrained-input systems using integral reinforcement learning.,2014,50,Automatica,7,db/journals/automatica/automatica50.html#ModaresL14,https://doi.org/10.1016/j.automatica.2014.05.011 +A. Nazli Gündes,MIMO controller synthesis with integral-action integrity.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#GundesM08,https://doi.org/10.1016/j.automatica.2007.04.012 +Zhiyong Chen 0001,A remark on collective circular motion of heterogeneous multi-agents.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#ChenZ13,https://doi.org/10.1016/j.automatica.2013.01.017 +Adam Janiak,Time-optimal control in a single machine problem with resource constraints.,1986,22,Automatica,6,db/journals/automatica/automatica22.html#Janiak86,https://doi.org/10.1016/0005-1098(86)90014-2 +Alberto Tesi,Harmonic balance analysis of period-doubling bifurcations with implications for control of nonlinear dynamics.,1996,32,Automatica,9,db/journals/automatica/automatica32.html#TesiAGW96,https://doi.org/10.1016/0005-1098(96)00065-9 +Jun Yang 0011,Periodic event-triggered robust output feedback control for nonlinear uncertain systems with time-varying disturbance.,2018,94,Automatica,,db/journals/automatica/automatica94.html#YangSZL18,https://doi.org/10.1016/j.automatica.2018.04.042 +Shu-Jun Liu,Decentralized adaptive output-feedback stabilization for large-scale stochastic nonlinear systems.,2007,43,Automatica,2,db/journals/automatica/automatica43.html#LiuZJ07,https://doi.org/10.1016/j.automatica.2006.08.028 +Andrzej P. Wierzbicki,Reduced gradient decomposition in multistage linear programming.,1977,13,Automatica,4,db/journals/automatica/automatica13.html#Wierzbicki77,https://doi.org/10.1016/0005-1098(77)90030-9 +Amir G. Aghdam,Pseudo-decentralized switching control.,2003,39,Automatica,2,db/journals/automatica/automatica39.html#AghdamD03,https://doi.org/10.1016/S0005-1098(02)00208-X +L. E. Jones III,On the selection of a subgoal and the use of a priori information in learning control systems.,1969,5,Automatica,6,db/journals/automatica/automatica5.html#JonesF69,https://doi.org/10.1016/0005-1098(69)90084-3 +Chong-Xiao Shi,Augmented Lagrange algorithms for distributed optimization over multi-agent networks via edge-based method.,2018,94,Automatica,,db/journals/automatica/automatica94.html#ShiY18,https://doi.org/10.1016/j.automatica.2018.04.010 +Torbjörn Wigren,Recursive prediction error identification and scaling of non-linear state space models using a restricted black box parameterization.,2006,42,Automatica,1,db/journals/automatica/automatica42.html#Wigren06,https://doi.org/10.1016/j.automatica.2005.08.017 +Anton S. Shiriaev,Swinging up the spherical pendulum via stabilization of its first integrals.,2004,40,Automatica,1,db/journals/automatica/automatica40.html#ShiriaevLE04,https://doi.org/10.1016/j.automatica.2003.07.009 +Yueyang Li,"Comments on ""H INFINITY filtering for discrete-time systems with randomly varying sensor delays"".",2009,45,Automatica,7,db/journals/automatica/automatica45.html#LiDZ09,https://doi.org/10.1016/j.automatica.2009.01.022 +Jacob Roll,Identification of piecewise affine systems via mixed-integer programming.,2004,40,Automatica,1,db/journals/automatica/automatica40.html#RollBL04,https://doi.org/10.1016/j.automatica.2003.08.006 +Peter Hippe,Systematic closed-loop design in the presence of input saturations.,1999,35,Automatica,4,db/journals/automatica/automatica35.html#HippeW99,https://doi.org/10.1016/S0005-1098(98)00199-X +Srdjan S. Stankovic,Decentralized dynamic output feedback for robust stabilization of a class of nonlinear interconnected systems.,2007,43,Automatica,5,db/journals/automatica/automatica43.html#StankovicSS07,https://doi.org/10.1016/j.automatica.2006.11.010 +Claudia Califano,Canonical observer forms for multi-output systems up to coordinate and output transformations in discrete time.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#CalifanoMN09,https://doi.org/10.1016/j.automatica.2009.07.003 +Ankush Chakrabarty,State and unknown input observers for nonlinear systems with delayed measurements.,2018,95,Automatica,,db/journals/automatica/automatica95.html#ChakrabartyFZB18,https://doi.org/10.1016/j.automatica.2018.05.036 +Miroslav Krstic,Passivity and parametric robustness of a new class of adaptive systems.,1994,30,Automatica,11,db/journals/automatica/automatica30.html#KrsticKK94,https://doi.org/10.1016/0005-1098(94)90073-6 +Yongqiang Wang,The influence of global cues and local coupling on the rate of synchronization in the presence of time delays.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#WangD13,https://doi.org/10.1016/j.automatica.2013.02.051 +Johannes Schiffer,A survey on modeling of microgrids - From fundamental physics to phasors and voltage sources.,2016,74,Automatica,,db/journals/automatica/automatica74.html#SchifferZOSSR16,https://doi.org/10.1016/j.automatica.2016.07.036 +Wei Zhu,Leader-following consensus of second-order agents with multiple time-varying delays.,2010,46,Automatica,12,db/journals/automatica/automatica46.html#ZhuC10,https://doi.org/10.1016/j.automatica.2010.08.003 +Michael Herty,Feedback boundary control of linear hyperbolic systems with relaxation.,2016,69,Automatica,,db/journals/automatica/automatica69.html#HertyY16,https://doi.org/10.1016/j.automatica.2016.02.016 +Changyun Wen,Decentralized adaptive control using integrator backstepping.,1997,33,Automatica,9,db/journals/automatica/automatica33.html#WenS97,https://doi.org/10.1016/S0005-1098(97)00076-9 +Daniel Axehill,A parametric branch and bound approach to suboptimal explicit hybrid MPC.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#AxehillBRM14,https://doi.org/10.1016/j.automatica.2013.10.004 +Rudolf Kulhavý,Recursive nonlinear estimation: Geometry of a space of posterior densities.,1992,28,Automatica,2,db/journals/automatica/automatica28.html#Kulhavy92,https://doi.org/10.1016/0005-1098(92)90118-Y +Xiaochen Xie,Guaranteed cost control of periodic piecewise linear time-delay systems.,2018,94,Automatica,,db/journals/automatica/automatica94.html#XieL18,https://doi.org/10.1016/j.automatica.2018.04.047 +Ping Gong,Adaptive robust tracking control for uncertain nonlinear fractional-order multi-agent systems with directed topologies.,2018,92,Automatica,,db/journals/automatica/automatica92.html#GongL18,https://doi.org/10.1016/j.automatica.2018.02.010 +Feng Ding 0001,Combined parameter and output estimation of dual-rate systems using an auxiliary model.,2004,40,Automatica,10,db/journals/automatica/automatica40.html#DingC04,https://doi.org/10.1016/j.automatica.2004.05.001 +Soulaimane Berkane,Hybrid global exponential stabilization on SO(3).,2017,81,Automatica,,db/journals/automatica/automatica81.html#BerkaneAT17,https://doi.org/10.1016/j.automatica.2017.04.001 +Peter Hippe,Strictly doubly coprime factorizations and all stabilizing compensators related to reduced-order observers.,1994,30,Automatica,12,db/journals/automatica/automatica30.html#Hippe94,https://doi.org/10.1016/0005-1098(94)90056-6 +Martin J. Corless,A result on second order nonlinear operators arising in high-speed networking applications.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#CorlessKS09,https://doi.org/10.1016/j.automatica.2008.12.017 +Erik Weyer,On the Relationship Between Behavioural and Standard Methods for System Identification.,1998,34,Automatica,6,db/journals/automatica/automatica34.html#WeyerWM98,https://doi.org/10.1016/S0005-1098(98)00010-7 +Gary G. Leininger,Diagonal dominance for multivariable nyquist array methods using function minimization.,1979,15,Automatica,3,db/journals/automatica/automatica15.html#Leininger79,https://doi.org/10.1016/0005-1098(79)90050-5 +Zongli Lin,Further results on almost disturbance decoupling with global asymptotic stability for nonlinear systems.,1999,35,Automatica,4,db/journals/automatica/automatica35.html#LinBC99,https://doi.org/10.1016/S0005-1098(98)00203-9 +Huiping Li,Distributed receding horizon control of constrained nonlinear vehicle formations with guaranteed *-gain stability.,2016,68,Automatica,,db/journals/automatica/automatica68.html#LiSY16,https://doi.org/10.1016/j.automatica.2016.01.057 +Abdelkader Abdessameud,Image-based tracking control of VTOL unmanned aerial vehicles.,2015,53,Automatica,,db/journals/automatica/automatica53.html#AbdessameudJ15,https://doi.org/10.1016/j.automatica.2014.12.032 +Zi-Li Deng,New approach to information fusion steady-state Kalman filtering.,2005,41,Automatica,10,db/journals/automatica/automatica41.html#DengGMLH05,https://doi.org/10.1016/j.automatica.2005.04.020 +Jun'ichi Toyoda,An adaptive predictor of river flow for on line control of water resource systems.,1969,5,Automatica,2,db/journals/automatica/automatica5.html#ToyodaTI69,https://doi.org/10.1016/0005-1098(69)90011-9 +David J. N. Limebeer,Control systems software reviews.,1994,30,Automatica,4,db/journals/automatica/automatica30.html#Limebeer94,https://doi.org/10.1016/0005-1098(94)90140-6 +Abhinav Kumar Singh,An extended linear quadratic regulator for LTI systems with exogenous inputs.,2017,76,Automatica,,db/journals/automatica/automatica76.html#SinghP17,https://doi.org/10.1016/j.automatica.2016.10.014 +Feng Zheng,Robust control of uncertain distributed delay systems with application to the stabilization of combustion in rocket motor chambers.,2002,38,Automatica,3,db/journals/automatica/automatica38.html#ZhengF02,https://doi.org/10.1016/S0005-1098(01)00232-1 +Sasa V. Rakovic,Optimized robust control invariance for linear discrete-time systems: Theoretical foundations.,2007,43,Automatica,5,db/journals/automatica/automatica43.html#RakovicKMK07,https://doi.org/10.1016/j.automatica.2006.11.006 +S. Peeta,Stability issues for dynamic traffic assignment.,2003,39,Automatica,1,db/journals/automatica/automatica39.html#PeetaY03,https://doi.org/10.1016/S0005-1098(02)00179-6 +Mamdouh M. El-Kady,Numerical treatment of multiobjective optimal control problems.,2003,39,Automatica,1,db/journals/automatica/automatica39.html#El-KadySE03,https://doi.org/10.1016/S0005-1098(02)00109-7 +Michael Malisoff,Adaptive planar curve tracking control and robustness analysis under state constraints and unknown curvature.,2017,75,Automatica,,db/journals/automatica/automatica75.html#MalisoffSZ17,https://doi.org/10.1016/j.automatica.2016.09.017 +Houria Kheloufi,On LMI conditions to design observer-based controllers for linear systems with parameter uncertainties.,2013,49,Automatica,12,db/journals/automatica/automatica49.html#KheloufiZBB13,https://doi.org/10.1016/j.automatica.2013.09.046 +Jacques L. Willems,State variable methods in automatic control : K. Furuta and A. Sano.,1991,27,Automatica,1,db/journals/automatica/automatica27.html#Willems91,https://doi.org/10.1016/0005-1098(91)90025-W +Stephen Alexander Chee,Discrete-time minmax filtering subject to a norm-constrained state estimate.,2017,85,Automatica,,db/journals/automatica/automatica85.html#CheeF17,https://doi.org/10.1016/j.automatica.2017.07.024 +Pierre-Alexandre Bliman,Absolute stability criteria with prescribed decay rate for finite-dimensional and delay systems.,2002,38,Automatica,11,db/journals/automatica/automatica38.html#Bliman02,https://doi.org/10.1016/S0005-1098(02)00092-4 +Su Liu,Economic model predictive control with extended horizon.,2016,73,Automatica,,db/journals/automatica/automatica73.html#LiuL16,https://doi.org/10.1016/j.automatica.2016.06.027 +Jiandong Wang,Identification of linear dynamic systems operating in a networked environment.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#WangZC09,https://doi.org/10.1016/j.automatica.2009.09.021 +Zhenhua Wang 0004,H- / H∞ fault detection observer in finite frequency domain for linear parameter-varying descriptor systems.,2017,86,Automatica,,db/journals/automatica/automatica86.html#WangSL17,https://doi.org/10.1016/j.automatica.2017.08.021 +Danwei Wang,A simple iterative learning controller for manipulators with flexible joints.,1995,31,Automatica,9,db/journals/automatica/automatica31.html#Wang95,https://doi.org/10.1016/0005-1098(95)00039-Y +Franky De Bruyne,Gradient expressions for a closed-loop identification scheme with a tailor-made parametrization.,1999,35,Automatica,11,db/journals/automatica/automatica35.html#BruyneAGL99,https://doi.org/10.1016/S0005-1098(99)00108-9 +Eveline Gottzein,Large space structures: Dynamics and control: S. N. Atluri and A. K. Amos.,1991,27,Automatica,3,db/journals/automatica/automatica27.html#Gottzein91,https://doi.org/10.1016/0005-1098(91)90122-I +Vladimír Kucera,A necessary and sufficient condition for output feedback stabilizability.,1995,31,Automatica,9,db/journals/automatica/automatica31.html#KuceraS95,https://doi.org/10.1016/0005-1098(95)00048-2 +O. Hecker,Robust adaptive control of a time varying process using parallel recursive estimators.,1994,30,Automatica,4,db/journals/automatica/automatica30.html#HeckerKI94,https://doi.org/10.1016/0005-1098(94)90147-3 +Mihály Petreczky,Solutions of differential-algebraic equations as outputs of LTI systems: Application to LQ control problems.,2017,84,Automatica,,db/journals/automatica/automatica84.html#PetreczkyZ17,https://doi.org/10.1016/j.automatica.2017.07.007 +S. Joe Qin,A novel subspace identification approach with enforced causal models.,2005,41,Automatica,12,db/journals/automatica/automatica41.html#QinLL05,https://doi.org/10.1016/j.automatica.2005.06.010 +Osvaldo Maria Grasselli,Output regulation of a class of bilinear systems under constant disturbances.,1979,15,Automatica,2,db/journals/automatica/automatica15.html#GrasselliIN79,https://doi.org/10.1016/0005-1098(79)90069-4 +Marcus Reble,Unconstrained model predictive control and suboptimality estimates for nonlinear continuous-time systems.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#RebleA12,https://doi.org/10.1016/j.automatica.2012.05.067 +Hynek Procházka,Pole placement with sensitivity function shaping using 2nd order digital notch filters.,2003,39,Automatica,6,db/journals/automatica/automatica39.html#ProchazkaL03,https://doi.org/10.1016/S0005-1098(03)00067-0 +Yongcan Cao,Distributed containment control with multiple stationary or dynamic leaders in fixed and switching directed networks.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#CaoRE12,https://doi.org/10.1016/j.automatica.2012.05.071 +Ionut Munteanu,Boundary stabilization of the stochastic heat equation by proportional feedbacks.,2018,87,Automatica,,db/journals/automatica/automatica87.html#Munteanu18,https://doi.org/10.1016/j.automatica.2017.10.003 +Hyungbo Shim,Asymptotic controllability and observability imply semiglobal practical asymptotic stabilizability by sampled-data output feedback.,2003,39,Automatica,3,db/journals/automatica/automatica39.html#ShimT03,https://doi.org/10.1016/S0005-1098(02)00278-9 +Shengyuan Xu,Robust admissibility of time-varying singular systems with commensurate time delays.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#XuLZL09,https://doi.org/10.1016/j.automatica.2009.07.014 +Jin Wang,Closed-loop subspace identification using the parity space.,2006,42,Automatica,2,db/journals/automatica/automatica42.html#WangQ06,https://doi.org/10.1016/j.automatica.2005.09.012 +Takayuki Ishizaki,Retrofit control: Localization of controller design and implementation.,2018,95,Automatica,,db/journals/automatica/automatica95.html#IshizakiSISJ18,https://doi.org/10.1016/j.automatica.2018.05.033 +Alex Coutlis,Chebycheff approximation in system identification and model reduction.,1997,33,Automatica,9,db/journals/automatica/automatica33.html#CoutlisL97,https://doi.org/10.1016/S0005-1098(97)82234-0 +Richard J. La,Stability of a rate control system with averaged feedback and network delay.,2006,42,Automatica,10,db/journals/automatica/automatica42.html#LaR06,https://doi.org/10.1016/j.automatica.2006.05.018 +Vakhtang Lomadze,Duality in the behavioral systems theory.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#Lomadze13,https://doi.org/10.1016/j.automatica.2013.02.007 +Rachid Malti,Analytical computation of the H2-norm of fractional commensurate transfer functions.,2011,47,Automatica,11,db/journals/automatica/automatica47.html#MaltiALO11,https://doi.org/10.1016/j.automatica.2011.08.021 +Lin Yan,A variable structure MRAC with expected transient and steady-state performance.,2006,42,Automatica,5,db/journals/automatica/automatica42.html#YanHX06,https://doi.org/10.1016/j.automatica.2006.01.007 +Vilma A. Oliveira,Synthesis of PID controllers for a class of time delay systems.,2009,45,Automatica,7,db/journals/automatica/automatica45.html#OliveiraCTS09,https://doi.org/10.1016/j.automatica.2009.03.018 +Rolf Johansson,Model reference adaptive control: From theory to practice: Hans Butler.,1994,30,Automatica,6,db/journals/automatica/automatica30.html#Johansson94,https://doi.org/10.1016/0005-1098(94)90206-2 +Philippe Crama,Hammerstein-Wiener system estimator initialization.,2004,40,Automatica,9,db/journals/automatica/automatica40.html#CramaS04,https://doi.org/10.1016/j.automatica.2004.03.018 +Jean-Yves Keller,Two-stage Kalman estimator with unknown exogenous inputs.,1999,35,Automatica,2,db/journals/automatica/automatica35.html#KellerD99,https://doi.org/10.1016/S0005-1098(98)00194-0 +Jitendra K. Tugnait,Consistent order selection for noncausal autoregressive models via higher-order statistics.,1990,26,Automatica,2,db/journals/automatica/automatica26.html#Tugnait90a,https://doi.org/10.1016/0005-1098(90)90125-2 +Georg Schildbach,The scenario approach for Stochastic Model Predictive Control with bounds on closed-loop constraint violations.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#SchildbachFFM14,https://doi.org/10.1016/j.automatica.2014.10.035 +Huawen Ye,Decentralized stabilization of large-scale feedforward systems using saturated delayed controls.,2012,48,Automatica,1,db/journals/automatica/automatica48.html#YeJGY12,https://doi.org/10.1016/j.automatica.2011.09.017 +Giancarlo Ferrari-Trecate,Analysis of discrete-time piecewise affine and hybrid systems.,2002,38,Automatica,12,db/journals/automatica/automatica38.html#Ferrari-TrecateCMM02,https://doi.org/10.1016/S0005-1098(02)00142-5 +Anton V. Proskurnikov,Average consensus in networks with nonlinearly delayed couplings and switching topology.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#Proskurnikov13a,https://doi.org/10.1016/j.automatica.2013.06.007 +Muhammad Imran 0003,A frequency weighted model order reduction technique and error bounds.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#ImranGS14,https://doi.org/10.1016/j.automatica.2014.10.062 +Leonid Naimark,All constant gain stabilizing controllers for an interval delay system with uncertain parameters.,1997,33,Automatica,9,db/journals/automatica/automatica33.html#NaimarkZ97,https://doi.org/10.1016/S0005-1098(97)00080-0 +Luc Pronzato,Experiment design in a bounded-error context: Comparison with D-optimality.,1989,25,Automatica,3,db/journals/automatica/automatica25.html#PronzatoW89,https://doi.org/10.1016/0005-1098(89)90006-X +Rolf Isermann,Preface.,1980,16,Automatica,5,db/journals/automatica/automatica16.html#Isermann80,https://doi.org/10.1016/0005-1098(80)90073-4 +G. Schulz,Active multivariable vibration isolation for a helicopter.,1979,15,Automatica,4,db/journals/automatica/automatica15.html#Schulz79,https://doi.org/10.1016/0005-1098(79)90020-7 +W. K. Roots,A survey of temperature control in electrically-heated homes.,1969,5,Automatica,2,db/journals/automatica/automatica5.html#RootsW69,https://doi.org/10.1016/0005-1098(69)90015-6 +Yu-Ping Tian,Robust learning control for a class of nonlinear systems with periodic and aperiodic uncertainties.,2003,39,Automatica,11,db/journals/automatica/automatica39.html#TianY03,https://doi.org/10.1016/S0005-1098(03)00205-X +Ferenc Schipp,L∞ system approximation algorithms generated by and#977* summations.,1997,33,Automatica,11,db/journals/automatica/automatica33.html#SchippB97,https://doi.org/10.1016/S0005-1098(97)00116-7 +Netzer Bar Am,Network-based H∞ filtering of parabolic systems.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#AmF14,https://doi.org/10.1016/j.automatica.2014.10.009 +Yaohui Lu,Quasi-Min-Max MPC algorithms for LPV systems.,2000,36,Automatica,4,db/journals/automatica/automatica36.html#LuA00,https://doi.org/10.1016/S0005-1098(99)00176-4 +Siamak Mehrkanoon,LS-SVM approximate solution to linear time varying descriptor systems.,2012,48,Automatica,10,db/journals/automatica/automatica48.html#MehrkanoonS12,https://doi.org/10.1016/j.automatica.2012.06.095 +Young Il Lee,Robust receding horizon predictive control for systems with uncertain dynamics and input saturation.,2000,36,Automatica,10,db/journals/automatica/automatica36.html#LeeK00,https://doi.org/10.1016/S0005-1098(00)00064-9 +Ian R. Petersen,A Kalman decomposition for possibly controllable uncertain linear systems.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#Petersen13,https://doi.org/10.1016/j.automatica.2013.04.027 +D. M. Berkovich,Professor A. B. Cheliustkin (1913-1976).,1976,12,Automatica,6,db/journals/automatica/automatica12.html#Berkovich76,https://doi.org/10.1016/0005-1098(76)90036-4 +Rafael M. Canetti,Convergence analysis of the least-squares identification algorithm with a variable forgetting factor for time-varying linear systems.,1989,25,Automatica,4,db/journals/automatica/automatica25.html#CanettiE89,https://doi.org/10.1016/0005-1098(89)90104-0 +Ying Zhang,Robust information filter for decentralized estimation.,2005,41,Automatica,12,db/journals/automatica/automatica41.html#ZhangSC05,https://doi.org/10.1016/j.automatica.2005.07.010 +Daizhan Cheng,Controllability and observability of Boolean control networks.,2009,45,Automatica,7,db/journals/automatica/automatica45.html#ChengQ09,https://doi.org/10.1016/j.automatica.2009.03.006 +Chang-Hee Won,Statistical control of control-affine nonlinear systems with nonquadratic cost functions: HJB and verification theorems.,2010,46,Automatica,10,db/journals/automatica/automatica46.html#WonDK10,https://doi.org/10.1016/j.automatica.2010.06.027 +Pierre O. M. Scokaert,Discrete-time stability with perturbations: application to model predictive control.,1997,33,Automatica,3,db/journals/automatica/automatica33.html#ScokaertRM97,https://doi.org/10.1016/S0005-1098(96)00213-0 +J. Frederico Carvalho,Composability and controllability of structural linear time-invariant systems: Distributed verification.,2017,78,Automatica,,db/journals/automatica/automatica78.html#CarvalhoPAKJ17,https://doi.org/10.1016/j.automatica.2016.12.016 +Yu Ren,Constraint admissible state sets for switched systems with average dwell time.,2017,82,Automatica,,db/journals/automatica/automatica82.html#RenES17,https://doi.org/10.1016/j.automatica.2017.04.059 +Berit Floor Lund,Parameter ranking by orthogonalization - Applied to nonlinear mechanistic models.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#LundF08,https://doi.org/10.1016/j.automatica.2007.04.006 +Vladimír Kucera,Polynomials and linear control systems: S. Barnett.,1985,21,Automatica,1,db/journals/automatica/automatica21.html#Kucera85,https://doi.org/10.1016/0005-1098(85)90105-0 +Yusheng Wei,Maximum delay bounds of linear systems under delay independent truncated predictor feedback.,2017,83,Automatica,,db/journals/automatica/automatica83.html#WeiL17,https://doi.org/10.1016/j.automatica.2017.05.003 +David Angeli,Input-to-state stability of PD-controlled robotic systems.,1999,35,Automatica,7,db/journals/automatica/automatica35.html#Angeli99,https://doi.org/10.1016/S0005-1098(99)00037-0 +Hussein Obeid,Barrier function-based adaptive sliding mode control.,2018,93,Automatica,,db/journals/automatica/automatica93.html#ObeidFLH18,https://doi.org/10.1016/j.automatica.2018.03.078 +Francesco Amato,On the region of attraction of nonlinear quadratic systems.,2007,43,Automatica,12,db/journals/automatica/automatica43.html#AmatoCM07,https://doi.org/10.1016/j.automatica.2007.03.022 +Yongxin Wu,Reduced order LQG control design for port Hamiltonian systems.,2018,95,Automatica,,db/journals/automatica/automatica95.html#WuHGM18,https://doi.org/10.1016/j.automatica.2018.05.003 +Yumiharu Nakano,On quadratic approximations for Hamilton-Jacobi-Bellman equations.,2016,66,Automatica,,db/journals/automatica/automatica66.html#Nakano16,https://doi.org/10.1016/j.automatica.2016.01.001 +Arash Kh. Sichani,Quantum linear coherent controller synthesis: A linear fractional representation approach.,2017,85,Automatica,,db/journals/automatica/automatica85.html#SichaniP17,https://doi.org/10.1016/j.automatica.2017.07.042 +Anuradha M. Annaswamy,Discrete-time adaptive control in the presence of input constraints.,1995,31,Automatica,10,db/journals/automatica/automatica31.html#AnnaswamyK95,https://doi.org/10.1016/0005-1098(95)00059-6 +John Zaborszky,Control of reactive power and voltage in emergencies.,1985,21,Automatica,3,db/journals/automatica/automatica21.html#ZaborszkyHL85,https://doi.org/10.1016/0005-1098(85)90057-3 +Rong Su,On the complexity of synthesizing a minimum-weighted supervisor under partial observation.,2014,50,Automatica,6,db/journals/automatica/automatica50.html#Su14,https://doi.org/10.1016/j.automatica.2014.04.009 +Marco Dalai,Parameter identification for nonlinear systems: Guaranteed confidence regions through LSCR.,2007,43,Automatica,8,db/journals/automatica/automatica43.html#DalaiWC07,https://doi.org/10.1016/j.automatica.2007.01.016 +Graziano Chesi,Robust stability and performance analysis of 2D mixed continuous-discrete-time systems with uncertainty.,2016,67,Automatica,,db/journals/automatica/automatica67.html#ChesiM16,https://doi.org/10.1016/j.automatica.2016.01.042 +Tiago Roux Oliveira,Output-feedback global tracking for unknown control direction plants with application to extremum-seeking control.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#OliveiraHP11,https://doi.org/10.1016/j.automatica.2011.05.021 +Altug Iftar,A linear programming based decentralized routing controller for congested highways.,1999,35,Automatica,2,db/journals/automatica/automatica35.html#Iftar99,https://doi.org/10.1016/S0005-1098(98)00146-0 +B. De Jong,Parametric random vibration: R. A. Ibrahim.,1986,22,Automatica,5,db/journals/automatica/automatica22.html#Jong86,https://doi.org/10.1016/0005-1098(86)90072-5 +Aldo Balestrino,Dynamic controllers in linear multivariable systems.,1981,17,Automatica,4,db/journals/automatica/automatica17.html#BalestrinoC81,https://doi.org/10.1016/0005-1098(81)90035-2 +Torkel Glad,Nonlinear system theory: John L. Casti.,1987,23,Automatica,4,db/journals/automatica/automatica23.html#Glad87a,https://doi.org/10.1016/0005-1098(87)90085-9 +Guofeng Zhang 0003,Analysis of quantum linear systems' response to multi-photon states.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#Zhang14,https://doi.org/10.1016/j.automatica.2013.12.004 +Francesco Bullo,Series expansions for analytic systems linear in control.,2002,38,Automatica,8,db/journals/automatica/automatica38.html#Bullo02,https://doi.org/10.1016/S0005-1098(02)00042-0 +Young Soo Suh,Diagonal balanced truncation of discrete delay systems.,1999,35,Automatica,11,db/journals/automatica/automatica35.html#Suh99,https://doi.org/10.1016/S0005-1098(99)00094-1 +J. Selkäinaho,Tuning a dynamic positioning system.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#Selkainaho93,https://doi.org/10.1016/0005-1098(93)90092-8 +Yong Feng,On nonsingular terminal sliding-mode control of nonlinear systems.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#FengYH13,https://doi.org/10.1016/j.automatica.2013.01.051 +L. F. Pau,A controlled linearized kalman filter for economic forecasting and adaptive modelling.,1978,14,Automatica,2,db/journals/automatica/automatica14.html#Pau78,https://doi.org/10.1016/0005-1098(78)90016-X +Sheldon S. L. Chang,Optimal control in bounded phase space.,1963,1,Automatica,1,db/journals/automatica/automatica1.html#Chang63,https://doi.org/10.1016/0005-1098(63)90006-2 +Lidija Trailovic,Variance estimation and ranking of target tracking position errors modeled using Gaussian mixture distributions.,2005,41,Automatica,8,db/journals/automatica/automatica41.html#TrailovicP05,https://doi.org/10.1016/j.automatica.2005.03.007 +N. S. Rajbman,The application of identification methods in the U.S.S.R. - A survey.,1976,12,Automatica,1,db/journals/automatica/automatica12.html#Rajbman76,https://doi.org/10.1016/0005-1098(76)90070-4 +Giovanna Fanizza,Spectral estimation by least-squares optimization based on rational covariance extension.,2007,43,Automatica,2,db/journals/automatica/automatica43.html#FanizzaN07,https://doi.org/10.1016/j.automatica.2006.09.003 +Fei Chen 0008,Reaching a consensus via pinning control.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#ChenCXLY09,https://doi.org/10.1016/j.automatica.2008.12.027 +Dan Sui,Decomposition principle in model predictive control for linear systems with bounded disturbances.,2009,45,Automatica,8,db/journals/automatica/automatica45.html#SuiFHO09,https://doi.org/10.1016/j.automatica.2009.04.012 +Shuzhi Sam Ge,A direct adaptive controller for dynamic systems with a class of nonlinear parameterizations.,1999,35,Automatica,4,db/journals/automatica/automatica35.html#GeHZ99,https://doi.org/10.1016/S0005-1098(98)00215-5 +Haibin Dou,A boundary control for motion synchronization of a two-manipulator system with a flexible beam.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#DouW14,https://doi.org/10.1016/j.automatica.2014.10.057 +Rohan C. Shekhar,Discrete-time extremum-seeking for Wiener-Hammerstein plants.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#ShekharMM14,https://doi.org/10.1016/j.automatica.2014.10.030 +Agus Hasan,Boundary observer design for hyperbolic PDE-ODE cascade systems.,2016,68,Automatica,,db/journals/automatica/automatica68.html#HasanAK16,https://doi.org/10.1016/j.automatica.2016.01.058 +Amadou Gning,Constraints propagation techniques on intervals for a guaranteed localization using redundant data.,2006,42,Automatica,7,db/journals/automatica/automatica42.html#GningB06,https://doi.org/10.1016/j.automatica.2006.02.024 +Jacob Kogan,Frequency domain criterion for robust stability of interval time-delay systems.,1995,31,Automatica,3,db/journals/automatica/automatica31.html#KoganL95,https://doi.org/10.1016/0005-1098(94)00079-X +Andres Cortés,A hierarchical algorithm for optimal plug-in electric vehicle charging with usage constraints.,2016,68,Automatica,,db/journals/automatica/automatica68.html#CortesM16,https://doi.org/10.1016/j.automatica.2016.01.060 +Claus Müller,Generation of amplitude constrained signals with a prescribed spectrum.,2012,48,Automatica,1,db/journals/automatica/automatica48.html#MullerRG12,https://doi.org/10.1016/j.automatica.2011.09.038 +Soumya Ranjan Sahoo,Rendezvous in space with minimal sensing and coarse actuation.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#SahooBS13,https://doi.org/10.1016/j.automatica.2012.11.024 +Ji-Hong Li,Point-to-point navigation of underactuated ships.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#LiLJL08,https://doi.org/10.1016/j.automatica.2008.08.003 +Vijay V. Patel,A counter example for the conjecture in 'an algorithm for interpolation with units in H∞'.,1995,31,Automatica,1,db/journals/automatica/automatica31.html#PatelD95,https://doi.org/10.1016/0005-1098(94)00134-5 +Sonia Martínez,Practical multiagent rendezvous through modified circumcenter algorithms.,2009,45,Automatica,9,db/journals/automatica/automatica45.html#Martinez09,https://doi.org/10.1016/j.automatica.2009.05.013 +Do Chang Oh,Controller order reduction using singular perturbation approximation.,1997,33,Automatica,6,db/journals/automatica/automatica33.html#OhBP97,https://doi.org/10.1016/S0005-1098(97)00041-1 +Radim Jirousek,Expert systems - Principles and programming: Joseph C. Giarratano and Gary Riley.,1991,27,Automatica,3,db/journals/automatica/automatica27.html#Jirousek91,https://doi.org/10.1016/0005-1098(91)90121-H +Ramine Nikoukhah,Observer Design for General Linear Time-invariant Systems.,1998,34,Automatica,5,db/journals/automatica/automatica34.html#NikoukhahCD98,https://doi.org/10.1016/S0005-1098(98)00003-X +S. Ahmed-Zaid,Higher order dynamic equivalents for power systems.,1986,22,Automatica,4,db/journals/automatica/automatica22.html#Ahmed-ZaidSW86,https://doi.org/10.1016/0005-1098(86)90054-3 +Ricardo G. Sanfelice,Dynamical properties of hybrid systems simulators.,2010,46,Automatica,2,db/journals/automatica/automatica46.html#SanfeliceT10,https://doi.org/10.1016/j.automatica.2009.09.026 +Amit Ailon,Controller-observers for set-point tracking of flexible-joint robots including Coriolis and centripetal effects in motor dynamics.,1996,32,Automatica,9,db/journals/automatica/automatica32.html#AilonL96,https://doi.org/10.1016/0005-1098(96)00075-1 +Jong-Koo Park,Dynamic anti-windup based control method for state constrained systems.,2003,39,Automatica,11,db/journals/automatica/automatica39.html#ParkY03,https://doi.org/10.1016/S0005-1098(03)00217-6 +Sasa V. Rakovic,The Minkowski-Lyapunov equation.,2017,75,Automatica,,db/journals/automatica/automatica75.html#Rakovic17,https://doi.org/10.1016/j.automatica.2016.08.012 +Frédéric Mazenc,Generating positive and stable solutions through delayed state feedback.,2011,47,Automatica,3,db/journals/automatica/automatica47.html#MazencN11,https://doi.org/10.1016/j.automatica.2011.01.029 +Dimitri Peaucelle,Quadratic separation for feedback connection of an uncertain matrix and an implicit linear transformation.,2007,43,Automatica,5,db/journals/automatica/automatica43.html#PeaucelleAHG07,https://doi.org/10.1016/j.automatica.2006.11.005 +Luca Consolini,Control of a bicycle using virtual holonomic constraints.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#ConsoliniM13,https://doi.org/10.1016/j.automatica.2013.05.021 +A. Nazli Gündes,Reliable decentralized PID controller synthesis for two-channel MIMO processes.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#GundesMP09,https://doi.org/10.1016/j.automatica.2008.08.014 +Marwan A. Simaan,Game theory applied to dynamic duopoly problems with production constraints.,1978,14,Automatica,2,db/journals/automatica/automatica14.html#SimaanT78,https://doi.org/10.1016/0005-1098(78)90022-5 +Giulio Bottegal,A two-experiment approach to Wiener system identification.,2018,93,Automatica,,db/journals/automatica/automatica93.html#BottegalCS18,https://doi.org/10.1016/j.automatica.2018.03.069 +Pradip K. Sinha,Real-time microcomputer control of industrial processes: Spyros G. Tzafestas and J. K. Pal.,1992,28,Automatica,5,db/journals/automatica/automatica28.html#Sinha92,https://doi.org/10.1016/0005-1098(92)90165-C +Alf J. Isaksson,Analytical PID parameter expressions for higher order systems.,1999,35,Automatica,6,db/journals/automatica/automatica35.html#IsakssonG99,https://doi.org/10.1016/S0005-1098(99)00009-6 +Rik Pintelon,Nonparametric time-variant frequency response function estimates using arbitrary excitations.,2015,51,Automatica,,db/journals/automatica/automatica51.html#PintelonLL15,https://doi.org/10.1016/j.automatica.2014.10.088 +Ben M. Chen,On blocking zeros and strong stabilizability of linear multivariable systems.,1992,28,Automatica,5,db/journals/automatica/automatica28.html#ChenSS92a,https://doi.org/10.1016/0005-1098(92)90162-9 +Xavier Bombois,Least costly identification experiment for control.,2006,42,Automatica,10,db/journals/automatica/automatica42.html#BomboisSGHH06,https://doi.org/10.1016/j.automatica.2006.05.016 +Miloje S. Radenkovic,Distributed adaptive consensus and synchronization in complex networks of dynamical systems.,2018,91,Automatica,,db/journals/automatica/automatica91.html#RadenkovicK18,https://doi.org/10.1016/j.automatica.2018.01.039 +Wolfgang J. Runggaldier,A generalized certainty-equivalence result in stochastic control.,1981,17,Automatica,2,db/journals/automatica/automatica17.html#Runggaldier81,https://doi.org/10.1016/0005-1098(81)90058-3 +Amir G. Aghdam,Decentralized switching control for hierarchical systems.,2007,43,Automatica,6,db/journals/automatica/automatica43.html#AghdamD07,https://doi.org/10.1016/j.automatica.2006.12.005 +Laurent Baratchart,Identification and rational L2 approximation A gradient algorithm.,1991,27,Automatica,2,db/journals/automatica/automatica27.html#BaratchartCO91,https://doi.org/10.1016/0005-1098(91)90092-G +Yu-Chi Ho,A control-theoretic view on incentives.,1982,18,Automatica,2,db/journals/automatica/automatica18.html#HoLO82,https://doi.org/10.1016/0005-1098(82)90106-6 +Huibert Kwakernaak,The Automatica and editor-in-chief's world wide web sites.,1996,32,Automatica,11,db/journals/automatica/automatica32.html#Kwakernaak96f,https://doi.org/10.1016/S0005-1098(97)80764-9 +Jiri Kadlec,Adaptive system identification and signal processing algorithms : Nicholas Kalouptsidis and Sergios Theodoridis (Eds).,1995,31,Automatica,10,db/journals/automatica/automatica31.html#Kadlec95,https://doi.org/10.1016/0005-1098(95)90000-4 +Stephen L. Campbell,On an assumption guaranteeing boundary layer convergence of singularly perturbed systems.,1981,17,Automatica,4,db/journals/automatica/automatica17.html#Campbell81,https://doi.org/10.1016/0005-1098(81)90038-8 +Maria Letizia Corradini,Fully sensorless robust control of variable-speed wind turbines for efficiency maximization.,2013,49,Automatica,10,db/journals/automatica/automatica49.html#CorradiniIO13,https://doi.org/10.1016/j.automatica.2013.07.028 +Douglas A. Lawrence,Input-output pseudolinearization on controlled invariant submanifolds.,2005,41,Automatica,1,db/journals/automatica/automatica41.html#Lawrence05,https://doi.org/10.1016/j.automatica.2004.08.008 +Albert Messmer,Automatic control methods applied to freeway network traffic.,1994,30,Automatica,4,db/journals/automatica/automatica30.html#MessmerP94,https://doi.org/10.1016/0005-1098(94)90157-0 +Rajendra Kumar,On adaptive minimum variance regulation for non-minimum phase plants.,1983,19,Automatica,4,db/journals/automatica/automatica19.html#KumarM83,https://doi.org/10.1016/0005-1098(83)90062-6 +Sanqing Hu,A gradient flow approach to on-line robust pole assignment for synthesizing output feedback control systems.,2002,38,Automatica,11,db/journals/automatica/automatica38.html#HuW02,https://doi.org/10.1016/S0005-1098(02)00144-9 +Ryan C. Loxton,Minimizing control variation in nonlinear optimal control.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#LoxtonLT13,https://doi.org/10.1016/j.automatica.2013.05.027 +Yaguang Yang,An efficient algorithm for periodic Riccati equation with periodically time-varying input matrix.,2017,78,Automatica,,db/journals/automatica/automatica78.html#Yang17,https://doi.org/10.1016/j.automatica.2016.12.028 +S. O. Reza Moheimani,A connection between H∞ control and the absolute stabilizability of discrete-time uncertain linear systems.,1995,31,Automatica,8,db/journals/automatica/automatica31.html#MoheimaniSP95,https://doi.org/10.1016/0005-1098(95)00029-V +Joseph Bentsman,Vibrational control of nonlinear time lag systems: Vibrational stabilization and transient behavior.,1991,27,Automatica,3,db/journals/automatica/automatica27.html#BentsmanHF91,https://doi.org/10.1016/0005-1098(91)90106-C +Alessandro Costalunga,A behavioral approach to inversion-based control.,2018,95,Automatica,,db/journals/automatica/automatica95.html#CostalungaP18,https://doi.org/10.1016/j.automatica.2018.06.008 +Alessandro de Rinaldis,A compensator for attenuation of wave reflections in long cable actuator-plant interconnections with guaranteed stability.,2006,42,Automatica,10,db/journals/automatica/automatica42.html#RinaldisOS06,https://doi.org/10.1016/j.automatica.2006.05.011 +Rushikesh Kamalapurkar,Efficient model-based reinforcement learning for approximate online optimal control.,2016,74,Automatica,,db/journals/automatica/automatica74.html#KamalapurkarRD16,https://doi.org/10.1016/j.automatica.2016.08.004 +Junfeng Zhang,Filtering for stochastic uncertain systems with non-logarithmic sensor resolution.,2018,89,Automatica,,db/journals/automatica/automatica89.html#ZhangHZ18,https://doi.org/10.1016/j.automatica.2017.12.005 +Alessandro Pisano,Boundary second-order sliding-mode control of an uncertain heat process with unbounded matched perturbation.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#PisanoO12,https://doi.org/10.1016/j.automatica.2012.05.041 +Ali Durmaz,Dynamic behaviour of material states in steam power plant control.,1980,16,Automatica,1,db/journals/automatica/automatica16.html#Durmaz80,https://doi.org/10.1016/0005-1098(80)90085-0 +Karl Johan åström,Drum-boiler dynamics.,2000,36,Automatica,3,db/journals/automatica/automatica36.html#AstromB00,https://doi.org/10.1016/S0005-1098(99)00171-5 +Hideaki Ishii,Limitations in remote stabilization over unreliable channels without acknowledgements.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#Ishii09,https://doi.org/10.1016/j.automatica.2009.05.021 +Jenq-Tzong H. Chan,Multivariable controller for redundantly actuated systems: a numerical design approach for open-loop data.,1995,31,Automatica,5,db/journals/automatica/automatica31.html#Chan95,https://doi.org/10.1016/0005-1098(94)00165-F +Chenliang Wang,Decentralized output-feedback adaptive control for a class of interconnected nonlinear systems with unknown actuator failures.,2016,71,Automatica,,db/journals/automatica/automatica71.html#WangWG16,https://doi.org/10.1016/j.automatica.2016.04.027 +Xudong Chen,Optimal capacity allocation for sampled networked systems.,2017,85,Automatica,,db/journals/automatica/automatica85.html#ChenBB17,https://doi.org/10.1016/j.automatica.2017.07.039 +Jackeline Abad Torres,Dominant eigenvalue minimization with trace preserving diagonal perturbation: Subset design problem.,2018,89,Automatica,,db/journals/automatica/automatica89.html#TorresR18,https://doi.org/10.1016/j.automatica.2017.12.007 +Juliang Yin,"Comments on ""Finite-time stability theorem of stochastic nonlinear systems"" [Automatica 46 (2010) 2105-2108].",2011,47,Automatica,7,db/journals/automatica/automatica47.html#YinK11,https://doi.org/10.1016/j.automatica.2011.02.052 +Xu Zhang 0007,Dynamic partial state feedback control of cascade systems with time-delay.,2017,77,Automatica,,db/journals/automatica/automatica77.html#ZhangLL17,https://doi.org/10.1016/j.automatica.2016.09.037 +Chun Tung Chou,Subspace Algorithms for the Identification of Multivariable Dynamic Errors-in-Variables Models.,1997,33,Automatica,10,db/journals/automatica/automatica33.html#ChouV97,https://doi.org/10.1016/S0005-1098(97)00092-7 +Eitan Altman,Congestion control as a stochastic control problem with action delays.,1999,35,Automatica,12,db/journals/automatica/automatica35.html#AltmanBS99,https://doi.org/10.1016/S0005-1098(99)00127-2 +Karl Johan åström,Towards intelligent PID control.,1992,28,Automatica,1,db/journals/automatica/automatica28.html#AstromHPH92,https://doi.org/10.1016/0005-1098(92)90002-W +Petre Stoica,Common factor detection and estimation.,1997,33,Automatica,5,db/journals/automatica/automatica33.html#StoicaS97,https://doi.org/10.1016/S0005-1098(96)00248-8 +Ning Sun 0002,Energy coupling output feedback control of 4-DOF underactuated cranes with saturated inputs.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#SunFZ13,https://doi.org/10.1016/j.automatica.2013.01.039 +M. Mahdi Ghazaei Ardakani,On the convergence of iterative learning control.,2017,78,Automatica,,db/journals/automatica/automatica78.html#ArdakaniKB17,https://doi.org/10.1016/j.automatica.2016.12.030 +Renhou Li,Decentralized control of complex systems : D. D. Siljak.,1993,29,Automatica,2,db/journals/automatica/automatica29.html#Li93,https://doi.org/10.1016/0005-1098(93)90164-O +Paolo Rapisarda,Identification and data-driven model reduction of state-space representations of lossless and dissipative systems from noise-free data.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#RapisardaT11,https://doi.org/10.1016/j.automatica.2011.02.048 +Xiushan Cai,Nonlinear stabilization through wave PDE dynamics with a moving uncontrolled boundary.,2016,68,Automatica,,db/journals/automatica/automatica68.html#CaiK16,https://doi.org/10.1016/j.automatica.2016.01.043 +Xianwei Li,Output-feedback protocols without controller interaction for consensus of homogeneous multi-agent systems: A unified robust control view.,2017,81,Automatica,,db/journals/automatica/automatica81.html#LiSX17,https://doi.org/10.1016/j.automatica.2017.03.001 +Ronghao Zheng,Distributed control for uniform circumnavigation of ring-coupled unicycles.,2015,53,Automatica,,db/journals/automatica/automatica53.html#ZhengLFS15,https://doi.org/10.1016/j.automatica.2014.11.012 +Kaushik Mahata,Bayesian approaches for identification of the complex modulus of viscoelastic materials.,2007,43,Automatica,8,db/journals/automatica/automatica43.html#MahataS07,https://doi.org/10.1016/j.automatica.2007.01.009 +Surya Sajja,On dimensionality reduction and the stability of a class of switched descriptor systems.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#SajjaCZS13,https://doi.org/10.1016/j.automatica.2013.02.056 +Petr Zagalák,The row-by-row decoupling via state feedback: A polynomial approach.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#ZagalakLH93,https://doi.org/10.1016/0005-1098(93)90012-I +Shu-Li Sun,Distributed optimal component fusion weighted by scalars for fixed-lag Kalman smoother.,2005,41,Automatica,12,db/journals/automatica/automatica41.html#Sun05,https://doi.org/10.1016/j.automatica.2005.06.014 +Alberto Cavallo,Robust control of flexible structures with stable bandpass controllers.,2008,44,Automatica,5,db/journals/automatica/automatica44.html#CavalloMNP08,https://doi.org/10.1016/j.automatica.2007.10.020 +Hyungbo Shim,An almost necessary and sufficient condition for robust stability of closed-loop systems with disturbance observer.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#ShimJ09,https://doi.org/10.1016/j.automatica.2008.10.009 +Jong Hae Kim,Robust control for parameter uncertain delay systems in state and control input.,1996,32,Automatica,9,db/journals/automatica/automatica32.html#KimJP96,https://doi.org/10.1016/0005-1098(96)00074-X +Peter B. Goldsmith,On the equivalence of causal LTI iterative learning control and feedback control.,2002,38,Automatica,4,db/journals/automatica/automatica38.html#Goldsmith02,https://doi.org/10.1016/S0005-1098(01)00246-1 +Vladimir Turetsky,Missile guidance laws based on pursuit-evasion game formulations.,2003,39,Automatica,4,db/journals/automatica/automatica39.html#TuretskyS03,https://doi.org/10.1016/S0005-1098(02)00273-X +Stephen L. Smith,A hierarchical cyclic pursuit scheme for vehicle networks.,2005,41,Automatica,6,db/journals/automatica/automatica41.html#SmithBF05,https://doi.org/10.1016/j.automatica.2005.01.001 +Sauro Liberatore,Application of a fault detection filter to structural health monitoring.,2006,42,Automatica,7,db/journals/automatica/automatica42.html#LiberatoreSH06,https://doi.org/10.1016/j.automatica.2006.03.008 +João Yoshiyuki Ishihara,Optimal robust filtering for systems subject to uncertainties.,2015,52,Automatica,,db/journals/automatica/automatica52.html#IshiharaTC15,https://doi.org/10.1016/j.automatica.2014.10.120 +Zhixin Liu,The proportion of leaders needed for the expected consensus.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#LiuHH11,https://doi.org/10.1016/j.automatica.2011.08.047 +Enrico S. Canuto,Drag-free and attitude control for the GOCE satellite.,2008,44,Automatica,7,db/journals/automatica/automatica44.html#Canuto08,https://doi.org/10.1016/j.automatica.2007.11.023 +Pierre Riedinger,On the algebraic characterization of invariant sets of switched linear systems.,2010,46,Automatica,6,db/journals/automatica/automatica46.html#RiedingerSD10,https://doi.org/10.1016/j.automatica.2010.03.001 +Ssu-Hsin Yu,Adaptive control of nonlinear dynamic systems using and#952*-adaptive neural networks.,1997,33,Automatica,11,db/journals/automatica/automatica33.html#YuA97,https://doi.org/10.1016/S0005-1098(97)00130-1 +Kim Batselier,Matrix output extension of the tensor network Kalman filter with an application in MIMO Volterra system identification.,2018,95,Automatica,,db/journals/automatica/automatica95.html#BatselierW18,https://doi.org/10.1016/j.automatica.2018.06.015 +R. Antonelli,Continuous stirred tank reactors: easy to stabilise?,2003,39,Automatica,10,db/journals/automatica/automatica39.html#AntonelliA03,https://doi.org/10.1016/S0005-1098(03)00177-8 +Yaron Levinson,FIR stabilization in discrete one-sided model-matching problems.,2012,48,Automatica,11,db/journals/automatica/automatica48.html#LevinsonM12,https://doi.org/10.1016/j.automatica.2012.08.010 +Zoran Gajic,Multimodel strategies under random disturbances and imperfect partial observations.,1986,22,Automatica,1,db/journals/automatica/automatica22.html#GajicK86,https://doi.org/10.1016/0005-1098(86)90113-5 +Edward Boje,Approximate models for continuous-time linear systems with sampling jitter.,2005,41,Automatica,12,db/journals/automatica/automatica41.html#Boje05,https://doi.org/10.1016/j.automatica.2005.06.011 +Ilya Ioslovich,On smooth optimal control determination.,2004,40,Automatica,12,db/journals/automatica/automatica40.html#IoslovichG04,https://doi.org/10.1016/j.automatica.2004.07.011 +Xiao-Li Hu,Strong consistence of recursive identification for Wiener systems.,2005,41,Automatica,11,db/journals/automatica/automatica41.html#HuC05,https://doi.org/10.1016/j.automatica.2005.06.006 +Jinfeng Liu 0001,Distributed model predictive control of nonlinear systems subject to asynchronous and delayed measurements.,2010,46,Automatica,1,db/journals/automatica/automatica46.html#LiuPC10,https://doi.org/10.1016/j.automatica.2009.10.033 +Young Il Lee,Receding horizon control of switching systems.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#LeeK09,https://doi.org/10.1016/j.automatica.2009.06.004 +Zhijian Ji,Design of switching sequences for controllability realization of switched linear systems.,2007,43,Automatica,4,db/journals/automatica/automatica43.html#JiWG07,https://doi.org/10.1016/j.automatica.2006.10.010 +Wudhichai Assawinchaichote,Hinfinity output feedback control design for uncertain fuzzy singularly perturbed systems: an LMI approach.,2004,40,Automatica,12,db/journals/automatica/automatica40.html#AssawinchaichoteNS04,https://doi.org/10.1016/j.automatica.2004.07.006 +Delin Chu,A novel numerical method for exact model matching problem with stability.,2006,42,Automatica,10,db/journals/automatica/automatica42.html#ChuD06,https://doi.org/10.1016/j.automatica.2006.04.024 +Jan C. Willems,From time series to linear system - Part III: Approximate modelling.,1987,23,Automatica,1,db/journals/automatica/automatica23.html#Willems87,https://doi.org/10.1016/0005-1098(87)90120-8 +Kumpati S. Narenda,Adaptive and learning systems: Theory and applications.,1988,24,Automatica,2,db/journals/automatica/automatica24.html#Narenda88,https://doi.org/10.1016/0005-1098(88)90043-X +Xiaoping Liu,Robust stabilization of MIMO nonlinear systems by backstepping.,1999,35,Automatica,5,db/journals/automatica/automatica35.html#LiuGZ99,https://doi.org/10.1016/S0005-1098(98)00236-2 +Florian A. Bayer,On optimal system operation in robust economic MPC.,2018,88,Automatica,,db/journals/automatica/automatica88.html#BayerMA18,https://doi.org/10.1016/j.automatica.2017.11.007 +Alexey A. Bobtsov,A robust globally convergent position observer for the permanent magnet synchronous motor.,2015,61,Automatica,,db/journals/automatica/automatica61.html#BobtsovPOVSP15,https://doi.org/10.1016/j.automatica.2015.07.032 +Ron John Patton,Optimal unknown input distribution matrix selection in robust fault diagnosis.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#PattonC93,https://doi.org/10.1016/0005-1098(93)90089-C +Riccardo Marino,Adaptive Output Feedback Control of Current-Fed Induction Motors with Uncertain Rotor Resistance and Load Torque.,1998,34,Automatica,5,db/journals/automatica/automatica34.html#MarinoPT98,https://doi.org/10.1016/S0005-1098(97)00212-4 +Yoshio Ebihara,Periodically time-varying memory state-feedback controller synthesis for discrete-time linear systems.,2011,47,Automatica,1,db/journals/automatica/automatica47.html#EbiharaPA11,https://doi.org/10.1016/j.automatica.2010.10.004 +Masao Nagai,Analysis of rider and single-track-vehicle system* its application to computer-controlled bicycles.,1983,19,Automatica,6,db/journals/automatica/automatica19.html#Nagai83,https://doi.org/10.1016/0005-1098(83)90040-7 +Shiyu Zhao,Localizability and distributed protocols for bearing-based network localization in arbitrary dimensions.,2016,69,Automatica,,db/journals/automatica/automatica69.html#ZhaoZ16,https://doi.org/10.1016/j.automatica.2016.03.010 +Jiaming Zhu,Sliding mode control of MIMO Markovian jump systems.,2016,68,Automatica,,db/journals/automatica/automatica68.html#ZhuYZCYY16,https://doi.org/10.1016/j.automatica.2016.01.070 +Ho-Wang Fung,PI Tuning in Terms of Gain and Phase Margins.,1998,34,Automatica,9,db/journals/automatica/automatica34.html#FungWL98,https://doi.org/10.1016/S0005-1098(98)80001-0 +Salvatore Nicosia,A global output feedback controller for flexible joint robots.,1995,31,Automatica,10,db/journals/automatica/automatica31.html#NicosiaT95,https://doi.org/10.1016/0005-1098(95)00052-X +Alexander S. Poznyak,Adaptive control of constrained finite Markov chains.,1999,35,Automatica,5,db/journals/automatica/automatica35.html#PoznyakN99,https://doi.org/10.1016/S0005-1098(98)00219-2 +Gilead Tadmor,Uncertain feedback loops and robustness in general linear systems.,1991,27,Automatica,6,db/journals/automatica/automatica27.html#Tadmor91,https://doi.org/10.1016/0005-1098(91)90139-S +Emmanuel Nuño,An adaptive controller for nonlinear teleoperators.,2010,46,Automatica,1,db/journals/automatica/automatica46.html#NunoOB10,https://doi.org/10.1016/j.automatica.2009.10.026 +Marc Bodson,Performance of an adaptive algorithm for sinusoidal disturbance rejection in high noise.,2001,37,Automatica,7,db/journals/automatica/automatica37.html#Bodson01,https://doi.org/10.1016/S0005-1098(01)00065-6 +Enrique A. Medina,State feedback stabilization of linear impulsive systems.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#MedinaL09,https://doi.org/10.1016/j.automatica.2009.02.003 +Joachim Deutscher,Output regulation for general linear heterodirectional hyperbolic systems with spatially-varying coefficients.,2017,85,Automatica,,db/journals/automatica/automatica85.html#Deutscher17a,https://doi.org/10.1016/j.automatica.2017.07.027 +Hüseyin Akçay,Frequency domain subspace-based identification of discrete-time power spectra from nonuniformly spaced measurements.,2004,40,Automatica,8,db/journals/automatica/automatica40.html#AkcayT04,https://doi.org/10.1016/j.automatica.2004.03.010 +Kazunobu Kuriyama,Alternative derivation of the algebraic Riccati equation in H∞ control.,1997,33,Automatica,1,db/journals/automatica/automatica33.html#KuriyamaM97,https://doi.org/10.1016/S0005-1098(96)00131-8 +Qun Lin 0002,Optimal control computation for nonlinear systems with state-dependent stopping criteria.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#LinLTW12,https://doi.org/10.1016/j.automatica.2012.06.055 +Mitra Fouladirad,Optimal statistical fault detection with nuisance parameters.,2005,41,Automatica,7,db/journals/automatica/automatica41.html#FouladiradN05,https://doi.org/10.1016/j.automatica.2005.02.004 +Jitendra K. Tugnait,On identification and adaptive estimation for systems with interrupted observations.,1983,19,Automatica,1,db/journals/automatica/automatica19.html#Tugnait83,https://doi.org/10.1016/0005-1098(83)90075-4 +Bin Yao,Variable structure adaptive motion and force control of robot manipulators.,1994,30,Automatica,9,db/journals/automatica/automatica30.html#YaoCW94,https://doi.org/10.1016/0005-1098(94)90014-0 +Shigemasa Takai,Estimate based limited lookahead supervisory control for closed language specifications.,1997,33,Automatica,9,db/journals/automatica/automatica33.html#Takai97,https://doi.org/10.1016/S0005-1098(97)00089-7 +Bailing Tian,A fixed-time output feedback control scheme for double integrator systems.,2017,80,Automatica,,db/journals/automatica/automatica80.html#TianZYW17,https://doi.org/10.1016/j.automatica.2017.01.007 +Jan Eric Larsson,Diagnostic reasoning strategies for means-end models.,1994,30,Automatica,5,db/journals/automatica/automatica30.html#Larsson94,https://doi.org/10.1016/0005-1098(94)90168-6 +Alain Bensoussan,Optimization over time : Peter Whittle.,1984,20,Automatica,6,db/journals/automatica/automatica20.html#Bensoussan84,https://doi.org/10.1016/0005-1098(84)90095-5 +Zhengtao Ding,Asymptotic rejection of asymmetric periodic disturbances in output-feedback nonlinear systems.,2007,43,Automatica,3,db/journals/automatica/automatica43.html#Ding07a,https://doi.org/10.1016/j.automatica.2006.10.005 +Sridharakumar Narasimhan,New nonlinear residual feedback observer for fault diagnosis in nonlinear systems.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#NarasimhanVR08,https://doi.org/10.1016/j.automatica.2007.12.020 +Qing Hui,"Author's reply to ""Comments on ""Distributed nonlinear control algorithms for network consensus"" [Automatica 44 (2008) 2375-2381]"".",2010,46,Automatica,9,db/journals/automatica/automatica46.html#HuiH10,https://doi.org/10.1016/j.automatica.2010.06.002 +Yafeng Guo,Moving horizon estimation for switching nonlinear systems.,2013,49,Automatica,11,db/journals/automatica/automatica49.html#GuoH13,https://doi.org/10.1016/j.automatica.2013.08.028 +Haiming Wang,Inversion-based optimal output tracking-transition switching with preview for nonminimum-phase linear systems.,2012,48,Automatica,7,db/journals/automatica/automatica48.html#WangZX12,https://doi.org/10.1016/j.automatica.2011.11.011 +Tao Wang,Optimal control of batteries with fully and partially available rechargeability.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#WangC12,https://doi.org/10.1016/j.automatica.2012.05.031 +Wei Liu 0041,Adaptive leader-following consensus for a class of higher-order nonlinear multi-agent systems with directed switching networks.,2017,79,Automatica,,db/journals/automatica/automatica79.html#LiuH17,https://doi.org/10.1016/j.automatica.2017.02.010 +Zalman J. Palmor,Automatic tuning of decentralized PID controllers for TITO processes.,1995,31,Automatica,7,db/journals/automatica/automatica31.html#PalmorHK95,https://doi.org/10.1016/0005-1098(94)00177-K +Vladimír Strejc,Trends in identification.,1981,17,Automatica,1,db/journals/automatica/automatica17.html#Strejc81,https://doi.org/10.1016/0005-1098(81)90081-9 +S. Ramarajan,System stability with combined derivative constraints on time varying gains.,1978,14,Automatica,1,db/journals/automatica/automatica14.html#RamarajanM78,https://doi.org/10.1016/0005-1098(78)90080-8 +Hoai Nghia Duong,An IV based criterion for model order selection.,1996,32,Automatica,6,db/journals/automatica/automatica32.html#DuongL96,https://doi.org/10.1016/0005-1098(96)00020-9 +Abdelhamid Tayebi,Analysis of two particular iterative learning control schemes in frequency and time domains.,2007,43,Automatica,9,db/journals/automatica/automatica43.html#Tayebi07,https://doi.org/10.1016/j.automatica.2007.01.026 +Andrey V. Savkin,Model validation for robust control of uncertain systems with an integral quadratic constraint.,1996,32,Automatica,4,db/journals/automatica/automatica32.html#SavkinP96,https://doi.org/10.1016/0005-1098(95)00167-0 +Jun Zhao 0002,Synchronization of complex dynamical networks with switching topology: A switched system point of view.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#ZhaoHL09,https://doi.org/10.1016/j.automatica.2009.07.013 +Sippe G. Douma,Controller tuning freedom under plant identification uncertainty: double Youla beats gap in robust stability.,2003,39,Automatica,2,db/journals/automatica/automatica39.html#DoumaHB03,https://doi.org/10.1016/S0005-1098(02)00223-6 +Ji Wang,Exponential regulation of the anti-collocatedly disturbed cage in a wave PDE-modeled ascending cable elevator.,2018,95,Automatica,,db/journals/automatica/automatica95.html#WangTPK18,https://doi.org/10.1016/j.automatica.2018.05.022 +Jin Lan,Third IFAC workshop: Distributed computer control systems.,1982,18,Automatica,3,db/journals/automatica/automatica18.html#LanM82,https://doi.org/10.1016/0005-1098(82)90098-X +Mark Verwoerd,On admissible pairs and equivalent feedback - Youla parameterization in iterative learning control.,2006,42,Automatica,12,db/journals/automatica/automatica42.html#VerwoerdMV06,https://doi.org/10.1016/j.automatica.2006.06.022 +Graham C. Goodwin,A perspective on convergence of adaptive control algorithms.,1984,20,Automatica,5,db/journals/automatica/automatica20.html#GoodwinHP84,https://doi.org/10.1016/0005-1098(84)90004-9 +Mazen Alamir,A benchmark for optimal control problem solvers for hybrid nonlinear systems.,2006,42,Automatica,9,db/journals/automatica/automatica42.html#Alamir06,https://doi.org/10.1016/j.automatica.2006.04.005 +Per Olof Gutman,A linear programming regulator applied to hydroelectric reservoir level control.,1986,22,Automatica,5,db/journals/automatica/automatica22.html#Gutman86,https://doi.org/10.1016/0005-1098(86)90063-4 +Antonio Estrada,Quasi-continuous HOSM control for systems with unmatched perturbations.,2010,46,Automatica,11,db/journals/automatica/automatica46.html#EstradaF10,https://doi.org/10.1016/j.automatica.2010.07.002 +Josep Rubió-Massegú,Static output-feedback control under information structure constraints.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#Rubio-MasseguRKP13,https://doi.org/10.1016/j.automatica.2012.10.012 +Xi-Ming Sun,Stability and L2-gain analysis for switched delay systems: A delay-dependent method.,2006,42,Automatica,10,db/journals/automatica/automatica42.html#SunZH06,https://doi.org/10.1016/j.automatica.2006.05.007 +Andrew H. C. Gosline,Ineluctability of oscillations in systems with digital implementation of derivative feedback.,2011,47,Automatica,11,db/journals/automatica/automatica47.html#GoslineHM11,https://doi.org/10.1016/j.automatica.2011.08.017 +Zhiyong Chen,On observability of nonlinear steady-state generators.,2010,46,Automatica,10,db/journals/automatica/automatica46.html#Chen10,https://doi.org/10.1016/j.automatica.2010.06.028 +Darko Musicki,Bearings only single-sensor target tracking using Gaussian mixtures.,2009,45,Automatica,9,db/journals/automatica/automatica45.html#Musicki09,https://doi.org/10.1016/j.automatica.2009.05.008 +Liang Liu,Adaptive partial-state feedback control for stochastic high-order nonlinear systems with stochastic input-to-state stable inverse dynamics.,2015,51,Automatica,,db/journals/automatica/automatica51.html#LiuYGAH15,https://doi.org/10.1016/j.automatica.2014.10.094 +Dimitrios Hristu-Varsakelis,A bio-inspired pursuit strategy for optimal control with partially constrained final state.,2007,43,Automatica,7,db/journals/automatica/automatica43.html#Hristu-VarsakelisS07,https://doi.org/10.1016/j.automatica.2006.12.023 +Günther Schmidt,Modern digital control systems: Raymond G. Jacqout.,1984,20,Automatica,2,db/journals/automatica/automatica20.html#Schmidt84,https://doi.org/10.1016/0005-1098(84)90039-6 +Bernardo A. León de la Barra,Linear Multivariable Servomechanisms Revisited: System Type and Accuracy Trade-offs.,1998,34,Automatica,11,db/journals/automatica/automatica34.html#BarraEC98,https://doi.org/10.1016/S0005-1098(98)00095-8 +P. C. Hills,Introduction to robots: Arthur J. Critchlow.,1986,22,Automatica,5,db/journals/automatica/automatica22.html#Hills86,https://doi.org/10.1016/0005-1098(86)90074-9 +Luis Orihuela,Distributed set-membership observers for interconnected multi-rate systems.,2017,85,Automatica,,db/journals/automatica/automatica85.html#OrihuelaRGM17,https://doi.org/10.1016/j.automatica.2017.07.041 +Malur K. Sundareshan,Qualitative analysis and decentralized controller synthesis for a class of large-scale systems with symmetrically interconnected subsystems.,1991,27,Automatica,2,db/journals/automatica/automatica27.html#SundareshanE91,https://doi.org/10.1016/0005-1098(91)90086-H +Yoshiki Takeuchi,Least-squares state estimation of systems with state-dependent observation noise.,1985,21,Automatica,3,db/journals/automatica/automatica21.html#TakeuchiA85,https://doi.org/10.1016/0005-1098(85)90063-9 +Laura Christian,Limits on achievable robustness against coprime factor uncertainty.,1994,30,Automatica,11,db/journals/automatica/automatica30.html#ChristianF94,https://doi.org/10.1016/0005-1098(94)90072-8 +Augusto Ferrante,The generalised discrete algebraic Riccati equation in linear-quadratic optimal control.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#FerranteN13,https://doi.org/10.1016/j.automatica.2012.11.006 +Fabrizio Padula,H∞H∞ control of fractional linear systems.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#PadulaAVV13,https://doi.org/10.1016/j.automatica.2013.04.012 +Henrik Ohlsson,Identification of switched linear regression models using sum-of-norms regularization.,2013,49,Automatica,4,db/journals/automatica/automatica49.html#OhlssonL13,https://doi.org/10.1016/j.automatica.2013.01.031 +Seong Yun Cho,Adaptive IIR/FIR fusion filter and its application to the INS/GPS integrated system.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#ChoK08,https://doi.org/10.1016/j.automatica.2007.11.009 +Al-Muatazbellah M. A. Boker,Nonlinear observers comprising high-gain observers and extended Kalman filters.,2013,49,Automatica,12,db/journals/automatica/automatica49.html#BokerK13,https://doi.org/10.1016/j.automatica.2013.08.031 +Richard Davies,Upper solution bounds of the continuous and discrete coupled algebraic Riccati equations.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#DaviesSW08,https://doi.org/10.1016/j.automatica.2007.11.001 +Luigi Chisci,Block recursive parallelotopic bounding in set membership identification.,1998,34,Automatica,1,db/journals/automatica/automatica34.html#ChisciGVZ98,https://doi.org/10.1016/S0005-1098(97)00160-X +Jason L. Speyer,"Erratum to ""A stochastic controller for a scalar linear system with additive Cauchy noise"" [Automatica 50 (1) (2014) 114-127].",2014,50,Automatica,6,db/journals/automatica/automatica50.html#SpeyerIF14a,https://doi.org/10.1016/j.automatica.2014.02.027 +Xinjia Chen,On the binomial confidence interval and probabilistic robust control.,2004,40,Automatica,10,db/journals/automatica/automatica40.html#ChenZA04,https://doi.org/10.1016/j.automatica.2004.04.016 +Angelo Alessandri,Increasing-gain observers for nonlinear systems: Stability and design.,2015,57,Automatica,,db/journals/automatica/automatica57.html#AlessandriR15,https://doi.org/10.1016/j.automatica.2015.04.017 +H. W. Brewer,A treatment of nonwhite measurement noise in discrete linear systems.,1976,12,Automatica,4,db/journals/automatica/automatica12.html#BrewerL76,https://doi.org/10.1016/0005-1098(76)90057-1 +Wael Suleiman,New method for identifying finite degree Volterra series.,2008,44,Automatica,2,db/journals/automatica/automatica44.html#SuleimanM08,https://doi.org/10.1016/j.automatica.2007.06.007 +Lisa Fiorentini,Adaptive restricted trajectory tracking for a non-minimum phase hypersonic vehicle model.,2012,48,Automatica,7,db/journals/automatica/automatica48.html#FiorentiniS12,https://doi.org/10.1016/j.automatica.2012.04.006 +Johannes Schiffer,Conditions for stability of droop-controlled inverter-based microgrids.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#SchifferOARS14,https://doi.org/10.1016/j.automatica.2014.08.009 +U. K. J. Kortela,Modelling and prediction of copper concentration of a grinding process.,1978,14,Automatica,6,db/journals/automatica/automatica14.html#KortelaN78,https://doi.org/10.1016/0005-1098(78)90044-4 +Xile Kang,Coarsest quantization for networked control of uncertain linear systems.,2015,51,Automatica,,db/journals/automatica/automatica51.html#KangI15,https://doi.org/10.1016/j.automatica.2014.10.113 +Håvard Fjær Grip,Nonlinear vehicle side-slip estimation with friction adaptation.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#GripIJFKS08,https://doi.org/10.1016/j.automatica.2007.06.017 +Ling Hou,Stability analysis of pulse-width-modulated feedback systems.,2001,37,Automatica,9,db/journals/automatica/automatica37.html#HouM01,https://doi.org/10.1016/S0005-1098(01)00100-5 +Giuseppe De Nicolao,On the use of reachability Gramians for the stabilization of linear periodic systems.,1997,33,Automatica,4,db/journals/automatica/automatica33.html#NicolaoS97,https://doi.org/10.1016/S0005-1098(96)00240-3 +Peter Benner,Robust formulas for optimal H∞ controllers.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#BennerBLMX11,https://doi.org/10.1016/j.automatica.2011.09.013 +Giorgio Bartolini,On the second-order sliding mode control of nonlinear systems with uncertain control direction.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#BartoliniPU09,https://doi.org/10.1016/j.automatica.2009.09.018 +Mohammad H. Mamduhi,Error-dependent data scheduling in resource-aware multi-loop networked control systems.,2017,81,Automatica,,db/journals/automatica/automatica81.html#MamduhiMTH17,https://doi.org/10.1016/j.automatica.2017.03.005 +Lee H. Keel,A new proof of the Jury test.,1999,35,Automatica,2,db/journals/automatica/automatica35.html#KeelB99,https://doi.org/10.1016/S0005-1098(98)00152-6 +Tingrui Han,Three-dimensional formation merging control under directed and switching topologies.,2015,58,Automatica,,db/journals/automatica/automatica58.html#HanLF15,https://doi.org/10.1016/j.automatica.2015.04.027 +J.-Y. Keller,Fault isolation filter design for linear stochastic systems.,1999,35,Automatica,10,db/journals/automatica/automatica35.html#Keller99,https://doi.org/10.1016/S0005-1098(99)00079-5 +Youcheng Lou,Target containment control of multi-agent systems with random switching interconnection topologies.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#LouH12,https://doi.org/10.1016/j.automatica.2012.02.032 +J. D. Blight,Graphical stability criteria for nonlinear multiloop systems.,1977,13,Automatica,2,db/journals/automatica/automatica13.html#BlightM77,https://doi.org/10.1016/0005-1098(77)90044-9 +Maobin Lu,Robust output consensus of networked heterogeneous nonlinear systems by distributed output regulation.,2018,94,Automatica,,db/journals/automatica/automatica94.html#LuL18,https://doi.org/10.1016/j.automatica.2018.04.018 +Dario Bauso,Robust control strategies for multi-inventory systems with average flow constraints.,2006,42,Automatica,8,db/journals/automatica/automatica42.html#BausoBP06,https://doi.org/10.1016/j.automatica.2005.12.006 +Alireza Doosthoseini,Coordinated path following for unicycles: A nested invariant sets approach.,2015,60,Automatica,,db/journals/automatica/automatica60.html#DoosthoseiniN15,https://doi.org/10.1016/j.automatica.2015.06.033 +Zhongqi Sun,Robust MPC for tracking constrained unicycle robots with additive disturbances.,2018,90,Automatica,,db/journals/automatica/automatica90.html#SunDLXJ18,https://doi.org/10.1016/j.automatica.2017.12.048 +Bojana Drincic,Why are some hysteresis loops shaped like a butterfly?,2011,47,Automatica,12,db/journals/automatica/automatica47.html#DrincicTB11,https://doi.org/10.1016/j.automatica.2011.08.027 +Zheng Guo Li,Observer-based stabilization of switching linear systems.,2003,39,Automatica,3,db/journals/automatica/automatica39.html#LiWS03,https://doi.org/10.1016/S0005-1098(02)00267-4 +James Anderson 0001,Model decomposition and reduction tools for large-scale networks in systems biology.,2011,47,Automatica,6,db/journals/automatica/automatica47.html#AndersonCP11,https://doi.org/10.1016/j.automatica.2011.03.010 +Katsuo Yonezawa,"Comments on: ""Exact and approximate state estimation for nonlinear dynamic systems"".",1979,15,Automatica,1,db/journals/automatica/automatica15.html#Yonezawa79,https://doi.org/10.1016/0005-1098(79)90095-5 +Hossam A. Abdel Fattah,Passivity-based torque and flux tracking for induction motors with magnetic saturation.,2003,39,Automatica,12,db/journals/automatica/automatica39.html#FattahL03,https://doi.org/10.1016/S0005-1098(03)00251-6 +Hannu T. Toivonen,Reply by toivonen and westerlund.,1979,15,Automatica,2,db/journals/automatica/automatica15.html#ToivonenW79a,https://doi.org/10.1016/0005-1098(79)90075-X +Feng Ding 0001,Identification of Hammerstein nonlinear ARMAX systems.,2005,41,Automatica,9,db/journals/automatica/automatica41.html#DingC05a,https://doi.org/10.1016/j.automatica.2005.03.026 +V. Broida,The determination of large time-constants by step-response extrapolation.,1969,5,Automatica,5,db/journals/automatica/automatica5.html#Broida69,https://doi.org/10.1016/0005-1098(69)90033-8 +Joaquín Carrasco,"Comment on ""Absolute stability analysis for negative-imaginary systems"" [Automatica 67 (2016) 107-113].",2017,85,Automatica,,db/journals/automatica/automatica85.html#CarrascoH17,https://doi.org/10.1016/j.automatica.2017.02.011 +Xiaohua Xia,Estimation of HIV/AIDS parameters.,2003,39,Automatica,11,db/journals/automatica/automatica39.html#Xia03,https://doi.org/10.1016/S0005-1098(03)00220-6 +Lei Fang,An incremental harmonic balance-based approach for harmonic analysis of closed-loop systems with Prandtl-Ishlinskii operator.,2018,88,Automatica,,db/journals/automatica/automatica88.html#FangWT18,https://doi.org/10.1016/j.automatica.2017.11.005 +Tansu Alpcan,A non-equilibrium analysis and control framework for active queue management.,2008,44,Automatica,10,db/journals/automatica/automatica44.html#AlpcanWMB08,https://doi.org/10.1016/j.automatica.2008.02.008 +Eduardo I. Silva,Performance limitations for single-input LTI plants controlled over SNR constrained channels with feedback.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#SilvaP13,https://doi.org/10.1016/j.automatica.2012.11.037 +Christophe Prieur 0001,Boundary feedback control of linear hyperbolic systems: Application to the Saint-Venant-Exner equations.,2018,89,Automatica,,db/journals/automatica/automatica89.html#PrieurW18,https://doi.org/10.1016/j.automatica.2017.11.028 +Colin Neil Jones,Lexicographic perturbation for multiparametric linear programming with applications to control.,2007,43,Automatica,10,db/journals/automatica/automatica43.html#JonesKM07,https://doi.org/10.1016/j.automatica.2007.03.008 +João P. Hespanha,Hysteresis-based switching algorithms for supervisory control of uncertain systems.,2003,39,Automatica,2,db/journals/automatica/automatica39.html#HespanhaLM03,https://doi.org/10.1016/S0005-1098(02)00241-8 +Hao Wang,Zonotope-based recursive estimation of the feasible solution set for linear static systems with additive and multiplicative uncertainties.,2018,95,Automatica,,db/journals/automatica/automatica95.html#WangKS18,https://doi.org/10.1016/j.automatica.2018.05.035 +Hanlei Wang,Flocking of networked uncertain Euler-Lagrange systems on directed graphs.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#Wang13a,https://doi.org/10.1016/j.automatica.2013.05.029 +Lucy Y. Pao,Robust minimum time control of flexible structures.,1998,34,Automatica,2,db/journals/automatica/automatica34.html#PaoS98,https://doi.org/10.1016/S0005-1098(97)00178-7 +Hugues Rafaralahy,Sensor diagnosis and state estimation for a class of skew symmetric time-varying systems.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#RafaralahyRBZ12,https://doi.org/10.1016/j.automatica.2012.06.029 +Kian Jafari,Convergence analysis of an online approach to parameter estimation problems based on binary observations.,2012,48,Automatica,11,db/journals/automatica/automatica48.html#JafariJR12,https://doi.org/10.1016/j.automatica.2012.05.050 +R. W. Daniel,Control of machines with friction : Brian Armstrong-Hélouvry.,1992,28,Automatica,6,db/journals/automatica/automatica28.html#Daniel92,https://doi.org/10.1016/0005-1098(92)90076-R +Humberto E. Garcia,Model-based detection of routing events in discrete flow networks.,2005,41,Automatica,4,db/journals/automatica/automatica41.html#GarciaY05,https://doi.org/10.1016/j.automatica.2004.10.002 +Dong-Juan Li,Adaptive tracking control for nonlinear time-varying delay systems with full state constraints and unknown control coefficients.,2018,93,Automatica,,db/journals/automatica/automatica93.html#LiL18,https://doi.org/10.1016/j.automatica.2018.03.063 +Félix Mora-Camino,"Comments on: ""Optimisation of non-linear systems using a new two level method"".",1979,15,Automatica,1,db/journals/automatica/automatica15.html#Mora-Camino79,https://doi.org/10.1016/0005-1098(79)90097-9 +Takuya Sogo,Inversion of sampled-data system approximates the continuous-time counterpart in a noncausal framework.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#Sogo08,https://doi.org/10.1016/j.automatica.2007.07.020 +S. Kung,Fast projection methods for minimal design problems in linear system theory.,1980,16,Automatica,4,db/journals/automatica/automatica16.html#KungK80,https://doi.org/10.1016/0005-1098(80)90024-2 +Masato Koda,Finite difference implementation of distributed parameter filters.,1979,15,Automatica,6,db/journals/automatica/automatica15.html#Koda79,https://doi.org/10.1016/0005-1098(79)90038-4 +Sinan Kilicaslan,A separation theorem for nonlinear systems.,2009,45,Automatica,4,db/journals/automatica/automatica45.html#KilicaslanB09,https://doi.org/10.1016/j.automatica.2008.11.019 +Daniel Limón,MPC for tracking piecewise constant references for constrained linear systems.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#LimonAAC08,https://doi.org/10.1016/j.automatica.2008.01.023 +Giorgio Battistelli,Stability of consensus extended Kalman filter for distributed state estimation.,2016,68,Automatica,,db/journals/automatica/automatica68.html#BattistelliC16,https://doi.org/10.1016/j.automatica.2016.01.071 +A. C. Cem Say,Random generation of monotonic functions for Monte Carlo solution of qualitative differential equations.,2005,41,Automatica,5,db/journals/automatica/automatica41.html#SayN05,https://doi.org/10.1016/j.automatica.2004.10.022 +John L. Maryak,Automated system monitoring and diagnosis via singular value decomposition.,1997,33,Automatica,11,db/journals/automatica/automatica33.html#MaryakHF97,https://doi.org/10.1016/S0005-1098(97)00123-4 +Christopher J. Harris 0001,Fuzzy control and fuzzy systems : W. Pedrycz.,1992,28,Automatica,2,db/journals/automatica/automatica28.html#Harris92,https://doi.org/10.1016/0005-1098(92)90135-3 +Jacob Engwerda,Feedback Nash equilibria in the scalar infinite horizon LQ-game.,2000,36,Automatica,1,db/journals/automatica/automatica36.html#Engwerda00,https://doi.org/10.1016/S0005-1098(99)00119-3 +Chih-Chiang Cheng,Adaptive sliding mode controller design based on T-S fuzzy system models.,2006,42,Automatica,6,db/journals/automatica/automatica42.html#ChengC06,https://doi.org/10.1016/j.automatica.2006.02.016 +Mario Milanese,Set Membership identification of nonlinear systems.,2004,40,Automatica,6,db/journals/automatica/automatica40.html#MilaneseN04,https://doi.org/10.1016/j.automatica.2004.02.002 +Qi Luo,Generalised theory on asymptotic stability and boundedness of stochastic functional differential equations.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#LuoMS11,https://doi.org/10.1016/j.automatica.2011.06.014 +Weilin Wang,Online minimization of sensor activation for supervisory control.,2016,73,Automatica,,db/journals/automatica/automatica73.html#Wang16,https://doi.org/10.1016/j.automatica.2016.06.016 +Sippe G. Douma,Validity of the standard cross-correlation test for model structure validation.,2008,44,Automatica,5,db/journals/automatica/automatica44.html#DoumaBH08,https://doi.org/10.1016/j.automatica.2007.09.027 +Tarek Ahmed-Ali,Adaptive boundary observer for parabolic PDEs subject to domain and boundary parameter uncertainties.,2016,72,Automatica,,db/journals/automatica/automatica72.html#Ahmed-AliGKBL16,https://doi.org/10.1016/j.automatica.2016.06.006 +Elena Zattoni,The output regulation problem with stability for linear switching systems: A geometric approach.,2013,49,Automatica,10,db/journals/automatica/automatica49.html#ZattoniPC13,https://doi.org/10.1016/j.automatica.2013.07.005 +Suresh P. Sethi,Introduction to the special issue on optimal control applications to management sciences.,2006,42,Automatica,8,db/journals/automatica/automatica42.html#SethiZ06,https://doi.org/10.1016/j.automatica.2006.04.018 +Younseok Choo,An elementary proof of the Jury test for real polynomials.,2011,47,Automatica,1,db/journals/automatica/automatica47.html#Choo11,https://doi.org/10.1016/j.automatica.2010.10.040 +Er-Wei Bai,Towards identification of Wiener systems with the least amount of a priori information: IIR cases.,2009,45,Automatica,4,db/journals/automatica/automatica45.html#BaiR09,https://doi.org/10.1016/j.automatica.2008.11.020 +John Hugh Westcott,Numerical computational methods of optimisation in control.,1969,5,Automatica,6,db/journals/automatica/automatica5.html#Westcott69a,https://doi.org/10.1016/0005-1098(69)90096-X +James L. Alty,Knowledge-based dialogue for dynamic systems.,1989,25,Automatica,6,db/journals/automatica/automatica25.html#AltyJ89,https://doi.org/10.1016/0005-1098(89)90051-4 +Guang-Hong Yang,Non-fragile Hinfinity control for linear systems with multiplicative controller gain variations.,2001,37,Automatica,5,db/journals/automatica/automatica37.html#YangW01,https://doi.org/10.1016/S0005-1098(01)00008-5 +Hongyinping Feng,Distributed disturbance estimator and application to stabilization for multi-dimensional wave equation with corrupted boundary observation.,2016,66,Automatica,,db/journals/automatica/automatica66.html#FengG16,https://doi.org/10.1016/j.automatica.2015.12.008 +Quang Phuc Ha,Fuzzy moving sliding mode control with application to robotic manipulators.,1999,35,Automatica,4,db/journals/automatica/automatica35.html#HaRD99,https://doi.org/10.1016/S0005-1098(98)00169-1 +Sergei Peresada,High-performance indirect field-oriented output-feedback control of induction motors.,1999,35,Automatica,6,db/journals/automatica/automatica35.html#PeresadaTM99,https://doi.org/10.1016/S0005-1098(99)00003-5 +Elmer G. Gilbert,Vehicle cruise: Improved fuel economy by periodic control.,1976,12,Automatica,2,db/journals/automatica/automatica12.html#Gilbert76,https://doi.org/10.1016/0005-1098(76)90079-0 +Chandrashekar Lakshminarayanan,A stability criterion for two *cale stochastic approximation schemes.,2017,79,Automatica,,db/journals/automatica/automatica79.html#Lakshminarayanan17,https://doi.org/10.1016/j.automatica.2016.12.014 +Aleksandar Haber,Linear computational complexity robust ILC for lifted systems.,2012,48,Automatica,6,db/journals/automatica/automatica48.html#HaberFV12,https://doi.org/10.1016/j.automatica.2012.02.009 +Christopher G. Mayhew,Global stabilization of spherical orientation by synergistic hybrid feedback with application to reduced-attitude tracking for rigid bodies.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#MayhewT13,https://doi.org/10.1016/j.automatica.2013.02.049 +Magnus Jansson,On Consistency of Subspace Methods for System Identification.,1998,34,Automatica,12,db/journals/automatica/automatica34.html#JanssonW98,https://doi.org/10.1016/S0005-1098(98)80004-6 +Zbigniew Swider,Realization Using the *-Operator.,1998,34,Automatica,11,db/journals/automatica/automatica34.html#Swider98,https://doi.org/10.1016/S0005-1098(98)00092-2 +Pedro García,A new dead-time compensator to control stable and integrating processes with long dead-time.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#GarciaA08,https://doi.org/10.1016/j.automatica.2007.08.022 +Domenica Borra,Continuous graph partitioning for camera network surveillance.,2015,52,Automatica,,db/journals/automatica/automatica52.html#BorraPB15,https://doi.org/10.1016/j.automatica.2014.11.017 +Wei Xing Zheng,A bias-correction method for indirect identification of closed-loop systems.,1995,31,Automatica,7,db/journals/automatica/automatica31.html#ZhengF95,https://doi.org/10.1016/0005-1098(95)00006-I +Robert Orsi,Sufficient conditions for the existence of an unbounded solution.,2001,37,Automatica,10,db/journals/automatica/automatica37.html#OrsiPM01,https://doi.org/10.1016/S0005-1098(01)00114-5 +Mahyar Fazlyab,Optimal network design for synchronization of coupled oscillators.,2017,84,Automatica,,db/journals/automatica/automatica84.html#FazlyabDP17,https://doi.org/10.1016/j.automatica.2017.07.005 +Altug Iftar,Contractible controller design and optimal control with state and input inclusion.,1990,26,Automatica,3,db/journals/automatica/automatica26.html#IftarO90,https://doi.org/10.1016/0005-1098(90)90031-C +Michael A. Demetriou,Design of consensus and adaptive consensus filters for distributed parameter systems.,2010,46,Automatica,2,db/journals/automatica/automatica46.html#Demetriou10,https://doi.org/10.1016/j.automatica.2009.11.015 +Sippe G. Douma,Relations between uncertainty structures in identification for robust control.,2005,41,Automatica,3,db/journals/automatica/automatica41.html#DoumaH05,https://doi.org/10.1016/j.automatica.2004.11.005 +Karel J. Keesman,Optimal input design for model discrimination using Pontryagin's maximum principle: Application to kinetic model structures.,2014,50,Automatica,5,db/journals/automatica/automatica50.html#KeesmanW14,https://doi.org/10.1016/j.automatica.2014.03.022 +José Claudio Geromel,Optimal H2 state feedback sampled-data control design of Markov Jump Linear Systems.,2015,54,Automatica,,db/journals/automatica/automatica54.html#GeromelG15,https://doi.org/10.1016/j.automatica.2015.02.011 +T. Fliegner,Low-gain integral control of continuous-time linear systems subject to input and output nonlinearities.,2003,39,Automatica,3,db/journals/automatica/automatica39.html#FliegnerLR03,https://doi.org/10.1016/S0005-1098(02)00238-8 +Yacov Y. Haimes,Hierarchical multiobjective analysis for large-scale systems: Review and current status.,1988,24,Automatica,1,db/journals/automatica/automatica24.html#HaimesL88,https://doi.org/10.1016/0005-1098(88)90007-6 +Yizhaq Meyer,On Dubins paths to intercept a moving target.,2015,53,Automatica,,db/journals/automatica/automatica53.html#MeyerIS15,https://doi.org/10.1016/j.automatica.2014.12.039 +Huijun Gao,A new delay system approach to network-based control.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#GaoCL08,https://doi.org/10.1016/j.automatica.2007.04.020 +Navneet Kapoor,An Anti-Windup Design for Linear Systems with Input Saturation.,1998,34,Automatica,5,db/journals/automatica/automatica34.html#KapoorTD98,https://doi.org/10.1016/S0005-1098(97)00194-5 +Alireza Shabani,Book review.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#Shabani09,https://doi.org/10.1016/j.automatica.2008.12.003 +Rixat Abdursul,Nonlinear observers for perspective time-invariant linear systems.,2004,40,Automatica,3,db/journals/automatica/automatica40.html#AbdursulIG04,https://doi.org/10.1016/j.automatica.2003.10.017 +Hui Tian,Stabilization of k-valued logical control networks by open-loop control via the reverse-transfer method.,2017,83,Automatica,,db/journals/automatica/automatica83.html#TianZWH17,https://doi.org/10.1016/j.automatica.2016.12.040 +John Leventides,Global asymptotic linearisation of the pole placement map: a closed-form solution for the constant output feedback problem.,1995,31,Automatica,9,db/journals/automatica/automatica31.html#LeventidesK95,https://doi.org/10.1016/0005-1098(95)00047-Z +Guofeng Zhang 0003,Dynamical analysis of quantum linear systems driven by multi-channel multi-photon states.,2017,83,Automatica,,db/journals/automatica/automatica83.html#Zhang17a,https://doi.org/10.1016/j.automatica.2017.06.002 +Qing-Long Han,On robust stability of neutral systems with time-varying discrete delay and norm-bounded uncertainty.,2004,40,Automatica,6,db/journals/automatica/automatica40.html#Han04,https://doi.org/10.1016/j.automatica.2004.01.007 +Michael H. Chang,Adaptive switching control of LTI MIMO systems using a family of controllers approach.,1999,35,Automatica,3,db/journals/automatica/automatica35.html#ChangD99,https://doi.org/10.1016/S0005-1098(98)00195-2 +Pierre Cartigny,On a sufficient transversality condition for infinite horizon optimal control problems.,2003,39,Automatica,6,db/journals/automatica/automatica39.html#CartignyM03,https://doi.org/10.1016/S0005-1098(03)00060-8 +Ondrej Straka,Truncation nonlinear filters for state estimation with nonlinear inequality constraints.,2012,48,Automatica,2,db/journals/automatica/automatica48.html#StrakaDS12,https://doi.org/10.1016/j.automatica.2011.11.002 +Tayfun çimen,Nonlinear optimal tracking control with application to super-tankers for autopilot design.,2004,40,Automatica,11,db/journals/automatica/automatica40.html#CimenB04,https://doi.org/10.1016/j.automatica.2004.05.015 +Harvey H. Happ,Future computer technology for large power system simulation.,1979,15,Automatica,6,db/journals/automatica/automatica15.html#HappPW79,https://doi.org/10.1016/0005-1098(79)90030-X +L. Qiu,"Correction to ""A Unified Approach for the Stability Robustness of Polynomials in a Convex Set"".",1997,33,Automatica,10,db/journals/automatica/automatica33.html#QiuD97,https://doi.org/10.1016/S0005-1098(97)00156-8 +Luc Loron,Tuning of PID controllers by the non-symmetrical optimum method.,1997,33,Automatica,1,db/journals/automatica/automatica33.html#Loron97,https://doi.org/10.1016/S0005-1098(96)00135-5 +Attaullah Y. Memon,Output regulation of nonlinear systems using conditional servocompensators.,2010,46,Automatica,7,db/journals/automatica/automatica46.html#MemonK10,https://doi.org/10.1016/j.automatica.2010.03.015 +Daniel E. Miller,A tradeoff between period and order of linear periodic stabilizing compensators.,1996,32,Automatica,5,db/journals/automatica/automatica32.html#Miller96,https://doi.org/10.1016/0005-1098(95)00200-6 +Hiroshi Ito 0001,Capability and limitation of max- and sum-type construction of Lyapunov functions for networks of iISS systems.,2012,48,Automatica,6,db/journals/automatica/automatica48.html#ItoDW12,https://doi.org/10.1016/j.automatica.2012.03.018 +Zhengtao Ding,Asymptotic rejection of finite frequency modes of general periodic disturbances in output feedback nonlinear systems.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#Ding08,https://doi.org/10.1016/j.automatica.2008.02.005 +Dietmar Bauer,Analysis of the asymptotic properties of the MOESP type of subspace algorithms.,2000,36,Automatica,4,db/journals/automatica/automatica36.html#BauerJ00,https://doi.org/10.1016/S0005-1098(99)00174-0 +Feng Lin 0001,N-diagnosability for active on-line diagnosis in discrete event systems.,2017,83,Automatica,,db/journals/automatica/automatica83.html#LinWCHS17,https://doi.org/10.1016/j.automatica.2017.06.004 +Alberto Bemporad,"Corrigendum to: ""The explicit linear quadratic regulator for constrained systems"" [Automatica 38(1) (2002) 3-20].",2003,39,Automatica,10,db/journals/automatica/automatica39.html#BemporadMDP03,https://doi.org/10.1016/S0005-1098(03)00190-0 +Robert Schmid,"Comments on ""Robust optimal design and convergence properties analysis of iterative learning control approaches"" and ""On the P-type and Newton-type ILC schemes for dynamic systems with non-affine input factors"".",2007,43,Automatica,9,db/journals/automatica/automatica43.html#Schmid07,https://doi.org/10.1016/j.automatica.2007.02.007 +Yufeng Chen,Design of a maximally permissive liveness-enforcing supervisor with a compressed supervisory structure for flexible manufacturing systems.,2011,47,Automatica,5,db/journals/automatica/automatica47.html#ChenL11,https://doi.org/10.1016/j.automatica.2011.01.070 +Irwin W. Sandberg,Steady-state errors in discrete-time control systems.,1993,29,Automatica,2,db/journals/automatica/automatica29.html#SandbergX93,https://doi.org/10.1016/0005-1098(93)90150-R +Cheng-Jyi Mao,Decentralized output tracking for linear uncertain interconnected systems.,1995,31,Automatica,1,db/journals/automatica/automatica31.html#MaoY95,https://doi.org/10.1016/0005-1098(94)E0051-I +Jacob Roll,Piecewise linear solution paths with application to direct weight optimization.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#Roll08,https://doi.org/10.1016/j.automatica.2008.03.020 +Juan C. Agüero,Identifiability of errors in variables dynamic systems.,2008,44,Automatica,2,db/journals/automatica/automatica44.html#AgueroG08,https://doi.org/10.1016/j.automatica.2007.06.011 +Taha Boukhobza,Partial state observability recovering for linear systems by additional sensor implementation.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#BoukhobzaHS14,https://doi.org/10.1016/j.automatica.2013.12.003 +Yuan-Qing Wu,An input-based triggering approach to leader-following problems.,2017,75,Automatica,,db/journals/automatica/automatica75.html#WuMXLSW17,https://doi.org/10.1016/j.automatica.2016.09.040 +Kin Cheong Sou,Controller reduction via minimum rank matrix approximation.,2012,48,Automatica,6,db/journals/automatica/automatica48.html#SouR12,https://doi.org/10.1016/j.automatica.2012.03.011 +ShouGuang Wang,"Comments on ""Liveness of an extended S3PR"" [Automatica 46 (2010) 1008-1018].",2014,50,Automatica,8,db/journals/automatica/automatica50.html#WangL14,https://doi.org/10.1016/j.automatica.2014.05.034 +Leonardo P. M. Santoro,Computation of minimal diagnosis bases of Discrete-Event Systems using verifiers.,2017,77,Automatica,,db/journals/automatica/automatica77.html#SantoroMB17,https://doi.org/10.1016/j.automatica.2016.11.026 +Valery A. Ugrinovskii,Distributed robust filtering with Hinfinity consensus of estimates.,2011,47,Automatica,1,db/journals/automatica/automatica47.html#Ugrinovskii11,https://doi.org/10.1016/j.automatica.2010.10.002 +Marcello Farina,Model predictive control of linear systems with multiplicative unbounded uncertainty and chance constraints.,2016,70,Automatica,,db/journals/automatica/automatica70.html#FarinaS16,https://doi.org/10.1016/j.automatica.2016.04.008 +Lixian Zhang,Delay-range-dependent control synthesis for time-delay systems with actuator saturation.,2008,44,Automatica,10,db/journals/automatica/automatica44.html#ZhangBH08,https://doi.org/10.1016/j.automatica.2008.03.009 +Tytus Wojtara,Human-robot collaboration in precise positioning of a three-dimensional object.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#WojtaraUMSSFK09,https://doi.org/10.1016/j.automatica.2008.08.021 +J. William Helton,Conditions for stabilization of the tokamak plasma vertical instability using only a massless plasma analysis.,2010,46,Automatica,11,db/journals/automatica/automatica46.html#HeltonMW10,https://doi.org/10.1016/j.automatica.2010.06.051 +Yang Liu 0040,Function perturbations on singular Boolean networks.,2017,84,Automatica,,db/journals/automatica/automatica84.html#LiuLCC17,https://doi.org/10.1016/j.automatica.2017.06.035 +Torsten Söderström,Accuracy analysis of time domain maximum likelihood method and sample maximum likelihood method for errors-in-variables and output error identification.,2010,46,Automatica,4,db/journals/automatica/automatica46.html#SoderstromHSP10,https://doi.org/10.1016/j.automatica.2010.01.026 +Claudio Maffezzoni,Structural parameter estimation in power systems.,1981,17,Automatica,2,db/journals/automatica/automatica17.html#MaffezzoniM81,https://doi.org/10.1016/0005-1098(81)90046-7 +Xi-Ren Cao,A unified approach to Markov decision problems and performance sensitivity analysis with discounted and average criteria: multichain cases.,2004,40,Automatica,10,db/journals/automatica/automatica40.html#CaoG04,https://doi.org/10.1016/j.automatica.2004.05.003 +Jinhui Zhang,Output tracking control of networked control systems via delay compensation controllers.,2015,57,Automatica,,db/journals/automatica/automatica57.html#ZhangLS15,https://doi.org/10.1016/j.automatica.2015.04.006 +Lina Sela Perelman,Sensor placement for fault location identification in water networks: A minimum test cover approach.,2016,72,Automatica,,db/journals/automatica/automatica72.html#PerelmanAKA16,https://doi.org/10.1016/j.automatica.2016.06.005 +Pedro Pereira,Leader following trajectory planning: A trailer-like approach.,2017,75,Automatica,,db/journals/automatica/automatica75.html#PereiraCCSO17,https://doi.org/10.1016/j.automatica.2016.09.001 +Haidong Yuan,Reachable set of open quantum dynamics for a single spin in Markovian environment.,2013,49,Automatica,4,db/journals/automatica/automatica49.html#Yuan13,https://doi.org/10.1016/j.automatica.2013.01.005 +Alexey S. Matveev,A method for reactive navigation of nonholonomic under-actuated robots in maze-like environments.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#MatveevHS13,https://doi.org/10.1016/j.automatica.2013.01.046 +Renyuan Zhang,Supervisor localization of discrete-event systems under partial observation.,2017,81,Automatica,,db/journals/automatica/automatica81.html#ZhangCW17,https://doi.org/10.1016/j.automatica.2017.03.018 +Michel Verhaegen,Application of a subspace model identification technique to identify LTI systems operating in closed-loop.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#Verhaegen93,https://doi.org/10.1016/0005-1098(93)90104-2 +Da-Yan Liu,Non-asymptotic fractional order differentiator for a class of fractional order linear systems.,2017,78,Automatica,,db/journals/automatica/automatica78.html#LiuZBL17,https://doi.org/10.1016/j.automatica.2016.12.017 +Francisco Gordillo,Hopf bifurcation in indirect field-oriented control of induction motors.,2002,38,Automatica,5,db/journals/automatica/automatica38.html#GordilloSOA02,https://doi.org/10.1016/S0005-1098(01)00274-6 +Stephen L. Campbell,Auxiliary signal design for rapid multi-model identification using optimization.,2002,38,Automatica,8,db/journals/automatica/automatica38.html#CampbellHN02,https://doi.org/10.1016/S0005-1098(02)00040-7 +Zhiyun Lin,Scheduling parallel Kalman filters for multiple processes.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#LinW13,https://doi.org/10.1016/j.automatica.2012.09.011 +Jinhui Zhang,Extended sliding mode observer based control for Markovian jump linear systems with disturbances.,2016,70,Automatica,,db/journals/automatica/automatica70.html#ZhangSL16,https://doi.org/10.1016/j.automatica.2016.03.020 +Eric Walter,Qualitative and quantitative experiment design for phenomenological models - A survey.,1990,26,Automatica,2,db/journals/automatica/automatica26.html#WalterP90,https://doi.org/10.1016/0005-1098(90)90116-Y +Klaus Becker,Two level attitude control for a television and broadcasting satellite.,1977,13,Automatica,6,db/journals/automatica/automatica13.html#Becker77,https://doi.org/10.1016/0005-1098(77)90080-2 +Moisés Bonilla Estrada,Structural matrix minimization algorithm for implicit descriptions.,1997,33,Automatica,4,db/journals/automatica/automatica33.html#EstradaM97,https://doi.org/10.1016/S0005-1098(96)00215-4 +Moustapha Pemy,Optimal algorithms for trading large positions.,2012,48,Automatica,7,db/journals/automatica/automatica48.html#Pemy12,https://doi.org/10.1016/j.automatica.2012.04.011 +Mohammad Saleh Tavazoei,On type number concept in fractional-order systems.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#Tavazoei13,https://doi.org/10.1016/j.automatica.2012.09.022 +Xu-Guang Li,Invariance properties for a class of quasipolynomials.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#LiNCWC14,https://doi.org/10.1016/j.automatica.2013.12.007 +Rodolphe Sepulchre,Integrator forwarding: A new recursive nonlinear robust design.,1997,33,Automatica,5,db/journals/automatica/automatica33.html#SepulchreJK97,https://doi.org/10.1016/S0005-1098(96)00249-X +Csilla Bányász,Continuous-time self-tuning control volume 1 - Design : P. J. Gawthrop.,1989,25,Automatica,3,db/journals/automatica/automatica25.html#Banyasz89,https://doi.org/10.1016/0005-1098(89)90021-6 +Deyuan Meng,On iterative learning algorithms for the formation control of nonlinear multi-agent systems.,2014,50,Automatica,1,db/journals/automatica/automatica50.html#MengJDZ14,https://doi.org/10.1016/j.automatica.2013.11.009 +Jeroen van Helvoort,Direct data-driven recursive controller unfalsification with analytic update.,2007,43,Automatica,12,db/journals/automatica/automatica43.html#HelvoortJS07,https://doi.org/10.1016/j.automatica.2007.04.026 +Seong-Jin Park,Decentralized supervisory control of discrete event systems with communication delays based on conjunctive and permissive decision structures.,2007,43,Automatica,4,db/journals/automatica/automatica43.html#ParkC07a,https://doi.org/10.1016/j.automatica.2006.10.016 +Xingwen Liu,Dynamics of delayed switched nonlinear systems with applications to cascade systems.,2018,87,Automatica,,db/journals/automatica/automatica87.html#LiuZZ18,https://doi.org/10.1016/j.automatica.2017.10.012 +Alberto Tesi,Design criteria for robust strict positive realness in adaptive schemes.,1994,30,Automatica,4,db/journals/automatica/automatica30.html#TesiVZ94,https://doi.org/10.1016/0005-1098(94)90153-8 +Vito Cerone,Parameter bounds evaluation of Wiener models with noninvertible polynomial nonlinearities.,2006,42,Automatica,10,db/journals/automatica/automatica42.html#CeroneR06,https://doi.org/10.1016/j.automatica.2006.05.010 +Richard Oberdieck,Explicit model predictive control: A connected-graph approach.,2017,76,Automatica,,db/journals/automatica/automatica76.html#OberdieckDP17,https://doi.org/10.1016/j.automatica.2016.10.005 +Hao Ying,General analytical structure of typical fuzzy controllers and their limiting structure theorems.,1993,29,Automatica,4,db/journals/automatica/automatica29.html#Ying93a,https://doi.org/10.1016/0005-1098(93)90115-A +Zhiqiang Zuo,Fault tolerant control for singular systems with actuator saturation and nonlinear perturbation.,2010,46,Automatica,3,db/journals/automatica/automatica46.html#ZuoHW10,https://doi.org/10.1016/j.automatica.2010.01.024 +Wei Lin 0001,Solutions to the output regulation problem of linear singular systems.,1996,32,Automatica,12,db/journals/automatica/automatica32.html#LinD96,https://doi.org/10.1016/S0005-1098(96)80008-2 +Masami Saeki,Fixed structure PID controller design for standard Hinfinity control problem.,2006,42,Automatica,1,db/journals/automatica/automatica42.html#Saeki06,https://doi.org/10.1016/j.automatica.2005.07.006 +Theodor D. Popescu,Analysis and simulation of strong earthquake ground motions using ARMA models.,1990,26,Automatica,4,db/journals/automatica/automatica26.html#PopescuD90,https://doi.org/10.1016/0005-1098(90)90049-N +Taha Boukhobza,Observability analysis for structured bilinear systems: A graph-theoretic approach.,2007,43,Automatica,11,db/journals/automatica/automatica43.html#BoukhobzaH07,https://doi.org/10.1016/j.automatica.2007.03.010 +Angelo Alessandri,Moving-horizon estimation with guaranteed robustness for discrete-time linear systems and measurements subject to outliers.,2016,67,Automatica,,db/journals/automatica/automatica67.html#AlessandriA16,https://doi.org/10.1016/j.automatica.2016.01.015 +Paolo Magni,A stabilizing model-based predictive control algorithm for nonlinear systems.,2001,37,Automatica,9,db/journals/automatica/automatica37.html#MagniNMS01,https://doi.org/10.1016/S0005-1098(01)00083-8 +Md. Suruz Miah,Generalized non-autonomous metric optimization for area coverage problems with mobile autonomous agents.,2017,80,Automatica,,db/journals/automatica/automatica80.html#MiahPFS17,https://doi.org/10.1016/j.automatica.2017.02.044 +Lotfi Belkoura,Parameters estimation of systems with delayed and structured entries.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#BelkouraRF09,https://doi.org/10.1016/j.automatica.2008.12.026 +Paulo Sérgio Pereira da Silva,On state representations of time-varying nonlinear systems.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#SilvaB09,https://doi.org/10.1016/j.automatica.2008.12.025 +Xiao Yu,Circular formation of networked dynamic unicycles by a distributed dynamic control law.,2018,89,Automatica,,db/journals/automatica/automatica89.html#YuXLF18,https://doi.org/10.1016/j.automatica.2017.11.021 +Haitao Li 0001,Output tracking control of Boolean control networks via state feedback: Constant reference signal case.,2015,59,Automatica,,db/journals/automatica/automatica59.html#LiWX15,https://doi.org/10.1016/j.automatica.2015.06.004 +Rolf Isermann,Process fault detection based on modeling and estimation methods - A survey.,1984,20,Automatica,4,db/journals/automatica/automatica20.html#Isermann84,https://doi.org/10.1016/0005-1098(84)90098-0 +András Varga,Gradient-Based Approach to Solve Optimal Periodic Output Feedback Control Problems.,1998,34,Automatica,4,db/journals/automatica/automatica34.html#VargaP98,https://doi.org/10.1016/S0005-1098(97)00214-8 +Alfred Joensen,Tracking time-varying parameters with local regression.,2000,36,Automatica,8,db/journals/automatica/automatica36.html#JoensenMNN00,https://doi.org/10.1016/S0005-1098(00)00029-7 +Graham Wheeler,A Sliding Mode Controller with Improved Adaptation Laws for the Upper Bounds on the Norm of Uncertainties.,1998,34,Automatica,12,db/journals/automatica/automatica34.html#WheelerSS98,https://doi.org/10.1016/S0005-1098(98)80024-1 +Amir Shahzad,An efficient algorithm for the solution of a coupled Sylvester equation appearing in descriptor systems.,2011,47,Automatica,1,db/journals/automatica/automatica47.html#ShahzadJKC11,https://doi.org/10.1016/j.automatica.2010.10.038 +Ai Hui Tan,Direct synthesis of pseudo-random ternary perturbation signals with harmonic multiples of two and three suppressed.,2013,49,Automatica,10,db/journals/automatica/automatica49.html#Tan13,https://doi.org/10.1016/j.automatica.2013.07.009 +Hao Lei,Universal adaptive control of nonlinear systems with unknown growth rate by output feedback.,2006,42,Automatica,10,db/journals/automatica/automatica42.html#LeiL06,https://doi.org/10.1016/j.automatica.2006.05.006 +Makan Fardad,Design of optimal controllers for spatially invariant systems with finite communication speed.,2011,47,Automatica,5,db/journals/automatica/automatica47.html#FardadJ11,https://doi.org/10.1016/j.automatica.2011.01.032 +Anne Van Mulders,Identification of systems with localised nonlinearity: From state-space to block-structured models.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#MuldersSV13,https://doi.org/10.1016/j.automatica.2013.01.052 +Kemin Zhou,Relative/multiplicative model reduction for unstable and non-minimum-phase systems.,1995,31,Automatica,8,db/journals/automatica/automatica31.html#Zhou95,https://doi.org/10.1016/0005-1098(95)00027-T +Andrey V. Savkin,Robust state estimation and model validation for discrete-time uncertain systems with a deterministic description of noise and uncertainty.,1998,34,Automatica,2,db/journals/automatica/automatica34.html#SavkinP98,https://doi.org/10.1016/S0005-1098(97)00188-X +Xuemin Shen,Near-optimum steady state regulators for stochastic linear weakly coupled systems.,1990,26,Automatica,5,db/journals/automatica/automatica26.html#ShenG90,https://doi.org/10.1016/0005-1098(90)90010-F +Giorgio Bartolini,Simplex sliding mode control of multi-input systems with chattering reduction and mono-directional actuators.,2011,47,Automatica,11,db/journals/automatica/automatica47.html#BartoliniPZ11,https://doi.org/10.1016/j.automatica.2011.08.011 +Marco C. Campi,Virtual reference feedback tuning: a direct method for the design of feedback controllers.,2002,38,Automatica,8,db/journals/automatica/automatica38.html#CampiLS02,https://doi.org/10.1016/S0005-1098(02)00032-8 +Zhihua Qu,An iterative learning algorithm for boundary control of a stretched moving string.,2002,38,Automatica,5,db/journals/automatica/automatica38.html#Qu02,https://doi.org/10.1016/S0005-1098(01)00266-7 +Dong Sun,Position synchronization of multiple motion axes with adaptive coupling control.,2003,39,Automatica,6,db/journals/automatica/automatica39.html#Sun03,https://doi.org/10.1016/S0005-1098(03)00037-2 +M. Osinuga,State-space solution to weight optimization problem in H∞ loop-shaping control.,2012,48,Automatica,3,db/journals/automatica/automatica48.html#OsinugaPL12,https://doi.org/10.1016/j.automatica.2011.11.008 +Chung-Shi Tseng,A mixed H2/H INFINITY adaptive tracking control for constrained non-holonomic systems.,2003,39,Automatica,6,db/journals/automatica/automatica39.html#TsengC03,https://doi.org/10.1016/S0005-1098(03)00038-4 +Harold Chestnut,Foreword by the honorary editors.,1963,1,Automatica,1,db/journals/automatica/automatica1.html#ChestnutT63,https://doi.org/10.1016/0005-1098(63)90002-5 +Bo-Chao Cheng,LSTF: A new scheduling policy for complex real-time tasks in multiple processor systems.,1997,33,Automatica,5,db/journals/automatica/automatica33.html#ChengSMB97,https://doi.org/10.1016/S0005-1098(96)00245-2 +Stefan F. Graebe,Robust and adaptive control of an unknown plant: A benchmark of new format.,1994,30,Automatica,4,db/journals/automatica/automatica30.html#Graebe94,https://doi.org/10.1016/0005-1098(94)90142-2 +Tarek Raïssi,Set membership state and parameter estimation for systems described by nonlinear differential equations.,2004,40,Automatica,10,db/journals/automatica/automatica40.html#RaissiRC04,https://doi.org/10.1016/j.automatica.2004.05.006 +Yongfang Liu,Appointed-time consensus: Accurate and practical designs.,2018,89,Automatica,,db/journals/automatica/automatica89.html#LiuZRC18,https://doi.org/10.1016/j.automatica.2017.12.030 +Yusun Fu,Robust Hinfinity control of uncertain nonlinear systems.,2006,42,Automatica,9,db/journals/automatica/automatica42.html#FuTS06,https://doi.org/10.1016/j.automatica.2006.02.026 +Haining Yu,Perturbation analysis for production control and optimization of manufacturing systems.,2004,40,Automatica,6,db/journals/automatica/automatica40.html#YuC04,https://doi.org/10.1016/j.automatica.2004.02.001 +J. C. Lozier,The servo system for telstar antenna positioning.,1965,2,Automatica,3,db/journals/automatica/automatica2.html#LozierNI65,https://doi.org/10.1016/0005-1098(65)90006-3 +S. B. Phadke,Comments on 'Sliding mode control of linear systems with mismatched uncertainties'.,1996,32,Automatica,2,db/journals/automatica/automatica32.html#Phadke96,https://doi.org/10.1016/0005-1098(95)00137-9 +Radhakant Padhi,Adaptive-critic based optimal neuro control synthesis for distributed parameter systems.,2001,37,Automatica,8,db/journals/automatica/automatica37.html#PadhiBR01,https://doi.org/10.1016/S0005-1098(01)00093-0 +Karl Kunisch,A review of some recent results on the output least squares formulation of parameter estimation problems.,1988,24,Automatica,4,db/journals/automatica/automatica24.html#Kunisch88,https://doi.org/10.1016/0005-1098(88)90097-0 +Tara Baldacchino,Computational system identification for Bayesian NARMAX modelling.,2013,49,Automatica,9,db/journals/automatica/automatica49.html#BaldacchinoAK13,https://doi.org/10.1016/j.automatica.2013.05.023 +Min-Sen Chiu,A methodology for sequential design of robust decentralized control systems.,1992,28,Automatica,5,db/journals/automatica/automatica28.html#ChiuA92,https://doi.org/10.1016/0005-1098(92)90153-7 +Younghee Han,Hammerstein system identification using nuclear norm minimization.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#HanC12,https://doi.org/10.1016/j.automatica.2012.06.013 +André J. Fossard,Outils et modèles mathématiques pour l'automatique. l'analyse de systemès et le traitement du signal : Edited by I. D. Landau.,1983,19,Automatica,1,db/journals/automatica/automatica19.html#Fossard83,https://doi.org/10.1016/0005-1098(83)90081-X +Lucy Y. Pao,Multi-input shaping design for vibration reduction.,1999,35,Automatica,1,db/journals/automatica/automatica35.html#Pao99,https://doi.org/10.1016/S0005-1098(98)00124-1 +Bryn Ll. Jones,When is the discretization of a spatially distributed system good enough for control?,2010,46,Automatica,9,db/journals/automatica/automatica46.html#JonesK10,https://doi.org/10.1016/j.automatica.2010.06.001 +José Maria Azorín,Generalized control method by state convergence for teleoperation systems with time delay.,2004,40,Automatica,9,db/journals/automatica/automatica40.html#AzorinRAF04,https://doi.org/10.1016/j.automatica.2004.04.001 +Yiannis Kantaros,Distributed coverage control for concave areas by a heterogeneous Robot-Swarm with visibility sensing constraints.,2015,53,Automatica,,db/journals/automatica/automatica53.html#KantarosTT15,https://doi.org/10.1016/j.automatica.2014.12.034 +Yong Wang,Bifurcation control of rotating stall with actuator magnitude and rate limits: Part I - model reduction and qualitative dynamics.,2002,38,Automatica,4,db/journals/automatica/automatica38.html#WangM02,https://doi.org/10.1016/S0005-1098(01)00240-0 +Antonello Baccoli,Boundary control of coupled reaction-diffusion processes with constant parameters.,2015,54,Automatica,,db/journals/automatica/automatica54.html#BaccoliPO15,https://doi.org/10.1016/j.automatica.2015.01.032 +Luca Schenato 0001,Average TimeSynch: A consensus-based protocol for clock synchronization in wireless sensor networks.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#SchenatoF11,https://doi.org/10.1016/j.automatica.2011.06.012 +Puduru Viswanadha Reddy,Pareto optimality in infinite horizon linear quadratic differential games.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#ReddyE13,https://doi.org/10.1016/j.automatica.2013.03.004 +P. M. Mäkilä,On identification of stable systems and optimal approximation.,1991,27,Automatica,4,db/journals/automatica/automatica27.html#Makila91,https://doi.org/10.1016/0005-1098(91)90057-9 +D. Kraft,Optimal estimation with an introduction to stochastic control theory : Frank L. Lewis.,1987,23,Automatica,6,db/journals/automatica/automatica23.html#Kraft87,https://doi.org/10.1016/0005-1098(87)90047-1 +Christopher Edwards,A practical method for the design of sliding mode controllers using linear matrix inequalities.,2004,40,Automatica,10,db/journals/automatica/automatica40.html#Edwards04,https://doi.org/10.1016/j.automatica.2004.05.004 +Jin-Liang Shao,A novel analysis on the efficiency of hierarchy among leader-following systems.,2016,73,Automatica,,db/journals/automatica/automatica73.html#ShaoQBHZ16,https://doi.org/10.1016/j.automatica.2016.07.007 +Héctor Ríos,Nonlinear impulsive systems: 2D stability analysis approach.,2017,80,Automatica,,db/journals/automatica/automatica80.html#RiosHE17,https://doi.org/10.1016/j.automatica.2017.01.010 +Fabrice Dusonchet,Optimal hysteresis for a class of deterministic deteriorating two-armed Bandit problem with switching costs.,2003,39,Automatica,11,db/journals/automatica/automatica39.html#DusonchetH03,https://doi.org/10.1016/S0005-1098(03)00203-6 +Ragnar Wallin,"Extensions to ""Output prediction under scarce data operation: control applications"".",2001,37,Automatica,12,db/journals/automatica/automatica37.html#WallinIN01,https://doi.org/10.1016/S0005-1098(01)00161-3 +Pradip K. Sinha,Digital control of an electromagnetic suspension system using the TMS-32020 signal processor.,1991,27,Automatica,6,db/journals/automatica/automatica27.html#SinhaPA91,https://doi.org/10.1016/0005-1098(91)90142-O +Matthias Lorenzen,Stochastic MPC with offline uncertainty sampling.,2017,81,Automatica,,db/journals/automatica/automatica81.html#LorenzenDTA17,https://doi.org/10.1016/j.automatica.2017.03.031 +Gene F. Franklin,Digital control system design : Gene H. Hostetter.,1990,26,Automatica,6,db/journals/automatica/automatica26.html#Franklin90,https://doi.org/10.1016/0005-1098(90)90088-Y +Chuan-Ke Zhang,An extended reciprocally convex matrix inequality for stability analysis of systems with time-varying delay.,2017,85,Automatica,,db/journals/automatica/automatica85.html#Zhang0JWW17,https://doi.org/10.1016/j.automatica.2017.07.056 +S. B. Phadke,Comments on 'on compensation for neglected actuator dynamics'.,1996,32,Automatica,1,db/journals/automatica/automatica32.html#PhadkeK96,https://doi.org/10.1016/0005-1098(95)00083-6 +Jinglai Shen,Shape restricted smoothing splines via constrained optimal control and nonsmooth Newton's methods.,2015,53,Automatica,,db/journals/automatica/automatica53.html#ShenL15a,https://doi.org/10.1016/j.automatica.2014.12.040 +Pierre-Alexandre Bliman,Controlled linear system with delayed relay output under impulse random disturbances.,2003,39,Automatica,8,db/journals/automatica/automatica39.html#BlimanPS03,https://doi.org/10.1016/S0005-1098(03)00116-X +Haibo Du,"Authors' reply to ""Comment on 'Attitude synchronization control for a group of flexible spacecraft""' [Automatica 50 (2014) 646-651].",2017,83,Automatica,,db/journals/automatica/automatica83.html#DuL17,https://doi.org/10.1016/j.automatica.2017.04.013 +Shihong Ding,Second-order sliding mode controller design subject to mismatched term.,2017,77,Automatica,,db/journals/automatica/automatica77.html#DingL17,https://doi.org/10.1016/j.automatica.2016.07.038 +Yu-Ping Tian,Exponential stabilization of nonholonomic dynamic systems by smooth time-varying control.,2002,38,Automatica,7,db/journals/automatica/automatica38.html#TianL02,https://doi.org/10.1016/S0005-1098(01)00303-X +Zhongwei Lin,Stabilization of interconnected nonlinear stochastic Markovian jump systems via dissipativity approach.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#LinLZN11,https://doi.org/10.1016/j.automatica.2011.09.008 +Jianquan Lu,A unified synchronization criterion for impulsive dynamical networks.,2010,46,Automatica,7,db/journals/automatica/automatica46.html#LuHC10,https://doi.org/10.1016/j.automatica.2010.04.005 +Arun Gupta,A novel approach to multiparametric quadratic programming.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#GuptaBN11,https://doi.org/10.1016/j.automatica.2011.06.019 +Yunfei Xu,Efficient Bayesian spatial prediction with mobile sensor networks using Gaussian Markov random fields.,2013,49,Automatica,12,db/journals/automatica/automatica49.html#XuCDM13,https://doi.org/10.1016/j.automatica.2013.09.008 +Jun Moon,Minimax control over unreliable communication channels.,2015,59,Automatica,,db/journals/automatica/automatica59.html#MoonB15,https://doi.org/10.1016/j.automatica.2015.06.019 +Adel H. Eltimsahy,An optimal gas-fired heating system.,1969,5,Automatica,6,db/journals/automatica/automatica5.html#EltimsahyK69,https://doi.org/10.1016/0005-1098(69)90087-9 +Boris T. Polyak,Ellipsoidal parameter or state estimation under model uncertainty.,2004,40,Automatica,7,db/journals/automatica/automatica40.html#PolyakNDW04,https://doi.org/10.1016/j.automatica.2004.02.014 +T. T. Tay,Enhancement of fixed controllers via adaptive-Q disturbance estimate feedback.,1991,27,Automatica,1,db/journals/automatica/automatica27.html#TayM91,https://doi.org/10.1016/0005-1098(91)90005-M +Alessandra Buratto,Advertising channel selection in a segmented market.,2006,42,Automatica,8,db/journals/automatica/automatica42.html#BurattoGV06,https://doi.org/10.1016/j.automatica.2006.03.015 +Henryk Rubinstein,Smoothing properties of discrete-time zero-lag Kalman filter.,1978,14,Automatica,4,db/journals/automatica/automatica14.html#Rubinstein78,https://doi.org/10.1016/0005-1098(78)90038-9 +Ioan Doré Landau,An output error recursive algorithm for unbiased identification in closed loop.,1997,33,Automatica,5,db/journals/automatica/automatica33.html#LandauK97,https://doi.org/10.1016/S0005-1098(96)00223-3 +José M. Bravo,An algorithm for bounded-error identification of nonlinear systems based on DC functions.,2008,44,Automatica,2,db/journals/automatica/automatica44.html#BravoARC08,https://doi.org/10.1016/j.automatica.2007.05.026 +Xiaohua Xia,Geometric characterization on the solvability of regulator equations.,2008,44,Automatica,2,db/journals/automatica/automatica44.html#XiaZ08,https://doi.org/10.1016/j.automatica.2007.05.017 +Jan Maximilian Montenbruck,Asymptotic stabilization of submanifolds embedded in Riemannian manifolds.,2016,74,Automatica,,db/journals/automatica/automatica74.html#MontenbruckA16,https://doi.org/10.1016/j.automatica.2016.07.026 +Peter Dorato,Theoretical developments in discrete-time control.,1983,19,Automatica,4,db/journals/automatica/automatica19.html#Dorato83,https://doi.org/10.1016/0005-1098(83)90053-5 +Nuno M. C. De Oliveira,An extension of Newton-type algorithms for nonlinear process control.,1995,31,Automatica,2,db/journals/automatica/automatica31.html#OliveiraB95,https://doi.org/10.1016/0005-1098(94)00086-X +Rui Ru Chen,A robust adaptive congestion control strategy for large scale networks with differentiated services traffic.,2011,47,Automatica,1,db/journals/automatica/automatica47.html#ChenK11,https://doi.org/10.1016/j.automatica.2010.08.019 +Cristiano Maria Verrelli,A larger family of nonlinear systems for the repetitive learning control.,2016,71,Automatica,,db/journals/automatica/automatica71.html#Verrelli16,https://doi.org/10.1016/j.automatica.2016.04.021 +Nathan van de Wouw,Tracking and synchronisation for a class of PWA systems.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#WouwP08,https://doi.org/10.1016/j.automatica.2008.04.015 +Shu Li,Sample path and performance homogeneity of discrete event dynamic systems.,1989,25,Automatica,6,db/journals/automatica/automatica25.html#LiH89,https://doi.org/10.1016/0005-1098(89)90057-5 +Herbert J. A. F. Tulleken,Grey-box modelling and identification using physical knowledge and bayesian techniques.,1993,29,Automatica,2,db/journals/automatica/automatica29.html#Tulleken93,https://doi.org/10.1016/0005-1098(93)90124-C +Guanyu Lai,Adaptive compensation for infinite number of actuator failures based on tuning function approach.,2018,87,Automatica,,db/journals/automatica/automatica87.html#LaiWLZCX18,https://doi.org/10.1016/j.automatica.2017.07.014 +Pasquale Lucibello,Robust stabilization via iterative state steering with an application to chained-form systems.,2001,37,Automatica,1,db/journals/automatica/automatica37.html#LucibelloO01,https://doi.org/10.1016/S0005-1098(00)00124-2 +George A. Bekey,Identification of biological systems: a survey.,1978,14,Automatica,1,db/journals/automatica/automatica14.html#BekeyB78,https://doi.org/10.1016/0005-1098(78)90075-4 +Alexey S. Matveev,Navigation of a unicycle-like mobile robot for environmental extremum seeking.,2011,47,Automatica,1,db/journals/automatica/automatica47.html#MatveevTS11,https://doi.org/10.1016/j.automatica.2010.10.003 +Zheng Guo Li,Switched controllers and their applications in bilinear systems.,2001,37,Automatica,3,db/journals/automatica/automatica37.html#LiWS01,https://doi.org/10.1016/S0005-1098(00)00172-2 +Hanlei Wang,Passivity based synchronization for networked robotic systems with uncertain kinematics and dynamics.,2013,49,Automatica,3,db/journals/automatica/automatica49.html#Wang13,https://doi.org/10.1016/j.automatica.2012.11.003 +Heikki N. Koivo,Digital control of dynamic systems: G. F. Franklin and J. D. Powell.,1983,19,Automatica,4,db/journals/automatica/automatica19.html#Koivo83,https://doi.org/10.1016/0005-1098(83)90065-1 +Manolis A. Christodoulou,Decoupling in the design and synthesis of singular systems.,1986,22,Automatica,2,db/journals/automatica/automatica22.html#Christodoulou86,https://doi.org/10.1016/0005-1098(86)90088-9 +Jun Shen 0002,Improved results on H8734* model reduction for continuous-time linear systems over finite frequency ranges.,2015,53,Automatica,,db/journals/automatica/automatica53.html#ShenL15,https://doi.org/10.1016/j.automatica.2014.12.029 +B. D. Coller,Suppression of bursting.,1997,33,Automatica,1,db/journals/automatica/automatica33.html#CollerH97,https://doi.org/10.1016/S0005-1098(96)00137-9 +Jun Shang,Recursive transformed component statistical analysis for incipient fault detection.,2017,80,Automatica,,db/journals/automatica/automatica80.html#ShangCJZ17,https://doi.org/10.1016/j.automatica.2017.02.028 +Sumeetpal S. Singh,Simulation-based optimal sensor scheduling with application to observer trajectory planning.,2007,43,Automatica,5,db/journals/automatica/automatica43.html#SinghKVDE07,https://doi.org/10.1016/j.automatica.2006.11.019 +Yan-Jun Liu,Adaptive control-based Barrier Lyapunov Functions for a class of stochastic nonlinear systems with full state constraints.,2018,87,Automatica,,db/journals/automatica/automatica87.html#LiuLTCCL18,https://doi.org/10.1016/j.automatica.2017.07.028 +Jun Zhou,Implementing the Hamiltonian test for the Hinfinity norm in linear continuous-time periodic systems.,2006,42,Automatica,1,db/journals/automatica/automatica42.html#Zhou06,https://doi.org/10.1016/j.automatica.2005.09.001 +Vladimir Dombrovskii,Model predictive control of constrained Markovian jump nonlinear stochastic systems and portfolio optimization under market frictions.,2018,87,Automatica,,db/journals/automatica/automatica87.html#DombrovskiiOS18,https://doi.org/10.1016/j.automatica.2017.09.018 +Mark W. Spong,Robust microprocessor control of robot manipulators.,1987,23,Automatica,3,db/journals/automatica/automatica23.html#SpongTK87,https://doi.org/10.1016/0005-1098(87)90010-0 +Dimitri Peaucelle,Robust observed-state feedback design for discrete-time systems rational in the uncertainties.,2017,76,Automatica,,db/journals/automatica/automatica76.html#PeaucelleEH17,https://doi.org/10.1016/j.automatica.2016.10.003 +Marco Tulio Angulo,Nonlinear extremum seeking inspired on second order sliding modes.,2015,57,Automatica,,db/journals/automatica/automatica57.html#Angulo15,https://doi.org/10.1016/j.automatica.2015.04.001 +Yingbo Zhao,On disturbance propagation in leader-follower systems with limited leader information.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#ZhaoMG14,https://doi.org/10.1016/j.automatica.2013.11.029 +Chengshan Xiao,Identification and model reduction of 2-D systems via the extended impulse response Gramians.,1998,34,Automatica,1,db/journals/automatica/automatica34.html#XiaoSLV98,https://doi.org/10.1016/S0005-1098(97)00168-4 +Delphine Bresch-Pietri,Estimation for decentralized safety control under communication delay and measurement uncertainty.,2015,62,Automatica,,db/journals/automatica/automatica62.html#Bresch-PietriV15,https://doi.org/10.1016/j.automatica.2015.06.009 +Bao Wang,Stability analysis of semi-Markov switched stochastic systems.,2018,94,Automatica,,db/journals/automatica/automatica94.html#WangZ18,https://doi.org/10.1016/j.automatica.2018.04.016 +Henrik Schiøler,Stochastic stability of systems with semi-Markovian switching.,2014,50,Automatica,11,db/journals/automatica/automatica50.html#SchiolerSL14,https://doi.org/10.1016/j.automatica.2014.09.008 +Rajnikant V. Patel,Numerical computation of decentralized fixed modes.,1991,27,Automatica,2,db/journals/automatica/automatica27.html#PatelM91,https://doi.org/10.1016/0005-1098(91)90085-G +Qing-Long Han,Improved stability criteria and controller design for linear neutral systems.,2009,45,Automatica,8,db/journals/automatica/automatica45.html#Han09a,https://doi.org/10.1016/j.automatica.2009.03.019 +Alexander H. Levis,Task decomposition and allocation problems and discrete event systems.,1994,30,Automatica,2,db/journals/automatica/automatica30.html#LevisMH94,https://doi.org/10.1016/0005-1098(94)90025-6 +Javad Lavaei,A graph-theoretic method to find decentralized fixed modes of LTI systems.,2007,43,Automatica,12,db/journals/automatica/automatica43.html#LavaeiA07a,https://doi.org/10.1016/j.automatica.2007.04.019 +Jong Hae Kim,Hinfinity state feedback control for generalized continuous/discrete time-delay system.,1999,35,Automatica,8,db/journals/automatica/automatica35.html#KimP99,https://doi.org/10.1016/S0005-1098(99)00038-2 +Andrew R. Teel,A refinement of Matrosov's theorem for differential inclusions.,2016,68,Automatica,,db/journals/automatica/automatica68.html#TeelNLT16,https://doi.org/10.1016/j.automatica.2016.02.008 +Patrick C. Parks,A comparison of five algorithms for the training of CMAC memories for learning control systems.,1992,28,Automatica,5,db/journals/automatica/automatica28.html#ParksM92,https://doi.org/10.1016/0005-1098(92)90158-C +Ancai Zhang,Motion planning and tracking control for an acrobot based on a rewinding approach.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#ZhangSLW13,https://doi.org/10.1016/j.automatica.2012.10.007 +Rui Li,State feedback stabilization for probabilistic Boolean networks.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#LiYC14,https://doi.org/10.1016/j.automatica.2014.02.034 +Dong Hwan Lee,Periodically time-varying memory static output feedback control design for discrete-time LTI systems.,2015,52,Automatica,,db/journals/automatica/automatica52.html#LeeJT15,https://doi.org/10.1016/j.automatica.2014.10.119 +Mohammad Naghnaeian,Stability crossing set for systems with two scalar-delay channels.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#NaghnaeianG13,https://doi.org/10.1016/j.automatica.2013.04.025 +Zhuo Jin,Numerical methods for optimal dividend payment and investment strategies of regime-switching jump diffusion models with capital injections.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#JinYY13,https://doi.org/10.1016/j.automatica.2013.04.043 +Luis Rodrigues,Piecewise-linear Hinfinity controller synthesis with applications to inventory control of switched production systems.,2006,42,Automatica,8,db/journals/automatica/automatica42.html#RodriguesB06,https://doi.org/10.1016/j.automatica.2006.04.004 +Yulin Huang,Infinite horizon H1/Hinfinity control for stochastic systems with Markovian jumps.,2008,44,Automatica,3,db/journals/automatica/automatica44.html#HuangZF08,https://doi.org/10.1016/j.automatica.2007.07.001 +Antonio Sala 0001,Stable receding-horizon scenario predictive control for Markov-jump linear systems.,2017,86,Automatica,,db/journals/automatica/automatica86.html#SalaHA17,https://doi.org/10.1016/j.automatica.2017.07.032 +Shalabh Bhatnagar,Actor-critic algorithms for hierarchical Markov decision processes.,2006,42,Automatica,4,db/journals/automatica/automatica42.html#BhatnagarP06,https://doi.org/10.1016/j.automatica.2005.12.010 +Mathieu Pouliquen,Bounded-error identification for closed-loop systems.,2014,50,Automatica,7,db/journals/automatica/automatica50.html#PouliquenGP14,https://doi.org/10.1016/j.automatica.2014.05.001 +Joan Peuteman,Averaging techniques without requiring a fast time-varying differential equation.,2011,47,Automatica,1,db/journals/automatica/automatica47.html#PeutemanA11,https://doi.org/10.1016/j.automatica.2010.10.039 +Georg Schildbach,Linear controller design for chance constrained systems.,2015,51,Automatica,,db/journals/automatica/automatica51.html#SchildbachGM15,https://doi.org/10.1016/j.automatica.2014.10.096 +Yuhu Wu,Absolute stability of the Kirchhoff string with sector boundary control.,2014,50,Automatica,7,db/journals/automatica/automatica50.html#WuXS14,https://doi.org/10.1016/j.automatica.2014.05.006 +Jenq-Tzong H. Chan,Multivariable control system synthesis: An experimental data based numerical approach.,1994,30,Automatica,9,db/journals/automatica/automatica30.html#Chan94,https://doi.org/10.1016/0005-1098(94)90015-9 +Peter Hippe,A nonminimal representation of reduced-order observers.,1990,26,Automatica,2,db/journals/automatica/automatica26.html#Hippe90,https://doi.org/10.1016/0005-1098(90)90137-7 +Tor Steinar Schei,A method for closed loop automatic tuning of PID controllers.,1992,28,Automatica,3,db/journals/automatica/automatica28.html#Schei92,https://doi.org/10.1016/0005-1098(92)90182-F +Maximilian M. Etschmaier,Fuzzy controls for maintenance scheduling in transportation systems.,1980,16,Automatica,3,db/journals/automatica/automatica16.html#Etschmaier80,https://doi.org/10.1016/0005-1098(80)90035-7 +Pudji Astuti,A class of marked invariant subspaces with an application to algebraic Riccati equations.,2006,42,Automatica,9,db/journals/automatica/automatica42.html#AstutiW06,https://doi.org/10.1016/j.automatica.2006.04.001 +Huanshui Zhang,Linear quadratic regulation for linear time-varying systems with multiple input delays.,2006,42,Automatica,9,db/journals/automatica/automatica42.html#ZhangDX06,https://doi.org/10.1016/j.automatica.2006.04.007 +Alejandra Ferreira de Loza,Output tracking of systems subjected to perturbations and a class of actuator faults based on HOSM observation and identification.,2015,59,Automatica,,db/journals/automatica/automatica59.html#LozaCHZF15,https://doi.org/10.1016/j.automatica.2015.06.020 +Kab Seok Ko,Delays-dependent region partitioning approach for stability criterion of linear systems with multiple time-varying delays.,2018,87,Automatica,,db/journals/automatica/automatica87.html#KoLPS18,https://doi.org/10.1016/j.automatica.2017.09.003 +Jean-Pierre Babary,On-line estimation and adaptive control of bioreactors - Process measurement and control 1 : G. Bastin and D. Dochain.,1993,29,Automatica,3,db/journals/automatica/automatica29.html#Babary93,https://doi.org/10.1016/0005-1098(93)90078-8 +Bing Zhu 0004,Evolutionary game theoretic demand-side management and control for a class of networked smart grid.,2016,70,Automatica,,db/journals/automatica/automatica70.html#ZhuXW16,https://doi.org/10.1016/j.automatica.2016.03.027 +Shawn Hu,Stability robustness of networked control systems with respect to packet loss.,2007,43,Automatica,7,db/journals/automatica/automatica43.html#HuY07,https://doi.org/10.1016/j.automatica.2006.12.020 +A. Ramírez-Arias,Multiobjective hierarchical control architecture for greenhouse crop growth.,2012,48,Automatica,3,db/journals/automatica/automatica48.html#Ramirez-AriasRGB12,https://doi.org/10.1016/j.automatica.2012.01.002 +Gary G. Leininger,Author's reply to Dr. Ahson's comments.,1980,16,Automatica,6,db/journals/automatica/automatica16.html#Leininger80,https://doi.org/10.1016/0005-1098(80)90016-3 +Hui Liu 0004,Structure identification of uncertain general complex dynamical networks with time delay.,2009,45,Automatica,8,db/journals/automatica/automatica45.html#LiuLLH09,https://doi.org/10.1016/j.automatica.2009.03.022 +Jaehong Park,On the representation of sensor faults in fault detection filters.,1994,30,Automatica,11,db/journals/automatica/automatica30.html#ParkRR94,https://doi.org/10.1016/0005-1098(94)90084-1 +H. J. Ter Maat,The renovation and automation of a tandem cold rolling mill.,1982,18,Automatica,1,db/journals/automatica/automatica18.html#Maat82,https://doi.org/10.1016/0005-1098(82)90027-9 +André de Palma,Hedging global environment risks: An option based portfolio insurance.,2008,44,Automatica,6,db/journals/automatica/automatica44.html#PalmaP08,https://doi.org/10.1016/j.automatica.2008.02.002 +Nitin Sharma 0001,Predictor-based control for an uncertain Euler-Lagrange system with input delay.,2011,47,Automatica,11,db/journals/automatica/automatica47.html#SharmaBWD11,https://doi.org/10.1016/j.automatica.2011.03.016 +Laurent Bako,Analysis of a nonsmooth optimization approach to robust estimation.,2016,66,Automatica,,db/journals/automatica/automatica66.html#BakoO16,https://doi.org/10.1016/j.automatica.2015.12.024 +Myung-Gon Yoon,An approximation approach to H∞ control problems for distributed parameter systems.,1997,33,Automatica,11,db/journals/automatica/automatica33.html#YoonL97,https://doi.org/10.1016/S0005-1098(97)00115-5 +S. Aborhey,State and parameter estimation of microbial growth processes.,1978,14,Automatica,5,db/journals/automatica/automatica14.html#AborheyW78,https://doi.org/10.1016/0005-1098(78)90008-0 +Antonio Pietrabissa,Wardrop equilibrium on time-varying graphs.,2017,84,Automatica,,db/journals/automatica/automatica84.html#PietrabissaS17,https://doi.org/10.1016/j.automatica.2017.07.021 +C. Kambhampati,Generalization of integrated system optimization and parameter estimation techniques.,1989,25,Automatica,2,db/journals/automatica/automatica25.html#KambhampatiER89,https://doi.org/10.1016/0005-1098(89)90086-1 +Jingyi Wang,Stochastic feedback coupling synchronization of networked harmonic oscillators.,2018,87,Automatica,,db/journals/automatica/automatica87.html#WangXCFC18,https://doi.org/10.1016/j.automatica.2017.10.011 +P. T. Kidd,Comments on: 'Self-tuning and stable adaptive control of a batch polymerization reactor'.,1984,20,Automatica,4,db/journals/automatica/automatica20.html#Kidd84,https://doi.org/10.1016/0005-1098(84)90107-9 +Jerzy Klamka,Relative controllability of nonlinear systems with delays in control.,1976,12,Automatica,6,db/journals/automatica/automatica12.html#Klamka76,https://doi.org/10.1016/0005-1098(76)90046-7 +Jenq-Lang Wu,A New Approach to Optimal Regional Pole Placement.,1997,33,Automatica,10,db/journals/automatica/automatica33.html#WuL97,https://doi.org/10.1016/S0005-1098(97)00104-0 +Frédéric Grognard,Optimal strategies for biomass productivity maximization in a photobioreactor using natural light.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#GrognardAB14,https://doi.org/10.1016/j.automatica.2013.11.014 +Michael M. Markou,On-line control of the threshold policy parameter for multiclass systems.,2010,46,Automatica,3,db/journals/automatica/automatica46.html#MarkouP10,https://doi.org/10.1016/j.automatica.2009.12.002 +A. Jalali,Computationally efficient algorithms for on-line optimization of markov decision processes.,1992,28,Automatica,1,db/journals/automatica/automatica28.html#JalaliF92,https://doi.org/10.1016/0005-1098(92)90011-4 +Loïc Bourdin,Linear-quadratic optimal sampled-data control problems: Convergence result and Riccati theory.,2017,79,Automatica,,db/journals/automatica/automatica79.html#BourdinT17,https://doi.org/10.1016/j.automatica.2017.02.013 +Carsten W. Scherer,Robustness with dynamic IQCs: An exact state-space characterization of nominal stability with applications to robust estimation.,2008,44,Automatica,7,db/journals/automatica/automatica44.html#SchererK08,https://doi.org/10.1016/j.automatica.2007.10.023 +Grace S. Deaecto,Dynamic output feedback H∞ control of continuous-time switched affine systems.,2016,71,Automatica,,db/journals/automatica/automatica71.html#Deaecto16,https://doi.org/10.1016/j.automatica.2016.04.022 +Qing-Guo Wang,Auto-tuning of multivariable PID controllers from decentralized relay feedback.,1997,33,Automatica,3,db/journals/automatica/automatica33.html#WangZLB97,https://doi.org/10.1016/S0005-1098(96)00177-X +Francesco Basile,Suboptimal supervisory control of Petri nets in presence of uncontrollable transitions via monitor places.,2006,42,Automatica,6,db/journals/automatica/automatica42.html#BasileCG06,https://doi.org/10.1016/j.automatica.2006.02.003 +Karl Johan åström,Expert control.,1986,22,Automatica,3,db/journals/automatica/automatica22.html#AstromAA86,https://doi.org/10.1016/0005-1098(86)90026-9 +David Rijlaarsdam,Uniquely connecting frequency domain representations of given order polynomial Wiener-Hammerstein systems.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#RijlaarsdamONSS12,https://doi.org/10.1016/j.automatica.2012.06.006 +Zhiyong Chen 0001,No-beacon collective circular motion of jointly connected multi-agents.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#ChenZ11b,https://doi.org/10.1016/j.automatica.2011.03.012 +Graziano Chesi,Establishing tightness in robust Hinfinity analysis via homogeneous parameter-dependent Lyapunov functions.,2007,43,Automatica,11,db/journals/automatica/automatica43.html#Chesi07,https://doi.org/10.1016/j.automatica.2007.03.015 +Jianxiang Xi,Output consensus analysis and design for high-order linear swarm systems: Partial stability method.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#XiSZ12,https://doi.org/10.1016/j.automatica.2012.06.041 +Alireza Esna Ashari,Auxiliary signal design for robust active fault detection of linear discrete-time systems.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#AshariNC11,https://doi.org/10.1016/j.automatica.2011.06.009 +V. Panuska,Non-convergence of the approximate maximum likelihood identification algorithm.,1980,16,Automatica,2,db/journals/automatica/automatica16.html#Panuska80,https://doi.org/10.1016/0005-1098(80)90058-8 +Stéphane Victor,Parameter and differentiation order estimation in fractional models.,2013,49,Automatica,4,db/journals/automatica/automatica49.html#VictorMGO13,https://doi.org/10.1016/j.automatica.2013.01.026 +Vasile Dragan,Stabilizing composite control for a class of linear systems modeled by singularly perturbed Ito differential equations.,2011,47,Automatica,1,db/journals/automatica/automatica47.html#Dragan11,https://doi.org/10.1016/j.automatica.2010.10.020 +Meng Joo Er,Gain margin improvement using generalized sampled-data hold function based multirate output compensator.,1994,30,Automatica,3,db/journals/automatica/automatica30.html#ErAY94,https://doi.org/10.1016/0005-1098(94)90122-8 +Paolo d'Alessandro,Reachability in input constrained discrete-time linear systems.,1992,28,Automatica,1,db/journals/automatica/automatica28.html#dAlessandroS92,https://doi.org/10.1016/0005-1098(92)90026-C +George S. Axelby,New decade - New image.,1979,15,Automatica,1,db/journals/automatica/automatica15.html#Axelby79,https://doi.org/10.1016/0005-1098(79)90082-7 +Juliang Yin,Finite-time stability and instability of stochastic nonlinear systems.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#YinKMY11,https://doi.org/10.1016/j.automatica.2011.08.050 +Riccardo Marino,Adaptive control of linear time-varying systems.,2003,39,Automatica,4,db/journals/automatica/automatica39.html#MarinoT03,https://doi.org/10.1016/S0005-1098(02)00287-X +Alexey S. Matveev,Robot navigation for monitoring unsteady environmental boundaries without field gradient estimation.,2015,62,Automatica,,db/journals/automatica/automatica62.html#MatveevHOAS15,https://doi.org/10.1016/j.automatica.2015.09.003 +Maciej Niedzwiecki,Self-optimizing generalized adaptive notch filters - comparison of three optimization strategies.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#NiedzwieckiK09,https://doi.org/10.1016/j.automatica.2008.06.008 +Peter J. Gawthrop,Predictive pole-placement control with linear models.,2002,38,Automatica,3,db/journals/automatica/automatica38.html#GawthropR02,https://doi.org/10.1016/S0005-1098(01)00231-X +Shuzhi Sam Ge,Nonregular feedback linearization for a class of second-order nonlinear systems.,2001,37,Automatica,11,db/journals/automatica/automatica37.html#GeSL01,https://doi.org/10.1016/S0005-1098(01)00129-7 +Giordano Scarciotti,Data-driven model reduction by moment matching for linear and nonlinear systems.,2017,79,Automatica,,db/journals/automatica/automatica79.html#ScarciottiA17,https://doi.org/10.1016/j.automatica.2017.01.014 +Tamer Basar,Automatica Prize Paper Awards 2014.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#Basar14a,https://doi.org/10.1016/j.automatica.2014.09.009 +Christos G. Panayiotou,Optimization of kanban-based manufacturing systems.,1999,35,Automatica,9,db/journals/automatica/automatica35.html#PanayiotouC99,https://doi.org/10.1016/S0005-1098(99)00074-6 +Ferdinand Küsters,Switch observability for switched linear systems.,2018,87,Automatica,,db/journals/automatica/automatica87.html#KustersT18,https://doi.org/10.1016/j.automatica.2017.09.024 +Seiichi Nakamori,Relation between filter using covariance information and Kalman filter.,1982,18,Automatica,4,db/journals/automatica/automatica18.html#NakamoriH82,https://doi.org/10.1016/0005-1098(82)90077-2 +Sarangapani Jagannathan,Predictive congestion control of ATM networks: multiple sources/single buffer scenario.,2002,38,Automatica,5,db/journals/automatica/automatica38.html#JagannathanT02,https://doi.org/10.1016/S0005-1098(01)00259-X +Sei Zhen Khong,Robust stability conditions for feedback interconnections of distributed-parameter negative imaginary systems.,2018,90,Automatica,,db/journals/automatica/automatica90.html#KhongPR18,https://doi.org/10.1016/j.automatica.2017.09.010 +H. A. Spang III,Some applications and theory sessions.,1979,15,Automatica,3,db/journals/automatica/automatica15.html#Spang79,https://doi.org/10.1016/0005-1098(79)90057-8 +Martin J. Corless,State and Input Estimation for a Class of Uncertain Systems.,1998,34,Automatica,6,db/journals/automatica/automatica34.html#CorlessT98,https://doi.org/10.1016/S0005-1098(98)00013-2 +Antonella Ferrara,On modular backstepping design with second order sliding modes.,2001,37,Automatica,1,db/journals/automatica/automatica37.html#FerraraG01,https://doi.org/10.1016/S0005-1098(00)00131-X +Arild Thowsen,Observability conditions for a class of mixed distributed and lumped parameter systems.,1976,12,Automatica,3,db/journals/automatica/automatica12.html#ThowsenP76,https://doi.org/10.1016/0005-1098(76)90028-5 +Sohom Chakrabarty,A generalized reaching law for discrete time sliding mode control.,2015,52,Automatica,,db/journals/automatica/automatica52.html#ChakrabartyB15,https://doi.org/10.1016/j.automatica.2014.10.124 +José ángel Acosta,A constructive solution for stabilization via immersion and invariance: The cart and pendulum system.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#AcostaOAS08,https://doi.org/10.1016/j.automatica.2008.01.006 +Mogens Kümmel,On book reviews.,1981,17,Automatica,2,db/journals/automatica/automatica17.html#KummelA81,https://doi.org/10.1016/0005-1098(81)90045-5 +Hua-Cheng Zhou,Disturbance estimator based output feedback exponential stabilization for Euler-Bernoulli beam equation with boundary control.,2018,91,Automatica,,db/journals/automatica/automatica91.html#ZhouF18,https://doi.org/10.1016/j.automatica.2018.01.031 +Paola Falugi,Approximation of the Feasible Parameter Set in worst-case identification of Hammerstein models.,2005,41,Automatica,6,db/journals/automatica/automatica41.html#FalugiGZ05,https://doi.org/10.1016/j.automatica.2004.12.010 +Xiaojing Yang,Some necessary conditions for Hurwitz stability.,2004,40,Automatica,3,db/journals/automatica/automatica40.html#Yang04,https://doi.org/10.1016/j.automatica.2003.10.011 +David W. Clarke,Comments on: 'On adaptive minimum variance regulation for non-minimum phase plants'.,1984,20,Automatica,2,db/journals/automatica/automatica20.html#ClarkeG84,https://doi.org/10.1016/0005-1098(84)90037-2 +Lu Liu 0002,Parameter convergence and minimal internal model with an adaptive output regulation problem.,2009,45,Automatica,5,db/journals/automatica/automatica45.html#LiuCH09,https://doi.org/10.1016/j.automatica.2009.01.003 +Anders Stenman,Adaptive smoothing methods for frequency-function estimation.,2001,37,Automatica,5,db/journals/automatica/automatica37.html#StenmanG01,https://doi.org/10.1016/S0005-1098(01)00004-8 +T. Alamo,Convex invariant sets for discrete-time Lur'e systems.,2009,45,Automatica,4,db/journals/automatica/automatica45.html#AlamoCFC09,https://doi.org/10.1016/j.automatica.2008.11.013 +He Cai,The leader-following attitude control of multiple rigid spacecraft systems.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#CaiH14,https://doi.org/10.1016/j.automatica.2014.01.003 +Yong Feng,Non-singular terminal sliding mode control of rigid manipulators.,2002,38,Automatica,12,db/journals/automatica/automatica38.html#FengYM02,https://doi.org/10.1016/S0005-1098(02)00147-4 +Vladimír Kucera,Automatica prize paper awards 1993.,1994,30,Automatica,1,db/journals/automatica/automatica30.html#Kucera94,https://doi.org/10.1016/0005-1098(94)90223-2 +Wen Tan,H∞ control for singularly perturbed systems.,1998,34,Automatica,2,db/journals/automatica/automatica34.html#TanLT98,https://doi.org/10.1016/S0005-1098(97)00183-0 +Corrado Possieri,On polynomial feedback Nash equilibria for two-player scalar differential games.,2016,74,Automatica,,db/journals/automatica/automatica74.html#PossieriS16,https://doi.org/10.1016/j.automatica.2016.08.006 +Mohammed I. Abouheaf,Multi-agent discrete-time graphical games and reinforcement learning solutions.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#AbouheafLVHB14,https://doi.org/10.1016/j.automatica.2014.10.047 +Tao Zhang,Design and performance analysis of a direct adaptive controller for nonlinear systems.,1999,35,Automatica,11,db/journals/automatica/automatica35.html#ZhangGH99,https://doi.org/10.1016/S0005-1098(99)00098-9 +Bo-Yang Liu,Suppressing phase damping decoherence by periodical imperfect projective measurements.,2018,93,Automatica,,db/journals/automatica/automatica93.html#LiuZKD18,https://doi.org/10.1016/j.automatica.2018.03.045 +Sung Jin Yoo,Predesignated fault-tolerant formation tracking quality for networked uncertain nonholonomic mobile robots in the presence of multiple faults.,2017,77,Automatica,,db/journals/automatica/automatica77.html#YooK17,https://doi.org/10.1016/j.automatica.2016.09.011 +Pär Samuelsson,An integrating linearization method for Hammerstein models.,2005,41,Automatica,10,db/journals/automatica/automatica41.html#SamuelssonNC05,https://doi.org/10.1016/j.automatica.2005.04.018 +Dinh Hoa Nguyen,A convex optimization approach to robust iterative learning control for linear systems with time-varying parametric uncertainties.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#NguyenB11,https://doi.org/10.1016/j.automatica.2011.05.022 +Alexey V. Egorov,Necessary stability conditions for linear delay systems.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#EgorovM14,https://doi.org/10.1016/j.automatica.2014.10.031 +Ji-Woong Lee,A stability and contractiveness analysis of discrete-time Markovian jump linear systems.,2007,43,Automatica,1,db/journals/automatica/automatica43.html#LeeD07,https://doi.org/10.1016/j.automatica.2006.07.020 +Iven M. Y. Mareels,Dynamic models and discrete event simulation: William Delaney and Erminia Vaccari.,1991,27,Automatica,3,db/journals/automatica/automatica27.html#Mareels91,https://doi.org/10.1016/0005-1098(91)90125-L +C. P. Jobling,Object-oriented programming in control system design: a survey.,1994,30,Automatica,8,db/journals/automatica/automatica30.html#JoblingGBT94,https://doi.org/10.1016/0005-1098(94)90106-6 +Ligang Wu,Sliding mode control with bounded L2 gain performance of Markovian jump singular time-delay systems.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#WuSS12,https://doi.org/10.1016/j.automatica.2012.05.064 +Lalo Magni,A receding-horizon approach to the nonlinear Hinfinity control problem.,2001,37,Automatica,3,db/journals/automatica/automatica37.html#MagniNS01,https://doi.org/10.1016/S0005-1098(00)00166-7 +Yan-Wu Wang,Output formation-containment of interacted heterogeneous linear systems by distributed hybrid active control.,2018,93,Automatica,,db/journals/automatica/automatica93.html#WangLXS18,https://doi.org/10.1016/j.automatica.2018.03.020 +Didier M. Perdu,A Petri Net model for evaluation of expert systems in organizations.,1991,27,Automatica,2,db/journals/automatica/automatica27.html#PerduL91,https://doi.org/10.1016/0005-1098(91)90073-B +Tsu-Shuan Chang,A bound for a class of non-nested LQG team problems.,1986,22,Automatica,3,db/journals/automatica/automatica22.html#ChangH86,https://doi.org/10.1016/0005-1098(86)90037-3 +Adam Czornik,On new estimates for Lyapunov exponents of discrete time varying linear systems.,2010,46,Automatica,4,db/journals/automatica/automatica46.html#CzornikN10,https://doi.org/10.1016/j.automatica.2010.01.014 +Wang Chenliang,Adaptive dynamic surface control for linear multivariable systems.,2010,46,Automatica,10,db/journals/automatica/automatica46.html#ChenliangY10,https://doi.org/10.1016/j.automatica.2010.06.020 +Kun Liu,Dynamic quantization of uncertain linear networked control systems.,2015,59,Automatica,,db/journals/automatica/automatica59.html#LiuFJ15,https://doi.org/10.1016/j.automatica.2015.06.041 +Pierre Carpentier,Applied mathematics in water supply network management.,1993,29,Automatica,5,db/journals/automatica/automatica29.html#CarpentierC93,https://doi.org/10.1016/0005-1098(93)90048-X +Ye Yuan 0002,On minimal realisations of dynamical structure functions.,2015,55,Automatica,,db/journals/automatica/automatica55.html#YuanGG15,https://doi.org/10.1016/j.automatica.2015.03.005 +M. S. Koutchoukali,Model reference adaptive control system of a catalytic fluidized bed reactor.,1986,22,Automatica,1,db/journals/automatica/automatica22.html#KoutchoukaliLN86,https://doi.org/10.1016/0005-1098(86)90109-3 +Dawei Shi,Event-based state estimation of discrete-state hidden Markov models.,2016,65,Automatica,,db/journals/automatica/automatica65.html#ShiEC16,https://doi.org/10.1016/j.automatica.2015.11.023 +Suat Gumussoy,Root locus for SISO dead-time systems: A continuation based approach.,2012,48,Automatica,3,db/journals/automatica/automatica48.html#GumussoyM12,https://doi.org/10.1016/j.automatica.2012.01.010 +Sheng-Guo Wang,Robust pole clustering in a good ride quality region of aircraft for matrices with structured uncertainties.,2003,39,Automatica,3,db/journals/automatica/automatica39.html#Wang03,https://doi.org/10.1016/S0005-1098(02)00268-6 +Dimitri Jeltsema,A dual relation between port-Hamiltonian systems and the Brayton-Moser equations for nonlinear switched RLC circuits.,2003,39,Automatica,6,db/journals/automatica/automatica39.html#JeltsemaS03,https://doi.org/10.1016/S0005-1098(03)00070-0 +Yuqiang Wu,Variable structure control design for uncertain dynamic systems with disturbances in input and output channels.,1999,35,Automatica,2,db/journals/automatica/automatica35.html#WuY99,https://doi.org/10.1016/S0005-1098(98)00157-5 +Mikhail Krastanov,On the controllability of switching linear systems.,2005,41,Automatica,4,db/journals/automatica/automatica41.html#KrastanovV05,https://doi.org/10.1016/j.automatica.2004.10.017 +H. A. Barker,A man-machine interface for computer-aided design and simulation of control systems.,1989,25,Automatica,2,db/journals/automatica/automatica25.html#BarkerCGJT89,https://doi.org/10.1016/0005-1098(89)90087-3 +Indika Wijayasinghe,Potential and optimal control of human head movement using Tait-Bryan parametrization.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#WijayasingheRBGGKL14,https://doi.org/10.1016/j.automatica.2013.11.017 +W. A. van den Broek,An equivalence result in linear-quadratic theory.,2003,39,Automatica,2,db/journals/automatica/automatica39.html#BroekES03,https://doi.org/10.1016/S0005-1098(02)00228-5 +Bin Xian,A discontinuous output feedback controller and velocity observer for nonlinear mechanical systems.,2004,40,Automatica,4,db/journals/automatica/automatica40.html#XianQDM04,https://doi.org/10.1016/j.automatica.2003.12.007 +Miomir Vukobratovic,Suboptimal synthesis of a robust decentralized control for large-scale mechanical systems.,1984,20,Automatica,6,db/journals/automatica/automatica20.html#VukobratovicS84,https://doi.org/10.1016/0005-1098(84)90090-6 +Kim Levy,Change-point monitoring for online stochastic approximations.,2010,46,Automatica,10,db/journals/automatica/automatica46.html#LevyV10,https://doi.org/10.1016/j.automatica.2010.06.036 +Youfeng Su,Leader-following rendezvous with connectivity preservation and disturbance rejection via internal model approach.,2015,57,Automatica,,db/journals/automatica/automatica57.html#Su15,https://doi.org/10.1016/j.automatica.2015.04.015 +Jiusun Zeng,Detecting abnormal situations using the Kullback-Leibler divergence.,2014,50,Automatica,11,db/journals/automatica/automatica50.html#ZengKGWX14,https://doi.org/10.1016/j.automatica.2014.09.005 +Luís Pina,Simultaneous state and input estimation of hybrid systems with unknown inputs.,2006,42,Automatica,5,db/journals/automatica/automatica42.html#PinaB06,https://doi.org/10.1016/j.automatica.2005.12.014 +Juhoon Back,Dynamic observer error linearization.,2006,42,Automatica,12,db/journals/automatica/automatica42.html#BackYS06,https://doi.org/10.1016/j.automatica.2006.07.009 +Henk Nijmeijer,On Approximate Model-Reference Control of SISO Discrete-Time Nonlinear Systems.,1998,34,Automatica,10,db/journals/automatica/automatica34.html#NijmeijerS98,https://doi.org/10.1016/S0005-1098(98)00064-8 +Dieter Kaesbauer,On robust stability of polynomials with polynomial parameter dependency: solTwo/three parameter cases.,1993,29,Automatica,1,db/journals/automatica/automatica29.html#Kaesbauer93,https://doi.org/10.1016/0005-1098(93)90184-U +François Delebecque,Optimal control of markov chains admitting strong and weak interactions.,1981,17,Automatica,2,db/journals/automatica/automatica17.html#DelebecqueQ81,https://doi.org/10.1016/0005-1098(81)90047-9 +Zhenyu Yang,An algebraic approach towards the controllability of controlled switching linear hybrid systems.,2002,38,Automatica,7,db/journals/automatica/automatica38.html#Yang02,https://doi.org/10.1016/S0005-1098(02)00010-9 +Y. H. Chen,Adaptive robust control of uncertain systems with measurement noise.,1992,28,Automatica,4,db/journals/automatica/automatica28.html#Chen92,https://doi.org/10.1016/0005-1098(92)90032-B +S. Hoang,A new reduced-order adaptive filter for state estimation in high-dimensional systems.,1997,33,Automatica,8,db/journals/automatica/automatica33.html#HoangMTB97,https://doi.org/10.1016/S0005-1098(97)00069-1 +Mario Sznaier,Control of constrained discrete time linear systems using quantized controls.,1989,25,Automatica,4,db/journals/automatica/automatica25.html#SznaierD89,https://doi.org/10.1016/0005-1098(89)90107-6 +Feng Lin,Opacity of discrete event systems and its applications.,2011,47,Automatica,3,db/journals/automatica/automatica47.html#Lin11,https://doi.org/10.1016/j.automatica.2011.01.002 +Rong Su,What information really matters in supervisor reduction?,2018,95,Automatica,,db/journals/automatica/automatica95.html#SuW18,https://doi.org/10.1016/j.automatica.2018.06.004 +Delphine Bresch-Pietri,Output-feedback adaptive control of a wave PDE with boundary anti-damping.,2014,50,Automatica,5,db/journals/automatica/automatica50.html#Bresch-PietriK14,https://doi.org/10.1016/j.automatica.2014.02.040 +Nicolas William Bauer,Decentralized observer-based control via networked communication.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#BauerDWH13,https://doi.org/10.1016/j.automatica.2013.04.019 +Luca Consolini,Learning control in spatial coordinates for the path-following of autonomous vehicles.,2014,50,Automatica,7,db/journals/automatica/automatica50.html#ConsoliniV14,https://doi.org/10.1016/j.automatica.2014.05.002 +Jian-Xin Xu 0001,Adaptive robust iterative learning control with dead zone scheme.,2000,36,Automatica,1,db/journals/automatica/automatica36.html#XuV00,https://doi.org/10.1016/S0005-1098(99)00100-4 +Changchun Hua,Robust controller design of a class of nonlinear time delay systems via backstepping method.,2008,44,Automatica,2,db/journals/automatica/automatica44.html#HuaFG08,https://doi.org/10.1016/j.automatica.2007.06.008 +Ali Saberi,On optimality of decentralized control for a class of nonlinear interconnected systems.,1988,24,Automatica,1,db/journals/automatica/automatica24.html#Saberi88,https://doi.org/10.1016/0005-1098(88)90013-1 +René Schneider,An iterative partition-based moving horizon estimator with coupled inequality constraints.,2015,61,Automatica,,db/journals/automatica/automatica61.html#SchneiderHM15,https://doi.org/10.1016/j.automatica.2015.08.016 +Xiaoxu Wang,General equivalence between two kinds of noise-correlation filters.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#WangLPW14,https://doi.org/10.1016/j.automatica.2014.10.040 +Feng Ding 0001,Reconstruction of continuous-time systems from their non-uniformly sampled discrete-time systems.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#DingQC09,https://doi.org/10.1016/j.automatica.2008.08.007 +Dimitrios Dimogianopoulos,Adaptive control for linear slowly time-varying systems using direct least-squares estimation.,2001,37,Automatica,2,db/journals/automatica/automatica37.html#DimogianopoulosL01,https://doi.org/10.1016/S0005-1098(00)00159-X +Han Ho Choi,Output feedback variable structure control design with an H2 performance bound constraint.,2008,44,Automatica,9,db/journals/automatica/automatica44.html#Choi08,https://doi.org/10.1016/j.automatica.2008.01.018 +Xiang Yin 0003,Codiagnosability and coobservability under dynamic observations: Transformation and verification.,2015,61,Automatica,,db/journals/automatica/automatica61.html#YinL15,https://doi.org/10.1016/j.automatica.2015.08.023 +J. Braham Levy,Computer systems for automation and control: Gustaf Olsson and Giangido Piani.,1994,30,Automatica,6,db/journals/automatica/automatica30.html#Levy94,https://doi.org/10.1016/0005-1098(94)90207-0 +Chenglin Wen,Filter design based on characteristic functions for one class of multi-dimensional nonlinear non-Gaussian systems.,2017,82,Automatica,,db/journals/automatica/automatica82.html#WenCXW17,https://doi.org/10.1016/j.automatica.2017.03.041 +Zhi-liang Zhao,A nonlinear extended state observer based on fractional power functions.,2017,81,Automatica,,db/journals/automatica/automatica81.html#ZhaoG17,https://doi.org/10.1016/j.automatica.2017.03.002 +Roger M. Cooke,Calibration and information in expert resolution* a classical approach.,1988,24,Automatica,1,db/journals/automatica/automatica24.html#CookeMT88,https://doi.org/10.1016/0005-1098(88)90011-8 +Tamer Basar,The New Editor-in-Chief.,2017,78,Automatica,,db/journals/automatica/automatica78.html#Basar17,https://doi.org/10.1016/j.automatica.2017.02.018 +Shawn E. Burke,Distributed actuator control design for flexible beams.,1988,24,Automatica,5,db/journals/automatica/automatica24.html#BurkeH88,https://doi.org/10.1016/0005-1098(88)90109-4 +Lars Imsland,Vehicle velocity estimation using nonlinear observers.,2006,42,Automatica,12,db/journals/automatica/automatica42.html#ImslandJFGKS06,https://doi.org/10.1016/j.automatica.2006.06.025 +Luigi Chisci,Recursive state bounding by parallelotopes.,1996,32,Automatica,7,db/journals/automatica/automatica32.html#ChisciGZ96,https://doi.org/10.1016/0005-1098(96)00048-9 +Andrey Smyshlyaev,Adaptive boundary control for unstable parabolic PDEs - Part III: Output feedback examples with swapping identifiers.,2007,43,Automatica,9,db/journals/automatica/automatica43.html#SmyshlyaevK07a,https://doi.org/10.1016/j.automatica.2007.02.015 +Ioannis Lestas,Heterogeneity and scalability in group agreement protocols: Beyond small gain and passivity approaches.,2010,46,Automatica,7,db/journals/automatica/automatica46.html#LestasV10,https://doi.org/10.1016/j.automatica.2010.03.018 +Fouad Giri,On the robustness of discrete-time indirect adaptive (linear) controllers.,1991,27,Automatica,1,db/journals/automatica/automatica27.html#GiriMDD91,https://doi.org/10.1016/0005-1098(91)90014-S +Alessandro Chiuso,The role of vector autoregressive modeling in predictor-based subspace identification.,2007,43,Automatica,6,db/journals/automatica/automatica43.html#Chiuso07,https://doi.org/10.1016/j.automatica.2006.12.009 +Rik Pintelon,Some peculiarities of identification in the presence of model errors.,2002,38,Automatica,10,db/journals/automatica/automatica38.html#PintelonS02,https://doi.org/10.1016/S0005-1098(02)00080-8 +Gerardo Escobar,A Hamiltonian viewpoint in the modeling of switching power converters.,1999,35,Automatica,3,db/journals/automatica/automatica35.html#EscobarSO99,https://doi.org/10.1016/S0005-1098(98)00196-4 +Hansheng Wu,Eigenstructure assignment-based robust stability conditions for uncertain systems with multiple time-varying delays.,1997,33,Automatica,1,db/journals/automatica/automatica33.html#Wu97,https://doi.org/10.1016/S0005-1098(96)00134-3 +Lixian Zhang,Mode-identifying time estimation and switching-delay tolerant control for switched systems: An elementary time unit approach.,2016,64,Automatica,,db/journals/automatica/automatica64.html#ZhangX16,https://doi.org/10.1016/j.automatica.2015.11.010 +Frits C. Schoute,Symmetric team problems and multi access wire communication.,1978,14,Automatica,3,db/journals/automatica/automatica14.html#Schoute78,https://doi.org/10.1016/0005-1098(78)90090-0 +Weihai Zhang,On stabilizability and exact observability of stochastic systems with their applications.,2004,40,Automatica,1,db/journals/automatica/automatica40.html#ZhangC04,https://doi.org/10.1016/j.automatica.2003.07.002 +Carlos Alberto Cavichioli Gonzaga,Stochastic stabilization and induced l2-gain for discrete-time Markov jump Lur'e systems with control saturation.,2014,50,Automatica,9,db/journals/automatica/automatica50.html#GonzagaC14,https://doi.org/10.1016/j.automatica.2014.07.004 +Witold Pedrycz,Ranking multiple aspect alternatives - Fuzzy relational equations approach.,1986,22,Automatica,2,db/journals/automatica/automatica22.html#Pedrycz86,https://doi.org/10.1016/0005-1098(86)90089-0 +Hossny El-Sherief,Dedicated microprocessors for realtime identification of multivariable systems.,1984,20,Automatica,1,db/journals/automatica/automatica20.html#El-SheriefM84,https://doi.org/10.1016/0005-1098(84)90075-X +Abhisek K. Behera,A new geometric proof of super-twisting control with actuator saturation.,2018,87,Automatica,,db/journals/automatica/automatica87.html#BeheraCB18,https://doi.org/10.1016/j.automatica.2017.09.015 +Yan Pan,Games with coupled propagated constraints in optical networks with multi-link topologies.,2009,45,Automatica,4,db/journals/automatica/automatica45.html#PanP09,https://doi.org/10.1016/j.automatica.2008.11.007 +Sergio Bittanti,Unbiased estimation of a sinusoid in colored noise via adapted notch filters.,1997,33,Automatica,2,db/journals/automatica/automatica33.html#BittantiCS97,https://doi.org/10.1016/S0005-1098(96)00145-8 +Sarangapani Jagannathan,Robust implicit self-tuning regulator: Convergence and stability.,1996,32,Automatica,12,db/journals/automatica/automatica32.html#JagannathanL96,https://doi.org/10.1016/S0005-1098(96)80001-X +Li-Zhi Liao,Adaptive differential dynamic programming for multiobjective optimal control.,2002,38,Automatica,6,db/journals/automatica/automatica38.html#LiaoL02,https://doi.org/10.1016/S0005-1098(02)00016-X +Minyi Huang,Stability of Kalman filtering with Markovian packet losses.,2007,43,Automatica,4,db/journals/automatica/automatica43.html#HuangD07,https://doi.org/10.1016/j.automatica.2006.10.023 +Mondher Farza,Adaptive observers for a class of uniformly observable systems with nonlinear parametrization and sampled outputs.,2014,50,Automatica,11,db/journals/automatica/automatica50.html#FarzaBMAM14,https://doi.org/10.1016/j.automatica.2014.10.032 +Achim Ilchmann,Universal and#955*-tracking for nonlinearly-perturbed systems in the presence of noise.,1994,30,Automatica,2,db/journals/automatica/automatica30.html#IlchmannR94,https://doi.org/10.1016/0005-1098(94)90035-3 +Weidong Zhang 0004,Two Degree-of-Freedom Smith Predictor for Processes with Time Delay.,1998,34,Automatica,10,db/journals/automatica/automatica34.html#ZhangSX98,https://doi.org/10.1016/S0005-1098(98)00075-2 +Brian D. O. Anderson,Exponential convergence of adaptive identification and control algorithms.,1982,18,Automatica,1,db/journals/automatica/automatica18.html#AndersonJ82,https://doi.org/10.1016/0005-1098(82)90021-8 +Jan M. Maciejowski,Model discrimination using an algorithmic information criterion.,1979,15,Automatica,5,db/journals/automatica/automatica15.html#Maciejowski79,https://doi.org/10.1016/0005-1098(79)90006-2 +Yukang Cui,Stability analysis for positive singular systems with distributed delays.,2018,94,Automatica,,db/journals/automatica/automatica94.html#CuiSC18,https://doi.org/10.1016/j.automatica.2018.04.026 +Bo Yang 0018,On semi-global stabilizability of MIMO nonlinear systems by output feedback.,2006,42,Automatica,6,db/journals/automatica/automatica42.html#YangL06,https://doi.org/10.1016/j.automatica.2006.02.021 +Masatoshi Sakawa,Interactive multiobjective decision making in environmental systems using sequential proxy optimization techniques (SPOT).,1982,18,Automatica,2,db/journals/automatica/automatica18.html#SakawaS82,https://doi.org/10.1016/0005-1098(82)90105-4 +Gerardo Escobar,Regulation and tracking of the nonholonomic double integrator: A field-oriented control approach.,1998,34,Automatica,1,db/journals/automatica/automatica34.html#EscobarOR98,https://doi.org/10.1016/S0005-1098(97)00155-6 +Hao Zhang,Reliable dissipative control for stochastic impulsive systems.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#ZhangGF08,https://doi.org/10.1016/j.automatica.2007.08.018 +Paulo Sérgio Pereira da Silva,Some remarks on static-feedback linearization for time-varying systems.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#Silva08,https://doi.org/10.1016/j.automatica.2008.10.001 +Gerard J. C. Gaalman,Bullwhip reduction for ARMA demand: The proportional order-up-to policy versus the full-state-feedback policy.,2006,42,Automatica,8,db/journals/automatica/automatica42.html#Gaalman06,https://doi.org/10.1016/j.automatica.2006.04.017 +Antoine Chaillet,Robust stabilization of delayed neural fields with partial measurement and actuation.,2017,83,Automatica,,db/journals/automatica/automatica83.html#ChailletDPS17,https://doi.org/10.1016/j.automatica.2017.05.011 +Basilio Del-Muro-Cuéllar,Fixed poles of disturbance rejection by dynamic measurement feedback: a geometric approach.,2001,37,Automatica,2,db/journals/automatica/automatica37.html#Del-Muro-CuellarM01,https://doi.org/10.1016/S0005-1098(00)00157-6 +Dusan M. Stipanovic,Decentralized overlapping control of a formation of unmanned aerial vehicles.,2004,40,Automatica,8,db/journals/automatica/automatica40.html#StipanovicITT04,https://doi.org/10.1016/j.automatica.2004.02.017 +Qing-Wen Wang,Constraint generalized Sylvester matrix equations.,2016,69,Automatica,,db/journals/automatica/automatica69.html#WangRHZ16,https://doi.org/10.1016/j.automatica.2016.02.024 +Chong Jin Ong,Stability regions for constrained nonlinear systems and their functional characterization via support-vector-machine learning.,2004,40,Automatica,11,db/journals/automatica/automatica40.html#OngKGZ04,https://doi.org/10.1016/j.automatica.2004.06.005 +Xi-Ren Cao,A unified approach to Markov decision problems and performance sensitivity analysis.,2000,36,Automatica,5,db/journals/automatica/automatica36.html#Cao00,https://doi.org/10.1016/S0005-1098(99)00207-1 +Ben M. Chen,Solutions to disturbance decoupling problem with constant measurement feedback for linear systems.,2000,36,Automatica,11,db/journals/automatica/automatica36.html#ChenMZZ00,https://doi.org/10.1016/S0005-1098(00)00090-X +Er-Wei Bai,Identification of a modified Wiener-Hammerstein system and its application in electrically stimulated paralyzed skeletal muscle modeling.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#BaiCDS09,https://doi.org/10.1016/j.automatica.2008.09.023 +Daniel Georgiev,Packet-based control: The H2-optimal solution.,2006,42,Automatica,1,db/journals/automatica/automatica42.html#GeorgievT06,https://doi.org/10.1016/j.automatica.2005.08.011 +A. V. B. Subrahmanyam,Irreducible continuous model identification via Markov parameter estimation.,1996,32,Automatica,2,db/journals/automatica/automatica32.html#SubrahmanyamSR96,https://doi.org/10.1016/0005-1098(96)85555-5 +Usman A. Khan,Collaborative scalar-gain estimators for potentially unstable social dynamics with limited communication.,2014,50,Automatica,7,db/journals/automatica/automatica50.html#KhanJ14,https://doi.org/10.1016/j.automatica.2014.05.008 +Leonid Mirkin,On the sampled-data Hinfinity filtering problem.,1999,35,Automatica,5,db/journals/automatica/automatica35.html#MirkinP99,https://doi.org/10.1016/S0005-1098(98)00222-2 +Torben Rottbøll Andersen,An efficient single output fuzzy control algorithm for adaptive applications.,1985,21,Automatica,5,db/journals/automatica/automatica21.html#AndersenN85,https://doi.org/10.1016/0005-1098(85)90003-2 +Alexander N. Churilov,Mathematical model of non-basal testosterone regulation in the male by pulse modulated feedback.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#ChurilovMS09,https://doi.org/10.1016/j.automatica.2008.06.016 +Martine Olivi,Identification of microwave filters by analytic and rational H2 approximation.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#OliviSM13,https://doi.org/10.1016/j.automatica.2012.10.005 +Janos Gertler,A new structural framework for parity equation-based failure detection and isolation.,1990,26,Automatica,2,db/journals/automatica/automatica26.html#GertlerS90,https://doi.org/10.1016/0005-1098(90)90133-3 +S. Halabi,Hinfinity functional filtering for stochastic bilinear systems with multiplicative noises.,2009,45,Automatica,4,db/journals/automatica/automatica45.html#HalabiARZ09,https://doi.org/10.1016/j.automatica.2008.11.027 +Jihene Ben Rejeb,Stability analysis of a general class of singularly perturbed linear hybrid systems.,2018,90,Automatica,,db/journals/automatica/automatica90.html#RejebMGD18,https://doi.org/10.1016/j.automatica.2017.12.019 +Zhaoyang Wan,An efficient off-line formulation of robust model predictive control using linear matrix inequalities.,2003,39,Automatica,5,db/journals/automatica/automatica39.html#WanK03,https://doi.org/10.1016/S0005-1098(02)00174-7 +Erik V. Bohn,Estimation of continuous-time linear system parameters from periodic data.,1982,18,Automatica,1,db/journals/automatica/automatica18.html#Bohn82,https://doi.org/10.1016/0005-1098(82)90023-1 +Li Qiu,Direct State Space Solution of Multirate Sampled-Data H2 Optimal Control.,1998,34,Automatica,11,db/journals/automatica/automatica34.html#QiuT98,https://doi.org/10.1016/S0005-1098(98)00080-6 +Esmaeil Naderi,Inversion-based output tracking and unknown input reconstruction of square discrete-time linear systems.,2018,95,Automatica,,db/journals/automatica/automatica95.html#NaderiK18,https://doi.org/10.1016/j.automatica.2018.05.005 +Daniel Alberto Burbano Lombana,Multiplex PI control for consensus in networks of heterogeneous linear agents.,2016,67,Automatica,,db/journals/automatica/automatica67.html#LombanaB16,https://doi.org/10.1016/j.automatica.2016.01.039 +Ruiyue Ouyang,Absolute stability analysis of linear systems with Duhem hysteresis operator.,2014,50,Automatica,7,db/journals/automatica/automatica50.html#OuyangJ14,https://doi.org/10.1016/j.automatica.2014.04.028 +Mathias Bürger,Duality and network theory in passivity-based cooperative control.,2014,50,Automatica,8,db/journals/automatica/automatica50.html#BurgerZA14,https://doi.org/10.1016/j.automatica.2014.06.002 +David Q. Mayne,Robust model predictive control of constrained linear systems with bounded disturbances.,2005,41,Automatica,2,db/journals/automatica/automatica41.html#MayneSR05,https://doi.org/10.1016/j.automatica.2004.08.019 +Siyang Gao,A peak-over-threshold search method for global optimization.,2018,89,Automatica,,db/journals/automatica/automatica89.html#GaoSZ18,https://doi.org/10.1016/j.automatica.2017.12.002 +C. Y. Chan,Robust discrete quasi-sliding mode tracking controller.,1995,31,Automatica,10,db/journals/automatica/automatica31.html#Chan95a,https://doi.org/10.1016/0005-1098(95)00054-Z +Weihai Zhang,Stochastic H2/Hinfinity control for discrete-time systems with state and disturbance dependent noise.,2007,43,Automatica,3,db/journals/automatica/automatica43.html#ZhangHZ07,https://doi.org/10.1016/j.automatica.2006.09.015 +Alessio Benavoli,A probabilistic interpretation of set-membership filtering: Application to polynomial systems through polytopic bounding.,2016,70,Automatica,,db/journals/automatica/automatica70.html#BenavoliP16,https://doi.org/10.1016/j.automatica.2016.03.021 +Björn Wittenmark,Adaptive stability augmentation.,1990,26,Automatica,4,db/journals/automatica/automatica26.html#Wittenmark90,https://doi.org/10.1016/0005-1098(90)90047-L +Mario Lefebvre,A Bidimensional Optimal Landing Problem.,1998,34,Automatica,5,db/journals/automatica/automatica34.html#Lefebvre98,https://doi.org/10.1016/S0005-1098(98)00009-0 +Lei Zou 0003,Observer-based H∞ control of networked systems with stochastic communication protocol: The finite-horizon case.,2016,63,Automatica,,db/journals/automatica/automatica63.html#ZouWG16,https://doi.org/10.1016/j.automatica.2015.10.045 +Berend Roorda,Algorithms for global total least squares modelling of finite multivariable time series.,1995,31,Automatica,3,db/journals/automatica/automatica31.html#Roorda95,https://doi.org/10.1016/0005-1098(94)00114-X +Iven M. Y. Mareels,Non-linear dynamics in adaptive control: Chaotic and periodic stabilization.,1986,22,Automatica,6,db/journals/automatica/automatica22.html#MareelsB86,https://doi.org/10.1016/0005-1098(86)90003-8 +Yang Tang,Leader-following consensus of a class of stochastic delayed multi-agent systems with partial mixed impulses.,2015,53,Automatica,,db/journals/automatica/automatica53.html#TangGZK15,https://doi.org/10.1016/j.automatica.2015.01.008 +William Pasillas-Lépine,Design and experimental validation of a nonlinear wheel slip control algorithm.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#Pasillas-LepineLG12,https://doi.org/10.1016/j.automatica.2012.05.073 +Rosario Aragues,Distributed algebraic connectivity estimation for undirected graphs with upper and lower bounds.,2014,50,Automatica,12,db/journals/automatica/automatica50.html#AraguesSDSJM14,https://doi.org/10.1016/j.automatica.2014.10.051 +Sherwin T. Nugent,Self and forced oscillations in multivariable relay control systems.,1969,5,Automatica,4,db/journals/automatica/automatica5.html#NugentK69,https://doi.org/10.1016/0005-1098(69)90114-9 +Li Dai,Cooperative distributed stochastic MPC for systems with state estimation and coupled probabilistic constraints.,2015,61,Automatica,,db/journals/automatica/automatica61.html#DaiXGKC15,https://doi.org/10.1016/j.automatica.2015.07.025 +Kim Batselier,Tensor network subspace identification of polynomial state space models.,2018,95,Automatica,,db/journals/automatica/automatica95.html#BatselierKW18,https://doi.org/10.1016/j.automatica.2018.05.015 +Steffi Knorn,Scalability of bidirectional vehicle strings with static and dynamic measurement errors.,2015,62,Automatica,,db/journals/automatica/automatica62.html#KnornDAM15,https://doi.org/10.1016/j.automatica.2015.09.022 +Stéphane Victor,Flatness for linear fractional systems with application to a thermal system.,2015,57,Automatica,,db/journals/automatica/automatica57.html#VictorMLO15,https://doi.org/10.1016/j.automatica.2015.04.021 +Mohamed Darouach,Extension of minimum variance estimation for systems with unknown inputs.,2003,39,Automatica,5,db/journals/automatica/automatica39.html#DarouachZB03,https://doi.org/10.1016/S0005-1098(03)00006-2 +Ramon R. Costa,Lyapunov-based adaptive control of MIMO systems.,2003,39,Automatica,7,db/journals/automatica/automatica39.html#CostaHIK03,https://doi.org/10.1016/S0005-1098(03)00085-2 +Dragan Nesic,Matrosov theorem for parameterized families of discrete-time systems.,2004,40,Automatica,6,db/journals/automatica/automatica40.html#NesicT04,https://doi.org/10.1016/j.automatica.2004.01.016 +Marco Todescato,Multi-robots Gaussian estimation and coverage control: From client-server to peer-to-peer architectures.,2017,80,Automatica,,db/journals/automatica/automatica80.html#TodescatoCCPS17,https://doi.org/10.1016/j.automatica.2017.02.045 +Andrey V. Savkin,Cyclic linear differential automata: a simple class of hybrid dynamical systems.,2000,36,Automatica,5,db/journals/automatica/automatica36.html#SavkinM00,https://doi.org/10.1016/S0005-1098(99)00199-5 +Pavel Valásek,Microprocessors for engineers: Interfacing for real-time applications : Pradip Kumar Sinha.,1990,26,Automatica,2,db/journals/automatica/automatica26.html#Valasek90,https://doi.org/10.1016/0005-1098(90)90145-8 +Petar V. Kokotovic,Coherency based decomposition and aggregation.,1982,18,Automatica,1,db/journals/automatica/automatica18.html#KokotovicACW82,https://doi.org/10.1016/0005-1098(82)90025-5 +Julian Barreiro-Gomez,Constrained distributed optimization: A population dynamics approach.,2016,69,Automatica,,db/journals/automatica/automatica69.html#Barreiro-GomezQ16,https://doi.org/10.1016/j.automatica.2016.02.004 +Chiang-Ju Chien,An output-based adaptive iterative learning controller for high relative degree uncertain linear systems.,2004,40,Automatica,1,db/journals/automatica/automatica40.html#ChienY04,https://doi.org/10.1016/j.automatica.2003.09.002 +Ti-Chung Lee,Exponential stabilization for nonlinear systems with applications to nonholonomic systems.,2003,39,Automatica,6,db/journals/automatica/automatica39.html#Lee03,https://doi.org/10.1016/S0005-1098(03)00058-X +Kaushik Mahata,Improved estimation performance using known linear constraints.,2004,40,Automatica,8,db/journals/automatica/automatica40.html#MahataS04,https://doi.org/10.1016/j.automatica.2004.03.001 +Mo Jamshidi,Comments on the 7th IFAC congress.,1979,15,Automatica,3,db/journals/automatica/automatica15.html#Jamshidi79,https://doi.org/10.1016/0005-1098(79)90060-8 +Xinghu Wang,Adaptive multi-agent containment control with multiple parametric uncertain leaders.,2014,50,Automatica,9,db/journals/automatica/automatica50.html#WangHJ14,https://doi.org/10.1016/j.automatica.2014.07.019 +Quang Minh Ta,Stochastic control for optical manipulation of multiple microscopic objects.,2018,89,Automatica,,db/journals/automatica/automatica89.html#TaC18,https://doi.org/10.1016/j.automatica.2017.11.031 +Dmitriy Laschov,Observability of Boolean networks: A graph-theoretic approach.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#LaschovME13,https://doi.org/10.1016/j.automatica.2013.04.038 +Dror Freirich,Decentralized networked control of systems with local networks: A time-delay approach.,2016,69,Automatica,,db/journals/automatica/automatica69.html#FreirichF16,https://doi.org/10.1016/j.automatica.2016.02.037 +Stefano Battilotti,Robust observer design under measurement noise with gain adaptation and saturated estimates.,2017,81,Automatica,,db/journals/automatica/automatica81.html#Battilotti17,https://doi.org/10.1016/j.automatica.2017.02.008 +Antonio Vicino,Robustness of pole location in perturbed systems.,1989,25,Automatica,1,db/journals/automatica/automatica25.html#Vicino89,https://doi.org/10.1016/0005-1098(89)90125-8 +José Claudio Geromel,Switched state feedback control for continuous-time uncertain systems.,2009,45,Automatica,2,db/journals/automatica/automatica45.html#GeromelD09,https://doi.org/10.1016/j.automatica.2008.10.010 +Zhi-Hong Guan,Impulsive consensus algorithms for second-order multi-agent networks with sampled information.,2012,48,Automatica,7,db/journals/automatica/automatica48.html#GuanLFJ12,https://doi.org/10.1016/j.automatica.2012.05.005 +Victoria Grushkovskaya,On a class of generating vector fields for the extremum seeking problem: Lie bracket approximation and stability properties.,2018,94,Automatica,,db/journals/automatica/automatica94.html#GrushkovskayaZE18,https://doi.org/10.1016/j.automatica.2018.04.024 +Puduru V. Reddy,Time-consistent Shapley value for games played over event trees.,2013,49,Automatica,6,db/journals/automatica/automatica49.html#ReddySZ13,https://doi.org/10.1016/j.automatica.2013.02.029 +Matthias Albrecht Müller,Improving performance in model predictive control: Switching cost functionals under average dwell-time.,2012,48,Automatica,2,db/journals/automatica/automatica48.html#MullerA12,https://doi.org/10.1016/j.automatica.2011.11.005 +Michael A. Arbib,On the relevance of abstract algebra to control theory.,1969,5,Automatica,5,db/journals/automatica/automatica5.html#ArbibZ69,https://doi.org/10.1016/0005-1098(69)90026-0 +Ming Cao,Formation control using range-only measurements.,2011,47,Automatica,4,db/journals/automatica/automatica47.html#CaoYA11,https://doi.org/10.1016/j.automatica.2011.01.067 +Carole Aldrich,Quadraticity and neutrality in discrete time stochastic linear quadratic control.,1977,13,Automatica,3,db/journals/automatica/automatica13.html#AldrichP77,https://doi.org/10.1016/0005-1098(77)90058-9 +Ron Teichner,Explicit construction of a Barabanov norm for a class of positive planar discrete-time linear switched systems.,2012,48,Automatica,1,db/journals/automatica/automatica48.html#TeichnerM12,https://doi.org/10.1016/j.automatica.2011.09.028 +M. Gauvrit,Bayesian adaptive filter for tracking with measurements of uncertain origin.,1984,20,Automatica,2,db/journals/automatica/automatica20.html#Gauvrit84,https://doi.org/10.1016/0005-1098(84)90028-1 +João Yoshiyuki Ishihara,Robust state prediction for descriptor systems.,2008,44,Automatica,8,db/journals/automatica/automatica44.html#IshiharaT08,https://doi.org/10.1016/j.automatica.2007.11.010 +David G. Meyer,Annihilator structure of a principal ideal : Relation to optimal compensators.,1988,24,Automatica,6,db/journals/automatica/automatica24.html#Meyer88,https://doi.org/10.1016/0005-1098(88)90060-X +Boonruk Suchaitanawanit,Mechanical structure optimization in minimum-time motion control of flexible bodies.,2015,62,Automatica,,db/journals/automatica/automatica62.html#Suchaitanawanit15,https://doi.org/10.1016/j.automatica.2015.09.020 +O. A. Sebakhy,A design procedure for multivariable regulators.,1976,12,Automatica,5,db/journals/automatica/automatica12.html#SebakhyW76,https://doi.org/10.1016/0005-1098(76)90007-8 +Keqin Gu,Stability problem of systems with multiple delay channels.,2010,46,Automatica,4,db/journals/automatica/automatica46.html#Gu10,https://doi.org/10.1016/j.automatica.2010.01.028 +Marco C. Campi,Guaranteed non-asymptotic confidence regions in system identification.,2005,41,Automatica,10,db/journals/automatica/automatica41.html#CampiW05,https://doi.org/10.1016/j.automatica.2005.05.005 +Brett Ninness,A Stochastic Approach to Linear Estimation in H∞.,1998,34,Automatica,4,db/journals/automatica/automatica34.html#Ninness98,https://doi.org/10.1016/S0005-1098(97)00219-7 +Jean-Michel Dion,Generic properties and control of linear structured systems: a survey.,2003,39,Automatica,7,db/journals/automatica/automatica39.html#DionCW03,https://doi.org/10.1016/S0005-1098(03)00104-3 +Michael J. Chapman,Nonlinear compartmental model indistinguishability.,1996,32,Automatica,3,db/journals/automatica/automatica32.html#ChapmanG96,https://doi.org/10.1016/0005-1098(95)00152-2 +Xinhua Wang 0001,Tracking control for a velocity-sensorless VTOL aircraft with delayed outputs.,2009,45,Automatica,12,db/journals/automatica/automatica45.html#WangLC09,https://doi.org/10.1016/j.automatica.2009.09.003 +Diego Napp,Time-relevant stability of 2D systems.,2011,47,Automatica,11,db/journals/automatica/automatica47.html#NappRR11,https://doi.org/10.1016/j.automatica.2011.08.041 +Vito Cerone,Set-membership errors-in-variables identification of MIMO linear systems.,2018,90,Automatica,,db/journals/automatica/automatica90.html#CeroneRR18,https://doi.org/10.1016/j.automatica.2017.12.042 +Moritz Schulze Darup,Optimization-free robust MPC around the terminal region.,2018,95,Automatica,,db/journals/automatica/automatica95.html#DarupM18,https://doi.org/10.1016/j.automatica.2018.05.025 +Chung-Yao Kao,Stability analysis of systems with uncertain time-varying delays.,2007,43,Automatica,6,db/journals/automatica/automatica43.html#KaoR07,https://doi.org/10.1016/j.automatica.2006.12.006 +Antoine Girard,Controller synthesis for safety and reachability via approximate bisimulation.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#Girard12,https://doi.org/10.1016/j.automatica.2012.02.037 +Qing Zhu,On sliding mode control of single input Markovian jump systems.,2014,50,Automatica,11,db/journals/automatica/automatica50.html#ZhuYSFCY14,https://doi.org/10.1016/j.automatica.2014.10.008 +Vincent D. Blondel,A rational test for strong stabilization.,1995,31,Automatica,8,db/journals/automatica/automatica31.html#BlondelL95,https://doi.org/10.1016/0005-1098(95)00028-U +Jeng-Tze Huang,Hybrid-based adaptive NN backstepping control of strict-feedback systems.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#Huang09,https://doi.org/10.1016/j.automatica.2009.02.012 +Farzad Salehisadaghiani,Distributed Nash equilibrium seeking in networked graphical games.,2018,87,Automatica,,db/journals/automatica/automatica87.html#Salehisadaghiani18,https://doi.org/10.1016/j.automatica.2017.09.016 +Xianqing Huang,Global finite-time stabilization of a class of uncertain nonlinear systems.,2005,41,Automatica,5,db/journals/automatica/automatica41.html#HuangLY05,https://doi.org/10.1016/j.automatica.2004.11.036 +Keith R. Godfrey,Factors affecting the identifiability of compartmental models.,1982,18,Automatica,3,db/journals/automatica/automatica18.html#GodfreyJBN82,https://doi.org/10.1016/0005-1098(82)90088-7 +Daniel E. Miller,An algebraic characterization of quotient decentralized fixed modes.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#MillerD12,https://doi.org/10.1016/j.automatica.2012.05.009 +Alexander M. Letov,A message to readers of the journal.,1969,5,Automatica,1,db/journals/automatica/automatica5.html#LetovM69,https://doi.org/10.1016/0005-1098(69)90046-6 +Tom Gommans,Self-triggered linear quadratic control.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#GommansADTH14,https://doi.org/10.1016/j.automatica.2014.02.030 +Pan Zhao,Switching LPV controller design under uncertain scheduling parameters.,2017,76,Automatica,,db/journals/automatica/automatica76.html#ZhaoN17,https://doi.org/10.1016/j.automatica.2016.10.026 +Magdi S. Mahmoud,Decentralized sliding-mode output-feedback control of interconnected discrete-delay systems.,2012,48,Automatica,5,db/journals/automatica/automatica48.html#MahmoudQ12,https://doi.org/10.1016/j.automatica.2012.02.008 +Brian D. O. Anderson,Autoregressive models of singular spectral matrices.,2012,48,Automatica,11,db/journals/automatica/automatica48.html#AndersonDCF12,https://doi.org/10.1016/j.automatica.2012.05.047 +Knut Graichen,Swing-up of the double pendulum on a cart by feedforward and feedback control with experimental validation.,2007,43,Automatica,1,db/journals/automatica/automatica43.html#GraichenTZ07,https://doi.org/10.1016/j.automatica.2006.07.023 +Xudong Ye,Universal lambda-tracking for nonlinearly-perturbed systems without restrictions on the relative degree.,1999,35,Automatica,1,db/journals/automatica/automatica35.html#Ye99,https://doi.org/10.1016/S0005-1098(98)00135-6 +Tingshu Hu,Conjugate Lyapunov functions for saturated linear systems.,2005,41,Automatica,11,db/journals/automatica/automatica41.html#HuGTL05,https://doi.org/10.1016/j.automatica.2005.05.021 +Benedetto Piccoli,Stochastic algorithms for robustness of control performances.,2009,45,Automatica,6,db/journals/automatica/automatica45.html#PiccoliZG09,https://doi.org/10.1016/j.automatica.2009.02.018 +Ziyue Ma,Petri net controllers for Generalized Mutual Exclusion Constraints with floor operators.,2016,74,Automatica,,db/journals/automatica/automatica74.html#MaLG16,https://doi.org/10.1016/j.automatica.2016.07.042 +Mark L. Psiaki,Square-root information filtering and fixed-interval smoothing with singularities.,1999,35,Automatica,7,db/journals/automatica/automatica35.html#Psiaki99,https://doi.org/10.1016/S0005-1098(99)00027-8 +Amit Ailon,On controllability and trajectory tracking of a kinematic vehicle model.,2005,41,Automatica,5,db/journals/automatica/automatica41.html#AilonBA05,https://doi.org/10.1016/j.automatica.2004.11.025 +Uwe Helmke,A controllability test for general first-order representations.,1997,33,Automatica,2,db/journals/automatica/automatica33.html#HelmkeRS97,https://doi.org/10.1016/S0005-1098(96)00154-9 +Riccardo Scattolini,Generalized minimum variance control of MIMO systems - A stability result.,1987,23,Automatica,6,db/journals/automatica/automatica23.html#ScattoliniS87,https://doi.org/10.1016/0005-1098(87)90042-2 +Marko Seslija,Explicit simplicial discretization of distributed-parameter port-Hamiltonian systems.,2014,50,Automatica,2,db/journals/automatica/automatica50.html#SeslijaSS14,https://doi.org/10.1016/j.automatica.2013.11.020 +Lin Yan,A variable structure model reference robust control without a prior knowledge of high frequency gain sign.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#YanHCL08,https://doi.org/10.1016/j.automatica.2007.08.011 +Ricardo Julián Mantz,Output overshoots in systems with integral action operating in sliding mode.,1999,35,Automatica,6,db/journals/automatica/automatica35.html#MantzPB99,https://doi.org/10.1016/S0005-1098(99)00019-9 +Lyndon J. Brown,Periodic disturbance cancellation with uncertain frequency.,2004,40,Automatica,4,db/journals/automatica/automatica40.html#BrownZ04,https://doi.org/10.1016/j.automatica.2003.10.024 +Elmer G. Gilbert,Nonlinear tracking control in the presence of state and control constraints: a generalized reference governor.,2002,38,Automatica,12,db/journals/automatica/automatica38.html#GilbertK02,https://doi.org/10.1016/S0005-1098(02)00135-8 +Ali Chibani,Design of robust fuzzy fault detection filter for polynomial fuzzy systems with new finite frequency specifications.,2018,93,Automatica,,db/journals/automatica/automatica93.html#ChibaniCDB18,https://doi.org/10.1016/j.automatica.2018.03.024 +Jiandong Wang,Revisiting Hammerstein system identification through the Two-Stage Algorithm for bilinear parameter estimation.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#WangZL09,https://doi.org/10.1016/j.automatica.2009.07.033 +Rushikesh Kamalapurkar,Approximate optimal trajectory tracking for continuous-time nonlinear systems.,2015,51,Automatica,,db/journals/automatica/automatica51.html#KamalapurkarDBD15,https://doi.org/10.1016/j.automatica.2014.10.103 +Andrew Clark,Maximizing the smallest eigenvalue of a symmetric matrix: A submodular optimization approach.,2018,95,Automatica,,db/journals/automatica/automatica95.html#ClarkHBP18,https://doi.org/10.1016/j.automatica.2018.06.016 +Scott Beatty,Book review.,2011,47,Automatica,9,db/journals/automatica/automatica47.html#Beatty11,https://doi.org/10.1016/j.automatica.2011.04.010 +T. Támos,Anticipatory systems: Robert Rosen.,1987,23,Automatica,1,db/journals/automatica/automatica23.html#Tamos87,https://doi.org/10.1016/0005-1098(87)90124-5 +Wen-an Zhang,Modelling and control of networked control systems with both network-induced delay and packet-dropout.,2008,44,Automatica,12,db/journals/automatica/automatica44.html#ZhangY08,https://doi.org/10.1016/j.automatica.2008.09.001 +Masood Dehghan,Characterization and computation of disturbance invariant sets for constrained switched linear systems with dwell time restriction.,2012,48,Automatica,9,db/journals/automatica/automatica48.html#DehghanO12a,https://doi.org/10.1016/j.automatica.2012.06.007 +Huazhen Fang,On the asymptotic stability of minimum-variance unbiased input and state estimation.,2012,48,Automatica,12,db/journals/automatica/automatica48.html#FangC12,https://doi.org/10.1016/j.automatica.2012.08.039 +Paul M. J. Van den Hof,An indirect method for transfer function estimation from closed loop data.,1993,29,Automatica,6,db/journals/automatica/automatica29.html#HofS93,https://doi.org/10.1016/0005-1098(93)90015-L +Marek Rydel,A new frequency weighted Fourier-based method for model order reduction.,2018,88,Automatica,,db/journals/automatica/automatica88.html#RydelS18,https://doi.org/10.1016/j.automatica.2017.11.016 +Xiaodi Li,Stability of nonlinear differential systems with state-dependent delayed impulses.,2016,64,Automatica,,db/journals/automatica/automatica64.html#LiW16,https://doi.org/10.1016/j.automatica.2015.10.002 +Fei Miao,A hybrid stochastic game for secure control of cyber-physical systems.,2018,93,Automatica,,db/journals/automatica/automatica93.html#MiaoZPP18,https://doi.org/10.1016/j.automatica.2018.03.012 +Wei Liu,State estimation for discrete-time Markov jump linear systems with time-correlated and mode-dependent measurement noise.,2017,85,Automatica,,db/journals/automatica/automatica85.html#LiuSP17,https://doi.org/10.1016/j.automatica.2017.07.025 +Balaji Prabhakar,On the speedup required for combined input- and output-queued switching.,1999,35,Automatica,12,db/journals/automatica/automatica35.html#PrabhakarM99,https://doi.org/10.1016/S0005-1098(99)00129-6 +Ahmadreza Jenabzadeh,A Lyapunov-based distributed consensus filter for a class of nonlinear stochastic systems.,2017,86,Automatica,,db/journals/automatica/automatica86.html#JenabzadehS17,https://doi.org/10.1016/j.automatica.2017.08.005 +Xiaoli Luan,Higher order moment stability region for Markov jump systems based on cumulant generating function.,2018,93,Automatica,,db/journals/automatica/automatica93.html#LuanHL18,https://doi.org/10.1016/j.automatica.2018.03.032 +J. Dwight Aplevich,Time-domain input-output representations of linear systems.,1981,17,Automatica,3,db/journals/automatica/automatica17.html#Aplevich81,https://doi.org/10.1016/0005-1098(81)90008-X +Ben M. Chen,Necessary and sufficient conditions for a nonminimum phase plant to have a recoverable target loop - A stable compensator design for LTR.,1992,28,Automatica,3,db/journals/automatica/automatica28.html#ChenSS92,https://doi.org/10.1016/0005-1098(92)90174-E +Huai-Ning Wu,Guaranteed cost fuzzy state observer design for semilinear parabolic PDE systems under pointwise measurements.,2017,85,Automatica,,db/journals/automatica/automatica85.html#WuZ17,https://doi.org/10.1016/j.automatica.2017.07.026 +Zhong-Ping Jiang,Decentralized disturbance attenuating output-feedback trackers for large-scale nonlinear systems.,2002,38,Automatica,8,db/journals/automatica/automatica38.html#Jiang02b,https://doi.org/10.1016/S0005-1098(02)00039-0 +Bin Zhou 0001,A parametric Lyapunov equation approach to low gain feedback design for discrete-time systems.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#ZhouLD09,https://doi.org/10.1016/j.automatica.2008.06.019 +Giuseppe Notarstefano,Containment in leader-follower networks with switching communication topologies.,2011,47,Automatica,5,db/journals/automatica/automatica47.html#NotarstefanoEH11,https://doi.org/10.1016/j.automatica.2011.01.077 +Chi-Man Kwan,Author's reply to Dr Phadke's comments.,1996,32,Automatica,2,db/journals/automatica/automatica32.html#Kwan96,https://doi.org/10.1016/S0005-1098(96)90008-4 +Wen Yang,Stochastic link activation for distributed filtering under sensor power constraint.,2017,75,Automatica,,db/journals/automatica/automatica75.html#YangYSSC17,https://doi.org/10.1016/j.automatica.2016.09.009 +Pavel S. Shcherbakov,Alexander mikhailovitch lyapunov: On the centenary of his doctoral dissertation on stability of motion.,1992,28,Automatica,5,db/journals/automatica/automatica28.html#Shcherbakov92,https://doi.org/10.1016/0005-1098(92)90140-B +Mohammed M'Saad,A suitable generalized predictive adaptive controller case study: Control of a flexible arm.,1993,29,Automatica,3,db/journals/automatica/automatica29.html#MSaadDH93,https://doi.org/10.1016/0005-1098(93)90057-Z +Chih-Chiang Cheng,Sliding mode controllers design for linear discrete-time systems with matching perturbations.,2000,36,Automatica,8,db/journals/automatica/automatica36.html#ChengLH00,https://doi.org/10.1016/S0005-1098(00)00030-3 +Frank M. Callier,Control system synthesis: A factorization approach : M. Vidyasagar.,1986,22,Automatica,4,db/journals/automatica/automatica22.html#Callier86,https://doi.org/10.1016/0005-1098(86)90058-0 +Iasson Karafyllis,Stabilization of nonlinear delay systems using approximate predictors and high-gain observers.,2013,49,Automatica,12,db/journals/automatica/automatica49.html#KarafyllisK13a,https://doi.org/10.1016/j.automatica.2013.09.006 +Zhengtao Ding,Global output regulation of uncertain nonlinear systems with exogenous signals.,2001,37,Automatica,1,db/journals/automatica/automatica37.html#Ding01,https://doi.org/10.1016/S0005-1098(00)00129-1 +Maria Letizia Corradini,On the adoption of a fractional-order sliding surface for the robust control of integer-order LTI plants.,2015,51,Automatica,,db/journals/automatica/automatica51.html#CorradiniGP15,https://doi.org/10.1016/j.automatica.2014.10.075 +Stéphane Thil,Unifying some higher-order statistic-based methods for errors-in-variables model identification.,2009,45,Automatica,8,db/journals/automatica/automatica45.html#ThilZGG09,https://doi.org/10.1016/j.automatica.2009.04.019 +Adolf H. Glattfelder,Hydropower reservoir level control: A case study.,1993,29,Automatica,5,db/journals/automatica/automatica29.html#GlattfelderH93,https://doi.org/10.1016/0005-1098(93)90047-W +Randa Herzallah,Adaptive critic methods for stochastic systems with input-dependent noise.,2007,43,Automatica,8,db/journals/automatica/automatica43.html#Herzallah07,https://doi.org/10.1016/j.automatica.2007.01.023 +Jacques Kiseta Sabiti,A fast estimation method for ARMA processes.,1996,32,Automatica,2,db/journals/automatica/automatica32.html#Sabiti96,https://doi.org/10.1016/0005-1098(96)85553-1 +Georgios B. Giannakis,Lessons in digital estimation theory: Jerry M. Mendel.,1990,26,Automatica,1,db/journals/automatica/automatica26.html#Giannakis90,https://doi.org/10.1016/0005-1098(90)90172-E +Peter Kingston,Time and output warping of control systems: Comparing and imitating motions.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#KingstonE11,https://doi.org/10.1016/j.automatica.2011.03.004 +Shu Liang,Distributed sub-optimal resource allocation over weight-balanced graph via singular perturbation.,2018,95,Automatica,,db/journals/automatica/automatica95.html#LiangZH18,https://doi.org/10.1016/j.automatica.2018.05.013 +Alain Rapaport,Practical L2 disturbance attenuation for nonlinear systems.,2002,38,Automatica,1,db/journals/automatica/automatica38.html#RapaportA02,https://doi.org/10.1016/S0005-1098(01)00176-5 +José Claudio Geromel,Decentralized control through parameter space optimization.,1994,30,Automatica,10,db/journals/automatica/automatica30.html#GeromelBP94,https://doi.org/10.1016/0005-1098(94)90096-5 +Anna Maria Perdon,Invertibility and inversion of linear periodic systems.,1992,28,Automatica,3,db/journals/automatica/automatica28.html#PerdonCL92,https://doi.org/10.1016/0005-1098(92)90192-I +Dina Shona Laila,Input-to-state stability for discrete-time time-varying systems with applications to robust stabilization of systems in power form.,2005,41,Automatica,11,db/journals/automatica/automatica41.html#LailaA05,https://doi.org/10.1016/j.automatica.2005.06.003 +Zhong-Ping Jiang,Nonlinear small-gain theorems for discrete-time feedback systems and applications.,2004,40,Automatica,12,db/journals/automatica/automatica40.html#JiangLW04,https://doi.org/10.1016/j.automatica.2004.08.002 +Franz S. Hover,Gradient dynamic optimization with Legendre chaos.,2008,44,Automatica,1,db/journals/automatica/automatica44.html#Hover08,https://doi.org/10.1016/j.automatica.2007.06.001 +George S. Axelby,Technical communiques and correspondence.,1980,16,Automatica,6,db/journals/automatica/automatica16.html#AxelbyL80,https://doi.org/10.1016/0005-1098(80)90002-3 +Zhendong Sun,A note on connectivity of multi-agent systems with proximity graphs and linear feedback protocol.,2009,45,Automatica,8,db/journals/automatica/automatica45.html#SunH09,https://doi.org/10.1016/j.automatica.2009.03.027 +John E. Seem,A New Pattern Recognition Adaptive Controller with Application to HVAC Systems.,1998,34,Automatica,8,db/journals/automatica/automatica34.html#Seem98,https://doi.org/10.1016/S0005-1098(98)00033-8 +Andrew R. Teel,"On ""uniformity"" in definitions of global asymptotic stability for time-varying nonlinear systems.",2006,42,Automatica,12,db/journals/automatica/automatica42.html#TeelZ06,https://doi.org/10.1016/j.automatica.2006.07.012 +Jie Chen 0005,Sensitivity integrals for multivariable discrete-time systems.,1995,31,Automatica,8,db/journals/automatica/automatica31.html#ChenN95,https://doi.org/10.1016/0005-1098(95)00032-R +Xing-Gang Yan,Decentralised stabilisation for nonlinear time delay interconnected systems using static output feedback.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#YanSE13,https://doi.org/10.1016/j.automatica.2012.11.040 +Edoardo Mosca,Stable redesign of predictive control.,1992,28,Automatica,6,db/journals/automatica/automatica28.html#MoscaZ92,https://doi.org/10.1016/0005-1098(92)90065-N +J. Beyens,Modern control theory (second edition) : William L. Brogan.,1988,24,Automatica,1,db/journals/automatica/automatica24.html#Beyens88,https://doi.org/10.1016/0005-1098(88)90019-2 +Huaping Liu,Controller design for Markov jumping systems subject to actuator saturation.,2006,42,Automatica,3,db/journals/automatica/automatica42.html#LiuBSH06,https://doi.org/10.1016/j.automatica.2005.10.017 +Rick H. Middleton,Indirect continuous time adaptive control.,1987,23,Automatica,6,db/journals/automatica/automatica23.html#Middleton87,https://doi.org/10.1016/0005-1098(87)90041-0 +Sayan Ghosal,Model detection with application to probe based data storage.,2016,74,Automatica,,db/journals/automatica/automatica74.html#GhosalSS16,https://doi.org/10.1016/j.automatica.2016.07.039 +Loo Hay Lee,Computing budget allocation rules for multi-objective simulation models based on different measures of selection quality.,2010,46,Automatica,12,db/journals/automatica/automatica46.html#LeeCT10,https://doi.org/10.1016/j.automatica.2010.08.004 +Wei Guo,Performance output tracking for a wave equation subject to unmatched general boundary harmonic disturbance.,2016,68,Automatica,,db/journals/automatica/automatica68.html#GuoG16,https://doi.org/10.1016/j.automatica.2016.01.041 +Emilia Fridman,New stability and exact observability conditions for semilinear wave equations.,2016,63,Automatica,,db/journals/automatica/automatica63.html#FridmanT16,https://doi.org/10.1016/j.automatica.2015.10.008 +Ricardo G. Sanfelice,Robust supervisory control for uniting two output-feedback hybrid controllers with different objectives.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#SanfeliceP13,https://doi.org/10.1016/j.automatica.2013.03.009 +Eduardo Ramírez-Llanos,A distributed dynamics for virus-spread control.,2017,76,Automatica,,db/journals/automatica/automatica76.html#Ramirez-LlanosM17,https://doi.org/10.1016/j.automatica.2016.09.002 +Franco Blanchini,Stability results for linear parameter varying and switching systems.,2007,43,Automatica,10,db/journals/automatica/automatica43.html#BlanchiniMS07,https://doi.org/10.1016/j.automatica.2007.03.002 +Eugenius Kaszkurewicz,Stability of nonlinear systems: A structural approach.,1979,15,Automatica,5,db/journals/automatica/automatica15.html#KaszkurewiczH79,https://doi.org/10.1016/0005-1098(79)90009-8 +Shuai Yuan,A novel Lyapunov function for a non-weighted L2 gain of asynchronously switched linear systems.,2018,87,Automatica,,db/journals/automatica/automatica87.html#YuanZSB18,https://doi.org/10.1016/j.automatica.2017.10.018 +Sandra Hirche,A distributed controller approach for delay-independent stability of networked control systems.,2009,45,Automatica,8,db/journals/automatica/automatica45.html#HircheMB09,https://doi.org/10.1016/j.automatica.2009.04.016 +Sarat C. Puthenpura,Modified maximum likelihood method for the robust estimation of system parameters from very noisy data.,1986,22,Automatica,2,db/journals/automatica/automatica22.html#PuthenpuraS86,https://doi.org/10.1016/0005-1098(86)90085-3 +Federico Najson,On compensation for neglected actuator dynamics.,1994,30,Automatica,9,db/journals/automatica/automatica30.html#NajsonK94,https://doi.org/10.1016/0005-1098(94)90020-5 +Luca Zaccarian,The I (l2) bumpless transfer problem for linear plants: Its definition and solution.,2005,41,Automatica,7,db/journals/automatica/automatica41.html#ZaccarianT05,https://doi.org/10.1016/j.automatica.2005.02.003 +Mansour Eslami,Robustness measures in nonlinear discrete-time systems with delays and large-parameter variations.,1999,35,Automatica,1,db/journals/automatica/automatica35.html#Eslami99,https://doi.org/10.1016/S0005-1098(98)00171-X +Behçet Açikmese,Observers for systems with nonlinearities satisfying incremental quadratic constraints.,2011,47,Automatica,7,db/journals/automatica/automatica47.html#AcikmeseC11,https://doi.org/10.1016/j.automatica.2011.02.017 +Sofiane Khadraoui,A model-free design of reduced-order controllers and application to a DC servomotor.,2014,50,Automatica,8,db/journals/automatica/automatica50.html#KhadraouiNNDB14,https://doi.org/10.1016/j.automatica.2014.06.001 +A. H. W. (Ton) Geerts,Impulsive-smooth behavior in multimode systemss part II: Minimality and equivalence.,1996,32,Automatica,6,db/journals/automatica/automatica32.html#GeertsS96a,https://doi.org/10.1016/0005-1098(96)00007-6 +Alexander L. Fradkov,Passification-based robust flight control design.,2011,47,Automatica,12,db/journals/automatica/automatica47.html#FradkovA11,https://doi.org/10.1016/j.automatica.2011.09.004 +Johan Thunberg,Distributed attitude synchronization control of multi-agent systems with switching topologies.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#ThunbergSMHH14,https://doi.org/10.1016/j.automatica.2014.02.002 +Manuel A. Jiménez-Lizárraga,Open-loop Nash equilibrium in polynomial differential games via state-dependent Riccati equation.,2015,53,Automatica,,db/journals/automatica/automatica53.html#Jimenez-Lizarraga15,https://doi.org/10.1016/j.automatica.2014.12.035 +Marco A. Arteaga,Cartesian control of robots without dynamic model and observer design.,2006,42,Automatica,3,db/journals/automatica/automatica42.html#ArteagaCP06,https://doi.org/10.1016/j.automatica.2005.11.004 +Louis Wehenkel,Decision trees and transient stability of electric power systems.,1991,27,Automatica,1,db/journals/automatica/automatica27.html#WehenkelP91,https://doi.org/10.1016/0005-1098(91)90010-Y +Junseok Kim,A regime-switching model with the volatility smile for two-asset European options.,2014,50,Automatica,3,db/journals/automatica/automatica50.html#KimJS14,https://doi.org/10.1016/j.automatica.2013.12.019 +S. Wegrzyn,A model for developmental systems - I : Generating word without any operating system.,1989,25,Automatica,5,db/journals/automatica/automatica25.html#WegrzynGV89,https://doi.org/10.1016/0005-1098(89)90025-3 +Dapeng Yang,Decentralized event-triggered consensus for linear multi-agent systems under general directed graphs.,2016,69,Automatica,,db/journals/automatica/automatica69.html#YangRLC16,https://doi.org/10.1016/j.automatica.2016.03.003 +Chang Tan,A direct MRAC based multivariable multiple-model switching control scheme.,2017,84,Automatica,,db/journals/automatica/automatica84.html#TanTQY17,https://doi.org/10.1016/j.automatica.2017.07.020 +Karl Johan åström,A robust sampled regulator for stable systems with monotone step responses.,1980,16,Automatica,3,db/journals/automatica/automatica16.html#Astrom80,https://doi.org/10.1016/0005-1098(80)90039-4 +Xianwei Li,Robust finite frequency H∞ filtering for uncertain 2-D systems: The FM model case.,2013,49,Automatica,8,db/journals/automatica/automatica49.html#LiG13,https://doi.org/10.1016/j.automatica.2013.04.014 +Zhen-Dong Yuan,Unprejudiced optimal open loop input design for identification of transfer functions.,1985,21,Automatica,6,db/journals/automatica/automatica21.html#YuanL85,https://doi.org/10.1016/0005-1098(85)90043-3 +André R. Fioravanti,A numerical method for stability windows and unstable root-locus calculation for linear fractional time-delay systems.,2012,48,Automatica,11,db/journals/automatica/automatica48.html#FioravantiBON12,https://doi.org/10.1016/j.automatica.2012.04.009 +Pieter Eykhoff,Research survey.,1983,19,Automatica,5,db/journals/automatica/automatica19.html#Eykhoff83,https://doi.org/10.1016/0005-1098(83)90015-8 +Bin Jia,High-degree cubature Kalman filter.,2013,49,Automatica,2,db/journals/automatica/automatica49.html#JiaXC13,https://doi.org/10.1016/j.automatica.2012.11.014 +Magdi S. Mahmoud,Robust Design of Stabilizing Controllers for Interconnected Time-delay Systems.,1998,34,Automatica,6,db/journals/automatica/automatica34.html#MahmoudB98,https://doi.org/10.1016/S0005-1098(97)00229-X +Hongkeun Kim,Consensus of output-coupled linear multi-agent systems under fast switching network: Averaging approach.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#KimSBS13,https://doi.org/10.1016/j.automatica.2012.09.025 +S. Samba,Global stabilization of a class of quadratic systems.,1992,28,Automatica,5,db/journals/automatica/automatica28.html#SambaV92,https://doi.org/10.1016/0005-1098(92)90163-A +O. L. R. Jacobs,Fishery management as a problem in feedback control.,1991,27,Automatica,4,db/journals/automatica/automatica27.html#JacobsBH91,https://doi.org/10.1016/0005-1098(91)90054-6 +Huan-Yuan Chen,On the adaptive control of a class of systems with random parameters and disturbances.,1985,21,Automatica,6,db/journals/automatica/automatica21.html#ChenC85,https://doi.org/10.1016/0005-1098(85)90047-0 +Kok Lay Teo,A new computational algorithm for functional inequality constrained optimization problems.,1993,29,Automatica,3,db/journals/automatica/automatica29.html#TeoRJ93,https://doi.org/10.1016/0005-1098(93)90076-6 +Wolfgang Reinelt,Comparing different approaches to model error modeling in robust identification.,2002,38,Automatica,5,db/journals/automatica/automatica38.html#ReineltGL02,https://doi.org/10.1016/S0005-1098(01)00269-2 +S.-T. Chung,Sampled-data observer error linearization.,1990,26,Automatica,6,db/journals/automatica/automatica26.html#ChungG90,https://doi.org/10.1016/0005-1098(90)90084-U +Jorge Cortés,Finite-time convergent gradient flows with applications to network consensus.,2006,42,Automatica,11,db/journals/automatica/automatica42.html#Cortes06,https://doi.org/10.1016/j.automatica.2006.06.015 +Adrian M. Thompson,Stochastic iterative dynamic programming: a Monte Carlo approach to dual control.,2005,41,Automatica,5,db/journals/automatica/automatica41.html#ThompsonC05,https://doi.org/10.1016/j.automatica.2004.12.003 +Xiwang Dong,Time-varying formation control for general linear multi-agent systems with switching directed topologies.,2016,73,Automatica,,db/journals/automatica/automatica73.html#DongH16,https://doi.org/10.1016/j.automatica.2016.06.024 +Emanuele Garone,Reference and command governors for systems with constraints: A survey on theory and applications.,2017,75,Automatica,,db/journals/automatica/automatica75.html#GaroneCK17,https://doi.org/10.1016/j.automatica.2016.08.013 +Johannes Tjønnås,Adaptive control allocation.,2008,44,Automatica,11,db/journals/automatica/automatica44.html#TjonnasJ08,https://doi.org/10.1016/j.automatica.2008.03.031 +Tae H. Lee,Relaxed conditions for stability of time-varying delay systems.,2017,75,Automatica,,db/journals/automatica/automatica75.html#LeePX17,https://doi.org/10.1016/j.automatica.2016.08.011 +Aivar Sootla,Optimal control formulation of pulse-based control using Koopman operator.,2018,91,Automatica,,db/journals/automatica/automatica91.html#SootlaME18,https://doi.org/10.1016/j.automatica.2018.01.036 +Ahmad Hemami,Synthesis of an optimal control law for path tracking in mobile robots.,1992,28,Automatica,2,db/journals/automatica/automatica28.html#HemamiMC92,https://doi.org/10.1016/0005-1098(92)90123-W +Woo Sok Chang,Analysis and design of two types of digital repetitive control systems.,1995,31,Automatica,5,db/journals/automatica/automatica31.html#ChangSK95,https://doi.org/10.1016/0005-1098(94)00156-D +Anh-Tu Nguyen,Gain-scheduled static output feedback control for saturated LPV systems with bounded parameter variations.,2018,89,Automatica,,db/journals/automatica/automatica89.html#NguyenCC18,https://doi.org/10.1016/j.automatica.2017.12.027 +Dennis S. Bernstein,A popov criterion for uncertain linear multivariable systems.,1995,31,Automatica,7,db/journals/automatica/automatica31.html#BernsteinHS95,https://doi.org/10.1016/0005-1098(95)00025-R +Jozef Vörös,Parameter identification of discontinuous hammerstein systems.,1997,33,Automatica,6,db/journals/automatica/automatica33.html#Voros97,https://doi.org/10.1016/S0005-1098(97)00009-5 +U. A. Luoto,Committee on applications.,1969,5,Automatica,5,db/journals/automatica/automatica5.html#LuotoN69,https://doi.org/10.1016/0005-1098(69)90034-X +Yuanqing Xia,Control for discrete singular hybrid systems.,2008,44,Automatica,10,db/journals/automatica/automatica44.html#XiaZB08,https://doi.org/10.1016/j.automatica.2008.02.027 +R. W. House,What is system planning?,1969,5,Automatica,2,db/journals/automatica/automatica5.html#HouseW69,https://doi.org/10.1016/0005-1098(69)90008-9 +Saadia Faisal,Structural properties of continuous representations of Boolean functions for gene network modelling.,2010,46,Automatica,12,db/journals/automatica/automatica46.html#FaisalLTA10,https://doi.org/10.1016/j.automatica.2010.09.001 +James Richard Forbes,Continuous-time norm-constrained Kalman filtering.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#ForbesRZ14,https://doi.org/10.1016/j.automatica.2014.08.007 +Xiang Yin 0003,A new approach for the verification of infinite-step and K-step opacity using two-way observers.,2017,80,Automatica,,db/journals/automatica/automatica80.html#YinL17a,https://doi.org/10.1016/j.automatica.2017.02.037 +Gary M. H. Leung,Performance analysis of sampled-data control systems.,1991,27,Automatica,4,db/journals/automatica/automatica27.html#LeungPF91,https://doi.org/10.1016/0005-1098(91)90060-F +,Obituary.,1976,12,Automatica,6,db/journals/automatica/automatica12.html#X76,https://doi.org/10.1016/0005-1098(76)90035-2 +Mustafa ç. Pinar,Non-linear pricing by convex duality.,2015,53,Automatica,,db/journals/automatica/automatica53.html#Pinar15,https://doi.org/10.1016/j.automatica.2015.01.027 +Sanad Al-Areqi,Event-based networked control and scheduling codesign with guaranteed performance.,2015,57,Automatica,,db/journals/automatica/automatica57.html#Al-AreqiGL15,https://doi.org/10.1016/j.automatica.2015.04.003 +Michel Kinnaert,Discrete-time pole placement with stable controller.,1992,28,Automatica,5,db/journals/automatica/automatica28.html#KinnaertB92,https://doi.org/10.1016/0005-1098(92)90146-7 +Michelle Chong,A robust circle criterion observer with application to neural mass models.,2012,48,Automatica,11,db/journals/automatica/automatica48.html#ChongPNKV12,https://doi.org/10.1016/j.automatica.2012.08.008 +Cameron Nowzari,Distributed event-triggered coordination for average consensus on weight-balanced digraphs.,2016,68,Automatica,,db/journals/automatica/automatica68.html#NowzariC16,https://doi.org/10.1016/j.automatica.2016.01.069 +Giorgio Bartolini,Sliding mode output-feedback stabilization of uncertain nonlinear nonaffine systems.,2012,48,Automatica,12,db/journals/automatica/automatica48.html#BartoliniP12,https://doi.org/10.1016/j.automatica.2012.08.015 +Laurent Foulloy,Towards symbolic process control.,1994,30,Automatica,3,db/journals/automatica/automatica30.html#FoulloyZ94,https://doi.org/10.1016/0005-1098(94)90116-3 +David R. Audley,A method of constructing minimal approximate realizations of linear input-output behavior.,1977,13,Automatica,4,db/journals/automatica/automatica13.html#Audley77,https://doi.org/10.1016/0005-1098(77)90025-5 +B. J. P. Roset,On robustness of constrained discrete-time systems to state measurement errors.,2008,44,Automatica,4,db/journals/automatica/automatica44.html#RosetHLN08,https://doi.org/10.1016/j.automatica.2007.08.002 +Qiang Jiao,Multi-agent zero-sum differential graphical games for disturbance rejection in distributed control.,2016,69,Automatica,,db/journals/automatica/automatica69.html#JiaoMXLV16,https://doi.org/10.1016/j.automatica.2016.02.002 +Mazyar Mirrahimi,Lyapunov control of bilinear Schrödinger equations.,2005,41,Automatica,11,db/journals/automatica/automatica41.html#MirrahimiRT05,https://doi.org/10.1016/j.automatica.2005.05.018 +Luigi Iannelli,Averaging of nonsmooth systems using dither.,2006,42,Automatica,4,db/journals/automatica/automatica42.html#IannelliJJV06,https://doi.org/10.1016/j.automatica.2005.12.012 +Milena Anguelova,State elimination and identifiability of the delay parameter for nonlinear time-delay systems.,2008,44,Automatica,5,db/journals/automatica/automatica44.html#AnguelovaW08,https://doi.org/10.1016/j.automatica.2007.10.013 +Ali Bazaei,Synthesis of modulated-demodulated control systems.,2014,50,Automatica,7,db/journals/automatica/automatica50.html#BazaeiM14,https://doi.org/10.1016/j.automatica.2014.05.015 +Swann Marx,Output feedback stabilization of the Korteweg-de Vries equation.,2018,87,Automatica,,db/journals/automatica/automatica87.html#MarxC18,https://doi.org/10.1016/j.automatica.2017.07.057 +Bin Liu 0003,Razumikhin-type stability theorems for discrete delay systems.,2007,43,Automatica,7,db/journals/automatica/automatica43.html#LiuM07,https://doi.org/10.1016/j.automatica.2006.12.032 +Christos Schizas,A graph theoretic approach to multivariable control system design.,1981,17,Automatica,2,db/journals/automatica/automatica17.html#SchizasE81,https://doi.org/10.1016/0005-1098(81)90054-6 +Alireza Farhadi,Stability and reliable data reconstruction of uncertain dynamic systems over finite capacity channels.,2010,46,Automatica,5,db/journals/automatica/automatica46.html#FarhadiC10,https://doi.org/10.1016/j.automatica.2010.02.002 +Xianping Guo,Minimax control for discrete-time time-varying stochastic systems.,2002,38,Automatica,11,db/journals/automatica/automatica38.html#GuoYL02,https://doi.org/10.1016/S0005-1098(02)00119-X +Meng Yang,Controller design for disturbance decoupling of Boolean control networks.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#YangLC13,https://doi.org/10.1016/j.automatica.2012.10.010 +Fryderyk Z. Unton,Instrumental variable method for systems with filtered white noise input.,1985,21,Automatica,2,db/journals/automatica/automatica21.html#Unton85,https://doi.org/10.1016/0005-1098(85)90114-1 +Allan De Freitas,Autonomous crowds tracking with box particle filtering and convolution particle filtering.,2016,69,Automatica,,db/journals/automatica/automatica69.html#FreitasMGAK16,https://doi.org/10.1016/j.automatica.2016.03.009 +Qingqing Wang,Robust adaptive control of a class of nonlinear systems including actuator hysteresis with Prandtl-Ishlinskii presentations.,2006,42,Automatica,5,db/journals/automatica/automatica42.html#WangS06,https://doi.org/10.1016/j.automatica.2006.01.018 +Ligang Wu,Event-triggered sliding mode control of stochastic systems via output feedback.,2017,82,Automatica,,db/journals/automatica/automatica82.html#WuGLL17,https://doi.org/10.1016/j.automatica.2017.04.032 +Ulrich Kramer,On the application of fuzzy sets to the analysis of the system driver-vehicle-environment.,1985,21,Automatica,1,db/journals/automatica/automatica21.html#Kramer85,https://doi.org/10.1016/0005-1098(85)90102-5 +S. Emre Tuna,Synchronization under matrix-weighted Laplacian.,2016,73,Automatica,,db/journals/automatica/automatica73.html#Tuna16,https://doi.org/10.1016/j.automatica.2016.06.012 +Wen-an Zhang,A robust control approach to stabilization of networked control systems with time-varying delays.,2009,45,Automatica,10,db/journals/automatica/automatica45.html#ZhangY09a,https://doi.org/10.1016/j.automatica.2009.05.024 +Zhen-Chen Guo,A modified Schur method for robust pole assignment in state feedback control.,2015,52,Automatica,,db/journals/automatica/automatica52.html#GuoCQX15,https://doi.org/10.1016/j.automatica.2014.12.028 +Brian D. O. Anderson,Easily testable sufficient conditions for the robust stability of systems with multilinear parameter dependence.,1995,31,Automatica,1,db/journals/automatica/automatica31.html#AndersonKMD95,https://doi.org/10.1016/0005-1098(94)E0049-N +Wei Lin 0001,Semi-global robust stabilization of MIMO nonlinear systems by partial state and dynamic output feedback.,2001,37,Automatica,7,db/journals/automatica/automatica37.html#LinQ01,https://doi.org/10.1016/S0005-1098(01)00056-5 +P. S. V. Nataraj,Robust feedback synthesis for nonlinear integrodifferential equation models using generalized describing functions.,1997,33,Automatica,5,db/journals/automatica/automatica33.html#NatarajDU97,https://doi.org/10.1016/S0005-1098(96)00225-7 +Lucian Busoniu,Consensus for black-box nonlinear agents using optimistic optimization.,2014,50,Automatica,4,db/journals/automatica/automatica50.html#BusoniuM14,https://doi.org/10.1016/j.automatica.2014.02.021 +Michel Gevers,Identifiability and excitation of linearly parametrized rational systems.,2016,63,Automatica,,db/journals/automatica/automatica63.html#GeversBCD16,https://doi.org/10.1016/j.automatica.2015.10.028 +Gang Li,Geometric properties of partial least squares for process monitoring.,2010,46,Automatica,1,db/journals/automatica/automatica46.html#LiQZ10,https://doi.org/10.1016/j.automatica.2009.10.030 +Dardo Marqués,On-line optimization of gas pipeline networks.,1988,24,Automatica,4,db/journals/automatica/automatica24.html#MarquesM88,https://doi.org/10.1016/0005-1098(88)90091-X +Stepehen Banks,Control systems engineering : William J. Palm.,1988,24,Automatica,1,db/journals/automatica/automatica24.html#Banks88,https://doi.org/10.1016/0005-1098(88)90016-7 +Rachid Malti,Stability and resonance conditions of elementary fractional transfer functions.,2011,47,Automatica,11,db/journals/automatica/automatica47.html#MaltiMKO11,https://doi.org/10.1016/j.automatica.2011.08.029 +Zhengyuan Zhou,Efficient path planning algorithms in reach-avoid problems.,2018,89,Automatica,,db/journals/automatica/automatica89.html#ZhouDHTT18,https://doi.org/10.1016/j.automatica.2017.11.035 +Jianguo Zhao,Non-vector space approach for nanoscale motion control.,2014,50,Automatica,7,db/journals/automatica/automatica50.html#ZhaoSXSCJ14,https://doi.org/10.1016/j.automatica.2014.04.018 +Shuzhi Sam Ge,Robust adaptive control of a class of nonlinear strict-feedback discrete-time systems with exact output tracking.,2009,45,Automatica,11,db/journals/automatica/automatica45.html#GeYDJL09,https://doi.org/10.1016/j.automatica.2009.07.025 +Alfonso Carta,Continuous-switch piecewise quadratic models of biological networks: Application to bacterial growth.,2015,61,Automatica,,db/journals/automatica/automatica61.html#CartaCG15,https://doi.org/10.1016/j.automatica.2015.07.031 +Gustavo H. C. Oliveira,Constrained robust predictive controller for uncertain processes modeled by orthonormal series functions.,2000,36,Automatica,4,db/journals/automatica/automatica36.html#OliveiraAFD00,https://doi.org/10.1016/S0005-1098(99)00179-X +Alessandro Astolfi,A globally exponentially convergent immersion and invariance speed observer for mechanical systems with non-holonomic constraints.,2010,46,Automatica,1,db/journals/automatica/automatica46.html#AstolfiOV10,https://doi.org/10.1016/j.automatica.2009.10.027 +Alper K. Caglayan,A separated bias identification and state estimation algorithm for nonlinear systems.,1983,19,Automatica,5,db/journals/automatica/automatica19.html#CaglayanL83,https://doi.org/10.1016/0005-1098(83)90012-2 +Joshua A. Marshall,Pursuit formations of unicycles.,2006,42,Automatica,1,db/journals/automatica/automatica42.html#MarshallBF06,https://doi.org/10.1016/j.automatica.2005.08.001 +Ling Shi,Sensor data scheduling for optimal state estimation with communication energy constraint.,2011,47,Automatica,8,db/journals/automatica/automatica47.html#ShiCC11,https://doi.org/10.1016/j.automatica.2011.02.037 +Arturo F. Locatelli,Further results on trajectory insensitivity.,1976,12,Automatica,3,db/journals/automatica/automatica12.html#LocatelliS76,https://doi.org/10.1016/0005-1098(76)90030-3 +S. W. Tonkin,A basic attitude instability of spacecraft with imperfect momentum wheels.,1980,16,Automatica,4,db/journals/automatica/automatica16.html#Tonkin80,https://doi.org/10.1016/0005-1098(80)90027-8 +Michael Cantoni,Computing the L2 gain for linear periodic continuous-time systems.,2009,45,Automatica,3,db/journals/automatica/automatica45.html#CantoniS09,https://doi.org/10.1016/j.automatica.2008.10.018 +Zhenbin Liu,Disturbance decoupling of mix-valued logical networks via the semi-tensor product method.,2012,48,Automatica,8,db/journals/automatica/automatica48.html#LiuW12,https://doi.org/10.1016/j.automatica.2012.05.053 +Arie Levant,Principles of 2-sliding mode design.,2007,43,Automatica,4,db/journals/automatica/automatica43.html#Levant07,https://doi.org/10.1016/j.automatica.2006.10.008 +Thomas Hélie,Computable convergence bounds of series expansions for infinite dimensional linear-analytic systems and application.,2014,50,Automatica,9,db/journals/automatica/automatica50.html#HelieL14,https://doi.org/10.1016/j.automatica.2014.07.011 +Shinji Hara,H∞ control problem with jχ9*-axis zeros.,1992,28,Automatica,1,db/journals/automatica/automatica28.html#HaraSK92,https://doi.org/10.1016/0005-1098(92)90007-3 +Radu Serban,Halo orbit mission correction maneuvers using optimal control.,2002,38,Automatica,4,db/journals/automatica/automatica38.html#SerbanKLMPRW02,https://doi.org/10.1016/S0005-1098(01)00279-5 +Itzhak Barkana,Mitigation of symmetry condition in positive realness for adaptive control.,2006,42,Automatica,9,db/journals/automatica/automatica42.html#BarkanaTH06,https://doi.org/10.1016/j.automatica.2006.05.013 +Tengfei Liu,Event-based control of nonlinear systems with partial state and output feedback.,2015,53,Automatica,,db/journals/automatica/automatica53.html#LiuJ15,https://doi.org/10.1016/j.automatica.2014.12.027 +Joost H. de Vlieger,A time-optimal control algorithm for digital computer control.,1982,18,Automatica,2,db/journals/automatica/automatica18.html#VliegerVB82,https://doi.org/10.1016/0005-1098(82)90111-X +M. A. L. Thathachar,A cooperative game of a pair of learning automata.,1984,20,Automatica,6,db/journals/automatica/automatica20.html#ThathacharR84,https://doi.org/10.1016/0005-1098(84)90089-X +Mohamed I. El-Hawwary,Reduction theorems for stability of closed sets with application to backstepping control design.,2013,49,Automatica,1,db/journals/automatica/automatica49.html#El-HawwaryM13,https://doi.org/10.1016/j.automatica.2012.09.013 +Shuang Li,Improvements in the efficiency of linear MPC.,2010,46,Automatica,1,db/journals/automatica/automatica46.html#LiKC10,https://doi.org/10.1016/j.automatica.2009.10.010 +Cheng Song,Coverage control for heterogeneous mobile sensor networks on a circle.,2016,63,Automatica,,db/journals/automatica/automatica63.html#SongLFX16,https://doi.org/10.1016/j.automatica.2015.10.044 +Pablo S. Rivadeneira,Observability criteria for impulsive control systems with applications to biomedical engineering processes.,2015,55,Automatica,,db/journals/automatica/automatica55.html#RivadeneiraM15,https://doi.org/10.1016/j.automatica.2015.02.042 +Gildas Besançon,A note on state and parameter estimation in a van der Pol oscillator.,2010,46,Automatica,10,db/journals/automatica/automatica46.html#BesanconVJ10,https://doi.org/10.1016/j.automatica.2010.06.033 +F. Z. Chaoui,Asymptotic stabilization of linear plants in presence of input and output saturations.,2001,37,Automatica,1,db/journals/automatica/automatica37.html#ChaouiGM01,https://doi.org/10.1016/S0005-1098(00)00120-5 +Huai-Ning Wu,A delay decomposition approach to L2-Linfinity filter design for stochastic systems with time-varying delay.,2011,47,Automatica,7,db/journals/automatica/automatica47.html#WuWS11,https://doi.org/10.1016/j.automatica.2011.02.021 +A. D. Sams,Identification of linear periodically time-varying systems using white-noise test inputs.,1988,24,Automatica,4,db/journals/automatica/automatica24.html#SamsM88,https://doi.org/10.1016/0005-1098(88)90101-X +Maobin Lu,Rendezvous with connectivity preservation of mobile agents subject to uniform time-delays.,2018,88,Automatica,,db/journals/automatica/automatica88.html#Lu18,https://doi.org/10.1016/j.automatica.2017.11.003 +Romeo Ortega,On dynamic regressor extension and mixing parameter estimators: Two Luenberger observers interpretations.,2018,95,Automatica,,db/journals/automatica/automatica95.html#OrtegaPAYZ18,https://doi.org/10.1016/j.automatica.2018.06.011 +Yuezu Lv,Distributed adaptive output feedback consensus protocols for linear systems on directed graphs with a leader of bounded input.,2016,74,Automatica,,db/journals/automatica/automatica74.html#LvLDC16,https://doi.org/10.1016/j.automatica.2016.07.041 +Leonid B. Freidovich,Lyapunov-based switching control of nonlinear systems using high-gain observers.,2007,43,Automatica,1,db/journals/automatica/automatica43.html#FreidovichK07,https://doi.org/10.1016/j.automatica.2006.08.010 +Achilles Theodorakopoulos,Guaranteeing preselected tracking quality for uncertain strict-feedback systems with deadzone input nonlinearity and disturbances via low-complexity control.,2015,54,Automatica,,db/journals/automatica/automatica54.html#Theodorakopoulos15,https://doi.org/10.1016/j.automatica.2015.01.038 +Christian Feller,An improved algorithm for combinatorial multi-parametric quadratic programming.,2013,49,Automatica,5,db/journals/automatica/automatica49.html#FellerJO13,https://doi.org/10.1016/j.automatica.2013.02.022 +Wuquan Li,Adaptive state-feedback stabilization for a large class of high-order stochastic nonlinear systems.,2011,47,Automatica,4,db/journals/automatica/automatica47.html#LiJZ11,https://doi.org/10.1016/j.automatica.2011.01.084 +Stephen L. Campbell,Comments on 2-D descriptor systems.,1991,27,Automatica,1,db/journals/automatica/automatica27.html#Campbell91,https://doi.org/10.1016/0005-1098(91)90020-3 +T. J. Procyk,A linguistic self-organizing process controller.,1979,15,Automatica,1,db/journals/automatica/automatica15.html#ProcykM79,https://doi.org/10.1016/0005-1098(79)90084-0 +Fayçal Ikhouane,Adaptive control of a hysteretic structural system.,2005,41,Automatica,2,db/journals/automatica/automatica41.html#IkhouaneMR05,https://doi.org/10.1016/j.automatica.2004.08.018 +Milic R. Stojic,Sensitivities of the prescribed pole spectrum in a closed-loop control system.,1988,24,Automatica,2,db/journals/automatica/automatica24.html#StojicFS88,https://doi.org/10.1016/0005-1098(88)90035-0 +Georges Bastin,Stability of linear density-flow hyperbolic systems under PI boundary control.,2015,53,Automatica,,db/journals/automatica/automatica53.html#BastinCT15,https://doi.org/10.1016/j.automatica.2014.12.025 +Huibert Kwakernaak,Optimal low-sensitivity linear feedback systems.,1969,5,Automatica,3,db/journals/automatica/automatica5.html#Kwakernaak69,https://doi.org/10.1016/0005-1098(69)90070-3 +Henri-François Raynaud,State-space representation for fractional order controllers.,2000,36,Automatica,7,db/journals/automatica/automatica36.html#RaynaudZ00,https://doi.org/10.1016/S0005-1098(00)00011-X +Xiangyu Meng,Event based agreement protocols for multi-agent networks.,2013,49,Automatica,7,db/journals/automatica/automatica49.html#MengC13,https://doi.org/10.1016/j.automatica.2013.03.002 +W. J. M. Lemmens,Interactive computer programs for education and research: A survey.,1979,15,Automatica,1,db/journals/automatica/automatica15.html#LemmensB79,https://doi.org/10.1016/0005-1098(79)90094-3 +Somanath Majhi,Obtaining controller parameters for a new Smith predictor using autotuning.,2000,36,Automatica,11,db/journals/automatica/automatica36.html#MajhiA00,https://doi.org/10.1016/S0005-1098(00)00085-6 +Benyamin Grosman,Lyapunov-based stability analysis automated by genetic programming.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#GrosmanL09,https://doi.org/10.1016/j.automatica.2008.07.014 +B. Riedle,Examination of the SPR condition in output error parameter estimation.,1986,22,Automatica,4,db/journals/automatica/automatica22.html#RiedlePK86,https://doi.org/10.1016/0005-1098(86)90055-5 +Liang Hu,State estimation under false data injection attacks: Security analysis and system protection.,2018,87,Automatica,,db/journals/automatica/automatica87.html#HuWHL18,https://doi.org/10.1016/j.automatica.2017.09.028 +Mustafa Khammash,Analysis of steady-state tracking errors in sampled-data systems with uncertainty.,2001,37,Automatica,6,db/journals/automatica/automatica37.html#KhammashZ01,https://doi.org/10.1016/S0005-1098(01)00031-0 +William Paul Heath,The variation of non-parametric estimates in closed-loop.,2003,39,Automatica,11,db/journals/automatica/automatica39.html#Heath03,https://doi.org/10.1016/S0005-1098(03)00194-8 +Shigeru Hanba,Controllability to the origin implies state-feedback stabilizability for discrete-time nonlinear systems.,2017,76,Automatica,,db/journals/automatica/automatica76.html#Hanba17a,https://doi.org/10.1016/j.automatica.2016.09.046 +Trong Dong Nguyen,Design of hybrid controller for dynamic positioning from calm to extreme sea conditions.,2007,43,Automatica,5,db/journals/automatica/automatica43.html#NguyenSQ07,https://doi.org/10.1016/j.automatica.2006.11.017 +George S. Axelby,About this and future issues.,1969,5,Automatica,2,db/journals/automatica/automatica5.html#Axelby69c,https://doi.org/10.1016/0005-1098(69)90004-1 +Mark M. Kogan,Locally optimal adaptive control without persistent excitation.,1996,32,Automatica,10,db/journals/automatica/automatica32.html#KoganN96,https://doi.org/10.1016/0005-1098(96)00097-0 +Ngoc Anh Nguyen,Stochastic output feedback control: Convex lifting approach.,2018,89,Automatica,,db/journals/automatica/automatica89.html#Nguyen18,https://doi.org/10.1016/j.automatica.2017.12.017 +Carlos Canudas de Wit,A modified EW-RLS algorithm for systems with bounded disturbances.,1990,26,Automatica,3,db/journals/automatica/automatica26.html#WitC90,https://doi.org/10.1016/0005-1098(90)90032-D +D. R. Lewin,A constrained genetic algorithm for decentralized control system structure selection and optimization.,2003,39,Automatica,10,db/journals/automatica/automatica39.html#LewinP03,https://doi.org/10.1016/S0005-1098(03)00171-7 +Claude H. Moog,Canonical decomposition of non-linear systems.,1997,33,Automatica,8,db/journals/automatica/automatica33.html#MoogPC97,https://doi.org/10.1016/S0005-1098(97)00073-3 +Massimo Canale,Set Membership approximation theory for fast implementation of Model Predictive Control laws.,2009,45,Automatica,1,db/journals/automatica/automatica45.html#CanaleFM09,https://doi.org/10.1016/j.automatica.2008.06.015 +Matthew D. Baumgart,Discrete time-optimal command shaping.,2007,43,Automatica,8,db/journals/automatica/automatica43.html#BaumgartP07,https://doi.org/10.1016/j.automatica.2007.01.003 +Guoping Lu,Continuous stabilization controllers for singular bilinear systems: The state feedback case.,2006,42,Automatica,2,db/journals/automatica/automatica42.html#LuH06,https://doi.org/10.1016/j.automatica.2005.09.010 +Xiaohua Xia,Analysis of nonlinear time-delay systems using modules over non-commutative rings.,2002,38,Automatica,9,db/journals/automatica/automatica38.html#XiaMZM02,https://doi.org/10.1016/S0005-1098(02)00051-1 +Mohammad Soltani,Moment-based analysis of stochastic hybrid systems with renewal transitions.,2017,84,Automatica,,db/journals/automatica/automatica84.html#SoltaniS17,https://doi.org/10.1016/j.automatica.2017.07.001 +Tuhin Sahai,Hearing the clusters of a graph: A distributed algorithm.,2012,48,Automatica,1,db/journals/automatica/automatica48.html#SahaiSB12,https://doi.org/10.1016/j.automatica.2011.09.019 +Ali Bidram,Synchronization of nonlinear heterogeneous cooperative systems using input-output feedback linearization.,2014,50,Automatica,10,db/journals/automatica/automatica50.html#BidramLD14,https://doi.org/10.1016/j.automatica.2014.08.016 +Bartlomiej Sulikowski,PI output feedback control of differential linear repetitive processes.,2008,44,Automatica,5,db/journals/automatica/automatica44.html#SulikowskiGR08,https://doi.org/10.1016/j.automatica.2007.10.005 +Jyotirmay Gadewadikar,Parameterization of all stabilizing Hinfinity static state-feedback gains: Application to output-feedback design.,2007,43,Automatica,9,db/journals/automatica/automatica43.html#GadewadikarLXKA07,https://doi.org/10.1016/j.automatica.2007.02.005 +Mohamed Darwish,The quest for the right kernel in Bayesian impulse response identification: The use of OBFs.,2018,87,Automatica,,db/journals/automatica/automatica87.html#DarwishPT18,https://doi.org/10.1016/j.automatica.2017.10.007 +Richard O. LaMaire,A frequency-domain estimator for use in adaptive control systems.,1991,27,Automatica,1,db/journals/automatica/automatica27.html#LaMaireVAS91,https://doi.org/10.1016/0005-1098(91)90004-L +Alexander De Cock,D-optimal input design for nonlinear FIR-type systems: A dispersion-based approach.,2016,73,Automatica,,db/journals/automatica/automatica73.html#CockGS16,https://doi.org/10.1016/j.automatica.2016.04.052 +Sergio Daniel Pequito,The robust minimal controllability problem.,2017,82,Automatica,,db/journals/automatica/automatica82.html#PequitoRKAR17,https://doi.org/10.1016/j.automatica.2017.04.053 +Weidong Zhang 0004,On minimal-order stabilization of minimum phase plants.,2002,38,Automatica,7,db/journals/automatica/automatica38.html#ZhangX02,https://doi.org/10.1016/S0005-1098(02)00005-5 +Saleem-Ullah Lar,Proactive Security Mechanism and Design for Firewall.,2011,2,J. Information Security,3,db/journals/jisec/jisec2.html#LarLRQ11,https://doi.org/10.4236/jis.2011.23012 +Alok Sharma,Tanimoto Based Similarity Measure for Intrusion Detection System.,2011,2,J. Information Security,4,db/journals/jisec/jisec2.html#SharmaL11,https://doi.org/10.4236/jis.2011.24019 +Sandeep K. Sood,Dynamic Identity Based Authentication Protocol for Two-Server Architecture.,2012,3,J. Information Security,4,db/journals/jisec/jisec3.html#Sood12,https://doi.org/10.4236/jis.2012.34040 +Rasim M. Alguliev,Two Approaches on Implementation of CBR and CRM Technologies to the Spam Filtering Problem.,2012,3,J. Information Security,1,db/journals/jisec/jisec3.html#AlguliyevN12,https://doi.org/10.4236/jis.2012.31002 +Shahriar Mohammadi,Effect of Network Traffic on IPS Performance.,2012,3,J. Information Security,2,db/journals/jisec/jisec3.html#MohammadiAK12,https://doi.org/10.4236/jis.2012.32019 +Yogendra Narain Singh,Evaluation of Electrocardiogram for Biometric Authentication.,2012,3,J. Information Security,1,db/journals/jisec/jisec3.html#SinghS12,https://doi.org/10.4236/jis.2012.31005 +Zachary Miller,Data Stream Subspace Clustering for Anomalous Network Packet Detection.,2012,3,J. Information Security,3,db/journals/jisec/jisec3.html#MillerH12,https://doi.org/10.4236/jis.2012.33027 +Zakaria I. Saleh,Proposed Framework for Security Risk Assessment.,2011,2,J. Information Security,2,db/journals/jisec/jisec2.html#SalehRM11,https://doi.org/10.4236/jis.2011.22008 +Tat Wing Chim,SPCS: Secure and Privacy-Preserving Charging-Station Searching using VANET.,2012,3,J. Information Security,1,db/journals/jisec/jisec3.html#ChimCYHL12,https://doi.org/10.4236/jis.2012.31007 +Lanfranco Lopriore,Reference Encryption for Access Right Segregation and Domain Representation.,2012,3,J. Information Security,2,db/journals/jisec/jisec3.html#Lopriore12,https://doi.org/10.4236/jis.2012.32010 +Yuji Waizumi,A Multi-Stage Network Anomaly Detection Method for Improving Efficiency and Accuracy.,2012,3,J. Information Security,1,db/journals/jisec/jisec3.html#WaizumiTTN12,https://doi.org/10.4236/jis.2012.31003 +Amin Hashemi Pour,A New Steganography Method Based on the Complex Pixels.,2012,3,J. Information Security,3,db/journals/jisec/jisec3.html#PourP12,https://doi.org/10.4236/jis.2012.33025 +Shay Gueron,Simultaneous Hashing of Multiple Messages.,2012,3,J. Information Security,4,db/journals/jisec/jisec3.html#GueronK12,https://doi.org/10.4236/jis.2012.34039 +Moad Mowafi,C3SM: Information Assurance Based on Cryptographic Checksum with Clustering Security Management Protocol.,2012,3,J. Information Security,4,db/journals/jisec/jisec3.html#MowafiTAA12,https://doi.org/10.4236/jis.2012.34034 +K. K. Sindhu,Digital Forensics and Cyber Crime Datamining.,2012,3,J. Information Security,3,db/journals/jisec/jisec3.html#SindhuM12,https://doi.org/10.4236/jis.2012.33024 +Hui Lin 0005,Micro-Architecture Support for Integrity Measurement on Dynamic Instruction Trace.,2010,1,J. Information Security,1,db/journals/jisec/jisec1.html#LinL10,https://doi.org/10.4236/jis.2010.11001 +Adel Hammad Abusitta,A Visual Cryptography Based Digital Image Copyright Protection.,2012,3,J. Information Security,2,db/journals/jisec/jisec3.html#Abusitta12,https://doi.org/10.4236/jis.2012.32012 +Andrews Samraj,Eliminating Forgers Based on Intra Trial Variability in Online Signature Verification Using Handglove and Photometric Signals.,2010,1,J. Information Security,1,db/journals/jisec/jisec1.html#SamrajSLM10,https://doi.org/10.4236/jis.2010.11003 +Maurizio Talamo,Secure Messaging Implementation in OpenSC.,2012,3,J. Information Security,4,db/journals/jisec/jisec3.html#TalamoGSA12,https://doi.org/10.4236/jis.2012.34032 +Rabiah Ahmad,Perception on Cyber Terrorism: A Focus Group Discussion Approach.,2012,3,J. Information Security,3,db/journals/jisec/jisec3.html#AhmadYSY12,https://doi.org/10.4236/jis.2012.33029 +Vaibhav Ranchhoddas Pandya,iPhone Security Analysis.,2010,1,J. Information Security,2,db/journals/jisec/jisec1.html#PandyaS10,https://doi.org/10.4236/jis.2010.12009 +Shaojun Zhang,A Novel Attack Graph Posterior Inference Model Based on Bayesian Network.,2011,2,J. Information Security,1,db/journals/jisec/jisec2.html#ZhangS11,https://doi.org/10.4236/jis.2011.21002 +Qingquan Sun,Unsupervised Multi-Level Non-Negative Matrix Factorization Model: Binary Data Case.,2012,3,J. Information Security,4,db/journals/jisec/jisec3.html#SunWWGL12,https://doi.org/10.4236/jis.2012.34031 +Ilung Pranata,A Distributed Secure Mechanism for Resource Protection in a Digital Ecosystem Environment.,2012,3,J. Information Security,1,db/journals/jisec/jisec3.html#PranataSA12,https://doi.org/10.4236/jis.2012.31004 +Yonghong Chen,Digital Image Watermarking Based on Mixed Error Correcting Code.,2012,3,J. Information Security,2,db/journals/jisec/jisec3.html#ChenC12,https://doi.org/10.4236/jis.2012.32018 +Ahmad Bakhtiyari Shahri,A Tree Model for Identification of Threats as the First Stage of Risk Assessment in HIS.,2012,3,J. Information Security,2,db/journals/jisec/jisec3.html#ShahriI12,https://doi.org/10.4236/jis.2012.32020 +Zachary Miller,Anomalous Network Packet Detection Using Data Stream Mining.,2011,2,J. Information Security,4,db/journals/jisec/jisec2.html#MillerDH11,https://doi.org/10.4236/jis.2011.24016 +Mario Góngora-Blandón,State of the Art for String Analysis and Pattern Search Using CPU and GPU Based Programming.,2012,3,J. Information Security,4,db/journals/jisec/jisec3.html#Gongora-BlandonV12,https://doi.org/10.4236/jis.2012.34038 +Tahir Amin,Determinants in Human Gait Recognition.,2012,3,J. Information Security,2,db/journals/jisec/jisec3.html#AminH12,https://doi.org/10.4236/jis.2012.32009 +Romany F. Mansour,A Robust Method to Detect Hidden Data from Digital Images.,2012,3,J. Information Security,2,db/journals/jisec/jisec3.html#MansourAM12,https://doi.org/10.4236/jis.2012.32011 +Vacharee Prashyanusorn,Sustainable Tourism Using Security Cameras with Privacy Protecting Ability.,2010,1,J. Information Security,2,db/journals/jisec/jisec1.html#PrashyanusornFKMY10,https://doi.org/10.4236/jis.2010.12008 +Yoshio Kakizaki,Identifier Migration for Identity Continuance in Single Sign-On.,2012,3,J. Information Security,4,db/journals/jisec/jisec3.html#KakizakiKI12,https://doi.org/10.4236/jis.2012.34037 +Khalid. O. Elaalim,A Fair Electronic Cash System with Identity-Based Group Signature Scheme.,2012,3,J. Information Security,2,db/journals/jisec/jisec3.html#ElaalimY12,https://doi.org/10.4236/jis.2012.32021 +Shweta Tripathi,Digital Evidence for Database Tamper Detection.,2012,3,J. Information Security,2,db/journals/jisec/jisec3.html#TripathiM12,https://doi.org/10.4236/jis.2012.32014 +Yaser Jararweh,Hardware Performance Evaluation of SHA-3 Candidate Algorithms.,2012,3,J. Information Security,2,db/journals/jisec/jisec3.html#JararwehTTM12,https://doi.org/10.4236/jis.2012.32008 +Sanjeev Kumar,Experimental Evaluation of Cisco ASA-5510 Intrusion Prevention System against Denial of Service Attacks.,2012,3,J. Information Security,2,db/journals/jisec/jisec3.html#KumarG12,https://doi.org/10.4236/jis.2012.32015 +Shahriar Mohammadi,A Comparison of Link Layer Attacks on Wireless Sensor Networks.,2011,2,J. Information Security,2,db/journals/jisec/jisec2.html#MohammadiAJ11,https://doi.org/10.4236/jis.2011.22007 +Kamlesh Gupta,New Approach for Fast Color Image Encryption Using Chaotic Map.,2011,2,J. Information Security,4,db/journals/jisec/jisec2.html#GuptaS11,https://doi.org/10.4236/jis.2011.24014 +Eliza Yingzi Du,Key Incorporation Scheme for Cancelable Biometrics.,2011,2,J. Information Security,4,db/journals/jisec/jisec2.html#DuYZ11,https://doi.org/10.4236/jis.2011.24018 +Vijay Anand,Security Policy Management Process within Six Sigma Framework.,2012,3,J. Information Security,1,db/journals/jisec/jisec3.html#AnandSO12,https://doi.org/10.4236/jis.2012.31006 +Yongjian Li,Extending the Strand Space Method with Timestamps: Part II Application to Kerberos V.,2010,1,J. Information Security,2,db/journals/jisec/jisec1.html#LiP10a,https://doi.org/10.4236/jis.2010.12007 +Ming Tong,New Video Watermark Scheme Resistant to Super Strong Cropping Attacks.,2012,3,J. Information Security,2,db/journals/jisec/jisec3.html#TongCZD12,https://doi.org/10.4236/jis.2012.32016 +Basant Kumar,Secure Spread-Spectrum Watermarking for Telemedicine Applications.,2011,2,J. Information Security,2,db/journals/jisec/jisec2.html#KumarSSM11,https://doi.org/10.4236/jis.2011.22009 +Sirisha Surisetty,McAfee SecurityCenter Evaluation under DDoS Attack Traffic.,2011,2,J. Information Security,3,db/journals/jisec/jisec2.html#SurisettyMK11,https://doi.org/10.4236/jis.2011.23011 +Indraneel Mukhopadhyay,A Comparative Study of Related Technologies of Intrusion Detection and Prevention Systems.,2011,2,J. Information Security,1,db/journals/jisec/jisec2.html#MukhopadhyayCC11,https://doi.org/10.4236/jis.2011.21003 +Peter Schartner,Random but System-Wide Unique Unlinkable Parameters.,2012,3,J. Information Security,1,db/journals/jisec/jisec3.html#Schartner12,https://doi.org/10.4236/jis.2012.31001 +Charlie Obimbo,Vulnerabilities of LDAP As An Authentication Service.,2011,2,J. Information Security,4,db/journals/jisec/jisec2.html#ObimboF11,https://doi.org/10.4236/jis.2011.24015 +Vladimir V. Grishachev,Detecting Threats of Acoustic Information Leakage Through Fiber Optic Communications.,2012,3,J. Information Security,2,db/journals/jisec/jisec3.html#Grishachev12,https://doi.org/10.4236/jis.2012.32017 +Cheng-Chang Lien,Fast Forgery Detection with the Intrinsic Resampling Properties.,2010,1,J. Information Security,1,db/journals/jisec/jisec1.html#LienSC10,https://doi.org/10.4236/jis.2010.11002 +Sanjeev Kumar,Denial of Service Due to Direct and Indirect ARP Storm Attacks in LAN Environment.,2010,1,J. Information Security,2,db/journals/jisec/jisec1.html#KumarG10,https://doi.org/10.4236/jis.2010.12010 +Usha Banerjee,Feedback Reliability Ratio of an Intrusion Detection System.,2012,3,J. Information Security,3,db/journals/jisec/jisec3.html#BanerjeeBA12,https://doi.org/10.4236/jis.2012.33030 +J. Nafeesa Begum,Design and Implementation of Multilevel Access Control in Synchronized Audio to Audio Steganography Using Symmetric Polynomial Scheme.,2010,1,J. Information Security,1,db/journals/jisec/jisec1.html#BegumKS10,https://doi.org/10.4236/jis.2010.11004 +Yasunari Yoshitomi,An Authentication Method for Digital Audio Using a Discrete Wavelet Transform.,2011,2,J. Information Security,2,db/journals/jisec/jisec2.html#YoshitomiAKT11,https://doi.org/10.4236/jis.2011.22006 +Yi Luo,Game Theory Based Network Security.,2010,1,J. Information Security,1,db/journals/jisec/jisec1.html#LuoSAH10,https://doi.org/10.4236/jis.2010.11005 +Rabiah Ahmad,The Application of Mixed Method in Developing a Cyber Terrorism Framework.,2012,3,J. Information Security,3,db/journals/jisec/jisec3.html#AhmadY12,https://doi.org/10.4236/jis.2012.33026 +Tao Xu,SOAP-Based Security Interaction of Web Service in Heterogeneous Platforms.,2011,2,J. Information Security,1,db/journals/jisec/jisec2.html#XuY11,https://doi.org/10.4236/jis.2011.21001 +Aziz Baayer,Enhanced Timestamp Discrepancy to Limit Impact of Replay Attacks in MANETs.,2012,3,J. Information Security,3,db/journals/jisec/jisec3.html#BaayerEE12,https://doi.org/10.4236/jis.2012.33028 +Yongjian Li,Extending the Strand Space Method with Timestamps: Part I the Theory.,2010,1,J. Information Security,2,db/journals/jisec/jisec1.html#LiP10,https://doi.org/10.4236/jis.2010.12006 +Alfredo Maesa,Text Independent Automatic Speaker Recognition System Using Mel-Frequency Cepstrum Coefficient and Gaussian Mixture Models.,2012,3,J. Information Security,4,db/journals/jisec/jisec3.html#MaesaGSC12,https://doi.org/10.4236/jis.2012.34041 +Tarek S. Sobh,Effective and Extensive Virtual Private Network.,2011,2,J. Information Security,1,db/journals/jisec/jisec2.html#SobhA11,https://doi.org/10.4236/jis.2011.21004 +Gholam Reza Zargar,Category-Based Intrusion Detection Using PCA.,2012,3,J. Information Security,4,db/journals/jisec/jisec3.html#ZargarB12,https://doi.org/10.4236/jis.2012.34033 +Sanjeev Kumar,Experimental Evaluation of Juniper Network's Netscreen-5GT Security Device against Layer4 Flood Attacks.,2011,2,J. Information Security,1,db/journals/jisec/jisec2.html#KumarG11,https://doi.org/10.4236/jis.2011.21005 +Manjit Thapa,On Secure Digital Image Watermarking Techniques.,2011,2,J. Information Security,4,db/journals/jisec/jisec2.html#ThapaS11,https://doi.org/10.4236/jis.2011.24017 +Amir Mohamed Talib,Towards a Comprehensive Security Framework of Cloud Data Storage Based on Multi Agent System Architecture.,2012,3,J. Information Security,4,db/journals/jisec/jisec3.html#TalibAAM12,https://doi.org/10.4236/jis.2012.34036 +Archana Tiwari,Comparative Evaluation of Semi Fragile Watermarking Algorithms for Image Authentication.,2012,3,J. Information Security,3,db/journals/jisec/jisec3.html#TiwariS12,https://doi.org/10.4236/jis.2012.33023 +Thomas Ndie Djotio,MAMNID: A Load Balance Network Diagnosis Model Based on Mobile Agents.,2012,3,J. Information Security,4,db/journals/jisec/jisec3.html#DjotioTF12,https://doi.org/10.4236/jis.2012.34035 +Hari Krishna Vellalacheruvu,Effectiveness of Built-in Security Protection of Microsoft's Windows Server 2003 against TCP SYN Based DDoS Attacks.,2011,2,J. Information Security,3,db/journals/jisec/jisec2.html#VellalacheruvuK11,https://doi.org/10.4236/jis.2011.23013 +Youssef Gahi,Privacy Preserving Scheme for Location-Based Services.,2012,3,J. Information Security,2,db/journals/jisec/jisec3.html#GahiGGE12,https://doi.org/10.4236/jis.2012.32013 +Shinichi Murata,Audio Watermarking Using Wavelet Transform and Genetic Algorithm for Realizing High Tolerance to MP3 Compression.,2011,2,J. Information Security,3,db/journals/jisec/jisec2.html#MurataYI11,https://doi.org/10.4236/jis.2011.23010 +Penelope Maddy,The philosophy of logic.,2012,18,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl18.html#Maddy12,http://www.math.ucla.edu/~asl/bsl/1804/1804-001.ps +Chris Freiling,How to compute antiderivatives.,1995,1,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl1.html#Freiling95,http://www.math.ucla.edu/~asl/bsl/0103/0103-002.ps +Igor Walukiewicz,A note on the completeness of Kozen's axiomatisation of the propositional mu-calculus.,1996,2,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl2.html#Walukiewicz96,http://www.math.ucla.edu/~asl/bsl/0203/0203-005.ps +Martin Davis,American logic in the 1920s.,1995,1,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl1.html#Davis95,http://www.math.ucla.edu/~asl/bsl/0103/0103-001.ps +Torkel Franzén,Transfinite progressions: a second look at completeness.,2004,10,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl10.html#Franzen04,http://www.math.ucla.edu/~asl/bsl/1003/1003-003.ps +Ignacio Jané,What is Tarski's common concept of consequence?,2006,12,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl12.html#Jane06,http://www.math.ucla.edu/~asl/bsl/1201/1201-001.ps +Kosta Dosen,Identity of proofs based on normalization and generality.,2003,9,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl9.html#Dosen03,http://www.math.ucla.edu/~asl/bsl/0904/0904-002.ps +Yiannis N. Moschovakis,Kleene's amazing Second Recursion Theorem.,2010,16,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl16.html#Moschovakis10,http://www.math.ucla.edu/~asl/bsl/1602/1602-002.ps +Ian Pratt-Hartmann,On the Computational Complexity of the Numerically Definite Syllogistic and Related Logics.,2008,14,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl14.html#Pratt-Hartmann08,http://www.math.ucla.edu/~asl/bsl/1401/1401-001.ps +Thomas Scanlon,Diophantine geometry from model theory.,2001,7,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl7.html#Scanlon01,http://www.math.ucla.edu/~asl/bsl/0701/0701-002.ps +José M. Sagüillo,Logical consequence revisited.,1997,3,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl3.html#Saguillo97,http://www.math.ucla.edu/~asl/bsl/0302/0302-004.ps +Raf Cluckers,Grothendieck rings of Z-valued fields.,2001,7,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl7.html#CluckersH01,http://www.math.ucla.edu/~asl/bsl/0702/0702-005.ps +Peter Cholak,Definable encodings in the computably enumerable sets.,2000,6,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl6.html#CholakH00,http://www.math.ucla.edu/~asl/bsl/0602/0602-004.ps +Herbert B. Enderton,Alonzo Church and the Reviews.,1998,4,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl4.html#Enderton98,http://www.math.ucla.edu/~asl/bsl/0402/0402-002.ps +Eric Jaligot,Full Frobenius groups of finite Morley rank and the Feit-Thompson Theorem.,2001,7,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl7.html#Jaligot01,http://www.math.ucla.edu/~asl/bsl/0703/0703-002.ps +Sy-David Friedman,Internal Consistency and the Inner Model Hypothesis.,2006,12,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl12.html#Friedman06,http://www.math.ucla.edu/~asl/bsl/1204/1204-002.ps +Warren D. Goldfarb,On Gödel's way in: the influence of Rudolf Carnap.,2005,11,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl11.html#Goldfarb05,http://www.math.ucla.edu/~asl/bsl/1102/1102-006.ps +Jan von Plato,Gentzen's proof systems: byproducts in a work of genius.,2012,18,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl18.html#Plato12,http://www.math.ucla.edu/~asl/bsl/1803/1803-001.ps +,Kurt Gödel (1906-1978).,2005,11,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl11.html#X05,http://www.math.ucla.edu/~asl/bsl/1102/1102-001.ps +Robert Goldblatt,Erdös graphs resolve Fine's canonicity problem.,2004,10,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl10.html#GoldblattHV04,http://www.math.ucla.edu/~asl/bsl/1002/1002-003.ps +Ralf-Dieter Schindler,Proper forcing and remarkable cardinals.,2000,6,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl6.html#Schindler00,http://www.math.ucla.edu/~asl/bsl/0602/0602-003.ps +Jan Krajícek,Combinatorics with definable sets: Euler characteristics and Grothendieck rings.,2000,3,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl6.html#KrajicekS00,http://www.math.ucla.edu/~asl/bsl/0603/0603-003.ps +Jean-Marie Le Bars,Counterexamples of the 0-1 law for fragments of existential second-order logic: an overview.,2000,6,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl6.html#Bars00,http://www.math.ucla.edu/~asl/bsl/0601/0601-003.ps +Simon Thomas 0001,A descriptive view of combinatorial group theory.,2011,17,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl17.html#Thomas11,https://doi.org/10.2178/bsl/1305810913 +H. Jerome Keisler,Barwise: infinitary logic and admissible sets.,2004,10,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl10.html#KeislerK04,http://www.math.ucla.edu/~asl/bsl/1001/1001-003.ps +Mark van Atten,On the philosophical development of Kurt Gödel.,2003,9,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl9.html#AttenK03,http://www.math.ucla.edu/~asl/bsl/0904/0904-001.ps +Charles D. Parsons,Platonism and mathematical intuition in Kurt Gödel's thought.,1995,1,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl1.html#Parsons95,http://www.math.ucla.edu/~asl/bsl/0101/0101-004.ps +Itay Ben-Yaacov,The group configuration in simple theories and its applications.,2002,8,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl8.html#Ben-YaacovTW02,http://www.math.ucla.edu/~asl/bsl/0802/0802-004.ps +Alasdair Urquhart,The complexity of propositional proofs.,1995,1,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl1.html#Urquhart95,http://www.math.ucla.edu/~asl/bsl/0104/0104-003.ps +Ernest Schimmerling,Square in core models.,2001,7,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl7.html#SchimmerlingZ01,http://www.math.ucla.edu/~asl/bsl/0703/0703-001.ps +Pantelis E. Eleftheriou,Non-standard lattices and o-minimal groups.,2013,19,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl19.html#Eleftheriou13,http://www.math.ucla.edu/~asl/bsl/1901/1901-002.ps +Richard A. Shore,Alonzo Church.,1997,3,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl3.html#Shore97,http://www.math.ucla.edu/~asl/bsl/0302/0302-001.ps +Sven Ove Hansson,Formalization in philosophy.,2000,6,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl6.html#Hansson00,http://www.math.ucla.edu/~asl/bsl/0602/0602-002.ps +Richard A. Shore,Reverse mathematics: the playground of logic.,2010,16,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl16.html#Shore10,http://www.math.ucla.edu/~asl/bsl/1603/1603-004.ps +Orna Kupferman,Church's problem revisited.,1999,5,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl5.html#KupfermanV99,http://www.math.ucla.edu/~asl/bsl/0502/0502-004.ps +Akihiro Kanamori,Zermelo and set theory.,2004,10,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl10.html#Kanamori04a,http://www.math.ucla.edu/~asl/bsl/1004/1004-002.ps +Dag Normann,Computing with functionals - computability theory or computer science?,2006,12,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl12.html#Normann06,http://www.math.ucla.edu/~asl/bsl/1201/1201-002.ps +Jaakko Hintikka,Hyperclassical logic (a.k.a. IF logic) and its implications for logical theory.,2002,8,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl8.html#Hintikka02,http://www.math.ucla.edu/~asl/bsl/0803/0803-004.ps +Martin Davis,What did Gödel believe and when did he believe it?,2005,11,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl11.html#Davis05,http://www.math.ucla.edu/~asl/bsl/1102/1102-007.ps +Kosta Dosen,Deductive completeness.,1996,2,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl2.html#Dosen96,http://www.math.ucla.edu/~asl/bsl/0203/0203-001.ps +Paul C. Eklof,Set theory generated by Abelian group theory.,1997,3,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl3.html#Eklof97,http://www.math.ucla.edu/~asl/bsl/0301/0301-001.ps +Peter Schroeder-Heister,Resolution and the origins of structural reasoning: early proof-theoretic ideas of Hertz and Gentzen.,2002,8,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl8.html#Schroeder-Heister02,http://www.math.ucla.edu/~asl/bsl/0802/0802-002.ps +Robert I. Soare,Computability theory and differential geometry.,2004,10,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl10.html#Soare04,http://www.math.ucla.edu/~asl/bsl/1004/1004-001.ps +Yeneng Sun,Hyperfinite law of large numbers.,1996,2,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl2.html#Sun96,http://www.math.ucla.edu/~asl/bsl/0202/0202-003.ps +Alice Medvedev,An invitation to model-theoretic Galois theory.,2010,16,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl16.html#MedvedevT10,http://www.math.ucla.edu/~asl/bsl/1602/1602-004.ps +Alasdair Urquhart,Enumerating types of Boolean functions.,2009,15,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl15.html#Urquhart09,http://www.math.ucla.edu/~asl/bsl/1503/1503-001.ps +Sy-David Friedman,The stable core.,2012,18,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl18.html#Friedman12,http://www.math.ucla.edu/~asl/bsl/1802/1802-003.ps +Greg Hjorth,New dichotomies for Borel equivalence relations.,1997,3,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl3.html#HjorthK97,http://www.math.ucla.edu/~asl/bsl/0303/0303-003.ps +Akihiro Kanamori,The mathematical import of Zermelo's well-ordering theorem.,1997,3,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl3.html#Kanamori97,http://www.math.ucla.edu/~asl/bsl/0303/0303-001.ps +Ernest Schimmerling,The ABC's of mice.,2001,7,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl7.html#Schimmerling01,http://www.math.ucla.edu/~asl/bsl/0704/0704-002.ps +Pierre-Louis Curien,Symmetry and interactivity in programming.,2003,9,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl9.html#Curien03,http://www.math.ucla.edu/~asl/bsl/0902/0902-003.ps +Georg Schiemer,Logic in the 1930s: type theory and model theory.,2013,19,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl19.html#SchiemerR13,http://www.math.ucla.edu/~asl/bsl/1904/1904-001.ps +Itay Neeman,Optimal proofs of determinacy.,1995,1,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl1.html#Neeman95,http://www.math.ucla.edu/~asl/bsl/0103/0103-004.ps +Lorenz Halbeisen,Relations between some cardinals in the absence of the Axiom of Choice.,2001,7,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl7.html#HalbeisenS01,http://www.math.ucla.edu/~asl/bsl/0702/0702-004.ps +Dana S. Scott,Reconsidering Ordered Pairs.,2008,14,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl14.html#ScottM08,http://www.math.ucla.edu/~asl/bsl/1403/1403-004.ps +Juliette Kennedy,On formalism freeness: Implementing Gödel's 1946 Princeton bicentennial lecture.,2013,19,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl19.html#Kennedy13,http://www.math.ucla.edu/~asl/bsl/1903/1903-003.ps +Kentaro Fujimoto,Relative truth definability of axiomatic truth theories.,2010,16,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl16.html#Fujimoto10,http://www.math.ucla.edu/~asl/bsl/1603/1603-001.ps +Siegfried Gottwald,Mathematical Fuzzy Logics.,2008,14,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl14.html#Gottwald08,http://www.math.ucla.edu/~asl/bsl/1402/1402-002.ps +Richard A. Shore,Degree Structures: Local and Global Investigations.,2006,12,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl12.html#Shore06,http://www.math.ucla.edu/~asl/bsl/1203/1203-001.ps +Denis Bonnay,Logicality and Invariance.,2008,14,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl14.html#Bonnay08,http://www.math.ucla.edu/~asl/bsl/1401/1401-002.ps +Richard A. Shore,The Bulletin of Symbolic Logic.,1995,1,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl1.html#Shore95,http://www.math.ucla.edu/~asl/bsl/0101/0101-001.ps +Eric Rosen,Some aspects of model theory and finite structures.,2002,8,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl8.html#Rosen02,http://www.math.ucla.edu/~asl/bsl/0803/0803-003.ps +Byunghan Kim,From stability to simplicity.,1998,4,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl4.html#KimP98,http://www.math.ucla.edu/~asl/bsl/0401/0401-002.ps +Keith Devlin,Jon Barwise's papers on natural language semantics.,2004,10,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl10.html#Devlin04,http://www.math.ucla.edu/~asl/bsl/1001/1001-005.ps +Alfred Tarski,Tarski's system of geometry.,1999,5,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl5.html#TarskiG99,http://www.math.ucla.edu/~asl/bsl/0502/0502-002.ps +Gabriel Uzquiano,Models of second-order Zermelo set theory.,1999,5,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl5.html#Uzquiano99,http://www.math.ucla.edu/~asl/bsl/0503/0503-001.ps +Bjørn Kjos-Hanssen,Local initial segments of the Turing degrees.,2003,9,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl9.html#Kjos-Hanssen03,http://www.math.ucla.edu/~asl/bsl/0901/0901-003.ps +John D. Clemens,Polish metric spaces: their classification and isometry groups.,2001,7,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl7.html#ClemensGK01,http://www.math.ucla.edu/~asl/bsl/0703/0703-005.ps +Anders Kock,Differential calculus and nilpotent real numbers.,2003,9,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl9.html#Kock03,http://www.math.ucla.edu/~asl/bsl/0902/0902-007.ps +Peter W. O'Hearn,The logic of bunched implications.,1999,5,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl5.html#OHearnP99,http://www.math.ucla.edu/~asl/bsl/0502/0502-003.ps +Gregory H. Moore,Early history of the Generalized Continuum Hypothesis: 1878 - 1938.,2011,17,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl17.html#Moore11,http://www.math.ucla.edu/~asl/bsl/1704/1704-001.ps +George Boolos,Frege's theorem and the Peano postulates.,1995,1,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl1.html#Boolos95,http://www.math.ucla.edu/~asl/bsl/0103/0103-003.ps +C. Anthony Anderson,Alonzo Church's contributions to philosophy and intensional logic.,1998,4,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl4.html#Anderson98,http://www.math.ucla.edu/~asl/bsl/0402/0402-001.ps +Penelope Maddy,Mathematical existence.,2005,11,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl11.html#Maddy05,http://www.math.ucla.edu/~asl/bsl/1103/1103-002.ps +Román Sasyk,Borel reducibility and classification of von Neumann algebras.,2009,15,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl15.html#SasykT09,http://www.math.ucla.edu/~asl/bsl/1502/1502-002.ps +Murdoch James Gabbay,Foundations of nominal techniques: logic and semantics of variables in abstract syntax.,2011,17,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl17.html#Gabbay11,https://doi.org/10.2178/bsl/1305810911 +Robin Hirsch,Provability with finitely many variables.,2002,8,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl8.html#HirschHM02,http://www.math.ucla.edu/~asl/bsl/0803/0803-002.ps +Wilfried Sieg,Only two letters: The correspondence between Herbrand and Gödel.,2005,11,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl11.html#Sieg05,http://www.math.ucla.edu/~asl/bsl/1102/1102-005.ps +Peter Koepke,Turing computations on ordinals.,2005,11,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl11.html#Koepke05,http://www.math.ucla.edu/~asl/bsl/1103/1103-003.ps +Jean-Louis Krivine,Une preuve formelle et intuitionniste du théorème de complétude de la logique classique.,1996,2,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl2.html#Krivine96,http://www.math.ucla.edu/~asl/bsl/0204/0204-003.ps +Stephen G. Simpson,Mass problems and randomness.,2005,11,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl11.html#Simpson05,http://www.math.ucla.edu/~asl/bsl/1101/1101-001.ps +Wilfried Sieg,Step by recursive step: Church's analysis of effective calculability.,1997,3,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl3.html#Sieg97,http://www.math.ucla.edu/~asl/bsl/0302/0302-002.ps +Wilfried Sieg,Hilbert's programs: 1917--1922.,1999,5,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl5.html#Sieg99,http://www.math.ucla.edu/~asl/bsl/0501/0501-001.ps +John R. Steel,HODL(R) is a core model below \Theta.,1995,1,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl1.html#Steel95,http://www.math.ucla.edu/~asl/bsl/0101/0101-005.ps +Kevin C. Klement,The senses of functions in the Logic of Sense and Denotation.,2010,16,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl16.html#Klement10,http://www.math.ucla.edu/~asl/bsl/1602/1602-001.ps +Stanley S. Wainer,Accessible recursive functions.,1999,5,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl5.html#Wainer99,http://www.math.ucla.edu/~asl/bsl/0503/0503-004.ps +Jindrich Zapletal,Terminal notions.,1999,5,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl5.html#Zapletal99,http://www.math.ucla.edu/~asl/bsl/0504/0504-003.ps +Robert I. Soare,Computability and recursion.,1996,2,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl2.html#Soare96,http://www.math.ucla.edu/~asl/bsl/0203/0203-002.ps +John T. Baldwin 0001,Notes on quasiminimality and excellence.,2004,10,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl10.html#Baldwin04,http://www.math.ucla.edu/~asl/bsl/1003/1003-002.ps +Rodney G. Downey,Calibrating Randomness.,2006,12,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl12.html#DowneyHNT06,http://www.math.ucla.edu/~asl/bsl/1203/1203-003.ps +Richard Tieszen,"G\""odel's path from the incompleteness theorems (1931) to phenomenology (1961).",1998,4,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl4.html#Tieszen98,http://www.math.ucla.edu/~asl/bsl/0402/0402-003.ps +Eric Jaligot,Independence Property and Hyperbolic Groups.,2008,14,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl14.html#JaligotMN08,http://www.math.ucla.edu/~asl/bsl/1401/1401-004.ps +Ian M. Hodkinson,Finite conformal hypergraph covers and Gaifman cliques in finite structures.,2003,9,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl9.html#HodkinsonO03,http://www.math.ucla.edu/~asl/bsl/0903/0903-005.ps +Andreas Weiermann,Classifying the Provably Total Functions of PA.,2006,12,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl12.html#Weiermann06,http://www.math.ucla.edu/~asl/bsl/1202/1202-001.ps +Jouko A. Väänänen,Barwise: Abstract model theory and generalized quantifiers.,2004,10,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl10.html#Vaananen04,http://www.math.ucla.edu/~asl/bsl/1001/1001-004.ps +Lou van den Dries,Is the Euclidean algorithm optimal among its peers?,2004,10,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl10.html#DriesM04,http://www.math.ucla.edu/~asl/bsl/1003/1003-004.ps +Albert Visser,Vaught's Theorem on Axiomatizability by a Scheme.,2012,18,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl18.html#Visser12,http://www.math.ucla.edu/~asl/bsl/1803/1803-003.ps +Steven Awodey,Relating First-order Set Theories and Elementary Toposes.,2007,13,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl13.html#AwodeyBSS07,http://www.math.ucla.edu/~asl/bsl/1303/1303-002.ps +Samuel R. Buss,The prospects for mathematical logic in the twenty-first century.,2001,7,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl7.html#BussKPS01,http://www.math.ucla.edu/~asl/bsl/0702/0702-001.ps +Renling Jin,Applications of nonstandard analysis in additive number theory.,2000,3,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl6.html#Jin00,http://www.math.ucla.edu/~asl/bsl/0603/0603-004.ps +Jouko A. Väänänen,Second order logic or set theory?,2012,18,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl18.html#Vaananen12,http://www.math.ucla.edu/~asl/bsl/1801/1801-003.ps +R. Gregory Taylor,Zermelo's Cantorian theory of systems of infinitely long propositions.,2002,8,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl8.html#Taylor02,http://www.math.ucla.edu/~asl/bsl/0804/0804-002.ps +Martin Otto 0001,An interpolation theorem.,2000,6,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl6.html#Otto00,http://www.math.ucla.edu/~asl/bsl/0604/0604-002.ps +Benjamin D. Miller,The graph-theoretic approach to descriptive set theory.,2012,18,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl18.html#Miller12,http://www.math.ucla.edu/~asl/bsl/1804/1804-003.ps +Erik Palmgren,Developments in constructive nonstandard analysis.,1998,4,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl4.html#Palmgren98,http://www.math.ucla.edu/~asl/bsl/0403/0403-001.ps +Henk Barendregt,The impact of the lambda calculus in logic and computer science.,1997,3,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl3.html#Barendregt97,http://www.math.ucla.edu/~asl/bsl/0302/0302-003.ps +Michal Rössler,Fragment of Nonstandard Analysis with a Finitary Consistency Proof.,2007,13,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl13.html#RosslerJ07,http://www.math.ucla.edu/~asl/bsl/1301/1301-004.ps +Valery Plisko,A Survey of Propositional Realizability Logic.,2009,15,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl15.html#Plisko09,http://www.math.ucla.edu/~asl/bsl/1501/1501-001.ps +Patrick Dehornoy,Another use of set theory.,1996,2,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl2.html#Dehornoy96,http://www.math.ucla.edu/~asl/bsl/0204/0204-001.ps +Bernard Linsky,What is neologicism?,2006,12,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl12.html#LinskyZ06,http://www.math.ucla.edu/~asl/bsl/1201/1201-003.ps +Philip D. Welch,Games for truth.,2009,15,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl15.html#Welch09,http://www.math.ucla.edu/~asl/bsl/1504/1504-002.ps +Steven Givant,Groups and algebras of nary relations.,2002,8,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl8.html#GivantA02,http://www.math.ucla.edu/~asl/bsl/0801/0801-002.ps +Stephen G. Simpson,Mass problems and measure-theoretic regularity.,2009,15,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl15.html#Simpson09,http://www.math.ucla.edu/~asl/bsl/1504/1504-001.ps +Alexander S. Kechris,New directions in descriptive set theory.,1999,5,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl5.html#Kechris99,http://www.math.ucla.edu/~asl/bsl/0502/0502-001.ps +Sara Negri,Cut elimination in the presence of axioms.,1998,4,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl4.html#NegriP98,http://www.math.ucla.edu/~asl/bsl/0404/0404-003.ps +Akihiro Kanamori,Cohen and Set Theory.,2008,14,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl14.html#Kanamori08,http://www.math.ucla.edu/~asl/bsl/1403/1403-003.ps +Mark van Atten,Arguments for the continuity principle.,2002,8,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl8.html#AttenD02,http://www.math.ucla.edu/~asl/bsl/0803/0803-001.ps +Steve Jackson,Survey of the Steinhaus tiling problem.,2003,9,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl9.html#JacksonM03,http://www.math.ucla.edu/~asl/bsl/0903/0903-003.ps +Colin McLarty,What does it take to prove Fermat's Last Theorem? Grothendieck and the logic of number theory.,2010,16,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl16.html#McLarty10,http://www.math.ucla.edu/~asl/bsl/1603/1603-003.ps +John L. Bell,Incompleteness in a General Setting.,2007,13,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl13.html#Bell07,http://www.math.ucla.edu/~asl/bsl/1301/1301-002.ps +Parosh Aziz Abdulla,Well (and better) quasi-ordered transition systems.,2010,16,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl16.html#Abdulla10,http://www.math.ucla.edu/~asl/bsl/1604/1604-001.ps +Carl Mummert,Reverse mathematics and pi12 comprehension.,2005,11,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl11.html#MummertS05,http://www.math.ucla.edu/~asl/bsl/1104/1104-003.ps +Patrick Lincoln,Linear logic proof games and optimization.,1996,2,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl2.html#LincolnMS96,http://www.math.ucla.edu/~asl/bsl/0203/0203-003.ps +H. Jerome Keisler,Nonstandard arithmetic and reverse mathematics.,2006,12,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl12.html#Keisler06,http://www.math.ucla.edu/~asl/bsl/1201/1201-004.ps +I. Susan Russinoff,The syllogism's final solution.,1999,5,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl5.html#Russinoff99,http://www.math.ucla.edu/~asl/bsl/0504/0504-002.ps +Vladimir Pestov,Hyperlinear and Sofic Groups: A Brief Guide.,2008,14,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl14.html#Pestov08,http://www.math.ucla.edu/~asl/bsl/1404/1404-001.ps +Olivier Chapuis,"From ""metabelian Q-vector spaces'' to new infinity-stable groups.",1996,2,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl2.html#Chapuis96,http://www.math.ucla.edu/~asl/bsl/0201/0201-003.ps +Harold Simmons,Tiering as a recursion technique.,2005,11,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl11.html#Simmons05,http://www.math.ucla.edu/~asl/bsl/1103/1103-001.ps +Juan Barba,Construction of truth predicates: approximation versus revision.,1998,4,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl4.html#Barba98,http://www.math.ucla.edu/~asl/bsl/0404/0404-002.ps +,Guidelines for logic education.,1995,1,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl1.html#X95,http://www.math.ucla.edu/~asl/bsl/0101/0101-002.ps +Akihiro Kanamori,In praise of replacement.,2012,18,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl18.html#Kanamori12,http://www.math.ucla.edu/~asl/bsl/1801/1801-002.ps +Guido Gherardi,Alan Turing and the foundations of computable analysis.,2011,17,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl17.html#Gherardi11,http://www.math.ucla.edu/~asl/bsl/1703/1703-003.ps +étienne Matheron,Descriptive Set Theory of Families of Small Sets.,2007,13,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl13.html#MatheronZ07,http://www.math.ucla.edu/~asl/bsl/1304/1304-002.ps +Itay Ben-Yaacov,Compactness and independence in non first order frameworks.,2005,11,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl11.html#Ben-Yaacov05,http://www.math.ucla.edu/~asl/bsl/1101/1101-002.ps +Akihiro Kanamori,Introduction.,2004,10,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl10.html#Kanamori04,http://www.math.ucla.edu/~asl/bsl/1001/1001-002.ps +,Jon Barwise.,2004,10,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl10.html#X04,http://www.math.ucla.edu/~asl/bsl/1001/1001-001.ps +Gila Sher,The foundational problem of logic.,2013,19,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl19.html#Sher13,http://www.math.ucla.edu/~asl/bsl/1902/1902-001.ps +Angus Macintyre,Model theory: Geometrical and set-theoretic aspects and prospects.,2003,9,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl9.html#Macintyre03,http://www.math.ucla.edu/~asl/bsl/0902/0902-005.ps +Grigor Sargsyan,Descriptive inner model theory.,2013,19,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl19.html#Sargsyan13,http://www.math.ucla.edu/~asl/bsl/1901/1901-001.ps +Miriam Franchella,Towards a re-evaluation of Julius Köonig's contribution to logic.,2000,6,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl6.html#Franchella00,http://www.math.ucla.edu/~asl/bsl/0601/0601-002.ps +Thomas Jech,Singular cardinals and the PCF theory.,1995,1,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl1.html#Jech95,http://www.math.ucla.edu/~asl/bsl/0104/0104-002.ps +Stanley N. Burris,The Horn theory of Boole's partial algebras.,2013,19,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl19.html#BurrisS13,http://www.math.ucla.edu/~asl/bsl/1901/1901-004.ps +Alexandra Shlapentokh,Defining integers.,2011,17,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl17.html#Shlapentokh11,https://doi.org/10.2178/bsl/1305810912 +Akihiro Kanamori,Bernays and Set Theory.,2009,15,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl15.html#Kanamori09,http://www.math.ucla.edu/~asl/bsl/1501/1501-002.ps +Jeremy Avigad,A model-theoretic approach to ordinal analysis.,1997,3,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl3.html#AvigadS97,http://www.math.ucla.edu/~asl/bsl/0301/0301-002.ps +John Corcoran,Schemata: The Concept of Schema in the History of Logic.,2006,12,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl12.html#Corcoran06,http://www.math.ucla.edu/~asl/bsl/1202/1202-003.ps +José Ferreirós,On arbitrary sets and ZFC.,2011,17,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl17.html#Ferreiros11,http://www.math.ucla.edu/~asl/bsl/1703/1703-002.ps +Antonio Montalbán,Open questions in reverse mathematics.,2011,17,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl17.html#Montalban11,http://www.math.ucla.edu/~asl/bsl/1703/1703-004.ps +Marcia J. Groszek,A basis theorem for perfect sets.,1998,4,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl4.html#GroszekS98,http://www.math.ucla.edu/~asl/bsl/0402/0402-004.ps +Noam Greenberg,The role of true finiteness in the admissible recursively enumerable degrees.,2005,11,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl11.html#Greenberg05,http://www.math.ucla.edu/~asl/bsl/1103/1103-004.ps +Peter Cholak,The Complexity of Orbits of Computably Enumerable Sets.,2008,14,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl14.html#CholakDH08,http://www.math.ucla.edu/~asl/bsl/1401/1401-003.ps +øystein Linnebo,Predicative fragments of Frege Arithmetic.,2004,10,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl10.html#Linnebo04,http://www.math.ucla.edu/~asl/bsl/1002/1002-001.ps +Mushfeq Khan,Shift-complex sequences.,2013,19,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl19.html#Khan13,http://www.math.ucla.edu/~asl/bsl/1902/1902-002.ps +Rafal Gruszczynski,Full Development of Tarski's Geometry of Solids.,2008,14,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl14.html#GruszczynskiP08,http://www.math.ucla.edu/~asl/bsl/1404/1404-002.ps +Denis R. Hirschfeldt,Degree spectra of relations on computable structures.,2000,6,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl6.html#Hirschfeldt00,http://www.math.ucla.edu/~asl/bsl/0602/0602-005.ps +Itay Neeman,Inner Models and Ultrafilters in L(R).,2007,13,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl13.html#Neeman07,http://www.math.ucla.edu/~asl/bsl/1301/1301-003.ps +Bart Kastermans,Isomorphism types of maximal cofinitary groups.,2009,15,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl15.html#Kastermans09,http://www.math.ucla.edu/~asl/bsl/1503/1503-002.ps +Wesley Calvert,Classification from a Computable Viewpoint.,2006,12,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl12.html#CalvertK06,http://www.math.ucla.edu/~asl/bsl/1202/1202-002.ps +Dirk van Dalen,Zermelo and the Skolem paradox.,2000,6,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl6.html#DalenE00,http://www.math.ucla.edu/~asl/bsl/0602/0602-001.ps +Jan Krajícek,Tautologies from pseudo-random generators.,2001,7,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl7.html#Krajicek01,http://www.math.ucla.edu/~asl/bsl/0702/0702-002.ps +Adrien Deloro,Actions of Groups of Finite Morley Rank on Small Abelian Groups.,2009,15,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl15.html#Deloro09,http://www.math.ucla.edu/~asl/bsl/1501/1501-003.ps +Martin Grohe,Finite variable logics in descriptive complexity theory.,1998,4,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl4.html#Grohe98,http://www.math.ucla.edu/~asl/bsl/0404/0404-001.ps +Mario Gómez-Torrene,The problem of logical constants.,2002,8,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl8.html#Gomez-Torrene02,http://www.math.ucla.edu/~asl/bsl/0801/0801-001.ps +Deirdre Haskell,Model theory of analytic functions: some historical comments.,2012,18,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl18.html#Haskell12,http://www.math.ucla.edu/~asl/bsl/1803/1803-002.ps +Peter Koellner,Strong logics of first and second order.,2010,16,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl16.html#Koellner10,http://www.math.ucla.edu/~asl/bsl/1601/1601-001.ps +William W. Tait,Gödel's reformulation of Gentzen's first consistency proof for arithmetic: the no-counterexample interpretation.,2005,11,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl11.html#Tait05,http://www.math.ucla.edu/~asl/bsl/1102/1102-009.ps +Solomon Feferman,Does mathematics need new axioms?,2000,6,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl6.html#FefermanFMS00,http://www.math.ucla.edu/~asl/bsl/0604/0604-001.ps +Fairouz Kamareddine,Types in logic and mathematics before 1940.,2002,8,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl8.html#KamareddineLN02,http://www.math.ucla.edu/~asl/bsl/0802/0802-001.ps +Akihiro Kanamori,The mathematical development of set theory from Cantor to Cohen.,1996,2,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl2.html#Kanamori96,http://www.math.ucla.edu/~asl/bsl/0201/0201-001.ps +John W. Dawson Jr.,Future tasks for Gödel scholars.,2005,11,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl11.html#DawsonD05,http://www.math.ucla.edu/~asl/bsl/1102/1102-004.ps +Tatiana Arrigoni,The hyperuniverse program.,2013,19,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl19.html#ArrigoniF13,http://www.math.ucla.edu/~asl/bsl/1901/1901-003.ps +Liang Yu,A new proof of Friedman's conjecture.,2011,17,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl17.html#Yu11,http://www.math.ucla.edu/~asl/bsl/1703/1703-005.ps +Fernando Ferreira,Interpretability in Robinson's Q.,2013,19,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl19.html#FerreiraF13,http://www.math.ucla.edu/~asl/bsl/1903/1903-001.ps +Lars Birkedal,A general notion of realizability.,2002,8,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl8.html#Birkedal02,http://www.math.ucla.edu/~asl/bsl/0802/0802-003.ps +Sasha Rubin,Automata Presenting Structures: A Survey of the Finite String Case.,2008,14,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl14.html#Rubin08,http://www.math.ucla.edu/~asl/bsl/1402/1402-001.ps +Nachum Dershowitz,A Natural Axiomatization of Computability and Proof of Church's Thesis.,2008,14,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl14.html#DershowitzG08,http://www.math.ucla.edu/~asl/bsl/1403/1403-002.ps +Wilfrid Hodges,An editor recalls some hopeless papers.,1998,4,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl4.html#Hodges98,http://www.math.ucla.edu/~asl/bsl/0401/0401-001.ps +Roman Kontchakov,Undecidability of first-order intuitionistic and modal logics with two variables.,2005,11,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl11.html#KontchakovKZ05,http://www.math.ucla.edu/~asl/bsl/1103/1103-006.ps +Giuseppe Longo,New programs and open problems in the foundation of mathematics.,2003,9,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl9.html#LongoS03,http://www.math.ucla.edu/~asl/bsl/0902/0902-001.ps +Martin Hofmann 0001,An application of category-theoretic semantics to the characterisation of complexity classes using higher-order function algebras.,1997,3,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl3.html#Hofmann97,http://www.math.ucla.edu/~asl/bsl/0304/0304-003.ps +Tatiana Arrigoni,V = L and intuitive plausibility in set theory. A case study.,2011,17,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl17.html#Arrigoni11,http://www.math.ucla.edu/~asl/bsl/1703/1703-001.ps +Jan von Plato,In the Shadows of the Löwenheim-Skolem Theorem: Early Combinatorial Analyses of Mathematical Proofs.,2007,13,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl13.html#Plato07,http://www.math.ucla.edu/~asl/bsl/1302/1302-002.ps +Jouko A. Väänänen,Second-order logic and foundations of mathematics.,2001,7,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl7.html#Vaananen01,http://www.math.ucla.edu/~asl/bsl/0704/0704-003.ps +Leon Henkin,The discovery of my completeness proofs.,1996,2,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl2.html#Henkin96,http://www.math.ucla.edu/~asl/bsl/0202/0202-001.ps +Viggo Stoltenberg-Hansen,Computable and continuous partial homomorphisms on metric partial algebras.,2003,9,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl9.html#Stoltenberg-HansenT03,http://www.math.ucla.edu/~asl/bsl/0903/0903-002.ps +Anuj Dawar,Fixed point logics.,2002,8,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl8.html#DawarG02,http://www.math.ucla.edu/~asl/bsl/0801/0801-003.ps +Jeremy Avigad,Forcing in proof theory.,2004,10,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl10.html#Avigad04,http://www.math.ucla.edu/~asl/bsl/1003/1003-001.ps +Dirk van Dalen,Herman Weyl's intuitionistic mathematics.,1995,1,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl1.html#Dalen95,http://www.math.ucla.edu/~asl/bsl/0102/0102-001.ps +Linus Kramer,Asymptotic cones and ultrapowers of Lie groups.,2004,10,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl10.html#KramerT04,http://www.math.ucla.edu/~asl/bsl/1002/1002-002.ps +Greg Hjorth,Two applications of inner model theory to the study of Sigma12 sets.,1996,2,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl2.html#Hjorth96,http://www.math.ucla.edu/~asl/bsl/0201/0201-004.ps +Giorgio Parisi,Two spaces looking for a geometer.,2003,9,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl9.html#Parisi03,http://www.math.ucla.edu/~asl/bsl/0902/0902-004.ps +Joseph R. Shoenfield,The mathematical work of S. C. Kleene.,1995,1,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl1.html#Shoenfield95,http://www.math.ucla.edu/~asl/bsl/0101/0101-003.ps +Antonio Montalbán,On the Equimorphism Types of Linear Orderings.,2007,13,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl13.html#Montalban07,http://www.math.ucla.edu/~asl/bsl/1301/1301-005.ps +Ronald B. Jensen,Inner models and large cardinals.,1995,1,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl1.html#Jensen95,http://www.math.ucla.edu/~asl/bsl/0104/0104-001.ps +Erich Grädel,On the decision problem for two-variable first-order logic.,1997,3,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl3.html#GradelKV97,http://www.math.ucla.edu/~asl/bsl/0301/0301-003.ps +Dilip Raghavan,Almost disjoint families and diagonalizations of length continuum.,2010,16,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl16.html#Raghavan10,http://www.math.ucla.edu/~asl/bsl/1602/1602-003.ps +Valentina S. Harizanov,Computability-theoretic complexity of countable structures.,2002,8,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl8.html#Harizanov02,http://www.math.ucla.edu/~asl/bsl/0804/0804-001.ps +Simon Thomas 0001,On the complexity of the classification problem for torsion-free abelian groups of finite rank.,2001,7,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl7.html#Thomas01,http://www.math.ucla.edu/~asl/bsl/0703/0703-003.ps +Jean-Yves Girard 0001,From foundations to ludics.,2003,9,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl9.html#Girard03,http://www.math.ucla.edu/~asl/bsl/0902/0902-002.ps +Andreas Blass,When are two algorithms the same?,2009,15,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl15.html#BlassDG09,http://www.math.ucla.edu/~asl/bsl/1502/1502-001.ps +Dirk van Dalen,Brouwer and Fraenkel on intuitionism.,2000,3,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl6.html#Dalen00,http://www.math.ucla.edu/~asl/bsl/0603/0603-002.ps +Steffen Lempp,A general framework for priority arguments.,1995,1,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl1.html#LemppL95,http://www.math.ucla.edu/~asl/bsl/0102/0102-003.ps +Akihiro Kanamori,Gödel and Set Theory.,2007,13,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl13.html#Kanamori07,http://www.math.ucla.edu/~asl/bsl/1302/1302-001.ps +Slawomir Solecki,Analytic ideals.,1996,2,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl2.html#Solecki96,http://www.math.ucla.edu/~asl/bsl/0203/0203-004.ps +Christian Rosendal,Automatic continuity of group homomorphisms.,2009,15,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl15.html#Rosendal09,http://www.math.ucla.edu/~asl/bsl/1502/1502-003.ps +Nathan Segerlind,The Complexity of Propositional Proofs.,2007,13,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl13.html#Segerlind07,http://www.math.ucla.edu/~asl/bsl/1304/1304-001.ps +Joseph R. Mileti,Partition Theorems and Computability Theory.,2005,11,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl11.html#Mileti05,http://www.math.ucla.edu/~asl/bsl/1103/1103-005.ps +Liesbeth De Mol,Closing the Circle: An Analysis of Emil Post's Early Work.,2006,12,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl12.html#Mol06,http://www.math.ucla.edu/~asl/bsl/1202/1202-005.ps +Ilijas Farah,Completely additive liftings.,1998,4,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl4.html#Farah98,http://www.math.ucla.edu/~asl/bsl/0401/0401-003.ps +Lauri Hella,Almost everywhere equivalence of logics in finite model theory.,1996,2,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl2.html#HellaKL96,http://www.math.ucla.edu/~asl/bsl/0204/0204-004.ps +Akihiro Kanamori,Preface.,2005,11,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl11.html#Kanamori05,http://www.math.ucla.edu/~asl/bsl/1102/1102-002.ps +Sun-Joo Shin,Heterogeneous reasoning and its logic.,2004,10,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl10.html#Shin04,http://www.math.ucla.edu/~asl/bsl/1001/1001-006.ps +André Nies,Describing Groups.,2007,13,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl13.html#Nies07,http://www.math.ucla.edu/~asl/bsl/1303/1303-001.ps +Volker Peckhaus,19th century logic between philosophy and mathematics.,1999,5,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl5.html#Peckhaus99,http://www.math.ucla.edu/~asl/bsl/0504/0504-001.ps +Arnaud Durand 0001,Fifty years of the spectrum problem: survey and new results.,2012,18,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl18.html#DurandJMM12,http://www.math.ucla.edu/~asl/bsl/1804/1804-002.ps +Jan von Plato,Gentzen's Proof of Normalization for Natural Deduction.,2008,14,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl14.html#Plato08,http://www.math.ucla.edu/~asl/bsl/1402/1402-003.ps +Paul Corazza,The Axiom of Infinity and transformations j: V ->* V.,2010,16,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl16.html#Corazza10,http://www.math.ucla.edu/~asl/bsl/1601/1601-002.ps +Stevo Todorcevic,Combinatorial dichotomies in set theory.,2011,17,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl17.html#Todorcevic11,http://www.math.ucla.edu/~asl/bsl/1701/1701-001.ps +José Ferreirós,The road to modern logic - An interpretation.,2001,7,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl7.html#Ferreiros01,http://www.math.ucla.edu/~asl/bsl/0704/0704-001.ps +Jindrich Zapletal,Analytic equivalence relations and the forcing method.,2013,19,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl19.html#Zapletal13,http://www.math.ucla.edu/~asl/bsl/1904/1904-002.ps +Joel David Hamkins,Gap forcing: Generalizing the Lévy-Solovay theorem.,1999,5,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl5.html#Hamkins99,http://www.math.ucla.edu/~asl/bsl/0502/0502-005.ps +Paolo Mancosu,Between Russell and Hilbert: Behmann on the foundations of mathematics.,1999,5,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl5.html#Mancosu99,http://www.math.ucla.edu/~asl/bsl/0503/0503-002.ps +Nikolai Weaver,Set Theory and C*-Algebras.,2007,13,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl13.html#Weaver07,http://www.math.ucla.edu/~asl/bsl/1301/1301-001.ps +George Barmpalias,Algorithmic randomness and measures of complexity.,2013,19,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl19.html#Barmpalias13,http://www.math.ucla.edu/~asl/bsl/1903/1903-002.ps +Noa Goldring,Measures: back and forth between point sets and large sets.,1995,1,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl1.html#Goldring95,http://www.math.ucla.edu/~asl/bsl/0102/0102-002.ps +Samuel Coskey,The complexity of classification problems for models of arithmetic.,2010,16,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl16.html#CoskeyK10,http://www.math.ucla.edu/~asl/bsl/1603/1603-002.ps +Joseph S. Miller,Randomness and Computability: Open Questions.,2006,12,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl12.html#MillerN06,http://www.math.ucla.edu/~asl/bsl/1203/1203-002.ps +Joseph Y. Halpern,On the unusual effectiveness of logic in computer science.,2001,7,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl7.html#HalpernHIKVV01,http://www.math.ucla.edu/~asl/bsl/0702/0702-003.ps +André Nies,Definability in the recursively enumerable degrees.,1996,2,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl2.html#NiesSS96,http://www.math.ucla.edu/~asl/bsl/0204/0204-002.ps +Sergei N. Artëmov,Explicit provability and constructive semantics.,2001,7,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl7.html#Artemov01,http://www.math.ucla.edu/~asl/bsl/0701/0701-001.ps +Philip Ehrlich,The absolute arithmetic continuum and the unification of all numbers great and small.,2012,18,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl18.html#Ehrlich12,http://www.math.ucla.edu/~asl/bsl/1801/1801-001.ps +Michael Rathjen,Recent advances in ordinal analysis: pi12 -- CA and related systems.,1995,1,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl1.html#Rathjen95,http://www.math.ucla.edu/~asl/bsl/0104/0104-004.ps +Donald A. Martin,Göel's conceptual realism.,2005,11,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl11.html#Martin05,http://www.math.ucla.edu/~asl/bsl/1102/1102-008.ps +Vasco Brattka,Effective choice and boundedness principles in computable analysis.,2011,17,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl17.html#BrattkaG11,http://www.math.ucla.edu/~asl/bsl/1701/1701-002.ps +Steven Awodey,A Brief Introduction to Algebraic Set Theory.,2008,14,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl14.html#Awodey08,http://www.math.ucla.edu/~asl/bsl/1403/1403-001.ps +Arianna Betti,On Tarski's foundations of the geometry of solids.,2012,18,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl18.html#BettiL12,http://www.math.ucla.edu/~asl/bsl/1802/1802-002.ps +F. William Lawvere,Foundations and applications: axiomatization and education.,2003,9,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl9.html#Lawvere03,http://www.math.ucla.edu/~asl/bsl/0902/0902-006.ps +Solomon Feferman,The Gödel editorial project: A synopsis.,2005,11,Bulletin of Symbolic Logic,2,db/journals/bsl/bsl11.html#Feferman05,http://www.math.ucla.edu/~asl/bsl/1102/1102-003.ps +Sy D. Friedman,An elementary approach to the fine structure of L.,1997,3,Bulletin of Symbolic Logic,4,db/journals/bsl/bsl3.html#FriedmanK97,http://www.math.ucla.edu/~asl/bsl/0304/0304-002.ps +Guy McCusker,Games and definability for FPC.,1997,3,Bulletin of Symbolic Logic,3,db/journals/bsl/bsl3.html#McCusker97,http://www.math.ucla.edu/~asl/bsl/0303/0303-004.ps +Reed Solomon,Ordered groups: a case study in reverse mathematics.,1999,5,Bulletin of Symbolic Logic,1,db/journals/bsl/bsl5.html#Solomon99,http://www.math.ucla.edu/~asl/bsl/0501/0501-002.ps +Chiara Stefani,A web platform for the consultation of spatialized and semantically enriched iconographic sources on cultural heritage buildings.,2013,6,JOCCH,3,db/journals/jocch/jocch6.html#StefaniBLLV13,http://doi.acm.org/10.1145/2499931.2499934 +Gregory Knight,Using n-Grams to Identify Time Periods of Cultural Influence.,2016,9,JOCCH,3,db/journals/jocch/jocch9.html#KnightT16,http://doi.acm.org/10.1145/2940332 +Karl-Heinz Lampe,Research between natural and cultural history information: Benefits and IT-requirements for transdisciplinarity.,2008,1,JOCCH,1,db/journals/jocch/jocch1.html#LampeRD08,http://doi.acm.org/10.1145/1367080.1367084 +Fumio Okura,Mixed-Reality World Exploration Using Image-Based Rendering.,2015,8,JOCCH,2,db/journals/jocch/jocch8.html#OkuraKY15,http://doi.acm.org/10.1145/2700428 +Edgar Roman-Rangel,Classification and Retrieval of Archaeological Potsherds Using Histograms of Spherical Orientations.,2016,9,JOCCH,3,db/journals/jocch/jocch9.html#Roman-RangelJM16,http://doi.acm.org/10.1145/2948069 +Hadas Zohar,Automatic thesaurus construction for cross generation corpus.,2013,6,JOCCH,1,db/journals/jocch/jocch6.html#ZoharLSD13,http://doi.acm.org/10.1145/2442080.2442084 +Michael Ashley López,Last House on the Hill: Digitally remediating data and media for preservation and access.,2011,4,JOCCH,4,db/journals/jocch/jocch4.html#LopezTP11,http://doi.acm.org/10.1145/2050096.2050098 +Ruggero Pintus,A Fast and Robust Framework for Semiautomatic and Automatic Registration of Photographs to 3D Geometry.,2014,7,JOCCH,4,db/journals/jocch/jocch7.html#PintusG14,https://doi.org/10.1145/2629514 +Jimmy Lin,Warcbase: Scalable Analytics Infrastructure for Exploring Web Archives.,2017,10,JOCCH,4,db/journals/jocch/jocch10.html#LinMWZ17,http://doi.acm.org/10.1145/3097570 +Philip Sapirstein,Pattern Matching and the Analysis of Damaged Ancient Objects: The Case of the Column Drum.,2016,9,JOCCH,3,db/journals/jocch/jocch9.html#SapirsteinP16,http://doi.acm.org/10.1145/2901297 +Anupama Mallik,Nrityakosha: Preserving the intangible heritage of Indian classical dance.,2011,4,JOCCH,3,db/journals/jocch/jocch4.html#MallikCG11,http://doi.acm.org/10.1145/2069276.2069280 +Wei Ma,Annotating traditional Chinese paintings for immersive virtual exhibition.,2012,5,JOCCH,2,db/journals/jocch/jocch5.html#MaWXLMG12,http://doi.acm.org/10.1145/2307723.2307725 +Zheng Lu 0002,Imaging buddhist art with a digital large-format camera: A field study report from the dunhuang caves.,2012,5,JOCCH,3,db/journals/jocch/jocch5.html#LuLSBB12,http://doi.acm.org/10.1145/2362402.2362403 +Karl Grieser,Using ontological and document similarity to estimate museum exhibit relatedness.,2011,3,JOCCH,3,db/journals/jocch/jocch3.html#GrieserBBS11,http://doi.acm.org/10.1145/1921614.1921617 +Hijung Shin,Analyzing and simulating fracture patterns of theran wall paintings.,2012,5,JOCCH,3,db/journals/jocch/jocch5.html#ShinDFRSVW12,http://doi.acm.org/10.1145/2362402.2362404 +Qing Sun,Ancient Chinese zither (guqin) music recovery with support vector machine.,2010,3,JOCCH,2,db/journals/jocch/jocch3.html#SunZFZM10,http://doi.acm.org/10.1145/1841317.1841320 +Markus Seidl,Gradual transition detection in historic film material - a systematic study.,2011,4,JOCCH,3,db/journals/jocch/jocch4.html#SeidlZMB11,http://doi.acm.org/10.1145/2069276.2069279 +David B. Arnold,Editorial.,2008,1,JOCCH,2,db/journals/jocch/jocch1.html#Arnold08a,http://doi.acm.org/10.1145/1434763.1434764 +Paolo Cignoni,Sampled 3D models for CH applications: A viable and enabling new medium or just a technological exercise?.,2008,1,JOCCH,1,db/journals/jocch/jocch1.html#CignoniS08,http://doi.acm.org/10.1145/1367080.1367082 +Kirk A. Woolford,Experimental archaeology and games: Challenges of inhabiting virtual heritage.,2013,6,JOCCH,4,db/journals/jocch/jocch6.html#WoolfordD13,http://doi.acm.org/10.1145/2532630.2532632 +David M. Mimno,Computational historiography: Data mining in a century of classics journals.,2012,5,JOCCH,1,db/journals/jocch/jocch5.html#Mimno12,http://doi.acm.org/10.1145/2160165.2160168 +Stephen D. Laycock,Combining X-ray micro-CT technology and 3D printing for the digital preservation and study of a 19th century cantonese chess piece with intricate internal structure.,2012,5,JOCCH,4,db/journals/jocch/jocch5.html#LaycockBMGCF12,http://doi.acm.org/10.1145/2399180.2399181 +Giuseppe Amato,Fast Image Classification for Monument Recognition.,2015,8,JOCCH,4,db/journals/jocch/jocch8.html#AmatoFG15,http://doi.acm.org/10.1145/2724727 +Angelos Yannopoulos,DirectorNotation: Artistic and technological system for professional film directing.,2013,6,JOCCH,1,db/journals/jocch/jocch6.html#Yannopoulos13,http://doi.acm.org/10.1145/2442080.2442082 +Daniele Mori,An easy to author dialogue management system for serious games.,2013,6,JOCCH,2,db/journals/jocch/jocch6.html#MoriBGFM13,http://doi.acm.org/10.1145/2460376.2460381 +Michael Kolomenkin,Reconstruction of relief objects from archeological line drawings.,2013,6,JOCCH,1,db/journals/jocch/jocch6.html#KolomenkinLST13,http://doi.acm.org/10.1145/2442080.2442083 +Antonio Celesti,An Innovative Cloud-Based System for the Diachronic Analysis in Numismatics.,2017,10,JOCCH,4,db/journals/jocch/jocch10.html#CelestiSSSPC17,http://doi.acm.org/10.1145/3084546 +Bruce Merry,Fast in-place binning of laser range-scanned point sets.,2013,6,JOCCH,3,db/journals/jocch/jocch6.html#MerryGM13,http://doi.acm.org/10.1145/2499931.2499935 +Long Chen 0005,Multi-View Feature Combination for Ancient Paintings Chronological Classification.,2017,10,JOCCH,2,db/journals/jocch/jocch10.html#ChenCZHL17,http://doi.acm.org/10.1145/3003435 +Giovanni Semeraro,A folksonomy-based recommender system for personalized access to digital artworks.,2012,5,JOCCH,3,db/journals/jocch/jocch5.html#SemeraroLGMN12,http://doi.acm.org/10.1145/2362402.2362405 +Piercarlo Dondi,Automatic Analysis of UV-Induced Fluorescence Imagery of Historical Violins.,2017,10,JOCCH,2,db/journals/jocch/jocch10.html#DondiLIRML17,http://doi.acm.org/10.1145/3051472 +Mohamed Ould Djibril,Islamic geometrical patterns indexing and classification using discrete symmetry groups.,2008,1,JOCCH,2,db/journals/jocch/jocch1.html#DjibrilT08,http://doi.acm.org/10.1145/1434763.1434767 +Eduardo Vendrell Vidal,A Discrete Approach for Pairwise Matching of Archaeological Fragments.,2014,7,JOCCH,3,db/journals/jocch/jocch7.html#VidalB14,http://doi.acm.org/10.1145/2597178 +Christopher Power,Improving Archaeologists' Online Archive Experiences Through User-Centred Design.,2017,10,JOCCH,1,db/journals/jocch/jocch10.html#PowerLPGRECWSR17,http://doi.acm.org/10.1145/2983917 +David B. Arnold,Editorial for inaugural issue of JOCCH: Pasteur's Quadrant: Cultural heritage as inspiration for basic research in computer science.,2008,1,JOCCH,1,db/journals/jocch/jocch1.html#Arnold08,http://doi.acm.org/10.1145/1367080.1367081 +Amy Friedlander,Introduction to the special issue on eHeritage.,2011,4,JOCCH,3,db/journals/jocch/jocch4.html#Friedlander11a,http://doi.acm.org/10.1145/2069276.2069277 +Chaya Liebeskind,Semiautomatic Construction of Cross-Period Thesaurus.,2016,9,JOCCH,4,db/journals/jocch/jocch9.html#LiebeskindDS16,http://doi.acm.org/10.1145/2994151 +Michela Mortara,Introduction to special issue on serious games for cultural heritage.,2013,6,JOCCH,2,db/journals/jocch/jocch6.html#MortaraB13,http://doi.acm.org/10.1145/2460376.2460377 +Tanguy Coenen,MuseUs: Case study of a pervasive cultural heritage serious game.,2013,6,JOCCH,2,db/journals/jocch/jocch6.html#CoenenMN13,http://doi.acm.org/10.1145/2460376.2460379 +Vinay Mohan Das,Digital reconstruction of pavilions described in an ancient Indian architectural treatise.,2011,4,JOCCH,1,db/journals/jocch/jocch4.html#DasG11,http://doi.acm.org/10.1145/2001416.2001417 +Florian Müller 0006,PEVIAR: Digital originals.,2010,3,JOCCH,1,db/journals/jocch/jocch3.html#MullerFRG10,http://doi.acm.org/10.1145/1805961.1805963 +Carlos Sanchez Belenguer,Automatic Production of Tailored Packaging for Fragile Archaeological Artifacts.,2015,8,JOCCH,3,db/journals/jocch/jocch8.html#BelenguerVLDA15,http://doi.acm.org/10.1145/2716324 +Andreas Aristidou,Folk Dance Evaluation Using Laban Movement Analysis.,2015,8,JOCCH,4,db/journals/jocch/jocch8.html#AristidouSCCH15,http://doi.acm.org/10.1145/2755566 +Silvia Mirri,Handmade Narrations: Handling Digital Narrations on Food and Gastronomic Culture.,2017,10,JOCCH,4,db/journals/jocch/jocch10.html#MirriPRS17,http://doi.acm.org/10.1145/3097569 +Rui Hu,Extracting Maya Glyphs from Degraded Ancient Documents via Image Segmentation.,2017,10,JOCCH,2,db/journals/jocch/jocch10.html#HuOG17,http://doi.acm.org/10.1145/2996859 +Erica Calogero,Using procedural modeling to explore alternative designs for the louvre.,2013,6,JOCCH,4,db/journals/jocch/jocch6.html#CalogeroKA13,http://doi.acm.org/10.1145/2532630.2512883 +Jacob J. Foley,A Web-Based Infrastructure for the Assisted Annotation of Heritage Collections.,2017,10,JOCCH,3,db/journals/jocch/jocch10.html#FoleyKW17,http://doi.acm.org/10.1145/3012287 +Roberto Scopigno,Editorial.,2013,6,JOCCH,1,db/journals/jocch/jocch6.html#Scopigno13,http://doi.acm.org/10.1145/2442080.2442081 +Fabio Marton,IsoCam: Interactive Visual Exploration of Massive Cultural Heritage Models on Large Projection Setups.,2014,7,JOCCH,2,db/journals/jocch/jocch7.html#MartonRBAVG14,http://doi.acm.org/10.1145/2611519 +Mariam Samaan,Close-Range Photogrammetric Tools for Epigraphic Surveys.,2016,9,JOCCH,3,db/journals/jocch/jocch9.html#SamaanDHVR16,http://doi.acm.org/10.1145/2966985 +Jeremy Hutchings,Using survival analysis on conservation metadata to benchmark treatment frequency.,2008,1,JOCCH,2,db/journals/jocch/jocch1.html#HutchingsS08,http://doi.acm.org/10.1145/1434763.1434766 +Nadine Kroher,Corpus COFLA: A Research Corpus for the Computational Study of Flamenco Music.,2016,9,JOCCH,2,db/journals/jocch/jocch9.html#KroherDMG16,http://doi.acm.org/10.1145/2875428 +Gualtiero Volpe,A system for embodied social active listening to sound and music content.,2011,4,JOCCH,1,db/journals/jocch/jocch4.html#VolpeC11,http://doi.acm.org/10.1145/2001416.2001418 +Tobias Blanke,The European Holocaust Research Infrastructure Portal.,2017,10,JOCCH,1,db/journals/jocch/jocch10.html#BlankeBFKSDH17,http://doi.acm.org/10.1145/3004457 +Ilaria Cacciari,3D Digital Microscopy for Characterizing Punchworks on Medieval Panel Paintings.,2014,7,JOCCH,4,db/journals/jocch/jocch7.html#CacciariNS14,https://doi.org/10.1145/2594443 +Chih-Hong Huang,An annales school-based serious game creation framework for taiwanese indigenous cultural heritage.,2013,6,JOCCH,2,db/journals/jocch/jocch6.html#HuangH13,http://doi.acm.org/10.1145/2460376.2460380 +Ibrahim Bounhas,Information Reliability Evaluation: From Arabic Storytelling to Computer Sciences.,2015,8,JOCCH,3,db/journals/jocch/jocch8.html#BounhasEES15,http://doi.acm.org/10.1145/2693847 +Carlo Meghini,ARIADNE: A Research Infrastructure for Archaeology.,2017,10,JOCCH,3,db/journals/jocch/jocch10.html#MeghiniSRWGCFFH17,http://doi.acm.org/10.1145/3064527 +Robert G. Laycock,Exploring cultural heritage sites through space and time.,2008,1,JOCCH,2,db/journals/jocch/jocch1.html#LaycockDD08,http://doi.acm.org/10.1145/1434763.1434768 +Lior Shamir,Computer analysis of art.,2012,5,JOCCH,2,db/journals/jocch/jocch5.html#ShamirT12,http://doi.acm.org/10.1145/2307723.2307726 +Gulcan Can,Evaluating Shape Representations for Maya Glyph Classification.,2016,9,JOCCH,3,db/journals/jocch/jocch9.html#CanOG16,http://doi.acm.org/10.1145/2905369 +Jacob B. Madsen,Handheld Visual Representation of a Castle Chapel Ruin.,2016,9,JOCCH,1,db/journals/jocch/jocch9.html#MadsenM16,http://doi.acm.org/10.1145/2822899 +Jeffrey Treviño,Automated Notation of Piano Recordings for Historic Performance Practice Study.,2014,7,JOCCH,3,db/journals/jocch/jocch7.html#TrevinoS14,http://doi.acm.org/10.1145/2597179 +Nikolaos Aletras,Computing similarity between items in a digital library of cultural heritage.,2012,5,JOCCH,4,db/journals/jocch/jocch5.html#AletrasSC12,http://doi.acm.org/10.1145/2399180.2399184 +Thomas A. Funkhouser,Learning how to match fresco fragments.,2011,4,JOCCH,2,db/journals/jocch/jocch4.html#FunkhouserSTCBDRW11,http://doi.acm.org/10.1145/2037820.2037824 +Sven Havemann,The arrigo showcase reloaded - towards a sustainable link between 3D and semantics.,2009,2,JOCCH,1,db/journals/jocch/jocch2.html#HavemannSBEF09,http://doi.acm.org/10.1145/1551676.1551680 +Irene Katsouri,Visualizing and Assessing Hypotheses for Marine Archaeology in a VR CAVE Environment.,2015,8,JOCCH,2,db/journals/jocch/jocch8.html#KatsouriTHP15,http://doi.acm.org/10.1145/2665072 +Josef Froschauer,Art history concepts at play with ThIATRO.,2013,6,JOCCH,2,db/journals/jocch/jocch6.html#FroschauerMAG13,http://doi.acm.org/10.1145/2460376.2460378 +Isabel Pedersen,More than Meets the Eye: The Benefits of Augmented Reality and Holographic Displays for Digital Cultural Heritage.,2017,10,JOCCH,2,db/journals/jocch/jocch10.html#PedersenGMR17,http://doi.acm.org/10.1145/3051480 +Franciska de Jong,Access to recorded interviews: A research agenda.,2008,1,JOCCH,1,db/journals/jocch/jocch1.html#JongOHO08,http://doi.acm.org/10.1145/1367080.1367083 +Martin Doerr,The dream of a global knowledge network - A new approach.,2008,1,JOCCH,1,db/journals/jocch/jocch1.html#DoerrI08,http://doi.acm.org/10.1145/1367080.1367085 +Mauro Dragoni,A Knowledge Management Architecture for Digital Cultural Heritage.,2017,10,JOCCH,3,db/journals/jocch/jocch10.html#DragoniTM17,http://doi.acm.org/10.1145/3012289 +Irene Rubino,Integrating a Location-Based Mobile Game in the Museum Visit: Evaluating Visitors' Behaviour and Learning.,2015,8,JOCCH,3,db/journals/jocch/jocch8.html#RubinoBXM15,http://doi.acm.org/10.1145/2724723 +Carrie Heitman,"Innovation through Large-Scale Integration of Legacy Records: Assessing the ""Value Added"" in Cultural Heritage Resources.",2017,10,JOCCH,3,db/journals/jocch/jocch10.html#HeitmanMP17,http://doi.acm.org/10.1145/3012288 +Maarten Heerlien,The Natural History Production Line: An Industrial Approach to the Digitization of Scientific Collections.,2015,8,JOCCH,1,db/journals/jocch/jocch8.html#HeerlienLSJRH15,http://doi.acm.org/10.1145/2644822 +Elwira Holowko,Color-Based Algorithm for Automatic Merging of Multiview 3D Point Clouds.,2014,7,JOCCH,3,db/journals/jocch/jocch7.html#HolowkoWSK14,http://doi.acm.org/10.1145/2558306 +Elena Sizikova,Wall Painting Reconstruction Using a Genetic Algorithm.,2018,11,JOCCH,1,db/journals/jocch/jocch11.html#SizikovaF18,http://doi.acm.org/10.1145/3084547 +Gianvito Pio,Discovering Novelty Patterns from the Ancient Christian Inscriptions of Rome.,2014,7,JOCCH,4,db/journals/jocch/jocch7.html#PioFFMC14,http://doi.acm.org/10.1145/2629513 +Panayiotis Rousopoulos,Image and pattern analysis for the determination of the method of drawing celebrated thera wall-paintings circa 1650 B.C.,2010,3,JOCCH,2,db/journals/jocch/jocch3.html#RousopoulosPAEP10,http://doi.acm.org/10.1145/1841317.1841318 +Abdelbar Nasri,Parametric Shape Grammar Formalism for Moorish Geometric Design Analysis and Generation.,2017,10,JOCCH,4,db/journals/jocch/jocch10.html#NasriB17,http://doi.acm.org/10.1145/3064419 +Hagen Hirschmann,Measuring and coding language change: An evolving study in a multilayer corpus architecture.,2012,5,JOCCH,1,db/journals/jocch/jocch5.html#HirschmannLZ12,http://doi.acm.org/10.1145/2160165.2160169 +Ismet Zeki Yalniz,Ottoman archives explorer: A retrieval system for digital Ottoman archives.,2009,2,JOCCH,3,db/journals/jocch/jocch2.html#YalnizAGU09,https://doi.org/10.1145/1658346.1658348 +Alonzo C. Addison,Editorial.,2015,8,JOCCH,1,db/journals/jocch/jocch8.html#AddisonLP15,http://doi.acm.org/10.1145/2715265 +Ashraf Saad Hussein,Wind flow modeling and simulation over the Giza Plateau cultural heritage site in Egypt.,2009,2,JOCCH,2,db/journals/jocch/jocch2.html#HusseinE09,http://doi.acm.org/10.1145/1613672.1613674 +Georgios Papaioannou,From Reassembly to Object Completion: A Complete Systems Pipeline.,2017,10,JOCCH,2,db/journals/jocch/jocch10.html#PapaioannouSAMG17,http://doi.acm.org/10.1145/3009905 +Xuan Wang,Interacting with Traditional Chinese Culture through Natural Language.,2014,7,JOCCH,3,db/journals/jocch/jocch7.html#WangTNC14,http://doi.acm.org/10.1145/2597183 +Jaakko Suominen,Gaming legacy? four approaches to the relation between cultural heritage and digital technology.,2013,6,JOCCH,3,db/journals/jocch/jocch6.html#SuominenS13,http://doi.acm.org/10.1145/2499931.2499933 +Christina Volioti,A Natural User Interface for Gestural Expression and Emotional Elicitation to Access the Musical Intangible Cultural Heritage.,2018,11,JOCCH,2,db/journals/jocch/jocch11.html#VoliotiMHHCHKMM18,http://doi.acm.org/10.1145/3127324 +Marco Agus,Data-Driven Analysis of Virtual 3D Exploration of a Large Sculpture Collection in Real-World Museum Exhibitions.,2018,11,JOCCH,1,db/journals/jocch/jocch11.html#AgusMBHG18,http://doi.acm.org/10.1145/3099618 +Gianpaolo Palma,Dynamic shading enhancement for reflectance transformation imaging.,2010,3,JOCCH,2,db/journals/jocch/jocch3.html#PalmaCCSM10,http://doi.acm.org/10.1145/1841317.1841321 +Helen C. Miles,Alternative Representations of 3D-Reconstructed Heritage Data.,2016,9,JOCCH,1,db/journals/jocch/jocch9.html#MilesWLTGERMMKR16,http://doi.acm.org/10.1145/2795233 +Francisco Soler,Design of cultural heritage information systems based on information layers.,2013,6,JOCCH,4,db/journals/jocch/jocch6.html#SolerTLL13,http://doi.acm.org/10.1145/2532630.2532631 +Angeliki Antoniou,An approach for serious game development for cultural heritage: Case study for an archaeological site and museum.,2013,6,JOCCH,4,db/journals/jocch/jocch6.html#AntoniouLBA13,http://doi.acm.org/10.1145/2532630.2532633 +Matthias Zeppelzauer,Interactive 3D Segmentation of Rock-Art by Enhanced Depth Maps and Gradient Preserving Regularization.,2016,9,JOCCH,4,db/journals/jocch/jocch9.html#ZeppelzauerPSRS16,http://doi.acm.org/10.1145/2950062 +Roberto Scopigno,Editorial.,2012,5,JOCCH,2,db/journals/jocch/jocch5.html#Scopigno12,http://doi.acm.org/10.1145/2307723.2307724 +Shankar Setty,Region of Interest-Based 3D Inpainting of Cultural Heritage Artifacts.,2018,11,JOCCH,2,db/journals/jocch/jocch11.html#SettyM18,http://doi.acm.org/10.1145/3131778 +Karina Rodriguez-Echavarria,Analyzing the Decorative Style of 3D Heritage Collections Based on Shape Saliency.,2016,9,JOCCH,4,db/journals/jocch/jocch9.html#Rodriguez-Echavarria16,http://doi.acm.org/10.1145/2943778 +Matthew Christy,Mass Digitization of Early Modern Texts With Optical Character Recognition.,2018,11,JOCCH,1,db/journals/jocch/jocch11.html#ChristyGGMFG18,http://doi.acm.org/10.1145/3075645 +Ying Yang 0003,Automatic Single Page-Based Algorithms for Medieval Manuscript Analysis.,2017,10,JOCCH,2,db/journals/jocch/jocch10.html#YangPGR17,http://doi.acm.org/10.1145/2996469 +Torsten Ullrich,Semantic fitting and reconstruction.,2008,1,JOCCH,2,db/journals/jocch/jocch1.html#UllrichSF08,http://doi.acm.org/10.1145/1434763.1434769 +Zhi Gao,Adaptive Sparse Representation for Analyzing Artistic Style of Paintings.,2015,8,JOCCH,4,db/journals/jocch/jocch8.html#GaoSL15,http://doi.acm.org/10.1145/2756556 +Marcos Balsa Rodríguez,Digital Mont'e Prama: Exploring Large Collections of Detailed 3D Models of Sculptures.,2016,9,JOCCH,4,db/journals/jocch/jocch9.html#RodriguezABMG16,http://doi.acm.org/10.1145/2915919 +Silvia Biasotti,3D Artifacts Similarity Based on the Concurrent Evaluation of Heterogeneous Properties.,2015,8,JOCCH,4,db/journals/jocch/jocch8.html#BiasottiCFS15,http://doi.acm.org/10.1145/2747882 +Daniel Isemann,Ontological access to images of fine art.,2014,7,JOCCH,1,db/journals/jocch/jocch7.html#IsemannA14,http://doi.acm.org/10.1145/2538030 +Ruggero Pintus,ATHENA: Automatic Text Height Extraction for the Analysis of Text Lines in Old Handwritten Manuscripts.,2015,8,JOCCH,1,db/journals/jocch/jocch8.html#PintusYR15,http://doi.acm.org/10.1145/2659020 +M. V. Rohith,A camera flash projector-based reconstruction system for digital preservation of artifacts.,2013,6,JOCCH,1,db/journals/jocch/jocch6.html#RohithSNGK13,http://doi.acm.org/10.1145/2442080.2442085 +Vincenzo Lombardo,Safeguarding and Accessing Drama as Intangible Cultural Heritage.,2016,9,JOCCH,1,db/journals/jocch/jocch9.html#LombardoPD16,http://doi.acm.org/10.1145/2812814 +Christian Hörr,Machine learning based typology development in archaeology.,2014,7,JOCCH,1,db/journals/jocch/jocch7.html#HorrLB14,http://doi.acm.org/10.1145/2533988 +Francesco Bellotti,A serious game model for cultural heritage.,2012,5,JOCCH,4,db/journals/jocch/jocch5.html#BellottiBGDF12,http://doi.acm.org/10.1145/2399180.2399185 +Alexandrino Gonçalves,High dynamic range - a gateway for predictive ancient lighting.,2009,2,JOCCH,1,db/journals/jocch/jocch2.html#GoncalvesMMC09,http://doi.acm.org/10.1145/1551676.1551679 +David Bamman,Extracting two thousand years of latin from a million book library.,2012,5,JOCCH,1,db/journals/jocch/jocch5.html#BammanS12,http://doi.acm.org/10.1145/2160165.2160167 +Eliana Siotto,Ancient Polychromy: Study and Virtual Reconstruction Using Open Source Tools.,2015,8,JOCCH,3,db/journals/jocch/jocch8.html#SiottoCDS15,http://doi.acm.org/10.1145/2739049 +Pierre Drap,The ROV 3D Project: Deep-Sea Underwater Survey Using Photogrammetry: Applications for Underwater Archaeology.,2015,8,JOCCH,4,db/journals/jocch/jocch8.html#DrapSHMBCSL15,http://doi.acm.org/10.1145/2757283 +Chun-Ko Hsieh,Interacting with the past: Creating a time perception journey experience using kinect-based breath detection and deterioration and recovery simulation technologies.,2014,7,JOCCH,1,db/journals/jocch/jocch7.html#HsiehLYH14,http://doi.acm.org/10.1145/2535937 +Christopher Schwartz,WebGL-based streaming and presentation of objects with bidirectional texture functions.,2013,6,JOCCH,3,db/journals/jocch/jocch6.html#SchwartzRWK13,http://doi.acm.org/10.1145/2499931.2499932 +Ruggero Pintus,Fast low-memory seamless photo blending on massive point clouds using a streaming framework.,2011,4,JOCCH,2,db/journals/jocch/jocch4.html#PintusGC11,http://doi.acm.org/10.1145/2037820.2037823 +Fabio Bettio,Mont'e Scan: Effective Shape and Color Digitization of Cluttered 3D Artworks.,2015,8,JOCCH,1,db/journals/jocch/jocch8.html#BettioPVMMG15,http://doi.acm.org/10.1145/2644823 +Alessandro Enrico Foni,A taxonomy of visualization strategies for cultural heritage applications.,2010,3,JOCCH,1,db/journals/jocch/jocch3.html#FoniPM10,http://doi.acm.org/10.1145/1805961.1805962 +Martin Hachet,Introduction to Special Issue on Interacting with the Past.,2014,7,JOCCH,2,db/journals/jocch/jocch7.html#HachetD14,http://doi.acm.org/10.1145/2635671 +Thomas Hurtut,Artistic line-drawings retrieval based on the pictorial content.,2011,4,JOCCH,1,db/journals/jocch/jocch4.html#HurtutGCS11,http://doi.acm.org/10.1145/2001416.2001419 +S. Baldissini,Interacting with the Andrea Palladio Works: The History of Palladian Information System Interfaces.,2014,7,JOCCH,2,db/journals/jocch/jocch7.html#BaldissiniG14,http://doi.acm.org/10.1145/2611374 +Nazrita Ibrahim,A Conceptual Framework for Designing Virtual Heritage Environment for Cultural Learning.,2018,11,JOCCH,2,db/journals/jocch/jocch11.html#IbrahimA18,http://doi.acm.org/10.1145/3117801 +Angeliki Antoniou,Modeling visitors' profiles: A study to investigate adaptation aspects for museum learning technologies.,2010,3,JOCCH,2,db/journals/jocch/jocch3.html#AntoniouL10,http://doi.acm.org/10.1145/1841317.1841322 +Maria Moritz,Sentence Shortening via Morpho-Syntactic Annotated Data in Historical Language Learning.,2016,9,JOCCH,1,db/journals/jocch/jocch9.html#MoritzFCP16,http://doi.acm.org/10.1145/2810040 +Matteo Dellepiane,Improved color acquisition and mapping on 3D models via flash-based photography.,2010,2,JOCCH,4,db/journals/jocch/jocch2.html#DellepianeCCCS10,https://doi.org/10.1145/1709091.1709092 +Giovanni A. Cignoni,A Virtual Experience on the Very First Italian Computer.,2014,7,JOCCH,4,db/journals/jocch/jocch7.html#CignoniGP14,https://doi.org/10.1145/2629484 +Sara Migliorini,An Interoperable Spatio-Temporal Model for Archaeological Data Based on ISO Standard 19100.,2018,11,JOCCH,1,db/journals/jocch/jocch11.html#MiglioriniGB18,http://doi.acm.org/10.1145/3057929 +Nadia Boukhelifa,The CENDARI Infrastructure.,2018,11,JOCCH,2,db/journals/jocch/jocch11.html#BoukhelifaBBCFK18,http://doi.acm.org/10.1145/3092906 +Cheikh Niang,Supporting Semantic Interoperability in Conservation-Restoration Domain: The PARCOURS Project.,2017,10,JOCCH,3,db/journals/jocch/jocch10.html#NiangMBLMBDL17,http://doi.acm.org/10.1145/3097571 +Nuno Correia 0001,Design of an Interactive Experience with Medieval Illuminations: A Journey into the Beauty and Meaning of Medieval Portuguese Manuscripts.,2014,7,JOCCH,2,db/journals/jocch/jocch7.html#CorreiaRRMMCCM14,http://doi.acm.org/10.1145/2626289 +Marco Mason,The MIT Museum Glassware Prototype: Visitor Experience Exploration for Designing Smart Glasses.,2016,9,JOCCH,3,db/journals/jocch/jocch9.html#Mason16,http://doi.acm.org/10.1145/2872278 +Albert Kavelar,Reading the legends of Roman Republican coins.,2014,7,JOCCH,1,db/journals/jocch/jocch7.html#KavelarZK14,http://doi.acm.org/10.1145/2583115 +Michael Zollhöfer,Low-Cost Real-Time 3D Reconstruction of Large-Scale Excavation Sites.,2016,9,JOCCH,1,db/journals/jocch/jocch9.html#ZollhoferSVDSAB16,http://doi.acm.org/10.1145/2770877 +Roberto Scopigno,Editorial.,2018,11,JOCCH,1,db/journals/jocch/jocch11.html#Scopigno18,http://doi.acm.org/10.1145/3174869 +Marco Callieri,Multiscale acquisition and presentation of very large artifacts: The case of portalada.,2011,3,JOCCH,4,db/journals/jocch/jocch3.html#CallieriCDBCMRSB11,http://doi.acm.org/10.1145/1957825.1957827 +Giorgio Trumpy,Optical Detection of Dust and Scratches on Photographic Film.,2015,8,JOCCH,2,db/journals/jocch/jocch8.html#TrumpyG15,http://doi.acm.org/10.1145/2597894 +Diego Gutierrez,Modeling light scattering for virtual heritage.,2008,1,JOCCH,2,db/journals/jocch/jocch1.html#GutierrezSGC08,http://doi.acm.org/10.1145/1434763.1434765 +Daniel G. Aliaga,DECHO - a framework for the digital exploration of cultural heritage objects.,2011,3,JOCCH,3,db/journals/jocch/jocch3.html#AliagaBV11,http://doi.acm.org/10.1145/1921614.1921619 +Fabio Remondino,3D modeling of complex and detailed cultural heritage using multi-resolution data.,2009,2,JOCCH,1,db/journals/jocch/jocch2.html#RemondinoGRG09,http://doi.acm.org/10.1145/1551676.1551678 +Barbara Thuswaldner,Digital anastylosis of the Octagon in Ephesos.,2009,2,JOCCH,1,db/journals/jocch/jocch2.html#ThuswaldnerFKHHT09,http://doi.acm.org/10.1145/1551676.1551677 +Victor Obonyo,Digital smartpen technology and revitalization of the Myaamia language.,2011,4,JOCCH,4,db/journals/jocch/jocch4.html#ObonyoTBC11,http://doi.acm.org/10.1145/2050096.2050097 +Chih-Hao Yu,Documenting and sharing comparative analyses of 3D digital museum artifacts through semantic web annotations.,2013,6,JOCCH,4,db/journals/jocch/jocch6.html#YuH13,http://doi.acm.org/10.1145/2532630.2532634 +Kevin Baker,Cultural Heritage Routing: A Recreational Navigation-based Approach in Exploring Cultural Heritage.,2017,10,JOCCH,4,db/journals/jocch/jocch10.html#BakerV17,http://doi.acm.org/10.1145/3040200 +Samer A. Abdallah,The Digital Music Lab: A Big Data Infrastructure for Digital Musicology.,2017,10,JOCCH,1,db/journals/jocch/jocch10.html#AbdallahBGHWW17,http://doi.acm.org/10.1145/2983918 +Marilena Daquino,Enhancing Semantic Expressivity in the Cultural Heritage Domain: Exposing the Zeri Photo Archive as Linked Open Data.,2017,10,JOCCH,4,db/journals/jocch/jocch10.html#DaquinoMPTV17,http://doi.acm.org/10.1145/3051487 +Christine Chevrier,Semiautomatic Parametric Modelling of the Buildings on Town Scale Models.,2014,7,JOCCH,4,db/journals/jocch/jocch7.html#Chevrier14,https://doi.org/10.1145/2622609 +Eva Pietroni,Interacting with Virtual Reconstructions in Museums: The Etruscanning Project.,2014,7,JOCCH,2,db/journals/jocch/jocch7.html#PietroniA14,http://doi.acm.org/10.1145/2611375 +Giovanni Puglisi,Automatic Extraction of Petrographic Features from Pottery of Archaeological Interest.,2015,8,JOCCH,3,db/journals/jocch/jocch8.html#PuglisiSBM15,http://doi.acm.org/10.1145/2700422 +Amy Friedlander,Editorial.,2011,4,JOCCH,2,db/journals/jocch/jocch4.html#Friedlander11,http://doi.acm.org/10.1145/2037820.2037821 +Andreas Reichinger,High-quality tactile paintings.,2011,4,JOCCH,2,db/journals/jocch/jocch4.html#ReichingerMP11,http://doi.acm.org/10.1145/2037820.2037822 +David Lo Buglio,"What Do Thirty-One Columns Say about a ""Theoretical"" Thirty-Second?",2015,8,JOCCH,1,db/journals/jocch/jocch8.html#BuglioLL15,http://doi.acm.org/10.1145/2700425 +Theano Moussouri,Conducting Visitor Studies Using Smartphone-Based Location Sensing.,2015,8,JOCCH,3,db/journals/jocch/jocch8.html#MoussouriR15,http://doi.acm.org/10.1145/2677083 +Jin Liu,Rule-Based Generation of Ancient Chinese Architecture from the Song Dynasty.,2016,9,JOCCH,2,db/journals/jocch/jocch9.html#LiuW16,http://doi.acm.org/10.1145/2835495 +Michael Makridis,Automatic classification of archaeological pottery sherds.,2012,5,JOCCH,4,db/journals/jocch/jocch5.html#MakridisD12,http://doi.acm.org/10.1145/2399180.2399183 +Amalia de Götzen,The musical heritage of futurism: A digital reconstruction of the intonarumori family.,2009,2,JOCCH,2,db/journals/jocch/jocch2.html#GotzenS09,http://doi.acm.org/10.1145/1613672.1613673 +Chiara Eva Catalano,Best Papers Selected at the 14th Eurographics Workshop on Graphics and Cultural Heritage Editorial.,2018,11,JOCCH,1,db/journals/jocch/jocch11.html#CatalanoL18,http://doi.acm.org/10.1145/3152908 +Brett Ridel,The Revealing Flashlight: Interactive Spatial Augmented Reality for Detail Exploration of Cultural Heritage Artifacts.,2014,7,JOCCH,2,db/journals/jocch/jocch7.html#RidelRLMCG14,http://doi.acm.org/10.1145/2611376 +Stefan Rennick Egglestone,Families and Mobile Devices in Museums: Designing for Integrated Experiences.,2016,9,JOCCH,2,db/journals/jocch/jocch9.html#EgglestoneBKBRC16,http://doi.acm.org/10.1145/2891416 +Charlotte Hug,Qualitative evaluation of cultural heritage information modeling techniques.,2012,5,JOCCH,2,db/journals/jocch/jocch5.html#HugG12,http://doi.acm.org/10.1145/2307723.2307727 +Enzhi Ni,Handwriting input system of chinese guqin notation.,2011,3,JOCCH,3,db/journals/jocch/jocch3.html#NiJDZ11,http://doi.acm.org/10.1145/1921614.1921616 +Chiara Leoni,The Dream and the Cross: A 3D Scanning Project to Bring 3D Content in a Digital Edition.,2015,8,JOCCH,1,db/journals/jocch/jocch8.html#LeoniCDOTS15,http://doi.acm.org/10.1145/2686873 +Giuseppe Amato,Visual Recognition of Ancient Inscriptions Using Convolutional Neural Network and Fisher Vector.,2016,9,JOCCH,4,db/journals/jocch/jocch9.html#AmatoFV16,http://doi.acm.org/10.1145/2964911 +Patrick Reuter,ArcheoTUI - Driving virtual reassemblies with tangible 3D interaction.,2010,3,JOCCH,2,db/journals/jocch/jocch3.html#ReuterRCME10,http://doi.acm.org/10.1145/1841317.1841319 +Richard Brownlow,An Ontological Approach to Creating an Andean Weaving Knowledge Base.,2015,8,JOCCH,2,db/journals/jocch/jocch8.html#BrownlowCHMNP15,http://doi.acm.org/10.1145/2700427 +Nazrita Ibrahim,Factors Facilitating Cultural Learning in Virtual Architectural Heritage Environments: End User Perspective.,2015,8,JOCCH,2,db/journals/jocch/jocch8.html#IbrahimAY15,http://doi.acm.org/10.1145/2660776 +Markku Reunanen,A Holistic User-Centered Approach to Immersive Digital Cultural Heritage Installations: Case Vrouw Maria.,2014,7,JOCCH,4,db/journals/jocch/jocch7.html#ReunanenDH14,https://doi.org/10.1145/2637485 +Lily Díaz,ImaNote: A web-based multi-user image map viewing and annotation tool.,2011,3,JOCCH,4,db/journals/jocch/jocch3.html#DiazRAT11,http://doi.acm.org/10.1145/1957825.1957826 +Gen-Fang Chen,Intangible cultural heritage preservation: An exploratory study of digitization of the historical literature of Chinese Kunqu opera librettos.,2014,7,JOCCH,1,db/journals/jocch/jocch7.html#Chen14,http://doi.acm.org/10.1145/2583114 +Gabriele Guidi,Displacement Mapping as a Metric Tool for Optimizing Mesh Models Originated by 3D Digitization.,2016,9,JOCCH,2,db/journals/jocch/jocch9.html#GuidiA16,http://doi.acm.org/10.1145/2843947 +Sarah Kenderdine,Pure Land: Futures for Embodied Museography.,2014,7,JOCCH,2,db/journals/jocch/jocch7.html#KenderdineCS14,http://doi.acm.org/10.1145/2614567 +David Koller,Research challenges for digital archives of 3D cultural heritage models.,2009,2,JOCCH,3,db/journals/jocch/jocch2.html#KollerFH09,https://doi.org/10.1145/1658346.1658347 +Min H. Kim 0001,Hyper3D: 3D graphics software for examining cultural artifacts.,2014,7,JOCCH,3,db/journals/jocch/jocch7.html#KimRFPT14,http://doi.acm.org/10.1145/2567652 +Martin Doerr,Factual argumentation - a core model for assertions making.,2011,3,JOCCH,3,db/journals/jocch/jocch3.html#DoerrKB11,http://doi.acm.org/10.1145/1921614.1921615 +Mona Hess,Developing 3D Imaging Programmes-Workflow and Quality Control.,2016,9,JOCCH,1,db/journals/jocch/jocch9.html#HessRSAPN16,http://doi.acm.org/10.1145/2786760 +Imran Muhammad,Using ANT to Uncover the Full Potential of an Intelligent Operational Planning and Support Tool (IOPST) for Acute Healthcare Contexts.,2013,5,IJANTTI,2,db/journals/ijantti/ijantti5.html#MuhammadMTRNSKBW13,https://doi.org/10.4018/jantti.2013040103 +Bill Davey,Using ANT to Guide Technological Adoption: The Case of School Management Software.,2012,4,IJANTTI,4,db/journals/ijantti/ijantti4.html#DaveyT12,https://doi.org/10.4018/jantti.2012100103 +Marta Dopieralski,Gollum - Disassemble the Monster to Reassemble the Hybrid Actor: The Distribution of Agency within Motion Capture Technique.,2015,7,IJANTTI,3,db/journals/ijantti/ijantti7.html#Dopieralski15,https://doi.org/10.4018/IJANTTI.2015070103 +Jonathan Tummons,Deconstructing Professionalism: An Actor-Network Critique of Professional Standards for Teachers in the UK Lifelong Learning Sector.,2011,3,IJANTTI,4,db/journals/ijantti/ijantti3.html#Tummons11,https://doi.org/10.4018/jantti.2011100103 +Maryam Sharifzadeh,The Iranian Wheat Growers' Climate Information Use: An Actor-Network Theory Perspective.,2012,4,IJANTTI,4,db/journals/ijantti/ijantti4.html#SharifzadehZKKT12,https://doi.org/10.4018/jantti.2012100101 +Fernando Abreu Gonçalves,Engineering Innovative Practice in Managing Design Projects.,2012,4,IJANTTI,3,db/journals/ijantti/ijantti4.html#GoncalvesF12,https://doi.org/10.4018/jantti.2012070102 +Tihomir Mitev,"Where is the Missing Matter?: A Comment on ""The Essence"" of Additive Manufacturing.",2015,7,IJANTTI,1,db/journals/ijantti/ijantti7.html#Mitev15,https://doi.org/10.4018/IJANTTI.2015010102 +Tiko Iyamu,The Use of Structuration Theory and Actor Network Theory for Analysis: Case Study of a Financial Institution in South Africa.,2010,2,IJANTTI,1,db/journals/ijantti/ijantti2.html#IyamuR10,https://doi.org/10.4018/jantti.2010071601 +Nilmini Wickramasinghe,The S'ANT Imperative for Realizing the Vision of Healthcare Network Centric Operations.,2009,1,IJANTTI,1,db/journals/ijantti/ijantti1.html#WickramasingheB09,https://doi.org/10.4018/jantti.2009010103 +Ingrid Christine Reite,Between Blackboxing and Unfolding: Professional Learning Networks of Pastors.,2013,5,IJANTTI,4,db/journals/ijantti/ijantti5.html#Reite13,https://doi.org/10.4018/ijantti.2013100104 +Lebene Richmond Soga,Is it The Soul of a New/Lost Machine?,2016,8,IJANTTI,2,db/journals/ijantti/ijantti8.html#Soga16,https://doi.org/10.4018/IJANTTI.2016040102 +Andrea Quinlan,Imagining a Feminist Actor-Network Theory.,2012,4,IJANTTI,2,db/journals/ijantti/ijantti4.html#Quinlan12,https://doi.org/10.4018/jantti.2012040101 +Rennie Naidoo,Observing the 'Fluid' Continuity of an IT Artefact.,2012,4,IJANTTI,4,db/journals/ijantti/ijantti4.html#NaidooL12,https://doi.org/10.4018/jantti.2012100102 +Petronnell Sehlola,Assessment of Risk on Information Technology Projects Through Moments of Translation.,2012,4,IJANTTI,2,db/journals/ijantti/ijantti4.html#SehlolaI12,https://doi.org/10.4018/jantti.2012040104 +Nilmini Wickramasinghe,Understanding the Advantages of Mobile Solutions for Chronic Disease Management: The Role of ANT as a Rich Theoretical Lens.,2012,4,IJANTTI,1,db/journals/ijantti/ijantti4.html#WickramasingheTG12,https://doi.org/10.4018/jantti.2012010101 +Tiko Iyamu,Theoretical Analysis of Strategic Implementation of Enterprise Architecture.,2010,2,IJANTTI,3,db/journals/ijantti/ijantti2.html#Iyamu10,https://doi.org/10.4018/jantti.2010070102 +Leonie Rowan,Where to Now for Research into the First Year Experience at University?: Reassembling the First Year Experience.,2016,8,IJANTTI,2,db/journals/ijantti/ijantti8.html#RowanBL16,https://doi.org/10.4018/IJANTTI.2016040101 +Tiko Iyamu,Information Systems and Actor-Network Theory Analysis.,2013,5,IJANTTI,3,db/journals/ijantti/ijantti5.html#IyamuS13,https://doi.org/10.4018/jantti.2013070101 +Fernando Abreu Gonçalves,How to Recognize an Immutable Mobile When You Find One: Translations on Innovation and Design.,2010,2,IJANTTI,2,db/journals/ijantti/ijantti2.html#GoncalvesF10,https://doi.org/10.4018/jantti.2010040103 +Amany R. Elbanna,Actor-Network Theory in ICT Research: A Wider Lens of Enquiry.,2009,1,IJANTTI,3,db/journals/ijantti/ijantti1.html#Elbanna09,https://doi.org/10.4018/jantti.2009070101 +Hafizah Mohamad Hsbollah,Understanding the Implementation of IT Governance Arrangements and IT Infrastructure Using Actor Network Theory.,2016,8,IJANTTI,2,db/journals/ijantti/ijantti8.html#HsbollahSL16,https://doi.org/10.4018/IJANTTI.2016040104 +Andrea Quinlan,Performing Actor-Network Theory in the Post-Secondary Classroom.,2011,3,IJANTTI,4,db/journals/ijantti/ijantti3.html#QuinlanQN11,https://doi.org/10.4018/jantti.2011100101 +Diego Ponte,Neither Heroes nor Chaos: The Victory of VHS against Betamax.,2013,5,IJANTTI,1,db/journals/ijantti/ijantti5.html#PonteC13,https://doi.org/10.4018/jantti.2013010103 +Nizar M. Alsharari,The Diffusion of Accounting Innovations in the New Public Sector as Influenced by IMF Reforms: Actor-Network Theory.,2016,8,IJANTTI,4,db/journals/ijantti/ijantti8.html#Alsharari16,https://doi.org/10.4018/IJANTTI.2016100103 +Stasys Lukaitis,Applying Hermeneutic Phenomenology to Understand Innovation Adoption.,2011,3,IJANTTI,4,db/journals/ijantti/ijantti3.html#Lukaitis11,https://doi.org/10.4018/jantti.2011100105 +Lars Linden,Linux Kernel Developers Embracing Authors Embracing Licenses.,2009,1,IJANTTI,3,db/journals/ijantti/ijantti1.html#LindenS09,https://doi.org/10.4018/jantti.2009070102 +Bill Davey,Grounded Theory and Actor-Network Theory: A Case Study.,2016,8,IJANTTI,1,db/journals/ijantti/ijantti8.html#DaveyA16,https://doi.org/10.4018/IJANTTI.2016010102 +Markus Spöhrer,The (Re-)Socialization of Technical Objects in Patient Networks: The Case of the Cochlear Implant.,2013,5,IJANTTI,3,db/journals/ijantti/ijantti5.html#Spohrer13a,https://doi.org/10.4018/jantti.2013070103 +Ali Alawneh,E-Banking Diffusion in the Jordanian Banking Services Sector: An Empirical Analysis of Key Factors.,2009,1,IJANTTI,2,db/journals/ijantti/ijantti1.html#AlawnehH09,https://doi.org/10.4018/jantti.2009040104 +Fernando Abreu Gonçalves,Negotiating Meaning: An ANT Approach to the Building of Innovations.,2010,2,IJANTTI,3,db/journals/ijantti/ijantti2.html#GoncalvesF10a,https://doi.org/10.4018/jantti.2010070101 +Meng Yoe Tan,Authenticity in Online Religion: An Actor-Network Approach.,2016,8,IJANTTI,1,db/journals/ijantti/ijantti8.html#Tan16,https://doi.org/10.4018/IJANTTI.2016010104 +Simone Belli,When Technology Draws Society: Distributed Trust in Horizontal Infrastructure.,2016,8,IJANTTI,2,db/journals/ijantti/ijantti8.html#BelliA16,https://doi.org/10.4018/IJANTTI.2016040103 +Dianne Mulcahy,Performativity in Practice: An Actor-Network Account of Professional Teaching Standards.,2011,3,IJANTTI,2,db/journals/ijantti/ijantti3.html#Mulcahy11,https://doi.org/10.4018/jantti.2011040101 +Graham Harman,Decadence in the Biographical Sense: Taking a Distance from Actor-Network Theory.,2016,8,IJANTTI,3,db/journals/ijantti/ijantti8.html#Harman16,https://doi.org/10.4018/IJANTTI.2016070101 +Svenja Jaffari,Why Don't You Just Adopt?: A Theoretical Exploration of the Dynamics of Everyday Appropriation and its Implications for Product Design.,2014,6,IJANTTI,2,db/journals/ijantti/ijantti6.html#Jaffari14,https://doi.org/10.4018/ijantti.2014040103 +Tiko Iyamu,Institutionalisation of the Enterprise Architecture: The Actor-Network Perspective.,2011,3,IJANTTI,1,db/journals/ijantti/ijantti3.html#Iyamu11,https://doi.org/10.4018/jantti.2011010103 +Arthur Tatnall,Innovation Translation and Innovation Diffusion: A Comparison of Two Different Approaches to Theorising Technological Innovation.,2009,1,IJANTTI,2,db/journals/ijantti/ijantti1.html#Tatnall09a,https://doi.org/10.4018/jantti.2009040105 +Alexey A. Baryshev,The Twofold Complexity of Economy Under the Domination of Network Processes and its Manifestation in the Theoretical Landscape and Reality.,2016,8,IJANTTI,4,db/journals/ijantti/ijantti8.html#Baryshev16,https://doi.org/10.4018/IJANTTI.2016100102 +Tefo Sekgweleo,Empirically Examined the Disjoint in Software Deployment: A Case of Telecommunication.,2012,4,IJANTTI,3,db/journals/ijantti/ijantti4.html#SekgweleoI12,https://doi.org/10.4018/jantti.2012070104 +Chandana Unnithan,Actor-Network Theory (ANT) Based Visualisation of Socio-Technical Facets of RFID Technology Translation: An Australian Hospital Scenario.,2014,6,IJANTTI,1,db/journals/ijantti/ijantti6.html#UnnithanT14,https://doi.org/10.4018/ijantti.2014010103 +Noel Carroll,Service Science: An Actor-Network Theory Approach.,2012,4,IJANTTI,3,db/journals/ijantti/ijantti4.html#CarrollRW12,https://doi.org/10.4018/jantti.2012070105 +Yuti Ariani Fatimah,Opening the Indonesian Bio-Fuel Box: How Scientists Modulate the Social.,2009,1,IJANTTI,2,db/journals/ijantti/ijantti1.html#FatimahY09,https://doi.org/10.4018/jantti.2009040101 +Peter Kopanov,'Stacked' Actor-Networks and Their Computer Modelling: The Problem of Identity.,2016,8,IJANTTI,4,db/journals/ijantti/ijantti8.html#KopanovT16,https://doi.org/10.4018/IJANTTI.2016100104 +Arthur Tatnall,The Internet of Things and Beyond: Rise of the Non-Human Actors.,2015,7,IJANTTI,4,db/journals/ijantti/ijantti7.html#TatnallD15,https://doi.org/10.4018/IJANTTI.2015100105 +Rennie Naidoo,Unravelling Design Controversies in a Transnational Healthcare Information System: An Actor-Network Analysis.,2014,6,IJANTTI,3,db/journals/ijantti/ijantti6.html#Naidoo14,https://doi.org/10.4018/ijantti.2014070102 +Seema Pillai,Assemblage of CoreLife Skills Through Technological Innovation: A Case Study Informed by Actor-Network Theory.,2017,9,IJANTTI,2,db/journals/ijantti/ijantti9.html#Pillai17,https://doi.org/10.4018/IJANTTI.2017040102 +Carol A. Nelson,Beyond Actor Network Theory to the Marriage of Moments.,2016,8,IJANTTI,3,db/journals/ijantti/ijantti8.html#Nelson16,https://doi.org/10.4018/IJANTTI.2016070104 +Magdalena Bielenia-Grajewska,Actor-Network-Theory in Medical e-Communication - The Role of Websites in Creating and Maintaining Healthcare Corporate Online Identity.,2011,3,IJANTTI,1,db/journals/ijantti/ijantti3.html#Bielenia-Grajewska11,https://doi.org/10.4018/jantti.2011010104 +Katrin Jonsson,Desituating Context in Ubiquitous Computing: Exploring Strategies for the Use of Remote Diagnostic Systems for Maintenance Work.,2010,2,IJANTTI,3,db/journals/ijantti/ijantti2.html#JonssonHLN10,https://doi.org/10.4018/jantti.2010070104 +Peter Kopanov,Towards of Quantitative Model of Stacked Actor-Network Dynamics.,2017,9,IJANTTI,2,db/journals/ijantti/ijantti9.html#KopanovT17,https://doi.org/10.4018/IJANTTI.2017040103 +Mary Anne Kennan,Having a Say Voices for all the Actors in ANT Research?,2010,2,IJANTTI,2,db/journals/ijantti/ijantti2.html#KennanCU10,https://doi.org/10.4018/jantti.2010040101 +Johanes Eka Priyatma,A Critical Review of the Ontological Assumptions of Actor-Network Theory for Representing e-Government Initiatives.,2013,5,IJANTTI,3,db/journals/ijantti/ijantti5.html#Priyatma13,https://doi.org/10.4018/jantti.2013070102 +Dubravka Cecez-Kecmanovic,Have You Taken your Guys on the Journey?: An ANT Account of Information Systems Project Evaluation.,2009,1,IJANTTI,1,db/journals/ijantti/ijantti1.html#Cecez-KecmanovicN09,https://doi.org/10.4018/jantti.2009010101 +Amin Saedi,Future Research on Cloud Computing Adoption by Small and Medium-Sized Enterprises: A Critical Analysis of Relevant Theories.,2013,5,IJANTTI,2,db/journals/ijantti/ijantti5.html#SaediI13,https://doi.org/10.4018/jantti.2013040101 +Saman Foroutani,Future Research on Dimensions of E-Service Quality in Interactive Health Portals: The Relevancy of Actor-Network Theory.,2013,5,IJANTTI,4,db/journals/ijantti/ijantti5.html#ForoutaniIR13,https://doi.org/10.4018/ijantti.2013100101 +Imran Muhammad,How Using ANT Can Assist to Understand Key Issues for Successful e-Health Solutions.,2013,5,IJANTTI,3,db/journals/ijantti/ijantti5.html#MuhammadZW13,https://doi.org/10.4018/jantti.2013070105 +Mohini Singh,Innovation in Communication: An Actor-Network Analysis of Social Websites.,2012,4,IJANTTI,1,db/journals/ijantti/ijantti4.html#SinghDHP12,https://doi.org/10.4018/jantti.2012010104 +Michael Tscholl,(Un)Locating Learning: Agents of Change in Case-Based Learning.,2011,3,IJANTTI,2,db/journals/ijantti/ijantti3.html#TschollPC11,https://doi.org/10.4018/jantti.2011040102 +Tiko Iyamu,An ANT Analysis of Healthcare Services for the Nomadic Patients of Namibia.,2014,6,IJANTTI,1,db/journals/ijantti/ijantti6.html#IyamuH14,https://doi.org/10.4018/ijantti.2014010104 +Fletcher T. H. Cole,Negotiating the Socio-Material in and about Information Systems: An Approach to Native Methods.,2010,2,IJANTTI,4,db/journals/ijantti/ijantti2.html#Cole10,https://doi.org/10.4018/jantti.2010100101 +Nilmini Wickramasinghe,The S'ANT Approach to Facilitate a Superior Chronic Disease Self-Management Model.,2009,1,IJANTTI,4,db/journals/ijantti/ijantti1.html#WickramasingheBG09,https://doi.org/10.4018/jantti.2009062302 +Hassen Rabhi,The Weblog Genre: An Actor-Network Perspective.,2017,9,IJANTTI,2,db/journals/ijantti/ijantti9.html#Rabhi17,https://doi.org/10.4018/IJANTTI.2017040101 +Veronika Pöhnl,Is There a Common Epistemological Ground of Actor-Network Theory and Media Aesthetics?: A Meta-Phorological Essay1.,2014,6,IJANTTI,4,db/journals/ijantti/ijantti6.html#Pohnl14,https://doi.org/10.4018/ijantti.2014100105 +Tihomir Mitev,Living with a Dam: A Case of Care Practices in Large Technical Systems.,2015,7,IJANTTI,2,db/journals/ijantti/ijantti7.html#Mitev15a,https://doi.org/10.4018/ijantti.2015040102 +Tiko Iyamu,An Actor-Network Analysis of a Case of Development and Implementation of IT Strategy.,2009,1,IJANTTI,4,db/journals/ijantti/ijantti1.html#IyamuT09,https://doi.org/10.4018/jantti.2009062303 +Fernando Toro,Developing a Project to Investigate the Introduction of ICT to Mapuche Students in Chile.,2016,8,IJANTTI,1,db/journals/ijantti/ijantti8.html#ToroT16,https://doi.org/10.4018/IJANTTI.2016010103 +Tas Adam,A Petri Net Model for Analysing E-Learning and Learning Difficulties.,2011,3,IJANTTI,4,db/journals/ijantti/ijantti3.html#Adam11,https://doi.org/10.4018/jantti.2011100102 +Marianne Harbo Frederiksen,Consumer Creativity as a Prerequisite for the Adoption of New Technological Products: Looking for Insights from Actor-Network Theory.,2014,6,IJANTTI,2,db/journals/ijantti/ijantti6.html#FrederiksenT14,https://doi.org/10.4018/ijantti.2014040104 +Juan D. Rogers,Computer Networks as the Embodiment of Social Networks: The Role of National Scientific Communities in the Development of Internet in the U.S. and Bulgaria.,2014,6,IJANTTI,3,db/journals/ijantti/ijantti6.html#RogersT14,https://doi.org/10.4018/ijantti.2014070101 +Bill Davey,Two Computer Systems in Victorian Schools and the Actors and Networks Involved in their Implementation and Use.,2013,5,IJANTTI,3,db/journals/ijantti/ijantti5.html#DaveyT13,https://doi.org/10.4018/jantti.2013070104 +Fabienne Kürner,Combining Actor-Network Theory and the Concept of Ecosystem Services to Assess the Development of Arctic Shipping Routes.,2015,7,IJANTTI,2,db/journals/ijantti/ijantti7.html#KurnerKKN15,https://doi.org/10.4018/ijantti.2015040101 +Graham Harman,3D Printing and Actor-Network Theory.,2015,7,IJANTTI,1,db/journals/ijantti/ijantti7.html#Harman15,https://doi.org/10.4018/IJANTTI.2015010101 +Arthur Tatnall,Technological Innovation and the Adoption of ICT in Thai Universities: A TAM Study Re-Analysed Using ANT.,2013,5,IJANTTI,4,db/journals/ijantti/ijantti5.html#Tatnall13,https://doi.org/10.4018/ijantti.2013100103 +Pierre-Henri Garnier,The Fractal Spiral Model in Integrative Trauma Processing.,2015,7,IJANTTI,4,db/journals/ijantti/ijantti7.html#GarnierC15,https://doi.org/10.4018/IJANtTI.2015100102 +Napaporn Kripanont,The Role of a Modified Technology Acceptance Model in Explaining Internet Usage in Higher Education in Thailand.,2009,1,IJANTTI,2,db/journals/ijantti/ijantti1.html#KripanontT09,https://doi.org/10.4018/jantti.2009040103 +Puripat Charnkit,Knowledge Conversion Processes in Thai Public Organisations Seen as an Innovation: The Re-Analysis of a TAM Study Using Innovation Translation.,2011,3,IJANTTI,4,db/journals/ijantti/ijantti3.html#CharnkitT11,https://doi.org/10.4018/jantti.2011100104 +Rita Paulino,The Sentiment Revealed in Social Networks during the Games of the Brazilian Team in the 2014 World Cup: A Conceptual Approach of Actor-Network Theory.,2015,7,IJANTTI,2,db/journals/ijantti/ijantti7.html#Paulino15,https://doi.org/10.4018/IJANTTI.2015040104 +Paraskevas Vezyridis,Implementing an Emergency Department Information System: An Actor-Network Theory Case Study.,2014,6,IJANTTI,1,db/journals/ijantti/ijantti6.html#VezyridisT14,https://doi.org/10.4018/ijantti.2014010102 +Jonathan Tummons,Higher Education in Further Education in England: An Actor-Network Ethnography.,2009,1,IJANTTI,3,db/journals/ijantti/ijantti1.html#Tummons09,https://doi.org/10.4018/jantti.2009070104 +Sanna Rimpiläinen,Knowledge in Networks: Knowing in Transactions?,2011,3,IJANTTI,2,db/journals/ijantti/ijantti3.html#Rimpilainen11,https://doi.org/10.4018/jantti.2011040104 +Markus Spöhrer,Murphy's Law in Action: The Formation of the Film Production Network of Paul Lazarus' Barbarosa (1982)- An Actor-Network-Theory Case Study.,2013,5,IJANTTI,1,db/journals/ijantti/ijantti5.html#Spohrer13,https://doi.org/10.4018/jantti.2013010102 +Imran Muhammad,Enhancing Understanding of Cross-Cultural ERP Implementation Impact with a FVM Perspective Enriched by ANT.,2013,5,IJANTTI,4,db/journals/ijantti/ijantti5.html#MuhammadW13,https://doi.org/10.4018/ijantti.2013100102 +Patricia Wolf,Look Who's Acting!: Applying Actor Network Theory for Studying Knowledge Sharing in a Co-Design Project.,2015,7,IJANTTI,3,db/journals/ijantti/ijantti7.html#WolfT15,https://doi.org/10.4018/IJANTTI.2015070102 +Lorna Uden,Actor-Network Theory for Service Innovation.,2009,1,IJANTTI,1,db/journals/ijantti/ijantti1.html#UdenF09,https://doi.org/10.4018/jantti.2009010102 +Ailsa Haxell,Interfering in Hinterlands of Discontent: Making a Difference Differently.,2015,7,IJANTTI,2,db/journals/ijantti/ijantti7.html#Haxell15,https://doi.org/10.4018/IJANTTI.2015040103 +Nilmini Wickramasinghe,Using Actor-Network Theory to Facilitate a Superior Understanding of Knowledge Creation and Knowledge Transfer.,2010,2,IJANTTI,4,db/journals/ijantti/ijantti2.html#WickramasingheTB10,https://doi.org/10.4018/jantti.2010100104 +Thierry Rayna,Crossing the Chasm or Being Crossed Out: The Case of Digital Audio Players.,2009,1,IJANTTI,3,db/journals/ijantti/ijantti1.html#RaynaSL09,https://doi.org/10.4018/jantti.2009070103 +Arthur Adamopoulos,Actor-Network Theory and the Online Investor.,2012,4,IJANTTI,2,db/journals/ijantti/ijantti4.html#AdamopoulosDD12,https://doi.org/10.4018/jantti.2012040103 +Scott Bingley,Using Data Visualisation to Represent Stages of the Innovation-Decision Process.,2009,1,IJANTTI,2,db/journals/ijantti/ijantti1.html#BingleyB09,https://doi.org/10.4018/jantti.2009040102 +Manuel Zwicker,A Tale of Two Cities: E-Health in Germany and Australia.,2012,4,IJANTTI,1,db/journals/ijantti/ijantti4.html#ZwickerSW12,https://doi.org/10.4018/jantti.2012010103 +Bader Binhadyan,Improving the Treatment Outcomes for ADHD Patients with IS/IT: An Actor-Network Theory Perspective.,2014,6,IJANTTI,4,db/journals/ijantti/ijantti6.html#BinhadyanTW14,https://doi.org/10.4018/ijantti.2014100104 +Florian M. Neisser,Fostering Knowledge Transfer for Space Technology Utilization in Disaster Management: An Actor-Network Perspective.,2013,5,IJANTTI,1,db/journals/ijantti/ijantti5.html#Neisser13,https://doi.org/10.4018/jantti.2013010101 +Alexey A. Baryshev,Entrepreneurial Action as Metaphorical Process and its Metaphorics.,2017,9,IJANTTI,1,db/journals/ijantti/ijantti9.html#Baryshev17,https://doi.org/10.4018/IJANTTI.2017010103 +Juha Koivisto,Doing Together: Co-Designing the Socio-Materiality of Services in Public Sector.,2015,7,IJANTTI,3,db/journals/ijantti/ijantti7.html#KoivistoP15,https://doi.org/10.4018/IJANTTI.2015070101 +Nilmini Wickramasinghe,A Manifesto for E-Health Success: The Key Role for ANT.,2012,4,IJANTTI,3,db/journals/ijantti/ijantti4.html#WickramasingheBT12,https://doi.org/10.4018/jantti.2012070103 +Leonie Rowan,What's Your Problem? ANT Reflections on a Research Project Studying Girls Enrolment in Information Technology Subjects in Postcompulsory Education.,2009,1,IJANTTI,4,db/journals/ijantti/ijantti1.html#RowanB09,https://doi.org/10.4018/jantti.2009062301 +Rajeev K. Bali,RAD and Other Innovative Approaches to Facilitate Superior Project Management.,2010,2,IJANTTI,3,db/journals/ijantti/ijantti2.html#BaliW10,https://doi.org/10.4018/jantti.2010070103 +Ivan Tchalakov,The Effects of Digitalization on Professional and Amateur Astronomy Considered Through the Categories of Identity and Attachment.,2017,9,IJANTTI,1,db/journals/ijantti/ijantti9.html#TchalakovP17,https://doi.org/10.4018/IJANTTI.2017010104 +Angèle Beausoleil,Moore's Law and Social Theory: Deconstructing and Redefining Technology Industry's Innovation Edict.,2014,6,IJANTTI,4,db/journals/ijantti/ijantti6.html#Beausoleil14,https://doi.org/10.4018/ijantti.2014100101 +Samo Grasic,Deploying an 'Out of Space' Technology: A Case Study of Non-Human Resistance.,2014,6,IJANTTI,3,db/journals/ijantti/ijantti6.html#GrasicU14,https://doi.org/10.4018/ijantti.2014070103 +Randa Attieh,Translating Technology in Professional Practices to Optimize Infection Prevention and Control: A Case Study Based on the TRIP-ANT Framework.,2016,8,IJANTTI,3,db/journals/ijantti/ijantti8.html#AttiehGRK16,https://doi.org/10.4018/IJANTTI.2016070103 +Relebohile Moloi,Competitive Intelligence in the Enterprise: Power Relationships.,2013,5,IJANTTI,2,db/journals/ijantti/ijantti5.html#MoloiI13,https://doi.org/10.4018/jantti.2013040104 +Imran Muhammad,Why Using Actor Network Theory (ANT) Can Help to Understand the Personally Controlled Electronic Health Record (PCEHR) in Australia.,2012,4,IJANTTI,2,db/journals/ijantti/ijantti4.html#MuhammadTW12,https://doi.org/10.4018/jantti.2012040105 +Morten Holmqvist,The Material Logics of Confirmation.,2014,6,IJANTTI,4,db/journals/ijantti/ijantti6.html#Holmqvist14,https://doi.org/10.4018/ijantti.2014100103 +Rennie Naidoo,A Socio-Technical Account of an Internet-Based Self-Service Technology Implementation: Why Call-Centres Some* 'Prevail' in a Multi-Channel Context?,2010,2,IJANTTI,2,db/journals/ijantti/ijantti2.html#Naidoo10,https://doi.org/10.4018/jantti.2010040102 +Ivan Tchalakov,The New Space Entrepreneurship and Its Techno-Economic Networks.,2015,7,IJANTTI,1,db/journals/ijantti/ijantti7.html#Tchalakov15,https://doi.org/10.4018/IJANTTI.2015010104 +Sandra Méndez-Fajardo,Actor-Network Theory on Waste Management: A University Case Study.,2014,6,IJANTTI,4,db/journals/ijantti/ijantti6.html#Mendez-FajardoG14,https://doi.org/10.4018/ijantti.2014100102 +Hasmiah Kasimin,Exploring Multi-Organizational Interaction Issues: A Case Study of Information Technology Transfer in thePublic Sector of Malaysia.,2009,1,IJANTTI,3,db/journals/ijantti/ijantti1.html#KasiminI09,https://doi.org/10.4018/jantti.2009070105 +Karen Manning,Aspects of e-Learning in a University.,2010,2,IJANTTI,4,db/journals/ijantti/ijantti2.html#ManningWT10,https://doi.org/10.4018/jantti.2010100105 +Antonio Cordella,Emerging Standardization.,2011,3,IJANTTI,3,db/journals/ijantti/ijantti3.html#Cordella11,https://doi.org/10.4018/jantti.2011070104 +Johanes Eka Priyatma,Opening the Black Box of Leadership in the Successful Development of Local E-Government Initiative in a Developing Country.,2011,3,IJANTTI,3,db/journals/ijantti/ijantti3.html#PriyatmaM11,https://doi.org/10.4018/jantti.2011070101 +Petronnell Sehlola,Assessment of Risk on Information Technology Projects Through Moments of Translation.,2012,4,IJANTTI,3,db/journals/ijantti/ijantti4.html#SehlolaI12a,https://doi.org/10.4018/jantti.2012070101 +Sue De Vincentis,Complexifying the 'Visualised' Curriculum with Actor-Network Theory.,2011,3,IJANTTI,2,db/journals/ijantti/ijantti3.html#Vincentis11,https://doi.org/10.4018/jantti.2011040103 +Quazi Omar Faruq,Adoption of ICT in Implementing Primary Health Care: Achievements of the Twenty-First Century.,2016,8,IJANTTI,1,db/journals/ijantti/ijantti8.html#FaruqT16,https://doi.org/10.4018/IJANTTI.2016010105 +Tas Adam,School Children with Learning Disabilities: An Actor-Network Analysis of the Use of ICT to Enhance Self-Esteem and Improve Learning Outcomes.,2012,4,IJANTTI,2,db/journals/ijantti/ijantti4.html#AdamT12,https://doi.org/10.4018/jantti.2012040102 +Samiaji Sarosa,Failure to Launch: Scope Creep and Other Causes of Failure from an Actor-Network Theory Perspective.,2015,7,IJANTTI,4,db/journals/ijantti/ijantti7.html#SarosaT15,https://doi.org/10.4018/ijantti.2015100101 +Liesbeth Huybrechts,Uncertainties Revisited: Actor-Network Theory as a Lens for Exploring the Relationship between Uncertainties and the Quality of Participation.,2015,7,IJANTTI,3,db/journals/ijantti/ijantti7.html#HuybrechtsDS15,https://doi.org/10.4018/IJANTTI.2015070104 +Patricia Deering,Adoption of ICT in Rural Medical General Practices in Australia: An Actor-Network Study.,2010,2,IJANTTI,1,db/journals/ijantti/ijantti2.html#DeeringTB10,https://doi.org/10.4018/jantti.2010071603 +Magdalena Bielenia-Grajewska,The Role of Gossip in the Creation and Miscreation of Company Identity from the Perspective of Actor-Network Theory.,2015,7,IJANTTI,4,db/journals/ijantti/ijantti7.html#Bielenia-Grajewska15,https://doi.org/10.4018/IJANTTI.2015100104 +Johanes Eka Priyatma,Strategizing E-Government Development Using an Actor-Network Theory Perspective.,2015,7,IJANTTI,4,db/journals/ijantti/ijantti7.html#PriyatmaPH15,https://doi.org/10.4018/IJANTTI.2015100103 +Ina Dimitrova,Enacting Divides: Successful Alliances in Health Activism in Bulgaria.,2017,9,IJANTTI,1,db/journals/ijantti/ijantti9.html#Dimitrova17,https://doi.org/10.4018/IJANTTI.2017010102 +Antonio Cordella,Information Infrastructure: An Actor-Network Perspective.,2010,2,IJANTTI,1,db/journals/ijantti/ijantti2.html#Cordella10,https://doi.org/10.4018/jantti.2010071602 +Arthur Tatnall,Seven Years of IJANTTI Articles.,2016,8,IJANTTI,1,db/journals/ijantti/ijantti8.html#Tatnall16,https://doi.org/10.4018/IJANTTI.2016010101 +Antonio Díaz-Andrade,From Intermediary to Mediator and Vice Versa: On Agency and Intentionality of a Mundane Sociotechnical System.,2010,2,IJANTTI,4,db/journals/ijantti/ijantti2.html#Diaz-Andrade10,https://doi.org/10.4018/jantti.2010100103 +João Andrade,Social Web for Large-Scale Biosensors.,2012,4,IJWP,3,db/journals/ijwp/ijwp4.html#AndradeDA12,https://doi.org/10.4018/jwp.2012070101 +Sanna Malinen,Perceptions of Trust Between Online Auction Consumers.,2011,3,IJWP,4,db/journals/ijwp/ijwp3.html#MalinenO11,https://doi.org/10.4018/jwp.2011100102 +Rania Koubaa,Towards an Intelligent OLAP System Facing Sparse Problems.,2014,6,IJWP,4,db/journals/ijwp/ijwp6.html#KoubaaAG14,https://doi.org/10.4018/IJWP.2014100103 +Yamina Hachemi,Case-Based Planning with User Preferences for Web Service Composition.,2014,6,IJWP,4,db/journals/ijwp/ijwp6.html#HachemiB14,https://doi.org/10.4018/IJWP.2014100104 +Carmen de Pablos Heredero,Segmenting Markets by Means of CRMs: An Application to Restaurants.,2016,8,IJWP,1,db/journals/ijwp/ijwp8.html#HerederoG16,https://doi.org/10.4018/IJWP.2016010101 +Raphael O. Santos,Lightweight Collaborative Web Browsing.,2011,3,IJWP,1,db/journals/ijwp/ijwp3.html#SantosOGMG11,https://doi.org/10.4018/jwp.2011010102 +Jun-Jang Jeng,A Cloud Portal Architecture for Large-Scale Application Services.,2010,2,IJWP,1,db/journals/ijwp/ijwp2.html#JengMYC10,https://doi.org/10.4018/jwp.2010010102 +Héctor Marcos Pérez Feijoo,Employee Portals based on Knowledge Management in Public Education: An Empirical Study about Implementation Barriers in Spain.,2015,7,IJWP,2,db/journals/ijwp/ijwp7.html#FeijooOL15,https://doi.org/10.4018/IJWP.2015040101 +Bálint Molnár,Facet of Modeling Web Information Systems from a Document-Centric View.,2013,5,IJWP,4,db/journals/ijwp/ijwp5.html#MolnarB13,https://doi.org/10.4018/ijwp.2013100105 +Greg Adamson,Challenges in Researching Portals and the Internet.,2010,2,IJWP,2,db/journals/ijwp/ijwp2.html#Adamson10,https://doi.org/10.4018/jwp.2010040103 +Isabelle Mirbel,Improving Collaborations in the Neuroscientist Community.,2011,3,IJWP,1,db/journals/ijwp/ijwp3.html#MirbelC11,https://doi.org/10.4018/jwp.2011010103 +Ed Young,Every Need to be Alarmed.,2009,1,IJWP,1,db/journals/ijwp/ijwp1.html#Young09,https://doi.org/10.4018/jwp.2009010103 +Sinsu Anna Mathew,Evaluation of Blockchain in Capital Market Use-Cases.,2018,10,IJWP,1,db/journals/ijwp/ijwp10.html#MathewM18,https://doi.org/10.4018/IJWP.2018010105 +Jana Polgar,Do You Need Content Management System?,2010,2,IJWP,1,db/journals/ijwp/ijwp2.html#Polgar10,https://doi.org/10.4018/jwp.2010010101 +Sudiana,Users' Interest Assessment on Job Portal.,2014,6,IJWP,1,db/journals/ijwp/ijwp6.html#SudianaP14,https://doi.org/10.4018/ijwp.2014010105 +Arunasalam Sambhanthan,Virtual Community Based Destination Marketing with YouTube: Investigation of a Typology.,2016,8,IJWP,1,db/journals/ijwp/ijwp8.html#SambhanthanTGS16,https://doi.org/10.4018/IJWP.2016010103 +Luís Martinho,Web Portal for Matching Loan Requests and Investment Offers in Peer-To-Peer Lending.,2013,5,IJWP,2,db/journals/ijwp/ijwp5.html#MartinhoR13,https://doi.org/10.4018/jwp.2013040102 +Zafar Sultan,Generalized Evidential Processing in Multiple Simultaneous Threat Detection in UNIX.,2010,2,IJWP,2,db/journals/ijwp/ijwp2.html#SultanK10,https://doi.org/10.4018/jwp.2010040105 +Vítor M. Santos,Use of Sociology Concepts as the Basis of a Model for Context-Aware Computing.,2014,6,IJWP,3,db/journals/ijwp/ijwp6.html#Santos14,https://doi.org/10.4018/ijwp.2014070102 +Dirk Werth,Prosumerization of Mobile Service Provision: A Conceptual Approach.,2011,3,IJWP,4,db/journals/ijwp/ijwp3.html#WerthEC11,https://doi.org/10.4018/jwp.2011100104 +Vladimir Rankovic,Supplier Selection using NSGA-II Technique.,2012,4,IJWP,4,db/journals/ijwp/ijwp4.html#RankovicAAKMR12,https://doi.org/10.4018/jwp.2012100103 +Tiago Martins,Web Portal: Total Challenge.,2012,4,IJWP,1,db/journals/ijwp/ijwp4.html#MartinsCS12,https://doi.org/10.4018/jwp.2012010105 +Greg Adamson,Interview: Portal Experiences of Not-for-Profit Organisations.,2010,2,IJWP,4,db/journals/ijwp/ijwp2.html#AdamsonN10,https://doi.org/10.4018/jwp.2010100105 +Shuying Wang,A Reference Ontology Based Approach for Service Oriented Semantic Interoperability.,2011,3,IJWP,1,db/journals/ijwp/ijwp3.html#WangBLC11,https://doi.org/10.4018/jwp.2011010101 +Salam Abdallah,Online Shopping in the United Arab Emirates: User Web Experience.,2014,6,IJWP,1,db/journals/ijwp/ijwp6.html#AbdallahJ14,https://doi.org/10.4018/ijwp.2014010101 +Serdal Bayram,A Conceptual Model of SOA-Enabled Business Process and its Empirical Study.,2012,4,IJWP,1,db/journals/ijwp/ijwp4.html#BayramVY12,https://doi.org/10.4018/jwp.2012010102 +Brenton Worley,SOA Implementation Challenges for Medium Sized Corporations: Case Study.,2009,1,IJWP,3,db/journals/ijwp/ijwp1.html#WorleyA09,https://doi.org/10.4018/jwp.2009070105 +Neil Richardson,Research Essay: Improving Our Approach to Internet and SOA Projects.,2010,2,IJWP,4,db/journals/ijwp/ijwp2.html#Richardson10,https://doi.org/10.4018/jwp.2010100106 +Cédric Pruski,Adaptive Ontology-Based Web Information Retrieval: The TARGET Framework.,2011,3,IJWP,3,db/journals/ijwp/ijwp3.html#PruskiGR11,https://doi.org/10.4018/jwp.2011070104 +Ekaterina Prasolova-Førland,Eidsvoll 1814: Creating Educational Historical Reconstructions in 3D Collaborative Virtual Environments.,2011,3,IJWP,4,db/journals/ijwp/ijwp3.html#Prasolova-ForlandH11,https://doi.org/10.4018/jwp.2011100101 +Yueh-Hua Lee,Application of TOPSIS for Solving Optimal Brand Communication Effect on the Portal.,2013,5,IJWP,3,db/journals/ijwp/ijwp5.html#LeeWC13,https://doi.org/10.4018/ijwp.2013070103 +Jana Polgar,Use of Web Analytics in Portals.,2010,2,IJWP,4,db/journals/ijwp/ijwp2.html#Polgar10c,https://doi.org/10.4018/jwp.2010100104 +Kevin Wilkinson,Toward Introducing Semantic Capabilities for WSRP.,2009,1,IJWP,2,db/journals/ijwp/ijwp1.html#WilkinsonP09,https://doi.org/10.4018/jwp.2009082103 +Ben Clohesy,Conceptual Business Service: An Architectural Approach for Building a Business Service Portfolio.,2009,1,IJWP,3,db/journals/ijwp/ijwp1.html#ClohesyFR09,https://doi.org/10.4018/jwp.2009070104 +M. Premalatha,Educational Data Mining and Recommender Systems Survey.,2018,10,IJWP,1,db/journals/ijwp/ijwp10.html#PremalathaVSKV18,https://doi.org/10.4018/IJWP.2018010104 +Vaidyanathan Srinivasan,An Empirical Evaluation of Adoption and Diffusion of New ICTs for Knowledge Sharing in IT Organizations.,2018,10,IJWP,1,db/journals/ijwp/ijwp10.html#SrinivasanK18,https://doi.org/10.4018/IJWP.2018010101 +Maria Leonilde R. Varela,Collaborative Framework for Dynamic Scheduling Supporting in Networked Manufacturing Environments.,2014,6,IJWP,3,db/journals/ijwp/ijwp6.html#VarelaSMPC14,https://doi.org/10.4018/IJWP.2014070103 +Ibrahim Ahmed Al-Baltah,Towards Ontology Driven Semantic Conflicts Detection in Web services at Message Level.,2013,5,IJWP,3,db/journals/ijwp/ijwp5.html#Al-BaltahG13,https://doi.org/10.4018/ijwp.2013070105 +Amit Goel,The Philosophy of Software Architecture.,2010,2,IJWP,4,db/journals/ijwp/ijwp2.html#Goel10,https://doi.org/10.4018/jwp.2010100103 +Saeed Shadlou,Advanced Content Management System in Murdoch Research Institute.,2011,3,IJWP,2,db/journals/ijwp/ijwp3.html#ShadlouSH11,https://doi.org/10.4018/jwp.2011040103 +Olga Nabuco,Delivering Deep Health Information Using Clinical Eye.,2013,5,IJWP,1,db/journals/ijwp/ijwp5.html#Nabuco13,https://doi.org/10.4018/jwp.2013010103 +Saeed Shadlou,Online Payment via PayPal API Case Study Event Registration Management System (ERMS).,2011,3,IJWP,2,db/journals/ijwp/ijwp3.html#ShadlouKH11,https://doi.org/10.4018/jwp.2011040104 +Carlos J. Costa,Health Portal: An Alternative Using Open Source Technology.,2012,4,IJWP,4,db/journals/ijwp/ijwp4.html#CostaAF12,https://doi.org/10.4018/jwp.2012100101 +Maria Manuela Cruz-Cunha,Evaluation of User Acceptance of Virtual Environments and Interfaces for Communication in Virtual Teams.,2014,6,IJWP,4,db/journals/ijwp/ijwp6.html#Cruz-CunhaPGG14,https://doi.org/10.4018/IJWP.2014100102 +Enrique Jiménez-Domingo,A Multi-Objective Genetic Algorithm for Software Personnel Staffing for HCIM Solutions.,2014,6,IJWP,2,db/journals/ijwp/ijwp6.html#Jimenez-Domingo14,https://doi.org/10.4018/ijwp.2014040103 +Adeyinka Tella,UNDERGRADUATE STUDENTS' SATISFACTION WITH THE USE OF WEB PORTALS.,2012,4,IJWP,2,db/journals/ijwp/ijwp4.html#TellaB12,https://doi.org/10.4018/jwp.2012040104 +Sergey Zykov,Using Web Portals to Model and Manage Enterprise Projects.,2013,5,IJWP,4,db/journals/ijwp/ijwp5.html#ZykovK13,https://doi.org/10.4018/ijwp.2013100101 +Joe Lamantia,Enhancing the Portal Experience.,2010,2,IJWP,2,db/journals/ijwp/ijwp2.html#Lamantia10a,https://doi.org/10.4018/jwp.2010040102 +Sara Paiva,A Fuzzy Algorithm for Optimizing Semantic Documental Searches: A Case Study with Mendeley and IEEExplore.,2014,6,IJWP,1,db/journals/ijwp/ijwp6.html#Paiva14,https://doi.org/10.4018/ijwp.2014010104 +Samer Alhawari,Implementing Risk Management Processes into a Cloud Computing Environment.,2017,9,IJWP,1,db/journals/ijwp/ijwp9.html#AlhawariJH17,https://doi.org/10.4018/IJWP.2017010101 +Jaspreet Singh,Research Essay: Challenges and Considerations of Modern Day Portal Tooling.,2011,3,IJWP,2,db/journals/ijwp/ijwp3.html#Singh11,https://doi.org/10.4018/jwp.2011040105 +Ed Young,Service Oriented Architecture Conceptual Landscape: PART II.,2009,1,IJWP,3,db/journals/ijwp/ijwp1.html#Young09b,https://doi.org/10.4018/jwp.2009070102 +Ali M. Roumani,GlobalHUB: A Model for Sustainable Online Communities.,2014,6,IJWP,2,db/journals/ijwp/ijwp6.html#RoumaniMPOH14,https://doi.org/10.4018/ijwp.2014040101 +M. Victoria de-la-Fuente-Aragon,VIRTUAL OFFICE: A Web Platform for a Collaborative Networked Organization.,2014,6,IJWP,4,db/journals/ijwp/ijwp6.html#de-la-Fuente-Aragon14,https://doi.org/10.4018/IJWP.2014100101 +Nafsaniath Fathema,Student Acceptance of University Web Portals: A Quantitative Study.,2014,6,IJWP,2,db/journals/ijwp/ijwp6.html#FathemaRW14,https://doi.org/10.4018/ijwp.2014040104 +K. S. Shailesh,Personalized Chunk Framework for High Performance Personalized Web.,2017,9,IJWP,1,db/journals/ijwp/ijwp9.html#ShaileshV17,https://doi.org/10.4018/IJWP.2017010104 +Sunitha Abburu,GIS Based Interoperable Platform for Disaster Data Exchange Using OGC Standards and Spatial Query.,2017,9,IJWP,1,db/journals/ijwp/ijwp9.html#Abburu17,https://doi.org/10.4018/IJWP.2017010103 +Daniel Brewer,Practitioner Case Study: Practical Challenges in Portal Implementation Projects.,2009,1,IJWP,2,db/journals/ijwp/ijwp1.html#BrewerA09,https://doi.org/10.4018/jwp.2009040105 +Ibrahim Ahmed Al-Baltah,An Analysis on SAWSDL and its Implementation Tools.,2012,4,IJWP,1,db/journals/ijwp/ijwp4.html#Al-BaltahGRA12,https://doi.org/10.4018/jwp.2012010104 +Andreas Nauerz,Adaptation and Recommendation in Modern Web 2.0 Portals.,2009,1,IJWP,2,db/journals/ijwp/ijwp1.html#NauerzT09,https://doi.org/10.4018/jwp.2009082101 +Sofien Khemakhem,An Integration Ontology for Components Composition.,2010,2,IJWP,3,db/journals/ijwp/ijwp2.html#KhemakhemDJ10,https://doi.org/10.4018/jwp.2010070103 +Luis Campos,IFPortal: A Web Portal for the Characterization and Comparison of Government Interoperability Frameworks.,2014,6,IJWP,2,db/journals/ijwp/ijwp6.html#CamposS14,https://doi.org/10.4018/ijwp.2014040102 +Joe Lamantia,Using the Building Blocks: Evolution of a Portal Suite.,2010,2,IJWP,3,db/journals/ijwp/ijwp2.html#Lamantia10b,https://doi.org/10.4018/jwp.2010070104 +Maria Leonilde R. Varela,Web-based Technologies Integration for Distributed Manufacturing Scheduling in a Virtual Enterprise.,2012,4,IJWP,2,db/journals/ijwp/ijwp4.html#VarelaPC12,https://doi.org/10.4018/jwp.2012040102 +Eva Oliveira,Sharing Video Emotional Information in the Web.,2013,5,IJWP,3,db/journals/ijwp/ijwp5.html#OliveiraCR13,https://doi.org/10.4018/ijwp.2013070102 +Joe Lamantia,Creating Successful Portals with a Design Framework.,2009,1,IJWP,4,db/journals/ijwp/ijwp1.html#Lamantia09,https://doi.org/10.4018/jwp.2009071305 +Alexander Y. Yap,Web Portals for Financial Analytics: How Effective Are They from the End-Users' Perspective.,2013,5,IJWP,3,db/journals/ijwp/ijwp5.html#Yap13,https://doi.org/10.4018/ijwp.2013070101 +James W. Baurley,A Web Portal for Rice Crop Improvements.,2018,10,IJWP,2,db/journals/ijwp/ijwp10.html#BaurleyBKP18,https://doi.org/10.4018/IJWP.2018070102 +Diane Nahl,Gamification in Instruction and the Management of Intersubjectivity in Online University Courses.,2013,5,IJWP,2,db/journals/ijwp/ijwp5.html#NahlJ13,https://doi.org/10.4018/jwp.2013040104 +Ying-Chieh Liu,Extending the Technology Acceptance Model to Evaluating Students' Perceptions toward Using Technology in the Classroom.,2009,1,IJWP,4,db/journals/ijwp/ijwp1.html#Liu09,https://doi.org/10.4018/jwp.2009071303 +Tariq Mahmoud,Green Web Services Integration and Workflow Execution within Next Generation CEMIS.,2014,6,IJWP,2,db/journals/ijwp/ijwp6.html#MahmoudRV14,https://doi.org/10.4018/ijwp.2014040105 +Kiran Mary Matthew,Analysis Framework for Logs in Communication Devices.,2018,10,IJWP,1,db/journals/ijwp/ijwp10.html#MatthewM18,https://doi.org/10.4018/IJWP.2018010102 +Arthur Tatnall,Gateways to Portals Research.,2009,1,IJWP,1,db/journals/ijwp/ijwp1.html#Tatnall09,https://doi.org/10.4018/jwp.2009010101 +Alexander Alfimtsev,Web Personalization Based on Fuzzy Aggregation and Recognition of User Activity.,2012,4,IJWP,1,db/journals/ijwp/ijwp4.html#AlfimtsevSD12,https://doi.org/10.4018/jwp.2012010103 +Felipe Serpeloni,Ontology Mapping Validation: Dealing with an NP-Complete Problem.,2011,3,IJWP,3,db/journals/ijwp/ijwp3.html#SerpeloniMB11,https://doi.org/10.4018/jwp.2011070101 +Jana Polgar,Building Portal Applications.,2009,1,IJWP,1,db/journals/ijwp/ijwp1.html#PolgarP09,https://doi.org/10.4018/jwp.2009010104 +Tom Sander,The Trust of the Information from Employer Rating Platforms.,2017,9,IJWP,1,db/journals/ijwp/ijwp9.html#SanderSK17,https://doi.org/10.4018/IJWP.2017010102 +Ed Young,Service Oriented Architecture Conceptual Landscape: PART I.,2009,1,IJWP,3,db/journals/ijwp/ijwp1.html#Young09a,https://doi.org/10.4018/jwp.2009070101 +Bakhta Amrane,Efficient Incremental Algorithm for Building Swiftly Concepts Lattices.,2014,6,IJWP,1,db/journals/ijwp/ijwp6.html#AmraneBBS14,https://doi.org/10.4018/ijwp.2014010102 +Jana Polgar,User Facing Web Services in Portals.,2009,1,IJWP,2,db/journals/ijwp/ijwp1.html#Polgar09,https://doi.org/10.4018/jwp.2009092204 +Lule Ahmedi,An Integrated Web Portal for Water Quality Monitoring through Wireless Sensor Networks.,2015,7,IJWP,1,db/journals/ijwp/ijwp7.html#AhmediSBA15,https://doi.org/10.4018/IJWP.2015010102 +Diana Clarisse Pires Martins,The Quality of Portuguese Obesity Websites.,2013,5,IJWP,4,db/journals/ijwp/ijwp5.html#MartinsSJGDFF13,https://doi.org/10.4018/ijwp.2013100104 +Hemraj Saini,Computing the Spreading Power of a Business Portal to Propagate the Malicious Information in the Network.,2011,3,IJWP,2,db/journals/ijwp/ijwp3.html#SainiMP11,https://doi.org/10.4018/jwp.2011040102 +Ed Young,How Thick Is Your Client?,2010,2,IJWP,2,db/journals/ijwp/ijwp2.html#YoungJ10,https://doi.org/10.4018/jwp.2010040101 +Ian Weber,E = Mportfolios2?: Challenges and Opportunities in Creating Mobile Electronic Portfolio Systems for Lifelong Learning.,2011,3,IJWP,2,db/journals/ijwp/ijwp3.html#WeberE11,https://doi.org/10.4018/jwp.2011040101 +Ting Dai,An Empirical Study on the Customer Channel Choice Behavior in the Overall Process of Shopping Under O2O Mode.,2016,8,IJWP,1,db/journals/ijwp/ijwp8.html#DaiWC16,https://doi.org/10.4018/IJWP.2016010102 +Ben Choi,Multiagent Social Computing.,2011,3,IJWP,4,db/journals/ijwp/ijwp3.html#Choi11,https://doi.org/10.4018/jwp.2011100105 +Daniela Meira,E-Commerce: A Brief Historical and Conceptual Approach.,2014,6,IJWP,3,db/journals/ijwp/ijwp6.html#MeiraMPP14,https://doi.org/10.4018/IJWP.2014070104 +Júlio Cesar dos Reis,A Semiotic-Based Approach for Search in Social Network Services.,2011,3,IJWP,3,db/journals/ijwp/ijwp3.html#ReisBB11,https://doi.org/10.4018/jwp.2011070103 +Luís Pádua,Towards Modern Cost-effective and Lightweight Augmented Reality Setups.,2015,7,IJWP,2,db/journals/ijwp/ijwp7.html#PaduaANCMP15,https://doi.org/10.4018/IJWP.2015040103 +Nikos Manouselis,Architecture of the Organic.Edunet Web Portal.,2009,1,IJWP,1,db/journals/ijwp/ijwp1.html#ManouselisKACEP09,https://doi.org/10.4018/jwp.2009092105 +Andreas Prokoph,Search Integration with WebSphere Portal: The Options and Challenges.,2010,2,IJWP,3,db/journals/ijwp/ijwp2.html#Prokoph10,https://doi.org/10.4018/jwp.2010070101 +Jerh. O'Connor,Lotus Workforce Management-.,2010,2,IJWP,1,db/journals/ijwp/ijwp2.html#OConnorDN10,https://doi.org/10.4018/jwp.2010010103 +Giovanni Bogéa Viana,The Brazilian Transparency Portal.,2013,5,IJWP,3,db/journals/ijwp/ijwp5.html#VianaT13,https://doi.org/10.4018/ijwp.2013070104 +Jörg Becker 0001,Supporting Knowledge Management and Collaboration in Research Communities Using Automatically Created Research Portals.,2013,5,IJWP,2,db/journals/ijwp/ijwp5.html#BeckerHKS13,https://doi.org/10.4018/jwp.2013040101 +Andrea Bosin,A SOA-Based Environment Supporting Collaborative Experiments in E-Science.,2011,3,IJWP,3,db/journals/ijwp/ijwp3.html#BosinDBP11,https://doi.org/10.4018/jwp.2011070102 +Georg Disterer,Using Mobile Devices with BYOD.,2013,5,IJWP,4,db/journals/ijwp/ijwp5.html#DistererK13,https://doi.org/10.4018/ijwp.2013100103 +José Eduardo Fernandes,A Case Studies Approach to the Analysis of Profiling and Framing Structures for Pervasive Information Systems.,2012,4,IJWP,2,db/journals/ijwp/ijwp4.html#FernandesMC12,https://doi.org/10.4018/jwp.2012040101 +Jana Polgar,Using WSRP 2.0 with JSR 168 and 286 Portlets.,2010,2,IJWP,1,db/journals/ijwp/ijwp2.html#Polgar10a,https://doi.org/10.4018/jwp.2010010105 +M. Tariq Banday,Design of Secure Multilingual CAPTCHA Challenge.,2015,7,IJWP,1,db/journals/ijwp/ijwp7.html#BandayS15,https://doi.org/10.4018/IJWP.2015010101 +Katleen Gabriels,The Un/Acceptability of Virtual Moral Practices: An Empirical and Ethical Inquiry.,2013,5,IJWP,2,db/journals/ijwp/ijwp5.html#Gabriels13,https://doi.org/10.4018/jwp.2013040105 +Jana Polgar,Open Source ESB in Action.,2009,1,IJWP,4,db/journals/ijwp/ijwp1.html#Polgar09a,https://doi.org/10.4018/jwp.2009071304 +Yi Wei,Adaptive Web Services Monitoring in Cloud Environments.,2013,5,IJWP,1,db/journals/ijwp/ijwp5.html#WeiB13,https://doi.org/10.4018/jwp.2013010102 +David López-Berzosa,Value Creation of Platform Mediated Networks in the Mobile Industry.,2012,4,IJWP,3,db/journals/ijwp/ijwp4.html#Lopez-BerzosaSH12,https://doi.org/10.4018/jwp.2012070103 +Jan Newmarch,An Overview of REST.,2009,1,IJWP,2,db/journals/ijwp/ijwp1.html#Newmarch09,https://doi.org/10.4018/jwp.2009040102 +Luís Ferreira,Dashboard Services for Pragmatics-Based Interoperability in Cloud and Ubiquitous Manufacturing.,2014,6,IJWP,1,db/journals/ijwp/ijwp6.html#FerreiraPCPCAS14,https://doi.org/10.4018/ijwp.2014010103 +Cristina López,Enterprise Systems Projects Evaluation Based on a Qualitative Risks Model.,2012,4,IJWP,3,db/journals/ijwp/ijwp4.html#Lopez12,https://doi.org/10.4018/jwp.2012070105 +Ed Young,Mobilising the Enterprise.,2009,1,IJWP,4,db/journals/ijwp/ijwp1.html#Young09c,https://doi.org/10.4018/jwp.2009071301 +Anoop Kumar Pandey,Concept Identification Using Co-Occurrence Graph.,2018,10,IJWP,1,db/journals/ijwp/ijwp10.html#Pandey18,https://doi.org/10.4018/IJWP.2018010103 +Maria Leonilde R. Varela,Analysing Critical Success Factors for Supporting Online Shopping.,2017,9,IJWP,2,db/journals/ijwp/ijwp9.html#VarelaPCFCMT17,https://doi.org/10.4018/IJWP.2017070101 +Paula Ventura Martins,A Web-based Tool for Business Process Improvement.,2017,9,IJWP,2,db/journals/ijwp/ijwp9.html#MartinsZ17,https://doi.org/10.4018/IJWP.2017070104 +Joe Lamantia,Containers and Connectors as Elements in a Portal Design Framework.,2010,2,IJWP,1,db/journals/ijwp/ijwp2.html#Lamantia10,https://doi.org/10.4018/jwp.2010010106 +Michele Argiolas,Dataspaces Enhancing Decision Support Systems in Clouds.,2012,4,IJWP,2,db/journals/ijwp/ijwp4.html#ArgiolasADP12,https://doi.org/10.4018/jwp.2012040103 +Aparna Vijaya,Modernizing Legacy Systems: A Re-Engineering Approach.,2018,10,IJWP,2,db/journals/ijwp/ijwp10.html#VijayaV18,https://doi.org/10.4018/IJWP.2018070104 +Leonor Teixeira,Web Platform to Support the Portuguese National Registry of Haemophilia and Other Inherited Blood Disorders.,2015,7,IJWP,1,db/journals/ijwp/ijwp7.html#TeixeiraSFS15,https://doi.org/10.4018/IJWP.2015010104 +Jaye Fitzgerald,Challenges of Multi Device Support with Portals.,2010,2,IJWP,3,db/journals/ijwp/ijwp2.html#FitzgeraldL10,https://doi.org/10.4018/jwp.2010070102 +Mahesh D. Titiya,Ontology Based Expert System for Pests and Disease Management of Cotton Crop in India.,2018,10,IJWP,2,db/journals/ijwp/ijwp10.html#TitiyaS18,https://doi.org/10.4018/IJWP.2018070103 +Joselice Ferreira Lima,Analysis of Accessibility Initiatives Applied to the Web.,2012,4,IJWP,4,db/journals/ijwp/ijwp4.html#LimaCMG12,https://doi.org/10.4018/jwp.2012100104 +Manish Gupta,Impact of Web Portal Announcements on Market Valuations: An Event Study.,2010,2,IJWP,4,db/journals/ijwp/ijwp2.html#GuptaS10,https://doi.org/10.4018/jwp.2010100101 +Miguel Candeias,Proposal of a Web-based Collaborative System to Support Student's Homework.,2015,7,IJWP,1,db/journals/ijwp/ijwp7.html#CandeiasRER15,https://doi.org/10.4018/IJWP.2015010103 +Thomas Stober,WebSphere Portal 6.1: An Agile Development Approach.,2009,1,IJWP,3,db/journals/ijwp/ijwp1.html#StoberH09,https://doi.org/10.4018/jwp.2009070103 +Arthur Tatnall,Portals Then and Now: Development and Use of Portals in Australia and Bangladesh.,2009,1,IJWP,4,db/journals/ijwp/ijwp1.html#TatnallB09,https://doi.org/10.4018/jwp.2009071302 +Tassio Ferenzini Martins Sirqueira,An Approach to Configuration Management of Scientific Workflows.,2017,9,IJWP,2,db/journals/ijwp/ijwp9.html#SirqueiraBADCS17,https://doi.org/10.4018/IJWP.2017070102 +Jan Newmarch,Using Ajax to Track Student Attention.,2010,2,IJWP,4,db/journals/ijwp/ijwp2.html#Newmarch10,https://doi.org/10.4018/jwp.2010100102 +Greg Adamson,Portals and the Challenge of Simplifying Internet Business Use.,2009,1,IJWP,1,db/journals/ijwp/ijwp1.html#Adamson09,https://doi.org/10.4018/jwp.2009010102 +Kee Wong,Part of the Tool Kit.,2010,2,IJWP,1,db/journals/ijwp/ijwp2.html#WongA10,https://doi.org/10.4018/jwp.2010010104 +Crescenzio Gallo,Web Information System Platforms for Publishing Spatial Data.,2013,5,IJWP,2,db/journals/ijwp/ijwp5.html#GalloMF13,https://doi.org/10.4018/jwp.2013040103 +Maria Manuela Cruz-Cunha,The Perceived Potential of Business Social Networking Sites.,2012,4,IJWP,1,db/journals/ijwp/ijwp4.html#Cruz-CunhaVGAMM12,https://doi.org/10.4018/jwp.2012010101 +Luciana Oliveira 0001,Social Media Content Analysis in the Higher Education Sector: From Content to Strategy.,2015,7,IJWP,2,db/journals/ijwp/ijwp7.html#OliveiraF15,https://doi.org/10.4018/IJWP.2015040102 +Kao-Hui Kung,Linking Web Design Strategy with Business Strategy.,2014,6,IJWP,3,db/journals/ijwp/ijwp6.html#KungHWL14,https://doi.org/10.4018/IJWP.2014070101 +Abdulaziz Al-Raisi,E-Performance Systems: A Method of Measuring Performance.,2011,3,IJWP,1,db/journals/ijwp/ijwp3.html#Al-RaisiAT11,https://doi.org/10.4018/jwp.2011010104 +Sihem Loukil,Managing Architectural Reconfiguration at Runtime.,2013,5,IJWP,1,db/journals/ijwp/ijwp5.html#LoukilKJ13,https://doi.org/10.4018/jwp.2013010105 +Abdelkrim Latreche,Interrogation Based on Semantic Annotations: Context-Based Construction of Formal Queries from Keywords.,2017,9,IJWP,2,db/journals/ijwp/ijwp9.html#LatrecheLB17,https://doi.org/10.4018/IJWP.2017070103 +Damien J. Sticklen,An Initial Examination of Free and Proprietary Software-Selection in Organizations.,2011,3,IJWP,4,db/journals/ijwp/ijwp3.html#SticklenI11,https://doi.org/10.4018/jwp.2011100103 +Zora Arsovski,Vulnerabilities of Virtual and Networked Organizations.,2012,4,IJWP,3,db/journals/ijwp/ijwp4.html#ArsovskiAAST12,https://doi.org/10.4018/jwp.2012070102 +Ashraf Khalil,Script Familiarity and Its Effect on CAPTCHA Usability: An Experiment with Arab Participants.,2012,4,IJWP,2,db/journals/ijwp/ijwp4.html#KhalilAAH12,https://doi.org/10.4018/jwp.2012040105 +Wael Sellami,A Formal Approach for the Validation of Web Service Orchestrations.,2013,5,IJWP,1,db/journals/ijwp/ijwp5.html#SellamiKK13,https://doi.org/10.4018/jwp.2013010104 +Sara Rosenblum,Identifying Developmental Dysgraphia Characteristics Utilizing Handwriting Classification Methods.,2017,47,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms47.html#RosenblumD17,https://doi.org/10.1109/THMS.2016.2628799 +Sterling J. Anderson,Experimental Performance Analysis of a Homotopy-Based Shared Autonomy Framework.,2014,44,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms44.html#AndersonWI14,https://doi.org/10.1109/TSMC.2014.2298383 +Vlad Popescu,Reliably Creating Collision Avoidance Advisories in Piloted Simulations.,2013,43,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms43.html#PopescuCBPFZ13,https://doi.org/10.1109/TSMC.2013.2258668 +Wayne Chi Wei Giang,Supporting Air Versus Ground Vehicle Decisions for Interfacility Medical Transport Using Historical Data.,2014,44,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms44.html#GiangDFAM14,https://doi.org/10.1109/THMS.2013.2294636 +Wil-Johneen V. Ardoin,Investigating Redundant Encoding Methods for Tactile Messaging in Multitask Scenarios.,2016,46,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms46.html#ArdoinF16,https://doi.org/10.1109/THMS.2015.2483372 +Nabin Sapkota,Application of Evolving Self-Organizing Maps for Analysis of Human Adverse Events in the Context of Complex Socioeconomic Infrastructure Interactions.,2015,45,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms45.html#SapkotaKA15,https://doi.org/10.1109/THMS.2015.2412120 +Alessio Brutti,Online Cross-Modal Adaptation for Audio-Visual Person Identification With Wearable Cameras.,2017,47,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms47.html#BruttiC17,https://doi.org/10.1109/THMS.2016.2620110 +Giancarlo Fortino,Enabling Effective Programming and Flexible Management of Efficient Body Sensor Network Applications.,2013,43,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms43.html#FortinoGGKJ13,https://doi.org/10.1109/TSMCC.2012.2215852 +Jianwei Lai,ExtendedThumb: A Target Acquisition Approach for One-Handed Interaction With Touch-Screen Mobile Phones.,2015,45,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms45.html#LaiZ15,https://doi.org/10.1109/THMS.2014.2377205 +Zachary Henkel,Evaluation of Proxemic Scaling Functions for Social Robotics.,2014,44,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms44.html#HenkelBMS14,https://doi.org/10.1109/THMS.2014.2304075 +Qasem T. Obeidat,Introducing the Edges Paradigm: A P300 Brain-Computer Interface for Spelling Written Words.,2015,45,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms45.html#ObeidatCK15,https://doi.org/10.1109/THMS.2015.2456017 +Kam-yiu Lam,SmartMood: Toward Pervasive Mood Tracking and Analysis for Manic Episode Detection.,2015,45,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms45.html#LamWNHZKZ15,https://doi.org/10.1109/THMS.2014.2360469 +Paul Robinette,Effect of Robot Performance on Human-Robot Trust in Time-Critical Situations.,2017,47,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms47.html#RobinetteHW17,https://doi.org/10.1109/THMS.2017.2648849 +Giuseppe Pirlo,Multidomain Verification of Dynamic Signatures Using Local Stability Analysis.,2015,45,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms45.html#PirloCCIM15,https://doi.org/10.1109/THMS.2015.2443050 +Marc Bolaños,Toward Storytelling From Visual Lifelogging: An Overview.,2017,47,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms47.html#BolanosDR17,https://doi.org/10.1109/THMS.2016.2616296 +Thomas Haberkorn,Requirements for Future Collision Avoidance Systems in Visual Flight: A Human-Centered Approach.,2013,43,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms43.html#HaberkornKBP13,https://doi.org/10.1109/THMS.2013.2284784 +Xianta Jiang,Force Exertion Affects Grasp Classification Using Force Myography.,2018,48,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms48.html#JiangMM18,https://doi.org/10.1109/THMS.2017.2693245 +Andreas Hasselberg,Petri-Net-Based Modeling of Human Operator's Planning for the Evaluation of Task Performance Using the Example of Air Traffic Control.,2015,45,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms45.html#HasselbergS15,https://doi.org/10.1109/THMS.2015.2456104 +Ali-Akbar Samadani,Affective Movement Recognition Based on Generative and Discriminative Stochastic Dynamic Models.,2014,44,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms44.html#SamadaniGK14,https://doi.org/10.1109/THMS.2014.2310953 +Alberto Cavallo,Online Segmentation and Classification of Manipulation Actions From the Observation of Kinetostatic Data.,2014,44,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms44.html#CavalloF14,https://doi.org/10.1109/TSMC.2013.2296569 +Yoshikazu Onuki,Combined Use of Rear Touch Gestures and Facial Feature Detection to Achieve Single-Handed Navigation of Mobile Devices.,2016,46,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms46.html#OnukiK16,https://doi.org/10.1109/THMS.2016.2571262 +Genya Abe,Driver Trust in Automated Driving Systems: The Case of Overtaking and Passing.,2018,48,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms48.html#AbeSI18,https://doi.org/10.1109/THMS.2017.2781619 +Aibek Niyetkaliyev,Review on Design and Control Aspects of Robotic Shoulder Rehabilitation Orthoses.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#NiyetkaliyevHGA17,https://doi.org/10.1109/THMS.2017.2700634 +Madeena Sultana,User Recognition From Social Behavior in Computer-Mediated Social Context.,2017,47,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms47.html#SultanaPG17,https://doi.org/10.1109/THMS.2017.2681673 +Jung Hyup Kim,Applying Fuzzy Linear Regression to Understand Metacognitive Judgments in a Human-in-the-Loop Simulation Environment.,2016,46,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms46.html#KimRT16,https://doi.org/10.1109/THMS.2015.2503288 +Hojin Lee,Haptic Assistance for Memorization of 2-D Selection Sequences.,2013,43,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms43.html#LeeHLYHLC13,https://doi.org/10.1109/TSMC.2013.2283464 +Kun-Chan Lan,Using Smart-Phones and Floor Plans for Indoor Location Tracking.,2014,44,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms44.html#LanS14,https://doi.org/10.1109/THMS.2013.2296875 +Jizhong Xiao,An Assistive Navigation Framework for the Visually Impaired.,2015,45,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms45.html#XiaoJZLLZ15,https://doi.org/10.1109/THMS.2014.2382570 +Marc C. Canellas,Heuristic Information Acquisition and Restriction Rules for Decision Support.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#CanellasF17,https://doi.org/10.1109/THMS.2017.2647854 +Thomas Deselaers,GyroPen: Gyroscopes for Pen-Input With Mobile Phones.,2015,45,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms45.html#DeselaersKHR15,https://doi.org/10.1109/THMS.2014.2365723 +Hairong Jiang,User-Centered and Analytic-Based Approaches to Generate Usable Gestures for Individuals With Quadriplegia.,2016,46,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms46.html#JiangDW16,https://doi.org/10.1109/THMS.2015.2497346 +Mahsan Rofouei,Energy Efficient Collaborative Sensing-Based Design: Soft Keyboard Case Study.,2014,44,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms44.html#RofoueiPS14,https://doi.org/10.1109/TSMC.2013.2290503 +Melanie Sandberg,A Decision Support Tool for the Pushback Rate Control of Airport Departures.,2014,44,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms44.html#SandbergSBRH14,https://doi.org/10.1109/THMS.2014.2305906 +Leigh A. Baumgart,Effect of Pooled Comparative Information on Judgments of Quality.,2015,45,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms45.html#BaumgartBVL15,https://doi.org/10.1109/THMS.2015.2459382 +Gang Li 0011,Combined EEG-Gyroscope-tDCS Brain Machine Interface System for Early Management of Driver Drowsiness.,2018,48,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms48.html#LiC18,https://doi.org/10.1109/THMS.2017.2759808 +Manoj Ramanathan,Human Action Recognition With Video Data: Research and Evaluation Challenges.,2014,44,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms44.html#RamanathanYT14,https://doi.org/10.1109/THMS.2014.2325871 +Mohamed Mohandes,Image-Based and Sensor-Based Approaches to Arabic Sign Language Recognition.,2014,44,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms44.html#MohandesDL14,https://doi.org/10.1109/THMS.2014.2318280 +Irene A. Kuling,Adjusting Haptic Guidance to Idiosyncratic Visuo-Haptic Matching Errors Improves Perceptual Consistency in Reaching.,2016,46,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms46.html#KulingBMS16,https://doi.org/10.1109/THMS.2016.2604571 +Toshihiro Hiraoka,Improvement of Evaluation Indices for Rear-End Collision Risk.,2018,48,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms48.html#HiraokaT18,https://doi.org/10.1109/THMS.2017.2751556 +Limin Zeng,Exploration of Location-Aware You-Are-Here Maps on a Pin-Matrix Display.,2016,46,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms46.html#ZengW16,https://doi.org/10.1109/THMS.2015.2477999 +Alun D. Preece,Sherlock: Experimental Evaluation of a Conversational Agent for Mobile Information Tasks.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#PreeceWBZB17,https://doi.org/10.1109/THMS.2017.2700625 +Youngkyoon Jang,Metaphoric Hand Gestures for Orientation-Aware VR Object Manipulation With an Egocentric Viewpoint.,2017,47,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms47.html#JangJKW17,https://doi.org/10.1109/THMS.2016.2611824 +Weichao Guo,Toward an Enhanced Human-Machine Interface for Upper-Limb Prosthesis Control With Combined EMG and NIRS Signals.,2017,47,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms47.html#GuoSLZ17,https://doi.org/10.1109/THMS.2016.2641389 +Joost Ellerbroek,Design of a Coplanar Airborne Separation Display.,2013,43,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms43.html#EllerbroekBPM13,https://doi.org/10.1109/TSMC.2013.2242888 +Robert S. Allison,Detection and Discrimination of Motion-Defined Form: Implications for the Use of Night Vision Devices.,2013,43,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms43.html#AllisonMJ13,https://doi.org/10.1109/THMS.2013.2284911 +Carl Westin,Strategic Conformance: Overcoming Acceptance Issues of Decision Aiding Automation?,2016,46,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms46.html#WestinBH16,https://doi.org/10.1109/THMS.2015.2482480 +Andreas Fischer 0002,Signature Verification Based on the Kinematic Theory of Rapid Human Movements.,2017,47,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms47.html#FischerP17,https://doi.org/10.1109/THMS.2016.2634922 +Barkan Ugurlu,Proof of Concept for Robot-Aided Upper Limb Rehabilitation Using Disturbance Observers.,2015,45,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms45.html#UgurluNHKN15,https://doi.org/10.1109/THMS.2014.2362816 +Scott Schnelle,A Personalizable Driver Steering Model Capable of Predicting Driver Behaviors in Vehicle Collision Avoidance Maneuvers.,2017,47,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms47.html#SchnelleWSJ17,https://doi.org/10.1109/THMS.2016.2608930 +Emilia I. Barakova,Automatic Interpretation of Affective Facial Expressions in the Context of Interpersonal Interaction.,2015,45,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms45.html#BarakovaGR15,https://doi.org/10.1109/THMS.2015.2419259 +Umair Rehman,Augmented-Reality-Based Indoor Navigation: A Comparative Analysis of Handheld Devices Versus Google Glass.,2017,47,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms47.html#RehmanC17,https://doi.org/10.1109/THMS.2016.2620106 +Amrith Dhananjayan,A Formal Transparency Framework for Validation of Real-Time Discrete-Event Control Requirements Modeled by Timed Transition Graphs.,2015,45,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms45.html#DhananjayanS15,https://doi.org/10.1109/THMS.2014.2386972 +Bartolomeo Montrucchio,Thresholds of Vision of the Human Visual System: Visual Adaptation for Monocular and Binocular Vision.,2015,45,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms45.html#MontrucchioCC15,https://doi.org/10.1109/THMS.2015.2469155 +David Windridge,Characterizing Driver Intention via Hierarchical Perception-Action Modeling.,2013,43,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms43.html#WindridgeSH13,https://doi.org/10.1109/TSMCA.2012.2216868 +Joshua J. Robertson,A Framework for Biometric and Interaction Performance Assessment of Automated Border Control Processes.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#RobertsonGEO17,https://doi.org/10.1109/THMS.2016.2611822 +Yingjie Li,Validation of a Haptic-Based Simulation to Test Complex Figure Reproduction Capability.,2013,43,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms43.html#LiCK13,https://doi.org/10.1109/TSMC.2013.2287341 +Francesco Conti 0001,Accelerated Visual Context Classification on a Low-Power Smartwatch.,2017,47,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms47.html#ContiPAMB17,https://doi.org/10.1109/THMS.2016.2623482 +Tamer AbuHmed,UOIT Keyboard: A Constructive Keyboard for Small Touchscreen Devices.,2015,45,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms45.html#AbuHmedLN15,https://doi.org/10.1109/THMS.2015.2449309 +Drazen Brscic,Changes in Usage of an Indoor Public Space: Analysis of One Year of Person Tracking.,2015,45,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms45.html#BrscicK15,https://doi.org/10.1109/THMS.2014.2374172 +Lunke Fei,Palmprint Recognition Using Neighboring Direction Indicator.,2016,46,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms46.html#FeiZXY16,https://doi.org/10.1109/THMS.2016.2586474 +Hubert Cecotti,A Multimodal Gaze-Controlled Virtual Keyboard.,2016,46,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms46.html#Cecotti16,https://doi.org/10.1109/THMS.2016.2537749 +Markus Rank,Predictive Communication Quality Control in Haptic Teleoperation With Time Delay and Packet Loss.,2016,46,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms46.html#RankSMH16,https://doi.org/10.1109/THMS.2016.2519608 +Enid N. H. Montague,Shared Experiences of Technology and Trust: An Experimental Study of Physiological Compliance Between Active and Passive Users in Technology-Mediated Collaborative Encounters.,2014,44,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms44.html#MontagueXC14,https://doi.org/10.1109/THMS.2014.2325859 +João Paulo,ISR-AIWALKER: Robotic Walker for Intuitive and Safe Mobility Assistance and Gait Analysis.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#PauloPN17,https://doi.org/10.1109/THMS.2017.2759807 +Linmi Tao,Understanding an Online Classroom System: Design and Implementation Based on a Model Blending Pedagogy and HCI.,2013,43,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms43.html#TaoZ13,https://doi.org/10.1109/THMS.2013.2281436 +Borja Gamecho,Automatic Generation of Tailored Accessible User Interfaces for Ubiquitous Services.,2015,45,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms45.html#GamechoMACAGA15,https://doi.org/10.1109/THMS.2014.2384452 +Cristy Ho,To What Extent do the Findings of Laboratory-Based Spatial Attention Research Apply to the Real-World Setting of Driving?,2014,44,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms44.html#HoGS14,https://doi.org/10.1109/THMS.2014.2316502 +Su Yang,On the Usability of Electroencephalographic Signals for Biometric Recognition: A Survey.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#YangD17,https://doi.org/10.1109/THMS.2017.2682115 +Quang Vinh Nguyen,Unlocking the Complexity of Port Data With Visualization.,2015,45,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms45.html#NguyenZS15,https://doi.org/10.1109/THMS.2014.2369375 +Rich C. McIlroy,Ecological Interface Design Two Decades On: Whatever Happened to the SRK Taxonomy?,2015,45,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms45.html#McIlroyS15,https://doi.org/10.1109/THMS.2014.2369372 +Toru Tsumugiwa,Analysis of Upper-Extremity Motion and Muscle and Brain Activation During Machine Operation in Consideration of Mass and Friction.,2018,48,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms48.html#TsumugiwaSY18,https://doi.org/10.1109/THMS.2018.2789682 +Aerial Camden,Strategy Shifting With Multisensorial Cueing: Theoretical Capability of Multitasking Throughput.,2016,46,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms46.html#CamdenPMKN16,https://doi.org/10.1109/THMS.2015.2470679 +Katerina Kabassi,Combining Decision-Making Theories With a Cognitive Theory for Intelligent Help: A Comparison.,2015,45,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms45.html#KabassiV15,https://doi.org/10.1109/THMS.2014.2363467 +Matt Webster,Toward Reliable Autonomous Robotic Assistants Through Formal Verification: A Case Study.,2016,46,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms46.html#WebsterDFSSKDS16,https://doi.org/10.1109/THMS.2015.2425139 +Hui Yu,Regression-Based Facial Expression Optimization.,2014,44,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms44.html#YuL14,https://doi.org/10.1109/THMS.2014.2313912 +Minjie Cai,An Ego-Vision System for Hand Grasp Analysis.,2017,47,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms47.html#CaiKS17,https://doi.org/10.1109/THMS.2017.2681423 +Shouyi Wang,Using Wireless EEG Signals to Assess Memory Workload in the n-Back Task.,2016,46,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms46.html#WangGC16,https://doi.org/10.1109/THMS.2015.2476818 +Bin Gao 0003,Wearable Audio Monitoring: Content-Based Processing Methodology and Implementation.,2014,44,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms44.html#GaoW14,https://doi.org/10.1109/THMS.2014.2300698 +Kai-Tai Song,Interactive Teleoperation of a Mobile Manipulator Using a Shared-Control Approach.,2016,46,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms46.html#SongJL16,https://doi.org/10.1109/THMS.2016.2586760 +Bassam Hasanain,Using Model Checking to Detect Simultaneous Masking in Medical Alarms.,2016,46,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms46.html#HasanainBB16,https://doi.org/10.1109/THMS.2014.2379661 +Yuhua Liu,GenealogyVis: A System for Visual Analysis of Multidimensional Genealogical Data.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#LiuDWZQ17,https://doi.org/10.1109/THMS.2017.2693236 +Zhelong Wang,Badminton Stroke Recognition Based on Body Sensor Networks.,2016,46,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms46.html#WangGZ16,https://doi.org/10.1109/THMS.2016.2571265 +Clark Borst,Beyond Ecological Interface Design: Lessons From Concerns and Misconceptions.,2015,45,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms45.html#BorstFE15,https://doi.org/10.1109/THMS.2014.2364984 +Guillaume Doisy,The Impact of Human-Robot Interface Design on the Use of a Learning Robot System.,2014,44,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms44.html#DoisyME14,https://doi.org/10.1109/THMS.2014.2331618 +Daniel Kelly,Uncovering Measurements of Social and Demographic Behavior From Smartphone Location Data.,2013,43,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms43.html#KellySC13,https://doi.org/10.1109/TSMC.2013.2238926 +Kun-Chan Lan,"Correction to: ""Using Smart-Phones and Floor Plans for Indoor Location Tracking"".",2015,45,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms45.html#LanS15,https://doi.org/10.1109/THMS.2015.2396211 +Dongrui Wu,Online and Offline Domain Adaptation for Reducing BCI Calibration Effort.,2017,47,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms47.html#Wu17,https://doi.org/10.1109/THMS.2016.2608931 +Kien Nguyen,Score-Level Multibiometric Fusion Based on Dempster-Shafer Theory Incorporating Uncertainty Factors.,2015,45,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms45.html#NguyenDSF15,https://doi.org/10.1109/THMS.2014.2361437 +Duckki Lee,Situation-Based Assess Tree for User Behavior Assessment in Persuasive Telehealth.,2015,45,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms45.html#LeeHSA15,https://doi.org/10.1109/THMS.2015.2443712 +Yiu-ming Cheung,Eye Gaze Tracking With a Web Camera in a Desktop Environment.,2015,45,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms45.html#CheungP15,https://doi.org/10.1109/THMS.2015.2400442 +Mohammed F. Alhamid,Exploring Latent Preferences for Context-Aware Personalized Recommendation Systems.,2016,46,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms46.html#AlhamidRDHE16,https://doi.org/10.1109/THMS.2015.2509965 +Dong Zhao 0001,CrowdOLR: Toward Object Location Recognition With Crowdsourced Fingerprints Using Smartphones.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#ZhaoWMXLZ17,https://doi.org/10.1109/THMS.2017.2700443 +Brandon Pitts,Crossmodal Matching: A Critical but Neglected Step in Multimodal Research.,2016,46,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms46.html#PittsRS16,https://doi.org/10.1109/THMS.2015.2501420 +Masayuki Hara,A Novel Rubber Hand Illusion Paradigm Allowing Active Self-Touch With Variable Force Feedback Controlled by a Haptic Device.,2016,46,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms46.html#HaraNYH16,https://doi.org/10.1109/THMS.2015.2487499 +Marcia K. O'Malley,Identifying Successful Motor Task Completion via Motion-Based Performance Metrics.,2014,44,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms44.html#OMalleyPHB14,https://doi.org/10.1109/THMS.2013.2290129 +Jun Qu,A Novel Three-Dimensional P300 Speller Based on Stereo Visual Stimuli.,2018,48,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms48.html#QuWXYXYGL18,https://doi.org/10.1109/THMS.2018.2799525 +Binh P. Nguyen,Robust Biometric Recognition From Palm Depth Images for Gloved Hands.,2015,45,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms45.html#NguyenTC15,https://doi.org/10.1109/THMS.2015.2453203 +Rencheng Zheng,Eye-Gaze Tracking Analysis of Driver Behavior While Interacting With Navigation Systems in an Urban Area.,2016,46,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms46.html#ZhengNIHKY16,https://doi.org/10.1109/THMS.2015.2504083 +Yahui Liu,A Study on Objective Evaluation of Vehicle Steering Comfort Based on Driver's Electromyogram and Movement Trajectory.,2018,48,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms48.html#LiuLLZJ18,https://doi.org/10.1109/THMS.2017.2755469 +Daiki Ishii,A Bisimulation-Based Design of User Interface With Alerts Avoiding Automation Surprises.,2016,46,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms46.html#IshiiU16,https://doi.org/10.1109/THMS.2014.2360892 +Muhammad U. Choudry,A Stochastic Framework for Movement Strategy Identification and Analysis.,2013,43,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms43.html#ChoudryBCK13,https://doi.org/10.1109/TSMC.2013.2251629 +Yi-Ting Chiang,A Feature-Based Knowledge Transfer Framework for Cross-Environment Activity Recognition Toward Smart Home Applications.,2017,47,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms47.html#ChiangLH17,https://doi.org/10.1109/THMS.2016.2641679 +Shu Wu,Coupled Topic Model for Collaborative Filtering With User-Generated Content.,2016,46,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms46.html#WuGXHWT16,https://doi.org/10.1109/THMS.2016.2586480 +Allan Hodgson,Culture and the Safety of Complex Automated Sociotechnical Systems.,2013,43,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms43.html#HodgsonSH13,https://doi.org/10.1109/THMS.2013.2285048 +Patrick Stahl,Anticipation in Driving: The Role of Experience in the Efficacy of Pre-event Conflict Cues.,2014,44,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms44.html#StahlDJ14,https://doi.org/10.1109/THMS.2014.2325558 +Pyungkang Kim,Modified Nonnegative Matrix Factorization Using the Hadamard Product to Estimate Real-Time Continuous Finger-Motion Intentions.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#KimKK17,https://doi.org/10.1109/THMS.2017.2751549 +Vikram Shenoy Handiru,Optimized Bi-Objective EEG Channel Selection and Cross-Subject Generalization With Brain-Computer Interfaces.,2016,46,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms46.html#HandiruP16,https://doi.org/10.1109/THMS.2016.2573827 +Sébastien Combéfis,Automatic Detection of Potential Automation Surprises for ADEPT Models.,2016,46,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms46.html#CombefisGP16,https://doi.org/10.1109/THMS.2015.2424851 +Joe Saunders,Teach Me-Show Me - End-User Personalization of a Smart Home and Companion Robot.,2016,46,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms46.html#SaundersSKBD16,https://doi.org/10.1109/THMS.2015.2445105 +Jirí Mekyska,Identification and Rating of Developmental Dysgraphia by Handwriting Analysis.,2017,47,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms47.html#MekyskaFMGSR17,https://doi.org/10.1109/THMS.2016.2586605 +Stefan Oppl,Recognition of Paper-Based Conceptual Models Captured Under Uncontrolled Conditions.,2017,47,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms47.html#OpplSV17,https://doi.org/10.1109/THMS.2016.2611943 +Jin-Hyuk Hong,Toward Personalized Activity Recognition Systems With a Semipopulation Approach.,2016,46,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms46.html#HongRD16,https://doi.org/10.1109/THMS.2015.2489688 +Niall McLaughlin,Robust Multimodal Person Identification With Limited Training Data.,2013,43,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms43.html#McLaughlinMC13,https://doi.org/10.1109/TSMCC.2012.2227959 +Dipankar Das 0003,Supporting Human-Robot Interaction Based on the Level of Visual Focus of Attention.,2015,45,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms45.html#DasRKK15,https://doi.org/10.1109/THMS.2015.2445856 +Edwige E. Pissaloux,A New Framework for Cognitive Mobility of Visually Impaired Users in Using Tactile Device.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#PissalouxVM17,https://doi.org/10.1109/THMS.2017.2736888 +Zhiwen Yu 0001,Personalized Travel Package With Multi-Point-of-Interest Recommendation Based on Crowdsourced User Footprints.,2016,46,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms46.html#YuXYG16,https://doi.org/10.1109/THMS.2015.2446953 +Qingquan Sun,Human Movement Modeling and Activity Perception Based on Fiber-Optic Sensing System.,2014,44,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms44.html#SunHH14,https://doi.org/10.1109/THMS.2014.2354046 +álvaro Castro González,Evaluation of Artificial Mouths in Social Robots.,2018,48,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms48.html#GonzalezAMAS18,https://doi.org/10.1109/THMS.2018.2812618 +Masahiko Ueda,Measurement of Angular Motion in Golf Swing by a Local Sensor at the Grip End of a Golf Club.,2013,43,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms43.html#UedaNKW13,https://doi.org/10.1109/TSMC.2013.2266896 +Bruno Ando,A Haptic Solution to Assist Visually Impaired in Mobility Tasks.,2015,45,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms45.html#AndoBMV15,https://doi.org/10.1109/THMS.2015.2419256 +Hyung Jun Kim,Takeover Requests in Simulated Partially Autonomous Vehicles Considering Human Factors.,2017,47,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms47.html#KimY17,https://doi.org/10.1109/THMS.2017.2674998 +Lalit Kane,Vision-Based Mid-Air Unistroke Character Input Using Polar Signatures.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#KaneK17,https://doi.org/10.1109/THMS.2017.2706695 +Laurindo de Sousa Britto Neto,A Kinect-Based Wearable Face Recognition System to Aid Visually Impaired Users.,2017,47,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms47.html#NetoGMMFBRG17,https://doi.org/10.1109/THMS.2016.2604367 +Alexandros Iosifidis,Class-Specific Reference Discriminant Analysis With Application in Human Behavior Analysis.,2015,45,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms45.html#IosifidisTP15,https://doi.org/10.1109/THMS.2014.2379274 +James J. Potter,Improving Manual Tracking of Systems With Oscillatory Dynamics.,2013,43,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms43.html#PotterS13,https://doi.org/10.1109/TSMCA.2012.2214031 +Nana Yaw Asabere,Improving Smart Conference Participation Through Socially Aware Recommendation.,2014,44,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms44.html#AsabereXWRBM14,https://doi.org/10.1109/THMS.2014.2325837 +Hannah Torney,A Usability Study of a Critical Man-Machine Interface: Can Layperson Responders Perform Optimal Compression Rates When Using a Public Access Defibrillator with Automated Real-Time Feedback During Cardiopulmonary Resuscitation?,2016,46,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms46.html#TorneyODDBMMMMM16,https://doi.org/10.1109/THMS.2016.2561267 +Ulrich Burgbacher,Synthetic Word Gesture Generation for Stroke-Based Virtual Keyboards.,2017,47,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms47.html#BurgbacherH17,https://doi.org/10.1109/THMS.2016.2599487 +Mingyu Chen 0003,Air-Writing Recognition - Part II: Detection and Recognition of Writing Activity in Continuous Stream of Motion Data.,2016,46,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms46.html#ChenAJ16a,https://doi.org/10.1109/THMS.2015.2492599 +Jianfeng Li 0003,Gaze Estimation From Color Image Based on the Eye Model With Known Head Pose.,2016,46,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms46.html#LiL16,https://doi.org/10.1109/THMS.2015.2477507 +Joonseok Lee,A Rapid Screening and Testing Protocol for Keyboard Layout Speed Comparison.,2015,45,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms45.html#LeeCM15,https://doi.org/10.1109/THMS.2014.2380641 +Guozhen Zhao,Real-Time Assessment of the Cross-Task Mental Workload Using Physiological Measures During Anomaly Detection.,2018,48,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms48.html#ZhaoLS18,https://doi.org/10.1109/THMS.2018.2803025 +Boon-Giin Lee,Wearable Mobile-Based Emotional Response-Monitoring System for Drivers.,2017,47,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms47.html#LeeCLPKK17,https://doi.org/10.1109/THMS.2017.2658442 +Emmanouil Perakakis,HTML5 Technologies for Effective Cross-Platform Interactive/Smart TV Advertising.,2015,45,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms45.html#PerakakisG15,https://doi.org/10.1109/THMS.2015.2401975 +Thomas Haberkorn,Traffic Displays for Visual Flight Indicating Track and Priority Cues.,2014,44,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms44.html#HaberkornKB14,https://doi.org/10.1109/THMS.2014.2352496 +James Yang,Vertical Ground Reaction Forces for Given Human Standing Posture With Uneven Terrains: Prediction and Validation.,2013,43,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms43.html#YangHCD13,https://doi.org/10.1109/TSMC.2013.2237899 +Claudio Loconsole,RELIVE: A Markerless Assistant for CPR Training.,2016,46,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms46.html#LoconsoleFSSMFM16,https://doi.org/10.1109/THMS.2016.2586756 +Caroline J. Cornelius,Supporting Virtual Collaboration in Spatial Design Tasks: Are Surrogate or Natural Gestures More Effective?,2013,43,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms43.html#CorneliusNHM13,https://doi.org/10.1109/TSMCA.2012.2216867 +Jason C. Ryan,A Systems Analysis of the Introduction of Unmanned Aircraft Into Aircraft Carrier Operations.,2016,46,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms46.html#RyanC16,https://doi.org/10.1109/THMS.2014.2376355 +Kathleen M. Jagodnik,Human-Like Rewards to Train a Reinforcement Learning Controller for Planar Arm Movement.,2016,46,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms46.html#JagodnikTBBK16,https://doi.org/10.1109/THMS.2016.2558630 +Ming Hou 0002,Effects of Display Mode and Input Method for Handheld Control of Micro Aerial Vehicles for a Reconnaissance Mission.,2013,43,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms43.html#HouHAYY13,https://doi.org/10.1109/TSMC.2013.2239595 +Michael C. Fairhurst,Selective Review and Analysis of Aging Effects in Biometric System Implementation.,2015,45,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms45.html#FairhurstEC15,https://doi.org/10.1109/THMS.2014.2376874 +Manar D. Samad,Frenet Frame-Based Generalized Space Curve Representation for Pose-Invariant Classification and Recognition of 3-D Face.,2016,46,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms46.html#SamadI16,https://doi.org/10.1109/THMS.2016.2515602 +José A. Ruipérez Valiente,Scaling to Massiveness With ANALYSE: A Learning Analytics Tool for Open edX.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#ValienteMGK17,https://doi.org/10.1109/THMS.2016.2630420 +Leia Stirling,Roadmap for the Development of at-Home Telemonitoring Systems to Augment Occupational Therapy.,2016,46,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms46.html#StirlingM16,https://doi.org/10.1109/THMS.2015.2506729 +Bin Gao 0003,"Correction to ""Wearable Audio Monitoring: Content-Based Processing Methodology and Implementation"".",2014,44,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms44.html#GaoW14a,https://doi.org/10.1109/THMS.2014.2336071 +Giuseppe Serra,Guest Editorial Special Issue on Wearable and Ego-Vision Systems for Augmented Experience.,2017,47,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms47.html#SerraCKC17,https://doi.org/10.1109/THMS.2016.2646600 +Jason M. Rathje,Human-Automation Collaboration in Occluded Trajectory Smoothing.,2013,43,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms43.html#RathjeSC13,https://doi.org/10.1109/TSMCA.2012.2230439 +Zhiwen Yu 0001,Supporting Serendipitous Social Interaction Using Human Mobility Prediction.,2015,45,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms45.html#YuWGGM15,https://doi.org/10.1109/THMS.2015.2451515 +Xiaodong Yang 0001,Assistive Clothing Pattern Recognition for Visually Impaired People.,2014,44,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms44.html#YangYT14,https://doi.org/10.1109/THMS.2014.2302814 +Gourav Modanwal,A New Dactylology and Interactive System Development for Blind-Computer Interaction.,2018,48,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms48.html#ModanwalS18,https://doi.org/10.1109/THMS.2017.2734065 +Kajiro Watanabe,Biosignals Sensing by Novel Use of Bidirectional Microphones in a Mobile Phone for Ubiquitous Healthcare Monitoring.,2014,44,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms44.html#WatanabeKWANT14,https://doi.org/10.1109/THMS.2014.2320945 +Mary L. Cummings,Task Versus Vehicle-Based Control Paradigms in Multiple Unmanned Vehicle Supervision by a Single Operator.,2014,44,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms44.html#CummingsBMS14,https://doi.org/10.1109/THMS.2014.2304962 +Joseph Kim,Improving Team's Consistency of Understanding in Meetings.,2016,46,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms46.html#KimS16,https://doi.org/10.1109/THMS.2016.2547186 +Mario Rincón Nigro,A Text-Driven Conversational Avatar Interface for Instant Messaging on Mobile Devices.,2013,43,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms43.html#NigroD13,https://doi.org/10.1109/TSMC.2013.2250498 +Kejin Chen,Influence of Information Layout on Diagnosis Performance.,2018,48,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms48.html#ChenLJ18,https://doi.org/10.1109/THMS.2017.2767284 +Bin Guo,MobiGroup: Enabling Lifecycle Support to Social Activity Organization and Suggestion With Mobile Crowd Sensing.,2016,46,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms46.html#GuoYCZM16,https://doi.org/10.1109/THMS.2015.2503290 +Jérémy Danna,Handwriting Movement Sonification: Why and How?,2017,47,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms47.html#DannaV17,https://doi.org/10.1109/THMS.2016.2641397 +David Slayback,Effects of Image Presentation Highlighting and Accuracy on Target Category Learning.,2018,48,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms48.html#SlaybackFLB18,https://doi.org/10.1109/THMS.2018.2830649 +Ellen J. Bass,Editorial: IEEE Transactions on Human-Machine Systems: Year in Review for 2013.,2014,44,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms44.html#Bass14,https://doi.org/10.1109/THMS.2014.2298286 +Andrés úbeda,An Integrated Electrooculography and Desktop Input Bimodal Interface to Support Robotic Arm Control.,2013,43,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms43.html#UbedaIA13,https://doi.org/10.1109/TSMCC.2013.2241758 +Jin Woo Park,Standard Time Estimation of Manual Tasks via Similarity Measure of Unequal Scale Time Series.,2018,48,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms48.html#ParkK18,https://doi.org/10.1109/THMS.2017.2759809 +Lamia Mezai,Score-Level Fusion of Face and Voice Using Particle Swarm Optimization and Belief Functions.,2015,45,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms45.html#MezaiH15,https://doi.org/10.1109/THMS.2015.2438005 +Bin Feng,Depth-Projection-Map-Based Bag of Contour Fragments for Robust Hand Gesture Recognition.,2017,47,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms47.html#FengHWWWYL17,https://doi.org/10.1109/THMS.2016.2616278 +Sean Estrada,Smoothness of Surgical Tool Tip Motion Correlates to Skill in Endovascular Tasks.,2016,46,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms46.html#EstradaDSBBO16,https://doi.org/10.1109/THMS.2016.2545247 +Troy K. Arbuckle,Human Velocity Control of Admittance-Type Robotic Devices With Scaled Visual Feedback of Device Motion.,2016,46,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms46.html#ArbuckleNBPA16,https://doi.org/10.1109/THMS.2016.2599493 +Amit Milstein,Human-Centered Transparency of Grasping via a Robot-Assisted Minimally Invasive Surgery System.,2018,48,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms48.html#MilsteinGBN18,https://doi.org/10.1109/THMS.2018.2846033 +Yusuke Sugano,Appearance-Based Gaze Estimation With Online Calibration From Mouse Operations.,2015,45,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms45.html#SuganoMSK15,https://doi.org/10.1109/THMS.2015.2400434 +Sushmita Mitra,Integrating Radio Imaging With Gene Expressions Toward a Personalized Management of Cancer.,2014,44,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms44.html#MitraS14,https://doi.org/10.1109/THMS.2014.2325744 +Shenquan Zhang,Myoelectric Pattern Recognition Based on Muscle Synergies for Simultaneous Control of Dexterous Finger Movements.,2017,47,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms47.html#ZhangZCGCZ17,https://doi.org/10.1109/THMS.2017.2700444 +David Rozado Fernandez,Mouse and Keyboard Cursor Warping to Accelerate and Reduce the Effort of Routine HCI Input Tasks.,2013,43,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms43.html#Rozado13,https://doi.org/10.1109/THMS.2013.2281852 +Patricio Loncomilla,A Novel Methodology for Assessing the Fall Risk Using Low-Cost and Off-the-Shelf Devices.,2014,44,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms44.html#LoncomillaTDR14,https://doi.org/10.1109/THMS.2014.2309493 +Ziho Kang,An Eye Movement Analysis Algorithm for a Multielement Target Tracking Task: Maximum Transition-Based Agglomerative Hierarchical Clustering.,2015,45,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms45.html#KangL15,https://doi.org/10.1109/THMS.2014.2363121 +José Creissac Campos,Formal Verification of a Space System's User Interface With the IVY Workbench.,2016,46,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms46.html#CamposSAH16,https://doi.org/10.1109/THMS.2015.2421511 +Michael D. Harrison,Verification of User Interface Software: The Example of Use-Related Safety Requirements and Programmable Medical Devices.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#HarrisonMCC17,https://doi.org/10.1109/THMS.2017.2717910 +Varun Ramanujam,Data-Driven Modeling of the Airport Configuration Selection Process.,2015,45,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms45.html#RamanujamB15,https://doi.org/10.1109/THMS.2015.2411743 +Rahul B. Warrier,Iterative Learning From Novice Human Demonstrations for Output Tracking.,2016,46,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms46.html#WarrierD16,https://doi.org/10.1109/THMS.2016.2545243 +Bin Guo,ActiveCrowd: A Framework for Optimized Multitask Allocation in Mobile Crowdsensing Systems.,2017,47,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms47.html#GuoLWYH17,https://doi.org/10.1109/THMS.2016.2599489 +Neda Eskandari,An Observer/Predictor-Based Model of the User for Attaining Situation Awareness.,2016,46,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms46.html#EskandariDW16,https://doi.org/10.1109/THMS.2014.2382475 +Wenshuo Wang,Driving Style Classification Using a Semisupervised Support Vector Machine.,2017,47,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms47.html#WangXCL17,https://doi.org/10.1109/THMS.2017.2736948 +Kailas Patil,Design and Construction of Electronic Aid for Visually Impaired People.,2018,48,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms48.html#PatilJS18,https://doi.org/10.1109/THMS.2018.2799588 +Taekyoung Kwon,SteganoPIN: Two-Faced Human-Machine Interface for Practical Enforcement of PIN Entry Security.,2016,46,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms46.html#KwonN16,https://doi.org/10.1109/THMS.2015.2454498 +Nikos G. Tsagarakis,Improving Mouse-Based Computer Interaction in Users With Weak Upper Limb Motion Control Using a Haptic Assistive System.,2013,43,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms43.html#TsagarakisC13,https://doi.org/10.1109/TSMCC.2012.2204872 +Joseph Krall,Learning Mitigations for Pilot Issues When Landing Aircraft (via Multiobjective Optimization and Multiagent Simulations).,2016,46,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms46.html#KrallMD16,https://doi.org/10.1109/THMS.2015.2509980 +Jingjing Jiang,Shared-Control for a Rear-Wheel Drive Car: Dynamic Environments and Disturbance Rejection.,2017,47,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms47.html#JiangA17,https://doi.org/10.1109/THMS.2017.2693231 +Jiaxin Ma,Hand and Wrist Movement Control of Myoelectric Prosthesis Based on Synergy.,2015,45,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms45.html#MaTM15,https://doi.org/10.1109/THMS.2014.2358634 +Lesley Strawderman,Understanding Human Response to the Presence and Actions of Unmanned Ground Vehicle Systems in Field Environment.,2018,48,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms48.html#StrawdermanCMBU18,https://doi.org/10.1109/THMS.2017.2717905 +Ji-Hyeong Han,Behavior Hierarchy-Based Affordance Map for Recognition of Human Intention and Its Application to Human-Robot Interaction.,2016,46,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms46.html#HanLK16,https://doi.org/10.1109/THMS.2016.2558539 +Yuichi Kurita,Wearable Sensorimotor Enhancer for Fingertip Based on Stochastic Resonance Effect.,2013,43,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms43.html#KuritaSU13,https://doi.org/10.1109/TSMC.2013.2242886 +Frédéric Leishman,Driving Assistance by Deictic Control for a Smart Wheelchair: The Assessment Issue.,2014,44,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms44.html#LeishmanMHB14,https://doi.org/10.1109/TSMC.2013.2287792 +Hassan Ghasemzadeh,Power-Aware Activity Monitoring Using Distributed Wearable Sensors.,2014,44,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms44.html#GhasemzadehPTFJ14,https://doi.org/10.1109/THMS.2014.2320277 +Songpo Li,Implicit Intention Communication in Human-Robot Interaction Through Visual Behavior Studies.,2017,47,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms47.html#LiZ17,https://doi.org/10.1109/THMS.2017.2647882 +Luzheng Bi,EEG-Based Brain-Controlled Mobile Robots: A Survey.,2013,43,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms43.html#BiFL13,https://doi.org/10.1109/TSMCC.2012.2219046 +Giuseppe Pirlo,Verification of Static Signatures by Optical Flow Analysis.,2013,43,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms43.html#PirloI13,https://doi.org/10.1109/THMS.2013.2279008 +Jae Yoon,A LAMSTAR Network-Based Human Judgment Analysis.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#YoonHB17,https://doi.org/10.1109/THMS.2016.2612231 +Fuji Ren,Automatic Facial Expression Learning Method Based on Humanoid Robot XIN-REN.,2016,46,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms46.html#RenH16,https://doi.org/10.1109/THMS.2016.2599495 +Fei Gao,Modeling Teamwork in Supervisory Control of Multiple Robots.,2014,44,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms44.html#GaoCS14,https://doi.org/10.1109/THMS.2014.2312391 +Emmanouil Perakakis,Smart Enough for the Web? A Responsive Web Design Approach to Enhancing the User Web Browsing Experience on Smart TVs.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#PerakakisG17,https://doi.org/10.1109/THMS.2017.2726821 +Xu-Yao Zhang,End-to-End Online Writer Identification With Recurrent Neural Network.,2017,47,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms47.html#ZhangXLB17,https://doi.org/10.1109/THMS.2016.2634921 +Lior Shamir,Leveraging Pattern Recognition Consistency Estimation for Crowdsourcing Data Analysis.,2016,46,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms46.html#ShamirDW16,https://doi.org/10.1109/THMS.2015.2463082 +Paul Whittington,SmartPowerchair: Characterization and Usability of a Pervasive System of Systems.,2017,47,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms47.html#WhittingtonD17,https://doi.org/10.1109/THMS.2016.2616288 +Mircea Lupu,Rate of Information Transmission in Human Manual Control of an Unstable System.,2013,43,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms43.html#LupuSXM13,https://doi.org/10.1109/TSMC.2012.2235429 +Nikolay Stefanov,Design and Evaluation of a Haptic Computer-Assistant for Telemanipulation Tasks.,2013,43,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms43.html#StefanovPPB13,https://doi.org/10.1109/TSMC.2013.2257743 +Qinghua Huang,Bezier Interpolation for 3-D Freehand Ultrasound.,2015,45,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms45.html#HuangHHL15,https://doi.org/10.1109/THMS.2014.2374551 +Chengde Zhang,Integration of Visual Temporal Information and Textual Distribution Information for News Web Video Event Mining.,2016,46,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms46.html#ZhangWSP16,https://doi.org/10.1109/THMS.2015.2489681 +Drazen Brscic,Person Tracking in Large Public Spaces Using 3-D Range Sensors.,2013,43,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms43.html#BrscicKIM13,https://doi.org/10.1109/THMS.2013.2283945 +Joshua M. Peschel,On the Human-Machine Interaction of Unmanned Aerial System Mission Specialists.,2013,43,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms43.html#PeschelM13,https://doi.org/10.1109/TSMCC.2012.2220133 +Hailing Zhou,Recent Advances on Singlemodal and Multimodal Face Recognition: A Survey.,2014,44,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms44.html#ZhouMWCHN14,https://doi.org/10.1109/THMS.2014.2340578 +Alain Berthoz,Motion Scaling for High-Performance Driving Simulators.,2013,43,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms43.html#BerthozBBGFFHKMMNPRSSTVPVW13,https://doi.org/10.1109/TSMC.2013.2242885 +Alberto Greco,Force-Velocity Assessment of Caress-Like Stimuli Through the Electrodermal Activity Processing: Advantages of a Convex Optimization Approach.,2017,47,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms47.html#GrecoVNBCS17,https://doi.org/10.1109/THMS.2016.2586478 +Irene Rivas-Blanco,Smart Cable-Driven Camera Robotic Assistant.,2018,48,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms48.html#Rivas-BlancoLPG18,https://doi.org/10.1109/THMS.2017.2767286 +Long Chen,Partial Data Ear Recognition From One Sample per Person.,2016,46,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms46.html#ChenM16,https://doi.org/10.1109/THMS.2016.2598763 +Sarvesh Kolekar,Modeling Intradriver Steering Variability Based on Sensorimotor Control Theories.,2018,48,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms48.html#KolekarMA18,https://doi.org/10.1109/THMS.2018.2812620 +Cheng-Jhe Lin,Integrating Human Behavior Modeling and Data Mining Techniques to Predict Human Errors in Numerical Typing.,2015,45,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms45.html#LinWC15,https://doi.org/10.1109/THMS.2014.2357178 +Daniel Ortíz Morales,Path-Constrained Motion Analysis: An Algorithm to Understand Human Performance on Hydraulic Manipulators.,2015,45,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms45.html#MoralesHWFS15,https://doi.org/10.1109/THMS.2014.2366873 +Samuel B. Schorr,Tactor-Induced Skin Stretch as a Sensory Substitution Method in Teleoperated Palpation.,2015,45,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms45.html#SchorrQNPO15,https://doi.org/10.1109/THMS.2015.2463090 +Joost Ellerbroek,Experimental Evaluation of a Coplanar Airborne Separation Display.,2013,43,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms43.html#EllerbroekBPGM13,https://doi.org/10.1109/TSMC.2013.2238925 +Hyeongmook Lee,TunnelSlice: Freehand Subspace Acquisition Using an Egocentric Tunnel for Wearable Augmented Reality.,2017,47,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms47.html#LeeNW17,https://doi.org/10.1109/THMS.2016.2611821 +Joaquín Ballesteros,A Biomimetical Dynamic Window Approach to Navigation for Collaborative Control.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#BallesterosUVR17,https://doi.org/10.1109/THMS.2017.2700633 +Feng Zhou 0003,Prospect-Theoretic Modeling of Customer Affective-Cognitive Decisions Under Uncertainty for User Experience Design.,2014,44,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms44.html#ZhouJJ14,https://doi.org/10.1109/THMS.2014.2318704 +Fabrizio Lamberti,Using Semantics to Automatically Generate Speech Interfaces for Wearable Virtual and Augmented Reality Applications.,2017,47,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms47.html#LambertiMPPS17,https://doi.org/10.1109/THMS.2016.2573830 +Ana Garcia del Molino,Summarization of Egocentric Videos: A Comprehensive Survey.,2017,47,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms47.html#MolinoTLT17,https://doi.org/10.1109/THMS.2016.2623480 +Nandini Chakravorti,Design and Implementation of an Integrated Performance Monitoring Tool for Swimming to Extract Stroke Information at Real Time.,2013,43,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms43.html#ChakravortiSSCW13,https://doi.org/10.1109/TSMC.2012.2235428 +Emmanouil Skounakis,ATD: A Multiplatform for Semiautomatic 3-D Detection of Kidneys and Their Pathology in Real Time.,2014,44,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms44.html#SkounakisBBTMK14,https://doi.org/10.1109/THMS.2013.2290011 +Ge Peng,Continuous Authentication With Touch Behavioral Biometrics and Voice on Wearable Glasses.,2017,47,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms47.html#PengZNQYW17,https://doi.org/10.1109/THMS.2016.2623562 +Blaz Jakopin,An Unobtrusive Measurement Method for Assessing Physiological Response in Physical Human-Robot Interaction.,2017,47,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms47.html#JakopinMM17,https://doi.org/10.1109/THMS.2017.2681434 +Joshua M. Dudik,Dysphagia Screening: Contributions of Cervical Auscultation Signals and Modern Signal-Processing Techniques.,2015,45,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms45.html#DudikCS15,https://doi.org/10.1109/THMS.2015.2408615 +Shumei Zhang,Situation Awareness Inferred From Posture Transition and Location: Derived From Smartphone and Smart home Sensors.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#ZhangMZN17,https://doi.org/10.1109/THMS.2017.2693238 +Jonathan Currie,Eye Tracking the Visual Attention of Nurses Interpreting Simulated Vital Signs Scenarios: Mining Metrics to Discriminate Between Performance Level.,2018,48,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms48.html#CurrieBMBFP18,https://doi.org/10.1109/THMS.2017.2754880 +Ehsan Maleki,Increasing Crane Payload Swing by Shaping Human Operator Commands.,2014,44,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms44.html#MalekiSG14,https://doi.org/10.1109/THMS.2013.2289389 +Huan Zhao,Hand-in-Hand: A Communication-Enhancement Collaborative Virtual Reality System for Promoting Social Interaction in Children With Autism Spectrum Disorders.,2018,48,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms48.html#ZhaoSWWS18,https://doi.org/10.1109/THMS.2018.2791562 +Wenbing Zhao 0001,A Human-Centered Activity Tracking System: Toward a Healthier Workplace.,2017,47,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms47.html#0001LGFEREGNL17,https://doi.org/10.1109/THMS.2016.2611825 +Xiaoxiang Na,Game-Theoretic Modeling of the Steering Interaction Between a Human Driver and a Vehicle Collision Avoidance Controller.,2015,45,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms45.html#NaC15,https://doi.org/10.1109/THMS.2014.2363124 +Stefano Scheggi,Cooperative Navigation for Mixed Human-Robot Teams Using Haptic Feedback.,2017,47,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms47.html#ScheggiAP17,https://doi.org/10.1109/THMS.2016.2608936 +Changxi You,Nonlinear Driver Parameter Estimation and Driver Steering Behavior Analysis for ADAS Using Field Test Data.,2017,47,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms47.html#YouLT17,https://doi.org/10.1109/THMS.2017.2727547 +Kah Phooi Seng,Video Analytics for Customer Emotion and Satisfaction at Contact Centers.,2018,48,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms48.html#SengA18,https://doi.org/10.1109/THMS.2017.2695613 +Alessandro Filippeschi,Boat Dynamics and Force Rendering Models for the SPRINT System.,2013,43,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms43.html#FilippeschiR13,https://doi.org/10.1109/TSMC.2013.2284495 +Andrea Bianchi,PassBYOP: Bring Your Own Picture for Securing Graphical Passwords.,2016,46,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms46.html#BianchiOK16,https://doi.org/10.1109/THMS.2015.2487511 +Seungwoo Lee,Automatic Standby Power Management Using Usage Profiling and Prediction.,2013,43,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms43.html#LeeRCHC13,https://doi.org/10.1109/THMS.2013.2285921 +Hyukjae Jang,A System to Analyze Group Socializing Behaviors in Social Parties.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#JangCGKS17,https://doi.org/10.1109/THMS.2016.2634918 +Priyanka Chaurasia,Fusion of Random Walk and Discrete Fourier Spectrum Methods for Gait Recognition.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#ChaurasiaPCP17,https://doi.org/10.1109/THMS.2017.2706658 +Michael C. Dorneich,Interaction of Automation Visibility and Information Quality in Flight Deck Information Automation.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#DorneichDLRWDN17,https://doi.org/10.1109/THMS.2017.2717939 +Bo Tang 0011,Human Mobility Modeling for Robot-Assisted Evacuation in Complex Indoor Environments.,2016,46,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms46.html#TangJHG16,https://doi.org/10.1109/THMS.2016.2571269 +Nicholas R. Waytowich,Multiclass Steady-State Visual Evoked Potential Frequency Evaluation Using Chirp-Modulated Stimuli.,2016,46,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms46.html#WaytowichK16,https://doi.org/10.1109/THMS.2015.2513014 +Zhongmin Cai,Mitigating Behavioral Variability for Mouse Dynamics: A Dimensionality-Reduction-Based Approach.,2014,44,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms44.html#CaiSG14,https://doi.org/10.1109/THMS.2014.2302371 +Filippo Brizzi,Effects of Augmented Reality on the Performance of Teleoperated Industrial Assembly Tasks in a Robotic Embodiment.,2018,48,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms48.html#BrizziPGSAR18,https://doi.org/10.1109/THMS.2017.2782490 +Antonino Furnari,Recognizing Personal Locations From Egocentric Videos.,2017,47,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms47.html#FurnariFB17,https://doi.org/10.1109/THMS.2016.2612002 +Kentaro Takemura,Estimating 3-D Point-of-Regard in a Real Environment Using a Head-Mounted Eye-Tracking System.,2014,44,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms44.html#TakemuraTTO14,https://doi.org/10.1109/THMS.2014.2318324 +Paolo Rocchi,An Essay on the Origin of Software Evolution.,2014,44,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms44.html#Rocchi14,https://doi.org/10.1109/THMS.2014.2301825 +Laurence Likforman-Sulem,EMOTHAW: A Novel Database for Emotional State Recognition From Handwriting and Drawing.,2017,47,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms47.html#Likforman-Sulem17,https://doi.org/10.1109/THMS.2016.2635441 +Gerrit Niezen,A Human Operator Model for Medical Device Interaction Using Behavior-Based Hybrid Automata.,2016,46,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms46.html#NiezenE16,https://doi.org/10.1109/THMS.2015.2487509 +Nadine Marie Moacdieh,Using Eye Tracking to Detect the Effects of Clutter on Visual Search in Real Time.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#MoacdiehS17a,https://doi.org/10.1109/THMS.2017.2706666 +Yael Salzer,"Evaluation of an ""On-Thigh"" Vibrotactile Collision Avoidance Alerting Component in a Simulated Flight Mission.",2015,45,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms45.html#SalzerO15,https://doi.org/10.1109/THMS.2014.2364721 +Roel J. Kuiper,Evaluation of Haptic and Visual Cues for Repulsive or Attractive Guidance in Nonholonomic Steering Tasks.,2016,46,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms46.html#KuiperHKA16,https://doi.org/10.1109/THMS.2016.2561625 +Kurt Debattista,Subjective Evaluation of High-Fidelity Virtual Environments for Driving Simulations.,2018,48,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms48.html#DebattistaBHWC18,https://doi.org/10.1109/THMS.2017.2762632 +Jan Smisek,Neuromuscular-System-Based Tuning of a Haptic Shared Control Interface for UAV Teleoperation.,2017,47,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms47.html#SmisekSPAM17,https://doi.org/10.1109/THMS.2016.2616280 +Koray Ozcan,Autonomous Fall Detection With Wearable Cameras by Using Relative Entropy Distance Measure.,2017,47,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms47.html#OzcanVV17,https://doi.org/10.1109/THMS.2016.2620904 +George Adamides,Usability Guidelines for the Design of Robot Teleoperation: A Taxonomy.,2015,45,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms45.html#AdamidesCKXH15,https://doi.org/10.1109/THMS.2014.2371048 +Gabriel Rodrigues de Campos,Safety Verification Methods for Human-Driven Vehicles at Traffic Intersections: Optimal Driver-Adaptive Supervisory Control.,2018,48,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms48.html#CamposRC18,https://doi.org/10.1109/THMS.2017.2776205 +Jiwen Lu,Ordinary Preserving Manifold Analysis for Human Age and Head Pose Estimation.,2013,43,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms43.html#LuT13,https://doi.org/10.1109/TSMCC.2012.2192727 +Anuja Hariharan,Blended Emotion Detection for Decision Support.,2015,45,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms45.html#HariharanA15,https://doi.org/10.1109/THMS.2015.2418231 +Francesco Clemente,Humans Can Integrate Augmented Reality Feedback in Their Sensorimotor Control of a Robotic Hand.,2017,47,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms47.html#ClementeDLMFC17,https://doi.org/10.1109/THMS.2016.2611998 +Thomas Feix,The GRASP Taxonomy of Human Grasp Types.,2016,46,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms46.html#Feix0SDK16,https://doi.org/10.1109/THMS.2015.2470657 +Fredrick Ekman,Creating Appropriate Trust in Automated Vehicle Systems: A Framework for HMI Design.,2018,48,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms48.html#EkmanJS18,https://doi.org/10.1109/THMS.2017.2776209 +Dajun Wang,Risky Driver Recognition Based on Vehicle Speed Time Series.,2018,48,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms48.html#WangPLY18,https://doi.org/10.1109/THMS.2017.2776605 +Giuseppe Pirlo,Guest Editorial Special Issue on Drawing and Handwriting Processing for User-Centered Systems.,2017,47,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms47.html#PirloPA17,https://doi.org/10.1109/THMS.2017.2664358 +Bérénice Mettler,Mapping and Analysis of Human Guidance Performance From Trajectory Ensembles.,2013,43,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms43.html#MettlerK13,https://doi.org/10.1109/TSMCA.2012.2207110 +Jiangtao Wang,CAPFF: A Context-Aware Assistant for Paper Form Filling.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#WangWW17,https://doi.org/10.1109/THMS.2016.2586487 +Luan Nguyen,Real-Time Human Foot Motion Localization Algorithm With Dynamic Speed.,2016,46,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms46.html#NguyenL16,https://doi.org/10.1109/THMS.2016.2586741 +Anuradha Saha,EEG Analysis for Olfactory Perceptual-Ability Measurement Using a Recurrent Neural Classifier.,2014,44,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms44.html#SahaKCRN14,https://doi.org/10.1109/THMS.2014.2344003 +Yu Chen,Structure of Hand/Mouse Movements.,2015,45,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms45.html#ChenHG15,https://doi.org/10.1109/THMS.2015.2430872 +Jeffrey B. Flora,Improved Gender Classification Using Nonpathological Gait Kinematics in Full-Motion Video.,2015,45,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms45.html#FloraLBI15,https://doi.org/10.1109/THMS.2015.2398732 +Manabu Okawa,Text and User Generic Model for Writer Verification Using Combined Pen Pressure Information From Ink Intensity and Indented Writing on Paper.,2015,45,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms45.html#OkawaY15,https://doi.org/10.1109/THMS.2014.2380828 +Nicolas Regis,Formal Detection of Attentional Tunneling in Human Operator-Automation Interactions.,2014,44,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms44.html#RegisDRTPCT14,https://doi.org/10.1109/THMS.2014.2307258 +Gabriel Gelman,Example of a Complementary Use of Model Checking and Human Performance Simulation.,2014,44,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms44.html#GelmanFR14,https://doi.org/10.1109/THMS.2014.2331034 +Theodoros Theodoridis,Modeling Aggressive Behaviors With Evolutionary Taxonomers.,2013,43,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms43.html#TheodoridisH13,https://doi.org/10.1109/TSMC.2013.2252337 +Shuai Tao,Multiperson Locating and Their Soft Tracking in a Binary Infrared Sensor Network.,2015,45,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms45.html#TaoKPNT15,https://doi.org/10.1109/THMS.2014.2365466 +Jonathan Feng-Shun Lin,Movement Primitive Segmentation for Human Motion Modeling: A Framework for Analysis.,2016,46,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms46.html#LinKK16,https://doi.org/10.1109/THMS.2015.2493536 +Songzheng Song,Improved EGT-Based Robustness Analysis of Negotiation Strategies in Multiagent Systems via Model Checking.,2016,46,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms46.html#SongH00L016,https://doi.org/10.1109/THMS.2015.2429573 +Shaohe Lv,Qualitative Action Recognition by Wireless Radio Signals in Human-Machine Systems.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#LvLDWDZ17,https://doi.org/10.1109/THMS.2017.2693242 +Jaedong Lee,Effects of Visual Feedback on Out-of-Body Illusory Tactile Sensation When Interacting With Augmented Virtual Objects.,2017,47,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms47.html#LeeKK17,https://doi.org/10.1109/THMS.2016.2599492 +Radoslaw Niewiadomski,Automated Laughter Detection From Full-Body Movements.,2016,46,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms46.html#NiewiadomskiMVV16,https://doi.org/10.1109/THMS.2015.2480843 +Hakan Ezgi Kiziloz,A Closer Look at Pure-Text Human-Interaction Proofs.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#KizilozB17,https://doi.org/10.1109/THMS.2016.2634866 +Célia Martinie,Task Model-Based Systematic Analysis of Both System Failures and Human Errors.,2016,46,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms46.html#MartiniePFBFS16,https://doi.org/10.1109/THMS.2014.2365956 +Abolfazl Zaraki,Designing and Evaluating a Social Gaze-Control System for a Humanoid Robot.,2014,44,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms44.html#ZarakiMGR14,https://doi.org/10.1109/THMS.2014.2303083 +Jelena Jovanovic,Comprehension and Learning of Social Goals Through Visualization.,2015,45,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms45.html#JovanovicBG15,https://doi.org/10.1109/THMS.2015.2419083 +Yoonchang Sung,Hierarchical Sample-Based Joint Probabilistic Data Association Filter for Following Human Legs Using a Mobile Robot in a Cluttered Environment.,2016,46,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms46.html#SungC16,https://doi.org/10.1109/THMS.2015.2501282 +Athanasios Tsitsoulis,A Methodology for Extracting Standing Human Bodies From Single Images.,2015,45,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms45.html#TsitsoulisB15,https://doi.org/10.1109/THMS.2015.2398582 +Vittorio Fuccella,Novice and Expert Performance of KeyScretch: A Gesture-Based Text Entry Method for Touch-Screens.,2014,44,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms44.html#FuccellaRC14,https://doi.org/10.1109/THMS.2014.2314447 +Zhaodan Kong,Modeling Human Guidance Behavior Based on Patterns in Agent-Environment Interactions.,2013,43,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms43.html#KongM13,https://doi.org/10.1109/TSMC.2013.2262043 +Chin Hooi Tan,Application of Fuzzy Inference Rules to Early Semi-automatic Estimation of Activity Duration in Software Project Management.,2014,44,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms44.html#TanYINY14,https://doi.org/10.1109/THMS.2014.2320881 +Marc C. Canellas,Accuracy and Effort of Decision-Making Strategies With Incomplete Information: Implications for Decision Support System Design.,2015,45,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms45.html#CanellasFC15,https://doi.org/10.1109/THMS.2015.2420575 +Netta Gurari,Perception of Springs With Visual and Proprioceptive Motion Cues: Implications for Prosthetics.,2013,43,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms43.html#GurariKO13,https://doi.org/10.1109/TSMCA.2012.2221038 +Ellen J. Bass,Editorial IEEE Transactions on Human-Machine Systems: Year in Review for 2015.,2016,46,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms46.html#Bass16,https://doi.org/10.1109/THMS.2015.2513978 +Lichuan Wang,Intelligent Fashion Recommender System: Fuzzy Logic in Personalized Garment Design.,2015,45,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms45.html#WangZKC15,https://doi.org/10.1109/THMS.2014.2364398 +Yuan Chi,Binary Data Embedding Framework for Multiclass Classification.,2015,45,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms45.html#ChiGGR15,https://doi.org/10.1109/THMS.2015.2404913 +Vasant Srinivasan,Evaluation of Head Gaze Loosely Synchronized With Real-Time Synthetic Speech for Social Robots.,2014,44,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms44.html#SrinivasanBM14,https://doi.org/10.1109/THMS.2014.2342035 +Jung-Min Pak,Accurate and Reliable Human Localization Using Composite Particle/FIR Filtering.,2017,47,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms47.html#PakAS0L17,https://doi.org/10.1109/THMS.2016.2611826 +Nicholas Paperno,A Predictive Model for Use of an Assistive Robotic Manipulator: Human Factors Versus Performance in Pick-and-Place/Retrieval Tasks.,2016,46,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms46.html#PapernoRMSB16,https://doi.org/10.1109/THMS.2016.2604366 +Baoding Zhou,Activity Sequence-Based Indoor Pedestrian Localization Using Smartphones.,2015,45,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms45.html#ZhouLMTZ15,https://doi.org/10.1109/THMS.2014.2368092 +Laura Sbernini,Sensory-Glove-Based Open Surgery Skill Evaluation.,2018,48,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms48.html#SberniniQRLGS18,https://doi.org/10.1109/THMS.2017.2776603 +Li Zheng 0001,Data Mining Meets the Needs of Disaster Information Management.,2013,43,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms43.html#ZhengSTZLLC13,https://doi.org/10.1109/THMS.2013.2281762 +Andreas Riener,Modular Simulation-Based Physical and Emotional Assessment of Ambient Intelligence in Traffic.,2014,44,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms44.html#RienerFMMRRZ14,https://doi.org/10.1109/THMS.2014.2302389 +Stefanos Doltsinis,A Symbiotic Human-Machine Learning Approach for Production Ramp-up.,2018,48,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms48.html#DoltsinisFL18,https://doi.org/10.1109/THMS.2017.2717885 +Shuchisnigdha Deb,Pedestrians' Receptivity Toward Fully Automated Vehicles: Research Review and Roadmap for Future Research.,2018,48,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms48.html#DebRSG18,https://doi.org/10.1109/THMS.2018.2799523 +Michael Flad,Cooperative Shared Control Driver Assistance Systems Based on Motion Primitives and Differential Games.,2017,47,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms47.html#FladFH17,https://doi.org/10.1109/THMS.2017.2700435 +Jie Wan 0001,Managing Wandering Risk in People With Dementia.,2015,45,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms45.html#WanBOO15,https://doi.org/10.1109/THMS.2015.2453421 +Markus Wilde,Effects of Multivantage Point Systems on the Teleoperation of Spacecraft Docking.,2014,44,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms44.html#WildeCF14,https://doi.org/10.1109/THMS.2013.2295298 +Mehdi Saffarian,Enhancing Driver Car-Following Performance with a Distance and Acceleration Display.,2013,43,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms43.html#SaffarianWH13,https://doi.org/10.1109/TSMCA.2012.2207105 +Jennifer A. Mindock,Contributing Factor Map: A Taxonomy of Influences on Human Performance and Health in Space.,2014,44,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms44.html#MindockK14,https://doi.org/10.1109/THMS.2014.2328971 +David C. Lin,Assessing the Perception of Human-Like Mechanical Impedance for Robotic Systems.,2013,43,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms43.html#LinGV13,https://doi.org/10.1109/TSMC.2013.2277923 +Ju Cheng Yang,Two-Stage Enhancement Scheme for Low-Quality Fingerprint Images by Learning From the Images.,2013,43,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms43.html#YangXV13,https://doi.org/10.1109/TSMCC.2011.2174049 +Nathaniel Rossol,A Multisensor Technique for Gesture Recognition Through Intelligent Skeletal Pose Analysis.,2016,46,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms46.html#RossolCB16,https://doi.org/10.1109/THMS.2015.2467212 +Farshid Hajati,Dynamic Texture Comparison Using Derivative Sparse Representation: Application to Video-Based Face Recognition.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#HajatiTGGM17,https://doi.org/10.1109/THMS.2017.2681425 +Rencheng Zheng,Evaluation of Sternocleidomastoid Muscle Activity of a Passenger in Response to a Car's Lateral Acceleration While Slalom Driving.,2013,43,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms43.html#ZhengNOOHS13,https://doi.org/10.1109/TSMC.2013.2258908 +Chao Shen 0001,MouseIdentity: Modeling Mouse-Interaction Behavior for a User Verification System.,2016,46,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms46.html#ShenCLGM16,https://doi.org/10.1109/THMS.2016.2558623 +Hao Zhang 0011,Fuzzy Temporal Segmentation and Probabilistic Recognition of Continuous Human Daily Activities.,2015,45,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms45.html#ZhangZP15,https://doi.org/10.1109/THMS.2015.2443037 +Amin Nourmohammadi,A Survey on Unmanned Aerial Vehicle Remote Control Using Brain-Computer Interface.,2018,48,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms48.html#NourmohammadiJZ18,https://doi.org/10.1109/THMS.2018.2830647 +Matthew L. Bolton,Framework to Support Scenario Development for Human-Centered Alerting System Evaluation.,2013,43,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms43.html#BoltonGB13,https://doi.org/10.1109/THMS.2013.2283399 +Tony Tung,Multiparty Interaction Understanding Using Smart Multimodal Digital Signage.,2014,44,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms44.html#TungGKM14,https://doi.org/10.1109/THMS.2014.2326873 +Paul Yanik,A Gesture Learning Interface for Simulated Robot Path Shaping With a Human Teacher.,2014,44,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms44.html#YanikMMTBGW14,https://doi.org/10.1109/TSMC.2013.2291714 +Shuhei Asano,Vibrotactile Stimulation to Increase and Decrease Texture Roughness.,2015,45,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms45.html#AsanoOY15,https://doi.org/10.1109/THMS.2014.2376519 +Tomas Skripcak,Toward Nonconventional Human-Machine Interfaces for Supervisory Plant Process Monitoring.,2013,43,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms43.html#SkripcakTKS13,https://doi.org/10.1109/THMS.2013.2279006 +Manida Swangnetr,Emotional State Classification in Patient-Robot Interaction Using Wavelet Analysis and Statistics-Based Feature Selection.,2013,43,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms43.html#SwangnetrK13,https://doi.org/10.1109/TSMCA.2012.2210408 +Christopher Turner 0001,Discrete Event Simulation and Virtual Reality Use in Industry: New Opportunities and Future Trends.,2016,46,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms46.html#TurnerHOT16,https://doi.org/10.1109/THMS.2016.2596099 +Diane Cleij,Continuous Subjective Rating of Perceived Motion Incongruence During Driving Simulation.,2018,48,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms48.html#CleijVPPMB18,https://doi.org/10.1109/THMS.2017.2717884 +Stefano Burigat,Mobile Three-Dimensional Maps for Wayfinding in Large and Complex Buildings: Empirical Comparison of First-Person Versus Third-Person Perspective.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#BurigatCS17,https://doi.org/10.1109/THMS.2017.2693684 +Changbo Wang,SentiView: Sentiment Analysis and Visualization for Internet Popular Topics.,2013,43,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms43.html#WangXLXZZ13,https://doi.org/10.1109/THMS.2013.2285047 +Meng Li,A Formal Machine-Learning Approach to Generating Human-Machine Interfaces From Task Models.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#LiWZB17,https://doi.org/10.1109/THMS.2017.2700630 +Longbiao Chen,Fine-Grained Urban Event Detection and Characterization Based on Tensor Cofactorization.,2017,47,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms47.html#ChenJYZP17,https://doi.org/10.1109/THMS.2016.2596103 +Haochao Li,Wi-Counter: Smartphone-Based People Counter Using Crowdsourced Wi-Fi Signal Data.,2015,45,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms45.html#LiCGXWN15,https://doi.org/10.1109/THMS.2015.2401391 +Yi-Hung Hsieh,Motion Guidance for a Passive Robot Walking Helper via User's Applied Hand Forces.,2016,46,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms46.html#HsiehHYKA16,https://doi.org/10.1109/THMS.2016.2604363 +Pichao Wang,Action Recognition From Depth Maps Using Deep Convolutional Neural Networks.,2016,46,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms46.html#WangLGZTO16,https://doi.org/10.1109/THMS.2015.2504550 +Sharon Meth,Considering Factors of and Knowledge About Patients in Handover Assessment.,2013,43,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms43.html#MethBH13,https://doi.org/10.1109/THMS.2013.2274595 +Tommaso Magherini,Using Temporal Logic and Model Checking in Automated Recognition of Human Activities for Ambient-Assisted Living.,2013,43,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms43.html#MagheriniFNV13,https://doi.org/10.1109/TSMC.2013.2283661 +Angelika Garz,A User-Centered Segmentation Method for Complex Historical Manuscripts Based on Document Graphs.,2017,47,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms47.html#GarzSFI17,https://doi.org/10.1109/THMS.2016.2634920 +Huimin Wu,Recognition and Detection of Two-Person Interactive Actions Using Automatically Selected Skeleton Features.,2018,48,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms48.html#WuSXJSS18,https://doi.org/10.1109/THMS.2017.2776211 +Noor Tubaiz,Glove-Based Continuous Arabic Sign Language Recognition in User-Dependent Mode.,2015,45,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms45.html#TubaizSA15,https://doi.org/10.1109/THMS.2015.2406692 +Wai Lam Hoo,Zero-Shot Object Recognition System Based on Topic Model.,2015,45,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms45.html#HooC15,https://doi.org/10.1109/THMS.2014.2358649 +Reo Matsumura,Who is Interacting With me? Identification of an Interacting Person Through Playful Interaction With a Small Robot.,2014,44,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms44.html#MatsumuraSMIH14,https://doi.org/10.1109/THMS.2013.2296872 +Joseph Rafferty,From Activity Recognition to Intention Recognition for Assisted Living Within Smart Homes.,2017,47,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms47.html#RaffertyN0C17,https://doi.org/10.1109/THMS.2016.2641388 +Jianhua Zhang 0004,Recognition of Mental Workload Levels Under Complex Human-Machine Collaboration by Using Physiological Features and Adaptive Support Vector Machines.,2015,45,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms45.html#ZhangYW15,https://doi.org/10.1109/THMS.2014.2366914 +Hua Peng,Robotic Dance in Social Robotics - A Taxonomy.,2015,45,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms45.html#PengZHCL15,https://doi.org/10.1109/THMS.2015.2393558 +Junaid Ahmed Ansari,An Open Voice Command Interface Kit.,2016,46,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms46.html#AnsariSB16,https://doi.org/10.1109/THMS.2015.2476458 +Feng Zhang 0006,iLeg - A Lower Limb Rehabilitation Robot: A Proof of Concept.,2016,46,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms46.html#ZhangHCWCHPW16,https://doi.org/10.1109/THMS.2016.2562510 +João Quintas,Information Model and Architecture Specification for Context Awareness Interaction Decision Support in Cyber-Physical Human-Machine Systems.,2017,47,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms47.html#QuintasMD17,https://doi.org/10.1109/THMS.2016.2634923 +Uros Krcadinac,Textual Affect Communication and Evocation Using Abstract Generative Visuals.,2016,46,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms46.html#KrcadinacJDP16,https://doi.org/10.1109/THMS.2015.2504081 +Robert Keefer,The Development and Evaluation of an Eyes-Free Interaction Model for Mobile Reading Devices.,2013,43,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms43.html#KeeferLB13,https://doi.org/10.1109/TSMCA.2012.2210413 +Zheng Wang,The Effect of a Haptic Guidance Steering System on Fatigue-Related Driver Behavior.,2017,47,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms47.html#WangZKSN17,https://doi.org/10.1109/THMS.2017.2693230 +Joshua Harrison,Cognitive Workload and Learning Assessment During the Implementation of a Next-Generation Air Traffic Control Technology Using Functional Near-Infrared Spectroscopy.,2014,44,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms44.html#HarrisonIAWHAWSBO14,https://doi.org/10.1109/THMS.2014.2319822 +Xiangrui Zeng,A Stochastic Driver Pedal Behavior Model Incorporating Road Information.,2017,47,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms47.html#ZengW17,https://doi.org/10.1109/THMS.2017.2674301 +Zhiyuan Lu,A Hand Gesture Recognition Framework and Wearable Gesture-Based Interaction Prototype for Mobile Devices.,2014,44,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms44.html#LuCLZZ14,https://doi.org/10.1109/THMS.2014.2302794 +Gennaro Costagliola,Handwriting on Smartwatches: An Empirical Investigation.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#CostagliolaRF17,https://doi.org/10.1109/THMS.2017.2754938 +Xin Liu 0011,Efficient Human Motion Retrieval via Temporal Adjacent Bag of Words and Discriminative Neighborhood Preserving Dictionary Learning.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#LiuHPCT17,https://doi.org/10.1109/THMS.2017.2675959 +Yuichi Kurita,Unpowered Sensorimotor-Enhancing Suit Reduces Muscle Activation and Improves Force Perception.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#KuritaSTST17,https://doi.org/10.1109/THMS.2017.2700437 +David Mendonça,Linking Team Composition to Team Performance: An Application to Postdisaster Debris Removal Operations.,2014,44,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms44.html#MendoncaBG14,https://doi.org/10.1109/THMS.2014.2306198 +Geb W. Thomas,The Validity and Reliability of a Hybrid Reality Simulator for Wire Navigation in Orthopedic Surgery.,2015,45,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms45.html#ThomasJKA15,https://doi.org/10.1109/THMS.2014.2339324 +Zhan Fan Quek,Augmentation Of Stiffness Perception With a 1-Degree-of-Freedom Skin Stretch Device.,2014,44,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms44.html#QuekSNOP14,https://doi.org/10.1109/THMS.2014.2348865 +Ransalu Senanayake,Targeted-Tracking With Pointing Devices.,2015,45,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms45.html#SenanayakeGH15,https://doi.org/10.1109/THMS.2015.2408260 +Wei Fu 0005,Modeling Human Difference Threshold in Perceiving Mechanical Properties From Force.,2018,48,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms48.html#FuLPM18,https://doi.org/10.1109/THMS.2018.2844212 +Chen Chen 0001,Improving Human Action Recognition Using Fusion of Depth Camera and Inertial Sensors.,2015,45,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms45.html#ChenJK15,https://doi.org/10.1109/THMS.2014.2362520 +Salvatore Gaglio,Human Activity Recognition Process Using 3-D Posture Data.,2015,45,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms45.html#GaglioRM15,https://doi.org/10.1109/THMS.2014.2377111 +Ruili Geng,Improving Web Navigation Usability by Comparing Actual and Anticipated Usage.,2015,45,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms45.html#GengT15,https://doi.org/10.1109/THMS.2014.2363125 +Jessie Y. C. Chen,Human-Agent Teaming for Multirobot Control: A Review of Human Factors Issues.,2014,44,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms44.html#ChenB14,https://doi.org/10.1109/THMS.2013.2293535 +Jianhua Zhang 0004,Nonlinear Dynamic Classification of Momentary Mental Workload Using Physiological Features and NARX-Model-Based Least-Squares Support Vector Machines.,2017,47,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms47.html#ZhangYW17,https://doi.org/10.1109/THMS.2017.2700631 +Neville A. Stanton,Investigating Performance of Command Team Structures in the NATO Problem-Approach Space.,2015,45,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms45.html#StantonRHS15,https://doi.org/10.1109/THMS.2015.2437993 +Christina F. Rusnock,Simulation-Based Evaluation of Adaptive Automation Revoking Strategies on Cognitive Workload and Situation Awareness.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#RusnockG17,https://doi.org/10.1109/THMS.2016.2618004 +Ilana Nisky,Analytical Study of Perceptual and Motor Transparency in Bilateral Teleoperation.,2013,43,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms43.html#NiskyMK13,https://doi.org/10.1109/TSMC.2013.2284487 +Yuichi Saito,Driver Assistance System With a Dual Control Scheme: Effectiveness of Identifying Driver Drowsiness and Preventing Lane Departure Accidents.,2016,46,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms46.html#SaitoII16,https://doi.org/10.1109/THMS.2016.2549032 +Mark A. Fehlberg,Improved Active Handrest Performance Through Use of Virtual Fixtures.,2014,44,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms44.html#FehlbergNDP14,https://doi.org/10.1109/THMS.2014.2321531 +A. Carrasco,PeMMAS: A Tool for Studying the Performance of Multiagent Systems Developed in JADE.,2014,44,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms44.html#CarrascoHRSOE14,https://doi.org/10.1109/THMS.2014.2302993 +Cao Xiao,A Patient-Specific Model for Predicting Tibia Soft Tissue Insertions From Bony Outlines Using a Spatial Structure Supervised Learning Framework.,2016,46,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms46.html#XiaoWZZC16,https://doi.org/10.1109/THMS.2016.2545924 +Melissa Mae White,Usability Comparison of Conventional Direct Control Versus Pattern Recognition Control of Transradial Prostheses.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#WhiteZWZZHK17,https://doi.org/10.1109/THMS.2017.2759762 +Kalyanam Krishnamoorthy,Optimal Human-Machine Teaming for a Sequential Inspection Operation.,2016,46,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms46.html#KrishnamoorthyP16,https://doi.org/10.1109/THMS.2016.2519603 +Sofiane Medjkoune,Combining Speech and Handwriting Modalities for Mathematical Expression Recognition.,2017,47,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms47.html#MedjkouneMPV17,https://doi.org/10.1109/THMS.2017.2647850 +Sean W. Kortschot,Efficacy of Group-View Displays in Nuclear Control Rooms.,2018,48,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms48.html#KortschotJW18,https://doi.org/10.1109/THMS.2018.2836798 +Viet Cuong Trinh,Discovering Contexts from Observed Human Performance.,2013,43,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms43.html#TrinhG13,https://doi.org/10.1109/TSMC.2013.2262272 +Feng Li,Deep Models for Engagement Assessment With Scarce Label Information.,2017,47,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms47.html#LiZWXSWML17,https://doi.org/10.1109/THMS.2016.2608933 +Kenneth Y. Goldberg,Two Large Open-Access Datasets for Fitts' Law of Human Motion and a Succinct Derivation of the Square-Root Variant.,2015,45,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms45.html#GoldbergFA15,https://doi.org/10.1109/THMS.2014.2360281 +Shawn Eastwood,Biometric-Enabled Authentication Machines: A Survey of Open-Set Real-World Applications.,2016,46,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms46.html#EastwoodSYDG16,https://doi.org/10.1109/THMS.2015.2412944 +Leonard A. Breslow,Dynamic Operator Overload: A Model for Predicting Workload During Supervisory Control.,2014,44,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms44.html#BreslowGMT14,https://doi.org/10.1109/TSMC.2013.2293317 +Andrew J. Abbate,A Formal Task-Analytic Approach to Medical Device Alarm Troubleshooting Instructions.,2016,46,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms46.html#AbbateTB16,https://doi.org/10.1109/THMS.2015.2494462 +Boris Delibasic,Mining Skier Transportation Patterns From Ski Resort Lift Usage Data.,2017,47,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms47.html#DelibasicMDO17,https://doi.org/10.1109/THMS.2016.2633438 +Ching-Hu Lu,Hybrid User-Assisted Incremental Model Adaptation for Activity Recognition in a Dynamic Smart-Home Environment.,2013,43,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms43.html#LuHCF13,https://doi.org/10.1109/TSMC.2013.2281586 +Ko Watanabe,A Progression and Retrogression Mathematical Model for the Motor Learning Process.,2016,46,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms46.html#WatanabeTKW16,https://doi.org/10.1109/THMS.2015.2469150 +Ramon Blanco-Gonzalo,The Mobile Pass Project: A User Interaction Evaluation.,2018,48,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms48.html#Blanco-GonzaloS18,https://doi.org/10.1109/THMS.2018.2791571 +Bin Guo,Enhancing Memory Recall via an Intelligent Social Contact Management System.,2014,44,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms44.html#GuoZYYZ14,https://doi.org/10.1109/THMS.2013.2294332 +Marcos Martinez-Diaz,Graphical Password-Based User Authentication With Free-Form Doodles.,2016,46,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms46.html#Martinez-DiazFG16,https://doi.org/10.1109/THMS.2015.2504101 +Aida Erfanian,Framework of Multiuser Satisfaction for Assessing Interaction Models Within Collaborative Virtual Environments.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#ErfanianHZ17,https://doi.org/10.1109/THMS.2017.2700431 +Linping Chan,Application of Adaptive Controllers in Teleoperation Systems: A Survey.,2014,44,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms44.html#ChanNS14,https://doi.org/10.1109/THMS.2014.2303983 +Kugamoorthy Gajananan,An Experimental Space for Conducting Controlled Driving Behavior Studies based on a Multiuser Networked 3D Virtual Environment and the Scenario Markup Language.,2013,43,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms43.html#GajanananNMNP13,https://doi.org/10.1109/TSMC.2013.2265876 +Liming Chen 0001,An Ontology-Based Hybrid Approach to Activity Modeling for Smart Homes.,2014,44,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms44.html#ChenNO14,https://doi.org/10.1109/THMS.2013.2293714 +Kyle D. Feuz,Automated Detection of Activity Transitions for Prompting.,2015,45,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms45.html#FeuzCRRS15,https://doi.org/10.1109/THMS.2014.2362529 +Agostino Accardo,The Influence of the Spatio-Temporal Terzi Treatment on the Kinematics of Cursive Writing of Dysgraphic Subjects.,2017,47,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms47.html#AccardoCP17,https://doi.org/10.1109/THMS.2017.2658445 +Yan Sun 0004,Conflict Detection Scheme Based on Formal Rule Model for Smart Building Systems.,2015,45,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms45.html#SunWLL15,https://doi.org/10.1109/THMS.2014.2364613 +John P. Shewchuk,Simulation Modeling and Ergonomic Assessment of Complex Multiworker Physical Processes.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#ShewchukNKS17,https://doi.org/10.1109/THMS.2016.2628771 +Matthew L. Bolton,Automatically Generating Specification Properties From Task Models for the Formal Verification of Human-Automation Interaction.,2014,44,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms44.html#BoltonJPT14,https://doi.org/10.1109/THMS.2014.2329476 +Andreas Kolling,Human Interaction With Robot Swarms: A Survey.,2016,46,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms46.html#KollingWCS016,https://doi.org/10.1109/THMS.2015.2480801 +Kaveh Bastani,Online Classification and Sensor Selection Optimization With Applications to Human Material Handling Tasks Using Wearable Sensing Technologies.,2016,46,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms46.html#BastaniKKNH16,https://doi.org/10.1109/THMS.2016.2537747 +Edwin Peter Walsh,Assistive Pointing Device Based on a Head-Mounted Camera.,2017,47,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms47.html#WalshDS17,https://doi.org/10.1109/THMS.2017.2649884 +Xiaoxiang Na,Application of Open-Loop Stackelberg Equilibrium to Modeling a Driver's Interaction with Vehicle Active Steering Control in Obstacle Avoidance.,2017,47,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms47.html#NaC17,https://doi.org/10.1109/THMS.2017.2700541 +Dorothea Pantförder,Supporting Operators in Process Control Tasks - Benefits of Interactive 3-D Visualization.,2016,46,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms46.html#PantforderVGS16,https://doi.org/10.1109/THMS.2016.2599497 +Samleo L. Joseph,Being Aware of the World: Toward Using Social Media to Support the Blind With Navigation.,2015,45,IEEE Trans. Human-Machine Systems,3,db/journals/thms/thms45.html#JosephXZCNRMS15,https://doi.org/10.1109/THMS.2014.2382582 +Seth Polsley,SketchSeeker: Finding Similar Sketches.,2017,47,IEEE Trans. Human-Machine Systems,2,db/journals/thms/thms47.html#PolsleyRH17,https://doi.org/10.1109/THMS.2017.2649684 +Mattia Bruschetta,A Motion Cueing Algorithm With Look-Ahead and Driver Characterization: Application to Vertical Car Dynamics.,2018,48,IEEE Trans. Human-Machine Systems,1,db/journals/thms/thms48.html#BruschettaCBM18,https://doi.org/10.1109/THMS.2017.2776207 +Ching-Hu Lu,IoT-Enabled Adaptive Context-Aware and Playful Cyber-Physical System for Everyday Energy Savings.,2018,48,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms48.html#Lu18,https://doi.org/10.1109/THMS.2018.2844119 +Xiangfeng Luo,Measuring Algebraic Complexity of Text Understanding Based on Human Concept Learning.,2014,44,IEEE Trans. Human-Machine Systems,5,db/journals/thms/thms44.html#LuoZLWL14,https://doi.org/10.1109/THMS.2014.2329874 +S. Ali Etemad,Expert-Driven Perceptual Features for Modeling Style and Affect in Human Motion.,2016,46,IEEE Trans. Human-Machine Systems,4,db/journals/thms/thms46.html#EtemadA16,https://doi.org/10.1109/THMS.2016.2537760 +Tommaso Lisini Baldi,GESTO: A Glove for Enhanced Sensing and Touching Based on Inertial and Magnetic Sensors for Hand Tracking and Cutaneous Feedback.,2017,47,IEEE Trans. Human-Machine Systems,6,db/journals/thms/thms47.html#BaldiSMMP17,https://doi.org/10.1109/THMS.2017.2720667 +Yang Liu 0013,Spectral Watermarking for Parameterized Surfaces.,2012,7,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs7.html#LiuPG12,https://doi.org/10.1109/TIFS.2012.2204251 +George Tzimiropoulos,Active Orientation Models for Face Alignment In-the-Wild.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#TzimiropoulosAZP14,https://doi.org/10.1109/TIFS.2014.2361018 +Xinyi Huang,Preserving Transparency and Accountability in Optimistic Fair Exchange of Digital Signatures.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#HuangMSWZD11,https://doi.org/10.1109/TIFS.2011.2109952 +Vanga Odelu,A Secure Biometrics-Based Multi-Server Authentication Protocol Using Smart Cards.,2015,10,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs10.html#OdeluDG15,https://doi.org/10.1109/TIFS.2015.2439964 +Michael E. Schuckers,A parametric correlation framework for the statistical evaluation and estimation of biometric-based classification performance in a single environment.,2009,4,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs4.html#Schuckers09,https://doi.org/10.1109/TIFS.2008.2012206 +Hao Yan,A Novel Efficient Remote Data Possession Checking Protocol in Cloud Storage.,2017,12,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs12.html#YanLHZ17,https://doi.org/10.1109/TIFS.2016.2601070 +Qing Yang 0005,On Inferring Browsing Activity on Smartphones via USB Power Analysis Side-Channel.,2017,12,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs12.html#YangGZFB17,https://doi.org/10.1109/TIFS.2016.2639446 +Javier Galbally,A New Multimodal Approach for Password Strength Estimation - Part I: Theory and Algorithms.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#GalballyCS17,https://doi.org/10.1109/TIFS.2016.2636092 +Beibei Li,DDOA: A Dirichlet-Based Detection Scheme for Opportunistic Attacks in Smart Grid Cyber-Physical System.,2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#LiLWC16,https://doi.org/10.1109/TIFS.2016.2576898 +Cong Liu 0008,Kernelized Neighborhood Preserving Hashing for Social-Network-Oriented Digital Fingerprints.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#LiuLZYWFO14,https://doi.org/10.1109/TIFS.2014.2360583 +Aijiao Cui,Ultra-Low Overhead Dynamic Watermarking on Scan Design for Hard IP Protection.,2015,10,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs10.html#CuiQZ15,https://doi.org/10.1109/TIFS.2015.2455338 +Hae Jong Seo,Face Verification Using the LARK Representation.,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#SeoM11,https://doi.org/10.1109/TIFS.2011.2159205 +Pinghui Wang,A New Sketch Method for Measuring Host Connection Degree Distribution.,2014,9,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs9.html#WangGZTQ14,https://doi.org/10.1109/TIFS.2014.2312544 +Jaroslav Sedenka,Secure Outsourced Biometric Authentication With Performance Evaluation on Smartphones.,2015,10,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs10.html#sedenkaGGB15,https://doi.org/10.1109/TIFS.2014.2375571 +Xingliang Huang,Statistically Robust Detection of Multiplicative Spread-Spectrum Watermarks.,2007,2,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs2.html#HuangZ07,https://doi.org/10.1109/TIFS.2006.890309 +Qingyu Yang,On Optimal PMU Placement-Based Defense Against Data Integrity Attacks in Smart Grid.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#YangAM0Y017,https://doi.org/10.1109/TIFS.2017.2686367 +Xiaoyong Li 0003,Fast and Parallel Trust Computing Scheme Based on Big Data Analysis for Collaboration Cloud Service.,2018,13,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs13.html#0003YMY18,https://doi.org/10.1109/TIFS.2018.2806925 +Corey Holland,Complex Eye Movement Pattern Biometrics: The Effects of Environment and Stimulus.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#HollandK13,https://doi.org/10.1109/TIFS.2013.2285884 +Andrey Garnaev,Bargaining Over the Fair Trade-Off Between Secrecy and Throughput in OFDM Communications.,2017,12,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs12.html#GarnaevT17,https://doi.org/10.1109/TIFS.2016.2611486 +Wenming Zheng,Fast algorithm for updating the discriminant vectors of dual-space LDA.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#ZhengT09,https://doi.org/10.1109/TIFS.2009.2025844 +Si-Hyeon Lee,Covert Communication With Channel-State Information at the Transmitter.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#LeeWKW18,https://doi.org/10.1109/TIFS.2018.2818650 +Gayathri Mahalingam,Investigating the Periocular-Based Face Recognition Across Gender Transformation.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#MahalingamRA14,https://doi.org/10.1109/TIFS.2014.2361479 +Yong Xiang 0001,A Dual-Channel Time-Spread Echo Method for Audio Watermarking.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#XiangNPZY12,https://doi.org/10.1109/TIFS.2011.2173678 +Yinxing Xue,Auditing Anti-Malware Tools by Evolving Android Malware and Dynamic Loading Technique.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#XueM0TC0Z17,https://doi.org/10.1109/TIFS.2017.2661723 +Adam Czajka,Recognition of Image-Orientation-Based Iris Spoofing.,2017,12,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs12.html#CzajkaBKV17,https://doi.org/10.1109/TIFS.2017.2701332 +Unsang Park,Periocular Biometrics in the Visible Spectrum.,2011,6,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs6.html#ParkJRJ11,https://doi.org/10.1109/TIFS.2010.2096810 +Ming Fan,DAPASA: Detecting Android Piggybacked Apps Through Sensitive Subgraph Analysis.,2017,12,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs12.html#FanLWLTL17,https://doi.org/10.1109/TIFS.2017.2687880 +Emanuele Maiorana,On the Permanence of EEG Signals for Biometric Recognition.,2016,11,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs11.html#MaioranaRC16,https://doi.org/10.1109/TIFS.2015.2481870 +Maochao Xu,Modeling and Predicting Cyber Hacking Breaches.,2018,13,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs13.html#XuSBX18,https://doi.org/10.1109/TIFS.2018.2834227 +Vladimir I. Ivanov,Authentication of Swipe Fingerprint Scanners.,2017,12,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs12.html#IvanovB17,https://doi.org/10.1109/TIFS.2017.2702592 +Haibin Yan,Discriminative Multimetric Learning for Kinship Verification.,2014,9,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs9.html#YanLDZ14,https://doi.org/10.1109/TIFS.2014.2327757 +Jingyu Hua,A Geo-Indistinguishable Location Perturbation Mechanism for Location-Based Services Supporting Frequent Queries.,2018,13,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs13.html#HuaTXZ18,https://doi.org/10.1109/TIFS.2017.2779402 +Hugo Proença,Iris Biometrics: Indexing and Retrieving Heavily Degraded Data.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#Proenca13,https://doi.org/10.1109/TIFS.2013.2283458 +Jiangshan Yu,DECIM: Detecting Endpoint Compromise In Messaging.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#YuRC18,https://doi.org/10.1109/TIFS.2017.2738609 +Dajiang Chen,SmokeGrenade: An Efficient Key Generation Protocol With Artificial Interference.,2013,8,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs8.html#ChenQMYQW13,https://doi.org/10.1109/TIFS.2013.2278834 +Rajendra S. Katti,On the Security of Key-Based Interval Splitting Arithmetic Coding With Respect to Message Indistinguishability.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#KattiV12,https://doi.org/10.1109/TIFS.2012.2187514 +Baodong Qin,Attribute-Based Encryption With Efficient Verifiable Outsourced Decryption.,2015,10,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs10.html#QinDLM15,https://doi.org/10.1109/TIFS.2015.2410137 +Shaza Zeitouni,Remanence Decay Side-Channel: The PUF Case.,2016,11,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs11.html#ZeitouniOWKS16,https://doi.org/10.1109/TIFS.2015.2512534 +Do-hyung Kim 0002,Security of Cached Content in NDN.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#KimBVY17,https://doi.org/10.1109/TIFS.2017.2725229 +Karthik Nandakumar,Fingerprint-Based Fuzzy Vault: Implementation and Performance.,2007,2,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs2.html#NandakumarJP07,https://doi.org/10.1109/TIFS.2007.908165 +Faraz Ahmad Khan,Dissimilarity Gaussian Mixture Models for Efficient Offline Handwritten Text-Independent Identification Using SIFT and RootSIFT Descriptors.,2019,14,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs14.html#KhanKTB19,https://doi.org/10.1109/TIFS.2018.2850011 +Sutharshan Rajasegarar,Centered hyperspherical and hyperellipsoidal one-class support vector machines for anomaly detection in sensor networks.,2010,5,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs5.html#RajasegararLBP10,https://doi.org/10.1109/TIFS.2010.2051543 +Britton Quist,Optimal Channel Estimation in Beamformed Systems for Common-Randomness-Based Secret Key Establishment.,2013,8,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs8.html#QuistJ13,https://doi.org/10.1109/TIFS.2013.2265676 +Seong Ho Chae,Enhanced Secrecy in Stochastic Wireless Networks: Artificial Noise With Secrecy Protected Zone.,2014,9,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs9.html#ChaeCLQ14,https://doi.org/10.1109/TIFS.2014.2341453 +Farinaz Koushanfar,Provably Secure Active IC Metering Techniques for Piracy Avoidance and Digital Rights Management.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#Koushanfar12,https://doi.org/10.1109/TIFS.2011.2163307 +Manar Mohamed,SMASheD: Sniffing and Manipulating Android Sensor Data for Offensive Purposes.,2017,12,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs12.html#MohamedSS17,https://doi.org/10.1109/TIFS.2016.2620278 +Bin Li 0011,New Steganalytic Features for Spatial Image Steganography Based on Derivative Filters and Threshold LBP Operator.,2018,13,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs13.html#LiLZTZ18,https://doi.org/10.1109/TIFS.2017.2780805 +M. F. Haroun,Secret Key Generation Using Chaotic Signals Over Frequency Selective Fading Channels.,2015,10,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs10.html#HarounG15,https://doi.org/10.1109/TIFS.2015.2428211 +Tao Xiang,Perceptual Visual Security Index Based on Edge and Texture Similarities.,2016,11,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs11.html#XiangGL16,https://doi.org/10.1109/TIFS.2016.2515503 +Babins Shrestha,Tap-Wave-Rub: Lightweight Human Interaction Approach to Curb Emerging Smartphone Malware.,2015,10,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs10.html#ShresthaM0LS15,https://doi.org/10.1109/TIFS.2015.2436364 +Alessandro Piva,Secure client-side ST-DM watermark embedding.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#PivaBR10,https://doi.org/10.1109/TIFS.2009.2038761 +Zohaib Hassan Awan,Multiaccess Channel With Partially Cooperating Encoders and Security Constraints.,2013,8,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs8.html#AwanZV13,https://doi.org/10.1109/TIFS.2013.2263804 +Chunxiao Cai,When Does Relay Transmission Give a More Secure Connection in Wireless Ad Hoc Networks?,2014,9,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs9.html#CaiCZYY14,https://doi.org/10.1109/TIFS.2013.2297835 +Sumeet Bajaj,Practical Foundations of History Independence.,2016,11,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs11.html#BajajCS16,https://doi.org/10.1109/TIFS.2015.2491309 +Paul C. van Oorschot,Purely automated attacks on passpoints-style graphical passwords.,2010,5,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs5.html#OorschotST10,https://doi.org/10.1109/TIFS.2010.2053706 +Weiqi Luo,JPEG error analysis and its applications to digital image forensics.,2010,5,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs5.html#LuoHQ10,https://doi.org/10.1109/TIFS.2010.2051426 +Shi-Jinn Horng,b-SPECS+: Batch Verification for Secure Pseudonymous Authentication in VANET.,2013,8,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs8.html#HorngTPFWLK13,https://doi.org/10.1109/TIFS.2013.2277471 +Qian Zheng,Suspecting Less and Doing Better: New Insights on Palmprint Identification for Faster and More Accurate Matching.,2016,11,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs11.html#ZhengKP16,https://doi.org/10.1109/TIFS.2015.2503265 +Farzad Farhadzadeh,Active Content Fingerpriting.,2014,9,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs9.html#FarhadzadehV14,https://doi.org/10.1109/TIFS.2014.2315531 +Rong Jin,MagPairing: Pairing Smartphones in Close Proximity Using Magnetometers.,2016,11,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs11.html#JinSZPM16,https://doi.org/10.1109/TIFS.2015.2505626 +Van-Dinh Nguyen,Joint Information and Jamming Beamforming for Secrecy Rate Maximization in Cognitive Radio Networks.,2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#NguyenDDS16,https://doi.org/10.1109/TIFS.2016.2594131 +Haodong Li,Localization of Diffusion-Based Inpainting in Digital Images.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#LiLH17,https://doi.org/10.1109/TIFS.2017.2730822 +Amol D. Rahulkar,Half-Iris Feature Extraction and Recognition Using a New Class of Biorthogonal Triplet Half-Band Filter Bank and Flexible k-out-of-n: A Postclassifier.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#RahulkarH12,https://doi.org/10.1109/TIFS.2011.2166069 +Sevinc Bayram,Sensor Fingerprint Identification Through Composite Fingerprints and Group Testing.,2015,10,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs10.html#BayramSM15,https://doi.org/10.1109/TIFS.2014.2385634 +Chao Wang,On the Secrecy Throughput Maximization for MISO Cognitive Radio Network in Slow Fading Channels.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#WangW14,https://doi.org/10.1109/TIFS.2014.2356339 +Bin Li 0011,Steganalysis of YASS.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#LiHS09,https://doi.org/10.1109/TIFS.2009.2025841 +Taekyoung Kwon,Analysis and Improvement of a PIN-Entry Method Resilient to Shoulder-Surfing and Recording Attacks.,2015,10,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs10.html#Kwon015,https://doi.org/10.1109/TIFS.2014.2374352 +Yong Yu,"Comments on ""Public Integrity Auditing for Dynamic Data Sharing With Multiuser Modification"".",2016,11,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs11.html#YuLNYMS16,https://doi.org/10.1109/TIFS.2015.2501728 +Guopu Zhu,A study on the randomness measure of image hashing.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#ZhuHKY09,https://doi.org/10.1109/TIFS.2009.2033737 +Jing Yang Koh,Optimal Privacy-Preserving Probabilistic Routing for Wireless Networks.,2017,12,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs12.html#KohLPNW17,https://doi.org/10.1109/TIFS.2017.2698424 +Ahmet Emir Dirik,Analysis of Seam-Carving-Based Anonymization of Images Against PRNU Noise Pattern-Based Source Attribution.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#DirikSM14,https://doi.org/10.1109/TIFS.2014.2361200 +Daniel Votipka,Passe-Partout: A General Collection Methodology for Android Devices.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#VotipkaVC13,https://doi.org/10.1109/TIFS.2013.2285360 +Cheng-Hsing Yang,Adaptive Data Hiding in Edge Areas of Images With Spatial LSB Domain Systems.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#YangWWS08,https://doi.org/10.1109/TIFS.2008.926097 +Rong Jin,Secure Inductive-Coupled Near Field Communication at Physical Layer.,2018,13,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs13.html#JinZ18,https://doi.org/10.1109/TIFS.2018.2832983 +Luis Pérez-Freire,Spread-spectrum watermarking security.,2009,4,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs4.html#Perez-FreireP09,https://doi.org/10.1109/TIFS.2008.2009603 +Alok Tongaonkar,Condition Factorization: A Technique for Building Fast and Compact Packet Matching Automata.,2016,11,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs11.html#TongaonkarS16,https://doi.org/10.1109/TIFS.2015.2489182 +Maha El Choubassi,On reliability and security of randomized detectors against sensitivity analysis attacks.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#ChoubassiM09,https://doi.org/10.1109/TIFS.2009.2021783 +Husrev T. Sencar,Combatting Ambiguity Attacks via Selective Detection of Embedded Watermarks.,2007,2,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs2.html#SencarM07,https://doi.org/10.1109/TIFS.2007.908211 +Deng Wang,A New Method for EEG-Based Concealed Information Test.,2013,8,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs8.html#WangMB13,https://doi.org/10.1109/TIFS.2013.2244884 +Tsz Kin Tsui,Color Image Watermarking Using Multidimensional Fourier Transforms.,2008,3,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs3.html#TsuiZA08,https://doi.org/10.1109/TIFS.2007.916275 +Alfonso Iacovazzi,DropWat: An Invisible Network Flow Watermark for Data Exfiltration Traceback.,2018,13,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs13.html#IacovazziSFE18,https://doi.org/10.1109/TIFS.2017.2779113 +Saravanan Sundaresan,A Robust Grouping Proof Protocol for RFID EPC C1G2 Tags.,2014,9,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs9.html#SundaresanDPZ14,https://doi.org/10.1109/TIFS.2014.2316338 +Ke Xu,ICCDetector: ICC-Based Malware Detection on Android.,2016,11,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs11.html#XuLD16,https://doi.org/10.1109/TIFS.2016.2523912 +Cemal Hanilçi,Recognition of Brand and Models of Cell-Phones From Recorded Speech Signals.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#HanilciEEE12,https://doi.org/10.1109/TIFS.2011.2178403 +Jiwen Lu,A doubly weighted approach for appearance-based subspace learning methods.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#LuT10,https://doi.org/10.1109/TIFS.2009.2035976 +Samet Taspinar,PRNU-Based Camera Attribution From Multiple Seam-Carved Images.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#TaspinarMM17,https://doi.org/10.1109/TIFS.2017.2737961 +Chien-Ming Chen,A Scalable Transitive Human-Verifiable Authentication Protocol for Mobile Devices.,2013,8,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs8.html#ChenWWPS13,https://doi.org/10.1109/TIFS.2013.2270106 +H. Vicky Zhao,Behavior forensics for scalable multiuser collusion: fairness versus effectiveness.,2006,1,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs1.html#ZhaoL06,https://doi.org/10.1109/TIFS.2006.879279 +Xufeng Lin,Large-Scale Image Clustering Based on Camera Fingerprints.,2017,12,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs12.html#LinL17,https://doi.org/10.1109/TIFS.2016.2636086 +Chao Yang,Active User-Side Evil Twin Access Point Detection Using Statistical Techniques.,2012,7,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs7.html#YangSG12,https://doi.org/10.1109/TIFS.2012.2207383 +Bahman Rashidi,Android User Privacy Preserving Through Crowdsourcing.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#RashidiFNVB18,https://doi.org/10.1109/TIFS.2017.2767019 +Zesheng Chen,An information-theoretic view of network-aware malware attacks.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#ChenJ09,https://doi.org/10.1109/TIFS.2009.2025847 +Liang Xiao 0003,Indirect Reciprocity Security Game for Large-Scale Wireless Networks.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#XiaoCLL12,https://doi.org/10.1109/TIFS.2012.2202228 +Yuichi Sei,Differential Private Data Collection and Analysis Based on Randomized Multiple Dummies for Untrusted Mobile Crowdsensing.,2017,12,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs12.html#SeiO17,https://doi.org/10.1109/TIFS.2016.2632069 +Reza Soosahabi,Scalable PHY-Layer Security for Distributed Detection in Wireless Sensor Networks.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#SoosahabiN12,https://doi.org/10.1109/TIFS.2012.2194704 +Xixiang Lv,Non-Interactive Key Establishment for Bundle Security Protocol of Space DTNs.,2014,9,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs9.html#LvML14,https://doi.org/10.1109/TIFS.2013.2289993 +Andrey Garnaev,Bandwidth Scanning When Facing Interference Attacks Aimed at Reducing Spectrum Opportunities.,2017,12,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs12.html#GarnaevT17a,https://doi.org/10.1109/TIFS.2017.2694766 +Xiaocheng Hu,Fast Estimation of Optimal Marked-Signal Distribution for Reversible Data Hiding.,2013,8,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs8.html#HuZHYZL13,https://doi.org/10.1109/TIFS.2013.2256131 +Ali Moeini,Real-World and Rapid Face Recognition Toward Pose and Expression Variations via Feature Library Matrix.,2015,10,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs10.html#MoeiniM15,https://doi.org/10.1109/TIFS.2015.2393553 +Yuan Yang 0003,Probabilistically Inferring Attack Ramifications Using Temporal Dependence Network.,2018,13,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs13.html#YangCWZ18,https://doi.org/10.1109/TIFS.2018.2833048 +Sujit Rokka Chhetri,Information Leakage-Aware Computer-Aided Cyber-Physical Manufacturing.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#ChhetriFF18,https://doi.org/10.1109/TIFS.2018.2818659 +Yun Fu 0001,Classification and Feature Extraction by Simplexization.,2008,3,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs3.html#FuYH08,https://doi.org/10.1109/TIFS.2007.916280 +Holger Boche,Secure Identification Under Passive Eavesdroppers and Active Jamming Attacks.,2019,14,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs14.html#BocheD19,https://doi.org/10.1109/TIFS.2018.2854729 +Ahmed A. Zewail,Multi-Terminal Two-Hop Untrusted-Relay Networks With Hierarchical Security Guarantees.,2017,12,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs12.html#ZewailY17,https://doi.org/10.1109/TIFS.2017.2695163 +Haodong Li,Image Forgery Localization via Integrating Tampering Possibility Maps.,2017,12,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs12.html#LiLQH17,https://doi.org/10.1109/TIFS.2017.2656823 +Giounona Tzanidou,Carried Object Detection in Videos Using Color Information.,2013,8,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs8.html#TzanidouZE13,https://doi.org/10.1109/TIFS.2013.2279797 +Ajay Kumar 0001,Hand-Geometry Recognition Using Entropy-Based Discretization.,2007,2,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs2.html#KumarZ07,https://doi.org/10.1109/TIFS.2007.896915 +Hans Georg Schaathun,On the Assumption of Equal Contributions in Fingerprinting.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#Schaathun08,https://doi.org/10.1109/TIFS.2008.926991 +Zhen Lei,Coupled Discriminant Analysis for Heterogeneous Face Recognition.,2012,7,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs7.html#LeiLJL12,https://doi.org/10.1109/TIFS.2012.2210041 +Wei Wang 0100,Secrecy Throughput Maximization for MISO Multi-Eavesdropper Wiretap Channels.,2017,12,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs12.html#WangTL17,https://doi.org/10.1109/TIFS.2016.2620279 +Abdellatif Zaidi,Coding schemes for relay-assisted information embedding.,2009,4,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs4.html#ZaidiV09,https://doi.org/10.1109/TIFS.2008.2009588 +Jun Yu 0002,Leveraging Content Sensitiveness and User Trustworthiness to Recommend Fine-Grained Privacy Settings for Social Image Sharing.,2018,13,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs13.html#YuKZZLF18,https://doi.org/10.1109/TIFS.2017.2787986 +Takehiko Amaki,A Worst-Case-Aware Design Methodology for Noise-Tolerant Oscillator-Based True Random Number Generator With Stochastic Behavior Modeling.,2013,8,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs8.html#AmakiHMO13,https://doi.org/10.1109/TIFS.2013.2271423 +Luis Pérez-Freire,Security of Lattice-Based Data Hiding Against the Known Message Attack.,2006,1,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs1.html#Perez-FreirePFC06,https://doi.org/10.1109/TIFS.2006.885029 +Xiaoyang Tan,Face recognition under occlusions and variant expressions with partial similarity.,2009,4,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs4.html#TanCZL09,https://doi.org/10.1109/TIFS.2009.2020772 +Tanya Ignatenko,Information leakage in fuzzy commitment schemes.,2010,5,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs5.html#IgnatenkoW10,https://doi.org/10.1109/TIFS.2010.2046984 +Nadia Othman,Impact of Quality-Based Fusion Techniques for Video-Based Iris Recognition at a Distance.,2015,10,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs10.html#OthmanD15,https://doi.org/10.1109/TIFS.2015.2421314 +Guang Hua,A Dynamic Matching Algorithm for Audio Timestamp Identification Using the ENF Criterion.,2014,9,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs9.html#HuaGT14,https://doi.org/10.1109/TIFS.2014.2321228 +Hong Zhao,Anti-Forensics of Environmental-Signature-Based Audio Splicing Detection and Its Countermeasure via Rich-Features Classification.,2016,11,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs11.html#ZhaoCWM16,https://doi.org/10.1109/TIFS.2016.2543205 +Miroslav Goljan,Defending Against Fingerprint-Copy Attack in Sensor-Based Camera Identification.,2011,6,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs6.html#GoljanFC11,https://doi.org/10.1109/TIFS.2010.2099220 +Mohd Fazil,A Hybrid Approach for Detecting Automated Spammers in Twitter.,2018,13,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs13.html#FazilA18,https://doi.org/10.1109/TIFS.2018.2825958 +Suriya Gunasekar,Face Detection on Distorted Images Augmented by Perceptual Quality-Aware Features.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#GunasekarGB14,https://doi.org/10.1109/TIFS.2014.2360579 +Emin Islam Tatli,Cracking More Password Hashes With Patterns.,2015,10,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs10.html#Tatli15,https://doi.org/10.1109/TIFS.2015.2422259 +Ka-Chung Leung,Improvement of Fingerprint Retrieval by a Statistical Classifier.,2011,6,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs6.html#LeungL11,https://doi.org/10.1109/TIFS.2010.2100382 +Lixin Luo,Reversible image watermarking using interpolation technique.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#LuoCCZX10,https://doi.org/10.1109/TIFS.2009.2035975 +Matteo Ferrara,Noninvertible Minutia Cylinder-Code Representation.,2012,7,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs7.html#FerraraMC12,https://doi.org/10.1109/TIFS.2012.2215326 +Taras Stanko,Optimized Quantization in Zero Leakage Helper Data Systems.,2017,12,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs12.html#StankoAS17,https://doi.org/10.1109/TIFS.2017.2697840 +Zhikun Zhang,REAP: An Efficient Incentive Mechanism for Reconciling Aggregation Accuracy and Individual Privacy in Crowdsensing.,2018,13,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs13.html#ZhangHCZ18,https://doi.org/10.1109/TIFS.2018.2834232 +Jia-An Hong,"Comments on ""DAC-MACS: Effective Data Access Control for Multiauthority Cloud Storage Systems"" / Security Analysis of Attribute Revocation in Multiauthority Data Access Control for Cloud Storage Systems.",2015,10,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs10.html#HongXL15,https://doi.org/10.1109/TIFS.2015.2407327 +Paulo F. Oliveira,A Network Coding Approach to Secret Key Distribution.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#OliveiraB08,https://doi.org/10.1109/TIFS.2008.928538 +Srinivas Krishnan,Trail of Bytes: New Techniques for Supporting Data Provenance and Limiting Privacy Breaches.,2012,7,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs7.html#KrishnanSM12,https://doi.org/10.1109/TIFS.2012.2210217 +Ahmed Alahmadi,Subband PUEA Detection and Mitigation in OFDM-Based Cognitive Radio Networks.,2015,10,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs10.html#AlahmadiFSL15,https://doi.org/10.1109/TIFS.2015.2450673 +Naofumi Homma,A Formal Approach to Designing Cryptographic Processors Based on $GF(2^m)$ Arithmetic Circuits.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#HommaSA12,https://doi.org/10.1109/TIFS.2011.2157687 +W. Sabrina Lin,Digital image source coder forensics via intrinsic fingerprints.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#LinTZL09,https://doi.org/10.1109/TIFS.2009.2024715 +Xiaolong Guo,Eliminating the Hardware-Software Boundary: A Proof-Carrying Approach for Trust Evaluation on Computer Systems.,2017,12,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs12.html#GuoDJ17,https://doi.org/10.1109/TIFS.2016.2621999 +Ayad F. Barsoum,Provable Multicopy Dynamic Data Possession in Cloud Computing Systems.,2015,10,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs10.html#BarsoumH15,https://doi.org/10.1109/TIFS.2014.2384391 +Yan Zhu 0010,Role-Based Cryptosystem: A New Cryptographic RBAC System Based on Role-Key Hierarchy.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#ZhuAHMW13,https://doi.org/10.1109/TIFS.2013.2287858 +Cecilia Pasquini,A Deterministic Approach to Detect Median Filtering in 1D Data.,2016,11,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs11.html#PasquiniBAN16,https://doi.org/10.1109/TIFS.2016.2530636 +Chia-Mu Yu,Top-$k$ Query Result Completeness Verification in Tiered Sensor Networks.,2014,9,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs9.html#YuNCGK14,https://doi.org/10.1109/TIFS.2013.2291326 +Soumik Mondal,Person Identification by Keystroke Dynamics Using Pairwise User Coupling.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#MondalB17,https://doi.org/10.1109/TIFS.2017.2658539 +Shervin Rahimzadeh Arashloo,Class-Specific Kernel Fusion of Multiple Descriptors for Face Verification Using Multiscale Binarised Statistical Image Features.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#ArashlooK14,https://doi.org/10.1109/TIFS.2014.2359587 +Khandaker Abir Rahman,Snoop-Forge-Replay Attacks on Continuous Verification With Keystrokes.,2013,8,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs8.html#RahmanBP13,https://doi.org/10.1109/TIFS.2013.2244091 +Erfan Soltanmohammadi,Decentralized Hypothesis Testing in Wireless Sensor Networks in the Presence of Misbehaving Nodes.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#SoltanmohammadiON13,https://doi.org/10.1109/TIFS.2012.2229274 +Tomas Larrain,Face Recognition Using Sparse Fingerprint Classification Algorithm.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#LarrainBMB17,https://doi.org/10.1109/TIFS.2017.2680403 +Abhishek Nagar,Multibiometric Cryptosystems Based on Feature-Level Fusion.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#NagarNJ12,https://doi.org/10.1109/TIFS.2011.2166545 +Weichen Xiang,Low-Complexity Power Control and Energy Harvesting Algorithms for Wiretap Channels Employing Finite-Alphabet Input Schemes.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#XiangJG18,https://doi.org/10.1109/TIFS.2017.2749161 +Mohamad Badra,Design and Performance Analysis of a Virtual Ring Architecture for Smart Grid Privacy.,2014,9,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs9.html#BadraZ14,https://doi.org/10.1109/TIFS.2013.2296441 +Mei Chen,Laser Doppler vibrometry measures of physiological function: evaluation of biometric capabilities.,2010,5,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs5.html#ChenOSSKLKR10,https://doi.org/10.1109/TIFS.2010.2051542 +Long Cheng,FACT: A Framework for Authentication in Cloud-Based IP Traceback.,2017,12,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs12.html#ChengDALT17,https://doi.org/10.1109/TIFS.2016.2624741 +Emile J. C. Kelkboom,Preventing the Decodability Attack Based Cross-Matching in a Fuzzy Commitment Scheme.,2011,6,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs6.html#KelkboomBKBV11,https://doi.org/10.1109/TIFS.2010.2091637 +Maneli Noorkami,"Correction to ""A Framework for Robust Watermarking of H.264 Encoded Video With Controllable Detection Performance"".",2007,2,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs2.html#NoorkamiM07a,https://doi.org/10.1109/TIFS.2007.910245 +Zhangjie Fu,Enabling Central Keyword-Based Semantic Extension Search Over Encrypted Outsourced Data.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#FuWWR17,https://doi.org/10.1109/TIFS.2017.2730365 +Arcangelo Castiglione,Cryptographic Hierarchical Access Control for Dynamic Structures.,2016,11,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs11.html#CastiglioneSMPC16a,https://doi.org/10.1109/TIFS.2016.2581147 +Russell A. Fink,Corrections to TPM meets DRE: reducing the trust base for electronic voting using trusted platform modules.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#FinkSC10,https://doi.org/10.1109/TIFS.2010.2040670 +Sayan Maity,3D Ear Segmentation and Classification Through Indexing.,2015,10,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs10.html#MaityA15,https://doi.org/10.1109/TIFS.2014.2379437 +Jake B. Perazzone,Cryptographic Side-Channel Signaling and Authentication via Fingerprint Embedding.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#PerazzoneYSB18,https://doi.org/10.1109/TIFS.2018.2812202 +Bodhisatwa Mazumdar,Constrained Search for a Class of Good Bijective S-Boxes With Improved DPA Resistivity.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#MazumdarMS13,https://doi.org/10.1109/TIFS.2013.2285522 +Qiaolin Ye,"Comments on ""Joint Global and Local Structure Discriminant Analysis"".",2016,11,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs11.html#YeJ16,https://doi.org/10.1109/TIFS.2015.2490624 +Andrea Valsecchi,A Robust and Efficient Method for Skull-Face Overlay in Computerized Craniofacial Superimposition.,2018,13,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs13.html#ValsecchiDC18,https://doi.org/10.1109/TIFS.2018.2806939 +Aiqing Zhang,Light-Weight and Robust Security-Aware D2D-Assist Data Transmission Protocol for Mobile-Health Systems.,2017,12,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs12.html#ZhangWYL17,https://doi.org/10.1109/TIFS.2016.2631950 +Naoise Holohan,Optimal Differentially Private Mechanisms for Randomised Response.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#HolohanLM17,https://doi.org/10.1109/TIFS.2017.2718487 +Zhe Liu 0001,Efficient Implementation of NIST-Compliant Elliptic Curve Cryptography for 8-bit AVR-Based Sensor Nodes.,2016,11,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs11.html#0001SGK16,https://doi.org/10.1109/TIFS.2015.2491261 +Yuki Kinebuchi,Monitoring Integrity Using Limited Local Memory.,2013,8,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs8.html#KinebuchiBGIN13,https://doi.org/10.1109/TIFS.2013.2266095 +Yifeng Zheng,Learning the Truth Privately and Confidently: Encrypted Confidence-Aware Truth Discovery in Mobile Crowdsensing.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#ZhengDW18,https://doi.org/10.1109/TIFS.2018.2819134 +Lingxiang Li,MIMO Secret Communications Against an Active Eavesdropper.,2017,12,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs12.html#LiPC17,https://doi.org/10.1109/TIFS.2017.2705618 +Valerio Cambareri,On Known-Plaintext Attacks to a Compressed Sensing-Based Encryption: A Quantitative Analysis.,2015,10,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs10.html#CambareriMPRS15,https://doi.org/10.1109/TIFS.2015.2450676 +Serap Kirbiz,Decode-Time Forensic Watermarking of AAC Bitstreams.,2007,2,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs2.html#KirbizLCK07,https://doi.org/10.1109/TIFS.2007.908194 +Chi-Man Pun,Image Forgery Detection Using Adaptive Oversegmentation and Feature Point Matching.,2015,10,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs10.html#PunYB15,https://doi.org/10.1109/TIFS.2015.2423261 +Jafar Haadi Jafarian,An Effective Address Mutation Approach for Disrupting Reconnaissance Attacks.,2015,10,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs10.html#JafarianAD15,https://doi.org/10.1109/TIFS.2015.2467358 +Yanwei Pang,Fast Haar transform based feature extraction for face representation and recognition.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#PangLYTP09,https://doi.org/10.1109/TIFS.2009.2026455 +E. P. Vivek,Gray Hausdorff distance measure for comparing face images.,2006,1,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs1.html#VivekS06,https://doi.org/10.1109/TIFS.2006.879294 +Alberto Giaretta,Security Vulnerabilities and Countermeasures for Target Localization in Bio-NanoThings Communication Networks.,2016,11,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs11.html#GiarettaBC16,https://doi.org/10.1109/TIFS.2015.2505632 +Chun-Wei Tan,Efficient and Accurate At-a-Distance Iris Recognition Using Geometric Key-Based Iris Encoding.,2014,9,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs9.html#TanK14,https://doi.org/10.1109/TIFS.2014.2339496 +Pedro Tome-Gonzalez,Soft Biometrics and Their Application in Person Recognition at a Distance.,2014,9,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs9.html#Tome-GonzalezFVN14,https://doi.org/10.1109/TIFS.2014.2299975 +Napa Sae-Bae,Online Signature Verification on Mobile Devices.,2014,9,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs9.html#Sae-BaeM14,https://doi.org/10.1109/TIFS.2014.2316472 +Davide Cozzolino,Efficient Dense-Field Copy-Move Forgery Detection.,2015,10,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs10.html#CozzolinoPV15,https://doi.org/10.1109/TIFS.2015.2455334 +Andrey V. Lyamin,An Approach to Biometric Identification by Using Low-Frequency Eye Tracker.,2017,12,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs12.html#LyaminC17,https://doi.org/10.1109/TIFS.2016.2639342 +Hui Ma 0002,"Comments on ""Control Cloud Data Access Privilege and Anonymity With Fully Anonymous Attribute-Based Encryption"".",2016,11,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs11.html#MaZY16,https://doi.org/10.1109/TIFS.2015.2509865 +Carlos Gañán,A Modeling of Certificate Revocation and Its Application to Synthesis of Revocation Traces.,2012,7,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs7.html#GananMMHEA12,https://doi.org/10.1109/TIFS.2012.2209875 +Pedro C. Pinto,Secure Communication in Stochastic Wireless Networks - Part I: Connectivity.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#PintoBW12,https://doi.org/10.1109/TIFS.2011.2165946 +Daniel F. Smith,Face Recognition on Consumer Devices: Reflections on Replay Attacks.,2015,10,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs10.html#SmithWL15,https://doi.org/10.1109/TIFS.2015.2398819 +Hans Georg Schaathun,Attacks on Kuribayashi's Fingerprinting Scheme.,2014,9,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs9.html#Schaathun14,https://doi.org/10.1109/TIFS.2014.2304837 +Zohaib Hassan Awan,On SDoF of Multi-Receiver Wiretap Channel With Alternating CSIT.,2016,11,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs11.html#AwanZS16,https://doi.org/10.1109/TIFS.2016.2547863 +Ashwin Swaminathan,Digital Image Forensics via Intrinsic Fingerprints.,2008,3,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs3.html#SwaminathanWL08,https://doi.org/10.1109/TIFS.2007.916010 +Rongmao Chen,Dual-Server Public-Key Encryption With Keyword Search for Secure Cloud Storage.,2016,11,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs11.html#ChenMYGW16,https://doi.org/10.1109/TIFS.2015.2510822 +Qiong Huang,Efficient Designated Confirmer Signature and DCS-Based Ambiguous Optimistic Fair Exchange.,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#HuangWS11,https://doi.org/10.1109/TIFS.2011.2161290 +Ben Nassi,Xerox Day Vulnerability.,2019,14,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs14.html#NassiSE19,https://doi.org/10.1109/TIFS.2018.2854708 +Chester Rebeiro,Formalizing the Effect of Feistel Cipher Structures on Differential Cache Attacks.,2013,8,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs8.html#RebeiroNMP13,https://doi.org/10.1109/TIFS.2013.2267733 +Xuhua Ding,Database Access Pattern Protection Without Full-Shuffles.,2011,6,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs6.html#DingYD11,https://doi.org/10.1109/TIFS.2010.2101062 +Yan Lindsay Sun,Analysis and Protection of Dynamic Membership Information for Group Key Distribution Schemes.,2007,2,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs2.html#SunL07,https://doi.org/10.1109/TIFS.2007.897274 +Ahmed Alahmadi,Defense Against Primary User Emulation Attacks in Cognitive Radio Networks Using Advanced Encryption Standard.,2014,9,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs9.html#AlahmadiARL14,https://doi.org/10.1109/TIFS.2014.2310355 +Zijing Zhao,Improving Periocular Recognition by Explicit Attention to Critical Regions in Deep Neural Network.,2018,13,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs13.html#ZhaoK18,https://doi.org/10.1109/TIFS.2018.2833018 +Slava Voloshynovskiy,Soft Content Fingerprinting With Bit Polarization Based on Sign-Magnitude Decomposition.,2015,10,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs10.html#VoloshynovskiyH15,https://doi.org/10.1109/TIFS.2015.2432744 +Fuchun Guo,Distance-Based Encryption: How to Embed Fuzziness in Biometric-Based Encryption.,2016,11,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs11.html#GuoSM16,https://doi.org/10.1109/TIFS.2015.2489179 +Byoung-Kyong Min,Individual Identification Using Cognitive Electroencephalographic Neurodynamics.,2017,12,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs12.html#MinSALL17,https://doi.org/10.1109/TIFS.2017.2699944 +Weimin Wei,Estimation of image rotation angle using interpolation-related spectral signatures with application to blind detection of image forgery.,2010,5,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs5.html#WeiWZT10,https://doi.org/10.1109/TIFS.2010.2051254 +Enrique Argones-Rúa,Biometric Template Protection Using Universal Background Models: An Application to Online Signature.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#Argones-RuaMAC12,https://doi.org/10.1109/TIFS.2011.2168213 +Craig Belcher,"Corrections to ""A selective feature information approach for iris image-quality measure"".",2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#BelcherD09,https://doi.org/10.1109/TIFS.2009.2028260 +Vladan Velisavljevic,Low-complexity iris coding and recognition based on directionlets.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#Velisavljevic09,https://doi.org/10.1109/TIFS.2009.2024025 +Kanoksak Wattanachote,Tamper Detection of JPEG Image Due to Seam Modifications.,2015,10,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs10.html#WattanachoteSCC15,https://doi.org/10.1109/TIFS.2015.2464776 +Ehsan Nezhadarya,Robust Image Watermarking Based on Multiscale Gradient Direction Quantization.,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#NezhadaryaWW11,https://doi.org/10.1109/TIFS.2011.2163627 +Koen Simoens,A Framework for Analyzing Template Security and Privacy in Biometric Authentication Systems.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#SimoensBCS12,https://doi.org/10.1109/TIFS.2012.2184092 +Jae Hong Seo,Revocable Identity-Based Cryptosystem Revisited: Security Models and Constructions.,2014,9,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs9.html#SeoE14,https://doi.org/10.1109/TIFS.2014.2327758 +He Sun 0005,Reliable and Trustworthy Memory Acquisition on Smartphones.,2015,10,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs10.html#SunSWJ15,https://doi.org/10.1109/TIFS.2015.2467356 +Xinghao Jiang,Detection of Double Compression With the Same Coding Parameters Based on Quality Degradation Mechanism Analysis.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#JiangHSXW18,https://doi.org/10.1109/TIFS.2017.2745687 +Peter Meerwald,Toward Practical Joint Decoding of Binary Tardos Fingerprinting Codes.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#MeerwaldF12,https://doi.org/10.1109/TIFS.2012.2195655 +Lei Xu 0016,Trust-Based Collaborative Privacy Management in Online Social Networks.,2019,14,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs14.html#XuJHHB19,https://doi.org/10.1109/TIFS.2018.2840488 +Ryan Connaughton,A Multialgorithm Analysis of Three Iris Biometric Sensors.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#ConnaughtonSBF12,https://doi.org/10.1109/TIFS.2012.2190575 +Abdelmalik Ouamane,Efficient Tensor-Based 2D+3D Face Verification.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#OuamaneCBBBH17,https://doi.org/10.1109/TIFS.2017.2718490 +Yang Xiang 0001,Low-Rate DDoS Attacks Detection and Traceback by Using New Information Metrics.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#XiangLZ11,https://doi.org/10.1109/TIFS.2011.2107320 +Yahya Sowti Khiabani,ARQ-Based Symmetric-Key Generation Over Correlated Erasure Channels.,2013,8,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs8.html#KhiabaniW13,https://doi.org/10.1109/TIFS.2013.2264461 +Jan Kodovský,Ensemble Classifiers for Steganalysis of Digital Media.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#KodovskyFH12,https://doi.org/10.1109/TIFS.2011.2175919 +Shunquan Tan,Pixel-Decimation-Assisted Steganalysis of Synchronize-Embedding-Changes Steganography.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#TanZLH17,https://doi.org/10.1109/TIFS.2017.2682703 +Baki Berkay Yilmaz,Capacity of the EM Covert/Side-Channel Created by the Execution of Instructions in a Processor.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#YilmazCPZ18,https://doi.org/10.1109/TIFS.2017.2762826 +Dalwon Jang,Pairwise boosted audio fingerprint.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#JangYLKK09,https://doi.org/10.1109/TIFS.2009.2034452 +Mohammad Al-Rubaie,Reconstruction Attacks Against Mobile-Based Continuous Authentication Systems in the Cloud.,2016,11,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs11.html#Al-RubaieC16,https://doi.org/10.1109/TIFS.2016.2594132 +Zhuo Tang,A Self-Adaptive Bell-LaPadula Model Based on Model Training With Historical Access Logs.,2018,13,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs13.html#TangDZY018,https://doi.org/10.1109/TIFS.2018.2807793 +Kaiping Xue,Combining Data Owner-Side and Cloud-Side Access Control for Encrypted Cloud Storage.,2018,13,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs13.html#XueCLHH18,https://doi.org/10.1109/TIFS.2018.2809679 +Andrea Abrardo,A New Watermarking Scheme Based on Antipodal Binary Dirty Paper Coding.,2014,9,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs9.html#AbrardoB14,https://doi.org/10.1109/TIFS.2014.2333592 +Carsten Gottschlich,Robust orientation field estimation and extrapolation using semilocal line sensors.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#GottschlichMM09,https://doi.org/10.1109/TIFS.2009.2033219 +Hyoung-Joong Kim,A Novel Difference Expansion Transform for Reversible Data Embedding.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#KimSSNC08,https://doi.org/10.1109/TIFS.2008.924600 +Kevin M. Carter 0001,Probabilistic Threat Propagation for Network Security.,2014,9,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs9.html#CarterIS14,https://doi.org/10.1109/TIFS.2014.2334272 +Samarth Bharadwaj,Domain Specific Learning for Newborn Face Recognition.,2016,11,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs11.html#BharadwajBVS16,https://doi.org/10.1109/TIFS.2016.2538744 +Norman Poh,Addressing missing values in kernel-based multimodal biometric fusion using neutral point substitution.,2010,5,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs5.html#PohWMTE10,https://doi.org/10.1109/TIFS.2010.2053535 +Sheng Wei 0001,Gate Characterization Using Singular Value Decomposition: Foundations and Applications.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#WeiNNKP12,https://doi.org/10.1109/TIFS.2011.2181500 +Yousof Erfani,Audio Watermarking Using Spikegram and a Two-Dictionary Approach.,2017,12,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs12.html#ErfaniPR17,https://doi.org/10.1109/TIFS.2016.2636094 +Pierre Moulin,Block QIM watermarking games.,2006,1,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs1.html#MoulinG06,https://doi.org/10.1109/TIFS.2006.879299 +Ryan N. Rakvic,Parallelizing iris recognition.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#RakvicUBIS09,https://doi.org/10.1109/TIFS.2009.2032012 +Peng Xu 0002,Rate Regions for Multiple Access Channel With Conference and Secrecy Constraints.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#XuDD13,https://doi.org/10.1109/TIFS.2013.2282913 +Bo Wang 0023,Exploration of Benes Network in Cryptographic Processors: A Random Infection Countermeasure for Block Ciphers Against Fault Attacks.,2017,12,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs12.html#WangLDZYZW17,https://doi.org/10.1109/TIFS.2016.2612638 +Yanzhen Ren,AMR Steganalysis Based on Second-Order Difference of Pitch Delay.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#RenYWW17,https://doi.org/10.1109/TIFS.2016.2636087 +Chune Zhang,Multipurpose Watermarking Based on Multiscale Curvelet Transform.,2008,3,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs3.html#ZhangCQC08,https://doi.org/10.1109/TIFS.2008.2004288 +Meng Zhang,Energy Harvesting for Physical-Layer Security in OFDMA Networks.,2016,11,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs11.html#ZhangL16,https://doi.org/10.1109/TIFS.2015.2481797 +Shankar Sadasivam,On estimation accuracy of desynchronization attack channel parameters.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#SadasivamM09,https://doi.org/10.1109/TIFS.2009.2025852 +Chang-Tsun Li,Source camera identification using enhanced sensor pattern noise.,2010,5,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs5.html#Li10,https://doi.org/10.1109/TIFS.2010.2046268 +Mari Ostendorf,A Message from the Vice President of Publications on New Developments in Signal Processing Society Publications.,2012,7,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs7.html#Ostendorf12,https://doi.org/10.1109/TIFS.2012.2217664 +Shulan Wang,Attribute-Based Data Sharing Scheme Revisited in Cloud Computing.,2016,11,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs11.html#WangLLCYX16,https://doi.org/10.1109/TIFS.2016.2549004 +Rongmao Chen,BL-MLE: Block-Level Message-Locked Encryption for Secure Large File Deduplication.,2015,10,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs10.html#ChenMYG15,https://doi.org/10.1109/TIFS.2015.2470221 +Zhifeng Li 0001,Using Support Vector Machines to Enhance the Performance of Bayesian Face Recognition.,2007,2,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs2.html#LiT07,https://doi.org/10.1109/TIFS.2007.897247 +S. Mohammad Hosseini,An Effective Payload Attribution Scheme for Cybercriminal Detection Using Compressed Bitmap Index Tables and Traffic Downsampling.,2018,13,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs13.html#HosseiniJ18,https://doi.org/10.1109/TIFS.2017.2769018 +Xuan Liu 0003,Masking Transmission Line Outages via False Data Injection Attacks.,2016,11,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs11.html#LiuLLL16,https://doi.org/10.1109/TIFS.2016.2542061 +Roberto De Prisco,On the Relation of Random Grid and Deterministic Visual Cryptography.,2014,9,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs9.html#PriscoS14,https://doi.org/10.1109/TIFS.2014.2305574 +Rohit Kumar Dubey,Fingerprint Liveness Detection From Single Image Using Low-Level Features and Shape Analysis.,2016,11,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs11.html#DubeyGT16,https://doi.org/10.1109/TIFS.2016.2535899 +Jianwu Wan,Pairwise Costs in Semisupervised Discriminant Analysis for Face Recognition.,2014,9,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs9.html#WanYGC14,https://doi.org/10.1109/TIFS.2014.2343833 +Kaitai Liang,A DFA-Based Functional Proxy Re-Encryption Scheme for Secure Public Cloud Data Sharing.,2014,9,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs9.html#LiangALSWYPX14,https://doi.org/10.1109/TIFS.2014.2346023 +Maha El Choubassi,Noniterative Algorithms for Sensitivity Analysis Attacks.,2007,2,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs2.html#ChoubassiM07,https://doi.org/10.1109/TIFS.2007.897276 +Xinglei Zhu,A Joint Source-Channel Adaptive Scheme for Wireless H.264/AVC Video Authentication.,2016,11,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs11.html#ZhuC16,https://doi.org/10.1109/TIFS.2015.2481366 +Mohammad Reza Faghani,A Study of XSS Worm Propagation and Detection Mechanisms in Online Social Networks.,2013,8,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs8.html#FaghaniN13,https://doi.org/10.1109/TIFS.2013.2280884 +Shih-Chun Lin,On Secrecy Capacity of Fast Fading Multiple-Input Wiretap Channels With Statistical CSIT.,2013,8,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs8.html#LinL13,https://doi.org/10.1109/TIFS.2012.2233735 +Farinaz Koushanfar,A Unified Framework for Multimodal Submodular Integrated Circuits Trojan Detection.,2011,6,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs6.html#KoushanfarM11,https://doi.org/10.1109/TIFS.2010.2096811 +Satyanarayana Vuppala,Unicasting on the Secrecy Graph.,2013,8,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs8.html#VuppalaA13,https://doi.org/10.1109/TIFS.2013.2274954 +Vincenzo Matta,DDoS Attacks With Randomized Traffic Innovation: Botnet Identification Challenges and Strategies.,2017,12,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs12.html#MattaML17,https://doi.org/10.1109/TIFS.2017.2692685 +Ashwin Swaminathan,Nonintrusive Component Forensics of Visual Sensors Using Output Images.,2007,2,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs2.html#SwaminathanWL07,https://doi.org/10.1109/TIFS.2006.890307 +Kiran B. Raja,Video Presentation Attack Detection in Visible Spectrum Iris Recognition Using Magnified Phase Information.,2015,10,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs10.html#RajaRB15,https://doi.org/10.1109/TIFS.2015.2440188 +Onur Ozan Koyluoglu,Polar Coding for Secure Transmission and Key Agreement.,2012,7,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs7.html#KoyluogluG12,https://doi.org/10.1109/TIFS.2012.2207382 +Ajay Kumar 0001,A new framework for adaptive multimodal biometrics management.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#KumarKZ10,https://doi.org/10.1109/TIFS.2009.2031892 +Muhamad Erza Aminanto,Deep Abstraction and Weighted Feature Selection for Wi-Fi Impersonation Detection.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#AminantoCTYK18,https://doi.org/10.1109/TIFS.2017.2762828 +Abdollah Arasteh,A Novel Method Based on Empirical Mode Decomposition for P300-Based Detection of Deception.,2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#ArastehMJ16,https://doi.org/10.1109/TIFS.2016.2590938 +Sergey Tulyakov,Use of Identification Trial Statistics for the Combination of Biometric Matchers.,2008,3,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs3.html#TulyakovG08,https://doi.org/10.1109/TIFS.2008.2004287 +Bashar A. Rajoub,Thermal Facial Analysis for Deception Detection.,2014,9,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs9.html#RajoubZ14,https://doi.org/10.1109/TIFS.2014.2317309 +Shaxun Chen,Live Video Forensics: Source Identification in Lossy Wireless Networks.,2015,10,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs10.html#ChenPZM15,https://doi.org/10.1109/TIFS.2014.2362848 +Boyang Wang,Geometric Range Search on Encrypted Spatial Data.,2016,11,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs11.html#WangLW16,https://doi.org/10.1109/TIFS.2015.2506145 +Andrea Abrardo,A Game-Theoretic Framework for Optimum Decision Fusion in the Presence of Byzantines.,2016,11,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs11.html#AbrardoBKT16,https://doi.org/10.1109/TIFS.2016.2526963 +PeiYun Zhang,A Domain Partition-Based Trust Model for Unreliable Clouds.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#ZhangKZ18,https://doi.org/10.1109/TIFS.2018.2812166 +Gaojie Chen,Max-Ratio Relay Selection in Secure Buffer-Aided Cooperative Wireless Networks.,2014,9,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs9.html#ChenTGCC14,https://doi.org/10.1109/TIFS.2014.2307672 +Sina Jahanbin,Passive Multimodal 2-D+3-D Face Recognition Using Gabor Features and Landmark Distances.,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#JahanbinCB11,https://doi.org/10.1109/TIFS.2011.2162585 +Giovani Chiachia,Learning Person-Specific Representations From Faces in the Wild.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#ChiachiaFPRC14,https://doi.org/10.1109/TIFS.2014.2359543 +Joseph K. Liu,Time-Bound Anonymous Authentication for Roaming Networks.,2015,10,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs10.html#LiuCCHAZ15,https://doi.org/10.1109/TIFS.2014.2366300 +Marcin Kowalski,Comparative Studies of Passive Imaging in Terahertz and Mid-Wavelength Infrared Ranges for Object Detection.,2016,11,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs11.html#KowalskiK16,https://doi.org/10.1109/TIFS.2016.2571260 +Yongdong Wu,Attack and Countermeasure on Interlock-Based Device Pairing Schemes.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#WuCZC18,https://doi.org/10.1109/TIFS.2017.2766048 +Maodi Hu,View-Invariant Discriminative Projection for Multi-View Gait-Based Human Identification.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#HuWZLH13,https://doi.org/10.1109/TIFS.2013.2287605 +Mohamed Abouelenien,Detecting Deceptive Behavior via Integration of Discriminative Features From Multiple Modalities.,2017,12,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs12.html#AbouelenienPMB17,https://doi.org/10.1109/TIFS.2016.2639344 +Ruochi Zhang,Stealthy Control Signal Attacks in Linear Quadratic Gaussian Control Systems: Detectability Reward Tradeoff.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#ZhangV17,https://doi.org/10.1109/TIFS.2017.2668220 +Jan Lukás,Digital camera identification from sensor pattern noise.,2006,1,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs1.html#LukasFG06,https://doi.org/10.1109/TIFS.2006.873602 +Xiaoning Song,Dictionary Integration Using 3D Morphable Face Models for Pose-Invariant Collaborative-Representation-Based Classification.,2018,13,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs13.html#SongFHKW18,https://doi.org/10.1109/TIFS.2018.2833052 +Michihiro Kobayashi,Detecting Forgery From Static-Scene Video Based on Inconsistency in Noise Level Functions.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#KobayashiOS10,https://doi.org/10.1109/TIFS.2010.2074194 +Brendan Klare,Face Recognition Performance: Role of Demographic Information.,2012,7,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs7.html#KlareBKBJ12,https://doi.org/10.1109/TIFS.2012.2214212 +Parthajit Mohapatra,On the Secrecy Capacity Region of the Two-User Symmetric Z Interference Channel With Unidirectional Transmitter Cooperation.,2017,12,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs12.html#MohapatraML17,https://doi.org/10.1109/TIFS.2016.2622007 +Koichiro Niinuma,Soft Biometric Traits for Continuous User Authentication.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#NiinumaPJ10,https://doi.org/10.1109/TIFS.2010.2075927 +Chun-I Fan,Provably secure remote truly three-factor authentication scheme with privacy protection on biometrics.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#FanL09,https://doi.org/10.1109/TIFS.2009.2031942 +Maria Fueyo,On the Efficiency of Revocation in RSA-Based Anonymous Systems.,2016,11,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs11.html#FueyoH16,https://doi.org/10.1109/TIFS.2016.2559443 +David Chaum,Scantegrity II: end-to-end verifiability by voters of optical scan elections through confirmation codes.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#ChaumCCEPRRSSV09,https://doi.org/10.1109/TIFS.2009.2034919 +Tzipora Halevi,Acoustic Eavesdropping Attacks on Constrained Wireless Device Pairing.,2013,8,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs8.html#HaleviS13,https://doi.org/10.1109/TIFS.2013.2247758 +Daniel S. Fava,Projecting Cyberattacks Through Variable-Length Markov Models.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#FavaBY08,https://doi.org/10.1109/TIFS.2008.924605 +Farhang Bayat,Non-Adaptive Sequential Detection of Active Edge-Wise Disjoint Subgraphs Under Privacy Constraints.,2018,13,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs13.html#BayatW18,https://doi.org/10.1109/TIFS.2018.2790937 +Damien Delannay,Watermarking relying on cover signal content to hide synchronization marks.,2006,1,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs1.html#DelannayM06,https://doi.org/10.1109/TIFS.2005.863499 +Bo Peng 0002,Image Forensics Based on Planar Contact Constraints of 3D Objects.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#PengWDT18,https://doi.org/10.1109/TIFS.2017.2752728 +Keren Wang,Video Steganalysis Against Motion Vector-Based Steganography by Adding or Subtracting One Motion Vector Value.,2014,9,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs9.html#WangZW14,https://doi.org/10.1109/TIFS.2014.2308633 +Tianbo Wang,The Spatial-Temporal Perspective: The Study of the Propagation of Modern Social Worms.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#WangXLLX17,https://doi.org/10.1109/TIFS.2017.2711424 +Nitesh Saxena,Secure Device Pairing Based on a Visual Channel: Design and Usability Study.,2011,6,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs6.html#SaxenaEKA11,https://doi.org/10.1109/TIFS.2010.2096217 +Zijing Zhao,Accurate Periocular Recognition Under Less Constrained Environment Using Semantics-Assisted Convolutional Neural Network.,2017,12,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs12.html#ZhaoK17,https://doi.org/10.1109/TIFS.2016.2636093 +Pol Mac Aonghusa,Plausible Deniability in Web Search - From Detection to Assessment.,2018,13,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs13.html#AonghusaL18,https://doi.org/10.1109/TIFS.2017.2769025 +Mani Malekesmaeili,A Robust and Fast Video Copy Detection System Using Content-Based Fingerprinting.,2011,6,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs6.html#MalekesmaeiliFW11,https://doi.org/10.1109/TIFS.2010.2097593 +Byung-Ho Cha,Robust MC-CDMA-based fingerprinting against time-varying collusion attacks.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#ChaK09,https://doi.org/10.1109/TIFS.2009.2025849 +Josh Benaloh,Shuffle-sum: coercion-resistant verifiable tallying for STV voting.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#BenalohMNRT09,https://doi.org/10.1109/TIFS.2009.2033757 +Hong Chang,Improving face recognition via narrowband spectral range selection using Jeffrey divergence.,2009,4,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs4.html#ChangYKAA09,https://doi.org/10.1109/TIFS.2008.2012211 +Lei Xu 0016,Dynamic Privacy Pricing: A Multi-Armed Bandit Approach With Time-Variant Rewards.,2017,12,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs12.html#XuJQZLR17,https://doi.org/10.1109/TIFS.2016.2611487 +Jiachun Liao,Hypothesis Testing Under Mutual Information Privacy Constraints in the High Privacy Regime.,2018,13,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs13.html#LiaoSTC18,https://doi.org/10.1109/TIFS.2017.2779108 +Qingzhong Liu,Temporal derivative-based spectrum and mel-cepstrum audio steganalysis.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#LiuSQ09,https://doi.org/10.1109/TIFS.2009.2024718 +Nima Tavangaran,Secret-Key Generation and Convexity of the Rate Region Using Infinite Compound Sources.,2018,13,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs13.html#TavangaranSPB18,https://doi.org/10.1109/TIFS.2018.2809680 +Zahra Ahmadian,Recursive Linear and Differential Cryptanalysis of Ultralightweight Authentication Protocols.,2013,8,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs8.html#AhmadianSA13,https://doi.org/10.1109/TIFS.2013.2263499 +Xiaofu Wu,Artificial-Noise-Aided Message Authentication Codes With Information-Theoretic Security.,2016,11,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs11.html#WuYLX16,https://doi.org/10.1109/TIFS.2016.2524514 +Sheng Wei 0001,Quantitative Intellectual Property Protection Using Physical-Level Characterization.,2013,8,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs8.html#WeiNP13,https://doi.org/10.1109/TIFS.2013.2277976 +Zinelabidine Boulkenafet,Face Spoofing Detection Using Colour Texture Analysis.,2016,11,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs11.html#BoulkenafetKH16,https://doi.org/10.1109/TIFS.2016.2555286 +Shraboni Jana,Trusted Collaborative Spectrum Sensing for Mobile Cognitive Radio Networks.,2013,8,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs8.html#JanaZCM13,https://doi.org/10.1109/TIFS.2013.2273305 +Samir Shah,Iris segmentation using geodesic active contours.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#ShahR09,https://doi.org/10.1109/TIFS.2009.2033225 +Neetesh Saxena,Authentication and Authorization Scheme for Various User Roles and Devices in Smart Grid.,2016,11,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs11.html#SaxenaCL16,https://doi.org/10.1109/TIFS.2015.2512525 +Hassan Salmani,COTD: Reference-Free Hardware Trojan Detection and Recovery Based on Controllability and Observability in Gate-Level Netlist.,2017,12,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs12.html#Salmani17,https://doi.org/10.1109/TIFS.2016.2613842 +Petar Popovski,Wireless secrecy in cellular systems with infrastructure-aided cooperation.,2009,4,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs4.html#PopovskiS09,https://doi.org/10.1109/TIFS.2009.2020776 +Heecheol Yang,Private Information Retrieval for Secure Distributed Storage Systems.,2018,13,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs13.html#YangSL18,https://doi.org/10.1109/TIFS.2018.2833050 +Rubén Heras Evangelio,Adaptively Splitted GMM With Feedback Improvement for the Task of Background Subtraction.,2014,9,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs9.html#EvangelioPKS14,https://doi.org/10.1109/TIFS.2014.2313919 +Richa Singh,Plastic surgery: a new dimension to face recognition.,2010,5,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs5.html#SinghVBBNN10,https://doi.org/10.1109/TIFS.2010.2054083 +Bo Peng 0002,Optimized 3D Lighting Environment Estimation for Image Forgery Detection.,2017,12,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs12.html#PengWDT17,https://doi.org/10.1109/TIFS.2016.2623589 +Hao-Gong Chou,A Fuzzy-Model-Based Chaotic Synchronization and Its Implementation on a Secure Communication System.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#ChouCWL13,https://doi.org/10.1109/TIFS.2013.2286268 +Fawaz S. Al-Qahtani,Secrecy Analysis of MIMO Wiretap Channels With Low-Complexity Receivers Under Imperfect Channel Estimation.,2017,12,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs12.html#Al-QahtaniHHRZA17,https://doi.org/10.1109/TIFS.2016.2604490 +Felix Wang,Sparse Coding for N-Gram Feature Extraction and Training for File Fragment Classification.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#WangQWAJ18,https://doi.org/10.1109/TIFS.2018.2823697 +Man Ho Au,Realizing Fully Secure Unrestricted ID-Based Ring Signature in the Standard Model Based on HIBE.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#AuLSZ13,https://doi.org/10.1109/TIFS.2013.2282908 +Sheng Li 0006,Fingerprint Combination for Privacy Protection.,2013,8,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs8.html#LiK13,https://doi.org/10.1109/TIFS.2012.2234740 +Mohsen Rezvani,Interdependent Security Risk Analysis of Hosts and Flows.,2015,10,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs10.html#RezvaniSIBJ15,https://doi.org/10.1109/TIFS.2015.2455414 +Mohammad Reza Khalili Shoja,Secret Common Randomness From Routing Metadata in Ad Hoc Networks.,2016,11,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs11.html#ShojaAWD16,https://doi.org/10.1109/TIFS.2016.2550424 +Xiaofang Xia,ABSI: An Adaptive Binary Splitting Algorithm for Malicious Meter Inspection in Smart Grid.,2019,14,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs14.html#XiaXL19,https://doi.org/10.1109/TIFS.2018.2854703 +Neil J. Grabham,An Evaluation of Otoacoustic Emissions as a Biometric.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#GrabhamSCLWCB13,https://doi.org/10.1109/TIFS.2012.2228854 +Xiaohui Han,Linking Multiple Online Identities in Criminal Investigations: A Spectral Co-Clustering Framework.,2017,12,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs12.html#HanWCMZ17,https://doi.org/10.1109/TIFS.2017.2704906 +Jinyu Zuo,On Generation and Analysis of Synthetic Iris Images.,2007,2,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs2.html#ZuoSC07,https://doi.org/10.1109/TIFS.2006.890305 +B. Rosario Campomanes álvarez,Modeling Facial Soft Tissue Thickness for Automatic Skull-Face Overlay.,2015,10,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs10.html#AlvarezICDC15,https://doi.org/10.1109/TIFS.2015.2441000 +Chih-Yi Chiu,Video Query Reformulation for Near-Duplicate Detection.,2012,7,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs7.html#ChiuLH12,https://doi.org/10.1109/TIFS.2012.2207115 +Hu Xiong,Revocable and Scalable Certificateless Remote Authentication Protocol With Anonymity for Wireless Body Area Networks.,2015,10,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs10.html#XiongQ15,https://doi.org/10.1109/TIFS.2015.2414399 +Ming-Hour Yang,RIHT: A Novel Hybrid IP Traceback Scheme.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#YangY12,https://doi.org/10.1109/TIFS.2011.2169960 +Shukun Yang,DPPG: A Dynamic Password Policy Generation System.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#YangJB18,https://doi.org/10.1109/TIFS.2017.2737971 +Hongmei Gou,Intrinsic sensor noise features for forensic analysis on scanners and scanned images.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#GouSW09,https://doi.org/10.1109/TIFS.2009.2026458 +Adam C. Polak,Wireless Device Identification Based on RF Oscillator Imperfections.,2015,10,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs10.html#PolakG15,https://doi.org/10.1109/TIFS.2015.2464778 +Md. Tauhid Bin Iqbal,Directional Age-Primitive Pattern (DAPP) for Human Age Group Recognition and Age Estimation.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#IqbalSRAC17,https://doi.org/10.1109/TIFS.2017.2695456 +Attila Altay Yavuz,An Efficient Real-Time Broadcast Authentication Scheme for Command and Control Messages.,2014,9,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs9.html#Yavuz14,https://doi.org/10.1109/TIFS.2014.2351255 +Chin-Chen Chang 0001,Self-verifying visual secret sharing using error diffusion and interpolation techniques.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#ChangLLL09,https://doi.org/10.1109/TIFS.2009.2034203 +Wei Wang 0100,On the Impact of Adaptive Eavesdroppers in Multi-Antenna Cellular Networks.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#WangTLL18,https://doi.org/10.1109/TIFS.2017.2746010 +Yu Liu,The CRC-NTMAC for Noisy Message Authentication.,2006,1,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs1.html#LiuB06,https://doi.org/10.1109/TIFS.2006.885027 +Weize Quan,Distinguishing Between Natural and Computer-Generated Images Using Convolutional Neural Networks.,2018,13,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs13.html#QuanWYZ18,https://doi.org/10.1109/TIFS.2018.2834147 +Jinku Li,Comprehensive and Efficient Protection of Kernel Control Data.,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#LiWBSGJ11,https://doi.org/10.1109/TIFS.2011.2159712 +Mario Cagalj,Timing Attacks on Cognitive Authentication Schemes.,2015,10,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs10.html#CagaljPB15,https://doi.org/10.1109/TIFS.2014.2376177 +Adam L. Young,On Fundamental Limitations of Proving Data Theft.,2006,1,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs1.html#YoungY06,https://doi.org/10.1109/TIFS.2006.885025 +R. Weaver,Visualizing and Modeling the Scanning Behavior of the Conficker Botnet in the Presence of User and Network Activity.,2015,10,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs10.html#Weaver15,https://doi.org/10.1109/TIFS.2015.2396478 +Sevinç Bayram,Efficient Sensor Fingerprint Matching Through Fingerprint Binarization.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#BayramSM12,https://doi.org/10.1109/TIFS.2012.2192272 +Francesco Nicolo,Long Range Cross-Spectral Face Recognition: Matching SWIR Against Visible Light Images.,2012,7,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs7.html#NicoloS12,https://doi.org/10.1109/TIFS.2012.2213813 +Gökhan Gül,JPEG Image Steganalysis Using Multivariate PDF Estimates With MRF Cliques.,2013,8,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs8.html#GulK13,https://doi.org/10.1109/TIFS.2013.2247399 +Hassan Salmani,Layout-Aware Switching Activity Localization to Enhance Hardware Trojan Detection.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#SalmaniT12,https://doi.org/10.1109/TIFS.2011.2164908 +Santosh Tirunagari,Detection of Face Spoofing Using Visual Dynamics.,2015,10,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs10.html#TirunagariPWISH15,https://doi.org/10.1109/TIFS.2015.2406533 +Muhammad Yasin,Testing the Trustworthiness of IC Testing: An Oracle-Less Attack on IC Camouflaging.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#YasinSR17,https://doi.org/10.1109/TIFS.2017.2710954 +Diogo C. Garcia,Face-Spoofing 2D-Detection Based on Moiré-Pattern Analysis.,2015,10,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs10.html#GarciaQ15,https://doi.org/10.1109/TIFS.2015.2411394 +Hachiro Fujita,On the Secrecy Capacity of Wiretap Channels With Side Information at the Transmitter.,2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#Fujita16,https://doi.org/10.1109/TIFS.2016.2582558 +Thirapiroon Thongkamwitoon,An Image Recapture Detection Algorithm Based on Learning Dictionaries of Edge Profiles.,2015,10,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs10.html#ThongkamwitoonM15,https://doi.org/10.1109/TIFS.2015.2392566 +Qiben Yan,Jamming Resilient Communication Using MIMO Interference Cancellation.,2016,11,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs11.html#YanZJ0LH16,https://doi.org/10.1109/TIFS.2016.2535906 +Jian Ye,Deep Learning Hierarchical Representations for Image Steganalysis.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#YeNY17,https://doi.org/10.1109/TIFS.2017.2710946 +Tiago Jose de Carvalho,Illuminant-Based Transformed Spaces for Image Forensics.,2016,11,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs11.html#CarvalhoFPTR16,https://doi.org/10.1109/TIFS.2015.2506548 +Ozgur Dalkilic,A Detection Theoretic Approach to Digital Fingerprinting With Focused Receivers Under Uniform Linear Averaging Gaussian Attacks.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#DalkilicEVM10,https://doi.org/10.1109/TIFS.2010.2078505 +Yi Wang 0017,Learning Compact Binary Codes for Hash-Based Fingerprint Indexing.,2015,10,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs10.html#WangWCY15,https://doi.org/10.1109/TIFS.2015.2421332 +Marie-Francine Moens,Identifying and Resolving Hidden Text Salting.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#MoensBBG10,https://doi.org/10.1109/TIFS.2010.2063024 +Kan Chen,Evaluating Node Reliability in Cooperative MIMO Networks.,2016,11,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs11.html#ChenN16,https://doi.org/10.1109/TIFS.2016.2532841 +Jeremiah R. Barr,Framework for Active Clustering With Ensembles.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#BarrBF14,https://doi.org/10.1109/TIFS.2014.2359369 +Unsang Park,Face matching and retrieval using soft biometrics.,2010,5,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs5.html#ParkJ10,https://doi.org/10.1109/TIFS.2010.2049842 +Ali Kuhestani,Joint Relay Selection and Power Allocation in Large-Scale MIMO Systems With Untrusted Relays and Passive Eavesdroppers.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#KuhestaniMM18,https://doi.org/10.1109/TIFS.2017.2750102 +Udit Budhia,Digital Video Steganalysis Exploiting Statistical Visibility in the Temporal Domain.,2006,1,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs1.html#BudhiaKZ06,https://doi.org/10.1109/TIFS.2006.885020 +Mehmet Necip Kurt,Distributed Quickest Detection of Cyber-Attacks in Smart Grid.,2018,13,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs13.html#KurtY018,https://doi.org/10.1109/TIFS.2018.2800908 +Jianquan Yang,An Effective Method for Detecting Double JPEG Compression With the Same Quantization Matrix.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#YangXZKS14,https://doi.org/10.1109/TIFS.2014.2359368 +Abdulhadi Shoufan,Drone Pilot Identification by Classifying Radio-Control Signals.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#ShoufanASD18,https://doi.org/10.1109/TIFS.2018.2819126 +Bryan A. Campbell,Straight-party voting: what do voters think?,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#CampbellB09,https://doi.org/10.1109/TIFS.2009.2031947 +Walter J. Scheirer,Learning for Meta-Recognition.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#ScheirerRPB12,https://doi.org/10.1109/TIFS.2012.2192430 +Fernando Pérez-González,Quantization-Based Data Hiding Robust to Linear-Time-Invariant Filtering.,2008,3,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs3.html#Perez-GonzalezM08,https://doi.org/10.1109/TIFS.2008.922057 +Haruyuki Iwama,The OU-ISIR Gait Database Comprising the Large Population Dataset and Performance Evaluation of Gait Recognition.,2012,7,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs7.html#IwamaOMY12,https://doi.org/10.1109/TIFS.2012.2204253 +Athos Antonelli,Fake finger detection by skin distortion analysis.,2006,1,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs1.html#AntonelliCMM06,https://doi.org/10.1109/TIFS.2006.879289 +Yuhong Liu,Securing Online Reputation Systems Through Trust Modeling and Temporal Analysis.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#LiuSLK13,https://doi.org/10.1109/TIFS.2013.2238929 +Emad Sami Jaha,From Clothing to Identity: Manual and Automatic Soft Biometrics.,2016,11,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs11.html#JahaN16,https://doi.org/10.1109/TIFS.2016.2584001 +Da Luo,Detection of Double Compressed AMR Audio Using Stacked Autoencoder.,2017,12,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs12.html#LuoYLH17,https://doi.org/10.1109/TIFS.2016.2622012 +Wei Yu 0003,Defense Against Injecting Traffic Attacks in Wireless Mobile Ad-Hoc Networks.,2007,2,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs2.html#YuL07,https://doi.org/10.1109/TIFS.2007.897269 +Alfredo Rial,A Provably Secure Anonymous Buyer-Seller Watermarking Protocol.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#RialDBPP10,https://doi.org/10.1109/TIFS.2010.2072830 +Paulo Max Gil Innocencio Reis,ESPRIT-Hilbert-Based Audio Tampering Detection With SVM Classifier for Forensic Analysis via Electrical Network Frequency.,2017,12,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs12.html#ReisCMG17,https://doi.org/10.1109/TIFS.2016.2636095 +Zekeriya Erkin,Generating Private Recommendations Efficiently Using Homomorphic Encryption and Data Packing.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#ErkinVTL12,https://doi.org/10.1109/TIFS.2012.2190726 +Tian Wang 0002,Detection of Abnormal Visual Events via Global Optical Flow Orientation Histogram.,2014,9,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs9.html#WangS14,https://doi.org/10.1109/TIFS.2014.2315971 +Mingshen Sun,Monet: A User-Oriented Behavior-Based Malware Variants Detection System for Android.,2017,12,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs12.html#SunLLML17,https://doi.org/10.1109/TIFS.2016.2646641 +Xiaolong Li,A Novel Reversible Data Hiding Scheme Based on Two-Dimensional Difference-Histogram Modification.,2013,8,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs8.html#LiZGY13,https://doi.org/10.1109/TIFS.2013.2261062 +Shiva Houshmand,Next Gen PCFG Password Cracking.,2015,10,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs10.html#HoushmandAF15,https://doi.org/10.1109/TIFS.2015.2428671 +Qian Wang,On the Characteristics of the Worm Infection Family Tree.,2012,7,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs7.html#WangCC12,https://doi.org/10.1109/TIFS.2012.2204981 +Thijs Veugen,Linear Round Bit-Decomposition of Secret-Shared Values.,2015,10,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs10.html#Veugen15,https://doi.org/10.1109/TIFS.2014.2373811 +Shuicheng Yan,A Parameter-Free Framework for General Supervised Subspace Learning.,2007,2,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs2.html#YanLTH07,https://doi.org/10.1109/TIFS.2006.890313 +Rui Zhao 0005,Sensor-Based Mobile Web Cross-Site Input Inference Attacks and Defenses.,2019,14,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs14.html#ZhaoYH19,https://doi.org/10.1109/TIFS.2018.2843353 +Keyurkumar Patel,Secure Face Unlock: Spoof Detection on Smartphones.,2016,11,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs11.html#PatelHJ16,https://doi.org/10.1109/TIFS.2016.2578288 +Hsin-Wen Kung,Dual Subspace Nonnegative Graph Embedding for Identity-Independent Expression Recognition.,2015,10,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs10.html#KungTH15,https://doi.org/10.1109/TIFS.2015.2390138 +Taeho Jung,Control Cloud Data Access Privilege and Anonymity With Fully Anonymous Attribute-Based Encryption.,2015,10,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs10.html#JungLWW15,https://doi.org/10.1109/TIFS.2014.2368352 +Cai Li,A New Biocryptosystem-Oriented Security Analysis Framework and Implementation of Multibiometric Cryptosystems Based on Decision Level Fusion.,2015,10,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs10.html#LiHPS15,https://doi.org/10.1109/TIFS.2015.2402593 +Miguel A. Ferrer,Hand-Shape Biometrics Combining the Visible and Short-Wave Infrared Bands.,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#FerrerM11,https://doi.org/10.1109/TIFS.2011.2162948 +Xiaobei Liu,A Study on Reconstruction of Linear Scrambler Using Dual Words of Channel Encoder.,2013,8,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs8.html#LiuKCW13,https://doi.org/10.1109/TIFS.2013.2246515 +Dawen Xu 0001,Data Hiding in Encrypted H.264/AVC Video Streams by Codeword Substitution.,2014,9,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs9.html#XuWS14,https://doi.org/10.1109/TIFS.2014.2302899 +Pratik Chattopadhyay,Frontal Gait Recognition From Incomplete Sequences Using RGB-D Camera.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#ChattopadhyaySM14,https://doi.org/10.1109/TIFS.2014.2352114 +Chia-Hua Lin,Secure Transmission Using MIMO Precoding.,2014,9,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs9.html#LinTL14,https://doi.org/10.1109/TIFS.2014.2309211 +Luca Calderoni,Probabilistic Properties of the Spatial Bloom Filters and Their Relevance to Cryptographic Protocols.,2018,13,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs13.html#CalderoniPM18,https://doi.org/10.1109/TIFS.2018.2799486 +Shan He 0002,Collusion-Resistant Video Fingerprinting for Large User Group.,2007,2,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs2.html#HeW07,https://doi.org/10.1109/TIFS.2007.908179 +Samet Akcay,Using Deep Convolutional Neural Network Architectures for Object Classification and Detection Within X-Ray Baggage Security Imagery.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#AkcayKWB18,https://doi.org/10.1109/TIFS.2018.2812196 +Chia-Mu Yu,Localized Algorithms for Detection of Node Replication Attacks in Mobile Sensor Networks.,2013,8,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs8.html#YuTLK13,https://doi.org/10.1109/TIFS.2013.2255285 +Shigen Shen,Differential Game-Based Strategies for Preventing Malware Propagation in Wireless Sensor Networks.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#ShenLHVWC14,https://doi.org/10.1109/TIFS.2014.2359333 +Pablo David Gutiérrez,A High Performance Fingerprint Matching System for Large Databases Based on GPU.,2014,9,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs9.html#GutierrezLHB14,https://doi.org/10.1109/TIFS.2013.2291220 +Mario Hildebrandt,StirTraceV2.0: Enhanced Benchmarking and Tuning of Printed Fingerprint Detection.,2015,10,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs10.html#HildebrandtD15,https://doi.org/10.1109/TIFS.2015.2405412 +Luis Pérez-Freire,Security of Lattice-Based Data Hiding Against the Watermarked-Only Attack.,2008,3,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs3.html#Perez-FreireP08,https://doi.org/10.1109/TIFS.2008.2002938 +Iris Safaka,Creating Secrets Out of Packet Erasures.,2016,11,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs11.html#SafakaCAF16,https://doi.org/10.1109/TIFS.2016.2520887 +Yi-Chen Chen,Ambiguously Labeled Learning Using Dictionaries.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#ChenPCP14,https://doi.org/10.1109/TIFS.2014.2359642 +Tsung-Yuan Liu,Quotation Authentication: A New Approach and Efficient Solutions by Cascaded Hashing Techniques.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#LiuT10,https://doi.org/10.1109/TIFS.2010.2072501 +Anderson Rocha,Authorship Attribution for Social Media Forensics.,2017,12,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs12.html#RochaSFCTSCS17,https://doi.org/10.1109/TIFS.2016.2603960 +Lifeng Wang 0002,Security Enhancement of Cooperative Single Carrier Systems.,2015,10,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs10.html#WangKDEP15,https://doi.org/10.1109/TIFS.2014.2360437 +Steven Gordon,Recursive Matrix Oblivious RAM: An ORAM Construction for Constrained Storage Devices.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#GordonHMSSW17,https://doi.org/10.1109/TIFS.2017.2730584 +Trevor J. Bihl,Feature Selection for RF Fingerprinting With Multiple Discriminant Analysis and Using ZigBee Device Emissions.,2016,11,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs11.html#BihlBT16,https://doi.org/10.1109/TIFS.2016.2561902 +Mehmet Necip Kurt,Real-Time Detection of Hybrid and Stealthy Cyber-Attacks in Smart Grid.,2019,14,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs14.html#KurtYW19,https://doi.org/10.1109/TIFS.2018.2854745 +Mehmet Utku Celik,Lookup-Table-Based Secure Client-Side Embedding for Spread-Spectrum Watermarks.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#CelikLKV08,https://doi.org/10.1109/TIFS.2008.926988 +Jiwen Lu,Human Identity and Gender Recognition From Gait Sequences With Arbitrary Walking Directions.,2014,9,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs9.html#LuWM14,https://doi.org/10.1109/TIFS.2013.2291969 +Zhong Zhang,Attribute Regularization Based Human Action Recognition.,2013,8,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs8.html#ZhangWXZL13,https://doi.org/10.1109/TIFS.2013.2258152 +Bogdan Carbunar,${\rm PROFIL}_{R}$: Toward Preserving Privacy and Functionality in Geosocial Networks.,2014,9,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs9.html#CarbunarRBRV14,https://doi.org/10.1109/TIFS.2014.2307697 +Lifeng Lai,Privacy-Security Trade-Offs in Biometric Security Systems - Part II: Multiple Use Case.,2011,6,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs6.html#LaiHP11a,https://doi.org/10.1109/TIFS.2010.2098873 +Tu-Thach Quach,Optimal Cover Estimation Methods and Steganographic Payload Location.,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#Quach11,https://doi.org/10.1109/TIFS.2011.2160855 +Jian Yang 0003,Horizontal and Vertical 2DPCA-Based Discriminant Analysis for Face Verification on a Large-Scale Database.,2007,2,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs2.html#YangL07,https://doi.org/10.1109/TIFS.2007.910239 +Jonathon M. Smereka,Probabilistic Deformation Models for Challenging Periocular Image Verification.,2015,10,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs10.html#SmerekaBK15,https://doi.org/10.1109/TIFS.2015.2434271 +R. Raghavendra,Robust Scheme for Iris Presentation Attack Detection Using Multiscale Binarized Statistical Image Features.,2015,10,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs10.html#RaghavendraB15,https://doi.org/10.1109/TIFS.2015.2400393 +Maneli Noorkami,A Framework for Robust Watermarking of H.264-Encoded Video With Controllable Detection Performance.,2007,2,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs2.html#NoorkamiM07,https://doi.org/10.1109/TIFS.2006.890306 +Debiao He,Efficient and Anonymous Mobile User Authentication Protocol Using Self-Certified Public Key Cryptography for Multi-Server Architectures.,2016,11,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs11.html#HeZKW16,https://doi.org/10.1109/TIFS.2016.2573746 +Zheng Chu,Game Theory-Based Resource Allocation for Secure WPCN Multiantenna Multicasting Systems.,2018,13,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs13.html#ChuNC18,https://doi.org/10.1109/TIFS.2017.2774441 +Yidong Li,On Identity Disclosure Control for Hypergraph-Based Data Publishing.,2013,8,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs8.html#LiS13,https://doi.org/10.1109/TIFS.2013.2271425 +Sanghoon Lee 0003,Fingerprint-Quality Index Using Gradient Components.,2008,3,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs3.html#LeeCCK08,https://doi.org/10.1109/TIFS.2008.2007245 +Roberto Di Pietro,COKE Crypto-Less Over-the-Air Key Establishment.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#PietroO13,https://doi.org/10.1109/TIFS.2012.2226718 +Maël Le Treust,Rate Adaptation for Secure HARQ Protocols.,2018,13,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs13.html#TreustSL18,https://doi.org/10.1109/TIFS.2018.2833799 +Marina Blanton,Analysis of Reusability of Secure Sketches and Fuzzy Extractors.,2013,8,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs8.html#BlantonA13,https://doi.org/10.1109/TIFS.2013.2272786 +Xiaozheng Zhang 0002,Recognizing Rotated Faces From Frontal and Side Views: An Approach Toward Effective Use of Mugshot Databases.,2008,3,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs3.html#ZhangGL08,https://doi.org/10.1109/TIFS.2008.2004286 +Yanxiong Li,Mobile Phone Clustering From Speech Recordings Using Deep Representation and Spectral Clustering.,2018,13,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs13.html#LiZLZYH18,https://doi.org/10.1109/TIFS.2017.2774505 +Pawel Korus,Multi-Scale Analysis Strategies in PRNU-Based Tampering Localization.,2017,12,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs12.html#KorusH17,https://doi.org/10.1109/TIFS.2016.2636089 +Yang Li 0001,New Fault-Based Side-Channel Attack Using Fault Sensitivity.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#LiOS12,https://doi.org/10.1109/TIFS.2011.2169666 +Haoyu Ma,Integrated Software Fingerprinting via Neural-Network-Based Control Flow Obfuscation.,2016,11,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs11.html#MaLYJG16,https://doi.org/10.1109/TIFS.2016.2555287 +Abhranil Maiti,A Robust Physical Unclonable Function With Enhanced Challenge-Response Set.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#MaitiKS12,https://doi.org/10.1109/TIFS.2011.2165540 +Daniel Luchaup,Speculative Parallel Pattern Matching.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#LuchaupSEJ11,https://doi.org/10.1109/TIFS.2011.2112647 +Zhiguo Wan,HASBE: A Hierarchical Attribute-Based Solution for Flexible and Scalable Access Control in Cloud Computing.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#WanLD12,https://doi.org/10.1109/TIFS.2011.2172209 +Bogdan Carbunar,Tipping Pennies? Privately Practical Anonymous Micropayments.,2012,7,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs7.html#CarbunarCS12,https://doi.org/10.1109/TIFS.2012.2204982 +Roel Maes,A Pay-per-Use Licensing Scheme for Hardware IP Cores in Recent SRAM-Based FPGAs.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#MaesSV12,https://doi.org/10.1109/TIFS.2011.2169667 +Savvas Argyropoulos,A channel coding approach for human authentication from gait sequences.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#ArgyropoulosTIS09,https://doi.org/10.1109/TIFS.2009.2025858 +Saeid Wahabi,On Evaluating ECG Biometric Systems: Session-Dependence and Body Posture.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#WahabiPHH14,https://doi.org/10.1109/TIFS.2014.2360430 +Yi Han 0003,A Game Theoretical Approach to Defend Against Co-Resident Attacks in Cloud Computing: Preventing Co-Residence Using Semi-Supervised Learning.,2016,11,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs11.html#HanACLR16,https://doi.org/10.1109/TIFS.2015.2505680 +Muhammad Qasim Ali,Firewall Policy Reconnaissance: Techniques and Analysis.,2014,9,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs9.html#AliAS14,https://doi.org/10.1109/TIFS.2013.2296874 +Mauro Conti,CRêPE: A System for Enforcing Fine-Grained Context-Related Policies on Android.,2012,7,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs7.html#ContiCFZ12,https://doi.org/10.1109/TIFS.2012.2204249 +Yu-Chi Chen,Fully Incrementing Visual Cryptography From a Succinct Non-Monotonic Structure.,2017,12,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs12.html#Chen17,https://doi.org/10.1109/TIFS.2016.2641378 +Jiangtao Li 0003,Privacy-Preserving Public Auditing Protocol for Low-Performance End Devices in Cloud.,2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#LiZLQD16,https://doi.org/10.1109/TIFS.2016.2587242 +Yanyang Yan,Recolored Image Detection via a Deep Discriminative Model.,2019,14,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs14.html#YanRC19,https://doi.org/10.1109/TIFS.2018.2834155 +Hui-Yu Huang,A Video Watermarking Technique Based on Pseudo-3-D DCT and Quantization Index Modulation.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#HuangYH10,https://doi.org/10.1109/TIFS.2010.2080675 +Jun-Yong Zhu,Matching NIR Face to VIS Face Using Transduction.,2014,9,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs9.html#ZhuZLL14,https://doi.org/10.1109/TIFS.2014.2299977 +Neeti Pokhriyal,Cognitive-Biometric Recognition From Language Usage: A Feasibility Study.,2017,12,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs12.html#PokhriyalTNG17,https://doi.org/10.1109/TIFS.2016.2604213 +Hugo Proença,Deep-PRWIS: Periocular Recognition Without the Iris and Sclera Using Deep Learning Frameworks.,2018,13,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs13.html#ProencaN18,https://doi.org/10.1109/TIFS.2017.2771230 +Muhammad R. A. Khandaker,Constructive Interference Based Secure Precoding: A New Dimension in Physical Layer Security.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#KhandakerMW18,https://doi.org/10.1109/TIFS.2018.2815541 +Te Sun Han,Wiretap Channels With One-Time State Information: Strong Secrecy.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#HanES18,https://doi.org/10.1109/TIFS.2017.2746008 +Kaitai Liang,Searchable Attribute-Based Mechanism With Efficient Data Sharing for Secure Cloud Storage.,2015,10,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs10.html#LiangS15,https://doi.org/10.1109/TIFS.2015.2442215 +Sheng Li 0006,An Improved Scheme for Full Fingerprint Reconstruction.,2012,7,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs7.html#LiK12,https://doi.org/10.1109/TIFS.2012.2212012 +Timothy C. Faltemier,A Region Ensemble for 3-D Face Recognition.,2008,3,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs3.html#FaltemierBF08,https://doi.org/10.1109/TIFS.2007.916287 +Cai-Ping Yan,Multi-Scale Difference Map Fusion for Tamper Localization Using Binary Ranking Hashing.,2017,12,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs12.html#YanP17,https://doi.org/10.1109/TIFS.2017.2699942 +Lin Ding 0001,Related Key Chosen IV Attack on Grain-128a Stream Cipher.,2013,8,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs8.html#DingG13,https://doi.org/10.1109/TIFS.2013.2256419 +Jiliang Zhang 0002,A PUF-FSM Binding Scheme for FPGA IP Protection and Pay-Per-Device Licensing.,2015,10,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs10.html#ZhangLLQ15,https://doi.org/10.1109/TIFS.2015.2400413 +Elizabeth Hou,Latent Laplacian Maximum Entropy Discrimination for Detection of High-Utility Anomalies.,2018,13,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs13.html#HouSH18,https://doi.org/10.1109/TIFS.2018.2790580 +Jean-Philippe Boyer,Scalar DC-QIM for Semifragile Authentication.,2008,3,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs3.html#BoyerDB08,https://doi.org/10.1109/TIFS.2008.2004285 +Daksha Yadav,Unraveling the Effect of Textured Contact Lenses on Iris Recognition.,2014,9,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs9.html#YadavKDSVB14,https://doi.org/10.1109/TIFS.2014.2313025 +Sandhya Koteshwara,Key-Based Dynamic Functional Obfuscation of Integrated Circuits Using Sequentially Triggered Mode-Based Design.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#KoteshwaraKP18,https://doi.org/10.1109/TIFS.2017.2738600 +Wei Song 0006,Publicly Verifiable Computation of Polynomials Over Outsourced Data With Multiple Sources.,2017,12,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs12.html#SongWWSLP17,https://doi.org/10.1109/TIFS.2017.2705628 +Oleg Komogortsev,Oculomotor Plant Characteristics: The Effects of Environment and Stimulus.,2016,11,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs11.html#KomogortsevKH16,https://doi.org/10.1109/TIFS.2015.2503263 +Phillip A. Regalia,Cryptographic Secrecy of Steganographic Matrix Embedding.,2008,3,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs3.html#Regalia08,https://doi.org/10.1109/TIFS.2008.2002940 +Ping Hu,Optimal Coding and Allocation for Perfect Secrecy in Multiple Clouds.,2016,11,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs11.html#HuSHC16,https://doi.org/10.1109/TIFS.2015.2500193 +Jianting Ning,White-Box Traceable Ciphertext-Policy Attribute-Based Encryption Supporting Flexible Attributes.,2015,10,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs10.html#NingDCWL15,https://doi.org/10.1109/TIFS.2015.2405905 +Shulan Wang,An Efficient File Hierarchy Attribute-Based Encryption Scheme in Cloud Computing.,2016,11,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs11.html#WangZLYCX16,https://doi.org/10.1109/TIFS.2016.2523941 +Shouhuai Xu,Exploiting Trust-Based Social Networks for Distributed Protection of Sensitive Data.,2011,6,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs6.html#XuLPW11,https://doi.org/10.1109/TIFS.2010.2093521 +Yue Li 0002,Personal Information in Passwords and Its Security Implications.,2017,12,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs12.html#LiWS17,https://doi.org/10.1109/TIFS.2017.2705627 +Avik Sengupta,Fundamental Limits of Caching With Secure Delivery.,2015,10,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs10.html#SenguptaTC15,https://doi.org/10.1109/TIFS.2014.2375553 +Xudong Jiang,Fingerprint Retrieval for Identification.,2006,1,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs1.html#JiangLK06,https://doi.org/10.1109/TIFS.2006.885021 +Ronald William Smith,Predictable Three-Parameter Design of Network Covert Communication Systems.,2011,6,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs6.html#SmithK11,https://doi.org/10.1109/TIFS.2010.2094187 +Seung-Hyun Seo,Effective Key Management in Dynamic Wireless Sensor Networks.,2015,10,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs10.html#SeoWSB15,https://doi.org/10.1109/TIFS.2014.2375555 +Mustafa Al-Ani,On the SPN Estimation in Image Forensics: A Systematic Empirical Evaluation.,2017,12,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs12.html#Al-AniK17,https://doi.org/10.1109/TIFS.2016.2640938 +Zdenka Sitova,HMOG: New Behavioral Biometric Features for Continuous Authentication of Smartphone Users.,2016,11,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs11.html#SitovaSYPZGB16,https://doi.org/10.1109/TIFS.2015.2506542 +Petar S. Aleksic,Automatic facial expression recognition using facial animation parameters and multistream HMMs.,2006,1,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs1.html#AleksicK06,https://doi.org/10.1109/TIFS.2005.863510 +Emanuele Maiorana,Longitudinal Evaluation of EEG-Based Biometric Recognition.,2018,13,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs13.html#MaioranaC18,https://doi.org/10.1109/TIFS.2017.2778010 +Makkena Purnachandra Rao,Harnessing Motion Blur to Unveil Splicing.,2014,9,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs9.html#RaoRS14,https://doi.org/10.1109/TIFS.2014.2302895 +Abolfazl Diyanat,A Dummy-Based Approach for Preserving Source Rate Privacy.,2016,11,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs11.html#DiyanatKS16,https://doi.org/10.1109/TIFS.2016.2515050 +Hasini Gunasinghe,PrivBioMTAuth: Privacy Preserving Biometrics-Based and User Centric Protocol for User Authentication From Mobile Phones.,2018,13,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs13.html#GunasingheB18,https://doi.org/10.1109/TIFS.2017.2777787 +Kien Nguyen,Quality-Driven Super-Resolution for Less Constrained Iris Recognition at a Distance and on the Move.,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#NguyenFSD11,https://doi.org/10.1109/TIFS.2011.2159597 +Yuan Zhang 0006,Efficient Public Verification of Data Integrity for Cloud Storage Systems from Indistinguishability Obfuscation.,2017,12,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs12.html#ZhangXLLMZ17,https://doi.org/10.1109/TIFS.2016.2631951 +Huaqun Wang,TPP: Traceable Privacy-Preserving Communication and Precise Reward for Vehicle-to-Grid Networks in Smart Grids.,2015,10,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs10.html#WangQWXD15,https://doi.org/10.1109/TIFS.2015.2455513 +Changyu Dong,Approximating Private Set Union/Intersection Cardinality With Logarithmic Complexity.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#DongL17,https://doi.org/10.1109/TIFS.2017.2721360 +Zhangjie Fu,Toward Efficient Multi-Keyword Fuzzy Search Over Encrypted Outsourced Data With Accuracy Improvement.,2016,11,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs11.html#FuWGSR16,https://doi.org/10.1109/TIFS.2016.2596138 +Zhenxin Zhan,Characterizing Honeypot-Captured Cyber Attacks: Statistical Framework and Case Study.,2013,8,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs8.html#ZhanXX13,https://doi.org/10.1109/TIFS.2013.2279800 +Juntao Chen,Security as a Service for Cloud-Enabled Internet of Controlled Things Under Advanced Persistent Threats: A Contract Design Approach.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#ChenZ17,https://doi.org/10.1109/TIFS.2017.2718489 +Xufeng Lin,Preprocessing Reference Sensor Pattern Noise via Spectrum Equalization.,2016,11,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs11.html#LinL16,https://doi.org/10.1109/TIFS.2015.2478748 +Wei Zhang 0031,Detecting and extracting the photo composites using planar homography and graph cut.,2010,5,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs5.html#ZhangCQHZZ10,https://doi.org/10.1109/TIFS.2010.2051666 +Yiyu Chen 0002,A High-Security EEG-Based Login System with RSVP Stimuli and Dry Electrodes.,2016,11,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs11.html#ChenASWRKLBF16,https://doi.org/10.1109/TIFS.2016.2577551 +Manami Sasaki,Visual Secret Sharing Schemes Encrypting Multiple Images.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#SasakiW18,https://doi.org/10.1109/TIFS.2017.2750104 +Hussain M. J. Almohri,Misery Digraphs: Delaying Intrusion Attacks in Obscure Clouds.,2018,13,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs13.html#AlmohriWE18,https://doi.org/10.1109/TIFS.2017.2779436 +Nese Alyüz,Regional registration for expression resistant 3-D face recognition.,2010,5,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs5.html#AlyuzGA10,https://doi.org/10.1109/TIFS.2010.2054081 +Fuchun Guo,Subset Membership Encryption and Its Applications to Oblivious Transfer.,2014,9,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs9.html#GuoMS14,https://doi.org/10.1109/TIFS.2014.2322257 +Xiaofen Wang,One-Round Privacy-Preserving Meeting Location Determination for Smartphone Applications.,2016,11,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs11.html#WangMC16,https://doi.org/10.1109/TIFS.2016.2549508 +Xiaobo Ma,DNSRadar: Outsourcing Malicious Domain Detection Based on Distributed Cache-Footprints.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#MaZTLTG14,https://doi.org/10.1109/TIFS.2014.2357251 +Hubert Ritzdorf,Toward Shared Ownership in the Cloud.,2018,13,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs13.html#RitzdorfSKMGC18,https://doi.org/10.1109/TIFS.2018.2837648 +Yu Zhang,Evaluation of Localization Attacks on Power-Modulated Challenge-Response Systems.,2008,3,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs3.html#ZhangLT08,https://doi.org/10.1109/TIFS.2008.919121 +Bin Ma,A Reversible Data Hiding Scheme Based on Code Division Multiplexing.,2016,11,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs11.html#MaS16,https://doi.org/10.1109/TIFS.2016.2566261 +Yanzhen Ren,AMR Steganalysis Based on the Probability of Same Pulse Position.,2015,10,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs10.html#RenCTW15,https://doi.org/10.1109/TIFS.2015.2421322 +Le Yu,Toward Automatically Generating Privacy Policy for Android Apps.,2017,12,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs12.html#YuZLXC17,https://doi.org/10.1109/TIFS.2016.2639339 +Ming Li 0011,Extracting Spread-Spectrum Hidden Data From Digital Media.,2013,8,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs8.html#LiKPBM13,https://doi.org/10.1109/TIFS.2013.2264462 +Md. Asikuzzaman,Imperceptible and Robust Blind Video Watermarking Using Chrominance Embedding: A Set of Approaches in the DT CWT Domain.,2014,9,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs9.html#AsikuzzamanALP14,https://doi.org/10.1109/TIFS.2014.2338274 +Eyad Haj-Said,Teeth segmentation in digitized dental X-ray films using mathematical morphology.,2006,1,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs1.html#Haj-SaidNFA06,https://doi.org/10.1109/TIFS.2006.873606 +Hong Cao,Lossless data embedding in electronic inks.,2010,5,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs5.html#CaoK10,https://doi.org/10.1109/TIFS.2010.2046234 +Jon W. Wallace,Automatic secret keys from reciprocal MIMO wireless channels: measurement and analysis.,2010,5,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs5.html#WallaceS10,https://doi.org/10.1109/TIFS.2010.2052253 +Li Liu 0010,An Image-Based Approach to Detection of Fake Coins.,2017,12,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs12.html#LiuLS17,https://doi.org/10.1109/TIFS.2017.2656478 +Yang Yang,Conjunctive Keyword Search With Designated Tester and Timing Enabled Proxy Re-Encryption Function for E-Health Clouds.,2016,11,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs11.html#YangM16,https://doi.org/10.1109/TIFS.2015.2509912 +Chia-Mu Yu,Noninteractive pairwise key establishment for sensor networks.,2010,5,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs5.html#YuLK10,https://doi.org/10.1109/TIFS.2010.2050140 +Liang Xiao 0003,User-Centric View of Jamming Games in Cognitive Radio Networks.,2015,10,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs10.html#0003LLMP15,https://doi.org/10.1109/TIFS.2015.2467593 +Ioannis Rigas,Biometric Recognition via Probabilistic Spatial Projection of Eye Movement Trajectories in Dynamic Visual Environments.,2014,9,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs9.html#RigasK14,https://doi.org/10.1109/TIFS.2014.2350960 +Lalitha Sankar,Utility-Privacy Tradeoffs in Databases: An Information-Theoretic Approach.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#SankarRP13,https://doi.org/10.1109/TIFS.2013.2253320 +Neetesh Saxena,EasySMS: A Protocol for End-to-End Secure Transmission of SMS.,2014,9,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs9.html#SaxenaC14,https://doi.org/10.1109/TIFS.2014.2320579 +Xiaoke Zhu,Image to Video Person Re-Identification by Learning Heterogeneous Dictionary Pair With Feature Projection Matrix.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#ZhuJYZSZ18,https://doi.org/10.1109/TIFS.2017.2765524 +Matthew C. Stamm,Temporal Forensics and Anti-Forensics for Motion Compensated Video.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#StammLL12,https://doi.org/10.1109/TIFS.2012.2205568 +Michael R. Clark,Transferable Multiparty Computation With Applications to the Smart Grid.,2014,9,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs9.html#ClarkH14,https://doi.org/10.1109/TIFS.2014.2331753 +Chan Dai Truyen Thai,Secret Group-Key Generation at Physical Layer for Multi-Antenna Mesh Topology.,2019,14,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs14.html#ThaiLPQ19,https://doi.org/10.1109/TIFS.2018.2837661 +Peng Zhou,Toward Energy-Efficient Trust System Through Watchdog Optimization for WSNs.,2015,10,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs10.html#ZhouJIZZT15,https://doi.org/10.1109/TIFS.2015.2389145 +Stefanos Zafeiriou,Face Recognition and Verification Using Photometric Stereo: The Photoface Database and a Comprehensive Evaluation.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#ZafeiriouAHSAPSS13,https://doi.org/10.1109/TIFS.2012.2224109 +Girish Revadigar,Accelerometer and Fuzzy Vault-Based Secure Group Key Generation and Sharing Protocol for Smart Wearables.,2017,12,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs12.html#RevadigarJXVHJ17,https://doi.org/10.1109/TIFS.2017.2708690 +Duc-Tien Dang-Nguyen,3D-Model-Based Video Analysis for Computer Generated Faces Identification.,2015,10,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs10.html#Dang-NguyenBN15,https://doi.org/10.1109/TIFS.2015.2427778 +Alberto Pedrouzo-Ulloa,Number Theoretic Transforms for Secure Signal Processing.,2017,12,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs12.html#Pedrouzo-UlloaT17,https://doi.org/10.1109/TIFS.2016.2647223 +Hong Zhao,Detecting Covert Channels in Computer Networks Based on Chaos Theory.,2013,8,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs8.html#ZhaoS13,https://doi.org/10.1109/TIFS.2012.2231861 +Rajesh Kumar 0008,Forensic Detection of Fraudulent Alteration in Ball-Point Pen Strokes.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#KumarPCS12,https://doi.org/10.1109/TIFS.2011.2176119 +Haoliang Li,Learning Generalized Deep Feature Representation for Face Anti-Spoofing.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#LiHWRJK18,https://doi.org/10.1109/TIFS.2018.2825949 +Raef Bassily,Deaf Cooperation for Secrecy With Multiple Antennas at the Helper.,2012,7,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs7.html#BassilyU12,https://doi.org/10.1109/TIFS.2012.2215325 +Debiao He,Efficient Hierarchical Identity-Based Signature With Batch Verification for Automatic Dependent Surveillance-Broadcast System.,2017,12,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs12.html#HeKCW17,https://doi.org/10.1109/TIFS.2016.2622682 +Meixia Miao,Efficient Verifiable Databases With Insertion/Deletion Operations From Delegating Polynomial Functions.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#MiaoMHW18,https://doi.org/10.1109/TIFS.2017.2758746 +Bingyang Liu,Toward Incentivizing Anti-Spoofing Deployment.,2014,9,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs9.html#LiuBV14,https://doi.org/10.1109/TIFS.2013.2296437 +Daniel Schonberg,Toward Compression of Encrypted Images and Video Sequences.,2008,3,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs3.html#SchonbergDYR08,https://doi.org/10.1109/TIFS.2008.2007244 +Xingliang Yuan,Privacy-Preserving Similarity Joins Over Encrypted Data.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#YuanWWYN17,https://doi.org/10.1109/TIFS.2017.2721221 +Jingtang Luo,On a Mathematical Model for Low-Rate Shrew DDoS.,2014,9,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs9.html#LuoYWXSL14,https://doi.org/10.1109/TIFS.2014.2321034 +Hyukmin Kwon,Crime Scene Reconstruction: Online Gold Farming Network Analysis.,2017,12,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs12.html#KwonMWKLK17,https://doi.org/10.1109/TIFS.2016.2623586 +Meng Shen,Cloud-Based Approximate Constrained Shortest Distance Queries Over Encrypted Graphs With Privacy Protection.,2018,13,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs13.html#ShenMZMDH18,https://doi.org/10.1109/TIFS.2017.2774451 +Andreas Peter,Efficiently Outsourcing Multiparty Computation Under Multiple Keys.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#PeterTK13,https://doi.org/10.1109/TIFS.2013.2288131 +Steffen Schulz 0001,The Silence of the LANs: Efficient Leakage Resilience for IPsec VPNs.,2014,9,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs9.html#SchulzVS14,https://doi.org/10.1109/TIFS.2013.2289978 +S. Huang,Optical Watermarking for Printed Document Authentication.,2007,2,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs2.html#HuangW07,https://doi.org/10.1109/TIFS.2007.897255 +Amir Valizadeh,An Improved Multiplicative Spread Spectrum Embedding Scheme for Data Hiding.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#ValizadehW12,https://doi.org/10.1109/TIFS.2012.2199312 +Lei Xu 0015,Security-Aware Resource Allocation With Delay Constraint for NOMA-Based Cognitive Radio Network.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#XuNPYL18,https://doi.org/10.1109/TIFS.2017.2750106 +Fangjun Huang,Detecting Double JPEG Compression With the Same Quantization Matrix.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#HuangHS10a,https://doi.org/10.1109/TIFS.2010.2072921 +Negar Kiyavash,Regular simplex fingerprints and their optimality properties.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#KiyavashMK09,https://doi.org/10.1109/TIFS.2009.2025855 +Tamer Mekkawy,Joint Beamforming Alignment With Suboptimal Power Allocation for a Two-Way Untrusted Relay Network.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#MekkawyYTXL18,https://doi.org/10.1109/TIFS.2018.2819132 +Holger Boche,Wiretap Channels With Side Information - Strong Secrecy Capacity and Optimal Transceiver Design.,2013,8,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs8.html#BocheS13,https://doi.org/10.1109/TIFS.2013.2271424 +Patrizio Campisi,Brain waves for automatic biometric-based user recognition.,2014,9,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs9.html#CampisiR14,https://doi.org/10.1109/TIFS.2014.2308640 +Yanqing Yao,Differential Privacy With Bias-Control Limited Sources.,2018,13,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs13.html#YaoL18,https://doi.org/10.1109/TIFS.2017.2780802 +Jingyu Hua,Privacy-Preserving Utility Verification of the Data Published by Non-Interactive Differentially Private Mechanisms.,2016,11,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs11.html#HuaTFSZ16,https://doi.org/10.1109/TIFS.2016.2532839 +Yongkun Li,Friends or Foes: Distributed and Randomized Algorithms to Determine Dishonest Recommenders in Online Social Networks.,2014,9,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs9.html#LiL14,https://doi.org/10.1109/TIFS.2014.2346020 +Weixuan Tang,Adaptive Steganalysis Based on Embedding Probabilities of Pixels.,2016,11,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs11.html#TangLLH16,https://doi.org/10.1109/TIFS.2015.2507159 +Yuqiao Cheng,Improved Visual Secret Sharing Scheme for QR Code Applications.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#ChengFY18,https://doi.org/10.1109/TIFS.2018.2819125 +Qiao Li,Using Perceptual Models to Improve Fidelity and Provide Resistance to Valumetric Scaling for Quantization Index Modulation Watermarking.,2007,2,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs2.html#LiC07,https://doi.org/10.1109/TIFS.2007.897266 +Liang Xiao 0003,A Secure Mobile Crowdsensing Game With Deep Reinforcement Learning.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#XiaoLHDP18,https://doi.org/10.1109/TIFS.2017.2737968 +Quanxue Gao,Joint Global and Local Structure Discriminant Analysis.,2013,8,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs8.html#GaoLZGL13,https://doi.org/10.1109/TIFS.2013.2246786 +Gorjan Nadzinski,Experimental Realization of the Coupling Function Secure Communications Protocol and Analysis of Its Noise Robustness.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#NadzinskiDAMSSS18,https://doi.org/10.1109/TIFS.2018.2825147 +Hang Long,Secrecy Capacity Enhancement With Distributed Precoding in Multirelay Wiretap Systems.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#LongXZLW13,https://doi.org/10.1109/TIFS.2012.2229988 +Eran Eidinger,Age and Gender Estimation of Unfiltered Faces.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#EidingerEH14,https://doi.org/10.1109/TIFS.2014.2359646 +Po-Yen Lee,MDSClone: Multidimensional Scaling Aided Clone Detection in Internet of Things.,2018,13,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs13.html#LeeYDC018,https://doi.org/10.1109/TIFS.2018.2805291 +Zahra Ahmadian,Linear Subspace Cryptanalysis of Harn's Secret Sharing-Based Group Authentication Scheme.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#AhmadianJ18,https://doi.org/10.1109/TIFS.2017.2757454 +Prosanta Gope,Lightweight and Practical Anonymous Authentication Protocol for RFID Systems Using Physically Unclonable Functions.,2018,13,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs13.html#GopeLQ18,https://doi.org/10.1109/TIFS.2018.2832849 +Jun Zhang 0023,Large System Secrecy Rate Analysis for SWIPT MIMO Wiretap Channels.,2016,11,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs11.html#ZhangYWJWZ16,https://doi.org/10.1109/TIFS.2015.2477050 +Marcus Karlsson,Jamming a TDD Point-to-Point Link Using Reciprocity-Based MIMO.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#KarlssonBL17,https://doi.org/10.1109/TIFS.2017.2725823 +Ester Gonzalez-Sosa,Exploring Body Shape From mmW Images for Person Recognition.,2017,12,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs12.html#Gonzalez-SosaVF17,https://doi.org/10.1109/TIFS.2017.2695979 +Sunpreet S. Arora,Gold Fingers: 3D Targets for Evaluating Capacitive Readers.,2017,12,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs12.html#AroraJP17,https://doi.org/10.1109/TIFS.2017.2695166 +Jan Kohout,Network Traffic Fingerprinting Based on Approximated Kernel Two-Sample Test.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#KohoutP18,https://doi.org/10.1109/TIFS.2017.2768018 +Harjinder Singh Lallie,An Empirical Evaluation of the Effectiveness of Attack Graphs and Fault Trees in Cyber-Attack Perception.,2018,13,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs13.html#LallieDB18,https://doi.org/10.1109/TIFS.2017.2771238 +Qiang Tang 0001,Nothing is for Free: Security in Searching Shared and Encrypted Data.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#000114,https://doi.org/10.1109/TIFS.2014.2359389 +Ying Wang,Optimized Feature Extraction for Learning-Based Image Steganalysis.,2007,2,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs2.html#WangM07,https://doi.org/10.1109/TIFS.2006.890517 +David Chaum,Corrections to scantegrity II: end-to-end verifiability by voters of optical scan elections through confirmation codes.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#ChaumCCEPRRSSV10,https://doi.org/10.1109/TIFS.2010.2040672 +Shervin Rahimzadeh Arashloo,Face Spoofing Detection Based on Multiple Descriptor Fusion Using Multiscale Dynamic Binarized Statistical Image Features.,2015,10,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs10.html#ArashlooKC15,https://doi.org/10.1109/TIFS.2015.2458700 +Irene Amerini,Smartphone Fingerprinting Combining Features of On-Board Sensors.,2017,12,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs12.html#AmeriniBCMN17,https://doi.org/10.1109/TIFS.2017.2708685 +Frodo Kin-Sun Chan,A Study of Distinctiveness of Skin Texture for Forensic Applications Through Comparison With Blood Vessels.,2017,12,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs12.html#ChanLK17,https://doi.org/10.1109/TIFS.2017.2692684 +Luís Filipe da Cruz Nassif,Document Clustering for Forensic Analysis: An Approach for Improving Computer Inspection.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#NassifH13,https://doi.org/10.1109/TIFS.2012.2223679 +Patrick P. K. Chan,Face Liveness Detection Using a Flash Against 2D Spoofing Attack.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#ChanLCYZWH18,https://doi.org/10.1109/TIFS.2017.2758748 +Shen-Zheng Wang,A Cascade Framework for a Real-Time Statistical Plate Recognition System.,2007,2,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs2.html#WangL07,https://doi.org/10.1109/TIFS.2007.897251 +Wei Dai,Implementation and Evaluation of a Lattice-Based Key-Policy ABE Scheme.,2018,13,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs13.html#DaiDPRSSS18,https://doi.org/10.1109/TIFS.2017.2779427 +Wenchang Tang,Estimating Infection Sources in Networks Using Partial Timestamps.,2018,13,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs13.html#TangJT18,https://doi.org/10.1109/TIFS.2018.2837655 +Peter Y. A. Ryan,Prêt à voter: a voter-verifiable voting system.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#RyanBHSX09,https://doi.org/10.1109/TIFS.2009.2033233 +Chao Shen 0001,Performance Analysis of Multi-Motion Sensor Behavior for Active Smartphone Authentication.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#ShenLCGM18,https://doi.org/10.1109/TIFS.2017.2737969 +Pan Zhou,Near-Optimal and Practical Jamming-Resistant Energy-Efficient Cognitive Radio Communications.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#ZhouWWHW17,https://doi.org/10.1109/TIFS.2017.2721931 +Fanglin Chen,Separating Overlapped Fingerprints.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#ChenFJZZ11,https://doi.org/10.1109/TIFS.2011.2114345 +Kan Yang 0001,DAC-MACS: Effective Data Access Control for Multiauthority Cloud Storage Systems.,2013,8,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs8.html#YangJRZX13,https://doi.org/10.1109/TIFS.2013.2279531 +Daniel Schonberg,EyeCerts.,2006,1,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs1.html#SchonbergK06,https://doi.org/10.1109/TIFS.2006.873604 +Lijun Dong,A Data-Centric Approach to Quality Estimation of Role Mining Results.,2016,11,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs11.html#DongWT16,https://doi.org/10.1109/TIFS.2016.2594137 +Kaushal Solanki,'Print and Scan' Resilient Data Hiding in Images.,2006,1,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs1.html#SolankiMMCE06,https://doi.org/10.1109/TIFS.2006.885032 +Enrico Bondi,Reconstructing High-Resolution Face Models From Kinect Depth Sequences.,2016,11,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs11.html#BondiPBB16,https://doi.org/10.1109/TIFS.2016.2601059 +Feng Yue,Hashing Based Fast Palmprint Identification for Large-Scale Databases.,2013,8,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs8.html#YueLYW13,https://doi.org/10.1109/TIFS.2013.2253321 +Lino Coria-Mendoza,A Video Watermarking Scheme Based on the Dual-Tree Complex Wavelet Transform.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#Coria-MendozaPNW08,https://doi.org/10.1109/TIFS.2008.927421 +Marina A. Oikawa,Manifold Learning and Spectral Clustering for Image Phylogeny Forests.,2016,11,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs11.html#OikawaDRG16,https://doi.org/10.1109/TIFS.2015.2442527 +Shihao Yan,Secret Channel Training to Enhance Physical Layer Security With a Full-Duplex Receiver.,2018,13,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs13.html#YanZYAS18,https://doi.org/10.1109/TIFS.2018.2834301 +Avinash L. Varna,Fingerprinting compressed multimedia signals.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#VarnaHSW09,https://doi.org/10.1109/TIFS.2009.2025860 +Kyung-Ah Shim,BASIS: A Practical Multi-User Broadcast Authentication Scheme in Wireless Sensor Networks.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#Shim17,https://doi.org/10.1109/TIFS.2017.2668062 +Zhe Jin,Ranking-Based Locality Sensitive Hashing-Enabled Cancelable Biometrics: Index-of-Max Hashing.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#JinHLKT18,https://doi.org/10.1109/TIFS.2017.2753172 +Tobias Senst,Crowd Violence Detection Using Global Motion-Compensated Lagrangian Features and Scale-Sensitive Video-Level Representation.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#SenstEKS17,https://doi.org/10.1109/TIFS.2017.2725820 +Sushil Jajodia,A Probabilistic Logic of Cyber Deception.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#JajodiaPPPSSS17,https://doi.org/10.1109/TIFS.2017.2710945 +Ryan W. Gardner,Detecting code alteration by creating a temporary memory bottleneck.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#GardnerGR09,https://doi.org/10.1109/TIFS.2009.2033231 +Athanasios Papadopoulos,IllusionPIN: Shoulder-Surfing Resistant Authentication Using Hybrid Images.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#PapadopoulosNDM17,https://doi.org/10.1109/TIFS.2017.2725199 +Xin Ruan,Profiling Online Social Behaviors for Compromised Account Detection.,2016,11,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs11.html#RuanWWJ16,https://doi.org/10.1109/TIFS.2015.2482465 +Robin Doss,Secure RFID Tag Ownership Transfer Based on Quadratic Residues.,2013,8,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs8.html#DossZY13,https://doi.org/10.1109/TIFS.2012.2235834 +Keshav Seshadri,An Analysis of the Sensitivity of Active Shape Models to Initialization When Applied to Automatic Facial Landmarking.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#SeshadriS12,https://doi.org/10.1109/TIFS.2012.2195175 +Hugo Proença,Toward Covert Iris Biometric Recognition: Experimental Results From the NICE Contests.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#ProencaA12,https://doi.org/10.1109/TIFS.2011.2177659 +Gabriel Domínguez-Conde,Performance analysis of Fridrich-Goljan self-embedding authentication method.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#Dominguez-CondeCP09,https://doi.org/10.1109/TIFS.2009.2026463 +Zhili Zhou,Effective and Efficient Global Context Verification for Image Copy Detection.,2017,12,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs12.html#ZhouWWYS17,https://doi.org/10.1109/TIFS.2016.2601065 +Sha Ma,Efficient Public Key Encryption With Equality Test Supporting Flexible Authorization.,2015,10,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs10.html#MaHZY15,https://doi.org/10.1109/TIFS.2014.2378592 +Nisha Srinivas,Analysis of Facial Marks to Distinguish Between Identical Twins.,2012,7,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs7.html#SrinivasAFB12,https://doi.org/10.1109/TIFS.2012.2206027 +Jingwen Zhang,Specific Emitter Identification via Hilbert-Huang Transform in Single-Hop and Relaying Scenarios.,2016,11,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs11.html#ZhangWDZ16,https://doi.org/10.1109/TIFS.2016.2520908 +Aparna Bharati,Detecting Facial Retouching Using Supervised Deep Learning.,2016,11,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs11.html#BharatiSVB16,https://doi.org/10.1109/TIFS.2016.2561898 +Suryadipta Majumdar,User-Level Runtime Security Auditing for the Cloud.,2018,13,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs13.html#MajumdarMWJPWD18,https://doi.org/10.1109/TIFS.2017.2779444 +Jun Yu 0002,iPrivacy: Image Privacy Protection by Identifying Sensitive Objects via Deep Multi-Task Learning.,2017,12,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs12.html#YuZKLF17,https://doi.org/10.1109/TIFS.2016.2636090 +Muhammad R. A. Khandaker,Masked Beamforming in the Presence of Energy-Harvesting Eavesdroppers.,2015,10,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs10.html#KhandakerW15,https://doi.org/10.1109/TIFS.2014.2363033 +Chao Chen,Statistical Features-Based Real-Time Detection of Drifted Twitter Spam.,2017,12,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs12.html#ChenWZXZM17,https://doi.org/10.1109/TIFS.2016.2621888 +Richard M. Jiang,Face recognition in global harmonic subspace.,2010,5,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs5.html#JiangCL10,https://doi.org/10.1109/TIFS.2010.2051544 +Francesco G. B. De Natale,Detecting Morphological Filtering of Binary Images.,2017,12,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs12.html#NataleB17,https://doi.org/10.1109/TIFS.2017.2656472 +Jessica J. Fridrich,Matrix embedding for large payloads.,2006,1,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs1.html#FridrichS06,https://doi.org/10.1109/TIFS.2006.879281 +Wei Fan 0004,JPEG Anti-Forensics With Improved Tradeoff Between Forensic Undetectability and Image Quality.,2014,9,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs9.html#FanWCX14,https://doi.org/10.1109/TIFS.2014.2317949 +Gaojie Chen,Physical Layer Network Security in the Full-Duplex Relay System.,2015,10,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs10.html#ChenGXC15,https://doi.org/10.1109/TIFS.2015.2390136 +Jiantao Zhou,Designing an Efficient Image Encryption-Then-Compression System via Prediction Error Clustering and Random Permutation.,2014,9,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs9.html#ZhouLAT14,https://doi.org/10.1109/TIFS.2013.2291625 +Muhammad R. A. Khandaker,Probabilistically Robust SWIPT for Secrecy MISOME Systems.,2017,12,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs12.html#KhandakerWZZ17,https://doi.org/10.1109/TIFS.2016.2611478 +Hussein A. Aly,Data Hiding in Motion Vectors of Compressed Video Based on Their Associated Prediction Error.,2011,6,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs6.html#Aly11,https://doi.org/10.1109/TIFS.2010.2090520 +Holger Boche,Capacity Results and Super-Activation for Wiretap Channels With Active Wiretappers.,2013,8,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs8.html#BocheS13a,https://doi.org/10.1109/TIFS.2013.2276049 +Filippo Gandino,A Key Distribution Scheme for Mobile Wireless Sensor Networks: q-Composite.,2017,12,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs12.html#GandinoFR17,https://doi.org/10.1109/TIFS.2016.2601061 +Mustafa Ozmen,Secure Transmission of Delay-Sensitive Data Over Wireless Fading Channels.,2017,12,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs12.html#OzmenG17,https://doi.org/10.1109/TIFS.2017.2692749 +Tomás Denemark,Steganalysis Features for Content-Adaptive JPEG Steganography.,2016,11,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs11.html#DenemarkBF16,https://doi.org/10.1109/TIFS.2016.2555281 +Daigo Muramatsu,A Markov chain Monte Carlo algorithm for bayesian dynamic signature verification.,2006,1,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs1.html#MuramatsuKSTM06,https://doi.org/10.1109/TIFS.2005.863507 +Natalia A. Schmid,On Empirical Recognition Capacity of Biometric Systems Under Global PCA and ICA Encoding.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#SchmidN08,https://doi.org/10.1109/TIFS.2008.924607 +Yuanman Li,SIFT Keypoint Removal and Injection via Convex Relaxation.,2016,11,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs11.html#LiZCLT16,https://doi.org/10.1109/TIFS.2016.2553645 +Hartwig Fronthaler,Fingerprint Image-Quality Estimation and its Application to Multialgorithm Verification.,2008,3,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs3.html#FronthalerKBFAOG08,https://doi.org/10.1109/TIFS.2008.920725 +Mohammad H. Mahoor,A Multimodal Approach for Face Modeling and Recognition.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#MahoorA08,https://doi.org/10.1109/TIFS.2008.924597 +Jiao Jiao Jiang,K-Center: An Approach on the Multi-Source Identification of Information Diffusion.,2015,10,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs10.html#JiangWYXZ15,https://doi.org/10.1109/TIFS.2015.2469256 +Zhenjun Tang,Robust Image Hashing With Ring Partition and Invariant Vector Distance.,2016,11,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs11.html#TangZLZ16,https://doi.org/10.1109/TIFS.2015.2485163 +Takao Murakami,Group Sparsity Tensor Factorization for Re-Identification of Open Mobility Traces.,2017,12,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs12.html#MurakamiKH17,https://doi.org/10.1109/TIFS.2016.2631952 +Jiawei Yuan,Public Integrity Auditing for Dynamic Data Sharing With Multiuser Modification.,2015,10,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs10.html#YuanY15,https://doi.org/10.1109/TIFS.2015.2423264 +Pang Du,Statistical Estimation of Malware Detection Metrics in the Absence of Ground Truth.,2018,13,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs13.html#DuSCCX18,https://doi.org/10.1109/TIFS.2018.2833292 +Renato Villán,Multilevel 2-D Bar Codes: Toward High-Capacity Storage Modules for Multimedia Security and Management.,2006,1,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs1.html#VillnVKP06,https://doi.org/10.1109/TIFS.2006.885022 +Hugo Proença,Soft Biometrics: Globally Coherent Solutions for Hair Segmentation and Style Recognition Based on Hierarchical MRFs.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#ProencaN17,https://doi.org/10.1109/TIFS.2017.2680246 +Manas Baveja,Asymptotic Biometric Analysis for Large Gallery Sizes.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#BavejaYW10,https://doi.org/10.1109/TIFS.2010.2058105 +Quanzhong Li,Artificial Noise Aided Secure Precoding for MIMO Untrusted Two-Way Relay Systems With Perfect and Imperfect Channel State Information.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#LiY18,https://doi.org/10.1109/TIFS.2018.2825944 +Yiliang Liu,Secrecy Capacity Analysis of Artificial Noisy MIMO Channels - An Approach Based on Ordered Eigenvalues of Wishart Matrices.,2017,12,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs12.html#LiuCW17,https://doi.org/10.1109/TIFS.2016.2627219 +Stefan Popa,Hardware Acceleration of Background Modeling in the Compressed Domain.,2013,8,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs8.html#PopaCM13,https://doi.org/10.1109/TIFS.2013.2276753 +Yahya S. Khiabani,Enhancement of Secrecy of Block Ciphered Systems by Deliberate Noise.,2012,7,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs7.html#KhiabaniWYW12,https://doi.org/10.1109/TIFS.2012.2204983 +Nitesh Saxena,Noninteractive self-certification for long-lived mobile ad hoc networks.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#SaxenaY09,https://doi.org/10.1109/TIFS.2009.2031946 +Bahman Rashidi,A Collaborative DDoS Defence Framework Using Network Function Virtualization.,2017,12,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs12.html#RashidiFB17,https://doi.org/10.1109/TIFS.2017.2708693 +Giulio Giaconi,Smart Meter Privacy With Renewable Energy and an Energy Storage Device.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#GiaconiGP18,https://doi.org/10.1109/TIFS.2017.2744601 +Yuan Zhang 0004,Designing Secure and Dependable Mobile Sensing Mechanisms With Revenue Guarantees.,2016,11,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs11.html#ZhangZTZ16,https://doi.org/10.1109/TIFS.2015.2478739 +Xiangui Kang,Enhancing Source Camera Identification Performance With a Camera Reference Phase Sensor Pattern Noise.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#KangLQH12,https://doi.org/10.1109/TIFS.2011.2168214 +Guang Yao,Passive IP Traceback: Disclosing the Locations of IP Spoofers From Path Backscatter.,2015,10,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs10.html#YaoBV15,https://doi.org/10.1109/TIFS.2014.2381873 +Lacey Best-Rowden,Unconstrained Face Recognition: Identifying a Person of Interest From a Media Collection.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#Best-RowdenHOKJ14,https://doi.org/10.1109/TIFS.2014.2359577 +Wenxiong Kang,Contactless Palm Vein Recognition Using a Mutual Foreground-Based Local Binary Pattern.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#KangW14,https://doi.org/10.1109/TIFS.2014.2361020 +Mitsugu Iwamoto,A Weak Security Notion for Visual Secret Sharing Schemes.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#Iwamoto12,https://doi.org/10.1109/TIFS.2011.2170975 +Heng Cui,On the Fingerprinting of Software-Defined Networks.,2016,11,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs11.html#CuiKKB16,https://doi.org/10.1109/TIFS.2016.2573756 +Ximeng Liu,Privacy-Preserving Outsourced Calculation on Floating Point Numbers.,2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#LiuDDLQ16,https://doi.org/10.1109/TIFS.2016.2585121 +Wei Yu 0003,Secure Cooperation in Autonomous Mobile Ad-Hoc Networks Under Noise and Imperfect Monitoring: A Game-Theoretic Approach.,2008,3,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs3.html#YuL08,https://doi.org/10.1109/TIFS.2008.922453 +Tran Viet Xuan Phuong,Hidden Ciphertext Policy Attribute-Based Encryption Under Standard Assumptions.,2016,11,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs11.html#PhuongYS16,https://doi.org/10.1109/TIFS.2015.2475723 +Jian Shen 0001,Anonymous and Traceable Group Data Sharing in Cloud Computing.,2018,13,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs13.html#ShenZCLS18,https://doi.org/10.1109/TIFS.2017.2774439 +Feng Hao,A Fast Search Algorithm for a Large Fuzzy Database.,2008,3,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs3.html#HaoDZ08,https://doi.org/10.1109/TIFS.2008.920726 +Abhishek Basak,Security Assurance for System-on-Chip Designs With Untrusted IPs.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#BasakBTR17,https://doi.org/10.1109/TIFS.2017.2658544 +Lifeng Lai,Privacy-Security Trade-Offs in Biometric Security Systems - Part I: Single Use Case.,2011,6,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs6.html#LaiHP11,https://doi.org/10.1109/TIFS.2010.2098872 +Cai-Ping Yan,Quaternion-Based Image Hashing for Adaptive Tampering Localization.,2016,11,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs11.html#YanPY16,https://doi.org/10.1109/TIFS.2016.2594136 +Maria V. Ruiz-Blondet,CEREBRE: A Novel Method for Very High Accuracy Event-Related Potential Biometric Identification.,2016,11,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs11.html#Ruiz-BlondetJL16,https://doi.org/10.1109/TIFS.2016.2543524 +Hans Georg Schaathun,The Boneh-Shaw fingerprinting scheme is better than we thought.,2006,1,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs1.html#Schaathun06,https://doi.org/10.1109/TIFS.2006.873596 +Jaroslaw Duda,Image-Like 2D Barcodes Using Generalizations of the Kuznetsov-Tsybakov Problem.,2016,11,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs11.html#DudaKGTD16,https://doi.org/10.1109/TIFS.2015.2506002 +Nicholas W. D. Evans,Guest Editorial Special Issue on Biometric Spoofing and Countermeasures.,2015,10,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs10.html#EvansLMR15,https://doi.org/10.1109/TIFS.2015.2406111 +Xiaofeng Chen 0001,Efficient Fair Conditional Payments for Outsourcing Computations.,2012,7,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs7.html#ChenLS12,https://doi.org/10.1109/TIFS.2012.2210880 +Andrey Garnaev,A Bandwidth Monitoring Strategy Under Uncertainty of the Adversary's Activity.,2016,11,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs11.html#GarnaevT16,https://doi.org/10.1109/TIFS.2015.2510959 +Amir Sonee,On the Secrecy Rate Region of Multiple-Access Wiretap Channel With Noncausal Side Information.,2015,10,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs10.html#SoneeH15,https://doi.org/10.1109/TIFS.2015.2400416 +Bogdan Carbunar,Write-Once Read-Many Oblivious RAM.,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#CarbunarS11,https://doi.org/10.1109/TIFS.2011.2160169 +Junjie Zhang,Building a Scalable System for Stealthy P2P-Botnet Detection.,2014,9,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs9.html#ZhangPLLS14,https://doi.org/10.1109/TIFS.2013.2290197 +Matteo Ferrara,On the Feasibility of Creating Double-Identity Fingerprints.,2017,12,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs12.html#FerraraCM17,https://doi.org/10.1109/TIFS.2016.2639345 +Joan Enric Barceló-Lladó,Amplify-and-Forward Compressed Sensing as a Physical-Layer Secrecy Solution in Wireless Sensor Networks.,2014,9,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs9.html#Barcelo-LladoMS14,https://doi.org/10.1109/TIFS.2014.2309855 +Eduardo José da S. Luz,Learning Deep Off-the-Person Heart Biometrics Representations.,2018,13,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs13.html#LuzMOSM18,https://doi.org/10.1109/TIFS.2017.2784362 +Dominik Engel,An Analysis of Lightweight Encryption Schemes for Fingerprint Images.,2008,3,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs3.html#EngelPU08,https://doi.org/10.1109/TIFS.2008.922058 +Reza Soosahabi,Optimal Probabilistic Encryption for Secure Detection in Wireless Sensor Networks.,2014,9,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs9.html#SoosahabiNPB14,https://doi.org/10.1109/TIFS.2014.2298813 +Omaima Nomir,Human Identification From Dental X-Ray Images Based on the Shape and Appearance of the Teeth.,2007,2,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs2.html#NomirA07,https://doi.org/10.1109/TIFS.2007.897245 +Wei Liu 0025,Optimum Detection for Spread-Spectrum Watermarking That Employs Self-Masking.,2007,2,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs2.html#LiuDZ07,https://doi.org/10.1109/TIFS.2007.908226 +Han Su,A Study on Low Resolution Androgenic Hair Patterns for Criminal and Victim Identification.,2014,9,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs9.html#SuK14,https://doi.org/10.1109/TIFS.2014.2306591 +Sen-ching Samson Cheung,Guest Editorial: Special issue on privacy and trust management in cloud and distributed systems.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#CheungSAHHH13,https://doi.org/10.1109/TIFS.2013.2259431 +Diaa Eldin M. Nassar,Automatic Construction of Dental Charts for Postmortem Identification.,2008,3,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs3.html#NassarALA08,https://doi.org/10.1109/TIFS.2008.922452 +Yanling Chen,Collective Secrecy Over the K-Transmitter Multiple Access Channel.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#ChenKV18,https://doi.org/10.1109/TIFS.2018.2818067 +Hongbin Xu,Cooperative Privacy Preserving Scheme for Downlink Transmission in Multiuser Relay Networks.,2017,12,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs12.html#XuSRDW17,https://doi.org/10.1109/TIFS.2016.2636091 +Shaoquan Jiang,On the Size of Source Space in a Secure MAC.,2015,10,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs10.html#Jiang15a,https://doi.org/10.1109/TIFS.2015.2442523 +Lemonia Dritsoula,A Game-Theoretic Analysis of Adversarial Classification.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#DritsoulaLM17,https://doi.org/10.1109/TIFS.2017.2718494 +Zarrin Montazeri,Achieving Perfect Location Privacy in Wireless Devices Using Anonymization.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#MontazeriHP17,https://doi.org/10.1109/TIFS.2017.2713341 +Shize Guo,Exploiting the Incomplete Diffusion Feature: A Specialized Analytical Side-Channel Attack Against the AES and Its Application to Microcontroller Implementations.,2014,9,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs9.html#GuoZZWSSM14,https://doi.org/10.1109/TIFS.2014.2315534 +Jeroen van de Graaf,Voting with unconditional privacy by merging Prêt à voter and PunchScan.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#Graaf09,https://doi.org/10.1109/TIFS.2009.2034207 +Yen-Wei Huang,On the Saddle-Point Solution and the Large-Coalition Asymptotics of Fingerprinting Games.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#HuangM12,https://doi.org/10.1109/TIFS.2011.2168212 +Anil K. Jain 0001,Biometrics: a tool for information security.,2006,1,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs1.html#JainRP06,https://doi.org/10.1109/TIFS.2006.873653 +Jiwen Lu,Cost-Sensitive Semi-Supervised Discriminant Analysis for Face Recognition.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#LuZTSZ12,https://doi.org/10.1109/TIFS.2012.2188389 +Zhongliu Zhuo,Website Fingerprinting Attack on Anonymity Networks Based on Profile Hidden Markov Model.,2018,13,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs13.html#ZhuoZZZZ18,https://doi.org/10.1109/TIFS.2017.2762825 +Tao Xiong,MIO: Enhancing Wireless Communications Security Through Physical Layer Multiple Inter-Symbol Obfuscation.,2015,10,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs10.html#XiongLZT15,https://doi.org/10.1109/TIFS.2015.2422264 +Linyuan Zhang,Spectrum Sensing Under Spectrum Misuse Behaviors: A Multi-Hypothesis Test Perspective.,2018,13,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs13.html#ZhangDWH18,https://doi.org/10.1109/TIFS.2017.2774770 +Biao He,Secure On-Off Transmission Design With Channel Estimation Errors.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#HeZ13,https://doi.org/10.1109/TIFS.2013.2284754 +Nesli Erdogmus,Spoofing Face Recognition With 3D Masks.,2014,9,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs9.html#ErdogmusM14,https://doi.org/10.1109/TIFS.2014.2322255 +Sian-Jheng Lin,The Scalar Scheme for Reversible Information-Embedding in Gray-Scale Signals: Capacity Evaluation and Code Constructions.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#LinC12a,https://doi.org/10.1109/TIFS.2012.2197614 +Mohsen Zandi,Iterative Copy-Move Forgery Detection Based on a New Interest Point Detector.,2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#ZandiAT16,https://doi.org/10.1109/TIFS.2016.2585118 +Gaojie Chen,Secrecy Outage Analysis for Downlink Transmissions in the Presence of Randomly Located Eavesdroppers.,2017,12,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs12.html#ChenCR17,https://doi.org/10.1109/TIFS.2017.2656462 +Xuan Zha,The Impact of Link Duration on the Integrity of Distributed Mobile Networks.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#ZhaNWLGNZ18,https://doi.org/10.1109/TIFS.2018.2812714 +Fernando Alonso-Fernandez,A Comparative Study of Fingerprint Image-Quality Estimation Methods.,2007,2,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs2.html#Alonso-FernandezFOGFKB07,https://doi.org/10.1109/TIFS.2007.908228 +Yuxi Liu,Earprint: Transient Evoked Otoacoustic Emission for Biometrics.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#LiuH14,https://doi.org/10.1109/TIFS.2014.2361205 +Giuseppe Valenzise,Revealing the Traces of JPEG Compression Anti-Forensics.,2013,8,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs8.html#ValenziseTT13,https://doi.org/10.1109/TIFS.2012.2234117 +Tianlong Song,CDMA System Design and Capacity Analysis Under Disguised Jamming.,2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#SongZL16,https://doi.org/10.1109/TIFS.2016.2585089 +Arik Vartanian,TM-Score: A Misuseability Weight Measure for Textual Content.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#VartanianS14,https://doi.org/10.1109/TIFS.2014.2359370 +Wen Tao Zhu,Generating Correlated Digital Certificates: Framework and Applications.,2016,11,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs11.html#ZhuL16,https://doi.org/10.1109/TIFS.2016.2516818 +Yanpei Liu,Exploiting Channel Diversity in Secret Key Generation From Multipath Fading Randomness.,2012,7,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs7.html#LiuDS12,https://doi.org/10.1109/TIFS.2012.2206385 +Chenxu Wang,SkyShield: A Sketch-Based Defense System Against Application Layer DDoS Attacks.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#WangMLW18,https://doi.org/10.1109/TIFS.2017.2758754 +Takashi Nakamura,In-Ear EEG Biometrics for Feasible and Readily Collectable Real-World Person Authentication.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#NakamuraGM18,https://doi.org/10.1109/TIFS.2017.2763124 +Xiaozheng Zhang 0002,Heterogeneous Specular and Diffuse 3-D Surface Approximation for Face Recognition Across Pose.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#ZhangG12,https://doi.org/10.1109/TIFS.2011.2170068 +Onur Tan,Privacy-Cost Trade-offs in Demand-Side Management With Storage.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#TanGG17,https://doi.org/10.1109/TIFS.2017.2656469 +Hang Su,The Large-Scale Crowd Behavior Perception Based on Spatio-Temporal Viscous Fluid Field.,2013,8,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs8.html#SuYZFW13,https://doi.org/10.1109/TIFS.2013.2277773 +Emanuele Maiorana,Hill-Climbing Attacks on Multibiometrics Recognition Systems.,2015,10,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs10.html#MaioranaHC15,https://doi.org/10.1109/TIFS.2014.2384735 +Lifeng Wang 0002,Physical Layer Security of Maximal Ratio Combining in Two-Wave With Diffuse Power Fading Channels.,2014,9,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs9.html#WangYEYY14,https://doi.org/10.1109/TIFS.2013.2296991 +Chugui Xu,DPPro: Differentially Private High-Dimensional Data Release via Random Projection.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#XuRZQR17,https://doi.org/10.1109/TIFS.2017.2737966 +Julian Fiérrez,Benchmarking Touchscreen Biometrics for Mobile Authentication.,2018,13,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs13.html#FierrezPMGM18,https://doi.org/10.1109/TIFS.2018.2833042 +Cristina Comaniciu,On Energy-Secrecy Trade-Offs for Gaussian Wiretap Channels.,2013,8,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs8.html#ComaniciuP13,https://doi.org/10.1109/TIFS.2012.2232910 +Sadaf Salehkalaibar,One-Receiver Two-Eavesdropper Broadcast Channel With Degraded Message Sets.,2013,8,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs8.html#SalehkalaibarMA13,https://doi.org/10.1109/TIFS.2013.2264675 +Feng Liu,Distal-Interphalangeal-Crease-Based User Authentication System.,2013,8,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs8.html#LiuZG13,https://doi.org/10.1109/TIFS.2013.2272787 +Xiangui Kang,Efficient general print-scanning resilient data hiding based on uniform log-polar mapping.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#KangHZ10,https://doi.org/10.1109/TIFS.2009.2039604 +Hong Liu 0006,Role-Dependent Privacy Preservation for Secure V2G Networks in the Smart Grid.,2014,9,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs9.html#LiuNZXY14,https://doi.org/10.1109/TIFS.2013.2295032 +Parag Agarwal,Robust blind watermarking of point-sampled geometry.,2009,4,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs4.html#AgarwalP09,https://doi.org/10.1109/TIFS.2008.2011081 +Shan He 0002,Joint coding and embedding techniques for MultimediaFingerprinting.,2006,1,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs1.html#HeW06,https://doi.org/10.1109/TIFS.2006.873597 +Lilian Bossuet,"Comments on ""A PUF-FSM Binding Scheme for FPGA IP Protection and Pay-per-Device Licensing"".",2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#BossuetC16,https://doi.org/10.1109/TIFS.2016.2553454 +Jong-Uk Hou,Blind 3D Mesh Watermarking for 3D Printed Model by Analyzing Layering Artifact.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#HouKL17,https://doi.org/10.1109/TIFS.2017.2718482 +Kamal Taha,Using the Spanning Tree of a Criminal Network for Identifying Its Leaders.,2017,12,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs12.html#TahaY17,https://doi.org/10.1109/TIFS.2016.2622226 +Vaibhav Rastogi,Catch Me If You Can: Evaluating Android Anti-Malware Against Transformation Attacks.,2014,9,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs9.html#RastogiCJ14,https://doi.org/10.1109/TIFS.2013.2290431 +Matthew Edman,On the Security of Key Extraction From Measuring Physical Quantities.,2016,11,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs11.html#EdmanKTY16,https://doi.org/10.1109/TIFS.2016.2543687 +Dalwon Jang,Distance Metric Learning for Content Identification.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#JangYK10,https://doi.org/10.1109/TIFS.2010.2064769 +Sikhar Patranabis,Fault Space Transformation: A Generic Approach to Counter Differential Fault Analysis and Differential Fault Intensity Analysis on AES-Like Block Ciphers.,2017,12,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs12.html#PatranabisCMC17,https://doi.org/10.1109/TIFS.2016.2646638 +Iordanis Mpiperis,Bilinear Models for 3-D Face and Facial Expression Recognition.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#MpiperisMS08,https://doi.org/10.1109/TIFS.2008.924598 +Yuanman Li,SIFT Keypoint Removal via Directed Graph Construction for Color Images.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#LiZC17,https://doi.org/10.1109/TIFS.2017.2730362 +Xiaoyu Chu,Information Theoretical Limit of Media Forensics: The Forensicability.,2016,11,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs11.html#ChuCSL16,https://doi.org/10.1109/TIFS.2015.2510820 +Takao Murakami,Localization Attacks Using Matrix and Tensor Factorization.,2016,11,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs11.html#MurakamiW16,https://doi.org/10.1109/TIFS.2016.2547865 +Tairan Wang,Mutual Information Jammer-Relay Games.,2008,3,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs3.html#WangG08,https://doi.org/10.1109/TIFS.2008.920730 +Yan Zhao,Robust Hashing for Image Authentication Using Zernike Moments and Local Features.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#ZhaoWZY13,https://doi.org/10.1109/TIFS.2012.2223680 +Yongfeng Huang,Steganography in Inactive Frames of VoIP Streams Encoded by Source Codec.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#HuangTY11,https://doi.org/10.1109/TIFS.2011.2108649 +Tiziano Bianchi,TTP-Free Asymmetric Fingerprinting Based on Client Side Embedding.,2014,9,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs9.html#BianchiP14,https://doi.org/10.1109/TIFS.2014.2340581 +Cong Chen,Horizontal and Vertical Side Channel Analysis of a McEliece Cryptosystem.,2016,11,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs11.html#ChenEMS16,https://doi.org/10.1109/TIFS.2015.2509944 +Kai Cao 0001,Learning Fingerprint Reconstruction: From Minutiae to Image.,2015,10,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs10.html#0001J15,https://doi.org/10.1109/TIFS.2014.2363951 +Alireza Alaei,An Efficient Signature Verification Method Based on an Interval Symbolic Representation and a Fuzzy Similarity Measure.,2017,12,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs12.html#AlaeiPPB17,https://doi.org/10.1109/TIFS.2017.2707332 +Wael Louis,Continuous Authentication Using One-Dimensional Multi-Resolution Local Binary Patterns (1DMRLBP) in ECG Biometrics.,2016,11,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs11.html#LouisKH16,https://doi.org/10.1109/TIFS.2016.2599270 +E-yong Kim,Secure Interdomain Routing Registry.,2008,3,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs3.html#KimXNP08,https://doi.org/10.1109/TIFS.2008.922050 +Xiaoli Li 0004,A wavelet-PCA-based fingerprinting scheme for peer-to-peer video file sharing.,2010,5,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs5.html#LiKM10,https://doi.org/10.1109/TIFS.2010.2051255 +Vinod Pankajakshan,Detection of motion-incoherent components in video streams.,2009,4,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs4.html#PankajakshanDB09,https://doi.org/10.1109/TIFS.2008.2012199 +R. Raghavendra,Exploring the Usefulness of Light Field Cameras for Biometrics: An Empirical Study on Face and Iris Recognition.,2016,11,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs11.html#RaghavendraRB16,https://doi.org/10.1109/TIFS.2015.2512559 +Andrew Nadeau,An Audio Watermark Designed for Efficient and Robust Resynchronization After Analog Playback.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#NadeauS17,https://doi.org/10.1109/TIFS.2017.2661724 +Sina Lashgari,Secrecy DoF of Blind MIMOME Wiretap Channel With Delayed CSIT.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#LashgariA18,https://doi.org/10.1109/TIFS.2017.2756602 +Juan M. Estévez-Tapiador,On the Distinguishability of Distance-Bounded Permutations in Ordered Channels.,2008,3,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs3.html#Estevez-TapiadorCAR08,https://doi.org/10.1109/TIFS.2008.920724 +Tarique Anwar,Ranking Radically Influential Web Forum Users.,2015,10,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs10.html#AnwarA15,https://doi.org/10.1109/TIFS.2015.2407313 +Guilin Wang,An abuse-free fair contract-signing protocol based on the RSA signature.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#Wang10,https://doi.org/10.1109/TIFS.2009.2035972 +Radu Sion,Fighting Mallory the Insider: Strong Write-Once Read-Many Storage Assurances.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#SionC12,https://doi.org/10.1109/TIFS.2011.2172207 +Xinjian Chen,An algorithm for distorted fingerprint matching based on local triangle feature set.,2006,1,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs1.html#ChenTYZ06,https://doi.org/10.1109/TIFS.2006.873605 +Rodrigo Frassetto Nogueira,Fingerprint Liveness Detection Using Convolutional Neural Networks.,2016,11,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs11.html#NogueiraLM16,https://doi.org/10.1109/TIFS.2016.2520880 +Willy Susilo,EACSIP: Extendable Access Control System With Integrity Protection for Enhancing Collaboration in the Cloud.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#SusiloJGYYM17,https://doi.org/10.1109/TIFS.2017.2737960 +Xiaokui Shu,Fast Detection of Transformed Data Leaks.,2016,11,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs11.html#ShuZYF16,https://doi.org/10.1109/TIFS.2015.2503271 +Yang Wang,Revisiting Optimistic Fair Exchange Based on Ring Signatures.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#WangAS14,https://doi.org/10.1109/TIFS.2014.2354986 +Rig Das,Convolutional Neural Network for Finger-Vein-Based Biometric Identification.,2019,14,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs14.html#DasPMC19,https://doi.org/10.1109/TIFS.2018.2850320 +Natalia A. Schmid,Performance analysis of iris-based identification system at the matching score level.,2006,1,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs1.html#SchmidKSC06,https://doi.org/10.1109/TIFS.2006.873603 +Yajuan Tang,Modeling the Vulnerability of Feedback-Control Based Internet Services to Low-Rate DoS Attacks.,2014,9,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs9.html#TangLHC14,https://doi.org/10.1109/TIFS.2013.2291970 +Ke Li,Security Analysis on One-to-Many Order Preserving Encryption-Based Cloud Data Search.,2015,10,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs10.html#LiZYY15,https://doi.org/10.1109/TIFS.2015.2435697 +Elena Veronica Belmega,Protecting Secret Key Generation Systems Against Jamming: Energy Harvesting and Channel Hopping Approaches.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#BelmegaC17,https://doi.org/10.1109/TIFS.2017.2713342 +Siwei Lyu,Steganalysis using higher-order image statistics.,2006,1,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs1.html#LyuF06,https://doi.org/10.1109/TIFS.2005.863485 +Antitza Dantcheva,What Else Does Your Biometric Data Reveal? A Survey on Soft Biometrics.,2016,11,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs11.html#DantchevaER16,https://doi.org/10.1109/TIFS.2015.2480381 +Minoru Kuribayashi,Impact of Rounding Error on Spread Spectrum Fingerprinting Scheme.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#KuribayashiK10,https://doi.org/10.1109/TIFS.2010.2082535 +Jacob R. Scanlon,Forecasting Violent Extremist Cyber Recruitment.,2015,10,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs10.html#ScanlonG15,https://doi.org/10.1109/TIFS.2015.2464775 +Wei-Che Wang,Design and Analysis of Stability-Guaranteed PUFs.,2018,13,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs13.html#WangYDG18,https://doi.org/10.1109/TIFS.2017.2774761 +Jung Hee Cheon,A Hybrid Scheme of Public-Key Encryption and Somewhat Homomorphic Encryption.,2015,10,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs10.html#CheonK15,https://doi.org/10.1109/TIFS.2015.2398359 +Yu-Hao Chin,Speaker Identification Using Discriminative Features and Sparse Representation.,2017,12,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs12.html#ChinWHWW17,https://doi.org/10.1109/TIFS.2017.2678458 +Mohammad Sayad Haghighi,On the Race of Worms and Patches: Modeling the Spread of Information in Wireless Sensor Networks.,2016,11,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs11.html#HaghighiWXQZ16,https://doi.org/10.1109/TIFS.2016.2594130 +Matteo Ferrara,Face Image Conformance to ISO/ICAO Standards in Machine Readable Travel Documents.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#FerraraFMM12,https://doi.org/10.1109/TIFS.2012.2198643 +Himanshu S. Bhatt,Recognizing Surgically Altered Face Images Using Multiobjective Evolutionary Algorithm.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#BhattBSV13,https://doi.org/10.1109/TIFS.2012.2223684 +Po-Chyi Su,Geometrically Resilient Digital Image Watermarking by Using Interest Point Extraction and Extended Pilot Signals.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#SuCW13,https://doi.org/10.1109/TIFS.2013.2282121 +Sotiris Malassiotis,Personal authentication using 3-D finger geometry.,2006,1,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs1.html#MalassiotisAS06,https://doi.org/10.1109/TIFS.2005.863508 +Pascal Schöttle,Game Theory and Adaptive Steganography.,2016,11,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs11.html#SchottleB16,https://doi.org/10.1109/TIFS.2015.2509941 +Sunpreet S. Arora,Design and Fabrication of 3D Fingerprint Targets.,2016,11,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs11.html#Arora0JP16,https://doi.org/10.1109/TIFS.2016.2581306 +Ritendra Datta,Exploiting the human-machine gap in image recognition for designing CAPTCHAs.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#DattaLW09,https://doi.org/10.1109/TIFS.2009.2022709 +Russell A. Fink,TPM meets DRE: reducing the trust base for electronic voting using trusted platform modules.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#FinkSC09,https://doi.org/10.1109/TIFS.2009.2034900 +Lan Zhou,Trust Enhanced Cryptographic Role-Based Access Control for Secure Cloud Data Storage.,2015,10,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs10.html#ZhouVH15,https://doi.org/10.1109/TIFS.2015.2455952 +Chao Yang,Empirical Evaluation and New Design for Fighting Evolving Twitter Spammers.,2013,8,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs8.html#YangHG13,https://doi.org/10.1109/TIFS.2013.2267732 +Yu Zhu,Still-to-Video Face Matching Using Multiple Geodesic Flows.,2016,11,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs11.html#ZhuLMSG16,https://doi.org/10.1109/TIFS.2016.2601060 +Ode Ojowu,ENF Extraction From Digital Recordings Using Adaptive Techniques and Frequency Tracking.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#OjowuKLL12,https://doi.org/10.1109/TIFS.2012.2197391 +Yi Cheng Feng,A hybrid approach for generating secure and discriminating face template.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#FengYJ10,https://doi.org/10.1109/TIFS.2009.2038760 +Zhaohong Wang,Information-Theoretic Secure Multi-Party Computation With Collusion Deterrence.,2017,12,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs12.html#WangCL17,https://doi.org/10.1109/TIFS.2016.2598533 +Tomás Pevný,Steganalysis by subtractive pixel adjacency matrix.,2010,5,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs5.html#PevnyBF10,https://doi.org/10.1109/TIFS.2010.2045842 +Ning Zhang 0017,Memory Forensic Challenges Under Misused Architectural Features.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#ZhangZSLHJ18,https://doi.org/10.1109/TIFS.2018.2819119 +Yier Jin,Data Secrecy Protection Through Information Flow Tracking in Proof-Carrying Hardware IP - Part I: Framework Fundamentals.,2017,12,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs12.html#JinGDBM17,https://doi.org/10.1109/TIFS.2017.2707323 +Michail Tsikerdekis,Identity Deception Prevention Using Common Contribution Network Data.,2017,12,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs12.html#Tsikerdekis17,https://doi.org/10.1109/TIFS.2016.2607697 +Vincenzo Matta,Cyber-Threat Mitigation Exploiting the Birth-Death-Immigration Model.,2018,13,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs13.html#MattaMLF18,https://doi.org/10.1109/TIFS.2018.2838084 +Sheng Gao,TrPF: A Trajectory Privacy-Preserving Framework for Participatory Sensing.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#GaoMSZS13,https://doi.org/10.1109/TIFS.2013.2252618 +Bin Dai 0003,Finite State Markov Wiretap Channel With Delayed Feedback.,2017,12,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs12.html#DaiML17,https://doi.org/10.1109/TIFS.2016.2636085 +Arfika Nurhudatiana,The Individuality of Relatively Permanent Pigmented or Vascular Skin Marks (RPPVSM) in Independently and Uniformly Distributed Patterns.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#NurhudatianaKMCACC13,https://doi.org/10.1109/TIFS.2013.2258338 +Ronny Merkel,A First Public Research Collection of High-Resolution Latent Fingerprint Time Series for Short- and Long-Term Print Age Estimation.,2017,12,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs12.html#MerkelDV17,https://doi.org/10.1109/TIFS.2017.2705622 +Chin-Chen Chang 0001,A Novel Electronic English Auction System With a Secure On-Shelf Mechanism.,2013,8,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs8.html#ChangCC13,https://doi.org/10.1109/TIFS.2013.2250431 +Diksha Golait,Detecting Anomalous Behavior in VoIP Systems: A Discrete Event System Modeling.,2017,12,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs12.html#GolaitH17,https://doi.org/10.1109/TIFS.2016.2632071 +Xinpeng Zhang,Separable Reversible Data Hiding in Encrypted Image.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#Zhang12a,https://doi.org/10.1109/TIFS.2011.2176120 +David P. Montminy,Differential Electromagnetic Attacks on a 32-bit Microprocessor Using Software Defined Radios.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#MontminyBTO13,https://doi.org/10.1109/TIFS.2013.2287600 +Mun-Kyu Lee,Security Notions and Advanced Method for Human Shoulder-Surfing Resistant PIN-Entry.,2014,9,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs9.html#Lee14,https://doi.org/10.1109/TIFS.2014.2307671 +Ghassan Karame,On the Security of End-to-End Measurements Based on Packet-Pair Dispersions.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#KarameDBC13,https://doi.org/10.1109/TIFS.2012.2226579 +Pietro Guccione,Hyperbolic RDM for nonlinear valumetric distortions.,2009,4,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs4.html#GuccioneS09,https://doi.org/10.1109/TIFS.2008.2011080 +Jun Zhao 0007,On Resilience and Connectivity of Secure Wireless Sensor Networks Under Node Capture Attacks.,2017,12,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs12.html#Zhao17,https://doi.org/10.1109/TIFS.2016.2613841 +Amir Ameli,Attack Detection for Load Frequency Control Systems Using Stochastic Unknown Input Estimators.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#AmeliHYEY18,https://doi.org/10.1109/TIFS.2018.2824253 +Erkam Uzun,Carving Orphaned JPEG File Fragments.,2015,10,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs10.html#UzunS15,https://doi.org/10.1109/TIFS.2015.2416685 +Karen Hollingsworth,Human and Machine Performance on Periocular Biometrics Under Near-Infrared Light and Visible Light.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#HollingsworthDMWBF12,https://doi.org/10.1109/TIFS.2011.2173932 +Seungwon Shin,A First Step Toward Network Security Virtualization: From Concept To Prototype.,2015,10,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs10.html#ShinWG15,https://doi.org/10.1109/TIFS.2015.2453936 +Yang Hu 0004,Optimal Generation of Iris Codes for Iris Recognition.,2017,12,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs12.html#HuSH17,https://doi.org/10.1109/TIFS.2016.2606083 +Amin Merati,User-Specific Cohort Selection and Score Normalization for Biometric Systems.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#MeratiPK12,https://doi.org/10.1109/TIFS.2012.2198469 +Jing (Dave) Tian,Securing ARP/NDP From the Ground Up.,2017,12,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs12.html#TianBCMK17,https://doi.org/10.1109/TIFS.2017.2695983 +Ajay Kumar 0001,Personal Identification Using Minor Knuckle Patterns From Palm Dorsal Surface.,2016,11,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs11.html#KumarX16,https://doi.org/10.1109/TIFS.2016.2574309 +Mohammad Mahdi Khalili,Designing Cyber Insurance Policies: The Role of Pre-Screening and Security Interdependence.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#KhaliliNL18,https://doi.org/10.1109/TIFS.2018.2812205 +Julien Bringer,Theoretical and Practical Boundaries of Binary Secure Sketches.,2008,3,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs3.html#BringerCCKZ08,https://doi.org/10.1109/TIFS.2008.2002937 +Hao Wu 0008,A Game Theory Based Collaborative Security Detection Method for Internet of Things Systems.,2018,13,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs13.html#WuW18,https://doi.org/10.1109/TIFS.2018.2790382 +Gaurav Goswami,Face Verification via Learned Representation on Feature-Rich Video Frames.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#GoswamiVS17,https://doi.org/10.1109/TIFS.2017.2668221 +Kaitai Liang,Privacy-Preserving Ciphertext Multi-Sharing Control for Big Data Storage.,2015,10,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs10.html#LiangSL15,https://doi.org/10.1109/TIFS.2015.2419186 +Jessica J. Fridrich,Wet paper codes with improved embedding efficiency.,2006,1,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs1.html#FridrichGS06,https://doi.org/10.1109/TIFS.2005.863487 +Li Zhang,A Pragmatic Per-Device Licensing Scheme for Hardware IP Cores on SRAM-Based FPGAs.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#ZhangC14,https://doi.org/10.1109/TIFS.2014.2355043 +Haowei Wang,Polar Coding for the Wiretap Channel With Shared Key.,2018,13,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs13.html#WangTLH18,https://doi.org/10.1109/TIFS.2017.2774499 +Xueqing Gong,A Zigzag-Decodable Ramp Secret Sharing Scheme.,2018,13,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs13.html#GongHSS18,https://doi.org/10.1109/TIFS.2018.2806922 +Andrey Garnaev,One-Time Spectrum Coexistence in Dynamic Spectrum Access When the Secondary User May Be Malicious.,2015,10,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs10.html#GarnaevT15,https://doi.org/10.1109/TIFS.2015.2398360 +Sebastiano Battiato,Robust Image Alignment for Tampering Detection.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#BattiatoFMP12,https://doi.org/10.1109/TIFS.2012.2194285 +Chao Shen 0001,User Authentication Through Mouse Dynamics.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#ShenCGDM13,https://doi.org/10.1109/TIFS.2012.2223677 +Mohammad Hashem Haghighat,Payload Attribution via Character Dependent Multi-Bloom Filters.,2013,8,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs8.html#HaghighatTK13,https://doi.org/10.1109/TIFS.2013.2252341 +Xiangqian Wu,Offline Text-Independent Writer Identification Based on Scale Invariant Feature Transform.,2014,9,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs9.html#WuTB14,https://doi.org/10.1109/TIFS.2014.2301274 +Aditi Roy,MasterPrint: Exploring the Vulnerability of Partial Fingerprint-Based Authentication Systems.,2017,12,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs12.html#RoyMR17,https://doi.org/10.1109/TIFS.2017.2691658 +David A. Karpuk,Perfect Secrecy in Physical-Layer Network Coding Systems From Structured Interference.,2016,11,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs11.html#KarpukC16,https://doi.org/10.1109/TIFS.2016.2563165 +Parthajit Mohapatra,Secure Communications for the Two-User Broadcast Channel With Random Traffic.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#MohapatraPLQA18,https://doi.org/10.1109/TIFS.2018.2818076 +Jianting Ning,Auditable and#963*-Time Outsourced Attribute-Based Encryption for Access Control in Cloud Computing.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#NingCDLMW18,https://doi.org/10.1109/TIFS.2017.2738601 +Pranab K. Mohanty,Subspace Approximation of Face Recognition Algorithms: An Empirical Study.,2008,3,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs3.html#MohantySKP08,https://doi.org/10.1109/TIFS.2008.2007242 +Zhen Liu,Traceable CP-ABE: How to Trace Decryption Devices Found in the Wild.,2015,10,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs10.html#LiuCW15a,https://doi.org/10.1109/TIFS.2014.2363562 +Huaqun Wang,Identity-Based Proxy-Oriented Data Uploading and Remote Data Integrity Checking in Public Cloud.,2016,11,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs11.html#WangHT16,https://doi.org/10.1109/TIFS.2016.2520886 +Hidehisa Nakayama,Network-based traitor-tracing technique using traffic pattern.,2010,5,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs5.html#NakayamaJK10,https://doi.org/10.1109/TIFS.2010.2046961 +Nasir D. Memon,Editorial.,2009,4,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs4.html#Memon09,https://doi.org/10.1109/TIFS.2009.2014407 +Anthony Tung Shuen Ho,Fragile Watermarking Based on Encoding of the Zeroes of the z-Transform.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#HoZSM08,https://doi.org/10.1109/TIFS.2008.926994 +Somnath Dey,Iris Data Indexing Method Using Gabor Energy Features.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#DeyS12,https://doi.org/10.1109/TIFS.2012.2196515 +Alfredo Rial,A Privacy-Preserving Buyer-Seller Watermarking Protocol Based on Priced Oblivious Transfer.,2011,6,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs6.html#RialBP11,https://doi.org/10.1109/TIFS.2010.2095844 +Thijs Laarhoven,Asymptotics of Fingerprinting and Group Testing: Tight Bounds From Channel Capacities.,2015,10,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs10.html#Laarhoven15,https://doi.org/10.1109/TIFS.2015.2440190 +João P. Vilela,Wireless Secrecy Regions With Friendly Jamming.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#VilelaBBM11,https://doi.org/10.1109/TIFS.2011.2111370 +Mu Li,Compact Video Fingerprinting via Structural Graphical Models.,2013,8,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs8.html#LiM13,https://doi.org/10.1109/TIFS.2013.2278100 +Evgeny A. Verbitskiy,Key extraction from general nondiscrete signals.,2010,5,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs5.html#VerbitskiyTOSS10,https://doi.org/10.1109/TIFS.2010.2046965 +Yuan Hong,Privacy Preserving Smart Meter Streaming Against Information Leakage of Appliance Status.,2017,12,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs12.html#HongLW17,https://doi.org/10.1109/TIFS.2017.2704904 +Ning Wang,Cooperative Key Agreement for Wireless Networking: Key Rates and Practical Protocol Design.,2014,9,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs9.html#WangZG14,https://doi.org/10.1109/TIFS.2013.2293113 +Xiaoming Xu,Secure Transmission Design for Cognitive Radio Networks With Poisson Distributed Eavesdroppers.,2016,11,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs11.html#XuHYZC16,https://doi.org/10.1109/TIFS.2015.2500178 +Boris Skoric,The Spammed Code Offset Method.,2014,9,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs9.html#SkoricV14,https://doi.org/10.1109/TIFS.2014.2312851 +Assia Hamadene,One-Class Writer-Independent Offline Signature Verification Using Feature Dissimilarity Thresholding.,2016,11,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs11.html#HamadeneC16,https://doi.org/10.1109/TIFS.2016.2521611 +Mohammad-Mahdi Bidmeshki,Data Secrecy Protection Through Information Flow Tracking in Proof-Carrying Hardware IP - Part II: Framework Automation.,2017,12,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs12.html#BidmeshkiGDJM17,https://doi.org/10.1109/TIFS.2017.2707327 +Chau-Wai Wong,Counterfeit Detection Based on Unclonable Feature of Paper Using Mobile Camera.,2017,12,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs12.html#Wong017,https://doi.org/10.1109/TIFS.2017.2694404 +Weiming Zhang,Generalization of the ZZW embedding construction for steganography.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#ZhangW09,https://doi.org/10.1109/TIFS.2009.2024720 +Jung Yeon Hwang,Short Dynamic Group Signature Scheme Supporting Controllable Linkability.,2015,10,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs10.html#HwangCCN15,https://doi.org/10.1109/TIFS.2015.2390497 +Himanshu S. Bhatt,Memetically Optimized MCWLD for Matching Sketches With Digital Face Images.,2012,7,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs7.html#BhattBSV12,https://doi.org/10.1109/TIFS.2012.2204252 +Zohaib Hassan Awan,Secure Communication Over Parallel Relay Channel.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#AwanZV12,https://doi.org/10.1109/TIFS.2012.2185493 +Junzuo Lai,Attribute-Based Encryption With Verifiable Outsourced Decryption.,2013,8,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs8.html#LaiDGW13,https://doi.org/10.1109/TIFS.2013.2271848 +Fei Chen 0003,Secure Hashing-Based Verifiable Pattern Matching.,2018,13,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs13.html#ChenWLCMLDWQ18,https://doi.org/10.1109/TIFS.2018.2825141 +Vahid Sedighi,Content-Adaptive Steganography by Minimizing Statistical Detectability.,2016,11,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs11.html#SedighiCF16,https://doi.org/10.1109/TIFS.2015.2486744 +Yunlian Sun,Complementary Cohort Strategy for Multimodal Face Pair Matching.,2016,11,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs11.html#SunNST16,https://doi.org/10.1109/TIFS.2015.2512561 +Sarat C. Dass,Assessing fingerprint individuality in presence of noisy minutiae.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#Dass10,https://doi.org/10.1109/TIFS.2009.2039598 +Zhongmin Wang,Halftone visual cryptography via error diffusion.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#WangAC09,https://doi.org/10.1109/TIFS.2009.2024721 +Erik Miehling,A POMDP Approach to the Dynamic Defense of Large-Scale Cyber Networks.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#MiehlingRT18,https://doi.org/10.1109/TIFS.2018.2819967 +Kathryn Bonnen,Component-Based Representation in Automated Face Recognition.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#BonnenKJ13,https://doi.org/10.1109/TIFS.2012.2226580 +Javier Franco-Contreras,Robust Watermarking of Relational Databases With Ontology-Guided Distortion Control.,2015,10,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs10.html#Franco-Contreras15,https://doi.org/10.1109/TIFS.2015.2439962 +Saman Feghhi,An Efficient Web Traffic Defence Against Timing-Analysis Attacks.,2019,14,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs14.html#FeghhiL19,https://doi.org/10.1109/TIFS.2018.2855655 +Matthias Kirchner,Hiding Traces of Resampling in Digital Images.,2008,3,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs3.html#KirchnerB08,https://doi.org/10.1109/TIFS.2008.2008214 +Le Zhang,Highly Reliable Spin-Transfer Torque Magnetic RAM-Based Physical Unclonable Function With Multi-Response-Bits Per Cell.,2015,10,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs10.html#ZhangFCKR15,https://doi.org/10.1109/TIFS.2015.2421481 +Alireza Jolfaei,On the Security of Permutation-Only Image Encryption Schemes.,2016,11,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs11.html#JolfaeiWM16,https://doi.org/10.1109/TIFS.2015.2489178 +Patrizio Campisi,Editorial.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#Campisi18,https://doi.org/10.1109/TIFS.2017.2788318 +Simson L. Garfinkel,An Automated Solution to the Multiuser Carved Data Ascription Problem.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#GarfinkelPHM10,https://doi.org/10.1109/TIFS.2010.2060484 +Nianfeng Liu,A Code-Level Approach to Heterogeneous Iris Recognition.,2017,12,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs12.html#LiuLST17,https://doi.org/10.1109/TIFS.2017.2686013 +Wei Wang 0012,Exploring Permission-Induced Risk in Android Applications for Malicious Application Detection.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#WangWFLHZ14,https://doi.org/10.1109/TIFS.2014.2353996 +Kan Chen,Secret Key Generation Rate With Power Allocation in Relay-Based LTE-A Networks.,2015,10,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs10.html#ChenNS15,https://doi.org/10.1109/TIFS.2015.2462756 +Guang Hua,Cepstral Analysis for the Application of Echo-Based Audio Watermark Detection.,2015,10,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs10.html#HuaGT15,https://doi.org/10.1109/TIFS.2015.2431997 +Yuan Zhang 0004,Privacy-Preserving Data Aggregation in Mobile Phone Sensing.,2016,11,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs11.html#ZhangCZ16,https://doi.org/10.1109/TIFS.2016.2515513 +Shaoquan Jiang,Keyless Authentication in a Noisy Model.,2014,9,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs9.html#Jiang14,https://doi.org/10.1109/TIFS.2014.2320634 +Jinho Choi 0001,On Channel-Aware Secure HARQ-IR.,2017,12,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs12.html#Choi17,https://doi.org/10.1109/TIFS.2016.2613846 +Lichun Li,Privacy-Preserving-Outsourced Association Rule Mining on Vertically Partitioned Databases.,2016,11,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs11.html#LiLCDS16,https://doi.org/10.1109/TIFS.2016.2561241 +Hung-Min Sun,On the security of the secure arithmetic code.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#SunWT09,https://doi.org/10.1109/TIFS.2009.2031944 +Nima Tavangaran,Secret-Key Generation Using Compound Sources and One-Way Public Communication.,2017,12,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs12.html#TavangaranBS17,https://doi.org/10.1109/TIFS.2016.2611484 +Mengyun Tang,Research on Deep Learning Techniques in Breaking Text-Based Captchas and Designing Image-Based Captcha.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#TangGZLZW18,https://doi.org/10.1109/TIFS.2018.2821096 +Kede Ma,Reversible Data Hiding in Encrypted Images by Reserving Room Before Encryption.,2013,8,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs8.html#MaZZYL13,https://doi.org/10.1109/TIFS.2013.2248725 +Hee-seung Choi,Mosaicing touchless and mirror-reflected fingerprint images.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#ChoiCK10,https://doi.org/10.1109/TIFS.2009.2038758 +Yuan Zhang,Permission Use Analysis for Vetting Undesirable Behaviors in Android Apps.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#ZhangYYGNZ14,https://doi.org/10.1109/TIFS.2014.2347206 +Igor Bilogrevic,Privacy-Preserving Optimal Meeting Location Determination on Mobile Devices.,2014,9,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs9.html#BilogrevicJJKHA14,https://doi.org/10.1109/TIFS.2014.2318435 +Yuan Cao,A Cluster-Based Distributed Active Current Sensing Circuit for Hardware Trojan Detection.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#CaoCC14,https://doi.org/10.1109/TIFS.2014.2360432 +Azzam Al-Nahari,Beamforming With Artificial Noise for Secure MISOME Cognitive Radio Transmissions.,2018,13,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs13.html#Al-NahariGAAY18,https://doi.org/10.1109/TIFS.2018.2797055 +Jun Du,Community-Structured Evolutionary Game for Privacy Protection in Social Networks.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#DuJCRP18,https://doi.org/10.1109/TIFS.2017.2758756 +Xuan Zha,Collaborative Authentication in Decentralized Dense Mobile Networks With Key Predistribution.,2017,12,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs12.html#ZhaNZLN17,https://doi.org/10.1109/TIFS.2017.2705584 +Mehdi Boroumand,Applications of Explicit Non-Linear Feature Maps in Steganalysis.,2018,13,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs13.html#BoroumandF18,https://doi.org/10.1109/TIFS.2017.2766580 +Mario Frank,Touchalytics: On the Applicability of Touchscreen Input as a Behavioral Biometric for Continuous Authentication.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#FrankBMMS13,https://doi.org/10.1109/TIFS.2012.2225048 +Yihai Zhu,Resilience Analysis of Power Grids Under the Sequential Attack.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#ZhuYTSH14,https://doi.org/10.1109/TIFS.2014.2363786 +Asem M. Ali,A 3D-Based Pose Invariant Face Recognition at a Distance Framework.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#Ali14,https://doi.org/10.1109/TIFS.2014.2362299 +Xuefeng Liang,A Robust Fingerprint Indexing Scheme Using Minutia Neighborhood Structure and Low-Order Delaunay Triangles.,2007,2,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs2.html#LiangBA07,https://doi.org/10.1109/TIFS.2007.910242 +Di Wen,Face Spoof Detection With Image Distortion Analysis.,2015,10,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs10.html#WenHJ15,https://doi.org/10.1109/TIFS.2015.2400395 +Gaurav Bansod,Implementation of a New Lightweight Encryption Design for Embedded Security.,2015,10,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs10.html#BansodRP15,https://doi.org/10.1109/TIFS.2014.2365734 +Linjie Guo,Using Statistical Image Model for JPEG Steganography: Uniform Embedding Revisited.,2015,10,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs10.html#GuoNSTS15,https://doi.org/10.1109/TIFS.2015.2473815 +Jianhua Liu,Energy-Efficient Two-Layer Cooperative Defense Scheme to Secure Sensor-Clouds.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#LiuYS18,https://doi.org/10.1109/TIFS.2017.2756344 +Tiziano Bianchi,Detection of Nonaligned Double JPEG Compression Based on Integer Periodicity Maps.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#BianchiP12,https://doi.org/10.1109/TIFS.2011.2170836 +Yu-Feng Hsu,Camera Response Functions for Image Forensics: An Automatic Algorithm for Splicing Detection.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#HsuC10,https://doi.org/10.1109/TIFS.2010.2077628 +Shaoquan Jiang,(Im)possibility of Deterministic Commitment Over a Discrete Memoryless Channel.,2014,9,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs9.html#Jiang14a,https://doi.org/10.1109/TIFS.2014.2335113 +Hua Sun,Optimal Download Cost of Private Information Retrieval for Arbitrary Message Length.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#SunJ17,https://doi.org/10.1109/TIFS.2017.2725225 +Napa Sae-Bae,Multitouch Gesture-Based Authentication.,2014,9,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs9.html#Sae-BaeMIA14,https://doi.org/10.1109/TIFS.2014.2302582 +Xinwei Qiu,Finger Vein Presentation Attack Detection Using Total Variation Decomposition.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#QiuKTJH18,https://doi.org/10.1109/TIFS.2017.2756598 +Worapan Kusakunniran,Recognizing Gaits on Spatio-Temporal Feature Domain.,2014,9,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs9.html#Kusakunniran14,https://doi.org/10.1109/TIFS.2014.2336379 +Xiaotian Wu,Extended Capabilities for XOR-Based Visual Cryptography.,2014,9,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs9.html#WuS14,https://doi.org/10.1109/TIFS.2014.2346014 +Jingchao Chen,Joint Relay and Jammer Selection for Secure Two-Way Relay Networks.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#ChenZSHJ12,https://doi.org/10.1109/TIFS.2011.2166386 +Yubao Zhang,Twitter Trends Manipulation: A First Look Inside the Security of Twitter Trending.,2017,12,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs12.html#ZhangRWWH17,https://doi.org/10.1109/TIFS.2016.2604226 +Sri-Kaushik Pavani,An Experimental Evaluation of Three Classifiers for Use in Self-Updating Face Recognition Systems.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#PavaniSGBPF12,https://doi.org/10.1109/TIFS.2012.2186292 +Yuanwen Huang,Scalable Test Generation for Trojan Detection Using Side Channel Analysis.,2018,13,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs13.html#HuangBM18,https://doi.org/10.1109/TIFS.2018.2833059 +Ashkan Kalantari,Secrecy Analysis on Network Coding in Bidirectional Multibeam Satellite Communications.,2015,10,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs10.html#KalantariZGHO15,https://doi.org/10.1109/TIFS.2015.2432732 +Yuhong Liu,Efficiently Promoting Product Online Outcome: An Iterative Rating Attack Utilizing Product and Market Property.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#LiuZC17,https://doi.org/10.1109/TIFS.2017.2668992 +Yi-Lei Chen,Subspace Learning for Facial Age Estimation Via Pairwise Age Ranking.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#ChenH13,https://doi.org/10.1109/TIFS.2013.2286265 +Lei Xue,LinkScope: Toward Detecting Target Link Flooding Attacks.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#XueMLCMG18,https://doi.org/10.1109/TIFS.2018.2815555 +Wenjun Gu,Scaling Laws of Key Predistribution Protocols in Wireless Sensor Networks.,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#GuCBW11,https://doi.org/10.1109/TIFS.2011.2159001 +Zanoni Dias,Image Phylogeny by Minimal Spanning Trees.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#DiasRG12,https://doi.org/10.1109/TIFS.2011.2169959 +William E. Cobb,Intrinsic Physical-Layer Authentication of Integrated Circuits.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#CobbLBTK12,https://doi.org/10.1109/TIFS.2011.2160170 +Xiaohong Guan,Dynamic Feature Analysis and Measurement for Large-Scale Network Traffic Monitoring.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#GuanQLW10,https://doi.org/10.1109/TIFS.2010.2066970 +Mauro Mangia,Low-Cost Security of IoT Sensor Nodes With Rakeness-Based Compressed Sensing: Statistical and Known-Plaintext Attacks.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#MangiaPRS18,https://doi.org/10.1109/TIFS.2017.2749982 +Asma Rabaoui,Using One-Class SVMs and Wavelets for Audio Surveillance.,2008,3,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs3.html#RabaouiDRE08,https://doi.org/10.1109/TIFS.2008.2008216 +Yun-Fu Liu,Sample Space Dimensionality Refinement for Symmetrical Object Detection.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#LiuGHSL14,https://doi.org/10.1109/TIFS.2014.2355495 +Alexandros Iosifidis,Activity-Based Person Identification Using Fuzzy Representation and Discriminant Learning.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#IosifidisTP12,https://doi.org/10.1109/TIFS.2011.2175921 +Hu Xiong,Cost-Effective Scalable and Anonymous Certificateless Remote Authentication Protocol.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#Xiong14,https://doi.org/10.1109/TIFS.2014.2363553 +Stefano Tomasin,Resource Allocation for Secret Key Agreement Over Parallel Channels With Full and Partial Eavesdropper CSI.,2015,10,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs10.html#TomasinD15,https://doi.org/10.1109/TIFS.2015.2455412 +Parinaz Naghizadeh,Opting Out of Incentive Mechanisms: A Study of Security as a Non-Excludable Public Good.,2016,11,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs11.html#NaghizadehL16,https://doi.org/10.1109/TIFS.2016.2599005 +Siavash Bayat,Physical-Layer Security in Distributed Wireless Networks Using Matching Theory.,2013,8,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs8.html#BayatLHVL13,https://doi.org/10.1109/TIFS.2013.2251335 +Francesco Marra,Blind PRNU-Based Image Clustering for Source Identification.,2017,12,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs12.html#MarraPSV17,https://doi.org/10.1109/TIFS.2017.2701335 +Peng Xu 0003,Generating Searchable Public-Key Ciphertexts With Hidden Structures for Fast Keyword Search.,2015,10,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs10.html#XuWWSDJ15,https://doi.org/10.1109/TIFS.2015.2442220 +Vincent Y. F. Tan,Information Spectrum Approach to Strong Converse Theorems for Degraded Wiretap Channels.,2015,10,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs10.html#TanB15,https://doi.org/10.1109/TIFS.2015.2434592 +Norman Poh,Benchmarking quality-dependent and cost-sensitive score-level multimodal biometric fusion algorithms.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#PohBKAAABDFFGOMSSV09,https://doi.org/10.1109/TIFS.2009.2034885 +Félix Balado,Performance Analysis of Robust Audio Hashing.,2007,2,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs2.html#BaladoHMS07,https://doi.org/10.1109/TIFS.2007.897258 +Jia Yu,Strong Key-Exposure Resilient Auditing for Secure Cloud Storage.,2017,12,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs12.html#YuW17,https://doi.org/10.1109/TIFS.2017.2695449 +Meng-Hui Lim,An Analytic Performance Estimation Framework for Multibit Biometric Discretization Based on Equal-Probable Quantization and Linearly Separable Subcode Encoding.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#LimT12,https://doi.org/10.1109/TIFS.2012.2191962 +Shih-Chun Lin,Coded Quickest Classification With Applications in Bandwidth-Efficient Smart Grid Monitoring.,2018,13,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs13.html#LinLHSC18,https://doi.org/10.1109/TIFS.2018.2837658 +Song Fang,Mimicry Attacks Against Wireless Link Signature and New Defense Using Time-Synched Link Signature.,2016,11,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs11.html#FangLN16,https://doi.org/10.1109/TIFS.2016.2541307 +Adi Hajj-Ahmad,Flicker Forensics for Camcorder Piracy.,2017,12,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs12.html#Hajj-AhmadBCDW17,https://doi.org/10.1109/TIFS.2016.2603603 +Saeedreza Shehnepoor,NetSpam: A Network-Based Spam Detection Framework for Reviews in Online Social Media.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#ShehnepoorSFC17,https://doi.org/10.1109/TIFS.2017.2675361 +Vivek Balachandran,Potent and Stealthy Control Flow Obfuscation by Stack Based Self-Modifying Code.,2013,8,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs8.html#BalachandranE13,https://doi.org/10.1109/TIFS.2013.2250964 +Renwei Ge,Approximate Message Authentication Codes for N-ary Alphabets.,2006,1,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs1.html#GeAC06,https://doi.org/10.1109/TIFS.2005.863504 +Zhenhua Guo 0001,Feature Band Selection for Online Multispectral Palmprint Recognition.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#GuoZZL12,https://doi.org/10.1109/TIFS.2012.2189206 +Fabio Pareschi,On Statistical Tests for Randomness Included in the NIST SP800-22 Test Suite and Based on the Binomial Distribution.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#PareschiRS12,https://doi.org/10.1109/TIFS.2012.2185227 +Lin Chen 0002,A game theoretical framework on intrusion detection in heterogeneous networks.,2009,4,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs4.html#ChenL09,https://doi.org/10.1109/TIFS.2009.2019154 +Xi Zhang,Enhancing Secrecy With Multi-Antenna Transmission in Wireless Ad Hoc Networks.,2013,8,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs8.html#ZhangZM13,https://doi.org/10.1109/TIFS.2013.2279842 +Bin Li 0011,A Strategy of Clustering Modification Directions in Spatial Image Steganography.,2015,10,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs10.html#LiWLTH15,https://doi.org/10.1109/TIFS.2015.2434600 +Yonggang Huang,Camera Model Identification With Unknown Models.,2015,10,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs10.html#HuangZH15,https://doi.org/10.1109/TIFS.2015.2474836 +Neil Zhenqiang Gong,SybilBelief: A Semi-Supervised Learning Approach for Structure-Based Sybil Detection.,2014,9,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs9.html#GongFM14,https://doi.org/10.1109/TIFS.2014.2316975 +Fei Peng,An ROI Privacy Protection Scheme for H.264 Video Based on FMO and Chaos.,2013,8,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs8.html#PengZL13,https://doi.org/10.1109/TIFS.2013.2259819 +Yazhuo Gong,An Optimized Wavelength Band Selection for Heavily Pigmented Iris Recognition.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#GongZSY13,https://doi.org/10.1109/TIFS.2012.2223682 +Yang Hu 0004,Signal-Level Information Fusion for Less Constrained Iris Recognition Using Sparse-Error Low Rank Matrix Factorization.,2016,11,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs11.html#HuSH16,https://doi.org/10.1109/TIFS.2016.2541612 +Yingbo Zhou,Human Identification Using Palm-Vein Images.,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#ZhouK11,https://doi.org/10.1109/TIFS.2011.2158423 +Zhen Liu,White-Box Traceable Ciphertext-Policy Attribute-Based Encryption Supporting Any Monotone Access Structures.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#LiuCW13,https://doi.org/10.1109/TIFS.2012.2223683 +Hung-Min Sun,oPass: A User Authentication Protocol Resistant to Password Stealing and Password Reuse Attacks.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#SunCL12,https://doi.org/10.1109/TIFS.2011.2169958 +Stanislaw Jarecki,On the Insecurity of Proactive RSA in the URSA Mobile Ad Hoc Network Access Control Protocol.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#JareckiS10,https://doi.org/10.1109/TIFS.2010.2058104 +Tao Zhang 0011,Dynamic Differential Privacy for ADMM-Based Distributed Classification Learning.,2017,12,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs12.html#ZhangZ17,https://doi.org/10.1109/TIFS.2016.2607691 +André Schaller,Eliminating Leakage in Reverse Fuzzy Extractors.,2018,13,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs13.html#SchallerSSK18,https://doi.org/10.1109/TIFS.2017.2774500 +Shreyas Venugopalan,How to Generate Spoofed Irises From an Iris Code Template.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#VenugopalanS11,https://doi.org/10.1109/TIFS.2011.2108288 +Jongkil Kim,Adaptively Secure Identity-Based Broadcast Encryption With a Constant-Sized Ciphertext.,2015,10,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs10.html#KimSAS15,https://doi.org/10.1109/TIFS.2014.2388156 +Fengyong Li,Steganalysis Over Large-Scale Social Networks With High-Order Joint Features and Clustering Ensembles.,2016,11,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs11.html#LiWLWBG16,https://doi.org/10.1109/TIFS.2015.2496910 +Lan Zhou,Achieving Secure Role-Based Access Control on Encrypted Data in Cloud Storage.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#ZhouVH13,https://doi.org/10.1109/TIFS.2013.2286456 +Haris B. C.,Robust Speaker Verification With Joint Sparse Coding Over Learned Dictionaries.,2015,10,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs10.html#CS15,https://doi.org/10.1109/TIFS.2015.2450674 +Hussein Moosavi,Delay-Aware Optimization of Physical Layer Security in Multi-Hop Wireless Body Area Networks.,2016,11,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs11.html#MoosaviB16,https://doi.org/10.1109/TIFS.2016.2566446 +Paulo Antonio Andrade Esquef,Edit Detection in Speech Recordings via Instantaneous Electric Network Frequency Variations.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#EsquefAB14,https://doi.org/10.1109/TIFS.2014.2363524 +Irene G. Karybali,Efficient spatial image watermarking via new perceptual masking and blind detection schemes.,2006,1,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs1.html#KarybaliB06,https://doi.org/10.1109/TIFS.2006.873652 +Nam Yul Yu,Indistinguishability and Energy Sensitivity of Gaussian and Bernoulli Compressed Encryption.,2018,13,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs13.html#Yu18,https://doi.org/10.1109/TIFS.2018.2800726 +Gerson de Souza Faria,Identification of Pressed Keys From Mechanical Vibrations.,2013,8,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs8.html#FariaK13,https://doi.org/10.1109/TIFS.2013.2266775 +Anindya Sarkar,Matrix embedding with pseudorandom coefficient selection and error correction for robust and secure steganography.,2010,5,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs5.html#SarkarMM10,https://doi.org/10.1109/TIFS.2010.2046218 +Kai Bu,Unreconciled Collisions Uncover Cloning Attacks in Anonymous RFID Systems.,2013,8,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs8.html#BuLLXW13,https://doi.org/10.1109/TIFS.2012.2237395 +Shota Saito,A Theoretical Framework for Estimating False Acceptance Rate of PRNU-Based Camera Identification.,2017,12,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs12.html#SaitoTK17,https://doi.org/10.1109/TIFS.2017.2692683 +Huazhu Fu,Forgery Authentication in Extreme Wide-Angle Lens Using Distortion Cue and Fake Saliency Map.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#FuC12,https://doi.org/10.1109/TIFS.2012.2195492 +Huafeng Qin,Deep Representation-Based Feature Extraction and Recovering for Finger-Vein Verification.,2017,12,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs12.html#QinE17,https://doi.org/10.1109/TIFS.2017.2689724 +Hong Zhang 0005,A Steganalytic Approach to Detect Motion Vector Modification Using Near-Perfect Estimation for Local Optimality.,2017,12,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs12.html#ZhangCZ17,https://doi.org/10.1109/TIFS.2016.2623587 +Joseph K. Liu,Fine-Grained Two-Factor Access Control for Web-Based Cloud Computing Services.,2016,11,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs11.html#LiuAHL016,https://doi.org/10.1109/TIFS.2015.2493983 +Liang Xiao 0003,Channel-based detection of Sybil attacks in wireless networks.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#XiaoGMT09,https://doi.org/10.1109/TIFS.2009.2026454 +Takao Murakami,Toward Optimal Fusion Algorithms With Security Against Wolves and Lambs in Biometrics.,2014,9,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs9.html#MurakamiTM14,https://doi.org/10.1109/TIFS.2013.2296993 +Aleksandr Sizov,Joint Speaker Verification and Antispoofing in the i-Vector Space.,2015,10,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs10.html#SizovKKWM15,https://doi.org/10.1109/TIFS.2015.2407362 +Lahoucine Ballihi,Boosting 3-D-Geometric Features for Efficient Face Recognition and Gender Classification.,2012,7,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs7.html#BallihiADSA12,https://doi.org/10.1109/TIFS.2012.2209876 +H. Vicky Zhao,Traitor-Within-Traitor Behavior Forensics: Strategy and Risk Minimization.,2006,1,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs1.html#ZhaoL06a,https://doi.org/10.1109/TIFS.2006.885023 +Georg T. Becker,Detecting Software Theft in Embedded Systems: A Side-Channel Approach.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#BeckerSPB12,https://doi.org/10.1109/TIFS.2012.2191964 +Jun Yan 0007,Integrated Security Analysis on Cascading Failure in Complex Networks.,2014,9,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs9.html#YanHS14,https://doi.org/10.1109/TIFS.2014.2299404 +Nicholas Kolokotronis,Secretly Pruned Convolutional Codes: Security Analysis and Performance Results.,2016,11,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs11.html#KolokotronisKK16,https://doi.org/10.1109/TIFS.2016.2537262 +Valentina Conotter,Exposing Digital Forgeries in Ballistic Motion.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#ConotterOF12,https://doi.org/10.1109/TIFS.2011.2165843 +Derek Justice,Estimation of message source and destination from network intercepts.,2006,1,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs1.html#JusticeH06,https://doi.org/10.1109/TIFS.2006.879291 +Zulfiqar Hassan Khan,Joint feature correspondences and appearance similarity for robust visual object tracking.,2010,5,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs5.html#KhanG10,https://doi.org/10.1109/TIFS.2010.2050312 +Alessio Zappone,Optimal Energy-Efficient Design of Confidential Multiple-Antenna Systems.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#ZapponeLJ18,https://doi.org/10.1109/TIFS.2017.2746009 +Heejung Yu,Wireless Secure Communication With Beamforming and Jamming in Time-Varying Wiretap Channels.,2018,13,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs13.html#YuKJ18,https://doi.org/10.1109/TIFS.2018.2809695 +Xavier Rolland-Nevière,Triangle Surface Mesh Watermarking Based on a Constrained Optimization Framework.,2014,9,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs9.html#Rolland-NeviereDA14,https://doi.org/10.1109/TIFS.2014.2336376 +Yuhao Wang,DW-AES: A Domain-Wall Nanowire-Based AES for High Throughput and Energy-Efficient Data Encryption in Non-Volatile Memory.,2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#WangNCY16,https://doi.org/10.1109/TIFS.2016.2576903 +Graeme Bell,A method for automatic identification of signatures of steganography software.,2010,5,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs5.html#BellL10,https://doi.org/10.1109/TIFS.2010.2046985 +John D. Roth,On Location Privacy in LTE Networks.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#RothTMS17,https://doi.org/10.1109/TIFS.2017.2656470 +Xuebin Ren,LoPub: High-Dimensional Crowdsourced Data Publication With Local Differential Privacy.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#RenYYYYMY18,https://doi.org/10.1109/TIFS.2018.2812146 +Devi Parikh,Data Fusion and Cost Minimization for Intrusion Detection.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#ParikhC08,https://doi.org/10.1109/TIFS.2008.928539 +Tsung-Yuan Liu,A New Steganographic Method for Data Hiding in Microsoft Word Documents by a Change Tracking Technique.,2007,2,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs2.html#LiuT07,https://doi.org/10.1109/TIFS.2006.890310 +Wei Wang 0100,Artificial Noise Aided Physical Layer Security in Multi-Antenna Small-Cell Networks.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#0100TL17,https://doi.org/10.1109/TIFS.2017.2663336 +Michael Arnold,A Phase-Based Audio Watermarking System Robust to Acoustic Path Propagation.,2014,9,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs9.html#ArnoldCBGD14,https://doi.org/10.1109/TIFS.2013.2293952 +Wencheng Yang,A Delaunay Quadrangle-Based Fingerprint Authentication System With Template Protection Using Topology Code for Local Registration and Security Enhancement.,2014,9,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs9.html#YangHW14,https://doi.org/10.1109/TIFS.2014.2328095 +Fuqing Duan,Skull Identification via Correlation Measure Between Skull and Face Shape.,2014,9,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs9.html#DuanYLTLWZ14,https://doi.org/10.1109/TIFS.2014.2332981 +Xu Wang 0004,Virus Propagation Modeling and Convergence Analysis in Large-Scale Networks.,2016,11,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs11.html#WangNZLN16,https://doi.org/10.1109/TIFS.2016.2581305 +Saeedeh Parsaeefard,Improving Wireless Secrecy Rate via Full-Duplex Relay-Assisted Protocols.,2015,10,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs10.html#ParsaeefardL15,https://doi.org/10.1109/TIFS.2015.2446436 +Gaurav Goswami,RGB-D Face Recognition With Texture and Attribute Features.,2014,9,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs9.html#GoswamiVS14,https://doi.org/10.1109/TIFS.2014.2343913 +Zhenhua Chai,Gabor Ordinal Measures for Face Recognition.,2014,9,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs9.html#ChaiSVHT14,https://doi.org/10.1109/TIFS.2013.2290064 +Chun-Hsiang Huang,Unseen visible watermarking: a novel methodology for auxiliary information delivery via visual contents.,2009,4,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs4.html#HuangCHW09,https://doi.org/10.1109/TIFS.2009.2020778 +Asem A. Othman,On Mixing Fingerprints.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#OthmanR13,https://doi.org/10.1109/TIFS.2012.2223676 +Fabrizio Guerrini,High Dynamic Range Image Watermarking Robust Against Tone-Mapping Operators.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#GuerriniOAL11,https://doi.org/10.1109/TIFS.2011.2109383 +Farzad Farhadzadeh,Performance Analysis of Content-Based Identification Using Constrained List-Based Decoding.,2012,7,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs7.html#FarhadzadehVK12,https://doi.org/10.1109/TIFS.2012.2206026 +Rémi Cogranne,Modeling and Extending the Ensemble Classifier for Steganalysis of Digital Images Using Hypothesis Testing Theory.,2015,10,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs10.html#CogranneF15,https://doi.org/10.1109/TIFS.2015.2470220 +Wei Fan 0004,Median Filtered Image Quality Enhancement and Anti-Forensics via Variational Deconvolution.,2015,10,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs10.html#FanWCX15,https://doi.org/10.1109/TIFS.2015.2398362 +Nicole Lang Beebe,Sceadan: Using Concatenated N-Gram Vectors for Improved File and Data Type Classification.,2013,8,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs8.html#BeebeMLS13,https://doi.org/10.1109/TIFS.2013.2274728 +Azadeh Mansouri,A Low Complexity Video Watermarking in H.264 Compressed Domain.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#MansouriATK10,https://doi.org/10.1109/TIFS.2010.2076280 +Jianfeng Lu 0002,Game-Theoretic Design of Optimal Two-Sided Rating Protocols for Service Exchange Dilemma in Crowdsourcing.,2018,13,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs13.html#LuXZLL18,https://doi.org/10.1109/TIFS.2018.2834318 +Kaiping Xue,Two-Cloud Secure Database for Numeric-Related SQL Range Queries With Privacy Preserving.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#XueLHXYH17,https://doi.org/10.1109/TIFS.2017.2675864 +Stefano Tomasin,Secure HARQ With Multiple Encoding Over Block Fading Channels: Channel Set Characterization and Outage Analysis.,2014,9,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs9.html#TomasinL14,https://doi.org/10.1109/TIFS.2014.2346397 +Haojun Wu,Identification of Electronic Disguised Voices.,2014,9,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs9.html#WuWH14,https://doi.org/10.1109/TIFS.2014.2301912 +Qi Xiong,Secure Transmission Against Pilot Spoofing Attack: A Two-Way Training-Based Scheme.,2016,11,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs11.html#XiongLLGH16,https://doi.org/10.1109/TIFS.2016.2516825 +Chen Li 0019,"Comments on ""An Efficient Privacy-Preserving Outsourced Calculation Toolkit With Multiple Keys"".",2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#LiM18,https://doi.org/10.1109/TIFS.2018.2825143 +Anindya Roy,A Fast Parts-Based Approach to Speaker Verification Using Boosted Slice Classifiers.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#RoyMM12,https://doi.org/10.1109/TIFS.2011.2166387 +Jianwei Hu,A New Secure Transmission Scheme With Outdated Antenna Selection.,2015,10,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs10.html#HuCYY15,https://doi.org/10.1109/TIFS.2015.2464703 +Chin-Chen Chang 0001,Reversible Steganography for VQ-Compressed Images Using Side Matching and Relocation.,2006,1,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs1.html#ChangL06,https://doi.org/10.1109/TIFS.2006.885034 +Yujue Wang,Online/Offline Provable Data Possession.,2017,12,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs12.html#WangWQTS17,https://doi.org/10.1109/TIFS.2017.2656461 +Patrick P. F. Chan,Heap Graph Based Software Theft Detection.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#ChanHY13,https://doi.org/10.1109/TIFS.2012.2223685 +Wei Tong,A Jointly Differentially Private Scheduling Protocol for Ridesharing Services.,2017,12,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs12.html#TongHZ17,https://doi.org/10.1109/TIFS.2017.2707334 +Ming Fan,Android Malware Familial Classification and Representative Sample Selection via Frequent Subgraph Analysis.,2018,13,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs13.html#Fan0LCTZL18,https://doi.org/10.1109/TIFS.2018.2806891 +Hsin-Yi Tsai,A graph approach to quantitative analysis of control-flow obfuscating transformations.,2009,4,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs4.html#TsaiHW09,https://doi.org/10.1109/TIFS.2008.2011077 +Dima Bykhovsky,Electrical Network Frequency (ENF) Maximum-Likelihood Estimation Via a Multitone Harmonic Model.,2013,8,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs8.html#BykhovskyC13,https://doi.org/10.1109/TIFS.2013.2253462 +Scott Klum,The FaceSketchID System: Matching Facial Composites to Mugshots.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#KlumHKJ14,https://doi.org/10.1109/TIFS.2014.2360825 +Mohammed Alzaabi,CISRI: A Crime Investigation System Using the Relative Importance of Information Spreaders in Networks Depicting Criminals Communications.,2015,10,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs10.html#AlzaabiTM15,https://doi.org/10.1109/TIFS.2015.2451073 +Darko S. Matovski,The Effect of Time on Gait Recognition Performance.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#MatovskiNMC12,https://doi.org/10.1109/TIFS.2011.2176118 +Christos Liaskos,Network Topology Effects on the Detectability of Crossfire Attacks.,2018,13,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs13.html#LiaskosI18,https://doi.org/10.1109/TIFS.2018.2799425 +Dong-Hua Chen,Both Worst-Case and Chance-Constrained Robust Secure SWIPT in MISO Interference Channels.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#ChenHLZ18,https://doi.org/10.1109/TIFS.2017.2746063 +Xiaofeng Chen 0001,New Algorithms for Secure Outsourcing of Large-Scale Systems of Linear Equations.,2015,10,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs10.html#ChenHLMLW15,https://doi.org/10.1109/TIFS.2014.2363765 +Marcello Ferro,A sensing seat for human authentication.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#FerroPTCR09,https://doi.org/10.1109/TIFS.2009.2019156 +Victor Prokhorenko,Intent-Based Extensible Real-Time PHP Supervision Framework.,2016,11,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs11.html#ProkhorenkoCA16,https://doi.org/10.1109/TIFS.2016.2569063 +Samiran Bag,Bitcoin Block Withholding Attack: Analysis and Mitigation.,2017,12,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs12.html#BagRS17,https://doi.org/10.1109/TIFS.2016.2623588 +Tomás Filler,Gibbs Construction in Steganography.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#FillerF10,https://doi.org/10.1109/TIFS.2010.2077629 +Ivan Ivanov,Comparative Study of Trust Modeling for Automatic Landmark Tagging.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#IvanovVKE13,https://doi.org/10.1109/TIFS.2013.2242889 +Miroslav Goljan,"Erratum to ""Defending Against Fingerprint-Copy Attack in Sensor-Based Camera Identification"" [Mar 11 227-236].",2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#GoljanFC11a,https://doi.org/10.1109/TIFS.2011.2138530 +Yongchang Wang,Data Acquisition and Processing of 3-D Fingerprints.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#WangHL10,https://doi.org/10.1109/TIFS.2010.2062177 +Mauro Barni,Source Distinguishability Under Distortion-Limited Attack: An Optimal Transport Perspective.,2016,11,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs11.html#BarniT16,https://doi.org/10.1109/TIFS.2016.2570739 +Tomás Denemark,Steganography With Multiple JPEG Images of the Same Scene.,2017,12,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs12.html#DenemarkF17,https://doi.org/10.1109/TIFS.2017.2705625 +Santhanakrishnan Anand,On the location of an eavesdropper in multiterminal networks.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#AnandC10,https://doi.org/10.1109/TIFS.2009.2038571 +Saman Feghhi,A Web Traffic Analysis Attack Using Only Timing Information.,2016,11,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs11.html#FeghhiL16,https://doi.org/10.1109/TIFS.2016.2551203 +Dongrun Qin,Exploiting Multi-Antenna Non-Reciprocal Channels for Shared Secret Key Generation.,2016,11,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs11.html#QinD16,https://doi.org/10.1109/TIFS.2016.2594143 +Mahmoud M. Elmesalawy,New Forensic ENF Reference Database for Media Recording Authentication Based on Harmony Search Technique Using GIS and Wide Area Frequency Measurements.,2014,9,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs9.html#ElmesalawyE14,https://doi.org/10.1109/TIFS.2014.2304838 +Chong Hee Kim,Improved Differential Fault Analysis on AES Key Schedule.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#Kim12,https://doi.org/10.1109/TIFS.2011.2161289 +Philip O'Kane,SVM Training Phase Reduction Using Dataset Feature Filtering for Malware Detection.,2013,8,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs8.html#OKaneSMI13,https://doi.org/10.1109/TIFS.2013.2242890 +Zhihua Xia,A Privacy-Preserving and Copy-Deterrence Content-Based Image Retrieval Scheme in Cloud Computing.,2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#XiaWZQSR16,https://doi.org/10.1109/TIFS.2016.2590944 +Omaima Nomir,Fusion of Matching Algorithms for Human Identification Using Dental X-Ray Radiographs.,2008,3,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs3.html#NomirA08,https://doi.org/10.1109/TIFS.2008.919343 +Yifeng Zheng,Privacy-Preserving Image Denoising From External Cloud Databases.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#ZhengCWZ17,https://doi.org/10.1109/TIFS.2017.2656824 +Noura Alomar,Someone in Your Contact List: Cued Recall-Based Textual Passwords.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#AlomarAA17,https://doi.org/10.1109/TIFS.2017.2712126 +Mo Chen,Determining Image Origin and Integrity Using Sensor Noise.,2008,3,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs3.html#ChenFGL08,https://doi.org/10.1109/TIFS.2007.916285 +Marta Gomez-Barrero,General Framework to Evaluate Unlinkability in Biometric Template Protection Systems.,2018,13,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs13.html#Gomez-BarreroGR18,https://doi.org/10.1109/TIFS.2017.2788000 +Shan-Chun Liu,Line-Based Cubism-Like Image - A New Type of Art Image and its Application to Lossless Data Hiding.,2012,7,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs7.html#LiuT12,https://doi.org/10.1109/TIFS.2012.2204250 +Tung Le,Graphical Inference for Multiple Intrusion Detection.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#LeH08,https://doi.org/10.1109/TIFS.2008.928536 +Kai Zhou,PassBio: Privacy-Preserving User-Centric Biometric Authentication.,2018,13,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs13.html#ZhouR18,https://doi.org/10.1109/TIFS.2018.2838540 +Boris Skoric,Tally-Based Simple Decoders for Traitor Tracing and Group Testing.,2015,10,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs10.html#Skoric15,https://doi.org/10.1109/TIFS.2015.2403575 +Tiziano Bianchi,Composite signal representation for fast and storage-efficient processing of encrypted signals.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#BianchiPB10,https://doi.org/10.1109/TIFS.2009.2036230 +Luis Cardoso,Iris Biometrics: Synthesis of Degraded Ocular Images.,2013,8,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs8.html#CardosoBSPP13,https://doi.org/10.1109/TIFS.2013.2262942 +Prashanth Krishnamurthy,Process-Aware Covert Channels Using Physical Instrumentation in Cyber-Physical Systems.,2018,13,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs13.html#KrishnamurthyKK18,https://doi.org/10.1109/TIFS.2018.2833063 +Ishan Manjani,Detecting Silicone Mask-Based Presentation Attack via Deep Dictionary Learning.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#ManjaniTVSM17,https://doi.org/10.1109/TIFS.2017.2676720 +Fan Zhang 0010,A Framework for the Analysis and Evaluation of Algebraic Fault Attacks on Lightweight Block Ciphers.,2016,11,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs11.html#ZhangGZWYSG16,https://doi.org/10.1109/TIFS.2016.2516905 +Sung-Uk Jung,On Using Gait to Enhance Frontal Face Extraction.,2012,7,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs7.html#JungN12,https://doi.org/10.1109/TIFS.2012.2218598 +Matthieu R. Bloch,Network Security for Client-Server Architecture Using Wiretap Codes.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#BlochNM08,https://doi.org/10.1109/TIFS.2008.927688 +Farid Movahedi Naini,Where You Are Is Who You Are: User Identification by Matching Statistics.,2016,11,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs11.html#NainiUTV16,https://doi.org/10.1109/TIFS.2015.2498131 +Tao Jiang,Secure and Efficient Cloud Data Deduplication With Randomized Tag.,2017,12,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs12.html#Jiang0WMSL17,https://doi.org/10.1109/TIFS.2016.2622013 +Lei Zhang 0009,Round-Efficient and Sender-Unrestricted Dynamic Group Key Agreement Protocol for Secure Group Communications.,2015,10,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs10.html#ZhangWDQD15,https://doi.org/10.1109/TIFS.2015.2447933 +Alireza Jolfaei,A 3D Object Encryption Scheme Which Maintains Dimensional and Spatial Stability.,2015,10,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs10.html#JolfaeiWM15,https://doi.org/10.1109/TIFS.2014.2378146 +Taeho Jung,"Rebuttal to ""Comments on 'Control Cloud Data Access Privilege and Anonymity With Fully Anonymous Attribute-Based Encryption""'.",2016,11,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs11.html#JungLWW16,https://doi.org/10.1109/TIFS.2015.2509946 +Xiaoyan Sun,Using Bayesian Networks for Probabilistic Identification of Zero-Day Attack Paths.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#SunDLSY18,https://doi.org/10.1109/TIFS.2018.2821095 +Philip B. Stark,CAST: Canvass audits by sampling and testing.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#Stark09,https://doi.org/10.1109/TIFS.2009.2034210 +Fagen Li,Efficient Deniably Authenticated Encryption and Its Application to E-Mail.,2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#LiZT16,https://doi.org/10.1109/TIFS.2016.2585086 +Jun Xiong,Secrecy Performance Analysis for TAS-MRC System With Imperfect Feedback.,2015,10,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs10.html#XiongTMXW15,https://doi.org/10.1109/TIFS.2015.2421358 +Matthew C. Stamm,Forensic detection of image manipulation using statistical intrinsic fingerprints.,2010,5,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs5.html#StammL10,https://doi.org/10.1109/TIFS.2010.2053202 +Hussein Moosavi,A Game-Theoretic Framework for Robust Optimal Intrusion Detection in Wireless Sensor Networks.,2014,9,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs9.html#MoosaviB14,https://doi.org/10.1109/TIFS.2014.2332816 +Giacomo Cancelli,MPSteg-color: data hiding through redundant basis decomposition.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#CancelliB09,https://doi.org/10.1109/TIFS.2009.2024028 +Mostafa M. I. Taha,Key Updating for Leakage Resiliency With Application to AES Modes of Operation.,2015,10,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs10.html#TahaS15,https://doi.org/10.1109/TIFS.2014.2383359 +Jun Yan 0007,Q-Learning-Based Vulnerability Analysis of Smart Grid Against Sequential Topology Attacks.,2017,12,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs12.html#YanHZT17,https://doi.org/10.1109/TIFS.2016.2607701 +Parth Pradhan,Stealthy Attacks in Dynamical Systems: Tradeoffs Between Utility and Detectability With Application in Anonymous Systems.,2017,12,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs12.html#PradhanV17,https://doi.org/10.1109/TIFS.2016.2607695 +Eryun Liu,Minutiae Extraction From Level 1 Features of Fingerprint.,2016,11,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs11.html#Liu016,https://doi.org/10.1109/TIFS.2016.2541345 +Miguel A. Ferrer,Robustness of Offline Signature Verification Based on Gray Level Features.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#FerrerVMO12,https://doi.org/10.1109/TIFS.2012.2190281 +Naoufel Werghi,Boosting 3D LBP-Based Face Recognition by Fusing Shape and Texture Descriptors on the Mesh.,2016,11,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs11.html#WerghiTBB16,https://doi.org/10.1109/TIFS.2016.2515505 +Shari Lawrence Pfleeger,Insiders behaving badly: addressing bad actors and their actions.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#PfleegerPHB10,https://doi.org/10.1109/TIFS.2009.2039591 +Wei-Hong Chuang,Anti-Forensics and Countermeasures of Electrical Network Frequency Analysis.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#ChuangG013,https://doi.org/10.1109/TIFS.2013.2285515 +Ming Tang,An Efficient SCA Leakage Model Construction Method Under Predictable Evaluation.,2018,13,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs13.html#TangWXWZPD18,https://doi.org/10.1109/TIFS.2018.2837644 +Roneel V. Sharan,Subband Time-Frequency Image Texture Features for Robust Audio Surveillance.,2015,10,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs10.html#SharanM15,https://doi.org/10.1109/TIFS.2015.2469254 +Chi Cheng,Security Analysis and Improvements on Two Homomorphic Authentication Schemes for Network Coding.,2016,11,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs11.html#ChengLJT16,https://doi.org/10.1109/TIFS.2016.2515517 +Xingjie Wei,Dynamic Image-to-Class Warping for Occluded Face Recognition.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#WeiLLYL14,https://doi.org/10.1109/TIFS.2014.2359632 +Weiqi Luo,Detection of Quantization Artifacts and Its Applications to Transform Encoder Identification.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#LuoWH10,https://doi.org/10.1109/TIFS.2010.2074195 +Augusto Ferrante,On the Error Region for Channel Estimation-Based Physical Layer Authentication Over Rayleigh Fading.,2015,10,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs10.html#FerranteLMPT15,https://doi.org/10.1109/TIFS.2015.2392565 +Chuhong Fei,Analysis and design of secure watermark-based authentication systems.,2006,1,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs1.html#FeiKK06,https://doi.org/10.1109/TIFS.2005.863505 +Nesli Erdogmus,3D Assisted Face Recognition: Dealing With Expression Variations.,2014,9,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs9.html#ErdogmusD14,https://doi.org/10.1109/TIFS.2014.2309851 +Nese Alyüz,3-D Face Recognition Under Occlusion Using Masked Projection.,2013,8,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs8.html#AlyuzGA13,https://doi.org/10.1109/TIFS.2013.2256130 +Javier Franco-Contreras,Robust Lossless Watermarking of Relational Databases Based on Circular Histogram Modulation.,2014,9,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs9.html#Franco-ContrerasCCCR14,https://doi.org/10.1109/TIFS.2013.2294240 +Jean-Camille Birget,Graphical passwords based on robust discretization.,2006,1,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs1.html#BirgetHM06,https://doi.org/10.1109/TIFS.2006.879305 +Mike Burmester,"Comments on ""Unreconciled Collisions Uncover Cloning Attacks in Anonymous RFID Systems"".",2018,13,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs13.html#BurmesterMO18,https://doi.org/10.1109/TIFS.2018.2834876 +Fei Huo,Analysis and Validation of Active Eavesdropping Attacks in Passive FHSS RFID Systems.,2016,11,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs11.html#HuoMG16,https://doi.org/10.1109/TIFS.2016.2541309 +Chun-Yi Wei,Local Threshold Design for Target Localization Using Error Correcting Codes in Wireless Sensor Networks in the Presence of Byzantine Attacks.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#WeiCHV17,https://doi.org/10.1109/TIFS.2017.2670531 +Zhiyong Su,Robust 2D Engineering CAD Graphics Hashing for Joint Topology and Geometry Authentication via Covariance-Based Descriptors.,2018,13,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs13.html#SuYZLD18,https://doi.org/10.1109/TIFS.2017.2777341 +Jingu Heo,3-D Generic Elastic Models for Fast and Texture Preserving 2-D Novel Pose Synthesis.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#HeoS12,https://doi.org/10.1109/TIFS.2012.2184755 +Neil Zhenqiang Gong,On the Security of Trustee-Based Social Authentications.,2014,9,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs9.html#GongW14,https://doi.org/10.1109/TIFS.2014.2330311 +Matthieu Urvoy,Perceptual DFT Watermarking With Improved Detection and Robustness to Geometrical Distortions.,2014,9,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs9.html#UrvoyGA14,https://doi.org/10.1109/TIFS.2014.2322497 +Yan Gao,A Comprehensive Approach to Image Spam Detection: From Server to Client Solution.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#GaoCH10,https://doi.org/10.1109/TIFS.2010.2080267 +Xiaotian Wu,Generalized Random Grid and Its Applications in Visual Cryptography.,2013,8,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs8.html#WuS13,https://doi.org/10.1109/TIFS.2013.2274955 +Jiann-Der Lee,Reversible Data Hiding Based on Histogram Modification of SMVQ Indices.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#LeeCG10,https://doi.org/10.1109/TIFS.2010.2066971 +Ahmet Emir Dirik,Digital Single Lens Reflex Camera Identification From Traces of Sensor Dust.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#DirikSM08,https://doi.org/10.1109/TIFS.2008.926987 +Jiwen Lu,Cost-Sensitive Subspace Analysis and Extensions for Face Recognition.,2013,8,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs8.html#LuT13,https://doi.org/10.1109/TIFS.2013.2243146 +Liang Xiao 0003,Proximity-Based Security Techniques for Mobile Users in Wireless Networks.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#XiaoYLCH13,https://doi.org/10.1109/TIFS.2013.2286269 +Hafiz Malik,Acoustic Environment Identification and Its Applications to Audio Forensics.,2013,8,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs8.html#Malik13,https://doi.org/10.1109/TIFS.2013.2280888 +Qi Xiong,An Energy-Ratio-Based Approach for Detecting Pilot Spoofing Attack in Multiple-Antenna Systems.,2015,10,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs10.html#XiongLLG15,https://doi.org/10.1109/TIFS.2015.2392564 +Arun K. Kanuparthi,Architecture Support for Dynamic Integrity Checking.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#KanuparthiZK12,https://doi.org/10.1109/TIFS.2011.2166960 +Massoud Masoumi,Novel Approach to Protect Advanced Encryption Standard Algorithm Implementation Against Differential Electromagnetic and Power Analysis.,2015,10,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs10.html#MasoumiR15,https://doi.org/10.1109/TIFS.2014.2371237 +Zhenghao Zhang,A New Bound on the Performance of the Bandwidth Puzzle.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#Zhang12,https://doi.org/10.1109/TIFS.2012.2186294 +Syed Taha Ali,Securing First-Hop Data Provenance for Bodyworn Devices Using Wireless Link Fingerprints.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#AliSOTJ14,https://doi.org/10.1109/TIFS.2014.2357998 +Ravi Garg,An Efficient Gradient Descent Approach to Secure Localization in Resource Constrained Wireless Sensor Networks.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#GargVW12,https://doi.org/10.1109/TIFS.2012.2184094 +Hang Zhang,Interference Improves PHY Security for Cognitive Radio Networks.,2016,11,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs11.html#ZhangWSH16,https://doi.org/10.1109/TIFS.2015.2500184 +Antitza Dantcheva,Gender Estimation Based on Smile-Dynamics.,2017,12,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs12.html#DantchevaB17,https://doi.org/10.1109/TIFS.2016.2632070 +Sankardas Roy,Secure Data Aggregation in Wireless Sensor Networks.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#RoyCSJ12,https://doi.org/10.1109/TIFS.2012.2189568 +Adi Hajj-Ahmad,Factors Affecting ENF Capture in Audio.,2019,14,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs14.html#Hajj-AhmadWGZYW19,https://doi.org/10.1109/TIFS.2018.2837645 +Hai-Dong Yuan,Blind Forensics of Median Filtering in Digital Images.,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#Yuan11,https://doi.org/10.1109/TIFS.2011.2161761 +Fangjun Huang,New Framework for Reversible Data Hiding in Encrypted Domain.,2016,11,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs11.html#HuangHS16,https://doi.org/10.1109/TIFS.2016.2598528 +Jianjiang Feng,Robust and Efficient Algorithms for Separating Latent Overlapped Fingerprints.,2012,7,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs7.html#FengSZ12,https://doi.org/10.1109/TIFS.2012.2204254 +Maxim Chernyshev,On 802.11 Access Point Locatability and Named Entity Recognition in Service Set Identifiers.,2016,11,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs11.html#ChernyshevVH16,https://doi.org/10.1109/TIFS.2015.2507542 +Fuchun Guo,CP-ABE With Constant-Size Keys for Lightweight Devices.,2014,9,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs9.html#GuoMSWV14,https://doi.org/10.1109/TIFS.2014.2309858 +Jean-Philippe Boyer,Performance Analysis of Scalar DC-QIM for Zero-Bit Watermarking.,2007,2,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs2.html#BoyerDB07,https://doi.org/10.1109/TIFS.2007.897279 +Bo Zhu,Providing witness anonymity under peer-to-peer settings.,2010,5,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs5.html#ZhuSJW10,https://doi.org/10.1109/TIFS.2010.2041821 +Vojtech Holub,Low-Complexity Features for JPEG Steganalysis Using Undecimated DCT.,2015,10,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs10.html#HolubF15,https://doi.org/10.1109/TIFS.2014.2364918 +Hong Cao,Accurate detection of demosaicing regularity for digital image forensics.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#CaoK09,https://doi.org/10.1109/TIFS.2009.2033749 +Jian Chen,Resource Allocation for a Massive MIMO Relay Aided Secure Communication.,2016,11,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs11.html#ChenCGN16,https://doi.org/10.1109/TIFS.2016.2551685 +Weijiang Liu,Detection of Superpoints Using a Vector Bloom Filter.,2016,11,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs11.html#LiuQGL16,https://doi.org/10.1109/TIFS.2015.2503269 +Sabrina Gerbracht,Secrecy Outage in MISO Systems With Partial Channel Information.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#GerbrachtSJ12,https://doi.org/10.1109/TIFS.2011.2181946 +Jianwei Yang,Person-Specific Face Antispoofing With Subject Domain Adaptation.,2015,10,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs10.html#YangLYL15,https://doi.org/10.1109/TIFS.2015.2403306 +Ravichandran Subramanian,Evaluation of Algorithms for Orientation Invariant Inertial Gait Matching.,2019,14,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs14.html#SubramanianS19,https://doi.org/10.1109/TIFS.2018.2850032 +Jingyu Hua,We Can Track You if You Take the Metro: Tracking Metro Riders Using Accelerometers on Smartphones.,2017,12,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs12.html#HuaSZ17,https://doi.org/10.1109/TIFS.2016.2611489 +Chi-Yuan Chen,Transaction-Pattern-Based Anomaly Detection Algorithm for IP Multimedia Subsystem.,2011,6,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs6.html#ChenCC11,https://doi.org/10.1109/TIFS.2010.2095845 +Marius Senftleben,On the Privacy and Performance of Mobile Anonymous Microblogging.,2016,11,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs11.html#SenftlebenBBH0T16,https://doi.org/10.1109/TIFS.2016.2541633 +Zhengyu Zhu,Beamforming and Power Splitting Designs for AN-Aided Secure Multi-User MIMO SWIPT Systems.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#ZhuCWHWL17,https://doi.org/10.1109/TIFS.2017.2721908 +Daw-Tung Lin,Collaborative Pedestrian Tracking and Data Fusion With Multiple Cameras.,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#LinH11,https://doi.org/10.1109/TIFS.2011.2159972 +Shengzhi Zhang,PEDA: Comprehensive Damage Assessment for Production Environment Server Systems.,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#ZhangJLJ11,https://doi.org/10.1109/TIFS.2011.2162062 +Qian Wang 0002,PROST: Privacy-Preserving and Truthful Online Double Auction for Spectrum Allocation.,2019,14,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs14.html#WangHCWXL19,https://doi.org/10.1109/TIFS.2018.2850330 +Andrea Costanzo,Forensic Analysis of SIFT Keypoint Removal and Injection.,2014,9,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs9.html#CostanzoACB14,https://doi.org/10.1109/TIFS.2014.2337654 +Jessica J. Fridrich,Asymptotic behavior of the ZZW embedding construction.,2009,4,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs4.html#Fridrich09,https://doi.org/10.1109/TIFS.2008.2011082 +Bruno P. S. Rocha,Hybrid Static-Runtime Information Flow and Declassification Enforcement.,2013,8,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs8.html#RochaCEC13,https://doi.org/10.1109/TIFS.2013.2267798 +Mengyuan Zhang,Network Diversity: A Security Metric for Evaluating the Resilience of Networks Against Zero-Day Attacks.,2016,11,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs11.html#ZhangWJSA16,https://doi.org/10.1109/TIFS.2016.2516916 +Jan Kodovský,Effect of Image Downsampling on Steganographic Security.,2014,9,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs9.html#KodovskyF14,https://doi.org/10.1109/TIFS.2014.2309054 +Zhi-Ming Li,A Customized Sparse Representation Model With Mixed Norm for Undersampled Face Recognition.,2016,11,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs11.html#LiHS16,https://doi.org/10.1109/TIFS.2016.2567318 +Huu-Tuan Nguyen,Local Patterns of Gradients for Face Recognition.,2015,10,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs10.html#NguyenC15,https://doi.org/10.1109/TIFS.2015.2426144 +Anil K. Jain 0001,Fingerprint Recognition of Young Children.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#JainA0BB17,https://doi.org/10.1109/TIFS.2016.2639346 +Mohammad Reza Khalili Shoja,On the Secret Key Capacity of Sibling Hidden Markov Models.,2019,14,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs14.html#ShojaAWWD19,https://doi.org/10.1109/TIFS.2018.2855638 +Heng Zhou,Secret Key Generation in the Two-Way Relay Channel With Active Attackers.,2014,9,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs9.html#ZhouHL14,https://doi.org/10.1109/TIFS.2014.2301233 +Li Li 0029,Understanding Android App Piggybacking: A Systematic Study of Malicious Code Grafting.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#0029LBKTLC17,https://doi.org/10.1109/TIFS.2017.2656460 +Diego Gragnaniello,An Investigation of Local Descriptors for Biometric Spoofing Detection.,2015,10,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs10.html#GragnanielloPSV15,https://doi.org/10.1109/TIFS.2015.2404294 +Benedetta Tondi,Smart Detection of Line-Search Oracle Attacks.,2017,12,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs12.html#TondiAPB17,https://doi.org/10.1109/TIFS.2016.2624280 +Xiaojun Zhai,A Method for Detecting Abnormal Program Behavior on Embedded Devices.,2015,10,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs10.html#ZhaiAEHHGM15,https://doi.org/10.1109/TIFS.2015.2422674 +Ruohan Cao,Detecting Byzantine Attacks Without Clean Reference.,2016,11,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs11.html#CaoWLGY16,https://doi.org/10.1109/TIFS.2016.2596140 +Daniel Patricio Nicolalde Rodríguez,Audio authenticity: detecting ENF discontinuity with high precision phase analysis.,2010,5,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs5.html#RodriguezAB10,https://doi.org/10.1109/TIFS.2010.2051270 +Gee-Sern Hsu,RGB-D-Based Face Reconstruction and Recognition.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#HsuLPW14,https://doi.org/10.1109/TIFS.2014.2361028 +Yansong (Jennifer) Ren,Authenticating Lossy Surveillance Video.,2013,8,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs8.html#RenOWCWZ13,https://doi.org/10.1109/TIFS.2013.2279542 +Tony Thomas,Joint watermarking scheme for multiparty multilevel DRM architecture.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#ThomasESK09,https://doi.org/10.1109/TIFS.2009.2033229 +Wei Tong,A Unified Resource Allocation Framework for Defending Against Pollution Attacks in Wireless Network Coding Systems.,2016,11,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs11.html#TongZ16,https://doi.org/10.1109/TIFS.2016.2581313 +David Irakiza,A Non-Interactive Dual Channel Continuous Traffic Authentication Protocol.,2014,9,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs9.html#IrakizaKP14,https://doi.org/10.1109/TIFS.2014.2323700 +Nirattaya Khamsemanan,Human Identification From Freestyle Walks Using Posture-Based Gait Feature.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#KhamsemananNJ18,https://doi.org/10.1109/TIFS.2017.2738611 +Yupeng Liu,Destination Assisted Cooperative Jamming for Wireless Physical-Layer Security.,2013,8,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs8.html#LiuLP13,https://doi.org/10.1109/TIFS.2013.2248730 +Kapil M. Borle,Physical Layer Spectrum Usage Authentication in Cognitive Radio: Analysis and Implementation.,2015,10,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs10.html#BorleCD15,https://doi.org/10.1109/TIFS.2015.2452893 +Diego Valsesia,User Authentication via PRNU-Based Physical Unclonable Functions.,2017,12,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs12.html#ValsesiaCBM17,https://doi.org/10.1109/TIFS.2017.2697402 +Sevil Sen,Coevolution of Mobile Malware and Anti-Malware.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#SenAA18,https://doi.org/10.1109/TIFS.2018.2824250 +Ziad Ismail,Auditing a Cloud Provider's Compliance With Data Backup Requirements: A Game Theoretical Analysis.,2016,11,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs11.html#IsmailKLC16,https://doi.org/10.1109/TIFS.2016.2549002 +Gabriel Emile Hine,A Zero-Leakage Fuzzy Embedder From the Theoretical Formulation to Real Data.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#HineMC17,https://doi.org/10.1109/TIFS.2017.2686005 +Johannes Richter,Weak Secrecy in the Multiway Untrusted Relay Channel With Compute-and-Forward.,2015,10,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs10.html#RichterSEJ15,https://doi.org/10.1109/TIFS.2015.2405903 +Y. Zhu,A Local-Concentration-Based Feature Extraction Approach for Spam Filtering.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#ZhuT11,https://doi.org/10.1109/TIFS.2010.2103060 +Muhammad Umar Karim Khan,Rejecting Motion Outliers for Efficient Crowd Anomaly Detection.,2019,14,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs14.html#KhanPK19,https://doi.org/10.1109/TIFS.2018.2856189 +Jan Kodovský,Quantitative Structural Steganalysis of Jsteg.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#KodovskyF10,https://doi.org/10.1109/TIFS.2010.2056684 +Zhichun Li,Towards Situational Awareness of Large-Scale Botnet Probing Events.,2011,6,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs6.html#LiGCP11,https://doi.org/10.1109/TIFS.2010.2086445 +Erik Matlin,Non-Invasive Recognition of Poorly Resolved Integrated Circuit Elements.,2014,9,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs9.html#MatlinAS14,https://doi.org/10.1109/TIFS.2013.2297518 +Y. Ma,Reconstructing Synchronous Scrambler With Robust Detection Capability in the Presence of Noise.,2015,10,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs10.html#MaZW15,https://doi.org/10.1109/TIFS.2014.2378143 +Arcangelo Castiglione,Hierarchical and Shared Access Control.,2016,11,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs11.html#CastiglioneSMPC16,https://doi.org/10.1109/TIFS.2015.2512533 +Oleg V. Komogortsev,Attack of Mechanical Replicas: Liveness Detection With Eye Movements.,2015,10,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs10.html#KomogortsevKH15,https://doi.org/10.1109/TIFS.2015.2405345 +Ximeng Liu,An Efficient Privacy-Preserving Outsourced Calculation Toolkit With Multiple Keys.,2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#LiuDCW16,https://doi.org/10.1109/TIFS.2016.2573770 +Mohsen Zareian,A Novel Gain Invariant Quantization-Based Watermarking Approach.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#ZareianT14,https://doi.org/10.1109/TIFS.2014.2355912 +Worapan Kusakunniran,A New View-Invariant Feature for Cross-View Gait Recognition.,2013,8,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs8.html#KusakunniranWZML13,https://doi.org/10.1109/TIFS.2013.2252342 +Pravin Kakar,Verifying Temporal Data in Geotagged Images Via Sun Azimuth Estimation.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#KakarS12a,https://doi.org/10.1109/TIFS.2012.2188796 +Kyle Guan,Secrecy Capacities in Space-Division Multiplexed Fiber Optic Communication Systems.,2015,10,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs10.html#GuanTWS15,https://doi.org/10.1109/TIFS.2015.2405897 +Xu Zhang 0004,Pilot Distortion Attack and Zero-Startup-Cost Detection in Massive MIMO Network: From Analysis to Experiments.,2018,13,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs13.html#ZhangK18,https://doi.org/10.1109/TIFS.2018.2837641 +Sheng Huang,Cross-Speed Gait Recognition Using Speed-Invariant Gait Templates and Globality-Locality Preserving Projections.,2015,10,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs10.html#HuangELY15,https://doi.org/10.1109/TIFS.2015.2445315 +Zi-xing Lin,A Low-Distortion Reversible Watermarking for 2D Engineering Graphics Based on Region Nesting.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#LinPL18,https://doi.org/10.1109/TIFS.2018.2819122 +Zhengmin Kong,Iterative Distributed Minimum Total MSE Approach for Secure Communications in MIMO Interference Channels.,2016,11,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs11.html#KongYWPZH16,https://doi.org/10.1109/TIFS.2015.2493888 +Allan da Silva Pinto,Using Visual Rhythms for Detecting Video-Based Facial Spoof Attacks.,2015,10,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs10.html#PintoSPR15,https://doi.org/10.1109/TIFS.2015.2395139 +Mauro Barni,Privacy-Preserving ECG Classification With Branching Programs and Neural Networks.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#BarniFLS011,https://doi.org/10.1109/TIFS.2011.2108650 +Yong Li,Learning Robust Face Representation With Classwise Block-Diagonal Structure.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#LiLLM14,https://doi.org/10.1109/TIFS.2014.2361936 +Bing Zeng,A Practical Framework for $t$-Out-of- $n$ Oblivious Transfer With Security Against Covert Adversaries.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#ZengTXJT12,https://doi.org/10.1109/TIFS.2012.2184096 +Teddy Furon,A Constructive and Unifying Framework for Zero-Bit Watermarking.,2007,2,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs2.html#Furon07,https://doi.org/10.1109/TIFS.2007.897272 +Tiziano Bianchi,On the implementation of the discrete Fourier transform in the encrypted domain.,2009,4,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs4.html#BianchiPB09,https://doi.org/10.1109/TIFS.2008.2011087 +Hao Deng,Secrecy Transmission With a Helper: To Relay or to Jam.,2015,10,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs10.html#DengWGW15,https://doi.org/10.1109/TIFS.2014.2374356 +Jiahui Hou,CASTLE: Enhancing the Utility of Inequality Query Auditing Without Denial Threats.,2018,13,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs13.html#HouLJWZ18,https://doi.org/10.1109/TIFS.2018.2797802 +Haoran Guo,Exploiting Path Diversity for Thwarting Pollution Attacks in Named Data Networking.,2016,11,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs11.html#GuoWCT16,https://doi.org/10.1109/TIFS.2016.2574307 +Bahman Moraffah,Privacy-Guaranteed Two-Agent Interactions Using Information-Theoretic Mechanisms.,2017,12,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs12.html#MoraffahS17,https://doi.org/10.1109/TIFS.2017.2701278 +Wenting Shen,Enabling Identity-Based Integrity Auditing and Data Sharing With Sensitive Information Hiding for Secure Cloud Storage.,2019,14,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs14.html#ShenQYHH19,https://doi.org/10.1109/TIFS.2018.2850312 +Mauro Barni,The Source Identification Game: An Information-Theoretic Perspective.,2013,8,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs8.html#BarniT13,https://doi.org/10.1109/TIFS.2012.2237397 +Seung-Jin Ryu,Rotation Invariant Localization of Duplicated Image Regions Based on Zernike Moments.,2013,8,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs8.html#RyuKLL13,https://doi.org/10.1109/TIFS.2013.2272377 +Ivana Chingovska,On the Use of Client Identity Information for Face Antispoofing.,2015,10,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs10.html#ChingovskaA15,https://doi.org/10.1109/TIFS.2015.2400392 +Xu Zhao,Multiple Subcategories Parts-Based Representation for One Sample Face Identification.,2013,8,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs8.html#ZhaoLWFL13,https://doi.org/10.1109/TIFS.2013.2263498 +Cai Li,A Security-Enhanced Alignment-Free Fuzzy Vault-Based Fingerprint Cryptosystem Using Pair-Polar Minutiae Structures.,2016,11,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs11.html#LiH16,https://doi.org/10.1109/TIFS.2015.2505630 +Ajay Kumar 0001,Personal authentication using finger knuckle surface.,2009,4,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs4.html#KumarR09,https://doi.org/10.1109/TIFS.2008.2011089 +Xinpeng Zhang,Lossy Compression and Iterative Reconstruction for Encrypted Image.,2011,6,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs6.html#Zhang11,https://doi.org/10.1109/TIFS.2010.2099114 +Taha A. Khalaf,Tradeoff Between Reliability and Security in Multiple Access Relay Networks Under Falsified Data Injection Attack.,2014,9,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs9.html#KhalafKA14,https://doi.org/10.1109/TIFS.2014.2299401 +C.-C. Jay Kuo,Editorial.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#Kuo12,https://doi.org/10.1109/TIFS.2012.2189290 +Adam Czajka,Pupil Dynamics for Iris Liveness Detection.,2015,10,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs10.html#Czajka15,https://doi.org/10.1109/TIFS.2015.2398815 +Richard E. Harang,Burstiness of Intrusion Detection Process: Empirical Evidence and a Modeling Approach.,2017,12,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs12.html#HarangK17,https://doi.org/10.1109/TIFS.2017.2705629 +Arunan Ramalingam,Gaussian Mixture Modeling of Short-Time Fourier Transform Features for Audio Fingerprinting.,2006,1,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs1.html#RamalingamK06,https://doi.org/10.1109/TIFS.2006.885036 +Nawaf Yousef Almudhahka,Semantic Face Signatures: Recognizing and Retrieving Faces by Verbal Descriptions.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#AlmudhahkaNH18,https://doi.org/10.1109/TIFS.2017.2765519 +Andrey Garnaev,Incorporating Attack-Type Uncertainty Into Network Protection.,2014,9,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs9.html#GarnaevBP14,https://doi.org/10.1109/TIFS.2014.2329241 +Lingyun Wen,Automated Depression Diagnosis Based on Facial Dynamic Analysis and Sparse Coding.,2015,10,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs10.html#WenLGZ15,https://doi.org/10.1109/TIFS.2015.2414392 +Tanya Ignatenko,Biometric systems: privacy and secrecy aspects.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#IgnatenkoW09,https://doi.org/10.1109/TIFS.2009.2033228 +Hanif Rahbari,Full Frame Encryption and Modulation Obfuscation Using Channel-Independent Preamble Identifier.,2016,11,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs11.html#RahbariK16,https://doi.org/10.1109/TIFS.2016.2582560 +Vivek Venugopal,Online Writer Identification With Sparse Coding-Based Descriptors.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#VenugopalS18,https://doi.org/10.1109/TIFS.2018.2823276 +Andrew D. Ker,Steganalysis of Embedding in Two Least-Significant Bits.,2007,2,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs2.html#Ker07,https://doi.org/10.1109/TIFS.2006.890519 +Hong Cao,On Establishing Edge Adaptive Grid for Bilevel Image Data Hiding.,2013,8,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs8.html#CaoK13,https://doi.org/10.1109/TIFS.2013.2274041 +He Fang,Coordinated Multiple-Relays Based Physical-Layer Security Improvement: A Single-Leader Multiple-Followers Stackelberg Game Scheme.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#FangXW18,https://doi.org/10.1109/TIFS.2017.2746001 +Jinho Choi 0001,Physical Layer Security for Channel-Aware Random Access With Opportunistic Jamming.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#Choi17a,https://doi.org/10.1109/TIFS.2017.2714842 +Ran Dubin,I Know What You Saw Last Minute - Encrypted HTTP Adaptive Video Streaming Title Classification.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#DubinDPH17,https://doi.org/10.1109/TIFS.2017.2730819 +Marco Baldi,Secrecy Transmission on Parallel Channels: Theoretical Limits and Performance of Practical Codes.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#BaldiCLTR14,https://doi.org/10.1109/TIFS.2014.2348915 +Chuhong Fei,A hypothesis testing approach to semifragile watermark-based authentication.,2009,4,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs4.html#FeiKK09,https://doi.org/10.1109/TIFS.2009.2015039 +Justin L. Rice,Using Mussel-Inspired Self-Organization and Account Proxies to Obfuscate Workload Ownership and Placement in Clouds.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#RicePR13,https://doi.org/10.1109/TIFS.2013.2259158 +Wen-Nung Lie,Dual protection of JPEG images based on informed embedding and two-stage watermark extraction techniques.,2006,1,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs1.html#LieLC06,https://doi.org/10.1109/TIFS.2006.879297 +Yoichi Tomioka,Robust Digital Camera Identification Based on Pairwise Magnitude Relations of Clustered Sensor Pattern Noise.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#TomiokaIK13,https://doi.org/10.1109/TIFS.2013.2284761 +Andrew Chi-Chih Yao,Privacy-Preserving Authenticated Key-Exchange Over Internet.,2014,9,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs9.html#YaoZ14,https://doi.org/10.1109/TIFS.2013.2293457 +Roy Wallace,Cross-Pollination of Normalization Techniques From Speaker to Face Authentication Using Gaussian Mixture Models.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#WallaceMMM12,https://doi.org/10.1109/TIFS.2012.2184095 +Vahid Heydari,Scalable Anti-Censorship Framework Using Moving Target Defense for Web Servers.,2017,12,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs12.html#HeydariKY17,https://doi.org/10.1109/TIFS.2016.2647218 +Seunghwan Park,New Constructions of Revocable Identity-Based Encryption From Multilinear Maps.,2015,10,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs10.html#ParkLL15,https://doi.org/10.1109/TIFS.2015.2419180 +Lacey Best-Rowden,Learning Face Image Quality From Human Assessments.,2018,13,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs13.html#Best-RowdenJ18,https://doi.org/10.1109/TIFS.2018.2799585 +Jinguang Han,AAC-OT: Accountable Oblivious Transfer With Access Control.,2015,10,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs10.html#HanSMAC15,https://doi.org/10.1109/TIFS.2015.2464781 +Guopu Zhu,Fragility analysis of adaptive quantization-based image hashing.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#ZhuHKY10,https://doi.org/10.1109/TIFS.2009.2038742 +Jon Sánchez,Toward a Universal Synthetic Speech Spoofing Detection Using Phase Information.,2015,10,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs10.html#SanchezSHNER15,https://doi.org/10.1109/TIFS.2015.2398812 +Marc Sánchez Artigas,Enhancing Tree-Based ORAM Using Batched Request Reordering.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#Artigas18,https://doi.org/10.1109/TIFS.2017.2762824 +Shaoquan Jiang,On the Optimality of Keyless Authentication in a Noisy Model.,2015,10,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs10.html#Jiang15,https://doi.org/10.1109/TIFS.2015.2405891 +Johan de Bock,JPGcarve: An Advanced Tool for Automated Recovery of Fragmented JPEG Files.,2016,11,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs11.html#BockS16,https://doi.org/10.1109/TIFS.2015.2475238 +Paul L. Yu,Physical-Layer Authentication.,2008,3,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs3.html#YuBS08,https://doi.org/10.1109/TIFS.2007.916273 +Mauro Conti,Analyzing Android Encrypted Network Traffic to Identify User Actions.,2016,11,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs11.html#ContiMSV16,https://doi.org/10.1109/TIFS.2015.2478741 +Wenbo He,SMOCK: a scalable method of cryptographic key management for mission-critical wireless ad-hoc networks.,2009,4,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs4.html#HeHSNL09,https://doi.org/10.1109/TIFS.2008.2009601 +Alessandro Cilardo,Exploiting Vulnerabilities in Cryptographic Hash Functions Based on Reconfigurable Hardware.,2013,8,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs8.html#CilardoM13,https://doi.org/10.1109/TIFS.2013.2256898 +Yen-Wei Huang,On the Fingerprinting Capacity Games for Arbitrary Alphabets and Their Asymptotics.,2014,9,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs9.html#HuangM14,https://doi.org/10.1109/TIFS.2014.2338739 +Shouling Ji,Seed-Based De-Anonymizability Quantification of Social Networks.,2016,11,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs11.html#JiLGMB16,https://doi.org/10.1109/TIFS.2016.2529591 +Shih-Chun Lin,Fingerprinting with minimum distance decoding.,2009,4,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs4.html#LinSG09,https://doi.org/10.1109/TIFS.2008.2012201 +Paulo F. Oliveira,Coding for Trusted Storage in Untrusted Networks.,2012,7,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs7.html#OliveiraLVBM12,https://doi.org/10.1109/TIFS.2012.2217331 +Bo Fu,Multibiometric cryptosystem: model structure and performance analysis.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#FuYLH09,https://doi.org/10.1109/TIFS.2009.2033227 +Minoru Kuribayashi,Simplified MAP Detector for Binary Fingerprinting Code Embedded by Spread Spectrum Watermarking Scheme.,2014,9,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs9.html#Kuribayashi14,https://doi.org/10.1109/TIFS.2014.2305799 +Valentina Conotter,Forensic Detection of Processing Operator Chains: Recovering the History of Filtered JPEG Images.,2015,10,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs10.html#ConotterAP15,https://doi.org/10.1109/TIFS.2015.2424195 +Xun Yi,Private Cell Retrieval From Data Warehouses.,2016,11,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs11.html#YiPBX16,https://doi.org/10.1109/TIFS.2016.2527620 +Kaveh Shamsi,On the Approximation Resiliency of Logic Locking and IC Camouflaging Schemes.,2019,14,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs14.html#ShamsiMLPJ19,https://doi.org/10.1109/TIFS.2018.2850319 +Chunfang Yang,Steganalysis Frameworks of Embedding in Multiple Least-Significant Bits.,2008,3,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs3.html#YangLLL08,https://doi.org/10.1109/TIFS.2008.2007240 +Aglika Gyaourova,Index Codes for Multibiometric Pattern Retrieval.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#GyaourovaR12,https://doi.org/10.1109/TIFS.2011.2172429 +Pardeep Kumar,Anonymous Secure Framework in Connected Smart Home Environments.,2017,12,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs12.html#KumarBGIH17,https://doi.org/10.1109/TIFS.2016.2647225 +Di Huang 0001,3-D Face Recognition Using eLBP-Based Facial Description and Local Feature Hybrid Matching.,2012,7,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs7.html#HuangAWC12,https://doi.org/10.1109/TIFS.2012.2206807 +Andrew D. Ker,Derivation of Error Distribution in Least Squares Steganalysis.,2007,2,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs2.html#Ker07a,https://doi.org/10.1109/TIFS.2007.897265 +Yang Cong,Video Anomaly Search in Crowded Scenes via Spatio-Temporal Motion Context.,2013,8,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs8.html#CongYT13,https://doi.org/10.1109/TIFS.2013.2272243 +Alberto Compagno,Modeling Enlargement Attacks Against UWB Distance Bounding Protocols.,2016,11,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs11.html#CompagnoCDDPT16,https://doi.org/10.1109/TIFS.2016.2541613 +Pravin Kakar,Exposing Postprocessed Copy-Paste Forgeries Through Transform-Invariant Features.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#KakarS12,https://doi.org/10.1109/TIFS.2012.2188390 +Zoe L. Jiang,Maintaining Hard Disk Integrity With Digital Legal Professional Privilege (LPP) Data.,2013,8,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs8.html#JiangFLLIKCHYP13,https://doi.org/10.1109/TIFS.2013.2256784 +Yan Shi,Improved Radiometric Identification of Wireless Devices Using MIMO Transmission.,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#ShiJ11,https://doi.org/10.1109/TIFS.2011.2162949 +Jung Hee Cheon,Optimized Search-and-Compute Circuits and Their Application to Query Evaluation on Encrypted Data.,2016,11,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs11.html#CheonKK16,https://doi.org/10.1109/TIFS.2015.2483486 +Honghai Yu,Regularized Adaboost Learning for Identification of Time-Varying Content.,2014,9,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs9.html#YuM14,https://doi.org/10.1109/TIFS.2014.2347808 +Soo-Chang Pei,A Novel Image Recovery Algorithm for Visible Watermarked Images.,2006,1,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs1.html#PeiZ06,https://doi.org/10.1109/TIFS.2006.885031 +Chuntao Wang,Efficient Compression of Encrypted Binary Images Using the Markov Random Field.,2018,13,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs13.html#WangNZH18,https://doi.org/10.1109/TIFS.2017.2784379 +Bin Li 0011,Revealing the Trace of High-Quality JPEG Compression Through Quantization Noise Analysis.,2015,10,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs10.html#LiNLTH15,https://doi.org/10.1109/TIFS.2015.2389148 +Qi Zhang 0015,Deep Feature Fusion for Iris and Periocular Biometrics on Mobile Devices.,2018,13,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs13.html#ZhangLST18,https://doi.org/10.1109/TIFS.2018.2833033 +Qi Li 0002,LIVE: Lightweight Integrity Verification and Content Access Control for Named Data Networking.,2015,10,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs10.html#LiZZSF15,https://doi.org/10.1109/TIFS.2014.2365742 +Tomás Pevný,From Blind to Quantitative Steganalysis.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#PevnyFK12,https://doi.org/10.1109/TIFS.2011.2175918 +Joseph Roth,Investigating the Discriminative Power of Keystroke Sound.,2015,10,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs10.html#RothLRM15,https://doi.org/10.1109/TIFS.2014.2374424 +Farshad Naghibi,The CEO Problem With Secrecy Constraints.,2015,10,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs10.html#NaghibiSS15,https://doi.org/10.1109/TIFS.2015.2404134 +Marco Fontani,A Framework for Decision Fusion in Image Forensics Based on Dempster-Shafer Theory of Evidence.,2013,8,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs8.html#FontaniBRPB13,https://doi.org/10.1109/TIFS.2013.2248727 +Nir Nissim,ALDOCX: Detection of Unknown Malicious Microsoft Office Documents Using Designated Active Learning Methods Based on New Structural Feature Extraction Methodology.,2017,12,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs12.html#NissimCE17,https://doi.org/10.1109/TIFS.2016.2631905 +Stefanos Zafeiriou,Learning Discriminant Person-Specific Facial Models Using Expandable Graphs.,2007,2,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs2.html#ZafeiriouTP07,https://doi.org/10.1109/TIFS.2006.890308 +Xiaoyong Li 0003,T-Broker: A Trust-Aware Service Brokering Scheme for Multiple Cloud Collaborative Services.,2015,10,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs10.html#LiMZY15,https://doi.org/10.1109/TIFS.2015.2413386 +Weiqi Luo,Edge adaptive image steganography based on LSB matching revisited.,2010,5,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs5.html#LuoHH10,https://doi.org/10.1109/TIFS.2010.2041812 +Manoranjan Mohanty,$2DCrypt$ : Image Scaling and Cropping in Encrypted Domains.,2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#MohantyAR16,https://doi.org/10.1109/TIFS.2016.2585085 +Seyyedeh Atefeh Musavi,Back to Static Analysis for Kernel-Level Rootkit Detection.,2014,9,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs9.html#MusaviK14,https://doi.org/10.1109/TIFS.2014.2337256 +Wien Hong,A Novel Data Embedding Method Using Adaptive Pixel Pair Matching.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#HongC12,https://doi.org/10.1109/TIFS.2011.2155062 +Seungwon Shin,A Large-Scale Empirical Study of Conficker.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#ShinGRL12,https://doi.org/10.1109/TIFS.2011.2173486 +Jian Shen 0001,An Efficient Public Auditing Protocol With Novel Dynamic Structure for Cloud Data.,2017,12,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs12.html#ShenSCHS17,https://doi.org/10.1109/TIFS.2017.2705620 +Bingwen Feng,Secure Binary Image Steganography Based on Minimizing the Distortion on the Texture.,2015,10,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs10.html#FengL015,https://doi.org/10.1109/TIFS.2014.2368364 +Cong Zuo,Fine-Grained Two-Factor Protection Mechanism for Data Sharing in Cloud Storage.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#ZuoSLWL18,https://doi.org/10.1109/TIFS.2017.2746000 +Zhan-Li Sun,Depth Estimation of Face Images Based on the Constrained ICA Model.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#SunL11,https://doi.org/10.1109/TIFS.2011.2118207 +Oya çeliktutan,Blind Identification of Source Cell-Phone Model.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#CeliktutanSA08,https://doi.org/10.1109/TIFS.2008.926993 +Alessandra A. Paulino,Latent Fingerprint Matching Using Descriptor-Based Hough Transform.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#PaulinoFJ13,https://doi.org/10.1109/TIFS.2012.2223678 +Liang Xiao 0003,Jamming-Resistant Collaborative Broadcast Using Uncoordinated Frequency Hopping.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#XiaoDN12,https://doi.org/10.1109/TIFS.2011.2165948 +Tamer Shanableh,Data Hiding in MPEG Video Files Using Multivariate Regression and Flexible Macroblock Ordering.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#Shanableh12,https://doi.org/10.1109/TIFS.2011.2177087 +Amir Valizadeh,Correlation-and-Bit-Aware Spread Spectrum Embedding for Data Hiding.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#ValizadehW11,https://doi.org/10.1109/TIFS.2010.2103061 +Darren Hurley-Smith,Certifiably Biased: An In-Depth Analysis of a Common Criteria EAL4+ Certified TRNG.,2018,13,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs13.html#Hurley-SmithH18,https://doi.org/10.1109/TIFS.2017.2777342 +Vishal M. Patel,Dictionary-Based Face Recognition Under Variable Lighting and Pose.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#PatelWBPC12,https://doi.org/10.1109/TIFS.2012.2189205 +Jean-François Jourdas,High-rate random-like spherical fingerprinting codes with linear decoding complexity.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#JourdasM09,https://doi.org/10.1109/TIFS.2009.2034188 +Da Luo,Band Energy Difference for Source Attribution in Audio Forensics.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#LuoKH18,https://doi.org/10.1109/TIFS.2018.2812185 +Wei Fan 0004,"Corrections to ""JPEG Anti-Forensics With Improved Tradeoff Between Forensic Undetectability and Image Quality"".",2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#FanWCX16,https://doi.org/10.1109/TIFS.2016.2585398 +Yingpeng Sang,Achieving Probabilistic Anonymity in a Linear and Hybrid Randomization Model.,2016,11,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs11.html#SangSTZ16,https://doi.org/10.1109/TIFS.2016.2562605 +Iuliia Tkachenko,Two-Level QR Code for Private Message Sharing and Document Authentication.,2016,11,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs11.html#TkachenkoPDSGG16,https://doi.org/10.1109/TIFS.2015.2506546 +Chester Rebeiro,Boosting Profiled Cache Timing Attacks With A Priori Analysis.,2012,7,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs7.html#RebeiroM12,https://doi.org/10.1109/TIFS.2012.2217333 +Fangjun Huang,New Channel Selection Rule for JPEG Steganography.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#HuangHS12,https://doi.org/10.1109/TIFS.2012.2198213 +C.-M. Yu,Practical and Secure Multidimensional Query Framework in Tiered Sensor Networks.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#YuTLK11,https://doi.org/10.1109/TIFS.2011.2109384 +Andrew Chi-Chih Yao,Online/Offline Signatures for Low-Power Devices.,2013,8,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs8.html#YaoZ13,https://doi.org/10.1109/TIFS.2012.2232653 +Raffaele Cappelli,On the Operational Quality of Fingerprint Scanners.,2008,3,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs3.html#CappelliFM08,https://doi.org/10.1109/TIFS.2008.919336 +Jia Yu,Enabling Cloud Storage Auditing With Key-Exposure Resistance.,2015,10,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs10.html#YuRWV15,https://doi.org/10.1109/TIFS.2015.2400425 +Ngoc-Son Vu,Exploring Patterns of Gradient Orientations and Magnitudes for Face Recognition.,2013,8,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs8.html#Vu13,https://doi.org/10.1109/TIFS.2012.2224866 +Sara Motahari,Online anonymity protection in computer-mediated communication.,2010,5,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs5.html#MotahariZJ10,https://doi.org/10.1109/TIFS.2010.2051261 +Yuanfang Guo,Fake Colorized Image Detection.,2018,13,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs13.html#GuoCZW18,https://doi.org/10.1109/TIFS.2018.2806926 +Hong Zhao,Audio Recording Location Identification Using Acoustic Environment Signature.,2013,8,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs8.html#ZhaoM13,https://doi.org/10.1109/TIFS.2013.2278843 +Thanh-Ha Le,Noise Reduction in Side Channel Attack Using Fourth-Order Cumulant.,2007,2,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs2.html#LeCSL07,https://doi.org/10.1109/TIFS.2007.910252 +Ligang Zheng,Near-Duplicate Image Detection in a Visually Salient Riemannian Space.,2012,7,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs7.html#ZhengLQH12,https://doi.org/10.1109/TIFS.2012.2206386 +Tolga Inan,3-D Face Recognition With Local Shape Descriptors.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#InanH12,https://doi.org/10.1109/TIFS.2012.2186293 +Javier Galbally,A New Multimodal Approach for Password Strength Estimation - Part II: Experimental Evaluation.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#GalballyCS17a,https://doi.org/10.1109/TIFS.2017.2730359 +Libing Wu,Secure Key Agreement and Key Protection for Mobile Device User Authentication.,2019,14,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs14.html#WuWCH19,https://doi.org/10.1109/TIFS.2018.2850299 +Slim Rekhis,A System for Formal Digital Forensic Investigation Aware of Anti-Forensic Attacks.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#RekhisB12,https://doi.org/10.1109/TIFS.2011.2176117 +Tomás Pevný,Detection of Double-Compression in JPEG Images for Applications in Steganography.,2008,3,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs3.html#PevnyF08,https://doi.org/10.1109/TIFS.2008.922456 +Weili Han,Regional Patterns and Vulnerability Analysis of Chinese Web Passwords.,2016,11,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs11.html#HanLYX16,https://doi.org/10.1109/TIFS.2015.2490620 +Quratulain Alam,Formal Verification of the xDAuth Protocol.,2016,11,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs11.html#AlamTMAAAKVB16,https://doi.org/10.1109/TIFS.2016.2561909 +Ruei-Hau Hsu,GRAAD: Group Anonymous and Accountable D2D Communication in Mobile Networks.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#HsuLQC18,https://doi.org/10.1109/TIFS.2017.2756567 +Qinyi Xu,Radio Biometrics: Human Recognition Through a Wall.,2017,12,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs12.html#XuCWL17,https://doi.org/10.1109/TIFS.2016.2647224 +Shuangqing Wei,Trade-Off Between Security and Performance in Block Ciphered Systems With Erroneous Ciphertexts.,2013,8,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs8.html#WeiWYY13,https://doi.org/10.1109/TIFS.2013.2248724 +Chunsheng Zhu,An Authenticated Trust and Reputation Calculation and Management System for Cloud and Sensor Networks Integration.,2015,10,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs10.html#ZhuNLY15,https://doi.org/10.1109/TIFS.2014.2364679 +Noboru Babaguchi,Guest Editorial: Special issue on intelligent video surveillance for public security and personal privacy.,2013,8,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs8.html#BabaguchiCCDW13,https://doi.org/10.1109/TIFS.2013.2279945 +Matteo Ferrara,Face Demorphing.,2018,13,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs13.html#FerraraFM18,https://doi.org/10.1109/TIFS.2017.2777340 +Chao Shen 0001,Performance Analysis of Touch-Interaction Behavior for Active Smartphone Authentication.,2016,11,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs11.html#ShenZGM16,https://doi.org/10.1109/TIFS.2015.2503258 +Emiliano De Cristofaro,Extended Capabilities for a Privacy-Enhanced Participatory Sensing Infrastructure (PEPSI).,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#CristofaroS13,https://doi.org/10.1109/TIFS.2013.2287092 +Maneesh Upmanyu,Blind authentication: a secure crypto-biometric verification protocol.,2010,5,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs5.html#UpmanyuNSJ10,https://doi.org/10.1109/TIFS.2010.2043188 +Eric Love,Proof-Carrying Hardware Intellectual Property: A Pathway to Trusted Module Acquisition.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#LoveJM12,https://doi.org/10.1109/TIFS.2011.2160627 +Ravi Garg,Seeing ENF: Power-Signature-Based Timestamp for Digital Multimedia via Optical Sensing and Signal Processing.,2013,8,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs8.html#GargVH013,https://doi.org/10.1109/TIFS.2013.2272217 +Raj S. Katti,On the Security of Randomized Arithmetic Codes Against Ciphertext-Only Attacks.,2011,6,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs6.html#KattiSV11,https://doi.org/10.1109/TIFS.2010.2096809 +Huiming Wang,Joint Source-Relay Precoding and Power Allocation for Secure Amplify-and-Forward MIMO Relay Networks.,2014,9,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs9.html#WangLX14,https://doi.org/10.1109/TIFS.2014.2327480 +Jessica J. Fridrich,Rich Models for Steganalysis of Digital Images.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#FridrichK12,https://doi.org/10.1109/TIFS.2012.2190402 +Aijiao Cui,Static and Dynamic Obfuscations of Scan Data Against Scan-Based Side-Channel Attacks.,2017,12,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs12.html#CuiLC17,https://doi.org/10.1109/TIFS.2016.2613847 +Sharad Joshi,Single Classifier-Based Passive System for Source Printer Classification Using Local Texture Features.,2018,13,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs13.html#JoshiK18,https://doi.org/10.1109/TIFS.2017.2779441 +Lingxiang Li,Linear Precoder Design for an MIMO Gaussian Wiretap Channel With Full-Duplex Source and Destination Nodes.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#LiCPF18,https://doi.org/10.1109/TIFS.2017.2756350 +Wei Yu 0003,Securing Cooperative Ad-Hoc Networks Under Noise and Imperfect Monitoring: Strategies and Game Theoretic Analysis.,2007,2,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs2.html#YuJL07,https://doi.org/10.1109/TIFS.2007.897270 +Hamid Alipour,Wireless Anomaly Detection Based on IEEE 802.11 Behavior Analysis.,2015,10,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs10.html#AlipourASH15,https://doi.org/10.1109/TIFS.2015.2433898 +Jun Wang,Quality-Specific Hand Vein Recognition System.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#WangW17,https://doi.org/10.1109/TIFS.2017.2713340 +Mohammad Haghighat,Discriminant Correlation Analysis: Real-Time Feature Level Fusion for Multimodal Biometric Recognition.,2016,11,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs11.html#HaghighatAA16,https://doi.org/10.1109/TIFS.2016.2569061 +J. Benito Camiña,Temporal and Spatial Locality: An Abstraction for Masquerade Detection.,2016,11,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs11.html#CaminaMTM16,https://doi.org/10.1109/TIFS.2016.2571679 +Quanxue Gao,"Rebuttal to ""Comments on 'Joint Global and Local Structure Discriminant Analysis""'.",2016,11,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs11.html#Gao16,https://doi.org/10.1109/TIFS.2015.2490622 +David Vazquez-Padin,A Random Matrix Approach to the Forensic Analysis of Upscaled Images.,2017,12,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs12.html#Vazquez-PadinPA17,https://doi.org/10.1109/TIFS.2017.2699638 +Sankardas Roy,Secure Data Aggregation in Wireless Sensor Networks: Filtering out the Attacker's Impact.,2014,9,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs9.html#RoyCSJ14,https://doi.org/10.1109/TIFS.2014.2307197 +Kaitai Liang,Privacy-Preserving and Regular Language Search Over Encrypted Cloud Data.,2016,11,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs11.html#LiangHGL16,https://doi.org/10.1109/TIFS.2016.2581316 +Quratulain Alam,A Cross Tenant Access Control (CTAC) Model for Cloud Computing: Formal Specification and Verification.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#AlamMACTA17,https://doi.org/10.1109/TIFS.2016.2646639 +John Daugman,Information Theory and the IrisCode.,2016,11,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs11.html#Daugman16,https://doi.org/10.1109/TIFS.2015.2500196 +Lourdes Araujo,Web spam detection: new classification features based on qualified link analysis and language models.,2010,5,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs5.html#AraujoM10,https://doi.org/10.1109/TIFS.2010.2050767 +Kai Wang 0002,Hierarchical Watermarking of Semiregular Meshes Based on Wavelet Transform.,2008,3,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs3.html#WangLDB08,https://doi.org/10.1109/TIFS.2008.2007229 +Miao Xie,Distributed Segment-Based Anomaly Detection With Kullback-Leibler Divergence in Wireless Sensor Networks.,2017,12,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs12.html#XieHGZ17,https://doi.org/10.1109/TIFS.2016.2603961 +Yu Fu,Stealthy Domain Generation Algorithms.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#FuYHOHSSDBB17,https://doi.org/10.1109/TIFS.2017.2668361 +Smita Naval,Employing Program Semantics for Malware Detection.,2015,10,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs10.html#NavalLRGC15,https://doi.org/10.1109/TIFS.2015.2469253 +Yezekael Hayel,Epidemic Protection Over Heterogeneous Networks Using Evolutionary Poisson Games.,2017,12,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs12.html#HayelZ17,https://doi.org/10.1109/TIFS.2017.2687883 +Jinguang Han,Improving Privacy and Security in Decentralized Ciphertext-Policy Attribute-Based Encryption.,2015,10,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs10.html#HanSMZA15,https://doi.org/10.1109/TIFS.2014.2382297 +Le Zhang,Exploiting Process Variations and Programming Sensitivity of Phase Change Memory for Reconfigurable Physical Unclonable Functions.,2014,9,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs9.html#ZhangKCCT14,https://doi.org/10.1109/TIFS.2014.2315743 +Ting He,Distributed Detection of Information Flows.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#HeT08,https://doi.org/10.1109/TIFS.2008.928537 +Onur Günlü,Controllable Identifier Measurements for Private Authentication With Secret Keys.,2018,13,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs13.html#GunluKSC18,https://doi.org/10.1109/TIFS.2018.2806937 +Won Taek Song,Perfect Secrecy Over Binary Erasure Wiretap Channel of Type II.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#SongCH12,https://doi.org/10.1109/TIFS.2012.2199629 +Mauro Barni,Farewell Message.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#Barni17,https://doi.org/10.1109/TIFS.2017.2755979 +Abdulmohsen Almalawi,An Efficient Data-Driven Clustering Technique to Detect Attacks in SCADA Systems.,2016,11,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs11.html#AlmalawiFTAAZ16,https://doi.org/10.1109/TIFS.2015.2512522 +Wouter Biesmans,Private Mobile Pay-TV From Priced Oblivious Transfer.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#BiesmansBRPV18,https://doi.org/10.1109/TIFS.2017.2746058 +Wei Wang 0100,Relay Selection for Secure Successive AF Relaying Networks With Untrusted Nodes.,2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#WangTL16,https://doi.org/10.1109/TIFS.2016.2584006 +Yichun Shi,Face Clustering: Representation and Pairwise Constraints.,2018,13,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs13.html#ShiOJ18,https://doi.org/10.1109/TIFS.2018.2796999 +Jian Li,Segmentation-Based Image Copy-Move Forgery Detection Scheme.,2015,10,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs10.html#LiLYS15,https://doi.org/10.1109/TIFS.2014.2381872 +Mahdi Jafari Siavoshani,Multi-Party Secret Key Agreement Over State-Dependent Wireless Broadcast Channels.,2017,12,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs12.html#SiavoshaniMFD17,https://doi.org/10.1109/TIFS.2016.2612649 +Hung D. Ly,Security Embedding Codes.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#LyLB12,https://doi.org/10.1109/TIFS.2011.2163713 +Riccardo Lazzeretti,Piecewise Function Approximation With Private Data.,2016,11,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs11.html#LazzerettiPB16,https://doi.org/10.1109/TIFS.2015.2503268 +Patrick Bas,A New Measure of Watermarking Security: The Effective Key Length.,2013,8,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs8.html#BasF13,https://doi.org/10.1109/TIFS.2013.2267960 +Hassan Salmani,Vulnerability Analysis of a Circuit Layout to Hardware Trojan Insertion.,2016,11,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs11.html#SalmaniT16,https://doi.org/10.1109/TIFS.2016.2520910 +Peng Xu 0002,Group Secret Key Generation in Wireless Networks: Algorithms and Rate Optimization.,2016,11,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs11.html#XuCDDL16,https://doi.org/10.1109/TIFS.2016.2553643 +Song Han,PPM-HDA: Privacy-Preserving and Multifunctional Health Data Aggregation With Fault Tolerance.,2016,11,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs11.html#HanZLJZ16,https://doi.org/10.1109/TIFS.2015.2472369 +Oleg Mazonka,Cryptoleq: A Heterogeneous Abstract Machine for Encrypted and Unencrypted Computation.,2016,11,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs11.html#MazonkaTM16,https://doi.org/10.1109/TIFS.2016.2569062 +Kai-Hui Lee,Digital Image Sharing by Diverse Image Media.,2014,9,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs9.html#LeeC14,https://doi.org/10.1109/TIFS.2013.2292509 +Jessica J. Fridrich,Effect of Cover Quantization on Steganographic Fisher Information.,2013,8,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs8.html#Fridrich13,https://doi.org/10.1109/TIFS.2012.2235832 +Jun Zhang 0010,Internet Traffic Classification by Aggregating Correlated Naive Bayes Predictions.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#ZhangCXZX13,https://doi.org/10.1109/TIFS.2012.2223675 +Miodrag Potkonjak,Guest Editorial Integrated Circuit and System Security.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#PotkonjakKVI12,https://doi.org/10.1109/TIFS.2011.2180833 +Jim Aarestad,Detecting Trojans Through Leakage Current Analysis Using Multiple Supply Pad IDDQ s.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#AarestadARP10,https://doi.org/10.1109/TIFS.2010.2061228 +Qing Li,Reducing delay and enhancing DoS resistance in multicast authentication through multigrade security.,2006,1,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs1.html#LiT06,https://doi.org/10.1109/TIFS.2006.873599 +Qian Tao,Robust Biometric Score Fusion by Naive Likelihood Ratio via Receiver Operating Characteristics.,2013,8,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs8.html#TaoV13,https://doi.org/10.1109/TIFS.2012.2231862 +Abhishek Sharma,A Novel Online Signature Verification System Based on GMM Features in a DTW Framework.,2017,12,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs12.html#SharmaS17,https://doi.org/10.1109/TIFS.2016.2632063 +Yuan Zhang 0004,On Designing Satisfaction-Ratio-Aware Truthful Incentive Mechanisms for k-Anonymity Location Privacy.,2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#ZhangTZ16,https://doi.org/10.1109/TIFS.2016.2587241 +Xinpeng Zhang,Watermarking With Flexible Self-Recovery Quality Based on Compressive Sensing and Compositive Reconstruction.,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#ZhangQRF11,https://doi.org/10.1109/TIFS.2011.2159208 +Yongfeng Huang,Steganography Integration Into a Low-Bit Rate Speech Codec.,2012,7,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs7.html#HuangLTB12,https://doi.org/10.1109/TIFS.2012.2218599 +Hiroki Okada,Randomness Evaluation With the Discrete Fourier Transform Test Based on Exact Analysis of the Reference Distribution.,2017,12,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs12.html#OkadaU17,https://doi.org/10.1109/TIFS.2017.2656473 +Juan Ramón Troncoso-Pastoriza,Secure Adaptive Filtering.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#Troncoso-PastorizaP11,https://doi.org/10.1109/TIFS.2011.2109385 +Bing Zeng,Perceptual Encryption of H.264 Videos: Embedding Sign-Flips Into the Integer-Based Transforms.,2014,9,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs9.html#ZengAZG14,https://doi.org/10.1109/TIFS.2013.2293955 +Yongzhi Wang,Practical Verifiable Computation-A MapReduce Case Study.,2018,13,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs13.html#WangSJ18,https://doi.org/10.1109/TIFS.2017.2787993 +Jiajun Wen 0001,Directional Gaussian Model for Automatic Speeding Event Detection.,2017,12,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs12.html#WenLMWZ17,https://doi.org/10.1109/TIFS.2017.2705623 +Yafei Yang,Securing rating aggregation systems using statistical detectors and trust.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#YangSKY09,https://doi.org/10.1109/TIFS.2009.2033741 +Kousha Kalantari,Robust Privacy-Utility Tradeoffs Under Differential Privacy and Hamming Distortion.,2018,13,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs13.html#KalantariSS18,https://doi.org/10.1109/TIFS.2018.2831619 +Giulia Boato,Watermarking robustness evaluation based on perceptual quality via genetic algorithms.,2009,4,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs4.html#BoatoCNF09,https://doi.org/10.1109/TIFS.2009.2020362 +Hang Long,Precoding and Cooperative Jamming in Multi- Antenna Two-Way Relaying Wiretap Systems Without Eavesdropper's Channel State Information.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#LongXL17,https://doi.org/10.1109/TIFS.2017.2656846 +Khosro Bahrami,Blurred Image Splicing Localization by Exposing Blur Type Inconsistency.,2015,10,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs10.html#BahramiKLL15,https://doi.org/10.1109/TIFS.2015.2394231 +Chao Wang,Fast Matrix Embedding by Matrix Extending.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#WangZLY12,https://doi.org/10.1109/TIFS.2011.2164907 +Jeffrey R. Paone,Double Trouble: Differentiating Identical Twins by Face Recognition.,2014,9,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs9.html#PaoneFPBBGQPG14,https://doi.org/10.1109/TIFS.2013.2296373 +Carmen Campomanes-Alvarez,Modeling Skull-Face Anatomical/Morphological Correspondence for Craniofacial Superimposition-Based Identification.,2018,13,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs13.html#Campomanes-Alvarez18,https://doi.org/10.1109/TIFS.2018.2791434 +Ikenna Odinaka,ECG Biometric Recognition: A Comparative Analysis.,2012,7,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs7.html#OdinakaLKOSR12,https://doi.org/10.1109/TIFS.2012.2215324 +Mu Li,Twofold Video Hashing With Automatic Synchronization.,2015,10,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs10.html#LiM15,https://doi.org/10.1109/TIFS.2015.2425362 +Luke Miratrix,Election audits using a trinomial bound.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#MiratrixS09,https://doi.org/10.1109/TIFS.2009.2034189 +Francis Minhthang Bui,Fuzzy key binding strategies based on quantization index modulation (QIM) for biometric encryption (BE) applications.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#BuiMLPH10,https://doi.org/10.1109/TIFS.2009.2037662 +Jun Yan 0007,Multi-Contingency Cascading Analysis of Smart Grid Based on Self-Organizing Map.,2013,8,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs8.html#YanZHS13,https://doi.org/10.1109/TIFS.2013.2249065 +Michail Tsikerdekis,Multiple Account Identity Deception Detection in Social Media Using Nonverbal Behavior.,2014,9,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs9.html#TsikerdekisZ14,https://doi.org/10.1109/TIFS.2014.2332820 +Xiangui Kang,Robust Median Filtering Forensics Using an Autoregressive Model.,2013,8,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs8.html#KangSPL13,https://doi.org/10.1109/TIFS.2013.2273394 +Unsang Park,Face Tracking and Recognition at a Distance: A Coaxial and Concentric PTZ Camera System.,2013,8,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs8.html#ParkCJL13,https://doi.org/10.1109/TIFS.2013.2261061 +Juan E. Tapia,Gender Classification From the Same Iris Code Used for Recognition.,2016,11,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs11.html#TapiaPB16,https://doi.org/10.1109/TIFS.2016.2550418 +Na Wang 0003,Efficient Retrieval Over Documents Encrypted by Attributes in Cloud Computing.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#WangFBZ18,https://doi.org/10.1109/TIFS.2018.2825952 +Mathias Payer,What You Submit Is Who You Are: A Multimodal Approach for Deanonymizing Scientific Publications.,2015,10,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs10.html#PayerHGBF15,https://doi.org/10.1109/TIFS.2014.2368355 +Belhassen Bayar,Constrained Convolutional Neural Networks: A New Approach Towards General Purpose Image Manipulation Detection.,2018,13,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs13.html#BayarS18,https://doi.org/10.1109/TIFS.2018.2825953 +Ajay Kumar 0001,Toward More Accurate Matching of Contactless Palmprint Images Under Less Constrained Environments.,2019,14,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs14.html#Kumar19,https://doi.org/10.1109/TIFS.2018.2837669 +Giovanni Chierchia,A Bayesian-MRF Approach for PRNU-Based Image Forgery Detection.,2014,9,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs9.html#ChierchiaPSV14,https://doi.org/10.1109/TIFS.2014.2302078 +Philip B. Stark,Risk-limiting postelection audits: conservative P-values from common probability inequalities.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#Stark09a,https://doi.org/10.1109/TIFS.2009.2034190 +Nhan Duy Truong,Machine Learning Cryptanalysis of a Quantum Random Number Generator.,2019,14,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs14.html#TruongHALK19,https://doi.org/10.1109/TIFS.2018.2850770 +Jiangshan Yu,An Efficient Generic Framework for Three-Factor Authentication With Provably Secure Instantiation.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#YuWMG14,https://doi.org/10.1109/TIFS.2014.2362979 +Kwangtaek Kim,Roughness-Adaptive 3-D Watermarking Based on Masking Effect of Surface Roughness.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#KimBT10,https://doi.org/10.1109/TIFS.2010.2068546 +Jindan Zhou,An Efficient 3-D Ear Recognition System Employing Local and Holistic Features.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#ZhouCA12,https://doi.org/10.1109/TIFS.2012.2189005 +Huiming Wang,Hybrid Cooperative Beamforming and Jamming for Physical-Layer Security of Two-Way Relay Networks.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#WangLYX13,https://doi.org/10.1109/TIFS.2013.2287046 +Sinjini Mitra,Face identification using novel frequency-domain representation of facial asymmetry.,2006,1,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs1.html#MitraSK06,https://doi.org/10.1109/TIFS.2006.879301 +Jia Yu,Enabling Cloud Storage Auditing With Verifiable Outsourcing of Key Updates.,2016,11,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs11.html#YuRW16,https://doi.org/10.1109/TIFS.2016.2528500 +Sandra Zancajo-Blazquez,Segmentation of Indoor Mapping Point Clouds Applied to Crime Scenes Reconstruction.,2015,10,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs10.html#Zancajo-Blazquez15,https://doi.org/10.1109/TIFS.2015.2407699 +Alberto A. de Oliveira,Multiple Parenting Phylogeny Relationships in Digital Images.,2016,11,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs11.html#OliveiraFRPBGDR16,https://doi.org/10.1109/TIFS.2015.2493989 +Peng Xu 0002,Achievable Secrecy Rates for Relay-Eavesdropper Channel Based on the Application of Noisy Network Coding.,2018,13,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs13.html#XuDD18,https://doi.org/10.1109/TIFS.2018.2805601 +Weijia Wang,Ridge-Based DPA: Improvement of Differential Power Analysis For Nanoscale Chips.,2018,13,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs13.html#WangYSLGG18,https://doi.org/10.1109/TIFS.2017.2787985 +Jesús Gómez-Vilardebó,Smart Meter Privacy for Multiple Users in the Presence of an Alternative Energy Source.,2015,10,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs10.html#Gomez-VilardeboG15,https://doi.org/10.1109/TIFS.2014.2365365 +Yongbo Li,SARRE: Semantics-Aware Rule Recommendation and Enforcement for Event Paths on Android.,2016,11,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs11.html#LiYLV16,https://doi.org/10.1109/TIFS.2016.2596141 +Sairul I. Safie,Electrocardiogram (ECG) Biometric Authentication Using Pulse Active Ratio (PAR).,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#SafieSP11,https://doi.org/10.1109/TIFS.2011.2162408 +Abdellatif Zaidi,Secure Degrees of Freedom of MIMO X-Channels With Output Feedback and Delayed CSIT.,2013,8,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs8.html#ZaidiASV13,https://doi.org/10.1109/TIFS.2013.2278936 +Meng Shen,Classification of Encrypted Traffic With Second-Order Markov Chains and Application Attribute Bigrams.,2017,12,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs12.html#ShenWZW17,https://doi.org/10.1109/TIFS.2017.2692682 +Ulrich Rührmair,PUF Modeling Attacks on Simulated and Silicon Data.,2013,8,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs8.html#RuhrmairSSXMSDSBD13,https://doi.org/10.1109/TIFS.2013.2279798 +Haoxi Li,Age-Related Factor Guided Joint Task Modeling Convolutional Neural Network for Cross-Age Face Recognition.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#LiHY18,https://doi.org/10.1109/TIFS.2018.2819124 +Shui Yu,Predicted Packet Padding for Anonymous Web Browsing Against Traffic Analysis Attacks.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#YuZDJ12,https://doi.org/10.1109/TIFS.2012.2197392 +Florian Wilde,Spatial Correlation Analysis on Physical Unclonable Functions.,2018,13,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs13.html#WildeGP18,https://doi.org/10.1109/TIFS.2018.2791341 +Shengshan Hu,Outsourced Biometric Identification With Privacy.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#HuLWCD18,https://doi.org/10.1109/TIFS.2018.2819128 +Attila Altay Yavuz,Real-Time Digital Signatures for Time-Critical Networks.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#YavuzMSPB17,https://doi.org/10.1109/TIFS.2017.2716911 +Peng Xu 0002,Simultaneously Generating Secret and Private Keys in a Cooperative Pairwise-Independent Network.,2016,11,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs11.html#XuDDK16,https://doi.org/10.1109/TIFS.2016.2516970 +Imad M. Abbadi,Towards Trustworthy Resource Scheduling in Clouds.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#AbbadiR13,https://doi.org/10.1109/TIFS.2013.2248726 +Shanshan Wang,Detecting Android Malware Leveraging Text Semantics of Network Flows.,2018,13,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs13.html#WangYCYZC18,https://doi.org/10.1109/TIFS.2017.2771228 +Tianqing Zhu,Correlated Differential Privacy: Hiding Information in Non-IID Data Set.,2015,10,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs10.html#ZhuXLZ15,https://doi.org/10.1109/TIFS.2014.2368363 +Qijun Zhao,Model Based Separation of Overlapping Latent Fingerprints.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#ZhaoJ12,https://doi.org/10.1109/TIFS.2012.2187281 +Waziha Kabir,Normalization and Weighting Techniques Based on Genuine-Impostor Score Fusion in Multi-Biometric Systems.,2018,13,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs13.html#KabirAS18,https://doi.org/10.1109/TIFS.2018.2807790 +Kevin Lin,Abandoned Object Detection via Temporal Consistency Modeling and Back-Tracing Verification for Visual Surveillance.,2015,10,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs10.html#LinCCLH15,https://doi.org/10.1109/TIFS.2015.2408263 +Baocang Wang,Cryptanalysis of a Symmetric Fully Homomorphic Encryption Scheme.,2018,13,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs13.html#WangZZ18,https://doi.org/10.1109/TIFS.2018.2790916 +Daoshun Wang,Optimal Contrast Grayscale Visual Cryptography Schemes With Reversing.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#WangSDY13,https://doi.org/10.1109/TIFS.2013.2281108 +Y.-W. Peter Hong,Vector Quantization and Clustered Key Mapping for Channel-Based Secret Key Generation.,2017,12,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs12.html#HongHL17,https://doi.org/10.1109/TIFS.2017.2656459 +I-Ting Lien,A Novel Privacy Preserving Location-Based Service Protocol With Secret Circular Shift for k-NN Search.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#LienLSW13,https://doi.org/10.1109/TIFS.2013.2252011 +Xin Liu 0011,Learning Multi-Boosted HMMs for Lip-Password Based Speaker Verification.,2014,9,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs9.html#LiuC14,https://doi.org/10.1109/TIFS.2013.2293025 +Honghai Yu,SNR Maximization Hashing.,2015,10,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs10.html#YuM15,https://doi.org/10.1109/TIFS.2015.2436871 +Ronald L. Rivest,Guest editorial: special issue on electronic voting.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#RivestCPRSV09,https://doi.org/10.1109/TIFS.2009.2034721 +Hongbin Luo,Preventing Distributed Denial-of-Service Flooding Attacks With Dynamic Path Identifiers.,2017,12,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs12.html#LuoCLV17,https://doi.org/10.1109/TIFS.2017.2688414 +Ling Fu,An Improved Discrete Fourier Transform-Based Algorithm for Electric Network Frequency Extraction.,2013,8,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs8.html#FuMCL13,https://doi.org/10.1109/TIFS.2013.2265088 +Xiang Wu,A Light CNN for Deep Face Representation With Noisy Labels.,2018,13,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs13.html#WuHST18,https://doi.org/10.1109/TIFS.2018.2833032 +Zhuo Wei,A Hybrid Scheme for Authenticating Scalable Video Codestreams.,2014,9,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs9.html#WeiWDD14,https://doi.org/10.1109/TIFS.2014.2301916 +Jeffrey Pawlick,Strategic Trust in Cloud-Enabled Cyber-Physical Systems With an Application to Glucose Control.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#PawlickZ17,https://doi.org/10.1109/TIFS.2017.2725224 +Brice Colombier,Key Reconciliation Protocols for Error Correction of Silicon PUF Responses.,2017,12,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs12.html#ColombierBFH17,https://doi.org/10.1109/TIFS.2017.2689726 +Yang Wang,Collusion-Resistance in Optimistic Fair Exchange.,2014,9,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs9.html#WangSAW14,https://doi.org/10.1109/TIFS.2014.2326294 +Wenchao Huang,Fine-Grained Refinement on TPM-Based Protocol Applications.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#HuangXWMWGL13,https://doi.org/10.1109/TIFS.2013.2258915 +Zhangjie Fu,Semantic-Aware Searching Over Encrypted Data for Cloud Computing.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#FuXSLX18,https://doi.org/10.1109/TIFS.2018.2819121 +Aythami Morales,Synthesis and Evaluation of High Resolution Hand-Prints.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#MoralesCFM14,https://doi.org/10.1109/TIFS.2014.2357757 +Peter K. K. Loh,Fuzzy Classification Metrics for Scanner Assessment and Vulnerability Reporting.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#LohS10,https://doi.org/10.1109/TIFS.2010.2075926 +Jun Wang,Bimodal Vein Data Mining via Cross-Selected-Domain Knowledge Transfer.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#WangWZ18,https://doi.org/10.1109/TIFS.2017.2766039 +Vojtech Holub,Random Projections of Residuals for Digital Image Steganalysis.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#HolubF13,https://doi.org/10.1109/TIFS.2013.2286682 +Antonis Mairgiotis,New Additive Watermark Detectors Based On A Hierarchical Spatially Adaptive Image Model.,2008,3,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs3.html#MairgiotisGY08,https://doi.org/10.1109/TIFS.2007.916290 +F. Liu,Embedded Extended Visual Cryptography Schemes.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#LiuW11,https://doi.org/10.1109/TIFS.2011.2116782 +Gabriel Maciá-Fernández,Mathematical model for low-rate DoS attacks against application servers.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#Macia-FernandezDT09,https://doi.org/10.1109/TIFS.2009.2024719 +Linjie Guo,Uniform Embedding for Efficient JPEG Steganography.,2014,9,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs9.html#GuoNS14,https://doi.org/10.1109/TIFS.2014.2312817 +Qi Xie,Provably Secure Dynamic ID-Based Anonymous Two-Factor Authenticated Key Exchange Protocol With Extended Security Model.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#XieWWTCF17,https://doi.org/10.1109/TIFS.2017.2659640 +Vishal Monga,A clustering based approach to perceptual image hashing.,2006,1,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs1.html#MongaBE06,https://doi.org/10.1109/TIFS.2005.863502 +Shu Zhang,DeMeshNet: Blind Face Inpainting for Deep MeshFace Verification.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#ZhangHST18,https://doi.org/10.1109/TIFS.2017.2763119 +Arfika Nurhudatiana,On Criminal Identification in Color Skin Images Using Skin Marks (RPPVSM) and Fusion With Inferred Vein Patterns.,2015,10,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs10.html#NurhudatianaK15,https://doi.org/10.1109/TIFS.2014.2387575 +Tiago Jose de Carvalho,Exposing Digital Image Forgeries by Illumination Color Classification.,2013,8,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs8.html#CarvalhoRAPR13,https://doi.org/10.1109/TIFS.2013.2265677 +Minxin Du,Privacy-Preserving Indexing and Query Processing for Secure Dynamic Cloud Storage.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#DuWHW18,https://doi.org/10.1109/TIFS.2018.2818651 +Feng Liu 0001,Step construction of visual cryptography schemes.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#LiuWL10,https://doi.org/10.1109/TIFS.2009.2037660 +Matthias Hiller,Cherry-Picking Reliable PUF Bits With Differential Sequence Coding.,2016,11,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs11.html#HillerYS16,https://doi.org/10.1109/TIFS.2016.2573766 +Hiranmoy Roy,Local-Gravity-Face (LG-face) for Illumination-Invariant and Heterogeneous Face Recognition.,2016,11,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs11.html#RoyB16,https://doi.org/10.1109/TIFS.2016.2530043 +Bin Lian,Periodic K-Times Anonymous Authentication With Efficient Revocation of Violator's Credential.,2015,10,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs10.html#LianCML15,https://doi.org/10.1109/TIFS.2014.2386658 +Baris Coskun,(Un)wisdom of Crowds: Accurately Spotting Malicious IP Clusters Using Not-So-Accurate IP Blacklists.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#Coskun17,https://doi.org/10.1109/TIFS.2017.2663333 +Chunfang Yang,Pixel Group Trace Model-Based Quantitative Steganalysis for Multiple Least-Significant Bits Steganography.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#YangLLZ13,https://doi.org/10.1109/TIFS.2012.2229987 +Kai-Hui Lee,An Extended Visual Cryptography Algorithm for General Access Structures.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#LeeC12,https://doi.org/10.1109/TIFS.2011.2167611 +Fengjun Li,Enforcing Secure and Privacy-Preserving Information Brokering in Distributed Information Sharing.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#LiLLLC13,https://doi.org/10.1109/TIFS.2013.2247398 +Fangjun Huang,An experimental study on the security performance of YASS.,2010,5,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs5.html#HuangHS10,https://doi.org/10.1109/TIFS.2010.2054082 +Tiziano Bianchi,Analysis of One-Time Random Projections for Privacy Preserving Compressed Sensing.,2016,11,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs11.html#BianchiBM16,https://doi.org/10.1109/TIFS.2015.2493982 +Yinian Mao,Tracing Malicious Relays in Cooperative Wireless Communications.,2007,2,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs2.html#MaoW07,https://doi.org/10.1109/TIFS.2007.897242 +Sanjeev Das,Semantics-Based Online Malware Detection: Towards Efficient Real-Time Protection Against Malware.,2016,11,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs11.html#DasLZC16,https://doi.org/10.1109/TIFS.2015.2491300 +Ning Zhang 0015,Adaptive Orientation Model Fitting for Latent Overlapped Fingerprints Separation.,2014,9,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs9.html#ZhangZYJT14,https://doi.org/10.1109/TIFS.2014.2340573 +Siva K. Gorantla,Characterizing the Efficacy of the NRL Network Pump in Mitigating Covert Timing Channels.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#GorantlaKKCMK12,https://doi.org/10.1109/TIFS.2011.2163398 +Shuangyu Luo,Uncoordinated Cooperative Jamming for Secret Communications.,2013,8,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs8.html#LuoLP13,https://doi.org/10.1109/TIFS.2013.2261060 +Yi Cheng Feng,Binary Discriminant Analysis for Generating Binary Face Template.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#FengY12,https://doi.org/10.1109/TIFS.2011.2170422 +Minho Jin,Quantum hashing for multimedia.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#JinY09,https://doi.org/10.1109/TIFS.2009.2033221 +Wenwen Tu,On Simultaneously Generating Multiple Keys in a Joint Source-Channel Model.,2017,12,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs12.html#TuGLP17,https://doi.org/10.1109/TIFS.2016.2612172 +Zhaoxiang Zhang,Transferring Training Instances for Convenient Cross-View Object Classification in Surveillance.,2013,8,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs8.html#ZhangZWLYT13,https://doi.org/10.1109/TIFS.2013.2265089 +Ravikant Saini,Jammer-Assisted Resource Allocation in Secure OFDMA With Untrusted Users.,2016,11,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs11.html#SainiJD16,https://doi.org/10.1109/TIFS.2016.2516912 +Tiziano Bianchi,Image Forgery Localization via Block-Grained Analysis of JPEG Artifacts.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#BianchiP12a,https://doi.org/10.1109/TIFS.2012.2187516 +Hugo Proença,Iris Recognition: What Is Beyond Bit Fragility?,2015,10,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs10.html#Proenca15,https://doi.org/10.1109/TIFS.2014.2371691 +Vivek K. Singh,Adversary aware surveillance systems.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#SinghK09,https://doi.org/10.1109/TIFS.2009.2026459 +Yujue Wang,Identity-Based Data Outsourcing With Comprehensive Auditing in Clouds.,2017,12,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs12.html#WangWQSDH17,https://doi.org/10.1109/TIFS.2016.2646913 +Xiaobei Liu,Reconstructing a Linear Scrambler With Improved Detection Capability and in the Presence of Noise.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#LiuKWC12,https://doi.org/10.1109/TIFS.2011.2169790 +Shengmin Xu,Secure Fine-Grained Access Control and Data Sharing for Dynamic Groups in the Cloud.,2018,13,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs13.html#XuYMD18,https://doi.org/10.1109/TIFS.2018.2810065 +Xiao-chun Yun,SMS Worm Propagation Over Contact Social Networks: Modeling and Validation.,2015,10,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs10.html#YunL015,https://doi.org/10.1109/TIFS.2015.2455413 +Joao Sa Sousa,Uncoordinated Frequency Hopping for Wireless Secrecy Against Non-Degraded Eavesdroppers.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#SousaV18,https://doi.org/10.1109/TIFS.2017.2737963 +Edoardo Ardizzone,Copy-Move Forgery Detection by Matching Triangles of Keypoints.,2015,10,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs10.html#ArdizzoneBM15,https://doi.org/10.1109/TIFS.2015.2445742 +Alex X. Liu,Firewall Fingerprinting and Denial of Firewalling Attacks.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#LiuKHGPW17,https://doi.org/10.1109/TIFS.2017.2668602 +Pietro Lovato,Faved! Biometrics: Tell Me Which Image You Like and I'll Tell You Who You Are.,2014,9,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs9.html#LovatoBSPSC14,https://doi.org/10.1109/TIFS.2014.2298370 +Jordi Soria-Comas,Individual Differential Privacy: A Utility-Preserving Formulation of Differential Privacy Guarantees.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#Soria-ComasDSM17,https://doi.org/10.1109/TIFS.2017.2663337 +Arunkumar Vijayakumar,Physical Design Obfuscation of Hardware: A Comprehensive Investigation of Device and Logic-Level Techniques.,2017,12,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs12.html#VijayakumarPHPK17,https://doi.org/10.1109/TIFS.2016.2601067 +Quang Do,A Data Exfiltration and Remote Exploitation Attack on Consumer 3D Printers.,2016,11,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs11.html#DoMC16,https://doi.org/10.1109/TIFS.2016.2578285 +Ajay Kumar 0001,Importance of Being Unique From Finger Dorsal Patterns: Exploring Minor Finger Knuckle Patterns in Verifying Human Identities.,2014,9,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs9.html#Kumar14,https://doi.org/10.1109/TIFS.2014.2328869 +Shuhua Deng,Packet Injection Attack and Its Defense in Software-Defined Networks.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#DengGLG18,https://doi.org/10.1109/TIFS.2017.2765506 +Wei Yang 0008,Multi-Channel Fusion Attacks.,2017,12,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs12.html#YangZC0ZW17,https://doi.org/10.1109/TIFS.2017.2672521 +Shyong Jian Shyu,General Constructions for Threshold Multiple-Secret Visual Cryptographic Schemes.,2013,8,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs8.html#ShyuJ13,https://doi.org/10.1109/TIFS.2013.2250432 +Xiaofeng Wang,A Visual Model-Based Perceptual Image Hash for Content Authentication.,2015,10,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs10.html#WangPZZLX15,https://doi.org/10.1109/TIFS.2015.2407698 +Jiantao Zhou,Scalable Compression of Stream Cipher Encrypted Images Through Context-Adaptive Sampling.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#ZhouAZTL14,https://doi.org/10.1109/TIFS.2014.2352455 +Ta-Yuan Liu,On the Role of Artificial Noise in Training and Data Transmission for Secret Communications.,2017,12,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs12.html#LiuLH17,https://doi.org/10.1109/TIFS.2016.2620281 +Qinghua Li,Mitigating Routing Misbehavior in Disruption Tolerant Networks.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#LiC12,https://doi.org/10.1109/TIFS.2011.2173195 +Ali H. Sayed,Free electronic access to SP publications.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#Sayed09,https://doi.org/10.1109/TIFS.2009.2036059 +Ming Wan,Double Behavior Characteristics for One-Class Classification Anomaly Detection in Networked Control Systems.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#WanSZ17,https://doi.org/10.1109/TIFS.2017.2730581 +Peng Xu 0002,A General Framework of Wiretap Channel With Helping Interference and State Information.,2014,9,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs9.html#XuDDL14,https://doi.org/10.1109/TIFS.2013.2295031 +Wenbo Zhou,A New Rule for Cost Reassignment in Adaptive Steganography.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#ZhouZY17,https://doi.org/10.1109/TIFS.2017.2718480 +Bin Dai 0003,Relay Broadcast Channel With Confidential Messages.,2016,11,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs11.html#DaiYM16,https://doi.org/10.1109/TIFS.2015.2503259 +H. Choi,Fingerprint Matching Incorporating Ridge Features With Minutiae.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#ChoiCK11,https://doi.org/10.1109/TIFS.2010.2103940 +Levent Ozparlak,Differentiating Between Images Using Wavelet-Based Transforms: A Comparative Study.,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#OzparlakA11,https://doi.org/10.1109/TIFS.2011.2162830 +Abhishek Das,An FPGA-Based Network Intrusion Detection Architecture.,2008,3,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs3.html#DasNZMC08,https://doi.org/10.1109/TIFS.2007.916288 +Hu Han,Matching Composite Sketches to Face Photos: A Component-Based Approach.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#HanKBJ13,https://doi.org/10.1109/TIFS.2012.2228856 +Yongdong Wu,Software Puzzle: A Countermeasure to Resource-Inflated Denial-of-Service Attacks.,2015,10,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs10.html#WuZBD15,https://doi.org/10.1109/TIFS.2014.2366293 +Xiaoyu Chu,Compressive Sensing Forensics.,2015,10,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs10.html#ChuSL15,https://doi.org/10.1109/TIFS.2015.2413389 +Mohamed Grissa,Preserving the Location Privacy of Secondary Users in Cooperative Spectrum Sensing.,2017,12,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs12.html#GrissaYH17,https://doi.org/10.1109/TIFS.2016.2622000 +Chunxuan Ye,Information-theoretically secret key generation for fading wireless channels.,2010,5,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs5.html#YeMRSTM10,https://doi.org/10.1109/TIFS.2010.2043187 +Minoru Kuribayashi,Interference Removal Operation for Spread Spectrum Fingerprinting Scheme.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#Kuribayashi12,https://doi.org/10.1109/TIFS.2011.2170421 +Maneli Noorkami,Digital Video Watermarking in P-Frames With Controlled Video Bit-Rate Increase.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#NoorkamiM08,https://doi.org/10.1109/TIFS.2008.923825 +M. Francisca Hinarejos,RiskLaine: A Probabilistic Approach for Assessing Risk in Certificate-Based Security.,2018,13,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs13.html#HinarejosACFL18,https://doi.org/10.1109/TIFS.2018.2807788 +Yong Yu,Identity-Based Remote Data Integrity Checking With Perfect Data Privacy Preserving for Cloud Storage.,2017,12,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs12.html#YuAAHSDM17,https://doi.org/10.1109/TIFS.2016.2615853 +Lei Zhang 0009,OTIBAAGKA: A New Security Tool for Cryptographic Mix-Zone Establishment in Vehicular Ad Hoc Networks.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#Zhang17,https://doi.org/10.1109/TIFS.2017.2730479 +Gang Zheng,Application of Projective Invariants in Hand Geometry Biometrics.,2007,2,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs2.html#ZhengWB07,https://doi.org/10.1109/TIFS.2007.908239 +Hao Liu 0019,Label-Sensitive Deep Metric Learning for Facial Age Estimation.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#LiuLFZ18,https://doi.org/10.1109/TIFS.2017.2746062 +Andrew D. Ker,The Steganographer is the Outlier: Realistic Large-Scale Steganalysis.,2014,9,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs9.html#KerP14,https://doi.org/10.1109/TIFS.2014.2336380 +Kamal Taha,SIIMCO: A Forensic Investigation Tool for Identifying the Influential Members of a Criminal Organization.,2016,11,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs11.html#TahaY16,https://doi.org/10.1109/TIFS.2015.2510826 +C.-M. Yu,Constrained Function-Based Message Authentication for Sensor Networks.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#YuTLK11a,https://doi.org/10.1109/TIFS.2011.2106120 +Gang Cao,Contrast Enhancement-Based Forensics in Digital Images.,2014,9,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs9.html#CaoZNL14,https://doi.org/10.1109/TIFS.2014.2300937 +Jianxu Chen,Iris Recognition Based on Human-Interpretable Features.,2016,11,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs11.html#ChenSCF16,https://doi.org/10.1109/TIFS.2016.2535901 +Jingran Lin,Physical-Layer Security for Proximal Legitimate User and Eavesdropper: A Frequency Diverse Array Beamforming Approach.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#LinLYSW18,https://doi.org/10.1109/TIFS.2017.2765500 +M. Kamran,A Formal Usability Constraints Model for Watermarking of Outsourced Datasets.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#KamranF13,https://doi.org/10.1109/TIFS.2013.2259234 +Tuncer C. Aysal,Sensor Data Cryptography in Wireless Sensor Networks.,2008,3,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs3.html#AysalB08,https://doi.org/10.1109/TIFS.2008.919119 +Luis Pérez-Freire,An accurate analysis of scalar quantization-based data hiding.,2006,1,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs1.html#Perez-FreirePV06,https://doi.org/10.1109/TIFS.2005.863488 +Ryota Nakai,Physical Layer Security in Buffer-State-Based Max-Ratio Relay Selection Exploiting Broadcasting With Cooperative Beamforming and Jamming.,2019,14,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs14.html#NakaiS19,https://doi.org/10.1109/TIFS.2018.2854711 +Himanshu S. Bhatt,On Recognizing Faces in Videos Using Clustering-Based Re-Ranking and Fusion.,2014,9,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs9.html#BhattSV14,https://doi.org/10.1109/TIFS.2014.2318433 +Suqing Lin,Revisiting Attribute-Based Encryption With Verifiable Outsourced Decryption.,2015,10,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs10.html#LinZMW15,https://doi.org/10.1109/TIFS.2015.2449264 +Kun Xie,Increasing Security Degree of Freedom in Multiuser and Multieve Systems.,2013,8,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs8.html#Xie0W13,https://doi.org/10.1109/TIFS.2012.2237396 +Nate Goergen,Extrinsic Channel-Like Fingerprinting Overlays Using Subspace Embedding.,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#GoergenLLC11,https://doi.org/10.1109/TIFS.2011.2172208 +Stefano Berretti,Sparse Matching of Salient Facial Curves for Recognition of 3-D Faces With Missing Parts.,2013,8,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs8.html#BerrettiBP13,https://doi.org/10.1109/TIFS.2012.2235833 +Zhe Cui,2-D Phase Demodulation for Deformable Fingerprint Registration.,2018,13,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs13.html#CuiFLLZ18,https://doi.org/10.1109/TIFS.2018.2841849 +Wenhao Wang,Wireless Physical-Layer Identification: Modeling and Validation.,2016,11,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs11.html#WangSPZR16,https://doi.org/10.1109/TIFS.2016.2552146 +Li Weng,A Privacy-Preserving Framework for Large-Scale Content-Based Information Retrieval.,2015,10,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs10.html#WengAMM15,https://doi.org/10.1109/TIFS.2014.2365998 +Ajita Rattani,Open Set Fingerprint Spoof Detection Across Novel Fabrication Materials.,2015,10,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs10.html#RattaniSR15,https://doi.org/10.1109/TIFS.2015.2464772 +Fausto Galvan,First Quantization Matrix Estimation From Double Compressed JPEG Images.,2014,9,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs9.html#GalvanPBB14,https://doi.org/10.1109/TIFS.2014.2330312 +Juan Ramón Troncoso-Pastoriza,Fully Private Noninteractive Face Verification.,2013,8,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs8.html#Troncoso-PastorizaGP13,https://doi.org/10.1109/TIFS.2013.2262273 +Xudong Lv,Compressed Binary Image Hashes Based on Semisupervised Spectral Embedding.,2013,8,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs8.html#LvW13,https://doi.org/10.1109/TIFS.2013.2281219 +Masoud Ghoreishi Madiseh,Applying Beamforming to Address Temporal Correlation in Wireless Channel Characterization-Based Secret Key Generation.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#MadisehNM12,https://doi.org/10.1109/TIFS.2012.2195176 +Juan Lopez,Enhancing Critical Infrastructure and Key Resources (CIKR) Level-0 Physical Process Security Using Field Device Distinct Native Attribute Features.,2018,13,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs13.html#LopezLBT18,https://doi.org/10.1109/TIFS.2017.2779447 +Konstantinos Koufos,Boundaries as an Enhancement Technique for Physical Layer Security.,2019,14,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs14.html#KoufosD19,https://doi.org/10.1109/TIFS.2018.2841870 +Xi Zhao,Mobile User Authentication Using Statistical Touch Dynamics Images.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#ZhaoFSK14,https://doi.org/10.1109/TIFS.2014.2350916 +Xiaocheng Hu,Minimum Rate Prediction and Optimized Histograms Modification for Reversible Data Hiding.,2015,10,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs10.html#HuZLY15,https://doi.org/10.1109/TIFS.2015.2392556 +W. Sabrina Lin,Behavior forensics with side information for multimedia fingerprinting social networks.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#LinZL09,https://doi.org/10.1109/TIFS.2009.2033224 +Mingxing Duan,An Ensemble CNN2ELM for Age Estimation.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#DuanLL18,https://doi.org/10.1109/TIFS.2017.2766583 +Vincent Christlein,An Evaluation of Popular Copy-Move Forgery Detection Approaches.,2012,7,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs7.html#ChristleinRJRA12,https://doi.org/10.1109/TIFS.2012.2218597 +Hong Cao,Manipulation Detection on Image Patches Using FusionBoost.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#CaoK12,https://doi.org/10.1109/TIFS.2012.2185696 +Haibin Ling,Face verification across age progression using discriminative methods.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#LingSRJ10,https://doi.org/10.1109/TIFS.2009.2038751 +Cecilia Pasquini,Statistical Detection of JPEG Traces in Digital Images in Uncompressed Formats.,2017,12,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs12.html#PasquiniBP17,https://doi.org/10.1109/TIFS.2017.2725201 +Rongmao Chen,Server-Aided Public Key Encryption With Keyword Search.,2016,11,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs11.html#ChenMYGHWW16,https://doi.org/10.1109/TIFS.2016.2599293 +Thanh Hai Thai,JPEG Quantization Step Estimation and Its Applications to Digital Image Forensics.,2017,12,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs12.html#ThaiCRD17,https://doi.org/10.1109/TIFS.2016.2604208 +Craig Belcher,A Selective Feature Information Approach for Iris Image-Quality Measure.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#BelcherD08,https://doi.org/10.1109/TIFS.2008.924606 +Holger Boche,On the Continuity of the Secrecy Capacity of Compound and Arbitrarily Varying Wiretap Channels.,2015,10,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs10.html#BocheSP15,https://doi.org/10.1109/TIFS.2015.2465937 +Massimo Tistarelli,On the Use of Discriminative Cohort Score Normalization for Unconstrained Face Recognition.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#TistarelliSP14,https://doi.org/10.1109/TIFS.2014.2362007 +Ikenna Odinaka,Cardiovascular Biometrics: Combining Mechanical and Electrical Signals.,2015,10,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs10.html#OdinakaOSR15,https://doi.org/10.1109/TIFS.2014.2361261 +Charles G. Boncelet Jr.,The NTMAC for authentication of noisy messages.,2006,1,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs1.html#Boncelet06,https://doi.org/10.1109/TIFS.2005.863506 +Jens-Matthias Bohli,Enhancing electronic voting machines on the example of Bingo voting.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#BohliHKMR09,https://doi.org/10.1109/TIFS.2009.2033755 +Le Trieu Phong,Privacy-Preserving Deep Learning via Additively Homomorphic Encryption.,2018,13,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs13.html#PhongAHWM18,https://doi.org/10.1109/TIFS.2017.2787987 +Lianying Zhao,Deceptive Deletion Triggers Under Coercion.,2016,11,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs11.html#ZhaoM16,https://doi.org/10.1109/TIFS.2016.2598523 +Steven Cadavid,3-D Ear Modeling and Recognition From Video Sequences Using Shape From Shading.,2008,3,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs3.html#CadavidA08,https://doi.org/10.1109/TIFS.2008.2007239 +Oktay Altun,A Set Theoretic Framework for Watermarking and Its Application to Semifragile Tamper Detection.,2006,1,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs1.html#AltunSCB06,https://doi.org/10.1109/TIFS.2006.885018 +Mario Preishuber,Depreciating Motivation and Empirical Security Analysis of Chaos-Based Image and Video Encryption.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#PreishuberHKU18,https://doi.org/10.1109/TIFS.2018.2812080 +Anh Truong,Optimal Attack Strategies Against Predictors - Learning From Expert Advice.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#TruongEEK18,https://doi.org/10.1109/TIFS.2017.2718488 +HongJie He,Performance Analysis of a Block-Neighborhood-Based Self-Recovery Fragile Watermarking Scheme.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#HeCTKZ12,https://doi.org/10.1109/TIFS.2011.2162950 +Nicolas Bruneau,Stochastic Collision Attack.,2017,12,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs12.html#BruneauCGHPR17,https://doi.org/10.1109/TIFS.2017.2697401 +Jian Cao,Controllable Secure Watermarking Technique for Tradeoff Between Robustness and Security.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#CaoH12,https://doi.org/10.1109/TIFS.2012.2184093 +Zi Li,Secret Key Establishment via RSS Trajectory Matching Between Wearable Devices.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#LiPMLZ18,https://doi.org/10.1109/TIFS.2017.2768020 +Stefano Berretti,Face Recognition by Super-Resolved 3D Models From Consumer Depth Cameras.,2014,9,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs9.html#BerrettiPB14,https://doi.org/10.1109/TIFS.2014.2337258 +Ly-Minh-Duy Le,Jamming Rejection Using FFH/MFSK ML Receiver Over Fading Channels With the Presence of Timing and Frequency Offsets.,2013,8,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs8.html#LeTL13,https://doi.org/10.1109/TIFS.2013.2264053 +Y.-L. Chen,Detecting Recompression of JPEG Images via Periodicity Analysis of Compression Artifacts for Tampering Detection.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#ChenH11,https://doi.org/10.1109/TIFS.2011.2106121 +Yansha Deng,Physical Layer Security in Three-Tier Wireless Sensor Networks: A Stochastic Geometry Approach.,2016,11,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs11.html#DengWENM16,https://doi.org/10.1109/TIFS.2016.2516917 +Chris G. Zeinstra,Grid-Based Likelihood Ratio Classifiers for the Comparison of Facial Marks.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#ZeinstraVS18,https://doi.org/10.1109/TIFS.2017.2746013 +Jianfeng Lu 0002,Designing Socially-Optimal Rating Protocols for Crowdsourcing Contest Dilemma.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#LuTLW17,https://doi.org/10.1109/TIFS.2017.2656468 +Roberto Caldelli,Image Origin Classification Based on Social Network Provenance.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#CaldelliBA17,https://doi.org/10.1109/TIFS.2017.2656842 +Hugo Proença,Quality Assessment of Degraded Iris Images Acquired in the Visible Wavelength.,2011,6,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs6.html#Proenca11,https://doi.org/10.1109/TIFS.2010.2086446 +Hongwen Zhang,Combining Data-Driven and Model-Driven Methods for Robust Facial Landmark Detection.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#ZhangLSL18,https://doi.org/10.1109/TIFS.2018.2800901 +Babak Mahdian,Blind Authentication Using Periodic Properties of Interpolation.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#MahdianS08,https://doi.org/10.1109/TIFS.2004.924603 +Daniel González-Jiménez,Shape-Driven Gabor Jets for Face Description and Authentication.,2007,2,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs2.html#Gonzalez-JimenezA07a,https://doi.org/10.1109/TIFS.2007.910238 +Qingyou Yang,AnFRA: Anonymous and Fast Roaming Authentication for Space Information Network.,2019,14,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs14.html#YangXXWLY19,https://doi.org/10.1109/TIFS.2018.2854740 +Zhen Xu,Proof-Carrying Cloud Computation: The Case of Convex Optimization.,2014,9,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs9.html#XuWRWZ14,https://doi.org/10.1109/TIFS.2014.2352457 +Huang Lin,CAM: Cloud-Assisted Privacy Preserving Mobile Health Monitoring.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#LinSZF13,https://doi.org/10.1109/TIFS.2013.2255593 +Qi Li 0002,Enhancing the Trust of Internet Routing With Lightweight Route Attestation.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#LiXWZLX12,https://doi.org/10.1109/TIFS.2011.2177822 +Benjamin Tams,Security Considerations in Minutiae-Based Fuzzy Vaults.,2015,10,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs10.html#TamsMM15,https://doi.org/10.1109/TIFS.2015.2392559 +Haiyun Xu,Fingerprint verification using spectral minutiae representations.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#XuVBKAG09,https://doi.org/10.1109/TIFS.2009.2021692 +Yihai Zhu,Joint Substation-Transmission Line Vulnerability Assessment Against the Smart Grid.,2015,10,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs10.html#ZhuYTSH15,https://doi.org/10.1109/TIFS.2015.2394240 +Richard M. Jiang,Face Recognition in the Scrambled Domain via Salience-Aware Ensembles of Many Kernels.,2016,11,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs11.html#JiangABCC16,https://doi.org/10.1109/TIFS.2016.2555792 +Vireshwar Kumar,PHY-Layer Authentication Using Duobinary Signaling for Spectrum Enforcement.,2016,11,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs11.html#KumarPB16,https://doi.org/10.1109/TIFS.2016.2516904 +Arun Ross,Visual Cryptography for Biometric Privacy.,2011,6,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs6.html#RossO11,https://doi.org/10.1109/TIFS.2010.2097252 +Yonggang Huang,Exploring Feature Coupling and Model Coupling for Image Source Identification.,2018,13,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs13.html#HuangCZPL18,https://doi.org/10.1109/TIFS.2018.2838079 +Tao Wu,Age Estimation and Face Verification Across Aging Using Landmarks.,2012,7,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs7.html#WuTC12,https://doi.org/10.1109/TIFS.2012.2213812 +Hafiz Malik,Nonparametric Steganalysis of QIM Steganography Using Approximate Entropy.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#MalikSC12,https://doi.org/10.1109/TIFS.2011.2169058 +Hao Dong 0003,Dropping Activation Outputs With Localized First-Layer Deep Network for Enhancing User Privacy and Data Security.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#DongWWG18,https://doi.org/10.1109/TIFS.2017.2763126 +Yi Jin,Coupled Discriminative Feature Learning for Heterogeneous Face Recognition.,2015,10,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs10.html#JinLR15,https://doi.org/10.1109/TIFS.2015.2390414 +Qian Wang,Darknet-Based Inference of Internet Worm Temporal Characteristics.,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#WangCC11,https://doi.org/10.1109/TIFS.2011.2161288 +Kazuo Sakiyama,Information-Theoretic Approach to Optimal Differential Fault Analysis.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#SakiyamaLIO12,https://doi.org/10.1109/TIFS.2011.2174984 +Sílvia Cristina Dias Pinto,Two-Dimensional Wavelet Analysis of Supraorbital Margins of the Human Skull for Characterizing Sexual Dimorphism.,2016,11,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs11.html#PintoUC16,https://doi.org/10.1109/TIFS.2016.2541611 +Enping Li,Capacity Limits of Pseudorandom Channels in Deception Problems.,2015,10,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs10.html#LiCY15,https://doi.org/10.1109/TIFS.2015.2423656 +Yuxin Liu,ActiveTrust: Secure and Trustable Routing in Wireless Sensor Networks.,2016,11,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs11.html#LiuDOL16,https://doi.org/10.1109/TIFS.2016.2570740 +Jiayuan Fan,Estimating EXIF Parameters Based on Noise Features for Image Manipulation Detection.,2013,8,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs8.html#FanCK13,https://doi.org/10.1109/TIFS.2013.2249064 +Pasquale Ferrara,Image Forgery Localization via Fine-Grained Analysis of CFA Artifacts.,2012,7,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs7.html#FerraraBRP12,https://doi.org/10.1109/TIFS.2012.2202227 +Y. Liang,Advanced Joint Bayesian Method for Face Verification.,2015,10,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs10.html#LiangDX15,https://doi.org/10.1109/TIFS.2014.2375552 +Weiming Zhang,Generalization and Analysis of the Paper Folding Method for Steganography.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#ZhangLWY10,https://doi.org/10.1109/TIFS.2010.2065804 +Omar Hasan,A Decentralized Privacy Preserving Reputation Protocol for the Malicious Adversarial Model.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#HasanBBS13,https://doi.org/10.1109/TIFS.2013.2258914 +Mitchell McLaren,A Comparison of Session Variability Compensation Approaches for Speaker Verification.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#McLarenVBS10,https://doi.org/10.1109/TIFS.2010.2068290 +Wei Hu 0008,On the Complexity of Generating Gate Level Information Flow Tracking Logic.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#HuOITSMK12,https://doi.org/10.1109/TIFS.2012.2189105 +Haichang Gao,Research on the Security of Microsoft's Two-Layer Captcha.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#GaoTLZL17,https://doi.org/10.1109/TIFS.2017.2682704 +Kai Zhou,ExpSOS: Secure and Verifiable Outsourcing of Exponentiation Operations for Mobile Cloud Computing.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#ZhouAR17,https://doi.org/10.1109/TIFS.2017.2710941 +Benjamin Mathon,Impacts of Watermarking Security on Tardos-Based Fingerprinting.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#MathonBCM13,https://doi.org/10.1109/TIFS.2013.2260158 +Negar Kiyavash,A Timing Channel Spyware for the CSMA/CA Protocol.,2013,8,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs8.html#KiyavashKCR13,https://doi.org/10.1109/TIFS.2013.2238930 +Ryan M. Gerdes,Physical-Layer Identification of Wired Ethernet Devices.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#GerdesMRD12,https://doi.org/10.1109/TIFS.2012.2197746 +Nitin Khanna,Scanner identification using feature-based processing and analysis.,2009,4,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs4.html#KhannaMD09,https://doi.org/10.1109/TIFS.2008.2009604 +Mohammad Sayad Haghighi,Stochastic Modeling of Hello Flooding in Slotted CSMA/CA Wireless Sensor Networks.,2011,6,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs6.html#HaghighiMVQ11,https://doi.org/10.1109/TIFS.2011.2163306 +Kuo Cao,Secure Communication for Amplify-and-Forward Relay Networks With Finite Alphabet Input.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#CaoCWY18,https://doi.org/10.1109/TIFS.2018.2818065 +Rui Tan,Modeling and Mitigating Impact of False Data Injection Attacks on Automatic Generation Control.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#TanNFYKIG17,https://doi.org/10.1109/TIFS.2017.2676721 +Anselmo Ferreira,Data-Driven Feature Characterization Techniques for Laser Printer Attribution.,2017,12,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs12.html#FerreiraBBBHSTR17,https://doi.org/10.1109/TIFS.2017.2692722 +Ali Moharrer,Extractable Common Randomness From Gaussian Trees: Topological and Algebraic Perspectives.,2016,11,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs11.html#MoharrerWAD16,https://doi.org/10.1109/TIFS.2016.2543688 +Osman Hilmi Koçal,Chaotic-Type Features for Speech Steganalysis.,2008,3,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs3.html#KocalYA08,https://doi.org/10.1109/TIFS.2008.2004289 +Norman Poh,Generalizing DET Curves Across Application Scenarios.,2015,10,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs10.html#PohC15,https://doi.org/10.1109/TIFS.2015.2434320 +Junghwan Rhee,Data-Centric OS Kernel Malware Characterization.,2014,9,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs9.html#RheeRLJX14,https://doi.org/10.1109/TIFS.2013.2291964 +Vincent F. Taylor,Robust Smartphone App Identification via Encrypted Network Traffic Analysis.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#TaylorSCM18,https://doi.org/10.1109/TIFS.2017.2737970 +Qing Li,Detecting Spoofing and Anomalous Traffic in Wireless Networks via Forge-Resistant Relationships.,2007,2,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs2.html#LiT07a,https://doi.org/10.1109/TIFS.2007.910236 +Agusti Solanas,Distributed Architecture With Double-Phase Microaggregation for the Private Sharing of Biomedical Data in Mobile Health.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#SolanasMM13,https://doi.org/10.1109/TIFS.2013.2248728 +Ashwin Swaminathan,Robust and secure image hashing.,2006,1,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs1.html#SwaminathanMW06,https://doi.org/10.1109/TIFS.2006.873601 +Pedro C. Pinto,Secure Communication in Stochastic Wireless Networks - Part II: Maximum Rate and Collusion.,2012,7,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs7.html#PintoBW12a,https://doi.org/10.1109/TIFS.2011.2165947 +Shuicheng Yan,Regression From Uncertain Labels and Its Applications to Soft Biometrics.,2008,3,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs3.html#YanWTLH08,https://doi.org/10.1109/TIFS.2008.2006585 +Chuntao Wang,An Informed Watermarking Scheme Using Hidden Markov Model in the Wavelet Domain.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#WangNH12,https://doi.org/10.1109/TIFS.2012.2188797 +Ding Wang 0002,Zipf's Law in Passwords.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#WangCWHJ17,https://doi.org/10.1109/TIFS.2017.2721359 +Jun Zhou,Secure and privacy preserving protocol for cloud-based vehicular DTNs.,2015,10,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs10.html#ZhouDCV15,https://doi.org/10.1109/TIFS.2015.2407326 +Luca Caviglione,Seeing the Unseen: Revealing Mobile Malware Hidden Communications via Energy Consumption and Artificial Intelligence.,2016,11,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs11.html#CaviglioneGLMU16,https://doi.org/10.1109/TIFS.2015.2510825 +Adi Hajj-Ahmad,ENF-Based Region-of-Recording Identification for Media Signals.,2015,10,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs10.html#Hajj-AhmadG015,https://doi.org/10.1109/TIFS.2015.2398367 +Seungkwang Lee,A Masked White-Box Cryptographic Implementation for Protecting Against Differential Computation Analysis.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#LeeKK18,https://doi.org/10.1109/TIFS.2018.2825939 +Rémi Cogranne,An Asymptotically Uniformly Most Powerful Test for LSB Matching Detection.,2013,8,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs8.html#CogranneR13,https://doi.org/10.1109/TIFS.2013.2238232 +Tan Tai Do,Jamming-Resistant Receivers for the Massive MIMO Uplink.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#DoBLR18,https://doi.org/10.1109/TIFS.2017.2746007 +William Luh,Distributed Secret Sharing for Discrete Memoryless Networks.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#LuhK08,https://doi.org/10.1109/TIFS.2008.927422 +Alexandros Iosifidis,Scaling Up Class-Specific Kernel Discriminant Analysis for Large-Scale Face Verification.,2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#IosifidisG16,https://doi.org/10.1109/TIFS.2016.2582562 +Xiaoyong Li 0003,LDTS: A Lightweight and Dependable Trust System for Clustered Wireless Sensor Networks.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#LiZD13,https://doi.org/10.1109/TIFS.2013.2240299 +Pengfei Zhu,Image Set-Based Collaborative Representation for Face Recognition.,2014,9,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs9.html#ZhuZZSZ14,https://doi.org/10.1109/TIFS.2014.2324277 +Wei Wang 0025,Exploring DCT Coefficient Quantization Effects for Local Tampering Detection.,2014,9,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs9.html#WangDT14,https://doi.org/10.1109/TIFS.2014.2345479 +Mahalingam Ramkumar,The subset keys and identity tickets (SKIT) key distribution scheme.,2010,5,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs5.html#Ramkumar10,https://doi.org/10.1109/TIFS.2009.2039603 +Xiaoyu Chu,Detectability of the Order of Operations: An Information Theoretic Approach.,2016,11,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs11.html#ChuCL16,https://doi.org/10.1109/TIFS.2015.2510958 +Kuan-Hsien Liu,Age Estimation via Grouping and Decision Fusion.,2015,10,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs10.html#LiuYK15,https://doi.org/10.1109/TIFS.2015.2462732 +Guang Hua,Audio Authentication by Exploring the Absolute-Error-Map of ENF Signals.,2016,11,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs11.html#HuaZGT16,https://doi.org/10.1109/TIFS.2016.2516824 +Feng Hao,Analyzing and Patching SPEKE in ISO/IEC.,2018,13,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs13.html#HaoMSD18,https://doi.org/10.1109/TIFS.2018.2832984 +Jiangyang Zhang,Adaptive Directional Total-Variation Model for Latent Fingerprint Segmentation.,2013,8,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs8.html#ZhangLK13,https://doi.org/10.1109/TIFS.2013.2267491 +Rajiv Bagai,Measuring Anonymity of Pseudonymized Data After Probabilistic Background Attacks.,2017,12,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs12.html#BagaiMJ17,https://doi.org/10.1109/TIFS.2017.2656458 +Jishen Zeng,Large-Scale JPEG Image Steganalysis Using Hybrid Deep-Learning Framework.,2018,13,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs13.html#ZengTLH18,https://doi.org/10.1109/TIFS.2017.2779446 +Qing Zhang,A Novel Serial Multimodal Biometrics Framework Based on Semisupervised Learning Techniques.,2014,9,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs9.html#ZhangYZP14,https://doi.org/10.1109/TIFS.2014.2346703 +Mehmet Celenk,Predictive network anomaly detection and visualization.,2010,5,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs5.html#CelenkCWG10,https://doi.org/10.1109/TIFS.2010.2041808 +Gouenou Coatrieux,Reversible Watermarking Based on Invariant Image Classification and Dynamic Histogram Shifting.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#CoatrieuxPCCR13,https://doi.org/10.1109/TIFS.2012.2224108 +Fu-Hau Hsu,Antivirus Software Shield Against Antivirus Terminators.,2012,7,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs7.html#HsuWTHC12,https://doi.org/10.1109/TIFS.2012.2206028 +Siavash Ahmadi,Low-Data Complexity Biclique Cryptanalysis of Block Ciphers With Application to Piccolo and HIGHT.,2014,9,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs9.html#AhmadiAMA14,https://doi.org/10.1109/TIFS.2014.2344445 +Larry A. Dunning,Privacy Preserving Data Sharing With Anonymous ID Assignment.,2013,8,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs8.html#DunningK13,https://doi.org/10.1109/TIFS.2012.2235831 +Nan (Jonas) Yang,Physical Layer Security of TAS/MRC With Antenna Correlation.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#YangSCY13,https://doi.org/10.1109/TIFS.2012.2223681 +Nandita M. Nayak,Exploiting Spatio-Temporal Scene Structure for Wide-Area Activity Analysis in Unconstrained Environments.,2013,8,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs8.html#NayakZR13,https://doi.org/10.1109/TIFS.2013.2277669 +Meng-Hsi Chen,On Cooperative and Malicious Behaviors in Multirelay Fading Channels.,2013,8,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs8.html#ChenLHZ13,https://doi.org/10.1109/TIFS.2013.2262941 +Weiguo Sheng,Template-Free Biometric-Key Generation by Means of Fuzzy Genetic Clustering.,2008,3,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs3.html#ShengHFD08,https://doi.org/10.1109/TIFS.2008.922056 +Sotirios Karachontzitis,Security-Aware Max-Min Resource Allocation in Multiuser OFDMA Downlink.,2015,10,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs10.html#KarachontzitisTKB15,https://doi.org/10.1109/TIFS.2014.2384392 +Pin-Hsun Lin,On the Fast Fading Gaussian Wiretap Channel With Statistical Channel State Information at the Transmitter.,2016,11,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs11.html#LinJ16,https://doi.org/10.1109/TIFS.2015.2476464 +Rafael F. Wyrembelski,Strong Secrecy in Bidirectional Broadcast Channels With Confidential Messages.,2013,8,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs8.html#WyrembelskiWB13,https://doi.org/10.1109/TIFS.2012.2233473 +Yuhong Nan,Identifying User-Input Privacy in Mobile Applications at a Large Scale.,2017,12,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs12.html#NanYYZZGWS17,https://doi.org/10.1109/TIFS.2016.2631949 +Jiwen Lu,Gait-Based Human Age Estimation.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#LuT10a,https://doi.org/10.1109/TIFS.2010.2069560 +Jinyu Zuo,Adaptive Quality-Based Performance Prediction and Boosting for Iris Authentication: Methodology and Its Illustration.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#ZuoS13,https://doi.org/10.1109/TIFS.2013.2259157 +Negar Kiyavash,Performance of orthogonal fingerprinting codes under worst-case noise.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#KiyavashM09,https://doi.org/10.1109/TIFS.2009.2026462 +Emile J. C. Kelkboom,Maximum Key Size and Classification Performance of Fuzzy Commitment for Gaussian Modeled Biometric Sources.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#KelkboomBBV12,https://doi.org/10.1109/TIFS.2012.2191961 +Ashref Lawgaly,Sensor Pattern Noise Estimation Based on Improved Locally Adaptive DCT Filtering and Weighted Averaging for Source Camera Identification and Verification.,2017,12,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs12.html#LawgalyK17,https://doi.org/10.1109/TIFS.2016.2620280 +Ajaya Neupane,Neural Markers of Cybersecurity: An fMRI Study of Phishing and Malware Warnings.,2016,11,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs11.html#NeupaneSMK16,https://doi.org/10.1109/TIFS.2016.2566265 +Jiwen Lu,Reconstruction-Based Metric Learning for Unconstrained Face Verification.,2015,10,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs10.html#LuWDJ15,https://doi.org/10.1109/TIFS.2014.2363792 +Shan Gu,Efficient Rectification of Distorted Fingerprints.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#GuFLZ18,https://doi.org/10.1109/TIFS.2017.2745685 +Karen Hollingsworth,Iris recognition using signal-level fusion of frames from video.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#HollingsworthPBF09,https://doi.org/10.1109/TIFS.2009.2033759 +Masahiro Kaminaga,Double Counting in 2t-ary RSA Precomputation Reveals the Secret Exponent.,2015,10,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs10.html#KaminagaYS15,https://doi.org/10.1109/TIFS.2015.2411213 +Manhua Liu,Latent Fingerprint Enhancement via Multi-Scale Patch Based Sparse Representation.,2015,10,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs10.html#LiuCW15,https://doi.org/10.1109/TIFS.2014.2360582 +Bin Dai 0003,Multiple-Access Relay Wiretap Channel.,2015,10,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs10.html#DaiM15,https://doi.org/10.1109/TIFS.2015.2431992 +C.-C. Jay Kuo,Editorial.,2014,9,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs9.html#Kuo14,https://doi.org/10.1109/TIFS.2014.2300292 +SaiDhiraj Amuru,Optimal Jamming Against Digital Modulation.,2015,10,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs10.html#AmuruB15,https://doi.org/10.1109/TIFS.2015.2451081 +Maxim Chernyshev,Revisiting Urban War Nibbling: Mobile Passive Discovery of Classic Bluetooth Devices Using Ubertooth One.,2017,12,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs12.html#ChernyshevVJ17,https://doi.org/10.1109/TIFS.2017.2678463 +Hyoungsuk Jeon,Channel Aware Encryption and Decision Fusion for Wireless Sensor Networks.,2013,8,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs8.html#Jeon0MH13,https://doi.org/10.1109/TIFS.2013.2243145 +Kevin J. Henry,The effectiveness of receipt-based attacks on ThreeBallot.,2009,4,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs4.html#HenrySS09,https://doi.org/10.1109/TIFS.2009.2031914 +Bin Yan,Security of autoregressive speech watermarking model under guessing attack.,2006,1,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs1.html#YanLS06,https://doi.org/10.1109/TIFS.2006.879285 +Stefan Katzenbeisser 0001,A Buyer-Seller Watermarking Protocol Based on Secure Embedding.,2008,3,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs3.html#KatzenbeisserLCVM08,https://doi.org/10.1109/TIFS.2008.2002939 +Abhishek Nagar,Evidential Value of Automated Latent Fingerprint Comparison: An Empirical Approach.,2012,7,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs7.html#NagarCJ12,https://doi.org/10.1109/TIFS.2012.2210216 +Michel Abdalla,Generalized Key Delegation for Wildcarded Identity-Based and Inner-Product Encryption.,2012,7,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs7.html#AbdallaCP12,https://doi.org/10.1109/TIFS.2012.2213594 +Debiao He,An Efficient Identity-Based Conditional Privacy-Preserving Authentication Scheme for Vehicular Ad Hoc Networks.,2015,10,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs10.html#HeZXH15,https://doi.org/10.1109/TIFS.2015.2473820 +Pauline Puteaux,An Efficient MSB Prediction-Based Method for High-Capacity Reversible Data Hiding in Encrypted Images.,2018,13,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs13.html#PuteauxP18,https://doi.org/10.1109/TIFS.2018.2799381 +Zhenxin Zhan,Predicting Cyber Attack Rates With Extreme Values.,2015,10,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs10.html#ZhanXX15,https://doi.org/10.1109/TIFS.2015.2422261 +Jiwen Lu,Joint Feature Learning for Face Recognition.,2015,10,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs10.html#LuLWM15,https://doi.org/10.1109/TIFS.2015.2408431 +Hany Farid,Exposing digital forgeries from JPEG ghosts.,2009,4,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs4.html#Farid09,https://doi.org/10.1109/TIFS.2008.2012215 +Kaiping Xue,RAAC: Robust and Auditable Access Control With Multiple Attribute Authorities for Public Cloud Storage.,2017,12,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs12.html#XueXHLYWH17,https://doi.org/10.1109/TIFS.2016.2647222 +Tarang Chugh,Fingerprint Spoof Buster: Use of Minutiae-Centered Patches.,2018,13,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs13.html#ChughCJ18,https://doi.org/10.1109/TIFS.2018.2812193 +Thomas Plantard,Fully Homomorphic Encryption Using Hidden Ideal Lattice.,2013,8,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs8.html#PlantardSZ13,https://doi.org/10.1109/TIFS.2013.2287732 +Meng Yang,Monogenic Binary Coding: An Efficient Local Feature Extraction Approach to Face Recognition.,2012,7,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs7.html#YangZSZ12,https://doi.org/10.1109/TIFS.2012.2217332 +Wonsuk Choi,VoltageIDS: Low-Level Communication Characteristics for Automotive Intrusion Detection System.,2018,13,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs13.html#ChoiJJP018,https://doi.org/10.1109/TIFS.2018.2812149 +Tarang Chugh,Latent Fingerprint Value Prediction: Crowd-Based Learning.,2018,13,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs13.html#ChughCZTJ18,https://doi.org/10.1109/TIFS.2017.2721099 +Neetesh Saxena,Authentication Scheme for Flexible Charging and Discharging of Mobile Vehicles in the V2G Networks.,2016,11,IEEE Trans. Information Forensics and Security,7,db/journals/tifs/tifs11.html#SaxenaC16,https://doi.org/10.1109/TIFS.2016.2532840 +Yuan Zhang,Rethinking Permission Enforcement Mechanism on Mobile Systems.,2016,11,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs11.html#ZhangYG016,https://doi.org/10.1109/TIFS.2016.2581304 +Xiaokui Shu,Privacy-Preserving Detection of Sensitive Data Exposure.,2015,10,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs10.html#ShuYB15,https://doi.org/10.1109/TIFS.2015.2398363 +Shang Li,Cooperative Change Detection for Voltage Quality Monitoring in Smart Grids.,2016,11,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs11.html#LiW16,https://doi.org/10.1109/TIFS.2015.2477796 +Mehran Kafai,Reference Face Graph for Face Recognition.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#KafaiAB14,https://doi.org/10.1109/TIFS.2014.2359548 +Norman Poh,An Evaluation of Video-to-Video Face Verification.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#PohCKMMAAVPSPSFC10,https://doi.org/10.1109/TIFS.2010.2077627 +Xunyu Pan,Region Duplication Detection Using Image Feature Matching.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#PanL10,https://doi.org/10.1109/TIFS.2010.2078506 +Francesco Renna,Physical-Layer Secrecy for OFDM Transmissions Over Fading Channels.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#RennaLP12,https://doi.org/10.1109/TIFS.2012.2195491 +Xudong Lv,Perceptual Image Hashing Based on Shape Contexts and Local Feature Points.,2012,7,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs7.html#LvW12,https://doi.org/10.1109/TIFS.2012.2190594 +Amir Akhavan,Detection of Concealed Information Using Multichannel Discriminative Dictionary and Spatial Filter Learning.,2018,13,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs13.html#AkhavanM18,https://doi.org/10.1109/TIFS.2018.2825940 +Chi-Man Pun,Image Alignment-Based Multi-Region Matching for Object-Level Tampering Detection.,2017,12,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs12.html#PunYY17,https://doi.org/10.1109/TIFS.2016.2615272 +Zhiyong Shan,Growing Grapes in Your Computer to Defend Against Malware.,2014,9,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs9.html#Shan014,https://doi.org/10.1109/TIFS.2013.2291066 +Lei Tang,Information Divergence-Based Matching Strategy for Online Signature Verification.,2018,13,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs13.html#TangKF18,https://doi.org/10.1109/TIFS.2017.2769023 +Wen Zhou,Human Action Recognition With Multiple-Instance Markov Model.,2014,9,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs9.html#ZhouZ14,https://doi.org/10.1109/TIFS.2014.2344448 +Long Cheng,Opportunistic Piggyback Marking for IP Traceback.,2016,11,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs11.html#ChengDLT16,https://doi.org/10.1109/TIFS.2015.2491299 +Tomás Pevný,Multiclass Detector of Current Steganographic Methods for JPEG Format.,2008,3,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs3.html#PevnyF08a,https://doi.org/10.1109/TIFS.2008.2002936 +Hua Shen,Efficient Privacy-Preserving Cube-Data Aggregation Scheme for Smart Grids.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#ShenZS17,https://doi.org/10.1109/TIFS.2017.2656475 +D. Wang,Towards Shift Tolerant Visual Secret Sharing Schemes.,2011,6,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs6.html#WangDL11,https://doi.org/10.1109/TIFS.2011.2117419 +Sadhana Jha,Specification and Verification of Separation of Duty Constraints in Attribute-Based Access Control.,2018,13,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs13.html#JhaSAV18,https://doi.org/10.1109/TIFS.2017.2771492 +Jiliang Zhang 0002,"Rebuttal to ""Comments on 'A PUF-FSM Binding Scheme for FPGA IP Protection and Pay-Per-Device Licensing""'.",2016,11,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs11.html#ZhangQ16,https://doi.org/10.1109/TIFS.2016.2553443 +Mayank Vatsa,On the dynamic selection of biometric fusion algorithms.,2010,5,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs5.html#VatsaSNR10,https://doi.org/10.1109/TIFS.2010.2056683 +Brent MacRae,An Exploration of Geographic Authentication Schemes.,2016,11,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs11.html#MacRaeST16,https://doi.org/10.1109/TIFS.2016.2570681 +Wuqiong Pan,An Efficient Elliptic Curve Cryptography Signature Server With GPU Acceleration.,2017,12,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs12.html#PanZZZJ17,https://doi.org/10.1109/TIFS.2016.2603974 +Zhangjie Fu,Privacy-Preserving Smart Semantic Search Based on Conceptual Graphs Over Encrypted Outsourced Data.,2017,12,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs12.html#FuHRWW17,https://doi.org/10.1109/TIFS.2017.2692728 +Lin Ding 0001,Cryptanalysis of Lightweight WG-8 Stream Cipher.,2014,9,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs9.html#DingJGW14,https://doi.org/10.1109/TIFS.2014.2307202 +Ivana Chingovska,Biometrics Evaluation Under Spoofing Attacks.,2014,9,IEEE Trans. Information Forensics and Security,12,db/journals/tifs/tifs9.html#ChingovskaAM14,https://doi.org/10.1109/TIFS.2014.2349158 +Gokhan Gul,SVD-based universal spatial domain image steganalysis.,2010,5,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs5.html#GulK10,https://doi.org/10.1109/TIFS.2010.2041826 +Alberto López Toledo,Robust Detection of MAC Layer Denial-of-Service Attacks in CSMA/CA Wireless Networks.,2008,3,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs3.html#ToledoW08,https://doi.org/10.1109/TIFS.2008.926098 +Donald R. Reising,Authorized and Rogue Device Discrimination Using Dimensionally Reduced RF-DNA Fingerprints.,2015,10,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs10.html#ReisingTJ15,https://doi.org/10.1109/TIFS.2015.2400426 +Filipe de O. Costa,Image Phylogeny Forests Reconstruction.,2014,9,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs9.html#CostaODGR14,https://doi.org/10.1109/TIFS.2014.2340017 +Ran Tao,Image Encryption With Multiorders of Fractional Fourier Transforms.,2010,5,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs5.html#TaoMW10,https://doi.org/10.1109/TIFS.2010.2068289 +Bin B. Zhu,Captcha as Graphical Passwords - A New Security Primitive Based on Hard AI Problems.,2014,9,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs9.html#ZhuYBYX14,https://doi.org/10.1109/TIFS.2014.2312547 +Hassan Zivari-Fard,Imperfect and Perfect Secrecy in Compound Multiple Access Channel With Confidential Message.,2016,11,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs11.html#Zivari-FardAAA16,https://doi.org/10.1109/TIFS.2016.2523813 +Fernando Pérez-González,A Least Squares Approach to the Static Traffic Analysis of High-Latency Anonymous Communication Systems.,2014,9,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs9.html#Perez-GonzalezTO14,https://doi.org/10.1109/TIFS.2014.2330696 +Rui Zhang 0002,Further Improving Efficiency of Higher Order Masking Schemes by Decreasing Randomness Complexity.,2017,12,IEEE Trans. Information Forensics and Security,11,db/journals/tifs/tifs12.html#ZhangQZ17,https://doi.org/10.1109/TIFS.2017.2713323 +Pu Zhao,Robust Beamforming Design for Sum Secrecy Rate Optimization in MU-MISO Networks.,2015,10,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs10.html#ZhaoZYL015,https://doi.org/10.1109/TIFS.2015.2423263 +Shenghua Gao,Single Sample Face Recognition via Learning Deep Supervised Autoencoders.,2015,10,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs10.html#GaoZJLZ15,https://doi.org/10.1109/TIFS.2015.2446438 +Jeeson Kim,A Physical Unclonable Function With Redox-Based Nanoionic Resistive Memory.,2018,13,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs13.html#KimANYJBSRK18,https://doi.org/10.1109/TIFS.2017.2756562 +Lifeng Lai,A Unified Framework for Key Agreement Over Wireless Fading Channels.,2012,7,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs7.html#LaiLP12,https://doi.org/10.1109/TIFS.2011.2180527 +Yunlong Mao,Towards Privacy-Preserving Aggregation for Collaborative Spectrum Sensing.,2017,12,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs12.html#MaoCZWZ17,https://doi.org/10.1109/TIFS.2017.2668219 +Ciza Thomas,Improvement in intrusion detection with advances in sensor fusion.,2009,4,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs4.html#ThomasB09,https://doi.org/10.1109/TIFS.2009.2026954 +Zhe Yao,Anomaly Detection Using Proximity Graph and PageRank Algorithm.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#YaoMR12,https://doi.org/10.1109/TIFS.2012.2191963 +John Daugman,Effect of Severe Image Compression on Iris Recognition Performance.,2008,3,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs3.html#DaugmanD08,https://doi.org/10.1109/TIFS.2007.916009 +Bin Li 0011,Investigation on Cost Assignment in Spatial Image Steganography.,2014,9,IEEE Trans. Information Forensics and Security,8,db/journals/tifs/tifs9.html#LiTWH14,https://doi.org/10.1109/TIFS.2014.2326954 +François Cayre,Kerckhoffs-Based Embedding Security Classes for WOA Data Hiding.,2008,3,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs3.html#CayreB08,https://doi.org/10.1109/TIFS.2007.916006 +Ke Cui,A Real-Time Design Based on FPGA for Expeditious Error Reconciliation in QKD System.,2013,8,IEEE Trans. Information Forensics and Security,1,db/journals/tifs/tifs8.html#CuiWZLJC13,https://doi.org/10.1109/TIFS.2012.2228855 +Vaishakh Ravindrakumar,Private Coded Caching.,2018,13,IEEE Trans. Information Forensics and Security,3,db/journals/tifs/tifs13.html#RavindrakumarPK18,https://doi.org/10.1109/TIFS.2017.2765503 +Lang Lin,Design and Validation of Arbiter-Based PUFs for Sub-45-nm Low-Power Security Applications.,2012,7,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs7.html#LinSKSB12,https://doi.org/10.1109/TIFS.2012.2195174 +David Sánchez 0001,Automatic General-Purpose Sanitization of Textual Documents.,2013,8,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs8.html#SanchezBV13,https://doi.org/10.1109/TIFS.2013.2239641 +Xiangyang Wang,A New Digital Image Watermarking Algorithm Resilient to Desynchronization Attacks.,2007,2,IEEE Trans. Information Forensics and Security,4,db/journals/tifs/tifs2.html#WangWN07,https://doi.org/10.1109/TIFS.2007.908233 +Kenneth Sullivan,Steganalysis for Markov cover data with applications to images.,2006,1,IEEE Trans. Information Forensics and Security,2,db/journals/tifs/tifs1.html#SullivanMCM06,https://doi.org/10.1109/TIFS.2006.873595 +Jing Chen 0003,Uncovering the Face of Android Ransomware: Characterization and Real-Time Detection.,2018,13,IEEE Trans. Information Forensics and Security,5,db/journals/tifs/tifs13.html#ChenWZCDA18,https://doi.org/10.1109/TIFS.2017.2787905 +Rafael F. Schaefer,Robust Broadcasting of Common and Confidential Messages Over Compound Channels: Strong Secrecy and Decoding Performance.,2014,9,IEEE Trans. Information Forensics and Security,10,db/journals/tifs/tifs9.html#SchaeferB14,https://doi.org/10.1109/TIFS.2014.2348193 +Babak Mahdian,Blind Verification of Digital Image Originality: A Statistical Approach.,2013,8,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs8.html#MahdianNS13,https://doi.org/10.1109/TIFS.2013.2276000 +Pramuditha Perera,Efficient and Low Latency Detection of Intruders in Mobile Active Authentication.,2018,13,IEEE Trans. Information Forensics and Security,6,db/journals/tifs/tifs13.html#PereraP18,https://doi.org/10.1109/TIFS.2017.2787995 +Xiaolong Li,Efficient Reversible Data Hiding Based on Multiple Histograms Modification.,2015,10,IEEE Trans. Information Forensics and Security,9,db/journals/tifs/tifs10.html#LiZGY15,https://doi.org/10.1109/TIFS.2015.2444354 +Athanasios Tsitsoulis,Modeling of Multi-Image/Video Flow on a Multiprocessor Surveillance System.,2013,1,IJMSTR,1,db/journals/ijmstr/ijmstr1.html#TsitsoulisB13,https://doi.org/10.4018/ijmstr.2013010101 +Ryan Patrick,A Survey and Surveillance Issues in Smart Homes Environment for Assistive Living.,2015,3,IJMSTR,1,db/journals/ijmstr/ijmstr3.html#PatrickB15,https://doi.org/10.4018/IJMSTR.2015010101 +Pola Lydia Lagari,Application of Artificial Neural Networks to Reliable Nuclear Data for Nonproliferation Modeling and Simulation.,2016,4,IJMSTR,4,db/journals/ijmstr/ijmstr4.html#LagariSAT16,https://doi.org/10.4018/IJMSTR.2016100104 +Hussin K. Ragb,Local Phase Features in Chromatic Domain for Human Detection.,2016,4,IJMSTR,3,db/journals/ijmstr/ijmstr4.html#RagbA16,https://doi.org/10.4018/IJMSTR.2016070104 +George Kalliris,Emotional Aspects and Quality of Experience for Multifactor Evaluation of Audiovisual Content.,2014,2,IJMSTR,4,db/journals/ijmstr/ijmstr2.html#KallirisMDV14,https://doi.org/10.4018/IJMSTR.2014100103 +Irina-Emilia Nicolae,An Improved Stimuli System for Brain-Computer Interface Applications.,2013,1,IJMSTR,4,db/journals/ijmstr/ijmstr1.html#Nicolae13,https://doi.org/10.4018/ijmstr.2013100101 +Raghudeep Kannavara,Design and Performance Evaluation of the SCAN Secure Processor.,2015,3,IJMSTR,2,db/journals/ijmstr/ijmstr3.html#KannavaraB15,https://doi.org/10.4018/IJMSTR.2015040105 +Nikolaos G. Bourbakis,Detecting Facial Expressions for Monitoring Patterns of Emotional Behavior.,2013,1,IJMSTR,2,db/journals/ijmstr/ijmstr1.html#Bourbakis13,https://doi.org/10.4018/ijmstr.2013040101 +Amol Dattatraya Mali,On Automated Generation of Keyboard Layout to Reduce Finger-Travel Distance.,2017,5,IJMSTR,2,db/journals/ijmstr/ijmstr5.html#MaliY17,https://doi.org/10.4018/IJMSTR.2017040103 +Gowtham Muniraju,A Cyber-Physical Photovoltaic Array Monitoring and Control System.,2017,5,IJMSTR,3,db/journals/ijmstr/ijmstr5.html#MunirajuRKSTTBS17,https://doi.org/10.4018/IJMSTR.2017070103 +Marius Rosu,WBAN Based Long Term ECG Monitoring.,2013,1,IJMSTR,3,db/journals/ijmstr/ijmstr1.html#RosuP13,https://doi.org/10.4018/ijmstr.2013070102 +Sreehari Gopalakrishnan,Curve Fitting Methods: A Survey.,2016,4,IJMSTR,4,db/journals/ijmstr/ijmstr4.html#GopalakrishnanB16,https://doi.org/10.4018/IJMSTR.2016100103 +Almabrok E. Essa,Efficient Key Frame Selection Approach for Object Detection in Wide Area Surveillance Applications.,2015,3,IJMSTR,2,db/journals/ijmstr/ijmstr3.html#EssaSA15,https://doi.org/10.4018/IJMSTR.2015040102 +Mihai Tarata,Comparison of SEMG Derived Parameters and Blood Oxygen Saturation in Monitoring Neuromuscular Fatigue in Humans.,2013,1,IJMSTR,4,db/journals/ijmstr/ijmstr1.html#TarataWGAS13,https://doi.org/10.4018/ijmstr.2013100102 +Baudouin Dafflon,Using Physics Inspired Wave Agents in a Virtual Environment: Longitudinal Distance Control in Robots Platoon.,2017,5,IJMSTR,2,db/journals/ijmstr/ijmstr5.html#DafflonGG17,https://doi.org/10.4018/IJMSTR.2017040102 +Md. Zahangir Alom,Intrusion Detection Using Deep Belief Network and Extreme Learning Machine.,2015,3,IJMSTR,2,db/journals/ijmstr/ijmstr3.html#AlomBT15,https://doi.org/10.4018/IJMSTR.2015040103 +Lucas G. Nachtigall,Use of Images of Leaves and Fruits of Apple Trees for Automatic Identification of Symptoms of Diseases and Nutritional Disorders.,2017,5,IJMSTR,2,db/journals/ijmstr/ijmstr5.html#NachtigallAN17,https://doi.org/10.4018/IJMSTR.2017040101 +Almabrok E. Essa,Histogram of Oriented Directional Features for Robust Face Recognition.,2016,4,IJMSTR,3,db/journals/ijmstr/ijmstr4.html#EssaA16,https://doi.org/10.4018/IJMSTR.2016070103 +Robert Keefer,From Image to XML: Monitoring a Page Layout Analysis Approach for the Visually Impaired.,2014,2,IJMSTR,1,db/journals/ijmstr/ijmstr2.html#KeeferB14,https://doi.org/10.4018/ijmstr.2014010102 +Amol Dattatraya Mali,Recent Advances in Minimally-Obtrusive Monitoring of People's Health.,2017,5,IJMSTR,2,db/journals/ijmstr/ijmstr5.html#Mali17,https://doi.org/10.4018/IJMSTR.2017040104 +Amavey Tamunobarafiri,Data Security and Privacy Assurance Considerations in Cloud Computing for Health Insurance Providers.,2017,5,IJMSTR,4,db/journals/ijmstr/ijmstr5.html#TamunobarafiriA17,https://doi.org/10.4018/IJMSTR.2017100101 +Pola Lydia Lagari,Evaluation of Human Machine Interface (HMI) on a Digital and Analog Control Room in Nuclear Power Plants Using a Fuzzy Logic Approach.,2016,4,IJMSTR,2,db/journals/ijmstr/ijmstr4.html#LagariNA16,https://doi.org/10.4018/IJMSTR.2016040104 +Pierre Vieyres,An Anticipative Control Approach and Interactive GUI to Enhance the Rendering of the Distal Robot Interaction with its Environment during Robotized Tele-Echography: Interactive Platform for Robotized Tele-Echography.,2013,1,IJMSTR,3,db/journals/ijmstr/ijmstr1.html#VieyresSJNCMFAVK13,https://doi.org/10.4018/ijmstr.2013070101 +Juan Manuel Fernandez Montenegro,Virtual Environments and Cognitive Tests for Dementia Diagnosis.,2016,4,IJMSTR,1,db/journals/ijmstr/ijmstr4.html#MontenegroA16,https://doi.org/10.4018/IJMSTR.2016010102 +D. Michael Franklin,SiMAMT: A Framework for Strategy-Based Multi-Agent Multi-Team Systems.,2017,5,IJMSTR,1,db/journals/ijmstr/ijmstr5.html#FranklinH17,https://doi.org/10.4018/IJMSTR.2017010101 +Zenonas Theodosiou,Attention-Based Health Monitoring.,2013,1,IJMSTR,3,db/journals/ijmstr/ijmstr1.html#TheodosiouT13,https://doi.org/10.4018/ijmstr.2013070105 +Aphrodite Ktena,Estimation of the Energy Potential of the Euripus' Gulf Tidal Stream Using Channel Sea-surface Slope.,2015,3,IJMSTR,4,db/journals/ijmstr/ijmstr3.html#KtenaMBKSK15,https://doi.org/10.4018/IJMSTR.2015100102 +Jie Wei,Vehicle Engine Classification Using Spectral Tone-Pitch Vibration Indexing and Neural Network.,2014,2,IJMSTR,3,db/journals/ijmstr/ijmstr2.html#WeiVML14,https://doi.org/10.4018/IJMSTR.2014070102 +Erik Philip Blasch,QuEST for Information Fusion in Multimedia Reports.,2014,2,IJMSTR,3,db/journals/ijmstr/ijmstr2.html#BlaschRHTJH14,https://doi.org/10.4018/IJMSTR.2014070101 +Rafik Fainti,Backpropagation Neural Network for Interval Prediction of Three-Phase Ampacity Level in Power Systems.,2016,4,IJMSTR,3,db/journals/ijmstr/ijmstr4.html#FaintiAT16,https://doi.org/10.4018/IJMSTR.2016070101 +Miltiadis Alamaniotis,Fuzzy Integration of Support Vector Regression Models for Anticipatory Control of Complex Energy Systems.,2014,2,IJMSTR,2,db/journals/ijmstr/ijmstr2.html#AlamaniotisA14,https://doi.org/10.4018/ijmstr.2014040102 +Vasiliki Chrysikou,A Review of Incentive Based Demand Response Methods in Smart Electricity Grids.,2015,3,IJMSTR,4,db/journals/ijmstr/ijmstr3.html#ChrysikouAT15,https://doi.org/10.4018/IJMSTR.2015100104 +Julien Maitre,A Black-Box Model for Estimation of the Induction Machine Parameters Based on Stochastic Algorithms.,2015,3,IJMSTR,3,db/journals/ijmstr/ijmstr3.html#MaitreGBB15,https://doi.org/10.4018/IJMSTR.2015070103 +Swetha Reddy,Performance Evaluation of Geolocation Based Opportunistic Spectrum Access in Cloud-Assisted Cognitive Radio Networks.,2016,4,IJMSTR,1,db/journals/ijmstr/ijmstr4.html#ReddyCRS16,https://doi.org/10.4018/IJMSTR.2016010103 +Kostas Kolomvatsos,Contextual Reasoning under Uncertainty in Sensor Data Stream Monitoring.,2015,3,IJMSTR,2,db/journals/ijmstr/ijmstr3.html#KolomvatsosAH15,https://doi.org/10.4018/IJMSTR.2015040101 +Kaylyn McCoy,A Conceptual Model for Integrative Monitoring of Nuclear Power Plants Operational Activities Based on Historical Nuclear Incidents and Accidents.,2013,1,IJMSTR,1,db/journals/ijmstr/ijmstr1.html#McCoyAJ13,https://doi.org/10.4018/ijmstr.2013010105 +Dimitrios C. Tselios,Phased Method for Solving Multi-Objective MPM Job Shop Scheduling Problem.,2016,4,IJMSTR,1,db/journals/ijmstr/ijmstr4.html#TseliosSK16,https://doi.org/10.4018/IJMSTR.2016010104 +Rafik Fainti,Design and Early Simulations of Next Generation Intelligent Energy Systems.,2014,2,IJMSTR,2,db/journals/ijmstr/ijmstr2.html#FaintiNTV14,https://doi.org/10.4018/ijmstr.2014040104 +Jörg Piper,Modular Technical Concepts for Ambulatory Monitoring of Risk Patients Based on Multiple Parameters and an Automatic Alarm Function.,2016,4,IJMSTR,1,db/journals/ijmstr/ijmstr4.html#PiperM16,https://doi.org/10.4018/IJMSTR.2016010101 +Stylianos Chatzidakis,Creep Rupture Forecasting: A Machine Learning Approach to Useful Life Estimation.,2014,2,IJMSTR,2,db/journals/ijmstr/ijmstr2.html#ChatzidakisAT14,https://doi.org/10.4018/ijmstr.2014040101 +Miltiadis Alamaniotis,Integration of Gaussian Processes and Particle Swarm Optimization for Very-Short Term Wind Speed Forecasting in Smart Power.,2017,5,IJMSTR,3,db/journals/ijmstr/ijmstr5.html#AlamaniotisK17,https://doi.org/10.4018/IJMSTR.2017070101 +Stephen R. Sweetnich,Skin Detection with Small Unmanned Aerial Systems by Integration of Area Scan Multispectral Imagers and Factors Affecting their Design and Operation.,2014,2,IJMSTR,3,db/journals/ijmstr/ijmstr2.html#SweetnichJ14,https://doi.org/10.4018/IJMSTR.2014070104 +Miltiadis Alamaniotis,Neuro-SVM Anticipatory System for Online Monitoring of Radiation and Abrupt Change Detection.,2013,1,IJMSTR,2,db/journals/ijmstr/ijmstr1.html#AlamaniotisT13,https://doi.org/10.4018/ijmstr.2013040103 +Eleni S. Vergini,A Critical Overview of Net Zero Energy Buildings and Fuzzy Cognitive Maps.,2015,3,IJMSTR,3,db/journals/ijmstr/ijmstr3.html#VerginiG15,https://doi.org/10.4018/IJMSTR.2015070102 +Monica Sam,Improving In-Flight Learning in a Flapping Wing Micro Air Vehicle.,2016,4,IJMSTR,1,db/journals/ijmstr/ijmstr4.html#SamBDBG16,https://doi.org/10.4018/IJMSTR.2016010105 +Evangelia Pippa,EEG-based Classification of Epileptic and Non-Epileptic Events using Multi-Array Decomposition.,2016,4,IJMSTR,2,db/journals/ijmstr/ijmstr4.html#PippaKZTKM16,https://doi.org/10.4018/IJMSTR.2016040101 +Alexandros Bousdekis,Information Processing for Generating Recommendations Ahead of Time in an IoT-Based Environment.,2017,5,IJMSTR,4,db/journals/ijmstr/ijmstr5.html#BousdekisPMAM17,https://doi.org/10.4018/IJMSTR.2017100103 +Damian M. Lyons,Establishing A-Priori Performance Guarantees for Robot Missions that Include Localization Software.,2017,5,IJMSTR,1,db/journals/ijmstr/ijmstr5.html#LyonsAJOTT17,https://doi.org/10.4018/IJMSTR.2017010103 +Michail G. Kounelakis,Measurement Methodologies for Assessing the Glycolysis Effect in the Discrimination and Therapy of Brain Gliomas.,2013,1,IJMSTR,1,db/journals/ijmstr/ijmstr1.html#KounelakisBZGZNK13,https://doi.org/10.4018/ijmstr.2013010103 +Rafik Fainti,Hierarchical Method Based on Artificial Neural Networks for Power Output Prediction of a Combined Cycle Power Plant.,2016,4,IJMSTR,4,db/journals/ijmstr/ijmstr4.html#FaintiNAT16,https://doi.org/10.4018/IJMSTR.2016100102 +Kumar Yelamarthi,A Perceptual Computing based Gesture Controlled Quadcopter for Visual Tracking and Transportation.,2015,3,IJMSTR,2,db/journals/ijmstr/ijmstr3.html#YelamarthiKB15,https://doi.org/10.4018/IJMSTR.2015040104 +Christos P. Loizou,Despeckle Filtering Toolbox for Medical Ultrasound Video.,2013,1,IJMSTR,4,db/journals/ijmstr/ijmstr1.html#LoizouTPKCNP13,https://doi.org/10.4018/ijmstr.2013100106 +Federico Delfino,Planning and Management of Distributed Energy Resources and Loads in a Smart Microgrid.,2014,2,IJMSTR,2,db/journals/ijmstr/ijmstr2.html#DelfinoRBPMZ14,https://doi.org/10.4018/ijmstr.2014040103 +Abdollah Arasteh,Evaluation of Multi-Target Human Sperm Tracking Algorithms in Synthesized Dataset.,2016,4,IJMSTR,2,db/journals/ijmstr/ijmstr4.html#ArastehV16,https://doi.org/10.4018/IJMSTR.2016040102 +Chris Litsas,Profile-Based Text Classification for Children with Dyslexia.,2015,3,IJMSTR,1,db/journals/ijmstr/ijmstr3.html#LitsasMS15,https://doi.org/10.4018/ijmstr.2015010102 +George Vavoulas,The MobiFall Dataset: Fall Detection and Classification with a Smartphone.,2014,2,IJMSTR,1,db/journals/ijmstr/ijmstr2.html#VavoulasPCST14,https://doi.org/10.4018/ijmstr.2014010103 +Christine Largouët,Extended Automata for Temporal Planning of Interacting Agents.,2017,5,IJMSTR,1,db/journals/ijmstr/ijmstr5.html#LargouetKZ17,https://doi.org/10.4018/IJMSTR.2017010102 +Miltiadis Alamaniotis,Assessment of Fuzzy Logic Radioisotopic Pattern Identifier on Gamma-Ray Signals with Application to Security.,2014,2,IJMSTR,1,db/journals/ijmstr/ijmstr2.html#AlamaniotisYT14,https://doi.org/10.4018/ijmstr.2014010101 +Theodora Slini,Energy Consumption in Greek Households During the Economic Recession.,2014,2,IJMSTR,4,db/journals/ijmstr/ijmstr2.html#SliniGP14,https://doi.org/10.4018/IJMSTR.2014100102 +Efthyvoulos C. Kyriacou,An mHealth System for Monitoring of Children with Suspected Cardiac Arrhythmias.,2013,1,IJMSTR,2,db/journals/ijmstr/ijmstr1.html#KyriacouHCMMKJP13,https://doi.org/10.4018/ijmstr.2013040104 +Rigas Kotsakis,Emotional Prediction and Content Profile Estimation in Evaluating Audiovisual Mediated Communication.,2014,2,IJMSTR,4,db/journals/ijmstr/ijmstr2.html#KotsakisDKV14,https://doi.org/10.4018/IJMSTR.2014100104 +Osita Eziolisa,Investigation of Human Monitoring Capabilities for Multiple Watch Windows.,2016,4,IJMSTR,3,db/journals/ijmstr/ijmstr4.html#EziolisaEF16,https://doi.org/10.4018/IJMSTR.2016070102 +Nicholas Skapura,Class Distribution Curve Based Discretization With Application to Wearable Sensors and Medical Monitoring.,2017,5,IJMSTR,4,db/journals/ijmstr/ijmstr5.html#SkapuraD17,https://doi.org/10.4018/IJMSTR.2017100102 +Cristina Marghescu,An Experimental Investigation of Pulse Measurement by Means of a Plethysmographic Sensor Integrated in a ZigBee Medical Network.,2013,1,IJMSTR,3,db/journals/ijmstr/ijmstr1.html#MarghescuPP13,https://doi.org/10.4018/ijmstr.2013070103 +Ming Yang,Optimization of Power Allocation in Multimedia Wireless Sensor Networks.,2013,1,IJMSTR,1,db/journals/ijmstr/ijmstr1.html#YangWB13,https://doi.org/10.4018/ijmstr.2013010104 +Roman Ilin,Learning with Privileged Information for Improved Target Classification.,2014,2,IJMSTR,3,db/journals/ijmstr/ijmstr2.html#IlinSI14,https://doi.org/10.4018/IJMSTR.2014070103 +Vassiliki Mpelogianni,Using Fuzzy Control Methods for Increasing the Energy Efficiency of Buildings.,2015,3,IJMSTR,4,db/journals/ijmstr/ijmstr3.html#MpelogianniG15,https://doi.org/10.4018/IJMSTR.2015100101 +Apostolos Demertzis,Braided Routing Technique to Balance Traffic Load in Wireless Sensor Networks.,2016,4,IJMSTR,4,db/journals/ijmstr/ijmstr4.html#DemertzisO16,https://doi.org/10.4018/IJMSTR.2016100101 +Luan Fonseca Garcia,A Conceptual Framework for Rock Data Integration in Reservoir Models Based on Ontologies.,2017,5,IJMSTR,1,db/journals/ijmstr/ijmstr5.html#GarciaGRA17,https://doi.org/10.4018/IJMSTR.2017010104 +Antti Vehkaoja,Combining the Information of Unconstrained Electrocardiography and Ballistography in the Detection of Night-Time Heart Rate and Respiration Rate.,2013,1,IJMSTR,3,db/journals/ijmstr/ijmstr1.html#VehkaojaPVL13,https://doi.org/10.4018/ijmstr.2013070104 +George Tzagkarakis,Uncertainty-Aware Sensor Data Management and Early Warning for Monitoring Industrial Infrastructures.,2014,2,IJMSTR,4,db/journals/ijmstr/ijmstr2.html#TzagkarakisSCT14,https://doi.org/10.4018/IJMSTR.2014100101 +Nicos Mylonas,A Prototype MR Compatible Positioning Device for Guiding a Focused Ultrasound System for the Treatment of Abdominal and Thyroid Cancer.,2013,1,IJMSTR,4,db/journals/ijmstr/ijmstr1.html#MylonasD13,https://doi.org/10.4018/ijmstr.2013100105 +Magda Foti,Intelligent Bidding in Smart Electricity Markets.,2015,3,IJMSTR,3,db/journals/ijmstr/ijmstr3.html#FotiV15,https://doi.org/10.4018/IJMSTR.2015070104 +Alexandru Morega,An Adaptive Magnetic Field Source for Magnetic Drug Fixation.,2013,1,IJMSTR,4,db/journals/ijmstr/ijmstr1.html#MoregaSM13,https://doi.org/10.4018/ijmstr.2013100103 +Rüdiger W. Brause,An Alarm System for Death Prediction.,2013,1,IJMSTR,2,db/journals/ijmstr/ijmstr1.html#BrauseH13,https://doi.org/10.4018/ijmstr.2013040102 +Theodoros Koutsandreas,Analyzing and Visualizing Genomic Complexity for the Derivation of the Emergent Molecular Networks.,2016,4,IJMSTR,2,db/journals/ijmstr/ijmstr4.html#KoutsandreasBPV16,https://doi.org/10.4018/IJMSTR.2016040103 +Lidia Dobrescu,Radiation Safety of the Patients Investigated by Radiological Imaging Methods.,2013,1,IJMSTR,4,db/journals/ijmstr/ijmstr1.html#DobrescuSR13,https://doi.org/10.4018/ijmstr.2013100104 +Olga Mendoza-Schrock,Manifold Transfer Subspace Learning (MTSL) for Applications in Aided Target Recognition.,2017,5,IJMSTR,3,db/journals/ijmstr/ijmstr5.html#Mendoza-Schrock17,https://doi.org/10.4018/IJMSTR.2017070102 +Maria Hadjinicolaou,Studying the Blood Plasma Flow past a Red Blood Cell with the Mathematical Method of Kelvin's Transformation.,2014,2,IJMSTR,1,db/journals/ijmstr/ijmstr2.html#HadjinicolaouP14,https://doi.org/10.4018/ijmstr.2014010104 +Athanasios Fevgas,A Study of Sparse Matrix Methods on New Hardware: Advances and Challenges.,2015,3,IJMSTR,3,db/journals/ijmstr/ijmstr3.html#FevgasDTB15,https://doi.org/10.4018/IJMSTR.2015070101 +Irina Petrova 0002,Modeling of the Physical Principle of the Processes that is Occurring in Bioselective Elements.,2015,3,IJMSTR,4,db/journals/ijmstr/ijmstr3.html#PetrovaZLS15,https://doi.org/10.4018/IJMSTR.2015100103 +Anna Trikalinou,An Enhanced Dynamic Information Flow Tracking Method with Reverse Stack Execution.,2015,3,IJMSTR,1,db/journals/ijmstr/ijmstr3.html#TrikalinouB15,https://doi.org/10.4018/IJMSTR.2015010103 +Miguel ângelo Abrantes Costa,Uma Comparação Sistemática de Diferentes Abordagens para a Sumarização Automática Extrativa de Textos em Português.,2015,7,Linguamática,1,db/journals/linguamatica/linguamatica7.html#CostaM15,http://www.linguamatica.com/index.php/linguamatica/article/view/V7N1-2 +Jânio Freire,FlexSTS: Um Framework para Similaridade Semântica Textual.,2016,8,Linguamática,2,db/journals/linguamatica/linguamatica8.html#FreirePF16,http://www.linguamatica.com/index.php/linguamatica/article/view/v8n2-3 +Miguel Anxo Solla Portela,Verificación ortográfica de formas verbais e secuencias de pronomes enclíticos en lingua galega.,2009,1,Linguamática,1,db/journals/linguamatica/linguamatica1.html#Portela09,http://www.linguamatica.com/index.php/linguamatica/article/view/13 +Vládia Pinheiro,Um Analisador Semântico Inferencialista de Sentenças em Linguagem Natural.,2010,2,Linguamática,1,db/journals/linguamatica/linguamatica2.html#PinheiroPF10,http://www.linguamatica.com/index.php/linguamatica/article/view/49 +,Editorial.,2014,6,Linguamática,2,db/journals/linguamatica/linguamatica6.html#X14a,http://www.linguamatica.com/index.php/linguamatica/article/view/v6n2-0 +Mikel L. Forcada,Apertium: traducció automàtica de codi obert per a les llengües romàniques.,2009,1,Linguamática,1,db/journals/linguamatica/linguamatica1.html#Forcada09,http://www.linguamatica.com/index.php/linguamatica/article/view/18 +,Editorial.,2017,9,Linguamática,1,db/journals/linguamatica/linguamatica9.html#X17,http://www.linguamatica.com/index.php/linguamatica/article/view/v9n1p0 +Pablo Gamallo 0001,LinguaKit: uma ferramenta multilingue para a análise linguística e a extração de informação.,2017,9,Linguamática,1,db/journals/linguamatica/linguamatica9.html#GamalloG17,http://www.linguamatica.com/index.php/linguamatica/article/view/v9n1p2 +Deni Yuzo Kasama,Do termo à estruturação semântica: representação ontológica do domínio da Nanociência e Nanotecnologia utilizando a Estrutura Quali.,2010,2,Linguamática,3,db/journals/linguamatica/linguamatica2.html#KasamaZA10,http://www.linguamatica.com/index.php/linguamatica/article/view/73 +Juan Aparicio,Hacia un tratamiento computacional del Aktionsart.,2013,5,Linguamática,2,db/journals/linguamatica/linguamatica5.html#AparicioCC13,http://www.linguamatica.com/index.php/linguamatica/article/view/162 +Vera Vasilévski,Tratamento dos sufixos modo-temporais na depreensão automática da morfologia dos verbos do português.,2011,3,Linguamática,2,db/journals/linguamatica/linguamatica3.html#Vasilevski11,http://www.linguamatica.com/index.php/linguamatica/article/view/113 +Evandro Brasil da Fonseca,CORP: Uma Abordagem Baseada em Regras e Conhecimento Semântico para a Resolução de Correferências.,2017,9,Linguamática,1,db/journals/linguamatica/linguamatica9.html#FonsecaSAVV17,http://www.linguamatica.com/index.php/linguamatica/article/view/v9n1p1 +,Editorial.,2012,4,Linguamática,2,db/journals/linguamatica/linguamatica4.html#X12a,http://www.linguamatica.com/index.php/linguamatica/article/view/151 +Diana Santos,PoNTE: apontando para corpos de aprendizes de tradução avançados.,2014,6,Linguamática,1,db/journals/linguamatica/linguamatica6.html#Santos14,http://www.linguamatica.com/index.php/linguamatica/article/view/v6n1-05 +João Miranda,Desafios na recolha de informação baseada na Wikipédia portuguesa com o Págico.,2012,4,Linguamática,1,db/journals/linguamatica/linguamatica4.html#Miranda12,http://www.linguamatica.com/index.php/linguamatica/article/view/126 +Indira Gandi Mascarenhas de Brito,Realização de Previsões com Conteúdos Textuais em Português.,2014,6,Linguamática,1,db/journals/linguamatica/linguamatica6.html#BritoM14,http://www.linguamatica.com/index.php/linguamatica/article/view/v6n1-04 +Daniela Oliveira Ferreira do Amaral,NERP-CRF: uma ferramenta para o reconhecimento de entidades nomeadas por meio de Conditional Random Fields.,2014,6,Linguamática,1,db/journals/linguamatica/linguamatica6.html#AmaralV14,http://www.linguamatica.com/index.php/linguamatica/article/view/v6n1-03 +Patricia Sotelo Dios,Corpus multimedia VEIGA inglés-galego de subtitulación cinematográfica.,2011,3,Linguamática,2,db/journals/linguamatica/linguamatica3.html#Dios11,http://www.linguamatica.com/index.php/linguamatica/article/view/110 +Antoni Oliver González,inLéctor: creación de libros electrónicos bilingües interactivos.,2012,4,Linguamática,2,db/journals/linguamatica/linguamatica4.html#GonzalezC12,http://www.linguamatica.com/index.php/linguamatica/article/view/135 +Olga Lidia Acosta López,Reconocimiento de términos en español mediante la aplicación de un enfoque de comparación entre corpus.,2015,7,Linguamática,2,db/journals/linguamatica/linguamatica7.html#LopezAI15,http://www.linguamatica.com/index.php/linguamatica/article/view/V7N2.2 +Iker Zulaica-Hernandez,Hacia una semántica computacional de las anáforas demostrativas.,2009,1,Linguamática,2,db/journals/linguamatica/linguamatica1.html#Zulaica-Hernandez09,http://www.linguamatica.com/index.php/linguamatica/article/view/24 +Leonardo Zilio,Desenvolvimento de um recurso léxico com papéis semânticos para o português.,2013,5,Linguamática,2,db/journals/linguamatica/linguamatica5.html#ZilioRF13,http://www.linguamatica.com/index.php/linguamatica/article/view/167 +,Editorial.,2011,3,Linguamática,1,db/journals/linguamatica/linguamatica3.html#X11,http://www.linguamatica.com/index.php/linguamatica/article/view/93 +Carolina Evaristo Scarton,Análise da Inteligibilidade de textos via ferramentas de Processamento de Língua Natural: adaptando as métricas do Coh-Metrix para o Português.,2010,2,Linguamática,1,db/journals/linguamatica/linguamatica2.html#ScartonA10,http://www.linguamatica.com/index.php/linguamatica/article/view/44 +,Editorial.,2015,7,Linguamática,2,db/journals/linguamatica/linguamatica7.html#X15a,http://www.linguamatica.com/index.php/linguamatica/article/view/V7N2.0 +Diana Santos,Porquê o Págico? Razões para uma avaliação conjunta.,2012,4,Linguamática,1,db/journals/linguamatica/linguamatica4.html#Santos12,http://www.linguamatica.com/index.php/linguamatica/article/view/119 +Hristo Tanev,Exploiting Machine Learning Techniques to Build an Event Extraction System for Portuguese and Spanish.,2009,1,Linguamática,2,db/journals/linguamatica/linguamatica1.html#TanevZLKPAS09,http://www.linguamatica.com/index.php/linguamatica/article/view/37 +Luciano Barbosa,Blue Man Group no ASSIN: Usando Representações Distribuídas para Similaridade Semântica e Inferência Textual.,2016,8,Linguamática,2,db/journals/linguamatica/linguamatica8.html#BarbosaCGK16,http://www.linguamatica.com/index.php/linguamatica/article/view/v8n2-2 +Alba Cerrudo,ASinEs: Prolegómenos de un atlas de la variación sintáctica del español.,2015,7,Linguamática,2,db/journals/linguamatica/linguamatica7.html#CerrudoGPR15,http://www.linguamatica.com/index.php/linguamatica/article/view/V7N2.5 +Itziar Gonzalez-Dios,Testuen sinplifikazio automatikoa: arloaren egungo egoera.,2013,5,Linguamática,2,db/journals/linguamatica/linguamatica5.html#Gonzalez-DiosAI13,http://www.linguamatica.com/index.php/linguamatica/article/view/163 +Nuno Cardoso,Medindo o precipício semântico.,2012,4,Linguamática,1,db/journals/linguamatica/linguamatica4.html#Cardoso12,http://www.linguamatica.com/index.php/linguamatica/article/view/123 +Hernani Costa,Compilação de Corpos Comparáveis Especializados: Devemos sempre confiar nas Ferramentas de Compilação Semi-automáticas?,2016,8,Linguamática,1,db/journals/linguamatica/linguamatica8.html#CostaMPM16,http://www.linguamatica.com/index.php/linguamatica/article/view/v8n1-1 +Benjamín Ramírez González,Hacia un modelo computacional unificado del lenguaje natural.,2013,5,Linguamática,2,db/journals/linguamatica/linguamatica5.html#Gonzalez13,http://www.linguamatica.com/index.php/linguamatica/article/view/161 +Alberto Manuel Brandão Simões,Desenvolvimento de Aplicações em Perl com FreeLing 3.,2012,4,Linguamática,2,db/journals/linguamatica/linguamatica4.html#SimoesC12,http://www.linguamatica.com/index.php/linguamatica/article/view/132 +Pedro Fialho,INESC-ID@ASSIN: Medição de Similaridade Semântica e Reconhecimento de Inferência Textual.,2016,8,Linguamática,2,db/journals/linguamatica/linguamatica8.html#FialhoMMCQ16,http://www.linguamatica.com/index.php/linguamatica/article/view/v8n2-4 +,Editorial.,2009,1,Linguamática,1,db/journals/linguamatica/linguamatica1.html#X09,http://www.linguamatica.com/index.php/linguamatica/article/view/54 +Larraitz Uria,BASYQUE: Aplicación para el estudio de la variación sintáctica.,2011,3,Linguamática,1,db/journals/linguamatica/linguamatica3.html#UriaE11,http://www.linguamatica.com/index.php/linguamatica/article/view/85 +José Ramom Pichel Campos,imaxin|software - 16 anos desenvolvendo aplicações no campo do processamento da linguagem natural multilingue.,2013,5,Linguamática,2,db/journals/linguamatica/linguamatica5.html#CamposRCP13,http://www.linguamatica.com/index.php/linguamatica/article/view/170 +,Prefácio.,2012,4,Linguamática,1,db/journals/linguamatica/linguamatica4.html#X12,http://www.linguamatica.com/index.php/linguamatica/article/view/129 +José María Gómez Hidalgo,Un método de análisis de lenguaje tipo SMS para el castellano.,2013,5,Linguamática,1,db/journals/linguamatica/linguamatica5.html#HidalgoDR13,http://www.linguamatica.com/index.php/linguamatica/article/view/156 +,Editorial.,2013,5,Linguamática,1,db/journals/linguamatica/linguamatica5.html#X13,http://www.linguamatica.com/index.php/linguamatica/article/view/160 +Gianfranco Fronteddu,Una eina per a una llengua en procés d'estandardització: el traductor automàtic català-sard.,2017,9,Linguamática,2,db/journals/linguamatica/linguamatica9.html#FrontedduFT17,http://www.linguamatica.com/index.php/linguamatica/article/view/v9n2p1 +Hugo Gonçalo Oliveira,Extracção de relações semânticas entre palavras a partir de um dicionário: o PAPEL e a sua avaliação.,2010,2,Linguamática,1,db/journals/linguamatica/linguamatica2.html#OliveiraSG10,http://www.linguamatica.com/index.php/linguamatica/article/view/39 +Diana Santos,Caminhos percorridos no mapa da portuguesificação: A Linguateca em perspectiva.,2009,1,Linguamática,1,db/journals/linguamatica/linguamatica1.html#Santos09,http://www.linguamatica.com/index.php/linguamatica/article/view/20 +Patrícia Cunha França,Os dicionários onomasiológicos e as ontologias computorizadas.,2009,1,Linguamática,2,db/journals/linguamatica/linguamatica1.html#Franca09a,http://www.linguamatica.com/index.php/linguamatica/article/view/34 +,Editorial.,2010,2,Linguamática,2,db/journals/linguamatica/linguamatica2.html#X10a,http://www.linguamatica.com/index.php/linguamatica/article/view/67 +Nathan Siegle Hartmann,Solo Queue at ASSIN: Combinando Abordagens Tradicionais e Emergentes.,2016,8,Linguamática,2,db/journals/linguamatica/linguamatica8.html#Hartmann16,http://www.linguamatica.com/index.php/linguamatica/article/view/v8n2-6 +Xavier Gómez Guinovart,O dicionario de sinónimos como recurso para a expansión de WordNet.,2014,6,Linguamática,2,db/journals/linguamatica/linguamatica6.html#GuinovartP14,http://www.linguamatica.com/index.php/linguamatica/article/view/v6n2-5 +,Prefaci.,2017,9,Linguamática,2,db/journals/linguamatica/linguamatica9.html#X17a,http://www.linguamatica.com/index.php/linguamatica/article/view/v9n2p0 +Carlos-Emiliano González-Gallardo,Perfilado de autor multilingüe en redes sociales a partir de n-gramas de caracteres y de etiquetas gramaticales.,2016,8,Linguamática,1,db/journals/linguamatica/linguamatica8.html#Gonzalez-Gallardo16,http://www.linguamatica.com/index.php/linguamatica/article/view/v8n1-2 +,Editorial.,2013,5,Linguamática,2,db/journals/linguamatica/linguamatica5.html#X13a,http://www.linguamatica.com/index.php/linguamatica/article/view/169 +Cláudia Freitas,A lusofonia na Wikipédia em 150 tópicos.,2012,4,Linguamática,1,db/journals/linguamatica/linguamatica4.html#Freitas12,http://www.linguamatica.com/index.php/linguamatica/article/view/120 +,Editorial e Prefácio.,2016,8,Linguamática,2,db/journals/linguamatica/linguamatica8.html#X16a,http://www.linguamatica.com/index.php/linguamatica/article/view/v8n2-0 +Sabrina Bonqueves Fadanelli Bonqueves Fadanelli,A arquitetura de um glossário terminológico Inglês-Português na área de Eletrotécnica.,2015,7,Linguamática,1,db/journals/linguamatica/linguamatica7.html#FadanelliF15,http://www.linguamatica.com/index.php/linguamatica/article/view/V7N1-5 +Mário Rodrigues,Criação e Acesso a Informação Semântica Aplicada ao Governo Eletrónico.,2011,3,Linguamática,2,db/journals/linguamatica/linguamatica3.html#RodriguesDT11,http://www.linguamatica.com/index.php/linguamatica/article/view/101 +José Casimiro Pereira,Geração de Linguagem Natural para Conversão de Dados em Texto - Aplicação a um Assistente de Medicação para o Português.,2015,7,Linguamática,1,db/journals/linguamatica/linguamatica7.html#PereiraT15,http://www.linguamatica.com/index.php/linguamatica/article/view/V7N1-1 +,Editorial.,2010,2,Linguamática,1,db/journals/linguamatica/linguamatica2.html#X10,http://www.linguamatica.com/index.php/linguamatica/article/view/62 +Xavier Gómez Guinovart,Galnet: WordNet 3.0 do galego.,2011,3,Linguamática,1,db/journals/linguamatica/linguamatica3.html#Guinovart11,http://www.linguamatica.com/index.php/linguamatica/article/view/91 +Fernando Samuel Peregrino,Estudio sobre el impacto de los componentes de un sistema de recuperación de información geográfica y temporal.,2011,3,Linguamática,2,db/journals/linguamatica/linguamatica3.html#PeregrinoDP11,http://www.linguamatica.com/index.php/linguamatica/article/view/100 +Begoña Altuna,Euskarazko denbora-egiturak. Azterketa eta etiketatze-esperimentua.,2014,6,Linguamática,2,db/journals/linguamatica/linguamatica6.html#AltunaAI14,http://www.linguamatica.com/index.php/linguamatica/article/view/v6n2-1 +Cristina Mota,O passar do TEMPO no HAREM.,2011,3,Linguamática,1,db/journals/linguamatica/linguamatica3.html#MotaC11,http://www.linguamatica.com/index.php/linguamatica/article/view/86 +Vanessa Marquiafavel Serrani,Bancos de Fala para o Português Brasileiro.,2011,3,Linguamática,1,db/journals/linguamatica/linguamatica3.html#SerraniU11,http://www.linguamatica.com/index.php/linguamatica/article/view/82 +Maria Lucía del Rosario Castro Jorge,Estratégias de Seleção de Conteúdo com Base na CST (Cross-document Structure Theory) para Sumarização Automática Multidocumento.,2010,2,Linguamática,1,db/journals/linguamatica/linguamatica2.html#JorgeP10,http://www.linguamatica.com/index.php/linguamatica/article/view/52 +Matías Guzmán Naranjo,La subjetivización del de que en el español de Colombia.,2013,5,Linguamática,2,db/journals/linguamatica/linguamatica5.html#Naranjo13,http://www.linguamatica.com/index.php/linguamatica/article/view/158 +Alberto Manuel Brandão Simões,Apresentação do projecto Per-Fide: Paralelizando o Português com seis outras línguas.,2010,2,Linguamática,2,db/journals/linguamatica/linguamatica2.html#SimoesDAA10,http://www.linguamatica.com/index.php/linguamatica/article/view/65 +élen Cátia Tomazela,Avaliação da anotação semântica do PALAVRAS e sua pós-edição manual para o Corpus Summ-it.,2010,2,Linguamática,3,db/journals/linguamatica/linguamatica2.html#TomazelaBR10,http://www.linguamatica.com/index.php/linguamatica/article/view/74 +David Tomás,Kernels para la clasificacíon de preguntas en español y catalán.,2009,1,Linguamática,2,db/journals/linguamatica/linguamatica1.html#TomasV09,http://www.linguamatica.com/index.php/linguamatica/article/view/31 +,Editorial e Prefácio.,2014,6,Linguamática,1,db/journals/linguamatica/linguamatica6.html#X14,http://www.linguamatica.com/index.php/linguamatica/article/view/v6n1-00 +Alejandro Molina-Villegas,La compresión de frases: un recurso para la optimización de resumen automático de documentos.,2010,2,Linguamática,3,db/journals/linguamatica/linguamatica2.html#MolinaCTV10,http://www.linguamatica.com/index.php/linguamatica/article/view/72 +Caroline Hagège,Caracterização e Processamento de Expressões Temporais em Português.,2010,2,Linguamática,1,db/journals/linguamatica/linguamatica2.html#HagegeBM10,http://www.linguamatica.com/index.php/linguamatica/article/view/47 +,Editorial.,2010,2,Linguamática,3,db/journals/linguamatica/linguamatica2.html#X10b,http://www.linguamatica.com/index.php/linguamatica/article/view/81 +John Roberto Rodríguez,Clasificación automática del registro lingüístico en textos del español: un análisis contrastivo.,2013,5,Linguamática,1,db/journals/linguamatica/linguamatica5.html#RodriguezLA13,http://www.linguamatica.com/index.php/linguamatica/article/view/153 +,Editorial.,2011,3,Linguamática,2,db/journals/linguamatica/linguamatica3.html#X11a,http://www.linguamatica.com/index.php/linguamatica/article/view/118 +Arlindo Veiga,Conversão de Grafemas para Fonemas em Português Europeu - Abordagem Híbrida com Modelos Probabilísticos e Regras Fonológicas.,2011,3,Linguamática,2,db/journals/linguamatica/linguamatica3.html#VeigaCP11,http://www.linguamatica.com/index.php/linguamatica/article/view/102 +Erick Nilsen Pereira de Souza,Extração de Relações utilizando Features Diferenciadas para Português.,2014,6,Linguamática,2,db/journals/linguamatica/linguamatica6.html#SouzaC14,http://www.linguamatica.com/index.php/linguamatica/article/view/v6n2-4 +Fábio Santos,Descoberta de Synsets Difusos com base na Redundância em vários Dicionários.,2015,7,Linguamática,2,db/journals/linguamatica/linguamatica7.html#SantosO15,http://www.linguamatica.com/index.php/linguamatica/article/view/V7N2.1 +Ana Oliveira Alves,ASAPP: Alinhamento Semântico Automático de Palavras aplicado ao Português.,2016,8,Linguamática,2,db/journals/linguamatica/linguamatica8.html#AlvesRO16,http://www.linguamatica.com/index.php/linguamatica/article/view/v8n2-5 +Antoni Oliver González,WN-Toolkit: un toolkit per a la creació de WordNets a partir de diccionaris bilingües.,2012,4,Linguamática,2,db/journals/linguamatica/linguamatica4.html#Gonzalez12,http://www.linguamatica.com/index.php/linguamatica/article/view/136 +Alison Rafael Polpeta Freitas,Usando Grades de Entidades na Análise Automática de Coerência Local em Textos Científicos.,2014,6,Linguamática,1,db/journals/linguamatica/linguamatica6.html#FreitasF14,http://www.linguamatica.com/index.php/linguamatica/article/view/v6n1-02 +,Editorial.,2009,1,Linguamática,2,db/journals/linguamatica/linguamatica1.html#X09a,http://www.linguamatica.com/index.php/linguamatica/article/view/55 +Adrià Martín,Creació d'un motor de TAE especialitzat en farmàcia i medicina per a la combinació romanés-castellà.,2017,9,Linguamática,2,db/journals/linguamatica/linguamatica9.html#MartinP17,http://www.linguamatica.com/index.php/linguamatica/article/view/v9n2p4 +Iñaki Alegria,Teknologia garatzeko estrategiak baliabide urriko hizkuntzetarako: euskararen eta Ixa taldearen adibidea.,2011,3,Linguamática,1,db/journals/linguamatica/linguamatica3.html#AlegriaAISA11,http://www.linguamatica.com/index.php/linguamatica/article/view/92 +Cláudia Freitas,O que é uma resposta? Notas de uns avaliadores estafados.,2012,4,Linguamática,1,db/journals/linguamatica/linguamatica4.html#FreitasRMCS12,http://www.linguamatica.com/index.php/linguamatica/article/view/127 +Brett Drury,BrAgriNews: Um Corpus Temporal-Causal (Português-Brasileiro) para a Agricultura.,2017,9,Linguamática,1,db/journals/linguamatica/linguamatica9.html#DruryFL17,http://www.linguamatica.com/index.php/linguamatica/article/view/v9n1p4 +Aitor Gonzalez-Agirre,Construcción de una base de conocimiento léxico multilíngüe de amplia cobertura: Multilingual Central Repository.,2013,5,Linguamática,1,db/journals/linguamatica/linguamatica5.html#Gonzalez-Agirre13,http://www.linguamatica.com/index.php/linguamatica/article/view/159 +Arlindo Veiga,O desafio da participação humana do IT-Coimbra no Págico.,2012,4,Linguamática,1,db/journals/linguamatica/linguamatica4.html#VeigaLCPPC12,http://www.linguamatica.com/index.php/linguamatica/article/view/124 +Susana Bautista,Análisis de la Simplificación de Expresiones Numéricas en Español mediante un Estudio Empírico.,2012,4,Linguamática,2,db/journals/linguamatica/linguamatica4.html#BautistaDHSG12,http://www.linguamatica.com/index.php/linguamatica/article/view/137 +Lara Gil-Vallejo,Hacia una clasificación verbal automática para el español: estudio sobre la relevancia de los diferentes tipos y configuraciones de información sintáctico-semántica.,2015,7,Linguamática,1,db/journals/linguamatica/linguamatica7.html#Gil-VallejoCCT15,http://www.linguamatica.com/index.php/linguamatica/article/view/V7N1-3 +Diana Santos,Balanço do Págico e perspetivas de futuro.,2012,4,Linguamática,1,db/journals/linguamatica/linguamatica4.html#SantosMSCF12,http://www.linguamatica.com/index.php/linguamatica/article/view/130 +,Editorial.,2015,7,Linguamática,1,db/journals/linguamatica/linguamatica7.html#X15,http://www.linguamatica.com/index.php/linguamatica/article/view/V7N1-0 +Diana Santos,Uma incursão pelo universo das publicações em Portugal.,2011,3,Linguamática,2,db/journals/linguamatica/linguamatica3.html#SantosR11,http://www.linguamatica.com/index.php/linguamatica/article/view/112 +José Manuel Martínez Martínez,ECPC: el discurso parlamentario europeo desde la perspectiva de los estudios traductológicos de corpus.,2012,4,Linguamática,2,db/journals/linguamatica/linguamatica4.html#MartinezR12,http://www.linguamatica.com/index.php/linguamatica/article/view/131 +Rafael Pereira,Geração Automática de Sentenças em Língua Natural para Sequências de Pictogramas como Apoio à Comunicação Alternativa e Ampliada.,2017,9,Linguamática,1,db/journals/linguamatica/linguamatica9.html#PereiraMGC17,http://www.linguamatica.com/index.php/linguamatica/article/view/v9n1p3 +Larissa Picoli,Uso de uma Ferramenta de Processamento de Linguagem Natural como Auxílio à Coleta de Exemplos para o Estudo de Propriedades Sintático-Semânticas de Verbos.,2015,7,Linguamática,2,db/journals/linguamatica/linguamatica7.html#PicoliPOL15,http://www.linguamatica.com/index.php/linguamatica/article/view/V7N2.3 +óscar Alcón,Estudio de la influencia de incorporar conocimiento léxico-semántico a la técnica de Análisis de Componentes Principales para la generación de resúmenes multilingües.,2015,7,Linguamática,1,db/journals/linguamatica/linguamatica7.html#AlconL15,http://www.linguamatica.com/index.php/linguamatica/article/view/V7N1-4 +Luiz Arthur Pagani,Escopo in situ.,2012,4,Linguamática,2,db/journals/linguamatica/linguamatica4.html#Pagani12,http://www.linguamatica.com/index.php/linguamatica/article/view/133 +Duarte Dias,Geocodificação de Documentos Textuais com Classificadores Hierárquicos Baseados em Modelos de Linguagem.,2012,4,Linguamática,2,db/journals/linguamatica/linguamatica4.html#DiasAM12,http://www.linguamatica.com/index.php/linguamatica/article/view/139 +Rogelio Nazar,Detección automática de nombres eventivos no deverbales en castellano: un enfoque cuantitativo basado en corpus.,2017,9,Linguamática,2,db/journals/linguamatica/linguamatica9.html#NazarSU17,http://www.linguamatica.com/index.php/linguamatica/article/view/v9n2p2 +Bruno Barufaldi,Classificação Automática de Textos por Período Literário Utilizando Compressão de Dados Através do PPM-C.,2010,2,Linguamática,1,db/journals/linguamatica/linguamatica2.html#BarufaldiJSPFB10,http://www.linguamatica.com/index.php/linguamatica/article/view/50 +,Editorial.,2016,8,Linguamática,1,db/journals/linguamatica/linguamatica8.html#X16,http://www.linguamatica.com/index.php/linguamatica/article/view/v8n1-0 +Erick Rocha Fonseca,Visão Geral da Avaliação de Similaridade Semântica e Inferência Textual.,2016,8,Linguamática,2,db/journals/linguamatica/linguamatica8.html#FonsecaSCA16,http://www.linguamatica.com/index.php/linguamatica/article/view/v8n2-1 +Paulo Malvar Fernández,Vencendo a escassez de recursos computacionais. Carvalho: Tradutor Automático Estatístico Inglês-Galego a partir do corpus paralelo Europarl Inglês-Português.,2010,2,Linguamática,2,db/journals/linguamatica/linguamatica2.html#FernandezCGGG10,http://www.linguamatica.com/index.php/linguamatica/article/view/57 +Iria da Cunha,Un algoritmo lingüístico-estadístico para resumen automático de textos especializados.,2009,1,Linguamática,2,db/journals/linguamatica/linguamatica1.html#CunhaTVV09,http://www.linguamatica.com/index.php/linguamatica/article/view/33 +Luísa Coheur,Do tópico às respostas: do processo humano à sua simulação.,2012,4,Linguamática,1,db/journals/linguamatica/linguamatica4.html#CoheurC12,http://www.linguamatica.com/index.php/linguamatica/article/view/125 +Ricardo Rodrigues,Uma Abordagem ao Págico baseada no Processamento e Análise de Sintagmas dos Tópicos.,2012,4,Linguamática,1,db/journals/linguamatica/linguamatica4.html#RodriguesOG12,http://www.linguamatica.com/index.php/linguamatica/article/view/122 +Eloize Rossi Marques Seno,Reconhecimento de Informações Comuns para a Fusão de Sentenças Comparáveis do Português.,2009,1,Linguamática,1,db/journals/linguamatica/linguamatica1.html#SenoN09,http://www.linguamatica.com/index.php/linguamatica/article/view/5 +Miguel Alejandro Dorantes,Extracción automática de definiciones analíticas y relaciones semánticas de hiponimia-hiperonimia con un sistema basado en patrones lingüísticos.,2017,9,Linguamática,2,db/journals/linguamatica/linguamatica9.html#DorantesPSEM17,http://www.linguamatica.com/index.php/linguamatica/article/view/v9n2p3 +Liliana da Silva Ferreira,Extracção de Informação de Relatórios Médicos.,2009,1,Linguamática,1,db/journals/linguamatica/linguamatica1.html#FerreiraOTC09,http://www.linguamatica.com/index.php/linguamatica/article/view/12 +Diego dos Santos Silva,Geração de Expressões de Referência em Ambientes Virtuais.,2014,6,Linguamática,1,db/journals/linguamatica/linguamatica6.html#SilvaP14,http://www.linguamatica.com/index.php/linguamatica/article/view/v6n1-01 +Aline Villavicencio,Identificação de Expressões Multipalavra em Domínios Específicos.,2010,2,Linguamática,1,db/journals/linguamatica/linguamatica2.html#VillavicencioRM10,http://www.linguamatica.com/index.php/linguamatica/article/view/43 +Alberto Simões,Tirando o chapéu à Wikipédia: A coleção do Págico e o Cartola.,2012,4,Linguamática,1,db/journals/linguamatica/linguamatica4.html#SimoesCM12,http://www.linguamatica.com/index.php/linguamatica/article/view/121 +Lluís Padró,Analizadores Multilingües en FreeLing.,2011,3,Linguamática,2,db/journals/linguamatica/linguamatica3.html#Padro11,http://www.linguamatica.com/index.php/linguamatica/article/view/115 +Anabela Barreiro,Projetos sobre Tradução Automática do Português no Laboratório de Sistemas de Língua Falada do INESC-ID.,2014,6,Linguamática,2,db/journals/linguamatica/linguamatica6.html#BarreiroLCBT14,http://www.linguamatica.com/index.php/linguamatica/article/view/v6n2-6 +Alejandro Molina-Villegas,El Test de Turing para la evaluación de resumen automático de texto.,2015,7,Linguamática,2,db/journals/linguamatica/linguamatica7.html#Molina-Villegas15,http://www.linguamatica.com/index.php/linguamatica/article/view/V7N2.4 +Gerardo Sierra,Extracción de contextos definitorios en textos de especialidad a partir del reconocimiento de patrones lingüísticos.,2009,1,Linguamática,2,db/journals/linguamatica/linguamatica1.html#Sierra09,http://www.linguamatica.com/index.php/linguamatica/article/view/38 +David Soares Batista,Extracção de Relações Semânticas de Textos em Português Explorando a DBpédia e a Wikipédia.,2013,5,Linguamática,1,db/journals/linguamatica/linguamatica5.html#BatistaFSMS13,http://www.linguamatica.com/index.php/linguamatica/article/view/157 +Fernanda López-Escobedo,Propuesta de clasificación de un banco de voces con fines de identificación forense.,2016,8,Linguamática,1,db/journals/linguamatica/linguamatica8.html#Lopez-EscobedoS16,http://www.linguamatica.com/index.php/linguamatica/article/view/v8n1-3 +Gustavo Laboreiro,Avaliação de métodos de desofuscação de palavrões.,2014,6,Linguamática,2,db/journals/linguamatica/linguamatica6.html#LaboreiroO14,http://www.linguamatica.com/index.php/linguamatica/article/view/v6n2-2 +Ana Paula Soares,P-PAL: Uma base lexical com índices psicolinguísticos do Português Europeu.,2010,2,Linguamática,3,db/journals/linguamatica/linguamatica2.html#SoaresCSASCFM10,http://www.linguamatica.com/index.php/linguamatica/article/view/80 +Maria das Graças Volpe Nunes,Um panorama do Núcleo Interinstitucional de Linguística Computacional às vésperas de sua maioridade.,2010,2,Linguamática,2,db/journals/linguamatica/linguamatica2.html#NunesAP10,http://www.linguamatica.com/index.php/linguamatica/article/view/66 +Xavier Gómez Guinovart,Anotación morfosintáctica do Corpus Técnico do Galego.,2009,1,Linguamática,1,db/journals/linguamatica/linguamatica1.html#GuinovartF09,http://www.linguamatica.com/index.php/linguamatica/article/view/8 +Fernando Balbachan,Inducción de constituyentes sintácticos en español con técnicas de clustering y filtrado por información mutua.,2010,2,Linguamática,2,db/journals/linguamatica/linguamatica2.html#BalbachanD10,http://www.linguamatica.com/index.php/linguamatica/article/view/60 +Miguel Anxo Solla Portela,Módulo de acentuación para o galego en Freeling.,2010,2,Linguamática,3,db/journals/linguamatica/linguamatica2.html#Portela10,http://www.linguamatica.com/index.php/linguamatica/article/view/70 +William A. Pearlman,Set Partition Coding: Part I of Set Partition Coding and Image Wavelet Coding Systems.,2008,2,Foundations and Trends in Signal Processing,2,db/journals/ftsig/ftsig2.html#PearlmanS08,https://doi.org/10.1561/2000000013 +Robert M. Gray,A History of Realtime Digital Speech on Packet Networks: Part II of Linear Predictive Coding and the Internet Protocol.,2010,3,Foundations and Trends in Signal Processing,4,db/journals/ftsig/ftsig3.html#Gray10,https://doi.org/10.1561/2000000036 +Yariv Ephraim,Bivariate Markov Processes and Their Estimation.,2013,6,Foundations and Trends in Signal Processing,1,db/journals/ftsig/ftsig6.html#EphraimM13,https://doi.org/10.1561/2000000043 +James E. Fowler,Block-Based Compressed Sensing of Images and Video.,2012,4,Foundations and Trends in Signal Processing,4,db/journals/ftsig/ftsig4.html#FowlerMT12,https://doi.org/10.1561/2000000033 +Athanasios Leontaris,Multiple Reference Motion Compensation: A Tutorial Introduction and Survey.,2009,2,Foundations and Trends in Signal Processing,4,db/journals/ftsig/ftsig2.html#LeontarisCT09,https://doi.org/10.1561/2000000019 +Milind S. Gide,Computational Visual Attention Models.,2017,10,Foundations and Trends in Signal Processing,4,db/journals/ftsig/ftsig10.html#GideK17,https://doi.org/10.1561/2000000055 +Nuno Vasconcelos,Minimum Probability of Error Image Retrieval: From Visual Features to Image Semantics.,2012,5,Foundations and Trends in Signal Processing,4,db/journals/ftsig/ftsig5.html#VasconcelosV12,https://doi.org/10.1561/2000000015 +Ami Wiesel,Structured Robust Covariance Estimation.,2015,8,Foundations and Trends in Signal Processing,3,db/journals/ftsig/ftsig8.html#WieselZ15,https://doi.org/10.1561/2000000053 +Jelena Kovacevic,An Introduction to Frames.,2008,2,Foundations and Trends in Signal Processing,1,db/journals/ftsig/ftsig2.html#KovacevicC08,https://doi.org/10.1561/2000000006 +Bernhard Etzlinger,Synchronization and Localization in Wireless Networks.,2018,12,Foundations and Trends in Signal Processing,1,db/journals/ftsig/ftsig12.html#EtzlingerW18,https://doi.org/10.1561/2000000096 +Lianlin Li,A Survey on the Low-Dimensional-Model-based Electromagnetic Imaging.,2018,12,Foundations and Trends in Signal Processing,2,db/journals/ftsig/ftsig12.html#LiHXZJXSN18,https://doi.org/10.1561/2000000103 +William A. Pearlman,Set Partition Coding: Part II of Set Partition Coding and Image Wavelet Coding Systems.,2008,2,Foundations and Trends in Signal Processing,3,db/journals/ftsig/ftsig2.html#PearlmanS08a,https://doi.org/10.1561/2000000014 +Minh N. Do,Multidimensional Filter Banks and Multiscale Geometric Representations.,2012,5,Foundations and Trends in Signal Processing,3,db/journals/ftsig/ftsig5.html#DoL12,https://doi.org/10.1561/2000000012 +Mark J. F. Gales,The Application of Hidden Markov Models in Speech Recognition.,2007,1,Foundations and Trends in Signal Processing,3,db/journals/ftsig/ftsig1.html#GalesY07,https://doi.org/10.1561/2000000004 +Dongning Guo,The Interplay Between Information and Estimation Measures.,2013,6,Foundations and Trends in Signal Processing,4,db/journals/ftsig/ftsig6.html#GuoV13,https://doi.org/10.1561/2000000018 +Maya R. Gupta,Theory and Use of the EM Algorithm.,2010,4,Foundations and Trends in Signal Processing,3,db/journals/ftsig/ftsig4.html#GuptaC10,https://doi.org/10.1561/2000000034 +Robert M. Gray,A Survey of Linear Predictive Coding: Part I of Linear Predictive Coding and the Internet Protocol.,2009,3,Foundations and Trends in Signal Processing,3,db/journals/ftsig/ftsig3.html#Gray09,https://doi.org/10.1561/2000000029 +Yonina C. Eldar,Rethinking Biased Estimation: Improving Maximum Likelihood and the Cramér-Rao Bound.,2007,1,Foundations and Trends in Signal Processing,4,db/journals/ftsig/ftsig1.html#Eldar07,https://doi.org/10.1561/2000000008 +Huan Wang,An empirical molecular docking study of a di-iron binding protein with iron ions.,2013,14,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc14.html#WangLX13,https://doi.org/10.1631/jzus.C1200072 +Qionghai Dai,Special feature on computational photography.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#Dai17,https://doi.org/10.1631/FITEE.1730000 +Chang-cheng Wu,Improved switching based filter for protecting thin lines of color images.,2010,11,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc11.html#WuZC10,https://doi.org/10.1631/jzus.C0910145 +Shuo Wang,FlowTrace: measuring round-trip time and tracing path in software-defined networking with low communication overhead.,2017,18,Frontiers of IT and EE,2,db/journals/jzusc/jzusc18.html#WangZHLLY17,https://doi.org/10.1631/FITEE.1601280 +Alireza Rezazadeh,Coordination of PSS and TCSC controller using modified particle swarm optimization algorithm to improve power system dynamic performance.,2010,11,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc11.html#RezazadehSH10,https://doi.org/10.1631/jzus.C0910551 +Jian-wen Jiang,Effect of chip rate on the ranging accuracy in a regenerative pseudo-noise ranging system.,2011,12,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc12.html#JiangYZJJ11,https://doi.org/10.1631/jzus.C1000132 +Shahab Pourtalebi,Information schema constructs for defining warehouse databases of genotypes and phenotypes of system manifestation features.,2016,17,Frontiers of IT and EE,9,db/journals/jzusc/jzusc17.html#PourtalebiH16,https://doi.org/10.1631/FITEE.1600997 +Xiao Lin,A survey for image resizing.,2014,15,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc15.html#LinMMZ14,https://doi.org/10.1631/jzus.C1400102 +Junhong Zhang,Application of complete ensemble intrinsic time-scale decomposition and least-square SVM optimized using hybrid DE and PSO to fault diagnosis of diesel engines.,2017,18,Frontiers of IT and EE,2,db/journals/jzusc/jzusc18.html#ZhangL17,https://doi.org/10.1631/FITEE.1500337 +Yang Zhang 0026,CWLP: coordinated warp scheduling and locality-protected cache allocation on GPUs.,2018,19,Frontiers of IT and EE,2,db/journals/jzusc/jzusc19.html#ZhangXLT18,https://doi.org/10.1631/FITEE.1700059 +Jian Wu,A digital moiré fringe method for displacement sensors.,2016,17,Frontiers of IT and EE,9,db/journals/jzusc/jzusc17.html#WuZYW16,https://doi.org/10.1631/FITEE.1500270 +Shih-Kung Lai,Erratum to: Theoretical foundation of a decision network for urban development.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#LaiH17a,https://doi.org/10.1631/FITEE.15e0000 +Guohai Situ,Phase problems in optical imaging.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#SituW17,https://doi.org/10.1631/FITEE.1700298 +Zhao Wang,ARAP++: an extension of the local/global approach to mesh parameterization.,2016,17,Frontiers of IT and EE,6,db/journals/jzusc/jzusc17.html#WangLZS16,https://doi.org/10.1631/FITEE.1500184 +Yang-ming Guo,Adaptive online prediction method based on LS-SVR and its application in an electronic system.,2012,13,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc13.html#GuoRLM12,https://doi.org/10.1631/jzus.C1200156 +Md Nishat Anwar,A frequency domain design of PID controller for an AVR system.,2014,15,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc15.html#AnwarP14,https://doi.org/10.1631/jzus.C1300218 +Yu-ming Liu,Multiscale classification and its application to process monitoring.,2010,11,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc11.html#LiuYZSHL10,https://doi.org/10.1631/jzus.C0910430 +Shi-yan Wang,Convex relaxation for a 3D spatiotemporal segmentation model using the primal-dual method.,2012,13,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc13.html#WangY12,https://doi.org/10.1631/jzus.C1100331 +Meng Li,A surrogate-based optimization algorithm for network design problems.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#LiLC17,https://doi.org/10.1631/FITEE.1601403 +Xin Yuan 0004,Secure connectivity analysis in unmanned aerial vehicle networks.,2018,19,Frontiers of IT and EE,3,db/journals/jzusc/jzusc19.html#YuanFXWL18,https://doi.org/10.1631/FITEE.1700032 +Longxiang Wang,TextGen: a realistic text data content generation method for modern storage system benchmarks.,2016,17,Frontiers of IT and EE,10,db/journals/jzusc/jzusc17.html#WangDZWJF16,https://doi.org/10.1631/FITEE.1500332 +Yi Guo,DGR: dynamic gradient-based routing protocol for unbalanced and persistent data transmission in wireless sensor and actor networks.,2011,12,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc12.html#GuoXCG11,https://doi.org/10.1631/jzus.C1000184 +Chao Su,Incorporating target language semantic roles into a string-to-tree translation model.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#SuGHSF17,https://doi.org/10.1631/FITEE.1601349 +Hongwu Lv,Analyzing the service availability of mobile cloud computing systems by fluid-flow approximation.,2015,16,Frontiers of IT and EE,7,db/journals/jzusc/jzusc16.html#LvLWFZ15,https://doi.org/10.1631/FITEE.1400410 +Tao Huang 0005,Special issue on future network: software-defined networking.,2016,17,Frontiers of IT and EE,7,db/journals/jzusc/jzusc17.html#HuangYL16,https://doi.org/10.1631/FITEE.SDN2016 +Jizhou Luo,FrepJoin: an efficient partition-based algorithm for edit similarity join.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#LuoSWL17,https://doi.org/10.1631/FITEE.1601347 +Zhengmin Kong,A novel differential multiuser detection algorithm for multiuser MIMO-OFDM systems.,2010,11,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc11.html#KongZTL10,https://doi.org/10.1631/jzus.C0910735 +Mohd Amin At-Tasneem,A computing capability test for a switched system control design using the Haris-Rogers method.,2012,13,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc13.html#AT-TasneemHN12,https://doi.org/10.1631/jzus.C1200074 +Qiang Lan,Stochastic extra-gradient based alternating direction methods for graph-guided regularized minimization.,2018,19,Frontiers of IT and EE,6,db/journals/jzusc/jzusc19.html#LanQW18,https://doi.org/10.1631/FITEE.1601771 +Minghui Shi,Electroencephalogram-based brain-computer interface for the Chinese spelling system: a survey.,2018,19,Frontiers of IT and EE,3,db/journals/jzusc/jzusc19.html#ShiZXLHJCRLZY18,https://doi.org/10.1631/FITEE.1601509 +Qing-long Dai,Performance improvement for applying network virtualization in fiber-wireless (FiWi) access networks.,2014,15,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc15.html#DaiSHG14,https://doi.org/10.1631/jzus.C1400044 +Li Lu,Improving the real-time performance of Ethernet for plant automation (EPA) based industrial networks.,2013,14,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc14.html#LuFC13,https://doi.org/10.1631/jzus.C1200363 +Libing Wu,Cryptanalysis of an identity-based public auditing protocol for cloud storage.,2017,18,Frontiers of IT and EE,12,db/journals/jzusc/jzusc18.html#WuWHK17,https://doi.org/10.1631/FITEE.1601530 +Leilei Kong,A machine learning approach to query generation in plagiarism source retrieval.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#KongLQH17,https://doi.org/10.1631/FITEE.1601344 +Wei Yang,Human hip joint center analysis for biomechanical design of a hip joint exoskeleton.,2016,17,Frontiers of IT and EE,8,db/journals/jzusc/jzusc17.html#YangYX16,https://doi.org/10.1631/FITEE.1500286 +Mengdi Jiang,Properties of a general quaternion-valued gradient operator and its applications to signal processing.,2016,17,Frontiers of IT and EE,2,db/journals/jzusc/jzusc17.html#JiangLL16,https://doi.org/10.1631/FITEE.1500334 +Xin-tao Xia,Hypothesis testing for reliability with a three-parameter Weibull distribution using minimum weighted relative entropy norm and bootstrap.,2013,14,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc14.html#XiaJXSC13,https://doi.org/10.1631/jzus.C12a0241 +Pei-yih Ting,A secure threshold Paillier proxy signature scheme.,2010,11,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc11.html#TingHWH10,https://doi.org/10.1631/jzus.C0910493 +Choon Lih Hoo,A floating point conversion algorithm for mixed precision computations.,2012,13,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc13.html#HooHM12,https://doi.org/10.1631/jzus.C1200043 +Zhenxin Wang,Curve length estimation based on cubic spline interpolation in gray-scale images.,2013,14,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc14.html#WangO13,https://doi.org/10.1631/jzus.C1300056 +Hyeon Chang Lee,Finger vein recognition using weighted local binary pattern code based on a support vector machine.,2010,11,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc11.html#LeeKLP10,https://doi.org/10.1631/jzus.C0910550 +Ellips Masehian,Multi-objective robot motion planning using a particle swarm optimization model.,2010,11,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc11.html#MasehianS10,https://doi.org/10.1631/jzus.C0910525 +Bo-hu Li,A swarm intelligence design based on a workshop of meta-synthetic engineering.,2017,18,Frontiers of IT and EE,1,db/journals/jzusc/jzusc18.html#LiQLHZSZR17,https://doi.org/10.1631/FITEE.1700002 +Xie Wang,A novel approach of noise statistics estimate using H ∞ filter in target tracking.,2016,17,Frontiers of IT and EE,5,db/journals/jzusc/jzusc17.html#WangLFZ16,https://doi.org/10.1631/FITEE.1500262 +Nanning Zheng,Hybrid-augmented intelligence: collaboration and cognition.,2017,18,Frontiers of IT and EE,2,db/journals/jzusc/jzusc18.html#ZhengLRMCYXCW17,https://doi.org/10.1631/FITEE.1700053 +Zhaoyun Chen,Exploiting a depth context model in visual tracking with correlation filter.,2017,18,Frontiers of IT and EE,5,db/journals/jzusc/jzusc18.html#ChenLHWZ17,https://doi.org/10.1631/FITEE.1500389 +Yan Gui,Preserving global features of fluid animation from a single image using video examples.,2012,13,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc13.html#GuiMYC12,https://doi.org/10.1631/jzus.C1100342 +Hui Zhang,Effects of residual motion compensation errors on the performance of airborne along-track interferometric SAR.,2016,17,Frontiers of IT and EE,10,db/journals/jzusc/jzusc17.html#ZhangHQLLM16,https://doi.org/10.1631/FITEE.1500311 +Young-Mo Kwon,Monitoring continuous k-nearest neighbor queries in the hybrid wireless network.,2011,12,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc12.html#KwonJC11,https://doi.org/10.1631/jzus.C1000080 +Zu-sheng Ho,Extracting DC bus current information for optimal phase correction and current ripple in sensorless brushless DC motor drive.,2014,15,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc15.html#HoUW14,https://doi.org/10.1631/jzus.C1300247 +Jingfa Liu,A new energy landscape paving heuristic for satellite module layouts.,2016,17,Frontiers of IT and EE,10,db/journals/jzusc/jzusc17.html#LiuHLLGH16,https://doi.org/10.1631/FITEE.1500302 +Lei Zhang 0057,A hybrid genetic algorithm to optimize device allocation in industrial Ethernet networks with real-time constraints.,2011,12,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc12.html#ZhangLW11,https://doi.org/10.1631/jzus.C1100045 +Jian-cheng Fang,Composite disturbance attenuation based saturated control for maintenance of low Earth orbit (LEO) formations.,2012,13,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc13.html#FangS12,https://doi.org/10.1631/jzus.C1100350 +Zhouzhou He,Overlapping community detection combining content and link.,2012,13,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc13.html#HeZY12,https://doi.org/10.1631/jzus.C1200049 +Xiao-Li Zhang,Exponential stability of nonlinear impulsive switched systems with stable and unstable subsystems.,2014,15,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc15.html#ZhangLZ14,https://doi.org/10.1631/jzus.C1300123 +Xisheng Xiao,Optimizing checkpoint for scientific simulations.,2012,13,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc13.html#XiaoHZ12,https://doi.org/10.1631/jzus.C1200135 +Chunjie Zhang,Boundedness of Marcinkiewicz integral with rough kernel on Triebel-Lizorkin spaces.,2015,16,Frontiers of IT and EE,8,db/journals/jzusc/jzusc16.html#ZhangRZG15,https://doi.org/10.1631/FITEE.1500082 +Junjie Cao 0001,Measured boundary parameterization based on Poisson's equation.,2010,11,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc11.html#CaoSLB10,https://doi.org/10.1631/jzus.C0910460 +Jin-yi Liu,Proportional directional valve based automatic steering system for tractors.,2016,17,Frontiers of IT and EE,5,db/journals/jzusc/jzusc17.html#LiuTMSZ16,https://doi.org/10.1631/FITEE.1500172 +Hai Li,Micro-angle tilt detection for the rotor of a novel rotational gyroscope with a 0.47*3* resolution.,2017,18,Frontiers of IT and EE,5,db/journals/jzusc/jzusc18.html#LiLWZ17,https://doi.org/10.1631/FITEE.1500454 +Lei Wang 0023,Automatic pectoral muscle boundary detection in mammograms based on Markov chain and active contour model.,2010,11,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc11.html#WangZDY10,https://doi.org/10.1631/jzus.C0910025 +Mohammad Hossein Moaiyeri,Design and analysis of carbon nanotube FET based quaternary full adders.,2016,17,Frontiers of IT and EE,10,db/journals/jzusc/jzusc17.html#MoaiyeriSSN16,https://doi.org/10.1631/FITEE.1500214 +Zhongfei Zhang,Societally connected multimedia across cultures.,2012,13,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc13.html#ZhangZJZCHJLLMSTTWXYY12,https://doi.org/10.1631/jzus.C1200279 +Fuxiang Lu,Beyond bag of latent topics: spatial pyramid matching for scene category recognition.,2015,16,Frontiers of IT and EE,10,db/journals/jzusc/jzusc16.html#LuH15,https://doi.org/10.1631/FITEE.1500070 +Qian-qian Hu,Representing conics by low degree rational DP curves.,2010,11,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc11.html#HuW10,https://doi.org/10.1631/jzus.C0910148 +Ehsan Saeedi,Side-channel attacks and learning-vector quantization.,2017,18,Frontiers of IT and EE,4,db/journals/jzusc/jzusc18.html#SaeediKH17,https://doi.org/10.1631/FITEE.1500460 +Yonggang Peng,Model predictive control of servo motor driven constant pump hydraulic system in injection molding process based on neurodynamic optimization.,2014,15,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc15.html#PengWW14,https://doi.org/10.1631/jzus.C1300182 +Xiaochao Wang,Feature detection of triangular meshes via neighbor supporting.,2012,13,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc13.html#WangCLLSS12,https://doi.org/10.1631/jzus.C1100324 +Li-rong Shen,A novel period estimation method for X-ray pulsars based on frequency subdivision.,2015,16,Frontiers of IT and EE,10,db/journals/jzusc/jzusc16.html#ShenLSFX15,https://doi.org/10.1631/FITEE.1500052 +Lei He,Driving intention recognition and behaviour prediction based on a double-layer hidden Markov model.,2012,13,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc13.html#HeZW12,https://doi.org/10.1631/jzus.C11a0195 +Yan Liu 0015,Negative effects of sufficiently small initialweights on back-propagation neural networks.,2012,13,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc13.html#LiuYLW12,https://doi.org/10.1631/jzus.C1200008 +Peng Huang,Multi-instance learning for software quality estimation in object-oriented systems: a case study.,2010,11,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc11.html#HuangZ10,https://doi.org/10.1631/jzus.C0910084 +Yue Xie,New Technique: Sketch-based rotation editing.,2011,12,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc12.html#XieXYW11,https://doi.org/10.1631/jzus.C1000373 +Ye Yuan,Model-free adaptive control for three-degree-of-freedom hybrid magnetic bearings.,2017,18,Frontiers of IT and EE,12,db/journals/jzusc/jzusc18.html#YuanSXHZ17,https://doi.org/10.1631/FITEE.1700324 +Caihong Li,A chaotic coverage path planner for the mobile robot based on the Chebyshev map for special missions.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#LiSWWL17,https://doi.org/10.1631/FITEE.1601253 +Yun-he Pan,2018 special issue on artificial intelligence 2.0: theories and applications.,2018,19,Frontiers of IT and EE,1,db/journals/jzusc/jzusc19.html#Pan18,https://doi.org/10.1631/FITEE.1810000 +Zhi-qiang Song,Coordinated standoff tracking of moving targets using differential geometry.,2014,15,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc15.html#SongLCZX14,https://doi.org/10.1631/jzus.C1300287 +Hamid Tabatabaee,Erratum to: Dynamic task scheduling modeling in unstructured heterogeneous multiprocessor systems.,2014,15,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc15.html#TabatabaeeAP14a,https://doi.org/10.1631/jzus.C13e0204 +Dongrong Xu,A platform of digital brain using crowd power.,2018,19,Frontiers of IT and EE,1,db/journals/jzusc/jzusc19.html#XuDL18,https://doi.org/10.1631/FITEE.1700800 +Wei Cai,On-chip optical interconnect using visible light.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#CaiZGYYZWG17,https://doi.org/10.1631/FITEE.1601720 +Houkui Zhou,Topic discovery and evolution in scientific literature based on content and citations.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#ZhouYH17,https://doi.org/10.1631/FITEE.1601125 +Yuan-di Zhao,Efficient reconstruction of non-simple curves.,2011,12,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc12.html#ZhaoCSL11,https://doi.org/10.1631/jzus.C1000308 +Liming Yang,Time-series prediction based on global fuzzy measure in social networks.,2015,16,Frontiers of IT and EE,10,db/journals/jzusc/jzusc16.html#YangZC15,https://doi.org/10.1631/FITEE.1500025 +Xing-chen Wu,Using improved particle swarm optimization to tune PID controllers in cooperative collision avoidance systems.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#WuQSYX17,https://doi.org/10.1631/FITEE.1601427 +Hang Zhang 0003,VDoc+: a virtual document based approach for matching large ontologies using MapReduce.,2012,13,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc13.html#ZhangHQ12,https://doi.org/10.1631/jzus.C1101007 +Shi-cang Zhang,Amultiplemaneuvering targets tracking algorithm based on a generalized pseudo-Bayesian estimator of first order.,2013,14,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc14.html#ZhangLWS13,https://doi.org/10.1631/jzus.C1200310 +Ling-yue Liu,An improved parallel contrast-aware halftoning.,2013,14,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc14.html#LiuCWZG13,https://doi.org/10.1631/jzus.C1300142 +Ya-tao Zhang,ECG quality assessment based on a kernel support vector machine and genetic algorithm with a feature matrix.,2014,15,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc15.html#ZhangLWWL14,https://doi.org/10.1631/jzus.C1300264 +Ping Xie,An efficient data layout scheme for better I/O balancing in RAID-6 storage systems.,2015,16,Frontiers of IT and EE,5,db/journals/jzusc/jzusc16.html#XieHDCX15,https://doi.org/10.1631/FITEE.1400362 +Mau-Luen Tham,Seamless handover between unicast and multicast multimedia streams.,2014,15,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc15.html#ThamCXCL14,https://doi.org/10.1631/jzus.C1400052 +Jian Shi,Credit scoring by feature-weighted support vector machines.,2013,14,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc14.html#ShiZQ13,https://doi.org/10.1631/jzus.C1200205 +Gongjun Liu,Adaptive tracking control for air-breathing hypersonic vehicles with state constraints.,2017,18,Frontiers of IT and EE,5,db/journals/jzusc/jzusc18.html#Liu17,https://doi.org/10.1631/FITEE.1500464 +Xin Li,An efficient prediction framework for multi-parametric yield analysis under parameter variations.,2016,17,Frontiers of IT and EE,12,db/journals/jzusc/jzusc17.html#LiSX16,https://doi.org/10.1631/FITEE.1601225 +Raf Guns,Unnormalized and normalized forms of gefura measures in directed and undirected networks.,2015,16,Frontiers of IT and EE,4,db/journals/jzusc/jzusc16.html#GunsR15,https://doi.org/10.1631/FITEE.1400425 +Maiquel de Brito,Supporting flexible regulation of crisis management by means of situated artificial institution.,2016,17,Frontiers of IT and EE,4,db/journals/jzusc/jzusc17.html#BritoTGBH16,https://doi.org/10.1631/FITEE.1500369 +Kai Huang 0002,Profiling and annotation combined method for multimedia application specific MPSoC performance estimation.,2015,16,Frontiers of IT and EE,2,db/journals/jzusc/jzusc16.html#HuangZXZYMHCY15,https://doi.org/10.1631/FITEE.1400239 +Shi-jin Ren,A novel multimode process monitoring method integrating LDRSKM with Bayesian inference.,2015,16,Frontiers of IT and EE,8,db/journals/jzusc/jzusc16.html#RenLZY15,https://doi.org/10.1631/FITEE.1400263 +Jingjing Wang,A micro-machined thin film electro-acoustic biosensor for detection of pesticide residuals.,2014,15,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc15.html#WangLCXZ14,https://doi.org/10.1631/jzus.C1300289 +Reng-Mao Wu,Ray targeting for optimizing smooth freeform surfaces for LED non-rotational illumination.,2013,14,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc14.html#WuLZZLL13,https://doi.org/10.1631/jzus.C1300032 +Jadav Chandra Das,Quantum-dot cellular automata based reversible low power parity generator and parity checker design for nanocommunication.,2016,17,Frontiers of IT and EE,3,db/journals/jzusc/jzusc17.html#DasD16,https://doi.org/10.1631/FITEE.1500079 +Reza Rezaei,A review of interoperability assessment models.,2013,14,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc14.html#RezaeiCL13,https://doi.org/10.1631/jzus.C1300013 +Yu Qing Chen,Time-dependent changes in eye-specific segregation in the dorsal lateral geniculate nucleus and superior colliculus of postnatal mice.,2014,15,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc15.html#ChenDDCZ14,https://doi.org/10.1631/jzus.C1400153 +,An interview with Dr. Raj Reddy on artificial intelligence.,2018,19,Frontiers of IT and EE,1,db/journals/jzusc/jzusc19.html#X18,https://doi.org/10.1631/FITEE.1700860 +Rui Song 0003,Statistically uniform intra-block refresh algorithm for very low delay video communication.,2013,14,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc14.html#SongWHL13,https://doi.org/10.1631/jzus.C1200333 +Jiliang Zhang 0003,Secrecy outage performance for wireless-powered relaying systems with nonlinear energy harvesters.,2017,18,Frontiers of IT and EE,2,db/journals/jzusc/jzusc18.html#ZhangPX17,https://doi.org/10.1631/FITEE.1601352 +Dong-ling Li,Low temperature Si/Si wafer direct bonding using a plasma activated method.,2013,14,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc14.html#LiSWW13,https://doi.org/10.1631/jzus.C12MNT02 +Rong Li,Procedural generation and real-time rendering of a marine ecosystem.,2014,15,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc15.html#LiDYGZWB14,https://doi.org/10.1631/jzus.C1300342 +Jie Shi,A fine-grained access control model for relational databases.,2010,11,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc11.html#ShiZ10,https://doi.org/10.1631/jzus.C0910466 +Jia Li 0003,Salient object extraction for user-targeted video content association.,2010,11,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc11.html#LiYTHG10,https://doi.org/10.1631/jzus.C1001004 +Bing Tian,Initial position estimation strategy for a surface permanent magnet synchronous motor used in hybrid electric vehicles.,2016,17,Frontiers of IT and EE,8,db/journals/jzusc/jzusc17.html#TianASSD16,https://doi.org/10.1631/FITEE.1500298 +Jia-Yin Song,Segmentation and focus-point location based on boundary analysis in forest canopy hemispherical photography.,2016,17,Frontiers of IT and EE,8,db/journals/jzusc/jzusc17.html#SongSHZ16,https://doi.org/10.1631/FITEE.1601169 +Melanie D. Myers,Tactical planning: improving performance for information technology (IT) groups creating digital projects.,2010,11,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc11.html#Myers10,https://doi.org/10.1631/jzus.C1001012 +Jamal Ghasemi,Brain tissue segmentation based on spatial information fusion by Dempster-Shafer theory.,2012,13,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc13.html#GhasemiMGH12,https://doi.org/10.1631/jzus.C1100288 +Kai Huang,High throughput VLSI architecture for H.264/AVC context-based adaptive binary arithmetic coding (CABAC) decoding.,2013,14,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc14.html#HuangMYGY13,https://doi.org/10.1631/jzus.C1200250 +Changbin Yu,Optimization of formation for multi-agent systems based on LQR.,2016,17,Frontiers of IT and EE,2,db/journals/jzusc/jzusc17.html#YuWS16,https://doi.org/10.1631/FITEE.1500490 +Xiurui Geng,Non-negative matrix factorization based unmixing for principal component transformed hyperspectral data.,2016,17,Frontiers of IT and EE,5,db/journals/jzusc/jzusc17.html#GengJS16,https://doi.org/10.1631/FITEE.1600028 +Feng Liu 0013,On 3D face reconstruction via cascaded regression in shape space.,2017,18,Frontiers of IT and EE,12,db/journals/jzusc/jzusc18.html#LiuZLZ17,https://doi.org/10.1631/FITEE.1700253 +Bin-bin Lei,Derivation and analysis on the analytical structure of interval type-2 fuzzy controller with two nonlinear fuzzy sets for each input variable.,2016,17,Frontiers of IT and EE,6,db/journals/jzusc/jzusc17.html#LeiDBX16,https://doi.org/10.1631/FITEE.1601019 +Dan Wu,Implementation and evaluation of parallel FFT on Engineering and Scientific Computation Accelerator (ESCA) architecture.,2011,12,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc12.html#WuZDRCZ11,https://doi.org/10.1631/jzus.C1100027 +Li-gang Ma,Urban landscape classification using Chinese advanced high-resolution satellite imagery and an object-oriented multi-variable model.,2015,16,Frontiers of IT and EE,3,db/journals/jzusc/jzusc16.html#MaDYHW15,https://doi.org/10.1631/FITEE.1400083 +Sahar Moghimi,Studying pressure sores through illuminant invariant assessment of digital color images.,2010,11,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc11.html#MoghimiBTKFA10,https://doi.org/10.1631/jzus.C0910552 +He Hao,Torque characteristics in a large permanent magnet synchronous generator with stator radial ventilating air ducts.,2016,17,Frontiers of IT and EE,8,db/journals/jzusc/jzusc17.html#HaoFMJS16,https://doi.org/10.1631/FITEE.1500238 +Qing-feng Li,Improving the efficiency of magnetic coupling energy transfer by etching fractal patterns in the shielding metals.,2016,17,Frontiers of IT and EE,1,db/journals/jzusc/jzusc17.html#LiCWHL16,https://doi.org/10.1631/FITEE.1500114 +Osama A. Khashan,ImgFS: a transparent cryptography for stored images using a filesystem in userspace.,2015,16,Frontiers of IT and EE,1,db/journals/jzusc/jzusc16.html#KhashanZS15,https://doi.org/10.1631/FITEE.1400133 +Lun-Yao Wang,Reed-Muller function optimization techniques with onset table.,2011,12,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc12.html#WangXCA11,https://doi.org/10.1631/jzus.C1000193 +Gang Dong,Antenna-in-package system integrated with meander line antenna based on LTCC technology.,2016,17,Frontiers of IT and EE,1,db/journals/jzusc/jzusc17.html#DongXWY16,https://doi.org/10.1631/FITEE.1500167 +Hai Huang 0004,An anthropomorphic controlled hand prosthesis system.,2012,13,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc13.html#0004LLJYWPH12,https://doi.org/10.1631/jzus.C1100257 +Kuo-Hui Yeh,Analysis and design of a smart card based authentication protocol.,2013,14,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc14.html#YehTH13,https://doi.org/10.1631/jzus.C1300158 +Lei Zhang,Using concurrent lines in central catadioptric camera calibration.,2011,12,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc12.html#ZhangDL11,https://doi.org/10.1631/jzus.C1000043 +Kangli Zhang,Efficient detection methods for amplify-and-forward relay-aided device-to-device systems with full-rate space-time block code.,2017,18,Frontiers of IT and EE,6,db/journals/jzusc/jzusc18.html#ZhangZGW17,https://doi.org/10.1631/FITEE.1700018 +Fadi M. Albatsh,Enhancing power transfer capability through flexible AC transmission system devices: a review.,2015,16,Frontiers of IT and EE,8,db/journals/jzusc/jzusc16.html#AlbatshMAMH15,https://doi.org/10.1631/FITEE.1500019 +Ching-chau Su,Detection and location of partial discharge in cast-resin dry-type transformers using a waveguide and a new acoustic emission sensor pair design.,2011,12,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc12.html#SuTTC11,https://doi.org/10.1631/jzus.C1000126 +Lin-rong Xiao,Design of dual-edge triggered flip-flops based on quantum-dot cellular automata.,2012,13,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc13.html#XiaoCY12,https://doi.org/10.1631/jzus.C1100287 +Xiao-fang Huang,A method of shadow puppet figure modeling and animation.,2015,16,Frontiers of IT and EE,5,db/journals/jzusc/jzusc16.html#HuangSZXWZ15,https://doi.org/10.1631/FITEE.1400351 +Rodrigo Méndez-Ramírez,Chaotic digital cryptosystem using serial peripheral interface protocol and its dsPIC implementation.,2018,19,Frontiers of IT and EE,2,db/journals/jzusc/jzusc19.html#Mendez-RamirezA18,https://doi.org/10.1631/FITEE.1601346 +Yu Qi,Abidirectional brain-computer interface for effective epilepsy control.,2014,15,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc15.html#QiMGWZZZW14,https://doi.org/10.1631/jzus.C1400152 +Dan Zeng,Three-dimensional deformation in curl vector field.,2012,13,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc13.html#ZengZ12,https://doi.org/10.1631/jzus.C1200004 +Jia Xie,Efficient identity-based signature over NTRU lattice.,2016,17,Frontiers of IT and EE,2,db/journals/jzusc/jzusc17.html#XieHGG16,https://doi.org/10.1631/FITEE.1500197 +Yuanping Nie,Attention-based encoder-decoder model for answer selection in question answering.,2017,18,Frontiers of IT and EE,4,db/journals/jzusc/jzusc18.html#NieHHJL17,https://doi.org/10.1631/FITEE.1601232 +Ji-chuan Li,Moving target detection in the cepstrum domain for passive coherent location (PCL) radar.,2015,16,Frontiers of IT and EE,9,db/journals/jzusc/jzusc16.html#LiLZYLX15,https://doi.org/10.1631/FITEE.1500036 +Deyuan Meng,Motion synchronization of dual-cylinder pneumatic servo systems with integration of adaptive robust control and cross-coupling approach.,2014,15,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc15.html#MengTLL14,https://doi.org/10.1631/jzus.C1300360 +Rabia Irfan,TIE algorithm: a layer over clustering-based taxonomy generation for handling evolving data.,2018,19,Frontiers of IT and EE,6,db/journals/jzusc/jzusc19.html#IrfanKRQ18,https://doi.org/10.1631/FITEE.1700517 +Chunxue Wang,Feature matching using quasi-conformal maps.,2017,18,Frontiers of IT and EE,5,db/journals/jzusc/jzusc18.html#WangL17,https://doi.org/10.1631/FITEE.1500411 +Enzhong Yang,A video conferencing system based on SDN-enabled SVC multicast.,2016,17,Frontiers of IT and EE,7,db/journals/jzusc/jzusc17.html#YangZYY16,https://doi.org/10.1631/FITEE.1601087 +Qianshan Li,Building a dense surface map incrementally from semi-dense point cloud and RGBimages.,2015,16,Frontiers of IT and EE,7,db/journals/jzusc/jzusc16.html#LiXHH15,https://doi.org/10.1631/FITEE.14a0260 +Lin Cao,Flight control for air-breathing hypersonic vehicles using linear quadratic regulator design based on stochastic robustness analysis.,2017,18,Frontiers of IT and EE,7,db/journals/jzusc/jzusc18.html#CaoTZ17,https://doi.org/10.1631/FITEE.1601363 +Chao Huang,Minimal role mining method for Web service composition.,2010,11,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc11.html#HuangSWS10,https://doi.org/10.1631/jzus.C0910186 +Yujun Xiao,NIPAD: a non-invasive power-based anomaly detection scheme for programmable logic controllers.,2017,18,Frontiers of IT and EE,4,db/journals/jzusc/jzusc18.html#XiaoXJMQ17,https://doi.org/10.1631/FITEE.1601540 +Hua-shan Liu,Saturated output feedback tracking control for robot manipulators via fuzzy self-tuning.,2010,11,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc11.html#LiuZC10,https://doi.org/10.1631/jzus.C0910772 +Shuang Li 0008,Layer-wise domain correction for unsupervised domain adaptation.,2018,19,Frontiers of IT and EE,1,db/journals/jzusc/jzusc19.html#LiSW18,https://doi.org/10.1631/FITEE.1700774 +Wei Wang 0067,Animmune local concentration based virus detection approach.,2011,12,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc12.html#WangZTH11,https://doi.org/10.1631/jzus.C1000445 +Qian Bi,Human-machine interaction force control: using a model-referenced adaptive impedance device to control an index finger exoskeleton.,2014,15,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc15.html#BiY14,https://doi.org/10.1631/jzus.C1300259 +Tianqi Wu,Dolphin swarm algorithm.,2016,17,Frontiers of IT and EE,8,db/journals/jzusc/jzusc17.html#WuYY16,https://doi.org/10.1631/FITEE.1500287 +Bo Mao,Beyond mirroring: multi-version disk arraywith improved performance and energy efficiency.,2011,12,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc12.html#MaoWF11,https://doi.org/10.1631/jzus.C1000407 +Hui Huang 0003,Cooperative spectrum sensing in cognitive radio systems with limited sensing ability.,2010,11,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc11.html#HuangZCHQ10,https://doi.org/10.1631/jzus.C0910027 +Mohammad Alshayeb,A framework for an integrated unified modeling language.,2016,17,Frontiers of IT and EE,2,db/journals/jzusc/jzusc17.html#AlshayebKM16,https://doi.org/10.1631/FITEE.1500094 +Jiao-jiao Zhu,Scratch-concerned yield modeling for IC manufacturing involved with a chemical mechanical polishing process.,2012,13,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc13.html#ZhuLCYY12,https://doi.org/10.1631/jzus.C1100242 +Jie Yuan,CMSOF: a structured data organization framework for scanned Chinese medicine books in digital libraries.,2010,11,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc11.html#YuanWWLZ10,https://doi.org/10.1631/jzus.C1001007 +Bin Lin 0003,A sparse matrix model-based optical proximity correction algorithm with model-based mapping between segments and control sites.,2011,12,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc12.html#LinYSY11,https://doi.org/10.1631/jzus.C1000219 +Lin-jun Fan,Quantitative evaluation of model consistency evolution in compositional service-oriented simulation using a connected hyper-digraph.,2014,15,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc15.html#FanLZT14,https://doi.org/10.1631/jzus.C1300089 +Xiao-hua Wang,Adaptive dynamic programming for linear impulse systems.,2014,15,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc15.html#WangYHWM14,https://doi.org/10.1631/jzus.C1300145 +Angela Hsiang-Ling Chen,Economic optimization of resource-constrained project scheduling: a two-phase metaheuristic approach.,2010,11,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc11.html#ChenC10,https://doi.org/10.1631/jzus.C0910633 +Yong-ping Du,A new item-based deep network structure using a restricted Boltzmann machine for collaborative filtering.,2017,18,Frontiers of IT and EE,5,db/journals/jzusc/jzusc18.html#DuYHL17,https://doi.org/10.1631/FITEE.1601732 +Ping Yang,Parameter estimation in exponential models by linear and nonlinear fitting methods.,2017,18,Frontiers of IT and EE,3,db/journals/jzusc/jzusc18.html#YangWGLHWZTMWS17,https://doi.org/10.1631/FITEE.1601683 +Ratna Sanyal,Importance of retrieving noun phrases and named entities from digital library content.,2010,11,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc11.html#SanyalKN10,https://doi.org/10.1631/jzus.C1001003 +Xiao-xia Zhang,Overlap maximum matching ratio (OMMR): a new measure to evaluate overlaps of essential modules.,2015,16,Frontiers of IT and EE,4,db/journals/jzusc/jzusc16.html#ZhangXLHXZ15,https://doi.org/10.1631/FITEE.1400282 +Lam-for Kwok,Building an e-Portfolio with a learning plan centric approach.,2012,13,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc13.html#KwokC12,https://doi.org/10.1631/jzus.C1100073 +Rui Zhao,A rectangle bin packing optimization approach to the signal scheduling problem in the FlexRay static segment.,2016,17,Frontiers of IT and EE,4,db/journals/jzusc/jzusc17.html#ZhaoQL16,https://doi.org/10.1631/FITEE.1500232 +Gaetano C. La Delfa,Performance analysis of visualmarkers for indoor navigation systems.,2016,17,Frontiers of IT and EE,8,db/journals/jzusc/jzusc17.html#DelfaMCPB16,https://doi.org/10.1631/FITEE.1500324 +Chang Xu,Index and retrieve the skyline based on dominance relationship.,2011,12,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc12.html#XuSCG11,https://doi.org/10.1631/jzus.C0900003 +Yun-he Pan,Important developments for the digital library: Data Ocean and Smart Library.,2010,11,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc11.html#Pan10,https://doi.org/10.1631/jzus.C1001000 +Wenzhe Zhang,Versionized process based on non-volatile random-access memory for fine-grained fault tolerance.,2018,19,Frontiers of IT and EE,2,db/journals/jzusc/jzusc19.html#ZhangLW18,https://doi.org/10.1631/FITEE.1601477 +Jie Shen 0011,End-to-end delay analysis for networked systems.,2015,16,Frontiers of IT and EE,9,db/journals/jzusc/jzusc16.html#ShenHLWWY15,https://doi.org/10.1631/FITEE.1400414 +Qiao Yu,A feature selection approach based on a similarity measure for software defect prediction.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#YuJWW17,https://doi.org/10.1631/FITEE.1601322 +Jingming Kuang,Joint DOA and channel estimation with data detection based on 2D unitary ESPRIT in massive MIMO systems.,2017,18,Frontiers of IT and EE,6,db/journals/jzusc/jzusc18.html#KuangZF17,https://doi.org/10.1631/FITEE.1700025 +Shoubiao Tan,Multi-stage dual replica bit-line delay technique for process-variation-robust timing of low voltage SRAM sense amplifier.,2015,16,Frontiers of IT and EE,8,db/journals/jzusc/jzusc16.html#TanLPLTC15,https://doi.org/10.1631/FITEE.1400439 +Elaheh Mashhour,Mathematical modeling of electrochemical storage for incorporation in methods to optimize the operational planning of an interconnected micro grid.,2010,11,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc11.html#MashhourT10,https://doi.org/10.1631/jzus.C0910721 +Chuhua Huang,A multiscale-contour-based interpolation framework for generating a time-varying quasi-dense point cloud sequence.,2016,17,Frontiers of IT and EE,5,db/journals/jzusc/jzusc17.html#HuangLD16,https://doi.org/10.1631/FITEE.1500316 +Hong Liu,Inertial measurement unit-camera calibration based on incomplete inertial sensor information.,2014,15,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc15.html#LiuZG14,https://doi.org/10.1631/jzus.C1400038 +Zheng Liu,Scale-aware shape manipulation.,2014,15,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc15.html#LiuWLL14,https://doi.org/10.1631/jzus.C1400122 +Zhi-Qiang Feng,Knowledge modeling based on interval-valued fuzzy rough set and similarity inference: prediction of welding distortion.,2014,15,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc15.html#FengLH14,https://doi.org/10.1631/jzus.C1300370 +Yu-Hua Cheng,Third harmonic distortion calculation of a self-oscillating power amplifier.,2011,12,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc12.html#ChengT11,https://doi.org/10.1631/jzus.C1000097 +Fu-qiang Zhou,Dust collector localization in trouble of moving freight car detection system.,2013,14,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc14.html#ZhouZG13,https://doi.org/10.1631/jzus.C1200223 +Xiuxiu Wen,Performance analysis and optimization for chunked network coding based wireless cooperative downloading systems.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#WenWLFLH17,https://doi.org/10.1631/FITEE.1601361 +Lei Wang 0055,Number estimation of controllers for pinning a complex dynamical network.,2011,12,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc12.html#WangSS11,https://doi.org/10.1631/jzus.C1010247 +Mounir Hadef,Moments and Pasek's methods for parameter identification of a DC motor.,2011,12,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc12.html#HadefM11,https://doi.org/10.1631/jzus.C0910795 +Jin Zhang 0005,Interactive image segmentation with a regression based ensemble learning paradigm.,2017,18,Frontiers of IT and EE,7,db/journals/jzusc/jzusc18.html#ZhangTGCL17,https://doi.org/10.1631/FITEE.1601401 +Xibin Jia,Words alignment based on association rules for cross-domain sentiment classification.,2018,19,Frontiers of IT and EE,2,db/journals/jzusc/jzusc19.html#JiaJLSCB18,https://doi.org/10.1631/FITEE.1601679 +Mengni Zhang,A sampling method based on URL clustering for fast web accessibility evaluation.,2015,16,Frontiers of IT and EE,6,db/journals/jzusc/jzusc16.html#ZhangWBYZC15,https://doi.org/10.1631/FITEE.1400377 +Jijun Tong,Kernel sparse representation for MRI image analysis in automatic brain tumor segmentation.,2018,19,Frontiers of IT and EE,4,db/journals/jzusc/jzusc19.html#TongZWZ18,https://doi.org/10.1631/FITEE.1620342 +Yong-zhao Zhan,A blind watermarking algorithm for 3D mesh models based on vertex curvature.,2014,15,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc15.html#ZhanLWQ14,https://doi.org/10.1631/jzus.C1300306 +Heng Nian,Multiple target implementation for a doubly fed induction generator based on direct power control under unbalanced and distorted grid voltage.,2015,16,Frontiers of IT and EE,4,db/journals/jzusc/jzusc16.html#NianS15,https://doi.org/10.1631/FITEE.1400170 +Fengyu Zhou,A high precision visual localization sensor and its working methodology for an indoor mobile robot.,2016,17,Frontiers of IT and EE,4,db/journals/jzusc/jzusc17.html#ZhouYYJZ16,https://doi.org/10.1631/FITEE.1500272 +Bo Liu,An OpenFlow-based performance-oriented multipath forwarding scheme in datacenters.,2016,17,Frontiers of IT and EE,7,db/journals/jzusc/jzusc17.html#Liu0XHHZX16,https://doi.org/10.1631/FITEE.1601059 +Chang-Il Son,Diffusion tensor interpolation profile control using non-uniform motion on a Riemannian geodesic.,2012,13,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc13.html#SonX12,https://doi.org/10.1631/jzus.C1100098 +László Lengyel,Test-driven verification/validation of model transformations.,2015,16,Frontiers of IT and EE,2,db/journals/jzusc/jzusc16.html#LengyelC15,https://doi.org/10.1631/FITEE.1400111 +Wenjia Liu,Enhanced uplink non-orthogonal multiple access for 5G and beyond systems.,2018,19,Frontiers of IT and EE,3,db/journals/jzusc/jzusc19.html#LiuHC18,https://doi.org/10.1631/FITEE.1700842 +Quan-bo Ge,SCKF-STF-CN: a universal nonlinear filter for maneuver target tracking.,2011,12,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc12.html#GeLW11,https://doi.org/10.1631/jzus.C10a0353 +Yuxiang Li,Optimization of thread partitioning parameters in speculative multithreading based on artificial immune algorithm.,2015,16,Frontiers of IT and EE,3,db/journals/jzusc/jzusc16.html#LiZLJ15,https://doi.org/10.1631/FITEE.1400172 +Ralf Mueller,Enterprise applications of semantic technologies for business process management.,2012,13,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc13.html#Mueller12,https://doi.org/10.1631/jzus.C1101011 +Friederike Wall,Organizational dynamics in adaptive distributed search processes: effects on performance and the role of complexity.,2016,17,Frontiers of IT and EE,4,db/journals/jzusc/jzusc17.html#Wall16,https://doi.org/10.1631/FITEE.1500306 +Zoe L. Jiang,k-Dimensional hashing scheme for hard disk integrity verification in computer forensics.,2011,12,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc12.html#JiangFHYCS11,https://doi.org/10.1631/jzus.C1000425 +Ying-wei Zhang,Adaptive multiblock kernel principal component analysis for monitoring complex industrial processes.,2010,11,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc11.html#ZhangT10,https://doi.org/10.1631/jzus.C1000148 +Xian Zang,Fast global kernel fuzzy c-means clustering algorithm for consonant/vowel segmentation of speech signal.,2014,15,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc15.html#ZangVC14,https://doi.org/10.1631/jzus.C1300320 +Xiaosong Zhang,Proactive worm propagation modeling and analysis in unstructured peer-to-peer networks.,2010,11,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc11.html#ZhangCZL10,https://doi.org/10.1631/jzus.C0910488 +Jun Huang,Tracking control of the linear differential inclusion.,2011,12,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc12.html#HuangH11,https://doi.org/10.1631/jzus.C1000240 +Shuang-shuang Fan,Underwater glider design based on dynamic model analysis and prototype development.,2013,14,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc14.html#FanYPLXZ13,https://doi.org/10.1631/jzus.C1300001 +Sun-Hee Kim,Incremental expectation maximization principal component analysis for missing value imputation for coevolving EEG data.,2011,12,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc12.html#KimYN11,https://doi.org/10.1631/jzus.C10b0359 +Nan Chen,PRISMO: predictive skyline query processing over moving objects.,2012,13,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc13.html#ChenSCGD12,https://doi.org/10.1631/jzus.C10a0728 +Tao Huang 0005,Capacity analysis for cognitive heterogeneous networks with ideal/non-ideal sensing.,2015,16,Frontiers of IT and EE,1,db/journals/jzusc/jzusc16.html#HuangTLL15,https://doi.org/10.1631/FITEE.1400129 +Guoliang Tao,Posture control of a 3-RPS pneumatic parallel platform with parameter initialization and an adaptive robust method.,2017,18,Frontiers of IT and EE,3,db/journals/jzusc/jzusc18.html#TaoSMZ17,https://doi.org/10.1631/FITEE.1500353 +Xiao Liu 0003,HAPE3D - a new constructive algorithm for the 3D irregular packing problem.,2015,16,Frontiers of IT and EE,5,db/journals/jzusc/jzusc16.html#LiuLCY15,https://doi.org/10.1631/FITEE.1400421 +Yun-he Pan,Special issue on artificial intelligence 2.0.,2017,18,Frontiers of IT and EE,1,db/journals/jzusc/jzusc18.html#Pan17,https://doi.org/10.1631/FITEE.1710000 +Yang Guo,A new parallel meshing technique integrated into the conformal FDTD method for solving complex electromagnetic problems.,2014,15,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc15.html#GuoWH14,https://doi.org/10.1631/jzus.C1400135 +Yi Wei,Design of a novel low power 8-transistor 1-bit full adder cell.,2011,12,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc12.html#WeiS11,https://doi.org/10.1631/jzus.C1000372 +Xin Sun 0003,Electrical characterization of integrated passive devices using thin film technology for 3D integration.,2013,14,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc14.html#SunZLCMCMJ13,https://doi.org/10.1631/jzus.C12MNT01 +Zhi-zhong Tan,Characteristic of the equivalent impedance for an m*n RLC network with an arbitrary boundary.,2017,18,Frontiers of IT and EE,12,db/journals/jzusc/jzusc18.html#TanZAXT17,https://doi.org/10.1631/FITEE.1700037 +Bin Yu,Artificial intelligence and statistics.,2018,19,Frontiers of IT and EE,1,db/journals/jzusc/jzusc19.html#YuK18,https://doi.org/10.1631/FITEE.1700813 +Yi-die Ye,New Technique: A low drift current reference based on PMOS temperature correction technology.,2012,13,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc13.html#YeHS12,https://doi.org/10.1631/jzus.C1200112 +Aftab Ahmed Chandio,Towards adaptable and tunable cloud-based map-matching strategy for GPS trajectories.,2016,17,Frontiers of IT and EE,12,db/journals/jzusc/jzusc17.html#ChandioTZYX16,https://doi.org/10.1631/FITEE.1600027 +Yuwen Qian,Performance analysis for a two-way relaying power line network with analog network coding.,2015,16,Frontiers of IT and EE,10,db/journals/jzusc/jzusc16.html#QianTJSSL15,https://doi.org/10.1631/FITEE.1500135 +Bo-hu Li,Applications of artificial intelligence in intelligent manufacturing: a review.,2017,18,Frontiers of IT and EE,1,db/journals/jzusc/jzusc18.html#LiHYLY17,https://doi.org/10.1631/FITEE.1601885 +Zhang Liang,Synthesizing style-preserving cartoons via non-negative style factorization.,2012,13,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc13.html#LiangXZ12,https://doi.org/10.1631/jzus.C1100202 +Dongwei Xu,Real-time road traffic state prediction based on ARIMA and Kalman filter.,2017,18,Frontiers of IT and EE,2,db/journals/jzusc/jzusc18.html#XuWJQD17,https://doi.org/10.1631/FITEE.1500381 +Chung-Fu Lu,A three-level authenticated conference key establishment protocol for UMTS networks.,2011,12,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc12.html#LuWH11,https://doi.org/10.1631/jzus.C1000194 +Shih-Kung Lai,Theoretical foundation of a decision network for urban development.,2017,18,Frontiers of IT and EE,8,db/journals/jzusc/jzusc18.html#LaiH17,https://doi.org/10.1631/FITEE.1510000 +Jue Wang 0008,Joint compressed sensing imaging and phase adjustment via an iterative method for multistatic passive radar.,2018,19,Frontiers of IT and EE,4,db/journals/jzusc/jzusc19.html#WangW18,https://doi.org/10.1631/FITEE.1601423 +Xuesong Chen,Galerkin approximationwith Legendre polynomials for a continuous-time nonlinear optimal control problem.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#Chen17,https://doi.org/10.1631/FITEE.1601101 +Lin-Bo Qiao,A systematic review of structured sparse learning.,2017,18,Frontiers of IT and EE,4,db/journals/jzusc/jzusc18.html#QiaoZSL17,https://doi.org/10.1631/FITEE.1601489 +Ting Guo,A 37 GHz wide-band programmable divide-by-N frequency divider for millimeter-wave silicon-based phase-locked loop frequency synthesizers.,2014,15,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc15.html#GuoLLW14,https://doi.org/10.1631/jzus.C1400091 +Jian Cao,A review of object representation based on local features.,2013,14,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc14.html#CaoMCLD13,https://doi.org/10.1631/jzus.CIDE1303 +Peng-kang Xie,Influence of motor cable on common-mode currents in an inverter-fed motor drive system.,2018,19,Frontiers of IT and EE,2,db/journals/jzusc/jzusc19.html#XieLCC18,https://doi.org/10.1631/FITEE.1601518 +Guanghui Song,Two-level hierarchical feature learning for image classification.,2016,17,Frontiers of IT and EE,9,db/journals/jzusc/jzusc17.html#Song0CN16,https://doi.org/10.1631/FITEE.1500346 +Meiqin Liu,H∞ reference tracking control design for a class of nonlinear systems with time-varying delays.,2015,16,Frontiers of IT and EE,9,db/journals/jzusc/jzusc16.html#LiuCZ15,https://doi.org/10.1631/FITEE.1500053 +Salvador Ibarra-Martínez,Optimizing urban traffic control using a rational agent.,2014,15,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc15.html#Ibarra-MartinezCL14,https://doi.org/10.1631/jzus.C1400037 +Yong Ding 0003,Efficient scheme of low-dose CT reconstruction using TV minimization with an adaptive stopping strategy and sparse dictionary learning for post-processing.,2017,18,Frontiers of IT and EE,12,db/journals/jzusc/jzusc18.html#DingH17,https://doi.org/10.1631/FITEE.1700287 +Huajun Chen,A multi-agent framework for mining semantic relations from linked data.,2012,13,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc13.html#ChenYZGZ12,https://doi.org/10.1631/jzus.C1101010 +Fa-en Liu,A 31-45.5 GHz injection-locked frequency divider in 90-nm CMOS technology.,2014,15,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc15.html#LiuWLLTY14,https://doi.org/10.1631/jzus.C1400080 +Wei Xia,An enhanced mixed modulated Lagrange explicit time delay estimator with noisy input.,2016,17,Frontiers of IT and EE,10,db/journals/jzusc/jzusc17.html#XiaZJZ16,https://doi.org/10.1631/FITEE.1500417 +Jing Chen,Feature-based initial population generation for the optimization of job shop problems.,2010,11,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc11.html#ChenZGY10,https://doi.org/10.1631/jzus.C0910707 +Xi-chuan Zhou,Notifiable infectious disease surveillance with data collected by search engine.,2010,11,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc11.html#ZhouS10,https://doi.org/10.1631/jzus.C0910371 +Partha Pratim Roy 0001,Tandem hidden Markov models using deep belief networks for offline handwriting recognition.,2017,18,Frontiers of IT and EE,7,db/journals/jzusc/jzusc18.html#RoyZC17,https://doi.org/10.1631/FITEE.1600996 +Behrooz Rezaie,Global stability analysis of computer networks with arbitrary topology and time-varying delays.,2010,11,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc11.html#RezaieMKA10,https://doi.org/10.1631/jzus.C0910216 +Le-Qing Zhu,Insect recognition based on integrated region matching and dual tree complex wavelet transform.,2011,12,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc12.html#ZhuZ11,https://doi.org/10.1631/jzus.C0910740 +Li Weigang,First and Others credit-assignment schema for evaluating the academic contribution of coauthors.,2017,18,Frontiers of IT and EE,2,db/journals/jzusc/jzusc18.html#Weigang17,https://doi.org/10.1631/FITEE.1600991 +Shan Cheng,Optimal placement of distributed generation units in distribution systems via an enhanced multi-objective particle swarm optimization algorithm.,2014,15,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc15.html#ChengCWW14,https://doi.org/10.1631/jzus.C1300250 +Abbas Koochari,Exemplar-based video inpainting with large patches.,2010,11,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc11.html#KoochariS10,https://doi.org/10.1631/jzus.C0910308 +Juan Jose Cuadrado-Gallego,An experimental study on the conversion between IFPUG and UCP functional size measurement units.,2014,15,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc15.html#Cuadrado-GallegoARL14,https://doi.org/10.1631/jzus.C1300102 +Hasan Abbasi Nozari,Intelligent non-linear modelling of an industrial winding process using recurrent local linear neuro-fuzzy networks.,2012,13,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc13.html#NozariBMV12,https://doi.org/10.1631/jzus.C11a0278 +Yueting Zhuang,Challenges and opportunities: from big data to knowledge in AI 2.0.,2017,18,Frontiers of IT and EE,1,db/journals/jzusc/jzusc18.html#ZhuangWCP17,https://doi.org/10.1631/FITEE.1601883 +Yihu Xu,Spectrum sensing using multiple dual polarization antennas for cognitive radio systems in microcell environments.,2013,14,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc14.html#XuL13,https://doi.org/10.1631/jzus.C1300086 +Ian Horrocks,Semantics and#8851* scalability and#8872* and#8869*?,2012,13,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc13.html#Horrocks12,https://doi.org/10.1631/jzus.C1101001 +Ximing Li,Topic modeling for large-scale text data.,2015,16,Frontiers of IT and EE,6,db/journals/jzusc/jzusc16.html#LiOL15,https://doi.org/10.1631/FITEE.1400352 +Qiyan Tian,Adaptive fuzzy integral sliding mode velocity control for the cutting system of a trench cutter.,2016,17,Frontiers of IT and EE,1,db/journals/jzusc/jzusc17.html#TianWFG16,https://doi.org/10.1631/FITEE.15a0160 +Zhen Geng,Regularized level-set-based inverse lithography algorithm for IC mask synthesis.,2013,14,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc14.html#GengSYL13,https://doi.org/10.1631/jzus.C1300050 +Yuan Liang,Friendship-aware task planning in mobile crowdsourcing.,2017,18,Frontiers of IT and EE,1,db/journals/jzusc/jzusc18.html#LiangLWX17,https://doi.org/10.1631/FITEE.1601860 +Wei Xiang,Crowdsourcing intelligent design.,2018,19,Frontiers of IT and EE,1,db/journals/jzusc/jzusc19.html#XiangSYY18,https://doi.org/10.1631/FITEE.1700810 +Mahmoud Reza Shakarami,Robust design of static synchronous series compensator-based stabilizer for damping inter-area oscillations using quadratic mathematical programming.,2010,11,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc11.html#ShakaramiK10,https://doi.org/10.1631/jzus.C0910428 +Zhixiang Chen,Schedule refinement for homogeneous multi-core processors in the presence of manufacturing-caused heterogeneity.,2015,16,Frontiers of IT and EE,12,db/journals/jzusc/jzusc16.html#ChenLCWZ15,https://doi.org/10.1631/FITEE.1500035 +Behrouz Afzal,An accurate analytical I-V model for sub-90-nm MOSFETs and its application to read static noise margin modeling.,2012,13,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc13.html#AfzalEAP12,https://doi.org/10.1631/jzus.C1100090 +Huizong Li,A social tag clustering method based on common co-occurrence group similarity.,2016,17,Frontiers of IT and EE,2,db/journals/jzusc/jzusc17.html#LiHLHP16,https://doi.org/10.1631/FITEE.1500187 +Bowei Yang,An incentive model for voting based on information-hiding in P2P networks.,2010,11,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc11.html#YangSZ10,https://doi.org/10.1631/jzus.C0910727 +Jian Cheng 0001,Recent advances in efficient computation of deep convolutional neural networks.,2018,19,Frontiers of IT and EE,1,db/journals/jzusc/jzusc19.html#ChengWLHL18,https://doi.org/10.1631/FITEE.1700789 +Xiaohong Tan,Personalized course generation and evolution based on genetic algorithms.,2012,13,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc13.html#TanSW12,https://doi.org/10.1631/jzus.C1200174 +Wei Wang,Robust optical flow estimation based on brightness correction fields.,2011,12,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc12.html#WangSPWS11,https://doi.org/10.1631/jzus.C1100062 +Mustafa Gokdag,A novel PV sub-module-level power-balancing topology for maximum power point tracking under partial shading and mismatch conditions.,2016,17,Frontiers of IT and EE,12,db/journals/jzusc/jzusc17.html#GokdagA16,https://doi.org/10.1631/FITEE.1500322 +Weidong Chen 0002,A P300 based online brain-computer interface system for virtual hand control.,2010,11,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc11.html#ChenZZLQSWZDZ10,https://doi.org/10.1631/jzus.C0910530 +Omid Abbaszadeh,An ensemble method for data stream classification in the presence of concept drift.,2015,16,Frontiers of IT and EE,12,db/journals/jzusc/jzusc16.html#Abbaszadeh0K15,https://doi.org/10.1631/FITEE.1400398 +Wei Zhang,Design and simulation of a standing wave oscillator based PLL.,2016,17,Frontiers of IT and EE,3,db/journals/jzusc/jzusc17.html#ZhangHZ16,https://doi.org/10.1631/FITEE.1500210 +Zhe-jing Bao,Control of cascading failures in coupled map lattices based on adaptive predictive pinning control.,2011,12,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc12.html#BaoWY11,https://doi.org/10.1631/jzus.C1000369 +Maode Yan,Consensus-based three-dimensionalmulti-UAV formation control strategy with high precision.,2017,18,Frontiers of IT and EE,7,db/journals/jzusc/jzusc18.html#YanZZQ17,https://doi.org/10.1631/FITEE.1600004 +Mei Wen,Improving performance portability for GPU-specific OpenCL kernels on multi-core/many-core CPUs by analysis-based transformations.,2015,16,Frontiers of IT and EE,11,db/journals/jzusc/jzusc16.html#WenHXC15,https://doi.org/10.1631/FITEE.1500032 +Guijie Wang,Joint adaptive power allocation and interference suppression algorithms based on theMSER criterion for wireless sensor networks.,2014,15,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc15.html#WangCZZ14,https://doi.org/10.1631/jzus.C1400034 +Sadegh Jamali,A wavelet packet based method for adaptive single-pole auto-reclosing.,2010,11,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc11.html#JamaliG10,https://doi.org/10.1631/jzus.C0910617 +Shu-you Zhang,A knowledge push technology based on applicable probability matching and multidimensional context driving.,2018,19,Frontiers of IT and EE,2,db/journals/jzusc/jzusc19.html#ZhangGLT18,https://doi.org/10.1631/FITEE.1700763 +Quanshi Zhang,Visual interpretability for deep learning: a survey.,2018,19,Frontiers of IT and EE,1,db/journals/jzusc/jzusc19.html#ZhangZ18,https://doi.org/10.1631/FITEE.1700808 +Zhi-ping Zeng,Computational methods in super-resolution microscopy.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#ZengXCZZYX17,https://doi.org/10.1631/FITEE.1601628 +Kai-sheng Luo,SVM based layout retargeting for fast and regularized inverse lithography.,2014,15,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc15.html#LuoSYG14,https://doi.org/10.1631/jzus.C1300357 +Shuiqing Gong,An efficient and coordinated mapping algorithm in virtualized SDN networks.,2016,17,Frontiers of IT and EE,7,db/journals/jzusc/jzusc17.html#GongCKMZZ16,https://doi.org/10.1631/FITEE.1500387 +Myung-Jae Kim,Histogram equalization using a reduced feature set of background speakers' utterances for speaker recognition.,2017,18,Frontiers of IT and EE,5,db/journals/jzusc/jzusc18.html#KimYKY17,https://doi.org/10.1631/FITEE.1500380 +Cheng-gang Cui,A relative feasibility degree based approach for constrained optimization problems.,2010,11,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc11.html#CuiLW10,https://doi.org/10.1631/jzus.C0910072 +Xingguo Zhu,A reversibility-gain model for integer Karhunen-Loève transform design in video coding.,2015,16,Frontiers of IT and EE,10,db/journals/jzusc/jzusc16.html#ZhuY15,https://doi.org/10.1631/FITEE.1500071 +Jiwoong Bang,Effective operation and performance improvement methods for OMTP BONDI-based mobile Web widget resources.,2011,12,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc12.html#BangK11,https://doi.org/10.1631/jzus.C1000379 +Sheng-chao Deng,Nonlinear programming control using differential aerodynamic drag for CubeSat formation flying.,2017,18,Frontiers of IT and EE,7,db/journals/jzusc/jzusc18.html#DengMJ17,https://doi.org/10.1631/FITEE.1500493 +Hui Zhao,Ergodic secrecy capacity of MRC/SC in single-input multiple-output wiretap systems with imperfect channel state information.,2017,18,Frontiers of IT and EE,4,db/journals/jzusc/jzusc18.html#ZhaoTPC17,https://doi.org/10.1631/FITEE.1500430 +Weidong Zhu,Development of a monocular vision system for robotic drilling.,2014,15,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc15.html#ZhuMYK14,https://doi.org/10.1631/jzus.C1300379 +Xian Zang,Erratum to: Fast global kernel fuzzy c-means clustering algorithm for consonant/vowel segmentation of speech signal.,2014,15,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc15.html#ZangVC14a,https://doi.org/10.1631/jzus.C13e0320 +Bing-kun Wang,Short text classification based on strong feature thesaurus.,2012,13,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc13.html#WangHYL12,https://doi.org/10.1631/jzus.C1100373 +Lu Wang 0007,Portrait drawing from corresponding range and intensity images.,2013,14,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc14.html#WangLYHM13,https://doi.org/10.1631/jzus.CIDE1306 +Jingyu Lin,Transient imaging with a time-of-flight camera and its applications.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#LinWWL17,https://doi.org/10.1631/FITEE.1700556 +Yongwei Miao,Visual salience guided feature-aware shape simplification.,2014,15,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc15.html#MiaoHCLS14,https://doi.org/10.1631/jzus.C1400097 +Hong-Tao Wang,Coordinated control of an intelligentwheelchair based on a brain-computer interface and speech recognition.,2014,15,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc15.html#WangLY14,https://doi.org/10.1631/jzus.C1400150 +Tong-yang Jiang,An efficient measurement-driven sequential Monte Carlo multi-Bernoulli filter for multi-target filtering.,2014,15,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc15.html#JiangLWZ14,https://doi.org/10.1631/jzus.C1400025 +Reza Ebrahimi,U-shaped energy loss curves utilization for distributed generation optimization in distribution networks.,2013,14,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc14.html#EbrahimiEN13,https://doi.org/10.1631/jzus.C1200282 +Hongze Leng,Notes and correspondence on ensemble-based three-dimensional variational filters.,2013,14,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc14.html#LengSYC13,https://doi.org/10.1631/jzus.C1300024 +Jianru Xue,A vision-centered multi-sensor fusing approach to self-localization and obstacle perception for robotic cars.,2017,18,Frontiers of IT and EE,1,db/journals/jzusc/jzusc18.html#XueWDCHZ17,https://doi.org/10.1631/FITEE.1601873 +Tian-liang Yang,Feedback analysis and design of inductive power links driven by Class-E amplifiers with variable coupling coefficients.,2010,11,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc11.html#YangZC10,https://doi.org/10.1631/jzus.C0910607 +Ya-li Cao,A ranking SVM based fusion model for cross-media meta-search engine.,2010,11,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc11.html#CaoHT10,https://doi.org/10.1631/jzus.C1001009 +Huanzhao Wang,A secure and high-performance multi-controller architecture for software-defined networking.,2016,17,Frontiers of IT and EE,7,db/journals/jzusc/jzusc17.html#WangZXLH16,https://doi.org/10.1631/FITEE.1500321 +Yi-nan Wang,On modeling of electrical cyber-physical systems considering cyber security.,2016,17,Frontiers of IT and EE,5,db/journals/jzusc/jzusc17.html#WangLLXYY16,https://doi.org/10.1631/FITEE.1500446 +Zhenyu Liu 0005,Assembly variation analysis of flexible curved surfaces based on Bézier curves.,2018,19,Frontiers of IT and EE,6,db/journals/jzusc/jzusc19.html#LiuZCQT18,https://doi.org/10.1631/FITEE.1601619 +Lei-lei Kou,Effect of orbital errors on the geosynchronous circular synthetic aperture radar imaging and interferometric processing.,2011,12,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc12.html#KouWXCZ11,https://doi.org/10.1631/jzus.C1000170 +Zhaohui Wu,Recent advances of the Semantic Web.,2012,13,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc13.html#Wu12,https://doi.org/10.1631/jzus.C1101000 +Vignesh Renganathan Raja,A subtree-based approach to failure detection and protection for multicast in SDN.,2016,17,Frontiers of IT and EE,7,db/journals/jzusc/jzusc17.html#RajaLPWS16,https://doi.org/10.1631/FITEE.1601135 +Xiao-hua Luo,A new via chain design method considering confidence level and estimation precision.,2012,13,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc13.html#LuoCZY12,https://doi.org/10.1631/jzus.C1200079 +Nannan Zhao,A reliable power management scheme for consistent hashing based distributed key value storage systems.,2016,17,Frontiers of IT and EE,10,db/journals/jzusc/jzusc17.html#ZhaoW0X16,https://doi.org/10.1631/FITEE.1601162 +Vahid Bastani,Image compression based on spatial redundancy removal and image inpainting.,2010,11,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc11.html#BastaniHK10,https://doi.org/10.1631/jzus.C0910182 +Huan Shi,Blinking adaptation for synchronizing a mobile agent network.,2011,12,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc12.html#ShiDS11,https://doi.org/10.1631/jzus.C1000338 +Jian Niu,Model predictive control with an on-line identification model of a supply chain unit.,2010,11,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc11.html#NiuXZSQ10,https://doi.org/10.1631/jzus.C0910270 +Razieh Sadat Sadjady,A self-routing load balancing algorithm in parallel computing: comparison to the central algorithm.,2011,12,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc12.html#SadjadyZ11,https://doi.org/10.1631/jzus.C1000211 +Bo-Yang Qu,Multi-objective differential evolution with diversity enhancement.,2010,11,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc11.html#QuS10,https://doi.org/10.1631/jzus.C0910481 +Bo Jin,A differential control method for the proportional directional valve.,2014,15,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc15.html#JinZLZZC14,https://doi.org/10.1631/jzus.C1400056 +Gaoqi He,Shadow obstacle model for realistic corner-turning behavior in crowd simulation.,2016,17,Frontiers of IT and EE,3,db/journals/jzusc/jzusc17.html#HeJCLYL16,https://doi.org/10.1631/FITEE.1500253 +Ji-ming Li,Clustering-based hyperspectral band selection using sparse nonnegative matrix factorization.,2011,12,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc12.html#LiQ11,https://doi.org/10.1631/jzus.C1000304 +Pingping Wu,Spontaneous versus posed smile recognition via region-specific texture descriptor and geometric facial dynamics.,2017,18,Frontiers of IT and EE,7,db/journals/jzusc/jzusc18.html#WuLZG17,https://doi.org/10.1631/FITEE.1600041 +Hui Zhao,Physical layer security of underlay cognitive radio using maximal ratio combining.,2016,17,Frontiers of IT and EE,9,db/journals/jzusc/jzusc17.html#ZhaoWTLPLC16,https://doi.org/10.1631/FITEE.1500351 +Le-kui Zhou,Disambiguating named entities with deep supervised learning via crowd labels.,2017,18,Frontiers of IT and EE,1,db/journals/jzusc/jzusc18.html#ZhouTXWZ17,https://doi.org/10.1631/FITEE.1601835 +Zi-ang Ma,Robust object tracking with RGBD-based sparse learning.,2017,18,Frontiers of IT and EE,7,db/journals/jzusc/jzusc18.html#MaX17,https://doi.org/10.1631/FITEE.1601338 +Eunsung Kim,Asymmetry-aware load balancing for parallel applications in single-ISA multi-core systems.,2012,13,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc13.html#KimEY12,https://doi.org/10.1631/jzus.C1100198 +Mao-hua Zhang,Turning mechanism and composite control of stratospheric airships.,2012,13,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc13.html#ZhangDC12,https://doi.org/10.1631/jzus.C1200084 +Hui Zhou,Exploring the mechanism of neural-function reconstruction by reinnervated nerves in targeted muscles.,2014,15,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc15.html#ZhouYWHZYL14,https://doi.org/10.1631/jzus.C1400154 +Ziyang Li,VirtMan: design and implementation of a fast booting system for homogeneous virtual machines in iVCE.,2016,17,Frontiers of IT and EE,2,db/journals/jzusc/jzusc17.html#LiZLZL16,https://doi.org/10.1631/FITEE.1500216 +Yanhong Liu,Ray-triangular Bézier patch intersection using hybrid clipping algorithm.,2016,17,Frontiers of IT and EE,10,db/journals/jzusc/jzusc17.html#LiuCCZ16,https://doi.org/10.1631/FITEE.1500390 +Yong Cheng,Efficient revocation in ciphertext-policy attribute-based encryption based cryptographic cloud storage.,2013,14,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc14.html#ChengWMWMR13,https://doi.org/10.1631/jzus.C1200240 +Ke Jin,Ultra-wideband FMCW ISAR imaging with a large rotation angle based on block-sparse recovery.,2017,18,Frontiers of IT and EE,12,db/journals/jzusc/jzusc18.html#JinLLWZ17,https://doi.org/10.1631/FITEE.1601310 +Ruoyu Zhang,Compressed sensing-based structured joint channel estimation in a multi-user massive MIMO system.,2017,18,Frontiers of IT and EE,12,db/journals/jzusc/jzusc18.html#ZhangZJ17,https://doi.org/10.1631/FITEE.1601635 +Ye-tian Fan,A pruning algorithm with L 1/2 regularizer for extreme learning machine.,2014,15,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc15.html#FanWYFW14,https://doi.org/10.1631/jzus.C1300197 +Jian Hao,Determination of cut-off time of accelerated aging test under temperature stress for LED lamps.,2017,18,Frontiers of IT and EE,8,db/journals/jzusc/jzusc18.html#HaoJKWGWSX17,https://doi.org/10.1631/FITEE.1500483 +Minghao Hu,Meeting deadlines for approximation processing in MapReduce environments.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#HuWP17,https://doi.org/10.1631/FITEE.1601056 +Qiong Hu,Zipfian interpretation of textbook vocabulary lists: comments on Xiao et al.'s Corpus-based research on English word recognition rates in primary school and word selection strategy.,2017,18,Frontiers of IT and EE,7,db/journals/jzusc/jzusc18.html#HuY17,https://doi.org/10.1631/FITEE.1700418 +Yu-xi Wang,Colocated MIMO radar waveform-design based on two-step optimizations in spatial and spectral domains.,2017,18,Frontiers of IT and EE,7,db/journals/jzusc/jzusc18.html#WangHLL17,https://doi.org/10.1631/FITEE.1601726 +Gang Wu,Improving SPARQL query performance with algebraic expression tree based caching and entity caching.,2012,13,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc13.html#WuY12,https://doi.org/10.1631/jzus.C1101009 +Dan Wu,Scale-free brain ensemble modulated by phase synchronization.,2014,15,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc15.html#WuLLLY14,https://doi.org/10.1631/jzus.C1400199 +Youwei Wang,A new feature selection method for handling redundant information in text classification.,2018,19,Frontiers of IT and EE,2,db/journals/jzusc/jzusc19.html#WangF18,https://doi.org/10.1631/FITEE.1601761 +Zheng Zhu,Optimizing inter-view prediction structures for multi-view video coding using simulated annealing.,2011,12,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc12.html#ZhuLZ11,https://doi.org/10.1631/jzus.C1000016 +Xiang Wang,Efficient implementation of a cubic-convolution based image scaling engine.,2011,12,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc12.html#WangDLY11,https://doi.org/10.1631/jzus.C1100040 +Guo-peng Xu,Affective rating ranking based on face images in arousal-valence dimensional space.,2018,19,Frontiers of IT and EE,6,db/journals/jzusc/jzusc19.html#XuLZM18,https://doi.org/10.1631/FITEE.1700270 +Najam Muhammad Amin,Folded down-conversion mixer for a 60 GHz receiver architecture in 65-nm CMOS technology.,2014,15,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc15.html#AminWL14,https://doi.org/10.1631/jzus.C1400087 +Qianqi Le,Performance-driven assignment and mapping for reliable networks-on-chips.,2014,15,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc15.html#LeYHSF14,https://doi.org/10.1631/jzus.C1400055 +Ke Guo,A new constrained maximum margin approach to discriminative learning of Bayesian classifiers.,2018,19,Frontiers of IT and EE,5,db/journals/jzusc/jzusc19.html#GuoLGLG18,https://doi.org/10.1631/FITEE.1700007 +Kui-kang Cao,A parallel and scalable digital architecture for training support vector machines.,2010,11,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc11.html#CaoSC10,https://doi.org/10.1631/jzus.C0910500 +Kyong-il Kim,Active steering control strategy for articulated vehicles.,2016,17,Frontiers of IT and EE,6,db/journals/jzusc/jzusc17.html#KimGWGL16,https://doi.org/10.1631/FITEE.1500211 +Hongyang Lu,A two-stage parametric subspace model for efficient contrast-preserving decolorization.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#LuLWD17,https://doi.org/10.1631/FITEE.1600017 +R. Annie Uthra,A probabilistic approach for predictive congestion control in wireless sensor networks.,2014,15,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc15.html#UthraRJL14,https://doi.org/10.1631/jzus.C1300175 +Rong Fan,An efficient and DoS-resistant user authentication scheme for two-tiered wireless sensor networks.,2011,12,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc12.html#FanHPP11,https://doi.org/10.1631/jzus.C1000377 +Xiao-Xiong Zhang,A consensus model for group decision making under interval type-2 fuzzy environment.,2016,17,Frontiers of IT and EE,3,db/journals/jzusc/jzusc17.html#ZhangGT16,https://doi.org/10.1631/FITEE.1500198 +Jun Wang,Optimal precoding for full-duplex base stations under strongly correlated self-interference channels.,2017,18,Frontiers of IT and EE,6,db/journals/jzusc/jzusc18.html#WangWHQ17,https://doi.org/10.1631/FITEE.1700022 +Ming-jun Ma,A combined modulated feedback and temperature compensation approach to improve bias drift of a closed-loop MEMS capacitive accelerometer.,2015,16,Frontiers of IT and EE,6,db/journals/jzusc/jzusc16.html#MaJZ15,https://doi.org/10.1631/FITEE.1400349 +Dimitris C. Theodoridis,Direct adaptive regulation of unknownnonlinear systems with analysis of themodel order problem.,2011,12,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc12.html#TheodoridisBC11,https://doi.org/10.1631/jzus.C1000224 +Yinghui Zhong,Two-step gate-recess process combining selective wet-etching and digital wet-etching for InAlAs/InGaAs InP-based HEMTs.,2017,18,Frontiers of IT and EE,8,db/journals/jzusc/jzusc18.html#ZhongSWWLDDJ17,https://doi.org/10.1631/FITEE.1601121 +Dingcheng Feng,Learning robust principal components from L1-normmaximization.,2012,13,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc13.html#FengCX12,https://doi.org/10.1631/jzus.C1200180 +Yang Zhou 0002,Biologically inspired model of path integration based on head direction cells and grid cells.,2016,17,Frontiers of IT and EE,5,db/journals/jzusc/jzusc17.html#ZhouW16,https://doi.org/10.1631/FITEE.1500364 +Gopi Ram,Optimal array factor radiation pattern synthesis for linear antenna array using cat swarm optimization: validation by an electromagnetic simulator.,2017,18,Frontiers of IT and EE,4,db/journals/jzusc/jzusc18.html#RamMGK17,https://doi.org/10.1631/FITEE.1500371 +Bahareh Zibanezhad,Applying gravitational search algorithm in the QoS-based Web service selection problem.,2011,12,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc12.html#ZibanezhadZSR11,https://doi.org/10.1631/jzus.C1000305 +You-bo Liu,Situational awareness architecture for smart grids developed in accordance with dispatcher's thought process: a review.,2016,17,Frontiers of IT and EE,11,db/journals/jzusc/jzusc17.html#LiuLTLGZ16,https://doi.org/10.1631/FITEE.1601516 +Guangjia Song,Anonymous-address-resolution model.,2016,17,Frontiers of IT and EE,10,db/journals/jzusc/jzusc17.html#SongJ16,https://doi.org/10.1631/FITEE.1500382 +Gabrielle V. Michalek,Requirements and characteristics of a preservation quality information management system.,2010,11,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc11.html#Michalek10,https://doi.org/10.1631/jzus.C1001013 +Li Yao,Accurate real-time stereo correspondence using intra- and inter-scanline optimization.,2012,13,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc13.html#YaoLZWZ12,https://doi.org/10.1631/jzus.C1100311 +Xiao-xin Fu,Intelligent computing budget allocation for on-road trajectory planning based on candidate curves.,2016,17,Frontiers of IT and EE,6,db/journals/jzusc/jzusc17.html#FuJHWH16,https://doi.org/10.1631/FITEE.1500269 +Hui Sun,Exploring optimal combination of a file system and an I/O scheduler for underlying solid state disks.,2014,15,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc15.html#SunQX14,https://doi.org/10.1631/jzus.C1300314 +Song-bin Li,Detection of quantization index modulation steganography in G.723.1 bit stream based on quantization index sequence analysis.,2012,13,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc13.html#LiTH12,https://doi.org/10.1631/jzus.C1100374 +Fei-wei Qin,A deep learning approach to the classification of 3D CAD models.,2014,15,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc15.html#QinLGYC14,https://doi.org/10.1631/jzus.C1300185 +Chao Li,Push recovery for the standing under-actuated bipedal robot using the hip strategy.,2015,16,Frontiers of IT and EE,7,db/journals/jzusc/jzusc16.html#LiXZWWH15,https://doi.org/10.1631/FITEE.14a0230 +He-Xiu Xu,Miniaturized fractal-shaped branch-line coupler for dual-band applications based on composite right/left handed transmission lines.,2011,12,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc12.html#XuWCL11,https://doi.org/10.1631/jzus.C1000343 +Shun-wai Zhang,An LDPC coded cooperative MIMO scheme over Rayleigh fading channels with unknown channel state information.,2013,14,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc14.html#ZhangYT13,https://doi.org/10.1631/jzus.C1200207 +Zhi-hua Ning,A low drift curvature-compensated bandgap reference with trimming resistive circuit.,2011,12,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc12.html#NingH11,https://doi.org/10.1631/jzus.C1000440 +Xingru Peng,A pipelined Reed-Solomon decoder based on a modified step-by-step algorithm.,2016,17,Frontiers of IT and EE,9,db/journals/jzusc/jzusc17.html#PengZL16,https://doi.org/10.1631/FITEE.1500303 +You Liu,Steering control for underwater gliders.,2017,18,Frontiers of IT and EE,7,db/journals/jzusc/jzusc18.html#LiuSMY17,https://doi.org/10.1631/FITEE.1601735 +Amir Heidary,Series transformer based diode-bridge-type solid state fault current limiter.,2015,16,Frontiers of IT and EE,9,db/journals/jzusc/jzusc16.html#HeidaryRFG15,https://doi.org/10.1631/FITEE.1400428 +Jia-qiang Yang,Exponential response electrical pole-changing method for a five-phase induction machine with a current sliding mode control strategy.,2017,18,Frontiers of IT and EE,8,db/journals/jzusc/jzusc18.html#YangYZH17,https://doi.org/10.1631/FITEE.1601728 +Hamid Reza Ahmadi,A low-power and low-energy flexible GF(p) elliptic-curve cryptography processor.,2010,11,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc11.html#AhmadiA10,https://doi.org/10.1631/jzus.C0910660 +Chih-ho Chou,Efficient and secure three-party authenticated key exchange protocol for mobile environments.,2013,14,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc14.html#ChouTWY13,https://doi.org/10.1631/jzus.C1200273 +Jie Zhou,Automatically building large-scale named entity recognition corpora from Chinese Wikipedia.,2015,16,Frontiers of IT and EE,11,db/journals/jzusc/jzusc16.html#ZhouLC15,https://doi.org/10.1631/FITEE.1500067 +Huajuan Huang,Primal least squares twin support vector regression.,2013,14,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc14.html#HuangDS13,https://doi.org/10.1631/jzus.CIIP1301 +Yunxiang Zhao,Pegasus: a distributed and load-balancing fingerprint identification system.,2016,17,Frontiers of IT and EE,8,db/journals/jzusc/jzusc17.html#ZhaoZLHLL16,https://doi.org/10.1631/FITEE.1500487 +Peng Li 0010,A numerical local orthogonal transform method for stratified waveguides.,2010,11,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc11.html#LiZLC10,https://doi.org/10.1631/jzus.C0910732 +Xin-Hao Chen,Hash signature saving in distributed video coding.,2011,12,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc12.html#ChenZSY11,https://doi.org/10.1631/jzus.C1000008 +Xian-Ting Zeng,Robust lossless data hiding scheme.,2010,11,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc11.html#ZengPPL10,https://doi.org/10.1631/jzus.C0910177 +Xiao-wei Liu,Ball-disk rotor gyroscope adaptive quick-start technique.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#LiuWLZ17,https://doi.org/10.1631/FITEE.1600035 +Yingmei Wei,Applications of structure from motion: a survey.,2013,14,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc14.html#WeiKYW13,https://doi.org/10.1631/jzus.CIDE1302 +Liang Wei,An efficient hardware design for HDTV H.264/AVC encoder.,2011,12,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc12.html#WeiDDYY11,https://doi.org/10.1631/jzus.C1000201 +Hui-pin Lin,A new variable-mode control strategy for LLC resonant converters operating in a wide input voltage range.,2017,18,Frontiers of IT and EE,3,db/journals/jzusc/jzusc18.html#LinJXHL17,https://doi.org/10.1631/FITEE.1600029 +Hao Zhou 0003,Anefficient quadrature demodulator for medical ultrasound imaging.,2015,16,Frontiers of IT and EE,4,db/journals/jzusc/jzusc16.html#ZhouZ15,https://doi.org/10.1631/FITEE.1400205 +MyoungBeom Chung,An algorithm that minimizes audio fingerprints using the difference of Gaussians.,2011,12,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc12.html#ChungK11,https://doi.org/10.1631/jzus.C1000396 +Zhu Zhang,An IP mobility management scheme with dual location areas for IP/LEO satellite network.,2012,13,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc13.html#ZhangG12,https://doi.org/10.1631/jzus.C1100293 +Hui Chen,An easy-to-use evaluation framework for benchmarking entity recognition and disambiguation systems.,2017,18,Frontiers of IT and EE,2,db/journals/jzusc/jzusc18.html#ChenWLLZ17,https://doi.org/10.1631/FITEE.1500473 +Zong-feng Qi,Battle damage assessment based on an improved Kullback-Leibler divergence sparse autoencoder.,2017,18,Frontiers of IT and EE,12,db/journals/jzusc/jzusc18.html#QiLWL17,https://doi.org/10.1631/FITEE.1601395 +Bin Ju,Preference transfer model in collaborative filtering for implicit data.,2016,17,Frontiers of IT and EE,6,db/journals/jzusc/jzusc17.html#JuQY16,https://doi.org/10.1631/FITEE.1500313 +Mahdi Samadi,Modeling the effects of demand response on generation expansion planning in restructured power systems.,2013,14,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc14.html#SamadiJG13,https://doi.org/10.1631/jzus.C1300008 +Jia-geng Feng,View-invariant human action recognition via robust locally adaptive multi-view learning.,2015,16,Frontiers of IT and EE,11,db/journals/jzusc/jzusc16.html#FengX15,https://doi.org/10.1631/FITEE.1500080 +Xiao-hu Ma,Local uncorrelated local discriminant embedding for face recognition.,2016,17,Frontiers of IT and EE,3,db/journals/jzusc/jzusc17.html#MaYZ16,https://doi.org/10.1631/FITEE.1500255 +Javier G.-Escribano,Human condition monitoring in hazardous locations using pervasive RFID sensor tags and energy-efficient wireless networks.,2012,13,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc13.html#G-EscribanoG12,https://doi.org/10.1631/jzus.C1100318 +Javed Ahmed Laghari,A new technique for islanding operation of distribution network connected with mini hydro.,2015,16,Frontiers of IT and EE,5,db/journals/jzusc/jzusc16.html#LaghariMKBM15,https://doi.org/10.1631/FITEE.1400309 +Hua-rong Gu,A two-dimensional constant-weight sparse modulation code for volume holographic data storage.,2011,12,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc12.html#GuCHJ11,https://doi.org/10.1631/jzus.C1010246 +Izabela Nielsen,Multimodal processes optimization subject to fuzzy operation time constraints: declarative modeling approach.,2016,17,Frontiers of IT and EE,4,db/journals/jzusc/jzusc17.html#NielsenWBB16,https://doi.org/10.1631/FITEE.1500359 +Enkhbaatar Tumenjargal,Embedded software and hardware implementation system for a human machine interface based on ISOAgLib.,2013,14,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc14.html#TumenjargalBKH13,https://doi.org/10.1631/jzus.C1200270 +Xin-Hao Chen,Distributed video coding with adaptive selection of hash functions.,2011,12,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc12.html#ChenY11,https://doi.org/10.1631/jzus.C1000198 +Hong Hong,Centroid-based sifting for empiricalmode decomposition.,2011,12,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc12.html#HongWTD11,https://doi.org/10.1631/jzus.C1000037 +Mi Lin,Design of ternary D flip-flop with pre-set and pre-reset functions based on resonant tunneling diode literal circuit.,2011,12,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc12.html#LinLS11,https://doi.org/10.1631/jzus.C1000222 +Rui Wang 0004,Harmonic coordinates for real-time image cloning.,2010,11,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc11.html#WangCPB10,https://doi.org/10.1631/jzus.C1000067 +Parul Dawar,Miniaturized UWB multi-resonance patch antenna loaded with novel modified H-shape SRR metamaterial for microspacecraft applications.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#DawarRD17,https://doi.org/10.1631/FITEE.1601193 +Lei Zhang,High quality multi-focus polychromatic composite image fusion algorithm based on filtering in frequency domain and synthesis in space domain.,2010,11,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc11.html#ZhangLLY10,https://doi.org/10.1631/jzus.C0910344 +Qiang Liu,Subspace-based identification of discrete time-delay system.,2016,17,Frontiers of IT and EE,6,db/journals/jzusc/jzusc17.html#LiuM16,https://doi.org/10.1631/FITEE.1500358 +Yanwei Zhou,Aleakage-resilient certificateless public key encryption scheme with CCA2 security.,2018,19,Frontiers of IT and EE,4,db/journals/jzusc/jzusc19.html#ZhouYCW18,https://doi.org/10.1631/FITEE.1601849 +Jian Hao,Erratum to: Determination of cut-off time of accelerated aging test under temperature stress for LED lamps.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#HaoJKWGWSX17a,https://doi.org/10.1631/FITEE.15e0483 +Horng-Twu Liaw,Efficient password authentication schemes based on a geometric approach for a multi-server environment.,2010,11,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc11.html#LiawYCH10,https://doi.org/10.1631/jzus.C0910712 +Yingjie Xia,Accelerating geospatial analysis on GPUs using CUDA.,2011,12,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc12.html#XiaKL11,https://doi.org/10.1631/jzus.C1100051 +Hossein Aghababa,High-performance low-leakage regions of nano-scaled CMOS digital gates under variations of threshold voltage and mobility.,2012,13,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc13.html#AghababaFA12,https://doi.org/10.1631/jzus.C1100273 +Chun-hua He,Tabu search based resource allocation in radiological examination process execution.,2018,19,Frontiers of IT and EE,3,db/journals/jzusc/jzusc19.html#He18,https://doi.org/10.1631/FITEE.1601802 +Yuxin Peng,Cross-media analysis and reasoning: advances and directions.,2017,18,Frontiers of IT and EE,1,db/journals/jzusc/jzusc18.html#PengZZXHLZHG17,https://doi.org/10.1631/FITEE.1601787 +Gaoli Sang,Unseen head pose prediction using dense multivariate label distribution.,2016,17,Frontiers of IT and EE,6,db/journals/jzusc/jzusc17.html#SangCHZ16,https://doi.org/10.1631/FITEE.1500235 +Qingzheng Xu,Recent advances in the artificial endocrine system.,2011,12,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc12.html#XuW11,https://doi.org/10.1631/jzus.C1000044 +Yaoye Zhang,Extracting 3D model feature lines based on conditional random fields.,2013,14,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc14.html#ZhangSLSZ13,https://doi.org/10.1631/jzus.CIDE1308 +J. Divya Udayan,Animage-based approach to the reconstruction of ancient architectures by extracting and arranging 3D spatial components.,2015,16,Frontiers of IT and EE,1,db/journals/jzusc/jzusc16.html#UdayanKK15,https://doi.org/10.1631/FITEE.1400141 +Yue-Bin Luo,A keyed-hashing based self-synchronization mechanism for port address hopping communication.,2017,18,Frontiers of IT and EE,5,db/journals/jzusc/jzusc18.html#LuoWWZ17,https://doi.org/10.1631/FITEE.1601548 +Xiao-Hua Li,An algorithm for identifying symmetric variables in the canonical OR-coincidence algebra system.,2014,15,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc15.html#LiS14,https://doi.org/10.1631/jzus.C1400093 +MyoungBeom Chung,Identical-video retrieval using the low-peak feature of a video's audio information.,2010,11,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc11.html#ChungK10,https://doi.org/10.1631/jzus.C0910472 +Kok-Seng Wong,Towards a respondent-preferred k i -anonymity model.,2015,16,Frontiers of IT and EE,9,db/journals/jzusc/jzusc16.html#WongK15,https://doi.org/10.1631/FITEE.1400395 +Hong-xia Pang,Novel linear search for support vector machine parameter selection.,2011,12,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc12.html#PangDXFLC11,https://doi.org/10.1631/jzus.C1100006 +Yi Liu,Statistical assessment of selection-based dual-hop semi-blind amplify-and-forward cooperative networks.,2010,11,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc11.html#LiuZXL10,https://doi.org/10.1631/jzus.C1010020 +Rui Wang 0034,Sparse fast Clifford Fourier transform.,2017,18,Frontiers of IT and EE,8,db/journals/jzusc/jzusc18.html#WangZJC17,https://doi.org/10.1631/FITEE.1500452 +Shang Liu,Multi-user rate and power analysis in a cognitive radio network with massive multi-input multi-output.,2018,19,Frontiers of IT and EE,5,db/journals/jzusc/jzusc19.html#LiuAZZ18,https://doi.org/10.1631/FITEE.1700081 +Gloria Bueno García,Three-dimensional organ modeling based on deformable surfaces applied to radio-oncology.,2010,11,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc11.html#BuenoDSCD10,https://doi.org/10.1631/jzus.C0910402 +Xiao-juan Duan,Degree elevation of unified and extended spline curves.,2014,15,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc15.html#DuanW14,https://doi.org/10.1631/jzus.C1400076 +Lei Ke,Coupling analysis of transcutaneous energy transfer coils with planar sandwich structure for a novel artificial anal sphincter.,2014,15,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc15.html#KeYYWL14,https://doi.org/10.1631/jzus.C1400062 +Jr-Shian Chen,Extracting classification rules based on a cumulative probability distribution approach.,2011,12,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc12.html#Chen11,https://doi.org/10.1631/jzus.C1000205 +Lu Yu,Review of the current and future technologies for video compression.,2010,11,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc11.html#YuW10,https://doi.org/10.1631/jzus.C0910684 +Wenzhe Zhang,Fine-grained checkpoint based on non-volatile memory.,2017,18,Frontiers of IT and EE,2,db/journals/jzusc/jzusc18.html#ZhangLLWZ17,https://doi.org/10.1631/FITEE.1500352 +Guang-yu Fan,Funneling media access control (MAC) protocol for underwater acoustic sensor networks.,2011,12,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc12.html#FanCXW11,https://doi.org/10.1631/jzus.C1000388 +Min Yuan,Multi-scale UDCT dictionary learning based highly undersampled MR image reconstruction using patch-based constraint splitting augmented Lagrangian shrinkage algorithm.,2015,16,Frontiers of IT and EE,12,db/journals/jzusc/jzusc16.html#YuanYMZLZ15,https://doi.org/10.1631/FITEE.1400423 +De-long Feng,Finite-sensor fault-diagnosis simulation study of gas turbine engine using information entropy and deep belief networks.,2016,17,Frontiers of IT and EE,12,db/journals/jzusc/jzusc17.html#FengXLSYH16,https://doi.org/10.1631/FITEE.1601365 +Di Li 0003,Design of a low power GPS receiver in 0.18 andmicro*m CMOS technology with a SigmaDeltafractional-N synthesizer.,2010,11,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc11.html#LiYWLLWWWLZ10,https://doi.org/10.1631/jzus.C0910381 +Yang Yi,Stability and agility: biped running over varied and unknown terrain.,2015,16,Frontiers of IT and EE,4,db/journals/jzusc/jzusc16.html#YiL15,https://doi.org/10.1631/FITEE.1400284 +Hamza Khan,Longitudinal and lateral slip control of autonomous wheeled mobile robot for trajectory tracking.,2015,16,Frontiers of IT and EE,2,db/journals/jzusc/jzusc16.html#KhanIBZ15,https://doi.org/10.1631/FITEE.1400183 +Maoqun Yao,Function synthesis algorithm based on RTD-based three-variable universal logic gates.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#YaoYSX17,https://doi.org/10.1631/FITEE.1601730 +Najam Muhammad Amin,Erratum to: Folded down-conversion mixer for a 60 GHz receiver architecture in 65-nm CMOS technology.,2015,16,Frontiers of IT and EE,5,db/journals/jzusc/jzusc16.html#AminWL15,https://doi.org/10.1631/FITEE.14e0087 +Huan-gang Wang,Generative adversarial network based novelty detection usingminimized reconstruction error.,2018,19,Frontiers of IT and EE,1,db/journals/jzusc/jzusc19.html#WangLZ18,https://doi.org/10.1631/FITEE.1700786 +Shuang Tan,NaEPASC: a novel and efficient public auditing scheme for cloud data.,2014,15,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc15.html#TanJ14,https://doi.org/10.1631/jzus.C1400045 +Xiao-qing Zhang,An optimized grey wolf optimizer based on a mutation operator and eliminating-reconstructing mechanism and its application.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#ZhangM17,https://doi.org/10.1631/FITEE.1601555 +Gaurav Bansod,BORON: an ultra-lightweight and low power encryption design for pervasive computing.,2017,18,Frontiers of IT and EE,3,db/journals/jzusc/jzusc18.html#BansodPP17,https://doi.org/10.1631/FITEE.1500415 +Hao-wei Zhang,A scheduling method based on a hybrid genetic particle swarm algorithm for multifunction phased array radar.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#ZhangXLSZ17,https://doi.org/10.1631/FITEE.1601358 +Tzung-Her Chen,A new protocol of wide use for e-mail with perfect forward secrecy.,2010,11,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc11.html#ChenW10,https://doi.org/10.1631/jzus.A0910126 +Miguel Oliver,Multi-camera systems for rehabilitation therapies: a study of the precision of Microsoft Kinect sensors.,2016,17,Frontiers of IT and EE,4,db/journals/jzusc/jzusc17.html#OliverMMGF16,https://doi.org/10.1631/FITEE.1500347 +Yin Zhao,An analysis in metal barcode label design for reference.,2016,17,Frontiers of IT and EE,2,db/journals/jzusc/jzusc17.html#ZhaoXZ16,https://doi.org/10.1631/FITEE.1500212 +Jian-guang Shi,Design and analysis of an underwater inductive coupling power transfer system for autonomous underwater vehicle docking applications.,2014,15,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc15.html#ShiLY14,https://doi.org/10.1631/jzus.C1300171 +Chao Li 0012,A methodology for measuring the preservation durability of digital formats.,2010,11,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc11.html#LiZMWX10,https://doi.org/10.1631/jzus.C1001006 +Xue-mei Hu,Emerging theories and technologies on computational imaging.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#HuWSD17,https://doi.org/10.1631/FITEE.1700211 +Mingjie Feng,Enhancing the performance of futurewireless networks with software-defined networking.,2016,17,Frontiers of IT and EE,7,db/journals/jzusc/jzusc17.html#FengM016,https://doi.org/10.1631/FITEE.1500336 +Wenyan Xiao,Corpus-based research on English word recognition rates in primary school and word selection strategy.,2017,18,Frontiers of IT and EE,3,db/journals/jzusc/jzusc18.html#XiaoWWZZ17,https://doi.org/10.1631/FITEE.1601118 +Da-peng Tan,An embedded lightweight GUI component library and ergonomics optimization method for industry process monitoring.,2018,19,Frontiers of IT and EE,5,db/journals/jzusc/jzusc19.html#TanCBZ18,https://doi.org/10.1631/FITEE.1601660 +Guilin Cai,Game theoretic analysis for the mechanism of moving target defense.,2017,18,Frontiers of IT and EE,12,db/journals/jzusc/jzusc18.html#CaiWX17,https://doi.org/10.1631/FITEE.1601797 +Jing Li,Fast implementation of kernel simplex volume analysis based on modified Cholesky factorization for endmember extraction.,2016,17,Frontiers of IT and EE,3,db/journals/jzusc/jzusc17.html#LiLWZ16,https://doi.org/10.1631/FITEE.1500244 +Wei Chen 0005,Online detection of bursty events and their evolution in news streams.,2010,11,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc11.html#ChenCZWB10,https://doi.org/10.1631/jzus.C0910245 +Tang-tang Guo,Analysis and design of pulse frequency modulation dielectric barrier discharge for low power applications.,2015,16,Frontiers of IT and EE,3,db/journals/jzusc/jzusc16.html#GuoLHZH15,https://doi.org/10.1631/FITEE.1400185 +Yunfei Guo,A modified variable rate particle filter for maneuvering target tracking.,2015,16,Frontiers of IT and EE,11,db/journals/jzusc/jzusc16.html#GuoFPLH15,https://doi.org/10.1631/FITEE.1500149 +Liu Liu 0004,Automatic malware classification and new malware detection using machine learning.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#LiuWYZ17,https://doi.org/10.1631/FITEE.1601325 +Linsen Chen,High-resolution spectral video acquisition.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#ChenYCMB17,https://doi.org/10.1631/FITEE.1700098 +Pejman Mowlaee,Split vector quantization for sinusoidal amplitude and frequency.,2011,12,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc12.html#MowlaeeSS11,https://doi.org/10.1631/jzus.C1000020 +Bai Ying Lei,A multipurpose audio watermarking algorithm with synchronization and encryption.,2012,13,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc13.html#LeiS12,https://doi.org/10.1631/jzus.C1100085 +Li-li Li,Robust synchronization of chaotic systems using slidingmode and feedback control.,2014,15,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc15.html#LiLY14,https://doi.org/10.1631/jzus.C1300266 +Qiang Guo,Principles and applications of high-speed single-pixel imaging technology.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#GuoWCCYX17,https://doi.org/10.1631/FITEE.1601719 +Hong-chao Ma,Intelligent optimization of seam-line finding for orthophoto mosaicking with LiDAR point clouds.,2011,12,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc12.html#MaS11,https://doi.org/10.1631/jzus.C1000235 +Omid Abedi,Mobility assisted spectrum aware routing protocol for cognitive radio ad hoc networks.,2013,14,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc14.html#AbediB13,https://doi.org/10.1631/jzus.C1200334 +Jun Xu,High-precision low-power quartz tuning fork temperature sensor with optimized resonance excitation.,2013,14,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc14.html#XuLDX13,https://doi.org/10.1631/jzus.C12MNT05 +Juan-juan He,A membrane-inspired algorithm with a memory mechanism for knapsack problems.,2013,14,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc14.html#HeXSS13,https://doi.org/10.1631/jzus.C1300005 +Shahab Pourtalebi,Information schema constructs for instantiation and composition of system manifestation features.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#PourtalebiH17,https://doi.org/10.1631/FITEE.1601235 +Alireza Parvizi-Mosaed,Towards a self-adaptive service-oriented methodology based on extended SOMA.,2015,16,Frontiers of IT and EE,1,db/journals/jzusc/jzusc16.html#Parvizi-MosaedMHBN15,https://doi.org/10.1631/FITEE.1400040 +Long-zheng Cai,A new data normalization method for unsupervised anomaly intrusion detection.,2010,11,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc11.html#CaiCKCL10,https://doi.org/10.1631/jzus.C0910625 +Momeng Liu,Quantum security analysis of a lattice-based oblivious transfer protocol.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#LiuKHB17,https://doi.org/10.1631/FITEE.1700039 +Javad Nikoukar,Transmission pricing and recovery of investment costs in the deregulated power system based on optimal circuit prices.,2012,13,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc13.html#NikoukarH12,https://doi.org/10.1631/jzus.C1100076 +Juan M. Corchado,Special issue on distributed computing and artificial intelligence.,2016,17,Frontiers of IT and EE,4,db/journals/jzusc/jzusc17.html#CorchadoWBWL16,https://doi.org/10.1631/FITEE.DCAI2015 +Meng Wang,Accurate two-degree-of-freedom discrete-time current controller design for PMSM using complex vectors.,2018,19,Frontiers of IT and EE,4,db/journals/jzusc/jzusc19.html#WangYZZ18,https://doi.org/10.1631/FITEE.1601390 +Gabriela Magureanu,Validation of static properties in unified modeling language models for cyber physical systems.,2013,14,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc14.html#MagureanuGP13,https://doi.org/10.1631/jzus.C1200263 +Xiao-chuan Sun,Modeling deterministic echo state network with loop reservoir.,2012,13,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc13.html#SunCLCL12,https://doi.org/10.1631/jzus.C1200069 +Imran Ghani,Semantics-oriented approach for information interoperability and governance: towards user-centric enterprise architecture management.,2010,11,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc11.html#GhaniLJJ10,https://doi.org/10.1631/jzus.C0910508 +Jia Lu,An independent but not identically distributed bit error model for heavy-tailed wireless channels.,2013,14,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc14.html#LuYWLD13,https://doi.org/10.1631/jzus.C1200175 +Xiao-hong Mao,Structural visualization of sequential DNA data.,2011,12,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc12.html#MaoFCYFP11,https://doi.org/10.1631/jzus.C1000091 +Aisha Siddiqa,Big data storage technologies: a survey.,2017,18,Frontiers of IT and EE,8,db/journals/jzusc/jzusc18.html#SiddiqaKG17,https://doi.org/10.1631/FITEE.1500441 +Muhammad Kamran,On the role of optimization algorithms in ownership-preserving data mining.,2018,19,Frontiers of IT and EE,2,db/journals/jzusc/jzusc19.html#KamranM18,https://doi.org/10.1631/FITEE.1601479 +Ming-Chen Zhao,Design and derivation of the dual transponder carrier ranging system.,2013,14,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc14.html#ZhaoWJ13,https://doi.org/10.1631/jzus.C1200266 +Jian-qiao Chen,A non-stationary channel model for 5G massive MIMO systems.,2017,18,Frontiers of IT and EE,12,db/journals/jzusc/jzusc18.html#ChenZTH17,https://doi.org/10.1631/FITEE.1700028 +Rong Jiao,Orbit determination using incremental phase and TDOA of X-ray pulsar.,2016,17,Frontiers of IT and EE,6,db/journals/jzusc/jzusc17.html#JiaoX0L16,https://doi.org/10.1631/FITEE.1500365 +Di Xiao,High-payload completely reversible data hiding in encrypted images by an interpolation technique.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#XiaoWXB17,https://doi.org/10.1631/FITEE.1601067 +Rongfeng Zhang,A robust object tracking framework based on a reliable point assignment algorithm.,2017,18,Frontiers of IT and EE,4,db/journals/jzusc/jzusc18.html#ZhangDWSG17,https://doi.org/10.1631/FITEE.1601464 +Qing-long Wang,A quality requirements model and verification approach for system of systems based on description logic.,2017,18,Frontiers of IT and EE,3,db/journals/jzusc/jzusc18.html#WangWZZ17,https://doi.org/10.1631/FITEE.1500309 +Ding Wang 0003,A performance analysis of multi-satellite joint geolocation.,2016,17,Frontiers of IT and EE,12,db/journals/jzusc/jzusc17.html#WangWW16,https://doi.org/10.1631/FITEE.1500285 +Zhengwei Huang,Speech emotion recognition with unsupervised feature learning.,2015,16,Frontiers of IT and EE,5,db/journals/jzusc/jzusc16.html#HuangXM15,https://doi.org/10.1631/FITEE.1400323 +Ming-wei Tang,Resource allocation algorithm with limited feedback for multicast single frequency networks.,2012,13,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc13.html#TangW12,https://doi.org/10.1631/jzus.C1100108 +Jing Liao,Procedural modeling of water caustics and foamy water for cartoon animation.,2011,12,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc12.html#LiaoYJ11,https://doi.org/10.1631/jzus.C1000228 +Bin Shen 0001,Mining item-item and between-set correlated association rules.,2011,12,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc12.html#ShenYXZT11,https://doi.org/10.1631/jzus.C0910717 +Xichuan Zhou,Global influenza surveillance with Laplacian multidimensional scaling.,2016,17,Frontiers of IT and EE,5,db/journals/jzusc/jzusc17.html#ZhouTLHLJLF16,https://doi.org/10.1631/FITEE.1500356 +Young Joon Ahn,A note on circle packing.,2012,13,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc13.html#AhnHR12,https://doi.org/10.1631/jzus.C1200010 +Fang-wen Li,A component-based aircraft instrument rapid modeling tool.,2010,11,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc11.html#LiS10,https://doi.org/10.1631/jzus.C1001010 +Can Wang,Contact-free and pose-invariant hand-biometric-based personal identification system using RGB and depth data.,2014,15,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc15.html#WangLL14,https://doi.org/10.1631/jzus.C1300190 +Jie He,Fine-grained P2P traffic classification by simply counting flows.,2015,16,Frontiers of IT and EE,5,db/journals/jzusc/jzusc16.html#HeYQD15,https://doi.org/10.1631/FITEE.1400267 +Mostafa Hosseinpour,A probabilistic model for assessing the reliability of wind farms in a power system.,2013,14,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc14.html#HosseinpourMH13,https://doi.org/10.1631/jzus.C1200317 +Haojie Zhang,An iterative linear quadratic regulator based trajectory tracking controller for wheeled mobile robot.,2012,13,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc13.html#ZhangGJXC12,https://doi.org/10.1631/jzus.C1100379 +Ozoemena Anthony Ani,Modeling and multiobjective optimization of traction performance for autonomous wheeled mobile robot in rough terrain.,2013,14,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc14.html#AniXSLX13,https://doi.org/10.1631/jzus.C12a0200 +Erfan Shaghaghi,Adaptive green traffic signal controlling using vehicular communication.,2017,18,Frontiers of IT and EE,3,db/journals/jzusc/jzusc18.html#ShaghaghiJNYJ17,https://doi.org/10.1631/FITEE.1500355 +Liefu Ai,High-dimensional indexing technologies for large scale content-based image retrieval: a review.,2013,14,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc14.html#AiYHG13,https://doi.org/10.1631/jzus.CIDE1304 +Kun Jiang,Efficient dynamic pruning on largest scores first (LSF) retrieval.,2016,17,Frontiers of IT and EE,1,db/journals/jzusc/jzusc17.html#JiangY16,https://doi.org/10.1631/FITEE.1500190 +Zhibo Wang,HierTrack: an energy-efficient cluster-based target tracking system forwireless sensor networks.,2013,14,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc14.html#WangWCLLS13,https://doi.org/10.1631/jzus.C1200318 +Zhen-guo Ma,An efficient radix-2 fast Fourier transform processor with ganged butterfly engines on field programmable gate arrays.,2011,12,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc12.html#MaYGW11,https://doi.org/10.1631/jzus.C1000258 +Ali Tofighi,Interconnection and damping assignment and Euler-Lagrange passivity-based control of photovoltaic/battery hybrid power source for stand-alone applications.,2011,12,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc12.html#TofighiK11,https://doi.org/10.1631/jzus.C1000368 +Najmeh Eghbal,Uniform modeling of parameter dependent nonlinear systems.,2012,13,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc13.html#EghbalPK12,https://doi.org/10.1631/jzus.C1200096 +Yi-Kuei Lin,Stochastic computer network with multiple terminals under total accuracy rate.,2013,14,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc14.html#LinH13,https://doi.org/10.1631/jzus.C1200220 +Bo Lu,A virtual network mapping algorithm based on integer programming.,2013,14,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc14.html#LuCCHL13,https://doi.org/10.1631/jzus.C1300120 +Ali Darvish Falehi,Dynamic stability enhancement of interconnected multi-source power systems using hierarchical ANFIS controller-TCSC based on multi-objective PSO.,2017,18,Frontiers of IT and EE,3,db/journals/jzusc/jzusc18.html#FalehiM17,https://doi.org/10.1631/FITEE.1500317 +Xiaoming Gou,Filtering and tracking with trinion-valued adaptive algorithms.,2016,17,Frontiers of IT and EE,8,db/journals/jzusc/jzusc17.html#GouL0X16,https://doi.org/10.1631/FITEE.1601164 +Chen-hua Ma,An authorization model for collaborative access control.,2010,11,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc11.html#MaLQ10,https://doi.org/10.1631/jzus.C0910564 +Saeid Arish,FICA: fuzzy imperialist competitive algorithm.,2014,15,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc15.html#ArishAN14,https://doi.org/10.1631/jzus.C1300088 +Arash Khoshkbar Sadigh,New method for estimating flying capacitor voltages in stacked multicell and flying capacitor multicell converters.,2010,11,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc11.html#SadighGH10,https://doi.org/10.1631/jzus.C0910559 +Cheng Zhao,Joint throughput and transmission range optimization for triple-hop networks with cognitive relay.,2017,18,Frontiers of IT and EE,2,db/journals/jzusc/jzusc18.html#ZhaoWYY17,https://doi.org/10.1631/FITEE.1601414 +Yong Qiao,Detecting P2P bots by mining the regional periodicity.,2013,14,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc14.html#QiaoYHTZ13,https://doi.org/10.1631/jzus.C1300053 +Eneko Osaba,A multi-crossover and adaptive island based population algorithm for solving routing problems.,2013,14,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc14.html#OsabaOCDPZ13,https://doi.org/10.1631/jzus.C1300184 +Chao Wu,A block zero-padding method based on DCFT for L1 parameter estimations in weak signal and high dynamic environments.,2015,16,Frontiers of IT and EE,9,db/journals/jzusc/jzusc16.html#WuXZZ15,https://doi.org/10.1631/FITEE.1500058 +Zhiguo Ding,Embracing non-orthogonalmultiple access in future wireless networks.,2018,19,Frontiers of IT and EE,3,db/journals/jzusc/jzusc19.html#DingXCPP18,https://doi.org/10.1631/FITEE.1800051 +Hao Fang 0001,Coalition formation based on a task-oriented collaborative ability vector.,2017,18,Frontiers of IT and EE,1,db/journals/jzusc/jzusc18.html#FangLCC17,https://doi.org/10.1631/FITEE.1601608 +Xiaoyu Zhang,Application of direct adaptive fuzzy slidingmode control into a class of non-affine discrete nonlinear systems.,2016,17,Frontiers of IT and EE,12,db/journals/jzusc/jzusc17.html#Zhang16,https://doi.org/10.1631/FITEE.1500318 +Yong-yi Shou,Combinatorial auction algorithm for project portfolio selection and scheduling to maximize the net present value.,2010,11,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc11.html#ShouH10,https://doi.org/10.1631/jzus.C0910479 +Peng Xiao,A K self-adaptive SDN controller placement for wide area networks.,2016,17,Frontiers of IT and EE,7,db/journals/jzusc/jzusc17.html#XiaoLGQQY16,https://doi.org/10.1631/FITEE.1500350 +Xu Liu,Analysis of vibration reduction level in an 8/6 switched reluctance machine by active vibration cancellation.,2010,11,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc11.html#LiuPZ10,https://doi.org/10.1631/jzus.C0910697 +Zhichun Wang,Knowledge extraction from Chinese wiki encyclopedias.,2012,13,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc13.html#WangWLP12,https://doi.org/10.1631/jzus.C1101008 +Lan Huang,An improved fruit fly optimization algorithm for solving traveling salesman problem.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#HuangWBW17,https://doi.org/10.1631/FITEE.1601364 +Xiao Hu,Removal of baseline wander from ECG signal based on a statistical weighted moving average filter.,2011,12,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc12.html#HuXZ11,https://doi.org/10.1631/jzus.C1010311 +Yi-zhou He,Modeling correlated samples via sparsematrix Gaussian graphical models.,2013,14,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc14.html#HeCW13,https://doi.org/10.1631/jzus.C1200316 +Liang Dou,A metamodeling approach for pattern specification and management.,2013,14,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc14.html#DouLY13,https://doi.org/10.1631/jzus.C1300040 +Shao-Hu Peng,Void defect detection in ball grid array X-ray images using a new blob filter.,2012,13,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc13.html#PengN12,https://doi.org/10.1631/jzus.C1200065 +Jiang Liu 0010,A new algorithm based on the proximity principle for the virtual network embedding problem.,2011,12,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc12.html#LiuHCL11,https://doi.org/10.1631/jzus.C1100003 +Wei Lu,Design of an enhanced visual odometry by building and matching compressive panoramic landmarks online.,2015,16,Frontiers of IT and EE,2,db/journals/jzusc/jzusc16.html#LuXL15,https://doi.org/10.1631/FITEE.1400139 +Jing Chen,Stochastic gradient algorithm for a dual-rate Box-Jenkins model based on auxiliary model and FIRmode.,2014,15,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc15.html#ChenD14,https://doi.org/10.1631/jzus.C1300072 +Xuguang Zuo,Long-term prediction for hierarchical-B-picture-based coding of video with repeated shots.,2018,19,Frontiers of IT and EE,3,db/journals/jzusc/jzusc19.html#ZuoY18,https://doi.org/10.1631/FITEE.1601552 +Jian-gang Liang,Harmonic suppressed bandpass filter using composite right/left handed transmission line.,2012,13,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc13.html#LiangX12,https://doi.org/10.1631/jzus.C1100386 +Yuan-jun Wang,Multi-affine registration using local polynomial expansion.,2010,11,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc11.html#WangFW10,https://doi.org/10.1631/jzus.C0910658 +Li-Wei Liu,K-nearest neighborhood based integration of time-of-flight cameras and passive stereo for high-accuracy depth maps.,2014,15,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc15.html#LiuLZWL14,https://doi.org/10.1631/jzus.C1300194 +Xin Wang 0035,Building trust networks in the absence of trust relations.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#WangWG17,https://doi.org/10.1631/FITEE.1601341 +Lian Zhou,Optimal multi-degree reduction of C-Bézier surfaces with constraints.,2017,18,Frontiers of IT and EE,12,db/journals/jzusc/jzusc18.html#ZhouLZC17,https://doi.org/10.1631/FITEE.1700458 +Gurmanik Kaur,Using hybrid models to predict blood pressure reactivity to unsupported back based on anthropometric characteristics.,2015,16,Frontiers of IT and EE,6,db/journals/jzusc/jzusc16.html#KaurAJ15,https://doi.org/10.1631/FITEE.1400295 +Peng Chen 0008,Optimized simulated annealing algorithm for thinning and weighting large planar arrays.,2010,11,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc11.html#ChenSZC10,https://doi.org/10.1631/jzus.C0910037 +Jian Bao,A regeneratable dynamic differential evolution algorithm for neural networks with integer weights.,2010,11,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc11.html#BaoCY10,https://doi.org/10.1631/jzus.C1000137 +Jie Chen,A robust optical/inertial data fusion system for motion tracking of the robot manipulator.,2014,15,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc15.html#ChenYHJZ14,https://doi.org/10.1631/jzus.C1300302 +Peng Zhou,Improved direct power control of a grid-connected voltage source converter during network unbalance.,2010,11,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc11.html#ZhouZHZ10,https://doi.org/10.1631/jzus.C0910702 +Zhouzhou He,E-commerce business model mining and prediction.,2015,16,Frontiers of IT and EE,9,db/journals/jzusc/jzusc16.html#HeZCW15,https://doi.org/10.1631/FITEE.1500148 +Zhao-jian Zhang,Deceptive jamming discrimination based on range-angle localization of a frequency diverse array.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#ZhangXST17,https://doi.org/10.1631/FITEE.1601577 +Hong Shao,Face recognition based on subset selection via metric learning on manifold.,2015,16,Frontiers of IT and EE,12,db/journals/jzusc/jzusc16.html#ShaoCZCY15,https://doi.org/10.1631/FITEE.1500085 +Muhammad Tayyab Chaudhry,Thermal-aware relocation of servers in green data centers.,2015,16,Frontiers of IT and EE,2,db/journals/jzusc/jzusc16.html#ChaudhryLHL15,https://doi.org/10.1631/FITEE.1400174 +Haihua Xu,Aniterative approach to Bayes risk decoding and system combination.,2011,12,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc12.html#XuZ11,https://doi.org/10.1631/jzus.C1000045 +Michaelraj Kingston Roberts,An improved low-complexity sum-product decoding algorithm for low-density parity-check codes.,2015,16,Frontiers of IT and EE,6,db/journals/jzusc/jzusc16.html#RobertsJ15,https://doi.org/10.1631/FITEE.1400269 +Gao-qi He,A review of behavior mechanisms and crowd evacuation animation in emergency exercises.,2013,14,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc14.html#HeYCGP13,https://doi.org/10.1631/jzus.CIDE1301 +Yang Liu,Strip-oriented asynchronous prefetching for parallel disk systems.,2012,13,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc13.html#LiuHSCX12,https://doi.org/10.1631/jzus.C1200085 +Deng Chen,Efficient vulnerability detection based on an optimized rule-checking static analysis technique.,2017,18,Frontiers of IT and EE,3,db/journals/jzusc/jzusc18.html#ChenZWWHLQJ17,https://doi.org/10.1631/FITEE.1500379 +Xiaogang Jin 0002,Modeling dual-scale epidemic dynamics on complex networks with reaction diffusion processes.,2014,15,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc15.html#JinM14,https://doi.org/10.1631/jzus.C1300243 +Jian Xu 0002,A 20 and#956*W 95 dB dynamic range 4th-order Delta-Sigma modulator with novel power efficient operational transconductance amplifier and resonator.,2011,12,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc12.html#XuWZS11,https://doi.org/10.1631/jzus.C1000239 +Zhaohui Wu 0001,From Semantic Grid to knowledge service cloud.,2012,13,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc13.html#WuC12,https://doi.org/10.1631/jzus.C1101006 +Pawel Czarnul,Comparison of selected algorithms for scheduling workflow applications with dynamically changing service availability.,2014,15,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc15.html#Czarnul14,https://doi.org/10.1631/jzus.C1300270 +Mohammad Mohajer Tabrizi,Supply chain network design under uncertainty with new insights from contracts.,2014,15,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc15.html#TabriziK14,https://doi.org/10.1631/jzus.C1300279 +Shibiao Xu,Statistical learning based facial animation.,2013,14,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc14.html#XuMMZ13,https://doi.org/10.1631/jzus.CIDE1307 +Jing Wang 0025,A novel confidence estimation method for heterogeneous implicit feedback.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#WangLZTY17,https://doi.org/10.1631/FITEE.1601468 +Xiao-hua Li,An algorithm for identifying symmetric variables based on the order eigenvalue matrix.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#LiS17,https://doi.org/10.1631/FITEE.1601052 +Sepehr Tabrizchi,A novel ternary half adder and multiplier based on carbon nanotube field effect transistors.,2017,18,Frontiers of IT and EE,3,db/journals/jzusc/jzusc18.html#TabrizchiAN17,https://doi.org/10.1631/FITEE.1500366 +Deng Chen,An oversampling approach for mining program specifications.,2018,19,Frontiers of IT and EE,6,db/journals/jzusc/jzusc19.html#ChenZWWLLWZ18,https://doi.org/10.1631/FITEE.1601783 +Lai Teng,A composite optimization method for separation parameters of large-eccentricity pico-satellites.,2018,19,Frontiers of IT and EE,5,db/journals/jzusc/jzusc19.html#TengJ18,https://doi.org/10.1631/FITEE.1700416 +Hüseyin Oktay Erkol,A VHDL application for kinematic equation solutions of multi-degree-of-freedom systems.,2014,15,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc15.html#ErkolD14,https://doi.org/10.1631/jzus.C1400120 +Yang Yang,CCA2 secure biometric identity based encryption with constant-size ciphertext.,2011,12,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc12.html#YangHZS11,https://doi.org/10.1631/jzus.C1000429 +Yi Xie,Probabilistic hypergraph based hash codes for social image search.,2014,15,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc15.html#XieYH14,https://doi.org/10.1631/jzus.C1300268 +Jinsong Su,Topic-aware pivot language approach for statisticalmachine translation.,2014,15,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc15.html#SuSHLWCD14,https://doi.org/10.1631/jzus.C1300208 +Zhen-ming Yuan,A microblog recommendation algorithm based on social tagging and a temporal interest evolution model.,2015,16,Frontiers of IT and EE,7,db/journals/jzusc/jzusc16.html#YuanHSLX15,https://doi.org/10.1631/FITEE.1400368 +Du Wan Cheun,A taxonomic framework for autonomous service management in Service-Oriented Architecture.,2012,13,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc13.html#CheunLK12,https://doi.org/10.1631/jzus.C1100359 +Rui-Rong Wang,Hardware design of a localization system for staff in high-risk manufacturing areas.,2013,14,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc14.html#WangYXWX13,https://doi.org/10.1631/jzus.C1200229 +Farnaz Sabahi,A framework for analysis of extended fuzzy logic.,2014,15,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc15.html#SabahiA14,https://doi.org/10.1631/jzus.C1300217 +Ali Uysal,Real-time condition monitoring and fault diagnosis in switched reluctance motors with Kohonen neural network.,2013,14,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc14.html#UysalB13,https://doi.org/10.1631/jzus.C1300085 +Chao Ma,A highly efficient reconfigurable rotation unit based on an inverse butterfly network.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#MaDLZ17,https://doi.org/10.1631/FITEE.1601265 +Mi Lin,A novel ternary JK flip-flop using the resonant tunneling diode literal circuit.,2012,13,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc13.html#LinS12,https://doi.org/10.1631/jzus.C1200214 +Yongqiang Ma,A novel spiking neural network of receptive field encoding with groups of neurons decision.,2018,19,Frontiers of IT and EE,1,db/journals/jzusc/jzusc19.html#MaWYCZR18,https://doi.org/10.1631/FITEE.1700714 +Bo Li,Maximizing power saving with state transition overhead for multiple mobile subscriber stations in WiMAX.,2016,17,Frontiers of IT and EE,10,db/journals/jzusc/jzusc17.html#LiP16,https://doi.org/10.1631/FITEE.1500314 +Hamid Tabatabaee,Dynamic task scheduling modeling in unstructured heterogeneous multiprocessor systems.,2014,15,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc15.html#TabatabaeeAP14,https://doi.org/10.1631/jzus.C1300204 +Sandeep Sarowa,A novel energy-efficient ICI cancellation technique for bandwidth improvements through cyclic prefix reuse in an OFDM system.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#SarowaSAS17,https://doi.org/10.1631/FITEE.1601333 +Jiong Fu,Enterprise-level business component identification in business architecture integration.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#FuLLL17,https://doi.org/10.1631/FITEE.1601836 +Chao Guo 0003,A virtual 3D interactive painting method for Chinese calligraphy and painting based on real-time force feedback technology.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#GuoHSXY17,https://doi.org/10.1631/FITEE.1601283 +Xin Li,An efficient bi-objective optimization framework for statistical chip-level yield analysis under parameter variations.,2016,17,Frontiers of IT and EE,2,db/journals/jzusc/jzusc17.html#LiSXT16,https://doi.org/10.1631/FITEE.1500168 +Shengkang Yu,Joint entity-relation knowledge embedding via cost-sensitive learning.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#YuZLZ17,https://doi.org/10.1631/FITEE.1601255 +Mahmoud Modaresi,New method to determine optimum impedance of fault current limiters for symmetrical and/or asymmetrical faults in power systems.,2018,19,Frontiers of IT and EE,2,db/journals/jzusc/jzusc19.html#ModaresiL18,https://doi.org/10.1631/FITEE.1601689 +Min Du,Accelerated k-nearest neighbors algorithm based on principal component analysis for text categorization.,2013,14,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc14.html#DuC13,https://doi.org/10.1631/jzus.C1200303 +Yuan-Ko Huang,Designing a location update strategy for free-moving and network-constrained objects with varying velocity.,2014,15,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc15.html#HuangL14,https://doi.org/10.1631/jzus.C1300337 +Wen-yin Ni,Predicting overlapping protein complexes in weighted interactome networks.,2013,14,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc14.html#NiXZH13,https://doi.org/10.1631/jzus.C13b0097 +Nabiollah Ramezani,Calculating the transient behavior of grounding systems using inverse Laplace transform.,2011,12,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc12.html#RamezaniS11,https://doi.org/10.1631/jzus.C0910777 +Yan Deng,Application of artificial neural network for switching loss modeling in power IGBTs.,2010,11,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc11.html#DengHZXSJ10,https://doi.org/10.1631/jzus.C0910442 +Ming Yang,Scientific articles recommendation with topic regression and relational matrix factorization.,2014,15,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc15.html#YangLZ14,https://doi.org/10.1631/jzus.C1300374 +Bo Yu 0008,A survey of malware behavior description and analysis.,2018,19,Frontiers of IT and EE,5,db/journals/jzusc/jzusc19.html#YuFYTL18,https://doi.org/10.1631/FITEE.1601745 +Da-hui Gao,Distributed fault-tolerant strategy for electric swing system of hybrid excavators under communication errors.,2017,18,Frontiers of IT and EE,7,db/journals/jzusc/jzusc18.html#GaoWL17,https://doi.org/10.1631/FITEE.1601021 +Sara Haghighatnia,Enlarging the guaranteed region of attraction in nonlinear systems with bounded parametric uncertainty.,2013,14,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc14.html#HaghighatniaM13,https://doi.org/10.1631/jzus.C1200213 +Gwang-Min Choe,Anadvanced integrated framework for moving object tracking.,2014,15,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc15.html#ChoeWLCSP14,https://doi.org/10.1631/jzus.C1400006 +Yuan-hong Shen,A self-optimizing QoS-aware service composition approach in a context sensitive environment.,2011,12,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc12.html#ShenY11,https://doi.org/10.1631/jzus.C1000031 +Junhong Zhao,Exploiting articulatory features for pitch accent detection.,2013,14,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc14.html#ZhaoXZYLX13,https://doi.org/10.1631/jzus.C1300104 +Ozlem Karaca,A cross-layer fault tolerance management module for wireless sensor networks.,2012,13,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc13.html#KaracaS12,https://doi.org/10.1631/jzus.C1200029 +Bei Zhang,High-precision time domain reactive power measurement in the presence of interharmonics.,2011,12,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc12.html#ZhangWS11,https://doi.org/10.1631/jzus.C1000145 +Jin Wang,Adaptive robust beamformer formulti-pair two-way relay networks with imperfect channel state information.,2016,17,Frontiers of IT and EE,3,db/journals/jzusc/jzusc17.html#WangSCCCL16,https://doi.org/10.1631/FITEE.1500134 +Muhammad Asif Zahoor Raja,Bio-inspired heuristics hybrid with interior-point method for active noise control systems without identification of secondary path.,2018,19,Frontiers of IT and EE,2,db/journals/jzusc/jzusc19.html#RajaACK18,https://doi.org/10.1631/FITEE.1601028 +Sheng-kai Yang,Preservation of local linearity by neighborhood subspace scaling for solving the pre-image problem.,2014,15,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc15.html#YangMS14,https://doi.org/10.1631/jzus.C1300248 +Mark Greaves,Semantics and the crowd.,2012,13,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc13.html#Greaves12,https://doi.org/10.1631/jzus.C1101003 +Xiao-dong Tan,Fault evolution-test dependency modeling for mechanical systems.,2015,16,Frontiers of IT and EE,10,db/journals/jzusc/jzusc16.html#TanLLLQ15,https://doi.org/10.1631/FITEE.1500011 +Ling Zhou,A fractional-order multifunctional n-step honeycomb RLC circuit network.,2017,18,Frontiers of IT and EE,8,db/journals/jzusc/jzusc18.html#ZhouTZ17,https://doi.org/10.1631/FITEE.1601560 +Hongchao Hu,A forwarding graph embedding algorithm exploiting regional topology information.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#HuZMW17,https://doi.org/10.1631/FITEE.1601404 +Jianhua Dai,Attribute reduction in interval-valued information systems based on information entropies.,2016,17,Frontiers of IT and EE,9,db/journals/jzusc/jzusc17.html#DaiHZHHS16,https://doi.org/10.1631/FITEE.1500447 +Zhenhua Yuan,Correlated channel model-based secure communications in dual-hop wireless communication networks.,2017,18,Frontiers of IT and EE,6,db/journals/jzusc/jzusc18.html#YuanCCLYJ17,https://doi.org/10.1631/FITEE.1700023 +Zhaohui Wu 0001,Brain-machine interface (BMI) and cyborg intelligence.,2014,15,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc15.html#Wu14,https://doi.org/10.1631/jzus.C1400325 +Maoqun Yao,Design of a novel RTD-based three-variable universal logic gate.,2015,16,Frontiers of IT and EE,8,db/journals/jzusc/jzusc16.html#YaoYXS15,https://doi.org/10.1631/FITEE.1500102 +Zhiyong Feng,Joint user association and resource partition for downlink-uplink decoupling inmulti-tier HetNets.,2017,18,Frontiers of IT and EE,6,db/journals/jzusc/jzusc18.html#FengFG17,https://doi.org/10.1631/FITEE.1700031 +Yu Su,A hybrid brain-computer interface control strategy in a virtual environment.,2011,12,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc12.html#SuQLWYLZZC11,https://doi.org/10.1631/jzus.C1000208 +Riichiro Mizoguchi,On scalability of the Semantic Web.,2012,13,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc13.html#Mizoguchi12,https://doi.org/10.1631/jzus.C1101005 +Jing Fan,A GPU-based multi-resolution algorithm for simulation of seed dispersal.,2012,13,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc13.html#FanJGT12,https://doi.org/10.1631/jzus.C1200147 +Yonghong Tian 0001,Towards human-like and transhuman perception in AI 2.0: a review.,2017,18,Frontiers of IT and EE,1,db/journals/jzusc/jzusc18.html#TianCXLDCXCWHHH17,https://doi.org/10.1631/FITEE.1601804 +Mofei Song,Synthesis of 3D models by Petri net.,2013,14,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc14.html#SongSZZ13,https://doi.org/10.1631/jzus.CIDE1305 +Zhonglin Ye,Syntactic word embedding based on dependency syntax and polysemous analysis.,2018,19,Frontiers of IT and EE,4,db/journals/jzusc/jzusc19.html#YeZ18,https://doi.org/10.1631/FITEE.1601846 +Mian Cheng,Real-time pre-processing system with hardware accelerator for mobile core networks.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#ChengSX17,https://doi.org/10.1631/FITEE.1700507 +Dexuan Zou,Volterra filter modeling of a nonlinear discrete-time system based on a ranked differential evolution algorithm.,2014,15,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc15.html#ZouGL14,https://doi.org/10.1631/jzus.C1300350 +Jingfa Liu,Multi-objective layout optimization of a satellite module using the Wang-Landau sampling method with local search.,2016,17,Frontiers of IT and EE,6,db/journals/jzusc/jzusc17.html#LiuHLXLH16,https://doi.org/10.1631/FITEE.1500292 +Li-chun Yang,Speech enhancement with a GSC-like structure employing sparse coding.,2014,15,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc15.html#YangQ14,https://doi.org/10.1631/jzus.C1400085 +Shenyi Chen,Modified reward function on abstract features in inverse reinforcement learning.,2010,11,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc11.html#ChenQFJZ10,https://doi.org/10.1631/jzus.C0910486 +Zhilu Yuan,Simulation model of self-organizing pedestrian movement considering following behavior.,2017,18,Frontiers of IT and EE,8,db/journals/jzusc/jzusc18.html#YuanJLZFT17,https://doi.org/10.1631/FITEE.1601592 +Hwa Jen Yap,A generic approach of integrating 3D models into virtual manufacturing.,2012,13,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc13.html#YapTD12,https://doi.org/10.1631/jzus.C11a0077 +Xue Liu,A pipelined architecture for normal I/O order FFT.,2011,12,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc12.html#LiuYW11,https://doi.org/10.1631/jzus.C1000234 +Li Weigang,Querying dynamic communities in online social networks.,2014,15,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc15.html#WeigangSZMU14,https://doi.org/10.1631/jzus.C1300281 +Xinyu Duan,Temporality-enhanced knowledgememory network for factoid question answering.,2018,19,Frontiers of IT and EE,1,db/journals/jzusc/jzusc19.html#DuanTZZZXZW18,https://doi.org/10.1631/FITEE.1700788 +Hamid Reza Boveiri,An incremental ant colony optimization based approach to task assignment to processors for multiprocessor scheduling.,2017,18,Frontiers of IT and EE,4,db/journals/jzusc/jzusc18.html#Boveiri17,https://doi.org/10.1631/FITEE.1500394 +Rong Zhu,Learning a hierarchical image manifold for Web image classification.,2012,13,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc13.html#ZhuYYX12,https://doi.org/10.1631/jzus.C1200032 +Juan Yu 0002,AGCD: a robust periodicity analysis method based on approximate greatest common divisor.,2015,16,Frontiers of IT and EE,6,db/journals/jzusc/jzusc16.html#YuL15,https://doi.org/10.1631/FITEE.1400345 +De-Xuan Zou,A modified simulated annealing algorithm and an excessive area model for floorplanning using fixed-outline constraints.,2016,17,Frontiers of IT and EE,11,db/journals/jzusc/jzusc17.html#ZouWPQ16,https://doi.org/10.1631/FITEE.1500386 +Hehao Niu,Joint cooperative beamforming and artificial noise design for secure AF relay networks with energy-harvesting eavesdroppers.,2017,18,Frontiers of IT and EE,6,db/journals/jzusc/jzusc18.html#NiuZGHL17,https://doi.org/10.1631/FITEE.1601832 +Hong Hong,Detection of time varying pitch in tonal languages: an approach based on ensemble empirical mode decomposition.,2012,13,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc13.html#HongZSGW12,https://doi.org/10.1631/jzus.C1100092 +Michael G. Danikas,Partial discharge diagnostics in wind turbine insulation.,2011,12,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc12.html#DanikasK11,https://doi.org/10.1631/jzus.C1000256 +De-jun Li,IEEE 1588 based time synchronization system for a seafloor observatory network.,2013,14,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc14.html#LiWYJC13,https://doi.org/10.1631/jzus.C1300084 +Fan Yang,Cooperative transport strategy for formation control of multiple mobile robots.,2010,11,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc11.html#YangLL10,https://doi.org/10.1631/jzus.C1000136 +Liang-fang Qian,A slotted floor acquisition multiple access based MAC protocol for underwater acoustic networks with RTS competition.,2015,16,Frontiers of IT and EE,3,db/journals/jzusc/jzusc16.html#QianZL15,https://doi.org/10.1631/FITEE.1400187 +Congdao Han,An adaptive fast search algorithm for block motion estimation in H.264.,2010,11,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc11.html#HanLX10,https://doi.org/10.1631/jzus.C0910561 +Xin Ma 0001,State-chain sequential feedback reinforcement learning for path planning of autonomous mobile robots.,2013,14,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc14.html#MaXSDL13,https://doi.org/10.1631/jzus.C1200226 +Leiming Zhang,Controller area network node reliability assessment based on observable node information.,2017,18,Frontiers of IT and EE,5,db/journals/jzusc/jzusc18.html#ZhangTL17,https://doi.org/10.1631/FITEE.1601029 +Parteek Kumar,Punjabi DeConverter for generating Punjabi from Universal Networking Language.,2013,14,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc14.html#KumarS13,https://doi.org/10.1631/jzus.C1200061 +Rasha Shoitan,Improving the reconstruction efficiency of sparsity adaptive matching pursuit based on the Wilkinson matrix.,2018,19,Frontiers of IT and EE,4,db/journals/jzusc/jzusc19.html#ShoitanNIT18,https://doi.org/10.1631/FITEE.1601588 +Yaojie Lu,Cross-lingual implicit discourse relation recognition with co-training.,2018,19,Frontiers of IT and EE,5,db/journals/jzusc/jzusc19.html#LuXWXWS18,https://doi.org/10.1631/FITEE.1601865 +Rashid Naseem,Improved binary similarity measures for software modularization.,2017,18,Frontiers of IT and EE,8,db/journals/jzusc/jzusc18.html#NaseemDMLSS17,https://doi.org/10.1631/FITEE.1500373 +Hong Yin,Symbolic representation based on trend features for knowledge discovery in long time series.,2015,16,Frontiers of IT and EE,9,db/journals/jzusc/jzusc16.html#YinYZMZ15,https://doi.org/10.1631/FITEE.1400376 +Jin Hu,Flexible resonant tank for a combined converter to achieve an HPS and LED compatible driver.,2015,16,Frontiers of IT and EE,8,db/journals/jzusc/jzusc16.html#HuLLZ15,https://doi.org/10.1631/FITEE.1500054 +Guoqiang Zeng,Modified extremal optimization for the hard maximum satisfiability problem.,2011,12,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc12.html#ZengLM11,https://doi.org/10.1631/jzus.C1000313 +Kai Zhu,Label fusion for segmentation via patch based on local weighted voting.,2017,18,Frontiers of IT and EE,5,db/journals/jzusc/jzusc18.html#ZhuLZZ17,https://doi.org/10.1631/FITEE.1500457 +Lu Chen,Hybrid full-/half-duplex cellular networks: user admission and power control.,2018,19,Frontiers of IT and EE,3,db/journals/jzusc/jzusc19.html#ChenWZY18,https://doi.org/10.1631/FITEE.1700027 +Feng Wei,Suboptimal network coding subgraph algorithms for 5G minimum-cost multicast networks.,2018,19,Frontiers of IT and EE,5,db/journals/jzusc/jzusc19.html#WeiZ18,https://doi.org/10.1631/FITEE.1700020 +Yu-shi Zhu,A space-saving steering method for underwater gliders in lake monitoring.,2017,18,Frontiers of IT and EE,4,db/journals/jzusc/jzusc18.html#ZhuYWLX17,https://doi.org/10.1631/FITEE.1500399 +Di-qing Ying,Residual intensity modulation in resonator fiber optic gyros with sinusoidal wave phase modulation.,2014,15,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc15.html#YingLMJ14,https://doi.org/10.1631/jzus.C1400036 +Cheng Jin,A new scheme of coded ultrasound using Golay codes.,2010,11,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc11.html#JinCQW10,https://doi.org/10.1631/jzus.C0910353 +Xiaobo Li,A multi-paradigm decision modeling framework for combat system effectiveness measurement based on domain-specific modeling.,2013,14,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc14.html#LiLVWL13,https://doi.org/10.1631/jzus.C1200374 +Biligsaikhan Batjargal,Providing universal access to Japanese humanities digital libraries: an approach to federated searching system using automatic metadata mapping.,2010,11,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc11.html#BatjargalKM10,https://doi.org/10.1631/jzus.C1001001 +Seyed Mehdi Rakhtala,Proton exchange membrane fuel cell voltage-tracking using artificial neural networks.,2011,12,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc12.html#RakhtalaGN11,https://doi.org/10.1631/jzus.C0910683 +Zhimin Han,Distributed coordination in multi-agent systems: a graph Laplacian perspective.,2015,16,Frontiers of IT and EE,6,db/journals/jzusc/jzusc16.html#HanLFC15,https://doi.org/10.1631/FITEE.1500118 +Xiao Chen,A driving pulse edge modulation technique and its complex programming logic devices implementation.,2015,16,Frontiers of IT and EE,12,db/journals/jzusc/jzusc16.html#ChenQGC15,https://doi.org/10.1631/FITEE.1500111 +Zhi-qiang Luo,Numerical solution of potential flow equations with a predictor-corrector finite difference method.,2012,13,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc13.html#Luo12,https://doi.org/10.1631/jzus.C1100313 +Jia-ming Zhang,Nonlinear path-following method for fixed-wing unmanned aerial vehicles.,2013,14,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc14.html#ZhangLCL13,https://doi.org/10.1631/jzus.C1200195 +Shanzhi Chen,A tutorial on 5G and the progress in China.,2018,19,Frontiers of IT and EE,3,db/journals/jzusc/jzusc19.html#ChenK18,https://doi.org/10.1631/FITEE.1800070 +Mehdi Fallah Kazemi,Level-direction decomposition analysis with a focus on image watermarking framework.,2016,17,Frontiers of IT and EE,11,db/journals/jzusc/jzusc17.html#KazemiPM16,https://doi.org/10.1631/FITEE.1500165 +Oscar Déniz,Computer vision based eyewear selector.,2010,11,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc11.html#DenizSLAHB10,https://doi.org/10.1631/jzus.C0910377 +Na-e Zheng,Sub-channel shared resource allocation for multi-user distributed MIMO-OFDM systems.,2014,15,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc15.html#ZhengZHW14,https://doi.org/10.1631/jzus.C1400049 +Adel Khosravi,Autonomous fault-diagnosis and decision-making algorithm for determining faulty nodes in distributed wireless networks.,2016,17,Frontiers of IT and EE,9,db/journals/jzusc/jzusc17.html#KhosraviK16,https://doi.org/10.1631/FITEE.1500176 +Xinzheng Xu,Optimizing radial basis function neural network based on rough sets and affinity propagation clustering algorithm.,2012,13,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc13.html#XuDSZ12,https://doi.org/10.1631/jzus.C1100176 +Jian Xu,Quantized innovations Kalman filter: stability and modificationwith scaling quantization.,2012,13,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc13.html#XuLX12,https://doi.org/10.1631/jzus.C1100161 +A-Ram Choi,Controlling the contact levels of details for fast and precise haptic collision detection.,2017,18,Frontiers of IT and EE,8,db/journals/jzusc/jzusc18.html#ChoiKS17,https://doi.org/10.1631/FITEE.1500498 +Jeff Z. Pan,Local closed world reasoning: a personal view on current status and trends.,2012,13,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc13.html#PanR12,https://doi.org/10.1631/jzus.C1101004 +Mao-qun Yao,Emitter-couple logic circuit design based on the threshold-arithmetic algebraic system.,2013,14,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc14.html#YaoZ13,https://doi.org/10.1631/jzus.C1300069 +João Carneiro,Intelligent negotiation model for ubiquitous group decision scenarios.,2016,17,Frontiers of IT and EE,4,db/journals/jzusc/jzusc17.html#CarneiroMMN16,https://doi.org/10.1631/FITEE.1500344 +Yi-Han Xu,An enhanced framework for providing multimedia broadcast/multicast service over heterogeneous networks.,2014,15,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc15.html#XuCTI14,https://doi.org/10.1631/jzus.C1300205 +Li Chen,Mismatched feature detection with finer granularity for emotional speaker recognition.,2014,15,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc15.html#ChenYW14,https://doi.org/10.1631/jzus.C1400002 +Xing-zheng Li,Power control for two-way amplify-and-forward relaying over Rayleigh fading channels.,2011,12,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc12.html#LiLXDL11,https://doi.org/10.1631/jzus.C1000179 +Changqing Xun,Efficient fine-grained shared buffer management for multiple OpenCL devices.,2013,14,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc14.html#XunCLZ13,https://doi.org/10.1631/jzus.C1300078 +Xiao-lei Ma,Transit smart card data mining for passenger origin information extraction.,2012,13,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc13.html#MaWCL12,https://doi.org/10.1631/jzus.C12a0049 +Bo Zhu,An efficient projection defocus algorithm based on multi-scale convolution kernel templates.,2013,14,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc14.html#ZhuXSZ13,https://doi.org/10.1631/jzus.C1300080 +Qirong Mao,Speaker-independent speech emotion recognition by fusion of functional and accompanying paralanguage features.,2013,14,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc14.html#MaoZHZ13,https://doi.org/10.1631/jzus.CIDE1310 +Fenghe Wang,Efficient hierarchical identity based encryption scheme in the standard model over lattices.,2016,17,Frontiers of IT and EE,8,db/journals/jzusc/jzusc17.html#WangWL16,https://doi.org/10.1631/FITEE.1500219 +Peng Liu,Optimized design of LED freeform lens for uniform circular illumination.,2012,13,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc13.html#LiuWZLL12,https://doi.org/10.1631/jzus.C12a0116 +Gang Xiong,A virtual service placement approach based on improved quantum genetic algorithm.,2016,17,Frontiers of IT and EE,7,db/journals/jzusc/jzusc17.html#XiongHTLLZ16,https://doi.org/10.1631/FITEE.1500494 +Yong-ping Du,Using heterogeneous patent network features to rank and discover influential inventors.,2015,16,Frontiers of IT and EE,7,db/journals/jzusc/jzusc16.html#DuYL15,https://doi.org/10.1631/FITEE.1400394 +Li-sheng Chen,Novel serpentine structure design method considering confidence level and estimation precision.,2013,14,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc14.html#ChenLZJY13,https://doi.org/10.1631/jzus.C1200297 +Yang Ren,Optimization of the resonant frequency servo loop technique in the resonator micro optic gyro.,2011,12,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc12.html#RenJCM11,https://doi.org/10.1631/jzus.C1000441 +Che-Wei Lin,A power-aware code-compression design for RISC/VLIW architecture.,2011,12,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc12.html#LinLW11,https://doi.org/10.1631/jzus.C1000321 +Reza Sookhtsaraei,A locality-based replication manager for data cloud.,2016,17,Frontiers of IT and EE,12,db/journals/jzusc/jzusc17.html#SookhtsaraeiAGF16,https://doi.org/10.1631/FITEE.1500391 +Jianxin Zhu,New computational treatment of optical wave propagation in lossy waveguides.,2015,16,Frontiers of IT and EE,8,db/journals/jzusc/jzusc16.html#ZhuW15,https://doi.org/10.1631/FITEE.1400406 +Neda Kazemy Najafabadi,Design of MMIC oscillators using GaAs 0.2 and#956*m PHEMT technology.,2012,13,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc13.html#NajafabadiND12,https://doi.org/10.1631/jzus.C1200013 +Wen-de Dong,Image stabilization with support vector machine.,2011,12,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc12.html#DongCXFL11,https://doi.org/10.1631/jzus.C1000236 +Gang Xu 0001,Quasi-angle-preserving mesh deformation using the least-squares approach.,2014,15,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc15.html#XuDGHWW14,https://doi.org/10.1631/jzus.C1400103 +Xin Guan,An extended processing scheme for coherent integration and parameter estimation based on matched filtering in passive radar.,2014,15,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc15.html#GuanZHD14,https://doi.org/10.1631/jzus.C1400074 +Ignacio Marín 0002,Generating native user interfaces for multiple devices by means of model transformation.,2015,16,Frontiers of IT and EE,12,db/journals/jzusc/jzusc16.html#0003OPR15,https://doi.org/10.1631/FITEE.1500083 +Ming Tang,Self-sensing active magnetic bearing using real-time duty cycle.,2013,14,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc14.html#TangZY13,https://doi.org/10.1631/jzus.C1300023 +Jian-ping Qiu,A multimode digital controller IC for flyback converter with high accuracy primary-side feedback.,2013,14,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc14.html#QiuHW13,https://doi.org/10.1631/jzus.C1200344 +Yahong Han,Multiple hypergraph ranking for video concept detection.,2010,11,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc11.html#HanSWW10,https://doi.org/10.1631/jzus.C0910453 +Ahmet Sayar,Kd-tree and quad-tree decompositions for declustering of 2D range queries over uncertain space.,2015,16,Frontiers of IT and EE,2,db/journals/jzusc/jzusc16.html#SayarEO15,https://doi.org/10.1631/FITEE.1400165 +Roger Bostelman,Cross-industry standard test method developments: from manufacturing to wearable robots.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#BostelmanMF17,https://doi.org/10.1631/FITEE.1601316 +Yi-peng Song,Comparison of resonant current regulators for DFIG during grid voltage distortion.,2013,14,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc14.html#SongN13,https://doi.org/10.1631/jzus.C1300125 +Yang Chen 0005,Gradient-based compressive image fusion.,2015,16,Frontiers of IT and EE,3,db/journals/jzusc/jzusc16.html#ChenQ15,https://doi.org/10.1631/FITEE.1400217 +Chunlin Zhou,Dynamic modeling of a wave glider.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#ZhouWZLX17,https://doi.org/10.1631/FITEE.1700294 +Shuang-Quan Wen,Grasp evaluation and contact points planning for polyhedral objects using a ray-shooting algorithm.,2012,13,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc13.html#WenW12,https://doi.org/10.1631/jzus.C1100151 +Yong Ding 0003,Current oscillations and low-frequency noises in GaAs MESFET channels with sidegating bias.,2011,12,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc12.html#DingLY11,https://doi.org/10.1631/jzus.C1000312 +Peihong Wang,Resin-bonded NdFeB micromagnets for integration into electromagnetic vibration energy harvesters.,2013,14,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc14.html#WangTYD13,https://doi.org/10.1631/jzus.C12MNT08 +Bahador Fani,Waveform feature monitoring scheme for transformer differential protection.,2011,12,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc12.html#FaniGA11,https://doi.org/10.1631/jzus.C1010042 +Nu Wen,Adaptive contourlet-wavelet iterative shrinkage/thresholding for remote sensing image restoration.,2014,15,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc15.html#WenYZC14,https://doi.org/10.1631/jzus.C1300377 +Osama A. Khashan,Performance study of selective encryption in comparison to full encryption for still visual images.,2014,15,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc15.html#KhashanZS14,https://doi.org/10.1631/jzus.C1300262 +Rui-rui Liu,Passive source localization using importance sampling based on TOA and FOA measurements.,2017,18,Frontiers of IT and EE,8,db/journals/jzusc/jzusc18.html#LiuWYWW17,https://doi.org/10.1631/FITEE.1601657 +Wen-yi Wang,Is playing-as-downloading feasible in an eMule P2P file sharing system?,2010,11,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc11.html#WangC10,https://doi.org/10.1631/jzus.C0910408 +Xiong-bin Peng,Quantitative feedback controller design and test for an electro-hydraulic position control system in a large-scale reflecting telescope.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#PengGYLWL17,https://doi.org/10.1631/FITEE.1601104 +Mohammad Mosleh,A robust intelligent audio watermarking scheme using support vector machine.,2016,17,Frontiers of IT and EE,12,db/journals/jzusc/jzusc17.html#MoslehLKMH16,https://doi.org/10.1631/FITEE.1500297 +Karima Rabah,Bifurcation-based fractional-order PI and#955* D and#956* controller design approach for nonlinear chaotic systems.,2018,19,Frontiers of IT and EE,2,db/journals/jzusc/jzusc19.html#RabahLL18,https://doi.org/10.1631/FITEE.1601543 +Ze-song Li,Design considerations for electromagnetic couplers in contactless power transmission systems for deep-sea applications.,2010,11,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc11.html#LiLLC10,https://doi.org/10.1631/jzus.C0910711 +Heung-Yeung Shum,From Eliza to XiaoIce: challenges and opportunities with social chatbots.,2018,19,Frontiers of IT and EE,1,db/journals/jzusc/jzusc19.html#ShumHL18,https://doi.org/10.1631/FITEE.1700826 +Jiying Xiang,Non-ideal space division multiple access and its application.,2018,19,Frontiers of IT and EE,3,db/journals/jzusc/jzusc19.html#Xiang18,https://doi.org/10.1631/FITEE.1700827 +Jianzhi Li,Indoor massive multiple-input multiple-output channel characterization and performance evaluation.,2017,18,Frontiers of IT and EE,6,db/journals/jzusc/jzusc18.html#LiAHWYZGHZZL17,https://doi.org/10.1631/FITEE.1700021 +Zhenkun Zhou,Javelin: an access and manipulation interface for large displays.,2010,11,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc11.html#ZhouWZXZ10,https://doi.org/10.1631/jzus.C1001008 +Amin Jajarmi,Solving infinite horizon nonlinear optimal control problems using an extended modal series method.,2011,12,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc12.html#JajarmiPEK11,https://doi.org/10.1631/jzus.C1000325 +Wei Li 0022,Crowd intelligence in AI 2.0 era.,2017,18,Frontiers of IT and EE,1,db/journals/jzusc/jzusc18.html#LiWWCCZD17,https://doi.org/10.1631/FITEE.1601859 +Hui-fang Yu,Low-computation certificateless hybrid signcryption scheme.,2017,18,Frontiers of IT and EE,7,db/journals/jzusc/jzusc18.html#YuY17,https://doi.org/10.1631/FITEE.1601054 +Wen-yan Cui,An efficient lossy link localization approach for wireless sensor networks.,2017,18,Frontiers of IT and EE,5,db/journals/jzusc/jzusc18.html#CuiMYYZ17,https://doi.org/10.1631/FITEE.1601247 +Nan Luo,Feasibility analysis for attitude estimation based on pulsar polarization measurement.,2013,14,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc14.html#LuoXZX13,https://doi.org/10.1631/jzus.C1200291 +Yan-xia Jin,Fast and accurate kernel density approximation using a divide-and-conquer approach.,2010,11,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc11.html#JinZKZ10,https://doi.org/10.1631/jzus.C0910668 +Wan-qiang Shen,Triangular domain extension of linear Bernstein-like trigonometric polynomial basis.,2010,11,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc11.html#ShenW10,https://doi.org/10.1631/jzus.C0910347 +Ayaz Isazadeh,An analytical model for source code distributability verification.,2014,15,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc15.html#IsazadehKEI14,https://doi.org/10.1631/jzus.C1300066 +Jianqiang Han,Microfabrication technology for non-coplanar resonant beams and crab-leg supporting beams of dual-axis bulk micromachined resonant accelerometers.,2013,14,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc14.html#HanFLLL13,https://doi.org/10.1631/jzus.C1200251 +Kedi Wu,Serial decoding of rateless code over noisy channels.,2011,12,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc12.html#WuZCYQ11,https://doi.org/10.1631/jzus.C1000340 +Yuan-hui Zhang,A tracking and predicting scheme for ping pong robot.,2011,12,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc12.html#ZhangWYZ11,https://doi.org/10.1631/jzus.C0910528 +Jie Ding,Consensus-reaching methods for hesitant fuzzy multiple criteria group decision making with hesitant fuzzy decision making matrices.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#DingXL17,https://doi.org/10.1631/FITEE.1601546 +Zhaoyun Ding,Measuring the spreadability of users in microblogs.,2013,14,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc14.html#DingJZHHZ13,https://doi.org/10.1631/jzus.CIIP1302 +Chu He,A statistical distribution texton feature for synthetic aperture radar image classification.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#HeYTYC17,https://doi.org/10.1631/FITEE.1601051 +Qiang Meng,Dynamic modeling of a 6-degree-of-freedom Stewart platform driven by a permanent magnet synchronous motor.,2010,11,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc11.html#MengZHSH10,https://doi.org/10.1631/jzus.C0910714 +Ji-nan Leng,A novel 3780-point FFT processor scheme for the time domain synchronous OFDM system.,2011,12,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc12.html#LengXCW11,https://doi.org/10.1631/jzus.C1100071 +Xiao-Ying Wang,GaAs pHEMT multi-band/multi-mode SP9T switch for quad-band GSM and UMTS handsets applications.,2011,12,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc12.html#WangGPS11,https://doi.org/10.1631/jzus.C1000178 +Bin Chen 0003,Activity-based simulation using DEVS: increasing performance by an activity model in parallel DEVS simulation.,2014,15,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc15.html#ChenZLV14,https://doi.org/10.1631/jzus.C1300121 +Yi-xiong Zhang,Video coding using geometry based block partitioning and reordering discrete cosine transform.,2012,13,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc13.html#ZhangSW12,https://doi.org/10.1631/jzus.C1100218 +Xun Liu,Detection of engineering vehicles in high-resolution monitoring images.,2015,16,Frontiers of IT and EE,5,db/journals/jzusc/jzusc16.html#LiuZZWLY15,https://doi.org/10.1631/FITEE.1500026 +Jawad Aslam,Design of a hybrid magnetomotive force electromechanical valve actuator.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#AslamLJ17,https://doi.org/10.1631/FITEE.1601215 +Geliang Yang,Ka-band ultra low voltage miniature sub-harmonic resistive mixer with a new broadside coupled Marchand balun in 0.18-λ6*m CMOS technology.,2013,14,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc14.html#YangWLLLL13,https://doi.org/10.1631/jzus.C1200369 +Wei Zhang,Personalized topic modeling for recommending user-generated content.,2017,18,Frontiers of IT and EE,5,db/journals/jzusc/jzusc18.html#ZhangZYLCL17,https://doi.org/10.1631/FITEE.1500402 +Yue-neng Yang,Trajectory tracking for an autonomous airship using fuzzy adaptive sliding mode control.,2012,13,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc13.html#YangWZ12,https://doi.org/10.1631/jzus.C1100371 +Dafang Zhang,A splitting-after-merging approach to multi-FIB compression and fast refactoring in virtual routers.,2016,17,Frontiers of IT and EE,12,db/journals/jzusc/jzusc17.html#ZhangCLXS16,https://doi.org/10.1631/FITEE.1500499 +Xiao-hu Ma,A fast classification scheme and its application to face recognition.,2013,14,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc14.html#MaTZ13,https://doi.org/10.1631/jzus.CIDE1309 +Jadav Chandra Das,Reversible binary subtractor design using quantum dot-cellular automata.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#DasD17,https://doi.org/10.1631/FITEE.1600999 +Guoliang Han,A scalable and efficient IPv4 address sharing approach in IPv6 transition scenarios.,2015,16,Frontiers of IT and EE,8,db/journals/jzusc/jzusc16.html#HanBL15,https://doi.org/10.1631/FITEE.1500022 +Ying Cai,Multiclass classification based on a deep convolutional network for head pose estimation.,2015,16,Frontiers of IT and EE,11,db/journals/jzusc/jzusc16.html#CaiYL15,https://doi.org/10.1631/FITEE.1500125 +Xiao Ding,BUEES: a bottom-up event extraction system.,2015,16,Frontiers of IT and EE,7,db/journals/jzusc/jzusc16.html#DingQL15,https://doi.org/10.1631/FITEE.1400405 +Alireza Askarzadeh,A new artificial bee swarm algorithm for optimization of proton exchange membrane fuel cell model parameters.,2011,12,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc12.html#AskarzadehR11,https://doi.org/10.1631/jzus.C1000355 +Ziying Dai,Automatic recovery from resource exhaustion exceptions by collecting leaked resources.,2014,15,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc15.html#DaiMCL14,https://doi.org/10.1631/jzus.C1300352 +Ashkan Tashk,A Chebyshev/Legendre polynomial interpolation approach for fingerprint orientation estimation smoothing and prediction.,2010,11,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc11.html#TashkHD10,https://doi.org/10.1631/jzus.C0910749 +Liang Geng,Power-efficient dual-edge implicit pulse-triggered flip-flop with an embedded clock-gating scheme.,2016,17,Frontiers of IT and EE,9,db/journals/jzusc/jzusc17.html#GengSX16,https://doi.org/10.1631/FITEE.1500293 +Da-jun Feng,Determination of inter-satellite relative position using X-ray pulsars.,2013,14,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc14.html#FengXZS13,https://doi.org/10.1631/jzus.C12a0142 +Qiao-mu Jiang,On detecting primary user emulation attack using channel impulse response in the cognitive radio network.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#JiangCXW17,https://doi.org/10.1631/FITEE.1700203 +Wenhua Xu,Clustering feature decision trees for semi-supervised classification from high-speed data streams.,2011,12,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc12.html#XuQC11,https://doi.org/10.1631/jzus.C1000330 +Tianming Yang,Scalable high performance de-duplication backup via hash join.,2010,11,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc11.html#YangFNW10,https://doi.org/10.1631/jzus.C0910445 +Yuan Sun 0004,A survey on run-time supporting platforms for cyber physical systems.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#SunYZ17,https://doi.org/10.1631/FITEE.1601579 +Jia Tang,New technique: Design and calibration of a new high-definition three-dimensional laparoscopic system.,2015,16,Frontiers of IT and EE,1,db/journals/jzusc/jzusc16.html#TangWYJZ15,https://doi.org/10.1631/FITEE.1400149 +Qi-rong Mao,Using Kinect for real-time emotion recognition via facial expressions.,2015,16,Frontiers of IT and EE,4,db/journals/jzusc/jzusc16.html#MaoPZS15,https://doi.org/10.1631/FITEE.1400209 +Jing Zhang 0009,Task mapper and application-aware virtual machine scheduler oriented for parallel computing.,2012,13,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc13.html#ZhangCLL12,https://doi.org/10.1631/jzus.C1100217 +Pejman Mowlaee,Evaluating single-channel speech separation performance in transform-domain.,2010,11,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc11.html#MowlaeeSS10,https://doi.org/10.1631/jzus.C0910087 +Yong-Xing Liu,Energy-aware schedulingwith reconstruction and frequency equalization on heterogeneous systems.,2015,16,Frontiers of IT and EE,7,db/journals/jzusc/jzusc16.html#LiuLTL15,https://doi.org/10.1631/FITEE.1400399 +Jian-yu Bao,A power conversion system for PMSG-based WECS operating with fully-controlled current-source converters.,2014,15,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc15.html#BaoBL14,https://doi.org/10.1631/jzus.C1300231 +Yu Liu,Deformable image registration with geometric changes.,2015,16,Frontiers of IT and EE,10,db/journals/jzusc/jzusc16.html#LiuZ15,https://doi.org/10.1631/FITEE.1500045 +Jun Wang,Developing a power monitoring and protection system for the junction boxes of an experimental seafloor observatory network.,2015,16,Frontiers of IT and EE,12,db/journals/jzusc/jzusc16.html#WangLYZJC15,https://doi.org/10.1631/FITEE.1500099 +Duo Zhang 0003,Mutual-information based weighted fusion for target tracking in underwater wireless sensor networks.,2018,19,Frontiers of IT and EE,4,db/journals/jzusc/jzusc19.html#ZhangLZFZ18,https://doi.org/10.1631/FITEE.1601695 +Hamed Bozorgi,Fast uniform content-based satellite image registration using the scale-invariant feature transform descriptor.,2017,18,Frontiers of IT and EE,8,db/journals/jzusc/jzusc18.html#BozorgiJ17,https://doi.org/10.1631/FITEE.1500295 +Muhammad Asif Zahoor Raja,Neuro-heuristic computational intelligence for solving nonlinear pantograph systems.,2017,18,Frontiers of IT and EE,4,db/journals/jzusc/jzusc18.html#RajaAKSW17,https://doi.org/10.1631/FITEE.1500393 +Jin-He Shi,A submatrix-based P300 brain-computer interface stimulus presentation paradigm.,2012,13,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc13.html#ShiSJD12,https://doi.org/10.1631/jzus.C1100328 +Sheng-Zheng Wang,Cranio-maxillofacial surgery simulation based on pre-specified target face configurations.,2010,11,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc11.html#WangYG10,https://doi.org/10.1631/jzus.C0910349 +Bin Lin 0003,Erratum to: A sparse matrix model-based optical proximity correction algorithm with model-based mapping between segments and control sites.,2011,12,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc12.html#LinYSY11a,https://doi.org/10.1631/jzus.C10e0219 +Huajun Chen,National semantic infrastructure for traditional Chinese medicine.,2012,13,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc13.html#Chen12,https://doi.org/10.1631/jzus.C1101012 +Wei Yang,Resource allocation for physical-layer security in OFDMAdownlinkwith imperfect CSI.,2018,19,Frontiers of IT and EE,3,db/journals/jzusc/jzusc19.html#YangMCCYX18,https://doi.org/10.1631/FITEE.1700026 +Fengfei Zhao,Greedy feature replacement for online value function approximation.,2014,15,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc15.html#ZhaoQSFR14,https://doi.org/10.1631/jzus.C1300246 +Suiang-Shyan Lee,An accelerated K-means clustering algorithm using selection and erasure rules.,2012,13,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc13.html#LeeL12,https://doi.org/10.1631/jzus.C1200078 +Saif ur Rehman Khan,RePizer: a framework for prioritization of software requirements.,2016,17,Frontiers of IT and EE,8,db/journals/jzusc/jzusc17.html#KhanLDTKA16,https://doi.org/10.1631/FITEE.1500162 +Di Guo,Controllability analysis of second-ordermulti-agent systemswith directed andweighted interconnection.,2015,16,Frontiers of IT and EE,10,db/journals/jzusc/jzusc16.html#GuoZLY15,https://doi.org/10.1631/FITEE.1500069 +Huajun Feng,Real-time motion deblurring algorithm with robust noise suppression.,2010,11,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc11.html#FengWXLLZ10,https://doi.org/10.1631/jzus.C0910201 +Shaofan Wang,Extracting hand articulations from monocular depth images using curvature scale space descriptors.,2016,17,Frontiers of IT and EE,1,db/journals/jzusc/jzusc17.html#WangLKY16,https://doi.org/10.1631/FITEE.1500126 +Yunzheng Tao,Aprojected gradient based game theoretic approach for multi-user power control in cognitive radio network.,2018,19,Frontiers of IT and EE,3,db/journals/jzusc/jzusc19.html#TaoWHZ18,https://doi.org/10.1631/FITEE.1700067 +Lian-hua Chi,Comprehensive and efficient discovery of time series motifs.,2011,12,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc12.html#ChiCFWC11,https://doi.org/10.1631/jzus.C1100037 +Rongrit Chatthaworn,An approach for evaluating the impact of an intermittent renewable energy source on transmission expansion planning.,2015,16,Frontiers of IT and EE,10,db/journals/jzusc/jzusc16.html#ChatthawornC15,https://doi.org/10.1631/FITEE.1500049 +Huanfeng Peng,Preserving privacy information flow security in composite service evolution.,2018,19,Frontiers of IT and EE,5,db/journals/jzusc/jzusc19.html#PengHLLFW18,https://doi.org/10.1631/FITEE.1700359 +Alicia Cantón,Interpolation of a spline developable surface between a curve and two rulings.,2015,16,Frontiers of IT and EE,3,db/journals/jzusc/jzusc16.html#CantonF15,https://doi.org/10.1631/FITEE.14a0210 +Hong Zhou,Automatic inspection of LED indicators on automobile meters based on a seeded region growing algorithm.,2010,11,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc11.html#ZhouXHSG10,https://doi.org/10.1631/jzus.C0910144 +Ahmad Firdaus,Discovering optimal features using static analysis and a genetic search based method for Android malware detection.,2018,19,Frontiers of IT and EE,6,db/journals/jzusc/jzusc19.html#FirdausAKR18,https://doi.org/10.1631/FITEE.1601491 +J. A. Rincon,Using emotions for the development of human-agent societies.,2016,17,Frontiers of IT and EE,4,db/journals/jzusc/jzusc17.html#RinconBFJC16,https://doi.org/10.1631/FITEE.1500343 +Hong Song,Modeling of a dynamic dual-input dual-output fast steeringmirror system.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#SongZYHZLGWHMFY17,https://doi.org/10.1631/FITEE.1601221 +Iraj Arghand Lafmajani,A novel frequency-selective metamaterial to improve helix antenna.,2012,13,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc13.html#LafmajaniR12,https://doi.org/10.1631/jzus.C1100239 +Xi-chuan Zhou,Integrating outlier filtering in large margin training.,2011,12,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc12.html#ZhouSY11,https://doi.org/10.1631/jzus.C1000361 +Dipayan Dev,Dr. Hadoop: an infinite scalable metadata management for Hadoop - How the baby elephant becomes immortal.,2016,17,Frontiers of IT and EE,1,db/journals/jzusc/jzusc17.html#DevP16,https://doi.org/10.1631/FITEE.1500015 +Xi-chuan Zhou,Largemargin classification for combating disguise attacks on spam filters.,2012,13,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc13.html#ZhouSHL12,https://doi.org/10.1631/jzus.C1100259 +Xiang Pan,Robust time reversal processing for active detection of a small bottom target in a shallow water waveguide.,2010,11,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc11.html#PanLXG10,https://doi.org/10.1631/jzus.C0910212 +Banghua Yang,Fast removal of ocular artifacts from electroencephalogram signals using spatial constraint independent component analysis based recursive least squares in brain-computer interface.,2015,16,Frontiers of IT and EE,6,db/journals/jzusc/jzusc16.html#YangHLW15,https://doi.org/10.1631/FITEE.1400299 +Zheng-wei Zhang,Biologically inspired collective construction with visual landmarks.,2012,13,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc13.html#ZhangZL12,https://doi.org/10.1631/jzus.C1100243 +Guo-Jiang Shen,A dynamic signal coordination control method for urban arterial roads and its application.,2016,17,Frontiers of IT and EE,9,db/journals/jzusc/jzusc17.html#ShenY16,https://doi.org/10.1631/FITEE.1500227 +Guangdong Tian,Fuzzy cost-profit tradeoff model for locating a vehicle inspection station considering regional constraints.,2014,15,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc15.html#TianKC14,https://doi.org/10.1631/jzus.C1400116 +Hao-liang Li,Designing a novel consensus protocol for multiagent systems with general dynamics under directed networks.,2017,18,Frontiers of IT and EE,8,db/journals/jzusc/jzusc18.html#LiYL17,https://doi.org/10.1631/FITEE.1601422 +Juan Cao,Non-uniform B-spline curveswith multiple shape parameters.,2011,12,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc12.html#CaoW11,https://doi.org/10.1631/jzus.C1000381 +Yi-jian Liu,Modeling of hydraulic turbine systems based on a Bayesian-Gaussian neural network driven by sliding window data.,2010,11,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc11.html#LiuFZ10,https://doi.org/10.1631/jzus.C0910176 +Zheng-Wei Zhu,Shipborne radar maneuvering target tracking based on the variable structure adaptive grid interacting multiple model.,2013,14,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc14.html#Zhu13,https://doi.org/10.1631/jzus.C1200335 +Xia Zhang,Modeling and noise analysis of a fence structure micromachined capacitive accelerometer system.,2010,11,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc11.html#ZhangWZHJ10,https://doi.org/10.1631/jzus.C0910757 +Lu-jun Wang,A high performance simulation methodology for multilevel grid-connected inverters.,2012,13,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc13.html#WangYZL12,https://doi.org/10.1631/jzus.C1100315 +Guang-hua Tan,Image driven shape deformation using styles.,2010,11,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc11.html#TanCL10,https://doi.org/10.1631/jzus.C0910089 +Yi-qi Xie,A multistandard and resource-efficient Viterbi decoder for a multimode communication system.,2018,19,Frontiers of IT and EE,4,db/journals/jzusc/jzusc19.html#XieYFZG18,https://doi.org/10.1631/FITEE.1601596 +Chun-Meng Kang,A survey of photon mapping state-of-the-art research and future challenges.,2016,17,Frontiers of IT and EE,3,db/journals/jzusc/jzusc17.html#KangWXM16,https://doi.org/10.1631/FITEE.1500251 +Ling-jian Ye,New loop pairing criterion based on interaction and integrity considerations.,2010,11,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc11.html#YeS10,https://doi.org/10.1631/jzus.C0910217 +Dongli Wang,Binary tree of posterior probability support vector machines.,2011,12,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc12.html#WangZZ11,https://doi.org/10.1631/jzus.C1000022 +Ping Zhang 0003,Special issue on 5G wireless communication systems and technologies.,2017,18,Frontiers of IT and EE,6,db/journals/jzusc/jzusc18.html#Zhang17,https://doi.org/10.1631/FITEE.1720000 +Hongjiang Lei,Secrecy performance analysis of single-input multiple-output generalized-K fading channels.,2016,17,Frontiers of IT and EE,10,db/journals/jzusc/jzusc17.html#LeiAGGPQ16,https://doi.org/10.1631/FITEE.1601070 +Jun-feng Xie,Caching resource sharing in radio access networks: a game theoretic approach.,2016,17,Frontiers of IT and EE,12,db/journals/jzusc/jzusc17.html#XieXHLYL16,https://doi.org/10.1631/FITEE.1500497 +Do Yeun Kim,A fast and simple system performance emulator for enhanced solid state disks: a case study of long read operations.,2010,11,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc11.html#KimPCC10,https://doi.org/10.1631/jzus.C0910505 +Zhi-yong Yan,Improving naive Bayes classifier by dividing its decision regions.,2011,12,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc12.html#YanXP11,https://doi.org/10.1631/jzus.C1000437 +G. R. Brindha,Performance analysis of new word weighting procedures for opinion mining.,2016,17,Frontiers of IT and EE,11,db/journals/jzusc/jzusc17.html#BrindhaSS16,https://doi.org/10.1631/FITEE.1500283 +Jie Zhou,A controllable stitch layout strategy for random needle embroidery.,2014,15,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc15.html#ZhouSY14,https://doi.org/10.1631/jzus.C1400099 +Yong Wang,A two-stage heuristic method for vehicle routing problem with split deliveries and pickups.,2014,15,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc15.html#WangMLYL14,https://doi.org/10.1631/jzus.C1300177 +Jia-xin Jiang,Using information flow analysis to detect implicit information leaks for web service composition.,2018,19,Frontiers of IT and EE,4,db/journals/jzusc/jzusc19.html#JiangHMC18,https://doi.org/10.1631/FITEE.1601371 +Jun-peng Zhan,Generation maintenance scheduling based on multiple objectives and their relationship analysis.,2014,15,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc15.html#ZhanGWZF14,https://doi.org/10.1631/jzus.C1400030 +Guangxi Zhu,Joint bandwidth allocation and power control with interference constraints in multi-hop cognitive radio networks.,2010,11,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc11.html#ZhuPQLWS10,https://doi.org/10.1631/jzus.C0910070 +Feng Sheng,Mechanized semantics and refinement of UML-Statecharts.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#ShengDY17,https://doi.org/10.1631/FITEE.1601196 +Mehdi Ahmadi Jirdehi,A multi-functional dynamic state estimator for error validation: measurement and parameter errors and sudden load changes.,2016,17,Frontiers of IT and EE,11,db/journals/jzusc/jzusc17.html#JirdehiHAS16,https://doi.org/10.1631/FITEE.1500301 +Jian-zhong Chen,Numerical solutions of a multi-class traffic flow model on an inhomogeneous highway using a high-resolution relaxed scheme.,2012,13,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc13.html#ChenSH12,https://doi.org/10.1631/jzus.C10a0406 +Wen-hui Zuo,Road model prediction based unstructured road detection.,2013,14,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc14.html#ZuoY13,https://doi.org/10.1631/jzus.C1300090 +Li-Fang Feng,A construction of inter-group complementary codes with flexible ZCZ length.,2011,12,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc12.html#FengZF11,https://doi.org/10.1631/jzus.C1000360 +Da-min Zhang,Predictive current control of multi-pulse flexible-topology thyristor AC-DC converter.,2013,14,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc14.html#ZhangWLL13,https://doi.org/10.1631/jzus.C1200283 +Feng Shu 0002,Spatial channel pairing based coherent combining for relay networks.,2016,17,Frontiers of IT and EE,9,db/journals/jzusc/jzusc17.html#ShuHHLCYLW16,https://doi.org/10.1631/FITEE.1500436 +Weiming Lu,Efficient shape matching for Chinese calligraphic character retrieval.,2011,12,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc12.html#LuWWZ11,https://doi.org/10.1631/jzus.C1100005 +Zhengmin Kong,Differential multiuser detection using a novel genetic algorithm for ultra-wideband systems in lognormal fading channel.,2011,12,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc12.html#KongZZD11,https://doi.org/10.1631/jzus.C1000257 +Zhaoxia Wang,Verification of workflow nets with transition conditions.,2012,13,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc13.html#WangWZW12,https://doi.org/10.1631/jzus.C1100364 +Zheng Wang,Retransmission in the network-coding-based packet network.,2010,11,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc11.html#WangCXW10,https://doi.org/10.1631/jzus.C0910475 +Suparerk Janjarasjitt,Examination of the wavelet-based approach for measuring self-similarity of epileptic electroencephalogram data.,2014,15,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc15.html#Janjarasjitt14,https://doi.org/10.1631/jzus.C1400126 +Rong Zou,Real-time monitoring of brake shoe keys in freight cars.,2015,16,Frontiers of IT and EE,3,db/journals/jzusc/jzusc16.html#ZouXLZ15,https://doi.org/10.1631/FITEE.1400305 +Hua Zhang 0015,A new maximum-likelihood phase estimation method for X-ray pulsar signals.,2014,15,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc15.html#ZhangXSJS14,https://doi.org/10.1631/jzus.C1300347 +Peng-Fei Qian,A modified direct adaptive robust motion trajectory tracking controller of a pneumatic system.,2014,15,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc15.html#QianTML14,https://doi.org/10.1631/jzus.C1400003 +Wei Liu,A subband excitation substitute based scheme for narrowband speech watermarking.,2017,18,Frontiers of IT and EE,5,db/journals/jzusc/jzusc18.html#LiuH17,https://doi.org/10.1631/FITEE.1601503 +Ai-lian Cheng,A general communication performance evaluation model based on routing path decomposition.,2011,12,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc12.html#ChengPYH11,https://doi.org/10.1631/jzus.C1000281 +Ning Du,Anovel resource optimization scheme for multi-cellOFDMArelay network.,2016,17,Frontiers of IT and EE,8,db/journals/jzusc/jzusc17.html#DuL16,https://doi.org/10.1631/FITEE.1500294 +Jian-Ping Yu,A planar capacitive sensor for 2D long-range displacement measurement.,2013,14,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc14.html#YuWLMC13,https://doi.org/10.1631/jzus.C12MNT03 +Aqun Zhao,A new forwarding address for next generation networks.,2012,13,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc13.html#ZhaoL12,https://doi.org/10.1631/jzus.C1100096 +Zhengong Cai,Afuzzy formal concept analysis based approach for business component identification.,2011,12,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc12.html#CaiYWK11,https://doi.org/10.1631/jzus.C1000337 +Dan Li,Optimal signal design strategy with improper Gaussian signaling in the Z-interference channel.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#LiWG17,https://doi.org/10.1631/FITEE.1700030 +Shafqat Ullah Khan,Detecting faulty sensors in an array using symmetrical structure and cultural algorithm hybridized with differential evolution.,2017,18,Frontiers of IT and EE,2,db/journals/jzusc/jzusc18.html#KhanQZK17,https://doi.org/10.1631/FITEE.1500315 +Hao Shao,Transfer active learning by querying committee.,2014,15,Journal of Zhejiang University - Science C,2,db/journals/jzusc/jzusc15.html#ShaoTX14,https://doi.org/10.1631/jzus.C1300167 +Yong Ding,Image quality assessment method based on nonlinear feature extraction in kernel space.,2016,17,Frontiers of IT and EE,10,db/journals/jzusc/jzusc17.html#DingLZH16,https://doi.org/10.1631/FITEE.1500439 +Yun Pan,Discrete-time charge analysis for a digital RF charge sampling mixer.,2010,11,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc11.html#PanGYY10,https://doi.org/10.1631/jzus.C0910390 +Yi Shen,Multi-taskmulti-labelmultiple instance learning.,2010,11,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc11.html#ShenF10,https://doi.org/10.1631/jzus.C1001005 +Jia-Lun Tsai,A novel multisignature scheme for a special verifier group against clerk and rogue-key attacks.,2010,11,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc11.html#TsaiWT10,https://doi.org/10.1631/jzus.C0910457 +Peng Chen,Extremal optimization for optimizing kernel function and its parameters in support vector regression.,2011,12,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc12.html#ChenL11,https://doi.org/10.1631/jzus.C1000110 +Lei Yan,New separation algorithm for touching grain kernels based on contour segments and ellipse fitting.,2011,12,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc12.html#YanPLL11,https://doi.org/10.1631/jzus.C0910797 +Liwei Huang,Enhancing recommender systems by incorporating social information.,2013,14,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc14.html#HuangCLL13,https://doi.org/10.1631/jzus.CIIP1303 +Jiao-na Wan,Reduced precision solution criteria for nonlinear model predictive control with the feasibility-perturbed sequential quadratic programming algorithm.,2011,12,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc12.html#WanSWFWQ11,https://doi.org/10.1631/jzus.C10a0512 +Jorge A. Ruiz-Vanoye,Application of formal languages in polynomial transformations of instances between NP-complete problems.,2013,14,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc14.html#Ruiz-VanoyeORDHSSR13,https://doi.org/10.1631/jzus.C1200349 +Xu-dong Jiang,Image anti-aliasing techniques for Internet visual media processing: a review.,2014,15,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc15.html#JiangSLLM14,https://doi.org/10.1631/jzus.C1400100 +Qi-Huai Chen,Optimization design of an interior permanent-magnet synchronous machine for a hybrid hydraulic excavator.,2015,16,Frontiers of IT and EE,11,db/journals/jzusc/jzusc16.html#ChenWW15,https://doi.org/10.1631/FITEE.1500056 +Wei Feng,Cross-layer resource allocation in wireless multi-hop networks with outdated channel state information.,2014,15,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc15.html#FengFDH14,https://doi.org/10.1631/jzus.C1300315 +Rui Yin,Centralized and distributed resource allocation in OFDM based multi-relay system.,2010,11,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc11.html#YinZYZZ10,https://doi.org/10.1631/jzus.C0910405 +Xiao-yan Huang,A fault tolerant single sided matrix converter for flight control actuation systems.,2012,13,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc13.html#HuangJZLFGG12,https://doi.org/10.1631/jzus.C1200164 +Junsheng Lv,Wide-range tracking technique for process-variation-robust clock and data recovery applications.,2017,18,Frontiers of IT and EE,5,db/journals/jzusc/jzusc18.html#LvLZZSZ17,https://doi.org/10.1631/FITEE.1500410 +Divya Pandove,An intuitive general rank-based correlation coefficient.,2018,19,Frontiers of IT and EE,6,db/journals/jzusc/jzusc19.html#PandoveGR18,https://doi.org/10.1631/FITEE.1601549 +Xin Hao,Automatic mass segmentation on mammograms combining random walks and active contour.,2012,13,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc13.html#HaoSX12,https://doi.org/10.1631/jzus.C1200052 +Yu-hang Xia,Carbon emission impact on the operation of virtual power plant with combined heat and power system.,2016,17,Frontiers of IT and EE,5,db/journals/jzusc/jzusc17.html#XiaLHZ16,https://doi.org/10.1631/FITEE.1500467 +Fang Li,Laplacian sparse dictionary learning for image classification based on sparse representation.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#LiSZ17,https://doi.org/10.1631/FITEE.1600039 +Huiyong Hu,Hierarchical control for parallel bidirectional power converters of a grid-connected DC microgrid.,2017,18,Frontiers of IT and EE,12,db/journals/jzusc/jzusc18.html#HuPXWWY17,https://doi.org/10.1631/FITEE.1601497 +Qiao-Song Chen,Contrast evaluation methods for natural color images in display systems: within- and cross-content evaluations.,2011,12,Journal of Zhejiang University - Science C,11,db/journals/jzusc/jzusc12.html#ChenK11,https://doi.org/10.1631/jzus.C1100004 +Eun-Jung Yoon,Thermal energy harvesting circuit with maximum power point tracking control for self-powered sensor node applications.,2018,19,Frontiers of IT and EE,2,db/journals/jzusc/jzusc19.html#YoonPY18,https://doi.org/10.1631/FITEE.1601181 +Tahir Nadeem Malik,An improved chaotic hybrid differential evolution for the short-term hydrothermal scheduling problem considering practical constraints.,2015,16,Frontiers of IT and EE,5,db/journals/jzusc/jzusc16.html#MalikZH15,https://doi.org/10.1631/FITEE.1400189 +Fanglin Gu,Standard-independent I/Q imbalance estimation and compensation scheme inOFDM.,2018,19,Frontiers of IT and EE,3,db/journals/jzusc/jzusc19.html#GuWW18,https://doi.org/10.1631/FITEE.1700003 +Yang Ren,Erratum to: Optimization of the resonant frequency servo loop technique in the resonator micro optic gyro.,2012,13,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc13.html#RenJCM12,https://doi.org/10.1631/jzus.C10e0441 +Yan-hu Chen,Development of a direct current power system for a multi-node cabled ocean observatory system.,2012,13,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc13.html#ChenYLJC12,https://doi.org/10.1631/jzus.C1100381 +Chao Fang 0004,A general method of designing phase-shifting algorithms for grating lateral shearing interferometry.,2018,19,Frontiers of IT and EE,6,db/journals/jzusc/jzusc19.html#FangXQ18,https://doi.org/10.1631/FITEE.1601692 +Taocheng Hu,Max-margin based Bayesian classifier.,2016,17,Frontiers of IT and EE,10,db/journals/jzusc/jzusc17.html#HuY16,https://doi.org/10.1631/FITEE.1601078 +Yujing Wu,Efficient controller area network data compression for automobile applications.,2015,16,Frontiers of IT and EE,1,db/journals/jzusc/jzusc16.html#WuC15,https://doi.org/10.1631/FITEE.1400136 +Jian Ding,Virtual network embedding based on real-time topological attributes.,2015,16,Frontiers of IT and EE,2,db/journals/jzusc/jzusc16.html#DingHLL15,https://doi.org/10.1631/FITEE.1400147 +Yu-tang Zhu,Low complexity robust adaptive beamforming for general-rank signal model with positive semidefinite constraint.,2016,17,Frontiers of IT and EE,11,db/journals/jzusc/jzusc17.html#ZhuZLS16,https://doi.org/10.1631/FITEE.1601112 +Wajdi S. Aboud,Advances in the control of mechatronic suspension systems.,2014,15,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc15.html#AboudHY14,https://doi.org/10.1631/jzus.C14a0027 +Yue-Ting Zhuang,Data-driven digital entertainment: a computational perspective.,2013,14,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc14.html#Zhuang13,https://doi.org/10.1631/jzus.CIDE1300 +Yanzhe Che,EDA: an enhanced dual-active algorithm for location privacy preservation inmobile P2P networks.,2013,14,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc14.html#CheCHYH13,https://doi.org/10.1631/jzus.C1200267 +Zhi-xun Su,Curvature-aware simplification for point-sampled geometry.,2011,12,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc12.html#SuLZC11,https://doi.org/10.1631/jzus.C1000068 +Jianzong Wang,Optimizing storage performance in public cloud platforms.,2011,12,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc12.html#WangVX11,https://doi.org/10.1631/jzus.C1100097 +Jiguang Wan,A reliable and energy-efficient storage system with erasure coding cache.,2017,18,Frontiers of IT and EE,9,db/journals/jzusc/jzusc18.html#WanLQYWX17,https://doi.org/10.1631/FITEE.1600972 +Tao Zhang,Current trends in the development of intelligent unmanned autonomous systems.,2017,18,Frontiers of IT and EE,1,db/journals/jzusc/jzusc18.html#ZhangLZLLWLZW17,https://doi.org/10.1631/FITEE.1601650 +Zhenhua Li,A gain-flatness optimization solution for feedback technology of wideband low noise amplifiers.,2011,12,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc12.html#LiGWLCWGY11,https://doi.org/10.1631/jzus.C1010300 +Tao Li 0007,Efficient mesh denoising via robust normal filtering and alternate vertex updating.,2017,18,Frontiers of IT and EE,11,db/journals/jzusc/jzusc18.html#LiWLL17,https://doi.org/10.1631/FITEE.1601229 +Tianran Hu,Home location inference from sparse and noisy data: models and applications.,2016,17,Frontiers of IT and EE,5,db/journals/jzusc/jzusc17.html#HuLKS16,https://doi.org/10.1631/FITEE.1500385 +Yin Tian,A vehicle re-identification algorithm based on multi-sensor correlation.,2014,15,Journal of Zhejiang University - Science C,5,db/journals/jzusc/jzusc15.html#TianDJL14,https://doi.org/10.1631/jzus.C1300291 +Yu Zhou,Non-interactive automatic video segmentation of moving targets.,2012,13,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc13.html#ZhouSX12,https://doi.org/10.1631/jzus.C1200071 +Zamshed I. Chowdhury,Electrical analysis of single-walled carbon nanotube as gigahertz on-chip interconnects.,2017,18,Frontiers of IT and EE,2,db/journals/jzusc/jzusc18.html#ChowdhuryRK17,https://doi.org/10.1631/FITEE.1500349 +Hong-yuan Chen,A robust watermarking algorithm based on QR factorization and DCT using quantization index modulation technique.,2012,13,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc13.html#ChenZ12,https://doi.org/10.1631/jzus.C1100338 +Wei Hu,Storage wall for exascale supercomputing.,2016,17,Frontiers of IT and EE,11,db/journals/jzusc/jzusc17.html#HuLLJC16,https://doi.org/10.1631/FITEE.1601336 +Jie Ren,Array based HV/VH tree: an effective data structure for layout representation.,2012,13,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc13.html#RenPZSY12,https://doi.org/10.1631/jzus.C1100193 +Xiao-Ling Li,Topology awareness algorithm for virtual network mapping.,2012,13,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc13.html#LiWGDLBT12,https://doi.org/10.1631/jzus.C1100282 +Yue-peng Zou,Supervised topic models with weighted words: multi-label document classification.,2018,19,Frontiers of IT and EE,4,db/journals/jzusc/jzusc19.html#ZouOL18,https://doi.org/10.1631/FITEE.1601668 +Pritesh Shah,Design of a fractional PIλ*Dλ6* controller using the cohort intelligence method.,2018,19,Frontiers of IT and EE,3,db/journals/jzusc/jzusc19.html#ShahAK18,https://doi.org/10.1631/FITEE.1601495 +Zhi Yu,Finding map regions with high density of query keywords.,2017,18,Frontiers of IT and EE,10,db/journals/jzusc/jzusc18.html#YuWBHWJ17,https://doi.org/10.1631/FITEE.1600043 +Ke-shi Ge,Efficient parallel implementation of a density peaks clustering algorithm on graphics processing unit.,2017,18,Frontiers of IT and EE,7,db/journals/jzusc/jzusc18.html#GeSLL17,https://doi.org/10.1631/FITEE.1601786 +Tian-hao Xia,Quasi-distributed sensing network based on coherence multiplexing and spatial division multiplexing for coal mine security monitoring.,2010,11,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc11.html#XiaLZGY10,https://doi.org/10.1631/jzus.C0910716 +Zhaoyang Zhang 0001,Interference coordination in full-duplex HetNet with large-scale antenna arrays.,2017,18,Frontiers of IT and EE,6,db/journals/jzusc/jzusc18.html#ZhangL17a,https://doi.org/10.1631/FITEE.1700047 +Hossein Ghaffarian,Planning VANET infrastructures to improve safety awareness in curved roads.,2012,13,Journal of Zhejiang University - Science C,12,db/journals/jzusc/jzusc13.html#GhaffarianSF12,https://doi.org/10.1631/jzus.C1200082 +Hao Xie,Image meshing via hierarchical optimization.,2016,17,Frontiers of IT and EE,1,db/journals/jzusc/jzusc17.html#XieT16,https://doi.org/10.1631/FITEE.1500171 +Jijun Xiong,Measurement of wireless pressure sensors fabricated in high temperature co-fired ceramic MEMS technology.,2013,14,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc14.html#XiongZHLWWT13,https://doi.org/10.1631/jzus.C12MNT04 +Rui-xing Zeng,Design and analysis of a mode-hop-free tunable laser based on etched diffraction grating.,2010,11,Journal of Zhejiang University - Science C,10,db/journals/jzusc/jzusc11.html#ZengWH10,https://doi.org/10.1631/jzus.C0910622 +Jingli Gao,Detecting slowly moving infrared targets using temporal filtering and association strategy.,2016,17,Frontiers of IT and EE,11,db/journals/jzusc/jzusc17.html#GaoWBL16,https://doi.org/10.1631/FITEE.1601203 +Yun-hua Qu,Using an integrated feature set to generalize and justify the Chinese-to-English transferring rule of the 'ZHE' aspect.,2010,11,Journal of Zhejiang University - Science C,9,db/journals/jzusc/jzusc11.html#QuTSJGZYX10,https://doi.org/10.1631/jzus.C1000104 +Libo Zhao,A trapezoidal cantilever density sensor based on MEMS technology.,2013,14,Journal of Zhejiang University - Science C,4,db/journals/jzusc/jzusc14.html#ZhaoXZZWLJ13,https://doi.org/10.1631/jzus.C12MNT06 +Wen-fei Wang,Mapbuilding for dynamic environments using grid vectors.,2011,12,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc12.html#WangXC11,https://doi.org/10.1631/jzus.C1000255 +Omid Bushehrian,Automatic actor-based program partitioning.,2010,11,Journal of Zhejiang University - Science C,1,db/journals/jzusc/jzusc11.html#Bushehrian10,https://doi.org/10.1631/jzus.C0910096 +Zi-Wu Ren,A hybrid biogeography-based optimization method for the inverse kinematics problem of an 8-DOF redundant humanoid manipulator.,2015,16,Frontiers of IT and EE,7,db/journals/jzusc/jzusc16.html#RenWS15,https://doi.org/10.1631/FITEE.14a0335 +Gui-Lin Cai,Moving target defense: state of the art and characteristics.,2016,17,Frontiers of IT and EE,11,db/journals/jzusc/jzusc17.html#CaiWHW16,https://doi.org/10.1631/FITEE.1601321 +Kuo-Hui Yeh,A lightweight authentication scheme with user untraceability.,2015,16,Frontiers of IT and EE,4,db/journals/jzusc/jzusc16.html#Yeh15,https://doi.org/10.1631/FITEE.1400232 +Yun Niu,A 10 Gbps in-line network security processor based on configurable hetero-multi-cores.,2013,14,Journal of Zhejiang University - Science C,8,db/journals/jzusc/jzusc14.html#NiuWLZC13,https://doi.org/10.1631/jzus.C1200370 +Yu-Lei Geng,Sketch based garment modeling on an arbitrary view of a 3D virtual human model.,2011,12,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc12.html#GengWLLC11,https://doi.org/10.1631/jzus.C1000049 +Meijuan Jia,DGTM: a dynamic grouping based trust model for mobile peer-to-peer networks.,2017,18,Frontiers of IT and EE,4,db/journals/jzusc/jzusc18.html#JiaWLFY17,https://doi.org/10.1631/FITEE.1601535 +Ji-Hoon Park,Reliable beacon transmission based MAC protocol for LR-WPANs over WLAN interferences.,2014,15,Journal of Zhejiang University - Science C,6,db/journals/jzusc/jzusc15.html#ParkK14,https://doi.org/10.1631/jzus.C1300269 +Jian-yu Bao,Generalized multilevel current source inverter topology with self-balancing current.,2010,11,Journal of Zhejiang University - Science C,7,db/journals/jzusc/jzusc11.html#BaoBZ10,https://doi.org/10.1631/jzus.C0910605 +Li-heng Lou,An efficient PSP-based model for optimized cross-coupled MOSFETs in voltage controlled oscillator.,2013,14,Journal of Zhejiang University - Science C,3,db/journals/jzusc/jzusc14.html#LouSLG13,https://doi.org/10.1631/jzus.C1200268 +Luciano da Fontoura Costa,Effective Detection of Digital Bar Segments with Hough Transform.,1993,55,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip55.html#CostaS93,https://doi.org/10.1006/cgip.1993.1013 +James H. McClellan,A modified alpha-root technique for image processing.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#McClellan82,https://doi.org/10.1016/0146-664X(82)90112-5 +Lionel Untereiner,n-Dimensional multiresolution representation of subdivision meshes with arbitrary topology.,2013,75,Graphical Models,5,db/journals/cvgip/cvgip75.html#UntereinerCB13,https://doi.org/10.1016/j.gmod.2013.03.003 +Wei Yu 0012,Fragmented skull modeling using heat kernels.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#YuLL12,https://doi.org/10.1016/j.gmod.2012.03.011 +Søren I. Olsen,Estimation of Noise in Images: An Evaluation.,1993,55,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip55.html#Olsen93,https://doi.org/10.1006/cgip.1993.1022 +Andre Schmeißer,Smooth convolution-based distance functions.,2015,82,Graphical Models,,db/journals/cvgip/cvgip82.html#SchmeisserWHH15,https://doi.org/10.1016/j.gmod.2015.06.004 +Charles Kervrann,A Hierarchical Markov Modeling Approach for the Segmentation and Tracking of Deformable Shapes.,1998,60,Graphical Models and Image Processing,3,db/journals/cvgip/cvgip60.html#KervrannH98,https://doi.org/10.1006/gmip.1998.0469 +Alan P. Schaum,Theory and Design of Local Interpolators.,1993,55,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip55.html#Schaum93,https://doi.org/10.1006/cgip.1993.1035 +I. K. Sethi,Edge detection using charge analogy.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Sethi82a,https://doi.org/10.1016/0146-664X(82)90165-4 +Chee Sun Won,Unsupervised segmentation of noisy and textured images using Markov random fields.,1992,54,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip54.html#WonD92,https://doi.org/10.1016/1049-9652(92)90078-C +Helmut Pottmann,Rational Ruled Surfaces and Their Offsets.,1996,58,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip58.html#PottmannLR96,https://doi.org/10.1006/gmip.1996.0045 +Yi-Jun Yang,Equiareal parameterizations of NURBS surfaces.,2014,76,Graphical Models,1,db/journals/cvgip/cvgip76.html#YangZC14,https://doi.org/10.1016/j.gmod.2013.10.007 +Kestutis Karciauskas,Rational G2 splines.,2011,73,Graphical Models,5,db/journals/cvgip/cvgip73.html#KarciauskasP11,https://doi.org/10.1016/j.gmod.2011.05.004 +A. Ravishankar Rao,Computing oriented texture fields.,1991,53,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip53.html#RaoS91,https://doi.org/10.1016/1049-9652(91)90059-S +K. Prazdny,Waveform segmentation and description using edge preserving smoothing.,1982,20,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip20.html#Prazdny82,https://doi.org/10.1016/0146-664X(82)90066-1 +Louis R. Chow,A New Dynamic Approach for Finding the Contour of Bi-level Images.,1994,56,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip56.html#ChowLHW94,https://doi.org/10.1006/cgip.1994.1045 +Michael H. F. Wilkinson,Optimizing Edge Detectors for Robust Automatic Threshold Selection: Coping with Edge Curvature and Noise.,1998,60,Graphical Models and Image Processing,5,db/journals/cvgip/cvgip60.html#Wilkinson98,https://doi.org/10.1006/gmip.1998.0478 +Ron Aharoni,Jordan Graphs.,1996,58,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip58.html#AharoniHL96,https://doi.org/10.1006/gmip.1996.0028 +Minying Zhang,Perception-based model simplification for motion blur rendering.,2014,76,Graphical Models,3,db/journals/cvgip/cvgip76.html#ZhangWSH14,https://doi.org/10.1016/j.gmod.2013.10.003 +Ming Ma,Robust surface registration using optimal mass transport and Teichmüller mapping.,2017,90,Graphical Models,,db/journals/cvgip/cvgip90.html#MaLCSG17,https://doi.org/10.1016/j.gmod.2017.01.002 +Yang Zhang,de Boor-suitable (DS) T-splines.,2018,97,Graphical Models,,db/journals/cvgip/cvgip97.html#ZhangPG18,https://doi.org/10.1016/j.gmod.2018.03.003 +Maurence M. Anguh,A Truncation Method for Computing Walsh Transforms with Applications to Image Processing.,1993,55,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip55.html#AnguhM93,https://doi.org/10.1006/cgip.1993.1036 +Sriram Dayanand,A Particle System Model for Combining Edge Information from Multiple Segmentation Modules.,1994,56,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip56.html#DayanandUSL94,https://doi.org/10.1006/cgip.1994.1020 +Jared Go,Autonomous behaviors for interactive vehicle animations.,2006,68,Graphical Models,2,db/journals/cvgip/cvgip68.html#GoVK06,https://doi.org/10.1016/j.gmod.2005.04.003 +Jinesh Machchhar,9*-Guarantee of a covering of 2D domains using random-looking curves.,2017,89,Graphical Models,,db/journals/cvgip/cvgip89.html#MachchharE17,https://doi.org/10.1016/j.gmod.2016.12.001 +Debargha Mukherjee,Adaptive Neighborhood Extended Contrast Enhancement and Its Modifications.,1995,57,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip57.html#MukherjeeC95,https://doi.org/10.1006/gmip.1995.1024 +Azriel Rosenfeld,Topology-Preserving Deformations of Two-Valued Digital Pictures.,1998,60,Graphical Models and Image Processing,1,db/journals/cvgip/cvgip60.html#RosenfeldKN98,https://doi.org/10.1006/gmip.1997.0459 +Ramon F. Sarraga,Algebraic methods for intersections of quadric surface om gmsolid.,1982,19,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip19.html#Sarraga82,https://doi.org/10.1016/0146-664X(82)90027-2 +Friedrich M. Wahl,A new distance mapping and its use for shape measurement on binary patterns.,1982,20,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip20.html#Wahl82,https://doi.org/10.1016/0146-664X(82)90067-3 +Hock Lim,Edge errors in inverse and Wiener filter restorations of motion-blurred images and their windowing treatment.,1991,53,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip53.html#LimTT91,https://doi.org/10.1016/1049-9652(91)90060-W +Jovisa D. Zunic,A General Coding Scheme for Families of Digital Curve Segments.,1998,60,Graphical Models and Image Processing,6,db/journals/cvgip/cvgip60.html#ZunicA98,https://doi.org/10.1006/gmip.1998.0482 +Gilles Bertrand 0001,Isthmus based parallel and symmetric 3D thinning algorithms.,2015,80,Graphical Models,,db/journals/cvgip/cvgip80.html#BertrandC15,https://doi.org/10.1016/j.gmod.2015.05.001 +P. Lobaz,Hierarchical Laplacian-based compression of triangle meshes.,2014,76,Graphical Models,6,db/journals/cvgip/cvgip76.html#LobazV14,https://doi.org/10.1016/j.gmod.2014.09.003 +Hong Yan,Skew Correction of Document Images Using Interline Cross-Correlation.,1993,55,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip55.html#Yan93,https://doi.org/10.1006/cgip.1993.1041 +Didier Lattard,A VLSI implementation of parallel image reconstruction.,1991,53,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip53.html#LattardM91,https://doi.org/10.1016/1049-9652(91)90008-8 +F. Kammoun,Optimum Edge Detection for Object-Background Picture.,1994,56,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip56.html#KammounA94,https://doi.org/10.1006/cgip.1994.1004 +Marco Fratarcangeli,Facial motion cloning with radial basis functions in MPEG-4 FBA.,2007,69,Graphical Models,2,db/journals/cvgip/cvgip69.html#FratarcangeliSF07,https://doi.org/10.1016/j.gmod.2006.09.006 +Raman B. Paranjape,Adaptive-neighborhood histogram equalization for image enhancement.,1992,54,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip54.html#ParanjapeMR92,https://doi.org/10.1016/1049-9652(92)90056-4 +Ran Luo,Interactive design and simulation of tubular supporting structure.,2015,80,Graphical Models,,db/journals/cvgip/cvgip80.html#LuoZXKSY15,https://doi.org/10.1016/j.gmod.2015.05.002 +Chung-Nim Lee,Winding and Euler numbers for 2D and 3D digital images.,1991,53,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip53.html#LeePR91a,https://doi.org/10.1016/1049-9652(91)90003-3 +Guillaume Dewaele,Interactive global and local deformations for virtual clay.,2004,66,Graphical Models,6,db/journals/cvgip/cvgip66.html#DewaeleC04,https://doi.org/10.1016/j.gmod.2004.06.008 +Lee R. Nackman,Curvature relations in three-dimensional symmetric axes.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Nackman82a,https://doi.org/10.1016/0146-664X(82)90122-8 +Kang Zhang,A graph-based optimization algorithm for fragmented image reassembly.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#ZhangL14,https://doi.org/10.1016/j.gmod.2014.03.001 +Yutaka Ohtake,3D scattered data interpolation and approximation with multilevel compactly supported RBFs.,2005,67,Graphical Models,3,db/journals/cvgip/cvgip67.html#OhtakeBS05,https://doi.org/10.1016/j.gmod.2004.06.003 +Hiromasa Suzuki,Special Issue on the Ninth Pacific Graphics Conference (PG 2001).,2002,64,Graphical Models,2,db/journals/cvgip/cvgip64.html#SuzukiRK02,https://doi.org/10.1006/gmod.2002.0579 +Hari B. Bidasaria,A method for ray tracing a wide class of generalized cylinders with straight line trajectories.,1991,53,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip53.html#Bidasaria91,https://doi.org/10.1016/1049-9652(91)90053-M +Athanassios Ikonomopoulos,An approach to local-edge detection based on the direction of edge elements.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Ikonomopoulos82,https://doi.org/10.1016/0146-664X(82)90152-6 +Punam K. Saha,The Digital Topology of Sets of Convex Voxels.,2000,62,Graphical Models,5,db/journals/cvgip/cvgip62.html#SahaR00,https://doi.org/10.1006/gmod.2000.0527 +J. J. Hwang,Matching of featured objects using relational tables from stereo images.,1982,20,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip20.html#HwangH82,https://doi.org/10.1016/0146-664X(82)90071-5 +Lejun Shao,Curve Fitting with Bézier Cubics.,1996,58,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip58.html#ShaoZ96,https://doi.org/10.1006/gmip.1996.0019 +Christopher Weber,Sharp feature preserving MLS surface reconstruction based on local feature line approximations.,2012,74,Graphical Models,6,db/journals/cvgip/cvgip74.html#WeberHHB12,https://doi.org/10.1016/j.gmod.2012.04.012 +Frédéric Chazal,"The ""lambda-medial axis"".",2005,67,Graphical Models,4,db/journals/cvgip/cvgip67.html#ChazalL05,https://doi.org/10.1016/j.gmod.2005.01.002 +Felix G. Hamza-Lup,Web3D graphics enabled through sensor networks for cost-effective assessment and management of energy efficiency in buildings.,2016,88,Graphical Models,,db/journals/cvgip/cvgip88.html#Hamza-LupM16,https://doi.org/10.1016/j.gmod.2016.03.005 +Thomas W. Sederberg,Pyramids That Bound Surface Patches.,1996,58,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip58.html#SederbergZ96,https://doi.org/10.1006/gmip.1996.0005 +Wolfgang Boehm,On cubics: A survey.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Boehm82,https://doi.org/10.1016/0146-664X(82)90125-3 +Shi-Kuo Chang,Picture information measures for similarity retrieval.,1982,20,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip20.html#ChangY82,https://doi.org/10.1016/0146-664X(82)90068-5 +S. Chattopadhyay,Parameter estimation and reconstruction of digital conics in normal positions.,1992,54,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip54.html#ChattopadhyayD92,https://doi.org/10.1016/1049-9652(92)90023-Q +Wenhua Wan,Segmentation of Planar Curves into Straight-Line Segments and Elliptical Arcs.,1997,59,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip59.html#WanV97,https://doi.org/10.1006/gmip.1997.0450 +Dong Xu,Poisson shape interpolation.,2006,68,Graphical Models,3,db/journals/cvgip/cvgip68.html#XuZWB06,https://doi.org/10.1016/j.gmod.2006.03.001 +Jinliang Wu,Mesh saliency with global rarity.,2013,75,Graphical Models,5,db/journals/cvgip/cvgip75.html#WuSZL13,https://doi.org/10.1016/j.gmod.2013.05.002 +S. Arnemann,Generating halftone pictures on graphic computer terminals using run length coding.,1973,2,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip2.html#ArnemannT73,https://doi.org/10.1016/0146-664X(73)90028-2 +Frank P. Kuhl,Elliptic Fourier features of a closed contour.,1982,18,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip18.html#KuhlG82,https://doi.org/10.1016/0146-664X(82)90034-X +Jean-Daniel Boissonnat,Provably good sampling and meshing of surfaces.,2005,67,Graphical Models,5,db/journals/cvgip/cvgip67.html#BoissonnatO05,https://doi.org/10.1016/j.gmod.2005.01.004 +Jun-ichiro Toriwaki,A generalized distance transformation of a line pattern with gray values and its applications.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Toriwaki82,https://doi.org/10.1016/0146-664X(82)90129-0 +Jiwen Zhang,Extending cubic uniform B-splines by unified trigonometric and hyperbolic basis.,2005,67,Graphical Models,2,db/journals/cvgip/cvgip67.html#ZhangK05,https://doi.org/10.1016/j.gmod.2004.06.001 +Robert L. Stafford,A model building approach to property measurement in black and white pictures.,1973,2,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip2.html#Stafford73,https://doi.org/10.1016/0146-664X(73)90031-2 +André Maximo,A robust and rotationally invariant local surface descriptor with applications to non-local mesh processing.,2011,73,Graphical Models,5,db/journals/cvgip/cvgip73.html#MaximoPVF11,https://doi.org/10.1016/j.gmod.2011.05.002 +In-Kwon Lee,Polynomial/Rational Approximation of Minkowski Sum Boundary Curves.,1998,60,Graphical Models and Image Processing,2,db/journals/cvgip/cvgip60.html#LeeKE98,https://doi.org/10.1006/gmip.1998.0464 +Sei-Wang Chen,Two-Stage Dynamic Deformation for Construction of 3D Models.,1996,58,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip58.html#ChenSDC96,https://doi.org/10.1006/gmip.1996.0040 +Yanshu Zhu,Computing a compact spline representation of the medial axis transform of a 2D shape.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#ZhuSCJW14,https://doi.org/10.1016/j.gmod.2014.03.007 +Ergun Akleman,A minimal and complete set of operators for the development of robust manifold mesh modelers.,2003,65,Graphical Models,5,db/journals/cvgip/cvgip65.html#AklemanCS03,https://doi.org/10.1016/S1524-0703(03)00047-X +Kento Miyaoku,Approximating Polygonal Curves in Two and Three Dimensions.,1998,60,Graphical Models and Image Processing,3,db/journals/cvgip/cvgip60.html#MiyaokuH98,https://doi.org/10.1006/gmip.1997.0468 +Greg Reese,Image enhancement by intensity-dependent spread functions.,1992,54,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip54.html#Reese92,https://doi.org/10.1016/1049-9652(92)90033-T +B. Rosenberg,The analysis of convex blobs.,1972,1,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip1.html#Rosenberg72,https://doi.org/10.1016/S0146-664X(72)80014-5 +Mohamed Chaouch,Alignment of 3D models.,2009,71,Graphical Models,2,db/journals/cvgip/cvgip71.html#ChaouchV09,https://doi.org/10.1016/j.gmod.2008.12.006 +Ravi Malladi,Image Processing: Flows under Min/Max Curvature and Mean Curvature.,1996,58,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip58.html#MalladiS96,https://doi.org/10.1006/gmip.1996.0011 +Xavier Rolland-Nevière,Robust diameter-based thickness estimation of 3D objects.,2013,75,Graphical Models,6,db/journals/cvgip/cvgip75.html#Rolland-NeviereDA13,https://doi.org/10.1016/j.gmod.2013.06.001 +Kwang Hee Ko,Algorithms for optimal partial matching of free-form objects with scaling effects.,2005,67,Graphical Models,2,db/journals/cvgip/cvgip67.html#KoMP05,https://doi.org/10.1016/j.gmod.2004.05.005 +Yoshisuke Kurozumi,Polygonal approximation by the minimax method.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Kurozumi82,https://doi.org/10.1016/0146-664X(82)90132-0 +Ye Duan,Geometrically exact physics-based modeling and computer animation of highly flexible 1D mechanical systems.,2013,75,Graphical Models,2,db/journals/cvgip/cvgip75.html#DuanLP13,https://doi.org/10.1016/j.gmod.2013.01.001 +Qiong Zeng,Region-based bas-relief generation from a single image.,2014,76,Graphical Models,3,db/journals/cvgip/cvgip76.html#ZengMWQST14,https://doi.org/10.1016/j.gmod.2013.10.001 +Mark de Berg,On Levels of Detail in Terrains.,1998,60,Graphical Models and Image Processing,1,db/journals/cvgip/cvgip60.html#BergD98,https://doi.org/10.1006/gmip.1997.0460 +Jiwen Zhang,C-Bézier Curves and Surfaces.,1999,61,Graphical Models and Image Processing,1,db/journals/cvgip/cvgip61.html#Zhang99,https://doi.org/10.1006/gmip.1999.0490 +Gilles Burel,Determination of the Orientation of 3D Objects Using Spherical Harmonics.,1995,57,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip57.html#BurelH95,https://doi.org/10.1006/gmip.1995.1034 +Satoru Kawai,On the topology preservation property of local parallel operations.,1982,19,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip19.html#Kawai82b,https://doi.org/10.1016/0146-664X(82)90012-0 +Azriel Rosenfeld,Picture Processing: 1981.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Rosenfeld82,https://doi.org/10.1016/0146-664X(82)90113-7 +Takashi Michikawa,Sparse grid distance transforms.,2010,72,Graphical Models,4,db/journals/cvgip/cvgip72.html#MichikawaS10,https://doi.org/10.1016/j.gmod.2010.05.001 +Chin-Hung Teng,Constructing a 3D trunk model from two images.,2007,69,Graphical Models,1,db/journals/cvgip/cvgip69.html#TengCH07,https://doi.org/10.1016/j.gmod.2006.06.001 +Chung-Ming Wu,Statistical feature matrix for texture analysis.,1992,54,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip54.html#WuC92,https://doi.org/10.1016/1049-9652(92)90025-S +Paul L. Rosin,Ellipse Fitting Using Orthogonal Hyperbolae and Stirling's Oval.,1998,60,Graphical Models and Image Processing,3,db/journals/cvgip/cvgip60.html#Rosin98,https://doi.org/10.1006/gmip.1998.0471 +Rachel Alter-Gartenberg,Compact Image Representation by Edge Primitives.,1994,56,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip56.html#Alter-GartenbergHN94,https://doi.org/10.1006/cgip.1994.1001 +Georg Heygster,Rank filters in digital image processing.,1982,19,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip19.html#Heygster82a,https://doi.org/10.1016/0146-664X(82)90105-8 +R. Brons,Linguistic Methods for the Description of a Straight Line on a Grid.,1974,3,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip3.html#Brons74,https://doi.org/10.1016/0146-664X(74)90010-0 +Esdras Medeiros,Fast adaptive blue noise on polygonal surfaces.,2014,76,Graphical Models,1,db/journals/cvgip/cvgip76.html#MedeirosIPS14,https://doi.org/10.1016/j.gmod.2013.10.004 +Antonio Robles-Kelly,Estimating the surface radiance function from single images.,2005,67,Graphical Models,6,db/journals/cvgip/cvgip67.html#Robles-KellyH05,https://doi.org/10.1016/j.gmod.2004.12.003 +Jean-Philippe Thirion,Realistic 3D simulation of shapes and shadows for image processing.,1992,54,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip54.html#Thirion92,https://doi.org/10.1016/1049-9652(92)90036-W +Friedrich O. Huck,Image gathering and digital restoration for fidelity and visual quality.,1991,53,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip53.html#HuckAR91,https://doi.org/10.1016/1049-9652(91)90021-B +Jiansong Deng,Preface.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#DengHK12,https://doi.org/10.1016/j.gmod.2012.05.003 +Thomas Takacs,H2 regularity properties of singular parameterizations in isogeometric analysis.,2012,74,Graphical Models,6,db/journals/cvgip/cvgip74.html#TakacsJ12,https://doi.org/10.1016/j.gmod.2012.05.006 +Jean-Philippe Thirion,The 3D Marching Lines Algorithm.,1996,58,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip58.html#ThirionG96,https://doi.org/10.1006/gmip.1996.0042 +Chia-Wei Liao,Surface Approximation of a Cloud of 3D Points.,1995,57,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip57.html#LiaoM95,https://doi.org/10.1006/gmip.1995.1007 +Xiangrong Wang,Swendsen-Wang Cuts sampling for spatially constrained Dirichlet process mixture models.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#WangZ14,https://doi.org/10.1016/j.gmod.2014.03.008 +Gabriel Taubin,Dual Mesh Resampling.,2002,64,Graphical Models,2,db/journals/cvgip/cvgip64.html#Taubin02,https://doi.org/10.1006/gmod.2002.0571 +Ge Cong,An Algebraic Solution to Surface Recovery from Cross-Sectional Contours.,1999,61,Graphical Models and Image Processing,4,db/journals/cvgip/cvgip61.html#CongP99,https://doi.org/10.1006/gmip.1999.0499 +Jayaram K. Udupa,Multidimensional Digital Boundaries.,1994,56,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip56.html#Udupa94,https://doi.org/10.1006/cgip.1994.1028 +Eric Andres,Generalized Perpendicular Bisector and exhaustive discrete circle recognition.,2011,73,Graphical Models,6,db/journals/cvgip/cvgip73.html#AndresLR11,https://doi.org/10.1016/j.gmod.2011.06.005 +Ming Zeng,Octree-based fusion for realtime 3D reconstruction.,2013,75,Graphical Models,3,db/journals/cvgip/cvgip75.html#ZengZZL13,https://doi.org/10.1016/j.gmod.2012.09.002 +P. V. Sankar,Curve and Surface Generation and Refinement Based on a High Speed Derivative Algorithm.,1994,56,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip56.html#SankarSF94,https://doi.org/10.1006/cgip.1994.1008 +D. J. Langridge,Curve encoding and the detection of discontinuities.,1982,20,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip20.html#Langridge82,https://doi.org/10.1016/0146-664X(82)90073-9 +Haixia Du,Dynamic PDE-based surface design using geometric and physical constraints.,2005,67,Graphical Models,1,db/journals/cvgip/cvgip67.html#DuQ05,https://doi.org/10.1016/j.gmod.2004.06.002 +David Eu,On Approximating Polygonal Curves in Two and Three Dimensions.,1994,56,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip56.html#EuT94,https://doi.org/10.1006/cgip.1994.1021 +Qaiser Riaz,Motion reconstruction using very few accelerometers and ground contacts.,2015,79,Graphical Models,,db/journals/cvgip/cvgip79.html#RiazTK015,https://doi.org/10.1016/j.gmod.2015.04.001 +Leila De Floriani,An on-line algorithm for constrained Delaunay triangulation.,1992,54,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip54.html#FlorianiP92,https://doi.org/10.1016/1049-9652(92)90076-A +Shunji Mori,Sequential tracking extraction of shape features and its constructive description.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Mori82,https://doi.org/10.1016/0146-664X(82)90127-7 +Takashi Maekawa,Surface construction by fitting unorganized curves.,2002,64,Graphical Models,5,db/journals/cvgip/cvgip64.html#MaekawaK02,https://doi.org/10.1016/S1077-3169(02)00006-0 +László Varga,Direction-dependency of binary tomographic reconstruction algorithms.,2011,73,Graphical Models,6,db/journals/cvgip/cvgip73.html#VargaBN11,https://doi.org/10.1016/j.gmod.2011.06.006 +Lawrence O'Gorman,Binarization and Multithresholding of Document Images Using Connectivity.,1994,56,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip56.html#OGorman94,https://doi.org/10.1006/cgip.1994.1044 +Charles R. Dyer,The space efficiency of quadtrees.,1982,19,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip19.html#Dyer82a,https://doi.org/10.1016/0146-664X(82)90020-X +W. Richard Stevens,Software pipelines in image processing.,1982,20,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip20.html#StevensH82,https://doi.org/10.1016/0146-664X(82)90076-4 +Theo Pavlidis,An asynchronous thinning algorithm.,1982,20,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip20.html#Pavlidis82,https://doi.org/10.1016/0146-664X(82)90041-7 +Hyeong-Seok Ko,The International Workshop on Human Modeling and Animation in Graphical Models.,2001,63,Graphical Models,2,db/journals/cvgip/cvgip63.html#KoB01,https://doi.org/10.1006/gmod.2001.0550 +David H. Eberly,On gray scale image measurements : II. Surface area and volume.,1991,53,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip53.html#EberlyLA91,https://doi.org/10.1016/1049-9652(91)90005-5 +Ricard Campos,Splat-based surface reconstruction from defect-laden point sets.,2013,75,Graphical Models,6,db/journals/cvgip/cvgip75.html#CamposGAY13,https://doi.org/10.1016/j.gmod.2013.08.001 +Hirobumi Nishida,A Structural Model of Curve Deformation by Discontinuous Transformations.,1996,58,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip58.html#Nishida96,https://doi.org/10.1006/gmip.1996.0014 +H.-Y. Chen,On Surface Approximation Using Developable Surfaces.,1999,61,Graphical Models and Image Processing,2,db/journals/cvgip/cvgip61.html#ChenLLPRW99,https://doi.org/10.1006/gmip.1999.0487 +Michael H. Brill,Closed-form extension of the anharmonic ratio toN-space.,1982,20,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip20.html#BrillB82,https://doi.org/10.1016/0146-664X(82)90094-6 +Ardeshir Goshtasby,Curve Fitting by a Sum of Gaussians.,1994,56,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip56.html#GoshtasbyO94,https://doi.org/10.1006/cgip.1994.1025 +Alberto Martelli,Edge detection using heuristic search methods.,1972,1,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip1.html#Martelli72,https://doi.org/10.1016/S0146-664X(72)80013-3 +Ioannis Z. Emiris,Geometric operations using sparse interpolation matrices.,2015,82,Graphical Models,,db/journals/cvgip/cvgip82.html#EmirisKK15,https://doi.org/10.1016/j.gmod.2015.06.007 +Long Yang 0001,Multi-scale geometric detail enhancement for time-varying surfaces.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#YangXF14,https://doi.org/10.1016/j.gmod.2014.03.010 +HyeongYeop Kang,Terrain rendering with unlimited detail and resolution.,2018,97,Graphical Models,,db/journals/cvgip/cvgip97.html#KangSH18,https://doi.org/10.1016/j.gmod.2018.04.001 +Chen Li,Pore-scale flow simulation in anisotropic porous material via fluid-structure coupling.,2018,95,Graphical Models,,db/journals/cvgip/cvgip95.html#LiWZQQ18,https://doi.org/10.1016/j.gmod.2017.12.001 +Jason Sewall,Visual simulation of shockwaves.,2009,71,Graphical Models,4,db/journals/cvgip/cvgip71.html#SewallGTL09,https://doi.org/10.1016/j.gmod.2009.03.002 +Deepak Tolani,Real-Time Inverse Kinematics Techniques for Anthropomorphic Limbs.,2000,62,Graphical Models,5,db/journals/cvgip/cvgip62.html#TolaniGB00,https://doi.org/10.1006/gmod.2000.0528 +Anthony P. Reeves,The local median and other window operations in SIMD computers.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Reeves82,https://doi.org/10.1016/0146-664X(82)90154-X +Shivkumar Chandrasekaran,An Eigenspace Update Algorithm for Image Analysis.,1997,59,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip59.html#ChandrasekaranMWWZ97,https://doi.org/10.1006/gmip.1997.0425 +Reinhard Klein,Reconstruction and Simplification of Surfaces from Contours.,2000,62,Graphical Models,6,db/journals/cvgip/cvgip62.html#KleinSS00,https://doi.org/10.1006/gmod.2000.0530 +Ricardo Uribe Lobello,Out-of-core adaptive iso-surface extraction from binary volume data.,2014,76,Graphical Models,6,db/journals/cvgip/cvgip76.html#LobelloDD14,https://doi.org/10.1016/j.gmod.2014.06.001 +Larry S. Davis,Contour-based motion estimation.,1982,20,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip20.html#DavisWS82,https://doi.org/10.1016/0146-664X(82)90062-4 +Anthony P. Reeves,The local median and other window operations on SIMD computers.,1982,19,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip19.html#Reeves82a,https://doi.org/10.1016/0146-664X(82)90106-X +E. V. Krishnamurthy,Reconstruction of objects from their projections using generalized inverses.,1974,3,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip3.html#KrishnamurthyRS74,https://doi.org/10.1016/0146-664X(74)90027-6 +Günther F. Schrack,Computer graphics: A keyword-indexed bibliography for the year 1980.,1982,18,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip18.html#Schrack82,https://doi.org/10.1016/0146-664X(82)90170-8 +Claudio Montani,Using Marching Cubes on Small Machines.,1994,56,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip56.html#MontaniS94,https://doi.org/10.1006/cgip.1994.1017 +Thiago Pereira,Sketch-based warping of RGBN images.,2011,73,Graphical Models,4,db/journals/cvgip/cvgip73.html#PereiraBMSFV11,https://doi.org/10.1016/j.gmod.2010.11.001 +Pascale Gerlot-Chiron,Registration of multimodality medical images using a region overlap criterion.,1992,54,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip54.html#Gerlot-ChironB92,https://doi.org/10.1016/1049-9652(92)90024-R +Gabor T. Herman,Discrete multidimensional Jordan surfaces.,1992,54,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip54.html#Herman92,https://doi.org/10.1016/1049-9652(92)90070-E +Hendrik James Antonisse,Image segmentation in pyramids.,1982,19,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip19.html#Antonisse82a,https://doi.org/10.1016/0146-664X(82)90022-3 +Aldo Cumani,An edge-based description of color images.,1991,53,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip53.html#CumaniGG91,https://doi.org/10.1016/1049-9652(91)90035-I +Tamás Várady,Transfinite surface interpolation with interior control.,2012,74,Graphical Models,6,db/journals/cvgip/cvgip74.html#VaradySR12,https://doi.org/10.1016/j.gmod.2012.03.003 +Alain Bretto,Combinatorics and Image Processing.,1997,59,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip59.html#BrettoACL97,https://doi.org/10.1006/gmip.1997.0437 +Julian R. Ullmann,A compiler for simple boolean functions of binary patterns.,1973,2,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip2.html#Ullmann73,https://doi.org/10.1016/0146-664X(73)90021-X +Chengjun Sun,Neighboring gray level dependence matrix for texture classification.,1982,20,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip20.html#SunW82,https://doi.org/10.1016/0146-664X(82)90093-4 +Alexander A. Pasko,Constructive Hypervolume Modeling.,2001,63,Graphical Models,6,db/journals/cvgip/cvgip63.html#PaskoASS01,https://doi.org/10.1006/gmod.2001.0560 +Ernesto Bribiesca,Digital Elevation Model Data Analysis Using the Contact Surface Area.,1998,60,Graphical Models and Image Processing,2,db/journals/cvgip/cvgip60.html#Bribiesca98,https://doi.org/10.1006/gmip.1998.0463 +R. Williams,Ex. FRAF: An extensible language including graphical operations.,1972,1,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip1.html#WilliamsK72,https://doi.org/10.1016/0146-664X(72)90019-6 +T. Huang,Stochastic syntactic analysis for programmed grammars and syntactic pattern recognition.,1972,1,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip1.html#HuangF72,https://doi.org/10.1016/S0146-664X(72)80018-2 +Hyewon Seo,An example-based approach to human body manipulation.,2004,66,Graphical Models,1,db/journals/cvgip/cvgip66.html#SeoM04,https://doi.org/10.1016/j.gmod.2003.07.004 +Yizi Wu,A double layer method for constructing signed distance fields from triangle meshes.,2014,76,Graphical Models,4,db/journals/cvgip/cvgip76.html#WuMX14,https://doi.org/10.1016/j.gmod.2014.04.011 +Baldemar Gil,Experiments in combining intensity and range-edge maps.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#GilMA82,https://doi.org/10.1016/0146-664X(82)90167-8 +John C. Handley,Maximum-Likelihood Estimation for the Two-Dimensional Discrete Boolean Random Set and Function Models Using Multidimensional Linear Samples.,1997,59,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip59.html#HandleyD97,https://doi.org/10.1006/gmip.1997.0432 +Min Chen,Special Issue on Volume Modeling.,2001,63,Graphical Models,6,db/journals/cvgip/cvgip63.html#ChenNK01,https://doi.org/10.1006/gmod.2002.0564 +Hyeong In Choi,New Algorithm for Medial Axis Transform of Plane Domain.,1997,59,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip59.html#ChoiCMW97,https://doi.org/10.1006/gmip.1997.0444 +Manolya Eyiyurekli,Detail-preserving level set surface editing and geometric texture transfer.,2017,93,Graphical Models,,db/journals/cvgip/cvgip93.html#EyiyurekliB17,https://doi.org/10.1016/j.gmod.2017.08.002 +Ken D. Sauer,Enhancement of low bit-rate coded images using edge detection and estimation.,1991,53,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip53.html#Sauer91,https://doi.org/10.1016/1049-9652(91)90019-G +Min-Ho Kyung,A New Approach to Through-the-Lens Camera Control.,1996,58,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip58.html#KyungKH96,https://doi.org/10.1006/gmip.1996.0022 +Jean Françon,Discrete Combinatorial Surfaces.,1995,57,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip57.html#Francon95,https://doi.org/10.1006/gmip.1995.1003 +Ta-Chih Lee,Building Skeleton Models via 3-D Medial Surface/Axis Thinning Algorithms.,1994,56,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip56.html#LeeKC94,https://doi.org/10.1006/cgip.1994.1042 +Arash Bahrehmand,Optimizing layout using spatial quality metrics and user preferences.,2017,93,Graphical Models,,db/journals/cvgip/cvgip93.html#BahrehmandBMEB17,https://doi.org/10.1016/j.gmod.2017.08.003 +B. Prescott,Line-Based Correction of Radial Lens Distortion.,1997,59,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip59.html#PrescottM97,https://doi.org/10.1006/gmip.1996.0407 +David Pickup,An evaluation of canonical forms for non-rigid 3D shape retrieval.,2018,97,Graphical Models,,db/journals/cvgip/cvgip97.html#PickupLSRMCLNJS18,https://doi.org/10.1016/j.gmod.2018.02.002 +Gerald E. Farin,Agnostic G1 Gregory surfaces.,2012,74,Graphical Models,6,db/journals/cvgip/cvgip74.html#FarinH12,https://doi.org/10.1016/j.gmod.2012.05.004 +Nikhil Gagvani,Parameter-Controlled Volume Thinning.,1999,61,Graphical Models and Image Processing,3,db/journals/cvgip/cvgip61.html#GagvaniS99,https://doi.org/10.1006/gmip.1999.0495 +Reinhard Klette,Digital Approximation of Moments of Convex Regions.,1999,61,Graphical Models and Image Processing,5,db/journals/cvgip/cvgip61.html#KletteZ99,https://doi.org/10.1006/gmip.1999.0501 +Michael Barton,Spiral fat arcs - Bounding regions with cubic convergence.,2011,73,Graphical Models,2,db/journals/cvgip/cvgip73.html#BartonE11,https://doi.org/10.1016/j.gmod.2010.10.005 +Martin Isenburg,Compressing hexahedral volume meshes.,2003,65,Graphical Models,4,db/journals/cvgip/cvgip65.html#IsenburgA03,https://doi.org/10.1016/S1524-0703(03)00044-4 +Yu-Wei Zhang,Line-based sunken relief generation from a 3D mesh.,2013,75,Graphical Models,6,db/journals/cvgip/cvgip75.html#ZhangZLZ13,https://doi.org/10.1016/j.gmod.2013.07.002 +Gábor Kiss,Adaptive CAD model (re-)construction with THB-splines.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#KissGZJGB14,https://doi.org/10.1016/j.gmod.2014.03.017 +Achille J.-P. Braquelaire,A color model for rendering linear passive graphic 2D objects.,2004,66,Graphical Models,2,db/journals/cvgip/cvgip66.html#BraquelaireS04,https://doi.org/10.1016/j.gmod.2003.11.002 +Longin Jan Latecki,3D Well-Composed Pictures.,1997,59,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip59.html#Latecki97,https://doi.org/10.1006/gmip.1997.0422 +C. P. Liu,A New Two Successive Process Image Compression Technique Using Subband Coding and JPEG Discrete Cosine Transform Coding.,1997,59,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip59.html#Liu97,https://doi.org/10.1006/gmip.1997.0430 +Hua Zhu,Adaptive tetrahedral remeshing for modified solid models.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#ZhuGLP12,https://doi.org/10.1016/j.gmod.2012.03.005 +Eugene Fiume,Coverage masks and convolution tables for fast area sampling.,1991,53,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip53.html#Fiume91a,https://doi.org/10.1016/1049-9652(91)90016-D +J. J. Hwang,Matching of featured objects relational tables from stereo images.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Hwang82,https://doi.org/10.1016/0146-664X(82)90124-1 +Minqi Zhang,Automatic registration of vestibular systems with exact landmark correspondence.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#ZhangLWWXLSWH14,https://doi.org/10.1016/j.gmod.2014.04.010 +Falai Chen,Special Issue of selected papers from the 2014 Dagstuhl seminar on Geometric Modeling.,2015,82,Graphical Models,,db/journals/cvgip/cvgip82.html#ChenDGH15,https://doi.org/10.1016/j.gmod.2015.11.001 +Juan José Jiménez-Delgado,Tetra-trees properties in graphic interaction.,2011,73,Graphical Models,5,db/journals/cvgip/cvgip73.html#JimenezFS11,https://doi.org/10.1016/j.gmod.2011.03.003 +Maria Boschiroli,G1 rational blend interpolatory schemes: A comparative study.,2012,74,Graphical Models,1,db/journals/cvgip/cvgip74.html#BoschiroliFRA12,https://doi.org/10.1016/j.gmod.2011.11.002 +Juan Gerardo Alcázar,Algebraic surfaces invariant under scissor shears.,2016,87,Graphical Models,,db/journals/cvgip/cvgip87.html#AlcazarGH16,https://doi.org/10.1016/j.gmod.2016.09.001 +Yongchoel Choi,Injectivity Conditions of 2D and 3D Uniform Cubic B-Spline Functions.,2000,62,Graphical Models,6,db/journals/cvgip/cvgip62.html#ChoiL00,https://doi.org/10.1006/gmod.2000.0531 +Robert M. Haralick,Understanding engineering drawings.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#HaralickQ82a,https://doi.org/10.1016/0146-664X(82)90146-0 +Jean-Christophe Olivo,Automatic Threshold Selection Using the Wavelet Transform.,1994,56,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip56.html#Olivo94,https://doi.org/10.1006/cgip.1994.1019 +Gill Barequet,Contour interpolation by straight skeletons.,2004,66,Graphical Models,4,db/journals/cvgip/cvgip66.html#BarequetGLS04,https://doi.org/10.1016/j.gmod.2004.05.001 +Mustafa Hajij,Segmenting a surface mesh into pants using Morse theory.,2016,88,Graphical Models,,db/journals/cvgip/cvgip88.html#HajijDL16,https://doi.org/10.1016/j.gmod.2016.09.003 +Christoph Lürig,Hierarchical Solutions for the Deformable Surface Problem in Visualization.,2000,62,Graphical Models,1,db/journals/cvgip/cvgip62.html#LurigKE00,https://doi.org/10.1006/gmod.1999.0515 +Marie-Paule Cani,SCA 2006 Symposium.,2009,71,Graphical Models,6,db/journals/cvgip/cvgip71.html#CaniPOO09,https://doi.org/10.1016/j.gmod.2009.10.002 +Carlo Arcelli,Concavity Point Detection by Iterative Arrays.,1974,3,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip3.html#ArcelliC74,https://doi.org/10.1016/0146-664X(74)90009-4 +Jefferey A. Shufelt,Texture Analysis for Enhanced Color Image Quantization.,1997,59,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip59.html#Shufelt97,https://doi.org/10.1006/gmip.1997.0428 +Dang-Manh Nguyen,Isogeometric segmentation. Part II: On the segmentability of contractible solids with non-convex edges.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#NguyenPJ14,https://doi.org/10.1016/j.gmod.2014.03.013 +Rolf Adams,Radial Decomposition of Discs and Spheres.,1993,55,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip55.html#Adams93,https://doi.org/10.1006/cgip.1993.1024 +Long Zhang 0001,Efficient and robust 3D line drawings using difference-of-Gaussian.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#ZhangXYHMS12,https://doi.org/10.1016/j.gmod.2012.03.006 +Shaoting Zhang,Robust mesh editing using Laplacian coordinates.,2011,73,Graphical Models,1,db/journals/cvgip/cvgip73.html#ZhangHM11,https://doi.org/10.1016/j.gmod.2010.10.003 +Emily G. Johnston,Printed Text Discrimination.,1974,3,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip3.html#Johnston74,https://doi.org/10.1016/0146-664X(74)90012-4 +Innchyn Her,Resampling on a Pseudohexagonal Grid.,1994,56,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip56.html#HerY94,https://doi.org/10.1006/cgip.1994.1030 +Guo-Xin Zhang,Efficient synthesis of gradient solid textures.,2013,75,Graphical Models,3,db/journals/cvgip/cvgip75.html#ZhangLH13,https://doi.org/10.1016/j.gmod.2012.10.006 +J. G. Jones,Multiresolution statistical analysis of computer-generated fractal imagery.,1991,53,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip53.html#JonesTEA91,https://doi.org/10.1016/1049-9652(91)90038-L +Chia-Yiu Maa,Identifying the Existence of Bar Codes in Compressed Images.,1994,56,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip56.html#Maa94,https://doi.org/10.1006/cgip.1994.1032 +Björn Gudmundsson,An interactive high-level language system for picture processing.,1982,18,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip18.html#Gudmundsson82,https://doi.org/10.1016/0146-664X(82)90007-7 +Byron Bashforth,Physics-Based Explosion Modeling.,2001,63,Graphical Models,1,db/journals/cvgip/cvgip63.html#BashforthY01,https://doi.org/10.1006/gmod.2000.0536 +Rein van den Boomgaard,Methods for fast morphological image transforms using bitmapped binary images.,1992,54,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip54.html#BoomgaardB92,https://doi.org/10.1016/1049-9652(92)90055-3 +Romain Arcila,Segmentation of temporal mesh sequences into rigidly moving components.,2013,75,Graphical Models,1,db/journals/cvgip/cvgip75.html#ArcilaCHBD13,https://doi.org/10.1016/j.gmod.2012.10.004 +José L. Marroquín,Deterministic Interactive Particle Models for Image Processing and Computer Graphics.,1993,55,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip55.html#Marroquin93,https://doi.org/10.1006/cgip.1993.1031 +Russell M. Mersereau,Recovering multidimensional signals from their projections.,1973,2,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip2.html#Mersereau73,https://doi.org/10.1016/0146-664X(73)90026-9 +Jonàs Martínez,Skeletal representations of orthogonal shapes.,2013,75,Graphical Models,4,db/journals/cvgip/cvgip75.html#MartinezGA13,https://doi.org/10.1016/j.gmod.2013.03.005 +Jie Yang,Biharmonic deformation transfer with automatic key point selection.,2018,98,Graphical Models,,db/journals/cvgip/cvgip98.html#YangGLRX18,https://doi.org/10.1016/j.gmod.2018.05.003 +Sunil Kumar Kopparapu,The Effect of Noise on Camera Calibration Parameters.,2001,63,Graphical Models,5,db/journals/cvgip/cvgip63.html#KopparapuC01,https://doi.org/10.1006/gmod.2001.0551 +Bo Li 0013,Efficient 3D reflection symmetry detection: A view-based approach.,2016,83,Graphical Models,,db/journals/cvgip/cvgip83.html#0013JYL16,https://doi.org/10.1016/j.gmod.2015.09.003 +S. N. Jayaramamurthy,An approach to the segmentation of textured dynamic scenes.,1982,20,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip20.html#JayaramamurthyJ82,https://doi.org/10.1016/0146-664X(82)90050-8 +Minglun Gong,Layer-Based Morphing.,2001,63,Graphical Models,1,db/journals/cvgip/cvgip63.html#GongY01,https://doi.org/10.1006/gmod.2000.0537 +Giuseppe Patanè,Families of cut-graphs for bordered meshes with arbitrary genus.,2007,69,Graphical Models,2,db/journals/cvgip/cvgip69.html#PataneSF07,https://doi.org/10.1016/j.gmod.2006.09.004 +Franz-Erich Wolter,Special Issue for CGI '98.,2000,62,Graphical Models,1,db/journals/cvgip/cvgip62.html#WolterP00,https://doi.org/10.1006/gmod.1999.0516 +Anais Badoual,A non-stationary subdivision scheme for the construction of deformable models with sphere-like topology.,2017,94,Graphical Models,,db/journals/cvgip/cvgip94.html#BadoualNRSU17,https://doi.org/10.1016/j.gmod.2017.10.001 +Luiz Velho,Constructing Implicit Shape Models from Boundary Data.,1995,57,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip57.html#VelhoTG95,https://doi.org/10.1006/gmip.1995.1021 +Xiaohua Zhou,Generation of noise in binary images.,1991,53,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip53.html#ZhouG91,https://doi.org/10.1016/1049-9652(91)90031-E +Ying He 0001,Harmonic 1-form based skeleton extraction from examples.,2009,71,Graphical Models,2,db/journals/cvgip/cvgip71.html#HeXS09,https://doi.org/10.1016/j.gmod.2008.12.008 +Demetri Terzopoulos,Detection of osteogenesis imperfecta by automated texture analysis.,1982,20,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip20.html#TerzopoulosZ82,https://doi.org/10.1016/0146-664X(82)90082-X +Ye Duan,A subdivision-based deformable model for surface reconstruction of unknown topology.,2004,66,Graphical Models,4,db/journals/cvgip/cvgip66.html#DuanQ04,https://doi.org/10.1016/j.gmod.2004.05.004 +Steven M. Rubin,The representation and display of scenes with a wide range o f detail.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Rubin82,https://doi.org/10.1016/0146-664X(82)90155-1 +Tommy Elfving,Some properties of stochastic labeling procedures.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#ElfvingE82a,https://doi.org/10.1016/0146-664X(82)90141-1 +Frank Y. Shih,An Improved Fast Algorithm for the Restoration of Images Based on Chain Codes Description.,1994,56,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip56.html#ShihW94,https://doi.org/10.1006/cgip.1994.1031 +Ken-ichi Kanatani,Cramer-Rao Lower Bounds for Curve Fitting.,1998,60,Graphical Models and Image Processing,2,db/journals/cvgip/cvgip60.html#Kanatani98,https://doi.org/10.1006/gmip.1998.0466 +Mark Berman,Estimating Band-to-Band Misregistrations in Aliased Imagery.,1994,56,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip56.html#BermanBDGC94,https://doi.org/10.1006/cgip.1994.1043 +James D. Foley,Review of Graphic Languages (1972).,1973,2,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip2.html#FoleyP73,https://doi.org/10.1016/0146-664X(73)90027-0 +Antoni Chica,Example-guided segmentation.,2012,74,Graphical Models,6,db/journals/cvgip/cvgip74.html#ChicaMBNV12,https://doi.org/10.1016/j.gmod.2012.03.002 +Kálmán Palágyi,A Parallel 3D 12-Subiteration Thinning Algorithm.,1999,61,Graphical Models and Image Processing,4,db/journals/cvgip/cvgip61.html#PalagyiK99,https://doi.org/10.1006/gmip.1999.0498 +Caroline Houle,Light-Source Modeling Using Pyramidal Light Maps.,1993,55,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip55.html#HouleF93,https://doi.org/10.1006/cgip.1993.1026 +Soo-Chang Pei,An Efficient Class of Alternating Sequential Filters in Morphology.,1997,59,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip59.html#PeiLS97,https://doi.org/10.1006/gmip.1996.0416 +Paul L. Rosin,Further Five-Point Fit Ellipse Fitting.,1999,61,Graphical Models and Image Processing,5,db/journals/cvgip/cvgip61.html#Rosin99,https://doi.org/10.1006/gmip.1999.0500 +Bingcheng Li,Pascal triangle transform approach to the calculation of 3D moments.,1992,54,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip54.html#LiS92,https://doi.org/10.1016/1049-9652(92)90077-B +Azriel Rosenfeld,Picture processing: 1973.,1974,3,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip3.html#Rosenfeld74,https://doi.org/10.1016/S0146-664X(74)80006-7 +Susan M. Haynes,Detection of moving edges.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#HayneJ82,https://doi.org/10.1016/0146-664X(82)90147-2 +Robert P. Loce,Mean-Absolute-Error Representation and Optimization of Computational-Morphological Filters.,1995,57,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip57.html#Loce95,https://doi.org/10.1006/gmip.1995.1004 +J. F. O'Callaghan,Recovery of perceptual shape organizations from simple closed boundaries.,1974,3,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip3.html#OCallaghan74a,https://doi.org/10.1016/0146-664X(74)90023-9 +Finian Mwalongo,GPU-based remote visualization of dynamic molecular data on the web.,2016,88,Graphical Models,,db/journals/cvgip/cvgip88.html#MwalongoKBRE16,https://doi.org/10.1016/j.gmod.2016.05.001 +John Mylopoulos,On the recognition of topological invariants by 4-way finite automata.,1972,1,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip1.html#Mylopoulos72,https://doi.org/10.1016/S0146-664X(72)80020-0 +Yuan Liu,Globally consistent rigid registration.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#LiuZYDL14,https://doi.org/10.1016/j.gmod.2014.04.003 +Jonathan Starck,Virtual view synthesis of people from multiple view video sequences.,2005,67,Graphical Models,6,db/journals/cvgip/cvgip67.html#StarckH05,https://doi.org/10.1016/j.gmod.2005.01.008 +Stefano Marras,Motion-based mesh segmentation using augmented silhouettes.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#MarrasBHSS12,https://doi.org/10.1016/j.gmod.2012.04.001 +Jie Shen,Deformable Object Modeling Using the Time-Dependent Finite Element Method.,1998,60,Graphical Models and Image Processing,6,db/journals/cvgip/cvgip60.html#ShenY98,https://doi.org/10.1006/gmip.1998.0484 +Sudhakar Yalamanchili,Extraction of moving object descriptions via differencing.,1982,18,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip18.html#YalamanchiliMA82,https://doi.org/10.1016/0146-664X(82)90171-X +Nilo Stolte,Novel Techniques for Robust Voxelization and Visualization of Implicit Surfaces.,2001,63,Graphical Models,6,db/journals/cvgip/cvgip63.html#StolteK01,https://doi.org/10.1006/gmod.2001.0559 +Juan Gerardo Alcázar,Recognizing projections of algebraic curves.,2016,87,Graphical Models,,db/journals/cvgip/cvgip87.html#AlcazarH16,https://doi.org/10.1016/j.gmod.2016.07.002 +Xinyu Zhang 0002,Efficient texture synthesis using strict Wang Tiles.,2008,70,Graphical Models,3,db/journals/cvgip/cvgip70.html#ZhangK08,https://doi.org/10.1016/j.gmod.2007.10.002 +Jinyuan Jia,Quadric decomposition for computing the intersections of surfaces of revolution.,2004,66,Graphical Models,5,db/journals/cvgip/cvgip66.html#JinyuanBK04,https://doi.org/10.1016/j.gmod.2004.05.007 +Minjung Son,Structure grid for directional stippling.,2011,73,Graphical Models,3,db/journals/cvgip/cvgip73.html#SonLKL11,https://doi.org/10.1016/j.gmod.2010.12.001 +Xianfang Sun,Noise analysis and synthesis for 3D laser depth scanners.,2009,71,Graphical Models,2,db/journals/cvgip/cvgip71.html#SunRML09,https://doi.org/10.1016/j.gmod.2008.12.002 +T. Yung Kong,A justification of a fast surface tracking algorithm.,1992,54,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip54.html#KongU92,https://doi.org/10.1016/1049-9652(92)90063-4 +A. Mokrane,A new image contrast enhancement technique based on a contrast discrimination model.,1992,54,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip54.html#Mokrane92,https://doi.org/10.1016/1049-9652(92)90064-5 +Alexis Angelidis,Sweepers: Swept deformation defined by gesture.,2006,68,Graphical Models,1,db/journals/cvgip/cvgip68.html#AngelidisWC06,https://doi.org/10.1016/j.gmod.2005.08.002 +Vincenzo Caglioti,On the Uncertainty of Straight Lines in Digital Images.,1993,55,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip55.html#Caglioti93,https://doi.org/10.1006/cgip.1993.1018 +Nahum Kiryati,Antialiasing the Hough transform.,1991,53,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip53.html#KiryatiB91a,https://doi.org/10.1016/1049-9652(91)90043-J +Antonio J. Rueda Ruiz,Rasterizing complex polygons without tessellations.,2004,66,Graphical Models,3,db/journals/cvgip/cvgip66.html#RuizSFM04,https://doi.org/10.1016/j.gmod.2004.01.001 +Kestutis Karciauskas,Point-augmented biquadratic C1 subdivision surfaces.,2015,77,Graphical Models,,db/journals/cvgip/cvgip77.html#KarciauskasP15,https://doi.org/10.1016/j.gmod.2014.10.003 +Saibal Banerjee,Pyramid computation of neighbor distance statistics in dot patterns.,1991,53,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip53.html#BanerjeeMR91,https://doi.org/10.1016/1049-9652(91)90040-Q +Yiu-Tong Chan,An Approximate Maximum Likelihood Linear Estimator of Circle Parameters.,1997,59,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip59.html#ChanT97,https://doi.org/10.1006/gmip.1997.0424 +Tao Liao,Structure-aligned guidance estimation in surface parameterization using eigenfunction-based cross field.,2014,76,Graphical Models,6,db/journals/cvgip/cvgip76.html#LiaoXZ14,https://doi.org/10.1016/j.gmod.2014.08.001 +Yehuda E. Kalay,Determining the spatial containment of a point in general polyhedra.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Kalay82,https://doi.org/10.1016/0146-664X(82)90135-6 +Florian Buchegger,Total curvature variation fairing for medial axis regularization.,2014,76,Graphical Models,6,db/journals/cvgip/cvgip76.html#BucheggerJK14,https://doi.org/10.1016/j.gmod.2014.06.004 +M. Barrat,Recursive Wavelet Transform for 2D Signals.,1994,56,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip56.html#BarratL94,https://doi.org/10.1006/cgip.1994.1010 +Wenqi Huang,A Quasi-mechanical Method for Solving the Rectangle Covering Problem An Approach to Tackling NP Hard Problems.,1994,56,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip56.html#WenqiG94,https://doi.org/10.1006/cgip.1994.1023 +Brian A. Barsky,Special Issue on Pacific Graphics 2000.,2001,63,Graphical Models,4,db/journals/cvgip/cvgip63.html#BarskySW01,https://doi.org/10.1006/gmod.2001.0561 +W. Eric L. Grimson,Surface consistency constraints in vision.,1982,20,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip20.html#Grimson82,https://doi.org/10.1016/0146-664X(82)90064-8 +Tao Ju,Preface.,2014,76,Graphical Models,3,db/journals/cvgip/cvgip76.html#JuB14,https://doi.org/10.1016/j.gmod.2014.02.001 +Lennart Thurfjell,A Boundary Approach for Fast Neighborhood Operations on Three-Dimensional Binary Data.,1995,57,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip57.html#ThurfjellBN95,https://doi.org/10.1006/gmip.1995.1002 +Oscar Argudo,Biharmonic fields and mesh completion.,2015,82,Graphical Models,,db/journals/cvgip/cvgip82.html#ArgudoBCV15,https://doi.org/10.1016/j.gmod.2015.06.010 +Ken Knowlton,Computer-produced grey scales.,1972,1,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip1.html#KnowltonH72,https://doi.org/10.1016/S0146-664X(72)80003-0 +Gábor Németh,Thinning combined with iteration-by-iteration smoothing for 3D binary images.,2011,73,Graphical Models,6,db/journals/cvgip/cvgip73.html#NemethKP11,https://doi.org/10.1016/j.gmod.2011.02.001 +Francesco Bonarrigo,Deformable registration using patch-wise shape matching.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#BonarrigoSB14,https://doi.org/10.1016/j.gmod.2014.04.004 +Cornelis H. Slump,A network flow approach to reconstruction of the left ventricle from two projections.,1982,18,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip18.html#SlumpG82,https://doi.org/10.1016/0146-664X(82)90097-1 +Eugene Fiume,A mathematical semantics of rendering : II. Approximation.,1991,53,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip53.html#Fiume91,https://doi.org/10.1016/1049-9652(91)90015-C +Guo-Zhao Wang,Bounds on the Moving Control Points of Hybrid Curves.,1997,59,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip59.html#WangZ97,https://doi.org/10.1006/gmip.1996.0411 +Ilya Braude,Contour-based surface reconstruction using MPU implicit models.,2007,69,Graphical Models,2,db/journals/cvgip/cvgip69.html#BraudeMMNB07,https://doi.org/10.1016/j.gmod.2006.09.007 +Xiaopeng Sun,3D ear recognition using local salience and principal manifold.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#SunWWSW14,https://doi.org/10.1016/j.gmod.2014.03.003 +I. S. I. Abuhaiba,Processing of Off-Line Handwritten Text: Polygonal Approximation and Enforcement of Temporal Information.,1994,56,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip56.html#AbuhaibaHD94,https://doi.org/10.1006/cgip.1994.1029 +Thomas C. M. Lee,Nonparametric Estimation and Simulation of Two-Dimensional Gaussian Image Textures.,1997,59,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip59.html#LeeB97,https://doi.org/10.1006/gmip.1997.0439 +James R. Miller,Geometric Algorithms for Detecting and Calculating All Conic Sections in the Intersection of Any 2 Natural Quadric Surfaces.,1995,57,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip57.html#MillerG95,https://doi.org/10.1006/gmip.1995.1006 +Vishwakumara Kayargadde,Estimation of Edge Parameters and Image Blur Using Polynomial Transforms.,1994,56,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip56.html#KayargaddeM94,https://doi.org/10.1006/cgip.1994.1041 +Jiansong Deng,Polynomial splines over hierarchical T-meshes.,2008,70,Graphical Models,4,db/journals/cvgip/cvgip70.html#DengCLHTYF08,https://doi.org/10.1016/j.gmod.2008.03.001 +Joel S. Welling,Rotation of 3D volumes by Fourier-interpolated shears.,2006,68,Graphical Models,4,db/journals/cvgip/cvgip68.html#WellingEY06,https://doi.org/10.1016/j.gmod.2005.11.004 +Wen-Yen Wu,A dynamic method for dominant point detection.,2002,64,Graphical Models,5,db/journals/cvgip/cvgip64.html#Wu02,https://doi.org/10.1016/S1077-3169(02)00008-4 +Jean-Pierre Crettez,A model for cell receptive fields in the visual striate cortex.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#CrettezS82a,https://doi.org/10.1016/0146-664X(82)90126-5 +Wolf-Dieter Groch,Extraction of line shaped objects from aerial images using a special operator to analyze the profiles of functions.,1982,18,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip18.html#Groch82,https://doi.org/10.1016/0146-664X(82)90003-X +Sylvain Paris,Robust acquisition of 3D informations from short image sequences.,2003,65,Graphical Models,4,db/journals/cvgip/cvgip65.html#ParisS03,https://doi.org/10.1016/S1524-0703(03)00041-9 +Peter Meer,Multiresolution Adaptive Image Smoothing.,1994,56,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip56.html#MeerPC94,https://doi.org/10.1006/cgip.1994.1013 +Donna J. Williams,Edge Characterization Using Normalized Edge Detector.,1993,55,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip55.html#WilliamsS93,https://doi.org/10.1006/cgip.1993.1021 +Jianmin Zheng,Perturbing Bézier coefficients for best constrained degree reduction in the L2-norm.,2003,65,Graphical Models,6,db/journals/cvgip/cvgip65.html#ZhengW03,https://doi.org/10.1016/j.gmod.2003.07.001 +Michiel van de Panne,Physically Based Modeling and Control of Turning.,1993,55,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip55.html#PanneFV93,https://doi.org/10.1006/cgip.1993.1038 +Shiguang Liu,Simulation of atmospheric binary mixtures based on two-fluid model.,2008,70,Graphical Models,6,db/journals/cvgip/cvgip70.html#LiuWGP08,https://doi.org/10.1016/j.gmod.2008.04.002 +Patrick Moreau,Generation of Shading-Off in Images by Extrapolation of Lipschitz Functions.,1996,58,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip58.html#MoreauR96,https://doi.org/10.1006/gmip.1996.0026 +A. R. Forrest,On coons and other methods for the representation of curved surfaces.,1972,1,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip1.html#Forrest72,https://doi.org/10.1016/0146-664X(72)90020-2 +Paul Dierckx,Algorithms for smoothing data with periodic and parametric splines.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Dierckx82a,https://doi.org/10.1016/0146-664X(82)90144-7 +Nahum Kiryati,Gray levels can improve the performance of binary image digitizers.,1991,53,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip53.html#KiryatiB91,https://doi.org/10.1016/1049-9652(91)90017-E +Wei Zeng,Discrete heat kernel determines discrete Riemannian metric.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#ZengGLG12,https://doi.org/10.1016/j.gmod.2012.03.009 +Alexander A. Pasko,Procedural function-based modelling of volumetric microstructures.,2011,73,Graphical Models,5,db/journals/cvgip/cvgip73.html#PaskoFVFA11,https://doi.org/10.1016/j.gmod.2011.03.001 +Joseph O'Rourke,On the Scaling Heuristic for Reconstruction from Slices.,1994,56,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip56.html#ORourke94,https://doi.org/10.1006/cgip.1994.1038 +Josildo Pereira da Silva,A new optimization approach for mass-spring models parameterization.,2015,81,Graphical Models,,db/journals/cvgip/cvgip81.html#SilvaGA15,https://doi.org/10.1016/j.gmod.2015.07.001 +George K. Knopf,Interpolating scattered data using 2D self-organizing feature maps.,2004,66,Graphical Models,1,db/journals/cvgip/cvgip66.html#KnopfS04,https://doi.org/10.1016/j.gmod.2003.08.001 +Ami Steiner,Planar Shape Enhancement and Exaggeration.,1998,60,Graphical Models and Image Processing,2,db/journals/cvgip/cvgip60.html#SteinerKB98,https://doi.org/10.1006/gmip.1998.0461 +Gerald E. Farin,A construction for visualC1 continuity of polynomial surface patches.,1982,20,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip20.html#Farin82,https://doi.org/10.1016/0146-664X(82)90085-5 +John L. Pfaltz,Web grammars and picture description.,1972,1,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip1.html#Pfaltz72,https://doi.org/10.1016/S0146-664X(72)80015-7 +WuJun Che,"Corrigendum to ""Skeleton-driven 2D distance field metamorphosis using intrinsic shape parameters.",2004,66,Graphical Models,4,db/journals/cvgip/cvgip66.html#CheYW04a,https://doi.org/10.1016/j.gmod.2004.04.001 +Kestutis Karciauskas,Free-form splines combining NURBS and basic shapes.,2012,74,Graphical Models,6,db/journals/cvgip/cvgip74.html#KarciauskasP12,https://doi.org/10.1016/j.gmod.2012.05.005 +Baba C. Vemuri,Efficient and Accurate Collision Detection for Granular Flow Simulation.,1998,60,Graphical Models and Image Processing,6,db/journals/cvgip/cvgip60.html#VemuriCVZW98,https://doi.org/10.1006/gmip.1998.0479 +Alla Sheffer,Skinning 3D meshes.,2003,65,Graphical Models,5,db/journals/cvgip/cvgip65.html#Sheffer03,https://doi.org/10.1016/S1524-0703(03)00049-3 +Allen V. Hershey,A computer system for scientific typography.,1972,1,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip1.html#Hershey72,https://doi.org/10.1016/0146-664X(72)90022-6 +Phillip J. Barry,Interpolation and approximation of curves and surfaces using Pólya polynomials.,1991,53,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip53.html#BarryG91,https://doi.org/10.1016/1049-9652(91)90057-Q +Xavier Granier,A simple layered RGB BRDF model.,2003,65,Graphical Models,4,db/journals/cvgip/cvgip65.html#GranierH03,https://doi.org/10.1016/S1524-0703(03)00042-0 +Wen-Yen Wu,Performance evaluation of some noise reduction methods.,1992,54,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip54.html#WuWL92,https://doi.org/10.1016/1049-9652(92)90061-2 +Anupam N. Shah,Pebble automata on arrays.,1974,3,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip3.html#Shah74,https://doi.org/10.1016/0146-664X(74)90017-3 +Han Kyul Joo,Differential geometry properties of lines of curvature of parametric surfaces and their visualization.,2014,76,Graphical Models,4,db/journals/cvgip/cvgip76.html#JooYTM14,https://doi.org/10.1016/j.gmod.2014.05.001 +Jason Williams,Mason: morphological simplification.,2005,67,Graphical Models,4,db/journals/cvgip/cvgip67.html#WilliamsR05,https://doi.org/10.1016/j.gmod.2004.10.001 +Yves Bertrand,Algebraic Specification of a 3D-Modeler Based on Hypermaps.,1994,56,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip56.html#BertrandD94,https://doi.org/10.1006/cgip.1994.1005 +S. F. Burch,Image restoration by a powerful maximum entropy method.,1982,20,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip20.html#BurchGS82,https://doi.org/10.1016/0146-664X(82)90045-4 +Seiichi Nishihara,False contour removal by random blurring.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#NishiharaI82a,https://doi.org/10.1016/0146-664X(82)90162-9 +Georges-Pierre Bonneau,Flexible G1 interpolation of quad meshes.,2014,76,Graphical Models,6,db/journals/cvgip/cvgip76.html#BonneauH14,https://doi.org/10.1016/j.gmod.2014.09.001 +Donald Meagher,Geometric modeling using octree encoding.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Meagher82,https://doi.org/10.1016/0146-664X(82)90128-9 +Ku-Jin Kim,Torus/Sphere Intersection Based on a Configuration Space Approach.,1998,60,Graphical Models and Image Processing,1,db/journals/cvgip/cvgip60.html#KimKO98,https://doi.org/10.1006/gmip.1997.0451 +Gift Siromoney,Array Grammars and Kolam.,1974,3,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip3.html#SiromoneySK74,https://doi.org/10.1016/0146-664X(74)90011-2 +Reinhard Klette,A Parametrization of Digital Planes by Least-Squares Fits and Generalizations.,1996,58,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip58.html#KletteSZ96,https://doi.org/10.1006/gmip.1996.0024 +Lubin Fan,Sketch-based mesh cutting: A comparative study.,2012,74,Graphical Models,6,db/journals/cvgip/cvgip74.html#FanML12,https://doi.org/10.1016/j.gmod.2012.03.001 +Polina Golland,Why R.G.B.? Or How to Design Color Displays for Martians.,1996,58,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip58.html#GollandB96,https://doi.org/10.1006/gmip.1996.0034 +Bohumír Bastl,Simple and branched skins of systems of circles and convex shapes.,2015,78,Graphical Models,,db/journals/cvgip/cvgip78.html#BastlKL15,https://doi.org/10.1016/j.gmod.2014.12.001 +Xufang Pang,An effective quad-dominant meshing method for unorganized point clouds.,2014,76,Graphical Models,2,db/journals/cvgip/cvgip76.html#PangSL14,https://doi.org/10.1016/j.gmod.2013.11.004 +Zoltan Kato,A Hierarchical Markov Random Field Model and Multitemperature Annealing for Parallel Image Classification.,1996,58,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip58.html#KatoBZ96,https://doi.org/10.1006/gmip.1996.0002 +Sven Linden,The LIR space partitioning system applied to the Stokes equations.,2015,82,Graphical Models,,db/journals/cvgip/cvgip82.html#LindenWH15,https://doi.org/10.1016/j.gmod.2015.06.003 +Jingjing Deng,A bag of words approach to subject specific 3D human pose interaction classification with random decision forests.,2014,76,Graphical Models,3,db/journals/cvgip/cvgip76.html#DengXD14,https://doi.org/10.1016/j.gmod.2013.10.006 +Dragana Brzakovic,Rule-based multitemplate edge detector.,1991,53,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip53.html#BrzakovicPW91,https://doi.org/10.1016/1049-9652(91)90047-N +Rae Kyoung Lee,On Enhancing the Speed of Splatting Using Both Object- and Image-Space Coherence.,2000,62,Graphical Models,4,db/journals/cvgip/cvgip62.html#LeeI00,https://doi.org/10.1006/gmod.2000.0524 +Jihong Kim,Efficient 2-D Convolution Algorithm with the Single-Data Multiple Kernel Approach.,1995,57,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip57.html#KimK95,https://doi.org/10.1006/gmip.1995.1017 +Ireneusz Defée,Median-based zero-crossing edge detectors for closely spaced edges.,1991,53,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip53.html#DefeeN91,https://doi.org/10.1016/1049-9652(91)90061-N +Min Zhang,The unified discrete surface Ricci flow.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#ZhangGZ0YG14,https://doi.org/10.1016/j.gmod.2014.04.008 +Marco Tarini,3D acquisition of mirroring objects using striped patterns.,2005,67,Graphical Models,4,db/journals/cvgip/cvgip67.html#TariniLGS05,https://doi.org/10.1016/j.gmod.2004.11.002 +Toshiyuki Sakai,Extraction of invariant picture sub-structures by computer.,1972,1,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip1.html#SakaiNM72,https://doi.org/10.1016/S0146-664X(72)80008-X +Amlan Kundu,Texture classification using QMF bank-based subband decomposition.,1992,54,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip54.html#KunduC92,https://doi.org/10.1016/1049-9652(92)90022-P +Peter B. Henderson,Considerations for efficient picture output via lineprinter.,1974,3,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip3.html#HendersonT74,https://doi.org/10.1016/0146-664X(74)90026-4 +Mofei Song,Accumulative categorization: Online 3D shape classification for progressive collections.,2017,89,Graphical Models,,db/journals/cvgip/cvgip89.html#SongSL17,https://doi.org/10.1016/j.gmod.2017.01.001 +Chul E. Kim,On cellular straight line segments.,1982,18,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip18.html#Kim82,https://doi.org/10.1016/0146-664X(82)90005-3 +Feng Wang,A new sketch-based 3D model retrieval approach by using global and local features.,2014,76,Graphical Models,3,db/journals/cvgip/cvgip76.html#WangLT14,https://doi.org/10.1016/j.gmod.2013.11.002 +Hiroshi Aoyama,A piecewise linear approximation method preserving visual feature points of original figures.,1991,53,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip53.html#AoyamaK91,https://doi.org/10.1016/1049-9652(91)90028-I +JingJing Shen,Detailed traffic animation for urban road networks.,2012,74,Graphical Models,5,db/journals/cvgip/cvgip74.html#ShenJ12,https://doi.org/10.1016/j.gmod.2012.04.002 +Hans-Hellmut Nagel,Displacement vectors derived from second order intensity variations in image sequences.,1982,20,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip20.html#Nagel82,https://doi.org/10.1016/0146-664X(82)90089-2 +Siegfried J. Pöppl,Boundary detection in scintigraphic images.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#PopplH82,https://doi.org/10.1016/0146-664X(82)90160-5 +Mehran Moshfeghi,Elastic matching of multimodality medical images.,1991,53,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip53.html#Moshfeghi91,https://doi.org/10.1016/1049-9652(91)90049-P +Friedrich M. Wahl,Block segmentation and text extraction in mixed text/image documents.,1982,20,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip20.html#WahlWC82,https://doi.org/10.1016/0146-664X(82)90059-4 +Hari B. Bidasaria,Defining and rendering of textured objects through the use of exponential functions.,1992,54,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip54.html#Bidasaria92,https://doi.org/10.1016/1049-9652(92)90058-6 +Gokul Varadhan,Accurate Minkowski sum approximation of polyhedral models.,2006,68,Graphical Models,4,db/journals/cvgip/cvgip68.html#VaradhanM06,https://doi.org/10.1016/j.gmod.2005.11.003 +Hyejin Kim,Reconstructing whole-body motions with wrist trajectories.,2013,75,Graphical Models,6,db/journals/cvgip/cvgip75.html#KimL13,https://doi.org/10.1016/j.gmod.2013.08.002 +Frederik Nilsson,Finding the Minimal Set of Maximum Disks for Binary Objects.,1997,59,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip59.html#NilssonD97,https://doi.org/10.1006/gmip.1996.0412 +Yung-Sheng Chen,Compression of Color Image via the Technique of Surface Fitting.,1994,56,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip56.html#ChenYH94,https://doi.org/10.1006/cgip.1994.1024 +Teng Ma,Visible neighborhood graph of point clouds.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#MaLFLW12,https://doi.org/10.1016/j.gmod.2012.04.007 +Jisang Yoo,The Nonlinear Prefiltering and Difference of Estimates Approaches to Edge Detection: Applications of Stack Filters.,1993,55,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip55.html#YooBDC93,https://doi.org/10.1006/cgip.1993.1010 +Doo-Won Lee,Natural Hairstyle Modeling and Animation.,2001,63,Graphical Models,2,db/journals/cvgip/cvgip63.html#LeeK01,https://doi.org/10.1006/gmod.2001.0547 +Cheng-Chi Yu,A global energy optimization framework for 2.1D sketch extraction from monocular images.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#YuLWLF14,https://doi.org/10.1016/j.gmod.2014.03.015 +Y. Kita,Extraction of accurate stomach contours from X-ray images of barium-filled stomachs and its application to detect potential abnormalities.,1991,53,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip53.html#KitaS91,https://doi.org/10.1016/1049-9652(91)90029-J +A. Murat Tekalp,Comparative study of some statistical and set-theoretic methods for image restoration.,1991,53,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip53.html#TekalpT91,https://doi.org/10.1016/1049-9652(91)90054-N +Gabor T. Herman,Two direct methods for reconstructingpictures from their projections: A comparative study.,1972,1,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip1.html#Herman72,https://doi.org/10.1016/S0146-664X(72)80011-X +Ron Goldman 0002,Understanding quaternions.,2011,73,Graphical Models,2,db/journals/cvgip/cvgip73.html#Goldman11,https://doi.org/10.1016/j.gmod.2010.10.004 +David W. Paglieroni,Directional Distance Transforms and Height Field Preprocessing for Efficient Ray Tracing.,1997,59,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip59.html#Paglieroni97,https://doi.org/10.1006/gmip.1997.0434 +Laurent Favreau,Animal gaits from video: Comparative studies.,2006,68,Graphical Models,2,db/journals/cvgip/cvgip68.html#FavreauRDC06,https://doi.org/10.1016/j.gmod.2005.04.002 +Michael E. Hohmeyer,Skinning rational B-spline curves to construct an interpolatory surface.,1991,53,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip53.html#HohmeyerB91,https://doi.org/10.1016/1049-9652(91)90002-2 +Su Liang,A Morphological Approach to Text String Extraction from Regular Periodic Overlapping Text/Background Images.,1994,56,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip56.html#LiangAS94,https://doi.org/10.1006/cgip.1994.1036 +Zohra Z. Manseur,Decomposition methods for convolution operators.,1991,53,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip53.html#ManseurW91,https://doi.org/10.1016/1049-9652(91)90027-H +Ran Zhang,An efficient volumetric method for non-rigid registration.,2015,79,Graphical Models,,db/journals/cvgip/cvgip79.html#ZhangCSTL15,https://doi.org/10.1016/j.gmod.2015.01.003 +John A. Stuller,An algebraic approach to image restoration filter design.,1972,1,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip1.html#Stuller72,https://doi.org/10.1016/S0146-664X(72)80010-8 +Theodosios Pavlidis,Page segmentation and classification.,1992,54,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip54.html#PavlidisZ92,https://doi.org/10.1016/1049-9652(92)90068-9 +Shi-Min Hu,Preface of special issue on computational visual media.,2013,75,Graphical Models,3,db/journals/cvgip/cvgip75.html#HuM13,https://doi.org/10.1016/j.gmod.2013.02.001 +Jakub Flotynski,Customization of 3D content with semantic meta-scenes.,2016,88,Graphical Models,,db/journals/cvgip/cvgip88.html#FlotynskiW16,https://doi.org/10.1016/j.gmod.2016.07.001 +Leonard A. Ferrari,Efficient Algorithms for the Implementation of General B-Splines.,1994,56,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip56.html#FerrariSS94,https://doi.org/10.1006/cgip.1994.1009 +Lin Zhou,Extending Superquadrics with Exponent Functions: Modeling and Reconstruction.,2001,63,Graphical Models,1,db/journals/cvgip/cvgip63.html#ZhouK01,https://doi.org/10.1006/gmod.2000.0529 +Wei Jiang,Skeleton-based intrinsic symmetry detection on point clouds.,2013,75,Graphical Models,4,db/journals/cvgip/cvgip75.html#Jiang0CZ13,https://doi.org/10.1016/j.gmod.2013.03.001 +Linus Källberg,Improved pruning of large data sets for the minimum enclosing ball problem.,2014,76,Graphical Models,6,db/journals/cvgip/cvgip76.html#KallbergL14,https://doi.org/10.1016/j.gmod.2014.06.003 +Eusebio J. Aguilera-Aguilera,Fast computation of optimal polygonal approximations of digital planar closed curves.,2016,84,Graphical Models,,db/journals/cvgip/cvgip84.html#Aguilera-Aguilera16,https://doi.org/10.1016/j.gmod.2016.01.004 +Michael Barton,Stretch-minimising stream surfaces.,2015,79,Graphical Models,,db/journals/cvgip/cvgip79.html#BartonKC15,https://doi.org/10.1016/j.gmod.2015.01.002 +Norberto Ezquerra,Knowledge-Guided Segmentation of 3D Imagery.,1996,58,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip58.html#EzquerraM96,https://doi.org/10.1006/gmip.1996.0043 +Stefanie Wuhrer,Finite element based tracking of deforming surfaces.,2015,77,Graphical Models,,db/journals/cvgip/cvgip77.html#WuhrerLT015,https://doi.org/10.1016/j.gmod.2014.10.002 +Jerry L. Prince,Convex set reconstruction using prior shape information.,1991,53,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip53.html#PrinceW91,https://doi.org/10.1016/1049-9652(91)90026-G +Richard Haberstroh,Line Detection in Noisy and Structured Backgrounds Using Græco-Latin Squares.,1993,55,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip55.html#HaberstrohK93,https://doi.org/10.1006/cgip.1993.1012 +Igor Guskov,Manifold-based approach to semi-regular remeshing.,2007,69,Graphical Models,1,db/journals/cvgip/cvgip69.html#Guskov07,https://doi.org/10.1016/j.gmod.2006.05.001 +Min Ki Park,Multi-scale tensor voting for feature extraction from unstructured point clouds.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#ParkLL12,https://doi.org/10.1016/j.gmod.2012.04.008 +,5th Eurographics Workshop on Rendering.,1994,56,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip56.html#X94, +Satoru Kawai,Topology quasi-preservation by local parallel operations.,1982,20,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip20.html#Kawai82,https://doi.org/10.1016/0146-664X(82)90065-X +Charles A. Harlow,Image analysis and graphs.,1973,2,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip2.html#Harlow73,https://doi.org/10.1016/0146-664X(73)90032-4 +Nils Thürey,Detail-preserving fluid control.,2009,71,Graphical Models,6,db/journals/cvgip/cvgip71.html#ThureyKPR09,https://doi.org/10.1016/j.gmod.2008.12.007 +Vassili A. Kovalev,Multidimensional Co-occurrence Matrices for Object Recognition and Matching.,1996,58,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip58.html#KovalevP96,https://doi.org/10.1006/gmip.1996.0016 +Theodosios Pavlidis,Segmentation of pictures and maps through functional approximation.,1972,1,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip1.html#Pavlidis72,https://doi.org/10.1016/0146-664X(72)90021-4 +Bo Wu 0020,Skeleton-guided 3D shape distance field metamorphosis.,2016,85,Graphical Models,,db/journals/cvgip/cvgip85.html#WuXZXH16,https://doi.org/10.1016/j.gmod.2016.03.003 +Luren Yang,Fast Computation of Three-Dimensional Geometric Moments Using a Discrete Divergence Theorem and a Generalization to Higher Dimensions.,1997,59,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip59.html#YangAT97,https://doi.org/10.1006/gmip.1997.0418 +Takis Sakkalis,Approximating Curves via Alpha Shapes.,1999,61,Graphical Models and Image Processing,3,db/journals/cvgip/cvgip61.html#SakkalisC99,https://doi.org/10.1006/gmip.1999.0496 +Franca Giannini,Special issue: Shape Modeling International 2004.,2006,68,Graphical Models,1,db/journals/cvgip/cvgip68.html#GianniniP06,https://doi.org/10.1016/j.gmod.2005.09.002 +Benoît Le Callennec,Interactive motion deformation with prioritized constraints.,2006,68,Graphical Models,2,db/journals/cvgip/cvgip68.html#CallennecB06,https://doi.org/10.1016/j.gmod.2005.03.001 +Wencheng Wang,Stick textures for image-based rendering.,2006,68,Graphical Models,3,db/journals/cvgip/cvgip68.html#WangLW06,https://doi.org/10.1016/j.gmod.2006.02.002 +Kikuo Fujimura,Shape Reconstruction from Contours Using Isotopic Deformation.,1999,61,Graphical Models and Image Processing,3,db/journals/cvgip/cvgip61.html#FujimuraK99,https://doi.org/10.1006/gmip.1999.0494 +Kuo-Liang Chung,A cost-optimal parallel algorithm for B-spline surface fitting.,1991,53,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip53.html#ChungL91,https://doi.org/10.1016/1049-9652(91)90010-H +Jianhui Nie,An algorithm for the rapid generation of bas-reliefs based on point clouds.,2017,94,Graphical Models,,db/journals/cvgip/cvgip94.html#Nie17,https://doi.org/10.1016/j.gmod.2017.09.002 +Tianshu Wang,Learning kernel-based HMMs for dynamic sequence synthesis.,2003,65,Graphical Models,4,db/journals/cvgip/cvgip65.html#WangZLXS03,https://doi.org/10.1016/S1524-0703(03)00040-7 +Paul L. Rosin,Salience Distance Transforms.,1995,57,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip57.html#RosinW95,https://doi.org/10.1006/gmip.1995.1041 +Wenping Wang,Computing quadric surface intersections based on an analysis of plane cubic curves.,2002,64,Graphical Models,6,db/journals/cvgip/cvgip64.html#WangJG02,https://doi.org/10.1016/S1077-3169(02)00018-7 +Gershon Elber,Solid Modeling Theory and Applications.,2005,67,Graphical Models,5,db/journals/cvgip/cvgip67.html#ElberPB05,https://doi.org/10.1016/j.gmod.2005.02.001 +Jacques-Olivier Lachaud,Continuous Analogs of Digital Boundaries: A Topological Approach to Iso-Surfaces.,2000,62,Graphical Models,3,db/journals/cvgip/cvgip62.html#LachaudM00,https://doi.org/10.1006/gmod.2000.0522 +Kan Guo,Image-guided 3D model labeling via multiview alignment.,2018,96,Graphical Models,,db/journals/cvgip/cvgip96.html#GuoCZZ18,https://doi.org/10.1016/j.gmod.2018.02.001 +Dinesh Manocha,Algorithms for Intersecting Parametric and Algebraic Curves II: Multiple Intersections.,1995,57,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip57.html#ManochaD95,https://doi.org/10.1006/gmip.1995.1010 +Zhenyu Wu,Homogeneity Testing for Unlabeled Data: A Performance Evaluation.,1993,55,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip55.html#Wu93,https://doi.org/10.1006/cgip.1993.1028 +Jim X. Chen,Toward Interactive-Rate Simulation of Fluids with Moving Obstacles Using Navier-Stokes Equations.,1995,57,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip57.html#ChenL95,https://doi.org/10.1006/gmip.1995.1012 +Jean-Luc Starck,Multiresolution Support Applied to Image Filtering and Restoration.,1995,57,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip57.html#StarckMB95,https://doi.org/10.1006/gmip.1995.1036 +Arcangelo Distante,A two-pass filling algorithm for raster graphics.,1982,20,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip20.html#DistanteV82,https://doi.org/10.1016/0146-664X(82)90087-9 +Jeffrey J. Rodríguez,High-Resolution Histogram Modification of Color Images.,1995,57,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip57.html#RodriguezY95,https://doi.org/10.1006/gmip.1995.1037 +Yang Wang 0001,Estimation of multiple directional light sources for synthesis of augmented reality images.,2003,65,Graphical Models,4,db/journals/cvgip/cvgip65.html#WangS03,https://doi.org/10.1016/S1524-0703(03)00043-2 +Irene Gargantini,Linear octtres for fast processing of three-dimensional objects.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Gargantini82a,https://doi.org/10.1016/0146-664X(82)90140-X +Shi-Min Hu,Special issue on Pacific Graphics 2002.,2003,65,Graphical Models,4,db/journals/cvgip/cvgip65.html#HuCS03,https://doi.org/10.1016/S1524-0703(03)00058-4 +Michael J. Laszlo,Fast generation and display of iso-surface wireframes.,1992,54,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip54.html#Laszlo92,https://doi.org/10.1016/1049-9652(92)90067-8 +Yeuhi Abe,Momentum-based parameterization of dynamic character motion.,2006,68,Graphical Models,2,db/journals/cvgip/cvgip68.html#AbeLP06,https://doi.org/10.1016/j.gmod.2005.03.006 +Tingbo Hou,"Corrigendum to ""Continuous and discrete Mexican hat wavelet transforms on manifolds"" [Graphical Models 74 (2012) 221-232].",2012,74,Graphical Models,6,db/journals/cvgip/cvgip74.html#HouQ12a,https://doi.org/10.1016/j.gmod.2012.07.001 +Roland T. Chin,Quantitative evaluationof some edge-preserving noisse-smoothing techniques.,1982,19,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip19.html#ChinY82,https://doi.org/10.1016/0146-664X(82)90031-4 +Kai Tang,On Computing Contact Configurations of a Curved Chain.,1999,61,Graphical Models and Image Processing,6,db/journals/cvgip/cvgip61.html#Tang99,https://doi.org/10.1006/gmip.1999.0507 +Justin Jang,OCTOR: Subset selection in recursive pattern hierarchies.,2009,71,Graphical Models,2,db/journals/cvgip/cvgip71.html#JangR09,https://doi.org/10.1016/j.gmod.2008.12.001 +Ronald Lumia,A new three dimensional connected components algorithm.,1982,20,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip20.html#Lumia82,https://doi.org/10.1016/0146-664X(82)90080-6 +Rida T. Farouki,Exact rotation-minimizing frames for spatial Pythagorean-hodograph curves.,2002,64,Graphical Models,6,db/journals/cvgip/cvgip64.html#Farouki02,https://doi.org/10.1016/S1524-0703(03)00002-X +Nikolaos Sarris,Building Three Dimensional Head Models.,2001,63,Graphical Models,5,db/journals/cvgip/cvgip63.html#SarrisGS01,https://doi.org/10.1006/gmod.2001.0563 +Zishun Liu,Upright orientation of 3D shapes with Convolutional Networks.,2016,85,Graphical Models,,db/journals/cvgip/cvgip85.html#LiuZL16,https://doi.org/10.1016/j.gmod.2016.03.001 +Paul Dierckx,Algorithms for smoothing data with periodic and parametric splines.,1982,20,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip20.html#Dierckx82,https://doi.org/10.1016/0146-664X(82)90043-0 +Jens Gravesen,The metric of colour space.,2015,82,Graphical Models,,db/journals/cvgip/cvgip82.html#Gravesen15,https://doi.org/10.1016/j.gmod.2015.06.005 +Dragana Carevic,Region-Based Coding of Color Images Using Karhunen-Loeve Transform.,1997,59,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip59.html#CarevicC97,https://doi.org/10.1006/gmip.1996.0402 +D. J. Langridge,Curve encoding and the detection of discontinuities.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Langridge82a,https://doi.org/10.1016/0146-664X(82)90137-X +Yuefeng Zhang,Adaptive Ordered Dither.,1997,59,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip59.html#Zhang97,https://doi.org/10.1006/gmip.1996.0414 +Kikuo Fujimura,Visibility Computation on Reconfigurable Meshes.,1997,59,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip59.html#Fujimura97,https://doi.org/10.1006/gmip.1997.0440 +Blake Hannaford,Resolution-First Scanning of Multidimensional Spaces.,1993,55,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip55.html#Hannaford93,https://doi.org/10.1006/cgip.1993.1027 +Troy F. Alderson,Multiresolution on spherical curves.,2016,86,Graphical Models,,db/journals/cvgip/cvgip86.html#AldersonMS16,https://doi.org/10.1016/j.gmod.2016.05.002 +Mohamed Kamel,Extraction of Binary Character/Graphics Images from Grayscale Document Images.,1993,55,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip55.html#KamelZ93,https://doi.org/10.1006/cgip.1993.1015 +Yutaka Ohtake,A composite approach to meshing scattered data.,2006,68,Graphical Models,3,db/journals/cvgip/cvgip68.html#OhtakeBS06a,https://doi.org/10.1016/j.gmod.2006.03.002 +A. Ikonomopoulos,An approach to edge detection based on the direction of edge elements.,1982,19,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip19.html#Ikonomopoulos82a,https://doi.org/10.1016/0146-664X(82)90107-1 +Andreas Voigtmann,A Hierarchical Model for Multiresolution Surface Reconstruction.,1997,59,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip59.html#VoigtmannBH97,https://doi.org/10.1006/gmip.1997.0436 +Martin Fuhrer,Modeling hairy plants.,2006,68,Graphical Models,4,db/journals/cvgip/cvgip68.html#FuhrerJP06,https://doi.org/10.1016/j.gmod.2005.11.002 +O. Stahlhut,Extending natural textures with multi-scale synthesis.,2005,67,Graphical Models,6,db/journals/cvgip/cvgip67.html#Stahlhut05,https://doi.org/10.1016/j.gmod.2005.01.006 +Shoichi Tsuchie,Surface mesh denoising with normal tensor framework.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#TsuchieH12,https://doi.org/10.1016/j.gmod.2012.03.010 +Theodosios Pavlidis,Techniques for optimal compaction of pictures and maps.,1974,3,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip3.html#Pavlidis74,https://doi.org/10.1016/0146-664X(74)90015-X +W. Richard Stevens,Software pipelines in image processing.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#StevensH82a,https://doi.org/10.1016/0146-664X(82)90164-2 +Richard Cole 0001,On the Detection of Robust Curves.,1994,56,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip56.html#ColeV94,https://doi.org/10.1006/cgip.1994.1018 +William Stallings,Recognition of printed chinese characters by automatic pattern analysis.,1972,1,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip1.html#Stallings72,https://doi.org/10.1016/S0146-664X(72)80006-6 +Xiuping Liu,Generating sparse self-supporting wireframe models for 3D printing using mesh simplification.,2018,98,Graphical Models,,db/journals/cvgip/cvgip98.html#LiuLWWYW18,https://doi.org/10.1016/j.gmod.2018.05.001 +Berthold K. P. Horn,Determining lightness from an image.,1974,3,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip3.html#Horn74,https://doi.org/10.1016/0146-664X(74)90022-7 +Pierre Alliez,Preface.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#AlliezHZ14,https://doi.org/10.1016/j.gmod.2014.06.002 +Yanjun Zhong,Computing medial axis transformations of 2D point clouds.,2018,97,Graphical Models,,db/journals/cvgip/cvgip97.html#ZhongC18,https://doi.org/10.1016/j.gmod.2018.03.004 +Georg Heygster,Rank filters in digital image processing.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Heygster82,https://doi.org/10.1016/0146-664X(82)90159-9 +Daniel Cohen-Or,Fundamentals of Surface Voxelization.,1995,57,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip57.html#Cohen-OrK95,https://doi.org/10.1006/gmip.1995.1039 +Yong-Kui Liu,"Comment on ""Generation of Noise in Binary Images"".",1993,55,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip55.html#Liu93,https://doi.org/10.1006/cgip.1993.1011 +Kenichi Arakawa,Fractal Modeling of Natural Terrain: Analysis and Surface Reconstruction with Range Data.,1996,58,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip58.html#ArakawaK96,https://doi.org/10.1006/gmip.1996.0035 +Nur Arad,Image Warping by Radial Basis Functions: Application to Facial Expressions.,1994,56,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip56.html#AradDRY94,https://doi.org/10.1006/cgip.1994.1015 +Larry F. Palazzi,Counting and Reporting Red/Blue Segment Intersections.,1994,56,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip56.html#PalazziS94,https://doi.org/10.1006/cgip.1994.1027 +Tamar Peli,A study of edge detection algorithms.,1982,20,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip20.html#PeliM82,https://doi.org/10.1016/0146-664X(82)90070-3 +A. N. Rajagopalan,Locating Human Faces in a Cluttered Scene.,2000,62,Graphical Models,5,db/journals/cvgip/cvgip62.html#RajagopalanKKMPDPC00,https://doi.org/10.1006/gmod.1999.0511 +Victoria Hernández-Mederos,Generalization of the incenter subdivision scheme.,2013,75,Graphical Models,2,db/journals/cvgip/cvgip75.html#Hernandez-MederosEI13,https://doi.org/10.1016/j.gmod.2012.12.001 +Rémy Malgouyres,Topology Preservation Within Digital Surfaces.,2000,62,Graphical Models,2,db/journals/cvgip/cvgip62.html#MalgouyresL00,https://doi.org/10.1006/gmod.1999.0517 +Binay K. Bhattacharya,An optimal algorithm to translate a convex polyhedron through a two-dimensional convex window.,1991,53,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip53.html#Bhattacharya91,https://doi.org/10.1016/1049-9652(91)90048-O +Guoling Shen,Boundary Representation Model Rectification.,2001,63,Graphical Models,3,db/journals/cvgip/cvgip63.html#ShenSP01,https://doi.org/10.1006/gmod.2001.0543 +Ming Li,Normalized quadtrees with respect to translations.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#LiGJ82a,https://doi.org/10.1016/0146-664X(82)90150-2 +Chen Changsong,Blending Quadric Surfaces with Piecewise Algebraic Surfaces.,2001,63,Graphical Models,4,db/journals/cvgip/cvgip63.html#ChangsongCF01,https://doi.org/10.1006/gmod.2001.0552 +Hongmei Kang,A new basis for PHT-splines.,2015,82,Graphical Models,,db/journals/cvgip/cvgip82.html#KangXCD15,https://doi.org/10.1016/j.gmod.2015.06.011 +Leif Kobbelt,Special issue on SPM 05.,2006,68,Graphical Models,3,db/journals/cvgip/cvgip68.html#KobbeltSMFDHSBMO06,https://doi.org/10.1016/j.gmod.2006.03.003 +Frederick H. Raab,Binary data compression by linear transformation.,1973,2,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip2.html#Raab73,https://doi.org/10.1016/0146-664X(73)90029-4 +Nikhil Gagvani,Animating Volumetric Models.,2001,63,Graphical Models,6,db/journals/cvgip/cvgip63.html#GagvaniS01,https://doi.org/10.1006/gmod.2001.0557 +Ron Goldman 0002,Formulas and algorithms for quantum differentiation of quantum Bernstein bases and quantum Bézier curves based on quantum blossoming.,2012,74,Graphical Models,6,db/journals/cvgip/cvgip74.html#0002S12,https://doi.org/10.1016/j.gmod.2012.04.004 +Lidija Comic,Dimension-independent simplification and refinement of Morse complexes.,2011,73,Graphical Models,5,db/journals/cvgip/cvgip73.html#ComicF11,https://doi.org/10.1016/j.gmod.2011.05.001 +Ho Chao Huang,Adaptive Early Jump-Out Technique for Fast Motion Estimation in Video Coding.,1997,59,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip59.html#HuangH97,https://doi.org/10.1006/gmip.1997.0449 +Zhanheng Gao,Feature-preserving surface mesh smoothing via suboptimal Delaunay triangulation.,2013,75,Graphical Models,1,db/journals/cvgip/cvgip75.html#GaoYH13,https://doi.org/10.1016/j.gmod.2012.10.007 +F. R. Hansen,Image segmentation using simple Markov field models.,1982,20,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip20.html#HansenE82,https://doi.org/10.1016/0146-664X(82)90040-5 +Robert L. Haar,Sketching: Estimating object positions from relational descriptions.,1982,19,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip19.html#Haar82a,https://doi.org/10.1016/0146-664X(82)90010-7 +Charles W. Therrien,An estimation-theoric approach to terrain image segmentation.,1982,19,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip19.html#Therrien82,https://doi.org/10.1016/0146-664X(82)90025-9 +Tsz-Ho Kwok,Constructing common base domain by cues from Voronoi diagram.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#KwokZW12,https://doi.org/10.1016/j.gmod.2012.03.012 +Victor B. Zordan,Breathe easy: Model and control of human respiration for computer animation.,2006,68,Graphical Models,2,db/journals/cvgip/cvgip68.html#ZordanCCD06,https://doi.org/10.1016/j.gmod.2005.03.005 +Yunxin Zhao,Parameter estimation and restoration of noisy images using Gibbs distributions in hidden Markov models.,1992,54,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip54.html#ZhaoZAA92,https://doi.org/10.1016/1049-9652(92)90050-8 +I. K. Sethi,Edge detection using charge analogy.,1982,20,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip20.html#Sethi82,https://doi.org/10.1016/0146-664X(82)90044-2 +Eli Saber,Automatic Image Annotation Using Adaptive Color Classification.,1996,58,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip58.html#SaberTEK96,https://doi.org/10.1006/gmip.1996.0010 +Yao Jin,Content-aware texture mapping.,2014,76,Graphical Models,3,db/journals/cvgip/cvgip76.html#JinSSHT14,https://doi.org/10.1016/j.gmod.2013.11.001 +Van-Toan Cao,A two-stage approach to align two surfaces of deformable objects.,2015,82,Graphical Models,,db/journals/cvgip/cvgip82.html#CaoTL15,https://doi.org/10.1016/j.gmod.2015.09.002 +Minho Kim,GPU isosurface raycasting of FCC datasets.,2013,75,Graphical Models,2,db/journals/cvgip/cvgip75.html#Kim13,https://doi.org/10.1016/j.gmod.2012.11.001 +Hendrik P. A. Lensch,A Silhouette-Based Algorithm for Texture Registration and Stitching.,2001,63,Graphical Models,4,db/journals/cvgip/cvgip63.html#LenschHS01,https://doi.org/10.1006/gmod.2001.0554 +Hyeong-Seok Ko,Special Issue: PG2004.,2006,68,Graphical Models,4,db/journals/cvgip/cvgip68.html#KoCTW06,https://doi.org/10.1016/j.gmod.2006.01.001 +Hendrik James Antonisse,Image segmentation in pyramids.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Antonisse82,https://doi.org/10.1016/0146-664X(82)90139-3 +Ron Kimmel,Intrinsic Scale Space for Images on Surfaces: The Geodesic Curvature Flow.,1997,59,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip59.html#Kimmel97,https://doi.org/10.1006/gmip.1997.0442 +Amar Mitiche,Contour registration by shape-specific points for shape matching.,1982,19,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip19.html#MiticheA82,https://doi.org/10.1016/0146-664X(82)90030-2 +Xiaoguang Han,A fast propagation scheme for approximate geodesic paths.,2017,91,Graphical Models,,db/journals/cvgip/cvgip91.html#HanYYZ17,https://doi.org/10.1016/j.gmod.2017.02.004 +John F. O'Callaghan,Computing the perceptual boundaries of dot patterns.,1974,3,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip3.html#OCallaghan74,https://doi.org/10.1016/S0146-664X(74)80004-3 +David Eriksson,Fast exact shortest distance queries for massive point clouds.,2016,84,Graphical Models,,db/journals/cvgip/cvgip84.html#ErikssonS16,https://doi.org/10.1016/j.gmod.2016.02.002 +Guo-Xin Zhang,Sketch guided solid texturing.,2011,73,Graphical Models,3,db/journals/cvgip/cvgip73.html#ZhangDLNH11,https://doi.org/10.1016/j.gmod.2010.10.006 +Alberto Bartesaghi,Three-dimensional shape rendering from multiple images.,2005,67,Graphical Models,4,db/journals/cvgip/cvgip67.html#BartesaghiSMG05,https://doi.org/10.1016/j.gmod.2005.02.002 +Muthu Kumaran,A Dynamic Window-Based Runlength Coding Algorithm Applied to Gray-Level Images.,1995,57,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip57.html#KumaranU95,https://doi.org/10.1006/gmip.1995.1025 +R. Paquin,A spatio-temporal gradient method for estimating the displacement field in time-varying imagery.,1982,20,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip20.html#PaquinD82,https://doi.org/10.1016/0146-664X(82)90048-X +P. W. Hawkes,Electron image processing: 1978-1980.,1982,18,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip18.html#Hawkes82,https://doi.org/10.1016/0146-664X(82)90099-5 +Jonathan D. Michel,Unified 3D Models for Multisensor Image Synthesis.,1995,57,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip57.html#MichelN95,https://doi.org/10.1006/gmip.1995.1026 +Zichun Zhong,Anisotropic surface meshing with conformal embedding.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#ZhongSJG14,https://doi.org/10.1016/j.gmod.2014.03.011 +Paul M. Margosian,Streak removal method for CT based digital X-ray images.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Margosian82,https://doi.org/10.1016/0146-664X(82)90115-0 +Xianfeng Gu,Manifold splines.,2006,68,Graphical Models,3,db/journals/cvgip/cvgip68.html#GuHQ06,https://doi.org/10.1016/j.gmod.2006.03.004 +Stephen P. Smith,Chord distributions for shape matching.,1982,20,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip20.html#SmithJ82,https://doi.org/10.1016/0146-664X(82)90084-3 +Alan Brunton,A low-dimensional representation for robust partial isometric correspondences computation.,2014,76,Graphical Models,2,db/journals/cvgip/cvgip76.html#BruntonWWSW14,https://doi.org/10.1016/j.gmod.2013.11.003 +W. O. Saxton,A new computer language for electron image processing.,1974,3,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip3.html#Saxton74,https://doi.org/10.1016/0146-664X(74)90021-5 +Xin Liu,Shape from silhouettes based on a centripetal pentahedron model.,2008,70,Graphical Models,6,db/journals/cvgip/cvgip70.html#LiuYCG08,https://doi.org/10.1016/j.gmod.2006.06.003 +Xuejie Qin,Estimating Parameters for Procedural Texturing by Genetic Algorithms.,2002,64,Graphical Models,1,db/journals/cvgip/cvgip64.html#QinY02,https://doi.org/10.1006/gmod.2002.0565 +Brian A. Barsky,Elimination of artifacts due to occlusion and discretization problems in image space blurring techniques.,2005,67,Graphical Models,6,db/journals/cvgip/cvgip67.html#BarskyTCH05,https://doi.org/10.1016/j.gmod.2005.01.009 +Fernand S. Cohen,Maximum likelihood unsupervised textured image segmentation.,1992,54,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip54.html#CohenF92,https://doi.org/10.1016/1049-9652(92)90054-2 +Zi-Cai Li,Harmonic models of shape transformations in digital images and patterns.,1992,54,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip54.html#LiSBG92,https://doi.org/10.1016/1049-9652(92)90051-X +Nick Foster,Realistic Animation of Liquids.,1996,58,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip58.html#FosterM96,https://doi.org/10.1006/gmip.1996.0039 +Dominique Astruc,The Cone of Vision: A New Technique for Interactive Volumetric Display.,1996,58,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip58.html#AstrucAV96,https://doi.org/10.1006/gmip.1996.0031 +Eng-Wee Chionh,On the Existence and the Coefficients of the Implicit Equation of Rational Surfaces.,1994,56,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip56.html#ChionhG94,https://doi.org/10.1006/cgip.1994.1003 +Yehuda E. Kalay,Determining the spatial containment of a point in general polyhedra.,1982,19,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip19.html#Kalay82a,https://doi.org/10.1016/0146-664X(82)90019-3 +Jean-Pierre Crettez,A model for cell receptive fields in the visual striate cortex.,1982,20,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip20.html#CrettezS82,https://doi.org/10.1016/0146-664X(82)90055-7 +Irving Cruz-Matías,A new lossless orthogonal simplification method for 3D objects based on bounding structures.,2014,76,Graphical Models,4,db/journals/cvgip/cvgip76.html#Cruz-MatiasA14,https://doi.org/10.1016/j.gmod.2014.01.002 +Azeddine Beghdadi,Entropic Thresholding Using a Block Source Model.,1995,57,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip57.html#BeghdadiNL95,https://doi.org/10.1006/gmip.1995.1019 +Theo Pavlidis,An asynchronous thinning algorithm.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Pavlidis82a,https://doi.org/10.1016/0146-664X(82)90145-9 +Minfeng Xu,Building binary orientation octree for an arbitrary scattered point set.,2016,85,Graphical Models,,db/journals/cvgip/cvgip85.html#XuTW16,https://doi.org/10.1016/j.gmod.2016.03.002 +Sung Woo Choi,Hyperbolic Hausdorff Distance for Medial Axis Transform.,2001,63,Graphical Models,5,db/journals/cvgip/cvgip63.html#ChoiS01,https://doi.org/10.1006/gmod.2001.0556 +Gill Barequet,Optimizing a Strip Separating Two Polygons.,1998,60,Graphical Models and Image Processing,3,db/journals/cvgip/cvgip60.html#BarequetW98,https://doi.org/10.1006/gmip.1998.0470 +Viorel Mihalef,Interaction of two-phase flow with animated models.,2008,70,Graphical Models,3,db/journals/cvgip/cvgip70.html#MihalefKSMH08,https://doi.org/10.1016/j.gmod.2007.10.001 +Sen Wang,Robust curve skeleton extraction for vascular structures.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#WangWWM12,https://doi.org/10.1016/j.gmod.2012.03.008 +Shigeo Takahashi,Topological volume skeletonization and its application to transfer function design.,2004,66,Graphical Models,1,db/journals/cvgip/cvgip66.html#TakahashiTF04,https://doi.org/10.1016/10.1016/j.gmod.2003.08.002 +Chi-Kin Leung,Maximum Segmented Image Information Thresholding.,1998,60,Graphical Models and Image Processing,1,db/journals/cvgip/cvgip60.html#LeungL98,https://doi.org/10.1006/gmip.1997.0455 +Ruzena Bajcsy,Computer identification of visual surfaces.,1973,2,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip2.html#Bajcsy73,https://doi.org/10.1016/0146-664X(73)90023-3 +Yu-Wei Zhang,Real-time bas-relief generation from a 3D mesh.,2013,75,Graphical Models,1,db/journals/cvgip/cvgip75.html#ZhangZZY13,https://doi.org/10.1016/j.gmod.2012.10.003 +Eric Ferley,Resolution Adaptive Volume Sculpting.,2001,63,Graphical Models,6,db/journals/cvgip/cvgip63.html#FerleyCG01,https://doi.org/10.1006/gmod.2001.0558 +Chunxue Wang,As-rigid-as-possible spherical parametrization.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#WangLL14,https://doi.org/10.1016/j.gmod.2014.03.016 +F. Holdermann,Preprocessing of gray-scale pictures.,1972,1,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip1.html#HoldermannK72,https://doi.org/10.1016/S0146-664X(72)80007-8 +Arcangelo Distante,A two-pass filling algorithm for raster graphics.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#DistanteV82a,https://doi.org/10.1016/0146-664X(82)90161-7 +Azriel Rosenfeld,Digital surfaces.,1991,53,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip53.html#RosenfeldKW91,https://doi.org/10.1016/1049-9652(91)90034-H +Kevin T. McDonnell,DigitalSculpture: a subdivision-based approach to interactive implicit surface modeling.,2005,67,Graphical Models,4,db/journals/cvgip/cvgip67.html#McDonnellCQ05,https://doi.org/10.1016/j.gmod.2004.11.001 +Guillaume Picinbono,Non-linear anisotropic elasticity for real-time surgery simulation.,2003,65,Graphical Models,5,db/journals/cvgip/cvgip65.html#PicinbonoDA03,https://doi.org/10.1016/S1524-0703(03)00045-6 +Eric Andres,Discrete Analytical Hyperplanes.,1997,59,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip59.html#AndresAS97,https://doi.org/10.1006/gmip.1997.0427 +Emanuel Levitan,Image-Modeling Gibbs Priors.,1995,57,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip57.html#LevitanCH95,https://doi.org/10.1006/gmip.1995.1013 +Yanlin Weng,Real-time facial animation on mobile devices.,2014,76,Graphical Models,3,db/journals/cvgip/cvgip76.html#WengCHZ14,https://doi.org/10.1016/j.gmod.2013.10.002 +H. Y. Fend,"Finding ""Vertices"" in a picture"".",1973,2,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip2.html#FendP73,https://doi.org/10.1016/0146-664X(73)90022-1 +Michela Spagnuolo,SMI 2008 Special Issue.,2009,71,Graphical Models,2,db/journals/cvgip/cvgip71.html#SpagnuoloCG09,https://doi.org/10.1016/j.gmod.2009.03.001 +M. L. V. Pitteway,"Integer Circles, Etc. - some further thoughts.",1974,3,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip3.html#Pitteway74,https://doi.org/10.1016/0146-664X(74)90020-3 +Ireneusz Tobor,Reconstructing multi-scale variational partition of unity implicit surfaces with attributes.,2006,68,Graphical Models,1,db/journals/cvgip/cvgip68.html#ToborRS06,https://doi.org/10.1016/j.gmod.2005.09.003 +Hsien-Che Lee,Using the FFT to determine digital straight line chain codes.,1982,18,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip18.html#LeeF82,https://doi.org/10.1016/0146-664X(82)90004-1 +Aviv Segall,Line accessibility of free form surfaces.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#SegallMKE14,https://doi.org/10.1016/j.gmod.2014.03.014 +Takashi Matsuyama,A structural analyzer for regularly arranged textures.,1982,18,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip18.html#MatsuyamaSN82,https://doi.org/10.1016/0146-664X(82)90035-1 +Robert Laganière,Visual reconstruction of ground plane obstacles in a sparse view robot environment.,2006,68,Graphical Models,3,db/journals/cvgip/cvgip68.html#LaganiereHM06,https://doi.org/10.1016/j.gmod.2006.02.001 +Alexander Greß,Efficient representation and extraction of 2-manifold isosurfaces using kd-trees.,2004,66,Graphical Models,6,db/journals/cvgip/cvgip66.html#GressK04,https://doi.org/10.1016/j.gmod.2004.06.010 +Geoffrey Irving,Tetrahedral and hexahedral invertible finite elements.,2006,68,Graphical Models,2,db/journals/cvgip/cvgip68.html#IrvingTF06,https://doi.org/10.1016/j.gmod.2005.03.007 +Kokichi Sugihara,Approximation of Generalized Voronoi Diagrams by Ordinary Voronoi Diagrams.,1993,55,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip55.html#Sugihara93,https://doi.org/10.1006/cgip.1993.1039 +Punam K. Saha,Local Topological Parameters in a Tetrahedral Representation.,1998,60,Graphical Models and Image Processing,6,db/journals/cvgip/cvgip60.html#SahaMR98,https://doi.org/10.1006/gmip.1998.0481 +Michael L. Baird,Recognizing Objects by Rules of Inference on Sequentially Thresholded Gray-Level Pictures.,1974,3,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip3.html#BairdK74,https://doi.org/10.1016/0146-664X(74)90007-0 +Igor S. Pandzic,Facial motion cloning.,2003,65,Graphical Models,6,db/journals/cvgip/cvgip65.html#Pandzic03,https://doi.org/10.1016/j.gmod.2003.07.002 +Ralph M. Ford,Image Models for 2-D Flow Visualization and Compression.,1994,56,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip56.html#FordST94,https://doi.org/10.1006/cgip.1994.1007 +Christophe Pradal,PlantGL: A Python-based geometric library for 3D plant modelling at different scales.,2009,71,Graphical Models,1,db/journals/cvgip/cvgip71.html#PradalBNCG09,https://doi.org/10.1016/j.gmod.2008.10.001 +,CSG 96: Set-Theoretic Solid Modelling: Techniques and Applications.,1995,57,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip57.html#X95,https://doi.org/10.1006/gmip.1995.1031 +José Pedro Aguerre,Computing urban radiation: A sparse matrix approach.,2017,91,Graphical Models,,db/journals/cvgip/cvgip91.html#AguerreFBB17,https://doi.org/10.1016/j.gmod.2017.05.002 +Hanoch Ur,Improved resolution from subpixel shifted pictures.,1992,54,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip54.html#UrG92,https://doi.org/10.1016/1049-9652(92)90065-6 +Peyman Milanfar,Reconstructing Binary Polygonal Objects from Projections: A Statistical View.,1994,56,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip56.html#MilanfarKW94,https://doi.org/10.1006/cgip.1994.1034 +Changgu Kang,Scene reconstruction and analysis from motion.,2017,94,Graphical Models,,db/journals/cvgip/cvgip94.html#KangL17,https://doi.org/10.1016/j.gmod.2017.10.002 +Yan Wen,A model synthesis method based on single building facade.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#WenZWSS14,https://doi.org/10.1016/j.gmod.2014.03.018 +William Clement Karl,Reconstructing Ellipsoids from Projections.,1994,56,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip56.html#KarlVW94,https://doi.org/10.1006/cgip.1994.1012 +Dao Thi Phuong Quynh,An intrinsic algorithm for computing geodesic distance fields on triangle meshes with holes.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#QuynhHXC12,https://doi.org/10.1016/j.gmod.2012.04.009 +Wayne Niblack,Generating skeletons and centerlines from the distance transform.,1992,54,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip54.html#NiblackGC92,https://doi.org/10.1016/1049-9652(92)90026-T +Jonathan Mizrahi,Minkowski sum computation of B-spline surfaces.,2017,91,Graphical Models,,db/journals/cvgip/cvgip91.html#MizrahiKHKE17,https://doi.org/10.1016/j.gmod.2017.02.003 +Shankar Krishnan,Partitioning Trimmed Spline Surfaces into NonSelf-Occluding Regions for Visibility Computation.,2000,62,Graphical Models,4,db/journals/cvgip/cvgip62.html#KrishnanM00,https://doi.org/10.1006/gmod.2000.0526 +Andrew Edie Johnson,Control of Polygonal Mesh Resolution for 3-D Computer Vision.,1998,60,Graphical Models and Image Processing,4,db/journals/cvgip/cvgip60.html#JohnsonH98,https://doi.org/10.1006/gmip.1998.0474 +L. Gibson,Vectorization of raster images using hierarchcial methods.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#GibsonL82a,https://doi.org/10.1016/0146-664X(82)90158-7 +Qian-Yi Zhou,Complete residential urban area reconstruction from dense aerial LiDAR point clouds.,2013,75,Graphical Models,3,db/journals/cvgip/cvgip75.html#ZhouN13,https://doi.org/10.1016/j.gmod.2012.09.001 +Jianhui Nie,Extracting feature lines from point clouds based on smooth shrink and iterative thinning.,2016,84,Graphical Models,,db/journals/cvgip/cvgip84.html#Nie16,https://doi.org/10.1016/j.gmod.2016.04.001 +Baoquan Chen,3D Volume Rotation Using Shear Transformations.,2000,62,Graphical Models,4,db/journals/cvgip/cvgip62.html#ChenK00,https://doi.org/10.1006/gmod.2000.0525 +Yucel Altunbasak,Region-Based Parametric Motion Segmentation Using Color Information.,1998,60,Graphical Models and Image Processing,1,db/journals/cvgip/cvgip60.html#AltunbasakET98,https://doi.org/10.1006/gmip.1997.0453 +Carmen Olga Acuna,Texture modeling using Gibbs distributions.,1992,54,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip54.html#Acuna92,https://doi.org/10.1016/1049-9652(92)90052-Y +Candemir Toklu,Tracking Motion and Intensity Variations Using Hierarchical 2-D Mesh Modeling for Synthetic Object Transfiguration.,1996,58,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip58.html#TokluEST96,https://doi.org/10.1006/gmip.1996.0046 +Rocco Furferi,From 2D to 2.5D i.e. from painting to tactile model.,2014,76,Graphical Models,6,db/journals/cvgip/cvgip76.html#FurferiGVPVC14,https://doi.org/10.1016/j.gmod.2014.10.001 +Nikos Papamarkos,A New Approach for Multilevel Threshold Selection.,1994,56,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip56.html#PapamarkosG94,https://doi.org/10.1006/cgip.1994.1033 +Gabor T. Herman,A topological proof of a surface tracking algorithm.,1982,19,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip19.html#Herman82,https://doi.org/10.1016/0146-664X(82)90028-4 +Dorota Kozinska,Multidimensional Alignment Using the Euclidean Distance Transform.,1997,59,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip59.html#KozinskaTNO97,https://doi.org/10.1006/gmip.1997.0447 +Evan Shellshear,PDQ: Parallel Distance Queries for deformable meshes.,2013,75,Graphical Models,2,db/journals/cvgip/cvgip75.html#ShellshearBA13,https://doi.org/10.1016/j.gmod.2012.12.002 +Sun-Young Lee,Temporally coherent video matting.,2010,72,Graphical Models,3,db/journals/cvgip/cvgip72.html#LeeYL10,https://doi.org/10.1016/j.gmod.2010.03.001 +Carlo Arcelli,Parallel shrinking in three dimensions.,1972,1,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip1.html#ArcelliL72,https://doi.org/10.1016/S0146-664X(72)80004-2 +Ken D. Sauer,Bayesian Block-Wise Segmentation of Interframe Differences in Video Sequences.,1993,55,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip55.html#SauerJ93,https://doi.org/10.1006/cgip.1993.1009 +,Pacific Graphics 2003.,2004,66,Graphical Models,6,db/journals/cvgip/cvgip66.html#X04,https://doi.org/10.1016/j.gmod.2004.07.002 +M. Imme,A noise peak elimination filter.,1991,53,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip53.html#Imme91,https://doi.org/10.1016/1049-9652(91)90062-O +Nelson Max,Unified sun and sky illumination for shadows under trees.,1991,53,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip53.html#Max91,https://doi.org/10.1016/1049-9652(91)90044-K +István Kovács,Applying geometric constraints for perfecting CAD models in reverse engineering.,2015,82,Graphical Models,,db/journals/cvgip/cvgip82.html#KovacsVS15,https://doi.org/10.1016/j.gmod.2015.06.002 +Hanan Samet,Neighbor finding techniques for images represented by quadtrees.,1982,18,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip18.html#Samet82,https://doi.org/10.1016/0146-664X(82)90098-3 +Thomas W. Sederberg,Rational-Ruled Surfaces: Implicitization and Section Curves.,1995,57,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip57.html#SederbergS95,https://doi.org/10.1006/gmip.1995.1029 +Nina Amenta,The Crust and the beta-Skeleton: Combinatorial Curve Reconstruction.,1998,60,Graphical Models and Image Processing,2,db/journals/cvgip/cvgip60.html#AmentaBE98,https://doi.org/10.1006/gmip.1998.0465 +Sílvio César Lizana Terra,A performance-based technique for timing keyframe animations.,2007,69,Graphical Models,2,db/journals/cvgip/cvgip69.html#TerraM07,https://doi.org/10.1016/j.gmod.2006.09.002 +Andrea Baraldi,An Alternative Form of the Lee Filter for Speckle Suppression in SAR Images.,1995,57,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip57.html#BaraldiP95,https://doi.org/10.1006/gmip.1995.1008 +Kestutis Karciauskas,Improved shape for multi-surface blends.,2015,82,Graphical Models,,db/journals/cvgip/cvgip82.html#KarciauskasP15a,https://doi.org/10.1016/j.gmod.2015.06.006 +Min Tang 0001,MCCD: Multi-core collision detection between deformable models using front-based decomposition.,2010,72,Graphical Models,2,db/journals/cvgip/cvgip72.html#TangMT10,https://doi.org/10.1016/j.gmod.2010.01.001 +Hui Li,Multisensor Image Fusion Using the Wavelet Transform.,1995,57,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip57.html#LiMM95,https://doi.org/10.1006/gmip.1995.1022 +Yoshisuke Kurozumi,Polygonal approximation by the minimax method.,1982,19,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip19.html#KurozumiD82,https://doi.org/10.1016/0146-664X(82)90011-9 +Jie Guo 0001,A retroreflective BRDF model based on prismatic sheeting and microfacet theory.,2018,96,Graphical Models,,db/journals/cvgip/cvgip96.html#GuoGP18,https://doi.org/10.1016/j.gmod.2018.01.002 +Svetha Venkatesh,Edge evaluation using necessary components.,1992,54,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip54.html#VenkateshK92,https://doi.org/10.1016/1049-9652(92)90031-R +George Merrill Chaikin,An algorithm for high-speed curve generation.,1974,3,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip3.html#Chaikin74,https://doi.org/10.1016/0146-664X(74)90028-8 +Marianna Saba,Curvature-based blending of closed planar curves.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#SabaSHS14,https://doi.org/10.1016/j.gmod.2014.04.005 +E. North Coleman Jr.,Obtaining 3-dimensional shape of textured and specular surfaces using four-source photometry.,1982,18,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip18.html#ColemanJ82,https://doi.org/10.1016/0146-664X(82)90001-6 +Paul L. Rosin,Assessing Error of Fit Functions for Ellipses.,1996,58,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip58.html#Rosin96a,https://doi.org/10.1006/gmip.1996.0041 +James C. Mullikin,The vector distance transform in two and three dimensions.,1992,54,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip54.html#Mullikin92,https://doi.org/10.1016/1049-9652(92)90072-6 +Gerald M. Radack,Jigsaw puzzle matching using a boundary-centered polar encoding.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#RadackB82,https://doi.org/10.1016/0146-664X(82)90111-3 +Yasmina Chitti,Detection of Small Local Intensity Changes in CCD Images with Nonuniform Illumination and Large Signal Dependent Noise.,1997,59,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip59.html#Chitti97,https://doi.org/10.1006/gmip.1997.0426 +Jean-Pierre Braquelaire,Euclidean Paths: A New Representation of Boundary of Discrete Regions.,1999,61,Graphical Models and Image Processing,1,db/journals/cvgip/cvgip61.html#BraquelaireV99,https://doi.org/10.1006/gmip.1999.0488 +Yutaka Ohtake,Sparse surface reconstruction with adaptive partition of unity and radial basis functions.,2006,68,Graphical Models,1,db/journals/cvgip/cvgip68.html#OhtakeBS06,https://doi.org/10.1016/j.gmod.2005.08.001 +Dimitris N. Metaxas,Reconstruction of a color image from nonuniformly distributed sparse and noisy data.,1992,54,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip54.html#MetaxasM92,https://doi.org/10.1016/1049-9652(92)90059-7 +Hao Liu,Extract feature curves on noisy triangular meshes.,2017,93,Graphical Models,,db/journals/cvgip/cvgip93.html#LiuDZLW17,https://doi.org/10.1016/j.gmod.2017.05.003 +Erkan Gunpinar,A shape sampling technique via particle tracing for CAD models.,2018,96,Graphical Models,,db/journals/cvgip/cvgip96.html#GunpinarG18,https://doi.org/10.1016/j.gmod.2018.01.003 +Lee R. Nackman,Curvature relations in three-dimensional symmetric axes.,1982,20,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip20.html#Nackman82,https://doi.org/10.1016/0146-664X(82)90072-7 +Songhua Xu,Virtual hairy brush for painterly rendering.,2004,66,Graphical Models,5,db/journals/cvgip/cvgip66.html#XuTLP04,https://doi.org/10.1016/j.gmod.2004.05.006 +Paul L. Rosin,Augmenting Corner Descriptors.,1996,58,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip58.html#Rosin96,https://doi.org/10.1006/gmip.1996.0023 +Xiaoyi Jiang 0001,A simple and efficient algorithm for determining the symmetries of polyhedra.,1992,54,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip54.html#JiangB92,https://doi.org/10.1016/1049-9652(92)90037-X +Johji Tajima,Uniform color scale applications to computer graphics.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Tajima82,https://doi.org/10.1016/0146-664X(82)90120-4 +Jon A. Webb,Shape and correspondence.,1982,20,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip20.html#WebbA82,https://doi.org/10.1016/0146-664X(82)90091-0 +Hee-Seok Heo,The Intersection of Two Ringed Surfaces and Some Related Problems.,2001,63,Graphical Models,4,db/journals/cvgip/cvgip63.html#HeoHSKE01,https://doi.org/10.1006/gmod.2001.0553 +Xiaojun Liu,Lightweighting for Web3D visualization of large-scale BIM scenes in real-time.,2016,88,Graphical Models,,db/journals/cvgip/cvgip88.html#LiuXTJ16,https://doi.org/10.1016/j.gmod.2016.06.001 +Gift Siromoney,Stochastic table arrays.,1982,18,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip18.html#SiromoneySS82,https://doi.org/10.1016/0146-664X(82)90172-1 +Roberto Brunelli,SpotIt!An Interactive Identikit System.,1996,58,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip58.html#BrunelliM96,https://doi.org/10.1006/gmip.1996.0033 +Jong-Chul Yoon,Visualization of graphical data in a user-specified 2D space using a weighted Isomap method.,2014,76,Graphical Models,2,db/journals/cvgip/cvgip76.html#YoonL14,https://doi.org/10.1016/j.gmod.2014.01.001 +Xuekun Guo,Creature grammar for creative modeling of 3D monsters.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#GuoLXJ14,https://doi.org/10.1016/j.gmod.2014.03.019 +Fu-Nian Ku,The principles and methods of histogram modification adapte for visual perception.,1982,20,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip20.html#Ku82,https://doi.org/10.1016/0146-664X(82)90053-3 +Michael Neff,Methods for exploring expressive stance.,2006,68,Graphical Models,2,db/journals/cvgip/cvgip68.html#NeffF06,https://doi.org/10.1016/j.gmod.2005.03.003 +Severinas Zube,Representation of Dupin cyclides using quaternions.,2015,82,Graphical Models,,db/journals/cvgip/cvgip82.html#ZubeK15,https://doi.org/10.1016/j.gmod.2015.06.008 +Mario Aiello,Optimal matching of wheat chromosomes.,1974,3,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip3.html#AielloLM74,https://doi.org/10.1016/0146-664X(74)90016-1 +Gabor T. Herman,Oriented Surfaces in Digital Spaces.,1993,55,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip55.html#Herman93,https://doi.org/10.1006/cgip.1993.1029 +Yi-Jun Yang,Projection of curves on B-spline surfaces using quadratic reparameterization.,2010,72,Graphical Models,5,db/journals/cvgip/cvgip72.html#YangZZYP10,https://doi.org/10.1016/j.gmod.2010.08.001 +John K. Goutsias,Unilateral approximation of Gibbs random field images.,1991,53,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip53.html#Goutsias91,https://doi.org/10.1016/1049-9652(91)90046-M +Javad Sadeghi,Smooth reverse Loop and Catmull-Clark subdivision.,2011,73,Graphical Models,5,db/journals/cvgip/cvgip73.html#SadeghiS11,https://doi.org/10.1016/j.gmod.2011.03.004 +Daniel Schmitter,Compactly-supported smooth interpolators for shape modeling with varying resolution.,2017,94,Graphical Models,,db/journals/cvgip/cvgip94.html#SchmitterFBGU17,https://doi.org/10.1016/j.gmod.2017.11.001 +David W. Paglieroni,A Complexity Analysis for Directional Parametric Height Field Ray Tracing.,1999,61,Graphical Models and Image Processing,5,db/journals/cvgip/cvgip61.html#Paglieroni99,https://doi.org/10.1006/gmip.1999.0503 +Peter J. Burt,Fast algorithms for estimating local image properties.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Burt82,https://doi.org/10.1016/0146-664X(82)90148-4 +Robert M. Haralick,Model-based morphology: the opening spectrum.,1995,57,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip57.html#HaralickK95,https://doi.org/10.1006/gmip.1995.1001 +Chung-Nim Lee,Holes and Genus of 2D and 3D Digital Images.,1993,55,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip55.html#LeePR93,https://doi.org/10.1006/cgip.1993.1002 +Jun-Wei Hsieh,Wavelet-Based Shape from Shading.,1995,57,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip57.html#HsiehLKF95,https://doi.org/10.1006/gmip.1995.1030 +Dragana Brzakovic,Spline models for boundary detection/description: Formulation and performance evaluation.,1991,53,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip53.html#BrzakovicLH91,https://doi.org/10.1016/1049-9652(91)90042-I +Hannu Olkkonen,Discrete Binomial Splines.,1995,57,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip57.html#Olkkonen95,https://doi.org/10.1006/gmip.1995.1011 +G. F. McLean,Codebook Edge Detection.,1993,55,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip55.html#McLean93,https://doi.org/10.1006/cgip.1993.1003 +Shi-Min Hu,Generalized Subdivision of Bézier Surfaces.,1996,58,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip58.html#HuWJ96,https://doi.org/10.1006/gmip.1996.0018 +Anton Bardera,Multiresolution image registration based on tree data structures.,2011,73,Graphical Models,4,db/journals/cvgip/cvgip73.html#BarderaBFRS11,https://doi.org/10.1016/j.gmod.2011.01.001 +Chi Hau Chen,On Digital Mammogram Segmentation and Microcalcification Detection Using Multiresolution Wavelet Analysis.,1997,59,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip59.html#ChenL97,https://doi.org/10.1006/gmip.1997.0443 +Urs Ramer,An iterative procedure for the polygonal approximation of plane curves.,1972,1,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip1.html#Ramer72,https://doi.org/10.1016/S0146-664X(72)80017-0 +Liming Zhao,Achieving good connectivity in motion graphs.,2009,71,Graphical Models,4,db/journals/cvgip/cvgip71.html#ZhaoS09,https://doi.org/10.1016/j.gmod.2009.04.001 +Antonio Albano,Representation of Digitized Contours in Terms of Conic Arcs and Straight-Line Segments.,1974,3,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip3.html#Albano74,https://doi.org/10.1016/0146-664X(74)90008-2 +Yong-Joon Kim,Precise continuous contact motion for planar freeform geometric curves.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#KimEK14,https://doi.org/10.1016/j.gmod.2014.04.007 +C. Konstantopoulos,Novel Deconvolution of Noisy Gaussian Filters with a Modified Hermite Expansion.,1994,56,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip56.html#KonstantopoulosHS94,https://doi.org/10.1006/cgip.1994.1040 +Ling Tony Chen,A Parallel Algorithm for the Visibility of a Simple Polygon Using Scan Operations.,1993,55,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip55.html#ChenD93,https://doi.org/10.1006/cgip.1993.1014 +Terrance E. Boult,Local Image Reconstruction and Subpixel Restoration Algorithms.,1993,55,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip55.html#BoultW93,https://doi.org/10.1006/cgip.1993.1005 +Lidija Comic,A combinatorial coordinate system for the body-centered cubic grid.,2016,87,Graphical Models,,db/journals/cvgip/cvgip87.html#ComicN16,https://doi.org/10.1016/j.gmod.2016.08.001 +Haiyong Jiang,Symmetrization of facade layouts.,2016,85,Graphical Models,,db/journals/cvgip/cvgip85.html#JiangYDWNZ16,https://doi.org/10.1016/j.gmod.2016.01.003 +Ji-yong Kwon,An animation bilateral filter for slow-in and slow-out effects.,2011,73,Graphical Models,5,db/journals/cvgip/cvgip73.html#KwonL11,https://doi.org/10.1016/j.gmod.2011.02.002 +Yitzhak Yitzhaky,Identification of Blur Parameters from Motion Blurred Images.,1997,59,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip59.html#YitzhakyK97,https://doi.org/10.1006/gmip.1997.0435 +Seiichi Nishihara,False-contour removal by random blurring.,1982,20,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip20.html#NishiharaI82,https://doi.org/10.1016/0146-664X(82)90060-0 +R. J. Whatmough,"Automatic threshold selection from a histogram using the ""exponential hull"".",1991,53,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip53.html#Whatmough91,https://doi.org/10.1016/1049-9652(91)90009-9 +Ariel Shamir,Skeleton based solid representation with topology preservation.,2006,68,Graphical Models,3,db/journals/cvgip/cvgip68.html#ShamirS06,https://doi.org/10.1016/j.gmod.2005.10.001 +Vahid Taimouri,Deformation similarity measurement in quasi-conformal shape space.,2014,76,Graphical Models,2,db/journals/cvgip/cvgip76.html#TaimouriH14,https://doi.org/10.1016/j.gmod.2013.12.001 +Sterling J. Crabtree Jr.,A fast and accurate erosion-dilation method suitable for microcomputers.,1991,53,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip53.html#CrabtreeYE91,https://doi.org/10.1016/1049-9652(91)90050-T +Fu-kun Wu,A comprehensive geometrical optics application for wave rendering.,2013,75,Graphical Models,6,db/journals/cvgip/cvgip75.html#WuZ13,https://doi.org/10.1016/j.gmod.2013.07.004 +Tingbo Hou,Continuous and discrete Mexican hat wavelet transforms on manifolds.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#HouQ12,https://doi.org/10.1016/j.gmod.2012.04.010 +Joseph O'Rourke,Polygon decomposition and switching function minimization.,1982,18,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip18.html#RRourke82,https://doi.org/10.1016/0146-664X(82)90006-5 +Valentin E. Brimkov,Computational modeling of objects represented in images.,2011,73,Graphical Models,6,db/journals/cvgip/cvgip73.html#BrimkovB11,https://doi.org/10.1016/j.gmod.2011.06.003 +Hannu Olkkonen,Gaussian Pyramid Wavelet Transform for Multiresolution Analysis of Images.,1996,58,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip58.html#OlkkonenP96,https://doi.org/10.1006/gmip.1996.0032 +Robert G. Aykroyd,Unexpected Spatial Patterns in Exponential Family Auto Models.,1996,58,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip58.html#AykroydHZ96,https://doi.org/10.1006/gmip.1996.0037 +Pierre Landau,Subset Warping: Rubber Sheeting with Cuts.,1994,56,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip56.html#LandauS94,https://doi.org/10.1006/cgip.1994.1022 +Jing Wu 0004,Use of non-photorealistic rendering and photometric stereo in making bas-reliefs from photographs.,2014,76,Graphical Models,4,db/journals/cvgip/cvgip76.html#WuMRSLLW14,https://doi.org/10.1016/j.gmod.2014.02.002 +Shi-Kuo Chang,A triangular scanning technique for locating boundary curves.,1974,3,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip3.html#Chang74,https://doi.org/10.1016/0146-664X(74)90024-0 +Takis Sakkalis,Topological and Geometric Properties of Interval Solid Models.,2001,63,Graphical Models,3,db/journals/cvgip/cvgip63.html#SakkalisSP01,https://doi.org/10.1006/gmod.2001.0539 +Fu-kun Wu,Microfacet-based interference simulation for multilayer films.,2015,78,Graphical Models,,db/journals/cvgip/cvgip78.html#WuZ15,https://doi.org/10.1016/j.gmod.2014.12.003 +Thomas A. Grandine,Special Issue of selected papers from the 8th Dagstuhl seminar on Geometric Modeling.,2012,74,Graphical Models,6,db/journals/cvgip/cvgip74.html#GrandineHPW12,https://doi.org/10.1016/j.gmod.2012.08.001 +Yinhui Yang,ExploreTree: Interactive tree modeling in semantic trait space with online intent learning.,2017,91,Graphical Models,,db/journals/cvgip/cvgip91.html#YangWZB17,https://doi.org/10.1016/j.gmod.2017.02.002 +Pei Zhou 0002,Blending multiple parametric normal ringed surfaces using implicit functional splines and auxiliary spheres.,2011,73,Graphical Models,4,db/journals/cvgip/cvgip73.html#ZhouQ11,https://doi.org/10.1016/j.gmod.2010.12.002 +Michael Gleicher,Comparing Constraint-Based Motion Editing Methods.,2001,63,Graphical Models,2,db/journals/cvgip/cvgip63.html#Gleicher01,https://doi.org/10.1006/gmod.2001.0549 +Martin Isenburg,Compressing the Property Mapping of Polygon Meshes.,2002,64,Graphical Models,2,db/journals/cvgip/cvgip64.html#IsenburgS02,https://doi.org/10.1006/gmod.2002.0573 +K. Raghunath Rao,Nonorthogonal Image Expansion Related to Optimal Template Matching in Complex Images.,1994,56,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip56.html#RaoB94,https://doi.org/10.1006/cgip.1994.1014 +Xiao-Diao Chen,Computing the minimum distance between a point and a clamped B-spline surface.,2009,71,Graphical Models,3,db/journals/cvgip/cvgip71.html#ChenXYWP09,https://doi.org/10.1016/j.gmod.2009.01.001 +Barbara E. Schmitz,Color Palette Restoratio.,1995,57,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip57.html#SchmitzS95,https://doi.org/10.1006/gmip.1995.1035 +Ernst Denert,A method for computing points of a circle using only integers.,1973,2,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip2.html#Denert73,https://doi.org/10.1016/0146-664X(73)90033-6 +C. M. Hoffmann,Accuracy and semantics in shape-interrogation applications.,2005,67,Graphical Models,5,db/journals/cvgip/cvgip67.html#HoffmannS05,https://doi.org/10.1016/j.gmod.2005.01.001 +Koichi Harada,An isotropic four-point interpolation based on cubic splines.,1982,20,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip20.html#HaradaN82,https://doi.org/10.1016/0146-664X(82)90086-7 +Brian Wyvill,Special Issue on the International Conference of Shape Modeling (SMI) 2002.,2003,65,Graphical Models,5,db/journals/cvgip/cvgip65.html#Wyvill03,https://doi.org/10.1016/S1524-0703(03)00086-9 +Gershon Elber,The Convex Hull of Rational Plane Curves.,2001,63,Graphical Models,3,db/journals/cvgip/cvgip63.html#ElberKH01,https://doi.org/10.1006/gmod.2001.0546 +Adriano N. Raposo,3D molecular assembling of B-DNA sequences using nucleotides as building blocks.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#RaposoG12,https://doi.org/10.1016/j.gmod.2012.05.001 +Jehee Lee,Precomputing avatar behavior from human motion data.,2006,68,Graphical Models,2,db/journals/cvgip/cvgip68.html#LeeL06,https://doi.org/10.1016/j.gmod.2005.03.004 +Dirk Janssens,On sequential and parallel node-rewriting graph grammars.,1982,18,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip18.html#JanssensRV82,https://doi.org/10.1016/0146-664X(82)90036-3 +Siegfried J. Pöppl,Boundary detection in scintigraphic images.,1982,19,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip19.html#PopplH82a,https://doi.org/10.1016/0146-664X(82)90013-2 +Xin Feng,Compact combinatorial maps: A volume mesh data structure.,2013,75,Graphical Models,3,db/journals/cvgip/cvgip75.html#FengWWT13,https://doi.org/10.1016/j.gmod.2012.10.001 +Paul D. Sampson,"Fitting conic sections to ""very scattered"" data: An iterative refinement of the bookstein algorithm.",1982,18,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip18.html#Sampson82,https://doi.org/10.1016/0146-664X(82)90101-0 +Tommaso Toffoli,Three-Dimensional Rotations by Three Shears.,1997,59,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip59.html#ToffoliQ97,https://doi.org/10.1006/gmip.1997.0420 +Chandrajit L. Bajaj,Compression-Based 3D Texture Mapping for Real-Time Rendering.,2000,62,Graphical Models,6,db/journals/cvgip/cvgip62.html#BajajIP00,https://doi.org/10.1006/gmod.2000.0532 +Kah-Chye Tan,Restoration of real-world motion-blurred images.,1991,53,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip53.html#TanLT91,https://doi.org/10.1016/1049-9652(91)90051-K +Juha Ylä-Jääski,Fast direct display of volume data for medical diagnosis.,1991,53,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip53.html#Yla-JaaskiKK91,https://doi.org/10.1016/1049-9652(91)90014-B +Hongmei Kang,Hierarchical B-splines on regular triangular partitions.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#KangCD14,https://doi.org/10.1016/j.gmod.2014.03.002 +Wallace S. Rutkowski,Recognition of occluded shapes using relaxation.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Rutkowski82,https://doi.org/10.1016/0146-664X(82)90133-2 +Koichi Harada,An isotropic four-point interpolation based on cubic splines.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#HaradaN82a,https://doi.org/10.1016/0146-664X(82)90151-4 +Philip R. Thrift,Approximating point set images by line segments using a variation of the hough transform.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#ThriftD82,https://doi.org/10.1016/0146-664X(82)90149-6 +Donald Meagher,Geometric modeling using octree encoding.,1982,19,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip19.html#Meagher82a,https://doi.org/10.1016/0146-664X(82)90104-6 +Kai Tang,An optimization algorithm for free-form surface partitioning based on weighted gaussian image.,2005,67,Graphical Models,1,db/journals/cvgip/cvgip67.html#TangL05,https://doi.org/10.1016/j.gmod.2004.07.001 +Richard J. Prokop,A survey of moment-based techniques for unoccluded object representation and recognition.,1992,54,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip54.html#ProkopR92,https://doi.org/10.1016/1049-9652(92)90027-U +Gershon Elber,Curve Evaluation and Interrogation on Surfaces.,2001,63,Graphical Models,3,db/journals/cvgip/cvgip63.html#Elber01,https://doi.org/10.1006/gmod.2001.0541 +Mona Mahmoudi,Three-dimensional point cloud recognition via distributions of geometric distances.,2009,71,Graphical Models,1,db/journals/cvgip/cvgip71.html#MahmoudiS09,https://doi.org/10.1016/j.gmod.2008.10.002 +Cherng-Min Ma,Connectivity Preservation of 3D 6-Subiteration Thinning Algorithms.,1996,58,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip58.html#Ma96,https://doi.org/10.1006/gmip.1996.0030 +Gonzalo Hernandez,Cellular Automata for Elementary Image Enhancement.,1996,58,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip58.html#HernandezH96,https://doi.org/10.1006/gmip.1996.0006 +A. Ravishankar Rao,Identifying High Level Features of Texture Perception.,1993,55,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip55.html#RaoL93,https://doi.org/10.1006/cgip.1993.1016 +Wonjoon Cho,Topologically Reliable Approximation of Trimmed Polynomial Surface Patches.,1999,61,Graphical Models and Image Processing,2,db/journals/cvgip/cvgip61.html#ChoMPP99,https://doi.org/10.1006/gmip.1999.0483 +Zhonggui Chen,Approximation by piecewise polynomials on Voronoi tessellation.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#ChenXC14,https://doi.org/10.1016/j.gmod.2014.04.006 +Emilio Camahort,A line-space analysis of light-field representations.,2009,71,Graphical Models,5,db/journals/cvgip/cvgip71.html#CamahortAF09,https://doi.org/10.1016/j.gmod.2009.02.003 +Martin D. Levine,Understanding blood cell motion.,1982,20,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip20.html#LevineY82,https://doi.org/10.1016/0146-664X(82)90049-1 +Chris A. Glasbey,An Analysis of Histogram-Based Thresholding Algorithms.,1993,55,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip55.html#Glasbey93,https://doi.org/10.1006/cgip.1993.1040 +Greg Kay,Estimating the Parameters of an Illumination Model Using Photometric Stereo.,1995,57,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip57.html#KayC95,https://doi.org/10.1006/gmip.1995.1032 +Jong-Chul Yoon,Stable and controllable noise.,2008,70,Graphical Models,5,db/journals/cvgip/cvgip70.html#YoonL08,https://doi.org/10.1016/j.gmod.2008.04.001 +W. M. Krueger,On Synthesizing Discrete Fractional Brownian Motion with Applications to Image Processing.,1996,58,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip58.html#KruegerJRA96,https://doi.org/10.1006/gmip.1996.0027 +Supanut Chaidee,Spherical Laguerre Voronoi diagram approximation to tessellations without generators.,2018,95,Graphical Models,,db/journals/cvgip/cvgip95.html#ChaideeS18,https://doi.org/10.1016/j.gmod.2017.11.002 +Myung-Soo Kim,Special Issue on Pacific Graphics '99.,2000,62,Graphical Models,6,db/journals/cvgip/cvgip62.html#KimS00,https://doi.org/10.1006/gmod.2000.0533 +Virginio Cantoni,Matching the task to an I. P. architecture.,1982,19,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip19.html#Cantoni82,https://doi.org/10.1016/0146-664X(82)90029-6 +Shu-Yu Chen,Rigidity controllable as-rigid-as-possible shape deformation.,2017,91,Graphical Models,,db/journals/cvgip/cvgip91.html#ChenGLX17,https://doi.org/10.1016/j.gmod.2017.02.005 +Joseph O'Rourke,A new linear algorithm for intersecting convex polygons.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#ORourkeCON82,https://doi.org/10.1016/0146-664X(82)90156-3 +M. Senasli,3D Reconstruction of Vessel Lumen from Very Few Angiograms by Dynamic Contours Using a Stochastic Approach.,2000,62,Graphical Models,2,db/journals/cvgip/cvgip62.html#SenasliGHM00,https://doi.org/10.1006/gmod.1999.0520 +John D. Hobby,Space-Efficient Outlines from Image Data via Vertex Minimization and Grid Constraints.,1997,59,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip59.html#Hobby97,https://doi.org/10.1006/gmip.1997.0419 +Lennart Thurfjell,A new three-dimensional connected components labeling algorithm with simultaneous object feature extraction capability.,1992,54,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip54.html#ThurfjellBN92,https://doi.org/10.1016/1049-9652(92)90083-A +Nicole Lehmann,Notes on the curvature tensor.,2012,74,Graphical Models,6,db/journals/cvgip/cvgip74.html#LehmannR12,https://doi.org/10.1016/j.gmod.2012.04.003 +Guo Li,Geometry curves: A compact representation for 3D shapes.,2013,75,Graphical Models,5,db/journals/cvgip/cvgip75.html#LiL13,https://doi.org/10.1016/j.gmod.2013.05.001 +Stephen P. Smith,Chord distributions for shape matching.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#SmithJ82a,https://doi.org/10.1016/0146-664X(82)90163-0 +Robert M. Haralick,Understanding engineering drawings.,1982,20,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip20.html#HaralickQ82,https://doi.org/10.1016/0146-664X(82)90083-1 +Denis Steinemann,Splitting meshless deforming objects with explicit surface tracking.,2009,71,Graphical Models,6,db/journals/cvgip/cvgip71.html#SteinemannOG09,https://doi.org/10.1016/j.gmod.2008.12.004 +Yoichi Sato,Reflectance Analysis for 3D Computer Graphics Model Generation.,1996,58,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip58.html#SatoI96,https://doi.org/10.1006/gmip.1996.0036 +Wallace S. Rutkowski,Recognition of occluded shapes using relaxation.,1982,19,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip19.html#Rutkowski82a,https://doi.org/10.1016/0146-664X(82)90103-4 +Hui Wang 0018,Empirical mode decomposition on surfaces.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#WangSCWZ12,https://doi.org/10.1016/j.gmod.2012.04.005 +Gershon Elber,Generalized filleting and blending operations toward functional and decorative applications.,2005,67,Graphical Models,3,db/journals/cvgip/cvgip67.html#Elber05,https://doi.org/10.1016/j.gmod.2004.06.005 +Lori Belcastro,Tomographic Reconstruction of Polygons from Knot Location and Chord Length Measurements.,1996,58,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip58.html#BelcastroCW96,https://doi.org/10.1006/gmip.1996.0020 +Hirobumi Nishida,Boundary Extraction from Gray-Scale Document Images Based on Surface Data Structures.,1998,60,Graphical Models and Image Processing,1,db/journals/cvgip/cvgip60.html#Nishida98,https://doi.org/10.1006/gmip.1997.0452 +Tommy Elfving,Some properties of stochastic labeling procedures.,1982,20,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip20.html#ElfvingE82,https://doi.org/10.1016/0146-664X(82)90042-9 +Dan Lelescu,Representation and coding of light field data.,2004,66,Graphical Models,4,db/journals/cvgip/cvgip66.html#LelescuB04,https://doi.org/10.1016/j.gmod.2004.05.003 +Scott Krusemark,Image random file access routines.,1982,20,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip20.html#KrusemarkH82,https://doi.org/10.1016/0146-664X(82)90061-2 +L. Hayat,Candidate Functions for a Parallel Multi-level Thresholding Technique.,1996,58,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip58.html#HayatFC96,https://doi.org/10.1006/gmip.1996.0029 +Fernand S. Cohen,Modeling and synthesis of images of 3D textured surfaces.,1991,53,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip53.html#CohenP91,https://doi.org/10.1016/1049-9652(91)90001-Z +P. C. Maxwell,The perception and description of line drawings by computer.,1972,1,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip1.html#Maxwell72,https://doi.org/10.1016/S0146-664X(72)80005-4 +Sudhir S. Dixit,Hierarchical address vector quantization for image coding.,1991,53,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip53.html#DixitF91,https://doi.org/10.1016/1049-9652(91)90020-K +Benoit Beckers,"Editorial for Special issue on ""Massive 3D Urban Models"".",2018,95,Graphical Models,,db/journals/cvgip/cvgip95.html#BeckersAA18,https://doi.org/10.1016/j.gmod.2017.07.001 +Frédéric Chazal,A condition for isotopic approximation.,2005,67,Graphical Models,5,db/journals/cvgip/cvgip67.html#ChazalC05,https://doi.org/10.1016/j.gmod.2005.01.005 +Chandrajit L. Bajaj,Arbitrary Topology Shape Reconstruction from Planar Cross Sections.,1996,58,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip58.html#BajajCL96,https://doi.org/10.1006/gmip.1996.0044 +Robert L. Haar,Sketching: Estimating object positions from relational descriptions.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Haar82,https://doi.org/10.1016/0146-664X(82)90142-3 +Eric Plante,Capturing the Complexity of Hair Motion.,2002,64,Graphical Models,1,db/journals/cvgip/cvgip64.html#PlanteCP02,https://doi.org/10.1006/gmod.2002.0568 +Jun-ichiro Toriwaki,A generalized distance transformation of a line pattern with gray values and its applications.,1982,20,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip20.html#ToriwakiTF82,https://doi.org/10.1016/0146-664X(82)90056-9 +Hock Lim,New methods for restoring motion-blurred images derived from edge error considerations.,1991,53,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip53.html#LimTT91a,https://doi.org/10.1016/1049-9652(91)90032-F +Christopher C. Pu,Threshold Decomposition of Gray-Scale Soft Morphology into Binary Soft Morphology.,1995,57,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip57.html#PuS95,https://doi.org/10.1006/gmip.1995.1042 +P. L. J. Siero,Cell division patterns: Syntactical description and implementation.,1982,18,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip18.html#SieroRL82,https://doi.org/10.1016/0146-664X(82)90002-8 +Manyi Li,Class-sensitive shape dissimilarity metric.,2018,98,Graphical Models,,db/journals/cvgip/cvgip98.html#LiFCTCZC18,https://doi.org/10.1016/j.gmod.2018.06.002 +Demetri Terzopoulos,Detection of osteogenesis imperfecta by automated texture analysis.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#TerzopoulosZ82a,https://doi.org/10.1016/0146-664X(82)90121-6 +B. Kartikeyan,An identification approach for 2-D autoregressive models in describing textures.,1991,53,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip53.html#KartikeyanS91,https://doi.org/10.1016/1049-9652(91)90055-O +Ming Li,Normalized quadtrees with respect to translations.,1982,20,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip20.html#LiGJ82,https://doi.org/10.1016/0146-664X(82)90074-0 +Minho Kim,Analysis of symmetry groups of box-splines for evaluation on GPUs.,2017,93,Graphical Models,,db/journals/cvgip/cvgip93.html#Kim17,https://doi.org/10.1016/j.gmod.2017.08.001 +B. L. Yen,Determining 3-D motion and structure of a rigid body using the spherical projection.,1982,20,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip20.html#YenH82,https://doi.org/10.1016/0146-664X(82)90047-8 +Kah-Chye Tan,Windowing techniques for image restoration.,1991,53,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip53.html#TanLT91a,https://doi.org/10.1016/1049-9652(91)90033-G +Minoru Asada,Representation of three-dimensional motion in dynamic scenes.,1982,20,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip20.html#AsadaT82,https://doi.org/10.1016/0146-664X(82)90090-9 +Qinghuai Gao,Two-Dimensional Direction-Based Interpolation with Local Centered Moments.,1999,61,Graphical Models and Image Processing,6,db/journals/cvgip/cvgip61.html#GaoY99,https://doi.org/10.1006/gmip.1999.0504 +Jorge Ernesto Rodríguez,A connected-component-labeling-based approach to virtual porosimetry.,2011,73,Graphical Models,5,db/journals/cvgip/cvgip73.html#RodriguezCVA11,https://doi.org/10.1016/j.gmod.2011.06.001 +Ralph M. Ford,Representing and Visualizing Fluid Flow Images and Velocimetry Data by Nonlinear Dynamical Systems.,1995,57,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip57.html#FordS95,https://doi.org/10.1006/gmip.1995.1040 +Jayaram K. Udupa,Interactive segmentation and boundary surface formation for 3-D digital images.,1982,18,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip18.html#Udupa82,https://doi.org/10.1016/0146-664X(82)90033-8 +Martin D. Levine,Computer determination of depth maps.,1973,2,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip2.html#LevineOY73,https://doi.org/10.1016/0146-664X(73)90024-5 +Irene Gargantini,Multiple-seed 3D connectivity filling for inaccurate borders.,1991,53,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip53.html#GargantiniAS91,https://doi.org/10.1016/1049-9652(91)90006-6 +Zhaohui Wu,Data acquisition and simulation of dynamic flame with temperature distribution.,2018,98,Graphical Models,,db/journals/cvgip/cvgip98.html#WuWWHYK18,https://doi.org/10.1016/j.gmod.2018.06.001 +Boris Kronrod,Efficient Coding of Nontriangular Mesh Connectivity.,2001,63,Graphical Models,4,db/journals/cvgip/cvgip63.html#KronrodG01,https://doi.org/10.1006/gmod.2001.0555 +Shunji Mori,A sequential tracking extraction of shape features and its constructive description.,1982,19,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip19.html#MoriD82,https://doi.org/10.1016/0146-664X(82)90021-1 +Jason Lawrence,A painting interface for interactive surface deformations.,2004,66,Graphical Models,6,db/journals/cvgip/cvgip66.html#LawrenceF04,https://doi.org/10.1016/j.gmod.2004.05.008 +Gabor T. Herman,Three methods for reconstructing objects from x rays: A comparative study.,1973,2,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip2.html#HermanR73,https://doi.org/10.1016/0146-664X(73)90025-7 +Shiuh-Yung Chen,Split-and-merge image segmentation based on localized feature analysis and statistical tests.,1991,53,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip53.html#ChenLC91,https://doi.org/10.1016/1049-9652(91)90030-N +Marco Attene,Direct repair of self-intersecting meshes.,2014,76,Graphical Models,6,db/journals/cvgip/cvgip76.html#Attene14,https://doi.org/10.1016/j.gmod.2014.09.002 +Mateu Sbert,Optimal Absorption Probabilities for Random Walk Radiosity.,2000,62,Graphical Models,1,db/journals/cvgip/cvgip62.html#Sbert00,https://doi.org/10.1006/gmod.1999.0513 +C. Goresnic,Texture classification using the cortex transform.,1992,54,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip54.html#GoresnicR92,https://doi.org/10.1016/1049-9652(92)90079-D +Bernard Chalmond,PSF estimation for image deblurring.,1991,53,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip53.html#Chalmond91,https://doi.org/10.1016/1049-9652(91)90039-M +Henrik Zimmer,Zometool shape approximation.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#ZimmerLAK14,https://doi.org/10.1016/j.gmod.2014.03.009 +Satoru Kawai,On the topology preservation property of local parallel operations.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Kawai82a,https://doi.org/10.1016/0146-664X(82)90131-9 +Gonzalo Besuievsky,Skyline-based geometric simplification for urban solar analysis.,2018,95,Graphical Models,,db/journals/cvgip/cvgip95.html#BesuievskyBP18,https://doi.org/10.1016/j.gmod.2017.06.002 +Chinching Yen,Degraded Gray-Scale Text Recognition Using Pseudo-2D Hidden Markov Models and N-Best Hypotheses.,1995,57,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip57.html#YenK95,https://doi.org/10.1006/gmip.1995.1014 +Alexander A. Pasko,SMI 2003 special issue.,2005,67,Graphical Models,3,db/journals/cvgip/cvgip67.html#PaskoS05,https://doi.org/10.1016/j.gmod.2004.08.001 +Shervin Daneshpajouh,Computing polygonal path simplification under area measures.,2012,74,Graphical Models,5,db/journals/cvgip/cvgip74.html#DaneshpajouhGZ12,https://doi.org/10.1016/j.gmod.2012.04.006 +Irene Gargantini,Linear octtrees for fast processing of three-dimensional objects.,1982,20,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip20.html#Gargantini82,https://doi.org/10.1016/0146-664X(82)90058-2 +Leonie Dreschler,Volumetric model and 3D trajectory of a moving car derived from monocular TV frame sequences of a street scence.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#DreschlerN82a,https://doi.org/10.1016/0146-664X(82)90138-1 +Evan C. Sherbrooke,Differential and Topological Properties of Medial Axis Transforms.,1996,58,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip58.html#SherbrookePW96,https://doi.org/10.1006/gmip.1996.0047 +Yi-King Choi,Continuous collision detection for composite quadric models.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#ChoiWMTJS14,https://doi.org/10.1016/j.gmod.2014.03.005 +Hyung Woo Kang,Enhanced lane: interactive image segmentation by incremental path map construction.,2002,64,Graphical Models,5,db/journals/cvgip/cvgip64.html#KangS02,https://doi.org/10.1016/S1077-3169(02)00007-2 +Falai Chen,The andmicro*-basis of a planar rational curve - properties and computation.,2002,64,Graphical Models,6,db/journals/cvgip/cvgip64.html#ChenW02,https://doi.org/10.1016/S1077-3169(02)00017-5 +Venera Adanova,Beyond symmetry groups: A grouping study on Escher's Euclidean ornaments.,2016,83,Graphical Models,,db/journals/cvgip/cvgip83.html#AdanovaT16,https://doi.org/10.1016/j.gmod.2015.09.001 +Liwei Zhao,Acquiring and validating motion qualities from live limb gestures.,2005,67,Graphical Models,1,db/journals/cvgip/cvgip67.html#ZhaoB05,https://doi.org/10.1016/j.gmod.2004.08.002 +Huub van de Wetering,Chain Codes and Their Application in Curve Design.,1996,58,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip58.html#WeteringO96,https://doi.org/10.1006/gmip.1996.0038 +Sadakazu Watanabe,An automated apparatus for cancer prescreening: CYBEST.,1974,3,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip3.html#Watanabe74,https://doi.org/10.1016/0146-664X(74)90029-X +Fabien Salzenstein,Parameter Estimation in Hidden Fuzzy Markov Random Fields and Image Segmentation.,1997,59,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip59.html#SalzensteinP97,https://doi.org/10.1006/gmip.1997.0431 +Jacques Azencot,Deterministic and stochastic state model of right generalized cylinder (RGC-sm): application in computer phantoms synthesis.,2003,65,Graphical Models,6,db/journals/cvgip/cvgip65.html#AzencotO03,https://doi.org/10.1016/S1524-0703(03)00073-0 +Guowei Wan,Sorting unorganized photo sets for urban reconstruction.,2012,74,Graphical Models,1,db/journals/cvgip/cvgip74.html#WanSCZCL12,https://doi.org/10.1016/j.gmod.2011.11.001 +Wenping Wang,On the Difference Method for Drawing Conic Arcs.,1994,56,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip56.html#WangJW94,https://doi.org/10.1006/cgip.1994.1002 +Jeremy D. Wendt,Finite volume flow simulations on arbitrary domains.,2007,69,Graphical Models,1,db/journals/cvgip/cvgip69.html#WendtBOL07,https://doi.org/10.1016/j.gmod.2006.05.004 +Gary W. Howell,Quasi-circular Splines: A Shape-Preserving Approximation.,1993,55,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip55.html#HowellFF93,https://doi.org/10.1006/cgip.1993.1007 +Youngmin Kim,Vertex-transformation streams.,2006,68,Graphical Models,4,db/journals/cvgip/cvgip68.html#KimLV06,https://doi.org/10.1016/j.gmod.2006.03.005 +Scott Krusemark,An opening system interface for trasportable image processing software.,1982,19,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip19.html#KrusemarkH82a,https://doi.org/10.1016/0146-664X(82)90026-0 +Gunilla Borgefors,On the Multiscale Representation of 2D and 3D Shapes.,1999,61,Graphical Models and Image Processing,1,db/journals/cvgip/cvgip61.html#BorgeforsRBS99,https://doi.org/10.1006/gmip.1999.0489 +Michael T. Goodrich,A polygonal approach to hidden-line and hidden-surface elimination.,1992,54,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip54.html#Goodrich92,https://doi.org/10.1016/1049-9652(92)90029-W +Antoine Vacavant,A framework for dynamic implicit curve approximation by an irregular discrete approach.,2009,71,Graphical Models,3,db/journals/cvgip/cvgip71.html#VacavantCT09,https://doi.org/10.1016/j.gmod.2009.02.001 +Xinyu Zhang,A fast algebraic non-penetration filter for continuous collision detection.,2015,80,Graphical Models,,db/journals/cvgip/cvgip80.html#ZhangL15,https://doi.org/10.1016/j.gmod.2015.06.001 +Chung-Lin Huang,Directional Moving Averaging Interpolation for Texture Mapping.,1996,58,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip58.html#HuangC96,https://doi.org/10.1006/gmip.1996.0025 +Rajiv Mehrotra,A Computational Approach to Zero-Crossing-Based Two-Dimensional Edge Detection.,1996,58,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip58.html#MehrotraZ96,https://doi.org/10.1006/gmip.1996.0001 +David H. Eberly,Adaptation of group algebras to signal and image processing.,1991,53,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip53.html#EberlyW91,https://doi.org/10.1016/1049-9652(91)90037-K +Steve Capell,Physically based rigging for deformable characters.,2007,69,Graphical Models,1,db/journals/cvgip/cvgip69.html#CapellBCDP07,https://doi.org/10.1016/j.gmod.2006.09.001 +Hao Wang,Spectral 3D mesh segmentation with a novel single segmentation field.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#WangLAT14,https://doi.org/10.1016/j.gmod.2014.04.009 +Zhanpeng Huang,Reducing numerical dissipation in smoke simulation.,2015,78,Graphical Models,,db/journals/cvgip/cvgip78.html#HuangKLHG15,https://doi.org/10.1016/j.gmod.2014.12.002 +M. R. Bhatt,Robust Image Restoration Algorithm Using Markov Random Field Model.,1994,56,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip56.html#BhattD94,https://doi.org/10.1006/cgip.1994.1006 +Felipe Moura de Carvalho,Interactive cutaways of oil reservoirs.,2016,84,Graphical Models,,db/journals/cvgip/cvgip84.html#CarvalhoBMSO16,https://doi.org/10.1016/j.gmod.2016.02.001 +Stephen K. Park,Image reconstruction by parametric cubic convolution.,1982,20,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip20.html#ParkS82,https://doi.org/10.1016/0146-664X(82)90063-6 +Qiang Fu 0004,Natural lines inspired 3D shape re-design.,2016,85,Graphical Models,,db/journals/cvgip/cvgip85.html#FuCSF16,https://doi.org/10.1016/j.gmod.2016.01.002 +WuJun Che,Skeleton-driven 2D distance field metamorphosis using intrinsic shape parameters.,2004,66,Graphical Models,2,db/journals/cvgip/cvgip66.html#CheYW04,https://doi.org/10.1016/j.gmod.2003.11.001 +Frank B. ter Haar,A 3D face matching framework for facial curves.,2009,71,Graphical Models,2,db/journals/cvgip/cvgip71.html#HaarV09,https://doi.org/10.1016/j.gmod.2008.12.003 +Dongho Yun,Registration of multiview point clouds for application to ship fabrication.,2017,90,Graphical Models,,db/journals/cvgip/cvgip90.html#YunCKK17,https://doi.org/10.1016/j.gmod.2017.02.001 +Alexis Angelidis,Swirling-sweepers: Constant-volume modeling.,2006,68,Graphical Models,4,db/journals/cvgip/cvgip68.html#AngelidisCWK06,https://doi.org/10.1016/j.gmod.2005.11.001 +Shi-Sheng Huang,Structure guided interior scene synthesis via graph matching.,2016,85,Graphical Models,,db/journals/cvgip/cvgip85.html#HuangFH16,https://doi.org/10.1016/j.gmod.2016.03.004 +John C. Platt,A generalization of dynamic constraints.,1992,54,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip54.html#Platt92,https://doi.org/10.1016/1049-9652(92)90071-5 +Albert M. Vossepoel,Vector code probability and metrication error in the representation of straight lines of finite length.,1982,20,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip20.html#VossepoelS82,https://doi.org/10.1016/0146-664X(82)90057-0 +Joseph O'Rourke,A new linear algorithm for intersecting convex polygons.,1982,19,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip19.html#ORourkeCON82a,https://doi.org/10.1016/0146-664X(82)90023-5 +Ho Chao Huang,Panoramic Stereo Imaging System with Automatic Disparity Warping and Seaming.,1998,60,Graphical Models and Image Processing,3,db/journals/cvgip/cvgip60.html#HuangH98,https://doi.org/10.1006/gmip.1998.0467 +Anrong Peng,Adaptive Mixture Estimation and Unsupervised Local Bayesian Image Segmentation.,1995,57,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip57.html#PengP95,https://doi.org/10.1006/gmip.1995.1033 +Libor Vása,Optimised mesh traversal for dynamic mesh compression.,2011,73,Graphical Models,5,db/journals/cvgip/cvgip73.html#Vasa11,https://doi.org/10.1016/j.gmod.2011.03.005 +Dae-Eun Hyun,Minimizing the Distortion of Affine Spline Motions.,2002,64,Graphical Models,2,db/journals/cvgip/cvgip64.html#HyunJK02,https://doi.org/10.1006/gmod.2002.0569 +J. K. Wu,Adaptive bit allocation for image compression.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#WuB82,https://doi.org/10.1016/0146-664X(82)90157-5 +Xuhui Wang,Quaternion rational surfaces: Rational surfaces generated from the quaternion product of two rational space curves.,2015,81,Graphical Models,,db/journals/cvgip/cvgip81.html#Wang015,https://doi.org/10.1016/j.gmod.2014.04.002 +Paul L. Rosin,Artistic minimal rendering with lines and blocks.,2013,75,Graphical Models,4,db/journals/cvgip/cvgip75.html#RosinL13,https://doi.org/10.1016/j.gmod.2013.03.004 +Shixiang Jia,Mesh resizing based on hierarchical saliency detection.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#JiaZLZ14,https://doi.org/10.1016/j.gmod.2014.03.012 +Wenwu Zhu 0001,Regularized Multichannel Restoration Using Cross-Validation.,1995,57,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip57.html#ZhuGK95,https://doi.org/10.1006/gmip.1995.1005 +R. Mukundan,Estimation of quaternion parameters from two dimensional image moments.,1992,54,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip54.html#Mukundan92,https://doi.org/10.1016/1049-9652(92)90081-8 +Masahiko Yachida,Determining velocity maps by spatio-temporal neighborhoods from image sequences.,1982,20,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip20.html#Yachida82,https://doi.org/10.1016/0146-664X(82)90092-2 +Yong Jin,Unsupervised upright orientation of man-made models.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#JinWL12,https://doi.org/10.1016/j.gmod.2012.03.007 +Jun Shen 0004,On Multi-Edge Detection.,1996,58,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip58.html#Shen96,https://doi.org/10.1006/gmip.1996.0009 +David George,3D mesh segmentation via multi-branch 1D convolutional neural networks.,2018,96,Graphical Models,,db/journals/cvgip/cvgip96.html#GeorgeXT18,https://doi.org/10.1016/j.gmod.2018.01.001 +Adam Baumberg,3D S.O.M. - A commercial software solution to 3D scanning.,2005,67,Graphical Models,6,db/journals/cvgip/cvgip67.html#BaumbergLT05,https://doi.org/10.1016/j.gmod.2004.10.002 +Isabelle Bloch,A new characterization of simple elements in a tetrahedral mesh.,2005,67,Graphical Models,4,db/journals/cvgip/cvgip67.html#BlochPG05,https://doi.org/10.1016/j.gmod.2004.12.001 +Alexandre X. Falcão,User-Steered Image Segmentation Paradigms: Live Wire and Live Lane.,1998,60,Graphical Models and Image Processing,4,db/journals/cvgip/cvgip60.html#FalcaoUSSHL98,https://doi.org/10.1006/gmip.1998.0475 +Rui Wen,Topology based 2D engineering drawing and 3D model matching for process plant.,2017,92,Graphical Models,,db/journals/cvgip/cvgip92.html#WenTS17,https://doi.org/10.1016/j.gmod.2017.06.001 +David M. Mount,Computationally Efficient Algorithms for High-Dimensional Robust Estimators.,1994,56,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip56.html#MountN94,https://doi.org/10.1006/cgip.1994.1026 +Marco Attene,A mapping-independent primitive for the triangulation of parametric surfaces.,2003,65,Graphical Models,5,db/journals/cvgip/cvgip65.html#AtteneFSW03,https://doi.org/10.1016/S1524-0703(03)00048-1 +Brian Y. K. Aw,A Catalog of 1-D Features in Natural Images.,1994,56,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip56.html#AwOR94,https://doi.org/10.1006/cgip.1994.1016 +Leonard Uhr,Review of psychological processes in pattern recognition.,1974,3,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip3.html#Uhr74,https://doi.org/10.1016/0146-664X(74)90030-6 +Sai Ho Kwok,A Scalable and Adaptive Temporal Segmentation Algorithm for Video Coding.,1997,59,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip59.html#KwokSC97,https://doi.org/10.1006/gmip.1997.0423 +Eric Galin,Incremental Polygonization of Implicit Surfaces.,2000,62,Graphical Models,1,db/journals/cvgip/cvgip62.html#GalinA00,https://doi.org/10.1006/gmod.1999.0514 +Eric N. Mortensen,Interactive Segmentation with Intelligent Scissors.,1998,60,Graphical Models and Image Processing,5,db/journals/cvgip/cvgip60.html#MortensenB98,https://doi.org/10.1006/gmip.1998.0480 +Yasuaki Oishi,Topology-Oriented Divide-and-Conquer Algorithm for Voronoi Diagrams.,1995,57,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip57.html#OishiS95,https://doi.org/10.1006/gmip.1995.1027 +Dongryeol Kim,Unification of Distance and Volume Optimization in Surface Simplification.,1999,61,Graphical Models and Image Processing,6,db/journals/cvgip/cvgip61.html#KimKK99,https://doi.org/10.1006/gmip.1999.0506 +Mahmudul Hasan 0001,Balanced multiresolution for symmetric/antisymmetric filters.,2015,78,Graphical Models,,db/journals/cvgip/cvgip78.html#0001SS15,https://doi.org/10.1016/j.gmod.2015.01.001 +Kwai Hung Chan,Contour-Based Warping.,1998,60,Graphical Models and Image Processing,5,db/journals/cvgip/cvgip60.html#ChanL98,https://doi.org/10.1006/gmip.1998.0476 +Carlo Arcelli,On blob reconstruction.,1973,2,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip2.html#ArcelliL73,https://doi.org/10.1016/0146-664X(73)90030-0 +L.-M. Reissell,Wavelet Multiresolution Representation of Curves and Surfaces.,1996,58,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip58.html#Reissell96,https://doi.org/10.1006/gmip.1996.0017 +Paul L. Rosin,Multiscale Representation and Matching of Curves Using Codons.,1993,55,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip55.html#Rosin93,https://doi.org/10.1006/cgip.1993.1020 +John M. Einbu,Nonlinear reduction of data.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Einbu82,https://doi.org/10.1016/0146-664X(82)90153-8 +Remco C. Veltkamp,Boundaries through Scattered Points of Unknown Density.,1995,57,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip57.html#Veltkamp95,https://doi.org/10.1006/gmip.1995.1038 +Jehee Lee,A Coordinate-Invariant Approach to Multiresolution Motion Analysis.,2001,63,Graphical Models,2,db/journals/cvgip/cvgip63.html#LeeS01,https://doi.org/10.1006/gmod.2001.0548 +Michal Irani,Improving resolution by image registration.,1991,53,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip53.html#IraniP91,https://doi.org/10.1016/1049-9652(91)90045-L +Peter Kaufmann,Flexible simulation of deformable models using discontinuous Galerkin FEM.,2009,71,Graphical Models,4,db/journals/cvgip/cvgip71.html#KaufmannMBG09,https://doi.org/10.1016/j.gmod.2009.02.002 +D. A. Fogg,Vegetation-Limited Ground-to-Air Surveillance.,1993,55,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip55.html#Fogg93,https://doi.org/10.1006/cgip.1993.1032 +Ze-Nian Li,On edge preservation in multiresolution images.,1992,54,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip54.html#LiH92,https://doi.org/10.1016/1049-9652(92)90066-7 +Frederick M. Weinhaus,Photogrammetric Texture Mapping onto Planar Polygons.,1999,61,Graphical Models and Image Processing,2,db/journals/cvgip/cvgip61.html#WeinhausD99,https://doi.org/10.1006/gmip.1999.0491 +Rez Khan,Surface-based analysis methods for high-resolution functional magnetic resonance imaging.,2011,73,Graphical Models,6,db/journals/cvgip/cvgip73.html#KhanZDDKGBR11,https://doi.org/10.1016/j.gmod.2010.11.002 +Guo-Zhao Wang,Higher Order Derivatives of a Rational Bézier Curve.,1995,57,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip57.html#WangW95,https://doi.org/10.1006/gmip.1995.1023 +R. K. Dodd,A New Approach to the Visualization of Tensor Fields.,1998,60,Graphical Models and Image Processing,4,db/journals/cvgip/cvgip60.html#Dodd98,https://doi.org/10.1006/gmip.1998.0473 +Evelyne Hubert,Convolution surfaces based on polygons for infinite and compact support kernels.,2012,74,Graphical Models,1,db/journals/cvgip/cvgip74.html#Hubert12,https://doi.org/10.1016/j.gmod.2011.07.001 +Gilles Bertrand 0001,"A Note on ""Building Skeleton Models via 3-D Medial Surface/Axis Thinning Algorithms"".",1995,57,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip57.html#BertrandM95,https://doi.org/10.1006/gmip.1995.1045 +Qianwen Chao,Video-based personalized traffic learning.,2013,75,Graphical Models,6,db/journals/cvgip/cvgip75.html#ChaoSJ13,https://doi.org/10.1016/j.gmod.2013.07.003 +Chung-Nim Lee,Representation of orthogonal regions by vertices.,1991,53,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip53.html#LeePR91,https://doi.org/10.1016/1049-9652(91)90058-R +Marc A. Stoksik,Practical Synthesis of Accurate Fractal Images.,1995,57,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip57.html#StoksikLN95,https://doi.org/10.1006/gmip.1995.1020 +C. H. Li,Image Smoothing Using Parametric Relaxation.,1995,57,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip57.html#LiL95,https://doi.org/10.1006/gmip.1995.1016 +Bing Zhang 0005,NOTE: Blind Restoration of Degraded Binary Markov Random Field Images.,1996,58,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip58.html#ZhangSN96,https://doi.org/10.1006/gmip.1996.0007 +Paul A. Philippou,Vector Field Analysis and Synthesis Using Three-Dimensional Phase Portraits.,1997,59,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip59.html#PhilippouS97,https://doi.org/10.1006/gmip.1997.0445 +G. F. McLean,Geometric Correction of Digitized Art.,1996,58,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip58.html#McLean96,https://doi.org/10.1006/gmip.1996.0012 +Aris M. Ouksel,The Interpolation-Based Bintree and encoding of binary images.,1992,54,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip54.html#OukselY92,https://doi.org/10.1016/1049-9652(92)90035-V +Kari Pulli,Surface Reconstruction and Display from Range and Color Data.,2000,62,Graphical Models,3,db/journals/cvgip/cvgip62.html#PulliS00,https://doi.org/10.1006/gmod.1999.0519 +Ken Higuchi,Building 3-D Models from Unregistered Range Images.,1995,57,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip57.html#HiguchiHI95,https://doi.org/10.1006/gmip.1995.1028 +Robert Sedgewick,Computer graphics for drafting.,1974,3,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip3.html#Sedgewick74,https://doi.org/10.1016/S0146-664X(74)80002-X +Charles Albert Wüthrich,An algorithmic comparison between square- and hexagonal-based grids.,1991,53,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip53.html#WuthrichS91,https://doi.org/10.1016/1049-9652(91)90036-J +L. Gibson,Vectorization of raster images using hierarchical methods.,1982,20,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip20.html#GibsonL82,https://doi.org/10.1016/0146-664X(82)90075-2 +Peter Veelaert,Constructive Fitting and Extraction of Geometric Primitives.,1997,59,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip59.html#Veelaert97,https://doi.org/10.1006/gmip.1997.0433 +Sarah A. Rajala,Application of the one-dimensional fourier transform for tracking moving objects in noisy environments.,1982,20,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip20.html#RajalaRS82,https://doi.org/10.1016/0146-664X(82)90054-5 +Aldo Cumani,Edge detection in multispectral images.,1991,53,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip53.html#Cumani91,https://doi.org/10.1016/1049-9652(91)90018-F +Yi-Jun Yang,Intrinsic parameterization and registration of graph constrained surfaces.,2018,97,Graphical Models,,db/journals/cvgip/cvgip97.html#YangRZ18,https://doi.org/10.1016/j.gmod.2018.03.002 +Sun-Young Lee,CartoonModes: Cartoon stylization of video objects through modal analysis.,2012,74,Graphical Models,2,db/journals/cvgip/cvgip74.html#LeeYKL12,https://doi.org/10.1016/j.gmod.2012.02.001 +Oscar Ripolles,Rendering continuous level-of-detail meshes by Masking Strips.,2009,71,Graphical Models,5,db/journals/cvgip/cvgip71.html#RipollesCGRP09,https://doi.org/10.1016/j.gmod.2009.05.002 +N. T. Gaarder,Algorithms for reproducing objects from their X-rays.,1972,1,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip1.html#GaarderH72,https://doi.org/10.1016/S0146-664X(72)80009-1 +Yu-Kun Lai,Vertex location optimisation for improved remeshing.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#LaiM12,https://doi.org/10.1016/j.gmod.2012.04.011 +Yazid M. Sharaiha,An Optimal Algorithm for the Straight Segment Approximation of Digital Arcs.,1993,55,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip55.html#SharaihaC93,https://doi.org/10.1006/cgip.1993.1030 +Leonie Dreschler,Volumetric model and 3D trajectory of a moving car derived from monocular TV frame sequences of a street scene.,1982,20,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip20.html#DreschlerN82,https://doi.org/10.1016/0146-664X(82)90081-8 +C. K. Chow,Some computer experiments in picture processing for data compaction.,1974,3,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip3.html#ChowDL74,https://doi.org/10.1016/0146-664X(74)90014-8 +Linlin Xu,Survey on sparsity in geometric modeling and processing.,2015,82,Graphical Models,,db/journals/cvgip/cvgip82.html#XuWZYDCL15,https://doi.org/10.1016/j.gmod.2015.06.012 +Mattia Natali,Graph-based representations of point clouds.,2011,73,Graphical Models,5,db/journals/cvgip/cvgip73.html#NataliBPF11,https://doi.org/10.1016/j.gmod.2011.03.002 +Y. P. Chien,A decision function method for boundary detection.,1974,3,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip3.html#ChienF74,https://doi.org/10.1016/S0146-664X(74)80003-1 +V. S. N. Reddy,Some experiments in scene analysis and scene regeneration using COMPAX.,1972,1,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip1.html#ReddyN72,https://doi.org/10.1016/0146-664X(72)90023-8 +Guillermo Sapiro,Contrast Enhancement via Image Evolution Flow.,1997,59,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip59.html#SapiroC97,https://doi.org/10.1006/gmip.1997.0446 +Sudhanshu Kumar Semwal,Spatial Filtering Using the Active-Space Indexing Method.,2001,63,Graphical Models,3,db/journals/cvgip/cvgip63.html#SemwalO01,https://doi.org/10.1006/gmod.2001.0540 +Kwang-Jin Choi,Processing Motion Capture Data to Achieve Positional Accuracy.,1999,61,Graphical Models and Image Processing,5,db/journals/cvgip/cvgip61.html#ChoiPK99,https://doi.org/10.1006/gmip.1999.0505 +Charles R. Dyer,The space efficiency of quadtrees.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Dyer82,https://doi.org/10.1016/0146-664X(82)90143-5 +Per-Erik Danielsson,High-accuracy rotation of images.,1992,54,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip54.html#DanielssonH92,https://doi.org/10.1016/1049-9652(92)90080-H +Shuangming Chai,Stress-oriented structural optimization for frame structures.,2018,97,Graphical Models,,db/journals/cvgip/cvgip97.html#ChaiCJYLFL18,https://doi.org/10.1016/j.gmod.2018.04.002 +David W. Paglieroni,Distance transforms: Properties and machine vision applications.,1992,54,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip54.html#Paglieroni92,https://doi.org/10.1016/1049-9652(92)90034-U +Bin Sheng,Efficient non-incremental constructive solid geometry evaluation for triangular meshes.,2018,97,Graphical Models,,db/journals/cvgip/cvgip97.html#ShengLFMW18,https://doi.org/10.1016/j.gmod.2018.03.001 +Jia-Guu Leu,Image contrast enhancement based on the intensities of edge pixels.,1992,54,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip54.html#Leu92,https://doi.org/10.1016/1049-9652(92)90069-A +Chengda Yang,Efficient Stochastic Algorithms on Locally Bounded Image Space.,1993,55,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip55.html#Yang93,https://doi.org/10.1006/cgip.1993.1037 +Ron Goldman 0002,Modeling perspective projections in 3-dimensions by rotations in 4-dimensions.,2013,75,Graphical Models,2,db/journals/cvgip/cvgip75.html#Goldman13,https://doi.org/10.1016/j.gmod.2012.10.002 +Alan E. Cowart,The detection of unresolved targets using the hough transform.,1982,20,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip20.html#CowartSR82,https://doi.org/10.1016/0146-664X(82)90051-X +Jun Shen 0004,An optimal linear operator for step edge detection.,1992,54,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip54.html#ShenC92,https://doi.org/10.1016/1049-9652(92)90060-B +Jie Zhou,Improved Codebook Edge Detection.,1995,57,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip57.html#ZhouPD95,https://doi.org/10.1006/gmip.1995.1044 +Troy T. Chinen,A Performance Analysis of Fast Gabor Transform Methods.,1997,59,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip59.html#ChinenR97,https://doi.org/10.1006/gmip.1997.0421 +Xumin Liu,Hyperbolic polynomial uniform B-spline curves and surfaces with shape parameter.,2010,72,Graphical Models,1,db/journals/cvgip/cvgip72.html#LiuXGS10,https://doi.org/10.1016/j.gmod.2009.10.001 +Rasmus Tamstorf,Discrete bending forces and their Jacobians.,2013,75,Graphical Models,6,db/journals/cvgip/cvgip75.html#TamstorfG13,https://doi.org/10.1016/j.gmod.2013.07.001 +Martin Marinov,Optimization methods for scattered data approximation with subdivision surfaces.,2005,67,Graphical Models,5,db/journals/cvgip/cvgip67.html#MarinovK05,https://doi.org/10.1016/j.gmod.2005.01.003 +Franck Neycenssac,Contrast Enhancement Using the Laplacian-of-a-Gaussian Filter.,1993,55,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip55.html#Neycenssac93,https://doi.org/10.1006/cgip.1993.1034 +Svetha Venkatesh,Dynamic Threshold Determination by Local and Global Edge Evaluation.,1995,57,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip57.html#VenkateshR95,https://doi.org/10.1006/gmip.1995.1015 +Stuart Geman,A nonlinear filter for film restoration and other problems in image processing.,1992,54,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip54.html#GemanMG92,https://doi.org/10.1016/1049-9652(92)90075-9 +Lori L. Scarlatos,Hierarchical triangulation using cartographic coherence.,1992,54,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip54.html#ScarlatosP92,https://doi.org/10.1016/1049-9652(92)90062-3 +Rongjiang Pan,Color adjustment in image-based texture maps.,2015,79,Graphical Models,,db/journals/cvgip/cvgip79.html#PanT15,https://doi.org/10.1016/j.gmod.2015.04.002 +Alain Le Négrate,An image enhancement technique and its evaluation through bimodality analysis.,1992,54,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip54.html#NegrateBD92,https://doi.org/10.1016/1049-9652(92)90030-2 +Leo Levi,Unsharp masking and related image enhancement techniques.,1974,3,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip3.html#Levi74,https://doi.org/10.1016/S0146-664X(74)80005-5 +Jun Wang 0039,Quality mesh smoothing via local surface fitting and optimum projection.,2011,73,Graphical Models,4,db/journals/cvgip/cvgip73.html#WangY11,https://doi.org/10.1016/j.gmod.2011.01.002 +Christian Lovato,Automatic labelling of anatomical landmarks on 3D body scans.,2014,76,Graphical Models,6,db/journals/cvgip/cvgip76.html#LovatoCZG14,https://doi.org/10.1016/j.gmod.2014.07.001 +John M. Gauch,Investigations of image contrast space defined by variations on histogram equalization.,1992,54,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip54.html#Gauch92,https://doi.org/10.1016/1049-9652(92)90074-8 +Azriel Rosenfeld,Picture processing: 1972.,1972,1,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip1.html#Rosenfeld72,https://doi.org/10.1016/0146-664X(72)90024-X +Jean Hsu,Visible Light and X-Ray Ray Tracing of Generalized Cylinders.,1994,56,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip56.html#HsuC94,https://doi.org/10.1006/cgip.1994.1035 +Long-Wen Chang,Reconstruction of 3D medical images: A nonlinear interpolation technique for reconstruction of 3D medical images.,1991,53,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip53.html#ChangCH91,https://doi.org/10.1016/1049-9652(91)90041-H +Heidrun Mühlthaler,Computing the Minkowski sum of ruled surfaces.,2003,65,Graphical Models,6,db/journals/cvgip/cvgip65.html#MuhlthalerP03,https://doi.org/10.1016/j.gmod.2003.07.003 +Zhong Li,Skeleton-enhanced line drawings for 3D models.,2014,76,Graphical Models,6,db/journals/cvgip/cvgip76.html#LiQ0YL14,https://doi.org/10.1016/j.gmod.2014.07.002 +Samuel M. Thomas,Cramer-Rao Lower Bounds for Estimation of a Circular Arc Center and Its Radius.,1995,57,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip57.html#ThomasC95,https://doi.org/10.1006/gmip.1995.1043 +Wolfgang Boehm,On cubics: A survey.,1982,19,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip19.html#Boehm82a,https://doi.org/10.1016/0146-664X(82)90009-0 +Gershon Elber,Geometric Shape Recognition of Freeform Curves and Surfaces.,1997,59,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip59.html#ElberK97,https://doi.org/10.1006/gmip.1997.0441 +Luigi Bedini,A Deterministic Algorithm for Reconstructing Images with Interacting Discontinuities.,1994,56,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip56.html#BediniGT94,https://doi.org/10.1006/cgip.1994.1011 +Mathieu Huard,C2 interpolation of spatial data subject to arc-length constraints using Pythagorean-hodograph quintic splines.,2014,76,Graphical Models,1,db/journals/cvgip/cvgip76.html#HuardFSB14,https://doi.org/10.1016/j.gmod.2013.10.005 +Giovanni Gallo,Fuzzy B-Splines: A Surface Model Encapsulating Uncertainty.,2000,62,Graphical Models,1,db/journals/cvgip/cvgip62.html#GalloSS00,https://doi.org/10.1006/gmod.1999.0512 +Yang Gao,An efficient heat-based model for solid-liquid-gas phase transition and dynamic interaction.,2017,94,Graphical Models,,db/journals/cvgip/cvgip94.html#GaoLYQH17,https://doi.org/10.1016/j.gmod.2017.09.001 +Paolo Cignoni,Zeta: A Resolution Modeling System.,1998,60,Graphical Models and Image Processing,5,db/journals/cvgip/cvgip60.html#CignoniMRS98,https://doi.org/10.1006/gmip.1998.0477 +Kikuo Fujimura,Foldover-Free Image Warping.,1998,60,Graphical Models and Image Processing,2,db/journals/cvgip/cvgip60.html#FujimuraM98,https://doi.org/10.1006/gmip.1998.0454 +Wen Zheng,Simulation of bubbles.,2009,71,Graphical Models,6,db/journals/cvgip/cvgip71.html#ZhengYP09,https://doi.org/10.1016/j.gmod.2009.08.001 +R. Fabian,Robust identification of motion and out-of-focus blur parameters from blurred and noisy images.,1991,53,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip53.html#FabianM91,https://doi.org/10.1016/1049-9652(91)90025-F +Hongcheng Wang,Videoshop: A new framework for spatio-temporal video editing in gradient domain.,2007,69,Graphical Models,1,db/journals/cvgip/cvgip69.html#WangXRA07,https://doi.org/10.1016/j.gmod.2006.06.002 +Niloy J. Mitra,Editorial Special issue on the fifth Computational Visual Media conference (CVM 2017).,2017,91,Graphical Models,,db/journals/cvgip/cvgip91.html#MitraYC17,https://doi.org/10.1016/j.gmod.2017.05.001 +Kambiz Rahbar,Inside looking out camera pose estimation for virtual studio.,2008,70,Graphical Models,4,db/journals/cvgip/cvgip70.html#RahbarP08,https://doi.org/10.1016/j.gmod.2008.01.001 +Anna R. Bruss,Passive navigation.,1982,20,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip20.html#BrussH82,https://doi.org/10.1016/0146-664X(82)90046-6 +Devendra Jalihal,Signal Detection Theory Approach to the Multiple Parallel Moving Targets Problem.,1993,55,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip55.html#JalihalN93,https://doi.org/10.1006/cgip.1993.1017 +Luis Unzueta,Full-body performance animation with Sequential Inverse Kinematics.,2008,70,Graphical Models,5,db/journals/cvgip/cvgip70.html#UnzuetaPBS08,https://doi.org/10.1016/j.gmod.2008.03.002 +Xue Dong Yang,The Cluster Hair Model.,2000,62,Graphical Models,2,db/journals/cvgip/cvgip62.html#YangXYW00,https://doi.org/10.1006/gmod.1999.0518 +Steven M. Rubin,The representation and display of scenes with a wide range of detail.,1982,19,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip19.html#Rubin82a,https://doi.org/10.1016/0146-664X(82)90014-4 +Jens Gregor,Indoor Scene Reconstruction from Sets of Noisy Range Images.,2001,63,Graphical Models,5,db/journals/cvgip/cvgip63.html#GregorW01,https://doi.org/10.1006/gmod.2001.0562 +Weiwen Wang,Large-eddy simulations of pedestrian-level ventilation for assessing a satellite-based approach to urban geometry generation.,2018,95,Graphical Models,,db/journals/cvgip/cvgip95.html#WangXN18,https://doi.org/10.1016/j.gmod.2017.06.003 +Doug L. James,Symposium on Computer Animation 2008.,2009,71,Graphical Models,4,db/journals/cvgip/cvgip71.html#James09,https://doi.org/10.1016/j.gmod.2009.05.001 +Suriya Natsupakpong,Determination of elasticity parameters in lumped element (mass-spring) models of deformable objects.,2010,72,Graphical Models,6,db/journals/cvgip/cvgip72.html#NatsupakpongC10,https://doi.org/10.1016/j.gmod.2010.10.001 +Huazhong Shu,An Efficient Method for Computation of Legendre Moments.,2000,62,Graphical Models,4,db/journals/cvgip/cvgip62.html#ShuLBYH00,https://doi.org/10.1006/gmod.2000.0523 +Henning Biermann,Sharp Features on Multiresolution Subdivision Surfaces.,2002,64,Graphical Models,2,db/journals/cvgip/cvgip64.html#BiermannMZB02,https://doi.org/10.1006/gmod.2002.0570 +Christian Theobalt,Combining 3D flow fields with silhouette-based human motion capture for immersive video.,2004,66,Graphical Models,6,db/journals/cvgip/cvgip66.html#TheobaltCMS04,https://doi.org/10.1016/j.gmod.2004.06.009 +Gerald E. Farin,A construction for visual C1 continuity of polynomial surface patches.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Farin82a,https://doi.org/10.1016/0146-664X(82)90166-6 +Jinyuan Jia,Preface of the special issue advances in Web3D.,2016,88,Graphical Models,,db/journals/cvgip/cvgip88.html#Jia16,https://doi.org/10.1016/j.gmod.2016.10.001 +Minglun Gong,Camera field rendering for static and dynamic scenes.,2005,67,Graphical Models,2,db/journals/cvgip/cvgip67.html#GongY05,https://doi.org/10.1016/j.gmod.2004.06.004 +Lynne MacLachlan,Exploration of multi-material surfaces as weighted shapes.,2016,83,Graphical Models,,db/journals/cvgip/cvgip83.html#MacLachlanJ16,https://doi.org/10.1016/j.gmod.2015.07.002 +Friedrich M. Wahl,Block segmentation and text extraction in mixed text/image documents.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#WahlWC82a,https://doi.org/10.1016/0146-664X(82)90168-X +Wen-Yen Wu,Detecting the Dominant Points by the Curvature-Based Polygonal Approximation.,1993,55,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip55.html#WuW93,https://doi.org/10.1006/cgip.1993.1006 +J. Alex Stark,An Alternative Algorithm for Adaptive Histogram Equalization.,1996,58,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip58.html#StarkF96,https://doi.org/10.1006/gmip.1996.0015 +László G. Nyúl,Fuzzy-connected 3D image segmentation at interactive speeds.,2002,64,Graphical Models,5,db/journals/cvgip/cvgip64.html#NyulFU02,https://doi.org/10.1016/S1077-3169(02)00005-9 +John P. Collomosse,Rendering cartoon-style motion cues in post-production video.,2005,67,Graphical Models,6,db/journals/cvgip/cvgip67.html#CollomosseRH05,https://doi.org/10.1016/j.gmod.2004.12.002 +Markus Kronenberger,Gaussian curvature using fundamental forms for binary voxel data.,2015,82,Graphical Models,,db/journals/cvgip/cvgip82.html#KronenbergerWFH15,https://doi.org/10.1016/j.gmod.2015.06.009 +Marc Vigo Anglada,Efficient algorithms for boundary extraction of 2D and 3D orthogonal pseudomanifolds.,2012,74,Graphical Models,3,db/journals/cvgip/cvgip74.html#AngladaGAM12,https://doi.org/10.1016/j.gmod.2012.03.004 +Arpan Biswas,Approximate distance fields with non-vanishing gradients.,2004,66,Graphical Models,3,db/journals/cvgip/cvgip66.html#BiswasS04,https://doi.org/10.1016/j.gmod.2004.01.003 +Ron Goldman 0002,An Extension of Chaiken's Algorithm to B-Spline Curves with Knots in Geometric Progression.,1993,55,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip55.html#GoldmanW93,https://doi.org/10.1006/cgip.1993.1004 +Laurent Busé,Extraction of cylinders and cones from minimal point sets.,2016,86,Graphical Models,,db/journals/cvgip/cvgip86.html#BuseGZ16,https://doi.org/10.1016/j.gmod.2016.05.003 +Abhijit G. Shanbhag,Utilization of Information Measure as a Means of Image Thresholding.,1994,56,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip56.html#Shanbhag94,https://doi.org/10.1006/cgip.1994.1037 +Hadi Fadaifard,Multiscale 3D feature extraction and matching with an application to 3D face recognition.,2013,75,Graphical Models,4,db/journals/cvgip/cvgip75.html#FadaifardWH13,https://doi.org/10.1016/j.gmod.2013.01.002 +Ivaturi S. N. Murthy,A search algorithm for skeletonization of thick patterns.,1974,3,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip3.html#MurthyU74,https://doi.org/10.1016/0146-664X(74)90018-5 +Pierre Allain,Optimal crowd editing.,2014,76,Graphical Models,1,db/journals/cvgip/cvgip76.html#AllainCC14,https://doi.org/10.1016/j.gmod.2013.09.001 +Heewon Kye,Interactive classification for pre-integrated volume rendering of high-precision volume data.,2008,70,Graphical Models,6,db/journals/cvgip/cvgip70.html#KyeSS08,https://doi.org/10.1016/j.gmod.2008.05.001 +M. L. V. Pitteway,"Integer Circles, Etc. - three move extension of Bresenham's algorithm.",1974,3,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip3.html#PittewyB74,https://doi.org/10.1016/0146-664X(74)90019-7 +Valentin E. Brimkov,Connected distance-based rasterization of objects in arbitrary dimension.,2011,73,Graphical Models,6,db/journals/cvgip/cvgip73.html#BrimkovBB11,https://doi.org/10.1016/j.gmod.2011.06.002 +Pierre Alliez,Centroidal Voronoi diagrams for isotropic surface remeshing.,2005,67,Graphical Models,3,db/journals/cvgip/cvgip67.html#AlliezVDI05,https://doi.org/10.1016/j.gmod.2004.06.007 +Scott D. Roth,Ray casting for modeling solids.,1982,18,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip18.html#Roth82,https://doi.org/10.1016/0146-664X(82)90169-1 +S. Louis Hakimi,Fitting polygonal functions to a set of points in the plane.,1991,53,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip53.html#HakimiS91,https://doi.org/10.1016/1049-9652(91)90056-P +Daniel Bielser,A state machine for real-time cutting of tetrahedral meshes.,2004,66,Graphical Models,6,db/journals/cvgip/cvgip66.html#BielserGTG04,https://doi.org/10.1016/j.gmod.2004.05.009 +Hayley N. Iben,Generating surface crack patterns.,2009,71,Graphical Models,6,db/journals/cvgip/cvgip71.html#IbenO09,https://doi.org/10.1016/j.gmod.2008.12.005 +Javier Lluch,Modelling tree structures using a single polygonal mesh.,2004,66,Graphical Models,2,db/journals/cvgip/cvgip66.html#LluchVM04,https://doi.org/10.1016/j.gmod.2004.01.002 +Iddo Hanniel,Computing the Hausdorff distance between NURBS surfaces using numerical iteration on the GPU.,2012,74,Graphical Models,4,db/journals/cvgip/cvgip74.html#HannielKM12,https://doi.org/10.1016/j.gmod.2012.05.002 +Michael F. Goodchild,A hierarchical spatial data structure for global geographic information systems.,1992,54,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip54.html#GoodchildS92,https://doi.org/10.1016/1049-9652(92)90032-S +Gabor T. Herman,Finitary 1-Simply Connected Digital Spaces.,1998,60,Graphical Models and Image Processing,1,db/journals/cvgip/cvgip60.html#Herman98,https://doi.org/10.1006/gmip.1997.0456 +Martin Peternell,Geometric Properties of Bisector Surfaces.,2000,62,Graphical Models,3,db/journals/cvgip/cvgip62.html#Peternell00,https://doi.org/10.1006/gmod.1999.0521 +Yachin Pnueli,Gridless Halftoning: A Reincarnation of the Old Method.,1996,58,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip58.html#PnueliB96,https://doi.org/10.1006/gmip.1996.0003 +K. B. Irani,An approach to the optimum implementation of interactive display data structures.,1972,1,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip1.html#IraniJ72,https://doi.org/10.1016/S0146-664X(72)80016-9 +Tamar Peli,A study of edge detection algorithms.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#Peli82,https://doi.org/10.1016/0146-664X(82)90136-8 +Edward S. Deutsch,Texture descriptors using neighborhood information.,1972,1,Computer Graphics and Image Processing,2,db/journals/cvgip/cvgip1.html#DeutschB72,https://doi.org/10.1016/S0146-664X(72)80012-1 +Thomas S. Huang,Digital transmission of halftone pictures.,1974,3,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip3.html#Huang74,https://doi.org/10.1016/0146-664X(74)90013-6 +Thomas W. Sederberg,Approximate Implicitization Using Monoid Curves and Surfaces.,1999,61,Graphical Models and Image Processing,4,db/journals/cvgip/cvgip61.html#SederbergZKD99,https://doi.org/10.1006/gmip.1999.0497 +Guiqing Li,A unified approach for fairing arbitrary polygonal meshes.,2004,66,Graphical Models,3,db/journals/cvgip/cvgip66.html#LiBM04,https://doi.org/10.1016/j.gmod.2004.03.001 +David H. Eberly,On gray scale image measurements : I. Arc length and area.,1991,53,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip53.html#EberlyL91,https://doi.org/10.1016/1049-9652(91)90004-4 +Guojin Wang,The termination criterion for subdivision of the rational Bézier curves.,1991,53,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip53.html#WangX91,https://doi.org/10.1016/1049-9652(91)90023-D +Günther Greiner,Scattered Data Interpolation Using Data Dependant Optimization Techniques.,2002,64,Graphical Models,1,db/journals/cvgip/cvgip64.html#GreinerKR02,https://doi.org/10.1006/gmod.2001.0542 +Fabio A. Schreiber,Use of Neural Networks to Estimate the Number of Nodes of an Edge Quadtree.,1997,59,CVGIP: Graphical Model and Image Processing,2,db/journals/cvgip/cvgip59.html#SchreiberW97,https://doi.org/10.1006/gmip.1996.0417 +Binh Pham 0001,Expressive brush strokes.,1991,53,CVGIP: Graphical Model and Image Processing,1,db/journals/cvgip/cvgip53.html#Pham91,https://doi.org/10.1016/1049-9652(91)90013-A +Sarah H. Peckinpaugh,An improved method for computing gray-level cooccurrence matrix based texture measures.,1991,53,CVGIP: Graphical Model and Image Processing,6,db/journals/cvgip/cvgip53.html#Peckinpaugh91,https://doi.org/10.1016/1049-9652(91)90007-7 +Jirí Kosinka,Creases and boundary conditions for subdivision curves.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#KosinkaSD14,https://doi.org/10.1016/j.gmod.2014.03.004 +Jan Myrheim,New algorithms for maximum entropy image restoration.,1992,54,CVGIP: Graphical Model and Image Processing,3,db/journals/cvgip/cvgip54.html#MyrheimR92,https://doi.org/10.1016/1049-9652(92)90053-Z +F. R. Hansen,Image segmentation using simple markov field models.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#HansenE82a,https://doi.org/10.1016/0146-664X(82)90130-7 +Won-Ki Jeong,Direct Reconstruction of a Displaced Subdivision Surface from Unorganized Points.,2002,64,Graphical Models,2,db/journals/cvgip/cvgip64.html#JeongK02,https://doi.org/10.1006/gmod.2002.0572 +John T. Hooks Jr.,On 3-D Real-Time Perspective Generation from a Multiresolution Photo-Mosaic Data Base.,1993,55,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip55.html#HooksMD93,https://doi.org/10.1006/cgip.1993.1025 +Chun-Gang Zhu,Self-intersections of rational Bézier curves.,2014,76,Graphical Models,5,db/journals/cvgip/cvgip76.html#ZhuZ14,https://doi.org/10.1016/j.gmod.2014.04.001 +Federico Ponchio,Multiresolution and fast decompression for optimal web-based rendering.,2016,88,Graphical Models,,db/journals/cvgip/cvgip88.html#PonchioD16,https://doi.org/10.1016/j.gmod.2016.09.002 +Shujin Lin,A new interpolation subdivision scheme for triangle/quad mesh.,2013,75,Graphical Models,5,db/journals/cvgip/cvgip75.html#LinLX013,https://doi.org/10.1016/j.gmod.2013.03.002 +Venkata Sreekanth Arikatla,An iterative predictor-corrector approach for modeling static and kinetic friction in interactive simulations.,2015,82,Graphical Models,,db/journals/cvgip/cvgip82.html#ArikatlaD15,https://doi.org/10.1016/j.gmod.2015.10.001 +Wei Jiang,Curve skeleton extraction by coupled graph contraction and surface clustering.,2013,75,Graphical Models,3,db/journals/cvgip/cvgip75.html#Jiang0CMD13,https://doi.org/10.1016/j.gmod.2012.10.005 +Nelson J. Bridwell,A discrete spatial representation for lateral motion stereo.,1982,20,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip20.html#BridwellH82,https://doi.org/10.1016/0146-664X(82)90088-0 +Gift Siromoney,Abstract families of matrices and picture languages.,1972,1,Computer Graphics and Image Processing,3,db/journals/cvgip/cvgip1.html#SiromoneySK72,https://doi.org/10.1016/S0146-664X(72)80019-4 +Wenlan Ba,Geometry of 3D MAT and its application to moulding surfaces.,2015,82,Graphical Models,,db/journals/cvgip/cvgip82.html#BaRC15,https://doi.org/10.1016/j.gmod.2015.09.004 +Mikhail Shnaider,Image Coding throughDLattice Quantization of Wavelet Coefficients.,1997,59,CVGIP: Graphical Model and Image Processing,4,db/journals/cvgip/cvgip59.html#ShnaiderP97,https://doi.org/10.1006/gmip.1997.0429 +S. H. Joseph,Unbiased Least Squares Fitting of Circular Arcs.,1994,56,CVGIP: Graphical Model and Image Processing,5,db/journals/cvgip/cvgip56.html#Joseph94,https://doi.org/10.1006/cgip.1994.1039 +Albert M. Vossepoel,Vector code probability and metrication error in the representation of straight lines of finite length.,1982,19,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip19.html#VossepoelS82a,https://doi.org/10.1016/0146-664X(82)90119-8 +J. K. Wu,Adaptive bit allocation for image compression.,1982,19,Computer Graphics and Image Processing,4,db/journals/cvgip/cvgip19.html#WuB82a,https://doi.org/10.1016/0146-664X(82)90024-7 +Jeffrey L. Posdamer,Surface measurement by space-encoded projected beam systems.,1982,18,Computer Graphics and Image Processing,1,db/journals/cvgip/cvgip18.html#PosdamerA82,https://doi.org/10.1016/0146-664X(82)90096-X +Weidong Shi,Memory-Centric Security Architecture.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#ShiLL07,https://doi.org/10.1007/978-3-540-71528-3_7 +Hans Vandierendonck,Fetch Gating Control through Speculative Instruction Window Weighting.,2009,2,Trans. HiPEAC,,db/journals/thipeac/thipeac2.html#VandierendonckS09,https://doi.org/10.1007/978-3-642-00904-4_8 +Arnaldo Azevedo,A Highly Scalable Parallel Implementation of H.264.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#AzevedoJMTHARV11,https://doi.org/10.1007/978-3-642-24568-8_6 +Nan Yuan,An Efficient and Flexible Task Management for Many Cores.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#YuanYF11,https://doi.org/10.1007/978-3-642-24568-8_15 +Subhradyuti Sarkar,Data Layout for Cache Performance on a Multithreaded Architecture.,2011,3,Trans. HiPEAC,,db/journals/thipeac/thipeac3.html#SarkarT11,https://doi.org/10.1007/978-3-642-19448-1_3 +Dominique Chanet,Linux Kernel Compaction through Cold Code Swapping.,2009,2,Trans. HiPEAC,,db/journals/thipeac/thipeac2.html#ChanetCMNB09,https://doi.org/10.1007/978-3-642-00904-4_10 +Stanley Jaddoe,Signature-Based Calibration of Analytical Performance Models for System-Level Design Space Exploration.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#JaddoeTP11,https://doi.org/10.1007/978-3-642-24568-8_21 +Iyad Al Khatib,Hardware/Software Architecture for Real-Time ECG Monitoring and Analysis Leveraging MPSoC Technology.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#KhatibBPBJBKHNJ07,https://doi.org/10.1007/978-3-540-71528-3_16 +Tobias Klug,autopin - Automated Optimization of Thread-to-Core Pinning on Multicore Systems.,2011,3,Trans. HiPEAC,,db/journals/thipeac/thipeac3.html#KlugOWT11,https://doi.org/10.1007/978-3-642-19448-1_12 +Minwook Ahn,Fast Code Generation for Embedded Processors with Aliased Heterogeneous Registers.,2009,2,Trans. HiPEAC,,db/journals/thipeac/thipeac2.html#AhnP09,https://doi.org/10.1007/978-3-642-00904-4_9 +Valeriu Beiu,On Two-Layer Brain-Inspired Hierarchical Topologies - A Rent's Rule Approach -.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#BeiuMKM11,https://doi.org/10.1007/978-3-642-24568-8_16 +Ben Cope,A Systematic Design Space Exploration Approach to Customising Multi-Processor Architectures: Exemplified Using Graphics Processors.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#CopeCLH11,https://doi.org/10.1007/978-3-642-24568-8_4 +Chun-Chieh Lin,Cache Sensitive Code Arrangement for Virtual Machine.,2011,3,Trans. HiPEAC,,db/journals/thipeac/thipeac3.html#LinC11,https://doi.org/10.1007/978-3-642-19448-1_2 +Michael F. P. O'Boyle,Introduction to Part 2.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#OBoyleBC07,https://doi.org/10.1007/978-3-540-71528-3_9 +Jan Hoogerbrugge,A Multithreaded Multicore System for Embedded Media Processing.,2011,3,Trans. HiPEAC,,db/journals/thipeac/thipeac3.html#HoogerbruggeT11,https://doi.org/10.1007/978-3-642-19448-1_9 +Aneesh Aggarwal,Complexity Effective Bypass Networks.,2009,2,Trans. HiPEAC,,db/journals/thipeac/thipeac2.html#Aggarwal09,https://doi.org/10.1007/978-3-642-00904-4_11 +Daniel Llorente,Advanced Packet Segmentation and Buffering Algorithms in Network Processors.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#LlorenteKWH11,https://doi.org/10.1007/978-3-642-24568-8_17 +Tarik Saidani,Parallelization Schemes for Memory Optimization on the Cell Processor: A Case Study on the Harris Corner Detector.,2011,3,Trans. HiPEAC,,db/journals/thipeac/thipeac3.html#SaidaniLFTB11,https://doi.org/10.1007/978-3-642-19448-1_10 +Adam Welc,Software Transactional Memory Validation - Time and Space Considerations.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#WelcS11,https://doi.org/10.1007/978-3-642-24568-8_13 +Michael B. Henry,Hybrid Super/Subthreshold Design of a Low Power Scalable-Throughput FFT Architecture.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#HenryN11,https://doi.org/10.1007/978-3-642-24568-8_9 +Vijay Nagarajan,Compiler-Assisted Memory Encryption for Embedded Processors.,2009,2,Trans. HiPEAC,,db/journals/thipeac/thipeac2.html#NagarajanGK09,https://doi.org/10.1007/978-3-642-00904-4_3 +Ghaffari Fakhreddine,Dynamic and On-Line Design Space Exploration for Reconfigurable Architectures.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#FakhreddineAAJ07,https://doi.org/10.1007/978-3-540-71528-3_12 +Omer Khan,Microvisor: A Runtime Architecture for Thermal Management in Chip Multiprocessors.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#KhanK11,https://doi.org/10.1007/978-3-642-24568-8_5 +Mohammad Ansari,Robust Adaptation to Available Parallelism in Transactional Memory Applications.,2011,3,Trans. HiPEAC,,db/journals/thipeac/thipeac3.html#AnsariLKJKW11,https://doi.org/10.1007/978-3-642-19448-1_13 +Amit Golander,Reexecution and Selective Reuse in Checkpoint Processors.,2009,2,Trans. HiPEAC,,db/journals/thipeac/thipeac2.html#GolanderW09,https://doi.org/10.1007/978-3-642-00904-4_13 +Michael J. Geiger,Specializing Cache Structures for High Performance and Energy Conservation in Embedded Systems.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#GeigerMT07,https://doi.org/10.1007/978-3-540-71528-3_5 +Shane Ryoo,Automatic Discovery of Coarse-Grained Parallelism in Media Applications.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#RyooURKFH07,https://doi.org/10.1007/978-3-540-71528-3_13 +Simon Kluyskens,Branch Predictor Warmup for Sampled Simulation through Branch History Matching.,2009,2,Trans. HiPEAC,,db/journals/thipeac/thipeac2.html#KluyskensE09,https://doi.org/10.1007/978-3-642-00904-4_4 +Frederik Vandeputte,Characterizing Time-Varying Program Behavior Using Phase Complexity Surfaces.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#VandeputteE11,https://doi.org/10.1007/978-3-642-24568-8_2 +Nan Wu 0003,Tiled Multi-Core Stream Architecture.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#WuYWHRGZ11,https://doi.org/10.1007/978-3-642-24568-8_14 +William Plishker,Heterogeneous Design in Functional DIF.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#PlishkerSKB11,https://doi.org/10.1007/978-3-642-24568-8_20 +Dries Buytaert,GCH: Hints for Triggering Garbage Collections.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#BuytaertVEB07,https://doi.org/10.1007/978-3-540-71528-3_6 +Khaled Z. Ibrahim,Power-Aware Bus Coscheduling for Periodic Realtime Applications Running on Multiprocessor SoC.,2009,2,Trans. HiPEAC,,db/journals/thipeac/thipeac2.html#IbrahimN09,https://doi.org/10.1007/978-3-642-00904-4_15 +Seung Woo Son,A Prefetching Algorithm for Multi-speed Disks.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#SonK07,https://doi.org/10.1007/978-3-540-71528-3_20 +M. M. Waliullah,Efficient Partial Roll-Backing Mechanism for Transactional Memory Systems.,2011,3,Trans. HiPEAC,,db/journals/thipeac/thipeac3.html#Waliullah11,https://doi.org/10.1007/978-3-642-19448-1_14 +Koen De Bosschere,High-Performance Embedded Architecture and Compilation Roadmap.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#BosschereLMNOPRSSST07,https://doi.org/10.1007/978-3-540-71528-3_2 +Woojin Choi,Accurate Instruction Pre-scheduling in Dynamically Scheduled Processors.,2009,2,Trans. HiPEAC,,db/journals/thipeac/thipeac2.html#ChoiPD09,https://doi.org/10.1007/978-3-642-00904-4_7 +Arquimedes Canedo,Compiler Support for Code Size Reduction Using a Queue-Based Processor.,2009,2,Trans. HiPEAC,,db/journals/thipeac/thipeac2.html#CanedoAS09,https://doi.org/10.1007/978-3-642-00904-4_14 +Guilin Chen,An Approach for Enhancing Inter-processor Data Locality on Chip Multiprocessors.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#ChenK07,https://doi.org/10.1007/978-3-540-71528-3_14 +Yiannakis Sazeides,Improving Branch Prediction by Considering Affectors and Affectees Correlations.,2011,3,Trans. HiPEAC,,db/journals/thipeac/thipeac3.html#SazeidesMCK11,https://doi.org/10.1007/978-3-642-19448-1_4 +Matthias A. Blumrich,Exploring the Architecture of a Stream Register-Based Snoop Filter.,2011,3,Trans. HiPEAC,,db/journals/thipeac/thipeac3.html#BlumrichSG11,https://doi.org/10.1007/978-3-642-19448-1_6 +Frederik Vandeputte,Finding Extreme Behaviors in Microprocessor Workloads.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#VandeputteE11a,https://doi.org/10.1007/978-3-642-24568-8_8 +Chunling Hu,Combining Edge Vector and Event Counter for Time-Dependent Power Behavior Characterization.,2009,2,Trans. HiPEAC,,db/journals/thipeac/thipeac2.html#HuJK09,https://doi.org/10.1007/978-3-642-00904-4_6 +Ke Ning,Power Aware External Bus Arbitration for System-on-a-Chip Embedded Systems.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#NingK07,https://doi.org/10.1007/978-3-540-71528-3_8 +Sandro Bartolini,Eighth MEDEA Workshop.,2011,3,Trans. HiPEAC,,db/journals/thipeac/thipeac3.html#BartoliniFP11,https://doi.org/10.1007/978-3-642-19448-1_5 +Mohammad Ansari,Transaction Reordering to Reduce Aborts in Software Transactional Memory.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#AnsariLKJKW11a,https://doi.org/10.1007/978-3-642-24568-8_10 +Christine Rochange,A Context-Parameterized Model for Static Analysis of Execution Times.,2009,2,Trans. HiPEAC,,db/journals/thipeac/thipeac2.html#RochangeS09,https://doi.org/10.1007/978-3-642-00904-4_12 +Shlomit S. Pinter,Selective Code Compression Scheme for Embedded Systems.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#PinterW07,https://doi.org/10.1007/978-3-540-71528-3_19 +Timothy M. Jones 0001,Compiler Directed Issue Queue Energy Reduction.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#JonesOAG11,https://doi.org/10.1007/978-3-642-24568-8_3 +Major Bhadauria,Data Cache Techniques to Save Power and Deliver High Performance in Embedded Systems.,2009,2,Trans. HiPEAC,,db/journals/thipeac/thipeac2.html#BhadauriaMST09,https://doi.org/10.1007/978-3-642-00904-4_5 +Alex E. Susu,Reconfiguration Strategies for Environmentally Powered Devices: Theoretical Analysis and Experimental Validation.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#SusuMAAM07,https://doi.org/10.1007/978-3-540-71528-3_21 +Nicholas Nethercote,Convergent Compilation Applied to Loop Unrolling.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#NethercoteBM07,https://doi.org/10.1007/978-3-540-71528-3_10 +William George Osborne,Energy Reduction by Systematic Run-Time Reconfigurable Hardware Deactivation.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#OsborneLCM11,https://doi.org/10.1007/978-3-642-24568-8_18 +Yasutaka Wada,A Parallelizing Compiler Cooperative Heterogeneous Multicore Processor Architecture.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#WadaHMSNSKK11,https://doi.org/10.1007/978-3-642-24568-8_11 +Magnus Jahre,A High Performance Adaptive Miss Handling Architecture for Chip Multiprocessors.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#JahreN11,https://doi.org/10.1007/978-3-642-24568-8_1 +Harald Devos,Constructing Application-Specific Memory Hierarchies on FPGAs.,2011,3,Trans. HiPEAC,,db/journals/thipeac/thipeac3.html#DevosCVS11,https://doi.org/10.1007/978-3-642-19448-1_11 +Markus Rullmann,A Cost Model for Partial Dynamic Reconfiguration.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#RullmannM11,https://doi.org/10.1007/978-3-642-24568-8_19 +Per Stenström,Introduction to Part 1.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#Stenstrom07,https://doi.org/10.1007/978-3-540-71528-3_3 +Isao Kotera,Power-Aware Dynamic Cache Partitioning for CMPs.,2011,3,Trans. HiPEAC,,db/journals/thipeac/thipeac3.html#KoteraAETK11,https://doi.org/10.1007/978-3-642-19448-1_8 +Xiongfei Liao,A Modular Simulator Framework for Network-on-Chip Based Manycore Chips Using UNISIM.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#LiaoJS11,https://doi.org/10.1007/978-3-642-24568-8_12 +Patrick Mahoney,Performance Characterization for the Implementation of Content Addressable Memories Based on Parallel Hashing Memories.,2009,2,Trans. HiPEAC,,db/journals/thipeac/thipeac2.html#MahoneySBP09,https://doi.org/10.1007/978-3-642-00904-4_16 +Georgios Keramidas,Recruiting Decay for Dynamic Power Reduction in Set-Associative Caches.,2009,2,Trans. HiPEAC,,db/journals/thipeac/thipeac2.html#KeramidasXK09,https://doi.org/10.1007/978-3-642-00904-4_2 +Miquel Moretó,Dynamic Cache Partitioning Based on the MLP of Cache Misses.,2011,3,Trans. HiPEAC,,db/journals/thipeac/thipeac3.html#MoretoCRV11,https://doi.org/10.1007/978-3-642-19448-1_1 +Sai Prashanth Muralidhara,Communication Based Proactive Link Power Management.,2011,4,Trans. HiPEAC,,db/journals/thipeac/thipeac4.html#MuralidharaK11,https://doi.org/10.1007/978-3-642-24568-8_7 +John Oliver,Using Application Bisection Bandwidth to Guide Tile Size Selection for the Synchroscalar Tile-Based Architecture.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#OliverFCA07,https://doi.org/10.1007/978-3-540-71528-3_17 +Sally A. McKee,Introduction to Part 3.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#McKee07,https://doi.org/10.1007/978-3-540-71528-3_15 +Maziar Goudarzi,Software-Level Instruction-Cache Leakage Reduction Using Value-Dependence of SRAM Leakage in Nanometer Technologies.,2011,3,Trans. HiPEAC,,db/journals/thipeac/thipeac3.html#GoudarziIN11,https://doi.org/10.1007/978-3-642-19448-1_15 +Maurice V. Wilkes,High Performance Processor Chips.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#Wilkes07,https://doi.org/10.1007/978-3-540-71528-3_1 +Anca Mariana Molnos,Static Cache Partitioning Robustness Analysis for Embedded On-Chip Multi-processors.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#MolnosCHE07,https://doi.org/10.1007/978-3-540-71528-3_18 +Harald Devos,Finding and Applying Loop Transformations for Generating Optimized FPGA Implementations.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#DevosBCCDS07,https://doi.org/10.1007/978-3-540-71528-3_11 +Fernando Latorre,CROB: Implementing a Large Instruction Window through Compression.,2011,3,Trans. HiPEAC,,db/journals/thipeac/thipeac3.html#LatorreMGCG11,https://doi.org/10.1007/978-3-642-19448-1_7 +Per Stenström,Introduction.,2009,2,Trans. HiPEAC,,db/journals/thipeac/thipeac2.html#StenstromW09,https://doi.org/10.1007/978-3-642-00904-4_1 +Grigori Fursin,Quick and Practical Run-Time Evaluation of Multiple Program Optimizations.,2007,1,Trans. HiPEAC,,db/journals/thipeac/thipeac1.html#FursinCOT07,https://doi.org/10.1007/978-3-540-71528-3_4 +Shuning Huang,Using magnetic resonance microscopy to study the growth dynamics of a glioma spheroid in collagen I: A case study.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#HuangVWSWDRD08,https://doi.org/10.1186/1471-2342-8-3 +Zhi-gang Chu,Pelvic retroperitoneal pleomorphic hyalinizing angiectatic tumor (PHAT) of soft tissue: a case report.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#ChuLZLO16,https://doi.org/10.1186/s12880-016-0130-3 +Evgeni Aizenberg,Computer-aided evaluation of inflammatory changes over time on MRI of the spine in patients with suspected axial spondyloarthritis: a feasibility study.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#AizenbergBEHRDL17,https://doi.org/10.1186/s12880-017-0226-4 +Frank J. Brooks,Quantification of heterogeneity observed in medical images.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#BrooksG13,https://doi.org/10.1186/1471-2342-13-7 +Emma Taylor,A chest radiograph scoring system in patients with severe acute respiratory infection: a validation study.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#TaylorHRBHMBFIP15,https://doi.org/10.1186/s12880-015-0103-y +Jan Norum,PET-CT in the sub-arctic region of Norway 2010-2013. At the edge of what is possible?,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#NorumSTNTAS15,https://doi.org/10.1186/s12880-015-0073-0 +Tariq Sinan,Is fasting a necessary preparation for abdominal ultrasound?,2003,3,BMC Medical Imaging,,db/journals/bmcmi/bmcmi3.html#SinanLS03,https://doi.org/10.1186/1471-2342-3-1 +Pasha Razifar,Non-isotropic noise correlation in PET data reconstructed by FBP but not by OSEM demonstrated using auto-correlation function.,2005,5,BMC Medical Imaging,,db/journals/bmcmi/bmcmi5.html#RazifarLSLBB05,https://doi.org/10.1186/1471-2342-5-3 +Zebin Xiao,Multiple paragangliomas of head and neck associated with hepatic paraganglioma: a case report.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#XiaoSC15,https://doi.org/10.1186/s12880-015-0082-z +Mads Liisberg,Abdominal ultrasound-scanning versus non-contrast computed tomography as screening method for abdominal aortic aneurysm - a validation study from the randomized DANCAVAS study.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#LiisbergDL17,https://doi.org/10.1186/s12880-017-0186-8 +Ravi K. Murthy,In-vivo high resolution imaging of optic nerve head drusen using spectral-domain Optical Coherence Tomography.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#MurthySGBC10,https://doi.org/10.1186/1471-2342-10-11 +Dazhou Guo,Automated lesion detection on MRI scans using combined unsupervised and supervised methods.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#GuoFFRYZW15,https://doi.org/10.1186/s12880-015-0092-x +Carsten Pietsch,Combined PET/CT-perfusion in patients with head and neck cancers might predict failure after radio-chemotherapy: a proof of concept study.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#PietschBHSHHSHV15,https://doi.org/10.1186/s12880-015-0102-z +Arjan P. Schouten van der Velden,Magnetic resonance imaging in size assessment of invasive breast carcinoma with an extensive intraductal component.,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#VeldenBBW09,https://doi.org/10.1186/1471-2342-9-5 +Jan Theopold,Detection of articular perforations of the proximal humerus fracture using a mobile 3D image intensifier - a cadaver study.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#TheopoldWFMJH17,https://doi.org/10.1186/s12880-017-0201-0 +Frida Lindberg,Evaluation of ultrasound Tissue Velocity Imaging: a phantom study of velocity estimation in skeletal muscle low-level contractions.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#LindbergMGB13,https://doi.org/10.1186/1471-2342-13-16 +Nicola Ingram,The use of high-frequency ultrasound imaging and biofluorescence for in vivo evaluation of gene therapy vectors.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#IngramMMSCMWC13,https://doi.org/10.1186/1471-2342-13-35 +Yiming Gao,A comparison of pediatric and adult CT organ dose estimation methods.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#GaoQMLEGPXBD17,https://doi.org/10.1186/s12880-017-0199-3 +Ha Kyoung Park,Utility of routine ultrasonography follow-up after total thyroidectomy in patients with papillary thyroid carcinoma: a single-center study.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#ParkKHHBLCLKJAA18,https://doi.org/10.1186/s12880-018-0253-9 +Stefan Buchner,Cardiovascular magnetic resonance assessment of the aortic valve stenosis: an in vivo and ex vivo study.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#BuchnerDSLD15,https://doi.org/10.1186/s12880-015-0076-x +Hideyuki Suenaga,Vision-based markerless registration using stereo vision and an augmented reality surgical navigation system: a pilot study.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#SuenagaTLMDHT15,https://doi.org/10.1186/s12880-015-0089-5 +Ali S. Arbab,Tracking of In-111-labeled human umbilical tissue-derived cells (hUTC) in a rat model of cerebral ischemia using SPECT imaging.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#ArbabTNVHZJVIC12,https://doi.org/10.1186/1471-2342-12-33 +Aysegül Altunkeser,Usefulness of grayscale inverted images in addition to standard images in digital mammography.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#AltunkeserK17,https://doi.org/10.1186/s12880-017-0196-6 +Ryousuke Kawai,Increased enhancement of the liver adjacent to the gallbladder seen with contrast ultrasound: comparison between acute cholecystitis and non-cholecystitis.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#KawaiHMIIKK16,https://doi.org/10.1186/s12880-016-0115-2 +Edward J. Kendall,Automatic detection of anomalies in screening mammograms.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#KendallBC13,https://doi.org/10.1186/1471-2342-13-43 +Yi-Chen Li,Coccidiomycosis infection of the patella mimicking a neoplasm - two case reports.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#LiCHJR14,https://doi.org/10.1186/1471-2342-14-8 +Marianna Fontana,A case report in cardiovascular magnetic resonance: the contrast agent matters in amyloid.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#FontanaTMRKGHM17,https://doi.org/10.1186/s12880-016-0173-5 +Luigi Cormio,Magnetic resonance imaging of penile paraffinoma: case report.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#CormioFSSMSMC14,https://doi.org/10.1186/1471-2342-14-39 +Robert D. Prins,Estimating radiation effective doses from whole body computed tomography scans based on U.S. soldier patient height and weight.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#PrinsTSQCD11,https://doi.org/10.1186/1471-2342-11-20 +Hirokazu Iwamuro,Atypical findings of perineural cysts on postmyelographic computed tomography: a case report of intermittent intercostal neuralgia caused by thoracic perineural cysts.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#IwamuroYTT17,https://doi.org/10.1186/s12880-017-0210-z +Ruigang Lu,Superb microvascular imaging (SMI) compared with conventional ultrasound for evaluating thyroid nodules.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#LuMZZWJG17,https://doi.org/10.1186/s12880-017-0241-5 +Gianmarco M. Balestra,Improvement of Sidestream Dark Field Imaging with an Image Acquisition Stabilizer.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#BalestraBBYSEKI10,https://doi.org/10.1186/1471-2342-10-15 +Mark A. Haidekker,Influence of gold nanoparticles on collagen fibril morphology quantified using transmission electron microscopy and image analysis.,2006,6,BMC Medical Imaging,,db/journals/bmcmi/bmcmi6.html#HaidekkerBSRG06,https://doi.org/10.1186/1471-2342-6-4 +Shoaleh Shahidi,The accuracy of a designed software for automated localization of craniofacial landmarks on CBCT images.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#ShahidiBSZOMM14,https://doi.org/10.1186/1471-2342-14-32 +Zenghui Cheng,CT characteristics of non-small cell lung cancer with epidermal growth factor receptor mutation: a systematic review and meta-analysis.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#ChengSYSZ17,https://doi.org/10.1186/s12880-016-0175-3 +Abbas K. Abbas,Intelligent neonatal monitoring based on a virtual thermal sensor.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#AbbasL14,https://doi.org/10.1186/1471-2342-14-9 +Margaret M. O'Keeffe,A workstation-integrated peer review quality assurance program: pilot study.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#OKeeffeDS13,https://doi.org/10.1186/1471-2342-13-19 +Sven Van Poucke,Automatic colorimetric calibration of human wounds.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#PouckeHVMJ10,https://doi.org/10.1186/1471-2342-10-7 +Wolf Schweitzer,Evaluation of 3D surface scanners for skin documentation in forensic medicine: comparison of benchmark surfaces.,2007,7,BMC Medical Imaging,,db/journals/bmcmi/bmcmi7.html#SchweitzerHBS07,https://doi.org/10.1186/1471-2342-7-1 +Caroline B. Boulocher,Radiographic assessment of the femorotibial joint of the CCLT rabbit experimental model of osteoarthritis.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#BoulocherVCFACMRDVR10,https://doi.org/10.1186/1471-2342-10-3 +Jocelyn Barbosa,Efficient quantitative assessment of facial paralysis using iris segmentation and active contour-based key points detection with hybrid classifier.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#BarbosaLLLCSK16,https://doi.org/10.1186/s12880-016-0117-0 +Rola Harmouche,Multimodal image registration of the scoliotic torso for surgical planning.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#HarmoucheCLD13,https://doi.org/10.1186/1471-2342-13-1 +Lars J. Petersen,Prospective evaluation of computer-assisted analysis of skeletal lesions for the staging of prostate cancer.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#PetersenMBZ17,https://doi.org/10.1186/s12880-017-0211-y +Jan L. Bruse,A statistical shape modelling framework to extract 3D shape biomarkers from medical imaging data: assessing arch morphology of repaired coarctation of the aorta.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#BruseMBNCHSPTS16,https://doi.org/10.1186/s12880-016-0142-z +Paschalis Tossios,No evidence of myocardial restoration following transplantation of mononuclear bone marrow cells in coronary bypass grafting surgery patients based upon cardiac SPECT and 18F-PET.,2006,6,BMC Medical Imaging,,db/journals/bmcmi/bmcmi6.html#TossiosMSSUMSM06,https://doi.org/10.1186/1471-2342-6-7 +Huijuan Xiao,A pilot study using low-dose Spectral CT and ASIR (Adaptive Statistical Iterative Reconstruction) algorithm to diagnose solitary pulmonary nodules.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#XiaoLTLWSWG15,https://doi.org/10.1186/s12880-015-0096-6 +Marius Iacomi,Mammographic images segmentation based on chaotic map clustering algorithm.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#IacomiCFR14,https://doi.org/10.1186/1471-2342-14-12 +Nana Dong,Comparison of coronary arterial lumen dimensions on angiography and plaque characteristics on optical coherence tomography images and their changes induced by statin.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#DongXWDSPTY16,https://doi.org/10.1186/s12880-016-0166-4 +Hennie Verburg,Validation of a measuring technique with computed tomography for cement penetration into trabecular bone underneath the tibial tray in total knee arthroplasty on a cadaver model.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#VerburgRVP14,https://doi.org/10.1186/1471-2342-14-29 +Prabhjot Juneja,Classification of fibroglandular tissue distribution in the breast based on radiotherapy planning CT.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#JunejaEWH16,https://doi.org/10.1186/s12880-016-0107-2 +Ying Yuan,Head and neck paragangliomas: diffusion weighted and dynamic contrast enhanced magnetic resonance imaging characteristics.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#YuanST16,https://doi.org/10.1186/s12880-016-0114-3 +Hiroyuki Akai,Computed tomography and magnetic resonance imaging of a plexiform angiomyxoid myofibroblastic tumor: a case report.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#AkaiKSONYO17,https://doi.org/10.1186/s12880-017-0180-1 +Thorsten Jentzsch,Osseous vitality in single photon emission computed tomography/computed tomography (SPECT/CT) after balloon tibioplasty of the tibial plateau: a case series.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#JentzschFVSSW15,https://doi.org/10.1186/s12880-015-0091-y +Wafa Allam,Excavated pulmonary nodules: an unusual clinical presentation of lung metastasis in two cases.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#AllamEALE10,https://doi.org/10.1186/1471-2342-10-13 +Sakon Noriki,Newly recognized cerebral infarctions on postmortem imaging: a report of three cases with systemic infectious disease.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#NorikiKISKYIN17,https://doi.org/10.1186/s12880-016-0174-4 +Hiroshi Matsuda,Evaluation of both perfusion and atrophy in multiple system atrophy of the cerebellar type using brain SPECT alone.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#MatsudaIKSIKYSS10,https://doi.org/10.1186/1471-2342-10-17 +William W. L. Chin,In-vivo optical detection of cancer using chlorin e6 - polyvinylpyrrolidone induced fluorescence imaging and spectroscopy.,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#ChinTBSHO09,https://doi.org/10.1186/1471-2342-9-1 +Eva C. Kaltenthaler,MRCP compared to diagnostic ERCP for diagnosis when biliary obstruction is suspected: a systematic review.,2006,6,BMC Medical Imaging,,db/journals/bmcmi/bmcmi6.html#KaltenthalerWCBVT06,https://doi.org/10.1186/1471-2342-6-9 +Judith Enders,"Reduction of claustrophobia during magnetic resonance imaging: methods and design of the ""CLAUSTRO"" randomized controlled trial.",2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#EndersZRMKAKDBTHD11,https://doi.org/10.1186/1471-2342-11-4 +Tomoyuki Tajima,Proton nuclear magnetic resonance and pattern recognition analysis of liver extracts from rats under different anesthetics.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#TajimaHKS12,https://doi.org/10.1186/1471-2342-12-28 +Enrique F. Schisterman,Coronary age as a risk factor in the modified Framingham risk score.,2004,4,BMC Medical Imaging,,db/journals/bmcmi/bmcmi4.html#SchistermanW04,https://doi.org/10.1186/1471-2342-4-1 +Narelle J. Watson,Reliability of radiographic measurements for acute distal radius fractures.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#WatsonAPRTK16,https://doi.org/10.1186/s12880-016-0147-7 +Marcel J. B. Warntjes,Rapid T1 quantification based on 3D phase sensitive inversion recovery.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#WarntjesKE10,https://doi.org/10.1186/1471-2342-10-19 +Oliver Dobrindt,Hybrid SPECT/CT for the assessment of a painful hip after uncemented total hip arthroplasty.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#DobrindtAKRWGSL15,https://doi.org/10.1186/s12880-015-0056-1 +Amy Manson,A recommended workflow methodology in the creation of an educational and training application incorporating a digital reconstruction of the cerebral ventricular system and cerebrospinal fluid circulation to aid anatomical understanding.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#MansonPR15,https://doi.org/10.1186/s12880-015-0088-6 +S. Ehsan Saffari,Regression models for analyzing radiological visual grading studies - an empirical comparison.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#SaffariLFS15,https://doi.org/10.1186/s12880-015-0083-y +John Fleming,Determination of regional lung air volume distribution at mid-tidal breathing from computed tomography: a retrospective study of normal variability and reproducibility.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#FlemingCMBCMK14,https://doi.org/10.1186/1471-2342-14-25 +Tommy Löfstedt,Dynamic ultrasound imaging - A multivariate approach for the analysis and comparison of time-dependent musculoskeletal movements.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#LofstedtAPT12,https://doi.org/10.1186/1471-2342-12-29 +Akito Yoshiko,Three-dimensional comparison of intramuscular fat content between young and old adults.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#YoshikoHKSKSOA17,https://doi.org/10.1186/s12880-017-0185-9 +Pairash Saiviroonporn,Improved R2* liver iron concentration assessment using a novel fuzzy c-mean clustering scheme.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#SaiviroonpornVK15,https://doi.org/10.1186/s12880-015-0097-5 +Doaa Mahmoud-Ghoneim,The impact of image dynamic range on texture classification of brain white matter.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#Mahmoud-GhoneimACG08,https://doi.org/10.1186/1471-2342-8-18 +Martin H. J. Busch,Reproducibility of brain metabolite concentration measurements in lesion free white matter at 1.5 T.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#BuschVMSDGG15,https://doi.org/10.1186/s12880-015-0085-9 +Nitin Mukerji,Audit of the change in the on-call practices in neuroradiology and factors affecting it.,2006,6,BMC Medical Imaging,,db/journals/bmcmi/bmcmi6.html#MukerjiWM06,https://doi.org/10.1186/1471-2342-6-13 +Youyong Kong,Automatic brain tissue segmentation based on graph filter.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#KongCWZCS18,https://doi.org/10.1186/s12880-018-0252-x +Sigurdur S. Stephensen,Agreement of left ventricular mass in steady state free precession and delayed enhancement MR images: implications for quantification of fibrosis in congenital and ischemic heart disease.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#StephensenCUEOEA10,https://doi.org/10.1186/1471-2342-10-4 +Yangyang Zhou,An assessment of the vulnerability of carotid plaques: a comparative study between intraplaque neovascularization and plaque echogenicity.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#ZhouXLBCSZW13,https://doi.org/10.1186/1471-2342-13-13 +Nobuyoshi Fukumitsu,Registration error of the liver CT using deformable image registration of MIM Maestro and Velocity AI.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#FukumitsuNTONOO17,https://doi.org/10.1186/s12880-017-0202-z +Athira J. Jacob,Estimation of myocardial deformation using correlation image velocimetry.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#JacobKM17,https://doi.org/10.1186/s12880-017-0195-7 +Basil Suter,A novel standardized algorithm using SPECT/CT evaluating unhappy patients after unicondylar knee arthroplasty- a combined analysis of tracer uptake distribution and component position.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#SuterTSKRFH15,https://doi.org/10.1186/s12880-015-0053-4 +T. William J. Moorhead,Prospective multi-centre Voxel Based Morphometry study employing scanner specific segmentations: Procedure development using CaliBrain structural MRI data.,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#MoorheadGJMRLWWBACCSWL09,https://doi.org/10.1186/1471-2342-9-8 +Ullamari Hakulinen,Repeatability and variation of region-of-interest methods using quantitative diffusion tensor MR imaging of the brain.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#HakulinenBROSHDE12,https://doi.org/10.1186/1471-2342-12-30 +Fredrik Hedeer,Gated myocardial perfusion SPECT underestimates left ventricular volumes and shows high variability compared to cardiac magnetic resonance imaging - a comparison of four different commercial automated software packages.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#HedeerPAU10,https://doi.org/10.1186/1471-2342-10-10 +Florian von Knobelsdorff-Brenkenhoff,Current T1 and T2 mapping techniques applied with simple thresholds cannot discriminate acute from chronic myocadial infarction on an individual patient basis: a pilot study.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#Knobelsdorff-Brenkenhoff16,https://doi.org/10.1186/s12880-016-0135-y +Einar Heiberg,Design and validation of Segment - freely available software for cardiovascular image analysis.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#HeibergSUCEA10,https://doi.org/10.1186/1471-2342-10-1 +Daniel Messroghli,An open-source software tool for the generation of relaxation time maps in magnetic resonance imaging.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#MessroghliRAWKDS10,https://doi.org/10.1186/1471-2342-10-16 +Pasha Razifar,Masked volume wise principal component analysis of small adrenocortical tumours in dynamic [11C]-metomidate positron emission tomography.,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#RazifarHMHLS09,https://doi.org/10.1186/1471-2342-9-6 +Stephen H. J. Andrews,An evaluation of meniscal collagenous structure using optical projection tomography.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#AndrewsRRSJ13,https://doi.org/10.1186/1471-2342-13-21 +Inyoung Song,Color radiography in lung nodule detection and characterization: comparison with conventional gray scale radiography.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#SongYPLC16,https://doi.org/10.1186/s12880-016-0155-7 +Antonio I. Cuesta-Vargas,Relationship of moderate and low isometric lumbar extension through architectural and muscular activity variables: a cross sectional study.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#Cuesta-VargasG13,https://doi.org/10.1186/1471-2342-13-38 +Xiang-ke Niu,Developing a nomogram based on multiparametric magnetic resonance imaging for forecasting high-grade prostate cancer to reduce unnecessary biopsies within the prostate-specific antigen gray zone.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#NiuLDXYP17,https://doi.org/10.1186/s12880-017-0184-x +Mehmet Bilgen,Imaging corticospinal tract connectivity in injured rat spinal cord using manganese-enhanced MRI.,2006,6,BMC Medical Imaging,,db/journals/bmcmi/bmcmi6.html#Bilgen06,https://doi.org/10.1186/1471-2342-6-15 +Boniface Moifo,Ultrasonographic prevalence and characteristics of non-palpable thyroid incidentalomas in a hospital-based population in a sub-Saharan country.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#MoifoTFDW17,https://doi.org/10.1186/s12880-017-0194-8 +Kristina Imeen Ringe,Lesion detection and assessment of extrahepatic findings in abdominal MRI using hepatocyte specific contrast agents - comparison of Gd-EOB-DTPA and Gd-BOPTA.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#RingeBHBGM13,https://doi.org/10.1186/1471-2342-13-10 +Shujun Liang,Nonlocal total variation based on symmetric Kullback-Leibler divergence for the ultrasound image despeckling.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#LiangYWYHY17,https://doi.org/10.1186/s12880-017-0231-7 +Faraz Khursheed,Artifact quantification and tractography from 3T MRI after placement of aneurysm clips in subarachnoid hemorrhage patients.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#KhursheedRSKE11,https://doi.org/10.1186/1471-2342-11-19 +Quang-Huy Tran,Deterministic compressive sampling for high-quality image reconstruction of ultrasound tomography.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#TranHTT17,https://doi.org/10.1186/s12880-017-0206-8 +Andrew L. Chan,Novel computed tomographic chest metrics to detect pulmonary hypertension.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#ChanJSMLLA11,https://doi.org/10.1186/1471-2342-11-7 +Michael T. Hirschmann,Standardized volumetric 3D-analysis of SPECT/CT imaging in orthopaedics: overcoming the limitations of qualitative 2D analysis.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#HirschmannWRH12,https://doi.org/10.1186/1471-2342-12-5 +Nathaniel Bell,Variation in type and frequency of diagnostic imaging during trauma care across multiple time points by patient insurance type.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#BellRFSL16,https://doi.org/10.1186/s12880-016-0146-8 +Ghazaleh Mehdipoor,Survey of practitioners' competency for diagnosis of acute diseases manifest on chest X-ray.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#MehdipoorSS17,https://doi.org/10.1186/s12880-017-0222-8 +Abdullah Al Shahrani,Daily routine versus on-demand chest radiograph policy and practice in adult ICU patients- clinicians' perspective.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#ShahraniA18,https://doi.org/10.1186/s12880-018-0248-6 +Lars Edenbrandt,Area of ischemia assessed by physicians and software packages from myocardial perfusion scintigrams.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#EdenbrandtHFHJJKLLMNNOSSWT14,https://doi.org/10.1186/1471-2342-14-5 +Emmanuelle Begot,Hemodynamic monitoring using a single-use indwelling transesophageal echocardiography probe in an unstable patient after open-heart surgery.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#BegotCPBFPV15,https://doi.org/10.1186/s12880-015-0070-3 +Hadi Mahmoud Haider Diab,Computed tomography scan based prediction of the vulnerable carotid plaque.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#DiabRDDJL17,https://doi.org/10.1186/s12880-017-0233-5 +Mikael Montelius,Tumour size measurement in a mouse model using high resolution MRI.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#MonteliusLHF12,https://doi.org/10.1186/1471-2342-12-12 +Oguzhan Ozdemir,Contribution of diffusion-weighted imaging to conventional MRI for detection of haemorrhagic infarction in ovary torsion.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#OzdemirMMK17,https://doi.org/10.1186/s12880-017-0232-6 +Ansgar Espeland,Are two readers more reliable than one? A study of upper neck ligament scoring on magnetic resonance images.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#EspelandVK13,https://doi.org/10.1186/1471-2342-13-4 +Irfan çelebi,Tonsillar Plasmacytoma: clues on magnetic resonance imaging.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#CelebiBP18,https://doi.org/10.1186/s12880-018-0261-9 +Krisorn Chunhapongpipat,Electronic cleansing in computed tomography colonography using AT layer identification with integration of gradient directional second derivative and material fraction model.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#Chunhapongpipat17,https://doi.org/10.1186/s12880-017-0224-6 +Sofia Brorsson,Ultrasound evaluation in combination with finger extension force measurements of the forearm musculus extensor digitorum communis in healthy subjects.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#BrorssonNHSA08,https://doi.org/10.1186/1471-2342-8-6 +Mariana Reza,A prospective study to evaluate the intra-individual reproducibility of bone scans for quantitative assessment in patients with metastatic prostate cancer.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#RezaKSBWT18,https://doi.org/10.1186/s12880-018-0257-5 +Azra Alizad,In vivo thyroid vibro-acoustography: a pilot study.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#AlizadUMRKGF13,https://doi.org/10.1186/1471-2342-13-12 +Kazuyoshi Motomura,Correlation between the area of high-signal intensity on SPIO-enhanced MR imaging and the pathologic size of sentinel node metastases in breast cancer patients with positive sentinel nodes.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#MotomuraITSNHN13,https://doi.org/10.1186/1471-2342-13-32 +Nadimpalli R. S. Varma,Differential biodistribution of intravenously administered endothelial progenitor and cytotoxic T-cells in rat bearing orthotopic human glioma.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#VarmaSIJBAA13,https://doi.org/10.1186/1471-2342-13-17 +Simona Tecco,Condylar volume and surface in Caucasian young adult subjects.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#TeccoSNPPCFI10,https://doi.org/10.1186/1471-2342-10-28 +Stefan Baumann,"Follow-up of iatrogenic aorto-coronary ""Dunning"" dissections by cardiac computed tomography imaging.",2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#BaumannBSBEFALM17,https://doi.org/10.1186/s12880-017-0227-3 +Satoko Nakano,Diagnostic imaging strategy for MDCT- or MRI-detected breast lesions: use of targeted sonography.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#NakanoOMKSY12,https://doi.org/10.1186/1471-2342-12-13 +Yung-Cheng Huang,FDG PET using SUVmax for preoperative T-staging of esophageal squamous cell carcinoma with and without neoadjuvant chemoradiotherapy.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#HuangLHHCWCL17,https://doi.org/10.1186/s12880-016-0171-7 +Elena Nicolato,Dynamic contrast-enhanced magnetic resonance imaging of the sarcopenic muscle.,2002,2,BMC Medical Imaging,,db/journals/bmcmi/bmcmi2.html#NicolatoFAMLSO02,https://doi.org/10.1186/1471-2342-2-2 +Emil Röhrich,Skin injury model classification based on shape vector analysis.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#RohrichTS12,https://doi.org/10.1186/1471-2342-12-32 +Yingwei Wu,Diagnostic value of diffusion-weighted MR imaging in thyroid disease: application in differentiating benign from malignant disease.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#WuYSDYTT13,https://doi.org/10.1186/1471-2342-13-23 +Mahsa Shokouhi,Assessment of the impact of the scanner-related factors on brain morphometry analysis with Brainvisa.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#ShokouhiBSMBJLDMMMWLDWC11,https://doi.org/10.1186/1471-2342-11-23 +Hui Yu,The segmentation of bones in pelvic CT images based on extraction of key frames.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#YuWSXYC18,https://doi.org/10.1186/s12880-018-0260-x +Keita Miyazaki,A case of meningococcal meningitis with multiple cerebellar microbleeds detected by susceptibility-weighted imaging.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#MiyazakiFKWNTO15,https://doi.org/10.1186/s12880-015-0090-z +James M. Otton,Defining the mid-diastolic imaging period for cardiac CT - lessons from tissue Doppler echocardiography.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#OttonPFYSM13,https://doi.org/10.1186/1471-2342-13-5 +H. M. M. T. B. Herath,Case report of hyperglycemic nonketotic chorea with rapid radiological resolution.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#HerathPS17,https://doi.org/10.1186/s12880-017-0228-2 +Katarzyna Olczak,The morphology of maxillary first and second molars analyzed by cone-beam computed tomography in a polish population.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#OlczakP17,https://doi.org/10.1186/s12880-017-0243-3 +Afshin Mohammadi,Non-opaque soft tissue foreign body: sonographic findings.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#MohammadiGK11,https://doi.org/10.1186/1471-2342-11-9 +Paola Di Carlo,Unusual MRI findings in an immunocompetent patient with EBV encephalitis: a case report.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#CarloTTCCMPS11,https://doi.org/10.1186/1471-2342-11-6 +Sayaka Kodaira,A case of intra-articular ganglion cysts of the knee joint: correlation between arthroscopic and magnetic resonance imaging.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#KodairaNTMNOT16,https://doi.org/10.1186/s12880-016-0138-8 +Andrei Lebovici,Evaluation of the normal-to-diseased apparent diffusion coefficient ratio as an indicator of prostate cancer aggressiveness.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#LeboviciSFCLSEIB14,https://doi.org/10.1186/1471-2342-14-15 +Xingce Wang,Skeleton-based cerebrovascular quantitative analysis.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#WangLWZZSZ16,https://doi.org/10.1186/s12880-016-0170-8 +Shaode Yu,A consistency evaluation of signal-to-noise ratio in the quality assessment of human brain magnetic resonance images.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#YuDWLWX18,https://doi.org/10.1186/s12880-018-0256-6 +Patrizia Seminara,An unusual presentation of multiple cavitated lung metastases from colon carcinoma.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#SeminaraMEIL11,https://doi.org/10.1186/1471-2342-11-13 +Sandra M. Petersen,Sidestream dark field images of the microcirculation: intra-observer reliability and correlation between two semi-quantitative methods for determining flow.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#PetersenGHH14,https://doi.org/10.1186/1471-2342-14-14 +Bingxin Yang,Local sparsity enhanced compressed sensing magnetic resonance imaging in uniform discrete curvelet domain.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#YangYMZZ15,https://doi.org/10.1186/s12880-015-0065-0 +Ilkan Tatar,Evaluating regional blood spinal cord barrier dysfunction following spinal cord injury using longitudinal dynamic contrast-enhanced MRI.,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#TatarCDSB09,https://doi.org/10.1186/1471-2342-9-10 +Clare Partridge,BMC Medical Imaging reviewer acknowledgement 2015.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#Partridge16,https://doi.org/10.1186/s12880-016-0119-y +Kristina Imeen Ringe,3D-MRCP for evaluation of intra- and extrahepatic bile ducts: comparison of different acquisition and reconstruction planes.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#RingeHFWR14,https://doi.org/10.1186/1471-2342-14-16 +Mariana A. Nogueira,An artificial neural networks approach for assessment treatment response in oncological patients using PET/CT images.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#NogueiraAMMDS17,https://doi.org/10.1186/s12880-017-0181-0 +Harald Schrader,Magnetic resonance imaging after most common form of concussion.,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#SchraderMGJSSO09,https://doi.org/10.1186/1471-2342-9-11 +Dorothy Lui,Monte Carlo-based noise compensation in coil intensity corrected endorectal MRI.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#LuiMHW15,https://doi.org/10.1186/s12880-015-0081-0 +Michele Rossi,Histologic assessment of biliary obstruction with different percutaneous endoluminal techniques.,2004,4,BMC Medical Imaging,,db/journals/bmcmi/bmcmi4.html#RossiCSRGGGPD04,https://doi.org/10.1186/1471-2342-4-3 +Zhi-Peng Zhou,Evaluating segmental liver function using T1 mapping on Gd-EOB-DTPA-enhanced MRI with a 3.0 Tesla.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#ZhouLQCHYH17,https://doi.org/10.1186/s12880-017-0192-x +Thomas Baum,Osteoporosis imaging: effects of bone preservation on MDCT-based trabecular bone microstructure parameters and finite element models.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#BaumGBGLJGZRWB15,https://doi.org/10.1186/s12880-015-0066-z +Bo Hedén,Disappearance of myocardial perfusion defects on prone SPECT imaging: Comparison with cardiac magnetic resonance imaging in patients without established coronary artery disease.,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#HedenPCPA09,https://doi.org/10.1186/1471-2342-9-16 +Arno Klein,Mindboggle: Automated brain labeling with multiple atlases.,2005,5,BMC Medical Imaging,,db/journals/bmcmi/bmcmi5.html#KleinMGTH05,https://doi.org/10.1186/1471-2342-5-7 +Kenichi Katoh,Balloon-occluded retrograde transvenous obliteration for gastric varices: the relationship between the clinical outcome and gastrorenal shunt occlusion.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#KatohSHIFO10,https://doi.org/10.1186/1471-2342-10-2 +Thorsten Jentzsch,Increased pelvic incidence may lead to arthritis and sagittal orientation of the facet joints at the lower lumbar spine.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#JentzschGBSNW13,https://doi.org/10.1186/1471-2342-13-34 +Marleen E. Graat,Chest radiography practice in critically ill patients: a postal survey in the Netherlands.,2006,6,BMC Medical Imaging,,db/journals/bmcmi/bmcmi6.html#GraatHSKSS06,https://doi.org/10.1186/1471-2342-6-8 +Kirsi Holli-Helenius,MRI texture analysis in differentiating luminal A and luminal B breast cancer molecular subtypes - a feasibility study.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#Holli-HeleniusS17,https://doi.org/10.1186/s12880-017-0239-z +Frederikke P. Fliedner,The use of matrigel has no influence on tumor development or PET imaging in FaDu human head and neck cancer xenografts.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#FliednerHJK16,https://doi.org/10.1186/s12880-016-0105-4 +G. S. Gulsin,Cardiovascular magnetic resonance in the evaluation of heart valve disease.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#GulsinSM17,https://doi.org/10.1186/s12880-017-0238-0 +Bettina Selig,Fully automatic evaluation of the corneal endothelium from in vivo confocal microscopy.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#SeligVRHH15,https://doi.org/10.1186/s12880-015-0054-3 +Sokol Petushi,Large-scale computations on histology images reveal grade-differentiating parameters for breast cancer.,2006,6,BMC Medical Imaging,,db/journals/bmcmi/bmcmi6.html#PetushiGHKT06,https://doi.org/10.1186/1471-2342-6-14 +Gianni Frisardi,Integration of 3D anatomical data obtained by CT imaging and 3D optical scanning for computer aided implant surgery.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#FrisardiCBPRF11,https://doi.org/10.1186/1471-2342-11-5 +An De Crop,Correlation of clinical and physical-technical image quality in chest CT: a human cadaver study applied on iterative reconstruction.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#CropSHVDBAVDTB15,https://doi.org/10.1186/s12880-015-0075-y +Adewole A. Adebiyi,Echocardiographic partition values and prevalence of left ventricular hypertrophy in hypertensive Nigerians.,2006,6,BMC Medical Imaging,,db/journals/bmcmi/bmcmi6.html#AdebiyiOAOAOF06,https://doi.org/10.1186/1471-2342-6-10 +Krisztián Szigeti,Radiomics-based differentiation of lung disease models generated by polluted air based on X-ray computed tomography data.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#SzigetiSKCHVGKB16,https://doi.org/10.1186/s12880-016-0118-z +Farzad Khalvati,Automated prostate cancer detection via comprehensive multi-parametric magnetic resonance imaging texture feature models.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#KhalvatiWH15,https://doi.org/10.1186/s12880-015-0069-9 +Nghi C. Nguyen,Prevalence and patterns of soft tissue metastasis: detection with true whole-body F-18 FDG PET/CT.,2007,7,BMC Medical Imaging,,db/journals/bmcmi/bmcmi7.html#NguyenCO07,https://doi.org/10.1186/1471-2342-7-8 +Hiroshi Otera,Reversed halo sign in pneumocystis pneumonia: a case report.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#OteraTSHI10,https://doi.org/10.1186/1471-2342-10-26 +Joshua Tambe,Acute pulmonary embolism in the era of multi-detector CT: a reality in sub-Saharan Africa.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#TambeMFGJ12,https://doi.org/10.1186/1471-2342-12-31 +Kiyotaka Nemoto,Lin4Neuro: a customized Linux distribution ready for neuroimaging analysis.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#NemotoDROTOYA11,https://doi.org/10.1186/1471-2342-11-3 +Akiko Jingu,Breakthrough reactions of iodinated and gadolinium contrast media after oral steroid premedication protocol.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#JinguFTT14,https://doi.org/10.1186/1471-2342-14-34 +Fuhua Wen,Semi-automatic synthesis and biodistribution of N-(2-18F-fluoropropionyl)-bis(zinc (II)-dipicolylamine) (18F-FP-DPAZn2) for AD model imaging.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#WenNHTYT17,https://doi.org/10.1186/s12880-017-0200-1 +Philippe Hujoel,Thyroid shields and neck exposures in cephalometric radiography.,2006,6,BMC Medical Imaging,,db/journals/bmcmi/bmcmi6.html#HujoelHBYCMG06,https://doi.org/10.1186/1471-2342-6-6 +Daniela Iancu,Brainstem infarction in a patient with internal carotid dissection and persistent trigeminal artery: a case report.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#IancuAB10,https://doi.org/10.1186/1471-2342-10-14 +Abbas Aroua,Exposure of the Swiss population to computed tomography.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#ArouaSBMV13,https://doi.org/10.1186/1471-2342-13-22 +Muthu Subash Kavitha,Diagnosis of osteoporosis from dental panoramic radiographs using the support vector machine method in a computer-aided system.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#KavithaATKS12,https://doi.org/10.1186/1471-2342-12-1 +Naoyuki Miyashita,Radiographic features of Mycoplasma pneumoniae pneumonia: differential diagnosis and performance timing.,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#MiyashitaSKOYOKO09,https://doi.org/10.1186/1471-2342-9-7 +Michiel Peters,An automated algorithm for the detection of cortical interruptions and its underlying loss of trabecular bone* a reproducibility study.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#PetersJSTGLWBBS18,https://doi.org/10.1186/s12880-018-0255-7 +Zhenyou Wang,Cell recognition based on topological sparse coding for microscopy imaging of focused ultrasound treatment.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#WangZXSB15,https://doi.org/10.1186/s12880-015-0087-7 +Raoying Xie,T2 relaxation time for intervertebral disc degeneration in patients with upper back pain: initial results on the clinical use of 3.0 Tesla MRI.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#XieRCZYJJHSC17,https://doi.org/10.1186/s12880-017-0182-z +Hao-Qiang Yin,Clinical value of endoluminal ultrasonography in the diagnosis of rectovaginal fistula.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#YinWPXRCLWX16,https://doi.org/10.1186/s12880-016-0131-2 +Jayakumar Jayaraman,Dental age estimation in southern Chinese population using panoramic radiographs: validation of three population specific reference datasets.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#JayaramanRWK18,https://doi.org/10.1186/s12880-018-0250-z +Yi Fang,Estimating view parameters from random projections for Tomography using spherical MDS.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#FangMR10,https://doi.org/10.1186/1471-2342-10-12 +Juliana M. Haggerty,Segmentation of epidermal tissue with histopathological damage in images of haematoxylin and eosin stained human skin.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#HaggertyWDOM14,https://doi.org/10.1186/1471-2342-14-7 +Yu Ohkura,Pancreatic cancer accompanied by a moderate-sized pseudocyst with extrapancreatic growth.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#OhkuraSMHFW15,https://doi.org/10.1186/s12880-015-0055-2 +Fernanda Philadelpho Arantes Pereira,Magnetic resonance imaging-radioguided occult lesion localization (ROLL) in breast cancer using Tc-99m macro-aggregated albumin and distilled water control.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#PereiraMCOGF13,https://doi.org/10.1186/1471-2342-13-33 +Katarina Kindberg,Myocardial strains from 3D displacement encoded magnetic resonance imaging.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#KindbergHSEIEK12,https://doi.org/10.1186/1471-2342-12-9 +Sanjay Tiwari,Assessment of anti-inflammatory tumor treatment efficacy by longitudinal monitoring employing sonographic micro morphology in a preclinical mouse model.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#TiwariEKKTGK11,https://doi.org/10.1186/1471-2342-11-15 +Erik Hedström,The effect of initial teaching on evaluation of left ventricular volumes by cardiovascular magnetic resonance imaging: comparison between complete and intermediate beginners and experienced observers.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#HedstromISSSEN17,https://doi.org/10.1186/s12880-017-0197-5 +Zikuan Chen,Volumetric BOLD fMRI simulation: from neurovascular coupling to multivoxel imaging.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#ChenC12,https://doi.org/10.1186/1471-2342-12-8 +Lin Li 0003,Automatic diagnosis of melanoma using machine learning methods on a spectroscopic system.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#LiZDJTW14,https://doi.org/10.1186/1471-2342-14-36 +Emilie Flaberg,Extended Field Laser Confocal Microscopy (EFLCM): Combining automated Gigapixel image capture with in silico virtual microscopy.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#FlabergSSS08,https://doi.org/10.1186/1471-2342-8-13 +Felicia Seemann,Time-resolved tracking of the atrioventricular plane displacement in Cardiovascular Magnetic Resonance (CMR) images.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#SeemannPSOEDJAA17,https://doi.org/10.1186/s12880-017-0189-5 +Luca Pio Stoppino,Magnetic resonance enterography changes after antibody to tumor necrosis factor (anti-TNF) alpha therapy in Crohn's disease: correlation with SES-CD and clinical-biological markers.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#StoppinoVRCCIBS16,https://doi.org/10.1186/s12880-016-0139-7 +Rasheed Zakaria,Diffusion-weighted MRI characteristics of the cerebral metastasis to brain boundary predicts patient outcomes.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#ZakariaDRBRSJ14,https://doi.org/10.1186/1471-2342-14-26 +Roman Guggenberger,Absent cervical spine pedicle and associated congenital spinal abnormalities - a diagnostic trap in a setting of acute trauma: case report.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#GuggenbergerASWLS10,https://doi.org/10.1186/1471-2342-10-25 +Yi-Shuan Hwang,Investigations of organ and effective doses of abdominal cone-beam computed tomography during transarterial chemoembolization using Monte Carlo simulation.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#HwangTLL18,https://doi.org/10.1186/s12880-018-0247-7 +Tarique Hussain,Coronary artery size and origin imaging in children: a comparative study of MRI and trans-thoracic echocardiography.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#HussainMPVBHBSG15,https://doi.org/10.1186/s12880-015-0095-7 +Yasushi Rino,Visualization of blood supply route to the reconstructed stomach by indocyanine green fluorescence imaging during esophagectomy.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#RinoYSYTHOYMI14,https://doi.org/10.1186/1471-2342-14-18 +George H. Swingler,Observer variation in chest radiography of acute lower respiratory infections in children: a systematic review.,2001,1,BMC Medical Imaging,,db/journals/bmcmi/bmcmi1.html#Swingler01,https://doi.org/10.1186/1471-2342-1-1 +Héloïse Bleton,Cognitive tasks and cerebral blood flow through anterior cerebral arteries: a study via functional transcranial Doppler ultrasound recordings.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#BletonPS16,https://doi.org/10.1186/s12880-016-0125-0 +Xin Zhou,The correlation between radiographic and pathologic grading of lumbar facet joint degeneration.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#ZhouLZFYFZD16,https://doi.org/10.1186/s12880-016-0129-9 +Konstantinos Bartziokas,Vibration Response Imaging: evaluation of rater agreement in healthy subjects and subjects with pneumonia.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#BartziokasDPZTKMGD10,https://doi.org/10.1186/1471-2342-10-6 +Michael Fiechter,Age-related normal structural and functional ventricular values in cardiac function assessed by magnetic resonance.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#FiechterFGSKSMMTGK13,https://doi.org/10.1186/1471-2342-13-6 +Johannes Budjan,Rapid Cartesian versus radial acquisition: comparison of two sequences for hepatobiliary phase MRI at 3 tesla in patients with impaired breath-hold capabilities.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#BudjanROSAH17,https://doi.org/10.1186/s12880-017-0203-y +Hong Zheng,Multi-contrast brain magnetic resonance image super-resolution using the local weight similarity.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#ZhengQBLGDPC17,https://doi.org/10.1186/s12880-016-0176-2 +Paul Territo,Evaluation of 11C-Acetate and 18 F-FDG PET/CT in mouse multidrug resistance gene-2 deficient mouse model of hepatocellular carcinoma.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#TerritoMRMFTSS15,https://doi.org/10.1186/s12880-015-0058-z +Dominik Vollherbst,"Specific CT 3D rendering of the treatment zone after Irreversible Electroporation (IRE) in a pig liver model: the ""Chebyshev Center Concept"" to define the maximum treatable tumor size.",2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#VollherbstFZWWSGBSKPKWRS14,https://doi.org/10.1186/1471-2342-14-2 +Jane Keating,Near-infrared operating lamp for intraoperative molecular imaging of a mediastinal tumor.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#KeatingJNS16,https://doi.org/10.1186/s12880-016-0120-5 +Sören Strandberg,Reliability of computed tomography measurements in assessment of thigh muscle cross-sectional area and attenuation.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#StrandbergWWS10,https://doi.org/10.1186/1471-2342-10-18 +Syuichi Tetsuka,Importance of correctly interpreting magnetic resonance imaging to diagnose posterior reversible encephalopathy syndrome associated with HELLP syndrome: a case report.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#TetsukaN17,https://doi.org/10.1186/s12880-017-0208-6 +Takeshi Ishimoto,Non-contrast coronary artery wall and plaque imaging using inversion-recovery prepared steady-state free precession.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#IshimotoTMKI15,https://doi.org/10.1186/s12880-015-0071-2 +Michael Peolsson,Modelling human musculoskeletal functional movements using ultrasound imaging.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#PeolssonLVSAT10,https://doi.org/10.1186/1471-2342-10-9 +Terri L. Lindholm,Parallel imaging: is GRAPPA a useful acquisition tool for MR imaging intended for volumetric brain analysis?,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#LindholmBEFJSJ09,https://doi.org/10.1186/1471-2342-9-15 +Bayden R. Wood,A three-dimensional multivariate image processing technique for the analysis of FTIR spectroscopic images of multiple tissue sections.,2006,6,BMC Medical Imaging,,db/journals/bmcmi/bmcmi6.html#WoodBEQM06,https://doi.org/10.1186/1471-2342-6-12 +Panli Li,Lesion based diagnostic performance of dual phase 99mTc-MIBI SPECT/CT imaging and ultrasonography in patients with secondary hyperparathyroidism.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#LiLTZXSS17,https://doi.org/10.1186/s12880-017-0235-3 +David S. Wack,Improved operator agreement and efficiency using the minimum area contour change method for delineation of hyperintense multiple sclerosis lesions on FLAIR MRI.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#WackDBRPRHMSZ13,https://doi.org/10.1186/1471-2342-13-29 +Davood Karimi,A sinogram denoising algorithm for low-dose computed tomography.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#KarimiDWF16,https://doi.org/10.1186/s12880-016-0112-5 +Robert Seifert,Statistical Permutation-based Artery Mapping (SPAM): a novel approach to evaluate imaging signals in the vessel wall.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#SeifertSKHJS17,https://doi.org/10.1186/s12880-017-0207-7 +Harry Strange,Myofibre segmentation in HandE stained adult skeletal muscle images using coherence-enhancing diffusion filtering.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#StrangeSZ14,https://doi.org/10.1186/1471-2342-14-38 +Robert Rusina,Use of fuzzy edge single-photon emission computed tomography analysis in definite Alzheimer's disease - a retrospective study.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#RusinaKBBM10,https://doi.org/10.1186/1471-2342-10-20 +Gavin S. Tan,Correlation of anterior segment optical coherence tomography measurements with graft trephine diameter following descemet stripping automated endothelial keratoplasty.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#TanHTM12,https://doi.org/10.1186/1471-2342-12-19 +Jonathan R. Weir-McCall,Whole body cardiovascular magnetic resonance imaging to stratify symptomatic and asymptomatic atherosclerotic burden in patients with isolated cardiovascular disease.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#Weir-McCallDGMM16,https://doi.org/10.1186/s12880-016-0121-4 +Duong Duc Binh,Iodine concentration calculated by dual-energy computed tomography (DECT) as a functional parameter to evaluate thyroid metabolism in patients with hyperthyroidism.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#BinhNOHT17,https://doi.org/10.1186/s12880-017-0216-6 +Gert Reiter,Counter-clockwise vortical blood flow in the main pulmonary artery in a patient with patent ductus arteriosus with pulmonary arterial hypertension: a cardiac magnetic resonance imaging case report.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#ReiterRKAGSOF16,https://doi.org/10.1186/s12880-016-0150-z +Ajediran I. Bello,Assessment of the level of agreement in the interpretation of plain radiographs of lumbar spondylosis among clinical physiotherapists in Ghana.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#BelloOAA14,https://doi.org/10.1186/1471-2342-14-13 +Chenyi Liu,Noise-compensated homotopic non-local regularized reconstruction for rapid retinal optical coherence tomography image acquisitions.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#LiuWFBB14,https://doi.org/10.1186/1471-2342-14-37 +Jiliang Ren,Differentiation of orbital lymphoma and idiopathic orbital inflammatory pseudotumor: combined diagnostic value of conventional MRI and histogram analysis of ADC maps.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#RenYWT18,https://doi.org/10.1186/s12880-018-0246-8 +Edward Li,Sparse reconstruction of compressive sensing MRI using cross-domain stochastically fully connected conditional random fields.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#LiKSHW16,https://doi.org/10.1186/s12880-016-0156-6 +Allan Hynes,Molecular mapping of periodontal tissues using infrared microspectroscopy.,2005,5,BMC Medical Imaging,,db/journals/bmcmi/bmcmi5.html#HynesSMSSL05,https://doi.org/10.1186/1471-2342-5-2 +Ylva Lilja,Impact of region-of-interest method on quantitative analysis of DTI data in the optic tracts.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#LiljaGLNS16,https://doi.org/10.1186/s12880-016-0145-9 +Arifudin Achmad,The diagnostic performance of 18F-FAMT PET and 18F-FDG PET for malignancy detection: a meta-analysis.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#AchmadBYHHT17,https://doi.org/10.1186/s12880-017-0237-1 +Alijavad Moosavi,Air column in esophagus and symptoms of gastroesophageal reflux disease.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#MoosaviRTG12,https://doi.org/10.1186/1471-2342-12-2 +Jørn Bersvendsen,Automatic measurement of aortic annulus diameter in 3-dimensional Transoesophageal echocardiography.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#BersvendsenBUAS14,https://doi.org/10.1186/1471-2342-14-31 +Martin G. Sundqvist,Kinematic analysis of diastolic function using the freely available software Echo E-waves - feasibility and reproducibility.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#SundqvistSTU16,https://doi.org/10.1186/s12880-016-0162-8 +Robert Manka,Reproducibility of small animal cine and scar cardiac magnetic resonance imaging using a clinical 3.0 tesla system.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#MankaJHDGSGP13,https://doi.org/10.1186/1471-2342-13-44 +Yunzhi Wang,Applying a computer-aided scheme to detect a new radiographic image marker for prediction of chemotherapy outcome.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#WangQTMLZ16,https://doi.org/10.1186/s12880-016-0157-5 +Kirsi K. Holli,Texture analysis of MR images of patients with Mild Traumatic Brain Injury.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#HolliHDWLLOSE10,https://doi.org/10.1186/1471-2342-10-8 +Anna Gärdin,Dynamic contrast enhanced magnetic resonance imaging in chronic Achilles tendinosis.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#GardinBMS13,https://doi.org/10.1186/1471-2342-13-39 +Soma Kumasaka,A case of multiple hepatic angiomyolipomas with high 18 F-fluorodeoxyglucose uptake.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#KumasakaATHNT14,https://doi.org/10.1186/1471-2342-14-17 +Ulfin Rethnam,Does applying the Canadian Cervical Spine rule reduce cervical spine radiography rates in alert patients with blunt trauma to the neck? A retrospective analysis.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#RethnamYG08,https://doi.org/10.1186/1471-2342-8-12 +M. Hammad Ather,Diagnostic accuracy of ultrasonography compared to unenhanced CT for stone and obstruction in patients with renal failure.,2004,4,BMC Medical Imaging,,db/journals/bmcmi/bmcmi4.html#AtherJS04,https://doi.org/10.1186/1471-2342-4-2 +Jörn Schulz,A semiautomatic tool for prostate segmentation in radiotherapy treatment planning.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#SchulzSTMG14,https://doi.org/10.1186/1471-2342-14-4 +Anuradha Roy,Comparison of measurement methods with a mixed effects procedure accounting for replicated evaluations (COM 3 PARE): method comparison algorithm implementation for head and neck IGRT positional verification.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#RoyFRT15,https://doi.org/10.1186/s12880-015-0074-z +Owen J. Arthurs,Interactive neonatal gastrointestinal magnetic resonance imaging using fruit juice as an oral contrast media.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#ArthursGEJSL14,https://doi.org/10.1186/1471-2342-14-33 +Jacqueline du Toit,The accuracy of radiology speech recognition reports in a multilingual South African teaching hospital.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#ToitHP15,https://doi.org/10.1186/s12880-015-0048-1 +Richard E. Jacob,Automated measurement of heterogeneity in CT images of healthy and diseased rat lungs using variogram analysis of an octree decomposition.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#JacobC14,https://doi.org/10.1186/1471-2342-14-1 +Piet K. Vanhoenacker,Multidetector computed tomography angiography for assessment of in-stent restenosis: meta-analysis of diagnostic performance.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#VanhoenackerDBSHWD08,https://doi.org/10.1186/1471-2342-8-14 +Sebastian Wojcinski,Diagnostic performance and inter-observer concordance in lesion detection with the automated breast volume scanner (ABVS).,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#WojcinskiGFSHD13,https://doi.org/10.1186/1471-2342-13-36 +Jens Fagertun,3D facial landmarks: Inter-operator variability of manual annotation.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#FagertunHRMWPH14,https://doi.org/10.1186/1471-2342-14-35 +Weiguang Shao,Evaluation of energy spectrum CT for the measurement of thyroid iodine content.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#ShaoLL16,https://doi.org/10.1186/s12880-016-0151-y +Bilge Karaçali,Automated detection of regions of interest for tissue microarray experiments: an image texture analysis.,2007,7,BMC Medical Imaging,,db/journals/bmcmi/bmcmi7.html#KaracaliT07,https://doi.org/10.1186/1471-2342-7-2 +Elin Trägårdh,Adding attenuation corrected images in myocardial perfusion imaging reduces the need for a rest study.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#TragardhVE13,https://doi.org/10.1186/1471-2342-13-14 +Ryan Yudistiro,Differentiation of sarcoidosis-lymphoma syndrome lesions: a case report on the use of two different positron emission tomography tracers.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#YudistiroATN16,https://doi.org/10.1186/s12880-015-0104-x +Jing-xin Zhao,A computer aided measurement method for unstable pelvic fractures based on standardized radiographs.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#ZhaoZZSDZZT15,https://doi.org/10.1186/s12880-015-0084-x +Sana Boudabbous,Ossifying metaplasia of urothelial metastases: original case with review of the literature.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#BoudabbousAPKRM15,https://doi.org/10.1186/s12880-015-0072-1 +Hongliang Wang,Comparison of three 18F-labeled carboxylic acids with 18F-FDG of the differentiation tumor from inflammation in model mice.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#WangTHHLWL16,https://doi.org/10.1186/s12880-016-0110-7 +Michael Haimerl,Added value of Gd-EOB-DTPA-enhanced Hepatobiliary phase MR imaging in evaluation of focal solid hepatic lesions.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#HaimerlWPMNHSSW13,https://doi.org/10.1186/1471-2342-13-41 +Ewa Zmyslowska-Polakowska,The assessment of accessory mental foramen in a selected polish population: a CBCT study.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#Zmyslowska-Polakowska17,https://doi.org/10.1186/s12880-017-0188-6 +Hongju Son,Extraperitoneal urine leak after renal transplantation: the role of radionuclide imaging and the value of accompanying SPECT/CT - a case report.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#SonHKM10,https://doi.org/10.1186/1471-2342-10-23 +Letizia Vivona,Fuzzy technique for microcalcifications clustering in digital mammograms.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#VivonaCFR14,https://doi.org/10.1186/1471-2342-14-23 +Roy Moncayo,In-vivo visualisation of the anatomical structures related to the acupuncture points Dai mai and Shen mai by MRI: A single-case pilot study.,2007,7,BMC Medical Imaging,,db/journals/bmcmi/bmcmi7.html#MoncayoRDK07,https://doi.org/10.1186/1471-2342-7-4 +Sima Chalavi,Quantitative and qualitative assessment of structural magnetic resonance imaging data in a two-center study.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#ChalaviSDBR12,https://doi.org/10.1186/1471-2342-12-27 +Vassiliki Lyra,The effect of patient anxiety and depression on motion during myocardial perfusion SPECT imaging.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#LyraKRLC16,https://doi.org/10.1186/s12880-016-0153-9 +Pernilla Sahlstrand-Johnson,Computed tomography measurements of different dimensions of maxillary and frontal sinuses.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#Sahlstrand-JohnsonJSA11,https://doi.org/10.1186/1471-2342-11-8 +Hannes Seuss,Osteoblastic lesion screening with an advanced post-processing package enabling in-plane rib reading in CT-images.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#SeussDCUH16,https://doi.org/10.1186/s12880-016-0141-0 +Dirk Daubner,Hibernoma - two patients with a rare lipoid soft-tissue tumour.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#DaubnerSPZPL15,https://doi.org/10.1186/s12880-015-0046-3 +Alfredo Revenaz,A semi-automated measuring system of brain diffusion and perfusion magnetic resonance imaging abnormalities in patients with multiple sclerosis based on the integration of coregistration and tissue segmentation procedures.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#RevenazRLBGRF16,https://doi.org/10.1186/s12880-016-0108-1 +Leo Ai,Application of mean-shift clustering to Blood oxygen level dependent functional MRI activation detection.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#AiGX14,https://doi.org/10.1186/1471-2342-14-6 +Jihang Sun,Image quality improvement using model-based iterative reconstruction in low dose chest CT for children with necrotizing pneumonia.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#SunYLDHlP17,https://doi.org/10.1186/s12880-017-0177-9 +Mohammad-Reza Nazem-Zadeh,Segmentation of corpus callosum using diffusion tensor imaging: validation in patients with glioblastoma.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#Nazem-ZadehSBJSRMJ12,https://doi.org/10.1186/1471-2342-12-10 +Alexandra Platon,Illegal intra-corporeal packets: can dual energy CT be used for the evaluation of cocaine concentration? A cross sectional study.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#PlatonBBLWPP16,https://doi.org/10.1186/s12880-016-0106-3 +Stina Syvänen,(R)-[11C]Verapamil PET studies to assess changes in P-glycoprotein expression and functionality in rat blood-brain barrier after exposure to kainate-induced status epilepticus.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#SyvanenLMWHLVL11,https://doi.org/10.1186/1471-2342-11-1 +Lennart Werner,The value of ultrasound-guided biopsy of fluorodeoxy-glucose positron emission tomography (FDG-PET)-positive supraclavicular lymph nodes in patients with suspected lung cancer.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#WernerKBRTPGS17,https://doi.org/10.1186/s12880-017-0214-8 +Jeffrey T. LaCroix,Quantifying light scattering with single-mode fiber -optic confocal microscopy.,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#LaCroixH09,https://doi.org/10.1186/1471-2342-9-19 +Wei-Quan Wang,New quantitative classification of the anatomical relationship between impacted third molars and the inferior alveolar nerve.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#WangCHFTH15,https://doi.org/10.1186/s12880-015-0101-0 +Melissa H. Y. Wong,Reproducibility of Corneal Graft Thickness measurements with COLGATE in patients who have undergone DSAEK (Descemet Stripping Automated Endothelial Keratoplasty).,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#WongCHLCLTM12,https://doi.org/10.1186/1471-2342-12-25 +Tomas Lapinskas,Cardiovascular magnetic resonance feature tracking in small animals - a preliminary study on reproducibility and sample size calculation.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#LapinskasGZJMGM17,https://doi.org/10.1186/s12880-017-0223-7 +Vidar Ruddox,Focused cardiac ultrasound by unselected residents - the challenges.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#RuddoxNSEO17,https://doi.org/10.1186/s12880-017-0191-y +Ali S. Arbab,MRI to assess chemoprevention in transgenic adenocarcinoma of mouse prostate (TRAMP).,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#ArbabSVDGIJAG11,https://doi.org/10.1186/1471-2342-11-21 +Brent Burbridge,Percutaneous subclavian artery stent-graft placement following failed ultrasound guided subclavian venous access.,2006,6,BMC Medical Imaging,,db/journals/bmcmi/bmcmi6.html#BurbridgeSS06,https://doi.org/10.1186/1471-2342-6-3 +Michael Behnes,#NAME?,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#BehnesASFEBHMSH16,https://doi.org/10.1186/s12880-016-0127-y +Wenxu Qi,Diffusion tensor MR imaging characteristics of cerebral white matter development in fetal pigs.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#QiGLLYG17,https://doi.org/10.1186/s12880-017-0205-9 +Emilienne Barthassat,Evaluation of patients with painful total hip arthroplasty using combined single photon emission tomography and conventional computerized tomography (SPECT/CT) - a comparison of semi-quantitative versus 3D volumetric quantitative measurements.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#BarthassatAKRH17,https://doi.org/10.1186/s12880-017-0204-x +Ulfin Rethnam,The Swimmer's view: does it really show what it is supposed to show? A retrospective study.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#RethnamYB08,https://doi.org/10.1186/1471-2342-8-2 +Zhaojun Li,An improvement of carotid intima-media thickness and pulse wave velocity in renal transplant recipients.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#LiQDL18,https://doi.org/10.1186/s12880-018-0263-7 +Laura Merlini,Concomitant septic arthritis and osteomyelitis of the hip in young children* a new pathophysiological hypothesis suggested by MRI enhancement pattern.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#MerliniAC15,https://doi.org/10.1186/s12880-015-0057-0 +Geneviève Hassink,Intra- and inter-observer reliability of a new standardized diagnostic method using SPECT/CT in patients with osteochondral lesions of the ankle joint.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#HassinkTLHRH16,https://doi.org/10.1186/s12880-016-0169-1 +Joost J. A. de Jong,Distal radius plate of CFR-PEEK has minimal effect compared to titanium plates on bone parameters in high-resolution peripheral quantitative computed tomography: a pilot study.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#JongLRAGBW17,https://doi.org/10.1186/s12880-017-0190-z +Shu-Fang Chen,"Ultrasonographic median nerve cross-section areas measured by 8-point ""inching test"" for idiopathic carpal tunnel syndrome: a correlation of nerve conduction study severity and duration of clinical symptoms.",2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#ChenLHCTCC11,https://doi.org/10.1186/1471-2342-11-22 +Shigeki Kobayashi,18F-FDG uptake in the stomach on screening PET/CT: value for predicting Helicobacter pylori infection and chronic atrophic gastritis.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#KobayashiOSHKOS16,https://doi.org/10.1186/s12880-016-0161-9 +Maria D'Amato,Assessment of thoracic ultrasound in complementary diagnosis and in follow up of community-acquired pneumonia (cap).,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#DAmatoRCGSRMDS17,https://doi.org/10.1186/s12880-017-0225-5 +Anthony J. McGoron,Post traumatic brain perfusion SPECT analysis using reconstructed ROI maps of radioactive microsphere derived cerebral blood flow and statistical parametric mapping.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#McGoronCGSSGK08,https://doi.org/10.1186/1471-2342-8-4 +Ramazan Kutlu,Endovascular treatment of huge saccular abdominal aortic aneurysm in a young Behcet patient: mid-term result.,2002,2,BMC Medical Imaging,,db/journals/bmcmi/bmcmi2.html#KutluGATB02,https://doi.org/10.1186/1471-2342-2-1 +Shousen Wang,Efficacy of sellar opening in the pituitary adenoma resection of transsphenoidal surgery influences the degree of tumor resection.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#WangQXW17,https://doi.org/10.1186/s12880-017-0217-5 +Linqi Zhang,The value of 99mTc-methylene diphosphonate single photon emission computed tomography/computed tomography in diagnosis of fibrous dysplasia.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#ZhangHLZ17,https://doi.org/10.1186/s12880-017-0218-4 +Lin Zhang,A comparative study of 18F-fluorodeoxyglucose positron emission tomography/computed tomography and 99mTc-MDP whole-body bone scanning for imaging osteolytic bone metastases.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#ZhangCXZCLW15,https://doi.org/10.1186/s12880-015-0047-2 +Zvi Kaufman,Mapping breast tissue types by miniature radio-frequency near-field spectroscopy sensor in ex-vivo freshly excised specimens.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#KaufmanPHMZKPSD16,https://doi.org/10.1186/s12880-016-0160-x +James M. Elliott,Quantification of cervical spine muscle fat: a comparison between T1-weighted and multi-echo gradient echo imaging using a variable projection algorithm (VARPRO).,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#ElliottWRP13,https://doi.org/10.1186/1471-2342-13-30 +Christian Brandt,In vivo study of experimental pneumococcal meningitis using magnetic resonance imaging.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#BrandtSLSLOFR08,https://doi.org/10.1186/1471-2342-8-1 +Edward Azavedo,Is single reading with computer-aided detection (CAD) as good as double reading in mammography screening? A systematic review.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#AzavedoZMA12,https://doi.org/10.1186/1471-2342-12-22 +John Ly,Semi-automatic analysis of standard uptake values in serial PET/CT studies in patients with lung cancer and lymphoma.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#LyGHJVEW12,https://doi.org/10.1186/1471-2342-12-6 +Beat Schnüriger,The accuracy of FAST in relation to grade of solid organ injuries: A retrospective analysis of 226 trauma patients with liver or splenic lesion.,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#SchnurigerKISKLCEZ09,https://doi.org/10.1186/1471-2342-9-3 +Frans-Thomas Fork,Small bowel enteroclysis with magnetic resonance imaging and computed tomography in patients with failed and uncertain passage of a patency capsule.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#ForkKKO12,https://doi.org/10.1186/1471-2342-12-3 +Michael Romann,Validation of digit-length ratio (2D: 4D) assessments on the basis of DXA-derived hand scans.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#RomannF15,https://doi.org/10.1186/s12880-015-0042-7 +Tom Thomaes,Reliability and validity of the ultrasound technique to measure the rectus femoris muscle diameter in older CAD-patients.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#ThomaesTOCCV12,https://doi.org/10.1186/1471-2342-12-7 +Wolf Schweitzer,Retraction: Evaluation of 3D surface scanners for skin documentation in forensic medicine: comparison of benchmark surfaces.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#SchweitzerHBS08,https://doi.org/10.1186/1471-2342-8-15 +Okello Jimmy,Breast cancer detection using sonography in women with mammographically dense breasts.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#JimmyKBG14,https://doi.org/10.1186/s12880-014-0041-0 +Lene Rosendahl,Late gadolinium uptake demonstrated with magnetic resonance in patients where automated PERFIT analysis of myocardial SPECT suggests irreversible perfusion defect.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#RosendahlBOBASE08,https://doi.org/10.1186/1471-2342-8-17 +Ruibin Huang,Unusual presentation of primary hyperparathyroidism: report of three cases.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#HuangZLLH15,https://doi.org/10.1186/s12880-015-0064-1 +Simon Tiziani,Correlation of pelvic incidence with radiographical parameters for acetabular retroversion: a retrospective radiological study.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#TizianiGFOJNW15,https://doi.org/10.1186/s12880-015-0080-1 +C. Jason Liang,An alternative method for quantifying coronary artery calcification: the multi-ethnic study of atherosclerosis (MESA).,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#LiangBKKB12,https://doi.org/10.1186/1471-2342-12-14 +Katrin Holzer,Transcranial Doppler ultrasonography predicts cardiovascular events after TIA.,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#HolzerSEBSHP09,https://doi.org/10.1186/1471-2342-9-13 +Sonal Kothari,Histological image classification using biologically interpretable shape-based features.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#KothariPYW13,https://doi.org/10.1186/1471-2342-13-9 +Marianna Vlychou,Angiographic findings and clinical implications of persistent primitive hypoglossal artery.,2003,3,BMC Medical Imaging,,db/journals/bmcmi/bmcmi3.html#VlychouGSKAZ03,https://doi.org/10.1186/1471-2342-3-2 +Ann-Christin Ostwaldt,Case report of a young stroke patient showing interim normalization of the MRI diffusion-weighted imaging lesion.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#OstwaldtUNVF15,https://doi.org/10.1186/s12880-015-0077-9 +Muhammad Laiq Ur Rahman Shahid,Automatic MRI segmentation of para-pharyngeal fat pads using interactive visual feature space analysis for classification.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#ShahidCIMVL17,https://doi.org/10.1186/s12880-017-0179-7 +Alexander Wong,Homotopic non-local regularized reconstruction from sparse positron emission tomography measurements.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#WongLWFB15,https://doi.org/10.1186/s12880-015-0052-5 +Achraf Al Faraj,Intrapulmonary administration of bone-marrow derived M1/M2 macrophages to enhance the resolution of LPS-induced lung inflammation: noninvasive monitoring using free-breathing MR and CT imaging protocols.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#FarajSA15,https://doi.org/10.1186/s12880-015-0059-y +Alexander S. Somwaru,Erratum to: prostate cancer arising in ectopic prostatic tissue within the left seminal vesicle: a rare case diagnosed with multi-parametric magnetic resonance imaging and magnetic resonance imaging-transrectal ultrasound fusion biopsy.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#SomwaruAZ16a,https://doi.org/10.1186/s12880-016-0132-1 +Sven Weum,Evaluation of dynamic infrared thermography as an alternative to CT angiography for perforator mapping in breast reconstruction: a clinical study.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#WeumMW16,https://doi.org/10.1186/s12880-016-0144-x +P. Montaldo,Quantification of maceration changes using post mortem MRI in fetuses.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#MontaldoAOLTSTA16,https://doi.org/10.1186/s12880-016-0137-9 +Jonas Kalderstam,Analysis of regional bone scan index measurements for the survival of patients with prostate cancer.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#KalderstamSEO14,https://doi.org/10.1186/1471-2342-14-24 +Nicolas Sauwen,Semi-automated brain tumor segmentation on multi-parametric MRI using regularized non-negative matrix factorization.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#SauwenASVMHAH17,https://doi.org/10.1186/s12880-017-0198-4 +Erwei Nie,In silico simulation of liver crack detection using ultrasonic shear wave imaging.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#NieYDZ18,https://doi.org/10.1186/s12880-018-0249-5 +Ke-Zeng Li,The effect of a manual instrumentation technique on five types of premolar root canal geometry assessed by microcomputed tomography and three-dimensional reconstruction.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#LiGZHG11,https://doi.org/10.1186/1471-2342-11-14 +Franziska Schöppe,Structured reporting of x-rays for atraumatic shoulder pain: advantages over free text?,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#SchoppeSSPAPPSM18,https://doi.org/10.1186/s12880-018-0262-8 +Vipula R. Bataduwaarachchi,Paraneoplastic limbic encephalitis with associated hypothalamitis mimicking a hyperdense hypothalamic tumor: a case report.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#Bataduwaarachchi16,https://doi.org/10.1186/s12880-016-0113-4 +Anthony Delaney,The prevention of anaphylactoid reactions to iodinated radiological contrast media: a systematic review.,2006,6,BMC Medical Imaging,,db/journals/bmcmi/bmcmi6.html#DelaneyCF06,https://doi.org/10.1186/1471-2342-6-2 +Niladri K. Mahato,Development of a morphology-based modeling technique for tracking solid-body displacements: examining the reliability of a potential MRI-only approach for joint kinematics assessment.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#MahatoMCWTC16,https://doi.org/10.1186/s12880-016-0140-1 +Luca T. Mainardi,A method for dynamic subtraction MR imaging of the liver.,2006,6,BMC Medical Imaging,,db/journals/bmcmi/bmcmi6.html#MainardiPLPSM06,https://doi.org/10.1186/1471-2342-6-5 +Niklas Klasson,Valid and efficient manual estimates of intracranial volume from magnetic resonance images.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#KlassonOREMW15,https://doi.org/10.1186/s12880-015-0045-4 +Millicent O. Obajimi,Abdominal ultrasonography in HIV/AIDS patients in southwestern Nigeria.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#ObajimiAOAAAOOOOAA08,https://doi.org/10.1186/1471-2342-8-5 +Yoshifumi Kimizuka,A case of skeletal tuberculosis and psoas abscess: disease activity evaluated using 18 F-fluorodeoxyglucose positron emission tomography-computed tomography.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#KimizukaIMIYIWSBH13,https://doi.org/10.1186/1471-2342-13-37 +Edward Gilbert-Kawai,A comparison of the quality of image acquisition between the incident dark field and sidestream dark field video-microscopes.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#Gilbert-KawaiCB16,https://doi.org/10.1186/s12880-015-0078-8 +Eric Hildebrand,Impact of a standardized training program on midwives' ability to assess fetal heart anatomy by ultrasound.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#HildebrandDSGBJ14,https://doi.org/10.1186/1471-2342-14-20 +Lene Lillemark,Brain region's relative proximity as marker for Alzheimer's disease based on structural MRI.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#LillemarkSPDN14,https://doi.org/10.1186/1471-2342-14-21 +Petr Martynov,Testing of the assisting software for radiologists analysing head CT images: lessons learned.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#MartynovMKGKLSR17,https://doi.org/10.1186/s12880-017-0229-1 +Stina Syvänen,Synthesis of two potential NK1-receptor ligands using [1-11C]ethyl iodide and [1-11C]propyl iodide and initial PET-imaging.,2007,7,BMC Medical Imaging,,db/journals/bmcmi/bmcmi7.html#SyvanenEGLAL07,https://doi.org/10.1186/1471-2342-7-6 +Jacob Lønborg,Utility of cardiac magnetic resonance in assessing right-sided heart failure in sarcoidosis.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#LonborgWGGF13,https://doi.org/10.1186/1471-2342-13-2 +Junko Sato,Sonographic swelling of pronator quadratus muscle in patients with occult bone injury.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#SatoINT15,https://doi.org/10.1186/s12880-015-0051-6 +Farhang Sahba,Application of reinforcement learning for segmentation of transrectal ultrasound images.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#SahbaTS08,https://doi.org/10.1186/1471-2342-8-8 +Kristina Imeen Ringe,Evaluation of living liver donors using contrast enhanced multidetector CT - The radiologists impact on donor selection.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#RingeRFSBPWR12,https://doi.org/10.1186/1471-2342-12-21 +Rolf A. Heckemann,Automatic volumetry on MR brain images can support diagnostic decision making.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#HeckemannHRAHH08,https://doi.org/10.1186/1471-2342-8-9 +Sheena L. Dupuy,The effect of intramuscular interferon beta-1a on spinal cord volume in relapsing-remitting multiple sclerosis.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#DupuyKHBNTB16,https://doi.org/10.1186/s12880-016-0158-4 +Yuanbo Feng,Lipomatous metaplasia identified in rabbits with reperfused myocardial infarction by 3.0 T magnetic resonance imaging and histopathology.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#FengCXWCYLBJON13,https://doi.org/10.1186/1471-2342-13-18 +Tomoyuki Minezawa,Bronchus sign on thin-section computed tomography is a powerful predictive factor for successful transbronchial biopsy using endobronchial ultrasound with a guide sheath for small peripheral lung lesions: a retrospective observational study.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#MinezawaOYYMYMN15,https://doi.org/10.1186/s12880-015-0060-5 +Bonnie Hall,Computer-assisted assessment of the Human Epidermal Growth Factor Receptor 2 immunohistochemical assay in imaged histologic sections using a membrane isolation algorithm and quantitative analysis of positive controls.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#HallIJCGF08,https://doi.org/10.1186/1471-2342-8-11 +José Antonio Fiz,Fractal dimension analysis of malignant and benign endobronchial ultrasound nodes.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#FizMAASSBCM14,https://doi.org/10.1186/1471-2342-14-22 +Asgeir S. Jakola,Animal study assessing safety of an acoustic coupling fluid that holds the potential to avoid surgically induced artifacts in 3D ultrasound guided operations.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#JakolaJSMSTSAU14,https://doi.org/10.1186/1471-2342-14-11 +Karin Nielsen,The use of PET-MRI in the follow-up after radiofrequency- and microwave ablation of colorectal liver metastases.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#NielsenSPTWOMKHSSMCT14,https://doi.org/10.1186/1471-2342-14-27 +Klaus Gottlieb,Voting for Image Scoring and Assessment (VISA) - theory and application of a 2 + 1 reader algorithm to improve accuracy of imaging endpoints in clinical trials.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#GottliebH15,https://doi.org/10.1186/s12880-015-0049-0 +Chang Wang,The same modality medical image registration with large deformation and clinical application based on adaptive diffeomorphic multi-resolution demons.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#WangRQY18,https://doi.org/10.1186/s12880-018-0267-3 +Frank Zöllner,An open source software for analysis of dynamic contrast enhanced magnetic resonance images: UMMPerfusion revisited.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#ZollnerDSSSW16,https://doi.org/10.1186/s12880-016-0109-0 +Valentin C. Dones,The diagnostic validity of musculoskeletal ultrasound in lateral epicondylalgia: a systematic review.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#DonesGTSL14,https://doi.org/10.1186/1471-2342-14-10 +Lawrence T. Dauer,Radiation dose reduction at a price: the effectiveness of a male gonadal shield during helical CT scans.,2007,7,BMC Medical Imaging,,db/journals/bmcmi/bmcmi7.html#DauerCER07,https://doi.org/10.1186/1471-2342-7-5 +Shahin Zandieh,Characteristics of incidentally found thyroid nodules in computed tomography: comparison with thyroid scintigraphy.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#ZandiehMBHHH17,https://doi.org/10.1186/s12880-017-0178-8 +Inger Havsteen,Significance of arterial spin labeling perfusion and susceptibility weighted imaging changes in patients with transient ischemic attack: a prospective cohort study.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#HavsteenWONAMMR18,https://doi.org/10.1186/s12880-018-0264-6 +Steve Goodacre,Systematic review and meta-analysis of the diagnostic accuracy of ultrasonography for deep vein thrombosis.,2005,5,BMC Medical Imaging,,db/journals/bmcmi/bmcmi5.html#GoodacreSTBS05,https://doi.org/10.1186/1471-2342-5-6 +Daylin Góngora,Characterization of ten white matter tracts in a representative sample of Cuban population.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#GongoraDB16,https://doi.org/10.1186/s12880-016-0163-7 +Sebastian Bidhult,Validation of T1 and T2 algorithms for quantitative MRI: performance by a vendor-independent software.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#BidhultKAAHH16,https://doi.org/10.1186/s12880-016-0148-6 +Jane Tufvesson,Automatic segmentation of myocardium at risk from contrast enhanced SSFP CMR: validation against expert readers and SPECT.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#TufvessonCAEDKS16,https://doi.org/10.1186/s12880-016-0124-1 +Jürgen Rahmer,Signal encoding in magnetic particle imaging: properties of the system function.,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#RahmerWGB09,https://doi.org/10.1186/1471-2342-9-4 +Alexander C. Flint,Determining optimal medical image compression: psychometric and image distortion analysis.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#Flint12,https://doi.org/10.1186/1471-2342-12-24 +Tormod Selbekk,Comparison of contrast in brightness mode and strain ultrasonography of glial brain tumours.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#SelbekkBISU12,https://doi.org/10.1186/1471-2342-12-11 +Alle Meije Wink,Data-driven haemodynamic response function extraction using Fourier-wavelet regularised deconvolution.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#WinkHR08,https://doi.org/10.1186/1471-2342-8-7 +Lorena Esposito,MRI plaque imaging reveals high-risk carotid plaques especially in diabetic patients irrespective of the degree of stenosis.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#EspositoSHBPSFWLHPSHP10,https://doi.org/10.1186/1471-2342-10-27 +Qian Zhang,Evaluation of left atrial volume and function using single-beat real-time three-dimensional echocardiography in atrial fibrillation patients.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#ZhangWDYLWLS17,https://doi.org/10.1186/s12880-017-0215-7 +Bilge Karaçali,Automated recognition of cell phenotypes in histology images based on membrane- and nuclei-targeting biomarkers.,2007,7,BMC Medical Imaging,,db/journals/bmcmi/bmcmi7.html#KaracaliVT07,https://doi.org/10.1186/1471-2342-7-7 +Sebastian F. Baumbach,Analysis of the three-dimensional anatomical variance of the distal radius using 3D shape models.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#BaumbachBSMCELF17,https://doi.org/10.1186/s12880-017-0193-9 +Zobia Suhail,Automatic detection of abnormalities in mammograms.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#SuhailSM15,https://doi.org/10.1186/s12880-015-0094-8 +Zhenjiang Li,Texture-based classification of different single liver lesion based on SPAIR T2W MRI images.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#LiMHLZLL17,https://doi.org/10.1186/s12880-017-0212-x +Clare Partridge,BMC Medical Imaging reviewer acknowledgement 2014.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#Partridge15,https://doi.org/10.1186/s12880-015-0043-6 +Jian-Min Shen,The use of MRI apparent diffusion coefficient (ADC) in monitoring the development of brain infarction.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#ShenXKYS11,https://doi.org/10.1186/1471-2342-11-2 +Marcello Mancini,Imaging of thyroid tumor angiogenesis with microbubbles targeted to vascular endothelial growth factor receptor type 2 in mice.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#ManciniGSLMVCPBS13,https://doi.org/10.1186/1471-2342-13-31 +Ingvild Billehaug Norum,Diagnostic accuracy of left ventricular longitudinal function by speckle tracking echocardiography to predict significant coronary artery stenosis. A systematic review.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#NorumREO15,https://doi.org/10.1186/s12880-015-0067-y +Alexander S. Somwaru,Prostate cancer arising in ectopic prostatic tissue within the left seminal vesicle: a rare case diagnosed with multi-parametric magnetic resonance imaging and magnetic resonance imaging-transrectal ultrasound fusion biopsy.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#SomwaruAZ16,https://doi.org/10.1186/s12880-016-0122-3 +Charlotta Andersson,Phase-contrast MRI volume flow - a comparison of breath held and navigator based acquisitions.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#AnderssonKELCE16,https://doi.org/10.1186/s12880-016-0128-x +Carlos Menendez-Castro,Microbubbles in macrocysts - Contrast-enhanced ultrasound assisted sclerosant therapy of a congenital macrocystic lymphangioma: a case report.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#Menendez-Castro17,https://doi.org/10.1186/s12880-017-0213-9 +Peter A. McCullough,Patient Discomfort Associated with the Use of Intra-arterial Iodinated Contrast Media: A Meta-Analysis of Comparative Randomized Controlled Trials.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#McCulloughC11,https://doi.org/10.1186/1471-2342-11-12 +Thomas Westermaier,3D rotational fluoroscopy for intraoperative clip control in patients with intracranial aneurysms - assessment of feasibility and image quality.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#WestermaierLHLS16,https://doi.org/10.1186/s12880-016-0133-0 +Moyi Li,Alterations in resting-state functional connectivity of the default mode network in amnestic mild cognitive impairment: an fMRI study.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#LiZZXXZWLTC17,https://doi.org/10.1186/s12880-017-0221-9 +Karin Bloch,Quantifying coronary sinus flow and global LV perfusion at 3T.,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#BlochCAS09,https://doi.org/10.1186/1471-2342-9-9 +Armin Eilaghi,CT texture features are associated with overall survival in pancreatic ductal adenocarcinoma - a quantitative analysis.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#EilaghiBZZKGKH17,https://doi.org/10.1186/s12880-017-0209-5 +David S. Wack,Masked smoothing using separable kernels for CT perfusion images.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#WackSSS14,https://doi.org/10.1186/1471-2342-14-28 +Alireza Nejati,A deformable template method for describing and averaging the anatomical variation of the human nasal cavity.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#NejatiKJC16,https://doi.org/10.1186/s12880-016-0154-8 +Lindsey M. Polizzotti,Quantitative metric profiles capture three-dimensional temporospatial architecture to discriminate cellular functional states.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#PolizzottiHOBYP11,https://doi.org/10.1186/1471-2342-11-11 +André J. Szameitat,The functional magnetic resonance imaging (fMRI) procedure as experienced by healthy participants and stroke patients - A pilot study.,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#SzameitatSS09,https://doi.org/10.1186/1471-2342-9-14 +Janto F. Dreijer,Left ventricular segmentation from MRI datasets with edge modelling conditional random fields.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#DreijerHP13,https://doi.org/10.1186/1471-2342-13-24 +Farzad Khalvati,MPCaD: a multi-scale radiomics-driven framework for automated prostate cancer localization and detection.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#KhalvatiZCSWH18,https://doi.org/10.1186/s12880-018-0258-4 +Martin Ystad,Hippocampal volumes are important predictors for memory function in elderly women.,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#YstadLWERWAAGFRL09,https://doi.org/10.1186/1471-2342-9-17 +Trond Engjom,Contrast-enhanced ultrasonography of the pancreas shows impaired perfusion in pancreas insufficient cystic fibrosis patients.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#EngjomNESLMJGD18,https://doi.org/10.1186/s12880-018-0259-3 +Barbara Brunet-Imbault,A new anisotropy index on trabecular bone radiographic images using the fast Fourier transform.,2005,5,BMC Medical Imaging,,db/journals/bmcmi/bmcmi5.html#Brunet-ImbaultLCHB05,https://doi.org/10.1186/1471-2342-5-4 +Primoz Poredos,Determination of the human spine curve based on laser triangulation.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#PoredosCMJ15,https://doi.org/10.1186/s12880-015-0044-5 +Jamshid Sadiqi,Radiographic features of Ollier's disease - two case reports.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#SadiqiRHS17,https://doi.org/10.1186/s12880-017-0230-8 +Barbara Blasiak,Comparison of T2 and T2 *-weighted MR molecular imaging of a mouse model of glioma.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#BlasiakBFRMPWTIASOT13,https://doi.org/10.1186/1471-2342-13-20 +Brian Quinn,Radiation dosimetry of 18F-FDG PET/CT: incorporating exam-specific parameters in dose estimates.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#QuinnDPSD16,https://doi.org/10.1186/s12880-016-0143-y +Kazuyoshi Motomura,Sentinel nodes identified by computed tomography-lymphography accurately stage the axilla in patients with breast cancer.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#MotomuraSNHN13,https://doi.org/10.1186/1471-2342-13-42 +Benoit Tricot,Improving the evaluation of cardiac function in rats at 7T with denoising filters: a comparison study.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#TricotDDCTCLLL17,https://doi.org/10.1186/s12880-017-0236-2 +Katia M. Passera,Radiofrequency ablation of liver tumors: quantitative assessment of tumor coverage through CT image processing.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#PasseraSSGVM13,https://doi.org/10.1186/1471-2342-13-3 +C. Michael Dunham,Practical one-dimensional measurements of age-related brain atrophy are validated by 3-dimensional values and clinical outcomes: a retrospective study.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#DunhamCPH16,https://doi.org/10.1186/s12880-016-0136-x +Yoshito Tsushima,Radiation Exposure from CT Examinations in Japan.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#TsushimaTTOE10,https://doi.org/10.1186/1471-2342-10-24 +Elin Trägårdh,Small average differences in attenuation corrected images between men and women in myocardial perfusion scintigraphy: a novel normal stress database.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#TragardhSJE11,https://doi.org/10.1186/1471-2342-11-18 +Mei Xiao,Building generic anatomical models using virtual model cutting and iterative registration.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#XiaoSPSHS10,https://doi.org/10.1186/1471-2342-10-5 +Zhi-Cheng Liu,Combination of IVIM-DWI and 3D-ASL for differentiating true progression from pseudoprogression of Glioblastoma multiforme after concurrent chemoradiotherapy: study protocol of a prospective diagnostic trial.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#LiuYHSTNYSWC17,https://doi.org/10.1186/s12880-017-0183-y +Tariq Sinan,CT features in abdominal tuberculosis: 20 years experience.,2002,2,BMC Medical Imaging,,db/journals/bmcmi/bmcmi2.html#SinanSRSB02,https://doi.org/10.1186/1471-2342-2-3 +J. P. M. Andrews,Incidental finding of large pneumothorax on Cardiac MR scan.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#AndrewsMD18,https://doi.org/10.1186/s12880-017-0240-6 +Rhonda A. Brownbill,Measuring body composition in overweight individuals by dual energy x-ray absorptiometry.,2005,5,BMC Medical Imaging,,db/journals/bmcmi/bmcmi5.html#BrownbillI05,https://doi.org/10.1186/1471-2342-5-1 +Salam A. Al-Attar,Quantitative and qualitative differences in subcutaneous adipose tissue stores across lipodystrophy types shown by magnetic resonance imaging.,2007,7,BMC Medical Imaging,,db/journals/bmcmi/bmcmi7.html#Al-AttarPRMWLRH07,https://doi.org/10.1186/1471-2342-7-3 +Christina Baun,Quantification of FDG-PET/CT with delayed imaging in patients with newly diagnosed recurrent breast cancer.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#BaunFGHNAHH18,https://doi.org/10.1186/s12880-018-0254-8 +Salam A. Al-Attar,Semi-automated segmentation and quantification of adipose tissue in calf and thigh by MRI: a preliminary study in patients with monogenic metabolic syndrome.,2006,6,BMC Medical Imaging,,db/journals/bmcmi/bmcmi6.html#Al-AttarPRMWRH06,https://doi.org/10.1186/1471-2342-6-11 +Ying Yu,Multimodal MRI for early diabetic mild cognitive impairment: study protocol of a prospective diagnostic trial.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#YuSYHNYLWG16,https://doi.org/10.1186/s12880-016-0152-x +Hiroyuki Tokue,Multidetector-row computed tomography for evaluating the branching angle of the celiac artery: a descriptive study.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#TokueTT12,https://doi.org/10.1186/1471-2342-12-36 +Caroline De Coninck,Preoperative axillary lymph node staging by ultrasound-guided cytology using a four-level sonographic score.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#ConinckNBS16,https://doi.org/10.1186/s12880-016-0116-1 +Natalia Partain,Mammographic density changes in surgical weight loss-an indication for personalized screening.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#PartainMPPSCFRL18,https://doi.org/10.1186/s12880-017-0242-4 +Oke Gerke,How to assess intra- and inter-observer agreement with quantitative PET using variance component analysis: a proposal for standardisation.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#GerkeVSHH16,https://doi.org/10.1186/s12880-016-0159-3 +Ilse M. Purmer,Brain computer tomography in critically ill patients - a prospective cohort study.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#PurmerIBKBVSH12,https://doi.org/10.1186/1471-2342-12-34 +Joel T. Lee,Internet Image Viewer (iiV).,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#LeeMCP08,https://doi.org/10.1186/1471-2342-8-10 +Claudia Chevrefils,Quantitative evaluation of an automatic segmentation method for 3D reconstruction of intervertebral scoliotic disks from MR images.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#ChevrefilsCGMA12,https://doi.org/10.1186/1471-2342-12-26 +Xuan Yu,Cone-beam computed tomography study of root and canal morphology of mandibular premolars in a western Chinese population.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#YuGLZTWD12,https://doi.org/10.1186/1471-2342-12-18 +Shu-Fang Chen,Ultrasonographic assessment of carpal tunnel syndrome of mild and moderate severity in diabetic patients by using an 8-point measurement of median nerve cross-sectional areas.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#ChenHTCLCC12,https://doi.org/10.1186/1471-2342-12-15 +Ho NamKoong,Immune reconstitution inflammatory syndrome due to Mycobacterium avium complex successfully followed up using 18 F-fluorodeoxyglucose positron emission tomography-computed tomography in a patient with human immunodeficiency virus infection: A case report.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#NamKoongFIYHMSA15,https://doi.org/10.1186/s12880-015-0063-2 +Aristarchos Papagiannaros,Quantum dot loaded immunomicelles for tumor imaging.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#PapagiannarosUHMLT10,https://doi.org/10.1186/1471-2342-10-22 +Azra Alizad,Breast vibro-acoustography: initial experience in benign lesions.,2014,14,BMC Medical Imaging,,db/journals/bmcmi/bmcmi14.html#AlizadMGGCKWF14,https://doi.org/10.1186/s12880-014-0040-1 +Hsu-Chao Chang,Systemic air embolism after percutaneous computed tomography-guided lung biopsy due to a kink in the coaxial biopsy system: a case report.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#ChangY18,https://doi.org/10.1186/s12880-018-0245-9 +Lambros S. Athanasiou,Three-dimensional reconstruction of coronary arteries and plaque morphology using CT angiography - comparison and registration with IVUS.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#AthanasiouRSESB16,https://doi.org/10.1186/s12880-016-0111-6 +Astrid Ellen Grams,Correlation between degenerative spine disease and bone marrow density: a retrospective investigation.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#GramsRBHFKGG16,https://doi.org/10.1186/s12880-016-0123-2 +Mette Jensen,Tumor volume in subcutaneous mouse xenografts measured by microCT is more accurate and reproducible than determined by 18F-FDG-microPET or external caliper.,2008,8,BMC Medical Imaging,,db/journals/bmcmi/bmcmi8.html#JensenJBK08,https://doi.org/10.1186/1471-2342-8-16 +Parag Mahajan,Effects of extremity positioning on radiographic evaluation of femoral tunnel location with digitally reconstructed femoral lateral radiographs after anterior cruciate ligament reconstruction.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#MahajanCAH15,https://doi.org/10.1186/s12880-015-0093-9 +Anders Persson,Three-dimensional drip infusion CT cholangiography in patients with suspected obstructive biliary disease: a retrospective analysis of feasibility and adverse reaction to contrast material.,2006,6,BMC Medical Imaging,,db/journals/bmcmi/bmcmi6.html#PerssonDSB06,https://doi.org/10.1186/1471-2342-6-1 +Yuya Nogami,Anisakiasis mimics cancer recurrence: two cases of extragastrointestinal anisakiasis suspected to be recurrence of gynecological cancer on PET-CT and molecular biological investigation.,2016,16,BMC Medical Imaging,,db/journals/bmcmi/bmcmi16.html#NogamiFBSSHMYSM16,https://doi.org/10.1186/s12880-016-0134-z +Sebastian Wojcinski,Real-time ultrasound elastography in 180 axillary lymph nodes: elasticity distribution in healthy lymph nodes and prediction of breast cancer metastases.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#WojcinskiDSCH12,https://doi.org/10.1186/1471-2342-12-35 +Malin Andersson,How to measure renal artery stenosis - a retrospective comparison of morphological measurement approaches in relation to hemodynamic significance.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#AnderssonJEPGWS15,https://doi.org/10.1186/s12880-015-0086-8 +Yasutoshi Ishihara,Evaluation of magnetic nanoparticle samples made from biocompatible ferucarbotran by time-correlation magnetic particle imaging reconstruction method.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#IshiharaHNI13,https://doi.org/10.1186/1471-2342-13-15 +David S. Wack,Improved assessment of multiple sclerosis lesion segmentation agreement via detection and outline error estimates.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#WackDBPRHRPZ12,https://doi.org/10.1186/1471-2342-12-17 +And U. Turken,Multimodal surface-based morphometry reveals diffuse cortical atrophy in traumatic brain injury.,2009,9,BMC Medical Imaging,,db/journals/bmcmi/bmcmi9.html#TurkenHKOSBW09,https://doi.org/10.1186/1471-2342-9-20 +Lucas Nacif,Significance of CT scan and color Doppler duplex ultrasound in the assessment of Abernethy malformation.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#NacifPGRACD15,https://doi.org/10.1186/s12880-015-0079-7 +Ivana Galinovic,Automated vs manual delineations of regions of interest- a comparison in commercially available perfusion MRI software.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#GalinovicOSBHBF12,https://doi.org/10.1186/1471-2342-12-16 +Juhun Lee,Eigen-disfigurement model for simulating plausible facial disfigurement after reconstructive surgery.,2015,15,BMC Medical Imaging,,db/journals/bmcmi/bmcmi15.html#LeeFBRSHM15,https://doi.org/10.1186/s12880-015-0050-7 +Zongying Lai,Joint sparse reconstruction of multi-contrast MRI images with graph based redundant wavelet transform.,2018,18,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi18.html#LaiZGDYGCQ18,https://doi.org/10.1186/s12880-018-0251-y +Richard Beare,Does the principle of minimum work apply at the carotid bifurcation: a retrospective cohort study.,2011,11,BMC Medical Imaging,,db/journals/bmcmi/bmcmi11.html#BeareDRCSHSP11,https://doi.org/10.1186/1471-2342-11-17 +Maija E. Rossi,Diffusion tensor imaging correlates with lesion volume in cerebral hemisphere infarctions.,2010,10,BMC Medical Imaging,,db/journals/bmcmi/bmcmi10.html#RossiJMDOS10,https://doi.org/10.1186/1471-2342-10-21 +Alexander Wong,Correlated diffusion imaging.,2013,13,BMC Medical Imaging,,db/journals/bmcmi/bmcmi13.html#WongGCH13,https://doi.org/10.1186/1471-2342-13-26 +Jennifer S. Gregory,Identification of hip fracture patients from radiographs using Fourier analysis of the trabecular structure: a cross-sectional study.,2004,4,BMC Medical Imaging,,db/journals/bmcmi/bmcmi4.html#GregorySURA04,https://doi.org/10.1186/1471-2342-4-4 +Sumeyra U. Demir,An automated method for analysis of microcirculation videos for accurate assessment of tissue perfusion.,2012,12,BMC Medical Imaging,,db/journals/bmcmi/bmcmi12.html#DemirHHWMN12,https://doi.org/10.1186/1471-2342-12-37 +Yanguang Shen,Ultra-high b-value diffusion-weighted imaging features of the prostatic leiomyoma-case report.,2017,17,BMC Medical Imaging,1,db/journals/bmcmi/bmcmi17.html#ShenZWMWPSY17,https://doi.org/10.1186/s12880-017-0234-4 +Abdul-Malik Shakir,Design and Development of Standards (HL7 V3) Based Enterprise Architecture for Public Health Programs Integration at the County of Los Angeles.,2007,2,IJHISI,2,db/journals/ijhisi/ijhisi2.html#ShakirCDMBV07,https://doi.org/10.4018/jhisi.2007040104 +Wullianallur Raghupathi,Exploring a UML Profile Approach to Modeling Web Services in Healthcare.,2007,2,IJHISI,2,db/journals/ijhisi/ijhisi2.html#RaghupathiG07,https://doi.org/10.4018/jhisi.2007040103 +Agma J. M. Traina,How to Cope with the Performance Gap in Content-Based Image Retrieval Systems.,2009,4,IJHISI,1,db/journals/ijhisi/ijhisi4.html#TrainaTCRM09,https://doi.org/10.4018/jhisi.2009010104 +João M. C. Gonçalves,Real-Time Predictive Analytics for Sepsis Level and Therapeutic Plans in Intensive Care Medicine.,2014,9,IJHISI,3,db/journals/ijhisi/ijhisi9.html#GoncalvesPSS0AR14,https://doi.org/10.4018/ijhisi.2014070103 +Christos Vasilakis,Application of Unified Modelling Language (UML) to the Modelling of Health Care Systems: An Introduction and Literature Survey.,2008,3,IJHISI,4,db/journals/ijhisi/ijhisi3.html#VasilakisLL08,https://doi.org/10.4018/jhisi.2008100103 +Ahmad Alaiad,An Exploratory Study of Home Healthcare Robots Adoption Applying the UTAUT Model.,2014,9,IJHISI,4,db/journals/ijhisi/ijhisi9.html#AlaiadZK14,https://doi.org/10.4018/ijhisi.2014100104 +Wullianallur Raghupathi,Designing Clinical Decision Support Systems in Health Care: A Systemic View.,2007,2,IJHISI,1,db/journals/ijhisi/ijhisi2.html#Raghupathi07,https://doi.org/10.4018/jhisi.2007010104 +Maryann Yeo,Telehealth Organizational Implementation Guideline Issues: A Canadian Perspective.,2006,1,IJHISI,3,db/journals/ijhisi/ijhisi1.html#YeoJ06,https://doi.org/10.4018/jhisi.2006070102 +Kelvin K. F. Tsoi,Data Visualization with IBM Watson Analytics for Global Cancer Trends Comparison from World Health Organization.,2018,13,IJHISI,1,db/journals/ijhisi/ijhisi13.html#TsoiCHKKTM18,https://doi.org/10.4018/IJHISI.2018010104 +R. Kalpana,Changes in Brain White Matter Assessed Via Textural Features Using a Neural Network.,2010,5,IJHISI,2,db/journals/ijhisi/ijhisi5.html#KalpanaMA10,https://doi.org/10.4018/jhisi.2010040105 +Teemu Paavola,Exploiting Process thinking in Health Care.,2008,3,IJHISI,2,db/journals/ijhisi/ijhisi3.html#Paavola08,https://doi.org/10.4018/jhisi.2008040102 +Wullianallur Raghupathi,The Intellectual Structure of Health and Medical Informatics.,2010,5,IJHISI,4,db/journals/ijhisi/ijhisi5.html#RaghupathiN10,https://doi.org/10.4018/jhisi.2010100102 +E. Vance Wilson,Building Better E-Health Through a Personal Health Informatics Pedagogy.,2006,1,IJHISI,3,db/journals/ijhisi/ijhisi1.html#Wilson06,https://doi.org/10.4018/jhisi.2006070105 +Rocci Luppicini,Exploring the Effect of mHealth Technologies on Communication and Information Sharing in a Pediatric Critical Care Unit: A Case Study.,2011,6,IJHISI,3,db/journals/ijhisi/ijhisi6.html#LuppiciniA11,https://doi.org/10.4018/jhisi.2011070101 +Julie Ann Luiz Adrian,The New Cooperative Medical System in China: A Cure for All?,2012,7,IJHISI,3,db/journals/ijhisi/ijhisi7.html#AdrianVH12,https://doi.org/10.4018/jhisi.2012070102 +C. Vimal,Random Forest Classifier Based ECG Arrhythmia Classification.,2010,5,IJHISI,2,db/journals/ijhisi/ijhisi5.html#VimalS10,https://doi.org/10.4018/jhisi.2010040101 +Kabir Sen,Incorporating Global Medical Knowledge to Solve Healthcare Problems: A Framework for a Crowdsourcing System.,2018,13,IJHISI,1,db/journals/ijhisi/ijhisi13.html#SenG18,https://doi.org/10.4018/IJHISI.2018010101 +Wei Wang 0015,Exploring Region of Interest (ROI) to Support Quality of Service in Unreliable Wireless Electronic Healthcare Communications.,2012,7,IJHISI,4,db/journals/ijhisi/ijhisi7.html#WangZWH12,https://doi.org/10.4018/jhisi.2012100101 +Chunxiao Chigan,QoS Provisioning in Sensor Enabled Telemedicine Networks.,2007,2,IJHISI,3,db/journals/ijhisi/ijhisi2.html#ChiganO07,https://doi.org/10.4018/jhisi.2007070102 +Kevin J. Bennett,Utilizing Combined Claims and Clinical Datasets for Research Among Potential Cases of Rare Diseases.,2018,13,IJHISI,2,db/journals/ijhisi/ijhisi13.html#BennettMO18,https://doi.org/10.4018/IJHISI.2018040101 +Laura Nimmon,Telehealth Interventions for Management of Chronic Obstructive Lung Disease (COPD) and Asthma: A Critical Review.,2013,8,IJHISI,1,db/journals/ijhisi/ijhisi8.html#NimmonPF13,https://doi.org/10.4018/jhisi.2013010103 +V. Rajesh,SEMG for Human Computer Interface Using Ann to Navigate Wheel Chair.,2010,5,IJHISI,2,db/journals/ijhisi/ijhisi5.html#RajeshK10,https://doi.org/10.4018/jhisi.2010040102 +Mashhour Bani Amer,A Novel Neural Fuzzy Approach for Diagnosis of Potassium Disturbances.,2011,6,IJHISI,3,db/journals/ijhisi/ijhisi6.html#AmerAE11,https://doi.org/10.4018/jhisi.2011070102 +Alexander J. McLeod Jr.,Using Stakeholder Analysis to Identify Users in Healthcare Information Systems Research: Who is the Real User?,2009,4,IJHISI,3,db/journals/ijhisi/ijhisi4.html#McLeodC09,https://doi.org/10.4018/jhisi.2009070101 +Aman Singh,Diagnosis of Liver Disease by Using Least Squares Support Vector Machine Approach.,2016,11,IJHISI,2,db/journals/ijhisi/ijhisi11.html#SinghP16,https://doi.org/10.4018/IJHISI.2016040104 +Sabah S. Al-Fedaghi,Scrutinizing the Rule: Privacy Realization in HIPAA.,2008,3,IJHISI,2,db/journals/ijhisi/ijhisi3.html#Al-Fedaghi08,https://doi.org/10.4018/jhisi.2008040104 +Darren Woollatt,Choosing Technologies for Handheld and Ubiquitous Decision Support.,2007,2,IJHISI,3,db/journals/ijhisi/ijhisi2.html#WoollattKJW07,https://doi.org/10.4018/jhisi.2007070101 +Juanita Manning-Walsh,Effect of Practitioner Self-Care and Anxiety on Relationships within the Context of Organizational Change.,2012,7,IJHISI,2,db/journals/ijhisi/ijhisi7.html#Manning-WalshF12,https://doi.org/10.4018/jhisi.2012040104 +Abderrahmane Elbalaoui,Automatic Detection of Blood Vessel in Retinal Images Using Vesselness Enhancement Filter and Adaptive Thresholding.,2017,12,IJHISI,1,db/journals/ijhisi/ijhisi12.html#ElbalaouiFTM17,https://doi.org/10.4018/IJHISI.2017010102 +Avnish Rastogi,Charting Health Information Technology Futures for Healthcare Services Organizations.,2008,3,IJHISI,1,db/journals/ijhisi/ijhisi3.html#RastogiDT08,https://doi.org/10.4018/jhisi.2008010101 +Shyamala G. Nadathur,Formal-Transfer In and Out of Stroke Care Units: An Analysis Using Bayesian Networks.,2011,6,IJHISI,3,db/journals/ijhisi/ijhisi6.html#NadathurW11,https://doi.org/10.4018/jhisi.2011070103 +Jean E. Wallace,The Introduction of an Electronic Patient Care Information System and Health Care Providers' Job Stress: A Mixed-Methods Case Study.,2010,5,IJHISI,4,db/journals/ijhisi/ijhisi5.html#WallaceFWGL10,https://doi.org/10.4018/jhisi.2010100103 +Payam Hanafizadeh,Neural Network-based Evaluation of the Effect of the Motivation of Hospital Employees on Patients' Satisfaction.,2010,5,IJHISI,4,db/journals/ijhisi/ijhisi5.html#HanafizadehPA10,https://doi.org/10.4018/jhisi.2010100101 +Carla Teixeira Lopes,Identification and Classification of Health Queries: Co-Occurrences vs. Domain-Specific Terminologies.,2014,9,IJHISI,3,db/journals/ijhisi/ijhisi9.html#Lopes014,https://doi.org/10.4018/ijhisi.2014070104 +Roy Rada,Trends in Information Systems and Long-Term Care: A Literature Review.,2015,10,IJHISI,2,db/journals/ijhisi/ijhisi10.html#Rada15,https://doi.org/10.4018/IJHISI.2015040104 +Janice A. Osbourne,Factors Motivating the Acceptance of New Information and Communication Technologies in UK Healthcare: A Test of Three Models.,2006,1,IJHISI,4,db/journals/ijhisi/ijhisi1.html#OsbourneC06,https://doi.org/10.4018/jhisi.2006100103 +Donald C. McDermid,Factors Affecting the Sustainability of Computer Information Systems: Embedding New Information Technology into a Hospital Environment.,2010,5,IJHISI,1,db/journals/ijhisi/ijhisi5.html#McDermidKS10,https://doi.org/10.4018/jhisi.2010110301 +Shalini Gambhir,The Diagnosis of Dengue Disease: An Evaluation of Three Machine Learning Approaches.,2018,13,IJHISI,3,db/journals/ijhisi/ijhisi13.html#GambhirMK18,https://doi.org/10.4018/IJHISI.2018070101 +Harri Oinas-Kukkonen,Physicians' User Experiences of Mobile Pharmacopoeias and Evidence-Based Medical Guidelines.,2009,4,IJHISI,2,db/journals/ijhisi/ijhisi4.html#Oinas-KukkonenRLSK09,https://doi.org/10.4018/jhisi.2009040104 +Charles Chen,Measuring Patients' Perceptions and Social Influence on Home Telecare Management System Acceptance.,2010,5,IJHISI,3,db/journals/ijhisi/ijhisi5.html#ChenC10,https://doi.org/10.4018/jhisi.2010070104 +Robert C. MacGregor,Benefits Derived from ICT Adoption in Regional Medical Practices: Perceptual Differences Between Male and Female General Practitioners.,2007,2,IJHISI,1,db/journals/ijhisi/ijhisi2.html#MacGregorHHL07,https://doi.org/10.4018/jhisi.2007010101 +Djamila Marouf,The MAV-ES Data Integration Approach for Decisional Information Systems (DIS): A Case on Epidemiologic Monitoring.,2016,11,IJHISI,4,db/journals/ijhisi/ijhisi11.html#MaroufHB16,https://doi.org/10.4018/IJHISI.2016100102 +Karen A. Wager,Assessing Physician and Nurse Satisfaction with an Ambulatory Care EMR: One Facility's Approach.,2008,3,IJHISI,1,db/journals/ijhisi/ijhisi3.html#Wager08,https://doi.org/10.4018/jhisi.2008010104 +Indrajit Pan,Assessment of Anti-angiogenic Drug in Cancer Therapy.,2010,5,IJHISI,2,db/journals/ijhisi/ijhisi5.html#Pan10,https://doi.org/10.4018/jhisi.2010040103 +John Lee Reardon,Perceptions of an Organizing Vision for Electronic Medical Records by Independent Physician Practices.,2009,4,IJHISI,3,db/journals/ijhisi/ijhisi4.html#Reardon09,https://doi.org/10.4018/jhisi.2009070102 +Riadh Bouslimi,Medical Image Retrieval in Healthcare Social Networks.,2018,13,IJHISI,2,db/journals/ijhisi/ijhisi13.html#BouslimiAA18,https://doi.org/10.4018/IJHISI.2018040102 +Rishi Kanth Saripalle,UMLS Semantic Network as a UML Metamodel for Improving Biomedical Ontology and Application Modeling.,2015,10,IJHISI,2,db/journals/ijhisi/ijhisi10.html#Saripalle15,https://doi.org/10.4018/IJHISI.2015040103 +Marian Wilson,Participant Perspectives on Benefits and Challenges of Engaging in an Online Pain Self-Management Program.,2017,12,IJHISI,4,db/journals/ijhisi/ijhisi12.html#WilsonS17,https://doi.org/10.4018/IJHISI.2017100104 +James G. Anderson,Computerization of Primary Care in the United States.,2006,1,IJHISI,3,db/journals/ijhisi/ijhisi1.html#AndersonB06,https://doi.org/10.4018/jhisi.2006070101 +Joshia Tan,Biomedical Image Processing.,2012,7,IJHISI,1,db/journals/ijhisi/ijhisi7.html#Tan12,https://doi.org/10.4018/jhisi.2012010105 +Virginia Ilie,Challenges Associated with Physicians' Usage of Electronic Medical Records.,2009,4,IJHISI,3,db/journals/ijhisi/ijhisi4.html#IlieSCS09,https://doi.org/10.4018/jhisi.2009070103 +Taxiarchis Botsis,Implementation of a Computerized System in an Oncology Unit.,2007,2,IJHISI,3,db/journals/ijhisi/ijhisi2.html#BotsisS07,https://doi.org/10.4018/jhisi.2007070103 +Nastaran Hajiheydari,Proposing a Business Model in Healthcare Industry: E-Diagnosis.,2013,8,IJHISI,2,db/journals/ijhisi/ijhisi8.html#HajiheydariKF13,https://doi.org/10.4018/jhisi.2013040104 +Navneet Kaur Bajwa,Critical Success Factors in Electronic Health Records (EHR) Implementation: An Exploratory Study in North India.,2017,12,IJHISI,2,db/journals/ijhisi/ijhisi12.html#BajwaSD17,https://doi.org/10.4018/IJHISI.2017040101 +Nilmini Wickramasinghe,The Competitive Forces Facing E-Health.,2006,1,IJHISI,4,db/journals/ijhisi/ijhisi1.html#WickramasingheMJV06,https://doi.org/10.4018/jhisi.2006100106 +Alka Gautam,ECG Signal De-noising with Asynchronous Averaging and Filtering Algorithm.,2010,5,IJHISI,2,db/journals/ijhisi/ijhisi5.html#GautamLC10,https://doi.org/10.4018/jhisi.2010040104 +Tarik Abdel-Monem,Electronic Medical Records and Public Perceptions: A Deliberative Process.,2013,8,IJHISI,3,db/journals/ijhisi/ijhisi8.html#Abdel-MonemHS13,https://doi.org/10.4018/jhisi.2013070103 +Fikreyohannes Lemma,Envisioning a National e-Medicine Network Architecture in a Developing Country: A Case Study.,2008,3,IJHISI,1,db/journals/ijhisi/ijhisi3.html#LemmaDTK08,https://doi.org/10.4018/jhisi.2008010103 +Cynthia M. LeRouge,Project Initiation for Telemedicine Services.,2014,9,IJHISI,2,db/journals/ijhisi/ijhisi9.html#LeRougeTW14,https://doi.org/10.4018/ijhisi.2014040104 +Gary Sutkin,Characteristics of Good Clinical Educators from Medical Students' Perspectives: A Qualitative Inquiry using a Web-Based Survey System.,2008,3,IJHISI,2,db/journals/ijhisi/ijhisi3.html#SutkinBZA08,https://doi.org/10.4018/jhisi.2008040106 +Ricardo Villegas,A Software Tool for Reading DICOM Directory Files.,2007,2,IJHISI,1,db/journals/ijhisi/ijhisi2.html#VillegasMV07,https://doi.org/10.4018/jhisi.2007010105 +April Moreno,Assessing Utilization and Effectiveness in Public Participative and Volunteered Geographic Information Systems for Environmental Data.,2017,12,IJHISI,4,db/journals/ijhisi/ijhisi12.html#MorenoO17,https://doi.org/10.4018/IJHISI.2017100101 +Lisa A. Osborne,Identifying and Addressing the Barriers to the Use of an Internet-Register for Multiple Sclerosis.,2013,8,IJHISI,1,db/journals/ijhisi/ijhisi8.html#OsborneLMTMJFN13,https://doi.org/10.4018/jhisi.2013010101 +Abdul-Rahman Al-Ali,A Preliminary Study toward Wireless Integration of Patient Information System.,2006,1,IJHISI,4,db/journals/ijhisi/ijhisi1.html#Al-AliOL06,https://doi.org/10.4018/jhisi.2006100101 +Somsirsa Chatterjee,Characterization of HRV by Poincare Plot Analysis among the Female Tea Garden Workers of Northern Hilly Regions of West Bengal.,2010,5,IJHISI,2,db/journals/ijhisi/ijhisi5.html#ChatterjeeGB10,https://doi.org/10.4018/jhisi.2010040106 +David B. Meinert,Anticipated Use of EMR Functions and Physician Characteristics.,2009,4,IJHISI,2,db/journals/ijhisi/ijhisi4.html#MeinertP09,https://doi.org/10.4018/jhisi.2009040101 +Vasileios Syrimpeis,A Knowledge Based System for the Selection of Muscles for Gait Phase Detection using EMGs.,2017,12,IJHISI,2,db/journals/ijhisi/ijhisi12.html#SyrimpeisMAP17,https://doi.org/10.4018/IJHISI.2017040102 +Peter Adebayo Idowu,Development of a Fuzzy Logic-based Model for Monitoring Cardiovascular Risk.,2015,10,IJHISI,4,db/journals/ijhisi/ijhisi10.html#IdowuABO15,https://doi.org/10.4018/IJHISI.2015100103 +Lisa M. Nanovic,Identifying Optimal Chronic Kidney Disease Patient Education Web Sites: Assessing E-Health Technology by Content Area Experts.,2007,2,IJHISI,1,db/journals/ijhisi/ijhisi2.html#NanovicJ07,https://doi.org/10.4018/jhisi.2007010103 +Nan Zhang 0004,No Silver Bullet: Identifying Security Vulnerabilities in Anonymization Protocols for Hospital Databases.,2012,7,IJHISI,4,db/journals/ijhisi/ijhisi7.html#0004ODCH12,https://doi.org/10.4018/jhisi.2012100104 +Sharmila Banu K.,Exploring Incidence-Prevalence Patterns in Spatial Epidemiology via Neighborhood Rough Sets.,2017,12,IJHISI,1,db/journals/ijhisi/ijhisi12.html#KT17,https://doi.org/10.4018/IJHISI.2017010103 +Olufunke O. Oladipupo,On Sharp Boundary Problem in Rule Based Expert Systems in the Medical Domain.,2010,5,IJHISI,3,db/journals/ijhisi/ijhisi5.html#OlufunkeCC10,https://doi.org/10.4018/jhisi.2010070102 +Saloni,Human Voice Waveform Analysis for Categorization of Healthy and Parkinson Subjects.,2016,11,IJHISI,1,db/journals/ijhisi/ijhisi11.html#SaloniSG16,https://doi.org/10.4018/IJHISI.2016010102 +Shahid Manzoor,Implementation of a Referent Tracking System.,2007,2,IJHISI,4,db/journals/ijhisi/ijhisi2.html#ManzorrCR07,https://doi.org/10.4018/jhisi.2007100103 +Heiko Gewald,Inhibitors of Physicians' Use of Mandatory Hospital Information Systems (HIS).,2018,13,IJHISI,1,db/journals/ijhisi/ijhisi13.html#GewaldG18,https://doi.org/10.4018/IJHISI.2018010103 +Wienand A. Omta,HTS-IA: High Throughput Screening Information Architecture for Genomics.,2013,8,IJHISI,4,db/journals/ijhisi/ijhisi8.html#OmtaEKSB13,https://doi.org/10.4018/ijhisi.2013100102 +B. Dawn Medlin,An Empirical Investigation: Health Care Employee Passwords and Their Crack Times in Relationship to HIPAA Security Standards.,2007,2,IJHISI,3,db/journals/ijhisi/ijhisi2.html#MedlinC07,https://doi.org/10.4018/jhisi.2007070104 +Surya Nepal,A Trusted System for Sharing Patient Electronic Medical Records in Autonomous Distributed Health Care Systems.,2007,2,IJHISI,1,db/journals/ijhisi/ijhisi2.html#NepalZJK07,https://doi.org/10.4018/jhisi.2007010102 +Huigang Liang,User Acceptance of Computerized Physician Order Entry: An Empirical Investigation.,2006,1,IJHISI,2,db/journals/ijhisi/ijhisi1.html#LiangXW06,https://doi.org/10.4018/jhisi.2006040103 +Satya Ranjan Dash,Scaled Fuzzy Graph for Cluster Analysis in DNA Sequence of Olfactory Receptors.,2013,8,IJHISI,1,db/journals/ijhisi/ijhisi8.html#DashDS13,https://doi.org/10.4018/jhisi.2013010104 +Amar Gupta,An Information Technology Architecture for Drug Effectiveness Reporting and Post-Marketing Surveillance.,2007,2,IJHISI,3,db/journals/ijhisi/ijhisi2.html#GuptaWCS07,https://doi.org/10.4018/jhisi.2007070106 +Henning Müller,Putting the Content Into Context: Features and Gaps in Image Retrieval.,2009,4,IJHISI,1,db/journals/ijhisi/ijhisi4.html#MullerK09,https://doi.org/10.4018/jhisi.2009010106 +Marilyn M. Helms,Information Technology (IT) and the Healthcare Industry: A SWOT Analysis.,2008,3,IJHISI,1,db/journals/ijhisi/ijhisi3.html#HelmsMA08,https://doi.org/10.4018/jhisi.2008010105 +Sharie Falan,Sustaining Healthcare Through Waste Elimination: A Taxonomic Analysis with Case Illustrations.,2011,6,IJHISI,4,db/journals/ijhisi/ijhisi6.html#FalanHZTR11,https://doi.org/10.4018/jhisi.2011100101 +D. Selvathi,The SURE-LET Approach for MR Brain Image Denoising Using Different Shrinkage Rules.,2010,5,IJHISI,2,db/journals/ijhisi/ijhisi5.html#SelvathiSM10,https://doi.org/10.4018/jhisi.2010040108 +Olivia F. Lee,Virtualized Disaster Recovery Model for Large Scale Hospital and Healthcare Systems.,2010,5,IJHISI,3,db/journals/ijhisi/ijhisi5.html#LeeG10,https://doi.org/10.4018/jhisi.2010070105 +Patrícia Macedo,iReport SportsPhysio Platform: A Unifying Model for Sports Injuries Surveillance and Monitoring.,2014,9,IJHISI,3,db/journals/ijhisi/ijhisi9.html#MacedoMJ14,https://doi.org/10.4018/ijhisi.2014070102 +Thi Thanh Hai Nguyen,Critical Success Factors in Health Information Technology Implementation: The Perspective of Finnish IT Managers.,2015,10,IJHISI,1,db/journals/ijhisi/ijhisi10.html#NguyenTI15,https://doi.org/10.4018/IJHISI.2015010101 +Ahmad Alaiad,A Conceptual Framework of Smart Home Context: An Empirical Investigation.,2016,11,IJHISI,3,db/journals/ijhisi/ijhisi11.html#AlaiadAAH16,https://doi.org/10.4018/IJHISI.2016070103 +Sandeep Lakaraju,Analysis of Healthcare Workflows in Accordance with Access Control Policies.,2016,11,IJHISI,1,db/journals/ijhisi/ijhisi11.html#LakarajuXW16,https://doi.org/10.4018/IJHISI.2016010101 +Walisa Romsaiyud,Adaptive Multi-Services System for Maternal and Child Health Care on Mobile Application (AM-Care).,2010,5,IJHISI,3,db/journals/ijhisi/ijhisi5.html#RomsaiyudP10,https://doi.org/10.4018/jhisi.2010070103 +Manel Saad Saoud,A Simulation Knowledge Extraction-based Decision Support System for the Healthcare Emergency Department.,2016,11,IJHISI,2,db/journals/ijhisi/ijhisi11.html#SaoudBA16,https://doi.org/10.4018/IJHISI.2016040102 +Jordan Mitchell,Organizational Factors Associated with Health Information Technology Adoption and Utilization Among Home Health / Hospice Agencies.,2011,6,IJHISI,3,db/journals/ijhisi/ijhisi6.html#MitchellBP11,https://doi.org/10.4018/jhisi.2011070104 +Sara Paiva,Preventing Alzheimer's Wandering: The Potential of Involving Communities.,2013,8,IJHISI,4,db/journals/ijhisi/ijhisi8.html#PaivaPCA13,https://doi.org/10.4018/ijhisi.2013100103 +Jim Ryan,Using Key Performance Indicators to Reduce Perceived Perioperative Complexity and Improve Patient Workflow.,2017,12,IJHISI,4,db/journals/ijhisi/ijhisi12.html#RyanDDL17,https://doi.org/10.4018/IJHISI.2017100102 +Nebil Buyurgan,A Novel GS1 Data Standard Adoption Roadmap for Healthcare Providers.,2011,6,IJHISI,4,db/journals/ijhisi/ijhisi6.html#BuyurganRJVB11,https://doi.org/10.4018/jhisi.2011100103 +Wissem Labbadi,Efficient Algorithm for Answering Fuzzy Medical Requests in Pervasive Healthcare Information Systems.,2017,12,IJHISI,2,db/journals/ijhisi/ijhisi12.html#LabbadiA17,https://doi.org/10.4018/IJHISI.2017040103 +Iain Morrison,Decision Support With BPEL and Web Services.,2007,2,IJHISI,2,db/journals/ijhisi/ijhisi2.html#MorrisonN07,https://doi.org/10.4018/jhisi.2007040105 +Konstantinos Koumaditis,Proposing and Testing SOA Governance Process: A Case Study Approach.,2015,10,IJHISI,3,db/journals/ijhisi/ijhisi10.html#KoumaditisT15,https://doi.org/10.4018/IJHISI.2015070103 +Manel Saad Saoud,A Multi-Agent Based Modeling and Simulation Data Management and Analysis System for the Hospital Emergency Department.,2017,12,IJHISI,3,db/journals/ijhisi/ijhisi12.html#SaoudBA17,https://doi.org/10.4018/IJHISI.2017070102 +Joseph M. Woodside,Space-Time Cluster Analysis: Application of Healthcare Service Data in Epidemiological Studies.,2009,4,IJHISI,4,db/journals/ijhisi/ijhisi4.html#WoodsideS09,https://doi.org/10.4018/jhisi.2009071005 +Neset Hikmet,The Impact of Professional Certifications on Healthcare Information Technology Use.,2006,1,IJHISI,3,db/journals/ijhisi/ijhisi1.html#HikmetB06,https://doi.org/10.4018/jhisi.2006070104 +Sabah Al-Fedaghi,Design Principles in Health Information Technology: An Alternative to UML Use Case Methodology.,2014,9,IJHISI,1,db/journals/ijhisi/ijhisi9.html#Al-Fedaghi14,https://doi.org/10.4018/ijhisi.2014010102 +Diane Lending,The Effects of Confidentiality on Nursing Self-Efficacy with Information Systems.,2007,2,IJHISI,3,db/journals/ijhisi/ijhisi2.html#LendingD07,https://doi.org/10.4018/jhisi.2007070105 +William H. Horsthemke,Evaluation Challenges for Bridging Semantic Gap: Shape Disagreements on Pulmonary Nodules in the Lung Image Database Consortium.,2009,4,IJHISI,1,db/journals/ijhisi/ijhisi4.html#HorsthemkeRF09,https://doi.org/10.4018/jhisi.2009010102 +Viju Raghupathi,Exploring Cost and Quality of Medicare in the United States using Analytics.,2016,11,IJHISI,2,db/journals/ijhisi/ijhisi11.html#RaghupathiR16,https://doi.org/10.4018/IJHISI.2016040101 +Juan C. Lavariega,Monitoring and Assisting Maternity-Infant Care in Rural Areas (MAMICare).,2014,9,IJHISI,4,db/journals/ijhisi/ijhisi9.html#LavariegaCGA14,https://doi.org/10.4018/ijhisi.2014100103 +Yi Wang,Applying Dynamic Causal Mining in Health Service Management.,2008,3,IJHISI,4,db/journals/ijhisi/ijhisi3.html#Wang08,https://doi.org/10.4018/jhisi.2008100102 +Bahae Samhan,Why Do People Resist Patient Portal Systems?: An Application of the Dual Factor Model of IT Usage.,2017,12,IJHISI,4,db/journals/ijhisi/ijhisi12.html#Samhan17,https://doi.org/10.4018/IJHISI.2017100105 +Safa Attia,Development of an Emergency Response Management using Mobile Devices for Hospital Infrastructures Affected by Power Grid Failures.,2016,11,IJHISI,1,db/journals/ijhisi/ijhisi11.html#AttiaBS16,https://doi.org/10.4018/IJHISI.2016010103 +Qing Zhang 0001,Approximate Processing for Medical Record Linking and Multidatabase Analysis.,2007,2,IJHISI,4,db/journals/ijhisi/ijhisi2.html#ZhangH07,https://doi.org/10.4018/jhisi.2007100104 +Jim Ryan,A Balanced Perspective to Perioperative Process Management Aligned to Hospital Strategy.,2014,9,IJHISI,4,db/journals/ijhisi/ijhisi9.html#RyanDDL14,https://doi.org/10.4018/ijhisi.2014100101 +Anushia Inthiran,Medical Information Retrieval Strategies: An Exploratory Study on the Information Retrieval Behaviors of Non-Medical Professionals.,2012,7,IJHISI,1,db/journals/ijhisi/ijhisi7.html#InthiranAA12,https://doi.org/10.4018/jhisi.2012010103 +Yongji Yang,Kinect-Based Limb Rehabilitation Methods.,2018,13,IJHISI,3,db/journals/ijhisi/ijhisi13.html#YangXJ18,https://doi.org/10.4018/IJHISI.2018070104 +Ali Otarkhani,Analyzing the Impact of Governance of Enterprise IT on Hospital Performance: Tehran's (Iran) Hospitals - A Case Study.,2017,12,IJHISI,3,db/journals/ijhisi/ijhisi12.html#OtarkhaniSP17,https://doi.org/10.4018/IJHISI.2017070101 +Liam O'Neill,Physician Characteristics Associated with Early Adoption of Electronic Medical Records in Smaller Group Practices.,2009,4,IJHISI,2,db/journals/ijhisi/ijhisi4.html#ONeillTK09,https://doi.org/10.4018/jhisi.2009040105 +Chiranji Lal Chowdhary,A Hybrid Scheme for Breast Cancer Detection using Intuitionistic Fuzzy Rough Set Technique.,2016,11,IJHISI,2,db/journals/ijhisi/ijhisi11.html#ChowdharyA16,https://doi.org/10.4018/IJHISI.2016040103 +D. Jude Hemanth,Application of Adaptive Resonance Theory Neural Network for MR Brain Tumor Image Classification.,2010,5,IJHISI,1,db/journals/ijhisi/ijhisi5.html#HemanthSA10,https://doi.org/10.4018/jhisi.2010110304 +Reza Sherafat Kazemzadeh,A Framework for Data and Mined Knowledge Interoperability in Clinical Decision Support Systems.,2010,5,IJHISI,1,db/journals/ijhisi/ijhisi5.html#KazemzadehSJ10,https://doi.org/10.4018/jhisi.2010110303 +Joey van Angeren,Application Portfolio Management in Hospitals: Empirical Insights.,2014,9,IJHISI,1,db/journals/ijhisi/ijhisi9.html#AngerenBB14,https://doi.org/10.4018/ijhisi.2014010104 +Timothy Jay Carney,Organizational Factors Influencing the Use of Clinical Decision Support for Improving Cancer Screening Within Community Health Centers.,2014,9,IJHISI,1,db/journals/ijhisi/ijhisi9.html#CarneyWMJH14,https://doi.org/10.4018/ijhisi.2014010101 +Roy Rada,Ethnographic Discovery of Adverse Events in Patient Online Discussions: Customer Relationship Management.,2008,3,IJHISI,3,db/journals/ijhisi/ijhisi3.html#Rada08,https://doi.org/10.4018/jhisi.2008070105 +David D. Dobrzykowski,Examining Heterogeneous Patterns of Electronic Health Records Use: A Contingency Perspective and Assessment.,2012,7,IJHISI,2,db/journals/ijhisi/ijhisi7.html#Dobrzykowski12,https://doi.org/10.4018/jhisi.2012040101 +Beibei Cheng,Automatic Detection of Arrow Annotation Overlays in Biomedical Images.,2011,6,IJHISI,4,db/journals/ijhisi/ijhisi6.html#ChengSDAT11,https://doi.org/10.4018/jhisi.2011100102 +Phillip Olla,The M-Health Reference Model: An Organizing Framework for Conceptualizing Mobile Health Systems.,2006,1,IJHISI,2,db/journals/ijhisi/ijhisi1.html#OllaT06,https://doi.org/10.4018/jhisi.2006040101 +Faouzi Kamoun,Human and Organizational Factors of Healthcare Data Breaches: The Swiss Cheese Model of Data Breach Causation And Prevention.,2014,9,IJHISI,1,db/journals/ijhisi/ijhisi9.html#KamounN14,https://doi.org/10.4018/ijhisi.2014010103 +Gahangir Hossain,Design Analytics of Complex Communication Systems Involving Two Different Sensory Disabilities.,2017,12,IJHISI,2,db/journals/ijhisi/ijhisi12.html#Hossain17,https://doi.org/10.4018/IJHISI.2017040104 +Andrew Simpson,On The Development of Secure Service-Oriented Architectures to Support Medical Research.,2007,2,IJHISI,2,db/journals/ijhisi/ijhisi2.html#SimpsonPSRK07,https://doi.org/10.4018/jhisi.2007040106 +Jim P. DeMello,Factors Impacting Use of Information Technology by Physicians in Private Practice.,2012,7,IJHISI,2,db/journals/ijhisi/ijhisi7.html#DeMelloD12,https://doi.org/10.4018/jhisi.2012040102 +Hayit Greenspan,Revisiting the Feature and Content Gap for Landmark- Based and Image-to-Image Retrieval in Medical CBIR.,2009,4,IJHISI,1,db/journals/ijhisi/ijhisi4.html#Greenspan09,https://doi.org/10.4018/jhisi.2009010105 +Christina I. Serrano,An Exploratory Study of Patient Acceptance of Walk-In Telemedicine Services for Minor Conditions.,2009,4,IJHISI,4,db/journals/ijhisi/ijhisi4.html#SerranoK09,https://doi.org/10.4018/jhisi.2009071003 +Seyed Shahabeddin Sadr,Implication of E-Health and IT Governance on Healthcare Expenditure: An Econometrics Approach (Case Study Middle East Countries).,2013,8,IJHISI,2,db/journals/ijhisi/ijhisi8.html#SadrSF13,https://doi.org/10.4018/jhisi.2013040105 +Karen Chang,Nurses' Perceptions of Using a Pocket PC for Shift Reports and Patient Care.,2006,1,IJHISI,1,db/journals/ijhisi/ijhisi1.html#ChangLBN06,https://doi.org/10.4018/jhisi.2006010104 +Mourad Sarrouti,A Yes/No Answer Generator Based on Sentiment-Word Scores in Biomedical Question Answering.,2017,12,IJHISI,3,db/journals/ijhisi/ijhisi12.html#SarroutiA17,https://doi.org/10.4018/IJHISI.2017070104 +Mashhour Bani Amer,Assessment of Liver Function Using Hybrid Neuro-Fuzzy Model of Blood Albumin.,2010,5,IJHISI,4,db/journals/ijhisi/ijhisi5.html#Amer10,https://doi.org/10.4018/jhisi.2010100104 +Jim Ryan,A Case Study Perspective for Balanced Perioperative Workflow Achievement through Data-Driven Process Improvement.,2016,11,IJHISI,3,db/journals/ijhisi/ijhisi11.html#RyanDDL16,https://doi.org/10.4018/IJHISI.2016070102 +Fábio Costa,Risk Management Information System Architecture for a Hospital Center: The Case of CHTMAD.,2013,8,IJHISI,4,db/journals/ijhisi/ijhisi8.html#CostaSVPC13,https://doi.org/10.4018/ijhisi.2013100105 +Charles S. Beverley,Differences in Electronic Medical Record Implementation and Use According to Geographical Location and Organizational Characteristics of US Federally Qualified Health Centers.,2012,7,IJHISI,3,db/journals/ijhisi/ijhisi7.html#BeverleyPWRG12,https://doi.org/10.4018/jhisi.2012070101 +Jinman Kim,Bridging the Feature Gaps for Retrieval of Multi-Dimensional Images.,2009,4,IJHISI,1,db/journals/ijhisi/ijhisi4.html#KimCF09,https://doi.org/10.4018/jhisi.2009010103 +Dobin Yim,Identifying Bands in the Knowledge Exchange Spectrum in an Online Health Infomediary.,2015,10,IJHISI,3,db/journals/ijhisi/ijhisi10.html#YimKA15,https://doi.org/10.4018/IJHISI.2015070104 +Guy Paré,Internet as a Source of Health Information and its Perceived Influence on Personal Empowerment.,2009,4,IJHISI,4,db/journals/ijhisi/ijhisi4.html#PareMSL09,https://doi.org/10.4018/jhisi.2009071001 +Khouloud Safi Eljil,Predicting Hypoglycemia in Diabetic Patients Using Time-Sensitive Artificial Neural Networks.,2016,11,IJHISI,4,db/journals/ijhisi/ijhisi11.html#EljilQP16,https://doi.org/10.4018/IJHISI.2016100104 +Vivying S. Y. Cheng,Health Insurance Portability and Accountability Act (HIPPA) Compliant Access Control Model for Web Services.,2006,1,IJHISI,1,db/journals/ijhisi/ijhisi1.html#ChengH06,https://doi.org/10.4018/jhisi.2006010102 +Nebil Buyurgan,Supply Chain-Related Adverse Events and Patient Safety in Healthcare.,2015,10,IJHISI,2,db/journals/ijhisi/ijhisi10.html#BuyurganF15,https://doi.org/10.4018/IJHISI.2015040102 +Andrzej Ceglowski,Towards Process-of-Care Aware Emergency Department Information Systems: A Clustering Approach to Activity Views Elicitation.,2008,3,IJHISI,4,db/journals/ijhisi/ijhisi3.html#CeglowskiC08,https://doi.org/10.4018/jhisi.2008100101 +David Parry,Open Source Software: A Key Component of E-Health in Developing Nations.,2008,3,IJHISI,3,db/journals/ijhisi/ijhisi3.html#ParryPDS08,https://doi.org/10.4018/jhisi.2008070101 +Paul R. Harper,TreeWorks: Advances in Scalable Decision Trees.,2008,3,IJHISI,4,db/journals/ijhisi/ijhisi3.html#HarperL08,https://doi.org/10.4018/jhisi.2008100104 +Filipe Portela,Implementing a Pervasive Real-Time Intelligent System for Tracking Critical Events with Intensive Care Patients.,2013,8,IJHISI,4,db/journals/ijhisi/ijhisi8.html#PortelaGSMASR13,https://doi.org/10.4018/ijhisi.2013100101 +Synnøve Thomassen Andersen,Innovation in ICT-Based Health Care Provision.,2011,6,IJHISI,2,db/journals/ijhisi/ijhisi6.html#AndersenJ11,https://doi.org/10.4018/jhisi.2011040102 +Hussein Atoui,Ambient Intelligence and Pervasive Architecture Designed within the EPI-MEDICS Personal ECG Monitor.,2008,3,IJHISI,4,db/journals/ijhisi/ijhisi3.html#AtouiTFR08,https://doi.org/10.4018/jhisi.2008100105 +Adekunle Oluseyi Afolabi,Systematic Literature Review on Empirical Results and Practical Implementations of Healthcare Recommender Systems: Lessons Learned and a Novel Proposal.,2015,10,IJHISI,4,db/journals/ijhisi/ijhisi10.html#AfolabiTHM15,https://doi.org/10.4018/IJHISI.2015100101 +Thomas Chesney,Data Mining Medical Information: Should Artificial Neural Networks Be Used to Analyse Trauma Audit Data?,2006,1,IJHISI,2,db/journals/ijhisi/ijhisi1.html#ChesneyPODCMT06,https://doi.org/10.4018/jhisi.2006040104 +Carla Wiggins,Entrepreneurial IT Governance: Electronic Medical Records in Rural Healthcare.,2006,1,IJHISI,4,db/journals/ijhisi/ijhisi1.html#WigginsBTP06,https://doi.org/10.4018/jhisi.2006100104 +Paula Alexandra Rego,A Serious Games Framework for Health Rehabilitation.,2014,9,IJHISI,3,db/journals/ijhisi/ijhisi9.html#RegoMR14,https://doi.org/10.4018/ijhisi.2014070101 +John C. Pendergrass,A Threat Table Based Assessment of Information Security in Telemedicine.,2014,9,IJHISI,4,db/journals/ijhisi/ijhisi9.html#PendergrassHRV14,https://doi.org/10.4018/ijhisi.2014100102 +Frédérique Laforest,Documents and Topic Maps: An Original way to Manage Medical Records.,2007,2,IJHISI,4,db/journals/ijhisi/ijhisi2.html#LaforestV07,https://doi.org/10.4018/jhisi.2007100102 +Xuesong (Sonya) Zhang,A Community-Based Participatory Research Model and Web Application for Studying Health Professional Shortage Areas in the United States.,2013,8,IJHISI,3,db/journals/ijhisi/ijhisi8.html#ZhangD13,https://doi.org/10.4018/jhisi.2013070102 +Dana Schwieger,Applying Adaptive Structuration Theory to Health Information Systems Adoption: A Case Study.,2006,1,IJHISI,1,db/journals/ijhisi/ijhisi1.html#SchwiegerMRW06,https://doi.org/10.4018/jhisi.2006010106 +M. Poulymenopoulou,Document Management Mechanism for Holistic Emergency Healthcare.,2014,9,IJHISI,2,db/journals/ijhisi/ijhisi9.html#Poulymenopoulou14,https://doi.org/10.4018/ijhisi.2014040101 +Jinhyung Lee,Factors Affecting Health Information Technology Expenditure in California Hospitals.,2015,10,IJHISI,2,db/journals/ijhisi/ijhisi10.html#Lee15,https://doi.org/10.4018/IJHISI.2015040101 +Kalpdrum Passi,A Decision Support System (DSS) for Colorectal Cancer Follow-Up Program via a Semantic Framework.,2015,10,IJHISI,1,db/journals/ijhisi/ijhisi10.html#PassiZ15,https://doi.org/10.4018/IJHISI.2015010102 +Mohamad Soltani Delgosha,The Business Values of Patient Knowledge Management (PKM) in the Healthcare Industry.,2013,8,IJHISI,2,db/journals/ijhisi/ijhisi8.html#DelgoshaOF13,https://doi.org/10.4018/jhisi.2013040106 +Stacy Bourgeois,Electronic Health Records: Improving Patient Safety and Quality of Care in Texas Acute Care Hospitals.,2010,5,IJHISI,3,db/journals/ijhisi/ijhisi5.html#BourgeoisY10,https://doi.org/10.4018/jhisi.2010070101 +Diane C. Davis,Perceived Level of Benefits and Risks of Core Functionalities of an EHR System.,2006,1,IJHISI,4,db/journals/ijhisi/ijhisi1.html#DavisT06,https://doi.org/10.4018/jhisi.2006100105 +Calvin K. L. Or,Pre-Implementation Case Studies Evaluating Workflow and Informatics Challenges in Private Primary Care Clinics for Electronic Medical Record Implementation.,2015,10,IJHISI,4,db/journals/ijhisi/ijhisi10.html#Or15,https://doi.org/10.4018/IJHISI.2015100104 +Basmah Almoaber,Barriers to Successful Health Information Exchange Systems in Canada and the USA: A Systematic Review.,2017,12,IJHISI,1,db/journals/ijhisi/ijhisi12.html#AlmoaberA17,https://doi.org/10.4018/IJHISI.2017010104 +Raquel da Luz Dias,Video Production and Video Tutorials in Professional Health Education: A Mobile Learning Experience.,2014,9,IJHISI,3,db/journals/ijhisi/ijhisi9.html#DiasML14,https://doi.org/10.4018/ijhisi.2014070105 +Fred K. Weigel,Use of Diffusion of Innovations Theory in Medical Informatics Research.,2012,7,IJHISI,3,db/journals/ijhisi/ijhisi7.html#WeigelRHCF12,https://doi.org/10.4018/jhisi.2012070104 +Stefan Jablonski,Integrated Process and Data Management for Healthcare Applications.,2007,2,IJHISI,4,db/journals/ijhisi/ijhisi2.html#JablonskiLMFVDGM07,https://doi.org/10.4018/jhisi.2007100101 +Tobias Mettler,Transformation of the Hospital Supply Chain: How to Measure the Maturity of Supplier Relationship Management Systems in Hospitals?,2011,6,IJHISI,2,db/journals/ijhisi/ijhisi6.html#Mettler11,https://doi.org/10.4018/jhisi.2011040101 +John D. Ainsworth,The PsyGrid Experience: Using Web Services in the Study of Schizophrenia.,2007,2,IJHISI,2,db/journals/ijhisi/ijhisi2.html#AinsworthH07,https://doi.org/10.4018/jhisi.2007040101 +Elad Harison,Measuring the Effects of Information Systems on the Performance of Operating Rooms (OR).,2010,5,IJHISI,1,db/journals/ijhisi/ijhisi5.html#HarisonB10,https://doi.org/10.4018/jhisi.2010110302 +Andik Setyono,The Development and Implementation of a Multimedia Messaging Service for an Enhanced Mobile Telemedicine System.,2012,7,IJHISI,1,db/journals/ijhisi/ijhisi7.html#SetyonoAE12,https://doi.org/10.4018/jhisi.2012010102 +Rola El Halabieh,From E-Prescribing to Drug Management System: Impacts of Stress on Usage Continuance.,2018,13,IJHISI,1,db/journals/ijhisi/ijhisi13.html#HalabiehBT18,https://doi.org/10.4018/IJHISI.2018010105 +Steven Walczak,An Artificial Neural Network Classification of Prescription Nonadherence.,2017,12,IJHISI,1,db/journals/ijhisi/ijhisi12.html#WalczakO17,https://doi.org/10.4018/IJHISI.2017010101 +Dickson K. W. Chiu,Alerts in Healthcare Applications: Process and Data Integration.,2009,4,IJHISI,2,db/journals/ijhisi/ijhisi4.html#ChiuKWKCKH09,https://doi.org/10.4018/jhisi.2009040103 +Rui Rijo,Multiple Approaches to the Diagnosis of Attention Deficit Hyperactivity Disorder.,2013,8,IJHISI,4,db/journals/ijhisi/ijhisi8.html#RijoMG13,https://doi.org/10.4018/ijhisi.2013100104 +Viju Raghupathi,Exploring the Relationship between ICTs and Public Health at Country Level: A Health Analytics Approach.,2013,8,IJHISI,3,db/journals/ijhisi/ijhisi8.html#RaghupathiR13,https://doi.org/10.4018/jhisi.2013070101 +Rajasvaran Logeswaran,Load Balancing Algorithms in Distributed Service Architectures for Medical Applications.,2010,5,IJHISI,1,db/journals/ijhisi/ijhisi5.html#LogeswaranC10,https://doi.org/10.4018/jhisi.2010110305 +Ahmad Al-Khasawneh,A Method for Classification Using Data Mining Technique for Diabetes: A Study of Health Care Information System.,2015,10,IJHISI,3,db/journals/ijhisi/ijhisi10.html#Al-Khasawneh15,https://doi.org/10.4018/IJHISI.2015070101 +Farzad Jahedi,A Novel Graphical-Oriented Framework for Capturing Data within Clinical Information Systems.,2013,8,IJHISI,2,db/journals/ijhisi/ijhisi8.html#JahediMA13,https://doi.org/10.4018/jhisi.2013040103 +Rennie Naidoo,Exploring the Social Dynamics of Implementing Self-Managed Web-Based Wellness Tools: A Structuration Analysis.,2012,7,IJHISI,4,db/journals/ijhisi/ijhisi7.html#Naidoo12,https://doi.org/10.4018/jhisi.2012100102 +Ding Xiong,An Athletic Training Analysis System Research Based on Physiological Computation.,2018,13,IJHISI,2,db/journals/ijhisi/ijhisi13.html#XiongYQ18,https://doi.org/10.4018/IJHISI.2018040104 +Mana Tarjoman,A Content-Based Approach to Medical Images Retrieval.,2013,8,IJHISI,2,db/journals/ijhisi/ijhisi8.html#TarjomanFB13,https://doi.org/10.4018/jhisi.2013040102 +Peter A. Lichtenberg,Enhancing Cognitive Screening in Geriatric Care: Use of an Internet-Based System.,2006,1,IJHISI,3,db/journals/ijhisi/ijhisi1.html#LichtenbergJEKMIBW06,https://doi.org/10.4018/jhisi.2006070103 +Aman Singh,An Efficient Diagnosis System for Detection of Liver Disease Using a Novel Integrated Method Based on Principal Component Analysis and K-Nearest Neighbor (PCA-KNN).,2016,11,IJHISI,4,db/journals/ijhisi/ijhisi11.html#SinghP16a,https://doi.org/10.4018/IJHISI.2016100103 +Michael Dohan,Lose It!,2011,6,IJHISI,2,db/journals/ijhisi/ijhisi6.html#DohanT11,https://doi.org/10.4018/jhisi.2011040105 +Peter Hoonakker,Development and Psychometric Qualities of the SEIPS Survey to Evaluate CPOE/EHR Implementation in ICUs.,2011,6,IJHISI,1,db/journals/ijhisi/ijhisi6.html#HoonakkerCCW11,https://doi.org/10.4018/jhisi.2011010104 +Jongtae Yu,Developing a User Centered Model for Ubiquitous Healthcare System Implementation: An Empirical Study.,2008,3,IJHISI,3,db/journals/ijhisi/ijhisi3.html#YuGK08,https://doi.org/10.4018/jhisi.2008070104 +Nilmini Wickramasinghe,A Transaction Cost Assessment of a Pervasive Technology Solution for Gestational Diabetes.,2011,6,IJHISI,4,db/journals/ijhisi/ijhisi6.html#WickramasingheTHHG11,https://doi.org/10.4018/jhisi.2011100104 +Stephan Kudyba,Informatics Application Challenges for Managed Care Organizations: The Three Faces of Population Segmentation and a Proposed Classification System.,2008,3,IJHISI,2,db/journals/ijhisi/ijhisi3.html#KudybaP08,https://doi.org/10.4018/jhisi.2008040103 +Alan C. Gillies,Information as Change Agent or Barrier in Health Care Reform?,2011,6,IJHISI,1,db/journals/ijhisi/ijhisi6.html#GilliesH11,https://doi.org/10.4018/jhisi.2011010102 +Ned Kock,Exploring Free Questionnaire Data with Anchor Variables: An Illustration Based on a Study of IT in Healthcare.,2012,7,IJHISI,1,db/journals/ijhisi/ijhisi7.html#KockV12,https://doi.org/10.4018/jhisi.2012010104 +Marion G. Sobol,Differences in Computer Usage of U.S. Group Medical Practices: 1994 vs. 2003.,2006,1,IJHISI,1,db/journals/ijhisi/ijhisi1.html#SobolP06,https://doi.org/10.4018/jhisi.2006010105 +Alireza Mirbagheri,Medical Robotics: State-of-the-Art Applications and Research Challenges.,2013,8,IJHISI,2,db/journals/ijhisi/ijhisi8.html#MirbagheriBFBA13,https://doi.org/10.4018/jhisi.2013040101 +Viju Raghupathi,An Unstructured Information Management Architecture Approach to Text Analytics of Cancer Blogs.,2014,9,IJHISI,2,db/journals/ijhisi/ijhisi9.html#RaghupathiR14,https://doi.org/10.4018/ijhisi.2014040102 +Therese Al Kareh,The Impact of Health Information Digitization on the Physiotherapist-Patient Relationship: A Pilot Study of the Lebanese Community.,2018,13,IJHISI,2,db/journals/ijhisi/ijhisi13.html#KarehT18,https://doi.org/10.4018/IJHISI.2018040103 +Carolyn McGregor,A Framework for the Design of Web Service Based Clinical Management Systems to Support Inter and Intra Organizational Patient Journeys.,2007,2,IJHISI,2,db/journals/ijhisi/ijhisi2.html#McGregor07,https://doi.org/10.4018/jhisi.2007040102 +Priscilla Arling,Improving the Implementation of Evidence-Based Practice and Information Systems in Healthcare: A Social Network Approach.,2011,6,IJHISI,2,db/journals/ijhisi/ijhisi6.html#ArlingDF11,https://doi.org/10.4018/jhisi.2011040104 +Evangelos Katsamakas,A Classification Analysis of the Success of Open Source Health Information Technology Projects.,2009,4,IJHISI,4,db/journals/ijhisi/ijhisi4.html#KatsamakasJRG09,https://doi.org/10.4018/jhisi.2009071002 +Farath N. Arshad,Improving Healthcare System Usability Without Real Users: A Semi-Parallel Design Approach.,2015,10,IJHISI,1,db/journals/ijhisi/ijhisi10.html#ArshadNWRT15,https://doi.org/10.4018/IJHISI.2015010104 +Shiu-chung Au,Gastrointestinal Motility Online Educational Endeavor.,2008,3,IJHISI,1,db/journals/ijhisi/ijhisi3.html#AuG08,https://doi.org/10.4018/jhisi.2008010102 +Mudasser F. Wyne,HIPAA Compliant HIS in J2EE Environment.,2007,2,IJHISI,4,db/journals/ijhisi/ijhisi2.html#WyneH07,https://doi.org/10.4018/jhisi.2007100105 +B. Gopinath,Classification of Thyroid Carcinoma in FNAB Cytological Microscopic Images.,2010,5,IJHISI,2,db/journals/ijhisi/ijhisi5.html#GopinathG10,https://doi.org/10.4018/jhisi.2010040107 +Elizabeth A. Regan,Realizing the Value of EHR Systems Critical Success Factors.,2016,11,IJHISI,3,db/journals/ijhisi/ijhisi11.html#ReganW16,https://doi.org/10.4018/IJHISI.2016070101 +Tsz-Wai (Iris) Lui,A Framework for Conceptualizing the Current Role and Future Trends of Information Systems in Medical Training.,2012,7,IJHISI,1,db/journals/ijhisi/ijhisi7.html#LuiG12,https://doi.org/10.4018/jhisi.2012010101 +George E. Heilman,Predicting Voluntary Participation in a Public Health Program Using a Neural Network.,2008,3,IJHISI,2,db/journals/ijhisi/ijhisi3.html#HeilmanCM08,https://doi.org/10.4018/jhisi.2008040101 +David Parry,Evaluation of a Fuzzy Ontology-Based Medical Information System.,2006,1,IJHISI,1,db/journals/ijhisi/ijhisi1.html#Parry06,https://doi.org/10.4018/jhisi.2006010103 +Stavros T. Ponis,Applying Discrete Event Simulation (DES) in Healthcare: The Case for Outpatient Facility Capacity Planning.,2013,8,IJHISI,3,db/journals/ijhisi/ijhisi8.html#PonisDGKT13,https://doi.org/10.4018/jhisi.2013070104 +Shobha Rekh,Implementation of an Error-Coding Scheme for Teleradiology System.,2006,1,IJHISI,4,db/journals/ijhisi/ijhisi1.html#RekhRCS06,https://doi.org/10.4018/jhisi.2006100102 +Maged N. Kamel Boulos,LiveWell - Promoting Healthy Living and Wellbeing for Parkinson Patients through Social Network and ICT Training: Lessons Learnt and Best Practices.,2015,10,IJHISI,3,db/journals/ijhisi/ijhisi10.html#BoulosIEZCCDMSG15,https://doi.org/10.4018/IJHISI.2015070102 +Sid Vatharkar,Factors Affecting Business and Information Technology Alignment at the Lower Levels of a Public Organisation.,2018,13,IJHISI,3,db/journals/ijhisi/ijhisi13.html#VatharkarGF18,https://doi.org/10.4018/IJHISI.2018070103 +Ali R. Montazemi,State of IS Integration in the Context of Patient-Centered Care: A Network Analysis and Research Directions.,2011,6,IJHISI,1,db/journals/ijhisi/ijhisi6.html#MontazemiPK11,https://doi.org/10.4018/jhisi.2011010101 +Joseph Tan,Non-Traditional Data Mining Applications in Taiwan National Health Insurance (NHI) Databases: A Hybrid Mining (HM) Case for the Framing of NHI Decisions.,2017,12,IJHISI,4,db/journals/ijhisi/ijhisi12.html#TanW17,https://doi.org/10.4018/IJHISI.2017100103 +Masoud Mohammadian,Intelligent Agent Framework for Secure Patient-Doctor Profiling and Profile Matching.,2008,3,IJHISI,3,db/journals/ijhisi/ijhisi3.html#MohammadianJ08,https://doi.org/10.4018/jhisi.2008070103 +Md. Rakibul Hoque,Factors Influencing Physicians' Acceptance of e-Health in Developing Country: An Empirical Study.,2016,11,IJHISI,1,db/journals/ijhisi/ijhisi11.html#HoqueAZ16,https://doi.org/10.4018/IJHISI.2016010104 +Michael J. Hine,Decision Making by Emergency Room Physicians and Residents: Implications for the Design of Clinical Decision Support Systems.,2009,4,IJHISI,2,db/journals/ijhisi/ijhisi4.html#HineFMW09,https://doi.org/10.4018/jhisi.2009040102 +álvaro Rocha,Evolution of Information Systems and Technologies Maturity in Healthcare.,2011,6,IJHISI,2,db/journals/ijhisi/ijhisi6.html#Rocha11,https://doi.org/10.4018/jhisi.2011040103 +Gilberto Munoz-Cornejo,An Empirical Investigation into the Adoption of Open Source Software in Hospitals.,2008,3,IJHISI,3,db/journals/ijhisi/ijhisi3.html#Munoz-CornejoSK08,https://doi.org/10.4018/jhisi.2008070102 +Valeria Hart,Hospital IT Sophistication Profiles and Patient Safety Outcomes: A Comparison of Three States.,2013,8,IJHISI,1,db/journals/ijhisi/ijhisi8.html#Hart13,https://doi.org/10.4018/jhisi.2013010102 +Steven Walczak,Nonparametric Decision Support Systems in Medical Diagnosis: Modeling Pulmonary Embolism.,2006,1,IJHISI,2,db/journals/ijhisi/ijhisi1.html#WalczakBL06,https://doi.org/10.4018/jhisi.2006040105 +Judy E. Scott,Models for Drone Delivery of Medications and Other Healthcare Items.,2018,13,IJHISI,3,db/journals/ijhisi/ijhisi13.html#ScottS18,https://doi.org/10.4018/IJHISI.2018070102 +Soumya De,Automated Text Detection and Recognition in Annotated Biomedical Publication Images.,2014,9,IJHISI,2,db/journals/ijhisi/ijhisi9.html#DeSCALT14,https://doi.org/10.4018/ijhisi.2014040103 +George Eisler,A Metric for Healthcare Technology Management (HCTM): E-Surveying Key Executives and Administrators of Canadian Teaching Hospitals.,2006,1,IJHISI,1,db/journals/ijhisi/ijhisi1.html#EislerTS06,https://doi.org/10.4018/jhisi.2006010101 +Pierre Michaud,Revisiting Clustered Microarchitecture for Future Superscalar Cores: A Case for Wide Issue Clusters.,2015,12,TACO,3,db/journals/taco/taco12.html#MichaudMS15,http://doi.acm.org/10.1145/2800787 +Kishore Kumar Pusukuri,Thread Tranquilizer: Dynamically reducing performance variation.,2012,8,TACO,4,db/journals/taco/taco8.html#PusukuriGB12,http://doi.acm.org/10.1145/2086696.2086725 +Amanieu D'Antras,Optimizing Indirect Branches in Dynamic Binary Translators.,2016,13,TACO,1,db/journals/taco/taco13.html#DAntrasGGL16,http://doi.acm.org/10.1145/2866573 +Chunhua Xiao,Stream arbitration: Towards efficient bandwidth utilization for emerging on-chip interconnects.,2013,9,TACO,4,db/journals/taco/taco9.html#XiaoCCGHLRW13,http://doi.acm.org/10.1145/2400682.2400719 +Yan Luo,Conserving network processor power consumption by exploiting traffic variability.,2007,4,TACO,1,db/journals/taco/taco4.html#LuoYYB07,http://doi.acm.org/10.1145/1216544.1216547 +Amit Golander,Hiding the misprediction penalty of a resource-efficient high-performance processor.,2008,4,TACO,4,db/journals/taco/taco4.html#GolanderW08,http://doi.acm.org/10.1145/1328195.1328201 +Tae Jun Ham,Decoupling Data Supply from Computation for Latency-Tolerant Communication in Heterogeneous Architectures.,2017,14,TACO,2,db/journals/taco/taco14.html#HamAM17,http://doi.acm.org/10.1145/3075620 +Chung-Hsiang Lin,SECRET: A Selective Error Correction Framework for Refresh Energy Reduction in DRAMs.,2015,12,TACO,2,db/journals/taco/taco12.html#LinSCYW15,http://doi.acm.org/10.1145/2747876 +Hong-Phuc Trinh,Efficient Data Encoding for Convolutional Neural Network application.,2014,11,TACO,4,db/journals/taco/taco11.html#TrinhDP14,http://doi.acm.org/10.1145/2685394 +Daniel Sánchez 0004,Modeling the impact of permanent faults in caches.,2013,10,TACO,4,db/journals/taco/taco10.html#SanchezSCGA13,http://doi.acm.org/10.1145/2541228.2541236 +Yuan-Shin Hwang,Snug set-associative caches: Reducing leakage power of instruction and data caches with no performance penalties.,2007,4,TACO,1,db/journals/taco/taco4.html#HwangL07,http://doi.acm.org/10.1145/1216544.1216549 +Daniel Sánchez 0003,An analysis of on-chip interconnection networks for large-scale chip multiprocessors.,2010,7,TACO,1,db/journals/taco/taco7.html#SanchezMK10,http://doi.acm.org/10.1145/1736065.1736069 +Julien Proy,Compiler-Assisted Loop Hardening Against Fault Attacks.,2017,14,TACO,4,db/journals/taco/taco14.html#ProyHBC17,http://doi.acm.org/10.1145/3141234 +Xiuyi Zhou,Performance-aware thermal management via task scheduling.,2010,7,TACO,1,db/journals/taco/taco7.html#ZhouYCZ10,http://doi.acm.org/10.1145/1736065.1736070 +Pavlos M. Mattheakis,Significantly reducing MPI intercommunication latency and power overhead in both embedded and HPC systems.,2013,9,TACO,4,db/journals/taco/taco9.html#MattheakisP13,http://doi.acm.org/10.1145/2400682.2400710 +Ruchira Sasanka,ALP: Efficient support for all levels of parallelism for complex media applications.,2007,4,TACO,1,db/journals/taco/taco4.html#SasankaLACD07,http://doi.acm.org/10.1145/1216544.1216546 +Heiner Litz,Efficient Correction of Anomalies in Snapshot Isolation Transactions.,2014,11,TACO,4,db/journals/taco/taco11.html#LitzDC14,http://doi.acm.org/10.1145/2693260 +Chuanjun Zhang,A way-halting cache for low-energy high-performance systems.,2005,2,TACO,1,db/journals/taco/taco2.html#ZhangVYN05,http://doi.acm.org/10.1145/1061267.1061270 +Gert-Jan van den Braak,R-GPU: A Reconfigurable GPU Architecture.,2016,13,TACO,1,db/journals/taco/taco13.html#BraakC16,http://doi.acm.org/10.1145/2890506 +Chen-Yong Cher,Exploring the effects of on-chip thermal variation on high-performance multicore architectures.,2011,8,TACO,1,db/journals/taco/taco8.html#CherK11,http://doi.acm.org/10.1145/1952998.1953000 +Guru Venkataramani,DeFT: Design space exploration for on-the-fly detection of coherence misses.,2011,8,TACO,2,db/journals/taco/taco8.html#VenkataramaniHKP11,http://doi.acm.org/10.1145/1970386.1970389 +Priya Nagpurkar,Efficient remote profiling for resource-constrained devices.,2006,3,TACO,1,db/journals/taco/taco3.html#NagpurkarMKS06,http://doi.acm.org/10.1145/1132462.1132465 +Yu Du,Delta-compressed caching for overcoming the write bandwidth limitation of hybrid main memory.,2013,9,TACO,4,db/journals/taco/taco9.html#DuZCMM13,http://doi.acm.org/10.1145/2400682.2400714 +Thejas Ramashekar,Automatic data allocation and buffer management for multi-GPU machines.,2013,10,TACO,4,db/journals/taco/taco10.html#RamashekarB13,http://doi.acm.org/10.1145/2544100 +Ajay Joshi,Distilling the essence of proprietary workloads into miniature benchmarks.,2008,5,TACO,2,db/journals/taco/taco5.html#JoshiEBJ08,http://doi.acm.org/10.1145/1400112.1400115 +Zheng Wang 0001,Using machine learning to partition streaming programs.,2013,10,TACO,3,db/journals/taco/taco10.html#WangO13,http://doi.acm.org/10.1145/2512436 +Gulay Yalcin,Exploiting Existing Comparators for Fine-Grained Low-Cost Error Detection.,2014,11,TACO,3,db/journals/taco/taco11.html#YalcinEIUC14,http://doi.acm.org/10.1145/2656341 +Timothy M. Jones 0001,Exploring the limits of early register release: Exploiting compiler analysis.,2009,6,TACO,3,db/journals/taco/taco6.html#JonesOAGE09,http://doi.acm.org/10.1145/1582710.1582714 +Mario Kicherer,Seamlessly portable applications: Managing the diversity of modern heterogeneous systems.,2012,8,TACO,4,db/journals/taco/taco8.html#KichererNBK12,http://doi.acm.org/10.1145/2086696.2086721 +Chuntao Jiang,Two-Level Hybrid Sampled Simulation of Multithreaded Applications.,2016,12,TACO,4,db/journals/taco/taco12.html#JiangYEJLX16,http://doi.acm.org/10.1145/2818353 +Grigorios Chrysos,HC-CART: A parallel system implementation of data mining classification and regression tree (CART) algorithm on a multi-FPGA system.,2013,9,TACO,4,db/journals/taco/taco9.html#ChrysosDPD13,http://doi.acm.org/10.1145/2400682.2400706 +Mojtaba Mehrara,Exploiting selective placement for low-cost memory protection.,2008,5,TACO,3,db/journals/taco/taco5.html#MehraraA08,http://doi.acm.org/10.1145/1455650.1455653 +Jonathan A. Winter,Addressing thermal nonuniformity in SMT workloads.,2008,5,TACO,1,db/journals/taco/taco5.html#WinterA08,http://doi.acm.org/10.1145/1369396.1369400 +Jian Li,Power-performance considerations of parallel computing on chip multiprocessors.,2005,2,TACO,4,db/journals/taco/taco2.html#LiM05,http://doi.acm.org/10.1145/1113841.1113844 +Hsing Min Chen,RATT-ECC: Rate Adaptive Two-Tiered Error Correction Codes for Reliable 3D Die-Stacked Memory.,2016,13,TACO,3,db/journals/taco/taco13.html#ChenWMC16,http://doi.acm.org/10.1145/2957758 +Cosmin Gorgovan,MAMBO: A Low-Overhead Dynamic Binary Modification Tool for ARM.,2016,13,TACO,1,db/journals/taco/taco13.html#GorgovanDL16,http://doi.acm.org/10.1145/2896451 +Mehmet Can Kurt,User-Assisted Store Recycling for Dynamic Task Graph Schedulers.,2016,13,TACO,4,db/journals/taco/taco13.html#KurtKAR16,http://doi.acm.org/10.1145/3018111 +Christoph Kerschbaumer,Information flow tracking meets just-in-time compilation.,2013,10,TACO,4,db/journals/taco/taco10.html#KerschbaumerHLBF13,http://doi.acm.org/10.1145/2541228.2555295 +Matteo Ferroni,Power Consumption Models for Multi-Tenant Server Infrastructures.,2017,14,TACO,4,db/journals/taco/taco14.html#FerroniCDBCHKS17,http://doi.acm.org/10.1145/3148965 +Davide Zoni,DarkCache: Energy-Performance Optimization of Tiled Multi-Cores by Adaptively Power-Gating LLC Banks.,2018,15,TACO,2,db/journals/taco/taco15.html#ZoniCF18,http://doi.acm.org/10.1145/3186895 +Raghuraman Balasubramanian,Enabling GPGPU Low-Level Hardware Explorations with MIAOW: An Open-Source RTL Implementation of a GPGPU.,2015,12,TACO,2,db/journals/taco/taco12.html#Balasubramanian15,http://doi.acm.org/10.1145/2764908 +Seyed Majid Zahedi,Managing Heterogeneous Datacenters with Tokens.,2018,15,TACO,2,db/journals/taco/taco15.html#ZahediFL18,http://doi.acm.org/10.1145/3191821 +Alberto Scolari,A Software Cache Partitioning System for Hash-Based Caches.,2016,13,TACO,4,db/journals/taco/taco13.html#ScolariBS16,http://doi.acm.org/10.1145/3018113 +Jianjun Li,Efficient and effective misaligned data access handling in a dynamic binary translation system.,2011,8,TACO,2,db/journals/taco/taco8.html#LiWH11,http://doi.acm.org/10.1145/1970386.1970388 +Prashant J. Nair,Citadel: Efficiently Protecting Stacked Memory from TSV and Large Granularity Failures.,2016,12,TACO,4,db/journals/taco/taco12.html#NairRQ16a,http://doi.acm.org/10.1145/2840807 +Kim M. Hazelwood,Managing bounded code caches in dynamic binary optimization systems.,2006,3,TACO,3,db/journals/taco/taco3.html#HazelwoodS06,http://doi.acm.org/10.1145/1162690.1162692 +Pablo de Oliveira Castro,CERE: LLVM-Based Codelet Extractor and REplayer for Piecewise Benchmarking and Optimization.,2015,12,TACO,1,db/journals/taco/taco12.html#CastroAPPJ15,http://doi.acm.org/10.1145/2724717 +Yulong Ao,Performance Optimization of the HPCG Benchmark on the Sunway TaihuLight Supercomputer.,2018,15,TACO,1,db/journals/taco/taco15.html#AoYLYJS18,http://doi.acm.org/10.1145/3182177 +Huimin Cui,Extendable pattern-oriented optimization directives.,2012,9,TACO,3,db/journals/taco/taco9.html#CuiXWYFF12,http://doi.acm.org/10.1145/2355585.2355587 +Pengcheng Li,LD: Low-Overhead GPU Race Detection Without Access Monitoring.,2017,14,TACO,1,db/journals/taco/taco14.html#LiHCBLZD17,http://doi.acm.org/10.1145/3046678 +Karthik Sangaiah,SynchroTrace: Synchronization-Aware Architecture-Agnostic Traces for Lightweight Multicore Simulation of CMP and HPC Workloads.,2018,15,TACO,1,db/journals/taco/taco15.html#SangaiahLJDNMTH18,http://doi.acm.org/10.1145/3158642 +Shiwen Hu,Effective management of multiple configurable units using dynamic optimization.,2006,3,TACO,4,db/journals/taco/taco3.html#HuVJ06,http://doi.acm.org/10.1145/1187976.1187981 +Alexandra Angerd,A Framework for Automated and Controlled Floating-Point Accuracy Reduction in Graphics Applications on GPUs.,2017,14,TACO,4,db/journals/taco/taco14.html#AngerdSS17,http://doi.acm.org/10.1145/3151032 +Ahmad Anbar,Exploiting Hierarchical Locality in Deep Parallel Architectures.,2016,13,TACO,2,db/journals/taco/taco13.html#AnbarSKBE16,http://doi.acm.org/10.1145/2897783 +Vishwesh Jatala,Scratchpad Sharing in GPUs.,2017,14,TACO,2,db/journals/taco/taco14.html#JatalaAK17,http://doi.acm.org/10.1145/3075619 +Christian Andreetta,FinPar: A Parallel Financial Benchmark.,2016,13,TACO,2,db/journals/taco/taco13.html#AndreettaBBEHHN16,http://doi.acm.org/10.1145/2898354 +Dan He,Improving Hybrid FTL by Fully Exploiting Internal SSD Parallelism with Virtual Blocks.,2014,11,TACO,4,db/journals/taco/taco11.html#HeWJFLTZ14,http://doi.acm.org/10.1145/2677160 +Dong Hyuk Woo,Chameleon: Virtualizing idle acceleration cores of a heterogeneous multicore processor for caching and prefetching.,2010,7,TACO,1,db/journals/taco/taco7.html#WooFKL10,http://doi.acm.org/10.1145/1736065.1736068 +Jung Ho Ahn,Scalable high-radix router microarchitecture using a network switch organization.,2013,10,TACO,3,db/journals/taco/taco10.html#AhnSK13,http://doi.acm.org/10.1145/2512433 +Mingzhou Zhou,Examining and Reducing the Influence of Sampling Errors on Feedback-Driven Optimizations.,2016,13,TACO,1,db/journals/taco/taco13.html#ZhouWSGY16,http://doi.acm.org/10.1145/2851502 +Abdul Rahman Kaitoua,Hadoop Extensions for Distributed Computing on Reconfigurable Active SSD Clusters.,2014,11,TACO,2,db/journals/taco/taco11.html#KaitouaHSAAASM14,http://doi.acm.org/10.1145/2608199 +Kevin Stock,Using machine learning to improve automatic vectorization.,2012,8,TACO,4,db/journals/taco/taco8.html#StockPS12,http://doi.acm.org/10.1145/2086696.2086729 +Wenlei Bao,Static and Dynamic Frequency Scaling on Multicore CPUs.,2016,13,TACO,4,db/journals/taco/taco13.html#BaoHCKPRS16,http://doi.acm.org/10.1145/3011017 +Cecilia González-Alvarez,Accelerating an application domain with specialized functional units.,2013,10,TACO,4,db/journals/taco/taco10.html#Gonzalez-AlvarezSAJE13,http://doi.acm.org/10.1145/2541228.2555303 +Olivier Serres,Enabling PGAS Productivity with Hardware Support for Shared Address Mapping: A UPC Case Study.,2016,12,TACO,4,db/journals/taco/taco12.html#SerresKAE16,http://doi.acm.org/10.1145/2842686 +Christian Wimmer,Automatic feedback-directed object fusing.,2010,7,TACO,2,db/journals/taco/taco7.html#WimmerM10,http://doi.acm.org/10.1145/1839667.1839669 +Stephen Dolan,Compiler support for lightweight context switching.,2013,9,TACO,4,db/journals/taco/taco9.html#DolanMG13,http://doi.acm.org/10.1145/2400682.2400695 +Antonio García-Guirado,DAPSCO: Distance-aware partially shared cache organization.,2012,8,TACO,4,db/journals/taco/taco8.html#Garcia-GuiradoPRG12,http://doi.acm.org/10.1145/2086696.2086704 +Amir Yazdanbakhsh,RFVP: Rollback-Free Value Prediction with Safe-to-Approximate Loads.,2016,12,TACO,4,db/journals/taco/taco12.html#YazdanbakhshPTE16,http://doi.acm.org/10.1145/2836168 +Nathanaël Prémillieu,Efficient Out-of-Order Execution of Guarded ISAs.,2014,11,TACO,4,db/journals/taco/taco11.html#PremillieuS14,http://doi.acm.org/10.1145/2677037 +Tanima Dey,ReSense: Mapping dynamic workloads of colocated multithreaded applications using resource sensitivity.,2013,10,TACO,4,db/journals/taco/taco10.html#DeyWDS13,http://doi.acm.org/10.1145/2541228.2555298 +Brad Calder,Editorial.,2008,5,TACO,1,db/journals/taco/taco5.html#CalderT08,http://doi.acm.org/10.1145/1369396.1369397 +María Jesús Garzarán,Tradeoffs in buffering speculative memory state for thread-level speculation in multiprocessors.,2005,2,TACO,3,db/journals/taco/taco2.html#GarzaranPLVRT05,http://doi.acm.org/10.1145/1089008.1089010 +Tomi äijö,Integer Linear Programming-Based Scheduling for Transport Triggered Architectures.,2016,12,TACO,4,db/journals/taco/taco12.html#AijoJEKT16,http://doi.acm.org/10.1145/2845082 +Yuanwu Lei,VLIW coprocessor for IEEE-754 quadruple-precision elementary functions.,2013,10,TACO,3,db/journals/taco/taco10.html#LeiDGXZDL13,http://doi.acm.org/10.1145/2512430 +Chencheng Ye,Cache Exclusivity and Sharing: Theory and Optimization.,2017,14,TACO,4,db/journals/taco/taco14.html#YeDLBCJ17,http://doi.acm.org/10.1145/3134437 +Jue Wang,Preventing STT-RAM Last-Level Caches from Port Obstruction.,2014,11,TACO,3,db/journals/taco/taco11.html#WangD014,http://doi.acm.org/10.1145/2633046 +Gülfem Savrun-Yeniçeri,Efficient hosted interpreters on the JVM.,2014,11,TACO,1,db/journals/taco/taco11.html#Savrun-YeniceriZZSLBLF14,http://doi.acm.org/10.1145/2532642 +Amir Morad,GP-SIMD Processing-in-Memory.,2014,11,TACO,4,db/journals/taco/taco11.html#MoradYG14,http://doi.acm.org/10.1145/2686875 +Zhong-Ho Chen,A hardware/software framework for instruction and data scratchpad memory allocation.,2010,7,TACO,1,db/journals/taco/taco7.html#ChenS10,http://doi.acm.org/10.1145/1736065.1736067 +Daniel A. Jiménez,Generalizing neural branch prediction.,2009,5,TACO,4,db/journals/taco/taco5.html#Jimenez09,http://doi.acm.org/10.1145/1498690.1498692 +Naghmeh Karimi,MAGIC: Malicious Aging in Circuits/Cores.,2015,12,TACO,1,db/journals/taco/taco12.html#KarimiKWSK15,http://doi.acm.org/10.1145/2724718 +Lev Mukhanov,ALEA: A Fine-Grained Energy Profiling Tool.,2017,14,TACO,1,db/journals/taco/taco14.html#MukhanovPWPNSL17,http://doi.acm.org/10.1145/3050436 +Tao Li,Adapting branch-target buffer to improve the target predictability of java code.,2005,2,TACO,2,db/journals/taco/taco2.html#LiBJ05,http://doi.acm.org/10.1145/1071604.1071605 +Guru Venkataramani,MemTracker: An accelerator for memory debugging and monitoring.,2009,6,TACO,2,db/journals/taco/taco6.html#VenkataramaniDSP09,http://doi.acm.org/10.1145/1543753.1543754 +Qin Zhao,PiPA: Pipelined profiling and analysis on multicore systems.,2010,7,TACO,3,db/journals/taco/taco7.html#ZhaoCW10,http://doi.acm.org/10.1145/1880037.1880038 +Andrés Goens,Symmetry in Software Synthesis.,2017,14,TACO,2,db/journals/taco/taco14.html#GoensSC17,http://doi.acm.org/10.1145/3095747 +Fabien Coelho,API compilation for image hardware accelerators.,2013,9,TACO,4,db/journals/taco/taco9.html#CoelhoI13,http://doi.acm.org/10.1145/2400682.2400708 +Wankang Zhao,Improving WCET by applying a WC code-positioning optimization.,2005,2,TACO,4,db/journals/taco/taco2.html#ZhaoWHM05,http://doi.acm.org/10.1145/1113841.1113842 +Bartosz Bogdanski,sFtree: A fully connected and deadlock-free switch-to-switch routing algorithm for fat-trees.,2012,8,TACO,4,db/journals/taco/taco8.html#BogdanskiRSG12,http://doi.acm.org/10.1145/2086696.2086734 +Hans Vandierendonck,Analysis of dependence tracking algorithms for task dataflow execution.,2013,10,TACO,4,db/journals/taco/taco10.html#VandierendonckTN13,http://doi.acm.org/10.1145/2541228.2555316 +Qixiao Liu,Hardware support for accurate per-task energy metering in multicore systems.,2013,10,TACO,4,db/journals/taco/taco10.html#LiuMJACV13,http://doi.acm.org/10.1145/2541228.2555291 +Boubacar Diouf,A decoupled local memory allocator.,2013,9,TACO,4,db/journals/taco/taco9.html#DioufHCOP13,http://doi.acm.org/10.1145/2400682.2400693 +Kristof Du Bois,Per-thread cycle accounting in multicore processors.,2013,9,TACO,4,db/journals/taco/taco9.html#BoisEE13,http://doi.acm.org/10.1145/2400682.2400688 +Brad Calder,Introduction.,2004,1,TACO,1,db/journals/taco/taco1.html#CalderT04,http://doi.acm.org/10.1145/980152.980153 +Prasad A. Kulkarni,Fast and efficient searches for effective optimization-phase sequences.,2005,2,TACO,2,db/journals/taco/taco2.html#KulkarniHWHDJ05,http://doi.acm.org/10.1145/1071604.1071607 +Pierre Michaud,A study of thread migration in temperature-constrained multicores.,2007,4,TACO,2,db/journals/taco/taco4.html#MichaudSFSC07,http://doi.acm.org/10.1145/1250727.1250729 +George Patsilaras,ReDirect: Reconfigurable Directories for Multicore Architectures.,2017,14,TACO,4,db/journals/taco/taco14.html#PatsilarasT17,http://doi.acm.org/10.1145/3162015 +Junwhan Ahn,AIM: Energy-Efficient Aggregation Inside the Memory Hierarchy.,2016,13,TACO,4,db/journals/taco/taco13.html#AhnYC16,http://doi.acm.org/10.1145/2994149 +Sriraman Tallam,Unified control flow and data dependence traces.,2007,4,TACO,3,db/journals/taco/taco4.html#TallamG07,http://doi.acm.org/10.1145/1275937.1275943 +Mihai Pricopi,Bahurupi: A polymorphic heterogeneous multi-core architecture.,2012,8,TACO,4,db/journals/taco/taco8.html#PricopiM12,http://doi.acm.org/10.1145/2086696.2086701 +Jongwon Lee,Dynamic code duplication with vulnerability awareness for soft error detection on VLIW architectures.,2013,9,TACO,4,db/journals/taco/taco9.html#LeeKLYP13,http://doi.acm.org/10.1145/2400682.2400707 +Lukasz Strozek,Energy- and area-efficient architectures through application clustering and architectural heterogeneity.,2009,6,TACO,1,db/journals/taco/taco6.html#StrozekB09,http://doi.acm.org/10.1145/1509864.1509868 +Yuanyuan Zhou,Efficient and flexible architectural support for dynamic monitoring.,2005,2,TACO,1,db/journals/taco/taco2.html#ZhouZQLT05,http://doi.acm.org/10.1145/1061267.1061269 +Davide B. Bartolini,Automated Fine-Grained CPU Provisioning for Virtual Machines.,2014,11,TACO,3,db/journals/taco/taco11.html#BartoliniSSS14,http://doi.acm.org/10.1145/2637480 +Vijay Janapa Reddi,Eliminating voltage emergencies via software-guided code transformations.,2010,7,TACO,2,db/journals/taco/taco7.html#ReddiCGSWBH10,http://doi.acm.org/10.1145/1839667.1839674 +Yi Yang,A unified optimizing compiler framework for different GPGPU architectures.,2012,9,TACO,2,db/journals/taco/taco9.html#YangXKMZ12,http://doi.acm.org/10.1145/2207222.2207225 +Andrew J. McPherson,Fence Placement for Legacy Data-Race-Free Programs via Synchronization Read Detection.,2016,12,TACO,4,db/journals/taco/taco12.html#McPhersonNSC16,http://doi.acm.org/10.1145/2835179 +Wenhao Jia,GPU Performance and Power Tuning Using Regression Trees.,2015,12,TACO,2,db/journals/taco/taco12.html#JiaGSM15,http://doi.acm.org/10.1145/2736287 +Milan Stanic,An Integrated Vector-Scalar Design on an In-Order ARM Core.,2017,14,TACO,2,db/journals/taco/taco14.html#StanicPHRCUV17,http://doi.acm.org/10.1145/3075618 +Lihang Zhao,A Filtering Mechanism to Reduce Network Bandwidth Utilization of Transaction Execution.,2016,12,TACO,4,db/journals/taco/taco12.html#ZhaoCCD16,http://doi.acm.org/10.1145/2837028 +Yangchun Luo,The design and implementation of heterogeneous multicore systems for energy-efficient speculative thread execution.,2013,10,TACO,4,db/journals/taco/taco10.html#LuoHZ13,http://doi.acm.org/10.1145/2541228.2541233 +Bart Coppens,Feedback-driven binary code diversification.,2013,9,TACO,4,db/journals/taco/taco9.html#CoppensSM13,http://doi.acm.org/10.1145/2400682.2400683 +Martin Kong,Compiler/Runtime Framework for Dynamic Dataflow Parallelization of Tiled Programs.,2014,11,TACO,4,db/journals/taco/taco11.html#KongPPGCS14,http://doi.acm.org/10.1145/2687652 +Adrià Armejach,Techniques to improve performance in requester-wins hardware transactional memory.,2013,10,TACO,4,db/journals/taco/taco10.html#ArmejachGNUC13,http://doi.acm.org/10.1145/2541228.2555299 +Brad Calder,Introduction.,2007,4,TACO,1,db/journals/taco/taco4.html#CalderT07,http://doi.acm.org/10.1145/1216544.1229348 +Kuan-Chung Chen,Enabling SIMT Execution Model on Homogeneous Multi-Core System.,2018,15,TACO,1,db/journals/taco/taco15.html#ChenC18,http://doi.acm.org/10.1145/3177960 +Tom M. Bruintjes,Sabrewing: A lightweight architecture for combined floating-point and integer arithmetic.,2012,8,TACO,4,db/journals/taco/taco8.html#BruintjesWGMS12,http://doi.acm.org/10.1145/2086696.2086720 +Leonid Domnitser,Non-monopolizable caches: Low-complexity mitigation of cache side channel attacks.,2012,8,TACO,4,db/journals/taco/taco8.html#DomnitserJLAP12,http://doi.acm.org/10.1145/2086696.2086714 +V. Krishna Nandivada,Improved bitwidth-aware variable packing.,2013,10,TACO,3,db/journals/taco/taco10.html#NandivadaB13,http://doi.acm.org/10.1145/2509420.2509427 +Saurabh Sharma,Spectral prefetcher: An effective mechanism for L2 cache prefetching.,2005,2,TACO,4,db/journals/taco/taco2.html#SharmaBC05,http://doi.acm.org/10.1145/1113841.1113845 +Timothy M. Jones 0001,Energy-efficient register caching with compiler assistance.,2009,6,TACO,4,db/journals/taco/taco6.html#JonesOAGE09a,http://doi.acm.org/10.1145/1596510.1596511 +Jun Yan 0008,Exploiting virtual registers to reduce pressure on real registers.,2008,4,TACO,4,db/journals/taco/taco4.html#YanZ08,http://doi.acm.org/10.1145/1328195.1328198 +Theo Kluter,Virtual Ways: Low-Cost Coherence for Instruction Set Extensions with Architecturally Visible Storage.,2014,11,TACO,2,db/journals/taco/taco11.html#KluterBBCI14,http://doi.acm.org/10.1145/2576877 +Michael R. Jantz,Exploring single and multilevel JIT compilation policy for modern machines.,2013,10,TACO,4,db/journals/taco/taco10.html#JantzK13,http://doi.acm.org/10.1145/2541228.2541229 +Yunhe Shi,Virtual machine showdown: Stack versus registers.,2008,4,TACO,4,db/journals/taco/taco4.html#ShiCEG08,http://doi.acm.org/10.1145/1328195.1328197 +Ali Galip Bayrak,An architecture-independent instruction shuffler to protect against side-channel attacks.,2012,8,TACO,4,db/journals/taco/taco8.html#BayrakVIB12,http://doi.acm.org/10.1145/2086696.2086699 +Rong Chen 0001,Tiled-MapReduce: Efficient and Flexible MapReduce Processing on Multicore with Tiling.,2013,10,TACO,1,db/journals/taco/taco10.html#ChenC13,http://doi.acm.org/10.1145/2445572.2445575 +Andrei Terechko,Inter-cluster communication in VLIW architectures.,2007,4,TACO,2,db/journals/taco/taco4.html#TerechkoC07,http://doi.acm.org/10.1145/1250727.1250731 +Allan Hartstein,The optimum pipeline depth considering both power and performance.,2004,1,TACO,4,db/journals/taco/taco1.html#HartsteinP04,http://doi.acm.org/10.1145/1044823.1044824 +Hongbo Rong,Single-dimension software pipelining for multidimensional loops.,2007,4,TACO,1,db/journals/taco/taco4.html#RongTGDG07,http://doi.acm.org/10.1145/1216544.1216550 +Jorge Albericio,ABS: A low-cost adaptive controller for prefetching in a banked shared last-level cache.,2012,8,TACO,4,db/journals/taco/taco8.html#AlbericioTIVL12,http://doi.acm.org/10.1145/2086696.2086698 +Amir Kavyan Ziabari,UMH: A Hardware-Based Unified Memory Hierarchy for Systems with Multiple Discrete GPUs.,2016,13,TACO,4,db/journals/taco/taco13.html#ZiabariSMSAUKJK16,http://doi.acm.org/10.1145/2996190 +Tao Zhang,Buddy SM: Sharing Pipeline Front-End for Improved Energy Efficiency in GPGPUs.,2015,12,TACO,2,db/journals/taco/taco12.html#ZhangJJSWL15,http://doi.acm.org/10.1145/2744202 +Huimin Cui,Layout-oblivious compiler optimization for matrix computations.,2013,9,TACO,4,db/journals/taco/taco9.html#CuiYXF13,http://doi.acm.org/10.1145/2400682.2400694 +Esther Salamí,Dynamic memory interval test vs. interprocedural pointer analysis in multimedia applications.,2005,2,TACO,2,db/journals/taco/taco2.html#SalamiV05,http://doi.acm.org/10.1145/1071604.1071608 +Muhammad Waqar Azhar,SLOOP: QoS-Supervised Loop Execution to Reduce Energy on Heterogeneous Architectures.,2017,14,TACO,4,db/journals/taco/taco14.html#AzharSP17,http://doi.acm.org/10.1145/3148053 +Gabriel Rodríguez 0001,Volatile STT-RAM Scratchpad Design and Data Allocation for Low Energy.,2014,11,TACO,4,db/journals/taco/taco11.html#RodriguezTK14,http://doi.acm.org/10.1145/2669556 +Stefan Ganser,Iterative Schedule Optimization for Parallelization in the Polyhedron Model.,2017,14,TACO,3,db/journals/taco/taco14.html#GanserGSAL17,http://doi.acm.org/10.1145/3109482 +Lei Liu,BPM/BPM+: Software-based dynamic memory partitioning mechanisms for mitigating DRAM bank-/channel-level interferences in multicore systems.,2014,11,TACO,1,db/journals/taco/taco11.html#LiuCLBCW14,http://doi.acm.org/10.1145/2579672 +Bor-Yeh Shen,A Retargetable Static Binary Translator for the ARM Architecture.,2014,11,TACO,2,db/journals/taco/taco11.html#ShenHY14,http://doi.acm.org/10.1145/2629335 +Kypros Constantinides,Architecting a reliable CMP switch architecture.,2007,4,TACO,1,db/journals/taco/taco4.html#ConstantinidesPBBMAZO07,http://doi.acm.org/10.1145/1216544.1216545 +Jeroen V. Cleemput,Compiler mitigations for time attacks on modern x86 processors.,2012,8,TACO,4,db/journals/taco/taco8.html#CleemputCS12,http://doi.acm.org/10.1145/2086696.2086702 +Jue Wang,Building and Optimizing MRAM-Based Commodity Memories.,2014,11,TACO,4,db/journals/taco/taco11.html#WangD014a,http://doi.acm.org/10.1145/2667105 +Joseph J. Sharkey,Instruction packing: Toward fast and energy-efficient instruction scheduling.,2006,3,TACO,2,db/journals/taco/taco3.html#SharkeyPGE06,http://doi.acm.org/10.1145/1138035.1138037 +Benoît Pradelle,Polyhedral parallelization of binary code.,2012,8,TACO,4,db/journals/taco/taco8.html#PradelleKC12,http://doi.acm.org/10.1145/2086696.2086718 +Nicolas Weber,MATOG: Array Layout Auto-Tuning for CUDA.,2017,14,TACO,3,db/journals/taco/taco14.html#WeberG17,http://doi.acm.org/10.1145/3106341 +Miao Zhou,Symmetry-Agnostic Coordinated Management of the Memory Hierarchy in Multicore Systems.,2016,12,TACO,4,db/journals/taco/taco12.html#ZhouDCMM16,http://doi.acm.org/10.1145/2847254 +Christophe Dubach,Dynamic microarchitectural adaptation using machine learning.,2013,10,TACO,4,db/journals/taco/taco10.html#DubachJB13,http://doi.acm.org/10.1145/2541228.2541238 +Michele Tartara,Continuous learning of compiler heuristics.,2013,9,TACO,4,db/journals/taco/taco9.html#TartaraC13,http://doi.acm.org/10.1145/2400682.2400705 +Min Feng 0001,PLDS: Partitioning linked data structures for parallelism.,2012,8,TACO,4,db/journals/taco/taco8.html#FengLG12,http://doi.acm.org/10.1145/2086696.2086717 +Stijn Eyerman,Probabilistic modeling for job symbiosis scheduling on SMT processors.,2012,9,TACO,2,db/journals/taco/taco9.html#EyermanE12,http://doi.acm.org/10.1145/2207222.2207223 +Antoniu Pop,OpenStream: Expressiveness and data-flow compilation of OpenMP streaming programs.,2013,9,TACO,4,db/journals/taco/taco9.html#PopC13,http://doi.acm.org/10.1145/2400682.2400712 +Saumay Dublish,Cooperative Caching for GPUs.,2016,13,TACO,4,db/journals/taco/taco13.html#DublishNT16,http://doi.acm.org/10.1145/3001589 +Qingchuan Shi,LDAC: Locality-Aware Data Access Control for Large-Scale Multicore Cache Hierarchies.,2016,13,TACO,4,db/journals/taco/taco13.html#ShiKHDK16,http://doi.acm.org/10.1145/2983632 +Mingzhe Zhang,SIMPO: A Scalable In-Memory Persistent Object Framework Using NVRAM for Reliable Big Data Computing.,2018,15,TACO,1,db/journals/taco/taco15.html#ZhangLYW18,http://doi.acm.org/10.1145/3167972 +Shu Xiao,VLIW instruction scheduling for minimal power variation.,2007,4,TACO,3,db/journals/taco/taco4.html#XiaoL07,http://doi.acm.org/10.1145/1275937.1275942 +Walid J. Ghandour,Leveraging Strength-Based Dynamic Information Flow Analysis to Enhance Data Value Prediction.,2012,9,TACO,1,db/journals/taco/taco9.html#GhandourAM12,http://doi.acm.org/10.1145/2133382.2133383 +Yu Bai,A low-power in-order/out-of-order issue queue.,2004,1,TACO,2,db/journals/taco/taco1.html#BaiB04,http://doi.acm.org/10.1145/1011528.1011530 +George A. Reis,Software-controlled fault tolerance.,2005,2,TACO,4,db/journals/taco/taco2.html#ReisCVRAM05,http://doi.acm.org/10.1145/1113841.1113843 +Chao Wang 0003,MP-Tomasulo: A Dependency-Aware Automatic Parallel Execution Engine for Sequential Programs.,2013,10,TACO,2,db/journals/taco/taco10.html#WangLZZN13,http://doi.acm.org/10.1145/2459316.2459320 +Erik Tomusk,Four Metrics to Evaluate Heterogeneous Multicores.,2016,12,TACO,4,db/journals/taco/taco12.html#TomuskDO16,http://doi.acm.org/10.1145/2829950 +Kris Venstermans,Java object header elimination for reduced memory consumption in 64-bit virtual machines.,2007,4,TACO,3,db/journals/taco/taco4.html#VenstermansEB07,http://doi.acm.org/10.1145/1275937.1275941 +Sven Verdoolaege,Polyhedral parallel code generation for CUDA.,2013,9,TACO,4,db/journals/taco/taco9.html#VerdoolaegeJCGTC13,http://doi.acm.org/10.1145/2400682.2400713 +Erik Vermij,An Architecture for Integrated Near-Data Processors.,2017,14,TACO,3,db/journals/taco/taco14.html#VermijFJHLB17,http://doi.acm.org/10.1145/3127069 +Zhen Lin,GPU Performance vs. Thread-Level Parallelism: Scalability Analysis and a Novel Way to Improve TLP.,2018,15,TACO,1,db/journals/taco/taco15.html#LinMZ18,http://doi.acm.org/10.1145/3177964 +Marvin Damschen,Extending the WCET Problem to Optimize for Runtime-Reconfigurable Processors.,2016,13,TACO,4,db/journals/taco/taco13.html#DamschenBH16,http://doi.acm.org/10.1145/3014059 +Wenjia Ruan,Boosting *tamp-based transactional memory by exploiting hardware cycle counters.,2013,10,TACO,4,db/journals/taco/taco10.html#RuanLS13,http://doi.acm.org/10.1145/2541228.2555297 +Zhenjiang Wang,On-the-fly structure splitting for heap objects.,2012,8,TACO,4,db/journals/taco/taco8.html#WangWYLX12,http://doi.acm.org/10.1145/2086696.2086705 +John W. Haskins Jr.,Accelerated warmup for sampled microarchitecture simulation.,2005,2,TACO,1,db/journals/taco/taco2.html#HaskinsS05,http://doi.acm.org/10.1145/1061267.1061272 +Eri Rubin,MAPS: Optimizing Massively Parallel Applications Using Device-Level Memory Abstraction.,2014,11,TACO,4,db/journals/taco/taco11.html#RubinLBB14,http://doi.acm.org/10.1145/2680544 +Mark Gottscho,DPCS: Dynamic Power/Capacity Scaling for SRAM Caches in the Nanoscale Era.,2015,12,TACO,3,db/journals/taco/taco12.html#GottschoBDNG15,http://doi.acm.org/10.1145/2792982 +Yeoul Na,JavaScript Parallelizing Compiler for Exploiting Parallelism from Data-Parallel HTML5 Applications.,2016,12,TACO,4,db/journals/taco/taco12.html#NaKH16,http://doi.acm.org/10.1145/2846098 +Matthew Benjamin Olson,Cross-Layer Memory Management to Improve DRAM Energy Efficiency.,2018,15,TACO,2,db/journals/taco/taco15.html#OlsonTRJDK18,http://doi.acm.org/10.1145/3196886 +Betul Buyukkurt,Impact of high-level transformations within the ROCCC framework.,2010,7,TACO,4,db/journals/taco/taco7.html#BuyukkurtCVN10,http://doi.acm.org/10.1145/1880043.1880044 +Dongwoo Lee,Dirty-Block Tracking in a Direct-Mapped DRAM Cache with Self-Balancing Dispatch.,2017,14,TACO,2,db/journals/taco/taco14.html#LeeLRC17,http://doi.acm.org/10.1145/3068460 +Karthik Sankaranarayanan,Profile-based adaptation for cache decay.,2004,1,TACO,3,db/journals/taco/taco1.html#SankaranarayananS04,http://doi.acm.org/10.1145/1022969.1022972 +Andrei Hagiescu,GPU code generation for ODE-based applications with phased shared-data access patterns.,2013,10,TACO,4,db/journals/taco/taco10.html#Hagiescu0RPCCTW13,http://doi.acm.org/10.1145/2541228.2555311 +Etem Deniz,MINIME-GPU: Multicore Benchmark Synthesizer for GPUs.,2016,12,TACO,4,db/journals/taco/taco12.html#Deniz016,http://doi.acm.org/10.1145/2818693 +Alessandro Cilardo,Improving Multibank Memory Access Parallelism with Lattice-Based Partitioning.,2014,11,TACO,4,db/journals/taco/taco11.html#CilardoG14,http://doi.acm.org/10.1145/2675359 +Buse Yilmaz,Autotuning Runtime Specialization for Sparse Matrix-Vector Multiplication.,2016,13,TACO,1,db/journals/taco/taco13.html#YilmazAGKK16,http://doi.acm.org/10.1145/2851500 +Aravind Sukumaran-Rajam,The Polyhedral Model of Nonlinear Loops.,2016,12,TACO,4,db/journals/taco/taco12.html#Sukumaran-Rajam16,http://doi.acm.org/10.1145/2838734 +Philo Juang,Implementing branch-predictor decay using quasi-static memory cells.,2004,1,TACO,2,db/journals/taco/taco1.html#JuangSMHCDK04,http://doi.acm.org/10.1145/1011528.1011531 +Xiangyu Dong,A circuit-architecture co-optimization framework for exploring nonvolatile memory hierarchies.,2013,10,TACO,4,db/journals/taco/taco10.html#DongJX13,http://doi.acm.org/10.1145/2541228.2541230 +Ryan N. Rakvic,Thread-management techniques to maximize efficiency in multicore and simultaneous multithreaded microprocessors.,2010,7,TACO,2,db/journals/taco/taco7.html#RakvicCGMCG10,http://doi.acm.org/10.1145/1839667.1839671 +Michele Co,Evaluating trace cache energy efficiency.,2006,3,TACO,4,db/journals/taco/taco3.html#CoWS06,http://doi.acm.org/10.1145/1187976.1187980 +Jinho Suh,Dynamic MIPS Rate Stabilization for Complex Processors.,2015,12,TACO,1,db/journals/taco/taco12.html#SuhHD15,http://doi.acm.org/10.1145/2714575 +Weifeng Xu,Tetris-XL: A performance-driven spill reduction technique for embedded VLIW processors.,2009,6,TACO,3,db/journals/taco/taco6.html#XuT09,http://doi.acm.org/10.1145/1582710.1582713 +Li Tan,Scalable Energy Efficiency with Resilience for High Performance Computing Systems: A Quantitative Methodology.,2016,12,TACO,4,db/journals/taco/taco12.html#TanCS16,http://doi.acm.org/10.1145/2822893 +Kishore Kumar Pusukuri,ADAPT: A framework for coscheduling multithreaded programs.,2013,9,TACO,4,db/journals/taco/taco9.html#PusukuriGB13,http://doi.acm.org/10.1145/2400682.2400704 +Yangchun Luo,Dynamically dispatching speculative threads to improve sequential execution.,2012,9,TACO,3,db/journals/taco/taco9.html#LuoZ12,http://doi.acm.org/10.1145/2355585.2355586 +Jaime Arteaga,Generating Fine-Grain Multithreaded Applications Using a Multigrain Approach.,2017,14,TACO,4,db/journals/taco/taco14.html#ArteagaZG17,http://doi.acm.org/10.1145/3155288 +Junghee Lee,TornadoNoC: A lightweight and scalable on-chip network architecture for the many-core era.,2013,10,TACO,4,db/journals/taco/taco10.html#LeeNLK13,http://doi.acm.org/10.1145/2541228.2555312 +Kornilios Kourtis,Exploiting compression opportunities to improve SpMxV performance on shared memory systems.,2010,7,TACO,3,db/journals/taco/taco7.html#KourtisGK10,http://doi.acm.org/10.1145/1880037.1880041 +Lei Jiang 0001,Hardware-Assisted Cooperative Integration of Wear-Leveling and Salvaging for Phase Change Memory.,2013,10,TACO,2,db/journals/taco/taco10.html#JiangDZZCY13,http://doi.acm.org/10.1145/2459316.2459318 +Jimmy Cleary,Fast asymmetric thread synchronization.,2013,9,TACO,4,db/journals/taco/taco9.html#ClearyCPG13,http://doi.acm.org/10.1145/2400682.2400686 +Andreas Diavastos,SWITCHES: A Lightweight Runtime for Dataflow Execution of Tasks on Many-Cores.,2017,14,TACO,3,db/journals/taco/taco14.html#DiavastosT17,http://doi.acm.org/10.1145/3127068 +Rajshekar Kalayappan,FluidCheck: A Redundant Threading-Based Approach for Reliable Execution in Manycore Processors.,2016,12,TACO,4,db/journals/taco/taco12.html#KalayappanS16,http://doi.acm.org/10.1145/2842620 +Dorit Nuzman,JIT technology with C/C++: Feedback-directed dynamic recompilation for statically compiled languages.,2013,10,TACO,4,db/journals/taco/taco10.html#NuzmanEDZC13,http://doi.acm.org/10.1145/2541228.2555315 +Riyadh Baghdadi,Improved loop tiling based on the removal of spurious false dependences.,2013,9,TACO,4,db/journals/taco/taco9.html#BaghdadiCVT13,http://doi.acm.org/10.1145/2400682.2400711 +Chien-Chi Chen,An efficient multicharacter transition string-matching engine based on the aho-corasick algorithm.,2013,10,TACO,4,db/journals/taco/taco10.html#ChenW13,http://doi.acm.org/10.1145/2541228.2541232 +Amit Golander,Checkpoint allocation and release.,2009,6,TACO,3,db/journals/taco/taco6.html#GolanderW09,http://doi.acm.org/10.1145/1582710.1582712 +Samuel Antao,The CRNS framework and its application to programmable and reconfigurable cryptography.,2013,9,TACO,4,db/journals/taco/taco9.html#AntaoS13,http://doi.acm.org/10.1145/2400682.2400692 +Rathijit Sen,Pareto Governors for Energy-Optimal Computing.,2017,14,TACO,1,db/journals/taco/taco14.html#SenW17,http://doi.acm.org/10.1145/3046682 +Jinseong Jeon,Abstracting access patterns of dynamic memory using regular expressions.,2009,5,TACO,4,db/journals/taco/taco5.html#JeonSH09,http://doi.acm.org/10.1145/1498690.1498693 +Beayna Grigorian,Accelerating Divergent Applications on SIMD Architectures Using Neural Networks.,2015,12,TACO,1,db/journals/taco/taco12.html#GrigorianR15,http://doi.acm.org/10.1145/2717311 +Tom Spink,Hardware-Accelerated Cross-Architecture Full-System Virtualization.,2016,13,TACO,4,db/journals/taco/taco13.html#SpinkWF16,http://doi.acm.org/10.1145/2996798 +Rakesh Komuravelli,Revisiting the Complexity of Hardware Cache Coherence and Some Implications.,2014,11,TACO,4,db/journals/taco/taco11.html#KomuravelliAC14,http://doi.acm.org/10.1145/2663345 +Jin Lin,A compiler framework for speculative optimizations.,2004,1,TACO,3,db/journals/taco/taco1.html#LinCHYJNC04,http://doi.acm.org/10.1145/1022969.1022970 +Yan Cui,Lock-contention-aware scheduler: A scalable and energy-efficient method for addressing scalability collapse on multicore systems.,2013,9,TACO,4,db/journals/taco/taco9.html#CuiWCS13,http://doi.acm.org/10.1145/2400682.2400703 +,TACO Reviewers 2012.,2013,10,TACO,3,db/journals/taco/taco10.html#X13,http://doi.acm.org/10.1145/2509420.2509421 +Christophe Alias,Optimizing Affine Control With Semantic Factorizations.,2017,14,TACO,4,db/journals/taco/taco14.html#AliasP17,http://doi.acm.org/10.1145/3162017 +Nathanaël Prémillieu,SYRANT: SYmmetric resource allocation on not-taken and taken paths.,2012,8,TACO,4,db/journals/taco/taco8.html#PremillieuS12,http://doi.acm.org/10.1145/2086696.2086722 +Ahsen Ejaz,DDRNoC: Dual Data-Rate Network-on-Chip.,2018,15,TACO,2,db/journals/taco/taco15.html#EjazPS18,http://doi.acm.org/10.1145/3200201 +Morteza Mohajjel Kafshdooz,A Compile-Time Optimization Method for WCET Reduction in Real-Time Embedded Systems through Block Formation.,2016,12,TACO,4,db/journals/taco/taco12.html#KafshdoozTAE16,http://doi.acm.org/10.1145/2845083 +Xiaohang Wang,A power-aware mapping approach to map IP cores onto NoCs under bandwidth and latency constraints.,2010,7,TACO,1,db/journals/taco/taco7.html#WangYJL10,http://doi.acm.org/10.1145/1736065.1736066 +Anurag Negi,SCIN-cache: Fast speculative versioning in multithreaded cores.,2013,9,TACO,4,db/journals/taco/taco9.html#NegiG13,http://doi.acm.org/10.1145/2400682.2400717 +Xiaodong Li,Cross-component energy management: Joint adaptation of processor and memory.,2007,4,TACO,3,db/journals/taco/taco4.html#LiGAZ07,http://doi.acm.org/10.1145/1275937.1275938 +Javier Lira,The migration prefetcher: Anticipating data promotion in dynamic NUCA caches.,2012,8,TACO,4,db/journals/taco/taco8.html#LiraJMG12,http://doi.acm.org/10.1145/2086696.2086724 +Prashant J. Nair,Refresh pausing in DRAM memory systems.,2014,11,TACO,1,db/journals/taco/taco11.html#NairCQ14,http://doi.acm.org/10.1145/2579669 +Cristobal Camarero,Topological Characterization of Hamming and Dragonfly Networks and Its Implications on Routing.,2014,11,TACO,4,db/journals/taco/taco11.html#Camarero0B14,http://doi.acm.org/10.1145/2677038 +Jacob Leverich,Comparative evaluation of memory models for chip multiprocessors.,2008,5,TACO,3,db/journals/taco/taco5.html#LeverichASFHK08,http://doi.acm.org/10.1145/1455650.1455651 +Hsiang-Yun Cheng,EECache: A Comprehensive Study on the Architectural Design for Energy-Efficient Last-Level Caches in Chip Multiprocessors.,2015,12,TACO,2,db/journals/taco/taco12.html#ChengPSSIKS015,http://doi.acm.org/10.1145/2756552 +Donghyuk Lee,Simultaneous Multi-Layer Access: Improving 3D-Stacked Memory Bandwidth at Low Cost.,2016,12,TACO,4,db/journals/taco/taco12.html#LeeGPKM16,http://doi.acm.org/10.1145/2832911 +Kenzo Van Craeynest,Understanding fundamental design choices in single-ISA heterogeneous multicore architectures.,2013,9,TACO,4,db/journals/taco/taco9.html#CraeynestE13,http://doi.acm.org/10.1145/2400682.2400691 +Hyukwoo Park,Concurrent JavaScript Parsing for Faster Loading of Web Apps.,2016,13,TACO,4,db/journals/taco/taco13.html#ParkCM16,http://doi.acm.org/10.1145/3004281 +Bita Mazloom,Dataflow Tomography: Information Flow Tracking For Understanding and Visualizing Full Systems.,2012,9,TACO,1,db/journals/taco/taco9.html#MazloomMTAS12,http://doi.acm.org/10.1145/2133382.2133385 +Giorgis Georgakoudis,SCALO: Scalability-Aware Parallelism Orchestration for Multi-Threaded Workloads.,2017,14,TACO,4,db/journals/taco/taco14.html#GeorgakoudisVTS17,http://doi.acm.org/10.1145/3158643 +Hongyeol Lim,Triple Engine Processor (TEP): A Heterogeneous Near-Memory Processor for Diverse Kernel Operations.,2017,14,TACO,4,db/journals/taco/taco14.html#LimP17,http://doi.acm.org/10.1145/3155920 +Wenjia Ruan,Transactional Read-Modify-Write Without Aborts.,2014,11,TACO,4,db/journals/taco/taco11.html#RuanLS14,http://doi.acm.org/10.1145/2688904 +Rachid Seghir,Integer affine transformations of parametric ™4*-polytopes and applications to loop nest optimization.,2012,9,TACO,2,db/journals/taco/taco9.html#SeghirLM12,http://doi.acm.org/10.1145/2207222.2207224 +Erik Tomusk,Selecting Heterogeneous Cores for Diversity.,2016,13,TACO,4,db/journals/taco/taco13.html#TomuskDO16a,http://doi.acm.org/10.1145/3014165 +Libo Huang,Improving the Efficiency of GPGPU Work-Queue Through Data Awareness.,2017,14,TACO,4,db/journals/taco/taco14.html#HuangLSW17,http://doi.acm.org/10.1145/3151035 +Daniel A. Orozco,Toward high-throughput algorithms on many-core architectures.,2012,8,TACO,4,db/journals/taco/taco8.html#OrozcoGKLG12,http://doi.acm.org/10.1145/2086696.2086728 +Oleksandr Zinenko,Visual Program Manipulation in the Polyhedral Model.,2018,15,TACO,1,db/journals/taco/taco15.html#ZinenkoHB18,http://doi.acm.org/10.1145/3177961 +Stijn Eyerman,Memory-level parallelism aware fetch policies for simultaneous multithreading processors.,2009,6,TACO,1,db/journals/taco/taco6.html#EyermanE09,http://doi.acm.org/10.1145/1509864.1509867 +Xuejun Yang,Comparability Graph Coloring for Optimizing Utilization of Software-Managed Stream Register Files for Stream Processors.,2012,9,TACO,1,db/journals/taco/taco9.html#YangWXW12,http://doi.acm.org/10.1145/2133382.2133387 +Angeliki Kritikakou,A scalable and near-optimal representation of access schemes for memory management.,2014,11,TACO,1,db/journals/taco/taco11.html#KritikakouCKG14,http://doi.acm.org/10.1145/2579677 +Zhigang Wang,Dynamic Memory Balancing for Virtualization.,2016,13,TACO,1,db/journals/taco/taco13.html#WangWHLW16,http://doi.acm.org/10.1145/2851501 +Suresh Purini,Finding good optimization sequences covering program space.,2013,9,TACO,4,db/journals/taco/taco9.html#PuriniJ13,http://doi.acm.org/10.1145/2400682.2400715 +Kyriakos Georgiou,Energy Transparency for Deeply Embedded Programs.,2017,14,TACO,1,db/journals/taco/taco14.html#GeorgiouKCE17,http://doi.acm.org/10.1145/3046679 +Yu Chen,Code reordering on limited branch offset.,2007,4,TACO,2,db/journals/taco/taco4.html#ChenZ07,http://doi.acm.org/10.1145/1250727.1250730 +Christopher Zimmer,NoCMsg: A Scalable Message-Passing Abstraction for Network-on-Chips.,2015,12,TACO,1,db/journals/taco/taco12.html#ZimmerM15,http://doi.acm.org/10.1145/2701426 +Amir Morad,Resistive GP-SIMD Processing-In-Memory.,2016,12,TACO,4,db/journals/taco/taco12.html#MoradYKG16,http://doi.acm.org/10.1145/2845084 +Sanghoon Lee 0006,Automatic parallelization of fine-grained metafunctions on a chip multiprocessor.,2013,10,TACO,4,db/journals/taco/taco10.html#0006T13,http://doi.acm.org/10.1145/2541228.2541237 +Mickaël Dardaillon,A New Compilation Flow for Software-Defined Radio Applications on Heterogeneous MPSoCs.,2016,13,TACO,2,db/journals/taco/taco13.html#DardaillonMRMC16,http://doi.acm.org/10.1145/2910583 +Jawad Haj-Yihia,Fine-Grain Power Breakdown of Modern Out-of-Order Cores and Its Implications on Skylake-Based Systems.,2016,13,TACO,4,db/journals/taco/taco13.html#Haj-YihiaYBM16,http://doi.acm.org/10.1145/3018112 +Jianwei Liao,Dynamic Process Migration Based on Block Access Patterns Occurring in Storage Servers.,2016,13,TACO,2,db/journals/taco/taco13.html#LiaoTX16,http://doi.acm.org/10.1145/2899002 +Rupesh Nasre,Time- and space-efficient flow-sensitive points-to analysis.,2013,10,TACO,4,db/journals/taco/taco10.html#Nasre13,http://doi.acm.org/10.1145/2541228.2555296 +Jue Wang,Endurance-aware cache line management for non-volatile caches.,2014,11,TACO,1,db/journals/taco/taco11.html#WangDXJ14,http://doi.acm.org/10.1145/2579671 +Neeraj Goel,Shared-port register file architecture for low-energy VLIW processors.,2014,11,TACO,1,db/journals/taco/taco11.html#GoelKP14,http://doi.acm.org/10.1145/2533397 +Diego Andrade,Precise automatable analytical modeling of the cache behavior of codes with indirections.,2007,4,TACO,3,db/journals/taco/taco4.html#AndradeFD07,http://doi.acm.org/10.1145/1275937.1275940 +Xiaolin Wang,Revisiting memory management on virtualized environments.,2013,10,TACO,4,db/journals/taco/taco10.html#WangWWL13,http://doi.acm.org/10.1145/2541228.2555304 +Yuan-Shin Hwang,DisIRer: Converting a retargetable compiler into a multiplatform binary translator.,2010,7,TACO,4,db/journals/taco/taco7.html#HwangLC10,http://doi.acm.org/10.1145/1880043.1880045 +Jorge Albericio,Exploiting reuse locality on inclusive shared last-level caches.,2013,9,TACO,4,db/journals/taco/taco9.html#AlbericioIVL13,http://doi.acm.org/10.1145/2400682.2400697 +Kanakagiri Raghavendra,MBZip: Multiblock Data Compression.,2017,14,TACO,4,db/journals/taco/taco14.html#RaghavendraPM17,http://doi.acm.org/10.1145/3151033 +Bobin Deng,Extending Moore's Law via Computationally Error-Tolerant Computing.,2018,15,TACO,1,db/journals/taco/taco15.html#DengSHCDCF18,http://doi.acm.org/10.1145/3177837 +Stijn Eyerman,Fine-grained DVFS using on-chip regulators.,2011,8,TACO,1,db/journals/taco/taco8.html#EyermanE11,http://doi.acm.org/10.1145/1952998.1952999 +Kevin Skadron,Temperature-aware microarchitecture: Modeling and implementation.,2004,1,TACO,1,db/journals/taco/taco1.html#SkadronSSHVT04,http://doi.acm.org/10.1145/980152.980157 +Chris Bentley,Implicit array bounds checking on 64-bit architectures.,2006,3,TACO,4,db/journals/taco/taco3.html#BentleyWLR06,http://doi.acm.org/10.1145/1187976.1187982 +Michael J. Lyons,The accelerator store: A shared memory framework for accelerator-based systems.,2012,8,TACO,4,db/journals/taco/taco8.html#LyonsHWB12,http://doi.acm.org/10.1145/2086696.2086727 +Zhichao Yan,An integrated pseudo-associativity and relaxed-order approach to hardware transactional memory.,2013,9,TACO,4,db/journals/taco/taco9.html#YanJTF13,http://doi.acm.org/10.1145/2400682.2400701 +Haitham Akkary,An analysis of a resource efficient checkpoint architecture.,2004,1,TACO,4,db/journals/taco/taco1.html#AkkaryRS04,http://doi.acm.org/10.1145/1044823.1044826 +Gleison Souza Diniz Mendonca,DawnCC: Automatic Annotation for Data Parallelism and Offloading.,2017,14,TACO,2,db/journals/taco/taco14.html#MendoncaGAPAP17,http://doi.acm.org/10.1145/3084540 +Hyunjin Lee,DEFCAM: A design and evaluation framework for defect-tolerant cache memories.,2011,8,TACO,3,db/journals/taco/taco8.html#LeeCC11,http://doi.acm.org/10.1145/2019608.2019616 +Erven Rohou,Vectorization technology to improve interpreter performance.,2013,9,TACO,4,db/journals/taco/taco9.html#RohouWY13,http://doi.acm.org/10.1145/2400682.2400685 +Fernando A. Endo,On the Interactions Between Value Prediction and Compiler Optimizations in the Context of EOLE.,2017,14,TACO,2,db/journals/taco/taco14.html#EndoPS17,http://doi.acm.org/10.1145/3090634 +Quan Chen 0002,Locality-Aware Work Stealing Based on Online Profiling and Auto-Tuning for Multisocket Multicore Architectures.,2015,12,TACO,2,db/journals/taco/taco12.html#ChenG15,http://doi.acm.org/10.1145/2766450 +Ghassan Shobaki,Preallocation instruction scheduling with register pressure minimization using a combinatorial optimization approach.,2013,10,TACO,3,db/journals/taco/taco10.html#ShobakiSR13,http://doi.acm.org/10.1145/2512432 +Per Stenström,Introduction to the special issue on high-performance and embedded architectures and compilers.,2012,8,TACO,4,db/journals/taco/taco8.html#StenstromB12,http://doi.acm.org/10.1145/2086696.2086697 +Wilson W. L. Fung,Dynamic warp formation: Efficient MIMD control flow on SIMD graphics hardware.,2009,6,TACO,2,db/journals/taco/taco6.html#FungSYA09,http://doi.acm.org/10.1145/1543753.1543756 +Dongrui She,An energy-efficient method of supporting flexible special instructions in an embedded processor with compact ISA.,2013,10,TACO,3,db/journals/taco/taco10.html#SheHC13,http://doi.acm.org/10.1145/2509420.2509426 +Xin Tong,Optimizing Memory Translation Emulation in Full System Emulators.,2014,11,TACO,4,db/journals/taco/taco11.html#TongKKM14,http://doi.acm.org/10.1145/2686034 +Jawad Haj-Yihia,Compiler-Directed Power Management for Superscalars.,2014,11,TACO,4,db/journals/taco/taco11.html#Haj-YihiaBRYG14,http://doi.acm.org/10.1145/2685393 +Alejandro Valero,Combining recency of information with selective random and a victim cache in last-level caches.,2012,9,TACO,3,db/journals/taco/taco9.html#ValeroSPLD12,http://doi.acm.org/10.1145/2355585.2355589 +Ram Rangan,Performance scalability of decoupled software pipelining.,2008,5,TACO,2,db/journals/taco/taco5.html#RanganVOA08,http://doi.acm.org/10.1145/1400112.1400113 +Dongliang Xiong,Memory Access Scheduling Based on Dynamic Multilevel Priority in Shared DRAM Systems.,2016,13,TACO,4,db/journals/taco/taco13.html#XiongHJY16,http://doi.acm.org/10.1145/3007647 +Luiz G. A. Martins,Clustering-Based Selection for the Exploration of Compiler Optimization Sequences.,2016,13,TACO,1,db/journals/taco/taco13.html#MartinsNCDM16,http://doi.acm.org/10.1145/2883614 +Benjamin C. Lee,Applied inference: Case studies in microarchitectural design.,2010,7,TACO,2,db/journals/taco/taco7.html#LeeB10,http://doi.acm.org/10.1145/1839667.1839670 +Mehmet E. Belviranli,A dynamic self-scheduling scheme for heterogeneous multiprocessor architectures.,2013,9,TACO,4,db/journals/taco/taco9.html#BelviranliBG13,http://doi.acm.org/10.1145/2400682.2400716 +Xuejun Yang,Exploiting the reuse supplied by loop-dependent stream references for stream processors.,2010,7,TACO,2,db/journals/taco/taco7.html#YangZLXRLWF10,http://doi.acm.org/10.1145/1839667.1839673 +Zhengwei Qi,VGRIS: Virtualized GPU Resource Isolation and Scheduling in Cloud Gaming.,2014,11,TACO,2,db/journals/taco/taco11.html#QiYZYYG14,http://doi.acm.org/10.1145/2632216 +Vincenzo Catania,Reducing complexity of multiobjective design space exploration in VLIW-based embedded systems.,2008,5,TACO,2,db/journals/taco/taco5.html#CataniaPP08,http://doi.acm.org/10.1145/1400112.1400116 +Ilya Ganusov,Future execution: A prefetching mechanism that uses multiple cores to speed up single threads.,2006,3,TACO,4,db/journals/taco/taco3.html#GanusovB06,http://doi.acm.org/10.1145/1187976.1187979 +Do-Heon Lee,A New Memory-Disk Integrated System with HW Optimizer.,2015,12,TACO,2,db/journals/taco/taco12.html#LeeYKWK15,http://doi.acm.org/10.1145/2738053 +Apala Guha,Memory optimization of dynamic binary translators for embedded systems.,2012,9,TACO,3,db/journals/taco/taco9.html#GuhaHS12,http://doi.acm.org/10.1145/2355585.2355595 +George Matheou,Data-Driven Concurrency for High Performance Computing.,2017,14,TACO,4,db/journals/taco/taco14.html#MatheouE17,http://doi.acm.org/10.1145/3162014 +Angeliki Kritikakou,Near-Optimal Microprocessor and Accelerators Codesign with Latency and Throughput Constraints.,2013,10,TACO,2,db/journals/taco/taco10.html#KritikakouCAKG13,http://doi.acm.org/10.1145/2459316.2459317 +Dimitrios Mbakoyiannis,Energy-Performance Considerations for Data Offloading to FPGA-Based Accelerators Over PCIe.,2018,15,TACO,1,db/journals/taco/taco15.html#MbakoyiannisTK18,http://doi.acm.org/10.1145/3180263 +Jedidiah R. Crandall,Minos: Architectural support for protecting control data.,2006,3,TACO,4,db/journals/taco/taco3.html#CrandallWC06,http://doi.acm.org/10.1145/1187976.1187977 +Saurav Muralidharan,Designing a Tunable Nested Data-Parallel Programming System.,2016,13,TACO,4,db/journals/taco/taco13.html#MuralidharanGSH16,http://doi.acm.org/10.1145/3012011 +Bogdan Prisacari,Fast pattern-specific routing for fat tree networks.,2013,10,TACO,4,db/journals/taco/taco10.html#PrisacariRMH13,http://doi.acm.org/10.1145/2541228.2555293 +Malik Murtaza Khan,A script-based autotuning compiler system to generate high-performance CUDA code.,2013,9,TACO,4,db/journals/taco/taco9.html#KhanBRHCC13,http://doi.acm.org/10.1145/2400682.2400690 +Dongliang Xiong,Providing Predictable Performance via a Slowdown Estimation Model.,2017,14,TACO,3,db/journals/taco/taco14.html#XiongHJY17,http://doi.acm.org/10.1145/3124451 +Jesse Elwell,Rethinking Memory Permissions for Protection Against Cross-Layer Attacks.,2016,12,TACO,4,db/journals/taco/taco12.html#ElwellRAPC16,http://doi.acm.org/10.1145/2842621 +Venmugil Elango,On Using the Roofline Model with Lower Bounds on Data Movement.,2014,11,TACO,4,db/journals/taco/taco11.html#ElangoSRPRTS14,http://doi.acm.org/10.1145/2693656 +Andreas Lankes,Benefits of selective packet discard in networks-on-chip.,2012,9,TACO,2,db/journals/taco/taco9.html#LankesWWH12,http://doi.acm.org/10.1145/2207222.2207228 +Doris Chen,Profile-guided floating- to fixed-point conversion for hybrid FPGA-processor applications.,2013,9,TACO,4,db/journals/taco/taco9.html#ChenS13,http://doi.acm.org/10.1145/2400682.2400702 +Asadollah Shahbahrami,Versatility of extended subwords and the matrix register file.,2008,5,TACO,1,db/journals/taco/taco5.html#ShahbahramiJV08,http://doi.acm.org/10.1145/1369396.1369401 +Bin Ren,A Portable Optimization Engine for Accelerating Irregular Data-Traversal Applications on SIMD Architectures.,2014,11,TACO,2,db/journals/taco/taco11.html#RenMA14,http://doi.acm.org/10.1145/2632215 +Pierre Michaud,Some Mathematical Facts About Optimal Cache Replacement.,2016,13,TACO,4,db/journals/taco/taco13.html#Michaud16,http://doi.acm.org/10.1145/3017992 +Jung Ho Ahn,Improving System Energy Efficiency with Memory Rank Subsetting.,2012,9,TACO,1,db/journals/taco/taco9.html#AhnJKLS12,http://doi.acm.org/10.1145/2133382.2133386 +Trevor E. Carlson,An Evaluation of High-Level Mechanistic Core Models.,2014,11,TACO,3,db/journals/taco/taco11.html#CarlsonHEHE14,http://doi.acm.org/10.1145/2629677 +Konstantinos Koukos,Building Heterogeneous Unified Virtual Memories (UVMs) without the Overhead.,2016,13,TACO,1,db/journals/taco/taco13.html#KoukosRHK16,http://doi.acm.org/10.1145/2889488 +Zhenman Fang,Measuring Microarchitectural Details of Multi- and Many-Core Memory Systems through Microbenchmarking.,2014,11,TACO,4,db/journals/taco/taco11.html#FangMYZGBZ14,http://doi.acm.org/10.1145/2687356 +Vassos Soteriou,Software-directed power-aware interconnection networks.,2007,4,TACO,1,db/journals/taco/taco4.html#SoteriouEP07,http://doi.acm.org/10.1145/1216544.1216548 +Farrukh Hijaz,NUCA-L1: A Non-Uniform Access Latency Level-1 Cache Architecture for Multicores Operating at Near-Threshold Voltages.,2014,11,TACO,3,db/journals/taco/taco11.html#HijazK14,http://doi.acm.org/10.1145/2631918 +Konstantinos Parasyris,Significance-Aware Program Execution on Unreliable Hardware.,2017,14,TACO,2,db/journals/taco/taco14.html#ParasyrisVALB17,http://doi.acm.org/10.1145/3058980 +Derek Chi-Wai Pao,A memory-efficient pipelined implementation of the aho-corasick string-matching algorithm.,2010,7,TACO,2,db/journals/taco/taco7.html#PaoLL10,http://doi.acm.org/10.1145/1839667.1839672 +Shuangde Fang,Performance Portability Across Heterogeneous SoCs Using a Generalized Library-Based Approach.,2014,11,TACO,2,db/journals/taco/taco11.html#FangDFHCETLCW14,http://doi.acm.org/10.1145/2608253 +Long Zheng 0003,Efficient and Scalable Graph Parallel Processing With Symbolic Execution.,2018,15,TACO,1,db/journals/taco/taco15.html#ZhengLJ18,http://doi.acm.org/10.1145/3170434 +Thomas Kotzmann,Design of the Java HotSpot™* client compiler for Java 6.,2008,5,TACO,1,db/journals/taco/taco5.html#KotzmannWMRRC08,http://doi.acm.org/10.1145/1369396.1370017 +Ron Gabor,Service level agreement for multithreaded processors.,2009,6,TACO,2,db/journals/taco/taco6.html#GaborMW09,http://doi.acm.org/10.1145/1543753.1543755 +J. Rubén Titos Gil,Hardware transactional memory with software-defined conflicts.,2012,8,TACO,4,db/journals/taco/taco8.html#GilAGHCUHV12,http://doi.acm.org/10.1145/2086696.2086710 +Byeongcheol Lee,Adaptive Correction of Sampling Bias in Dynamic Call Graphs.,2016,12,TACO,4,db/journals/taco/taco12.html#Lee16,http://doi.acm.org/10.1145/2840806 +Shuangde Fang,Practical Iterative Optimization for the Data Center.,2015,12,TACO,2,db/journals/taco/taco12.html#FangXCETCW015,http://doi.acm.org/10.1145/2739048 +Hiroyuki Usui,DASH: Deadline-Aware High-Performance Memory Scheduler for Heterogeneous Systems with Hardware Accelerators.,2016,12,TACO,4,db/journals/taco/taco12.html#UsuiSCM16,http://doi.acm.org/10.1145/2847255 +Kyuseung Han,Power-Efficient Predication Techniques for Acceleration of Control Flow Execution on CGRA.,2013,10,TACO,2,db/journals/taco/taco10.html#HanAC13,http://doi.acm.org/10.1145/2459316.2459319 +Wei Wei,HAP: Hybrid-Memory-Aware Partition in Shared Last-Level Cache.,2017,14,TACO,3,db/journals/taco/taco14.html#WeiJXC17,http://doi.acm.org/10.1145/3106340 +Stefano Di Carlo,FLARES: An Aging Aware Algorithm to Autonomously Adapt the Error Correction Capability in NAND Flash Memories.,2014,11,TACO,3,db/journals/taco/taco11.html#CarloGIPBOZ14,http://doi.acm.org/10.1145/2631919 +Shoaib Akram,Boosting the Priority of Garbage: Scheduling Collection on Heterogeneous Multicore Processors.,2016,13,TACO,1,db/journals/taco/taco13.html#AkramSCHE16,http://doi.acm.org/10.1145/2875424 +Richard Neill,Fuse: Accurate Multiplexing of Hardware Performance Counters Across Executions.,2017,14,TACO,4,db/journals/taco/taco14.html#NeillDP17,http://doi.acm.org/10.1145/3148054 +Wonsub Kim,Fast modulo scheduler utilizing patternized routes for coarse-grained reconfigurable architectures.,2013,10,TACO,4,db/journals/taco/taco10.html#KimCP13,http://doi.acm.org/10.1145/2541228.2555314 +Nicolai Stawinoga,Predictable Thread Coarsening.,2018,15,TACO,2,db/journals/taco/taco15.html#StawinogaF18,http://doi.acm.org/10.1145/3194242 +Zoe C. H. Yu,Object co-location and memory reuse for Java programs.,2008,4,TACO,4,db/journals/taco/taco4.html#YuLW08,http://doi.acm.org/10.1145/1328195.1328199 +Somayeh Sardashti,Could Compression Be of General Use? Evaluating Memory Compression across Domains.,2017,14,TACO,4,db/journals/taco/taco14.html#SardashtiW17,http://doi.acm.org/10.1145/3138805 +Ahmad Zmily,Block-aware instruction set architecture.,2006,3,TACO,3,db/journals/taco/taco3.html#ZmilyK06,http://doi.acm.org/10.1145/1162690.1162694 +Chang-Ching Yeh,Maintaining performance on power gating of microprocessor functional units by using a predictive pre-wakeup strategy.,2011,8,TACO,3,db/journals/taco/taco8.html#YehCCY11,http://doi.acm.org/10.1145/2019608.2019615 +Michael R. Jantz,Impact of Intrinsic Profiling Limitations on Effectiveness of Adaptive Optimizations.,2016,13,TACO,4,db/journals/taco/taco13.html#JantzRK16,http://doi.acm.org/10.1145/3008661 +Yongbing Huang,HMTT: A hybrid hardware/software tracing system for bridging the DRAM access trace's semantic gap.,2014,11,TACO,1,db/journals/taco/taco11.html#HuangCCRBCS14,http://doi.acm.org/10.1145/2579668 +Benedict R. Gaster,HRF-Relaxed: Adapting HRF to the Complexities of Industrial Heterogeneous Memory Models.,2015,12,TACO,1,db/journals/taco/taco12.html#GasterHH15,http://doi.acm.org/10.1145/2701618 +Michael Boyer,Federation: Boosting per-thread performance of throughput-oriented manycore architectures.,2010,7,TACO,4,db/journals/taco/taco7.html#BoyerTS10,http://doi.acm.org/10.1145/1880043.1880046 +Motohiro Kawahito,Idiom recognition framework using topological embedding.,2013,10,TACO,3,db/journals/taco/taco10.html#KawahitoKMIN13,http://doi.acm.org/10.1145/2512431 +Carole-Jean Wu,Adaptive timekeeping replacement: Fine-grained capacity management for shared CMP caches.,2011,8,TACO,1,db/journals/taco/taco8.html#WuM11,http://doi.acm.org/10.1145/1952998.1953001 +Pradeep Ramachandran,Hardware Fault Recovery for I/O Intensive Applications.,2014,11,TACO,3,db/journals/taco/taco11.html#RamachandranHLA14,http://doi.acm.org/10.1145/2656342 +Samantika Subramaniam,Design and optimization of the store vectors memory dependence predictor.,2009,6,TACO,4,db/journals/taco/taco6.html#SubramaniamL09,http://doi.acm.org/10.1145/1596510.1596514 +Alejandro Rico,On the simulation of large-scale architectures using multiple application abstraction levels.,2012,8,TACO,4,db/journals/taco/taco8.html#RicoCVPVERV12,http://doi.acm.org/10.1145/2086696.2086715 +Michela Becchi,A-DFA: A Time- and Space-Efficient DFA Compression Algorithm for Fast Regular Expression Evaluation.,2013,10,TACO,1,db/journals/taco/taco10.html#BecchiC13,http://doi.acm.org/10.1145/2445572.2445576 +Brad Calder,Introduction.,2006,3,TACO,1,db/journals/taco/taco3.html#CalderT06,http://doi.acm.org/10.1145/1132462.1132463 +Mageda Sharafeddine,Disjoint out-of-order execution processor.,2012,9,TACO,3,db/journals/taco/taco9.html#SharafeddineJA12,http://doi.acm.org/10.1145/2355585.2355592 +Choonki Jang,Automatic code overlay generation and partially redundant code fetch elimination.,2012,9,TACO,2,db/journals/taco/taco9.html#JangLER12,http://doi.acm.org/10.1145/2207222.2207226 +Alex Aletà,Removing communications in clustered microarchitectures through instruction replication.,2004,1,TACO,2,db/journals/taco/taco1.html#AletaCGK04,http://doi.acm.org/10.1145/1011528.1011529 +Madan Das,Section-Based Program Analysis to Reduce Overhead of Detecting Unsynchronized Thread Communication.,2015,12,TACO,2,db/journals/taco/taco12.html#DasSR15,http://doi.acm.org/10.1145/2766451 +Lois Orosa,FlexSig: Implementing flexible hardware signatures.,2012,8,TACO,4,db/journals/taco/taco8.html#OrosaAB12,http://doi.acm.org/10.1145/2086696.2086709 +Kanit Therdsteerasukdi,Utilizing RF-I and intelligent scheduling for better throughput/watt in a mobile GPU memory system.,2012,8,TACO,4,db/journals/taco/taco8.html#TherdsteerasukdiBCCR12,http://doi.acm.org/10.1145/2086696.2086730 +Cedric Nugteren,Bones: An Automatic Skeleton-Based C-to-CUDA Compiler for GPUs.,2014,11,TACO,4,db/journals/taco/taco11.html#NugterenC14,http://doi.acm.org/10.1145/2665079 +Probir Roy,NUMA-Caffe: NUMA-Aware Deep Learning Neural Networks.,2018,15,TACO,2,db/journals/taco/taco15.html#RoySKVSL18,http://doi.acm.org/10.1145/3199605 +Daniel Lustig,TLB Improvements for Chip Multiprocessors: Inter-Core Cooperative Prefetchers and Shared Last-Level TLBs.,2013,10,TACO,1,db/journals/taco/taco10.html#LustigBM13,http://doi.acm.org/10.1145/2445572.2445574 +Anup Holey,Performance-Energy Considerations for Shared Cache Management in a Heterogeneous Multicore Processor.,2015,12,TACO,1,db/journals/taco/taco12.html#HoleyMYZ15,http://doi.acm.org/10.1145/2710019 +Kevin Streit,Generalized Task Parallelism.,2015,12,TACO,1,db/journals/taco/taco12.html#StreitDHZH15,http://doi.acm.org/10.1145/2723164 +Ahmad Samih,Evaluating placement policies for managing capacity sharing in CMP architectures with private caches.,2011,8,TACO,3,db/journals/taco/taco8.html#SamihSK11,http://doi.acm.org/10.1145/2019608.2019614 +Arjun Suresh,Intercepting Functions for Memoization: A Case Study Using Transcendental Functions.,2015,12,TACO,2,db/journals/taco/taco12.html#SureshSRS15,http://doi.acm.org/10.1145/2751559 +Brian P. Railing,Contech: Efficiently Generating Dynamic Task Graphs for Arbitrary Parallel Programs.,2015,12,TACO,2,db/journals/taco/taco12.html#RailingHC15,http://doi.acm.org/10.1145/2776893 +Alen Bardizbanyan,Designing a practical data filter cache to improve both energy efficiency and performance.,2013,10,TACO,4,db/journals/taco/taco10.html#BardizbanyanSWL13,http://doi.acm.org/10.1145/2541228.2555310 +Hochan Lee,Improving Energy Efficiency of Coarse-Grain Reconfigurable Arrays Through Modulo Schedule Compression/Decompression.,2018,15,TACO,1,db/journals/taco/taco15.html#LeeMSE18,http://doi.acm.org/10.1145/3162018 +Pablo Abad Fidalgo,LIGERO: A light but efficient router conceived for cache-coherent chip multiprocessors.,2013,9,TACO,4,db/journals/taco/taco9.html#AbadPG13,http://doi.acm.org/10.1145/2400682.2400696 +Peng Liu 0016,Thread-Aware Adaptive Prefetcher on Multicore Systems: Improving the Performance for Multithreaded Workloads.,2016,13,TACO,1,db/journals/taco/taco13.html#0016YH16,http://doi.acm.org/10.1145/2890505 +Jialin Dou,A compiler cost model for speculative parallelization.,2007,4,TACO,2,db/journals/taco/taco4.html#DouC07,http://doi.acm.org/10.1145/1250727.1250732 +Hamed Tabkhi,A Joint SW/HW Approach for Reducing Register File Vulnerability.,2015,12,TACO,2,db/journals/taco/taco12.html#TabkhiS15,http://doi.acm.org/10.1145/2733378 +Jishen Zhao,Buri: Scaling Big-Memory Computing with Hardware-Based Memory Expansion.,2015,12,TACO,3,db/journals/taco/taco12.html#ZhaoLCBRL0F15,http://doi.acm.org/10.1145/2808233 +Miao Zhou,Writeback-aware partitioning and replacement for last-level caches in phase change main memory systems.,2012,8,TACO,4,db/journals/taco/taco8.html#ZhouDCMM12,http://doi.acm.org/10.1145/2086696.2086732 +Wei Zhang 0002,Reducing instruction cache energy consumption using a compiler-based strategy.,2004,1,TACO,1,db/journals/taco/taco1.html#ZhangHDKVI04,http://doi.acm.org/10.1145/980152.980154 +Zahra Abbasi,TACOMA: Server and workload management in internet data centers considering cooling-computing power trade-off and energy proportionality.,2012,9,TACO,2,db/journals/taco/taco9.html#AbbasiVG12,http://doi.acm.org/10.1145/2207222.2207227 +Cecilia González-Alvarez,MInGLE: An Efficient Framework for Domain Acceleration Using Low-Power Specialized Functional Units.,2016,13,TACO,2,db/journals/taco/taco13.html#Gonzalez-Alvarez16,http://doi.acm.org/10.1145/2898356 +Paraskevas Yiapanis,Optimizing software runtime systems for speculative parallelization.,2013,9,TACO,4,db/journals/taco/taco9.html#YiapanisRBL13,http://doi.acm.org/10.1145/2400682.2400698 +Christina Peterson,A Transactional Correctness Tool for Abstract Data Types.,2017,14,TACO,4,db/journals/taco/taco14.html#PetersonD17,http://doi.acm.org/10.1145/3148964 +Naznin Fauzia,Beyond reuse distance analysis: Dynamic analysis for characterization of data locality potential.,2013,10,TACO,4,db/journals/taco/taco10.html#FauziaERRRRPS13,http://doi.acm.org/10.1145/2541228.2555309 +Nilay Vaish,Optimization Models for Three On-Chip Network Problems.,2016,13,TACO,3,db/journals/taco/taco13.html#VaishFW16,http://doi.acm.org/10.1145/2943781 +Rajkishore Barik,A decoupled non-SSA global register allocation using bipartite liveness graphs.,2013,10,TACO,4,db/journals/taco/taco10.html#BarikZS13,http://doi.acm.org/10.1145/2544101 +Thomas Schaub,The Impact of the SIMD Width on Control-Flow and Memory Divergence.,2014,11,TACO,4,db/journals/taco/taco11.html#SchaubMKH14,http://doi.acm.org/10.1145/2687355 +Jing Pu,Programming Heterogeneous Systems from an Image Processing DSL.,2017,14,TACO,3,db/journals/taco/taco14.html#PuBYSRRH17,http://doi.acm.org/10.1145/3107953 +Long Chen,E3CC: A memory error protection scheme with novel address mapping for subranked and low-power memories.,2013,10,TACO,4,db/journals/taco/taco10.html#ChenCZ13,http://doi.acm.org/10.1145/2541228.2541239 +Atieh Lotfi,Aging-Aware Compilation for GP-GPUs.,2015,12,TACO,2,db/journals/taco/taco12.html#LotfiRBG15,http://doi.acm.org/10.1145/2778984 +Fang Liu,Understanding the behavior and implications of context switch misses.,2010,7,TACO,4,db/journals/taco/taco7.html#LiuS10,http://doi.acm.org/10.1145/1880043.1880048 +Lucas Vespa,Deterministic finite automata characterization and optimization for scalable pattern matching.,2011,8,TACO,1,db/journals/taco/taco8.html#VespaW11,http://doi.acm.org/10.1145/1952998.1953002 +Marco Gerards,Optimal DPM and DVFS for frame-based real-time systems.,2013,9,TACO,4,db/journals/taco/taco9.html#GerardsK13,http://doi.acm.org/10.1145/2400682.2400700 +Zheng Li 0005,MaxPB: Accelerating PCM Write by Maximizing the Power Budget Utilization.,2016,13,TACO,4,db/journals/taco/taco13.html#LiWFHLT16,http://doi.acm.org/10.1145/3012007 +Selma Saidi,Optimizing explicit data transfers for data parallel applications on the cell architecture.,2012,8,TACO,4,db/journals/taco/taco8.html#SaidiTLM12,http://doi.acm.org/10.1145/2086696.2086716 +Yunji Chen,Deterministic Replay Using Global Clock.,2013,10,TACO,1,db/journals/taco/taco10.html#ChenCLWLH13,http://doi.acm.org/10.1145/2445572.2445573 +Unnikrishnan C.,Falcon: A Graph Manipulation Language for Heterogeneous Systems.,2016,12,TACO,4,db/journals/taco/taco12.html#CNS16,http://doi.acm.org/10.1145/2842618 +Sandeep D'Souza,Integrated Mapping and Synthesis Techniques for Network-on-Chip Topologies with Express Channels.,2016,12,TACO,4,db/journals/taco/taco12.html#DSouzaJC16,http://doi.acm.org/10.1145/2831233 +Daniele De Sensi,A Reconfiguration Algorithm for Power-Aware Parallel Applications.,2016,13,TACO,4,db/journals/taco/taco13.html#SensiTD16,http://doi.acm.org/10.1145/3004054 +Ron Gabor,Fairness enforcement in switch on event multithreading.,2007,4,TACO,3,db/journals/taco/taco4.html#GaborWM07,http://doi.acm.org/10.1145/1275937.1275939 +Viacheslav V. Fedorov,ARI: Adaptive LLC-memory traffic management.,2013,10,TACO,4,db/journals/taco/taco10.html#FedorovQRG13,http://doi.acm.org/10.1145/2543697 +Grigori Fursin,Collective optimization: A practical collaborative approach.,2010,7,TACO,4,db/journals/taco/taco7.html#FursinT10,http://doi.acm.org/10.1145/1880043.1880047 +Riccardo Cattaneo,On How to Accelerate Iterative Stencil Loops: A Scalable Streaming-Based Approach.,2016,12,TACO,4,db/journals/taco/taco12.html#CattaneoNSSS16,http://doi.acm.org/10.1145/2842615 +Nicolas Melot,Fast Crown Scheduling Heuristics for Energy-Efficient Mapping and Scaling of Moldable Streaming Tasks on Manycore Systems.,2014,11,TACO,4,db/journals/taco/taco11.html#MelotK0E14,http://doi.acm.org/10.1145/2687653 +Samantika Subramaniam,Using in-flight chains to build a scalable cache coherence protocol.,2013,10,TACO,4,db/journals/taco/taco10.html#SubramaniamSHJBFE13,http://doi.acm.org/10.1145/2541228.2541235 +Morteza Hoseinzadeh,SPCM: The Striped Phase Change Memory.,2016,12,TACO,4,db/journals/taco/taco12.html#HoseinzadehAS16,http://doi.acm.org/10.1145/2829951 +Maximilien Breughe,Selecting representative benchmark inputs for exploring microprocessor design spaces.,2013,10,TACO,4,db/journals/taco/taco10.html#BreugheE13,http://doi.acm.org/10.1145/2541228.2555294 +Rahul Shrivastava,Energy-Efficient Compilation of Irregular Task-Parallel Loops.,2017,14,TACO,4,db/journals/taco/taco14.html#ShrivastavaN17,http://doi.acm.org/10.1145/3136063 +Chi Ching Chi,Low-Power High-Efficiency Video Decoding using General-Purpose Processors.,2014,11,TACO,4,db/journals/taco/taco11.html#ChiMJ14,http://doi.acm.org/10.1145/2685551 +Sanyam Mehta,Tile size selection revisited.,2013,10,TACO,4,db/journals/taco/taco10.html#MehtaBY13,http://doi.acm.org/10.1145/2541228.2555292 +Toufik Baroudi,Optimization of Triangular and Banded Matrix Operations Using 2d-Packed Layouts.,2017,14,TACO,4,db/journals/taco/taco14.html#BaroudiSL17,http://doi.acm.org/10.1145/3162016 +Tiago M. Vale,Pot: Deterministic Transactional Execution.,2016,13,TACO,4,db/journals/taco/taco13.html#ValeSDL16,http://doi.acm.org/10.1145/3017993 +Antonia Zhai,Compiler and hardware support for reducing the synchronization of speculative threads.,2008,5,TACO,1,db/journals/taco/taco5.html#ZhaiSCM08,http://doi.acm.org/10.1145/1369396.1369399 +Almutaz Adileh,Maximizing Heterogeneous Processor Performance Under Power Constraints.,2016,13,TACO,3,db/journals/taco/taco13.html#AdilehEJE16,http://doi.acm.org/10.1145/2976739 +Mehrzad Samadi,Leveraging GPUs using cooperative loop speculation.,2014,11,TACO,1,db/journals/taco/taco11.html#SamadiHLM14,http://doi.acm.org/10.1145/2579617 +Jaume Abella,IATAC: a smart predictor to turn-off L2 cache lines.,2005,2,TACO,1,db/journals/taco/taco2.html#AbellaGVO05,http://doi.acm.org/10.1145/1061267.1061271 +Venkata Kalyan Tawa,EFGR: An Enhanced Fine Granularity Refresh Feature for High-Performance DDR4 DRAM Devices.,2014,11,TACO,3,db/journals/taco/taco11.html#TawaKM14,http://doi.acm.org/10.1145/2656340 +Lin Tan,Bit-split string-matching engines for intrusion detection and prevention.,2006,3,TACO,1,db/journals/taco/taco3.html#TanBS06,http://doi.acm.org/10.1145/1132462.1132464 +Arun Raghavan,Token tenure and PATCH: A predictive/adaptive token-counting hybrid.,2010,7,TACO,2,db/journals/taco/taco7.html#RaghavanBM10,http://doi.acm.org/10.1145/1839667.1839668 +Zhi Guo,Efficient hardware code generation for FPGAs.,2008,5,TACO,1,db/journals/taco/taco5.html#GuoNB08,http://doi.acm.org/10.1145/1369396.1369402 +Dong-song Zhang,TL-plane-based multi-core energy-efficient real-time scheduling algorithm for sporadic tasks.,2012,8,TACO,4,db/journals/taco/taco8.html#ZhangGCWWCJ12,http://doi.acm.org/10.1145/2086696.2086726 +Zheng Wang 0001,Automatic and Portable Mapping of Data Parallel Programs to OpenCL for GPU-Based Heterogeneous Systems.,2014,11,TACO,4,db/journals/taco/taco11.html#WangGO14,http://doi.acm.org/10.1145/2677036 +Shivam Swami,ECS: Error-Correcting Strings for Lifetime Improvements in Nonvolatile Memories.,2017,14,TACO,4,db/journals/taco/taco14.html#SwamiPM17,http://doi.acm.org/10.1145/3151083 +Adrián Cristal,Toward kilo-instruction processors.,2004,1,TACO,4,db/journals/taco/taco1.html#CristalSVM04,http://doi.acm.org/10.1145/1044823.1044825 +Eduardo H. M. Cruz,Hardware-Assisted Thread and Data Mapping in Hierarchical Multicore Architectures.,2016,13,TACO,3,db/journals/taco/taco13.html#CruzDPN16,http://doi.acm.org/10.1145/2975587 +Nicklas Bo Jensen,Improving Loop Dependence Analysis.,2017,14,TACO,3,db/journals/taco/taco14.html#JensenK17,http://doi.acm.org/10.1145/3095754 +Aswinkumar Sridharan,Band-Pass Prefetching: An Effective Prefetch Management Mechanism Using Prefetch-Fraction Metric in Multi-Core Systems.,2017,14,TACO,2,db/journals/taco/taco14.html#SridharanPS17,http://doi.acm.org/10.1145/3090635 +David Tarjan,Merging path and gshare indexing in perceptron branch prediction.,2005,2,TACO,3,db/journals/taco/taco2.html#TarjanS05,http://doi.acm.org/10.1145/1089008.1089011 +Min Zhao,An approach toward profit-driven optimization.,2006,3,TACO,3,db/journals/taco/taco3.html#ZhaoCS06,http://doi.acm.org/10.1145/1162690.1162691 +Irshad Pananilath,An Optimizing Code Generator for a Class of Lattice-Boltzmann Computations.,2015,12,TACO,2,db/journals/taco/taco12.html#PananilathAVB15,http://doi.acm.org/10.1145/2739047 +Hans Vandierendonck,Speculative return address stack management revisited.,2008,5,TACO,3,db/journals/taco/taco5.html#VandierendonckS08,http://doi.acm.org/10.1145/1455650.1455654 +Jishen Zhao,Optimizing GPU energy efficiency with 3D die-stacking graphics memory and reconfigurable memory interface.,2013,10,TACO,4,db/journals/taco/taco10.html#ZhaoSLX13,http://doi.acm.org/10.1145/2541228.2541231 +Bin Li 0018,Dynamic QoS management for chip multiprocessors.,2012,9,TACO,3,db/journals/taco/taco9.html#LiPZI12,http://doi.acm.org/10.1145/2355585.2355590 +Yang Chen,Deconstructing iterative optimization.,2012,9,TACO,3,db/journals/taco/taco9.html#ChenFHEFTW12,http://doi.acm.org/10.1145/2355585.2355594 +Ragavendra Natarajan,Leveraging Transactional Execution for Memory Consistency Model Emulation.,2015,12,TACO,3,db/journals/taco/taco12.html#NatarajanZ15,http://doi.acm.org/10.1145/2786980 +Ding-Yong Hong,Optimizing Control Transfer and Memory Virtualization in Full System Emulators.,2016,12,TACO,4,db/journals/taco/taco12.html#HongHCHLW16,http://doi.acm.org/10.1145/2837027 +Wenguang Zheng,WCET-Aware Dynamic I-Cache Locking for a Single Task.,2017,14,TACO,1,db/journals/taco/taco14.html#ZhengWY17,http://doi.acm.org/10.1145/3046683 +Qingping Wang,A transactional memory with automatic performance tuning.,2012,8,TACO,4,db/journals/taco/taco8.html#WangKCS12,http://doi.acm.org/10.1145/2086696.2086733 +Hans Vandierendonck,Managing SMT resource usage through speculative instruction window weighting.,2011,8,TACO,3,db/journals/taco/taco8.html#VandierendonckS11,http://doi.acm.org/10.1145/2019608.2019611 +Sang Wook Stephen Do,Power Efficient Hardware Transactional Memory: Dynamic Issue of Transactions.,2016,13,TACO,1,db/journals/taco/taco13.html#DoD16,http://doi.acm.org/10.1145/2875425 +Yaohua Wang,Iteration Interleaving-Based SIMD Lane Partition.,2016,12,TACO,4,db/journals/taco/taco12.html#WangWCLCCZ16,http://doi.acm.org/10.1145/2847253 +Chuanjun Zhang,Reducing cache misses through programmable decoders.,2008,4,TACO,4,db/journals/taco/taco4.html#Zhang08,http://doi.acm.org/10.1145/1328195.1328200 +Dibyendu Das 0005,Efficient liveness computation using merge sets and DJ-graphs.,2012,8,TACO,4,db/journals/taco/taco8.html#DasDU12,http://doi.acm.org/10.1145/2086696.2086706 +Ehsan K. Ardestani,Managing Mismatches in Voltage Stacking with CoreUnfolding.,2016,12,TACO,4,db/journals/taco/taco12.html#ArdestaniPBR16,http://doi.acm.org/10.1145/2835178 +Yosi Ben-Asher,Hybrid type legalization for a sparse SIMD instruction set.,2013,10,TACO,3,db/journals/taco/taco10.html#Ben-AsherR13,http://doi.acm.org/10.1145/2509420.2509422 +Oliverio J. Santana,A low-complexity fetch architecture for high-performance superscalar processors.,2004,1,TACO,2,db/journals/taco/taco1.html#SantanaRLV04,http://doi.acm.org/10.1145/1011528.1011532 +Shashidhar Mysore,Formulating and implementing profiling over adaptive ranges.,2008,5,TACO,1,db/journals/taco/taco5.html#MysoreANSSS08,http://doi.acm.org/10.1145/1369396.1369398 +Sander Vocke,Extending Halide to Improve Software Development for Imaging DSPs.,2017,14,TACO,3,db/journals/taco/taco14.html#VockeCJCN17,http://doi.acm.org/10.1145/3106343 +Keval Vora,Synergistic Analysis of Evolving Graphs.,2016,13,TACO,4,db/journals/taco/taco13.html#VoraGX16,http://doi.acm.org/10.1145/2992784 +Quentin Colombet,Studying Optimal Spilling in the Light of SSA.,2014,11,TACO,4,db/journals/taco/taco11.html#ColombetBD14,http://doi.acm.org/10.1145/2685392 +Madhura Purnaprajna,Making wide-issue VLIW processors viable on FPGAs.,2012,8,TACO,4,db/journals/taco/taco8.html#PurnaprajnaI12,http://doi.acm.org/10.1145/2086696.2086712 +Hao Zhou,A Compiler Approach for Exploiting Partial SIMD Parallelism.,2016,13,TACO,1,db/journals/taco/taco13.html#ZhouX16,http://doi.acm.org/10.1145/2886101 +Hugh Leather,Automatic feature generation for machine learning-based optimising compilation.,2014,11,TACO,1,db/journals/taco/taco11.html#LeatherBO14,http://doi.acm.org/10.1145/2536688 +Brian A. Fields,Interaction cost and shotgun profiling.,2004,1,TACO,3,db/journals/taco/taco1.html#FieldsBHN04,http://doi.acm.org/10.1145/1022969.1022971 +Yoonseo Choi,Optimal register reassignment for register stack overflow minimization.,2006,3,TACO,1,db/journals/taco/taco3.html#ChoiH06,http://doi.acm.org/10.1145/1132462.1132467 +Sanyam Mehta,Variable Liberalization.,2016,13,TACO,3,db/journals/taco/taco13.html#MehtaY16,http://doi.acm.org/10.1145/2963101 +Fen Xie,Intraprogram dynamic voltage scaling: Bounding opportunities with analytic modeling.,2004,1,TACO,3,db/journals/taco/taco1.html#XieMM04,http://doi.acm.org/10.1145/1022969.1022973 +Adarsh Patil,HAShCache: Heterogeneity-Aware Shared DRAMCache for Integrated Heterogeneous Systems.,2017,14,TACO,4,db/journals/taco/taco14.html#PatilG17,http://doi.acm.org/10.1145/3158641 +Darío Suárez Gracia,Revisiting LP-NUCA Energy Consumption: Cache Access Policies and Adaptive Block Dropping.,2014,11,TACO,2,db/journals/taco/taco11.html#GraciaFCAY14,http://doi.acm.org/10.1145/2632217 +Jingling Xue,A lifetime optimal algorithm for speculative PRE.,2006,3,TACO,2,db/journals/taco/taco3.html#XueC06,http://doi.acm.org/10.1145/1138035.1138036 +Yeonghun Jeong,Evaluator-executor transformation for efficient pipelining of loops with conditionals.,2013,10,TACO,4,db/journals/taco/taco10.html#JeongSL13,http://doi.acm.org/10.1145/2541228.2555317 +Ismail Akturk,Accuracy Bugs: A New Class of Concurrency Bugs to Exploit Algorithmic Noise Tolerance.,2016,13,TACO,4,db/journals/taco/taco13.html#AkturkAIMK16,http://doi.acm.org/10.1145/3017991 +Bagus Wibowo,An Accurate Cross-Layer Approach for Online Architectural Vulnerability Estimation.,2016,13,TACO,3,db/journals/taco/taco13.html#WibowoAST16,http://doi.acm.org/10.1145/2975588 +Fernando Fernandes,Evaluation of Histogram of Oriented Gradients Soft Errors Criticality for Automotive Applications.,2016,13,TACO,4,db/journals/taco/taco13.html#FernandesWJNCR16,http://doi.acm.org/10.1145/2998573 +Mainak Chaudhuri,Micro-Sector Cache: Improving Space Utilization in Sectored DRAM Caches.,2017,14,TACO,1,db/journals/taco/taco14.html#ChaudhuriAGS17,http://doi.acm.org/10.1145/3046680 +Jieyi Long,Thermal monitoring mechanisms for chip multiprocessors.,2008,5,TACO,2,db/journals/taco/taco5.html#LongMMM08,http://doi.acm.org/10.1145/1400112.1400114 +Joseph J. Sharkey,Reducing register pressure in SMT processors through L2-miss-driven early register release.,2008,5,TACO,3,db/journals/taco/taco5.html#SharkeyLP08,http://doi.acm.org/10.1145/1455650.1455652 +Saeed Rashidi,Improving MLC PCM Performance through Relaxed Write and Read for Intermediate Resistance Levels.,2018,15,TACO,1,db/journals/taco/taco15.html#RashidiJS18,http://doi.acm.org/10.1145/3177965 +,List of Distinguished Reviewers ACM TACO 2014.,2016,13,TACO,3,db/journals/taco/taco13.html#Acacio16,http://dl.acm.org/citation.cfm?id=2989990 +Darko Zivanovic,Main Memory in HPC: Do We Need More or Could We Live with Less?,2017,14,TACO,1,db/journals/taco/taco14.html#ZivanovicPRSSMC17,http://doi.acm.org/10.1145/3023362 +Yongjoo Kim,Improving performance of nested loops on reconfigurable array processors.,2012,8,TACO,4,db/journals/taco/taco8.html#KimLMP12,http://doi.acm.org/10.1145/2086696.2086711 +Ying Cai,Extreme-Scale High-Order WENO Simulations of 3-D Detonation Wave with 10 Million Cores.,2018,15,TACO,2,db/journals/taco/taco15.html#CaiAYMZ18,http://doi.acm.org/10.1145/3209208 +Rajeev Balasubramonian,CACTI 7: New Tools for Interconnect Exploration in Innovative Off-Chip Memories.,2017,14,TACO,2,db/journals/taco/taco14.html#Balasubramonian17,http://doi.acm.org/10.1145/3085572 +Anuj Pathania,Defragmentation of Tasks in Many-Core Architecture.,2017,14,TACO,1,db/journals/taco/taco14.html#PathaniaVSMH17,http://doi.acm.org/10.1145/3050437 +Lian Li 0002,Compiler-directed scratchpad memory management via graph coloring.,2009,6,TACO,3,db/journals/taco/taco6.html#LiFX09,http://doi.acm.org/10.1145/1582710.1582711 +Fei Guo,Quality of service shared cache management in chip multiprocessor architecture.,2010,7,TACO,3,db/journals/taco/taco7.html#GuoSZI10,http://doi.acm.org/10.1145/1880037.1880039 +Vivek Seshadri,Mitigating Prefetcher-Caused Pollution Using Informed Caching Policies for Prefetched Blocks.,2014,11,TACO,4,db/journals/taco/taco11.html#SeshadriYXMGKM14,http://doi.acm.org/10.1145/2677956 +Abhishek Bhattacharjee,Parallelization libraries: Characterizing and reducing overheads.,2011,8,TACO,1,db/journals/taco/taco8.html#BhattacharjeeCM11,http://doi.acm.org/10.1145/1952998.1953003 +Eran Shifer,Low-latency adaptive mode transitions and hierarchical power management in asymmetric clustered cores.,2013,10,TACO,3,db/journals/taco/taco10.html#ShiferW13,http://doi.acm.org/10.1145/2499901 +Ali Bakhoda,Designing on-chip networks for throughput accelerators.,2013,10,TACO,3,db/journals/taco/taco10.html#BakhodaKA13,http://doi.acm.org/10.1145/2512429 +Somayeh Sardashti,Yet Another Compressed Cache: A Low-Cost Yet Effective Compressed Cache.,2016,13,TACO,3,db/journals/taco/taco13.html#SardashtiSW16,http://doi.acm.org/10.1145/2976740 +Namhyung Kim,Benzene: An Energy-Efficient Distributed Hybrid Cache Architecture for Manycore Systems.,2018,15,TACO,1,db/journals/taco/taco15.html#KimACSYR18,http://doi.acm.org/10.1145/3177963 +George Patsilaras,Efficiently exploiting memory level parallelism on asymmetric coupled cores in the dark silicon era.,2012,8,TACO,4,db/journals/taco/taco8.html#PatsilarasCT12,http://doi.acm.org/10.1145/2086696.2086707 +Fabio Luporini,Cross-Loop Optimization of Arithmetic Intensity for Finite Element Local Assembly.,2014,11,TACO,4,db/journals/taco/taco11.html#LuporiniVRBRHK14,http://doi.acm.org/10.1145/2687415 +Dave Dice,Improving Parallelism in Hardware Transactional Memory.,2018,15,TACO,1,db/journals/taco/taco15.html#DiceHK18,http://doi.acm.org/10.1145/3177962 +John Demme,Approximate graph clustering for program characterization.,2012,8,TACO,4,db/journals/taco/taco8.html#DemmeS12,http://doi.acm.org/10.1145/2086696.2086700 +Yingying Tian,Temporal-based multilevel correlating inclusive cache replacement.,2013,10,TACO,4,db/journals/taco/taco10.html#TianKJ13,http://doi.acm.org/10.1145/2541228.2555290 +Frederick Ryckbosch,VSim: Simulating multi-server setups at near native hardware speed.,2012,8,TACO,4,db/journals/taco/taco8.html#RyckboschPE12,http://doi.acm.org/10.1145/2086696.2086731 +Wenlai Zhao,Optimizing Convolutional Neural Networks on the Sunway TaihuLight Supercomputer.,2018,15,TACO,1,db/journals/taco/taco15.html#ZhaoFFZGY18,http://doi.acm.org/10.1145/3177885 +Peter Gavin,Reducing instruction fetch energy in multi-issue processors.,2013,10,TACO,4,db/journals/taco/taco10.html#GavinWS13,http://doi.acm.org/10.1145/2541228.2555318 +Dmitry Evtyushkin,Understanding and Mitigating Covert Channels Through Branch Predictors.,2016,13,TACO,1,db/journals/taco/taco13.html#EvtyushkinPA16,http://doi.acm.org/10.1145/2870636 +Doug Simon,Snippets: Taking the High Road to a Low Level.,2015,12,TACO,2,db/journals/taco/taco12.html#SimonWUDSW15,http://doi.acm.org/10.1145/2764907 +Jaydeep Marathe,Analysis of cache-coherence bottlenecks with hybrid hardware/software techniques.,2006,3,TACO,4,db/journals/taco/taco3.html#MaratheMS06,http://doi.acm.org/10.1145/1187976.1187978 +Maximilien Breughe,Mechanistic Analytical Modeling of Superscalar In-Order Processor Performance.,2014,11,TACO,4,db/journals/taco/taco11.html#BreugheEE14,http://doi.acm.org/10.1145/2678277 +Zhonghai Lu,Aggregate Flow-Based Performance Fairness in CMPs.,2016,13,TACO,4,db/journals/taco/taco13.html#LuY16,http://doi.acm.org/10.1145/3014429 +Panagiotis Theocharis,A Bimodal Scheduler for Coarse-Grained Reconfigurable Arrays.,2016,13,TACO,2,db/journals/taco/taco13.html#TheocharisS16,http://doi.acm.org/10.1145/2893475 +Miquel Pericàs,Elastic Places: An Adaptive Resource Manager for Scalable and Portable Performance.,2018,15,TACO,2,db/journals/taco/taco15.html#Pericas18,http://doi.acm.org/10.1145/3185458 +Kishore Kumar Pusukuri,Tumbler: An Effective Load-Balancing Technique for Multi-CPU Multicore Systems.,2016,12,TACO,4,db/journals/taco/taco12.html#PusukuriGB16,http://doi.acm.org/10.1145/2827698 +Srdan Stipic,Profile-guided transaction coalescing - lowering transactional overheads by merging transactions.,2013,10,TACO,4,db/journals/taco/taco10.html#StipicSUCV13,http://doi.acm.org/10.1145/2541228.2555306 +Jason McCandless,Compiler techniques to improve dynamic branch prediction for indirect jump and call instructions.,2012,8,TACO,4,db/journals/taco/taco8.html#McCandlessG12,http://doi.acm.org/10.1145/2086696.2086703 +Byung-Sun Yang,Exceptionization: A Java VM Optimization for Non-Java Languages.,2017,14,TACO,1,db/journals/taco/taco14.html#YangKM17,http://doi.acm.org/10.1145/3046681 +Mustafa Shihab,ReveNAND: A Fast-Drift-Aware Resilient 3D NAND Flash Design.,2018,15,TACO,2,db/journals/taco/taco15.html#ShihabZJK18,http://doi.acm.org/10.1145/3184744 +Nemanja Isailovic,Datapath and control for quantum wires.,2004,1,TACO,1,db/journals/taco/taco1.html#IsailovicWPKCCCO04,http://doi.acm.org/10.1145/980152.980155 +Ghassan Shobaki,Optimal trace scheduling using enumeration.,2009,5,TACO,4,db/journals/taco/taco5.html#ShobakiWH09,http://doi.acm.org/10.1145/1498690.1498694 +Qixiao Liu,Sensible Energy Accounting with Abstract Metering for Multicore Systems.,2016,12,TACO,4,db/journals/taco/taco12.html#LiuMACJV16,http://doi.acm.org/10.1145/2842616 +HanBin Yoon,Efficient Data Mapping and Buffering Techniques for Multilevel Cell Phase-Change Memories.,2014,11,TACO,4,db/journals/taco/taco11.html#YoonMMJM14,http://doi.acm.org/10.1145/2669365 +Ayman Hroub,Efficient Generation of Compact Execution Traces for Multicore Architectural Simulations.,2017,14,TACO,3,db/journals/taco/taco14.html#HroubEMK17,http://doi.acm.org/10.1145/3106342 +Jae-Eon Jo,DiagSim: Systematically Diagnosing Simulators for Healthy Simulations.,2018,15,TACO,1,db/journals/taco/taco15.html#JoLJLAK18,http://doi.acm.org/10.1145/3177959 +Xiaoxia Wu,Design exploration of hybrid caches with disparate memory technologies.,2010,7,TACO,3,db/journals/taco/taco7.html#WuLZSRX10,http://doi.acm.org/10.1145/1880037.1880040 +Milad Mohammadi,CG-OoO: Energy-Efficient Coarse-Grain Out-of-Order Execution Near In-Order Energy with Near Out-of-Order Performance.,2017,14,TACO,4,db/journals/taco/taco14.html#MohammadiAD17,http://doi.acm.org/10.1145/3151034 +Jan Kasper Martinsen,The Effects of Parameter Tuning in Software Thread-Level Speculation in JavaScript Engines.,2014,11,TACO,4,db/journals/taco/taco11.html#MartinsenGI14,http://doi.acm.org/10.1145/2686036 +Avinash Malik,Orchestrating stream graphs using model checking.,2013,10,TACO,3,db/journals/taco/taco10.html#MalikG13,http://doi.acm.org/10.1145/2512435 +Yunquan Zhang,A Cross-Platform SpMV Framework on Many-Core Architectures.,2016,13,TACO,4,db/journals/taco/taco13.html#Zhang0YZ16,http://doi.acm.org/10.1145/2994148 +Thibaut Lutz,PARTANS: An autotuning framework for stencil computation on multi-GPU systems.,2013,9,TACO,4,db/journals/taco/taco9.html#LutzFC13,http://doi.acm.org/10.1145/2400682.2400718 +William Hasenplaugh,The gradient-based cache partitioning algorithm.,2012,8,TACO,4,db/journals/taco/taco8.html#HasenplaughAJSE12,http://doi.acm.org/10.1145/2086696.2086723 +Amir Hossein Ashouri,MiCOMP: Mitigating the Compiler Phase-Ordering Problem Using Optimization Sub-Sequences and Machine Learning.,2017,14,TACO,3,db/journals/taco/taco14.html#AshouriBPSKC17,http://doi.acm.org/10.1145/3124452 +Fred A. Bower,Online diagnosis of hard faults in microprocessors.,2007,4,TACO,2,db/journals/taco/taco4.html#BowerSO07,http://doi.acm.org/10.1145/1250727.1250728 +Polychronis Xekalakis,Mixed speculative multithreaded execution models.,2012,9,TACO,3,db/journals/taco/taco9.html#XekalakisIC12,http://doi.acm.org/10.1145/2355585.2355591 +Myeongjae Jeon,Reducing DRAM row activations with eager read/write clustering.,2013,10,TACO,4,db/journals/taco/taco10.html#JeonLCR13,http://doi.acm.org/10.1145/2541228.2555300 +Quan Chen 0002,Adaptive workload-aware task scheduling for single-ISA asymmetric multicore architectures.,2014,11,TACO,1,db/journals/taco/taco11.html#ChenG14,http://doi.acm.org/10.1145/2579674 +Jason Hiser,Evaluating indirect branch handling mechanisms in software dynamic translation systems.,2011,8,TACO,2,db/journals/taco/taco8.html#HiserWHDMC11,http://doi.acm.org/10.1145/1970386.1970390 +Marios Kleanthous,CATCH: A mechanism for dynamically detecting cache-content-duplication in instruction caches.,2011,8,TACO,3,db/journals/taco/taco8.html#KleanthousS11,http://doi.acm.org/10.1145/2019608.2019610 +Lixin Zhang 0002,Efficient address remapping in distributed shared-memory systems.,2006,3,TACO,2,db/journals/taco/taco3.html#ZhangPC06,http://doi.acm.org/10.1145/1138035.1138039 +Wolfram Amme,SSA-based mobile code: Implementation and empirical evaluation.,2007,4,TACO,2,db/journals/taco/taco4.html#AmmeRF07,http://doi.acm.org/10.1145/1250727.1250733 +Luis Ceze,CAVA: Using checkpoint-assisted value prediction to hide L2 misses.,2006,3,TACO,2,db/journals/taco/taco3.html#CezeSTTR06,http://doi.acm.org/10.1145/1138035.1138038 +Arun K. Kanuparthi,Reliable Integrity Checking in Multicore Processors.,2015,12,TACO,2,db/journals/taco/taco12.html#KanuparthiK15,http://doi.acm.org/10.1145/2738052 +Zhibin Liang,Deadline-Constrained Clustered Scheduling for VLIW Architectures using Power-Gated Register Files.,2014,11,TACO,2,db/journals/taco/taco11.html#LiangZM14,http://doi.acm.org/10.1145/2632218 +Jan Lucas,Spatiotemporal SIMT and Scalarization for Improving GPU Efficiency.,2015,12,TACO,3,db/journals/taco/taco12.html#LucasAMJ15,http://doi.acm.org/10.1145/2811402 +Subhasis Das,Reuse Distance-Based Probabilistic Cache Replacement.,2016,12,TACO,4,db/journals/taco/taco12.html#DasAD16,http://doi.acm.org/10.1145/2818374 +Chuntao Jiang,PCantorSim: Accelerating parallel architecture simulation through fractal-based sampling.,2013,10,TACO,4,db/journals/taco/taco10.html#JiangYJXEHCL13,http://doi.acm.org/10.1145/2541228.2555305 +Dyer Rolán,Virtually split cache: An efficient mechanism to distribute instructions and data.,2013,10,TACO,4,db/journals/taco/taco10.html#RolanFD13,http://doi.acm.org/10.1145/2541228.2541234 +Ramyad Hadidi,CAIRO: A Compiler-Assisted Technique for Enabling Instruction-Level Offloading of Processing-In-Memory.,2017,14,TACO,4,db/journals/taco/taco14.html#HadidiNKK17,http://doi.acm.org/10.1145/3155287 +Andrew Anderson 0001,Automatic Vectorization of Interleaved Data Revisited.,2016,12,TACO,4,db/journals/taco/taco12.html#AndersonMG16,http://doi.acm.org/10.1145/2838735 +Daniele De Sensi,Bringing Parallel Patterns Out of the Corner: The P3 ARSEC Benchmark Suite.,2017,14,TACO,4,db/journals/taco/taco14.html#SensiMTMD17,http://doi.acm.org/10.1145/3132710 +Weijia Li,Towards update-conscious compilation for energy-efficient code dissemination in WSNs.,2009,6,TACO,4,db/journals/taco/taco6.html#LiZYZ09,http://doi.acm.org/10.1145/1596510.1596512 +Engin Ipek,Efficient architectural design space exploration via predictive modeling.,2008,4,TACO,4,db/journals/taco/taco4.html#IpekMSCSS08,http://doi.acm.org/10.1145/1328195.1328196 +Biswabandan Panda,CAFFEINE: A Utility-Driven Prefetcher Aggressiveness Engine for Multicores.,2015,12,TACO,3,db/journals/taco/taco12.html#PandaB15,http://doi.acm.org/10.1145/2806891 +Helge Bahmann,Perfect Reconstructability of Control Flow from Demand Dependence Graphs.,2014,11,TACO,4,db/journals/taco/taco11.html#BahmannRJM14,http://doi.acm.org/10.1145/2693261 +Morteza Mohajjel Kafshdooz,Dynamic Shared SPM Reuse for Real-Time Multicore Embedded Systems.,2015,12,TACO,2,db/journals/taco/taco12.html#KafshdoozE15,http://doi.acm.org/10.1145/2738051 +Christian Häubl,Trace transitioning and exception handling in a trace-based JIT compiler for java.,2014,11,TACO,1,db/journals/taco/taco11.html#HaublWM14,http://doi.acm.org/10.1145/2579673 +Adam Wade Lewis,Runtime energy consumption estimation for server workloads based on chaotic time-series approximation.,2012,9,TACO,3,db/journals/taco/taco9.html#LewisTG12,http://doi.acm.org/10.1145/2355585.2355588 +George Matheou,Architectural Support for Data-Driven Execution.,2014,11,TACO,4,db/journals/taco/taco11.html#MatheouE14,http://doi.acm.org/10.1145/2686874 +Zhijia Zhao 0001,HPar: A practical parallel parser for HTML-taming HTML complexities for parallel parsing.,2013,10,TACO,4,db/journals/taco/taco10.html#ZhaoBHSS13,http://doi.acm.org/10.1145/2541228.2555301 +Siddhartha Chhabra,Making secure processors OS- and performance-friendly.,2009,5,TACO,4,db/journals/taco/taco5.html#ChhabraRSP09,http://doi.acm.org/10.1145/1498690.1498691 +Zia Ul Huda,Using Template Matching to Infer Parallel Design Patterns.,2014,11,TACO,4,db/journals/taco/taco11.html#HudaJW14,http://doi.acm.org/10.1145/2688905 +Yigit Demir,Energy-Proportional Photonic Interconnects.,2016,13,TACO,4,db/journals/taco/taco13.html#DemirH16,http://doi.acm.org/10.1145/3018110 +Yan Meng,Exploring the limits of leakage power reduction in caches.,2005,2,TACO,3,db/journals/taco/taco2.html#MengSK05,http://doi.acm.org/10.1145/1089008.1089009 +Rakesh Kumar 0003,Efficient Power Gating of SIMD Accelerators Through Dynamic Selective Devectorization in an HW/SW Codesigned Environment.,2014,11,TACO,3,db/journals/taco/taco11.html#KumarMG14,http://doi.acm.org/10.1145/2629681 +Komal Jothi,Tuning the continual flow pipeline architecture with virtual register renaming.,2014,11,TACO,1,db/journals/taco/taco11.html#JothiA14,http://doi.acm.org/10.1145/2579675 +Andi Drebes,Topology-Aware and Dependence-Aware Scheduling and Memory Allocation for Task-Parallel Languages.,2014,11,TACO,3,db/journals/taco/taco11.html#DrebesHDPC14,http://doi.acm.org/10.1145/2641764 +Amir Hossein Ashouri,COBAYN: Compiler Autotuning Framework Using Bayesian Networks.,2016,13,TACO,2,db/journals/taco/taco13.html#AshouriMPPCS16,http://doi.acm.org/10.1145/2928270 +Miguel A. Gonzalez-Mesa,Effective Transactional Memory Execution Management for Improved Concurrency.,2014,11,TACO,3,db/journals/taco/taco11.html#Gonzalez-MesaGZP14,http://doi.acm.org/10.1145/2633048 +Zhe Wang,WADE: Writeback-aware dynamic cache management for NVM-based main memory system.,2013,10,TACO,4,db/journals/taco/taco10.html#WangSCGXM0J13,http://doi.acm.org/10.1145/2541228.2555307 +Xing Zhou,Optimal Parallelogram Selection for Hierarchical Tiling.,2014,11,TACO,4,db/journals/taco/taco11.html#ZhouGP14,http://doi.acm.org/10.1145/2687414 +Cedric Nugteren,Algorithmic species: A classification of affine loop nests for parallel programming.,2013,9,TACO,4,db/journals/taco/taco9.html#NugterenCC13,http://doi.acm.org/10.1145/2400682.2400699 +Petar Radojkovic,On the evaluation of the impact of shared resources in multithreaded COTS processors in time-critical environments.,2012,8,TACO,4,db/journals/taco/taco8.html#RadojkovicGGQYC12,http://doi.acm.org/10.1145/2086696.2086713 +Kypros Chrysanthou,An Online and Real-Time Fault Detection and Localization Mechanism for Network-on-Chip Architectures.,2016,13,TACO,2,db/journals/taco/taco13.html#ChrysanthouEPPN16,http://doi.acm.org/10.1145/2930670 +Zheng Wang 0001,Integrating profile-driven parallelism detection and machine-learning-based mapping.,2014,11,TACO,1,db/journals/taco/taco11.html#WangTFO14,http://doi.acm.org/10.1145/2579561 +Dimitrios Chasapis,PARSECSs: Evaluating the Impact of Task Parallelism in the PARSEC Benchmark Suite.,2016,12,TACO,4,db/journals/taco/taco12.html#ChasapisCMVALV16,http://doi.acm.org/10.1145/2829952 +Nikolaos Tampouratzis,Accelerating Intercommunication in Highly Parallel Systems.,2016,13,TACO,4,db/journals/taco/taco13.html#TampouratzisMP16,http://doi.acm.org/10.1145/3005717 +Prasad A. Kulkarni,Practical exhaustive optimization phase order exploration and evaluation.,2009,6,TACO,1,db/journals/taco/taco6.html#KulkarniWTD09,http://doi.acm.org/10.1145/1509864.1509865 +Manuel Hohenauer,A SIMD optimization framework for retargetable compilers.,2009,6,TACO,1,db/journals/taco/taco6.html#HohenauerELAM09,http://doi.acm.org/10.1145/1509864.1509866 +Diego Andrade,Static analysis of the worst-case memory performance for irregular codes with indirections.,2012,9,TACO,3,db/journals/taco/taco9.html#AndradeFD12,http://doi.acm.org/10.1145/2355585.2355593 +Po-Han Wang,Power gating strategies on GPUs.,2011,8,TACO,3,db/journals/taco/taco8.html#WangYCC11,http://doi.acm.org/10.1145/2019608.2019612 +Xiangyu Zhang 0001,Whole execution traces and their applications.,2005,2,TACO,3,db/journals/taco/taco2.html#ZhangG05,http://doi.acm.org/10.1145/1089008.1089012 +Francisco Gaspar,A Framework for Application-Guided Task Management on Heterogeneous Embedded Systems.,2016,12,TACO,4,db/journals/taco/taco12.html#GasparTTIS16,http://doi.acm.org/10.1145/2835177 +Xueyang Wang,Hardware Performance Counter-Based Malware Identification and Detection with Adaptive Compressive Sensing.,2016,13,TACO,1,db/journals/taco/taco13.html#WangCILK16,http://doi.acm.org/10.1145/2857055 +Libo Huang,Adaptive communication mechanism for accelerating MPI functions in NoC-based multicore processors.,2013,10,TACO,3,db/journals/taco/taco10.html#HuangWXWD13,http://doi.acm.org/10.1145/2512434 +Xiangyu Dong,Hybrid checkpointing using emerging nonvolatile memories for future exascale systems.,2011,8,TACO,2,db/journals/taco/taco8.html#DongXMJ11,http://doi.acm.org/10.1145/1970386.1970387 +Min Feng 0001,Dynamic access distance driven cache replacement.,2011,8,TACO,3,db/journals/taco/taco8.html#FengTLG11,http://doi.acm.org/10.1145/2019608.2019613 +Stijn Eyerman,Multiprogram Throughput Metrics: A Systematic Approach.,2014,11,TACO,3,db/journals/taco/taco11.html#EyermanMR14,http://doi.acm.org/10.1145/2663346 +Wenjie Chen,Implementing Dense Optical Flow Computation on a Heterogeneous FPGA SoC in C.,2016,13,TACO,3,db/journals/taco/taco13.html#ChenWWLC16,http://doi.acm.org/10.1145/2948976 +Mahdad Davari,The Effects of Granularity and Adaptivity on Private/Shared Classification for Coherence.,2015,12,TACO,3,db/journals/taco/taco12.html#DavariRHK15,http://doi.acm.org/10.1145/2790301 +Chia-Lin Yang,Tolerating memory latency through push prefetching for pointer-intensive applications.,2004,1,TACO,4,db/journals/taco/taco1.html#YangLTL04,http://doi.acm.org/10.1145/1044823.1044827 +Roman Malits,Exploring the limits of GPGPU scheduling in control flow bound applications.,2012,8,TACO,4,db/journals/taco/taco8.html#MalitsBKM12,http://doi.acm.org/10.1145/2086696.2086708 +Leo Porter,Making the Most of SMT in HPC: System- and Application-Level Perspectives.,2014,11,TACO,4,db/journals/taco/taco11.html#PorterLTJWCC14,http://doi.acm.org/10.1145/2687651 +Michal Wegiel,The single-referent collector: Optimizing compaction for the common case.,2009,6,TACO,4,db/journals/taco/taco6.html#WegielK09,http://doi.acm.org/10.1145/1596510.1596513 +Brad Calder,Introduction.,2005,2,TACO,1,db/journals/taco/taco2.html#CalderT05,http://doi.acm.org/10.1145/1061267.1061268 +Jin Lin,Recovery code generation for general speculative optimizations.,2006,3,TACO,1,db/journals/taco/taco3.html#LinHYJN06,http://doi.acm.org/10.1145/1132462.1132466 +Yaozu Dong,ReNIC: Architectural extension to SR-IOV I/O virtualization for efficient replication.,2012,8,TACO,4,db/journals/taco/taco8.html#DongCPDJ12,http://doi.acm.org/10.1145/2086696.2086719 +James R. Geraci,A transpose-free in-place SIMD optimized FFT.,2012,9,TACO,3,db/journals/taco/taco9.html#GeraciS12,http://doi.acm.org/10.1145/2355585.2355596 +A. Y. M. Atiquil Islam,Validation of the Technology Satisfaction Model (TSM) Developed in Higher Education: The Application of Structural Equation Modeling.,2014,10,IJTHI,3,db/journals/ijthi/ijthi10.html#Islam14,https://doi.org/10.4018/ijthi.2014070104 +Ardion Beldad,Sealing One's Online Wall Off From Outsiders: Determinants of the Use of Facebook's Privacy Settings among Young Dutch Users.,2016,12,IJTHI,1,db/journals/ijthi/ijthi12.html#Beldad16,https://doi.org/10.4018/IJTHI.2016010102 +Luciano Floridi,Global Information Ethics: The Importance of Being Environmentally Earnest.,2007,3,IJTHI,3,db/journals/ijthi/ijthi3.html#Floridi07,https://doi.org/10.4018/jthi.2007070101 +Steve Sawyer,The Sociotechnical Nature of Mobile Computing Work: Evidence from a Study of Policing in the United State.,2005,1,IJTHI,3,db/journals/ijthi/ijthi1.html#SawyerT05,https://doi.org/10.4018/jthi.2005070101 +Bernard Fallery,Acceptance and Appropriation of Videoconferencing for E-training: An Empirical Investigation.,2010,6,IJTHI,3,db/journals/ijthi/ijthi6.html#FalleryTG10,https://doi.org/10.4018/jthi.2010070103 +Yuechuan Wei,Security Analysis of Cipher ICEBERG against Bit-pattern Based Integral Attack.,2016,12,IJTHI,2,db/journals/ijthi/ijthi12.html#WeiRW16,https://doi.org/10.4018/IJTHI.2016040105 +Philip Brey,Is Information Ethics Culture-Relative?,2007,3,IJTHI,3,db/journals/ijthi/ijthi3.html#Brey07,https://doi.org/10.4018/jthi.2007070102 +Jennifer Stein,Location-Based Mobile Storytelling.,2009,5,IJTHI,1,db/journals/ijthi/ijthi5.html#SteinRF09,https://doi.org/10.4018/jthi.2009010104 +Mats Edenius,"The Function of Representation in a ""Smart Home Context"".",2006,2,IJTHI,3,db/journals/ijthi/ijthi2.html#Edenius06,https://doi.org/10.4018/jthi.2006070101 +Mariarosaria Taddeo,Defining Trust and E-Trust: From Old Theories to New Problems.,2009,5,IJTHI,2,db/journals/ijthi/ijthi5.html#Taddeo09,https://doi.org/10.4018/jthi.2009040102 +Jean-Eric Pelet,Consumer Behavior in the Mobile Environment: An Exploratory Study of M-Commerce and Social Media.,2014,10,IJTHI,4,db/journals/ijthi/ijthi10.html#PeletP14,https://doi.org/10.4018/ijthi.2014100103 +Donghee Yvette Wohn,Social Contributors and Consequences of Habitual and Compulsive Game Play.,2015,11,IJTHI,3,db/journals/ijthi/ijthi11.html#WohnLO15,https://doi.org/10.4018/ijthi.2015070102 +Gareth Peevers,Multimedia Technology in the Financial Services Sector: Customer Satisfaction with Alternatives to Face-to-Face Interaction in Mortgage Sales.,2011,7,IJTHI,4,db/journals/ijthi/ijthi7.html#PeeversDJ11,https://doi.org/10.4018/jthi.2011100102 +Duncan R. Shaw,Electronic Commerce Strategy in the UK Electricity Industry: The Case of Electric Co and Dataflow Software.,2006,2,IJTHI,3,db/journals/ijthi/ijthi2.html#ShawHKSW06,https://doi.org/10.4018/jthi.2006070103 +Ewan Oiry,The Role of the Organizational Structure in the IT Appropriation: Explorative Case Studies into the Interaction between IT and Workforce Management.,2010,6,IJTHI,4,db/journals/ijthi/ijthi6.html#OiryOB10,https://doi.org/10.4018/jthi.2010100103 +Saad Ghaleb Yaseen,Investigating the Engage in Electronic Societies via Facebook in the Arab World.,2013,9,IJTHI,2,db/journals/ijthi/ijthi9.html#YaseenO13,https://doi.org/10.4018/jthi.2013040102 +Philip T. Kortum,The Effect of Choice and Announcement Duration on the Estimation of Telephone Hold Time.,2008,4,IJTHI,4,db/journals/ijthi/ijthi4.html#KortumBKB08,https://doi.org/10.4018/jthi.2008100102 +Mohammed Arif,Assessing the Usability for Arabic Language Websites.,2014,10,IJTHI,3,db/journals/ijthi/ijthi10.html#ArifG14,https://doi.org/10.4018/ijthi.2014070106 +Matthew W. Guah,Web Services in National Healthcare: The Impact of Public and Private Collaboration.,2005,1,IJTHI,2,db/journals/ijthi/ijthi1.html#GuahC05,https://doi.org/10.4018/jthi.2005040103 +Hannakaisa Isomäki,Different Levels of Information Systems Designers' Forms of Thought and Potential for Human-Centered Design.,2007,3,IJTHI,1,db/journals/ijthi/ijthi3.html#Isomaki07,https://doi.org/10.4018/jthi.2007010103 +Amon Rapp,A Qualitative Investigation of Gamification: Motivational Factors in Online Gamified Services and Applications.,2015,11,IJTHI,1,db/journals/ijthi/ijthi11.html#Rapp15,https://doi.org/10.4018/ijthi.2015010105 +Meriem Laifa,Forgiveness Predictors and Trust in a Digital Age.,2018,14,IJTHI,4,db/journals/ijthi/ijthi14.html#LaifaGAM18,https://doi.org/10.4018/IJTHI.2018100102 +Marie Eneman,Counter-Surveillance Strategies Adopted By Child Pornographers.,2009,5,IJTHI,4,db/journals/ijthi/ijthi5.html#Eneman09,https://doi.org/10.4018/jthi.2009062501 +Federica Cena,A Study on User Preferential Choices about Rating Scales.,2015,11,IJTHI,1,db/journals/ijthi/ijthi11.html#CenaV15,https://doi.org/10.4018/ijthi.2015010103 +Susana Bernardino,Unleashing the Intelligence of Cities by Social Innovation and Civic Crowdfunding: An Exploratory Study.,2018,14,IJTHI,2,db/journals/ijthi/ijthi14.html#BernardinoS18,https://doi.org/10.4018/IJTHI.2018040104 +Netta Iivari,Exploring the Rhetoric on Representing the User: Discourses on User Involvement in Academia and the IT Artifact Product Development Industry.,2006,2,IJTHI,4,db/journals/ijthi/ijthi2.html#Iivari06,https://doi.org/10.4018/jthi.2006100104 +Joanne Kuzma,Empirical Study of Cyber Harassment among Social Networks.,2013,9,IJTHI,2,db/journals/ijthi/ijthi9.html#Kuzma13,https://doi.org/10.4018/jthi.2013040104 +Giuseppina Pellegrino,Misunderstandings Around the Artifact: A KMS Failure Story.,2005,1,IJTHI,3,db/journals/ijthi/ijthi1.html#Pellegrino05,https://doi.org/10.4018/jthi.2005070102 +Haiyan Fan,Developing and Validating a Measure of Web Personalization Strategy.,2008,4,IJTHI,4,db/journals/ijthi/ijthi4.html#FanD08,https://doi.org/10.4018/jthi.2008100101 +Janet C. Dunlop,The U.S. Video Game Industry: Analyzing Representation of Gender and Race.,2007,3,IJTHI,2,db/journals/ijthi/ijthi3.html#Dunlop07,https://doi.org/10.4018/jthi.2007040106 +Niamh McNamara,Measuring the Human Element in Complex Technologies.,2008,4,IJTHI,1,db/journals/ijthi/ijthi4.html#McNamaraK08,https://doi.org/10.4018/jthi.2008010101 +Claire Gauzente,Does Anybody Read SMS-Advertising?: A Qualitative and Quantitative Study of Mobile Users' Attitudes and Perceived Ad-Clutter.,2010,6,IJTHI,2,db/journals/ijthi/ijthi6.html#Gauzente10,https://doi.org/10.4018/jthi.2010040102 +Zhang Wei,A Pairing-based Homomorphic Encryption Scheme for Multi-User Settings.,2016,12,IJTHI,2,db/journals/ijthi/ijthi12.html#Wei16,https://doi.org/10.4018/IJTHI.2016040106 +Nae-Wen Kuo,Applying the Theory of Planned Behavior to Predict Low-Carbon Tourism Behavior: A Modified Model from Taiwan.,2012,8,IJTHI,4,db/journals/ijthi/ijthi8.html#KuoD12,https://doi.org/10.4018/jthi.2012100103 +Philip D. Carter,The Emerging Story of the Machine.,2010,6,IJTHI,2,db/journals/ijthi/ijthi6.html#Carter10,https://doi.org/10.4018/jthi.2010040101 +Chang-Huei Lin,Study on the Performance and Exhaust Emissions of Motorcycle Engine Fuelled with Hydrogen-Gasoline Compound Fuel.,2012,8,IJTHI,3,db/journals/ijthi/ijthi8.html#LinCH12,https://doi.org/10.4018/jthi.2012070107 +Brian M. Kleiner,Human Factors in Organizational Design and Management of Industrial Plants.,2008,4,IJTHI,1,db/journals/ijthi/ijthi4.html#KleinerH08,https://doi.org/10.4018/jthi.2008010107 +Carina Andrade,Sentiment Analysis with Text Mining in Contexts of Big Data.,2017,13,IJTHI,3,db/journals/ijthi/ijthi13.html#AndradeS17,https://doi.org/10.4018/IJTHI.2017070104 +Khalid Alemerien,User-Friendly Security Patterns for Designing Social Network Websites.,2017,13,IJTHI,1,db/journals/ijthi/ijthi13.html#Alemerien17,https://doi.org/10.4018/IJTHI.2017010103 +Panagiotis Zaharias,Usability in the Context of e-Learning: A Framework Augmenting 'Traditional' Usability Constructs with Instructional Design and Motivation to Learn.,2009,5,IJTHI,4,db/journals/ijthi/ijthi5.html#Zaharias09,https://doi.org/10.4018/jthi.2009062503 +Mírian Oliveira,Infrastructure Profiles and Knowledge Sharing.,2017,13,IJTHI,3,db/journals/ijthi/ijthi13.html#OliveiraMCN17,https://doi.org/10.4018/IJTHI.2017070101 +Netta Iivari,'Listening to the Voices of the Users' in Product Based Software Development.,2009,5,IJTHI,3,db/journals/ijthi/ijthi5.html#IivariM09,https://doi.org/10.4018/jthi.2009070103 +Kevin P. Gallagher,Reframing Information System Design as Learning Across Communities of Practice.,2007,3,IJTHI,4,db/journals/ijthi/ijthi3.html#GallagherM07,https://doi.org/10.4018/jthi.2007100102 +Lin Lin,Multiple Dimensions of Multitasking Phenomenon.,2013,9,IJTHI,1,db/journals/ijthi/ijthi9.html#Lin13,https://doi.org/10.4018/jthi.2013010103 +Chia-Wen Tsai,How Much Can Computers and Internet Help?: A Long-Term Study of Web-Mediated Problem-Based Learning and Self-Regulated Learning.,2011,7,IJTHI,1,db/journals/ijthi/ijthi7.html#Tsai11,https://doi.org/10.4018/jthi.2011010105 +Clive Sanford,IT Implementation in a Developing Country Municipality: A Sociocognitive Analysis.,2008,4,IJTHI,3,db/journals/ijthi/ijthi4.html#SanfordB08,https://doi.org/10.4018/jthi.2008070104 +Sherina Idrish,Mobile Health Technology Evaluation: Innovativeness and Efficacy vs. Cost Effectiveness.,2017,13,IJTHI,2,db/journals/ijthi/ijthi13.html#IdrishRIN17,https://doi.org/10.4018/IJTHI.2017040101 +T. S. Amer,Earcons Versus Auditory Icons in Communicating Computing Events: Learning and User Preference.,2018,14,IJTHI,4,db/journals/ijthi/ijthi14.html#AmerJ18,https://doi.org/10.4018/IJTHI.2018100106 +Nancie Gunson,Usability Evaluation of Dialogue Designs for Voiceprint Authentication in Automated Telephone Banking.,2014,10,IJTHI,2,db/journals/ijthi/ijthi10.html#GunsonMMMJ14,https://doi.org/10.4018/ijthi.2014040104 +One-Soon Her,Optimality-Theoretic Lexical Mapping Theory: A Case Study of Locative Inversion.,2006,2,IJTHI,1,db/journals/ijthi/ijthi2.html#Her06,https://doi.org/10.4018/jthi.2006010105 +Edward Spence,Luciano Floridi's Metaphysical Theory of Information Ethics: A Critical Appraisal and an Alternative Neo-Gewirthian Information Ethics.,2010,6,IJTHI,1,db/journals/ijthi/ijthi6.html#Spence10,https://doi.org/10.4018/jthi.2010091701 +Rachel McLean,"Pixel Chix and Digi Guys: Exploring the Experience of the ""Digital Citizens"" in Two Contexts.",2008,4,IJTHI,2,db/journals/ijthi/ijthi4.html#McLean08,https://doi.org/10.4018/jthi.2008040101 +Ruth Chatelain-Jardón,An Extension to Simulated Web-Based Threats and Their Impact on Knowledge Communication Effectiveness.,2016,12,IJTHI,3,db/journals/ijthi/ijthi12.html#Chatelain-Jardon16,https://doi.org/10.4018/IJTHI.2016070105 +Sue Conger,New Pedagogical Approaches with Technologies.,2017,13,IJTHI,4,db/journals/ijthi/ijthi13.html#CongerKS17,https://doi.org/10.4018/IJTHI.2017100105 +Ian F. Alexander,A Taxonomy of Stakeholders: Human Roles in System Development.,2005,1,IJTHI,1,db/journals/ijthi/ijthi1.html#Alexander05,https://doi.org/10.4018/jthi.2005010102 +Yiqun Liu,An Improved Security 3D Watermarking Method Using Computational Integral Imaging Cryptosystem.,2016,12,IJTHI,2,db/journals/ijthi/ijthi12.html#LiuWZZLW16,https://doi.org/10.4018/IJTHI.2016040101 +Aikaterini Manthiou,Identifying and Responding to Customer Needs on Facebook Fan Pages.,2013,9,IJTHI,3,db/journals/ijthi/ijthi9.html#ManthiouCT13,https://doi.org/10.4018/jthi.2013070103 +Adams Bodomo,A Unicode Keyboard for African Languages: The Case of Dagaare and Twi.,2006,2,IJTHI,1,db/journals/ijthi/ijthi2.html#BodomoMCM06,https://doi.org/10.4018/jthi.2006010101 +Daniel M. Eveleth,The Influence of Recruitment Websites on Job-Seeker Perceptions of Organization and Job Fit.,2018,14,IJTHI,4,db/journals/ijthi/ijthi14.html#EvelethSB18,https://doi.org/10.4018/IJTHI.2018100101 +Pertti Saariluoma,Mental Contents in Interacting with a Multiobjective Optimization Program.,2008,4,IJTHI,3,db/journals/ijthi/ijthi4.html#SaariluomaKMM08,https://doi.org/10.4018/jthi.2008070103 +Norazah Mohd Suki,Factors Enhancing Employed Job Seekers Intentions to Use Social Networking Sites as a Job Search Tool.,2011,7,IJTHI,2,db/journals/ijthi/ijthi7.html#SukiRMS11,https://doi.org/10.4018/jthi.2011040105 +Margreet B. Michel-Verkerke,USE IT to Create Patient-Relation Management for Multiple Sclerosis Patients.,2005,1,IJTHI,4,db/journals/ijthi/ijthi1.html#Michel-VerkerkeSS05,https://doi.org/10.4018/jthi.2005100104 +Probir Kumar Banerjee,IT Pay-Off: Tracing the Antecedents.,2015,11,IJTHI,1,db/journals/ijthi/ijthi11.html#Banerjee15,https://doi.org/10.4018/ijthi.2015010101 +Tanya V. Bondarouk,Successes and Failures of SAP Implementation: A Learning Perspective.,2007,3,IJTHI,4,db/journals/ijthi/ijthi3.html#BondaroukR07,https://doi.org/10.4018/jthi.2007100103 +Mary R. Lind,A De-Construction of Wireless Device Usage.,2007,3,IJTHI,2,db/journals/ijthi/ijthi3.html#Lind07,https://doi.org/10.4018/jthi.2007040103 +Olfa Bouzaabia,Determinants of Internet Use by Senior Generation: A Cross Cultural Study.,2016,12,IJTHI,1,db/journals/ijthi/ijthi12.html#BouzaabiaBC16,https://doi.org/10.4018/IJTHI.2016010105 +Nuno Carvalho,E-Rulemaking: Lessons from the Literature.,2018,14,IJTHI,2,db/journals/ijthi/ijthi14.html#CarvalhoL18,https://doi.org/10.4018/IJTHI.2018040103 +Sheng-Yi Hsiao,Chemical-Free and Reusable Cellular Analysis: Electrochemical Impedance Spectroscopy with a Transparent ITO Culture Chip.,2012,8,IJTHI,3,db/journals/ijthi/ijthi8.html#HsiaoCYHLHLL12,https://doi.org/10.4018/jthi.2012070101 +Andree E. Widjaja,Investigating Factors Affecting Central Bank Information Systems Success: The Case of the Central Bank of Mongolia.,2018,14,IJTHI,4,db/journals/ijthi/ijthi14.html#WidjajaCG18,https://doi.org/10.4018/IJTHI.2018100103 +T. S. Amer,Information Technology Exception Messages: A Proposed Set of Information Elements and Format for Consistency and Informativeness.,2010,6,IJTHI,1,db/journals/ijthi/ijthi6.html#AmerM10,https://doi.org/10.4018/jthi.2010091704 +Shu-Hui Chuang,Behavioral Intention of Using Social Networking Site: A Comparative Study of Taiwanese and Thai Facebook Users.,2017,13,IJTHI,1,db/journals/ijthi/ijthi13.html#ChuangLCK17,https://doi.org/10.4018/IJTHI.2017010104 +Dragos Vieru,The Resilience of Pre-Merger Fields of Practice During Post-Merger Information Systems Development.,2018,14,IJTHI,3,db/journals/ijthi/ijthi14.html#VieruR18,https://doi.org/10.4018/IJTHI.2018070104 +Tanya J. McGill,From Beliefs to Success: Utilizing an Expanded TAM to Predict Web Page Development Success.,2007,3,IJTHI,3,db/journals/ijthi/ijthi3.html#McGillB07,https://doi.org/10.4018/jthi.2007070104 +Mie Nørgaard,Working Together to Improve Usability: Exploring Challenges and Successful Practices.,2010,6,IJTHI,1,db/journals/ijthi/ijthi6.html#NorgaardH10,https://doi.org/10.4018/jthi.2010091703 +Vincent Dutot,Adoption of Social Media Using Technology Acceptance Model: The Generational Effect.,2014,10,IJTHI,4,db/journals/ijthi/ijthi10.html#Dutot14,https://doi.org/10.4018/ijthi.2014100102 +Geoffrey S. Hubona,The Paleolithic Stone Age Effect? : Gender Differences Performing Specific Computer-Generated Spatial Tasks.,2006,2,IJTHI,2,db/journals/ijthi/ijthi2.html#HubonaS06,https://doi.org/10.4018/jthi.2006040102 +Angel M. Ojeda-Castro,Learning Management System Use to Increase Mathematics Knowledge and Skills in Puerto Rico.,2017,13,IJTHI,2,db/journals/ijthi/ijthi13.html#Ojeda-CastroMS17,https://doi.org/10.4018/IJTHI.2017040106 +Bolanle A. Olaniran,Organizational Communication: Assessment of Videoconferencing as a Medium for Meetings in the Workplace.,2009,5,IJTHI,2,db/journals/ijthi/ijthi5.html#Olaniran09,https://doi.org/10.4018/jthi.2009040104 +Panagiotis Zaharias,Cross-Cultural Differences in Perceptions of E-Learning Usability: An Empirical Investigation.,2008,4,IJTHI,3,db/journals/ijthi/ijthi4.html#Zaharias08,https://doi.org/10.4018/jthi.2008070101 +Nancy M. Chase,Effects of Email Utilization on Higher Education Professionals.,2011,7,IJTHI,4,db/journals/ijthi/ijthi7.html#ChaseC11,https://doi.org/10.4018/jthi.2011100103 +Gareth Peevers,Usability Study of Fingerprint and Palmvein Biometric Technologies at the ATM.,2013,9,IJTHI,1,db/journals/ijthi/ijthi9.html#PeeversWDJ13,https://doi.org/10.4018/jthi.2013010106 +Charlie C. Chen,Differential Impacts of Social Presence on the Behavior Modeling Approach.,2005,1,IJTHI,2,db/journals/ijthi/ijthi1.html#ChenOH05,https://doi.org/10.4018/jthi.2005040104 +Cynthia L. Corritore,Online Trust and Health Information Websites.,2012,8,IJTHI,4,db/journals/ijthi/ijthi8.html#CorritoreWKM12,https://doi.org/10.4018/jthi.2012100106 +Panayiotis Koutsabasis,Perceived Website Aesthetics by Users and Designers: Implications for Evaluation Practice.,2013,9,IJTHI,2,db/journals/ijthi/ijthi9.html#KoutsabasisI13,https://doi.org/10.4018/jthi.2013040103 +Ted (Tainyi) Luor,Minding the Gap Between First and Continued Usage of a Corporate E-Learning English-language Program.,2012,8,IJTHI,1,db/journals/ijthi/ijthi8.html#LuorLJY12,https://doi.org/10.4018/jthi.2012010104 +Ajax Persaud,Quality and Acceptance of Crowdsourced Translation of Web Content.,2017,13,IJTHI,1,db/journals/ijthi/ijthi13.html#PersaudO17,https://doi.org/10.4018/IJTHI.2017010106 +Sylvie Albert,Collaboration Challenges in Community Telecommunication Networks.,2007,3,IJTHI,2,db/journals/ijthi/ijthi3.html#AlbertL07,https://doi.org/10.4018/jthi.2007040102 +Swadesh Kumar Samanta,Automatic Language Translation: An Enhancement to the Mobile Messaging Services.,2011,7,IJTHI,1,db/journals/ijthi/ijthi7.html#SamantaWG11,https://doi.org/10.4018/jthi.2011010101 +Hao-Chiang Koong Lin,Influence of Cognitive Style and Cooperative Learning on Application of Augmented Reality to Natural Science Learning.,2015,11,IJTHI,4,db/journals/ijthi/ijthi11.html#LinSWT15,https://doi.org/10.4018/IJTHI.2015100103 +Yi-Fen Chen,Influence of Website Design on Consumer Emotion and Purchase Intention in Travel Websites.,2016,12,IJTHI,4,db/journals/ijthi/ijthi12.html#ChenW16,https://doi.org/10.4018/IJTHI.2016100102 +Chia-Ying Li,Understanding University Students' System Acceptance Behavior: The Roles of Personality Trait and Subjective Norms.,2016,12,IJTHI,3,db/journals/ijthi/ijthi12.html#Li16,https://doi.org/10.4018/IJTHI.2016070107 +Steffen Roth,Fashionable Functions: A Google Ngram View of Trends in Functional Differentiation (1800-2000).,2014,10,IJTHI,2,db/journals/ijthi/ijthi10.html#Roth14,https://doi.org/10.4018/ijthi.2014040103 +Peerayuth Charoensukmongkol,Contribution of Mindfulness to Individuals' Tendency to Believe and Share Social Media Content.,2016,12,IJTHI,3,db/journals/ijthi/ijthi12.html#Charoensukmongkol16,https://doi.org/10.4018/IJTHI.2016070104 +Tao Lin,Markov Chain Models for Menu Item Prediction.,2013,9,IJTHI,4,db/journals/ijthi/ijthi9.html#LinXMT13,https://doi.org/10.4018/ijthi.2013100105 +Petteri Repo,Inventing Use for a Novel Mobile Service.,2006,2,IJTHI,2,db/journals/ijthi/ijthi2.html#RepoHPT06,https://doi.org/10.4018/jthi.2006040103 +Susan E. George,Believe It or Not: Virtual Religion in the 21st Century.,2005,1,IJTHI,1,db/journals/ijthi/ijthi1.html#George05,https://doi.org/10.4018/jthi.2005010103 +Andrea Carugati,Development of E-Government Services For Cultural Heritage: Examining the Key Dimensions.,2007,3,IJTHI,2,db/journals/ijthi/ijthi3.html#AndreaE07,https://doi.org/10.4018/jthi.2007040104 +Osemeke Mosindi,An Exploratory Theoretical Framework for Understanding Information Behaviour.,2011,7,IJTHI,2,db/journals/ijthi/ijthi7.html#MosindiS11,https://doi.org/10.4018/jthi.2011040101 +Cécile Godé,Improving Decision Making in Extreme Situations: The Case of a Military Decision Support System.,2013,9,IJTHI,1,db/journals/ijthi/ijthi9.html#GodeL13,https://doi.org/10.4018/jthi.2013010101 +Mohsin Ikram,An Empirical Investigation of Smartphone Adoption in Pakistan.,2018,14,IJTHI,3,db/journals/ijthi/ijthi14.html#IkramKJ18,https://doi.org/10.4018/IJTHI.2018070101 +Jessica Lichy,Understanding the Culture of Young Internet Users in a Rapidly Changing Society.,2014,10,IJTHI,4,db/journals/ijthi/ijthi10.html#LichyK14,https://doi.org/10.4018/ijthi.2014100101 +Kai Yang,D-S Evidence Theory Based Trust Detection Scheme in Wireless Sensor Networks.,2016,12,IJTHI,2,db/journals/ijthi/ijthi12.html#YangLLW16,https://doi.org/10.4018/IJTHI.2016040104 +Mario Bourgault,Moderating Effect of Team Distributedness on Organizational Dimensions for Innovation Project Success.,2010,6,IJTHI,4,db/journals/ijthi/ijthi6.html#BourgaultDSD10,https://doi.org/10.4018/jthi.2010100102 +Sen-Chi Yu,Does Happiness in the Cyberspace Promote That in the Real-World?: Testing on Reciprocal Relationships Using Cross-Lagged Structural Equation Modeling.,2015,11,IJTHI,2,db/journals/ijthi/ijthi11.html#YuC15,https://doi.org/10.4018/ijthi.2015040102 +Anastasia Papazafeiropoulou,Interpretive Flexibility Along the Innovation Decision Process of the UK NHS Care Records Service (NCRS): Insights from a Local Implementation Case Study.,2007,3,IJTHI,2,db/journals/ijthi/ijthi3.html#PapazafeiropoulouG07,https://doi.org/10.4018/jthi.2007040101 +Sarah Spiekermann,The Desire for Privacy: Insights into the Views and Nature of the Early Adopters of Privacy Services.,2005,1,IJTHI,1,db/journals/ijthi/ijthi1.html#Spiekermann05,https://doi.org/10.4018/jthi.2005010104 +Abram L. J. Walton,Graduate Students' Perceptions of Privacy and Closed Circuit Television Systems in Public Settings.,2011,7,IJTHI,3,db/journals/ijthi/ijthi7.html#WaltonDS11,https://doi.org/10.4018/jthi.2011070104 +Reima Suomi,GSM-Based SMS Time Reservation System for Dental Care.,2007,3,IJTHI,3,db/journals/ijthi/ijthi3.html#SuomiSM07,https://doi.org/10.4018/jthi.2007070105 +Richard Diamond,Several Simple Shared Stable Decision Premises for Technochange.,2007,3,IJTHI,4,db/journals/ijthi/ijthi3.html#Diamond07,https://doi.org/10.4018/jthi.2007100105 +Claus Hohmann,Emotional Digitalization as Technology of the Postmodern: A Reflexive Examination from the View of the Industry.,2007,3,IJTHI,1,db/journals/ijthi/ijthi3.html#Hohmann07,https://doi.org/10.4018/jthi.2007010102 +A. Y. M. Atiquil Islam,Efficacy of the Technology Satisfaction Model (TSM): An Empirical Study.,2015,11,IJTHI,2,db/journals/ijthi/ijthi11.html#IslamLS15,https://doi.org/10.4018/ijthi.2015040103 +Luisa Domingues,The Relevance of Intellectual Capital in Shared Service Centres: An Exploratory Research on the Contribution of Three Models from Different Areas of Knowledge.,2018,14,IJTHI,2,db/journals/ijthi/ijthi14.html#DominguesPS18,https://doi.org/10.4018/IJTHI.2018040101 +Michail Tsikerdekis,Designing a Successful Collaborative Wiki: The Choice between Outcome Quality and Online Community Needs.,2017,13,IJTHI,2,db/journals/ijthi/ijthi13.html#Tsikerdekis17,https://doi.org/10.4018/IJTHI.2017040102 +Sylvaine Castellano,The Influence of Social Networks on E-Reputation: How Sportspersons Manage the Relationship with Their Online Community.,2014,10,IJTHI,4,db/journals/ijthi/ijthi10.html#CastellanoKCK14,https://doi.org/10.4018/ijthi.2014100105 +Fauzia Jabeen,Understanding the Technology Receptivity in Higher Education: Evidence From the UAE.,2018,14,IJTHI,3,db/journals/ijthi/ijthi14.html#JabeenKA18,https://doi.org/10.4018/IJTHI.2018070103 +Zhiming Wu,Explore the Use of Handwriting Information and Machine Learning Techniques in Evaluating Mental Workload.,2016,12,IJTHI,3,db/journals/ijthi/ijthi12.html#WuLT16,https://doi.org/10.4018/IJTHI.2016070102 +Gokhan Aydin,Effect of Demographics on Use Intention of Gamified Systems.,2018,14,IJTHI,1,db/journals/ijthi/ijthi14.html#Aydin18,https://doi.org/10.4018/IJTHI.2018010101 +Li-Ling Chao,The Development and Learning Effectiveness of a Teaching Module for the Algal Fuel Cell: A Renewable and Sustainable Battery.,2012,8,IJTHI,4,db/journals/ijthi/ijthi8.html#ChaoWCLLGW12,https://doi.org/10.4018/jthi.2012100101 +Shari R. Veil,Adoption Barriers in a High-Risk Agricultural Environment.,2010,6,IJTHI,2,db/journals/ijthi/ijthi6.html#Veil10a,https://doi.org/10.4018/jthi.2010040103 +Dick Stenmark,Organisational Creativity in Context: Learning from a Failing Attempt to Introduce IT Support for Creativity.,2005,1,IJTHI,4,db/journals/ijthi/ijthi1.html#Stenmark05,https://doi.org/10.4018/jthi.2005100105 +Vimala Balakrishnan,Hand Measurements and Gender Effect on Mobile Phone Messaging Satisfaction: A Study Based on Keypad Design Factors.,2008,4,IJTHI,4,db/journals/ijthi/ijthi4.html#BalakrishnanY08,https://doi.org/10.4018/jthi.2008100103 +Lars Göran Wallgren,IT Managers' Narratives on Subordinates' Motivation at Work: A Case Study.,2011,7,IJTHI,3,db/journals/ijthi/ijthi7.html#WallgrenLA11,https://doi.org/10.4018/jthi.2011070103 +Wong Ping-Wai,The Specification of POS Tagging of the Hong Kong University Cantonese Corpus.,2006,2,IJTHI,1,db/journals/ijthi/ijthi2.html#Ping-Wai06,https://doi.org/10.4018/jthi.2006010102 +Zaid I. Al-Shqairat,The Role of Partnership in E-Government Readiness: The Knowledge Stations (KSs) Initiative in Jordan.,2011,7,IJTHI,3,db/journals/ijthi/ijthi7.html#Al-ShqairatA11,https://doi.org/10.4018/jthi.2011070102 +Bendik Bygstad,Managing Socio-Technical Integration in Iterative Information System Development Projects.,2006,2,IJTHI,4,db/journals/ijthi/ijthi2.html#Bygstad06,https://doi.org/10.4018/jthi.2006100101 +Kristina Lauche,Overcoming Remoteness: Human Factors Assessment of Real-Time Monitoring and Supporting in Drilling Operations.,2008,4,IJTHI,1,db/journals/ijthi/ijthi4.html#Lauche08,https://doi.org/10.4018/jthi.2008010106 +Mei-Shiu Chiu,Gaps Between Valuing and Purchasing Green-Technology Products: Product and Gender Differences.,2012,8,IJTHI,3,db/journals/ijthi/ijthi8.html#Chiu12,https://doi.org/10.4018/jthi.2012070106 +Abdou Illia,The Moderating Effect of Motivation to Comply and Perceived Critical Mass in Smartphones' Adoption.,2018,14,IJTHI,3,db/journals/ijthi/ijthi14.html#IlliaLLA18,https://doi.org/10.4018/IJTHI.2018070102 +Jessica Lichy,Understanding How Students Interact With Technology For Knowledge-Sharing: The Emergence of a New 'Social' Divide in France.,2016,12,IJTHI,1,db/journals/ijthi/ijthi12.html#LichyK16,https://doi.org/10.4018/IJTHI.2016010106 +Thomas Stenger,Social Media and Online Reputation Management as Practice: First Steps Towards Social CRM?,2014,10,IJTHI,4,db/journals/ijthi/ijthi10.html#Stenger14,https://doi.org/10.4018/ijthi.2014100104 +Michael S. Geary,Smart Phone Keyboard Layout Usability.,2018,14,IJTHI,4,db/journals/ijthi/ijthi14.html#GearyL18,https://doi.org/10.4018/IJTHI.2018100107 +Yi-Lin Jan,Development of an Evaluation Instrument for Green Building Literacy among College Students in Taiwan.,2012,8,IJTHI,3,db/journals/ijthi/ijthi8.html#JanLSWHS12,https://doi.org/10.4018/jthi.2012070104 +Pankaj Kamthan,A Framework for Integrating the Social Web Environment in Pattern Engineering.,2009,5,IJTHI,2,db/journals/ijthi/ijthi5.html#Kamthan09,https://doi.org/10.4018/jthi.2009092303 +Jordi Vallverdú,Fake Empathy and Human-Robot Interaction (HRI): A Preliminary Study.,2018,14,IJTHI,1,db/journals/ijthi/ijthi14.html#VallverduNOML18,https://doi.org/10.4018/IJTHI.2018010103 +Shang Gao 0002,An Empirical Study of the Adoption of an Indoor Location-Based Service: Finding Reading Rooms.,2017,13,IJTHI,2,db/journals/ijthi/ijthi13.html#GaoKTT17,https://doi.org/10.4018/IJTHI.2017040105 +Xiuguang Li,An Exact and Efficient Privacy-Preserving Spatiotemporal Matching in Mobile Social Networks.,2016,12,IJTHI,2,db/journals/ijthi/ijthi12.html#LiHNYL16,https://doi.org/10.4018/IJTHI.2016040103 +Anis Khedhaouria,Perceived Enjoyment and the Effect of Gender on Continuance Intention for Mobile Internet Services.,2014,10,IJTHI,2,db/journals/ijthi/ijthi10.html#KhedhaouriaB14,https://doi.org/10.4018/ijthi.2014040101 +Han-Jen Niu,Shopping in Cyberspace: Adolescent Technology Acceptance Attitude with Decision-Making Styles.,2014,10,IJTHI,3,db/journals/ijthi/ijthi10.html#Niu14,https://doi.org/10.4018/ijthi.2014070101 +Michael S. Wogalter,Trusting the Internet: Cues Affecting Perceived Credibility.,2008,4,IJTHI,1,db/journals/ijthi/ijthi4.html#WogalterM08,https://doi.org/10.4018/jthi.2008010105 +Seppo Vayrnen,Finish Occupational Safety Card System: Special Training Intervention and its Preliminary Effects.,2008,4,IJTHI,1,db/journals/ijthi/ijthi4.html#VayrnenHKL08,https://doi.org/10.4018/jthi.2008010102 +Debra Howcroft,An Ethnographic Study of Is Investment Appraisal.,2007,3,IJTHI,3,db/journals/ijthi/ijthi3.html#HowcroftM07,https://doi.org/10.4018/jthi.2007070106 +Ming-Ying Hsu,Simulation-Aided Optimal Microfluidic Sorting for Monodispersed Microparticles.,2012,8,IJTHI,3,db/journals/ijthi/ijthi8.html#HsuYWL12,https://doi.org/10.4018/jthi.2012070102 +Ryan Lange,Grand Theft Auto(mation): Travel Mode Habits and Video Games.,2015,11,IJTHI,3,db/journals/ijthi/ijthi11.html#LangeBBL15,https://doi.org/10.4018/ijthi.2015070103 +Barbara Jones,Tacit Knowledge in Rapidly Evolving Organisational Environments.,2007,3,IJTHI,1,db/journals/ijthi/ijthi3.html#JonesFM07,https://doi.org/10.4018/jthi.2007010104 +Rui Chen 0003,Adaptive Windows Layout Based on Evolutionary Multi-Objective Optimization.,2013,9,IJTHI,3,db/journals/ijthi/ijthi9.html#ChenXLC13,https://doi.org/10.4018/jthi.2013070105 +Jih-Hsuan Lin,The Contributions of Perceived Graphic and Enactive Realism to Enjoyment and Engagement in Active Video Games.,2015,11,IJTHI,3,db/journals/ijthi/ijthi11.html#LinP15,https://doi.org/10.4018/ijthi.2015070101 +Pradeep Waychal,Universality of Egoless Behavior of Software Engineering Students.,2018,14,IJTHI,1,db/journals/ijthi/ijthi14.html#WaychalC18,https://doi.org/10.4018/IJTHI.2018010106 +Frank G. Goethals,Exploring the Choice for Default Systems.,2017,13,IJTHI,1,db/journals/ijthi/ijthi13.html#Goethals17,https://doi.org/10.4018/IJTHI.2017010102 +A. Y. M. Atiquil Islam,Development and Validation of the Technology Adoption and Gratification (TAG) Model in Higher Education: A Cross-Cultural Study Between Malaysia and China.,2016,12,IJTHI,3,db/journals/ijthi/ijthi12.html#Islam16,https://doi.org/10.4018/IJTHI.2016070106 +José Bessa,Information Management Through a Multidimensional Information Systems Architecture: A University of Trás-os-Montes e Alto Douro Case Study.,2017,13,IJTHI,4,db/journals/ijthi/ijthi13.html#BessaBCMG17,https://doi.org/10.4018/IJTHI.2017100101 +Hua-Yueh Liu,From Cold War Island to Low Carbon Island: A Study of Kinmen Island.,2012,8,IJTHI,4,db/journals/ijthi/ijthi8.html#Liu12,https://doi.org/10.4018/jthi.2012100104 +Garry L. White,Relationship Between Information Privacy Concerns and Computer Self-Efficacy.,2008,4,IJTHI,2,db/journals/ijthi/ijthi4.html#WhiteSCM08,https://doi.org/10.4018/jthi.2008040104 +Tao Zhou 0007,An Empirical Examination of Users' Switch from Online Payment to Mobile Payment.,2015,11,IJTHI,1,db/journals/ijthi/ijthi11.html#Zhou15,https://doi.org/10.4018/ijthi.2015010104 +Liliana Vale Costa,Factors Influencing the Adoption of Video Games in Late Adulthood: A Survey of Older Adult Gamers.,2016,12,IJTHI,1,db/journals/ijthi/ijthi12.html#CostaV16,https://doi.org/10.4018/IJTHI.2016010103 +Judy Chuan-Chuan Lin,A Multi-Facet Analysis of Factors Affecting the Adoption of Multimedia Messaging Service (MMS).,2009,5,IJTHI,4,db/journals/ijthi/ijthi5.html#LinH09,https://doi.org/10.4018/jthi.2009062502 +Don Gotterbarn,Developing Software in Bicultural Context: The Role of a SoDIS Inspection.,2006,2,IJTHI,2,db/journals/ijthi/ijthi2.html#Gotterbarn06,https://doi.org/10.4018/jthi.2006040101 +Jialin Ma,A Message Topic Model for Multi-Grain SMS Spam Filtering.,2016,12,IJTHI,2,db/journals/ijthi/ijthi12.html#MaZWY16,https://doi.org/10.4018/IJTHI.2016040107 +Kirsty Williamson,To Choose or Not to Choose: Exploring Australians' Views about Internet Banking.,2006,2,IJTHI,4,db/journals/ijthi/ijthi2.html#WilliamsonLSS06,https://doi.org/10.4018/jthi.2006100102 +Sen-Chi Yu,Happiness or Addiction: An Example of Taiwanese College Students' Use of Facebook.,2015,11,IJTHI,4,db/journals/ijthi/ijthi11.html#Yu15,https://doi.org/10.4018/IJTHI.2015100102 +Omar Salameh Al-Hujran,Factors Influencing Citizen Adoption of E-Government in Developing Countries: The Case of Jordan.,2013,9,IJTHI,2,db/journals/ijthi/ijthi9.html#HujranAA13,https://doi.org/10.4018/jthi.2013040101 +Bangaly Kaba,An Empirical Investigation of External Factors Influencing Mobile Technology Use in Canada: A Preliminary Study.,2012,8,IJTHI,2,db/journals/ijthi/ijthi8.html#KabaO12,https://doi.org/10.4018/jthi.2012040101 +Ramón Tirado Morueta,B-Learning at Universities in Andalusia (Spain): From Traditional to Student-Centred Learning.,2012,8,IJTHI,2,db/journals/ijthi/ijthi8.html#MoruetaGG12,https://doi.org/10.4018/jthi.2012040104 +Ned Kock,Incorporating Simulated Animal Attacks in Human Technology Interaction Interfaces: The Predictive Power of Biosemiotics and Evolutionary Psychology.,2008,4,IJTHI,4,db/journals/ijthi/ijthi4.html#Kock08,https://doi.org/10.4018/jthi.2008100104 +Manel Guechtouli,E-HRM's Impact on an Environmental Scanning Process: How Can Technology Support the Selection of Information?,2010,6,IJTHI,3,db/journals/ijthi/ijthi6.html#Guechtouli10,https://doi.org/10.4018/jthi.2010070104 +Arminda Pata,Applying Metaheuristics to Minimize Work-Related Musculoskeletal Disorders.,2018,14,IJTHI,2,db/journals/ijthi/ijthi14.html#PataM18,https://doi.org/10.4018/IJTHI.2018040102 +Malte Geib,Toward Improved Community-Supporting Systems Design: A Study of Professional Community Activity.,2005,1,IJTHI,4,db/journals/ijthi/ijthi1.html#GeibBKB05,https://doi.org/10.4018/jthi.2005100102 +Alenka Zabukovec,The Impact of Information Visualisation on the Quality of Information in Business Decision-Making.,2015,11,IJTHI,2,db/journals/ijthi/ijthi11.html#ZabukovecJ15,https://doi.org/10.4018/ijthi.2015040104 +Damian Okaibedi Eke,ICT Integration in Nigeria: The Socio-Cultural Constraints.,2011,7,IJTHI,2,db/journals/ijthi/ijthi7.html#Eke11,https://doi.org/10.4018/jthi.2011040103 +Moutusy Maity,The Role of Information Quality of a Website: Examining Consumer Information Search through the IS Success Model.,2014,10,IJTHI,1,db/journals/ijthi/ijthi10.html#Maity14,https://doi.org/10.4018/ijthi.2014010105 +Anita Greenhill,"Exploring ""Events"" as an Information Systems Research Methodology.",2007,3,IJTHI,1,db/journals/ijthi/ijthi3.html#GreenhillF07,https://doi.org/10.4018/jthi.2007010101 +George E. Heilman,Validating the End-User Computing Satisfaction Survey Instrument in Mexico.,2006,2,IJTHI,4,db/journals/ijthi/ijthi2.html#HeilmanB06,https://doi.org/10.4018/jthi.2006100105 +Wei-Tsong Lee,Using the Kalman Filter for Auto Bit-rate H.264 Streaming Based on Human Interaction.,2013,9,IJTHI,4,db/journals/ijthi/ijthi9.html#LeeWCCS13,https://doi.org/10.4018/ijthi.2013100104 +Masa Inakage,Designing Ubiquitous Content for Daily Lifestyle.,2009,5,IJTHI,1,db/journals/ijthi/ijthi5.html#InakageUTK09,https://doi.org/10.4018/jthi.2009010103 +John Weckert,Giving and Taking Offence in a Global Context.,2007,3,IJTHI,3,db/journals/ijthi/ijthi3.html#Weckert07,https://doi.org/10.4018/jthi.2007070103 +Tiko Iyamu,The Interplay Between Human and Structure in IT Strategy.,2014,10,IJTHI,1,db/journals/ijthi/ijthi10.html#Iyamu14,https://doi.org/10.4018/ijthi.2014010106 +Tsang-Hsiung Lee,Enhance Students' Computing Skills via Web-Mediated Self-Regulated Learning with Feedback in Blended Environment.,2010,6,IJTHI,1,db/journals/ijthi/ijthi6.html#LeeST10,https://doi.org/10.4018/jthi.2010091702 +Chin-Lung Hsu,Exploring the Player Flow Experience in E-Game Playing.,2010,6,IJTHI,2,db/journals/ijthi/ijthi6.html#Hsu10,https://doi.org/10.4018/jthi.2010040104 +Sajjad M. Jasimuddin,Face-to-Face Interface in Software Development: Empirical Evidence from a Geographically Dispersed High-Tech Laboratory.,2014,10,IJTHI,1,db/journals/ijthi/ijthi10.html#Jasimuddin14,https://doi.org/10.4018/ijthi.2014010104 +Jia Shen,An Examination of Factors Associated with User Acceptance of Social Shopping Websites.,2011,7,IJTHI,1,db/journals/ijthi/ijthi7.html#ShenE11,https://doi.org/10.4018/jthi.2011010102 +Olli Pitkänen,Humans and Emerging RFID Systems: Evaluating Data Protection Law on the User Scenario Basis.,2009,5,IJTHI,2,db/journals/ijthi/ijthi5.html#PitkanenN09,https://doi.org/10.4018/jthi.2009040105 +John C. McCarthy,A Practitioner-Centered Assessment of a User-Experience Framework.,2005,1,IJTHI,2,db/journals/ijthi/ijthi1.html#McCarthyWM05,https://doi.org/10.4018/jthi.2005040101 +Florian Fischer,Local Search Applications and Urban Public Space: Interfacing Networked Individualism and Tangible Urbanism.,2014,10,IJTHI,1,db/journals/ijthi/ijthi10.html#Fischer14,https://doi.org/10.4018/ijthi.2014010103 +Yonggao Yang,Use Mobile Devices to Wirelessly Operate Computers.,2013,9,IJTHI,1,db/journals/ijthi/ijthi9.html#YangWL13,https://doi.org/10.4018/jthi.2013010105 +Per Arne Godejord,Getting Involved: Perspectives on the Use of True Projects as Tools for Developing Ethical Thinking in Computer Science Students.,2008,4,IJTHI,2,db/journals/ijthi/ijthi4.html#Godejord08,https://doi.org/10.4018/jthi.2008040102 +John R. Drake,Searching for Alternatives: Does Your Disposition Matter?,2013,9,IJTHI,1,db/journals/ijthi/ijthi9.html#DrakeB13,https://doi.org/10.4018/jthi.2013010102 +Ishraga Khattab,Mobile Phone Use Across Cultures: A Comparison Between the United Kingdom and Sudan.,2008,4,IJTHI,2,db/journals/ijthi/ijthi4.html#KhattabL08,https://doi.org/10.4018/jthi.2008040103 +Tao Lin,Automatic Cognitive Load Classification Using High-Frequency Interaction Events: An Exploratory Study.,2013,9,IJTHI,3,db/journals/ijthi/ijthi9.html#LinLWT13,https://doi.org/10.4018/jthi.2013070106 +Linwu Gu,The Influence of Information Control upon On-line Shopping Behavior.,2011,7,IJTHI,1,db/journals/ijthi/ijthi7.html#GuAWW11,https://doi.org/10.4018/jthi.2011010104 +Niousha Shahidi,Assessment of A Mobile Educational Coaching App: Exploring Adoption Patterns and Barriers in France.,2018,14,IJTHI,1,db/journals/ijthi/ijthi14.html#ShahidiTC18,https://doi.org/10.4018/IJTHI.2018010102 +Ingerid Rødseth,A Motive Analysis as a First Step in Designing Technology for the use of Intuition in Criminal Investigation.,2009,5,IJTHI,1,db/journals/ijthi/ijthi5.html#Rodseth09,https://doi.org/10.4018/jthi.2009010102 +Stephanie Moser,Public Representation of Ubiquitous ICT Applications in the Outpatient Health Sector.,2011,7,IJTHI,4,db/journals/ijthi/ijthi7.html#MoserBS11,https://doi.org/10.4018/jthi.2011100105 +Hilkka Poutanen,The Many Sides of Human Resource Information Systems.,2010,6,IJTHI,4,db/journals/ijthi/ijthi6.html#PoutanenP10,https://doi.org/10.4018/jthi.2010100101 +Alan J. Reid,A Case Study in Smartphone Usage and Gratification in the Age of Narcissism.,2017,13,IJTHI,2,db/journals/ijthi/ijthi13.html#ReidT17,https://doi.org/10.4018/IJTHI.2017040103 +Shun-Mei Wang,Sustainable Campus Project: Potential for Energy Conservation and Carbon Reduction Education in Taiwan.,2012,8,IJTHI,3,db/journals/ijthi/ijthi8.html#WangKC12,https://doi.org/10.4018/jthi.2012070103 +Wei Liu 0009,Internet-Enabled User Interfaces for Distance Learning.,2009,5,IJTHI,1,db/journals/ijthi/ijthi5.html#LiuTPCCLTNQV09,https://doi.org/10.4018/jthi.2009010105 +Jan Gulliksen,User-Centred Systems Design as Organizational Change: A Longitudinal Action Research Project to Improve Usability and the Computerized Work Environment in a Public Authority.,2009,5,IJTHI,3,db/journals/ijthi/ijthi5.html#GulliksenCSEK09,https://doi.org/10.4018/jthi.2009070102 +Karim Mezghani,Factors Explaining IS Managers Attitudes toward Cloud Computing Adoption.,2016,12,IJTHI,1,db/journals/ijthi/ijthi12.html#MezghaniA16,https://doi.org/10.4018/IJTHI.2016010101 +Pertti Saariluoma,Appraisal and Mental Contents in Human-Technology Interaction.,2015,11,IJTHI,2,db/journals/ijthi/ijthi11.html#SaariluomaJ15,https://doi.org/10.4018/ijthi.2015040101 +Etienne Denoual,A Method to Quantify Corpus Similarity and its Application to Quantifying the Degree of Literality in a Document.,2006,2,IJTHI,1,db/journals/ijthi/ijthi2.html#Denoual06,https://doi.org/10.4018/jthi.2006010104 +Ivo Pedro Gonzalez Junior,A Proposal for UTAUT Model Extension in the Virtual Learning Environments use as Presential Learning Support Context.,2017,13,IJTHI,3,db/journals/ijthi/ijthi13.html#JuniorS17,https://doi.org/10.4018/IJTHI.2017070103 +Jan Erik Vinnem,Human-Technical Interface of Collision Risk Under Dynamic Conditions: An Exploratory Learning Case from the North Sea.,2008,4,IJTHI,1,db/journals/ijthi/ijthi4.html#VinnemL08,https://doi.org/10.4018/jthi.2008010103 +Andrew McDonald 0002,A Comparative Case Study of Indonesian and UK Organisational Culture Differences in IS Project Management.,2011,7,IJTHI,2,db/journals/ijthi/ijthi7.html#McDonaldH11,https://doi.org/10.4018/jthi.2011040104 +Li-Jen Wang,English Teachers' Practice and Perspectives on Using Educational Computer Games in EIL Context.,2016,12,IJTHI,3,db/journals/ijthi/ijthi12.html#WangWH16,https://doi.org/10.4018/IJTHI.2016070103 +Thomas B. Cavanagh,The Work of Art in the Age of Mechanical Production.,2008,4,IJTHI,3,db/journals/ijthi/ijthi4.html#Cavanagh08,https://doi.org/10.4018/jthi.2008070102 +Eitel J. M. Lauría,Exploring the Behavioral Dimension of Client/Server Technology Implementation: An Empirical Investigation.,2006,2,IJTHI,3,db/journals/ijthi/ijthi2.html#Lauria06,https://doi.org/10.4018/jthi.2006070104 +Laurence Brooks,Organisations and Information Systems: Investigating Their Dynamic Complexities Using Repertory Grids and Cognitive Mapping.,2005,1,IJTHI,4,db/journals/ijthi/ijthi1.html#BrooksDL05,https://doi.org/10.4018/jthi.2005100103 +Hong-Mei Huang,Design and Analysis of the Secure Scheme for Quantum Positioning based on Entangled Photon Pair.,2016,12,IJTHI,2,db/journals/ijthi/ijthi12.html#HuangX16,https://doi.org/10.4018/IJTHI.2016040102 +Norazah Mohd Suki,Consumer Intention to Use Anti-Spyware Software: An Application of Structural Equation Modeling.,2014,10,IJTHI,3,db/journals/ijthi/ijthi10.html#SukiRNS14,https://doi.org/10.4018/ijthi.2014070102 +Gary Douglas,Remote Channel Customer Contact Strategies for Complaint Update Messages.,2012,8,IJTHI,2,db/journals/ijthi/ijthi8.html#DouglasMJ12,https://doi.org/10.4018/jthi.2012040103 +Hea-Jin Lee,Facilitating Deep Learning in a Learning Community.,2012,8,IJTHI,1,db/journals/ijthi/ijthi8.html#LeeB12,https://doi.org/10.4018/jthi.2012010101 +Ludivine Martin,IT Outsourcing and Firm Characteristics: Empirical Evidence from Survey Data.,2014,10,IJTHI,1,db/journals/ijthi/ijthi10.html#MartinP14,https://doi.org/10.4018/ijthi.2014010101 +Wen-Tien Tsai,An Investigation on Undergraduate's Bio-Energy Engineering Education Program at the Taiwan Technical University.,2012,8,IJTHI,3,db/journals/ijthi/ijthi8.html#Tsai12,https://doi.org/10.4018/jthi.2012070105 +Guohong Fu,Chinese POS Disambiguation and Unknown Word Guessing with Lexicalized HMMs.,2006,2,IJTHI,1,db/journals/ijthi/ijthi2.html#FuL06,https://doi.org/10.4018/jthi.2006010103 +Elfi Furtmüller,Sustainable e-Recruiting Portals: How to Motivate Applicants to Stay Connected throughout their Careers?,2010,6,IJTHI,3,db/journals/ijthi/ijthi6.html#FurtmullerWD10,https://doi.org/10.4018/jthi.2010070101 +Robert Hurling,The Benefits of (Automated) Dialogue.,2009,5,IJTHI,4,db/journals/ijthi/ijthi5.html#HurlingBR09,https://doi.org/10.4018/jthi.2009062504 +Don Flournoy,The Case for Open Access Networks.,2009,5,IJTHI,1,db/journals/ijthi/ijthi5.html#FlournoyLA09,https://doi.org/10.4018/jthi.2009010101 +Mohammad A. Awwal,Influence of Age and Genders on the Relationship between Computer Self-Efficacy and Information Privacy Concerns.,2012,8,IJTHI,1,db/journals/ijthi/ijthi8.html#Awwal12,https://doi.org/10.4018/jthi.2012010102 +Vincent Dutot,Impact of Cross-Channel Strategy on Brand's Commitment: A Case Study in an Affordable Luxury Industry.,2016,12,IJTHI,4,db/journals/ijthi/ijthi12.html#Dutot16,https://doi.org/10.4018/IJTHI.2016100105 +Marcus Foth,Analyzing the Factors Influencing the Successful Design and Uptake of Interactive Systems to Support Social Networks in Urban Neighborhoods.,2006,2,IJTHI,2,db/journals/ijthi/ijthi2.html#Foth06,https://doi.org/10.4018/jthi.2006040104 +Tao Lin,Exploring the Effects of Display Characteristics on Presence and Emotional Responses of Game Players.,2013,9,IJTHI,1,db/journals/ijthi/ijthi9.html#LinWTW13,https://doi.org/10.4018/jthi.2013010104 +Eun Kyung Park,Social Responses to Conversational TV VUI: Apology and Voice.,2015,11,IJTHI,1,db/journals/ijthi/ijthi11.html#ParkLS15,https://doi.org/10.4018/ijthi.2015010102 +Yann Truong,Antecedents of Consumer Acceptance of Mobile Television Advertising.,2011,7,IJTHI,3,db/journals/ijthi/ijthi7.html#Truong11,https://doi.org/10.4018/jthi.2011070105 +Winfred Yaokumah,Inter-Organizational Study of Access Control Security Measures.,2018,14,IJTHI,1,db/journals/ijthi/ijthi14.html#YaokumahO18,https://doi.org/10.4018/IJTHI.2018010104 +Nabila Jawadi,E-Leadership and Trust Management: Exploring the Moderating Effects of Team Virtuality.,2013,9,IJTHI,3,db/journals/ijthi/ijthi9.html#Jawadi13,https://doi.org/10.4018/jthi.2013070102 +Célio Gonçalo Cardoso Marques,Using Mobile Technologies in Education: A New Pedagogical Approach to Promote Reading Literacy.,2017,13,IJTHI,4,db/journals/ijthi/ijthi13.html#MarquesMFM17,https://doi.org/10.4018/IJTHI.2017100106 +Anan Alssbaiheen,m-Government Adoption in Saudi Arabia: Challenges and Opportunities.,2015,11,IJTHI,3,db/journals/ijthi/ijthi11.html#AlssbaiheenL15,https://doi.org/10.4018/ijthi.2015070104 +Yi-Fen Chen,An Empirical Study of the Factors Affecting Mobile Shopping in Taiwan.,2014,10,IJTHI,1,db/journals/ijthi/ijthi10.html#ChenL14,https://doi.org/10.4018/ijthi.2014010102 +Pekka Ketola,On User Experience Measurement Needs: Case Nokia.,2009,5,IJTHI,3,db/journals/ijthi/ijthi5.html#KetolaR09,https://doi.org/10.4018/jthi.2009070104 +Lynette Kvasny,Giving Voice to Feminist Projects in MIS Research.,2005,1,IJTHI,1,db/journals/ijthi/ijthi1.html#KvasnyGT05,https://doi.org/10.4018/jthi.2005010101 +Ladislav Kunc,Avatar and Dialog Turn-Yielding Phenomena.,2013,9,IJTHI,2,db/journals/ijthi/ijthi9.html#KuncMS13,https://doi.org/10.4018/jthi.2013040105 +Anabela Mesquita,Human-Information Interaction and Technical Communication: Concepts and Frameworks.,2013,9,IJTHI,1,db/journals/ijthi/ijthi9.html#Mesquita13,https://doi.org/10.4018/jthi.2013010107 +Lars Göran Wallgren,A Two-Wave Study of the Impact of Job Characteristics and Motivators on Perceived Stress among Information Technology (IT) Consultants.,2012,8,IJTHI,4,db/journals/ijthi/ijthi8.html#WallgrenH12,https://doi.org/10.4018/jthi.2012100105 +Judith Partouche-Sebban,Online Interactions as a Terror Management Mechanism: How Death Anxiety Affects Facebook Use.,2016,12,IJTHI,4,db/journals/ijthi/ijthi12.html#Partouche-Sebban16,https://doi.org/10.4018/IJTHI.2016100103 +Hein Pieterse,Guidelines for Error Message Design.,2018,14,IJTHI,1,db/journals/ijthi/ijthi14.html#PieterseG18,https://doi.org/10.4018/IJTHI.2018010105 +Fong-Hao Liu,High Performance Reversible Data Hiding for Mobile Applications and Human Interaction.,2013,9,IJTHI,4,db/journals/ijthi/ijthi9.html#LiuLSLL13,https://doi.org/10.4018/ijthi.2013100103 +Norazah Mohd Suki,Modelling Factors Influencing Early Adopters' Purchase Intention Towards Online Music.,2011,7,IJTHI,4,db/journals/ijthi/ijthi7.html#Suki11,https://doi.org/10.4018/jthi.2011100104 +Neena Sinha,The Role of Favoring and Inhibiting Factors in Developing Attitude towards Mobile Application based Agricultural Extension Services: A Structural Relationship.,2018,14,IJTHI,4,db/journals/ijthi/ijthi14.html#SinhaV18,https://doi.org/10.4018/IJTHI.2018100104 +Anne Marie Kanstrup,User-Driven Innovation as Mutual but Asymmetrical Learning.,2009,5,IJTHI,3,db/journals/ijthi/ijthi5.html#KanstrupC09,https://doi.org/10.4018/jthi.2009070101 +Andry Rakotonirainy,In-Vehicle Avatars to Elicit Social Response and Change Driving Behaviour.,2009,5,IJTHI,4,db/journals/ijthi/ijthi5.html#RakotonirainyFH09,https://doi.org/10.4018/jthi.2009062505 +Minhong Wang,Enhancing Interaction with Dynamic Environments: An Adaptive Approach to Process Management.,2006,2,IJTHI,4,db/journals/ijthi/ijthi2.html#WangW06,https://doi.org/10.4018/jthi.2006100103 +Marcus Bengtsson,Supporting Implementation of Condition Based Maintenance: Highlighting the Interplay between Technical Constituents and Human and Organizational Factors.,2008,4,IJTHI,1,db/journals/ijthi/ijthi4.html#Bengtsson08,https://doi.org/10.4018/jthi.2008010104 +Alistair Mutch,"Concerns with ""Mutual Constitution"": A Critical Realist Commentary.",2005,1,IJTHI,3,db/journals/ijthi/ijthi1.html#Mutch05,https://doi.org/10.4018/jthi.2005070105 +Gareth Peevers,A Usability Comparison of SMS and IVR as Digital Banking Channels.,2011,7,IJTHI,4,db/journals/ijthi/ijthi7.html#PeeversDJM11,https://doi.org/10.4018/jthi.2011100101 +Danae V. Holmes,Alternative Review Screen Design for Electronic Voting Systems.,2017,13,IJTHI,1,db/journals/ijthi/ijthi13.html#HolmesK17,https://doi.org/10.4018/IJTHI.2017010105 +Christine Sarah Fidler,Barriers to e-Government Implementation in Jordan: The Role of Wasta.,2011,7,IJTHI,2,db/journals/ijthi/ijthi7.html#FidlerKR11,https://doi.org/10.4018/jthi.2011040102 +Tao Zhou 0007,The Effects of Network Externality and Flow Experience on Mobile SNS Continuance.,2017,13,IJTHI,2,db/journals/ijthi/ijthi13.html#Zhou17,https://doi.org/10.4018/IJTHI.2017040104 +José Esteves,Monitoring User Involvement and Participation in ERP Projects.,2005,1,IJTHI,4,db/journals/ijthi/ijthi1.html#EstevesPC05,https://doi.org/10.4018/jthi.2005100101 +François-Xavier de Vaujany,Modeling Sociotechnical Change in IS with a Quantitative Longitudinal Approach: The PPR Method.,2007,3,IJTHI,2,db/journals/ijthi/ijthi3.html#Vaujany07,https://doi.org/10.4018/jthi.2007040105 +Savdeep Vasudeva,Impact of E-Core Service Quality Dimensions on Perceived Value of M-Banking in Case of Three Socio-Economic Variables.,2017,13,IJTHI,1,db/journals/ijthi/ijthi13.html#VasudevaS17,https://doi.org/10.4018/IJTHI.2017010101 +Saifeddin Alimamy,The Role of Augmented Reality in the Interactivity of Co-Creation: A Critical Review.,2018,14,IJTHI,3,db/journals/ijthi/ijthi14.html#AlimamyDG18,https://doi.org/10.4018/IJTHI.2018070106 +Ming Lin,Automated Video Segmentation for Lecture Videos: A Linguistics-Based Approach.,2005,1,IJTHI,2,db/journals/ijthi/ijthi1.html#LinCCN05,https://doi.org/10.4018/jthi.2005040102 +Fernando Moreira,Teaching and Learning Modelling and Specification Based on Mobile Devices and Cloud: A Case Study.,2017,13,IJTHI,4,db/journals/ijthi/ijthi13.html#MoreiraF17,https://doi.org/10.4018/IJTHI.2017100103 +Chantal Fuhrer,Relations Between Social Capital and Use of ICT: A Social Network Analysis Approach.,2012,8,IJTHI,2,db/journals/ijthi/ijthi8.html#FuhrerC12,https://doi.org/10.4018/jthi.2012040102 +Alison Adam,Trusting Computers Through Trusting Humans: Software Verification in a Safety-Critical Information System.,2007,3,IJTHI,4,db/journals/ijthi/ijthi3.html#AdamS07,https://doi.org/10.4018/jthi.2007100101 +Stéphanie Gauttier,Exploring the Similarities Between Users and Non-Users of Consumer Mobile Internet Services: Towards a Porosity Model of Technology Acceptance.,2018,14,IJTHI,3,db/journals/ijthi/ijthi14.html#GauttierG18,https://doi.org/10.4018/IJTHI.2018070105 +Jamie Murphy,Student Perceptions and Adoption of University Smart Card Systems.,2011,7,IJTHI,3,db/journals/ijthi/ijthi7.html#MurphyLS11,https://doi.org/10.4018/jthi.2011070101 +Régis Meissonierm,Toward an Enacted Approach to Understanding OSS Developer's Motivations.,2012,8,IJTHI,1,db/journals/ijthi/ijthi8.html#MeissoniermBAB12,https://doi.org/10.4018/jthi.2012010103 +Shari R. Veil,Adoption Barriers in a High-Risk Agricultural Environment.,2010,6,IJTHI,1,db/journals/ijthi/ijthi6.html#Veil10,http://www.igi-global.com/Bookstore/Article.aspx?TitleId=39015 +Jean-Loup Richet,From Young Hackers to Crackers.,2013,9,IJTHI,3,db/journals/ijthi/ijthi9.html#Richet13,https://doi.org/10.4018/jthi.2013070104 +Hazel Beadle,The Significance of Trust to the Adoption of E-Working Practices Within Local Government.,2018,14,IJTHI,4,db/journals/ijthi/ijthi14.html#Beadle18,https://doi.org/10.4018/IJTHI.2018100105 +Alysson Bolognesi Prado,Using OLAP Tools for e-HRM: A Case Study.,2010,6,IJTHI,4,db/journals/ijthi/ijthi6.html#PradoFS10,https://doi.org/10.4018/jthi.2010100104 +Panayiotis Koutsabasis,Perceived Website Aesthetics by Users and Designers: Implications for Evaluation Practice.,2014,10,IJTHI,2,db/journals/ijthi/ijthi10.html#KoutsabasisI14,https://doi.org/10.4018/ijthi.2014040102 +Wafa M'Sallem,Resistance to Internet Banking Adoption in Tunisia: A Grounded Theory Approach.,2014,10,IJTHI,3,db/journals/ijthi/ijthi10.html#MSallemM14,https://doi.org/10.4018/ijthi.2014070103 +Silvia Cacho-Elizondo,Intention to Adopt a Text Message-based Mobile Coaching Service to Help Stop Smoking: Which Explanatory Variables?,2013,9,IJTHI,4,db/journals/ijthi/ijthi9.html#Cacho-ElizondoST13,https://doi.org/10.4018/ijthi.2013100101 +Gundars Kaupins,Legal and Ethical Implications of Employee Location Monitoring.,2006,2,IJTHI,3,db/journals/ijthi/ijthi2.html#KaupinsM06,https://doi.org/10.4018/jthi.2006070102 +Isidro Navarro,Virtual Reality Using Smart-Devices in Educational Frameworks: Case Study: Museum Casa Batlló.,2017,13,IJTHI,4,db/journals/ijthi/ijthi13.html#NavarroRFGF17,https://doi.org/10.4018/IJTHI.2017100104 +Bettina Eick,The isomorphism problem for torsion free nilpotent groups of Hirsch length at most 5.,2017,9,Groups Complexity Cryptology,1,db/journals/gcc/gcc9.html#EickE17,https://doi.org/10.1515/gcc-2017-0004 +Jack O. Button,Free by cyclic groups and linear groups with restricted unipotent elements.,2017,9,Groups Complexity Cryptology,2,db/journals/gcc/gcc9.html#Button17,https://doi.org/10.1515/gcc-2017-0009 +Delaram Kahrobaei,Non-commutative digital signatures.,2012,4,Groups Complexity Cryptology,2,db/journals/gcc/gcc4.html#KahrobaeiK12,https://doi.org/10.1515/gcc-2012-0019 +Benjamin Atchison,Symmetries of finite graphs and homology.,2015,7,Groups Complexity Cryptology,1,db/journals/gcc/gcc7.html#AtchisonT15,https://doi.org/10.1515/gcc-2015-0003 +Bettina Eick,The automorphism group of a finitely generated virtually abelian group.,2016,8,Groups Complexity Cryptology,1,db/journals/gcc/gcc8.html#Eick16,http://www.degruyter.com/view/j/gcc.2016.8.issue-1/gcc-2016-0007/gcc-2016-0007.xml +Volkmar große Rebel,The Tits Alternative for Tsaranov's Generalized Tetrahedron Groups.,2009,1,Groups Complexity Cryptology,2,db/journals/gcc/gcc1.html#RebelHR09,https://doi.org/10.1515/GCC.2009.207 +Alexei Miasnikov,Log-space conjugacy problem in the Grigorchuk group.,2017,9,Groups Complexity Cryptology,1,db/journals/gcc/gcc9.html#MiasnikovV17,https://doi.org/10.1515/gcc-2017-0005 +Murray R. Bremner,How to compute the Wedderburn decomposition of a finite-dimensional associative algebra.,2011,3,Groups Complexity Cryptology,1,db/journals/gcc/gcc3.html#Bremner11,https://doi.org/10.1515/gcc.2011.003 +Stephen R. Lakin,Space Complexity and Word Problems of Groups.,2009,1,Groups Complexity Cryptology,2,db/journals/gcc/gcc1.html#LakinT09,https://doi.org/10.1515/GCC.2009.261 +Marston Conder,An update on Hurwitz groups.,2010,2,Groups Complexity Cryptology,1,db/journals/gcc/gcc2.html#Conder10,https://doi.org/10.1515/gcc.2010.002 +Manik Lal Das,Key-escrow free multi-signature scheme using bilinear pairings.,2015,7,Groups Complexity Cryptology,1,db/journals/gcc/gcc7.html#Das15,https://doi.org/10.1515/gcc-2015-0002 +Tara Brough,Groups with poly-context-free word problem.,2014,6,Groups Complexity Cryptology,1,db/journals/gcc/gcc6.html#Brough14,https://doi.org/10.1515/gcc-2014-0002 +Marek Kaluba,Certifying numerical estimates of spectral gaps.,2018,10,Groups Complexity Cryptology,1,db/journals/gcc/gcc10.html#KalubaN18,https://doi.org/10.1515/gcc-2018-0004 +Arkadius G. Kalka,A Note on the Shifted Conjugacy Problem in Braid Groups.,2009,1,Groups Complexity Cryptology,2,db/journals/gcc/gcc1.html#KalkaLT09,https://doi.org/10.1515/GCC.2009.227 +Martin Kassabov,Presentations of matrix rings.,2010,2,Groups Complexity Cryptology,1,db/journals/gcc/gcc2.html#Kassabov10,https://doi.org/10.1515/gcc.2010.003 +Chi Sing Chum,The Latin squares and the secret sharing schemes.,2010,2,Groups Complexity Cryptology,2,db/journals/gcc/gcc2.html#ChumZ10,https://doi.org/10.1515/gcc.2010.011 +Alexei G. Myasnikov,Diophantine cryptography in free metabelian groups: Theoretical base.,2014,6,Groups Complexity Cryptology,2,db/journals/gcc/gcc6.html#MyasnikovR14,http://www.degruyter.com/view/j/gcc.2014.6.issue-2/gcc-2014-0011/gcc-2014-0011.xml +Daniella Bak Shnaps,The Word and Conjugacy Problem for Shuffle Groups.,2009,1,Groups Complexity Cryptology,2,db/journals/gcc/gcc1.html#Shnaps09,https://doi.org/10.1515/GCC.2009.143 +Vladimir Shpilrain,Editorial.,2014,6,Groups Complexity Cryptology,2,db/journals/gcc/gcc6.html#Shpilrain14,http://www.degruyter.com/view/j/gcc.2014.6.issue-2/gcc-2014-5001/gcc-2014-5001.xml +Andreas Distler,Group extensions with special properties.,2015,7,Groups Complexity Cryptology,1,db/journals/gcc/gcc7.html#DistlerE15,https://doi.org/10.1515/gcc-2015-0005 +Matthias Neumann-Brosig,A note on the homology of hyperbolic groups.,2010,2,Groups Complexity Cryptology,2,db/journals/gcc/gcc2.html#Neumann-BrosigR10,https://doi.org/10.1515/gcc.2010.012 +Bernhard Krön,Cutting up graphs revisited - a short proof of Stallings' structure theorem.,2010,2,Groups Complexity Cryptology,2,db/journals/gcc/gcc2.html#Kron10,https://doi.org/10.1515/gcc.2010.013 +Olga Kharlampovich,Infinite words and universal free actions.,2014,6,Groups Complexity Cryptology,1,db/journals/gcc/gcc6.html#KharlampovichMS14,https://doi.org/10.1515/gcc-2014-0005 +Amnon Rosenmann,On the intersection of subgroups in free groups: Echelon subgroups are inert.,2013,5,Groups Complexity Cryptology,2,db/journals/gcc/gcc5.html#Rosenmann13,https://doi.org/10.1515/gcc-2013-0013 +Robert H. Gilman 0001,Random equations in free groups.,2011,3,Groups Complexity Cryptology,2,db/journals/gcc/gcc3.html#GilmanMR11,https://doi.org/10.1515/gcc.2011.010 +Alexander N. Rybalov,Generic hardness of the Boolean satisfiability problem.,2017,9,Groups Complexity Cryptology,2,db/journals/gcc/gcc9.html#Rybalov17,https://doi.org/10.1515/gcc-2017-0008 +Mikhail Anokhin,Constructing a pseudo-free family of finite computational groups under the general integer factoring intractability assumption.,2013,5,Groups Complexity Cryptology,1,db/journals/gcc/gcc5.html#Anokhin13,https://doi.org/10.1515/gcc-2013-0003 +Jonathan Longrigg,A Practical Attack on a Certain Braid Group Based Shifted Conjugacy Authentication Protocol.,2009,1,Groups Complexity Cryptology,2,db/journals/gcc/gcc1.html#LongriggU09,https://doi.org/10.1515/GCC.2009.275 +Matthew J. Craven,A parallel evolutionary approach to solving systems of equations in polycyclic groups.,2016,8,Groups Complexity Cryptology,2,db/journals/gcc/gcc8.html#CravenR16,https://doi.org/10.1515/gcc-2016-0012 +Lisa Carbone,Tree lattice subgroups.,2011,3,Groups Complexity Cryptology,1,db/journals/gcc/gcc3.html#CarboneCR11,https://doi.org/10.1515/gcc.2011.001 +Maurice Chiodo,On torsion in finitely presented groups.,2014,6,Groups Complexity Cryptology,1,db/journals/gcc/gcc6.html#Chiodo14,https://doi.org/10.1515/gcc-2014-0001 +Frantisek Marko,Public-key cryptosystem based on invariants of diagonalizable groups.,2017,9,Groups Complexity Cryptology,1,db/journals/gcc/gcc9.html#MarkoZJ17,https://doi.org/10.1515/gcc-2017-0003 +Delaram Kahrobaei,Public key exchange using matrices over group rings.,2013,5,Groups Complexity Cryptology,1,db/journals/gcc/gcc5.html#KahrobaeiKS13,https://doi.org/10.1515/gcc-2013-0007 +Alexei Mishchenko,Knapsack problem for nilpotent groups.,2017,9,Groups Complexity Cryptology,1,db/journals/gcc/gcc9.html#MishchenkoT17,https://doi.org/10.1515/gcc-2017-0006 +Margaret H. Dean,Metabelian Product of a Free Nilpotent Group with a Free Abelian Group.,2009,1,Groups Complexity Cryptology,2,db/journals/gcc/gcc1.html#Dean09,https://doi.org/10.1515/GCC.2009.169 +Benjamin Fine,Generic Subgroups of Group Amalgams.,2009,1,Groups Complexity Cryptology,1,db/journals/gcc/gcc1.html#FineMR09,https://doi.org/10.1515/GCC.2009.51 +Mark L. Lewis,Isomorphism in expanding families of indistinguishable groups.,2012,4,Groups Complexity Cryptology,1,db/journals/gcc/gcc4.html#LewisW12,https://doi.org/10.1515/gcc-2012-0008 +Vladimir Shpilrain,Using Decision Problems in Public Key Cryptography.,2009,1,Groups Complexity Cryptology,1,db/journals/gcc/gcc1.html#ShpilrainZ09,https://doi.org/10.1515/GCC.2009.33 +Colin Maclachlan,Existence and Non-Existence of Torsion in Maximal Arithmetic Fuchsian Groups.,2009,1,Groups Complexity Cryptology,2,db/journals/gcc/gcc1.html#Maclachlan09,https://doi.org/10.1515/GCC.2009.287 +Kristen Pueschel,Hydra group doubles are not residually finite.,2016,8,Groups Complexity Cryptology,2,db/journals/gcc/gcc8.html#Pueschel16,https://doi.org/10.1515/gcc-2016-0015 +Vladimir Shpilrain,Search and witness problems in group theory.,2010,2,Groups Complexity Cryptology,2,db/journals/gcc/gcc2.html#Shpilrain10,https://doi.org/10.1515/gcc.2010.015 +Jennifer Seberry,A new generic digital signature algorithm.,2011,3,Groups Complexity Cryptology,2,db/journals/gcc/gcc3.html#SeberryTT11,https://doi.org/10.1515/gcc.2011.008 +Gennady A. Noskov,Generic case complexity of the Graph Isomorphism Problem.,2016,8,Groups Complexity Cryptology,1,db/journals/gcc/gcc8.html#NoskovR16,http://www.degruyter.com/view/j/gcc.2016.8.issue-1/gcc-2016-0008/gcc-2016-0008.xml +Yago Antolín,On Cayley graphs of virtually free groups.,2011,3,Groups Complexity Cryptology,2,db/journals/gcc/gcc3.html#Antolin11,https://doi.org/10.1515/gcc.2011.012 +Gideon Amir,The diameter of a random Cayley graph of ™4* q.,2010,2,Groups Complexity Cryptology,1,db/journals/gcc/gcc2.html#AmirG10,https://doi.org/10.1515/gcc.2010.004 +Alexander N. Rybalov,Generic complexity of the Diophantine problem.,2013,5,Groups Complexity Cryptology,1,db/journals/gcc/gcc5.html#Rybalov13,https://doi.org/10.1515/gcc-2013-0004 +Evgeni Begelfor,Non-abelian analogs of lattice rounding.,2015,7,Groups Complexity Cryptology,2,db/journals/gcc/gcc7.html#BegelforMV15,http://www.degruyter.com/view/j/gcc.2015.7.issue-2/gcc-2015-0010/gcc-2015-0010.xml +Sylvain Duquesne,Memory-saving computation of the pairing final exponentiation on BN curves.,2016,8,Groups Complexity Cryptology,1,db/journals/gcc/gcc8.html#DuquesneG16,http://www.degruyter.com/view/j/gcc.2016.8.issue-1/gcc-2016-0006/gcc-2016-0006.xml +Bronlyn Wassink,Subgroups of R. Thompson's group F that are isomorphic to F.,2011,3,Groups Complexity Cryptology,2,db/journals/gcc/gcc3.html#Wassink11,https://doi.org/10.1515/gcc.2011.009 +Anthony M. Gaglione,An application of elementary real analysis to a metabelian group admitting integral polynomial exponents.,2015,7,Groups Complexity Cryptology,1,db/journals/gcc/gcc7.html#GaglioneLS15,https://doi.org/10.1515/gcc-2015-0004 +Neal Koblitz,Another look at non-uniformity.,2013,5,Groups Complexity Cryptology,2,db/journals/gcc/gcc5.html#KoblitzM13,https://doi.org/10.1515/gcc-2013-0008 +Lluís Bacardit,A combinatorial algorithm to compute presentations of mapping class groups of orientable surfaces with one boundary component.,2015,7,Groups Complexity Cryptology,2,db/journals/gcc/gcc7.html#Bacardit15,http://www.degruyter.com/view/j/gcc.2015.7.issue-2/gcc-2015-0011/gcc-2015-0011.xml +Dima Grigoriev,Authentication from Matrix Conjugation.,2009,1,Groups Complexity Cryptology,2,db/journals/gcc/gcc1.html#GrigorievS09,https://doi.org/10.1515/GCC.2009.199 +Iris Anshel,A class of hash functions based on the algebraic eraser™*.,2016,8,Groups Complexity Cryptology,1,db/journals/gcc/gcc8.html#AnshelAGG16,http://www.degruyter.com/view/j/gcc.2016.8.issue-1/gcc-2016-0004/gcc-2016-0004.xml +Jennifer Taback,Tree-based language complexity of Thompson's group F.,2015,7,Groups Complexity Cryptology,2,db/journals/gcc/gcc7.html#TabackY15,http://www.degruyter.com/view/j/gcc.2015.7.issue-2/gcc-2015-0009/gcc-2015-0009.xml +Derek F. Holt,Shortlex automaticity and geodesic regularity in Artin groups.,2013,5,Groups Complexity Cryptology,1,db/journals/gcc/gcc5.html#HoltR13,https://doi.org/10.1515/gcc-2013-0001 +Vitalii Roman'kov,Cryptanalysis of a combinatorial public key cryptosystem.,2017,9,Groups Complexity Cryptology,2,db/journals/gcc/gcc9.html#Romankov17,https://doi.org/10.1515/gcc-2017-0013 +Thomas Connor,A new algorithm to find apartments in coset geometries.,2013,5,Groups Complexity Cryptology,1,db/journals/gcc/gcc5.html#ConnorL13,https://doi.org/10.1515/gcc-2013-0006 +Vitalii Roman'kov,A nonlinear decomposition attack.,2016,8,Groups Complexity Cryptology,2,db/journals/gcc/gcc8.html#Romankov16,https://doi.org/10.1515/gcc-2016-0017 +Arkadius G. Kalka,Subgroup conjugacy problem for Garside subgroups of Garside groups.,2010,2,Groups Complexity Cryptology,2,db/journals/gcc/gcc2.html#KalkaLT10,https://doi.org/10.1515/gcc.2010.010 +Benjamin Fine,Faithful representations of limit groups II.,2013,5,Groups Complexity Cryptology,1,db/journals/gcc/gcc5.html#FineR13,https://doi.org/10.1515/gcc-2013-0005 +Alexei G. Myasnikov,A linear decomposition attack.,2015,7,Groups Complexity Cryptology,1,db/journals/gcc/gcc7.html#MyasnikovR15,https://doi.org/10.1515/gcc-2015-0007 +Meng-Che Ho,The word problem of ™4* n is a multiple context-free language.,2018,10,Groups Complexity Cryptology,1,db/journals/gcc/gcc10.html#Ho18,https://doi.org/10.1515/gcc-2018-0003 +Ivo Hedtke,Search and test algorithms for triple product property triples.,2012,4,Groups Complexity Cryptology,1,db/journals/gcc/gcc4.html#HedtkeM12,https://doi.org/10.1515/gcc-2012-0006 +Fabienne Chouraqui,Rewriting Systems and Embedding of Monoids in Groups.,2009,1,Groups Complexity Cryptology,1,db/journals/gcc/gcc1.html#Chouraqui09,https://doi.org/10.1515/GCC.2009.131 +Dima Grigoriev,A Complete Public-Key Cryptosystem.,2009,1,Groups Complexity Cryptology,1,db/journals/gcc/gcc1.html#GrigorievHP09,https://doi.org/10.1515/GCC.2009.1 +Maggie Habeeb,On the dimension of matrix representations of finitely generated torsion free nilpotent groups.,2013,5,Groups Complexity Cryptology,2,db/journals/gcc/gcc5.html#HabeebK13,https://doi.org/10.1515/gcc-2013-0011 +Murray Elder,Some geodesic problems in groups.,2010,2,Groups Complexity Cryptology,2,db/journals/gcc/gcc2.html#ElderR10,https://doi.org/10.1515/gcc.2010.014 +Kenneth J. Falconer,Growth rate of an endomorphism of a group.,2011,3,Groups Complexity Cryptology,2,db/journals/gcc/gcc3.html#FalconerFK11,https://doi.org/10.1515/gcc.2011.011 +Benjamin Fine,Reflections on some aspects of infinite groups.,2014,6,Groups Complexity Cryptology,2,db/journals/gcc/gcc6.html#FineGRS14,http://www.degruyter.com/view/j/gcc.2014.6.issue-2/gcc-2014-0008/gcc-2014-0008.xml +Philipp Jovanovic,Algebraic attacks using SAT-solvers.,2010,2,Groups Complexity Cryptology,2,db/journals/gcc/gcc2.html#JovanovicK10,https://doi.org/10.1515/gcc.2010.016 +Alexander N. Rybalov,On the generic complexity of the searching graph isomorphism problem.,2015,7,Groups Complexity Cryptology,2,db/journals/gcc/gcc7.html#Rybalov15,http://www.degruyter.com/view/j/gcc.2015.7.issue-2/gcc-2015-0015/gcc-2015-0015.xml +Dima Grigoriev,Secrecy without one-way functions.,2013,5,Groups Complexity Cryptology,1,db/journals/gcc/gcc5.html#GrigorievS13,https://doi.org/10.1515/gcc-2013-0002 +Omar Akchiche,Factoring multi-power RSA moduli with primes sharing least or most significant bits.,2016,8,Groups Complexity Cryptology,1,db/journals/gcc/gcc8.html#AkchicheK16,http://www.degruyter.com/view/j/gcc.2016.8.issue-1/gcc-2016-0002/gcc-2016-0002.xml +Jordan Sahattchieve,On convex hulls and the quasiconvex subgroups of Fm*™4*n.,2015,7,Groups Complexity Cryptology,1,db/journals/gcc/gcc7.html#Sahattchieve15,https://doi.org/10.1515/gcc-2015-0006 +Alexei G. Myasnikov,Random van Kampen diagrams and algorithmic problems in groups.,2011,3,Groups Complexity Cryptology,1,db/journals/gcc/gcc3.html#MyasnikovU11,https://doi.org/10.1515/gcc.2011.006 +Dima Grigoriev,No-leak authentication by the Sherlock Holmes method.,2012,4,Groups Complexity Cryptology,1,db/journals/gcc/gcc4.html#GrigorievS12,https://doi.org/10.1515/gcc-2012-0009 +Svetla Vassileva,Polynomial time conjugacy in wreath products and free solvable groups.,2011,3,Groups Complexity Cryptology,1,db/journals/gcc/gcc3.html#Vassileva11,https://doi.org/10.1515/gcc.2011.005 +Jean-Marie Chauvet,Cryptography from the tropical Hessian pencil.,2017,9,Groups Complexity Cryptology,1,db/journals/gcc/gcc9.html#ChauvetM17,https://doi.org/10.1515/gcc-2017-0002 +Luise-Charlotte Kappe,On the covering number of small symmetric groups and some sporadic simple groups.,2016,8,Groups Complexity Cryptology,2,db/journals/gcc/gcc8.html#KappeNS16,https://doi.org/10.1515/gcc-2016-0010 +Mikhail Anokhin,Pseudo-free families of finite computationalelementary abelian p-groups.,2017,9,Groups Complexity Cryptology,1,db/journals/gcc/gcc9.html#Anokhin17,https://doi.org/10.1515/gcc-2017-0001 +Delaram Kahrobaei,Decision and Search in Non-Abelian Cramer-Shoup Public Key Cryptosystem.,2009,1,Groups Complexity Cryptology,2,db/journals/gcc/gcc1.html#KahrobaeiA09,https://doi.org/10.1515/GCC.2009.217 +Kashi Neupane,Two-party key establishment: From passive to active security without introducing new assumptions.,2012,4,Groups Complexity Cryptology,1,db/journals/gcc/gcc4.html#Neupane12,https://doi.org/10.1515/gcc-2012-0005 +Ayan Mahalanobis,The discrete logarithm problem in the group of non-singular circulant matrices.,2010,2,Groups Complexity Cryptology,1,db/journals/gcc/gcc2.html#Mahalanobis10,https://doi.org/10.1515/gcc.2010.006 +Jean-Marie Chauvet,Key agreement under tropical parallels.,2015,7,Groups Complexity Cryptology,2,db/journals/gcc/gcc7.html#ChauvetM15,http://www.degruyter.com/view/j/gcc.2015.7.issue-2/gcc-2015-0013/gcc-2015-0013.xml +Benjamin Fine,A note on faithful representations of limit groups.,2011,3,Groups Complexity Cryptology,2,db/journals/gcc/gcc3.html#FineR11,https://doi.org/10.1515/gcc.2011.014 +Kenneth R. Blaney,A PTIME solution to the restricted conjugacy problem in generalized Heisenberg groups.,2016,8,Groups Complexity Cryptology,1,db/journals/gcc/gcc8.html#BlaneyN16,http://www.degruyter.com/view/j/gcc.2016.8.issue-1/gcc-2016-0003/gcc-2016-0003.xml +Mohammad Hossein Ghaffari,More secure version of a Cayley hash function.,2018,10,Groups Complexity Cryptology,1,db/journals/gcc/gcc10.html#GhaffariM18,https://doi.org/10.1515/gcc-2018-0002 +Benjamin Fine,A secret sharing scheme based on the Closest Vector Theorem and a modification to a private key cryptosystem.,2013,5,Groups Complexity Cryptology,2,db/journals/gcc/gcc5.html#FineMR13,https://doi.org/10.1515/gcc-2013-0012 +Markus Lohrey,Algorithmics on SLP-compressed strings: A survey.,2012,4,Groups Complexity Cryptology,2,db/journals/gcc/gcc4.html#Lohrey12,https://doi.org/10.1515/gcc-2012-0016 +Alex D. Myasnikov,Cryptanalysis of the Anshel-Anshel-Goldfeld-Lemieux Key Agreement Protocol.,2009,1,Groups Complexity Cryptology,1,db/journals/gcc/gcc1.html#MyasnikovU09,https://doi.org/10.1515/GCC.2009.63 +Russell Miller,An introduction to computable model theory on groups and fields.,2011,3,Groups Complexity Cryptology,1,db/journals/gcc/gcc3.html#Miller11,https://doi.org/10.1515/gcc.2011.002 +Emmanuel Fouotsa,Faster Ate pairing computation on Selmer's model of elliptic curves.,2016,8,Groups Complexity Cryptology,1,db/journals/gcc/gcc8.html#FouotsaC16,http://www.degruyter.com/view/j/gcc.2016.8.issue-1/gcc-2016-0005/gcc-2016-0005.xml +Celine Carstensen,On asymptotic densities and generic properties in finitely generated groups.,2010,2,Groups Complexity Cryptology,2,db/journals/gcc/gcc2.html#CarstensenFR10,https://doi.org/10.1515/gcc.2010.008 +Alex D. Myasnikov,Generic Case Complexity and One-Way Functions.,2009,1,Groups Complexity Cryptology,1,db/journals/gcc/gcc1.html#Myasnikov09,https://doi.org/10.1515/GCC.2009.13 +Evgeny I. Timoshenko,A remark on spherical equations in free metabelian groups.,2017,9,Groups Complexity Cryptology,2,db/journals/gcc/gcc9.html#Timoshenko17,https://doi.org/10.1515/gcc-2017-0012 +Artyom S. Ivachev,On transitive differentiable modulo pn functions.,2015,7,Groups Complexity Cryptology,2,db/journals/gcc/gcc7.html#Ivachev15,http://www.degruyter.com/view/j/gcc.2015.7.issue-2/gcc-2015-0014/gcc-2015-0014.xml +Lluís Bacardit,The Zieschang-McCool method for generating algebraic mapping-class groups.,2011,3,Groups Complexity Cryptology,2,db/journals/gcc/gcc3.html#BacarditD11,https://doi.org/10.1515/gcc.2011.007 +Chris Monico,Cryptanalysis of a system using matrices over group rings.,2015,7,Groups Complexity Cryptology,2,db/journals/gcc/gcc7.html#MonicoN15,http://www.degruyter.com/view/j/gcc.2015.7.issue-2/gcc-2015-0008/gcc-2015-0008.xml +Stephen Majewicz,Power-Commutative Nilpotent R-Powered Groups.,2009,1,Groups Complexity Cryptology,2,db/journals/gcc/gcc1.html#MajewiczZ09,https://doi.org/10.1515/GCC.2009.297 +Jonathan Gryak,The status of polycyclic group-based cryptography: A survey and open problems.,2016,8,Groups Complexity Cryptology,2,db/journals/gcc/gcc8.html#GryakK16,https://doi.org/10.1515/gcc-2016-0013 +Natalia Mosina,Strong law of large numbers on graphs and groups.,2011,3,Groups Complexity Cryptology,1,db/journals/gcc/gcc3.html#MosinaU11,https://doi.org/10.1515/gcc.2011.004 +Artem N. Shevlyakov,On irreducible algebraic sets over linearly ordered semilattices.,2016,8,Groups Complexity Cryptology,2,db/journals/gcc/gcc8.html#Shevlyakov16,https://doi.org/10.1515/gcc-2016-0014 +Mohammad Eftekhari,A Diffie-Hellman key exchange protocol using matrices over noncommutative rings.,2012,4,Groups Complexity Cryptology,1,db/journals/gcc/gcc4.html#Eftekhari12,https://doi.org/10.1515/gcc-2012-0001 +Alexey Gribov,Practical private-key fully homomorphic encryption in rings.,2018,10,Groups Complexity Cryptology,1,db/journals/gcc/gcc10.html#GribovKS18,https://doi.org/10.1515/gcc-2018-0006 +Vitalii Roman'kov,Equations over groups.,2012,4,Groups Complexity Cryptology,2,db/journals/gcc/gcc4.html#Romankov12,https://doi.org/10.1515/gcc-2012-0015 +Gilbert Baumslag,Challenge response password security using combinatorial group theory.,2010,2,Groups Complexity Cryptology,1,db/journals/gcc/gcc2.html#BaumslagBFT10,https://doi.org/10.1515/gcc.2010.005 +Anthony M. Gaglione,Almost Locally Free Groups and a Theorem of Magnus: Some Questions.,2009,1,Groups Complexity Cryptology,2,db/journals/gcc/gcc1.html#GaglioneLS09,https://doi.org/10.1515/GCC.2009.181 +Vladimir Shpilrain,Compositions of linear functions and applications to hashing.,2016,8,Groups Complexity Cryptology,2,db/journals/gcc/gcc8.html#ShpilrainS16,https://doi.org/10.1515/gcc-2016-0016 +Murray Elder,Thompson's group F is 1-counter graph automatic.,2016,8,Groups Complexity Cryptology,1,db/journals/gcc/gcc8.html#ElderT16,http://www.degruyter.com/view/j/gcc.2016.8.issue-1/gcc-2016-0001/gcc-2016-0001.xml +Murray Elder,On the cogrowth of Thompson's group F.,2012,4,Groups Complexity Cryptology,2,db/journals/gcc/gcc4.html#ElderRW12,https://doi.org/10.1515/gcc-2012-0018 +Dima Grigoriev,Continuous hard-to-invert functions and biometric authentication.,2012,4,Groups Complexity Cryptology,1,db/journals/gcc/gcc4.html#GrigorievN12,https://doi.org/10.1515/gcc-2012-0004 +Matvei Kotov,Analysis of secret sharing schemes based on Nielsen transformations.,2018,10,Groups Complexity Cryptology,1,db/journals/gcc/gcc10.html#KotovPU18,https://doi.org/10.1515/gcc-2018-0001 +Volker Diekert,Cyclic rewriting and conjugacy problems.,2012,4,Groups Complexity Cryptology,2,db/journals/gcc/gcc4.html#DiekertDM12,https://doi.org/10.1515/gcc-2012-0020 +Artem N. Shevlyakov,Algebraic geometry over natural numbers. The classification of coordinate monoids.,2010,2,Groups Complexity Cryptology,1,db/journals/gcc/gcc2.html#Shevlyakov10,https://doi.org/10.1515/gcc.2010.007 +Martin Kreuzer,Algebraic Attacks Galore!,2009,1,Groups Complexity Cryptology,2,db/journals/gcc/gcc1.html#Kreuzer09,https://doi.org/10.1515/GCC.2009.231 +Tetsuya Ito,On finite Thurston-type orderings of braid groups.,2010,2,Groups Complexity Cryptology,2,db/journals/gcc/gcc2.html#Ito10,https://doi.org/10.1515/gcc.2010.009 +Arkadius G. Kalka,Non-associative key establishment for left distributive systems.,2013,5,Groups Complexity Cryptology,2,db/journals/gcc/gcc5.html#KalkaT13,https://doi.org/10.1515/gcc-2013-0009 +Denis Osin,On the Universal Theory of Torsion and Lacunary Hyperbolic Groups.,2009,1,Groups Complexity Cryptology,2,db/journals/gcc/gcc1.html#Osin09,https://doi.org/10.1515/GCC.2009.311 +Marianna Bonanome,Quantum algorithms for fixed points and invariant subgroups.,2011,3,Groups Complexity Cryptology,2,db/journals/gcc/gcc3.html#BonanomeM11,https://doi.org/10.1515/gcc.2011.013 +Enric Ventura,Group-theoretic orbit decidability.,2014,6,Groups Complexity Cryptology,2,db/journals/gcc/gcc6.html#Ventura14,http://www.degruyter.com/view/j/gcc.2014.6.issue-2/gcc-2014-0012/gcc-2014-0012.xml +Anthony E. Clement,Torsion-free Abelian Factor Groups of the Baumslag-Solitar Groups and Subgroups of the Additive Group of the Rational Numbers.,2009,1,Groups Complexity Cryptology,2,db/journals/gcc/gcc1.html#Clement09,https://doi.org/10.1515/GCC.2009.165 +Liljana Babinkostova,Algebraic properties of generalized Rijndael-like ciphers.,2014,6,Groups Complexity Cryptology,1,db/journals/gcc/gcc6.html#BabinkostovaBCMS14,https://doi.org/10.1515/gcc-2014-0004 +Alexander Ushakov,Authenticated commutator key agreement protocol.,2016,8,Groups Complexity Cryptology,2,db/journals/gcc/gcc8.html#Ushakov16,https://doi.org/10.1515/gcc-2016-0011 +Stefan Friedl,An elementary proof of the group law for elliptic curves.,2017,9,Groups Complexity Cryptology,2,db/journals/gcc/gcc9.html#Friedl17,https://doi.org/10.1515/gcc-2017-0010 +Vitalii Roman'kov,New probabilistic public-key encryption based on the RSA cryptosystem.,2015,7,Groups Complexity Cryptology,2,db/journals/gcc/gcc7.html#Romankov15,http://www.degruyter.com/view/j/gcc.2015.7.issue-2/gcc-2015-0016/gcc-2015-0016.xml +Uri Weiss,On Shephard groups with large triangles.,2010,2,Groups Complexity Cryptology,1,db/journals/gcc/gcc2.html#Weiss10,https://doi.org/10.1515/gcc.2010.001 +Vladimir Shpilrain,Decoy-based information security.,2014,6,Groups Complexity Cryptology,2,db/journals/gcc/gcc6.html#Shpilrain14a,http://www.degruyter.com/view/j/gcc.2014.6.issue-2/gcc-2014-0010/gcc-2014-0010.xml +Robert H. Gilman 0001,Generalized small cancellation presentations for automatic groups.,2014,6,Groups Complexity Cryptology,2,db/journals/gcc/gcc6.html#Gilman14,http://www.degruyter.com/view/j/gcc.2014.6.issue-2/gcc-2014-0007/gcc-2014-0007.xml +Stepan Yu. Orevkov,Algorithmic recognition of quasipositive 4-braids of algebraic length three.,2015,7,Groups Complexity Cryptology,2,db/journals/gcc/gcc7.html#Orevkov15,http://www.degruyter.com/view/j/gcc.2015.7.issue-2/gcc-2015-0012/gcc-2015-0012.xml +Alexey D. Myasnikov,Quantum algorithm for discrete logarithm problem for matrices over finite group rings.,2014,6,Groups Complexity Cryptology,1,db/journals/gcc/gcc6.html#MyasnikovU14,https://doi.org/10.1515/gcc-2014-0003 +Daan Krammer,An asymmetric generalisation of Artin monoids.,2013,5,Groups Complexity Cryptology,2,db/journals/gcc/gcc5.html#Krammer13,https://doi.org/10.1515/gcc-2013-0010 +Bill Faught,Natural language for PARRY.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Faught77,http://doi.acm.org/10.1145/1045283.1045331 +Gary G. Hendrix,Lifer: a natural language interface facility.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Hendrix77,http://doi.acm.org/10.1145/1045283.1045289 +Wijnand J. Schoenmakers,A problem in knowledge acquisition.,1986,95,SIGART Newsletter,,db/journals/sigart/sigartn95.html#Schoenmakers86,http://doi.acm.org/10.1145/1056563.1056572 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1985,94,SIGART Newsletter,,db/journals/sigart/sigartn94.html#HumphreyK85c,http://doi.acm.org/10.1145/1056313.1056314 +Alan M. Frisch,An overview of the HORNE logic programming system.,1983,84,SIGART Newsletter,,db/journals/sigart/sigartn84.html#FrischAG83,http://doi.acm.org/10.1145/1056623.1056624 +Peter Kugel,What can a computer learn from examples?,1976,57,SIGART Newsletter,,db/journals/sigart/sigartn57.html#Kugel76,http://doi.acm.org/10.1145/1045339.1045341 +Michael D. Rychener,Knowledge-based expert systems: a brief bibliography.,1981,78,SIGART Newsletter,,db/journals/sigart/sigartn78.html#Rychener81,http://doi.acm.org/10.1145/1056737.1056741 +Egon E. Loebner,Research in natural language processing: Hewlett-Packard Laboratories.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Loebner82,http://doi.acm.org/10.1145/1056663.1056700 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#HumphreyK89b,http://doi.acm.org/10.1145/63266.63310 +Harold Boley,A preliminary survey of artificial intelligence machines.,1980,72,SIGART Newsletter,,db/journals/sigart/sigartn72.html#Boley80,http://doi.acm.org/10.1145/1056447.1056449 +Richard E. Cullingford,SAM: a program that uses world knowledge to understand.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Cullingford77,http://doi.acm.org/10.1145/1045283.1045324 +Kenneth Basye,A Decision-Theoretic Approach to Robotic Control Systems.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Basye91,http://doi.acm.org/10.1145/122344.122349 +Christopher A. Welty,Backtracking.,2000,11,Intelligence,1,db/journals/sigart/sigart11.html#WeltyH00,http://doi.acm.org/10.1145/333175.333183 +Elaine Kant,The selection of efficient implementations for a high-level language.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#Kant77,http://doi.acm.org/10.1145/872736.806943 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1988,104,SIGART Newsletter,,db/journals/sigart/sigartn104.html#HumphreyK88b,http://doi.acm.org/10.1145/44019.1058041 +Michael L. Rhodes,Conversational text input for modifying graphics facial images.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#RhodesK77,http://doi.acm.org/10.1145/1045283.1045334 +Hans-Jochen Schneider,Automatic construction of semantic networks.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Schneider77,http://doi.acm.org/10.1145/1045283.1045320 +Tom M. Mitchell,Plan-Then-Compile Architectures.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Mitchell91,http://doi.acm.org/10.1145/122344.122372 +Luca Majocchi,The problem of a mouse in a maze.,1984,87,SIGART Newsletter,,db/journals/sigart/sigartn87.html#MajocchiS84,http://doi.acm.org/10.1145/1056648.1056652 +Edward N. Schwartz,Manhattanville College expert academic advisor-preliminary report.,1988,103,SIGART Newsletter,,db/journals/sigart/sigartn103.html#Schwartz88a,http://doi.acm.org/10.1145/44418.44424 +David R. Barstow,A knowledge base organization for rules about programming.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Barstow77,http://doi.acm.org/10.1145/1045343.1045353 +Roy Rada,Mastermind in SIGART.,1984,89,SIGART Newsletter,,db/journals/sigart/sigartn89.html#Rada84,http://doi.acm.org/10.1145/1056521.1056523 +David D. McDonald,Making subsequent references: syntatic and rhetorical constrants.,1978,66,SIGART Newsletter,,db/journals/sigart/sigartn66.html#McDonald78,http://doi.acm.org/10.1145/1045416.1045425 +Keith Price,New books.,1980,73,SIGART Newsletter,,db/journals/sigart/sigartn73.html#Price80,http://doi.acm.org/10.1145/1056768.1056774 +Dik Lee,Book review: Advanced Database Techniques by Daniel Martin (MIT Press 1986).,1987,102,SIGART Newsletter,,db/journals/sigart/sigartn102.html#Lee87a,http://doi.acm.org/10.1145/36970.1057638 +Natalie Dehn,NLP research at the Yale AI Project.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Dehn82,http://doi.acm.org/10.1145/1056663.1056734 +Giorgio P. Ingargiola,The Introductory Undergraduate AI Course as Observed on WWW.,1995,6,SIGART Bulletin,3,db/journals/sigart/sigart6.html#IngargiolaW95,http://doi.acm.org/10.1145/208628.208629 +Max Bramer,Advances in computer chess.,1978,67,SIGART Newsletter,,db/journals/sigart/sigartn67.html#Bramer78,http://doi.acm.org/10.1145/1045443.1045445 +Jaime G. Carbonell,A note on the AI tutorial at the ACM.,1982,81,SIGART Newsletter,,db/journals/sigart/sigartn81.html#Carbonell82,http://doi.acm.org/10.1145/1056803.1056805 +Erkan Tin,Computational Situation Theory.,1994,5,SIGART Bulletin,4,db/journals/sigart/sigart5.html#TinA94,http://doi.acm.org/10.1145/191604.191608 +Karen T. Sutherland,Announcements.,2001,12,Intelligence,4,db/journals/sigart/sigart12.html#Sutherland01c,http://doi.acm.org/10.1145/504313.504325 +Deepak Kumar,Curriculum descant: AI topics: organizing online knowledge sources about AI for the lay public.,2001,12,Intelligence,3,db/journals/sigart/sigart12.html#Kumar01b,http://doi.acm.org/10.1145/383824.383830 +Joseph Agassi,Winter 1988 Daedalus.,1988,105,SIGART Newsletter,,db/journals/sigart/sigartn105.html#Agassi88,http://doi.acm.org/10.1145/49093.1058127 +Elliot Soloway,Knowledge-directed learning.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#SolowayR77,http://doi.acm.org/10.1145/1045343.1045374 +Zavdi L. Lichtman,Some* an FEXPR is better than a macro.,1986,97,SIGART Newsletter,,db/journals/sigart/sigartn97.html#Lichtman86,http://doi.acm.org/10.1145/15719.15720 +John E. Laird,Preface for Special Section on Integrated Cognitive Architectures.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Laird91,http://doi.acm.org/10.1145/122344.1063801 +Steven R. LeClair,Interactive learning: a multiexpert paradigm for acquiring new knowledge.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#LeClair89,http://doi.acm.org/10.1145/63266.63271 +Alex Bykat,An evaluation of MProlog by Logicware.,1986,95,SIGART Newsletter,,db/journals/sigart/sigartn95.html#Bykat86,http://doi.acm.org/10.1145/1056563.1056567 +Fabrizio Massimo Ferrara,Socrates: a system to extract rules and knowledge from existing databases.,1988,104,SIGART Newsletter,,db/journals/sigart/sigartn104.html#Ferrara88,http://doi.acm.org/10.1145/44019.44020 +Marty Kalin,Book review: Prolog for Programmers by Feliks Kluzniak and Stanislaw Szpakowicz (Academic Press).,1988,103,SIGART Newsletter,,db/journals/sigart/sigartn103.html#Kalin88,http://doi.acm.org/10.1145/44418.1057644 +D. J. H. Brown,Concept learning by feature value interval abstraction.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Brown77a,http://doi.acm.org/10.1145/1045343.1045375 +Thomas Dean,Context-Dependent Computational Components.,1996,7,SIGART Bulletin,2,db/journals/sigart/sigart7.html#Dean96,http://doi.acm.org/10.1145/242587.242588 +Raymond Reiter,An approach to deductive question-answering systems.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Reiter77,http://doi.acm.org/10.1145/1045283.1045312 +Graeme Ritchie,Survey of natural language processing.,1982,80,SIGART Newsletter,,db/journals/sigart/sigartn80.html#Ritchie82,http://doi.acm.org/10.1145/1056176.1056184 +Douglas Blank,News.,2001,12,Intelligence,3,db/journals/sigart/sigart12.html#Blank01c,http://doi.acm.org/10.1145/383824.383829 +Allen Hedeen,The effects of restricted syntax on menu-based interaction.,1988,103,SIGART Newsletter,,db/journals/sigart/sigartn103.html#Hedeen88a,http://doi.acm.org/10.1145/44418.44422 +Fernando Gomez,Computer understanding of descriptive contexts: U. of Central Florida.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Gomez82,http://doi.acm.org/10.1145/1056663.1056693 +Michael L. Baird,Relational models for object location.,1975,55,SIGART Newsletter,,db/journals/sigart/sigartn55.html#Baird75a,http://doi.acm.org/10.1145/1045253.1045256 +Amruth N. Kumar,Announcements.,1999,10,Intelligence,2,db/journals/sigart/sigart10.html#Kumar99b,http://www.acm.org/pubs/citations/journals/intelligence/1999-10-2/p33-kumar/ +Hans J. Berliner,The 1985 Fredkin competition.,1986,96,SIGART Newsletter,,db/journals/sigart/sigartn96.html#Berliner86,http://doi.acm.org/10.1145/15715.15717 +Stanley J. Rosenschein,The production system: architecture and abstraction.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Rosenschein77,http://doi.acm.org/10.1145/1045343.1045392 +Bruce G. Buchanan,Model-directed learning of production rules.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#BuchananM77,http://doi.acm.org/10.1145/1045343.1045371 +Alfred Kobsa,First Experiences with the SB-ONE Knowledge Representation Workbench in Natural-Language Applications.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#Kobsa91,http://doi.acm.org/10.1145/122296.122306 +Leona F. Fass,Learnability of CFLs: inferring syntactic models from constituent structure.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Fass89,http://doi.acm.org/10.1145/63266.63306 +Jeffrey M. Bradshaw,Letter from the chair.,2001,12,Intelligence,1,db/journals/sigart/sigart12.html#Bradshaw01,http://doi.acm.org/10.1145/376451.376457 +Rolf Pfeifer,"Curriculum descant: teaching ""New AI"".",2000,11,Intelligence,2,db/journals/sigart/sigart11.html#PfeiferK00,http://doi.acm.org/10.1145/337897.337989 +Donald E. Walker,A progress report on speech understanding at SRI.,1972,36,SIGART Newsletter,,db/journals/sigart/sigartn36.html#Walker72,http://doi.acm.org/10.1145/1056597.1056599 +Lawrence J. Mazlack,A mechanism for natural language access to database systems: U. of Cincinnati.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#MazlackFLP82,http://doi.acm.org/10.1145/1056663.1056683 +Steve Coles,Chess.,1972,37,SIGART Newsletter,,db/journals/sigart/sigartn37.html#Coles72b,http://doi.acm.org/10.1145/1056777.1056778 +Peter G. Selfridge,Cospace.,1999,10,Intelligence,1,db/journals/sigart/sigart10.html#SelfridgeK99,http://doi.acm.org/10.1145/298475.298488 +John P. Fishburn,Another optimization of alpha-beta search.,1983,84,SIGART Newsletter,,db/journals/sigart/sigartn84.html#Fishburn83,http://doi.acm.org/10.1145/1056623.1056628 +S. Rebecca Thomas,A Consideration of Some Approaches to Course Organization.,1995,6,SIGART Bulletin,2,db/journals/sigart/sigart6.html#Thomas95,http://doi.acm.org/10.1145/201977.201991 +J. Bradley,The symptom-component approach to knowledge acquisition.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#BradleyH89,http://doi.acm.org/10.1145/63266.63275 +M. J. Smith,APRIL: a flexible production rule interpreter.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#SmithS77,http://doi.acm.org/10.1145/1045343.1045361 +Seng-cho Timothy Chou,The Implementation of a Model-based Belief Revision System.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#ChouW91,http://doi.acm.org/10.1145/122296.122301 +T. Mahadeva Rao,Algorithms to play Mastermind.,1986,95,SIGART Newsletter,,db/journals/sigart/sigartn95.html#RaoKO86,http://doi.acm.org/10.1145/1056563.1056568 +Roger C. Parkison,Conversational language comprehension: UCLA.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Parkison82,http://doi.acm.org/10.1145/1056663.1056677 +Tim Menzies,Cost benefits of ontologies.,1999,10,Intelligence,3,db/journals/sigart/sigart10.html#Menzies99,http://doi.acm.org/10.1145/318964.318969 +Reva Freedman,Links: what is an intelligent tutoring system?,2000,11,Intelligence,3,db/journals/sigart/sigart11.html#FreedmanAM00,http://doi.acm.org/10.1145/350752.350756 +David H. D. Warren,Prolog - the language and its implementation compared with Lisp.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#WarrenP077,http://doi.acm.org/10.1145/872736.806939 +Karen T. Sutherland,Book reviews.,2001,12,Intelligence,2,db/journals/sigart/sigart12.html#Sutherland01a,http://doi.acm.org/10.1145/378116.378126 +Jerry Potter,Scene segmentation.,1975,52,SIGART Newsletter,,db/journals/sigart/sigartn52.html#Potter75,http://doi.acm.org/10.1145/1045236.1045243 +Bryan M. Kramer,Implementing Telos.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#KramerCKTWM91,http://doi.acm.org/10.1145/122296.122307 +James F. Allen,Plan recognition and language.,1978,66,SIGART Newsletter,,db/journals/sigart/sigartn66.html#Allen78,http://doi.acm.org/10.1145/1045416.1045420 +H. Penny Nii,Rule-based understanding of signals.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#NiiF77,http://doi.acm.org/10.1145/1045343.1045394 +Edward J. Coyne,Weather reporting.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Coyne77,http://doi.acm.org/10.1145/1045283.1045307 +Patrick Sobalvarro,Turtles and defense.,1982,82,SIGART Newsletter,,db/journals/sigart/sigartn82.html#SobalvarroK82,http://doi.acm.org/10.1145/1056602.1056608 +James M. Crawford,Algernon - A Tractable System for Knowledge-Representation.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#CrawfordK91,http://doi.acm.org/10.1145/122296.122302 +Anthony Preston,Book review: Automated Reasoning: 33 Basic Research Problems by Larry Wos (Prentice Hall 1988).,1988,105,SIGART Newsletter,,db/journals/sigart/sigartn105.html#Preston88,http://doi.acm.org/10.1145/49093.1058124 +Rich Fikes,Fourth U.S. computer chess championship.,1974,44,SIGART Newsletter,,db/journals/sigart/sigartn44.html#Fikes74c,http://doi.acm.org/10.1145/1045183.1045188 +Karen T. Sutherland,Book reviews.,2000,11,Intelligence,2,db/journals/sigart/sigart11.html#Sutherland00a,http://doi.acm.org/10.1145/337897.338002 +Mildred L. G. Shaw,A grid-based tool for knowledge acquisition: validation with multiple experts.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Shaw89,http://doi.acm.org/10.1145/63266.63300 +Gretchen P. Brown,Indirect speech acts: characterizing multiple forms.,1978,66,SIGART Newsletter,,db/journals/sigart/sigartn66.html#Brown78,http://doi.acm.org/10.1145/1045416.1045423 +Amruth N. Kumar,Announcements.,2000,11,Intelligence,1,db/journals/sigart/sigart11.html#Kumar00,http://doi.acm.org/10.1145/333175.333882 +R. Mike Cameron-Jones,Efficient Top-Down Induction of Logic Programs.,1994,5,SIGART Bulletin,1,db/journals/sigart/sigart5.html#Cameron-JonesQ94,http://doi.acm.org/10.1145/181668.181676 +,The ninth North American computer chess championship.,1980,69,SIGART Newsletter,,db/journals/sigart/sigartn69.html#X80,http://doi.acm.org/10.1145/1056433.1056437 +Alan L. Tharp,Using a natural language interface for elementary instruction.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Tharp77,http://doi.acm.org/10.1145/1045283.1045337 +Rodney A. Brooks,Integrated Systems Based on Behaviors.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Brooks91,http://doi.acm.org/10.1145/122344.122352 +Deepak Kumar,Curriculum descant: beyond introductory AI.,1999,10,Intelligence,3,db/journals/sigart/sigart10.html#Kumar99c,http://doi.acm.org/10.1145/318964.318967 +Larry R. Harris,Status report on the ROBOT natural language query processor.,1978,66,SIGART Newsletter,,db/journals/sigart/sigartn66.html#Harris78,http://doi.acm.org/10.1145/1045416.1045417 +L. F. Pau,Conceptual graphs as a visual language for knowledge acquisition in architectural expert systems.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#PauN89,http://doi.acm.org/10.1145/63266.63291 +Philip C. Norem,Quantitative artificial intelligence: how much is enough?,1985,91,SIGART Newsletter,,db/journals/sigart/sigartn91.html#Norem85,http://doi.acm.org/10.1145/1056541.1056544 +Nada Lavrac,Methods for knowledge acquisition and refinement in second generation expert systems.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#LavracM89,http://doi.acm.org/10.1145/63266.63274 +Keith Price,Book review: Three-Dimensional Machine Vision by Takeo Kanade (Kluwer Academic Publishers).,1988,103,SIGART Newsletter,,db/journals/sigart/sigartn103.html#Price88b,http://doi.acm.org/10.1145/44418.1057647 +Philip Klahr,Planning techniques for rule selection in deductive question-answering.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Klahr77,http://doi.acm.org/10.1145/1045343.1045346 +Harry G. Barrow,Representation and use of knowledge in vision.,1975,52,SIGART Newsletter,,db/journals/sigart/sigartn52.html#BarrowT75,http://doi.acm.org/10.1145/1045236.1045242 +Toni Bollinger,The LILOG Knowledge Representation System.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#BollingerP91,http://doi.acm.org/10.1145/122296.122300 +David D. Woods,Human Interaction with Intelligent Systems: An Overview and Bibliography.,1991,2,SIGART Bulletin,5,db/journals/sigart/sigart2.html#WoodsJP91,http://doi.acm.org/10.1145/122570.122571 +Steven A. Vere,Organization of the Basic Agent.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Vere91,http://doi.acm.org/10.1145/122344.122378 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1988,103,SIGART Newsletter,,db/journals/sigart/sigartn103.html#HumphreyK88c,http://doi.acm.org/10.1145/44418.1057649 +Lundy M. Lewis,A Time-Ordered Architecture for Integrating Reflective and Deliberative Behavior.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Lewis91,http://doi.acm.org/10.1145/122344.122366 +André Valente,Knowledge-Level Analyysis of Planning Systems.,1995,6,SIGART Bulletin,1,db/journals/sigart/sigart6.html#Valente95,http://doi.acm.org/10.1145/202187.202195 +Robert Michaelson,Application of an expert computer system to federal tax planning.,1982,82,SIGART Newsletter,,db/journals/sigart/sigartn82.html#Michaelson82,http://doi.acm.org/10.1145/1056602.1056606 +Deborah A. Vastola,Interactive Learning Tool for Statistical Reasoning with Uncertainty.,1995,6,SIGART Bulletin,2,db/journals/sigart/sigart6.html#VastolaW95,http://doi.acm.org/10.1145/201977.201992 +,Problem solving information system with German as query language: a project in automated language processing.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#X77,http://doi.acm.org/10.1145/1045283.1045318 +Lee Spector,Artificial Intelligence as the Liberal Arts of Computer Science.,1995,6,SIGART Bulletin,2,db/journals/sigart/sigart6.html#Spector95,http://doi.acm.org/10.1145/201977.201981 +Lee D. Erman,Chess.,1976,60,SIGART Newsletter,,db/journals/sigart/sigartn60.html#Erman76,http://doi.acm.org/10.1145/1045276.1045279 +Stuart J. Russell,An Architecture for Bounded Rationality.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Russell91,http://doi.acm.org/10.1145/122344.122374 +Robert St. Amant,Interface agents as surrogate users.,2000,11,Intelligence,2,db/journals/sigart/sigart11.html#Amant00,http://doi.acm.org/10.1145/337897.337998 +Michael Lebowitz,Natural language processing at Columbia University.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Lebowitz82,http://doi.acm.org/10.1145/1056663.1056684 +Franz Baader,KRIS: Knowledge Representation and Inference System.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#BaaderH91,http://doi.acm.org/10.1145/122296.122298 +Narinder Singh,Epikit: A Library of Subroutines Supporting Declarative Representations and Reasoning.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#SinghG91,http://doi.acm.org/10.1145/122296.122318 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1989,109,SIGART Newsletter,,db/journals/sigart/sigartn109.html#HumphreyK89a,http://doi.acm.org/10.1145/70632.1059732 +,TOPIC: a system for automatic text condensation.,1983,83,SIGART Newsletter,,db/journals/sigart/sigartn83.html#X83,http://doi.acm.org/10.1145/1056613.1056618 +A. J. Payne,A basis for complexity measurement?,1982,82,SIGART Newsletter,,db/journals/sigart/sigartn82.html#Payne82,http://doi.acm.org/10.1145/1056602.1056605 +Jay Liebowitz,If there is artificial intelligence? Is there such a thing as artificial stupidity.,1989,109,SIGART Newsletter,,db/journals/sigart/sigartn109.html#Liebowitz89,http://doi.acm.org/10.1145/70632.70634 +Douglas Blank,News.,2000,11,Intelligence,3,db/journals/sigart/sigart11.html#Blank00a,http://doi.acm.org/10.1145/350752.350754 +Susan L. Epstein,Teaching Introductory AI from First Principles.,1995,6,SIGART Bulletin,2,db/journals/sigart/sigart6.html#EpsteinT95,http://doi.acm.org/10.1145/201977.201984 +Bertram C. Bruce,Interacting plans.,1978,66,SIGART Newsletter,,db/journals/sigart/sigartn66.html#Bruce78,http://doi.acm.org/10.1145/1045416.1045426 +Brian P. McCune,The PSI Program Model Builder - synthesis of very high-level programs.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#McCune77,http://doi.acm.org/10.1145/872736.806942 +Syed S. Ali,Links: What use is knowledge?,1999,10,Intelligence,2,db/journals/sigart/sigart10.html#Ali99a,http://doi.acm.org/10.1145/309697.309701 +Mai H. Nguyen,A Connectionist Approach to Rate Adaptation.,1994,5,SIGART Bulletin,3,db/journals/sigart/sigart5.html#NguyenC94,http://doi.acm.org/10.1145/181911.181916 +Hyungmin Michael Chung,Empirical analysis of inductive knowledge acquisition methods.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Chung89,http://doi.acm.org/10.1145/63266.63294 +David M. W. Powers,Playing Mastermind more logically or writing Prolog more efficiently.,1984,89,SIGART Newsletter,,db/journals/sigart/sigartn89.html#Powers84a,http://doi.acm.org/10.1145/1056521.1056526 +Keith Price,Books.,1984,87,SIGART Newsletter,,db/journals/sigart/sigartn87.html#Price84e,http://doi.acm.org/10.1145/1056648.1056649 +Donald Michie,AL1: a package for generating strategies from tables.,1976,59,SIGART Newsletter,,db/journals/sigart/sigartn59.html#Michie76,http://doi.acm.org/10.1145/1045270.1045272 +Michael D. Rychener,Control requirements for the design of production system architectures.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#Rychener77,http://doi.acm.org/10.1145/872736.806930 +Edward M. Riseman,AI and brain theory at the Univ. of Massachusetts.,1975,52,SIGART Newsletter,,db/journals/sigart/sigartn52.html#Riseman75,http://doi.acm.org/10.1145/1045236.1045239 +Steve Coles,Books.,1972,36,SIGART Newsletter,,db/journals/sigart/sigartn36.html#Coles72a,http://doi.acm.org/10.1145/1056597.1056600 +Maria Fox,An Efficient Algorithm for Managing Partial Orders in Planning.,1996,7,SIGART Bulletin,4,db/journals/sigart/sigart7.html#FoxL96,http://doi.acm.org/10.1145/264927.264930 +F. A. Mohammed,A Knowledge Based Arabic Question Answering System (AQAS).,1993,4,SIGART Bulletin,4,db/journals/sigart/sigart4.html#MohammedNH93,http://doi.acm.org/10.1145/165482.165488 +Clare Bates Congdon,Curriculum descant: machine learning for the masses.,2001,12,Intelligence,2,db/journals/sigart/sigart12.html#CongdonK01,http://doi.acm.org/10.1145/378116.378118 +,Counterexamples and conjectures.,1971,30,SIGART Newsletter,,db/journals/sigart/sigartn30.html#X71,http://doi.acm.org/10.1145/1056574.1056575 +Richard J. Wallace,Anytime Algorithms for Constraint Satisfaction and SAT Problems.,1996,7,SIGART Bulletin,2,db/journals/sigart/sigart7.html#WallaceF96,http://doi.acm.org/10.1145/242587.242589 +Jörg-Uwe Kietz,Inductive Logic Programming and Learnability.,1994,5,SIGART Bulletin,1,db/journals/sigart/sigart5.html#KietzD94,http://doi.acm.org/10.1145/181668.181674 +J. P. E. Hodgson,Interactive problem solving.,1986,98,SIGART Newsletter,,db/journals/sigart/sigartn98.html#Hodgson86,http://doi.acm.org/10.1145/15923.15925 +Bruce W. Ballard,"Natural Language interfaces to ""layered"" domains: Duke University.",1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Ballard82,http://doi.acm.org/10.1145/1056663.1056688 +Susanne M. Humphrey,Selected AI-Related Dissertations Assembled.,1988,106,SIGART Newsletter,,db/journals/sigart/sigartn106.html#HumphreyK88,http://doi.acm.org/10.1145/54350.1059597 +Jean T. Monterege,The creation of digital consciousness.,1989,109,SIGART Newsletter,,db/journals/sigart/sigartn109.html#Monterege89,http://doi.acm.org/10.1145/70632.70636 +Keith Price,New books.,1988,105,SIGART Newsletter,,db/journals/sigart/sigartn105.html#Price88d,http://doi.acm.org/10.1145/49093.1058126 +Carl G. Looney,Toward expert systems on a chip.,1986,98,SIGART Newsletter,,db/journals/sigart/sigartn98.html#LooneyA86,http://doi.acm.org/10.1145/15923.15927 +David Gelperin,Conjectures and counterexamples.,1972,34,SIGART Newsletter,,db/journals/sigart/sigartn34.html#Gelperin72,http://doi.acm.org/10.1145/1056587.1056592 +Karen T. Sutherland,Book reviews.,2000,11,Intelligence,3,db/journals/sigart/sigart11.html#Sutherland00b,http://doi.acm.org/10.1145/350752.350767 +Gerard Salton,Automatic indexing of natural language texts: Cornell University.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Salton82,http://doi.acm.org/10.1145/1056663.1056686 +Clark Elliott,"Hunting for the holy grail with ""emotionally intelligent"" virtual actors.",1998,9,SIGART Bulletin,1,db/journals/sigart/sigart9.html#Elliott98,http://doi.acm.org/10.1145/294828.294831 +William G. Wong,Arrays and assignment in prolog.,1987,102,SIGART Newsletter,,db/journals/sigart/sigartn102.html#Wong87,http://doi.acm.org/10.1145/36970.36971 +N. S. Shridharan,The heuristic programming/heuristic DENDRAL project.,1973,39,SIGART Newsletter,,db/journals/sigart/sigartn39.html#Shridharan73,http://doi.acm.org/10.1145/1045154.1045159 +D. Sriram,AI in engineering.,1985,92,SIGART Newsletter,,db/journals/sigart/sigartn92.html#SriramJ85,http://doi.acm.org/10.1145/1056548.1056553 +Brian M. Slator,Extracting lexical knowledge from dictionary text.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Slator89,http://doi.acm.org/10.1145/63266.63305 +Michael P. Smith,Book review: The Logical Foundations of Artificial Intelligence. by Michael R. Genesereth and Nils Nilsson (Morgan Kaufmann 1987).,1988,104,SIGART Newsletter,,db/journals/sigart/sigartn104.html#Smith88,http://doi.acm.org/10.1145/44019.1058036 +C. S. Kwok,A note on sorting Prolog assertions.,1985,91,SIGART Newsletter,,db/journals/sigart/sigartn91.html#Kwok85,http://doi.acm.org/10.1145/1056541.1056545 +Steve Coles,Computer to model nervous system of lobster at Carnegie-Mellon.,1973,38,SIGART Newsletter,,db/journals/sigart/sigartn38.html#Coles73,http://doi.acm.org/10.1145/1056781.1056783 +Carla P. Gomes,ABA: An Assignment Based Algorithm for Resource Allocation.,1996,7,SIGART Bulletin,1,db/journals/sigart/sigart7.html#GomesH96,http://doi.acm.org/10.1145/230062.230063 +Beau Sheil,Interlisp-D: further steps in the flight from time-sharing.,1981,77,SIGART Newsletter,,db/journals/sigart/sigartn77.html#Sheil81,http://doi.acm.org/10.1145/1056743.1056745 +Lee D. Erman,Overview of the hearsay speech understanding research.,1976,56,SIGART Newsletter,,db/journals/sigart/sigartn56.html#Erman76b,http://doi.acm.org/10.1145/1045259.1045262 +Nancy L. Tinkham,The Stage One Turing Test as an Artificial Intelligence Class Exercise.,1995,6,SIGART Bulletin,4,db/journals/sigart/sigart6.html#TinkhamP95,http://doi.acm.org/10.1145/222267.222269 +Roger C. Schank,The Weizenbaum controversy.,1976,59,SIGART Newsletter,,db/journals/sigart/sigartn59.html#Schank76,http://doi.acm.org/10.1145/1045270.1045271 +Karen T. Sutherland,Book reviews.,1999,10,Intelligence,4,db/journals/sigart/sigart10.html#Sutherland99a,http://doi.acm.org/10.1145/322880.322886 +Jonathan Stillman,Tachyon: A Constraint-Based Temporal Model and its Implementation.,1993,4,SIGART Bulletin,3,db/journals/sigart/sigart4.html#StillmanAD93,http://doi.acm.org/10.1145/152947.1064735 +Richard Rohwer,The Time Dimension of Neural Network Models.,1994,5,SIGART Bulletin,3,db/journals/sigart/sigart5.html#Rohwer94,http://doi.acm.org/10.1145/181911.181917 +Richard M. Young,Mixtures of strategies in structurally adaptive production systems: examples from seriation and subtraction.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Young77,http://doi.acm.org/10.1145/1045343.1045378 +Rachel Reichman,A computational module for spontaneous discourse: UCSD.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Reichman82,http://doi.acm.org/10.1145/1056663.1056678 +Lee D. Erman,Chess.,1976,56,SIGART Newsletter,,db/journals/sigart/sigartn56.html#Erman76a,http://doi.acm.org/10.1145/1045259.1045260 +Steve Coles,Fourth United States computer chess championship from ACM-73 news release.,1973,41,SIGART Newsletter,,db/journals/sigart/sigartn41.html#Coles73b,http://doi.acm.org/10.1145/1045171.1045175 +Jack Buchanan,Chess.,1975,50,SIGART Newsletter,,db/journals/sigart/sigartn50.html#Buchanan75,http://doi.acm.org/10.1145/1045215.1045218 +Wesley E. Snyder,The CSL vision system.,1974,45,SIGART Newsletter,,db/journals/sigart/sigartn45.html#Snyder74,http://doi.acm.org/10.1145/1045220.1045221 +Richard S. Wallace,An easy implementation of PiL (Prolog in Lisp).,1983,85,SIGART Newsletter,,db/journals/sigart/sigartn85.html#Wallace83,http://doi.acm.org/10.1145/1056635.1056638 +Larry R. Harris,Research at the Artificial Intelligence corp.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Harris82,http://doi.acm.org/10.1145/1056663.1056670 +Karen Sparck Jones,Research at U. of Cambridge.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#JonesBT82,http://doi.acm.org/10.1145/1056663.1056679 +Drew McDermott,Symbol-mapping: a technical problem in PLANNER-like systems.,1975,51,SIGART Newsletter,,db/journals/sigart/sigartn51.html#McDermott75,http://doi.acm.org/10.1145/1045231.1045232 +Claus-Rainer Rollinger,Projects at Technische Universitaet Berlin.,1982,80,SIGART Newsletter,,db/journals/sigart/sigartn80.html#Rollinger82,http://doi.acm.org/10.1145/1056176.1056181 +Benjamin W. Wah,Survey on special purpose computer architectures for AI.,1986,96,SIGART Newsletter,,db/journals/sigart/sigartn96.html#WahL86,http://doi.acm.org/10.1145/15715.15718 +Paul McKevitt,Conference review.,2000,11,Intelligence,3,db/journals/sigart/sigart11.html#McKevittMN00,http://doi.acm.org/10.1145/350752.350764 +Karen T. Sutherland,Book reviews.,2001,12,Intelligence,4,db/journals/sigart/sigart12.html#Sutherland01d,http://doi.acm.org/10.1145/504313.504327 +Alfonso Gerevini,Temporal Reasoning in Timegraph I-II.,1993,4,SIGART Bulletin,3,db/journals/sigart/sigart4.html#GereviniSS93,http://doi.acm.org/10.1145/152947.152953 +Lee D. Erman,Chess and Go-Moku.,1976,59,SIGART Newsletter,,db/journals/sigart/sigartn59.html#Erman76d,http://doi.acm.org/10.1145/1045270.1045274 +J. Elliott Smith,Book review: Readings in Knowledge Representation. Edited by Ronald J. Brachman and Hector J. Levesque (Morgan Kaufmann Publishers).,1986,98,SIGART Newsletter,,db/journals/sigart/sigartn98.html#Smith86,http://doi.acm.org/10.1145/15923.1058024 +Erhard Konrad,Critical remarks about a paper on limitations for artificial intelligence.,1978,67,SIGART Newsletter,,db/journals/sigart/sigartn67.html#Konrad78,http://doi.acm.org/10.1145/1045443.1045444 +Carole D. Hafner,Natural language database query project: General Motors Research Laboratories.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Hafner82,http://doi.acm.org/10.1145/1056663.1056694 +Stuart Lowry,Conference review.,1999,10,Intelligence,3,db/journals/sigart/sigart10.html#Lowry99,http://doi.acm.org/10.1145/318964.318970 +Stuart C. Shapiro,Case Studies of SNePS.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#Shapiro91,http://doi.acm.org/10.1145/122296.122316 +Ted Shortliffe,Some considerations for the implementation of knowledge-based expert systems.,1975,55,SIGART Newsletter,,db/journals/sigart/sigartn55.html#ShortliffeD75,http://doi.acm.org/10.1145/1045253.1045254 +Robert L. Causey,Book review: Artificial Minds By Stan Franklin (MIT Press).,1998,9,SIGART Bulletin,1,db/journals/sigart/sigart9.html#Causey98,http://doi.acm.org/10.1145/294828.1067898 +Deepak Kumar,Curriculum descant: pedagogical dimensions of game playing.,1999,10,Intelligence,1,db/journals/sigart/sigart10.html#Kumard99,http://doi.acm.org/10.1145/298475.298480 +Marianne LaFrance,The quality of expertise: implications of expert-novice differences for knowledge acquisition.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#LaFrance89,http://doi.acm.org/10.1145/63266.63267 +Steve Lawrence,Accessibility of information on the Web.,2000,11,Intelligence,1,db/journals/sigart/sigart11.html#LawrenceG00,http://doi.acm.org/10.1145/333175.333181 +Drew McDermott,Artificial intelligence meets natural stupidity.,1976,57,SIGART Newsletter,,db/journals/sigart/sigartn57.html#McDermott76,http://doi.acm.org/10.1145/1045339.1045340 +Deepak N. Kumar,Curriculum descant: How much programming? What kind?.,2000,11,Intelligence,4,db/journals/sigart/sigart11.html#Kumar00b,http://doi.acm.org/10.1145/355137.355140 +Christopher Riesbeck,An expectation-driven production system for natural language understanding.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Riesbeck77,http://doi.acm.org/10.1145/1045343.1045386 +Marti A. Hearst,"Overview of the Symposium ""On the Instruction of Introductory AI"".",1995,6,SIGART Bulletin,2,db/journals/sigart/sigart6.html#Hearst95,http://doi.acm.org/10.1145/201977.201979 +Joseph S. Fulda,The Logic of the Whole Truth.,1992,3,SIGART Bulletin,2,db/journals/sigart/sigart3.html#Fulda92,http://doi.acm.org/10.1145/130700.130702 +Keith Price,Performance and Evaluation of Lisp by R. Gabriel (MIT Press).,1987,99,SIGART Newsletter,,db/journals/sigart/sigartn99.html#Price87a,http://doi.acm.org/10.1145/24667.1058033 +Christian Jacquemin,A Temporal Connectionist Approach to Natural Language.,1994,5,SIGART Bulletin,3,db/journals/sigart/sigart5.html#Jacquemin94,http://doi.acm.org/10.1145/181911.181913 +Thalia Kafatou,Is the digital computer the right tool for artificial intelligence?,1980,73,SIGART Newsletter,,db/journals/sigart/sigartn73.html#Kafatou80,http://doi.acm.org/10.1145/1056768.1056771 +Harley R. Myler,Automated design data capture using relaxation techniques.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#MylerG89,http://doi.acm.org/10.1145/63266.63301 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1986,98,SIGART Newsletter,,db/journals/sigart/sigartn98.html#HumphreyK86b,http://doi.acm.org/10.1145/15923.1058026 +Larry O. Rouse,An eclectic 5th generation architecture for ultra high speed computing.,1986,95,SIGART Newsletter,,db/journals/sigart/sigartn95.html#RouseFG86,http://doi.acm.org/10.1145/1056563.1056569 +Robert Balzer,On the use of programming knowledge to understand informal process descriptions.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#BalzerGW77,http://doi.acm.org/10.1145/1045343.1045387 +Philip R. Cohen,Workshop on social plans and language.,1978,66,SIGART Newsletter,,db/journals/sigart/sigartn66.html#CohenB78,http://doi.acm.org/10.1145/1045416.1045418 +Christopher A. Welty,Backtracking: and the winner is....,2000,11,Intelligence,4,db/journals/sigart/sigart11.html#Welty00a,http://doi.acm.org/10.1145/355137.355145 +Daniel E. O'Leary,Knowledge management for best practices.,1999,10,Intelligence,4,db/journals/sigart/sigart10.html#OLearyS99,http://doi.acm.org/10.1145/322880.322879 +Steve Coles,AI in the media.,1974,47,SIGART Newsletter,,db/journals/sigart/sigartn47.html#Coles74a,http://doi.acm.org/10.1145/1045190.1045194 +Nigel Shadbolt,The empirical study of knowledge elicitation techniques.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#ShadboltB89,http://doi.acm.org/10.1145/63266.63268 +A. Bolour,The role of time in information processing: a survey.,1982,80,SIGART Newsletter,,db/journals/sigart/sigartn80.html#BolourADW82,http://doi.acm.org/10.1145/1056176.1056180 +D. R. Hobaugh,AI update.,2001,12,Intelligence,4,db/journals/sigart/sigart12.html#Hobaugh01,http://doi.acm.org/10.1145/504313.504317 +Kwok-bun Yue,Some heuristics for playing Mastermind.,1986,98,SIGART Newsletter,,db/journals/sigart/sigartn98.html#Yue86,http://doi.acm.org/10.1145/15923.15924 +Raymond D. Gumb,Reasonable breadth-biased: A algorithms.,1981,78,SIGART Newsletter,,db/journals/sigart/sigartn78.html#Gumb81,http://doi.acm.org/10.1145/1056737.1056739 +Keith Price,Book review: Lisp Lore: A Guide to Programming the Lisp Machine by: Hank Bromley Kluwer (Academic Publishers).,1987,100,SIGART Newsletter,,db/journals/sigart/sigartn100.html#Price87b,http://doi.acm.org/10.1145/24671.1057628 +Deepak Kumar,Undergraduate AI and its Non-imperative Prerequisite.,1995,6,SIGART Bulletin,2,db/journals/sigart/sigart6.html#KumarW95,http://doi.acm.org/10.1145/201977.201982 +Nitish Manocha,Cover story: structural Web search using a graph-based discovery system.,2001,12,Intelligence,1,db/journals/sigart/sigart12.html#ManochaCH01,http://doi.acm.org/10.1145/376451.376466 +Keith Price,Books.,1983,85,SIGART Newsletter,,db/journals/sigart/sigartn85.html#Price83b,http://doi.acm.org/10.1145/1056635.1056636 +Thierry Catfolis,Mapping a Complex Temporal Problem into a Combination of Static and Dynamic Neural Networks.,1994,5,SIGART Bulletin,3,db/journals/sigart/sigart5.html#Catfolis94,http://doi.acm.org/10.1145/181911.181914 +Diana F. Gordon,Using cautious heuristics to bias generlization and guide example section.,1988,105,SIGART Newsletter,,db/journals/sigart/sigartn105.html#Gordon88,http://doi.acm.org/10.1145/49093.49094 +Douglas B. Lenat,Designing a rule system that searches for scientific discoveries.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#LenatH77,http://doi.acm.org/10.1145/1045343.1045355 +William S. Faught,Conversational action patterns in dialogs.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Faught77a,http://doi.acm.org/10.1145/1045343.1045382 +Robert Nado,JOSIE: An Integration of Specialized Representation and Reasoning Tools.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#NadoBF91,http://doi.acm.org/10.1145/122296.122312 +Abdul Sakib Mondal,A multi-agent system for sales order processing.,2001,12,Intelligence,3,db/journals/sigart/sigart12.html#MondalJ01,http://doi.acm.org/10.1145/383824.383831 +Christopher A. Welty,Backtracking: still garbage collecting.,1999,10,Intelligence,3,db/journals/sigart/sigart10.html#WeltyH99,http://doi.acm.org/10.1145/318964.318975 +Keith Oatley,AISB summer school on knowledge systems.,1974,44,SIGART Newsletter,,db/journals/sigart/sigartn44.html#Oatley74,http://doi.acm.org/10.1145/1045183.1045185 +Patrick Cousot,Automatic synthesis of optimal invariant assertions: Mathematical foundations.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#CousotC77,http://doi.acm.org/10.1145/872736.806926 +Jose Ramirez G.,Use of structure-based models in the development of expert systems.,1989,109,SIGART Newsletter,,db/journals/sigart/sigartn109.html#G89,http://doi.acm.org/10.1145/70632.70638 +Daniel Weinreb,The Lisp Machine manual.,1981,78,SIGART Newsletter,,db/journals/sigart/sigartn78.html#WeinrebM81,http://doi.acm.org/10.1145/1056737.1056738 +Chuck Rieger,Spontaneous computation in cognitive models.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Rieger77,http://doi.acm.org/10.1145/1045343.1045356 +Thea Iberall,Book review: Theoretical Aspects of Reasoning about Knowledge.,1987,102,SIGART Newsletter,,db/journals/sigart/sigartn102.html#IberallM87,http://doi.acm.org/10.1145/36970.1057639 +Tom Murray,A Knowledge Acquisition Tool for Intelligent Computer Tutors.,1991,2,SIGART Bulletin,2,db/journals/sigart/sigart2.html#MurrayW91,http://doi.acm.org/10.1145/122319.122324 +Paul Creelman,Book review: L'espace en Français by Claude Vandeloise (Editions du Seuil).,1988,104,SIGART Newsletter,,db/journals/sigart/sigartn104.html#Creelman88,http://doi.acm.org/10.1145/44019.1058039 +Martha Stone,Solving mechanics problems: PAT - pulleys and things.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Stone77,http://doi.acm.org/10.1145/1045283.1045316 +Kenneth Mark Colby,Ten criticisms of parry.,1974,48,SIGART Newsletter,,db/journals/sigart/sigartn48.html#Colby74,http://doi.acm.org/10.1145/1045200.1045202 +William J. Mills,AI online: the coverage of the literature of artificial intelligence in online bibliographic databases.,1989,107,SIGART Newsletter,,db/journals/sigart/sigartn107.html#Mills89,http://doi.acm.org/10.1145/65751.65753 +Jaime G. Carbonell,PRODIGY: An Integrated Architecture for Planning and Learning.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#CarbonellEGJKMV91,http://doi.acm.org/10.1145/122344.122353 +Thomas R. Gruber,The design of an automated assistant for acquiring strategic knowledge.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#GruberC89,http://doi.acm.org/10.1145/63266.63290 +D. Sriram,Knowledge-Based Expert Systems in Engineering - An Annotated Bibliography.,1989,109,SIGART Newsletter,,db/journals/sigart/sigartn109.html#SriramL89, +Ian H. Witten,"The ""Worm"" Programs - Early Experience withh a Distributed Intelligence.",1990,1,SIGART Bulletin,2,db/journals/sigart/sigart1.html#WittenT90,http://doi.acm.org/10.1145/84234.84254 +Alexander J. Pasik,Table-driven rules in expert systems.,1984,87,SIGART Newsletter,,db/journals/sigart/sigartn87.html#PasikS84,http://doi.acm.org/10.1145/1056648.1056650 +Dennis F. Kibler,Program manipulation via an efficient production system.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#KiblerNS77,http://doi.acm.org/10.1145/872736.806946 +Robert St. Amant,Introductory AI educational resources on the web.,2001,12,Intelligence,4,db/journals/sigart/sigart12.html#AmantY01c,http://doi.acm.org/10.1145/504313.504319 +Serge Abiteboul,A systematic method to solve the Rubik's cube problem.,1981,78,SIGART Newsletter,,db/journals/sigart/sigartn78.html#AbiteboulM81,http://doi.acm.org/10.1145/1056737.1056740 +Harold M. Hastings,Biologically motivated machine intelligence.,1986,95,SIGART Newsletter,,db/journals/sigart/sigartn95.html#HastingsW86,http://doi.acm.org/10.1145/1056563.1056566 +Suresh Subramanian,Compiling rules from constraint satisfaction problem solving.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#SubramanianF89,http://doi.acm.org/10.1145/63266.63307 +Jaime G. Carbonell,Machine learning research.,1981,77,SIGART Newsletter,,db/journals/sigart/sigartn77.html#Carbonell81,http://doi.acm.org/10.1145/1056743.1056744 +Warren Teitelman,INTERLISP documentation.,1974,44,SIGART Newsletter,,db/journals/sigart/sigartn44.html#Teitelman74,http://doi.acm.org/10.1145/1045183.1045186 +Harold Boley,Contributions to a practice-relevant AI theory.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Boley77,http://doi.acm.org/10.1145/1045283.1045303 +Gregg Collins,Model-Based Integration of Planning and Learning.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#CollinsBKF91,http://doi.acm.org/10.1145/122344.122354 +Keith Price,New Books.,1987,99,SIGART Newsletter,,db/journals/sigart/sigartn99.html#Price87,http://doi.acm.org/10.1145/24667.1058030 +Neil M. Goldman,The inference of domain structure from informal process descriptions.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#GoldmanBW77,http://doi.acm.org/10.1145/1045343.1045388 +Nicola Guarino,A Concise Presentation if ITL.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#Guarino91,http://doi.acm.org/10.1145/122296.122305 +Jonathan Slocum,The LRC machine translation system: Linguistics Research Center.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Slocum82,http://doi.acm.org/10.1145/1056663.1056707 +Susan Weber McRoy,Creating natural language ouput for real-time applications.,2001,12,Intelligence,2,db/journals/sigart/sigart12.html#McRoyCA01,http://doi.acm.org/10.1145/378116.378122 +Joseph Schreiner,EXPERIPLAN: an expert system that selects statistical analyses for research studies.,1984,89,SIGART Newsletter,,db/journals/sigart/sigartn89.html#Schreiner84,http://doi.acm.org/10.1145/1056521.1056525 +J. Larson,Inductive inference of VL decision rules.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#LarsonM77,http://doi.acm.org/10.1145/1045343.1045369 +Richard R. Burton,Semantic grammar: an engineering technique for constructing natural language understanding systems.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Burton77,http://doi.acm.org/10.1145/1045283.1045290 +Frederick Hayes-Roth,The role of partial and best matches in knowledge systems.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Hayes-Roth77a,http://doi.acm.org/10.1145/1045343.1045390 +Ralph M. Weischedel,Natural language processing systems and III-formed input: University of Delaware/Sperry Univac.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#WeischedelRAS82,http://doi.acm.org/10.1145/1056663.1056687 +Ivan Bratko,Applications of Inductive Logic Programming.,1994,5,SIGART Bulletin,1,db/journals/sigart/sigart5.html#BratkoK94,http://doi.acm.org/10.1145/181668.181678 +Gian Piero Zarri,An interactive information retrieval of biographical data.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Zarri77,http://doi.acm.org/10.1145/1045283.1045310 +,Natural language research at the University of Pennsylvania.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#X82,http://doi.acm.org/10.1145/1056663.1056718 +Murali Krishnamurthi,Knowledge acquisition in a machine fault diagnosis shell.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#KrishnamurthiU89,http://doi.acm.org/10.1145/63266.63277 +Amruth N. Kumar,Announcements.,2000,11,Intelligence,2,db/journals/sigart/sigart11.html#Kumar00a,http://www.acm.org/pubs/citations/journals/intelligence/2000-11-2/p39-kumar/ +Joe Marks,Letter from the chair.,2001,12,Intelligence,3,db/journals/sigart/sigart12.html#Marks01,http://doi.acm.org/10.1145/383824.383825 +Lee D. Erman,Chess and backgammon.,1976,58,SIGART Newsletter,,db/journals/sigart/sigartn58.html#Erman76c,http://doi.acm.org/10.1145/1045264.1045268 +Alan W. Biermann,Natural Language programming: Duke University.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#BiermannBFRR82,http://doi.acm.org/10.1145/1056663.1056689 +Joe Marks,Letter from the chair.,2001,12,Intelligence,4,db/journals/sigart/sigart12.html#Marks01a,http://doi.acm.org/10.1145/504313.504315 +Syed S. Ali,Links: authoring tools for AI.,1999,10,Intelligence,3,db/journals/sigart/sigart10.html#Ali99b,http://doi.acm.org/10.1145/318964.318966 +Richard L. Taylor,A Farsi (Persian) business AID.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Taylor77,http://doi.acm.org/10.1145/1045283.1045328 +A. J. Fenanzo Jr.,Darwinian evolution as a paradigm for AI research.,1986,97,SIGART Newsletter,,db/journals/sigart/sigartn97.html#Fenanzo86,http://doi.acm.org/10.1145/15719.15721 +Andee Rubin,The communication of plans in different media.,1978,66,SIGART Newsletter,,db/journals/sigart/sigartn66.html#Rubin78,http://doi.acm.org/10.1145/1045416.1045428 +Paola Velardi,Acquisition of semantic patterns from a natural corpus of texts.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#VelardiPM89,http://doi.acm.org/10.1145/63266.63281 +Jack Buchanan,Chess and Go.,1975,51,SIGART Newsletter,,db/journals/sigart/sigartn51.html#Buchanan75a,http://doi.acm.org/10.1145/1045231.1045234 +John Dinsmore,Book review: Mental Spaces: Aspects of Meaning Construction in Natural Language. by Gilles Fauconnier (Bradford/MIT Press).,1987,99,SIGART Newsletter,,db/journals/sigart/sigartn99.html#Dinsmore87,http://doi.acm.org/10.1145/24667.1058031 +Lee D. Erman,Chess.,1975,52,SIGART Newsletter,,db/journals/sigart/sigartn52.html#Erman75,http://doi.acm.org/10.1145/1045236.1045240 +Karen T. Sutherland,Book reviews.,2000,11,Intelligence,1,db/journals/sigart/sigart11.html#Sutherland00,http://doi.acm.org/10.1145/333175.333182 +Alan M. Frisch,An investigation into inference with restricted quantification and a taxonomic representation.,1985,91,SIGART Newsletter,,db/journals/sigart/sigartn91.html#Frisch85,http://doi.acm.org/10.1145/1056541.1056546 +Christopher A. Welty,Backtracking: the eternal flame.,2001,12,Intelligence,1,db/journals/sigart/sigart12.html#Welty01,http://doi.acm.org/10.1145/376451.376470 +Aravind K. Joshi,Some extensions of a system for inferencing on partial information.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Joshi77a,http://doi.acm.org/10.1145/1045343.1045347 +David L. Sallach,Book review: Artificial Intelligence with Statistical Pattern Recognition by Edward A. Patrick and James M. Fattu (Prentice-Hall Inc.).,1989,109,SIGART Newsletter,,db/journals/sigart/sigartn109.html#Sallach89,http://doi.acm.org/10.1145/70632.1059728 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1985,92,SIGART Newsletter,,db/journals/sigart/sigartn92.html#HumphreyK85a,http://doi.acm.org/10.1145/1056548.1056549 +Lee D. Erman,Abstracts.,1975,53,SIGART Newsletter,,db/journals/sigart/sigartn53.html#Erman75a,http://doi.acm.org/10.1145/1216504.1216507 +Susanne M. Humphrey,The elucidation of non-monoTONous reasoning and related notions in artificial intelligence.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Humphrey89,http://doi.acm.org/10.1145/63266.63309 +Gonzalo de la Pena Casares,The RM-CELL: A set of old ideas that produce new results.,1986,97,SIGART Newsletter,,db/journals/sigart/sigartn97.html#Casares86,http://doi.acm.org/10.1145/15719.15723 +Karen T. Sutherland,Book reviews.,1999,10,Intelligence,1,db/journals/sigart/sigart10.html#Sutherland99,http://doi.acm.org/10.1145/298475.298494 +Barbara Brown,The taming of an expert: an anecdotal report.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Brown89a,http://doi.acm.org/10.1145/63266.63283 +Alan E. Filsinger,Photographic storage of AI information.,1980,73,SIGART Newsletter,,db/journals/sigart/sigartn73.html#Filsinger80,http://doi.acm.org/10.1145/1056768.1056773 +Marshall C. Yovits,Ohio State University.,1974,46,SIGART Newsletter,,db/journals/sigart/sigartn46.html#Yovits74,http://doi.acm.org/10.1145/1056793.1056798 +Deepak Kumar,Curriculum descant: the AI education repository.,1999,10,Intelligence,4,db/journals/sigart/sigart10.html#Kumar99f,http://doi.acm.org/10.1145/322880.322884 +Lisa Meeden,News.,1999,10,Intelligence,4,db/journals/sigart/sigart10.html#Meeden99c,http://doi.acm.org/10.1145/322880.322882 +H. J. Messerschmidt,Note on the KPK-table size.,1980,69,SIGART Newsletter,,db/journals/sigart/sigartn69.html#Messerschmidt80,http://doi.acm.org/10.1145/1056433.1056435 +Warwick Yolks,There's always room at the top or how frames gave my life meaning.,1975,53,SIGART Newsletter,,db/journals/sigart/sigartn53.html#Yolks75,http://doi.acm.org/10.1145/1216504.1216508 +John Batali,How Much AI Does a Cognitive Science Major Need to Know?,1995,6,SIGART Bulletin,2,db/journals/sigart/sigart6.html#Batali95,http://doi.acm.org/10.1145/201977.201985 +Peggy M. Karp,News from the Stanford University AI project.,1973,38,SIGART Newsletter,,db/journals/sigart/sigartn38.html#Karp73,http://doi.acm.org/10.1145/1056781.1056782 +Douglas Blank,News.,2000,11,Intelligence,4,db/journals/sigart/sigart11.html#Blank00b,http://doi.acm.org/10.1145/355137.355139 +Robert Wilensky,Research in natural language processing: U. of California at Berkeley.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Wilensky82,http://doi.acm.org/10.1145/1056663.1056675 +Ruven Brooks,Production systems as control structures for programming languages.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Brooks77,http://doi.acm.org/10.1145/1045343.1045362 +Angelo Monfroglio,Graphical interface for logic programming.,1987,101,SIGART Newsletter,,db/journals/sigart/sigartn101.html#Monfroglio87,http://doi.acm.org/10.1145/29264.29267 +Louis J. Hoebel,Backtracking: the Chinese food problem.,1999,10,Intelligence,1,db/journals/sigart/sigart10.html#HoebelW99,http://doi.acm.org/10.1145/298475.298496 +Keith Oatley,European AISB summer school on knowledge systems.,1973,43,SIGART Newsletter,,db/journals/sigart/sigartn43.html#Oatley73,http://doi.acm.org/10.1145/1056786.1056788 +Henry H. Leitner,"The determination and conceptual structuring of restricted domains of discourse for ""intelligent"" interactive systems.",1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Leitner77,http://doi.acm.org/10.1145/1045283.1045323 +Linda L. Rodi,Putting the expert in charge: graphical knowledge acquisition for fault diagnosis and repair.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#RodiPD89,http://doi.acm.org/10.1145/63266.63273 +Lisa Meeden,News.,2000,11,Intelligence,1,db/journals/sigart/sigart11.html#Meeden00,http://doi.acm.org/10.1145/333175.333177 +Philip C. Jackson,Introduction to artificial intelligence: an AI text.,1974,47,SIGART Newsletter,,db/journals/sigart/sigartn47.html#Jackson74,http://doi.acm.org/10.1145/1045190.1045191 +Francis D. Tuggle,Thoughts on Computer Programs that play Chess.,1973,43,SIGART Newsletter,,db/journals/sigart/sigartn43.html#Tuggle73,http://doi.acm.org/10.1145/1056786.1739260 +Erann Gat,Point of view: Lisp as an alternative to Java.,2000,11,Intelligence,4,db/journals/sigart/sigart11.html#Gat00,http://doi.acm.org/10.1145/355137.355142 +Barry G. Silverman,Coping with ongoing knowledge acquisition from collaborating hierarchies of experts.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#SilvermanWW89,http://doi.acm.org/10.1145/63266.63302 +Robert C. Berwick,Research at MIT: AI Laboratory.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Berwick82,http://doi.acm.org/10.1145/1056663.1056710 +Subbarao Kambhampati,A Comparative Analysis of Partial Order Planning and Task Reduction Planning.,1995,6,SIGART Bulletin,1,db/journals/sigart/sigart6.html#Kambhampati95,http://doi.acm.org/10.1145/202187.202192 +Richard Stokey,AI factory scheduling: multiple problem formulations.,1989,110,SIGART Newsletter,,db/journals/sigart/sigartn110.html#Stokey89,http://doi.acm.org/10.1145/74664.74665 +Hsin-Hsen Yao,Transformation approach for consistency in object-oriented knowledge bases.,1989,109,SIGART Newsletter,,db/journals/sigart/sigartn109.html#YaoK89,http://doi.acm.org/10.1145/70632.70639 +Bob Krovetz,Selected AI-Related Dissertations.,1986,97,SIGART Newsletter,,db/journals/sigart/sigartn97.html#KrovetzH86,http://doi.acm.org/10.1145/15719.1058002 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1988,105,SIGART Newsletter,,db/journals/sigart/sigartn105.html#HumphreyK88a,http://doi.acm.org/10.1145/49093.1058128 +John McCallum,Maintenance of expert systems: life-cycle validity.,1985,94,SIGART Newsletter,,db/journals/sigart/sigartn94.html#McCallum85,http://doi.acm.org/10.1145/1056313.1056316 +David M. W. Powers,Neurolinguistics and psycholinguistics as a basis for computer acquisition of natural language.,1983,84,SIGART Newsletter,,db/journals/sigart/sigartn84.html#Powers83,http://doi.acm.org/10.1145/1056623.1056625 +Efraim Shaket,Fuzzy semantics for a natural-like language defined over a world of blocks.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Shaket77,http://doi.acm.org/10.1145/1045283.1045322 +Drew McDermott,A deductive model of control of a problem solver.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#McDermott77,http://doi.acm.org/10.1145/1045343.1045345 +Christopher R. Westphal,A compendium of knowledge acquisition references.,1989,110,SIGART Newsletter,,db/journals/sigart/sigartn110.html#WestphalB89,http://doi.acm.org/10.1145/74664.74667 +Larry E. Travis,Data base system for AI applications.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Travis77,http://doi.acm.org/10.1145/1045283.1045311 +Mache Creeger,Lambda machine overview.,1982,80,SIGART Newsletter,,db/journals/sigart/sigartn80.html#Creeger82,http://doi.acm.org/10.1145/1056176.1056179 +Roger C. Schank,A goal-directed production system for story understanding.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#SchankW77,http://doi.acm.org/10.1145/1045343.1045385 +Jean-Cédric Chappelier,Time in Neural Networks.,1994,5,SIGART Bulletin,3,db/journals/sigart/sigart5.html#ChappelierG94,http://doi.acm.org/10.1145/181911.181912 +Austin Tate,Characterising Plans as a Set of Constraints - the andlt*I-N-OVA>*Model - A Framework for Comparative Analysis.,1995,6,SIGART Bulletin,1,db/journals/sigart/sigart6.html#Tate95,http://doi.acm.org/10.1145/202187.202193 +D. J. H. Brown,A knowledge acquisition tool for decision support systems.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Brown89,http://doi.acm.org/10.1145/63266.63278 +Donald A. Waterman,Exemplary programming in RITA.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Waterman77,http://doi.acm.org/10.1145/1045343.1045368 +Phillip G. Bradford,A Formalization of the Turing Test.,1995,6,SIGART Bulletin,4,db/journals/sigart/sigart6.html#BradfordW95,http://doi.acm.org/10.1145/222267.222268 +Nils J. Nilsson,Evolutionary Artificial Intelligence.,1995,6,SIGART Bulletin,2,db/journals/sigart/sigart6.html#Nilsson95,http://doi.acm.org/10.1145/201977.201988 +Alan E. Filsinger,Approaching problem solving type behavior via the psychological process of instrumental conditioning.,1981,77,SIGART Newsletter,,db/journals/sigart/sigartn77.html#Filsinger81,http://doi.acm.org/10.1145/1056743.1056746 +Remko J. H. Scha,Philips question-answering system PHLIQA1.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Scha77,http://doi.acm.org/10.1145/1045283.1045291 +David L. Waltz,Research at the U. of Illinois.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Waltz82,http://doi.acm.org/10.1145/1056663.1056704 +Keith Price,New books.,1989,110,SIGART Newsletter,,db/journals/sigart/sigartn110.html#Price89,http://doi.acm.org/10.1145/74664.1059788 +Jan M. Zytkow,Integration of Knowledge and Method in Real-world Discovery.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Zytkow91,http://doi.acm.org/10.1145/122344.122381 +Keith Price,A comparison of human and computer vision systems: a tutorial.,1975,50,SIGART Newsletter,,db/journals/sigart/sigartn50.html#Price75,http://doi.acm.org/10.1145/1045215.1045217 +Elaine Iodice,Book review: Expert Systems 1987 Assessment of Technology and Applications by Terri C. Walker and Richard K. Miller (SEAl Technical Publications).,1988,104,SIGART Newsletter,,db/journals/sigart/sigartn104.html#Iodice88,http://doi.acm.org/10.1145/44019.1058038 +Pauline F. Micciche,Application of neurolinguistic techniques to knowledge acquisition.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#MiccicheL89,http://doi.acm.org/10.1145/63266.63270 +Steve Coles,Chess.,1973,43,SIGART Newsletter,,db/journals/sigart/sigartn43.html#Coles73c,http://doi.acm.org/10.1145/1056786.1056789 +Marie A. Bienkowski,Conference review: the 2000 SIGART/AAAI doctoral consortium.,2000,11,Intelligence,4,db/journals/sigart/sigart11.html#Bienkowski00,http://doi.acm.org/10.1145/355137.355143 +Tetsuo Sawaragi,Ecological interface enabling human-embodied cognition in mobile robot teleoperation.,2000,11,Intelligence,3,db/journals/sigart/sigart11.html#SawaragiH00,http://doi.acm.org/10.1145/350752.350761 +Aravind K. Joshi,Natural language processing.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Joshi77,http://doi.acm.org/10.1145/1045283.1045314 +Douglas B. Moran,Computational studies of formal theories of natural language: Oregon State University.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Moran82,http://doi.acm.org/10.1145/1056663.1056715 +Sergei Nirenburg,Machine translation of natural languages.,1985,92,SIGART Newsletter,,db/journals/sigart/sigartn92.html#Nirenburg85,http://doi.acm.org/10.1145/1056548.1056555 +Vladan Devedzic,Ontologies: borrowing from software patterns.,1999,10,Intelligence,3,db/journals/sigart/sigart10.html#Devedzic99,http://doi.acm.org/10.1145/318964.318968 +K. Campbell,Book review: Expert Systems 85. Edited by Martin Merry (British Computer Society).,1987,101,SIGART Newsletter,,db/journals/sigart/sigartn101.html#Campbell87,http://doi.acm.org/10.1145/29264.1057631 +H. P. Böhm,CSSA: Language concepts and programming methodology.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#BohmFR77,http://doi.acm.org/10.1145/872736.806938 +Vasudevan Jagannathan,Distributed artificial intelligence: an annotated bibliiography.,1986,95,SIGART Newsletter,,db/journals/sigart/sigartn95.html#JagannathanD86,http://doi.acm.org/10.1145/1056563.1056571 +C. Raymond Perrault,Some problems in planning indirect speech acts.,1978,66,SIGART Newsletter,,db/journals/sigart/sigartn66.html#Perrault78,http://doi.acm.org/10.1145/1045416.1045422 +Peter E. Hart,"Correction to ""A Formal Basis for the Heuristic Determination of Minimum Cost Paths"".",1972,37,SIGART Newsletter,,db/journals/sigart/sigartn37.html#HartNR72,http://doi.acm.org/10.1145/1056777.1056779 +Joyce Friedman,Formal and computational linguistics: University of Michigan.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Friedman82,http://doi.acm.org/10.1145/1056663.1056711 +J. Strother Moore,Automatic proof of correctness of a binary addition algorithm.,1975,52,SIGART Newsletter,,db/journals/sigart/sigartn52.html#Moore75,http://doi.acm.org/10.1145/1045236.1045238 +Erann Gat,Integrating Reaction and Planning in a Heterogeneous Asynchronous Architecture for Mobile Robot Navigation.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Gat91,http://doi.acm.org/10.1145/122344.122357 +Steve Cousins,Automatic menu generation.,1987,102,SIGART Newsletter,,db/journals/sigart/sigartn102.html#Cousins87,http://doi.acm.org/10.1145/36970.36972 +Joel H. Gyllenskog,Konane as a vehicle for teaching AI.,1976,56,SIGART Newsletter,,db/journals/sigart/sigartn56.html#Gyllenskog76,http://doi.acm.org/10.1145/1045259.1045261 +Zhengxin Chen,Integrated Use of Expert Systems at the K-Tree Level.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#ChenA91,http://doi.acm.org/10.1145/122344.1063800 +Matthew L. Ginsberg,The MVL Theorem Proving System.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#Ginsberg91,http://doi.acm.org/10.1145/122296.122304 +Warren J. Plath,Request: a natural language question-answering system.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Plath77,http://doi.acm.org/10.1145/1045283.1045297 +Michael D. Rychener,AI research at CMU: a brief summary.,1973,39,SIGART Newsletter,,db/journals/sigart/sigartn39.html#Rychener73,http://doi.acm.org/10.1145/1045154.1045158 +,Automation of reasoning classical papers in computational logic vol. I and vol. II.,1982,82,SIGART Newsletter,,db/journals/sigart/sigartn82.html#X82a,http://doi.acm.org/10.1145/1056602.1056603 +H. S. Hartl,Can humans think? - a general review of HI.,1989,109,SIGART Newsletter,,db/journals/sigart/sigartn109.html#Hartl89,http://doi.acm.org/10.1145/70632.70633 +A. Patricia Ambler,The Edinbugh versatile layout and assembly program.,1973,41,SIGART Newsletter,,db/journals/sigart/sigartn41.html#Ambler73,http://doi.acm.org/10.1145/1045171.1045172 +Jeffrey M. Bradshaw,Letter from the chair.,1999,10,Intelligence,3,db/journals/sigart/sigart10.html#Bradshaw99,http://doi.acm.org/10.1145/318964.318965 +Steve Coles,University of California at Berkeley.,1974,46,SIGART Newsletter,,db/journals/sigart/sigartn46.html#Coles74b,http://doi.acm.org/10.1145/1056793.1056799 +Peter Norvig,Playing Mastermind optimally.,1984,90,SIGART Newsletter,,db/journals/sigart/sigartn90.html#Norvig84a,http://doi.acm.org/10.1145/1056531.1056533 +Danny Kopec,Towards an expert/novice learning system with application to infectious disease.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#KopecLB89,http://doi.acm.org/10.1145/63266.63286 +Thies Wittig,System HANSA.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Wittig77,http://doi.acm.org/10.1145/1045283.1045306 +Alfred Mesguich,Some specifications for a natural query language: how is it possible to meet the casual user.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#MesguichN77,http://doi.acm.org/10.1145/1045283.1045336 +Ben Choi,Book review: Parallel Execution of Logic Programs by John S. Conery (Kluwer Academic Publiishers 1987).,1988,104,SIGART Newsletter,,db/journals/sigart/sigartn104.html#ChoiL88,http://doi.acm.org/10.1145/44019.1058035 +Costas Tsatsoulis,A Review Of Artificial Intelligence In Simulation.,1991,2,SIGART Bulletin,1,db/journals/sigart/sigart2.html#Tsatsoulis91,http://doi.acm.org/10.1145/122388.1062342 +Susan Weber McRoy,Building intelligent dialog systems.,1999,10,Intelligence,1,db/journals/sigart/sigart10.html#McRoyARC99,http://doi.acm.org/10.1145/298475.298484 +Guy L. Steele Jr.,Macaroni is better than spaghetti.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#Steele77,http://doi.acm.org/10.1145/872736.806933 +Janet L. Kolodner,Intelligent fact retrieval: Georgia Tech.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#KolodnerSSM82,http://doi.acm.org/10.1145/1056663.1056695 +Jeffrey M. Bradshaw,Letter from the chair.,2000,11,Intelligence,2,db/journals/sigart/sigart11.html#Bradshaw00a,http://doi.acm.org/10.1145/337897.337979 +Ron Brachman,Laboratory description.,1983,83,SIGART Newsletter,,db/journals/sigart/sigartn83.html#Brachman83,http://doi.acm.org/10.1145/1056613.1056615 +Raymond Reiter,AI research at the University of British Columbia.,1974,45,SIGART Newsletter,,db/journals/sigart/sigartn45.html#ReiterR74a,http://doi.acm.org/10.1145/1045220.1045222 +Nicholas V. Findler,Some humor in an A.I. qualifying exam.,1981,76,SIGART Newsletter,,db/journals/sigart/sigartn76.html#Findler81,http://doi.acm.org/10.1145/1056490.1056494 +Pattie Maes,The Agent Network Architecture (ANA).,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Maes91,http://doi.acm.org/10.1145/122344.122367 +Michael L. Baird,Semantic picture recognition.,1975,52,SIGART Newsletter,,db/journals/sigart/sigartn52.html#Baird75,http://doi.acm.org/10.1145/1045236.1045245 +Joshua Grass,Anytime Algorithm Development Tools.,1996,7,SIGART Bulletin,2,db/journals/sigart/sigart7.html#GrassZ96,http://doi.acm.org/10.1145/242587.242592 +Amruth N. Kumar,Announcements.,1999,10,Intelligence,3,db/journals/sigart/sigart10.html#Kumar99d,http://doi.acm.org/10.1145/318964.318972 +John K. Dixon,Short papers.,1972,34,SIGART Newsletter,,db/journals/sigart/sigartn34.html#Dixon72,http://doi.acm.org/10.1145/1056587.1056590 +Mark A. Musen,Knowledge acquisition at the metalevel: creation of custom-tailored knowledge-acquisition tools.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Musen89,http://doi.acm.org/10.1145/63266.63272 +Kenneth M. Ford,Knowledge acquisition from repertory grids using a logic of confirmation.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#FordP89,http://doi.acm.org/10.1145/63266.63289 +Joel D. Martin,Acquiring knowledge by explaining observed problem solving.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#MartinR89,http://doi.acm.org/10.1145/63266.63276 +Henry G. Baker,The incremental garbage collection of processes.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#BakerH77,http://doi.acm.org/10.1145/872736.806932 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1989,107,SIGART Newsletter,,db/journals/sigart/sigartn107.html#HumphreyK89c,http://doi.acm.org/10.1145/65751.1059601 +Francesca Rossi,Constraint satisfaction problems in logic programming.,1988,106,SIGART Newsletter,,db/journals/sigart/sigartn106.html#Rossi88,http://doi.acm.org/10.1145/54350.54352 +James F. Allen,The RHET System.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#Allen91,http://doi.acm.org/10.1145/122296.122297 +Susanne M. Humphrey,AI related dissertations.,1987,102,SIGART Newsletter,,db/journals/sigart/sigartn102.html#HumphreyK87c,http://doi.acm.org/10.1145/36970.36973 +Randall Davis,Generalized procedure calling and content-directed invocation.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#Davis77a,http://doi.acm.org/10.1145/872736.806931 +Jeffrey M. Bradshaw,Letter from the chair.,1999,10,Intelligence,4,db/journals/sigart/sigart10.html#Bradshaw99a,http://doi.acm.org/10.1145/322880.322881 +Jack Minker,Control structure of a pattern-directed search system.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Minker77,http://doi.acm.org/10.1145/1045343.1045348 +Daniel Coulon,Knowledge representation and natural language understanding.,1982,80,SIGART Newsletter,,db/journals/sigart/sigartn80.html#Coulon82,http://doi.acm.org/10.1145/1056176.1056183 +Steven A. Vere,Inductive learning of relational productions.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Vere77,http://doi.acm.org/10.1145/1045343.1045370 +Mehmet A. Orgun,Temporal and Modal Logic Programming: An Annotated Bibliography.,1994,5,SIGART Bulletin,3,db/journals/sigart/sigart5.html#Orgun94,http://doi.acm.org/10.1145/181911.181920 +Keith Price,Books.,1984,88,SIGART Newsletter,,db/journals/sigart/sigartn88.html#Price84d,http://doi.acm.org/10.1145/1056656.1056657 +Francis D. Tuggle,Book review: Artificial Intelligence in Economics and Management. Edited by L. P. Pau (North-Holland 1986).,1987,102,SIGART Newsletter,,db/journals/sigart/sigartn102.html#Tuggle87,http://doi.acm.org/10.1145/36970.1057640 +Donald Michie,Re-organization of AI in Edinburgh.,1974,48,SIGART Newsletter,,db/journals/sigart/sigartn48.html#Michie74,http://doi.acm.org/10.1145/1045200.1045201 +Eugene Charniak,The unification of language understanding and problem solving: Brown University.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#CharniakHKW82,http://doi.acm.org/10.1145/1056663.1056674 +W. Lewis Johnson,Letter from the Chair.,1999,10,Intelligence,2,db/journals/sigart/sigart10.html#Johnson99,http://www.acm.org/pubs/citations/journals/intelligence/1999-10-2/p6-johnson/ +Patrick J. Hayes,AI at Essex University.,1974,44,SIGART Newsletter,,db/journals/sigart/sigartn44.html#Hayes74,http://doi.acm.org/10.1145/1045183.1045184 +Alan Bundy,There is no best proof procedure.,1971,31,SIGART Newsletter,,db/journals/sigart/sigartn31.html#Bundy71,http://doi.acm.org/10.1145/1056578.1056580 +Eric A. Hansen,Monitoring Anytime Algorithms.,1996,7,SIGART Bulletin,2,db/journals/sigart/sigart7.html#HansenZ96,http://doi.acm.org/10.1145/242587.242593 +Amruth N. Kumar,Links.,1999,10,Intelligence,4,db/journals/sigart/sigart10.html#Kumar99e,http://doi.acm.org/10.1145/322880.322883 +Rok Sosic,3000000 Queens in Less Than One Minute.,1991,2,SIGART Bulletin,2,db/journals/sigart/sigart2.html#SosicG91,http://doi.acm.org/10.1145/122319.122325 +Charles Rich,Computer aided evolutionary design for software engineering.,1981,76,SIGART Newsletter,,db/journals/sigart/sigartn76.html#RichW81,http://doi.acm.org/10.1145/1056490.1056493 +Jonathan J. King,Special issue on AI and Database research.,1983,86,SIGART Newsletter,,db/journals/sigart/sigartn86.html#King83,http://doi.acm.org/10.1145/1056643.1056646 +Jack Buchanan,Chess.,1974,48,SIGART Newsletter,,db/journals/sigart/sigartn48.html#Buchanan74h,http://doi.acm.org/10.1145/1045200.1045204 +W. W. Bledsoe,First U.S. computer chess tournament.,1970,24,SIGART Newsletter,,db/journals/sigart/sigartn24.html#Bledsoe70,http://doi.acm.org/10.1145/1045151.1045152 +W. W. Bledsoe,Computer chess championship in Boston.,1972,34,SIGART Newsletter,,db/journals/sigart/sigartn34.html#Bledsoe72a,http://doi.acm.org/10.1145/1056587.1056589 +Pat Langley,A Design for the Icarus Architecture.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#LangleyMAIT91,http://doi.acm.org/10.1145/122344.122365 +Maja J. Mataric,Behavioral Synergy Without Explicit Integration.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Mataric91,http://doi.acm.org/10.1145/122344.122370 +Deepak Kumar,Architecture of an Intelligent Agent in SNePS.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#KumarS91,http://doi.acm.org/10.1145/122344.122362 +Karen T. Sutherland,Book reviews.,2001,12,Intelligence,1,db/journals/sigart/sigart12.html#Sutherland01,http://doi.acm.org/10.1145/376451.376468 +Giuseppe Trautteur,A novel interaction between AI and philosophy.,1983,83,SIGART Newsletter,,db/journals/sigart/sigartn83.html#Trautteur83,http://doi.acm.org/10.1145/1056613.1056617 +Margie Templeton,EUFID description: Systems Development Corporation.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Templeton82,http://doi.acm.org/10.1145/1056663.1056726 +William J. Mills,AI: Just how scattered is the literature?,1987,99,SIGART Newsletter,,db/journals/sigart/sigartn99.html#Mills87,http://doi.acm.org/10.1145/24667.24668 +Enric Plaza,Model-based knowledge acquisition for heuristic classification systems.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#PlazaM89,http://doi.acm.org/10.1145/63266.63279 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1986,96,SIGART Newsletter,,db/journals/sigart/sigartn96.html#HumphreyK86a,http://doi.acm.org/10.1145/15715.1057991 +Steve Coles,Chess.,1972,36,SIGART Newsletter,,db/journals/sigart/sigartn36.html#Coles72,http://doi.acm.org/10.1145/1056597.1056598 +Douglas Blank,AI update.,2001,12,Intelligence,3,db/journals/sigart/sigart12.html#Blank01b,http://doi.acm.org/10.1145/383824.383827 +S. Jerrold Kaplan,Research at Stanford University.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Kaplan82,http://doi.acm.org/10.1145/1056663.1056724 +Perry W. Thorndyke,Pattern-directed processing of knowledge from texts.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Thorndyke77,http://doi.acm.org/10.1145/1045343.1045380 +Ann E. Robinson,Research on planning.,1983,83,SIGART Newsletter,,db/journals/sigart/sigartn83.html#Robinson83,http://doi.acm.org/10.1145/1056613.1056619 +Edward N. Schhwartz,Using Complete K-Trees to Generate Code in Pascal for an Expert System.,1990,1,SIGART Bulletin,2,db/journals/sigart/sigart1.html#Schhwartz90,http://doi.acm.org/10.1145/84234.84239 +Jerry R. Hobbs,Pronoun resolution.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Hobbs77,http://doi.acm.org/10.1145/1045283.1045292 +Keith Price,New Books.,1987,100,SIGART Newsletter,,db/journals/sigart/sigartn100.html#Price87c,http://doi.acm.org/10.1145/24671.1057629 +Amruth N. Kumar,Announcements.,1999,10,Intelligence,4,db/journals/sigart/sigart10.html#Kumar99g,http://doi.acm.org/10.1145/322880.322887 +John Wade Ulrich,Program synthesis by analogy.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#UlrichM77,http://doi.acm.org/10.1145/872736.806928 +Bernard Fade,State of researches on the problem solver ARGOS-II.,1987,100,SIGART Newsletter,,db/journals/sigart/sigartn100.html#FadeP87,http://doi.acm.org/10.1145/24671.24672 +Tetsuo Kinoshita,A knowledge acquisition model with applications for requirements specification and definition.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Kinoshita89,http://doi.acm.org/10.1145/63266.63299 +Edgar F. Codd,Access to relational data bases for a casual user.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Codd77,http://doi.acm.org/10.1145/1045283.1045298 +Steven A. Epstein,RiTSE: The reactor trip simulation environment.,1986,97,SIGART Newsletter,,db/journals/sigart/sigartn97.html#Epstein86,http://doi.acm.org/10.1145/15719.15722 +V. Wiktor Marek,Book review: The Art of Prolog Advanced Programming Techniques by L. Sterling and E. Shapiro (The MIT Press).,1988,105,SIGART Newsletter,,db/journals/sigart/sigartn105.html#Marek88,http://doi.acm.org/10.1145/49093.1058125 +Richard G. Epstein,Curriculum descant: stories and plays about the ethical and social implications of artificial intelligence.,2000,11,Intelligence,3,db/journals/sigart/sigart11.html#EpsteinK00,http://doi.acm.org/10.1145/350752.350758 +Barbara J. Grosz,Research on natural-language processing: SRI International.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Grosz82,http://doi.acm.org/10.1145/1056663.1056723 +Naomi Sager,Transforming medical records into a structured data base.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#SagerHGI77,http://doi.acm.org/10.1145/1045283.1045308 +Hanan Samet,A normal form for compiler testing.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#Samet77,http://doi.acm.org/10.1145/872736.806945 +Douglas Blank,News.,2001,12,Intelligence,1,db/journals/sigart/sigart12.html#Blank01,http://doi.acm.org/10.1145/376451.376458 +Rakesh Mohan,Book review: Perceptual Organziation and Visual Recognition. by David G. Lowe (Kluwer Academic Publishers).,1987,99,SIGART Newsletter,,db/journals/sigart/sigartn99.html#Mohan87,http://doi.acm.org/10.1145/24667.1058032 +David J. Mostow,A production system for speech understanding.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#MostowH77,http://doi.acm.org/10.1145/1045343.1045395 +David S. Wile,Automated derivation of program control structure from natural language program descriptions.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#WileBG77,http://doi.acm.org/10.1145/872736.806935 +Edward N. Schwartz,A pictorial aid for programming expert systems.,1988,106,SIGART Newsletter,,db/journals/sigart/sigartn106.html#Schwartz88,http://doi.acm.org/10.1145/54350.54351 +Lance A. Miller,Natural language programming.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Miller77,http://doi.acm.org/10.1145/1045283.1045299 +Keith Price,Books.,1984,89,SIGART Newsletter,,db/journals/sigart/sigartn89.html#Price84b,http://doi.acm.org/10.1145/1056521.1056522 +Douglas Blank,News.,2000,11,Intelligence,2,db/journals/sigart/sigart11.html#Blank00,http://doi.acm.org/10.1145/337897.337984 +Gabriel Valiente,Using Layered Support Graphs for Verifying External Adequacy in Rule-Based Expert Systems.,1992,3,SIGART Bulletin,1,db/journals/sigart/sigart3.html#Valiente92,http://doi.acm.org/10.1145/130836.130838 +Lee D. Erman,Symbol-mapping.,1975,53,SIGART Newsletter,,db/journals/sigart/sigartn53.html#ErmanM75,http://doi.acm.org/10.1145/1216504.1216505 +Katharina Morik,Integration issue in knowledge acquisition systems.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Morik89,http://doi.acm.org/10.1145/63266.63282 +Dave Schultz,Conversational HELP.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Schultz77,http://doi.acm.org/10.1145/1045283.1045326 +Deepak Kumar,Teaching about embedded agents.,1998,9,SIGART Bulletin,1,db/journals/sigart/sigart9.html#Kumar98,http://doi.acm.org/10.1145/294828.294830 +Syed S. Ali,Links: Java resource for artificial intelligence.,2000,11,Intelligence,2,db/journals/sigart/sigart11.html#AliM00,http://doi.acm.org/10.1145/337897.337987 +Joseph S. Fulda,Alpha-Beta pruning: they've seen it before.,1985,94,SIGART Newsletter,,db/journals/sigart/sigartn94.html#Fulda85,http://doi.acm.org/10.1145/1056313.1056315 +John V. Jackson,Idea for a mind.,1987,101,SIGART Newsletter,,db/journals/sigart/sigartn101.html#Jackson87,http://doi.acm.org/10.1145/29264.29266 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1984,88,SIGART Newsletter,,db/journals/sigart/sigartn88.html#HumphreyK84a,http://doi.acm.org/10.1145/1056656.1056659 +Philip R. Cohen,Planning speech acts and referring expressions.,1978,66,SIGART Newsletter,,db/journals/sigart/sigartn66.html#Cohen78,http://doi.acm.org/10.1145/1045416.1045424 +C. H. Thompson,On-line query system.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#ThompsonBFP77,http://doi.acm.org/10.1145/1045283.1045301 +Martha E. Williams,A hybrid framework for natural language processing of large data bases.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#WilliamsP77,http://doi.acm.org/10.1145/1045283.1045330 +Marilyn A. Walker,Design-World: A Testbed of Communicative Action and Resource Limits.,1995,6,SIGART Bulletin,2,db/journals/sigart/sigart6.html#WalkerJ95,http://doi.acm.org/10.1145/201977.201994 +Eliezer L. Lozinskii,Parallel processing of natural language: the Hebrew University.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#LozinskiiN82,http://doi.acm.org/10.1145/1056663.1056699 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1987,99,SIGART Newsletter,,db/journals/sigart/sigartn99.html#HumphreyK87,http://doi.acm.org/10.1145/24667.1058034 +Hans J. Berliner,A meta comment about the I.J. Good - Sam Rashevsky interchange.,1973,39,SIGART Newsletter,,db/journals/sigart/sigartn39.html#Berliner73,http://doi.acm.org/10.1145/1045154.1045160 +Robert H. Anderson,"The use of production systems in RITA to construct personal computer ""agents"".",1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Anderson77,http://doi.acm.org/10.1145/1045343.1045360 +Brahim Chaib-draa,Distributed Artificial Intelligence: An Annotated Bibliography.,1992,3,SIGART Bulletin,3,db/journals/sigart/sigart3.html#Chaib-draaMM92,http://doi.acm.org/10.1145/140936.140937 +Christopher A. Welty,Real science.,2001,12,Intelligence,4,db/journals/sigart/sigart12.html#Welty01b,http://doi.acm.org/10.1145/504313.504329 +Jeffrey M. Bradshaw,Letter from the chair.,2000,11,Intelligence,4,db/journals/sigart/sigart11.html#Bradshaw00c,http://doi.acm.org/10.1145/355137.355138 +,More natural language research.,1982,82,SIGART Newsletter,,db/journals/sigart/sigartn82.html#X82b,http://doi.acm.org/10.1145/1056602.1056604 +G. Alan Creak,Word games and search spaces.,1988,103,SIGART Newsletter,,db/journals/sigart/sigartn103.html#Creak88,http://doi.acm.org/10.1145/44418.44425 +Federico Barber,A Metric Time-Point and Duration-Based Temporal Model.,1993,4,SIGART Bulletin,3,db/journals/sigart/sigart4.html#Barber93,http://doi.acm.org/10.1145/152947.152955 +Mihai Barbuceanu,Object-centered representation and reasoning: an application to computer-aided design.,1984,87,SIGART Newsletter,,db/journals/sigart/sigartn87.html#Barbuceanu84,http://doi.acm.org/10.1145/1056648.1056651 +Bruce A. Pumplin,Compiling LISP procedures.,1987,99,SIGART Newsletter,,db/journals/sigart/sigartn99.html#Pumplin87,http://doi.acm.org/10.1145/24667.24669 +Michael Barbehenn,An Integrated Architecture for Learning and Planning in Robotic Domains.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#BarbehennH91,http://doi.acm.org/10.1145/122344.122348 +Keith Price,New Books.,1989,109,SIGART Newsletter,,db/journals/sigart/sigartn109.html#Price89a,http://doi.acm.org/10.1145/70632.1059731 +Rich Fikes,Chess.,1974,45,SIGART Newsletter,,db/journals/sigart/sigartn45.html#Fikes74b,http://doi.acm.org/10.1145/1045220.1045224 +Robert St. Amant,Links: Common Lisp resources on the Web.,2001,12,Intelligence,3,db/journals/sigart/sigart12.html#AmantY01b,http://doi.acm.org/10.1145/383824.383828 +Vincent R. Waldron,Investigating the communication problems encountered in knowledge acquisition.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Waldron89,http://doi.acm.org/10.1145/63266.63287 +Philippe Chatelin,Self-redefinition as a program manipulation strategy.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#Chatelin77,http://doi.acm.org/10.1145/872736.806947 +Hans J. Berliner,Fredkin Match at IJCAI-81.,1982,80,SIGART Newsletter,,db/journals/sigart/sigartn80.html#Berliner82,http://doi.acm.org/10.1145/1056176.1056177 +Pascal Van Hentenryck,A constraint approach to mastermind in logic programming.,1988,103,SIGART Newsletter,,db/journals/sigart/sigartn103.html#Hentenryck88,http://doi.acm.org/10.1145/44418.44421 +Syed S. Ali,Links: information retrieval.,2000,11,Intelligence,4,db/journals/sigart/sigart11.html#AliM00a,http://doi.acm.org/10.1145/355137.355141 +Barbara Hayes-Roth,Evaluation of Integrated Agent Architectures.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Hayes-Roth91a,http://doi.acm.org/10.1145/122344.122360 +John K. Cipolaro,A computer consultant for poker using natural language communication.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#CipolaroF77,http://doi.acm.org/10.1145/1045283.1045329 +David A. McAllester,Socratic Sequent Systems.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#McAllester91,http://doi.acm.org/10.1145/122296.122311 +P. H. Wood,Intelligent Tutoring Systems: An Annotated Bibliography.,1990,1,SIGART Bulletin,1,db/journals/sigart/sigart1.html#WoodH90, +Flo Paroli,A fine adventure.,1983,84,SIGART Newsletter,,db/journals/sigart/sigartn84.html#Paroli83,http://doi.acm.org/10.1145/1056623.1056629 +Tracy L. Wells,Hypertext as a means for knowledge acquisition.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Wells89,http://doi.acm.org/10.1145/63266.63284 +Joel H. Gyllenskog,Writing a computer program to play Mastermind that appears to be intelligent.,1983,84,SIGART Newsletter,,db/journals/sigart/sigartn84.html#Gyllenskog83,http://doi.acm.org/10.1145/1056623.1056626 +Deborah L. McGuinness,A description logic-based configurator on the web.,1998,9,SIGART Bulletin,2,db/journals/sigart/sigart9.html#McGuinnessIPPRW98,http://doi.acm.org/10.1145/1056754.1056756 +Jianlai Yan,Model-driven reasoning for diagnosis.,1986,98,SIGART Newsletter,,db/journals/sigart/sigartn98.html#Yan86,http://doi.acm.org/10.1145/15923.15926 +Kim Marriott,Book reviews.,1999,10,Intelligence,2,db/journals/sigart/sigart10.html#MarriottS99,http://www.acm.org/pubs/citations/journals/intelligence/1999-10-2/p39-marriott/ +William A. Woods,A personal view of natural language understanding.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Woods77,http://doi.acm.org/10.1145/1045283.1045286 +Ronald J. Brachman,Special issue on knowledge representation.,1980,70,SIGART Newsletter,,db/journals/sigart/sigartn70.html#BrachmanS80,http://doi.acm.org/10.1145/1056751.1056752 +Teiji Furugori,Progress report from SUNY at Buffalo.,1973,42,SIGART Newsletter,,db/journals/sigart/sigartn42.html#Furugori73,http://doi.acm.org/10.1145/1045177.1045179 +C. L. Chang,The NIH Heuristics laboratory.,1974,46,SIGART Newsletter,,db/journals/sigart/sigartn46.html#Chang74,http://doi.acm.org/10.1145/1056793.1056801 +Harry Bunt,Dialogue project.,1982,80,SIGART Newsletter,,db/journals/sigart/sigartn80.html#Bunt82,http://doi.acm.org/10.1145/1056176.1056182 +Beth Crandall,A comparative study of think-aloud and critical decision knowledge elicitation methods.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Crandall89,http://doi.acm.org/10.1145/63266.63288 +Larry R. Harris,ROBOT: a high performance natural language processor for data base query.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Harris77,http://doi.acm.org/10.1145/1045283.1045309 +Patrick Greussay,An iterative lisp solution to the samefringe problem.,1976,59,SIGART Newsletter,,db/journals/sigart/sigartn59.html#Greussay76,http://doi.acm.org/10.1145/1045270.1045273 +Lisa Meeden,News.,1999,10,Intelligence,1,db/journals/sigart/sigart10.html#Meeden99,http://doi.acm.org/10.1145/298475.298499 +Seiji Yamada,Acquisition of macro-operators from worked examples in problem solving.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#YamadaT89,http://doi.acm.org/10.1145/63266.63303 +Allen Newell,AAAI president's message.,1980,73,SIGART Newsletter,,db/journals/sigart/sigartn73.html#Newell80,http://doi.acm.org/10.1145/1056768.1056769 +W. Mark Boggs,Robust man-machine interfaces and dialog modelling: Carnegie-Mellon University.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#BoggsCFHMKMF82,http://doi.acm.org/10.1145/1056663.1056680 +Frank H. Merrem,Automatic generation of knowledge structures.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Merrem89,http://doi.acm.org/10.1145/63266.63295 +,SIGART special issue on machine learning.,1981,76,SIGART Newsletter,,db/journals/sigart/sigartn76.html#X81a,http://doi.acm.org/10.1145/1056490.1056491 +Leonard Friedman,Robot perception learning.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Friedman77,http://doi.acm.org/10.1145/1045343.1045372 +Chao-Lin Liu,On State-Space Abstraction for Anytime Evaluation of Bayesian Networks.,1996,7,SIGART Bulletin,2,db/journals/sigart/sigart7.html#LiuW96,http://doi.acm.org/10.1145/242587.242601 +Richard J. Cichelli,Reader Commentary on the Cichelli Heuristics.,1973,43,SIGART Newsletter,,db/journals/sigart/sigartn43.html#Cichelli73,http://doi.acm.org/10.1145/1056786.1739258 +Jack Buchanan,Chess.,1974,49,SIGART Newsletter,,db/journals/sigart/sigartn49.html#Buchanan74,http://doi.acm.org/10.1145/1045196.1045198 +Rok Sosic,A Polynomial Time Algorithm for the N-Queens Problem.,1990,1,SIGART Bulletin,3,db/journals/sigart/sigart1.html#SosicG90,http://doi.acm.org/10.1145/101340.101343 +Jürg Nievergelt,Information content of chess positions.,1977,62,SIGART Newsletter,,db/journals/sigart/sigartn62.html#Nievergelt77,http://doi.acm.org/10.1145/1045398.1045400 +Michel Lacroix,ILL: an English structured query language for relational data bases.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#LacroixP77,http://doi.acm.org/10.1145/1045283.1045335 +Richard Kryszak,Book Review: Common Lisp: A Tutorial by Wendy Milner (Prentice-Hall).,1989,107,SIGART Newsletter,,db/journals/sigart/sigartn107.html#Kryszak89,http://doi.acm.org/10.1145/65751.1059598 +Marion R. Finley Jr.,A system for the representation of theorems and proofs.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#FinleyH89,http://doi.acm.org/10.1145/63266.63308 +Robert F. Simmons,Rule-based computations on English.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Simmons77,http://doi.acm.org/10.1145/1045343.1045383 +Susanne M. Humphrey,Selected M-Related Dissertations.,1989,110,SIGART Newsletter,,db/journals/sigart/sigartn110.html#HumphreyK89,http://doi.acm.org/10.1145/74664.1059789 +John P. Fishburn,An optimization of alpha-beta search.,1980,72,SIGART Newsletter,,db/journals/sigart/sigartn72.html#Fishburn80,http://doi.acm.org/10.1145/1056447.1056450 +Ed Yampratoom,Performance of Temporal Reasoning Systems.,1993,4,SIGART Bulletin,3,db/journals/sigart/sigart4.html#YampratoomA93,http://doi.acm.org/10.1145/152947.152954 +David L. Waltz,Natural language interfaces.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Waltz77,http://doi.acm.org/10.1145/1045283.1045285 +Edward A. Isper Jr.,The infinite state acceptor and its application to AI.,1989,107,SIGART Newsletter,,db/journals/sigart/sigartn107.html#Isper89,http://doi.acm.org/10.1145/65751.65754 +Benjamin Kuipers,Computer power and human reason.,1976,58,SIGART Newsletter,,db/journals/sigart/sigartn58.html#KuipersMW76,http://doi.acm.org/10.1145/1045264.1045265 +John P. McDermott,Production system conflict resolution strategies.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#McDermottF77,http://doi.acm.org/10.1145/1045343.1045364 +Hans J. Berliner,First Fredkin challenge match.,1980,73,SIGART Newsletter,,db/journals/sigart/sigartn73.html#Berliner80,http://doi.acm.org/10.1145/1056768.1056770 +Christopher R. Westphal,Book review: Building Expert Systems: Cognitive Emulation by Philip E. Slatter (Ellis Horwood Limited).,1988,105,SIGART Newsletter,,db/journals/sigart/sigartn105.html#Westphal88,http://doi.acm.org/10.1145/49093.1058123 +Peter E. Hart,Directions for AI in the eighties.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Hart82,http://doi.acm.org/10.1145/1056663.1056664 +Bertram C. Bruce,Center for the study of reading: BBN branch.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Bruce82,http://doi.acm.org/10.1145/1056663.1056681 +Timothy L. Trowbridge,Book review: Rule Based Programming with OPS5 by Thomas A. Cooper and Nancy Wogrin (Morgan Kaufmann Pubtishers).,1989,109,SIGART Newsletter,,db/journals/sigart/sigartn109.html#Trowbridge89,http://doi.acm.org/10.1145/70632.1059727 +Kenneth D. Forbus,Similarity-based Cognitive Architecture.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#ForbusG91,http://doi.acm.org/10.1145/122344.122356 +Thomas G. Kyle,Using AI as a research tool.,1986,97,SIGART Newsletter,,db/journals/sigart/sigartn97.html#Kyle86,http://doi.acm.org/10.1145/15719.15724 +Steven Minton,On Modularity in Integrated Architectures.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Minton91,http://doi.acm.org/10.1145/122344.122371 +Nigel Ward,Book review: Automatic Natural Language Parsing. Edited by Karen Sparck Jones and Yorick Wilks (Ellis Horwood and John Wiley and Sons 1983).,1986,98,SIGART Newsletter,,db/journals/sigart/sigartn98.html#Ward86,http://doi.acm.org/10.1145/15923.1058022 +Deepak Kumar,Curriculum descant: A new life for AI artifacts.,1999,10,Intelligence,2,db/journals/sigart/sigart10.html#Kumar99a,http://doi.acm.org/10.1145/309697.309700 +A. Harry Klopf,A comparison of natural and artificial intelligence.,1975,52,SIGART Newsletter,,db/journals/sigart/sigartn52.html#Klopf75,http://doi.acm.org/10.1145/1045236.1045237 +Mark S. Boddy,Temporal Reasoning for Planning and Scheduling.,1993,4,SIGART Bulletin,3,db/journals/sigart/sigart4.html#Boddy93,http://doi.acm.org/10.1145/152947.152952 +A. Jean Maren,The IEEE 1st Intl. conference on neural networks.,1988,103,SIGART Newsletter,,db/journals/sigart/sigartn103.html#Maren88,http://doi.acm.org/10.1145/44418.44419 +Deepak Kumar,Curriculum Descant: Interdisciplinary artificial intelligence.,2000,11,Intelligence,1,db/journals/sigart/sigart11.html#KumarW00,http://doi.acm.org/10.1145/333175.333178 +Lisa C. Kaczmarczyk,Is AI abstract and impractical? isn't the answer obvious?,2001,12,Intelligence,4,db/journals/sigart/sigart12.html#Kaczmarczyk01,http://doi.acm.org/10.1145/504313.504321 +Camilla Schwind,Automatic thesaurus construction from natural language definitions.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#SchwindJ77,http://doi.acm.org/10.1145/1045283.1045319 +Rich Fikes,First world computer chess championship.,1974,47,SIGART Newsletter,,db/journals/sigart/sigartn47.html#Fikes74,http://doi.acm.org/10.1145/1045190.1045192 +Angelo Monfroglio,School time table scheduling in Prolog.,1986,96,SIGART Newsletter,,db/journals/sigart/sigartn96.html#Monfroglio86,http://doi.acm.org/10.1145/15715.15716 +S. Dowsey,Go and the computer.,1974,45,SIGART Newsletter,,db/journals/sigart/sigartn45.html#Dowsey74,http://doi.acm.org/10.1145/1045220.1045223 +Stuart C. Shapiro,Conference review: IFIP TC12.,2001,12,Intelligence,3,db/journals/sigart/sigart12.html#Shapiro01,http://doi.acm.org/10.1145/383824.383826 +Allen Newell,Fairytales.,1976,60,SIGART Newsletter,,db/journals/sigart/sigartn60.html#Newell76,http://doi.acm.org/10.1145/1045276.1045277 +Gerard Kiernan,Programming expert systems at the K-tree level.,1989,109,SIGART Newsletter,,db/journals/sigart/sigartn109.html#KiernanKS89,http://doi.acm.org/10.1145/70632.70635 +Eric Mays,K-Rep System Overview.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#MaysDW91,http://doi.acm.org/10.1145/122296.122310 +Jeffrey M. Bradshaw,Letter from the chair.,2000,11,Intelligence,3,db/journals/sigart/sigart11.html#Bradshaw00b,http://doi.acm.org/10.1145/350752.350753 +Scott D. Anderson,Timed Common Lisp: The Duration of Deliberation.,1996,7,SIGART Bulletin,2,db/journals/sigart/sigart7.html#AndersonC96,http://doi.acm.org/10.1145/242587.242590 +Ralph E. Griswold,Language facilities for programmable backtracking.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#GriswoldH77,http://doi.acm.org/10.1145/872736.806937 +Keith Price,New books.,1988,104,SIGART Newsletter,,db/journals/sigart/sigartn104.html#Price88c,http://doi.acm.org/10.1145/44019.1058040 +Janyce Wiebe,Conference review.,2000,11,Intelligence,2,db/journals/sigart/sigart11.html#Wiebe00,http://doi.acm.org/10.1145/337897.338001 +William F. Mann,More on Go.,1974,46,SIGART Newsletter,,db/journals/sigart/sigartn46.html#Mann74,http://doi.acm.org/10.1145/1056793.1056795 +,To the friends of Jaime Carbonell.,1973,39,SIGART Newsletter,,db/journals/sigart/sigartn39.html#X73,http://doi.acm.org/10.1145/1045154.1045155 +Kenneth R. Lee,Book review: The Elements of Artificial Intelligence An Introduction Using LISP by Steven L. Tanimoto (Computer Science Press).,1988,103,SIGART Newsletter,,db/journals/sigart/sigartn103.html#Lee88,http://doi.acm.org/10.1145/44418.1057643 +Lisa Meeden,News.,1999,10,Intelligence,3,db/journals/sigart/sigart10.html#Meeden99b,http://doi.acm.org/10.1145/318964.318971 +Leo Hartman,Is AI planning now?,1998,9,SIGART Bulletin,2,db/journals/sigart/sigart9.html#HartmanH98,http://doi.acm.org/10.1145/1056754.1056764 +W. W. Bledsoe,Books.,1972,34,SIGART Newsletter,,db/journals/sigart/sigartn34.html#Bledsoe72b,http://doi.acm.org/10.1145/1056587.1056591 +Lee D. Erman,Chess.,1975,55,SIGART Newsletter,,db/journals/sigart/sigartn55.html#Erman75c,http://doi.acm.org/10.1145/1045253.1045257 +Richard Waldinger,"ARPA ""automatic programming"" meeting.",1974,44,SIGART Newsletter,,db/journals/sigart/sigartn44.html#Waldinger74,http://doi.acm.org/10.1145/1045183.1045187 +David Brown,Some thoughts on an interactive information retrieval system.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Brown77,http://doi.acm.org/10.1145/1045283.1045287 +Christopher Johnson 0001,War stories: harnessing organizational memories to support task performance.,2000,11,Intelligence,1,db/journals/sigart/sigart11.html#JohnsonBBH00,http://doi.acm.org/10.1145/333175.333180 +,Computer Scrabble.,1981,76,SIGART Newsletter,,db/journals/sigart/sigartn76.html#X81,http://doi.acm.org/10.1145/1056490.1056495 +Frederick Jelinek,Continuous speech recognition.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Jelinek77,http://doi.acm.org/10.1145/1045283.1045302 +Ronald M. Kaplan,Research at Xerox PARC.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Kaplan82a,http://doi.acm.org/10.1145/1056663.1056735 +Chalda I. Maloff,The fourth B.,1975,54,SIGART Newsletter,,db/journals/sigart/sigartn54.html#MaloffZ75,http://doi.acm.org/10.1145/1045247.1045250 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1985,91,SIGART Newsletter,,db/journals/sigart/sigartn91.html#HumphreyK85,http://doi.acm.org/10.1145/1056541.1056543 +Walter Reitman,Pattern recognition and pattern-directed inference in a program for playing go.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#ReitmanW77,http://doi.acm.org/10.1145/1045343.1045396 +Marie A. Bienkowski,Book Review: Artificial Intelligence and Tutoring Systems: Computational and Cognitive Approaches to the Communication of Knowledge by Eitenne Wenger (Morgan Kaufmann Publishers).,1989,109,SIGART Newsletter,,db/journals/sigart/sigartn109.html#Bienkowski89,http://doi.acm.org/10.1145/70632.1059726 +Keith Price,Books.,1983,83,SIGART Newsletter,,db/journals/sigart/sigartn83.html#Price83,http://doi.acm.org/10.1145/1056613.1056614 +Angel R. Puerta,Conference review.,1999,10,Intelligence,2,db/journals/sigart/sigart10.html#Puerta99,http://doi.acm.org/10.1145/309697.309707 +Drew McDermott,The prolog phenomenon.,1980,72,SIGART Newsletter,,db/journals/sigart/sigartn72.html#McDermott80,http://doi.acm.org/10.1145/1056447.1056448 +Ehud Y. Shapiro,Playing mastermind logically.,1983,85,SIGART Newsletter,,db/journals/sigart/sigartn85.html#Shapiro83,http://doi.acm.org/10.1145/1056635.1056637 +Denis Newman,Children's understanding of interacting plans.,1978,66,SIGART Newsletter,,db/journals/sigart/sigartn66.html#Newman78,http://doi.acm.org/10.1145/1045416.1045427 +Christopher W. Fraser,A knowledge-based code generator generator.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#Fraser77,http://doi.acm.org/10.1145/872736.806941 +Leslie Pack Kaelbling,A Situated-Automata Approach to the Design of Embedded Agents.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Kaelbling91,http://doi.acm.org/10.1145/122344.122361 +Jon Doyle,A selected descriptor-indexed bibliography to the literature on belief revision.,1980,71,SIGART Newsletter,,db/journals/sigart/sigartn71.html#DoyleL80,http://doi.acm.org/10.1145/1056441.1056442 +Sture Hägglund,Uppsala University.,1974,46,SIGART Newsletter,,db/journals/sigart/sigartn46.html#Hagglund74,http://doi.acm.org/10.1145/1056793.1056800 +D. Paul Benjamin,Integrating Perception with Problem Solving.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#BenjaminCDRW91,http://doi.acm.org/10.1145/122344.122351 +Daniel D. Corkhill,Conversational program model.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Corkhill77,http://doi.acm.org/10.1145/1045283.1045327 +Joseph Bates,Broad Agents.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#BatesLR91,http://doi.acm.org/10.1145/122344.122350 +Keith Price,New books.,1988,106,SIGART Newsletter,,db/journals/sigart/sigartn106.html#Price88e,http://doi.acm.org/10.1145/10.1145/54350.1059596 +Wei-Min Shen,LIVE: An Architecture for Learning from the Environment.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Shen91,http://doi.acm.org/10.1145/122344.122375 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1985,93,SIGART Newsletter,,db/journals/sigart/sigartn93.html#HumphreyK85b,http://doi.acm.org/10.1145/1056557.1056559 +Robert R. Hoffman,A survey of methods for eliciting the knowledge of experts.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Hoffman89,http://doi.acm.org/10.1145/63266.63269 +Richard A. LeFaivre,Research resource in AI and biomedicine at Rutgers University.,1975,54,SIGART Newsletter,,db/journals/sigart/sigartn54.html#LeFaivreW75,http://doi.acm.org/10.1145/1045247.1045248 +John H. Holland,Cognitive systems based on adaptive algorithms.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#HollandR77,http://doi.acm.org/10.1145/1045343.1045373 +Charles Rich,CAKE: An Implemented Hybrid Knowledge Representation and Limited Reasoning System.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#Rich91,http://doi.acm.org/10.1145/122296.122315 +Antony Browne,Unification Using a Distributed Representation.,1994,5,SIGART Bulletin,1,db/journals/sigart/sigart5.html#BrowneP94,http://doi.acm.org/10.1145/182053.182057 +Barbara Hayes-Roth,Implications of human pattern processing for the design of artificial knowledge systems.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Hayes-Roth77,http://doi.acm.org/10.1145/1045343.1045379 +W. W. Bledsoe,Errata.,1972,34,SIGART Newsletter,,db/journals/sigart/sigartn34.html#Bledsoe72,http://doi.acm.org/10.1145/1056587.1056588 +Peter Haddawy,Focusing Attention in Anytime Decision-Theoretic Planning.,1996,7,SIGART Bulletin,2,db/journals/sigart/sigart7.html#Haddawy96,http://doi.acm.org/10.1145/242587.242596 +Dap Hartmann,Book review: Advances in Computer Chess 4. Edited by D.F. Beal (Pergamon Press 1986 ).,1987,100,SIGART Newsletter,,db/journals/sigart/sigartn100.html#Hartmann87,http://doi.acm.org/10.1145/24671.1057627 +Stanislaw Lem,The cyberiad: fables for the cybernetic age.,1974,47,SIGART Newsletter,,db/journals/sigart/sigartn47.html#LemW74,http://doi.acm.org/10.1145/1045190.1045193 +Peter Koppstein,Mastering Master Mind logically.,1984,88,SIGART Newsletter,,db/journals/sigart/sigartn88.html#Koppstein84,http://doi.acm.org/10.1145/1056656.1056658 +Chuck Schmidt,Believer project.,1978,66,SIGART Newsletter,,db/journals/sigart/sigartn66.html#SchmidtS78,http://doi.acm.org/10.1145/1045416.1045419 +Joe Jeffrey,AI and scientific revolution.,1976,60,SIGART Newsletter,,db/journals/sigart/sigartn60.html#Jeffrey76,http://doi.acm.org/10.1145/1045276.1045278 +Charles J. V. Murphy,TIMELOG-an intelligent spreadsheet for school timetabling.,1987,101,SIGART Newsletter,,db/journals/sigart/sigartn101.html#Murphy87,http://doi.acm.org/10.1145/29264.29265 +John Dore,Toward an ethnolinguistic account of conversation.,1978,66,SIGART Newsletter,,db/journals/sigart/sigartn66.html#Dore78,http://doi.acm.org/10.1145/1045416.1045421 +Hank Simon,Automated heuristic analysis of spectroscopic data.,1988,103,SIGART Newsletter,,db/journals/sigart/sigartn103.html#Simon88,http://doi.acm.org/10.1145/44418.44423 +Philip R. Cohen,Dependencies of discourse structure on the modality of communication: Oregon State University.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Cohen82,http://doi.acm.org/10.1145/1056663.1056716 +John P. McDermott,The efficiency of certain production system implementations.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#McDermottNM77,http://doi.acm.org/10.1145/1045343.1045366 +Alan Garvey,Design-to-time Scheduling and Anytime Algorithms.,1996,7,SIGART Bulletin,2,db/journals/sigart/sigart7.html#GarveyL96,http://doi.acm.org/10.1145/242587.242591 +James F. Allen,Discourse understanding at the U. of Rochester.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#AllenS82,http://doi.acm.org/10.1145/1056663.1056720 +W. W. Bledsoe,Books.,1972,35,SIGART Newsletter,,db/journals/sigart/sigartn35.html#Bledsoe72c,http://doi.acm.org/10.1145/1056594.1056595 +John E. Laird,An Analysis of Soar as an Integrated Architecture.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#LairdHHR91,http://doi.acm.org/10.1145/122344.122364 +Richard O. Duda,Semantic network representations in rule-based inference systems.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#DudaHNS77,http://doi.acm.org/10.1145/1045343.1045351 +Xie Li,General Natural Language for Operating Systems.,1992,3,SIGART Bulletin,4,db/journals/sigart/sigart3.html#LiX92,http://doi.acm.org/10.1145/141420.141425 +Steven W. Zucker,General-purpose models: expectations about the unexpected.,1975,54,SIGART Newsletter,,db/journals/sigart/sigartn54.html#ZuckerRD75,http://doi.acm.org/10.1145/1045247.1045249 +Craig A. Knoblock,Relating the Performance of Partial-Order Planning Algorithms to Domain Features.,1995,6,SIGART Bulletin,1,db/journals/sigart/sigart6.html#KnoblockY95,http://doi.acm.org/10.1145/202187.202191 +W. W. Bledsoe,Results of second annual computer chess championship.,1971,30,SIGART Newsletter,,db/journals/sigart/sigartn30.html#Bledsoe71,http://doi.acm.org/10.1145/1056574.1056576 +Peter Kugel,A theorem about automatic programming.,1975,51,SIGART Newsletter,,db/journals/sigart/sigartn51.html#Kugel75,http://doi.acm.org/10.1145/1045231.1045233 +Michael Soul,TESSA - the ESsex syntactic analyser.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Soul77,http://doi.acm.org/10.1145/1045283.1045317 +Rob Kling,Notes on the social impacts of artificial intelligence.,1973,42,SIGART Newsletter,,db/journals/sigart/sigartn42.html#Kling73,http://doi.acm.org/10.1145/1045177.1045178 +Dan Fass,Dehumanized People and Humanized Programs: A Natural Language Understanding View of Being There.,1990,1,SIGART Bulletin,2,db/journals/sigart/sigart1.html#Fass90,http://doi.acm.org/10.1145/84234.84236 +Raymond Reiter,The University of British Columbia.,1974,46,SIGART Newsletter,,db/journals/sigart/sigartn46.html#ReiterR74,http://doi.acm.org/10.1145/1056793.1056797 +Katherine W. Cochrane,Book review: The T Programming Language - A Dialect of LISP by Stephen Slade.,1988,103,SIGART Newsletter,,db/journals/sigart/sigartn103.html#Cochrane88,http://doi.acm.org/10.1145/44418.1057641 +Ruth Davis,Impermanent balance between man and computer.,1974,49,SIGART Newsletter,,db/journals/sigart/sigartn49.html#Davis74,http://doi.acm.org/10.1145/1045196.1045197 +David B. Fogel,Evolving a checkers player without relying on human experience.,2000,11,Intelligence,2,db/journals/sigart/sigart11.html#Fogel00,http://doi.acm.org/10.1145/337897.337996 +V. Wiktor Marek,Executing Temporal Logic Programs by Ben Moszkowski.,1986,98,SIGART Newsletter,,db/journals/sigart/sigartn98.html#Marek86,http://doi.acm.org/10.1145/15923.1058025 +George E. Heidorn,Natural language projects at IBM research.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Heidorn77,http://doi.acm.org/10.1145/1045283.1045296 +Steven W. Zucker,Production systems with feedback.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Zucker77,http://doi.acm.org/10.1145/1045343.1045391 +Lee A. Becker,Using simulation to compile diagnostic rules from a manufacturing process representation.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#BeckerBS89,http://doi.acm.org/10.1145/63266.63304 +Warren Teitelman,Interlisp.,1973,43,SIGART Newsletter,,db/journals/sigart/sigartn43.html#Teitelman73,http://doi.acm.org/10.1145/1056786.1056787 +Keith Price,New Books.,1986,96,SIGART Newsletter,,db/journals/sigart/sigartn96.html#Price86,http://doi.acm.org/10.1145/15715.1057989 +Michael L. Baird,GM research labs' machine perception project.,1975,55,SIGART Newsletter,,db/journals/sigart/sigartn55.html#BairdOPR75,http://doi.acm.org/10.1145/1045253.1045255 +Amruth N. Kumar,Announcements.,1999,10,Intelligence,1,db/journals/sigart/sigart10.html#Kumar99,http://doi.acm.org/10.1145/298475.298492 +Johan de Kleer,AMORD explicit control of reasoning.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#KleerDSS77,http://doi.acm.org/10.1145/872736.806940 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1984,90,SIGART Newsletter,,db/journals/sigart/sigartn90.html#HumphreyK84,http://doi.acm.org/10.1145/1056531.1056535 +Christopher A. Welty,Instances and classes in software engineering.,1999,10,Intelligence,2,db/journals/sigart/sigart10.html#WeltyF99,http://doi.acm.org/10.1145/309697.309705 +Peter F. Patel-Schneider,The CLASSIC Knowledge Representation System: Guiding Principles and Implementation Rationale.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#Patel-SchneiderMB91,http://doi.acm.org/10.1145/122296.122313 +R. Elschlager,Some sample programs currently accepted by a natural language programming system.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Elschlager77,http://doi.acm.org/10.1145/1045283.1045295 +Walter Fritz,The inteligent system.,1984,90,SIGART Newsletter,,db/journals/sigart/sigartn90.html#Fritz84,http://doi.acm.org/10.1145/1056531.1056534 +David D. McDonald,Inferential searches of knowledge networks as an approach to extensible language understanding systems.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#McDonaldH77,http://doi.acm.org/10.1145/1045343.1045384 +Patrick J. Hayes,Intellectual Archeology.,1995,6,SIGART Bulletin,2,db/journals/sigart/sigart6.html#HayesF95,http://doi.acm.org/10.1145/201977.201987 +Keith Price,Books.,1985,91,SIGART Newsletter,,db/journals/sigart/sigartn91.html#Price85,http://doi.acm.org/10.1145/1056541.1056542 +Daniel Kuokka,"MAX: A Meta-Reasoning Architecture for ""X"".",1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Kuokka91,http://doi.acm.org/10.1145/122344.122363 +Syed S. Ali,Links.,2000,11,Intelligence,1,db/journals/sigart/sigart11.html#AliMC00,http://doi.acm.org/10.1145/333175.333179 +K. C. Wong,Generalization of the Language Version Determination Problem.,1990,1,SIGART Bulletin,2,db/journals/sigart/sigart1.html#Wong90,http://doi.acm.org/10.1145/84234.84257 +Dennis de Champeaux,Challenge problem 1 without search.,1981,76,SIGART Newsletter,,db/journals/sigart/sigartn76.html#Champeaux81,http://doi.acm.org/10.1145/1056490.1056492 +Andrew J. Kornecki,Operational knowledge acquisition problems for air traffic expert controller.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Kornecki89,http://doi.acm.org/10.1145/63266.63298 +Bay Arinze,A natural language front-end for knowledge acquisition.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Arinze89,http://doi.acm.org/10.1145/63266.63280 +Louis J. Hoebel,Backtracking: Garbage collection.,1999,10,Intelligence,2,db/journals/sigart/sigart10.html#HoebelW99a,http://doi.acm.org/10.1145/309697.309710 +Mark Bernstein,Finding heuristics for flowshop scheduling.,1987,99,SIGART Newsletter,,db/journals/sigart/sigartn99.html#Bernstein87,http://doi.acm.org/10.1145/24667.24670 +Salvatore Mamone,An Expert System for Unix Problem Resolution.,1990,1,SIGART Bulletin,2,db/journals/sigart/sigart1.html#Mamone90,http://doi.acm.org/10.1145/84234.84237 +William C. Mann,Research at USC/ISI.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Mann82,http://doi.acm.org/10.1145/1056663.1056705 +Jean E. Tardy,The Monterège Collector.,1990,1,SIGART Bulletin,1,db/journals/sigart/sigart1.html#Tardy90,http://doi.acm.org/10.1145/379534.379535 +Harald Trost,An expert advising system with acoustic output.,1989,109,SIGART Newsletter,,db/journals/sigart/sigartn109.html#TrostBD89,http://doi.acm.org/10.1145/70632.70637 +Brian R. Gaines,Sixth generation computing: a conspectus of the Japanese proposals.,1986,95,SIGART Newsletter,,db/journals/sigart/sigartn95.html#Gaines86,http://doi.acm.org/10.1145/1056563.1056570 +Jacek Malec,Knowledge elicitation during dynamic scene description.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Malec89,http://doi.acm.org/10.1145/63266.63296 +Naomi Sager,Research in computational linguistics: New York University.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#SagerG82,http://doi.acm.org/10.1145/1056663.1056714 +Gonzalo de la Pena Casares,The RM-CELL vs. the earthquakes.,1989,110,SIGART Newsletter,,db/journals/sigart/sigartn110.html#Casares89,http://doi.acm.org/10.1145/74664.74666 +Zohar Manna,The automatic synthesis of recursive programs.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#MannaW77,http://doi.acm.org/10.1145/872736.806929 +Stuart C. Shapiro,Representing and locating deduction rules in a semantic network.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Shapiro77,http://doi.acm.org/10.1145/1045343.1045350 +Keith Price,New Books.,1986,97,SIGART Newsletter,,db/journals/sigart/sigartn97.html#Price86a,http://doi.acm.org/10.1145/15719.1058001 +Syed S. Ali,Links.,1999,10,Intelligence,1,db/journals/sigart/sigart10.html#Ali99,http://doi.acm.org/10.1145/298475.298482 +Stanley J. Rosenschein,Selection of representations for data structures.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#RosenscheinK77,http://doi.acm.org/10.1145/872736.806944 +Ranan B. Banerji,Progress report from Case Western Reserve University.,1973,41,SIGART Newsletter,,db/journals/sigart/sigartn41.html#Banerji73,http://doi.acm.org/10.1145/1045171.1045174 +Herbert L. Gelernter,Research at SUNY: Stony Brook.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#GelernterJSW82,http://doi.acm.org/10.1145/1056663.1056722 +Susan L. Epstein,Challenges.,1983,83,SIGART Newsletter,,db/journals/sigart/sigartn83.html#Epstein83,http://doi.acm.org/10.1145/1056613.1056616 +Bernard Meltzer,Department of A.I. - Univ. of Edinburgh.,1975,50,SIGART Newsletter,,db/journals/sigart/sigartn50.html#Meltzer75,http://doi.acm.org/10.1145/1045215.1045216 +N. S. Sridharan,Impressions from the 1982 ACM Symposium on Lisp and Functional Programming.,1982,82,SIGART Newsletter,,db/journals/sigart/sigartn82.html#Sridharan82,http://doi.acm.org/10.1145/1056602.1056609 +Alan E. Filsinger,Practical uses for AI research.,1982,80,SIGART Newsletter,,db/journals/sigart/sigartn80.html#Filsinger82,http://doi.acm.org/10.1145/1056176.1056178 +Monroe M. Newborn,JCIT hosts Israel's first major computer chess tournament.,1980,69,SIGART Newsletter,,db/journals/sigart/sigartn69.html#Newborn80,http://doi.acm.org/10.1145/1056433.1056436 +Gerald DeJong,FRUMP...FRUMP...FRUMP...,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#DeJong77,http://doi.acm.org/10.1145/1045283.1045325 +Paul Creelman,Improving Prolog programs.,1984,89,SIGART Newsletter,,db/journals/sigart/sigartn89.html#Creelman84,http://doi.acm.org/10.1145/1056521.1056524 +Charles E. Martin,An Integrated Architecture for Planning and Learning.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#MartinF91,http://doi.acm.org/10.1145/122344.122369 +Syed S. Ali,Backtracking: the nine lives of the AI.,2001,12,Intelligence,2,db/journals/sigart/sigart12.html#Ali01,http://doi.acm.org/10.1145/378116.378128 +George E. Heidorn,Automatic programming through English dialogue.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Heidorn77a,http://doi.acm.org/10.1145/1045283.1045300 +James F. Allen,A computer model of conversation.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#AllenCCPRH77,http://doi.acm.org/10.1145/1045283.1045294 +John R. Anderson,Design of a production system for cognitive modeling.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#AndersonK77,http://doi.acm.org/10.1145/1045343.1045377 +Deepak Kumar,Curriculum descant: pre-disciplinary AI.,2001,12,Intelligence,1,db/journals/sigart/sigart12.html#Kumar01,http://doi.acm.org/10.1145/376451.376461 +Herbert A. Simon,'Losing move': an information processing concept.,1974,48,SIGART Newsletter,,db/journals/sigart/sigartn48.html#Simon74,http://doi.acm.org/10.1145/1045200.1045203 +David C. Brown,Natural language graphics.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#BrownB0KS77,http://doi.acm.org/10.1145/1045283.1045333 +Michael D. Rychener,An instructable production system: basic design issues.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#RychenerN77,http://doi.acm.org/10.1145/1045343.1045365 +Hans J. Berliner,Backgammon program beats world champ.,1980,69,SIGART Newsletter,,db/journals/sigart/sigartn69.html#Berliner80a,http://doi.acm.org/10.1145/1056433.1056434 +Marie A. Bienkowski,"Review of ""A Reader's Guide to Agent Literacy by Marie A. Bienkowski"".",1998,9,SIGART Bulletin,2,db/journals/sigart/sigart9.html#Bienkowski98,http://doi.acm.org/10.1145/1056754.1056758 +J. E. Caviedes,ViewPoint: a troubleshooting-specific knowledge acquisition tool.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#CaviedesR89,http://doi.acm.org/10.1145/63266.63293 +Roger Knaus,Syntactically based classification from natural language responses.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Knaus77,http://doi.acm.org/10.1145/1045283.1045293 +Susanne M. Humphrey,AI-related dissertations.,1983,86,SIGART Newsletter,,db/journals/sigart/sigartn86.html#HumphreyK83,http://doi.acm.org/10.1145/1056643.1056644 +Amruth Kumar,Announcements.,2001,12,Intelligence,2,db/journals/sigart/sigart12.html#Kumar01a,http://doi.acm.org/10.1145/378116.378123 +Robert St. Amant,Links: AI planning resources on the Web.,2001,12,Intelligence,1,db/journals/sigart/sigart12.html#AmantY01,http://doi.acm.org/10.1145/376451.376464 +Douglas Blank,News.,2001,12,Intelligence,2,db/journals/sigart/sigart12.html#Blank01a,http://doi.acm.org/10.1145/378116.378119 +Raymond J. Mooney,Integrating ILP and EBL.,1994,5,SIGART Bulletin,1,db/journals/sigart/sigart5.html#MooneyZ94,http://doi.acm.org/10.1145/181668.181673 +John F. Burger,Conceptual processing/natural language interface.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Burger77,http://doi.acm.org/10.1145/1045283.1045313 +Juliana S. Lancaster,A cognitively valid knowledge acquisition tool.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#LancasterWM89,http://doi.acm.org/10.1145/63266.63292 +Walter A. Wolf,Knowledge acquisition from multiple experts.,1989,108,SIGART Newsletter,,db/journals/sigart/sigartn108.html#Wolf89,http://doi.acm.org/10.1145/63266.63285 +Howard E. Shrobe,Providing Paradigm Orientation without Implementational Handcuffs.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#Shrobe91,http://doi.acm.org/10.1145/122296.122317 +Christof Peltason,The BACK System - An Overview.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#Peltason91,http://doi.acm.org/10.1145/122296.122314 +Andrew Ortony,Cognitive science vs. artificial intelligence?: an early Greek fragment of dialogue found on an abandoned disk area.,1980,69,SIGART Newsletter,,db/journals/sigart/sigartn69.html#OrtonyW80,http://doi.acm.org/10.1145/1056433.1056439 +Lee D. Erman,Chess and backgammon.,1975,54,SIGART Newsletter,,db/journals/sigart/sigartn54.html#Erman75b,http://doi.acm.org/10.1145/1045247.1045251 +Keith Price,New Books.,1985,93,SIGART Newsletter,,db/journals/sigart/sigartn93.html#Price85a,http://doi.acm.org/10.1145/1056557.1056558 +Robert St. Amant,Links: artificial intelligence and interactive entertainment.,2001,12,Intelligence,2,db/journals/sigart/sigart12.html#AmantY01a,http://doi.acm.org/10.1145/378116.378120 +Keith Price,New Books.,1987,101,SIGART Newsletter,,db/journals/sigart/sigartn101.html#Price87d,http://doi.acm.org/10.1145/29264.1057636 +Cathleen Wharton,An Overview of the Construction-Integration Model: A Theory of Comprehension as a Foundation for a New Cognitive Architecture.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#WhartonK91,http://doi.acm.org/10.1145/122344.122379 +Karen T. Sutherland,Book reviews.,2001,12,Intelligence,3,db/journals/sigart/sigart12.html#Sutherland01b,http://doi.acm.org/10.1145/383824.383833 +Lee D. Erman,Chess.,1977,62,SIGART Newsletter,,db/journals/sigart/sigartn62.html#Erman77,http://doi.acm.org/10.1145/1045398.1045399 +,Natural language processing at Battelle-Columbus.,1985,94,SIGART Newsletter,,db/journals/sigart/sigartn94.html#X85,http://doi.acm.org/10.1145/1056313.1056317 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1987,101,SIGART Newsletter,,db/journals/sigart/sigartn101.html#HumphreyK87b,http://doi.acm.org/10.1145/29264.1057637 +Jerry R. Hobbs,What the nature of natural language tells us about how to make natural-language-like programming languages more natural.,1977,64,SIGART Newsletter,,db/journals/sigart/sigartn64.html#Hobbs77a,http://doi.acm.org/10.1145/872736.806936 +Steve Coles,Chess.,1973,38,SIGART Newsletter,,db/journals/sigart/sigartn38.html#Coles73a,http://doi.acm.org/10.1145/1056781.1056784 +David L. Waltz,Planes: a data base question-answering system.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#WaltzG77,http://doi.acm.org/10.1145/1045283.1045288 +Karen T. Sutherland,Book reviews.,2000,11,Intelligence,4,db/journals/sigart/sigart11.html#Sutherland00c,http://doi.acm.org/10.1145/355137.355144 +Max A. Bramer,Game-playing programs: theory and practice.,1982,80,SIGART Newsletter,,db/journals/sigart/sigartn80.html#Bramer82,http://doi.acm.org/10.1145/1056176.1056190 +N. S. Sridharan,Knowledge-directed inference in believer.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#SridharanS77,http://doi.acm.org/10.1145/1045343.1045352 +Ralph M. Weischedel,Natural language processing research at the University of Delaware.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Weischedel77,http://doi.acm.org/10.1145/1045283.1045315 +Mario C. Grignetti,Intelligent terminals.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Grignetti77,http://doi.acm.org/10.1145/1045283.1045332 +Faisel Saeed,Book review: Annual Review of Computer Science. Ed. by J. F. Traub (Annual Reviews Inc.).,1989,110,SIGART Newsletter,,db/journals/sigart/sigartn110.html#Saeed89,http://doi.acm.org/10.1145/74664.1059786 +Bruce J. Schacter,Scene segmentation by cluster detection in color spaces.,1976,58,SIGART Newsletter,,db/journals/sigart/sigartn58.html#SchacterDR76,http://doi.acm.org/10.1145/1045264.1045267 +Keith Price,Books.,1984,90,SIGART Newsletter,,db/journals/sigart/sigartn90.html#Price84,http://doi.acm.org/10.1145/1056531.1056532 +Rich Fikes,AI sessions at ACM conference.,1976,58,SIGART Newsletter,,db/journals/sigart/sigartn58.html#Fikes76,http://doi.acm.org/10.1145/1045264.1045266 +Shlomo Zilberstein,The Utility of Planning.,1995,6,SIGART Bulletin,1,db/journals/sigart/sigart6.html#Zilberstein95,http://doi.acm.org/10.1145/202187.202196 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1986,95,SIGART Newsletter,,db/journals/sigart/sigartn95.html#HumphreyK86,http://doi.acm.org/10.1145/1056563.1056565 +Rich Fikes,Chess.,1974,46,SIGART Newsletter,,db/journals/sigart/sigartn46.html#Fikes74a,http://doi.acm.org/10.1145/1056793.1056794 +Oscar Firschein,Book review: Natural Language and Voice Processing by Terri C. Walker and Richard K. Miller (SEAI Technical Publications).,1988,103,SIGART Newsletter,,db/journals/sigart/sigartn103.html#Firschein88,http://doi.acm.org/10.1145/44418.1057648 +Brian R. Gaines,Empirical Investigation of Knowledge Representation Servers: Design Issues and Applications Experience with KRS.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#Gaines91,http://doi.acm.org/10.1145/122296.122303 +Yagíl Ronén,Value-Density Algorithms for the Deliberation-Scheduling Problem.,1996,7,SIGART Bulletin,2,db/journals/sigart/sigart7.html#RonenMP96,http://doi.acm.org/10.1145/242587.242598 +Susanne M. Humphrey,Selected AI-Related Dissertations.,1987,100,SIGART Newsletter,,db/journals/sigart/sigartn100.html#HumphreyK87a,http://doi.acm.org/10.1145/24671.1057630 +Robert F. Simmons,Text knowledge bases: University of Texas at Austin.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Simmons82,http://doi.acm.org/10.1145/1056663.1056728 +Bruce Wilcox,Reflections on building two Go programs.,1985,94,SIGART Newsletter,,db/journals/sigart/sigartn94.html#Wilcox85,http://doi.acm.org/10.1145/1056313.1056318 +Sergei Nirenburg,HU2: the Hebrew University: Hebrew Understander.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#NirenburgALMS82,http://doi.acm.org/10.1145/1056663.1056698 +V. William Porto,Generating novel tactics through evolutionary computation.,1998,9,SIGART Bulletin,2,db/journals/sigart/sigart9.html#PortoFF98,http://doi.acm.org/10.1145/1056754.1056755 +Jerry Felsen,Automation of investment analysis.,1975,53,SIGART Newsletter,,db/journals/sigart/sigartn53.html#Felsen75,http://doi.acm.org/10.1145/1216504.1216506 +Wolfgang Wahlster,HAM-RPM: a knowledge-based conversationalist.,1977,61,SIGART Newsletter,,db/journals/sigart/sigartn61.html#Wahlster77,http://doi.acm.org/10.1145/1045283.1045305 +Herbert A. Simon,Lessons from Perception for Chess-Playing Programs (and vice versa).,1973,43,SIGART Newsletter,,db/journals/sigart/sigartn43.html#Simon73,http://doi.acm.org/10.1145/1056786.1739259 +Jeffrey M. Bradshaw,Letter from the chair.,2000,11,Intelligence,1,db/journals/sigart/sigart11.html#Bradshaw00,http://doi.acm.org/10.1145/333175.333176 +Thomas D. Williams,The visions system.,1975,52,SIGART Newsletter,,db/journals/sigart/sigartn52.html#Williams75,http://doi.acm.org/10.1145/1045236.1045244 +Barbara Hayes-Roth,An Integrated Architecture for Intelligent Agents.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#Hayes-Roth91,http://doi.acm.org/10.1145/122344.122359 +Louis J. Hoebel,Intelligence: what's in a name?,1998,9,SIGART Bulletin,2,db/journals/sigart/sigart9.html#Hoebel98,http://doi.acm.org/10.1145/1056754.1056766 +Carl Vogel,Socrates: a project integrating human science with computer science.,1988,105,SIGART Newsletter,,db/journals/sigart/sigartn105.html#Vogel88,http://doi.acm.org/10.1145/49093.49095 +David D. McDonald,Research at the U. of Massachusetts at Amherst.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#McDonald82,http://doi.acm.org/10.1145/1056663.1056709 +T. Mahadeva Rao,An algorithm to play the game of mastermind.,1982,82,SIGART Newsletter,,db/journals/sigart/sigartn82.html#Rao82,http://doi.acm.org/10.1145/1056602.1056607 +Tamio Shimizu,Efficient utilization of algorithms through heuristic learning.,1973,41,SIGART Newsletter,,db/journals/sigart/sigartn41.html#Shimizu73,http://doi.acm.org/10.1145/1045171.1045173 +D. S. Himmelman,Natural-language processing for computer-supported instruction.,2001,12,Intelligence,4,db/journals/sigart/sigart12.html#Himmelman01,http://doi.acm.org/10.1145/504313.504323 +Jerry Gleason,Robot research in Japan.,1973,39,SIGART Newsletter,,db/journals/sigart/sigartn39.html#Gleason73,http://doi.acm.org/10.1145/1045154.1045157 +Doug Lenat,Learning program helps win national fleet wargame tournament.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Lenat82,http://doi.acm.org/10.1145/1056663.1056665 +Lotfi A. Zadeh,Research on meaning-representation in natural languages: U. of California at Berkeley.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#Zadeh82,http://doi.acm.org/10.1145/1056663.1056676 +Robert M. MacGregor,Inside the LOOM Description Classifier.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#MacGregor91,http://doi.acm.org/10.1145/122296.122309 +Randall Davis,Knowledge acquisition in rule-based systems: knowledge about representation as a basis for system construction and maintenance.,1977,63,SIGART Newsletter,,db/journals/sigart/sigartn63.html#Davis77,http://doi.acm.org/10.1145/1045343.1045359 +Pietro Baroni,Active mental entities: a new approach to building intelligent autonomous agents.,1998,9,SIGART Bulletin,1,db/journals/sigart/sigart9.html#BaroniFGM98,http://doi.acm.org/10.1145/294828.294829 +Scott D. Anderson,Two Ways to Act.,1991,2,SIGART Bulletin,4,db/journals/sigart/sigart2.html#AndersonHC91,http://doi.acm.org/10.1145/122344.122346 +Ben Mittman,Results of the fourth annual U.S. computer chess tournament.,1973,42,SIGART Newsletter,,db/journals/sigart/sigartn42.html#MittmanN73,http://doi.acm.org/10.1145/1045177.1045181 +Wullianallur Raghupathi,Research themes and trends in artificial intelligence.,1999,10,Intelligence,2,db/journals/sigart/sigart10.html#RaghupathiN99,http://doi.acm.org/10.1145/309697.309703 +Lisa Meeden,News.,1999,10,Intelligence,2,db/journals/sigart/sigart10.html#Meeden99a,http://www.acm.org/pubs/citations/journals/intelligence/1999-10-2/p8-meeden/ +William Bregar,An intelligent tutor for high school algebra problems: Oregon State University.,1982,79,SIGART Newsletter,,db/journals/sigart/sigartn79.html#BregarF82,http://doi.acm.org/10.1145/1056663.1056717 +Keith Price,New books.,1989,107,SIGART Newsletter,,db/journals/sigart/sigartn107.html#Price89b,http://doi.acm.org/10.1145/65751.1059600 +Joe K. Clema,A progress report on project CONSIM.,1973,42,SIGART Newsletter,,db/journals/sigart/sigartn42.html#Clema73,http://doi.acm.org/10.1145/1045177.1045180 +Samuel Bayer,The Relation-Based Knowledge Representation of King Kong.,1991,2,SIGART Bulletin,3,db/journals/sigart/sigart2.html#BayerV91,http://doi.acm.org/10.1145/122296.122299 +Rainer Johanni,Optimale Bahnplanung für Industrieroboter.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#JohanniP87, +Günter Pritschow,Automatisierte Erstellung von Rückwärtstransformationen für Industrieroboter unter Anwendung eines optimierten iterativen Lösungsverfahrens.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#PritschowKB89, +Walter Schwinn,Verfahren zur Untersuchung der Bewegungsmöglichkeiten von Industrierobotern.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#SchwinnS91, +Paul Levi,Sensoren für Roboter.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#LeviV87, +W. L. Xu,Relative calibration method for improving robot accuracy.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#XuW92, +Hans-Jürgen Warnecke,Zwei Verfahren zur Kollisionserkennung und Vermeidung bei der Off-line-Programmierung von Industrierobotern.,1986,2,Robotersysteme,3,db/journals/robotersysteme/robotersysteme2.html#WarneckeA86, +J. Harzer,Entwicklung eines Manipulators für den Streckenausbau im Steinkohlebergbau.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#HarzerVEW89, +G. Dittrich,Rechnerunterstützte grafische Darstellung der Arbeitsräume von Handhabungsgeräten als Hilfsmittel zu deren Auswahl für gestellte Handhabungsaufgaben.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#DittrichS87, +B. Köhler,Kalibrierung eines Großroboters mit einem elektronischen Theodoliten.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#KohlerW90, +Andreas Hörmann,Steuerung und Systemarchitektur von fortgeschrittenen autonomen Systemen.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#Hormann89, +Günter Pritschow,Digitale Lageregelung von Industrieroboter-Bewegungsachsen.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#PritschowS88, +Stefan Türk,Das DFVLR Modell Nr. 1 des Industrieroboters Manutec r3.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#TurkO87, +H. J. Klein,Praktische Anwendung und Ergebnisse einer nichtlinearen Regelung für Industrieroboter.,1986,2,Robotersysteme,4,db/journals/robotersysteme/robotersysteme2.html#Klein86, +Wolfgang Schirmer,Zur Vermessung von Industrierobotern mit geodätischen Methoden.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#Schirmer90, +Klaus Kempkens,Optimierung der Verfahrparameter von Industrieroboter-Steuerungen.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#Kempkens90, +G. Duelen,Roboter-Kalibration durch Abstandsmessungen.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#DuelenS91, +Eckhard Freund,Expertenunterstützungssystem für die Roboterdiagnose.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#FreundS91, +Hans Kurt Tönshoff,Flexibles Steuerungssystem für Unterwasser-Handhabungsgeräte.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#TonshoffP91, +Hans-Jürgen Warnecke,Integrierte Sensoraktions-Planung als neuartige Sensor- und Steuerungsarchitektur für den mobilen autonomen Roboter IPAMAR.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#WarneckeD87, +Andreas Hörmann,Planung kollisionsfreier Greifoperationen. Analyse der Objektgeometrie.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#HormannH90, +Erika Beer,Exakte Bewegungsplanungsalgorithmen.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#BeerL90, +S. Hesse,Auswahl flexibler Greifer.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#HesseM89, +U. Süss,Eine Ergonomiestudie über den Bediener eines Master-Slave-Manipulators.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#Suss88, +Uwe Süss,M2IDI: Mensch-Maschine Interface für das digitale Telemanipulatorsteuerungssystem DISTEL.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#Suss91, +Th. Friedmann,Roboter in der Automobilindustrie.,1986,2,Robotersysteme,,db/journals/robotersysteme/robotersysteme2.html#Friedmann86, +G. Zimmer,Integration von Sensoren mit VLSI-Technologien.,1986,2,Robotersysteme,,db/journals/robotersysteme/robotersysteme2.html#ZimmerH86, +P. Drews,Prozeßrechner koordiniert verschiedene Roboter mittels Sensorinformationen.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#DrewsFWW87, +Günter Pritschow,Programmierung von roboterbestückten Produktionsanlagen.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#PritschowFSW89, +P. Drews,Optisches Sensormeßprinzip zur Erfassung der Fugengeometrie für die Automatisierung beim Lichtbogenschweißen.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#DrewsW87, +Günter Pritschow,Dynamisches Verhalten und Grenzen sensorgeführter Industrieroboter mit vorausblickendem Sensor.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#PritschowHG92, +Bekir Dizioglu,Die singulären Bahnstellen bei der räumlichen Bewegung starrer Getriebeglieder.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#Dizioglu87, +W. Backé,Programmierbare Greifer mit servopneumatischen Antrieben.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#BackeZ89, +Charles Baur,Bildanalyse mit Hilfe von CAD-Oberflächenmodellen.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#BaurB89, +Jun'ichi Takeno,Realization of a 3D vision mobile robot that can avoid collision with moving obstacles.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#TakenoMS92, +Günter Pritschow,Roboterzellen-Programmierung: Die Sprache IRL und der Zwischencode ICR.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#PritschowF92, +Karsten Berns,Die Anwendung eines Backpropagation-Algorithmus zur Steuerung einer Folgefahrt.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#BernsH91, +W. Backé,Einsatz von servopneumatischen Antrieben für flexible Handhabungstechnik.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#Backe85, +Peter Adolphs,Schnelle kollisionsvermeidende Bahnplanung im Konfigurationsraum mit Entfernungsfeldern.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#AdolphsN90, +R. Gruber,Kinematik- und Arbeitsraumuntersuchungen an einem 7-achsigen Manipulator mit schrägen und gekoppelten Gelenken.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#Gruber92, +Hans-Jürgen Warnecke,Diagnose an Industrierobotern.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#WarneckeEL90, +Michael Göhner,Einheitliche Programmierung von Industrierobotersystemen mit einem Struktureditor.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#GohnerS89, +Wolfgang Gerke,Die dynamische Programmierung zur Planung kürzester kollisionsfreier Bahnen für Industrieroboter.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#Gerke85, +Andreas Hörmann,Ein Ansatz zur Realisierung intelligenter fehlertoleranter Robotersysteme.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#HormannHM88, +Hans-Jürgen Warnecke,Vorgehensweise zur montagegerechten Produktgestaltung.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#WarneckeB87, +J. Wittenburg,MESA VERDE Ein Computerprogramm zur Simulation der nichtlinearen Dynamik von Vielkörpersystemen.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#WittenburgW85, +Bernd Freyermuth,Modellgestützte Fehlerdiagnose von Industrierobotern mittels Parameterschätzung.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#Freyermuth90, +Walter Schwinn,Mehrdeutigkeiten der inversen kinematischen Transformation.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#Schwinn89, +C. Woernle,Ein systematisches Verfahren für die Rückwärtstransformation bei Industrierobotern.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#Woernle87, +Achim Schweikard,Ein iteratives Verfahren zur Bestimmung überschneidungsfreier Teilstücke von Bewegungen.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#Schweikard90, +Achim Schweikard,Berechnung erreichbarer Effektorstellungen für Handhabungsgeräte mit weniger als sechs Freiheitsgraden.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#SchweikardH88, +I. M. Tchouchenkov,Eine effiziente Berechnungsmethode für die kürzeste Trajektorie.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#Tchouchenkov91, +Claudio Melchiorri,Sliding mode control for a robotic hand.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#MelchiorriT92, +G. W. Köhler,Historische Entwicklung der Manipulator-Technik.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#Kohler85, +J. Kleckner,Stabilitätsbetrachtung bei robotergeführter Fräsbearbeitung unter Berücksichtigung geschwindigkeitsproportionaler Prozeßkräfte.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#Kleckner92, +Hans-Jürgen Warnecke,Modellgestützte Bildverarbeitung in der Fertigungsmeßtechnik. Ein Verfahren zur sicheren Meßwertgewinnung.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#WarneckeK88, +K. Miller,The Lagrange-based model of Delta-4 robot dynamics.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#MillerC92, +Eckhard Freund,Entwurf nichtlinearer Regler für Industrieroboter aufgrund von Referenzbahnen und Sensorkorrekturen.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#FreundB89, +R. Bäckmann,Optoelektronische Sensoren - Sensoroptiken. Einige Grundsätze zur Auswahl optischer Sensor-Komponenten für die Textilidentifikation.,1986,2,Robotersysteme,,db/journals/robotersysteme/robotersysteme2.html#Backmann86, +H. Weule,Optisches Meßsystem zur Genauigkeitsprüfung von Industrierobotern.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#WeuleR87, +P. Drews,Sensorsystem mit gekreuztem Lichtschnittverfahren.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#DrewsB91, +D. Schmid,Dynamik programmgeführter und sensorgeführter Industrieroboter.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#SchmidM87, +Christoph Woenckhaus,Konzeption eines Systems zur automatischen 3D-Layoutoptimierung.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#Woenckhaus92, +H. Hesse,Die Hough-Transformation.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#HesseG88, +F. Mehner,Kartesisches Handachsenpendeln beim Bahnschweißen.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#Mehner89, +Alfons Kemper,Ein Datenbanksystem für Robotikanwendungen.,1986,2,Robotersysteme,3,db/journals/robotersysteme/robotersysteme2.html#KemperWL86, +Oskar von Dungern,Vorbereitende und begleitende Ablaufplanung für flexible Montagezellen in industrieller Umgebung.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#DungernS90, +Günter Pritschow,Aufbau von Industrierobotern mit modularen Antriebselementen.,1986,2,Robotersysteme,,db/journals/robotersysteme/robotersysteme2.html#PritschowW86, +Heinrich Niemann,Semantische Netze als Ansatz zur Repräsentation und Nutzung von Wissen für die automatische Bildanalyse.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#NiemannS85, +K. Rall,Roboterkoordinatensystem-Ursprungsbestimmung mit Hilfe der robotereigenen Sensorik unter Berücksichtigung des Genauigkeitsverhaltens.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#RallWS92, +M. Wadle,Umwelterfassung und modellgestützte Kollisionsdetektion bei hochflexiblen Handhabungsgeräten.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#WadleC89, +Faydor L. Litvin,Toward the inverse kinematics of a 7 degree-of-freedom manipulator.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#LitvinST89, +Gerhard Werling,Ein Verfahren zur automatischen Plazierung von Montage-Robotern.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#Werling90, +Klaus A. Hörmann,Ein Verfahren zur Planung von Feinbewegungen für Montageoperationen.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#HormannW89, +Fan Dai,Graphische Simulation von Robotern mit einem graphisch-funktionalen Modell.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#DaiK87, +Günter Pritschow,Schnelle adaptive Signalverarbeitung für Lichtschnittsensoren.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#PritschowH91a, +Eckhard Freund,Ein Algorithmus zur Kollisionserkennung und -vermeidung bei Robotern mit zylinderförmigem Arbeitsraum.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#FreundB90, +X. Sheng,Geometrische Modellierung für Roboter-Simulation.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#ShengH91, +U. Günzel,Kraft- und Momentenregelung für Master-Slave-Servomanipulatoren.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#GunzelW88, +Eckhard Freund,Entwicklung eines VAL-II-Compilers für die Zielsprache IRDATA.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#FreundW91, +A. Visser,Offline-Korrektur von Bewegungsbahnen mit variabler Orientierung.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#VisserK90, +D. Schmid,Zusatzachsen verbessern die Sensorführung von Robotern.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#SchmidHS89, +Günter Pritschow,Koordinierte Bahnführung zweier Roboter.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#PritschowK91, +W. Weber,Regelung/Steuerung von elektrischen Master-Slave-Manipulatoren mit dem inversen Modell.,1986,2,Robotersysteme,,db/journals/robotersysteme/robotersysteme2.html#WeberB86, +J. Müglitz,Roboterähnliche räumliche Führungsmechanismen.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#Muglitz91, +Wei Li 0006,Schnelle Abbildung von Hindernissen in den Konfigurationsraum.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#Li91, +P. Drews,Sensorsystem zur Fugenverfolgung und Fugengeometrieerfassung beim automatisierten Schutzgasschweißen.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#DrewsWSW92, +Rüdiger Dillmann,Ein CAD-unterstützter Trajektorien Entwurfseditor.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#DillmannS88, +András Siegler,Fehleranalyse von Robotermanipulatoren als Teil der Bahnberechnung.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#Siegler88, +Günter Pritschow,Methode zur Robotersimulation unter Berücksichtigung der schwingungsfähigen Mechanik und lagegeregelten Antriebe.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#PritschowH89, +G. Spur,Sensorunterstütztes Montagesystem.,1986,2,Robotersysteme,,db/journals/robotersysteme/robotersysteme2.html#SpurSFD86, +Ulrich Rembold,Autonome mobile Roboter.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#Rembold88, +U. Negretto,Erweiterte Petri-Netze in flexiblen Fertigungs- und Montagesystemen.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#NegrettoR88, +Frank Wallner,Reflexive Navigation basierend auf künstlichen Potentialfeldern.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#Wallner92, +Matthias Aner,Fügemechanismen mit Sensorik in der automatischen Montage.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#Aner92, +G. Dittrich,Optimierung der kinematischen Abmessungen von Handhabungsgeräten.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#DittrichM87, +U. Zachmann,Reinforcement-Learning bei der Steuerung eines autonomen mobilen Roboters.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#ZachmannB91, +H. Gärlich,Ausgewählte Probleme der Positionierung und mathematischen Modellierung beim Einsatz von Gleitschalungsfertigern im Zementbetonstraßenbau.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#Garlich90, +H. Loose,Simulation von Manipulatoren in Handhabungs- und Bearbeitungsprozessen.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#LooseU90, +U. Ahrens,Sensorschnittstellen für Robotersteuerungen.,1986,2,Robotersysteme,,db/journals/robotersysteme/robotersysteme2.html#AhrensDL86, +K. Dietmayer,Ein dynamisches Modell für Flurförderzeuge.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#DietmayerH92, +Hans-Jürgen Warnecke,Flexible Mehrstellenhandhabung mit mobilem Industrieroboter.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#WarneckeS85, +J. Wauer,Symbolische Generierung der Bewegungsgleichungen hybrider Robotersysteme.,1986,2,Robotersysteme,3,db/journals/robotersysteme/robotersysteme2.html#Wauer86, +Alois Tauber,Ein Verfahren zur Lösung der allgemeinen Rücktransformation unter Berücksichtigung von Randbedingungen.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#Tauber89, +M. Schweizer,Fügen von Crimpkontakten mit Industrieroboter unter Zuhilfenahme eines Bildverarbeitungssystems.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#SchweizerDG87, +Veit Held,Identifikation der Trägheitsparameter von Industrierobotern.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#Held89, +G. Duelen,Automatische Bewegungssynthese für bahnbezogen kooperierende Industrieroboter.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#DuelenKHM87, +M. C. Wanner,Manipulatoren für den Tunnel- und Streckenausbau im Untertagebetrieb.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#WannerH87, +Peter Saffe,Moderne servohydraulische Antriebe für Industrieroboter.,1986,2,Robotersysteme,4,db/journals/robotersysteme/robotersysteme2.html#Saffe86, +M. Gustmann,Modifizierter Industrieroboter geht in die Unterwasser-Erprobung.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#GustmannNAS91, +Wolfgang M. Grimm,Methoden für die Normabschätzung der Nichtlinearitäten von Roboterbewegungsgleichungen.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#GrimmF89, +M. Eppinger,Systematischer Vergleich von Verfahren zur Rückwärtstransformation bei Industrierobotern.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#EppingerK89, +Hans-Jürgen Warnecke,Musterverarbeitung mit taktilen Sensoren Konzept eines Modularen Aktiven Greifer-/Sensorensystems (MAGS).,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#WarneckeSS87, +M. Reddig,Iterative Methoden der Koordinatentransformation am Beispiel eines 6-Achsen-Gelenkroboters mit Winkelhand.,1986,2,Robotersysteme,3,db/journals/robotersysteme/robotersysteme2.html#ReddigS86, +T. Tempelmeier,Eine Roboterzelle für die Fertigung des Airbus-Seitenleitwerks.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#TempelmeierG89, +Toshihiro Tsumura,Recent development of automated guided vehicles in Japan.,1986,2,Robotersysteme,,db/journals/robotersysteme/robotersysteme2.html#Tsumura86, +Martin Frühauf,Eine Wissensbasis zur Beschreibung von Roboterarbeitszellen.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#FruhaufD88, +Andrew A. Goldenberg,On the bilateral control of master-slave teleoperators.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#GoldenbergBS91, +Siegfried Bocionek,Ein System kooperierender Regelmoduln für die aufgabenorientierte Programmierung.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#BocionekF90, +Klaus A. Hörmann,Planung kollisionsfreier Greifoperationen: Kollisionsfreie Bahnplanung für Greifer und Manipulator.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#HormannW90, +Thomas Horsch,Schnelle kollisionsvermeidende Bahnplanung für einen Roboter mit 6 rotatorischen Freiheitsgraden.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#HorschNA91, +M. Jantzer,Bahnregelung flächenbeweglicher Flurförderzeuge.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#Jantzer87, +Dimitry M. Gorinevsky,Experiments in direct learning of feedforward control for manipulator path tracking.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#Gorinevsky92, +G. Schupp,Flexible Montageautomation in der Pkw-Endmontage.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#Schupp87, +Hans-Jürgen Warnecke,Integriertes sensorgestütztes Robotersystem.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#WarneckeLG88, +Albin Dirndorfer,Industrieroboter zur förderbandsynchronen Montage.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#Dirndorfer92, +H. Petters,Bildverarbeitung unter UNIX.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#Petters85, +T. Tempelmeier,Das Steuerungskonzept für die Fertigung des Airbag-Gasgenerators. Einsatz von Montagerobotern unter extremen Anforderungen der Qualitätssicherung.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#Tempelmeier88, +Heinz Wörn,CAD-Simulation unterstützt Robotereinsatz.,1986,2,Robotersysteme,3,db/journals/robotersysteme/robotersysteme2.html#WornS86, +P. Drews,Echtzeit-Bahnplanung eines Roboters unter Sensoreinsatz.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#DrewsZ89, +Peter Rojek,Schnelle Koordinatentransformation und Führungsgrößenerzeugung für bahngeführte Industrieroboter.,1986,2,Robotersysteme,,db/journals/robotersysteme/robotersysteme2.html#RojekOL86, +E. Aust,Modifikation eines inkrementalen Drehgebers für den Unterwassereinsatz von Robotern bis zu Wassertiefen von 1200 m.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#AustD88, +D. Schmid,Taktile Sensoren für adaptive multisensorielle Greifsysteme.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#SchmidHM88, +Wolfgang Weber 0002,AGRIS: Programmsystem zur automatischen Generierung von effizienten inversen Robotermodellen.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#Weber91, +Walter Schwinn,Standpunktoptimierung von Industrierobotern in Fertigungszellen.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#Schwinn90, +E. Becker,Ausgewählte Aspekte bei der Entwicklung eines Portalroboters.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#BeckerS88, +Bernd Radig,Modellierung symmetrischer Werkstücke.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#RadigS85, +Eckhard Freund,Automatische Bahnbestimmung in Echtzeit für Robotersysteme.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#FreundH87, +Eckhard Freund,OSIRIS - Ein objektorientiertes System zur impliziten Roboterprogrammierung und Simulation.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#FreundHKM90, +Karim A. Tahboub,A reduced dynamic model for constrained robots in the task frame.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#TahboubM91, +Gerd Hirzinger,Adaptiv sensorgeführte Roboter mit besonderer Berücksichtigung der Kraft-Momenten-Rückkopplung.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#Hirzinger85, +Mamoru Mitsuishi,Diagnostic system for robot using a force-torque sensor.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#Mitsuishi89, +B. Graf,Flächenoptimale Belegung von Flachmagazinen für die Handhabungstechnik.,1986,2,Robotersysteme,,db/journals/robotersysteme/robotersysteme2.html#Graf86, +M. Hiller,Programmsystem zur Behandlung der Rückwärtstransformation bei sechsachsigen Industrierobotern.,1986,2,Robotersysteme,4,db/journals/robotersysteme/robotersysteme2.html#HillerWS86, +Günter Pritschow,Elektrische Direktantriebe für Robotergrundachsen.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#PritschowP90, +I. Cawi,Fortschrittliche Lageregelung einer Roboterachse.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#CawiW88, +Péter Kovács,Ermittlung von Triangulationen kleinsten Grades für die inverse kinematische Transformation.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#Kovacs90, +Roman Kalný,Continuous path control of non-simple robots.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#KalnyV91, +H. Tersch,Verbesserung der Positioniergenauigkeit von Industrierobotern.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#Tersch88, +P. Dietmaier,Ein Programmsystem zur automatischen Erstellung der übertragungsfunktionen räumlicher Mechanismen.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#Dietmaier92, +P. Melcher,Mathematische Modellbildung zur Befahrbarkeitssimulation einer mobilen Tiefsee-Arbeitsmaschine.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#Melcher88, +Günter Pritschow,Geometriesensoren und Sensordatenverarbeitung für die automatisierte Roboterprogrammierung.,1986,2,Robotersysteme,,db/journals/robotersysteme/robotersysteme2.html#PritschowG86, +Uwe Ahrens,Möglichkeiten und Probleme der Anwendung von Luft-Ultraschallsensoren in der Montage- und Handhabungstechnik.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#Ahrens85, +S. Faulhaber,Regelungskonzepte für schwach gedämpfte Antriebe in Handhabungssystemen.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#Faulhaber87, +Axel Köhne,Wissenbasierte Aktionsplanung und Konfigurierung. Ein überblick über den Stand der Technik.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#KohneW91, +Hans-Jürgen Warnecke,Entwicklung eines Compliance-Elements zur Montageautomatisierung.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#WarneckeF90, +Rüdiger Dillmann,Ein sensorintegrierter Greifer als modulares Teilsystem für Montageroboter.,1986,2,Robotersysteme,4,db/journals/robotersysteme/robotersysteme2.html#DillmannHM86, +E. Aust,Anpassung eines Roboterteilsystems für den Seewassereinsatz und Erprobung bis 1100 m Wassertiefe.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#AustNSMBS89, +Ralf Gutsche,MONAMOVE - Ein Navigations- und überwachungssystem für fahrerlose Transportfahrzeuge in Fabrikationsumgebungen.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#GutscheLW92, +Bernhard J. Frommherz,Spezifikation von dreidimensionalen Szenen durch graphische Definition räumlicher Beziehungen.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#FrommherzW89, +Kostas J. Kyriakopoulos,On-line collision prediction for mobile robot collision avoidance under uncertainty.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#KyriakopoulosS92, +G. W. Köhler,Vorteile von elektrischen Master-Slave-Manipulatoren.,1986,2,Robotersysteme,4,db/journals/robotersysteme/robotersysteme2.html#Kohler86a, +F. Mehner,Automatische Generierung von Rücktransformationen für nichtredundante Roboter.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#Mehner90, +Arno Behrens,Off-line-programmierte Bewegungsplanung für Industrieroboter auf der Grundlage eines fehlerkompensierenden Identifikationsverfahrens.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#BehrensT92, +D. Schmid,Sensorunterstützte Bahnprogrammierung beim Laserschweißen mit Roboter.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#SchmidSM92, +Leon Beiner,Time-optimization of point-to-point robotic motions.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#Beiner90, +G. W. Köhler,Mechanische Master-Slave-Manipulatoren.,1986,2,Robotersysteme,,db/journals/robotersysteme/robotersysteme2.html#Kohler86, +Hermann Heiß,Grundlagen der Koordinatentransformation bei Industrierobotern.,1986,2,Robotersysteme,,db/journals/robotersysteme/robotersysteme2.html#Heiss86, +P. Drews,Optische Sensorsysteme für das automatisierte Lichtbogenschweißen.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#DrewsFW85, +F. Sternheim,Computation of the direct and inverse geometric models of the Delta 4 parallel robot.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#Sternheim87, +Manfred Weck,Graphisch interaktives Programmier- und Testsystem für Industrieroboter.,1986,2,Robotersysteme,4,db/journals/robotersysteme/robotersysteme2.html#WeckNO86, +Hans-Jürgen Warnecke,Entwicklung und Anwendung rechnergestützter Konstruktionshilfen zur Auslegung von Roboterstrukturen.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#WarneckeW85, +H. Gzik,"Rationalisierungsreserven im Schweißbereich. Auswahl der ""richtigen"" Werkstücke für das Roboterschweißen.",1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#Gzik87, +G. Devaquet,A simple mechanical model for the DELTA-Robot.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#DevaquetB92, +Alessandro De Luca 0001,The reduced gradient method for solving redundancy in robot arms.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#LucaO91, +F. J. Arendts,Der Einsatz von Faserverbungwerkstoffen im Rahmen eines Roboterbaukastensystems.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#ArendtsPNW88, +Karl-Heinz Meisel,Verarbeitung von Sensorsignalen in Robotersteuerungen.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#MeiselB85, +Eckhard Freund,Ein Verfahren zur automatischen Kollisionsvermeidung für Roboter.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#FreundH85, +Rainer Stetter,Einbindung physikalischer Effekte in die 3D-Simulation eines Handhabungsprozesses.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#Stetter92, +Klaus A. Hörmann,Bewegungen unter Unsicherheit.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#HormannHS91, +Theo J. Doll,Nichttaktile Sensoren für Roboter und Sensoreinsatzplanung.,1986,2,Robotersysteme,,db/journals/robotersysteme/robotersysteme2.html#Doll86, +Hans-Jürgen Warnecke,Steuerung einer mehrdimensionalen Justage über Fuzzy-Logik.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#WarneckeK92, +Theo J. Doll,Entwicklung einer Roboterhand für die Feinmanipulation von Objekten.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#Doll87, +H. Heidenbluth,ALI: Allgemeine Software-Schnittstelle für die Off-line-Programmierung automatisierter Montagesysteme.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#Heidenbluth91, +Günter Pritschow,Dynamik derzeitiger Sensorregelkreise für Industrieroboter.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#PritschowH91, +Günter Pritschow,Erhöhung der Bahngenauigkeit von Industrierobotern.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#PritschowKBH92, +Jörg Raczkowsky,Werkstückerkennung mit einem Binärbildverarbeitungssystem.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#Raczkowsky85, +Helge-Björn Kuntze,Algorithmen zur versteifenden Regelung von elastischen Industrierobotern.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#KuntzeJ85, +Hermann Heiß,Konstruktionskriterien und Lösungsverfahren für Industrieroboter mit explizit lösbarer kinematischer Gleichung.,1986,2,Robotersysteme,3,db/journals/robotersysteme/robotersysteme2.html#Heiss86a, +Helge-Björn Kuntze,Sensorgestützte Programmierung und Steuerung von Industrierobotern.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#KuntzeJFMSB88, +Paul Levi,Ikonisches Kernsystem (IKS). Ein Ansatz zur Vereinheitlichung von Grundfunktionen der Bildverarbeitung und der Merkmalsextraction.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#Levi85, +Günter Pritschow,RDL - ein Werkzeug zur Robotermodellierung.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#PritschowBA91, +D. Popovic,Suchverfahren zur kollisionsfreien Bahnplanung für Industrieroboter.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#PopovicHSW92, +W. Kühn,Identifikation der Systemparameter 6-achsiger Gelenkarmroboter mit Hilfe der Evolutionsstrategie.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#KuhnV92, +Wei Li 0006,Modifizierung des Roberts' Algorithmus zur graphischen Darstellung von Robotern.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#LiJW90, +Rüdiger Dillmann,Ein Softwaresystem zur Simulation von robotergestützten Fertigungsprozessen.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#DillmannH85, +H. Geißelmann,Sichtsysteme in der Industrie.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#GeisselmannONT85, +M. C. Wanner,Hochflexible Handhabungssysteme. Ergebnisse einer Einsatzfalluntersuchung.,1986,2,Robotersysteme,4,db/journals/robotersysteme/robotersysteme2.html#WannerBKW86, +Manfred Weck,Prozeßnahe Roboterprogrammierung unter Einsatz eines inertialen Meßsystems.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#WeckMW88, +Bernhard J. Frommherz,Automatische Erzeugung von Vorranggraphen.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#FrommherzH88, +Jörg Raczkowsky,Multisensorik für ein Robotersystem.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#Raczkowsky88, +Andreas Jacubasch,Anwendung eines neuen Verfahrens zur schnellen und robusten Positionsregelung von Industrierobotern.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#JacubaschKAR87, +Hans-Jürgen Warnecke,Untersuchungen über die automatische Montage von Schläuchen mit Industrierobotern.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#WarneckeF88, +Christian von Albrichsfeld,Echtzeitfähige kollisionsvermeidende Bahnplanung durch Kombination globaler und lokaler Methoden.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#AlbrichsfeldH92, +Gerd Schlaich,Kabelbaummontage mit Industrierobotern.,1989,5,Robotersysteme,,db/journals/robotersysteme/robotersysteme5.html#Schlaich89, +J. Lang,Anwendung von fortgeschrittenen Positions-Kraft-Regelungskonzepten bei einem Zweiarmrobotersystem.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#LangMT91, +Wei Li 0006,Automatische Bestimmung kollisionsfreier Bewegungsbahnen für Industrieroboter.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#Li90, +H. Breitwieser,DISTEL: Digitales Steuerungssystem für Telemanipulatoren.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#Breitwieser91, +Günter Pritschow,Steuerungsstruktur und Programmierkonzept zur On-line-Bewegungskoordinierung zweier Roboter in einer flexiblen Montagezelle.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#PritschowB90, +Alois Knoll,Akustische Holographie - ein Hilfsmittel zur Bestimmung der räumlichen Position von Objekten in der Robotik.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#Knoll88, +G. W. Köhler,"Elektrischer Master-Slave-Manipulator ""EMSM-2B"".",1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#KohlerS88, +Peter Mertens,Entwicklung und Anwendung von Expertensystemen auf Personal Computern.,1987,3,Robotersysteme,,db/journals/robotersysteme/robotersysteme3.html#MertensS87, +D. Schmid,Autonom sensorgeführter Roboter zur Schleifbearbeitung von Behältersegmenten.,1990,6,Robotersysteme,,db/journals/robotersysteme/robotersysteme6.html#SchmidMZ90, +Subhash Wadhwa,Analysis of collision avoidance in multirobot cells using Petri nets.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#WadhwaB88, +Leonie S. Dreschler-Fischer,Konzeption für ein Bildverarbeitungssystem zur Lösung des Korrespondenzproblems bei Stereo-Bildfolgen im Rahmen einer komfortablen ADA-Programmierumgebung.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#Dreschler-FischerH85, +Friedrich Pfeiffer,Augmented flexible link manipulator trajectory control for moving a filled glass.,1992,8,Robotersysteme,,db/journals/robotersysteme/robotersysteme8.html#PfeifferRK92, +Karsten Berns,Anwendungen neuronaler Netze in der Robotik.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#Berns91, +Ralf Heine,Kollisionsfreie Bahnplanung für Roboter.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#HeineS91, +P. Mertens,Programming industrial robots for flexible palletizing.,1988,4,Robotersysteme,,db/journals/robotersysteme/robotersysteme4.html#MertensD88, +Rymantas Kazys,Programmable ultrasonic range finder for mobile robot.,1991,7,Robotersysteme,,db/journals/robotersysteme/robotersysteme7.html#KazysKDMB91, +P. B. Krause,Modellgesteuerte Bildanalyse zur Erkennung und Positionsvermessung übereinanderliegender Werkstücke.,1985,1,Robotersysteme,,db/journals/robotersysteme/robotersysteme1.html#KrauseFH85, +Paul W. Vaughan,PRISM: An Object-Oriented System Modeling Toolkit.,1994,4,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs4.html#VaughanN94, +B. J. Doray,Design Issues for a Message-Passing Multiprocessor System for Distributed Logic Simulation.,1991,1,Int. Journal in Computer Simulation,3,db/journals/ijcs/ijcs1.html#DorayL91, +Gölgen Bengü,An Implementation of a Simulation Optimization System.,1994,4,Int. Journal in Computer Simulation,3,db/journals/ijcs/ijcs4.html#BenguH94, +Richard A. Golding,Accessing Replicated Data in a Large-Scale Distributed System.,1991,1,Int. Journal in Computer Simulation,4,db/journals/ijcs/ijcs1.html#GoldingL91, +John A. Miller,Performance of Time Warp Protocols for Transaction Management in Object Oriented Systems.,1994,4,Int. Journal in Computer Simulation,3,db/journals/ijcs/ijcs4.html#MillerG94, +Sudhakar Yalamanchili,Paradigms for Modeling and Simulation of Multiprocessor Architectures.,1996,6,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs6.html#YalamanchiliC96, +Brian Field,Simulation-Based Experimental Evaluation of Transport-Layer Protocols to Support Real-Time Applications.,1996,6,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs6.html#FieldZ96, +Vicenzo Catani,Real-Time Data Service in CIM Environments.,1996,6,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs6.html#CataniPPV96, +Jiajen M. Lin,Fast High-Level Simulation of Shared-Memory Multiprocessor Systems.,1992,2,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs2.html#LinA92, +Richard Covington,Efficient Simulation of Parallel Computer Systems.,1991,1,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs1.html#ConvingtonDJSM91, +Bharat K. Bhargava,Analyzing Availability of Replicated Database Systems.,1991,1,Int. Journal in Computer Simulation,4,db/journals/ijcs/ijcs1.html#BhargavaHF91, +Henri Pierreval,A Metamodeling Approach Based on Neural Networks.,1996,6,Int. Journal in Computer Simulation,3,db/journals/ijcs/ijcs6.html#Pierreval96, +Dirk Baezner,Parallel Simulation Environment Based on Time Warp.,1994,4,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs4.html#BaeznerLU94, +Lauren L. Smith,Use of Direct Simulation for the Visualization and Analysis of a Supercomputer Architecture.,1996,6,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs6.html#SmithG96, +Chinho Lin,A Practical Approach to Designing the Maintenance System for a Flexible Manufacturing System.,1996,6,Int. Journal in Computer Simulation,3,db/journals/ijcs/ijcs6.html#Lin96a, +Cynthia A. Funka-Lea,Q+: Interactive Visual Modeling for Performance Analysis and Simulation of Queueing Systems.,1994,4,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs4.html#Funka-LeaGY94, +Yahya Y. Al-Salqan,Performance Simulation of Hybrid-Ethernet.,1994,4,Int. Journal in Computer Simulation,3,db/journals/ijcs/ijcs4.html#Al-SalqanCKP94, +John F. Affisco,Book Review: Experimental Statistical Designs and Analysis in Simulation Modelling by Christian N. Madu and Chu-hua Kuei.,1996,6,Int. Journal in Computer Simulation,3,db/journals/ijcs/ijcs6.html#Affisco96, +Patrick W. Dowd,High-Speed Routing in a Distributed Memory Parallel Computer System: A Simulation Study.,1991,1,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs1.html#Dowd91, +Olivier Y. de Vel,Concurrent Simulation of Systolic and Wavefront Array Processor Architectures.,1994,4,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs4.html#VelT94, +Jerry Waldorf,MOOSE: A Concurrent Object-Oriented Language for Simulation.,1994,4,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs4.html#WaldorfB94, +Darrell D. E. Long,Simulation of Distributed File and Database Systems - Editorial.,1991,1,Int. Journal in Computer Simulation,4,db/journals/ijcs/ijcs1.html#Long91, +Christian N. Madu,Guest Editors' Introduction: Simulation Metamodeling of Production Systems.,1996,6,Int. Journal in Computer Simulation,3,db/journals/ijcs/ijcs6.html#MaduK96, +Donald B. Johnson,Effects of Replication on Data Availability.,1991,1,Int. Journal in Computer Simulation,4,db/journals/ijcs/ijcs1.html#JohnsonR91, +Kimming So,Guest Editors' Introduction: Computer Architecture Simulations.,1996,6,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs6.html#SoW96, +Dana L. Wyatt,SWIM: A Knowledge-Based Digital Circuit Simulator.,1994,4,Int. Journal in Computer Simulation,3,db/journals/ijcs/ijcs4.html#WyattAB94, +J. Tabler,Solution of the Power Flow Equations Using Parallel Analog Computing.,1994,4,Int. Journal in Computer Simulation,4,db/journals/ijcs/ijcs4.html#TablerBDA94,http://dl.acm.org/citation.cfm?id=202940 +Patrick W. Dowd,TDM-Based WDM Access Protocols: A Comparison of Reservation and Preallocation Strategies for a Photonic Star-Coupled Configuration.,1994,4,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs4.html#DowdB94, +Venkatesh Akella,CFSIM: A Concurrent Compiled Code Functional Simulator for hopCP.,1994,4,Int. Journal in Computer Simulation,4,db/journals/ijcs/ijcs4.html#AkellaG94,http://dl.acm.org/citation.cfm?id=202929 +Yi-Bing Lin,Estimating the Likelihood of Success of Lazy Cancellation in Time Warp Simulations.,1996,6,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs6.html#Lin96, +Giorgio Casinovi,Special-Purpose Algorithms for the Simulation of Integrated Circuits.,1994,4,Int. Journal in Computer Simulation,4,db/journals/ijcs/ijcs4.html#Casinovi94,http://dl.acm.org/citation.cfm?id=202937 +John A. Miller,Query-Driven Simulation Using Active KDL: A Functional Object-Oriented Database System.,1991,1,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs1.html#MillerKPUK91, +Oystein Gran Larsen,Emulating Message-Passing Multicomputers in a Network of Workstations.,1991,1,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs1.html#Larsen91, +C. Ruth Harris,Demand Characteristics and System Performance: Constructing a Sample Space for the Metamodel from Terminating Simulations.,1996,6,Int. Journal in Computer Simulation,3,db/journals/ijcs/ijcs6.html#Harris96, +Alain Gefflaut,SPAM: A Multiprocessor Execution-Driven Simulation Kernel.,1996,6,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs6.html#GefflautJ96, +Christopher H. de Castro,Partitioning Coarse-Grain Signal Flow Graphs for Heterogeneous DSP Architectures.,1994,4,Int. Journal in Computer Simulation,4,db/journals/ijcs/ijcs4.html#CastroY94,http://dl.acm.org/citation.cfm?id=202933 +Matt W. Mutka,Considering Deadline Constraints When Allocating the Shared Capacity of Private Workstations.,1994,4,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs4.html#Mutka94, +Barry T. W. Kwok,Simulating Continous Systems with Piecewise - Linear Signals Using Time Warp.,1991,1,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs1.html#KwokP91, +H. L. Graham,Event-Driven Waveform Relaxation Algorithm for Circuit Simulation.,1991,1,Int. Journal in Computer Simulation,3,db/journals/ijcs/ijcs1.html#GrahamCCH91, +Pavlos Konas,Chief: A Simulation Environment for Studying Parallel Systems.,1996,6,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs6.html#KonasPBBY96, +Giorgio Casinovi,Computer Simulation of Application Specific Signal Processing Systems - Guest Editorial.,1994,4,Int. Journal in Computer Simulation,4,db/journals/ijcs/ijcs4.html#CasinoviM94, +James M. Butler,Quantum Simulation of Distributed Computers Using the PSB/EPN System Model.,1991,1,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs1.html#Butler91, +Christian N. Madu,A Metamodel of Quality Performance Measure in an Urreliable FMS.,1996,6,Int. Journal in Computer Simulation,3,db/journals/ijcs/ijcs6.html#MaduK96a, +Jia-Yuan Han,Random Task Graph-Based Comparative Study of Deterministic Scheduling Algorithms.,1994,4,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs4.html#HanBWH94, +A. Mete Kabakçioglu,Symbolic Simulation for the Verification of Temporal Logic Specifications about Sequential Designs.,1991,1,Int. Journal in Computer Simulation,3,db/journals/ijcs/ijcs1.html#KabakciogluS91, +Kallol Kumar Bagchi,Simulation of Multiple Processor Systems: The State of The Art.,1991,1,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs1.html#Bagchi91, +Joseph T. Buck,Ptolemy: A Framework for Simulating and Prototyping Heterogenous Systems.,1994,4,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs4.html#BuckHLM94, +Mark A. Holliday,Techniques for Cache and Memory Simulation Using Address Reference Traces.,1991,1,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs1.html#Holliday91, +Steven G. Popovich,Simulation of a DQDB MAC Protocol Using NETWORK 11.5.,1996,6,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs6.html#PopovichAB96, +,Multivariate Simulation Metamodels for a Large Scale Maintenance Float System.,1996,6,Int. Journal in Computer Simulation,3,db/journals/ijcs/ijcs6.html#X96, +Michael J. Quinn,Implementing a Time-Driven Simulation on a MIMD Computer Using a SIMD Language.,1992,2,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs2.html#QuinnSH92, +Albert Y. Zomaya,Transputer Networks for the Dynamic Simulation of Robot Manipulators.,1992,2,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs2.html#ZomayaM92, +Douglas A. Popken,Hierarchical Modeling and Process Aggregation in Object-Oriented Simulation.,1994,4,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs4.html#Popken94, +Alok N. Choudhary,Shared-Memory Multiprocessor Simulations to Study Dynamic Characteristics of Two-Level Caches.,1992,2,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs2.html#ChoudharyK92, +Adedeji B. Badiru,Simulation and Regression Metamodels of Activity Networks in Production Systems.,1996,6,Int. Journal in Computer Simulation,3,db/journals/ijcs/ijcs6.html#Badiru96, +Yi-Bing Lin,Effect of Process Scheduling in Parallel Simulation.,1992,2,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs2.html#LinL92, +Celso Massaki Hirata,Object-Oriented Programming Architecture for Simulation Modeling.,1996,6,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs6.html#HirataP96, +Rassul Ayani,Parallel Discrete - Event Simulation on Shared Memory Multiprocessors.,1991,1,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs1.html#Ayani91, +Yung-Chang Wong,Investigation of Parallel Simulation.,1996,6,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs6.html#WongH96, +Hitendra H. Desai,An Event Scheduling Technique for Digital Logic Simulation.,1991,1,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs1.html#Desai91, +Gary Shao,Soft Prototyping in the Design of Military Electronics.,1991,1,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs1.html#Shao91, +Francesco Curatelli,Evaluation of Communication Performances in Hypercube Architectures.,1992,2,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs2.html#Curatelli92, +David R. Kaeli,Real-Time Trace Generation.,1996,6,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs6.html#KaeliLHWS96, +Richard Fujimoto,Accuracy of Multiprocessor Tracing Techniques.,1996,6,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs6.html#FujimotoH96, +Dennis Mok,Simulation Software Technology - Guest Editorial.,1994,4,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs4.html#Mok94, +Ravi Nair,Profiling IBM RS/6000 Applications.,1996,6,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs6.html#Nair96, +Giovanni Chiola,Simulation Framework for Timed and Stochastic Petri Nets.,1991,1,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs1.html#Chiola91, +Kia Makki,A Simulation Study of Token-Based Mutual-Exlusion Algorithms in Distributed Systems.,1994,4,Int. Journal in Computer Simulation,1,db/journals/ijcs/ijcs4.html#MakkiBP94, +Rhys S. Francis,Compiler Integrated Multiprocessor Simulation.,1991,1,Int. Journal in Computer Simulation,2,db/journals/ijcs/ijcs1.html#FrancisMP91, +Pankaj K. Agarwal,Exact and Approximation Algorithms for Clustering.,2002,33,Algorithmica,2,db/journals/algorithmica/algorithmica33.html#AgarwalP02,https://doi.org/10.1007/s00453-001-0110-y +Lukasz Kowalik,Fast 3-coloring Triangle-Free Planar Graphs.,2010,58,Algorithmica,3,db/journals/algorithmica/algorithmica58.html#Kowalik10,https://doi.org/10.1007/s00453-009-9295-2 +Binay K. Bhattacharya,Optimal Algorithms for the Path/Tree-Shaped Facility Location Problems in Trees.,2009,55,Algorithmica,4,db/journals/algorithmica/algorithmica55.html#BhattacharyaST09,https://doi.org/10.1007/s00453-007-9157-8 +Dong Kyue Kim,Linearized Suffix Tree: an Efficient Index Data Structure with the Capabilities of Suffix Trees and Suffix Arrays.,2008,52,Algorithmica,3,db/journals/algorithmica/algorithmica52.html#KimKP08,https://doi.org/10.1007/s00453-007-9061-2 +Fedor V. Fomin,Enumerating Minimal Subset Feedback Vertex Sets.,2014,69,Algorithmica,1,db/journals/algorithmica/algorithmica69.html#FominHKPV14,https://doi.org/10.1007/s00453-012-9731-6 +Renzo Sprugnoli,Recurrence Relations on Heaps.,1996,15,Algorithmica,5,db/journals/algorithmica/algorithmica15.html#Sprugnoli96,https://doi.org/10.1007/BF01955045 +Joan Boyar,A Comparison of Performance Measures for Online Algorithms.,2015,72,Algorithmica,4,db/journals/algorithmica/algorithmica72.html#BoyarIL15,https://doi.org/10.1007/s00453-014-9884-6 +Colm ó'Dúnlaing,Generalized Voronoi Diagrams for a Ladder: II. Efficient Construction of the Diagram.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#ODunlaingSY87,https://doi.org/10.1007/BF01840348 +Alok Aggarwal,Editor's Foreword.,1992,7,Algorithmica,1,db/journals/algorithmica/algorithmica7.html#Aggarwal92,https://doi.org/10.1007/BF01758748 +Guoliang Xue,An O(n log n) Average Time Algorithm for Computing the Shortest Network under a Given Topology.,1999,23,Algorithmica,4,db/journals/algorithmica/algorithmica23.html#XueD99,https://doi.org/10.1007/PL00009266 +Emeric Gioan,Practical and Efficient Split Decomposition via Graph-Labelled Trees.,2014,69,Algorithmica,4,db/journals/algorithmica/algorithmica69.html#GioanPTC14a,https://doi.org/10.1007/s00453-013-9752-9 +George Christodoulou 0001,On the Performance of Approximate Equilibria in Congestion Games.,2011,61,Algorithmica,1,db/journals/algorithmica/algorithmica61.html#ChristodoulouKS11,https://doi.org/10.1007/s00453-010-9449-2 +Bonnie Berger,A Better Performance Guarantee for Approximate Graph Coloring.,1990,5,Algorithmica,3,db/journals/algorithmica/algorithmica5.html#BergerR90,https://doi.org/10.1007/BF01840398 +Hirotatsu Kobayashi,Cheating Strategies for the Gale-Shapley Algorithm with Complete Preference Lists.,2010,58,Algorithmica,1,db/journals/algorithmica/algorithmica58.html#KobayashiM10,https://doi.org/10.1007/s00453-009-9359-3 +Masao Iri,A Multiplicative Barrier Function Method for Linear Programming.,1986,1,Algorithmica,4,db/journals/algorithmica/algorithmica1.html#IriI86,https://doi.org/10.1007/BF01840457 +Nimrod Megiddo,Introduction: New Approaches to Linear Programming.,1986,1,Algorithmica,4,db/journals/algorithmica/algorithmica1.html#Megiddo86,https://doi.org/10.1007/BF01840453 +Giorgio Ausiello,Graph Spanners in the Streaming Model: An Experimental Study.,2009,55,Algorithmica,2,db/journals/algorithmica/algorithmica55.html#AusielloDFIR09,https://doi.org/10.1007/s00453-008-9216-9 +Ahmad Biniaz,Spanning Trees in Multipartite Geometric Graphs.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#BiniazBEMMS18,https://doi.org/10.1007/s00453-017-0375-4 +Kazuhisa Makino,Derandomizing the HSSW Algorithm for 3-SAT.,2013,67,Algorithmica,2,db/journals/algorithmica/algorithmica67.html#MakinoTY13,https://doi.org/10.1007/s00453-012-9741-4 +Robert Giegerich,From Ukkonen to McCreight and Weiner: A Unifying View of Linear-Time Suffix Tree Construction.,1997,19,Algorithmica,3,db/journals/algorithmica/algorithmica19.html#GiegerichK97,https://doi.org/10.1007/PL00009177 +Britta Dorn,Multivariate Complexity Analysis of Swap Bribery.,2012,64,Algorithmica,1,db/journals/algorithmica/algorithmica64.html#DornS12,https://doi.org/10.1007/s00453-011-9568-4 +Svante Carlsson,Sublinear Merging and Natural Mergesort.,1993,9,Algorithmica,6,db/journals/algorithmica/algorithmica9.html#CarlssonLP93,https://doi.org/10.1007/BF01190160 +Neeldhara Misra,The Parameterized Complexity of Unique Coverage and Its Variants.,2013,65,Algorithmica,3,db/journals/algorithmica/algorithmica65.html#MisraMRSS13,https://doi.org/10.1007/s00453-011-9608-0 +Liming Cai,Fixed-Parameter Approximation: Conceptual Framework and Approximability Results.,2010,57,Algorithmica,2,db/journals/algorithmica/algorithmica57.html#CaiH10,https://doi.org/10.1007/s00453-008-9223-x +Paolo Ferragina,Lightweight Data Indexing and Compression in External Memory.,2012,63,Algorithmica,3,db/journals/algorithmica/algorithmica63.html#FerraginaGM12,https://doi.org/10.1007/s00453-011-9535-0 +Anshul Kothari,Bandwidth-Constrained Allocation in Grid Computing.,2008,52,Algorithmica,4,db/journals/algorithmica/algorithmica52.html#KothariSZ08,https://doi.org/10.1007/s00453-007-9085-7 +Tomasz Kociumaka,Efficient Indexes for Jumbled Pattern Matching with Constant-Sized Alphabet.,2017,77,Algorithmica,4,db/journals/algorithmica/algorithmica77.html#KociumakaRR17,https://doi.org/10.1007/s00453-016-0140-0 +Sven Schuierer,Staircase Visibility and Computation of Kernels.,1995,14,Algorithmica,1,db/journals/algorithmica/algorithmica14.html#SchuiererW95,https://doi.org/10.1007/BF01300371 +Philip N. Klein,A Parallel Algorithm for Approximating the Minimum Cycle Cover.,1993,9,Algorithmica,1,db/journals/algorithmica/algorithmica9.html#KleinS93,https://doi.org/10.1007/BF01185336 +Shiva Chaudhuri,Shortest Paths in Digraphs of Small Treewidth. Part I: Sequential Algorithms.,2000,27,Algorithmica,3,db/journals/algorithmica/algorithmica27.html#ChaudhuriZ00,https://doi.org/10.1007/s004530010016 +Christian Schwarz 0002,An Optimal Algorithm for the On-Line Closest-Pair Problem.,1994,12,Algorithmica,1,db/journals/algorithmica/algorithmica12.html#SchwarzSS94,https://doi.org/10.1007/BF01377181 +Amihood Amir,Configurations and Minority in the String Consensus Problem.,2016,74,Algorithmica,4,db/journals/algorithmica/algorithmica74.html#AmirPR16,https://doi.org/10.1007/s00453-015-9996-7 +Eyal Kaplan,Derandomized Constructions of k-Wise (Almost) Independent Permutations.,2009,55,Algorithmica,1,db/journals/algorithmica/algorithmica55.html#KaplanNR09,https://doi.org/10.1007/s00453-008-9267-y +Minghui Jiang 0001,Recognizing d-Interval Graphs and d-Track Interval Graphs.,2013,66,Algorithmica,3,db/journals/algorithmica/algorithmica66.html#Jiang13,https://doi.org/10.1007/s00453-012-9651-5 +Christos Levcopoulos,Improved Algorithms for Constructing Fault-Tolerant Spanners.,2002,32,Algorithmica,1,db/journals/algorithmica/algorithmica32.html#LevcopoulosNS02,https://doi.org/10.1007/s00453-001-0075-x +Fabio Romeo,A Theoretical Framework for Simulated Annealing.,1991,6,Algorithmica,3,db/journals/algorithmica/algorithmica6.html#RomeoS91,https://doi.org/10.1007/BF01759049 +William A. Mackaness,Automated Displacement for Large Numbers of Discrete Map Objects.,2001,30,Algorithmica,2,db/journals/algorithmica/algorithmica30.html#MackanessP01,https://doi.org/10.1007/s00453-001-0007-9 +Shayan Oveis Gharan,On Variants of the Matroid Secretary Problem.,2013,67,Algorithmica,4,db/journals/algorithmica/algorithmica67.html#GharanV13,https://doi.org/10.1007/s00453-013-9795-y +Frank Kammer,Approximation Algorithms for Intersection Graphs.,2014,68,Algorithmica,2,db/journals/algorithmica/algorithmica68.html#KammerT14,https://doi.org/10.1007/s00453-012-9671-1 +Peter Floderus,3D Rectangulations and Geometric Matrix Multiplication.,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#FloderusJLLS18,https://doi.org/10.1007/s00453-016-0247-3 +Tracy Kimbrel,Interleaved Prefetching.,2002,32,Algorithmica,1,db/journals/algorithmica/algorithmica32.html#Kimbrel02,https://doi.org/10.1007/s00453-001-0066-y +Jianxi Fan,Embedding of Cycles in Twisted Cubes with Edge-Pancyclic.,2008,51,Algorithmica,3,db/journals/algorithmica/algorithmica51.html#FanJL08,https://doi.org/10.1007/s00453-007-9024-7 +Seok-Hee Hong,Approximation Algorithms for Minimizing Edge Crossings in Radial Drawings.,2010,58,Algorithmica,2,db/journals/algorithmica/algorithmica58.html#HongN10a,https://doi.org/10.1007/s00453-009-9277-4 +Emilio Di Giacomo,The Approximate Rectangle of Influence Drawability Problem.,2015,72,Algorithmica,2,db/journals/algorithmica/algorithmica72.html#GiacomoLM15,https://doi.org/10.1007/s00453-013-9866-0 +Andrei Lissovoi,A Runtime Analysis of Parallel Evolutionary Algorithms in Dynamic Optimization.,2017,78,Algorithmica,2,db/journals/algorithmica/algorithmica78.html#LissovoiW17,https://doi.org/10.1007/s00453-016-0262-4 +Peter Damaschke,Homogeneous String Segmentation using Trees and Weighted Independent Sets.,2010,57,Algorithmica,4,db/journals/algorithmica/algorithmica57.html#Damaschke10,https://doi.org/10.1007/s00453-008-9225-8 +Madeleine Theile,Stability in the Self-Organized Evolution of Networks.,2010,57,Algorithmica,1,db/journals/algorithmica/algorithmica57.html#TheileJ10,https://doi.org/10.1007/s00453-008-9242-7 +Mark H. Overmars,An Improved Technique for Output-Sensitive Hidden Surface Removal.,1994,11,Algorithmica,5,db/journals/algorithmica/algorithmica11.html#OvermarsS94,https://doi.org/10.1007/BF01293267 +Bojan Djordjevic,Detecting Regular Visit Patterns.,2011,60,Algorithmica,4,db/journals/algorithmica/algorithmica60.html#DjordjevicGPW11,https://doi.org/10.1007/s00453-009-9376-2 +Pankaj K. Agarwal,Guarding a Terrain by Two Watchtowers.,2010,58,Algorithmica,2,db/journals/algorithmica/algorithmica58.html#AgarwalBDKNSZ10,https://doi.org/10.1007/s00453-008-9270-3 +David G. Kirkpatrick,Parallel Construction of Binary Trees with Near Optimal Weighted Path Lengt.,1996,15,Algorithmica,2,db/journals/algorithmica/algorithmica15.html#KirkpatrickP96,https://doi.org/10.1007/BF01941687 +Sebastian Böcker,Exact Algorithms for Cluster Editing: Evaluation and Experiments.,2011,60,Algorithmica,2,db/journals/algorithmica/algorithmica60.html#BockerBK11,https://doi.org/10.1007/s00453-009-9339-7 +Benjamin Doerr,Guest Editorial: Theory of Evolutionary Computation.,2016,75,Algorithmica,3,db/journals/algorithmica/algorithmica75.html#DoerrW16,https://doi.org/10.1007/s00453-016-0157-4 +Bart M. P. Jansen,Sparsification Upper and Lower Bounds for Graph Problems and Not-All-Equal SAT.,2017,79,Algorithmica,1,db/journals/algorithmica/algorithmica79.html#JansenP17,https://doi.org/10.1007/s00453-016-0189-9 +Harold N. Gabow,Editor's Foreword: Special Issur on Network Flow Algorithms.,1994,11,Algorithmica,3,db/journals/algorithmica/algorithmica11.html#Gabow94,https://doi.org/10.1007/BF01240732 +Srikrishnan Divakaran,An Online Algorithm for a Problem in Scheduling with Set-ups and Release Times.,2011,60,Algorithmica,2,db/journals/algorithmica/algorithmica60.html#DivakaranS11,https://doi.org/10.1007/s00453-009-9337-9 +Jorge L. C. Sanz,Data Reduction and Fast Routing: A Strategy for Efficient Algorithms for Message-Passing Parallel Computers.,1992,7,Algorithmica,1,db/journals/algorithmica/algorithmica7.html#SanzC92,https://doi.org/10.1007/BF01758752 +Yaron Pinto,Efficient Algorithms for Minimum-Cost Flow Problems with Piecewise-Linear Convex Costs.,1994,11,Algorithmica,3,db/journals/algorithmica/algorithmica11.html#PintoS94,https://doi.org/10.1007/BF01240736 +Amit Chakrabarti,Approximation Algorithms for the Unsplittable Flow Problem.,2007,47,Algorithmica,1,db/journals/algorithmica/algorithmica47.html#ChakrabartiCGK07,https://doi.org/10.1007/s00453-006-1210-5 +Carsten Gutwenger,Inserting an Edge into a Planar Graph.,2005,41,Algorithmica,4,db/journals/algorithmica/algorithmica41.html#GutwengerMW05,https://doi.org/10.1007/s00453-004-1128-8 +Lenwood S. Heath,New Results for the Minimum Weight Triangulation Problem.,1994,12,Algorithmica,6,db/journals/algorithmica/algorithmica12.html#HeathP94,https://doi.org/10.1007/BF01188718 +Wojciech Szpankowski,On the Height of Digital Trees and Related Problems.,1991,6,Algorithmica,2,db/journals/algorithmica/algorithmica6.html#Szpankowski91,https://doi.org/10.1007/BF01759045 +Steven Chaplick,The Partial Visibility Representation Extension Problem.,2018,80,Algorithmica,8,db/journals/algorithmica/algorithmica80.html#ChaplickGGKL18,https://doi.org/10.1007/s00453-017-0322-4 +Sanguthevar Rajasekaran,Optimal Parallel Randomized Algorithms for the Voronoi Diagram of Line Segments in the Plane.,2002,33,Algorithmica,4,db/journals/algorithmica/algorithmica33.html#RajasekaranR02,https://doi.org/10.1007/s00453-001-0115-6 +Helmut Alt,Matching Convex Shapes with Respect to the Symmetric Difference.,1998,21,Algorithmica,1,db/journals/algorithmica/algorithmica21.html#AltFRW98,https://doi.org/10.1007/PL00009210 +Alok Aggarwal,Parallel Computational Geometry.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#AggarwalCGOY88,https://doi.org/10.1007/BF01762120 +Amir M. Ben-Amram,A Generalization of a Lower Bound Technique due to Fredman and Saks.,2001,30,Algorithmica,1,db/journals/algorithmica/algorithmica30.html#Ben-AmramG01,https://doi.org/10.1007/s004530010077 +Christos Koufogiannakis,A Nearly Linear-Time PTAS for Explicit Fractional Packing and Covering Linear Programs.,2014,70,Algorithmica,4,db/journals/algorithmica/algorithmica70.html#KoufogiannakisY14,https://doi.org/10.1007/s00453-013-9771-6 +Steven S. Seiden,New Bounds for Multidimensional Packing.,2003,36,Algorithmica,3,db/journals/algorithmica/algorithmica36.html#SeidenS03,https://doi.org/10.1007/s00453-003-1016-7 +Tadao Takaoka,Foreword.,2004,38,Algorithmica,2,db/journals/algorithmica/algorithmica38.html#Takaoka03,https://doi.org/10.1007/s00453-003-1059-9 +Richard W. Kenyon,Tiling a Polygon with Parallelograms.,1993,9,Algorithmica,4,db/journals/algorithmica/algorithmica9.html#Kenyon93,https://doi.org/10.1007/BF01228510 +Frank K. H. A. Dehne,The Big Sweep: On the Power of the Wavefront Approach to Voronoi Diagrams.,1997,17,Algorithmica,1,db/journals/algorithmica/algorithmica17.html#DehneK97,https://doi.org/10.1007/BF02523236 +Christian Gießen,Optimal Mutation Rates for the (1+ and#955* ) EA on OneMax Through Asymptotically Tight Drift Analysis.,2018,80,Algorithmica,5,db/journals/algorithmica/algorithmica80.html#GiessenW18,https://doi.org/10.1007/s00453-017-0360-y +Jennie C. Hansen,Near-Optimal Bounded-Degree Spanning Trees.,2001,29,Algorithmica,1,db/journals/algorithmica/algorithmica29.html#HansenS01,https://doi.org/10.1007/BF02679617 +Attila Pór,No-Three-in-Line-in-3D.,2007,47,Algorithmica,4,db/journals/algorithmica/algorithmica47.html#PorW07,https://doi.org/10.1007/s00453-006-0158-9 +Julien Clément 0001,Dynamical Sources in Information Theory: A General Analysis of Trie Structures.,2001,29,Algorithmica,1,db/journals/algorithmica/algorithmica29.html#ClementFV01,https://doi.org/10.1007/BF02679623 +George E. Andrews,An Algorithmic Approach to Discovering and Proving q-Series Identities.,2001,29,Algorithmica,1,db/journals/algorithmica/algorithmica29.html#AndrewsK01,https://doi.org/10.1007/BF02679612 +Marshall W. Bern,Two Probabilistic Results on Rectilinear Steiner Trees.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#Bern88,https://doi.org/10.1007/BF01762114 +Charles E. Blair,The Iterative Step in the Linear Programming Algorithm of N. Karmarkar.,1986,1,Algorithmica,4,db/journals/algorithmica/algorithmica1.html#Blair86,https://doi.org/10.1007/BF01840462 +Leila De Floriani,On Sorting Triangles in a Delaunay Tessellation.,1991,6,Algorithmica,4,db/journals/algorithmica/algorithmica6.html#FlorianiFNP91,https://doi.org/10.1007/BF01759057 +Michael Jünger,New Primal and Dual Matching Heuristics.,1995,13,Algorithmica,4,db/journals/algorithmica/algorithmica13.html#JungerP95,https://doi.org/10.1007/BF01293485 +Rohit Khandekar,On the Advantage of Overlapping Clusters for Minimizing Conductance.,2014,69,Algorithmica,4,db/journals/algorithmica/algorithmica69.html#KhandekarKM14,https://doi.org/10.1007/s00453-013-9761-8 +Shiri Chechik,f-Sensitivity Distance Oracles and Routing Schemes.,2012,63,Algorithmica,4,db/journals/algorithmica/algorithmica63.html#ChechikLPR12,https://doi.org/10.1007/s00453-011-9543-0 +Uriel Feige,The Dense k-Subgraph Problem.,2001,29,Algorithmica,3,db/journals/algorithmica/algorithmica29.html#FeigePK01,https://doi.org/10.1007/s004530010050 +Leonid Khachiyan,On Enumerating Minimal Dicuts and Strongly Connected Subgraphs.,2008,50,Algorithmica,1,db/journals/algorithmica/algorithmica50.html#KhachiyanBEG08,https://doi.org/10.1007/s00453-007-9074-x +Moritz G. Maaß,Linear Bidirectional On-Line Construction of Affix Trees.,2003,37,Algorithmica,1,db/journals/algorithmica/algorithmica37.html#Maass03,https://doi.org/10.1007/s00453-003-1029-2 +Frédéric Chazal,Erratum to 'Dynamical Sources in Information Theory: Fundamental Intervals and Word Prefixes'.,2004,38,Algorithmica,4,db/journals/algorithmica/algorithmica38.html#ChazalMV04,https://doi.org/10.1007/s00453-003-1057-y +Marek Cygan,On Group Feedback Vertex Set Parameterized by the Size of the Cutset.,2016,74,Algorithmica,2,db/journals/algorithmica/algorithmica74.html#CyganPP16,https://doi.org/10.1007/s00453-014-9966-5 +Greg Aloupis,Reconfiguring Triangulations with Edge Flips and Point Moves.,2007,47,Algorithmica,4,db/journals/algorithmica/algorithmica47.html#AloupisBM07,https://doi.org/10.1007/s00453-006-0168-7 +Dimitris Fotakis,On the Competitive Ratio for Online Facility Location.,2008,50,Algorithmica,1,db/journals/algorithmica/algorithmica50.html#Fotakis08,https://doi.org/10.1007/s00453-007-9049-y +Ho-Lin Chen,Program Size and Temperature in Self-Assembly.,2015,72,Algorithmica,3,db/journals/algorithmica/algorithmica72.html#ChenDS15,https://doi.org/10.1007/s00453-014-9879-3 +Luis Barba,Space-Time Trade-offs for Stack-Based Algorithms.,2015,72,Algorithmica,4,db/journals/algorithmica/algorithmica72.html#BarbaKLSS15,https://doi.org/10.1007/s00453-014-9893-5 +Ran Bachrach,On the Competitive Theory and Practice of Online List Accessing Algorithms.,2002,32,Algorithmica,2,db/journals/algorithmica/algorithmica32.html#BachrachER02,https://doi.org/10.1007/s00453-001-0069-8 +Steven J. Phillips,On-Line Load Balancing and Network Flow.,1998,21,Algorithmica,3,db/journals/algorithmica/algorithmica21.html#PhillipsW98,https://doi.org/10.1007/PL00009214 +Mark Giesbrecht,Computing Sparse Multiples of Polynomials.,2012,64,Algorithmica,3,db/journals/algorithmica/algorithmica64.html#GiesbrechtRT12,https://doi.org/10.1007/s00453-012-9652-4 +Amihood Amir,Real Two Dimensional Scaled Matching.,2009,53,Algorithmica,3,db/journals/algorithmica/algorithmica53.html#AmirBLP09,https://doi.org/10.1007/s00453-007-9021-x +Xin Han,Online Unweighted Knapsack Problem with Removal Cost.,2014,70,Algorithmica,1,db/journals/algorithmica/algorithmica70.html#HanKM14,https://doi.org/10.1007/s00453-013-9822-z +Jop F. Sibeyn,One-by-One Cleaning for Practical Parallel List Ranking.,2002,32,Algorithmica,3,db/journals/algorithmica/algorithmica32.html#Sibeyn02,https://doi.org/10.1007/s00453-001-0077-8 +Martin Böhm,Colored Bin Packing: Online Algorithms and Lower Bounds.,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#BohmDESV18,https://doi.org/10.1007/s00453-016-0248-2 +Michel Habib,A Linear Algorithm To Decompose Inheritance Graphs Into Modules.,1995,13,Algorithmica,6,db/journals/algorithmica/algorithmica13.html#HabibHS95,https://doi.org/10.1007/BF01189070 +Sathish Govindarajan,I/O-Efficient Well-Separated Pair Decomposition and Applications.,2006,45,Algorithmica,4,db/journals/algorithmica/algorithmica45.html#GovindarajanLMZ06,https://doi.org/10.1007/s00453-005-1197-3 +Pascal Berthomé,Sorting-Based Selection Algorithms for Hypercubic Networks.,2000,26,Algorithmica,2,db/journals/algorithmica/algorithmica26.html#BerthomeFMPP00,https://doi.org/10.1007/s004539910011 +Elmar Schömer,Smallest Enclosing Cylinders.,2000,27,Algorithmica,2,db/journals/algorithmica/algorithmica27.html#SchomerSTY00,https://doi.org/10.1007/s004530010011 +Rolf H. Möhring,Complexity and Modeling Aspects of Mesh Refinement into Quadrilater.,2000,26,Algorithmica,1,db/journals/algorithmica/algorithmica26.html#MohringM00,https://doi.org/10.1007/s004539910008 +Fenghui Zhang,On the Planarization of Wireless Sensor Networks.,2011,60,Algorithmica,3,db/journals/algorithmica/algorithmica60.html#ZhangJC11,https://doi.org/10.1007/s00453-010-9476-z +Serge Gaspers,Backdoors to q-Horn.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#GaspersORSS16,https://doi.org/10.1007/s00453-014-9958-5 +Joseph Naor,Real-Time Scheduling with a Budget.,2007,47,Algorithmica,3,db/journals/algorithmica/algorithmica47.html#NaorST07,https://doi.org/10.1007/s00453-006-0191-8 +Jean-Daniel Boissonnat,Circular Separability of Polygons.,2001,30,Algorithmica,1,db/journals/algorithmica/algorithmica30.html#BoissonnatCDY01,https://doi.org/10.1007/s004530010078 +Peyman Afshani,Dynamic Connectivity for Axis-Parallel Rectangles.,2009,53,Algorithmica,4,db/journals/algorithmica/algorithmica53.html#AfshaniC09,https://doi.org/10.1007/s00453-008-9234-7 +Lukasz Kowalik,Assigning Channels Via the Meet-in-the-Middle Approach.,2016,74,Algorithmica,4,db/journals/algorithmica/algorithmica74.html#KowalikS16,https://doi.org/10.1007/s00453-015-0004-z +Saul B. Gelfand,Simulated Annealing Type Algorithms for Multivariate Optimization.,1991,6,Algorithmica,3,db/journals/algorithmica/algorithmica6.html#GelfandM91,https://doi.org/10.1007/BF01759052 +,Editor's Note: Special Issue on Combinatorial Pattern Matching.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#X17,https://doi.org/10.1007/s00453-017-0355-8 +Duc-Cuong Dang,Runtime Analysis of Non-elitist Populations: From Classical Optimisation to Partial Information.,2016,75,Algorithmica,3,db/journals/algorithmica/algorithmica75.html#DangL16,https://doi.org/10.1007/s00453-015-0103-x +Rudi Cilibrasi,The Complexity of the Single Individual SNP Haplotyping Problem.,2007,49,Algorithmica,1,db/journals/algorithmica/algorithmica49.html#CilibrasiIKT07,https://doi.org/10.1007/s00453-007-0029-z +Mohammad Ghodsi,Permutation Betting Markets: Singleton Betting with Extra Information.,2011,60,Algorithmica,4,db/journals/algorithmica/algorithmica60.html#GhodsiMMZ11,https://doi.org/10.1007/s00453-009-9378-0 +Venkatesh Raman 0001,Short Cycles Make W -hard Problems Hard: FPT Algorithms for W -hard Problems in Graphs with no Short Cycles.,2008,52,Algorithmica,2,db/journals/algorithmica/algorithmica52.html#RamanS08,https://doi.org/10.1007/s00453-007-9148-9 +Gillat Kol,Direct Sum Fails for Zero-Error Average Communication.,2016,76,Algorithmica,3,db/journals/algorithmica/algorithmica76.html#KolMSY16,https://doi.org/10.1007/s00453-016-0144-9 +Sebastian Ordyniak,A Parameterized Study of Maximum Generalized Pattern Matching Problems.,2016,75,Algorithmica,1,db/journals/algorithmica/algorithmica75.html#OrdyniakP16,https://doi.org/10.1007/s00453-015-0008-8 +Mingen Lin,Improved Approximation Algorithms for Maximum Resource Bin Packing and Lazy Bin Covering Problems.,2010,57,Algorithmica,2,db/journals/algorithmica/algorithmica57.html#LinYX10,https://doi.org/10.1007/s00453-008-9202-2 +Dorit Aharonov,A Polynomial Quantum Algorithm for Approximating the Jones Polynomial.,2009,55,Algorithmica,3,db/journals/algorithmica/algorithmica55.html#AharonovJL09,https://doi.org/10.1007/s00453-008-9168-0 +Anna Urbanska,Faster Combinatorial Algorithms for Determinant and Pfaffian.,2010,56,Algorithmica,1,db/journals/algorithmica/algorithmica56.html#Urbanska10,https://doi.org/10.1007/s00453-008-9240-9 +Vincenzo Auletta,A Linear-Time Algorithm for the Feasibility of Pebble Motion on Trees.,1999,23,Algorithmica,3,db/journals/algorithmica/algorithmica23.html#AulettaMPP99,https://doi.org/10.1007/PL00009259 +Hakan Yildiz,Computing Klee's Measure of Grounded Boxes.,2015,71,Algorithmica,2,db/journals/algorithmica/algorithmica71.html#YildizS15,https://doi.org/10.1007/s00453-013-9797-9 +Joseph S. B. Mitchell,L_1 Shortest Paths Among Polygonal Obstacles in the Plane.,1992,8,Algorithmica,1,db/journals/algorithmica/algorithmica8.html#Mitchell92,https://doi.org/10.1007/BF01758836 +David Harel,An Algorithm for Straight-Line Drawing of Planar Graphs.,1998,20,Algorithmica,2,db/journals/algorithmica/algorithmica20.html#HarelS98,https://doi.org/10.1007/PL00009189 +Ondrej Suchý,Extending the Kernel for Planar Steiner Tree to the Number of Steiner Vertices.,2017,79,Algorithmica,1,db/journals/algorithmica/algorithmica79.html#Suchy17,https://doi.org/10.1007/s00453-016-0249-1 +Sudeshna Kolay,Quick but Odd Growth of Cacti.,2017,79,Algorithmica,1,db/journals/algorithmica/algorithmica79.html#KolayLPS17,https://doi.org/10.1007/s00453-017-0317-1 +Chris Whidden,Fixed-Parameter and Approximation Algorithms for Maximum Agreement Forests of Multifurcating Trees.,2016,74,Algorithmica,3,db/journals/algorithmica/algorithmica74.html#WhiddenBZ16,https://doi.org/10.1007/s00453-015-9983-z +Shai Ben-David,On the Power of Randomization in On-Line Algorithms.,1994,11,Algorithmica,1,db/journals/algorithmica/algorithmica11.html#Ben-DavidBKTW94,https://doi.org/10.1007/BF01294260 +Richard Cole 0001,New Linear-Time Algorithms for Edge-Coloring Planar Graphs.,2008,50,Algorithmica,3,db/journals/algorithmica/algorithmica50.html#ColeK08,https://doi.org/10.1007/s00453-007-9044-3 +Noga Alon,Revenue and Reserve Prices in a Probabilistic Single Item Auction.,2017,77,Algorithmica,1,db/journals/algorithmica/algorithmica77.html#AlonFT17,https://doi.org/10.1007/s00453-015-0055-1 +Martin Aumüller 0001,Explicit and Efficient Hash Families Suffice for Cuckoo Hashing with a Stash.,2014,70,Algorithmica,3,db/journals/algorithmica/algorithmica70.html#AumullerDW14,https://doi.org/10.1007/s00453-013-9840-x +Sounaka Mishra,The Complexity of König Subgraph Problems and Above-Guarantee Vertex Cover.,2011,61,Algorithmica,4,db/journals/algorithmica/algorithmica61.html#MishraRSSS11,https://doi.org/10.1007/s00453-010-9412-2 +Alok Aggarwal,Optimal Tradeoffs for Addition on Systolic Arrays.,1991,6,Algorithmica,1,db/journals/algorithmica/algorithmica6.html#AggarwalCK91,https://doi.org/10.1007/BF01759034 +Marc J. van Kreveld,Guest Editor's Foreword.,2001,30,Algorithmica,2,db/journals/algorithmica/algorithmica30.html#Kreveld01,https://doi.org/10.1007/s00453-001-0024-8 +Marcin Bienkowski,An Optimal Lower Bound for Buffer Management in Multi-Queue Switches.,2014,68,Algorithmica,2,db/journals/algorithmica/algorithmica68.html#Bienkowski14,https://doi.org/10.1007/s00453-012-9677-8 +Colin Cooper,Random 2-SAT with Prescribed Literal Degrees.,2007,48,Algorithmica,3,db/journals/algorithmica/algorithmica48.html#CooperFS07,https://doi.org/10.1007/s00453-007-0082-7 +Claudia Bauzer Medeiros,Understanding the Implications of View Update Policies.,1986,1,Algorithmica,3,db/journals/algorithmica/algorithmica1.html#MedeirosT86,https://doi.org/10.1007/BF01840451 +Antoine Genitrini,Generalised and Quotient Models for Random And/Or Trees and Application to Satisfiability.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#GenitriniM16,https://doi.org/10.1007/s00453-016-0113-3 +Geeta Chaudhry,Slabpose Columnsort: A New Oblivious Algorithm for Out-of-Core Sorting on Distributed-Memory Clusters.,2006,45,Algorithmica,3,db/journals/algorithmica/algorithmica45.html#ChaudhryC06,https://doi.org/10.1007/s00453-006-1222-1 +Chris Calabro,On the Exact Complexity of Evaluating Quantified k -CNF.,2013,65,Algorithmica,4,db/journals/algorithmica/algorithmica65.html#CalabroIP13,https://doi.org/10.1007/s00453-012-9648-0 +Petar Popovski,A Class of Algorithms for Collision Resolution with Multiplicity Estimation.,2007,49,Algorithmica,4,db/journals/algorithmica/algorithmica49.html#PopovskiFP07,https://doi.org/10.1007/s00453-007-9082-x +Mahesh Kallahalla,Optimal Read-Once Parallel Disk Scheduling.,2005,43,Algorithmica,4,db/journals/algorithmica/algorithmica43.html#KallahallaV05,https://doi.org/10.1007/s00453-004-1129-7 +Qi Ge,The Complexity of Counting Eulerian Tours in 4-regular Graphs.,2012,63,Algorithmica,3,db/journals/algorithmica/algorithmica63.html#GeS12,https://doi.org/10.1007/s00453-010-9463-4 +Michael Lampis,Algorithmic Meta-theorems for Restrictions of Treewidth.,2012,64,Algorithmica,1,db/journals/algorithmica/algorithmica64.html#Lampis12,https://doi.org/10.1007/s00453-011-9554-x +Danny Z. Chen,Outlier Respecting Points Approximation.,2014,69,Algorithmica,2,db/journals/algorithmica/algorithmica69.html#ChenW14a,https://doi.org/10.1007/s00453-012-9738-z +Teofilo F. Gonzalez,Simple Algorithms for the On-Line Multidimensional Dictionary and Related Problems.,2000,28,Algorithmica,2,db/journals/algorithmica/algorithmica28.html#Gonzalez00,https://doi.org/10.1007/s004530010039 +Amer E. Mouawad,On the Parameterized Complexity of Reconfiguration Problems.,2017,78,Algorithmica,1,db/journals/algorithmica/algorithmica78.html#MouawadN0SS17,https://doi.org/10.1007/s00453-016-0159-2 +Chih-Hung Liu,The k-Nearest-Neighbor Voronoi Diagram Revisited.,2015,71,Algorithmica,2,db/journals/algorithmica/algorithmica71.html#LiuPL15,https://doi.org/10.1007/s00453-013-9809-9 +Klaus Jansen,New Approximability Results for Two-Dimensional Bin Packing.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#JansenP16,https://doi.org/10.1007/s00453-014-9943-z +Henrik Blunck,In-Place Algorithms for Computing (Layers of) Maxima.,2010,57,Algorithmica,1,db/journals/algorithmica/algorithmica57.html#BlunckV10,https://doi.org/10.1007/s00453-008-9193-z +Haim Kaplan,Linear Data Structures for Fast Ray-Shooting amidst Convex Polyhedra.,2009,55,Algorithmica,2,db/journals/algorithmica/algorithmica55.html#KaplanRS09,https://doi.org/10.1007/s00453-008-9220-0 +Rémy Belmonte,Detecting Fixed Patterns in Chordal Graphs in Polynomial Time.,2014,69,Algorithmica,3,db/journals/algorithmica/algorithmica69.html#BelmonteGHHKP14,https://doi.org/10.1007/s00453-013-9748-5 +Ragesh Jaiswal,A Simple D 2-Sampling Based PTAS for k-Means and Other Clustering Problems.,2014,70,Algorithmica,1,db/journals/algorithmica/algorithmica70.html#Jaiswal0S14,https://doi.org/10.1007/s00453-013-9833-9 +Eduard Eiben,Solving Problems on Graphs of High Rank-Width.,2018,80,Algorithmica,2,db/journals/algorithmica/algorithmica80.html#EibenGS18,https://doi.org/10.1007/s00453-017-0290-8 +Anne Auger,Theory of Randomized Search Heuristics.,2012,64,Algorithmica,4,db/journals/algorithmica/algorithmica64.html#AugerW12,https://doi.org/10.1007/s00453-012-9686-7 +Jiawei Qian,Online Constrained Forest and Prize-Collecting Network Design.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#QianUW18,https://doi.org/10.1007/s00453-017-0391-4 +Oded Lachish,Testing Periodicity.,2011,60,Algorithmica,2,db/journals/algorithmica/algorithmica60.html#LachishN11,https://doi.org/10.1007/s00453-009-9351-y +Ran Raz,Quantum Information and the PCP Theorem.,2009,55,Algorithmica,3,db/journals/algorithmica/algorithmica55.html#Raz09,https://doi.org/10.1007/s00453-007-9033-6 +Sergio Verdú,Computational Complexity of Optimum Multiuser Detection.,1989,4,Algorithmica,3,db/journals/algorithmica/algorithmica4.html#Verdu89,https://doi.org/10.1007/BF01553893 +Marek Karpinski,Polynomial Time Approximation Schemes for Some Dense Instances of NP-Hard Optimization Problems.,2001,30,Algorithmica,3,db/journals/algorithmica/algorithmica30.html#Karpinski01,https://doi.org/10.1007/s00453-001-0012-z +Sally A. Goldman,Can PAC Learning Algorithms Tolerate Random Attribute Noise?,1995,14,Algorithmica,1,db/journals/algorithmica/algorithmica14.html#GoldmanS95,https://doi.org/10.1007/BF01300374 +Iris Reinbacher,Delineating Boundaries for Imprecise Regions.,2008,50,Algorithmica,3,db/journals/algorithmica/algorithmica50.html#ReinbacherBKMSW08,https://doi.org/10.1007/s00453-007-9042-5 +Young C. Wee,Rectilinear Steiner Tree Heuristics and Minimum Spanning Tree Algorithms Using Geographic Nearest Neighbors.,1994,12,Algorithmica,6,db/journals/algorithmica/algorithmica12.html#WeeCR94,https://doi.org/10.1007/BF01188713 +Tomás Ebenlendr,Graph Balancing: A Special Case of Scheduling Unrelated Parallel Machines.,2014,68,Algorithmica,1,db/journals/algorithmica/algorithmica68.html#EbenlendrKS14,https://doi.org/10.1007/s00453-012-9668-9 +John H. Reif,Optimal Randomized Parallel Algorithms for Computational Geometry.,1992,7,Algorithmica,1,db/journals/algorithmica/algorithmica7.html#ReifS92,https://doi.org/10.1007/BF01758753 +Gerth Stølting Brodal,On Space Efficient Two Dimensional Range Minimum Data Structures.,2012,63,Algorithmica,4,db/journals/algorithmica/algorithmica63.html#BrodalDR12,https://doi.org/10.1007/s00453-011-9499-0 +Helmut Alt,Comparison of Distance Measures for Planar Curves.,2004,38,Algorithmica,1,db/journals/algorithmica/algorithmica38.html#AltKW03,https://doi.org/10.1007/s00453-003-1042-5 +Olgica Milenkovic,Average Case Analysis of Gosper's Algorithm for a Class of Urn Model Inputs.,2005,43,Algorithmica,3,db/journals/algorithmica/algorithmica43.html#MilenkovicC05,https://doi.org/10.1007/s00453-005-1173-y +Bhaskar DasGupta,Stochastic Budget Optimization in Internet Advertising.,2013,65,Algorithmica,3,db/journals/algorithmica/algorithmica65.html#DasGuptaM13,https://doi.org/10.1007/s00453-012-9614-x +Anil Maheshwari,A Dynamic Dictionary for Priced Information with Application.,2006,44,Algorithmica,2,db/journals/algorithmica/algorithmica44.html#MaheshwariS06,https://doi.org/10.1007/s00453-005-1204-8 +Rex A. Dwyer,A Faster Divide-and-Conquer Algorithm for Constructing Delaunay Triangulations.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#Dwyer87,https://doi.org/10.1007/BF01840356 +Carola Doerr,The (1+1) Elitist Black-Box Complexity of LeadingOnes.,2018,80,Algorithmica,5,db/journals/algorithmica/algorithmica80.html#DoerrL18,https://doi.org/10.1007/s00453-017-0304-6 +Tomasz Kociumaka,String Powers in Trees.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#KociumakaRRW17,https://doi.org/10.1007/s00453-016-0271-3 +Hari Krovi,Quantum Walks Can Find a Marked Element on Any Graph.,2016,74,Algorithmica,2,db/journals/algorithmica/algorithmica74.html#KroviMOR16,https://doi.org/10.1007/s00453-015-9979-8 +Aleksei V. Fishkin,Grouping Techniques for Scheduling Problems: Simpler and Faster.,2008,51,Algorithmica,2,db/journals/algorithmica/algorithmica51.html#FishkinJM08,https://doi.org/10.1007/s00453-007-9086-6 +Hans L. Bodlaender,Editorial.,2015,73,Algorithmica,4,db/journals/algorithmica/algorithmica73.html#BodlaenderHI15,https://doi.org/10.1007/s00453-015-0074-y +Santosh N. Kabadi,Equivalence of epsilon-Approximate Separation and Optimization in Fixed Dimensions.,2001,29,Algorithmica,4,db/journals/algorithmica/algorithmica29.html#KabadiA01,https://doi.org/10.1007/s004530010073 +Alexander Grigoriev,Algorithms for Graphs Embeddable with Few Crossings per Edge.,2007,49,Algorithmica,1,db/journals/algorithmica/algorithmica49.html#GrigorievB07,https://doi.org/10.1007/s00453-007-0010-x +Marios Mavronicolas,Cost Sharing Mechanisms for Fair Pricing of Resource Usage.,2008,52,Algorithmica,1,db/journals/algorithmica/algorithmica52.html#MavronicolasPS08,https://doi.org/10.1007/s00453-007-9108-4 +Alfredo Viola,The Analysis of Linear Probing Hashing with Buckets.,1998,21,Algorithmica,1,db/journals/algorithmica/algorithmica21.html#ViolaP98,https://doi.org/10.1007/PL00009208 +Xiaodong Hu,Recent Advances in Computation and Combinatorial Optimization.,2010,56,Algorithmica,3,db/journals/algorithmica/algorithmica56.html#HuW10,https://doi.org/10.1007/s00453-009-9374-4 +Duc-Cuong Dang,Populations Can Be Essential in Tracking Dynamic Optima.,2017,78,Algorithmica,2,db/journals/algorithmica/algorithmica78.html#DangJL17,https://doi.org/10.1007/s00453-016-0187-y +Emmanouil Pountourakis,A Complete Characterization of Group-Strategyproof Mechanisms of Cost-Sharing.,2012,63,Algorithmica,4,db/journals/algorithmica/algorithmica63.html#PountourakisV12,https://doi.org/10.1007/s00453-011-9602-6 +Bhubaneswar Mishra,On the Existence and Synthesis of Multifinger Positive Grips.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#MishraSS87,https://doi.org/10.1007/BF01840373 +Gary L. Miller,Tree-Based Parallel Algorithm Design.,1997,19,Algorithmica,4,db/journals/algorithmica/algorithmica19.html#MillerT97,https://doi.org/10.1007/PL00009179 +Radu Mihaescu,Fast Phylogeny Reconstruction Through Learning of Ancestral Sequences.,2013,66,Algorithmica,2,db/journals/algorithmica/algorithmica66.html#MihaescuHR13,https://doi.org/10.1007/s00453-012-9644-4 +Nikhil Bansal,Competitive Algorithms for Due Date Scheduling.,2011,59,Algorithmica,4,db/journals/algorithmica/algorithmica59.html#BansalCP11,https://doi.org/10.1007/s00453-009-9321-4 +Richard Cole 0001,The Accelerated Centroid Decomposition Technique for Optimal Parallel Tree Evaluation in Logarithmic Time.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#ColeV88,https://doi.org/10.1007/BF01762121 +Dimitris Papadias,Constraint-Based Processing of Multiway Spatial Joins.,2001,30,Algorithmica,2,db/journals/algorithmica/algorithmica30.html#PapadiasMT01,https://doi.org/10.1007/s00453-001-0005-y +Damon Kaller,Definability Equals Recognizability of Partial 3-Trees and k-Connected Partial k-Trees.,2000,27,Algorithmica,3,db/journals/algorithmica/algorithmica27.html#Kaller00,https://doi.org/10.1007/s004530010024 +Ashwin Arulselvan,Matchings with Lower Quotas: Algorithms and Complexity.,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#ArulselvanCGMM18,https://doi.org/10.1007/s00453-016-0252-6 +Lyle A. McGeoch,A Strongly Competitive Randomized Paging Algorithm.,1991,6,Algorithmica,6,db/journals/algorithmica/algorithmica6.html#McGeochS91,https://doi.org/10.1007/BF01759073 +Erin W. Chambers,Connectivity Graphs of Uncertainty Regions.,2017,78,Algorithmica,3,db/journals/algorithmica/algorithmica78.html#ChambersEFLSVSS17,https://doi.org/10.1007/s00453-016-0191-2 +Maarten Lipmann,On-Line Dial-a-Ride Problems Under a Restricted Information Model.,2004,40,Algorithmica,4,db/journals/algorithmica/algorithmica40.html#LipmannLPSS04,https://doi.org/10.1007/s00453-004-1116-z +David Furcy,Optimal Self-Assembly of Finite Shapes at Temperature 1 in 3D.,2018,80,Algorithmica,6,db/journals/algorithmica/algorithmica80.html#FurcyS18,https://doi.org/10.1007/s00453-016-0260-6 +Sándor P. Fekete,Online Square Packing with Gravity.,2014,68,Algorithmica,4,db/journals/algorithmica/algorithmica68.html#FeketeKS14,https://doi.org/10.1007/s00453-012-9713-8 +Frank Thomson Leighton,Efficient Algorithms for Dynamic Allocation of Distributed Memo.,1999,24,Algorithmica,2,db/journals/algorithmica/algorithmica24.html#LeightonS99,https://doi.org/10.1007/PL00009275 +Andreas Brandstädt,Tree Spanners for Bipartite Graphs and Probe Interval Graphs.,2007,47,Algorithmica,1,db/journals/algorithmica/algorithmica47.html#BrandstadtDLLU07,https://doi.org/10.1007/s00453-006-1209-y +Jean-Daniel Boissonnat,The Compressed Annotation Matrix: An Efficient Data Structure for Computing Persistent Cohomology.,2015,73,Algorithmica,3,db/journals/algorithmica/algorithmica73.html#BoissonnatDM15,https://doi.org/10.1007/s00453-015-9999-4 +Gruia Calinescu,Register Loading via Linear Programming.,2015,72,Algorithmica,4,db/journals/algorithmica/algorithmica72.html#CalinescuL15,https://doi.org/10.1007/s00453-014-9888-2 +Refael Hassin,Approximation Algorithms for Quickest Spanning Tree Problems.,2005,41,Algorithmica,1,db/journals/algorithmica/algorithmica41.html#HassinL04,https://doi.org/10.1007/s00453-004-1118-x +Bogdan S. Chlebus,O(log log n)-Time Integer Geometry on the CRCW PRAM.,1995,14,Algorithmica,1,db/journals/algorithmica/algorithmica14.html#ChlebusDK95,https://doi.org/10.1007/BF01300373 +Victor Chepoi,Mixed Covering of Trees and the Augmentation Problem with Odd Diameter Constraints.,2006,45,Algorithmica,2,db/journals/algorithmica/algorithmica45.html#ChepoiENV06,https://doi.org/10.1007/s00453-005-1183-9 +Pei-Chi Huang,Smallest Bipartite Bridge-Connectivity Augmentation.,2009,54,Algorithmica,3,db/journals/algorithmica/algorithmica54.html#HuangWLSH09,https://doi.org/10.1007/s00453-007-9127-1 +Jinhui Xu 0001,Computing the Map of Geometric Minimal Cuts.,2014,68,Algorithmica,4,db/journals/algorithmica/algorithmica68.html#Xu0P14,https://doi.org/10.1007/s00453-012-9704-9 +Patrizio Angelini,Strip Planarity Testing for Embedded Planar Graphs.,2017,77,Algorithmica,4,db/journals/algorithmica/algorithmica77.html#AngeliniLBF17,https://doi.org/10.1007/s00453-016-0128-9 +David Peleg,Randomized Approximation of Bounded Multicovering Problems.,1997,18,Algorithmica,1,db/journals/algorithmica/algorithmica18.html#PelegSW97,https://doi.org/10.1007/BF02523687 +Joachim Kneis,A New Algorithm for Finding Trees with Many Leaves.,2011,61,Algorithmica,4,db/journals/algorithmica/algorithmica61.html#KneisLR11,https://doi.org/10.1007/s00453-010-9454-5 +Chee-Keng Yap,Editor's Foreword: Special Issue on Computational Geometry.,1989,4,Algorithmica,1,db/journals/algorithmica/algorithmica4.html#Yap89,https://doi.org/10.1007/BF01553876 +David Pisinger,Dynamic Programming on the Word RAM.,2003,35,Algorithmica,2,db/journals/algorithmica/algorithmica35.html#Pisinger03,https://doi.org/10.1007/s00453-002-0989-y +Roberto Battiti,Foreword.,2002,33,Algorithmica,1,db/journals/algorithmica/algorithmica33.html#BattitiB02,https://doi.org/10.1007/PL00009289 +Alberto Policriti,LZ77 Computation Based on the Run-Length Encoded BWT.,2018,80,Algorithmica,7,db/journals/algorithmica/algorithmica80.html#PolicritiP18,https://doi.org/10.1007/s00453-017-0327-z +Thomas P. Hayes,The Quantum Black-Box Complexity of Majority.,2002,34,Algorithmica,4,db/journals/algorithmica/algorithmica34.html#HayesKM02,https://doi.org/10.1007/s00453-002-0981-6 +Kazuyuki Amano,The Monotone Circuit Complexity of Quadratic Boolean Functions.,2006,46,Algorithmica,1,db/journals/algorithmica/algorithmica46.html#AmanoM06,https://doi.org/10.1007/s00453-006-0073-0 +Olivier Beaumont,Partitioning a Square into Rectangles: NP-Completeness and Approximation Algorithms.,2002,34,Algorithmica,3,db/journals/algorithmica/algorithmica34.html#BeaumontBRR02,https://doi.org/10.1007/s00453-002-0962-9 +Hai Yu,Practical Methods for Shape Fitting and Kinetic Data Structures using Coresets.,2008,52,Algorithmica,3,db/journals/algorithmica/algorithmica52.html#YuAPV08,https://doi.org/10.1007/s00453-007-9067-9 +Tobias Friedrich 0001,Diameter and Broadcast Time of Random Geometric Graphs in Arbitrary Dimensions.,2013,67,Algorithmica,1,db/journals/algorithmica/algorithmica67.html#FriedrichSS13,https://doi.org/10.1007/s00453-012-9710-y +Lars Arge,RAM-Efficient External Memory Sorting.,2015,73,Algorithmica,4,db/journals/algorithmica/algorithmica73.html#ArgeT15,https://doi.org/10.1007/s00453-015-0032-8 +Ravindra K. Ahuja,A Cut-Based Algorithm for the Nonlinear Dual of the Minimum Cost Network Flow Problem.,2004,39,Algorithmica,3,db/journals/algorithmica/algorithmica39.html#AhujaHO04,https://doi.org/10.1007/s00453-004-1085-2 +J. C. Cogolludo,Permutation Routing on Reconfigurable Meshes.,2001,31,Algorithmica,1,db/journals/algorithmica/algorithmica31.html#CogolludoR01,https://doi.org/10.1007/s00453-001-0037-3 +Emile Ziedan,The Induced Separation Dimension of a Graph.,2018,80,Algorithmica,10,db/journals/algorithmica/algorithmica80.html#ZiedanRMGD18,https://doi.org/10.1007/s00453-017-0353-x +Giorgio Ausiello,Algorithms for the On-Line Travelling Salesman.,2001,29,Algorithmica,4,db/journals/algorithmica/algorithmica29.html#AusielloFLST01,https://doi.org/10.1007/s004530010071 +Greg N. Frederickson,Searching Among Intervals and Compact Routing Tables.,1996,15,Algorithmica,5,db/journals/algorithmica/algorithmica15.html#Frederickson96,https://doi.org/10.1007/BF01955044 +Marek Chrobak,Incremental Medians via Online Bidding.,2008,50,Algorithmica,4,db/journals/algorithmica/algorithmica50.html#ChrobakKNY08,https://doi.org/10.1007/s00453-007-9005-x +Leah Epstein,Guest Editorial: Selected Papers of European Symposium of Algorithms.,2014,70,Algorithmica,3,db/journals/algorithmica/algorithmica70.html#EpsteinF14,https://doi.org/10.1007/s00453-014-9916-2 +Michael J. Todd,On Combined Phase 1-Phase 2 Projective Methods for Linear Programming.,1993,9,Algorithmica,1,db/journals/algorithmica/algorithmica9.html#ToddW93,https://doi.org/10.1007/BF01185339 +Celina Imielinska,A General Class of Heuristics for Minimum Weight Perfect Matching and Fast Special Cases with Doubly and Triply Logarithmic Errors.,1997,18,Algorithmica,4,db/journals/algorithmica/algorithmica18.html#ImielinskaK97,https://doi.org/10.1007/PL00009172 +Gabriele Blankenagel,Internal and External Algorithms for the Points-in-Regions Problem-the INSIDE Join of Geo-Relational Algebra.,1990,5,Algorithmica,2,db/journals/algorithmica/algorithmica5.html#BlankenagelG90,https://doi.org/10.1007/BF01840388 +Kevin Buchin,Angle-Restricted Steiner Arborescences for Flow Map Layout.,2015,72,Algorithmica,2,db/journals/algorithmica/algorithmica72.html#BuchinSV15,https://doi.org/10.1007/s00453-013-9867-z +Ferdinando Cicalese,"Guest Editorial for ""Group Testing: models and applications"".",2013,67,Algorithmica,3,db/journals/algorithmica/algorithmica67.html#CicaleseP13,https://doi.org/10.1007/s00453-013-9812-1 +Giovanni Manzini,Engineering a Lightweight Suffix Array Construction Algorithm.,2004,40,Algorithmica,1,db/journals/algorithmica/algorithmica40.html#ManziniF04,https://doi.org/10.1007/s00453-004-1094-1 +Naoyuki Kamiyama,A Note on Submodular Function Minimization with Covering Type Linear Constraints.,2018,80,Algorithmica,10,db/journals/algorithmica/algorithmica80.html#Kamiyama18,https://doi.org/10.1007/s00453-017-0363-8 +Paz Carmi,Bounded-Hop Communication Networks.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#CarmiCT18,https://doi.org/10.1007/s00453-017-0370-9 +Noga Alon,Solving MAX-r-SAT Above a Tight Lower Bound.,2011,61,Algorithmica,3,db/journals/algorithmica/algorithmica61.html#AlonGKSY11,https://doi.org/10.1007/s00453-010-9428-7 +Thomas Erlebach,Routing Flow Through a Strongly Connected Graph.,2002,32,Algorithmica,3,db/journals/algorithmica/algorithmica32.html#ErlebachH02,https://doi.org/10.1007/s00453-001-0082-y +Shaunak Pawagi,Optimal Parallel Algorithms for Multiple Updates of Minimum Spanning Trees.,1993,9,Algorithmica,4,db/journals/algorithmica/algorithmica9.html#PawagiK93,https://doi.org/10.1007/BF01228509 +Hervé Fournier,A Tight Lower Bound for Computing the Diameter of a 3D Convex Polytope.,2007,49,Algorithmica,3,db/journals/algorithmica/algorithmica49.html#FournierV07,https://doi.org/10.1007/s00453-007-9010-0 +Klaus Jansen,Linear-Time Approximation Schemes for Scheduling Malleable Parallel Tasks.,2002,32,Algorithmica,3,db/journals/algorithmica/algorithmica32.html#JansenP02,https://doi.org/10.1007/s00453-001-0085-8 +Jaikumar Radhakrishnan,The Quantum Complexity of Set Membership.,2002,34,Algorithmica,4,db/journals/algorithmica/algorithmica34.html#RadhakrishnanSV02,https://doi.org/10.1007/s00453-002-0979-0 +Mireille Régnier,On Pattern Frequency Occurrences in a Markovian Sequence.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#RegnierS98,https://doi.org/10.1007/PL00009244 +Yixin Cao 0001,On Feedback Vertex Set: New Measure and New Structures.,2015,73,Algorithmica,1,db/journals/algorithmica/algorithmica73.html#CaoC015,https://doi.org/10.1007/s00453-014-9904-6 +Yossi Azar,Maximizing Throughput in Multi-Queue Switches.,2006,45,Algorithmica,1,db/journals/algorithmica/algorithmica45.html#AzarL06,https://doi.org/10.1007/s00453-005-1190-x +Andreas Brandstädt,Maximum Induced Matchings for Chordal Graphs in Linear Time.,2008,52,Algorithmica,4,db/journals/algorithmica/algorithmica52.html#BrandstadtH08,https://doi.org/10.1007/s00453-007-9045-2 +K. S. Easwarakumar,Optimal Parallel Algorithm for Finding st-Ambitus of a Planar Biconnected Graph.,1996,15,Algorithmica,3,db/journals/algorithmica/algorithmica15.html#EaswarakumarKRS96,https://doi.org/10.1007/BF01975868 +Wing-Kai Hon,Dictionary Matching with a Bounded Gap in Pattern or in Text.,2018,80,Algorithmica,2,db/journals/algorithmica/algorithmica80.html#HonLSTTY18,https://doi.org/10.1007/s00453-017-0288-2 +Samir Khuller,Broadcasting in Heterogeneous Networks.,2007,48,Algorithmica,1,db/journals/algorithmica/algorithmica48.html#KhullerK07,https://doi.org/10.1007/s00453-006-1227-9 +Jochen Könemann,A Unified Approach to Approximating Partial Covering Problems.,2011,59,Algorithmica,4,db/journals/algorithmica/algorithmica59.html#KonemannPS11,https://doi.org/10.1007/s00453-009-9317-0 +Ivan Rapaport,On Dissemination Thresholds in Regular and Irregular Graph Classes.,2011,59,Algorithmica,1,db/journals/algorithmica/algorithmica59.html#RapaportSTV11,https://doi.org/10.1007/s00453-009-9309-0 +Michel Habib,Computing H-Joins with Application to 2-Modular Decomposition.,2014,70,Algorithmica,2,db/journals/algorithmica/algorithmica70.html#HabibMM14,https://doi.org/10.1007/s00453-013-9820-1 +Martin Zachariasen,Concatenation-Based Greedy Heuristics for the Euclidean Steiner Tree Problem.,1999,25,Algorithmica,4,db/journals/algorithmica/algorithmica25.html#ZachariasenW99,https://doi.org/10.1007/PL00009287 +Aline Medeiros Saettler,Trading Off Worst and Expected Cost in Decision Tree Problems.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#SaettlerLC17,https://doi.org/10.1007/s00453-016-0211-2 +Min Chih Lin,Exact Algorithms for Minimum Weighted Dominating Induced Matching.,2017,77,Algorithmica,3,db/journals/algorithmica/algorithmica77.html#LinMS17,https://doi.org/10.1007/s00453-015-0095-6 +Guoliang Xue,A Polynomial Time Approximation Scheme for Minimum Cost Delay-Constrained Multicast Tree under a Steiner Topology.,2005,41,Algorithmica,1,db/journals/algorithmica/algorithmica41.html#XueX04,https://doi.org/10.1007/s00453-004-1119-9 +Jesper Jansson,Constructing the R* Consensus Tree of Two Trees in Subcubic Time.,2013,66,Algorithmica,2,db/journals/algorithmica/algorithmica66.html#JanssonS13,https://doi.org/10.1007/s00453-012-9639-1 +Marek Chrobak,LRU Is Better than FIFO.,1999,23,Algorithmica,2,db/journals/algorithmica/algorithmica23.html#ChrobakN99,https://doi.org/10.1007/PL00009255 +Moshe Hershcovitch,I/O Efficient Dynamic Data Structures for Longest Prefix Queries.,2013,65,Algorithmica,2,db/journals/algorithmica/algorithmica65.html#HershcovitchK13,https://doi.org/10.1007/s00453-011-9594-2 +Stephen Desalvo,Exact Sampling Algorithms for Latin Squares and Sudoku Matrices via Probabilistic Divide-and-Conquer.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#Desalvo17,https://doi.org/10.1007/s00453-016-0223-y +Bala Kalyanasundaram,Caching for Web Searching.,2002,33,Algorithmica,3,db/journals/algorithmica/algorithmica33.html#KalyanasundaramNPW02,https://doi.org/10.1007/s00453-001-0123-6 +Tak Wah Lam,Online Speed Scaling Based on Active Job Count to Minimize Flow Plus Energy.,2013,65,Algorithmica,3,db/journals/algorithmica/algorithmica65.html#LamLTW13,https://doi.org/10.1007/s00453-012-9613-y +Andrzej Lingas,A Fast Output-Sensitive Algorithm for Boolean Matrix Multiplication.,2011,61,Algorithmica,1,db/journals/algorithmica/algorithmica61.html#Lingas11,https://doi.org/10.1007/s00453-010-9441-x +Peter Eades,The Realization Problem for Euclidean Minimum Spanning Trees in NP-Hard.,1996,16,Algorithmica,1,db/journals/algorithmica/algorithmica16.html#EadesW96,https://doi.org/10.1007/BF02086608 +M. Orlowski,A New Algorithm for the Largest Empty Rectangle Problem.,1990,5,Algorithmica,1,db/journals/algorithmica/algorithmica5.html#Orlowski90,https://doi.org/10.1007/BF01840377 +Gábor Ivanyos,Polynomial Interpolation and Identity Testing from High Powers Over Finite Fields.,2018,80,Algorithmica,2,db/journals/algorithmica/algorithmica80.html#IvanyosKSSS18,https://doi.org/10.1007/s00453-016-0273-1 +Sergey Bereg,A PTAS for Cutting Out Polygons with Lines.,2009,53,Algorithmica,2,db/journals/algorithmica/algorithmica53.html#BeregDJ09,https://doi.org/10.1007/s00453-008-9182-2 +Marek Cygan,Scheduling Partially Ordered Jobs Faster than 2 n.,2014,68,Algorithmica,3,db/journals/algorithmica/algorithmica68.html#CyganPPW14,https://doi.org/10.1007/s00453-012-9694-7 +,Editor's Note: Special Issue Dedicated to the 60th Birthday of Gregory Gutin.,2018,80,Algorithmica,9,db/journals/algorithmica/algorithmica80.html#X18,https://doi.org/10.1007/s00453-018-0437-2 +Paolo D'Alberto,R-Kleene: A High-Performance Divide-and-Conquer Algorithm for the All-Pair Shortest Path for Densely Connected Networks.,2007,47,Algorithmica,2,db/journals/algorithmica/algorithmica47.html#DAlbertoN07,https://doi.org/10.1007/s00453-006-1224-z +Stacey Jeffery,Optimal Parallel Quantum Query Algorithms.,2017,79,Algorithmica,2,db/journals/algorithmica/algorithmica79.html#JefferyMW17,https://doi.org/10.1007/s00453-016-0206-z +Jaroslaw Blasiok,Chain Minors are FPT.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#BlasiokK17,https://doi.org/10.1007/s00453-016-0220-1 +Daniele Frigioni,Semidynamic Algorithms for Maintaining Single-Source Shortest Path Trees.,1998,22,Algorithmica,3,db/journals/algorithmica/algorithmica22.html#FrigioniMN98,https://doi.org/10.1007/PL00009224 +Christian A. Duncan,Optimal Polygonal Representation of Planar Graphs.,2012,63,Algorithmica,3,db/journals/algorithmica/algorithmica63.html#DuncanGHKK12,https://doi.org/10.1007/s00453-011-9525-2 +Jørgen Bang-Jensen,Algorithms and Kernels for Feedback Set Problems in Generalizations of Tournaments.,2016,76,Algorithmica,2,db/journals/algorithmica/algorithmica76.html#Bang-JensenMS16,https://doi.org/10.1007/s00453-015-0038-2 +Sándor P. Fekete,Maximum Dispersion and Geometric Maximum Weight Cliques.,2004,38,Algorithmica,3,db/journals/algorithmica/algorithmica38.html#FeketeM03,https://doi.org/10.1007/s00453-003-1074-x +Maxim A. Babenko,Improved Algorithms for Even Factors and Square-Free Simple b-Matchings.,2012,64,Algorithmica,3,db/journals/algorithmica/algorithmica64.html#Babenko12,https://doi.org/10.1007/s00453-012-9642-6 +Mordecai J. Golin,A Provably Fast Linear-Expected-Time Maxima-Finding Algorithm.,1994,11,Algorithmica,6,db/journals/algorithmica/algorithmica11.html#Golin94,https://doi.org/10.1007/BF01189991 +Chien-Chung Huang,Circular Stable Matching and 3-way Kidney Transplant.,2010,58,Algorithmica,1,db/journals/algorithmica/algorithmica58.html#Huang10,https://doi.org/10.1007/s00453-009-9356-6 +René Beier,An Experimental Study of Random Knapsack Problems.,2006,45,Algorithmica,1,db/journals/algorithmica/algorithmica45.html#BeierV06,https://doi.org/10.1007/s00453-005-1193-7 +Robert F. Cohen,Three-Dimensional Graph Drawing.,1997,17,Algorithmica,2,db/journals/algorithmica/algorithmica17.html#CohenELR97,https://doi.org/10.1007/BF02522826 +Marilyn G. Andrews,Parallel Algorithms for Maximum Matching in Complements of Interval Graphs and Related Problems.,2000,26,Algorithmica,2,db/journals/algorithmica/algorithmica26.html#AndrewsACL00,https://doi.org/10.1007/s004539910013 +Hervé Fournier,Fitting a Step Function to a Point Set.,2011,60,Algorithmica,1,db/journals/algorithmica/algorithmica60.html#FournierV11,https://doi.org/10.1007/s00453-009-9342-z +Robert L. (Scot) Drysdale III,Discrete Simulation of NC Machining.,1989,4,Algorithmica,1,db/journals/algorithmica/algorithmica4.html#DrysdaleJSH89,https://doi.org/10.1007/BF01553878 +Benjamin Grimmer,Dual-Based Approximation Algorithms for Cut-Based Network Connectivity Problems.,2018,80,Algorithmica,10,db/journals/algorithmica/algorithmica80.html#Grimmer18,https://doi.org/10.1007/s00453-017-0356-7 +Bert Besser,Erratum to: Greedy Matching: Guarantees and Limitations.,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#BesserP18,https://doi.org/10.1007/s00453-017-0281-9 +Minming Li,Tighter Approximation Bounds for Minimum CDS in Unit Disk Graphs.,2011,61,Algorithmica,4,db/journals/algorithmica/algorithmica61.html#LiWY11,https://doi.org/10.1007/s00453-011-9512-7 +Enrico Nardelli,Nearly Linear Time Minimum Spanning Tree Maintenance for Transient Node Failures.,2004,40,Algorithmica,2,db/journals/algorithmica/algorithmica40.html#NardelliPW04,https://doi.org/10.1007/s00453-004-1099-9 +Sander P. A. Alewijnse,Model-Based Segmentation and Classification of Trajectories.,2018,80,Algorithmica,8,db/journals/algorithmica/algorithmica80.html#AlewijnseBBSW18,https://doi.org/10.1007/s00453-017-0329-x +Per Kristian Lehre,Black-Box Search by Unbiased Variation.,2012,64,Algorithmica,4,db/journals/algorithmica/algorithmica64.html#LehreW12,https://doi.org/10.1007/s00453-012-9616-8 +Desh Ranjan,The Temporal Precedence Problem.,2000,28,Algorithmica,3,db/journals/algorithmica/algorithmica28.html#RanjanPGL00,https://doi.org/10.1007/s004530010036 +Amarda Shehu,Sampling Conformation Space to Model Equilibrium Fluctuations in Proteins.,2007,48,Algorithmica,4,db/journals/algorithmica/algorithmica48.html#ShehuCK07,https://doi.org/10.1007/s00453-007-0178-0 +Benjamin E. Birnbaum,An Improved Analysis for a Greedy Remote-Clique Algorithm Using Factor-Revealing LPs.,2009,55,Algorithmica,1,db/journals/algorithmica/algorithmica55.html#BirnbaumG09,https://doi.org/10.1007/s00453-007-9142-2 +Gabriele Blankenagel,External Segment Trees.,1994,12,Algorithmica,6,db/journals/algorithmica/algorithmica12.html#BlankenagelG94,https://doi.org/10.1007/BF01188717 +Wun-Tat Chan,Escaping a Grid by Edge-Disjoint Paths.,2003,36,Algorithmica,4,db/journals/algorithmica/algorithmica36.html#ChanCT03,https://doi.org/10.1007/s00453-003-1023-8 +Harald Rosenberger,Order-k Voronoi Diagrams of Sites with Additive Weights in the Plane.,1991,6,Algorithmica,4,db/journals/algorithmica/algorithmica6.html#Rosenberger91,https://doi.org/10.1007/BF01759056 +Klaus Jansen,Estimating the Makespan of the Two-Valued Restricted Assignment Problem.,2018,80,Algorithmica,4,db/journals/algorithmica/algorithmica80.html#JansenLM18,https://doi.org/10.1007/s00453-017-0314-4 +Samir Khuller,Flow in Planar Graphs with Vertex Capacities.,1994,11,Algorithmica,3,db/journals/algorithmica/algorithmica11.html#KhullerN94,https://doi.org/10.1007/BF01240733 +L. N. Coyle,Analysis of the SSAP Method for the Numerical Valuation of High-Dimensional Multivariate American Securities.,1999,25,Algorithmica,1,db/journals/algorithmica/algorithmica25.html#CoyleY99,https://doi.org/10.1007/PL00009284 +Costas Busch,Direct Routing: Algorithms and Complexity.,2006,45,Algorithmica,1,db/journals/algorithmica/algorithmica45.html#BuschMMS06,https://doi.org/10.1007/s00453-005-1189-3 +Dae Seoung Kim,Efficient Algorithms for Computing a Complete Visibility Region in Three-Dimensional Space.,1998,20,Algorithmica,2,db/journals/algorithmica/algorithmica20.html#KimYCS98,https://doi.org/10.1007/PL00009193 +S. Muthukrishnan,Detecting False Matches in String-Matching Algorithms.,1997,18,Algorithmica,4,db/journals/algorithmica/algorithmica18.html#Muthukrishnan97,https://doi.org/10.1007/PL00009168 +Abdel Krim Amoura,Scheduling Independent Multiprocessor Tasks.,2002,32,Algorithmica,2,db/journals/algorithmica/algorithmica32.html#AmouraBKM02,https://doi.org/10.1007/s00453-001-0076-9 +Marek Chrobak,Faster Information Gathering in Ad-Hoc Radio Tree Networks.,2018,80,Algorithmica,3,db/journals/algorithmica/algorithmica80.html#ChrobakC18,https://doi.org/10.1007/s00453-017-0336-y +Hong-Tai Chou,An Evaluation of Buffer Management Strategies for Relational Database Systems.,1986,1,Algorithmica,3,db/journals/algorithmica/algorithmica1.html#ChouD86,https://doi.org/10.1007/BF01840450 +Stéphan Thomassé,A Polynomial Turing-Kernel for Weighted Independent Set in Bull-Free Graphs.,2017,77,Algorithmica,3,db/journals/algorithmica/algorithmica77.html#ThomasseTV17,https://doi.org/10.1007/s00453-015-0083-x +Koki Hamada,The Hospitals/Residents Problem with Lower Quotas.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#HamadaIM16,https://doi.org/10.1007/s00453-014-9951-z +Jan Arpe,Approximability of Minimum AND-Circuits.,2009,53,Algorithmica,3,db/journals/algorithmica/algorithmica53.html#ArpeM09,https://doi.org/10.1007/s00453-007-9039-0 +Andreas Brandstädt,On Independent Vertex Sets in Subclasses of Apple-Free Graphs.,2010,56,Algorithmica,4,db/journals/algorithmica/algorithmica56.html#BrandstadtKLM10,https://doi.org/10.1007/s00453-008-9176-0 +Isolde Adler,Fast Minor Testing in Planar Graphs.,2012,64,Algorithmica,1,db/journals/algorithmica/algorithmica64.html#AdlerDFST12,https://doi.org/10.1007/s00453-011-9563-9 +Rivka Ladin,A Technique for Constructing Highly Available Services.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#LadinLS88,https://doi.org/10.1007/BF01762124 +Alex Gavryushkin,Dynamic Algorithms for Multimachine Interval Scheduling Through Analysis of Idle Intervals.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#GavryushkinKKL16,https://doi.org/10.1007/s00453-016-0148-5 +Andrea E. F. Clementi,The Minimum Range Assignment Problem on Linear Radio Networks.,2003,35,Algorithmica,2,db/journals/algorithmica/algorithmica35.html#ClementiPFPS03,https://doi.org/10.1007/s00453-002-0985-2 +Shouwei Li,Towards Flexible Demands in Online Leasing Problems.,2018,80,Algorithmica,5,db/journals/algorithmica/algorithmica80.html#LiMH18,https://doi.org/10.1007/s00453-018-0420-y +Kokichi Sugihara,Topology-Oriented Implementation - An Approach to Robust Geometric Algorithms.,2000,27,Algorithmica,1,db/journals/algorithmica/algorithmica27.html#SugiharaIII00,https://doi.org/10.1007/s004530010002 +Masato Edahiro,A Bucketing Algorithm for the Orthogonal Segment Intersection Search Problem and Its Practical Efficiency.,1989,4,Algorithmica,1,db/journals/algorithmica/algorithmica4.html#EdahiroTHA89,https://doi.org/10.1007/BF01553879 +Pankaj K. Agarwal,Selecting Distances in the Plane.,1993,9,Algorithmica,5,db/journals/algorithmica/algorithmica9.html#AgarwalASS93,https://doi.org/10.1007/BF01187037 +Bodo Rosenhahn,Free-Form Pose Estimation by Using Twist Representations.,2004,38,Algorithmica,1,db/journals/algorithmica/algorithmica38.html#RosenhahnPS03,https://doi.org/10.1007/s00453-003-1044-3 +Zhi-Zhong Chen,Recognizing Hole-Free 4-Map Graphs in Cubic Time.,2006,45,Algorithmica,2,db/journals/algorithmica/algorithmica45.html#ChenGP06,https://doi.org/10.1007/s00453-005-1184-8 +Daniel Dadush,A Randomized Sieving Algorithm for Approximate Integer Programming.,2014,70,Algorithmica,2,db/journals/algorithmica/algorithmica70.html#Dadush14,https://doi.org/10.1007/s00453-013-9834-8 +Stavros D. Nikolopoulos,Detecting Holes and Antiholes in Graphs.,2007,47,Algorithmica,2,db/journals/algorithmica/algorithmica47.html#NikolopoulosP07,https://doi.org/10.1007/s00453-006-1225-y +Doron Nussbaum,Finding Maximum Edge Bicliques in Convex Bipartite Graphs.,2012,64,Algorithmica,2,db/journals/algorithmica/algorithmica64.html#NussbaumPSUZ12,https://doi.org/10.1007/s00453-010-9486-x +Matthew J. Katz,Maintenance of a Piercing Set for Intervals with Applications.,2003,36,Algorithmica,1,db/journals/algorithmica/algorithmica36.html#KatzNS03,https://doi.org/10.1007/s00453-002-1006-1 +Tao Jiang 0001,Mapping Clones with a Given Ordering or Interleaving.,1998,21,Algorithmica,3,db/journals/algorithmica/algorithmica21.html#JiangK98,https://doi.org/10.1007/PL00009215 +Spyros C. Kontogiannis,Distance Oracles for Time-Dependent Networks.,2016,74,Algorithmica,4,db/journals/algorithmica/algorithmica74.html#KontogiannisZ16,https://doi.org/10.1007/s00453-015-0003-0 +Zhi-Zhong Chen,Randomized Fixed-Parameter Algorithms for the Closest String Problem.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#ChenMW16,https://doi.org/10.1007/s00453-014-9952-y +Peter Damaschke,Online Search with Time-Varying Price Bounds.,2009,55,Algorithmica,4,db/journals/algorithmica/algorithmica55.html#DamaschkeHT09,https://doi.org/10.1007/s00453-007-9156-9 +Haim Kaplan,Maximum Flow in Directed Planar Graphs with Vertex Capacities.,2011,61,Algorithmica,1,db/journals/algorithmica/algorithmica61.html#KaplanN11,https://doi.org/10.1007/s00453-010-9436-7 +Alfredo García Olaverri,Augmenting the Rigidity of a Graph in R2.,2011,59,Algorithmica,2,db/journals/algorithmica/algorithmica59.html#OlaverriT11,https://doi.org/10.1007/s00453-009-9300-9 +Michael Dinitz,Explicit Expanding Expanders.,2017,78,Algorithmica,4,db/journals/algorithmica/algorithmica78.html#DinitzSV17,https://doi.org/10.1007/s00453-016-0269-x +Marek Cygan,An Improved FPT Algorithm and a Quadratic Kernel for Pathwidth One Vertex Deletion.,2012,64,Algorithmica,1,db/journals/algorithmica/algorithmica64.html#CyganPPW12,https://doi.org/10.1007/s00453-011-9578-2 +Ruth Kuchem,Optimizing Area for Three-Layer Knock-Knee Channel Routing.,1996,15,Algorithmica,5,db/journals/algorithmica/algorithmica15.html#KuchemWW96,https://doi.org/10.1007/BF01955047 +Yossi Malka,A Lower Bound on the Period Length of a Distributed Scheduler.,1993,10,Algorithmica,5,db/journals/algorithmica/algorithmica10.html#MalkaMZ93,https://doi.org/10.1007/BF01769705 +Longkun Guo,On Finding Min-Min Disjoint Paths.,2013,66,Algorithmica,3,db/journals/algorithmica/algorithmica66.html#GuoS13,https://doi.org/10.1007/s00453-012-9656-0 +Takao Nishizeki,Foreword.,2000,26,Algorithmica,1,db/journals/algorithmica/algorithmica26.html#NishizekiTW00,https://doi.org/10.1007/s004539910001 +Marcin Bienkowski,Collecting Weighted Items from a Dynamic Queue.,2013,65,Algorithmica,1,db/journals/algorithmica/algorithmica65.html#BienkowskiCDHJJS13,https://doi.org/10.1007/s00453-011-9574-6 +Isolde Adler,Linear Rank-Width of Distance-Hereditary Graphs I. A Polynomial-Time Algorithm.,2017,78,Algorithmica,1,db/journals/algorithmica/algorithmica78.html#AdlerKK17,https://doi.org/10.1007/s00453-016-0164-5 +Claire Kenyon,The Data Broadcast Problem with Non-Uniform Transmission Times.,2003,35,Algorithmica,2,db/journals/algorithmica/algorithmica35.html#KenyonS03,https://doi.org/10.1007/s00453-002-0990-5 +Micha Hofri,Efficient Reorganization of Binary Search Trees.,2001,31,Algorithmica,3,db/journals/algorithmica/algorithmica31.html#HofriS01,https://doi.org/10.1007/s00453-001-0057-z +Alejandro López-Ortiz,Guest Editorial: Special Issue on Latin American Theoretical Informatics Symposium (LATIN).,2012,63,Algorithmica,3,db/journals/algorithmica/algorithmica63.html#Lopez-Ortiz12,https://doi.org/10.1007/s00453-011-9597-z +Rasmus Pagh,Cache-Oblivious Hashing.,2014,69,Algorithmica,4,db/journals/algorithmica/algorithmica69.html#PaghWYZ14,https://doi.org/10.1007/s00453-013-9763-6 +Harish Chandran,Tile Complexity of Approximate Squares.,2013,66,Algorithmica,1,db/journals/algorithmica/algorithmica66.html#ChandranGR13,https://doi.org/10.1007/s00453-012-9620-z +Adrian Kosowski,k-Chordal Graphs: From Cops and Robber to Compact Routing via Treewidth.,2015,72,Algorithmica,3,db/journals/algorithmica/algorithmica72.html#Kosowski0NS15,https://doi.org/10.1007/s00453-014-9871-y +Michael R. Fellows,The Complexity of Induced Minors and Related Problems.,1995,13,Algorithmica,3,db/journals/algorithmica/algorithmica13.html#FellowsKMP95,https://doi.org/10.1007/BF01190507 +Monaldo Mastrolilli,The Feedback Arc Set Problem with Triangle Inequality Is a Vertex Cover Problem.,2014,70,Algorithmica,2,db/journals/algorithmica/algorithmica70.html#Mastrolilli14,https://doi.org/10.1007/s00453-013-9811-2 +Sariel Har-Peled,Robust Proximity Search for Balls Using Sublinear Space.,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#Har-PeledK18,https://doi.org/10.1007/s00453-016-0254-4 +Andreas Bley,An Integer Programming Algorithm for Routing Optimization in IP Networks.,2011,60,Algorithmica,1,db/journals/algorithmica/algorithmica60.html#Bley11,https://doi.org/10.1007/s00453-009-9381-5 +Michael T. Goodrich,Sweep Methods for Parallel Computational Geometry.,1996,15,Algorithmica,2,db/journals/algorithmica/algorithmica15.html#GoodrichGB96,https://doi.org/10.1007/BF01941685 +Neeldhara Misra,The Kernelization Complexity of Connected Domination in Graphs with (no) Small Cycles.,2014,68,Algorithmica,2,db/journals/algorithmica/algorithmica68.html#MisraPRS14,https://doi.org/10.1007/s00453-012-9681-z +Ruy Luiz Milidiú,Bounding the Inefficiency of Length-Restricted Prefix Codes.,2001,31,Algorithmica,4,db/journals/algorithmica/algorithmica31.html#MilidiuL01,https://doi.org/10.1007/s00453-001-0060-4 +Mark de Berg,Realistic Input Models for Geometric Algorithms.,2002,34,Algorithmica,1,db/journals/algorithmica/algorithmica34.html#BergSVK02,https://doi.org/10.1007/s00453-002-0961-x +Joan Boyar,Online Bin Packing with Advice.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#BoyarKLL16,https://doi.org/10.1007/s00453-014-9955-8 +Giorgos Christodoulou,Improving the Price of Anarchy for Selfish Routing via Coordination Mechanisms.,2014,69,Algorithmica,3,db/journals/algorithmica/algorithmica69.html#ChristodoulouMP14,https://doi.org/10.1007/s00453-013-9753-8 +Reut Levi,Local Computation Algorithms for Graphs of Non-constant Degrees.,2017,77,Algorithmica,4,db/journals/algorithmica/algorithmica77.html#LeviRY17,https://doi.org/10.1007/s00453-016-0126-y +Alice Paul,Simple Approximation Algorithms for Balanced MAX 2SAT.,2018,80,Algorithmica,3,db/journals/algorithmica/algorithmica80.html#PaulPW18,https://doi.org/10.1007/s00453-017-0312-6 +Mira Gonen,On the Benefits of Adaptivity in Property Testing of Dense Graphs.,2010,58,Algorithmica,4,db/journals/algorithmica/algorithmica58.html#GonenR10,https://doi.org/10.1007/s00453-008-9237-4 +Chandra Chekuri,Foreword.,2009,55,Algorithmica,1,db/journals/algorithmica/algorithmica55.html#ChekuriT09,https://doi.org/10.1007/s00453-009-9324-1 +Daniela Tulone,On the Feasibility of Time Estimation under Isolation Conditions in Wireless Sensor Networks.,2007,49,Algorithmica,4,db/journals/algorithmica/algorithmica49.html#Tulone07,https://doi.org/10.1007/s00453-007-9099-1 +Bruce Randall Donald,Provably Good Approximation Algorithms for Optimal Kinodynamic Planning for Cartesian Robots and Open-Chain Manipulators.,1995,14,Algorithmica,6,db/journals/algorithmica/algorithmica14.html#DonaldX95a,https://doi.org/10.1007/BF01586637 +Stefan Nilsson,An Experimental Study of Compression Methods for Dynamic Tries.,2002,33,Algorithmica,1,db/journals/algorithmica/algorithmica33.html#NilssonT02,https://doi.org/10.1007/s00453-001-0102-y +Bernard Chazelle,Lines in Space: Combinatorics and Algorithms.,1996,15,Algorithmica,5,db/journals/algorithmica/algorithmica15.html#ChazelleEGSS96,https://doi.org/10.1007/BF01955043 +Hadas Shachnai,The List Update Problem: Improved Bounds for the Counter Scheme.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#ShachnaiH98,https://doi.org/10.1007/PL00009245 +Jurek Czyzowicz,When Patrolmen Become Corrupted: Monitoring a Graph Using Faulty Mobile Robots.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#CzyzowiczGKKKT17,https://doi.org/10.1007/s00453-016-0233-9 +Yu Li,Improved Approximation Algorithms for the Facility Location Problems with Linear/Submodular Penalties.,2015,73,Algorithmica,2,db/journals/algorithmica/algorithmica73.html#LiDXX15,https://doi.org/10.1007/s00453-014-9911-7 +A. Karim Abu-Affash,The Euclidean Bottleneck Full Steiner Tree Problem.,2015,71,Algorithmica,1,db/journals/algorithmica/algorithmica71.html#Abu-Affash15,https://doi.org/10.1007/s00453-013-9788-x +Enrico Angelelli,Semi-On-line Scheduling on Two Parallel Processors with an Upper Bound on the Items.,2003,37,Algorithmica,4,db/journals/algorithmica/algorithmica37.html#AngelelliST03,https://doi.org/10.1007/s00453-003-1037-2 +Richard Cole 0001,Suffix Trays and Suffix Trists: Structures for Faster Text Indexing.,2015,72,Algorithmica,2,db/journals/algorithmica/algorithmica72.html#0001KL15,https://doi.org/10.1007/s00453-013-9860-6 +Jie Chi,CONQUEST: A Coarse-Grained Algorithm for Constructing Summaries of Distributed Discrete Datasets.,2006,45,Algorithmica,3,db/journals/algorithmica/algorithmica45.html#ChiKG06,https://doi.org/10.1007/s00453-006-1218-x +Leah Epstein,Variable Sized Online Interval Coloring with Bandwidth.,2009,53,Algorithmica,3,db/journals/algorithmica/algorithmica53.html#EpsteinEL09,https://doi.org/10.1007/s00453-007-9071-0 +Jeff Edmonds,Multicast Pull Scheduling: When Fairness Is Fine.,2003,36,Algorithmica,3,db/journals/algorithmica/algorithmica36.html#EdmondsP03,https://doi.org/10.1007/s00453-003-1018-5 +Frank K. H. A. Dehne,Efficient External Memory Algorithms by Simulating Coarse-Grained Parallel Algorithms.,2003,36,Algorithmica,2,db/journals/algorithmica/algorithmica36.html#DehneDH03,https://doi.org/10.1007/s00453-002-1009-y +Markus Bläser,Approximating Maximum Weight Cycle Covers in Directed Graphs with Weights Zero and One.,2005,42,Algorithmica,2,db/journals/algorithmica/algorithmica42.html#BlaserM05,https://doi.org/10.1007/s00453-004-1131-0 +Colm ó'Dúnlaing,Motion Planning with Inertial Constraints.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#ODunlaing87,https://doi.org/10.1007/BF01840370 +Israel Cidon,Dynamic Detection of Subgraphs in Computer Networks.,1990,5,Algorithmica,2,db/journals/algorithmica/algorithmica5.html#CidonG90,https://doi.org/10.1007/BF01840389 +Kuo-Hua Kao,A Quadratic Algorithm for Finding Next-to-Shortest Paths in Graphs.,2011,61,Algorithmica,2,db/journals/algorithmica/algorithmica61.html#KaoCWJ11,https://doi.org/10.1007/s00453-010-9402-4 +Ahmed Helmi 0001,"Analysis of the ""Hiring Above the Median"" Selection Strategy for the Hiring Problem.",2013,66,Algorithmica,4,db/journals/algorithmica/algorithmica66.html#HelmiP13,https://doi.org/10.1007/s00453-012-9727-2 +Ching-Chi Lin,A Linear-Time Algorithm for Finding Locally Connected Spanning Trees on Circular-Arc Graphs.,2013,66,Algorithmica,2,db/journals/algorithmica/algorithmica66.html#LinCC13,https://doi.org/10.1007/s00453-012-9641-7 +Michael R. Fellows,Well Quasi Orders in Subclasses of Bounded Treewidth Graphs and Their Algorithmic Applications.,2012,64,Algorithmica,1,db/journals/algorithmica/algorithmica64.html#FellowsHR12,https://doi.org/10.1007/s00453-011-9545-y +Shahram Ghandeharizadeh,The Subset Assignment Problem for Data Placement in Caches.,2018,80,Algorithmica,7,db/journals/algorithmica/algorithmica80.html#Ghandeharizadeh18,https://doi.org/10.1007/s00453-017-0403-4 +Naoki Abe,Reinforcement Learning with Immediate Rewards and Linear Hypotheses.,2003,37,Algorithmica,4,db/journals/algorithmica/algorithmica37.html#AbeBL03,https://doi.org/10.1007/s00453-003-1038-1 +Wenceslas Fernandez de la Vega,Average-Case Analysis of the Merging Algorithm of Hwang and Lin.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#VegaFS98,https://doi.org/10.1007/PL00009235 +G. Sajith,Optimal Sublogarithmic Time Parallel Algorithms on Rooted Forests.,2000,27,Algorithmica,2,db/journals/algorithmica/algorithmica27.html#SajithS00,https://doi.org/10.1007/s004530010012 +Sheung-Hung Poon,Labeling Points with Weights.,2004,38,Algorithmica,2,db/journals/algorithmica/algorithmica38.html#PoonSSUW03,https://doi.org/10.1007/s00453-003-1063-0 +Dimitris Fotakis,Combinatorial Auctions Without Money.,2017,77,Algorithmica,3,db/journals/algorithmica/algorithmica77.html#FotakisKV17,https://doi.org/10.1007/s00453-015-0105-8 +Vincenzo Auletta,Logit Dynamics with Concurrent Updates for Local Interaction Potential Games.,2015,73,Algorithmica,3,db/journals/algorithmica/algorithmica73.html#AulettaFPPP15,https://doi.org/10.1007/s00453-014-9959-4 +Yasushi Kawase,Optimal Composition Ordering Problems for Piecewise Linear Functions.,2018,80,Algorithmica,7,db/journals/algorithmica/algorithmica80.html#KawaseMS18,https://doi.org/10.1007/s00453-017-0397-y +Zhipeng Cai,Computing and Combinatorics.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#CaiZ16,https://doi.org/10.1007/s00453-016-0176-1 +Sumit Ganguly,Hierarchical Sampling from Sketches: Estimating Functions over Data Streams.,2009,53,Algorithmica,4,db/journals/algorithmica/algorithmica53.html#GangulyB09,https://doi.org/10.1007/s00453-008-9260-5 +Ronitt Rubinfeld,Designing Checkers for Programs that Run in Parallel.,1996,15,Algorithmica,4,db/journals/algorithmica/algorithmica15.html#Rubinfeld96,https://doi.org/10.1007/BF01961540 +Luc Devroye,A Note on Point Location in Delaunay Triangulations of Random Points.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#DevroyeMZ98,https://doi.org/10.1007/PL00009234 +Carola Doerr,OneMax in Black-Box Models with Several Restrictions.,2017,78,Algorithmica,2,db/journals/algorithmica/algorithmica78.html#DoerrL17,https://doi.org/10.1007/s00453-016-0168-1 +Marek Karpinski,A Fast Algorithm for Adaptive Prefix Coding.,2009,55,Algorithmica,1,db/journals/algorithmica/algorithmica55.html#KarpinskiN09,https://doi.org/10.1007/s00453-007-9140-4 +Eun Jung Kim 0002,An FPT 2-Approximation for Tree-Cut Decomposition.,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#KimOPST18,https://doi.org/10.1007/s00453-016-0245-5 +Clyde L. Monma,Computing Euclidean Maximum Spanning Trees.,1990,5,Algorithmica,3,db/journals/algorithmica/algorithmica5.html#MonmaPSY90,https://doi.org/10.1007/BF01840396 +Michael R. Fellows,Faster Fixed-Parameter Tractable Algorithms for Matching and Packing Problems.,2008,52,Algorithmica,2,db/journals/algorithmica/algorithmica52.html#FellowsKNRRSTW08,https://doi.org/10.1007/s00453-007-9146-y +Petra Berenbrink,Communication Complexity of Quasirandom Rumor Spreading.,2015,72,Algorithmica,2,db/journals/algorithmica/algorithmica72.html#BerenbrinkES15,https://doi.org/10.1007/s00453-013-9861-5 +Radu Mihaescu,Why Neighbor-Joining Works.,2009,54,Algorithmica,1,db/journals/algorithmica/algorithmica54.html#MihaescuLP09,https://doi.org/10.1007/s00453-007-9116-4 +Jesper Jansson,Linked Dynamic Tries with Applications to LZ-Compression in Sublinear Time and Space.,2015,71,Algorithmica,4,db/journals/algorithmica/algorithmica71.html#JanssonSS15,https://doi.org/10.1007/s00453-013-9836-6 +Shou-Hsuan Stephen Huang,A New Combinatorial Approach to Optimal Embeddings of Rectangles.,1996,16,Algorithmica,2,db/journals/algorithmica/algorithmica16.html#HuangLV96,https://doi.org/10.1007/BF01940645 +Robert Beals,Equivalence of Binary and Ternary Algebraic Decision Trees.,1997,18,Algorithmica,4,db/journals/algorithmica/algorithmica18.html#Beals97,https://doi.org/10.1007/PL00009169 +Micha Streppel,Approximate Range Searching in External Memory.,2011,59,Algorithmica,2,db/journals/algorithmica/algorithmica59.html#StreppelY11,https://doi.org/10.1007/s00453-009-9297-0 +Satoru Iwata 0001,Computing the Maximum Degree of Minors in Mixed Polynomial Matrices via Combinatorial Relaxation.,2013,66,Algorithmica,2,db/journals/algorithmica/algorithmica66.html#IwataT13,https://doi.org/10.1007/s00453-012-9640-8 +Piotr Berman,Exact and Approximation Algorithms for Geometric and Capacitated Set Cover Problems.,2012,64,Algorithmica,2,db/journals/algorithmica/algorithmica64.html#BermanKL12,https://doi.org/10.1007/s00453-011-9591-5 +Pinar Heggernes,On the Parameterized Complexity of Finding Separators with Non-Hereditary Properties.,2015,72,Algorithmica,3,db/journals/algorithmica/algorithmica72.html#HeggernesHMMV15,https://doi.org/10.1007/s00453-014-9868-6 +Adrian Dumitrescu,Piercing Translates and Homothets of a Convex Body.,2011,61,Algorithmica,1,db/journals/algorithmica/algorithmica61.html#DumitrescuJ11a,https://doi.org/10.1007/s00453-010-9410-4 +John E. Hopcroft,A Paradigm for Robust Geometric Algorithms.,1992,7,Algorithmica,4,db/journals/algorithmica/algorithmica7.html#HopcroftK92,https://doi.org/10.1007/BF01758769 +Danny Z. Chen,Parallel Algorithms for Partitioning Sorted Sets and Related Problems.,2000,28,Algorithmica,2,db/journals/algorithmica/algorithmica28.html#ChenCWK00,https://doi.org/10.1007/s004530010037 +Nancy M. Amato,A Time-Optimal Parallel Algorithm for Three-Dimensional Convex Hulls.,1995,14,Algorithmica,2,db/journals/algorithmica/algorithmica14.html#AmatoP95,https://doi.org/10.1007/BF01293667 +Esther M. Arkin,Geometric Knapsack Problems.,1993,10,Algorithmica,5,db/journals/algorithmica/algorithmica10.html#ArkinKM93,https://doi.org/10.1007/BF01769706 +Ding-Zhu Du,On Heuristics for Minimum Length Rectilinear Partitions.,1990,5,Algorithmica,1,db/journals/algorithmica/algorithmica5.html#DuZ90,https://doi.org/10.1007/BF01840380 +Daniel Graf 0001,How to Sort by Walking and Swapping on Paths and Trees.,2017,78,Algorithmica,4,db/journals/algorithmica/algorithmica78.html#Graf17,https://doi.org/10.1007/s00453-017-0282-8 +Paola Bertolazzi,Quasi-Upward Planarity.,2002,32,Algorithmica,3,db/journals/algorithmica/algorithmica32.html#BertolazziBD02,https://doi.org/10.1007/s00453-001-0083-x +Martin L. Brady,Optimal Multilayer Channel Routing with Overlap.,1991,6,Algorithmica,1,db/journals/algorithmica/algorithmica6.html#BradyB91,https://doi.org/10.1007/BF01759036 +Nir Naaman,Average Case Analysis of Bounded Space Bin Packing Algorithms.,2008,50,Algorithmica,1,db/journals/algorithmica/algorithmica50.html#NaamanR08,https://doi.org/10.1007/s00453-007-9073-y +Petko Yanev,Algorithms for Computing the QR Decomposition of a Set of Matrices with Common Columns.,2004,39,Algorithmica,1,db/journals/algorithmica/algorithmica39.html#YanevFK04,https://doi.org/10.1007/s00453-003-1080-z +,Editors' Note: ISAAC 2009 Special Section.,2011,61,Algorithmica,4,db/journals/algorithmica/algorithmica61.html#X11,https://doi.org/10.1007/s00453-011-9577-3 +Uriel Feige,Approximating Min Sum Set Cover.,2004,40,Algorithmica,4,db/journals/algorithmica/algorithmica40.html#FeigeLT04,https://doi.org/10.1007/s00453-004-1110-5 +Patrick Traxler,The Relative Exponential Time Complexity of Approximate Counting Satisfying Assignments.,2016,75,Algorithmica,2,db/journals/algorithmica/algorithmica75.html#Traxler16,https://doi.org/10.1007/s00453-016-0134-y +Fedor V. Fomin,Computing Tree-Depth Faster Than 2n.,2015,73,Algorithmica,1,db/journals/algorithmica/algorithmica73.html#FominGP15,https://doi.org/10.1007/s00453-014-9914-4 +Robert E. Webber,Linear-Time Border-Tracing Algorithms for Quadtrees.,1992,8,Algorithmica,1,db/journals/algorithmica/algorithmica8.html#WebberS92,https://doi.org/10.1007/BF01758835 +Gerth Stølting Brodal,Optimal Solutions for the Temporal Precedence Problem.,2002,33,Algorithmica,4,db/journals/algorithmica/algorithmica33.html#BrodalMSTT02,https://doi.org/10.1007/s00453-002-0935-z +Leah Epstein,Vertex Cover Meets Scheduling.,2016,74,Algorithmica,3,db/journals/algorithmica/algorithmica74.html#EpsteinLW16,https://doi.org/10.1007/s00453-015-9992-y +Prasad Chalasani,Approximate Option Pricing.,1999,25,Algorithmica,1,db/journals/algorithmica/algorithmica25.html#ChalasaniJS99,https://doi.org/10.1007/PL00009280 +Tomás Ebenlendr,Preemptive Online Scheduling: Optimal Algorithms for All Speeds.,2009,53,Algorithmica,4,db/journals/algorithmica/algorithmica53.html#EbenlendrJS09,https://doi.org/10.1007/s00453-008-9235-6 +Leonidas J. Guibas,Randomized Incremental Construction of Delaunay and Voronoi Diagrams.,1992,7,Algorithmica,4,db/journals/algorithmica/algorithmica7.html#GuibasKS92,https://doi.org/10.1007/BF01758770 +David P. Dobkin,Computational Geometry in a Curved World.,1990,5,Algorithmica,3,db/journals/algorithmica/algorithmica5.html#DobkinS90,https://doi.org/10.1007/BF01840397 +Iyad A. Kanj,The Compatibility of Binary Characters on Phylogenetic Networks: Complexity and Parameterized Algorithms.,2008,51,Algorithmica,2,db/journals/algorithmica/algorithmica51.html#KanjNX08,https://doi.org/10.1007/s00453-007-9046-1 +Bruno Codenotti,The Role of Arithmetic in Fast Parallel Matrix Inversion.,2001,30,Algorithmica,4,db/journals/algorithmica/algorithmica30.html#CodenottiLP01,https://doi.org/10.1007/s00453-001-0033-7 +David Doty,Negative Interactions in Irreversible Self-assembly.,2013,66,Algorithmica,1,db/journals/algorithmica/algorithmica66.html#DotyKM13,https://doi.org/10.1007/s00453-012-9631-9 +Angelo Fanelli 0001,On the Convergence of Multicast Games in Directed Networks.,2010,57,Algorithmica,2,db/journals/algorithmica/algorithmica57.html#FanelliFM10,https://doi.org/10.1007/s00453-008-9212-0 +Danny Z. Chen,Matroid and Knapsack Center Problems.,2016,75,Algorithmica,1,db/journals/algorithmica/algorithmica75.html#ChenLLW16,https://doi.org/10.1007/s00453-015-0010-1 +Dogan Corus,On Easiest Functions for Mutation Operators in Bio-Inspired Optimisation.,2017,78,Algorithmica,2,db/journals/algorithmica/algorithmica78.html#CorusHJOSZ17,https://doi.org/10.1007/s00453-016-0201-4 +Li-Pu Yeh,Efficient Algorithms for the Problems of Enumerating Cuts by Non-decreasing Weights.,2010,56,Algorithmica,3,db/journals/algorithmica/algorithmica56.html#YehWS10,https://doi.org/10.1007/s00453-009-9284-5 +Sanguthevar Rajasekaran,Optimal Routing Algorithms for Mesh-Connected Processor Arrays.,1992,8,Algorithmica,1,db/journals/algorithmica/algorithmica8.html#RajasekaranT92,https://doi.org/10.1007/BF01758834 +Charles E. Leiserson,Retiming Synchronous Circuitry.,1991,6,Algorithmica,1,db/journals/algorithmica/algorithmica6.html#LeisersonS91,https://doi.org/10.1007/BF01759032 +Mohammad Ali Abam,Out-of-Order Event Processing in Kinetic Data Structures.,2011,60,Algorithmica,2,db/journals/algorithmica/algorithmica60.html#AbamABY11,https://doi.org/10.1007/s00453-009-9335-y +Hajo Broersma,Planar Graph Coloring Avoiding Monochromatic Subgraphs: Trees and Paths Make It Difficult.,2006,44,Algorithmica,4,db/journals/algorithmica/algorithmica44.html#BroersmaFKW06,https://doi.org/10.1007/s00453-005-1176-8 +Bernard Chazelle,Algorithms for Bichromatic Line-Segment Problems Polyhedral Terrains.,1994,11,Algorithmica,2,db/journals/algorithmica/algorithmica11.html#ChazelleEGS94,https://doi.org/10.1007/BF01182771 +Philip Bille,Substring Range Reporting.,2014,69,Algorithmica,2,db/journals/algorithmica/algorithmica69.html#BilleG14,https://doi.org/10.1007/s00453-012-9733-4 +Jiong Guo,Editing Graphs into Disjoint Unions of Dense Clusters.,2011,61,Algorithmica,4,db/journals/algorithmica/algorithmica61.html#GuoKKU11,https://doi.org/10.1007/s00453-011-9487-4 +Laurent Alonso,A Linear-Time Algorithm for the Generation of Trees.,1997,17,Algorithmica,2,db/journals/algorithmica/algorithmica17.html#AlonsoRS97,https://doi.org/10.1007/BF02522824 +Donglei Du,Editorial: Special Issue on Computing and Combinatorics.,2018,80,Algorithmica,5,db/journals/algorithmica/algorithmica80.html#DuX18,https://doi.org/10.1007/s00453-018-0422-9 +Yang Cai,Nonpreemptive Scheduling of Periodic Tasks in Uni- and Multiprocessor Systems.,1996,15,Algorithmica,6,db/journals/algorithmica/algorithmica15.html#CaiK96,https://doi.org/10.1007/BF01940882 +Hiroshi Fujiwara,On the Huffman and Alphabetic Tree Problem with General Cost Functions.,2014,69,Algorithmica,3,db/journals/algorithmica/algorithmica69.html#FujiwaraJ14,https://doi.org/10.1007/s00453-013-9755-6 +Xin He,An Efficient Parallel Algorithm for Finding Rectangular Duals of Plane Triangular Graphs.,1995,13,Algorithmica,6,db/journals/algorithmica/algorithmica13.html#He95,https://doi.org/10.1007/BF01189069 +David G. Harris,Fast Sequential Importance Sampling to Estimate the Graph Reliability Polynomial.,2014,68,Algorithmica,4,db/journals/algorithmica/algorithmica68.html#HarrisSB14,https://doi.org/10.1007/s00453-012-9703-x +Daniel Binkele-Raible,Exact and Parameterized Algorithms for Max Internal Spanning Tree.,2013,65,Algorithmica,1,db/journals/algorithmica/algorithmica65.html#Binkele-RaibleFGL13,https://doi.org/10.1007/s00453-011-9575-5 +Mark de Berg,Efficient Ray Shooting and Hidden Surface Removal.,1994,12,Algorithmica,1,db/journals/algorithmica/algorithmica12.html#BergHOSK94,https://doi.org/10.1007/BF01377182 +Feng Gao 0002,Finding Extrema with Unary Predicates.,1993,9,Algorithmica,6,db/journals/algorithmica/algorithmica9.html#GaoGKLS93,https://doi.org/10.1007/BF01190157 +Ran El-Yaniv,Competitive Optimal On-Line Leasing.,1999,25,Algorithmica,1,db/journals/algorithmica/algorithmica25.html#El-YanivKL99,https://doi.org/10.1007/PL00009279 +Fabrizio Frati,Augmenting Graphs to Minimize the Diameter.,2015,72,Algorithmica,4,db/journals/algorithmica/algorithmica72.html#FratiGGM15,https://doi.org/10.1007/s00453-014-9886-4 +Fedor V. Fomin,On the Minimum Feedback Vertex Set Problem: Exact and Enumeration Algorithms.,2008,52,Algorithmica,2,db/journals/algorithmica/algorithmica52.html#FominGPR08,https://doi.org/10.1007/s00453-007-9152-0 +Alexander Tiskin,Fast Distance Multiplication of Unit-Monge Matrices.,2015,71,Algorithmica,4,db/journals/algorithmica/algorithmica71.html#Tiskin15,https://doi.org/10.1007/s00453-013-9830-z +Ulrich Lauther,Space Efficient Algorithms for the Burrows-Wheeler Backtransformation.,2010,58,Algorithmica,2,db/journals/algorithmica/algorithmica58.html#LautherL10,https://doi.org/10.1007/s00453-008-9269-9 +Anders Dessmark,Deterministic Rendezvous in Graphs.,2006,46,Algorithmica,1,db/journals/algorithmica/algorithmica46.html#DessmarkFKP06,https://doi.org/10.1007/s00453-006-0074-2 +Dan Gusfield,A Faster Parametric Minimum-Cut Algorithm.,1994,11,Algorithmica,3,db/journals/algorithmica/algorithmica11.html#GusfieldT94,https://doi.org/10.1007/BF01240737 +Mauricio Ayala-Rincón,A Linear Time Lower Bound on McCreight and General Updating Algorithms for Suffix Trees.,2003,37,Algorithmica,3,db/journals/algorithmica/algorithmica37.html#Ayala-RinconC03,https://doi.org/10.1007/s00453-003-1034-5 +Lisa Hellerstein,Max-Throughput for (Conservative) k-of-n Testing.,2017,77,Algorithmica,2,db/journals/algorithmica/algorithmica77.html#HellersteinOS17,https://doi.org/10.1007/s00453-015-0089-4 +Elena Grigorieva,On the Fastest Vickrey Algorithm.,2010,58,Algorithmica,3,db/journals/algorithmica/algorithmica58.html#GrigorievaHMV10,https://doi.org/10.1007/s00453-009-9285-4 +David Eppstein,Asymptotic Speed-Ups in Constructive Solid Geometry.,1995,13,Algorithmica,5,db/journals/algorithmica/algorithmica13.html#Eppstein95,https://doi.org/10.1007/BF01190849 +Andreas Bärtschi,Erratum to: Conflict-Free Chromatic Art Gallery Coverage.,2014,68,Algorithmica,1,db/journals/algorithmica/algorithmica68.html#BartschiS14a,https://doi.org/10.1007/s00453-013-9852-6 +Elad Haramaty,Deterministic Compression with Uncertain Priors.,2016,76,Algorithmica,3,db/journals/algorithmica/algorithmica76.html#HaramatyS16,https://doi.org/10.1007/s00453-015-0107-6 +Philippe Jacquet,Average Profile of the Lempel-Ziv Parsing Scheme for a Markovian Source.,2001,31,Algorithmica,3,db/journals/algorithmica/algorithmica31.html#JacquetST01,https://doi.org/10.1007/s00453-001-0053-3 +Anne Condon,Upper and Lower Bounds for Selection in the Mesh.,1998,20,Algorithmica,1,db/journals/algorithmica/algorithmica20.html#CondonN98,https://doi.org/10.1007/PL00009184 +Yin Li,Computing the Cover Array in Linear Time.,2002,32,Algorithmica,1,db/journals/algorithmica/algorithmica32.html#LiS02,https://doi.org/10.1007/s00453-001-0062-2 +Victor A. Campos,Edge-b-Coloring Trees.,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#CamposS18,https://doi.org/10.1007/s00453-016-0240-x +Ning Chen,Improved Approximation Algorithms for the Spanning Star Forest Problem.,2013,65,Algorithmica,3,db/journals/algorithmica/algorithmica65.html#ChenENRRS13,https://doi.org/10.1007/s00453-011-9607-1 +Hadas Shachnai,On Two Class-Constrained Versions of the Multiple Knapsack Problem.,2001,29,Algorithmica,3,db/journals/algorithmica/algorithmica29.html#ShachnaiT01,https://doi.org/10.1007/s004530010057 +Vladimir Yanovski,A Distributed Ant Algorithm for Efficiently Patrolling a Network.,2003,37,Algorithmica,3,db/journals/algorithmica/algorithmica37.html#YanovskiWB03,https://doi.org/10.1007/s00453-003-1030-9 +Stefan Felsner,Ham-Sandwich Cuts for Abstract Order Types.,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#FelsnerP18,https://doi.org/10.1007/s00453-016-0246-4 +Vincenzo Auletta,Convergence to Equilibrium of Logit Dynamics for Strategic Games.,2016,76,Algorithmica,1,db/journals/algorithmica/algorithmica76.html#AulettaFPPP16,https://doi.org/10.1007/s00453-015-0025-7 +Philippe Flajolet,Analytic Variations on Quadtrees.,1993,10,Algorithmica,6,db/journals/algorithmica/algorithmica10.html#FlajoletGPR93,https://doi.org/10.1007/BF01891833 +Susanne Albers,Speed Scaling on Parallel Processors.,2014,68,Algorithmica,2,db/journals/algorithmica/algorithmica68.html#AlbersMS14,https://doi.org/10.1007/s00453-012-9678-7 +Leah Epstein,The (Weighted) Metric Dimension of Graphs: Hard and Easy Cases.,2015,72,Algorithmica,4,db/journals/algorithmica/algorithmica72.html#EpsteinLW15,https://doi.org/10.1007/s00453-014-9896-2 +Foto N. Afrati,The Synthesis of Communication Protocols.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#AfratiPP88,https://doi.org/10.1007/BF01762126 +Bart M. P. Jansen,On Sparsification for Computing Treewidth.,2015,71,Algorithmica,3,db/journals/algorithmica/algorithmica71.html#Jansen15,https://doi.org/10.1007/s00453-014-9924-2 +Heather Booth,A Linear Algorithm for Analysis of Minimum Spanning and Shortest-Path Trees of Planar Graphs.,1994,11,Algorithmica,4,db/journals/algorithmica/algorithmica11.html#BoothW94,https://doi.org/10.1007/BF01187017 +Ivan Bliznets,Largest Chordal and Interval Subgraphs Faster than $$2^n$$ 2 n.,2016,76,Algorithmica,2,db/journals/algorithmica/algorithmica76.html#BliznetsFPV16,https://doi.org/10.1007/s00453-015-0054-2 +Giuseppe Di Battista,On-Line Maintenance of Triconnected Components with SPQR-Trees.,1996,15,Algorithmica,4,db/journals/algorithmica/algorithmica15.html#BattistaT96,https://doi.org/10.1007/BF01961541 +Robert J. Vanderbei,A Modification of Karmarkar's Linear Programming Algorithm.,1986,1,Algorithmica,4,db/journals/algorithmica/algorithmica1.html#VanderbeiMF86,https://doi.org/10.1007/BF01840454 +Samuel Fiorini,Approximability of Clique Transversal in Perfect Graphs.,2018,80,Algorithmica,8,db/journals/algorithmica/algorithmica80.html#Fiorini0N018,https://doi.org/10.1007/s00453-017-0315-3 +Armando Castañeda,An Equivariance Theorem with Applications to Renaming.,2014,70,Algorithmica,2,db/journals/algorithmica/algorithmica70.html#CastanedaHR14,https://doi.org/10.1007/s00453-013-9855-3 +Philippe Flajolet,Analytic Variations on the Airy Distribution.,2001,31,Algorithmica,3,db/journals/algorithmica/algorithmica31.html#FlajoletL01,https://doi.org/10.1007/s00453-001-0056-0 +Ulrich Eckhardt,Polygonal Representations of Digital Sets.,2004,38,Algorithmica,1,db/journals/algorithmica/algorithmica38.html#EckhardtR03,https://doi.org/10.1007/s00453-003-1040-7 +Yusuke Kobayashi 0001,Finding a Shortest Non-zero Path in Group-Labeled Graphs via Permanent Computation.,2017,77,Algorithmica,4,db/journals/algorithmica/algorithmica77.html#KobayashiT17,https://doi.org/10.1007/s00453-016-0142-y +Kannan Balakrishnan,Computing median and antimedian sets in median graphs.,2010,57,Algorithmica,2,db/journals/algorithmica/algorithmica57.html#BalakrishnanBCKKS10,https://doi.org/10.1007/s00453-008-9200-4 +Alberto Apostolico,Parallel Construction of a Suffix Tree with Applications.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#ApostolicoILSV88,https://doi.org/10.1007/BF01762122 +Andreas Björklund,Constrained Multilinear Detection and Generalized Graph Motifs.,2016,74,Algorithmica,2,db/journals/algorithmica/algorithmica74.html#BjorklundKK16,https://doi.org/10.1007/s00453-015-9981-1 +Hanna Sumita,Parameterized Complexity of Sparse Linear Complementarity Problems.,2017,79,Algorithmica,1,db/journals/algorithmica/algorithmica79.html#SumitaKM17,https://doi.org/10.1007/s00453-016-0229-5 +Leah Epstein,Online Scheduling of Jobs with Fixed Start Times on Related Machines.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#EpsteinJSS16,https://doi.org/10.1007/s00453-014-9940-2 +Noga Alon,Algorithmic Aspects of Acyclic Edge Colorings.,2002,32,Algorithmica,4,db/journals/algorithmica/algorithmica32.html#AlonZ02,https://doi.org/10.1007/s00453-001-0093-8 +Kaizhong Zhang,A Constrained Edit Distance Between Unordered Labeled Trees.,1996,15,Algorithmica,3,db/journals/algorithmica/algorithmica15.html#Zhang96,https://doi.org/10.1007/BF01975866 +Sergey Bereg,On Covering Problems of Rado.,2010,57,Algorithmica,3,db/journals/algorithmica/algorithmica57.html#BeregDJ10,https://doi.org/10.1007/s00453-009-9298-z +Cees Duin,A Branch-Checking Algorithm for All-Pairs Shortest Paths.,2005,41,Algorithmica,2,db/journals/algorithmica/algorithmica41.html#Duin04,https://doi.org/10.1007/s00453-004-1122-1 +Lukasz Kowalik,35/44-approximation for Asymmetric Maximum TSP with Triangle Inequality.,2011,59,Algorithmica,2,db/journals/algorithmica/algorithmica59.html#KowalikM11,https://doi.org/10.1007/s00453-009-9306-3 +Susanne Albers,A Study of Integrated Document and Connection Caching in the WWW.,2007,47,Algorithmica,3,db/journals/algorithmica/algorithmica47.html#AlbersS07,https://doi.org/10.1007/s00453-006-0174-9 +Myungho Lee,Parallel Implementation of a Class of Adaptive Signal Processing Applications.,2001,30,Algorithmica,4,db/journals/algorithmica/algorithmica30.html#LeeLP01,https://doi.org/10.1007/s00453-001-0031-9 +Edith Cohen,Exploiting Regularities in Web Traffic Patterns for Cache Replacement.,2002,33,Algorithmica,3,db/journals/algorithmica/algorithmica33.html#CohenK02a,https://doi.org/10.1007/s00453-001-0121-8 +Tatsuie Tsukiji,A Limit Law for Outputs in Random Recursive Circuits.,2001,31,Algorithmica,3,db/journals/algorithmica/algorithmica31.html#TsukijiM01,https://doi.org/10.1007/s00453-001-0044-4 +Olawale Hassan,On the Ordered List Subgraph Embedding Problems.,2016,74,Algorithmica,3,db/journals/algorithmica/algorithmica74.html#HassanKLP16,https://doi.org/10.1007/s00453-015-9980-2 +Daniel Bienstock,On the Complexity of Embedding Planar Graphs To Minimize Certain Distance Measures.,1990,5,Algorithmica,1,db/journals/algorithmica/algorithmica5.html#BienstockM90,https://doi.org/10.1007/BF01840379 +Danny Ziyi Chen,Optimal Point Movement for Covering Circular Regions.,2015,72,Algorithmica,2,db/journals/algorithmica/algorithmica72.html#ChenTWW15,https://doi.org/10.1007/s00453-013-9857-1 +Tomás Feder,Network Flow and 2-Satisfiability.,1994,11,Algorithmica,3,db/journals/algorithmica/algorithmica11.html#Feder94,https://doi.org/10.1007/BF01240738 +Jeffrey M. Jaffe,Maximal Selection in Tandem Networks with Symmetric Hearing Range.,1989,4,Algorithmica,3,db/journals/algorithmica/algorithmica4.html#JaffeR89,https://doi.org/10.1007/BF01553896 +Qin Huang,Partial Sorting Problem on Evolving Data.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#HuangLSZ17,https://doi.org/10.1007/s00453-017-0295-3 +Evangelos Kranakis,Guest Editorial: Special Issue on Theoretical Informatics.,2018,80,Algorithmica,3,db/journals/algorithmica/algorithmica80.html#KranakisN18,https://doi.org/10.1007/s00453-017-0394-1 +Louay Bazzi,The Solution of Linear Probabilistic Recurrence Relations.,2003,36,Algorithmica,1,db/journals/algorithmica/algorithmica36.html#BazziM03,https://doi.org/10.1007/s00453-002-1003-4 +Michael Etscheid,Linear Kernels and Linear-Time Algorithms for Finding Large Cuts.,2018,80,Algorithmica,9,db/journals/algorithmica/algorithmica80.html#EtscheidM18,https://doi.org/10.1007/s00453-017-0388-z +Youhei Akimoto,Theoretical Foundation for CMA-ES from Information Geometry Perspective.,2012,64,Algorithmica,4,db/journals/algorithmica/algorithmica64.html#AkimotoNOK12,https://doi.org/10.1007/s00453-011-9564-8 +Michael J. Spriggs,Computing a (1+epsilon)-Approximate Geometric Minimum-Diameter Spanning Tree.,2004,38,Algorithmica,4,db/journals/algorithmica/algorithmica38.html#SpriggsKBSS04,https://doi.org/10.1007/s00453-003-1056-z +Mikhail J. Atallah,Efficient Parallel Algorithms for Planar st-Graphs.,2003,35,Algorithmica,3,db/journals/algorithmica/algorithmica35.html#AtallahCD03,https://doi.org/10.1007/s00453-002-0995-0 +Kyle Klein,Pursuit Evasion on Polyhedral Surfaces.,2015,73,Algorithmica,4,db/journals/algorithmica/algorithmica73.html#KleinS15,https://doi.org/10.1007/s00453-015-9988-7 +Erik D. Demaine,Algorithmic Graph Minor Theory: Improved Grid Minor Bounds and Wagner's Contraction.,2009,54,Algorithmica,2,db/journals/algorithmica/algorithmica54.html#DemaineHK09,https://doi.org/10.1007/s00453-007-9138-y +Clyde P. Kruskal,Efficient Parallel Algorithms for Graph Problems.,1990,5,Algorithmica,1,db/journals/algorithmica/algorithmica5.html#KruskalRS90,https://doi.org/10.1007/BF01840376 +Gonzalo Navarro,Optimal Encodings for Range Majority Queries.,2016,74,Algorithmica,3,db/journals/algorithmica/algorithmica74.html#NavarroT16,https://doi.org/10.1007/s00453-015-9987-8 +Hsien-Kuei Hwang,Asymptotics of Divide-and-Conquer Recurrences: Batcher's Sorting Algorithm and a Minimum Euclidean Matching Heuristic.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#Hwang98,https://doi.org/10.1007/PL00009238 +N. S. Narayanaswamy,Obtaining Matrices with the Consecutive Ones Property by Row Deletions.,2015,71,Algorithmica,3,db/journals/algorithmica/algorithmica71.html#NarayanaswamyS15,https://doi.org/10.1007/s00453-014-9925-1 +Daniel Kane,A Short Implicant of a CNF Formula with Many Satisfying Assignments.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#KaneW16,https://doi.org/10.1007/s00453-016-0125-z +Thomas M. Keane,Building Large Phylogenetic Trees on Coarse-Grained Parallel Machines.,2006,45,Algorithmica,3,db/journals/algorithmica/algorithmica45.html#KeanePNTM06,https://doi.org/10.1007/s00453-006-1215-0 +Helmut Prodinger,A q-Analogue of the Path Length of Binary Search Trees.,2001,31,Algorithmica,3,db/journals/algorithmica/algorithmica31.html#Prodinger01,https://doi.org/10.1007/s00453-001-0058-y +Ioannis Caragiannis,Efficient Coordination Mechanisms for Unrelated Machine Scheduling.,2013,66,Algorithmica,3,db/journals/algorithmica/algorithmica66.html#Caragiannis13,https://doi.org/10.1007/s00453-012-9650-6 +Mamadou Moustapha Kanté,An FPT Algorithm and a Polynomial Kernel for Linear Rankwidth-1 Vertex Deletion.,2017,79,Algorithmica,1,db/journals/algorithmica/algorithmica79.html#KanteKKP17,https://doi.org/10.1007/s00453-016-0230-z +Arash Farzan,Compact Navigation and Distance Oracles for Graphs with Small Treewidth.,2014,69,Algorithmica,1,db/journals/algorithmica/algorithmica69.html#FarzanK14,https://doi.org/10.1007/s00453-012-9712-9 +Lars Arge,Foreword.,2009,55,Algorithmica,2,db/journals/algorithmica/algorithmica55.html#ArgeW09,https://doi.org/10.1007/s00453-008-9222-y +David Benoit,Representing Trees of Higher Degree.,2005,43,Algorithmica,4,db/journals/algorithmica/algorithmica43.html#BenoitDMRRR05,https://doi.org/10.1007/s00453-004-1146-6 +Bang Ye Wu,A Simpler and More Efficient Algorithm for the Next-to-Shortest Path Problem.,2013,65,Algorithmica,2,db/journals/algorithmica/algorithmica65.html#Wu13,https://doi.org/10.1007/s00453-011-9601-7 +William S. Evans,Right-Triangulated Irregular Networks.,2001,30,Algorithmica,2,db/journals/algorithmica/algorithmica30.html#EvansKT01,https://doi.org/10.1007/s00453-001-0006-x +Sharat Chandran,Parallel Computational Geometry of Rectangles.,1992,7,Algorithmica,1,db/journals/algorithmica/algorithmica7.html#ChandranKM92,https://doi.org/10.1007/BF01758750 +R. Krithika 0001,Dynamic Parameterized Problems.,2018,80,Algorithmica,9,db/journals/algorithmica/algorithmica80.html#KrithikaST18,https://doi.org/10.1007/s00453-017-0349-6 +Jianer Chen,Improved Parameterized Set Splitting Algorithms: A Probabilistic Approach.,2009,54,Algorithmica,4,db/journals/algorithmica/algorithmica54.html#ChenL09a,https://doi.org/10.1007/s00453-008-9206-y +Susanne E. Hambrusch,New Algorithms for Minimizing the Longest Wire Length During Circuit Compaction.,1997,17,Algorithmica,4,db/journals/algorithmica/algorithmica17.html#HambruschT97,https://doi.org/10.1007/BF02523682 +Jinsong Tan,Algorithmic and Complexity Issues of Three Clustering Methods in Microarray Data Analysis.,2007,48,Algorithmica,2,db/journals/algorithmica/algorithmica48.html#TanCZZ07,https://doi.org/10.1007/s00453-007-0040-4 +Kyung-Yong Chwa,Guest Editorial: Special Issue on Algorithms and Computation.,2012,64,Algorithmica,3,db/journals/algorithmica/algorithmica64.html#ChwaP12,https://doi.org/10.1007/s00453-012-9673-z +Liane Lewin-Eytan,Admission Control in Networks with Advance Reservations.,2004,40,Algorithmica,4,db/journals/algorithmica/algorithmica40.html#Lewin-EytanNO04,https://doi.org/10.1007/s00453-004-1114-1 +Martin E. Dyer,The Relative Complexity of Approximate Counting Problems.,2004,38,Algorithmica,3,db/journals/algorithmica/algorithmica38.html#DyerGGJ03,https://doi.org/10.1007/s00453-003-1073-y +Andreas Björklund,Exact Algorithms for Exact Satisfiability and Number of Perfect Matchings.,2008,52,Algorithmica,2,db/journals/algorithmica/algorithmica52.html#BjorklundH08,https://doi.org/10.1007/s00453-007-9149-8 +Joseph Cheriyan,Algorithms for Dense Graphs and Networks on the Random Access Computer.,1996,15,Algorithmica,6,db/journals/algorithmica/algorithmica15.html#CheriyanM96,https://doi.org/10.1007/BF01940880 +Hsien-Kuei Hwang,Guest Editorial.,2013,66,Algorithmica,4,db/journals/algorithmica/algorithmica66.html#HwangMS13,https://doi.org/10.1007/s00453-013-9786-z +Jeffrey M. Jaffe,Distributed Deadlock Resolution in Store-and-Forward Networks.,1989,4,Algorithmica,3,db/journals/algorithmica/algorithmica4.html#JaffeS89,https://doi.org/10.1007/BF01553899 +Yijie Han,An O ( n 3(log log n /log n )5/4) Time Algorithm for All Pairs Shortest Path.,2008,51,Algorithmica,4,db/journals/algorithmica/algorithmica51.html#Han08,https://doi.org/10.1007/s00453-007-9063-0 +Susanne Albers,An Experimental Study of New and Known Online Packet Buffering Algorithms.,2010,57,Algorithmica,4,db/journals/algorithmica/algorithmica57.html#AlbersJ10,https://doi.org/10.1007/s00453-008-9230-y +Michael A. Bender,Communication-Aware Processor Allocation for Supercomputers: Finding Point Sets of Small Average Distance.,2008,50,Algorithmica,2,db/journals/algorithmica/algorithmica50.html#BenderBDFLMP08,https://doi.org/10.1007/s00453-007-9037-2 +Rom Aschner,Bounded-Angle Spanning Tree: Modeling Networks with Angular Constraints.,2017,77,Algorithmica,2,db/journals/algorithmica/algorithmica77.html#AschnerK17,https://doi.org/10.1007/s00453-015-0076-9 +Thomas Jansen 0001,Analysis of Evolutionary Algorithms for the Longest Common Subsequence Problem.,2010,57,Algorithmica,1,db/journals/algorithmica/algorithmica57.html#JansenW10,https://doi.org/10.1007/s00453-008-9243-6 +Cynthia A. Phillips,Optimal Time-Critical Scheduling via Resource Augmentation.,2002,32,Algorithmica,2,db/journals/algorithmica/algorithmica32.html#PhillipsSTW02,https://doi.org/10.1007/s00453-001-0068-9 +Michael M. Wu,An Efficient Distributed Algorithm for Maximum Matching in General Graphs.,1990,5,Algorithmica,3,db/journals/algorithmica/algorithmica5.html#WuL90,https://doi.org/10.1007/BF01840395 +Xi Chen 0001,A Simplicial Approach for Discrete Fixed Point Theorems.,2009,53,Algorithmica,2,db/journals/algorithmica/algorithmica53.html#ChenD09,https://doi.org/10.1007/s00453-008-9183-1 +Artur Czumaj,Fast Generation of Random Permutations Via Networks Simulation.,1998,21,Algorithmica,1,db/journals/algorithmica/algorithmica21.html#CzumajKKL98,https://doi.org/10.1007/PL00009206 +Pankaj K. Agarwal,Computing Approximate Shortest Paths on Convex Polytopes.,2002,33,Algorithmica,2,db/journals/algorithmica/algorithmica33.html#AgarwalHK02,https://doi.org/10.1007/s00453-001-0111-x +Michael A. Bekos,Improved Approximation Algorithms for Box Contact Representations.,2017,77,Algorithmica,3,db/journals/algorithmica/algorithmica77.html#BekosDFKKPSW17,https://doi.org/10.1007/s00453-016-0121-3 +Takeaki Uno,Fast Algorithms to Enumerate All Common Intervals of Two Permutations.,2000,26,Algorithmica,2,db/journals/algorithmica/algorithmica26.html#UnoY00,https://doi.org/10.1007/s004539910014 +Jay Belanger,Reductions Do Not Preserve Fast Convergence Rates in Average Time.,1999,23,Algorithmica,4,db/journals/algorithmica/algorithmica23.html#BelangerPW99,https://doi.org/10.1007/PL00009267 +David Fernández-Baca,On Nonlinear Parametric Search.,2001,30,Algorithmica,1,db/journals/algorithmica/algorithmica30.html#Fernandez-Baca01,https://doi.org/10.1007/s00453-001-0001-2 +Takeshi Tokuyama,Orthogonal Queries in Segments.,1997,18,Algorithmica,2,db/journals/algorithmica/algorithmica18.html#Tokuyama97,https://doi.org/10.1007/BF02526035 +Michael Luby,A Bidirectional Shortest-Path Algorithm with Good Average-Case Behavior.,1989,4,Algorithmica,4,db/journals/algorithmica/algorithmica4.html#LubyR89,https://doi.org/10.1007/BF01553908 +Mikhail J. Atallah,A Faster Parallel Algorithm for a Matrix Searching Problem.,1993,9,Algorithmica,2,db/journals/algorithmica/algorithmica9.html#Atallah93,https://doi.org/10.1007/BF01188710 +Erik D. Demaine,Exponential Speedup of Fixed-Parameter Algorithms for Classes of Graphs Excluding Single-Crossing Graphs as Minors.,2005,41,Algorithmica,4,db/journals/algorithmica/algorithmica41.html#DemaineHT05,https://doi.org/10.1007/s00453-004-1125-y +Karim Douïeb,Near-Entropy Hotlink Assignments.,2010,58,Algorithmica,2,db/journals/algorithmica/algorithmica58.html#DouiebL10,https://doi.org/10.1007/s00453-008-9259-y +Peter Damaschke,Multiple Spin-Block Decisions.,2006,44,Algorithmica,1,db/journals/algorithmica/algorithmica44.html#Damaschke06,https://doi.org/10.1007/s00453-005-1163-0 +Luciano Gualà,Exact and Approximate Truthful Mechanisms for the Shortest Paths Tree Problem.,2007,49,Algorithmica,3,db/journals/algorithmica/algorithmica49.html#GualaP07,https://doi.org/10.1007/s00453-007-9016-7 +Moses Charikar,Improved Approximation Algorithms for Label Cover Problems.,2011,61,Algorithmica,1,db/journals/algorithmica/algorithmica61.html#CharikarHK11,https://doi.org/10.1007/s00453-010-9464-3 +Dirk Sudholt,Hybridizing Evolutionary Algorithms with©0*Variable-Depth Search to Overcome Local Optima.,2011,59,Algorithmica,3,db/journals/algorithmica/algorithmica59.html#Sudholt11,https://doi.org/10.1007/s00453-009-9384-2 +Tiago Paixão,Towards a Runtime Comparison of Natural and Artificial Evolution.,2017,78,Algorithmica,2,db/journals/algorithmica/algorithmica78.html#PaixaoHST17,https://doi.org/10.1007/s00453-016-0212-1 +Esko Ukkonen,A Linear-Time Algorithm for Finding Approximate Shortest Common Superstrings.,1990,5,Algorithmica,3,db/journals/algorithmica/algorithmica5.html#Ukkonen90,https://doi.org/10.1007/BF01840391 +Uriel Feige,Oblivious Algorithms for the Maximum Directed Cut Problem.,2015,71,Algorithmica,2,db/journals/algorithmica/algorithmica71.html#FeigeJ15,https://doi.org/10.1007/s00453-013-9806-z +Shoshana Neuburger,Succinct 2D Dictionary Matching.,2013,65,Algorithmica,3,db/journals/algorithmica/algorithmica65.html#NeuburgerS13,https://doi.org/10.1007/s00453-012-9615-9 +Mark Lanthier,Approximating Shortest Paths on Weighted Polyhedral Surfaces.,2001,30,Algorithmica,4,db/journals/algorithmica/algorithmica30.html#LanthierMS01,https://doi.org/10.1007/s00453-001-0027-5 +Lusheng Wang,Approximation Algorithms for Tree Alignment with a Given Phylogeny.,1996,16,Algorithmica,3,db/journals/algorithmica/algorithmica16.html#WangJL96,https://doi.org/10.1007/BF01955679 +Karl Bringmann,De-anonymization of Heterogeneous Random Graphs in Quasilinear Time.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#BringmannFK18,https://doi.org/10.1007/s00453-017-0395-0 +S. Guha,Proximity Problems for Points on a Rectilinear Plane with Rectangular Obstacles.,1997,17,Algorithmica,3,db/journals/algorithmica/algorithmica17.html#GuhaS97,https://doi.org/10.1007/BF02523193 +Vijaya Ramachandran,Finding the Closed Partition of a Planar Graph.,1994,11,Algorithmica,5,db/journals/algorithmica/algorithmica11.html#RamachandranY94,https://doi.org/10.1007/BF01293266 +Reuven Cohen,Labeling Schemes for Tree Representation.,2009,53,Algorithmica,1,db/journals/algorithmica/algorithmica53.html#CohenFIKP09,https://doi.org/10.1007/s00453-007-9089-3 +Mariko Sakashita,Minimum Cost Source Location Problems with Flow Requirements.,2008,50,Algorithmica,4,db/journals/algorithmica/algorithmica50.html#SakashitaMF08,https://doi.org/10.1007/s00453-007-9012-y +Michael A. Bender,Reallocation Problems in Scheduling.,2015,73,Algorithmica,2,db/journals/algorithmica/algorithmica73.html#BenderFFFG15,https://doi.org/10.1007/s00453-014-9930-4 +Martin L. Brady,Hexagonal Models for Channel Routing.,1997,19,Algorithmica,3,db/journals/algorithmica/algorithmica19.html#BradyBP97,https://doi.org/10.1007/PL00009174 +Aleksander Vesel,Linear Recognition and Embedding of Fibonacci Cubes.,2015,71,Algorithmica,4,db/journals/algorithmica/algorithmica71.html#Vesel15,https://doi.org/10.1007/s00453-013-9839-3 +Guy Kortsarz,On the Hardness of Approximating Spanners.,2001,30,Algorithmica,3,db/journals/algorithmica/algorithmica30.html#Kortsarz01,https://doi.org/10.1007/s00453-001-0021-y +Stefan Fafianie,Speeding Up Dynamic Programming with Representative Sets: An Experimental Evaluation of Algorithms for Steiner Tree on Tree Decompositions.,2015,71,Algorithmica,3,db/journals/algorithmica/algorithmica71.html#FafianieBN15,https://doi.org/10.1007/s00453-014-9934-0 +Takashi Yamakawa,Self-Bilinear Map on Unknown Order Groups from Indistinguishability Obfuscation and Its Applications.,2017,79,Algorithmica,4,db/journals/algorithmica/algorithmica79.html#YamakawaYHK17,https://doi.org/10.1007/s00453-016-0250-8 +Mong-Jen Kao,Capacitated Domination: Problem Complexity and Approximation Algorithms.,2015,72,Algorithmica,1,db/journals/algorithmica/algorithmica72.html#KaoCL15,https://doi.org/10.1007/s00453-013-9844-6 +Mohsen Bayati,A Sequential Algorithm for Generating Random Graphs.,2010,58,Algorithmica,4,db/journals/algorithmica/algorithmica58.html#BayatiKS10,https://doi.org/10.1007/s00453-009-9340-1 +Vadim E. Levit,Complexity Results for Generating Subgraphs.,2018,80,Algorithmica,8,db/journals/algorithmica/algorithmica80.html#LevitT18,https://doi.org/10.1007/s00453-017-0325-1 +Martin Gavrilov,Combinatorial and Experimental Methods for Approximate Point Pattern Matching.,2004,38,Algorithmica,1,db/journals/algorithmica/algorithmica38.html#GavrilovIMV03,https://doi.org/10.1007/s00453-003-1043-4 +David Furcy,Optimal Program-Size Complexity for Self-Assembled Squares at Temperature 1 in 3D.,2017,77,Algorithmica,4,db/journals/algorithmica/algorithmica77.html#FurcyMS17,https://doi.org/10.1007/s00453-016-0147-6 +Leah Epstein,Selfish Bin Packing.,2011,60,Algorithmica,2,db/journals/algorithmica/algorithmica60.html#EpsteinK11,https://doi.org/10.1007/s00453-009-9348-6 +Meirav Zehavi,Algorithms for k-Internal Out-Branching and k-Tree in Bounded Degree Graphs.,2017,78,Algorithmica,1,db/journals/algorithmica/algorithmica78.html#Zehavi17,https://doi.org/10.1007/s00453-016-0166-3 +Timothy M. Chan,A Near-Linear Area Bound for Drawing Binary Trees.,2002,34,Algorithmica,1,db/journals/algorithmica/algorithmica34.html#Chan02,https://doi.org/10.1007/s00453-002-0937-x +Stephane Durocher,Linear-Space Data Structures for Range Frequency Queries on Arrays and Trees.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#DurocherSST16,https://doi.org/10.1007/s00453-014-9947-8 +Esteban Feuerstein,On-Line Multi-Threaded Paging.,2002,32,Algorithmica,1,db/journals/algorithmica/algorithmica32.html#FeuersteinL02,https://doi.org/10.1007/s00453-001-0073-z +Xujin Chen,An Efficient Algorithm for Finding Maximum Cycle Packings in Reducible Flow Graphs.,2006,44,Algorithmica,3,db/journals/algorithmica/algorithmica44.html#ChenZ06,https://doi.org/10.1007/s00453-005-1174-x +Vida Dujmovic,On the Parameterized Complexity of Layered Graph Drawing.,2008,52,Algorithmica,2,db/journals/algorithmica/algorithmica52.html#DujmovicFKLMNRRWW08,https://doi.org/10.1007/s00453-007-9151-1 +Kuan-Yu Chen,A Fully Compressed Algorithm for Computing the Edit Distance of Run-Length Encoded Strings.,2013,65,Algorithmica,2,db/journals/algorithmica/algorithmica65.html#ChenC13,https://doi.org/10.1007/s00453-011-9592-4 +Pankaj K. Agarwal,Improved Algorithms for Uniform Partitions of Points.,2002,32,Algorithmica,4,db/journals/algorithmica/algorithmica32.html#AgarwalBS02,https://doi.org/10.1007/s00453-001-0084-9 +Davide Bilò,Reoptimization of the Shortest Common Superstring Problem.,2011,61,Algorithmica,2,db/journals/algorithmica/algorithmica61.html#BiloBKKMSZ11,https://doi.org/10.1007/s00453-010-9419-8 +Yun Deng,Fast Compatibility Testing for Rooted Phylogenetic Trees.,2018,80,Algorithmica,8,db/journals/algorithmica/algorithmica80.html#DengF18,https://doi.org/10.1007/s00453-017-0330-4 +Michael L. Fredman,The Pairing Heap: A New Form of Self-Adjusting Heap.,1986,1,Algorithmica,1,db/journals/algorithmica/algorithmica1.html#FredmanSST86,https://doi.org/10.1007/BF01840439 +Giuseppe F. Italiano,Maintaining Spanning Trees of Small Diameter.,1998,22,Algorithmica,3,db/journals/algorithmica/algorithmica22.html#ItalianoR98,https://doi.org/10.1007/PL00009225 +Benjamin Doerr,The Impact of Random Initialization on the Runtime of Randomized Search Heuristics.,2016,75,Algorithmica,3,db/journals/algorithmica/algorithmica75.html#DoerrD16,https://doi.org/10.1007/s00453-015-0019-5 +Saverio Caminiti,Resilient Dynamic Programming.,2017,77,Algorithmica,2,db/journals/algorithmica/algorithmica77.html#CaminitiFFS17,https://doi.org/10.1007/s00453-015-0073-z +Jesper Jansson,Rooted Maximum Agreement Supertrees.,2005,43,Algorithmica,4,db/journals/algorithmica/algorithmica43.html#JanssonNSS05,https://doi.org/10.1007/s00453-004-1147-5 +Ming-Tat Ko,An Optimal Approximation Algorithm for the Rectilinear m-Center Problem.,1990,5,Algorithmica,3,db/journals/algorithmica/algorithmica5.html#KoLC90,https://doi.org/10.1007/BF01840393 +Chris Studholme,Random Matrices and Codes for the Erasure Channel.,2010,56,Algorithmica,4,db/journals/algorithmica/algorithmica56.html#StudholmeB10,https://doi.org/10.1007/s00453-008-9192-0 +Satoru Iwata 0001,Computing the Maximum Degree of Minors in Matrix Pencils via Combinatorial Relaxation.,2003,36,Algorithmica,4,db/journals/algorithmica/algorithmica36.html#Iwata03,https://doi.org/10.1007/s00453-003-1022-9 +S. Muthukrishnan,Stochastic Models for Budget Optimization in Search-Based Advertising.,2010,58,Algorithmica,4,db/journals/algorithmica/algorithmica58.html#MuthukrishnanPS10,https://doi.org/10.1007/s00453-009-9311-6 +Patrizio Angelini,Finding a Minimum-depth Embedding of a Planar Graph in O(n4) Time.,2011,60,Algorithmica,4,db/journals/algorithmica/algorithmica60.html#AngeliniBP11,https://doi.org/10.1007/s00453-009-9380-6 +Mikolaj Morzy,New Algorithms for Mining the Reputation of Participants of Online Auctions.,2008,52,Algorithmica,1,db/journals/algorithmica/algorithmica52.html#Morzy08,https://doi.org/10.1007/s00453-007-9106-6 +Gopal Pandurangan,Analysis of Randomized Protocols for Conflict-Free Distributed Access.,2007,49,Algorithmica,2,db/journals/algorithmica/algorithmica49.html#PanduranganP07,https://doi.org/10.1007/s00453-007-9027-4 +Koichi Yamazaki,Isomorphism for Graphs of Bounded Distance Width.,1999,24,Algorithmica,2,db/journals/algorithmica/algorithmica24.html#YamazakiBFT99,https://doi.org/10.1007/PL00009273 +Fedor V. Fomin,On Two Techniques of Combining Branching and Treewidth.,2009,54,Algorithmica,2,db/journals/algorithmica/algorithmica54.html#FominGSS09,https://doi.org/10.1007/s00453-007-9133-3 +Anne Benoit,Complexity Results for Throughput and Latency Optimization of Replicated and Data-parallel Workflows.,2010,57,Algorithmica,4,db/journals/algorithmica/algorithmica57.html#BenoitR10,https://doi.org/10.1007/s00453-008-9229-4 +Christopher M. Gold,A One-Step Crust and Skeleton Extraction Algorithm.,2001,30,Algorithmica,2,db/journals/algorithmica/algorithmica30.html#GoldS01,https://doi.org/10.1007/s00453-001-0014-x +Eric Anderson,Algorithms for Data Migration.,2010,57,Algorithmica,2,db/journals/algorithmica/algorithmica57.html#AndersonHHHKSSW10,https://doi.org/10.1007/s00453-008-9214-y +Holger Dell,Complexity and Approximability of Parameterized MAX-CSPs.,2017,79,Algorithmica,1,db/journals/algorithmica/algorithmica79.html#DellKLMM17,https://doi.org/10.1007/s00453-017-0310-8 +Danny Z. Chen,Computing the Visibility Polygon of an Island in a Polygonal Domain.,2017,77,Algorithmica,1,db/journals/algorithmica/algorithmica77.html#ChenW17,https://doi.org/10.1007/s00453-015-0058-y +Dan Gusfield,Extracting Maximal Information About Sets of Minimum Cuts.,1993,10,Algorithmica,1,db/journals/algorithmica/algorithmica10.html#GusfieldN93,https://doi.org/10.1007/BF01908632 +Erik D. Demaine,Worst-Case Optimal Tree Layout in External Memory.,2015,72,Algorithmica,2,db/journals/algorithmica/algorithmica72.html#DemaineIL15,https://doi.org/10.1007/s00453-013-9856-2 +Jerzy W. Jaromczyk,Numerical Stability of a Convex Hull Algorithm for Simple Polygons.,1993,10,Algorithmica,6,db/journals/algorithmica/algorithmica10.html#JaromczykW93,https://doi.org/10.1007/BF01891832 +Michela Mortara,Blowing Bubbles for Multi-Scale Analysis and Decomposition of Triangle Meshes.,2004,38,Algorithmica,1,db/journals/algorithmica/algorithmica38.html#MortaraPSFR03,https://doi.org/10.1007/s00453-003-1051-4 +Stasys Jukna,Limitations of Incremental Dynamic Programming.,2014,69,Algorithmica,2,db/journals/algorithmica/algorithmica69.html#Jukna14,https://doi.org/10.1007/s00453-013-9747-6 +Erricos John Kontoghiorghes,Parallel Strategies for Computing the Orthogonal Factorizations Used in the Estimation of Econometric Models.,1999,25,Algorithmica,1,db/journals/algorithmica/algorithmica25.html#Kontoghiorghes99,https://doi.org/10.1007/PL00009283 +Stephen V. Rice,Classes of Cost Functions for String Edit Distance.,1997,18,Algorithmica,2,db/journals/algorithmica/algorithmica18.html#RiceBN97,https://doi.org/10.1007/BF02526038 +Graham Cormode,Streaming Graph Computations with a Helpful Advisor.,2013,65,Algorithmica,2,db/journals/algorithmica/algorithmica65.html#CormodeMT13,https://doi.org/10.1007/s00453-011-9598-y +Luc Devroye,"On the Probablistic Worst-Case Time of ""Find"".",2001,31,Algorithmica,3,db/journals/algorithmica/algorithmica31.html#Devroye01,https://doi.org/10.1007/s00453-001-0046-2 +Keith E. Humenik,A Lower Bound on the Probability of Conflict Under Nonuniform Access in Database Systems.,1995,13,Algorithmica,3,db/journals/algorithmica/algorithmica13.html#HumenikMSY95,https://doi.org/10.1007/BF01190508 +Jochen Könemann,Approximating the Degree-Bounded Minimum Diameter Spanning Tree Problem.,2005,41,Algorithmica,2,db/journals/algorithmica/algorithmica41.html#KonemannLS04,https://doi.org/10.1007/s00453-004-1121-2 +MohammadHossein Bateni,Approximation Algorithms for the Directed k-Tour and k-Stroll Problems.,2013,65,Algorithmica,3,db/journals/algorithmica/algorithmica65.html#BateniC13,https://doi.org/10.1007/s00453-011-9610-6 +Subhash Suri,Compressing Two-Dimensional Routing Tables.,2003,35,Algorithmica,4,db/journals/algorithmica/algorithmica35.html#SuriSW03,https://doi.org/10.1007/s00453-002-1000-7 +Bernard Chazelle,Data Structures on Event Graphs.,2015,71,Algorithmica,4,db/journals/algorithmica/algorithmica71.html#ChazelleM15,https://doi.org/10.1007/s00453-013-9838-4 +Donatella Firmani,Strong Articulation Points and Strong Bridges in Large Scale Graphs.,2016,74,Algorithmica,3,db/journals/algorithmica/algorithmica74.html#FirmaniGILS16,https://doi.org/10.1007/s00453-015-9991-z +Nir Ailon,Property-Preserving Data Reconstruction.,2008,51,Algorithmica,2,db/journals/algorithmica/algorithmica51.html#AilonCCL08,https://doi.org/10.1007/s00453-007-9075-9 +Naoki Katoh,A Cautious Scheduler for Multistep Transactions.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#KatohKI87,https://doi.org/10.1007/BF01840347 +Nadja Betzler,On Making a Distinguished Vertex of Minimum Degree by Vertex Deletion.,2014,68,Algorithmica,3,db/journals/algorithmica/algorithmica68.html#BetzlerBBNU14,https://doi.org/10.1007/s00453-012-9695-6 +Esther M. Arkin,Optimization Problems Related to Zigzag Pocket Machining.,2000,26,Algorithmica,2,db/journals/algorithmica/algorithmica26.html#ArkinHS00,https://doi.org/10.1007/s004539910010 +David Avis,Generating Rooted Triangulations Without Repetitions.,1996,16,Algorithmica,6,db/journals/algorithmica/algorithmica16.html#Avis96,https://doi.org/10.1007/BF01944353 +Lars Arge,The Buffer Tree: A Technique for Designing Batched External Data Structures.,2003,37,Algorithmica,1,db/journals/algorithmica/algorithmica37.html#Arge03,https://doi.org/10.1007/s00453-003-1021-x +Aris Anagnostopoulos,Online Network Design with Outliers.,2016,76,Algorithmica,1,db/journals/algorithmica/algorithmica76.html#Anagnostopoulos16,https://doi.org/10.1007/s00453-015-0021-y +Flávio Keidi Miyazawa,Polynomial-Time Approximation Schemes for Circle and Other Packing Problems.,2016,76,Algorithmica,2,db/journals/algorithmica/algorithmica76.html#MiyazawaPSSW16,https://doi.org/10.1007/s00453-015-0052-4 +Donald B. Johnson,Optimal Algorithms for the Single and Multiple Vertex Updating Problems of a Minimum Spanning Tree.,1996,16,Algorithmica,6,db/journals/algorithmica/algorithmica16.html#JohnsonM96,https://doi.org/10.1007/BF01944354 +Craig Dillabaugh,I/O-Efficient Path Traversal in Succinct Planar Graphs.,2017,77,Algorithmica,3,db/journals/algorithmica/algorithmica77.html#DillabaughHMZ17,https://doi.org/10.1007/s00453-015-0086-7 +Frank K. Hwang,Comments on Bern's Probabilistic Results on Rectilinear Steiner Trees.,1990,5,Algorithmica,4,db/journals/algorithmica/algorithmica5.html#HwangY90,https://doi.org/10.1007/BF01840406 +Therese C. Biedl,On Triangulating Planar Graphs Under the Four-Connectivity Constraint.,1997,19,Algorithmica,4,db/journals/algorithmica/algorithmica19.html#BiedlKK97,https://doi.org/10.1007/PL00009182 +Yossi Azar,Fair versus Unrestricted Bin Packing.,2002,34,Algorithmica,2,db/journals/algorithmica/algorithmica34.html#AzarBFLNE02,https://doi.org/10.1007/s00453-002-0965-6 +Jin-yi Cai,Foreword.,1999,23,Algorithmica,4,db/journals/algorithmica/algorithmica23.html#CaiW99,https://doi.org/10.1007/PL00009262 +Prosenjit Bose,Computing the Greedy Spanner in Near-Quadratic Time.,2010,58,Algorithmica,3,db/journals/algorithmica/algorithmica58.html#BoseCFMS10,https://doi.org/10.1007/s00453-009-9293-4 +David Fernández-Baca,On the Efficiency of Maximum-Flow Algorithms on Networks with Small Integer Capacities.,1989,4,Algorithmica,2,db/journals/algorithmica/algorithmica4.html#Fernandez-BacaM89,https://doi.org/10.1007/BF01553885 +Hiroshi Nagamochi,Minimum Degree Orderings.,2010,56,Algorithmica,1,db/journals/algorithmica/algorithmica56.html#Nagamochi10,https://doi.org/10.1007/s00453-008-9239-2 +Xiaotie Deng,Preface.,2008,51,Algorithmica,3,db/journals/algorithmica/algorithmica51.html#DengD08,https://doi.org/10.1007/s00453-007-9000-2 +Pilar de la Torre,Optimal Edge Ranking of Trees in Polynomial Time.,1995,13,Algorithmica,6,db/journals/algorithmica/algorithmica13.html#TorreGS95,https://doi.org/10.1007/BF01189071 +Marek Cygan,Erratum to: Foreword: Special Issue on IPEC 2014.,2016,75,Algorithmica,2,db/journals/algorithmica/algorithmica75.html#CyganH16a,https://doi.org/10.1007/s00453-016-0161-8 +Rajiv Gandhi,Combinatorial Algorithms for Data Migration to Minimize Average Completion Time.,2009,54,Algorithmica,1,db/journals/algorithmica/algorithmica54.html#GandhiM09,https://doi.org/10.1007/s00453-007-9118-2 +Maria Paola Bianchi,Online Coloring of Bipartite Graphs with and without Advice.,2014,70,Algorithmica,1,db/journals/algorithmica/algorithmica70.html#BianchiBHK14,https://doi.org/10.1007/s00453-013-9819-7 +Paris C. Kanellakis,On the Analysis of Cooperation and Antagonism in Networks of Communicating Processes.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#KanellakisS88,https://doi.org/10.1007/BF01762125 +Jérémie Chalopin,Mapping Simple Polygons: How Robots Benefit from Looking Back.,2013,65,Algorithmica,1,db/journals/algorithmica/algorithmica65.html#Chalopin0DMW13,https://doi.org/10.1007/s00453-011-9572-8 +Laura A. Sanchis,Experimental Analysis of Heuristic Algorithms for the Dominating Set Problem.,2002,33,Algorithmica,1,db/journals/algorithmica/algorithmica33.html#Sanchis02,https://doi.org/10.1007/s00453-001-0101-z +Israel Cidon,Editor's Foreword: Special Issue on Algorithmic Aspects of Communications.,1989,4,Algorithmica,3,db/journals/algorithmica/algorithmica4.html#CidonG89,https://doi.org/10.1007/BF01553892 +Shlomi Dolev,Wait-Free Clock Synchronization.,1997,18,Algorithmica,4,db/journals/algorithmica/algorithmica18.html#DolevW97,https://doi.org/10.1007/PL00009167 +Roberto Battiti,Reactive Local Search for the Maximum Clique Problem.,2001,29,Algorithmica,4,db/journals/algorithmica/algorithmica29.html#BattitiP01,https://doi.org/10.1007/s004530010074 +Surender Baswana,Incremental Algorithm for Maintaining a DFS Tree for Undirected Graphs.,2017,79,Algorithmica,2,db/journals/algorithmica/algorithmica79.html#BaswanaK17,https://doi.org/10.1007/s00453-016-0204-1 +Sander P. A. Alewijnse,Distribution-Sensitive Construction of the Greedy Spanner.,2017,78,Algorithmica,1,db/journals/algorithmica/algorithmica78.html#AlewijnseBBB17,https://doi.org/10.1007/s00453-016-0160-9 +Hiroyuki Kazuyoshi,An Approximation Algorithm for a Large-Scale Facility Location Problem.,2003,35,Algorithmica,3,db/journals/algorithmica/algorithmica35.html#Kazuyoshi03,https://doi.org/10.1007/s00453-002-0996-z +Yossi Azar,On Capital Investment.,1999,25,Algorithmica,1,db/journals/algorithmica/algorithmica25.html#AzarBFFLR99,https://doi.org/10.1007/PL00009281 +Leah Epstein,Online File Caching with Rejection Penalties.,2015,71,Algorithmica,2,db/journals/algorithmica/algorithmica71.html#EpsteinILN15,https://doi.org/10.1007/s00453-013-9793-0 +David Eppstein,Diameter and Treewidth in Minor-Closed Graph Families.,2000,27,Algorithmica,3,db/journals/algorithmica/algorithmica27.html#Eppstein00,https://doi.org/10.1007/s004530010020 +Yuichi Yoshida,Testing Outerplanarity of Bounded Degree Graphs.,2015,73,Algorithmica,1,db/journals/algorithmica/algorithmica73.html#YoshidaI15,https://doi.org/10.1007/s00453-014-9897-1 +Benjamin Doerr,Editorial.,2010,57,Algorithmica,1,db/journals/algorithmica/algorithmica57.html#DoerrNW10,https://doi.org/10.1007/s00453-009-9373-5 +Richard J. Anderson,Deterministic Parallel List Ranking.,1991,6,Algorithmica,6,db/journals/algorithmica/algorithmica6.html#AndersonM91,https://doi.org/10.1007/BF01759076 +János Pach,Guest Editors' Foreword.,2007,47,Algorithmica,4,db/journals/algorithmica/algorithmica47.html#PachS07,https://doi.org/10.1007/s00453-006-0147-z +Tamara Mchedlidze,Extending Convex Partial Drawings of Graphs.,2016,76,Algorithmica,1,db/journals/algorithmica/algorithmica76.html#MchedlidzeNR16,https://doi.org/10.1007/s00453-015-0018-6 +Keith Edwards,A General Reduction Theorem with Applications to Pathwidth and the Complexity of MAX 2-CSP.,2015,72,Algorithmica,4,db/journals/algorithmica/algorithmica72.html#EdwardsM15,https://doi.org/10.1007/s00453-014-9883-7 +J. Ian Munro,Succinct Posets.,2016,76,Algorithmica,2,db/journals/algorithmica/algorithmica76.html#MunroN16,https://doi.org/10.1007/s00453-015-0047-1 +David Fernández-Baca,Editorial.,2014,70,Algorithmica,2,db/journals/algorithmica/algorithmica70.html#Fernandez-Baca14,https://doi.org/10.1007/s00453-014-9900-x +Patchrawat Uthaisombut,Generalization of EDF and LLF: Identifying All Optimal Online Algorithms for Minimizing Maximum Lateness.,2008,50,Algorithmica,3,db/journals/algorithmica/algorithmica50.html#Uthaisombut08,https://doi.org/10.1007/s00453-007-9083-9 +Marcin Peczarski,New Results in Minimum-Comparison Sorting.,2004,40,Algorithmica,2,db/journals/algorithmica/algorithmica40.html#Peczarski04,https://doi.org/10.1007/s00453-004-1100-7 +Ojas Parekh,Path Hitting in Acyclic Graphs.,2008,52,Algorithmica,4,db/journals/algorithmica/algorithmica52.html#ParekhS08,https://doi.org/10.1007/s00453-007-9087-5 +Jean R. S. Blair,Minimizing Channel Density in Standard Cell Layout.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#BlairKLS87,https://doi.org/10.1007/BF01840363 +Niv Buchbinder,Incentive Compatible Mulit-Unit Combinatorial Auctions: A Primal Dual Approach.,2015,72,Algorithmica,1,db/journals/algorithmica/algorithmica72.html#BuchbinderG15,https://doi.org/10.1007/s00453-013-9854-4 +Andreas Brandstädt,Finding Dominating Induced Matchings in P8 -Free Graphs in Polynomial Time.,2017,77,Algorithmica,4,db/journals/algorithmica/algorithmica77.html#BrandstadtM17,https://doi.org/10.1007/s00453-016-0150-y +Jannis Bulian,Graph Isomorphism Parameterized by Elimination Distance to Bounded Degree.,2016,75,Algorithmica,2,db/journals/algorithmica/algorithmica75.html#BulianD16,https://doi.org/10.1007/s00453-015-0045-3 +Petra Sparl,1-Local 7/5-Competitive Algorithm for Multicoloring Hexagonal Graphs.,2012,64,Algorithmica,4,db/journals/algorithmica/algorithmica64.html#SparlWZ12,https://doi.org/10.1007/s00453-011-9562-x +Quentin F. Stout,Isotonic Regression for Multiple Independent Variables.,2015,71,Algorithmica,2,db/journals/algorithmica/algorithmica71.html#Stout15,https://doi.org/10.1007/s00453-013-9814-z +Yefim Dinitz,Maintaining the Classes of 4-Edge-Connectivity in a Graph On-Line.,1998,20,Algorithmica,3,db/journals/algorithmica/algorithmica20.html#DinitzW98,https://doi.org/10.1007/PL00009195 +Leana Golubchik,Data Migration on Parallel Disks: Algorithms and Evaluation.,2006,45,Algorithmica,1,db/journals/algorithmica/algorithmica45.html#GolubchikKKSW06,https://doi.org/10.1007/s00453-005-1194-6 +Masafumi Yamashita,Searching for Mobile Intruders in a Polygonal Region by a Group of Mobile Searchers.,2001,31,Algorithmica,2,db/journals/algorithmica/algorithmica31.html#YamashitaUSK01,https://doi.org/10.1007/s00453-001-0045-3 +Mirela Damian,Computing Optimal Diameter-Bounded Polygon Partitions.,2004,40,Algorithmica,1,db/journals/algorithmica/algorithmica40.html#DamianP04,https://doi.org/10.1007/s00453-004-1092-3 +Vida Dujmovic,An Efficient Fixed Parameter Tractable Algorithm for 1-Sided Crossing Minimization.,2004,40,Algorithmica,1,db/journals/algorithmica/algorithmica40.html#DujmovicW04,https://doi.org/10.1007/s00453-004-1093-2 +Eric McDermid,Sex-Equal Stable Matchings: Complexity and Exact Algorithms.,2014,68,Algorithmica,3,db/journals/algorithmica/algorithmica68.html#McDermidI14,https://doi.org/10.1007/s00453-012-9672-0 +Sung-woo Cho,Pricing for Fairness: Distributed Resource Allocation for Multiple Objectives.,2010,57,Algorithmica,4,db/journals/algorithmica/algorithmica57.html#ChoG10,https://doi.org/10.1007/s00453-010-9405-1 +Keren Cohen,On Minimum Witnesses for Boolean Matrix Multiplication.,2014,69,Algorithmica,2,db/journals/algorithmica/algorithmica69.html#CohenY14,https://doi.org/10.1007/s00453-012-9742-3 +Thomas Christof,Algorithmic Aspects of Using Small Instance Relaxations in Parallel Branch-and-Cut.,2001,30,Algorithmica,4,db/journals/algorithmica/algorithmica30.html#ChristofR01,https://doi.org/10.1007/s00453-001-0029-3 +Yoshifumi Inui,Quantum Property Testing of Group Solvability.,2011,59,Algorithmica,1,db/journals/algorithmica/algorithmica59.html#InuiG11,https://doi.org/10.1007/s00453-009-9338-8 +Joseph Y.-T. Leung,Minimizing Mean Flow Time with Error Constraint.,1998,20,Algorithmica,1,db/journals/algorithmica/algorithmica20.html#LeungTWY98,https://doi.org/10.1007/PL00009185 +Michael Drmota,The Asymptotic Number of Leftist Trees.,2001,31,Algorithmica,3,db/journals/algorithmica/algorithmica31.html#Drmota01a,https://doi.org/10.1007/s00453-001-0055-1 +Pangfeng Liu,An Approximation Algorithm and Dynamic Programming for Reduction in Heterogeneous Environments.,2009,53,Algorithmica,3,db/journals/algorithmica/algorithmica53.html#LiuKW09,https://doi.org/10.1007/s00453-007-9113-7 +Julian Arz,Lempel-Ziv-78 Compressed String Dictionaries.,2018,80,Algorithmica,7,db/journals/algorithmica/algorithmica80.html#ArzF18,https://doi.org/10.1007/s00453-017-0348-7 +Danny Z. Chen,Efficient Algorithms for k-Terminal Cuts on Planar Graphs.,2004,38,Algorithmica,2,db/journals/algorithmica/algorithmica38.html#ChenW03,https://doi.org/10.1007/s00453-003-1061-2 +Lata Narayanan,Static Frequency Assignment in Cellular Networks.,2001,29,Algorithmica,3,db/journals/algorithmica/algorithmica29.html#NarayananS01,https://doi.org/10.1007/s004530010067 +Vincenzo Auletta,Metastability of Logit Dynamics for Coordination Games.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#AulettaFPP18,https://doi.org/10.1007/s00453-017-0371-8 +Prosenjit Bose,Some Aperture-Angle Optimization Problems.,2002,33,Algorithmica,4,db/journals/algorithmica/algorithmica33.html#BoseHOST02,https://doi.org/10.1007/s00453-001-0112-9 +Antonio Fernández Anta,Unbounded Contention Resolution in Multiple-Access Channels.,2013,67,Algorithmica,3,db/journals/algorithmica/algorithmica67.html#AntaMM13,https://doi.org/10.1007/s00453-013-9816-x +Martin Farach,String Matching in Lempel-Ziv Compressed Strings.,1998,20,Algorithmica,4,db/journals/algorithmica/algorithmica20.html#FarachT98,https://doi.org/10.1007/PL00009202 +Mangesh Gupte,Analyses of Cardinal Auctions.,2015,71,Algorithmica,4,db/journals/algorithmica/algorithmica71.html#GupteKM15,https://doi.org/10.1007/s00453-013-9832-x +Bruce Randall Donald,The Complexity of Planar Compliant Motion Planning Under Uncertainty.,1990,5,Algorithmica,3,db/journals/algorithmica/algorithmica5.html#Donald90,https://doi.org/10.1007/BF01840394 +Jiecao Chen,Improved Algorithms for Distributed Entropy Monitoring.,2017,78,Algorithmica,3,db/journals/algorithmica/algorithmica78.html#ChenZ17,https://doi.org/10.1007/s00453-016-0194-z +Björn Lisper,Preconditioning Index Set Transformations for Time-Optimal Affine Scheduling.,1996,15,Algorithmica,2,db/journals/algorithmica/algorithmica15.html#Lisper96,https://doi.org/10.1007/BF01941688 +Klaus Jansen,Guest Editors' Introduction.,2001,30,Algorithmica,3,db/journals/algorithmica/algorithmica30.html#JansenR01,https://doi.org/10.1007/s00453-001-0025-7 +J. F. Weng,Steiner Minimal Trees with One Polygonal Obstacle.,2001,29,Algorithmica,4,db/journals/algorithmica/algorithmica29.html#WengS01,https://doi.org/10.1007/s00453-001-0002-1 +Anne Berry,Maximum Cardinality Search for Computing Minimal Triangulations of Graphs.,2004,39,Algorithmica,4,db/journals/algorithmica/algorithmica39.html#BerryBHP04,https://doi.org/10.1007/s00453-004-1084-3 +Guy Feigenblat,Erratum to: A Grouping Approach for Succinct Dynamic Dictionary Matching.,2017,77,Algorithmica,1,db/journals/algorithmica/algorithmica77.html#FeigenblatPS17a,https://doi.org/10.1007/s00453-016-0183-2 +Jens Gramm,Fixed-Parameter Algorithms for CLOSEST STRING and Related Problems.,2003,37,Algorithmica,1,db/journals/algorithmica/algorithmica37.html#GrammNR03,https://doi.org/10.1007/s00453-003-1028-3 +Martijn van Ee,The A Priori Traveling Repairman Problem.,2018,80,Algorithmica,10,db/journals/algorithmica/algorithmica80.html#EeS18,https://doi.org/10.1007/s00453-017-0351-z +Khaled M. Elbassioni,On Randomized Fictitious Play for Approximating Saddle Points Over Convex Sets.,2015,73,Algorithmica,2,db/journals/algorithmica/algorithmica73.html#ElbassioniMMR15,https://doi.org/10.1007/s00453-014-9902-8 +Minzhu Xie,An Improved (and Practical) Parameterized Algorithm for the Individual Haplotyping Problem MFR with Mate-Pairs.,2008,52,Algorithmica,2,db/journals/algorithmica/algorithmica52.html#XieW08,https://doi.org/10.1007/s00453-007-9150-2 +Pankaj K. Agarwal,Dynamic Half-Space Range Reporting and Its Applications.,1995,13,Algorithmica,4,db/journals/algorithmica/algorithmica13.html#AgarwalM95,https://doi.org/10.1007/BF01293483 +Daniel M. Gordon,Parallel Sorting on Cayley Graphs.,1991,6,Algorithmica,4,db/journals/algorithmica/algorithmica6.html#Gordon91,https://doi.org/10.1007/BF01759059 +Xiao Zhou,Multicolorings of Series-Parallel Graphs.,2004,38,Algorithmica,2,db/journals/algorithmica/algorithmica38.html#ZhouN03,https://doi.org/10.1007/s00453-003-1060-3 +Leizhen Cai,Incompressibility of H-Free Edge Modification Problems.,2015,71,Algorithmica,3,db/journals/algorithmica/algorithmica71.html#CaiC15,https://doi.org/10.1007/s00453-014-9937-x +Martin Niemeier,Scheduling with an Orthogonal Resource Constraint.,2015,71,Algorithmica,4,db/journals/algorithmica/algorithmica71.html#NiemeierW15,https://doi.org/10.1007/s00453-013-9829-5 +Babak Behsaz,New Approximation Algorithms for the Unsplittable Capacitated Facility Location Problem.,2016,75,Algorithmica,1,db/journals/algorithmica/algorithmica75.html#BehsazSS16,https://doi.org/10.1007/s00453-015-0012-z +P. B. Ramprasad,A Linear Algorithm for the All-Bidirectional-Edges Problem on Planar Graphs.,1993,9,Algorithmica,3,db/journals/algorithmica/algorithmica9.html#RamprasadR93,https://doi.org/10.1007/BF01190896 +Ilya Baran,Optimally Adaptive Integration of Univariate Lipschitz Functions.,2008,50,Algorithmica,2,db/journals/algorithmica/algorithmica50.html#BaranDK08,https://doi.org/10.1007/s00453-007-9093-7 +Peter Eades,Straight-Line Drawing Algorithms for Hierarchical Graphs and Clustered Graphs.,2006,44,Algorithmica,1,db/journals/algorithmica/algorithmica44.html#EadesFLN06,https://doi.org/10.1007/s00453-004-1144-8 +Patrizio Angelini,Monotone Drawings of Graphs with Fixed Embedding.,2015,71,Algorithmica,2,db/journals/algorithmica/algorithmica71.html#AngeliniDKMRSW15,https://doi.org/10.1007/s00453-013-9790-3 +Aparna Das,Approximating Minimum Manhattan Networks in Higher Dimensions.,2015,71,Algorithmica,1,db/journals/algorithmica/algorithmica71.html#DasG0KSW15,https://doi.org/10.1007/s00453-013-9778-z +Bernd Gärtner,Unique Sink Orientations of Grids.,2008,51,Algorithmica,2,db/journals/algorithmica/algorithmica51.html#GartnerMR08,https://doi.org/10.1007/s00453-007-9090-x +Franz Aurenhammer,Minkowski-Type Theorems and Least-Squares Clustering.,1998,20,Algorithmica,1,db/journals/algorithmica/algorithmica20.html#AurenhammerHA98,https://doi.org/10.1007/PL00009187 +Rémy Belmonte,Induced Minor Free Graphs: Isomorphism and Clique-Width.,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#BelmonteOS18,https://doi.org/10.1007/s00453-016-0234-8 +Emilio Di Giacomo,Book Embeddability of Series-Parallel Digraphs.,2006,45,Algorithmica,4,db/journals/algorithmica/algorithmica45.html#GiacomoDLW06,https://doi.org/10.1007/s00453-005-1185-7 +Reid Andersen,Drawing Power Law Graphs Using a Local/Global Decomposition.,2007,47,Algorithmica,4,db/journals/algorithmica/algorithmica47.html#AndersenCL07a,https://doi.org/10.1007/s00453-006-3160-3 +Andreas Wiese,Independent Set of Convex Polygons: From $$n^{\epsilon }$$ n and#1013* to $$1+\epsilon $$ 1 + and#1013* via Shrinking.,2018,80,Algorithmica,3,db/journals/algorithmica/algorithmica80.html#Wiese18,https://doi.org/10.1007/s00453-017-0347-8 +Sergio De Agostino,An O(n®9*) Recognition Algorithm for Bithreshold Graphs.,1997,17,Algorithmica,4,db/journals/algorithmica/algorithmica17.html#AgostinoPS97,https://doi.org/10.1007/BF02523681 +Naveen Garg 0001,An O (log k)-Approximation Algorithm for the k Minimum Spanning Tree Problem in the Plane.,1997,18,Algorithmica,1,db/journals/algorithmica/algorithmica18.html#GargH97,https://doi.org/10.1007/BF02523691 +Valerie King,Sleeping on the Job: Energy-Efficient and Robust Broadcast for Radio Networks.,2011,61,Algorithmica,3,db/journals/algorithmica/algorithmica61.html#KingPSY11,https://doi.org/10.1007/s00453-010-9422-0 +Joachim von zur Gathen,GCD of Random Linear Combinations.,2006,46,Algorithmica,1,db/journals/algorithmica/algorithmica46.html#GathenS06,https://doi.org/10.1007/s00453-006-0072-1 +Bin Fu,A Comparison of Resource-Bounded Molecular Computation Models.,1999,24,Algorithmica,2,db/journals/algorithmica/algorithmica24.html#FuB99,https://doi.org/10.1007/PL00009276 +Feodor F. Dragan,How to Use Spanning Trees to Navigate in Graphs.,2013,66,Algorithmica,3,db/journals/algorithmica/algorithmica66.html#DraganX13,https://doi.org/10.1007/s00453-012-9647-1 +Ari Freund 0001,Improved Subquadratic 3SUM.,2017,77,Algorithmica,2,db/journals/algorithmica/algorithmica77.html#Freund17,https://doi.org/10.1007/s00453-015-0079-6 +Guy Kortsarz,Approximating Node Connectivity Problems via Set Covers.,2003,37,Algorithmica,2,db/journals/algorithmica/algorithmica37.html#KortsarzN03,https://doi.org/10.1007/s00453-003-1027-4 +Teofilo F. Gonzalez,Approximation Algorithms for Partitioning a Rectangle with Interior Points.,1990,5,Algorithmica,1,db/journals/algorithmica/algorithmica5.html#GonzalezZ90,https://doi.org/10.1007/BF01840375 +Atlas F. Cook IV,Shortest Path Problems on a Polyhedral Surface.,2014,69,Algorithmica,1,db/journals/algorithmica/algorithmica69.html#CookW14,https://doi.org/10.1007/s00453-012-9723-6 +Klaus Jansen,Scheduling Malleable Parallel Tasks: An Asymptotic Fully Polynomial Time Approximation Scheme.,2004,39,Algorithmica,1,db/journals/algorithmica/algorithmica39.html#Jansen04,https://doi.org/10.1007/s00453-003-1078-6 +Wing-Kai Hon,A Space and Time Efficient Algorithm for Constructing Compressed Suffix Arrays.,2007,48,Algorithmica,1,db/journals/algorithmica/algorithmica48.html#HonLSSY07,https://doi.org/10.1007/s00453-006-1228-8 +Theodore H. Romer,An Algorithm Reminiscent of Euclidean-gcd Computing a Function Related to Pinwheel Scheduling.,1997,17,Algorithmica,1,db/journals/algorithmica/algorithmica17.html#RomerR97,https://doi.org/10.1007/BF02523234 +Hsiao-Feng Steven Chen,A Faster One-Dimensional Topological Compaction Algorithm with Jog Insertion.,2000,28,Algorithmica,4,db/journals/algorithmica/algorithmica28.html#ChenL00,https://doi.org/10.1007/s004530010044 +Giuseppe F. Italiano,Guest Editor's Introduction.,2001,30,Algorithmica,4,db/journals/algorithmica/algorithmica30.html#Italiano01,https://doi.org/10.1007/s00453-001-0035-5 +Kurt Mehlhorn,Dynamic Fractional Cascading.,1990,5,Algorithmica,2,db/journals/algorithmica/algorithmica5.html#MehlhornN90,https://doi.org/10.1007/BF01840386 +Chris Dowden,Subgraphs of 4-Regular Planar Graphs.,2011,61,Algorithmica,3,db/journals/algorithmica/algorithmica61.html#DowdenA11,https://doi.org/10.1007/s00453-010-9435-8 +Philippe Flajolet,On the Analysis of Linear Probing Hashing.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#FlajoletPV98,https://doi.org/10.1007/PL00009236 +Ildikó Schlotter,A Connection Between Sports and Matroids: How Many Teams Can We Beat?,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#SchlotterC18,https://doi.org/10.1007/s00453-016-0256-2 +Neal E. Young,On-Line File Caching.,2002,33,Algorithmica,3,db/journals/algorithmica/algorithmica33.html#Young02,https://doi.org/10.1007/s00453-001-0124-5 +Ying Xu 0002,An O(n1.5) Deterministic Gossiping Algorithm for Radio Networks.,2003,36,Algorithmica,1,db/journals/algorithmica/algorithmica36.html#Xu03,https://doi.org/10.1007/s00453-002-1010-5 +Siu-Wing Cheng,Minimum Dominating Sets of Intervals on Lines.,1998,20,Algorithmica,3,db/journals/algorithmica/algorithmica20.html#ChengKZ98,https://doi.org/10.1007/PL00009197 +Ulrich Fößmeier,On Exact Solutions for the Rectilinear Steiner Tree Problem Part I: Theoretical Results.,2000,26,Algorithmica,1,db/journals/algorithmica/algorithmica26.html#FossmeierK00,https://doi.org/10.1007/s004539910005 +Pascal Ferraro,An Edit Distance between Quotiented Trees.,2003,36,Algorithmica,1,db/journals/algorithmica/algorithmica36.html#FerraroG03,https://doi.org/10.1007/s00453-002-1002-5 +George Christodoulou 0001,Contention Resolution under Selfishness.,2014,70,Algorithmica,4,db/journals/algorithmica/algorithmica70.html#0001LP14,https://doi.org/10.1007/s00453-013-9773-4 +Ildikó Schlotter,Correction to: A Connection Between Sports and Matroids: How Many Teams Can We Beat?,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#SchlotterC18a,https://doi.org/10.1007/s00453-017-0378-1 +Shoshana Marcus,2D Lyndon Words and Applications.,2017,77,Algorithmica,1,db/journals/algorithmica/algorithmica77.html#MarcusS17,https://doi.org/10.1007/s00453-015-0065-z +Kevin Buchin,Preprocessing Imprecise Points for Delaunay Triangulation: Simplified and Extended.,2011,61,Algorithmica,3,db/journals/algorithmica/algorithmica61.html#BuchinLMM11,https://doi.org/10.1007/s00453-010-9430-0 +Pradeesha Ashok,Multivariate Complexity Analysis of Geometric Red Blue Set Cover.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#AshokKS17,https://doi.org/10.1007/s00453-016-0216-x +Victor Chepoi,Augmenting Trees to Meet Biconnectivity and Diameter Constraints.,2002,33,Algorithmica,2,db/journals/algorithmica/algorithmica33.html#ChepoiV02,https://doi.org/10.1007/s00453-001-0113-8 +Ka Wong Chong,Approximating Biconnectivity in Parallel.,1998,21,Algorithmica,4,db/journals/algorithmica/algorithmica21.html#ChongL98,https://doi.org/10.1007/PL00009221 +Paolo Ferragina,Distribution-Aware Compressed Full-Text Indexes.,2013,67,Algorithmica,4,db/journals/algorithmica/algorithmica67.html#FerraginaSV13,https://doi.org/10.1007/s00453-013-9782-3 +Ernst Althaus,Approximation Algorithms for the Interval Constrained Coloring Problem.,2011,61,Algorithmica,2,db/journals/algorithmica/algorithmica61.html#AlthausCEKM11,https://doi.org/10.1007/s00453-010-9406-0 +Robert Dabrowski,On Word Equations in One Variable.,2011,60,Algorithmica,4,db/journals/algorithmica/algorithmica60.html#DabrowskiP11,https://doi.org/10.1007/s00453-009-9375-3 +Panagiotis Cheilaris,A Randomized Incremental Algorithm for the Hausdorff Voronoi Diagram of Non-crossing Clusters.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#CheilarisKLP16,https://doi.org/10.1007/s00453-016-0118-y +Boris V. Cherkassky,On Implementing the Push-Relabel Method for the Maximum Flow Problem.,1997,19,Algorithmica,4,db/journals/algorithmica/algorithmica19.html#CherkasskyG97,https://doi.org/10.1007/PL00009180 +Michael Drmota,A Unified Presentation of Some Urn Models.,2001,29,Algorithmica,1,db/journals/algorithmica/algorithmica29.html#DrmotaGG01,https://doi.org/10.1007/BF02679616 +Li-Sha Huang,A Primal-Dual Algorithm for the Computation of Market Equilibrium with Logarithmic Utility Functions.,2008,51,Algorithmica,3,db/journals/algorithmica/algorithmica51.html#Huang08,https://doi.org/10.1007/s00453-007-9102-x +Matthew D. Williamson,Fast Algorithms for the Undirected Negative Cost Cycle Detection Problem.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#WilliamsonES16,https://doi.org/10.1007/s00453-014-9945-x +Ruiwen Chen,An Improved Deterministic #SAT Algorithm for Small de Morgan Formulas.,2016,76,Algorithmica,1,db/journals/algorithmica/algorithmica76.html#ChenKS16,https://doi.org/10.1007/s00453-015-0020-z +Regant Y. S. Hung,Design and Analysis of Online Batching Systems.,2010,57,Algorithmica,2,db/journals/algorithmica/algorithmica57.html#HungT10,https://doi.org/10.1007/s00453-008-9201-3 +Yiling Chen,Gaming Prediction Markets: Equilibrium Strategies with a Market Maker.,2010,58,Algorithmica,4,db/journals/algorithmica/algorithmica58.html#ChenDSRPHFG10,https://doi.org/10.1007/s00453-009-9323-2 +Seok-Hee Hong,A Linear-Time Algorithm for Testing Outer-1-Planarity.,2015,72,Algorithmica,4,db/journals/algorithmica/algorithmica72.html#HongEKLSS15,https://doi.org/10.1007/s00453-014-9890-8 +Naveen Garg 0001,Primal-Dual Approximation Algorithms for Integral Flow and Multicut in Trees.,1997,18,Algorithmica,1,db/journals/algorithmica/algorithmica18.html#GargVY97,https://doi.org/10.1007/BF02523685 +Therese C. Biedl,Three-Dimensional Orthogonal Graph Drawing with Optimal Volume.,2006,44,Algorithmica,3,db/journals/algorithmica/algorithmica44.html#BiedlTW06,https://doi.org/10.1007/s00453-005-1148-z +Jens Gramm,Automated Generation of Search Tree Algorithms for Hard Graph Modification Problems.,2004,39,Algorithmica,4,db/journals/algorithmica/algorithmica39.html#GrammGHN04,https://doi.org/10.1007/s00453-004-1090-5 +Guy Even,Online Packet-Routing in Grids with Bounded Buffers.,2017,78,Algorithmica,3,db/journals/algorithmica/algorithmica78.html#EvenM17,https://doi.org/10.1007/s00453-016-0177-0 +János Csirik,Bounded Space On-Line Bin Packing: Best Is Better than First.,2001,31,Algorithmica,2,db/journals/algorithmica/algorithmica31.html#CsirikJ01,https://doi.org/10.1007/s00453-001-0041-7 +Xavier Allamigeon,On the Complexity of Strongly Connected Components in Directed Hypergraphs.,2014,69,Algorithmica,2,db/journals/algorithmica/algorithmica69.html#Allamigeon14,https://doi.org/10.1007/s00453-012-9729-0 +Neal E. Young,The k-Server Dual and Loose Competitiveness for Paging.,1994,11,Algorithmica,6,db/journals/algorithmica/algorithmica11.html#Young94,https://doi.org/10.1007/BF01189992 +Haitao Wang 0001,Computing the Center of Uncertain Points on Tree Networks.,2017,78,Algorithmica,1,db/journals/algorithmica/algorithmica78.html#WangZ17,https://doi.org/10.1007/s00453-016-0158-3 +Jochen Könemann,Improved Approximations for Tour and Tree Covers.,2004,38,Algorithmica,3,db/journals/algorithmica/algorithmica38.html#KonemannKPS03,https://doi.org/10.1007/s00453-003-1071-0 +Xiaocheng Hu,Semi-Group Range Sum Revisited: Query-Space Lower Bound Tightened.,2018,80,Algorithmica,4,db/journals/algorithmica/algorithmica80.html#HuTYZ18,https://doi.org/10.1007/s00453-017-0307-3 +Yossi Azar,Foreword.,2009,53,Algorithmica,4,db/journals/algorithmica/algorithmica53.html#AzarE09,https://doi.org/10.1007/s00453-008-9262-3 +Benjamin Niedermann,An Algorithmic Framework for Labeling Network Maps.,2018,80,Algorithmica,5,db/journals/algorithmica/algorithmica80.html#NiedermannH18,https://doi.org/10.1007/s00453-017-0350-0 +S. Anand 0002,Minimizing Maximum (Weighted) Flow-Time on Related and Unrelated Machines.,2017,77,Algorithmica,2,db/journals/algorithmica/algorithmica77.html#0002B0G017,https://doi.org/10.1007/s00453-015-0082-y +Ashish Goel,Extending Greedy Multicast Routing to Delay Sensitive Applications.,2002,33,Algorithmica,3,db/journals/algorithmica/algorithmica33.html#GoelM02,https://doi.org/10.1007/s00453-001-0122-7 +Jean-Daniel Boissonnat,The Simplex Tree: An Efficient Data Structure for General Simplicial Complexes.,2014,70,Algorithmica,3,db/journals/algorithmica/algorithmica70.html#BoissonnatM14,https://doi.org/10.1007/s00453-014-9887-3 +Yannis E. Ioannidis,A Time Bound on the Materialization of Some Recursively Defined Views.,1986,1,Algorithmica,3,db/journals/algorithmica/algorithmica1.html#Ioannidis86,https://doi.org/10.1007/BF01840452 +Sang Won Bae,Exact Algorithms for the Bottleneck Steiner Tree Problem.,2011,61,Algorithmica,4,db/journals/algorithmica/algorithmica61.html#BaeCLT11,https://doi.org/10.1007/s00453-011-9553-y +Devdatt P. Dubhashi,Localized Techniques for Broadcasting in Wireless Sensor Networks.,2007,49,Algorithmica,4,db/journals/algorithmica/algorithmica49.html#DubhashiHOPPV07,https://doi.org/10.1007/s00453-007-9092-8 +Fangqiu Han,Observability of Lattice Graphs.,2016,76,Algorithmica,2,db/journals/algorithmica/algorithmica76.html#HanSY16,https://doi.org/10.1007/s00453-015-0049-z +Yui-Bin Chen,Time-Optimal Trajectories of a Rod in the Plane Subject to Velocity Constraints.,1997,18,Algorithmica,2,db/journals/algorithmica/algorithmica18.html#ChenI97,https://doi.org/10.1007/BF02526032 +Lior Kamma,Metric Decompositions of Path-Separable Graphs.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#KammaK17,https://doi.org/10.1007/s00453-016-0213-0 +Avrim Blum,Special Issue on New Theoretical Challenges in Machine Learning.,2015,72,Algorithmica,1,db/journals/algorithmica/algorithmica72.html#BlumL15,https://doi.org/10.1007/s00453-014-9941-1 +Elliot Anshelevich,Stable Matching with Network Externalities.,2017,78,Algorithmica,3,db/journals/algorithmica/algorithmica78.html#AnshelevichBH17,https://doi.org/10.1007/s00453-016-0197-9 +Pankaj K. Agarwal,Convex Hulls Under Uncertainty.,2017,79,Algorithmica,2,db/journals/algorithmica/algorithmica79.html#AgarwalHSYZ17,https://doi.org/10.1007/s00453-016-0195-y +Zhenbo Wang,A General Bin Packing Game: Interest Taken into Account.,2018,80,Algorithmica,5,db/journals/algorithmica/algorithmica80.html#WangHDT18,https://doi.org/10.1007/s00453-017-0361-x +James Allen Fill,Analysis of the Expected Number of Bit Comparisons Required by Quickselect.,2010,58,Algorithmica,3,db/journals/algorithmica/algorithmica58.html#FillN10,https://doi.org/10.1007/s00453-009-9294-3 +Lusheng Wang,Foreword.,2007,48,Algorithmica,2,db/journals/algorithmica/algorithmica48.html#Wang07,https://doi.org/10.1007/s00453-007-0272-3 +Eric T. Bax,A Permanent Algorithm with exp[Omega (n1/3/2 ln n )] Expected Speedup for 0-1 Matrices.,2002,32,Algorithmica,1,db/journals/algorithmica/algorithmica32.html#BaxF02,https://doi.org/10.1007/s00453-001-0072-0 +Kurt Mehlhorn,Channel Routing in Knock-Knee Mode: Simplified Algorithms and Proofs.,1986,1,Algorithmica,2,db/journals/algorithmica/algorithmica1.html#MehlhornPS86,https://doi.org/10.1007/BF01840443 +Tanja Hartmann,Regular Augmentation of Planar Graphs.,2015,73,Algorithmica,2,db/journals/algorithmica/algorithmica73.html#HartmannRR15,https://doi.org/10.1007/s00453-014-9922-4 +Esha Ghosh,Faster Parameterized Algorithms for Deletion to Split Graphs.,2015,71,Algorithmica,4,db/journals/algorithmica/algorithmica71.html#GhoshK0MPRR15,https://doi.org/10.1007/s00453-013-9837-5 +Uriel Feige,PASS Approximation: A Framework for Analyzing and Designing Heuristics.,2013,66,Algorithmica,2,db/journals/algorithmica/algorithmica66.html#FeigeIMN13,https://doi.org/10.1007/s00453-012-9646-2 +John G. Del Greco,Fast Parallel Reordering and Isomorphism Testing of k-Trees.,2002,32,Algorithmica,1,db/journals/algorithmica/algorithmica32.html#GrecoSS02,https://doi.org/10.1007/s00453-001-0052-4 +Maitri Chakraborty,A Faster Exact-Counting Protocol for Anonymous Dynamic Networks.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#ChakrabortyMM18,https://doi.org/10.1007/s00453-017-0367-4 +Alfredo García Olaverri,Augmenting the Connectivity of Outerplanar Graphs.,2010,56,Algorithmica,2,db/journals/algorithmica/algorithmica56.html#OlaverriHNT10,https://doi.org/10.1007/s00453-008-9167-1 +Alexander Golynski,Optimal Indexes for Sparse Bit Vectors.,2014,69,Algorithmica,4,db/journals/algorithmica/algorithmica69.html#GolynskiOR014,https://doi.org/10.1007/s00453-013-9767-2 +Tetsuo Asano,Algorithms for Projecting Points To Give the Most Uniform Distribution with Applications to Hashing.,1993,9,Algorithmica,6,db/journals/algorithmica/algorithmica9.html#AsanoT93,https://doi.org/10.1007/BF01190156 +Yossi Azar,A Preemptive Algorithm for Maximizing Disjoint Paths on Trees.,2010,57,Algorithmica,3,db/journals/algorithmica/algorithmica57.html#AzarFG10,https://doi.org/10.1007/s00453-009-9305-4 +Mourad El Ouali,Randomized Approximation for the Set Multicover Problem in Hypergraphs.,2016,74,Algorithmica,2,db/journals/algorithmica/algorithmica74.html#OualiMS16,https://doi.org/10.1007/s00453-014-9962-9 +Takeshi Tokuyama,Foreword.,2010,56,Algorithmica,1,db/journals/algorithmica/algorithmica56.html#Tokuyama10,https://doi.org/10.1007/s00453-008-9258-z +Philipp Kindermann,Multi-sided Boundary Labeling.,2016,76,Algorithmica,1,db/journals/algorithmica/algorithmica76.html#KindermannNRS0W16,https://doi.org/10.1007/s00453-015-0028-4 +Rolf Klein,A Dynamic Fixed Windowing Problem.,1989,4,Algorithmica,4,db/journals/algorithmica/algorithmica4.html#KleinNOW89,https://doi.org/10.1007/BF01553907 +Bert Besser,Greedy Matching: Guarantees and Limitations.,2017,77,Algorithmica,1,db/journals/algorithmica/algorithmica77.html#BesserP17,https://doi.org/10.1007/s00453-015-0062-2 +János Pach,Weaving Patterns of Lines and Line Segments in Space.,1993,9,Algorithmica,6,db/journals/algorithmica/algorithmica9.html#PachPW93,https://doi.org/10.1007/BF01190155 +Uriel Feige,Approximating the Bandwidth of Caterpillars.,2009,55,Algorithmica,1,db/journals/algorithmica/algorithmica55.html#FeigeT09,https://doi.org/10.1007/s00453-007-9002-0 +Paul S. Bonsma,Counting Hexagonal Patches and Independent Sets in Circle Graphs.,2012,63,Algorithmica,3,db/journals/algorithmica/algorithmica63.html#BonsmaB12,https://doi.org/10.1007/s00453-011-9561-y +Joshua Buresh-Oppenheim,A Stronger Model of Dynamic Programming Algorithms.,2011,60,Algorithmica,4,db/journals/algorithmica/algorithmica60.html#Buresh-OppenheimDI11,https://doi.org/10.1007/s00453-009-9385-1 +Subhash Suri,Selfish Load Balancing and Atomic Congestion Games.,2007,47,Algorithmica,1,db/journals/algorithmica/algorithmica47.html#SuriTZ07,https://doi.org/10.1007/s00453-006-1211-4 +Endre Boros,Approximation Schemes for Stochastic Mean Payoff Games with Perfect Information and Few Random Positions.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#BorosEFGMM18,https://doi.org/10.1007/s00453-017-0372-7 +Mark Braverman,A Discrepancy Lower Bound for Information Complexity.,2016,76,Algorithmica,3,db/journals/algorithmica/algorithmica76.html#BravermanW16a,https://doi.org/10.1007/s00453-015-0093-8 +Otfried Cheong,On the Number of Edges of Fan-Crossing Free Graphs.,2015,73,Algorithmica,4,db/journals/algorithmica/algorithmica73.html#CheongHKK15,https://doi.org/10.1007/s00453-014-9935-z +Sashka Davis,Models of Greedy Algorithms for Graph Problems.,2009,54,Algorithmica,3,db/journals/algorithmica/algorithmica54.html#DavisI09,https://doi.org/10.1007/s00453-007-9124-4 +Roberto Solis-Oba,A 2-Approximation Algorithm for Finding a Spanning Tree with Maximum Number of Leaves.,2017,77,Algorithmica,2,db/journals/algorithmica/algorithmica77.html#Solis-ObaBL17,https://doi.org/10.1007/s00453-015-0080-0 +Francis Y. L. Chin,A Constant-Competitive Algorithm for Online OVSF Code Assignment.,2010,56,Algorithmica,1,db/journals/algorithmica/algorithmica56.html#ChinTZ10,https://doi.org/10.1007/s00453-008-9241-8 +Torben Hagerup,Dynamic Algorithms for Graphs of Bounded Treewidth.,2000,27,Algorithmica,3,db/journals/algorithmica/algorithmica27.html#Hagerup00,https://doi.org/10.1007/s004530010021 +Hubert de Fraysseix,Representations by Contact and Intersection of Segments.,2007,47,Algorithmica,4,db/journals/algorithmica/algorithmica47.html#FraysseixM07,https://doi.org/10.1007/s00453-006-0157-x +Miklos Santha,Quantum and Classical Query Complexities of Local Search Are Polynomially Related.,2009,55,Algorithmica,3,db/journals/algorithmica/algorithmica55.html#SanthaS09,https://doi.org/10.1007/s00453-008-9169-z +Kazuo Iwano,A New Scaling Algorithm for the Maximum Mean Cut Problem.,1994,11,Algorithmica,3,db/journals/algorithmica/algorithmica11.html#IwanoMTF94,https://doi.org/10.1007/BF01240735 +David M. Mount,On the Least Trimmed Squares Estimator.,2014,69,Algorithmica,1,db/journals/algorithmica/algorithmica69.html#MountNPSW14,https://doi.org/10.1007/s00453-012-9721-8 +Sanjiv Kapoor,Lower Bounds for Maximal and Convex Layers Problems.,1989,4,Algorithmica,4,db/journals/algorithmica/algorithmica4.html#KapoorR89,https://doi.org/10.1007/BF01553901 +John Augustine,Enforcing Efficient Equilibria in Network Design Games via Subsidies.,2015,72,Algorithmica,1,db/journals/algorithmica/algorithmica72.html#AugustineCFK15,https://doi.org/10.1007/s00453-013-9845-5 +Glencora Borradaile,Polynomial-Time Approximation Schemes for Subset-Connectivity Problems in Bounded-Genus Graphs.,2014,68,Algorithmica,2,db/journals/algorithmica/algorithmica68.html#BorradaileDT14,https://doi.org/10.1007/s00453-012-9662-2 +Syed Mohammad Meesum,Rank Reduction of Oriented Graphs by Vertex and Edge Deletions.,2018,80,Algorithmica,10,db/journals/algorithmica/algorithmica80.html#MeesumS18,https://doi.org/10.1007/s00453-017-0340-2 +Noga Alon,Local Correction with Constant Error Rate.,2015,71,Algorithmica,2,db/journals/algorithmica/algorithmica71.html#AlonW15,https://doi.org/10.1007/s00453-013-9817-9 +M. Praveen,Small Vertex Cover makes Petri Net Coverability and Boundedness Easier.,2013,65,Algorithmica,4,db/journals/algorithmica/algorithmica65.html#Praveen13,https://doi.org/10.1007/s00453-012-9687-6 +Costas Busch,Sparse Covers for Planar Graphs and Graphs that Exclude a Fixed Minor.,2014,69,Algorithmica,3,db/journals/algorithmica/algorithmica69.html#BuschLT14,https://doi.org/10.1007/s00453-013-9757-4 +Michel Barbeau,Location-Oblivious Distributed Unit Disk Graph Coloring.,2011,60,Algorithmica,2,db/journals/algorithmica/algorithmica60.html#BarbeauBCCK11,https://doi.org/10.1007/s00453-009-9334-z +Daniel Delling,Time-Dependent SHARC-Routing.,2011,60,Algorithmica,1,db/journals/algorithmica/algorithmica60.html#Delling11,https://doi.org/10.1007/s00453-009-9341-0 +Vikraman Arvind,Solving Linear Equations Parameterized by Hamming Weight.,2016,75,Algorithmica,2,db/journals/algorithmica/algorithmica75.html#ArvindKKT16,https://doi.org/10.1007/s00453-015-0098-3 +Sylvain Guillemot,On the (Non-)Existence of Polynomial Kernels for P l -Free Edge Modification Problems.,2013,65,Algorithmica,4,db/journals/algorithmica/algorithmica65.html#GuillemotHPP13,https://doi.org/10.1007/s00453-012-9619-5 +Luc Devroye,Universal Asymptotics for Random Tries and PATRICIA Trees.,2005,42,Algorithmica,1,db/journals/algorithmica/algorithmica42.html#Devroye05,https://doi.org/10.1007/s00453-004-1137-7 +Ross M. McConnell,Linear-Time Recognition of Circular-Arc Graphs.,2003,37,Algorithmica,2,db/journals/algorithmica/algorithmica37.html#McConnell03,https://doi.org/10.1007/s00453-003-1032-7 +Haim Kaplan,Bounded Degree Interval Sandwich Problems.,1999,24,Algorithmica,2,db/journals/algorithmica/algorithmica24.html#KaplanS99,https://doi.org/10.1007/PL00009277 +Mercè Claverol,Stabbing Circles for Sets of Segments in the Plane.,2018,80,Algorithmica,3,db/journals/algorithmica/algorithmica80.html#ClaverolKPSS18,https://doi.org/10.1007/s00453-017-0299-z +Maw-Shang Chang,Linear-Time Algorithms for Tree Root Problems.,2015,71,Algorithmica,2,db/journals/algorithmica/algorithmica71.html#ChangKL15,https://doi.org/10.1007/s00453-013-9815-y +Richard Cole 0001,Optimal Parallel Algorithms for Point-Set and Polygon Problems.,1992,7,Algorithmica,1,db/journals/algorithmica/algorithmica7.html#ColeG92,https://doi.org/10.1007/BF01758749 +T.-H. Hubert Chan,An SDP Primal-Dual Algorithm for Approximating the Lovász-Theta Function.,2014,69,Algorithmica,3,db/journals/algorithmica/algorithmica69.html#ChanCR14,https://doi.org/10.1007/s00453-013-9756-5 +Vijaya Chung,A Randomized Linear-Work EREW PRAM Algorithm to Find a Minimum Spanning Forest.,2003,35,Algorithmica,3,db/journals/algorithmica/algorithmica35.html#Chung03,https://doi.org/10.1007/s00453-002-0998-x +R. Ravi 0001,Erratum: An Approximation Algorithm for Minimum-Cost Vertex-Connectivity Problems.,2002,34,Algorithmica,1,db/journals/algorithmica/algorithmica34.html#RaviW02,https://doi.org/10.1007/s00453-002-0970-9 +James R. Knight,Approximate Regular Expression Pattern Matching with Concave Gap Penalties.,1995,14,Algorithmica,1,db/journals/algorithmica/algorithmica14.html#KnightM95a,https://doi.org/10.1007/BF01300375 +Kun-Mao Chao,Preface Algorithms and Computation (ISAAC 2012).,2014,70,Algorithmica,4,db/journals/algorithmica/algorithmica70.html#ChaoHL14,https://doi.org/10.1007/s00453-014-9933-1 +Dan Halperin,Guest Editorial: Selected Papers from European Symposium on Algorithms.,2011,60,Algorithmica,1,db/journals/algorithmica/algorithmica60.html#HalperinM11,https://doi.org/10.1007/s00453-010-9409-x +Brigitte Vallée,Dynamical Sources in Information Theory: Fundamental Intervals and Word Prefixes.,2001,29,Algorithmica,1,db/journals/algorithmica/algorithmica29.html#Vallee01,https://doi.org/10.1007/BF02679622 +Evanthia Papadopoulou,A New Approach for the Geodesic Voronoi Diagram of Points in a Simple Polygon and Other Restricted Polygonal Domains.,1998,20,Algorithmica,4,db/journals/algorithmica/algorithmica20.html#PapadopoulouL98,https://doi.org/10.1007/PL00009199 +Rajesh Chitnis,A Tight Algorithm for Strongly Connected Steiner Subgraph on Two Terminals with Demands.,2017,77,Algorithmica,4,db/journals/algorithmica/algorithmica77.html#ChitnisEHKKS17,https://doi.org/10.1007/s00453-016-0145-8 +Djamal Belazzougui,A Framework for Space-Efficient String Kernels.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#BelazzouguiC17,https://doi.org/10.1007/s00453-017-0286-4 +Jianjun Zhou,Solving Systems of Difference Constraints Incrementally with Bidirectional Search.,2004,39,Algorithmica,3,db/journals/algorithmica/algorithmica39.html#ZhouM04,https://doi.org/10.1007/s00453-004-1081-6 +Joseph B. Kruskal,A Flexible Way of Counting Large Numbers Approximately in Small Registers.,1991,6,Algorithmica,4,db/journals/algorithmica/algorithmica6.html#KruskalG91,https://doi.org/10.1007/BF01759062 +Robert Bredereck,Using Patterns to Form Homogeneous Teams.,2015,71,Algorithmica,2,db/journals/algorithmica/algorithmica71.html#BredereckKNNP15,https://doi.org/10.1007/s00453-013-9821-0 +Thomas Jansen 0001,The Analysis of Evolutionary Algorithms - A Proof That Crossover Really Can Help.,2002,34,Algorithmica,1,db/journals/algorithmica/algorithmica34.html#JansenW02,https://doi.org/10.1007/s00453-002-0940-2 +Raffaella Gentilini,Symbolic Graphs: Linear Solutions to Connectivity Related Problems.,2008,50,Algorithmica,1,db/journals/algorithmica/algorithmica50.html#GentiliniPP08,https://doi.org/10.1007/s00453-007-9079-5 +Andreas Emil Feldmann,Balanced Partitions of Trees and Applications.,2015,71,Algorithmica,2,db/journals/algorithmica/algorithmica71.html#FeldmannF15,https://doi.org/10.1007/s00453-013-9802-3 +David R. Karger,On Approximating the Longest Path in a Graph.,1997,18,Algorithmica,1,db/journals/algorithmica/algorithmica18.html#KargerMR97,https://doi.org/10.1007/BF02523689 +Lukasz Jez,A Universal Randomized Packet Scheduling Algorithm.,2013,67,Algorithmica,4,db/journals/algorithmica/algorithmica67.html#Jez13,https://doi.org/10.1007/s00453-012-9700-0 +Yuichi Asahiro,Optimal Approximation Algorithms for Maximum Distance-Bounded Subgraph Problems.,2018,80,Algorithmica,6,db/journals/algorithmica/algorithmica80.html#AsahiroDMSS18,https://doi.org/10.1007/s00453-017-0344-y +Piotr Berman,On the Computational Complexity of Measuring Global Stability of Banking Networks.,2014,70,Algorithmica,4,db/journals/algorithmica/algorithmica70.html#BermanDKK14,https://doi.org/10.1007/s00453-013-9769-0 +Hamid Zarrabi-Zadeh,An Improved Algorithm for Online Unit Clustering.,2009,54,Algorithmica,4,db/journals/algorithmica/algorithmica54.html#Zarrabi-ZadehC09,https://doi.org/10.1007/s00453-008-9208-9 +Vasundhara Puttagunta,Accuracy vs. Lifetime: Linear Sketches for Aggregate Queries in Sensor Networks.,2007,49,Algorithmica,4,db/journals/algorithmica/algorithmica49.html#PuttaguntaK07,https://doi.org/10.1007/s00453-007-9098-2 +David S. Atkinson,Using Geometry To Solve the Transportation Problem in the Plane.,1995,13,Algorithmica,5,db/journals/algorithmica/algorithmica13.html#AtkinsonV95,https://doi.org/10.1007/BF01190848 +Susanne Albers,Online Makespan Minimization with Parallel Schedules.,2017,78,Algorithmica,2,db/journals/algorithmica/algorithmica78.html#AlbersH17,https://doi.org/10.1007/s00453-016-0172-5 +Anne Auger,Continuous Lunches Are Free Plus the Design of Optimal Optimization Algorithms.,2010,57,Algorithmica,1,db/journals/algorithmica/algorithmica57.html#AugerT10,https://doi.org/10.1007/s00453-008-9244-5 +Gregory Z. Gutin,Polynomial Kernels and User Reductions for the Workflow Satisfiability Problem.,2016,75,Algorithmica,2,db/journals/algorithmica/algorithmica75.html#GutinKW16,https://doi.org/10.1007/s00453-015-9986-9 +Farhad Shahrokhi,Drawings of Graphs on Surfaces with Few Crossings.,1996,16,Algorithmica,1,db/journals/algorithmica/algorithmica16.html#ShahrokhiSSV96,https://doi.org/10.1007/BF02086611 +Julien Basch,Reporting Red - Blue Intersections between Two Sets of Connected Line Segments.,2003,35,Algorithmica,1,db/journals/algorithmica/algorithmica35.html#BaschGR03,https://doi.org/10.1007/s00453-002-0967-4 +Andrea S. LaPaugh,Editors' Introduction.,1991,6,Algorithmica,1,db/journals/algorithmica/algorithmica6.html#LaPaughL91,https://doi.org/10.1007/BF01759031 +Marek Chrobak,Caching Is Hard - Even in the Fault Model.,2012,63,Algorithmica,4,db/journals/algorithmica/algorithmica63.html#ChrobakWMX12,https://doi.org/10.1007/s00453-011-9502-9 +Péter Biró,Three-Sided Stable Matchings with Cyclic Preferences.,2010,58,Algorithmica,1,db/journals/algorithmica/algorithmica58.html#BiroM10,https://doi.org/10.1007/s00453-009-9315-2 +éric Colin de Verdière,Multicuts in Planar and Bounded-Genus Graphs with Bounded Number of Terminals.,2017,78,Algorithmica,4,db/journals/algorithmica/algorithmica78.html#Verdiere17,https://doi.org/10.1007/s00453-016-0258-0 +Martin Farach-Colton,Exact Sublinear Binomial Sampling.,2015,73,Algorithmica,4,db/journals/algorithmica/algorithmica73.html#Farach-ColtonT15,https://doi.org/10.1007/s00453-015-0077-8 +Sándor P. Fekete,Online Square-into-Square Packing.,2017,77,Algorithmica,3,db/journals/algorithmica/algorithmica77.html#FeketeH17,https://doi.org/10.1007/s00453-016-0114-2 +Gianlorenzo D'Angelo,Computing on Rings by Oblivious Robots: A Unified Approach for Different Tasks.,2015,72,Algorithmica,4,db/journals/algorithmica/algorithmica72.html#DAngeloSNNS15,https://doi.org/10.1007/s00453-014-9892-6 +Francisco J. Soulignac,Fully Dynamic Recognition of Proper Circular-Arc Graphs.,2015,71,Algorithmica,4,db/journals/algorithmica/algorithmica71.html#Soulignac15,https://doi.org/10.1007/s00453-013-9835-7 +Timothy M. Chan,All-Pairs Shortest Paths with Real Weights in O ( n 3/log n ) Time.,2008,50,Algorithmica,2,db/journals/algorithmica/algorithmica50.html#Chan08,https://doi.org/10.1007/s00453-007-9062-1 +C. Seshadhri,Is Submodularity Testable?,2014,69,Algorithmica,1,db/journals/algorithmica/algorithmica69.html#SeshadhriV14,https://doi.org/10.1007/s00453-012-9719-2 +Susanne Albers,On the Value of Job Migration in Online Makespan Minimization.,2017,79,Algorithmica,2,db/journals/algorithmica/algorithmica79.html#AlbersH17a,https://doi.org/10.1007/s00453-016-0209-9 +Donatella Merlini,Average-Case Analysis for a Simple Compression Algorithm.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#MerliniSV98,https://doi.org/10.1007/PL00009242 +Lars Engebretsen,An Explicit Lower Bound for TSP with Distances One and Two.,2003,35,Algorithmica,4,db/journals/algorithmica/algorithmica35.html#Engebretsen03,https://doi.org/10.1007/s00453-002-1001-6 +Wojciech Jawor,Competitive Analysis of Scheduling Algorithms for Aggregated Links.,2008,51,Algorithmica,4,db/journals/algorithmica/algorithmica51.html#JaworCD08,https://doi.org/10.1007/s00453-007-9053-2 +Qian-Ping Gu,Improved Bounds on the Planar Branchwidth with Respect to the Largest Grid Minor Size.,2012,64,Algorithmica,3,db/journals/algorithmica/algorithmica64.html#GuT12,https://doi.org/10.1007/s00453-012-9627-5 +Dries R. Goossens,The Focus of Attention Problem.,2016,74,Algorithmica,2,db/journals/algorithmica/algorithmica74.html#GoossensPSW16,https://doi.org/10.1007/s00453-014-9963-8 +Kazuo Iwama,Negation-Limited Complexity of Parity and Inverters.,2009,54,Algorithmica,2,db/journals/algorithmica/algorithmica54.html#IwamaMT09,https://doi.org/10.1007/s00453-007-9135-1 +Susanne Albers,Foreword.,2006,45,Algorithmica,1,db/journals/algorithmica/algorithmica45.html#AlbersR06,https://doi.org/10.1007/s00453-005-1186-6 +Edouard Bonnet,Multi-parameter Analysis for Local Graph Partitioning Problems: Using Greediness for Parameterization.,2015,71,Algorithmica,3,db/journals/algorithmica/algorithmica71.html#BonnetEPT15,https://doi.org/10.1007/s00453-014-9920-6 +Pravin M. Vaidya,Approximate Minimum Weight Matching on Points in k-Dimensional Space.,1989,4,Algorithmica,4,db/journals/algorithmica/algorithmica4.html#Vaidya89,https://doi.org/10.1007/BF01553909 +Fidaa Abed,Near-Optimal Asymmetric Binary Matrix Partitions.,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#AbedCV18,https://doi.org/10.1007/s00453-016-0238-4 +Joan Boyar,The Seat Reservation Problem.,1999,25,Algorithmica,4,db/journals/algorithmica/algorithmica25.html#BoyarL99,https://doi.org/10.1007/PL00009286 +Lusheng Wang,Approximations for a Bottleneck Steiner Tree Problem.,2002,32,Algorithmica,4,db/journals/algorithmica/algorithmica32.html#WangD02,https://doi.org/10.1007/s00453-001-0089-4 +Danny Z. Chen,Approximating Points by a Piecewise Linear Function.,2013,66,Algorithmica,3,db/journals/algorithmica/algorithmica66.html#ChenW13,https://doi.org/10.1007/s00453-012-9658-y +Jin-yi Cai,Signature Theory in Holographic Algorithms.,2011,61,Algorithmica,4,db/journals/algorithmica/algorithmica61.html#CaiL11,https://doi.org/10.1007/s00453-009-9383-3 +János Pach,Applications of the Crossing Number.,1996,16,Algorithmica,1,db/journals/algorithmica/algorithmica16.html#PachSS96,https://doi.org/10.1007/BF02086610 +Anil Maheshwari,Geometric Path Problems with Violations.,2018,80,Algorithmica,2,db/journals/algorithmica/algorithmica80.html#MaheshwariNPRS18,https://doi.org/10.1007/s00453-016-0263-3 +Jochen Könemann,Multicommodity Flow in Trees: Packing via Covering and Iterated Relaxation.,2014,68,Algorithmica,3,db/journals/algorithmica/algorithmica68.html#KonemannPP14,https://doi.org/10.1007/s00453-012-9701-z +Luca Trevisan,Parallel Approximation Algorithms by Positive Linear Programming.,1998,21,Algorithmica,1,db/journals/algorithmica/algorithmica21.html#Trevisan98,https://doi.org/10.1007/PL00009209 +Feodor F. Dragan,Collective Tree Spanners in Graphs with Bounded Parameters.,2010,57,Algorithmica,1,db/journals/algorithmica/algorithmica57.html#DraganY10,https://doi.org/10.1007/s00453-008-9194-y +Eric Torng,A Unified Analysis of Paging and Caching.,1998,20,Algorithmica,2,db/journals/algorithmica/algorithmica20.html#Torng98,https://doi.org/10.1007/PL00009192 +N. R. Aravind,On Polynomial Kernelization of H-free Edge Deletion.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#AravindSS17,https://doi.org/10.1007/s00453-016-0215-y +Ahmed Helmi 0001,"Analysis of the Strategy ""Hiring Above the $$m$$ m -th Best Candidate"".",2014,70,Algorithmica,2,db/journals/algorithmica/algorithmica70.html#HelmiMP14,https://doi.org/10.1007/s00453-014-9895-3 +Bernard Chazelle,Splitting a Delaunay Triangulation in Linear Time.,2002,34,Algorithmica,1,db/journals/algorithmica/algorithmica34.html#ChazelleDHMST02,https://doi.org/10.1007/s00453-002-0939-8 +Dana S. Richards,Fast Heuristic Algorithms for Rectilinear Steiner Trees.,1989,4,Algorithmica,2,db/journals/algorithmica/algorithmica4.html#Richards89,https://doi.org/10.1007/BF01553886 +G. Ramalingam,Solving Systems of Difference Constraints Incrementally.,1999,23,Algorithmica,3,db/journals/algorithmica/algorithmica23.html#RamalingamSJM99,https://doi.org/10.1007/PL00009261 +Thomas Bläsius,Orthogonal Graph Drawing with Flexibility Constraints.,2014,68,Algorithmica,4,db/journals/algorithmica/algorithmica68.html#BlasiusKRW14,https://doi.org/10.1007/s00453-012-9705-8 +J. Niel de Beaudrap,Sharp Quantum versus Classical Query Complexity Separations.,2002,34,Algorithmica,4,db/journals/algorithmica/algorithmica34.html#BeaudrapCW02,https://doi.org/10.1007/s00453-002-0978-1 +Monika Rauch Henzinger,Fully Dynamic Biconnectivity in Graphs.,1995,13,Algorithmica,6,db/journals/algorithmica/algorithmica13.html#Henzinger95,https://doi.org/10.1007/BF01189067 +Adrian Dumitrescu,Minimum-Perimeter Intersecting Polygons.,2012,63,Algorithmica,3,db/journals/algorithmica/algorithmica63.html#DumitrescuJ12,https://doi.org/10.1007/s00453-011-9516-3 +David Eppstein,On the Planar Split Thickness of Graphs.,2018,80,Algorithmica,3,db/journals/algorithmica/algorithmica80.html#EppsteinKKLLMMV18,https://doi.org/10.1007/s00453-017-0328-y +Peter Epstein,A Workbench for Computational Geometry.,1994,11,Algorithmica,4,db/journals/algorithmica/algorithmica11.html#EpsteinKKMNS94,https://doi.org/10.1007/BF01187021 +Bastian Degener,Kinetic Facility Location.,2010,57,Algorithmica,3,db/journals/algorithmica/algorithmica57.html#DegenerGL10,https://doi.org/10.1007/s00453-008-9250-7 +Piotr Micek,An On-line Competitive Algorithm for Coloring Bipartite Graphs Without Long Induced Paths.,2017,77,Algorithmica,4,db/journals/algorithmica/algorithmica77.html#MicekW17,https://doi.org/10.1007/s00453-016-0130-2 +Son Hoang Dau,Polynomial Time Algorithm for Min-Ranks of Graphs with Simple Tree Structures.,2015,71,Algorithmica,1,db/journals/algorithmica/algorithmica71.html#DauC15,https://doi.org/10.1007/s00453-013-9789-9 +Donald Goldfarb,Polynomial-Time Primal Simplex Algorithms for the Minimum Cost Network Flow Problem.,1992,8,Algorithmica,2,db/journals/algorithmica/algorithmica8.html#GoldfarbH92,https://doi.org/10.1007/BF01758840 +Ioannis Caragiannis,Fractional Path Coloring in Bounded Degree Trees with Applications.,2010,58,Algorithmica,2,db/journals/algorithmica/algorithmica58.html#CaragiannisFKPR10,https://doi.org/10.1007/s00453-009-9278-3 +Chung Keung Poon,Minimizing Makespan in Batch Machine Scheduling.,2004,39,Algorithmica,2,db/journals/algorithmica/algorithmica39.html#PoonZ04,https://doi.org/10.1007/s00453-004-1083-4 +Zhi-Zhong Chen,Approximation Algorithms for Reconstructing the Duplication History of Tandem Repeats.,2009,54,Algorithmica,4,db/journals/algorithmica/algorithmica54.html#ChenWW09,https://doi.org/10.1007/s00453-008-9209-8 +Tetsuo Shibuya,Generalization of a Suffix Tree for RNA Structural Pattern Matching.,2004,39,Algorithmica,1,db/journals/algorithmica/algorithmica39.html#Shibuya04,https://doi.org/10.1007/s00453-003-1067-9 +Harry K. T. Wong,Bit Transposition for Very Large Scientific and Statistical Databases.,1986,1,Algorithmica,3,db/journals/algorithmica/algorithmica1.html#WongLORW86,https://doi.org/10.1007/BF01840449 +Ashish Chiplunkar,Metrical Service Systems with Multiple Servers.,2015,71,Algorithmica,1,db/journals/algorithmica/algorithmica71.html#ChiplunkarV15,https://doi.org/10.1007/s00453-014-9903-7 +Xin He,Efficient Parallel Algorithms for r-Dominating Set and p-Center Problems on Trees.,1990,5,Algorithmica,1,db/journals/algorithmica/algorithmica5.html#HeY90,https://doi.org/10.1007/BF01840381 +Sabah al-Binali,A Risk-Reward Framework for the Competitive Analysis of Financial Games.,1999,25,Algorithmica,1,db/journals/algorithmica/algorithmica25.html#al-Binali99,https://doi.org/10.1007/PL00009285 +Tamal K. Dey,Approximating the Medial Axis from the Voronoi Diagram with a Convergence Guarantee.,2004,38,Algorithmica,1,db/journals/algorithmica/algorithmica38.html#DeyZ03,https://doi.org/10.1007/s00453-003-1049-y +Christian Gießen,Robustness of Populations in Stochastic Environments.,2016,75,Algorithmica,3,db/journals/algorithmica/algorithmica75.html#GiessenK16,https://doi.org/10.1007/s00453-015-0072-0 +George B. Mertzios,Algorithms and Almost Tight Results for 3-Colorability of Small Diameter Graphs.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#MertziosS16,https://doi.org/10.1007/s00453-014-9949-6 +Martin Held,FIST: Fast Industrial-Strength Triangulation of Polygons.,2001,30,Algorithmica,4,db/journals/algorithmica/algorithmica30.html#Held01,https://doi.org/10.1007/s00453-001-0028-4 +Aritra Banik,Fréchet Distance Between a Line and Avatar Point Set.,2018,80,Algorithmica,9,db/journals/algorithmica/algorithmica80.html#BanikPRS18,https://doi.org/10.1007/s00453-017-0352-y +Sariel Har-Peled,How Fast Is the k-Means Method?,2005,41,Algorithmica,3,db/journals/algorithmica/algorithmica41.html#Har-PeledS05,https://doi.org/10.1007/s00453-004-1127-9 +Yui-Bin Chen,The Complexity of Oblivious Plans for Orienting and Distinguishing Polygonal Parts.,1995,14,Algorithmica,5,db/journals/algorithmica/algorithmica14.html#ChenI95,https://doi.org/10.1007/BF01192046 +Jin-Yi Cai,Erratum to: Signature Theory in Holographic Algorithms.,2016,74,Algorithmica,4,db/journals/algorithmica/algorithmica74.html#CaiL16,https://doi.org/10.1007/s00453-015-0090-y +,Editorial Note.,2013,67,Algorithmica,2,db/journals/algorithmica/algorithmica67.html#X13,https://doi.org/10.1007/s00453-013-9808-x +Benson L. Joeris,Linear-Time Recognition of Helly Circular-Arc Models and Graphs.,2011,59,Algorithmica,2,db/journals/algorithmica/algorithmica59.html#JoerisLMSS11,https://doi.org/10.1007/s00453-009-9304-5 +Rohit Khandekar,Two-stage Robust Network Design with Exponential Scenarios.,2013,65,Algorithmica,2,db/journals/algorithmica/algorithmica65.html#KhandekarKMS13,https://doi.org/10.1007/s00453-011-9596-0 +Leo van Iersel,On Unrooted and Root-Uncertain Variants of Several Well-Known Phylogenetic Network Problems.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#IerselKSSB18,https://doi.org/10.1007/s00453-017-0366-5 +Xiaotie Deng,Minimizing Mean Completion Time in a Batch Processing System.,2004,38,Algorithmica,4,db/journals/algorithmica/algorithmica38.html#DengFZZZ04,https://doi.org/10.1007/s00453-003-1053-2 +Zhi-Zhong Chen,Disk Embeddings of Planar Graphs.,2004,38,Algorithmica,4,db/journals/algorithmica/algorithmica38.html#ChenH04,https://doi.org/10.1007/s00453-003-1055-0 +Gautam Das 0001,On the Complexity of Approximating Euclidean Traveling Salesman Tours and Minimum Spanning Trees.,1997,19,Algorithmica,4,db/journals/algorithmica/algorithmica19.html#DasKS97,https://doi.org/10.1007/PL00009183 +Nikhil Bansal,On the Longest Common Rigid Subsequence Problem.,2010,56,Algorithmica,2,db/journals/algorithmica/algorithmica56.html#BansalLMZ10,https://doi.org/10.1007/s00453-008-9175-1 +Kamalika Chaudhuri,Server Allocation Algorithms for Tiered Systems.,2007,48,Algorithmica,2,db/journals/algorithmica/algorithmica48.html#ChaudhuriKPSTZ07,https://doi.org/10.1007/s00453-007-0052-0 +Sofya Raskhodnikova,Sublinear Algorithms for Approximating String Compressibility.,2013,65,Algorithmica,3,db/journals/algorithmica/algorithmica65.html#RaskhodnikovaRRS13,https://doi.org/10.1007/s00453-012-9618-6 +Joan Feigenbaum,Computing Diameter in the Streaming and Sliding-Window Models.,2005,41,Algorithmica,1,db/journals/algorithmica/algorithmica41.html#FeigenbaumKZ04,https://doi.org/10.1007/s00453-004-1105-2 +Anna Galluccio,Polynomial Time Algorithms for 2-Edge-Connectivity Augmentation Problems.,2003,36,Algorithmica,4,db/journals/algorithmica/algorithmica36.html#GalluccioP03,https://doi.org/10.1007/s00453-003-1024-7 +Jakub Pawlewicz,Order Statistics in the Farey Sequences in Sublinear Time and Counting Primitive Lattice Points in Polygons.,2009,55,Algorithmica,2,db/journals/algorithmica/algorithmica55.html#PawlewiczP09,https://doi.org/10.1007/s00453-008-9221-z +Réka Albert,Inferring (Biological) Signal Transduction Networks via Transitive Reductions of Directed Graphs.,2008,51,Algorithmica,2,db/journals/algorithmica/algorithmica51.html#AlbertDDS08,https://doi.org/10.1007/s00453-007-9055-0 +Nikhil Bansal,Guest Editors' Foreword.,2017,78,Algorithmica,4,db/journals/algorithmica/algorithmica78.html#BansalF17,https://doi.org/10.1007/s00453-017-0309-1 +Shahin Kamali,Compact Representation of Graphs of Small Clique-Width.,2018,80,Algorithmica,7,db/journals/algorithmica/algorithmica80.html#Kamali18,https://doi.org/10.1007/s00453-017-0365-6 +Nicolas Gisin,Linking Classical and Quantum Key Agreement: Is There a Classical Analog to Bound Entanglement?,2002,34,Algorithmica,4,db/journals/algorithmica/algorithmica34.html#GisinRW02,https://doi.org/10.1007/s00453-002-0972-7 +V. Berry,From Constrained to Unconstrained Maximum Agreement Subtree in Linear Time.,2008,50,Algorithmica,3,db/journals/algorithmica/algorithmica50.html#BerryPT08,https://doi.org/10.1007/s00453-007-9084-8 +Egon Balas,Weighted and Unweighted Maximum Clique Algorithms with Upper Bounds from Fractional Coloring.,1996,15,Algorithmica,5,db/journals/algorithmica/algorithmica15.html#BalasX96,https://doi.org/10.1007/BF01955041 +Frank Thomson Leighton,A 2n-2 Step Algorithm for Routing in an n*n Array with Constant-Size Queues.,1995,14,Algorithmica,4,db/journals/algorithmica/algorithmica14.html#LeightonMT95,https://doi.org/10.1007/BF01294128 +Vikraman Arvind,The Parallel Complexity of Graph Canonization Under Abelian Group Action.,2013,67,Algorithmica,2,db/journals/algorithmica/algorithmica67.html#ArvindK13,https://doi.org/10.1007/s00453-013-9805-0 +Robert F. Cohen,Combine and Conquer.,1997,18,Algorithmica,3,db/journals/algorithmica/algorithmica18.html#CohenT97,https://doi.org/10.1007/PL00009160 +Hiroshi Nagamochi,A Detachment Algorithm for Inferring a Graph from Path Frequency.,2009,53,Algorithmica,2,db/journals/algorithmica/algorithmica53.html#Nagamochi09,https://doi.org/10.1007/s00453-008-9184-0 +Karim Douïeb,Dynamic Hotlinks.,2008,50,Algorithmica,2,db/journals/algorithmica/algorithmica50.html#DouiebL08,https://doi.org/10.1007/s00453-007-9060-3 +Jin-yi Cai,Random Access to Advice Strings and Collapsing Results.,2006,46,Algorithmica,1,db/journals/algorithmica/algorithmica46.html#CaiW06,https://doi.org/10.1007/s00453-006-0078-8 +Luc Devroye,A Note on the Expected Time for Finding Maxima by List Algorithms.,1999,23,Algorithmica,2,db/journals/algorithmica/algorithmica23.html#Devroye99,https://doi.org/10.1007/PL00009256 +Herbert Edelsbrunner,Incremental Topological Flipping Works for Regular Triangulations.,1996,15,Algorithmica,3,db/journals/algorithmica/algorithmica15.html#EdelsbrunnerS96,https://doi.org/10.1007/BF01975867 +Mário César San Felice,A Randomized O(log n)-Competitive Algorithm for the Online Connected Facility Location Problem.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#FeliceWL16,https://doi.org/10.1007/s00453-016-0115-1 +Djamal Belazzougui,Compressed String Dictionary Search with Edit Distance One.,2016,74,Algorithmica,3,db/journals/algorithmica/algorithmica74.html#BelazzouguiV16,https://doi.org/10.1007/s00453-015-9990-0 +Peng Zhang 0008,Improved Approximation Algorithms for the Maximum Happy Vertices and Edges Problems.,2018,80,Algorithmica,5,db/journals/algorithmica/algorithmica80.html#ZhangXJLLM18,https://doi.org/10.1007/s00453-017-0302-8 +Sebastian Böcker,A Fast and Simple Algorithm for the Money Changing Problem.,2007,48,Algorithmica,4,db/journals/algorithmica/algorithmica48.html#BockerL07,https://doi.org/10.1007/s00453-007-0162-8 +Prosenjit Bose,Clamshell Casting.,2009,55,Algorithmica,4,db/journals/algorithmica/algorithmica55.html#BoseMSW09,https://doi.org/10.1007/s00453-007-9160-0 +Marco Pellegrini 0001,On Counting Pairs of Intersecting Segments and Off-Line Triangle Range Searching.,1997,17,Algorithmica,4,db/journals/algorithmica/algorithmica17.html#Pellegrini97,https://doi.org/10.1007/BF02523679 +Telikepalli Kavitha,An [(O)\tilde](m2n)\tilde{O}(m^{2}n) Algorithm for Minimum Cycle Basis of Graphs.,2008,52,Algorithmica,3,db/journals/algorithmica/algorithmica52.html#KavithaMMP08,https://doi.org/10.1007/s00453-007-9064-z +Dora Giammarresi,Decremental 2- and 3-Connectivity on Planar Graphs.,1996,16,Algorithmica,3,db/journals/algorithmica/algorithmica16.html#GiammarresiI96,https://doi.org/10.1007/BF01955676 +Seung-Hak Choi,Characterizing and Recognizing the Visibility Graph of a Funnel-Shaped Polygon.,1995,14,Algorithmica,1,db/journals/algorithmica/algorithmica14.html#ChoiSC95,https://doi.org/10.1007/BF01300372 +Thomas Moscibroda,Topological Implications of Selfish Neighbor Selection in Unstructured Peer-to-Peer Networks.,2011,61,Algorithmica,2,db/journals/algorithmica/algorithmica61.html#MoscibrodaSW11,https://doi.org/10.1007/s00453-010-9398-9 +Florian Diedrich,Approximation Algorithms for Scheduling with Reservations.,2010,58,Algorithmica,2,db/journals/algorithmica/algorithmica58.html#DiedrichJPT10,https://doi.org/10.1007/s00453-008-9271-2 +Zhi-Zhong Chen,Parallel Algorithms for Maximal Acyclic Sets.,1997,19,Algorithmica,3,db/journals/algorithmica/algorithmica19.html#ChenH97,https://doi.org/10.1007/PL00009178 +Rudolf Fleischer,A Tight Lower Bound for the Worst Case of Bottom-Up-Heapsort.,1994,11,Algorithmica,2,db/journals/algorithmica/algorithmica11.html#Fleischer94,https://doi.org/10.1007/BF01182770 +Kyriaki Ioannidou,The Longest Path Problem Is Polynomial on Cocomparability Graphs.,2013,65,Algorithmica,1,db/journals/algorithmica/algorithmica65.html#IoannidouN13,https://doi.org/10.1007/s00453-011-9583-5 +Greg N. Frederickson,Designing Networks with Compact Routing Tables.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#FredericksonJ88,https://doi.org/10.1007/BF01762113 +Xiaoming Sun,On the Quantum Query Complexity of Local Search in Two and Three Dimensions.,2009,55,Algorithmica,3,db/journals/algorithmica/algorithmica55.html#SunY09,https://doi.org/10.1007/s00453-008-9170-6 +Udo Adamy,Call Control in Rings.,2007,47,Algorithmica,3,db/journals/algorithmica/algorithmica47.html#AdamyAAE07,https://doi.org/10.1007/s00453-006-0187-4 +Magnus Bordewich,Constructing Tree-Child Networks from Distance Matrices.,2018,80,Algorithmica,8,db/journals/algorithmica/algorithmica80.html#BordewichST18,https://doi.org/10.1007/s00453-017-0320-6 +Leah Epstein,Bin Packing with Rejection Revisited.,2010,56,Algorithmica,4,db/journals/algorithmica/algorithmica56.html#Epstein10,https://doi.org/10.1007/s00453-008-9188-9 +Lars Arge,Cache-Oblivious R-Trees.,2009,53,Algorithmica,1,db/journals/algorithmica/algorithmica53.html#ArgeBH09,https://doi.org/10.1007/s00453-007-9007-8 +Andreas Bärtschi,Conflict-Free Chromatic Art Gallery Coverage.,2014,68,Algorithmica,1,db/journals/algorithmica/algorithmica68.html#BartschiS14,https://doi.org/10.1007/s00453-012-9732-5 +David Pritchard,Approximability of Sparse Integer Programs.,2011,61,Algorithmica,1,db/journals/algorithmica/algorithmica61.html#PritchardC11,https://doi.org/10.1007/s00453-010-9431-z +Helmut Prodinger,Philippe Flajolet's Research in Analysis of Algorithms and Combinatorics.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#ProdingerS98,https://doi.org/10.1007/PL00009230 +Prabhakar Raghavan,Multiterminal Global Routing: A Deterministic Approximation Scheme.,1991,6,Algorithmica,1,db/journals/algorithmica/algorithmica6.html#RaghavanT91,https://doi.org/10.1007/BF01759035 +Prosenjit Bose,Guest Editors' Foreword.,2005,42,Algorithmica,1,db/journals/algorithmica/algorithmica42.html#BoseM05,https://doi.org/10.1007/s00453-004-1135-9 +Richard B. Borie,Generation of Polynomial-Time Algorithms for Some Optimization Problems on Tree-Decomposable Graphs.,1995,14,Algorithmica,2,db/journals/algorithmica/algorithmica14.html#Borie95,https://doi.org/10.1007/BF01293664 +Hagit Attiya,Transactional Contention Management as a Non-Clairvoyant Scheduling Problem.,2010,57,Algorithmica,1,db/journals/algorithmica/algorithmica57.html#AttiyaEST10,https://doi.org/10.1007/s00453-008-9195-x +R. Ravi 0001,Approximation Algorithms for Degree-Constrained Minimum-Cost Network-Design Problems.,2001,31,Algorithmica,1,db/journals/algorithmica/algorithmica31.html#RaviMRRH01,https://doi.org/10.1007/s00453-001-0038-2 +Bruce M. Maggs,Improved Routing and Sorting on Multibutterflies.,2000,28,Algorithmica,4,db/journals/algorithmica/algorithmica28.html#MaggsV00,https://doi.org/10.1007/s004530010049 +Joachim Reichel,Evolutionary Algorithms and Matroid Optimization Problems.,2010,57,Algorithmica,1,db/journals/algorithmica/algorithmica57.html#ReichelS10,https://doi.org/10.1007/s00453-008-9253-4 +Amitabha Bagchi,Biased Skip Lists.,2005,42,Algorithmica,1,db/journals/algorithmica/algorithmica42.html#BagchiBG05,https://doi.org/10.1007/s00453-004-1138-6 +Martin Hoefer,Non-Cooperative Tree Creation.,2009,53,Algorithmica,1,db/journals/algorithmica/algorithmica53.html#Hoefer09,https://doi.org/10.1007/s00453-007-9014-9 +Vincenzo Bonifaci,Feasibility Analysis of Sporadic Real-Time Multiprocessor Task Systems.,2012,63,Algorithmica,4,db/journals/algorithmica/algorithmica63.html#BonifaciM12,https://doi.org/10.1007/s00453-011-9505-6 +Masakazu Kojima,Determining Basic Variables of Optimal Solutions in Karmarkar's New LP Algorithm.,1986,1,Algorithmica,4,db/journals/algorithmica/algorithmica1.html#Kojima86,https://doi.org/10.1007/BF01840459 +Irene Finocchi,Sorting and Searching in Faulty Memories.,2008,52,Algorithmica,3,db/journals/algorithmica/algorithmica52.html#FinocchiI08,https://doi.org/10.1007/s00453-007-9088-4 +Kurt Mehlhorn,On the Embedding Phase of the Hopcroft and Tarjan Planarity Testing Algorithm.,1996,16,Algorithmica,2,db/journals/algorithmica/algorithmica16.html#MehlhornM96,https://doi.org/10.1007/BF01940648 +Xi Chen 0001,On Incentive Compatible Competitive Selection Protocols.,2011,61,Algorithmica,2,db/journals/algorithmica/algorithmica61.html#ChenDL11,https://doi.org/10.1007/s00453-010-9395-z +Emile H. L. Aarts,Boltzmann Machines as a Model for Parallel Annealing.,1991,6,Algorithmica,3,db/journals/algorithmica/algorithmica6.html#AartsK91,https://doi.org/10.1007/BF01759053 +Shuo-Yan Chou,A Linear-Time Algorithm for Constructing a Circular Visibility Diagram.,1995,14,Algorithmica,3,db/journals/algorithmica/algorithmica14.html#ChouW95,https://doi.org/10.1007/BF01206329 +San Ling,Hardness of k-LWE and Applications in Traitor Tracing.,2017,79,Algorithmica,4,db/journals/algorithmica/algorithmica79.html#LingPSS17,https://doi.org/10.1007/s00453-016-0251-7 +Sanjit Chatterjee,A Closer Look at Multiple Forking: Leveraging (In)Dependence for a Tighter Bound.,2016,74,Algorithmica,4,db/journals/algorithmica/algorithmica74.html#ChatterjeeK16,https://doi.org/10.1007/s00453-015-9997-6 +Christine Chung,The Power of Fair Pricing Mechanisms.,2012,63,Algorithmica,3,db/journals/algorithmica/algorithmica63.html#ChungLPR12,https://doi.org/10.1007/s00453-011-9587-1 +Michael B. Dillencourt,Using Topological Sweep to Extract the Boundaries of Regions in Maps Represented by Region Quadtrees.,1996,15,Algorithmica,1,db/journals/algorithmica/algorithmica15.html#DillencourtS96,https://doi.org/10.1007/BF01942608 +Sigve Hortemo Sæther,Between Treewidth and Clique-Width.,2016,75,Algorithmica,1,db/journals/algorithmica/algorithmica75.html#SaetherT16,https://doi.org/10.1007/s00453-015-0033-7 +Frédéric Havet,On the Grundy and b-Chromatic Numbers of a Graph.,2013,65,Algorithmica,4,db/journals/algorithmica/algorithmica65.html#HavetS13,https://doi.org/10.1007/s00453-011-9604-4 +Stephan G. Wagner,Asymptotic Enumeration of Extensional Acyclic Digraphs.,2013,66,Algorithmica,4,db/journals/algorithmica/algorithmica66.html#Wagner13,https://doi.org/10.1007/s00453-012-9725-4 +Alon Efrat,Geometry Helps in Bottleneck Matching and Related Problems.,2001,31,Algorithmica,1,db/journals/algorithmica/algorithmica31.html#EfratIK01,https://doi.org/10.1007/s00453-001-0016-8 +Richard J. Anderson,Parallel Algorithms for Arrangements.,1996,15,Algorithmica,2,db/journals/algorithmica/algorithmica15.html#AndersonBB96,https://doi.org/10.1007/BF01941684 +Nicolas Basset,Counting and Generating Permutations in Regular Classes.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#Basset16,https://doi.org/10.1007/s00453-016-0136-9 +Jerffeson Teixeira de Souza,Parallelizing Feature Selection.,2006,45,Algorithmica,3,db/journals/algorithmica/algorithmica45.html#SouzaMJ06,https://doi.org/10.1007/s00453-006-1220-3 +Kazumiti Numata,Splitting a Configuration in a Simplex.,1993,9,Algorithmica,6,db/journals/algorithmica/algorithmica9.html#NumataT93,https://doi.org/10.1007/BF01190161 +Rafael C. Carrasco,Incremental Construction of Minimal Tree Automata.,2009,55,Algorithmica,1,db/journals/algorithmica/algorithmica55.html#CarrascoDF09,https://doi.org/10.1007/s00453-008-9172-4 +Danny Hermelin,A Completeness Theory for Polynomial (Turing) Kernelization.,2015,71,Algorithmica,3,db/journals/algorithmica/algorithmica71.html#HermelinKSWW15,https://doi.org/10.1007/s00453-014-9910-8 +Dimitris Fotakis,Resolving Braess's Paradox in Random Networks.,2017,78,Algorithmica,3,db/journals/algorithmica/algorithmica78.html#FotakisKLS17,https://doi.org/10.1007/s00453-016-0175-2 +édouard Bonnet,Complexity of Token Swapping and Its Variants.,2018,80,Algorithmica,9,db/journals/algorithmica/algorithmica80.html#BonnetMR18,https://doi.org/10.1007/s00453-017-0387-0 +Amotz Bar-Noy,Average Case Network Lifetime on an Interval with Adjustable Sensing Ranges.,2015,72,Algorithmica,1,db/journals/algorithmica/algorithmica72.html#Bar-NoyB15,https://doi.org/10.1007/s00453-013-9853-5 +Joseph Cheriyan,On Rooted Node-Connectivity Problems.,2001,30,Algorithmica,3,db/journals/algorithmica/algorithmica30.html#CheriyanJN01,https://doi.org/10.1007/s00453-001-0017-7 +Frédéric Giroire,On the Complexity of Compressing Two Dimensional Routing Tables with Order.,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#GiroireHM18,https://doi.org/10.1007/s00453-016-0243-7 +Bernard Chazelle,An Algorithm for Segment-Dragging and Its Implementation.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#Chazelle88,https://doi.org/10.1007/BF01762115 +Pietro Simone Oliveto,Simplified Drift Analysis for Proving Lower Bounds in©0*Evolutionary Computation.,2011,59,Algorithmica,3,db/journals/algorithmica/algorithmica59.html#OlivetoW11,https://doi.org/10.1007/s00453-010-9387-z +Marshall W. Bern,On-Line Algorithms for Locating Checkpoints.,1994,11,Algorithmica,1,db/journals/algorithmica/algorithmica11.html#BernGRS94,https://doi.org/10.1007/BF01294262 +Veli Mäkinen,Approximate Matching of Run-Length Compressed Strings.,2003,35,Algorithmica,4,db/journals/algorithmica/algorithmica35.html#MakinenUN03,https://doi.org/10.1007/s00453-002-1005-2 +Bhubaneswar Mishra,Bidirectional Edges Problem: Part I-A Simple Algorithm.,1996,15,Algorithmica,3,db/journals/algorithmica/algorithmica15.html#Mishra96,https://doi.org/10.1007/BF01975869 +Laurent Bulteau,Triangle Counting in Dynamic Graph Streams.,2016,76,Algorithmica,1,db/journals/algorithmica/algorithmica76.html#BulteauFKP16,https://doi.org/10.1007/s00453-015-0036-4 +Mark H. Overmars,Improved Bounds for Electing a Leader in a Synchronous Ring.,1997,18,Algorithmica,2,db/journals/algorithmica/algorithmica18.html#OvermarsS97,https://doi.org/10.1007/BF02526036 +Mark de Berg,Guest Editorial.,2012,63,Algorithmica,4,db/journals/algorithmica/algorithmica63.html#Berg12,https://doi.org/10.1007/s00453-012-9617-7 +Jirí Matousek,Efficient Randomized Algorithms for the Repeated Median Line Estimator.,1998,20,Algorithmica,2,db/journals/algorithmica/algorithmica20.html#MatousekMN98,https://doi.org/10.1007/PL00009190 +Pavel Klavík,Extending Partial Representations of Proper and Unit Interval Graphs.,2017,77,Algorithmica,4,db/journals/algorithmica/algorithmica77.html#KlavikKORSSV17,https://doi.org/10.1007/s00453-016-0133-z +Michael T. Goodrich,An Addendum to Parallel Methods for Visibility and Shortest-Path Problems in Simple Polygons.,1993,9,Algorithmica,5,db/journals/algorithmica/algorithmica9.html#GoodrichSG93,https://doi.org/10.1007/BF01187038 +Vladimir Kolmogorov,A Faster Algorithm for Computing the Principal Sequence of Partitions of a Graph.,2010,56,Algorithmica,4,db/journals/algorithmica/algorithmica56.html#Kolmogorov10,https://doi.org/10.1007/s00453-008-9177-z +Michael Drmota,An Asymptotic Analysis of Labeled and Unlabeled k-Trees.,2016,75,Algorithmica,4,db/journals/algorithmica/algorithmica75.html#DrmotaJ16,https://doi.org/10.1007/s00453-015-0039-1 +Falk Hüffner,Algorithm Engineering for Color-Coding with Applications to Signaling Pathway Detection.,2008,52,Algorithmica,2,db/journals/algorithmica/algorithmica52.html#HuffnerWZ08,https://doi.org/10.1007/s00453-007-9008-7 +Itai Dinur,Improved Generic Attacks Against Hash-Based MACs and HAIFA.,2017,79,Algorithmica,4,db/journals/algorithmica/algorithmica79.html#DinurL17,https://doi.org/10.1007/s00453-016-0236-6 +Jesper Nederlof,Inclusion/Exclusion Meets Measure and Conquer.,2014,69,Algorithmica,3,db/journals/algorithmica/algorithmica69.html#NederlofRD14,https://doi.org/10.1007/s00453-013-9759-2 +Shun Sato,Combinatorial Relaxation Algorithm for the Entire Sequence of the Maximum Degree of Minors.,2017,77,Algorithmica,3,db/journals/algorithmica/algorithmica77.html#Sato17,https://doi.org/10.1007/s00453-015-0109-4 +L. Sunil Chandran,Geometric Representation of Graphs in Low Dimension Using Axis Parallel Boxes.,2010,56,Algorithmica,2,db/journals/algorithmica/algorithmica56.html#ChandranFS10,https://doi.org/10.1007/s00453-008-9163-5 +Travis Gagie,Guest Editorial: Special Issue on Compact Data Structures.,2018,80,Algorithmica,7,db/journals/algorithmica/algorithmica80.html#GagieN18,https://doi.org/10.1007/s00453-017-0381-6 +Frank Neumann 0001,Computing Minimum Cuts by Randomized Search Heuristics.,2011,59,Algorithmica,3,db/journals/algorithmica/algorithmica59.html#NeumannRS11,https://doi.org/10.1007/s00453-009-9370-8 +Gilad Goraly,Multi-Color Pebble Motion on Graphs.,2010,58,Algorithmica,3,db/journals/algorithmica/algorithmica58.html#GoralyH10,https://doi.org/10.1007/s00453-009-9290-7 +Mong-Jen Kao,Capacitated Domination Problem.,2011,60,Algorithmica,2,db/journals/algorithmica/algorithmica60.html#KaoLL11,https://doi.org/10.1007/s00453-009-9336-x +Svante Carlsson,Computing Vision Points in Polygons.,1999,24,Algorithmica,1,db/journals/algorithmica/algorithmica24.html#CarlssonN99,https://doi.org/10.1007/PL00009271 +David Eppstein,Algorithms for Coloring Quadtrees.,2002,32,Algorithmica,1,db/journals/algorithmica/algorithmica32.html#EppsteinBH02,https://doi.org/10.1007/s00453-001-0054-2 +Victor Chepoi,Seriation in the Presence of Errors: A Factor 16 Approximation Algorithm for l∞-Fitting Robinson Structures to Distances.,2011,59,Algorithmica,4,db/journals/algorithmica/algorithmica59.html#ChepoiS11,https://doi.org/10.1007/s00453-009-9319-y +Paola Bertolazzi,Upward Drawings of Triconnected Digraphs.,1994,12,Algorithmica,6,db/journals/algorithmica/algorithmica12.html#BertolazziBLM94,https://doi.org/10.1007/BF01188716 +Chung-Shou Liao,Power Domination in Circular-Arc Graphs.,2013,65,Algorithmica,2,db/journals/algorithmica/algorithmica65.html#LiaoL13,https://doi.org/10.1007/s00453-011-9599-x +Andrew M. Sutton,Superpolynomial Lower Bounds for the (1+1) EA on Some Easy Combinatorial Problems.,2016,75,Algorithmica,3,db/journals/algorithmica/algorithmica75.html#Sutton16,https://doi.org/10.1007/s00453-015-0027-5 +Martin Farach-Colton,Initializing Sensor Networks of Non-uniform Density in the Weak Sensor Model.,2015,73,Algorithmica,1,db/journals/algorithmica/algorithmica73.html#Farach-ColtonM15,https://doi.org/10.1007/s00453-014-9905-5 +Oren Salzman,Motion Planning via Manifold Samples.,2013,67,Algorithmica,4,db/journals/algorithmica/algorithmica67.html#SalzmanHRH13,https://doi.org/10.1007/s00453-012-9736-1 +Joseph Y.-T. Leung,A New Algorithm for Scheduling Periodic Real-Time Tasks.,1989,4,Algorithmica,2,db/journals/algorithmica/algorithmica4.html#Leung89,https://doi.org/10.1007/BF01553887 +Anupam Gupta,Cost-Sharing Mechanisms for Network Design.,2008,50,Algorithmica,1,db/journals/algorithmica/algorithmica50.html#GuptaST08,https://doi.org/10.1007/s00453-007-9065-y +Robon Liu,On Partitioning Rectilinear Polygons into Star-Shaped Polygons.,1991,6,Algorithmica,6,db/journals/algorithmica/algorithmica6.html#LiuN91,https://doi.org/10.1007/BF01759071 +Jesper Nederlof,Fast Polynomial-Space Algorithms Using Inclusion-Exclusion.,2013,65,Algorithmica,4,db/journals/algorithmica/algorithmica65.html#Nederlof13,https://doi.org/10.1007/s00453-012-9630-x +David M. Choy,Efficiently Extendible Mappings for Balanced Data Distribution.,1996,16,Algorithmica,2,db/journals/algorithmica/algorithmica16.html#ChoyFS96,https://doi.org/10.1007/BF01940647 +Rinat Ben Avraham,Partial-Matching RMS Distance Under Translation: Combinatorics and Algorithms.,2018,80,Algorithmica,8,db/journals/algorithmica/algorithmica80.html#AvrahamHJKRST18,https://doi.org/10.1007/s00453-017-0326-0 +Ulrik Brandes,Colored Simultaneous Geometric Embeddings and Universal Pointsets.,2011,60,Algorithmica,3,db/journals/algorithmica/algorithmica60.html#BrandesEEFFGGHKKa11,https://doi.org/10.1007/s00453-010-9433-x +Charalampos Papamanthou,Authenticated Hash Tables Based on Cryptographic Accumulators.,2016,74,Algorithmica,2,db/journals/algorithmica/algorithmica74.html#PapamanthouTT16,https://doi.org/10.1007/s00453-014-9968-3 +Hosam M. Mahmoud,Probabilistic Analysis of MULTIPLE QUICK SELECT.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#MahmoudS98,https://doi.org/10.1007/PL00009241 +Subhash Khot,Inapproximability Results for Combinatorial Auctions with Submodular Utility Functions.,2008,52,Algorithmica,1,db/journals/algorithmica/algorithmica52.html#KhotLMM08,https://doi.org/10.1007/s00453-007-9105-7 +Ross M. McConnell,An O(n®8*) Incremental Algorithm for Modular Decomposition of Graphs and 2-Structures.,1995,14,Algorithmica,3,db/journals/algorithmica/algorithmica14.html#McConnell95,https://doi.org/10.1007/BF01206330 +T. Matsui,A Flexible Algorithm for Generating All the Spanning Trees in Undirected Graphs.,1997,18,Algorithmica,4,db/journals/algorithmica/algorithmica18.html#Matsui97,https://doi.org/10.1007/PL00009171 +David R. Wood,Minimising the Number of Bends and Volume in 3-Dimensional Orthogonal Graph Drawings with a Diagonal Vertex Layout.,2004,39,Algorithmica,3,db/journals/algorithmica/algorithmica39.html#Wood04,https://doi.org/10.1007/s00453-004-1091-4 +Todd A. Brun,Remotely Prepared Entanglement: a Quantum Web Page.,2002,34,Algorithmica,4,db/journals/algorithmica/algorithmica34.html#Brun02,https://doi.org/10.1007/s00453-002-0974-5 +Matthew J. Patitz,Identifying Shapes Using Self-assembly.,2012,64,Algorithmica,3,db/journals/algorithmica/algorithmica64.html#PatitzS12,https://doi.org/10.1007/s00453-011-9549-7 +Maarten Löffler,Largest and Smallest Convex Hulls for Imprecise Points.,2010,56,Algorithmica,2,db/journals/algorithmica/algorithmica56.html#LofflerK10,https://doi.org/10.1007/s00453-008-9174-2 +Sariel Har-Peled,Fast Algorithms for Computing the Smallest k-Enclosing Circle.,2005,41,Algorithmica,3,db/journals/algorithmica/algorithmica41.html#Har-PeledM05,https://doi.org/10.1007/s00453-004-1123-0 +Kuo-Hui Tsai,Fast Algorithms for the Dominating Set Problem on Permutation Graphs.,1993,9,Algorithmica,6,db/journals/algorithmica/algorithmica9.html#TsaiH93,https://doi.org/10.1007/BF01190158 +Isabelle Sivignon,Decomposition of a Three-Dimensional Discrete Object Surface into Discrete Plane Pieces.,2004,38,Algorithmica,1,db/journals/algorithmica/algorithmica38.html#SivignonDC03,https://doi.org/10.1007/s00453-003-1041-6 +Ivan Bliznets,Parameterized Complexity of Superstring Problems.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#BliznetsFGKKS17,https://doi.org/10.1007/s00453-016-0193-0 +Tak Wah Lam,Finding Least-Weight Subsequences with Fewer Processors.,1993,9,Algorithmica,6,db/journals/algorithmica/algorithmica9.html#LamC93,https://doi.org/10.1007/BF01190159 +Marek Cygan,Foreword: Special Issue on IPEC 2014.,2016,75,Algorithmica,2,db/journals/algorithmica/algorithmica75.html#CyganH16,https://doi.org/10.1007/s00453-016-0151-x +Khaled M. Elbassioni,Improved Approximations for Guarding 1.5-Dimensional Terrains.,2011,60,Algorithmica,2,db/journals/algorithmica/algorithmica60.html#ElbassioniKMMS11,https://doi.org/10.1007/s00453-009-9358-4 +Zahed Rahmati,A Clustering-Based Approach to Kinetic Closest Pair.,2018,80,Algorithmica,10,db/journals/algorithmica/algorithmica80.html#RahmatiC18,https://doi.org/10.1007/s00453-017-0338-9 +Elon Rimon,Construction of C-Space Roadmaps from Local Sensory Data. What Should the Sensors Look For?,1997,17,Algorithmica,4,db/journals/algorithmica/algorithmica17.html#Rimon97,https://doi.org/10.1007/BF02523678 +Mingyu Xiao,A Quadratic Vertex Kernel for Feedback Arc Set in Bipartite Tournaments.,2015,71,Algorithmica,1,db/journals/algorithmica/algorithmica71.html#XiaoG15,https://doi.org/10.1007/s00453-013-9783-2 +Sariel Har-Peled,Approximating the Maximum Overlap of Polygons under Translation.,2017,78,Algorithmica,1,db/journals/algorithmica/algorithmica78.html#Har-PeledR17,https://doi.org/10.1007/s00453-016-0152-9 +Evanthia Papadopoulou,The Higher-Order Voronoi Diagram of Line Segments.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#PapadopoulouZ16,https://doi.org/10.1007/s00453-014-9950-0 +Khaled M. Elbassioni,Guest Editors' Foreword.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#ElbassioniM17,https://doi.org/10.1007/s00453-017-0359-4 +José Soares,Algorithms for Maximum Independent Set in Convex Bipartite Graphs.,2009,53,Algorithmica,1,db/journals/algorithmica/algorithmica53.html#SoaresS09,https://doi.org/10.1007/s00453-007-9006-9 +Leszek Gasieniec,Deterministic Communication in Radio Networks with Large Labels.,2007,47,Algorithmica,1,db/journals/algorithmica/algorithmica47.html#GasieniecPPR07,https://doi.org/10.1007/s00453-006-1212-3 +Alberto Apostolico,Data Structures and Algorithms for the String Statistics Problem.,1996,15,Algorithmica,5,db/journals/algorithmica/algorithmica15.html#ApostolicoP96,https://doi.org/10.1007/BF01955046 +Sanjoy Dasgupta,Randomized Partition Trees for Nearest Neighbor Search.,2015,72,Algorithmica,1,db/journals/algorithmica/algorithmica72.html#DasguptaS15,https://doi.org/10.1007/s00453-014-9885-5 +Konstantinos Kalpakis,Scheduling Tree DAGs on Parallel Architectures.,1996,15,Algorithmica,4,db/journals/algorithmica/algorithmica15.html#KalpakisY96,https://doi.org/10.1007/BF01961545 +Ioannis Caragiannis,Tight Bounds for Selfish and Greedy Load Balancing.,2011,61,Algorithmica,3,db/journals/algorithmica/algorithmica61.html#CaragiannisFKKM11,https://doi.org/10.1007/s00453-010-9427-8 +Mathew C. Francis,The Maximum Clique Problem in Multiple Interval Graphs.,2015,71,Algorithmica,4,db/journals/algorithmica/algorithmica71.html#Francis0O15,https://doi.org/10.1007/s00453-013-9828-6 +Zvika Brakerski,General Perfectly Periodic Scheduling.,2006,45,Algorithmica,2,db/journals/algorithmica/algorithmica45.html#BrakerskiNP06,https://doi.org/10.1007/s00453-005-1182-x +Francis Y. L. Chin,Online Scheduling with Partial Job Values: Does Timesharing or Randomization Help?,2003,37,Algorithmica,3,db/journals/algorithmica/algorithmica37.html#ChinF03,https://doi.org/10.1007/s00453-003-1025-6 +Ashish Goel,Simultaneous Optimization via Approximate Majorization for Concave Profits or Convex Costs.,2006,44,Algorithmica,4,db/journals/algorithmica/algorithmica44.html#GoelM06,https://doi.org/10.1007/s00453-005-1177-7 +Wiebke Höhn,How Unsplittable-Flow-Covering Helps Scheduling with Job-Dependent Cost Functions.,2018,80,Algorithmica,4,db/journals/algorithmica/algorithmica80.html#HohnMW18,https://doi.org/10.1007/s00453-017-0300-x +Michael A. Bekos,Two-Page Book Embeddings of 4-Planar Graphs.,2016,75,Algorithmica,1,db/journals/algorithmica/algorithmica75.html#BekosGR16,https://doi.org/10.1007/s00453-015-0016-8 +Bala Swaminathan,An Incremental Distributed Algorithm for Computing Biconnected Components in Dynamic Graphs.,1998,22,Algorithmica,3,db/journals/algorithmica/algorithmica22.html#SwaminathanG98,https://doi.org/10.1007/PL00009226 +Magnús M. Halldórsson,Sum Coloring Interval and k-Claw Free Graphs with Application to Scheduling Dependent Jobs.,2003,37,Algorithmica,3,db/journals/algorithmica/algorithmica37.html#HalldorssonKS03,https://doi.org/10.1007/s00453-003-1031-8 +George Karakostas,Edge Pricing of Multicommodity Networks for Selfish Users with Elastic Demands.,2009,53,Algorithmica,2,db/journals/algorithmica/algorithmica53.html#KarakostasK09a,https://doi.org/10.1007/s00453-008-9181-3 +L. Paul Chew,Sorting Helps for Voronoi Diagrams.,1997,18,Algorithmica,2,db/journals/algorithmica/algorithmica18.html#ChewF97,https://doi.org/10.1007/BF02526034 +Dimitris Fotakis,Minimum Congestion Redundant Assignments to Tolerate Random Faults.,2002,32,Algorithmica,3,db/journals/algorithmica/algorithmica32.html#FotakisS02,https://doi.org/10.1007/s00453-001-0080-0 +Andrew Chi-Chih Yao,On Selecting the k Largest with Median Tests.,1989,4,Algorithmica,2,db/journals/algorithmica/algorithmica4.html#Yao89,https://doi.org/10.1007/BF01553891 +Toshimasa Ishii,Minimum Augmentation of Edge-Connectivity between Vertices and Sets of Vertices in Undirected Graphs.,2010,56,Algorithmica,4,db/journals/algorithmica/algorithmica56.html#IshiiAN10,https://doi.org/10.1007/s00453-008-9178-y +Christoph Ambühl,Single Machine Precedence Constrained Scheduling Is a Vertex Cover Problem.,2009,53,Algorithmica,4,db/journals/algorithmica/algorithmica53.html#AmbuhlM09,https://doi.org/10.1007/s00453-008-9251-6 +Daniel S. Hirschberg,The Set-Set LCS Problem.,1989,4,Algorithmica,4,db/journals/algorithmica/algorithmica4.html#HirschbergL89,https://doi.org/10.1007/BF01553904 +Pim van 't Hof,Proper Interval Vertex Deletion.,2013,65,Algorithmica,4,db/journals/algorithmica/algorithmica65.html#HofV13,https://doi.org/10.1007/s00453-012-9661-3 +Mikhail J. Atallah,Topological Numbering of Features on a Mesh.,1991,6,Algorithmica,5,db/journals/algorithmica/algorithmica6.html#AtallahHW91,https://doi.org/10.1007/BF01759070 +Bernard Chazelle,Ray Shooting in Polygons Using Geodesic Triangulations.,1994,12,Algorithmica,1,db/journals/algorithmica/algorithmica12.html#ChazelleEGGHSS94,https://doi.org/10.1007/BF01377183 +Decheng Dai,Another Sub-exponential Algorithm for the Simple Stochastic Game.,2011,61,Algorithmica,4,db/journals/algorithmica/algorithmica61.html#DaiG11,https://doi.org/10.1007/s00453-010-9413-1 +Christos H. Papadimitriou,Designing Secure Communication Protocols from Trust Specification.,1994,11,Algorithmica,5,db/journals/algorithmica/algorithmica11.html#PapadimitriouRS94,https://doi.org/10.1007/BF01293268 +Elaine Angelino,External-Memory Multimaps.,2013,67,Algorithmica,1,db/journals/algorithmica/algorithmica67.html#AngelinoGMT13,https://doi.org/10.1007/s00453-013-9770-7 +Arvind Gupta,Finding Largest Subtrees and Smallest Supertrees.,1998,21,Algorithmica,2,db/journals/algorithmica/algorithmica21.html#GuptaN98,https://doi.org/10.1007/PL00009212 +Jacob T. Schwartz,"Finding Effective ""Force Targets"" for Two-Dimensional Multifinger Frictional Grips.",1992,8,Algorithmica,1,db/journals/algorithmica/algorithmica8.html#SchwartzS92,https://doi.org/10.1007/BF01758833 +Ee-Chien Chang,A Simultaneous Search Problem.,2000,26,Algorithmica,2,db/journals/algorithmica/algorithmica26.html#ChangY00,https://doi.org/10.1007/s004539910012 +David Bremner,Small Strictly Convex Quadrilateral Meshes of Point Sets.,2004,38,Algorithmica,2,db/journals/algorithmica/algorithmica38.html#BremnerHRS03,https://doi.org/10.1007/s00453-003-1062-1 +Rebecca Robinson,Structure and Recognition of Graphs with No 6-wheel Subdivision.,2009,55,Algorithmica,4,db/journals/algorithmica/algorithmica55.html#RobinsonF09,https://doi.org/10.1007/s00453-007-9162-y +Paul Czerwinski,Optimal VLSI Graph Embeddings in Variable Aspect Ratio Rectangles.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#CzerwinskiR88,https://doi.org/10.1007/BF01762128 +Zoltán Király,Better and Simpler Approximation Algorithms for the Stable Marriage Problem.,2011,60,Algorithmica,1,db/journals/algorithmica/algorithmica60.html#Kiraly11,https://doi.org/10.1007/s00453-009-9371-7 +Yoann Dieudonné,Anonymous Meeting in Networks.,2016,74,Algorithmica,2,db/journals/algorithmica/algorithmica74.html#DieudonneP16,https://doi.org/10.1007/s00453-015-9982-0 +Surender Baswana,Approximate Shortest Paths Avoiding a Failed Vertex: Near Optimal Data Structures for Undirected Unweighted Graphs.,2013,66,Algorithmica,1,db/journals/algorithmica/algorithmica66.html#BaswanaK13,https://doi.org/10.1007/s00453-012-9621-y +Peter Hui,Train Tracks and Confluent Drawings.,2007,47,Algorithmica,4,db/journals/algorithmica/algorithmica47.html#HuiPSS07,https://doi.org/10.1007/s00453-006-0165-x +Sergio Cabello,The Complexity of Separating Points in the Plane.,2016,74,Algorithmica,2,db/journals/algorithmica/algorithmica74.html#CabelloG16,https://doi.org/10.1007/s00453-014-9965-6 +Andrzej Lingas,A Fast Parallel Algorithm for Minimum-Cost Small Integral Flows.,2015,72,Algorithmica,2,db/journals/algorithmica/algorithmica72.html#LingasP15,https://doi.org/10.1007/s00453-013-9865-1 +Ming-Yang Kao,An Optimal Parallel Algorithm for Planar Cycle Separators.,1995,14,Algorithmica,5,db/journals/algorithmica/algorithmica14.html#KaoTT95,https://doi.org/10.1007/BF01192047 +Sreyash Kenkre,On the Approximability of Digraph Ordering.,2017,78,Algorithmica,4,db/journals/algorithmica/algorithmica78.html#KenkrePPS17,https://doi.org/10.1007/s00453-016-0227-7 +Mahdi Cheraghchi,Improved Constructions for Non-adaptive Threshold Group Testing.,2013,67,Algorithmica,3,db/journals/algorithmica/algorithmica67.html#Cheraghchi13,https://doi.org/10.1007/s00453-013-9754-7 +F. Miller Maley,A Generic Algorithm for One-Dimensional Homotopic Compaction.,1991,6,Algorithmica,1,db/journals/algorithmica/algorithmica6.html#Maley91,https://doi.org/10.1007/BF01759037 +Christoph Buchheim,Testing Planarity of Geometric Automorphisms in Linear Time.,2008,52,Algorithmica,4,db/journals/algorithmica/algorithmica52.html#BuchheimH08,https://doi.org/10.1007/s00453-007-9050-5 +Thomas Bläsius,Cliques in Hyperbolic Random Graphs.,2018,80,Algorithmica,8,db/journals/algorithmica/algorithmica80.html#Blasius0K18,https://doi.org/10.1007/s00453-017-0323-3 +Hans L. Bodlaender,Faster Parameterized Algorithms for Minimum Fill-in.,2011,61,Algorithmica,4,db/journals/algorithmica/algorithmica61.html#BodlaenderHV11,https://doi.org/10.1007/s00453-010-9421-1 +Robert Crowston,Parameterizations of Test Cover with Bounded Test Sizes.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#CrowstonGJMY16,https://doi.org/10.1007/s00453-014-9948-7 +Ronald I. Greenberg,Minimizing Channel Density with Movable Terminals.,1997,17,Algorithmica,2,db/journals/algorithmica/algorithmica17.html#GreenbergS97,https://doi.org/10.1007/BF02522820 +A. Gräf,On Coloring Unit Disk Graphs.,1998,20,Algorithmica,3,db/journals/algorithmica/algorithmica20.html#GrafSW98,https://doi.org/10.1007/PL00009196 +Chien-Chung Huang,Fair Matchings and Related Problems.,2016,74,Algorithmica,3,db/journals/algorithmica/algorithmica74.html#HuangKM016,https://doi.org/10.1007/s00453-015-9994-9 +Ruiwen Chen,Lower Bounds Against Weakly-Uniform Threshold Circuits.,2014,70,Algorithmica,1,db/journals/algorithmica/algorithmica70.html#ChenKK14,https://doi.org/10.1007/s00453-013-9823-y +Enrico Nardelli,Swapping a Failing Edge of a Single Source Shortest Paths Tree Is Good and Fast.,2003,35,Algorithmica,1,db/journals/algorithmica/algorithmica35.html#NardelliPW03,https://doi.org/10.1007/s00453-002-0988-z +Parikshit Gopalan,Algorithms for Modular Counting of Roots of Multivariate Polynomials.,2008,50,Algorithmica,4,db/journals/algorithmica/algorithmica50.html#GopalanGL08,https://doi.org/10.1007/s00453-007-9097-3 +Chính T. Hoàng,Deciding k-Colorability of P5-Free Graphs in Polynomial Time.,2010,57,Algorithmica,1,db/journals/algorithmica/algorithmica57.html#HoangKLSS10,https://doi.org/10.1007/s00453-008-9197-8 +Béla Bollobás,Eliminating Cycles in the Discrete Torus.,2008,50,Algorithmica,4,db/journals/algorithmica/algorithmica50.html#BollobasKLO08,https://doi.org/10.1007/s00453-007-9095-5 +Anna Adamaszek,Algorithmic and Hardness Results for the Colorful Components Problems.,2015,73,Algorithmica,2,db/journals/algorithmica/algorithmica73.html#AdamaszekP15,https://doi.org/10.1007/s00453-014-9926-0 +Pavel Klavík,Extending Partial Representations of Interval Graphs.,2017,78,Algorithmica,3,db/journals/algorithmica/algorithmica78.html#KlavikKOSV17,https://doi.org/10.1007/s00453-016-0186-z +Leizhen Cai,Guest Editors Foreword.,2015,73,Algorithmica,4,db/journals/algorithmica/algorithmica73.html#CaiCL15,https://doi.org/10.1007/s00453-015-0070-2 +Siu-Wing Cheng,Motorcycle Graphs and Straight Skeletons.,2007,47,Algorithmica,2,db/journals/algorithmica/algorithmica47.html#ChengV07,https://doi.org/10.1007/s00453-006-1229-7 +Sun Wu,A Subquadratic Algorithm for Approximate Limited Expression Matching.,1996,15,Algorithmica,1,db/journals/algorithmica/algorithmica15.html#WuMM96,https://doi.org/10.1007/BF01942606 +Maria-Florina Balcan,Statistical Active Learning Algorithms for Noise Tolerance and Differential Privacy.,2015,72,Algorithmica,1,db/journals/algorithmica/algorithmica72.html#BalcanF15,https://doi.org/10.1007/s00453-014-9954-9 +Gerhard J. Woeginger,Introduction.,2000,28,Algorithmica,1,db/journals/algorithmica/algorithmica28.html#Woeginger00,https://doi.org/10.1007/s004530010027 +Susan Landau 0001,Embedding Linkages on an Integer Lattice.,2002,32,Algorithmica,3,db/journals/algorithmica/algorithmica32.html#LandauI02,https://doi.org/10.1007/s00453-001-0087-6 +Moni Naor,Tight Bounds for Sliding Bloom Filters.,2015,73,Algorithmica,4,db/journals/algorithmica/algorithmica73.html#NaorY15,https://doi.org/10.1007/s00453-015-0007-9 +D. T. Lee,Fast Algorithms for the Density Finding Problem.,2009,53,Algorithmica,3,db/journals/algorithmica/algorithmica53.html#LeeLL09,https://doi.org/10.1007/s00453-007-9023-8 +Alan M. Frieze,Improved Approximation Algorithms for MAX k-CUT and MAX BISECTION.,1997,18,Algorithmica,1,db/journals/algorithmica/algorithmica18.html#FriezeJ97,https://doi.org/10.1007/BF02523688 +Michael Arnold,Linear Time Algorithms for Generalizations of the Longest Common Substring Problem.,2011,60,Algorithmica,4,db/journals/algorithmica/algorithmica60.html#ArnoldO11,https://doi.org/10.1007/s00453-009-9369-1 +Hee-Kap Ahn,A Generalization of the Convex Kakeya Problem.,2014,70,Algorithmica,2,db/journals/algorithmica/algorithmica70.html#AhnBCGTV14,https://doi.org/10.1007/s00453-013-9831-y +Rudolf Fleischer,Online Maintenance of k-Medians and k-Covers on a Line.,2006,45,Algorithmica,4,db/journals/algorithmica/algorithmica45.html#FleischerGZ06,https://doi.org/10.1007/s00453-005-1195-5 +V. S. Anil Kumar,Scheduling on Unrelated Machines under Tree-Like Precedence Constraints.,2009,55,Algorithmica,1,db/journals/algorithmica/algorithmica55.html#KumarMPS09,https://doi.org/10.1007/s00453-007-9004-y +Till Bruckdorfer,Planar Bus Graphs.,2018,80,Algorithmica,8,db/journals/algorithmica/algorithmica80.html#BruckdorferF018,https://doi.org/10.1007/s00453-017-0321-5 +Seok-Hee Hong,Drawing Trees Symmetrically in Three Dimensions.,2003,36,Algorithmica,2,db/journals/algorithmica/algorithmica36.html#HongE03,https://doi.org/10.1007/s00453-002-1011-4 +Christian Komusiewicz,A Cubic-Vertex Kernel for Flip Consensus Tree.,2014,68,Algorithmica,1,db/journals/algorithmica/algorithmica68.html#KomusiewiczU14,https://doi.org/10.1007/s00453-012-9663-1 +Thomas Sauerwald,On Mixing and Edge Expansion Properties in Randomized Broadcasting.,2010,56,Algorithmica,1,db/journals/algorithmica/algorithmica56.html#Sauerwald10,https://doi.org/10.1007/s00453-008-9245-4 +Yu-Feng Chien,Geometric BWT: Compressed Text Indexing via Sparse Suffixes and Range Searching.,2015,71,Algorithmica,2,db/journals/algorithmica/algorithmica71.html#ChienHSTV15,https://doi.org/10.1007/s00453-013-9792-1 +Shmuel Sifrony,A New Efficient Motion-Planning Algorithm for a Rod in Two-Dimensional Polygonal Space.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#SifronyS87,https://doi.org/10.1007/BF01840368 +Dimitris Fotakis,Strategyproof Facility Location for Concave Cost Functions.,2016,76,Algorithmica,1,db/journals/algorithmica/algorithmica76.html#FotakisT16,https://doi.org/10.1007/s00453-015-0026-6 +Wolfgang Dvorák,Maximizing a Submodular Function with Viability Constraints.,2017,77,Algorithmica,1,db/journals/algorithmica/algorithmica77.html#DvorakHW17,https://doi.org/10.1007/s00453-015-0066-y +Nader H. Bshouty,On Learning Decision Trees with Large Output Domains.,1998,20,Algorithmica,1,db/journals/algorithmica/algorithmica20.html#BshoutyTW98,https://doi.org/10.1007/PL00009188 +Paola Flocchini,Computing Without Communicating: Ring Exploration by Asynchronous Oblivious Robots.,2013,65,Algorithmica,3,db/journals/algorithmica/algorithmica65.html#FlocchiniIPS13,https://doi.org/10.1007/s00453-011-9611-5 +Eldar Fischer,Testing Convexity Properties of Tree Colorings.,2011,60,Algorithmica,4,db/journals/algorithmica/algorithmica60.html#FischerY11,https://doi.org/10.1007/s00453-009-9368-2 +Faisal N. Abu-Khzam,Clustering with Lower-Bounded Sizes - A General Graph-Theoretic Framework.,2018,80,Algorithmica,9,db/journals/algorithmica/algorithmica80.html#Abu-KhzamBCF18,https://doi.org/10.1007/s00453-017-0374-5 +Manfred Kunde,Packet Routing on Grids of Processors.,1993,9,Algorithmica,1,db/journals/algorithmica/algorithmica9.html#Kunde93,https://doi.org/10.1007/BF01185337 +Ornan Ori Gerstel,The Bit Complexity of Distributed Sorting.,1997,18,Algorithmica,3,db/journals/algorithmica/algorithmica18.html#GerstelZ97,https://doi.org/10.1007/PL00009163 +Paul A. Peterson,The General Maximum Matching Algorithm of Micali and Vazirani.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#PetersonL88,https://doi.org/10.1007/BF01762129 +Dong Kyue Kim,Linear-Time Construction of Two-Dimensional Suffix©0*Trees.,2011,59,Algorithmica,2,db/journals/algorithmica/algorithmica59.html#KimNSP11,https://doi.org/10.1007/s00453-009-9350-z +Prosenjit Bose,Biased Predecessor Search.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#BoseFHM16,https://doi.org/10.1007/s00453-016-0146-7 +MohammadTaghi Hajiaghayi,Local Search Algorithms for the Red-Blue Median Problem.,2012,63,Algorithmica,4,db/journals/algorithmica/algorithmica63.html#HajiaghayiKK12,https://doi.org/10.1007/s00453-011-9547-9 +Frantisek Galcík,On Computing an Optimal Semi-matching.,2017,78,Algorithmica,3,db/journals/algorithmica/algorithmica78.html#GalcikKS17,https://doi.org/10.1007/s00453-016-0182-3 +Mark Braverman,Guest Editorial for Information Complexity and Applications.,2016,76,Algorithmica,3,db/journals/algorithmica/algorithmica76.html#BravermanW16,https://doi.org/10.1007/s00453-016-0180-5 +Lata Narayanan,Corrigendum: Static Frequency Assignment in Cellular Networks.,2002,32,Algorithmica,4,db/journals/algorithmica/algorithmica32.html#NarayananS02,https://doi.org/10.1007/s00453-001-0099-2 +Michael Jünger,Maximum Planar Subgraphs and Nice Embeddings: Practical Layout Tools.,1996,16,Algorithmica,1,db/journals/algorithmica/algorithmica16.html#JungerM96,https://doi.org/10.1007/BF02086607 +Reuven Bar-Yehuda,One for the Price of Two: a Unified Approach for Approximating Covering Problems.,2000,27,Algorithmica,2,db/journals/algorithmica/algorithmica27.html#Bar-Yehuda00,https://doi.org/10.1007/s004530010009 +Richard J. Lipton,Clocked Adversaries for Hashing.,1993,9,Algorithmica,3,db/journals/algorithmica/algorithmica9.html#LiptonN93,https://doi.org/10.1007/BF01190898 +Anil Maheshwari,Improved Algorithms for Partial Curve Matching.,2014,69,Algorithmica,3,db/journals/algorithmica/algorithmica69.html#MaheshwariSSZ14,https://doi.org/10.1007/s00453-013-9758-3 +Sivaprakasam Sunder,An NC Algorithm for Finding a Minimum Weighted Completion Time Schedule on Series Parallel Graphs.,1996,16,Algorithmica,3,db/journals/algorithmica/algorithmica16.html#SunderH96,https://doi.org/10.1007/BF01955675 +Danny Hermelin,Parameterized Two-Player Nash Equilibrium.,2013,65,Algorithmica,4,db/journals/algorithmica/algorithmica65.html#HermelinHKW13,https://doi.org/10.1007/s00453-011-9609-z +Epameinondas Fritzilas,Structural Identifiability in Low-Rank Matrix Factorization.,2010,56,Algorithmica,3,db/journals/algorithmica/algorithmica56.html#FritzilasMRR10,https://doi.org/10.1007/s00453-009-9331-2 +Ian Parberry,An Optimal Time Bound for Oblivious Routing.,1990,5,Algorithmica,2,db/journals/algorithmica/algorithmica5.html#Parberry90,https://doi.org/10.1007/BF01840387 +Ferdinando Cicalese,Faster Deterministic Communication in Radio Networks.,2009,54,Algorithmica,2,db/journals/algorithmica/algorithmica54.html#CicaleseMX09,https://doi.org/10.1007/s00453-007-9136-0 +Elias Koutsoupias,A Lower Bound of 1+χ6* for Truthful Scheduling Mechanisms.,2013,66,Algorithmica,1,db/journals/algorithmica/algorithmica66.html#KoutsoupiasV13,https://doi.org/10.1007/s00453-012-9634-6 +Leah Epstein,Weighted Sum Coloring in Batch Scheduling of Conflicting Jobs.,2009,55,Algorithmica,4,db/journals/algorithmica/algorithmica55.html#EpsteinHLS09,https://doi.org/10.1007/s00453-007-9161-z +Nancy M. Amato,Finding a Closest Visible Vertex Pair Between Two Polygons.,1995,14,Algorithmica,2,db/journals/algorithmica/algorithmica14.html#Amato95,https://doi.org/10.1007/BF01293668 +John Iacono,Queaps.,2005,42,Algorithmica,1,db/journals/algorithmica/algorithmica42.html#IaconoL05,https://doi.org/10.1007/s00453-004-1139-5 +Daniel Panario,Smallest Components in Decomposable Structures: Exp-Log Class.,2001,29,Algorithmica,1,db/journals/algorithmica/algorithmica29.html#PanarioR01,https://doi.org/10.1007/BF02679619 +Shouwen Tang,Fast Algorithms for Minimum Matrix Norm with Application in Computer Graphics.,1996,15,Algorithmica,1,db/journals/algorithmica/algorithmica15.html#TangZW96,https://doi.org/10.1007/BF01942607 +Petr A. Golovach,Output-Polynomial Enumeration on Graphs of Bounded (Local) Linear MIM-Width.,2018,80,Algorithmica,2,db/journals/algorithmica/algorithmica80.html#GolovachHKKSV18,https://doi.org/10.1007/s00453-017-0289-1 +Roberto Tamassia,Optimal Cooperative Search in Fractional Cascaded Data Structures.,1996,15,Algorithmica,2,db/journals/algorithmica/algorithmica15.html#TamassiaV96,https://doi.org/10.1007/BF01941686 +Eli Ben-Sasson,Scalable Zero Knowledge Via Cycles of Elliptic Curves.,2017,79,Algorithmica,4,db/journals/algorithmica/algorithmica79.html#Ben-SassonCTV17,https://doi.org/10.1007/s00453-016-0221-0 +Kurt Mehlhorn,Scanning Multiple Sequences Via Cache Memory.,2003,35,Algorithmica,1,db/journals/algorithmica/algorithmica35.html#MehlhornS03,https://doi.org/10.1007/s00453-002-0993-2 +Sebastian Wild,Analysis of Quickselect Under Yaroslavskiy's Dual-Pivoting Algorithm.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#WildNM16,https://doi.org/10.1007/s00453-014-9953-x +Giuseppe Di Battista,Guest Editors' Introduction to the Special Issue on Graph Drwaing.,1996,16,Algorithmica,1,db/journals/algorithmica/algorithmica16.html#BattistaT96a,https://doi.org/10.1007/BF02086605 +Daniil Ryabko,Sample Complexity for Computational Classification Problems.,2007,49,Algorithmica,1,db/journals/algorithmica/algorithmica49.html#Ryabko07,https://doi.org/10.1007/s00453-007-0037-z +Mika Göös,Zero-Information Protocols and Unambiguity in Arthur-Merlin Communication.,2016,76,Algorithmica,3,db/journals/algorithmica/algorithmica76.html#GoosPW16,https://doi.org/10.1007/s00453-015-0104-9 +Joseph Cheriyan,Hardness and Approximation Results for Packing Steiner Trees.,2006,45,Algorithmica,1,db/journals/algorithmica/algorithmica45.html#CheriyanS06,https://doi.org/10.1007/s00453-005-1188-4 +B. Das,Reconstructing a Minimum Spanning Tree after Deletion of Any Node.,2001,31,Algorithmica,4,db/journals/algorithmica/algorithmica31.html#DasL01,https://doi.org/10.1007/s00453-001-0061-3 +Francis Y. L. Chin,An Improved Algorithm for Finding the Median Distributively.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#ChinT87,https://doi.org/10.1007/BF01840361 +Dennis W. G. Moore,Counting Distinct Strings.,1999,23,Algorithmica,1,db/journals/algorithmica/algorithmica23.html#MooreSM99,https://doi.org/10.1007/PL00009247 +Frank K. H. A. Dehne,Computational Geometry Algorithms for the Systolic Screen.,1991,6,Algorithmica,5,db/journals/algorithmica/algorithmica6.html#DehneHSS91,https://doi.org/10.1007/BF01759069 +Andrej Taranenko,Fast Recognition of Fibonacci Cubes.,2007,49,Algorithmica,2,db/journals/algorithmica/algorithmica49.html#TaranenkoV07,https://doi.org/10.1007/s00453-007-9026-5 +Dany Breslauer,Finding All Periods and Initial Palindromes of a String in Parallel.,1995,14,Algorithmica,4,db/journals/algorithmica/algorithmica14.html#BreslauerG95,https://doi.org/10.1007/BF01294132 +Lélia Blin,Exclusive Graph Searching.,2017,77,Algorithmica,3,db/journals/algorithmica/algorithmica77.html#BlinBN17,https://doi.org/10.1007/s00453-016-0124-0 +Miklós Csürös,Rapid Homology Search with Neighbor Seeds.,2007,48,Algorithmica,2,db/journals/algorithmica/algorithmica48.html#CsurosM07,https://doi.org/10.1007/s00453-007-0062-y +Venkatesan Guruswami,Superlinear Lower Bounds for Multipass Graph Processing.,2016,76,Algorithmica,3,db/journals/algorithmica/algorithmica76.html#GuruswamiO16,https://doi.org/10.1007/s00453-016-0138-7 +Gokarna Sharma,An Analysis Framework for Distributed Hierarchical Directories.,2015,71,Algorithmica,2,db/journals/algorithmica/algorithmica71.html#SharmaB15,https://doi.org/10.1007/s00453-013-9803-2 +Jun Wako,A Polynomial-Time Algorithm to Find von Neumann-Morgenstern Stable Matchings in Marriage Games.,2010,58,Algorithmica,1,db/journals/algorithmica/algorithmica58.html#Wako10,https://doi.org/10.1007/s00453-010-9388-y +Emanuele G. Fusco,Trade-offs Between the Size of Advice and Broadcasting Time in Trees.,2011,60,Algorithmica,4,db/journals/algorithmica/algorithmica60.html#FuscoP11,https://doi.org/10.1007/s00453-009-9361-9 +Alfredo García Olaverri,Computing a Hamiltonian Path of Minimum Euclidean Length Inside a Simple Polygon.,2013,65,Algorithmica,3,db/journals/algorithmica/algorithmica65.html#GarciaJT13,https://doi.org/10.1007/s00453-011-9603-5 +Bala Kalyanasundaram,Fault-Tolerant Real-Time Scheduling.,2000,28,Algorithmica,1,db/journals/algorithmica/algorithmica28.html#KalyanasundaramP00,https://doi.org/10.1007/s004530010034 +Mikhail J. Atallah,A Randomized Algorithm for Approximate String Matching.,2001,29,Algorithmica,3,db/journals/algorithmica/algorithmica29.html#AtallahCD01,https://doi.org/10.1007/s004530010062 +Andrei Lissovoi,MMAS Versus Population-Based EA on a Family of Dynamic Fitness Functions.,2016,75,Algorithmica,3,db/journals/algorithmica/algorithmica75.html#LissovoiW16,https://doi.org/10.1007/s00453-015-9975-z +Mark Huber,Exact Sampling from Perfect Matchings of Dense Regular Bipartite Graphs.,2006,44,Algorithmica,3,db/journals/algorithmica/algorithmica44.html#Huber06,https://doi.org/10.1007/s00453-005-1175-9 +John H. Reif,Fast Spatial Decomposition and Closest Pair Computation for Limited Precision Input.,2000,28,Algorithmica,3,db/journals/algorithmica/algorithmica28.html#Reif00,https://doi.org/10.1007/s004530010040 +Peng Zhang 0008,Simpler and Better Approximation Algorithms for the Unweighted Minimum Label s-t Cut Problem.,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#ZhangFT18,https://doi.org/10.1007/s00453-016-0265-1 +Yijie Han,Efficient Parallel Algorithms for Computing All Pair Shortest Paths in Directed Graphs.,1997,17,Algorithmica,4,db/journals/algorithmica/algorithmica17.html#HanPR97,https://doi.org/10.1007/BF02523680 +Gary M. Shute,An O(n log n) Plane-Sweep Algorithm for L_1 and L_\infty Delaunay Triangulations.,1991,6,Algorithmica,2,db/journals/algorithmica/algorithmica6.html#ShuteDT91,https://doi.org/10.1007/BF01759042 +Mohammad Ali Abam,Geometric Spanners for Weighted Point Sets.,2011,61,Algorithmica,1,db/journals/algorithmica/algorithmica61.html#AbamBFGS11,https://doi.org/10.1007/s00453-010-9465-2 +Vijaya Ramachandran,An Efficient Parallel Algorithm for the Layered Planar Monotone Circuit Value Problem.,1997,18,Algorithmica,3,db/journals/algorithmica/algorithmica18.html#RamachandranY97,https://doi.org/10.1007/PL00009162 +S. Alice Wu,Optimal Algorithms for Adjacent Side Routing.,1991,6,Algorithmica,4,db/journals/algorithmica/algorithmica6.html#WuJ91,https://doi.org/10.1007/BF01759060 +Michel Raynal,Distributed Universality.,2016,76,Algorithmica,2,db/journals/algorithmica/algorithmica76.html#RaynalST16,https://doi.org/10.1007/s00453-015-0053-3 +Gruia Calinescu,A New Approximation Algorithm for Finding Heavy Planar Subgraphs.,2003,36,Algorithmica,2,db/journals/algorithmica/algorithmica36.html#CalinescuFKZ03,https://doi.org/10.1007/s00453-002-1020-3 +Dan Gusfield,The Structure and Complexity of Sports Elimination Numbers.,2002,32,Algorithmica,1,db/journals/algorithmica/algorithmica32.html#GusfieldM02,https://doi.org/10.1007/s00453-001-0074-y +Jelena Marasevic,Max-min Fair Rate Allocation and Routing in Energy Harvesting Networks: Algorithmic Analysis.,2017,78,Algorithmica,2,db/journals/algorithmica/algorithmica78.html#MarasevicSZ17,https://doi.org/10.1007/s00453-016-0171-6 +Yossi Azar,Combinatorial Algorithms for the Unsplittable Flow Problem.,2006,44,Algorithmica,1,db/journals/algorithmica/algorithmica44.html#AzarR06,https://doi.org/10.1007/s00453-005-1172-z +Reuven Bar-Yehuda,Resource Allocation in Bounded Degree Trees.,2009,54,Algorithmica,1,db/journals/algorithmica/algorithmica54.html#Bar-YehudaBCR09,https://doi.org/10.1007/s00453-007-9121-7 +Isolde Adler,Planar Disjoint-Paths Completion.,2016,76,Algorithmica,2,db/journals/algorithmica/algorithmica76.html#AdlerKT16,https://doi.org/10.1007/s00453-015-0046-2 +Michael T. Goodrich,Spin-the-Bottle Sort and Annealing Sort: Oblivious Sorting via Round-Robin Random Comparisons.,2014,68,Algorithmica,4,db/journals/algorithmica/algorithmica68.html#Goodrich14,https://doi.org/10.1007/s00453-012-9696-5 +Nicolas Broutin,Note on the Structure of Kruskal's Algorithm.,2010,56,Algorithmica,2,db/journals/algorithmica/algorithmica56.html#BroutinDM10,https://doi.org/10.1007/s00453-008-9164-4 +Sudheer Sahu,Capabilities and Limits of Compact Error Resilience Methods for Algorithmic Self-Assembly.,2010,56,Algorithmica,4,db/journals/algorithmica/algorithmica56.html#SahuR10,https://doi.org/10.1007/s00453-008-9187-x +Mikhail J. Atallah,Parallel Algorithms for Some Functions of two Convex Polygons.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#AtallahG88,https://doi.org/10.1007/BF01762130 +R. Ravi 0001,An Approximation Algorithm for Minimum-Cost Vertex-Connectivity Problems.,1997,18,Algorithmica,1,db/journals/algorithmica/algorithmica18.html#RaviW97,https://doi.org/10.1007/BF02523686 +Eric Bach,Sieve Algorithms for Perfect Power Testing.,1993,9,Algorithmica,4,db/journals/algorithmica/algorithmica9.html#BachS93,https://doi.org/10.1007/BF01228507 +Mingyu Xiao,An Exact Algorithm for TSP in Degree-3 Graphs Via Circuit Procedure and Amortization on Connectivity Structure.,2016,74,Algorithmica,2,db/journals/algorithmica/algorithmica74.html#XiaoN16,https://doi.org/10.1007/s00453-015-9970-4 +Leszek Gasieniec,Efficiently Correcting Matrix Products.,2017,79,Algorithmica,2,db/journals/algorithmica/algorithmica79.html#GasieniecLLPT17,https://doi.org/10.1007/s00453-016-0202-3 +Aparna Das,Approximating the Generalized Minimum Manhattan Network Problem.,2018,80,Algorithmica,4,db/journals/algorithmica/algorithmica80.html#DasFKSVW18,https://doi.org/10.1007/s00453-017-0298-0 +Danny Krizanc,Fast Deterministic Selection on Mesh-Connected Processor Arrays.,1996,15,Algorithmica,4,db/journals/algorithmica/algorithmica15.html#KrizancNR96,https://doi.org/10.1007/BF01961542 +Robert B. Ellis,Random Geometric Graph Diameter in the Unit Ball.,2007,47,Algorithmica,4,db/journals/algorithmica/algorithmica47.html#EllisMY07,https://doi.org/10.1007/s00453-006-0172-y +Herbert Edelsbrunner,Edge-Skeletons in Arrangements with Applications.,1986,1,Algorithmica,1,db/journals/algorithmica/algorithmica1.html#Edelsbrunner86,https://doi.org/10.1007/BF01840438 +Cristina G. Fernandes,Approximation Algorithms for the Max-Buying Problem with Limited Supply.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#FernandesS18,https://doi.org/10.1007/s00453-017-0364-7 +Hristo Djidjev,Separators in Graphs with Negative and Multiple Vertex Weights.,1999,23,Algorithmica,1,db/journals/algorithmica/algorithmica23.html#DjidjevG99,https://doi.org/10.1007/PL00009250 +Frederic Dorn,Efficient Exact Algorithms on Planar Graphs: Exploiting Sphere Cut Decompositions.,2010,58,Algorithmica,3,db/journals/algorithmica/algorithmica58.html#DornPBF10,https://doi.org/10.1007/s00453-009-9296-1 +Michael E. Saks,Sample Spaces with Small Bias on Neighborhoods and Error-Correcting Communication Protocols.,2001,30,Algorithmica,3,db/journals/algorithmica/algorithmica30.html#SaksZ01,https://doi.org/10.1007/s00453-001-0020-z +Marcus Schaefer,Spiraling and Folding: The Word View.,2011,60,Algorithmica,3,db/journals/algorithmica/algorithmica60.html#SchaeferSS11,https://doi.org/10.1007/s00453-009-9362-8 +Oriol Farràs,On the Information Ratio of Non-perfect Secret Sharing Schemes.,2017,79,Algorithmica,4,db/journals/algorithmica/algorithmica79.html#FarrasHKP17,https://doi.org/10.1007/s00453-016-0217-9 +Tak Wah Lam,Optimal Edge Ranking of Trees in Linear Time.,2001,30,Algorithmica,1,db/journals/algorithmica/algorithmica30.html#LamY01,https://doi.org/10.1007/s004530010076 +Shin-ichi Tanigawa,Testing the Supermodular-Cut Condition.,2015,71,Algorithmica,4,db/journals/algorithmica/algorithmica71.html#TanigawaY15,https://doi.org/10.1007/s00453-013-9842-8 +Clóvis C. Gonzaga,Search Directions for Interior Linear-Programming Methods.,1991,6,Algorithmica,2,db/journals/algorithmica/algorithmica6.html#Gonzaga91,https://doi.org/10.1007/BF01759039 +Danny Hermelin,Parameterized Complexity of Induced Graph Matching on Claw-Free Graphs.,2014,70,Algorithmica,3,db/journals/algorithmica/algorithmica70.html#HermelinML14,https://doi.org/10.1007/s00453-014-9877-5 +Marek Cygan,On Cutwidth Parameterized by Vertex Cover.,2014,68,Algorithmica,4,db/journals/algorithmica/algorithmica68.html#CyganLPPS14,https://doi.org/10.1007/s00453-012-9707-6 +Jörg Derungs,Approximate Shortest Paths Guided by a Small Index.,2010,57,Algorithmica,4,db/journals/algorithmica/algorithmica57.html#DerungsJW10,https://doi.org/10.1007/s00453-008-9228-5 +Eugene W. Myers,An O(ND) Difference Algorithm and Its Variations.,1986,1,Algorithmica,2,db/journals/algorithmica/algorithmica1.html#Meyers86,https://doi.org/10.1007/BF01840446 +Pedro Jussieu de Rezende,Point Set Pattern Matching in d-Dimensions.,1995,13,Algorithmica,4,db/journals/algorithmica/algorithmica13.html#RezendeL95,https://doi.org/10.1007/BF01293487 +Eitan Zemel,A Linear Time Randomizing Algorithm for Searching Ranked Functions.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#Zemel87,https://doi.org/10.1007/BF01840350 +Benjamin Doerr,Adaptive Drift Analysis.,2013,65,Algorithmica,1,db/journals/algorithmica/algorithmica65.html#DoerrG13,https://doi.org/10.1007/s00453-011-9585-3 +Mao-cheng Cai,Minimum k Arborescences with Bandwidth Constraints.,2004,38,Algorithmica,4,db/journals/algorithmica/algorithmica38.html#CaiDW04,https://doi.org/10.1007/s00453-003-1054-1 +Amotz Bar-Noy,Competitive On-Line Switching Policies.,2003,36,Algorithmica,3,db/journals/algorithmica/algorithmica36.html#Bar-NoyFL03,https://doi.org/10.1007/s00453-003-1014-9 +Po-Shen Loh,Thresholds for Extreme Orientability.,2014,69,Algorithmica,3,db/journals/algorithmica/algorithmica69.html#LohP14,https://doi.org/10.1007/s00453-013-9749-4 +James Abello,A Functional Approach to External Graph Algorithms.,2002,32,Algorithmica,3,db/journals/algorithmica/algorithmica32.html#AbelloBW02,https://doi.org/10.1007/s00453-001-0088-5 +Helmut Prodinger,Average-Case Analysis of Algorithms - Preface.,2001,29,Algorithmica,1,db/journals/algorithmica/algorithmica29.html#ProdingerS01,https://doi.org/10.1007/BF02679610 +Kim S. Larsen,Relaxed Balance Using Standard Rotations.,2001,31,Algorithmica,4,db/journals/algorithmica/algorithmica31.html#LarsenSW01,https://doi.org/10.1007/s00453-001-0059-x +Sushmita Gupta,Stable Matching Games: Manipulation via Subgraph Isomorphism.,2018,80,Algorithmica,9,db/journals/algorithmica/algorithmica80.html#GuptaR18,https://doi.org/10.1007/s00453-017-0382-5 +Markus Bläser,Smoothed Analysis of Partitioning Algorithms for Euclidean Functionals.,2013,66,Algorithmica,2,db/journals/algorithmica/algorithmica66.html#BlaserMR13,https://doi.org/10.1007/s00453-012-9643-5 +Dimitris Chatzidimitriou,An O(log OPT)-Approximation for Covering and Packing Minor Models of and#952*r.,2018,80,Algorithmica,4,db/journals/algorithmica/algorithmica80.html#Chatzidimitriou18,https://doi.org/10.1007/s00453-017-0313-5 +Konstantinos Kalpakis,Upper and Lower Bounds on the Makespan of Schedules for Tree Dags on Linear Arrays.,1999,23,Algorithmica,2,db/journals/algorithmica/algorithmica23.html#KalpakisY99,https://doi.org/10.1007/PL00009254 +Gennaro Cordasco,Discovering Small Target Sets in Social Networks: A Fast and Effective Algorithm.,2018,80,Algorithmica,6,db/journals/algorithmica/algorithmica80.html#CordascoGMRV18,https://doi.org/10.1007/s00453-017-0390-5 +Alan M. Frieze,Greedy Algorithms for the Shortest Common Superstring That Are Asymptotically Optimal.,1998,21,Algorithmica,1,db/journals/algorithmica/algorithmica21.html#FriezeS98,https://doi.org/10.1007/PL00009207 +Gonzalo Navarro,Binary Searching with Nonuniform Costs and Its Application to Text Retrieval.,2000,27,Algorithmica,2,db/journals/algorithmica/algorithmica27.html#NavarroBBZC00,https://doi.org/10.1007/s004530010010 +Christoph Baur,Approximation of Geometric Dispersion Problems.,2001,30,Algorithmica,3,db/journals/algorithmica/algorithmica30.html#BaurF01,https://doi.org/10.1007/s00453-001-0022-x +Takuro Fukunaga,Approximation Algorithms for Highly Connected Multi-dominating Sets in Unit Disk Graphs.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#Fukunaga18,https://doi.org/10.1007/s00453-017-0385-2 +Nili Guttmann-Beck,Approximation Algorithms for Minimum K-Cut.,2000,27,Algorithmica,2,db/journals/algorithmica/algorithmica27.html#Guttmann-BeckH00,https://doi.org/10.1007/s004530010013 +Henning Bruhn,Structural Parameterizations for Boxicity.,2016,74,Algorithmica,4,db/journals/algorithmica/algorithmica74.html#BruhnCJS16,https://doi.org/10.1007/s00453-015-0011-0 +Allan Borodin,Strategyproof Mechanisms for Competitive Influence in Networks.,2017,78,Algorithmica,2,db/journals/algorithmica/algorithmica78.html#BorodinBLO17,https://doi.org/10.1007/s00453-016-0169-0 +Edith Cohen,Competitive Analysis of the LRFU Paging Algorithm.,2002,33,Algorithmica,4,db/journals/algorithmica/algorithmica33.html#CohenKZ02,https://doi.org/10.1007/s00453-002-0936-y +David Eppstein,Confluent Layered Drawings.,2007,47,Algorithmica,4,db/journals/algorithmica/algorithmica47.html#EppsteinGM07,https://doi.org/10.1007/s00453-006-0159-8 +Amol Deshpande,Energy Efficient Monitoring in Sensor Networks.,2011,59,Algorithmica,1,db/journals/algorithmica/algorithmica59.html#DeshpandeKMT11,https://doi.org/10.1007/s00453-010-9407-z +Nadia Pisanti,Further Thoughts on the Syntenic Distance between Genomes.,2002,34,Algorithmica,2,db/journals/algorithmica/algorithmica34.html#PisantiS02,https://doi.org/10.1007/s00453-002-0960-y +Baruch Awerbuch,On-Line Competitive Algorithms for Call Admission in Optical Networks.,2001,31,Algorithmica,1,db/journals/algorithmica/algorithmica31.html#AwerbuchAFLR01,https://doi.org/10.1007/s00453-001-0039-1 +,Editor's Note.,2014,69,Algorithmica,3,db/journals/algorithmica/algorithmica69.html#X14,https://doi.org/10.1007/s00453-014-9880-x +Adi Avidor,Ancient and New Algorithms for Load Balancing in the lp Norm.,2001,29,Algorithmica,3,db/journals/algorithmica/algorithmica29.html#AvidorAS01,https://doi.org/10.1007/s004530010051 +George Christodoulou 0001,On the Efficiency of All-Pay Mechanisms.,2018,80,Algorithmica,4,db/journals/algorithmica/algorithmica80.html#ChristodoulouST18,https://doi.org/10.1007/s00453-017-0296-2 +Mingyu Xiao,Tight Approximation Ratio of a General Greedy Splitting Algorithm for the Minimum k-Way Cut Problem.,2011,59,Algorithmica,4,db/journals/algorithmica/algorithmica59.html#XiaoCY11,https://doi.org/10.1007/s00453-009-9316-1 +Panagiotis Alevizos,An Optimal Algorithm for the Boundary of a Cell in a Union of Rays.,1990,5,Algorithmica,4,db/journals/algorithmica/algorithmica5.html#AlevizosBP90,https://doi.org/10.1007/BF01840405 +Timothy M. Chan,Linear-Space Data Structures for Range Minority Query in Arrays.,2015,72,Algorithmica,4,db/journals/algorithmica/algorithmica72.html#ChanDSW15,https://doi.org/10.1007/s00453-014-9881-9 +Gábor Braun,Common Information and Unique Disjointness.,2016,76,Algorithmica,3,db/journals/algorithmica/algorithmica76.html#BraunP16,https://doi.org/10.1007/s00453-016-0132-0 +Manfred Cochefert,Parameterized Algorithms for Finding Square Roots.,2016,74,Algorithmica,2,db/journals/algorithmica/algorithmica74.html#Cochefert0GKP16,https://doi.org/10.1007/s00453-014-9967-4 +Heikki Hyyrö,Bit-Parallel Witnesses and Their Applications to Approximate String Matching.,2005,41,Algorithmica,3,db/journals/algorithmica/algorithmica41.html#HyyroN05,https://doi.org/10.1007/s00453-004-1108-z +Yoko Kamidoi,A Divide-and-Conquer Approach to the Minimum k-Way Cut Problem.,2002,32,Algorithmica,2,db/journals/algorithmica/algorithmica32.html#KamidoiWY02,https://doi.org/10.1007/s00453-001-0070-2 +Guojun Li,An Algorithm for Simultaneous Backbone Threading and Side-Chain Packing.,2008,51,Algorithmica,4,db/journals/algorithmica/algorithmica51.html#LiLGX08,https://doi.org/10.1007/s00453-007-9070-1 +Antonios Antoniadis,Efficient Computation of Optimal Energy and Fractional Weighted Flow Trade-Off Schedules.,2017,79,Algorithmica,2,db/journals/algorithmica/algorithmica79.html#AntoniadisBCKNP17,https://doi.org/10.1007/s00453-016-0208-x +Bernard Chazelle,Decomposing the Boundary of a Nonconvex Polyhedron.,1997,17,Algorithmica,3,db/journals/algorithmica/algorithmica17.html#ChazelleP97,https://doi.org/10.1007/BF02523191 +Piotr Berman,Complexities of Efficient Solutions of Rectilinear Polygon Cover Problems.,1997,17,Algorithmica,4,db/journals/algorithmica/algorithmica17.html#BermanD97,https://doi.org/10.1007/BF02523677 +Arne Andersson,Suffix Trees on Words.,1999,23,Algorithmica,3,db/journals/algorithmica/algorithmica23.html#AnderssonLS99,https://doi.org/10.1007/PL00009260 +Wolfgang W. Bein,Knowledge State Algorithms.,2011,60,Algorithmica,3,db/journals/algorithmica/algorithmica60.html#BeinLNR11,https://doi.org/10.1007/s00453-009-9366-4 +Mourad Baïou,Stackelberg Bipartite Vertex Cover and the Preflow Algorithm.,2016,74,Algorithmica,3,db/journals/algorithmica/algorithmica74.html#BaiouB16,https://doi.org/10.1007/s00453-015-9993-x +Robert F. Sproull,Refinements to Nearest-Neighbor Searching in k-Dimensional Trees.,1991,6,Algorithmica,4,db/journals/algorithmica/algorithmica6.html#Sproull91,https://doi.org/10.1007/BF01759061 +Vikas Kapoor,A Tutorial for Designing Flexible Geometric Algorithms.,2002,33,Algorithmica,1,db/journals/algorithmica/algorithmica33.html#KapoorKW02,https://doi.org/10.1007/s00453-001-0104-9 +Navin Goyal,Dynamic vs. Oblivious Routing in Network Design.,2011,61,Algorithmica,1,db/journals/algorithmica/algorithmica61.html#GoyalOS11,https://doi.org/10.1007/s00453-010-9455-4 +Robert Crowston,A New Lower Bound on the Maximum Number of Satisfied Clauses in Max-SAT and Its Algorithmic Applications.,2012,64,Algorithmica,1,db/journals/algorithmica/algorithmica64.html#CrowstonGJY12,https://doi.org/10.1007/s00453-011-9550-1 +Michael J. Todd,An Extension of Karmarkar's Algorithm for Linear Programming Using Dual Variables.,1986,1,Algorithmica,4,db/journals/algorithmica/algorithmica1.html#ToddB86,https://doi.org/10.1007/BF01840455 +Srikanta Tirthapura,A General Method for Estimating Correlated Aggregates Over a Data Stream.,2015,73,Algorithmica,2,db/journals/algorithmica/algorithmica73.html#TirthapuraW15,https://doi.org/10.1007/s00453-014-9917-1 +John M. Marberg,Sorting in Constant Number of Row and Column Phases on a Mesh.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#MarbergG88,https://doi.org/10.1007/BF01762132 +Brigitte Vallée,Dynamics of the Binary Euclidean Algorithm: Functional Analysis and Operators.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#Vallee98,https://doi.org/10.1007/PL00009246 +Cameron T. Chalk,Strict Self-Assembly of Fractals Using Multiple Hands.,2016,76,Algorithmica,1,db/journals/algorithmica/algorithmica76.html#ChalkFHMSS16,https://doi.org/10.1007/s00453-015-0022-x +Pranjal Awasthi,Testing Lipschitz Functions on Hypergrid Domains.,2016,74,Algorithmica,3,db/journals/algorithmica/algorithmica74.html#AwasthiJMR16,https://doi.org/10.1007/s00453-015-9984-y +Julian Lorenz,Optimal Algorithms for k-Search with Application in Option Pricing.,2009,55,Algorithmica,2,db/journals/algorithmica/algorithmica55.html#LorenzPS09,https://doi.org/10.1007/s00453-008-9217-8 +Danny Hermelin,Unified Compression-Based Acceleration of Edit-Distance Computation.,2013,65,Algorithmica,2,db/journals/algorithmica/algorithmica65.html#HermelinLLW13,https://doi.org/10.1007/s00453-011-9590-6 +Fedor V. Fomin,Preface to Special Issue Dedicated to the 60th Birthday of Gregory Gutin.,2018,80,Algorithmica,9,db/journals/algorithmica/algorithmica80.html#FominS18,https://doi.org/10.1007/s00453-018-0416-7 +Konstantinos Panagiotou,Asynchronous Rumor Spreading on Random Graphs.,2017,78,Algorithmica,3,db/journals/algorithmica/algorithmica78.html#PanagiotouS17,https://doi.org/10.1007/s00453-016-0188-x +Sherman S. M. Chow,Zero-Knowledge Argument for Simultaneous Discrete Logarithms.,2012,64,Algorithmica,2,db/journals/algorithmica/algorithmica64.html#ChowMW12,https://doi.org/10.1007/s00453-011-9593-3 +Kazuo Iwama,Max-Stretch Reduction for Tree Spanners.,2008,50,Algorithmica,2,db/journals/algorithmica/algorithmica50.html#IwamaLO08,https://doi.org/10.1007/s00453-007-9058-x +Surender Baswana,Planar Graph Blocking for External Searching.,2002,34,Algorithmica,3,db/journals/algorithmica/algorithmica34.html#BaswanaS02,https://doi.org/10.1007/s00453-002-0969-2 +René Beier,Energy-Efficient Paths in Radio Networks.,2011,61,Algorithmica,2,db/journals/algorithmica/algorithmica61.html#BeierFMS11,https://doi.org/10.1007/s00453-010-9414-0 +Viswanath Nagarajan,Approximation Algorithms for Requirement Cut on Graphs.,2010,56,Algorithmica,2,db/journals/algorithmica/algorithmica56.html#NagarajanR10,https://doi.org/10.1007/s00453-008-9171-5 +Jianbo Qian,A Linear-Time Approximation Scheme for Maximum Weight Triangulation of Convex Polygons.,2004,40,Algorithmica,3,db/journals/algorithmica/algorithmica40.html#QianW04,https://doi.org/10.1007/s00453-004-1101-6 +Manu Basavaraju,Separation Dimension of Graphs and Hypergraphs.,2016,75,Algorithmica,1,db/journals/algorithmica/algorithmica75.html#BasavarajuCGMR16,https://doi.org/10.1007/s00453-015-0050-6 +Faith E. Fich,Simulations Among Concurrent-Write PRAMs.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#FichRW88,https://doi.org/10.1007/BF01762109 +Edith Cohen,Caching Documents with Variable Sizes and Fetching Costs: An LP-Based Approach.,2002,32,Algorithmica,3,db/journals/algorithmica/algorithmica32.html#CohenK02,https://doi.org/10.1007/s00453-001-0081-z +Lukas Folwarczny,General Caching Is Hard: Even with Small Pages.,2017,79,Algorithmica,2,db/journals/algorithmica/algorithmica79.html#FolwarcznyS17,https://doi.org/10.1007/s00453-016-0185-0 +Daniel W. Cranston,Injective Colorings of Graphs with Low Average Degree.,2011,60,Algorithmica,3,db/journals/algorithmica/algorithmica60.html#CranstonKY11,https://doi.org/10.1007/s00453-010-9425-x +Samir Khuller,Broadcasting on Networks of Workstations.,2010,57,Algorithmica,4,db/journals/algorithmica/algorithmica57.html#KhullerKW10,https://doi.org/10.1007/s00453-008-9249-0 +Samir Khuller,New Approximation Results for Resource Replication Problems.,2016,74,Algorithmica,3,db/journals/algorithmica/algorithmica74.html#KhullerSS16,https://doi.org/10.1007/s00453-015-9978-9 +Sergio Cabello,Crossing Number and Weighted Crossing Number of Near-Planar Graphs.,2011,60,Algorithmica,3,db/journals/algorithmica/algorithmica60.html#CabelloM11,https://doi.org/10.1007/s00453-009-9357-5 +Susanne Albers,New Results on Web Caching with Request Reordering.,2010,58,Algorithmica,2,db/journals/algorithmica/algorithmica58.html#Albers10,https://doi.org/10.1007/s00453-008-9276-x +Hitoshi Inamori,Security of Practical BB84 Quantum Key Distribution.,2002,34,Algorithmica,4,db/journals/algorithmica/algorithmica34.html#Inamori02a,https://doi.org/10.1007/s00453-002-0984-3 +Nir Avrahami,Minimizing Total Flow Time and Total Completion Time with Immediate Dispatching.,2007,47,Algorithmica,3,db/journals/algorithmica/algorithmica47.html#AvrahamiA07,https://doi.org/10.1007/s00453-006-0193-6 +Guojun Li,An Algorithm for Simultaneous Backbone Threading and Side-Chain Packing.,2007,48,Algorithmica,4,db/journals/algorithmica/algorithmica48.html#LiLGX07,https://doi.org/10.1007/s00453-007-0189-x +Nadav Efraty,Sparse Normalized Local Alignment.,2005,43,Algorithmica,3,db/journals/algorithmica/algorithmica43.html#EfratyL05,https://doi.org/10.1007/s00453-005-1152-3 +Masato Edahiro,Equispreading Tree in Manhattan Distance.,1996,16,Algorithmica,3,db/journals/algorithmica/algorithmica16.html#Edahiro96,https://doi.org/10.1007/BF01955680 +Friedemann Mattern,Asynchronous Distributed Termination-Parallel and Symmetric Solutions with Echo Algorithms.,1990,5,Algorithmica,3,db/journals/algorithmica/algorithmica5.html#Mattern90,https://doi.org/10.1007/BF01840392 +Danny Z. Chen,Guest Editors' Forward.,2009,53,Algorithmica,2,db/journals/algorithmica/algorithmica53.html#ChenL09,https://doi.org/10.1007/s00453-008-9186-y +D. F. Wong,Floorplan Design of VLSI Circuits.,1989,4,Algorithmica,2,db/journals/algorithmica/algorithmica4.html#WongL89,https://doi.org/10.1007/BF01553890 +Luca Foschini,On the Complexity of Time-Dependent Shortest Paths.,2014,68,Algorithmica,4,db/journals/algorithmica/algorithmica68.html#FoschiniHS14,https://doi.org/10.1007/s00453-012-9714-7 +Liam Roditty,On Bounded Leg Shortest Paths Problems.,2011,59,Algorithmica,4,db/journals/algorithmica/algorithmica59.html#RodittyS11,https://doi.org/10.1007/s00453-009-9322-3 +Takao Asano,Visibility of Disjoint Polygons.,1986,1,Algorithmica,1,db/journals/algorithmica/algorithmica1.html#AsanoAGHI86,https://doi.org/10.1007/BF01840436 +Jesper Jansson,Faster Algorithms for Computing the R* Consensus Tree.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#JanssonSVY16,https://doi.org/10.1007/s00453-016-0122-2 +Anna R. Karlin,Competitive Snoopy Caching.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#KarlinMRS88,https://doi.org/10.1007/BF01762111 +Nick Reingold,Randomized Competitive Algorithms for the List Update Problem.,1994,11,Algorithmica,1,db/journals/algorithmica/algorithmica11.html#ReingoldWS94,https://doi.org/10.1007/BF01294261 +Viliam Geffert,"Pairs of Complementary Unary Languages with ""Balanced"" Nondeterministic Automata.",2012,63,Algorithmica,3,db/journals/algorithmica/algorithmica63.html#GeffertP12,https://doi.org/10.1007/s00453-010-9479-9 +Zhi-Zhong Chen,Approximation Algorithms for Bounded Degree Phylogenetic Roots.,2008,51,Algorithmica,1,db/journals/algorithmica/algorithmica51.html#Chen08,https://doi.org/10.1007/s00453-007-9072-z +Alexander Zelikovsky,An 11/6-Approximation Algorithm for the Network Steiner Problem.,1993,9,Algorithmica,5,db/journals/algorithmica/algorithmica9.html#Zelikovsky93,https://doi.org/10.1007/BF01187035 +Songjian Lu,Finding Pathway Structures in Protein Interaction Networks.,2007,48,Algorithmica,4,db/journals/algorithmica/algorithmica48.html#LuZCS07,https://doi.org/10.1007/s00453-007-0155-7 +Jesper Jansson,A Faster and More Space-Efficient Algorithm for Inferring Arc-Annotations of RNA Sequences through Alignment.,2006,46,Algorithmica,2,db/journals/algorithmica/algorithmica46.html#JanssonNSW06,https://doi.org/10.1007/s00453-006-1207-0 +Achilleas Papakostas,Efficient Orthogonal Drawings of High Degree Graphs.,2000,26,Algorithmica,1,db/journals/algorithmica/algorithmica26.html#PapakostasT00,https://doi.org/10.1007/s004539910006 +Per Austrin,On the Impossibility of Cryptography with Tamperable Randomness.,2017,79,Algorithmica,4,db/journals/algorithmica/algorithmica79.html#AustrinCMPS17,https://doi.org/10.1007/s00453-016-0219-7 +Camil Demetrescu,Editorial.,2013,67,Algorithmica,4,db/journals/algorithmica/algorithmica67.html#DemetrescuH13,https://doi.org/10.1007/s00453-013-9824-x +Mikhail J. Atallah,On the Parallel-Decomposability of Geometric Problems.,1992,8,Algorithmica,3,db/journals/algorithmica/algorithmica8.html#AtallahT92,https://doi.org/10.1007/BF01758844 +Reuven Bar-Yehuda,A Constant Factor Approximation Algorithm for the Storage Allocation Problem.,2017,77,Algorithmica,4,db/journals/algorithmica/algorithmica77.html#Bar-YehudaBR17,https://doi.org/10.1007/s00453-016-0137-8 +Ioannis Caragiannis,Short Sequences of Improvement Moves Lead to Approximate Equilibria in Constraint Satisfaction Games.,2017,77,Algorithmica,4,db/journals/algorithmica/algorithmica77.html#Caragiannis0G17,https://doi.org/10.1007/s00453-016-0143-x +Leonid Khachiyan,Generating Cut Conjunctions in Graphs and Related Problems.,2008,51,Algorithmica,3,db/journals/algorithmica/algorithmica51.html#KhachiyanBBEGM08,https://doi.org/10.1007/s00453-007-9111-9 +Nikhil Bansal,Non-Clairvoyant Scheduling for Minimizing Mean Slowdown.,2004,40,Algorithmica,4,db/journals/algorithmica/algorithmica40.html#BansalDKS04,https://doi.org/10.1007/s00453-004-1115-0 +Greg N. Frederickson,Maintaining Regular Properties Dynamically in k-Terminal Graphs.,1998,22,Algorithmica,3,db/journals/algorithmica/algorithmica22.html#Frederickson98,https://doi.org/10.1007/PL00009227 +Yaw-Ling Lin,Synthetic Sequence Design for Signal Location Search.,2013,67,Algorithmica,3,db/journals/algorithmica/algorithmica67.html#LinWS13,https://doi.org/10.1007/s00453-013-9760-9 +Ravi Kumar 0001,Approximating Latin Square Extensions.,1999,24,Algorithmica,2,db/journals/algorithmica/algorithmica24.html#KumarRS99,https://doi.org/10.1007/PL00009274 +G. N. Srinivasa Prasanna,The Optimal Control Approach to Generalized Multiprocessor Scheduling.,1996,15,Algorithmica,1,db/journals/algorithmica/algorithmica15.html#PrasannaM96,https://doi.org/10.1007/BF01942605 +Akira Matsubayashi,Asymptotically Optimal Online Page Migration on Three Points.,2015,71,Algorithmica,4,db/journals/algorithmica/algorithmica71.html#Matsubayashi15,https://doi.org/10.1007/s00453-013-9841-9 +Paola Bonizzoni,A Linear-Time Algorithm for the Perfect Phylogeny Haplotype Problem.,2007,48,Algorithmica,3,db/journals/algorithmica/algorithmica48.html#Bonizzoni07,https://doi.org/10.1007/s00453-007-0094-3 +Joseph Wun-Tat Chan,Absolute and Asymptotic Bounds for Online Frequency Allocation in Cellular Networks.,2010,58,Algorithmica,2,db/journals/algorithmica/algorithmica58.html#ChanCYZ10,https://doi.org/10.1007/s00453-009-9279-2 +Boris Aronov,Minimum-Cost Load-Balancing Partitions.,2009,54,Algorithmica,3,db/journals/algorithmica/algorithmica54.html#AronovCK09,https://doi.org/10.1007/s00453-007-9125-3 +Ricardo A. Baeza-Yates,Faster Approximate String Matching.,1999,23,Algorithmica,2,db/journals/algorithmica/algorithmica23.html#Baeza-YatesN99,https://doi.org/10.1007/PL00009253 +Muhammad Jawaherul Alam,Linear-Time Algorithms for Hole-free Rectilinear Proportional Contact Graph Representations.,2013,67,Algorithmica,1,db/journals/algorithmica/algorithmica67.html#AlamBFGKK13,https://doi.org/10.1007/s00453-013-9764-5 +Anima Anandkumar,A Spectral Algorithm for Latent Dirichlet Allocation.,2015,72,Algorithmica,1,db/journals/algorithmica/algorithmica72.html#AnandkumarFHKL15,https://doi.org/10.1007/s00453-014-9909-1 +Amihood Amir,Swap and Mismatch Edit Distance.,2006,45,Algorithmica,1,db/journals/algorithmica/algorithmica45.html#AmirEP06,https://doi.org/10.1007/s00453-005-1192-8 +Kurt M. Anstreicher,A Monotonic Projective Algorithm for Fractional Linear Programming.,1986,1,Algorithmica,4,db/journals/algorithmica/algorithmica1.html#Anstreicher86,https://doi.org/10.1007/BF01840458 +Ding-Zhu Du,On Greedy Heuristics for Steiner Minimum Trees.,1995,13,Algorithmica,4,db/journals/algorithmica/algorithmica13.html#Du95,https://doi.org/10.1007/BF01293486 +Maw-Shang Chang,Solving the Euclidean Bottleneck Matching Problem by k-Relative Neighborhood Graphs.,1992,8,Algorithmica,3,db/journals/algorithmica/algorithmica8.html#ChangTL92,https://doi.org/10.1007/BF01758842 +Andreas Krebs,Counting Paths in VPA Is Complete for #NC 1.,2012,64,Algorithmica,2,db/journals/algorithmica/algorithmica64.html#KrebsLM12,https://doi.org/10.1007/s00453-011-9501-x +Magnús M. Halldórsson,Greed is Good: Approximating Independent Sets in Sparse and Bounded-Degree Graphs.,1997,18,Algorithmica,1,db/journals/algorithmica/algorithmica18.html#HalldorssonR97,https://doi.org/10.1007/BF02523693 +Jianer Chen,An Improved Parameterized Algorithm for the Minimum Node Multiway Cut Problem.,2009,55,Algorithmica,1,db/journals/algorithmica/algorithmica55.html#ChenLL09,https://doi.org/10.1007/s00453-007-9130-6 +Wenchang Luo,Algorithms for Communication Scheduling in Data Gathering Network with Data Compression.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#LuoXGTGL18,https://doi.org/10.1007/s00453-017-0373-6 +Aparna Das,A Quasipolynomial Time Approximation Scheme for Euclidean Capacitated Vehicle Routing.,2015,73,Algorithmica,1,db/journals/algorithmica/algorithmica73.html#DasM15,https://doi.org/10.1007/s00453-014-9906-4 +Jinsong Tan,The Consecutive Ones Submatrix Problem for Sparse Matrices.,2007,48,Algorithmica,3,db/journals/algorithmica/algorithmica48.html#TanZ07,https://doi.org/10.1007/s00453-007-0118-z +Hitoshi Suzuki,Algorithms for Multicommodity Flows in Planar Graphs.,1989,4,Algorithmica,4,db/journals/algorithmica/algorithmica4.html#SuzukiNS89,https://doi.org/10.1007/BF01553903 +Andrei Lissovoi,The Impact of a Sparse Migration Topology on the Runtime of Island Models in Dynamic Optimization.,2018,80,Algorithmica,5,db/journals/algorithmica/algorithmica80.html#LissovoiW18,https://doi.org/10.1007/s00453-017-0377-2 +Dieter Kratsch,Guest Editorial: Selected Papers from WG 2014.,2016,75,Algorithmica,1,db/journals/algorithmica/algorithmica75.html#KratschT16,https://doi.org/10.1007/s00453-016-0135-x +Seok-Hee Hong,Editorial: ISAAC 2008 Special Issue.,2011,61,Algorithmica,4,db/journals/algorithmica/algorithmica61.html#HongN11,https://doi.org/10.1007/s00453-011-9507-4 +Shang-Ching Chou,An Algorithm for Constructing Gröbner Bases from Characteristic Sets and Its Application to Geometry.,1990,5,Algorithmica,2,db/journals/algorithmica/algorithmica5.html#ChouSY90,https://doi.org/10.1007/BF01840382 +János Csirik,Online Clustering with Variable Sized Clusters.,2013,65,Algorithmica,2,db/journals/algorithmica/algorithmica65.html#CsirikEIL13,https://doi.org/10.1007/s00453-011-9586-2 +Tamás Fleiner,The Stable Roommates Problem with Choice Functions.,2010,58,Algorithmica,1,db/journals/algorithmica/algorithmica58.html#Fleiner10,https://doi.org/10.1007/s00453-009-9314-3 +Hans L. Bodlaender,Introduction.,2000,27,Algorithmica,3,db/journals/algorithmica/algorithmica27.html#Bodlaender00,https://doi.org/10.1007/s004530010015 +David Alberts,Average-Case Analysis of Dynamic Graph Algorithms.,1998,20,Algorithmica,1,db/journals/algorithmica/algorithmica20.html#AlbertsH98,https://doi.org/10.1007/PL00009186 +Fedor V. Fomin,How to Guard a Graph?,2011,61,Algorithmica,4,db/journals/algorithmica/algorithmica61.html#FominGHMVW11,https://doi.org/10.1007/s00453-009-9382-4 +Andris Ambainis,Communication Complexity in a 3-Computer Model.,1996,16,Algorithmica,3,db/journals/algorithmica/algorithmica16.html#Ambainis96,https://doi.org/10.1007/BF01955678 +Jens Jägersküpper,Combining Markov-Chain Analysis and Drift Analysis - The (1+1)©0*Evolutionary Algorithm on Linear Functions Reloaded.,2011,59,Algorithmica,3,db/journals/algorithmica/algorithmica59.html#Jagerskupper11,https://doi.org/10.1007/s00453-010-9396-y +Takehiro Ito,Minimum Cost Partitions of Trees with Supply and Demand.,2012,64,Algorithmica,3,db/journals/algorithmica/algorithmica64.html#ItoHZN12,https://doi.org/10.1007/s00453-011-9573-7 +John Iacono,Key-Independent Optimality.,2005,42,Algorithmica,1,db/journals/algorithmica/algorithmica42.html#Iacono05,https://doi.org/10.1007/s00453-004-1136-8 +Johan M. M. van Rooij,Exact Algorithms for Edge Domination.,2012,64,Algorithmica,4,db/journals/algorithmica/algorithmica64.html#RooijB12,https://doi.org/10.1007/s00453-011-9546-x +Marios Mavronicolas,The Price of Selfish Routing.,2007,48,Algorithmica,1,db/journals/algorithmica/algorithmica48.html#MavronicolasS07,https://doi.org/10.1007/s00453-006-0056-1 +Vince Grolmusz,Large Parallel Machines Can Be Extremely Slow for Small Problems.,1991,6,Algorithmica,4,db/journals/algorithmica/algorithmica6.html#Grolmusz91,https://doi.org/10.1007/BF01759055 +Henning Meyerhenke,Beyond Good Partition Shapes: An Analysis of Diffusive Graph Partitioning.,2012,64,Algorithmica,3,db/journals/algorithmica/algorithmica64.html#MeyerhenkeS12,https://doi.org/10.1007/s00453-012-9666-y +Christopher Umans,Reconstructive Dispersers and Hitting Set Generators.,2009,55,Algorithmica,1,db/journals/algorithmica/algorithmica55.html#Umans09,https://doi.org/10.1007/s00453-008-9266-z +Tatsuya Akutsu,Approximating Tree Edit Distance through String Edit Distance.,2010,57,Algorithmica,2,db/journals/algorithmica/algorithmica57.html#AkutsuFT10,https://doi.org/10.1007/s00453-008-9213-z +José R. Correa,Foreword.,2008,50,Algorithmica,4,db/journals/algorithmica/algorithmica50.html#CorreaK08,https://doi.org/10.1007/s00453-007-9034-5 +Umberto Ferraro Petrillo,The Price of Resiliency: a Case Study on Sorting with Memory Faults.,2009,53,Algorithmica,4,db/journals/algorithmica/algorithmica53.html#PetrilloFI09,https://doi.org/10.1007/s00453-008-9264-1 +Rafi Witten,Randomized Algorithms for Low-Rank Matrix Factorizations: Sharp Performance Bounds.,2015,72,Algorithmica,1,db/journals/algorithmica/algorithmica72.html#WittenC15,https://doi.org/10.1007/s00453-014-9891-7 +Anders Gidenstam,NBmalloc: Allocating Memory in a Lock-Free Manner.,2010,58,Algorithmica,2,db/journals/algorithmica/algorithmica58.html#GidenstamPT10,https://doi.org/10.1007/s00453-008-9268-x +George Christodoulou 0001,A Lower Bound for Scheduling Mechanisms.,2009,55,Algorithmica,4,db/journals/algorithmica/algorithmica55.html#ChristodoulouKV09,https://doi.org/10.1007/s00453-008-9165-3 +Serafino Cicerone,Engineering a New Algorithm for Distributed Shortest Paths on Dynamic Networks.,2013,66,Algorithmica,1,db/journals/algorithmica/algorithmica66.html#CiceroneDSFM13,https://doi.org/10.1007/s00453-012-9623-9 +Fabrizio Luccio,A New Scheme for the Deterministic Simulation of PRAMs in VLSI.,1990,5,Algorithmica,4,db/journals/algorithmica/algorithmica5.html#LuccioPP90,https://doi.org/10.1007/BF01840402 +Sanjeev Arora,Approximation Schemes for Degree-Restricted MST and Red-Blue Separation Problems.,2004,40,Algorithmica,3,db/journals/algorithmica/algorithmica40.html#AroraC04,https://doi.org/10.1007/s00453-004-1103-4 +Loïck Lhote,Gaussian Laws for the Main Parameters of the Euclid Algorithms.,2008,50,Algorithmica,4,db/journals/algorithmica/algorithmica50.html#LhoteV08,https://doi.org/10.1007/s00453-007-9009-6 +Erik Krohn,Approximate Guarding of Monotone and Rectilinear Polygons.,2013,66,Algorithmica,3,db/journals/algorithmica/algorithmica66.html#KrohnN13,https://doi.org/10.1007/s00453-012-9653-3 +Gonzalo Navarro,Improving an Algorithm for Approximate Pattern Matching.,2001,30,Algorithmica,4,db/journals/algorithmica/algorithmica30.html#NavarroB01,https://doi.org/10.1007/s00453-001-0034-6 +Nikhil Bansal,A Randomized O(log2 k)-Competitive Algorithm for Metric Bipartite Matching.,2014,68,Algorithmica,2,db/journals/algorithmica/algorithmica68.html#BansalBGN14,https://doi.org/10.1007/s00453-012-9676-9 +Hitoshi Inamori,Security of Practical Time-Reversed EPR Quantum Key Distribution.,2002,34,Algorithmica,4,db/journals/algorithmica/algorithmica34.html#Inamori02,https://doi.org/10.1007/s00453-002-0983-4 +Moses Ganardi,Tree Compression Using String Grammars.,2018,80,Algorithmica,3,db/journals/algorithmica/algorithmica80.html#GanardiHLN18,https://doi.org/10.1007/s00453-017-0279-3 +Christoph Burnikel,A Strong and Easily Computable Separation Bound for Arithmetic Expressions Involving Radicals.,2000,27,Algorithmica,1,db/journals/algorithmica/algorithmica27.html#BurnikelFMS00,https://doi.org/10.1007/s004530010005 +D. F. Wong,Probabilistic Analysis of a Grouping Algorithm.,1991,6,Algorithmica,2,db/journals/algorithmica/algorithmica6.html#WongR91,https://doi.org/10.1007/BF01759041 +Lene M. Favrholdt,On-Line Edge-Coloring with a Fixed Number of Colors.,2003,35,Algorithmica,2,db/journals/algorithmica/algorithmica35.html#FavrholdtN03,https://doi.org/10.1007/s00453-002-0992-3 +Katharina T. Huber,Reconstructing Phylogenetic Level-1 Networks from Nondense Binet and Trinet Sets.,2017,77,Algorithmica,1,db/journals/algorithmica/algorithmica77.html#HuberIMSW17,https://doi.org/10.1007/s00453-015-0069-8 +S. Thomas McCormick,Primal-Dual Algorithms for Precedence Constrained Covering Problems.,2017,78,Algorithmica,3,db/journals/algorithmica/algorithmica78.html#McCormickPVW17,https://doi.org/10.1007/s00453-016-0174-3 +Reuven Bar-Yehuda,Efficient Algorithms for Integer Programs with Two Variables per Constraint.,2001,29,Algorithmica,4,db/journals/algorithmica/algorithmica29.html#Bar-YehudaR01,https://doi.org/10.1007/s004530010075 +Liam Roditty,On Dynamic Shortest Paths Problems.,2011,61,Algorithmica,2,db/journals/algorithmica/algorithmica61.html#RodittyZ11,https://doi.org/10.1007/s00453-010-9401-5 +Leah Epstein,SONET ADMs Minimization with Divisible Paths.,2007,49,Algorithmica,1,db/journals/algorithmica/algorithmica49.html#EpsteinL07,https://doi.org/10.1007/s00453-007-0182-4 +Julián Mestre,A Primal-Dual Approximation Algorithm for Partial Vertex Cover: Making Educated Guesses.,2009,55,Algorithmica,1,db/journals/algorithmica/algorithmica55.html#Mestre09,https://doi.org/10.1007/s00453-007-9003-z +Catherine C. McGeoch,All-Pairs Shortest Paths and the Essential Subgraph.,1995,13,Algorithmica,5,db/journals/algorithmica/algorithmica13.html#McGeoch95,https://doi.org/10.1007/BF01190847 +Mireille Bousquet-Mélou,Introduction for S.I. AofA14.,2016,75,Algorithmica,4,db/journals/algorithmica/algorithmica75.html#Bousquet-MelouS16,https://doi.org/10.1007/s00453-016-0156-5 +Ben Reichardt,Error-Detection-Based Quantum Fault-Tolerance Threshold.,2009,55,Algorithmica,3,db/journals/algorithmica/algorithmica55.html#Reichardt09,https://doi.org/10.1007/s00453-007-9069-7 +Fedor V. Fomin,Nondeterministic Graph Searching: From Pathwidth to Treewidth.,2009,53,Algorithmica,3,db/journals/algorithmica/algorithmica53.html#FominFN09,https://doi.org/10.1007/s00453-007-9041-6 +Piotr Berman,Consistent Sets of Secondary Structures in Proteins.,2009,53,Algorithmica,1,db/journals/algorithmica/algorithmica53.html#BermanJ09,https://doi.org/10.1007/s00453-007-9068-8 +Ulrich Hertrampf,Resource Bounded Frequency Computations with Three Errors.,2010,56,Algorithmica,3,db/journals/algorithmica/algorithmica56.html#HertrampfM10,https://doi.org/10.1007/s00453-009-9330-3 +Christine Rüb,Line-Segment Intersection Reporting in Parallel.,1992,8,Algorithmica,2,db/journals/algorithmica/algorithmica8.html#Rub92,https://doi.org/10.1007/BF01758839 +Jan Remy,Approximation Schemes for Node-Weighted Geometric Steiner Tree Problems.,2009,55,Algorithmica,1,db/journals/algorithmica/algorithmica55.html#RemyS09,https://doi.org/10.1007/s00453-007-9114-6 +Hans L. Bodlaender,Parameterized Complexity of the Spanning Tree Congestion Problem.,2012,64,Algorithmica,1,db/journals/algorithmica/algorithmica64.html#BodlaenderFGOL12,https://doi.org/10.1007/s00453-011-9565-7 +Carlo Comin,Improved Pseudo-polynomial Bound for the Value Problem and Optimal Strategy Synthesis in Mean Payoff Games.,2017,77,Algorithmica,4,db/journals/algorithmica/algorithmica77.html#CominR17,https://doi.org/10.1007/s00453-016-0123-1 +Victor Milenkovic,Shortest Path Geometric Rounding.,2000,27,Algorithmica,1,db/journals/algorithmica/algorithmica27.html#Milenkovic00,https://doi.org/10.1007/s004530010004 +Alon Efrat,Pattern Matching for Sets of Segments.,2004,40,Algorithmica,3,db/journals/algorithmica/algorithmica40.html#EfratIV04,https://doi.org/10.1007/s00453-004-1089-y +Kurt Mehlhorn,Certifying 3-Edge-Connectivity.,2017,77,Algorithmica,2,db/journals/algorithmica/algorithmica77.html#MehlhornNS17,https://doi.org/10.1007/s00453-015-0075-x +Donald E. Knuth,Linear Probing and Graphs.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#Knuth98,https://doi.org/10.1007/PL00009240 +Marie-Louise Bruner,A Fast Algorithm for Permutation Pattern Matching Based on Alternating Runs.,2016,75,Algorithmica,1,db/journals/algorithmica/algorithmica75.html#BrunerL16,https://doi.org/10.1007/s00453-015-0013-y +Qi Cheng,Partial Lifting and the Elliptic Curve Discrete Logarithm Problem.,2006,46,Algorithmica,1,db/journals/algorithmica/algorithmica46.html#ChengH06,https://doi.org/10.1007/s00453-006-0069-9 +Peter Damaschke,Two New Perspectives on Multi-Stage Group Testing.,2013,67,Algorithmica,3,db/journals/algorithmica/algorithmica67.html#DamaschkeMT13,https://doi.org/10.1007/s00453-013-9781-4 +Daniele Frigioni,Dynamically Switching Vertices in Planar Graphs.,2000,28,Algorithmica,1,db/journals/algorithmica/algorithmica28.html#FrigioniI00,https://doi.org/10.1007/s004530010032 +Justo Puerto,On the Planar Piecewise Quadratic 1-Center Problem.,2010,57,Algorithmica,2,db/journals/algorithmica/algorithmica57.html#PuertoRT10,https://doi.org/10.1007/s00453-008-9210-2 +Babak Behsaz,On Minimum Sum of Radii and Diameters Clustering.,2015,73,Algorithmica,1,db/journals/algorithmica/algorithmica73.html#BehsazS15,https://doi.org/10.1007/s00453-014-9907-3 +Daisuke Yamaguchi,An Improved Approximation Algorithm for the Traveling Tournament Problem.,2011,61,Algorithmica,4,db/journals/algorithmica/algorithmica61.html#YamaguchiIMM11,https://doi.org/10.1007/s00453-011-9579-1 +Pankaj K. Agarwal,Streaming Algorithms for Extent Problems in High Dimensions.,2015,72,Algorithmica,1,db/journals/algorithmica/algorithmica72.html#AgarwalS15,https://doi.org/10.1007/s00453-013-9846-4 +Wim van Dam,Quantum Algorithms for Weighing Matrices and Quadratic Residues.,2002,34,Algorithmica,4,db/journals/algorithmica/algorithmica34.html#Dam02,https://doi.org/10.1007/s00453-002-0975-4 +Michael R. Fellows,On Finding Optimal and Near-Optimal Lineal Spanning Trees.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#FellowsFL88,https://doi.org/10.1007/BF01762131 +Benjamin Doerr,Theory of Evolutionary Computation.,2011,59,Algorithmica,3,db/journals/algorithmica/algorithmica59.html#DoerrJ11,https://doi.org/10.1007/s00453-010-9472-3 +Rebecca N. Wright,Experimental Performance of Shared RSA Modulus Generation.,2002,33,Algorithmica,1,db/journals/algorithmica/algorithmica33.html#WrightS02,https://doi.org/10.1007/s00453-001-0106-7 +Adam L. Buchsbaum,An Approximate Determinization Algorithm for Weighted Finite-State Automata.,2001,30,Algorithmica,4,db/journals/algorithmica/algorithmica30.html#BuchsbaumGW01,https://doi.org/10.1007/s00453-001-0026-6 +Mark de Berg,Trekking in the Alps Without Freezing or Getting Tired.,1997,18,Algorithmica,3,db/journals/algorithmica/algorithmica18.html#BergK97,https://doi.org/10.1007/PL00009159 +Martin Knauer,Better Approximation Algorithms for the Maximum Internal Spanning Tree Problem.,2015,71,Algorithmica,4,db/journals/algorithmica/algorithmica71.html#KnauerS15,https://doi.org/10.1007/s00453-013-9827-7 +Pierre Fraigniaud,Interval Routing Schemes.,1998,21,Algorithmica,2,db/journals/algorithmica/algorithmica21.html#FraigniaudG98,https://doi.org/10.1007/PL00009211 +Vikraman Arvind,Colored Hypergraph Isomorphism is Fixed Parameter Tractable.,2015,71,Algorithmica,1,db/journals/algorithmica/algorithmica71.html#ArvindDKT15,https://doi.org/10.1007/s00453-013-9787-y +Rephael Wenger,Randomized Quickhull.,1997,17,Algorithmica,3,db/journals/algorithmica/algorithmica17.html#Wenger97,https://doi.org/10.1007/BF02523195 +Hiroshi Fujiwara,Average-Case Competitive Analyses for Ski-Rental Problems.,2005,42,Algorithmica,1,db/journals/algorithmica/algorithmica42.html#FujiwaraI05,https://doi.org/10.1007/s00453-004-1142-x +Dan Gusfield,A Bounded Approximation for the Minimum Cost 2-Sat Problem.,1992,8,Algorithmica,2,db/journals/algorithmica/algorithmica8.html#GusfieldP92,https://doi.org/10.1007/BF01758838 +Emilio Di Giacomo,Ortho-polygon Visibility Representations of Embedded Graphs.,2018,80,Algorithmica,8,db/journals/algorithmica/algorithmica80.html#GiacomoDELMMW18,https://doi.org/10.1007/s00453-017-0324-2 +Troy Lee,Improved Quantum Query Algorithms for Triangle Detection and Associativity Testing.,2017,77,Algorithmica,2,db/journals/algorithmica/algorithmica77.html#LeeMS17,https://doi.org/10.1007/s00453-015-0084-9 +Timo Bingmann,Engineering Parallel String Sorting.,2017,77,Algorithmica,1,db/journals/algorithmica/algorithmica77.html#BingmannES17,https://doi.org/10.1007/s00453-015-0071-1 +Marshall W. Bern,Visibility with a Moving Point of View.,1994,11,Algorithmica,4,db/journals/algorithmica/algorithmica11.html#BernDEG94,https://doi.org/10.1007/BF01187019 +Rudolf Fleischer,Balanced Scheduling toward Loss-Free Packet Queuing and Delay Fairness.,2004,38,Algorithmica,2,db/journals/algorithmica/algorithmica38.html#FleischerK03,https://doi.org/10.1007/s00453-003-1064-z +Sandy Irani,Page Replacement with Multi-Size Pages and Applications to Web Caching.,2002,33,Algorithmica,3,db/journals/algorithmica/algorithmica33.html#Irani02a,https://doi.org/10.1007/s00453-001-0125-4 +Raphael Yuster,Maximum Matching in Regular and Almost Regular Graphs.,2013,66,Algorithmica,1,db/journals/algorithmica/algorithmica66.html#Yuster13,https://doi.org/10.1007/s00453-012-9625-7 +Viet Tung Hoang,Improved Algorithms for Maximum Agreement and©0*Compatible Supertrees.,2011,59,Algorithmica,2,db/journals/algorithmica/algorithmica59.html#HoangS11,https://doi.org/10.1007/s00453-009-9303-6 +F. Miller Maley,Testing Homotopic Routability Under Polygonal Wiring Rules.,1996,15,Algorithmica,1,db/journals/algorithmica/algorithmica15.html#Maley96,https://doi.org/10.1007/BF01942604 +Yusuke Matsumoto,On Total Unimodularity of Edge-Edge Adjacency Matrices.,2013,67,Algorithmica,2,db/journals/algorithmica/algorithmica67.html#MatsumotoKI13,https://doi.org/10.1007/s00453-013-9804-1 +Gregory Kucherov,Full-Fledged Real-Time Indexing for Constant Size Alphabets.,2017,79,Algorithmica,2,db/journals/algorithmica/algorithmica79.html#KucherovN17,https://doi.org/10.1007/s00453-016-0199-7 +Ke Yi,Optimal Tracking of Distributed Heavy Hitters and Quantiles.,2013,65,Algorithmica,1,db/journals/algorithmica/algorithmica65.html#YiZ13,https://doi.org/10.1007/s00453-011-9584-4 +Noga Alon,Finding and Counting Given Length Cycles.,1997,17,Algorithmica,3,db/journals/algorithmica/algorithmica17.html#AlonYZ97,https://doi.org/10.1007/BF02523189 +Sorina Dumitrescu,Optimal Two-Description Scalar Quantizer Design.,2005,41,Algorithmica,4,db/journals/algorithmica/algorithmica41.html#DumitrescuW05,https://doi.org/10.1007/s00453-004-1126-x +Antonis Thomas,Pure Nash Equilibria in Graphical Games and Treewidth.,2015,71,Algorithmica,3,db/journals/algorithmica/algorithmica71.html#ThomasL15,https://doi.org/10.1007/s00453-014-9923-3 +Antonis Achilleos,Parameterized Modal Satisfiability.,2012,64,Algorithmica,1,db/journals/algorithmica/algorithmica64.html#AchilleosLM12,https://doi.org/10.1007/s00453-011-9552-z +Francis Y. L. Chin,Algorithms for Placing Monitors in a Flow Network.,2014,68,Algorithmica,1,db/journals/algorithmica/algorithmica68.html#ChinCY14,https://doi.org/10.1007/s00453-012-9665-z +Takeaki Uno,An Efficient Algorithm for Solving Pseudo Clique Enumeration Problem.,2010,56,Algorithmica,1,db/journals/algorithmica/algorithmica56.html#Uno10,https://doi.org/10.1007/s00453-008-9238-3 +Levent Tunçel,On the Complexity of Preflow-Push Algorithms for Maximum-Flow Problems.,1994,11,Algorithmica,4,db/journals/algorithmica/algorithmica11.html#Tuncel94,https://doi.org/10.1007/BF01187018 +Gerth Stølting Brodal,Computing the Quartet Distance between Evolutionary Trees in Time O(n log n).,2004,38,Algorithmica,2,db/journals/algorithmica/algorithmica38.html#BrodalFP03,https://doi.org/10.1007/s00453-003-1065-y +Dániel Marx,Chordal Deletion is Fixed-Parameter Tractable.,2010,57,Algorithmica,4,db/journals/algorithmica/algorithmica57.html#Marx10,https://doi.org/10.1007/s00453-008-9233-8 +Julian Anaya,Convergecast and Broadcast by Power-Aware Mobile Agents.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#AnayaCCLPV16,https://doi.org/10.1007/s00453-014-9939-8 +Markus Lohrey,Constant-Time Tree Traversal and Subtree Equality Check for Grammar-Compressed Trees.,2018,80,Algorithmica,7,db/journals/algorithmica/algorithmica80.html#LohreyMR18,https://doi.org/10.1007/s00453-017-0331-3 +Jean-Daniel Boissonnat,A Semidynamic Construction of Higher-Order Voronoi Diagrams and Its Randomized Analysis.,1993,9,Algorithmica,4,db/journals/algorithmica/algorithmica9.html#BoissonnatDT93,https://doi.org/10.1007/BF01228508 +Bernard Chazelle,Editor's Foreword.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#Chazelle87,https://doi.org/10.1007/BF01840355 +Leah Epstein,Parametric Packing of Selfish Items and the Subset Sum Algorithm.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#EpsteinKM16,https://doi.org/10.1007/s00453-014-9942-0 +George B. Mertzios,An Intersection Model for Multitolerance Graphs: Efficient Algorithms and Hierarchy.,2014,69,Algorithmica,3,db/journals/algorithmica/algorithmica69.html#Mertzios14,https://doi.org/10.1007/s00453-012-9743-2 +Amy J. Briggs,An Efficient Algorithm for One-Step Planar Compliant Motion Planning with Uncertainty.,1992,8,Algorithmica,3,db/journals/algorithmica/algorithmica8.html#Briggs92,https://doi.org/10.1007/BF01758843 +Corinne Lucet,Evaluating Network Reliability and 2-Edge-Connected Reliability in Linear Time for Bounded Pathwidth Graphs.,2000,27,Algorithmica,3,db/journals/algorithmica/algorithmica27.html#LucetMC00,https://doi.org/10.1007/s004530010022 +Steven Kelk,Constructing Minimal Phylogenetic Networks from Softwired Clusters is Fixed Parameter Tractable.,2014,68,Algorithmica,4,db/journals/algorithmica/algorithmica68.html#KelkS14,https://doi.org/10.1007/s00453-012-9708-5 +Bengt Aspvall,Memory Requirements for Table Computations in Partial k-Tree Algorithms.,2000,27,Algorithmica,3,db/journals/algorithmica/algorithmica27.html#AspvallTP00,https://doi.org/10.1007/s004530010025 +Axel Bacher,Complexity of Anticipated Rejection Algorithms and the Darling-Mandelbrot Distribution.,2016,75,Algorithmica,4,db/journals/algorithmica/algorithmica75.html#BacherS16,https://doi.org/10.1007/s00453-015-0040-8 +Xiao Zhou,Finding Edge-Disjoint Paths in Partial k-Trees.,2000,26,Algorithmica,1,db/journals/algorithmica/algorithmica26.html#ZhouTN00,https://doi.org/10.1007/s004539910002 +Hajo Broersma,A Generalization of AT-Free Graphs and a Generic Algorithm for Solving Triangulation Problems.,2002,32,Algorithmica,4,db/journals/algorithmica/algorithmica32.html#BroersmaKKM02,https://doi.org/10.1007/s00453-001-0091-x +Ho Kyung Kim,Efficient Collision Detection among Moving Spheres with Unknown Trajectories.,2005,43,Algorithmica,3,db/journals/algorithmica/algorithmica43.html#KimGS05,https://doi.org/10.1007/s00453-005-1153-2 +Johannes Blömer,Denesting by Bounded Degree Radicals.,2000,28,Algorithmica,1,db/journals/algorithmica/algorithmica28.html#Blomer00,https://doi.org/10.1007/s004530010028 +Ishai Ben-Aroya,A Lower Bound for Nearly Minimal Adaptive and Hot Potato Algorithms.,1998,21,Algorithmica,4,db/journals/algorithmica/algorithmica21.html#Ben-AroyaCS98,https://doi.org/10.1007/PL00009219 +Petr Kolman,Simple On-Line Algorithms for the Maximum Disjoint Paths Problem.,2004,39,Algorithmica,3,db/journals/algorithmica/algorithmica39.html#KolmanS04,https://doi.org/10.1007/s00453-004-1086-1 +Amotz Bar-Noy,Set It and Forget It: Approximating the Set Once Strip Cover Problem.,2017,79,Algorithmica,2,db/journals/algorithmica/algorithmica79.html#Bar-NoyBR17,https://doi.org/10.1007/s00453-016-0198-8 +Ilan Adler,A Geometric View of Parametric Linear Programming.,1992,8,Algorithmica,2,db/journals/algorithmica/algorithmica8.html#AdlerM92,https://doi.org/10.1007/BF01758841 +Teofilo F. Gonzalez,Simple Algorithms for Mul*sage Multicasting with Forwarding.,2001,29,Algorithmica,4,db/journals/algorithmica/algorithmica29.html#Gonzalez01,https://doi.org/10.1007/s004530010072 +Frank K. H. A. Dehne,Guest Editor's Introduction.,2006,45,Algorithmica,3,db/journals/algorithmica/algorithmica45.html#Dehne06,https://doi.org/10.1007/s00453-006-1213-2 +Russ Miller,Computing Convexity Properties of Images on a Pyramid Computer.,1991,6,Algorithmica,5,db/journals/algorithmica/algorithmica6.html#MillerS91,https://doi.org/10.1007/BF01759066 +Anna R. Karlin,Algorithms for the Compilation of Regular Expressions into PLAs.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#KarlinTU87,https://doi.org/10.1007/BF01840364 +Hiroshi Kawazoe,Optimal Online Algorithms for an Electronic Commerce Money Distribution System.,2002,33,Algorithmica,3,db/journals/algorithmica/algorithmica33.html#KawazoeST02,https://doi.org/10.1007/s00453-001-0120-9 +Brandon Dixon,Optimal Parallel Verification of Minimum Spanning Trees in Logarithmic Time.,1997,17,Algorithmica,1,db/journals/algorithmica/algorithmica17.html#DixonT97,https://doi.org/10.1007/BF02523235 +Tomoya Hibi,Multi-rooted Greedy Approximation of Directed Steiner Trees with Applications.,2016,74,Algorithmica,2,db/journals/algorithmica/algorithmica74.html#HibiF16,https://doi.org/10.1007/s00453-015-9973-1 +Hervé Brönnimann,Efficient Exact Evaluation of Signs of Determinants.,2000,27,Algorithmica,1,db/journals/algorithmica/algorithmica27.html#BronnimannY00,https://doi.org/10.1007/s004530010003 +Mark de Berg,Linear Size Binary Space Partitions for Uncluttered Scenes.,2000,28,Algorithmica,3,db/journals/algorithmica/algorithmica28.html#Berg00,https://doi.org/10.1007/s004530010047 +Fang Wu,Truth-Telling Reservations.,2008,52,Algorithmica,1,db/journals/algorithmica/algorithmica52.html#WuZH08,https://doi.org/10.1007/s00453-007-9107-5 +Stefano Basagni,Editors Foreword to the Special Issue on Principles of Mobile Communications and Computing.,2007,49,Algorithmica,4,db/journals/algorithmica/algorithmica49.html#BasagniP07,https://doi.org/10.1007/s00453-007-9031-8 +Katharina T. Huber,Beyond Representing Orthology Relations by Trees.,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#HuberS18,https://doi.org/10.1007/s00453-016-0241-9 +Bernhard Bliem,Complexity of Secure Sets.,2018,80,Algorithmica,10,db/journals/algorithmica/algorithmica80.html#BliemW18,https://doi.org/10.1007/s00453-017-0358-5 +Bogdan S. Chlebus,Many-to-Many Communication in Radio Networks.,2009,54,Algorithmica,1,db/journals/algorithmica/algorithmica54.html#ChlebusKR09,https://doi.org/10.1007/s00453-007-9123-5 +Uwe Rösler,The Contraction Method for Recursive Algorithms.,2001,29,Algorithmica,1,db/journals/algorithmica/algorithmica29.html#RoslerR01,https://doi.org/10.1007/BF02679611 +Gianfranco Bilardi,Area-Time Lower-Bound Techniques with Applications to Sorting.,1986,1,Algorithmica,1,db/journals/algorithmica/algorithmica1.html#BilardiP86,https://doi.org/10.1007/BF01840437 +Shiva Chaudhuri,Computing Mimicking Networks.,2000,26,Algorithmica,1,db/journals/algorithmica/algorithmica26.html#ChaudhuriSWZ00,https://doi.org/10.1007/s004539910003 +Giorgio Ausiello,On Resilient Graph Spanners.,2016,74,Algorithmica,4,db/journals/algorithmica/algorithmica74.html#AusielloFIR16,https://doi.org/10.1007/s00453-015-0006-x +Jean Cardinal,The Stackelberg Minimum Spanning Tree Game.,2011,59,Algorithmica,2,db/journals/algorithmica/algorithmica59.html#CardinalDFJLNW11,https://doi.org/10.1007/s00453-009-9299-y +R. Z. Hwang,The Slab Dividing Approach To Solve the Euclidean P-Center Problem.,1993,9,Algorithmica,1,db/journals/algorithmica/algorithmica9.html#HwangLC93,https://doi.org/10.1007/BF01185335 +J. F. Weng,Expansion of Linear Steiner Trees.,1997,19,Algorithmica,3,db/journals/algorithmica/algorithmica19.html#Weng97,https://doi.org/10.1007/PL00009176 +N. Regnauld,Contextual Building Typification in Automated Map Generalization.,2001,30,Algorithmica,2,db/journals/algorithmica/algorithmica30.html#Regnauld01,https://doi.org/10.1007/s00453-001-0008-8 +Klaus Jansen,Maximizing the Total Profit of Rectangles Packed into a Rectangle.,2007,47,Algorithmica,3,db/journals/algorithmica/algorithmica47.html#JansenZ07,https://doi.org/10.1007/s00453-006-0194-5 +Carlos Fisch Brito,Competitive Analysis of Organization Networks or Multicast Acknowledgment: How Much to Wait?,2012,64,Algorithmica,4,db/journals/algorithmica/algorithmica64.html#BritoKV12,https://doi.org/10.1007/s00453-011-9567-5 +Nir Bitansky,On Virtual Grey Box Obfuscation for General Circuits.,2017,79,Algorithmica,4,db/journals/algorithmica/algorithmica79.html#BitanskyCKP17,https://doi.org/10.1007/s00453-016-0218-8 +Raphael Reitzig,Building Fences Straight and High: An Optimal Algorithm for Finding the Maximum Length You Can Cut k Times from Given Sticks.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#ReitzigW18,https://doi.org/10.1007/s00453-017-0392-3 +Adrian Dumitrescu,Opaque Sets.,2014,69,Algorithmica,2,db/journals/algorithmica/algorithmica69.html#DumitrescuJP14,https://doi.org/10.1007/s00453-012-9735-2 +Thomas Erlebach,An Algorithmic View on OVSF Code Assignment.,2007,47,Algorithmica,3,db/journals/algorithmica/algorithmica47.html#ErlebachJMNSW07,https://doi.org/10.1007/s00453-006-0188-3 +Richard Anderson,Single-Layer Cylindrical Compaction.,1993,9,Algorithmica,3,db/journals/algorithmica/algorithmica9.html#AndersonKS93,https://doi.org/10.1007/BF01190901 +René van Bevern,Myhill-Nerode Methods for Hypergraphs.,2015,73,Algorithmica,4,db/journals/algorithmica/algorithmica73.html#BevernDFGR15,https://doi.org/10.1007/s00453-015-9977-x +Sape J. Mullender,Distributed Match-Making.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#MullenderV88,https://doi.org/10.1007/BF01762123 +Brian C. Dean,Faster Algorithms for Stable Allocation Problems.,2010,58,Algorithmica,1,db/journals/algorithmica/algorithmica58.html#DeanM10,https://doi.org/10.1007/s00453-010-9416-y +J. Ian Munro,Top-k Term-Proximity in Succinct Space.,2017,78,Algorithmica,2,db/journals/algorithmica/algorithmica78.html#MunroNNST17,https://doi.org/10.1007/s00453-016-0167-2 +Basile Couëtoux,The Maximum Labeled Path Problem.,2017,78,Algorithmica,1,db/journals/algorithmica/algorithmica78.html#CouetouxNV17,https://doi.org/10.1007/s00453-016-0155-6 +Alok Baveja,Improved Bounds in Stochastic Matching and Optimization.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#BavejaCNSX18,https://doi.org/10.1007/s00453-017-0383-4 +Chandrajit L. Bajaj,Convex Hulls of Objects Bounded by Algebraic Curves.,1991,6,Algorithmica,4,db/journals/algorithmica/algorithmica6.html#BajajK91,https://doi.org/10.1007/BF01759058 +André Berger,Linear Time Algorithms for Generalized Edge Dominating Set Problems.,2008,50,Algorithmica,2,db/journals/algorithmica/algorithmica50.html#BergerP08,https://doi.org/10.1007/s00453-007-9057-y +Refael Hassin,Approximation Algorithms for a Capacitated Network Design Problem.,2004,38,Algorithmica,3,db/journals/algorithmica/algorithmica38.html#HassinRS03,https://doi.org/10.1007/s00453-003-1069-7 +Luca Trevisan,"Erratum: A Correction to ""Parallel Approximation Algorithms by Positive Linear Programming"".",2000,27,Algorithmica,2,db/journals/algorithmica/algorithmica27.html#Trevisan00,https://doi.org/10.1007/s004530010007 +Amos Korman,Constructing Labeling Schemes through Universal Matrices.,2010,57,Algorithmica,4,db/journals/algorithmica/algorithmica57.html#KormanPR10,https://doi.org/10.1007/s00453-008-9226-7 +Fan R. K. Chung,Oblivious and Adaptive Strategies for the Majority and Plurality Problems.,2007,48,Algorithmica,2,db/journals/algorithmica/algorithmica48.html#ChungGMY07,https://doi.org/10.1007/s00453-007-0060-0 +Anupam Gupta,Making Doubling Metrics Geodesic.,2011,59,Algorithmica,1,db/journals/algorithmica/algorithmica59.html#GuptaT11,https://doi.org/10.1007/s00453-010-9397-x +Esther M. Arkin,Approximations for Maximum Transportation with Permutable Supply Vector and Other Capacitated Star Packing Problems.,2004,39,Algorithmica,2,db/journals/algorithmica/algorithmica39.html#ArkinHRS04,https://doi.org/10.1007/s00453-004-1087-0 +Leena Salmela,Approximate Boyer-Moore String Matching for Small Alphabets.,2010,58,Algorithmica,3,db/journals/algorithmica/algorithmica58.html#SalmelaTK10,https://doi.org/10.1007/s00453-009-9286-3 +Erik D. Demaine,The Two-Handed Tile Assembly Model is not Intrinsically Universal.,2016,74,Algorithmica,2,db/journals/algorithmica/algorithmica74.html#DemainePRSSW16,https://doi.org/10.1007/s00453-015-9976-y +Pinar Heggernes,Contracting Graphs to Paths and Trees.,2014,68,Algorithmica,1,db/journals/algorithmica/algorithmica68.html#HeggernesHLLP14,https://doi.org/10.1007/s00453-012-9670-2 +Daniel S. Hirschberg,The Set LCS Problem.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#HirschbergL87,https://doi.org/10.1007/BF01840351 +Rudolf Fleischer,Foreword.,2006,46,Algorithmica,1,db/journals/algorithmica/algorithmica46.html#Fleischer06,https://doi.org/10.1007/s00453-006-0067-y +Hajo Broersma,Exact Algorithms for Finding Longest Cycles in Claw-Free Graphs.,2013,65,Algorithmica,1,db/journals/algorithmica/algorithmica65.html#BroersmaFHP13,https://doi.org/10.1007/s00453-011-9576-4 +Meng He 0001,A Framework for Succinct Labeled Ordinal Trees over Large Alphabets.,2014,70,Algorithmica,4,db/journals/algorithmica/algorithmica70.html#HeMZ14,https://doi.org/10.1007/s00453-014-9894-4 +Chaitanya Swamy,Primal-Dual Algorithms for Connected Facility Location Problems.,2004,40,Algorithmica,4,db/journals/algorithmica/algorithmica40.html#SwamyK04,https://doi.org/10.1007/s00453-004-1112-3 +Kikuo Fujimura,Planning a Time-Minimal Motion Among Moving Obstacles.,1993,10,Algorithmica,1,db/journals/algorithmica/algorithmica10.html#FujimuraS93,https://doi.org/10.1007/BF01908631 +Stephen Alstrup,Generalized Dominators for Structured Programs.,2000,27,Algorithmica,3,db/journals/algorithmica/algorithmica27.html#AlstrupLT00,https://doi.org/10.1007/s004530010018 +Matt Gibson 0001,On Metric Clustering to Minimize the Sum of Radii.,2010,57,Algorithmica,3,db/journals/algorithmica/algorithmica57.html#GibsonKKPV10,https://doi.org/10.1007/s00453-009-9282-7 +S. L. Mantzaris,"On ""An Improved Algorithm for Finding the Median Distributively"".",1993,10,Algorithmica,6,db/journals/algorithmica/algorithmica10.html#Mantzaris93,https://doi.org/10.1007/BF01891834 +Karsten Weihe,Reconstructing the Topology of a CAD Model - a Discrete Approach.,2000,26,Algorithmica,1,db/journals/algorithmica/algorithmica26.html#WeiheW00,https://doi.org/10.1007/s004539910007 +Chih-Hung Liu,Minimizing the Diameter of a Spanning Tree for Imprecise Points.,2018,80,Algorithmica,2,db/journals/algorithmica/algorithmica80.html#LiuM18,https://doi.org/10.1007/s00453-017-0292-6 +Xiaotie Deng,Competitive Distributed Decision-Making.,1996,16,Algorithmica,2,db/journals/algorithmica/algorithmica16.html#DengP96,https://doi.org/10.1007/BF01940643 +Amos Fiat,A Deterministic O(k®9*)-Competitive k-Server Algorithm for the Circle.,1994,11,Algorithmica,6,db/journals/algorithmica/algorithmica11.html#FiatRRS94,https://doi.org/10.1007/BF01189994 +Emilio Di Giacomo,Drawing Colored Graphs with Constrained Vertex Positions and Few Bends per Edge.,2010,57,Algorithmica,4,db/journals/algorithmica/algorithmica57.html#GiacomoLT10,https://doi.org/10.1007/s00453-008-9255-2 +Avrim Blum,Static Optimality and Dynamic Search-Optimality in Lists and Trees.,2003,36,Algorithmica,3,db/journals/algorithmica/algorithmica36.html#BlumCK03,https://doi.org/10.1007/s00453-003-1015-8 +Peter C. Fishburn,Pinwheel Scheduling: Achievable Densities.,2002,34,Algorithmica,1,db/journals/algorithmica/algorithmica34.html#FishburnL02,https://doi.org/10.1007/s00453-002-0938-9 +Boris Aronov,On the Geodesic Voronoi Diagram of Point Sites in a Simple Polygon.,1989,4,Algorithmica,1,db/journals/algorithmica/algorithmica4.html#Aronov89,https://doi.org/10.1007/BF01553882 +L. Paul Chew,Finding the Consensus Shape for a Protein Family.,2004,38,Algorithmica,1,db/journals/algorithmica/algorithmica38.html#ChewK03,https://doi.org/10.1007/s00453-003-1045-2 +Jean-Daniel Boissonnat,Probing a Scene of Nonconvex Polyhedra.,1992,8,Algorithmica,4,db/journals/algorithmica/algorithmica8.html#BoissonnatY92,https://doi.org/10.1007/BF01758849 +Michele Flammini,Interval Routing Schemes.,1996,16,Algorithmica,6,db/journals/algorithmica/algorithmica16.html#FlamminiGS96,https://doi.org/10.1007/BF01944351 +Michael Kaufmann 0001,Randomized Multipacket Routing and Sorting on Meshes.,1997,17,Algorithmica,3,db/journals/algorithmica/algorithmica17.html#KaufmannS97,https://doi.org/10.1007/BF02523190 +Sven Verdoolaege,Counting Integer Points in Parametric Polytopes Using Barvinok's Rational Functions.,2007,48,Algorithmica,1,db/journals/algorithmica/algorithmica48.html#VerdoolaegeSBLB07,https://doi.org/10.1007/s00453-006-1231-0 +Marios Mavronicolas,A Network Game with Attackers and a Defender.,2008,51,Algorithmica,3,db/journals/algorithmica/algorithmica51.html#MavronicolasPPS08,https://doi.org/10.1007/s00453-007-9109-3 +Cristina G. Fernandes,Improved Approximation Algorithms for Capacitated Fault-Tolerant k-Center.,2018,80,Algorithmica,3,db/journals/algorithmica/algorithmica80.html#FernandesPP18,https://doi.org/10.1007/s00453-017-0398-x +Takao Asano,Guest Editorial: Selected Papers from ISAAC 2011.,2013,67,Algorithmica,1,db/journals/algorithmica/algorithmica67.html#AsanoNO13,https://doi.org/10.1007/s00453-013-9798-8 +Mee Yee Chan,Schedulers for Larger Classes of Pinwheel Instances.,1993,9,Algorithmica,5,db/journals/algorithmica/algorithmica9.html#ChanC93,https://doi.org/10.1007/BF01187034 +Piotr Sankowski,Fast Dynamic Transitive Closure with Lookahead.,2010,56,Algorithmica,2,db/journals/algorithmica/algorithmica56.html#SankowskiM10,https://doi.org/10.1007/s00453-008-9166-2 +My T. Thai,Guest Editorial: Computing and Combinatorics.,2012,64,Algorithmica,2,db/journals/algorithmica/algorithmica64.html#Thai12,https://doi.org/10.1007/s00453-012-9649-z +René van Bevern,Towards Optimal and Expressive Kernelization for d-Hitting Set.,2014,70,Algorithmica,1,db/journals/algorithmica/algorithmica70.html#Bevern14,https://doi.org/10.1007/s00453-013-9774-3 +Rajesh Chitnis,List H-Coloring a Graph by Removing Few Vertices.,2017,78,Algorithmica,1,db/journals/algorithmica/algorithmica78.html#ChitnisEM17,https://doi.org/10.1007/s00453-016-0139-6 +Andrew McGregor 0001,Space-Efficient Estimation of Statistics Over Sub-Sampled Streams.,2016,74,Algorithmica,2,db/journals/algorithmica/algorithmica74.html#McGregorPTW16,https://doi.org/10.1007/s00453-015-9974-0 +Bruce Randall Donald,Provably Good Approximation Algorithms for Optimal Kinodynamic Planning: Robots with Decoupled Dynamics Bounds.,1995,14,Algorithmica,6,db/journals/algorithmica/algorithmica14.html#DonaldX95,https://doi.org/10.1007/BF01586636 +Amir M. Ben-Amram,Lower Bounds for Dynamic Data Structures on Algebraic RAMs.,2002,32,Algorithmica,3,db/journals/algorithmica/algorithmica32.html#Ben-AmramG02,https://doi.org/10.1007/s00453-001-0079-6 +Robert F. Cohen,Dynamic Expression Trees.,1995,13,Algorithmica,3,db/journals/algorithmica/algorithmica13.html#CohenT95,https://doi.org/10.1007/BF01190506 +Fredrik Bengtsson,Efficient Algorithms for k Maximum Sums.,2006,46,Algorithmica,1,db/journals/algorithmica/algorithmica46.html#BengtssonC06,https://doi.org/10.1007/s00453-006-0076-x +Sanjoy K. Baruah,Proportionate Progress: A Notion of Fairness in Resource Allocation.,1996,15,Algorithmica,6,db/journals/algorithmica/algorithmica15.html#BaruahCPV96,https://doi.org/10.1007/BF01940883 +Feodor F. Dragan,An Approximation Algorithm for the Tree t-Spanner Problem on Unweighted Graphs via Generalized Chordal Graphs.,2014,69,Algorithmica,4,db/journals/algorithmica/algorithmica69.html#DraganK14,https://doi.org/10.1007/s00453-013-9765-4 +Min-Te Sun,An Optimal Algorithm for the Minimum Disc Cover Problem.,2008,50,Algorithmica,1,db/journals/algorithmica/algorithmica50.html#SunYYL08,https://doi.org/10.1007/s00453-007-9043-4 +Don Coppersmith,Discrete Logarithms in GF(p).,1986,1,Algorithmica,1,db/journals/algorithmica/algorithmica1.html#CoppersmithOS86,https://doi.org/10.1007/BF01840433 +Anthony Lazanas,Landmark-Based Robot Navigation.,1995,13,Algorithmica,5,db/journals/algorithmica/algorithmica13.html#LazanasL95,https://doi.org/10.1007/BF01190850 +Gerth Stølting Brodal,D2-Tree: A New Overlay with Deterministic Bounds.,2015,72,Algorithmica,3,db/journals/algorithmica/algorithmica72.html#BrodalSTZ15,https://doi.org/10.1007/s00453-014-9878-4 +Zeev Nutov,Degree Constrained Node-Connectivity Problems.,2014,70,Algorithmica,2,db/journals/algorithmica/algorithmica70.html#Nutov14,https://doi.org/10.1007/s00453-013-9849-1 +Vida Dujmovic,A Fixed-Parameter Approach to 2-Layer Planarization.,2006,45,Algorithmica,2,db/journals/algorithmica/algorithmica45.html#DujmovicFHKLMNRRSWW06,https://doi.org/10.1007/s00453-005-1181-y +Kazuo Iwama,A (2-c(1/sqrt(N)))-Approximation Algorithm for the Stable Marriage Problem.,2008,51,Algorithmica,3,db/journals/algorithmica/algorithmica51.html#IwamaMY08,https://doi.org/10.1007/s00453-007-9101-y +Eglantine Camby,A New Characterization of Pk-Free Graphs.,2016,75,Algorithmica,1,db/journals/algorithmica/algorithmica75.html#CambyS16,https://doi.org/10.1007/s00453-015-9989-6 +Richard Cole 0001,A Nearly Optimal Deterministic Parallel Voroni Diagram Algorithm.,1996,16,Algorithmica,6,db/journals/algorithmica/algorithmica16.html#ColeGO96,https://doi.org/10.1007/BF01944352 +Jianer Chen,Foreword from the Guest Editors.,2008,52,Algorithmica,2,db/journals/algorithmica/algorithmica52.html#ChenK08,https://doi.org/10.1007/s00453-007-9153-z +Xiaotie Deng,On Walrasian Price of CPU Time.,2007,48,Algorithmica,2,db/journals/algorithmica/algorithmica48.html#DengHL07,https://doi.org/10.1007/s00453-007-0064-9 +Huy Hoang Do,Compressed Directed Acyclic Word Graph with Application in Local Alignment.,2013,67,Algorithmica,2,db/journals/algorithmica/algorithmica67.html#DoS13,https://doi.org/10.1007/s00453-013-9794-z +S. Sudarshan 0001,A Fast Algorithm for Computing Sparse Visibility Graphs.,1990,5,Algorithmica,2,db/journals/algorithmica/algorithmica5.html#SudarshanR90,https://doi.org/10.1007/BF01840385 +Giuseppe Di Battista,Small Area Drawings of Outerplanar Graphs.,2009,54,Algorithmica,1,db/journals/algorithmica/algorithmica54.html#BattistaF09,https://doi.org/10.1007/s00453-007-9117-3 +Jørgen Bang-Jensen,Parallel Algorithms for the Hamiltonian Cycle and Hamiltonian Path Problems in Semicomplete Bipartite Digraphs.,1997,17,Algorithmica,1,db/journals/algorithmica/algorithmica17.html#Bang-JensenHMP97,https://doi.org/10.1007/BF02523239 +Michael A. Bender,The Cost of Cache-Oblivious Searching.,2011,61,Algorithmica,2,db/journals/algorithmica/algorithmica61.html#BenderBFGHHIL11,https://doi.org/10.1007/s00453-010-9394-0 +Michael J. Pelsmajer,Crossing Numbers of Graphs with Rotation Systems.,2011,60,Algorithmica,3,db/journals/algorithmica/algorithmica60.html#PelsmajerSS11,https://doi.org/10.1007/s00453-009-9343-y +Michael A. Erdmann,On Multiple Moving Objects.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#ErdmannL87,https://doi.org/10.1007/BF01840371 +Meena Mahajan,Building Above Read-Once Polynomials: Identity Testing and Hardness of Representation.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#MahajanRS16,https://doi.org/10.1007/s00453-015-0101-z +Xin He,On Succinct Greedy Drawings of Plane Triangulations and 3-Connected Plane Graphs.,2014,68,Algorithmica,2,db/journals/algorithmica/algorithmica68.html#HeZ14,https://doi.org/10.1007/s00453-012-9682-y +Mark de Berg,Finding Pairwise Intersections Inside a Query Range.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#BergGM18,https://doi.org/10.1007/s00453-017-0384-3 +Joan Boyar,Scheduling Jobs on Grid Processors.,2010,57,Algorithmica,4,db/journals/algorithmica/algorithmica57.html#BoyarF10,https://doi.org/10.1007/s00453-008-9257-0 +Florian Barbero,Parameterized and Approximation Algorithms for the Load Coloring Problem.,2017,79,Algorithmica,1,db/journals/algorithmica/algorithmica79.html#BarberoGJS17,https://doi.org/10.1007/s00453-016-0259-z +Micha Hofri,Saddle Points in Random Matrices: Analysis of Knuth Search Algorithms.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#HofriJ98,https://doi.org/10.1007/PL00009237 +Hu Ding,FPTAS for Minimizing the Earth Mover's Distance Under Rigid Transformations and Related Problems.,2017,78,Algorithmica,3,db/journals/algorithmica/algorithmica78.html#DingX17,https://doi.org/10.1007/s00453-016-0173-4 +Christos Koufogiannakis,Greedy Γ6*-Approximation Algorithm for Covering with Arbitrary Constraints and Submodular Cost.,2013,66,Algorithmica,1,db/journals/algorithmica/algorithmica66.html#KoufogiannakisY13,https://doi.org/10.1007/s00453-012-9629-3 +Igor L. Markov,Constant-Degree Graph Expansions that Preserve Treewidth.,2011,59,Algorithmica,4,db/journals/algorithmica/algorithmica59.html#MarkovS11,https://doi.org/10.1007/s00453-009-9312-5 +Fedor V. Fomin,Sharp Separation and Applications to Exact and Parameterized Algorithms.,2012,63,Algorithmica,3,db/journals/algorithmica/algorithmica63.html#FominGLS12,https://doi.org/10.1007/s00453-011-9555-9 +Joachim Gehweiler,A Distributed O(1)-Approximation Algorithm for the Uniform Facility Location Problem.,2014,68,Algorithmica,3,db/journals/algorithmica/algorithmica68.html#GehweilerLS14,https://doi.org/10.1007/s00453-012-9690-y +Leonidas J. Guibas,Constructing Strongly Convex Approximate Hulls with Inaccurate Primitives.,1993,9,Algorithmica,6,db/journals/algorithmica/algorithmica9.html#GuibasSS93,https://doi.org/10.1007/BF01190154 +Stefan Kratsch,On Kernelization and Approximation for the Vector Connectivity Problem.,2017,79,Algorithmica,1,db/journals/algorithmica/algorithmica79.html#KratschS17,https://doi.org/10.1007/s00453-016-0231-y +Venkatesan Guruswami,Inapproximability Results for Set Splitting and Satisfiability Problems with No Mixed Clauses.,2004,38,Algorithmica,3,db/journals/algorithmica/algorithmica38.html#Guruswami03,https://doi.org/10.1007/s00453-003-1072-z +Sergio Cabello,Approximation Algorithms for Aligning Points.,2003,37,Algorithmica,3,db/journals/algorithmica/algorithmica37.html#CabelloK03,https://doi.org/10.1007/s00453-003-1033-6 +Markus Bläser,Fast Evaluation of Interlace Polynomials on Graphs of Bounded Treewidth.,2011,61,Algorithmica,1,db/journals/algorithmica/algorithmica61.html#BlaserH11,https://doi.org/10.1007/s00453-010-9439-4 +Anna R. Karlin,Competitive Randomized Algorithms for Nonuniform Problems.,1994,11,Algorithmica,6,db/journals/algorithmica/algorithmica11.html#KarlinMMO94,https://doi.org/10.1007/BF01189993 +Maryam Aliakbarpour,Sublinear-Time Algorithms for Counting Star Subgraphs via Edge Sampling.,2018,80,Algorithmica,2,db/journals/algorithmica/algorithmica80.html#AliakbarpourBGP18,https://doi.org/10.1007/s00453-017-0287-3 +Peyman Afshani,Optimal Deterministic Shallow Cuttings for 3-d Dominance Ranges.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#AfshaniT18,https://doi.org/10.1007/s00453-017-0376-3 +Frank K. H. A. Dehne,Editor's Foreword Special Issue on Parallel Algorithms for Geometric Problems on Digitzed Pictures.,1991,6,Algorithmica,5,db/journals/algorithmica/algorithmica6.html#Dehne91,https://doi.org/10.1007/BF01759064 +Martin R. Ehmsen,List Factoring and Relative Worst Order Analysis.,2013,66,Algorithmica,2,db/journals/algorithmica/algorithmica66.html#EhmsenKL13,https://doi.org/10.1007/s00453-012-9637-3 +Ilario Bonacina,Strong ETH and Resolution via Games and the Multiplicity of Strategies.,2017,79,Algorithmica,1,db/journals/algorithmica/algorithmica79.html#BonacinaT17,https://doi.org/10.1007/s00453-016-0228-6 +Frédéric Magniez,Property Testing of Regular Tree Languages.,2007,49,Algorithmica,2,db/journals/algorithmica/algorithmica49.html#MagniezR07,https://doi.org/10.1007/s00453-007-9028-3 +Eyal Amir,Approximation Algorithms for Treewidth.,2010,56,Algorithmica,4,db/journals/algorithmica/algorithmica56.html#Amir10,https://doi.org/10.1007/s00453-008-9180-4 +Marek Chrobak,Tile-Packing Tomography Is NP-hard.,2012,64,Algorithmica,2,db/journals/algorithmica/algorithmica64.html#ChrobakDGLT12,https://doi.org/10.1007/s00453-011-9498-1 +Claire Kenyon,Maximum Queue Size and Hashing with Lazy Deletion.,1991,6,Algorithmica,4,db/journals/algorithmica/algorithmica6.html#KenyonV91,https://doi.org/10.1007/BF01759063 +Stanislav Angelov,The Network as a Storage Device: Dynamic Routing with Bounded Buffers.,2009,55,Algorithmica,1,db/journals/algorithmica/algorithmica55.html#AngelovKK09,https://doi.org/10.1007/s00453-007-9143-1 +Chee-Keng Yap,Parallel Triangulation of a Polygon in Two Cails to the Trapezoidal Map.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#Yap88,https://doi.org/10.1007/BF01762118 +Ashwin Guha,An Algorithmic Characterization of Polynomial Functions over Zpn.,2015,71,Algorithmica,1,db/journals/algorithmica/algorithmica71.html#GuhaD15,https://doi.org/10.1007/s00453-013-9799-7 +Giuseppe Di Battista,Output-Sensitive Reporting of Disjoint Paths.,1999,23,Algorithmica,4,db/journals/algorithmica/algorithmica23.html#BattistaTV99,https://doi.org/10.1007/PL00009264 +Flavia Bonomo,b-Coloring is NP-hard on Co-bipartite Graphs and Polytime Solvable on Tree-Cographs.,2015,73,Algorithmica,2,db/journals/algorithmica/algorithmica73.html#BonomoSSV15,https://doi.org/10.1007/s00453-014-9921-5 +R. Z. Hwang,The Searching over Separators Strategy To Solve Some NP-Hard Problems in Subexponential Time.,1993,9,Algorithmica,4,db/journals/algorithmica/algorithmica9.html#HwangCL93,https://doi.org/10.1007/BF01228511 +Takeshi Hisao,A Characterization of Planar Graphs by Pseudo-Line Arrangements.,2003,35,Algorithmica,3,db/journals/algorithmica/algorithmica35.html#Hisao03,https://doi.org/10.1007/s00453-002-0999-9 +Chandrajit L. Bajaj,Generation of Configuration Space Obstacles: The Case of Moving Algebraic Curves.,1989,4,Algorithmica,2,db/journals/algorithmica/algorithmica4.html#BajajK89,https://doi.org/10.1007/BF01553884 +Steffen Heber,Common Intervals of Multiple Permutations.,2011,60,Algorithmica,2,db/journals/algorithmica/algorithmica60.html#HeberMS11,https://doi.org/10.1007/s00453-009-9332-1 +Kyle Genova,An Experimental Evaluation of the Best-of-Many Christofides' Algorithm for the Traveling Salesman Problem.,2017,78,Algorithmica,4,db/journals/algorithmica/algorithmica78.html#GenovaW17,https://doi.org/10.1007/s00453-017-0293-5 +Seok-Hee Hong,A Linear-Time Algorithm for Symmetric Convex Drawings of Internally Triconnected Plane Graphs.,2010,58,Algorithmica,2,db/journals/algorithmica/algorithmica58.html#HongN10,https://doi.org/10.1007/s00453-008-9275-y +Michael Elkin,An Approximation Algorithm for the Directed Telephone Multicast Problem.,2006,45,Algorithmica,4,db/journals/algorithmica/algorithmica45.html#ElkinK06,https://doi.org/10.1007/s00453-005-1196-4 +Otfried Schwarzkopf,Parallel Computation of Disease Transforms.,1991,6,Algorithmica,5,db/journals/algorithmica/algorithmica6.html#Schwarzkopf91,https://doi.org/10.1007/BF01759067 +Swan Dubois,Maximum Metric Spanning Tree Made Byzantine Tolerant.,2015,73,Algorithmica,1,db/journals/algorithmica/algorithmica73.html#DuboisMT15,https://doi.org/10.1007/s00453-014-9913-5 +M. Reza Khani,Improved Approximation Algorithms for the Min-max Tree Cover and Bounded Tree Cover Problems.,2014,69,Algorithmica,2,db/journals/algorithmica/algorithmica69.html#KhaniS14,https://doi.org/10.1007/s00453-012-9740-5 +Adrian Dumitrescu,On the Largest Empty Axis-Parallel Box Amidst n Points.,2013,66,Algorithmica,2,db/journals/algorithmica/algorithmica66.html#DumitrescuJ13,https://doi.org/10.1007/s00453-012-9635-5 +Kei Uchizawa,On the Rainbow Connectivity of Graphs: Complexity and FPT Algorithms.,2013,67,Algorithmica,2,db/journals/algorithmica/algorithmica67.html#UchizawaAISZ13,https://doi.org/10.1007/s00453-012-9689-4 +Edward G. Coffman Jr.,Packing Random Intervals On-Line.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#CoffmanFJP98,https://doi.org/10.1007/PL00009233 +Kurt Mehlhorn,Maintaining Dynamic Sequences under Equality Tests in Polylogarithmic Time.,1997,17,Algorithmica,2,db/journals/algorithmica/algorithmica17.html#MehlhornSU97,https://doi.org/10.1007/BF02522825 +David P. Dobkin,An Efficient Algorithm for Finding the CSG Representation of a Simple Polygon.,1993,10,Algorithmica,1,db/journals/algorithmica/algorithmica10.html#DobkinGHS93,https://doi.org/10.1007/BF01908629 +Alberto Apostolico,Optimal Parallel Detection of Squares in Strings.,1992,8,Algorithmica,4,db/journals/algorithmica/algorithmica8.html#Apostolico92,https://doi.org/10.1007/BF01758848 +Pang-Chieh Chen,Heuristic Sampling on DAGs.,1994,12,Algorithmica,6,db/journals/algorithmica/algorithmica12.html#Chen94,https://doi.org/10.1007/BF01188715 +Naveen Garg 0001,Assigning Papers to Referees.,2010,58,Algorithmica,1,db/journals/algorithmica/algorithmica58.html#GargKKMM10,https://doi.org/10.1007/s00453-009-9386-0 +Hung-Lung Wang,An Optimal Algorithm for the Weighted Backup 2-Center Problem on a Tree.,2017,77,Algorithmica,2,db/journals/algorithmica/algorithmica77.html#Wang17,https://doi.org/10.1007/s00453-015-0081-z +Yoram Moses,Programming Simultaneous Actions Using Common Knowledge.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#MosesT88,https://doi.org/10.1007/BF01762112 +Wolfgang Panny,Bottom-Up Mergesort - a Detailed Analysis.,1995,14,Algorithmica,4,db/journals/algorithmica/algorithmica14.html#PannyP95,https://doi.org/10.1007/BF01294131 +John Fearnley,Approximate Well-supported Nash Equilibria Below Two-thirds.,2016,76,Algorithmica,2,db/journals/algorithmica/algorithmica76.html#FearnleyGSS16,https://doi.org/10.1007/s00453-015-0029-3 +Franz J. Brandenburg,Recognizing Optimal 1-Planar Graphs in Linear Time.,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#Brandenburg18,https://doi.org/10.1007/s00453-016-0226-8 +Jun-ya Takahashi,Shortest Noncrossing Paths in Plane Graphs.,1996,16,Algorithmica,3,db/journals/algorithmica/algorithmica16.html#TakahashiSN96,https://doi.org/10.1007/BF01955681 +Alon Efrat,Covering with Ellipses.,2004,38,Algorithmica,1,db/journals/algorithmica/algorithmica38.html#EfratHKKRW03,https://doi.org/10.1007/s00453-003-1047-0 +C. S. Jeong,Parallel Geometric Algorithms on a Mesh-Connected Computer.,1990,5,Algorithmica,2,db/journals/algorithmica/algorithmica5.html#JeongL90,https://doi.org/10.1007/BF01840383 +Sairam Subramanian,An Efficient Parallel Algorithm for Shortest Paths in Planar Layered Digraphs.,1995,14,Algorithmica,4,db/journals/algorithmica/algorithmica14.html#SubramanianTV95,https://doi.org/10.1007/BF01294130 +Daniel Binkele-Raible,Parameterized Measure and Conquer for Problems with No Small Kernels.,2012,64,Algorithmica,1,db/journals/algorithmica/algorithmica64.html#Binkele-RaibleF12a,https://doi.org/10.1007/s00453-011-9566-6 +Daniel Krenn,Compositions into Powers of b: Asymptotic Enumeration and Parameters.,2016,75,Algorithmica,4,db/journals/algorithmica/algorithmica75.html#KrennW16,https://doi.org/10.1007/s00453-015-0061-3 +Remco C. Veltkamp,Shape Algorithmics.,2004,38,Algorithmica,1,db/journals/algorithmica/algorithmica38.html#Veltkamp03,https://doi.org/10.1007/s00453-003-1039-0 +Ildikó Schlotter,Campaign Management Under Approval-Driven Voting Rules.,2017,77,Algorithmica,1,db/journals/algorithmica/algorithmica77.html#SchlotterFE17,https://doi.org/10.1007/s00453-015-0064-0 +Christophe Crespelle,Fully Dynamic Algorithm for Recognition and Modular Decomposition of Permutation Graphs.,2010,58,Algorithmica,2,db/journals/algorithmica/algorithmica58.html#CrespelleP10,https://doi.org/10.1007/s00453-008-9273-0 +Uwe Rösler,On the Analysis of Stochastic Divide and Conquer Algorithms.,2001,29,Algorithmica,1,db/journals/algorithmica/algorithmica29.html#Rosler01,https://doi.org/10.1007/BF02679621 +Stefan Kratsch,Fixed-Parameter Evolutionary Algorithms and the Vertex Cover Problem.,2013,65,Algorithmica,4,db/journals/algorithmica/algorithmica65.html#KratschN13,https://doi.org/10.1007/s00453-012-9660-4 +Jaroslaw Byrka,An Improved Approximation Algorithm for Knapsack Median Using Sparsification.,2018,80,Algorithmica,4,db/journals/algorithmica/algorithmica80.html#ByrkaPRSST18,https://doi.org/10.1007/s00453-017-0294-4 +Carola Doerr,Preface to the Special Issue on Theory of Genetic and Evolutionary Computation.,2017,78,Algorithmica,2,db/journals/algorithmica/algorithmica78.html#DoerrC17,https://doi.org/10.1007/s00453-017-0280-x +Michael T. Goodrich,Guest Editor's Foreword.,2002,33,Algorithmica,3,db/journals/algorithmica/algorithmica33.html#Goodrich02,https://doi.org/10.1007/s00453-001-0118-3 +Ilan Adler,Polynomial Algorithms for Linear Programming over the Algebraic Numbers.,1994,12,Algorithmica,6,db/journals/algorithmica/algorithmica12.html#AdlerB94,https://doi.org/10.1007/BF01188714 +Kevin Buchin,Median Trajectories.,2013,66,Algorithmica,3,db/journals/algorithmica/algorithmica66.html#BuchinBKLSWW13,https://doi.org/10.1007/s00453-012-9654-2 +Asaf Shapira,All-Pairs Bottleneck Paths in Vertex Weighted Graphs.,2011,59,Algorithmica,4,db/journals/algorithmica/algorithmica59.html#ShapiraYZ11,https://doi.org/10.1007/s00453-009-9328-x +Nikhil Bansal,When LP Is the Cure for Your Matching Woes: Improved Bounds for Stochastic Matchings.,2012,63,Algorithmica,4,db/journals/algorithmica/algorithmica63.html#BansalGLMNR12,https://doi.org/10.1007/s00453-011-9511-8 +Emilio Di Giacomo,2-Layer Right Angle Crossing Drawings.,2014,68,Algorithmica,4,db/journals/algorithmica/algorithmica68.html#GiacomoDEL14,https://doi.org/10.1007/s00453-012-9706-7 +N. Innami,The Steiner Ratio Conjecture of Gilbert-Pollak May Still Be Open.,2010,57,Algorithmica,4,db/journals/algorithmica/algorithmica57.html#InnamiKMS10,https://doi.org/10.1007/s00453-008-9254-3 +Zhi-Zhong Chen,A Linear-Time Algorithm for 7-Coloring 1-Plane Graphs.,2005,43,Algorithmica,3,db/journals/algorithmica/algorithmica43.html#ChenK05,https://doi.org/10.1007/s00453-004-1134-x +Jiong Guo,Improved Algorithms and Complexity Results for Power Domination in Graphs.,2008,52,Algorithmica,2,db/journals/algorithmica/algorithmica52.html#GuoNR08,https://doi.org/10.1007/s00453-007-9147-x +Xi Chen 0001,Quantum Separation of Local Search and Fixed Point Computation.,2010,56,Algorithmica,3,db/journals/algorithmica/algorithmica56.html#ChenST10,https://doi.org/10.1007/s00453-009-9289-0 +Paz Carmi,Power Assignment in Radio Networks with Two Power Levels.,2007,47,Algorithmica,2,db/journals/algorithmica/algorithmica47.html#CarmiK07,https://doi.org/10.1007/s00453-006-1230-1 +Haim Kaplan,A Simpler Linear-Time Recognition of Circular-Arc Graphs.,2011,61,Algorithmica,3,db/journals/algorithmica/algorithmica61.html#KaplanN11a,https://doi.org/10.1007/s00453-010-9432-y +Michael J. Post,Scheduling Multihop CDMA Networks in the Presence of Secondary Conflicts.,1989,4,Algorithmica,3,db/journals/algorithmica/algorithmica4.html#PostKS89,https://doi.org/10.1007/BF01553897 +Arash Farzan,A Uniform Paradigm to Succinctly Encode Various Families of Trees.,2014,68,Algorithmica,1,db/journals/algorithmica/algorithmica68.html#FarzanM14,https://doi.org/10.1007/s00453-012-9664-0 +Benjamin Hescott,Tight Bounds for Active Self-Assembly Using an Insertion Primitive.,2017,77,Algorithmica,2,db/journals/algorithmica/algorithmica77.html#HescottMW17,https://doi.org/10.1007/s00453-015-0085-8 +Frédéric Magniez,Foreword from the Guest Editors.,2009,55,Algorithmica,3,db/journals/algorithmica/algorithmica55.html#MagniezN09,https://doi.org/10.1007/s00453-008-9232-9 +Thore Husfeldt,Guest Editorial: Special Issue on Parameterized and Exact Computation.,2017,79,Algorithmica,1,db/journals/algorithmica/algorithmica79.html#HusfeldtK17,https://doi.org/10.1007/s00453-017-0339-8 +Tzuoo-Hawn Yeh,Distributed and On-Line Routing on Tori.,2002,32,Algorithmica,4,db/journals/algorithmica/algorithmica32.html#YehKLY02,https://doi.org/10.1007/s00453-001-0090-y +Ilias Diakonikolas,Efficiently Testing Sparse GF(2) Polynomials.,2011,61,Algorithmica,3,db/journals/algorithmica/algorithmica61.html#DiakonikolasLMSW11,https://doi.org/10.1007/s00453-010-9426-9 +Manfred Kunde,Optimal Deterministic Sorting and Routing on Grids and Tori with Diagonals.,1999,25,Algorithmica,4,db/journals/algorithmica/algorithmica25.html#KundeNRR99,https://doi.org/10.1007/PL00009288 +Davide Bilò,A Faster Computation of All the Best Swap Edges of a Shortest Paths Tree.,2015,73,Algorithmica,3,db/journals/algorithmica/algorithmica73.html#BiloGP15,https://doi.org/10.1007/s00453-014-9912-6 +Steven S. Seiden,Online Randomized Multiprocessor Scheduling.,2000,28,Algorithmica,2,db/journals/algorithmica/algorithmica28.html#Seiden00,https://doi.org/10.1007/s004530010014 +Pasin Manurangsi,Improved Approximation Algorithms for Projection Games.,2017,77,Algorithmica,2,db/journals/algorithmica/algorithmica77.html#ManurangsiM17,https://doi.org/10.1007/s00453-015-0088-5 +Hans L. Bodlaender,Parallel Algorithms for Series Parallel Graphs and Graphs with Treewidth Two.,2001,29,Algorithmica,4,db/journals/algorithmica/algorithmica29.html#BodlaenderF01,https://doi.org/10.1007/s004530010070 +Uwe Schöning,A Probabilistic Algorithm for k -SAT Based on Limited Local Search and Restart.,2002,32,Algorithmica,4,db/journals/algorithmica/algorithmica32.html#Schoning02,https://doi.org/10.1007/s00453-001-0094-7 +Fedor V. Fomin,Solving Connected Dominating Set Faster than 2 n .,2008,52,Algorithmica,2,db/journals/algorithmica/algorithmica52.html#FominGK08,https://doi.org/10.1007/s00453-007-9145-z +Eduardo Sany Laber,Guest Editorial: Special Issue on Latin American Theoretical Informatics Symposium (LATIN).,2011,59,Algorithmica,1,db/journals/algorithmica/algorithmica59.html#LaberBF11,https://doi.org/10.1007/s00453-010-9473-2 +Yakov Nekrich,Space Efficient Dynamic Orthogonal Range Reporting.,2007,49,Algorithmica,2,db/journals/algorithmica/algorithmica49.html#Nekrich07,https://doi.org/10.1007/s00453-007-9030-9 +Sanjiv Kapoor,Stochastic Rearrangement Rules for Self-Organizing Data Structures.,1991,6,Algorithmica,2,db/journals/algorithmica/algorithmica6.html#KapoorR91,https://doi.org/10.1007/BF01759046 +Peter Sanders 0001,Fast Concurrent Access to Parallel Disks.,2003,35,Algorithmica,1,db/journals/algorithmica/algorithmica35.html#SandersEK03,https://doi.org/10.1007/s00453-002-0987-0 +Kwan-Hee Yoo,Linear-Time Algorithms for Finding the Shadow Volumes from a Convex Area Light Source.,1998,20,Algorithmica,3,db/journals/algorithmica/algorithmica20.html#YooKSC98,https://doi.org/10.1007/PL00009194 +Yanjun Zhang,Efficiency of Randomized Parallel Backtrack Search.,1999,24,Algorithmica,1,db/journals/algorithmica/algorithmica24.html#ZhangO99,https://doi.org/10.1007/PL00009269 +Alessandro Panconesi,Foreword.,2007,47,Algorithmica,3,db/journals/algorithmica/algorithmica47.html#Panconesi07,https://doi.org/10.1007/s00453-006-0214-5 +Alexis C. Kaporis,Improved Bounds for Finger Search on a RAM.,2013,66,Algorithmica,2,db/journals/algorithmica/algorithmica66.html#KaporisMSTTZ13,https://doi.org/10.1007/s00453-012-9636-4 +Aline Medeiros Saettler,Correction to: Trading Off Worst and Expected Cost in Decision Tree Problems.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#SaettlerLC18,https://doi.org/10.1007/s00453-018-0423-8 +John H. Reif,Movement Planning in the Presence of Flows.,2004,39,Algorithmica,2,db/journals/algorithmica/algorithmica39.html#ReifS04,https://doi.org/10.1007/s00453-003-1079-5 +Bernard Chazelle,Fractional Cascading: II. Applications.,1986,1,Algorithmica,2,db/journals/algorithmica/algorithmica1.html#ChazelleG86a,https://doi.org/10.1007/BF01840441 +Bodo Manthey,Approximation Algorithms for Multi-Criteria Traveling Salesman Problems.,2009,53,Algorithmica,1,db/journals/algorithmica/algorithmica53.html#MantheyR09,https://doi.org/10.1007/s00453-007-9011-z +Lusheng Wang,Space Efficient Algorithms for Ordered Tree Comparison.,2008,51,Algorithmica,3,db/journals/algorithmica/algorithmica51.html#WangZ08,https://doi.org/10.1007/s00453-007-9100-z +Ulrich Faigle,Greedy Oriented Flows.,2018,80,Algorithmica,4,db/journals/algorithmica/algorithmica80.html#FaigleKP18,https://doi.org/10.1007/s00453-017-0306-4 +Alfredo Viola,Preface-S.I.: LATIN 2014.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#Viola16,https://doi.org/10.1007/s00453-016-0181-4 +Hsiao-Fei Liu,On Locating Disjoint Segments with Maximum Sum of Densities.,2009,54,Algorithmica,1,db/journals/algorithmica/algorithmica54.html#LiuC09,https://doi.org/10.1007/s00453-007-9122-6 +Petr A. Golovach,An Incremental Polynomial Time Algorithm to Enumerate All Minimal Edge Dominating Sets.,2015,72,Algorithmica,3,db/journals/algorithmica/algorithmica72.html#GolovachHKV15,https://doi.org/10.1007/s00453-014-9875-7 +Hanjo Täubig,Inequalities for the Number of Walks in Graphs.,2013,66,Algorithmica,4,db/journals/algorithmica/algorithmica66.html#TaubigWKHM13,https://doi.org/10.1007/s00453-013-9766-3 +Mohamed Jebalia,Log-Linear Convergence and Divergence of©0*the©0*Scale-Invariant (1+1)-ES in Noisy Environments.,2011,59,Algorithmica,3,db/journals/algorithmica/algorithmica59.html#JebaliaAH11,https://doi.org/10.1007/s00453-010-9403-3 +P. Krishnan,Adaptive Disk Spindown via Optimal Rent-to-Buy in Probabilistic Environments.,1999,23,Algorithmica,1,db/journals/algorithmica/algorithmica23.html#KrishnanLV99,https://doi.org/10.1007/PL00009249 +Stephan Held,Fast Prefix Adders for Non-uniform Input Arrival Times.,2017,77,Algorithmica,1,db/journals/algorithmica/algorithmica77.html#HeldS17,https://doi.org/10.1007/s00453-015-0067-x +Dana Ron,Exponentially Improved Algorithms and Lower Bounds for Testing Signed Majorities.,2015,72,Algorithmica,2,db/journals/algorithmica/algorithmica72.html#RonS15,https://doi.org/10.1007/s00453-013-9858-0 +Marwan Al-Jubeh,Augmenting the Edge Connectivity of Planar Straight Line Graphs to Three.,2011,61,Algorithmica,4,db/journals/algorithmica/algorithmica61.html#Al-JubehIRSTV11,https://doi.org/10.1007/s00453-011-9551-0 +Andrzej Lingas,Optimal Parallel Algorithms for Rectilinear Link-Distance Problems.,1995,14,Algorithmica,3,db/journals/algorithmica/algorithmica14.html#LingasMS95,https://doi.org/10.1007/BF01206332 +Reid Andersen,No-Three-in-Line-in-3D.,2007,47,Algorithmica,4,db/journals/algorithmica/algorithmica47.html#AndersenCL07,https://doi.org/10.1007/s00453-006-0160-2 +Tobias Christ,Improved Bounds for Wireless Localization.,2010,57,Algorithmica,3,db/journals/algorithmica/algorithmica57.html#ChristHOU10,https://doi.org/10.1007/s00453-009-9287-2 +Ran El-Yaniv,Optimal Search and One-Way Trading Online Algorithms.,2001,30,Algorithmica,1,db/journals/algorithmica/algorithmica30.html#El-YanivFKT01,https://doi.org/10.1007/s00453-001-0003-0 +Fedor V. Fomin,Minimum Fill-in of Sparse Graphs: Kernelization and Approximation.,2015,71,Algorithmica,1,db/journals/algorithmica/algorithmica71.html#FominPV15,https://doi.org/10.1007/s00453-013-9776-1 +Nimrod Megiddo,Extending NC and RNC Algorithms.,1989,4,Algorithmica,4,db/journals/algorithmica/algorithmica4.html#Megiddo89,https://doi.org/10.1007/BF01553905 +Christian Gießen,The Interplay of Population Size and Mutation Probability in the (1 + and#955*) EA on OneMax.,2017,78,Algorithmica,2,db/journals/algorithmica/algorithmica78.html#GiessenW17,https://doi.org/10.1007/s00453-016-0214-z +Refael Hassin,The Complexity of Bottleneck Labeled Graph Problems.,2010,58,Algorithmica,2,db/journals/algorithmica/algorithmica58.html#HassinMS10,https://doi.org/10.1007/s00453-008-9261-4 +Steven M. Kautz,Self-Assembling Rulers for Approximating Generalized Sierpinski Carpets.,2013,67,Algorithmica,2,db/journals/algorithmica/algorithmica67.html#KautzS13,https://doi.org/10.1007/s00453-012-9691-x +Andrew Chi-Chih Yao,Minimean Optimal Key Arrangements in Hash Tables.,1995,14,Algorithmica,5,db/journals/algorithmica/algorithmica14.html#Yao95,https://doi.org/10.1007/BF01192048 +Robert Crowston,Max-Cut Parameterized Above the Edwards-Erdō*7*s Bound.,2015,72,Algorithmica,3,db/journals/algorithmica/algorithmica72.html#CrowstonJM15,https://doi.org/10.1007/s00453-014-9870-z +Eduardo Sany Laber,An Approximation Algorithm for Binary Searching in Trees.,2011,59,Algorithmica,4,db/journals/algorithmica/algorithmica59.html#LaberM11,https://doi.org/10.1007/s00453-009-9325-0 +Yixin Cao 0001,Cluster Editing: Kernelization Based on Edge Cuts.,2012,64,Algorithmica,1,db/journals/algorithmica/algorithmica64.html#CaoC12,https://doi.org/10.1007/s00453-011-9595-1 +Mark H. Nodine,Blocking for External Graph Searching.,1996,16,Algorithmica,2,db/journals/algorithmica/algorithmica16.html#NodineGV96,https://doi.org/10.1007/BF01940646 +Bruno Escoffier,The Price of Optimum: Complexity and Approximation for a Matching Game.,2017,77,Algorithmica,3,db/journals/algorithmica/algorithmica77.html#EscoffierGM17,https://doi.org/10.1007/s00453-015-0108-5 +Djamal Belazzougui,Improved Space-Time Tradeoffs for Approximate Full-Text Indexing with One Edit Error.,2015,72,Algorithmica,3,db/journals/algorithmica/algorithmica72.html#Belazzougui15,https://doi.org/10.1007/s00453-014-9873-9 +Xiaotie Deng,Preface.,2008,52,Algorithmica,1,db/journals/algorithmica/algorithmica52.html#DengY08,https://doi.org/10.1007/s00453-007-9001-1 +Ulrich Laube,Maximum Likelihood Analysis of the Ford-Fulkerson Method on Special Graphs.,2016,74,Algorithmica,4,db/journals/algorithmica/algorithmica74.html#LaubeN16,https://doi.org/10.1007/s00453-015-9998-5 +John Dabney,An Efficient Algorithm for Batch Stability Testing.,2010,58,Algorithmica,1,db/journals/algorithmica/algorithmica58.html#DabneyD10,https://doi.org/10.1007/s00453-009-9320-5 +Yossi Azar,How to Allocate Goods in an Online Market?,2016,74,Algorithmica,2,db/journals/algorithmica/algorithmica74.html#AzarBJ16,https://doi.org/10.1007/s00453-014-9964-7 +Tak Wah Lam,Improved Approximate String Matching Using Compressed Suffix Data Structures.,2008,51,Algorithmica,3,db/journals/algorithmica/algorithmica51.html#LamSW08,https://doi.org/10.1007/s00453-007-9104-8 +Faisal N. Abu-Khzam,Scalable Parallel Algorithms for FPT Problems.,2006,45,Algorithmica,3,db/journals/algorithmica/algorithmica45.html#Abu-KhzamLSS06,https://doi.org/10.1007/s00453-006-1214-1 +Joseph Wun-Tat Chan,On Dynamic Bin Packing: An Improved Lower Bound and Resource Augmentation Analysis.,2009,53,Algorithmica,2,db/journals/algorithmica/algorithmica53.html#ChanWY09,https://doi.org/10.1007/s00453-008-9185-z +Rahul Jain 0001,A Direct Product Theorem for Two-Party Bounded-Round Public-Coin Communication Complexity.,2016,76,Algorithmica,3,db/journals/algorithmica/algorithmica76.html#JainPY16,https://doi.org/10.1007/s00453-015-0100-0 +Arvind Gupta,Linear-Time Algorithms for Partial k-Tree Complements.,2000,27,Algorithmica,3,db/journals/algorithmica/algorithmica27.html#GuptaKS00,https://doi.org/10.1007/s004530010019 +Neelima Gupta,An Efficient Output-Size Sensitive Parallel Algorithm for Hidden-Surface Removal for Terrains.,2001,31,Algorithmica,2,db/journals/algorithmica/algorithmica31.html#GuptaS01,https://doi.org/10.1007/s00453-001-0042-6 +Daniel König,Evaluation of Circuits Over Nilpotent and Polycyclic Groups.,2018,80,Algorithmica,5,db/journals/algorithmica/algorithmica80.html#KonigL18,https://doi.org/10.1007/s00453-017-0343-z +Esko Ukkonen,On-Line Construction of Suffix Trees.,1995,14,Algorithmica,3,db/journals/algorithmica/algorithmica14.html#Ukkonen95,https://doi.org/10.1007/BF01206331 +Hamid Zarrabi-Zadeh,An Almost Space-Optimal Streaming Algorithm for Coresets in Fixed Dimensions.,2011,60,Algorithmica,1,db/journals/algorithmica/algorithmica60.html#Zarrabi-Zadeh11,https://doi.org/10.1007/s00453-010-9392-2 +L. Paul Chew,Constrained Delaunay Triangulations.,1989,4,Algorithmica,1,db/journals/algorithmica/algorithmica4.html#Chew89,https://doi.org/10.1007/BF01553881 +Lars Arge,External-Memory Algorithms for Processing Line Segments in Geographic Information Systems.,2007,47,Algorithmica,1,db/journals/algorithmica/algorithmica47.html#ArgeVV07,https://doi.org/10.1007/s00453-006-1208-z +Michael Kaufmann 0001,Parity Conditions in Homotopic Knock-Knee Routing.,1993,9,Algorithmica,1,db/journals/algorithmica/algorithmica9.html#KaufmannM93,https://doi.org/10.1007/BF01185338 +Kamal Jain,An Approximation Algorithm for the Fault Tolerant Metric Facility Location Problem.,2004,38,Algorithmica,3,db/journals/algorithmica/algorithmica38.html#JainV03,https://doi.org/10.1007/s00453-003-1070-1 +Tomasz Radzik,Tight Bounds on the Number of Minimum-Mean Cycle Cancellations and Related Results.,1994,11,Algorithmica,3,db/journals/algorithmica/algorithmica11.html#RadzikG94,https://doi.org/10.1007/BF01240734 +T.-H. Hubert Chan,Sparse Fault-Tolerant Spanners for Doubling Metrics with Bounded Hop-Diameter or Degree.,2015,71,Algorithmica,1,db/journals/algorithmica/algorithmica71.html#ChanLN15,https://doi.org/10.1007/s00453-013-9779-y +Louis Ibarra,A Fully Dynamic Graph Algorithm for Recognizing Interval Graphs.,2010,58,Algorithmica,3,db/journals/algorithmica/algorithmica58.html#Ibarra10,https://doi.org/10.1007/s00453-009-9291-6 +Yen-Tai Lai,A Theory of Rectangular Dual Graphs.,1990,5,Algorithmica,4,db/journals/algorithmica/algorithmica5.html#LaiL90,https://doi.org/10.1007/BF01840399 +George Karakostas,Emergency Connectivity in Ad-hoc Networks with Selfish Nodes.,2014,68,Algorithmica,2,db/journals/algorithmica/algorithmica68.html#KarakostasM14,https://doi.org/10.1007/s00453-012-9675-x +Benjamin Doerr,Static and Self-Adjusting Mutation Strengths for Multi-valued Decision Variables.,2018,80,Algorithmica,5,db/journals/algorithmica/algorithmica80.html#DoerrDK18,https://doi.org/10.1007/s00453-017-0341-1 +Mark Shand,Algorithms for Corner Stitched Data-Structures.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#Shand87,https://doi.org/10.1007/BF01840349 +Xuemin Lin,Delay Optimization in Quorum Consensus.,2004,38,Algorithmica,2,db/journals/algorithmica/algorithmica38.html#Lin03,https://doi.org/10.1007/s00453-003-1066-x +Michael Drmota,A Central Limit Theorem for the Number of Degree-k Vertices in Random Maps.,2013,66,Algorithmica,4,db/journals/algorithmica/algorithmica66.html#DrmotaP13,https://doi.org/10.1007/s00453-013-9751-x +Bang Ye Wu,The Swap Edges of a Multiple-Sources Routing Tree.,2008,50,Algorithmica,3,db/journals/algorithmica/algorithmica50.html#WuHC08,https://doi.org/10.1007/s00453-007-9080-z +H. Bast,A Heuristic for Dijkstra's Algorithm with Many Targets and Its Use in Weighted Matching Algorithms.,2003,36,Algorithmica,1,db/journals/algorithmica/algorithmica36.html#BastMS03,https://doi.org/10.1007/s00453-002-1008-z +Jozef Hales,Combinatorial RNA Design: Designability and Structure-Approximating Algorithm in Watson-Crick and Nussinov-Jacobson Energy Models.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#HalesHMPS17,https://doi.org/10.1007/s00453-016-0196-x +Charles Knessl,A Note on the Asymptotic Behavior of the Depth of Tries.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#Knessl98,https://doi.org/10.1007/PL00009239 +Kazuo Iwama,A 25/17-Approximation Algorithm for the Stable Marriage Problem with One-Sided Ties.,2014,68,Algorithmica,3,db/journals/algorithmica/algorithmica68.html#IwamaMY14,https://doi.org/10.1007/s00453-012-9699-2 +Timo von Oertzen,Exact Computation of Polynomial Zeros Expressible by Square Roots.,2006,46,Algorithmica,1,db/journals/algorithmica/algorithmica46.html#Oertzen06,https://doi.org/10.1007/s00453-006-0071-2 +Vladimir Pestov,Lower Bounds on Performance of Metric Tree Indexing Schemes for Exact Similarity Search in High Dimensions.,2013,66,Algorithmica,2,db/journals/algorithmica/algorithmica66.html#Pestov13,https://doi.org/10.1007/s00453-012-9638-2 +Sepehr Assadi,The Minimum Vulnerability Problem.,2014,70,Algorithmica,4,db/journals/algorithmica/algorithmica70.html#AssadiENYZ14,https://doi.org/10.1007/s00453-014-9927-z +Hervé Daudé,Random 2 XORSAT Phase Transition.,2011,59,Algorithmica,1,db/journals/algorithmica/algorithmica59.html#DaudeR11,https://doi.org/10.1007/s00453-009-9308-1 +Shang-Ching Chou,On the Algebraic Formulation of Certain Geometry Statements and Mechanical Geometry Theorem Proving.,1989,4,Algorithmica,2,db/journals/algorithmica/algorithmica4.html#ChouY89,https://doi.org/10.1007/BF01553889 +Chandra Chekuri,A Note on Multiflows and Treewidth.,2009,54,Algorithmica,3,db/journals/algorithmica/algorithmica54.html#ChekuriKS09,https://doi.org/10.1007/s00453-007-9129-z +Nili Guttmann-Beck,Approximation Algorithms with Bounded Performance Guarantees for the Clustered Traveling Salesman Problem.,2000,28,Algorithmica,4,db/journals/algorithmica/algorithmica28.html#Guttmann-BeckHKR00,https://doi.org/10.1007/s004530010045 +Katharina T. Huber,Encoding and Constructing 1-Nested Phylogenetic Networks with Trinets.,2013,66,Algorithmica,3,db/journals/algorithmica/algorithmica66.html#HuberM13,https://doi.org/10.1007/s00453-012-9659-x +Daniel J. Harvey,Design and Performance of a Heterogeneous Grid Partitioner.,2006,45,Algorithmica,3,db/journals/algorithmica/algorithmica45.html#HarveyDB06,https://doi.org/10.1007/s00453-006-1223-0 +Oded Goldreich 0001,Property Testing in Bounded Degree Graphs.,2002,32,Algorithmica,2,db/journals/algorithmica/algorithmica32.html#GoldreichR02,https://doi.org/10.1007/s00453-001-0078-7 +Anup Bhattacharya,Sampling in Space Restricted Settings.,2018,80,Algorithmica,5,db/journals/algorithmica/algorithmica80.html#BhattacharyaIJK18,https://doi.org/10.1007/s00453-017-0335-z +Mohammad Ali Abam,Spanners for Geodesic Graphs and Visibility Graphs.,2018,80,Algorithmica,2,db/journals/algorithmica/algorithmica80.html#Abam18,https://doi.org/10.1007/s00453-016-0268-y +Lee R. Nackman,Point Placement Algorithms for Delaunay Triangulation of Polygonal Domains.,1994,12,Algorithmica,1,db/journals/algorithmica/algorithmica12.html#NackmanS94,https://doi.org/10.1007/BF01377180 +Panos M. Pardalos,Algorithms for a Class of Isotonic Regression Problems.,1999,23,Algorithmica,3,db/journals/algorithmica/algorithmica23.html#PardalosX99,https://doi.org/10.1007/PL00009258 +Xianyue Li,A Better Constant-Factor Approximation for Selected-Internal Steiner Minimum Tree.,2010,56,Algorithmica,3,db/journals/algorithmica/algorithmica56.html#LiZHKW10,https://doi.org/10.1007/s00453-009-9301-8 +Mohammad Taghi Hajiaghayi,Approximating Buy-at-Bulk and Shallow-Light k-Steiner Trees.,2009,53,Algorithmica,1,db/journals/algorithmica/algorithmica53.html#HajiaghayiKS09,https://doi.org/10.1007/s00453-007-9013-x +Gahyun Park,A Generalization of Multiple Choice Balls-into-Bins: Tight Bounds.,2017,77,Algorithmica,4,db/journals/algorithmica/algorithmica77.html#Park17,https://doi.org/10.1007/s00453-016-0141-z +Zaixin Lu,Guest Editorial: Special Issue on Combinatorial Optimization and Applications.,2018,80,Algorithmica,6,db/journals/algorithmica/algorithmica80.html#LuK18,https://doi.org/10.1007/s00453-018-0430-9 +Sixia Chen,Online Metric Tracking and Smoothing.,2014,68,Algorithmica,1,db/journals/algorithmica/algorithmica68.html#ChenR14,https://doi.org/10.1007/s00453-012-9669-8 +Toby Berger,Asymptotic Component Densities in Programmable Gate Arrays Realizing All Circuits of a Given Size.,1993,9,Algorithmica,2,db/journals/algorithmica/algorithmica9.html#BergerHO93,https://doi.org/10.1007/BF01188707 +Daniël Paulusma,Model Counting for CNF Formulas of Bounded Modular Treewidth.,2016,76,Algorithmica,1,db/journals/algorithmica/algorithmica76.html#PaulusmaSS16,https://doi.org/10.1007/s00453-015-0030-x +Joseph C. Culberson,Analysis of the Standard Deletion Algorithms in Exact Fit Domain Binary Search Trees.,1990,5,Algorithmica,3,db/journals/algorithmica/algorithmica5.html#CulbersonM90,https://doi.org/10.1007/BF01840390 +Jae-Sook Cheong,Computing All Immobilizing Grasps of a Simple Polygon with Few Contacts.,2006,44,Algorithmica,2,db/journals/algorithmica/algorithmica44.html#CheongHS06,https://doi.org/10.1007/s00453-005-1202-x +Joan Feigenbaum,Testing and Spot-Checking of Data Streams.,2002,34,Algorithmica,1,db/journals/algorithmica/algorithmica34.html#FeigenbaumKSV02,https://doi.org/10.1007/s00453-002-0959-4 +David P. Dobkin,Decomposition and Intersection of Simple Splinegons.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#DobkinSW88,https://doi.org/10.1007/BF01762127 +Brian C. Dean,Approximation Algorithms for k-hurdle Problems.,2011,59,Algorithmica,1,db/journals/algorithmica/algorithmica59.html#DeanGPW11,https://doi.org/10.1007/s00453-010-9408-y +Michael Kaufmann 0001,Routing on Meshes with Buses.,1997,18,Algorithmica,3,db/journals/algorithmica/algorithmica18.html#KaufmannRS97,https://doi.org/10.1007/PL00009164 +Conrado Martinez,Partial Match Queries in Relaxed Multidimensional Search Trees.,2001,29,Algorithmica,1,db/journals/algorithmica/algorithmica29.html#MartinezPP01,https://doi.org/10.1007/BF02679618 +Costas S. Iliopoulos,Indexing Factors with Gaps.,2009,55,Algorithmica,1,db/journals/algorithmica/algorithmica55.html#IliopoulosR09,https://doi.org/10.1007/s00453-007-9141-3 +Daniel Johannsen,Evolutionary Algorithms for Quantum Computers.,2014,68,Algorithmica,1,db/journals/algorithmica/algorithmica68.html#JohannsenKL14,https://doi.org/10.1007/s00453-013-9784-1 +Hosam M. Mahmoud,The Joint Distribution of the Three Types of Nodes in Uniform Binary Trees.,1995,13,Algorithmica,3,db/journals/algorithmica/algorithmica13.html#Mahmoud95,https://doi.org/10.1007/BF01190510 +Christos Levcopoulos,There Are Planar Graphs Almost as Good as the Complete Graphs and Almost as Cheap as Minimum Spanning Trees.,1992,8,Algorithmica,3,db/journals/algorithmica/algorithmica8.html#LevcopoulosL92,https://doi.org/10.1007/BF01758846 +Christian Boulinier,Synchronous vs. Asynchronous Unison.,2008,51,Algorithmica,1,db/journals/algorithmica/algorithmica51.html#BoulinierPV08,https://doi.org/10.1007/s00453-007-9066-x +Marcus Brazil,Generalised k-Steiner Tree Problems in Normed Planes.,2015,71,Algorithmica,1,db/journals/algorithmica/algorithmica71.html#BrazilRST15,https://doi.org/10.1007/s00453-013-9780-5 +Adam L. Buchsbaum,Three-Dimensional Layers of Maxima.,2004,39,Algorithmica,4,db/journals/algorithmica/algorithmica39.html#BuchsbaumG04,https://doi.org/10.1007/s00453-004-1082-5 +Matthias Englert,Worst Case and Probabilistic Analysis of the 2-Opt Algorithm for the TSP.,2014,68,Algorithmica,1,db/journals/algorithmica/algorithmica68.html#EnglertRV14,https://doi.org/10.1007/s00453-013-9801-4 +Hélio B. Macêdo Filho,Efficient Algorithms for Clique-Colouring and Biclique-Colouring Unichord-Free Graphs.,2017,77,Algorithmica,3,db/journals/algorithmica/algorithmica77.html#FilhoMF17,https://doi.org/10.1007/s00453-015-0106-7 +Stephen Melczer,Asymptotic Lattice Path Enumeration Using Diagonals.,2016,75,Algorithmica,4,db/journals/algorithmica/algorithmica75.html#MelczerM16,https://doi.org/10.1007/s00453-015-0063-1 +Maxim A. Babenko,An Efficient Scaling Algorithm for the Minimum Weight Bibranching Problem.,2011,61,Algorithmica,4,db/journals/algorithmica/algorithmica61.html#Babenko11,https://doi.org/10.1007/s00453-009-9377-1 +Baruch Schieber,A Theory and Algorithms for Combinatorial Reoptimization.,2018,80,Algorithmica,2,db/journals/algorithmica/algorithmica80.html#SchieberSTT18,https://doi.org/10.1007/s00453-017-0274-8 +Flávio Keidi Miyazawa,An Algorithm for the Three-Dimensional Packing Problem with Asymptotic Performance Analysis.,1997,18,Algorithmica,1,db/journals/algorithmica/algorithmica18.html#MiyazawaW97,https://doi.org/10.1007/BF02523692 +Stavros D. Nikolopoulos,Algorithms for P4-Comparability Graph Recognition and Acyclic P4-Transitive Orientation.,2004,39,Algorithmica,2,db/journals/algorithmica/algorithmica39.html#NikolopoulosP04,https://doi.org/10.1007/s00453-003-1075-9 +Franco P. Preparata,Output-Sensitive Generation of the Perspective View of Isothetic Parallelepipeds.,1992,8,Algorithmica,4,db/journals/algorithmica/algorithmica8.html#PreparataVY92,https://doi.org/10.1007/BF01758847 +Abraham P. Punnen,TSP Heuristics: Domination Analysis and Complexity.,2003,35,Algorithmica,2,db/journals/algorithmica/algorithmica35.html#PunnenMK03,https://doi.org/10.1007/s00453-002-0986-1 +Tian-Ming Bu,On Robustness of Forward-looking in Sponsored Search Auction.,2010,58,Algorithmica,4,db/journals/algorithmica/algorithmica58.html#BuLQ10,https://doi.org/10.1007/s00453-009-9280-9 +Frank Neumann 0001,Runtime Analysis of a Simple Ant Colony Optimization Algorithm.,2009,54,Algorithmica,2,db/journals/algorithmica/algorithmica54.html#NeumannW09,https://doi.org/10.1007/s00453-007-9134-2 +Shaodi Gao,Two-Layer Channel Routing with Vertical Uni-Length Overlap.,1986,1,Algorithmica,2,db/journals/algorithmica/algorithmica1.html#GaoH86,https://doi.org/10.1007/BF01840444 +Martin Hoefer,Competitive Cost Sharing with Economies of Scale.,2011,60,Algorithmica,4,db/journals/algorithmica/algorithmica60.html#Hoefer11,https://doi.org/10.1007/s00453-009-9367-3 +Benjamin Doerr,In Memoriam: Ingo Wegener.,2010,58,Algorithmica,3,db/journals/algorithmica/algorithmica58.html#DoerrN10,https://doi.org/10.1007/s00453-009-9372-6 +Frank K. H. A. Dehne,Introduction to Special Issue.,2008,50,Algorithmica,2,db/journals/algorithmica/algorithmica50.html#DehneS08,https://doi.org/10.1007/s00453-007-9038-1 +George Karakostas,Stackelberg Strategies for Selfish Routing in General Multicommodity Networks.,2009,53,Algorithmica,1,db/journals/algorithmica/algorithmica53.html#KarakostasK09,https://doi.org/10.1007/s00453-007-9018-5 +Travis Gagie,Binary Jumbled Pattern Matching on Trees and Tree-Like Structures.,2015,73,Algorithmica,3,db/journals/algorithmica/algorithmica73.html#GagieHLW15,https://doi.org/10.1007/s00453-014-9957-6 +Ei Ando,An FPTAS for the Volume Computation of 0-1 Knapsack Polytopes Based on Approximate Convolution.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#AndoK16,https://doi.org/10.1007/s00453-015-0096-5 +Mark van Hoeij,Gradual Sub-lattice Reduction and a New Complexity for Factoring Polynomials.,2012,63,Algorithmica,3,db/journals/algorithmica/algorithmica63.html#HoeijN12,https://doi.org/10.1007/s00453-011-9500-y +Matthew Johnson 0002,Finding Shortest Paths Between Graph Colourings.,2016,75,Algorithmica,2,db/journals/algorithmica/algorithmica75.html#0001KKPP16,https://doi.org/10.1007/s00453-015-0009-7 +Matthew Andrews,Approximation Algorithms for Access Network Design.,2002,34,Algorithmica,2,db/journals/algorithmica/algorithmica34.html#AndrewsZ02,https://doi.org/10.1007/s00453-002-0968-3 +John L. Nazareth,The Implementation of Linear Programming Algorithms Bases on Homotopies.,1996,15,Algorithmica,4,db/journals/algorithmica/algorithmica15.html#Nazareth96,https://doi.org/10.1007/BF01961543 +Gregory Z. Gutin,Fixed-Parameter Complexity of Minimum Profile Problems.,2008,52,Algorithmica,2,db/journals/algorithmica/algorithmica52.html#GutinSY08,https://doi.org/10.1007/s00453-007-9144-0 +Carlos E. R. Alves,A Coarse-Grained Parallel Algorithm for the All-Substrings Longest Common Subsequence Problem.,2006,45,Algorithmica,3,db/journals/algorithmica/algorithmica45.html#AlvesCS06,https://doi.org/10.1007/s00453-006-1216-z +Kamal Al-Bawani,Comparison-Based Buffer Management in QoS Switches.,2018,80,Algorithmica,3,db/journals/algorithmica/algorithmica80.html#Al-BawaniEW18,https://doi.org/10.1007/s00453-017-0393-2 +Costas S. Iliopoulos,Covering a String.,1996,16,Algorithmica,3,db/journals/algorithmica/algorithmica16.html#IliopoulosMP96,https://doi.org/10.1007/BF01955677 +Majid Sarrafzadeh,Maximum k-Covering of Weighted Transitive Graphs with Applications.,1993,9,Algorithmica,1,db/journals/algorithmica/algorithmica9.html#SarrafzadehL93,https://doi.org/10.1007/BF01185340 +Carl Barton,Crochemore's Partitioning on Weighted Strings and Applications.,2018,80,Algorithmica,2,db/journals/algorithmica/algorithmica80.html#BartonP18,https://doi.org/10.1007/s00453-016-0266-0 +Vicky Choi,An Algorithmic Approach to the Identification of Rigid Domains in Proteins.,2007,48,Algorithmica,4,db/journals/algorithmica/algorithmica48.html#ChoiG07,https://doi.org/10.1007/s00453-007-0186-0 +Micah Adler,Time-Constrained Scheduling of Weighted Packets on Trees and Meshes.,2003,36,Algorithmica,2,db/journals/algorithmica/algorithmica36.html#AdlerKR03,https://doi.org/10.1007/s00453-002-1019-9 +Francis Avnaim,Evaluating Signs of Determinants Using Single-Precision Arithmetic.,1997,17,Algorithmica,2,db/journals/algorithmica/algorithmica17.html#AvnaimBDPY97,https://doi.org/10.1007/BF02522822 +Eli Fox-Epstein,Diffuse Reflection Radius in a Simple Polygon.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#Fox-EpsteinTW16,https://doi.org/10.1007/s00453-015-0031-9 +Karl Bringmann,Efficient Sampling Methods for Discrete Distributions.,2017,79,Algorithmica,2,db/journals/algorithmica/algorithmica79.html#BringmannP17,https://doi.org/10.1007/s00453-016-0205-0 +Dániel Marx,Parameterized Complexity and Local Search Approaches for the Stable Marriage Problem with Ties.,2010,58,Algorithmica,1,db/journals/algorithmica/algorithmica58.html#MarxS10,https://doi.org/10.1007/s00453-009-9326-z +Camil Demetrescu,Mantaining Dynamic Matrices for Fully Dynamic Transitive Closure.,2008,51,Algorithmica,4,db/journals/algorithmica/algorithmica51.html#DemetrescuI08,https://doi.org/10.1007/s00453-007-9051-4 +Radu Curticapean,A Quantization Framework for Smoothed Analysis of Euclidean Optimization Problems.,2015,73,Algorithmica,3,db/journals/algorithmica/algorithmica73.html#CurticapeanK15,https://doi.org/10.1007/s00453-015-0043-5 +Robert Sedgewick,Shortest Paths in Euclidean Graphs.,1986,1,Algorithmica,1,db/journals/algorithmica/algorithmica1.html#SedgewickV86,https://doi.org/10.1007/BF01840435 +Marthe Bonamy,Linear Kernels for Outbranching Problems in Sparse Digraphs.,2017,79,Algorithmica,1,db/journals/algorithmica/algorithmica79.html#BonamyKPS17,https://doi.org/10.1007/s00453-016-0244-6 +Constantinos Daskalakis,Learning Poisson Binomial Distributions.,2015,72,Algorithmica,1,db/journals/algorithmica/algorithmica72.html#DaskalakisDS15,https://doi.org/10.1007/s00453-015-9971-3 +Amitai Armon,Temporary Tasks Assignment Resolved.,2003,36,Algorithmica,3,db/journals/algorithmica/algorithmica36.html#ArmonAE03,https://doi.org/10.1007/s00453-003-1017-6 +Chunhong Chen,Budget Management with Applications.,2002,34,Algorithmica,3,db/journals/algorithmica/algorithmica34.html#ChenBSS02,https://doi.org/10.1007/s00453-002-0964-7 +Kamalika Chaudhuri,What Would Edmonds Do? Augmenting Paths and Witnesses for Degree-Bounded MSTs.,2009,55,Algorithmica,1,db/journals/algorithmica/algorithmica55.html#ChaudhuriRRT09,https://doi.org/10.1007/s00453-007-9115-5 +Noga Alon,Linear Time Algorithms for Finding a Dominating Set of Fixed Size in Degenerated Graphs.,2009,54,Algorithmica,4,db/journals/algorithmica/algorithmica54.html#AlonG09,https://doi.org/10.1007/s00453-008-9204-0 +Stefan Dobrev,Mobile Search for a Black Hole in an Anonymous Ring.,2007,48,Algorithmica,1,db/journals/algorithmica/algorithmica48.html#DobrevFPS07,https://doi.org/10.1007/s00453-006-1232-z +Anders Dessmark,Polynomial-Time Algorithms for the Ordered Maximum Agreement Subtree Problem.,2007,48,Algorithmica,3,db/journals/algorithmica/algorithmica48.html#DessmarkJLL07,https://doi.org/10.1007/s00453-007-0080-9 +Deeparnab Chakrabarty,Approximability of Capacitated Network Design.,2015,72,Algorithmica,2,db/journals/algorithmica/algorithmica72.html#ChakrabartyCKK15,https://doi.org/10.1007/s00453-013-9862-4 +Atsuki Nagao,A Moderately Exponential Time Algorithm for k-IBDD Satisfiability.,2018,80,Algorithmica,10,db/journals/algorithmica/algorithmica80.html#NagaoST18,https://doi.org/10.1007/s00453-017-0332-2 +Valerie King,Choosing a Random Peer in Chord.,2007,49,Algorithmica,2,db/journals/algorithmica/algorithmica49.html#KingLSY07,https://doi.org/10.1007/s00453-007-9029-2 +Viswanath Nagarajan,The Directed Orienteering Problem.,2011,60,Algorithmica,4,db/journals/algorithmica/algorithmica60.html#NagarajanR11,https://doi.org/10.1007/s00453-011-9509-2 +Krishnendu Chatterjee,Polynomial-Time Algorithms for Energy Games with Special Weight Structures.,2014,70,Algorithmica,3,db/journals/algorithmica/algorithmica70.html#ChatterjeeHKN14,https://doi.org/10.1007/s00453-013-9843-7 +Nikhil Bansal,Shape Rectangularization Problems in Intensity-Modulated Radiation Therapy.,2011,60,Algorithmica,2,db/journals/algorithmica/algorithmica60.html#BansalCCHLMSW11,https://doi.org/10.1007/s00453-009-9354-8 +Hans L. Bodlaender,Degree-Constrained Orientation of Maximum Satisfaction: Graph Classes and Parameterized Complexity.,2018,80,Algorithmica,7,db/journals/algorithmica/algorithmica80.html#BodlaenderOO18,https://doi.org/10.1007/s00453-017-0399-9 +Sanjiv Kapoor,An Algorithm for Enumerating All Spanning Trees of a Directed Graph.,2000,27,Algorithmica,2,db/journals/algorithmica/algorithmica27.html#KapoorR00,https://doi.org/10.1007/s004530010008 +Ho-Leung Chan,Compressed Indexes for Approximate String Matching.,2010,58,Algorithmica,2,db/journals/algorithmica/algorithmica58.html#ChanLSTW10,https://doi.org/10.1007/s00453-008-9263-2 +Vladlen Koltun,Matching Polyhedral Terrains Using Overlays of Envelopes.,2005,41,Algorithmica,3,db/journals/algorithmica/algorithmica41.html#KoltunW05,https://doi.org/10.1007/s00453-004-1107-0 +Hristo Djidjev,Improved Algorithms for Dynamic Shortest Paths.,2000,28,Algorithmica,4,db/journals/algorithmica/algorithmica28.html#DjidjevPZ00,https://doi.org/10.1007/s004530010043 +Nidhal Bouaynaya,Protein Communication System: Evolution and Genomic Structure.,2007,48,Algorithmica,4,db/journals/algorithmica/algorithmica48.html#BouaynayaS07,https://doi.org/10.1007/s00453-007-0180-6 +Zeev Nutov,Approximating Rooted Connectivity Augmentation Problems.,2006,44,Algorithmica,3,db/journals/algorithmica/algorithmica44.html#Nutov06,https://doi.org/10.1007/s00453-005-1150-5 +Marc J. van Kreveld,Approximate Unions of Lines and Minkowski Sums.,2006,45,Algorithmica,1,db/journals/algorithmica/algorithmica45.html#KreveldS06,https://doi.org/10.1007/s00453-005-1191-9 +Telikepalli Kavitha,New Approximation Algorithms for Minimum Cycle Bases of Graphs.,2011,59,Algorithmica,4,db/journals/algorithmica/algorithmica59.html#KavithaMM11,https://doi.org/10.1007/s00453-009-9313-4 +Henning Fernau,A Top-Down Approach to Search-Trees: Improved Algorithmics for 3-Hitting Set.,2010,57,Algorithmica,1,db/journals/algorithmica/algorithmica57.html#Fernau10,https://doi.org/10.1007/s00453-008-9199-6 +Adrian Bock,The School Bus Problem on Trees.,2013,67,Algorithmica,1,db/journals/algorithmica/algorithmica67.html#BockGKS13,https://doi.org/10.1007/s00453-012-9711-x +Hee-Kap Ahn,Casting with Skewed Ejection Direction.,2006,44,Algorithmica,4,db/journals/algorithmica/algorithmica44.html#AhnCC06,https://doi.org/10.1007/s00453-005-1179-5 +Hiroshi Imai,A Linear-Time Algorithm for Linear L_1 Approximation of Points.,1989,4,Algorithmica,1,db/journals/algorithmica/algorithmica4.html#ImaiKY89,https://doi.org/10.1007/BF01553880 +Guy Feigenblat,A Grouping Approach for Succinct Dynamic Dictionary Matching.,2017,77,Algorithmica,1,db/journals/algorithmica/algorithmica77.html#FeigenblatPS17,https://doi.org/10.1007/s00453-015-0056-0 +Stefano Leonardi,On-Line Resource Management with Application to Routing and Scheduling.,1999,24,Algorithmica,1,db/journals/algorithmica/algorithmica24.html#LeonardiM99,https://doi.org/10.1007/PL00009270 +Frank van den Eijkhof,Safe Reduction Rules for Weighted Treewidth.,2007,47,Algorithmica,2,db/journals/algorithmica/algorithmica47.html#EijkhofBK07,https://doi.org/10.1007/s00453-006-1226-x +Esther M. Arkin,The Freeze-Tag Problem: How to Wake Up a Swarm ofRobots.,2006,46,Algorithmica,2,db/journals/algorithmica/algorithmica46.html#ArkinBFMS06,https://doi.org/10.1007/s00453-006-1206-1 +François Le Gall,Quantum Algorithm for Triangle Finding in Sparse Graphs.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#GallN17,https://doi.org/10.1007/s00453-016-0267-z +Tim Nonner,Clique Clustering Yields a PTAS for Max-Coloring Interval Graphs.,2018,80,Algorithmica,10,db/journals/algorithmica/algorithmica80.html#Nonner18,https://doi.org/10.1007/s00453-017-0362-9 +Petra Berenbrink,On the Stability of Dynamic Diffusion Load Balancing.,2008,50,Algorithmica,3,db/journals/algorithmica/algorithmica50.html#BerenbrinkFM08,https://doi.org/10.1007/s00453-007-9081-y +Benjamin Doerr,Time Complexity Analysis of Evolutionary Algorithms on Random Satisfiable k-CNF Formulas.,2017,78,Algorithmica,2,db/journals/algorithmica/algorithmica78.html#DoerrNS17,https://doi.org/10.1007/s00453-016-0190-3 +Lasse Kliemann,The Price of Anarchy in Bilateral Network Formation in an Adversary Model.,2017,77,Algorithmica,3,db/journals/algorithmica/algorithmica77.html#Kliemann17,https://doi.org/10.1007/s00453-016-0120-4 +Krzysztof Diks,Optimal Adaptive Broadcasting with a Bounded Fraction of Faulty Nodes.,2000,28,Algorithmica,1,db/journals/algorithmica/algorithmica28.html#DiksP00,https://doi.org/10.1007/s004530010030 +Klaus Jansen,Guest Editors' Introduction.,2004,38,Algorithmica,3,db/journals/algorithmica/algorithmica38.html#JansenK03,https://doi.org/10.1007/s00453-003-1068-8 +Sanjeev Khanna,On Certificates and Lookahead in Dynamic Graph Problems.,1998,21,Algorithmica,4,db/journals/algorithmica/algorithmica21.html#KhannaMW98,https://doi.org/10.1007/PL00009220 +Pavol Duris,A Minimum-Area Circuit for l-Selection.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#DurisSTV87,https://doi.org/10.1007/BF01840362 +Esko Ukkonen,Approximate String Matching with Suffix Automata.,1993,10,Algorithmica,5,db/journals/algorithmica/algorithmica10.html#UkkonenW93,https://doi.org/10.1007/BF01769703 +Leizhen Cai,Isomorphic Tree Spanner Problems.,1995,14,Algorithmica,2,db/journals/algorithmica/algorithmica14.html#CaiC95,https://doi.org/10.1007/BF01293665 +Michael Dom,Error Compensation in Leaf Power Problems.,2006,44,Algorithmica,4,db/journals/algorithmica/algorithmica44.html#DomGHN06,https://doi.org/10.1007/s00453-005-1180-z +John Hershberger 0001,An Optimal Visibility Graph Algorithm for Triangulated Simple Polygons.,1989,4,Algorithmica,1,db/journals/algorithmica/algorithmica4.html#Hershberger89,https://doi.org/10.1007/BF01553883 +Rudolf Scheifele,Steiner Trees with Bounded RC-Delay.,2017,78,Algorithmica,1,db/journals/algorithmica/algorithmica78.html#Scheifele17,https://doi.org/10.1007/s00453-016-0149-4 +J. Ian Munro,Fast Stable In-Place Sorting with O (n) Data Moves.,1996,16,Algorithmica,2,db/journals/algorithmica/algorithmica16.html#MunroR96,https://doi.org/10.1007/BF01940644 +Michael T. Goodrich,Constructing the Voronoi Diagram of a Set of Line Segments in Parallel.,1993,9,Algorithmica,2,db/journals/algorithmica/algorithmica9.html#GoodrichOY93,https://doi.org/10.1007/BF01188708 +Jean Cardinal,Hitting All Maximal Independent Sets of a Bipartite Graph.,2015,72,Algorithmica,2,db/journals/algorithmica/algorithmica72.html#CardinalJ15,https://doi.org/10.1007/s00453-013-9847-3 +Frieda Granot,Using Quadratic Programming to Solve High Multiplicity Scheduling Problems on Parallel Machines.,1997,17,Algorithmica,2,db/journals/algorithmica/algorithmica17.html#GranotST97,https://doi.org/10.1007/BF02522821 +Cristina Bazgan,Structural and Algorithmic Properties of 2-Community Structures.,2018,80,Algorithmica,6,db/journals/algorithmica/algorithmica80.html#BazganCP18,https://doi.org/10.1007/s00453-017-0283-7 +Sándor P. Fekete,Facets for Art Gallery Problems.,2015,73,Algorithmica,2,db/journals/algorithmica/algorithmica73.html#FeketeFK015,https://doi.org/10.1007/s00453-014-9961-x +Tetsuo Asano,Editorial.,2009,54,Algorithmica,2,db/journals/algorithmica/algorithmica54.html#Asano09,https://doi.org/10.1007/s00453-007-9139-x +Xiaotie Deng,Competitive Implementation of Parallel Programs.,1999,23,Algorithmica,1,db/journals/algorithmica/algorithmica23.html#DengKM99,https://doi.org/10.1007/PL00009248 +Allan Borodin,(Incremental) Priority Algorithms.,2003,37,Algorithmica,4,db/journals/algorithmica/algorithmica37.html#BorodinNR03,https://doi.org/10.1007/s00453-003-1036-3 +Benny Chor,An Improved Parallel Algorithm for Integer GCD.,1990,5,Algorithmica,1,db/journals/algorithmica/algorithmica5.html#ChorG90,https://doi.org/10.1007/BF01840374 +Mike Paterson,Improved Sorting Networks with O(log N) Depth.,1990,5,Algorithmica,1,db/journals/algorithmica/algorithmica5.html#Paterson90,https://doi.org/10.1007/BF01840378 +Reza Dorrigiv,Parameterized Analysis of Paging and List Update Algorithms.,2015,71,Algorithmica,2,db/journals/algorithmica/algorithmica71.html#DorrigivEL15,https://doi.org/10.1007/s00453-013-9800-5 +Edith Cohen,Algorithms and Complexity Analysis for Some Flow Problems.,1994,11,Algorithmica,3,db/journals/algorithmica/algorithmica11.html#CohenM94,https://doi.org/10.1007/BF01240739 +Prosenjit Bose,Testing the Quality of Manufactured Disks and Balls.,2004,38,Algorithmica,1,db/journals/algorithmica/algorithmica38.html#BoseM03,https://doi.org/10.1007/s00453-003-1048-z +Christopher Auer,Outer 1-Planar Graphs.,2016,74,Algorithmica,4,db/journals/algorithmica/algorithmica74.html#AuerBBGHNR16,https://doi.org/10.1007/s00453-015-0002-1 +Jayaram Bhasker,A Linear Algorithm to Find a Rectangular Dual of a Planar Triangulated Graph.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#BhaskerS88,https://doi.org/10.1007/BF01762117 +Alois Panholzer,Average-Case Analysis of Priority Trees: A Structure for Priority Queue Administration.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#PanholzerP98,https://doi.org/10.1007/PL00009243 +Patricio V. Poblete,Analysis of an Adaptive Algorithm to Find the Two Nearest Neighbors.,2001,29,Algorithmica,1,db/journals/algorithmica/algorithmica29.html#Poblete01,https://doi.org/10.1007/BF02679620 +Torben Hagerup,Fast Integer Merging on the EREW PRAM.,1997,17,Algorithmica,1,db/journals/algorithmica/algorithmica17.html#HagerupK97,https://doi.org/10.1007/BF02523238 +Nikhil Bansal,Deterministic Discrepancy Minimization.,2013,67,Algorithmica,4,db/journals/algorithmica/algorithmica67.html#BansalS13,https://doi.org/10.1007/s00453-012-9728-1 +D. T. Lee,Complexity of Some Laction Problems.,1986,1,Algorithmica,2,db/journals/algorithmica/algorithmica1.html#LeeW86,https://doi.org/10.1007/BF01840442 +M. Ziaur Rahman,Integer Representation and Counting in the Bit Probe Model.,2010,56,Algorithmica,1,db/journals/algorithmica/algorithmica56.html#RahmanM10,https://doi.org/10.1007/s00453-008-9247-2 +Steven Skiena,Problems in Geometric Probing.,1989,4,Algorithmica,4,db/journals/algorithmica/algorithmica4.html#Skiena89,https://doi.org/10.1007/BF01553911 +Jianxin Wang,A Practical Exact Algorithm for the Individual Haplotyping Problem MEC/GI.,2010,56,Algorithmica,3,db/journals/algorithmica/algorithmica56.html#WangXC10,https://doi.org/10.1007/s00453-009-9288-1 +Hassan AbouEisha,Upper Domination: Towards a Dichotomy Through Boundary Properties.,2018,80,Algorithmica,10,db/journals/algorithmica/algorithmica80.html#AbouEishaHLMRZ18,https://doi.org/10.1007/s00453-017-0346-9 +Scot W. Hornick,On Problem Transformability in VLSI.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#HornickS87,https://doi.org/10.1007/BF01840352 +Alok Aggarwal,Geometric Applications of a Matrix-Searching Algorithm.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#AggarwalKMSW87,https://doi.org/10.1007/BF01840359 +Fatemeh Rajabi-Alni,An O(n2) Algorithm for the Limited-Capacity Many-to-Many Point Matching in One Dimension.,2016,76,Algorithmica,2,db/journals/algorithmica/algorithmica76.html#Rajabi-AlniB16,https://doi.org/10.1007/s00453-015-0044-4 +David Eppstein,From Discrepancy to Majority.,2018,80,Algorithmica,4,db/journals/algorithmica/algorithmica80.html#EppsteinH18,https://doi.org/10.1007/s00453-017-0303-7 +David Peleg,Relaxed Spanners for Directed Disk Graphs.,2013,65,Algorithmica,1,db/journals/algorithmica/algorithmica65.html#PelegR13,https://doi.org/10.1007/s00453-011-9580-8 +Annette Ebbers-Baumann,The Geometric Dilation of Finite Point Sets.,2006,44,Algorithmica,2,db/journals/algorithmica/algorithmica44.html#Ebbers-BaumannGK06,https://doi.org/10.1007/s00453-005-1203-9 +Steven Fortune,A Sweepline Algorithm for Voronoi Diagrams.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#Fortune87,https://doi.org/10.1007/BF01840357 +Gonzalo Navarro,New Techniques for Regular Expression Searching.,2005,41,Algorithmica,2,db/journals/algorithmica/algorithmica41.html#NavarroR04,https://doi.org/10.1007/s00453-004-1120-3 +Sergei Bespamyatnikh,On Constructing Minimum Spanning Trees in Rkl.,1997,18,Algorithmica,4,db/journals/algorithmica/algorithmica18.html#Bespamyatnikh97,https://doi.org/10.1007/PL00009170 +Jean Cardinal,Tight Results on Minimum Entropy Set Cover.,2008,51,Algorithmica,1,db/journals/algorithmica/algorithmica51.html#CardinalFJ08,https://doi.org/10.1007/s00453-007-9076-8 +Baruch Awerbuch,An Online Algorithm for the Dynamic Maximal Dense Tree Problem.,2002,32,Algorithmica,4,db/journals/algorithmica/algorithmica32.html#AwerbuchS02,https://doi.org/10.1007/s00453-001-0086-7 +Alexander E. Holroyd,Shorthand Universal Cycles for Permutations.,2012,64,Algorithmica,2,db/journals/algorithmica/algorithmica64.html#HolroydRW12,https://doi.org/10.1007/s00453-011-9544-z +Annamária Kovács,New Approximation Bounds for Lpt Scheduling.,2010,57,Algorithmica,2,db/journals/algorithmica/algorithmica57.html#Kovacs10,https://doi.org/10.1007/s00453-008-9224-9 +Michael Huber 0002,Efficient Two-Stage Group Testing Algorithms for Genetic Screening.,2013,67,Algorithmica,3,db/journals/algorithmica/algorithmica67.html#Huber13,https://doi.org/10.1007/s00453-013-9791-2 +Kuo-Hui Tsai,k Best Cuts for Circular-Arc Graphs.,1997,18,Algorithmica,2,db/journals/algorithmica/algorithmica18.html#TsaiL97,https://doi.org/10.1007/BF02526033 +Alberto L. Sangiovanni-Vincentelli,Editor's Foreword.,1991,6,Algorithmica,3,db/journals/algorithmica/algorithmica6.html#Sangiovanni-Vincentelli91,https://doi.org/10.1007/BF01759048 +Guy Even,Approximating Minimum Feedback Sets and Multicuts in Directed Graphs.,1998,20,Algorithmica,2,db/journals/algorithmica/algorithmica20.html#EvenNSS98,https://doi.org/10.1007/PL00009191 +Bram de Jager,VISOR: Vast Independence System Optimization Routine.,2001,30,Algorithmica,4,db/journals/algorithmica/algorithmica30.html#JagerB01,https://doi.org/10.1007/s00453-001-0030-x +Ghurumuruhan Ganesan,Stretch and Diameter in Random Geometric Graphs.,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#Ganesan18,https://doi.org/10.1007/s00453-016-0253-5 +Yasuaki Kobayashi,A Fast and Simple Subexponential Fixed Parameter Algorithm for One-Sided Crossing Minimization.,2015,72,Algorithmica,3,db/journals/algorithmica/algorithmica72.html#KobayashiT15,https://doi.org/10.1007/s00453-014-9872-x +Gopal Pandurangan,A Universal Online Caching Algorithm Based on Pattern Matching.,2010,57,Algorithmica,1,db/journals/algorithmica/algorithmica57.html#PanduranganS10,https://doi.org/10.1007/s00453-008-9196-9 +Xin He,Efficient Parallel and Sequential Algorithms for 4-Coloring Perfect Planar Graphs.,1990,5,Algorithmica,4,db/journals/algorithmica/algorithmica5.html#He90,https://doi.org/10.1007/BF01840403 +Anna R. Karlin,Dynamic TCP Acknowledgment and Other Stories about e/(e-1).,2003,36,Algorithmica,3,db/journals/algorithmica/algorithmica36.html#KarlinKR03, +Sumedh Tirodkar,On the Approximability of the Minimum Rainbow Subgraph Problem and Other Related Problems.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#TirodkarV17,https://doi.org/10.1007/s00453-017-0278-4 +Philip N. Klein,A Fully Dynamic Approximation Scheme for Shortest Paths in Planar Graphs.,1998,22,Algorithmica,3,db/journals/algorithmica/algorithmica22.html#KleinS98,https://doi.org/10.1007/PL00009223 +Amitai Armon,Multicriteria Global Minimum Cuts.,2006,46,Algorithmica,1,db/journals/algorithmica/algorithmica46.html#ArmonZ06,https://doi.org/10.1007/s00453-006-0068-x +Kazuhisa Makino,Max- and Min-Neighborhood Monopolies.,2002,34,Algorithmica,3,db/journals/algorithmica/algorithmica34.html#MakinoYK02,https://doi.org/10.1007/s00453-002-0963-8 +Morten Skaarup Jensen,Optimality in External Memory Hashing.,2008,52,Algorithmica,3,db/journals/algorithmica/algorithmica52.html#JensenP08,https://doi.org/10.1007/s00453-007-9155-x +Stephan Eidenbenz,Inapproximability Results for Guarding Polygons and Terrains.,2001,31,Algorithmica,1,db/journals/algorithmica/algorithmica31.html#EidenbenzSW01,https://doi.org/10.1007/s00453-001-0040-8 +Hans Rohnert,Moving a Disc Between Polygons.,1991,6,Algorithmica,2,db/journals/algorithmica/algorithmica6.html#Rohnert91,https://doi.org/10.1007/BF01759040 +Hans L. Bodlaender,Treewidth Lower Bounds with Brambles.,2008,51,Algorithmica,1,db/journals/algorithmica/algorithmica51.html#BodlaenderGK08,https://doi.org/10.1007/s00453-007-9056-z +Zhi-Zhong Chen,An Approximation Algorithm for the Minimum Co-Path Set Problem.,2011,60,Algorithmica,4,db/journals/algorithmica/algorithmica60.html#ChenLW11a,https://doi.org/10.1007/s00453-010-9389-x +Jianer Chen,Using Nondeterminism to Design Efficient Deterministic Algorithms.,2004,40,Algorithmica,2,db/journals/algorithmica/algorithmica40.html#ChenFJK04,https://doi.org/10.1007/s00453-004-1096-z +Rasmus Resen Amossen,Better Size Estimation for Sparse Matrix Products.,2014,69,Algorithmica,3,db/journals/algorithmica/algorithmica69.html#AmossenCP14,https://doi.org/10.1007/s00453-012-9692-9 +Sanjeev Mahajan,Solving Some Discrepancy Problems in NC.,2001,29,Algorithmica,3,db/journals/algorithmica/algorithmica29.html#MahajanRS01,https://doi.org/10.1007/s004530010046 +Amotz Bar-Noy,Scheduling Techniques for Media-on-Demand.,2008,52,Algorithmica,4,db/journals/algorithmica/algorithmica52.html#Bar-NoyLT08,https://doi.org/10.1007/s00453-007-9052-3 +Markus E. Nebel,Analysis of Pivot Sampling in Dual-Pivot Quicksort: A Holistic Analysis of Yaroslavskiy's Partitioning Scheme.,2016,75,Algorithmica,4,db/journals/algorithmica/algorithmica75.html#NebelWM16,https://doi.org/10.1007/s00453-015-0041-7 +Maxim Sviridenko,Best Possible Approximation Algorithm for MAX SAT with Cardinality Constraint.,2001,30,Algorithmica,3,db/journals/algorithmica/algorithmica30.html#Sviridenko01,https://doi.org/10.1007/s00453-001-0019-5 +Prosenjit Bose,Characterizing Proximity Trees.,1996,16,Algorithmica,1,db/journals/algorithmica/algorithmica16.html#BoseLL96,https://doi.org/10.1007/BF02086609 +Hans L. Bodlaender,Erratum to: Editorial.,2015,73,Algorithmica,4,db/journals/algorithmica/algorithmica73.html#BodlaenderHI15a,https://doi.org/10.1007/s00453-015-0091-x +Nicolas Bonichon,Convex Drawings of 3-Connected Plane Graphs.,2007,47,Algorithmica,4,db/journals/algorithmica/algorithmica47.html#BonichonFM07,https://doi.org/10.1007/s00453-006-0177-6 +Björn Brodén,Online and Offline Algorithms for the Time-Dependent TSP with Time Zones.,2004,39,Algorithmica,4,db/journals/algorithmica/algorithmica39.html#BrodenHN04,https://doi.org/10.1007/s00453-004-1088-z +Yossi Azar,Scheduling with Deadlines and Buffer Management with Processing Requirements.,2017,78,Algorithmica,4,db/journals/algorithmica/algorithmica78.html#AzarG17,https://doi.org/10.1007/s00453-016-0257-1 +Ernst W. Mayr,Optimal Tree Constraction and Term Matching on the Hypercube and Related Networks.,1997,18,Algorithmica,3,db/journals/algorithmica/algorithmica18.html#MayrW97,https://doi.org/10.1007/PL00009165 +Michael Paterakis,A Full Sensing Window Random-Access Algorithm for Messages with Strict Delay Constraints.,1989,4,Algorithmica,3,db/journals/algorithmica/algorithmica4.html#PaterakisGP89,https://doi.org/10.1007/BF01553894 +Spyros C. Kontogiannis,Well Supported Approximate Equilibria in Bimatrix Games.,2010,57,Algorithmica,4,db/journals/algorithmica/algorithmica57.html#KontogiannisS10,https://doi.org/10.1007/s00453-008-9227-6 +Johannes Fischer 0001,Lempel-Ziv Factorization Powered by Space Efficient Suffix Trees.,2018,80,Algorithmica,7,db/journals/algorithmica/algorithmica80.html#FischerIKS18,https://doi.org/10.1007/s00453-017-0333-1 +Andreas Emil Feldmann,An O(n4) Time Algorithm to Compute the Bisection Width of Solid Grid Graphs.,2015,71,Algorithmica,1,db/journals/algorithmica/algorithmica71.html#FeldmannW15,https://doi.org/10.1007/s00453-014-9928-y +Bundit Laekhanukit,An Improved Approximation Algorithm for the Minimum Cost Subset k-Connected Subgraph Problem.,2015,72,Algorithmica,3,db/journals/algorithmica/algorithmica72.html#Laekhanukit15,https://doi.org/10.1007/s00453-014-9869-5 +Diego Arroyuelo,Succinct Dynamic Cardinal Trees.,2016,74,Algorithmica,2,db/journals/algorithmica/algorithmica74.html#ArroyueloDS16,https://doi.org/10.1007/s00453-015-9969-x +Toshimasa Ishii,Augmenting Edge-Connectivity between Vertex Subsets.,2014,69,Algorithmica,1,db/journals/algorithmica/algorithmica69.html#IshiiM14,https://doi.org/10.1007/s00453-012-9724-5 +András Faragó,On the Fundamental Limits of Topology Control in Ad Hoc Networks.,2007,49,Algorithmica,4,db/journals/algorithmica/algorithmica49.html#Farago07,https://doi.org/10.1007/s00453-007-9078-6 +Pietro Simone Oliveto,How to Escape Local Optima in Black Box Optimisation: When Non-elitism Outperforms Elitism.,2018,80,Algorithmica,5,db/journals/algorithmica/algorithmica80.html#OlivetoPHST18,https://doi.org/10.1007/s00453-017-0369-2 +Leo van Iersel,Constructing the Simplest Possible Phylogenetic Network from Triplets.,2011,60,Algorithmica,2,db/journals/algorithmica/algorithmica60.html#IerselK11,https://doi.org/10.1007/s00453-009-9333-0 +Daniel J. Rosenkrantz,Efficient Construction of Minimum Makespan Schedules for Tasks with a Fixed Number of Distinct Execution Times.,2001,30,Algorithmica,1,db/journals/algorithmica/algorithmica30.html#RosenkrantzYR01,https://doi.org/10.1007/s004530010079 +Joan Boyar,Batch Coloring of Graphs.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#BoyarEFLL18,https://doi.org/10.1007/s00453-017-0386-1 +Benjamin A. Burton,Searching a Bitstream in Linear Time for the Longest Substring of Any Given Density.,2011,61,Algorithmica,3,db/journals/algorithmica/algorithmica61.html#Burton11,https://doi.org/10.1007/s00453-010-9424-y +Eric Ruppert,Finding the k Shortest Paths in Parallel.,2000,28,Algorithmica,2,db/journals/algorithmica/algorithmica28.html#Ruppert00,https://doi.org/10.1007/s004530010038 +Jochen Alber,Fixed Parameter Algorithms for DOMINATING SET and Related Problems on Planar Graphs.,2002,33,Algorithmica,4,db/journals/algorithmica/algorithmica33.html#AlberBFKN02,https://doi.org/10.1007/s00453-001-0116-5 +Michal Malafiejski,Sum Coloring of Bipartite Graphs with Bounded Degree.,2004,40,Algorithmica,4,db/journals/algorithmica/algorithmica40.html#MalafiejskiGJK04,https://doi.org/10.1007/s00453-004-1111-4 +Victor Y. Pan,Certification of Numerical Computation of the Sign of the Determinant of a Matrix.,2001,30,Algorithmica,4,db/journals/algorithmica/algorithmica30.html#PanY01,https://doi.org/10.1007/s00453-001-0032-8 +Matthew Andrews,New Algorithms for Disk Scheduling.,2002,32,Algorithmica,2,db/journals/algorithmica/algorithmica32.html#AndrewsBZ02,https://doi.org/10.1007/s00453-001-0071-1 +Sander P. A. Alewijnse,Computing the Greedy Spanner in Linear Space.,2015,73,Algorithmica,3,db/journals/algorithmica/algorithmica73.html#AlewijnseBBB15,https://doi.org/10.1007/s00453-015-0001-2 +Quentin F. Stout,Isotonic Regression via Partitioning.,2013,66,Algorithmica,1,db/journals/algorithmica/algorithmica66.html#Stout13,https://doi.org/10.1007/s00453-012-9628-4 +Ovidiu Daescu,New Results on Path Approximation.,2004,38,Algorithmica,1,db/journals/algorithmica/algorithmica38.html#Daescu03,https://doi.org/10.1007/s00453-003-1046-1 +Boris Aronov,Peeling Meshed Potatoes.,2011,60,Algorithmica,2,db/journals/algorithmica/algorithmica60.html#AronovKLS11,https://doi.org/10.1007/s00453-009-9346-8 +Daniel Panario,Exact Largest and Smallest Size of Components.,2001,31,Algorithmica,3,db/journals/algorithmica/algorithmica31.html#PanarioR01a,https://doi.org/10.1007/s00453-001-0047-1 +Weidong Li 0002,A Polynomial Time Approximation Scheme for the Closest Shared Center Problem.,2017,77,Algorithmica,1,db/journals/algorithmica/algorithmica77.html#LiWC17,https://doi.org/10.1007/s00453-015-0057-z +Nayantara Bhatnagar,Random Bichromatic Matchings.,2008,50,Algorithmica,4,db/journals/algorithmica/algorithmica50.html#BhatnagarRVV08,https://doi.org/10.1007/s00453-007-9096-4 +Marcel Wild,Counting or Producing All Fixed Cardinality Transversals.,2014,69,Algorithmica,1,db/journals/algorithmica/algorithmica69.html#Wild14,https://doi.org/10.1007/s00453-012-9716-5 +Alessio Orlandi,Space-Efficient Substring Occurrence Estimation.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#OrlandiV16,https://doi.org/10.1007/s00453-014-9936-y +Frédéric Magniez,Quantum Complexity of Testing Group Commutativity.,2007,48,Algorithmica,3,db/journals/algorithmica/algorithmica48.html#MagniezN07,https://doi.org/10.1007/s00453-007-0057-8 +Chee-Keng Yap,Preface Special Issue on Robotics.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#Yap87,https://doi.org/10.1007/BF01840367 +Holger Dell,AND-Compression of NP-Complete Problems: Streamlined Proof and Minor Observations.,2016,75,Algorithmica,2,db/journals/algorithmica/algorithmica75.html#Dell16,https://doi.org/10.1007/s00453-015-0110-y +Yachyang Sun,Floorplanning by Graph Dualization: L-shaped Modules.,1993,10,Algorithmica,6,db/journals/algorithmica/algorithmica10.html#SunS93,https://doi.org/10.1007/BF01891831 +Marcus Brazil,Canonical Forms and Algorithms for Steiner Trees in Uniform Orientation Metrics.,2006,44,Algorithmica,4,db/journals/algorithmica/algorithmica44.html#BrazilTWZ06,https://doi.org/10.1007/s00453-005-1178-6 +Karl Bringmann,Random Shortest Paths: Non-Euclidean Instances for Metric Optimization Problems.,2015,73,Algorithmica,1,db/journals/algorithmica/algorithmica73.html#BringmannEMR15,https://doi.org/10.1007/s00453-014-9901-9 +Susanne Albers,Exploring Unknown Environments with Obstacles.,2002,32,Algorithmica,1,db/journals/algorithmica/algorithmica32.html#AlbersKS02,https://doi.org/10.1007/s00453-001-0067-x +Emeric Gioan,Practical and Efficient Circle Graph Recognition.,2014,69,Algorithmica,4,db/journals/algorithmica/algorithmica69.html#GioanPTC14,https://doi.org/10.1007/s00453-013-9745-8 +Timo Kötzing,Concentration of First Hitting Times Under Additive Drift.,2016,75,Algorithmica,3,db/journals/algorithmica/algorithmica75.html#Kotzing16,https://doi.org/10.1007/s00453-015-0048-0 +Huaming Zhang,Planar Polyline Drawings via Graph Transformations.,2010,57,Algorithmica,2,db/journals/algorithmica/algorithmica57.html#Zhang10,https://doi.org/10.1007/s00453-008-9215-x +Chandrajit L. Bajaj,Parameterization in Finite Precision.,2000,27,Algorithmica,1,db/journals/algorithmica/algorithmica27.html#BajajR00,https://doi.org/10.1007/s004530010006 +Yong Zhang 0001,A 1-Local Asymptotic 13/9-Competitive Algorithm for Multicoloring Hexagonal Graphs.,2009,54,Algorithmica,4,db/journals/algorithmica/algorithmica54.html#ZhangCZ09,https://doi.org/10.1007/s00453-008-9203-1 +Zhi-Zhong Chen,The Parameterized Complexity of the Shared Center Problem.,2014,69,Algorithmica,2,db/journals/algorithmica/algorithmica69.html#ChenMW14,https://doi.org/10.1007/s00453-012-9730-7 +Lars Arge,Optimal External Memory Planar Point Enclosure.,2009,54,Algorithmica,3,db/journals/algorithmica/algorithmica54.html#ArgeSY09,https://doi.org/10.1007/s00453-007-9126-2 +Danny Z. Chen,A New Algorithm for a Field Splitting Problem in Intensity-Modulated Radiation Therapy.,2011,61,Algorithmica,3,db/journals/algorithmica/algorithmica61.html#ChenEW11,https://doi.org/10.1007/s00453-010-9429-6 +Valerie King,A Simpler Minimum Spanning Tree Verification Algorithm.,1997,18,Algorithmica,2,db/journals/algorithmica/algorithmica18.html#King97,https://doi.org/10.1007/BF02526037 +Evanthia Papadopoulou,The Hausdorff Voronoi Diagram of Point Clusters in the Plane.,2004,40,Algorithmica,2,db/journals/algorithmica/algorithmica40.html#Papadopoulou04,https://doi.org/10.1007/s00453-004-1095-0 +Jeffrey D. Ullman,Parallel Complexity of Logical Query Programs.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#UllmanG88,https://doi.org/10.1007/BF01762108 +Joseph Cheriyan,Approximating Minimum-Cost Connected T-Joins.,2015,72,Algorithmica,1,db/journals/algorithmica/algorithmica72.html#CheriyanFG15,https://doi.org/10.1007/s00453-013-9850-8 +Josep Díaz,Approximating Fixation Probabilities in the Generalized Moran Process.,2014,69,Algorithmica,1,db/journals/algorithmica/algorithmica69.html#DiazGMRSS14,https://doi.org/10.1007/s00453-012-9722-7 +Sergio Cabello,Algorithmic Aspects of Proportional Symbol Maps.,2010,58,Algorithmica,3,db/journals/algorithmica/algorithmica58.html#CabelloHKS10,https://doi.org/10.1007/s00453-009-9281-8 +Seok-Hee Hong,Extending Steinitz's Theorem to Upward Star-Shaped Polyhedra and Spherical Polyhedra.,2011,61,Algorithmica,4,db/journals/algorithmica/algorithmica61.html#HongN11a,https://doi.org/10.1007/s00453-011-9570-x +Marcin Mucha,Maximum Matchings in Planar Graphs via Gaussian Elimination.,2006,45,Algorithmica,1,db/journals/algorithmica/algorithmica45.html#MuchaS06,https://doi.org/10.1007/s00453-005-1187-5 +J. Friedman,Computing Betti Numbers via Combinatiorial Laplacians.,1998,21,Algorithmica,4,db/journals/algorithmica/algorithmica21.html#Friedman98,https://doi.org/10.1007/PL00009218 +Ittai Abraham,Local Embeddings of Metric Spaces.,2015,72,Algorithmica,2,db/journals/algorithmica/algorithmica72.html#AbrahamBN15,https://doi.org/10.1007/s00453-013-9864-2 +Lenwood S. Heath,Sorting by Short Block-Moves.,2000,28,Algorithmica,3,db/journals/algorithmica/algorithmica28.html#HeathV00,https://doi.org/10.1007/s004530010041 +Sandeep N. Bhatt,Partitioning Circuits for Improved Testability.,1991,6,Algorithmica,1,db/journals/algorithmica/algorithmica6.html#BhattCR91,https://doi.org/10.1007/BF01759033 +Ashley Montanaro,Quantum Pattern Matching Fast on Average.,2017,77,Algorithmica,1,db/journals/algorithmica/algorithmica77.html#Montanaro17,https://doi.org/10.1007/s00453-015-0060-4 +Shai Ben-David,A New Measure for the Study of On-Line Algorithms.,1994,11,Algorithmica,1,db/journals/algorithmica/algorithmica11.html#Ben-DavidB94,https://doi.org/10.1007/BF01294264 +Leah Epstein,Approximation Schemes for Scheduling on Uniformly Related and Identical Parallel Machines.,2004,39,Algorithmica,1,db/journals/algorithmica/algorithmica39.html#EpsteinS04,https://doi.org/10.1007/s00453-003-1077-7 +Osamu Watanabe 0001,Message Passing Algorithms for MLS-3LIN Problem.,2013,66,Algorithmica,4,db/journals/algorithmica/algorithmica66.html#Watanabe13,https://doi.org/10.1007/s00453-013-9762-7 +Evangelos Bampas,Robustness of the Rotor-Router Mechanism.,2017,78,Algorithmica,3,db/journals/algorithmica/algorithmica78.html#BampasGHIKKR17,https://doi.org/10.1007/s00453-016-0179-y +Ilya Baran,Subquadratic Algorithms for 3SUM.,2008,50,Algorithmica,4,db/journals/algorithmica/algorithmica50.html#BaranDP08,https://doi.org/10.1007/s00453-007-9036-3 +Vladimir Grebinski,Optimal Reconstruction of Graphs under the Additive Model.,2000,28,Algorithmica,1,db/journals/algorithmica/algorithmica28.html#GrebinskiK00,https://doi.org/10.1007/s004530010033 +Madhukar R. Korupolu,Quasi-Fully Dynamic Algorithms for Two-Connectivity and Cycle Equivalence.,2002,33,Algorithmica,2,db/journals/algorithmica/algorithmica33.html#KorupoluR02,https://doi.org/10.1007/s00453-001-0108-5 +Uriel Feige,The Ordered Covering Problem.,2018,80,Algorithmica,10,db/journals/algorithmica/algorithmica80.html#FeigeH18,https://doi.org/10.1007/s00453-017-0357-6 +Edward G. Coffman Jr.,Packings in Two Dimensions: Asymptotic Average-Case Analysis of Algorithms.,1993,9,Algorithmica,3,db/journals/algorithmica/algorithmica9.html#CoffmanS93,https://doi.org/10.1007/BF01190899 +Timo Kötzing,Preface to the Special Issue on Theory of Genetic and Evolutionary Computation.,2018,80,Algorithmica,5,db/journals/algorithmica/algorithmica80.html#KotzingS18,https://doi.org/10.1007/s00453-017-0379-0 +Anil Maheshwari,I/O-Efficient Algorithms for Graphs of Bounded Treewidth.,2009,54,Algorithmica,3,db/journals/algorithmica/algorithmica54.html#MaheshwariZ09,https://doi.org/10.1007/s00453-007-9131-5 +Leonidas J. Guibas,Toward Unsupervised Segmentation of Semi-Rigid Low-Resolution Molecular Surfaces.,2007,48,Algorithmica,4,db/journals/algorithmica/algorithmica48.html#GuibasW07,https://doi.org/10.1007/s00453-007-0151-y +Adrian Dumitrescu,Sweeping Points.,2011,60,Algorithmica,3,db/journals/algorithmica/algorithmica60.html#DumitrescuJ11,https://doi.org/10.1007/s00453-009-9364-6 +Ami Litman,On Centralized Smooth Scheduling.,2011,60,Algorithmica,2,db/journals/algorithmica/algorithmica60.html#LitmanM11,https://doi.org/10.1007/s00453-009-9360-x +Abbas Mehrabian,It's a Small World for Random Surfers.,2016,76,Algorithmica,2,db/journals/algorithmica/algorithmica76.html#MehrabianW16,https://doi.org/10.1007/s00453-015-0034-6 +Peichen Pan,Area Minimization for Hierarchical Floorplans.,1996,15,Algorithmica,6,db/journals/algorithmica/algorithmica15.html#PanSL96,https://doi.org/10.1007/BF01940881 +Wing-Kai Hon,Compressing Dictionary Matching Index via Sparsification Technique.,2015,72,Algorithmica,2,db/journals/algorithmica/algorithmica72.html#HonKLSTTV15,https://doi.org/10.1007/s00453-013-9863-3 +John Langford 0001,Maintaining Equilibria During Exploration in Sponsored Search Auctions.,2010,58,Algorithmica,4,db/journals/algorithmica/algorithmica58.html#LangfordLVW10,https://doi.org/10.1007/s00453-009-9318-z +Ivan D. Baev,An Experimental Study of Algorithms for Weighted Completion Time Scheduling.,2002,33,Algorithmica,1,db/journals/algorithmica/algorithmica33.html#BaevME02,https://doi.org/10.1007/s00453-001-0103-x +Juraj Hromkovic,Optimal Algorithms for Dissemination of Information in Some Interconnection Networks.,1993,10,Algorithmica,1,db/journals/algorithmica/algorithmica10.html#HromkovicJM93,https://doi.org/10.1007/BF01908630 +Rida A. Bazzi,The Complexity of Almost-Optimal Simultaneous Coordination.,1997,17,Algorithmica,3,db/journals/algorithmica/algorithmica17.html#BazziN97,https://doi.org/10.1007/BF02523194 +Uriel Feige,Optimization with Uniform Size Queries.,2017,78,Algorithmica,1,db/journals/algorithmica/algorithmica78.html#FeigeT17,https://doi.org/10.1007/s00453-016-0162-7 +Reuven Bar-Yehuda,Variations on Ray Shooting.,1994,11,Algorithmica,2,db/journals/algorithmica/algorithmica11.html#Bar-YehudaF94,https://doi.org/10.1007/BF01182772 +Anna Großwendt,Improved Analysis of Complete-Linkage Clustering.,2017,78,Algorithmica,4,db/journals/algorithmica/algorithmica78.html#GrosswendtR17,https://doi.org/10.1007/s00453-017-0284-6 +Mark Allen Weiss,Shellsort with a Constant Number of Increments.,1996,16,Algorithmica,6,db/journals/algorithmica/algorithmica16.html#Weiss96,https://doi.org/10.1007/BF01944355 +Matthew Andrews,Improved Bounds for On-Line Load Balancing.,1999,23,Algorithmica,4,db/journals/algorithmica/algorithmica23.html#AndrewsGZ99,https://doi.org/10.1007/PL00009263 +Nan Liu,A 1.5-Approximation Algorithm for Two-Sided Scaffold Filling.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#LiuZJZ16,https://doi.org/10.1007/s00453-014-9938-9 +Tobias Harks,Resource Buying Games.,2014,70,Algorithmica,3,db/journals/algorithmica/algorithmica70.html#HarksP14,https://doi.org/10.1007/s00453-014-9876-6 +Mashhood Ishaque,Relative Convex Hulls in Semi-Dynamic Arrangements.,2014,68,Algorithmica,2,db/journals/algorithmica/algorithmica68.html#IshaqueT14,https://doi.org/10.1007/s00453-012-9679-6 +Petr A. Golovach,Modifying a Graph Using Vertex Elimination.,2015,72,Algorithmica,1,db/journals/algorithmica/algorithmica72.html#GolovachHHMPP15,https://doi.org/10.1007/s00453-013-9848-2 +Sam Greenberg,Slow Mixing of Markov Chains Using Fault Lines and Fat Contours.,2010,58,Algorithmica,4,db/journals/algorithmica/algorithmica58.html#GreenbergR10,https://doi.org/10.1007/s00453-008-9246-3 +Alexander Hall,An FPTAS for Quickest Multicommodity Flows with Inflow-Dependent Transit Times.,2007,47,Algorithmica,3,db/journals/algorithmica/algorithmica47.html#HallLS07,https://doi.org/10.1007/s00453-006-0196-3 +Yuren Zhou,Performance Analysis of the (1+1) Evolutionary Algorithm for the Multiprocessor Scheduling Problem.,2015,73,Algorithmica,1,db/journals/algorithmica/algorithmica73.html#ZhouZW15,https://doi.org/10.1007/s00453-014-9898-0 +Liang-Fang Chao,Finding All Minimal Shapes in a Routing Channel.,1998,21,Algorithmica,2,db/journals/algorithmica/algorithmica21.html#ChaoL98,https://doi.org/10.1007/PL00009213 +Hristo Djidjev,Partitioning Planar Graphs with Vertex Costs: Algorithms and Applications.,2000,28,Algorithmica,1,db/journals/algorithmica/algorithmica28.html#Djidjev00,https://doi.org/10.1007/s004530010031 +Michael A. Bekos,The Book Thickness of 1-Planar Graphs is Constant.,2017,79,Algorithmica,2,db/journals/algorithmica/algorithmica79.html#BekosBKR17,https://doi.org/10.1007/s00453-016-0203-2 +Kenta Kitsunai,Computing Directed Pathwidth in O(1.89n) Time.,2016,75,Algorithmica,1,db/journals/algorithmica/algorithmica75.html#KitsunaiKKTT16,https://doi.org/10.1007/s00453-015-0015-9 +Mehul Bhatt,MOVE: A Distributed Framework for Materialized Ontology View Extraction.,2006,45,Algorithmica,3,db/journals/algorithmica/algorithmica45.html#BhattFWRT06,https://doi.org/10.1007/s00453-006-1221-2 +Eun Jung Kim 0002,A Polynomial Kernel for Block Graph Deletion.,2017,79,Algorithmica,1,db/journals/algorithmica/algorithmica79.html#KimK17,https://doi.org/10.1007/s00453-017-0316-2 +Vladimir J. Lumelsky,Path-Planning Strategies for a Point Mobile Automaton Moving Amidst Unknown Obstacles of Arbitrary Shape.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#LumelskyS87,https://doi.org/10.1007/BF01840369 +Shiri Chechik,Secluded Connectivity Problems.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#ChechikJPP17,https://doi.org/10.1007/s00453-016-0222-z +Christopher S. Martin,Minimizing Latency of Capacitated k-Tours.,2018,80,Algorithmica,8,db/journals/algorithmica/algorithmica80.html#MartinS18,https://doi.org/10.1007/s00453-017-0337-x +Oswin Aichholzer,Geodesic Order Types.,2014,70,Algorithmica,1,db/journals/algorithmica/algorithmica70.html#AichholzerKPV14,https://doi.org/10.1007/s00453-013-9818-8 +Jianer Chen,Approximating Maximum Agreement Forest on Multiple Binary Trees.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#ChenSW16,https://doi.org/10.1007/s00453-015-0087-6 +Hans Kellerer,Fully Polynomial Approximation Schemes for a Symmetric Quadratic Knapsack Problem and its Scheduling Applications.,2010,57,Algorithmica,4,db/journals/algorithmica/algorithmica57.html#KellererS10,https://doi.org/10.1007/s00453-008-9248-1 +Marek Cygan,Solving the 2-Disjoint Connected Subgraphs Problem Faster than 2 n.,2014,70,Algorithmica,2,db/journals/algorithmica/algorithmica70.html#CyganPPW14a,https://doi.org/10.1007/s00453-013-9796-x +Andreas Crauser,A Theoretical and Experimental Study on the Construction of Suffix Arrays in External Memory.,2002,32,Algorithmica,1,db/journals/algorithmica/algorithmica32.html#CrauserF02,https://doi.org/10.1007/s00453-001-0051-5 +Andrew M. Liao,Three Priority Queue Applications Revisited.,1992,7,Algorithmica,4,db/journals/algorithmica/algorithmica7.html#Liao92,https://doi.org/10.1007/BF01758771 +Fedor V. Fomin,Branch and Recharge: Exact Algorithms for Generalized Domination.,2011,61,Algorithmica,2,db/journals/algorithmica/algorithmica61.html#FominGKKL11,https://doi.org/10.1007/s00453-010-9418-9 +Alok Aggarwal,Parallel Searching in Generalized Monge Arrays.,1997,19,Algorithmica,3,db/journals/algorithmica/algorithmica19.html#AggarwalKPS97,https://doi.org/10.1007/PL00009175 +Tomasz Kociumaka,Fast Algorithm for Partial Covers in Words.,2015,73,Algorithmica,1,db/journals/algorithmica/algorithmica73.html#KociumakaPRRW15,https://doi.org/10.1007/s00453-014-9915-3 +James Chilson,Parallel Computation of High-Dimensional Robust Correlation and Covariance Matrices.,2006,45,Algorithmica,3,db/journals/algorithmica/algorithmica45.html#ChilsonNWZ06,https://doi.org/10.1007/s00453-006-1219-9 +Abram Magner,Profiles of PATRICIA Tries.,2018,80,Algorithmica,1,db/journals/algorithmica/algorithmica80.html#MagnerS18,https://doi.org/10.1007/s00453-016-0261-5 +C. G. Lambert,Efficient On-Line Nonparametric Kernel Density Estimation.,1999,25,Algorithmica,1,db/journals/algorithmica/algorithmica25.html#LambertHHG99,https://doi.org/10.1007/PL00009282 +Samir Khuller,Balancing Minimum Spanning Trees and Shortest-Path Trees.,1995,14,Algorithmica,4,db/journals/algorithmica/algorithmica14.html#KhullerRY95,https://doi.org/10.1007/BF01294129 +John L. Nazareth,Homotopy Techniques in Linear Programming.,1986,1,Algorithmica,4,db/journals/algorithmica/algorithmica1.html#Nazareth86,https://doi.org/10.1007/BF01840461 +David P. Dobkin,Primitives for the Manipulation of Three-Dimensional Subdivisions.,1989,4,Algorithmica,1,db/journals/algorithmica/algorithmica4.html#DobkinL89,https://doi.org/10.1007/BF01553877 +Stacey Jeffery,Improving Quantum Query Complexity of Boolean Matrix Multiplication Using Graph Collision.,2016,76,Algorithmica,1,db/journals/algorithmica/algorithmica76.html#JefferyKGM16,https://doi.org/10.1007/s00453-015-9985-x +Panagiotis Alevizos,An Optimal Algorithm for the Boundary of a Cell in a Union of Rays-Corrigendum.,1991,6,Algorithmica,2,db/journals/algorithmica/algorithmica6.html#AlevizosBP91,https://doi.org/10.1007/BF01759047 +Dipen Moitra,Finding a Minimal Cover for Binary Images: An Optimal Parallel Algorithm.,1991,6,Algorithmica,5,db/journals/algorithmica/algorithmica6.html#Moitra91,https://doi.org/10.1007/BF01759065 +Michael Jünger,Practical Performance of Efficient Minimum Cut Algorithms.,2000,26,Algorithmica,1,db/journals/algorithmica/algorithmica26.html#JungerR00,https://doi.org/10.1007/s004539910009 +Gregory B. Sorkin,Efficient Simulated Annealing on Fractal Energy Landscapes.,1991,6,Algorithmica,3,db/journals/algorithmica/algorithmica6.html#Sorkin91,https://doi.org/10.1007/BF01759051 +Prosenjit Bose,Improved Spanning Ratio for Low Degree Plane Spanners.,2018,80,Algorithmica,3,db/journals/algorithmica/algorithmica80.html#BoseHS18,https://doi.org/10.1007/s00453-017-0305-5 +Peter A. Beling,Exact Algorithms for Linear Programming over Algebraic Extensions.,2001,31,Algorithmica,4,db/journals/algorithmica/algorithmica31.html#Beling01,https://doi.org/10.1007/s00453-001-0049-z +Philip N. Strenski,Analysis of Finite Length Annealing Schedules.,1991,6,Algorithmica,3,db/journals/algorithmica/algorithmica6.html#StrenskiK91,https://doi.org/10.1007/BF01759050 +David P. Dobkin,Computing the Intersection-Depth of Polyhedra.,1993,9,Algorithmica,6,db/journals/algorithmica/algorithmica9.html#DobkinHKS93,https://doi.org/10.1007/BF01190153 +Narayan Vikas,Algorithms for Partition of Some Class of Graphs under Compaction and Vertex-Compaction.,2013,67,Algorithmica,2,db/journals/algorithmica/algorithmica67.html#Vikas13,https://doi.org/10.1007/s00453-012-9720-9 +Hee-Kap Ahn,Casting an Object with a Core.,2009,54,Algorithmica,1,db/journals/algorithmica/algorithmica54.html#AhnBCC09,https://doi.org/10.1007/s00453-007-9120-8 +Athanassios Koutsonas,Planar Feedback Vertex Set and Face Cover: Combinatorial Bounds and Subexponential Algorithms.,2011,60,Algorithmica,4,db/journals/algorithmica/algorithmica60.html#KoutsonasT11,https://doi.org/10.1007/s00453-010-9390-4 +Erik D. Demaine,Confluently Persistent Tries for Efficient Version Control.,2010,57,Algorithmica,3,db/journals/algorithmica/algorithmica57.html#DemaineLP10,https://doi.org/10.1007/s00453-008-9274-z +Prasad Tetali,Random Sampling of Euler Tours.,2001,30,Algorithmica,3,db/journals/algorithmica/algorithmica30.html#TetaliV01,https://doi.org/10.1007/s00453-001-0018-6 +Peter Eades,Edge Crossings in Drawings of Bipartite Graphs.,1994,11,Algorithmica,4,db/journals/algorithmica/algorithmica11.html#EadesW94,https://doi.org/10.1007/BF01187020 +Frank K. H. A. Dehne,Efficient Parallel Graph Algorithms for Coarse-Grained Multicomputers and BSP.,2002,33,Algorithmica,2,db/journals/algorithmica/algorithmica33.html#DehneFCSR02,https://doi.org/10.1007/s00453-001-0109-4 +Juha Kärkkäinen,Lempel-Ziv Index for q-Grams.,1998,21,Algorithmica,1,db/journals/algorithmica/algorithmica21.html#KarkkainenS98,https://doi.org/10.1007/PL00009205 +Antonio Fernández 0001,A Timing Assumption and Two t-Resilient Protocols for Implementing an Eventual Leader Service in Asynchronous Shared Memory Systems.,2010,56,Algorithmica,4,db/journals/algorithmica/algorithmica56.html#FernandezJRT10,https://doi.org/10.1007/s00453-008-9190-2 +Vladimir Estivill-Castro,Robust Distance-Based Clustering with Applications to Spatial Data Mining.,2001,30,Algorithmica,2,db/journals/algorithmica/algorithmica30.html#Estivill-CastroH01,https://doi.org/10.1007/s00453-001-0010-1 +Franziska Berger,Minimum Cycle Bases for Network Graphs.,2004,40,Algorithmica,1,db/journals/algorithmica/algorithmica40.html#BergerGV04,https://doi.org/10.1007/s00453-004-1098-x +Hans L. Bodlaender,Computing the Treewidth and the Minimum Fill-In with the Modular Decomposition.,2003,36,Algorithmica,4,db/journals/algorithmica/algorithmica36.html#BodlaenderR03,https://doi.org/10.1007/s00453-003-1026-5 +Ferdinando Cicalese,Decision Trees for Function Evaluation: Simultaneous Optimization of Worst and Expected Cost.,2017,79,Algorithmica,3,db/journals/algorithmica/algorithmica79.html#CicaleseLS17,https://doi.org/10.1007/s00453-016-0225-9 +Hiroshi Nagamochi,A Simplified õ(nm) Time Edge-Splitting Algorithm in Undirected Graphs.,2000,26,Algorithmica,1,db/journals/algorithmica/algorithmica26.html#NagamochiNI00,https://doi.org/10.1007/s004539910004 +Guy de Ghellinck,A Polynomial Newton Method for Linear Programming.,1986,1,Algorithmica,4,db/journals/algorithmica/algorithmica1.html#GhellinckV86,https://doi.org/10.1007/BF01840456 +Bernard Chazelle,Computing on a Free Tree via Complexity-Preserving Mappings.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#Chazelle87a,https://doi.org/10.1007/BF01840366 +Pankaj K. Agarwal,Connected Component and Simple Polygon Intersection Searching.,1996,15,Algorithmica,6,db/journals/algorithmica/algorithmica15.html#AgarwalK96,https://doi.org/10.1007/BF01940884 +Sang Ho Lee,Some Chain Visibility Problems in a Simple Polygon.,1990,5,Algorithmica,4,db/journals/algorithmica/algorithmica5.html#LeeC90,https://doi.org/10.1007/BF01840400 +Jørgen Bang-Jensen,Parameterized Algorithms for Non-separating Trees and Branchings in Digraphs.,2016,76,Algorithmica,1,db/journals/algorithmica/algorithmica76.html#Bang-JensenSS16,https://doi.org/10.1007/s00453-015-0037-3 +Carla D. Savage,Solving Some Combinatorial Problems on Arrays with One-Way Dataflow.,1990,5,Algorithmica,2,db/journals/algorithmica/algorithmica5.html#SavageSP90,https://doi.org/10.1007/BF01840384 +Michael Drmota,An Analytic Approach to the Height of Binary Search Trees.,2001,29,Algorithmica,1,db/journals/algorithmica/algorithmica29.html#Drmota01,https://doi.org/10.1007/BF02679615 +David Manlove,Guest Editorial: Special Issue on Matching Under Preferences.,2010,58,Algorithmica,1,db/journals/algorithmica/algorithmica58.html#ManloveII10,https://doi.org/10.1007/s00453-010-9415-z +Stefano Leonardi,Preface.,2004,40,Algorithmica,4,db/journals/algorithmica/algorithmica40.html#Leonardi04,https://doi.org/10.1007/s00453-004-1109-y +Jannis Bulian,Fixed-Parameter Tractable Distances to Sparse Graph Classes.,2017,79,Algorithmica,1,db/journals/algorithmica/algorithmica79.html#BulianD17,https://doi.org/10.1007/s00453-016-0235-7 +Jianer Chen,Labeled Search Trees and Amortized Analysis: Improved Upper Bounds for NP-Hard Problems.,2005,43,Algorithmica,4,db/journals/algorithmica/algorithmica43.html#ChenKX05,https://doi.org/10.1007/s00453-004-1145-7 +Natalia V. Shakhlevich,Preemptive Scheduling on Uniform Parallel Machines with Controllable Job Processing Times.,2008,51,Algorithmica,4,db/journals/algorithmica/algorithmica51.html#ShakhlevichS08,https://doi.org/10.1007/s00453-007-9091-9 +Shun-Shii Lin,A Pinwheel Scheduler for Three Distinct Numbers with a Tight Schedulability Bound.,1997,19,Algorithmica,4,db/journals/algorithmica/algorithmica19.html#LinL97,https://doi.org/10.1007/PL00009181 +Friedrich Eisenbrand,Multiline Addressing by Network Flow.,2009,53,Algorithmica,4,db/journals/algorithmica/algorithmica53.html#EisenbrandKSX09,https://doi.org/10.1007/s00453-008-9252-5 +Sumanta Guha,Reconstructing Curves without Delaunay Computation.,2005,42,Algorithmica,1,db/journals/algorithmica/algorithmica42.html#GuhaT05,https://doi.org/10.1007/s00453-004-1141-y +Boaz Farbstein,Discounted Reward TSP.,2018,80,Algorithmica,2,db/journals/algorithmica/algorithmica80.html#FarbsteinL18,https://doi.org/10.1007/s00453-016-0264-2 +Takehiro Ito,Route-Enabling Graph Orientation Problems.,2013,65,Algorithmica,2,db/journals/algorithmica/algorithmica65.html#ItoMOTU13,https://doi.org/10.1007/s00453-011-9589-z +V. Kumar,An Approximation Algorithm for Circular Arc Colouring.,2001,30,Algorithmica,3,db/journals/algorithmica/algorithmica30.html#Kumar01,https://doi.org/10.1007/s00453-001-0023-9 +Shirley Halevy,Distribution-Free Connectivity Testing for Sparse Graphs.,2008,51,Algorithmica,1,db/journals/algorithmica/algorithmica51.html#HalevyK08,https://doi.org/10.1007/s00453-007-9054-1 +Yaron I. Gold,A Correction Algorithm for Token-Passing Sequences in Mobile Communication Networks.,1989,4,Algorithmica,3,db/journals/algorithmica/algorithmica4.html#GoldM89,https://doi.org/10.1007/BF01553895 +Yoshiharu Kohayakawa,Multidimensional Cube Packing.,2004,40,Algorithmica,3,db/journals/algorithmica/algorithmica40.html#KohayakawaMRW04,https://doi.org/10.1007/s00453-004-1102-5 +Bjarni V. Halldórsson,Streaming Algorithms for Independent Sets in Sparse Hypergraphs.,2016,76,Algorithmica,2,db/journals/algorithmica/algorithmica76.html#HalldorssonHLS16,https://doi.org/10.1007/s00453-015-0051-5 +Paul Benioff,The Representation of Numbers in Quantum Mechanics.,2002,34,Algorithmica,4,db/journals/algorithmica/algorithmica34.html#Benioff02,https://doi.org/10.1007/s00453-002-0982-5 +Dániel Marx,Cleaning Interval Graphs.,2013,65,Algorithmica,2,db/journals/algorithmica/algorithmica65.html#MarxS13,https://doi.org/10.1007/s00453-011-9588-0 +Uri Zwick,A Slightly Improved Sub-Cubic Algorithm for the All PairsShortest Paths Problem with Real Edge Lengths.,2006,46,Algorithmica,2,db/journals/algorithmica/algorithmica46.html#Zwick06,https://doi.org/10.1007/s00453-005-1199-1 +Luca Trevisan,Approximating Satisfiable Satisfiability Problems.,2000,28,Algorithmica,1,db/journals/algorithmica/algorithmica28.html#Trevisan00a,https://doi.org/10.1007/s004530010035 +Panagiotis Cheilaris,Strong Conflict-Free Coloring for Intervals.,2014,70,Algorithmica,4,db/journals/algorithmica/algorithmica70.html#CheilarisGRS14,https://doi.org/10.1007/s00453-014-9929-x +Noga Alon,On-Line and Off-Line Approximation Algorithms for Vector Covering Problems.,1998,21,Algorithmica,1,db/journals/algorithmica/algorithmica21.html#AlonACESVW98,https://doi.org/10.1007/PL00009203 +Hyeong-Ah Choi,Data Transfers in Networks.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#ChoiH88,https://doi.org/10.1007/BF01762116 +Katerina Asdre,The 1-Fixed-Endpoint Path Cover Problem is Polynomial on Interval Graphs.,2010,58,Algorithmica,3,db/journals/algorithmica/algorithmica58.html#AsdreN10,https://doi.org/10.1007/s00453-009-9292-5 +Chih-En Kuo,Resequencing a Set of Strings Based on a Target String.,2015,72,Algorithmica,2,db/journals/algorithmica/algorithmica72.html#KuoWLK15,https://doi.org/10.1007/s00453-013-9859-z +Ashley Montanaro,On Exact Quantum Query Complexity.,2015,71,Algorithmica,4,db/journals/algorithmica/algorithmica71.html#MontanaroJM15,https://doi.org/10.1007/s00453-013-9826-8 +David P. Dobkin,Searching for Empty Convex Polygons.,1990,5,Algorithmica,4,db/journals/algorithmica/algorithmica5.html#DobkinEO90,https://doi.org/10.1007/BF01840404 +Ferdinando Cicalese,Improved Approximation Algorithms for the Average-Case Tree Searching Problem.,2014,68,Algorithmica,4,db/journals/algorithmica/algorithmica68.html#CicaleseJLM14,https://doi.org/10.1007/s00453-012-9715-6 +Martin Charles Golumbic,Uniquely Restricted Matchings.,2001,31,Algorithmica,2,db/journals/algorithmica/algorithmica31.html#GolumbicHL01,https://doi.org/10.1007/s00453-001-0004-z +Jinhee Chun,Linear Time Algorithm for Approximating a Curve by a Single-Peaked Curve.,2006,44,Algorithmica,2,db/journals/algorithmica/algorithmica44.html#ChunST06,https://doi.org/10.1007/s00453-005-1201-y +Gill Barequet,Efficiently Approximating Polygonal Paths in Three and Higher Dimensions.,2002,33,Algorithmica,2,db/journals/algorithmica/algorithmica33.html#BarequetCDGS02,https://doi.org/10.1007/s00453-001-0096-5 +Erik D. Demaine,Geometric Restrictions on Producible Polygonal Protein Chains.,2006,44,Algorithmica,2,db/journals/algorithmica/algorithmica44.html#DemaineLO06,https://doi.org/10.1007/s00453-005-1205-7 +Kyriaki Ioannidou,The Longest Path Problem has a Polynomial Solution on Interval Graphs.,2011,61,Algorithmica,2,db/journals/algorithmica/algorithmica61.html#IoannidouMN11,https://doi.org/10.1007/s00453-010-9411-3 +David Aldous,A. Metropolis-Type Optimization Algorithm on the Infinite Tree.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#Aldous98,https://doi.org/10.1007/PL00009231 +M. Lonergan,An Iterative Displacement Method for Conflict Resolution in Map Generalization.,2001,30,Algorithmica,2,db/journals/algorithmica/algorithmica30.html#LonerganJ01,https://doi.org/10.1007/s00453-001-0011-0 +Paolo Ferragina,On Optimally Partitioning a Text to Improve Its Compression.,2011,61,Algorithmica,1,db/journals/algorithmica/algorithmica61.html#FerraginaNV11,https://doi.org/10.1007/s00453-010-9437-6 +Toshimasa Ishii,Augmenting a (k-1)-Vertex-Connected Multigraph l-Edge-Connected and k-Vertex-Connected Multigraph.,2006,44,Algorithmica,3,db/journals/algorithmica/algorithmica44.html#IshiiNI06,https://doi.org/10.1007/s00453-005-1151-4 +Benjamin Doerr,Ranking-Based Black-Box Complexity.,2014,68,Algorithmica,3,db/journals/algorithmica/algorithmica68.html#DoerrW14,https://doi.org/10.1007/s00453-012-9684-9 +Mohammad Ali Abam,Kinetic Collision Detection for Convex Fat Objects.,2009,53,Algorithmica,4,db/journals/algorithmica/algorithmica53.html#AbamBPS09,https://doi.org/10.1007/s00453-007-9019-4 +Anke van Zuylen,Deterministic Sampling Algorithms for Network Design.,2011,60,Algorithmica,1,db/journals/algorithmica/algorithmica60.html#Zuylen11,https://doi.org/10.1007/s00453-009-9344-x +Robert T. Smythe,Stochastic Analysis of Shell Sort.,2001,31,Algorithmica,3,db/journals/algorithmica/algorithmica31.html#SmytheW01,https://doi.org/10.1007/s00453-001-0048-0 +Xiaotie Deng,Introduction to the Special Section on Internet and Network Economics.,2010,58,Algorithmica,4,db/journals/algorithmica/algorithmica58.html#DengG10,https://doi.org/10.1007/s00453-010-9444-7 +Chien-Chung Huang,Donation Center Location Problem.,2013,66,Algorithmica,1,db/journals/algorithmica/algorithmica66.html#HuangS13,https://doi.org/10.1007/s00453-012-9633-7 +Robert Crowston,Fixed-Parameter Tractability of Satisfying Beyond the Number of Variables.,2014,68,Algorithmica,3,db/journals/algorithmica/algorithmica68.html#CrowstonGJRSY14,https://doi.org/10.1007/s00453-012-9697-4 +Bhaskar DasGupta,Effect of Gromov-Hyperbolicity Parameter on Cuts and Expansions in Graphs and Some Algorithmic Implications.,2018,80,Algorithmica,2,db/journals/algorithmica/algorithmica80.html#DasGuptaKMY18,https://doi.org/10.1007/s00453-017-0291-7 +Amihood Amir,Faster Two Dimensional Scaled Matching.,2010,56,Algorithmica,2,db/journals/algorithmica/algorithmica56.html#AmirC10,https://doi.org/10.1007/s00453-008-9173-3 +Sergei Bespamyatnikh,Fast Algorithms for Approximating Distances.,2002,33,Algorithmica,2,db/journals/algorithmica/algorithmica33.html#BespamyatnikhS02,https://doi.org/10.1007/s00453-001-0114-7 +Bill Jackson,Rigid Components in Molecular Graphs.,2007,48,Algorithmica,4,db/journals/algorithmica/algorithmica48.html#JacksonJ07,https://doi.org/10.1007/s00453-007-0170-8 +Juraj Stacho,3-Colouring AT-Free Graphs in Polynomial Time.,2012,64,Algorithmica,3,db/journals/algorithmica/algorithmica64.html#Stacho12,https://doi.org/10.1007/s00453-012-9624-8 +Saswata Shannigrahi,Efficient Prüfer-Like Coding and Counting Labelled Hypertrees.,2009,54,Algorithmica,2,db/journals/algorithmica/algorithmica54.html#ShannigrahiP09,https://doi.org/10.1007/s00453-007-9137-z +Michael T. Goodrich,Efficient Authenticated Data Structures for Graph Connectivity and Geometric Search Problems.,2011,60,Algorithmica,3,db/journals/algorithmica/algorithmica60.html#GoodrichTT11,https://doi.org/10.1007/s00453-009-9355-7 +Craig A. Morgenstern,Heuristics for Rapidly Four-Coloring Large Planar Graphs.,1991,6,Algorithmica,6,db/journals/algorithmica/algorithmica6.html#MorgensternS91,https://doi.org/10.1007/BF01759077 +Giovanni Rinaldi,A Projective Method for Linear Programming with Box-Type Constraints.,1986,1,Algorithmica,4,db/journals/algorithmica/algorithmica1.html#Rinaldi86,https://doi.org/10.1007/BF01840460 +Thomas H. Spencer,Provably Good Pattern Generators for a Random Pattern Test.,1994,11,Algorithmica,5,db/journals/algorithmica/algorithmica11.html#Spencer94,https://doi.org/10.1007/BF01293265 +Peichen Pan,Optimal Graph Constraint Reduction for Symbolic Layout Compaction.,1997,18,Algorithmica,4,db/journals/algorithmica/algorithmica18.html#PanDL97,https://doi.org/10.1007/PL00009173 +Hans-Peter Lenhof,Maintaining the Visibility Map of Spheres While Moving the Viewpoint on a Circle at Infinity.,1995,13,Algorithmica,3,db/journals/algorithmica/algorithmica13.html#LenhofS95,https://doi.org/10.1007/BF01190509 +Steven Fortune,Introduction.,2000,27,Algorithmica,1,db/journals/algorithmica/algorithmica27.html#Fortune00,https://doi.org/10.1007/PL00021289 +Kurt M. Anstreicher,A Long-Step Barrier Method for Convex Quadratic Programming.,1993,10,Algorithmica,5,db/journals/algorithmica/algorithmica10.html#AnstreicherHRT93,https://doi.org/10.1007/BF01769704 +Chung-Kuan Cheng,Maximum Concurrent Flows and Minimum Cuts.,1992,8,Algorithmica,3,db/journals/algorithmica/algorithmica8.html#ChengH92,https://doi.org/10.1007/BF01758845 +Walter Meyer,Seven Fingers Allow Force-Torque Closure Grasps on Any Convex Polyhedron.,1993,9,Algorithmica,3,db/journals/algorithmica/algorithmica9.html#Meyer93,https://doi.org/10.1007/BF01190900 +Jesus Garcia-Lopez,A Unified Approach to Conic Visibility.,2000,28,Algorithmica,3,db/journals/algorithmica/algorithmica28.html#Garcia-LopezR00,https://doi.org/10.1007/s004530010042 +Paz Carmi,Geographic Quorum System Approximations.,2005,41,Algorithmica,4,db/journals/algorithmica/algorithmica41.html#CarmiDHKS05,https://doi.org/10.1007/s00453-004-1130-1 +Sheng-Lung Peng,Graph Searching on Some Subclasses of Chordal Graphs.,2000,27,Algorithmica,3,db/journals/algorithmica/algorithmica27.html#PengTKHH00,https://doi.org/10.1007/s004530010026 +Edouard Bonnet,On Subexponential and FPT-Time Inapproximability.,2015,71,Algorithmica,3,db/journals/algorithmica/algorithmica71.html#BonnetE0P15,https://doi.org/10.1007/s00453-014-9889-1 +Dirk Sudholt,A Simple Ant Colony Optimizer for Stochastic Shortest Path Problems.,2012,64,Algorithmica,4,db/journals/algorithmica/algorithmica64.html#SudholtT12,https://doi.org/10.1007/s00453-011-9606-2 +Seok-Hee Hong,Editorial: Special Issue on Algorithms and Computation.,2018,80,Algorithmica,7,db/journals/algorithmica/algorithmica80.html#Hong18,https://doi.org/10.1007/s00453-018-0438-1 +Bernard Chazelle,Fractional Cascading: I. A Data Structuring Technique.,1986,1,Algorithmica,2,db/journals/algorithmica/algorithmica1.html#ChazelleG86,https://doi.org/10.1007/BF01840440 +Hussein M. Alnuweiri,Processor-Time Optimal Parallel Algorithms for Digitized Images on Mesh-Connected Processor Arrays.,1991,6,Algorithmica,5,db/journals/algorithmica/algorithmica6.html#AlnuweiriK91,https://doi.org/10.1007/BF01759068 +Somshubhro Bandyopadhyay,A New Proof for the Existence of Mutually Unbiased Bases.,2002,34,Algorithmica,4,db/journals/algorithmica/algorithmica34.html#BandyopadhyayBRV02,https://doi.org/10.1007/s00453-002-0980-7 +Elena Lodi,A Preliminary Study of a Diagonal Channel-Routing Model.,1989,4,Algorithmica,4,db/journals/algorithmica/algorithmica4.html#LodiLP89,https://doi.org/10.1007/BF01553910 +Sunil Arya,Efficient Construction of a Bounded-Degree Spanner with Low Weight.,1997,17,Algorithmica,1,db/journals/algorithmica/algorithmica17.html#AryaS97,https://doi.org/10.1007/BF02523237 +Hee-Kap Ahn,Guest Editor's Foreword.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#AhnS16,https://doi.org/10.1007/s00453-016-0232-x +Lata Narayanan,All-to-All Optical Routing in Chordal Rings of Degree 4.,2001,31,Algorithmica,2,db/journals/algorithmica/algorithmica31.html#NarayananOS01,https://doi.org/10.1007/s00453-001-0043-5 +Susanne Albers,On the Influence of Lookahead in Competitive Paging Algorithms.,1997,18,Algorithmica,3,db/journals/algorithmica/algorithmica18.html#Albers97,https://doi.org/10.1007/PL00009158 +Marshall W. Bern,Origami Embedding of Piecewise-Linear Two-Manifolds.,2011,59,Algorithmica,1,db/journals/algorithmica/algorithmica59.html#BernH11,https://doi.org/10.1007/s00453-010-9399-8 +Celina M. H. de Figueiredo,Algorithms for the Homogeneous Set Sandwich Problem.,2006,46,Algorithmica,2,db/journals/algorithmica/algorithmica46.html#FigueiredoFSS06,https://doi.org/10.1007/s00453-005-1198-2 +Sudipto Guha,Approximation Algorithms for Connected Dominating Sets.,1998,20,Algorithmica,4,db/journals/algorithmica/algorithmica20.html#GuhaK98,https://doi.org/10.1007/PL00009201 +Sandy Irani,Randomized Weighted Caching with Two Page Weights.,2002,32,Algorithmica,4,db/journals/algorithmica/algorithmica32.html#Irani02,https://doi.org/10.1007/s00453-001-0095-6 +Hon Wai Leong,Guest Editors' Foreword.,2003,35,Algorithmica,3,db/journals/algorithmica/algorithmica35.html#LeongI03,https://doi.org/10.1007/s00453-002-0994-1 +Stefan Canzar,On Tree-Constrained Matchings and Generalizations.,2015,71,Algorithmica,1,db/journals/algorithmica/algorithmica71.html#CanzarEKM15,https://doi.org/10.1007/s00453-013-9785-0 +Leah Epstein,Robust Algorithms for Preemptive Scheduling.,2014,69,Algorithmica,1,db/journals/algorithmica/algorithmica69.html#EpsteinL14,https://doi.org/10.1007/s00453-012-9718-3 +Juan A. Garay,Special Issue: Algorithmic Tools in Cryptography.,2017,79,Algorithmica,4,db/journals/algorithmica/algorithmica79.html#GarayO17,https://doi.org/10.1007/s00453-017-0368-3 +Benjamin Doerr,Multiplicative Drift Analysis.,2012,64,Algorithmica,4,db/journals/algorithmica/algorithmica64.html#DoerrJW12,https://doi.org/10.1007/s00453-012-9622-x +Marek Chrobak,An Efficient Parallel Algorithm for Computing a Large Independent Set in Planar Graph.,1991,6,Algorithmica,6,db/journals/algorithmica/algorithmica6.html#ChrobakN91,https://doi.org/10.1007/BF01759072 +Minkyoung Cho,Improved Approximation Bounds for Planar Point Pattern Matching.,2008,50,Algorithmica,2,db/journals/algorithmica/algorithmica50.html#ChoM08,https://doi.org/10.1007/s00453-007-9059-9 +Joachim Gudmundsson,Editorial: COCOON 2012 Special Issue.,2014,70,Algorithmica,1,db/journals/algorithmica/algorithmica70.html#GudmundssonMV14,https://doi.org/10.1007/s00453-014-9899-z +Sun Wu,Path-Matching Problems.,1992,8,Algorithmica,2,db/journals/algorithmica/algorithmica8.html#WuM92,https://doi.org/10.1007/BF01758837 +Shang-Hua Teng,k-Nearest-Neighbor Clustering and Percolation Theory.,2007,49,Algorithmica,3,db/journals/algorithmica/algorithmica49.html#TengY07,https://doi.org/10.1007/s00453-007-9040-7 +Andrew R. A. McGrae,The Complexity of the Empire Colouring Problem.,2014,68,Algorithmica,2,db/journals/algorithmica/algorithmica68.html#McGraeZ14,https://doi.org/10.1007/s00453-012-9680-0 +Claire Mathieu,Some Problems in Computational Geometry.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#Mathieu87,https://doi.org/10.1007/BF01840354 +Sarah R. Allen,Evaluation of Monotone DNF Formulas.,2017,77,Algorithmica,3,db/journals/algorithmica/algorithmica77.html#AllenHKU17,https://doi.org/10.1007/s00453-015-0092-9 +Nikhil Bansal,Approximating Vector Scheduling: Almost Matching Upper and Lower Bounds.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#BansalOVZ16,https://doi.org/10.1007/s00453-016-0116-0 +Joong Chae Na,On-Line Construction of Two-Dimensional Suffix Trees in O(n2 log n) Time.,2007,48,Algorithmica,2,db/journals/algorithmica/algorithmica48.html#NaGP07,https://doi.org/10.1007/s00453-007-0063-x +Sylvain Guillemot,Finding and Counting Vertex-Colored Subtrees.,2013,65,Algorithmica,4,db/journals/algorithmica/algorithmica65.html#GuillemotS13,https://doi.org/10.1007/s00453-011-9600-8 +Michele Mosca,Introduction.,2002,34,Algorithmica,4,db/journals/algorithmica/algorithmica34.html#MoscaT02,https://doi.org/10.1007/s00453-002-0971-8 +Lars Arge,Efficient Bulk Operations on Dynamic R-Trees.,2002,33,Algorithmica,1,db/journals/algorithmica/algorithmica33.html#ArgeHVV02,https://doi.org/10.1007/s00453-001-0107-6 +Alexander Zelikovsky,A Series of Approximation Algorithms for the Acyclic Directed Steiner Tree Problem.,1997,18,Algorithmica,1,db/journals/algorithmica/algorithmica18.html#Zelikovsky97,https://doi.org/10.1007/BF02523690 +Jason D. Hartline,Characterizing History Independent Data Structures.,2005,42,Algorithmica,1,db/journals/algorithmica/algorithmica42.html#HartlineHMPR05,https://doi.org/10.1007/s00453-004-1140-z +Vladimir Kolmogorov,Inference Algorithms for Pattern-Based CRFs on Sequence Data.,2016,76,Algorithmica,1,db/journals/algorithmica/algorithmica76.html#KolmogorovT16,https://doi.org/10.1007/s00453-015-0017-7 +Christos H. Papadimitriou,Optimal Piecewise Linear Motion of an Object Among Obstacles.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#PapadimitriouS87,https://doi.org/10.1007/BF01840372 +Jonathan L. Wang,Optimizing Responses to Broadcast Messages in Radio Networks.,1989,4,Algorithmica,3,db/journals/algorithmica/algorithmica4.html#WangS89,https://doi.org/10.1007/BF01553898 +Patrik Floréen,Almost Stable Matchings by Truncating the Gale-Shapley Algorithm.,2010,58,Algorithmica,1,db/journals/algorithmica/algorithmica58.html#FloreenKPS10,https://doi.org/10.1007/s00453-009-9353-9 +Paola Bonizzoni,Restricted and Swap Common Superstring: A Multivariate Algorithmic Perspective.,2015,72,Algorithmica,4,db/journals/algorithmica/algorithmica72.html#BonizzoniDMZ15,https://doi.org/10.1007/s00453-014-9882-8 +Xiaoming Sun,A 3-Party Simultaneous Protocol for SUM-INDEX.,2003,36,Algorithmica,1,db/journals/algorithmica/algorithmica36.html#Sun03,https://doi.org/10.1007/s00453-002-1007-0 +Leonor Frias,Multikey Quickselect.,2014,69,Algorithmica,4,db/journals/algorithmica/algorithmica69.html#FriasR14,https://doi.org/10.1007/s00453-013-9775-2 +Gregory Z. Gutin,Parameterized Complexity Results for General Factors in Bipartite Graphs with an Application to Constraint Programming.,2012,64,Algorithmica,1,db/journals/algorithmica/algorithmica64.html#GutinKSSY12,https://doi.org/10.1007/s00453-011-9548-8 +Iftah Gamzu,Improved Approximation for Orienting Mixed Graphs.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#GamzuM16,https://doi.org/10.1007/s00453-014-9932-2 +John Hershberger 0001,Adaptive Spatial Partitioning for Multidimensional Data Streams.,2006,46,Algorithmica,1,db/journals/algorithmica/algorithmica46.html#HershbergerSST06,https://doi.org/10.1007/s00453-006-0070-3 +Aaron M. Andrews,Minimizing the Aggregate Movements for Interval Coverage.,2017,78,Algorithmica,1,db/journals/algorithmica/algorithmica78.html#AndrewsW17,https://doi.org/10.1007/s00453-016-0153-8 +Hiroshi Hirai,Shortest (A+B)-Path Packing Via Hafnian.,2018,80,Algorithmica,8,db/journals/algorithmica/algorithmica80.html#HiraiN18,https://doi.org/10.1007/s00453-017-0334-0 +Sara Nicoloso,On the Sum Coloring Problem on Interval Graphs.,1999,23,Algorithmica,2,db/journals/algorithmica/algorithmica23.html#NicolosoSS99,https://doi.org/10.1007/PL00009252 +Kenneth L. Clarkson,An Algorithm for Geometric Minimum Spanning Trees Requiring Nearly Linear Expected Time.,1989,4,Algorithmica,4,db/journals/algorithmica/algorithmica4.html#Clarkson89,https://doi.org/10.1007/BF01553902 +Danny Z. Chen,New Algorithms for Facility Location Problems on the Real Line.,2014,69,Algorithmica,2,db/journals/algorithmica/algorithmica69.html#ChenW14,https://doi.org/10.1007/s00453-012-9737-0 +Peter Hachenberger,Exact Minkowksi Sums of Polyhedra and Exact and Efficient Decomposition of Polyhedra into Convex Pieces.,2009,55,Algorithmica,2,db/journals/algorithmica/algorithmica55.html#Hachenberger09,https://doi.org/10.1007/s00453-008-9219-6 +Philip Bille,Compressed Subsequence Matching and Packed Tree Coloring.,2017,77,Algorithmica,2,db/journals/algorithmica/algorithmica77.html#BilleCG17,https://doi.org/10.1007/s00453-015-0068-9 +Andreas Brandstädt,Dominating Induced Matchings for P 7-Free Graphs in Linear Time.,2014,68,Algorithmica,4,db/journals/algorithmica/algorithmica68.html#BrandstadtM14,https://doi.org/10.1007/s00453-012-9709-4 +Sandy Irani,Coloring Inductive Graphs On-Line.,1994,11,Algorithmica,1,db/journals/algorithmica/algorithmica11.html#Irani94,https://doi.org/10.1007/BF01294263 +Spyros Angelopoulos 0001,The Power of Priority Algorithms for Facility Location and Set Cover.,2004,40,Algorithmica,4,db/journals/algorithmica/algorithmica40.html#AngelopoulosB04,https://doi.org/10.1007/s00453-004-1113-2 +Barry Joe,Duality of Constrained Voronoi Diagrams and Delaunay Triangulations.,1993,9,Algorithmica,2,db/journals/algorithmica/algorithmica9.html#JoeW93,https://doi.org/10.1007/BF01188709 +Michael M. Kazhdan,A Reflective Symmetry Descriptor for 3D Models.,2004,38,Algorithmica,1,db/journals/algorithmica/algorithmica38.html#KazhdanCDFR03,https://doi.org/10.1007/s00453-003-1050-5 +Joshua Brody,Towards a Reverse Newman's Theorem in Interactive Information Complexity.,2016,76,Algorithmica,3,db/journals/algorithmica/algorithmica76.html#BrodyBKLSV16,https://doi.org/10.1007/s00453-015-0112-9 +Paul F. Dietz,Lower Bounds for Set Intersection Queries.,1995,14,Algorithmica,2,db/journals/algorithmica/algorithmica14.html#DietzMRU95,https://doi.org/10.1007/BF01293666 +Fedor V. Fomin,Computing Optimal Steiner Trees in Polynomial Space.,2013,65,Algorithmica,3,db/journals/algorithmica/algorithmica65.html#FominGKLS13,https://doi.org/10.1007/s00453-012-9612-z +Guoliang Xue,Grade of Service Steiner Minimum Trees in the Euclidean Plane.,2001,31,Algorithmica,4,db/journals/algorithmica/algorithmica31.html#XueLD01,https://doi.org/10.1007/s00453-001-0050-6 +Hua-Huai Chern,Transitional Behaviors of the Average Cost of Quicksort with Median-of-(2t+1).,2001,29,Algorithmica,1,db/journals/algorithmica/algorithmica29.html#ChernH01,https://doi.org/10.1007/BF02679613 +Rasmus Pagh,I/O-Efficient Similarity Join.,2017,78,Algorithmica,4,db/journals/algorithmica/algorithmica78.html#PaghPSS17,https://doi.org/10.1007/s00453-017-0285-5 +Paola Bonizzoni,An External-Memory Algorithm for String Graph Construction.,2017,78,Algorithmica,2,db/journals/algorithmica/algorithmica78.html#BonizzoniVPPR17,https://doi.org/10.1007/s00453-016-0165-4 +Yevgeniy Dodis,How to Eat Your Entropy and Have it Too: Optimal Recovery Strategies for Compromised RNGs.,2017,79,Algorithmica,4,db/journals/algorithmica/algorithmica79.html#DodisSSW17,https://doi.org/10.1007/s00453-016-0239-3 +Richard M. Karp,Global Wire Routing in Two-Dimensional Arrays.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#KarpLRTVV87,https://doi.org/10.1007/BF01840353 +Michele Flammini,Improved Approximation Results for the Minimum Energy Broadcasting Problem.,2007,49,Algorithmica,4,db/journals/algorithmica/algorithmica49.html#FlamminiKNP07,https://doi.org/10.1007/s00453-007-9077-7 +Zachary Friggstad,Approximability of Packing Disjoint Cycles.,2011,60,Algorithmica,2,db/journals/algorithmica/algorithmica60.html#FriggstadS11,https://doi.org/10.1007/s00453-009-9349-5 +Joshua Brody,Certifying Equality With Limited Interaction.,2016,76,Algorithmica,3,db/journals/algorithmica/algorithmica76.html#BrodyCKWY16,https://doi.org/10.1007/s00453-016-0163-6 +William R. Burley,On Algorithm Design for Metrical Task Systems.,1997,18,Algorithmica,4,db/journals/algorithmica/algorithmica18.html#BurleyI97,https://doi.org/10.1007/PL00009166 +Philip N. Klein,Detecting Race Conditions in Parallel Programs that Use Semaphores.,2003,35,Algorithmica,4,db/journals/algorithmica/algorithmica35.html#KleinNL03,https://doi.org/10.1007/s00453-002-1004-3 +Adrian Dumitrescu,Minimum Weight Convex Steiner Partitions.,2011,60,Algorithmica,3,db/journals/algorithmica/algorithmica60.html#DumitrescuT11,https://doi.org/10.1007/s00453-009-9329-9 +Martin Fürer,Efficient Computation of the Characteristic Polynomial of a Tree and Related Tasks.,2014,68,Algorithmica,3,db/journals/algorithmica/algorithmica68.html#Furer14,https://doi.org/10.1007/s00453-012-9688-5 +Tim Nonner,PTAS for Densest k-Subgraph in Interval Graphs.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#Nonner16,https://doi.org/10.1007/s00453-014-9956-7 +Danny Segev,Approximate k-Steiner Forests via the Lagrangian Relaxation Technique with Internal Preprocessing.,2010,56,Algorithmica,4,db/journals/algorithmica/algorithmica56.html#SegevS10,https://doi.org/10.1007/s00453-008-9189-8 +Xujin Chen,Approximation Algorithms for Soft-Capacitated Facility Location in Capacitated Network Design.,2009,53,Algorithmica,3,db/journals/algorithmica/algorithmica53.html#ChenC09,https://doi.org/10.1007/s00453-007-9032-7 +Christopher J. Van Wyk,The Complexity of Hashing with Lazy Deletion.,1986,1,Algorithmica,1,db/journals/algorithmica/algorithmica1.html#WykV86,https://doi.org/10.1007/BF01840434 +Ho-Leung Chan,Nonclairvoyant Speed Scaling for Flow and Energy.,2011,61,Algorithmica,3,db/journals/algorithmica/algorithmica61.html#ChanELLMP11,https://doi.org/10.1007/s00453-010-9420-2 +Esther M. Arkin,On Minimum-Area Hulls.,1998,21,Algorithmica,1,db/journals/algorithmica/algorithmica21.html#ArkinCHMSSY98,https://doi.org/10.1007/PL00009204 +Marek Karpinski,Improved Approximation Algorithms for the Quality of Service Multicast Tree Problem.,2005,42,Algorithmica,2,db/journals/algorithmica/algorithmica42.html#KarpinskiMOZ05,https://doi.org/10.1007/s00453-004-1133-y +Friedhelm Meyer auf der Heide,Strongly Adaptive Token Distribution.,1996,15,Algorithmica,5,db/journals/algorithmica/algorithmica15.html#HeideOW96,https://doi.org/10.1007/BF01955042 +Hervé Fournier,Lower Bounds for Comparison Based Evolution Strategies Using VC-dimension and Sign Patterns.,2011,59,Algorithmica,3,db/journals/algorithmica/algorithmica59.html#FournierT11,https://doi.org/10.1007/s00453-010-9391-3 +Vittorio Bilò,Graphical Congestion Games.,2011,61,Algorithmica,2,db/journals/algorithmica/algorithmica61.html#BiloFFM11,https://doi.org/10.1007/s00453-010-9417-x +Yunlong Liu,On Counting 3-D Matchings of Size k.,2009,54,Algorithmica,4,db/journals/algorithmica/algorithmica54.html#LiuCW09,https://doi.org/10.1007/s00453-008-9207-x +Lijun Chang,Fast Maximal Cliques Enumeration in Sparse Graphs.,2013,66,Algorithmica,1,db/journals/algorithmica/algorithmica66.html#ChangYQ13,https://doi.org/10.1007/s00453-012-9632-8 +Paul Pritchard,A Fast Bit-Parallel Algorithm for Computing the Subset Partial Order.,1999,24,Algorithmica,1,db/journals/algorithmica/algorithmica24.html#Pritchard99,https://doi.org/10.1007/PL00009272 +Bang Ye Wu,Parameterized Algorithms for the 2-Clustering Problem with Minimum Sum and Minimum Sum of Squares Objective Functions.,2015,72,Algorithmica,3,db/journals/algorithmica/algorithmica72.html#WuC15,https://doi.org/10.1007/s00453-014-9874-8 +Hadas Shachnai,Multiprocessor Scheduling with Machine Allotment and Parallelism Constraints.,2002,32,Algorithmica,4,db/journals/algorithmica/algorithmica32.html#ShachnaiT02,https://doi.org/10.1007/s00453-001-0098-3 +Yixin Cao 0001,Chordal Editing is Fixed-Parameter Tractable.,2016,75,Algorithmica,1,db/journals/algorithmica/algorithmica75.html#CaoM16,https://doi.org/10.1007/s00453-015-0014-x +Anders Dessmark,Faster Algorithms for Subgraph Isomorphism of k-Connected Partial k-Trees.,2000,27,Algorithmica,3,db/journals/algorithmica/algorithmica27.html#DessmarkLP00,https://doi.org/10.1007/s004530010023 +Haim Kaplan,Routing in Unit Disk Graphs.,2018,80,Algorithmica,3,db/journals/algorithmica/algorithmica80.html#KaplanMRS18,https://doi.org/10.1007/s00453-017-0308-2 +Eli Biham,Security of Quantum Key Distribution against All Collective Attacks.,2002,34,Algorithmica,4,db/journals/algorithmica/algorithmica34.html#BihamBBGM02,https://doi.org/10.1007/s00453-002-0973-6 +Lila Kari,Binary Pattern Tile Set Synthesis Is NP-Hard.,2017,78,Algorithmica,1,db/journals/algorithmica/algorithmica78.html#KariKMPS17,https://doi.org/10.1007/s00453-016-0154-7 +Charles E. Leiserson,Communication-Efficient Parallel Algorithms for Distributed Random-Access Machines.,1988,3,Algorithmica,,db/journals/algorithmica/algorithmica3.html#LeisersonM88,https://doi.org/10.1007/BF01762110 +Malte Brinkmeyer,FlipCut Supertrees: Towards Matrix Representation Accuracy in Polynomial Time.,2013,67,Algorithmica,2,db/journals/algorithmica/algorithmica67.html#BrinkmeyerGB13,https://doi.org/10.1007/s00453-012-9698-3 +Lauri Ahlroth,Approximately Uniform Online Checkpointing with Bounded Memory.,2013,67,Algorithmica,2,db/journals/algorithmica/algorithmica67.html#AhlrothPS13,https://doi.org/10.1007/s00453-013-9772-5 +Jessica Enright,Deleting Edges to Restrict the Size of an Epidemic: A New Application for Treewidth.,2018,80,Algorithmica,6,db/journals/algorithmica/algorithmica80.html#EnrightM18,https://doi.org/10.1007/s00453-017-0311-7 +Amalia Duch,On the Cost of Fixed Partial Match Queries in K-d Trees.,2016,75,Algorithmica,4,db/journals/algorithmica/algorithmica75.html#DuchLM16,https://doi.org/10.1007/s00453-015-0097-4 +Cameron T. Chalk,Optimal Staged Self-Assembly of General Shapes.,2018,80,Algorithmica,4,db/journals/algorithmica/algorithmica80.html#ChalkMSVWW18,https://doi.org/10.1007/s00453-017-0318-0 +Erik D. Demaine,On Cartesian Trees and Range Minimum Queries.,2014,68,Algorithmica,3,db/journals/algorithmica/algorithmica68.html#DemaineLW14,https://doi.org/10.1007/s00453-012-9683-x +Romeo Rizzi,Polynomial Time Complexity of Edge Colouring Graphs with Bounded Colour Classes.,2014,69,Algorithmica,3,db/journals/algorithmica/algorithmica69.html#RizziC14,https://doi.org/10.1007/s00453-013-9746-7 +Ivona Bezáková,Negative Examples for Sequential Importance Sampling of Binary Contingency Tables.,2012,64,Algorithmica,4,db/journals/algorithmica/algorithmica64.html#BezakovaSSV12,https://doi.org/10.1007/s00453-011-9569-3 +Gábor Wiener,Rounds in Combinatorial Search.,2013,67,Algorithmica,3,db/journals/algorithmica/algorithmica67.html#Wiener13,https://doi.org/10.1007/s00453-013-9750-y +Olivier Gascuel,A 'Stochastic Safety Radius' for Distance-Based Tree Reconstruction.,2016,74,Algorithmica,4,db/journals/algorithmica/algorithmica74.html#GascuelS16,https://doi.org/10.1007/s00453-015-0005-y +Béchir el Ayeb,Fault Identification in System-Level Diagnosis: a Logic-Based Framework and an O(n2sqrt(tau/log n) Algorithm.,2002,33,Algorithmica,2,db/journals/algorithmica/algorithmica33.html#Ayeb02,https://doi.org/10.1007/s00453-001-0092-9 +Rajiv Gandhi,Algorithms for Minimizing Response Time in Broadcast Scheduling.,2004,38,Algorithmica,4,db/journals/algorithmica/algorithmica38.html#GandhiKKW04,https://doi.org/10.1007/s00453-003-1058-x +Christoph Dürr,Finding Total Unimodularity in Optimization Problems Solved by Linear Programs.,2011,59,Algorithmica,2,db/journals/algorithmica/algorithmica59.html#DurrH11,https://doi.org/10.1007/s00453-009-9310-7 +Marc J. van Kreveld,Divided k-d Trees.,1991,6,Algorithmica,6,db/journals/algorithmica/algorithmica6.html#KreveldO91,https://doi.org/10.1007/BF01759075 +Guy Kortsarz,Approximating Minimum-Power Degree and Connectivity Problems.,2011,60,Algorithmica,4,db/journals/algorithmica/algorithmica60.html#KortsarzMNT11,https://doi.org/10.1007/s00453-009-9365-5 +Jérémy Barbay,Efficient Fully-Compressed Sequence Representations.,2014,69,Algorithmica,1,db/journals/algorithmica/algorithmica69.html#BarbayCGNN14,https://doi.org/10.1007/s00453-012-9726-3 +Jin-Yi Cai,From Holant to #CSP and Back: Dichotomy for Holant c Problems.,2012,64,Algorithmica,3,db/journals/algorithmica/algorithmica64.html#CaiHL12,https://doi.org/10.1007/s00453-012-9626-6 +Yi-Jen Chiang,New Approximation Results for the Maximum Scatter TSP.,2005,41,Algorithmica,4,db/journals/algorithmica/algorithmica41.html#Chiang05,https://doi.org/10.1007/s00453-004-1124-z +Michael A. Bekos,Boundary Labeling with Octilinear Leaders.,2010,57,Algorithmica,3,db/journals/algorithmica/algorithmica57.html#BekosKNS10,https://doi.org/10.1007/s00453-009-9283-6 +Vikraman Arvind,The Parameterized Complexity of Geometric Graph Isomorphism.,2016,75,Algorithmica,2,db/journals/algorithmica/algorithmica75.html#ArvindR16,https://doi.org/10.1007/s00453-015-0024-8 +Christoph Burnikel,A Separation Bound for Real Algebraic Expressions.,2009,55,Algorithmica,1,db/journals/algorithmica/algorithmica55.html#BurnikelFMSS09,https://doi.org/10.1007/s00453-007-9132-4 +Chaoyi Pang,Computing Unrestricted Synopses Under Maximum Error Bound.,2013,65,Algorithmica,1,db/journals/algorithmica/algorithmica65.html#PangZZHWM13,https://doi.org/10.1007/s00453-011-9571-9 +K. Subramani,A Combinatorial Certifying Algorithm for Linear Feasibility in UTVPI Constraints.,2017,78,Algorithmica,1,db/journals/algorithmica/algorithmica78.html#SubramaniW17,https://doi.org/10.1007/s00453-016-0131-1 +Artur Jez,One-Variable Word Equations in Linear Time.,2016,74,Algorithmica,1,db/journals/algorithmica/algorithmica74.html#Jez16,https://doi.org/10.1007/s00453-014-9931-3 +Leonidas J. Guibas,Linear-Time Algorithms for Visibility and Shortest Path Problems Inside Triangulated Simple Polygons.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#GuibasHLST87,https://doi.org/10.1007/BF01840360 +Benjamin A. Burton,A Tree Traversal Algorithm for Decision Problems in Knot Theory and 3-Manifold Topology.,2013,65,Algorithmica,4,db/journals/algorithmica/algorithmica65.html#BurtonO13,https://doi.org/10.1007/s00453-012-9645-3 +F. Thomas Bruss,The Complete Solution of the Competitive Rank Selection Problem.,1998,22,Algorithmica,4,db/journals/algorithmica/algorithmica22.html#BrussDL98,https://doi.org/10.1007/PL00009232 +Katarína Cechlárová,Housing Markets Through Graphs.,2010,58,Algorithmica,1,db/journals/algorithmica/algorithmica58.html#CechlarovaF10,https://doi.org/10.1007/s00453-009-9347-7 +Elie de Panafieu,2-Xor Revisited: Satisfiability and Probabilities of Functions.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#PanafieuGGK16,https://doi.org/10.1007/s00453-016-0119-x +Prosenjit Bose,Switching to Directional Antennas with Constant Increase in Radius and Hop Distance.,2014,69,Algorithmica,2,db/journals/algorithmica/algorithmica69.html#BoseCDFKM14,https://doi.org/10.1007/s00453-012-9739-y +Ulrik Brandes,A Linear Time Algorithm for the Arc Disjoint Menger Problem in Planar Directed Graphs.,2000,28,Algorithmica,1,db/journals/algorithmica/algorithmica28.html#BrandesW00,https://doi.org/10.1007/s004530010029 +Binay K. Bhattacharya,A Linear Time Algorithm for Computing Minmax Regret 1-Median on a Tree Network.,2014,70,Algorithmica,1,db/journals/algorithmica/algorithmica70.html#BhattacharyaKS14,https://doi.org/10.1007/s00453-013-9851-7 +Tadao Takaoka,Subcubic Cost Algorithms for the All Pairs Shortest Path Problem.,1998,20,Algorithmica,3,db/journals/algorithmica/algorithmica20.html#Takaoka98,https://doi.org/10.1007/PL00009198 +Jean-Daniel Boissonnat,An Algorithm for Computing a Convex and Simple Path of Bounded Curvature in a Simple Polygon.,2002,34,Algorithmica,2,db/journals/algorithmica/algorithmica34.html#BoissonnatGKL02,https://doi.org/10.1007/s00453-002-0950-0 +Marco Pellegrini 0001,Ray Shooting on Triangles in 3-Space.,1993,9,Algorithmica,5,db/journals/algorithmica/algorithmica9.html#Pellegrini93,https://doi.org/10.1007/BF01187036 +Riley Murray,Scheduling Distributed Clusters of Parallel Machines : Primal-Dual and LP-based Approximation Algorithms.,2018,80,Algorithmica,10,db/journals/algorithmica/algorithmica80.html#MurrayKC18,https://doi.org/10.1007/s00453-017-0345-x +Lata Narayanan,Compact Routing on Chordal Rings of Degree 4.,1999,23,Algorithmica,1,db/journals/algorithmica/algorithmica23.html#NarayananO99,https://doi.org/10.1007/PL00009251 +Jessica Chang,A Model for Minimizing Active Processor Time.,2014,70,Algorithmica,3,db/journals/algorithmica/algorithmica70.html#ChangGK14,https://doi.org/10.1007/s00453-013-9807-y +Nikhil Bansal,Average Rate Speed Scaling.,2011,60,Algorithmica,4,db/journals/algorithmica/algorithmica60.html#BansalBCP11,https://doi.org/10.1007/s00453-009-9379-z +Valerio Pascucci,Parallel Computation of the Topology of Level Sets.,2004,38,Algorithmica,1,db/journals/algorithmica/algorithmica38.html#PascucciC03,https://doi.org/10.1007/s00453-003-1052-3 +Hagit Attiya,Efficient Elections in Chordal Ring Networks.,1989,4,Algorithmica,3,db/journals/algorithmica/algorithmica4.html#AttiyaLSZ89,https://doi.org/10.1007/BF01553900 +Joachim Gudmundsson,Algorithms for Marketing-Mix Optimization.,2011,60,Algorithmica,4,db/journals/algorithmica/algorithmica60.html#GudmundssonMS11,https://doi.org/10.1007/s00453-010-9393-1 +Chien-Chung Huang,Bounded Unpopularity Matchings.,2011,61,Algorithmica,3,db/journals/algorithmica/algorithmica61.html#HuangKMN11,https://doi.org/10.1007/s00453-010-9434-9 +Bernhard Fuchs,The Number of Tree Stars Is O *(1.357 k ).,2007,49,Algorithmica,3,db/journals/algorithmica/algorithmica49.html#FuchsKW07,https://doi.org/10.1007/s00453-007-9020-y +Yoshiyuki Takao,Finding a Region with the Minimum Total L1 Distance from Prescribed Terminals.,2003,35,Algorithmica,3,db/journals/algorithmica/algorithmica35.html#Takao03,https://doi.org/10.1007/s00453-002-0997-y +Vladimir Batagelj,Dynamic Programming and Convex Clustering.,1994,11,Algorithmica,2,db/journals/algorithmica/algorithmica11.html#BatageljKK94,https://doi.org/10.1007/BF01182769 +Davide Bilò,Finding Best Swap Edges Minimizing the Routing Cost of a Spanning Tree.,2014,68,Algorithmica,2,db/journals/algorithmica/algorithmica68.html#BiloGP14,https://doi.org/10.1007/s00453-012-9674-y +Jean-Daniel Boissonnat,Building Efficient and Compact Data Structures for Simplicial Complexes.,2017,79,Algorithmica,2,db/journals/algorithmica/algorithmica79.html#BoissonnatST17,https://doi.org/10.1007/s00453-016-0207-y +Eugene Wong 0001,Stochastic Neural Networks.,1991,6,Algorithmica,3,db/journals/algorithmica/algorithmica6.html#Wong91,https://doi.org/10.1007/BF01759054 +Jean-François Couturier 0001,List Coloring in the Absence of a Linear Forest.,2015,71,Algorithmica,1,db/journals/algorithmica/algorithmica71.html#0001GKP15,https://doi.org/10.1007/s00453-013-9777-0 +Pål Grønås Drange,On the Computational Complexity of Vertex Integrity and Component Order Connectivity.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#DrangeDH16,https://doi.org/10.1007/s00453-016-0127-x +Michael A. Bekos,On the Recognition of Fan-Planar and Maximal Outer-Fan-Planar Graphs.,2017,79,Algorithmica,2,db/journals/algorithmica/algorithmica79.html#BekosCGHK17,https://doi.org/10.1007/s00453-016-0200-5 +Alok Aggarwal,Multilayer Grid Embeddings for VLSI.,1991,6,Algorithmica,1,db/journals/algorithmica/algorithmica6.html#AggarwalKS91,https://doi.org/10.1007/BF01759038 +Prabhakar Raghavan,Guest Editor's Foreword: Special Issue on On-Line Algorithms.,1994,11,Algorithmica,1,db/journals/algorithmica/algorithmica11.html#Raghavan94,https://doi.org/10.1007/BF01294259 +Yih-En Andrew Ban,A Conjecture on Wiener Indices in Combinatorial Chemistry.,2004,40,Algorithmica,2,db/journals/algorithmica/algorithmica40.html#BanBM04,https://doi.org/10.1007/s00453-004-1097-y +Ali çivril,Exponential Inapproximability of Selecting a Maximum Volume Sub-matrix.,2013,65,Algorithmica,1,db/journals/algorithmica/algorithmica65.html#CivrilM13,https://doi.org/10.1007/s00453-011-9582-6 +Argyrios Deligkas,Computing Approximate Nash Equilibria in Polymatrix Games.,2017,77,Algorithmica,2,db/journals/algorithmica/algorithmica77.html#DeligkasFSS17,https://doi.org/10.1007/s00453-015-0078-7 +Yury Lifshits,Speeding Up HMM Decoding and Training by Exploiting Sequence Repetitions.,2009,54,Algorithmica,3,db/journals/algorithmica/algorithmica54.html#LifshitsMWZ09,https://doi.org/10.1007/s00453-007-9128-0 +Jon Louis Bentley,Fast Linear Expected-Time Algorithms for Computing Maxima and Convex Hulls.,1993,9,Algorithmica,2,db/journals/algorithmica/algorithmica9.html#BentleyCL93,https://doi.org/10.1007/BF01188711 +Gregory Z. Gutin,Guest Editorial: Special Issue on Parameterized and Exact Computation.,2015,71,Algorithmica,3,db/journals/algorithmica/algorithmica71.html#GutinS15,https://doi.org/10.1007/s00453-014-9960-y +Svante Janson,A Unified Approach to Linear Probing Hashing with Buckets.,2016,75,Algorithmica,4,db/journals/algorithmica/algorithmica75.html#JansonV16,https://doi.org/10.1007/s00453-015-0111-x +Bundit Laekhanukit,Routing Regardless of Network Stability.,2014,70,Algorithmica,3,db/journals/algorithmica/algorithmica70.html#LaekhanukitVW14,https://doi.org/10.1007/s00453-014-9908-2 +Edward G. Coffman Jr.,Bandwidth Packing.,2001,29,Algorithmica,1,db/journals/algorithmica/algorithmica29.html#CoffmanS01,https://doi.org/10.1007/BF02679614 +Igor Razgon,On the Read-Once Property of Branching Programs and CNFs of Bounded Treewidth.,2016,75,Algorithmica,2,db/journals/algorithmica/algorithmica75.html#Razgon16,https://doi.org/10.1007/s00453-015-0059-x +Jay N. Bhuyan,Algorithms for the Boundary Selection Problem.,1997,17,Algorithmica,2,db/journals/algorithmica/algorithmica17.html#BhuyanDR97,https://doi.org/10.1007/BF02522823 +Adnan Agbaria,Communication - Processor Tradeoffs in a Limited Resources PRAM.,2002,34,Algorithmica,3,db/journals/algorithmica/algorithmica34.html#AgbariaBN02,https://doi.org/10.1007/s00453-002-0966-5 +Romeo Rizzi,Minimum Weakly Fundamental Cycle Bases Are Hard To Find.,2009,53,Algorithmica,3,db/journals/algorithmica/algorithmica53.html#Rizzi09,https://doi.org/10.1007/s00453-007-9112-8 +Sanjam Garg,On the Implausibility of Differing-Inputs Obfuscation and Extractable Witness Encryption with Auxiliary Input.,2017,79,Algorithmica,4,db/journals/algorithmica/algorithmica79.html#GargGHW17,https://doi.org/10.1007/s00453-017-0276-6 +Noga Alon,Improved Parallel Approximation of a Class of Integer Programming Problems.,1997,17,Algorithmica,4,db/journals/algorithmica/algorithmica17.html#AlonS97,https://doi.org/10.1007/BF02523683 +Alberto Apostolico,The Longest Common Subsequence Problem Revisited.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#ApostolicoG87,https://doi.org/10.1007/BF01840365 +Kazuyuki Narisawa,Efficient Computation of Substring Equivalence Classes with Suffix Arrays.,2017,79,Algorithmica,2,db/journals/algorithmica/algorithmica79.html#NarisawaHIBT17,https://doi.org/10.1007/s00453-016-0178-z +Ed Cohen,Efficient Convexity and Domination Algorithms for Fine-and Medium-Grain Hypercube Computers.,1992,7,Algorithmica,1,db/journals/algorithmica/algorithmica7.html#CohenMSS92,https://doi.org/10.1007/BF01758751 +Charles U. Martel,A General Model for Authenticated Data Structures.,2004,39,Algorithmica,1,db/journals/algorithmica/algorithmica39.html#MartelNDGKS04,https://doi.org/10.1007/s00453-003-1076-8 +Achim Schweikard,Assembly Sequences for Polyhedra.,1995,13,Algorithmica,6,db/journals/algorithmica/algorithmica13.html#SchweikardW95,https://doi.org/10.1007/BF01189068 +Prosenjit Bose,The Power and Limitations of Static Binary Search Trees with Lazy Finger.,2016,76,Algorithmica,4,db/journals/algorithmica/algorithmica76.html#BoseDIL16,https://doi.org/10.1007/s00453-016-0224-x +Paola Bonizzoni,Fingerprint Clustering with Bounded Number of Missing Values.,2010,58,Algorithmica,2,db/journals/algorithmica/algorithmica58.html#BonizzoniVDM10,https://doi.org/10.1007/s00453-008-9265-0 +Michael Elberfeld,On the Space and Circuit Complexity of Parameterized Problems: Classes and Completeness.,2015,71,Algorithmica,3,db/journals/algorithmica/algorithmica71.html#ElberfeldST15,https://doi.org/10.1007/s00453-014-9944-y +Peng-Jun Wan,OVSF-CDMA Code Assignment in Wireless Ad Hoc Networks.,2007,49,Algorithmica,4,db/journals/algorithmica/algorithmica49.html#WanLF07,https://doi.org/10.1007/s00453-007-9094-6 +Monika Rauch Henzinger,Lower Bounds for Fully Dynamic Connectivity Problems in Graphs.,1998,22,Algorithmica,3,db/journals/algorithmica/algorithmica22.html#HenzingerF98,https://doi.org/10.1007/PL00009228 +Frank Wagner 0001,Three Rules Suffice for Good Label Placement.,2001,30,Algorithmica,2,db/journals/algorithmica/algorithmica30.html#WagnerWKS01,https://doi.org/10.1007/s00453-001-0009-7 +Pankaj K. Agarwal,Planar Geometric Location Problems.,1994,11,Algorithmica,2,db/journals/algorithmica/algorithmica11.html#AgarwalS94,https://doi.org/10.1007/BF01182774 +Prakash V. Ramanan,Average-Case Analysis of the Modified Harmonic Algorithm.,1989,4,Algorithmica,4,db/journals/algorithmica/algorithmica4.html#RamananT89,https://doi.org/10.1007/BF01553906 +Naoki Katoh,Foreword.,2006,44,Algorithmica,2,db/journals/algorithmica/algorithmica44.html#Katoh06,https://doi.org/10.1007/s00453-005-1200-z +Satoru Iwata 0001,An Algorithm for Minimum Cost Arc-Connectivity Orientations.,2010,56,Algorithmica,4,db/journals/algorithmica/algorithmica56.html#IwataK10,https://doi.org/10.1007/s00453-008-9179-x +Marek Cygan,Parameterized Complexity of Eulerian Deletion Problems.,2014,68,Algorithmica,1,db/journals/algorithmica/algorithmica68.html#CyganMPPS14,https://doi.org/10.1007/s00453-012-9667-x +Li (Erran) Li,Secure Overlay Network Design.,2010,57,Algorithmica,1,db/journals/algorithmica/algorithmica57.html#LiMM10,https://doi.org/10.1007/s00453-008-9198-7 +Lee-Ad Gottlieb,Matrix Sparsification and the Sparse Null Space Problem.,2016,76,Algorithmica,2,db/journals/algorithmica/algorithmica76.html#GottliebN16,https://doi.org/10.1007/s00453-015-0042-6 +Goos Kant,Drawing Planar Graphs Using the Canonical Ordering.,1996,16,Algorithmica,1,db/journals/algorithmica/algorithmica16.html#Kant96,https://doi.org/10.1007/BF02086606 +Diptapriyo Majumdar,Structural Parameterizations of Undirected Feedback Vertex Set: FPT Algorithms and Kernelization.,2018,80,Algorithmica,9,db/journals/algorithmica/algorithmica80.html#MajumdarR18,https://doi.org/10.1007/s00453-018-0419-4 +Amir H. Farrahi,Two-Way and Multiway Partitioning of a Set of Intervals for Clique-Width Maximization.,1999,23,Algorithmica,3,db/journals/algorithmica/algorithmica23.html#FarrahiLS99,https://doi.org/10.1007/PL00009257 +Hicham El-Zein,On the Succinct Representation of Equivalence Classes.,2017,78,Algorithmica,3,db/journals/algorithmica/algorithmica78.html#El-ZeinLMRC17,https://doi.org/10.1007/s00453-016-0192-1 +Hans L. Bodlaender,Quadratic Kernelization for Convex Recoloring of Trees.,2011,61,Algorithmica,2,db/journals/algorithmica/algorithmica61.html#BodlaenderFLRRW11,https://doi.org/10.1007/s00453-010-9404-2 +Ming-Yang Kao,Guest Editors' Foreword.,1999,25,Algorithmica,1,db/journals/algorithmica/algorithmica25.html#KaoKL99,https://doi.org/10.1007/PL00009278 +Anne Benoit,Computing the Throughput of Probabilistic and Replicated Streaming Applications.,2014,69,Algorithmica,4,db/journals/algorithmica/algorithmica69.html#BenoitGGR14,https://doi.org/10.1007/s00453-013-9768-1 +Shigeru Masuyama,Chain Packing in Graphs.,1991,6,Algorithmica,6,db/journals/algorithmica/algorithmica6.html#MasuyamaI91,https://doi.org/10.1007/BF01759074 +Christine T. Cheng,Understanding the Generalized Median Stable Matchings.,2010,58,Algorithmica,1,db/journals/algorithmica/algorithmica58.html#Cheng10,https://doi.org/10.1007/s00453-009-9307-2 +Marcel R. Ackermann,Analysis of Agglomerative Clustering.,2014,69,Algorithmica,1,db/journals/algorithmica/algorithmica69.html#AckermannBKS14,https://doi.org/10.1007/s00453-012-9717-4 +Boris Aronov,Data Structures for Halfplane Proximity Queries and Incremental Voronoi Diagrams.,2018,80,Algorithmica,11,db/journals/algorithmica/algorithmica80.html#AronovBDGILS18,https://doi.org/10.1007/s00453-017-0389-y +Christos Levcopoulos,On Approximation Behavior of the Greedy Triangulation for Convex Polygons.,1987,2,Algorithmica,,db/journals/algorithmica/algorithmica2.html#LevcopoulosL87,https://doi.org/10.1007/BF01840358 +Maxime Crochemore,Two-Dimensional Prefix String Matching and Covering on Square Matrices.,1998,20,Algorithmica,4,db/journals/algorithmica/algorithmica20.html#CrochemoreIK98,https://doi.org/10.1007/PL00009200 +Alok Aggarwal,A Lower Bound on the Area of Permutation Layouts.,1991,6,Algorithmica,2,db/journals/algorithmica/algorithmica6.html#AggarwalKLLW91,https://doi.org/10.1007/BF01759044 +Moses Charikar,l22 Spreading Metrics for Vertex Ordering Problems.,2010,56,Algorithmica,4,db/journals/algorithmica/algorithmica56.html#CharikarHKR10,https://doi.org/10.1007/s00453-008-9191-1 +Michele Flammini,On the Complexity of the Regenerator Cost Problem in General Networks with Traffic Grooming.,2014,68,Algorithmica,3,db/journals/algorithmica/algorithmica68.html#FlamminiMMSZ14,https://doi.org/10.1007/s00453-012-9693-8 +Vladimir Braverman,New Bounds for the CLIQUE-GAP Problem Using Graph Decomposition Theory.,2018,80,Algorithmica,2,db/journals/algorithmica/algorithmica80.html#BravermanLSVY18,https://doi.org/10.1007/s00453-017-0277-5 +Matthias Englert,Lower and Upper Bounds on FIFO Buffer Management in QoS Switches.,2009,53,Algorithmica,4,db/journals/algorithmica/algorithmica53.html#EnglertW09,https://doi.org/10.1007/s00453-008-9236-5 +Piotr Berman,Foreword.,2007,48,Algorithmica,4,db/journals/algorithmica/algorithmica48.html#BermanDL07,https://doi.org/10.1007/s00453-007-0357-z +Dianxiang Xu,Testing Aspect-Oriented Programs with UML Design Models.,2008,18,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke18.html#XuXW08,https://doi.org/10.1142/S0218194008003672 +Jason J. Jung,Guest Editors' Introduction.,2013,23,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke23.html#JungKN13,https://doi.org/10.1142/S0218194013020014 +Ron S. Kenett,Controlling the Usability of Web Services.,2009,19,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke19.html#KenettHR09,https://doi.org/10.1142/S0218194009004362 +Mathupayas Thongmak,Maintainability Metrics for Aspect-Oriented Software.,2009,19,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke19.html#ThongmakM09,https://doi.org/10.1142/S0218194009004234 +Allaoua Maamir,Adding Flexibility in Information Flow Control for Object-Oriented Systems Using Versions.,2003,13,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke13.html#MaamirF03,https://doi.org/10.1142/S0218194003001317 +Filomena Ferrucci,Guest Editors' Introduction.,2003,13,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke13.html#FerrucciV03,https://doi.org/10.1142/S021819400300138X +Dianxiang Xu,Guest Editor's Introduction.,2013,23,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke23.html#XuA13,https://doi.org/10.1142/S0218194013020038 +John C. Grundy,Visual Specification and Monitoring of Software Agents in Decentralized Process-Centred Environments.,1999,9,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke9.html#Grundy99,https://doi.org/10.1142/S0218194099000243 +Zhi Jin,Automated Requirements Elicitation: Combining a Model-Driven Approach with Concept Reuse.,2003,13,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke13.html#JinBWL03,https://doi.org/10.1142/S0218194003001147 +Shadi G. Alawneh,Using Test Oracles and Formal Specifications with Test-Driven Development.,2013,23,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke23.html#AlawnehP13,https://doi.org/10.1142/S0218194013500113 +Sang Hun Oh,A Management Discipline of Software Metrics and the Software Quality Manager.,1992,2,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke2.html#OhLK92,https://doi.org/10.1142/S021819409200021X +Shyi-Ming Chen,An Inexact Reasoning Algorithm for Dealing with Inexact Knowledge.,1991,1,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke1.html#ChenKC91,https://doi.org/10.1142/S0218194091000184 +Ruilian Zhao,Test Generation for Programs with Binary Tree Structure as Input.,2015,25,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke25.html#ZhaoLW15,https://doi.org/10.1142/S0218194015500205 +Jun Kong,Uml-Based Modeling and Analysis of Security Threats.,2010,20,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke20.html#KongXZ10,https://doi.org/10.1142/S0218194010004980 +Junhua Ding,Formal Specification and Analysis of an Agent-Based Medical Image Processing System.,2010,20,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke20.html#DingH10,https://doi.org/10.1142/S021819401000475X +Laurent Thiry,A Calculus for (Meta)Models and Transformations.,2014,24,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke24.html#ThiryH14,https://doi.org/10.1142/S0218194014500272 +Adrianna Kozierkiewicz-Hetmanska,Analysis of Susceptibility to the Consensus for a Few Representations of Collective Knowledge.,2014,24,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke24.html#Kozierkiewicz-Hetmanska14,https://doi.org/10.1142/S0218194014500296 +Maria Tortorella,Empirical Investigation of Innovation Diffusion in a Software Process.,1999,9,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke9.html#TortorellaV99,https://doi.org/10.1142/S0218194099000322 +Honghao Gao,Probabilistic Model Checking-Based Service Selection Method for Business Process Modeling.,2017,27,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke27.html#GaoCDY17,https://doi.org/10.1142/S0218194017500334 +Timothy Arndt,Formal Specification and Prototyping of Multimedia Applications.,2000,10,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke10.html#ArndtCG00,https://doi.org/10.1142/S0218194000000250 +Zhijian Wang,Comparing and Improving the Synthesis of State-Based Specifications from Scenario-Based Specifications.,2012,22,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke22.html#WangLZ12,https://doi.org/10.1142/S0218194012500234 +Kiyoshi Itoh,Transobj: Software Prototyping Environment for Real-Time Transaction-Based Software System Applications.,1992,2,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke2.html#ItohTH92,https://doi.org/10.1142/S0218194092000026 +Karla Olmos Sanchez,Requirements Engineering Based on Knowledge Management: Theoretical Aspects and a Practical Proposal.,2017,27,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke27.html#SanchezO17,https://doi.org/10.1142/S0218194017500450 +Shi-Kuo Chang,Editorial: a General Framework for Slow Intelligence Systems.,2010,20,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke20.html#Chang10,https://doi.org/10.1142/S0218194010004578 +Eun Sook Cho,A Domain Analysis And Modeling Methodology For Component Development.,2004,14,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke14.html#ChoKR04,https://doi.org/10.1142/S0218194004001580 +Ngoc Thanh Nguyen,Guest Editors' Introduction.,2008,18,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke18.html#NguyenS08,https://doi.org/10.1142/S0218194008003830 +Samira Sadaoui,Generalization and Instantiation for Component Reuse.,2006,16,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke16.html#SadaouiY06,https://doi.org/10.1142/S0218194006002768 +Bixin Li,Generating Test Cases of Composite Services Based on OWL-S and eh-CPN.,2010,20,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke20.html#LiJQC10,https://doi.org/10.1142/S0218194010004955 +Jeffrey J. P. Tsai,Debugging Logic-Based Requirements Specifications for Safety-Critical Systems - a FRORL Approach.,1994,4,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke4.html#TsaiLN94,https://doi.org/10.1142/S0218194094000118 +Kiyoshi Honda,Generalized Software Reliability Model Considering Uncertainty and Dynamics: Model and Applications.,2017,27,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke27.html#HondaWF17,https://doi.org/10.1142/S021819401750036X +Can Bozdogan,EMITS: An Experience Management System for IT Management Support.,2015,25,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke25.html#BozdoganZZ15,https://doi.org/10.1142/S0218194015400197 +Luqi,How to Combine Nonmonotonic Logic and Rapid Prototyping to Help Maintain Software.,1995,5,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke5.html#LuqiC95,https://doi.org/10.1142/S021819409500006X +Mark W. Perlin,Transforming Conjunctive Match into Rete: a Call-Graph Caching Approach.,1991,1,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke1.html#Perlin91,https://doi.org/10.1142/S0218194091000263 +Masahiro Nakano,Crème: an Automatic Invariant Prover of Behavioral Specifications.,2007,17,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke17.html#NakanoONF07,https://doi.org/10.1142/S0218194007003458 +Xiaoxian Yang,A Novel Framework of Using Petri Net to Timed Service Business Process Modeling.,2016,26,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke26.html#YangYX16,https://doi.org/10.1142/S0218194016400052 +Jianfu Zhang,Activity Based CIM Modeling and Transformation for Business Process Systems.,2010,20,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke20.html#ZhangFWYC10,https://doi.org/10.1142/S0218194010004736 +Mahdi Bashari,Dynamic Software Product Line Engineering: A Reference Framework.,2017,27,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke27.html#BashariBD17,https://doi.org/10.1142/S0218194017500085 +Beata Czarnacka-Chrobot,Rationalization of Business Software Systems Development and enhancement Projects Investment Decisions on the Basis of Functional Size Measurement.,2013,23,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke23.html#Czarnacka-Chrobot13,https://doi.org/10.1142/S0218194013500228 +Ulrich Geske,Representing COBOL in Prolog - towards Program Comprehension and Reengineering.,1996,6,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke6.html#GeskeN96,https://doi.org/10.1142/S0218194096000065 +Vladimir S. Kazantsev,"The ""kvazar"" Package for Pattern Recognition and its Applications.",1993,3,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke3.html#Kazantsev93,https://doi.org/10.1142/S0218194093000215 +Hui-Ngo Goh,Automatic Ontology Construction in Fiction-Based Domain.,2011,21,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke21.html#GohKSR11,https://doi.org/10.1142/S0218194011005621 +Gerald C. Gannod,Facilitating the Maintenance of Safety-Critical Systems.,1994,4,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke4.html#GannodC94,https://doi.org/10.1142/S0218194094000106 +Tatsuo Nakajima,Middleware for Building Adaptive Migratory Continuous Media Applications.,2001,11,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke11.html#NakajimaA01,https://doi.org/10.1142/S0218194001000438 +Jouni Similä,Bootstrap: a Software Process Assessment and Improvement Methodology.,1995,5,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke5.html#SimilaKK95,https://doi.org/10.1142/S0218194095000277 +Zhenyu Chen 0001,Using Program Slicing to Improve the Efficiency and Effectiveness of Cluster Test Selection.,2011,21,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke21.html#ChenDZXQ11,https://doi.org/10.1142/S0218194011005487 +Zili Zhang,Guest Editors' Introduction.,2010,20,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke20.html#ZhangC10,https://doi.org/10.1142/S0218194010005031 +Esteban Robles Luna,Towards Composable Location Models in Ubiquitous Computing Applications.,2010,20,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke20.html#LunaRG10,https://doi.org/10.1142/S0218194010004979 +Jesse Davis,Method Of Interaction In A Modular Architecture For Sensor Systems (Mass).,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#DavisSE05,https://doi.org/10.1142/S0218194005002099 +Haiping Xu,Guest Editors' Introduction.,2014,24,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke24.html#XuGBR14,https://doi.org/10.1142/S0218194014020021 +Renée J. Miller,Mining for Program Structure.,1999,9,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke9.html#MillerG99,https://doi.org/10.1142/S0218194099000280 +Liwu Li 0001,Use Case Patterns.,2002,12,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke12.html#Li02,https://doi.org/10.1142/S0218194002000810 +Ratko Orlandic,Preventing Mismatch of Homogeneous Components in the Design of Software Architecture.,2001,11,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke11.html#OrlandicP01,https://doi.org/10.1142/S0218194001000761 +Shi-Kuo Chang,Guest Editors' Introduction.,2018,28,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke28.html#ChangL18,https://doi.org/10.1142/S0218194018020011 +Daniel E. Cooke,Guest Editors' Introduction.,1998,8,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke8.html#CookeU98,http://ejournals.wspc.com.sg/ijseke/08/0801/S0218194098000029.html +Yingcai Wu,Guest Editors' Introduction.,2015,25,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke25.html#WuN0B15,https://doi.org/10.1142/S0218194015020027 +Rossella Aiello,A Hierarchical Measurement Framework for the Evaluation of Automated Business Processes.,2002,12,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke12.html#AielloEN02,https://doi.org/10.1142/S0218194002000950 +Filomena Ferrucci,On the Refinement of Logic Specifications.,1992,2,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke2.html#FerrucciNPOT92,https://doi.org/10.1142/S0218194092000208 +Ralph Guderlei,Towards Automatic Testing of Imaging Software by Means of Random and Metamorphic Testing.,2007,17,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke17.html#GuderleiM07,https://doi.org/10.1142/S0218194007003471 +Raul Garcia-Castro,Rdf(S) Interoperability Results for Semantic Web Technologies.,2009,19,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke19.html#Garcia-CastroG09,https://doi.org/10.1142/S0218194009004556 +Giorgio Bruno,Modeling and Developing Real-Time Concurrent Applications.,1996,6,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke6.html#BrunoA96,https://doi.org/10.1142/S0218194096000181 +Riccardo Distasi,HEAT: Hierarchical Entropy Approach for Texture Indexing in Image Databases.,2002,12,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke12.html#DistasiNV02,https://doi.org/10.1142/S0218194002001013 +Imran A. Zualkernan,Object-Oriented Analysis as Design: a Case Study.,1992,2,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke2.html#ZualkernanTJWD92,https://doi.org/10.1142/S0218194092000233 +Rajender Nath,A Software Component Representation Model for Compositional Reuse.,2008,18,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke18.html#NathV08,https://doi.org/10.1142/S0218194008003544 +Engin Kirda,A Service Architecture for Mobile Teamwork.,2003,13,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke13.html#KirdaG03,https://doi.org/10.1142/S0218194003001342 +Thu-Thuy Do,An Evolvable Operating System for Wireless Sensor Networks.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#DoKLKHPLP05,https://doi.org/10.1142/S0218194005002026 +Marut Buranarach,OAM: An Ontology Application Management Framework for Simplifying Ontology-Based Semantic Web Application Development.,2016,26,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke26.html#BuranarachSTRRW16,https://doi.org/10.1142/S0218194016500066 +Andrian Marcus,Recovery of Traceability Links between Software Documentation and Source Code.,2005,15,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke15.html#MarcusMS05,https://doi.org/10.1142/S0218194005002543 +Fernando Asteasuain,Specification Patterns: Formal and Easy.,2015,25,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke25.html#AsteasuainB15,https://doi.org/10.1142/S0218194015500060 +Danny C. C. Poo,An Object-Oriented Software Requirements Analysis Method.,1992,2,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke2.html#Poo92,https://doi.org/10.1142/S0218194092000087 +David Garlan,The Radar Architecture for Personal Cognitive Assistance.,2007,17,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke17.html#GarlanS07,https://doi.org/10.1142/S0218194007003033 +Andreas Doblander,An Evaluation of Model-Based Software Synthesis from Simulink Models for Embedded Video Applications.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#DoblanderGRS05,https://doi.org/10.1142/S0218194005002038 +Thomas Hill,"BOOK REVIEW: ""Press on: Principles of Interaction Programming"" by Harold Thimbleby.",2010,20,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke20.html#Hill10,https://doi.org/10.1142/S0218194010005080 +Zili Zhang,Guest Editors' Introduction.,2014,24,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke24.html#ZhangJ14,https://doi.org/10.1142/S0218194014020033 +Gregor Engels,Guest Editors' Introduction.,2004,14,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke14.html#EngelsS04,https://doi.org/10.1142/S021819400400183X +W. Eric Wong,Redesigning Legacy Systems Into The Object-Oriented Paradigm.,2004,14,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke14.html#WongL04,https://doi.org/10.1142/S0218194004001634 +Chi-Lu Yang,An Analysis of the Root Causes of Defects Injected into the Software by the Software Team: an Industrial Study of the Distributed Health-Care System.,2013,23,International Journal of Software Engineering and Knowledge Engineering,9,db/journals/ijseke/ijseke23.html#YangCC13,https://doi.org/10.1142/S0218194013500393 +Bernd J. Krämer,Distributed Systems Management Software-in-the-Loop.,1998,8,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke8.html#KramerK98,https://doi.org/10.1142/S0218194098000066 +Witold Pedrycz,Knowledge Management and Semantic Modeling: a Role of Information Granularity.,2013,23,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke23.html#Pedrycz13,https://doi.org/10.1142/S0218194013400019 +Jack Campin,Specifying Active Database Systems in an Object-Oriented Framework.,1997,7,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke7.html#CampinPW97,https://doi.org/10.1142/S0218194097000059 +Gordon H. Huang,Guest Editors' Introduction.,2008,18,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke18.html#HuangCZ08,https://doi.org/10.1142/S0218194008003726 +Dominik Stein,Join Point Designation Diagrams: a Graphical Representation of Join Point Selections.,2006,16,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke16.html#SteinHU06,https://doi.org/10.1142/S0218194006002811 +Chang-Hai Jiang,An Intelligent Control Architecture for Adaptive Service-Based Software Systems.,2009,19,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke19.html#JiangHCHY09,https://doi.org/10.1142/S0218194009004337 +Yi Cheng Ren,Leveraging Active-Guided Evolutionary Games for Adaptive and Stable Deployment of DVFS-Aware Cloud Applications.,2015,25,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke25.html#RenSOH15,https://doi.org/10.1142/S0218194015400239 +Daniel E. Cooke,On the Development of a Method to Synthesize Programs from Requirements Specifications.,1991,1,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke1.html#CookeG91,https://doi.org/10.1142/S0218194091000056 +Gijeong Kim,Seamless QoE Support for Mobile Cloud Services Using IEEE802.21 MIH and the GENI Future Internet Framework.,2014,24,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke24.html#KimLL14,https://doi.org/10.1142/S0218194014400063 +Guy Ravitz,Integrating Multimedia Semantic Content Analysis of YouTube Videos with Hurricane Wind Analysis for Public Situation Awareness and outreach.,2010,20,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke20.html#RavitzSP10,https://doi.org/10.1142/S0218194010004670 +Xiaoming Zhang,A Method for Materials Knowledge Extraction from HTML Tables Based on Sibling Comparison.,2016,26,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke26.html#ZhangLZW16,https://doi.org/10.1142/S0218194016500303 +Jun Yao,High Performance Mac Unit Using Modified Sign Extension Algorithm and A New High-Speed Alu in Dsp-Core.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#YaoCL05,https://doi.org/10.1142/S0218194005002002 +Alex Delis,Ada Reusability and System Design Assessment Using the Data Binding Tool.,1993,3,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke3.html#DelisB93,https://doi.org/10.1142/S0218194093000148 +Bran Selic,A Quality of Service Framework for Object-Oriented Architectures.,1998,8,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke8.html#Selic98,https://doi.org/10.1142/S0218194098000170 +Norman Wilde,Designing Knowledge-Base Tools for Program Comprehension: a Comparison of EDATS and IMCA.,1996,6,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke6.html#WildeDC96,https://doi.org/10.1142/S0218194096000284 +Wei Sun 0001,Abstract Logic Tree Based Framework for Component Based Solution Composition Design and Execution.,2007,17,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke17.html#SunZLT07,https://doi.org/10.1142/S0218194007003227 +Hans-Jörg Kreowski,Nested Graph Transformation Units.,1997,7,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke7.html#KreowskiKS97,https://doi.org/10.1142/S0218194097000278 +Stephen G. MacDonell,Industry Practices in Project Management for Multimedia Information Systems.,1999,9,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke9.html#MacdonellFW99,https://doi.org/10.1142/S0218194099000413 +Weina Ma,Knowledge-Driven User Behavior Pattern Discovery for System Security Enhancement.,2016,26,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke26.html#MaSB16,https://doi.org/10.1142/S0218194016500169 +Alan Liu,Guest Editor's Introduction.,2008,18,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke18.html#Liu08,https://doi.org/10.1142/S0218194008003611 +Ivana Turnu,Entropy of some CK Metrics to Assess Object-Oriented Software Quality.,2013,23,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke23.html#TurnuCMT13,https://doi.org/10.1142/S0218194013500034 +Stéphane S. Somé,Formalization of Textual Use Cases Based on Petri Nets.,2010,20,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke20.html#Some10,https://doi.org/10.1142/S0218194010004931 +Shi-Kuo Chang,Guest Editors' Introduction.,2012,22,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke22.html#ChangGN12,https://doi.org/10.1142/S0218194012020032 +Jerry Gao,Guest Editors' Introduction.,2007,17,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke17.html#GaoB07,https://doi.org/10.1142/S0218194007003288 +Rubing Huang,Prioritization of Combinatorial Test Cases by Incremental Interaction Coverage.,2013,23,International Journal of Software Engineering and Knowledge Engineering,10,db/journals/ijseke/ijseke23.html#HuangXTCLC13,https://doi.org/10.1142/S0218194013500459 +Myriam Noureddine,Conceptual Model of the Physical Structure of Manufacturing Systems.,2006,16,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke16.html#Noureddine06,https://doi.org/10.1142/S0218194006002914 +Mariusz Pelc,Adaptation Architecture for Self-Healing Computer Systems.,2017,27,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke27.html#PelcG17,https://doi.org/10.1142/S0218194017500292 +Doina Tatar,Entailment-Based Linear Segmentation in Summarization.,2009,19,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke19.html#TatarMLT09,https://doi.org/10.1142/S0218194009004520 +Sangkyun Kim,Guest Editors' Introduction.,2010,20,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke20.html#KimKK10,https://doi.org/10.1142/S0218194010004608 +Richard Lai,Analysing the Performance of a Resource Reservation Protocol Specification Using a GSPN Method.,2010,20,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke20.html#LaiT10,https://doi.org/10.1142/S0218194010004815 +George Spanoudakis,Evidential Diagnosis Of Inconsistencies In Object-Oriented Designs.,2004,14,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke14.html#SpanoudakisKD04,https://doi.org/10.1142/S0218194004001610 +Alain Abran,Guest Editor's Introduction.,2013,23,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke23.html#Abran13,https://doi.org/10.1142/S0218194013020026 +Daniel Chivers,Improving Search-Based Schematic Layout by Parameter Manipulation.,2015,25,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke25.html#ChiversR15,https://doi.org/10.1142/S0218194015500138 +Arun Sharma,Empirical Evaluation and Validation of Interface Complexity Metrics for Software Components.,2008,18,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke18.html#SharmaKG08,https://doi.org/10.1142/S0218194008003957 +Mohsin Shaikh,Aspect Oriented Re-engineering of Legacy Software Using Cross-Cutting Concern Characterization and Significant Code Smells Detection.,2016,26,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke26.html#ShaikhL16,https://doi.org/10.1142/S0218194016500212 +Sankyu Park,A Framework for Multi-Agent Systems with Multi-Modal User Interfaces in Distributed Computing Environments.,1997,7,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke7.html#ParkCK97,https://doi.org/10.1142/S0218194097000217 +Wendong Zhang,A Hybrid Elastic Net Method for Solving the Traveling Salesman Problem.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#ZhangB05,https://doi.org/10.1142/S0218194005002233 +Gwan-Hwan Hwang,Reachability Testing: an Approach to Testing Concurrent Software.,1995,5,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke5.html#HwangTH95,https://doi.org/10.1142/S0218194095000241 +Vaclav Rajlich,Using the Web for Software Annotations.,1999,9,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke9.html#RajlichV99,https://doi.org/10.1142/S021819409900005X +Ching-Pao Chang,Integrating Action-Based Defect Prediction to Provide Recommendations for Defect Action Correction.,2013,23,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke23.html#Chang13,https://doi.org/10.1142/S0218194013500022 +Rod Hilton,Predicting Code Hotspots in Open-Source Software from Object-Oriented Metrics Using Machine Learning.,2018,28,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke28.html#HiltonG18,https://doi.org/10.1142/S0218194018500110 +Pora Kim,Intelligent Positioning and Optimal Diversity Schemes for Mobile Agents in Ubiquitous Networks.,2008,18,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke18.html#KimC08,https://doi.org/10.1142/S0218194008003817 +Shu-Chuan Lo,Application Of Clustering Techniques To Software Component Architecture Design.,2004,14,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke14.html#LoC04,https://doi.org/10.1142/S0218194004001701 +Jacob L. Cybulski,Interactive Exploration of Data with Visual Metaphors.,2015,25,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke25.html#CybulskiKS15,https://doi.org/10.1142/S0218194015400082 +Joakim Pernstål,A Study Investigating Challenges in the Interface between Product Development and manufacturing in the Development of Software-Intensive Automotive Systems.,2012,22,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke22.html#PernstalMG12,https://doi.org/10.1142/S0218194012500271 +Teng-Tiow Tay,Hw/Sw Co-Design for Low Power Arithmetic and Logic Units.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#TayNP05,https://doi.org/10.1142/S0218194005002014 +Shih-Chien Chou,Association-Based Information Flow Control In Object-Oriented Systems.,2004,14,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke14.html#ChouW04,https://doi.org/10.1142/S0218194004001658 +K. Ganesan,Verifying Requirements Through Mathematical Modelling and Animation.,2000,10,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke10.html#GanesanKA00,https://doi.org/10.1142/S0218194000000092 +Abhijeet Ramesh Thakare,Comparative Search of Entities.,2017,27,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke27.html#ThakareD17,https://doi.org/10.1142/S0218194017500498 +Yong Qin,An Online Quantified Safety Assessment Method for Train Service State Based on Safety Region Estimation and Hybrid Intelligence Technologies.,2015,25,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke25.html#QinYZJC15,https://doi.org/10.1142/S0218194015400185 +Sebastian Engell,Verification of Embedded Supervisory Controllers Considering Hybrid Plant Dynamics.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#EngellLS05,https://doi.org/10.1142/S021819400500204X +Woojin Lee,An Attribute-Based Development Framework of Node Software for Various Operating Systems in Sensor Network Environment.,2016,26,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke26.html#LeeCSK16,https://doi.org/10.1142/S0218194016500364 +Nachai Limsettho,Unsupervised Bug Report Categorization Using Clustering and Labeling Algorithm.,2016,26,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke26.html#LimsetthoHMM16,https://doi.org/10.1142/S0218194016500352 +Fatih Yücalar,Regression Analysis Based Software Effort Estimation Method.,2016,26,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke26.html#YucalarKBO16,https://doi.org/10.1142/S0218194016500261 +Eleni Tavanidou,Etifis: An Innovative e-Forecasting Web Application.,2003,13,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke13.html#TavanidouNMA03,https://doi.org/10.1142/S0218194003001226 +Frank Elberzhager,Focusing Testing by using Inspection and Product Metrics.,2013,23,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke23.html#ElberzhagerKMA13,https://doi.org/10.1142/S0218194013400093 +Peter Heimann,Graph-Based Software Process Management.,1997,7,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke7.html#HeimannKWJ97,https://doi.org/10.1142/S0218194097000254 +Scott A. DeLoach,Multiagent Systems Engineering.,2001,11,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke11.html#DeLoachWS01,https://doi.org/10.1142/S0218194001000542 +Frédéric Schmidt,Multi-Objective Reconstruction of Software Architecture.,2018,28,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke28.html#SchmidtMC18,https://doi.org/10.1142/S0218194018500262 +Jerry Gao,Guest Editors' Introduction.,2011,21,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke21.html#GaoMB11,https://doi.org/10.1142/S0218194011005530 +Kurt Schneider,Application of Graph Grammars in an Educational Software Engineering Game: A Case Study in Pragmatic Adoption.,1997,7,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke7.html#Schneider97,https://doi.org/10.1142/S0218194097000242 +Pankaj K. Garg,Matisse: a Knowledge-Based Team Programming Environment.,1994,4,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke4.html#GargPBDIWF94,https://doi.org/10.1142/S0218194094000039 +Omid Banyasad,Design and Implementation of an Editor/Interpreter for a Visual Logic Programming Language.,2013,23,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke23.html#BanyasadC13,https://doi.org/10.1142/S0218194013500216 +Tong Gao,A Repository for Component-based Embedded Software Development.,2006,16,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke16.html#GaoMYKB06,https://doi.org/10.1142/S0218194006002872 +Huanjing Wang,Metric Selection for Software Defect Prediction.,2011,21,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke21.html#WangKHG11,https://doi.org/10.1142/S0218194011005256 +Jason T. L. Wang,Texpros: an Intelligent Document Processing System.,1992,2,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke2.html#WangN92,https://doi.org/10.1142/S0218194092000099 +Yunxiang Zheng,Double-State Based Business Process Description Model and its Operational Semantics.,2012,22,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke22.html#ZhengZZW12,https://doi.org/10.1142/S0218194012500210 +Amir A. Khwaja,A Synthesis of Evaluation Criteria for Software Specifications and Specification Techniques.,2002,12,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke12.html#KhwajaU02,https://doi.org/10.1142/S0218194002001062 +Dong-Joo Park,Spy-Tec+ : an Integrated Index Structure for k-Nearest Neighbor Queries with Semantic Predicates in Multimedia Database.,2011,21,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke21.html#ParkL11,https://doi.org/10.1142/S0218194011005529 +Yan Zheng,A Short-Text Oriented Clustering Method for Hot Topics Extraction.,2015,25,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke25.html#ZhengMX15,https://doi.org/10.1142/S0218194015400161 +Brigitte Jörg,Connecting Closed World Research Information Systems through the Linked Open Data Web.,2012,22,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke22.html#JorgRSDJHREVB12,https://doi.org/10.1142/S0218194012400074 +Martín López Nores,Procedures and Algorithms for Continuous Integration in an Agile Specification Environment.,2009,19,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke19.html#NoresADBRVGC09,https://doi.org/10.1142/S0218194009004106 +Yan-Nong Huang,Fact Updates in Logic Databases.,1995,5,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke5.html#HuangDH95,https://doi.org/10.1142/S021819409500023X +Mira Kajko-Mattsson,Data Mining For Validation In Software Engineering: An Example.,2004,14,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke14.html#Kajko-MattssonC04,https://doi.org/10.1142/S0218194004001725 +John W. Coffey,A Semi-Automated Approach to the Recovery of SOA System Structure from Low-Level Artifacts.,2016,26,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke26.html#CoffeyRWB16,https://doi.org/10.1142/S0218194016500030 +Mehdi Noorian,Addressing Non-Functional Properties in Feature Models: A Goal-Oriented Approach.,2014,24,International Journal of Software Engineering and Knowledge Engineering,10,db/journals/ijseke/ijseke24.html#NoorianABD14,https://doi.org/10.1142/S0218194014400154 +Robert Godin,Applying Concept Formation Methods to Software Reuse.,1995,5,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke5.html#GodinMMSF95,https://doi.org/10.1142/S0218194095000071 +Jonathan Lee,Dynamic Service Composition: a Discovery-Based Approach.,2008,18,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke18.html#LeeMLLW08,https://doi.org/10.1142/S0218194008003635 +Yuchang Mo,A New Approach to Verify Statechart Specifications for Reactive Systems.,2008,18,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke18.html#MoY08,https://doi.org/10.1142/S0218194008003908 +J. C. Mar,Model-Based Clustering In Gene Expression Microarrays: An Application To Breast Cancer Data.,2003,13,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke13.html#MarM03,https://doi.org/10.1142/S0218194003001482 +Jia Hui Ng,An Embedded System to Support Tele-Medical Activity.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#NgTH05,https://doi.org/10.1142/S0218194005002269 +Wagner Gadêa Lorenz,Activity-Based Software Process Lines Tailoring.,2014,24,International Journal of Software Engineering and Knowledge Engineering,9,db/journals/ijseke/ijseke24.html#LorenzBFP14,https://doi.org/10.1142/S0218194014500429 +Everton Note Narciso,Test Case Selection: A Systematic Literature Review.,2014,24,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke24.html#NarcisoDN14,https://doi.org/10.1142/S0218194014500259 +Richard Tzong-Han Tsai,Using Contextual Information to Clarify Cross-Species Gene Normalization Ambiguity.,2010,20,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke20.html#TsaiL10,https://doi.org/10.1142/S0218194010004694 +A. I. Tyatushkin,The Program System for Solving Optimal Control Problems with Phase Constraints.,1993,3,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke3.html#TyatushkinZE93,https://doi.org/10.1142/S0218194093000264 +Chi-Lun Liu,A System Maintenance Process for Faciliating Requests Management and Conflicts Resolution.,2010,20,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke20.html#LiuY10,https://doi.org/10.1142/S0218194010004992 +Rehab El-Kharboutly,Efficient Reliability Analysis of Concurrent Software Applications Considering Software Architecture.,2014,24,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke24.html#El-KharboutlyG14,https://doi.org/10.1142/S0218194014500028 +Angela Guercio,Guest Editors' Introduction.,2007,17,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke17.html#GuercioA07,https://doi.org/10.1142/S0218194007003355 +Mohammad Shafkat Amin,An Efficient Web-Based Wrapper and Annotator for Tabular Data.,2010,20,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke20.html#AminJ10,https://doi.org/10.1142/S0218194010004657 +Vincent C. Hu,Model Checking for Verification of Mandatory Access Control Models and Properties.,2011,21,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke21.html#HuKXH11,https://doi.org/10.1142/S021819401100513X +Carlo Gabriel Porto Bellini,Measurement in Software Engineering: from the Roadmap to the Crossroads.,2008,18,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke18.html#BelliniPB08,https://doi.org/10.1142/S021819400800357X +Haiping Wu,Madd Operation Aware Redundancy Elimination.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#WuHMG05,https://doi.org/10.1142/S0218194005002208 +,Guest Editors' Introduction.,1997,7,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke7.html#X97,http://ejournals.wspc.com.sg/ijseke/07/0702/S0218194097000114.html +óscar Dieste Tubío,Integrated Software Engineering and Knowledge Engineering Teaching Experiences.,2000,10,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke10.html#DiesteJML00,https://doi.org/10.1142/S021819400000016X +Raymond T. Yeh,System Development as a Wicked Problem.,1991,1,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke1.html#Yeh91,https://doi.org/10.1142/S0218194091000123 +Jae Hun Choi,An Object-Based Approach to Managing Domain Specific Thesauri: Semiautomatic Thesaurus Construction and Query-Based Browsing.,2002,12,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke12.html#ChoiYL02,https://doi.org/10.1142/S0218194002000986 +Yanhui Wang,An Optimization Method for Train Seat Inventory Control.,2018,28,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke28.html#WangLLS18,https://doi.org/10.1142/S0218194018400077 +Zhang Hui,Utilization of Dependence and Weight to Improve Fault Localization Method of Regression Test Cases.,2017,27,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke27.html#Hui17,https://doi.org/10.1142/S0218194017500152 +Arturo Zambrano,A Fine Grained Aspect Coordination Mechanism.,2010,20,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke20.html#ZambranoGF10,https://doi.org/10.1142/S021819401000502X +Mark Gerken,Guest Editors' Introduction - Best Papers from SEKE'98.,2000,10,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke10.html#GerkenD00,https://doi.org/10.1142/S021819400000002X +Gregor Engels,A Combined Reference Model- and View-Based Approach to System Specification.,1997,7,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke7.html#EngelsHTE97,https://doi.org/10.1142/S0218194097000266 +I-Hsin Chou,An Object-Oriented Security Knowledge Framework for the Nuclear Safety System Project.,2010,20,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke20.html#ChouF10,https://doi.org/10.1142/S0218194010004797 +Xiaobing Sun,Code Comment Quality Analysis and Improvement Recommendation: An Automated Approach.,2016,26,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke26.html#SunGLDLL16,https://doi.org/10.1142/S0218194016500339 +Sung Ly,Extendable and Dynamically Reconfigurable Multi-Protocol Firewall.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#LyB05,https://doi.org/10.1142/S0218194005001926 +Jianguo Lu,Xml Schema Matching.,2007,17,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke17.html#LuWW07,https://doi.org/10.1142/S0218194007003446 +Dongfeng Wang,A Systematic Design Method For High Quality Process-Control Systems Development.,2004,14,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke14.html#WangBY04,https://doi.org/10.1142/S0218194004001555 +M. Teresa Villalba,Software Quality Evaluation for Security COTS Products.,2010,20,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke20.html#VillalbaSCM10,https://doi.org/10.1142/S0218194010004633 +Motoshi Saeki,Enhancing Goal-Oriented Security Requirements Analysis using Common Criteria-Based Knowledge.,2013,23,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke23.html#SaekiHK13,https://doi.org/10.1142/S0218194013500174 +Oscar Mondragon,Generating Properties for Runtime Monitoring from Software Specification Patterns.,2007,17,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke17.html#MondragonGRMS07,https://doi.org/10.1142/S021819400700315X +Ali Kazemi,Absim: an Automated Business Service Identification Method.,2013,23,International Journal of Software Engineering and Knowledge Engineering,9,db/journals/ijseke/ijseke23.html#KazemiHS13,https://doi.org/10.1142/S0218194013500411 +Yen-Chieh Huang,Developing Web Applications Based on Model Driven Architecture.,2014,24,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke24.html#HuangC14,https://doi.org/10.1142/S0218194014500077 +Hongzhen Xu,A Specification and Detection Approach for Parallel Evolution Conflicts of Software Architectures.,2017,27,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke27.html#XuSL17,https://doi.org/10.1142/S0218194017500139 +José Luis álvarez Macías,Data Mining For The Management Of Software Development Process.,2004,14,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke14.html#MaciasMS04,https://doi.org/10.1142/S0218194004001841 +Filomena Ferrucci,Grammatical Inference for the Automatic Generation of Visual Languages.,1999,9,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke9.html#FerrucciV99,https://doi.org/10.1142/S0218194099000267 +Chi-Wai Fung,Advanced Conceptual Clustering and Associated Querying Facilities in Object-Oriented Databases.,1999,9,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke9.html#FungL99,https://doi.org/10.1142/S0218194099000218 +Takao Shimomura,Extensible Syntax-Oriented Verifier with Context-Dependent Recursive Verification.,2010,20,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke20.html#ShimomuraCT10,https://doi.org/10.1142/S0218194010004700 +Calin Eugen Nicolae Gal-Chis,MultiCoS - A Requirements Engineering Tool.,2018,28,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke28.html#Gal-ChisP18,https://doi.org/10.1142/S021819401850002X +Dan Tofan,Validating and Improving a Knowledge Acquisition Approach for Architectural Decisions.,2014,24,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke24.html#TofanAG14,https://doi.org/10.1142/S0218194014500211 +Fernando Ramos-Quintana,A Methodology for Modeling Interactions in Cooperative Information Systems Using Coloured Petri Nets.,2002,12,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke12.html#Ramos-QuintanaSC02,https://doi.org/10.1142/S0218194002001104 +Xiaoyong Li 0003,Pg-Trust: a Self-Adaptive and Scalable Trust Computing Model for Large-Scale Peer-to-Peer Grid Computing.,2011,21,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke21.html#LiZ11,https://doi.org/10.1142/S0218194011005451 +Jihyun Lee,A Comparison of Software Product Line Scoping Approaches.,2010,20,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke20.html#LeeKL10,https://doi.org/10.1142/S021819401000489X +Dirk Westhoff,An Optimistic Third Party Protocol to Protect a Mobile Agent's Binary Code,2001,11,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke11.html#Westhoff01,https://doi.org/10.1142/S0218194001000700 +Yufeng Li,Research Notes: Distributed Shadow for Router Security Defense.,2018,28,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke28.html#LiTQZ18,https://doi.org/10.1142/S021819401840003X +Michael P. Stovsky,Access Control Strategies for Coordinating Teams of Software Engineers.,1991,1,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke1.html#StovskyW91,https://doi.org/10.1142/S021819409100007X +C. Chandra,An Evaluation of Knowledge Engineering Approaches to the Maintenance of Evolutionary Software.,1998,8,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke8.html#ChandraR98,https://doi.org/10.1142/S0218194098000030 +Gregor Engels,Guest Editors' Introduction.,1997,7,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke7.html#EngelsS97,https://doi.org/10.1142/S0218194097000230 +W. Eric Wong,Guest Editors' Introduction.,2006,16,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke16.html#WongC06,https://doi.org/10.1142/S0218194006002859 +Fengzhong Zou,Improving Software Reliability Modeling Using Machine Learning Techniques.,2008,18,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke18.html#ZouD08,https://doi.org/10.1142/S0218194008003969 +Dong Ha Kim,Very High Data Rate Support for Mobile Cloud Services Using SDN-Based Heterogeneous Carrier Aggregation.,2014,24,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke24.html#KimKOLL14,https://doi.org/10.1142/S021819401440004X +Sathit Nakkrasae,An Rpcl-Based Indexing Approach For Software Component Classification.,2004,14,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke14.html#NakkrasaeS04,https://doi.org/10.1142/S0218194004001774 +Walt Scacchi,Understanding Software Productivity: towards a Knowledge-Based Approach.,1991,1,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke1.html#Scacchi91,https://doi.org/10.1142/S0218194091000214 +Juan Jose Cuadrado-Gallego,Applying Visual Learning in the Teaching of Software Measurement Concepts.,2011,21,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke21.html#Cuadrado-GallegoHPM11,https://doi.org/10.1142/S021819401100530X +Veli Hakkoymaz,User Control and Dynamic Reorganization of Multimedia Presentations During Playout.,1997,7,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke7.html#HakkoymazZD97,https://doi.org/10.1142/S0218194097000229 +Jonathan Lee 0001,Enhancing the Software Life Cycle of Knowledge-Based Systems Using a Task-Based Specification Methodology.,1993,3,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke3.html#LeeY93,https://doi.org/10.1142/S0218194093000021 +Gerardo Canfora,Iesem: Integrated Environment for Software Evolution Management.,1995,5,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke5.html#CanforaLV95,https://doi.org/10.1142/S0218194095000046 +Sjouke Mauw,Language-Driven System Design.,2004,14,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke14.html#MauwWW04,https://doi.org/10.1142/S0218194004001828 +Negar Koochakzadeh,Semi-Supervised Dynamic Classification for Intrusion Detection.,2010,20,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke20.html#KoochakzadehKJLAR10,https://doi.org/10.1142/S0218194010004669 +Pierfrancesco Bellini,IPR Centered Institutional Service and Tools for Content and Metadata Management.,2015,25,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke25.html#BelliniBNP15,https://doi.org/10.1142/S0218194015500242 +Yi Miao,A Clustering-Based Strategy to Identify Coincidental Correctness in Fault Localization.,2013,23,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke23.html#MiaoCLZZ13,https://doi.org/10.1142/S0218194013500186 +Santi Caballé,Enhancing Knowledge Management in Online Collaborative Learning.,2010,20,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke20.html#CaballeDXC10,https://doi.org/10.1142/S0218194010004839 +Haralambos Mouratidis,Secure Tropos: a Security-Oriented Extension of the Tropos Methodology.,2007,17,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke17.html#MouratidisG07,https://doi.org/10.1142/S0218194007003240 +Mike P. Papazoglou,The Organizational Impact of Integrating Multiple Tools.,1991,1,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke1.html#PapazoglouMB91,https://doi.org/10.1142/S0218194091000159 +A. P. Cherenkov,Knowledge Aspects of Resource Allocation Problems with Saturation.,1997,7,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke7.html#Cherenkov97,https://doi.org/10.1142/S0218194097000138 +Markus Borschbach,A Tool For Analyzing Magnetoencephalography-Data Based On Different Artificial Neural Networks.,2003,13,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke13.html#BorschbachLN03,https://doi.org/10.1142/S0218194003001457 +Chin-Chen Chang 0001,A Feature-Oriented Copyright Owner Proving Technique for Still Images.,2002,12,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke12.html#ChangHH02,https://doi.org/10.1142/S0218194002000937 +Andojo Ongkodjojo Ong,Pareto Simulated Annealing (Sa)-Based Multi-Objective Optimization for Mems Design and Application.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#OngT05,https://doi.org/10.1142/S021819400500221X +Grigoris Antoniou,Modularity and Correctness for Logic Programs and Knowledge Bases.,1994,4,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke4.html#Antoniou94,https://doi.org/10.1142/S0218194094000131 +Steven Wartik,Criteria for Comparing Reuse-Oriented Domain Analysis Approaches.,1992,2,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke2.html#WartikP92,https://doi.org/10.1142/S0218194092000191 +Timothy Bourke,Formal Models in Industry Standard Tools: an Argos Block within Simulink.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#BourkeS05,https://doi.org/10.1142/S0218194005002300 +Kwong-Luck Tan,Sleep Monitoring Devices Using Electric Field (E-Field) Mattress for Children with Eczema.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#TanTB05,https://doi.org/10.1142/S0218194005002221 +Heung Seok Chae,An Approach to Checking Behavioral Compatibility between Web Services.,2008,18,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke18.html#ChaeLB08,https://doi.org/10.1142/S0218194008003647 +George Spanoudakis,Guest Editors' Introduction.,2005,15,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke15.html#SpanoudakisZ05,https://doi.org/10.1142/S0218194005002579 +Stefan Biffl,Systematic Knowledge Engineering: Building Bodies of Knowledge from Published Research.,2014,24,International Journal of Software Engineering and Knowledge Engineering,10,db/journals/ijseke/ijseke24.html#BifflKREW14,https://doi.org/10.1142/S021819401440018X +Don S. Batory,Implementing a Domain Model for Data Structures.,1992,2,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke2.html#BatorySS92,https://doi.org/10.1142/S021819409200018X +Nenad Medvidovic,The Role of Middleware in Architecture-Based Software Development.,2003,13,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke13.html#MedvidovicDT03,https://doi.org/10.1142/S0218194003001330 +Bernhard Westfechtel,A Graph-Based System for Managing Configurations of Engineering Design Documents.,1996,6,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke6.html#Westfechtel96,https://doi.org/10.1142/S0218194096000235 +Yuting Chen,A Review Approach to Detecting Violations of Consistency between Specification and Program Structures.,2008,18,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke18.html#ChenLW08,https://doi.org/10.1142/S0218194008003994 +W. Eric Wong,Guest Editors' Introduction.,2011,21,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke21.html#WongWK11,https://doi.org/10.1142/S0218194011005244 +Vitus S. W. Lam,Formal Analysis of BPMN Models: a NuSMV-Based Approach.,2010,20,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke20.html#Lam10,https://doi.org/10.1142/S0218194010005079 +Tugkan Tuglular,Input Contract Testing of Graphical User Interfaces.,2016,26,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke26.html#TuglularBL16,https://doi.org/10.1142/S0218194016500091 +Mária Bieliková,An Approach to Automated Building of Software System Configurations.,1999,9,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke9.html#BielikovaN99,https://doi.org/10.1142/S0218194099000061 +Joseph Fong,Translating OODB Method to RDB Routine.,2001,11,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke11.html#FongC01,https://doi.org/10.1142/S0218194001000554 +James H. Cross II,Reverse Engineering Graphical Representations of X Source Code.,1996,6,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke6.html#CrossD96,https://doi.org/10.1142/S0218194096000144 +Martín López Nores,Bringing the Agile Philosophy to Formal Specification Settings.,2006,16,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke16.html#NoresADBRVGC06,https://doi.org/10.1142/S0218194006003075 +Jizhou Zhan,Impact of Software Complexity on Development Productivity.,2012,22,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke22.html#ZhanZZ12,https://doi.org/10.1142/S0218194012500301 +Umut Durak,Ontology-Based Domain Engineering for Trajectory Simulation Reuse.,2009,19,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke19.html#DurakOI09,https://doi.org/10.1142/S0218194009004532 +Pasquale Armenise,A Survey and Assessment of Software Process Representation Formalisms.,1993,3,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke3.html#ArmeniseBGM93,https://doi.org/10.1142/S0218194093000197 +Kang Zhang,Guest Editors: Introduction.,2007,17,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke17.html#ZhangSV07,https://doi.org/10.1142/S0218194007003203 +Fabio Massacci,From Hippocratic Databases to Secure Tropos: a Computer-Aided Re-Engineering Approach.,2007,17,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke17.html#MassacciMZ07,https://doi.org/10.1142/S0218194007003239 +Wolfgang Grieskamp,Action Machines: a Framework for Encoding and Composing Partial Behaviors.,2006,16,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke16.html#GrieskampKT06,https://doi.org/10.1142/S0218194006002963 +Jing zhou Li,A Business Process Centered Software Analysis Method.,2003,13,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke13.html#LiMY03,https://doi.org/10.1142/S021819400300124X +E. A. Mukhachiova,Linear Programming Cutting Problems.,1993,3,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke3.html#MukhachiovaZ93,https://doi.org/10.1142/S0218194093000240 +Hongyu Zhang,A Bayesian Network Approach to Rational Architectural Design.,2005,15,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke15.html#ZhangJ05,https://doi.org/10.1142/S0218194005002488 +Nada A. Dief,An Adaptive Semantic Descriptive Model for Multi-Document Representation to Enhance Generic Summarization.,2017,27,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke27.html#DiefAEe17,https://doi.org/10.1142/S0218194017500024 +Ra'Fat Al-Msie'deen,Automatic Documentation of [Mined] Feature Implementations from Source Code Elements and Use-Case Diagrams with the REVPLINE Approach.,2014,24,International Journal of Software Engineering and Knowledge Engineering,10,db/journals/ijseke/ijseke24.html#Al-MsiedeenHSUV14,https://doi.org/10.1142/S0218194014400142 +Yi-Hsing Chang,A High-Efficiency Knowledge Management System Based on Habitual Domains and Intelligent Agents.,2008,18,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke18.html#ChangY08,https://doi.org/10.1142/S0218194008004021 +Yi Deng,A Framework for the Modeling and Prototyping of Distributed Information Systems.,1991,1,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke1.html#DengC91,https://doi.org/10.1142/S0218194091000172 +Greg Boone,Case and its Challenge for Change.,1991,1,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke1.html#Boone91,https://doi.org/10.1142/S0218194091000147 +Jun Xu 0014,A Firewalling Scheme for Securing MPOA-Based Enterprise Networks.,1999,9,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke9.html#XuS99,https://doi.org/10.1142/S0218194099000115 +Sangkyun Kim,Assessment on Security Risks of Customer Relationship Management Systems.,2010,20,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke20.html#Kim10a,https://doi.org/10.1142/S0218194010004591 +Emal Nasseri,A Model for Predicting Class Movement in an Inheritance Hierarchy.,2011,21,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke21.html#NasseriC11,https://doi.org/10.1142/S021819401100544X +José Eloy Flórez,A Meta-Tool to Support the Development of Knowledge Engineering Methodologies and Projects.,2012,22,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke22.html#FlorezCF12,https://doi.org/10.1142/S0218194012500283 +I-Ling Yen,The Design and Implementation of a Customizable Fault Tolerance Framework.,1999,9,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke9.html#YenAJK99,https://doi.org/10.1142/S0218194099000127 +Kimmo Keränen,Ltcc Technology For Photonic and Millimeter Wave Module Integration.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#KerANenKLMK05,https://doi.org/10.1142/S0218194005002166 +L. T. Aschepkov,The Universal Solutions of Interval Systems of Linear Algebraical Equations.,1993,3,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke3.html#AschepkovD93,https://doi.org/10.1142/S0218194093000252 +Yi Deng,Constraint Propagation And Progressive Verification For Component-Based Process Model.,2004,14,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke14.html#DengWHT04,https://doi.org/10.1142/S0218194004001750 +Don S. Batory,Software Components for Object-Oriented Database Systems.,1993,3,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke3.html#BatoryV93,https://doi.org/10.1142/S0218194093000082 +Johan Silvander,Supporting Continuous Changes to Business Intents.,2017,27,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke27.html#SilvanderWWS17,https://doi.org/10.1142/S0218194017500449 +Alireza Sadeghi,Mbtdd: Model Based Test Driven Development.,2012,22,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke22.html#SadeghiM12,https://doi.org/10.1142/S0218194012500295 +Patrik Berander,Hierarchical Cumulative Voting (hcv) - Prioritization of Requirements in Hierarchies.,2006,16,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke16.html#BeranderJ06,https://doi.org/10.1142/S0218194006003026 +Chuanqi Tao,Cloud-Based Mobile Testing as a Service.,2016,26,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke26.html#TaoG16,https://doi.org/10.1142/S0218194016500078 +Murali Sitaraman,Performance-Parameterized Reusable Software Components.,1992,2,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke2.html#Sitaraman92,https://doi.org/10.1142/S0218194092000269 +Norman Wilde,The Extensible Dependency Analysis Tool Set: a Knowledge Base for Understanding Industrial Software.,1994,4,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke4.html#WildeCR94,https://doi.org/10.1142/S0218194094000258 +Teck Hong Koh,Design Analysis of the PropulsionaAnd Control System of an Underactuated Remotely Operated Vehicle Using Axiomatic Design Theory - Part 2.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#KOHTLLS05a,https://doi.org/10.1142/S0218194005002294 +Giuseppe Della Penna,Sybel: a System Modelling Language Enhancing Automatic Support in the Software Development Process.,2013,23,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke23.html#PennaOIMSC13,https://doi.org/10.1142/S021819401350006X +Prasanna Lakshmi Kompalli,Efficient Mining of Data Streams Using Associative Classification Approach.,2015,25,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke25.html#KompalliC15,https://doi.org/10.1142/S0218194015500059 +Nadia Bouassida,Evaluation of an Automated Multi-phase Approach for Patterns Discovery.,2013,23,International Journal of Software Engineering and Knowledge Engineering,10,db/journals/ijseke/ijseke23.html#BouassidaBI13,https://doi.org/10.1142/S0218194013500435 +Hala Skaf,Maintaining Shared Workspaces Consistency during Software Development.,1999,9,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke9.html#SkafCG99,https://doi.org/10.1142/S0218194099000334 +Yi-Ping Phoebe Chen,Guest Editor'S Introduction.,2003,13,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke13.html#Chen03,https://doi.org/10.1142/S0218194003001470 +Yanchun Zhang,An Efficient Test for the Validity of Unbiased Hybrid Knowledge Fragmentation in Distributed Databases.,1992,2,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke2.html#ZhangOC92,https://doi.org/10.1142/S0218194092000270 +Ronggong Song,Protect Virtual Property in Online Gaming System.,2007,17,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke17.html#SongKYC07,https://doi.org/10.1142/S0218194007003367 +Giuseppe Di Modica,A P2P Based Architecture for Semantic Web Service Discovery.,2011,21,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke21.html#ModicaTV11,https://doi.org/10.1142/S0218194011005578 +Marek Reformat,Guest Editor's Introduction.,2015,25,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke25.html#Reformat15,https://doi.org/10.1142/S0218194015020015 +Ralph Depke,Roles in Agent-Oriented Modeling.,2001,11,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke11.html#DepkeHK01,https://doi.org/10.1142/S0218194001000529 +Iaakov Exman,Linear Software Models: Standard Modularity Highlights Residual Coupling.,2014,24,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke24.html#Exman14,https://doi.org/10.1142/S0218194014500089 +Gang Li,What Will Affect Software Reuse: A Causal Model Analysis.,2004,14,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke14.html#LiD04,https://doi.org/10.1142/S021819400400166X +Tao Zhang 0001,Guiding Bug Triage through Developer Analysis in Bug Reports.,2016,26,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke26.html#ZhangYLC16,https://doi.org/10.1142/S0218194016500170 +Martin von Mohrenschildt,Predictive Traces in Hybrid Systems.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#Mohrenschildt05,https://doi.org/10.1142/S0218194005002373 +Sigrid Goldmann,Distributed Process Planning Support with MILOS.,2000,10,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke10.html#GoldmannMH00,https://doi.org/10.1142/S0218194000000298 +Krishna M. Kavi,Specification and Analysis of Real-Time Systems Using CSP and Petri Nets.,1996,6,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke6.html#KaviSR96,https://doi.org/10.1142/S0218194096000119 +Humberto Cortés,Enterprise WAE: A Lightweight UML Extension for the Characterization of the Presentation Tier of Enterprise Applications with MDD-Based Mockup Generation.,2017,27,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke27.html#CortesN17,https://doi.org/10.1142/S0218194017500486 +Tsong Yueh Chen,On Favourable Conditions for Adaptive Random Testing.,2007,17,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke17.html#ChenKZ07,https://doi.org/10.1142/S0218194007003501 +Chien-Hung Liu,An Object-based Data Flow Testing Approach for Web Applications.,2001,11,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke11.html#LiuKHH01,https://doi.org/10.1142/S0218194001000499 +Seçkin Tunalilar,An Exploration of Functional Size Based Effort Estimation Models.,2011,21,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke21.html#TunalilarD11,https://doi.org/10.1142/S0218194011005347 +Jeffrey J. P. Tsai,Guest Editors' Introduction.,2005,15,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke15.html#TsaiZ05,https://doi.org/10.1142/S0218194005002427 +Joseph Fong,Concurrent Data Materialization for XML-Enabled Database with Semantic Metadata.,2010,20,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke20.html#FongSY10,https://doi.org/10.1142/S0218194010004748 +Eltefaat Shokri,An Approach for Adaptive Fault Tolerance in Object-Oriented Open Distributed Systems.,1998,8,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke8.html#ShokriHCDK98,https://doi.org/10.1142/S0218194098000182 +Stephen J. H. Yang,Development of Wireless Embedded Systems Using Component Based Software.,2002,12,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke12.html#YangTC02,https://doi.org/10.1142/S0218194002000871 +Sung-Koo Lee,SOORLS: A Software Reuse Approach on the Web.,1999,9,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke9.html#LeeU99,https://doi.org/10.1142/S0218194099000188 +Weiqiang Kong,Specification and Verification of Workflows with Rbac Mechanism and Sod Constraints.,2007,17,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke17.html#KongOF07,https://doi.org/10.1142/S0218194007003124 +Atsuo Yoshitaka,Knowledge-Assisted Retrieval of Spatiotemporal Content in Multimedia Databases.,1997,7,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke7.html#YoshitakaHI97,https://doi.org/10.1142/S0218194097000187 +Nathalie Cindy Kuicheu,An Iterative Approach to Managing Uncertain Mappings in Dataspace Support Platforms.,2014,24,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke24.html#KuicheuWTXDS14,https://doi.org/10.1142/S0218194014500247 +Stephen C. Medders,Using Rule Structure to Evaluate the Completeness of Rule-Based System Testing: a Case Study.,2010,20,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke20.html#MeddersAL10,https://doi.org/10.1142/S0218194010005006 +Vladimir P. Sliva,Protocol Specification Design Using an Object-Based Petri Net Formalism.,1999,9,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke9.html#SlivaMS99,https://doi.org/10.1142/S0218194099000073 +Christine W. Chan,Knowledge Engineering of a Monitoring and Control Decision Support System.,2000,10,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke10.html#ChanKT00,https://doi.org/10.1142/S0218194000000183 +Jose Manuel Redondo,Optimizing Reflective Primitives of Dynamic Languages.,2008,18,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke18.html#RedondoOL08,https://doi.org/10.1142/S021819400800388X +Elham Darmanaki Farahani,Configuration Management Model in Evolutionary Software Product Line.,2016,26,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke26.html#FarahaniH16,https://doi.org/10.1142/S0218194016500182 +Ching-Pao Chang,Software Risk Modeling by Clustering Project Metrics.,2015,25,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke25.html#Chang15,https://doi.org/10.1142/S0218194015500175 +Diego Martín de Andrés,Prosumer Framework for Knowledge Management Based on Prosumer Service Patterns.,2016,26,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke26.html#AndresARS16,https://doi.org/10.1142/S0218194016500406 +Jingyu Kim,A Comparison of Software Product Line Traceability Approaches from End-to-End Traceability Perspectives.,2014,24,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke24.html#KimKL14,https://doi.org/10.1142/S0218194014500260 +Alvaro Ortigosa,Using Incremental Planning to Foster Application Framework Reuse.,2000,10,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke10.html#OrtigosaC00,https://doi.org/10.1142/S0218194000000237 +Iman Attarzadeh,Proposing an Effective Artificial Neural Network Architecture to Improve the Precision of Software Cost Estimation Model.,2014,24,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke24.html#AttarzadehO14,https://doi.org/10.1142/S0218194014500338 +Arnon Sturm,A Quantitative-Based Comparison of MaSE and OPM/MAS Design Results.,2008,18,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke18.html#SturmTG08,https://doi.org/10.1142/S0218194008003945 +Francisco Ruiz 0001,An Ontology For The Management Of Software Maintenance Projects.,2004,14,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke14.html#RuizBPG04,https://doi.org/10.1142/S0218194004001646 +Hyung-Min Koo,An Analysis of Problem-Solving Patterns in Open Source Software.,2015,25,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke25.html#KooK15,https://doi.org/10.1142/S0218194015500187 +Hosein Marzi,High-Speed Rt Monitoring System Using Neural Networks.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#Marzi05,https://doi.org/10.1142/S0218194005002312 +Yuliang Shi,A Sub Chunk-Confusion Based Privacy Protection Mechanism for Association Rules in Cloud Services.,2016,26,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke26.html#ShiZCL16,https://doi.org/10.1142/S0218194016400015 +Peng Wu 0002,Model-based Testing of Concurrent Programs with Predicate Sequencing Constraints.,2006,16,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke16.html#WuL06,https://doi.org/10.1142/S0218194006002999 +Nenad Stankovic,Visual Programming for Message-Passing Systems.,1999,9,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke9.html#StankovicZ99,https://doi.org/10.1142/S0218194099000231 +Igor Ivkovic,Towards Automatic Establishment of Model Dependencies Using Formal Concept Analysis.,2006,16,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke16.html#IvkovicK06,https://doi.org/10.1142/S0218194006002902 +Xavier Franch,Systematic Construction of I* Strategic Dependency Models for Socio-technical Systems.,2007,17,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke17.html#FranchGMQACNHB07,https://doi.org/10.1142/S0218194007003148 +CholMyong Pak,An Empirical Study on Software Defect Prediction Using Over-Sampling by SMOTE.,2018,28,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke28.html#PakWS18,https://doi.org/10.1142/S0218194018500237 +Minghui Tian,A Visual Attention Model for Natural Scenes Based on Dynamic Feature Combination.,2010,20,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke20.html#TianWY10,https://doi.org/10.1142/S0218194010005043 +A. P. Dhande,Design of 3-Valued R-S and D Flip-Flops Based on Simple Ternary Gates.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#DhandeI05,https://doi.org/10.1142/S0218194005002324 +Catarina Costa,Characterizing the Problem of Developers' Assignment for Merging Branches.,2014,24,International Journal of Software Engineering and Knowledge Engineering,10,db/journals/ijseke/ijseke24.html#CostaFGM14,https://doi.org/10.1142/S0218194014400166 +Amir A. Khwaja,A Framework for the Evaluation of Real-time Specification Techniques.,2006,16,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke16.html#KhwajaU06,https://doi.org/10.1142/S0218194006003063 +Jarkko Hyysalo,A Design Theory for Cognitive Workflow Systems.,2017,27,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke27.html#HyysaloOK17,https://doi.org/10.1142/S0218194017500061 +Yang Li 0028,Programming Style Based Program Partition.,2005,15,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke15.html#LiYCZ05,https://doi.org/10.1142/S0218194005002610 +Stephen G. MacDonell,The Viability of Fuzzy Logic Modeling in Software Development Effort Estimation: Opinions and Expectations of Project Managers.,2005,15,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke15.html#MacdonellG05,https://doi.org/10.1142/S0218194005002555 +Tiansi Dong,Modeling Human Intelligence with Slow Intelligence Systems.,2012,22,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke22.html#Dong12,https://doi.org/10.1142/S0218194012400141 +Ingolf Krüger,From Scenarios to Hierarchical Broadcasting Software Architectures Using UML-RT.,2002,12,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke12.html#KrugerPSB02,https://doi.org/10.1142/S0218194002000858 +Sourav Bhattacharya,Software Engineering Practices and Tools for Real-Time Systems (Part II): Guest Editor's Introduction.,1996,6,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke6.html#BhattacharyaMT96a,https://doi.org/10.1142/S0218194096000314 +Taghi M. Khoshgoftaar,Predicting Fault-Prone Modules in Embedded Systems Using Analogy-Based Classification Models.,2002,12,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke12.html#KhoshgoftaarCS02,https://doi.org/10.1142/S0218194002000883 +Neelima Iyer,Lilliputian Hardware Platform For Scientific Applications.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#IyerKJU05,https://doi.org/10.1142/S0218194005002361 +Adler Diniz de Souza,A Proposal for the Improvement of Project's Cost Predictability Using Earned Value Management and Historical Data of Cost - An Empirical Study.,2015,25,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke25.html#SouzaRS15,https://doi.org/10.1142/S0218194015400021 +Sungwon Kang,Architecture-Based Planning of Software Evolution.,2014,24,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke24.html#KangG14,https://doi.org/10.1142/S0218194014500090 +Xiaodong Yi,Slicing Execution for Model Checking C Programs.,2006,16,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke16.html#YiWY06,https://doi.org/10.1142/S0218194006002987 +Sungwon Kang,A Framework for Tool-Based Software Architecture Reconstruction.,2009,19,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke19.html#KangLL09,https://doi.org/10.1142/S0218194009004167 +Soichiro Ohara,A Software Test and Evaluation Environment Based on Longitudinal Database.,2002,12,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke12.html#OharaTMOHWSP02,https://doi.org/10.1142/S0218194002000901 +Gennaro Costagliola,Guest Editors' Introduction.,2012,22,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke22.html#CostagliolaLNN12,https://doi.org/10.1142/S0218194012020044 +Sana Chakri,Semantic Trajectory Knowledge Discovery: A Promising Way to Extract Meaningful Patterns from Spatiotemporal Data.,2017,27,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke27.html#ChakriRh17,https://doi.org/10.1142/S0218194017500140 +Yulei Pang,Fault Localizations Through Feature Selections.,2017,27,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke27.html#PangXN17,https://doi.org/10.1142/S0218194017500474 +Iaakov Exman,Linear Software Models: Decoupled Modules from Modularity Matrix Eigenvectors.,2015,25,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke25.html#Exman15,https://doi.org/10.1142/S0218194015500308 +Martin Ivarsson,Practice Selection Framework.,2012,22,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke22.html#IvarssonG12,https://doi.org/10.1142/S0218194012500027 +Farokh B. Bastani,A Software Reliability Model for Artificial Intelligence Programs.,1993,3,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke3.html#BastaniCT93,https://doi.org/10.1142/S0218194093000057 +Saeed Setayeshi,Optimal Design of Wide Area Based on Fuzzy Controller and Intelligent Method.,2017,27,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke27.html#SetayeshiRNY17,https://doi.org/10.1142/S0218194017500164 +Hermann Kaindl,Reasoning Types and AI Programming Paradigms.,1992,2,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke2.html#KaindlZ92,https://doi.org/10.1142/S0218194092000063 +Bernhard Bauer,Agent UML: A Formalism for Specifying Multiagent Software Systems.,2001,11,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke11.html#BauerMO01,https://doi.org/10.1142/S0218194001000517 +Weikai Miao,An Evolutionary Method for the Formal Specification Construction of Service-Based Software.,2016,26,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke26.html#MiaoW16,https://doi.org/10.1142/S0218194016400039 +Ettore Merlo,Multi-Valued Constant Propagation Analysis for User Interface Reengineering.,1995,5,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke5.html#MerloGHM95,https://doi.org/10.1142/S0218194095000022 +Kai-Yuan Cai,Guest Editors' Introduction.,2006,16,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke16.html#CaiOT06,https://doi.org/10.1142/S0218194006002975 +Jing Dong,A Review of Design Pattern Mining Techniques.,2009,19,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke19.html#DongZP09,https://doi.org/10.1142/S021819400900443X +Maurizio Morisio,Software Product and Process Assessment through Profile-Based Evaluation.,2003,13,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke13.html#MorisioST03,https://doi.org/10.1142/S0218194003001433 +Bailing Wang,Research Notes: User Identification Model Based on Mouse Behaviors.,2018,28,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke28.html#WangLWXS18,https://doi.org/10.1142/S0218194018400028 +Adel Smeda,My Architecture: a Knowledge Representation Meta-Model for Software Architecture.,2008,18,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke18.html#SmedaOK08,https://doi.org/10.1142/S0218194008003921 +Yun-Fei Jia,Using Neural Networks to Forecast Available System Resources: An Approach and Empirical Investigation.,2015,25,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke25.html#JiaZXZC15,https://doi.org/10.1142/S0218194015500102 +Frederick E. Petry,Automatic Programming and Program Maintenance with Genetic Programming.,1995,5,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke5.html#PetryD95,https://doi.org/10.1142/S0218194095000095 +Soochan Hwang,A Fast 3-D Visualization Methodology Using Characteristic Views of Objects.,1998,8,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke8.html#HwangCWS98,https://doi.org/10.1142/S021819409800008X +R. Félix,Binary Encoding of Discernibility Patterns to Find Minimal Coverings.,2002,12,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke12.html#FelixU02,https://doi.org/10.1142/S0218194002000809 +André Luís Andrade Menolli,Organizational Learning Applied to Software Engineering: a Systematic Review.,2013,23,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke23.html#MenolliRM13,https://doi.org/10.1142/S0218194013500356 +Mariusz Pelc,Context-aware Fuzzy Control Systems.,2014,24,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke24.html#Pelc14,https://doi.org/10.1142/S0218194014500326 +Kemas Muslim Lhaksmana,Role-Based Modeling for Designing Agent Behavior in Self-Organizing Multi-Agent Systems.,2018,28,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke28.html#LhaksmanaMI18,https://doi.org/10.1142/S0218194018500043 +Tülin Erçelebi Ayyildiz,Size and Effort Estimation Based on Problem Domain Measures for Object-Oriented Software.,2018,28,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke28.html#AyyildizK18,https://doi.org/10.1142/S0218194018500079 +Anna Formica,Similarity Of Xml-Schema Elements Supported By Domain Ontologies.,2005,15,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke15.html#Formica05,https://doi.org/10.1142/S0218194005001872 +Edmund Kazmierczak,Verifying Requirements Through Mathematical Modelling and Animation.,2000,10,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke10.html#KazmierczakDSW00,https://doi.org/10.1142/S0218194000000146 +Francesco Colace,Learning Bayesian Network Structure Using a MultiExpert Approach.,2014,24,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke24.html#ColaceSG14,https://doi.org/10.1142/S0218194014500119 +Cheeyang Song,A Refinement Technique for Duplication and Collision Between Features in Software Product Line Engineering.,2014,24,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke24.html#SongLL14,https://doi.org/10.1142/S021819401450020X +Carol L. Hoover,Analytical Partition of Software Components for Evolvable and Reliable MEMS Design Tools.,1999,9,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke9.html#HooverK99,https://doi.org/10.1142/S0218194099000103 +Siti Rochimah,Utilizing Multifaceted Requirement Traceability Approach: a Case Study.,2011,21,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke21.html#RochimahWA11,https://doi.org/10.1142/S0218194011005372 +Huanjing Wang,An Empirical Investigation on Wrapper-Based Feature Selection for Predicting Software Quality.,2015,25,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke25.html#WangKN15,https://doi.org/10.1142/S0218194015400057 +Vladimir D. Mazurov,Guest Editor's Introduction.,1993,3,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke3.html#Mazurov93,https://doi.org/10.1142/S0218194093000306 +Sanjeev Manchanda,Change Management and Software Reuse Supportive 'Genetic Information System Development and Maintenance' Model.,2009,19,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke19.html#ManchandaSD09,https://doi.org/10.1142/S0218194009004076 +Chi-Ming Chung,Integration Object-Oriented Software Testing and Metrics.,1997,7,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke7.html#ChungSWL97,https://doi.org/10.1142/S0218194097000060 +Jiexin Lian,A Modeling Methodology for Conflict Control in Multi-Agent Systems.,2008,18,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke18.html#LianS08,https://doi.org/10.1142/S0218194008003659 +Patrick Cogan,A Quantitative and Qualitative Comparison of Distributed Information Processing Using Mobile Agents Realised in RMI and Voyager.,2001,11,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke11.html#CoganGS01,https://doi.org/10.1142/S0218194001000694 +Daniel E. Cooke,Possible Effects of the Next Generation Programming Language on the Software Process Model.,1993,3,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke3.html#Cooke93,https://doi.org/10.1142/S0218194093000185 +James M. Neighbors,The Evolution from Software Components to Domain Analysis.,1992,2,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke2.html#Neighbors92,https://doi.org/10.1142/S0218194092000166 +Cheeyang Song,An Integrated GUI-Business Component Modeling Method for the MDD- and MVC-Based Hierarchical Designs.,2011,21,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke21.html#SongCK11,https://doi.org/10.1142/S0218194011005293 +Young-Gab Kim,Variability Management for Software Product-Line Architecture Development.,2011,21,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke21.html#KimLJ11,https://doi.org/10.1142/S0218194011005542 +Laszlo A. Belady,From Software Engineering to Knowledge Engineering: The Shape of the Software Industry in the 1990s.,1991,1,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke1.html#Belady91,https://doi.org/10.1142/S0218194091000032 +Haiping Xu,A Security Based Model for Mobile Agent Software Systems.,2005,15,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke15.html#XuZS05,https://doi.org/10.1142/S0218194005002518 +Mateusz Radzimski,Intelligent Architecture for Comparative Analysis of Public Companies Using Semantics and XBRL Data.,2014,24,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke24.html#RadzimskiSGT14,https://doi.org/10.1142/S0218194014500314 +Alvaro E. Prieto,Defining Reusable Administrative Processes Using a Generic Ontology.,2012,22,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke22.html#PrietoT12,https://doi.org/10.1142/S0218194012400050 +Sira Vegas,What Information is Relevant When Selecting Software Testing Techniques?,2002,12,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke12.html#VegasuB02,https://doi.org/10.1142/S0218194002001116 +Jinfu Chen,Component Security Testing Approach Based on Extended Chemical Abstract Machine.,2012,22,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke22.html#ChenLW12,https://doi.org/10.1142/S0218194012500039 +Jang-Eui Hong,Incremental Scenario Modeling Using Hierarchical Object-Oriented Petri Net.,2001,11,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke11.html#HongB01,https://doi.org/10.1142/S0218194001000566 +Sung-Bae Cho,An Evolutionary Approach to Program Transformation and Synthesis.,1995,5,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke5.html#ChoR95,https://doi.org/10.1142/S0218194095000101 +Marek Krótkiewicz,Association-Oriented Database Model - n-ary Associations.,2017,27,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke27.html#Krotkiewicz17,https://doi.org/10.1142/S0218194017500103 +Dietmar Pfahl,Knowledge Acquisition and Process Guidance for Building System Dynamics Simulation Models: an Experience Report from Software Industry.,2000,10,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke10.html#PfahlL00,https://doi.org/10.1142/S0218194000000213 +Antonina Dattolo,Distributed Information and Control in a Concurrent Hypermedia-Oriented Architecture.,2000,10,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke10.html#DattoloL00,https://doi.org/10.1142/S0218194000000158 +Waldemar W. Koczkodaj,Guest Editor's Introduction: Induction Algorithms.,1991,1,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke1.html#Koczkodaj91,https://doi.org/10.1142/S0218194091000275 +Sandrine Blazy,Partial Evaluation for the Understanding of Fortran Programs.,1994,4,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke4.html#BlazyF94,https://doi.org/10.1142/S021819409400026X +Bruce I. Blum,Towards a Uniform Structured Representation for Application Generation.,1991,1,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke1.html#Blum91,https://doi.org/10.1142/S0218194091000068 +George E. Tsekouras,An Effective fuzzy Clustering Algorithm for Web Document Classification: a Case Study in Cultural Content Mining.,2013,23,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke23.html#TsekourasG13,https://doi.org/10.1142/S021819401350023X +Xin Li,User Profiling in the Chronobot/Virtual Classroom System.,2007,17,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke17.html#LiC07,https://doi.org/10.1142/S0218194007003185 +Adrián Hernández-López,Software Engineering Job Productivity - a Systematic Review.,2013,23,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke23.html#Hernandez-LopezPG13,https://doi.org/10.1142/S0218194013500125 +Martin P. Ward,Formal Methods to Aid the Evolution of Software.,1995,5,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke5.html#WardB95,https://doi.org/10.1142/S0218194095000034 +Michel Jaring,Expressing Product Diversification -- Categorizing And Classifying Variability In Software Product Family Engineering.,2004,14,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke14.html#JaringB04,https://doi.org/10.1142/S0218194004001804 +Fernando Alonso,Trends in Life-Cycle Models for SE and KE: Proposal for a Spiral-conical Life-Cycle Approach.,1995,5,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke5.html#AlonsoJP95,https://doi.org/10.1142/S0218194095000228 +Matthias Book,Cost Simulation and Performance Optimization of Web-based Applications on Mobile Channels.,2006,16,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke16.html#BookGHKK06,https://doi.org/10.1142/S021819400600294X +Federico Bergenti,Supporting Agent-Oriented Modelling with UML.,2002,12,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke12.html#BergentiP02,https://doi.org/10.1142/S0218194002001086 +Liguo Yu,Applying Association Mining to Change Propagation.,2008,18,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke18.html#YuS08,https://doi.org/10.1142/S0218194008004008 +Prabhat Ranjan,A Novel Approach of Requirement Gathering and Analysis for Agent Oriented Software Engineering (AOSE).,2009,19,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke19.html#RanjanM09,https://doi.org/10.1142/S0218194009004064 +Akanksha,Visualizing Animation Databases.,2003,13,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke13.html#AkankshaHPR03,https://doi.org/10.1142/S0218194003001214 +Xiaofeng Xu,Ties within Fault Localization rankings: Exposing and Addressing the Problem.,2011,21,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke21.html#XuDWG11,https://doi.org/10.1142/S0218194011005505 +Mario Kusek,Verification of the Mobile Agent Network Simulator - a Tool for Simulating Multi-Agent Systems.,2008,18,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke18.html#KusekJJ08,https://doi.org/10.1142/S0218194008003854 +Ji Y. Lee,Adding Form to Real-Time System Specification and Simulation.,1999,9,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke9.html#LeeKKK99,https://doi.org/10.1142/S0218194099000346 +Hazem El-Gendy,Formal Method for Automated Transformation of Lotos Specifications to Estelle Specifications.,2005,15,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke15.html#El-GendyE05,https://doi.org/10.1142/S0218194005002567 +Andrea Herrmann,Icrad: an Integrated Process for the Solution of Requirements Conflicts and Architectural Design.,2006,16,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke16.html#HerrmannPP06,https://doi.org/10.1142/S021819400600304X +María Eugenia Cabello,A Generic Process for the Design and Generation of Software Product Line Skeleton Architectures.,2014,24,International Journal of Software Engineering and Knowledge Engineering,9,db/journals/ijseke/ijseke24.html#CabelloRSB14,https://doi.org/10.1142/S0218194014500405 +Siu Liu,A Formal Framework to Support Workflow Adaptation.,2002,12,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke12.html#LiuGS02,https://doi.org/10.1142/S0218194002000925 +Günther Ruhe,Guest Editor's Introduction: 11th International Conference on Software Engineering and Knowledge Engineering (SEKE'99).,2000,10,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke10.html#Ruhe00,https://doi.org/10.1142/S0218194000000195 +Linh Anh Nguyen,Design of the Tableau Reasoner TGC2 for Description Logics.,2016,26,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke26.html#Nguyen16,https://doi.org/10.1142/S0218194016500467 +Valeria Seidita,The Metamodel: a Starting Point for Design Processes Construction.,2010,20,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke20.html#SeiditaCHGGKG10,https://doi.org/10.1142/S0218194010004785 +Tien Tran-Thuong,A Multimedia Model Based on Structured Media and Sub-Elements for Complex Multimedia Authoring and Presentation.,2002,12,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke12.html#TienR02,https://doi.org/10.1142/S0218194002001037 +Ulrike Kölsch,A Framework for Object-Oriented Reverse Engineering of Legacy Information Systems.,1999,9,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke9.html#KolschL99,https://doi.org/10.1142/S0218194099000048 +Nader Kolsi,Agent Based Data Storage and Distribution in Data Warehouses.,2008,18,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke18.html#KolsiAG08,https://doi.org/10.1142/S0218194008003842 +Hyun-seok Min,Traceability Guideline for Software Requirements and UML Design.,2016,26,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke26.html#Min16,https://doi.org/10.1142/S0218194016500054 +Luca Cernuzzi,Adaptable Multi-Agent Systems: the Case of the Gaia Methodology.,2011,21,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke21.html#CernuzziMOZ11,https://doi.org/10.1142/S0218194011005384 +Ana María Moreno 0001,Results of the Application of a Linguistic Approach to Object-Oriented Analysis.,1998,8,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke8.html#Moreno98,https://doi.org/10.1142/S021819409800025X +Motoshi Saeki,Supporting Distributed Individual Tasks in Cooperative Specification Development.,2000,10,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke10.html#SaekiST00,https://doi.org/10.1142/S0218194000000171 +Carlo Montangero,Software Process Monitoring Mechanisms in Oikos.,1994,4,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke4.html#MontangeroS94,https://doi.org/10.1142/S0218194094000234 +Hongzhen Xu,Modeling and Verifying Composite Dynamic Evolution of Software Architectures using Hypergraph Grammars.,2013,23,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke23.html#XuZ13,https://doi.org/10.1142/S0218194013500204 +Liu Ji-Wei,Towards Dynamic Evolution of Runtime Variability Based on Computational Reflection.,2018,28,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke28.html#Ji-WeiX18,https://doi.org/10.1142/S0218194018500092 +Alain Abran,Guest Editors' Introduction.,2011,21,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke21.html#AbranCD11,https://doi.org/10.1142/S0218194011005360 +Gihong Kim,Generation of Business Event Data Sets for Testing RFID Information Services.,2015,25,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke25.html#KimH15,https://doi.org/10.1142/S0218194015500096 +Annika Wagner,A Formal Object Specification Technique Integrating Object and Functional Model.,1997,7,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke7.html#Wagner97,https://doi.org/10.1142/S021819409700028X +Masahito Kurihara,Using ATMS to Efficiently Verify the Termination of Rewrite Rule Programs.,1992,2,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke2.html#KuriharaKO92,https://doi.org/10.1142/S0218194092000257 +Paolo Ciancarini,Guest Editor's Introduction.,1996,6,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke6.html#CiancariniS96,https://doi.org/10.1142/S0218194096000296 +Rebeca P. Díaz Redondo,Arifs Methodology Reusing Incomplete Models at the Requirements Specification Stage.,2005,15,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke15.html#RedondoAVDS05,https://doi.org/10.1142/S021819400500249X +Paolo Ciancarini,Agent-Based Software Engineering - Guest Editors' Introduction.,2001,11,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke11.html#CiancariniW01,https://doi.org/10.1142/S021819400100058X +Angelo Chianese,A Novel Approach for Semantic Interoperability in the Web Based on the Semantic Triangle Communication Model.,2011,21,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke21.html#ChianeseFMTC11,https://doi.org/10.1142/S0218194011005591 +Lily Chang,A Methodology for Modeling Multi-Agent Systems using Nested Petri Nets.,2012,22,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke22.html#ChangHS12,https://doi.org/10.1142/S0218194012500246 +Frank Houdek,Defect Detection for Executable Specifications - An Experiment.,2002,12,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke12.html#HoudekSE02,https://doi.org/10.1142/S0218194002001128 +Kuang Xu,Specification of Multimedia Software Systems Using an Object Oriented Architecture Description Language.,1999,9,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke9.html#XuT99,https://doi.org/10.1142/S0218194099000401 +Pavlina Fragkou,Information Extraction versus Text Segmentation for Web Content Mining.,2013,23,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke23.html#Fragkou13,https://doi.org/10.1142/S0218194013500332 +Qi Xu,Knowledge Adaptability Evaluation in View of Patent Citation in Technological Evolutionary Process: A Case Study of Fuel Cell.,2015,25,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke25.html#XuGF15,https://doi.org/10.1142/S0218194015500278 +Sung-Bae Cho,Data Mining For Gene Expression Profiles From Dna Microarray.,2003,13,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke13.html#ChoW03,https://doi.org/10.1142/S0218194003001469 +Timothy K. Shih,EVCS - A Complete Electronic Virtual Conference System.,2001,11,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke11.html#ShihHH01,https://doi.org/10.1142/S0218194001000426 +Derek Doran,Discovering Perceptions in Online Social Media: A Probabilistic Approach.,2014,24,International Journal of Software Engineering and Knowledge Engineering,9,db/journals/ijseke/ijseke24.html#DoranGD14,https://doi.org/10.1142/S0218194014400129 +Ning Wang,Summarizing Personal Dataspace Based on User Interests.,2016,26,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke26.html#WangT16,https://doi.org/10.1142/S0218194016500224 +Jussipekka Leiwo,Understanding and Communicating It Security Specifications with Uml.,2005,15,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke15.html#LeiwoV05,https://doi.org/10.1142/S0218194005002580 +Juan Manuel Dodero,Engineering the Life-Cycle of Semantic Services-Enhanced Learning Systems.,2010,20,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke20.html#DoderoGT10,https://doi.org/10.1142/S0218194010004852 +Shikai Guo,Crowdsourced Web Application Testing Under Real-Time Constraints.,2018,28,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke28.html#GuoCLGL18,https://doi.org/10.1142/S0218194018500213 +David Bolton,Knowledge-Based Support for Requirements Engineering.,1992,2,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke2.html#BoltonJTFG92,https://doi.org/10.1142/S0218194092000154 +John C. Grundy,Softarch: Tool Support for Integrated Software Architecture Development.,2003,13,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke13.html#GrundyH03,https://doi.org/10.1142/S0218194003001238 +Yu Whoan Ahn,Knowledge and Case-Based Reasoning for Customization of Software Processes - A Hybrid Approach.,2003,13,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke13.html#AhnAP03,https://doi.org/10.1142/S0218194003001305 +Kian Hsiang Low,Modeling and Motion Control of Robotic Hand for Telemanipulation Application.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#LowWLC05,https://doi.org/10.1142/S0218194005002270 +Fabio Pittarello,Semantic Description of Web 3D Worlds through Social Tagging.,2011,21,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke21.html#Pittarello11,https://doi.org/10.1142/S0218194011005165 +Spiros Mancoridis,ISF: A Visual Formalism for Specifying Interconnection Styles for Software Design.,1998,8,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke8.html#Mancoridis98,https://doi.org/10.1142/S0218194098000285 +Ning Wang,Identifying Multiple Entity Columns in Web Tables.,2018,28,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke28.html#WangR18,https://doi.org/10.1142/S0218194018500109 +Boumediene Belkhouche,Multiple Views Analysis of Software Designs.,2000,10,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke10.html#BelkhoucheO00,https://doi.org/10.1142/S021819400000033X +Shi-Kuo Chang,Processing Continuous Queries on Sensor-Based Multimedia Data Streams by Multimedia Dependency Analysis and Ontological Filtering.,2011,21,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke21.html#ChangCZS11,https://doi.org/10.1142/S0218194011005669 +Joseph Fong,A Frame Model Approach for Expert and Database System Integration.,1999,9,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke9.html#FongH99,https://doi.org/10.1142/S021819409900022X +Daniel E. Cooke,Guest Editor's Introduction: the Impact of Case on Software Development Processes.,1991,1,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke1.html#Cooke91,https://doi.org/10.1142/S0218194091000111 +Zhongjie Wang,Characterizing Individualized Coding Contributions of OSS Developers from Topic Perspective.,2017,27,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke27.html#WangPX17,https://doi.org/10.1142/S021819401750005X +Aimrudee Jongtaveesataporn,FASICA Framework: Service Selection Using K-d Tree and Cache.,2015,25,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke25.html#Jongtaveesataporn15,https://doi.org/10.1142/S0218194015400215 +C. K. Shriram,Empirical Study on the Distribution of Bugs in Software Systems.,2018,28,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke28.html#ShriramKN18,https://doi.org/10.1142/S0218194018500055 +Pankaj Kamthan,A Framework for the Pragmatic Quality of Z Specifications.,2006,16,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke16.html#Kamthan06,https://doi.org/10.1142/S0218194006002938 +JuHum Kwon,Intelligent Semantic Concept Mapping For Semantic Query Rewriting/Optimization In Ontology-Based Information Integration System.,2004,14,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke14.html#KwonJLB04,https://doi.org/10.1142/S0218194004001762 +Supanat Kitcharoensakkul,Towards a Unified Version Model Using the Resource Description Framework (RDF).,2001,11,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke11.html#KitcharoensakkulW01,https://doi.org/10.1142/S0218194001000748 +Yuyu Yin,QoS Prediction for Web Service Recommendation with Network Location-Aware Neighbor Selection.,2016,26,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke26.html#YinAMXS16,https://doi.org/10.1142/S0218194016400040 +Muhammad Usman 0006,An Effort Estimation Taxonomy for Agile Software Development.,2017,27,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke27.html#UsmanBP17,https://doi.org/10.1142/S0218194017500243 +André Marques Pereira,Comparison of Open Source Tools for Project Management.,2013,23,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke23.html#PereiraGWB13,https://doi.org/10.1142/S0218194013500046 +Fadi A. Thabtah,Prediction Phase in Associative Classification Mining.,2011,21,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke21.html#ThabtahHAI11,https://doi.org/10.1142/S0218194011005463 +Hui Chen,Efficiently Mining Recent Frequent Patterns over Online Transactional Data Streams.,2009,19,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke19.html#Chen09a,https://doi.org/10.1142/S0218194009004325 +Victor K. Y. Chan,A Statistical Methodology to Simplify Software Metric Models Constructed Using Incomplete Data Samples.,2007,17,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke17.html#ChanWX07,https://doi.org/10.1142/S0218194007003495 +Anthony C. Bloesch,Cogito: a Methodology and System for Formal Software Development.,1995,5,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke5.html#BloeschKKT95,https://doi.org/10.1142/S0218194095000290 +Katerina Ksystra,An Algebraic Framework for the Verification of Context-Aware Adaptive Systems.,2015,25,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke25.html#KsystraSF15,https://doi.org/10.1142/S0218194015500199 +Aniello Cimitile,A Formalism for Structured Planning of a Software Project.,1994,4,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke4.html#CimitileV94,https://doi.org/10.1142/S0218194094000143 +Guo Xie,A Strategy to Formalize Specification and Its Application to an Advanced Railway System.,2014,24,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke24.html#XieHTN14,https://doi.org/10.1142/S0218194014500181 +Efi Papatheocharous,A Hybrid Software Cost Estimation Approach Utilizing Decision Trees and Fuzzy Logic.,2012,22,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke22.html#PapatheocharousA12,https://doi.org/10.1142/S0218194012500106 +John Yen,A Formal Methodology for Analyzing Tradeoffs of Imprecise Requirements.,1998,8,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke8.html#YenT98,https://doi.org/10.1142/S0218194098000157 +Fco. Javier Sáenz Marcilla,Do Outsourcing Service Providers Need a Methodology for Service Delivery?,2015,25,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke25.html#MarcillaCA15,https://doi.org/10.1142/S0218194015500217 +Ik-Joo Han,Composition of Aspects Based on a Relation Model: Synergy of Multiple Paradigms.,2006,16,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke16.html#HanB06,https://doi.org/10.1142/S0218194006002847 +Mariusz Pelc,Analysis of Policy-Based Systems with AGILE Policies Using Petri Nets.,2016,26,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke26.html#Pelc16,https://doi.org/10.1142/S0218194016500443 +Andrea De Lucia,Creating Tools in a Software Environment Based on Graph Rewriting Rules.,2000,10,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke10.html#LuciaTT00,https://doi.org/10.1142/S0218194000000109 +Juan Carlos Augusto,A Procedure To Translate Paradigm Specifications To Propositional Linear Temporal Logic And Its Application To Verification.,2003,13,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke13.html#AugustoG03,https://doi.org/10.1142/S0218194003001494 +Junichi Yamamoto,Cooad: a Case Tool for Object-Oriented Analysis and Design.,1995,5,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke5.html#YamamotoOH95,https://doi.org/10.1142/S0218194095000186 +Dehong Qiu,Improving Similarity Measure for Java Programs Based on Optimal Matching of Control Flow Graphs.,2015,25,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke25.html#QiuSL15,https://doi.org/10.1142/S0218194015500229 +David Eichmann,Advances in Network Information Discovery and Retrieval.,1995,5,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke5.html#Eichmann95,https://doi.org/10.1142/S0218194095000083 +Vidan Markovic,A Contribution to Continual Software Service Improvement Based on the Six-Step Service Improvement Method.,2012,22,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke22.html#MarkovicM12,https://doi.org/10.1142/S0218194012500143 +Chee Yong Chan,A Survey of Access Methods for Image Data.,1997,7,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke7.html#ChanP97,https://doi.org/10.1142/S0218194097000199 +Mark J. Gerken,Specification of Software Architecture.,2000,10,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke10.html#Gerken00,https://doi.org/10.1142/S0218194000000067 +Michael N. Huhns,Interaction-Oriented Software Development.,2001,11,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke11.html#Huhns01,https://doi.org/10.1142/S0218194001000530 +Xiaohong Chen 0001,Capturing Requirements from Expected Interactions Between Software and Its Interactive Environment: An Ontology Based Approach.,2016,26,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke26.html#ChenJ16,https://doi.org/10.1142/S0218194016500029 +Beata Sarna-Starosta,A Model-Based Design-for-Verification Approach to Checking for Deadlock in Multi-Threaded Applications.,2007,17,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke17.html#Sarna-StarostaSD07,https://doi.org/10.1142/S0218194007003197 +Mehwish Riaz,Maintainability Predictors for Relational Database-Driven Software Applications: Extended Results from a Survey.,2013,23,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke23.html#RiazTSM13,https://doi.org/10.1142/S0218194013500149 +Noura Boudiaf,Supporting Formal Verification of DIMA Multi-Agents Models: towards a Framework Based on Maude Model Checking.,2008,18,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke18.html#BoudiafMB08,https://doi.org/10.1142/S021819400800391X +Tsukasa Ebihara,Filmification Of Methods And An Example Of Its Applications.,2005,15,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke15.html#EbiharaMNN05,https://doi.org/10.1142/S0218194005001860 +Robert G. Reynolds,An Evolution-Based Approach to Program Understanding Using Cultural Algorithms.,1995,5,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke5.html#ReynoldsS95,https://doi.org/10.1142/S0218194095000125 +Daniel E. Cooke,"Book Review: ""software Conflict: Essays on the Art and Science of Software Engineering"".",1991,1,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke1.html#Cooke91a,https://doi.org/10.1142/S0218194091000317 +M. Brian Blake,Software Engineering for Web Services Workflow Systems.,2008,18,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke18.html#BlakeS08,https://doi.org/10.1142/S0218194008003593 +Jen-Ya Wang,A Data Partition Method for MEMS-Based Storage Devices in a Distributed Computing Environment.,2013,23,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke23.html#WangC13,https://doi.org/10.1142/S021819401340007X +Taghi M. Khoshgoftaar,An Empirical Study of Feature Ranking Techniques for Software Quality Prediction.,2012,22,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke22.html#KhoshgoftaarGN12,https://doi.org/10.1142/S0218194012400013 +Sandeep Padmanabhan,Efficient State-Saving Architectures for Power-Mode Switching.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#PadmanabhanL05,https://doi.org/10.1142/S0218194005001914 +Mária Bieliková,An Experience with the Use of Systems Engineer Case Tool.,1997,7,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke7.html#BielikovaN97,https://doi.org/10.1142/S0218194097000151 +Sourav Bhattacharya,Software Engineering Practices and Tools for Real-Time Systems (Part I): Guest Editor's Introduction.,1996,6,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke6.html#BhattacharyaMT96,https://doi.org/10.1142/S0218194096000302 +Ron Hira,It-Outsourcing and IT-Offshoring: Trends and Impacts on SE/KE Curricula.,2007,17,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke17.html#HiraTSVWC07,https://doi.org/10.1142/S0218194007003409 +Adel Alti,COSABuilder and COSAInstantiator: An Extensible Tool for Architectural Description.,2010,20,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke20.html#AltiBSMO10,https://doi.org/10.1142/S0218194010004803 +Ashish Sharma,A Versatile Approach for the Estimation of Software Development Effort Based on SRS Document.,2014,24,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke24.html#SharmaVK14,https://doi.org/10.1142/S0218194014500016 +Ane Tröger,A Language-Based Approach for Comprehensively Supporting the In Silico Experimental Process.,2005,15,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke15.html#TrOGerF05,https://doi.org/10.1142/S0218194005002245 +Dongxiu Ou,Optimization of Conflicting Tram Signal Priority Requests Based on Spatiotemporal Interlocking Logic Using Microscopic Simulation.,2018,28,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke28.html#OuYLL18,https://doi.org/10.1142/S0218194018400089 +Shih-Chien Chou,ProActNet: Modeling Processes Through Activity Networks.,2002,12,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke12.html#Chou02,https://doi.org/10.1142/S0218194002001050 +Chien-I Lee,An Efficient Conflict-Resolution Approach to Support Read/Write Operations in a Video Server.,1997,7,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke7.html#LeeCY97,https://doi.org/10.1142/S0218194097000205 +W. K. Chan,Integration Testing of Context-sensitive Middleware-based Applications: a Metamorphic Approach.,2006,16,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke16.html#ChanCLTY06,https://doi.org/10.1142/S0218194006002951 +S. Selvaganesan,XDMA: A Dual Indexing and Mutual Summation Based Keyword Search Algorithm for XML Databases.,2014,24,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke24.html#SelvaganesanHS14,https://doi.org/10.1142/S0218194014500223 +Judith A. Stafford,Architecture-Level Dependence Analysis for Software Systems.,2001,11,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke11.html#StaffordW01,https://doi.org/10.1142/S021819400100061X +José Luis Sierra,Document-oriented Development of Content-intensive Applications.,2005,15,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke15.html#SierraFFN05,https://doi.org/10.1142/S0218194005002634 +Silvia Teresita Acuña,Process Model Applicable to Software Engineering and Knowledge Engineering.,1999,9,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke9.html#AcunaLJM99,https://doi.org/10.1142/S0218194099000358 +Tianning Zhang,Test Case Prioritization Technique Based on Error Probability and Severity of UML Models.,2018,28,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke28.html#ZhangWWF18,https://doi.org/10.1142/S0218194018500249 +Cagatay Catal,Automatic Software Categorization Using Ensemble Methods and Bytecode Analysis.,2017,27,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke27.html#CatalTA17,https://doi.org/10.1142/S0218194017500425 +Olga Ormandjieva,Reliability Model for Component-Based Systems in COSMIC (a Case Study).,2008,18,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke18.html#OrmandjievaTA08,https://doi.org/10.1142/S0218194008003763 +Sangeeta Sabharwal,Deriving System Complexity Metric from Events and its Validation.,2011,21,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke21.html#SabharwalSG11,https://doi.org/10.1142/S021819401100561X +Wolfgang Deiters,The FUNSOFT Net Approach to Software Process Management.,1994,4,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke4.html#DeitersG94,https://doi.org/10.1142/S021819409400012X +Marília Aranha Freire,Assessing and Evolving a Domain Specific Language for Formalizing Software Engineering Experiments: An Empirical Study.,2014,24,International Journal of Software Engineering and Knowledge Engineering,10,db/journals/ijseke/ijseke24.html#FreireKANCJNAG14,https://doi.org/10.1142/S0218194014400178 +Tao Peng 0003,Clustering-Based Topical Web Crawling for Topic-Specific Information Retrieval Guided by Incremental Classifier.,2015,25,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke25.html#PengL15,https://doi.org/10.1142/S0218194015500011 +Francesca Arcelli Fontana,Alternatives to the Knowledge Discovery Metamodel: An Investigation.,2017,27,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke27.html#FontanaRZ17,https://doi.org/10.1142/S0218194017500413 +John Anil Saldhana,Formalization of Object Behavior and Interactions from UML Models.,2001,11,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke11.html#SaldhanaSH01,https://doi.org/10.1142/S021819400100075X +W. Eric Wong,Bp Neural Network-Based Effective Fault Localization.,2009,19,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke19.html#WongQ09,https://doi.org/10.1142/S021819400900426X +David B. Stewart,The Chimera Methodology: Designing Dynamically Reconfigurable and Reusable Real-Time Software Using Port-Based Objects.,1996,6,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke6.html#StewartK96,https://doi.org/10.1142/S0218194096000120 +Eric C. Rosen,REINAS: A Real-Time System for Managing Environmental Data.,1998,8,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke8.html#RosenHLMW98,https://doi.org/10.1142/S0218194098000054 +Samer I. Mohamed,Hybrid-Based Maintainability Impact Analysis for Evolving Systems.,2009,19,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke19.html#MohamedEW09,https://doi.org/10.1142/S0218194009004519 +Hoijin Yoon,A Test Case Prioritization Based on Degree of Risk Exposure and its Empirical Study.,2011,21,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke21.html#YoonC11,https://doi.org/10.1142/S0218194011005220 +Yixin Jing,An Inference-Enabled Access Control Model for RDF Ontology.,2009,19,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke19.html#JingJB09,https://doi.org/10.1142/S0218194009004209 +Zhifang Liao,Markov Chain-Like Model for Prediction Service Based on Improved Hierarchical Particle Swarm Optimization Cluster Algorithm.,2016,26,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke26.html#LiaoLSKZL16,https://doi.org/10.1142/S0218194016400064 +Tapalina Bhattasali,An Adaptation of Context and Trust Aware Workflow Oriented Access Control for Remote Healthcare.,2018,28,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke28.html#BhattasaliCCS18,https://doi.org/10.1142/S0218194018500225 +Ryosuke Ishizue,Metrics Visualization Techniques Based on Historical Origins and Functional Layers for Developments by Multiple Organizations.,2018,28,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke28.html#IshizueWFIHKN18,https://doi.org/10.1142/S0218194018500067 +Kai H. Chang,A Performance Evaluation of Heuristics-Based Test Case Generation Methods for Software Branch Coverage.,1996,6,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke6.html#ChangCCL96,https://doi.org/10.1142/S0218194096000247 +R. Kanesaraj Ramasamy,Web Service Discovery for Cloud-Based Mobile Application Using Multi-Level Clustering and QoS-Based Ranking.,2016,26,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke26.html#RamasamyCHH16,https://doi.org/10.1142/S0218194016500376 +Andrew M. Olson,Transforming an HCI Model to a Software Design Model.,1997,7,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke7.html#Olson97,https://doi.org/10.1142/S0218194097000072 +Danilo Medeiros,Working and Playing with Scrum.,2015,25,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke25.html#MedeirosNPA15,https://doi.org/10.1142/S021819401550014X +Yuan-Hsin Tung,A Collaborative Approach for Minimal-Cost Monitor Deployment in Cloud Environment.,2015,25,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke25.html#TungTT15,https://doi.org/10.1142/S0218194015500126 +Alejandro Rodríguez González,Guest Editors' Introduction.,2012,22,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke22.html#GonzalezVC12,https://doi.org/10.1142/S0218194012020020 +An Ngo-The,Guest Editors' Introduction.,2006,16,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke16.html#Ngo-TheR06,https://doi.org/10.1142/S0218194006003099 +Alper Bilge,A Survey of Privacy-Preserving Collaborative Filtering Schemes.,2013,23,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke23.html#BilgeKYGP13,https://doi.org/10.1142/S0218194013500320 +Kwong-Luck Tan,Modeling and Analysis of Nanotips for Thermoelectric Coolers.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#TanPT05,https://doi.org/10.1142/S0218194005002130 +Jo Ueyama,Exploiting a Generic Approach to Construct Component-Based Systems Software in Linux Environments.,2010,20,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke20.html#UeyamaMTCGC10,https://doi.org/10.1142/S0218194010004967 +Gloria Piedad Gasca Hurtado,Risk Taxonomy Related to Software Acquisition: a Case Study.,2013,23,International Journal of Software Engineering and Knowledge Engineering,9,db/journals/ijseke/ijseke23.html#HurtadoCCG13,https://doi.org/10.1142/S021819401350037X +Francisco M. de Vasconcelos Jr.,Organizing the Software Development Process Knowledge: An Approach Based on Patterns.,1998,8,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke8.html#VasconcelosW98,https://doi.org/10.1142/S0218194098000261 +Mohammed Nazim Uddin,Experts Search and Rank with Social Network: an Ontology-Based Approach.,2013,23,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke23.html#UddinDOJJ13,https://doi.org/10.1142/S0218194013400032 +Andres H. Zapata,An Empirical Study into the Accuracy of IT Estimations and its Influencing Factors.,2013,23,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke23.html#ZapataC13,https://doi.org/10.1142/S0218194013400081 +Allen S. Parrish,Applying Conventional Unit Testing Techniques to Abstract Data Type Operations.,1994,4,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke4.html#ParrishC94,https://doi.org/10.1142/S0218194094000064 +Paul A. Bailes,Towards an Open Software Conversion Architecture.,1995,5,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke5.html#BailesACJP95,https://doi.org/10.1142/S0218194095000216 +Alexander Egyed,Supporting Software Understanding with Automated Requirements Traceability.,2005,15,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke15.html#EgyedG05,https://doi.org/10.1142/S0218194005002464 +Hai Hu,An Improved Approach to Adaptive Testing.,2009,19,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke19.html#HuJC09,https://doi.org/10.1142/S0218194009004349 +Jingzhou Li,Software Effort Estimation by Analogy Using Attribute Selection Based on Rough Set Analysis.,2008,18,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke18.html#LiR08,https://doi.org/10.1142/S0218194008003532 +Claude Moulin,Harmonization between Personal and Shared Memories.,2010,20,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke20.html#MoulinL10,https://doi.org/10.1142/S0218194010004864 +Jian Zhang,A Constraint Solver and Its Application to Path Feasibility Analysis.,2001,11,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke11.html#ZhangW01,https://doi.org/10.1142/S0218194001000487 +Oh-Cheon Kwon,Software Configuration Management for a Reusable Software Library within a Software Maintenance Environment.,1998,8,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke8.html#KwonBM98,https://doi.org/10.1142/S0218194098000273 +Ionel Muscalagiu,Experimental Analysis of the Effects of Agent Synchronization in Asynchronous Search Algorithms.,2008,18,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke18.html#MuscalagiuVCPP08,https://doi.org/10.1142/S0218194008003799 +Pierfrancesco Bellini,Exploiting Intelligent Content via AXMEDIS/MPEG-21 for Modelling and Distributing News.,2011,21,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke21.html#BelliniBN11,https://doi.org/10.1142/S0218194011005141 +Pin-Hao Chi,A Fast Protein Structure Retrieval System Using Image-Based Distance Matrices and Multidimensional Index.,2005,15,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke15.html#ChiSS05,https://doi.org/10.1142/S0218194005002439 +Chung-Horng Lung,Software Architecture Decomposition Using Attributes.,2007,17,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke17.html#LungXZ07,https://doi.org/10.1142/S0218194007003410 +Vasile Claudiu Kifor,Quality System for production Software (QSPS): an Innovative Approach to Improve the Quality of production Software.,2013,23,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke23.html#KiforTB13,https://doi.org/10.1142/S0218194013500319 +W. David Hurley,Integrating User Interface Development and Modern Software Development.,1992,2,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke2.html#Hurley92,https://doi.org/10.1142/S0218194092000117 +Zhanqi Cui,Verifying Aspect-Oriented Models against Crosscutting Properties.,2013,23,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke23.html#CuiWLBZL13,https://doi.org/10.1142/S0218194013400123 +Bangtao Chen,Dynamic Behaviors of High-G Mems Accelerometer Incorporated with Novel Micro-Flexures.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#ChenMLI05,https://doi.org/10.1142/S0218194005002129 +Timothy K. Shih,An Object-Oriented Design Complexity Metric Based on Inheritance Relationships.,1998,8,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke8.html#ShihLPW98,https://doi.org/10.1142/S0218194098000297 +Avinash Sahay,An Incremental Verification Algorithm for Real-Time Systems.,1999,9,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke9.html#SahayTS99,https://doi.org/10.1142/S0218194099000139 +Ying Li,Guest Editors' Introduction.,2016,26,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke26.html#LiM16,https://doi.org/10.1142/S0218194016020010 +Gerardo Canfora,An Incremental Object-Oriented Migration Strategy for RPG Legacy Systems.,1999,9,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke9.html#CanforaLL99,https://doi.org/10.1142/S0218194099000036 +Bruce W. Weide,A Framework for Modeling Software Engineering Processes.,1993,3,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke3.html#WeideD93,https://doi.org/10.1142/S0218194093000161 +Kazuhiro Ogata 0001,Proof Score Approach to Analysis of Electronic Commerce Protocols.,2010,20,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke20.html#OgataF10,https://doi.org/10.1142/S0218194010004712 +Huaizhong Li,Dsp-Based Motion Control of a Non-Commutated Dc Linear Motor Module.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#LiGLJC05,https://doi.org/10.1142/S0218194005002063 +Günther Ruhe,Guest Editor's Introduction.,2003,13,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke13.html#Ruhe03,https://doi.org/10.1142/S021819400300141X +Grigoris Antoniou,The Role of Nonmonotonic Representations in Requirements Engineering.,1998,8,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke8.html#Antoniou98,https://doi.org/10.1142/S0218194098000212 +Michael Eonsuk Shin,Design of Wrapper for Self-Management of COTS Components.,2009,19,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke19.html#ShinP09,https://doi.org/10.1142/S0218194009004246 +Reidar Conradi,From Software Experience Databases to Learning Organizations.,2000,10,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke10.html#Conradi00,https://doi.org/10.1142/S0218194000000274 +Vahid Khatibi Bardsiri,Towards Improvement of Analogy-Based Software Development Effort Estimation: A Review.,2014,24,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke24.html#BardsiriJK14,https://doi.org/10.1142/S0218194014500351 +Luqi,The Dynamical Models For Software Technology Transition.,2004,14,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke14.html#LuqiZS04,https://doi.org/10.1142/S0218194004001592 +Guolin Xu,Multi-Channel Biotelemetry System Using Microcontroller with Uhf Transmit Function.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#XuTS05,https://doi.org/10.1142/S0218194005002142 +Christine W. Chan,From Knowledge Modeling To Ontology Construction.,2004,14,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke14.html#Chan04,https://doi.org/10.1142/S0218194004001816 +A. N. Kirillov,The Stabilization Problem for Certain Class of Ecological Systems.,1997,7,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke7.html#Kirillov97,https://doi.org/10.1142/S021819409700014X +Martin David Katz,Constraint Propagation in Software Libraries of Transformation Systems.,1992,2,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke2.html#KatzV92,https://doi.org/10.1142/S0218194092000178 +Anthony S. Karrer,Meta-Environments for Software Production.,1993,3,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke3.html#KarrerS93,https://doi.org/10.1142/S0218194093000070 +I. I. Eremin,Delta-Plan-Es - the Interactive System of Numerical Analysis of improper Linear Programs.,1993,3,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke3.html#EreminP93,https://doi.org/10.1142/S0218194093000203 +David Eichmann,Assessing Repository Technology: Where do We Go from Here?,1992,2,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke2.html#Eichmann92,https://doi.org/10.1142/S0218194092000221 +Noriko Hanakawa,Project Reliability Growth Model Based on Curves of Accumulated Communication Topics for Software Development.,2010,20,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke20.html#Hanakawa10,https://doi.org/10.1142/S0218194010004906 +Soe-Tsyr Yuan,An Infrastructure for Engineering Cooperative Agents.,2000,10,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke10.html#YuanW00,https://doi.org/10.1142/S0218194000000377 +E. Ramaraj,Design Optimization Metrics for UML Based Object-Oriented Systems.,2007,17,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke17.html#RamarajD07,https://doi.org/10.1142/S0218194007003252 +Daniel Rodríguez-García,Defining Software Process Model Constraints with Rules Using OWL and SWRL.,2010,20,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke20.html#Rodriguez-GarciaBAN10,https://doi.org/10.1142/S0218194010004876 +Augusto Celentano,Guest Editors' Introduction.,2011,21,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke21.html#CelentanoY11,https://doi.org/10.1142/S0218194011005207 +Janusz Sobecki,Comparison of Selected Swarm Intelligence Algorithms in Student Courses Recommendation Application.,2014,24,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke24.html#Sobecki14,https://doi.org/10.1142/S0218194014500041 +Carlos Monsalve,Measuring Software Functional Size from Business Process Models.,2011,21,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke21.html#MonsalveAA11,https://doi.org/10.1142/S0218194011005359 +Shasha Li,Question-Oriented Answer Summarization via Term Hierarchical Structure.,2011,21,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke21.html#LiL11,https://doi.org/10.1142/S0218194011005475 +Jason Van Hulse,An Empirical Evaluation of Repetitive Undersampling Techniques.,2010,20,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke20.html#HulseKN10,https://doi.org/10.1142/S0218194010004682 +Quan Zou 0003,"A ""Resource Package""-Oriented Approach for Remote Sensing Analysis Modeling - Dust Storm Monitoring Model as Example.",2014,24,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke24.html#ZouLYC14,https://doi.org/10.1142/S0218194014500284 +Sanjay Bhansali,A Knowledge-Assisted Approach to Parameterized Reuse.,1996,6,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke6.html#Bhansali96,https://doi.org/10.1142/S0218194096000260 +Kehan Gao,The Use of Ensemble-Based Data Preprocessing Techniques for Software Defect Prediction.,2014,24,International Journal of Software Engineering and Knowledge Engineering,9,db/journals/ijseke/ijseke24.html#GaoKN14,https://doi.org/10.1142/S0218194014400105 +Tiago M. Nascimento,Program Matching through Code Analysis and Artificial Neural Networks.,2012,22,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke22.html#NascimentoBPMC12,https://doi.org/10.1142/S0218194012400049 +Gennaro Costagliola,A Metric for the Size Estimation of Object-Oriented Graphical User Interfaces.,2000,10,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke10.html#CostagliolaFTV00,https://doi.org/10.1142/S0218194000000304 +Natalia Juristo Juzgado,Guest Editor's Introduction.,1998,8,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke8.html#Juzgado98,https://doi.org/10.1142/S0218194098000236 +Paolo Ciaccia,Formal Requirements and Design Specifications: The Clepsydra Methodology.,1997,7,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke7.html#CiacciaCP97,https://doi.org/10.1142/S0218194097000023 +Koen Vanhoof,Comparing Two Hybrid Expert System Shells.,1994,4,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke4.html#VanhoofS94,https://doi.org/10.1142/S0218194094000088 +Barbara Dellen,Enriching Software Process Support by Knowledge-Based Techniques.,1997,7,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke7.html#DellenMMV97,https://doi.org/10.1142/S0218194097000102 +Tegegne Marew,Systematic Functional Decomposition in a Product Line Using Aspect-oriented Software Development: a Case Study.,2007,17,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke17.html#MarewKB07,https://doi.org/10.1142/S0218194007003112 +Cuauhtémoc López Martín,Applying Expert Judgment to Improve an Individual's Ability to Predict Software Development Effort.,2012,22,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke22.html#MartinA12,https://doi.org/10.1142/S0218194012500118 +Radoslaw Katarzyniak,Integration of Modal and Fuzzy Methods of Knowledge Representation in Artificial Agents.,2013,23,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke23.html#KatarzyniakP13,https://doi.org/10.1142/S0218194013400020 +Yunxin Fan,Development of Real-Time Simulation Application Software for Four-Quadrant Converter System Based on MATLAB.,2018,28,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke28.html#FanYZF18,https://doi.org/10.1142/S0218194018400090 +Jeongwon Baeg,An Adaptive User Navigation Mechanism and its Evaluation.,1995,5,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke5.html#BaegHF95,https://doi.org/10.1142/S0218194095000265 +Gerardo Canfora,How Distribution Affects the Success of Pair Programming.,2006,16,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke16.html#CanforaCLV06,https://doi.org/10.1142/S0218194006002756 +Leydi Caballero,How Agile Developers Integrate User-Centered Design Into Their Processes: A Literature Review.,2016,26,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke26.html#CaballeroMS16,https://doi.org/10.1142/S0218194016500418 +Lalit M. Patnaik,Specification of Real-Time Systems.,1993,3,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke3.html#PatnaikM93,https://doi.org/10.1142/S0218194093000136 +,Guest Editors' Introduction.,2007,17,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke17.html#X07,https://doi.org/10.1142/S0218194007003100 +Jiacun Wang,Performance Analysis of Traffic Control Systems Based upon Stochastic Timed Petri Net Models.,2000,10,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke10.html#WangDJ00,https://doi.org/10.1142/S0218194000000365 +Zhong Sheng Qian,SXM-Based Web Test Generation with Respect to Logic Coverage Criteria.,2017,27,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke27.html#Qian17,https://doi.org/10.1142/S0218194017500206 +Arnon Sturm,The Application-Based Domain Analysis Approach and its Object-Process Methodology Implementation.,2008,18,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke18.html#SturmDS08,https://doi.org/10.1142/S0218194008004045 +Toby H. W. Lam,Master: an Intelligent Ontology-Based Multi-Agent System for Sightseer.,2009,19,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke19.html#LamLL09,https://doi.org/10.1142/S021819400900412X +Bassey Isong,A Systematic Review of the Empirical Validation of Object-Oriented Metrics towards Fault-proneness Prediction.,2013,23,International Journal of Software Engineering and Knowledge Engineering,10,db/journals/ijseke/ijseke23.html#IsongO13,https://doi.org/10.1142/S0218194013500484 +Frances M. T. Brazier,Deliberative Evolution in Multi-Agent Systems.,2001,11,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke11.html#BrazierJTW01,https://doi.org/10.1142/S0218194001000670 +Du Zhang,Granularities and Inconsistencies in Big Data Analysis.,2013,23,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke23.html#Zhang13,https://doi.org/10.1142/S0218194013500241 +Feng Zhao 0003,Expanding Approach to Information Retrieval Using Semantic Similarity Analysis Based on WordNet and Wikipedia.,2012,22,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke22.html#ZhaoFYJZ12,https://doi.org/10.1142/S0218194012500088 +Jimin Hwa,Search-Based Approaches for Software Module Clustering Based on Multiple Relationship Factors.,2017,27,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke27.html#HwaYSB17,https://doi.org/10.1142/S0218194017500395 +Vitus S. W. Lam,Equivalence Checking of Communicating UML Statechart Diagrams.,2012,22,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke22.html#LamP12,https://doi.org/10.1142/S0218194012500076 +Jungho Kim,EMSA: Extensibility Metric for Software Architecture.,2018,28,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke28.html#KimKAL18,https://doi.org/10.1142/S0218194018500134 +Jin Song Dong,Formal Designs for Embedded and Hybrid Systems.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#DongHM05,https://doi.org/10.1142/S0218194005002117 +Thanasis Hadzilacos,On the Software and Knowledge Engineering Aspects of the Educational Process.,2007,17,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke17.html#HadzilacosKP07,https://doi.org/10.1142/S0218194007003434 +Dimitris Panagiotou,Leveraging Software Reuse with Knowledge Management in Software Development.,2011,21,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke21.html#PanagiotouM11,https://doi.org/10.1142/S0218194011005414 +Simon L. Winberg,A Pilot Study of Productive versus Nonproductive Knowledge Acquisition in Embedded Software Development.,2007,17,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke17.html#WinbergS07,https://doi.org/10.1142/S0218194007003380 +Lu Liu,Structure2Content: An Incremental Method for Detecting Outlier Correlation in Heterogeneous Network.,2017,27,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke27.html#LiuZP17,https://doi.org/10.1142/S0218194017500383 +Mohammed Rafiq Uddin,Microcontroller Based Light Control.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#UddinMI05,https://doi.org/10.1142/S021819400500235X +Steve Counsell,Design Level Hypothesis Testing Through Reverse Engineering Of Object-Oriented Software.,2004,14,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke14.html#CounsellNM04,https://doi.org/10.1142/S0218194004001609 +Chamundeswari Arumugam,Developmental Size estimation for Object-Oriented Software Based on Analysis Model.,2013,23,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke23.html#ArumugamB13,https://doi.org/10.1142/S0218194013500083 +Bo Chen,A Generic Formal Framework For Constructing Agent Interaction Protocols.,2005,15,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke15.html#ChenS05,https://doi.org/10.1142/S0218194005001884 +Li Wang 0032,A Risk-Based Maintenance Decision-Making Approach for Railway Asset Management.,2018,28,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke28.html#WangAQJ18,https://doi.org/10.1142/S0218194018400065 +Beat Liver,A Functional Representation for Software Reuse and Design.,1995,5,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke5.html#LiverA95,https://doi.org/10.1142/S0218194095000137 +Omid Bushehrian,Software Performance Engineering by Simulated-Based Object Deployment.,2013,23,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke23.html#Bushehrian13,https://doi.org/10.1142/S0218194013500058 +Xi Sun,An Approach to Constructing High-Available Decentralized Systems via Self-Adaptive Components.,2009,19,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke19.html#SunZZJM09,https://doi.org/10.1142/S0218194009004295 +Yongjian Li,Design of a CIL Connector to Spin.,2008,18,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke18.html#LiX08,https://doi.org/10.1142/S0218194008003568 +A. P. Cherenkov,Determination of Solvability Boundaries of Optimization Problems in Parameter Space.,1993,3,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke3.html#CherenkovMS93,https://doi.org/10.1142/S0218194093000239 +Pao-Ann Hsiung,Device-Centric Low-Power Scheduling for Real-Time Embedded Systems.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#HsiungK05,https://doi.org/10.1142/S021819400500194X +Woojin Lee,A Framework for Automated Construction of Node Software using Low-Level Attributes in USN Application Development.,2012,22,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke22.html#LeeKK12,https://doi.org/10.1142/S0218194012500192 +Auri Marcelo Rizzo Vincenzi,Bayesian-Learning Based Guidelines to Determine Equivalent Mutants.,2002,12,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke12.html#VincenziNMDR02,https://doi.org/10.1142/S021819400200113X +Vitus S. W. Lam,On pi-Calculus Semantics as a Formal Basis for UML Activity Diagrams.,2008,18,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke18.html#Lam08,https://doi.org/10.1142/S0218194008003787 +Daniel E. Cooke,Guest Editor's Introduction.,1992,2,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke2.html#Cooke92,https://doi.org/10.1142/S0218194092000300 +Xiaowu Chen,Automatic Image Completion with Structure Propagation and Texture Synthesis.,2010,20,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke20.html#ChenZXZ10,https://doi.org/10.1142/S0218194010005055 +Paul A. Savory,The Impact of Intelligent Tools on Simulation Methodology.,1996,6,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke6.html#SavoryM96,https://doi.org/10.1142/S0218194096000077 +Mourad Badri,Investigating the Effect of Aspect-Oriented Refactoring on the Unit Testing Effort of Classes: An Empirical Evaluation.,2017,27,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke27.html#BadriKB17,https://doi.org/10.1142/S0218194017500280 +W. David Hurley,A Tool for Constructing Interactive Software.,1991,1,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke1.html#Hurley91,https://doi.org/10.1142/S0218194091000081 +Umit Can,Automatic Mining of Quantitative Association Rules with Gravitational Search Algorithm.,2017,27,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke27.html#CanA17,https://doi.org/10.1142/S0218194017500127 +Eugeniusz Eberbach,Semal: a Cost Language Based on the Calculus of Self-Modifiable Algorithms.,1994,4,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke4.html#Eberbach94,https://doi.org/10.1142/S0218194094000192 +Lonnie R. Welch,Reverse Engineering of Computer-Based Control Systems.,1996,6,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke6.html#WelchYRKHWSM96,https://doi.org/10.1142/S0218194096000223 +Bernhard Peischl,Automated Debugging of Verilog Designs.,2012,22,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke22.html#PeischlRW12,https://doi.org/10.1142/S0218194012500209 +Shaoying Liu,A Formal Definition of FRSM and Applications.,1998,8,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke8.html#Liu98,https://doi.org/10.1142/S0218194098000145 +Bernd J. Krämer,Guest Editors' Introduction.,1992,2,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke2.html#KramerP92,https://doi.org/10.1142/S0218194092000294 +Günther Ruhe,Trade-off Analysis for Requirements Selection.,2003,13,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke13.html#RuheEP03,https://doi.org/10.1142/S0218194003001378 +José M. Drake,Object-Oriented Analysis: Criteria and Case Study.,1993,3,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke3.html#DrakeTLZ93,https://doi.org/10.1142/S021819409300015X +Giuseppe Della Penna,An XML Based Methodology to Model and Use Scenarios in the Software Development Process.,2008,18,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke18.html#PennaLOI08,https://doi.org/10.1142/S0218194008003866 +Chien-Chung Chan,Incremental Learning of Production Rules from Examples under Uncertainty: a Rough Set Approach.,1991,1,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke1.html#Chan91,https://doi.org/10.1142/S0218194091000299 +Perry Alexander,Task Analysis and Design Plans in Formal Specification Design.,1998,8,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke8.html#Alexander98,https://doi.org/10.1142/S0218194098000133 +Paolo Ancilotti,A Development Environment for Hard Real-Time Applications.,1996,6,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke6.html#AncilottiBNS96,https://doi.org/10.1142/S0218194096000156 +Chung-Horng Lung,An Approach to Quantitative Software Architecture Sensitivity Analysis.,2000,10,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke10.html#LungK00,https://doi.org/10.1142/S0218194000000079 +Samira Sadaoui,An Efficient LOTOS-Based Framework for Describing and Solving (Temporal) CSPs.,2009,19,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke19.html#SadaouiMC09,https://doi.org/10.1142/S0218194009004416 +Lei Zhao,A Fault Localization Framework to Alleviate the Impact of Execution Similarity.,2013,23,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke23.html#ZhaoZWY13,https://doi.org/10.1142/S0218194013500289 +Hongyue He,Ontology-Based Semantic Verification for UML Behavioral Models.,2013,23,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke23.html#HeWDZZ13,https://doi.org/10.1142/S0218194013500010 +Taghi M. Khoshgoftaar,Detecting Noisy Instances with the Ensemble Filter: a Study in Software Quality Estimation.,2006,16,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke16.html#KhoshgoftaarJS06,https://doi.org/10.1142/S0218194006002677 +Junkai Yi,Monitoring cumulated Anomaly in Databases.,2009,19,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke19.html#YiLL09,https://doi.org/10.1142/S0218194009004210 +Jian-Wei Tian,Retrieving Deep Web Data through Multi-Attributes Interfaces with Structured Queries.,2011,21,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke21.html#TianQL11,https://doi.org/10.1142/S0218194011005396 +Topi Haapio,Exploring the Effort of General Software Project Activities with Data Mining.,2011,21,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke21.html#HaapioM11,https://doi.org/10.1142/S0218194011005438 +Martin J. Shepperd,Software Metrics in Software Engineering and Artificial Intelligence.,1991,1,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke1.html#ShepperdI91,https://doi.org/10.1142/S0218194091000305 +Sérgio Agostinho,Aspect-Oriented Specification: a Case Study in Space Domain.,2010,20,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke20.html#AgostinhoMMAFRRBC10,https://doi.org/10.1142/S0218194010004943 +Weihua Huang,Fuzzy Clustering with Feature Weight Preferences for Load Balancing in Cloud.,2018,28,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke28.html#HuangMDXG18,https://doi.org/10.1142/S021819401850016X +Robert G. Reynolds,Guest Editor's Introduction: Acquisition of Software Engineering Knowledge.,1991,1,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke1.html#Reynolds91,https://doi.org/10.1142/S0218194091000238 +Daniela Grigori,Coo-Flow: A Process Technology To Support Cooperative Processes.,2004,14,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke14.html#GrigoriCG04,https://doi.org/10.1142/S021819400400152X +Tsui-Ping Chang,A Sliding-Window Method to Discover Recent Frequent Query Patterns from XML Query Streams.,2014,24,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke24.html#Chang14,https://doi.org/10.1142/S021819401450034X +Chung-Horng Lung,Computer Simulation Software Reuse by Generic/Specific Domain Modeling Approach.,1994,4,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke4.html#LungCMU94,https://doi.org/10.1142/S0218194094000052 +Owusu-Ansah Agyapong,The Design of an Expert System for Domain Knowledge Engineering and Decision Making: A Case Study in the Criminal Justice System.,1998,8,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke8.html#AgyapongB98,https://doi.org/10.1142/S0218194098000042 +Reda Alhajj,Guest Editors' Introduction.,2010,20,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke20.html#AlhajjZ10,https://doi.org/10.1142/S0218194010004724 +Mark Last,Using Data Mining For Automated Software Testing.,2004,14,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke14.html#LASTFK04,https://doi.org/10.1142/S0218194004001737 +Claus Pahl,A Template-Driven Approach for Maintainable Service-Oriented Information Systems Integration.,2009,19,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke19.html#PahlZG09,https://doi.org/10.1142/S0218194009004465 +Krzysztof Sacha,On the Semantics of Architectural Decisions.,2016,26,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke26.html#Sacha16,https://doi.org/10.1142/S0218194016500145 +Makoto Sakai,A New Framework for Improving Software Development Process on Small Computer Systems.,1997,7,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke7.html#SakaiMT97,https://doi.org/10.1142/S0218194097000096 +Dmitriy Dunaev,Parametrization and Evaluation of Intermediate Level Obfuscator.,2017,27,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke27.html#DunaevL17,https://doi.org/10.1142/S0218194017500371 +Timothy Lethbridge,Metrics for Concept-Oriented Knowledge Bases.,1998,8,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke8.html#Lethbridge98,https://doi.org/10.1142/S021819409800011X +Marco Scotto,An Empirical Analysis of the Open Source Development Process Based on Mining of Source Code Repositories.,2007,17,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke17.html#ScottoSS07,https://doi.org/10.1142/S0218194007003215 +Cyrille Dongmo,Addressing the Construction of Z and Object-Z with Use Case Maps (UCMs).,2014,24,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke24.html#DongmoP14,https://doi.org/10.1142/S0218194014500120 +Andrej Kocbek,Towards a Reusable Fault Handling in WS-BPEL.,2014,24,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke24.html#KocbekJ14,https://doi.org/10.1142/S0218194014500107 +Jose Ricardo da Silva Jr.,Multi-Perspective Exploratory Analysis of Software Development Data.,2015,25,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke25.html#SilvaCMS15,https://doi.org/10.1142/S0218194015400033 +Chi-Lu Yang,A Self-Adaptable Indoor Localization Scheme for Wireless Sensor Networks.,2011,21,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke21.html#YangCCCC11,https://doi.org/10.1142/S0218194011005153 +Junhyug Noh,Machine Learning Models and Statistical Measures for Predicting the Progression of IgA Nephropathy.,2015,25,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke25.html#NohPLLKKM15,https://doi.org/10.1142/S0218194015400227 +Yuanping Xu,Novel Research on a Fibration Knowledge-Based Solution for Engineered Surface Tolerances within the Modern GPS Context.,2016,26,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke26.html#XuSZ16,https://doi.org/10.1142/S0218194016500297 +Ninh-Thuan Truong,An Approach to Checking the Compliance of User Permission Policy in Software Development.,2013,23,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke23.html#TruongN13,https://doi.org/10.1142/S0218194013500344 +Vahid Rafe,A Novel Approach to Verify Graph Schema-Based Software Systems.,2009,19,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke19.html#RafeR09,https://doi.org/10.1142/S0218194009004398 +Gail Corbitt,Assessing Proximity to Fruition: a Case Study of Phases in Case Technology Transfer.,1991,1,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke1.html#CorbittNB91,https://doi.org/10.1142/S0218194091000160 +Xudong He,Specifying Software Architectural Connectors in SAM.,2000,10,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke10.html#HeD00,https://doi.org/10.1142/S0218194000000201 +Xiao-Dan Li,Reliability and Performance Analysis of Architecture-Based Software Implementing Restarts and Retries Subject to Correlated Component Failures.,2015,25,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke25.html#LiYF15,https://doi.org/10.1142/S0218194015500266 +Douglas A. Stuart,A Methodology and Support Tools for Analysis of Real-Time Specifications.,1996,6,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke6.html#StuartMJ96,https://doi.org/10.1142/S021819409600017X +Rongcun Wang,Clustering Analysis of Function Call Sequence for Regression Test Case Reduction.,2014,24,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke24.html#WangHLQ14,https://doi.org/10.1142/S0218194014500387 +Arvinder Kaur,Statistical Comparison of Modelling Methods for Software Maintainability Prediction.,2013,23,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke23.html#KaurK13,https://doi.org/10.1142/S0218194013500198 +Cartik R. Kothari,Enhancing OWL Ontologies with Relation Semantics.,2008,18,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke18.html#KothariR08,https://doi.org/10.1142/S0218194008003660 +Kenneth J. Fowler,A Software Engineering Design Tool for Modeling Hard Real-Time Performance.,1996,6,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke6.html#Fowler96,https://doi.org/10.1142/S0218194096000090 +Kyo Chul Kang,Parts: a Temporal Logic-Based Real-Time Software Specification Method Supporting Multiple Viewpoints.,1995,5,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke5.html#KangK95,https://doi.org/10.1142/S0218194095000204 +Rick Kazman,Software Architecture - Guest Editors' Introduction.,2001,11,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke11.html#Kazman01,https://doi.org/10.1142/S0218194001000645 +Dianxiang Xu,Modeling and Analyzing Multi-Agent Behaviors Using Predicate/Transition Nets.,2003,13,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke13.html#XuVIY03,https://doi.org/10.1142/S0218194003001184 +Mario Piattini,A Metric-Based Approach for Predicting Conceptual Data Models Maintainability.,2001,11,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke11.html#PiattiniGJ01,https://doi.org/10.1142/S0218194001000736 +Zahir Tari,A Framework for Method Evolution and Behavior Consistency in Object-Oriented Databases.,1996,6,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke6.html#TariL96,https://doi.org/10.1142/S0218194096000132 +Maja Pusnik,Investigation of Developer's Perceptions in XML Schema Development Using Textual and Visual Tool Types.,2014,24,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke24.html#PusnikPHJS14,https://doi.org/10.1142/S021819401450017X +He Jiang,PRST: A PageRank-Based Summarization Technique for Summarizing Bug Reports with Duplicates.,2017,27,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke27.html#JiangNZZR17,https://doi.org/10.1142/S0218194017500322 +Hassan Haghighi,Towards a Calculus for Nondeterministic Schemas in Z.,2012,22,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke22.html#HaghighiM12,https://doi.org/10.1142/S0218194012500222 +Maya Daneva,Uncertain Context Factors in ERP Project Estimation are an Asset: Insights from a Semi-Replication Case Study in a Financial Services Firm.,2011,21,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke21.html#Daneva11,https://doi.org/10.1142/S0218194011005335 +Leon Sterling,"On the Animation of ""not Executable"" Specifications by Prolog.",1996,6,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke6.html#SterlingCT96,https://doi.org/10.1142/S0218194096000041 +K. S. Ravichandran,A Novel Approach for Optimal Grouping of Reusable Software Components for Component Based Software Development Systems.,2013,23,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke23.html#RavichandranSS13,https://doi.org/10.1142/S0218194013500253 +Yuanyuan Cai,Cloud Computing Research Analysis Using Bibliometric Method.,2015,25,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke25.html#CaiLWX15,https://doi.org/10.1142/S0218194015400203 +Vahid Rafe,Formal Analysis of UML 2.0 Activities Using Graph Transformation Systems.,2010,20,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke20.html#RafeRR10,https://doi.org/10.1142/S0218194010004918 +Young-Gab Kim,Formal Verification of Bundle Authentication Mechanism in Osgi Service Platform: Ban Logic.,2006,16,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke16.html#KimMJB06,https://doi.org/10.1142/S0218194006002793 +Isabel María del águila,Requirement Risk Level Forecast Using Bayesian Networks Classifiers.,2011,21,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke21.html#AguilaS11,https://doi.org/10.1142/S0218194011005219 +Giovanni Denaro,Towards Industrially Relevant Fault-Proneness Models.,2003,13,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke13.html#DenaroPM03,https://doi.org/10.1142/S0218194003001366 +Sumanth Yenduri,Performance Evaluation of Imputation Methods for Incomplete Datasets.,2007,17,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke17.html#YenduriI07,https://doi.org/10.1142/S0218194007003173 +Shengtao Sun,The Application of a Hierarchical Tree Method to Ontology Knowledge Engineering.,2012,22,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke22.html#SunLL12,https://doi.org/10.1142/S0218194012500155 +Mauricio Amaral de Almeida,An Investigation on the Use of Machine Learned Models for Estimating Software Correctability.,1999,9,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke9.html#AlmeidaLM99,https://doi.org/10.1142/S0218194099000310 +Zhenchang Xing,Understanding the Evolution and Co-evolution of Classes in Object-oriented Systems.,2006,16,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke16.html#XingS06,https://doi.org/10.1142/S0218194006002707 +Aniello Cimitile,Guest Editor's Introduction: Adding Pieces to the Software Evolution Puzzle.,1995,5,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke5.html#Cimitile95,https://doi.org/10.1142/S0218194095000307 +Juan Carlos Esteva,Identifying Reusable Software Components by Induction.,1991,1,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke1.html#EstevaR91,https://doi.org/10.1142/S0218194091000202 +Marko Boskovic,Automated Staged Configuration with Semantic Web Technologies.,2010,20,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke20.html#BoskovicBGMKH10,https://doi.org/10.1142/S0218194010004827 +Iman Avazpour,Generating Reusable Visual Notations Using Model Transformation.,2015,25,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke25.html#AvazpourGV15,https://doi.org/10.1142/S0218194015400100 +Lily Chang,A Methodology to Analyze Multi-Agent Systems Modeled in High Level Petri Nets.,2015,25,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke25.html#ChangH15,https://doi.org/10.1142/S0218194015500230 +Daniel E. Cooke,Guest Editor's Introduction.,2009,19,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke19.html#Cooke09,https://doi.org/10.1142/S0218194009004301 +W. Eric Wong,Reachability Graph-Based Test Sequence Generation for Concurrent Programs.,2008,18,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke18.html#WongL08,https://doi.org/10.1142/S0218194008003878 +Hiroaki Fukuda,SyncAS: A Virtual Block Approach to Tame Asynchronous Programming.,2015,25,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke25.html#FukudaL15,https://doi.org/10.1142/S0218194015400252 +Fei Xie,Semantic Analysis and Synthesis of Complex Biological Systems.,2005,15,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke15.html#XieSLC05,https://doi.org/10.1142/S0218194005002415 +Jocelyn Simmonds,A Tool Based on DL for UML Model Consistency Checking.,2008,18,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke18.html#SimmondsBHR08,https://doi.org/10.1142/S0218194008003829 +Xiaoying Bai,Risk Assessment and Adaptive Group Testing of Semantic Web Services.,2012,22,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke22.html#BaiKY12,https://doi.org/10.1142/S0218194012500167 +Saulius Astromskis,Continuous CMMI Assessment Using Non-Invasive Measurement and Process Mining.,2014,24,International Journal of Software Engineering and Knowledge Engineering,9,db/journals/ijseke/ijseke24.html#AstromskisJSS14,https://doi.org/10.1142/S0218194014400117 +Baojun Ma,Investigating Associative Classification for Software Fault Prediction: An Experimental Perspective.,2014,24,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke24.html#MaZCZB14,https://doi.org/10.1142/S021819401450003X +Giuseppe Visaggio,Guest Editors' Introduction.,1997,7,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke7.html#Visaggio97,https://doi.org/10.1142/S0218194097000084 +Zhongyu Lu,A Survey Of Xml Applications On Science And Technology.,2005,15,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke15.html#Lu05,https://doi.org/10.1142/S0218194005001902 +Achyanta Kumar Sarmah,A New Pattern-Based Flexible Approach for Maintaining a Constrained Workflow.,2014,24,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke24.html#SarmahSH14,https://doi.org/10.1142/S0218194014500065 +Wasif Afzal,Resampling Methods in Software Quality Classification.,2012,22,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke22.html#AfzalTF12,https://doi.org/10.1142/S0218194012400037 +Harald C. Gall,Using Domain Knowledge to Improve Reverse Engineering.,1996,6,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke6.html#GallKM96,https://doi.org/10.1142/S021819409600020X +Mikael Svahnberg,A Quality-Driven Decision-Support Method for Identifying Software Architecture Candidates.,2003,13,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke13.html#SvahnbergWLM03,https://doi.org/10.1142/S0218194003001421 +Heather Richter,Tagging Knowledge Acquisition Sessions To Facilitate Knowledge Traceability.,2004,14,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke14.html#RichterAMF04,https://doi.org/10.1142/S0218194004001543 +Päivi Parviainen,A Survey of Existing Requirements Engineering Technologies and their Coverage.,2007,17,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke17.html#ParviainenT07,https://doi.org/10.1142/S0218194007003513 +Lidong Zhai,Research Notes: User Influence in Microblog Based on Interest Graph.,2018,28,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke28.html#ZhaiWHL18,https://doi.org/10.1142/S0218194018400041 +Dehong Qiu,Reconstructing Software High-Level Architecture by Clustering Weighted Directed Class Graph.,2015,25,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke25.html#QiuZF15,https://doi.org/10.1142/S0218194015500072 +Gustavo Rossi,Designing Hypermedia Applications with Objects and Patterns.,1999,9,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke9.html#RossiSL99,https://doi.org/10.1142/S0218194099000395 +Frank Maurer,Guest Editors' Introduction.,2006,16,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke16.html#MaurerR06,https://doi.org/10.1142/S0218194006002732 +Jiawei Han 0001,On the Power of Query-Independent Compilation.,1992,2,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke2.html#Han92,https://doi.org/10.1142/S0218194092000142 +Dragan M. Bojic,A Modified Hill-Climbing Algorithm for Knowledge Test Assembly Based on Classified Criteria.,2016,26,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke26.html#BojicBPT16,https://doi.org/10.1142/S0218194016500327 +Claus Pahl,An Ontological Framework for Web Service Processes.,2008,18,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke18.html#PahlB08,https://doi.org/10.1142/S0218194008003684 +Johnny Maikeo Ferreira,Software Product Line Testing Based on Feature Model Mutation.,2017,27,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke27.html#FerreiraVQ17,https://doi.org/10.1142/S0218194017500309 +Michael L. Gibson,Computer Aided Software Engineering: Facilitating the Path for True Software and Knowledge Engineering.,1991,1,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke1.html#GibsonS91,https://doi.org/10.1142/S0218194091000093 +Taghi M. Khoshgoftaar,Using Classification Trees for Software Quality Models: Lessons Learned.,1999,9,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke9.html#KhoshgoftaarANJH99,https://doi.org/10.1142/S0218194099000140 +Jianxin Li,Using Mathematical Induction in Systematic Program Development.,1994,4,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke4.html#LiL94,https://doi.org/10.1142/S0218194094000271 +Javier Garzás,An Ontology for Understanding and Applying Object-Oriented Design Knowledge.,2007,17,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke17.html#GarzasP07,https://doi.org/10.1142/S0218194007003318 +Sai-Keung Wong,Interactive Sand Art Drawing Using RGB-D Sensor.,2018,28,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke28.html#WongCC18,https://doi.org/10.1142/S0218194018500183 +Tauhida Parveen,Detecting Emulated Environments.,2012,22,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke22.html#ParveenTAMF12,https://doi.org/10.1142/S0218194012500258 +Xiaoyong Li 0003,Research on Trust Prediction Model for Selecting Web Services Based on Multiple Decision Factors.,2011,21,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke21.html#LiZY11,https://doi.org/10.1142/S0218194011005608 +Andrea F. Abate,Rbs: a Robust Bimodal System for Face Recognition.,2007,17,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke17.html#AbateNRT07,https://doi.org/10.1142/S0218194007003379 +Luqi,The Role of Prototyping Languages in Case.,1991,1,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke1.html#Luqi91,https://doi.org/10.1142/S0218194091000135 +Niklas Hallberg,Ontology for Systems Development.,2014,24,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke24.html#HallbergJP14,https://doi.org/10.1142/S0218194014500132 +Jane Huffman Hayes,A Framework for Comparing Requirements Tracing Experiments.,2005,15,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke15.html#HayesD05,https://doi.org/10.1142/S021819400500252X +Rui Gustavo Crespo,Matching Single-Sort Algebraic Specifications for Software Reuse.,1998,8,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke8.html#Crespo98,https://doi.org/10.1142/S0218194098000224 +William W. Cohen,Automatically Exploring Hypotheses About Fault Prediction: A Comparative Study of Inductive Logic Programming Methods.,1999,9,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke9.html#CohenD99,https://doi.org/10.1142/S0218194099000292 +Yuen-Tak Yu,A Study on a Path-based Strategy for Selecting Black-box Generated Test Cases.,2001,11,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke11.html#YuTPC01,https://doi.org/10.1142/S0218194001000475 +Mats Skoglund,Improving Class Firewall Regression Test Selection by Removing the Class Firewall.,2007,17,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke17.html#SkoglundR07,https://doi.org/10.1142/S0218194007003306 +Jacques H. J. Lenting,The Frame Problem from an Engineering Perspective.,1993,3,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke3.html#LentingB93,https://doi.org/10.1142/S0218194093000124 +Semra Yilmaz Tastekin,Accounting for Product Similarity in Software Project Duration Estimation.,2016,26,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke26.html#TastekinEB16,https://doi.org/10.1142/S0218194016500042 +Yong Qin,Guest Editors' Introduction.,2018,28,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke28.html#QinAJ18,https://doi.org/10.1142/S0218194018020023 +Haiping Xu,Future Research Directions of Software Engineering and Knowledge Engineering.,2015,25,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke25.html#Xu15,https://doi.org/10.1142/S0218194015500035 +Honghua Dai,Guest Editors' Introduction.,2004,14,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke14.html#DaiW04,https://doi.org/10.1142/S0218194004001713 +Vladimir V. Mazalov,Method of Cumulative Sums and Problems of Optimal Control by Technological Processes.,1997,7,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke7.html#Mazalov97,https://doi.org/10.1142/S0218194097000126 +Yi Zhao,Control-Oriented Modeling of 2d Torsional Micromirror.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#ZhaoTZ05,https://doi.org/10.1142/S0218194005001975 +Ivan Radojevic,A New Model for Heterogeneous Embedded Systems - What Esterel and SyncCharts Need to Become a Suitable Specification Platform.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#RadojevicSR05,https://doi.org/10.1142/S0218194005001963 +Ye Wang,Proqrass: a Process-Based Approach to Quality Requirements Analysis for Service Systems.,2013,23,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke23.html#WangYWK13,https://doi.org/10.1142/S0218194013500277 +Zheng-Yang Liu,Automating Software Evolution.,1995,5,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke5.html#Liu95,https://doi.org/10.1142/S0218194095000058 +Rong-Ming Chen,A Software Architecture for Finding Motifs Using Genetic Algorithm.,2005,15,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke15.html#ChenLT05,https://doi.org/10.1142/S0218194005002440 +Stephen J. H. Yang,Specifying and Verifying Temporal Behavior of High Assurance Systems Using Reachability Tree Logic.,1999,9,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke9.html#YangCL99,https://doi.org/10.1142/S0218194099000152 +Vincent Hilaire,Formal Specification Approach of Role Dynamics in Agent Organisations: Application to the Satisfaction-Altruism Model.,2007,17,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke17.html#HilaireGKS07,https://doi.org/10.1142/S0218194007003392 +Deokyoon Ko,Suggesting Alternative Scenarios Using Use Case Specification Patterns for Requirement Completeness.,2016,26,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke26.html#KoPKPK16,https://doi.org/10.1142/S0218194016500315 +Yun-Heh Chen-Burger,Formal Support for an Informal Business Modelling Method.,2000,10,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke10.html#Chen-BurgerRS00,https://doi.org/10.1142/S0218194000000055 +Xiaowei Yan,Identifying Software Component Association With Genetic Algorithm.,2004,14,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke14.html#YanZZ04,https://doi.org/10.1142/S0218194004001695 +Xiaohong Li,Fepchecker: An Automatic Model Checker for Verifying Fairness and Non-Repudiation of Security Protocols in Web Service.,2016,26,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke26.html#LiXXHLFG16,https://doi.org/10.1142/S0218194016400027 +Lena Karlsson,Case Studies in Process Improvement through Retrospective Analysis of Release Planning Decisions.,2006,16,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke16.html#KarlssonRT06,https://doi.org/10.1142/S0218194006003014 +George Vasilakis,Knowledge-Based Representation of 3D Media.,2010,20,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke20.html#VasilakisGPCRSVP10,https://doi.org/10.1142/S0218194010004773 +Xudong He,A Comprehensive Survey of Petri Net Modeling in Software Engineering.,2013,23,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke23.html#He13,https://doi.org/10.1142/S021819401340010X +Josep Maria Brunetti,Improved Linked Data Interaction through an Automatic Information Architecture.,2012,22,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke22.html#BrunettiGGG12,https://doi.org/10.1142/S0218194012400062 +Wei Lu 0010,Improving Resilience of Software Systems: A Case Study in 3D-Online Game System.,2017,27,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke27.html#LuWBXZ17,https://doi.org/10.1142/S0218194017500012 +Maria Francesca Costabile,Designing Customized and Tailorable Visual Interactive Systems.,2008,18,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke18.html#CostabileFMMPP08,https://doi.org/10.1142/S0218194008003702 +K. H. Kim,Real-Time Object-Oriented Distributed Software Engineering and the TMO Scheme.,1999,9,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke9.html#Kim99,https://doi.org/10.1142/S0218194099000164 +Loredana Caruccio,A Tool Supporting End-User Development of Access Control in Web Applications.,2015,25,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke25.html#CaruccioDDGP15,https://doi.org/10.1142/S0218194015400112 +Jen Seevinck,Emergence in Interactive Artistic Visualization.,2015,25,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke25.html#Seevinck15,https://doi.org/10.1142/S0218194015400070 +Nestor Rychtyckyj,Using Cultural Algorithms to re-engineer Large-scale Semantic Networks.,2005,15,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke15.html#RychtyckyjR05,https://doi.org/10.1142/S0218194005002506 +Jens H. Weber-Jahnke,Design of Decoupled Clinical Decision Support for Service-Oriented Architectures.,2009,19,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke19.html#Weber-Jahnke09,https://doi.org/10.1142/S0218194009004143 +Ji-Hyun Lee,Component Contract-Based Interface Specification Technique Using Z.,2002,12,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke12.html#LeeYC02,https://doi.org/10.1142/S0218194002000974 +Miroslav Bures,Identification of Potential Reusable Subroutines in Recorded Automated Test Scripts.,2018,28,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke28.html#BuresFJ18,https://doi.org/10.1142/S0218194018500018 +Jeongeun Choi,Test Agent System.,2002,12,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke12.html#ChoiC02,https://doi.org/10.1142/S021819400200086X +Hee-Jin Lee,A User eXperience Evaluation Framework for Mobile Usability.,2017,27,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke27.html#LeeLJB17,https://doi.org/10.1142/S0218194017500097 +Pengcheng Zhang,Android-SRV: Scenario-Based Runtime Verification of Android Applications.,2018,28,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke28.html#ZhangCG18,https://doi.org/10.1142/S0218194018500080 +Emmad Saadeh,Refactoring with Ordered Collections of Fine-Grain Transformations.,2013,23,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke23.html#SaadehK13,https://doi.org/10.1142/S0218194013500095 +Chang-Kyun Jeon,Probabilistic Approach to Predicting Risk in Software Projects Using Software Repository Data.,2015,25,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke25.html#JeonKI15,https://doi.org/10.1142/S0218194015500151 +Nikolay N. Mirenkov,Internet Multimedia Computing - Guest Editors' Introduction.,2001,11,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke11.html#MirenkovVM01,https://doi.org/10.1142/S0218194001000396 +Md. Shazzad Hosain,Multi-Key Index for Distributed Database System.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#HosainN05,https://doi.org/10.1142/S0218194005002075 +Chi Keen Low,An Automated Tool (IDAF) to Manipulate Interaction Diagrams and Fragmentations for Multi-Agent Systems.,1999,9,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke9.html#LowRC99,https://doi.org/10.1142/S0218194099000085 +Young Jun Kim,Design Of Object Model Reuse System By Cbr In System Analysis.,2004,14,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke14.html#KimK04,https://doi.org/10.1142/S0218194004001671 +Vahid Garousi,A bibliometric/Geographic Assessment of 40 Years of Software Engineering Research (1969-2009).,2013,23,International Journal of Software Engineering and Knowledge Engineering,9,db/journals/ijseke/ijseke23.html#GarousiR13,https://doi.org/10.1142/S0218194013500423 +Stephen J. Morris,Engineering via Discourse: Content Structure as an Essential Component for Multimedia Documents.,1999,9,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke9.html#MorrisF99,https://doi.org/10.1142/S0218194099000371 +Seyed Masoud Sadjadi,Trap.Net: a Realization of Transparent Shaping in .Net.,2009,19,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke19.html#SadjadiT09,https://doi.org/10.1142/S0218194009004258 +Kwok Ping Chan,Restricted Random Testing: Adaptive Random Testing by Exclusion.,2006,16,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke16.html#ChanCT06,https://doi.org/10.1142/S0218194006002926 +Mahadevan Subramaniam,An Approach for Cluster-Based Retrieval of Tests Using Cover-Coefficients.,2015,25,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke25.html#SubramaniamC15,https://doi.org/10.1142/S0218194015500163 +Fernando de Castro Netto,An Automated Approach for Scheduling Bug Fix Tasks.,2016,26,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke26.html#NettoBA16,https://doi.org/10.1142/S021819401650011X +Hyeon Soo Kim,Restructuring Programs through Program Slicing.,1994,4,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke4.html#KimKC94,https://doi.org/10.1142/S0218194094000179 +Yung Han Tan,Design of Seamless Protocol Switching Layer for Voice Over Internet Protocol (Voip) That Switches Between Bluetooth and Ieee 802.11.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#TanTH05,https://doi.org/10.1142/S0218194005002178 +Emanuele Ciapessoni,Specifying Industrial Real-Time Systems with a Temporal Logic Framework.,1996,6,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke6.html#CiapessoniCMRC96,https://doi.org/10.1142/S021819409600003X +Ben R. Whittle,Trends in Structure-Oriented Environments.,1994,4,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke4.html#WhittleGR94,https://doi.org/10.1142/S0218194094000076 +Elham Paikari,Defect Prediction using Case-Based Reasoning: an Attribute Weighting Technique Based upon sensitivity Analysis in Neural Networks.,2012,22,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke22.html#PaikariRR12,https://doi.org/10.1142/S0218194012400116 +Kai-Yuan Cai,On the Online Parameter Estimation Problem in Adaptive Software Testing.,2008,18,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke18.html#CaiCLYZ08,https://doi.org/10.1142/S0218194008003696 +Ragu Venugopal,Integrating Process Description and Execution with an Object-Oriented Paradigm.,1991,1,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke1.html#VenugopalHS91,https://doi.org/10.1142/S0218194091000196 +Jane Rathbun,In Loving Memory of Daniel Cooke.,2012,22,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke22.html#Rathbun12,https://doi.org/10.1142/S0218194012400098 +Sidney C. Bailin,A Learning-Based Software Engineering Environment for Reusing Design Knowledge.,1991,1,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke1.html#BailinGT91,https://doi.org/10.1142/S0218194091000251 +Dolores Cuadra,An OCL-Based Approach to Derive Constraint Test Cases for Database Applications.,2011,21,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke21.html#CuadraACV11,https://doi.org/10.1142/S0218194011005426 +Giovanni Cantone,Production and Maintenance of Goal-Oriented Software Measurement Models.,2000,10,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke10.html#CantoneD00,https://doi.org/10.1142/S0218194000000328 +Torgeir Dingsøyr,A Survey of Case Studies of the Use of Knowledge Management in Software Engineering.,2002,12,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke12.html#DingsoyrC02,https://doi.org/10.1142/S0218194002000962 +Jung-Yong Park,Event Normalization Methodology for Computer Game Environment Simulation.,2009,19,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke19.html#ParkP09,https://doi.org/10.1142/S0218194009004453 +Seok Won Lee,Building Decision Support Problem Domain Ontology from Natural Language Requirements for Software Assurance.,2006,16,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke16.html#LeeMGYA06,https://doi.org/10.1142/S0218194006003051 +Jinfu Chen,Detecting Implicit Security Exceptions Using an Improved Variable-Length Sequential Pattern Mining Method.,2017,27,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke27.html#ChenCTZHAO17,https://doi.org/10.1142/S0218194017500462 +Daniel Strmecki,A Systematic Literature Review on the Application of Ontologies in Automatic Programming.,2018,28,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke28.html#StrmeckiMR18,https://doi.org/10.1142/S0218194018300014 +Euijong Lee,An Evaluation Method for Content Analysis Based on Twitter Content Influence.,2017,27,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke27.html#LeeKSSB17,https://doi.org/10.1142/S0218194017500310 +Atsushi Togashi,Animating LOTOS Specifications Using Amlog.,1996,6,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke6.html#TogashiMS96,https://doi.org/10.1142/S0218194096000028 +Naser S. Barghouti,Scaling up Rule-Based Software Development Environments.,1992,2,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke2.html#BarghoutiK92,https://doi.org/10.1142/S021819409200004X +Mark Sifer,Scalability for Graph-Based Case Tools.,1995,5,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke5.html#SiferP95,https://doi.org/10.1142/S0218194095000174 +Veronica Gacitua-Decar,Structural Process Pattern Matching Based on Graph Morphism Detection.,2017,27,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke27.html#Gacitua-DecarP17,https://doi.org/10.1142/S0218194017500073 +Krishnakumar Balasubramanian,Weaving Deployment Aspects into Domain-specific Models.,2006,16,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke16.html#BalasubramanianGLZG06,https://doi.org/10.1142/S021819400600280X +Phillip C.-Y. Sheu,Guest Editors' Introduction.,1998,8,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke8.html#SheuK98,http://ejournals.wspc.com.sg/ijseke/08/0803/S0218194098000169.html +Cheeyang Song,An Integrated Design Method for SOA-Based Business Modeling and Software Modeling.,2016,26,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke26.html#SongC16,https://doi.org/10.1142/S0218194016500157 +Stan Jarzabek,Analysis of Meta-programs: an Example.,2006,16,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke16.html#JarzabekZRLS06,https://doi.org/10.1142/S0218194006002689 +Richi Nayak,A Data Mining Application Analysis of Problems Occurring during a Software Project Development Process.,2005,15,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke15.html#NayakQ05,https://doi.org/10.1142/S0218194005002476 +Ka L. Man,Case Studies in The Hybrid Process Algebra Hypa.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#ManRC05,https://doi.org/10.1142/S0218194005002385 +Francis Eng Hock Tay,Smart Shirt That Can Call for Help After A Fall.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#TayNKSS05,https://doi.org/10.1142/S0218194005002257 +John M. Baker,Project Management Utilizing an Advanced Case Environment.,1992,2,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke2.html#Baker92,https://doi.org/10.1142/S0218194092000129 +Aybüke Aurum,Aligning Software Project Decisions: a Case Study.,2006,16,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke16.html#AurumWP06,https://doi.org/10.1142/S0218194006003002 +Adrian David Cheok,Mobile Computing with Personal Area Network and Human Power Generation.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#CheokHYL05,https://doi.org/10.1142/S0218194005002348 +Jia Hao,A Review of Tacit Knowledge: Current Situation and the Direction to Go.,2017,27,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke27.html#HaoZYW17,https://doi.org/10.1142/S0218194017500279 +Anthony Savidis,A Decision-making Specification Language for Verifiable User-interface Adaptation Logic.,2005,15,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke15.html#SavidisAS05,https://doi.org/10.1142/S0218194005002646 +Yoshiki Mitani,An Empirical Study of Development Visualization for Procurement by in-Process Measurement during Integration and Testing.,2011,21,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke21.html#MitaniYTMBM11,https://doi.org/10.1142/S0218194011005323 +Michael E. Shin,Design of Secure Software Architectures with Secure Connectors.,2016,26,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke26.html#ShinGPBM16,https://doi.org/10.1142/S021819401650025X +Christopher M. Lott,Measurement Support in Software Engineering Environments.,1994,4,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke4.html#Lott94,https://doi.org/10.1142/S0218194094000209 +Peng Zhou,A Proof of Concept Study for Criminal Network Analysis with Interactive Strategies.,2017,27,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke27.html#ZhouLZL17,https://doi.org/10.1142/S0218194017500231 +Mohammad Izadi,Model Checking of Component Based Software Using Compositional Reductions.,2008,18,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke18.html#IzadiM08,https://doi.org/10.1142/S0218194008003775 +Hamzeh Eyal Salman,Feature-Level Change Impact Analysis Using Formal Concept Analysis.,2015,25,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke25.html#SalmanSD15,https://doi.org/10.1142/S0218194015400045 +João W. Cangussu,Guest Editors' Introduction.,2009,19,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke19.html#CangussuM09,https://doi.org/10.1142/S0218194009004350 +Colin Atkinson 0001,Processes and Products in a Multi-Level Metamodeling Architecture.,2001,11,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke11.html#AtkinsonK01,https://doi.org/10.1142/S0218194001000724 +Ryuya Akase,IGA-Based Interactive Framework Using Conjoint Analysis and SOM for Designing Room Layout.,2015,25,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke25.html#AkaseO15,https://doi.org/10.1142/S0218194015400136 +Alison Watkins,Using Genetic Algorithms and Decision Tree Induction to Classify Software Failures.,2006,16,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke16.html#WatkinsHBJ06,https://doi.org/10.1142/S021819400600277X +Kang Zhang,Guest Editor'S Introduction.,2004,14,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke14.html#Zhang04,https://doi.org/10.1142/S0218194004001579 +Kehan Gao,Investigating Two Approaches for Adding Feature Ranking to Sampled Ensemble Learning for Software Quality Estimation.,2015,25,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke25.html#GaoKN15,https://doi.org/10.1142/S0218194015400069 +Aimrudee Jongtaveesataporn,Combining the Strengths of BPEL and Mule ESB.,2014,24,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke24.html#JongtaveesatapornT14,https://doi.org/10.1142/S0218194014500144 +Antoni Lluís Mesquida,MIN-ITs: A Framework for Integration of IT Management Standards in Mature Environments.,2014,24,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke24.html#MesquidaPGA14,https://doi.org/10.1142/S0218194014400026 +Aniello Cimitile,Managing Software Projects by Structured Project Planning.,1997,7,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke7.html#CimitileV97,https://doi.org/10.1142/S0218194097000308 +Linlin Kou,Multistate Reliability Evaluation of Bogie on High Speed Railway Vehicle Based on the Network Flow Theory.,2018,28,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke28.html#KouQJF18,https://doi.org/10.1142/S0218194018400053 +Parvinder Singh Sandhu,Software Reusability Model for Procedure Based Domain-Specific Software Components.,2008,18,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke18.html#SandhuS08,https://doi.org/10.1142/S0218194008003982 +Shi-Kuo Chang,Ic Card: Visual Specification for Rapid Prototyping of Time-Critical Applications.,2007,17,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke17.html#ChangRZ07,https://doi.org/10.1142/S0218194007003422 +Jeffrey J. P. Tsai,Guest Editor's Introduction.,1992,2,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke2.html#Tsai92,https://doi.org/10.1142/S0218194092000336 +Ricardo Colomo Palacios,Book Review: Can We Improve the Ability to Improve?,2014,24,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke24.html#PalaciosG14,https://doi.org/10.1142/S0218194014800011 +Nicola Zannone,The Si* Modeling Framework: Metamodel and Applications.,2009,19,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke19.html#Zannone09,https://doi.org/10.1142/S0218194009004374 +Shih-Hsi Liu,Guest Editors' Introduction.,2015,25,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke25.html#LiuSLFM15,https://doi.org/10.1142/S0218194015020040 +Alberto Heredia,Study of Factors Influencing the Adoption of Agile Processes When Using Wikis.,2014,24,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke24.html#HerediaGSS14,https://doi.org/10.1142/S0218194014400014 +Anestis A. Toptsis,Heuristic Organization and Domain Analysis of Software Repositories.,1995,5,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke5.html#Toptsis95,https://doi.org/10.1142/S0218194095000113 +Jari Vanhanen,A Systematic Mapping Study of Empirical studies on the Use of Pair Programming in Industry.,2013,23,International Journal of Software Engineering and Knowledge Engineering,9,db/journals/ijseke/ijseke23.html#VanhanenM13,https://doi.org/10.1142/S0218194013500381 +Bai-En Shie,An Intelligent and Effective Mechanism for Mental Disorder Treatment by Using Biofeedback Analysis and Web Technologies.,2011,21,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke21.html#ShieJT11,https://doi.org/10.1142/S0218194011005190 +Jeffrey J. P. Tsai,Incremental Verification of Architecture Specification Language for Real-Time Systems.,1998,8,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke8.html#TsaiSSP98,https://doi.org/10.1142/S0218194098000194 +Laila Paganelli,A Tool for Creating Design Models from Web Site Code.,2003,13,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke13.html#PaganelliP03,https://doi.org/10.1142/S0218194003001275 +Avadhesh Kumar,Unified Cohesion Measures for Aspect-Oriented Systems.,2011,21,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke21.html#KumarKG11,https://doi.org/10.1142/S0218194011005128 +T. H. Tse,Quality Software - Guest Editor's Introduction.,2001,11,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke11.html#Tse01,https://doi.org/10.1142/S0218194001000451 +Mercedes Gómez-Albarrán,Applying Case-Based Reasoning to Support Dynamic Framework Documentation.,2001,11,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke11.html#Gomez-AlbarranG01,https://doi.org/10.1142/S0218194001000633 +Sophie Renault,Design of Redundant Formal Specifications by Logic Programming: Merging Formal Text and Good Comments.,1994,4,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke4.html#RenaultD94,https://doi.org/10.1142/S0218194094000180 +Michael E. Shin,Analyzing Dynamic Behavior Of Large-Scale Systems Through Model Transformation.,2005,15,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke15.html#ShinLWK05,https://doi.org/10.1142/S0218194005001896 +Welf Löwe,Rapid Construction of Software Comprehension Tools.,2005,15,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke15.html#LoweP05,https://doi.org/10.1142/S0218194005002622 +Manuel A. Pereira Remelhe,Combining Modelica Models with Discrete Event Formalisms for Simulation Using the Des/M Environmentc.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#RemelheE05,https://doi.org/10.1142/S0218194005001999 +Carina Frota Alves,Investigating Conflicts in Cots Decision-Making.,2003,13,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke13.html#AlvesF03,https://doi.org/10.1142/S0218194003001408 +Brian A. Malloy,Capturing Interface Protocols to Support Comprehension and Evaluation of C++ Libraries.,2011,21,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke21.html#MalloyLHD11,https://doi.org/10.1142/S0218194011005645 +Jerry Chun-Wei Lin,Efficiently Updating the Discovered Sequential Patterns for Sequence Modification.,2016,26,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke26.html#LinGFH16,https://doi.org/10.1142/S0218194016500455 +Yi Zhu,Multi-Resource Modeling of Real-Time Software Based on Resource Timed Process Algebra.,2016,26,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke26.html#ZhuHZZX16,https://doi.org/10.1142/S0218194016500388 +Mao Lin Huang,On-Line Visualization and Navigation of the Global Web Structure.,2003,13,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke13.html#HuangEL03,https://doi.org/10.1142/S0218194003001196 +S. Chen,Samea: Object-Oriented Software Maintenance Environment for Assembly Programs.,1992,2,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke2.html#ChenTC92,https://doi.org/10.1142/S0218194092000105 +Jean-Louis Sourrouille,A Knowledge-Based Framework of Object-Oriented Software Development Environments.,1994,4,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke4.html#Sourrouille94,https://doi.org/10.1142/S0218194094000222 +Jim R. Parker,Composite Algorithms in Image Content Searches.,2007,17,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke17.html#ParkerB07,https://doi.org/10.1142/S0218194007003331 +Oscar M. Rodríguez-Elias,Modeling and Analysis of Knowledge Flows in Software Processes through the Extension of the Software Process Engineering Metamodel.,2009,19,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke19.html#Rodriguez-EliasMVFP09,https://doi.org/10.1142/S0218194009004155 +Joseph Fong,Translating Relational Schema with Constraints into Xml Schema.,2006,16,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke16.html#FongFWY06,https://doi.org/10.1142/S0218194006002744 +Ernst-Erich Doberkat,Generating an Algebraic Specification from an ER-Model.,1997,7,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke7.html#Doberkat97,https://doi.org/10.1142/S0218194097000291 +Fátima L. S. Nunes,CBIR Based Testing Oracles: An Experimental Evaluation of Similarity Functions.,2015,25,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke25.html#NunesDGL15,https://doi.org/10.1142/S0218194015500254 +Gennaro Costagliola,A Methodology for Modeling Multimedia Databases.,2002,12,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke12.html#CostagliolaFMP02,https://doi.org/10.1142/S0218194002001025 +Shyue-Liang Wang,Shortest Paths Anonymization on Weighted Graphs.,2013,23,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke23.html#WangTKTH13,https://doi.org/10.1142/S0218194013400056 +M. S. Geetha Devasena,Automated and Optimized Software Test Suite Generation Technique for Structural Testing.,2016,26,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke26.html#DevasenaGV16,https://doi.org/10.1142/S0218194016500017 +Chih-Chin Lai,Using Genetic Algorithm to Solve Multiple Sequence Alignment Problem.,2009,19,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke19.html#LaiWH09,https://doi.org/10.1142/S0218194009004441 +Shunfu Hu,Developing a GIS-Based Information Management System for on-Site wastewater Treatment Facilities.,2008,18,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke18.html#HuZ08,https://doi.org/10.1142/S0218194008003738 +C. Murray Woodside,Software Resource Architecture.,2001,11,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke11.html#Woodside01,https://doi.org/10.1142/S0218194001000608 +Seok Won Lee,Ontology-Guided Service-Oriented Architecture Composition to Support Complex and Tailorable Process Definitions.,2009,19,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke19.html#LeeGW09,https://doi.org/10.1142/S0218194009004386 +Huaglory Tianfield,Guest Editors' Introduction: Agentization and Coordination.,2001,11,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke11.html#Tianfield01,https://doi.org/10.1142/S0218194001000712 +Yujian Fu,A Translator of Software Architecture Design from SAM to Java.,2007,17,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke17.html#FuDH07,https://doi.org/10.1142/S0218194007003483 +R. Krishnamoorthi,Requirement Based System Test Case Prioritization of New and Regression Test Cases.,2009,19,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke19.html#KrishnamoorthiM09,https://doi.org/10.1142/S0218194009004222 +Daniel M. Germán,Visualizing the Evolution of Software Using Softchange.,2006,16,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke16.html#GermanH06,https://doi.org/10.1142/S0218194006002665 +Shih-Ting Yang,A Medical Documents Rewriting Model Based on Medical Knowledge Demanders' Feelings and Emotions.,2018,28,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke28.html#Yang18,https://doi.org/10.1142/S0218194018500122 +Davide Bellinzona,Alembik - a Framework for the Adaptive Transcoding of Multimedia Content in Mobile Environments: from Requirements to Architecture and Performance Evaluation.,2012,22,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke22.html#BellinzonaR12,https://doi.org/10.1142/S0218194012500052 +Daniel Graupe,A Large Memory Storage and Retrieval Neural Network for Adaptive Retrieval and Diagnosis.,1998,8,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke8.html#GraupeK98,https://doi.org/10.1142/S0218194098000091 +S. A. Sahaaya Arul Mary,Time-Aware and Weighted Fault Severity Based Metrics for Test Case Prioritization.,2011,21,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke21.html#MaryK11,https://doi.org/10.1142/S0218194011005116 +Jeffrey J. P. Tsai,A System for Visualizing and Debugging Distributed Real-Time Systems with Monitoring Support.,1996,6,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke6.html#TsaiBY96,https://doi.org/10.1142/S0218194096000168 +Kazushi Murakoshi,Growing Hierarchical Self-Organizing Map Using Category Utility.,2016,26,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke26.html#MurakoshiF16,https://doi.org/10.1142/S0218194016500108 +Yan Ma,Counterexample Generation in Stochastic Model Checking Based on PSO Algorithm with Heuristic.,2016,26,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke26.html#MaCL16,https://doi.org/10.1142/S021819401650039X +Venu Vasudevan,Malleable Services.,2001,11,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke11.html#VasudevanL01,https://doi.org/10.1142/S0218194001000621 +Zohreh Karimi Aghdam,An Efficient Method to Generate Test Data for Software Structural Testing Using Artificial Bee Colony Optimization Algorithm.,2017,27,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke27.html#AghdamA17,https://doi.org/10.1142/S0218194017500358 +Thu-Trang Nguyen,Verifying Java Object Invariants at Runtime.,2011,21,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke21.html#NguyenTN11,https://doi.org/10.1142/S0218194011005281 +Daniela E. Herlea,A Compositional Knowledge Level Process Model of Requirements Engineering.,2002,12,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke12.html#HerleaJTW02,https://doi.org/10.1142/S0218194002000792 +J. F. M. Burg,Enhancing CASE Environments by Using Linguistics.,1998,8,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke8.html#BurgR98,https://doi.org/10.1142/S0218194098000248 +Jerzy W. Grzymala-Busse,On the Choice of the Best Test for Attribute Dependency in Programs for Learning from Examples.,1991,1,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke1.html#Grzymala-BusseM91,https://doi.org/10.1142/S0218194091000287 +Joseph Fong,Methodology for Data Conversion from XML Documents to Relations Using Extensible Stylesheet Language Transformation.,2009,19,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke19.html#FongSW09,https://doi.org/10.1142/S0218194009004131 +Jianlin Zhu,Software Architecture Recovery through Similarity-Based Graph Clustering.,2013,23,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke23.html#ZhuHZYZH13,https://doi.org/10.1142/S0218194013500162 +Enoch Y. Wang,Formalizing the Functional Model within Object-Oriented Design.,2000,10,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke10.html#WangC00,https://doi.org/10.1142/S0218194000000031 +Mohsen Rahmani,Agent Based Decision Tree Learning: a Novel Approach.,2009,19,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke19.html#RahmaniHHS09,https://doi.org/10.1142/S0218194009004477 +Wararat Rungworawut,Automating a Design Methodology for Reusable Business Process Components through a Genetic Algorithm.,2010,20,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke20.html#RungworawutS10,https://doi.org/10.1142/S0218194010005109 +Chul Jin Kim,Variability Design Techniques for Enhancing Component Reusability.,2006,16,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke16.html#KimCK06,https://doi.org/10.1142/S0218194006002860 +K. Priyantha Hewagamage,Situation-Dependent Metaphor for Personal Multimedia Information.,1999,9,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke9.html#HewagamageHI99,https://doi.org/10.1142/S0218194099000383 +Daniel L. Barbosa,Automating Functional Testing of Components from UML Specifications.,2007,17,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke17.html#BarbosaLMFJA07,https://doi.org/10.1142/S0218194007003276 +Jun-Jang Jeng,Using Automated Reasoning Techniques to Determine Software Reuse.,1992,2,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke2.html#JengC92,https://doi.org/10.1142/S0218194092000245 +Haralambos Mouratidis,Modeling Secure Systems Using an Agent-oriented Approach and Security Patterns.,2006,16,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke16.html#MouratidisWG06,https://doi.org/10.1142/S0218194006002823 +Martín Molina,Reusable Knowledge-Based Components for Building Software Applications: A Knowledge Modelling Approach.,1999,9,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke9.html#MolinaSC99,https://doi.org/10.1142/S021819409900019X +Deng Chen,Mining Class Temporal Specification Dynamically Based on Extended Markov Model.,2015,25,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke25.html#ChenHQJJ15,https://doi.org/10.1142/S0218194015500047 +Jiacun Wang,Resource Oriented Workflow Nets and Workflow Resource Requirement Analysis.,2013,23,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke23.html#WangL13,https://doi.org/10.1142/S0218194013400135 +Mohammad Moshirpour,Detecting Emergent Behavior in Distributed Systems using Scenario-Based Specifications.,2012,22,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke22.html#MoshirpourMF12,https://doi.org/10.1142/S0218194012400104 +Andrzej K. Brodzik,Book Review: Scientific Object and Its Shadow.,2015,25,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke25.html#Brodzik15,https://doi.org/10.1142/S0218194015800017 +Henrique Rebêlo,Quantifying the effects of Aspectual Decompositions on Design by Contract Modularization: a Maintenance Study.,2013,23,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke23.html#RebeloLKRCCSM13,https://doi.org/10.1142/S0218194013500265 +Murat Yilmaz,Effective Social Productivity Measurements during Software Development - An Empirical Study.,2016,26,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke26.html#YilmazOC16,https://doi.org/10.1142/S0218194016500194 +Bruce W. Weide,Guest Editor's Introduction.,1993,3,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke3.html#Weide93,https://doi.org/10.1142/S021819409300029X +Imed Hammouda,Managing Concern Knowledge in Software Systems.,2011,21,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke21.html#HammoudaKM11,https://doi.org/10.1142/S0218194011005566 +Franck Barbier,State-Based Composition in UML 2.,2008,18,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke18.html#BarbierA08,https://doi.org/10.1142/S0218194008003970 +Francy D. Rodríguez,Reusable Solutions for Implementing Usability Functionalities.,2015,25,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke25.html#RodriguezAJ15,https://doi.org/10.1142/S0218194015500084 +Swapna S. Gokhale,Guest Editor's Introduction.,2014,24,International Journal of Software Engineering and Knowledge Engineering,9,db/journals/ijseke/ijseke24.html#Gokhale14,https://doi.org/10.1142/S0218194014020045 +Ronald Maier,Peer-To-Peer Information Workspaces In Infotop.,2004,14,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke14.html#MaierS04,https://doi.org/10.1142/S0218194004001531 +Noriko Hanakawa,Genereation of Object-Oriented Software Process Using Milestones.,1999,9,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke9.html#HanakawaIMT99,https://doi.org/10.1142/S0218194099000255 +Jianxiao Liu,Web Service Clustering Using Relational Database Approach.,2015,25,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke25.html#LiuLLHMW15,https://doi.org/10.1142/S021819401550028X +Damiano Distante,Enhancing Navigability in Websites Built Using Web Content Management Systems.,2014,24,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke24.html#DistanteRS14,https://doi.org/10.1142/S0218194014500193 +Wooseok Ryu,A Simulation Network Model to Evaluate RFID Middlewares.,2011,21,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke21.html#RyuKH11,https://doi.org/10.1142/S0218194011005517 +Miin-Jeng Pan,A Two-Level Metadata Dictionary Approach for Semantic Query Processing in Multidatabase Systems.,1993,3,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke3.html#PanCY93,https://doi.org/10.1142/S0218194093000112 +Tanja E. J. Vos,Industrial Case Studies for Evaluating Search Based Structural Testing.,2012,22,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke22.html#VosBLWWGKW12,https://doi.org/10.1142/S0218194012500313 +B. L. Achee,Object Extensions to Z: a Survey.,1996,6,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke6.html#AcheeC96,https://doi.org/10.1142/S0218194096000211 +Luis Quesada 0002,ModelCC - A Pragmatic Parser Generator.,2014,24,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke24.html#QuesadaBC14,https://doi.org/10.1142/S0218194014500375 +Ramzi A. Haraty,Regression Test Cases Prioritization Using Clustering and Code Change Relevance.,2016,26,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke26.html#HaratyMMK16,https://doi.org/10.1142/S0218194016500248 +Cha Kun Lee,Global Optimization Of Linear Hybrid Systems With Varying Time Events.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#LeeB05,https://doi.org/10.1142/S0218194005001938 +Giuseppe Scanniello,On the Effect of Exploiting GPUs for a More Eco-Sustainable Lease of Life.,2015,25,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke25.html#ScannielloECG15,https://doi.org/10.1142/S0218194015500023 +Mathee Olarnsakul,Customizing Component-Based Software Using Component Coordination Model: A Use-Context Driven Approach Toward Role-Based Model.,2004,14,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke14.html#OlarnsakulB04,https://doi.org/10.1142/S0218194004001622 +Jyhjong Lin,An Object-Oriented Development Method for Consumer Support Systems.,2009,19,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke19.html#Lin09,https://doi.org/10.1142/S0218194009004507 +Alexander Fronk,Towards The Algebraic Analysis Of Hyperlink Structures.,2003,13,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke13.html#Fronk03,https://doi.org/10.1142/S0218194003001500 +Jason J. Jung,Semantic Wiki-Based Knowledge Management System by Interleaving Ontology Mapping Tool.,2013,23,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke23.html#Jung13,https://doi.org/10.1142/S0218194013400044 +Robert John Gautier,CDL - a Component Description Language for Reuse.,1993,3,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke3.html#GautierORW93,https://doi.org/10.1142/S0218194093000276 +Thomas Kunz,Reverse Engineering Distributed Applications: an Event Abstraction Tool.,1994,4,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke4.html#Kunz94,https://doi.org/10.1142/S0218194094000155 +Arthur H. M. ter Hofstede,Deriving Identity from Extensionality.,1998,8,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke8.html#HofstedeW98,https://doi.org/10.1142/S0218194098000121 +Kamran Sartipi,Dynamic Knowledge Extraction from Software Systems Using Sequential Pattern Mining.,2010,20,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke20.html#SartipiS10,https://doi.org/10.1142/S021819401000492X +Dong-Hyuk Im,A Version Management Framework for RDF Triple Stores.,2012,22,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke22.html#ImLK12,https://doi.org/10.1142/S0218194012500040 +Jiangbin Zheng,Multiple Depth Maps Integration for 3D Reconstruction Using Geodesic Graph Cuts.,2015,25,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke25.html#ZhengZRW15,https://doi.org/10.1142/S0218194015400173 +Christoph Prackwieser,Overcoming Heterogeneity in Business Process Modeling with Rule-Based Semantic Mappings.,2014,24,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke24.html#PrackwieserBGK14,https://doi.org/10.1142/S0218194014400087 +Ji-Tzay Yang,Constructing Flow-Based Tools with Generative and Compositional Techniques.,2000,10,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke10.html#YangWCH00,https://doi.org/10.1142/S0218194000000122 +Robert G. Merkel,Automatic Verification of Optimization Algorithms: a Case Study of a Quadratic Assignment Problem Solver.,2011,21,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke21.html#MerkelWLC11,https://doi.org/10.1142/S021819401100527X +Meng-Yao Chen,Visualized Awareness Support for Collaborative Software Development on Mobile Devices.,2015,25,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke25.html#ChenCLZ15,https://doi.org/10.1142/S0218194015400094 +Anthony Finkelstein,Viewpoints: A Framework for Integrating Multiple Perspectives in System Development.,1992,2,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke2.html#FinkelsteinKNFG92,https://doi.org/10.1142/S0218194092000038 +Peng Liu,Partial k-Anonymity for Privacy-Preserving Social Network Data Publishing.,2017,27,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke27.html#LiuBWL17,https://doi.org/10.1142/S0218194017500048 +Luis álvarez Sabucedo,A Holistic Semantic Framework for the Provision of Services in the Domain of eGovernment.,2009,19,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke19.html#SabucedoAPS09,https://doi.org/10.1142/S0218194009004490 +Joseph Fong,Concurrent Data Materialization for Object-Relational Database with Semantic Metadata.,2003,13,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke13.html#FongPFPP03,https://doi.org/10.1142/S0218194003001287 +Yanping Bai,Model and Application of Impact Wave in Measuring Dynamic Characteristic of Microstructure.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#BaiWJ05,https://doi.org/10.1142/S0218194005002191 +Yamine Aït Ameur,Formal Transformational Program Developments Directed by Operational Properties Evaluations.,1995,5,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke5.html#Ameur95,https://doi.org/10.1142/S0218194095000149 +Ziyuan Wang,Cost-Cognizant Combinatorial Test Case Prioritization.,2011,21,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke21.html#WangCXH11,https://doi.org/10.1142/S0218194011005499 +Miguel-ángel Sicilia,Guest Editors' Introduction.,2010,20,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke20.html#SiciliaKS10,https://doi.org/10.1142/S0218194010004840 +Elisa Bertino,Hsgs: An Interactive System For High-Level Specification And Generation Of Hypermedia Presentations.,2004,14,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke14.html#BertinoMS04,https://doi.org/10.1142/S0218194004001786 +José Cristóbal Riquelme Santos,A Comparison of Effort Estimation Methods for 4gl Programs: Experiences with Statistics and Data Mining.,2006,16,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke16.html#RiquelmePAPFR06,https://doi.org/10.1142/S0218194006002719 +Xiaobing Sun,ComboRT: A New Approach for Generating Regression Test Cases for Evolving Programs.,2016,26,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke26.html#SunPLL16,https://doi.org/10.1142/S0218194016500340 +Samini Subramaniam,QTwig: A Structural Join Algorithm for Efficient Query Retrieval Based on Region-Based Labeling.,2017,27,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke27.html#SubramaniamHSK17,https://doi.org/10.1142/S0218194017500115 +Ming Xie,Multi-Granularity Knowledge Mining on the Web.,2012,22,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke22.html#Xie12,https://doi.org/10.1142/S0218194012500015 +João W. Cangussu,A Segment Based Approach for the Reduction of the Number of Test Cases for Performance Evaluation of Components.,2009,19,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke19.html#CangussuCW09,https://doi.org/10.1142/S0218194009004283 +Wenjie Liu,Predicting the Severity of Bug Reports Based on Feature Selection.,2018,28,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke28.html#LiuWCJ18,https://doi.org/10.1142/S0218194018500158 +Scott R. Tilley,Programmable Reverse Engineering.,1994,4,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke4.html#TilleyWSM94,https://doi.org/10.1142/S0218194094000246 +Jorge L. Díaz-Herrera,Issues and Models in Software Product Lines.,2000,10,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke10.html#Diaz-HerreraKS00,https://doi.org/10.1142/S0218194000000286 +Grzegorz J. Nalepa,Uml Representation for Rule-Based Application Models with XTT2-Based Business Rules.,2012,22,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke22.html#NalepaK12,https://doi.org/10.1142/S021819401250012X +Manuel Peralta,Code-Change Impact Analysis using Counterfactuals: Theory and Implementation.,2013,23,International Journal of Software Engineering and Knowledge Engineering,10,db/journals/ijseke/ijseke23.html#PeraltaM13,https://doi.org/10.1142/S0218194013500460 +Robert R. Roxas,cyber-film: a Visual Approach that Facilitates Program Comprehension.,2005,15,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke15.html#RoxasM05,https://doi.org/10.1142/S0218194005002609 +Mehdi Amoui,Temporal Software Change Prediction Using Neural Networks.,2009,19,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke19.html#AmouiST09,https://doi.org/10.1142/S0218194009004489 +Naresh Kumar Nagwani,Generating Intelligent Summary Terms for Improving Knowledge Discovery in Software Bug Repositories.,2016,26,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke26.html#NagwaniV16,https://doi.org/10.1142/S0218194016500273 +Tsung-Yi Chen,A Multiple-Layer Knowledge Management System Framework Considering User Knowledge Privileges.,2009,19,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke19.html#Chen09,https://doi.org/10.1142/S0218194009004192 +Gregor Stiglic,Detecting Fault Modules Using Bioinformatics Techniques.,2007,17,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke17.html#StiglicMKP07,https://doi.org/10.1142/S0218194007003161 +Nico H. Lassing,Viewpoints on Modifiability.,2001,11,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke11.html#LassingRV01,https://doi.org/10.1142/S0218194001000591 +Stefan Biffl,Risk Assessment in Multi-disciplinary (Software+) Engineering Projects.,2011,21,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke21.html#BifflMW11,https://doi.org/10.1142/S0218194011005232 +Zhefu Wu,Network-Based Ranking for Open Source Software Developer Prediction.,2018,28,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke28.html#WuLFXX18,https://doi.org/10.1142/S0218194018500250 +Yogesh Singh,Predicting Software Development Effort Using Artificial Neural Network.,2010,20,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke20.html#SinghKBS10,https://doi.org/10.1142/S0218194010004761 +Yuh-Jen Chen,Ontology-Based Distributed Case-Based Reasoning in Virtual Enterprises.,2009,19,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke19.html#ChenCSW09,https://doi.org/10.1142/S0218194009004544 +Yan Xu,Learning Non-Taxonomic Relations on Demand for Ontology Extension.,2014,24,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke24.html#XuLML14,https://doi.org/10.1142/S0218194014400099 +Zhong-Qiang Ding,The Rapid Development of A Closed-Loop Control System.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#DingLG05,https://doi.org/10.1142/S0218194005002105 +C. V. Ramamoorthy,On Issues in Software Engineering and Artificial Intelligence.,1991,1,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke1.html#RamamoorthyMS91,https://doi.org/10.1142/S0218194091000044 +Thao Dang,A Reachability-Based Technique for Idle Speed Control Synthesis.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#Dang05,https://doi.org/10.1142/S0218194005001987 +Francisco Ortin,The Dsaw Aspect-Oriented Software Development Platform.,2011,21,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke21.html#OrtinVF11,https://doi.org/10.1142/S0218194011005554 +Witold Pedrycz,Association Analysis of Software Measures.,2002,12,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke12.html#PedryczSC02,https://doi.org/10.1142/S0218194002000913 +Giuseppe Della Penna,An XML Definition Language to Support Scenario-Based Requirements Engineering.,2003,13,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke13.html#PennaILO03,https://doi.org/10.1142/S0218194003001299 +Pengcheng Zhang,Model and Verification of WS-CDL Based on UML Diagrams.,2010,20,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke20.html#ZhangMZL10,https://doi.org/10.1142/S0218194010005092 +Hyung-Jong Kim,Security Requirement Representation Method for Confidence of Systems and Networks.,2010,20,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke20.html#KimKL10,https://doi.org/10.1142/S021819401000461X +Carlos E. Cirilo,Towards a Hybrid Approach for Adapting Web Graphical User Interfaces to Heterogeneous Devices using Context.,2012,22,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke22.html#CiriloPSZR12,https://doi.org/10.1142/S0218194012400128 +Y. S. Kuo,When to Inherit and when not to.,1995,5,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke5.html#Kuo95,https://doi.org/10.1142/S0218194095000198 +Ruchika Malhotra,Software Maintainability: Systematic Literature Review and Current Trends.,2016,26,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke26.html#MalhotraC16,https://doi.org/10.1142/S0218194016500431 +Daniel F. Fitch,A RAID-Based Secure and Fault-Tolerant Model for Cloud Information Storage.,2013,23,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke23.html#FitchX13,https://doi.org/10.1142/S0218194013400111 +Guisheng Fan,Formally Modeling and Analyzing the Reliability of Cloud Applications.,2016,26,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke26.html#FanYC16,https://doi.org/10.1142/S0218194016500121 +Shi-Kuo Chang,Message from the Editor-in-Chief.,2018,28,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke28.html#Chang18,https://doi.org/10.1142/S0218194018010015 +Ana Belén Barragáns-Martínez,Composing Multi-Perspective Software Requirements Specifications.,2008,18,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke18.html#Barragans-MartinezAVDNRB08,https://doi.org/10.1142/S0218194008003581 +Chi-Sheng Shih,Heterogeneous and Elastic Computation Framework for Mobile Cloud Computing.,2014,24,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke24.html#ShihCWC14,https://doi.org/10.1142/S0218194014400051 +Larry Hughes,A New Approach in Designing Interprocess Communication for Real-Time Systems.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#HughesML05,https://doi.org/10.1142/S0218194005002051 +Csaba J. Egyhazy,From Software Reuse to Database Reuse.,2000,10,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke10.html#Egyhazy00,https://doi.org/10.1142/S0218194000000134 +Hong Zhu,SLABS: A Formal Specification Language for Agent-Based Systems.,2001,11,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke11.html#Zhu01,https://doi.org/10.1142/S0218194001000657 +Francisco J. Martín,Knowledge and Experience Reuse Through Communication Among Competent (Peer) Agents.,1999,9,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke9.html#MartinPA99,https://doi.org/10.1142/S0218194099000206 +Ioana Rus,Supporting Decision-Making in Software Engineering with Process Simulation and Empirical Studies.,2003,13,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke13.html#RusHB03,https://doi.org/10.1142/S0218194003001391 +Mikhail Auguston,Parforman - an Assertion Language for Specifying Behavior when Debugging Parallel Applications.,1996,6,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke6.html#AugustonF96,https://doi.org/10.1142/S0218194096000259 +José A. Calvo-Manzano,Guest Editors' Introduction.,2014,24,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke24.html#Calvo-ManzanoMA14,https://doi.org/10.1142/S021819401402001X +Shih-Hsi Liu,Guest Editors' Introduction.,2012,22,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke22.html#LiuMS12,https://doi.org/10.1142/S0218194012020019 +Joseph E. Urban,The Impact of undergraduate Software Engineering Education on Advancing Case Tools.,1992,2,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke2.html#UrbanB92,https://doi.org/10.1142/S0218194092000130 +Yingze Wang,User Profile Visualization to Facilitate MSLIM-Model-Based Social Influence Analysis Based on Slow Intelligence Approach.,2014,24,International Journal of Software Engineering and Knowledge Engineering,10,db/journals/ijseke/ijseke24.html#WangC14,https://doi.org/10.1142/S0218194014400191 +Silvia Regina Vergilio,A Grammar-guided Genetic Programming Framework Configured for Data Mining and Software Testing.,2006,16,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke16.html#VergilioP06,https://doi.org/10.1142/S0218194006002781 +Dongwon Jeong,An Integrity Checking Mechanism of Mobile Agents under a Closed Environment with Trusted Hosts.,2006,16,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke16.html#JeongKP06,https://doi.org/10.1142/S0218194006002720 +Wen Zhang 0001,A Comparative Study of absent Features and Unobserved Values in Software Effort Data.,2012,22,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke22.html#ZhangYW12,https://doi.org/10.1142/S0218194012400025 +Agathe Merceron,Component-based Verification in a Synchronous Setting.,2001,11,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke11.html#MerceronP01,https://doi.org/10.1142/S0218194001000463 +Rakesh Shukla,A Framework for Statistical Testing of Software Components.,2007,17,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke17.html#ShuklaSC07,https://doi.org/10.1142/S021819400700329X +Kai H. Chang,Test Scenario Generation Based on Formal Specification and Usage Profile.,2000,10,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke10.html#ChangLCC00,https://doi.org/10.1142/S0218194000000110 +Jens H. Jahnke,Evaluating Theories for Managing Imperfect Knowledge in Human-Centric Database Reengineering Environments.,2002,12,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke12.html#JahnkeW02,https://doi.org/10.1142/S0218194002000834 +Ombretta Gaggi,A Laboratory for Prototyping and Testing Multimedia Presentations.,2006,16,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke16.html#GaggiC06,https://doi.org/10.1142/S0218194006002896 +Min Deng,Retrieval by Construction: a Traceability Technique to Support Verification and Validation of Uml Formalizations.,2005,15,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke15.html#DengSC05,https://doi.org/10.1142/S0218194005002531 +Giulio Concas,An Empirical Study of Software Metrics for Assessing the Phases of an Agile Project.,2012,22,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke22.html#ConcasMDT12,https://doi.org/10.1142/S0218194012500131 +Weiwei Xing,An Improved Potential Field Based Method for Crowd Simulation.,2015,25,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke25.html#XingZLB15,https://doi.org/10.1142/S021819401540015X +Zhongsheng Qian,Useful Specification-Based Logic Coverage criteria.,2013,23,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke23.html#Qian13,https://doi.org/10.1142/S0218194013500307 +Kathleen Brade,Whorf: a Hypertext Tool for Software Maintenance.,1994,4,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke4.html#BradeGSS94,https://doi.org/10.1142/S0218194094000027 +Peter J. Clarke,A Tool to Automatically Map Implementation-based Testing Techniques to Classes.,2006,16,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke16.html#ClarkeDBM06,https://doi.org/10.1142/S0218194006002884 +Steve Counsell,A Theoretical and Empirical Analysis of Three Slice-Based Metrics for Cohesion.,2010,20,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke20.html#CounsellHB10,https://doi.org/10.1142/S0218194010004888 +Zahra Akbari,A Method for Prioritizing Integration Testing in Software Product Lines Based on Feature Model.,2017,27,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke27.html#AkbariKM17,https://doi.org/10.1142/S0218194017500218 +Tubagus Mohammad Akhriza,Revealing the Gap Between Skills of Students and the Evolving Skills Required by the Industry of Information and Communication Technology.,2017,27,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke27.html#AkhrizaML17,https://doi.org/10.1142/S0218194017500255 +Abu H. M. Kamal,Feature Selection for Datasets with Imbalanced Class Distributions.,2010,20,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke20.html#KamalZPHN10,https://doi.org/10.1142/S0218194010004645 +Wei Song 0007,Exploration and Optimization of User Experience in Viewing Videos on a Mobile Phone.,2010,20,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke20.html#SongTD10,https://doi.org/10.1142/S0218194010005067 +Yan Zhao 0001,Level-wise Construction of Decision Trees for Classification.,2006,16,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke16.html#ZhaoYY06,https://doi.org/10.1142/S0218194006002690 +Chunyan Miao,A Dynamic Inference Model for Intelligent Agents.,2001,11,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke11.html#YanGMY01,https://doi.org/10.1142/S0218194001000669 +Gerardo Canfora,A Design Rationale Based Environment for Cooperative Maintenance.,2000,10,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke10.html#CanforaCL00,https://doi.org/10.1142/S0218194000000316 +Eelke Folmer,A Pattern Framework for Software Quality Assessment and Tradeoff Analysis.,2007,17,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke17.html#FolmerB07,https://doi.org/10.1142/S021819400700332X +Serge V. Plotnikov,Modeling under Local Structure Hypotheses.,1993,3,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke3.html#Plotnikov93,https://doi.org/10.1142/S0218194093000227 +Teck Hong Koh,Design Analysis of The Propulsion and Control System of an Underactuated Remotely Operated Vehicle Using Axiomatic Design Theory - Part 1.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#KOHTLLS05,https://doi.org/10.1142/S0218194005002282 +Chang-Mog Lee,User Interface Prototype Generation Technique Supporting Usage-Centered Design.,2009,19,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke19.html#LeeK09,https://doi.org/10.1142/S0218194009004088 +Yukio Mizuno,Multimedia Technologies in Japan: General Status and Future Trends.,1997,7,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke7.html#MizunoSW97,https://doi.org/10.1142/S0218194097000175 +Fei Dong,Reasoning under Uncertainty for Shill Detection in Online Auctions Using Dempster-Shafer Theory.,2010,20,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke20.html#DongSX10,https://doi.org/10.1142/S0218194010005018 +Hans van der Schoot,Data Flow Analysis of System Specifications in Lotos.,1997,7,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke7.html#SchootU97,https://doi.org/10.1142/S0218194097000035 +Junxia Guo,Analysis and Design of programmatic Interfaces for Integration of Diverse Web Contents.,2013,23,International Journal of Software Engineering and Knowledge Engineering,10,db/journals/ijseke/ijseke23.html#GuoH13,https://doi.org/10.1142/S0218194013500472 +Yi Deng,Guest Editors' Introduction: Special Issue on Embedded Software Engineering.,2002,12,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke12.html#DengB02,https://doi.org/10.1142/S0218194002000822 +Ruben Heradio,A literature Review on Feature Diagram Product Counting and its Usage in Software Product Line Economic Models.,2013,23,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke23.html#HeradioFCA13,https://doi.org/10.1142/S0218194013500368 +Weina Li,Distributed Frequent Interactive Pattern-Based Complex Software Group Network Stability Measurement.,2018,28,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke28.html#LiR18,https://doi.org/10.1142/S0218194018500171 +Tsung-Teng Chen,A Proposed Architecture for Self-Adaptive Expert Systems.,2009,19,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke19.html#ChenH09,https://doi.org/10.1142/S0218194009004179 +Humberto Cortés,NMMp: A Model-Driven UML Extension for the Description of Navigation Maps for Web Applications.,2014,24,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke24.html#CortesN14,https://doi.org/10.1142/S0218194014500156 +Lirong Dai,Modeling and Analysis of Performance Aspects for Software Architecture: a Uml-based Approach.,2006,16,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke16.html#DaiCW06,https://doi.org/10.1142/S0218194006002835 +David Raffo,Supporting Software Process Decisions Using Bi-Directional Simulation.,2003,13,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke13.html#RaffoS03,https://doi.org/10.1142/S0218194003001445 +Tsung-Hsi Chiang,Verification of Dataflow Scheduling.,2008,18,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke18.html#ChiangD08,https://doi.org/10.1142/S0218194008003891 +Murali Sitaraman,On Specification of Reusable Software Components.,1993,3,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke3.html#SitaramanWH93,https://doi.org/10.1142/S0218194093000100 +Yongsun Cho,The Technique of Business Model Driven Analysis and Test Design for Development of Web Applications.,2005,15,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke15.html#ChoLC05,https://doi.org/10.1142/S0218194005002452 +Yue Jiang,Incremental Development of Fault Prediction Models.,2013,23,International Journal of Software Engineering and Knowledge Engineering,10,db/journals/ijseke/ijseke23.html#JiangCML13,https://doi.org/10.1142/S0218194013500447 +Andrea F. Abate,Writing and Analyzing System Specifications by Integrated Linguistic Tools.,1997,7,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke7.html#AbateDNP97,https://doi.org/10.1142/S0218194097000047 +Sandro Bologna,Rigorous Engineering Practice and Formal Reasoning of Deep Domain Knowledge - the Basis of Dependable Knowledge Based Systems for Process Plant Control.,1993,3,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke3.html#BolognaSV93,https://doi.org/10.1142/S0218194093000045 +Alun D. Preece,Specifications and Tools for Building Reliable Expert Systems.,1993,3,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke3.html#Preece93,https://doi.org/10.1142/S0218194093000033 +Byoung-Dai Lee,Development of Energy-aware Mobile Applications Based on Resource Outsourcing.,2014,24,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke24.html#LeeLK14,https://doi.org/10.1142/S0218194014500399 +Richard J. Waldinger,Proving Properties of Rule-Based Systems.,1992,2,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke2.html#WaldingerS92,https://doi.org/10.1142/S0218194092000075 +Bedir Tekinerdogan,Feature-Based Rationale Management System for Supporting Software Architecture Adaptation.,2012,22,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke22.html#TekinerdoganSA12,https://doi.org/10.1142/S021819401250026X +Christian Schalles,A Causal Model for Analyzing the Impact of Graphical Modeling Languages on Usability.,2014,24,International Journal of Software Engineering and Knowledge Engineering,9,db/journals/ijseke/ijseke24.html#SchallesCR14,https://doi.org/10.1142/S0218194014500417 +Yi Deng,Executable Specification and Analysis for the Design of Concurrent Object-Oriented Systems.,1994,4,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke4.html#DengCL94,https://doi.org/10.1142/S0218194094000210 +Andreza Vieira,Towards Measuring the Change Impact in ATL Model Transformations.,2016,26,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke26.html#VieiraR16,https://doi.org/10.1142/S021819401650008X +Issam A. Hamid,Dynamic Evolution of Distributed Systems Specifications Using Reflective Language.,1995,5,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke5.html#HamidE95,https://doi.org/10.1142/S0218194095000253 +Markus Lumpe,Learning Better Inspection Optimization Policies.,2012,22,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke22.html#LumpeVMRT12,https://doi.org/10.1142/S0218194012500179 +Lie Wang,A Clustering-Based Bipartite Graph Privacy-Preserving Approach for Sharing High-Dimensional Data.,2014,24,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke24.html#WangL14,https://doi.org/10.1142/S0218194014500363 +Hong Mei,Guest Editors' Introduction.,2007,17,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke17.html#MeiT07,https://doi.org/10.1142/S021819400700346X +Michael Gelfond,Towards a Theory of Elaboration Tolerance: Logic Programming Approach.,1996,6,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke6.html#GelfondP96,https://doi.org/10.1142/S0218194096000053 +Ching-Pao Chang,Software Defect Prediction Using Intertransaction Association Rule Mining.,2009,19,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke19.html#ChangC09,https://doi.org/10.1142/S0218194009004428 +Marek Reformat,Guest Editor's Introduction.,2014,24,International Journal of Software Engineering and Knowledge Engineering,10,db/journals/ijseke/ijseke24.html#Reformat14,https://doi.org/10.1142/S0218194014020057 +Ilene Burnstein,Using Fuzzy Reasoning to Support Automated Program Understanding.,2000,10,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke10.html#BurnsteinS00,https://doi.org/10.1142/S0218194000000080 +David Jacobs,Software Process Representation to Support Multiple Views.,1995,5,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke5.html#JacobsM95,https://doi.org/10.1142/S0218194095000289 +C. Z. Wu,An Intelligent Agent Mobile emissions Model for Urban Environmental Management.,2008,18,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke18.html#WuYHL08,https://doi.org/10.1142/S0218194008003751 +Dirk Draheim,Integrated Framework for Seamless Modeling of Business and Technical Aspects in Process-Oriented Enterprise Applications.,2012,22,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke22.html#DraheimGN12,https://doi.org/10.1142/S0218194012500180 +Soner Kiziloluk,Web Pages Classification with Parliamentary Optimization Algorithm.,2017,27,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke27.html#KizilolukO17,https://doi.org/10.1142/S0218194017500188 +Luanna Lopes Lobato,Risk Management in Software Product Line Engineering: a Mapping Study.,2013,23,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke23.html#LobatoBNMAM13,https://doi.org/10.1142/S0218194013500150 +Augusto Celentano,Template-Based Generation of Multimedia Presentations.,2003,13,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke13.html#CelentanoG03,https://doi.org/10.1142/S0218194003001354 +Nabor C. Mendonça,A Loosely Coupled Aspect Language for SOA Applications.,2008,18,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke18.html#MendoncaSMRV08,https://doi.org/10.1142/S0218194008003623 +Cezary Orlowski,The Use of an Ontotrigger for Designing the Ontology of a Model Maturity Capsule.,2016,26,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke26.html#OrlowskiKNP16,https://doi.org/10.1142/S0218194016500236 +Chia-Yo Chang,Scientific Data Mining: A Case Study.,1998,8,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke8.html#ChangWC98,https://doi.org/10.1142/S0218194098000078 +Paulo Marcos Siqueira Bueno,Automatic Test Data Generation for Program Paths Using Genetic Algorithms.,2002,12,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke12.html#BuenoJ02,https://doi.org/10.1142/S0218194002001074 +Shadi Banitaan,Test Focus Selection for Integration Testing.,2017,27,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke27.html#BanitaanNM17,https://doi.org/10.1142/S0218194017500437 +Bojana Koteska,Quantitative Measurement of Scientific Software Quality: Definition of a Novel Quality Model.,2018,28,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke28.html#KoteskaMP18,https://doi.org/10.1142/S0218194018500146 +Vuk Vukovic,A Business Software Testing Process-Based Model Design.,2018,28,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke28.html#VukovicDT18,https://doi.org/10.1142/S0218194018500201 +Atsushi Sawada,Generating Data Access Programs from PCTE Schemas with Constraints.,1995,5,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke5.html#SawadaMAM95,https://doi.org/10.1142/S0218194095000162 +Robert G. Reynolds,Guest Editors Introduction: .,1995,5,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke5.html#Reynolds95,https://doi.org/10.1142/S0218194095000319 +He Hu 0001,Semi-Automatic Online Tagging with K-Medoid Clustering.,2014,24,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke24.html#HuD14,https://doi.org/10.1142/S0218194014400075 +Jan Wolter 0001,Generating 3D Visual Language Editors: Encapsulating Interaction Techniques in Visual Patterns.,2015,25,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke25.html#WolterK15,https://doi.org/10.1142/S0218194015400124 +Hugo A. Mitre-Hernández,User eXperience Management from Early Stages of Computer Game Development.,2016,26,International Journal of Software Engineering and Knowledge Engineering,8,db/journals/ijseke/ijseke26.html#Mitre-Hernandez16,https://doi.org/10.1142/S021819401650042X +Dianxiang Xu,Automated Test Code Generation from Class State Models.,2009,19,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke19.html#XuXW09,https://doi.org/10.1142/S0218194009004313 +Jihyun Lee,Architecture-Based Software Testing.,2018,28,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke28.html#LeeKK18,https://doi.org/10.1142/S0218194018500031 +Jianhua Ma,Towards a Natural Internet-Based Collaborative Environment with Support of Object Physical and Social Characteristics.,2001,11,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke11.html#MaHN01,https://doi.org/10.1142/S0218194001000402 +Abdelkareem M. Alashqar,A Framework for Selecting Architectural Tactics Using Fuzzy Measures.,2017,27,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke27.html#AlashqarEE17,https://doi.org/10.1142/S0218194017500176 +Stephen H. Edwards,A Flexible Strategy for Embedding and Configuring Run-Time Contract Checks in .Net Components.,2007,17,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke17.html#EdwardsH07,https://doi.org/10.1142/S0218194007003264 +Mehmet S. Aktas,Structural Code Clone Detection Methodology Using Software Metrics.,2016,26,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke26.html#AktasK16,https://doi.org/10.1142/S0218194016500133 +Nenad Stankovic,Guest Editor's Introduction.,2005,15,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke15.html#Stankovic05,https://doi.org/10.1142/S0218194005002592 +Futai Zou,Detecting Domain-Flux Malware Using DNS Failure Traffic.,2018,28,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke28.html#ZouLWLZJ18,https://doi.org/10.1142/S0218194018400016 +Bassey Isong,Enhancing Software Maintenance via Early Prediction of Fault-Prone Object-Oriented Classes.,2017,27,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke27.html#Isong17,https://doi.org/10.1142/S021819401750019X +Junwei Cao,High Performance Service Discovery in Large-Scale Multi-Agent and Mobile-Agent Systems.,2001,11,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke11.html#CaoKN01,https://doi.org/10.1142/S0218194001000682 +Hui Li 0014,Extraction and Analysis of Crucial Fraction in Software Networks.,2014,24,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke24.html#LiCGHZ14,https://doi.org/10.1142/S0218194014500235 +Jiang Guo,Object Modeling to Re-Engineer Legacy Systems.,2000,10,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke10.html#GuoL00,https://doi.org/10.1142/S0218194000000225 +Nikolay N. Mirenkov,Self-Explanatory Components: A New Programming Paradigm.,2001,11,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke11.html#MirenkovVYEHM01,https://doi.org/10.1142/S0218194001000414 +Hoang Chi Thanh,Parallel Combinatorial Algorithms for Multi-Sets and their Applications.,2013,23,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke23.html#Thanh13,https://doi.org/10.1142/S0218194013400068 +Denny Schneeweiss,Configurable Domain Objects for Resource Modelling in Treatment Scheduling.,2015,25,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke25.html#SchneeweissH15,https://doi.org/10.1142/S0218194015400240 +Oscar Mondragon,Supporting Elicitation And Specification Of Software Properties Through Patterns And Composite Propositions.,2004,14,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke14.html#MondragonG04,https://doi.org/10.1142/S0218194004001567 +Ying Jiang,An Approach to Testing Black-Box Components Using Contract-Based Mutation.,2008,18,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke18.html#JiangHSZX08,https://doi.org/10.1142/S0218194008003556 +Aneesa Saeed,Cost and Effectiveness of Search-Based Techniques for Model-Based Testing: An Empirical Analysis.,2017,27,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke27.html#SaeedHS17,https://doi.org/10.1142/S021819401750022X +Karianto Leman,Pda Based Human Motion Recognition System.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#LemanAT05,https://doi.org/10.1142/S021819400500218X +Mehmet Kaya,Identification of Extract Method Refactoring Opportunities through Analysis of Variable Declarations and Uses.,2017,27,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke27.html#KayaF17,https://doi.org/10.1142/S0218194017500036 +Yu Zhou,Augmenting Bug Localization with Part-of-Speech and Invocation.,2017,27,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke27.html#ZhouTCH17,https://doi.org/10.1142/S0218194017500346 +Nuno Flores,Learning Frameworks in a Social-Intensive Knowledge Environment - An Empirical Study.,2017,27,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke27.html#FloresA17,https://doi.org/10.1142/S0218194017500267 +Yean-Ru Chen,Automatic Failure Analysis Using Safecharts.,2007,17,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke17.html#ChenH07,https://doi.org/10.1142/S0218194007003136 +Tsong Yueh Chen,An Integrated Classification-Tree Methodology for Test Case Generation.,2000,10,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke10.html#ChenPT00,https://doi.org/10.1142/S0218194000000353 +Ajaree Naco,A Transformation-Based Approach to Application Model Development: Class Diagram Generation.,2008,18,International Journal of Software Engineering and Knowledge Engineering,7,db/journals/ijseke/ijseke18.html#NacoWA08,https://doi.org/10.1142/S0218194008003933 +Naresh Kumar Nagwani,A Comparative Study of Bug Classification Algorithms.,2014,24,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke24.html#NagwaniV14,https://doi.org/10.1142/S0218194014500053 +Mirna Muñoz,A Methodology for Establishing Multi-Model Environments in Order to Improve Organizational Software Processes.,2014,24,International Journal of Software Engineering and Knowledge Engineering,6,db/journals/ijseke/ijseke24.html#MunozMH14,https://doi.org/10.1142/S0218194014400038 +Pål Halvorsen,Assessment of Linux' Data Path Implementations for Download and Streaming.,2007,17,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke17.html#HalvorsenDG07,https://doi.org/10.1142/S0218194007003343 +Santanu Paul,Supporting Queries on Source Code: a Formal Framework.,1994,4,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke4.html#PaulP94,https://doi.org/10.1142/S0218194094000167 +Jung-Won Lee,Framework for Data Quality Assurance between Composite Services.,2009,19,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke19.html#LeeC09,https://doi.org/10.1142/S0218194009004180 +Yongrui Xu,A Cooperative Coevolution Approach to Automate Pattern-based Software Architectural Synthesis.,2014,24,International Journal of Software Engineering and Knowledge Engineering,10,db/journals/ijseke/ijseke24.html#XuL14,https://doi.org/10.1142/S0218194014400130 +Tim Menzies,Issues with Meta-Knowledge.,2000,10,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke10.html#MenziesAKM00,https://doi.org/10.1142/S0218194000000262 +Andrew Bennett,Using Your Fingers to Think: Enabling Subjective Routing with a Rubber Band Metaphor.,2015,25,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke25.html#BennettDL15,https://doi.org/10.1142/S0218194015400148 +Zhiying Hu,Knowledge-Based Reasoning Enhanced Control System for in-situ Bioremediation Processes.,2008,18,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke18.html#HuCH08,https://doi.org/10.1142/S0218194008003714 +Jane W.-S. Liu,Perts: a Prototyping Environment for Real-Time Systems.,1996,6,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke6.html#LiuLDTSSHRBS96,https://doi.org/10.1142/S0218194096000089 +Richard Torkar,Requirements Traceability: a Systematic Review and Industry Case Study.,2012,22,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke22.html#TorkarGFSRK12,https://doi.org/10.1142/S021819401250009X +Chih-Hung Chang,SysML-Based Requirement Management to Improve Software Development.,2016,26,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke26.html#ChangLCHC16,https://doi.org/10.1142/S0218194016500200 +Stephen H. Edwards,Common Interface Models for Reusable Software.,1993,3,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke3.html#Edwards93,https://doi.org/10.1142/S0218194093000094 +Alexander Felfernig,Uml as Domain Specific Language for the Construction of Knowledge-Based Configuration Systems.,2000,10,International Journal of Software Engineering and Knowledge Engineering,4,db/journals/ijseke/ijseke10.html#FelfernigFJ00,https://doi.org/10.1142/S0218194000000249 +Phillip C.-Y. Sheu,Guest Editors' Introduction.,1997,7,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke7.html#SheuK97,http://ejournals.wspc.com.sg/ijseke/07/0703/S0218194097000163.html +Franco Zambonelli,Organisational Rules as an Abstraction for the Analysis and Design of Multi-Agent Systems.,2001,11,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke11.html#ZambonelliJW01,https://doi.org/10.1142/S0218194001000505 +Arun Lakhotia,"Book Review: ""software Engineering: a Holistic View"".",1992,2,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke2.html#Lakhotia92,https://doi.org/10.1142/S0218194092000324 +Hossain Shahriar,Assessing Test Suites for Buffer Overflow Vulnerabilities.,2010,20,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke20.html#ShahriarZ10,https://doi.org/10.1142/S0218194010004621 +Jihun Park,Human Resource Allocation in Software Project with Practical Considerations.,2015,25,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke25.html#ParkSHSHB15,https://doi.org/10.1142/S021819401540001X +Reidar Conradi,Planning Support to Software Process Evolution.,2000,10,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke10.html#ConradiNWL00,https://doi.org/10.1142/S0218194000000043 +Xiaobing Sun,Analyzing Impact Rules of Different Change Types to Support Change Impact Analysis.,2013,23,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke23.html#SunLWZ13,https://doi.org/10.1142/S0218194013500071 +Katia Romero Felizardo,Visual Text Mining: Ensuring the Presence of Relevant Studies in Systematic Literature Reviews.,2015,25,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke25.html#FelizardoBMVM15,https://doi.org/10.1142/S0218194015500114 +José Ignacio Panach,Early Usability Measurement in Model-Driven Development: Definition and Empirical Evaluation.,2011,21,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke21.html#PanachCVAV11,https://doi.org/10.1142/S0218194011005311 +Burkhard Peuschel,A Knowledge-Based Software Development Environment Supporting Cooperative Work.,1992,2,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke2.html#PeuschelSW92,https://doi.org/10.1142/S0218194092000051 +Liming Yu,Theoretical Analysis and Experiment of A Novel Dep Chip With 3-D Silicon Electrodes.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#YuTXA05,https://doi.org/10.1142/S0218194005002154 +Chee-Yang Song,A Layered Metamodel for Hierarchical Modeling in UML.,2003,13,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke13.html#SongB03,https://doi.org/10.1142/S0218194003001263 +Frank W. Calles,Reverse Engineering Guest Editor's Introductions.,1994,4,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke4.html#Calles94,https://doi.org/10.1142/S0218194094000283 +Marcelo H. Ang Jr.,Towards Pervasive Robotics: Compliant Motion in Human Environments.,2005,15,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke15.html#Ang05,https://doi.org/10.1142/S0218194005002336 +Li Chunlin,Apply Market Mechanism to Agent-Based Grid Resource Management.,2003,13,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke13.html#ChunlinLL03,https://doi.org/10.1142/S0218194003001329 +Xu Wu,A Knowledge-Based System for Correcting Users' Misconceptions in Database Retrieval.,1993,3,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke3.html#WuI93,https://doi.org/10.1142/S0218194093000069 +Taghi M. Khoshgoftaar,Data Mining for Predictors of Software Quality.,1999,9,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke9.html#KhoshgoftaarAJH99,https://doi.org/10.1142/S0218194099000309 +Gennaro Costagliola,A Visual System Supporting Software Reuse in the Banking Legacy System Context.,2003,13,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke13.html#CostagliolaFS03,https://doi.org/10.1142/S0218194003001202 +Daniel McGaughran,Evolving More Representative Programs with Genetic Programming.,2009,19,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke19.html#McGaughranZ09,https://doi.org/10.1142/S021819400900409X +Motoshi Saeki,Guest Editor's Introduction.,1995,5,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke5.html#SaekiD95,https://doi.org/10.1142/S0218194095000320 +Alfs T. Berztiss,Safety-Critical Software: a Research Agenda.,1994,4,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke4.html#Berztiss94,https://doi.org/10.1142/S021819409400009X +Santiago Matalonga,Factors Affecting Distributed Agile Projects: a Systematic Review.,2013,23,International Journal of Software Engineering and Knowledge Engineering,9,db/journals/ijseke/ijseke23.html#MatalongaSM13,https://doi.org/10.1142/S021819401350040X +Gordana Rudic,Using OCL in the Formal Specification of the Library Standards.,2013,23,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke23.html#RudicS13,https://doi.org/10.1142/S0218194013500101 +Kunihiko Higa,Structured Design of a Knowledge-Based Message Dissemination System.,1994,4,International Journal of Software Engineering and Knowledge Engineering,1,db/journals/ijseke/ijseke4.html#HigaAS94,https://doi.org/10.1142/S0218194094000040 +Benjamin Denham,Evaluating the Quality of Drupal Software Modules.,2018,28,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke28.html#DenhamPC18,https://doi.org/10.1142/S0218194018500195 +Bojan Cukic,Automated Generation of Test Trajectories for Embedded Flight Control Systems.,2002,12,International Journal of Software Engineering and Knowledge Engineering,2,db/journals/ijseke/ijseke12.html#CukicTS02,https://doi.org/10.1142/S0218194002000895 +Raúl H. Rosero,15 Years of Software Regression Testing Techniques - A Survey.,2016,26,International Journal of Software Engineering and Knowledge Engineering,5,db/journals/ijseke/ijseke26.html#RoseroGR16,https://doi.org/10.1142/S0218194016300013 +Weibin Liu,Guest Editors' Introduction.,2015,25,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke25.html#LiuL15,https://doi.org/10.1142/S0218194015020039 +Yamin Wang,Sequence Specification for Concurrent Object-Oriented Applications.,1998,8,International Journal of Software Engineering and Knowledge Engineering,3,db/journals/ijseke/ijseke8.html#WangVT98,https://doi.org/10.1142/S0218194098000200 +Robert Meusel,The Graph Structure in the Web - Analyzed on Different Aggregation Levels.,2015,1,J. Web Science,1,db/journals/jws/jws1.html#MeuselVLB15,https://doi.org/10.1561/106.00000003 +Mariana Arantes,Towards Understanding the Consumption of Video-Ads on YouTube.,2018,4,J. Web Science,1,db/journals/jws/jws4.html#ArantesFA18,https://doi.org/10.1561/106.00000011 +Claudia Orellana-Rodriguez,Spreading One's Tweets: How Can Journalists Gain Attention for their Tweeted News?,2017,3,J. Web Science,2,db/journals/jws/jws3.html#Orellana-Rodriguez17,https://doi.org/10.1561/106.00000009 +Emma Cradock,An Extended Investigation of the Similarity Between Privacy Policies of Social Networking Sites as a Precursor for Standardization.,2016,2,J. Web Science,3,db/journals/jws/jws2.html#CradockMS16,https://doi.org/10.1561/106.00000006 +Kareem Darwish,Predicting Online Islamophobic Behavior after #ParisAttacks.,2018,4,J. Web Science,3,db/journals/jws/jws4.html#DarwishMRBA18,https://doi.org/10.1561/106.00000013 +Stephanie Linek,It's All About Information? The Following Behaviour of Professors and PhD Students in Computer Science on Twitter.,2017,3,J. Web Science,1,db/journals/jws/jws3.html#LinekHHJP17,https://doi.org/10.1561/106.00000008 +Jared Lorince,"The Wisdom of the Few? ""Supertaggers"" in Collaborative Tagging Systems.",2015,1,J. Web Science,1,db/journals/jws/jws1.html#LorinceZMT15,https://doi.org/10.1561/106.00000002 +Rakesh Agrawal 0001,Overlap in the Web Search Results of Google and Bing.,2016,2,J. Web Science,2,db/journals/jws/jws2.html#AgrawalGP16,https://doi.org/10.1561/106.00000005 +Natalia Boldyrev,Multi-Cultural Interlinking of Web Taxonomies with ACROSS.,2018,4,J. Web Science,2,db/journals/jws/jws4.html#BoldyrevSW18,https://doi.org/10.1561/106.00000012 +Christoph Trattner,Modeling Activation Processes in Human Memory to Predict the Use of Tags in Social Bookmarking Systems.,2016,2,J. Web Science,1,db/journals/jws/jws2.html#TrattnerKSLK16,https://doi.org/10.1561/106.00000004 +George Gkotsis,ACQUA: Automated Community-based Question Answering through the Discretisation of Shallow Linguistic Features.,2015,1,J. Web Science,1,db/journals/jws/jws1.html#GkotsisLSD15,https://doi.org/10.1561/106.00000001 +Tomu Tominaga,Exploring the Relationship between User Activities and Profile Images on Twitter through Machine Learning Techniques.,2018,5,J. Web Science,1,db/journals/jws/jws5.html#TominagaH18,https://doi.org/10.1561/106.00000015 +Niko Tsakalakis,Identity Assurance in the UK: technical implementation and legal implications under eIDAS.,2017,3,J. Web Science,3,db/journals/jws/jws3.html#TsakalakisSO17,https://doi.org/10.1561/106.00000010 +Simone Kopeinik,Improving Collaborative Filtering Using a Cognitive Model of Human Category Learning.,2017,2,J. Web Science,4,db/journals/jws/jws2.html#KopeinikKHL17,https://doi.org/10.1561/106.00000007 +Sebastian Schelter,On the Ubiquity of Web Tracking: Insights from a Billion-Page Web Crawl.,2018,4,J. Web Science,4,db/journals/jws/jws4.html#SchelterK18,https://doi.org/10.1561/106.00000014 +Romain Demangeon,Practical interruptible conversations: distributed dynamic verification with multiparty session types and Python.,2015,46,Formal Methods in System Design,3,db/journals/fmsd/fmsd46.html#DemangeonHHNY15,https://doi.org/10.1007/s10703-014-0218-8 +Jinghao Shi,Wireless protocol validation under uncertainty.,2018,53,Formal Methods in System Design,1,db/journals/fmsd/fmsd53.html#ShiLCC18,https://doi.org/10.1007/s10703-017-0309-4 +Rachid Guerraoui,Verification of STM on relaxed memory models.,2011,39,Formal Methods in System Design,3,db/journals/fmsd/fmsd39.html#GuerraouiHS11,https://doi.org/10.1007/s10703-011-0131-3 +Tayssir Touili,Preface.,2012,40,Formal Methods in System Design,2,db/journals/fmsd/fmsd40.html#Touili12,https://doi.org/10.1007/s10703-012-0145-5 +Jean-François Monin,Proving the Correctness of the Standardized Algorithm for ABR Conformance.,2000,17,Formal Methods in System Design,3,db/journals/fmsd/fmsd17.html#Monin00,https://doi.org/10.1023/A:1026586217026 +Diederik Verkest,A Proof of the Nonrestoring Division Algorithm and its Implementation on an ALU.,1994,4,Formal Methods in System Design,1,db/journals/fmsd/fmsd4.html#VerkestCM94,https://doi.org/10.1007/BF01383955 +Pavithra Prabhakar,Hybrid automata-based CEGAR for rectangular hybrid systems.,2015,46,Formal Methods in System Design,2,db/journals/fmsd/fmsd46.html#PrabhakarDM015,https://doi.org/10.1007/s10703-015-0225-4 +Ulrich Stern,Parallelizing the Murj Verifier.,2001,18,Formal Methods in System Design,2,db/journals/fmsd/fmsd18.html#SternD01,https://doi.org/10.1023/A:1008771324652 +Anubhav Gupta,Automated assumption generation for compositional verification.,2008,32,Formal Methods in System Design,3,db/journals/fmsd/fmsd32.html#GuptaMF08,https://doi.org/10.1007/s10703-008-0050-0 +Sean Kauffman,Inferring event stream abstractions.,2018,53,Formal Methods in System Design,1,db/journals/fmsd/fmsd53.html#KauffmanHJF18,https://doi.org/10.1007/s10703-018-0317-z +Wonhong Nam,Automatic symbolic compositional verification by learning assumptions.,2008,32,Formal Methods in System Design,3,db/journals/fmsd/fmsd32.html#NamMA08,https://doi.org/10.1007/s10703-008-0055-8 +Cinzia Bernardeschi,A Formal Verification Environment for Railway Signaling System Design.,1998,12,Formal Methods in System Design,2,db/journals/fmsd/fmsd12.html#BernardeschiFGLMR98,https://doi.org/10.1023/A:1008645826258 +Tommaso Bolognesi,Regrouping Parallel Processes.,1996,9,Formal Methods in System Design,3,db/journals/fmsd/fmsd9.html#Bolognesi96,https://doi.org/10.1007/BF00122084 +Victoria Stavridou,Gordon's Computer: A Hardware Verification Case Study in OBJ3.,1994,4,Formal Methods in System Design,3,db/journals/fmsd/fmsd4.html#Stavridou94,https://doi.org/10.1007/BF01384049 +Anders Børjesson,Generality in Design and Compositional Verification Using TAV.,1995,6,Formal Methods in System Design,3,db/journals/fmsd/fmsd6.html#BorjessonLS95,https://doi.org/10.1007/BF01384499 +Kimmo Varpaaniemi,On Stubborn Sets in the Verification of Linear Time Temporal Properties.,2005,26,Formal Methods in System Design,1,db/journals/fmsd/fmsd26.html#Varpaaniemi05,https://doi.org/10.1007/s10703-005-4594-y +Ferhat Khendek,Merging Behavior Specifications.,1995,6,Formal Methods in System Design,3,db/journals/fmsd/fmsd6.html#KhendekB95,https://doi.org/10.1007/BF01384500 +ásgeir Th. Eiríksson,The Formal Design of 1M-gate ASICs.,2000,16,Formal Methods in System Design,1,db/journals/fmsd/fmsd16.html#Eiriksson00,https://doi.org/10.1023/A:1008773308108 +Edmund M. Clarke,Verification of SpecC using predicate abstraction.,2007,30,Formal Methods in System Design,1,db/journals/fmsd/fmsd30.html#ClarkeJK07,https://doi.org/10.1007/s10703-006-0020-3 +James C. Corbett,Using Integer Programming to Verify General Safety and Liveness Properties.,1995,6,Formal Methods in System Design,1,db/journals/fmsd/fmsd6.html#CorbettA95,https://doi.org/10.1007/BF01384316 +Rajeev Alur,Introduction.,2008,32,Formal Methods in System Design,1,db/journals/fmsd/fmsd32.html#AlurP08,https://doi.org/10.1007/s10703-007-0047-0 +T. Karvi,Stepwise Development of Process-Algebraic Specifications in Decorated Trace Semantics.,2005,26,Formal Methods in System Design,3,db/journals/fmsd/fmsd26.html#KarviTK05,https://doi.org/10.1007/s10703-005-1631-9 +Walling R. Cyre,Generating Validation Feedback for Automatic Interpretation of Informal Requirements.,1997,10,Formal Methods in System Design,1,db/journals/fmsd/fmsd10.html#CyreT97,https://doi.org/10.1023/A:1008687607689 +Vu Xuan Tung,raSAT: an SMT solver for polynomial constraints.,2017,51,Formal Methods in System Design,3,db/journals/fmsd/fmsd51.html#TungKO17,https://doi.org/10.1007/s10703-017-0284-9 +Taolue Chen,Automatic verification of competitive stochastic systems.,2013,43,Formal Methods in System Design,1,db/journals/fmsd/fmsd43.html#ChenFKPS13,https://doi.org/10.1007/s10703-013-0183-7 +Ilan Beer,Explaining counterexamples using causality.,2012,40,Formal Methods in System Design,1,db/journals/fmsd/fmsd40.html#BeerBCOT12,https://doi.org/10.1007/s10703-011-0132-2 +Christoph M. Wintersteiger,Efficiently solving quantified bit-vector formulas.,2013,42,Formal Methods in System Design,1,db/journals/fmsd/fmsd42.html#WintersteigerHM13,https://doi.org/10.1007/s10703-012-0156-2 +Karen Yorav,Static Analysis for State-Space Reductions Preserving Temporal Logics.,2004,25,Formal Methods in System Design,1,db/journals/fmsd/fmsd25.html#YoravG04,https://doi.org/10.1023/B:FORM.0000033963.55470.9e +Wing Lok Yeung,Design and Verification of Distributed Recovery Blocks with CSP.,2003,22,Formal Methods in System Design,3,db/journals/fmsd/fmsd22.html#YeungS03,https://doi.org/10.1023/A:1022997110855 +Cindy Eisner,Functional verification of power gated designs by compositional reasoning.,2009,35,Formal Methods in System Design,1,db/journals/fmsd/fmsd35.html#EisnerNY09,https://doi.org/10.1007/s10703-009-0077-x +Alexandre Yakovlev,Designing Control Logic for Counterflow Pipeline Processor Using Petri Nets.,1998,12,Formal Methods in System Design,1,db/journals/fmsd/fmsd12.html#Yakovlev98,https://doi.org/10.1023/A:1008649930696 +Sergey Berezin,Verification of Out-Of-Order Processor Designs Using Model Checking and a Light-Weight Completion Function.,2002,20,Formal Methods in System Design,2,db/journals/fmsd/fmsd20.html#BerezinCBZ02,https://doi.org/10.1023/A:1014170513439 +Farn Wang,Parametric Analysis of Computer Systems.,2000,17,Formal Methods in System Design,1,db/journals/fmsd/fmsd17.html#Wang00,https://doi.org/10.1023/A:1008782501688 +Jean-Christophe Filliâtre,The spirit of ghost code.,2016,48,Formal Methods in System Design,3,db/journals/fmsd/fmsd48.html#FilliatreGP16,https://doi.org/10.1007/s10703-016-0243-x +Sandie Balaguer,A concurrency-preserving translation from time Petri nets to networks of timed automata.,2012,40,Formal Methods in System Design,3,db/journals/fmsd/fmsd40.html#BalaguerCH12,https://doi.org/10.1007/s10703-012-0146-4 +John Harrison,Floating Point Verification in HOL Light: The Exponential Function.,2000,16,Formal Methods in System Design,3,db/journals/fmsd/fmsd16.html#Harrison00,https://doi.org/10.1023/A:1008712907154 +J Strother Moore,A Mechanically Checked Proof of a Multiprocessor Result via a Uniprocessor View.,1999,14,Formal Methods in System Design,2,db/journals/fmsd/fmsd14.html#Moore99,https://doi.org/10.1023/A:1008624904634 +Rajeev Alur,Deciding Global Partial-Order Properties.,2005,26,Formal Methods in System Design,1,db/journals/fmsd/fmsd26.html#AlurMP05,https://doi.org/10.1007/s10703-005-4592-0 +Jan Tretmans,Software Engineering with Formal Methods: The Development of a Storm Surge Barrier Control System Revisiting Seven Myths of Formal Methods.,2001,19,Formal Methods in System Design,2,db/journals/fmsd/fmsd19.html#TretmansWC01,https://doi.org/10.1023/A:1011236117591 +Henny Sipma,Deductive Model Checking.,1999,15,Formal Methods in System Design,1,db/journals/fmsd/fmsd15.html#SipmaUM99,https://doi.org/10.1023/A:1008791913551 +Shoham Ben-David,Model Checking at IBM.,2003,22,Formal Methods in System Design,2,db/journals/fmsd/fmsd22.html#Ben-DavidEGW03,https://doi.org/10.1023/A:1022905120346 +Moritz Martens,Deadlock-freedom in component systems with architectural constraints.,2012,41,Formal Methods in System Design,2,db/journals/fmsd/fmsd41.html#MartensM12,https://doi.org/10.1007/s10703-012-0160-6 +Thomas A. Henzinger,From Pre-Historic to Post-Modern Symbolic Model Checking.,2003,23,Formal Methods in System Design,3,db/journals/fmsd/fmsd23.html#HenzingerKQ03,https://doi.org/10.1023/A:1026228213080 +Alexandre Yakovlev,A Unified Signal Transition Graph Model for Asynchronous Control Circuit Synthesis.,1996,9,Formal Methods in System Design,3,db/journals/fmsd/fmsd9.html#YakovlevLS96,https://doi.org/10.1007/BF00122081 +Robert H. Sloan,Stubborn Sets for Real-Time Petri Nets.,1997,11,Formal Methods in System Design,1,db/journals/fmsd/fmsd11.html#SloanB97,https://doi.org/10.1023/A:1008629725384 +Christoph Meinel,Local Encoding Transformations for Optimizing OBDD-Representations of Finite State Machines.,2001,18,Formal Methods in System Design,3,db/journals/fmsd/fmsd18.html#MeinelT01,https://doi.org/10.1023/A:1011273220017 +Manfred Broy,Theory and methodology of assumption/commitment based system interface specification and architectural contracts.,2018,52,Formal Methods in System Design,1,db/journals/fmsd/fmsd52.html#Broy18,https://doi.org/10.1007/s10703-017-0304-9 +Kunihiko Hiraishi,An approximation algorithm for box abstraction of transition systems on real state spaces.,2013,42,Formal Methods in System Design,2,db/journals/fmsd/fmsd42.html#HiraishiK13,https://doi.org/10.1007/s10703-012-0175-z +Steven M. German,Formal Design of Cache Memory Protocols in IBM.,2003,22,Formal Methods in System Design,2,db/journals/fmsd/fmsd22.html#German03,https://doi.org/10.1023/A:1022921522163 +Stefan Ratschan,Safety verification of non-linear hybrid systems is quasi-decidable.,2014,44,Formal Methods in System Design,1,db/journals/fmsd/fmsd44.html#Ratschan14,https://doi.org/10.1007/s10703-013-0196-2 +Radu Negulescu,Relative Liveness: From Intuition to Automated Verification.,1998,12,Formal Methods in System Design,1,db/journals/fmsd/fmsd12.html#NegulescuB98,https://doi.org/10.1023/A:1008602014766 +Miguel Valero Espada,An abstract interpretation toolkit for andmicro*CRL.,2007,30,Formal Methods in System Design,3,db/journals/fmsd/fmsd30.html#EspadaP07,https://doi.org/10.1007/s10703-006-0029-7 +Roberto Bagnara,Weakly-relational shapes for numeric abstractions: improved algorithms and proofs of correctness.,2009,35,Formal Methods in System Design,3,db/journals/fmsd/fmsd35.html#BagnaraHZ09,https://doi.org/10.1007/s10703-009-0073-1 +Jan Friso Groote,Hiding Propositional Constants in BDDs.,1996,8,Formal Methods in System Design,1,db/journals/fmsd/fmsd8.html#Groote96,https://doi.org/10.1007/BF00121264 +Satrajit Chatterjee,Automatic generation of inductive invariants from high-level microarchitectural models of communication fabrics.,2012,40,Formal Methods in System Design,2,db/journals/fmsd/fmsd40.html#ChatterjeeK12,https://doi.org/10.1007/s10703-011-0134-0 +Jawahar Jain,Probabilistic Verification of Boolean Functions.,1992,1,Formal Methods in System Design,1,db/journals/fmsd/fmsd1.html#JainABF92,https://doi.org/10.1007/BF00464357 +Bernard Plessier,Extended BDDs: Trading off Canonicity for Structure in Verification Algorithms.,1994,4,Formal Methods in System Design,2,db/journals/fmsd/fmsd4.html#PlessierHS94,https://doi.org/10.1007/BF01384083 +Axel Poigné,The Synchronous Approach to Designing Reactive Systems.,1998,12,Formal Methods in System Design,2,db/journals/fmsd/fmsd12.html#PoigneMMHB98,https://doi.org/10.1023/A:1008697810328 +Ludwig Griebl,Some notes on the abstraction operation for multi-terminal binary decision diagrams.,2014,44,Formal Methods in System Design,1,db/journals/fmsd/fmsd44.html#GrieblS14,https://doi.org/10.1007/s10703-013-0198-0 +Orna Grumberg,A work-efficient distributed algorithm for reachability analysis.,2006,29,Formal Methods in System Design,2,db/journals/fmsd/fmsd29.html#GrumbergHS06,https://doi.org/10.1007/s10703-006-0011-4 +Véronique Cortier,Safely composing security protocols.,2009,34,Formal Methods in System Design,1,db/journals/fmsd/fmsd34.html#CortierD09,https://doi.org/10.1007/s10703-008-0059-4 +Víctor A. Braberman,Dealing with practical limitations of distributed timed model checking for timed automata.,2006,29,Formal Methods in System Design,2,db/journals/fmsd/fmsd29.html#BrabermanOS06,https://doi.org/10.1007/s10703-006-0012-3 +Abhay Vardhan,Learning to verify branching time properties.,2007,31,Formal Methods in System Design,1,db/journals/fmsd/fmsd31.html#VardhanV07,https://doi.org/10.1007/s10703-006-0026-x +Thomas Stauner,Properties of Hybrid Systems-A Computer Science Perspective.,2004,24,Formal Methods in System Design,3,db/journals/fmsd/fmsd24.html#Stauner04,https://doi.org/10.1023/B:FORM.0000026091.03793.cf +Ernst Moritz Hahn,A compositional modelling and analysis framework for stochastic hybrid systems.,2013,43,Formal Methods in System Design,2,db/journals/fmsd/fmsd43.html#HahnHHK13,https://doi.org/10.1007/s10703-012-0167-z +Richard Raimi,Silicon Debug of a PowerPC[tm] Microprocessor Using Model Checking.,2002,21,Formal Methods in System Design,1,db/journals/fmsd/fmsd21.html#RaimiL02,https://doi.org/10.1023/A:1016044019648 +Hana De-Leon,Modular Abstractions for Verifying Real-Time Distributed Systems.,1993,2,Formal Methods in System Design,1,db/journals/fmsd/fmsd2.html#De-LeonG93,https://doi.org/10.1007/BF01383942 +Rahul Sharma 0001,From invariant checking to invariant inference using randomized search.,2016,48,Formal Methods in System Design,3,db/journals/fmsd/fmsd48.html#SharmaA16,https://doi.org/10.1007/s10703-016-0248-5 +Alessandro Cimatti,SMT-based scenario verification for hybrid systems.,2013,42,Formal Methods in System Design,1,db/journals/fmsd/fmsd42.html#CimattiMT13,https://doi.org/10.1007/s10703-012-0158-0 +Uri Frank,A predictive synchronizer for periodic clock domains.,2006,28,Formal Methods in System Design,2,db/journals/fmsd/fmsd28.html#FrankKG06,https://doi.org/10.1007/s10703-006-7843-9 +Anton Wijs,Efficient GPU algorithms for parallel decomposition of graphs into strongly connected and maximal end components.,2016,48,Formal Methods in System Design,3,db/journals/fmsd/fmsd48.html#WijsKB16,https://doi.org/10.1007/s10703-016-0246-7 +Ratan Nalumasu,An Efficient Partial Order Reduction Algorithm with an Alternative Proviso Implementation.,2002,20,Formal Methods in System Design,3,db/journals/fmsd/fmsd20.html#NalumasuG02a,https://doi.org/10.1023/A:1014728912264 +Jason Baumgartner,An Abstraction Algorithm for the Verification of Level-Sensitive Latch-Based Netlists.,2003,23,Formal Methods in System Design,1,db/journals/fmsd/fmsd23.html#BaumgartnerHSA03,https://doi.org/10.1023/A:1024485130001 +Luz E. Pinzon,A Comparative Study of Synthesis Methods for Discrete Event Controllers.,1999,15,Formal Methods in System Design,2,db/journals/fmsd/fmsd15.html#PinzonHJB99,https://doi.org/10.1023/A:1008740917111 +Guy Avni,An abstraction-refinement framework for trigger querying.,2014,44,Formal Methods in System Design,2,db/journals/fmsd/fmsd44.html#AvniK14,https://doi.org/10.1007/s10703-013-0200-x +Uraz Cengiz Türker,Hardness and inapproximability of minimizing adaptive distinguishing sequences.,2014,44,Formal Methods in System Design,3,db/journals/fmsd/fmsd44.html#TurkerY14,https://doi.org/10.1007/s10703-014-0205-0 +Radu Iosif,Translating Java for Multiple Model Checkers: The Bandera Back-End.,2005,26,Formal Methods in System Design,2,db/journals/fmsd/fmsd26.html#IosifDH05,https://doi.org/10.1007/s10703-005-1491-3 +John Harrison,Formal Verification of Square Root Algorithms.,2003,22,Formal Methods in System Design,2,db/journals/fmsd/fmsd22.html#Harrison03,https://doi.org/10.1023/A:1022973506233 +Zoltán ádám Mann,Finding optimal hardware/software partitions.,2007,31,Formal Methods in System Design,3,db/journals/fmsd/fmsd31.html#MannOA07,https://doi.org/10.1007/s10703-007-0039-0 +Michael Merritt,Formal Verification of a Distributed Computer System.,1997,10,Formal Methods in System Design,1,db/journals/fmsd/fmsd10.html#MerrittOS97,https://doi.org/10.1023/A:1008667631119 +Simon Bliudze,Causal semantics for the algebra of connectors.,2010,36,Formal Methods in System Design,2,db/journals/fmsd/fmsd36.html#BliudzeS10,https://doi.org/10.1007/s10703-010-0091-z +Hana Chockler,Before and after vacuity.,2009,34,Formal Methods in System Design,1,db/journals/fmsd/fmsd34.html#ChocklerS09,https://doi.org/10.1007/s10703-008-0060-y +Naren Narasimhan,Theorem Proving Guided Development of Formal Assertions in a Resource-Constrained Scheduler for High-Level Synthesis.,2001,19,Formal Methods in System Design,3,db/journals/fmsd/fmsd19.html#NarasimhanTRGV01,https://doi.org/10.1023/A:1011250531814 +Byron Cook,Ranking function synthesis for bit-vector relations.,2013,43,Formal Methods in System Design,1,db/journals/fmsd/fmsd43.html#CookKRW13,https://doi.org/10.1007/s10703-013-0186-4 +David A. Basin,Monitoring of temporal first-order properties with aggregations.,2015,46,Formal Methods in System Design,3,db/journals/fmsd/fmsd46.html#BasinKMZ15,https://doi.org/10.1007/s10703-015-0222-7 +Jürgen Ruf,Symbolic Verification and Analysis of Discrete Timed Systems.,2003,23,Formal Methods in System Design,1,db/journals/fmsd/fmsd23.html#RufK03,https://doi.org/10.1023/A:1024437214071 +Nathalie Bertrand 0001,A game approach to determinize timed automata.,2015,46,Formal Methods in System Design,1,db/journals/fmsd/fmsd46.html#BertrandSJK15,https://doi.org/10.1007/s10703-014-0220-1 +Jinjin Zhang,A modal characterization of alternating approximate bisimilarity.,2014,44,Formal Methods in System Design,3,db/journals/fmsd/fmsd44.html#ZhangZ14,https://doi.org/10.1007/s10703-013-0201-9 +Bill Stoddart,Undefined Expressions and Logic in Z and B.,1999,15,Formal Methods in System Design,3,db/journals/fmsd/fmsd15.html#StoddartDG99,https://doi.org/10.1023/A:1008797018928 +Ali Kassem 0001,Formal analysis and offline monitoring of electronic exams.,2017,51,Formal Methods in System Design,1,db/journals/fmsd/fmsd51.html#KassemFL17,https://doi.org/10.1007/s10703-017-0280-0 +Martin Fränzle,HySAT: An efficient proof engine for bounded model checking of hybrid systems.,2007,30,Formal Methods in System Design,3,db/journals/fmsd/fmsd30.html#FranzleH07,https://doi.org/10.1007/s10703-006-0031-0 +Laurent Fribourg,Finite controlled invariants for sampled switched systems.,2014,45,Formal Methods in System Design,3,db/journals/fmsd/fmsd45.html#FribourgKS14,https://doi.org/10.1007/s10703-014-0211-2 +Michael Kishinevsky,Analysis and Identification of Speed-Independent Circuits on an Event Model.,1994,4,Formal Methods in System Design,1,db/journals/fmsd/fmsd4.html#KishinevskyKTV94,https://doi.org/10.1007/BF01383956 +Frédéric Herbreteau,Efficient emptiness check for timed Büchi automata.,2012,40,Formal Methods in System Design,2,db/journals/fmsd/fmsd40.html#HerbreteauSW12,https://doi.org/10.1007/s10703-011-0133-1 +Robin Sharp,The T-Ruby Design System.,1997,11,Formal Methods in System Design,3,db/journals/fmsd/fmsd11.html#SharpR97,https://doi.org/10.1023/A:1008603713967 +Mary Sheeran,A Tutorial on Stålmarck's Proof Procedure for Propositional Logic.,2000,16,Formal Methods in System Design,1,db/journals/fmsd/fmsd16.html#SheeranS00,https://doi.org/10.1023/A:1008725524946 +Claire Loiseaux,Property Preserving Abstractions for the Verification of Concurrent Systems.,1995,6,Formal Methods in System Design,1,db/journals/fmsd/fmsd6.html#LoiseauxGSBB95,https://doi.org/10.1007/BF01384313 +Christel Baier,Performability assessment by model checking of Markov reward models.,2010,36,Formal Methods in System Design,1,db/journals/fmsd/fmsd36.html#BaierCHHK10,https://doi.org/10.1007/s10703-009-0088-7 +Moonzoo Kim,Java-MaC: A Run-Time Assurance Approach for Java Programs.,2004,24,Formal Methods in System Design,2,db/journals/fmsd/fmsd24.html#KimVKLS04,https://doi.org/10.1023/B:FORM.0000017719.43755.7c +Kostas N. Oikonomou,Abstractions of Random Finite-State Machines.,2001,18,Formal Methods in System Design,3,db/journals/fmsd/fmsd18.html#Oikonomou01,https://doi.org/10.1023/A:1011218301362 +Alberto Griggio,Preface to special issue on satisfiability modulo theories.,2017,51,Formal Methods in System Design,3,db/journals/fmsd/fmsd51.html#GriggioR17,https://doi.org/10.1007/s10703-017-0308-5 +Ruben Gamboa,The Correctness of the Fast Fourier Transform: A Structured Proof in ACL2.,2002,20,Formal Methods in System Design,1,db/journals/fmsd/fmsd20.html#Gamboa02,https://doi.org/10.1023/A:1012912614285 +Michael Mendler,Timing Analysis of Combinational Circuits in Intuitionistic Propositional Logic.,2000,17,Formal Methods in System Design,1,db/journals/fmsd/fmsd17.html#Mendler00,https://doi.org/10.1023/A:1008780817617 +Huimin Lin,PAM: A Process Algebra Manipulator.,1995,7,Formal Methods in System Design,3,db/journals/fmsd/fmsd7.html#Lin95,https://doi.org/10.1007/BF01384078 +Wim H. Hesselink,Simple concurrent garbage collection almost without synchronization.,2010,36,Formal Methods in System Design,2,db/journals/fmsd/fmsd36.html#HesselinkL10,https://doi.org/10.1007/s10703-009-0083-z +Stavros Tripakis,Checking Timed Büchi Automata Emptiness Efficiently.,2005,26,Formal Methods in System Design,3,db/journals/fmsd/fmsd26.html#TripakisYB05,https://doi.org/10.1007/s10703-005-1632-8 +Bishop Brock,The DUAL-EVAL Hardware Description Language and Its Use in the Formal Specification and Verification of the FM9001 Microprocessor.,1997,11,Formal Methods in System Design,1,db/journals/fmsd/fmsd11.html#BrockH97,https://doi.org/10.1023/A:1008685826293 +Jens Chr. Godskesen,Connectivity Testing.,2004,25,Formal Methods in System Design,1,db/journals/fmsd/fmsd25.html#Godskesen04,https://doi.org/10.1023/B:FORM.0000033961.36239.68 +Krishnendu Chatterjee,CEGAR for compositional analysis of qualitative properties in Markov decision processes.,2015,47,Formal Methods in System Design,2,db/journals/fmsd/fmsd47.html#ChatterjeeCD15,https://doi.org/10.1007/s10703-015-0235-2 +Philipp Rümmer,On recursion-free Horn clauses and Craig interpolation.,2015,47,Formal Methods in System Design,1,db/journals/fmsd/fmsd47.html#RummerHK15,https://doi.org/10.1007/s10703-014-0219-7 +Farhad Mavaddat,On Deducing Timing Constraints in the Verification of Interfaces.,1998,12,Formal Methods in System Design,3,db/journals/fmsd/fmsd12.html#MavaddatG98,https://doi.org/10.1023/A:1008626616397 +Marina A. Waldén,Reasoning about Action Systems using the B-Method.,1998,13,Formal Methods in System Design,1,db/journals/fmsd/fmsd13.html#WaldenS98,https://doi.org/10.1023/A:1008688421367 +Roberto M. Amadio,Modelling IP Mobility.,2000,17,Formal Methods in System Design,1,db/journals/fmsd/fmsd17.html#AmadioP00,https://doi.org/10.1023/A:1008734618526 +Jade Alglave,Fences in weak memory models (extended version).,2012,40,Formal Methods in System Design,2,db/journals/fmsd/fmsd40.html#AlglaveMSS12,https://doi.org/10.1007/s10703-011-0135-z +Silvio Ranise,Symbolic backward reachability with effectively propositional logic - Applications to security policy analysis.,2013,42,Formal Methods in System Design,1,db/journals/fmsd/fmsd42.html#Ranise13,https://doi.org/10.1007/s10703-012-0157-1 +Orna Grumberg,Distributed Symbolic Model Checking for andmicro*-Calculus.,2005,26,Formal Methods in System Design,2,db/journals/fmsd/fmsd26.html#GrumbergHS05,https://doi.org/10.1007/s10703-005-1493-1 +Mirko Conrad,Testing-based translation validation of generated code in the context of IEC 61508.,2009,35,Formal Methods in System Design,3,db/journals/fmsd/fmsd35.html#Conrad09,https://doi.org/10.1007/s10703-009-0082-0 +Martin Bromberger,New techniques for linear arithmetic: cubes and equalities.,2017,51,Formal Methods in System Design,3,db/journals/fmsd/fmsd51.html#BrombergerW17,https://doi.org/10.1007/s10703-017-0278-7 +Werner Damm,LSCs: Breathing Life into Message Sequence Charts.,2001,19,Formal Methods in System Design,1,db/journals/fmsd/fmsd19.html#DammH01,https://doi.org/10.1023/A:1011227529550 +Patricia Bouyer,On the optimal reachability problem of weighted timed automata.,2007,31,Formal Methods in System Design,2,db/journals/fmsd/fmsd31.html#BouyerBBR07,https://doi.org/10.1007/s10703-007-0035-4 +Ronald H. Hardin,A New Heuristic for Bad Cycle Detection Using BDDs.,2001,18,Formal Methods in System Design,2,db/journals/fmsd/fmsd18.html#HardinKSV01,https://doi.org/10.1023/A:1008727508722 +Franjo Ivancic,Foreword: Special issue on numerical software verification.,2009,35,Formal Methods in System Design,3,db/journals/fmsd/fmsd35.html#IvancicSW09,https://doi.org/10.1007/s10703-009-0090-0 +James L. Caldwell,Formal Methods Technology Transfer: A View from NASA.,1998,12,Formal Methods in System Design,2,db/journals/fmsd/fmsd12.html#Caldwell98,https://doi.org/10.1023/A:1008693709419 +Divjyot Sethi,Specification and encoding of transaction interaction properties.,2011,39,Formal Methods in System Design,2,db/journals/fmsd/fmsd39.html#SethiMM11,https://doi.org/10.1007/s10703-011-0120-6 +Constantin Enea,Compositional entailment checking for a fragment of separation logic.,2017,51,Formal Methods in System Design,3,db/journals/fmsd/fmsd51.html#EneaLSV17,https://doi.org/10.1007/s10703-017-0289-4 +David A. Basin,Modeling a Hardware Synthesis Methodology in Isabelle.,1999,15,Formal Methods in System Design,2,db/journals/fmsd/fmsd15.html#BasinF99,https://doi.org/10.1023/A:1008758500273 +Pierre Roux,Practical policy iterations - A practical use of policy iterations for static analysis: the quadratic case.,2015,46,Formal Methods in System Design,2,db/journals/fmsd/fmsd46.html#RouxG15,https://doi.org/10.1007/s10703-015-0230-7 +Béatrice Bérard,Timed substitutions for regular signal-event languages.,2007,31,Formal Methods in System Design,2,db/journals/fmsd/fmsd31.html#BerardGP07,https://doi.org/10.1007/s10703-007-0034-5 +Oukseh Lee,A divide-and-conquer approach for analysing overlaid data structures.,2012,41,Formal Methods in System Design,1,db/journals/fmsd/fmsd41.html#LeeYP12,https://doi.org/10.1007/s10703-012-0151-7 +Peter Buchholz,Hierarchical Reachability Graph Generation for Petri Nets.,2002,21,Formal Methods in System Design,3,db/journals/fmsd/fmsd21.html#BuchholzK02,https://doi.org/10.1023/A:1020321222420 +Ghislaine Thuau,A Unified Framework for Describing and Verifying Hardware Synchronous Sequential Systems.,1993,2,Formal Methods in System Design,3,db/journals/fmsd/fmsd2.html#ThuauB93,https://doi.org/10.1007/BF01384134 +Anuj Goel,BDD Based Procedures for a Theory of Equality with Uninterpreted Functions.,2003,22,Formal Methods in System Design,3,db/journals/fmsd/fmsd22.html#GoelSZAS03,https://doi.org/10.1023/A:1022988809947 +James B. Saxe,Using Transformations and Verification in Circuit Design.,1993,3,Formal Methods in System Design,3,db/journals/fmsd/fmsd3.html#SaxeHGG93,https://doi.org/10.1007/BF01384073 +Antonio Cau,Verification and enforcement of access control policies.,2013,43,Formal Methods in System Design,3,db/journals/fmsd/fmsd43.html#CauJM13,https://doi.org/10.1007/s10703-013-0187-3 +Stephen D. Brookes,Using Fixed-Point Semantics to Prove Retiming Lemmas.,1993,2,Formal Methods in System Design,1,db/journals/fmsd/fmsd2.html#Brookes93,https://doi.org/10.1007/BF01383944 +Alessandro Cimatti,Tightening the contract refinements of a system architecture.,2018,52,Formal Methods in System Design,1,db/journals/fmsd/fmsd52.html#CimattiDT18,https://doi.org/10.1007/s10703-017-0312-9 +Scott D. Stoller,Automated Analysis of Fault-Tolerance in Distributed Systems.,2005,26,Formal Methods in System Design,2,db/journals/fmsd/fmsd26.html#StollerS05,https://doi.org/10.1007/s10703-005-1492-2 +David M. Goldschlag,Mechanically Verifying Safety and Liveness Properties of Delay Insensitive Circuits.,1994,5,Formal Methods in System Design,3,db/journals/fmsd/fmsd5.html#Goldschlag94,https://doi.org/10.1007/BF01383831 +Martin Brain,Deciding floating-point logic with abstract conflict driven clause learning.,2014,45,Formal Methods in System Design,2,db/journals/fmsd/fmsd45.html#BrainDGHK14,https://doi.org/10.1007/s10703-013-0203-7 +Patricia Bouyer,Optimal infinite scheduling for multi-priced timed automata.,2008,32,Formal Methods in System Design,1,db/journals/fmsd/fmsd32.html#BouyerBL08,https://doi.org/10.1007/s10703-007-0043-4 +Raghavan Raman,Efficient data race detection for async-finish parallelism.,2012,41,Formal Methods in System Design,3,db/journals/fmsd/fmsd41.html#RamanZSVY12,https://doi.org/10.1007/s10703-012-0143-7 +Yael Abarbanel-Vinov,On the Effective Deployment of Functional Formal Verification.,2001,19,Formal Methods in System Design,1,db/journals/fmsd/fmsd19.html#Abarbanel-VinovABEGHRRSWY01,https://doi.org/10.1023/A:1011219209077 +Sriram Sankaranarayanan,Constructing invariants for hybrid systems.,2008,32,Formal Methods in System Design,1,db/journals/fmsd/fmsd32.html#SankaranarayananSM08,https://doi.org/10.1007/s10703-007-0046-1 +Alessandro Lapadula,A WSDL-based type system for asynchronous WS-BPEL processes.,2011,38,Formal Methods in System Design,2,db/journals/fmsd/fmsd38.html#LapadulaPT11,https://doi.org/10.1007/s10703-010-0110-0 +Wai Wong,Validation of HOL Proofs by Proof Checking.,1999,14,Formal Methods in System Design,2,db/journals/fmsd/fmsd14.html#Wong99,https://doi.org/10.1023/A:1008643803725 +Yliès Falcone,Introduction to the special issue on runtime verification.,2018,53,Formal Methods in System Design,1,db/journals/fmsd/fmsd53.html#FalconeS18,https://doi.org/10.1007/s10703-018-0320-4 +Ti-Yen Yen,Efficient Algorithms for Interface Timing Verification.,1998,12,Formal Methods in System Design,3,db/journals/fmsd/fmsd12.html#YenICW98,https://doi.org/10.1023/A:1008680300467 +Scott F. Smith 0001,Correct Compilation of Specifications to Deterministic Asynchronous Circuits.,1995,7,Formal Methods in System Design,3,db/journals/fmsd/fmsd7.html#SmithZ95,https://doi.org/10.1007/BF01384076 +Lakhdar Akroun,Automated verification of automata communicating via FIFO and bag buffers.,2018,52,Formal Methods in System Design,3,db/journals/fmsd/fmsd52.html#AkrounS18,https://doi.org/10.1007/s10703-017-0285-8 +Jacob Illum Rasmussen,On using priced timed automata to achieve optimal scheduling.,2006,29,Formal Methods in System Design,1,db/journals/fmsd/fmsd29.html#RasmussenLS06,https://doi.org/10.1007/s10703-006-0014-1 +Thuan Quang Huynh,Memory model sensitive bytecode verification.,2007,31,Formal Methods in System Design,3,db/journals/fmsd/fmsd31.html#HuynhR07,https://doi.org/10.1007/s10703-007-0041-6 +Souheib Baarir,Feasibility analysis for robustness quantification by symbolic model checking.,2011,39,Formal Methods in System Design,2,db/journals/fmsd/fmsd39.html#BaarirBEIMPY11,https://doi.org/10.1007/s10703-011-0121-5 +Francesco Alberti,Cardinality constraints for arrays (decidability results and applications).,2017,51,Formal Methods in System Design,3,db/journals/fmsd/fmsd51.html#AlbertiGP17,https://doi.org/10.1007/s10703-017-0279-6 +Heike Wehrheim,Behavioral Subtyping Relations for Active Objects.,2003,23,Formal Methods in System Design,2,db/journals/fmsd/fmsd23.html#Wehrheim03,https://doi.org/10.1023/A:1024764232069 +Radomir S. Stankovic,Non-Abelian Groups in Optimization of Decision Diagrams Representations of Discrete Functions.,2001,18,Formal Methods in System Design,3,db/journals/fmsd/fmsd18.html#Stankovic01,https://doi.org/10.1023/A:1011265018200 +Patricia Bouyer,Forward Analysis of Updatable Timed Automata.,2004,24,Formal Methods in System Design,3,db/journals/fmsd/fmsd24.html#Bouyer04,https://doi.org/10.1023/B:FORM.0000026093.21513.31 +Remy Chevallier,Timed verification of the generic architecture of a memory circuit using parametric timed automata.,2009,34,Formal Methods in System Design,1,db/journals/fmsd/fmsd34.html#ChevallierEFX09,https://doi.org/10.1007/s10703-008-0061-x +Dominique Méry,Editorial Note.,2002,20,Formal Methods in System Design,1,db/journals/fmsd/fmsd20.html#MeryS02,https://doi.org/10.1023/A:1012991827488 +Béatrice Bérard,Compared Study of Two Correctness Proofs for the Standardized.,2003,22,Formal Methods in System Design,1,db/journals/fmsd/fmsd22.html#BerardFKM03,https://doi.org/10.1023/A:1021704214464 +Francesco Alberti,An extension of lazy abstraction with interpolation for programs with arrays.,2014,45,Formal Methods in System Design,1,db/journals/fmsd/fmsd45.html#AlbertiBGRS14,https://doi.org/10.1007/s10703-014-0209-9 +Orna Grumberg,Introduction: Special Issue on CAV '97.,2001,18,Formal Methods in System Design,2,db/journals/fmsd/fmsd18.html#Grumberg01,https://doi.org/10.1023/A:1008784005996 +Bjørnar Luteberget,Efficient verification of railway infrastructure designs against standard regulations.,2018,52,Formal Methods in System Design,1,db/journals/fmsd/fmsd52.html#LutebergetJ18,https://doi.org/10.1007/s10703-017-0281-z +Jørn Lind-Nielsen,Verification of Large State/Event Systems Using Compositionality and Dependency Analysis.,2001,18,Formal Methods in System Design,1,db/journals/fmsd/fmsd18.html#Lind-NielsenAHBKL01,https://doi.org/10.1023/A:1008736219484 +Valeriy Balabanov,Unified QBF certification and its applications.,2012,41,Formal Methods in System Design,1,db/journals/fmsd/fmsd41.html#BalabanovJ12,https://doi.org/10.1007/s10703-012-0152-6 +Michael Mendler,Newtonian Arbiters Cannot be Proven Correct.,1993,3,Formal Methods in System Design,3,db/journals/fmsd/fmsd3.html#MendlerS93,https://doi.org/10.1007/BF01384075 +Robert Eschbach,Applying string-rewriting to sequence-based specification.,2013,43,Formal Methods in System Design,3,db/journals/fmsd/fmsd43.html#EschbachLP13,https://doi.org/10.1007/s10703-013-0185-5 +,The CAV award.,2009,35,Formal Methods in System Design,1,db/journals/fmsd/fmsd35.html#X09,https://doi.org/10.1007/s10703-009-0071-3 +Mani Azimi,Experience with Applying Formal Methods to Protocol Specification and System Architecture.,2003,22,Formal Methods in System Design,2,db/journals/fmsd/fmsd22.html#AzimiCKLMP03,https://doi.org/10.1023/A:1022965204416 +Gregor Gößler,Probabilistic contracts for component-based design.,2012,41,Formal Methods in System Design,2,db/journals/fmsd/fmsd41.html#GosslerXG12,https://doi.org/10.1007/s10703-012-0162-4 +Marta Z. Kwiatkowska,Performance analysis of probabilistic timed automata using digital clocks.,2006,29,Formal Methods in System Design,1,db/journals/fmsd/fmsd29.html#KwiatkowskaNPS06,https://doi.org/10.1007/s10703-006-0005-2 +Ajith K. John,A layered algorithm for quantifier elimination from linear modular constraints.,2016,49,Formal Methods in System Design,3,db/journals/fmsd/fmsd49.html#JohnC16,https://doi.org/10.1007/s10703-016-0260-9 +Parosh Aziz Abdulla,Approximated parameterized verification of infinite-state processes with global conditions.,2009,34,Formal Methods in System Design,2,db/journals/fmsd/fmsd34.html#AbdullaDR09,https://doi.org/10.1007/s10703-008-0062-9 +Steven M. German,Introduction to the Special Issue on Verification of Arithmetic Hardware.,1999,14,Formal Methods in System Design,1,db/journals/fmsd/fmsd14.html#German99,https://doi.org/10.1023/A:1008661411164 +Kshirasagar Naik,Test Case Verification by Model Checking.,1993,2,Formal Methods in System Design,3,db/journals/fmsd/fmsd2.html#NaikS93,https://doi.org/10.1007/BF01384135 +Tuba Yavuz-Kahveci,Action Language verifier: an infinite-state model checker for reactive software specifications.,2009,35,Formal Methods in System Design,3,db/journals/fmsd/fmsd35.html#Yavuz-KahveciB09,https://doi.org/10.1007/s10703-009-0081-1 +Jonas Westman,Conditions of contracts for separating responsibilities in heterogeneous systems.,2018,52,Formal Methods in System Design,2,db/journals/fmsd/fmsd52.html#WestmanN18,https://doi.org/10.1007/s10703-017-0294-7 +Vladimir Klebanov,Automating regression verification of pointer programs by predicate abstraction.,2018,52,Formal Methods in System Design,3,db/journals/fmsd/fmsd52.html#KlebanovRU18,https://doi.org/10.1007/s10703-017-0293-8 +Howard Bowman,A Formal Framework for Viewpoint Consistency.,2002,21,Formal Methods in System Design,2,db/journals/fmsd/fmsd21.html#BowmanSBD02,https://doi.org/10.1023/A:1016000201864 +Deepak Kapur,Mechanical Verification of Adder Circuits using Rewrite Rule Laboratory.,1998,13,Formal Methods in System Design,2,db/journals/fmsd/fmsd13.html#KapurS98,https://doi.org/10.1023/A:1008610818519 +Emmanuel Filiot,Antichains and compositional algorithms for LTL synthesis.,2011,39,Formal Methods in System Design,3,db/journals/fmsd/fmsd39.html#FiliotJR11,https://doi.org/10.1007/s10703-011-0115-3 +Haiyan Xiong,Providing a formal linkage between MDG and HOL.,2007,30,Formal Methods in System Design,2,db/journals/fmsd/fmsd30.html#XiongCTB07,https://doi.org/10.1007/s10703-006-0017-y +Rance Cleaveland,A Linear-Time Model-Checking Algorithm for the Alternation-Free Modal Mu-Calculus.,1993,2,Formal Methods in System Design,2,db/journals/fmsd/fmsd2.html#CleavelandS93,https://doi.org/10.1007/BF01383878 +Peter M. Maurer,Conjugate symmetry.,2011,38,Formal Methods in System Design,3,db/journals/fmsd/fmsd38.html#Maurer11,https://doi.org/10.1007/s10703-011-0116-2 +Rüdiger Ehlers,Symbolic bounded synthesis.,2012,40,Formal Methods in System Design,2,db/journals/fmsd/fmsd40.html#Ehlers12,https://doi.org/10.1007/s10703-011-0137-x +Ravi Hosabettu,Formal Verification of a Complex Pipelined Processor.,2003,23,Formal Methods in System Design,2,db/journals/fmsd/fmsd23.html#HosabettuGS03,https://doi.org/10.1023/A:1024716316140 +Ramin Hojati,An Environment for Formal Verification Based on Symbolic Computations.,1995,6,Formal Methods in System Design,2,db/journals/fmsd/fmsd6.html#HojatiB95,https://doi.org/10.1007/BF01383967 +Javier Esparza,An Improvement of McMillan's Unfolding Algorithm.,2002,20,Formal Methods in System Design,3,db/journals/fmsd/fmsd20.html#EsparzaRV02,https://doi.org/10.1023/A:1014746130920 +Robert P. Kurshan,A Structural Linearization Principle for Processes.,1994,5,Formal Methods in System Design,3,db/journals/fmsd/fmsd5.html#KurshanMOS94,https://doi.org/10.1007/BF01383832 +Dumitru Potop-Butucaru,Concurrency in Synchronous Systems.,2006,28,Formal Methods in System Design,2,db/journals/fmsd/fmsd28.html#Potop-ButucaruCB06,https://doi.org/10.1007/s10703-006-7844-8 +Constance L. Heitmeyer,Guest editorial.,2007,30,Formal Methods in System Design,1,db/journals/fmsd/fmsd30.html#HeitmeyerT07,https://doi.org/10.1007/s10703-006-0018-x +Isil Dillig,Cuts from proofs: a complete and practical technique for solving linear inequalities over integers.,2011,39,Formal Methods in System Design,3,db/journals/fmsd/fmsd39.html#DilligDA11,https://doi.org/10.1007/s10703-011-0127-z +Gerard J. Holzmann,An Analysis of Bitstate Hashing.,1998,13,Formal Methods in System Design,3,db/journals/fmsd/fmsd13.html#Holzmann98,https://doi.org/10.1023/A:1008696026254 +Krishnendu Chatterjee,A survey of partial-observation stochastic parity games.,2013,43,Formal Methods in System Design,2,db/journals/fmsd/fmsd43.html#Chatterjee0H13,https://doi.org/10.1007/s10703-012-0164-2 +Jan Olaf Blech,Certifying compilers using higher-order theorem provers as certificate checkers.,2011,38,Formal Methods in System Design,1,db/journals/fmsd/fmsd38.html#BlechG11,https://doi.org/10.1007/s10703-010-0108-7 +Jo C. Ebergen,Design and Analysis of Delay-Insensitive Modulo-N Counters.,1993,3,Formal Methods in System Design,3,db/journals/fmsd/fmsd3.html#EbergenP93,https://doi.org/10.1007/BF01384074 +Martin Keim,Polynomial Formal Verification of Multipliers.,2003,22,Formal Methods in System Design,1,db/journals/fmsd/fmsd22.html#KeimDBMM03,https://doi.org/10.1023/A:1021752130394 +Robert B. Jones,Formal Verification of Out-of-Order Execution with Incremental Flushing.,2002,20,Formal Methods in System Design,2,db/journals/fmsd/fmsd20.html#JonesSD02,https://doi.org/10.1023/A:1014118529369 +Doron A. Peled,Relaxed Visibility Enhances Partial Order Reduction.,2001,19,Formal Methods in System Design,3,db/journals/fmsd/fmsd19.html#PeledVK01,https://doi.org/10.1023/A:1011202615884 +Gianpiero Cabodi,SAT solver management strategies in IC3: an experimental approach.,2017,50,Formal Methods in System Design,1,db/journals/fmsd/fmsd50.html#CabodiCMPP17,https://doi.org/10.1007/s10703-017-0272-0 +Andreas Fellner,NP-completeness of small conflict set generation for congruence closure.,2017,51,Formal Methods in System Design,3,db/journals/fmsd/fmsd51.html#FellnerFP17,https://doi.org/10.1007/s10703-017-0283-x +Pranav Garg 0001,Quantified data automata for linear data structures: a register automaton model with applications to learning invariants of programs manipulating arrays and lists.,2015,47,Formal Methods in System Design,1,db/journals/fmsd/fmsd47.html#0001LMN15,https://doi.org/10.1007/s10703-015-0231-6 +Bettina Könighofer,Shield synthesis.,2017,51,Formal Methods in System Design,2,db/journals/fmsd/fmsd51.html#KonighoferABHKT17,https://doi.org/10.1007/s10703-017-0276-9 +William R. Harris,Program synthesis for interactive-security systems.,2017,51,Formal Methods in System Design,2,db/journals/fmsd/fmsd51.html#HarrisJRS17,https://doi.org/10.1007/s10703-017-0296-5 +Yakir Vizel,Efficient generation of small interpolants in CNF.,2015,47,Formal Methods in System Design,1,db/journals/fmsd/fmsd47.html#VizelNR15,https://doi.org/10.1007/s10703-015-0224-5 +Clark W. Barrett,Design and results of the 2nd annual satisfiability modulo theories competition (SMT-COMP 2006).,2007,31,Formal Methods in System Design,3,db/journals/fmsd/fmsd31.html#BarrettMS07,https://doi.org/10.1007/s10703-007-0038-1 +Olaf Schröer,The Theory of Zero-Suppressed BDDs and the Number of Knight's Tours.,1998,13,Formal Methods in System Design,3,db/journals/fmsd/fmsd13.html#SchroerW98,https://doi.org/10.1023/A:1008681625346 +Scott D. Stoller,Optimistic synchronization-based state-space reduction.,2006,28,Formal Methods in System Design,3,db/journals/fmsd/fmsd28.html#StollerC06,https://doi.org/10.1007/s10703-006-0003-4 +Himanshu Jain,Efficient Craig interpolation for linear Diophantine (dis)equations and linear modular equations.,2009,35,Formal Methods in System Design,1,db/journals/fmsd/fmsd35.html#JainCG09,https://doi.org/10.1007/s10703-009-0069-x +Linar Mikeev,On-the-fly verification and optimization of DTA-properties for large Markov chains.,2013,43,Formal Methods in System Design,2,db/journals/fmsd/fmsd43.html#MikeevNSW13,https://doi.org/10.1007/s10703-012-0165-1 +Christel Baier,Preface to the special issue on Probabilistic Model Checking.,2013,43,Formal Methods in System Design,2,db/journals/fmsd/fmsd43.html#BaierK13,https://doi.org/10.1007/s10703-013-0194-4 +Tomohiro Yoneda,Efficient Verification of Parallel Real-Time Systems.,1997,11,Formal Methods in System Design,2,db/journals/fmsd/fmsd11.html#YonedaS97,https://doi.org/10.1023/A:1008682131325 +Howard Bowman,Mexitl: Multimedia in Executable Interval Temporal Logic.,2003,22,Formal Methods in System Design,1,db/journals/fmsd/fmsd22.html#BowmanCKT03,https://doi.org/10.1023/A:1021736013555 +Christian von Essen,Program repair without regret.,2015,47,Formal Methods in System Design,1,db/journals/fmsd/fmsd47.html#EssenJ15,https://doi.org/10.1007/s10703-015-0223-6 +Randal E. Bryant,The 2008 CAV Award citation.,2009,35,Formal Methods in System Design,1,db/journals/fmsd/fmsd35.html#BryantGHV09,https://doi.org/10.1007/s10703-009-0070-4 +Costas Courcoubetis,Minimum and Maximum Delay Problems in Real-Time Systems.,1992,1,Formal Methods in System Design,4,db/journals/fmsd/fmsd1.html#CourcoubetisY92,https://doi.org/10.1007/BF00709157 +Sagar Chaki,Verification of evolving software via component substitutability analysis.,2008,32,Formal Methods in System Design,3,db/journals/fmsd/fmsd32.html#ChakiCSS08,https://doi.org/10.1007/s10703-008-0053-x +Suan Hsi Yong,Using Static Analysis to Reduce Dynamic Analysis Overhead.,2005,27,Formal Methods in System Design,3,db/journals/fmsd/fmsd27.html#YongH05,https://doi.org/10.1007/s10703-005-3401-0 +Stavros Tripakis,Analysis of Timed Systems Using Time-Abstracting Bisimulations.,2001,18,Formal Methods in System Design,1,db/journals/fmsd/fmsd18.html#TripakisY01,https://doi.org/10.1023/A:1008734703554 +Gavin J. Doherty,Using Hybrid Automata to Support Human Factors Analysis in a Critical System.,2001,19,Formal Methods in System Design,2,db/journals/fmsd/fmsd19.html#DohertyMF01,https://doi.org/10.1023/A:1011232016683 +Alessandro Cimatti,Infinite-state invariant checking with IC3 and predicate abstraction.,2016,49,Formal Methods in System Design,3,db/journals/fmsd/fmsd49.html#CimattiGMT16,https://doi.org/10.1007/s10703-016-0257-4 +Salvatore La Torre,The word problem for visibly pushdown languages described by grammars.,2007,31,Formal Methods in System Design,3,db/journals/fmsd/fmsd31.html#TorreNP07,https://doi.org/10.1007/s10703-007-0040-7 +Johann A. Makowsky,Keeping logic in the trivium of computer science: a teaching perspective.,2017,51,Formal Methods in System Design,2,db/journals/fmsd/fmsd51.html#MakowskyZ17,https://doi.org/10.1007/s10703-017-0301-z +Zhou Chaochen,A Model for Synchronous Switching Circuits and its Theory of Correctness.,1992,1,Formal Methods in System Design,1,db/journals/fmsd/fmsd1.html#ChaochenH92,https://doi.org/10.1007/BF00464355 +Alexander Bell,Distributed disk-based algorithms for model checking very large Markov chains.,2006,29,Formal Methods in System Design,2,db/journals/fmsd/fmsd29.html#BellH06,https://doi.org/10.1007/s10703-006-0007-0 +Rajeev Alur,Reactive Modules.,1999,15,Formal Methods in System Design,1,db/journals/fmsd/fmsd15.html#AlurH99b,https://doi.org/10.1023/A:1008739929481 +David L. Dill,Specification and Automatic Verification of Self-Timed Queues.,1992,1,Formal Methods in System Design,1,db/journals/fmsd/fmsd1.html#DillNS92,https://doi.org/10.1007/BF00464356 +Gianpiero Cabodi,Benchmarking a model checker for algorithmic improvements and tuning for performance.,2011,39,Formal Methods in System Design,2,db/journals/fmsd/fmsd39.html#CabodiNQ11,https://doi.org/10.1007/s10703-011-0123-3 +Klaus Winkelmann,Formal Methods in Designing Embedded Systems-the SACRES Experience.,2001,19,Formal Methods in System Design,1,db/journals/fmsd/fmsd19.html#Winkelmann01,https://doi.org/10.1023/A:1011295931367 +Viktor Gyuris,On-the-Fly Model Checking Under Fairness that Exploits Symmetry.,1999,15,Formal Methods in System Design,3,db/journals/fmsd/fmsd15.html#GyurisS99,https://doi.org/10.1023/A:1008701202999 +Antti Valmari,A Stubborn Attack on State Explosion.,1992,1,Formal Methods in System Design,4,db/journals/fmsd/fmsd1.html#Valmari92,https://doi.org/10.1007/BF00709154 +Christoffer Sloth,Verification of continuous dynamical systems by timed automata.,2011,39,Formal Methods in System Design,1,db/journals/fmsd/fmsd39.html#SlothW11,https://doi.org/10.1007/s10703-011-0118-0 +Borzoo Bonakdarpour,Time-triggered runtime verification.,2013,43,Formal Methods in System Design,1,db/journals/fmsd/fmsd43.html#BonakdarpourNF13,https://doi.org/10.1007/s10703-012-0182-0 +Paola Inverardi,Automatic Verification of Distributed Systems: The Process Algebra Approach.,1996,8,Formal Methods in System Design,1,db/journals/fmsd/fmsd8.html#InverardiP96,https://doi.org/10.1007/BF00121261 +Aaron Stump,SMT proof checking using a logical framework.,2013,42,Formal Methods in System Design,1,db/journals/fmsd/fmsd42.html#StumpORHT13,https://doi.org/10.1007/s10703-012-0163-3 +Shoham Ben-David,Vacuity in practice: temporal antecedent failure.,2015,46,Formal Methods in System Design,1,db/journals/fmsd/fmsd46.html#Ben-DavidCFR15,https://doi.org/10.1007/s10703-014-0221-0 +Bernard Boigelot,Symbolic Verification of Communication Protocols with Infinite State Spaces using QDDs.,1999,14,Formal Methods in System Design,3,db/journals/fmsd/fmsd14.html#BoigelotG99,https://doi.org/10.1023/A:1008719024240 +Patrice Godefroid,Software Model Checking: The VeriSoft Approach.,2005,26,Formal Methods in System Design,2,db/journals/fmsd/fmsd26.html#Godefroid05,https://doi.org/10.1007/s10703-005-1489-x +Orna Kupferman,On relative and probabilistic finite counterability.,2018,52,Formal Methods in System Design,2,db/journals/fmsd/fmsd52.html#KupfermanV18,https://doi.org/10.1007/s10703-017-0277-8 +Jordan Gergov,Mod-2-OBDDs - A Data Structure that Generalizes EXOR-Sum-of-Products and Ordered Binary Decision Diagrams.,1996,8,Formal Methods in System Design,3,db/journals/fmsd/fmsd8.html#GergovM96,https://doi.org/10.1007/BF00709139 +Alastair F. Donaldson,Counterexample-guided abstraction refinement for symmetric concurrent programs.,2012,41,Formal Methods in System Design,1,db/journals/fmsd/fmsd41.html#DonaldsonKKTW12,https://doi.org/10.1007/s10703-012-0155-3 +Alessandro Fantechi,Assisting Requirement Formalization by Means of Natural Language Translation.,1994,4,Formal Methods in System Design,3,db/journals/fmsd/fmsd4.html#FantechiGRCVM94,https://doi.org/10.1007/BF01384048 +Jiazhao Xu,Scalable reachability analysis via automated dynamic netlist-based hint generation.,2014,45,Formal Methods in System Design,2,db/journals/fmsd/fmsd45.html#XuWMB14,https://doi.org/10.1007/s10703-014-0213-0 +Jyotirmoy V. Deshmukh,Robust online monitoring of signal temporal logic.,2017,51,Formal Methods in System Design,1,db/journals/fmsd/fmsd51.html#DeshmukhDGJJS17,https://doi.org/10.1007/s10703-017-0286-7 +Janusz A. Brzozowski,Hazard Algebras.,2003,23,Formal Methods in System Design,3,db/journals/fmsd/fmsd23.html#BrzozowskiE03,https://doi.org/10.1023/A:1026218512171 +Nikolaj Bjørner,Verifying Temporal Properties of Reactive Systems: A STeP Tutorial.,2000,16,Formal Methods in System Design,3,db/journals/fmsd/fmsd16.html#BjornerBCFMSU00,https://doi.org/10.1023/A:1008700623084 +Rajeev Alur,Partial-Order Reduction in Symbolic State-Space Exploration.,2001,18,Formal Methods in System Design,2,db/journals/fmsd/fmsd18.html#AlurBHQR01,https://doi.org/10.1023/A:1008767206905 +Sagar Chaki,Regression verification for multi-threaded programs (with extensions to locks and dynamic thread creation).,2015,47,Formal Methods in System Design,3,db/journals/fmsd/fmsd47.html#ChakiGS15,https://doi.org/10.1007/s10703-015-0237-0 +Julia M. B. Braman,Bisimulation conversion and verification procedure for©0*goal-based control systems.,2011,38,Formal Methods in System Design,1,db/journals/fmsd/fmsd38.html#BramanM11,https://doi.org/10.1007/s10703-010-0109-6 +Shuvra S. Bhattacharyya,Looped Schedules for Dataflow Descriptions of Multirate Signal Processing Algorithms.,1994,5,Formal Methods in System Design,3,db/journals/fmsd/fmsd5.html#BhattacharyyaL94,https://doi.org/10.1007/BF01383830 +Rajeev Alur,Introduction.,1999,14,Formal Methods in System Design,3,db/journals/fmsd/fmsd14.html#AlurH99,https://doi.org/10.1023/A:1008751407402 +Patrice Godefroid,State-Space Caching Revisited.,1995,7,Formal Methods in System Design,3,db/journals/fmsd/fmsd7.html#GodefroidHP95,https://doi.org/10.1007/BF01384077 +Praveen K. Murthy,Joint Minimization of Code and Data for Synchronous Dataflow Programs.,1997,11,Formal Methods in System Design,1,db/journals/fmsd/fmsd11.html#MurthyBL97,https://doi.org/10.1023/A:1008633809454 +Gianpiero Cabodi,The General Product Machine: a New Model for Symbolic FSM Traversal.,1998,12,Formal Methods in System Design,3,db/journals/fmsd/fmsd12.html#CabodiCCPR98,https://doi.org/10.1023/A:1008632417306 +Georg Gottlob,Preface of the Special Issue in Memoriam Helmut Veith.,2017,51,Formal Methods in System Design,2,db/journals/fmsd/fmsd51.html#GottlobHW17,https://doi.org/10.1007/s10703-017-0307-6 +Fides Aarts,Generating models of infinite-state communication protocols using regular inference with abstraction.,2015,46,Formal Methods in System Design,1,db/journals/fmsd/fmsd46.html#AartsJUV15,https://doi.org/10.1007/s10703-014-0216-x +Pascalin Amagbégnon,Verifying the Implementation of an Error Control Code.,2003,22,Formal Methods in System Design,2,db/journals/fmsd/fmsd22.html#AmagbegnonB03,https://doi.org/10.1023/A:1022925623072 +Marsha Chechik,Data structures for symbolic multi-valued model-checking.,2006,29,Formal Methods in System Design,3,db/journals/fmsd/fmsd29.html#ChechikGDLE06,https://doi.org/10.1007/s10703-006-0016-z +Henrik Reif Andersen,Compositional Checking of Satsfaction.,1992,1,Formal Methods in System Design,4,db/journals/fmsd/fmsd1.html#AndersenW92,https://doi.org/10.1007/BF00709155 +Michael C. McFarland,Formal Analysis of Correctness of Behavioral Transformations.,1993,2,Formal Methods in System Design,3,db/journals/fmsd/fmsd2.html#McFarland93,https://doi.org/10.1007/BF01384133 +Alex Kondratyev,Analysis of Petri Nets by Ordering Relations in Reduced Unfoldings.,1998,12,Formal Methods in System Design,1,db/journals/fmsd/fmsd12.html#KondratyevKTT98,https://doi.org/10.1023/A:1008669013857 +Rajeev Alur,Introduction.,1999,15,Formal Methods in System Design,1,db/journals/fmsd/fmsd15.html#AlurH99a,https://doi.org/10.1023/A:1008749012643 +Saddek Bensalem,Automatic Generation of Invariants.,1999,15,Formal Methods in System Design,1,db/journals/fmsd/fmsd15.html#BensalemL99,https://doi.org/10.1023/A:1008744030390 +Oleg Sokolsky,Introduction to the special issue on runtime verification.,2012,41,Formal Methods in System Design,3,db/journals/fmsd/fmsd41.html#SokolskyR12,https://doi.org/10.1007/s10703-012-0174-0 +Grigore Rosu,Finite-trace linear temporal logic: coinductive completeness.,2018,53,Formal Methods in System Design,1,db/journals/fmsd/fmsd53.html#Rosu18,https://doi.org/10.1007/s10703-018-0321-3 +K. Mani Chandy,An Experiment in Program Composition and Proof.,2002,20,Formal Methods in System Design,1,db/journals/fmsd/fmsd20.html#ChandyC02,https://doi.org/10.1023/A:1012952311559 +Gianpiero Cabodi,Optimization techniques for craig interpolant compaction in unbounded model checking.,2015,46,Formal Methods in System Design,2,db/journals/fmsd/fmsd46.html#CabodiLV15,https://doi.org/10.1007/s10703-015-0229-0 +Fatemeh Ghassemi,Model checking mobile ad hoc networks.,2016,49,Formal Methods in System Design,3,db/journals/fmsd/fmsd49.html#GhassemiF16,https://doi.org/10.1007/s10703-016-0254-7 +David M. Russinoff,A Mechanically Checked Proof of Correctness of the AMD K5 Floating Point Square Root Microcode.,1999,14,Formal Methods in System Design,1,db/journals/fmsd/fmsd14.html#Russinoff99,https://doi.org/10.1023/A:1008669628911 +Nazanin Mansouri,Automated Correctness Condition Generation for Formal Verification of Synthesized RTL Designs.,2000,16,Formal Methods in System Design,1,db/journals/fmsd/fmsd16.html#MansouriV00,https://doi.org/10.1023/A:1008777509016 +Joost-Pieter Katoen,A Consistent Causality-Based View on a Timed Process Algebra Including Urgent Interactions.,1998,12,Formal Methods in System Design,2,db/journals/fmsd/fmsd12.html#KatoenLBLB98,https://doi.org/10.1023/A:1008649927166 +Adnan Aziz,Formula-Dependent Equivalence for Compositional CTL Model Checking.,2002,21,Formal Methods in System Design,2,db/journals/fmsd/fmsd21.html#AzizSSBS02,https://doi.org/10.1023/A:1016043502772 +Ashish Tiwari,Abstractions for hybrid systems.,2008,32,Formal Methods in System Design,1,db/journals/fmsd/fmsd32.html#Tiwari08,https://doi.org/10.1007/s10703-007-0044-3 +Sebastian S. Bauer,Weighted modal transition systems.,2013,42,Formal Methods in System Design,2,db/journals/fmsd/fmsd42.html#BauerFJLLT13,https://doi.org/10.1007/s10703-012-0178-9 +Ariel Cohen 0002,Local proofs for global safety properties.,2009,34,Formal Methods in System Design,2,db/journals/fmsd/fmsd34.html#CohenN09,https://doi.org/10.1007/s10703-008-0063-8 +Henrik Hulgaard,Bounded Delay Timing Analysis of a Class of CSP Programs.,1997,11,Formal Methods in System Design,3,db/journals/fmsd/fmsd11.html#HulgaardB97,https://doi.org/10.1023/A:1008655714875 +Orna Kupferman,From liveness to promptness.,2009,34,Formal Methods in System Design,2,db/journals/fmsd/fmsd34.html#KupfermanPV09,https://doi.org/10.1007/s10703-009-0067-z +Gianfranco Ciardo,Exploiting interleaving semantics in symbolic state-space generation.,2007,31,Formal Methods in System Design,1,db/journals/fmsd/fmsd31.html#CiardoLM07,https://doi.org/10.1007/s10703-006-0033-y +Igor Walukiewicz,Difficult Configurations-On the Complexity of LTrL.,2005,26,Formal Methods in System Design,1,db/journals/fmsd/fmsd26.html#Walukiewicz05,https://doi.org/10.1007/s10703-005-4593-z +S. Akshay,Event clock message passing automata: a logical characterization and an emptiness checking algorithm.,2013,42,Formal Methods in System Design,3,db/journals/fmsd/fmsd42.html#AkshayBG13,https://doi.org/10.1007/s10703-012-0179-8 +Jade Alglave,A formal hierarchy of weak memory models.,2012,41,Formal Methods in System Design,2,db/journals/fmsd/fmsd41.html#Alglave12,https://doi.org/10.1007/s10703-012-0161-5 +Janett Mohnke,Limits of Using Signatures for Permutation Independent Boolean Comparison.,2002,21,Formal Methods in System Design,2,db/journals/fmsd/fmsd21.html#MohnkeMM02,https://doi.org/10.1023/A:1016091418702 +Krishnendu Chatterjee,Code aware resource management.,2013,42,Formal Methods in System Design,2,db/journals/fmsd/fmsd42.html#ChatterjeeAFMR13,https://doi.org/10.1007/s10703-012-0170-4 +Adrian Francalanza,Monitorability for the Hennessy-Milner logic with recursion.,2017,51,Formal Methods in System Design,1,db/journals/fmsd/fmsd51.html#FrancalanzaAI17,https://doi.org/10.1007/s10703-017-0273-z +A. Prasad Sistla,Checking extended CTL properties using guarded quotient structures.,2007,31,Formal Methods in System Design,3,db/journals/fmsd/fmsd31.html#SistlaWZ07,https://doi.org/10.1007/s10703-007-0037-2 +Gerd Behrmann,Verification of Hierarchical State/Event Systems using Reusability and Compositionality.,2002,21,Formal Methods in System Design,2,db/journals/fmsd/fmsd21.html#BehrmannLAHL02,https://doi.org/10.1023/A:1016095519611 +Jørgen Staunstrup,Localized Verification of Modular Designs.,1995,6,Formal Methods in System Design,3,db/journals/fmsd/fmsd6.html#StaunstrupM95,https://doi.org/10.1007/BF01384501 +John Penix,Verifying Time Partitioning in the DEOS Scheduling Kernel.,2005,26,Formal Methods in System Design,2,db/journals/fmsd/fmsd26.html#PenixVPPELW05,https://doi.org/10.1007/s10703-005-1490-4 +Tomás Brázdil,Analyzing probabilistic pushdown automata.,2013,43,Formal Methods in System Design,2,db/journals/fmsd/fmsd43.html#BrazdilEKK13,https://doi.org/10.1007/s10703-012-0166-0 +Alastair F. Donaldson,Automatic analysis of DMA races using model checking and k-induction.,2011,39,Formal Methods in System Design,1,db/journals/fmsd/fmsd39.html#DonaldsonKR11,https://doi.org/10.1007/s10703-011-0124-2 +Nathalie Bertrand 0001,Computable fixpoints in well-structured symbolic model checking.,2013,43,Formal Methods in System Design,2,db/journals/fmsd/fmsd43.html#BertrandS13,https://doi.org/10.1007/s10703-012-0168-y +Stefan Kiefer,Algorithmic probabilistic game semantics - Playing games with automata.,2013,43,Formal Methods in System Design,2,db/journals/fmsd/fmsd43.html#KieferMOWW13,https://doi.org/10.1007/s10703-012-0173-1 +Jonathan Heinen,Juggrnaut: using graph grammars for abstracting unbounded heap structures.,2015,47,Formal Methods in System Design,2,db/journals/fmsd/fmsd47.html#HeinenJKN15,https://doi.org/10.1007/s10703-015-0236-1 +Claude Jard,Symbolic unfolding of parametric stopwatch Petri nets.,2013,43,Formal Methods in System Design,3,db/journals/fmsd/fmsd43.html#JardLRT13,https://doi.org/10.1007/s10703-013-0188-2 +Eugene Goldberg,Quantifier elimination by dependency sequents.,2014,45,Formal Methods in System Design,2,db/journals/fmsd/fmsd45.html#GoldbergM14,https://doi.org/10.1007/s10703-014-0214-z +Warren A. Hunt Jr.,Introduction: Special Issue on Microprocessor Verifications.,2002,20,Formal Methods in System Design,2,db/journals/fmsd/fmsd20.html#Hunt02,https://doi.org/10.1023/A:1014175712530 +Marta Kwiatkowska,2014 CAV award announcement.,2016,48,Formal Methods in System Design,3,db/journals/fmsd/fmsd48.html#KwiatkowskaVBB16,https://doi.org/10.1007/s10703-016-0244-9 +Karin Quaas,MSO logics for weighted timed automata.,2011,38,Formal Methods in System Design,3,db/journals/fmsd/fmsd38.html#Quaas11,https://doi.org/10.1007/s10703-011-0112-6 +Muffy Calder,Feature interaction detection by pairwise analysis of LTL properties - A case study.,2006,28,Formal Methods in System Design,3,db/journals/fmsd/fmsd28.html#CalderM06,https://doi.org/10.1007/s10703-006-0002-5 +Roberto Sebastiani,GSTE is partitioned model checking.,2007,31,Formal Methods in System Design,2,db/journals/fmsd/fmsd31.html#SebastianiSTV07,https://doi.org/10.1007/s10703-007-0036-3 +David Kortenkamp,A Suite of Tools for Debugging Distributed Autonomous Systems.,2004,24,Formal Methods in System Design,2,db/journals/fmsd/fmsd24.html#KortenkampSMF04,https://doi.org/10.1023/B:FORM.0000017720.64153.57 +Edmund M. Clarke,Editorial.,1997,10,Formal Methods in System Design,1,db/journals/fmsd/fmsd10.html#Clarke97,https://doi.org/10.1023/A:1008659413372 +Ofer Strichman,Accelerating Bounded Model Checking of Safety Properties.,2004,24,Formal Methods in System Design,1,db/journals/fmsd/fmsd24.html#Strichman04,https://doi.org/10.1023/B:FORM.0000004785.67232.f8 +Rajarshi Mukherjee,Efficient Combinational Verification Using Overlapping Local BDDs and a Hash Table.,2002,21,Formal Methods in System Design,1,db/journals/fmsd/fmsd21.html#MukherjeeJTAFF02,https://doi.org/10.1023/A:1016096020556 +Catia M. Angelo,On the Comparison of HOL and Boyer-Moore for Formal Hardware Verification.,1993,2,Formal Methods in System Design,1,db/journals/fmsd/fmsd2.html#AngeloVCM93,https://doi.org/10.1007/BF01383943 +Thao Dang,Coverage-guided test generation for continuous and hybrid systems.,2009,34,Formal Methods in System Design,2,db/journals/fmsd/fmsd34.html#DangN09,https://doi.org/10.1007/s10703-009-0066-0 +Patrick Moosbrugger,R2U2: monitoring and diagnosis of security threats for unmanned aerial systems.,2017,51,Formal Methods in System Design,1,db/journals/fmsd/fmsd51.html#MoosbruggerRS17,https://doi.org/10.1007/s10703-017-0275-x +Alexey Lvov,Verification of Galois field based circuits by formal reasoning based on computational algebraic geometry.,2014,45,Formal Methods in System Design,2,db/journals/fmsd/fmsd45.html#LvovLTPSE14,https://doi.org/10.1007/s10703-014-0206-z +Roberto Barbuti,Reduced Models for Efficient CCS Verification.,2005,26,Formal Methods in System Design,3,db/journals/fmsd/fmsd26.html#BarbutiFSV05,https://doi.org/10.1007/s10703-005-1634-6 +Doron A. Peled,Introduction: Special Issue on Partial Order in Formal Methods.,2005,26,Formal Methods in System Design,1,db/journals/fmsd/fmsd26.html#Peled05,https://doi.org/10.1007/s10703-005-4591-1 +Victor Khomenko,Verification of bounded Petri nets using integer programming.,2007,30,Formal Methods in System Design,2,db/journals/fmsd/fmsd30.html#KhomenkoK07,https://doi.org/10.1007/s10703-006-0022-1 +C. Norris Ip,Verifying Systems with Replicated Components in Mur[b.phiv].,1999,14,Formal Methods in System Design,3,db/journals/fmsd/fmsd14.html#IpD99,https://doi.org/10.1023/A:1008723125149 +Franck Cassez,Synthesis of opaque systems with static and dynamic masks.,2012,40,Formal Methods in System Design,1,db/journals/fmsd/fmsd40.html#CassezDM12,https://doi.org/10.1007/s10703-012-0141-9 +Sérgio Vale Aguiar Campos,Selective Quantitative Analysis and Interval Model Checking: Verifying Different Facets of a System.,2000,17,Formal Methods in System Design,2,db/journals/fmsd/fmsd17.html#CamposCG00,https://doi.org/10.1023/A:1008713601998 +F. Keith Hanna,Reasoning About Analog-Level Implementations of Digital Systems.,2000,16,Formal Methods in System Design,2,db/journals/fmsd/fmsd16.html#Hanna00,https://doi.org/10.1023/A:1008791128550 +Gérard Berry,An Implementation of Constructive Synchronous Programs in POLIS.,2000,17,Formal Methods in System Design,2,db/journals/fmsd/fmsd17.html#BerryS00,https://doi.org/10.1023/A:1008796718837 +Roberto Passerone,Refinement preserving approximations for the design and verification of heterogeneous systems.,2007,31,Formal Methods in System Design,1,db/journals/fmsd/fmsd31.html#PasseroneBS07,https://doi.org/10.1007/s10703-006-0024-z +Bertrand Jeannet,Dynamic Partitioning in Linear Relation Analysis: Application to the Verification of Reactive Systems.,2003,23,Formal Methods in System Design,1,db/journals/fmsd/fmsd23.html#Jeannet03,https://doi.org/10.1023/A:1024480913162 +Stefan Kupferschmid,Incremental preprocessing methods for use in BMC.,2011,39,Formal Methods in System Design,2,db/journals/fmsd/fmsd39.html#KupferschmidLSB11,https://doi.org/10.1007/s10703-011-0122-4 +Randal E. Bryant,2009 CAV award announcement.,2010,36,Formal Methods in System Design,3,db/journals/fmsd/fmsd36.html#BryantGSV10,https://doi.org/10.1007/s10703-010-0094-9 +Sagar Chaki,Three optimizations for Assume-Guarantee reasoning with L*.,2008,32,Formal Methods in System Design,3,db/journals/fmsd/fmsd32.html#ChakiS08,https://doi.org/10.1007/s10703-007-0042-5 +Janusz A. Brzozowski,Delay-Insensitivity and Semi-Modularity.,2000,16,Formal Methods in System Design,2,db/journals/fmsd/fmsd16.html#BrzozowskiZ00,https://doi.org/10.1023/A:1008795229459 +Paolo Zuliani,Bayesian statistical model checking with application to Stateflow/Simulink verification.,2013,43,Formal Methods in System Design,2,db/journals/fmsd/fmsd43.html#ZulianiPC13,https://doi.org/10.1007/s10703-013-0195-3 +Cagkan Erbas,Static priority scheduling of event-triggered real-time embedded systems.,2007,30,Formal Methods in System Design,1,db/journals/fmsd/fmsd30.html#ErbasPC07a,https://doi.org/10.1007/s10703-006-0025-y +Lubos Brim,Faster algorithms for mean-payoff games.,2011,38,Formal Methods in System Design,2,db/journals/fmsd/fmsd38.html#BrimCDGR11,https://doi.org/10.1007/s10703-010-0105-x +étienne André,An extension of the inverse method to probabilistic timed automata.,2013,42,Formal Methods in System Design,2,db/journals/fmsd/fmsd42.html#AndreFS13,https://doi.org/10.1007/s10703-012-0169-x +Aina Niemetz,Propagation based local search for bit-precise reasoning.,2017,51,Formal Methods in System Design,3,db/journals/fmsd/fmsd51.html#NiemetzPB17,https://doi.org/10.1007/s10703-017-0295-6 +Kevin D. Jones,Analog property checkers: a DDR2 case study.,2010,36,Formal Methods in System Design,2,db/journals/fmsd/fmsd36.html#JonesKN10,https://doi.org/10.1007/s10703-009-0085-x +Fang Yu,Automata-based symbolic string analysis for vulnerability detection.,2014,44,Formal Methods in System Design,1,db/journals/fmsd/fmsd44.html#YuABI14,https://doi.org/10.1007/s10703-013-0189-1 +Ofer Strichman,Special issue: program equivalence.,2018,52,Formal Methods in System Design,3,db/journals/fmsd/fmsd52.html#Strichman18,https://doi.org/10.1007/s10703-018-0318-y +Xiaofang Chen,Efficient methods for formally verifying safety properties of hierarchical cache coherence protocols.,2010,36,Formal Methods in System Design,1,db/journals/fmsd/fmsd36.html#ChenYGC10,https://doi.org/10.1007/s10703-010-0092-y +Roderick Bloem,An Algorithm for Strongly Connected Component Analysis in n log n Symbolic Steps.,2006,28,Formal Methods in System Design,1,db/journals/fmsd/fmsd28.html#BloemGS06,https://doi.org/10.1007/s10703-006-4341-z +Werner Damm,Verification of a Radio-Based Signaling System Using the STATEMATE Verification Environment.,2001,19,Formal Methods in System Design,2,db/journals/fmsd/fmsd19.html#DammK01,https://doi.org/10.1023/A:1011279932612 +Patrice Godefroid,Symbolic Protocol Verification with Queue BDDs.,1999,14,Formal Methods in System Design,3,db/journals/fmsd/fmsd14.html#GodefroidL99,https://doi.org/10.1023/A:1008771008310 +Shay Berkovich,Runtime verification with minimal intrusion through parallelism.,2015,46,Formal Methods in System Design,3,db/journals/fmsd/fmsd46.html#BerkovichBF15,https://doi.org/10.1007/s10703-015-0226-3 +Marco Devillers,Verification of a Leader Election Protocol: Formal Methods Applied to IEEE 1394.,2000,16,Formal Methods in System Design,3,db/journals/fmsd/fmsd16.html#DevillersGRV00,https://doi.org/10.1023/A:1008764923992 +Mihalis Yannakakis,An Efficient Algorithm for Minimizing Real-Time Transition Systems.,1997,11,Formal Methods in System Design,2,db/journals/fmsd/fmsd11.html#YannakakisL97,https://doi.org/10.1023/A:1008621829508 +Matthew Wilding,Efficient Simulation of Formal Processor Models.,2001,18,Formal Methods in System Design,3,db/journals/fmsd/fmsd18.html#WildingGH01,https://doi.org/10.1023/A:1011217102270 +Byron Cook,Summarization for termination: no return!,2009,35,Formal Methods in System Design,3,db/journals/fmsd/fmsd35.html#CookPR09,https://doi.org/10.1007/s10703-009-0087-8 +Olivier Coudert,The Implicit Set Paradigm: A New Approach to Finite State System Verification.,1995,6,Formal Methods in System Design,2,db/journals/fmsd/fmsd6.html#CoudertM95,https://doi.org/10.1007/BF01383965 +Frederic Doucet,A methodology to take credit for high-level verification during RTL verification.,2017,51,Formal Methods in System Design,2,db/journals/fmsd/fmsd51.html#DoucetK17,https://doi.org/10.1007/s10703-017-0299-2 +Kostas N. Oikonomou,On a Class of Optimal Abstractions of Finite-State Machines.,1996,8,Formal Methods in System Design,3,db/journals/fmsd/fmsd8.html#Oikonomou96,https://doi.org/10.1007/BF00709137 +Justin Seyster,InterAspect: aspect-oriented instrumentation with GCC.,2012,41,Formal Methods in System Design,3,db/journals/fmsd/fmsd41.html#SeysterDHGHSSZ12,https://doi.org/10.1007/s10703-012-0171-3 +Tarek Mhamdi,Evaluation of anonymity and confidentiality protocols using theorem proving.,2015,47,Formal Methods in System Design,3,db/journals/fmsd/fmsd47.html#MhamdiHT15,https://doi.org/10.1007/s10703-015-0232-5 +Christoph Meinel,A Unifying Theoretical Background for Some Bdd-based Data Structures.,1997,11,Formal Methods in System Design,3,db/journals/fmsd/fmsd11.html#MeinelS97,https://doi.org/10.1023/A:1008667729897 +Dung Phan,Collision avoidance for mobile robots with limited sensing and limited information about moving obstacles.,2017,51,Formal Methods in System Design,1,db/journals/fmsd/fmsd51.html#PhanYGSS17,https://doi.org/10.1007/s10703-016-0265-4 +Akash Lal,Reducing concurrent analysis under a context bound to sequential analysis.,2009,35,Formal Methods in System Design,1,db/journals/fmsd/fmsd35.html#LalR09,https://doi.org/10.1007/s10703-009-0078-9 +Denis Sabatier,The Use of the B Formal Method for the Design and the Validation of the Transaction Mechanism for Smart Card Applications.,2000,17,Formal Methods in System Design,3,db/journals/fmsd/fmsd17.html#SabatierL00,https://doi.org/10.1023/A:1026538301096 +Ramayya Kumar,Structuring and Automating Hardware Proofs in a Higher-Order Theorem-Proving Environment.,1993,2,Formal Methods in System Design,2,db/journals/fmsd/fmsd2.html#KumarSK93,https://doi.org/10.1007/BF01383880 +Deian Tabakov,Optimized temporal monitors for SystemC.,2012,41,Formal Methods in System Design,3,db/journals/fmsd/fmsd41.html#TabakovRV12,https://doi.org/10.1007/s10703-011-0139-8 +Cornelia P. Inggs,CTL* model checking on a shared-memory architecture.,2006,29,Formal Methods in System Design,2,db/journals/fmsd/fmsd29.html#InggsB06,https://doi.org/10.1007/s10703-006-0008-z +Cheryl Harkness,Verifying the Summit Bus Converter Protocols with Symbolic Model Checking.,1994,4,Formal Methods in System Design,2,db/journals/fmsd/fmsd4.html#HarknessW94,https://doi.org/10.1007/BF01384079 +Alain J. Martin,Asynchronous Datapaths and the Design of an Asynchronous Adder.,1992,1,Formal Methods in System Design,1,db/journals/fmsd/fmsd1.html#Martin92,https://doi.org/10.1007/BF00464358 +Karsten Schmidt 0004,Model-Checking with Coverability Graphs.,1999,15,Formal Methods in System Design,3,db/journals/fmsd/fmsd15.html#Schmidt99,https://doi.org/10.1023/A:1008753219837 +Siegfried Fischer,Verification in Process Algebra of the Distributed Control of Track Vehicles - A Case Study.,1994,4,Formal Methods in System Design,2,db/journals/fmsd/fmsd4.html#FischerS94,https://doi.org/10.1007/BF01384080 +Gruia-Catalin Roman,A Notation and Logic for Mobile Computing.,2002,20,Formal Methods in System Design,1,db/journals/fmsd/fmsd20.html#RomanM02,https://doi.org/10.1023/A:1012908529306 +Edmund M. Clarke,Bounded Model Checking Using Satisfiability Solving.,2001,19,Formal Methods in System Design,1,db/journals/fmsd/fmsd19.html#ClarkeBRZ01,https://doi.org/10.1023/A:1011276507260 +Krishnendu Chatterjee,Symbolic algorithms for qualitative analysis of Markov decision processes with Büchi objectives.,2013,42,Formal Methods in System Design,3,db/journals/fmsd/fmsd42.html#ChatterjeeHJS13,https://doi.org/10.1007/s10703-012-0180-2 +Amnon H. Eden,Modeling and visualizing object-oriented programs with Codecharts.,2013,43,Formal Methods in System Design,1,db/journals/fmsd/fmsd43.html#EdenGNK13,https://doi.org/10.1007/s10703-012-0181-1 +Harald Rueß,Modular Verification of SRT Division.,1999,14,Formal Methods in System Design,1,db/journals/fmsd/fmsd14.html#RuessSS99,https://doi.org/10.1023/A:1008617612073 +Parosh Aziz Abdulla,SAT-Solving the Coverability Problem for Petri Nets.,2004,24,Formal Methods in System Design,1,db/journals/fmsd/fmsd24.html#AbdullaIN04,https://doi.org/10.1023/B:FORM.0000004786.30007.f8 +Tamir Heyman,A Scalable Parallel Algorithm for Reachability Analysis of Very Large Circuits.,2002,21,Formal Methods in System Design,3,db/journals/fmsd/fmsd21.html#HeymanGGS02,https://doi.org/10.1023/A:1020373206491 +Ashish Tiwari,A search-based procedure for nonlinear real arithmetic.,2016,48,Formal Methods in System Design,3,db/journals/fmsd/fmsd48.html#TiwariL16,https://doi.org/10.1007/s10703-016-0245-8 +Francisco Corella,Multiway Decision Graphs for Automated Hardware Verification.,1997,10,Formal Methods in System Design,1,db/journals/fmsd/fmsd10.html#CorellaZSLC97,https://doi.org/10.1023/A:1008663530211 +Patrice Godefroid,Using Partial Orders for the Efficient Verification of Deadlock Freedom and Safety Properties.,1993,2,Formal Methods in System Design,2,db/journals/fmsd/fmsd2.html#GodefroidW93,https://doi.org/10.1007/BF01383879 +Peter Habermehl,Forest automata for verification of heap manipulation.,2012,41,Formal Methods in System Design,1,db/journals/fmsd/fmsd41.html#HabermehlHRSV12,https://doi.org/10.1007/s10703-012-0150-8 +Ananda Basu,Priority scheduling of distributed systems based on model checking.,2011,39,Formal Methods in System Design,3,db/journals/fmsd/fmsd39.html#BasuBPS11,https://doi.org/10.1007/s10703-011-0128-y +Béatrice Bérard,Interrupt Timed Automata: verification and expressiveness.,2012,40,Formal Methods in System Design,1,db/journals/fmsd/fmsd40.html#BerardHS12,https://doi.org/10.1007/s10703-011-0140-2 +Jean-Paul Bodeveix,Reduction and Quantifier Elimination Techniques for Program Validation.,2002,20,Formal Methods in System Design,1,db/journals/fmsd/fmsd20.html#BodeveixF02,https://doi.org/10.1023/A:1012960513376 +Bernd Becker 0001,On the Expressive Power of OKFDDs.,1997,11,Formal Methods in System Design,1,db/journals/fmsd/fmsd11.html#BeckerDT97,https://doi.org/10.1023/A:1008635324476 +Hana Chockler,Coverage metrics for temporal logic model checking*.,2006,28,Formal Methods in System Design,3,db/journals/fmsd/fmsd28.html#ChocklerKV06,https://doi.org/10.1007/s10703-006-0001-6 +Wan Fokkink,Cones and foci: A mechanical framework for protocol verification.,2006,29,Formal Methods in System Design,1,db/journals/fmsd/fmsd29.html#FokkinkPP06,https://doi.org/10.1007/s10703-006-0004-3 +Teodor Rus,Generating Model Checkers from Algebraic Specifications.,2002,20,Formal Methods in System Design,3,db/journals/fmsd/fmsd20.html#RusWH02,https://doi.org/10.1023/A:1014742013173 +Robert P. Kurshan,Combining Software and Hardware Verification Techniques.,2002,21,Formal Methods in System Design,3,db/journals/fmsd/fmsd21.html#KurshanLMPY02,https://doi.org/10.1023/A:1020383505582 +Susanne Graf,Achieving distributed control through model checking.,2012,40,Formal Methods in System Design,2,db/journals/fmsd/fmsd40.html#GrafPQ12,https://doi.org/10.1007/s10703-011-0138-9 +Scott Uk-Jin Lee,Theorem prover approach to semistructured data design.,2010,37,Formal Methods in System Design,1,db/journals/fmsd/fmsd37.html#LeeDSG10,https://doi.org/10.1007/s10703-010-0099-4 +Simone Fulvio Rollini,Resolution proof transformation for compression and interpolation.,2014,45,Formal Methods in System Design,1,db/journals/fmsd/fmsd45.html#RolliniBST14,https://doi.org/10.1007/s10703-014-0208-x +J. J. T. Kleijn,Analysis of an Industrial System.,2003,22,Formal Methods in System Design,3,db/journals/fmsd/fmsd22.html#KleijnRR03,https://doi.org/10.1023/A:1022901312673 +Jean-Pierre Talpin,An algebraic theory for behavioral modeling and protocol synthesis in system design.,2006,28,Formal Methods in System Design,2,db/journals/fmsd/fmsd28.html#TalpinG06,https://doi.org/10.1007/s10703-006-7845-7 +Manfred Broy,A Functional Rephrasing of the Assumption/Commitment Specification Style.,1998,13,Formal Methods in System Design,1,db/journals/fmsd/fmsd13.html#Broy98,https://doi.org/10.1023/A:1008618722275 +Ganesh Gopalakrishnan,Introduction: Formal Methods for CAD: Enabling Technologies and System-level Applications.,2000,16,Formal Methods in System Design,1,db/journals/fmsd/fmsd16.html#Gopalakrishnan00,https://doi.org/10.1023/A:1008721324037 +Luca P. Carloni,A Framework for Modeling the Distributed Deployment of Synchronous Designs.,2006,28,Formal Methods in System Design,2,db/journals/fmsd/fmsd28.html#CarloniS06,https://doi.org/10.1007/s10703-006-7842-x +Max Goldman,MAVEN: modular aspect verification and interference analysis.,2010,37,Formal Methods in System Design,1,db/journals/fmsd/fmsd37.html#GoldmanKK10,https://doi.org/10.1007/s10703-010-0101-1 +Srinivas Pinisetty,Runtime enforcement of timed properties revisited.,2014,45,Formal Methods in System Design,3,db/journals/fmsd/fmsd45.html#PinisettyFJMRN14,https://doi.org/10.1007/s10703-014-0215-y +Byron Cook,Temporal property verification as a program analysis task - Extended Version.,2012,41,Formal Methods in System Design,1,db/journals/fmsd/fmsd41.html#CookKV12,https://doi.org/10.1007/s10703-012-0153-5 +Christian Jacobi 0002,Formal Verification of the VAMP Floating Point Unit.,2005,26,Formal Methods in System Design,3,db/journals/fmsd/fmsd26.html#0002B05,https://doi.org/10.1007/s10703-005-1613-y +Tianyi Liang,An efficient SMT solver for string constraints.,2016,48,Formal Methods in System Design,3,db/journals/fmsd/fmsd48.html#LiangRTTBD16,https://doi.org/10.1007/s10703-016-0247-6 +Lubos Brim,Foreword.,2006,29,Formal Methods in System Design,2,db/journals/fmsd/fmsd29.html#BrimL06,https://doi.org/10.1007/s10703-006-0010-5 +Albert Benveniste,Foreword.,2001,19,Formal Methods in System Design,1,db/journals/fmsd/fmsd19.html#BenvenisteP01,https://doi.org/10.1023/A:1011222711518 +Felice Balarin,An Iterative Approach to Verification of Real-Time Systems.,1995,6,Formal Methods in System Design,1,db/journals/fmsd/fmsd6.html#BalarinS95,https://doi.org/10.1007/BF01384315 +Laura Bozzelli,Pushdown module checking.,2010,36,Formal Methods in System Design,1,db/journals/fmsd/fmsd36.html#BozzelliMP10,https://doi.org/10.1007/s10703-010-0093-x +Corina S. Pasareanu,Learning to divide and conquer: applying the L* algorithm to automate assume-guarantee reasoning.,2008,32,Formal Methods in System Design,3,db/journals/fmsd/fmsd32.html#PasareanuGBCB08,https://doi.org/10.1007/s10703-008-0049-6 +Ilan Beer,Efficient Detection of Vacuity in Temporal Model Checking.,2001,18,Formal Methods in System Design,2,db/journals/fmsd/fmsd18.html#BeerBER01,https://doi.org/10.1023/A:1008779610539 +Klaus Havelund,An Overview of the Runtime Verification Tool Java PathExplorer.,2004,24,Formal Methods in System Design,2,db/journals/fmsd/fmsd24.html#HavelundR04a,https://doi.org/10.1023/B:FORM.0000017721.39909.4b +Loris D'Antoni,Extended symbolic finite automata and transducers.,2015,47,Formal Methods in System Design,1,db/journals/fmsd/fmsd47.html#DAntoniV15,https://doi.org/10.1007/s10703-015-0233-4 +Alessandro Fantechi,Model Checking for Action-Based Logics.,1994,4,Formal Methods in System Design,2,db/journals/fmsd/fmsd4.html#FantechiGR94,https://doi.org/10.1007/BF01384084 +Tobias Schüle,Bounded model checking of infinite state systems.,2007,30,Formal Methods in System Design,1,db/journals/fmsd/fmsd30.html#SchuleS07,https://doi.org/10.1007/s10703-006-0019-9 +Andrew Reynolds,Solving quantified linear arithmetic by counterexample-guided instantiation.,2017,51,Formal Methods in System Design,3,db/journals/fmsd/fmsd51.html#ReynoldsKK17,https://doi.org/10.1007/s10703-017-0290-y +Klaus Havelund,Foreword.,2005,27,Formal Methods in System Design,3,db/journals/fmsd/fmsd27.html#HavelundR05,https://doi.org/10.1007/s10703-005-3397-5 +Daniel Kroening,Loop summarization using state and transition invariants.,2013,42,Formal Methods in System Design,3,db/journals/fmsd/fmsd42.html#KroeningSTTW13,https://doi.org/10.1007/s10703-012-0176-y +André Platzer,Computing differential invariants of hybrid systems as fixedpoints.,2009,35,Formal Methods in System Design,1,db/journals/fmsd/fmsd35.html#PlatzerC09,https://doi.org/10.1007/s10703-009-0079-8 +Patrick Cousot,Why does Astrée scale up?,2009,35,Formal Methods in System Design,3,db/journals/fmsd/fmsd35.html#CousotCFMMR09,https://doi.org/10.1007/s10703-009-0089-6 +Chao Yan 0001,Verifying global start-up for a Möbius ring-oscillator.,2014,45,Formal Methods in System Design,2,db/journals/fmsd/fmsd45.html#YanGY14,https://doi.org/10.1007/s10703-013-0204-6 +Edmund M. Clarke,On simulation-based probabilistic model checking of mixed-analog circuits.,2010,36,Formal Methods in System Design,2,db/journals/fmsd/fmsd36.html#ClarkeDL10,https://doi.org/10.1007/s10703-009-0076-y +Detlef Sieling,A Comparison of Free BDDs and Transformed BDDs.,2001,19,Formal Methods in System Design,3,db/journals/fmsd/fmsd19.html#SielingW01,https://doi.org/10.1023/A:1011229414976 +Dejan Jovanovic,Being careful about theory combination.,2013,42,Formal Methods in System Design,1,db/journals/fmsd/fmsd42.html#JovanovicB13,https://doi.org/10.1007/s10703-012-0159-z +Marcelo Glusman,A Mechanized Proof Environment for the Convenient Computations Proof Method.,2003,23,Formal Methods in System Design,2,db/journals/fmsd/fmsd23.html#GlusmanK03,https://doi.org/10.1023/A:1024746015231 +Cagkan Erbas,Static priority scheduling of event-triggered real-time embedded systems.,2007,30,Formal Methods in System Design,1,db/journals/fmsd/fmsd30.html#ErbasPC07,https://doi.org/10.1007/s10703-006-0021-2 +Hermenegilda Macià,A congruence relation for sPBC.,2008,32,Formal Methods in System Design,2,db/journals/fmsd/fmsd32.html#MaciaRCF08,https://doi.org/10.1007/s10703-007-0045-2 +Peter A. Beerel,Checking Combinational Equivalence of Speed-Independent Circuits.,1998,13,Formal Methods in System Design,1,db/journals/fmsd/fmsd13.html#BeerelBM98,https://doi.org/10.1023/A:1008666605437 +Anvesh Komuravelli,SMT-based model checking for recursive programs.,2016,48,Formal Methods in System Design,3,db/journals/fmsd/fmsd48.html#KomuravelliGC16,https://doi.org/10.1007/s10703-016-0249-4 +Costas Courcoubetis,Introduction to the Special Issue on Computer-Aided Verification (CAV93).,1997,11,Formal Methods in System Design,2,db/journals/fmsd/fmsd11.html#Courcoubetis97,https://doi.org/10.1023/A:1008603628600 +Shmuel Katz,Saving Space by Fully Exploiting Invisible Transitions.,1999,14,Formal Methods in System Design,3,db/journals/fmsd/fmsd14.html#KatzM99,https://doi.org/10.1023/A:1008775109219 +Judi Romijn,A Timed Verification of the IEEE 1394 Leader Election Protocol.,2001,19,Formal Methods in System Design,2,db/journals/fmsd/fmsd19.html#Romijn01,https://doi.org/10.1023/A:1011284000753 +Mark Kattenbelt,A game-based abstraction-refinement framework for Markov decision processes.,2010,36,Formal Methods in System Design,3,db/journals/fmsd/fmsd36.html#KattenbeltKNP10,https://doi.org/10.1007/s10703-010-0097-6 +Sandeep K. Shukla,Special issue on formal methods for globally asynchronous and locally synchronous (GALS) systems.,2006,28,Formal Methods in System Design,2,db/journals/fmsd/fmsd28.html#ShuklaT06,https://doi.org/10.1007/s10703-006-7840-z +Erion Plaku,Hybrid systems: from verification to falsification by combining motion planning and discrete search.,2009,34,Formal Methods in System Design,2,db/journals/fmsd/fmsd34.html#PlakuKV09,https://doi.org/10.1007/s10703-008-0058-5 +Nicolas Halbwachs,Verification of Real-Time Systems using Linear Relation Analysis.,1997,11,Formal Methods in System Design,2,db/journals/fmsd/fmsd11.html#HalbwachsPR97,https://doi.org/10.1023/A:1008678014487 +Dingbao Xie,SAT-LP-IIS joint-directed path-oriented bounded reachability analysis of linear hybrid automata.,2014,45,Formal Methods in System Design,1,db/journals/fmsd/fmsd45.html#XieBZL14,https://doi.org/10.1007/s10703-014-0210-3 +Stefan Jaksic,Quantitative monitoring of STL with edit distance.,2018,53,Formal Methods in System Design,1,db/journals/fmsd/fmsd53.html#JaksicBGNN18,https://doi.org/10.1007/s10703-018-0319-x +W. M. H. M. Rovers,Description of a Design Management System for the P-ASIC Design Flow Using EXPDL.,1994,4,Formal Methods in System Design,2,db/journals/fmsd/fmsd4.html#Rovers94,https://doi.org/10.1007/BF01384082 +Benoît Delahaye,Probabilistic contracts: a compositional reasoning methodology for the design of systems with stochastic and/or non-deterministic aspects.,2011,38,Formal Methods in System Design,1,db/journals/fmsd/fmsd38.html#DelahayeCL11,https://doi.org/10.1007/s10703-010-0107-8 +Javier Esparza,Verification of Safety Properties Using Integer Programming: Beyond the State Equation.,2000,16,Formal Methods in System Design,2,db/journals/fmsd/fmsd16.html#EsparzaM00,https://doi.org/10.1023/A:1008743212620 +Paul Loewenstein,Verification of a Multiprocessor Cache Protocol Using Simulation Relations and Higher-Order Logic.,1992,1,Formal Methods in System Design,4,db/journals/fmsd/fmsd1.html#Loewenstein92,https://doi.org/10.1007/BF00709156 +Hana Chockler,Beyond vacuity: towards the strongest passing formula.,2013,43,Formal Methods in System Design,3,db/journals/fmsd/fmsd43.html#ChocklerGS13,https://doi.org/10.1007/s10703-013-0192-6 +Carlos Moreno 0002,Non-intrusive runtime monitoring through power consumption to enforce safety and security properties in embedded systems.,2018,53,Formal Methods in System Design,1,db/journals/fmsd/fmsd53.html#MorenoF18,https://doi.org/10.1007/s10703-017-0298-3 +Ganesh Gopalakrishnan,Preface.,2012,41,Formal Methods in System Design,1,db/journals/fmsd/fmsd41.html#GopalakrishnanQ12,https://doi.org/10.1007/s10703-012-0148-2 +Alain Girault,Automating the addition of fault tolerance with discrete controller synthesis.,2009,35,Formal Methods in System Design,2,db/journals/fmsd/fmsd35.html#GiraultR09,https://doi.org/10.1007/s10703-009-0084-y +Simin Nadjm-Tehrani,Formal Verification of Dynamic Properties in an Aerospace Application.,1999,14,Formal Methods in System Design,2,db/journals/fmsd/fmsd14.html#Nadjm-TehraniS99,https://doi.org/10.1023/A:1008651801000 +Stephen F. Siegel,Transparent partial order reduction.,2012,40,Formal Methods in System Design,1,db/journals/fmsd/fmsd40.html#Siegel12,https://doi.org/10.1007/s10703-011-0126-0 +Pierre Ganty,Bounded underapproximations.,2012,40,Formal Methods in System Design,2,db/journals/fmsd/fmsd40.html#GantyMM12,https://doi.org/10.1007/s10703-011-0136-y +Christian Colombo,Safer asynchronous runtime monitoring using compensations.,2012,41,Formal Methods in System Design,3,db/journals/fmsd/fmsd41.html#ColomboPA12,https://doi.org/10.1007/s10703-012-0142-8 +Robert P. Kurshan,Modelling Asynchrony with a Synchronous Model.,1999,15,Formal Methods in System Design,3,db/journals/fmsd/fmsd15.html#KurshanMOS99,https://doi.org/10.1023/A:1008792918020 +Moshe Y. Vardi,2011 CAV award announcement.,2012,41,Formal Methods in System Design,1,db/journals/fmsd/fmsd41.html#VardiHAK12,https://doi.org/10.1007/s10703-012-0154-4 +Orna Kupferman,Model Checking of Safety Properties.,2001,19,Formal Methods in System Design,3,db/journals/fmsd/fmsd19.html#KupfermanV01,https://doi.org/10.1023/A:1011254632723 +Bernd Finkbeiner,Checking Finite Traces Using Alternating Automata.,2004,24,Formal Methods in System Design,2,db/journals/fmsd/fmsd24.html#FinkbeinerS04,https://doi.org/10.1023/B:FORM.0000017718.28096.48 +Ahmed Bouajjani,Verification of parametric concurrent systems with prioritised FIFO resource management.,2008,32,Formal Methods in System Design,2,db/journals/fmsd/fmsd32.html#BouajjaniHV08,https://doi.org/10.1007/s10703-008-0048-7 +Armin Biere,Preface.,2011,39,Formal Methods in System Design,2,db/journals/fmsd/fmsd39.html#BiereY11,https://doi.org/10.1007/s10703-011-0129-x +Sofiène Tahar,A Practical Methodology for the Formal Verification of RISC Processors.,1998,13,Formal Methods in System Design,2,db/journals/fmsd/fmsd13.html#TaharK98,https://doi.org/10.1023/A:1008622002590 +Peter Csaba ölveczky,Specification and analysis of the AER/NCA active network protocol suite in Real-Time Maude.,2006,29,Formal Methods in System Design,3,db/journals/fmsd/fmsd29.html#OlveczkyMT06,https://doi.org/10.1007/s10703-006-0015-0 +Krishnaprasad Thirunarayan,Structural Operational Semantics for a Portable Subset of Behavioral VHDL-93.,2001,18,Formal Methods in System Design,1,db/journals/fmsd/fmsd18.html#ThirunarayanE01,https://doi.org/10.1023/A:1008786720393 +Daniel Kroening,Under-approximating loops in C programs for fast counterexample detection.,2015,47,Formal Methods in System Design,1,db/journals/fmsd/fmsd47.html#KroeningLW15,https://doi.org/10.1007/s10703-015-0228-1 +Ezio Bartocci,Introduction to the special issue on runtime verification.,2017,51,Formal Methods in System Design,1,db/journals/fmsd/fmsd51.html#BartocciM17,https://doi.org/10.1007/s10703-017-0287-6 +Massimo Benerecetti,Solving parity games via priority promotion.,2018,52,Formal Methods in System Design,2,db/journals/fmsd/fmsd52.html#BenerecettiDM18,https://doi.org/10.1007/s10703-018-0315-1 +Alessandro Cimatti,Quantifier-free encoding of invariants for hybrid systems.,2014,45,Formal Methods in System Design,2,db/journals/fmsd/fmsd45.html#CimattiMT14,https://doi.org/10.1007/s10703-013-0202-8 +Edmund M. Clarke,Verifying the SRT Division Algorithm Using Theorem Proving Techniques.,1999,14,Formal Methods in System Design,1,db/journals/fmsd/fmsd14.html#ClarkeGZ99,https://doi.org/10.1023/A:1008665528003 +Mandayam K. Srivas,Applying Formal Verification to the AAMP5 Microprocessor: A Case Study in the Industrial Use of Formal Methods.,1996,8,Formal Methods in System Design,2,db/journals/fmsd/fmsd8.html#SrivasM96,https://doi.org/10.1007/BF00122419 +Jiri Barnat,Distributed breadth-first search LTL model checking.,2006,29,Formal Methods in System Design,2,db/journals/fmsd/fmsd29.html#BarnatC06,https://doi.org/10.1007/s10703-006-0009-y +Javier Esparza,From LTL to deterministic automata - A safraless compositional approach.,2016,49,Formal Methods in System Design,3,db/journals/fmsd/fmsd49.html#EsparzaKS16,https://doi.org/10.1007/s10703-016-0259-2 +Moez Krichen,Conformance testing for real-time systems.,2009,34,Formal Methods in System Design,3,db/journals/fmsd/fmsd34.html#KrichenT09,https://doi.org/10.1007/s10703-009-0065-1 +Thomas F. La Porta,Verification of the MultiStream Potocol (MSP) Using COSPAN.,1994,4,Formal Methods in System Design,2,db/journals/fmsd/fmsd4.html#PortaS94,https://doi.org/10.1007/BF01384081 +Supratik Chakraborty,Reasoning about synchronization in GALS systems.,2006,28,Formal Methods in System Design,2,db/journals/fmsd/fmsd28.html#ChakrabortyMS06,https://doi.org/10.1007/s10703-006-7841-y +Magdy S. Abadir,Formal Verification Successes at Motorola.,2003,22,Formal Methods in System Design,2,db/journals/fmsd/fmsd22.html#AbadirAHKM03,https://doi.org/10.1023/A:1022917321255 +Christoph Scholl,On WLCDs and the Complexity of Word-Level Decision Diagrams-A Lower Bound for Division.,2002,20,Formal Methods in System Design,3,db/journals/fmsd/fmsd20.html#SchollBW02,https://doi.org/10.1023/A:1014702331828 +Parosh Aziz Abdulla,Budget-bounded model-checking pushdown systems.,2014,45,Formal Methods in System Design,2,db/journals/fmsd/fmsd45.html#AbdullaARS14,https://doi.org/10.1007/s10703-014-0207-y +Lei Feng,Designing communicating transaction processes by supervisory control theory.,2007,30,Formal Methods in System Design,2,db/journals/fmsd/fmsd30.html#FengWT07,https://doi.org/10.1007/s10703-006-0023-0 +Karthikeyan Bhargavan,Network Event Recognition.,2005,27,Formal Methods in System Design,3,db/journals/fmsd/fmsd27.html#BhargavanG05,https://doi.org/10.1007/s10703-005-3398-4 +Eric Goubault,A zonotopic framework for functional abstractions.,2015,47,Formal Methods in System Design,3,db/journals/fmsd/fmsd47.html#GoubaultP15,https://doi.org/10.1007/s10703-015-0238-z +Doron A. Peled,Combining Partial Order Reductions with On-the-Fly Model-Checking.,1996,8,Formal Methods in System Design,1,db/journals/fmsd/fmsd8.html#Peled96,https://doi.org/10.1007/BF00121262 +Andrzej S. Murawski,Algorithmic games for full ground references.,2018,52,Formal Methods in System Design,3,db/journals/fmsd/fmsd52.html#MurawskiT18,https://doi.org/10.1007/s10703-017-0292-9 +Silvia Crafa,Bisimulation and simulation algorithms on probabilistic transition systems by abstract interpretation.,2012,40,Formal Methods in System Design,3,db/journals/fmsd/fmsd40.html#CrafaR12,https://doi.org/10.1007/s10703-012-0147-3 +Thomas Martin Gawlitza,Numerical invariants through convex relaxation and max-strategy iteration.,2014,44,Formal Methods in System Design,2,db/journals/fmsd/fmsd44.html#GawlitzaS14,https://doi.org/10.1007/s10703-013-0190-8 +Edmund M. Clarke,Verification of the Futurebus+ Cache Coherence Protocol.,1995,6,Formal Methods in System Design,2,db/journals/fmsd/fmsd6.html#ClarkeGHJLMN95,https://doi.org/10.1007/BF01383968 +Andrew M. Bailey,An Exercise in the Automatic Verification of Asynchronous Designs.,1994,4,Formal Methods in System Design,3,db/journals/fmsd/fmsd4.html#BaileyMM94,https://doi.org/10.1007/BF01384047 +Bernd Finkbeiner,Collecting Statistics Over Runtime Executions.,2005,27,Formal Methods in System Design,3,db/journals/fmsd/fmsd27.html#FinkbeinerSS05,https://doi.org/10.1007/s10703-005-3399-3 +Dima Elenbogen,Proving mutual termination.,2015,47,Formal Methods in System Design,2,db/journals/fmsd/fmsd47.html#ElenbogenKS15,https://doi.org/10.1007/s10703-015-0234-3 +Radhakrishna Nagalla,Signal Transition Graph Constraints for Synthesis of Hazard-Free Asynchronous Circuits with Unbounded-Gate Delays.,1994,5,Formal Methods in System Design,3,db/journals/fmsd/fmsd5.html#NagallaH94,https://doi.org/10.1007/BF01383833 +Domagoj Babic,Recognizing malicious software behaviors with tree automata inference.,2012,41,Formal Methods in System Design,1,db/journals/fmsd/fmsd41.html#BabicRS12,https://doi.org/10.1007/s10703-012-0149-1 +Giorgio Delzanno,Constraint-Based Verification of Parameterized Cache Coherence Protocols.,2003,23,Formal Methods in System Design,3,db/journals/fmsd/fmsd23.html#Delzanno03,https://doi.org/10.1023/A:1026276129010 +Lenore D. Zuck,Translation and Run-Time Validation of Loop Transformations.,2005,27,Formal Methods in System Design,3,db/journals/fmsd/fmsd27.html#ZuckPGBFH05,https://doi.org/10.1007/s10703-005-3402-z +Matthieu Martel,Enhancing the implementation of mathematical formulas for fixed-point and floating-point arithmetics.,2009,35,Formal Methods in System Design,3,db/journals/fmsd/fmsd35.html#Martel09,https://doi.org/10.1007/s10703-009-0068-y +Srinivas Pinisetty,Predictive runtime enforcement.,2017,51,Formal Methods in System Design,1,db/journals/fmsd/fmsd51.html#PinisettyPTJFM17,https://doi.org/10.1007/s10703-017-0271-1 +Per Bjesse,Word level bitwidth reduction for unbounded hardware model checking.,2009,35,Formal Methods in System Design,1,db/journals/fmsd/fmsd35.html#Bjesse09,https://doi.org/10.1007/s10703-009-0080-2 +Christophe Ponsard,Early verification and validation of mission critical systems.,2007,30,Formal Methods in System Design,3,db/journals/fmsd/fmsd30.html#PonsardMMRLV07,https://doi.org/10.1007/s10703-006-0028-8 +Paul C. Attie,On the refinement of liveness properties of distributed systems.,2011,39,Formal Methods in System Design,1,db/journals/fmsd/fmsd39.html#Attie11,https://doi.org/10.1007/s10703-011-0117-1 +Gethin Norman,Model checking for probabilistic timed automata.,2013,43,Formal Methods in System Design,2,db/journals/fmsd/fmsd43.html#NormanPS13,https://doi.org/10.1007/s10703-012-0177-x +Michael Mendler,Constructive Boolean circuits and the exactness of timed ternary simulation.,2012,40,Formal Methods in System Design,3,db/journals/fmsd/fmsd40.html#MendlerSB12,https://doi.org/10.1007/s10703-012-0144-6 +Albert Benveniste,QoS-aware management of monotonic service orchestrations.,2014,44,Formal Methods in System Design,1,db/journals/fmsd/fmsd44.html#BenvenisteJKRT14,https://doi.org/10.1007/s10703-013-0191-7 +Claude Helmstetter,Full simulation coverage for SystemC transaction-level models of systems-on-a-chip.,2009,35,Formal Methods in System Design,2,db/journals/fmsd/fmsd35.html#HelmstetterMM09,https://doi.org/10.1007/s10703-009-0075-z +Tetsuya Yamada,On the Computational Power of Binary Decision Diagram with Redundant Variables.,1996,8,Formal Methods in System Design,1,db/journals/fmsd/fmsd8.html#YamadaY96,https://doi.org/10.1007/BF00121263 +Nicolas Halbwachs,Some ways to reduce the space dimension in polyhedra computations.,2006,29,Formal Methods in System Design,1,db/journals/fmsd/fmsd29.html#HalbwachsMG06,https://doi.org/10.1007/s10703-006-0013-2 +Lars Michael Kristensen,Question-guided stubborn set methods for state properties.,2006,29,Formal Methods in System Design,3,db/journals/fmsd/fmsd29.html#KristensenSV06,https://doi.org/10.1007/s10703-006-0006-1 +Scott D. Stoller,Foreword.,2005,26,Formal Methods in System Design,2,db/journals/fmsd/fmsd26.html#StollerV05,https://doi.org/10.1007/s10703-005-1488-y +Yunja Choi,From NuSMV to SPIN: Experiences with model checking flight guidance systems.,2007,30,Formal Methods in System Design,3,db/journals/fmsd/fmsd30.html#Choi07,https://doi.org/10.1007/s10703-006-0027-9 +Rajeev Alur,Polyhedral Flows in Hybrid Automata.,2004,24,Formal Methods in System Design,3,db/journals/fmsd/fmsd24.html#AlurKT04,https://doi.org/10.1023/B:FORM.0000026092.11691.96 +Lalita Jategaonkar Jagadeesan,A Formal Approach to Reactive Systems Software: A Telecommunications Application in ESTEREL.,1996,8,Formal Methods in System Design,2,db/journals/fmsd/fmsd8.html#JagadeesanPO96,https://doi.org/10.1007/BF00122418 +Céline Chevalier,Composition of password-based protocols.,2013,43,Formal Methods in System Design,3,db/journals/fmsd/fmsd43.html#ChevalierDKR13,https://doi.org/10.1007/s10703-013-0184-6 +William Adams,Verisym: Verifying Circuits by Symbolic Simulation.,2003,22,Formal Methods in System Design,2,db/journals/fmsd/fmsd22.html#AdamsHJ03,https://doi.org/10.1023/A:1022977607142 +Pranav Ashar,Gate-Delay-Fault Testability Properties of Multiplexor-Based Networks.,1993,2,Formal Methods in System Design,1,db/journals/fmsd/fmsd2.html#AsharDK93,https://doi.org/10.1007/BF01383945 +Murat Karaorman,jContractor: Introducing Design-by-Contract to Java Using Reflective Bytecode Instrumentation.,2005,27,Formal Methods in System Design,3,db/journals/fmsd/fmsd27.html#KaraormanA05,https://doi.org/10.1007/s10703-005-3400-1 +Chao Wang 0001,Compositional SCC Analysis for Language Emptiness.,2006,28,Formal Methods in System Design,1,db/journals/fmsd/fmsd28.html#WangBHRS06,https://doi.org/10.1007/s10703-006-4617-3 +Yongjian Li,Exploring structural symmetry automatically in symbolic trajectory evaluation.,2011,39,Formal Methods in System Design,2,db/journals/fmsd/fmsd39.html#LiHSZ11,https://doi.org/10.1007/s10703-011-0119-z +Kun Wei,Modelling temporal behaviour in complex systems with Timebands.,2013,43,Formal Methods in System Design,3,db/journals/fmsd/fmsd43.html#WeiWB13,https://doi.org/10.1007/s10703-013-0193-5 +Aarti Gupta,Preface.,2009,35,Formal Methods in System Design,1,db/journals/fmsd/fmsd35.html#GuptaM09,https://doi.org/10.1007/s10703-009-0072-2 +Radu Grosu,Modular and Visual Specification of Hybrid Systems: An Introduction to HyCharts.,2002,21,Formal Methods in System Design,1,db/journals/fmsd/fmsd21.html#GrosuS02,https://doi.org/10.1023/A:1016001318739 +Paul Gastin,Distributed synthesis for well-connected architectures.,2009,34,Formal Methods in System Design,3,db/journals/fmsd/fmsd34.html#GastinSZ09,https://doi.org/10.1007/s10703-008-0064-7 +Kathi Fisler,Bisimulation Minimization and Symbolic Model Checking.,2002,21,Formal Methods in System Design,1,db/journals/fmsd/fmsd21.html#FislerV02,https://doi.org/10.1023/A:1016091902809 +Kenneth L. McMillan,A Technique of State Space Search Based on Unfolding.,1995,6,Formal Methods in System Design,1,db/journals/fmsd/fmsd6.html#McMillan95,https://doi.org/10.1007/BF01384314 +Ganesh Gopalakrishnan,Industrial Practice of Formal Hardware Verification: A Sampling.,2003,22,Formal Methods in System Design,2,db/journals/fmsd/fmsd22.html#GopalakrishnanH03,https://doi.org/10.1023/A:1022912616963 +Dimitra Giannakopoulou,Special issue on learning techniques for compositional reasoning.,2008,32,Formal Methods in System Design,3,db/journals/fmsd/fmsd32.html#GiannakopoulouP08,https://doi.org/10.1007/s10703-008-0054-9 +Orna Grumberg,2010 CAV award announcement.,2012,40,Formal Methods in System Design,2,db/journals/fmsd/fmsd40.html#GrumbergVSA12,https://doi.org/10.1007/s10703-011-0125-1 +Rajeev Alur,Computing Accumulated Delays in Real-time Systems.,1997,11,Formal Methods in System Design,2,db/journals/fmsd/fmsd11.html#AlurCH97,https://doi.org/10.1023/A:1008626013578 +Thomas Reinbacher,Runtime verification of embedded real-time systems.,2014,44,Formal Methods in System Design,3,db/journals/fmsd/fmsd44.html#ReinbacherFB14,https://doi.org/10.1007/s10703-013-0199-z +Parosh Aziz Abdulla,Using Forward Reachability Analysis for Verification of Lossy Channel Systems.,2004,25,Formal Methods in System Design,1,db/journals/fmsd/fmsd25.html#AbdullaCBJ04,https://doi.org/10.1023/B:FORM.0000033962.51898.1a +Jinseong Jeon,An empirical study of adaptive concretization for parallel program synthesis.,2017,50,Formal Methods in System Design,1,db/journals/fmsd/fmsd50.html#JeonQSF17,https://doi.org/10.1007/s10703-017-0269-8 +Ofer Strichman,"Preface to the special issue ""SI: Satisfiability Modulo Theories"".",2013,42,Formal Methods in System Design,1,db/journals/fmsd/fmsd42.html#StrichmanK13,https://doi.org/10.1007/s10703-012-0172-2 +Carl-Johan H. Seger,Formal Verification by Symbolic Evaluation of Partially-Ordered Trajectories.,1995,6,Formal Methods in System Design,2,db/journals/fmsd/fmsd6.html#SegerB95,https://doi.org/10.1007/BF01383966 +Laura Bozzelli,Decision problems for lower/upper bound parametric timed automata.,2009,35,Formal Methods in System Design,2,db/journals/fmsd/fmsd35.html#BozzelliT09,https://doi.org/10.1007/s10703-009-0074-0 +Yi Li,Model checking approach to automated planning.,2014,44,Formal Methods in System Design,2,db/journals/fmsd/fmsd44.html#LiDSLS14,https://doi.org/10.1007/s10703-013-0197-1 +Andreas Bauer 0002,The ins and outs of first-order runtime verification.,2015,46,Formal Methods in System Design,3,db/journals/fmsd/fmsd46.html#0002KV15,https://doi.org/10.1007/s10703-015-0227-2 +Wolfgang Ahrendt,Verifying data- and control-oriented properties combining static and runtime verification: theory and tools.,2017,51,Formal Methods in System Design,1,db/journals/fmsd/fmsd51.html#AhrendtCPS17,https://doi.org/10.1007/s10703-017-0274-y +Ahmed Bouajjani,Programs with lists are counter automata.,2011,38,Formal Methods in System Design,2,db/journals/fmsd/fmsd38.html#BouajjaniBHIMV11,https://doi.org/10.1007/s10703-011-0111-7 +Sebastian Steinhorst,Advanced methods for equivalence checking of analog circuits with strong nonlinearities.,2010,36,Formal Methods in System Design,2,db/journals/fmsd/fmsd36.html#SteinhorstH10,https://doi.org/10.1007/s10703-009-0086-9 +Edmund M. Clarke,Another Look at LTL Model Checking.,1997,10,Formal Methods in System Design,1,db/journals/fmsd/fmsd10.html#ClarkeGH97,https://doi.org/10.1023/A:1008615614281 +Ratan Nalumasu,Deriving Efficient Cache Coherence Protocols Through Refinement.,2002,20,Formal Methods in System Design,1,db/journals/fmsd/fmsd20.html#NalumasuG02,https://doi.org/10.1023/A:1012916831123 +Akram Idani,Object oriented concepts identification from formal B specifications.,2007,30,Formal Methods in System Design,3,db/journals/fmsd/fmsd30.html#IdaniL07,https://doi.org/10.1007/s10703-006-0030-1 +Gérard Basler,Context-aware counter abstraction.,2010,36,Formal Methods in System Design,3,db/journals/fmsd/fmsd36.html#BaslerMWK10,https://doi.org/10.1007/s10703-010-0096-7 +Alexandre Yakovlev,On the Models for Asynchronous Circuit Behaviour with OR Causality.,1996,9,Formal Methods in System Design,3,db/journals/fmsd/fmsd9.html#YakovlevKKLP96,https://doi.org/10.1007/BF00122082 +Guy Leduc,Model-Based Verification of a Security Protocol for Conditional Access to Services.,1999,14,Formal Methods in System Design,2,db/journals/fmsd/fmsd14.html#LeducBLKP99,https://doi.org/10.1023/A:1008683519655 +Gilles Geeraerts,On regions and zones for event-clock automata.,2014,45,Formal Methods in System Design,3,db/journals/fmsd/fmsd45.html#GeeraertsRS14,https://doi.org/10.1007/s10703-014-0212-1 +Abdel Mokkedem,Formalization and Analysis of a Solution to the PCI 2.1 Bus Transaction Ordering Problem.,2000,16,Formal Methods in System Design,1,db/journals/fmsd/fmsd16.html#MokkedemHJG00,https://doi.org/10.1023/A:1008729625855 +Niklas Büscher,On compiling Boolean circuits optimized for secure multi-party computation.,2017,51,Formal Methods in System Design,2,db/journals/fmsd/fmsd51.html#BuscherFHVK17,https://doi.org/10.1007/s10703-017-0300-0 +Signe J. Silver,True Concurrency in Models of Asynchronous Circuit Behavior.,2003,22,Formal Methods in System Design,3,db/journals/fmsd/fmsd22.html#SilverB03,https://doi.org/10.1023/A:1022902408130 +Yonit Kesten,Model Checking with Strong Fairness.,2006,28,Formal Methods in System Design,1,db/journals/fmsd/fmsd28.html#KestenPRS06,https://doi.org/10.1007/s10703-006-4342-y +Cliff B. Jones,Accommodating Interference in the Formal Design of Concurrent Object-Based Programs.,1996,8,Formal Methods in System Design,2,db/journals/fmsd/fmsd8.html#Jones96,https://doi.org/10.1007/BF00122417 +Rajeev Joshi,Checking Cache-Coherence Protocols with TLA+.,2003,22,Formal Methods in System Design,2,db/journals/fmsd/fmsd22.html#JoshiLMTTY03,https://doi.org/10.1023/A:1022969405325 +Tommaso Dreossi,Reachability computation for polynomial dynamical systems.,2017,50,Formal Methods in System Design,1,db/journals/fmsd/fmsd50.html#DreossiDP17,https://doi.org/10.1007/s10703-016-0266-3 +Roberto Barbuti,Logic Based Abstractions of Real-Time Systems.,2000,17,Formal Methods in System Design,3,db/journals/fmsd/fmsd17.html#BarbutiFSV00,https://doi.org/10.1023/A:1026534200187 +Leila Silva,A Constructive Approach to Hardware/Software Partitioning.,2004,24,Formal Methods in System Design,1,db/journals/fmsd/fmsd24.html#SilvaSB04,https://doi.org/10.1023/B:FORM.0000004787.52329.98 +Adrian Francalanza,Synthesising correct concurrent runtime monitors.,2015,46,Formal Methods in System Design,3,db/journals/fmsd/fmsd46.html#FrancalanzaS15,https://doi.org/10.1007/s10703-014-0217-9 +Petar Tomov,Mechanisms of Self-Sustained Oscillatory States in Hierarchical Modular Networks with Mixtures of Electrophysiological Cell Types.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#TomovPRZ16,https://doi.org/10.3389/fncom.2016.00023 +Sandra D. Berger,Modeling the Influence of Ion Channels on Neuron Dynamics in Drosophila.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#BergerC15,https://doi.org/10.3389/fncom.2015.00139 +Corey B. Hart,Distinguishing synchronous and time-varying synergies using point process interval statistics: motor primitives in frog and rat.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#HartG13,https://doi.org/10.3389/fncom.2013.00052 +Dana Frances Boatman-Reich,Quantifying auditory event-related responses in multichannel human intracranial recordings.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#Boatman-ReichFKCRCC10,https://doi.org/10.3389/fncom.2010.00004 +Vladimir Itskov,Short-Term Facilitation may Stabilize Parametric Working Memory Trace.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#ItskovHT11,https://doi.org/10.3389/fncom.2011.00040 +Ashutosh Mohan,Interaction of short-term depression and firing dynamics in shaping single neuron encoding.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#MohanMS13,https://doi.org/10.3389/fncom.2013.00041 +Christoph Kolodziejski,Closed-Form Treatment of the Interactions between Neuronal Activity and Timing-Dependent Plasticity in Networks of Linear Neurons.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#KolodziejskiTW10,https://doi.org/10.3389/fncom.2010.00134 +Ran Manor,Multimodal Neural Network for Rapid Serial Visual Presentation Brain Computer Interface.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ManorMG16,https://doi.org/10.3389/fncom.2016.00130 +Yonatan Loewenstein,Synaptic theory of Replicator-like melioration.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#Loewenstein10,https://doi.org/10.3389/fncom.2010.00017 +Xuemei Lei,Sex Differences in Fiber Connection between the Striatum and Subcortical and Cortical Regions.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#LeiHCBXD16,https://doi.org/10.3389/fncom.2016.00100 +Kenji Morita,Possible dendritic contribution to unimodal numerosity tuning and Weber-Fechner law-dependent numerical cognition.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#Morita09,https://doi.org/10.3389/neuro.10.012.2009 +Maria Inés Troparevsky,Sensitivity Analysis for the EEG Forward Problem.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#TroparevskyRS10,https://doi.org/10.3389/fncom.2010.00138 +Frederic von Wegner,EEG Microstate Sequences From Different Clustering Algorithms Are Information-Theoretically Invariant.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#WegnerKL18,https://doi.org/10.3389/fncom.2018.00070 +Olivier D. Faugeras,A constructive mean-field analysis of multi population neural networks with random synaptic weights and stochastic inputs.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#FaugerasTC09,https://doi.org/10.3389/neuro.10.001.2009 +Alex Roxin,The Role of Degree Distribution in Shaping the Dynamics in Networks of Sparsely Connected Spiking Neurons.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#Roxin11,https://doi.org/10.3389/fncom.2011.00008 +Drew Benjamin Sinha,Spike-timing computation properties of a feed-forward neural network model.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#SinhaLB14,https://doi.org/10.3389/fncom.2014.00005 +Karim Le Meur,GABA release by hippocampal astrocytes.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#MeurMGA12,https://doi.org/10.3389/fncom.2012.00059 +Christopher J. Lee,Open Peer Review by a Selected-Papers Network.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#Lee12,https://doi.org/10.3389/fncom.2012.00001 +Nikolaus Kriegeskorte,Open Evaluation: A Vision for Entirely Transparent Post-Publication Peer Review and Rating for Science.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#Kriegeskorte12,https://doi.org/10.3389/fncom.2012.00079 +Wiktor Mlynarski,Efficient coding of spectrotemporal binaural sounds leads to emergence of the auditory space representation.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Mlynarski14,https://doi.org/10.3389/fncom.2014.00026 +Thomas G. Oertner,How do synapses measure milliseconds?,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#Oertner09,https://doi.org/10.3389/neuro.10.007.2009 +Chou Po Hung,Correlated activity supports efficient cortical processing.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#HungCCLL15,https://doi.org/10.3389/fncom.2014.00171 +George Azzopardi,Ventral-stream-like shape representation: from pixel intensity values to trainable object-selective COSFIRE models.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#AzzopardiP14,https://doi.org/10.3389/fncom.2014.00080 +Svyatoslav Vergun,Characterizing Functional Connectivity Differences in Aging Adults using Machine Learning on Resting State fMRI Data.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#VergunDMSTNSBMBP13,https://doi.org/10.3389/fncom.2013.00038 +Demba E. Ba,Algorithms for the analysis of ensemble neural spiking activity using simultaneous-event multivariate point-process models.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#BaTB14,https://doi.org/10.3389/fncom.2014.00006 +Tal Dotan Ben-Soussan,Gender-Dependent Changes in Time Production Following Quadrato Motor Training in Dyslexic and Normal Readers.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#Ben-SoussanG18,https://doi.org/10.3389/fncom.2018.00071 +Laura Zitella,Subject-specific computational modeling of DBS in the PPTg area.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ZitellaTYHBDHVB15,https://doi.org/10.3389/fncom.2015.00093 +Tobias A. Mattei,Unveiling complexity: non-linear and fractal analysis in neuroscience and cognitive psychology.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Mattei14,https://doi.org/10.3389/fncom.2014.00017 +Matthieu Gilson,Editorial: Emergent Neural Computation from the Interaction of Different Forms of Plasticity.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#GilsonSZ15,https://doi.org/10.3389/fncom.2015.00145 +William C. Lennon Jr.,A Model of In vitro Plasticity at the Parallel Fiber - Molecular Layer Interneuron Synapses.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#LennonYH15,https://doi.org/10.3389/fncom.2015.00150 +Kunjan D. Rana,Improving the Nulling Beamformer Using Subspace Suppression.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#RanaHV18,https://doi.org/10.3389/fncom.2018.00035 +Bjorn H. Merker,Cortical Gamma Oscillations: Details of Their Genesis Preclude a Role in Cognition.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#Merker16,https://doi.org/10.3389/fncom.2016.00078 +Brett Thomas Buttliere,Using science and psychology to improve the dissemination and evaluation of scientific work.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Buttliere14,https://doi.org/10.3389/fncom.2014.00082 +Christian Tetzlaff,Analysis of Synaptic Scaling in Combination with Hebbian Plasticity in Several Simple Networks.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#TetzlaffKTW12,https://doi.org/10.3389/fncom.2012.00036 +Kesheng Xu,Hyperpolarization-Activated Current Induces Period-Doubling Cascades and Chaos in a Cold Thermoreceptor Model.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#XuMCQAO17,https://doi.org/10.3389/fncom.2017.00012 +Raoul R. Nigmatullin,Membrane current series monitoring: essential reduction of data points to finite number of stable parameters.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#NigmatullinGS14,https://doi.org/10.3389/fncom.2014.00120 +Jessica L. Slater,Timing Deficits in ADHD: Insights From the Neuroscience of Musical Rhythm.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#SlaterT18,https://doi.org/10.3389/fncom.2018.00051 +Robert John Merrison-Hort,The emergence of two anti-phase oscillatory neural populations in a computational model of the Parkinsonian globus pallidus.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#Merrison-HortB13,https://doi.org/10.3389/fncom.2013.00173 +Michael D. Forrest,Intracellular calcium dynamics permit a Purkinje neuron model to perform toggle and gain computations upon its inputs.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Forrest14,https://doi.org/10.3389/fncom.2014.00086 +Stephan Kratzer,Propofol and Sevoflurane Differentially Modulate Cortical Depolarization following Electric Stimulation of the Ventrobasal Thalamus.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#KratzerMGSKRSKH17,https://doi.org/10.3389/fncom.2017.00109 +Sajad Jafari,Is there any geometrical information in the nervous system?,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#JafariGG13,https://doi.org/10.3389/fncom.2013.00121 +Patrick J. C. May,Temporal binding of sound emerges out of anatomical structure and synaptic dynamics of auditory cortex.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#MayT13,https://doi.org/10.3389/fncom.2013.00152 +Kubra Komek Kirli,Computational study of NMDA conductance and cortical oscillations in schizophrenia.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#KirliCE14,https://doi.org/10.3389/fncom.2014.00133 +Naoki Hiratani,Associative memory model with long-tail-distributed Hebbian synaptic connections.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#HirataniTF13,https://doi.org/10.3389/fncom.2012.00102 +Rosalyn J. Moran,Neural masses and fields in dynamic causal modeling.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#MoranPF13,https://doi.org/10.3389/fncom.2013.00057 +Pascal Grange,Cell-type-specific neuroanatomy of cliques of autism-related genes in the mouse brain.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#GrangeMH15,https://doi.org/10.3389/fncom.2015.00055 +Robbe L. T. Goris,Neural representations that support invariant object recognition.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#GorisB09,https://doi.org/10.3389/neuro.10.003.2009 +Yansong Chua,Effects of Calcium Spikes in the Layer 5 Pyramidal Neuron on Coincidence Detection and Activity Propagation.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ChuaM16,https://doi.org/10.3389/fncom.2016.00076 +Sidney R. Lehky,Population Coding of Visual Space: Modeling.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#LehkyS11,https://doi.org/10.3389/fncom.2010.00155 +Inkeri Välkki,Network-Wide Adaptive Burst Detection Depicts Neuronal Activity with Improved Accuracy.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ValkkiLMKH17,https://doi.org/10.3389/fncom.2017.00040 +Yuichi Katori,Stability analysis of associative memory network composed of stochastic neurons and dynamic synapses.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#KatoriOOA13,https://doi.org/10.3389/fncom.2013.00006 +Cornelis J. Stam,Emergence of Modular Structure in a Large-Scale Brain Network with Interactions between Dynamics and Connectivity.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#StamHWM10,https://doi.org/10.3389/fncom.2010.00133 +Alex Loebel,Multiquantal release underlies the distribution of synaptic efficacies in the neocortex.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#LoebelSHMTR09,https://doi.org/10.3389/neuro.10.027.2009 +Rubin Wang,Energy distribution property and energy coding of a structural neural network.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#WangW14,https://doi.org/10.3389/fncom.2014.00014 +Yasser Roudi,Statistical physics of pairwise probability models.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#RoudiAH09,https://doi.org/10.3389/neuro.10.022.2009 +Michael C. Avery,Improper activation of D1 and D2 receptors leads to excess noise in prefrontal cortex.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#AveryK15,https://doi.org/10.3389/fncom.2015.00031 +Xiaojuan Guo,Characterizing structural association alterations within brain networks in normal aging using Gaussian Bayesian networks.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#GuoWCWZLJY14,https://doi.org/10.3389/fncom.2014.00122 +Masoud Ghodrati,The importance of visual features in generic vs. specialized object recognition: a computational study.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#GhodratiRE14,https://doi.org/10.3389/fncom.2014.00078 +Patrick McClure,Representational Distance Learning for Deep Neural Networks.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#McClureK16,https://doi.org/10.3389/fncom.2016.00131 +Robert Rosenbaum,Pooling and correlated neural activity.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#RosenbaumTJ10,https://doi.org/10.3389/fncom.2010.00009 +Richard T. Gray,Stability constraints on large-scale structural brain networks.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#GrayR13,https://doi.org/10.3389/fncom.2013.00031 +Caitlin L. Banks,Methodological Choices in Muscle Synergy Analysis Impact Differentiation of Physiological Characteristics Following Stroke.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#BanksPMFP17,https://doi.org/10.3389/fncom.2017.00078 +Fábio M. Simões-de-Souza,Electrical responses of three classes of granule cells of the olfactory bulb to synaptic inputs in different dendritic locations.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Simoes-de-SouzaAR14,https://doi.org/10.3389/fncom.2014.00128 +Miguel Aguilera,The situated HKB model: how sensorimotor spatial coupling can alter oscillatory brain dynamics.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#AguileraBSB13,https://doi.org/10.3389/fncom.2013.00117 +Fali Li,Top-Down Disconnectivity in Schizophrenia During P300 Tasks.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#LiWJSPSJZDYX18,https://doi.org/10.3389/fncom.2018.00033 +Dominik Maria Endres,Model selection for the extraction of movement primitives.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#EndresCG13,https://doi.org/10.3389/fncom.2013.00185 +Daniel J. Graham,Routing in the brain.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Graham14,https://doi.org/10.3389/fncom.2014.00044 +Yixin Guo,Basal ganglia modulation of thalamocortical relay in Parkinson's disease and dystonia.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#GuoPWR13,https://doi.org/10.3389/fncom.2013.00124 +Simon O'Connor,Burst firing versus synchrony in a gap junction connected olfactory bulb mitral cell network model.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#OConnorAJ12,https://doi.org/10.3389/fncom.2012.00075 +Matthias H. Hennig,Theoretical models of synaptic short term plasticity.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#Hennig13a,https://doi.org/10.3389/fncom.2013.00154 +Christian Albers,Theta-specific susceptibility in a model of adaptive synaptic plasticity.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#AlbersSP13,https://doi.org/10.3389/fncom.2013.00170 +Sven Jahnke,Propagating synchrony in feed-forward networks.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#JahnkeMT13,https://doi.org/10.3389/fncom.2013.00153 +Otto Braulio García-Garibay,The Müller-Lyer illusion as seen by an artificial neural network.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Garcia-GaribayL15,https://doi.org/10.3389/fncom.2015.00021 +Takashi Nakano,A model-based prediction of the calcium responses in the striatal synaptic spines depending on the timing of cortical and dopaminergic inputs and post-synaptic spikes.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#NakanoYD13,https://doi.org/10.3389/fncom.2013.00119 +Cristian Carmeli,Quantifying network properties in multi-electrode recordings: spatiotemporal characterization and inter-trial variation of evoked gamma oscillations in mouse somatosensory cortex in vitro.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#CarmeliBRS13,https://doi.org/10.3389/fncom.2013.00134 +Douglas L. Jones,A stimulus-dependent spike threshold is an optimal neural coder.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#JonesJR15,https://doi.org/10.3389/fncom.2015.00061 +Lingli Zhou,Signal Transmission of Biological Reaction-Diffusion System by Using Synchronization.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ZhouS17,https://doi.org/10.3389/fncom.2017.00092 +Hafsteinn Einarsson,A high-capacity model for one shot association learning in the brain.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#EinarssonLS14,https://doi.org/10.3389/fncom.2014.00140 +Daniel Ben Dayan Rubin,Long memory life* require complex synapses and limited sparseness.,2007,2007,Front. Comput. Neurosci.,,db/journals/ficn/ficn2007.html#RubinF07,https://doi.org/10.3389/neuro.10.007.2007 +Ryota Kobayashi,Estimation of the synaptic input firing rates and characterization of the stimulation effects in an auditory neuron.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#KobayashiHL15,https://doi.org/10.3389/fncom.2015.00059 +Fikret E. Kapucu,Burst analysis tool for developing neuronal networks exhibiting highly varying action potential dynamics.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#KapucuTMYNH12,https://doi.org/10.3389/fncom.2012.00038 +Hongping Fu,Visual Cortex Inspired CNN Model for Feature Construction in Text Analysis.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#FuNZMC16,https://doi.org/10.3389/fncom.2016.00064 +Daniel de Santos Sierra,Effects of Spike Anticipation on the Spiking Dynamics of Neural Networks.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#SierraSGNV15,https://doi.org/10.3389/fncom.2015.00144 +Marko Wilke,CerebroMatic: A Versatile Toolbox for Spline-Based MRI Template Creation.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#WilkeAHC17,https://doi.org/10.3389/fncom.2017.00005 +Meropi Topalidou,A long journey into reproducible computational neuroscience.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#TopalidouLBR15,https://doi.org/10.3389/fncom.2015.00030 +Fermín Segovia,Distinguishing Parkinson's disease from atypical parkinsonian syndromes using PET data and a computer system based on support vector machines and Bayesian networks.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#SegoviaIGRRL15,https://doi.org/10.3389/fncom.2015.00137 +Qian Wang,Magnetoencephalography in Preoperative Epileptic Foci Localization: Enlightenment from Cognitive Studies.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#WangTL17,https://doi.org/10.3389/fncom.2017.00058 +Gabor Aranyi,Affective Interaction with a Virtual Character Through an fNIRS Brain-Computer Interface.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#AranyiPCPC16,https://doi.org/10.3389/fncom.2016.00070 +Huan Yang 0003,Dependence of Nociceptive Detection Thresholds on Physiological Parameters and Capsaicin-Induced Neuroplasticity: A Computational Study.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#YangMDBG16,https://doi.org/10.3389/fncom.2016.00049 +Michael W. Spratling,Reconciling predictive coding and biased competition models of cortical function.,2008,2008,Front. Comput. Neurosci.,,db/journals/ficn/ficn2008.html#Spratling08,https://doi.org/10.3389/neuro.10.004.2008 +Julio Chapeton,Effects of homeostatic constraints on associative memory storage and synaptic connectivity of cortical circuits.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ChapetonGS15,https://doi.org/10.3389/fncom.2015.00074 +Jean-Baptiste Passot,Coupling internal cerebellar models enhances online adaptation and supports offline consolidation in sensorimotor tasks.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#PassotLA13,https://doi.org/10.3389/fncom.2013.00095 +Linling Li,Corrigendum: Placebo Analgesia Changes Alpha Oscillations Induced by Tonic Muscle Pain: EEG Frequency Analysis Including Data during Pain Evaluation.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#LiWKLYZXQ16a,https://doi.org/10.3389/fncom.2016.00125 +Steven J. Cox,Model Reduction of Strong-Weak Neurons.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#CoxDS14,https://doi.org/10.3389/fncom.2014.00164 +David Eriksson,A Linear Model of Phase-Dependent Power Correlations in Neuronal Oscillations.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#ErikssonVS11,https://doi.org/10.3389/fncom.2011.00034 +Kohei Nakajima,A soft body as a reservoir: case studies in a dynamic model of octopus-inspired soft robotic arm.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#NakajimaHKGCP13,https://doi.org/10.3389/fncom.2013.00091 +Jianfeng Hu,Automated Detection of Driver Fatigue Based on AdaBoost Classifier with EEG Signals.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#Hu17,https://doi.org/10.3389/fncom.2017.00072 +Yuko Yotsumoto,Consolidated learning can be susceptible to gradually-developing interference in prolonged motor learning.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#YotsumotoWCS13,https://doi.org/10.3389/fncom.2013.00069 +John W. Moore,A personal view of the early development of computational neuroscience in the USA.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#Moore10,https://doi.org/10.3389/fncom.2010.00020 +Paul Ferré,Unsupervised Feature Learning With Winner-Takes-All Based STDP.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#FerreMT18,https://doi.org/10.3389/fncom.2018.00024 +Benjamin Staude,Higher-order correlations in non-stationary parallel spike trains: statistical modeling and inference.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#StaudeGR10,https://doi.org/10.3389/fncom.2010.00016 +Mitsuhiro Hayashibe,Synergetic motor control paradigm for optimizing energy efficiency of multijoint reaching via tacit learning.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#HayashibeS14,https://doi.org/10.3389/fncom.2014.00021 +Ari S. Benjamin,Modern Machine Learning as a Benchmark for Fitting Neural Responses.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#BenjaminFTRVCMK18,https://doi.org/10.3389/fncom.2018.00056 +Maciej Jedynak,Cross-frequency transfer in a stochastically driven mesoscopic neuronal model.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#JedynakPG15,https://doi.org/10.3389/fncom.2015.00014 +Jens Kolind,Opposing effects of intrinsic conductance and correlated synaptic input on Vm-fluctuations during network activity.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#KolindHB12,https://doi.org/10.3389/fncom.2012.00040 +Danke Zhang,Nonlinear multiplicative dendritic integration in neuron and network models.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#ZhangLRW13,https://doi.org/10.3389/fncom.2013.00056 +C. C. Alan Fung,Resolution enhancement in neural networks with dynamical synapses.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#FungWLWW13,https://doi.org/10.3389/fncom.2013.00073 +Iris I. A. Groen,Low-level contrast statistics are diagnostic of invariance of natural textures.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#GroenGLS12,https://doi.org/10.3389/fncom.2012.00034 +Michele Migliore,Distributed organization of a brain microcircuit analyzed by three-dimensional modeling: the olfactory bulb.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#MiglioreCHS14,https://doi.org/10.3389/fncom.2014.00050 +Fleur Zeldenrust,Estimating the Information Extracted by a Single Spiking Neuron from a Continuous Input Time Series.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ZeldenrustKWDG17,https://doi.org/10.3389/fncom.2017.00049 +Enric Claverol-Tinturé,Commentary: Feedback stabilizes propagation of synchronous spiking in cortical neural networks.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Claverol-Tinture15,https://doi.org/10.3389/fncom.2015.00071 +Fleur Zeldenrust,Neural Coding With Bursts - Current State and Future Perspectives.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#ZeldenrustWE18,https://doi.org/10.3389/fncom.2018.00048 +Sanne Schoenmakers,Gaussian mixture models and semantic gating improve reconstructions from human brain activity.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#SchoenmakersGGH15,https://doi.org/10.3389/fncom.2014.00173 +Shunta Togo,Empirical Evaluation of Voluntarily Activatable Muscle Synergies.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#TogoI17,https://doi.org/10.3389/fncom.2017.00082 +Jakob H. Macke,Statistical Analysis of Multi-Cell Recordings: Linking Population Coding Models to Experimental Data.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#MackeBB11,https://doi.org/10.3389/fncom.2011.00035 +Oliver W. Layton,Recurrent competition explains temporal effects of attention in MSTd.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#LaytonB12,https://doi.org/10.3389/fncom.2012.00080 +Hiroshi Saito,Bayesian deterministic decision making: a normative account of the operant matching law and heavy-tailed reward history dependency of choices.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#SaitoKOO14,https://doi.org/10.3389/fncom.2014.00018 +Geoffrey Mégardon,Limitations of short range Mexican hat connection for driving target selection in a 2D neural field: activity suppression and deviation from input stimuli.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#MegardonTSG15,https://doi.org/10.3389/fncom.2015.00128 +Corey M. Thibeault,Efficiently passing messages in distributed spiking neural network simulation.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#ThibeaultMOHS13,https://doi.org/10.3389/fncom.2013.00077 +Nelson Cortes,Pulvinar thalamic nucleus allows for asynchronous spike propagation through the cortex.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#CortesV15,https://doi.org/10.3389/fncom.2015.00060 +Mainak Patel,Coding of odors by temporal binding within a model network of the locust antennal lobe.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#PatelRC13,https://doi.org/10.3389/fncom.2013.00050 +Alexander Walther,FOSE: a framework for open science evaluation.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#WaltherB12,https://doi.org/10.3389/fncom.2012.00032 +Nelly Daur,The Stomatogastric Nervous System as a Model for Studying Sensorimotor Interactions in Real-Time Closed-Loop Conditions.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#DaurDMS12,https://doi.org/10.3389/fncom.2012.00013 +Aliaksandr Birukou,Alternatives to Peer Review: Novel Approaches for Research Evaluation.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#BirukouWBCMMORSW11,https://doi.org/10.3389/fncom.2011.00056 +Eli Shlizerman,Data-driven inference of network connectivity for modeling the dynamics of neural codes in the insect antennal lobe.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#ShlizermanRK14,https://doi.org/10.3389/fncom.2014.00070 +Otis Smart,Initial Unilateral Exposure to Deep Brain Stimulation in Treatment-Resistant Depression Patients Alters Spectral Power in the Subcallosal Cingulate.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#SmartCRTRWCEGM18,https://doi.org/10.3389/fncom.2018.00043 +Matthias H. Hennig,Effects of fixational eye movements on retinal ganglion cell responses: a modelling study.,2007,2007,Front. Comput. Neurosci.,,db/journals/ficn/ficn2007.html#HennigW07,https://doi.org/10.3389/neuro.10.002.2007 +Sorinel A. Oprisan,Cocaine-Induced Changes in Low-Dimensional Attractors of Local Field Potentials in Optogenetic Mice.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#OprisanIHTL18,https://doi.org/10.3389/fncom.2018.00002 +Viktor K. Jirsa,Cross-frequency coupling in real and virtual brain networks.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#JirsaM13,https://doi.org/10.3389/fncom.2013.00078 +Alexander Bird,Long-term plasticity determines the postsynaptic response to correlated afferents with multivesicular short-term synaptic depression.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#BirdR14,https://doi.org/10.3389/fncom.2014.00002 +Jordan D. Chambers,Parametric computation predicts a multiplicative interaction between synaptic strength parameters that control gamma oscillations.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#ChambersBDPAPT12,https://doi.org/10.3389/fncom.2012.00053 +Hafsteinn Einarsson,A Model of Fast Hebbian Spike Latency Normalization.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#EinarssonGLS17,https://doi.org/10.3389/fncom.2017.00033 +Su Z. Hong,T-type calcium channels promote predictive homeostasis of input-output relations in thalamocortical neurons of lateral geniculate nucleus.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#HongKF14,https://doi.org/10.3389/fncom.2014.00098 +Matthias Kreuzer,EEG Based Monitoring of General Anesthesia: Taking the Next Steps.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#Kreuzer17,https://doi.org/10.3389/fncom.2017.00056 +Branka Milivojevic,Object Recognition Can Be Viewpoint Dependent or Invariant - It's Just a Matter of Time and Task.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#Milivojevic12,https://doi.org/10.3389/fncom.2012.00027 +Shivendra Tewari,Data and model tango to aid the understanding of astrocyte-neuron signaling.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#TewariP14,https://doi.org/10.3389/fncom.2014.00003 +Daniele Linaro,Inferring Network Dynamics and Neuron Properties from Population Recordings.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#LinaroSM11,https://doi.org/10.3389/fncom.2011.00043 +Weiwei Peng,Pain Related Cortical Oscillations: Methodological Advances and Potential Applications.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#PengT16,https://doi.org/10.3389/fncom.2016.00009 +Pengcheng Zhou,Impact of neuronal heterogeneity on correlated colored noise-induced synchronization.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#ZhouBUE13,https://doi.org/10.3389/fncom.2013.00113 +Naser Mehrabi,Predictive Simulation of Reaching Moving Targets Using Nonlinear Model Predictive Control.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#MehrabiRGM17,https://doi.org/10.3389/fncom.2016.00143 +Erwan Ledoux,Dynamics of Networks of Excitatory and Inhibitory Neurons in Response to Time-Dependent Inputs.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#LedouxB11,https://doi.org/10.3389/fncom.2011.00025 +Mohammad Reza Paraan,A more realistic quantum mechanical model of conscious perception during binocular rivalry.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#ParaanBG14,https://doi.org/10.3389/fncom.2014.00015 +Gustavo Deco,How anatomy shapes dynamics: a semi-analytical study of the brain at rest by a simple spin model.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#DecoSJ12,https://doi.org/10.3389/fncom.2012.00068 +Elmar A. Rückert,Learned parametrized dynamic movement primitives with shared synergies for controlling robotic and musculoskeletal systems.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#Ruckertd13,https://doi.org/10.3389/fncom.2013.00138 +Max Garagnani,A Spiking Neurocomputational Model of High-Frequency Oscillatory Brain Responses to Words and Pseudowords.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#GaragnaniLTWP17,https://doi.org/10.3389/fncom.2016.00145 +Michele Tagliabue,A modular theory of multisensory integration for motor control.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#TagliabueM14,https://doi.org/10.3389/fncom.2014.00001 +Mario Dipoppa,Correlations in background activity control persistent state stability and allow execution of working memory tasks.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#DipoppaG13,https://doi.org/10.3389/fncom.2013.00139 +Seif Eldawlatly,Temporal precision in population - but not individual neuron - dynamics reveals rapid experience-dependent plasticity in the rat barrel cortex.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#EldawlatlyO14,https://doi.org/10.3389/fncom.2014.00155 +Pragathi P. Balasubramani,Using a Simple Neural Network to Delineate Some Principles of Distributed Economic Choice.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#BalasubramaniMH18,https://doi.org/10.3389/fncom.2018.00022 +Martin Dinov,Novel Modeling of Task vs. Rest Brain State Predictability Using a Dynamic Time Warping Spectrum: Comparisons and Contrasts with Other Standard Measures of Brain Dynamics.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#DinovLSSFL16,https://doi.org/10.3389/fncom.2016.00046 +Sara Ashley Steele,An alternating renewal process describes the buildup of perceptual segregation.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#SteeleTR15,https://doi.org/10.3389/fncom.2014.00166 +Alberto Testolin,Probabilistic Models and Generative Neural Networks: Towards an Unified Framework for Modeling Normal and Impaired Neurocognitive Functions.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#TestolinZ16,https://doi.org/10.3389/fncom.2016.00073 +Mainak J. Patel,Effects of Adaptation on Discrimination of Whisker Deflection Velocity and Angular Direction in a Model of the Barrel Cortex.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#Patel18,https://doi.org/10.3389/fncom.2018.00045 +Mubashir Hassan,Molecular Docking and Dynamic Simulation of AZD3293 and Solanezumab Effects Against BACE1 to Treat Alzheimer's Disease.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#HassanSSAZM18,https://doi.org/10.3389/fncom.2018.00034 +Tim Waegeman,MACOP modular architecture with control primitives.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#WaegemanHS13,https://doi.org/10.3389/fncom.2013.00099 +Ashok Chandrashekar,Derivation of a Novel Efficient Supervised Learning Algorithm from Cortical-Subcortical Loops.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#ChandrashekarG12,https://doi.org/10.3389/fncom.2011.00050 +Yuanyuan Mi,Neural Computations in a Dynamical System with Multiple Time Scales.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#MiLW16,https://doi.org/10.3389/fncom.2016.00096 +Cedric E. Ginestet,Statistical network analysis for functional MRI: summary networks and group comparisons.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#GinestetFS14,https://doi.org/10.3389/fncom.2014.00051 +Arpan Banerjee,Parametric models to relate spike train and LFP dynamics with neural information processing.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#BanerjeeDP12,https://doi.org/10.3389/fncom.2012.00051 +Hanchen Xiong,Diversity priors for learning early visual features.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#XiongRSP15,https://doi.org/10.3389/fncom.2015.00104 +Paul R. MacNeilage,Quantification of Head Movement Predictability and Implications for Suppression of Vestibular Input during Locomotion.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#MacNeilageG17,https://doi.org/10.3389/fncom.2017.00047 +Mario Martín,Markovian Analysis of the Sequential Behavior of the Spontaneous Spinal Cord Dorsum Potentials Induced by Acute Nociceptive Stimulation in the Anesthetized Cat.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#MartinBECCGCR17,https://doi.org/10.3389/fncom.2017.00032 +Hrishikesh Rao,Neural Network Evidence for the Coupling of Presaccadic Visual Remapping to Predictive Eye Position Updating.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#RaoJSVRS16,https://doi.org/10.3389/fncom.2016.00052 +Harilal Parasuram,Computational Modeling of Single Neuron Extracellular Electric Potentials and Network Local Field Potentials using LFPsim.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ParasuramNDHND16,https://doi.org/10.3389/fncom.2016.00065 +Sunhyoung Han,Object recognition with hierarchical discriminant saliency networks.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#HanV14,https://doi.org/10.3389/fncom.2014.00109 +Michael J. Rempe,Cerebral lactate dynamics across sleep/wake cycles.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#RempeW15,https://doi.org/10.3389/fncom.2014.00174 +James Yu-Chang Liao,Velocity neurons improve performance more than goal or position neurons do in a simulated closed-loop BCI arm-reaching task.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#LiaoK15,https://doi.org/10.3389/fncom.2015.00084 +Zoran Tiganj,Influence of extracellular oscillations on neural communication: a computational perspective.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#TiganjCM14,https://doi.org/10.3389/fncom.2014.00009 +Hugo Gabriel Eyherabide,Time and Category Information in Pattern-Based Codes.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#EyherabideS10,https://doi.org/10.3389/fncom.2010.00145 +Fabian Schönfeld,Modeling place field activity with hierarchical slow feature analysis.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#SchonfeldW15,https://doi.org/10.3389/fncom.2015.00051 +Bernhard A. Kaplan,Anisotropic connectivity implements motion-based prediction in a spiking neural network.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#KaplanLMP13,https://doi.org/10.3389/fncom.2013.00112 +Shimon Edelman,Renewing the respect for similarity.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#EdelmanS12,https://doi.org/10.3389/fncom.2012.00045 +Qifu Li,Functional Network Connectivity Patterns between Idiopathic Generalized Epilepsy with Myoclonic and Absence Seizures.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#LiCWCMHC17,https://doi.org/10.3389/fncom.2017.00038 +Shivakeshavan Ratnadurai-Giridharan,Emergent gamma synchrony in all-to-all interneuronal networks.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Ratnadurai-Giridharan15,https://doi.org/10.3389/fncom.2015.00127 +Moshe Abeles,Compositionality in neural control: an interdisciplinary study of scribbling movements in primates.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#AbelesDFGHT13,https://doi.org/10.3389/fncom.2013.00103 +Damian Kelty-Stephen,Astronomical apology for fractal analysis: spectroscopy's place in the cognitive neurosciences.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Kelty-Stephen14,https://doi.org/10.3389/fncom.2014.00016 +Michael H. Herzog,Why vision is not both hierarchical and feedforward.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#HerzogC14,https://doi.org/10.3389/fncom.2014.00135 +Jyotika Bahuguna,Homologous Basal Ganglia Network Models in Physiological and Parkinsonian Conditions.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#BahugunaTKKM17,https://doi.org/10.3389/fncom.2017.00079 +Susanne Kunkel,Limits to the Development of Feed-Forward Structures in Large Recurrent Neuronal Networks.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#KunkelDM11,https://doi.org/10.3389/fncom.2010.00160 +Elissa Michele Aminoff,Applying artificial vision models to human scene understanding.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#AminoffTSCMGT15,https://doi.org/10.3389/fncom.2015.00008 +Ricardo Pio Monti,Decoding Time-Varying Functional Connectivity Networks via Linear Graph Embedding Methods.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#MontiLHLAM17,https://doi.org/10.3389/fncom.2017.00014 +Diego Lozano-Soldevilla,Neuronal Oscillations with Non-sinusoidal Morphology Produce Spurious Phase-to-Amplitude Coupling and Directionality.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#Lozano-Soldevilla16,https://doi.org/10.3389/fncom.2016.00087 +Jesus Minguillon,Stress Assessment by Prefrontal Relative Gamma.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#MinguillonLP16,https://doi.org/10.3389/fncom.2016.00101 +Benjamin Pfeuty,Inhibition potentiates the synchronizing action of electrical synapses.,2007,2007,Front. Comput. Neurosci.,,db/journals/ficn/ficn2007.html#PfeutyGMH07,https://doi.org/10.3389/neuro.10.008.2007 +Bakul Gohel,Evaluation of Phase-Amplitude Coupling in Resting State Magnetoencephalographic Signals: Effect of Surrogates and Evaluation Approach.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#GohelLKAKKK16,https://doi.org/10.3389/fncom.2016.00120 +Andrew J. Parker,A micro-pool model for decision-related signals in visual cortical areas.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#Parker13,https://doi.org/10.3389/fncom.2013.00115 +Nicolangelo Iannella,Spike Timing-Dependent Plasticity as the Origin of the Formation of Clustered Synaptic Efficacy Engrams.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#IannellaLT10,https://doi.org/10.3389/fncom.2010.00021 +Foteini Protopapa,Granger causality analysis reveals distinct spatio-temporal connectivity patterns in motor and perceptual visuo-spatial working memory.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#ProtopapaSES14,https://doi.org/10.3389/fncom.2014.00146 +Judith C. Peters,Modeling invariant object processing based on tight integration of simulated and empirical data in a Common Brain Space.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#PetersRG12,https://doi.org/10.3389/fncom.2012.00012 +Carolyn Jeane Perry,Feature integration and object representations along the dorsal stream visual hierarchy.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#PerryF14,https://doi.org/10.3389/fncom.2014.00084 +Naoya Yoshikawa,Intermittent Feedback-Control Strategy for Stabilizing Inverted Pendulum on Manually Controlled Cart as Analogy to Human Stick Balancing.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#YoshikawaSKN16,https://doi.org/10.3389/fncom.2016.00034 +Xian-Shi Zhang,A Retina Inspired Model for Enhancing Visibility of Hazy Images.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ZhangGLL15,https://doi.org/10.3389/fncom.2015.00151 +James M. Bower,"The 40-year history of modeling active dendrites in cerebellar Purkinje cells: emergence of the first single cell ""community model"".",2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Bower15,https://doi.org/10.3389/fncom.2015.00129 +Dmitri V. Krioukov,Brain theory.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Krioukov14,https://doi.org/10.3389/fncom.2014.00114 +Daniel Bush,Spike-timing dependent plasticity and the cognitive map.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#BushPHO10,https://doi.org/10.3389/fncom.2010.00142 +Richard F. Betzel,Synchronization dynamics and evidence for a repertoire of network states in resting EEG.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#BetzelEAOHS12,https://doi.org/10.3389/fncom.2012.00074 +Jaroslav Hlinka,On the danger of detecting network states in white noise.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#HlinkaH15,https://doi.org/10.3389/fncom.2015.00011 +Xiaofan Zhang,Dynamic trajectory of multiple single-unit activity during working memory task in rats.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ZhangYB015,https://doi.org/10.3389/fncom.2015.00117 +Belén Sancristóbal,Emergent bimodal firing patterns implement different encoding strategies during gamma-band oscillations.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#SancristobalVSG13,https://doi.org/10.3389/fncom.2013.00018 +Viviana Culmone,Progressive effect of beta amyloid peptides accumulation on CA1 pyramidal neurons: a model study suggesting possible treatments.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#CulmoneM12,https://doi.org/10.3389/fncom.2012.00052 +Pravat K. Mandal,A Comprehensive Review of Magnetoencephalography (MEG) Studies for Brain Functionality in Healthy Aging and Alzheimer's Disease (AD).,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#MandalBTS18,https://doi.org/10.3389/fncom.2018.00060 +Masafumi Oizumi,Functional Differences between Global Pre- and Postsynaptic Inhibition in the Drosophila Olfactory Circuit.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#OizumiSKO12,https://doi.org/10.3389/fncom.2012.00014 +Andrew Thwaites,Tracking cortical entrainment in neural activity: auditory processes in human temporal cortex.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ThwaitesNFPBM15,https://doi.org/10.3389/fncom.2015.00005 +Birgit Kriener,How pattern formation in ring networks of excitatory and inhibitory spiking neurons depends on the input current regime.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#KrienerHRDE14,https://doi.org/10.3389/fncom.2013.00187 +Florence I. Kleberg,Excitatory and inhibitory STDP jointly tune feedforward neural circuits to selectively propagate correlated spiking activity.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#KlebergFG14,https://doi.org/10.3389/fncom.2014.00053 +Andreas Knoblauch,Does Spike-Timing-Dependent Synaptic Plasticity Couple or Decouple Neurons Firing in Synchrony?,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#KnoblauchHGKP12,https://doi.org/10.3389/fncom.2012.00055 +Bin Min,Effects of Firing Variability on Network Structures with Spike-Timing-Dependent Plasticity.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#MinZC18,https://doi.org/10.3389/fncom.2018.00001 +Diogo Santos Pata,Size Matters: How Scaling Affects the Interaction between Grid and Border Cells.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#PataZLV17,https://doi.org/10.3389/fncom.2017.00065 +Dana H. Ballard,Dual Roles for Spike Signaling in Cortical Neural Populations.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#BallardJ11,https://doi.org/10.3389/fncom.2011.00022 +Cristiano Alessandro,Muscle synergies in neuroscience and robotics: from input-space to task-space perspectives.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#AlessandroDNPB13,https://doi.org/10.3389/fncom.2013.00043 +Walter Glannon,Philosophical reflections on therapeutic brain stimulation.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Glannon14,https://doi.org/10.3389/fncom.2014.00054 +Liqiong Zhao,Synchronization from Second Order Network Connectivity Statistics.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#ZhaoBNN11,https://doi.org/10.3389/fncom.2011.00028 +Miguel C. Soriano,Minimal approach to neuro-inspired information processing.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#SorianoBEMF15,https://doi.org/10.3389/fncom.2015.00068 +Vadim Axelrod,Commentary: When the brain takes a break: a model-based analysis of mind wandering.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#AxelrodT15,https://doi.org/10.3389/fncom.2015.00083 +Nelson Cortes,The Role of Pulvinar in the Transmission of Information in the Visual Hierarchy.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#CortesV12,https://doi.org/10.3389/fncom.2012.00029 +Sungwoo Ahn,Potential Mechanisms and Functions of Intermittent Neural Synchronization.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#AhnR17,https://doi.org/10.3389/fncom.2017.00044 +Ryan Thomas Philips,The mapping of eccentricity and meridional angle onto orthogonal axes in the primary visual cortex: an activity-dependent developmental model.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#PhilipsC15,https://doi.org/10.3389/fncom.2015.00003 +Robert Sinclair,Do rational numbers play a role in selection for stochasticity?,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Sinclair14,https://doi.org/10.3389/fncom.2014.00113 +Danilo Jimenez Rezende,Stochastic variational learning in recurrent spiking networks.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#RezendeG14,https://doi.org/10.3389/fncom.2014.00038 +Karl P. Dockendorf,Learning and prospective recall of noisy spike pattern episodes.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#DockendorfS13,https://doi.org/10.3389/fncom.2013.00080 +Gerold Baier,Understanding Epileptiform After-Discharges as Rhythmic Oscillatory Transients.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#BaierTW17,https://doi.org/10.3389/fncom.2017.00025 +Gabriel Kreiman,Nine Criteria for a Measure of Scientific Output.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#KreimanM11,https://doi.org/10.3389/fncom.2011.00048 +Michael G. Metzen,Burst Firing in the Electrosensory System of Gymnotiform Weakly Electric Fish: Mechanisms and Functional Roles.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#MetzenKC16,https://doi.org/10.3389/fncom.2016.00081 +Xia Wu,Bayesian network analysis revealed the connectivity difference of the default mode network from the resting-state to task-state.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#WuYYL14,https://doi.org/10.3389/fncom.2014.00118 +Pierre Yger,Models of Metaplasticity: A Review of Concepts.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#YgerG15,https://doi.org/10.3389/fncom.2015.00138 +Harel Z. Shouval,Spike Timing Dependent Plasticity: A Consequence of More Fundamental Learning Rules.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#ShouvalWW10,https://doi.org/10.3389/fncom.2010.00019 +Max Berniker,Deep networks for motor control functions.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#BernikerK15,https://doi.org/10.3389/fncom.2015.00032 +Lei Jiang,Spatial-Temporal Feature Analysis on Single-Trial Event Related Potential for Rapid Face Identification.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#JiangWCW017,https://doi.org/10.3389/fncom.2017.00106 +Hideaki Yamamoto,Effective Subnetwork Topology for Synchronizing Interconnected Networks of Coupled Phase Oscillators.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#YamamotoKSHN18,https://doi.org/10.3389/fncom.2018.00017 +Shigeru Shinomoto,Deciphering Elapsed Time and Predicting Action Timing from Neuronal Population Signals.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#ShinomotoOMMSMT11,https://doi.org/10.3389/fncom.2011.00029 +Raphaël Holca-Lamarre,Models of Acetylcholine and Dopamine Signals Differentially Improve Neural Representations.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#Holca-LamarreLO17,https://doi.org/10.3389/fncom.2017.00054 +Marcelo Bertalmío,From image processing to computational neuroscience: a neural model based on histogram equalization.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Bertalmio14,https://doi.org/10.3389/fncom.2014.00071 +Cornelis van de Kamp,Interfacing sensory input with motor output: does the control architecture converge to a serial process along a single channel?,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#KampGGLL13,https://doi.org/10.3389/fncom.2013.00055 +Mark Rowan,Information-Selectivity of Beta-Amyloid Pathology in an Associative Memory Model.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#Rowan12,https://doi.org/10.3389/fncom.2012.00002 +Denggui Fan,Combined Effects of Feedforward Inhibition and Excitation in Thalamocortical Circuit on the Transitions of Epileptic Seizures.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#FanDWL17,https://doi.org/10.3389/fncom.2017.00059 +Joel Kaardal,A Low-Rank Method for Characterizing High-Level Neural Computations.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#KaardalTS17,https://doi.org/10.3389/fncom.2017.00068 +Andrés Ortiz,Exploratory graphical models of functional and structural connectivity patterns for Alzheimer's Disease diagnosis.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#OrtizMIGR15,https://doi.org/10.3389/fncom.2015.00132 +Nobuhiko Wagatsuma,Layer-Dependent Attentional Processing by Top-down Signals in a Visual Cortical Microcircuit Model.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#WagatsumaPDF11,https://doi.org/10.3389/fncom.2011.00031 +Naoki Kogo,Is predictive coding theory articulated enough to be testable?,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#KogoT15,https://doi.org/10.3389/fncom.2015.00111 +Birgit Kriener,Dynamics of self-sustained asynchronous-irregular activity in random networks of spiking neurons with strong synapses.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#KrienerETPGE14,https://doi.org/10.3389/fncom.2014.00136 +Oltman Ottes de Wiljes,Modeling spontaneous activity across an excitable epithelium: Support for a coordination scenario of early neural evolution.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#WiljesEBK15,https://doi.org/10.3389/fncom.2015.00110 +Katie A. Ferguson,Experimentally constrained CA1 fast-firing parvalbumin-positive interneuron network models exhibit sharp transitions into coherent high frequency rhythms.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#FergusonSHAW13,https://doi.org/10.3389/fncom.2013.00144 +Vladislav Volman,Computational models of neuron-astrocyte interaction in epilepsy.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#VolmanBS12,https://doi.org/10.3389/fncom.2012.00058 +Ignacio álvarez Illán,Spatial component analysis of MRI data for Alzheimer's disease diagnosis: a Bayesian network approach.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#IllanGRM14,https://doi.org/10.3389/fncom.2014.00156 +Hamed Seyed-Allaei,Phase diagram of spiking neural networks.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Seyed-Allaei15,https://doi.org/10.3389/fncom.2015.00019 +Wenqiong Xue,A multimodal approach for determining brain networks by jointly modeling functional and structural connectivity.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#XueBPM15,https://doi.org/10.3389/fncom.2015.00022 +Yiheng Tu,Decoding Subjective Intensity of Nociceptive Pain from Pre-stimulus and Post-stimulus Brain Activities.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#TuTBH016,https://doi.org/10.3389/fncom.2016.00032 +Siddharth S. Sivakumar,Spherical Harmonics Reveal Standing EEG Waves and Long-Range Neural Synchronization during Non-REM Sleep.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#SivakumarNG16,https://doi.org/10.3389/fncom.2016.00059 +Qawi K. Telesford,Editorial: Complexity and emergence in brain network analyses.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#TelesfordSK15,https://doi.org/10.3389/fncom.2015.00065 +Anna Lisa Mangia,Transcallosal Inhibition during Motor Imagery: Analysis of a Neural Mass Model.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#MangiaULC17,https://doi.org/10.3389/fncom.2017.00057 +Emanuele Olivetti,Classification-Based Prediction of Effective Connectivity Between Timeseries With a Realistic Cortical Network Model.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#OlivettiBBPA18,https://doi.org/10.3389/fncom.2018.00038 +Jianbo Gao,Multiscale entropy analysis of biological signals: a fundamental bi-scaling law.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#GaoHLC15,https://doi.org/10.3389/fncom.2015.00064 +Yali Amit,Recurrent network of perceptrons with three state synapses achieves competitive classification on real inputs.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#AmitW12,https://doi.org/10.3389/fncom.2012.00039 +Maria Constantinou,Bursting Neurons in the Hippocampal Formation Encode Features of LFP Rhythms.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ConstantinouCEK16,https://doi.org/10.3389/fncom.2016.00133 +Ross A. Hammond,A model of food reward learning with dynamic reward exposure.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#HammondOFDLD12,https://doi.org/10.3389/fncom.2012.00082 +Mina Ranjbaran,Hybrid model of the context dependent vestibulo-ocular reflex: implications for vergence-version interactions.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#RanjbaranG15,https://doi.org/10.3389/fncom.2015.00006 +Grazia Ietto-Gillies,The evaluation of research papers in the XXI century. The Open Peer Discussion system of the World Economics Association.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#Ietto-Gillies12,https://doi.org/10.3389/fncom.2012.00054 +Rajesh P. N. Rao,Decision Making Under Uncertainty: A Neural Model Based on Partially Observable Markov Decision Processes.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#Rao10,https://doi.org/10.3389/fncom.2010.00146 +Tiina Manninen,Computational Models for Calcium-Mediated Astrocyte Functions.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#ManninenHL18,https://doi.org/10.3389/fncom.2018.00014 +Andrey Babichev,A Topological Model of the Hippocampal Cell Assembly Network.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#BabichevJMD16,https://doi.org/10.3389/fncom.2016.00050 +John Suckling,A Winding Road: Alzheimer's Disease Increases Circuitous Functional Connectivity Pathways.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#SucklingSCTSWRO15,https://doi.org/10.3389/fncom.2015.00140 +Massimiliano Zanin,The ACE Brain.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ZaninP16,https://doi.org/10.3389/fncom.2016.00122 +Daniel Soudry,History-Dependent Dynamics in a Generic Model of Ion Channels - An Analytic Study.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#SoudryM10,https://doi.org/10.3389/fncom.2010.00003 +Corey M. Thibeault,Using a hybrid neuron in physiologically inspired models of the basal ganglia.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#ThibeaultS13,https://doi.org/10.3389/fncom.2013.00088 +Andrea K. Barreiro,When do microcircuits produce beyond-pairwise correlations?,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#BarreiroGRS14,https://doi.org/10.3389/fncom.2014.00010 +Takumi Sase,Bifurcation Analysis on Phase-Amplitude Cross-Frequency Coupling in Neural Networks with Dynamic Synapses.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#SaseKKA17,https://doi.org/10.3389/fncom.2017.00018 +Mikhail I. Rabinovich,Robust Transient Dynamics and Brain Functions.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#RabinovichV11,https://doi.org/10.3389/fncom.2011.00024 +Thomas Bührmann,Spinal circuits can accommodate interaction torques during multijoint limb movements.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#BuhrmannP14,https://doi.org/10.3389/fncom.2014.00144 +Umut Güçlü,Modeling the Dynamics of Human Brain Activity with Recurrent Neural Networks.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#GucluG17,https://doi.org/10.3389/fncom.2017.00007 +Guiyeom Kang,Effects of antidromic and orthodromic activation of STN afferent axons during DBS in Parkinson's disease: a simulation study.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#KangL14,https://doi.org/10.3389/fncom.2014.00032 +Steve N'Guyen,Saccade learning with concurrent cortical and subcortical basal ganglia loops.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#NGuyenTG14,https://doi.org/10.3389/fncom.2014.00048 +Mattia Rigotti,Internal Representation of Task Rules by Recurrent Dynamics: The Importance of the Diversity of Neural Responses.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#RigottiRWF10,https://doi.org/10.3389/fncom.2010.00024 +Richard Naud,Spike-timing prediction in cortical neurons with active dendrites.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#NaudBG14,https://doi.org/10.3389/fncom.2014.00090 +Ran Manor,Convolutional Neural Network for Multi-Category Rapid Serial Visual Presentation BCI.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ManorG15,https://doi.org/10.3389/fncom.2015.00146 +Bedeho Mesghina Wolde Mender,A self-organizing model of perisaccadic visual receptive field dynamics in primate visual and oculomotor system.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#MenderS15,https://doi.org/10.3389/fncom.2015.00017 +Mehdi Bayati,Self-organization of synchronous activity propagation in neuronal networks driven by local excitation.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#BayatiVAC15,https://doi.org/10.3389/fncom.2015.00069 +Tyler D. Bancroft,TMS-induced neural noise in sensory cortex interferes with short-term memory storage in prefrontal cortex.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#BancroftHHS14,https://doi.org/10.3389/fncom.2014.00023 +Mingming Chen,Control of Absence Seizures by the Thalamic Feed-Forward Inhibition.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ChenGXY17,https://doi.org/10.3389/fncom.2017.00031 +Ana Bengoetxea,Physiological modules for generating discrete and rhythmic movements: component analysis of EMG signals.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#BengoetxeaLHCDC15,https://doi.org/10.3389/fncom.2014.00169 +Fatemeh Yavari,A hypothesis on the role of perturbation size on the human sensorimotor adaptation.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#YavariTD14,https://doi.org/10.3389/fncom.2014.00028 +William C. Lennon Jr.,A spiking network model of cerebellar Purkinje cells and molecular layer interneurons exhibiting irregular firing.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#LennonHY14,https://doi.org/10.3389/fncom.2014.00157 +Niru Maheswaranathan,Emergent bursting and synchrony in computer simulations of neuronal cultures.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#MaheswaranathanFVH12,https://doi.org/10.3389/fncom.2012.00015 +Hafeez Ullah Amin,Classification of EEG Signals Based on Pattern Recognition Approach.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#AminMSSM17,https://doi.org/10.3389/fncom.2017.00103 +Hugo Angleys,The Effects of Capillary Transit Time Heterogeneity (CTH) on the Cerebral Uptake of Glucose and Glucose Analogs: Application to FDG and Comparison to Oxygen Uptake.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#AngleysJO16,https://doi.org/10.3389/fncom.2016.00103 +Alexandre Foncelle,Modulation of Spike-Timing Dependent Plasticity: Towards the Inclusion of a Third Factor in Computational Models.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#FoncelleMJVBBV18,https://doi.org/10.3389/fncom.2018.00049 +Tristan James Webb,Deformation-specific and deformation-invariant visual object recognition: pose vs. identity recognition of people and deforming objects.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#WebbR14,https://doi.org/10.3389/fncom.2014.00037 +Omid Rezai,Modeling the shape hierarchy for visually guided grasping.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#RezaiKMST14,https://doi.org/10.3389/fncom.2014.00132 +Alexander Spröwitz,Kinematic primitives for walking and trotting gaits of a quadruped robot with compliant legs.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#SprowitzATI14,https://doi.org/10.3389/fncom.2014.00027 +Melanie Krüger,The Propagation of Movement Variability in Time: A Methodological Approach for Discrete Movements with Multiple Degrees of Freedom.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#KrugerSE17,https://doi.org/10.3389/fncom.2017.00093 +Charles Capaday,Linear summation of outputs in a balanced network model of motor cortex.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#CapadayV15,https://doi.org/10.3389/fncom.2015.00063 +Tanushree B. Luke,Macroscopic complexity from an autonomous network of networks of theta neurons.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#LukeBS14,https://doi.org/10.3389/fncom.2014.00145 +Saeed Reza Kheradpisheh,Humans and Deep Networks Largely Agree on Which Kinds of Variation Make Object Recognition Harder.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#KheradpishehGGM16,https://doi.org/10.3389/fncom.2016.00092 +Oliver Schoppe,Measuring the Performance of Neural Models.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#SchoppeHWKS16,https://doi.org/10.3389/fncom.2016.00010 +Liron Z. Gruber,Perceptual Dominance in Brief Presentations of Mixed Images: Human Perception vs. Deep Neural Networks.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#GruberHBI18,https://doi.org/10.3389/fncom.2018.00057 +Bojan Mihaljevic,Multi-dimensional classification of GABAergic interneurons with Bayesian network-modeled label uncertainty.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#MihaljevicBBDL14,https://doi.org/10.3389/fncom.2014.00150 +John H. C. Palmer,Associative learning of classical conditioning as an emergent property of spatially extended spiking neural circuits with synaptic plasticity.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#PalmerG14,https://doi.org/10.3389/fncom.2014.00079 +Shirin Mahdavi,Modeling studies for designing transcranial direct current stimulation protocol in Alzheimer's disease.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#MahdaviYGT14,https://doi.org/10.3389/fncom.2014.00072 +Magteld Zeitler,Anti-kindling Induced by Two-Stage Coordinated Reset Stimulation with Weak Onset Intensity.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ZeitlerT16,https://doi.org/10.3389/fncom.2016.00044 +Marco Santello,Neural bases of hand synergies.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#SantelloBJ13,https://doi.org/10.3389/fncom.2013.00023 +Maren Westkott,A Comprehensive Account of Sound Sequence Imitation in the Songbird.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#WestkottP16,https://doi.org/10.3389/fncom.2016.00071 +Deepak Khosla,A neuromorphic system for video object recognition.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#KhoslaCK14,https://doi.org/10.3389/fncom.2014.00147 +Tristan Matthews,The Importance of Spatial Visual Scene Parameters in Predicting Optimal Cone Sensitivities in Routinely Trichromatic Frugivorous Old-World Primates.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#MatthewsOCC18,https://doi.org/10.3389/fncom.2018.00015 +Peter U. Diehl,Factorized Computation: What the Neocortex Can Tell Us About the Future of Computing.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#DiehlMBC18,https://doi.org/10.3389/fncom.2018.00054 +Bocheng Bao,Coexisting Behaviors of Asymmetric Attractors in Hyperbolic-Type Memristor based Hopfield Neural Network.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#BaoQXCWY17,https://doi.org/10.3389/fncom.2017.00081 +Zhenhu Liang,EEG entropy measures in anesthesia.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#LiangWSLVSHL15,https://doi.org/10.3389/fncom.2015.00016 +Si Wu,Neural information processing with dynamical synapses.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#WuWT13,https://doi.org/10.3389/fncom.2013.00188 +Fang Han,Determine Neuronal Tuning Curves by Exploring Optimum Firing Rate Distribution for Information Efficiency.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#HanWF17,https://doi.org/10.3389/fncom.2017.00010 +Razvan V. Florian,Aggregating post-publication peer reviews and ratings.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#Florian12,https://doi.org/10.3389/fncom.2012.00031 +Yanqing Chen,Mechanisms of Winner-Take-All and Group Selection in Neuronal Spiking Networks.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#Chen17,https://doi.org/10.3389/fncom.2017.00020 +Andrea d'Avella,Editorial: Modularity in motor control: from muscle synergies to cognitive action representation.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#dAvellaGISF15,https://doi.org/10.3389/fncom.2015.00126 +Nathan F. Lepora,Sensory Prediction or Motor Control? Application of Marr-Albus Type Models of Cerebellar Function to Classical Conditioning.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#LeporaPYD10,https://doi.org/10.3389/fncom.2010.00140 +Julie A. Wall,Spiking neural network connectivity and its potential for temporal sensory processing and variable binding.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#WallG13,https://doi.org/10.3389/fncom.2013.00182 +Marek Rudnicki,High Entrainment Constrains Synaptic Depression Levels of an In vivo Globular Bushy Cell Model.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#RudnickiH17,https://doi.org/10.3389/fncom.2017.00016 +Ido Zelman,Kinematic decomposition and classification of octopus arm movements.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#ZelmanTYHHF13,https://doi.org/10.3389/fncom.2013.00060 +Narayan Srinivasa,Stable learning of functional maps in self-organizing spiking neural networks with continuous synaptic plasticity.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#SrinivasaJ13,https://doi.org/10.3389/fncom.2013.00010 +Elmar A. Rückert,Learned graphical models for probabilistic planning provide a new class of movement primitives.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#RuckertNTM13,https://doi.org/10.3389/fncom.2012.00097 +Guoqi Li,Hierarchical Chunking of Sequential Memory on Neuromorphic Architecture with Reduced Synaptic Plasticity.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#LiDWWZZLSJS16,https://doi.org/10.3389/fncom.2016.00136 +Claudia Casellato,Distributed cerebellar plasticity implements generalized multiple-scale memory components in real-robot sensorimotor tasks.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#CasellatoAGFDP15,https://doi.org/10.3389/fncom.2015.00024 +Sean L. Simpson,A permutation testing framework to compare groups of brain networks.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#SimpsonLHML13,https://doi.org/10.3389/fncom.2013.00171 +Christian Kempgens,Set-size effects for sampled shapes: experiments and model.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#KempgensLO13,https://doi.org/10.3389/fncom.2013.00067 +Mira Guise,Enhanced polychronization in a spiking network with metaplasticity.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#GuiseKB15,https://doi.org/10.3389/fncom.2015.00009 +Roberto F. Galán,Analysis and Modeling of Ensemble Recordings from Respiratory Pre-Motor Neurons Indicate Changes in Functional Network Architecture after Acute Hypoxia.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#GalanDB10,https://doi.org/10.3389/fncom.2010.00131 +Stacie A. Chvatal,Common muscle synergies for balance and walking.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#ChvatalT13,https://doi.org/10.3389/fncom.2013.00048 +John J. Wade,Biophysically based computational models of astrocyte ~ neuron coupling and their functional significance.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#WadeMHCK13,https://doi.org/10.3389/fncom.2013.00044 +Michael E. Hasselmo,A Handbook for Modeling Hippocampal Circuits.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#Hasselmo11,https://doi.org/10.3389/fncom.2011.00002 +Felix Patzelt,Self-organized critical noise amplification in human closed loop control.,2007,2007,Front. Comput. Neurosci.,,db/journals/ficn/ficn2007.html#PatzeltREP07,https://doi.org/10.3389/neuro.10.004.2007 +Evgeniy Bart,Invariant object recognition based on extended fragments.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#BartH12a,https://doi.org/10.3389/fncom.2012.00056 +Fady Alnajjar,Muscle synergy space: learning model to create an optimal muscle synergy.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#AlnajjarWKS13,https://doi.org/10.3389/fncom.2013.00136 +Friedl De Groote,Task constraints and minimization of muscle effort result in a small number of muscle synergies during gait.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#GrooteJD14,https://doi.org/10.3389/fncom.2014.00115 +Carl Y. Saab,Thalamic Bursts and the Epic Pain Model.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#SaabB17,https://doi.org/10.3389/fncom.2016.00147 +Cristiano Alessandro,A computational analysis of motor synergies by dynamic response decomposition.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#AlessandroCd14,https://doi.org/10.3389/fncom.2013.00191 +Si Li,Coordinated Alpha and Gamma Control of Muscles and Spindles in Movement and Posture.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#LiZHHRNL15,https://doi.org/10.3389/fncom.2015.00122 +Mark R. Witcher,Astroglial Networks and Implications for Therapeutic Neuromodulation of Epilepsy.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#WitcherE12,https://doi.org/10.3389/fncom.2012.00061 +Aurel A. Lazar,Volterra dendritic stimulus processors and biophysical spike generators with intrinsic noise sources.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#LazarZ14,https://doi.org/10.3389/fncom.2014.00095 +Jacob G. Martin,Modeling multisensory enhancement with self-organizing maps.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#MartinMA09,https://doi.org/10.3389/neuro.10.008.2009 +Maura Casadio,Learning to push and learning to move: the adaptive control of contact forces.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#CasadioPM15,https://doi.org/10.3389/fncom.2015.00118 +Jinglin Li,Peripheral Processing Facilitates Optic Flow-Based Depth Perception.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#LiLE16,https://doi.org/10.3389/fncom.2016.00111 +Michael Krumin,Correlation-Based Analysis and Generation of Multiple Spike Trains Using Hawkes Models with an Exogenous Input.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#KruminRS10,https://doi.org/10.3389/fncom.2010.00147 +Fatemeh Bakouie,"Bifurcation analysis of ""synchronization fluctuation"": a diagnostic measure of brain epileptic states.",2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#BakouieMGT14,https://doi.org/10.3389/fncom.2014.00011 +Or P. Mendels,Relating the Structure of Noise Correlations in Macaque Primary Visual Cortex to Decoder Performance.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#MendelsS18,https://doi.org/10.3389/fncom.2018.00012 +Kenneth J. Hayworth,Dynamically Partitionable Autoassociative Networks as a Solution to the Neural Binding Problem.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#Hayworth12,https://doi.org/10.3389/fncom.2012.00073 +Dimitrije Markovic,Comparative Analysis of Behavioral Models for Adaptive Learning in Changing Environments.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#MarkovicK16,https://doi.org/10.3389/fncom.2016.00033 +David Logan,Using a System Identification Approach to Investigate Subtask Control during Human Locomotion.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#LoganKJ17,https://doi.org/10.3389/fncom.2016.00146 +Peter F. Rowat,The ISI distribution of the stochastic Hodgkin-Huxley neuron.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#RowatG14,https://doi.org/10.3389/fncom.2014.00111 +Michel Vidal-Naquet,Spatially invariant computations in stereoscopic vision.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#Vidal-NaquetG12,https://doi.org/10.3389/fncom.2012.00047 +Bingyu Pan,Alterations of Muscle Synergies During Voluntary Arm Reaching Movement in Subacute Stroke Survivors at Different Levels of Impairment.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#PanSXHWHLHZ18,https://doi.org/10.3389/fncom.2018.00069 +Massimiliano Zanin,Efficient neural codes can lead to spurious synchronization.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#ZaninP13,https://doi.org/10.3389/fncom.2013.00125 +Rogier Min,The computational power of astrocyte mediated synaptic plasticity.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#MinSN12,https://doi.org/10.3389/fncom.2012.00093 +Mikhail Katkov,Word length effect in free recall of randomly assembled word lists.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#KatkovRT14,https://doi.org/10.3389/fncom.2014.00129 +Andrew Oster,Mechanisms for multiple activity modes of VTA dopamine neurons.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#OsterGF15,https://doi.org/10.3389/fncom.2015.00095 +Jonas Kubilius,A conceptual framework of computations in mid-level vision.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#KubiliusWB14,https://doi.org/10.3389/fncom.2014.00158 +Irene Elices,Asymmetry Factors Shaping Regular and Irregular Bursting Rhythms in Central Pattern Generators.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ElicesV17,https://doi.org/10.3389/fncom.2017.00009 +Emilio Bizzi,The neural origin of muscle synergies.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#BizziC13,https://doi.org/10.3389/fncom.2013.00051 +Taher Abbas Shangari,Multisensory integration using dynamical Bayesian networks.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ShangariFBG15,https://doi.org/10.3389/fncom.2015.00058 +Tzvetomir Tzvetanov,Erratum: A single theoretical framework for circular features processing in humans: orientation and direction of motion compared.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#Tzvetanov13,https://doi.org/10.3389/fncom.2013.00028 +Chou Po Hung,Corrigendum: Correlated activity supports efficient cortical processing.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#HungCCLL15a,https://doi.org/10.3389/fncom.2015.00025 +Thomas J. Anastasio,Computational search for hypotheses concerning the endocannabinoid contribution to the extinction of fear conditioning.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#Anastasio13,https://doi.org/10.3389/fncom.2013.00074 +Mina Shahi,Serial Spike Time Correlations Affect Probability Distribution of Joint Spike Events.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ShahiVP16,https://doi.org/10.3389/fncom.2016.00139 +Rodrigo Gogui Alonso,A circular model for song motor control in Serinus canaria.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#AlonsoTAGM15,https://doi.org/10.3389/fncom.2015.00041 +Zachary P. Kilpatrick,Short term synaptic depression improves information transfer in perceptual multistability.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#Kilpatrick13,https://doi.org/10.3389/fncom.2013.00085 +M. Hongchul Sohn,Suboptimal Muscle Synergy Activation Patterns Generalize their Motor Function across Postures.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#SohnT16,https://doi.org/10.3389/fncom.2016.00007 +Alessandra Paffi,Restoring the encoding properties of a stochastic neuron model by an exogenous noise.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#PaffiCADL15a,https://doi.org/10.3389/fncom.2015.00042 +Praveen Sethupathy,A model of electrophysiological heterogeneity in periglomerular cells.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#SethupathyRLC13,https://doi.org/10.3389/fncom.2013.00049 +Michael John O'Brien,A novel analytical characterization for short-term plasticity parameters in spiking neural networks.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#OBrienTS14,https://doi.org/10.3389/fncom.2014.00148 +Ho Ka Chan,Burst Firing Enhances Neural Output Correlation.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ChanYZN16,https://doi.org/10.3389/fncom.2016.00042 +Behnam Kia,Nonlinear dynamics based digital logic and circuits.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#KiaLD15,https://doi.org/10.3389/fncom.2015.00049 +Takashi Hayakawa,A biologically plausible learning rule for the Infomax on recurrent neural networks.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#HayakawaKA14,https://doi.org/10.3389/fncom.2014.00143 +Moritz Augustin,How adaptation shapes spike rate oscillations in recurrent neuronal networks.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#AugustinLO13,https://doi.org/10.3389/fncom.2013.00009 +Simon Nougaret,First evidence of a hyperdirect prefrontal pathway in the primate: precise organization for new insights on subthalamic nucleus functions.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#NougaretMDBP13,https://doi.org/10.3389/fncom.2013.00135 +Mohammadkarim Saeedghalati,Modeling spatio-temporal dynamics of network damage and network recovery.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#SaeedghalatiA15,https://doi.org/10.3389/fncom.2015.00130 +Yaki Stern,Brain Network Activation Analysis Utilizing Spatiotemporal Features for Event Related Potentials Classification.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#SternRG16,https://doi.org/10.3389/fncom.2016.00137 +Oran Zohar,A Readout Mechanism for Latency Codes.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ZoharS16,https://doi.org/10.3389/fncom.2016.00107 +Joshua I. Glaser,The Development and Analysis of Integrated Neuroscience Data.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#GlaserK16,https://doi.org/10.3389/fncom.2016.00011 +Fatemeh Hadaeghi,"Does ""Crisis-Induced Intermittency"" Explain Bipolar Disorder Dynamics?",2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#HadaeghiGM13,https://doi.org/10.3389/fncom.2013.00116 +Diego Lozano-Soldevilla,On the Physiological Modulation and Potential Mechanisms Underlying Parieto-Occipital Alpha Oscillations.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#Lozano-Soldevilla18,https://doi.org/10.3389/fncom.2018.00023 +Sébastien Joucla,Current approaches to model extracellular electrical neural microstimulation.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#JouclaGY14,https://doi.org/10.3389/fncom.2014.00013 +Yanli Yang,Epileptic Seizure Prediction Based on Permutation Entropy.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#YangZNLCWYMX18,https://doi.org/10.3389/fncom.2018.00055 +Evgeniy Bart,Invariant Recognition of Visual Objects: Some Emerging Computational Principles.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#BartH12,https://doi.org/10.3389/fncom.2012.00060 +Julien Vitay,A computational model of basal ganglia and its role in memory retrieval in rewarded visual memory tasks.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#VitayH10,https://doi.org/10.3389/fncom.2010.00013 +Rui P. Costa,Probabilistic inference of short-term synaptic plasticity in neocortical microcircuits.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#CostaSR13,https://doi.org/10.3389/fncom.2013.00075 +Daqing Guo,Periodic Visual Stimulation Induces Resting-State Brain Network Reconfiguration.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#GuoGZLX0Y18,https://doi.org/10.3389/fncom.2018.00021 +Sebastien Louis,Surrogate Spike Train Generation Through Dithering in Operational Time.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#LouisGGD10,https://doi.org/10.3389/fncom.2010.00127 +Ramesh Srinivasan,Top-Down Influences on Local Networks: Basic Theory with Experimental Implications.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#SrinivasanTN13,https://doi.org/10.3389/fncom.2013.00029 +Matthew Lawrence Stanley,Defining nodes in complex brain networks.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#StanleyMPLBL13,https://doi.org/10.3389/fncom.2013.00169 +Netta Haroush,Slow Dynamics in Features of Synchronized Neural Network Responses.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#HaroushM15,https://doi.org/10.3389/fncom.2015.00040 +Wilten Nicola,Obtaining Arbitrary Prescribed Mean Field Dynamics for Recurrently Coupled Networks of Type-I Spiking Neurons with Analytically Determined Weights.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#NicolaTS16,https://doi.org/10.3389/fncom.2016.00015 +Manuel Marin,The dendritic location of the L-type current and its deactivation by the somatic AHP current both contribute to firing bistability in motoneurons.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#MarinZM14,https://doi.org/10.3389/fncom.2014.00004 +Kunlin Wei,Uncertainty of feedback and state estimation determines the speed of motor adaptation.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#WeiK10,https://doi.org/10.3389/fncom.2010.00011 +Tzvetomir Tzvetanov,A Single Theoretical Framework for Circular Features Processing in Humans: Orientation and Direction of Motion Compared.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#Tzvetanov12,https://doi.org/10.3389/fncom.2012.00028 +Tom Theys,Shape representations in the primate dorsal visual stream.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#TheysRLJ15,https://doi.org/10.3389/fncom.2015.00043 +Stefano Recanatesi,Neural Network Model of Memory Retrieval.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#RecanatesiKRT15,https://doi.org/10.3389/fncom.2015.00149 +Julien Modolo,Neural mass modeling of power-line magnetic fields effects on brain activity.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#ModoloTL13,https://doi.org/10.3389/fncom.2013.00034 +Alicia Fernández-Sotos,Influence of Tempo and Rhythmic Unit in Musical Emotion Regulation.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#Fernandez-Sotos16,https://doi.org/10.3389/fncom.2016.00080 +Hugo Gabriel Eyherabide,Burst firing is a neural code in an insect auditory system.,2008,2008,Front. Comput. Neurosci.,,db/journals/ficn/ficn2008.html#EyherabideRHS08,https://doi.org/10.3389/neuro.10.003.2008 +Fabian Schrodt,Embodied learning of a generative neural model for biological motion perception and inference.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#SchrodtLNB15,https://doi.org/10.3389/fncom.2015.00079 +Kathleen Vincent,Extracting functionally feedforward networks from a population of spiking neurons.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#VincentTT12,https://doi.org/10.3389/fncom.2012.00086 +Francesco Cavarretta,Glomerular and Mitral-Granule Cell Microcircuits Coordinate Temporal and Spatial Information Processing in the Olfactory Bulb.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#CavarrettaMHSM16,https://doi.org/10.3389/fncom.2016.00067 +Claudio Pizzolato,Bioinspired Technologies to Connect Musculoskeletal Mechanobiology to the Person for Training and Rehabilitation.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#PizzolatoLBCZBS17,https://doi.org/10.3389/fncom.2017.00096 +Dongil Chung,Computational modeling of the negative priming effect based on inhibition patterns and working memory.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#ChungRLJ13,https://doi.org/10.3389/fncom.2013.00166 +Michael A. Buice,Generalized activity equations for spiking neural network dynamics.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#BuiceC13,https://doi.org/10.3389/fncom.2013.00162 +Frederic Zubler,An Instruction Language for Self-Construction in the Context of Neural Networks.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#ZublerHPWCD11,https://doi.org/10.3389/fncom.2011.00057 +Amir Hossein Azizi,A computational model for preplay in the hippocampus.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#AziziWC13,https://doi.org/10.3389/fncom.2013.00161 +Milad Lankarany,Simultaneous Bayesian Estimation of Excitatory and Inhibitory Synaptic Conductances by Exploiting Multiple Recorded Trials.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#LankaranyHLT16,https://doi.org/10.3389/fncom.2016.00110 +Basabdatta Sen Bhattacharya,Causal Role of Thalamic Interneurons in Brain State Transitions: A Study Using a Neural Mass Model Implementing Synaptic Kinetics.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#BhattacharyaBOT16,https://doi.org/10.3389/fncom.2016.00115 +Liyuan Zhang,Transition Dynamics of a Dentate Gyrus-CA3 Neuronal Network during Temporal Lobe Epilepsy.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ZhangFW17,https://doi.org/10.3389/fncom.2017.00061 +Luciano da Fontoura Costa,Communication Structure of Cortical Networks.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#CostaBA11,https://doi.org/10.3389/fncom.2011.00006 +João Couto,Kilohertz Frequency Deep Brain Stimulation Is Ineffective at Regularizing the Firing of Model Thalamic Neurons.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#CoutoG16,https://doi.org/10.3389/fncom.2016.00022 +Thomas S. McTavish,Mitral cell spike synchrony modulated by dendrodendritic synapse location.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#McTavishMSH12,https://doi.org/10.3389/fncom.2012.00003 +Michael A. Carlin,Modeling attention-driven plasticity in auditory cortical receptive fields.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#CarlinE15,https://doi.org/10.3389/fncom.2015.00106 +Jung H. Lee,A Computational Analysis of the Function of Three Inhibitory Cell Types in Contextual Visual Processing.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#LeeKM17,https://doi.org/10.3389/fncom.2017.00028 +Christopher M. Laine,The Dynamics of Voluntary Force Production in Afferented Muscle Influence Involuntary Tremor.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#LaineNC16,https://doi.org/10.3389/fncom.2016.00086 +Yanru Bai,Normalization of Pain-Evoked Neural Responses Using Spontaneous EEG Improves the Performance of EEG-Based Cross-Individual Pain Prediction.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#BaiHTTH016,https://doi.org/10.3389/fncom.2016.00031 +Wilfredo Blanco,The Effects of GABAergic Polarity Changes on Episodic Neural Network Activity in Developing Neural Systems.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#BlancoBT17,https://doi.org/10.3389/fncom.2017.00088 +Michael C. Trent,Learning from the value of your mistakes: evidence for a risk-sensitive process in movement adaptation.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#TrentA13,https://doi.org/10.3389/fncom.2013.00118 +Jean-Pierre Eckmann,Leaders of Neuronal Cultures in a Quorum Percolation Model.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#EckmannMSTZ10,https://doi.org/10.3389/fncom.2010.00132 +Aleena Shaukat,Statistical Evaluation of Waveform Collapse Reveals Scale-Free Properties of Neuronal Avalanches.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ShaukatT16,https://doi.org/10.3389/fncom.2016.00029 +Leyla Isik,Learning and disrupting invariance in visual recognition with a temporal association rule.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#IsikLP12,https://doi.org/10.3389/fncom.2012.00037 +Jorge F. Mejías,Differential effects of excitatory and inhibitory heterogeneity on the gain and asynchronous state of sparse cortical networks.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#MejiasL14,https://doi.org/10.3389/fncom.2014.00107 +Arne-Freerk Meyer,Temporal variability of spectro-temporal receptive fields in the anesthetized auditory cortex.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#MeyerDOA14,https://doi.org/10.3389/fncom.2014.00165 +Itsuki Yamashita,Recurrent network for multisensory integration-identification of common sources of audiovisual stimuli.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#YamashitaKIOO13,https://doi.org/10.3389/fncom.2013.00101 +Ali Borji,Optimal attentional modulation of a neural population.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#BorjiI14,https://doi.org/10.3389/fncom.2014.00034 +Antonio Jose Rodríguez-Sánchez,Editorial: Hierarchical Object Representations in the Visual Cortex and Computer Vision.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Rodriguez-Sanchez15,https://doi.org/10.3389/fncom.2015.00142 +Allan D. Coop,Dendritic excitability modulates dendritic information processing in a Purkinje cell model.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#CoopCS10,https://doi.org/10.3389/fncom.2010.00006 +Karthik Soman,An Oscillatory Neural Autoencoder Based on Frequency Modulation and Multiplexing.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#SomanMC18,https://doi.org/10.3389/fncom.2018.00052 +Yaoyu Zhang,Spike-Triggered Regression for Synaptic Connectivity Reconstruction in Neuronal Networks.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ZhangXZC17,https://doi.org/10.3389/fncom.2017.00101 +Yan Chastagnier,Image Processing for Bioluminescence Resonance Energy Transfer Measurement - BRET-Analyzer.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#ChastagnierMHP18,https://doi.org/10.3389/fncom.2017.00118 +Arnold Ziesche,Brain circuits underlying visual stability across eye movements - converging evidence for a neuro-computational model of area LIP.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#ZiescheH14,https://doi.org/10.3389/fncom.2014.00025 +José González-Vargas,A predictive model of muscle excitations based on muscle modularity for a large repertoire of human locomotion conditions.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Gonzalez-Vargas15,https://doi.org/10.3389/fncom.2015.00114 +Simona Olmi,Linear stability in networks of pulse-coupled neurons.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#OlmiPT14,https://doi.org/10.3389/fncom.2014.00008 +Peter U. Diehl,Unsupervised learning of digit recognition using spike-timing-dependent plasticity.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Diehl015,https://doi.org/10.3389/fncom.2015.00099 +David R. Badcock,Detecting global form: separate processes required for Glass and radial frequency patterns.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#BadcockAD13,https://doi.org/10.3389/fncom.2013.00053 +Matt Singh,A simple transfer function for nonlinear dendritic integration.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#SinghZ15,https://doi.org/10.3389/fncom.2015.00098 +Georgios Detorakis,Structure of receptive fields in a computational model of area 3b of primary sensory cortex.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#DetorakisR14,https://doi.org/10.3389/fncom.2014.00076 +Basabdatta Sen Bhattacharya,Implementing the cellular mechanisms of synaptic transmission in a neural mass model of the thalamo-cortical circuitry.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#Bhattacharya13,https://doi.org/10.3389/fncom.2013.00081 +Jaap van Pelt,Estimating neuronal connectivity from axonal and dendritic density fields.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#PeltO13,https://doi.org/10.3389/fncom.2013.00160 +Cheng Ly,Cellular and Circuit Mechanisms Maintain Low Spike Co-Variability and Enhance Population Coding in Somatosensory Cortex.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#LyMD12,https://doi.org/10.3389/fncom.2012.00007 +Tao Wang,A Phenomenological Synapse Model for Asynchronous Neurotransmitter Release.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#WangYZSRW16,https://doi.org/10.3389/fncom.2015.00153 +Natasha A. Cayco-Gajic,Triplet correlations among similarly tuned cells impact population coding.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Cayco-GajicZS15,https://doi.org/10.3389/fncom.2015.00057 +Feibiao Zhan,Response of Electrical Activity in an Improved Neuron Model under Electromagnetic Radiation and Noise.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ZhanL17,https://doi.org/10.3389/fncom.2017.00107 +Tjeerd Olde Scheper,Dynamic Hebbian Cross-Correlation Learning Resolves the Spike Timing Dependent Plasticity Conundrum.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#ScheperMMPO18,https://doi.org/10.3389/fncom.2017.00119 +José Luis Carrillo-Medina,Implementing Signature Neural Networks with Spiking Neurons.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#Carrillo-Medina16,https://doi.org/10.3389/fncom.2016.00132 +Maciej Labecki,Nonlinear Origin of SSVEP Spectra - A Combined Experimental and Modeling Study.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#LabeckiKBSBS16,https://doi.org/10.3389/fncom.2016.00129 +Franciszek Rakowski,Synaptic polarity of the interneuron circuit controlling C. elegans locomotion.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#RakowskiSSK13,https://doi.org/10.3389/fncom.2013.00128 +Benjamin A. Teplitzky,Model-Based Comparison of Deep Brain Stimulation Array Functionality with Varying Number of Radial Electrodes and Machine Learning Feature Sets.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#TeplitzkyZXJ16,https://doi.org/10.3389/fncom.2016.00058 +Stephan Tschechne,Hierarchical representation of shapes in visual cortex - from localized features to figural shape segregation.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#TschechneN14,https://doi.org/10.3389/fncom.2014.00093 +Tal Yarkoni,Designing next-generation platforms for evaluating scientific output: what scientists can learn from the social web.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#Yarkoni12,https://doi.org/10.3389/fncom.2012.00072 +Yifei Guo,A Brain Signature to Differentiate Acute and Chronic Pain in Rats.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#GuoWSW16,https://doi.org/10.3389/fncom.2016.00041 +Yuwei Cui,The HTM Spatial Pooler - A Neocortical Algorithm for Online Sparse Distributed Coding.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#CuiAH17,https://doi.org/10.3389/fncom.2017.00111 +Dipanjan Roy,Inferring network properties of cortical neurons with synaptic coupling and parameter dispersion.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#RoyJ13,https://doi.org/10.3389/fncom.2013.00020 +Young-Gyu Yoon,Feasibility of 3D Reconstruction of Neural Morphology Using Expansion Microscopy and Barcode-Guided Agglomeration.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#YoonDWCMB17,https://doi.org/10.3389/fncom.2017.00097 +Arvind Kumar,Frequency-Dependent Changes in NMDAR-Dependent Synaptic Plasticity.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#KumarM11,https://doi.org/10.3389/fncom.2011.00038 +Yi Yuan,A Phase-Locking Analysis of Neuronal Firing Rhythms with Transcranial Magneto-Acoustical Stimulation Based on the Hodgkin-Huxley Neuron Model.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#YuanPCWL17,https://doi.org/10.3389/fncom.2017.00001 +Maciej Kaminski,Measures of Coupling between Neural Populations Based on Granger Causality Principle.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#KaminskiBKB16,https://doi.org/10.3389/fncom.2016.00114 +Niceto R. Luque,Distributed Cerebellar Motor Learning: A Spike-Timing-Dependent Plasticity Model.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#LuqueGNCDR16,https://doi.org/10.3389/fncom.2016.00017 +Leonhard Lücken,Desynchronization boost by non-uniform coordinated reset stimulation in ensembles of pulse-coupled neurons.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#LuckenYPT13,https://doi.org/10.3389/fncom.2013.00063 +Catalina Vich,Estimation of Synaptic Conductances in Presence of Nonlinear Effects Caused by Subthreshold Ionic Currents.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#VichBGD17,https://doi.org/10.3389/fncom.2017.00069 +Ching-Chang Kuo,Dynamic Responses in Brain Networks to Social Feedback: A Dual EEG Acquisition Study in Adolescent Couples.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#KuoHETD17,https://doi.org/10.3389/fncom.2017.00046 +Brian Colder,The basal ganglia select the expected sensory input used for predictive coding.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Colder15,https://doi.org/10.3389/fncom.2015.00119 +Ioannis Delis,A methodology for assessing the effect of correlations among muscle synergy activations on task-discriminating information.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#DelisBPP13a,https://doi.org/10.3389/fncom.2013.00054 +Wu-Jie Yuan,A model of microsaccade-related neural responses induced by short-term depression in thalamocortical synapses.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#YuanDSZ13,https://doi.org/10.3389/fncom.2013.00047 +Benjamin D. Evans,Transform-invariant visual representations in self-organizing spiking neural networks.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#EvansS12,https://doi.org/10.3389/fncom.2012.00046 +Jun-Wei Mao,Dynamic Network Connectivity Analysis to Identify Epileptogenic Zones Based on Stereo-Electroencephalography.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#MaoYLLXZ16,https://doi.org/10.3389/fncom.2016.00113 +Ioannis Delis,Quantitative evaluation of muscle synergy models: a single-trial task decoding approach.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#DelisBPP13,https://doi.org/10.3389/fncom.2013.00008 +William H. Alexander,A general role for medial prefrontal cortex in event prediction.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#AlexanderB14,https://doi.org/10.3389/fncom.2014.00069 +Shouliang Qi,Multiple Frequency Bands Analysis of Large Scale Intrinsic Brain Networks and Its Application in Schizotypal Personality Disorder.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#QiGSTXSW18,https://doi.org/10.3389/fncom.2018.00064 +Hanin H. Alahmadi,Classifying Cognitive Profiles Using Machine Learning with Privileged Information in Mild Cognitive Impairment.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#AlahmadiSFLBKT16,https://doi.org/10.3389/fncom.2016.00117 +Brent Doiron,Balanced neural architecture and the idling brain.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#DoironL14,https://doi.org/10.3389/fncom.2014.00056 +Roland Potthast,Dimensional reduction for the inverse problem of neural field theory.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#PotthastG09,https://doi.org/10.3389/neuro.10.017.2009 +Carlos Toledo-Suárez,Liquid computing on and off the edge of chaos with a striatal microcircuit.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Toledo-SuarezDM14,https://doi.org/10.3389/fncom.2014.00130 +Francesco Paolo Battaglia,The Construction of Semantic Memory: Grammar-Based Representations Learned from Relational Episodic Information.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#BattagliaP11,https://doi.org/10.3389/fncom.2011.00036 +Massimo Sartori,A musculoskeletal model of human locomotion driven by a low dimensional set of impulsive excitation primitives.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#SartoriGLF13,https://doi.org/10.3389/fncom.2013.00079 +Christoph Metzner,Multifactorial Modeling of Impairment of Evoked Gamma Range Oscillations in Schizophrenia.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#MetznerSZ16,https://doi.org/10.3389/fncom.2016.00089 +Tiina Manninen,Postsynaptic Signal Transduction Models for Long-Term Potentiation and Depression.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#ManninenHKBL10,https://doi.org/10.3389/fncom.2010.00152 +Dagmar Sternad,Transitions between discrete and rhythmic primitives in a unimanual task.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#SternadMCDDH13,https://doi.org/10.3389/fncom.2013.00090 +Kevin Lloyd,Learning to use working memory: a reinforcement learning gating model of rule acquisition in rats.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#LloydBJB12,https://doi.org/10.3389/fncom.2012.00087 +Valentin Senft,Inhibiting Basal Ganglia Regions Reduces Syllable Sequencing Errors in Parkinson's Disease: A Computer Simulation Study.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#SenftSBEK18,https://doi.org/10.3389/fncom.2018.00041 +Qiulei Dong,Comparison of IT Neural Response Statistics with Simulations.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#DongLH17,https://doi.org/10.3389/fncom.2017.00060 +Ulrich Pöschl,Multi-Stage Open Peer Review: Scientific Evaluation Integrating the Strengths of Traditional Peer Review with the Virtues of Transparency and Self-Regulation.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#Poschl12,https://doi.org/10.3389/fncom.2012.00033 +Mikhail I. Rabinovich,Chunking dynamics: heteroclinics in mind.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#RabinovichVTA14,https://doi.org/10.3389/fncom.2014.00022 +Sirko Straube,How to evaluate an agent's behavior to infrequent events? - Reliable performance estimation insensitive to class distribution.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#StraubeK14,https://doi.org/10.3389/fncom.2014.00043 +Jose M. Benita,Synaptic depression and slow oscillatory activity in a biophysical network model of the cerebral cortex.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#BenitaGDS12,https://doi.org/10.3389/fncom.2012.00064 +Suyu Liu,Disinhibition-Induced Delayed Onset of Epileptic Spike-Wave Discharges in a Five Variable Model of Cortex and Thalamus.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#LiuWF16,https://doi.org/10.3389/fncom.2016.00028 +Duluxan Sritharan,Fluctuating Inhibitory Inputs Promote Reliable Spiking at Theta Frequencies in Hippocampal Interneurons.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#SritharanS12,https://doi.org/10.3389/fncom.2012.00030 +Luca Puviani,A System Computational Model of Implicit Emotional Learning.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#PuvianiR16,https://doi.org/10.3389/fncom.2016.00054 +George Mather,Interactions between motion and form processing in the human visual system.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#MatherPMCC13,https://doi.org/10.3389/fncom.2013.00065 +Yaniv Morgenstern,Properties of artificial neurons that report lightness based on accumulated experience with luminance.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#MorgensternRMP14,https://doi.org/10.3389/fncom.2014.00134 +Shunta Togo,Uncontrolled Manifold Reference Feedback Control of Multi-Joint Robot Arms.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#TogoKU16,https://doi.org/10.3389/fncom.2016.00069 +Guadalupe García,Building Blocks of Self-Sustained Activity in a Simple Deterministic Model of Excitable Neural Networks.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#LHH12,https://doi.org/10.3389/fncom.2012.00050 +Andre L. Luvizotto,A wavelet-based neural model to optimize and read out a temporal population code.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#LuvizottoRV12,https://doi.org/10.3389/fncom.2012.00021 +Stefan Schinkel,Order Patterns Networks (ORPAN) - a method to estimate time-evolving functional connectivity from multivariate time series.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#SchinkelZDSK12,https://doi.org/10.3389/fncom.2012.00091 +Hector James Ingram Page,Architectural constraints are a major factor reducing path integration accuracy in the rat head direction cell system.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#PageWS15,https://doi.org/10.3389/fncom.2015.00010 +Takuma Tanaka,Information maximization principle explains the emergence of complex cell-like neurons.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#TanakaN13,https://doi.org/10.3389/fncom.2013.00165 +Zedong Bi,Spike Pattern Structure Influences Synaptic Efficacy Variability under STDP and Synaptic Homeostasis. II: Spike Shuffling Methods on LIF Networks.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#BiZ16a,https://doi.org/10.3389/fncom.2016.00083 +Puja Malik,An Assessment of Six Muscle Spindle Models for Predicting Sensory Information during Human Wrist Movements.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#MalikJJ16,https://doi.org/10.3389/fncom.2015.00154 +Sushmita L. Allam,A Computational Model to Investigate Astrocytic Glutamate Uptake Influence on Synaptic Transmission and Neuronal Spiking.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#AllamGBLAGBBB12,https://doi.org/10.3389/fncom.2012.00070 +Adrián Colomer Granero,A Comparison of Physiological Signal Analysis Techniques and Classifiers for Automatic Emotional Evaluation of Audiovisual Contents.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#GraneroFOPAR16,https://doi.org/10.3389/fncom.2016.00074 +Luyan Zhang,Time-Varying Networks of Inter-Ictal Discharging Reveal Epileptogenic Zone.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ZhangLLSPDSSYX17,https://doi.org/10.3389/fncom.2017.00077 +Guillaume Hennequin,STDP in Adaptive Neurons Gives Close-To-Optimal Information Transmission.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#HennequinGP10,https://doi.org/10.3389/fncom.2010.00143 +Sarah M. Parker,Unsupervised invariance learning of transformation sequences in a model of object recognition yields selectivity for non-accidental properties.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ParkerS15,https://doi.org/10.3389/fncom.2015.00115 +Barak Blumenfeld,An algorithm for the analysis of temporally structured multidimensional measurements.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#Blumenfeld10,https://doi.org/10.3389/neuro.10.028.2009 +Cristóbal Moënne-Loccoz,Modeling Search Behaviors during the Acquisition of Expertise in a Sequential Decision-Making Task.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#Moenne-LoccozVL17,https://doi.org/10.3389/fncom.2017.00080 +Daniel Malagarriga,Synchronization-based computation through networks of coupled oscillators.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#MalagarrigaGVBG15,https://doi.org/10.3389/fncom.2015.00097 +Markus M. Knodel,Synaptic bouton properties are tuned to best fit the prevailing firing pattern.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#KnodelGGBGWSQ14,https://doi.org/10.3389/fncom.2014.00101 +Shouliang Qi,Structural Brain Network: What is the Effect of LiFE Optimization of Whole Brain Tractography?,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#QiMNRO16,https://doi.org/10.3389/fncom.2016.00012 +Rujia Yan,Coding Properties of Mouse Retinal Ganglion Cells with Dual-Peak Patterns with Respect to Stimulus Intervals.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#YanGZL16,https://doi.org/10.3389/fncom.2016.00075 +Pauline M. Hilt,Space-by-Time Modular Decomposition Effectively Describes Whole-Body Muscle Activity During Upright Reaching in Various Directions.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#HiltDPB18,https://doi.org/10.3389/fncom.2018.00020 +Ekaterina Brocke,Efficient Integration of Coupled Electrical-Chemical Systems in Multiscale Neuronal Simulations.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#BrockeBDKH16,https://doi.org/10.3389/fncom.2016.00097 +Simon A. Overduin,Muscle synergies evoked by microstimulation are preferentially encoded during behavior.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#OverduindCB14,https://doi.org/10.3389/fncom.2014.00020 +Khanh Dao Duc,Synaptic dynamics and neuronal network connectivity are reflected in the distribution of * in Up states.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#DucPCEKH15,https://doi.org/10.3389/fncom.2015.00096 +Axel Hutt,The anesthetic propofol shifts the frequency of maximum spectral power in EEG during general anesthesia: analytical insights from a linear model.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#Hutt13,https://doi.org/10.3389/fncom.2013.00002 +Carlo R. Laing,Bumps in Small-World Networks.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#Laing16,https://doi.org/10.3389/fncom.2016.00053 +Francesco Lacquaniti,Evolutionary and Developmental Modules.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#LacquanitiIdZZ13,https://doi.org/10.3389/fncom.2013.00061 +Mauro Ursino,Development of a Bayesian Estimator for Audio-Visual Integration: A Neurocomputational Study.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#UrsinoCPMC17,https://doi.org/10.3389/fncom.2017.00089 +Hamed Bahmani,Distorted Low-Level Visual Features Affect Saliency-Based Visual Attention.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#BahmaniW16,https://doi.org/10.3389/fncom.2016.00124 +Mark Stephen Rowan,Electrostimulation to reduce synaptic scaling driven progression of Alzheimer's disease.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#RowanNL14,https://doi.org/10.3389/fncom.2014.00039 +Elham Bayat Mokhtari,Data Driven Models of Short-Term Synaptic Plasticity.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#MokhtariLS18,https://doi.org/10.3389/fncom.2018.00032 +Julien Modolo,"Using ""Smart Stimulators"" to Treat Parkinson's Disease: Re-Engineering Neurostimulation Devices.",2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#ModoloBTL12,https://doi.org/10.3389/fncom.2012.00069 +Gerald E. Loeb,Major remaining gaps in models of sensorimotor systems.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#LoebT15,https://doi.org/10.3389/fncom.2015.00070 +Iain Hepburn,Efficient calculation of the quasi-static electrical potential on a tetrahedral mesh and its implementation in STEPS.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#HepburnCS13,https://doi.org/10.3389/fncom.2013.00129 +Alexey Pimashkin,Spiking Signatures of Spontaneous Activity Bursts in Hippocampal Cultures.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#PimashkinKSKMK11,https://doi.org/10.3389/fncom.2011.00046 +Markus Butz,A model for cortical rewiring following deafferentation and focal stroke.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#ButzOW09,https://doi.org/10.3389/neuro.10.010.2009 +Tommaso Fellin,Astrocyte regulation of sleep circuits: experimental and modeling perspectives.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#FellinEPBH12,https://doi.org/10.3389/fncom.2012.00065 +Jules Lallouette,Sparse short-distance connections enhance calcium wave propagation in a 3D model of astrocyte networks.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#LallouettePBB14,https://doi.org/10.3389/fncom.2014.00045 +Ji-Chul Kim,Signal Processing in Periodically Forced Gradient Frequency Neural Networks.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#KimL15,https://doi.org/10.3389/fncom.2015.00152 +Linling Li,Placebo Analgesia Changes Alpha Oscillations Induced by Tonic Muscle Pain: EEG Frequency Analysis Including Data during Pain Evaluation.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#LiWKLYZXQ16,https://doi.org/10.3389/fncom.2016.00045 +Maryam Beigzadeh,Can cellular automata be a representative model for visual perception dynamics?,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#BeigzadehGG13,https://doi.org/10.3389/fncom.2013.00130 +Go Ashida,Theoretical foundations of the sound analog membrane potential that underlies coincidence detection in the barn owl.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#AshidaFC13,https://doi.org/10.3389/fncom.2013.00151 +Wiebke Potjans,Enabling Functional Neural Circuit Simulations with Distributed Computing of Neuromodulated Plasticity.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#PotjansMD10,https://doi.org/10.3389/fncom.2010.00141 +Yudong Zhang,Detection of subjects and brain regions related to Alzheimer's disease using 3D MRI scans based on eigenbrain and machine learning.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ZhangDPWJYY15,https://doi.org/10.3389/fncom.2015.00066 +Tomoyasu Horikawa,Hierarchical Neural Representation of Dreamed Objects Revealed by Brain Decoding with Deep Neural Network Features.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#HorikawaK17,https://doi.org/10.3389/fncom.2017.00004 +Mehdi Borjkhani,Formation of Opioid-Induced Memory and Its Prevention: A Computational Study.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#BorjkhaniBJ18,https://doi.org/10.3389/fncom.2018.00063 +Aymar de Rugy,Are muscle synergies useful for neural control?,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#RugyLC13,https://doi.org/10.3389/fncom.2013.00019 +Andreea Lazar,SORN: a self-organizing recurrent neural network.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#LazarPT09,https://doi.org/10.3389/neuro.10.023.2009 +Paulo Andre Nobre Rosa,On the distinguishability of HRF models in fMRI.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#RosaFS15,https://doi.org/10.3389/fncom.2015.00054 +Erik Sandewall,Maintaining Live Discussion in Two-Stage Open Peer Review.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#Sandewall12,https://doi.org/10.3389/fncom.2012.00009 +Marion Sourty,Identifying Dynamic Functional Connectivity Changes in Dementia with Lewy Bodies Based on Product Hidden Markov Models.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#SourtyTRAFB16,https://doi.org/10.3389/fncom.2016.00060 +Karl J. Friston,Perception and self-organized instability.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#FristonBD12,https://doi.org/10.3389/fncom.2012.00044 +Gerard J. Rinkus,Sparsey™*: event recognition via deep hierarchical sparse distributed codes.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Rinkus14,https://doi.org/10.3389/fncom.2014.00160 +Loreen Hertäg,Analytical approximations of the firing rate of an adaptive exponential integrate-and-fire neuron in the presence of synaptic noise.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#HertagDB14,https://doi.org/10.3389/fncom.2014.00116 +Jorge I. Padilla-Buritica,Emotion Discrimination Using Spatially Compact Regions of Interest Extracted from Imaging EEG Activity.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#Padilla-Buritica16,https://doi.org/10.3389/fncom.2016.00055 +Arash Kermani Kolankeh,Competition improves robustness against loss of information.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#KolankehTH15,https://doi.org/10.3389/fncom.2015.00035 +Reinhard Gentner,Robustness of muscle synergies during visuomotor adaptation.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#GentnerPEd13,https://doi.org/10.3389/fncom.2013.00120 +Benjamin R. Shuman,Electromyography Data Processing Impacts Muscle Synergies during Gait for Unimpaired Children and Children with Cerebral Palsy.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ShumanSS17,https://doi.org/10.3389/fncom.2017.00050 +Yi Yuan,Theoretical Analysis of Transcranial Magneto-Acoustical Stimulation with Hodgkin-Huxley Neuron Model.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#YuanCL16,https://doi.org/10.3389/fncom.2016.00035 +Claudius Strub,Dynamic Neural Fields with Intrinsic Plasticity.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#StrubSWS17,https://doi.org/10.3389/fncom.2017.00074 +Sébastien Hélie,Simulating the Effect of Reinforcement Learning on Neuronal Synchrony and Periodicity in the Striatum.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#HelieF16,https://doi.org/10.3389/fncom.2016.00040 +Benjamin Scellier,Equilibrium Propagation: Bridging the Gap between Energy-Based Models and Backpropagation.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ScellierB17,https://doi.org/10.3389/fncom.2017.00024 +Masoud Ghodrati,Feedforward object-vision models only tolerate small image variations compared to human.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#GhodratiFREK14,https://doi.org/10.3389/fncom.2014.00074 +Shirley Mark,Population spikes in cortical networks during different functional states.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#MarkT12,https://doi.org/10.3389/fncom.2012.00043 +Martin J. Spencer,An investigation of dendritic delay in octopus cells of the mammalian cochlear nucleus.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#SpencerGBMB12,https://doi.org/10.3389/fncom.2012.00083 +Adam R. Tomkins,Transient and steady-state selection in the striatal microcircuit.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#TomkinsVBGH14,https://doi.org/10.3389/fncom.2013.00192 +Patrick D. Roberts,Anti-Hebbian Spike-Timing-Dependent Plasticity and Adaptive Sensory Processing.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#RobertsL10,https://doi.org/10.3389/fncom.2010.00156 +Kosuke Takagi,Information-Based Principle Induces Small-World Topology and Self-Organized Criticality in a Large Scale Brain Network.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#Takagi18,https://doi.org/10.3389/fncom.2018.00065 +Ahmed A. Moustafa,On the Complexity of Brain Disorders: A Symptom-Based Approach.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#MoustafaPKMF16,https://doi.org/10.3389/fncom.2016.00016 +Ralf Salomon,Modeling the Nucleus Laminaris of the Barn Owl: Achieving 20 ps Resolution on a 85-MHz-Clocked Digital Device.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#SalomonHJ12,https://doi.org/10.3389/fncom.2012.00006 +Michael L. Hines,Comparison of neuronal spike exchange methods on a Blue Gene/P supercomputer.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#Hines0S11,https://doi.org/10.3389/fncom.2011.00049 +Daniel Leeds,Exploration of complex visual feature spaces for object perception.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#LeedsPT14,https://doi.org/10.3389/fncom.2014.00106 +Robert Meyer,The Influence of Mexican Hat Recurrent Connectivity on Noise Correlations and Stimulus Encoding.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#MeyerLO17,https://doi.org/10.3389/fncom.2017.00034 +Dimitris A. Pinotsis,On conductance-based neural field models.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#PinotsisLF13,https://doi.org/10.3389/fncom.2013.00158 +Dimitri Probst,Probabilistic inference in discrete spaces can be implemented into networks of LIF neurons.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ProbstPBBPSM15,https://doi.org/10.3389/fncom.2015.00013 +Ahmed A. Moustafa,On the relationship among different motor processes: a computational modeling approach.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Moustafa15,https://doi.org/10.3389/fncom.2015.00034 +Malte Schilling,A hexapod walker using a heterarchical architecture for action selection.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#SchillingPHHSSC13,https://doi.org/10.3389/fncom.2013.00126 +Brendan P. Glackin,A Spiking Neural Network Model of the Medial Superior Olive Using Spike Timing Dependent Plasticity for Sound Localization.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#GlackinWMMM10,https://doi.org/10.3389/fncom.2010.00018 +Michael W. Reimann,An algorithm to predict the connectome of neural microcircuits.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ReimannKMRM15,https://doi.org/10.3389/fncom.2015.00120 +Shayan Tabe-Bordbar,Computational Analysis of the Hypothalamic Control of Food Intake.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#Tabe-BordbarA16,https://doi.org/10.3389/fncom.2016.00027 +Benjamin Torben-Nielsen,An Inverse Approach for Elucidating Dendritic Function.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#Torben-NielsenS10,https://doi.org/10.3389/fncom.2010.00128 +Ján Antolík,Development of Maps of Simple and Complex Cells in the Primary Visual Cortex.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#AntolikB11,https://doi.org/10.3389/fncom.2011.00017 +Hojeong Kim,Neuromodulation impact on nonlinear firing behavior of a reduced model motoneuron with the active dendrite.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#KimH14,https://doi.org/10.3389/fncom.2014.00110 +Marcello Mulas,Hebbian Plasticity Realigns Grid Cell Activity with External Sensory Cues in Continuous Attractor Models.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#MulasWC16,https://doi.org/10.3389/fncom.2016.00013 +Lei Wang,Coding Properties of Three Intrinsically Distinct Retinal Ganglion Cells under Periodic Stimuli: A Computational Study.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#WangQZ16,https://doi.org/10.3389/fncom.2016.00102 +Christian Schumacher,Sensor-Motor Maps for Describing Linear Reflex Composition in Hopping.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#SchumacherS17,https://doi.org/10.3389/fncom.2017.00108 +Yu-Xuan Fu,Subcritical Hopf Bifurcation and Stochastic Resonance of Electrical Activities in Neuron under Electromagnetic Induction.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#FuKX18,https://doi.org/10.3389/fncom.2018.00006 +Jantsje H. Pasma,Evidence in Support of the Independent Channel Model Describing the Sensorimotor Control of Human Stance Using a Humanoid Robot.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#PasmaAKKMS18,https://doi.org/10.3389/fncom.2018.00013 +Fariba Sharifian,Contextual Modulation is Related to Efficiency in a Spiking Network Model of Visual Cortex.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#SharifianHVV16,https://doi.org/10.3389/fncom.2015.00155 +Faramarz Faghihi,An information theoretic model of information processing in the Drosophila olfactory system: the role of inhibitory neurons for system efficiency.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#FaghihiKFWT13,https://doi.org/10.3389/fncom.2013.00183 +Bert de Vries,A Factor Graph Description of Deep Temporal Active Inference.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#VriesF17,https://doi.org/10.3389/fncom.2017.00095 +Guillaume Lajoie,Structured chaos shapes spike-response noise entropy in balanced neural networks.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#LajoieTS14,https://doi.org/10.3389/fncom.2014.00123 +Jordan H. Boyle,Gait Modulation in C. elegans: An Integrated Neuromechanical Model.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#BoyleBC12,https://doi.org/10.3389/fncom.2012.00010 +Thomas Gisiger,Mechanisms Gating the Flow of Information in the Cortex: What They Might Look Like and What Their Uses may be.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#GisigerB11,https://doi.org/10.3389/fncom.2011.00001 +Cristiano De Marchis,Feedback of mechanical effectiveness induces adaptations in motor modules during cycling.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#MarchisSBCDC13,https://doi.org/10.3389/fncom.2013.00035 +Pavel Sountsov,Spiking neuron network Helmholtz machine.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#SountsovM15,https://doi.org/10.3389/fncom.2015.00046 +Christoforos Christoforou,Single-trial linear correlation analysis: application to characterization of stimulus modality effects.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#ChristoforouCSS13,https://doi.org/10.3389/fncom.2013.00015 +Benjamin Dummer,Self-consistent determination of the spike-train power spectrum in a neural network with sparse connectivity.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#DummerWL14,https://doi.org/10.3389/fncom.2014.00104 +Xiaomei Kang,A Fast Contour Detection Model Inspired by Biological Mechanisms in Primary Vision System.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#KangK0X18,https://doi.org/10.3389/fncom.2018.00028 +Artur Luczak,Measuring Neuronal Branching Patterns Using Model-Based Approach.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#Luczak10,https://doi.org/10.3389/fncom.2010.00135 +Luciano da Fontoura Costa,Unveiling the Neuromorphological Space.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#CostaZMVT10,https://doi.org/10.3389/fncom.2010.00150 +Cian O'Donnell,Systematic analysis of the contributions of stochastic voltage gated channels to neuronal noise.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#ODonnellR14,https://doi.org/10.3389/fncom.2014.00105 +Bruno Cessac,On dynamics of integrate-and-fire neural networks with conductance based synapses.,2008,2008,Front. Comput. Neurosci.,,db/journals/ficn/ficn2008.html#CessacV08,https://doi.org/10.3389/neuro.10.002.2008 +Aritra Das,Effect of Stimulus Contrast and Visual Attention on Spike-Gamma Phase Relationship in Macaque Primary Visual Cortex.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#DasR18,https://doi.org/10.3389/fncom.2018.00066 +Juan-Francisco Espinosa-Parrilla,Linking reward processing to behavioral output: motor and motivational integration in the primate subthalamic nucleus.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#Espinosa-ParrillaBA13,https://doi.org/10.3389/fncom.2013.00175 +Sabine Krofczik,Rapid odor processing in the honeybee antennal lobe network.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#KrofczikMN09,https://doi.org/10.3389/neuro.10.009.2008 +Hisashi Kada,Effective Suppression of Pathological Synchronization in Cortical Networks by Highly Heterogeneous Distribution of Inhibitory Connections.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#KadaTT16,https://doi.org/10.3389/fncom.2016.00109 +Stefan Mihalas,Calcium Messenger Heterogeneity: A Possible Signal for Spike Timing-Dependent Plasticity.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#Mihalas11,https://doi.org/10.3389/fncom.2010.00158 +Pietro Perona,Quantized response * are a signature of a neuronal bottleneck in decision.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Perona14,https://doi.org/10.3389/fncom.2014.00042 +Yuko Hara,Differing effects of attention in single-units and populations are well predicted by heterogeneous tuning and the normalization model of attention.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#HaraPG14,https://doi.org/10.3389/fncom.2014.00012 +Jelte M. Wicherts,Letting the daylight in: Reviewing the reviewers and other ways to maximize transparency in science.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#WichertsKBB12,https://doi.org/10.3389/fncom.2012.00020 +Chengcheng Huang,A neuronal network model for context-dependence of pitch change perception.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#HuangESR15,https://doi.org/10.3389/fncom.2015.00101 +Anantharaman Gopalakrishnan,A novel computational framework for deducing muscle synergies from experimental joint moments.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#GopalakrishnanMP14,https://doi.org/10.3389/fncom.2014.00153 +Naveen Kuppuswamy,Do muscle synergies reduce the dimensionality of behavior?,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#KuppuswamyH14,https://doi.org/10.3389/fncom.2014.00063 +Gregor M. Hörzer,Directed coupling in local field potentials of macaque V4 during visual short-term memory revealed by multivariate autoregressive models.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#HorzerLSLR10,https://doi.org/10.3389/fncom.2010.00014 +James J. Wright,Further Work on the Shaping of Cortical Development and Function by Synchrony and Metabolic Competition.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#WrightB16,https://doi.org/10.3389/fncom.2016.00127 +Mark Wildie,Establishing communication between neuronal populations through competitive entrainment.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#WildieS12,https://doi.org/10.3389/fncom.2011.00062 +Andrey V. Olypher,Input-to-output transformation in a model of the rat hippocampal CA1 network.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#OlypherLP12,https://doi.org/10.3389/fncom.2012.00057 +Judith C. Peters,Editorial: Integrating Computational and Neural Findings in Visual Object Perception.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#PetersBG16,https://doi.org/10.3389/fncom.2016.00036 +Cristina Savin,Emergence of task-dependent representations in working memory circuits.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#SavinT14,https://doi.org/10.3389/fncom.2014.00057 +Dwight J. Kravitz,Toward a New Model of Scientific Publishing: Discussion and a Proposal.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#KravitzB11,https://doi.org/10.3389/fncom.2011.00055 +Romain Brette,Spiking Models for Level-Invariant Encoding.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#Brette12,https://doi.org/10.3389/fncom.2011.00063 +Patrick J. Mineault,Local field potentials reflect multiple spatial scales in V4.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#MineaultZP13,https://doi.org/10.3389/fncom.2013.00021 +Vasily I. Mironov,Dendrite and Axon Specific Geometrical Transformation in Neurite Development.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#MironovSK16,https://doi.org/10.3389/fncom.2015.00156 +Mimma Nardelli,Characterizing Psychological Dimensions in Non-Pathological Subjects through Autonomic Nervous System Dynamics.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#NardelliVCGCDLS15,https://doi.org/10.3389/fncom.2015.00037 +Eleftheria Kyriaki Pissadaki,The energy cost of action potential propagation in dopamine neurons: clues to susceptibility in Parkinson's disease.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#PissadakiB13,https://doi.org/10.3389/fncom.2013.00013 +Rodrigo Felipe De Oliveira Pena,Self-Consistent Scheme for Spike-Train Power Spectra in Heterogeneous Sparse Networks.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#PenaVBRL18,https://doi.org/10.3389/fncom.2018.00009 +Mehdi Daemi,Causal Inference for Cross-Modal Action Selection: A Computational Study in a Decision Making Framework.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#DaemiHC16,https://doi.org/10.3389/fncom.2016.00062 +Keming Tang,Electrical Activity in a Time-Delay Four-Variable Neuron Model under Electromagnetic Induction.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#TangWS17,https://doi.org/10.3389/fncom.2017.00105 +Yihwa Kim,Modulating the granularity of category formation by global cortical states.,2008,2008,Front. Comput. Neurosci.,,db/journals/ficn/ficn2008.html#KimVS08,https://doi.org/10.3389/neuro.10.001.2008 +Christiane Linster,Decorrelation of Odor Representations via Spike Timing-Dependent Plasticity.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#LinsterC10,https://doi.org/10.3389/fncom.2010.00157 +Jorrit Steven Montijn,Population coding in mouse visual cortex: response reliability and dissociability of stimulus tuning and noise correlation.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#MontijnVP14,https://doi.org/10.3389/fncom.2014.00058 +Lorenz Gönner,Predictive Place-Cell Sequences for Goal-Finding Emerge from Goal Memory and the Cognitive Map: A Computational Model.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#GonnerVH17,https://doi.org/10.3389/fncom.2017.00084 +James Trousdale,A generative spike train model with time-structured higher order correlations.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#TrousdaleHSJ13,https://doi.org/10.3389/fncom.2013.00084 +José Francisco Gómez González,Distinguishing Linear vs. Non-Linear Integration in CA1 Radial Oblique Dendrites: It's about Time.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#GonzalezMP11,https://doi.org/10.3389/fncom.2011.00044 +Ellisha N. Marongelli,The advantage of flexible neuronal tunings in neural network models for motor learning.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#MarongelliT13,https://doi.org/10.3389/fncom.2013.00100 +Christoph Börgers,Toggling between gamma-frequency activity and suppression of cell assemblies.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#BorgersW13,https://doi.org/10.3389/fncom.2013.00033 +Mark D. McDonnell,Editorial: Neuronal Stochastic Variability: Influences on Spiking Dynamics and Network Activity.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#McDonnellGL16,https://doi.org/10.3389/fncom.2016.00038 +Adam H. Marblestone,Physical principles for scalable neural recording.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#MarblestoneZMSCGASKDSAMCRBCK13,https://doi.org/10.3389/fncom.2013.00137 +Rebeca Marfil,Combining segmentation and attention: a new foveal attention model.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#MarfilPB14,https://doi.org/10.3389/fncom.2014.00096 +Sergio Oscar Verduzco-Flores,How the credit assignment problems in motor control could be solved after the cerebellum predicts increases in error.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Verduzco-Flores15,https://doi.org/10.3389/fncom.2015.00039 +Ashvin Shah,Finding minimal action sequences with a simple evaluation of actions.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#ShahG14,https://doi.org/10.3389/fncom.2014.00151 +Francesca Pittau,Contributions of EEG-fMRI to Assessing the Epileptogenicity of Focal Cortical Dysplasia.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#PittauFFDG17,https://doi.org/10.3389/fncom.2017.00008 +Bo Peng,Examining Brain Morphometry Associated with Self-Esteem in Young Adults Using Multilevel-ROI-Features-Based Classification Method.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#PengLSZZWD17,https://doi.org/10.3389/fncom.2017.00037 +Pavel Esir,Feature Detection in Visual Cortex during Different Functional States.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#EsirST17,https://doi.org/10.3389/fncom.2017.00021 +Samuel Gershman,Time representation in reinforcement learning models of the basal ganglia.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#GershmanML14,https://doi.org/10.3389/fncom.2013.00194 +Adam H. Marblestone,Toward an Integration of Deep Learning and Neuroscience.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#MarblestoneWK16,https://doi.org/10.3389/fncom.2016.00094 +Tim N. Palmer,Solving difficult problems creatively: a role for energy optimised deterministic/stochastic hybrid computing.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#PalmerO15,https://doi.org/10.3389/fncom.2015.00124 +Nicolangelo Iannella,Modulating STDP Balance Impacts the Dendritic Mosaic.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#IannellaL17,https://doi.org/10.3389/fncom.2017.00042 +Eric Y. Hu,Volterra representation enables modeling of complex synaptic nonlinear dynamics in large-scale simulations.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#HuBSBB15,https://doi.org/10.3389/fncom.2015.00112 +Dominik Endres,Segmenting sign language into motor primitives with Bayesian binning.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#EndresMFG13,https://doi.org/10.3389/fncom.2013.00068 +Jeff Orchard,Does the Entorhinal Cortex use the Fourier Transform?,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#OrchardYJ13,https://doi.org/10.3389/fncom.2013.00179 +Faten Mina,Modulation of epileptic activity by deep brain stimulation: a model-based study of frequency-dependent effects.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#MinaBPBW13,https://doi.org/10.3389/fncom.2013.00094 +Narayan Srinivasa,Unsupervised discrimination of patterns in spiking neural networks with excitatory and inhibitory synaptic plasticity.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#SrinivasaC14,https://doi.org/10.3389/fncom.2014.00159 +Adam C. Snyder,Variance in population firing rate as a measure of slow time-scale correlation.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#SnyderMS13,https://doi.org/10.3389/fncom.2013.00176 +Chun-Wei Yuan,Recurrent coupling improves discrimination of temporal spike patterns.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#YuanL12,https://doi.org/10.3389/fncom.2012.00025 +Weiliang Chen,Clustering Predicts Memory Performance in Networks of Spiking and Non-Spiking Neurons.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#ChenMASCD11,https://doi.org/10.3389/fncom.2011.00014 +Qolamreza R. Razlighi,Task-Evoked Negative BOLD Response in the Default Mode Network Does Not Alter Its Functional Connectivity.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#Razlighi18,https://doi.org/10.3389/fncom.2018.00067 +Se-Woong Park,Learning to never forget - time scales and specificity of long-term memory of a motor skill.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#ParkDS13,https://doi.org/10.3389/fncom.2013.00111 +Ronald J. Janssen,Quantifying uncertainty in brain network measures using Bayesian connectomics.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#JanssenHHG14,https://doi.org/10.3389/fncom.2014.00126 +Andrea Clerico,Electroencephalography Amplitude Modulation Analysis for Automated Affective Tagging of Music Video Clips.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#ClericoTGJF18,https://doi.org/10.3389/fncom.2017.00115 +Lindsay Rutter,Graph theoretical analysis of resting magnetoencephalographic functional connectivity networks.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#RutterNHCAWC13,https://doi.org/10.3389/fncom.2013.00093 +Marina Chistiakova,Homeostatic role of heterosynaptic plasticity: models and experiments.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ChistiakovaBCBV15,https://doi.org/10.3389/fncom.2015.00089 +Irit Nowik,Losing the battle but winning the war: game theoretic analysis of the competition between motoneurons innervating a skeletal muscle.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#NowikZS12,https://doi.org/10.3389/fncom.2012.00016 +Paul Chorley,Dopamine-Signaled Reward Predictions Generated by Competitive Excitation and Inhibition in a Spiking Neural Network Model.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#ChorleyS11,https://doi.org/10.3389/fncom.2011.00021 +Lewis L. Chuang,Learned Non-Rigid Object Motion is a View-Invariant Cue to Recognizing Novel Objects.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#ChuangVB12,https://doi.org/10.3389/fncom.2012.00026 +Alexander Schwegmann,Depth information in natural environments derived from optic flow by insect motion detection system: a model analysis.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#SchwegmannLE14,https://doi.org/10.3389/fncom.2014.00083 +Matthias H. Hennig,Theoretical models of synaptic short term plasticity.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#Hennig13,https://doi.org/10.3389/fncom.2013.00045 +Moritz Helias,Equilibrium and response properties of the integrate-and-fire neuron in discrete time.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#HeliasDDR10,https://doi.org/10.3389/neuro.10.029.2009 +Robert Rosenbaum,A Diffusion Approximation and Numerical Methods for Adaptive Neuron Models with Stochastic Inputs.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#Rosenbaum16,https://doi.org/10.3389/fncom.2016.00039 +Hinnerk Feldwisch-Drentrup,Identification of Preseizure States in Epilepsy: A Data-Driven Approach for Multichannel EEG Recordings.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#Feldwisch-DrentrupSSTDESL11,https://doi.org/10.3389/fncom.2011.00032 +Mattia D'Andola,Spatiotemporal characteristics of muscle patterns for ball catching.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#DAndolaCPFLd13,https://doi.org/10.3389/fncom.2013.00107 +Nicole A. Pelot,Modeling Current Sources for Neural Stimulation in COMSOL.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#PelotTG18,https://doi.org/10.3389/fncom.2018.00040 +Anselm Brachmann,Computational and Experimental Approaches to Visual Aesthetics.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#BrachmannR17,https://doi.org/10.3389/fncom.2017.00102 +Eric Chalmers,Computational Properties of the Hippocampus Increase the Efficiency of Goal-Directed Foraging through Hierarchical Reinforcement Learning.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ChalmersLG16,https://doi.org/10.3389/fncom.2016.00128 +Anne B. Sereno,Population Coding of Visual Space: Comparison of Spatial Representations in Dorsal and Ventral Pathways.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#SerenoL11,https://doi.org/10.3389/fncom.2010.00159 +Adam Sol Shai,Spike-timing control by dendritic plateau potentials in the presence of synaptic barrages.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#ShaiKA14,https://doi.org/10.3389/fncom.2014.00089 +Anke Meyer-Bäse,Dynamical Graph Theory Networks Methods for the Analysis of Sparse Functional Connectivity Networks and for Determining Pinning Observability in Brain Networks.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#Meyer-BaseRIMLS17,https://doi.org/10.3389/fncom.2017.00087 +Yuichi Yamashita,Cooperation of Deterministic Dynamics and Random Noise in Production of Complex Syntactical Avian Song Sequences: A Neural Network Model.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#YamashitaOOT11,https://doi.org/10.3389/fncom.2011.00018 +James J. Wright,On the dynamics of cortical development: synchrony and synaptic self-organization.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#WrightB13,https://doi.org/10.3389/fncom.2013.00004 +Xiaxia Xu,Reduction in LFP cross-frequency coupling between theta and gamma rhythms associated with impaired STP and LTP in a rat model of brain ischemia.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#XuZZ13,https://doi.org/10.3389/fncom.2013.00027 +Xiao Wang,Learning Peri-saccadic Remapping of Receptive Field from Experience in Lateral Intraparietal Area.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#WangWZW17,https://doi.org/10.3389/fncom.2017.00110 +Hesam Setareh,Cortical Dynamics in Presence of Assemblies of Densely Connected Weight-Hub Neurons.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#SetarehDPG17,https://doi.org/10.3389/fncom.2017.00052 +Prasad Shirvalkar,Closed-Loop Deep Brain Stimulation for Refractory Chronic Pain.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#ShirvalkarVDC18,https://doi.org/10.3389/fncom.2018.00018 +Armando Romani,Computational modeling of the effects of amyloid-beta on release probability at hippocampal synapses.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#RomaniMBLPMM13,https://doi.org/10.3389/fncom.2013.00001 +Yuan Yang 0002,Nonlinear Coupling between Cortical Oscillations and Muscle Activity during Isotonic Wrist Flexion.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#YangSRHS16,https://doi.org/10.3389/fncom.2016.00126 +Yuki Hashimoto,The Amount of Time Dilation for Visual Flickers Corresponds to the Amount of Neural Entrainments Measured by EEG.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#HashimotoY18,https://doi.org/10.3389/fncom.2018.00030 +Chethan Pandarinath,A novel mechanism for switching a neural system from one state to another.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#PandarinathBVPTN10,https://doi.org/10.3389/fncom.2010.00002 +Julia M. Kroos,Geometry Shapes Propagation: Assessing the Presence and Absence of Cortical Symmetries through a Computational Model of Cortical Spreading Depression.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#KroosDCSG16,https://doi.org/10.3389/fncom.2016.00006 +Stefano Cardanobile,Emergent Properties of Interacting Populations of Spiking Neurons.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#CardanobileR11,https://doi.org/10.3389/fncom.2011.00059 +Stewart Heitmann,A computational role for bistability and traveling waves in motor cortex.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#HeitmannGB12,https://doi.org/10.3389/fncom.2012.00067 +Francesca Barbieri,Irregular persistent activity induced by synaptic excitatory feedback.,2007,2007,Front. Comput. Neurosci.,,db/journals/ficn/ficn2007.html#BarbieriB07,https://doi.org/10.3389/neuro.10.005.2007 +Julien Frère,Between-subject variability of muscle synergies during a complex motor skill.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#FrereH12,https://doi.org/10.3389/fncom.2012.00099 +David T. J. Liley,The Mesoscopic Modeling of Burst Suppression during Anesthesia.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#LileyW13,https://doi.org/10.3389/fncom.2013.00046 +William Land,From action representation to action execution: exploring the links between cognitive and biomechanical levels of motor control.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#LandVBS13,https://doi.org/10.3389/fncom.2013.00127 +Jan Kneissler,Simultaneous Learning and Filtering without Delusions: A Bayes-Optimal Derivation of Combining Predictive Inference and Adaptive Filtering.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#KneisslerDFB15,https://doi.org/10.3389/fncom.2015.00047 +Daniele Borzelli,Effort minimization and synergistic muscle recruitment for three-dimensional force generation.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#BorzelliBPd13,https://doi.org/10.3389/fncom.2013.00186 +Volker Pernice,The relevance of network micro-structure for neural dynamics.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#PerniceDCR13,https://doi.org/10.3389/fncom.2013.00072 +Mitra Abedini,Recording Neural Activity Based on Surface Plasmon Resonance by Optical Fibers-A Computational Analysis.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#AbediniTS18,https://doi.org/10.3389/fncom.2018.00061 +Patrick A. Shoemaker,Neuronal networks with NMDARs and lateral inhibition implement winner-takes-all.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Shoemaker15,https://doi.org/10.3389/fncom.2015.00012 +Sharon Israely,Muscle Synergies Control during Hand-Reaching Tasks in Multiple Directions Post-stroke.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#IsraelyLMC18,https://doi.org/10.3389/fncom.2018.00010 +Tomohiko Takei,Synaptic and functional linkages between spinal premotor interneurons and hand-muscle activity during precision grip.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#TakeiS13,https://doi.org/10.3389/fncom.2013.00040 +Petra Ritter,State-dependencies of learning across brain scales.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#RitterBBDHPSSVK15,https://doi.org/10.3389/fncom.2015.00001 +Dominic I. Standage,Gain Modulation by an Urgency Signal Controls the Speed-Accuracy Trade-Off in a Network Model of a Cortical Decision Circuit.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#StandageYWD11,https://doi.org/10.3389/fncom.2011.00007 +Francesca Rocchi,Visual motion integration is mediated by directional ambiguities in local motion signals.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#RocchiLW13,https://doi.org/10.3389/fncom.2013.00167 +Maxime Ambard,Support vector machines for spike pattern classification with a leaky integrate-and-fire neuron.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#AmbardR12,https://doi.org/10.3389/fncom.2012.00078 +Fatma Gargouri,The Influence of Preprocessing Steps on Graph Theory Measures Derived from Resting State fMRI.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#GargouriKDHLV18,https://doi.org/10.3389/fncom.2018.00008 +Antonio Fernández-Ruiz,Identifying the synaptic origin of ongoing neuronal oscillations through spatial discrimination of electric fields.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#Fernandez-RuizH13,https://doi.org/10.3389/fncom.2013.00005 +Pouyan Rafiei Fard,A Bayesian Reformulation of the Extended Drift-Diffusion Model in Perceptual Decision Making.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#FardPWKB17,https://doi.org/10.3389/fncom.2017.00029 +Michael Graupner,Mechanisms of induction and maintenance of spike-timing dependent plasticity in biophysical synapse models.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#GraupnerB10,https://doi.org/10.3389/fncom.2010.00136 +Andrey Babichev,Topological Schemas of Cognitive Maps and Spatial Learning.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#BabichevCD16,https://doi.org/10.3389/fncom.2016.00018 +Manish N. Sreenivasa,Optimal Control Based Stiffness Identification of an Ankle-Foot Orthosis Using a Predictive Walking Model.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#SreenivasaMFMW17,https://doi.org/10.3389/fncom.2017.00023 +Pilar Bachiller,A Spiking Neural Model of HT3D for Corner Detection.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#BachillerMB18,https://doi.org/10.3389/fncom.2018.00037 +Kai J. Miller,Does rhythmic entrainment represent a generalized mechanism for organizing computation in the brain?,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#MillerFH12,https://doi.org/10.3389/fncom.2012.00085 +Elaine E. Orendorff,Bayesian Analysis of Perceived Eye Level.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#OrendorffKPA16,https://doi.org/10.3389/fncom.2016.00135 +Pengsheng Zheng,Striatal Network Models of Huntington's Disease Dysfunction Phenotypes.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ZhengK17,https://doi.org/10.3389/fncom.2017.00070 +Dmytro Grytskyy,A unified view on weakly correlated recurrent networks.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#GrytskyyTDH13,https://doi.org/10.3389/fncom.2013.00131 +Roey Schurr,Temporal Dissociation of Neocortical and Hippocampal Contributions to Mental Time Travel Using Intracranial Recordings in Humans.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#SchurrNESSBA18,https://doi.org/10.3389/fncom.2018.00011 +Loreen Hertäg,An Approximation to the Adaptive Exponential Integrate-and-Fire Neuron Model Allows Fast and Predictive Fitting to Physiological Data.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#HertagHGD12,https://doi.org/10.3389/fncom.2012.00062 +Lirong Tan,A Computational Model for the Automatic Diagnosis of Attention Deficit Hyperactivity Disorder Based on Functional Brain Volume.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#TanGREL17,https://doi.org/10.3389/fncom.2017.00075 +Christopher D. Fiorillo,The meaning of spikes from the neuron's point of view: predictive homeostasis generates the appearance of randomness.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#FiorilloKH14,https://doi.org/10.3389/fncom.2014.00049 +Pietro Quaglio,Detection and Evaluation of Spatio-Temporal Spike Patterns in Massively Parallel Spike Train Data with SPADE.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#QuaglioYTEG17,https://doi.org/10.3389/fncom.2017.00041 +KongFatt Wong,Neural circuit dynamics underlying accumulation of time-varying evidence during perceptual decision making.,2007,2007,Front. Comput. Neurosci.,,db/journals/ficn/ficn2007.html#WongHSW07,https://doi.org/10.3389/neuro.10.006.2007 +David Silverstein,Is Attentional Blink a Byproduct of Neocortical Attractors?,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#SilversteinL11,https://doi.org/10.3389/fncom.2011.00013 +Robin Spiess,Structural Plasticity Denoises Responses and Improves Learning Speed.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#SpiessG0D16,https://doi.org/10.3389/fncom.2016.00093 +Michael W. Reimann,Cliques of Neurons Bound into Cavities Provide a Missing Link between Structure and Function.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ReimannNSTPCDLH17,https://doi.org/10.3389/fncom.2017.00048 +Pengsheng Zheng,Robust development of synfire chains from multiple plasticity mechanisms.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#ZhengT14,https://doi.org/10.3389/fncom.2014.00066 +Shimon Marom,On the precarious path of reverse neuro-engineering.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#MaromMBGKE09,https://doi.org/10.3389/neuro.10.005.2009 +Mark D. McDonnell,Mathematical analysis and algorithms for efficiently and accurately implementing stochastic simulations of short-term synaptic depression and facilitation.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#McDonnellMS13,https://doi.org/10.3389/fncom.2013.00058 +Zachary P. Kilpatrick,Interareal coupling reduces encoding variability in multi-area models of spatial working memory.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#Kilpatrick13a,https://doi.org/10.3389/fncom.2013.00082 +Gunnar Schmidtmann,Detecting shapes in noise: tuning characteristics of global shape mechanisms.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#SchmidtmannGBL13,https://doi.org/10.3389/fncom.2013.00037 +Juan Jiang,Direct and indirect spino-cerebellar pathways: shared ideas but different functions in motor control.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#JiangAEA15,https://doi.org/10.3389/fncom.2015.00075 +Jaap van Pelt,An algorithm for finding candidate synaptic sites in computer generated networks of neurons with realistic morphologies.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#PeltCRMO10,https://doi.org/10.3389/fncom.2010.00148 +Kush Paul,Presence of a Chaotic Region at the Sleep-Wake Transition in a Simplified Thalamocortical Circuit Model.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#PaulCL16,https://doi.org/10.3389/fncom.2016.00091 +Xiaoxia Qu,Local Directional Probability Optimization for Quantification of Blurred Gray/White Matter Junction in Magnetic Resonance Image.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#QuYASZWBP17,https://doi.org/10.3389/fncom.2017.00083 +Concha Bielza,Bayesian networks in neuroscience: a survey.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#BielzaL14,https://doi.org/10.3389/fncom.2014.00131 +Fikret E. Kapucu,Spectral Entropy Based Neuronal Network Synchronization Analysis Based on Microelectrode Array Measurements.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#KapucuVMLLTH16,https://doi.org/10.3389/fncom.2016.00112 +Colin D. F. Horne,A Phenomenological Model of the Electrically Stimulated Auditory Nerve Fiber: Temporal and Biphasic Response Properties.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#HorneSS16,https://doi.org/10.3389/fncom.2016.00008 +Edmund T. Rolls,Finding and recognizing objects in natural scenes: complementary computations in the dorsal and ventral visual systems.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#RollsW14,https://doi.org/10.3389/fncom.2014.00085 +Devika Narain,Structure learning and the Occam's razor principle: a new view of human function acquisition.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#NarainSMBB14,https://doi.org/10.3389/fncom.2014.00121 +Atthaphon Viriyopase,When Long-Range Zero-Lag Synchronization is Feasible in Cortical Networks.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#ViriyopaseBZG12,https://doi.org/10.3389/fncom.2012.00049 +Anna Cattani,A Hybrid Model for the Computationally-Efficient Simulation of the Cerebellar Granular Layer.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#CattaniSC16,https://doi.org/10.3389/fncom.2016.00030 +Daniel C. Comstock,Sensorimotor Synchronization With Auditory and Visual Modalities: Behavioral and Neural Differences.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#ComstockHB18,https://doi.org/10.3389/fncom.2018.00053 +Eric A. Zilli,Analyses of Markov decision process structure regarding the possible strategic use of interacting memory systems.,2008,2008,Front. Comput. Neurosci.,,db/journals/ficn/ficn2008.html#ZilliH08,https://doi.org/10.3389/neuro.10.006.2008 +Ehsan Bolhasani,Direct connections assist neurons to detect correlation in small amplitude noises.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#BolhasaniAV13,https://doi.org/10.3389/fncom.2013.00108 +Balazs Szigeti,OpenWorm: an open-science approach to modeling Caenorhabditis elegans.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#SzigetiGVKPHCCIL14,https://doi.org/10.3389/fncom.2014.00137 +Amir Goldental,A computational paradigm for dynamic logic-gates in neuronal activity.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#GoldentalGVK14,https://doi.org/10.3389/fncom.2014.00052 +Yuri P. Ivanenko,Plasticity and modular control of locomotor patterns in neurological disorders with motor deficits.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#IvanenkoCSGMPL13,https://doi.org/10.3389/fncom.2013.00123 +Fereshteh Lagzi,A Markov model for the temporal dynamics of balanced random networks of finite size.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#LagziR14,https://doi.org/10.3389/fncom.2014.00142 +Brian J. Fischer,Resolution of interaural time differences in the avian sound localization circuit - a modeling study.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#FischerS14,https://doi.org/10.3389/fncom.2014.00099 +Thaddeus Cybulski,Spatial information in large-scale neural recordings.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#CybulskiGMZBCK15,https://doi.org/10.3389/fncom.2014.00172 +Tatiana Dashevskiy,Propensity for Bistability of Bursting and Silence in the Leech Heart Interneuron.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#DashevskiyC18,https://doi.org/10.3389/fncom.2018.00005 +Cliff C. Kerr,Cortical information flow in Parkinson's disease: a composite network/field model.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#KerrANCRL13,https://doi.org/10.3389/fncom.2013.00039 +James B. Aimone,Perspectives for computational modeling of cell replacement for neurological disorders.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#AimoneW13,https://doi.org/10.3389/fncom.2013.00150 +Marcel van Gerven,Computational Foundations of Natural Intelligence.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#Gerven17,https://doi.org/10.3389/fncom.2017.00112 +Gabriel A. Silva,The Need for the Emergence of Mathematical Neuroscience: Beyond Computation and Simulation.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#Silva11,https://doi.org/10.3389/fncom.2011.00051 +Christina Gremel,Premotor cortex is critical for goal-directed actions.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#GremelC13,https://doi.org/10.3389/fncom.2013.00110 +Marcel van Gerven,Editorial: Artificial Neural Networks as Models of Neural Information Processing.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#GervenB17,https://doi.org/10.3389/fncom.2017.00114 +Rodrigo Echeveste,Drifting States and Synchronization Induced Chaos in Autonomous Networks of Excitable Neurons.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#EchevesteG16,https://doi.org/10.3389/fncom.2016.00098 +Michael C. Avery,A large-scale neural network model of the influence of neuromodulatory levels on working memory and behavior.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#AveryDK13,https://doi.org/10.3389/fncom.2013.00133 +Sven Schrader,A Compositionality Machine Realized by a Hierarchic Architecture of Synfire Chains.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#SchraderDM11,https://doi.org/10.3389/fncom.2010.00154 +Nedialko I. Krouchev,Motor cortical regulation of sparse synergies provides a framework for the flexible control of precision walking.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#KrouchevD13,https://doi.org/10.3389/fncom.2013.00083 +Qiulei Dong,Commentary: Using goal-driven deep learning models to understand sensory cortex.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#DongWH18,https://doi.org/10.3389/fncom.2018.00004 +Joel Zylberberg,How Should Prey Animals Respond to Uncertain Threats?,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#ZylberbergD11,https://doi.org/10.3389/fncom.2011.00020 +Juan M. Galeazzi,The Development of Hand-Centered Visual Representations in the Primate Brain: A Computer Modeling Study Using Natural Visual Scenes.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#GaleazziMS15,https://doi.org/10.3389/fncom.2015.00147 +Sebastian Gerwinn,Bayesian inference for generalized linear models for spiking neurons.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#GerwinnMB10,https://doi.org/10.3389/fncom.2010.00012 +Jovana Belic,Decoding of human hand actions to handle missing limbs in neuroprosthetics.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#BelicF15,https://doi.org/10.3389/fncom.2015.00027 +Long Chen,Exploring Combinations of Different Color and Facial Expression Stimuli for Gaze-Independent BCIs.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ChenJDZWC16,https://doi.org/10.3389/fncom.2016.00005 +Pietro Balbi,Axon-somatic back-propagation in detailed models of spinal alpha motoneurons.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#BalbiMM15,https://doi.org/10.3389/fncom.2015.00015 +Shimon Marom,Adaptive transition rates in excitable membranes.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#Marom09,https://doi.org/10.3389/neuro.10.002.2009 +Ning Lan,Editorial: Neural and Computational Modeling of Movement Control.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#LanCG16,https://doi.org/10.3389/fncom.2016.00090 +Mark V. Albert,Saccadic gain adaptation is predicted by the statistics of natural fluctuations in oculomotor function.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#AlbertCTK12,https://doi.org/10.3389/fncom.2012.00096 +Denise Berger,Effective force control by muscle synergies.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Bergerd14,https://doi.org/10.3389/fncom.2014.00046 +Ivor Cribben,Detecting functional connectivity change points for single-subject fMRI data.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#CribbenWL13,https://doi.org/10.3389/fncom.2013.00143 +Jesús Alberto Garrido,Spike Timing Regulation on the Millisecond Scale by Distributed Synaptic Plasticity at the Cerebellum Input Stage: A Simulation Study.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#GarridoRD13,https://doi.org/10.3389/fncom.2013.00064 +Murray Shanahan,Large-scale network organization in the avian forebrain: a connectivity matrix and theoretical analysis.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#ShanahanBSWG13,https://doi.org/10.3389/fncom.2013.00089 +Eugen Czeizler,Geometrical tile design for complex neighborhoods.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#CzeizlerK09,https://doi.org/10.3389/neuro.10.020.2009 +Alexander Bird,Bayesian Inference of Synaptic Quantal Parameters from Correlated Vesicle Release.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#BirdWR16,https://doi.org/10.3389/fncom.2016.00116 +Jean-Pascal Pfister,STDP in Oscillatory Recurrent Networks: Theoretical Conditions for Desynchronization and Applications to Deep Brain Stimulation.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#PfisterT10,https://doi.org/10.3389/fncom.2010.00022 +Andrew Isaac Meso,Towards an understanding of the roles of visual areas MT and MST in computing speed.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#MesoS14,https://doi.org/10.3389/fncom.2014.00092 +Hooman Alikhanian,Quantifying effects of stochasticity in reference frame transformations on posterior distributions.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#AlikhanianCB15,https://doi.org/10.3389/fncom.2015.00082 +Ryota Kobayashi,Made-to-order spiking neuron model equipped with a multi-*cale adaptive threshold.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#KobayashiTS09,https://doi.org/10.3389/neuro.10.009.2009 +Dezso Nemeth,Age-dependent and coordinated shift in performance between implicit and explicit skill learning.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#NemethJF13,https://doi.org/10.3389/fncom.2013.00147 +Zeinab Mortezapouraghdam,Bayesian Modeling of the Dynamics of Phase Modulations and their Application to Auditory Event Related Potentials at Different Loudness Scales.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#Mortezapouraghdam16,https://doi.org/10.3389/fncom.2016.00002 +Ramón Guevara Erra,Neural Synchronization from the Perspective of Non-linear Dynamics.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ErraVR17,https://doi.org/10.3389/fncom.2017.00098 +Julien Modolo,The next move in neuromodulation therapy: a question of timing.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ModoloBL15,https://doi.org/10.3389/fncom.2014.00162 +Lei Xiao,Adaptive neural information processing with dynamical electrical synapses.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#XiaoZLLW13,https://doi.org/10.3389/fncom.2013.00036 +Emilio Salinas,Waiting is the Hardest Part: Comparison of Two Computational Strategies for Performing a Compelled-Response Task.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#SalinasSCZS10,https://doi.org/10.3389/fncom.2010.00153 +David Buxton,Striatal Neuropeptides Enhance Selection and Rejection of Sequential Actions.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#BuxtonBOG17,https://doi.org/10.3389/fncom.2017.00062 +Lawrence Wing-Chi Chan,Genetic algorithm supported by graphical processing unit improves the exploration of effective connectivity in functional brain imaging.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ChanPSCK15,https://doi.org/10.3389/fncom.2015.00050 +Denis A. Adamchik,Emergence of Relaxation Oscillations in Neurons Interacting With Non-stationary Ambient GABA.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#AdamchikMK18,https://doi.org/10.3389/fncom.2018.00019 +Hanan Shteingart,Wrestling Model of the Repertoire of Activity Propagation Modes in Quadruple Neural Networks.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#ShteingartRBB10,https://doi.org/10.3389/fncom.2010.00025 +Nicole Voges,Complex dynamics in recurrent cortical networks based on spatially realistic connectivities.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#VogesP12,https://doi.org/10.3389/fncom.2012.00041 +Christoph Teufel,The role of priors in Bayesian models of perception.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#TeufelSF13,https://doi.org/10.3389/fncom.2013.00025 +Srdjan Ostojic,Synaptic encoding of temporal contiguity.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#OstojicF13,https://doi.org/10.3389/fncom.2013.00032 +Eric O. Boyer,From ear to hand: the role of the auditory-motor loop in pointing to an auditory source.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#BoyerBBNWRHV13,https://doi.org/10.3389/fncom.2013.00026 +Kevin Sean Chen,Characterization of Predictive Behavior of a Retina by Mutual Information.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ChenCC17,https://doi.org/10.3389/fncom.2017.00066 +Alberto Testolin,The Role of Architectural and Learning Constraints in Neural Network Models: A Case Study on Visual Space Coding.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#TestolinGZ17,https://doi.org/10.3389/fncom.2017.00013 +Felix Droste,Interplay of two signals in a neuron with heterogeneous synaptic short-term plasticity.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#DrosteSL13,https://doi.org/10.3389/fncom.2013.00086 +Milad Lankarany,Inferring trial-to-trial excitatory and inhibitory synaptic inputs from membrane potential using Gaussian mixture Kalman filtering.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#LankaranyZST13,https://doi.org/10.3389/fncom.2013.00109 +Sorinel Adrian Oprisan,Low-dimensional attractor for neural activity from local field potentials in optogenetic mice.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#OprisanLTL15,https://doi.org/10.3389/fncom.2015.00125 +Reza Zomorrodi,Modeling thalamocortical cell: impact of Ca2+ channel distribution and cell geometry on firing pattern.,2008,2008,Front. Comput. Neurosci.,,db/journals/ficn/ficn2008.html#ZomorrodiKT08,https://doi.org/10.3389/neuro.10.005.2008 +Mohammad Daneshzand,Computational Stimulation of the Basal Ganglia Neurons with Cost Effective Delayed Gaussian Waveforms.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#DaneshzandFB17,https://doi.org/10.3389/fncom.2017.00073 +Jianbo Gao,Fast monitoring of epileptic seizures using recurrence time statistics of electroencephalography.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#GaoH13,https://doi.org/10.3389/fncom.2013.00122 +Juan Miguel López Gil,Method for Improving EEG Based Emotion Recognition by Combining It with Synchronized Biometric and Eye Tracking Technologies in a Non-invasive and Low Cost Way.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#GilVGG16,https://doi.org/10.3389/fncom.2016.00085 +Sven Jahnke,How chaotic is the balanced state?,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#JahnkeMT09,https://doi.org/10.3389/neuro.10.013.2009 +Pierre Yger,Addendum: Models of Metaplasticity: A Review of Concepts.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#YgerG16,https://doi.org/10.3389/fncom.2016.00004 +Ehud Ahissar,Seeing via Miniature Eye Movements: A Dynamic Hypothesis for Vision.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#AhissarA12,https://doi.org/10.3389/fncom.2012.00089 +James P. Crutchfield,Time resolution dependence of information measures for spiking neurons: scaling and universality.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#CrutchfieldDM15,https://doi.org/10.3389/fncom.2015.00105 +Kingsley J. A. Cox,Hebbian crosstalk prevents nonlinear unsupervised learning.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#CoxA09,https://doi.org/10.3389/neuro.10.011.2009 +Davide Reato,Computational model of neuron-astrocyte interactions during focal seizure generation.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#ReatoCPC12,https://doi.org/10.3389/fncom.2012.00081 +Neil D. B. Bruce,Visual Representation Determines Search Difficulty: Explaining Visual Search Asymmetries.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#BruceT11,https://doi.org/10.3389/fncom.2011.00033 +Sijie Zhou,Effects of Background Music on Objective and Subjective Performance Measures in an Auditory BCI.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ZhouAKCWJ16,https://doi.org/10.3389/fncom.2016.00105 +Chengcheng Huang,A Neuronal Network Model for Pitch Selectivity and Representation.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#HuangR16,https://doi.org/10.3389/fncom.2016.00057 +Mir Jalil Razavi,Radial Structure Scaffolds Convolution Patterns of Developing Cerebral Cortex.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#RazaviZCLPZGHWL17,https://doi.org/10.3389/fncom.2017.00076 +Pragathi Priyadharsini Balasubramani,A network model of basal ganglia for understanding the roles of dopamine and serotonin in reward-punishment-risk based decision making.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#BalasubramaniCR15,https://doi.org/10.3389/fncom.2015.00076 +Douglas Zhou,Analysis of sampling artifacts on the Granger causality analysis for topology extraction of neuronal dynamics.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#ZhouZXC14,https://doi.org/10.3389/fncom.2014.00075 +Lele Xu,A pooling-LiNGAM algorithm for effective connectivity analysis of fMRI data.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#XuFWCGZY14,https://doi.org/10.3389/fncom.2014.00125 +Takashi Matsubara,Conduction Delay Learning Model for Unsupervised and Supervised Classification of Spatio-Temporal Spike Patterns.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#Matsubara17,https://doi.org/10.3389/fncom.2017.00104 +Keiji Ota,Motor planning under temporal uncertainty is suboptimal when the gain function is asymmetric.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#OtaSK15,https://doi.org/10.3389/fncom.2015.00088 +Zhihui Wang,Eliminating Absence Seizures through the Deep Brain Stimulation to Thalamus Reticular Nucleus.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#WangW17,https://doi.org/10.3389/fncom.2017.00022 +Clemens Brunner,Volume Conduction Influences Scalp-Based Connectivity Estimates.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#BrunnerBSMM16,https://doi.org/10.3389/fncom.2016.00121 +Andrey Babichev,Topological Schemas of Memory Spaces.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#BabichevD18,https://doi.org/10.3389/fncom.2018.00027 +Pamela Reitsma,Correlation transfer from basal ganglia to thalamus in Parkinson's disease.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#ReitsmaDR11,https://doi.org/10.3389/fncom.2011.00058 +Viola Folli,On the Maximum Storage Capacity of the Hopfield Model.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#FolliLR17,https://doi.org/10.3389/fncom.2016.00144 +Antonio G. Zippo,The Compression Flow as a Measure to Estimate the Brain Connectivity Changes in Resting State fMRI and 18FDG-PET Alzheimer's Disease Connectomes.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ZippoCBB15,https://doi.org/10.3389/fncom.2015.00148 +Luis-Eduardo Imbernón Cuadrado,ARTIE: An Integrated Environment for the Development of Affective Robot Tutors.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#CuadradoRL16,https://doi.org/10.3389/fncom.2016.00077 +Ke Zeng,Complex network analysis of resting state EEG in amnestic mild cognitive impairment patients with type 2 diabetes.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ZengWOBWL15,https://doi.org/10.3389/fncom.2015.00133 +Tilo Schwalger,Patterns of interval correlations in neural oscillators with adaptation.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#SchwalgerL13,https://doi.org/10.3389/fncom.2013.00164 +Vignesh Muralidharan,A computational model of altered gait patterns in Parkinson's Disease patients negotiating narrow doorways.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#MuralidharanBCLM14,https://doi.org/10.3389/fncom.2013.00190 +Lukas Brostek,An Information-Theoretic Approach for Evaluating Probabilistic Tuning Functions of Single Neurons.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#BrostekEOMBG11,https://doi.org/10.3389/fncom.2011.00015 +Yuan-Pin Lin,Improving Cross-Day EEG-Based Emotion Classification Using Robust Principal Component Analysis.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#LinJY17,https://doi.org/10.3389/fncom.2017.00064 +James Humble,Spatio-temporal pattern recognizers using spiking neurons and spike-timing-dependent plasticity.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#HumbleDW12,https://doi.org/10.3389/fncom.2012.00084 +Mahsa Khoshkhou,Beta-Rhythm Oscillations and Synchronization Transition in Network Models of Izhikevich Neurons: Effect of Topology and Synaptic Type.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#KhoshkhouM18,https://doi.org/10.3389/fncom.2018.00059 +Robert Lowe,Minimalist Social-Affective Value for Use in Joint Action: A Neural-Computational Hypothesis.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#LoweALGMV16,https://doi.org/10.3389/fncom.2016.00088 +Daniel A. Braun,Online Adaptation and Over-Trial Learning in Macaque Visuomotor Control.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#BraunAPVRM11,https://doi.org/10.3389/fncom.2011.00027 +Enrico Chiovetto,Investigating reduction of dimensionality during single-joint elbow movements: a case study on muscle synergies.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#ChiovettoBDPP13,https://doi.org/10.3389/fncom.2013.00011 +Huu Hoang,Segmental Bayesian estimation of gap-junctional and inhibitory conductance of inferior olive neurons from spike trains with complicated dynamics.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#HoangYTSKT15,https://doi.org/10.3389/fncom.2015.00056 +Mehdi Daemi,A kinematic model for 3-D head-free gaze-shifts.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#DaemiC15,https://doi.org/10.3389/fncom.2015.00072 +Ahmed A. Moustafa,Freezing of gait and response conflict in Parkinson's disease: computational directions.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Moustafa14,https://doi.org/10.3389/fncom.2014.00007 +Ariel Zylberberg,Neurophysiological bases of exponential sensory decay and top-down memory retrieval: a model.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#ZylberbergDMS09,https://doi.org/10.3389/neuro.10.004.2009 +Jozien B. M. Goense,fMRI at High Spatial Resolution: Implications for BOLD-Models.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#GoenseBL16,https://doi.org/10.3389/fncom.2016.00066 +Talis Bachmann,Can Quality be Extracted from Quantification of Interactions by NBS?,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#Bachmann12,https://doi.org/10.3389/fncom.2012.00022 +Marta Russo,Dimensionality of joint torques and muscle patterns for reaching.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#RussoDPLd14,https://doi.org/10.3389/fncom.2014.00024 +Kamal Abuhassan,Compensating for thalamocortical synaptic loss in Alzheimer's disease.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#AbuhassanCM14,https://doi.org/10.3389/fncom.2014.00065 +Ken Takiyama,Context-dependent memory decay is evidence of effort minimization in motor learning: a computational study.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Takiyama15,https://doi.org/10.3389/fncom.2015.00004 +Neville Hogan,Dynamic primitives in the control of locomotion.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#HoganS13,https://doi.org/10.3389/fncom.2013.00071 +Douglas J. Bakkum,Parameters for burst detection.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#BakkumRFFHT14,https://doi.org/10.3389/fncom.2013.00193 +Joshua K. Hartshorne,Tracking Replicability as a Method of Post-Publication Open Evaluation.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#HartshorneS12,https://doi.org/10.3389/fncom.2012.00008 +Ning Lan,Fusimotor control of spindle sensitivity regulates central and peripheral coding of joint angles.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#LanH12,https://doi.org/10.3389/fncom.2012.00066 +Tatjana Tchumatchenko,Signatures of synchrony in pairwise count correlations.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#TchumatchenkoGVW10,https://doi.org/10.3389/neuro.10.001.2010 +Francesca Camera,The CNP signal is able to silence a supra threshold neuronal model.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#CameraPTADPL15,https://doi.org/10.3389/fncom.2015.00044 +Rodrigo Sigala,The role of alpha-rhythm states in perceptual learning: insights from experiments and computational models.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#SigalaHRDR14,https://doi.org/10.3389/fncom.2014.00036 +Takahiro Doi,Cross-matching: a modified cross-correlation underlying threshold energy model and match-based depth perception.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#DoiF14,https://doi.org/10.3389/fncom.2014.00127 +Fabiano Baroni,Heterogeneity of heterogeneities in neuronal networks.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#BaroniM14,https://doi.org/10.3389/fncom.2014.00161 +Bernd J. Kröger,Modeling Interactions between Speech Production and Perception: Speech Error Detection at Semantic and Phonological Levels and the Inner Speech Loop.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#KrogerCBE16,https://doi.org/10.3389/fncom.2016.00051 +Shimon Marom,Relational Dynamics in Perception: Impacts on Trial-to-trial Variation.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#MaromW11,https://doi.org/10.3389/fncom.2011.00016 +Kyeongwon Cho,Analysis of Nociceptive Information Encoded in the Temporal Discharge Patterns of Cutaneous C-Fibers.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ChoJKLCKJJ16,https://doi.org/10.3389/fncom.2016.00118 +Maximilian Uhlig,Critical dynamics in associative memory networks.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#UhligLGH13,https://doi.org/10.3389/fncom.2013.00087 +Jan Zimmermann,Network-based statistics for a community driven transparent publication process.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#ZimmermannRUSFJWG12,https://doi.org/10.3389/fncom.2012.00011 +Dimitris A. Pinotsis,Neural masses and fields: modeling the dynamics of brain activity.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#PinotsisRGF14,https://doi.org/10.3389/fncom.2014.00149 +Andreas Stöckel,Binary Associative Memories as a Benchmark for Spiking Neuromorphic Hardware.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#StockelJT017,https://doi.org/10.3389/fncom.2017.00071 +Sora Ahn,Prediction of the Seizure Suppression Effect by Electrical Stimulation via a Computational Modeling Approach.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#AhnJJLL17,https://doi.org/10.3389/fncom.2017.00039 +Ramin Azodi-Avval,Phase-dependent modulation as a novel approach for therapeutic brain stimulation.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Azodi-AvvalG15,https://doi.org/10.3389/fncom.2015.00026 +Elisa Magosso,Audiovisual Rehabilitation in Hemianopia: A Model-Based Theoretical Investigation.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#MagossoCB17,https://doi.org/10.3389/fncom.2017.00113 +Luozheng Li,Dynamic Information Encoding With Dynamic Synapses in Neural Adaptation.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#LiMZWW18,https://doi.org/10.3389/fncom.2018.00016 +Yanqing Chen,Versatile networks of simulated spiking neurons displaying winner-take-all behavior.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#ChenME13,https://doi.org/10.3389/fncom.2013.00016 +Dragoljub Gajic,Detection of epileptiform activity in EEG signals based on time-frequency and nonlinear analysis.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#GajicGDGS15,https://doi.org/10.3389/fncom.2015.00038 +Archana Ram,Is Smaller Better? A Proposal to Use Bacteria For Neuroscientific Modeling.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#RamL18,https://doi.org/10.3389/fncom.2018.00007 +Yimy Amarillo,Analysis of the role of the low threshold currents IT and Ih in intrinsic delta oscillations of thalamocortical neurons.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#AmarilloMN15,https://doi.org/10.3389/fncom.2015.00052 +Seungmoon Song,Evaluation of a Neuromechanical Walking Control Model Using Disturbance Experiments.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#SongG17,https://doi.org/10.3389/fncom.2017.00015 +Alexander Reyes,Beta Band Corticomuscular Drive Reflects Muscle Coordination Strategies.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ReyesLKC17,https://doi.org/10.3389/fncom.2017.00017 +Fang Han,Optimum neural tuning curves for information efficiency with rate coding and finite-time window.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#HanWFS15,https://doi.org/10.3389/fncom.2015.00067 +Zhuoyi Song,Random Photon Absorption Model Elucidates How Early Gain Control in Fly Photoreceptors Arises from Quantal Sampling.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#SongZJ16,https://doi.org/10.3389/fncom.2016.00061 +Aslak Tveito,An Evaluation of the Accuracy of Classical Models for Computing the Membrane Potential and Extracellular Potential for Neurons.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#TveitoJLPSEMHE17,https://doi.org/10.3389/fncom.2017.00027 +Lyle Muller,Spike-Timing Dependent Plasticity and Feed-Forward Input Oscillations Produce Precise and Invariant Spike Phase-Locking.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#MullerBG11,https://doi.org/10.3389/fncom.2011.00045 +Huiyan Li,Impacts of clustering on noise-induced spiking regularity in the excitatory neuronal networks of subnetworks.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#LiSX15,https://doi.org/10.3389/fncom.2015.00085 +Frederic Zubler,A framework for modeling the growth and development of neurons and networks.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#ZublerD09,https://doi.org/10.3389/neuro.10.025.2009 +Kento Suzuki,Bayesian Estimation of Phase Dynamics Based on Partially Sampled Spikes Generated by Realistic Model Neurons.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#SuzukiAK18,https://doi.org/10.3389/fncom.2017.00116 +Gordon Pipa,Higher Order Spike Synchrony in Prefrontal Cortex during Visual Memory.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#PipaM11,https://doi.org/10.3389/fncom.2011.00023 +Daniel H. Elijah,Thalamic neuron models encode stimulus information by burst-size modulation.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ElijahSM15,https://doi.org/10.3389/fncom.2015.00113 +Andrea d'Avella,Control of reaching movements by muscle synergy combinations.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#dAvellaL13,https://doi.org/10.3389/fncom.2013.00042 +Maurizio De Pittà,Computational quest for understanding the role of astrocyte signaling in synaptic transmission and plasticity.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#PittaVBPVB12,https://doi.org/10.3389/fncom.2012.00098 +Joseph Chrol-Cannon,Learning structure of sensory inputs with synaptic plasticity leads to interference.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Chrol-CannonJ15,https://doi.org/10.3389/fncom.2015.00103 +Måns Henningson,Analysis and Modeling of Subthreshold Neural Multi-Electrode Array Data by Statistical Field Theory.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#HenningsonI17,https://doi.org/10.3389/fncom.2017.00026 +Pavel Anatolyevich Puzerey,On how correlations between excitatory and inhibitory synaptic inputs maximize the information rate of neuronal firing.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#PuzereyG14,https://doi.org/10.3389/fncom.2014.00059 +Samuel A. Neymotin,Emergence of Physiological Oscillation Frequencies in a Computer Model of Neocortex.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#NeymotinLPFL11,https://doi.org/10.3389/fncom.2011.00019 +Asaph Zylbertal,The Slow Dynamics of Intracellular Sodium Concentration Increase the Time Window of Neuronal Integration: A Simulation Study.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ZylbertalYW17,https://doi.org/10.3389/fncom.2017.00085 +Kristofer E. Bouchard,Role of the site of synaptic competition and the balance of learning forces for Hebbian encoding of probabilistic Markov sequences.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#BouchardGB15,https://doi.org/10.3389/fncom.2015.00092 +Satrajit S. Ghosh,Learning from open source software projects to improve scientific review.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#GhoshKAM12,https://doi.org/10.3389/fncom.2012.00018 +Nikolaus Kriegeskorte,An emerging consensus for open evaluation: 18 visions for the future of scientific publishing.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#KriegeskorteWD12,https://doi.org/10.3389/fncom.2012.00094 +Tuomo Mäki-Marttunen,Information Diversity in Structure and Dynamics of Simulated Neuronal Networks.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#Maki-MarttunenANKRYL11,https://doi.org/10.3389/fncom.2011.00026 +James M. Kunert-Graf,Multistability and Long-Timescale Transients Encoded by Network Structure in a Model of C. elegans Connectome Dynamics.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#Kunert-GrafSWK17,https://doi.org/10.3389/fncom.2017.00053 +Niceto Rafael Luque,Fast convergence of learning requires plasticity between inferior olive and deep cerebellar nuclei in a manipulation task: a closed-loop robotic simulation.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#LuqueGCDR14,https://doi.org/10.3389/fncom.2014.00097 +Yansong Chua,Modeling the calcium spike as a threshold triggered fixed waveform for synchronous inputs in the fluctuation regime.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ChuaHM15,https://doi.org/10.3389/fncom.2015.00091 +Maciej Kaminski,Directed Transfer Function is not influenced by volume conduction - inexpedient pre-processing should be avoided.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#KaminskiB14,https://doi.org/10.3389/fncom.2014.00061 +Andrés úbeda,Estimation of Neuromuscular Primitives from EEG Slow Cortical Potentials in Incomplete Spinal Cord Injury Individuals for a New Class of Brain-Machine Interfaces.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#UbedaAFS18,https://doi.org/10.3389/fncom.2018.00003 +Marije ter Wal,Phase Difference between Model Cortical Areas Determines Level of Information Transfer.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#WalT17,https://doi.org/10.3389/fncom.2017.00006 +John J. Wade,Self-repair in a Bidirectionally Coupled Astrocyte-Neuron (AN) System based on Retrograde Signaling.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#WadeMHCK12,https://doi.org/10.3389/fncom.2012.00076 +Sungwoo Ahn,Synchronized Beta-Band Oscillations in a Model of the Globus Pallidus-Subthalamic Nucleus Network under External Input.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#AhnZWR16,https://doi.org/10.3389/fncom.2016.00134 +Eric Y. Hu,A Glutamatergic Spine Model to Enable Multi-Scale Modeling of Nonlinear Calcium Dynamics.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#HuMBSBB18,https://doi.org/10.3389/fncom.2018.00058 +Kandan Ramakrishnan,Visual dictionaries as intermediate features in the human brain.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#RamakrishnanSGS15,https://doi.org/10.3389/fncom.2014.00168 +Kang Li,Neurons in Primate Visual Cortex Alternate between Responses to Multiple Stimuli in Their Receptive Field.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#LiKKTDB16,https://doi.org/10.3389/fncom.2016.00141 +Danilo Pezo,Diffusion approximation-based simulation of stochastic ion channels: which method to use?,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#PezoSO14,https://doi.org/10.3389/fncom.2014.00139 +Amir Tal,The proactive brain and the fate of dead hypotheses.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#TalB14,https://doi.org/10.3389/fncom.2014.00138 +Matthieu Gilson,STDP in Recurrent Neuronal Networks.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#GilsonBH10,https://doi.org/10.3389/fncom.2010.00023 +Jesse Palma,Persistence and storage of activity patterns in spiking recurrent cortical networks: modulation of sigmoid signals by after-hyperpolarization currents and acetylcholine.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#PalmaGV12,https://doi.org/10.3389/fncom.2012.00042 +Thomas Hoellinger,Biological oscillations for learning walking coordination: dynamic recurrent neural network functionally models physiological central pattern generator.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#HoellingerPDCSCBIDC13,https://doi.org/10.3389/fncom.2013.00070 +John D. Long,A Statistical Description of Neural Ensemble Dynamics.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#LongC11,https://doi.org/10.3389/fncom.2011.00052 +Parham Ghorbanian,Stochastic non-linear oscillator models of EEG: the Alzheimer's disease case.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#GhorbanianRA15,https://doi.org/10.3389/fncom.2015.00048 +Petra Ritter,Editorial: State-dependent brain computation.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#RitterJMB15,https://doi.org/10.3389/fncom.2015.00077 +Kornelius Rácz,Spatio-temporal analysis reveals active control of both task-relevant and task-irrelevant variables.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#RaczC13,https://doi.org/10.3389/fncom.2013.00155 +Qing-long L. Gu,The Dynamics of Balanced Spiking Neuronal Networks Under Poisson Drive Is Not Chaotic.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#GuTKZC18,https://doi.org/10.3389/fncom.2018.00047 +Daniel Soudry,The neuronal response at extended *cales: a linearized spiking input-output relation.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#SoudryM14a,https://doi.org/10.3389/fncom.2014.00029 +Tobias Teichert,A new paradigm and computational framework to estimate stop-signal reaction time distributions from the inhibition of complex motor sequences.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#TeichertF15,https://doi.org/10.3389/fncom.2015.00087 +Florian Fiebig,Memory consolidation from seconds to weeks: a three-stage neural network model with autonomous reinstatement dynamics.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#FiebigL14,https://doi.org/10.3389/fncom.2014.00064 +Denis Zakharov,Synergy of AMPA and NMDA Receptor Currents in Dopaminergic Neurons: A Modeling Study.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ZakharovLGK16,https://doi.org/10.3389/fncom.2016.00048 +Alexander Pastukhov,Multi-stable perception balances stability and sensitivity.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#PastukhovGHGDB13,https://doi.org/10.3389/fncom.2013.00017 +Qasim Bukhari,Random Forest Segregation of Drug Responses May Define Regions of Biological Significance.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#BukhariBRB16,https://doi.org/10.3389/fncom.2016.00021 +Alexandre Reynaud,Characterization of Spatial Frequency Channels Underlying Disparity Sensitivity by Factor Analysis of Population Data.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ReynaudH17,https://doi.org/10.3389/fncom.2017.00063 +Shivendra Tewari,A possible role of astrocytes in contextual memory retrieval: An analysis obtained using a quantitative framework.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#TewariP13,https://doi.org/10.3389/fncom.2013.00145 +Katherine Muterspaugh Steele,The number and choice of muscles impact the results of muscle synergy analyses.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#SteeleTP13,https://doi.org/10.3389/fncom.2013.00105 +Kamil A. Grajski,Emergent Spatial Patterns of Excitatory and Inhibitory Synaptic Strengths Drive Somatotopic Representational Discontinuities and their Plasticity in a Computational Model of Primary Sensory Cortical Area 3b.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#Grajski16,https://doi.org/10.3389/fncom.2016.00072 +Yuki Ueyama,Mini-max feedback control as a computational theory of sensorimotor control in the presence of structural uncertainty.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Ueyama14,https://doi.org/10.3389/fncom.2014.00119 +Fatemeh Yavari,Does our brain use the same policy for interacting with people and manipulating different objects?,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Yavari15,https://doi.org/10.3389/fncom.2014.00170 +Joaquín J. Torres,Emerging phenomena in neural networks with dynamic synapses and their computational implications.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#TorresK13,https://doi.org/10.3389/fncom.2013.00030 +Bertrand du Castel,Pattern activation/recognition theory of mind.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Castel15,https://doi.org/10.3389/fncom.2015.00090 +Carolina Feher da Silva,Computational models of the Posner simple and choice reaction time tasks.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#SilvaB15,https://doi.org/10.3389/fncom.2015.00081 +Román Rossi Pool,Inferring Single Neuron Properties in Conductance Based Balanced Networks.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#PoolM11,https://doi.org/10.3389/fncom.2011.00041 +Amelia Waddington,Triphasic spike-timing-dependent plasticity organizes networks to produce robust sequences of neural activity.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#WaddingtonAKC12,https://doi.org/10.3389/fncom.2012.00088 +Juan Miguel López Gil,Corrigendum: Method for Improving EEG Based Emotion Recognition by Combining It with Synchronized Biometric and Eye Tracking Technologies in a Non-invasive and Low Cost Way.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#GilVGGBSG16,https://doi.org/10.3389/fncom.2016.00119 +Zedong Bi,Spike Pattern Structure Influences Synaptic Efficacy Variability under STDP and Synaptic Homeostasis. I: Spike Generating Models on Converging Motifs.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#BiZ16,https://doi.org/10.3389/fncom.2016.00014 +Paul C. Bressloff,Traveling pulses in a stochastic neural field model of direction selectivity.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#BressloffW12,https://doi.org/10.3389/fncom.2012.00090 +Amir Karniel,The minimum transition hypothesis for intermittent hierarchical motor control.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#Karniel13,https://doi.org/10.3389/fncom.2013.00012 +Martin Ebert,Coordinated reset stimulation in a large-scale model of the STN-GPe circuit.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#EbertHT14,https://doi.org/10.3389/fncom.2014.00154 +Wei Xu,Timing Intervals Using Population Synchrony and Spike Timing Dependent Plasticity.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#XuB16,https://doi.org/10.3389/fncom.2016.00123 +Christian K. Machens,Demixing Population Activity in Higher Cortical Areas.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#Machens10,https://doi.org/10.3389/fncom.2010.00126 +Charlotte Le Mouel,Mobility as the Purpose of Postural Control.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#MouelB17,https://doi.org/10.3389/fncom.2017.00067 +Cristina Gorrostieta,Hierarchical vector auto-regressive models and their applications to multi-subject effective connectivity.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#GorrostietaFOBC13,https://doi.org/10.3389/fncom.2013.00159 +Yinlin Li,Enhanced HMAX model with feedforward feature learning for multiclass categorization.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#LiWZL15,https://doi.org/10.3389/fncom.2015.00123 +Xuefeng Qu,Topography of Synchronization of Somatosensory Evoked Potentials Elicited by Stimulation of the Sciatic Nerve in Rat.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#QuYLZL16,https://doi.org/10.3389/fncom.2016.00043 +Renato Carlos Farinha Duarte,Dynamic stability of sequential stimulus representations in adapting neuronal networks.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#DuarteM14,https://doi.org/10.3389/fncom.2014.00124 +Alan Johnston,The Role of the Harmonic Vector Average in Motion Integration.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#JohnstonS13,https://doi.org/10.3389/fncom.2013.00146 +David Kronemyer,A non-linear dynamical approach to belief revision in cognitive behavioral therapy.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#KronemyerB14,https://doi.org/10.3389/fncom.2014.00055 +Nikita Vladimirov,Shortest Loops are Pacemakers in Random Networks of Electrically Coupled Axons.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#VladimirovTT12,https://doi.org/10.3389/fncom.2012.00017 +Mahsa A. Golkar,Linear Parameter Varying Identification of Dynamic Joint Stiffness during Time-Varying Voluntary Contractions.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#GolkarSK17,https://doi.org/10.3389/fncom.2017.00035 +Peihua Feng,A Route to Chaotic Behavior of Single Neuron Exposed to External Electromagnetic Radiation.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#FengWZ17,https://doi.org/10.3389/fncom.2017.00094 +Felipe Gerhard,Extraction of Network Topology From Multi-Electrode Recordings: Is there a Small-World Effect?,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#GerhardPLNG11,https://doi.org/10.3389/fncom.2011.00004 +Yunguo Yu,Estimating the amount of information carried by a neuronal population.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#YuCKK10,https://doi.org/10.3389/fncom.2010.00010 +Mina Ranjbaran,Vestibular Compensation in Unilateral Patients Often Causes Both Gain and Time Constant Asymmetries in the VOR.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#RanjbaranKG16,https://doi.org/10.3389/fncom.2016.00026 +Amy L. Orsborn,Creating new functional circuits for action via brain-machine interfaces.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#OrsbornC13,https://doi.org/10.3389/fncom.2013.00157 +Viktor Müller,Structure and Topology Dynamics of Hyper-Frequency Networks during Rest and Auditory Oddball Performance.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#MullerPOSJL16,https://doi.org/10.3389/fncom.2016.00108 +José Luis Carrillo-Medina,Neural dynamics based on the recognition of neural fingerprints.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Carrillo-Medina15,https://doi.org/10.3389/fncom.2015.00033 +Holger Finger,Phase synchrony facilitates binding and segmentation of natural images in a coupled neural oscillator network.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#FingerK14,https://doi.org/10.3389/fncom.2013.00195 +Grzegorz Bokota,Computational Approach to Dendritic Spine Taxonomy and Shape Transition Analysis.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#BokotaMKLRP16,https://doi.org/10.3389/fncom.2016.00140 +Catalina Alvarado-Rojas,Single-unit activities during epileptic discharges in the human hippocampal formation.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#Alvarado-RojasLBBSENQ13,https://doi.org/10.3389/fncom.2013.00140 +Jason Priem,Decoupling the scholarly journal.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#PriemH12,https://doi.org/10.3389/fncom.2012.00019 +Fermín Segovia,Identifying endophenotypes of autism: a multivariate approach.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#SegoviaHSGRPPCBS14,https://doi.org/10.3389/fncom.2014.00060 +Satoshi Yamauchi,Elemental Spiking Neuron Model for Reproducing Diverse Firing Patterns and Predicting Precise Firing Times.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#YamauchiKS11,https://doi.org/10.3389/fncom.2011.00042 +Sang-Woo Park,Impact of stochastic fluctuations in the cell free layer on nitric oxide bioavailability.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ParkIT15,https://doi.org/10.3389/fncom.2015.00131 +Maciej Kaminski,The Influence of Volume Conduction on DTF Estimate and the Problem of Its Mitigation.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#KaminskiB17,https://doi.org/10.3389/fncom.2017.00036 +Katharina Dormanns,Neurovascular coupling: a parallel implementation.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#DormannsBD15,https://doi.org/10.3389/fncom.2015.00109 +Jenia Jitsev,Experience-driven formation of parts-based representations in a model of layered visual memory.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#JitsevM09,https://doi.org/10.3389/neuro.10.015.2009 +Jantsje H. Pasma,A Sensitivity Analysis of an Inverted Pendulum Balance Control Model.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#PasmaBKSS17,https://doi.org/10.3389/fncom.2017.00099 +Bertram Scheller,Spike Train Auto-Structure Impacts Post-Synaptic Firing and Timing-Based Plasticity.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#SchellerCVP11,https://doi.org/10.3389/fncom.2011.00060 +Ana Bengoetxea,Physiological modules for generating discrete and rhythmic movements: action identification by a dynamic recurrent neural network.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#BengoetxeaLHCDMC14,https://doi.org/10.3389/fncom.2014.00100 +Claire O'Callaghan,Fronto-striatal gray matter contributions to discrimination learning in Parkinson's disease.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#OCallaghanMWSRLH13,https://doi.org/10.3389/fncom.2013.00180 +Hava T. Siegelmann,Complex Systems Science and Brain Dynamics.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#Siegelmann10,https://doi.org/10.3389/fncom.2010.00007 +Minkyung Kim,Functional and Topological Conditions for Explosive Synchronization Develop in Human Brain Networks with the Onset of Anesthetic-Induced Unconsciousness.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#KimMBVTJHL16,https://doi.org/10.3389/fncom.2016.00001 +Lukas Paulun,A Retinotopic Spiking Neural Network System for Accurate Recognition of Moving Objects Using NeuCube and Dynamic Vision Sensors.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#PaulunWK18,https://doi.org/10.3389/fncom.2018.00042 +Bror Alstermark,The lateral reticular nucleus* integration of descending and ascending systems regulating voluntary forelimb movements.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#AlstermarkE15,https://doi.org/10.3389/fncom.2015.00102 +Christian Tetzlaff,Synaptic Scaling in Combination with Many Generic Plasticity Mechanisms Stabilizes Circuit Connectivity.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#TetzlaffKTW11,https://doi.org/10.3389/fncom.2011.00047 +Samantha R. Summerson,Investigating irregularly patterned deep brain stimulation signal design using biophysical models.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#SummersonAK15,https://doi.org/10.3389/fncom.2015.00078 +Konstantinos Xylouris,A three-dimensional mathematical model for the signal propagation on a neuron's membrane.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#XylourisW15,https://doi.org/10.3389/fncom.2015.00094 +Arnulf B. A. Graf,From neuronal populations to behavior: a computational journey.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#Graf14,https://doi.org/10.3389/fncom.2014.00081 +Frank Van Bussel,Inferring Synaptic Connectivity from Spatio-Temporal Spike Patterns.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#BusselKT11,https://doi.org/10.3389/fncom.2011.00003 +Brenton J. Prettejohn,Methods for Generating Complex Networks with Selected Structural Properties for Simulations: A Review and Tutorial for Neuroscientists.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#PrettejohnBM11,https://doi.org/10.3389/fncom.2011.00011 +Alessandra Paffi,Numerical characterization of intraoperative and chronic electrodes in deep brain stimulation.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#PaffiCADL15,https://doi.org/10.3389/fncom.2015.00002 +Aurel A. Lazar,Channel identification machines for multidimensional receptive fields.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#LazarS14,https://doi.org/10.3389/fncom.2014.00117 +Jane Hunter,Post-Publication Peer Review: Opening Up Scientific Conversation.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#Hunter12,https://doi.org/10.3389/fncom.2012.00063 +Mengjiao Chen,Depotentiation from Potentiated Synaptic Strength in a Tristable System of Coupled Phosphatase and Kinase.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ChenRW16,https://doi.org/10.3389/fncom.2016.00104 +James M. Tromans,Learning view invariant recognition with partially occluded objects.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#TromansHS12,https://doi.org/10.3389/fncom.2012.00048 +Abdelmalik Moujahid,Metabolic efficiency with fast spiking in the squid axon.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#MoujahidD12,https://doi.org/10.3389/fncom.2012.00095 +Brett Thomas Buttliere,Corrigendum: Using Science and Psychology to improve the dissemination and evaluation of scientific work.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#Buttliere15,https://doi.org/10.3389/fncom.2015.00053 +Akihiro Eguchi,Computational Modelling of the Neural Representation of Object Shape in the Primate Ventral Visual System.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#EguchiMEHS15,https://doi.org/10.3389/fncom.2015.00100 +Antonio Ibañez-Molina,Neurocomputational Model of EEG Complexity during Mind Wandering.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#Ibanez-MolinaI16,https://doi.org/10.3389/fncom.2016.00020 +Chuanxin Minos Niu,Emulated muscle spindle and spiking afferents validates VLSI neuromorphic hardware as a testbed for sensorimotor function and disease.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#NiuNS14,https://doi.org/10.3389/fncom.2014.00141 +Esther Florin,Commentary: Evaluation of Phase-Amplitude Coupling in Resting State Magnetoencephalographic Signals: Effect of Surrogates and Evaluation Approach.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#FlorinB18,https://doi.org/10.3389/fncom.2018.00026 +Martin J. Spencer,Compensation for Traveling Wave Delay Through Selection of Dendritic Delays Using Spike-Timing-Dependent Plasticity in a Model of the Auditory Brainstem.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#SpencerMBG18,https://doi.org/10.3389/fncom.2018.00036 +David A. Peterson,A Dynamic Circuit Hypothesis for the Pathogenesis of Blepharospasm.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#PetersonS17,https://doi.org/10.3389/fncom.2017.00011 +Sareh Zendehrouh,The hypothetical cost-conflict monitor: is it a possible trigger for conflict-driven control mechanisms in the human brain?,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#ZendehrouhGT14,https://doi.org/10.3389/fncom.2014.00077 +Oscar J. Urizar,A Hierarchical Bayesian Model for Crowd Emotions.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#UrizarBBRMR16,https://doi.org/10.3389/fncom.2016.00063 +Jonathan Binas,Learning and stabilization of winner-take-all dynamics through interacting excitatory and inhibitory plasticity.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#BinasRIP14,https://doi.org/10.3389/fncom.2014.00068 +Fabian Schönfeld,RatLab: an easy to use tool for place code simulations.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#SchonfeldW13,https://doi.org/10.3389/fncom.2013.00104 +Peter beim Graben,A biophysical observation model for field potentials of networks of leaky integrate-and-fire neurons.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#GrabenR13,https://doi.org/10.3389/fncom.2012.00100 +Pao-Yueh Hsiao,A Plastic Cortico-Striatal Circuit Model of Adaptation in Perceptual Decision.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#HsiaoL13,https://doi.org/10.3389/fncom.2013.00178 +Wilten Nicola,Mean-field models for heterogeneous networks of two-dimensional integrate and fire neurons.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#NicolaC13,https://doi.org/10.3389/fncom.2013.00184 +Chengxu Zhuang,Deep Learning Predicts Correlation between a Functional Signature of Higher Visual Areas and Sparse Firing of Neurons.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ZhuangWYH17,https://doi.org/10.3389/fncom.2017.00100 +Robert Haslinger,Missing mass approximations for the partition function of stimulus driven Ising models.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#HaslingerBGWP13,https://doi.org/10.3389/fncom.2013.00096 +Guosheng Yi,Input-output relation and energy efficiency in the neuron with different spike threshold dynamics.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#YiWTWD15,https://doi.org/10.3389/fncom.2015.00062 +Markus A. Dahlem,Cortical hot spots and labyrinths: why cortical neuromodulation for episodic migraine with aura should be personalized.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#DahlemSBBKHK15,https://doi.org/10.3389/fncom.2015.00029 +Daniel Soudry,Conductance-Based Neuron Models and the Slow Dynamics of Excitability.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#SoudryM12,https://doi.org/10.3389/fncom.2012.00004 +Chun-Kuei Su,Computational solution of spike overlapping using data-based subtraction algorithms to resolve synchronous sympathetic nerve discharge.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#SuCLFHS13,https://doi.org/10.3389/fncom.2013.00149 +Chrisantha Fernando,Selectionist and Evolutionary Approaches to Brain Function: A Critical Appraisal.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#FernandoSH12,https://doi.org/10.3389/fncom.2012.00024 +Witali Aswolinskiy,RM-SORN: A Reward-Modulated Self-Organizing Recurrent Neural Network.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#AswolinskiyP15,https://doi.org/10.3389/fncom.2015.00036 +Erick J. Paul,A neurocomputational theory of how explicit learning bootstraps early procedural learning.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#PaulA13,https://doi.org/10.3389/fncom.2013.00177 +Emiliano Torre,Statistical evaluation of synchronous spike patterns extracted by frequent item set mining.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#TorrePDBG13,https://doi.org/10.3389/fncom.2013.00132 +Fatemeh Hadaeghi,What is the mathematical description of the treated mood pattern in bipolar disorder?,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#HadaeghiGG13,https://doi.org/10.3389/fncom.2013.00106 +Michael C. Avery,Simulation of cholinergic and noradrenergic modulation of behavior in uncertain environments.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#AveryNCK12,https://doi.org/10.3389/fncom.2012.00005 +Julijana Gjorgjieva,Neural circuits for peristaltic wave propagation in crawling Drosophila larvae: analysis and modeling.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#GjorgjievaBEE13,https://doi.org/10.3389/fncom.2013.00024 +Go Ashida,Biophysical basis of the sound analog membrane potential that underlies coincidence detection in the barn owl.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#AshidaFC13a,https://doi.org/10.3389/fncom.2013.00102 +Bryan P. Tripp,Population coding in sparsely connected networks of noisy neurons.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#TrippO12,https://doi.org/10.3389/fncom.2012.00023 +Eirini Mavritsaki,Prof. Glyn Humphreys' Obituary.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#Mavritsaki16,https://doi.org/10.3389/fncom.2016.00068 +Eilen Nordlie,Rate Dynamics of Leaky Integrate-and-Fire Neurons with Strong Synapses.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#NordlieTE10,https://doi.org/10.3389/fncom.2010.00149 +Shouguo Zhao,Conduction block in myelinated axons induced by high-frequency (kHz) non-symmetric biphasic stimulation.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#ZhaoYWRGT15,https://doi.org/10.3389/fncom.2015.00086 +Masafumi Oizumi,Information Loss Associated with Imperfect Observation and Mismatched Decoding.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#OizumiOA11,https://doi.org/10.3389/fncom.2011.00009 +Shuai Ma,Altered Local Spatiotemporal Consistency of Resting-State BOLD Signals in Patients with Generalized Tonic-Clonic Seizures.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#MaJPZSLJGYL17,https://doi.org/10.3389/fncom.2017.00090 +Anis Yuniati,Synchronization and Inter-Layer Interactions of Noise-Driven Neural Networks.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#YuniatiMC17,https://doi.org/10.3389/fncom.2017.00002 +Susan Yu Gordleeva,Bi-directional astrocytic regulation of neuronal activity within a network.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#GordleevaSSDK12,https://doi.org/10.3389/fncom.2012.00092 +Xiaoxia Qu,Positive Unanimous Voting Algorithm for Focal Cortical Dysplasia Detection on Magnetic Resonance Image.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#QuYMBP16,https://doi.org/10.3389/fncom.2016.00025 +Miguel Angel Fuentes,Stochastic model predicts evolving preferences in the Iowa gambling task.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#FuentesLCMJ14,https://doi.org/10.3389/fncom.2014.00167 +Sébastien Hélie,Exploring the cognitive and motor functions of the basal ganglia: an integrative review of computational cognitive neuroscience models.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#HelieCM13,https://doi.org/10.3389/fncom.2013.00174 +Reza Sharif Razavian,A model-based approach to predict muscle synergies using optimization: application to feedback control.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#RazavianMM15,https://doi.org/10.3389/fncom.2015.00121 +Taegyo Kim,Reward Based Motor Adaptation Mediated by Basal Ganglia.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#KimHTBCLMRM17,https://doi.org/10.3389/fncom.2017.00019 +Jean Daunizeau,An electrophysiological validation of stochastic DCM for fMRI.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#DaunizeauLVFS13,https://doi.org/10.3389/fncom.2012.00103 +Johannes Bill,Compensating Inhomogeneities of Neuromorphic VLSI Devices Via Short-Term Synaptic Plasticity.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#BillSBSMM10,https://doi.org/10.3389/fncom.2010.00129 +Naohiro Takemura,A Computational Model for Aperture Control in Reach-to-Grasp Movement Based on Predictive Variability.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#TakemuraFI15,https://doi.org/10.3389/fncom.2015.00143 +Steve Yaeli,Error-Based Analysis of Optimal Tuning Functions Explains Phenomena Observed in Sensory Neurons.,2010,2010,Front. Comput. Neurosci.,,db/journals/ficn/ficn2010.html#YaeliM10,https://doi.org/10.3389/fncom.2010.00130 +Tom Bertalan,Coarse-Grained Descriptions of Dynamics for Networks with Both Intrinsic and Structural Heterogeneities.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#BertalanWLGK17,https://doi.org/10.3389/fncom.2017.00043 +Ankur Gupta,Computational model of precision grip in Parkinson's disease: a utility based approach.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#GuptaPC13,https://doi.org/10.3389/fncom.2013.00172 +Gerhard Neumann,Learning modular policies for robotics.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#NeumannDPK014,https://doi.org/10.3389/fncom.2014.00062 +Malihe Molaie,Artificial neural networks: powerful tools for modeling chaotic behavior in the nervous system.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#MolaieFGJS14,https://doi.org/10.3389/fncom.2014.00040 +Xiaolong Zou,On the Phase Relationship between Excitatory and Inhibitory Neurons in Oscillation.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#ZouW16,https://doi.org/10.3389/fncom.2016.00138 +Keir Gordon Pearson,Leg mechanics contribute to establishing swing phase trajectories during memory-guided stepping movements in walking cats: a computational analysis.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#PearsonAGS15,https://doi.org/10.3389/fncom.2015.00116 +Shuihua Wang,Wavelet Entropy and Directed Acyclic Graph Support Vector Machine for Detection of Patients with Unilateral Hearing Loss in MRI Scanning.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#WangYDYLGRYZ16,https://doi.org/10.3389/fncom.2016.00106 +Astrid Zeman,Complex cells decrease errors for the Müller-Lyer illusion in a model of the visual ventral stream.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#ZemanOB14,https://doi.org/10.3389/fncom.2014.00112 +Nalin Harischandra,Stable phase-shift despite quasi-rhythmic movements: a CPG-driven dynamic model of active tactile exploration in an insect.,2015,2015,Front. Comput. Neurosci.,,db/journals/ficn/ficn2015.html#HarischandraKD15,https://doi.org/10.3389/fncom.2015.00107 +Olesya Mokienko,Increased motor cortex excitability during motor imagery in brain-computer interface trained subjects.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#MokienkoCKBCFP13,https://doi.org/10.3389/fncom.2013.00168 +Stephen E. Robinson,Spatiotemporal imaging of complexity.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#RobinsonMC13,https://doi.org/10.3389/fncom.2012.00101 +Danke Zhang,"Design principles of the sparse coding network and the role of ""sister cells"" in the olfactory system of Drosophila.",2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#ZhangLWR13,https://doi.org/10.3389/fncom.2013.00141 +Daniel Soudry,The neuronal response at extended *cales: long-term correlations without long-term memory.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#SoudryM14,https://doi.org/10.3389/fncom.2014.00035 +Siemon de Lange,The Laplacian spectrum of neural networks.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#LangeRH14,https://doi.org/10.3389/fncom.2013.00189 +Moritz Helias,Structural plasticity controlled by calcium based correlation detection.,2008,2008,Front. Comput. Neurosci.,,db/journals/ficn/ficn2008.html#HeliasRGD08,https://doi.org/10.3389/neuro.10.007.2008 +Ariel Rokem,The benefits of cholinergic enhancement during perceptual learning are long-lasting.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#RokemS13,https://doi.org/10.3389/fncom.2013.00066 +Chris Gaiteri,The Interaction of Intrinsic Dynamics and Network Topology in Determining Network Burst Synchrony.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#GaiteriR11,https://doi.org/10.3389/fncom.2011.00010 +Miriam Zacksenhouse,Signal-independent *cale analysis (SITA) and its application for neural coding during reaching and walking.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#ZacksenhouseLN14,https://doi.org/10.3389/fncom.2014.00091 +Nicola Simola,Role of movement in long-term basal ganglia changes: implications for abnormal motor responses.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#SimolaMFF13,https://doi.org/10.3389/fncom.2013.00142 +Pascale P. Quilichini,Brain state-dependent neuronal computation.,2012,2012,Front. Comput. Neurosci.,,db/journals/ficn/ficn2012.html#QuilichiniB12,https://doi.org/10.3389/fncom.2012.00077 +Shengjun Wang,Sustained Activity in Hierarchical Modular Neural Networks: Self-Organized Criticality and Oscillations.,2011,2011,Front. Comput. Neurosci.,,db/journals/ficn/ficn2011.html#WangHZ11,https://doi.org/10.3389/fncom.2011.00030 +Omer Bar-Yosef,The effects of background noise on the neural responses to natural sounds in cat primary auditory cortex.,2007,2007,Front. Comput. Neurosci.,,db/journals/ficn/ficn2007.html#Bar-YosefN07,https://doi.org/10.3389/neuro.10.003.2007 +Xiaohan Zhang,The Effects of Medium Spiny Neuron Morphologcial Changes on Basal Ganglia Network under External Electric Field: A Computational Modeling Study.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#ZhangLZWJ17,https://doi.org/10.3389/fncom.2017.00091 +Bahar Moezzi,Modelling the influence of short term depression in vesicle release and stochastic calcium channel gating on auditory nerve spontaneous firing statistics.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#MoezziIM14,https://doi.org/10.3389/fncom.2014.00163 +Nasir Ahmad,Harmonic Training and the Formation of Pitch Representation in a Neural Network Model of the Auditory Brain.,2016,2016,Front. Comput. Neurosci.,,db/journals/ficn/ficn2016.html#AhmadHWS16,https://doi.org/10.3389/fncom.2016.00024 +Sebastian Gerwinn,Bayesian population decoding of spiking neurons.,2009,2009,Front. Comput. Neurosci.,,db/journals/ficn/ficn2009.html#GerwinnMB09,https://doi.org/10.3389/neuro.10.021.2009 +Honi Sanders,A network that performs brute-force conversion of a temporal sequence to a spatial pattern: relevance to odor recognition.,2014,2014,Front. Comput. Neurosci.,,db/journals/ficn/ficn2014.html#SandersKSRKL14,https://doi.org/10.3389/fncom.2014.00108 +Juan Carlos Vasquez,Simultaneous stability and sensitivity in model cortical networks is achieved through anti-correlations between the in- and out-degree of connectivity.,2013,2013,Front. Comput. Neurosci.,,db/journals/ficn/ficn2013.html#VasquezHT13,https://doi.org/10.3389/fncom.2013.00156 +Melvin A. Felton Jr.,Resonance Analysis as a Tool for Characterizing Functional Division of Layer 5 Pyramidal Neurons.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#FeltonYBOF18,https://doi.org/10.3389/fncom.2018.00029 +Tadej Petric,Hammering Does Not Fit Fitts' Law.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#PetricSUI17,https://doi.org/10.3389/fncom.2017.00045 +Marco Martinolli,Multi-Timescale Memory Dynamics Extend Task Repertoire in a Reinforcement Learning Network With Attention-Gated Memory.,2018,2018,Front. Comput. Neurosci.,,db/journals/ficn/ficn2018.html#MartinolliGG18,https://doi.org/10.3389/fncom.2018.00050 +Michela Balconi,Cooperation and Competition with Hyperscanning Methods: Review and Future Application to Emotion Domain.,2017,2017,Front. Comput. Neurosci.,,db/journals/ficn/ficn2017.html#BalconiV17,https://doi.org/10.3389/fncom.2017.00086 +Silien Hong,Computing a Hierarchical Static Order for Decision Diagram-Based Representation from P/T Nets.,2012,5,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc5.html#HongKPE12,https://doi.org/10.1007/978-3-642-29072-5_5 +Thomas Chatain,A Canonical Contraction for Safe Petri Nets.,2014,9,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc9.html#ChatainH14,https://doi.org/10.1007/978-3-662-45730-6_5 +Murad Banaji,Cycle Structure in SR and DSR Graphs: Implications for Multiple Equilibria and Stable Oscillation in Chemical Reaction Networks.,2012,5,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc5.html#Banaji12,https://doi.org/10.1007/978-3-642-29072-5_1 +Luca Bernardinello,Modeling Distributed Private Key Generation by Composing Petri Nets.,2014,9,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc9.html#BernardinelloKMP14,https://doi.org/10.1007/978-3-662-45730-6_2 +Fabrice Kordon,MCC'2015 - The Fifth Model Checking Contest.,2016,11,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc11.html#KordonGHPJRH16,https://doi.org/10.1007/978-3-662-53401-4_12 +Michael Westergaard,A Graphical Approach to Component-Based and Extensible Model Checking Platforms.,2012,5,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc5.html#WestergaardK12,https://doi.org/10.1007/978-3-642-29072-5_12 +David Mosteller,Integrating Petri Net Semantics in a Model-Driven Approach: The Renew Meta-Modeling and Transformation Framework.,2016,11,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc11.html#MostellerCH16,https://doi.org/10.1007/978-3-662-53401-4_5 +Lawrence Cabac,Net Components for the Integration of Process Mining into Agent-Oriented Software Engineering.,2008,1,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc1.html#CabacD08,https://doi.org/10.1007/978-3-540-89287-8_6 +Robin Bergenthum,Modeling and Mining of Learnflows.,2012,5,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc5.html#BergenthumDHM12,https://doi.org/10.1007/978-3-642-29072-5_2 +Amira Radhouani,Symbolic Search of Insider Attack Scenarios from a Formal Information System Modeling.,2015,10,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc10.html#RadhouaniILR15,https://doi.org/10.1007/978-3-662-48650-4_7 +Kais Klai,Timed Aggregate Graph: A Finite Graph Preserving Event- and State-Based Quantitative Properties of Time Petri Nets.,2015,10,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc10.html#Klai15,https://doi.org/10.1007/978-3-662-48650-4_3 +Philippe Darondeau,Distributed Control of Discrete-Event Systems: A First Step.,2012,6,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc6.html#DarondeauR12,https://doi.org/10.1007/978-3-642-35179-2_2 +Marc Solé,Incremental Process Discovery.,2012,5,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc5.html#SoleC12,https://doi.org/10.1007/978-3-642-29072-5_10 +Thomas Wagner 0003,Providing an Agent Flavored Integration for Workflow Management.,2012,5,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc5.html#WagnerQMR12,https://doi.org/10.1007/978-3-642-29072-5_11 +Michal Knapik,Bounded Model Checking for Parametric Timed Automata.,2012,5,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc5.html#KnapikP12,https://doi.org/10.1007/978-3-642-29072-5_6 +Jonathan Billington,Parameterised Coloured Petri Net Channel Models.,2009,3,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc3.html#BillingtonVG09,https://doi.org/10.1007/978-3-642-04856-2_4 +Vladimir A. Bashkin,Decidability of k -Soundness for Workflow Nets with an Unbounded Resource.,2014,9,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc9.html#BashkinL14,https://doi.org/10.1007/978-3-662-45730-6_1 +Sergey A. Shershakov,Transition Systems Reduction: Balancing Between Precision and Simplicity.,2017,12,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc12.html#ShershakovKL17,https://doi.org/10.1007/978-3-662-55862-1_6 +Kristian Bisgaard Lassen,Translating Message Sequence Charts to other Process Languages Using Process Mining.,2008,1,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc1.html#LassenD08,https://doi.org/10.1007/978-3-540-89287-8_5 +Anna Dedova,From Code to Coloured Petri Nets: Modelling Guidelines.,2013,8,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc8.html#DedovaP13,https://doi.org/10.1007/978-3-642-40465-8_4 +Paolo Baldan,Comparing Metabolic Pathways through Reactions and Potential Fluxes.,2013,8,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc8.html#BaldanCGS13,https://doi.org/10.1007/978-3-642-40465-8_1 +Alexandre Hamez,A Symbolic Model Checker for Petri Nets: pnmc.,2016,11,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc11.html#Hamez16,https://doi.org/10.1007/978-3-662-53401-4_15 +Xian Xu 0001,On Bisimulation Theory in Linear Higher-Order pi-Calculus.,2009,3,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc3.html#Xu09,https://doi.org/10.1007/978-3-642-04856-2_10 +Robert Lorenz 0001,Models from Scenarios.,2013,7,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc7.html#0001DJ13,https://doi.org/10.1007/978-3-642-38143-0_9 +Michal Knapik,Bounded Parametric Model Checking for Elementary Net Systems.,2010,4,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc4.html#KnapikSP10,https://doi.org/10.1007/978-3-642-18222-8_3 +Karsten Wolf,Running LoLA 2.0 in a Model Checking Competition.,2016,11,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc11.html#Wolf16,https://doi.org/10.1007/978-3-662-53401-4_13 +Paolo Baldan,McMillan's Complete Prefix for Contextual Nets.,2008,1,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc1.html#BaldanCKS08,https://doi.org/10.1007/978-3-540-89287-8_12 +H. M. W. Verbeek,Decomposed Replay Using Hiding and Reduction as Abstraction.,2017,12,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc12.html#Verbeek17,https://doi.org/10.1007/978-3-662-55862-1_8 +Assia Ben Shil,An Everlasting Secure Non-interactive Timestamping Scheme in the Bounded Storage Model.,2015,10,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc10.html#ShilS15,https://doi.org/10.1007/978-3-662-48650-4_2 +Michael Westergaard,Verifying Parallel Algorithms and Programs Using Coloured Petri Nets.,2012,6,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc6.html#Westergaard12,https://doi.org/10.1007/978-3-642-35179-2_7 +Jetty Kleijn,Causality in Extensions of Petri Nets.,2013,7,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc7.html#KleijnK13,https://doi.org/10.1007/978-3-642-38143-0_6 +Lars Michael Kristensen,Applications of Coloured Petri Nets for Functional Validation of Protocol Designs.,2013,7,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc7.html#KristensenS13,https://doi.org/10.1007/978-3-642-38143-0_3 +Ramchandra Phawade,Kleene Theorems for Synchronous Products with Matching.,2015,10,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc10.html#PhawadeL15,https://doi.org/10.1007/978-3-662-48650-4_5 +Somsak Vanit-Anunchai,Validating DCCP Simultaneous Feature Negotiation Procedure.,2016,11,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc11.html#Vanit-Anunchai16,https://doi.org/10.1007/978-3-662-53401-4_4 +Frank Puhlmann,A Look Around the Corner: The Pi-Calculus.,2009,2,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc2.html#PuhlmannW09,https://doi.org/10.1007/978-3-642-00899-3_4 +Jörg Desel,Negotiations and Petri Nets.,2016,11,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc11.html#DeselE16,https://doi.org/10.1007/978-3-662-53401-4_10 +Michael Westergaard,Grade/CPN: A Tool and Temporal Logic for Testing Colored Petri Net Models in Teaching.,2013,8,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc8.html#WestergaardFS13,https://doi.org/10.1007/978-3-642-40465-8_10 +Mihai-Lica Pura,Symbolic Model Checking of Security Protocols for Ad hoc Networks on any Topologies.,2015,10,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc10.html#PuraB15,https://doi.org/10.1007/978-3-662-48650-4_6 +Juan-Pablo López-Grao,A Petri Net Perspective on the Resource Allocation Problem in Software Engineering.,2012,5,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc5.html#Lopez-GraoC12,https://doi.org/10.1007/978-3-642-29072-5_8 +Jörg Desel,Vicinity Respecting Homomorphisms for Abstracting System Requirements.,2010,4,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc4.html#DeselM10,https://doi.org/10.1007/978-3-642-18222-8_1 +Lars Michael Kristensen,Teaching Modelling and Validation of Concurrent Systems Using Coloured Petri Nets.,2008,1,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc1.html#KristensenJ08,https://doi.org/10.1007/978-3-540-89287-8_2 +Fabien Bonnefoi,A Discretization Method from Coloured to Symmetric Nets: Application to an Industrial Example.,2009,3,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc3.html#BonnefoiCK09,https://doi.org/10.1007/978-3-642-04856-2_7 +H. M. W. (Eric) Verbeek,Assessing State Spaces Using Petri-Net Synthesis and Attribute-Based Visualization.,2008,1,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc1.html#VerbeekPAW08,https://doi.org/10.1007/978-3-540-89287-8_10 +Kees M. van Hee,Designing Case Handling Systems.,2008,1,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc1.html#HeeKPSW08,https://doi.org/10.1007/978-3-540-89287-8_8 +Federico Chesani,Exploiting Inductive Logic Programming Techniques for Declarative Process Mining.,2009,2,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc2.html#ChesaniLMMRS09,https://doi.org/10.1007/978-3-642-00899-3_16 +Artur Niewiadomski,SMT-Based Abstract Parametric Temporal Planning.,2015,10,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc10.html#NiewiadomskiP15,https://doi.org/10.1007/978-3-662-48650-4_4 +Antonio Brogi,A Petri Net-Based Approach to Model and Analyze the Management of Cloud Applications.,2016,11,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc11.html#BrogiCSW16,https://doi.org/10.1007/978-3-662-53401-4_2 +Julius Holderer,Log- and Model-Based Techniques for Security-Sensitive Tackling of Obstructed Workflow Executions.,2017,12,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc12.html#HoldererCTM17,https://doi.org/10.1007/978-3-662-55862-1_3 +Sami Evangelista,The ComBack Method Revisited: Caching Strategies and Extension with Delayed Duplicate Detection.,2009,3,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc3.html#EvangelistaWK09,https://doi.org/10.1007/978-3-642-04856-2_8 +Nicolas Sedlmajer,A Domain Specific Language Approach for Genetic Regulatory Mechanisms Analysis.,2012,6,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc6.html#SedlmajerBHLBM12,https://doi.org/10.1007/978-3-642-35179-2_6 +Christian Stahl,Deciding Substitutability of Services with Operating Guidelines.,2009,2,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc2.html#StahlMB09,https://doi.org/10.1007/978-3-642-00899-3_10 +Suriadi Suriadi,Privacy Compliance Verification in Cryptographic Protocols.,2012,6,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc6.html#SuriadiOF12,https://doi.org/10.1007/978-3-642-35179-2_11 +Jonas Finnemann Jensen,TAPAAL and Reachability Analysis of P/T Nets.,2016,11,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc11.html#JensenNOS16,https://doi.org/10.1007/978-3-662-53401-4_16 +Wil M. P. van der Aalst,Discovering Petri Nets from Event Logs.,2013,7,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc7.html#AalstD13,https://doi.org/10.1007/978-3-642-38143-0_10 +Suman Roy 0001,A Formal Framework for Diagnostic Analysis for Errors of Business Processes.,2016,11,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc11.html#RoyS16,https://doi.org/10.1007/978-3-662-53401-4_11 +Antti Valmari,External Behaviour of Systems of State Machines with Variables.,2013,7,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc7.html#Valmari13,https://doi.org/10.1007/978-3-642-38143-0_7 +Stefano Marrone,A SAN-Based Modeling Approach to Performance Evaluation of an IMS-Compliant Conferencing Framework.,2012,6,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc6.html#MarroneMNPRV12,https://doi.org/10.1007/978-3-642-35179-2_13 +Michael Köhler-Bußmeier,A Formal Model for Organisational Structures behind Process-Aware Information Systems.,2009,2,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc2.html#Kohler-BussmeierWM09,https://doi.org/10.1007/978-3-642-00899-3_6 +Ekkart Kindler,Modelling Local and Global Behaviour: Petri Nets and Event Coordination.,2012,6,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc6.html#Kindler12,https://doi.org/10.1007/978-3-642-35179-2_4 +Jan Mendling,Empirical Studies in Process Model Verification.,2009,2,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc2.html#Mendling09,https://doi.org/10.1007/978-3-642-00899-3_12 +Victor Khomenko,Modelling and Analysis Mobile Systems Using \pi -calculus (EFCP).,2015,10,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc10.html#KhomenkoG15,https://doi.org/10.1007/978-3-662-48650-4_8 +Jordan de la Houssaye,Formal Modelling and Analysis of Distributed Storage Systems.,2017,12,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc12.html#HoussayePD17,https://doi.org/10.1007/978-3-662-55862-1_4 +Junxian Liu,A Coloured Petri Net Approach to the Functional and Performance Analysis of SIP Non-INVITE Transaction.,2014,9,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc9.html#LiuL14,https://doi.org/10.1007/978-3-662-45730-6_8 +Wil M. P. van der Aalst,Process-Aware Information Systems: Lessons to Be Learned from Process Mining.,2009,2,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc2.html#Aalst09,https://doi.org/10.1007/978-3-642-00899-3_1 +Christine Choppy,Modelling and Formal Verification of the NEO Protocol.,2012,6,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc6.html#ChoppyDEKPY12,https://doi.org/10.1007/978-3-642-35179-2_9 +Lawrence Cabac,Modeling Organizational Structures and Agent Knowledge for Mulan Applications.,2014,9,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc9.html#CabacMW14,https://doi.org/10.1007/978-3-662-45730-6_4 +Ekkart Kindler,Model-Based Software Engineering and Process-Aware Information Systems.,2009,2,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc2.html#Kindler09,https://doi.org/10.1007/978-3-642-00899-3_2 +Kent Inge Fagerland Simonsen,Pragmatics Annotated Coloured Petri Nets for Protocol Software Generation and Verification.,2016,11,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc11.html#SimonsenKK16,https://doi.org/10.1007/978-3-662-53401-4_1 +Matthias Wester-Ebbinghaus,Modeling Organizational Units as Modular Components of Systems of Systems.,2010,4,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc4.html#Wester-EbbinghausMK10,https://doi.org/10.1007/978-3-642-18222-8_8 +Niels Lohmann,Petri Net Transformations for Business Processes - A Survey.,2009,2,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc2.html#LohmannVD09,https://doi.org/10.1007/978-3-642-00899-3_3 +Timo Sztyler,Self-tracking Reloaded: Applying Process Mining to Personalized Health Care from Labeled Sensor Data.,2016,11,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc11.html#SztylerCVS16,https://doi.org/10.1007/978-3-662-53401-4_8 +Kees M. van Hee,When Can We Trust a Third Party? - A Soundness Perspective.,2013,8,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc8.html#HeeSW13,https://doi.org/10.1007/978-3-642-40465-8_6 +Józef Winkowski,Multiplicative Transition Systems.,2017,12,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc12.html#Winkowski17,https://doi.org/10.1007/978-3-662-55862-1_9 +Luca Bernardinello,Local State Refinement and Composition of Elementary Net Systems: An Approach Based on Morphisms.,2013,8,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc8.html#BernardinelloMP13,https://doi.org/10.1007/978-3-642-40465-8_3 +Wojciech Penczek,SAT-Based (Parametric) Reachability for a Class of Distributed Time Petri Nets.,2010,4,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc4.html#PenczekPZ10,https://doi.org/10.1007/978-3-642-18222-8_4 +Christian Eisentraut,Teaching Concurrency Concepts to Freshmen.,2008,1,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc1.html#EisentrautH08,https://doi.org/10.1007/978-3-540-89287-8_3 +Luca Bernardinello,Non-interference Notions Based on Reveals and Excludes Relations for Petri Nets.,2016,11,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc11.html#BernardinelloKP16,https://doi.org/10.1007/978-3-662-53401-4_3 +Joel Ribeiro,A Method for Assessing Parameter Impact on Control-Flow Discovery Algorithms.,2016,11,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc11.html#RibeiroC16,https://doi.org/10.1007/978-3-662-53401-4_9 +Ronny Mans,Schedule-Aware Workflow Management Systems.,2010,4,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc4.html#MansRAMB10,https://doi.org/10.1007/978-3-642-18222-8_6 +Blai Bonet,Directed Unfolding of Petri Nets.,2008,1,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc1.html#BonetHHT08,https://doi.org/10.1007/978-3-540-89287-8_11 +Marco Mascheroni,Nets-Within-Nets Paradigm and Grid Computing.,2012,5,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc5.html#MascheroniF12,https://doi.org/10.1007/978-3-642-29072-5_9 +Michal Knapik,Parametric Model Checking with VerICS.,2010,4,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc4.html#KnapikNPPSZ10,https://doi.org/10.1007/978-3-642-18222-8_5 +Robin Bergenthum,Comparison of Different Algorithms to Synthesize a Petri Net from a Partial Language.,2009,3,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc3.html#BergenthumDM09,https://doi.org/10.1007/978-3-642-04856-2_9 +Mostafa Herajy,Hybrid Petri Nets for Modelling the Eukaryotic Cell Cycle.,2013,8,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc8.html#HerajySH13,https://doi.org/10.1007/978-3-642-40465-8_7 +Isaac Corro Ramos,Model Driven Testing Based on Test History.,2008,1,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc1.html#RamosBHH08,https://doi.org/10.1007/978-3-540-89287-8_9 +Robin Bergenthum,Verification of Logs - Revealing Faulty Processes of a Medical Laboratory.,2015,10,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc10.html#BergenthumS15,https://doi.org/10.1007/978-3-662-48650-4_1 +Antti Valmari,Stubborn Set Intuition Explained.,2017,12,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc12.html#ValmariH17,https://doi.org/10.1007/978-3-662-55862-1_7 +Kamila Barylska,Conditions for Petri Net Solvable Binary Words.,2016,11,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc11.html#BarylskaBEMP16,https://doi.org/10.1007/978-3-662-53401-4_7 +Manfred Reichert,Flexibility in Process-Aware Information Systems.,2009,2,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc2.html#ReichertRD09,https://doi.org/10.1007/978-3-642-00899-3_7 +Kees M. van Hee,Business Process Modeling Using Petri Nets.,2013,7,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc7.html#HeeSW13a,https://doi.org/10.1007/978-3-642-38143-0_4 +Eike Best,Structure Theory of Petri Nets.,2013,7,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc7.html#BestW13,https://doi.org/10.1007/978-3-642-38143-0_5 +Andrey Mokhov,Mining Conditional Partial Order Graphs from Event Logs.,2016,11,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc11.html#MokhovCB16,https://doi.org/10.1007/978-3-662-53401-4_6 +Christian Rohr,Simulative Model Checking of Steady State and Time-Unbounded Temporal Operators.,2013,8,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc8.html#Rohr13,https://doi.org/10.1007/978-3-642-40465-8_8 +Francesco Calzolai,TAPAs: A Tool for the Analysis of Process Algebras.,2008,1,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc1.html#CalzolaiNLT08,https://doi.org/10.1007/978-3-540-89287-8_4 +Wil M. P. van der Aalst,Strategies for Modeling Complex Processes Using Colored Petri Nets.,2013,7,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc7.html#AalstSW13,https://doi.org/10.1007/978-3-642-38143-0_2 +Pieter De Koninck,Similarity-Based Approaches for Determining the Number of Trace Clusters in Process Discovery.,2017,12,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc12.html#KoninckW17,https://doi.org/10.1007/978-3-662-55862-1_2 +Robin Bergenthum,Construction of Process Models from Example Runs.,2009,2,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc2.html#BergenthumDML09,https://doi.org/10.1007/978-3-642-00899-3_14 +Jordi Cortadella,Elasticity and Petri Nets.,2008,1,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc1.html#CortadellaKBCJ08,https://doi.org/10.1007/978-3-540-89287-8_13 +Matthias Wester-Ebbinghaus,Model-Driven Middleware Support for Team-Oriented Process Management.,2013,8,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc8.html#Wester-EbbinghausK13,https://doi.org/10.1007/978-3-642-40465-8_9 +Ala-Eddine Ben Salem,Model Checking Using Generalized Testing Automata.,2012,6,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc6.html#SalemDK12,https://doi.org/10.1007/978-3-642-35179-2_5 +Fabrice Kordon,Report on the Model Checking Contest at Petri Nets 2011.,2012,6,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc6.html#KordonLBCELLPTW12,https://doi.org/10.1007/978-3-642-35179-2_8 +Claus Brabrand,Constructive Alignment for Teaching Model-Based Design for Concurrency.,2008,1,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc1.html#Brabrand08,https://doi.org/10.1007/978-3-540-89287-8_1 +Wil M. P. van der Aalst,Soundness of Workflow Nets with Reset Arcs.,2009,3,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc3.html#AalstHHSVVW09,https://doi.org/10.1007/978-3-642-04856-2_3 +Kees M. van Hee,On-the-Fly Auditing of Business Processes.,2010,4,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc4.html#HeeHHPT10,https://doi.org/10.1007/978-3-642-18222-8_7 +Xiaoqing Jin,Symbolic Termination and Confluence Checking for ECA Rules.,2014,9,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc9.html#JinLC14,https://doi.org/10.1007/978-3-662-45730-6_6 +Boudewijn F. van Dongen,Process Mining: Overview and Outlook of Petri Net Discovery Algorithms.,2009,2,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc2.html#DongenMW09,https://doi.org/10.1007/978-3-642-00899-3_13 +Jetty Kleijn,Tissue Systems and Petri Net Synthesis.,2014,9,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc9.html#KleijnKP14,https://doi.org/10.1007/978-3-662-45730-6_7 +Wolfgang Reisig,In Memoriam: Carl Adam Petri.,2013,7,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc7.html#ReisigRT13,https://doi.org/10.1007/978-3-642-38143-0_1 +Karsten Wolf,Does My Service Have Partners?.,2009,2,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc2.html#Wolf09,https://doi.org/10.1007/978-3-642-00899-3_9 +Charles Lakos,Modelling Mobile IP with Mobile Petri Nets.,2009,3,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc3.html#Lakos09,https://doi.org/10.1007/978-3-642-04856-2_6 +Boudewijn F. van Dongen,Aggregating Causal Runs into Workflow Nets.,2012,6,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc6.html#DongenDA12,https://doi.org/10.1007/978-3-642-35179-2_14 +Ralph Mietzner,Business Grid: Combining Web Services and the Grid.,2009,2,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc2.html#MietznerKL09,https://doi.org/10.1007/978-3-642-00899-3_8 +Tobias Betz,Software Engineering with Petri Nets: A Web Service and Agent Perspective.,2014,9,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc9.html#BetzCDWW14,https://doi.org/10.1007/978-3-662-45730-6_3 +Gianfranco Ciardo,Ten Years of Saturation: A Petri Net Perspective.,2012,5,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc5.html#CiardoZJ12,https://doi.org/10.1007/978-3-642-29072-5_3 +Marco Montali,DB-Nets: On the Marriage of Colored Petri Nets and Relational Databases.,2017,12,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc12.html#MontaliR17,https://doi.org/10.1007/978-3-662-55862-1_5 +Maciej Koutny,Synthesis Problem for Petri Nets with Localities.,2012,5,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc5.html#KoutnyP12,https://doi.org/10.1007/978-3-642-29072-5_7 +Lom-Messan Hillah,Extending pnml Scope: A Framework to Combine Petri Nets Types.,2012,6,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc6.html#HillahKLP12,https://doi.org/10.1007/978-3-642-35179-2_3 +Grégoire Danoy,A Multi-Agent Organizational Framework for Coevolutionary Optimization.,2010,4,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc4.html#DanoyBB10,https://doi.org/10.1007/978-3-642-18222-8_9 +Sonya Arnold,An Initial Coloured Petri Net Model of the Hypertext Transfer Protocol Operating over the Transmission Control Protocol.,2012,6,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc6.html#ArnoldB12,https://doi.org/10.1007/978-3-642-35179-2_10 +Nick C. Russell,Designing a Workflow System Using Coloured Petri Nets.,2009,3,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc3.html#RussellAH09,https://doi.org/10.1007/978-3-642-04856-2_1 +Nick Russell,newYAWL: Towards Workflow 2.0.,2009,2,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc2.html#RussellH09,https://doi.org/10.1007/978-3-642-00899-3_5 +Yann Ben Maissa,Modeling and Analyzing Wireless Sensor Networks with VeriSensor: An Integrated Workflow.,2013,8,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc8.html#MaissaKMT13,https://doi.org/10.1007/978-3-642-40465-8_2 +R. S. Mans,From Requirements via Colored Workflow Nets to an Implementation in Several Workflow Systems.,2009,3,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc3.html#MansARBMLJ09,https://doi.org/10.1007/978-3-642-04856-2_2 +Sami Evangelista,Search-Order Independent State Caching.,2010,4,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc4.html#EvangelistaK10,https://doi.org/10.1007/978-3-642-18222-8_2 +Kees M. van Hee,A Framework for Linking and Pricing No-Cure-No-Pay Services.,2009,2,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc2.html#HeeVSS09,https://doi.org/10.1007/978-3-642-00899-3_11 +Monika Heiner,MARCIE's Secrets of Efficient Model Checking.,2016,11,T. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc11.html#HeinerRST16,https://doi.org/10.1007/978-3-662-53401-4_14 +Agata Janowska,Using Integer Time Steps for Checking Branching Time Properties of Time Petri Nets.,2013,8,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc8.html#JanowskaPPZ13,https://doi.org/10.1007/978-3-642-40465-8_5 +Wolfgang Reisig,The Synthesis Problem.,2013,7,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc7.html#Reisig13,https://doi.org/10.1007/978-3-642-38143-0_8 +Dario Bruneo,Modeling Energy-Aware Cloud Federations with SRNs.,2012,6,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc6.html#BruneoLP12,https://doi.org/10.1007/978-3-642-35179-2_12 +Josep Carmona,The Label Splitting Problem.,2012,6,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc6.html#Carmona12,https://doi.org/10.1007/978-3-642-35179-2_1 +Jonathan Billington,On Modelling and Analysing the Dynamic MANET On-Demand (DYMO) Routing Protocol.,2009,3,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc3.html#BillingtonY09,https://doi.org/10.1007/978-3-642-04856-2_5 +Djaouida Dahmani,Time Recursive Petri Nets.,2008,1,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc1.html#DahmaniIB08,https://doi.org/10.1007/978-3-540-89287-8_7 +Hong Linh Truong,Online Interaction Analysis Framework for Ad-Hoc Collaborative Processes in SOA-Based Environments.,2009,2,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc2.html#TruongD09,https://doi.org/10.1007/978-3-642-00899-3_15 +Dorsaf Elhog-Benzina,Refinement and Asynchronous Composition of Modal Petri Nets.,2012,5,Trans. Petri Nets and Other Models of Concurrency,,db/journals/topnoc/topnoc5.html#Elhog-BenzinaHH12,https://doi.org/10.1007/978-3-642-29072-5_4 +Hui Zhang,Diffusion of e-government: A literature review and directions for future directions.,2014,31,Government Information Quarterly,4,db/journals/giq/giq31.html#ZhangXX14,https://doi.org/10.1016/j.giq.2013.10.013 +Yupan Zhao,Exploring open government data capacity of government agency: Based on the resource-based theory.,2018,35,Government Information Quarterly,1,db/journals/giq/giq35.html#ZhaoF18,https://doi.org/10.1016/j.giq.2018.01.002 +Wolfgang E. Ebbers,Impact of the digital divide on e-government: Expanding from channel choice to channel usage.,2016,33,Government Information Quarterly,4,db/journals/giq/giq33.html#EbbersJD16,https://doi.org/10.1016/j.giq.2016.08.007 +Ibrahim H. Osman,COBRA framework to evaluate e-government services: A citizen-centric perspective.,2014,31,Government Information Quarterly,2,db/journals/giq/giq31.html#OsmanAIALBMW14,https://doi.org/10.1016/j.giq.2013.10.009 +Albert Meijer,Social media strategies: Understanding the differences between North American police departments.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#MeijerT13,https://doi.org/10.1016/j.giq.2013.05.023 +Yi-Shun Wang,Assessing eGovernment systems success: A validation of the DeLone and McLean model of information systems success.,2008,25,Government Information Quarterly,4,db/journals/giq/giq25.html#WangL08,https://doi.org/10.1016/j.giq.2007.06.002 +Frank Lambert,Assessing the authoritativeness of Canadian and American health documents: a comparative analysis using informetric methodologies.,2005,22,Government Information Quarterly,2,db/journals/giq/giq22.html#Lambert05,https://doi.org/10.1016/j.giq.2005.01.002 +Henry H. Perritt Jr.,Freedom of information spreads to Europe.,2000,17,Government Information Quarterly,4,db/journals/giq/giq17.html#PerrittR00,https://doi.org/10.1016/S0740-624X(00)00050-2 +Rex Arendsen,Does e-government reduce the administrative burden of businesses? An assessment of business-to-government systems usage in the Netherlands.,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#ArendsenPHD14,https://doi.org/10.1016/j.giq.2013.09.002 +Lucio Lamberti,Benefits sought by citizens and channel attitudes for multichannel payment services: Evidence from Italy.,2014,31,Government Information Quarterly,4,db/journals/giq/giq31.html#LambertiBC14,https://doi.org/10.1016/j.giq.2014.03.002 +Hector Jasso,Using 9-1-1 call data and the space-time permutation scan statistic for emergency event detection.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#JassoHBFRW09,https://doi.org/10.1016/j.giq.2008.12.005 +Kawika Pierson,How you buy affects what you get: Technology acquisition by state governments.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#PiersonT16,https://doi.org/10.1016/j.giq.2016.06.003 +Andrew M. Sberman,To the editor.,1999,16,Government Information Quarterly,3,db/journals/giq/giq16.html#Sberman99,https://doi.org/10.1016/S0740-624X(99)80030-6 +Harry Bouwman,Governments as electronic publishers? The Dutch case.,1999,16,Government Information Quarterly,1,db/journals/giq/giq16.html#BouwmanN99,https://doi.org/10.1016/S0740-624X(99)80014-8 +Maggie Farrell,Quality management and building government information services.,1998,15,Government Information Quarterly,1,db/journals/giq/giq15.html#Farrell98,https://doi.org/10.1016/S0740-624X(98)90018-1 +Luca Urciuoli,Drivers and barriers affecting usage of e-Customs - A global survey with customs administrations using multivariate analysis techniques.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#UrciuoliHA13,https://doi.org/10.1016/j.giq.2013.06.001 +,Chongqing Municipal Government Legal Affairs Office: Basic situation of construction and implementation of the open government information system in Chongqing Municipality.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#X06b,https://doi.org/10.1016/j.giq.2006.02.002 +Dimitris Apostolou,A collaborative decision framework for managing changes in e-Government services.,2011,28,Government Information Quarterly,1,db/journals/giq/giq28.html#ApostolouMSTL11,https://doi.org/10.1016/j.giq.2010.03.007 +Jensen J. Zhao,Opportunities and threats: A security assessment of state e-government websites.,2010,27,Government Information Quarterly,1,db/journals/giq/giq27.html#ZhaoZZ10,https://doi.org/10.1016/j.giq.2009.07.004 +John Carlo Bertot,Author/Title Index.,2004,21,Government Information Quarterly,4,db/journals/giq/giq21.html#Bertot04b,https://doi.org/10.1016/j.giq.2004.09.002 +Sounman Hong,Adaptive governance and decentralization: Evidence from regulation of the sharing economy in multi-level governance.,2018,35,Government Information Quarterly,2,db/journals/giq/giq35.html#HongL18a,https://doi.org/10.1016/j.giq.2017.08.002 +Mairéad de Róiste,Bringing in the users: The role for usability evaluation in eGovernment.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#Roiste13,https://doi.org/10.1016/j.giq.2013.05.007 +Luis Fernando Ramos Simón,The path to information in the public domain: Official publications in Spain.,2010,27,Government Information Quarterly,1,db/journals/giq/giq27.html#SimonB10,https://doi.org/10.1016/j.giq.2008.07.002 +Christine McMahon,Floridashealth.com.,2012,29,Government Information Quarterly,3,db/journals/giq/giq29.html#McMahon12,https://doi.org/10.1016/j.giq.2012.05.003 +Maria Ntaliani,Mobile government: A challenge for agriculture.,2008,25,Government Information Quarterly,4,db/journals/giq/giq25.html#NtalianiCK08,https://doi.org/10.1016/j.giq.2007.04.010 +Christopher G. Reddick,The perceived impacts of e-government on U.S. cities: A survey of Florida and Texas City managers.,2007,24,Government Information Quarterly,3,db/journals/giq/giq24.html#ReddickF07,https://doi.org/10.1016/j.giq.2006.09.004 +Natalie Helbig,Understanding the complexity of electronic government: Implications from the digital divide literature.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#HelbigGF09,https://doi.org/10.1016/j.giq.2008.05.004 +Paul T. Jaeger,Deliberative democracy and the conceptual foundations of electronic government.,2005,22,Government Information Quarterly,4,db/journals/giq/giq22.html#Jaeger05,https://doi.org/10.1016/j.giq.2006.01.012 +Viswanath Venkatesh,A usability evaluation of the Obamacare website.,2014,31,Government Information Quarterly,4,db/journals/giq/giq31.html#VenkateshHA14,https://doi.org/10.1016/j.giq.2014.07.003 +Andrew Whitmore,Using open government data to predict war: A case study of data and systems challenges.,2014,31,Government Information Quarterly,4,db/journals/giq/giq31.html#Whitmore14,https://doi.org/10.1016/j.giq.2014.04.003 +Harold C. Relyea,Declassification review of congressional records.,2011,28,Government Information Quarterly,1,db/journals/giq/giq28.html#Relyea11,https://doi.org/10.1016/j.giq.2010.09.001 +David L. Baker,Advancing E-Government performance in the United States through enhanced usability benchmarks.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#Baker09,https://doi.org/10.1016/j.giq.2008.01.004 +Jooho Lee,The willingness of e-Government service adoption by business users: The role of offline service quality and trust in technology.,2011,28,Government Information Quarterly,2,db/journals/giq/giq28.html#LeeKA11,https://doi.org/10.1016/j.giq.2010.07.007 +Frank A. G. den Butter,Using IT to engender trust in government-to-business relationships: The Authorized Economic Operator (AEO) as an example.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#ButterLT12,https://doi.org/10.1016/j.giq.2011.05.004 +Brian Detlor,Information quality and community municipal portal use.,2013,30,Government Information Quarterly,1,db/journals/giq/giq30.html#DetlorHRZ13,https://doi.org/10.1016/j.giq.2012.08.004 +R. David Lankes,Grabbing ERIC by the tail: Introducing the ERIC commissioned papers.,2001,18,Government Information Quarterly,1,db/journals/giq/giq18.html#Lankes01,https://doi.org/10.1016/S0740-624X(00)00061-7 +DongBack Seo,Comparing attitudes toward e-government of non-users versus users in a rural and urban municipality.,2016,33,Government Information Quarterly,2,db/journals/giq/giq33.html#SeoB16,https://doi.org/10.1016/j.giq.2016.02.002 +Jeong Min Choi,Factors influencing public officials' responses to requests for information disclosure.,2018,35,Government Information Quarterly,1,db/journals/giq/giq35.html#Choi18,https://doi.org/10.1016/j.giq.2017.11.007 +Lee S. Strickland,The information gulag: Rethinking openness in * of national danger.,2005,22,Government Information Quarterly,4,db/journals/giq/giq22.html#Strickland05,https://doi.org/10.1016/j.giq.2006.01.005 +Gabriel Puron Cid,The effects of contextual factors into different features of financial transparency at the municipal level.,2018,35,Government Information Quarterly,1,db/journals/giq/giq35.html#CidB18,https://doi.org/10.1016/j.giq.2017.10.005 +Eric Afful-Dadzie,Open Government Data in Africa: A preference elicitation analysis of media practitioners.,2017,34,Government Information Quarterly,2,db/journals/giq/giq34.html#Afful-DadzieA17,https://doi.org/10.1016/j.giq.2017.02.005 +Jeannine E. Relly,How business lobby networks shaped the U.S. Freedom of Information Act: An examination of 60 years of congressional testimony.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#RellyS16,https://doi.org/10.1016/j.giq.2016.05.002 +John Carlo Bertot,Universal service in a global networked environment: Selected issues and possible approaches.,1999,16,Government Information Quarterly,4,db/journals/giq/giq16.html#BertotMO99,https://doi.org/10.1016/S0740-624X(00)86837-9 +Sharon Strover,The prospects for broadband deployment in rural America.,2003,20,Government Information Quarterly,2,db/journals/giq/giq20.html#Strover03,https://doi.org/10.1016/S0740-624X(03)00038-8 +Nadine Strauß,Digital diplomacy in GCC countries: Strategic communication of Western embassies on Twitter.,2015,32,Government Information Quarterly,4,db/journals/giq/giq32.html#StraussKMN15,https://doi.org/10.1016/j.giq.2015.08.001 +Antonio Cordella,A public value perspective for ICT enabled public sector reforms: A theoretical reflection.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#CordellaB12,https://doi.org/10.1016/j.giq.2012.03.004 +Shahjahan H. Bhuiyan,Modernizing Bangladesh public administration through e-governance: Benefits and challenges.,2011,28,Government Information Quarterly,1,db/journals/giq/giq28.html#Bhuiyan11,https://doi.org/10.1016/j.giq.2010.04.006 +Tony Dwi Susanto,User acceptance of SMS-based e-government services: Differences between adopters and non-adopters.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#SusantoG13,https://doi.org/10.1016/j.giq.2013.05.010 +Endrit Kromidha,Strategic e-government development and the role of benchmarking.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#Kromidha12,https://doi.org/10.1016/j.giq.2012.04.006 +Loni Hagen,E-petition popularity: Do linguistic and semantic factors matter?,2016,33,Government Information Quarterly,4,db/journals/giq/giq33.html#HagenHUMFK16,https://doi.org/10.1016/j.giq.2016.07.006 +Kyujin Jung,Tracing interorganizational information networks during emergency response period: A webometric approach to the 2012 Gumi chemical spill in South Korea.,2016,33,Government Information Quarterly,1,db/journals/giq/giq33.html#JungP16,https://doi.org/10.1016/j.giq.2015.09.010 +Kevin C. Desouza,Restructuring government intelligence programs: A few good suggestions.,2005,22,Government Information Quarterly,3,db/journals/giq/giq22.html#Desouza05,https://doi.org/10.1016/j.giq.2005.05.001 +Enrique Bonsón,Citizens' engagement on local governments' Facebook sites. An empirical analysis: The impact of different media and content types in Western Europe.,2015,32,Government Information Quarterly,1,db/journals/giq/giq32.html#BonsonRR15,https://doi.org/10.1016/j.giq.2014.11.001 +Frank L. K. Ohemeng,One way traffic: The open data initiative project and the need for an effective demand side initiative in Ghana.,2015,32,Government Information Quarterly,4,db/journals/giq/giq32.html#OhemengO15,https://doi.org/10.1016/j.giq.2015.07.005 +Ines Mergel,A framework for interpreting social media interactions in the public sector.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#Mergel13a,https://doi.org/10.1016/j.giq.2013.05.015 +Rodrigo Sandoval-Almazán,Towards cyberactivism 2.0? Understanding the use of social media and other information technologies for political activism and social movements.,2014,31,Government Information Quarterly,3,db/journals/giq/giq31.html#Sandoval-Almazan14,https://doi.org/10.1016/j.giq.2013.10.016 +Aizhan Tursunbayeva,Use of social media for e-Government in the public health sector: A systematic review of published studies.,2017,34,Government Information Quarterly,2,db/journals/giq/giq34.html#TursunbayevaFP17,https://doi.org/10.1016/j.giq.2017.04.001 +João Rosa,Risk factors in e-justice information systems.,2013,30,Government Information Quarterly,3,db/journals/giq/giq30.html#RosaTP13,https://doi.org/10.1016/j.giq.2013.02.002 +Daniel J. Metcalfe,The nature of government secrecy.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#Metcalfe09,https://doi.org/10.1016/j.giq.2009.02.001 +Myongho Yi,Comparison of social media use for the U.S. and the Korean governments.,2013,30,Government Information Quarterly,3,db/journals/giq/giq30.html#YiOK13,https://doi.org/10.1016/j.giq.2013.01.004 +Miriam D. Rosenthal,Striving for perfection: a brief history of advances and undercounts in the U.S. Census.,2000,17,Government Information Quarterly,2,db/journals/giq/giq17.html#Rosenthal00,https://doi.org/10.1016/S0740-624X(00)00027-7 +Ines Mergel,Social media adoption and resulting tactics in the U.S. federal government.,2013,30,Government Information Quarterly,2,db/journals/giq/giq30.html#Mergel13,https://doi.org/10.1016/j.giq.2012.12.004 +Hans Jochen Scholl,Forums for electronic government scholars: Insights from a 2012/2013 study.,2014,31,Government Information Quarterly,2,db/journals/giq/giq31.html#SchollD14,https://doi.org/10.1016/j.giq.2013.10.008 +Wolfgang E. Ebbers,Facts and feelings: The role of rational and irrational factors in citizens' channel choices.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#EbbersJPW16,https://doi.org/10.1016/j.giq.2016.06.001 +Arild Jansen,The nature of public e-services and their quality dimensions.,2016,33,Government Information Quarterly,4,db/journals/giq/giq33.html#JansenO16,https://doi.org/10.1016/j.giq.2016.08.005 +Wolfgang E. Ebbers,Electronic government: Rethinking channel management strategies.,2008,25,Government Information Quarterly,2,db/journals/giq/giq25.html#EbbersPN08,https://doi.org/10.1016/j.giq.2006.11.003 +Lukasz Porwol,An ontology for next generation e-Participation initiatives.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#PorwolOB16,https://doi.org/10.1016/j.giq.2016.01.007 +Björn Niehaves,Business process management capabilities in local governments: A multi-method study.,2013,30,Government Information Quarterly,3,db/journals/giq/giq30.html#NiehavesPB13,https://doi.org/10.1016/j.giq.2013.03.002 +Aderonke A. Oni,Empirical study of user acceptance of online political participation: Integrating Civic Voluntarism Model and Theory of Reasoned Action.,2017,34,Government Information Quarterly,2,db/journals/giq/giq34.html#OniOMA17,https://doi.org/10.1016/j.giq.2017.02.003 +Barbara J. Costello,Moving in the right direction: Developments in the online availability of full-text Congressional committee hearing transcripts.,2008,25,Government Information Quarterly,1,db/journals/giq/giq25.html#Costello08,https://doi.org/10.1016/j.giq.2007.05.003 +Isabel Gallego álvarez,Are determining factors of municipal E-government common to a worldwide municipal view? An intra-country comparison.,2010,27,Government Information Quarterly,4,db/journals/giq/giq27.html#AlvarezDG10,https://doi.org/10.1016/j.giq.2009.12.011 +Dennis Linders,Towards open development: Leveraging open data to improve the planning and coordination of international aid.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#Linders13,https://doi.org/10.1016/j.giq.2013.04.001 +Fatemeh Ahmadi Zeleti,Exploring the economic value of open government data.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#ZeletiOC16,https://doi.org/10.1016/j.giq.2016.01.008 +Ines Mergel,Agile government: Systematic literature review and future research.,2018,35,Government Information Quarterly,2,db/journals/giq/giq35.html#MergelGB18,https://doi.org/10.1016/j.giq.2018.04.003 +Lynette Kvasny,e-Government services for faith-based organizations: Bridging the organizational divide.,2011,28,Government Information Quarterly,1,db/journals/giq/giq28.html#KvasnyL11,https://doi.org/10.1016/j.giq.2010.03.006 +Fernando Mendez,What drives fidelity to internet voting? Evidence from the roll-out of internet voting in Switzerland.,2017,34,Government Information Quarterly,3,db/journals/giq/giq34.html#MendezS17,https://doi.org/10.1016/j.giq.2017.05.005 +John de Reuck,Universal service in a participatory democracy: A perspective from Australia.,1999,16,Government Information Quarterly,4,db/journals/giq/giq16.html#ReuckJ99,https://doi.org/10.1016/S0740-624X(00)86839-2 +Yushim Kim,Digital government and wicked problems.,2016,33,Government Information Quarterly,4,db/journals/giq/giq33.html#KimZ16,https://doi.org/10.1016/j.giq.2016.10.004 +Chi-Shiou Lin,Selection practices for Web-based government publications in state depository library programs: Comparing active and passive approaches.,2008,25,Government Information Quarterly,1,db/journals/giq/giq25.html#LinE08,https://doi.org/10.1016/j.giq.2007.01.005 +Calvin M. L. Chan,E-government implementation: A macro analysis of Singapore's e-government initiatives.,2008,25,Government Information Quarterly,2,db/journals/giq/giq25.html#ChanLP08,https://doi.org/10.1016/j.giq.2006.04.011 +Godwin Kaisara,The e-Government evaluation challenge: A South African Batho Pele-aligned service quality approach.,2011,28,Government Information Quarterly,2,db/journals/giq/giq28.html#KaisaraP11,https://doi.org/10.1016/j.giq.2010.07.008 +Yvon van den Boer,Towards a model of source and channel choices in business-to-government service interactions: A structural equation modeling approach.,2017,34,Government Information Quarterly,3,db/journals/giq/giq34.html#BoerPAD17,https://doi.org/10.1016/j.giq.2017.07.002 +Jesper B. Berger,Does local government staff perceive digital communication with citizens as improved service?,2016,33,Government Information Quarterly,2,db/journals/giq/giq33.html#BergerHS16,https://doi.org/10.1016/j.giq.2016.03.003 +John Carlo Bertot,About the authors.,2003,20,Government Information Quarterly,4,db/journals/giq/giq20.html#Bertot03a,https://doi.org/10.1016/j.giq.2003.09.006 +Harla J. Frank,Index to Volume 22.,2005,22,Government Information Quarterly,4,db/journals/giq/giq22.html#Frank05,https://doi.org/10.1016/j.giq.2006.01.010 +Heather Lea Moulaison,The Minitel and France's legacy of democratic information access.,2004,21,Government Information Quarterly,1,db/journals/giq/giq21.html#Moulaison04,https://doi.org/10.1016/j.giq.2003.11.003 +Liesbet van Zoonen,Privacy concerns in smart cities.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#Zoonen16,https://doi.org/10.1016/j.giq.2016.06.004 +Rianne Dekker,The contingency of governments' responsiveness to the virtual public sphere: A systematic literature review and meta-synthesis.,2015,32,Government Information Quarterly,4,db/journals/giq/giq32.html#DekkerB15,https://doi.org/10.1016/j.giq.2015.09.007 +Fredrik Karlsson,Exploring user participation approaches in public e-service development.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#KarlssonHSH12,https://doi.org/10.1016/j.giq.2011.07.009 +Daihua Xie Yu,U.S. state government websites demonstrate better in terms of accessibility compared to federal government and commercial websites.,2011,28,Government Information Quarterly,4,db/journals/giq/giq28.html#YuP11,https://doi.org/10.1016/j.giq.2011.04.001 +Sevgi Ozkan,e-Government adoption model based on theory of planned behavior: Empirical validation.,2011,28,Government Information Quarterly,4,db/journals/giq/giq28.html#OzkanK11,https://doi.org/10.1016/j.giq.2010.10.007 +Yogesh Kumar Dwivedi,An empirical validation of a unified model of electronic government adoption (UMEGA).,2017,34,Government Information Quarterly,2,db/journals/giq/giq34.html#DwivediRJLWC17,https://doi.org/10.1016/j.giq.2017.03.001 +Sharon S. Dawes,Transnational public sector knowledge networks: A comparative study of contextual distances.,2018,35,Government Information Quarterly,2,db/journals/giq/giq35.html#DawesG18,https://doi.org/10.1016/j.giq.2018.02.002 +Anteneh Ayanso,An analytics approach to exploring the link between ICT development and affordability.,2015,32,Government Information Quarterly,4,db/journals/giq/giq32.html#AyansoL15,https://doi.org/10.1016/j.giq.2015.09.009 +Antonio Muñoz-Cañavate,The World Wide Web as an information system in Spain's regional administrations (1997-2000).,2004,21,Government Information Quarterly,2,db/journals/giq/giq21.html#Munoz-CanavateN04,https://doi.org/10.1016/j.giq.2004.01.004 +Joanne M. Kuzma,Accessibility design issues with UK e-government sites.,2010,27,Government Information Quarterly,2,db/journals/giq/giq27.html#Kuzma10,https://doi.org/10.1016/j.giq.2009.10.004 +John A. Shuler,Reviews.,2001,18,Government Information Quarterly,2,db/journals/giq/giq18.html#Shuler01a,https://doi.org/10.1016/S0740-624X(01)00068-5 +Karen Hogenboom,Lessons learned about access to government information after World War II can be applied after September 11.,2008,25,Government Information Quarterly,1,db/journals/giq/giq25.html#Hogenboom08,https://doi.org/10.1016/j.giq.2007.08.002 +Antonio Muñoz-Cañavate,Electronic administration in Spain: From its beginnings to the present.,2011,28,Government Information Quarterly,1,db/journals/giq/giq28.html#Munoz-CanavateH11,https://doi.org/10.1016/j.giq.2010.05.008 +Tara Das,Measuring scholarly use of government information: An altmetrics analysis of federal statistics.,2015,32,Government Information Quarterly,3,db/journals/giq/giq32.html#Das15,https://doi.org/10.1016/j.giq.2015.05.002 +Vishanth Weerakkody,Digitally-enabled service transformation in the public sector: The lure of institutional pressure and strategic response towards change.,2016,33,Government Information Quarterly,4,db/journals/giq/giq33.html#WeerakkodyOEA16,https://doi.org/10.1016/j.giq.2016.06.006 +Louis Fisher,A response to Bert Chapman's review of In the Name of National Security: Unchecked Presidential Power and the Reynolds Case (2006).,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#Fisher09,https://doi.org/10.1016/j.giq.2009.02.002 +Rik Peeters,The digital cage: Administrative exclusion through information architecture - The case of the Dutch civil registry's master data management system.,2018,35,Government Information Quarterly,2,db/journals/giq/giq35.html#PeetersW18,https://doi.org/10.1016/j.giq.2018.02.003 +Claudene Sproles,United States Department of Justice home page.,2005,22,Government Information Quarterly,2,db/journals/giq/giq22.html#Sproles05,https://doi.org/10.1016/j.giq.2004.06.001 +Fang Wang,Explaining the low utilization of government websites: Using a grounded theory approach.,2014,31,Government Information Quarterly,4,db/journals/giq/giq31.html#Wang14,https://doi.org/10.1016/j.giq.2014.04.004 +,Decree No 8 of the Guangzhou Municipal People's Government: Guangzhou municipal provisions on open government information.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#X06,https://doi.org/10.1016/j.giq.2006.02.004 +Carole A. Ambler,Introducing the North American industry classification system.,1998,15,Government Information Quarterly,3,db/journals/giq/giq15.html#AmblerK98,https://doi.org/10.1016/S0740-624X(98)90003-X +Agneta Ranerup,The socio-material pragmatics of e-governance mobilization.,2012,29,Government Information Quarterly,3,db/journals/giq/giq29.html#Ranerup12,https://doi.org/10.1016/j.giq.2012.02.012 +Akemi Takeoka Chatfield,Tsunami early warnings via Twitter in government: Net-savvy citizens' co-production of time-critical public information services.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#ChatfieldSB13,https://doi.org/10.1016/j.giq.2013.05.021 +Ann Roselle,Internet-related work activities and academic government documents librarians' professional relationships.,1999,16,Government Information Quarterly,2,db/journals/giq/giq16.html#Roselle99,https://doi.org/10.1016/S0740-624X(99)80005-7 +Shu-Ching Chen,Florida public hurricane loss model: Research in multi-disciplinary system integration assisting government policy making.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#ChenCZHCA09,https://doi.org/10.1016/j.giq.2008.12.004 +Lorraine Kram,Why continue to be a depository library if it is all on the internet anyway?,1998,15,Government Information Quarterly,1,db/journals/giq/giq15.html#Kram98,https://doi.org/10.1016/S0740-624X(98)90015-6 +Filipe Sá,From the quality of traditional services to the quality of local e-Government online services: A literature review.,2016,33,Government Information Quarterly,1,db/journals/giq/giq33.html#SaRC16,https://doi.org/10.1016/j.giq.2015.07.004 +Staci M. Zavattaro,A critical examination of social media adoption in government: Introducing omnipresence.,2014,31,Government Information Quarterly,2,db/journals/giq/giq31.html#ZavattaroS14,https://doi.org/10.1016/j.giq.2013.10.007 +Luis Guijarro,Interoperability frameworks and enterprise architectures in e-government initiatives in Europe and the United States.,2007,24,Government Information Quarterly,1,db/journals/giq/giq24.html#Guijarro07,https://doi.org/10.1016/j.giq.2006.05.003 +Jamie P. Horsley,Introduction on open government information implementation.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#Horsley06,https://doi.org/10.1016/j.giq.2006.02.007 +Dave Gelders,The influence of warning messages on the public's perception of substance use: A theoretical framework.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#GeldersPVSMNRPD09,https://doi.org/10.1016/j.giq.2008.11.006 +Christian Leuprecht,Beyond the Castle Model of cyber-risk and cyber-security.,2016,33,Government Information Quarterly,2,db/journals/giq/giq33.html#LeuprechtST16,https://doi.org/10.1016/j.giq.2016.01.012 +Ann Quarzo,Plans for census 2000.,2000,17,Government Information Quarterly,2,db/journals/giq/giq17.html#Quarzo00,https://doi.org/10.1016/S0740-624X(00)00020-4 +John Carlo Bertot,About the authors.,2004,21,Government Information Quarterly,4,db/journals/giq/giq21.html#Bertot04a,https://doi.org/10.1016/j.giq.2004.09.001 +Ron Sepic,The national biological information infrastructure as an E-government tool.,2002,19,Government Information Quarterly,4,db/journals/giq/giq19.html#SepicK02,https://doi.org/10.1016/S0740-624X(02)00120-X +John A. Shuler,Introduction.,1998,15,Government Information Quarterly,1,db/journals/giq/giq15.html#ShulerC98a,https://doi.org/10.1016/S0740-624X(98)90017-X +Xian Gao,E-government services and social media adoption: Experience of small local governments in Nebraska state.,2017,34,Government Information Quarterly,4,db/journals/giq/giq34.html#GaoL17,https://doi.org/10.1016/j.giq.2017.09.005 +Dong-Hee Shin,Evaluation of Korean information infrastructure policy 2000-2010: Focusing on broadband ecosystem change.,2011,28,Government Information Quarterly,3,db/journals/giq/giq28.html#ShinK11,https://doi.org/10.1016/j.giq.2010.07.009 +Aimée C. Quinn,LexisNexis U.S. Serial Set Digital Collection.,2005,22,Government Information Quarterly,4,db/journals/giq/giq22.html#Quinn05,https://doi.org/10.1016/j.giq.2006.01.006 +Jesper Holgersson,Public e-service development: Understanding citizens' conditions for participation.,2014,31,Government Information Quarterly,3,db/journals/giq/giq31.html#HolgerssonK14,https://doi.org/10.1016/j.giq.2014.02.006 +Eileen Quam,Informing and evaluating a metadata initiative: Usability and metadata studies in Minnesota's Foundations Project.,2001,18,Government Information Quarterly,3,db/journals/giq/giq18.html#Quam01,https://doi.org/10.1016/S0740-624X(01)00075-2 +Kyong Rae Lee,The Korean government's electronic record management reform: The promise and perils of digital democratization.,2009,26,Government Information Quarterly,3,db/journals/giq/giq26.html#LeeL09,https://doi.org/10.1016/j.giq.2009.03.007 +Gabriel Marcuzzo do Canto Cavalheiro,Towards a heuristic frame for transferring e-government technology.,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#CavalheiroJ14,https://doi.org/10.1016/j.giq.2013.09.005 +Vishanth Weerakkody,Transformational change and business process reengineering (BPR): Lessons from the British and Dutch public sector.,2011,28,Government Information Quarterly,3,db/journals/giq/giq28.html#WeerakkodyJD11,https://doi.org/10.1016/j.giq.2010.07.010 +Rowena Cullen,Democracy online: an assessment of New Zealand government web sites.,2000,17,Government Information Quarterly,3,db/journals/giq/giq17.html#CullenH00,https://doi.org/10.1016/S0740-624X(00)00033-2 +Dave Gelders,Showing results? An analysis of the perceptions of internal and external stakeholders of the public performance communication by the Belgian and Dutch Railways.,2008,25,Government Information Quarterly,2,db/journals/giq/giq25.html#GeldersGVS08,https://doi.org/10.1016/j.giq.2007.01.003 +John Carlo Bertot,The multiple dimensions of the digital divide: more than the technology 'haves' and 'have nots'.,2003,20,Government Information Quarterly,2,db/journals/giq/giq20.html#Bertot03,https://doi.org/10.1016/S0740-624X(03)00036-4 +Rachel Lilburn,Public archives: Heritage happiness or horror story?,1998,15,Government Information Quarterly,2,db/journals/giq/giq15.html#Lilburn98,https://doi.org/10.1016/S0740-624X(98)90042-9 +Hui-Ju Wang,Adoption of open government data among government agencies.,2016,33,Government Information Quarterly,1,db/journals/giq/giq33.html#WangL16,https://doi.org/10.1016/j.giq.2015.11.004 +María-Dolores Guillamón,Factors influencing social media use in local governments: The case of Italy and Spain.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#GuillamonRGM16,https://doi.org/10.1016/j.giq.2016.06.005 +Robert D. Carlitz,Online rulemaking: a step toward E-governance.,2002,19,Government Information Quarterly,4,db/journals/giq/giq19.html#CarlitzG02,https://doi.org/10.1016/S0740-624X(02)00118-1 +Barbie Selby,Age of Aquarius - The FDLP in the 21st century.,2008,25,Government Information Quarterly,1,db/journals/giq/giq25.html#Selby08,https://doi.org/10.1016/j.giq.2007.09.002 +Peter Hernon,The government performance and results act.,1998,15,Government Information Quarterly,2,db/journals/giq/giq15.html#Hernon98a,https://doi.org/10.1016/S0740-624X(98)90040-5 +Shuhua Monica Liu,Special issue on internet plus government: New opportunities to solve public problems?,2018,35,Government Information Quarterly,1,db/journals/giq/giq35.html#LiuK18,https://doi.org/10.1016/j.giq.2018.01.004 +Kheir Al-Kodmany,Online tools for public participation.,2001,18,Government Information Quarterly,4,db/journals/giq/giq18.html#Al-Kodmany01,https://doi.org/10.1016/S0740-624X(01)00087-9 +Panagiotis Panagiotopoulos,Citizen-government collaboration on social media: The case of Twitter in the 2011 riots in England.,2014,31,Government Information Quarterly,3,db/journals/giq/giq31.html#Panagiotopoulos14,https://doi.org/10.1016/j.giq.2013.10.014 +Bob Rowe,Rural technology deployment and access: successes upon which to build.,2003,20,Government Information Quarterly,2,db/journals/giq/giq20.html#Rowe03,https://doi.org/10.1016/S0740-624X(03)00034-0 +Tain Sue Jan,Government budget and accounting information policy and practice in Taiwan.,2002,19,Government Information Quarterly,2,db/journals/giq/giq19.html#JanT02,https://doi.org/10.1016/S0740-624X(02)00095-3 +Adalmir Oliveira Gomes,Effects of investment in information and communication technologies on productivity of courts in Brazil.,2018,35,Government Information Quarterly,3,db/journals/giq/giq35.html#GomesAS18,https://doi.org/10.1016/j.giq.2018.06.002 +John Carlo Bertot,Universal and contextualized public services: Digital public service innovation framework.,2016,33,Government Information Quarterly,2,db/journals/giq/giq33.html#BertotEJ16,https://doi.org/10.1016/j.giq.2016.05.004 +Aimée C. Quinn,Information technologies and civic engagement: Perspectives from librarianship and planning.,2007,24,Government Information Quarterly,3,db/journals/giq/giq24.html#QuinnR07,https://doi.org/10.1016/j.giq.2006.08.005 +Hans de Bruijn,Building Cybersecurity Awareness: The need for evidence-based framing strategies.,2017,34,Government Information Quarterly,1,db/journals/giq/giq34.html#BruijnJ17,https://doi.org/10.1016/j.giq.2017.02.007 +Jeannine E. Relly,"Erratum to ""Perceptions of transparency of government policymaking: A cross-national study"" [Government Information Quarterly 26 (2009) 148-157].",2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#RellyS09a,https://doi.org/10.1016/j.giq.2009.01.002 +Andrew Whitmore,A statistical analysis of the construction of the United Nations E-Government Development Index.,2012,29,Government Information Quarterly,1,db/journals/giq/giq29.html#Whitmore12,https://doi.org/10.1016/j.giq.2011.06.003 +Maggie Farrell,Google and government documents.,2005,22,Government Information Quarterly,2,db/journals/giq/giq22.html#Farrell05,https://doi.org/10.1016/j.giq.2005.03.002 +John A. Shuler,Libraries and government information: the past is not necessarily prologue.,2002,19,Government Information Quarterly,1,db/journals/giq/giq19.html#Shuler02,https://doi.org/10.1016/S0740-624X(01)00099-5 +Inger Brännström,Gender and digital divide 2000-2008 in two low-income economies in Sub-Saharan Africa: Kenya and Somalia in official statistics.,2012,29,Government Information Quarterly,1,db/journals/giq/giq29.html#Brannstrom12,https://doi.org/10.1016/j.giq.2011.03.004 +Daniel G. Dorner,Public sector readiness for digital preservation in New Zealand: The rate of adoption of an innovation in records management practices.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#Dorner09,https://doi.org/10.1016/j.giq.2008.11.003 +Cassandra Hartnett,Lobbying for libraries and public's access to government information: An insider's view.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#Hartnett06,https://doi.org/10.1016/j.giq.2005.07.003 +Jane Fedorowicz,A collaborative network for first responders: Lessons from the CapWIN case.,2007,24,Government Information Quarterly,4,db/journals/giq/giq24.html#FedorowiczGW07,https://doi.org/10.1016/j.giq.2007.06.001 +Tomasz Janowski,"Erratum to ""Government Information Networks - Mapping Electronic Governance cases through Public Administration concepts"" [Government Information Quarterly 29S1 (2012) 1-10].",2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#JanowskiPD12a,https://doi.org/10.1016/j.giq.2012.02.001 +Bjarne Rerup Schlichter,Measuring ICT usage quality for information society building.,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#SchlichterD14,https://doi.org/10.1016/j.giq.2013.09.003 +Agneta Ranerup,An analysis of business models in Public Service Platforms.,2016,33,Government Information Quarterly,1,db/journals/giq/giq33.html#RanerupHH16,https://doi.org/10.1016/j.giq.2016.01.010 +Enrico Ferro,Policy making 2.0: From theory to practice.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#FerroLCO13,https://doi.org/10.1016/j.giq.2013.05.018 +Paul T. Y. Tseng,To explore managerial issues and their implications on e-Government deployment in the public sector: Lessons from Taiwan's Bureau of Foreign Trade.,2008,25,Government Information Quarterly,4,db/journals/giq/giq25.html#TsengYHW08,https://doi.org/10.1016/j.giq.2007.06.003 +Katherine H. Weimer,The coast mappers.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#Weimer06,https://doi.org/10.1016/j.giq.2005.07.005 +Ben Amata,FOIAonline (Freedom of Information Act).,2014,31,Government Information Quarterly,2,db/journals/giq/giq31.html#Amata14,https://doi.org/10.1016/j.giq.2014.02.004 +Suzanne L. Holcombe,Challenges to Globalization: Analyzing the Economics.,2006,23,Government Information Quarterly,2,db/journals/giq/giq23.html#Holcombe06,https://doi.org/10.1016/j.giq.2006.04.006 +Hui Na Chua,Unveiling the coverage patterns of newspapers on the personal data protection act.,2017,34,Government Information Quarterly,2,db/journals/giq/giq34.html#ChuaWCS17,https://doi.org/10.1016/j.giq.2017.02.006 +Panagiotis Panagiotopoulos,A business model perspective for ICTs in public engagement.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#Panagiotopoulos12,https://doi.org/10.1016/j.giq.2011.09.011 +Robert Gellman,Taming the privacy monster: a proposal for a non-regulatory privacy agency1.,2000,17,Government Information Quarterly,3,db/journals/giq/giq17.html#Gellman00,https://doi.org/10.1016/S0740-624X(00)00032-0 +Marvine Hamner,Enhancing the case for Electronic Government in developing nations: A people-centric study focused in Saudi Arabia.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#HamnerA09,https://doi.org/10.1016/j.giq.2007.08.008 +Jungwoo Lee 0002,Grounded theory analysis of e-government initiatives: Exploring perceptions of government authorities.,2007,24,Government Information Quarterly,1,db/journals/giq/giq24.html#LeeK07,https://doi.org/10.1016/j.giq.2006.05.001 +Katleen Janssen,The influence of the PSI directive on open government data: An overview of recent developments.,2011,28,Government Information Quarterly,4,db/journals/giq/giq28.html#Janssen11,https://doi.org/10.1016/j.giq.2011.01.004 +Thomas Kohlborn,Quality assessment of service bundles for governmental one-stop portals: A literature review.,2014,31,Government Information Quarterly,2,db/journals/giq/giq31.html#Kohlborn14,https://doi.org/10.1016/j.giq.2013.10.006 +Dong-Hee Shin,A critique of Korean National Information Strategy: Case of national information infrastructures.,2007,24,Government Information Quarterly,3,db/journals/giq/giq24.html#Shin07,https://doi.org/10.1016/j.giq.2006.06.011 +Megan Dreger,Congressional Research Services (CRS) Reports: A Review of Sources.,2007,24,Government Information Quarterly,4,db/journals/giq/giq24.html#Dreger07,https://doi.org/10.1016/j.giq.2006.09.009 +Luiz Antonio Joia,The impact of government-to-government endeavors on the intellectual capital of public organizations.,2008,25,Government Information Quarterly,2,db/journals/giq/giq25.html#Joia08,https://doi.org/10.1016/j.giq.2007.06.004 +Jeannine E. Relly,Perceptions of transparency of government policymaking: A cross-national study.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#RellyS09,https://doi.org/10.1016/j.giq.2008.04.002 +Jun Xia,Linking ICTs to rural development: China's rural information policy.,2010,27,Government Information Quarterly,2,db/journals/giq/giq27.html#Xia10,https://doi.org/10.1016/j.giq.2009.10.005 +Bonnie Rubenstein-Montano,Knowledge management: A U.S. Social Security Administration case study.,2001,18,Government Information Quarterly,3,db/journals/giq/giq18.html#Rubenstein-Montano01,https://doi.org/10.1016/S0740-624X(01)00078-8 +John A. Shuler,Reviews.,2000,17,Government Information Quarterly,3,db/journals/giq/giq17.html#ShulerM00a,https://doi.org/10.1016/S0740-624X(00)00041-1 +Barbara Miller,Review of the U.S. Department of the Interior Web site.,2007,24,Government Information Quarterly,4,db/journals/giq/giq24.html#Miller07,https://doi.org/10.1016/j.giq.2006.10.005 +Albert Jacob Meijer,Publishing public performance results on the Internet: Do stakeholders use the Internet to hold Dutch public service organizations to account?,2007,24,Government Information Quarterly,1,db/journals/giq/giq24.html#Meijer07,https://doi.org/10.1016/j.giq.2006.01.014 +Herbert Lin,Fluency with information technology∗*.,2000,17,Government Information Quarterly,1,db/journals/giq/giq17.html#Lin00,https://doi.org/10.1016/S0740-624X(99)00024-6 +Donnelyn Curtis,Partners in supporting science: academic and government research libraries.,2000,17,Government Information Quarterly,3,db/journals/giq/giq17.html#CurtisS00,https://doi.org/10.1016/S0740-624X(00)00036-8 +Lorri Mon,Digital reference service.,2000,17,Government Information Quarterly,3,db/journals/giq/giq17.html#Mon00,https://doi.org/10.1016/S0740-624X(00)00046-0 +Donald A. Ritchie,Private printers and the party press: What went on before the GPO.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#Ritchie12,https://doi.org/10.1016/j.giq.2011.12.006 +J. Timothy Sprehe,Integrating records management into information resources management in U.S. government agencies1.,2000,17,Government Information Quarterly,1,db/journals/giq/giq17.html#Sprehe00a,https://doi.org/10.1016/S0740-624X(99)00022-2 +Hyuckbin Kwon,Interorganizational collaboration and community building for the preservation of state government digital information: Lessons from NDIIPP state partnership initiative.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#KwonPB09,https://doi.org/10.1016/j.giq.2008.01.007 +Demetrios Sarantis,A goal-driven management framework for electronic government transformation projects implementation.,2011,28,Government Information Quarterly,1,db/journals/giq/giq28.html#SarantisCA11,https://doi.org/10.1016/j.giq.2009.10.006 +Robert Hazell,Assessing the performance of freedom of information.,2010,27,Government Information Quarterly,4,db/journals/giq/giq27.html#HazellW10,https://doi.org/10.1016/j.giq.2010.03.005 +Seamus Simpson,Next generation network environments in Europe - The significance of the EU as a policy actor.,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#Simpson14,https://doi.org/10.1016/j.giq.2012.08.008 +Leonidas G. Anthopoulos,Why e-government projects fail? An analysis of the Healthcare.gov website.,2016,33,Government Information Quarterly,1,db/journals/giq/giq33.html#AnthopoulosRGM16,https://doi.org/10.1016/j.giq.2015.07.003 +Albert Jacob Meijer,E-mail in government: Not post-bureaucratic but late-bureaucratic organizations.,2008,25,Government Information Quarterly,3,db/journals/giq/giq25.html#Meijer08,https://doi.org/10.1016/j.giq.2007.05.004 +Aimée C. Quinn,Keeping the citizenry informed: early congressional printing and 21st century information policy.,2003,20,Government Information Quarterly,3,db/journals/giq/giq20.html#Quinn03,https://doi.org/10.1016/S0740-624X(03)00055-8 +Yi-Shun Wang,Why do people use information kiosks? A validation of the Unified Theory of Acceptance and Use of Technology.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#WangS09,https://doi.org/10.1016/j.giq.2008.07.001 +Marijn Janssen,Building the next generation of digital government infrastructures.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#JanssenCG09,https://doi.org/10.1016/j.giq.2008.12.006 +Karen Mossberger,Connecting citizens and local governments? Social media and interactivity in major U.S. cities.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#MossbergerWC13,https://doi.org/10.1016/j.giq.2013.05.016 +Paul T. Jaeger,The Policy Implications of Internet Connectivity in Public Libraries.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#JaegerBML06,https://doi.org/10.1016/j.giq.2005.10.002 +Kim Viborg Andersen,E-government maturity models: Extension of the Layne and Lee model.,2006,23,Government Information Quarterly,2,db/journals/giq/giq23.html#AndersenH06,https://doi.org/10.1016/j.giq.2005.11.008 +Charles D. Bernholz,American Indian treaties in the Courts of Claims: A guide to treaty citations from opinions of the United States Courts of Claims.,2008,25,Government Information Quarterly,2,db/journals/giq/giq25.html#BernholzW08,https://doi.org/10.1016/j.giq.2006.07.015 +Brian E. Whitacre,How much does broadband infrastructure matter? Decomposing the metro-non-metro adoption gap with the help of the National Broadband Map.,2015,32,Government Information Quarterly,3,db/journals/giq/giq32.html#WhitacreSG15,https://doi.org/10.1016/j.giq.2015.03.002 +Siddhartha Menon,The evolution of the policy objectives of South Korea's Broadband Convergence Network from 2004 to 2007.,2011,28,Government Information Quarterly,2,db/journals/giq/giq28.html#Menon11,https://doi.org/10.1016/j.giq.2010.03.008 +Göran Goldkuhl,E-government design research: Towards the policy-ingrained IT artifact.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#Goldkuhl16,https://doi.org/10.1016/j.giq.2016.05.006 +Juan-Gabriel Cegarra-Navarro,Technology knowledge and governance: Empowering citizen engagement and participation.,2014,31,Government Information Quarterly,4,db/journals/giq/giq31.html#Cegarra-Navarro14,https://doi.org/10.1016/j.giq.2014.07.001 +Benjamin L. Schooley,Towards end-to-end government performance management: Case study of interorganizational information integration in emergency medical services (EMS).,2007,24,Government Information Quarterly,4,db/journals/giq/giq24.html#SchooleyH07,https://doi.org/10.1016/j.giq.2007.04.001 +Maureen Henninger,Reforms to counter a culture of secrecy: Open government in Australia.,2018,35,Government Information Quarterly,3,db/journals/giq/giq35.html#Henninger18,https://doi.org/10.1016/j.giq.2018.03.003 +Tobias Giesbrecht,Smart advisors in the front office: Designing employee-empowering and citizen-centric services.,2016,33,Government Information Quarterly,4,db/journals/giq/giq33.html#GiesbrechtSS16,https://doi.org/10.1016/j.giq.2016.05.005 +Marijn Janssen,Big and Open Linked Data (BOLD) in government: A challenge to transparency and privacy?,2015,32,Government Information Quarterly,4,db/journals/giq/giq32.html#JanssenH15,https://doi.org/10.1016/j.giq.2015.11.007 +Ann-Sofie Hellberg,Conflicts in implementing interoperability: Re-operationalizing basic values.,2013,30,Government Information Quarterly,2,db/journals/giq/giq30.html#HellbergG13,https://doi.org/10.1016/j.giq.2012.10.006 +Godwin Thomas,Understanding the problem of coordination in a large scale distributed environment from a service lens view - Towards the South African public sector e-Administration criteria for coordination support.,2015,32,Government Information Quarterly,4,db/journals/giq/giq32.html#ThomasBG15,https://doi.org/10.1016/j.giq.2015.08.002 +L. Elaine Halchin,Electronic government in the age of terrorism.,2002,19,Government Information Quarterly,3,db/journals/giq/giq19.html#Halchin02,https://doi.org/10.1016/S0740-624X(02)00104-1 +Albert Meijer,Alignment 2.0: Strategic use of new internet technologies in government.,2010,27,Government Information Quarterly,2,db/journals/giq/giq27.html#MeijerT10,https://doi.org/10.1016/j.giq.2009.12.001 +Fengyi Lin,Assessing citizen adoption of e-Government initiatives in Gambia: A validation of the technology acceptance model in information systems success.,2011,28,Government Information Quarterly,2,db/journals/giq/giq28.html#LinFL11,https://doi.org/10.1016/j.giq.2010.09.004 +Sungsoo Hwang,In pursuit of the effective neighborhood information system: User-friendliness and training.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#HwangH09,https://doi.org/10.1016/j.giq.2008.06.004 +Marvine Hamner,Expanding the Technology Acceptance Model to examine Personal Computing Technology utilization in government agencies in developing countries.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#HamnerQ09,https://doi.org/10.1016/j.giq.2007.12.003 +John Carlo Bertot,New editorial board members.,2005,22,Government Information Quarterly,2,db/journals/giq/giq22.html#Bertot05,https://doi.org/10.1016/j.giq.2005.03.001 +Natasa Veljkovic,Benchmarking open government: An open data perspective.,2014,31,Government Information Quarterly,2,db/journals/giq/giq31.html#VeljkovicBS14,https://doi.org/10.1016/j.giq.2013.10.011 +Akemi Takeoka Chatfield,The role of policy entrepreneurs in open government data policy innovation diffusion: An analysis of Australian Federal and State Governments.,2018,35,Government Information Quarterly,1,db/journals/giq/giq35.html#ChatfieldR18,https://doi.org/10.1016/j.giq.2017.10.004 +Yeon-Tae Choi,Understanding gender inequality in central e-government: A Korean case study.,2013,30,Government Information Quarterly,3,db/journals/giq/giq30.html#ChoiP13,https://doi.org/10.1016/j.giq.2013.01.003 +Ibrahim Akman,E-Government: A global view and an empirical evaluation of some attributes of citizens.,2005,22,Government Information Quarterly,2,db/journals/giq/giq22.html#AkmanYMA05,https://doi.org/10.1016/j.giq.2004.12.001 +Gustaf Juell-Skielse,Modes of collaboration and expected benefits of inter-organizational E-government initiatives: A multi-case study.,2017,34,Government Information Quarterly,4,db/journals/giq/giq34.html#Juell-SkielseLP17,https://doi.org/10.1016/j.giq.2017.10.008 +Dimitri Gagliardi,Information and communication technologies and public participation: interactive maps and value added for citizens.,2017,34,Government Information Quarterly,1,db/journals/giq/giq34.html#GagliardiSSMNC17,https://doi.org/10.1016/j.giq.2016.09.002 +John A. Shuler,Informing the nation: the future of librarianship and government information service.,2005,22,Government Information Quarterly,2,db/journals/giq/giq22.html#Shuler05,https://doi.org/10.1016/j.giq.2005.03.003 +Mila Gascó-Hernández,Promoting the use of open government data: Cases of training and engagement.,2018,35,Government Information Quarterly,2,db/journals/giq/giq35.html#Gasco-Hernandez18,https://doi.org/10.1016/j.giq.2018.01.003 +Sukumar Ganapati,Open e-government in U.S. state governments: Survey evidence from Chief Information Officers.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#GanapatiR12,https://doi.org/10.1016/j.giq.2011.09.006 +Jeongwon Yoon,Varying criticality of key success factors of national e-Strategy along the status of economic development of nations.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#YoonC09,https://doi.org/10.1016/j.giq.2008.08.006 +Peter Hernon,Government on the web: A comparison between the United States and New Zealand.,1998,15,Government Information Quarterly,4,db/journals/giq/giq15.html#Hernon98b,https://doi.org/10.1016/S0740-624X(98)90034-X +Viswanath Venkatesh,A usability study of the obamacare website: Evaluation and recommendations.,2017,34,Government Information Quarterly,2,db/journals/giq/giq34.html#VenkateshHA17,https://doi.org/10.1016/j.giq.2017.01.003 +Abiodun Olalere,Accessibility of U.S. federal government home pages: Section 508 compliance and site accessibility statements.,2011,28,Government Information Quarterly,3,db/journals/giq/giq28.html#OlalereL11,https://doi.org/10.1016/j.giq.2011.02.002 +A. Brown,Appraising the impact and role of platform models and Government as a Platform (GaaP) in UK Government public service reform: Towards a Platform Assessment Framework (PAF).,2017,34,Government Information Quarterly,2,db/journals/giq/giq34.html#BrownFTV17,https://doi.org/10.1016/j.giq.2017.03.003 +Anne Powell,e-Voting intent: A comparison of young and elderly voters.,2012,29,Government Information Quarterly,3,db/journals/giq/giq29.html#PowellWBDA12,https://doi.org/10.1016/j.giq.2012.01.003 +Ussama Yaqub,Analysis of political discourse on twitter in the context of the 2016 US presidential elections.,2017,34,Government Information Quarterly,4,db/journals/giq/giq34.html#YaqubCAV17,https://doi.org/10.1016/j.giq.2017.11.001 +Meseret D. Gebremichael,Bridging the gap in Sub-Saharan Africa: A holistic look at information poverty and the region's digital divide.,2006,23,Government Information Quarterly,2,db/journals/giq/giq23.html#GebremichaelJ06,https://doi.org/10.1016/j.giq.2006.02.011 +Jurjen Jansen,The Contextual Benchmark Method: Benchmarking e-Government services.,2010,27,Government Information Quarterly,3,db/journals/giq/giq27.html#JansenVS10,https://doi.org/10.1016/j.giq.2010.02.003 +Narvadha Veeramootoo,What determines success of an e-government service? Validation of an integrative model of e-filing continuance usage.,2018,35,Government Information Quarterly,2,db/journals/giq/giq35.html#VeeramootooND18,https://doi.org/10.1016/j.giq.2018.03.004 +Patrick Birkinshaw,Freedom of information in the UK and Europe: Further progress?,2002,19,Government Information Quarterly,1,db/journals/giq/giq19.html#Birkinshaw02,https://doi.org/10.1016/S0740-624X(01)00097-1 +Robin Gauld,How responsive are government agencies when contacted by email? Findings from a longitudinal study in Australia and New Zealand.,2016,33,Government Information Quarterly,2,db/journals/giq/giq33.html#GauldFMG16,https://doi.org/10.1016/j.giq.2016.03.004 +Fons Wijnhoven,Open government objectives and participation motivations.,2015,32,Government Information Quarterly,1,db/journals/giq/giq32.html#WijnhovenEK15,https://doi.org/10.1016/j.giq.2014.10.002 +Sharon S. Dawes,Governance in the digital age: A research and action framework for an uncertain future.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#Dawes09,https://doi.org/10.1016/j.giq.2008.12.003 +Han Woo Park,Trends in online networking among South Korean politicians - A mixed-method approach.,2009,26,Government Information Quarterly,3,db/journals/giq/giq26.html#ParkK09,https://doi.org/10.1016/j.giq.2009.02.008 +Jeffrey W. Seifert,Data mining and the search for security: Challenges for connecting the dots and databases.,2004,21,Government Information Quarterly,4,db/journals/giq/giq21.html#Seifert04,https://doi.org/10.1016/j.giq.2004.08.006 +Charles D. Bernholz,The Least Developed Countries Report 2004: Linking International Trade With Poverty Reduction.,2007,24,Government Information Quarterly,1,db/journals/giq/giq24.html#Bernholz07,https://doi.org/10.1016/j.giq.2006.04.007 +Miguel Rios-Berrios,TreeCovery: Coordinated dual treemap visualization for exploring the Recovery Act.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#Rios-BerriosSLS12,https://doi.org/10.1016/j.giq.2011.07.004 +Enrico Ferro,The role of IT literacy in defining digital divide policy needs.,2011,28,Government Information Quarterly,1,db/journals/giq/giq28.html#FerroHG11,https://doi.org/10.1016/j.giq.2010.05.007 +Yogesh Kumar Dwivedi,A generalised adoption model for services: A cross-country comparison of mobile health (m-health).,2016,33,Government Information Quarterly,1,db/journals/giq/giq33.html#DwivediSSLW16,https://doi.org/10.1016/j.giq.2015.06.003 +Kevin C. Desouza,Every citizen a missile: the need for an emergent systems approach by law enforcement.,2003,20,Government Information Quarterly,3,db/journals/giq/giq20.html#DesouzaH03,https://doi.org/10.1016/S0740-624X(03)00041-8 +Jeffrey W. Seifert,Do you know where your information is in the homeland security era?,2004,21,Government Information Quarterly,4,db/journals/giq/giq21.html#SeifertR04,https://doi.org/10.1016/j.giq.2004.08.001 +Yon Soo Lim,How do congressional members appear on the web? Tracking the web visibility of South Korean politicians.,2011,28,Government Information Quarterly,4,db/journals/giq/giq28.html#LimP11,https://doi.org/10.1016/j.giq.2011.02.003 +Athulang Mutshewa,The information behaviors of environmental planners: An exploratory study.,2007,24,Government Information Quarterly,2,db/journals/giq/giq24.html#Mutshewa07,https://doi.org/10.1016/j.giq.2006.07.002 +Lianjie Ma,E-government in China: Bringing economic development through administrative reform.,2005,22,Government Information Quarterly,1,db/journals/giq/giq22.html#MaCT05,https://doi.org/10.1016/j.giq.2004.10.001 +Donna M. Evans,E-government: An analysis for implementation: Framework for understanding cultural and social impact.,2005,22,Government Information Quarterly,3,db/journals/giq/giq22.html#EvansY05,https://doi.org/10.1016/j.giq.2005.05.007 +José Ramón Gil-García,E-government success factors: Mapping practical tools to theoretical foundations.,2005,22,Government Information Quarterly,2,db/journals/giq/giq22.html#Gil-GarciaP05,https://doi.org/10.1016/j.giq.2005.02.001 +,Shanghai Municipal People's Government Decree No 19: Shanghai municipal provisions on open government information.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#X06a,https://doi.org/10.1016/j.giq.2006.02.009 +Anna Ya Ni,Challenges in e-government development: Lessons from two information kiosk projects.,2005,22,Government Information Quarterly,1,db/journals/giq/giq22.html#NiH05,https://doi.org/10.1016/j.giq.2004.10.005 +Abebe Rorissa,An analysis of African e-Government service websites.,2010,27,Government Information Quarterly,2,db/journals/giq/giq27.html#RorissaD10,https://doi.org/10.1016/j.giq.2009.12.003 +Jang-Hyun Kim 0001,Food policy in cyberspace: A webometric analysis of national food clusters in South Korea.,2014,31,Government Information Quarterly,3,db/journals/giq/giq31.html#KimP14,https://doi.org/10.1016/j.giq.2014.01.013 +Frederick T. Knickerbocker,Introduction.,1998,15,Government Information Quarterly,3,db/journals/giq/giq15.html#Knickerbocker98,https://doi.org/10.1016/S0740-624X(98)90001-6 +Petter Gottschalk,Maturity levels for interoperability in digital government.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#Gottschalk09,https://doi.org/10.1016/j.giq.2008.03.003 +Anthony M. Cresswell,Implications of legal and organizational issues for urban digital government development.,2001,18,Government Information Quarterly,4,db/journals/giq/giq18.html#CresswellP01,https://doi.org/10.1016/S0740-624X(01)00086-7 +Anteneh Ayanso,E-Government readiness index: A methodology and analysis.,2011,28,Government Information Quarterly,4,db/journals/giq/giq28.html#AyansoCC11,https://doi.org/10.1016/j.giq.2011.02.004 +Willem Pieterson,Personalization in the public sector: An inventory of organizational and user obstacles towards personalization of electronic services in the public sector.,2007,24,Government Information Quarterly,1,db/journals/giq/giq24.html#PietersonED07,https://doi.org/10.1016/j.giq.2005.12.001 +Ramessur Taruna Shalini,Are Mauritians ready for e-Government services?,2009,26,Government Information Quarterly,3,db/journals/giq/giq26.html#Shalini09,https://doi.org/10.1016/j.giq.2008.12.016 +Frank Bannister,The great theory hunt: Does e-government really have a problem?,2015,32,Government Information Quarterly,1,db/journals/giq/giq32.html#BannisterC15,https://doi.org/10.1016/j.giq.2014.10.003 +Muhammad Mustafa Kamal,Analyzing the role of stakeholders in the adoption of technology integration solutions in UK local government: An exploratory study.,2011,28,Government Information Quarterly,2,db/journals/giq/giq28.html#KamalWI11,https://doi.org/10.1016/j.giq.2010.08.003 +Yong Liu 0010,An empirical investigation of mobile government adoption in rural China: A case study in Zhejiang province.,2014,31,Government Information Quarterly,3,db/journals/giq/giq31.html#LiuLKGHH14,https://doi.org/10.1016/j.giq.2014.02.008 +Ahmad A. Kardan,Is e-government a way to e-democracy?: A longitudinal study of the Iranian situation.,2011,28,Government Information Quarterly,4,db/journals/giq/giq28.html#KardanS11,https://doi.org/10.1016/j.giq.2010.12.007 +Luis Felipe Luna-Reyes,Using institutional theory and dynamic simulation to understand complex e-Government phenomena.,2011,28,Government Information Quarterly,3,db/journals/giq/giq28.html#Luna-ReyesG11,https://doi.org/10.1016/j.giq.2010.08.007 +Peter Hernon,GIQ: A snapshot of the first fourteen volumes.,1998,15,Government Information Quarterly,1,db/journals/giq/giq15.html#Hernon98,https://doi.org/10.1016/S0740-624X(98)90010-7 +Robin Gauld,Public sector information system project failures: Lessons from a New Zealand hospital organization.,2007,24,Government Information Quarterly,1,db/journals/giq/giq24.html#Gauld07,https://doi.org/10.1016/j.giq.2006.02.010 +Hyeri Choi,Two-dimensional approach to governmental excellence for human development in developing countries: Combining policies and institutions with e-government.,2017,34,Government Information Quarterly,2,db/journals/giq/giq34.html#ChoiPR17,https://doi.org/10.1016/j.giq.2017.03.002 +Kim Normann Andersen,The forgotten promise of e-government maturity: Assessing responsiveness in the digital public sector.,2011,28,Government Information Quarterly,4,db/journals/giq/giq28.html#AndersenMVHG11,https://doi.org/10.1016/j.giq.2010.12.006 +Mary Alice Ball,Aggregating broadband demand: Surveying the benefits and challenges for public libraries.,2009,26,Government Information Quarterly,4,db/journals/giq/giq26.html#Ball09,https://doi.org/10.1016/j.giq.2009.05.004 +Dennis Linders,From e-government to we-government: Defining a typology for citizen coproduction in the age of social media.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#Linders12,https://doi.org/10.1016/j.giq.2012.06.003 +Michael A. McGregor,Communication technology at the Federal Communications Commission: E-government in the public interest?,2004,21,Government Information Quarterly,3,db/journals/giq/giq21.html#McGregorH04,https://doi.org/10.1016/j.giq.2004.04.005 +Charles D. Bernholz,Three International Web Sites - A Comparion: Israel Ministry of Foreign Affairs - http: //www.mfa.gov.il/mfa/home.asppalestine National Authority - http: //www.pna.gov.ps/ Swissinfo - http: //www.swissinfo.org/ Visited June 2003.,2003,20,Government Information Quarterly,4,db/journals/giq/giq20.html#Bernholz03a,https://doi.org/10.1016/j.giq.2003.09.003 +Scott Paquette,Identifying the security risks associated with governmental use of cloud computing.,2010,27,Government Information Quarterly,3,db/journals/giq/giq27.html#PaquetteJW10,https://doi.org/10.1016/j.giq.2010.01.002 +Harold C. Relyea,Federal freedom of information policy: Highlights of recent developments.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#Relyea09,https://doi.org/10.1016/j.giq.2008.12.001 +Ali Alawneh,Measuring user satisfaction from e-Government services: Lessons from Jordan.,2013,30,Government Information Quarterly,3,db/journals/giq/giq30.html#AlawnehAB13,https://doi.org/10.1016/j.giq.2013.03.001 +A. J. A. M. van Deursen,Improving digital skills for the use of online public information and services.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#DeursenD09,https://doi.org/10.1016/j.giq.2008.11.002 +Charles D. Bernholz,American Indians and the United States patent and trademark office: The Native American Tribal Insignia database.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#BernholzNG09,https://doi.org/10.1016/j.giq.2008.04.003 +Allen Mullen,GILS metadata initiatives at the state level.,2001,18,Government Information Quarterly,3,db/journals/giq/giq18.html#Mullen01,https://doi.org/10.1016/S0740-624X(01)00076-4 +R. K. Mitra,A contextual perspective of performance assessment in eGovernment: A study of Indian Police Administration.,2008,25,Government Information Quarterly,2,db/journals/giq/giq25.html#MitraG08,https://doi.org/10.1016/j.giq.2006.03.008 +Richard J. Cox,America's pyramids: Presidents and their libraries.,2002,19,Government Information Quarterly,1,db/journals/giq/giq19.html#Cox02,https://doi.org/10.1016/S0740-624X(01)00094-6 +Timothy E. McMahon,National Archives and Records Administration Web Site (November 1998).,1999,16,Government Information Quarterly,2,db/journals/giq/giq16.html#McMahon99,https://doi.org/10.1016/S0740-624X(99)80009-4 +Onook Oh,ICT mediated rumor beliefs and resulting user actions during a community crisis.,2018,35,Government Information Quarterly,2,db/journals/giq/giq35.html#OhGAR18,https://doi.org/10.1016/j.giq.2018.03.006 +Loo Geok Pee,Interactions among factors influencing knowledge management in public-sector organizations: A resource-based view.,2016,33,Government Information Quarterly,1,db/journals/giq/giq33.html#PeeK16,https://doi.org/10.1016/j.giq.2015.06.002 +Kevin Quigley,'Cyber Gurus': A rhetorical analysis of the language of cybersecurity specialists and the implications for security policy and critical infrastructure protection.,2015,32,Government Information Quarterly,2,db/journals/giq/giq32.html#QuigleyBS15,https://doi.org/10.1016/j.giq.2015.02.001 +Ramona S. McNeal,E-disclosure laws and electronic campaign finance reform: Lessons from the diffusion of e-government policies in the States.,2007,24,Government Information Quarterly,2,db/journals/giq/giq24.html#McNealSH07,https://doi.org/10.1016/j.giq.2006.06.006 +øystein Sæbø,The shape of eParticipation: Characterizing an emerging research area.,2008,25,Government Information Quarterly,3,db/journals/giq/giq25.html#SaeboRF08,https://doi.org/10.1016/j.giq.2007.04.007 +Tung-Mou Yang,How is information shared across the boundaries of government agencies? An e-Government case study.,2014,31,Government Information Quarterly,4,db/journals/giq/giq31.html#YangPW14,https://doi.org/10.1016/j.giq.2014.05.002 +C. Ann Hollifield,Creating demand: influencing information technology diffusion in rural communities.,2003,20,Government Information Quarterly,2,db/journals/giq/giq20.html#HollifieldD03,https://doi.org/10.1016/S0740-624X(03)00035-2 +Vasiliki Baka,Co-creating an open platform at the local governance level: How openness is enacted in Zambia.,2017,34,Government Information Quarterly,1,db/journals/giq/giq34.html#Baka17,https://doi.org/10.1016/j.giq.2016.10.001 +Akemi Takeoka Chatfield,A longitudinal cross-sector analysis of open data portal service capability: The case of Australian local governments.,2017,34,Government Information Quarterly,2,db/journals/giq/giq34.html#ChatfieldR17,https://doi.org/10.1016/j.giq.2017.02.004 +Julianne Mahler,Crafting the message: Controlling content on agency Web sites.,2007,24,Government Information Quarterly,3,db/journals/giq/giq24.html#MahlerR07,https://doi.org/10.1016/j.giq.2006.06.008 +Nadia Caidi,Introduction to the special issue: National security policies and implications for information flow.,2005,22,Government Information Quarterly,4,db/journals/giq/giq22.html#Caidi05,https://doi.org/10.1016/j.giq.2006.01.011 +Hsiaoping Yeh,The effects of successful ICT-based smart city services: From citizens' perspectives.,2017,34,Government Information Quarterly,3,db/journals/giq/giq34.html#Yeh17,https://doi.org/10.1016/j.giq.2017.05.001 +Wilhelm Peekhaus,Personal health information in Canada: A comparison of citizen expectations and legislation.,2008,25,Government Information Quarterly,4,db/journals/giq/giq25.html#Peekhaus08,https://doi.org/10.1016/j.giq.2007.05.002 +Lotte E. Feinberg,Homeland security: implications for information policy and practice - first appraisal.,2002,19,Government Information Quarterly,3,db/journals/giq/giq19.html#Feinberg02,https://doi.org/10.1016/S0740-624X(02)00106-5 +Kathie Brinkerhoff,Nonlibrary partnerships: acceptable use (and behavior) in the web-based depository.,2000,17,Government Information Quarterly,3,db/journals/giq/giq17.html#Brinkerhoff00,https://doi.org/10.1016/S0740-624X(00)00038-1 +Cathy Nelson Hartman,Storage of electronic files of federal agencies that have ceased operation: a partnership for permanent access.,2000,17,Government Information Quarterly,3,db/journals/giq/giq17.html#Hartman00,https://doi.org/10.1016/S0740-624X(00)00037-X +Taewoo Nam,Examining the anti-corruption effect of e-government and the moderating effect of national culture: A cross-country study.,2018,35,Government Information Quarterly,2,db/journals/giq/giq35.html#Nam18,https://doi.org/10.1016/j.giq.2018.01.005 +Daniel Draper,Analysis of Readex's Serial Set MARC records: Improving the data for the library catalog.,2013,30,Government Information Quarterly,1,db/journals/giq/giq30.html#DraperL13,https://doi.org/10.1016/j.giq.2012.06.010 +Eun-A. Park,Implementation of BTOP funding for public computing centers: Goal consensus and project performance.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#ParkJ13,https://doi.org/10.1016/j.giq.2013.07.002 +John O'Looney,Sprawl decisions: A simulation and decision support tool for citizens and policy makers.,2001,18,Government Information Quarterly,4,db/journals/giq/giq18.html#OLooney01,https://doi.org/10.1016/S0740-624X(01)00088-0 +Bruce Dearstyne,The FDNY on 9/11: Information and decision making in crisis.,2007,24,Government Information Quarterly,1,db/journals/giq/giq24.html#Dearstyne07,https://doi.org/10.1016/j.giq.2006.03.004 +Guillermina Cledou,A taxonomy for planning and designing smart mobility services.,2018,35,Government Information Quarterly,1,db/journals/giq/giq35.html#CledouEB18,https://doi.org/10.1016/j.giq.2017.11.008 +John Carlo Bertot,Bringing voice to the next generation information professional.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#Bertot13,https://doi.org/10.1016/j.giq.2013.11.001 +Anneke Zuiderwijk,Acceptance and use predictors of open data technologies: Drawing upon the unified theory of acceptance and use of technology.,2015,32,Government Information Quarterly,4,db/journals/giq/giq32.html#ZuiderwijkJD15,https://doi.org/10.1016/j.giq.2015.09.005 +Stephen F. King,Citizens as customers: Exploring the future of CRM in UK local government.,2007,24,Government Information Quarterly,1,db/journals/giq/giq24.html#King07,https://doi.org/10.1016/j.giq.2006.02.012 +David Cuillier,Internet information-seeking and its relation to support for access to government records.,2009,26,Government Information Quarterly,3,db/journals/giq/giq26.html#CuillierP09,https://doi.org/10.1016/j.giq.2009.03.001 +Daniel C. Barkley,Public service guidelines in an electronic environment.,1998,15,Government Information Quarterly,1,db/journals/giq/giq15.html#Barkley98,https://doi.org/10.1016/S0740-624X(98)90016-8 +Judy M. Dodds,Determining economic census content.,1998,15,Government Information Quarterly,3,db/journals/giq/giq15.html#Dodds98,https://doi.org/10.1016/S0740-624X(98)90002-8 +Hossana Twinomurinzi,The small group subtlety of using ICT for participatory governance: A South African experience.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#TwinomurinziPB12,https://doi.org/10.1016/j.giq.2011.09.010 +Shin-Yuan Hung,User acceptance of mobile e-government services: An empirical study.,2013,30,Government Information Quarterly,1,db/journals/giq/giq30.html#HungCK13,https://doi.org/10.1016/j.giq.2012.07.008 +Yong Jin Park,Regime formation and consequence: The case of internet security in the East-Asia 'Four Tigers'.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#Park09,https://doi.org/10.1016/j.giq.2008.03.006 +Charles D. Bernholz,The Missing Court of Claims Report: Is Letitia Humphreys Court of Claims Report 42?,2006,23,Government Information Quarterly,2,db/journals/giq/giq23.html#BernholzE06,https://doi.org/10.1016/j.giq.2006.03.003 +Panos Panagiotopoulos,The value of social media data: Integrating crowd capabilities in evidence-based policy.,2017,34,Government Information Quarterly,4,db/journals/giq/giq34.html#Panagiotopoulos17,https://doi.org/10.1016/j.giq.2017.10.009 +Robert A. Staley,Congressional hearings: Neglected sources of information on American Indians.,2008,25,Government Information Quarterly,3,db/journals/giq/giq25.html#Staley08,https://doi.org/10.1016/j.giq.2007.08.005 +Xiaohua Zhu,The failure of an early episode in the open government data movement: A historical case study.,2017,34,Government Information Quarterly,2,db/journals/giq/giq34.html#Zhu17,https://doi.org/10.1016/j.giq.2017.03.004 +Chi-Shiou Lin,Librarian-initiated publications discovery: How do digital depository librarians discover and select web-based government publications for state digital depositories?,2010,27,Government Information Quarterly,3,db/journals/giq/giq27.html#LinE10,https://doi.org/10.1016/j.giq.2009.12.010 +Sandra Cohen,IT-enhanced popular reports: Analyzing citizen preferences.,2017,34,Government Information Quarterly,2,db/journals/giq/giq34.html#CohenMK17,https://doi.org/10.1016/j.giq.2017.04.003 +Jaesun Wang,Time to get in: The contrasting stories about government interventions in information technology standards (the case of CDMA and IMT-2000 in Korea).,2007,24,Government Information Quarterly,1,db/journals/giq/giq24.html#WangK07,https://doi.org/10.1016/j.giq.2006.04.001 +Ales Groznik,Upstream supply chain management in e-government: The case of Slovenia.,2009,26,Government Information Quarterly,3,db/journals/giq/giq26.html#GroznikT09,https://doi.org/10.1016/j.giq.2008.12.017 +Sharon S. Dawes,Planning and designing open government data programs: An ecosystem approach.,2016,33,Government Information Quarterly,1,db/journals/giq/giq33.html#DawesVP16,https://doi.org/10.1016/j.giq.2016.01.003 +Habin Lee,Embedding persuasive features into policy issues: Implications to designing public participation processes.,2017,34,Government Information Quarterly,4,db/journals/giq/giq34.html#LeeTC17,https://doi.org/10.1016/j.giq.2017.11.006 +Susan Copeland Wilson,e-Government legislation: Implementation issues for programs for low-income people.,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#Wilson14,https://doi.org/10.1016/j.giq.2013.04.002 +Johannes M. Bauer,Universal service in the European Union.,1999,16,Government Information Quarterly,4,db/journals/giq/giq16.html#Bauer99,https://doi.org/10.1016/S0740-624X(00)86838-0 +Taewoo Nam,Determining the type of e-government use.,2014,31,Government Information Quarterly,2,db/journals/giq/giq31.html#Nam14,https://doi.org/10.1016/j.giq.2013.09.006 +Alasdair Roberts,ORCON Creep: Information sharing and the threat to government accountability.,2004,21,Government Information Quarterly,3,db/journals/giq/giq21.html#Roberts04,https://doi.org/10.1016/j.giq.2004.04.002 +John A. Shuler,Policy implications of a model public information service: the DOSFAN experience.,2000,17,Government Information Quarterly,4,db/journals/giq/giq17.html#Shuler00,https://doi.org/10.1016/S0740-624X(00)00060-5 +William F. Micarelli,Evolution of the United States economic censuses: The nineteenth and twentieth centuries.,1998,15,Government Information Quarterly,3,db/journals/giq/giq15.html#Micarelli98,https://doi.org/10.1016/S0740-624X(98)90007-7 +Rafael Piñeiro Rodríguez,A field experiment on bureaucratic discretionary bias under FOI laws.,2018,35,Government Information Quarterly,3,db/journals/giq/giq35.html#RodriguezR18,https://doi.org/10.1016/j.giq.2018.06.001 +Sounman Hong,Who benefits from Twitter? Social media and political competition in the U.S. House of Representatives.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#Hong13,https://doi.org/10.1016/j.giq.2013.05.009 +Seok-Jin Eom,The use of smart work in government: Empirical analysis of Korean experiences.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#EomCS16,https://doi.org/10.1016/j.giq.2016.01.005 +Maggie Farrell,U.S. depository library council electronic transition report.,2000,17,Government Information Quarterly,3,db/journals/giq/giq17.html#Farrell00,https://doi.org/10.1016/S0740-624X(00)00039-3 +David C. R. Heisser,Federal depository program at the crossroads: The library administrator's perspective.,1999,16,Government Information Quarterly,3,db/journals/giq/giq16.html#Heisser99,https://doi.org/10.1016/S0740-624X(99)80026-4 +Philip Doty,Information micro-practices in Texas rural courts: methods and issues for e-government.,2002,19,Government Information Quarterly,4,db/journals/giq/giq19.html#DotyE02,https://doi.org/10.1016/S0740-624X(02)00121-1 +Alberto Nucciarelli,Should next generation access networks fall within the scope of universal service? A European union perspective.,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#NucciarelliSR14,https://doi.org/10.1016/j.giq.2013.02.006 +Jennie M. Burroughs,What users want: Assessing government information preferences to drive information services.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#Burroughs09,https://doi.org/10.1016/j.giq.2008.06.003 +Ines Mergel,Agile innovation management in government: A research agenda.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#Mergel16a,https://doi.org/10.1016/j.giq.2016.07.004 +Pei-Hsuan Hsieh,Assessing web services of emerging economies in an Eastern country - Taiwan's e-government.,2013,30,Government Information Quarterly,3,db/journals/giq/giq30.html#HsiehHY13,https://doi.org/10.1016/j.giq.2013.02.003 +Euripidis N. Loukis,Promoting open innovation in the public sector through social media monitoring.,2017,34,Government Information Quarterly,1,db/journals/giq/giq34.html#LoukisCA17,https://doi.org/10.1016/j.giq.2016.09.004 +Sounman Hong,Political polarization on twitter: Implications for the use of social media in digital governments.,2016,33,Government Information Quarterly,4,db/journals/giq/giq33.html#HongK16,https://doi.org/10.1016/j.giq.2016.04.007 +Robert LaRose,Public broadband investment priorities in the United States: an analysis of the broadband technology opportunities program.,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#LaRoseBDCMJ14,https://doi.org/10.1016/j.giq.2012.11.004 +John Carlo Bertot,Securing the homeland in the digital age: Issues and implications for policy and governance.,2015,32,Government Information Quarterly,2,db/journals/giq/giq32.html#BertotSJ15,https://doi.org/10.1016/j.giq.2015.04.001 +Sanne Elling,Measuring the quality of governmental websites in a controlled versus an online setting with the 'Website Evaluation Questionnaire'.,2012,29,Government Information Quarterly,3,db/journals/giq/giq29.html#EllingLJB12,https://doi.org/10.1016/j.giq.2011.11.004 +Atreyi Kankanhalli,Open innovation in the public sector: A research agenda.,2017,34,Government Information Quarterly,1,db/journals/giq/giq34.html#KankanhalliZT17,https://doi.org/10.1016/j.giq.2016.12.002 +Zhao Huang,Usability and credibility of e-government websites.,2014,31,Government Information Quarterly,4,db/journals/giq/giq31.html#HuangB14,https://doi.org/10.1016/j.giq.2014.07.002 +Rhoda C. Joseph,A structured analysis of e-government studies: Trends and opportunities.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#Joseph13,https://doi.org/10.1016/j.giq.2013.05.006 +John Carlo Bertot,Government information: New challenges in the internet age.,2005,22,Government Information Quarterly,1,db/journals/giq/giq22.html#BertotMSQ05,https://doi.org/10.1016/j.giq.2004.10.008 +Marta Raus,Electronic customs innovation: An improvement of governmental infrastructures.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#RausFB09,https://doi.org/10.1016/j.giq.2008.11.008 +Hasan Akca,Challenge of rural people to reduce digital divide in the globalized world: Theory and practice.,2007,24,Government Information Quarterly,2,db/journals/giq/giq24.html#AkcaSE07,https://doi.org/10.1016/j.giq.2006.04.012 +Paul T. Jaeger,The endless wire: e-government as global phenomenon.,2003,20,Government Information Quarterly,4,db/journals/giq/giq20.html#Jaeger03,https://doi.org/10.1016/j.giq.2003.08.003 +Chih Hao Ku,A decision support system: Automated crime report analysis and classification for e-government.,2014,31,Government Information Quarterly,4,db/journals/giq/giq31.html#KuL14,https://doi.org/10.1016/j.giq.2014.08.003 +Olaseni Muritala Okunola,The multi-dimensional digital divide: Perspectives from an e-government portal in Nigeria.,2017,34,Government Information Quarterly,2,db/journals/giq/giq34.html#OkunolaRJ17,https://doi.org/10.1016/j.giq.2017.02.002 +August A. Imholtz Jr.,Congress as Publisher: The magic of the U.S. Congressional Serial Set.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#Imholtz12,https://doi.org/10.1016/j.giq.2011.12.005 +Erna Ruijer,Open data for democracy: Developing a theoretical framework for open data use.,2017,34,Government Information Quarterly,1,db/journals/giq/giq34.html#RuijerGM17,https://doi.org/10.1016/j.giq.2017.01.001 +Charles D. Bernholz,Population and Development Report: Water Scarcity in the Arab World.,2005,22,Government Information Quarterly,1,db/journals/giq/giq22.html#Bernholz05,https://doi.org/10.1016/j.giq.2004.09.007 +Iryna Susha,Context clues for the stall of the Citizens' Initiative: lessons for opening up e-participation development practice.,2014,31,Government Information Quarterly,3,db/journals/giq/giq31.html#SushaG14,https://doi.org/10.1016/j.giq.2014.02.005 +Andrew Lopez,The persistence of innovation in government.,2015,32,Government Information Quarterly,3,db/journals/giq/giq32.html#Lopez15,https://doi.org/10.1016/j.giq.2015.04.003 +Björn Niehaves,Iceberg ahead: On electronic government research and societal aging.,2011,28,Government Information Quarterly,3,db/journals/giq/giq28.html#Niehaves11,https://doi.org/10.1016/j.giq.2011.01.003 +Chorng-Shyong Ong,Managing citizen-initiated email contacts.,2009,26,Government Information Quarterly,3,db/journals/giq/giq26.html#OngW09,https://doi.org/10.1016/j.giq.2008.07.005 +Rabia Karakaya Polat,Digital exclusion in Turkey: A policy perspective.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#Polat12,https://doi.org/10.1016/j.giq.2012.03.002 +Daniel Belanche-Gracia,Determinants of multi-service smartcard success for smart cities development: A study based on citizens' privacy and security perceptions.,2015,32,Government Information Quarterly,2,db/journals/giq/giq32.html#Belanche-Gracia15,https://doi.org/10.1016/j.giq.2014.12.004 +Frank P. Lambert,Seeking electronic information from government resources: A comparative analysis of two communities' web searching of municipal government websites.,2013,30,Government Information Quarterly,1,db/journals/giq/giq30.html#Lambert13,https://doi.org/10.1016/j.giq.2012.07.007 +Robert LaRose,The impact of rural broadband development: Lessons from a natural field experiment.,2011,28,Government Information Quarterly,1,db/journals/giq/giq28.html#LaRoseSGS11,https://doi.org/10.1016/j.giq.2009.12.013 +Dave Gelders,Public information provision about policy intentions: The Dutch and Belgian experience.,2005,22,Government Information Quarterly,1,db/journals/giq/giq22.html#Gelders05,https://doi.org/10.1016/j.giq.2004.10.006 +Edward Herman,The American Community Survey: An introduction to the basics.,2008,25,Government Information Quarterly,3,db/journals/giq/giq25.html#Herman08,https://doi.org/10.1016/j.giq.2007.08.006 +Ben Wasike,"FoIA in the age of ""Open. Gov"": An analysis of the performance of the Freedom of Information Act under the Obama and Bush administrations.",2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#Wasike16,https://doi.org/10.1016/j.giq.2016.05.001 +Sotirios Koussouris,Accelerating Policy Making 2.0: Innovation directions and research perspectives as distilled from four standout cases.,2015,32,Government Information Quarterly,2,db/journals/giq/giq32.html#KoussourisLKAM15,https://doi.org/10.1016/j.giq.2015.03.001 +Merrill Warkentin,Social identity and trust in internet-based voting adoption.,2018,35,Government Information Quarterly,2,db/journals/giq/giq35.html#WarkentinSGRP18,https://doi.org/10.1016/j.giq.2018.03.007 +Tonny J. Oyana,Exploring geographic disparities in broadband access and use in rural southern Illinois: Who's being left behind?,2011,28,Government Information Quarterly,2,db/journals/giq/giq28.html#Oyana11,https://doi.org/10.1016/j.giq.2010.09.003 +Marijn Janssen,The challenges and limits of big data algorithms in technocratic governance.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#JanssenK16,https://doi.org/10.1016/j.giq.2016.08.011 +Christopher G. Reddick,Social media adoption at the American grass roots: Web 2.0 or 1.5?,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#ReddickN13,https://doi.org/10.1016/j.giq.2013.05.011 +Elin Uppström,Explaining value co-creation and co-destruction in e-government using boundary object theory.,2017,34,Government Information Quarterly,3,db/journals/giq/giq34.html#UppstromL17,https://doi.org/10.1016/j.giq.2017.08.001 +Joseph A. Salem Jr.,Public and private sector interests in e-government: a look at the DOE's PubSCIENCE.,2003,20,Government Information Quarterly,1,db/journals/giq/giq20.html#Salem03,https://doi.org/10.1016/S0740-624X(02)00133-8 +Giovanna Patterson,Principal challenges facing electronic records management in federal agencies today.,2002,19,Government Information Quarterly,3,db/journals/giq/giq19.html#PattersonS02,https://doi.org/10.1016/S0740-624X(02)00108-9 +Donnesha Correll,Using technology intelligently: the decennial information age.,2000,17,Government Information Quarterly,2,db/journals/giq/giq17.html#Correll00,https://doi.org/10.1016/S0740-624X(00)00022-8 +Paul T. Jaeger,The impact of the USA Patriot Act on collection and analysis of personal information under the Foreign Intelligence Surveillance Act.,2003,20,Government Information Quarterly,3,db/journals/giq/giq20.html#JaegerBM03,https://doi.org/10.1016/S0740-624X(03)00057-1 +María Rosalía Vicente,An empirical analysis of e-participation. The role of social networks and e-government over citizens' online engagement.,2014,31,Government Information Quarterly,3,db/journals/giq/giq31.html#VicenteN14,https://doi.org/10.1016/j.giq.2013.12.006 +Victor Glass,Zero-based budgeting: Does it make sense for universal service reform?,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#GlassSP14,https://doi.org/10.1016/j.giq.2013.05.022 +J. Ignacio Criado,Government innovation through social media.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#CriadoSG13,https://doi.org/10.1016/j.giq.2013.10.003 +John Kavaliunas,Census 2000 data products.,2000,17,Government Information Quarterly,2,db/journals/giq/giq17.html#Kavaliunas00,https://doi.org/10.1016/S0740-624X(00)00028-9 +Jeffrey M. Wilhite,Primary Source Media's World Government Documents Archive. Declassified Documents Reference System: The United States.,2005,22,Government Information Quarterly,1,db/journals/giq/giq22.html#Wilhite05,https://doi.org/10.1016/j.giq.2004.09.003 +Sascha Alexander Wagner,How IT and social change facilitates public participation: A stakeholder-oriented approach.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#WagnerVK16,https://doi.org/10.1016/j.giq.2016.07.003 +Dmitry Epstein,"Not by technology alone: The ""analog"" aspects of online public engagement in policymaking.",2014,31,Government Information Quarterly,2,db/journals/giq/giq31.html#EpsteinNV14,https://doi.org/10.1016/j.giq.2014.01.001 +Maggie Farrell,Digital government information and libraries: Shifting paradigms or predictable partnerships.,2008,25,Government Information Quarterly,1,db/journals/giq/giq25.html#Farrell08,https://doi.org/10.1016/j.giq.2007.10.003 +Henry H. Perritt Jr.,NCLIS assessment of public information dissemination: some sound ideas tarnished by defense of obsolete approaches.,2001,18,Government Information Quarterly,2,db/journals/giq/giq18.html#Perritt01,https://doi.org/10.1016/S0740-624X(01)00067-3 +Samia El-Badry,Providing census tabulations to government security agencies in the United States: The case of Arab Americans.,2007,24,Government Information Quarterly,2,db/journals/giq/giq24.html#El-BadryS07,https://doi.org/10.1016/j.giq.2007.02.001 +Krishna Jayakar,Funding public computing centers: Balancing broadband availability and expected demand.,2012,29,Government Information Quarterly,1,db/journals/giq/giq29.html#JayakarP12,https://doi.org/10.1016/j.giq.2011.02.005 +Thorhildur Jetzek,Managing complexity across multiple dimensions of liquid open data: The case of the Danish Basic Data Program.,2016,33,Government Information Quarterly,1,db/journals/giq/giq33.html#Jetzek16,https://doi.org/10.1016/j.giq.2015.11.003 +Rana Tassabehji,Emergent digital era governance: Enacting the role of the 'institutional entrepreneur' in transformational change.,2016,33,Government Information Quarterly,2,db/journals/giq/giq33.html#TassabehjiHP16,https://doi.org/10.1016/j.giq.2016.04.003 +Thomas E. Pinelli,Maximizing the results of federally-funded research and development through knowledge management: A strategic imperative for improving U.S. competitiveness.,1998,15,Government Information Quarterly,2,db/journals/giq/giq15.html#PinelliB98,https://doi.org/10.1016/S0740-624X(98)90041-7 +Valerie D. Glenn,The power of communication: Managing information in public organizations.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#Glenn06,https://doi.org/10.1016/j.giq.2005.07.002 +Stuart A. Sutton,Integrating 21st century access to ERIC services and resources.,2001,18,Government Information Quarterly,1,db/journals/giq/giq18.html#Sutton01,https://doi.org/10.1016/S0740-624X(00)00063-0 +Pieter Verdegem,User-centered E-Government in practice: A comprehensive model for measuring user satisfaction.,2009,26,Government Information Quarterly,3,db/journals/giq/giq26.html#VerdegemV09,https://doi.org/10.1016/j.giq.2009.03.005 +Donald K. Jonas,Building state information highways: lessons for public and private sector leaders.,2000,17,Government Information Quarterly,1,db/journals/giq/giq17.html#Jonas00,https://doi.org/10.1016/S0740-624X(99)00026-X +Eliot Christian,A metadata initiative for global information discovery.,2001,18,Government Information Quarterly,3,db/journals/giq/giq18.html#Christian01,https://doi.org/10.1016/S0740-624X(01)00074-0 +William E. Moen,The metadata approach to accessing government information.,2001,18,Government Information Quarterly,3,db/journals/giq/giq18.html#Moen01,https://doi.org/10.1016/S0740-624X(01)00079-X +Steve Sawyer,Pennsylvania's transition to enterprise computing as a study in strategic alignment.,2008,25,Government Information Quarterly,4,db/journals/giq/giq25.html#SawyerHR08,https://doi.org/10.1016/j.giq.2007.09.008 +Weibing Xiao,China's limited push model of FOI legislation.,2010,27,Government Information Quarterly,4,db/journals/giq/giq27.html#Xiao10,https://doi.org/10.1016/j.giq.2010.04.003 +Jonathan Lazar,Up in the air: Are airlines following the new DOT rules on equal pricing for people with disabilities when websites are inaccessible?,2010,27,Government Information Quarterly,4,db/journals/giq/giq27.html#LazarJAAMMMNOPS10,https://doi.org/10.1016/j.giq.2010.04.005 +José Ramón Gil-García,Understanding the evolution of e-government: The influence of systems of rules on public sector dynamics.,2007,24,Government Information Quarterly,2,db/journals/giq/giq24.html#Gil-GarciaM07,https://doi.org/10.1016/j.giq.2006.04.005 +Rui Pedro Lourenço,An analysis of open government portals: A perspective of transparency for accountability.,2015,32,Government Information Quarterly,3,db/journals/giq/giq32.html#Lourenco15,https://doi.org/10.1016/j.giq.2015.05.006 +Tiffeni J. Fontno,FirstGov http://www.firstgov.gov/.,2002,19,Government Information Quarterly,2,db/journals/giq/giq19.html#Fontno02,https://doi.org/10.1016/S0740-624X(02)00097-7 +Frank Bannister,Trust and transformational government: A proposed framework for research.,2011,28,Government Information Quarterly,2,db/journals/giq/giq28.html#BannisterC11,https://doi.org/10.1016/j.giq.2010.06.010 +Lawrence A. West Jr.,Florida's marine resource information system: A geographic decision support system.,1999,16,Government Information Quarterly,1,db/journals/giq/giq16.html#West99,https://doi.org/10.1016/S0740-624X(99)80015-X +,Guangzhou Municipal Government Legal Affairs Office: Introduction to open government information work by the Guangzhou municipal government.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#Office06,https://doi.org/10.1016/j.giq.2006.02.006 +Rowena Cullen,Participatory democracy and the value of online community networks: An exploration of online and offline communities engaged in civil society and political activity.,2011,28,Government Information Quarterly,2,db/journals/giq/giq28.html#CullenS11,https://doi.org/10.1016/j.giq.2010.04.008 +Ralf-Martin Soe,Agile local governments: Experimentation before implementation.,2018,35,Government Information Quarterly,2,db/journals/giq/giq35.html#SoeD18,https://doi.org/10.1016/j.giq.2017.11.010 +Dana Jackson-Hardwick,Secrecy in the Sunshine Era: The promises and failures of U.S. open government laws.,2015,32,Government Information Quarterly,3,db/journals/giq/giq32.html#Jackson-Hardwick15,https://doi.org/10.1016/j.giq.2015.04.005 +Andrea L. Kavanaugh,Social media use by government: From the routine to the critical.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#KavanaughFSYLSN12,https://doi.org/10.1016/j.giq.2012.06.002 +Chuck Malone,Agency Web Pages - An Information Resource and a Public Relations Tool: The USDA Example.,2004,21,Government Information Quarterly,3,db/journals/giq/giq21.html#Malone04,https://doi.org/10.1016/j.giq.2004.02.004 +Wee Hong Loo,User acceptance of Malaysian government multipurpose smartcard applications.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#LooYC09,https://doi.org/10.1016/j.giq.2008.07.004 +John Carlo Bertot,Using ICTs to create a culture of transparency: E-government and social media as openness and anti-corruption tools for societies.,2010,27,Government Information Quarterly,3,db/journals/giq/giq27.html#BertotJG10,https://doi.org/10.1016/j.giq.2010.03.001 +Christine B. Williams,Leveraging social media to achieve a community policing agenda.,2018,35,Government Information Quarterly,2,db/journals/giq/giq35.html#WilliamsFKMTX18,https://doi.org/10.1016/j.giq.2018.03.001 +Vagia Kyriakidou,Utilization of communications network potential: Public practices and effects.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#KyriakidouMS12,https://doi.org/10.1016/j.giq.2011.07.008 +John A. Shuler,Reviews.,1998,15,Government Information Quarterly,2,db/journals/giq/giq15.html#Shuler98,https://doi.org/10.1016/S0740-624X(98)90045-4 +Sharon S. Dawes,Stewardship and usefulness: Policy principles for information-based transparency.,2010,27,Government Information Quarterly,4,db/journals/giq/giq27.html#Dawes10,https://doi.org/10.1016/j.giq.2010.07.001 +Jeremy Rose,Stakeholder theory for the E-government context: Framing a value-oriented normative core.,2018,35,Government Information Quarterly,3,db/journals/giq/giq35.html#RoseFS18,https://doi.org/10.1016/j.giq.2018.06.005 +Haihe Jin,How should the Chinese government provide information services for Mongol ethnic minority?,2015,32,Government Information Quarterly,1,db/journals/giq/giq32.html#JinL15,https://doi.org/10.1016/j.giq.2014.11.003 +Shu-hsien Liao,E-government implementation: Business contract legal support for Taiwanese businessmen in Mainland China.,2005,22,Government Information Quarterly,3,db/journals/giq/giq22.html#LiaoJ05,https://doi.org/10.1016/j.giq.2005.08.002 +Dave Gelders,Public information problems in the implementation of public policy: The long road of the reflecting license plate in Belgium.,2005,22,Government Information Quarterly,3,db/journals/giq/giq22.html#Gelders05a,https://doi.org/10.1016/j.giq.2005.05.006 +Hye-Chung Kum,Supporting self-evaluation in local government via Knowledge Discovery and Data mining.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#KumDS09,https://doi.org/10.1016/j.giq.2008.12.009 +Azi Lev-On,Local engagement online: Municipal Facebook pages as hubs of interaction.,2015,32,Government Information Quarterly,3,db/journals/giq/giq32.html#Lev-OnS15,https://doi.org/10.1016/j.giq.2015.05.007 +J. A. G. M. van Dijk,Explaining the acceptance and use of government Internet services: A multivariate analysis of 2006 survey data in the Netherlands.,2008,25,Government Information Quarterly,3,db/journals/giq/giq25.html#DijkPE08,https://doi.org/10.1016/j.giq.2007.09.006 +Albert Meijer,E-governance innovation: Barriers and strategies.,2015,32,Government Information Quarterly,2,db/journals/giq/giq32.html#Meijer15,https://doi.org/10.1016/j.giq.2015.01.001 +John N. Gathegi,Democracy through access to legal information for newly democratizing nations: The Kenyan perspective and lessons from the American experience.,2005,22,Government Information Quarterly,1,db/journals/giq/giq22.html#Gathegi05,https://doi.org/10.1016/j.giq.2004.10.004 +Victor Bekkers,Social media monitoring: Responsive governance in the shadow of surveillance?,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#BekkersEK13,https://doi.org/10.1016/j.giq.2013.05.024 +John Carlo Bertot,About the Authors.,2007,24,Government Information Quarterly,4,db/journals/giq/giq24.html#Bertot07,https://doi.org/10.1016/j.giq.2007.08.003 +Robert E. Roth,Spatiotemporal crime analysis in U.S. law enforcement agencies: Current practices and unmet needs.,2013,30,Government Information Quarterly,3,db/journals/giq/giq30.html#RothRFLM13,https://doi.org/10.1016/j.giq.2013.02.001 +Andrea L. Kavanaugh,(Hyper) local news aggregation: Designing for social affordances.,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#KavanaughAGNPRT14,https://doi.org/10.1016/j.giq.2013.04.004 +Taewoo Nam,Suggesting frameworks of citizen-sourcing via Government 2.0.,2012,29,Government Information Quarterly,1,db/journals/giq/giq29.html#Nam12,https://doi.org/10.1016/j.giq.2011.07.005 +Tomasz Janowski,Tribute to John Bertot and message from the incoming Editors-in-Chief.,2015,32,Government Information Quarterly,2,db/journals/giq/giq32.html#JanowskiJ15,https://doi.org/10.1016/j.giq.2015.03.004 +Charles D. Bernholz,American Indian treaties in the State Courts: A guide to treaty citations from opinions of the State Court systems.,2005,22,Government Information Quarterly,3,db/journals/giq/giq22.html#BernholzW05,https://doi.org/10.1016/j.giq.2005.05.004 +James T. Ault,U.s. government decision makers' expectations and patterns of use of emerging and existing information technologies.,2003,20,Government Information Quarterly,1,db/journals/giq/giq20.html#AultG03,https://doi.org/10.1016/S0740-624X(02)00135-1 +J. Timothy Sprehe,The end of the National Technical Information Service?,2000,17,Government Information Quarterly,1,db/journals/giq/giq17.html#Sprehe00,https://doi.org/10.1016/S0740-624X(99)00020-9 +Sharon S. Dawes,Designing electronic government information access programs: a holistic approach.,2004,21,Government Information Quarterly,1,db/journals/giq/giq21.html#DawesPC04,https://doi.org/10.1016/j.giq.2003.11.001 +Robin Gauld,How responsive is E-Government? Evidence from Australia and New Zealand.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#GauldGM09,https://doi.org/10.1016/j.giq.2008.02.002 +Marijn Janssen,Simulation and animation for adopting shared services: Evaluating and comparing alternative arrangements.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#JanssenJZ09,https://doi.org/10.1016/j.giq.2008.08.004 +Boriana Rukanova,Understanding transnational information systems with supranational governance: A multi-level conflict management perspective.,2015,32,Government Information Quarterly,2,db/journals/giq/giq32.html#RukanovaWST15,https://doi.org/10.1016/j.giq.2014.12.003 +Lisa K. Westerback,Toward best practices for strategic information technology management.,2000,17,Government Information Quarterly,1,db/journals/giq/giq17.html#Westerback00,https://doi.org/10.1016/S0740-624X(99)00023-4 +Nancy F. Stimson,John H. Hickcox's confession: An addendum.,2007,24,Government Information Quarterly,1,db/journals/giq/giq24.html#StimsonN07,https://doi.org/10.1016/j.giq.2006.06.010 +Rajesh Sharma,Investigating the role of intermediaries in adoption of public access outlets for delivery of e-Government services in developing countries: An empirical study.,2017,34,Government Information Quarterly,4,db/journals/giq/giq34.html#SharmaM17,https://doi.org/10.1016/j.giq.2017.10.001 +Tim Barnes,Implementing a voluntary code on access to information: Nirex's practical experience.,2004,21,Government Information Quarterly,1,db/journals/giq/giq21.html#BarnesD04,https://doi.org/10.1016/j.giq.2003.12.001 +Christopher G. Reddick,Public opinion on National Security Agency surveillance programs: A multi-method approach.,2015,32,Government Information Quarterly,2,db/journals/giq/giq32.html#ReddickCJ15,https://doi.org/10.1016/j.giq.2015.01.003 +Nan Zhang,What factors drive open innovation in China's public sector? A case study of official document exchange via microblogging (ODEM) in Haining.,2017,34,Government Information Quarterly,1,db/journals/giq/giq34.html#ZhangZZMT17,https://doi.org/10.1016/j.giq.2016.11.002 +Peter Trkman,A conceptual model for the development of broadband and e-government.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#TrkmanT09,https://doi.org/10.1016/j.giq.2008.11.005 +Agustí Cerrillo-i-Martínez,The regulation of diffusion of public sector information via electronic means: Lessons from the Spanish regulation.,2011,28,Government Information Quarterly,2,db/journals/giq/giq28.html#Cerrillo-i-Martinez11,https://doi.org/10.1016/j.giq.2010.05.009 +Carmen Caba Pérez,Citizens' access to on-line governmental financial information: Practices in the European Union countries.,2005,22,Government Information Quarterly,2,db/journals/giq/giq22.html#PerezHB05,https://doi.org/10.1016/j.giq.2005.02.002 +Kyujin Jung,"A semantic (TRIZ) network analysis of South Korea's ""Open Public Data"" policy.",2015,32,Government Information Quarterly,3,db/journals/giq/giq32.html#JungP15,https://doi.org/10.1016/j.giq.2015.03.006 +Daeho Kim,New regulatory institution for the convergence of broadcasting and telecommunications: A Korean case.,2011,28,Government Information Quarterly,2,db/journals/giq/giq28.html#Kim11,https://doi.org/10.1016/j.giq.2010.08.004 +José Ramón Gil-García,Conceptualizing smartness in government: An integrative and multi-dimensional view.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#Gil-GarciaZC16,https://doi.org/10.1016/j.giq.2016.03.002 +Roger Anderson,Homeland Security.,2004,21,Government Information Quarterly,4,db/journals/giq/giq21.html#Anderson04,https://doi.org/10.1016/j.giq.2003.10.001 +Bo Fan 0004,The moderating effect of external pressure on the relationship between internal organizational factors and the quality of open government data.,2017,34,Government Information Quarterly,3,db/journals/giq/giq34.html#FanZ17,https://doi.org/10.1016/j.giq.2017.08.006 +R. David Lankes,Developing a mission for the National Education Network: The challenge of seamless access.,1999,16,Government Information Quarterly,2,db/journals/giq/giq16.html#LankesS99,https://doi.org/10.1016/S0740-624X(99)80006-9 +Gregory A. Porumbescu,Linking public sector social media and e-government website use to trust in government.,2016,33,Government Information Quarterly,2,db/journals/giq/giq33.html#Porumbescu16,https://doi.org/10.1016/j.giq.2016.04.006 +Robert Gellman,Privacy and security: Assessing database derivative activities.,2004,21,Government Information Quarterly,4,db/journals/giq/giq21.html#Gellman04,https://doi.org/10.1016/j.giq.2004.08.005 +Tino Schuppan,E-Government in developing countries: Experiences from sub-Saharan Africa.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#Schuppan09,https://doi.org/10.1016/j.giq.2008.01.006 +Clayton Wukich,Reusing social media information in government.,2016,33,Government Information Quarterly,2,db/journals/giq/giq33.html#WukichM16,https://doi.org/10.1016/j.giq.2016.01.011 +Patrice McDermott,Building open government.,2010,27,Government Information Quarterly,4,db/journals/giq/giq27.html#McDermott10,https://doi.org/10.1016/j.giq.2010.07.002 +Yuan Liu,Evaluating the readiness of government portal websites in China to adopt contemporary public administration principles.,2012,29,Government Information Quarterly,3,db/journals/giq/giq29.html#LiuCW12,https://doi.org/10.1016/j.giq.2011.12.009 +Megan Sniffin-Marinoff,To archive or not to archive? The message of a (somewhat) meaningless question.,1999,16,Government Information Quarterly,3,db/journals/giq/giq16.html#Sniffin-Marinoff99,https://doi.org/10.1016/S0740-624X(99)80024-0 +John Carlo Bertot,User-centered e-government: Challenges and benefits for government Web sites.,2006,23,Government Information Quarterly,2,db/journals/giq/giq23.html#BertotJ06,https://doi.org/10.1016/j.giq.2006.02.001 +Jarunee Wonglimpiyarat,In support of innovation management and Roger's Innovation Diffusion theory.,2005,22,Government Information Quarterly,3,db/journals/giq/giq22.html#WonglimpiyaratY05,https://doi.org/10.1016/j.giq.2005.05.005 +Clenn J. McLoughlin,Next generation internet and related initiatives.,1999,16,Government Information Quarterly,3,db/journals/giq/giq16.html#McLoughlin99,https://doi.org/10.1016/S0740-624X(99)80029-X +John T. Snead,Social media use in the U.S. Executive branch.,2013,30,Government Information Quarterly,1,db/journals/giq/giq30.html#Snead13,https://doi.org/10.1016/j.giq.2012.09.001 +Gregory J. Abbott,Looking toward an information base in the 21st Century: The American Community Survey.,2000,17,Government Information Quarterly,2,db/journals/giq/giq17.html#AbbottC00,https://doi.org/10.1016/S0740-624X(00)00029-0 +Amy West,Government Innovators Network.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#West06,https://doi.org/10.1016/j.giq.2005.07.006 +Janja Nograsek,E-government and organisational transformation of government: Black box revisited?,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#NograsekV14,https://doi.org/10.1016/j.giq.2013.07.006 +Charles D. Bernholz,"Standardized American Indians: The ""Names of Indian tribes and bands"" list from the Office of Indian Affairs.",2010,27,Government Information Quarterly,3,db/journals/giq/giq27.html#Bernholz10,https://doi.org/10.1016/j.giq.2010.01.003 +Morag Cherry,Freedom of information and 'vexatious' requests - The case of Scottish local government.,2013,30,Government Information Quarterly,3,db/journals/giq/giq30.html#CherryM13,https://doi.org/10.1016/j.giq.2013.02.004 +Andrew Charlesworth,Implementing the European union data protection directive 1995 in UK law: The data protection act 1998.,1999,16,Government Information Quarterly,3,db/journals/giq/giq16.html#Charlesworth99,https://doi.org/10.1016/S0740-624X(99)80025-2 +José María Moreno-Jiménez,e-Cognocracy and the design of public policies.,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#Moreno-JimenezP14,https://doi.org/10.1016/j.giq.2013.09.004 +J. Timothy Sprehe,The role of situational factors in managing U.S. federal recordkeeping.,2002,19,Government Information Quarterly,3,db/journals/giq/giq19.html#SpreheMZ02,https://doi.org/10.1016/S0740-624X(02)00107-7 +Sebastian Stier,Political determinants of e-government performance revisited: Comparing democracies and autocracies.,2015,32,Government Information Quarterly,3,db/journals/giq/giq32.html#Stier15,https://doi.org/10.1016/j.giq.2015.05.004 +Susan Xue,China's legislative system and information: An overview.,2005,22,Government Information Quarterly,3,db/journals/giq/giq22.html#Xue05,https://doi.org/10.1016/j.giq.2005.05.003 +Beth E. Clausen,Northwestern University Library's experience and decision.,2005,22,Government Information Quarterly,4,db/journals/giq/giq22.html#Clausen05,https://doi.org/10.1016/j.giq.2006.01.007 +J. Timothy Sprehe,The positive benefits of electronic records management in the context of enterprise content management.,2005,22,Government Information Quarterly,2,db/journals/giq/giq22.html#Sprehe05,https://doi.org/10.1016/j.giq.2005.02.003 +Seraphine F. Maerz,The electronic face of authoritarianism: E-government as a tool for gaining legitimacy in competitive and non-competitive regimes.,2016,33,Government Information Quarterly,4,db/journals/giq/giq33.html#Maerz16,https://doi.org/10.1016/j.giq.2016.08.008 +Mon-Chi Lio,Can the internet reduce corruption? A cross-country study based on dynamic panel data models.,2011,28,Government Information Quarterly,1,db/journals/giq/giq28.html#LioLO11,https://doi.org/10.1016/j.giq.2010.01.005 +Dave Gelders,Minding the gap: Applying a service marketing model into government policy communications.,2010,27,Government Information Quarterly,1,db/journals/giq/giq27.html#GeldersI10,https://doi.org/10.1016/j.giq.2009.05.005 +Lihua Yang,Internet's impact on expert-citizen interactions in public policymaking - A meta analysis.,2010,27,Government Information Quarterly,4,db/journals/giq/giq27.html#YangL10,https://doi.org/10.1016/j.giq.2009.12.012 +John Carlo Bertot,Government Information Quarterly: A new beginning.,2001,18,Government Information Quarterly,1,db/journals/giq/giq18.html#BertotM01,https://doi.org/10.1016/S0740-624X(00)00065-4 +Patricia Diamond Fletcher,Introduction to the symposium issue.,2001,18,Government Information Quarterly,4,db/journals/giq/giq18.html#Fletcher01,https://doi.org/10.1016/S0740-624X(01)00084-3 +Dimitrios Zissis,Securing e-Government and e-Voting with an open cloud computing architecture.,2011,28,Government Information Quarterly,2,db/journals/giq/giq28.html#ZissisL11,https://doi.org/10.1016/j.giq.2010.05.010 +Chuanfu Chen,Impacts of government website information on social sciences and humanities in China: A citation analysis.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#ChenWLWW13,https://doi.org/10.1016/j.giq.2013.05.008 +Charles D. Bernholz,Pestilence in paradise: Leprosy accounts in the annual reports of the governor of the territory of Hawaii.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#Bernholz09a,https://doi.org/10.1016/j.giq.2008.10.001 +Peter Spác,Does the freedom of information law increase transparency at the local level? Evidence from a field experiment.,2018,35,Government Information Quarterly,3,db/journals/giq/giq35.html#SpacVZ18,https://doi.org/10.1016/j.giq.2018.05.003 +Nancy Tsai,Improving the process of E-Government initiative: An in-depth case study of web-based GIS implementation.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#TsaiCP09,https://doi.org/10.1016/j.giq.2008.11.007 +Chien-leng Hsu,Mapping online social networks of Korean politicians.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#HsuP12,https://doi.org/10.1016/j.giq.2011.09.009 +Vikki Gordon,National Security Directive declassification.,2010,27,Government Information Quarterly,4,db/journals/giq/giq27.html#Gordon10,https://doi.org/10.1016/j.giq.2010.02.007 +Carol A. Hert,Re-conceptualizing statistical abstracts in the 21st century: An empirical study of sourcebook of Criminal Justice Statistics.,2006,23,Government Information Quarterly,2,db/journals/giq/giq23.html#HertH06,https://doi.org/10.1016/j.giq.2005.11.001 +Norman E. Youngblood,Revisiting Alabama state website accessibility.,2014,31,Government Information Quarterly,3,db/journals/giq/giq31.html#Youngblood14,https://doi.org/10.1016/j.giq.2014.02.007 +Jarunee Wonglimpiyarat,Innovative policies to support technology and ICT development.,2014,31,Government Information Quarterly,3,db/journals/giq/giq31.html#Wonglimpiyarat14,https://doi.org/10.1016/j.giq.2013.12.005 +Shree Venkatachalam,"What is broadband? Where is ""rural""?",2003,20,Government Information Quarterly,2,db/journals/giq/giq20.html#VenkatachalamM03,https://doi.org/10.1016/S0740-624X(03)00021-2 +Karin Axelsson,Public e-services for agency efficiency and citizen benefit - Findings from a stakeholder centered analysis.,2013,30,Government Information Quarterly,1,db/journals/giq/giq30.html#AxelssonML13,https://doi.org/10.1016/j.giq.2012.08.002 +Devendra Dilip Potnis,Measuring e-Governance as an innovation in the public sector.,2010,27,Government Information Quarterly,1,db/journals/giq/giq27.html#Potnis10,https://doi.org/10.1016/j.giq.2009.08.002 +Debbie L. Rabina,Israel's legal deposit law in global context.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#Rabina09,https://doi.org/10.1016/j.giq.2008.01.005 +Andrea L. Kavanaugh,Media use during conflicts: Information seeking and political efficacy during the 2012 Mexican elections.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#KavanaughSSTF16,https://doi.org/10.1016/j.giq.2016.01.004 +Luis F. Luna-Reyes,Collaborative digital government in Mexico: Some lessons from federal Web-based interorganizational information integration initiatives.,2007,24,Government Information Quarterly,4,db/journals/giq/giq24.html#Luna-ReyesGC07,https://doi.org/10.1016/j.giq.2007.04.003 +Kuno Schedler,Customer orientation in electronic government: Motives and effects.,2007,24,Government Information Quarterly,2,db/journals/giq/giq24.html#SchedlerS07,https://doi.org/10.1016/j.giq.2006.05.005 +Paul T. Jaeger,Transparency and technological change: Ensuring equal and sustained public access to government information.,2010,27,Government Information Quarterly,4,db/journals/giq/giq27.html#JaegerB10,https://doi.org/10.1016/j.giq.2010.05.003 +Charles D. Bernholz,The United States Department of the Interior Web site: Visited July 2003 http: //www.doi.gov/.,2004,21,Government Information Quarterly,1,db/journals/giq/giq21.html#Bernholz04,https://doi.org/10.1016/j.giq.2003.08.010 +Bert Chapman,Wright State University's service ideal statement and depository libraries: More questions than answers.,1998,15,Government Information Quarterly,1,db/journals/giq/giq15.html#Chapman98,https://doi.org/10.1016/S0740-624X(98)90020-X +Frederick M. Kaiser,Access to classified information: seeking security clearances for state and local officials and personnel.,2003,20,Government Information Quarterly,3,db/journals/giq/giq20.html#Kaiser03,https://doi.org/10.1016/S0740-624X(03)00040-6 +Philip Doty,U.S. homeland security and risk assessment.,2015,32,Government Information Quarterly,3,db/journals/giq/giq32.html#Doty15,https://doi.org/10.1016/j.giq.2015.04.008 +Victor Glass,Persistence of the middle mile problem for rural local exchange carriers.,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#GlassPS14,https://doi.org/10.1016/j.giq.2013.02.005 +Charles D. Bernholz,Integrating Unpaid Work into National Policies.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#Bernholz06,https://doi.org/10.1016/j.giq.2005.04.002 +Hyeon-Suk Lyu,Internet policy in Korea: A preliminary framework for assigning moral and legal responsibility to agents in internet activities.,2012,29,Government Information Quarterly,3,db/journals/giq/giq29.html#Lyu12,https://doi.org/10.1016/j.giq.2011.12.008 +Chun-Shuo Chen,Three decades of bilateral copyright negotiations: Mainland China and the United States.,2010,27,Government Information Quarterly,2,db/journals/giq/giq27.html#ChenM10,https://doi.org/10.1016/j.giq.2009.12.005 +Paul F. Uhlir,Summary of National Research Council report on database protection1.,2000,17,Government Information Quarterly,4,db/journals/giq/giq17.html#Uhlir00,https://doi.org/10.1016/S0740-624X(00)00052-6 +Peter Hernon,"Numbers and ""Damn"" GPO Numbers.",1999,16,Government Information Quarterly,1,db/journals/giq/giq16.html#Hernon99,https://doi.org/10.1016/S0740-624X(99)80012-4 +Christopher G. Reddick,Customer Relationship Management (CRM) technology and organizational change: Evidence for the bureaucratic and e-Government paradigms.,2011,28,Government Information Quarterly,3,db/journals/giq/giq28.html#Reddick11,https://doi.org/10.1016/j.giq.2010.08.005 +Andrew Whitmore,Extracting knowledge from U.S. department of defense freedom of information act requests with social media.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#Whitmore12a,https://doi.org/10.1016/j.giq.2011.08.015 +Suhazimah Dzazali,Information security landscape and maturity level: Case study of Malaysian Public Service (MPS) organizations.,2009,26,Government Information Quarterly,4,db/journals/giq/giq26.html#DzazaliSZ09,https://doi.org/10.1016/j.giq.2009.04.004 +Kaja J. Fietkiewicz,eGovernment in cities of the knowledge society. An empirical investigation of Smart Cities' governmental websites.,2017,34,Government Information Quarterly,1,db/journals/giq/giq34.html#FietkiewiczMS17,https://doi.org/10.1016/j.giq.2016.08.003 +Ian Hosein,Transforming travel and border controls: Checkpoints in the Open Society.,2005,22,Government Information Quarterly,4,db/journals/giq/giq22.html#Hosein05,https://doi.org/10.1016/j.giq.2006.01.002 +Chun Liu 0005,The myth of informatization in rural areas: The case of China's Sichuan province.,2012,29,Government Information Quarterly,1,db/journals/giq/giq29.html#Liu12,https://doi.org/10.1016/j.giq.2011.06.002 +Ardion Beldad,Reading the least read? Indicators of users' intention to consult privacy statements on municipal websites.,2010,27,Government Information Quarterly,3,db/journals/giq/giq27.html#BeldadJS10,https://doi.org/10.1016/j.giq.2010.01.004 +Christian østergaard Madsen,The efficiency of freedom: Single parents' domestication of mandatory e-government channels.,2015,32,Government Information Quarterly,4,db/journals/giq/giq32.html#MadsenK15,https://doi.org/10.1016/j.giq.2015.09.008 +Maaike J. Van den Haak,Evaluating municipal websites: A methodological comparison of three think-aloud variants.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#HaakJS09,https://doi.org/10.1016/j.giq.2007.11.003 +Marieke Welle Donker-Kuijer,Usable guidelines for usable websites? An analysis of five e-government heuristics.,2010,27,Government Information Quarterly,3,db/journals/giq/giq27.html#Donker-KuijerJL10,https://doi.org/10.1016/j.giq.2010.02.006 +José Luis Gómez Barroso,Public intervention in the access to advanced telecommunication services: Assessing its theoretical economic basis.,2005,22,Government Information Quarterly,3,db/journals/giq/giq22.html#BarrosoM05,https://doi.org/10.1016/j.giq.2005.08.001 +Karen Layne,Developing fully functional E-government: A four stage model.,2001,18,Government Information Quarterly,2,db/journals/giq/giq18.html#LayneL01,https://doi.org/10.1016/S0740-624X(01)00066-1 +Chun-Shuo Chen,The dynamics of bilateral intellectual property negotiations: Taiwan and the United States.,2007,24,Government Information Quarterly,3,db/journals/giq/giq24.html#ChenM07,https://doi.org/10.1016/j.giq.2006.08.006 +Bruce Pencek,United States at War: Understanding Conflict and Society.,2007,24,Government Information Quarterly,1,db/journals/giq/giq24.html#Pencek07,https://doi.org/10.1016/j.giq.2006.07.011 +Tom McClean,Who pays the piper? The political economy of freedom of information.,2010,27,Government Information Quarterly,4,db/journals/giq/giq27.html#McClean10,https://doi.org/10.1016/j.giq.2010.05.004 +Iryna Susha,eParticipation research: Systematizing the field.,2012,29,Government Information Quarterly,3,db/journals/giq/giq29.html#SushaG12,https://doi.org/10.1016/j.giq.2011.11.005 +Tung-Mou Yang,Examining the socio-technical determinants influencing government agencies' open data publication: A study in Taiwan.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#YangW16,https://doi.org/10.1016/j.giq.2016.05.003 +Roxanne Missingham,E-parliament: Opening the door.,2011,28,Government Information Quarterly,3,db/journals/giq/giq28.html#Missingham11,https://doi.org/10.1016/j.giq.2010.08.006 +Marcia Meister,University of California experience and decision.,2005,22,Government Information Quarterly,4,db/journals/giq/giq22.html#MeisterC05,https://doi.org/10.1016/j.giq.2006.01.008 +Vinod Kumar,ERP systems implementation: best practices in Canadian government organizations.,2002,19,Government Information Quarterly,2,db/journals/giq/giq19.html#KumarMK02,https://doi.org/10.1016/S0740-624X(02)00092-8 +James Boxall,The nature of geospatial information and security.,2005,22,Government Information Quarterly,4,db/journals/giq/giq22.html#Boxall05,https://doi.org/10.1016/j.giq.2005.09.001 +David Plocher,The digital age: Challenges for records management.,1999,16,Government Information Quarterly,1,db/journals/giq/giq16.html#Plocher99,https://doi.org/10.1016/S0740-624X(99)80016-1 +Chun Liu 0005,Examining China's triple-network convergence plan: Regulatory challenges and policy recommendations.,2013,30,Government Information Quarterly,1,db/journals/giq/giq30.html#Liu13,https://doi.org/10.1016/j.giq.2012.04.008 +Genie N. L. Stowers,Becoming cyberactive: State and local governments on the World Wide Web.,1999,16,Government Information Quarterly,2,db/journals/giq/giq16.html#Stowers99,https://doi.org/10.1016/S0740-624X(99)80003-3 +Remi Chandran,Wildlife Enforcement Monitoring System (WEMS): A solution to support compliance of Multilateral Environmental Agreements.,2011,28,Government Information Quarterly,2,db/journals/giq/giq28.html#ChandranKN11,https://doi.org/10.1016/j.giq.2010.09.002 +Yikai Liang,Exploring the determinant and influence mechanism of e-Government cloud adoption in government agencies in China.,2017,34,Government Information Quarterly,3,db/journals/giq/giq34.html#LiangQWC17,https://doi.org/10.1016/j.giq.2017.06.002 +Jody Condit Fagan,An accessibility study of state legislative Web sites.,2004,21,Government Information Quarterly,1,db/journals/giq/giq21.html#FaganF04,https://doi.org/10.1016/j.giq.2003.12.010 +Harold C. Relyea,Homeland security and information sharing: Federal policy considerations.,2004,21,Government Information Quarterly,4,db/journals/giq/giq21.html#Relyea04,https://doi.org/10.1016/j.giq.2004.08.007 +Olivier Glassey,Developing a one-stop government data model.,2004,21,Government Information Quarterly,2,db/journals/giq/giq21.html#Glassey04,https://doi.org/10.1016/j.giq.2003.12.012 +Akemi Takeoka Chatfield,All hands on deck to tweet #sandy: Networked governance of citizen coproduction in turbulent *.,2018,35,Government Information Quarterly,2,db/journals/giq/giq35.html#ChatfieldR18a,https://doi.org/10.1016/j.giq.2017.09.004 +,Chongqing Municipal People's Government Decree No 17: Chongqing municipal interim measures on open government affairs information.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#X06c,https://doi.org/10.1016/j.giq.2006.02.003 +Nripendra P. Rana,Citizen's adoption of an e-government system: Validating extended social cognitive theory (SCT).,2015,32,Government Information Quarterly,2,db/journals/giq/giq32.html#RanaD15,https://doi.org/10.1016/j.giq.2015.02.002 +Emad A. Abu-Shanab,Reengineering the open government concept: An empirical support for a proposed model.,2015,32,Government Information Quarterly,4,db/journals/giq/giq32.html#Abu-Shanab15,https://doi.org/10.1016/j.giq.2015.07.002 +Fredrik Karlsson,Inter-organisational information sharing in the public sector: A longitudinal case study on the reshaping of success factors.,2017,34,Government Information Quarterly,4,db/journals/giq/giq34.html#KarlssonFPKH17,https://doi.org/10.1016/j.giq.2017.10.007 +Christopher G. Reddick,Government Information Quarterly 2011 Best Paper Award.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#Reddick12,https://doi.org/10.1016/j.giq.2012.07.001 +Albert Meijer,Communities of Public Service Support: Citizens engage in social learning in peer-to-peer networks.,2012,29,Government Information Quarterly,1,db/journals/giq/giq29.html#MeijerGB12,https://doi.org/10.1016/j.giq.2011.06.004 +András Nemeslaki,Could on-line voting boost desire to vote? - Technology acceptance perceptions of young Hungarian citizens.,2016,33,Government Information Quarterly,4,db/journals/giq/giq33.html#NemeslakiAS16,https://doi.org/10.1016/j.giq.2016.11.003 +Jody Condit Fagan,Citizens' access to on-line state legislative documents.,2001,18,Government Information Quarterly,2,db/journals/giq/giq18.html#FaganF01,https://doi.org/10.1016/S0740-624X(01)00064-8 +John Carlo Bertot,The E-Government paradox: Better customer service doesn't necessarily cost less.,2008,25,Government Information Quarterly,2,db/journals/giq/giq25.html#BertotJ08,https://doi.org/10.1016/j.giq.2007.10.002 +Dave Gelders,Communication management in the public sector: Consequences for public communication about policy intentions.,2007,24,Government Information Quarterly,2,db/journals/giq/giq24.html#GeldersBR07,https://doi.org/10.1016/j.giq.2006.06.009 +Anne Craig,The Find-It! Illinois controlled vocabulary: Improving access to government information through the Jessica subject tree.,2001,18,Government Information Quarterly,3,db/journals/giq/giq18.html#CraigS01,https://doi.org/10.1016/S0740-624X(01)00077-6 +Dimitris Gouscos,A general model of performance and quality for one-stop e-Government service offerings.,2007,24,Government Information Quarterly,4,db/journals/giq/giq24.html#GouscosKLP07,https://doi.org/10.1016/j.giq.2006.07.016 +Mario Procopiuck,Information technology and time of judgment in specialized courts: What is the impact of changing from physical to electronic processing?,2018,35,Government Information Quarterly,3,db/journals/giq/giq35.html#Procopiuck18,https://doi.org/10.1016/j.giq.2018.03.005 +Rita Marcella,The effectiveness of parliamentary information services in the United Kingdom.,2003,20,Government Information Quarterly,1,db/journals/giq/giq20.html#MarcellaBM03,https://doi.org/10.1016/S0740-624X(02)00138-7 +Christopher G. Reddick,Channel choice and public service delivery in Canada: Comparing e-government to traditional service delivery.,2012,29,Government Information Quarterly,1,db/journals/giq/giq29.html#ReddickT12,https://doi.org/10.1016/j.giq.2011.03.005 +Bill Sleeman,The September 11 Digital Archive.,2005,22,Government Information Quarterly,1,db/journals/giq/giq22.html#Sleeman05,https://doi.org/10.1016/j.giq.2004.09.004 +Roger Anderson,Review Essay - Department of Defense (DoD) and Center for Defense Information (CDI) Web Sites.,2005,22,Government Information Quarterly,1,db/journals/giq/giq22.html#Anderson05,https://doi.org/10.1016/j.giq.2004.09.006 +çigdem Aricigil çilan,Analyzing digital divide within and between member and candidate countries o f European Union.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#CilanBC09,https://doi.org/10.1016/j.giq.2007.11.002 +Vassilis Meneklis,Bridging theory and practice in e-government: A set of guidelines for architectural design.,2010,27,Government Information Quarterly,1,db/journals/giq/giq27.html#MeneklisD10,https://doi.org/10.1016/j.giq.2009.08.005 +Martha Fuentes-Bautista,Rethinking localism in the broadband era: A participatory community development approach.,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#Fuentes-Bautista14,https://doi.org/10.1016/j.giq.2012.08.007 +Maxat Kassen,A promising phenomenon of open data: A case study of the Chicago open data project.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#Kassen13,https://doi.org/10.1016/j.giq.2013.05.012 +Kerry Holden,Exploring the tensions and incongruities of Internet governance in Africa.,2016,33,Government Information Quarterly,4,db/journals/giq/giq33.html#HoldenK16,https://doi.org/10.1016/j.giq.2016.08.006 +Wilhelm Peekhaus,Biowatch South Africa and the challenges in enforcing its constitutional right to access to information.,2011,28,Government Information Quarterly,4,db/journals/giq/giq28.html#Peekhaus11,https://doi.org/10.1016/j.giq.2010.12.008 +Roxanne Missingham,Access to Australian Government information: A decade of change 1997-2007.,2008,25,Government Information Quarterly,1,db/journals/giq/giq25.html#Missingham08,https://doi.org/10.1016/j.giq.2007.07.001 +Joachim åström,Understanding the rise of e-participation in non-democracies: Domestic and international factors.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#AstromKLP12,https://doi.org/10.1016/j.giq.2011.09.008 +Hamad Almuftah,Factors influencing e-diplomacy implementation: Exploring causal relationships using interpretive structural modelling.,2018,35,Government Information Quarterly,3,db/journals/giq/giq35.html#AlmuftahWRSI18,https://doi.org/10.1016/j.giq.2018.03.002 +Teta Stamati,Social media for openness and accountability in the public sector: Cases in the Greek context.,2015,32,Government Information Quarterly,1,db/journals/giq/giq32.html#StamatiPA15,https://doi.org/10.1016/j.giq.2014.11.004 +Jing Zhang 0006,Strengthening institutional-based trust for sustainable consumption: Lessons for smart disclosure.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#0006LSPL16,https://doi.org/10.1016/j.giq.2016.01.009 +John Carlo Bertot,New editorial board member.,2005,22,Government Information Quarterly,3,db/journals/giq/giq22.html#Bertot05a,https://doi.org/10.1016/j.giq.2005.06.001 +Theresa A. Pardo,Interorganizational information integration: A key enabler for digital government.,2007,24,Government Information Quarterly,4,db/journals/giq/giq24.html#PardoT07,https://doi.org/10.1016/j.giq.2007.08.004 +Christopher S. Thompson,Enlisting on-line residents: Expanding the boundaries of e-government in a Japanese rural township.,2002,19,Government Information Quarterly,2,db/journals/giq/giq19.html#Thompson02,https://doi.org/10.1016/S0740-624X(02)00093-X +Whasun Jho,Institutional and technological determinants of civil e-Participation: Solo or duet?,2015,32,Government Information Quarterly,4,db/journals/giq/giq32.html#JhoS15,https://doi.org/10.1016/j.giq.2015.09.003 +Jeffrey C. Griffith,Congress' legislative information systems: THOMAS and the LIS.,2001,18,Government Information Quarterly,1,db/journals/giq/giq18.html#Griffith01,https://doi.org/10.1016/S0740-624X(00)00066-6 +David Lorenzi,Enhancing the government service experience through QR codes on mobile platforms.,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#LorenziVCSA14,https://doi.org/10.1016/j.giq.2013.05.025 +Sukumar Ganapati,Prospects and challenges of sharing economy for the public sector.,2018,35,Government Information Quarterly,1,db/journals/giq/giq35.html#GanapatiR18,https://doi.org/10.1016/j.giq.2018.01.001 +Charles D. Bernholz,American Indian treaties and the lower federal courts: A guide to treaty citations from opinions of the lower United States federal court system.,2007,24,Government Information Quarterly,2,db/journals/giq/giq24.html#Bernholz07a,https://doi.org/10.1016/j.giq.2006.06.007 +Gerald G. Grant,Designing governance for shared services organizations in the public service.,2007,24,Government Information Quarterly,3,db/journals/giq/giq24.html#GrantMUB07,https://doi.org/10.1016/j.giq.2006.09.005 +Dave Gelders,Systematic evaluation of public participation projects: Analytical framework and application based on two Belgian neighborhood watch projects.,2010,27,Government Information Quarterly,2,db/journals/giq/giq27.html#GeldersBMC10,https://doi.org/10.1016/j.giq.2009.10.003 +Mila Gascó,What do citizens communicate about during crises? Analyzing twitter use during the 2011 UK riots.,2017,34,Government Information Quarterly,4,db/journals/giq/giq34.html#GascoBDA17,https://doi.org/10.1016/j.giq.2017.11.005 +Maha Shaikh,Negotiating open source software adoption in the UK public sector.,2016,33,Government Information Quarterly,1,db/journals/giq/giq33.html#Shaikh16,https://doi.org/10.1016/j.giq.2015.11.001 +Daniel Stockemer,The internet: An important tool to strengthening electoral integrity.,2018,35,Government Information Quarterly,1,db/journals/giq/giq35.html#Stockemer18,https://doi.org/10.1016/j.giq.2017.11.009 +Amy West,Coming Soon to a Location Near You.,2008,25,Government Information Quarterly,1,db/journals/giq/giq25.html#West08,https://doi.org/10.1016/j.giq.2007.09.004 +Anjali Kaushik,The new data-driven enterprise architecture for e-healthcare: Lessons from the Indian public sector.,2015,32,Government Information Quarterly,1,db/journals/giq/giq32.html#KaushikR15,https://doi.org/10.1016/j.giq.2014.11.002 +Peter Johan Lor,Work in progress: Developing policies for access to government information in the New South Africa.,2002,19,Government Information Quarterly,2,db/journals/giq/giq19.html#LorA02,https://doi.org/10.1016/S0740-624X(02)00096-5 +Charles D. Bernholz,The Interstate 40 bridge collapse at Webbers Falls web site: Oklahoma Department of Libraries. Visited August 2002. http: //www.odl.state.ok.us/usinfo/topiclists/us-i40.htM.,2002,19,Government Information Quarterly,4,db/journals/giq/giq19.html#Bernholz02a,https://doi.org/10.1016/S0740-624X(02)00124-7 +Guangwei Hu,A hierarchical model of e-government service capability: An empirical analysis.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#HuSPW12,https://doi.org/10.1016/j.giq.2012.04.007 +Gwanhoo Lee,An Open Government Maturity Model for social media-based public engagement.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#LeeK12,https://doi.org/10.1016/j.giq.2012.06.001 +Thurman L. Whitson,Best practices in electronic government: Comprehensive electronic information dissemination for science and technology.,2001,18,Government Information Quarterly,2,db/journals/giq/giq18.html#WhitsonD01,https://doi.org/10.1016/S0740-624X(01)00062-4 +Siddhartha Shankar Menon,India's convergence policy within its communication sector: A long road ahead.,2004,21,Government Information Quarterly,3,db/journals/giq/giq21.html#Menon04,https://doi.org/10.1016/j.giq.2004.04.006 +Seongcheol Kim,An institutional analysis of an e-government system for anti-corruption: The case of OPEN.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#KimKL09,https://doi.org/10.1016/j.giq.2008.09.002 +Anja Reinwald,Managing stakeholders in transformational government - A case study in a Danish local government.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#ReinwaldK12,https://doi.org/10.1016/j.giq.2011.09.007 +Hae-young Rieh,Records professionals' challenges and barriers in public institutions in Korea.,2016,33,Government Information Quarterly,4,db/journals/giq/giq33.html#Rieh16,https://doi.org/10.1016/j.giq.2016.08.001 +Yuehua Wu,Protecting personal data in E-government: A cross-country study.,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#Wu14,https://doi.org/10.1016/j.giq.2013.07.003 +Sharon Strover,Broadband Redux: 2013.,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#StroverM14,https://doi.org/10.1016/j.giq.2013.12.003 +Sung-Don Hwang,Electronic government in South Korea: Conceptual problems.,1999,16,Government Information Quarterly,3,db/journals/giq/giq16.html#HwangCM99,https://doi.org/10.1016/S0740-624X(99)80028-8 +Rony Medaglia,eParticipation research: Moving characterization forward (2006-2011).,2012,29,Government Information Quarterly,3,db/journals/giq/giq29.html#Medaglia12,https://doi.org/10.1016/j.giq.2012.02.010 +Christopher G. Reddick,A social media text analytics framework for double-loop learning for citizen-centric public services: A case study of a local government Facebook use.,2017,34,Government Information Quarterly,1,db/journals/giq/giq34.html#ReddickCO17,https://doi.org/10.1016/j.giq.2016.11.001 +José Esteves,A comprehensive framework for the assessment of eGovernment projects.,2008,25,Government Information Quarterly,1,db/journals/giq/giq25.html#EstevesJ08,https://doi.org/10.1016/j.giq.2007.04.009 +Christopher G. Reddick,The adoption of centralized customer service systems: A survey of local governments.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#Reddick09,https://doi.org/10.1016/j.giq.2008.03.005 +Harold C. Relyea,Congress and freedom of information: A retrospective and a look at a current issue.,2009,26,Government Information Quarterly,3,db/journals/giq/giq26.html#Relyea09a,https://doi.org/10.1016/j.giq.2009.04.001 +Sabrina Ching Yuen Luk,The impact of leadership and stakeholders on the success/failure of e-government service: Using the case study of e-stamping service in Hong Kong.,2009,26,Government Information Quarterly,4,db/journals/giq/giq26.html#Luk09,https://doi.org/10.1016/j.giq.2009.02.009 +Patrick Birkinshaw,Proposals for freedom of information in the United Kingdom.,1999,16,Government Information Quarterly,2,db/journals/giq/giq16.html#Birkinshaw99,https://doi.org/10.1016/S0740-624X(99)80002-1 +I-Chiu Chang,An empirical study on the impact of quality antecedents on tax payers' acceptance of Internet tax-filing systems.,2005,22,Government Information Quarterly,3,db/journals/giq/giq22.html#ChangLHH05,https://doi.org/10.1016/j.giq.2005.05.002 +Lynn G. Walshak,The GPO and the depository library program as structured are needed: Views of a selective depository librarian.,1998,15,Government Information Quarterly,1,db/journals/giq/giq15.html#Walshak98,https://doi.org/10.1016/S0740-624X(98)90014-4 +Rony Medaglia,Mapping government social media research and moving it forward: A framework and a research agenda.,2017,34,Government Information Quarterly,3,db/journals/giq/giq34.html#MedagliaZ17,https://doi.org/10.1016/j.giq.2017.06.001 +Juris Dilevko,Subject access to government documents in an era of globalization: Intellectual bundling of entities affected by the decisions of supranational organizations1.,2002,19,Government Information Quarterly,2,db/journals/giq/giq19.html#DilevkoG02,https://doi.org/10.1016/S0740-624X(02)00094-1 +Milton Mueller,Universal service policies as wealth redistribution.,1999,16,Government Information Quarterly,4,db/journals/giq/giq16.html#Mueller99,https://doi.org/10.1016/S0740-624X(00)86840-9 +I-Chiu Chang,Electronic medical record quality and its impact on user satisfaction - Healthcare providers' point of view.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#ChangLWY12,https://doi.org/10.1016/j.giq.2011.07.006 +John A. Shuler,Editorial: E-government without government.,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#ShulerJB14,https://doi.org/10.1016/j.giq.2013.11.004 +Cory L. Armstrong,Providing a clearer view: An examination of transparency on local government websites.,2011,28,Government Information Quarterly,1,db/journals/giq/giq28.html#Armstrong11,https://doi.org/10.1016/j.giq.2010.07.006 +Taewoo Nam,Freedom of information legislation and its impact on press freedom: A cross-national study.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#Nam12b,https://doi.org/10.1016/j.giq.2012.03.003 +Tony H. Grubesic,The wireless abyss: Deconstructing the U.S. National Broadband Map.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#Grubesic12,https://doi.org/10.1016/j.giq.2012.05.006 +Minyoung Ku,The emergence and evolution of cross-boundary research collaborations: An explanatory study of social dynamics in a digital government working group.,2016,33,Government Information Quarterly,4,db/journals/giq/giq33.html#KuG016,https://doi.org/10.1016/j.giq.2016.07.005 +Lieselot Danneels,Simple rules strategy to transform government: An ADR approach.,2015,32,Government Information Quarterly,4,db/journals/giq/giq32.html#DanneelsV15,https://doi.org/10.1016/j.giq.2015.09.006 +Lex van Velsen,Requirements engineering for e-Government services: A citizen-centric approach and case study.,2009,26,Government Information Quarterly,3,db/journals/giq/giq26.html#VelsenGHD09,https://doi.org/10.1016/j.giq.2009.02.007 +Judie Attard,A systematic review of open government data initiatives.,2015,32,Government Information Quarterly,4,db/journals/giq/giq32.html#AttardOSA15,https://doi.org/10.1016/j.giq.2015.07.006 +Kristin N. Frey,Distribution channel management in e-government: Addressing federal information policy issues.,2005,22,Government Information Quarterly,4,db/journals/giq/giq22.html#FreyH05,https://doi.org/10.1016/j.giq.2006.01.001 +Joydeep Guha,Making e-government work: Adopting the network approach.,2014,31,Government Information Quarterly,2,db/journals/giq/giq31.html#GuhaC14,https://doi.org/10.1016/j.giq.2013.11.008 +Nadia Caidi,Information practices of Canadian Muslims post 9/11.,2008,25,Government Information Quarterly,3,db/journals/giq/giq25.html#CaidiM08,https://doi.org/10.1016/j.giq.2007.10.007 +Mahmud Akhter Shareef,e-Government Adoption Model (GAM): Differing service maturity levels.,2011,28,Government Information Quarterly,1,db/journals/giq/giq28.html#ShareefKKD11,https://doi.org/10.1016/j.giq.2010.05.006 +Mark E. Wallace,Public and private sector uses of economic census data.,1998,15,Government Information Quarterly,3,db/journals/giq/giq15.html#Wallace98,https://doi.org/10.1016/S0740-624X(98)90006-5 +John A. Shuler,Implications of harmonizing the future of the federal depository library program within e-government principles and policies.,2010,27,Government Information Quarterly,1,db/journals/giq/giq27.html#ShulerJB10,https://doi.org/10.1016/j.giq.2009.09.001 +Paul T. Jaeger,The fourth branch of government and the historical legacy of the Bush administration's information policies.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#Jaeger09,https://doi.org/10.1016/j.giq.2007.12.004 +Marije L. Teerling,Multichannel marketing: An experiment on guiding citizens to the electronic channels.,2010,27,Government Information Quarterly,1,db/journals/giq/giq27.html#TeerlingP10,https://doi.org/10.1016/j.giq.2009.08.003 +Jonathan Lazar,A longitudinal study of state government homepage accessibility in Maryland and the role of web page templates for improving accessibility.,2013,30,Government Information Quarterly,3,db/journals/giq/giq30.html#LazarWACAABBCCF13,https://doi.org/10.1016/j.giq.2013.03.003 +Lee S. Strickland,Civil liberties vs. intelligence collection: the secret Foreign Intelligence Surveillance Act court speaks in public☆.,2003,20,Government Information Quarterly,1,db/journals/giq/giq20.html#Strickland03,https://doi.org/10.1016/S0740-624X(02)00132-6 +Harold C. Relyea,Paperwork reduction act reauthorization and government information management issues.,2000,17,Government Information Quarterly,4,db/journals/giq/giq17.html#Relyea00,https://doi.org/10.1016/S0740-624X(00)00048-4 +Enrique Bonsón,The use of YouTube in western European municipalities.,2018,35,Government Information Quarterly,2,db/journals/giq/giq35.html#BonsonB18,https://doi.org/10.1016/j.giq.2018.04.001 +Mila Gascó,Living labs: Implementing open innovation in the public sector.,2017,34,Government Information Quarterly,1,db/journals/giq/giq34.html#Gasco17,https://doi.org/10.1016/j.giq.2016.09.003 +Wolfgang Ebbers,"Corrigendum to ""Impact of the digital divide on e-government: Expanding from channel choice to channel usage"" [Gov. Inf. Q. 33(4) 685-692].",2017,34,Government Information Quarterly,3,db/journals/giq/giq34.html#EbbersJD17,https://doi.org/10.1016/j.giq.2017.09.002 +Tomasz Janowski,Implementing Sustainable Development Goals with Digital Government - Aspiration-capacity gap.,2016,33,Government Information Quarterly,4,db/journals/giq/giq33.html#Janowski16,https://doi.org/10.1016/j.giq.2016.12.001 +Mark A. Ward,A comparison of the strategic priorities of public and private sector information resource management executives.,2004,21,Government Information Quarterly,3,db/journals/giq/giq21.html#WardM04,https://doi.org/10.1016/j.giq.2004.04.003 +Eric W. Welch,Technology in government: How organizational culture mediates information and communication technology outcomes.,2014,31,Government Information Quarterly,4,db/journals/giq/giq31.html#WelchF14,https://doi.org/10.1016/j.giq.2014.07.006 +Maggie Farrell,The ALA COL FDLP Task Force: Working through Association Processes (2014).,2015,32,Government Information Quarterly,1,db/journals/giq/giq32.html#Farrell15,https://doi.org/10.1016/j.giq.2014.12.002 +Charles D. Bernholz,Federal government documents: Dead or alive.,2008,25,Government Information Quarterly,1,db/journals/giq/giq25.html#Bernholz08,https://doi.org/10.1016/j.giq.2007.04.011 +Zhigang Qiao,Exploration and practice in promoting Shanghai municipal open government information.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#Qiao06,https://doi.org/10.1016/j.giq.2006.02.005 +Sharon A. Weiner,Tale of two databases: The history of federally funded information systems for education and medicine.,2009,26,Government Information Quarterly,3,db/journals/giq/giq26.html#Weiner09,https://doi.org/10.1016/j.giq.2009.02.003 +Patrick J. Birkinshaw,Freedom of information in the U.K.: a progress report.,2000,17,Government Information Quarterly,4,db/journals/giq/giq17.html#Birkinshaw00,https://doi.org/10.1016/S0740-624X(00)00051-4 +Yuquan Shi,The accessibility of Chinese local government Web sites: An exploratory study.,2007,24,Government Information Quarterly,2,db/journals/giq/giq24.html#Shi07,https://doi.org/10.1016/j.giq.2006.05.004 +Marianthi H. Terpsiadou,The use of information systems in the Greek public financial services: The case of TAXIS.,2009,26,Government Information Quarterly,3,db/journals/giq/giq26.html#TerpsiadouE09,https://doi.org/10.1016/j.giq.2009.02.004 +Momna Yousaf,Exploring the impact of good governance on citizens' trust in Pakistan.,2016,33,Government Information Quarterly,1,db/journals/giq/giq33.html#YousafIE16,https://doi.org/10.1016/j.giq.2015.06.001 +Harla J. Frank,About the authors.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#Frank06,https://doi.org/10.1016/j.giq.2006.04.004 +Uthayasankar Sivarajah,Evaluating the use and impact of Web 2.0 technologies in local government.,2015,32,Government Information Quarterly,4,db/journals/giq/giq32.html#SivarajahIW15,https://doi.org/10.1016/j.giq.2015.06.004 +Dennis De Widt,Informal networking in the public sector: Mapping local government debates in a period of austerity.,2018,35,Government Information Quarterly,3,db/journals/giq/giq35.html#WidtP18,https://doi.org/10.1016/j.giq.2018.05.004 +Eliamani Sedoyeka,Low cost broadband network model using WiMAX technology.,2011,28,Government Information Quarterly,3,db/journals/giq/giq28.html#SedoyekaH11,https://doi.org/10.1016/j.giq.2010.09.005 +John A. Shuler,Introduction.,1998,15,Government Information Quarterly,1,db/journals/giq/giq15.html#ShulerC98,https://doi.org/10.1016/S0740-624X(98)90011-9 +Jim Gravois,Announcing the GIQ homepage on the world wide web.,1998,15,Government Information Quarterly,1,db/journals/giq/giq15.html#Gravois98,https://doi.org/10.1016/S0740-624X(98)90025-9 +Sangki Jin,Is ICT a new essential for national economic growth in an information society?,2015,32,Government Information Quarterly,3,db/journals/giq/giq32.html#JinC15,https://doi.org/10.1016/j.giq.2015.04.007 +Mohamed A. Nour,A context-based integrative framework for e-government initiatives.,2008,25,Government Information Quarterly,3,db/journals/giq/giq25.html#NourAF08,https://doi.org/10.1016/j.giq.2007.02.004 +Kristjan Vassil,The diffusion of internet voting. Usage patterns of internet voting in Estonia between 2005 and 2015.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#VassilSVTA16,https://doi.org/10.1016/j.giq.2016.06.007 +Patrick Birkinshaw,Freedom of information and its impact in the United Kingdom.,2010,27,Government Information Quarterly,4,db/journals/giq/giq27.html#Birkinshaw10,https://doi.org/10.1016/j.giq.2010.06.006 +Svein ølnes,Blockchain in government: Benefits and implications of distributed ledger technology for information sharing.,2017,34,Government Information Quarterly,3,db/journals/giq/giq34.html#OlnesUJ17,https://doi.org/10.1016/j.giq.2017.09.007 +Sheshadri Chatterjee,Success of IoT in Smart Cities of India: An empirical analysis.,2018,35,Government Information Quarterly,3,db/journals/giq/giq35.html#ChatterjeeKG18,https://doi.org/10.1016/j.giq.2018.05.002 +Jungwoo Lee 0002,10 year retrospect on stage models of e-Government: A qualitative meta-synthesis.,2010,27,Government Information Quarterly,3,db/journals/giq/giq27.html#Lee10,https://doi.org/10.1016/j.giq.2009.12.009 +Dave Gelders,The opinion of Belgian government communication professionals on public communication about policy intentions: Pros/cons and conditions.,2006,23,Government Information Quarterly,2,db/journals/giq/giq23.html#GeldersCRN06,https://doi.org/10.1016/j.giq.2006.01.013 +Nik Thompson,Government data does not mean data governance: Lessons learned from a public sector application audit.,2015,32,Government Information Quarterly,3,db/journals/giq/giq32.html#ThompsonRN15,https://doi.org/10.1016/j.giq.2015.05.001 +George Kuk,The digital divide and the quality of electronic service delivery in local government in the United Kingdom.,2003,20,Government Information Quarterly,4,db/journals/giq/giq20.html#Kuk03,https://doi.org/10.1016/j.giq.2003.08.004 +Jane Fedorowicz,Design observations for interagency collaboration.,2014,31,Government Information Quarterly,2,db/journals/giq/giq31.html#FedorowiczSWMDT14,https://doi.org/10.1016/j.giq.2013.11.006 +Victor Bekkers,Flexible information infrastructures in Dutch E-Government collaboration arrangements: Experiences and policy implications.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#Bekkers09,https://doi.org/10.1016/j.giq.2007.09.010 +Terrence A. Maxwell,Constructing consensus: Homeland security as a symbol of government politics and administration.,2005,22,Government Information Quarterly,2,db/journals/giq/giq22.html#Maxwell05,https://doi.org/10.1016/j.giq.2003.01.001 +Beatriz Cuadrado-Ballesteros,The impact of functional decentralization and externalization on local government transparency.,2014,31,Government Information Quarterly,2,db/journals/giq/giq31.html#Cuadrado-Ballesteros14,https://doi.org/10.1016/j.giq.2013.10.012 +Duncan Aldrich,Partners on the net: FDLP partnering to coordinate remote access to internet-based government information.,1998,15,Government Information Quarterly,1,db/journals/giq/giq15.html#Aldrich98,https://doi.org/10.1016/S0740-624X(98)90013-2 +Renée E. Sieber,Civic open data at a crossroads: Dominant models and current challenges.,2015,32,Government Information Quarterly,3,db/journals/giq/giq32.html#SieberJ15,https://doi.org/10.1016/j.giq.2015.05.003 +Ida Lindgren,Electronic services in the public sector: A conceptual framework.,2013,30,Government Information Quarterly,2,db/journals/giq/giq30.html#LindgrenJ13,https://doi.org/10.1016/j.giq.2012.10.005 +Adel M. Aladwani,A cross-cultural comparison of Kuwaiti and British citizens' views of e-government interface quality.,2013,30,Government Information Quarterly,1,db/journals/giq/giq30.html#Aladwani13,https://doi.org/10.1016/j.giq.2012.08.003 +Michele Bush Kimball,Mandated state-level open government training programs.,2011,28,Government Information Quarterly,4,db/journals/giq/giq28.html#Kimball11,https://doi.org/10.1016/j.giq.2011.04.003 +Eunjin Kim,Social welfare implications of the digital divide.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#KimLM09,https://doi.org/10.1016/j.giq.2008.11.004 +Christopher G. Reddick,Business perceptions and satisfaction with e-government: Findings from a Canadian survey.,2013,30,Government Information Quarterly,1,db/journals/giq/giq30.html#ReddickR13,https://doi.org/10.1016/j.giq.2012.06.009 +Antonio Vetrò,Open data quality measurement framework: Definition and application to Open Government Data.,2016,33,Government Information Quarterly,2,db/journals/giq/giq33.html#VetroCTMIM16,https://doi.org/10.1016/j.giq.2016.02.001 +Akemi Takeoka Chatfield,Customer agility and responsiveness through big data analytics for public value creation: A case study of Houston 311 on-demand services.,2018,35,Government Information Quarterly,2,db/journals/giq/giq35.html#ChatfieldR18b,https://doi.org/10.1016/j.giq.2017.11.002 +Harold C. Relyea,Across the hill: The congressional research service and providing research for congress - Considering the future.,2012,29,Government Information Quarterly,3,db/journals/giq/giq29.html#Relyea12b,https://doi.org/10.1016/j.giq.2011.12.007 +Gavin Clarkson,Information asymmetry and information sharing.,2007,24,Government Information Quarterly,4,db/journals/giq/giq24.html#ClarksonJB07,https://doi.org/10.1016/j.giq.2007.08.001 +Luis Felipe Luna-Reyes,Towards a multidimensional model for evaluating electronic government: Proposing a more comprehensive and integrative perspective.,2012,29,Government Information Quarterly,3,db/journals/giq/giq29.html#Luna-ReyesGR12,https://doi.org/10.1016/j.giq.2012.03.001 +Audrian J. Gray,Service Based Enumeration.,2000,17,Government Information Quarterly,2,db/journals/giq/giq17.html#Gray00,https://doi.org/10.1016/S0740-624X(00)00025-3 +Ines Mergel,Open collaboration in the public sector: The case of social coding on GitHub.,2015,32,Government Information Quarterly,4,db/journals/giq/giq32.html#Mergel15,https://doi.org/10.1016/j.giq.2015.09.004 +Christopher G. Reddick,A two-stage model of e-government growth: Theories and empirical evidence for U.S. cities.,2004,21,Government Information Quarterly,1,db/journals/giq/giq21.html#Reddick04,https://doi.org/10.1016/j.giq.2003.11.004 +Laura McCarthy,The use of cookies in Federal agency web sites: Privacy and recordkeeping issues.,2010,27,Government Information Quarterly,3,db/journals/giq/giq27.html#McCarthyY10,https://doi.org/10.1016/j.giq.2010.02.005 +Bijan Azad,E-Government institutionalizing practices of a land registration mapping system.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#AzadF09,https://doi.org/10.1016/j.giq.2008.08.005 +Sounman Hong,Which candidates do the public discuss online in an election campaign?: The use of social media by 2012 presidential candidates and its impact on candidate salience.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#HongN12,https://doi.org/10.1016/j.giq.2012.06.004 +Georgia Prokopiadou,Integrating knowledge management tools for government information.,2004,21,Government Information Quarterly,2,db/journals/giq/giq21.html#ProkopiadouPM04,https://doi.org/10.1016/j.giq.2004.02.001 +Michael Parent,Building Citizen Trust Through E-government.,2005,22,Government Information Quarterly,4,db/journals/giq/giq22.html#ParentVG05,https://doi.org/10.1016/j.giq.2005.10.001 +Ronald G. Choura,Local governments and universities cooperate to expand broadband telecom services: the broadband regional affiliation for managed planning (B-RAMP) and the Michigan State University site for information and telecommunication experimentation (M-SITE).,2003,20,Government Information Quarterly,2,db/journals/giq/giq20.html#ChouraSML03,https://doi.org/10.1016/S0740-624X(03)00033-9 +Dong-Hee Shin,How will net neutrality be played out in Korea?,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#ShinH12,https://doi.org/10.1016/j.giq.2011.07.007 +Stacy Huey-Pyng Shyu,Elucidating usage of e-government learning: A perspective of the extended technology acceptance model.,2011,28,Government Information Quarterly,4,db/journals/giq/giq28.html#ShyuH11,https://doi.org/10.1016/j.giq.2011.04.002 +Bastiaan van Loenen,Data protection legislation: A very hungry caterpillar: The case of mapping data in the European Union.,2016,33,Government Information Quarterly,2,db/journals/giq/giq33.html#LoenenKP16,https://doi.org/10.1016/j.giq.2016.04.002 +Joan F. Cheverie,Federal information in the networked environment: A perspective from the coalition for networked information.,1999,16,Government Information Quarterly,3,db/journals/giq/giq16.html#Cheverie99,https://doi.org/10.1016/S0740-624X(99)80027-6 +Tanya D. Finchum,Book Reviews.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#Finchum06,https://doi.org/10.1016/j.giq.2005.07.001 +Enrico Ferro,Can intermunicipal collaboration help the diffusion of E-Government in peripheral areas? Evidence from Italy.,2010,27,Government Information Quarterly,1,db/journals/giq/giq27.html#FerroS10,https://doi.org/10.1016/j.giq.2009.07.005 +Yong Jeong Yi,Compliance of Section 508 in public library systems with the largest percentage of underserved populations.,2015,32,Government Information Quarterly,1,db/journals/giq/giq32.html#Yi15,https://doi.org/10.1016/j.giq.2014.11.005 +Kyounghee Hazel Kwon,Cyber-rumor sharing under a homeland security threat in the context of government Internet surveillance: The case of South-North Korea conflict.,2017,34,Government Information Quarterly,2,db/journals/giq/giq34.html#KwonR17,https://doi.org/10.1016/j.giq.2017.04.002 +Christopher G. Reddick,Information Resource Managers and E-government Effectiveness: A Survey of Texas State Agencies.,2006,23,Government Information Quarterly,2,db/journals/giq/giq23.html#Reddick06,https://doi.org/10.1016/j.giq.2005.11.006 +Menno de Jong,Scenario evaluation of municipal Web sites: Development and use of an expert-focused evaluation tool.,2006,23,Government Information Quarterly,2,db/journals/giq/giq23.html#JongL06,https://doi.org/10.1016/j.giq.2005.11.007 +Frank Lambert,Applying informetric methods to empirically assess the authoritativeness of Health Canada electronic documents.,2004,21,Government Information Quarterly,3,db/journals/giq/giq21.html#Lambert04,https://doi.org/10.1016/j.giq.2004.04.001 +Younghoon Chang,The role of privacy policy on consumers' perceived privacy.,2018,35,Government Information Quarterly,3,db/journals/giq/giq35.html#ChangWSL18,https://doi.org/10.1016/j.giq.2018.04.002 +Laura Alcaide-Muñoz,Analysing the scientific evolution of e-Government using a science mapping approach.,2017,34,Government Information Quarterly,3,db/journals/giq/giq34.html#Alcaide-MunozBC17,https://doi.org/10.1016/j.giq.2017.05.002 +Shin-Yuan Hung,Determinants of user acceptance of the e-Government services: The case of online tax filing and payment system.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#HungCY06,https://doi.org/10.1016/j.giq.2005.11.005 +Paul T. Jaeger,Constitutional principles and E-government: an opinion about possible effects of Federalism and the separation of powers on E-government policies.,2002,19,Government Information Quarterly,4,db/journals/giq/giq19.html#Jaeger02,https://doi.org/10.1016/S0740-624X(02)00119-3 +Ingrid Hsieh-Yee,ERIC user services: Changes and evaluation for the future.,2001,18,Government Information Quarterly,1,db/journals/giq/giq18.html#Hsieh-Yee01,https://doi.org/10.1016/S0740-624X(00)00064-2 +Staci M. Zavattaro,A sentiment analysis of U.S. local government tweets: The connection between tone and citizen involvement.,2015,32,Government Information Quarterly,3,db/journals/giq/giq32.html#ZavattaroFM15,https://doi.org/10.1016/j.giq.2015.03.003 +Sylvain Kubler,Comparison of metadata quality in open data portals using the Analytic Hierarchy Process.,2018,35,Government Information Quarterly,1,db/journals/giq/giq35.html#KublerRNUT18,https://doi.org/10.1016/j.giq.2017.11.003 +Alfons Cornella,Information policies in Spain.,1998,15,Government Information Quarterly,2,db/journals/giq/giq15.html#Cornella98,https://doi.org/10.1016/S0740-624X(98)90043-0 +Norman E. Youngblood,A usability analysis of municipal government website home pages in Alabama.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#YoungbloodM12,https://doi.org/10.1016/j.giq.2011.12.010 +Harold C. Relyea,E-gov: introduction and overview.,2002,19,Government Information Quarterly,1,db/journals/giq/giq19.html#Relyea02,https://doi.org/10.1016/S0740-624X(01)00096-X +Shirin A. Ahmed,Conducting the economic census.,1998,15,Government Information Quarterly,3,db/journals/giq/giq15.html#AhmedBW98,https://doi.org/10.1016/S0740-624X(98)90004-1 +Carol Marie Perry,Archiving of publicly funded research data: A survey of Canadian researchers.,2008,25,Government Information Quarterly,1,db/journals/giq/giq25.html#Perry08,https://doi.org/10.1016/j.giq.2007.04.008 +Marijn Janssen,A survey of Web-based business models for e-government in the Netherlands.,2008,25,Government Information Quarterly,2,db/journals/giq/giq25.html#JanssenKW08,https://doi.org/10.1016/j.giq.2007.06.005 +David Landsbergen,Screen level bureaucracy: Databases as public records.,2004,21,Government Information Quarterly,1,db/journals/giq/giq21.html#Landsbergen04,https://doi.org/10.1016/j.giq.2003.12.009 +George A. Barnett,Measuring international relations in social media conversations.,2017,34,Government Information Quarterly,1,db/journals/giq/giq34.html#BarnettXCJHPP17,https://doi.org/10.1016/j.giq.2016.12.004 +Kyujin Jung,Citizens' social media use and homeland security information policy: Some evidences from Twitter users during the 2013 North Korea nuclear test.,2014,31,Government Information Quarterly,4,db/journals/giq/giq31.html#JungP14,https://doi.org/10.1016/j.giq.2014.06.003 +Ines Mergel,Social media institutionalization in the U.S. federal government.,2016,33,Government Information Quarterly,1,db/journals/giq/giq33.html#Mergel16,https://doi.org/10.1016/j.giq.2015.09.002 +Earl H. McKinney Jr.,Learning by fire: the learning challenges facing U.S. Forest Service aviation.,2004,21,Government Information Quarterly,1,db/journals/giq/giq21.html#McKinney04,https://doi.org/10.1016/j.giq.2003.11.002 +Marcelo Fornazin,Linking theoretical perspectives to analyze health information and communication technologies in Brazil.,2016,33,Government Information Quarterly,2,db/journals/giq/giq33.html#FornazinJ16,https://doi.org/10.1016/j.giq.2016.04.004 +Mehmet Zahid Sobaci,The use of twitter by mayors in Turkey: Tweets for better public services?,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#SobaciK13,https://doi.org/10.1016/j.giq.2013.05.014 +Robbie Sittel,Managed by the Information Policy and Access Center (iPAC) in the College of Information Studies at the University of Maryland.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#Sittel12,https://doi.org/10.1016/j.giq.2011.11.001 +Harold C. Relyea,Government secrecy: policy depths and dimensions.,2003,20,Government Information Quarterly,4,db/journals/giq/giq20.html#Relyea03,https://doi.org/10.1016/j.giq.2003.09.001 +M. P. Gupta,E-government evaluation: a framework and case study.,2003,20,Government Information Quarterly,4,db/journals/giq/giq20.html#GuptaJ03,https://doi.org/10.1016/j.giq.2003.08.002 +Felipe Gonzalez-Zapata,The multiple meanings of open government data: Understanding different stakeholders and their perspectives.,2015,32,Government Information Quarterly,4,db/journals/giq/giq32.html#Gonzalez-Zapata15,https://doi.org/10.1016/j.giq.2015.09.001 +Lisa Schmidthuber,The emergence of local open government: Determinants of citizen participation in online service reporting.,2017,34,Government Information Quarterly,3,db/journals/giq/giq34.html#SchmidthuberHGE17,https://doi.org/10.1016/j.giq.2017.07.001 +Seongcheol Kim,The development of wireless telecommunications and local governments' policy responses: The U.S. case.,2007,24,Government Information Quarterly,3,db/journals/giq/giq24.html#Kim07,https://doi.org/10.1016/j.giq.2006.11.004 +Albert Meijer,A metatheory of e-government: Creating some order in a fragmented research field.,2015,32,Government Information Quarterly,3,db/journals/giq/giq32.html#MeijerB15,https://doi.org/10.1016/j.giq.2015.04.006 +Soon Ae Chun,Social media in government.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#ChunL12,https://doi.org/10.1016/j.giq.2012.07.003 +Henry Owen III,The Life and Liberty.gov Web site review.,2007,24,Government Information Quarterly,1,db/journals/giq/giq24.html#Owen07,https://doi.org/10.1016/j.giq.2006.07.014 +Andrés Navarro-Galera,Online dissemination of information on sustainability in regional governments. Effects of technological factors.,2016,33,Government Information Quarterly,1,db/journals/giq/giq33.html#Navarro-GaleraA16,https://doi.org/10.1016/j.giq.2015.12.003 +Mohammad Sharifi,The study of the success indicators for pre-implementation activities of Iran's E-Government development projects.,2010,27,Government Information Quarterly,1,db/journals/giq/giq27.html#SharifiM10,https://doi.org/10.1016/j.giq.2009.04.006 +Alex Ingrams,Democratic transition and transparency reform: An fsQCA analysis of access to information laws in twenty-three countries.,2018,35,Government Information Quarterly,3,db/journals/giq/giq35.html#Ingrams18,https://doi.org/10.1016/j.giq.2018.05.001 +Yu-Che Chen,A comparative study of e-government XBRL implementations: The potential of improving information transparency and efficiency.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#Chen12,https://doi.org/10.1016/j.giq.2012.05.009 +Eric C. Peterson,The impact of the national performance review and other forces on the rights of an informed citizenry: A case study in reinvention - reforming government publishing.,1998,15,Government Information Quarterly,4,db/journals/giq/giq15.html#Peterson98,https://doi.org/10.1016/S0740-624X(98)90032-6 +Suvi Konsti-Laakso,Stolen snow shovels and good ideas: The search for and generation of local knowledge in the social media community.,2017,34,Government Information Quarterly,1,db/journals/giq/giq34.html#Konsti-Laakso17,https://doi.org/10.1016/j.giq.2016.10.002 +Kumju Hwang,Effects of innovation-supportive culture and organizational citizenship behavior on e-government information system security stemming from mimetic isomorphism.,2017,34,Government Information Quarterly,2,db/journals/giq/giq34.html#HwangC17,https://doi.org/10.1016/j.giq.2017.02.001 +Yuval Karniel,Balancing the protection of civil liberties during wartime: How the Israeli Supreme Court shaped Palestinian freedom of expression during the Second Intifada.,2005,22,Government Information Quarterly,4,db/journals/giq/giq22.html#Karniel05,https://doi.org/10.1016/j.giq.2006.01.003 +Victor Glass,Cable TV is the next market for rural Telcos.,2003,20,Government Information Quarterly,2,db/journals/giq/giq20.html#GlassT03,https://doi.org/10.1016/S0740-624X(03)00019-4 +Jukka Ruohonen,An outlook on the institutional evolution of the European Union cyber security apparatus.,2016,33,Government Information Quarterly,4,db/journals/giq/giq33.html#RuohonenHL16,https://doi.org/10.1016/j.giq.2016.10.003 +Zhiyuan Chen 0003,Semantic integration of government data for water quality management.,2007,24,Government Information Quarterly,4,db/journals/giq/giq24.html#ChenGHKM07,https://doi.org/10.1016/j.giq.2007.04.004 +Lieselot Danneels,Open data platforms: Discussing alternative knowledge epistemologies.,2017,34,Government Information Quarterly,3,db/journals/giq/giq34.html#DanneelsVB17,https://doi.org/10.1016/j.giq.2017.08.007 +Fahrettin özdemirci,Government records and records management: Law on the right to information in Turkey.,2008,25,Government Information Quarterly,2,db/journals/giq/giq25.html#Ozdemirci08,https://doi.org/10.1016/j.giq.2006.07.017 +Brian E. Whitacre,Public libraries and residential broadband adoption: Do more computers lead to higher rates?,2015,32,Government Information Quarterly,2,db/journals/giq/giq32.html#WhitacreR15,https://doi.org/10.1016/j.giq.2015.02.007 +Jane Fedorowicz,Strategic alignment of participant motivations in e-government collaborations: The Internet Payment Platform pilot.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#FedorowiczGGW09,https://doi.org/10.1016/j.giq.2008.03.004 +Harold C. Relyea,Public printing reform and the 105th congress.,1999,16,Government Information Quarterly,2,db/journals/giq/giq16.html#Relyea99a,https://doi.org/10.1016/S0740-624X(99)80004-5 +Cliff Lampe,Crowdsourcing civility: A natural experiment examining the effects of distributed moderation in online forums.,2014,31,Government Information Quarterly,2,db/journals/giq/giq31.html#LampeZLPJ14,https://doi.org/10.1016/j.giq.2013.11.005 +Jeffrey Thorsby,Understanding the content and features of open data portals in American cities.,2017,34,Government Information Quarterly,1,db/journals/giq/giq34.html#ThorsbySWT17,https://doi.org/10.1016/j.giq.2016.07.001 +Abebe Rorissa,Benchmarking e-Government: A comparison of frameworks for computing e-Government index and ranking.,2011,28,Government Information Quarterly,3,db/journals/giq/giq28.html#RorissaDP11,https://doi.org/10.1016/j.giq.2010.09.006 +Jo Bates,The strategic importance of information policy for the contemporary neoliberal state: The case of Open Government Data in the United Kingdom.,2014,31,Government Information Quarterly,3,db/journals/giq/giq31.html#Bates14,https://doi.org/10.1016/j.giq.2014.02.009 +Nadia Caidi,Information rights and national security.,2005,22,Government Information Quarterly,4,db/journals/giq/giq22.html#CaidiR05,https://doi.org/10.1016/j.giq.2005.11.003 +Mete Yildiz,E-government discourses: An inductive analysis.,2013,30,Government Information Quarterly,2,db/journals/giq/giq30.html#YildizS13,https://doi.org/10.1016/j.giq.2012.10.007 +Jyoti Choudrie,Implementing E-government in Lagos State: Understanding the impact of cultural perceptions and working practices.,2017,34,Government Information Quarterly,4,db/journals/giq/giq34.html#ChoudrieZUE17,https://doi.org/10.1016/j.giq.2017.11.004 +Philip M. Napoli,On making public policy with publicly available data: The case of U.S. communications policymaking.,2010,27,Government Information Quarterly,4,db/journals/giq/giq27.html#NapoliK10,https://doi.org/10.1016/j.giq.2010.06.005 +Endrit Kromidha,Discursive Institutionalism for reconciling change and stability in digital innovation public sector projects for development.,2017,34,Government Information Quarterly,1,db/journals/giq/giq34.html#KromidhaC17,https://doi.org/10.1016/j.giq.2016.11.004 +Xenia Papadomichelaki,e-GovQual: A multiple-item scale for assessing e-government service quality.,2012,29,Government Information Quarterly,1,db/journals/giq/giq29.html#Papadomichelaki12,https://doi.org/10.1016/j.giq.2011.08.011 +George D. Barnum,Congress as publisher: Three perspectives.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#BarnumIRR12,https://doi.org/10.1016/j.giq.2011.12.003 +Annika Andersson,You can't make this a science! - Analyzing decision support systems in political contexts.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#AnderssonGA12,https://doi.org/10.1016/j.giq.2012.05.007 +John Carlo Bertot,Changes for 2006.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#Bertot06,https://doi.org/10.1016/j.giq.2006.04.003 +Ardion Beldad,A cue or two and I'll trust you: Determinants of trust in government organizations in terms of their processing and usage of citizens' personal information disclosed online.,2012,29,Government Information Quarterly,1,db/journals/giq/giq29.html#BeldadGJS12,https://doi.org/10.1016/j.giq.2011.05.003 +Marijana Petrovic,Benchmarking the digital divide using a multi-level outranking framework: Evidence from EBRD countries of operation.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#PetrovicBAP12,https://doi.org/10.1016/j.giq.2012.05.008 +Jean-Patrick Villeneuve,Transparency of Transparency: The pro-active disclosure of the rules governing Access to Information as a gauge of organisational cultural transformation. The case of the Swiss transparency regime.,2014,31,Government Information Quarterly,4,db/journals/giq/giq31.html#Villeneuve14,https://doi.org/10.1016/j.giq.2013.10.010 +Lee M. Zeichner,Developing an overarching legal framework for critical service delivery in America's cities: Three recommendations for enhancing security and reliability.,2001,18,Government Information Quarterly,4,db/journals/giq/giq18.html#Zeichner01,https://doi.org/10.1016/S0740-624X(01)00092-2 +Kristin R. Eschenfelder,Examining the role of Web site information in facilitating different citizen-government relationships: A case study of state Chronic Wasting Disease Web sites.,2007,24,Government Information Quarterly,1,db/journals/giq/giq24.html#EschenfelderM07,https://doi.org/10.1016/j.giq.2006.05.002 +Hongxia Wang,Urban information integration for advanced e-Planning in Europe.,2007,24,Government Information Quarterly,4,db/journals/giq/giq24.html#WangSHC07,https://doi.org/10.1016/j.giq.2007.04.002 +Jing Zhang,Transformational digital government.,2014,31,Government Information Quarterly,4,db/journals/giq/giq31.html#ZhangLM14,https://doi.org/10.1016/j.giq.2014.10.001 +Ada Scupola,Governance and innovation in public sector services: The case of the digital library.,2016,33,Government Information Quarterly,2,db/journals/giq/giq33.html#ScupolaZ16,https://doi.org/10.1016/j.giq.2016.04.005 +John N. Gathegi,Officially mandated disappearing information: The legal depublication phenomenon.,2005,22,Government Information Quarterly,3,db/journals/giq/giq22.html#Gathegi05a,https://doi.org/10.1016/j.giq.2005.06.002 +Charles Kaylor,Gauging e-government: A report on implementing services among American cities.,2001,18,Government Information Quarterly,4,db/journals/giq/giq18.html#KaylorDE01,https://doi.org/10.1016/S0740-624X(01)00089-2 +Harold C. Relyea,Across the Hill: The congressional research service and providing research for congress - A retrospective on origins.,2010,27,Government Information Quarterly,4,db/journals/giq/giq27.html#Relyea10,https://doi.org/10.1016/j.giq.2010.06.001 +Cancan Wang,Towards a typology of adaptive governance in the digital government context: The role of decision-making and accountability.,2018,35,Government Information Quarterly,2,db/journals/giq/giq35.html#WangMZ18,https://doi.org/10.1016/j.giq.2017.08.003 +Sarah Shik Lamdan,Why library cards offer more privacy rights than proof of citizenship: Librarian ethics and Freedom of Information Act requestor policies.,2013,30,Government Information Quarterly,2,db/journals/giq/giq30.html#Lamdan13,https://doi.org/10.1016/j.giq.2012.12.005 +Tomasz Janowski,Digital government evolution: From transformation to contextualization.,2015,32,Government Information Quarterly,3,db/journals/giq/giq32.html#Janowski15,https://doi.org/10.1016/j.giq.2015.07.001 +Victor Bekkers,Visual events and electronic government: What do pictures mean in digital government for citizen relations?,2011,28,Government Information Quarterly,4,db/journals/giq/giq28.html#BekkersM11,https://doi.org/10.1016/j.giq.2010.10.006 +John A. Shuler,"Response to ""Government information in the digital age: The once and future Federal Depository Library Program"".",2011,28,Government Information Quarterly,1,db/journals/giq/giq28.html#ShulerJB11,https://doi.org/10.1016/j.giq.2010.07.003 +C. Nadine Wathen,Can the government really help? Online information for women experiencing violence.,2010,27,Government Information Quarterly,2,db/journals/giq/giq27.html#WathenM10,https://doi.org/10.1016/j.giq.2009.12.004 +Claudene Sproles,United States Department of Transportation homepage.,2006,23,Government Information Quarterly,2,db/journals/giq/giq23.html#Sproles06a,https://doi.org/10.1016/j.giq.2005.11.009 +Harold C. Relyea,Homeland security and information.,2002,19,Government Information Quarterly,3,db/journals/giq/giq19.html#Relyea02a,https://doi.org/10.1016/S0740-624X(02)00102-8 +Charles D. Bernholz,"The Palmer and Stevens ""Usual and Accustomed Places"" treaties in the opinions of the courts.",2008,25,Government Information Quarterly,4,db/journals/giq/giq25.html#BernholzW08a,https://doi.org/10.1016/j.giq.2007.10.004 +Mortaza S. Bargh,On design and deployment of two privacy-preserving procedures for judicial-data dissemination.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#BarghCM16,https://doi.org/10.1016/j.giq.2016.06.002 +Yueping Zheng,The impact of government form on e-participation: A study of New Jersey municipalities.,2014,31,Government Information Quarterly,4,db/journals/giq/giq31.html#ZhengSH14,https://doi.org/10.1016/j.giq.2014.06.004 +Girish J. Gulati,Predictors of on-line services and e-participation: A cross-national comparison.,2014,31,Government Information Quarterly,4,db/journals/giq/giq31.html#GulatiWY14,https://doi.org/10.1016/j.giq.2014.07.005 +Catherine A. Hardy,E-government policy and practice: A theoretical and empirical exploration of public e-procurement.,2008,25,Government Information Quarterly,2,db/journals/giq/giq25.html#HardyW08,https://doi.org/10.1016/j.giq.2007.02.003 +Patrick Ngulube,Implications of technological advances for access to the cultural heritage of selected countries in sub-Saharan Africa.,2004,21,Government Information Quarterly,2,db/journals/giq/giq21.html#Ngulube04,https://doi.org/10.1016/j.giq.2004.01.003 +Phyllis Bernt,The telecommunications content of state public utility commission Web sites: Remaining relevant in a changing marketplace.,2007,24,Government Information Quarterly,3,db/journals/giq/giq24.html#BerntWT07,https://doi.org/10.1016/j.giq.2006.10.003 +Yu-Che Chen,Transforming local e-government services: the use of application service providers.,2001,18,Government Information Quarterly,4,db/journals/giq/giq18.html#ChenG01,https://doi.org/10.1016/S0740-624X(01)00090-9 +Harla J. Frank,About the Authors.,2006,23,Government Information Quarterly,2,db/journals/giq/giq23.html#Frank06a,https://doi.org/10.1016/j.giq.2006.07.001 +Shin-Yuan Hung,User acceptance of intergovernmental services: An example of electronic document management system.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#HungTCK09,https://doi.org/10.1016/j.giq.2008.07.003 +Victor Glass,Testing the validity of NECA's Middle Mile cost simulation model using survey data.,2003,20,Government Information Quarterly,2,db/journals/giq/giq20.html#GlassCP03,https://doi.org/10.1016/S0740-624X(03)00020-0 +Yvon van den Boer,In search of information: Investigating source and channel choices in business-to-government service interactions.,2016,33,Government Information Quarterly,1,db/journals/giq/giq33.html#BoerAP16,https://doi.org/10.1016/j.giq.2015.11.010 +Bram Klievink,The collaborative realization of public values and business goals: Governance and infrastructure of public-private information platforms.,2016,33,Government Information Quarterly,1,db/journals/giq/giq33.html#KlievinkBT16,https://doi.org/10.1016/j.giq.2015.12.002 +Yun-Seok Lee,The present status and analysis of Science and Technology Information (STI) service policy in Korea: Centered on Representative National STI Institute.,2009,26,Government Information Quarterly,3,db/journals/giq/giq26.html#LeeK09,https://doi.org/10.1016/j.giq.2008.11.010 +John Carlo Bertot,Building the scholarship of next generation information professional.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#BertotJS12,https://doi.org/10.1016/j.giq.2012.01.002 +Alexander van Loon,Adopting open source software in public administration: The importance of boundary spanners and political commitment.,2015,32,Government Information Quarterly,2,db/journals/giq/giq32.html#LoonT15,https://doi.org/10.1016/j.giq.2015.01.004 +L. Elaine Halchin,Electronic government: Government capability and terrorist resource.,2004,21,Government Information Quarterly,4,db/journals/giq/giq21.html#Halchin04,https://doi.org/10.1016/j.giq.2004.08.002 +Rodrigo Firmino,The spatial bonds of WikiLeaks.,2018,35,Government Information Quarterly,3,db/journals/giq/giq35.html#FirminoMK18,https://doi.org/10.1016/j.giq.2018.05.005 +Jeannine E. Relly,Examining a model of vertical accountability: A cross-national study of the influence of information access on the control of corruption.,2012,29,Government Information Quarterly,3,db/journals/giq/giq29.html#Relly12,https://doi.org/10.1016/j.giq.2012.02.011 +Zhen Li,Economic solutions to improve cybersecurity of governments and smart cities via vulnerability markets.,2018,35,Government Information Quarterly,1,db/journals/giq/giq35.html#LiL18,https://doi.org/10.1016/j.giq.2017.10.006 +Enrique Bonsón,Local e-government 2.0: Social media and corporate transparency in municipalities.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#BonsonTRF12,https://doi.org/10.1016/j.giq.2011.10.001 +Margaret Ann Wilkinson,The author as agent of information policy: The relationship between economic and moral rights in copyright.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#WilkinsonG09,https://doi.org/10.1016/j.giq.2008.12.002 +Bram Klievink,Realizing joined-up government - Dynamic capabilities and stage models for transformation.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#KlievinkJ09,https://doi.org/10.1016/j.giq.2008.12.007 +Richard M. Nunno,Electronic signatures: technology developments and legislative issues.,2000,17,Government Information Quarterly,4,db/journals/giq/giq17.html#Nunno00,https://doi.org/10.1016/S0740-624X(00)00049-6 +Eric W. Welch,Determinants of data sharing in U.S. city governments.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#WelchFP16,https://doi.org/10.1016/j.giq.2016.07.002 +Anne Marie Warren,Social media effects on fostering online civic engagement and building citizen trust and trust in institutions.,2014,31,Government Information Quarterly,2,db/journals/giq/giq31.html#WarrenSJ14,https://doi.org/10.1016/j.giq.2013.11.007 +Kenneth J. Knapp,Key issues in data center security: An investigation of government audit reports.,2011,28,Government Information Quarterly,4,db/journals/giq/giq28.html#KnappDB11,https://doi.org/10.1016/j.giq.2010.10.008 +Charles D. Bernholz,Loci sigilli and American Indian treaties: Reflections on the creation of volume 2 of Kappler's Indian Affairs: Laws and Treaties.,2009,26,Government Information Quarterly,4,db/journals/giq/giq26.html#BernholzH09,https://doi.org/10.1016/j.giq.2008.09.003 +øystein Sæbø,Understanding the dynamics in e-Participation initiatives: Looking through the genre and stakeholder lenses.,2011,28,Government Information Quarterly,3,db/journals/giq/giq28.html#SaeboFS11,https://doi.org/10.1016/j.giq.2010.10.005 +Ridley Kessler,Depository libraries and public services.,1998,15,Government Information Quarterly,1,db/journals/giq/giq15.html#Kessler98,https://doi.org/10.1016/S0740-624X(98)90019-3 +Daniel P. O'Mahony,The federal depository library program in transition: A perspective at the turn of a century.,1998,15,Government Information Quarterly,1,db/journals/giq/giq15.html#OMahony98,https://doi.org/10.1016/S0740-624X(98)90012-0 +Wade R. Rose,Critical issues pertaining to the planning and implementation of E-Government initiatives.,2010,27,Government Information Quarterly,1,db/journals/giq/giq27.html#RoseG10,https://doi.org/10.1016/j.giq.2009.06.002 +Omar E. M. Khalil,e-Government readiness: Does national culture matter?,2011,28,Government Information Quarterly,3,db/journals/giq/giq28.html#Khalil11,https://doi.org/10.1016/j.giq.2010.06.011 +Eduardo B. Fernández,A conceptual approach to secure electronic elections based on patterns.,2013,30,Government Information Quarterly,1,db/journals/giq/giq30.html#FernandezRP13,https://doi.org/10.1016/j.giq.2012.08.001 +Sergio Picazo-Vela,Opening the black box: Developing strategies to use social media in government.,2016,33,Government Information Quarterly,4,db/journals/giq/giq33.html#Picazo-VelaFL16,https://doi.org/10.1016/j.giq.2016.08.004 +Todd B. Tatelman,Congress's contempt power: Three mechanisms for enforcing subpoenas.,2008,25,Government Information Quarterly,4,db/journals/giq/giq25.html#Tatelman08,https://doi.org/10.1016/j.giq.2007.10.005 +Kanishka Karunasena,Critical factors for evaluating the public value of e-government in Sri Lanka.,2012,29,Government Information Quarterly,1,db/journals/giq/giq29.html#KarunasenaD12,https://doi.org/10.1016/j.giq.2011.04.005 +Juan L. Gandía,Digital transparency and Web 2.0 in Spanish city councils.,2016,33,Government Information Quarterly,1,db/journals/giq/giq33.html#GandiaMH16,https://doi.org/10.1016/j.giq.2015.12.004 +Rony Medaglia,Public deliberation on government-managed social media: A study on Weibo users in China.,2017,34,Government Information Quarterly,3,db/journals/giq/giq34.html#MedagliaZ17a,https://doi.org/10.1016/j.giq.2017.05.003 +Lourdes Tinajero,Census 2000 partnerships: working together for a better census count.,2000,17,Government Information Quarterly,2,db/journals/giq/giq17.html#Tinajero00,https://doi.org/10.1016/S0740-624X(00)00026-5 +John Carlo Bertot,New editorial board members.,2004,21,Government Information Quarterly,1,db/journals/giq/giq21.html#Bertot04,https://doi.org/10.1016/j.giq.2004.01.002 +Petya Chipeva,Digital divide at individual level: Evidence for Eastern and Western European countries.,2018,35,Government Information Quarterly,3,db/journals/giq/giq35.html#ChipevaCOI18,https://doi.org/10.1016/j.giq.2018.06.003 +Antonio Cordella,E-government and organizational change: Reappraising the role of ICT and bureaucracy in public service delivery.,2015,32,Government Information Quarterly,3,db/journals/giq/giq32.html#CordellaT15,https://doi.org/10.1016/j.giq.2015.03.005 +Dale Alexander Stirling,EPA glossaries: The struggle to define environmental terms.,2007,24,Government Information Quarterly,2,db/journals/giq/giq24.html#Stirling07,https://doi.org/10.1016/j.giq.2005.12.002 +Nigel Martin,Why Australia needs a SAGE: A security architecture for the Australian government environment.,2005,22,Government Information Quarterly,1,db/journals/giq/giq22.html#Martin05,https://doi.org/10.1016/j.giq.2004.10.007 +Paul T. Zeisset,Disseminating economic census data.,1998,15,Government Information Quarterly,3,db/journals/giq/giq15.html#Zeisset98,https://doi.org/10.1016/S0740-624X(98)90005-3 +Ted Priebe,The U.S. Government Printing Office's initiatives for the Federal Depository Library Program to set the stage for the 21st century.,2008,25,Government Information Quarterly,1,db/journals/giq/giq25.html#PriebeWM08,https://doi.org/10.1016/j.giq.2007.09.003 +Yi-Shun Wang,The adoption of electronic tax filing systems: an empirical study.,2003,20,Government Information Quarterly,4,db/journals/giq/giq20.html#Wang03,https://doi.org/10.1016/j.giq.2003.08.005 +Hyun Jeong Kim,Managing IT-enabled transformation in the public sector: A case study on e-government in South Korea.,2007,24,Government Information Quarterly,2,db/journals/giq/giq24.html#KimPP07,https://doi.org/10.1016/j.giq.2006.09.007 +Blessing Mukabeta Maumbe,Questioning the pace and pathway of e-government development in Africa: A case study of South Africa's Cape Gateway project.,2008,25,Government Information Quarterly,4,db/journals/giq/giq25.html#MaumbeOA08,https://doi.org/10.1016/j.giq.2007.08.007 +Leo G. Anthopoulos,Applying participatory design and collaboration in digital public services for discovering and re-designing e-Government services.,2007,24,Government Information Quarterly,2,db/journals/giq/giq24.html#AnthopoulosST07,https://doi.org/10.1016/j.giq.2006.07.018 +Kim Normann Andersen,Social media in public health care: Impact domain propositions.,2012,29,Government Information Quarterly,4,db/journals/giq/giq29.html#AndersenMH12,https://doi.org/10.1016/j.giq.2012.07.004 +Xian Gao,Integration and coordination: Advancing China's fragmented e-government to holistic governance.,2013,30,Government Information Quarterly,2,db/journals/giq/giq30.html#GaoSZ13,https://doi.org/10.1016/j.giq.2012.12.003 +Pin-Yu Chu,Exploring success factors for Taiwan's government electronic tendering system: behavioral perspectives from end users.,2004,21,Government Information Quarterly,2,db/journals/giq/giq21.html#ChuHLC04,https://doi.org/10.1016/j.giq.2004.01.005 +Duncan M. Aldrich,Changing partnerships? Government documents departments at the turn of the millennium.,2000,17,Government Information Quarterly,3,db/journals/giq/giq17.html#AldrichCB00,https://doi.org/10.1016/S0740-624X(00)00035-6 +Awalin Sopan,Community Health Map: A geospatial and multivariate data visualization tool for public health datasets.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#SopanNKRLS12,https://doi.org/10.1016/j.giq.2011.10.002 +Danielle Brian,WikiLeaks is a wake-up call for openness.,2011,28,Government Information Quarterly,2,db/journals/giq/giq28.html#BrianMW11,https://doi.org/10.1016/j.giq.2011.02.001 +Harold C. Relyea,Security classification reviews and the search for reform.,1999,16,Government Information Quarterly,1,db/journals/giq/giq16.html#Relyea99,https://doi.org/10.1016/S0740-624X(99)80013-6 +Shy-tzong Liou,Restructuring Taiwan's port state control inspection authority.,2011,28,Government Information Quarterly,1,db/journals/giq/giq28.html#LiouLCY11,https://doi.org/10.1016/j.giq.2010.05.005 +John T. Snead,E-government research in the United States.,2014,31,Government Information Quarterly,1,db/journals/giq/giq31.html#SneadW14,https://doi.org/10.1016/j.giq.2013.07.005 +Carlo Batini,GovQual: A quality driven methodology for E-Government project planning.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#BatiniVC09,https://doi.org/10.1016/j.giq.2008.03.002 +Kristin R. Eschenfelder,Behind the Web site: An inside look at the production of Web-based textual government information.,2004,21,Government Information Quarterly,3,db/journals/giq/giq21.html#Eschenfelder04,https://doi.org/10.1016/j.giq.2004.04.004 +Nixon Muganda Ochara,Assessing irreversibility of an E-Government project in Kenya: Implication for governance.,2010,27,Government Information Quarterly,1,db/journals/giq/giq27.html#Ochara10,https://doi.org/10.1016/j.giq.2009.04.005 +Christopher G. Reddick,Citizen interaction with e-government: From the streets to servers?,2005,22,Government Information Quarterly,1,db/journals/giq/giq22.html#Reddick05,https://doi.org/10.1016/j.giq.2004.10.003 +Tülay Fenerci,Historical development of legal deposit system in Turkey.,2008,25,Government Information Quarterly,3,db/journals/giq/giq25.html#Fenerci08,https://doi.org/10.1016/j.giq.2007.10.001 +Tapio Vepsäläinen,Facebook likes and public opinion: Predicting the 2015 Finnish parliamentary elections.,2017,34,Government Information Quarterly,3,db/journals/giq/giq34.html#VepsalainenLS17,https://doi.org/10.1016/j.giq.2017.05.004 +Ardion D. Beldad,When the bureaucrat promises to safeguard your online privacy: Dissecting the contents of privacy statements on Dutch municipal websites.,2009,26,Government Information Quarterly,4,db/journals/giq/giq26.html#BeldadJS09,https://doi.org/10.1016/j.giq.2009.05.002 +Tommy Wright,Census 2000: who says counting is easy as 1-2-3?,2000,17,Government Information Quarterly,2,db/journals/giq/giq17.html#Wright00,https://doi.org/10.1016/S0740-624X(00)00021-6 +Stephen Woods,Evaluating population estimates in the United States: Counting the population between the censuses.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#Woods09,https://doi.org/10.1016/j.giq.2007.02.006 +Dong-Hee Shin,Convergence and divergence: Policy making about the convergence of technology in Korea.,2010,27,Government Information Quarterly,2,db/journals/giq/giq27.html#Shin10,https://doi.org/10.1016/j.giq.2009.11.001 +Takashi Koga,Access to government information in Japan: a long way toward electronic government?,2003,20,Government Information Quarterly,1,db/journals/giq/giq20.html#Koga03,https://doi.org/10.1016/S0740-624X(02)00134-X +Claudene Sproles,GovBenefits.gov.,2006,23,Government Information Quarterly,1,db/journals/giq/giq23.html#Sproles06,https://doi.org/10.1016/j.giq.2005.07.004 +Victor Glass,Technological breakthroughs lower the cost of broadband service to isolated customers.,2003,20,Government Information Quarterly,2,db/journals/giq/giq20.html#GlassTB03,https://doi.org/10.1016/S0740-624X(03)00032-7 +Robert Gellman,Perspectives on privacy and terrorism: all is not lost - yet.,2002,19,Government Information Quarterly,3,db/journals/giq/giq19.html#Gellman02,https://doi.org/10.1016/S0740-624X(02)00105-3 +Dong-Hee Shin,User centric cloud service model in public sectors: Policy implications of cloud services.,2013,30,Government Information Quarterly,2,db/journals/giq/giq30.html#Shin13,https://doi.org/10.1016/j.giq.2012.06.012 +Jane E. Kirtley,Is implementing the EU data protection directive in the United States irreconcilable with the first amendment?,1999,16,Government Information Quarterly,2,db/journals/giq/giq16.html#Kirtley99,https://doi.org/10.1016/S0740-624X(99)80001-X +John A. Shuler,Reviews.,2000,17,Government Information Quarterly,1,db/journals/giq/giq17.html#ShulerM00,https://doi.org/10.1016/S0740-624X(99)00025-8 +Harold C. Relyea,Across the Hill: The congressional research service and providing research for congress - A retrospective on personal experience.,2012,29,Government Information Quarterly,2,db/journals/giq/giq29.html#Relyea12,https://doi.org/10.1016/j.giq.2011.10.003 +Lourdes Torres,E-government developments on delivering public services among EU cities.,2005,22,Government Information Quarterly,2,db/journals/giq/giq22.html#TorresPA05,https://doi.org/10.1016/j.giq.2005.02.004 +Jane Fedorowicz,A decade of design in digital government research.,2010,27,Government Information Quarterly,1,db/journals/giq/giq27.html#FedorowiczD10,https://doi.org/10.1016/j.giq.2009.09.002 +Robin Gauld,Do they want it? Do they use it? The 'Demand-Side' of e-Government in Australia and New Zealand.,2010,27,Government Information Quarterly,2,db/journals/giq/giq27.html#GauldGH10,https://doi.org/10.1016/j.giq.2009.12.002 +Qiang Chen 0003,Social media policies as responses for social media affordances: The case of China.,2016,33,Government Information Quarterly,2,db/journals/giq/giq33.html#ChenXCZ16,https://doi.org/10.1016/j.giq.2016.04.008 +Sara Hofmann,What makes local governments' online communications successful? Insights from a multi-method analysis of Facebook.,2013,30,Government Information Quarterly,4,db/journals/giq/giq30.html#HofmannBRB13,https://doi.org/10.1016/j.giq.2013.05.013 +Marta Raus,Evaluating IT innovations in a business-to-government context: A framework and its applications.,2010,27,Government Information Quarterly,2,db/journals/giq/giq27.html#RausLK10,https://doi.org/10.1016/j.giq.2009.04.007 +Ralf Klischewski,When virtual reality meets realpolitik: Social media shaping the Arab government-citizen relationship.,2014,31,Government Information Quarterly,3,db/journals/giq/giq31.html#Klischewski14,https://doi.org/10.1016/j.giq.2013.10.015 +Chin Pang Cheng,Improving access to and understanding of regulations through taxonomies.,2009,26,Government Information Quarterly,2,db/journals/giq/giq26.html#ChengLLPJ09,https://doi.org/10.1016/j.giq.2008.12.008 +José Ramón Gil-García,Government inter-organizational information sharing initiatives: Understanding the main determinants of success.,2016,33,Government Information Quarterly,3,db/journals/giq/giq33.html#Gil-GarciaS16,https://doi.org/10.1016/j.giq.2016.01.006 +Charles R. McClure,The chief information officer (CIO): assessing its impact.,2000,17,Government Information Quarterly,1,db/journals/giq/giq17.html#McClureB00,https://doi.org/10.1016/S0740-624X(99)00021-0 +Yogesh Kumar Dwivedi,Guest editorial: From implementation to adoption: Challenges to successful E-Government diffusion.,2009,26,Government Information Quarterly,1,db/journals/giq/giq26.html#DwivediWW09,https://doi.org/10.1016/j.giq.2008.09.001 +Renate Scheidler,A Key-Exchange Protocol Using Real Quadratic Fields.,1994,7,J. Cryptology,3,db/journals/joc/joc7.html#ScheidlerBW94,https://doi.org/10.1007/BF02318548 +Tibor Jager,Authenticated Confidential Channel Establishment and the Security of TLS-DHE.,2017,30,J. Cryptology,4,db/journals/joc/joc30.html#JagerKSS17,https://doi.org/10.1007/s00145-016-9248-2 +Andrej Bogdanov,Input Locality and Hardness Amplification.,2013,26,J. Cryptology,1,db/journals/joc/joc26.html#BogdanovR13,https://doi.org/10.1007/s00145-011-9117-y +Jean-Sébastien Coron,Practical Cryptanalysis of ISO 9796-2 and EMV Signatures.,2016,29,J. Cryptology,3,db/journals/joc/joc29.html#CoronNTW16,https://doi.org/10.1007/s00145-015-9205-5 +Johan Håstad,Practical Construction and Analysis of Pseudo-Randomness Primitives.,2008,21,J. Cryptology,1,db/journals/joc/joc21.html#HastadN08,https://doi.org/10.1007/s00145-007-9009-3 +Amos Beimel,How Should We Solve Search Problems Privately?,2010,23,J. Cryptology,2,db/journals/joc/joc23.html#BeimelMNW10,https://doi.org/10.1007/s00145-008-9032-z +Antoine Joux,Lattice Reduction: A Toolbox for the Cryptanalyst.,1998,11,J. Cryptology,3,db/journals/joc/joc11.html#JouxS98,https://doi.org/10.1007/s001459900042 +Bin Zhang 0003,Practical Cryptanalysis of Bluetooth Encryption with Condition Masking.,2018,31,J. Cryptology,2,db/journals/joc/joc31.html#ZhangXF18,https://doi.org/10.1007/s00145-017-9260-1 +A. W. Schrift,Universal Tests for Nonuniform Distributions.,1993,6,J. Cryptology,3,db/journals/joc/joc6.html#SchriftS93,https://doi.org/10.1007/BF00198461 +Claus Diem,Index Calculus in Class Groups of Non-hyperelliptic Curves of Genus Three.,2008,21,J. Cryptology,4,db/journals/joc/joc21.html#DiemT08,https://doi.org/10.1007/s00145-007-9014-6 +Eu-Jin Goh,Efficient Signature Schemes with Tight Reductions to the Diffie-Hellman Problems.,2007,20,J. Cryptology,4,db/journals/joc/joc20.html#GohJKW07,https://doi.org/10.1007/s00145-007-0549-3 +Neal Koblitz,Elliptic Curve Implementations of Zero-Knowledge Blobs.,1991,4,J. Cryptology,3,db/journals/joc/joc4.html#Koblitz91,https://doi.org/10.1007/BF00196728 +Gilad Asharov,Utility Dependence in Correct and Fair Rational Secret Sharing.,2011,24,J. Cryptology,1,db/journals/joc/joc24.html#AsharovL11,https://doi.org/10.1007/s00145-010-9064-z +Marco Baldi,Enhanced Public Key Security for the McEliece Cryptosystem.,2016,29,J. Cryptology,1,db/journals/joc/joc29.html#Baldi0CRS16,https://doi.org/10.1007/s00145-014-9187-8 +Thomas Jakobsen,Attacks on Block Ciphers of Low Algebraic Degree.,2001,14,J. Cryptology,3,db/journals/joc/joc14.html#JakobsenK01,https://doi.org/10.1007/s00145-001-0003-x +Mihir Bellare,A Note on Negligible Functions.,2002,15,J. Cryptology,4,db/journals/joc/joc15.html#Bellare02,https://doi.org/10.1007/s00145-002-0116-x +Serge Vaudenay,Decorrelation: A Theory for Block Cipher Security.,2003,16,J. Cryptology,4,db/journals/joc/joc16.html#Vaudenay03,https://doi.org/10.1007/s00145-003-0220-6 +Scott A. Vanstone,Short RSA Keys and Their Generation.,1995,8,J. Cryptology,2,db/journals/joc/joc8.html#VanstoneZ95,https://doi.org/10.1007/BF00190758 +Kamel Bentahar,Generic Constructions of Identity-Based and Certificateless KEMs.,2008,21,J. Cryptology,2,db/journals/joc/joc21.html#BentaharFMS08,https://doi.org/10.1007/s00145-007-9000-z +Oded Goldreich 0001,Enhancements of Trapdoor Permutations.,2013,26,J. Cryptology,3,db/journals/joc/joc26.html#GoldreichR13,https://doi.org/10.1007/s00145-012-9131-8 +Francesco Matucci,Cryptanalysis of the Shpilrain-Ushakov Protocol for Thompson's Group.,2008,21,J. Cryptology,3,db/journals/joc/joc21.html#Matucci08,https://doi.org/10.1007/s00145-007-9016-4 +Dmitry Khovratovich,Rotational Rebound Attacks on Reduced Skein.,2014,27,J. Cryptology,3,db/journals/joc/joc27.html#KhovratovichNR14,https://doi.org/10.1007/s00145-013-9150-0 +Minghua Qu,Factorizations in the Elementary Abelian p-Group and Their Cryptographic Significance.,1994,7,J. Cryptology,4,db/journals/joc/joc7.html#QuV94,https://doi.org/10.1007/BF00203963 +Gilles Brassard,Oblivious Transfers and Privacy Amplification.,2003,16,J. Cryptology,4,db/journals/joc/joc16.html#BrassardCW03,https://doi.org/10.1007/s00145-002-0146-4 +Benny Applebaum,"Garbling XOR Gates ""For Free"" in the Standard Model.",2016,29,J. Cryptology,3,db/journals/joc/joc29.html#Applebaum16,https://doi.org/10.1007/s00145-015-9201-9 +Yonatan Aumann,Security Against Covert Adversaries: Efficient Protocols for Realistic Adversaries.,2010,23,J. Cryptology,2,db/journals/joc/joc23.html#AumannL10,https://doi.org/10.1007/s00145-009-9040-7 +Markus Bläser,Private Computation: k-Connected versus 1-Connected Networks.,2006,19,J. Cryptology,3,db/journals/joc/joc19.html#BlaserJLM06,https://doi.org/10.1007/s00145-005-0329-x +Mihir Bellare,Security Proofs for Identity-Based Identification and Signature Schemes.,2009,22,J. Cryptology,1,db/journals/joc/joc22.html#BellareNN09,https://doi.org/10.1007/s00145-008-9028-8 +Jeffrey Considine,Byzantine Agreement Given Partial Broadcast.,2005,18,J. Cryptology,3,db/journals/joc/joc18.html#ConsidineFFLMM05,https://doi.org/10.1007/s00145-005-0308-x +Oded Goldreich 0001,On the Security of Modular Exponentiation with Application to the Construction of Pseudorandom Generators.,2003,16,J. Cryptology,2,db/journals/joc/joc16.html#GoldreichR03,https://doi.org/10.1007/s00145-002-0038-7 +Thomas Scanlon,Public Key Cryptosystems Based on Drinfeld Modules Are Insecure.,2001,14,J. Cryptology,4,db/journals/joc/joc14.html#Scanlon01,https://doi.org/10.1007/s00145-001-0004-9 +Chris J. Mitchell,Enumerating Boolean Functions of Cryptographic Significance.,1990,2,J. Cryptology,3,db/journals/joc/joc2.html#Mitchell90,https://doi.org/10.1007/BF00190802 +Moses Liskov,Tweakable Block Ciphers.,2011,24,J. Cryptology,3,db/journals/joc/joc24.html#LiskovRW11,https://doi.org/10.1007/s00145-010-9073-y +Yvo Desmedt,Graph Coloring Applied to Secure Computation in Non-Abelian Groups.,2012,25,J. Cryptology,4,db/journals/joc/joc25.html#DesmedtPSSTWY12,https://doi.org/10.1007/s00145-011-9104-3 +Sachar Paulus,A New Public-Key Cryptosystem over a Quadratic Order with Quadratic Decryption Time.,2000,13,J. Cryptology,2,db/journals/joc/joc13.html#PaulusT00,https://doi.org/10.1007/s001459910010 +Ronald Cramer,On the Amortized Complexity of Zero-Knowledge Protocols.,2014,27,J. Cryptology,2,db/journals/joc/joc27.html#CramerDK14,https://doi.org/10.1007/s00145-013-9145-x +Joan Boyar,Short Non-Interactive Cryptographic Proofs.,2000,13,J. Cryptology,4,db/journals/joc/joc13.html#BoyarDP00,https://doi.org/10.1007/s001450010011 +Ran Canetti,Security and Composition of Multiparty Cryptographic Protocols.,2000,13,J. Cryptology,1,db/journals/joc/joc13.html#Canetti00,https://doi.org/10.1007/s001459910006 +Juan A. Garay,Resource Fairness and Composability of Cryptographic Protocols.,2011,24,J. Cryptology,4,db/journals/joc/joc24.html#GarayMPY11,https://doi.org/10.1007/s00145-010-9080-z +Marc Fischlin,Efficient Non-Malleable Commitment Schemes.,2011,24,J. Cryptology,1,db/journals/joc/joc24.html#FischlinF11,https://doi.org/10.1007/s00145-009-9043-4 +Gustavus J. Simmons,Proof of Soundness (Integrity) of Cryptographic Protocols.,1994,7,J. Cryptology,2,db/journals/joc/joc7.html#Simmons94,https://doi.org/10.1007/BF00197941 +Ueli M. Maurer,Cascade Ciphers: The Importance of Being First.,1993,6,J. Cryptology,1,db/journals/joc/joc6.html#MaurerM93,https://doi.org/10.1007/BF02620231 +Johan Håstad,The Security of the IAPM and IACBC Modes.,2007,20,J. Cryptology,2,db/journals/joc/joc20.html#Hastad07,https://doi.org/10.1007/s00145-006-0225-z +Jin Hong 0001,A Comparison of Cryptanalytic Tradeoff Algorithms.,2013,26,J. Cryptology,4,db/journals/joc/joc26.html#HongM13,https://doi.org/10.1007/s00145-012-9128-3 +Rafail Ostrovsky,Private Searching on Streaming Data.,2007,20,J. Cryptology,4,db/journals/joc/joc20.html#OstrovskyS07,https://doi.org/10.1007/s00145-007-0565-3 +Martin Hirt,Player Simulation and General Adversary Structures in Perfect Multiparty Computation.,2000,13,J. Cryptology,1,db/journals/joc/joc13.html#HirtM00,https://doi.org/10.1007/s001459910003 +Russell Impagliazzo,Efficient Cryptographic Schemes Provably as Secure as Subset Sum.,1996,9,J. Cryptology,4,db/journals/joc/joc9.html#ImpagliazzoN96,https://doi.org/10.1007/BF00189260 +Jonathan Katz,Scalable Protocols for Authenticated Group Key Exchange.,2007,20,J. Cryptology,1,db/journals/joc/joc20.html#KatzY07,https://doi.org/10.1007/s00145-006-0361-5 +Tamir Tassa,Low Bandwidth Dynamic Traitor Tracing Schemes.,2005,18,J. Cryptology,2,db/journals/joc/joc18.html#Tassa05,https://doi.org/10.1007/s00145-004-0214-z +Benny Applebaum,A Dichotomy for Local Small-Bias Generators.,2016,29,J. Cryptology,3,db/journals/joc/joc29.html#ApplebaumBR16,https://doi.org/10.1007/s00145-015-9202-8 +Pierrick Gaudry,Constructive and Destructive Facets of Weil Descent on Elliptic Curves.,2002,15,J. Cryptology,1,db/journals/joc/joc15.html#GaudryHS02,https://doi.org/10.1007/s00145-001-0011-x +Joachim von zur Gathen,Polynomial and Normal Bases for Finite Fields.,2005,18,J. Cryptology,4,db/journals/joc/joc18.html#GathenN05,https://doi.org/10.1007/s00145-004-0221-0 +Paul Morrissey,The TLS Handshake Protocol: A Modular Analysis.,2010,23,J. Cryptology,2,db/journals/joc/joc23.html#MorrisseySW10,https://doi.org/10.1007/s00145-009-9052-3 +Manuel Barbosa,Constructive and Destructive Use of Compilers in Elliptic Curve Cryptography.,2009,22,J. Cryptology,2,db/journals/joc/joc22.html#BarbosaMP09,https://doi.org/10.1007/s00145-008-9023-0 +Dennis Hofheinz,Programmable Hash Functions and Their Applications.,2012,25,J. Cryptology,3,db/journals/joc/joc25.html#HofheinzK12,https://doi.org/10.1007/s00145-011-9102-5 +Hovav Shacham,Compact Proofs of Retrievability.,2013,26,J. Cryptology,3,db/journals/joc/joc26.html#ShachamW13,https://doi.org/10.1007/s00145-012-9129-2 +Victor Shoup,OAEP Reconsidered.,2002,15,J. Cryptology,4,db/journals/joc/joc15.html#Shoup02,https://doi.org/10.1007/s00145-002-0133-9 +Ueli M. Maurer,A Universal Statistical Test for Random Bit Generators.,1992,5,J. Cryptology,2,db/journals/joc/joc5.html#Maurer92a,https://doi.org/10.1007/BF00193563 +David Mandell Freeman,More Constructions of Lossy and Correlation-Secure Trapdoor Functions.,2013,26,J. Cryptology,1,db/journals/joc/joc26.html#FreemanGKRS13,https://doi.org/10.1007/s00145-011-9112-3 +Masayuki Abe,Constant-Size Structure-Preserving Signatures: Generic Constructions and Simple Assumptions.,2016,29,J. Cryptology,4,db/journals/joc/joc29.html#AbeCDKNO16,https://doi.org/10.1007/s00145-015-9211-7 +Mahdi Cheraghchi,Non-malleable Coding Against Bit-Wise and Split-State Tampering.,2017,30,J. Cryptology,1,db/journals/joc/joc30.html#CheraghchiG17,https://doi.org/10.1007/s00145-015-9219-z +Gilad Asharov,Toward a Game Theoretic View of Secure Computation.,2016,29,J. Cryptology,4,db/journals/joc/joc29.html#AsharovCH16,https://doi.org/10.1007/s00145-015-9212-6 +Iftach Haitner,Limits on the Usefulness of Random Oracles.,2016,29,J. Cryptology,2,db/journals/joc/joc29.html#HaitnerOZ16,https://doi.org/10.1007/s00145-014-9194-9 +Praveen Gauravaram,Security Analysis of Randomize-Hash-then-Sign Digital Signatures.,2012,25,J. Cryptology,4,db/journals/joc/joc25.html#GauravaramK12,https://doi.org/10.1007/s00145-011-9109-y +Wen-Ai Jackson,Ideal Secret Sharing Schemes with Multiple Secrets.,1996,9,J. Cryptology,4,db/journals/joc/joc9.html#JacksonMO96,https://doi.org/10.1007/BF00189262 +Régis Dupont,Building Curves with Arbitrary Small MOV Degree over Finite Prime Fields.,2005,18,J. Cryptology,2,db/journals/joc/joc18.html#DupontEM05,https://doi.org/10.1007/s00145-004-0219-7 +Siguna Müller,A Probable Prime Test with Very High Confidence for n L 3 mod 4.,2003,16,J. Cryptology,2,db/journals/joc/joc16.html#Muller03,https://doi.org/10.1007/s00145-002-0107-y +Salil P. Vadhan,Constructing Locally Computable Extractors and Cryptosystems in the Bounded-Storage Model.,2004,17,J. Cryptology,1,db/journals/joc/joc17.html#Vadhan04,https://doi.org/10.1007/s00145-003-0237-x +Eiichiro Fujisaki,RSA-OAEP Is Secure under the RSA Assumption.,2004,17,J. Cryptology,2,db/journals/joc/joc17.html#FujisakiOPS04,https://doi.org/10.1007/s00145-002-0204-y +R. Balasubramanian,The Improbability That an Elliptic Curve Has Subexponential Discrete Log Problem under the Menezes - Okamoto - Vanstone Algorithm.,1998,11,J. Cryptology,2,db/journals/joc/joc11.html#BalasubramanianK98,https://doi.org/10.1007/s001459900040 +Jung Hee Cheon,Accelerating Pollard's Rho Algorithm on Finite Fields.,2012,25,J. Cryptology,2,db/journals/joc/joc25.html#CheonHK12,https://doi.org/10.1007/s00145-010-9093-7 +Lars R. Knudsen,Partial Key Recovery Attack Against RMAC.,2005,18,J. Cryptology,4,db/journals/joc/joc18.html#KnudsenM05,https://doi.org/10.1007/s00145-004-0324-7 +Yehuda Lindell,Fast Cut-and-Choose-Based Protocols for Malicious and Covert Adversaries.,2016,29,J. Cryptology,2,db/journals/joc/joc29.html#Lindell16,https://doi.org/10.1007/s00145-015-9198-0 +Yacov Yacobi,Batch Diffie-Hellman Key Agreement Systems.,1997,10,J. Cryptology,2,db/journals/joc/joc10.html#YacobiB97,https://doi.org/10.1007/s001459900022 +Dennis Hofheinz,GNUC: A New Universal Composability Framework.,2015,28,J. Cryptology,3,db/journals/joc/joc28.html#HofheinzS15,https://doi.org/10.1007/s00145-013-9160-y +S. Lloyd,Counting Binary Functions with Certain Cryptographic Properties.,1992,5,J. Cryptology,2,db/journals/joc/joc5.html#Lloyd92,https://doi.org/10.1007/BF00193564 +Phillip Rogaway,A Software-Optimized Encryption Algorithm.,1998,11,J. Cryptology,4,db/journals/joc/joc11.html#RogawayC98,https://doi.org/10.1007/s001459900048 +Giovanni Di Crescenzo,Universal Service-Providers for Private Information Retrieval.,2001,14,J. Cryptology,1,db/journals/joc/joc14.html#CrescenzoIO01,https://doi.org/10.1007/s001450010008 +Alexandra Boldyreva,Secure Proxy Signature Schemes for Delegation of Signing Rights.,2012,25,J. Cryptology,1,db/journals/joc/joc25.html#BoldyrevaPW12,https://doi.org/10.1007/s00145-010-9082-x +Rosario Gennaro,Robust and Efficient Sharing of RSA Functions.,2000,13,J. Cryptology,2,db/journals/joc/joc13.html#GennaroRJK00,https://doi.org/10.1007/s001459910011 +Antoine Joux,A One Round Protocol for Tripartite Diffie-Hellman.,2004,17,J. Cryptology,4,db/journals/joc/joc17.html#Joux04,https://doi.org/10.1007/s00145-004-0312-y +Hadi Soleimany,Reflection Cryptanalysis of PRINCE-Like Ciphers.,2015,28,J. Cryptology,3,db/journals/joc/joc28.html#SoleimanyBYWNZZ15,https://doi.org/10.1007/s00145-013-9175-4 +Kaisa Nyberg,Provable Security Against a Differential Attack.,1995,8,J. Cryptology,1,db/journals/joc/joc8.html#NybergK95,https://doi.org/10.1007/BF00204800 +Don Coppersmith,Modifications to the Number Field Sieve.,1993,6,J. Cryptology,3,db/journals/joc/joc6.html#Coppersmith93,https://doi.org/10.1007/BF00198464 +Richard A. Kemmerer,Three System for Cryptographic Protocol Analysis.,1994,7,J. Cryptology,2,db/journals/joc/joc7.html#KemmererMM94,https://doi.org/10.1007/BF00197942 +Kevin S. McCurley,A Key Distribution System Equivalent to Factoring.,1988,1,J. Cryptology,2,db/journals/joc/joc1.html#McCurley88,https://doi.org/10.1007/BF02351718 +Ueli M. Maurer,Fast Generation of Prime Numbers and Secure Public-Key Cryptographic Parameters.,1995,8,J. Cryptology,3,db/journals/joc/joc8.html#Maurer95,https://doi.org/10.1007/BF00202269 +Nicolas Bruneau,Multivariate High-Order Attacks of Shuffled Tables Recomputation.,2018,31,J. Cryptology,2,db/journals/joc/joc31.html#BruneauGNT18,https://doi.org/10.1007/s00145-017-9259-7 +Mario Di Raimondo,New Approaches for Deniable Authentication.,2009,22,J. Cryptology,4,db/journals/joc/joc22.html#RaimondoG09,https://doi.org/10.1007/s00145-009-9044-3 +Jae Hong Seo,Short Signatures from Diffie-Hellman: Realizing Almost Compact Public Key.,2017,30,J. Cryptology,3,db/journals/joc/joc30.html#Seo17,https://doi.org/10.1007/s00145-016-9234-8 +Benjamin Fuller,A Unified Approach to Deterministic Encryption: New Constructions and a Connection to Computational Entropy.,2015,28,J. Cryptology,3,db/journals/joc/joc28.html#FullerOR15,https://doi.org/10.1007/s00145-013-9174-5 +Jens Groth,A Verifiable Secret Shuffle of Homomorphic Encryptions.,2010,23,J. Cryptology,4,db/journals/joc/joc23.html#Groth10,https://doi.org/10.1007/s00145-010-9067-9 +Yan-Cheng Chang,The Impossibility of Basing One-Way Permutations on Central Cryptographic Primitives.,2006,19,J. Cryptology,1,db/journals/joc/joc19.html#ChangHL06,https://doi.org/10.1007/s00145-005-0317-1 +Phong Q. Nguyen,Learning a Parallelepiped: Cryptanalysis of GGH and NTRU Signatures.,2009,22,J. Cryptology,2,db/journals/joc/joc22.html#NguyenR09,https://doi.org/10.1007/s00145-008-9031-0 +Amos Fiat,Batch RSA.,1997,10,J. Cryptology,2,db/journals/joc/joc10.html#Fiat97,https://doi.org/10.1007/s001459900021 +Martin Tompa,How to Share a Secret with Cheaters.,1988,1,J. Cryptology,2,db/journals/joc/joc1.html#TompaW88,https://doi.org/10.1007/BF02252871 +Muxiang Zhang,Maximum Correlation Analysis of Nonlinear Combining Functions in Stream Ciphers.,2000,13,J. Cryptology,3,db/journals/joc/joc13.html#Zhang00,https://doi.org/10.1007/s001450010007 +Agustin Dominguez-Oviedo,Fault-Based Attack on Montgomery's Ladder Algorithm.,2011,24,J. Cryptology,2,db/journals/joc/joc24.html#Dominguez-OviedoHA11,https://doi.org/10.1007/s00145-010-9087-5 +Amos Beimel,Protocols for Multiparty Coin Toss with a Dishonest Majority.,2015,28,J. Cryptology,3,db/journals/joc/joc28.html#BeimelOO15,https://doi.org/10.1007/s00145-013-9168-3 +Yvo Desmedt,A New and Improved Paradigm for Hybrid Encryption Secure Against Chosen-Ciphertext Attack.,2010,23,J. Cryptology,1,db/journals/joc/joc23.html#DesmedtGKS10,https://doi.org/10.1007/s00145-009-9051-4 +Mohammad Hajiabadi,Reproducible Circularly Secure Bit Encryption: Applications and Realizations.,2017,30,J. Cryptology,4,db/journals/joc/joc30.html#HajiabadiK17,https://doi.org/10.1007/s00145-016-9246-4 +Minh-Huyen Nguyen,Simpler Session-Key Generation from Short Random Passwords.,2008,21,J. Cryptology,1,db/journals/joc/joc21.html#NguyenV08,https://doi.org/10.1007/s00145-007-9008-4 +Itay Berman,From Non-adaptive to Adaptive Pseudorandom Functions.,2015,28,J. Cryptology,2,db/journals/joc/joc28.html#BermanH15,https://doi.org/10.1007/s00145-013-9169-2 +Mihir Bellare,Subtleties in the Definition of IND-CCA: When and How Should Challenge Decryption Be Disallowed?,2015,28,J. Cryptology,1,db/journals/joc/joc28.html#BellareHK15,https://doi.org/10.1007/s00145-013-9167-4 +Dan Boneh,On the Importance of Eliminating Errors in Cryptographic Computations.,2001,14,J. Cryptology,2,db/journals/joc/joc14.html#BonehDL01,https://doi.org/10.1007/s001450010016 +Jonathan Katz,Round-Optimal Password-Based Authenticated Key Exchange.,2013,26,J. Cryptology,4,db/journals/joc/joc26.html#KatzV13,https://doi.org/10.1007/s00145-012-9133-6 +Renate Scheidler,A Public-Key Cryptosystem Using Purely Cubic Fields.,1998,11,J. Cryptology,2,db/journals/joc/joc11.html#Scheidler98,https://doi.org/10.1007/s001459900038 +Amos Beimel,Secret-Sharing Schemes for Very Dense Graphs.,2016,29,J. Cryptology,2,db/journals/joc/joc29.html#BeimelFM16,https://doi.org/10.1007/s00145-014-9195-8 +Yehuda Lindell,On the Feasibility of Extending Oblivious Transfer.,2018,31,J. Cryptology,3,db/journals/joc/joc31.html#LindellZ18,https://doi.org/10.1007/s00145-017-9269-5 +Kathleen A. S. Quinn,Bounds for Key Distribution Patterns.,1999,12,J. Cryptology,4,db/journals/joc/joc12.html#Quinn99,https://doi.org/10.1007/s001459900054 +Masayuki Abe,Structure-Preserving Signatures and Commitments to Group Elements.,2016,29,J. Cryptology,2,db/journals/joc/joc29.html#AbeFGHO16,https://doi.org/10.1007/s00145-014-9196-7 +Claus-Peter Schnorr,The Black-Box Model for Cryptographic Primitives.,1998,11,J. Cryptology,2,db/journals/joc/joc11.html#SchnorrV98,https://doi.org/10.1007/s001459900039 +Joppe W. Bos,Fast Cryptography in Genus 2.,2016,29,J. Cryptology,1,db/journals/joc/joc29.html#BosCHL16,https://doi.org/10.1007/s00145-014-9188-7 +Mikael Goldmann,Complexity Bounds on General Hard-Core Predicates.,2001,14,J. Cryptology,3,db/journals/joc/joc14.html#GoldmannNR01,https://doi.org/10.1007/s00145-001-0007-6 +Jean-Philippe Aumasson,Quark: A Lightweight Hash.,2013,26,J. Cryptology,2,db/journals/joc/joc26.html#AumassonHMN13,https://doi.org/10.1007/s00145-012-9125-6 +Eiichiro Fujisaki,All-But-Many Encryption.,2018,31,J. Cryptology,1,db/journals/joc/joc31.html#Fujisaki18,https://doi.org/10.1007/s00145-017-9256-x +Christian Cachin,Random Oracles in Constantinople: Practical Asynchronous Byzantine Agreement Using Cryptography.,2005,18,J. Cryptology,3,db/journals/joc/joc18.html#CachinKS05,https://doi.org/10.1007/s00145-005-0318-0 +Yongge Wang,Secure Communication in Multicast Channels: The Answer to Franklin and Wright's Question.,2001,14,J. Cryptology,2,db/journals/joc/joc14.html#WangD01,https://doi.org/10.1007/s00145-001-0002-y +Denis Xavier Charles,Cryptographic Hash Functions from Expander Graphs.,2009,22,J. Cryptology,1,db/journals/joc/joc22.html#CharlesLG09,https://doi.org/10.1007/s00145-007-9002-x +Orr Dunkelman,A Practical-Time Related-Key Attack on the KASUMI Cryptosystem Used in GSM and 3G Telephony.,2014,27,J. Cryptology,4,db/journals/joc/joc27.html#DunkelmanKS14,https://doi.org/10.1007/s00145-013-9154-9 +Eli Biham,Differential Cryptanalysis of DES-like Cryptosystems.,1991,4,J. Cryptology,1,db/journals/joc/joc4.html#BihamS91,https://doi.org/10.1007/BF00630563 +Silvio Micali,Improving the Exact Security of Digital Signature Schemes.,2002,15,J. Cryptology,1,db/journals/joc/joc15.html#MicaliR02,https://doi.org/10.1007/s00145-001-0005-8 +Jin Hong 0001,Erratum to: A Comparison of Cryptanalytic Tradeoff Algorithms.,2014,27,J. Cryptology,1,db/journals/joc/joc27.html#0001M14,https://doi.org/10.1007/s00145-012-9140-7 +Eike Kiltz,Instantiability of RSA-OAEP Under Chosen-Plaintext Attack.,2017,30,J. Cryptology,3,db/journals/joc/joc30.html#KiltzOS17,https://doi.org/10.1007/s00145-016-9238-4 +Michael Luby,A Study of Password Security.,1989,1,J. Cryptology,3,db/journals/joc/joc1.html#LubyR89,https://doi.org/10.1007/BF02252873 +Lars R. Knudsen,Cryptanalysis of MD2.,2010,23,J. Cryptology,1,db/journals/joc/joc23.html#KnudsenMMT10,https://doi.org/10.1007/s00145-009-9054-1 +Marten van Dijk,"FlipIt: The Game of ""Stealthy Takeover"".",2013,26,J. Cryptology,4,db/journals/joc/joc26.html#DijkJOR13,https://doi.org/10.1007/s00145-012-9134-5 +Volker Müller 0001,Fast Multiplication on Elliptic Curves over Small Fields of Characteristic Two.,1998,11,J. Cryptology,4,db/journals/joc/joc11.html#Muller98,https://doi.org/10.1007/s001459900045 +Martin Hell,Breaking the Stream Ciphers F-FCSR-H and F-FCSR-16 in Real Time.,2011,24,J. Cryptology,3,db/journals/joc/joc24.html#HellJ11,https://doi.org/10.1007/s00145-009-9053-2 +Elad Barkan,Instant Ciphertext-Only Cryptanalysis of GSM Encrypted Communication.,2008,21,J. Cryptology,3,db/journals/joc/joc21.html#BarkanBK08,https://doi.org/10.1007/s00145-007-9001-y +Ivan Damgård,Bounded Tamper Resilience: How to Go Beyond the Algebraic Barrier.,2017,30,J. Cryptology,1,db/journals/joc/joc30.html#DamgardFMV17,https://doi.org/10.1007/s00145-015-9218-0 +Michael J. Wiener,The Full Cost of Cryptanalytic Attacks.,2004,17,J. Cryptology,2,db/journals/joc/joc17.html#Wiener04,https://doi.org/10.1007/s00145-003-0213-5 +Roberto Maria Avanzi,The Complexity of Certain Multi-Exponentiation Techniques in Cryptography.,2005,18,J. Cryptology,4,db/journals/joc/joc18.html#Avanzi05,https://doi.org/10.1007/s00145-004-0229-5 +Dan Boneh,Short Signatures Without Random Oracles and the SDH Assumption in Bilinear Groups.,2008,21,J. Cryptology,2,db/journals/joc/joc21.html#BonehB08,https://doi.org/10.1007/s00145-007-9005-7 +Tal Moran,An Optimally Fair Coin Toss.,2016,29,J. Cryptology,3,db/journals/joc/joc29.html#MoranNS16,https://doi.org/10.1007/s00145-015-9199-z +Susan Hohenberger,Securely Obfuscating Re-Encryption.,2011,24,J. Cryptology,4,db/journals/joc/joc24.html#HohenbergerRSV11,https://doi.org/10.1007/s00145-010-9077-7 +Jens Groth,Cryptography in the Multi-string Model.,2014,27,J. Cryptology,3,db/journals/joc/joc27.html#GrothO14,https://doi.org/10.1007/s00145-013-9152-y +Shimon Even,On-Line/Off-Line Digital Signatures.,1996,9,J. Cryptology,1,db/journals/joc/joc9.html#EvenGM96,https://doi.org/10.1007/BF02254791 +Stefan Dziembowski,Optimal Randomizer Efficiency in the Bounded-Storage Model.,2004,17,J. Cryptology,1,db/journals/joc/joc17.html#DziembowskiM04,https://doi.org/10.1007/s00145-003-0309-y +Nenad Dedic,Upper and Lower Bounds on Black-Box Steganography.,2009,22,J. Cryptology,3,db/journals/joc/joc22.html#DedicIRR09,https://doi.org/10.1007/s00145-008-9020-3 +John H. Loxton,A Cubic RSA Code Equivalent to Factorization.,1992,5,J. Cryptology,2,db/journals/joc/joc5.html#LoxtonKBS92,https://doi.org/10.1007/BF00193566 +Marc Girault,On the Fly Authentication and Signature Schemes Based on Groups of Unknown Order.,2006,19,J. Cryptology,4,db/journals/joc/joc19.html#GiraultPS06,https://doi.org/10.1007/s00145-006-0224-0 +Christian Cachin,Linking Information Reconciliation and Privacy Amplification.,1997,10,J. Cryptology,2,db/journals/joc/joc10.html#CachinM97,https://doi.org/10.1007/s001459900023 +Vadim Lyubashevsky,Asymptotically Efficient Lattice-Based Digital Signatures.,2018,31,J. Cryptology,3,db/journals/joc/joc31.html#LyubashevskyM18,https://doi.org/10.1007/s00145-017-9270-z +Rosario Gennaro,Robust and Efficient Sharing of RSA Functions.,2007,20,J. Cryptology,3,db/journals/joc/joc20.html#GennaroRJK07,https://doi.org/10.1007/s00145-007-0201-2 +Daniel Genkin,Acoustic Cryptanalysis.,2017,30,J. Cryptology,2,db/journals/joc/joc30.html#GenkinST17,https://doi.org/10.1007/s00145-015-9224-2 +Elisavet Konstantinou,On the Efficient Generation of Prime-Order Elliptic Curves.,2010,23,J. Cryptology,3,db/journals/joc/joc23.html#KonstantinouKSZ10,https://doi.org/10.1007/s00145-009-9037-2 +Carlisle M. Adams,The Structured Design of Cryptographically Good S-Boxes.,1990,3,J. Cryptology,1,db/journals/joc/joc3.html#AdamsT90,https://doi.org/10.1007/BF00203967 +Martín Abadi,Reconciling Two Views of Cryptography (The Computational Soundness of Formal Encryption).,2007,20,J. Cryptology,3,db/journals/joc/joc20.html#AbadiR07,https://doi.org/10.1007/s00145-007-0203-0 +Hossein Ghodosi,Analysis of an Unconditionally Secure Distributed Oblivious Transfer.,2013,26,J. Cryptology,1,db/journals/joc/joc26.html#Ghodosi13,https://doi.org/10.1007/s00145-011-9113-2 +Wen-Ai Jackson,Mutually Trusted Authority-Free Secret Sharing Schemes.,1997,10,J. Cryptology,4,db/journals/joc/joc10.html#JacksonMO97,https://doi.org/10.1007/s001459900031 +Sean Murphy,An Analysis of SAFER.,1998,11,J. Cryptology,4,db/journals/joc/joc11.html#Murphy98,https://doi.org/10.1007/s001459900046 +Benny Applebaum,Minimizing Locality of One-Way Functions via Semi-private Randomized Encodings.,2018,31,J. Cryptology,1,db/journals/joc/joc31.html#ApplebaumIK18,https://doi.org/10.1007/s00145-016-9244-6 +Ron Berman,Provable Unlinkability Against Traffic Analysis with Low Message Overhead.,2015,28,J. Cryptology,3,db/journals/joc/joc28.html#BermanFGKKLT15,https://doi.org/10.1007/s00145-013-9171-8 +Eli Biham,An Improvement of Davies' Attack on DES.,1997,10,J. Cryptology,3,db/journals/joc/joc10.html#BihamB97,https://doi.org/10.1007/s001459900027 +Oriol Farràs,Ideal Multipartite Secret Sharing Schemes.,2012,25,J. Cryptology,3,db/journals/joc/joc25.html#FarrasMP12,https://doi.org/10.1007/s00145-011-9101-6 +M. Ito,Multiple Assignment Scheme for Sharing Secret.,1993,6,J. Cryptology,1,db/journals/joc/joc6.html#ItoSN93,https://doi.org/10.1007/BF02620229 +Yenjo Han,Pseudorandom Generators and the Frequency of Simplicity.,1996,9,J. Cryptology,4,db/journals/joc/joc9.html#HanH96,https://doi.org/10.1007/BF00189263 +Joan Boyar,A Discrete Logarithm Implementation of Perfect Zero-Knowledge Blobs.,1990,2,J. Cryptology,2,db/journals/joc/joc2.html#BoyarKK90,https://doi.org/10.1007/BF00204448 +Carmit Hazay,Leakage-Resilient Cryptography from Minimal Assumptions.,2016,29,J. Cryptology,3,db/journals/joc/joc29.html#HazayLWW16,https://doi.org/10.1007/s00145-015-9200-x +Douglas R. Stinson,A Construction for Authentication/Secrecy Codes from Certain Combinatorial Designs.,1988,1,J. Cryptology,2,db/journals/joc/joc1.html#Stinson88a,https://doi.org/10.1007/BF02351720 +Douglas R. Stinson,An Infinite Class of Counterexamples to a Conjecture Concerning Nonlinear Resilient Functions.,1995,8,J. Cryptology,3,db/journals/joc/joc8.html#StinsonM95,https://doi.org/10.1007/BF00202271 +Andrew Klapper,On the Existence of Secure Keystream Generators.,2001,14,J. Cryptology,1,db/journals/joc/joc14.html#Klapper01,https://doi.org/10.1007/s001450010014 +Carlo Blundo,On the Contrast in Visual Cryptography Schemes.,1999,12,J. Cryptology,4,db/journals/joc/joc12.html#BlundoSS99,https://doi.org/10.1007/s001459900057 +Mihir Bellare,Certifying Permutations: Noninteractive Zero-Knowledge Based on Any Trapdoor Permutation.,1996,9,J. Cryptology,3,db/journals/joc/joc9.html#BellareY96, +Arjen K. Lenstra,Selecting Cryptographic Key Sizes.,2001,14,J. Cryptology,4,db/journals/joc/joc14.html#LenstraV01,https://doi.org/10.1007/s00145-001-0009-4 +Jonathan Katz,Which Languages Have 4-Round Zero-Knowledge Proofs?,2012,25,J. Cryptology,1,db/journals/joc/joc25.html#Katz12,https://doi.org/10.1007/s00145-010-9081-y +Don Coppersmith,Weakness in Quaternion Signatures.,2001,14,J. Cryptology,2,db/journals/joc/joc14.html#Coppersmith01,https://doi.org/10.1007/s001450010006 +Claus-Peter Schnorr,Efficient Signature Generation by Smart Cards.,1991,4,J. Cryptology,3,db/journals/joc/joc4.html#Schnorr91,https://doi.org/10.1007/BF00196725 +Jean-Sébastien Coron,Deterministic Polynomial-Time Equivalence of Computing the RSA Secret Key and Factoring.,2007,20,J. Cryptology,1,db/journals/joc/joc20.html#CoronM07,https://doi.org/10.1007/s00145-006-0433-6 +Jovan Dj. Golic,Correlation Properties of a General Binary Combiner with Memory.,1996,9,J. Cryptology,2,db/journals/joc/joc9.html#Golic96,https://doi.org/10.1007/BF00190805 +Thomas Peyrin,Collision Attack on Grindahl.,2015,28,J. Cryptology,4,db/journals/joc/joc28.html#Peyrin15,https://doi.org/10.1007/s00145-014-9186-9 +Li Gong,A Matrix Key-Distribution Scheme.,1990,2,J. Cryptology,1,db/journals/joc/joc2.html#GongW90,https://doi.org/10.1007/BF02252869 +Burton S. Kaliski Jr.,Is the Data Encryption Standard a Group? (Results of Cycling Experiments on DES).,1988,1,J. Cryptology,1,db/journals/joc/joc1.html#KaliskiRS88,https://doi.org/10.1007/BF00206323 +Paulo S. L. M. Barreto,Efficient Implementation of Pairing-Based Cryptosystems.,2004,17,J. Cryptology,4,db/journals/joc/joc17.html#BarretoLS04,https://doi.org/10.1007/s00145-004-0311-z +Abhranil Maiti,Improved Ring Oscillator PUF: An FPGA-friendly Secure Primitive.,2011,24,J. Cryptology,2,db/journals/joc/joc24.html#MaitiS11,https://doi.org/10.1007/s00145-010-9088-4 +Yehuda Lindell,A Proof of Security of Yao's Protocol for Two-Party Computation.,2009,22,J. Cryptology,2,db/journals/joc/joc22.html#LindellP09,https://doi.org/10.1007/s00145-008-9036-8 +Alexander A. Moldovyan,A Cipher Based on Data-Dependent Permutations.,2002,15,J. Cryptology,1,db/journals/joc/joc15.html#MoldovyanM02,https://doi.org/10.1007/s00145-001-0012-9 +Michael Walker,Information-Theoretic Bounds for Authentication Schemes.,1990,2,J. Cryptology,3,db/journals/joc/joc2.html#Walker90,https://doi.org/10.1007/BF00190800 +Yair Amir,Authenticated Adversarial Routing.,2014,27,J. Cryptology,4,db/journals/joc/joc27.html#AmirBO14,https://doi.org/10.1007/s00145-013-9157-6 +Simon R. Blackburn,The Cryptanalysis of a Public-Key Implementation of Finite Group Mappings.,1995,8,J. Cryptology,3,db/journals/joc/joc8.html#BlackburnMS95,https://doi.org/10.1007/BF00202270 +Omer Barkol,On d-Multiplicative Secret Sharing.,2010,23,J. Cryptology,4,db/journals/joc/joc23.html#BarkolIW10,https://doi.org/10.1007/s00145-010-9056-z +S. Dov Gordon,Partial Fairness in Secure Two-Party Computation.,2012,25,J. Cryptology,1,db/journals/joc/joc25.html#GordonK12,https://doi.org/10.1007/s00145-010-9079-5 +Donald Beaver,Locally Random Reductions: Improvements and Applications.,1997,10,J. Cryptology,1,db/journals/joc/joc10.html#BeaverFKR97,https://doi.org/10.1007/s001459900017 +Itai Dinur,Improved Practical Attacks on Round-Reduced Keccak.,2014,27,J. Cryptology,2,db/journals/joc/joc27.html#DinurDS14,https://doi.org/10.1007/s00145-012-9142-5 +Philippe Godlewski,Key-Minimal Crytosystems for Unconditional Secrecy.,1990,3,J. Cryptology,1,db/journals/joc/joc3.html#GodlewskiM90,https://doi.org/10.1007/BF00203966 +Dingyi Pei,Information-Theoretic Bounds for Authentication Codes and Block Designs.,1995,8,J. Cryptology,4,db/journals/joc/joc8.html#Pei95,https://doi.org/10.1007/BF00191354 +Marijke De Soete,New Bounds and Constructions for Authentication/Secrecy Codes with Splitting.,1991,3,J. Cryptology,3,db/journals/joc/joc3.html#Soete91,https://doi.org/10.1007/BF00196910 +Sven Schäge,Tight Security for Signature Schemes Without Random Oracles.,2015,28,J. Cryptology,3,db/journals/joc/joc28.html#Schage15,https://doi.org/10.1007/s00145-013-9173-6 +Paul Stankovski,An Efficient State Recovery Attack on the X-FCSR Family of Stream Ciphers.,2014,27,J. Cryptology,1,db/journals/joc/joc27.html#StankovskiHJ14,https://doi.org/10.1007/s00145-012-9130-9 +Eli Biham,A Proof of the Security of Quantum Key Distribution.,2006,19,J. Cryptology,4,db/journals/joc/joc19.html#BihamBBMR06,https://doi.org/10.1007/s00145-005-0011-3 +Fabrice Benhamouda,Efficient Cryptosystems From 2k-th Power Residue Symbols.,2017,30,J. Cryptology,2,db/journals/joc/joc30.html#BenhamoudaHJL17,https://doi.org/10.1007/s00145-016-9229-5 +Ueli M. Maurer,Conditionally-Perfect Secrecy and a Provably-Secure Randomized Cipher.,1992,5,J. Cryptology,1,db/journals/joc/joc5.html#Maurer92,https://doi.org/10.1007/BF00191321 +Oded Goldreich 0001,How to Construct Constant-Round Zero-Knowledge Proof Systems for NP.,1996,9,J. Cryptology,3,db/journals/joc/joc9.html#GoldreichK96, +J. Pastor,CRYPTOPOST - A Cryptographic Application to Mail Processing.,1991,3,J. Cryptology,2,db/journals/joc/joc3.html#Pastor91,https://doi.org/10.1007/BF00196793 +Boaz Tsaban,Theoretical Cryptanalysis of the Klimov-Shamir Number Generator TF-1.,2007,20,J. Cryptology,3,db/journals/joc/joc20.html#Tsaban07,https://doi.org/10.1007/s00145-007-0564-4 +Wim Aerts,A Practical Attack on KeeLoq.,2012,25,J. Cryptology,1,db/journals/joc/joc25.html#AertsBMMDIKPVV12,https://doi.org/10.1007/s00145-010-9091-9 +Eli Biham,Cryptanalysis of SHA-0 and Reduced SHA-1.,2015,28,J. Cryptology,1,db/journals/joc/joc28.html#BihamCJ15,https://doi.org/10.1007/s00145-014-9179-8 +Craig Gentry,Using Fully Homomorphic Hybrid Encryption to Minimize Non-interative Zero-Knowledge Proofs.,2015,28,J. Cryptology,4,db/journals/joc/joc28.html#GentryGIPSS15,https://doi.org/10.1007/s00145-014-9184-y +Lorenz Minder,The Extended k-tree Algorithm.,2012,25,J. Cryptology,2,db/journals/joc/joc25.html#MinderS12,https://doi.org/10.1007/s00145-011-9097-y +Carmit Hazay,Efficient Protocols for Set Intersection and Pattern Matching with Security Against Malicious and Covert Adversaries.,2010,23,J. Cryptology,3,db/journals/joc/joc23.html#HazayL10,https://doi.org/10.1007/s00145-008-9034-x +Pierre Beauchemin,A Generalization of Hellman's Extension to Shannon's Approach to Cryptography.,1988,1,J. Cryptology,2,db/journals/joc/joc1.html#BeaucheminB88,https://doi.org/10.1007/BF02252870 +Nir Bitansky,The Hunting of the SNARK.,2017,30,J. Cryptology,4,db/journals/joc/joc30.html#BitanskyCCGLRT17,https://doi.org/10.1007/s00145-016-9241-9 +Joe Kilian,How to Protect DES Against Exhaustive Key Search (an Analysis of DESX).,2001,14,J. Cryptology,1,db/journals/joc/joc14.html#KilianR01,https://doi.org/10.1007/s001450010015 +Yehuda Lindell,A Simpler Construction of CCA2-Secure Public-KeyEncryption under General Assumptions.,2006,19,J. Cryptology,3,db/journals/joc/joc19.html#Lindell06,https://doi.org/10.1007/s00145-005-0345-x +Yixian Yang,Further Enumerating Boolean Functions of Cryptographic Significance.,1995,8,J. Cryptology,3,db/journals/joc/joc8.html#YangG95,https://doi.org/10.1007/BF00202268 +Matthias Fitzi,Minimal Complete Primitives for Secure Multi-Party Computation.,2005,18,J. Cryptology,1,db/journals/joc/joc18.html#FitziGMO05,https://doi.org/10.1007/s00145-004-0150-y +Eli Biham,Cryptanalysis of Multiple Modes of Operation.,1998,11,J. Cryptology,1,db/journals/joc/joc11.html#Biham98,https://doi.org/10.1007/s001459900034 +Jae Hyun Ahn,Computing on Authenticated Data.,2015,28,J. Cryptology,2,db/journals/joc/joc28.html#AhnBCHSW15,https://doi.org/10.1007/s00145-014-9182-0 +Jovan Dj. Golic,Fast Correlation Attacks on the Summation Generator.,2000,13,J. Cryptology,2,db/journals/joc/joc13.html#GolicSD00,https://doi.org/10.1007/s001459910009 +Dingfeng Ye,Decomposing Attacks on Asymmetric Cryptography Based on Mapping Compositions.,2001,14,J. Cryptology,2,db/journals/joc/joc14.html#YeDL01,https://doi.org/10.1007/s00145-001-0001-z +Yehuda Lindell,Completeness for Symmetric Two-Party Functionalities: Revisited.,2018,31,J. Cryptology,3,db/journals/joc/joc31.html#LindellOZ18,https://doi.org/10.1007/s00145-017-9267-7 +Sean Murphy,A Weak Cipher that Generates the Symmetric Group.,1994,7,J. Cryptology,1,db/journals/joc/joc7.html#MurphyPW94,https://doi.org/10.1007/BF00195210 +Qi Cheng,Primality Proving via One Round in ECPP and One Iteration in AKS.,2007,20,J. Cryptology,3,db/journals/joc/joc20.html#Cheng07,https://doi.org/10.1007/s00145-006-0406-9 +Joan Boyar,Inferring Sequences Produced by a Linear Congruential Generator Missing Low-Order Bits.,1989,1,J. Cryptology,3,db/journals/joc/joc1.html#Boyar89,https://doi.org/10.1007/BF02252875 +Eike Kiltz,Efficient Authentication from Hard Learning Problems.,2017,30,J. Cryptology,4,db/journals/joc/joc30.html#KiltzPVCJ17,https://doi.org/10.1007/s00145-016-9247-3 +Rahul Jain 0001,Resource Requirements of Private Quantum Channels and Consequences for Oblivious Remote State Preparation.,2012,25,J. Cryptology,1,db/journals/joc/joc25.html#Jain12,https://doi.org/10.1007/s00145-010-9076-8 +Don Coppersmith,Cryptanalysis of ISO/IEC 9796-1.,2008,21,J. Cryptology,1,db/journals/joc/joc21.html#CoppersmithCGHJNS08,https://doi.org/10.1007/s00145-007-9007-5 +Elette Boyle,Fully Leakage-Resilient Signatures.,2013,26,J. Cryptology,3,db/journals/joc/joc26.html#BoyleSW13,https://doi.org/10.1007/s00145-012-9136-3 +Daniele Micciancio,The RSA Group is Pseudo-Free.,2010,23,J. Cryptology,2,db/journals/joc/joc23.html#Micciancio10,https://doi.org/10.1007/s00145-009-9042-5 +Carmit Hazay,Oblivious Polynomial Evaluation and Secure Set-Intersection from Algebraic PRFs.,2018,31,J. Cryptology,2,db/journals/joc/joc31.html#Hazay18,https://doi.org/10.1007/s00145-017-9263-y +Mihir Bellare,The One-More-RSA-Inversion Problems and the Security of Chaum's Blind Signature Scheme.,2003,16,J. Cryptology,3,db/journals/joc/joc16.html#BellareNPS03,https://doi.org/10.1007/s00145-002-0120-1 +Ueli M. Maurer,Local Randomness in Pseudorandom Sequences.,1991,4,J. Cryptology,2,db/journals/joc/joc4.html#MaurerM91,https://doi.org/10.1007/BF00196773 +Jean Monnerat,Short Undeniable Signatures Based on Group Homomorphisms.,2011,24,J. Cryptology,3,db/journals/joc/joc24.html#MonneratV11,https://doi.org/10.1007/s00145-010-9070-1 +Yehuda Lindell,Secure Two-Party Computation via Cut-and-Choose Oblivious Transfer.,2012,25,J. Cryptology,4,db/journals/joc/joc25.html#LindellP12,https://doi.org/10.1007/s00145-011-9107-0 +Jérôme Renault,Probabilistic Reliability and Privacy of Communication Using Multicast in General Neighbor Networks.,2008,21,J. Cryptology,2,db/journals/joc/joc21.html#RenaultT08,https://doi.org/10.1007/s00145-007-9018-2 +Joan Boyar,Practical Zero-Knowledge Proofs: Giving Hints and Using Deficiencies.,1991,4,J. Cryptology,3,db/journals/joc/joc4.html#BoyarFL91,https://doi.org/10.1007/BF00196727 +Rosario Gennaro,Secure Distributed Key Generation for Discrete-Log Based Cryptosystems.,2007,20,J. Cryptology,1,db/journals/joc/joc20.html#GennaroJKR07,https://doi.org/10.1007/s00145-006-0347-3 +David Freeman 0001,A Taxonomy of Pairing-Friendly Elliptic Curves.,2010,23,J. Cryptology,2,db/journals/joc/joc23.html#FreemanST10,https://doi.org/10.1007/s00145-009-9048-z +Nir Bitansky,On Strong Simulation and Composable Point Obfuscation.,2014,27,J. Cryptology,2,db/journals/joc/joc27.html#BitanskyC14,https://doi.org/10.1007/s00145-013-9146-9 +Carlo Blundo,Analysis and Design of Distributed Key Distribution Centers.,2005,18,J. Cryptology,4,db/journals/joc/joc18.html#BlundoD05,https://doi.org/10.1007/s00145-005-0407-0 +Sune K. Jakobsen,Information Theoretical Cryptogenography.,2017,30,J. Cryptology,4,db/journals/joc/joc30.html#Jakobsen17,https://doi.org/10.1007/s00145-016-9242-8 +Shahin Tajik,Photonic Side-Channel Analysis of Arbiter PUFs.,2017,30,J. Cryptology,2,db/journals/joc/joc30.html#TajikDFDNHSBH17,https://doi.org/10.1007/s00145-016-9228-6 +Jonathan Katz,Handling Expected Polynomial-Time Strategies in Simulation-Based Security Proofs.,2008,21,J. Cryptology,3,db/journals/joc/joc21.html#KatzL08,https://doi.org/10.1007/s00145-007-9004-8 +Howard M. Heys,Substitution-Permutation Networks Resistant to Differential and Linear Cryptanalysis.,1996,9,J. Cryptology,1,db/journals/joc/joc9.html#HeysT96,https://doi.org/10.1007/BF02254789 +Dennis Hofheinz,Possibility and Impossibility Results for Selective Decommitments.,2011,24,J. Cryptology,3,db/journals/joc/joc24.html#Hofheinz11,https://doi.org/10.1007/s00145-010-9066-x +Neal Koblitz,"Another Look at ""Provable Security"".",2007,20,J. Cryptology,1,db/journals/joc/joc20.html#KoblitzM07,https://doi.org/10.1007/s00145-005-0432-z +Benjamin Smith 0003,The and#8474*-curve Construction for Endomorphism-Accelerated Elliptic Curves.,2016,29,J. Cryptology,4,db/journals/joc/joc29.html#Smith16,https://doi.org/10.1007/s00145-015-9210-8 +Hans Dobbertin,Cryptanalysis of MD4.,1998,11,J. Cryptology,4,db/journals/joc/joc11.html#Dobbertin98,https://doi.org/10.1007/s001459900047 +Rosario Gennaro,Automata Evaluation and Text Search Protocols with Simulation-Based Security.,2016,29,J. Cryptology,2,db/journals/joc/joc29.html#GennaroHS16,https://doi.org/10.1007/s00145-014-9193-x +Yehuda Lindell,General Composition and Universal Composability in Secure Multiparty Computation.,2009,22,J. Cryptology,3,db/journals/joc/joc22.html#Lindell09,https://doi.org/10.1007/s00145-008-9021-2 +Jean Georgiades,Some Remarks on the Security of the Identification Scheme Based on Permuted Kernels.,1992,5,J. Cryptology,2,db/journals/joc/joc5.html#Georgiades92,https://doi.org/10.1007/BF00193565 +Yael Tauman Kalai,Concurrent Composition of Secure Protocols in the Timing Model.,2007,20,J. Cryptology,4,db/journals/joc/joc20.html#KalaiLP07,https://doi.org/10.1007/s00145-007-0567-1 +Jonathan Katz,Characterization of Security Notions for Probabilistic Private-Key Encryption.,2006,19,J. Cryptology,1,db/journals/joc/joc19.html#KatzY06,https://doi.org/10.1007/s00145-005-0310-8 +Moni Naor,On the Construction of Pseudorandom Permutations: Luby-Rackoff Revisited.,1999,12,J. Cryptology,1,db/journals/joc/joc12.html#NaorR99,https://doi.org/10.1007/PL00003817 +Benny Chor,On the Structure of the Privacy Hierarchy.,1994,7,J. Cryptology,1,db/journals/joc/joc7.html#ChorGK94,https://doi.org/10.1007/BF00195209 +Benny Applebaum,Cryptography with Constant Input Locality.,2009,22,J. Cryptology,4,db/journals/joc/joc22.html#ApplebaumIK09,https://doi.org/10.1007/s00145-009-9039-0 +James Birkett,Security Models and Proof Strategies for Plaintext-Aware Encryption.,2014,27,J. Cryptology,1,db/journals/joc/joc27.html#BirkettD14,https://doi.org/10.1007/s00145-012-9141-6 +Carmit Hazay,Computationally Secure Pattern Matching in the Presence of Malicious Adversaries.,2014,27,J. Cryptology,2,db/journals/joc/joc27.html#HazayT14,https://doi.org/10.1007/s00145-013-9147-8 +Ishai Ben-Aroya,Differential Cryptanalysis of Lucifer.,1996,9,J. Cryptology,1,db/journals/joc/joc9.html#Ben-AroyaB96,https://doi.org/10.1007/BF02254790 +Iftach Haitner,A New Interactive Hashing Theorem.,2014,27,J. Cryptology,1,db/journals/joc/joc27.html#HaitnerR14,https://doi.org/10.1007/s00145-012-9139-0 +Seung Geol Choi,A Black-Box Construction of Non-malleable Encryption from Semantically Secure Encryption.,2018,31,J. Cryptology,1,db/journals/joc/joc31.html#ChoiDMW18,https://doi.org/10.1007/s00145-017-9254-z +Oded Goldreich 0001,Session-Key Generation Using Human Passwords Only.,2006,19,J. Cryptology,3,db/journals/joc/joc19.html#GoldreichL06,https://doi.org/10.1007/s00145-006-0233-z +Stuart Haber,How to Time-Stamp a Digital Document.,1991,3,J. Cryptology,2,db/journals/joc/joc3.html#HaberS91,https://doi.org/10.1007/BF00196791 +Wolfgang Lempken,A Public Key Cryptosystem Based on Non-abelian Finite Groups.,2009,22,J. Cryptology,1,db/journals/joc/joc22.html#LempkenTMW09,https://doi.org/10.1007/s00145-008-9033-y +Lars R. Knudsen,Attacks on Fast Double Block Length Hash Functions.,1998,11,J. Cryptology,1,db/journals/joc/joc11.html#KnudsenLP98,https://doi.org/10.1007/s001459900035 +Céline Blondeau,Differential-Linear Cryptanalysis Revisited.,2017,30,J. Cryptology,3,db/journals/joc/joc30.html#BlondeauLN17,https://doi.org/10.1007/s00145-016-9237-5 +Gordon Procter,On Weak Keys and Forgery Attacks Against Polynomial-Based MAC Schemes.,2015,28,J. Cryptology,4,db/journals/joc/joc28.html#ProcterC15,https://doi.org/10.1007/s00145-014-9178-9 +Andreas J. Winter 0002,Weak Locking Capacity of Quantum Channels Can be Much Larger Than Private Capacity.,2017,30,J. Cryptology,1,db/journals/joc/joc30.html#Winter17,https://doi.org/10.1007/s00145-015-9215-3 +Ran Cohen,Characterization of Secure Multiparty Computation Without Broadcast.,2018,31,J. Cryptology,2,db/journals/joc/joc31.html#CohenHOR18,https://doi.org/10.1007/s00145-017-9264-x +Sebastiaan Indesteege,Practical Collisions for EnRUPT.,2011,24,J. Cryptology,1,db/journals/joc/joc24.html#IndesteegeP11,https://doi.org/10.1007/s00145-010-9058-x +Amos Beimel,Reducing the Servers' Computation in Private Information Retrieval: PIR with Preprocessing.,2004,17,J. Cryptology,2,db/journals/joc/joc17.html#BeimelIM04,https://doi.org/10.1007/s00145-004-0134-y +Carmit Hazay,Efficient Set Operations in the Presence of Malicious Adversaries.,2012,25,J. Cryptology,3,db/journals/joc/joc25.html#HazayN12,https://doi.org/10.1007/s00145-011-9098-x +Ran Canetti,A Forward-Secure Public-Key Encryption Scheme.,2007,20,J. Cryptology,3,db/journals/joc/joc20.html#CanettiHK07,https://doi.org/10.1007/s00145-006-0442-5 +Yehuda Lindell,Lower Bounds and Impossibility Results for Concurrent Self Composition.,2008,21,J. Cryptology,2,db/journals/joc/joc21.html#Lindell08,https://doi.org/10.1007/s00145-007-9015-5 +Benny Applebaum,From Private Simultaneous Messages to Zero-Information Arthur-Merlin Protocols and Back.,2017,30,J. Cryptology,4,db/journals/joc/joc30.html#ApplebaumR17,https://doi.org/10.1007/s00145-016-9239-3 +Phillip Rogaway,Bucket Hashing and Its Application to Fast Message Authentication.,1999,12,J. Cryptology,2,db/journals/joc/joc12.html#Rogaway99,https://doi.org/10.1007/PL00003822 +Michael J. Freedman,Efficient Set Intersection with Simulation-Based Security.,2016,29,J. Cryptology,1,db/journals/joc/joc29.html#FreedmanHNP16,https://doi.org/10.1007/s00145-014-9190-0 +Cynthia Dwork,An Efficient Existentially Unforgeable Signature Scheme and Its Applications.,1998,11,J. Cryptology,3,db/journals/joc/joc11.html#DworkN98,https://doi.org/10.1007/s001459900043 +Hans Dobbertin,RIPEMD with Two-Round Compress Function is Not Collision-Free.,1997,10,J. Cryptology,1,db/journals/joc/joc10.html#Dobbertin97,https://doi.org/10.1007/s001459900019 +Sean Murphy,The Cryptanalysis of FEAL-4 with 20 Chosen Plaintexts.,1990,2,J. Cryptology,3,db/journals/joc/joc2.html#Murphy90,https://doi.org/10.1007/BF00190801 +Tal Moran,Non-interactive Timestamping in the Bounded-Storage Model.,2009,22,J. Cryptology,2,db/journals/joc/joc22.html#MoranST09,https://doi.org/10.1007/s00145-008-9035-9 +Lars R. Knudsen,The Security of Feistel Ciphers with Six Rounds or Less.,2002,15,J. Cryptology,3,db/journals/joc/joc15.html#Knudsen02,https://doi.org/10.1007/s00145-002-9839-y +Roger Fischlin,Stronger Security Proofs for RSA and Rabin Bits.,2000,13,J. Cryptology,2,db/journals/joc/joc13.html#FischlinS00,https://doi.org/10.1007/s001459910008 +Daniel J. Bernstein,How to Stretch Random Functions: The Security of Protected Counter Sums.,1999,12,J. Cryptology,3,db/journals/joc/joc12.html#Bernstein99,https://doi.org/10.1007/s001459900051 +Rosario Gennaro,An Improved Pseudo-Random Generator Based on the Discrete Logarithm Problem.,2005,18,J. Cryptology,2,db/journals/joc/joc18.html#Gennaro05,https://doi.org/10.1007/s00145-004-0215-y +Dennis Hofheinz,Practical Chosen Ciphertext Secure Encryption from Factoring.,2013,26,J. Cryptology,1,db/journals/joc/joc26.html#HofheinzKS13,https://doi.org/10.1007/s00145-011-9115-0 +Daniel V. Bailey,Efficient Arithmetic in Finite Field Extensions with Application in Elliptic Curve Cryptography.,2001,14,J. Cryptology,3,db/journals/joc/joc14.html#BaileyP01,https://doi.org/10.1007/s001450010012 +Nigel P. Smart,The Discrete Logarithm Problem on Elliptic Curves of Trace One.,1999,12,J. Cryptology,3,db/journals/joc/joc12.html#Smart99a,https://doi.org/10.1007/s001459900052 +Douglas R. Stinson,Some Constructions and Bounds for Authentication Codes.,1988,1,J. Cryptology,1,db/journals/joc/joc1.html#Stinson88,https://doi.org/10.1007/BF00206324 +Yehuda Lindell,Privacy Preserving Data Mining.,2002,15,J. Cryptology,3,db/journals/joc/joc15.html#LindellP02,https://doi.org/10.1007/s00145-001-0019-2 +Christina Boura,Making the Impossible Possible.,2018,31,J. Cryptology,1,db/journals/joc/joc31.html#BouraLNS18,https://doi.org/10.1007/s00145-016-9251-7 +Antoine Joux,Elliptic Curve Discrete Logarithm Problem over Small Degree Extension Fields - Application to the Static Diffie-Hellman Problem on $E(\mathbb{F}_{q^{5}})$.,2013,26,J. Cryptology,1,db/journals/joc/joc26.html#JouxV13,https://doi.org/10.1007/s00145-011-9116-z +Toshiya Itoh,A Language-Dependent Cryptographic Primitive.,1997,10,J. Cryptology,1,db/journals/joc/joc10.html#ItohOS97,https://doi.org/10.1007/s001459900018 +Martín Abadi,Secure Circuit Evaluation.,1990,2,J. Cryptology,1,db/journals/joc/joc2.html#AbadiF90,https://doi.org/10.1007/BF02252866 +Tom Roeder,Multi-Verifier Signatures.,2012,25,J. Cryptology,2,db/journals/joc/joc25.html#RoederPS12,https://doi.org/10.1007/s00145-010-9096-4 +Dan Boneh,Efficient Selective Identity-Based Encryption Without Random Oracles.,2011,24,J. Cryptology,4,db/journals/joc/joc24.html#BonehB11,https://doi.org/10.1007/s00145-010-9078-6 +Anne Canteaut,Stream Ciphers: A Practical Solution for Efficient Homomorphic-Ciphertext Compression.,2018,31,J. Cryptology,3,db/journals/joc/joc31.html#CanteautCFLNPS18,https://doi.org/10.1007/s00145-017-9273-9 +Boaz Barak,Merkle's Key Agreement Protocol is Optimal: An O(n2) Attack on Any Key Agreement from Random Oracles.,2017,30,J. Cryptology,3,db/journals/joc/joc30.html#BarakM17,https://doi.org/10.1007/s00145-016-9233-9 +Brice Minaud,Key-Recovery Attacks on ASASA.,2018,31,J. Cryptology,3,db/journals/joc/joc31.html#MinaudDFK18,https://doi.org/10.1007/s00145-017-9272-x +Victor Shoup,Securing Threshold Cryptosystems against Chosen Ciphertext Attack.,2002,15,J. Cryptology,2,db/journals/joc/joc15.html#ShoupG02,https://doi.org/10.1007/s00145-001-0020-9 +Jean-Sébastien Coron,A Note on the Bivariate Coppersmith Theorem.,2013,26,J. Cryptology,2,db/journals/joc/joc26.html#CoronKT13,https://doi.org/10.1007/s00145-012-9121-x +Dan Boneh,Short Signatures from the Weil Pairing.,2004,17,J. Cryptology,4,db/journals/joc/joc17.html#BonehLS04,https://doi.org/10.1007/s00145-004-0314-9 +Takanori Isobe,A Single-Key Attack on the Full GOST Block Cipher.,2013,26,J. Cryptology,1,db/journals/joc/joc26.html#Isobe13,https://doi.org/10.1007/s00145-012-9118-5 +Mathieu Baudet,On the Security of Oscillator-Based Random Number Generators.,2011,24,J. Cryptology,2,db/journals/joc/joc24.html#BaudetLMT11,https://doi.org/10.1007/s00145-010-9089-3 +Franck Landelle,Cryptanalysis of Full RIPEMD-128.,2016,29,J. Cryptology,4,db/journals/joc/joc29.html#LandelleP16,https://doi.org/10.1007/s00145-015-9213-5 +Juan A. Garay,Strengthening Zero-Knowledge Protocols Using Signatures.,2006,19,J. Cryptology,2,db/journals/joc/joc19.html#GarayMY06,https://doi.org/10.1007/s00145-005-0307-3 +Shai Halevi,Smooth Projective Hashing and Two-Message Oblivious Transfer.,2012,25,J. Cryptology,1,db/journals/joc/joc25.html#HaleviK12,https://doi.org/10.1007/s00145-010-9092-8 +Steven Myers,Efficient Amplification of the Security of Weak Pseudo-Random Function Generators.,2003,16,J. Cryptology,1,db/journals/joc/joc16.html#Myers03,https://doi.org/10.1007/s00145-002-0007-1 +Ivan Damgård,Practical and Provably Secure Release of a Secret and Exchange of Signatures.,1995,8,J. Cryptology,4,db/journals/joc/joc8.html#Damgard95,https://doi.org/10.1007/BF00191356 +Andrew Chi-Chih Yao,Concurrent Knowledge Extraction in Public-Key Models.,2016,29,J. Cryptology,1,db/journals/joc/joc29.html#YaoYZ16,https://doi.org/10.1007/s00145-014-9191-z +Antoine Joux,Separating Decision Diffie-Hellman from Computational Diffie-Hellman in Cryptographic Groups.,2003,16,J. Cryptology,4,db/journals/joc/joc16.html#JouxN03,https://doi.org/10.1007/s00145-003-0052-4 +Zvika Brakerski,Better Security for Deterministic Public-Key Encryption: The Auxiliary-Input Setting.,2014,27,J. Cryptology,2,db/journals/joc/joc27.html#BrakerskiS14,https://doi.org/10.1007/s00145-012-9143-4 +Jan Camenisch,Batch Verification of Short Signatures.,2012,25,J. Cryptology,4,db/journals/joc/joc25.html#CamenischHP12,https://doi.org/10.1007/s00145-011-9108-z +Nishanth Chandran,Almost-Everywhere Secure Computation with Edge Corruptions.,2015,28,J. Cryptology,4,db/journals/joc/joc28.html#ChandranGO15,https://doi.org/10.1007/s00145-013-9176-3 +Hugo Zbinden,Practical Aspects of Quantum Cryptographic Key Distribution.,2000,13,J. Cryptology,2,db/journals/joc/joc13.html#ZbindenGHMT00,https://doi.org/10.1007/s001459910007 +Claude Crépeau,Guest Editor's Introduction.,1996,9,J. Cryptology,3,db/journals/joc/joc9.html#Crepeau96, +Benny Chor,Secret Sharing Over Infinite Domains.,1993,6,J. Cryptology,2,db/journals/joc/joc6.html#ChorK93,https://doi.org/10.1007/BF02620136 +Manoj Prabhakaran,Reconciling Non-malleability with Homomorphic Encryption.,2017,30,J. Cryptology,3,db/journals/joc/joc30.html#PrabhakaranR17,https://doi.org/10.1007/s00145-016-9231-y +Hendrik W. Lenstra Jr.,Lattices with Symmetry.,2017,30,J. Cryptology,3,db/journals/joc/joc30.html#LenstraS17,https://doi.org/10.1007/s00145-016-9235-7 +Moni Naor,Constructing Pseudo-Random Permutations with a Prescribed Structure.,2002,15,J. Cryptology,2,db/journals/joc/joc15.html#NaorR02,https://doi.org/10.1007/s00145-001-0008-5 +Dario Catalano,Practical Homomorphic Message Authenticators for Arithmetic Circuits.,2018,31,J. Cryptology,1,db/journals/joc/joc31.html#CatalanoF18,https://doi.org/10.1007/s00145-016-9249-1 +Melissa Chase,Mercurial Commitments with Applications to Zero-Knowledge Sets.,2013,26,J. Cryptology,2,db/journals/joc/joc26.html#ChaseHLMR13,https://doi.org/10.1007/s00145-012-9122-9 +Pierre Beauchemin,The Generation of Random Numbers that Are Probably Prime.,1988,1,J. Cryptology,1,db/journals/joc/joc1.html#BeaucheminBCGP88,https://doi.org/10.1007/BF00206325 +Yehuda Lindell,Adaptive Zero-Knowledge Proofs and Adaptively Secure Oblivious Transfer.,2011,24,J. Cryptology,4,db/journals/joc/joc24.html#LindellZ11,https://doi.org/10.1007/s00145-010-9072-z +Lejla Batina,Mutual Information Analysis: a Comprehensive Study.,2011,24,J. Cryptology,2,db/journals/joc/joc24.html#BatinaGPRSV11,https://doi.org/10.1007/s00145-010-9084-8 +Jørgen Brandt,Zero-Knowledge Authentication Scheme with Secret Key Exchange.,1998,11,J. Cryptology,3,db/journals/joc/joc11.html#BrandtDLP98,https://doi.org/10.1007/s001459900041 +Russell Impagliazzo,Chernoff-Type Direct Product Theorems.,2009,22,J. Cryptology,1,db/journals/joc/joc22.html#ImpagliazzoJK09,https://doi.org/10.1007/s00145-008-9029-7 +Eric R. Verheul,Evidence that XTR Is More Secure than Supersingular Elliptic Curve Cryptosystems.,2004,17,J. Cryptology,4,db/journals/joc/joc17.html#Verheul04,https://doi.org/10.1007/s00145-004-0313-x +Ivan Damgård,On the Existence of Statistically Hiding Bit Commitment Schemes and Fail-Stop Signatures.,1997,10,J. Cryptology,3,db/journals/joc/joc10.html#DamgardPP97,https://doi.org/10.1007/s001459900026 +Anna M. Johnston,Authenticated Key Exchange Provably Secure Against the Man-in-the-Middle Attack.,2002,15,J. Cryptology,2,db/journals/joc/joc15.html#JohnstonG02,https://doi.org/10.1007/s00145-001-0017-4 +Shoni Gilboa,How Many Queries are Needed to Distinguish a Truncated Random Permutation from a Random Function?,2018,31,J. Cryptology,1,db/journals/joc/joc31.html#GilboaGM18,https://doi.org/10.1007/s00145-017-9253-0 +Rahul Jain 0001,New Binding-Concealing Trade-Offs for Quantum String Commitment.,2008,21,J. Cryptology,4,db/journals/joc/joc21.html#Jain08,https://doi.org/10.1007/s00145-008-9025-y +Eric Miles,On the Complexity of Constructing Pseudorandom Functions (Especially when They Don't Exist).,2015,28,J. Cryptology,3,db/journals/joc/joc28.html#MilesV15,https://doi.org/10.1007/s00145-013-9161-x +Joonsang Baek,Formal Proofs for the Security of Signcryption.,2007,20,J. Cryptology,2,db/journals/joc/joc20.html#BaekSZ07,https://doi.org/10.1007/s00145-007-0211-0 +Sebastian Faust,Signature Schemes Secure Against Hard-to-Invert Leakage.,2016,29,J. Cryptology,2,db/journals/joc/joc29.html#FaustHNNZ16,https://doi.org/10.1007/s00145-015-9197-1 +Samy Bengio,Secure Implementations of Identification Systems.,1991,4,J. Cryptology,3,db/journals/joc/joc4.html#BengioBDGQ91,https://doi.org/10.1007/BF00196726 +Dennis Hofheinz,Polynomial Runtime and Composability.,2013,26,J. Cryptology,3,db/journals/joc/joc26.html#HofheinzUM13,https://doi.org/10.1007/s00145-012-9127-4 +Joan Boyar,Logic Minimization Techniques with Applications to Cryptology.,2013,26,J. Cryptology,2,db/journals/joc/joc26.html#BoyarMP13,https://doi.org/10.1007/s00145-012-9124-7 +Moni Naor,Computationally Secure Oblivious Transfer.,2005,18,J. Cryptology,1,db/journals/joc/joc18.html#NaorP05,https://doi.org/10.1007/s00145-004-0102-6 +K. Nishimura,Probability To Meet in the Middle.,1990,2,J. Cryptology,1,db/journals/joc/joc2.html#NishimuraS90,https://doi.org/10.1007/BF02252867 +Neal Koblitz,Hyperelliptic Cryptosystems.,1989,1,J. Cryptology,3,db/journals/joc/joc1.html#Koblitz89,https://doi.org/10.1007/BF02252872 +Boaz Tsaban,Polynomial-Time Solutions of Computational Problems in Noncommutative-Algebraic Cryptography.,2015,28,J. Cryptology,3,db/journals/joc/joc28.html#Tsaban15,https://doi.org/10.1007/s00145-013-9170-9 +Edlyn Teske,An Elliptic Curve Trapdoor System.,2006,19,J. Cryptology,1,db/journals/joc/joc19.html#Teske06,https://doi.org/10.1007/s00145-004-0328-3 +Charles H. Bennett,Experimental Quantum Cryptography.,1992,5,J. Cryptology,1,db/journals/joc/joc5.html#BennettBBSS92,https://doi.org/10.1007/BF00191318 +David Pointcheval,Security Arguments for Digital Signatures and Blind Signatures.,2000,13,J. Cryptology,3,db/journals/joc/joc13.html#PointchevalS00,https://doi.org/10.1007/s001450010003 +Naofumi Homma,Design Methodology and Validity Verification for a Reactive Countermeasure Against EM Attacks.,2017,30,J. Cryptology,2,db/journals/joc/joc30.html#HommaHMFNA17,https://doi.org/10.1007/s00145-015-9223-3 +Jan-Hendrik Evertse,Which New RSA-Signatures Can be Computed from Certain Given RSA-Signatures?,1992,5,J. Cryptology,1,db/journals/joc/joc5.html#EvertseH92,https://doi.org/10.1007/BF00191320 +Alexander Russell,Necessary and Sufficient Condtions for Collision-Free Hashing.,1995,8,J. Cryptology,2,db/journals/joc/joc8.html#Russell95,https://doi.org/10.1007/BF00190757 +Sourav Sen Gupta,(Non-)Random Sequences from (Non-)Random Permutations - Analysis of RC4 Stream Cipher.,2014,27,J. Cryptology,1,db/journals/joc/joc27.html#GuptaMPS14,https://doi.org/10.1007/s00145-012-9138-1 +Gordon B. Agnew,Arithmetic Operations in GF(2m).,1993,6,J. Cryptology,1,db/journals/joc/joc6.html#AgnewBMV93,https://doi.org/10.1007/BF02620228 +Jooyoung Lee 0001,The Security of Tandem-DM in the Ideal Cipher Model.,2017,30,J. Cryptology,2,db/journals/joc/joc30.html#LeeSS17,https://doi.org/10.1007/s00145-016-9230-z +Aggelos Kiayias,A One-Time Stegosystem and Applications to Efficient Covert Communication.,2014,27,J. Cryptology,1,db/journals/joc/joc27.html#KiayiasRRS14,https://doi.org/10.1007/s00145-012-9135-4 +Benny Applebaum,Locally Computable UOWHF with Linear Shrinkage.,2017,30,J. Cryptology,3,db/journals/joc/joc30.html#ApplebaumM17,https://doi.org/10.1007/s00145-016-9232-x +Ran Cohen,Fairness Versus Guaranteed Output Delivery in Secure Multiparty Computation.,2017,30,J. Cryptology,4,db/journals/joc/joc30.html#CohenL17,https://doi.org/10.1007/s00145-016-9245-5 +Willi Meier,Fast Correlation Attacks on Certain Stream Ciphers.,1989,1,J. Cryptology,3,db/journals/joc/joc1.html#MeierS89,https://doi.org/10.1007/BF02252874 +Amos Fiat,Dynamic Traitor Tracing.,2001,14,J. Cryptology,3,db/journals/joc/joc14.html#FiatT01,https://doi.org/10.1007/s00145-001-0006-7 +Ran Canetti,Universally Composable Symbolic Security Analysis.,2011,24,J. Cryptology,1,db/journals/joc/joc24.html#CanettiH11,https://doi.org/10.1007/s00145-009-9055-0 +Florian Luca,Elliptic Curves with Low Embedding Degree.,2006,19,J. Cryptology,4,db/journals/joc/joc19.html#LucaS06,https://doi.org/10.1007/s00145-006-0544-0 +Orr Dunkelman,Improved Single-Key Attacks on 8-Round AES-192 and AES-256.,2015,28,J. Cryptology,3,db/journals/joc/joc28.html#DunkelmanKS15a,https://doi.org/10.1007/s00145-013-9159-4 +Jörn Müller-Quade,Long-Term Security and Universal Composability.,2010,23,J. Cryptology,4,db/journals/joc/joc23.html#Muller-QuadeU10,https://doi.org/10.1007/s00145-010-9068-8 +Carlo Blundo,Graph Decompositions and Secret Sharing Schemes.,1995,8,J. Cryptology,1,db/journals/joc/joc8.html#BlundoSSV95,https://doi.org/10.1007/BF00204801 +Mihir Bellare,Authenticated Encryption: Relations among Notions and Analysis of the Generic Composition Paradigm.,2008,21,J. Cryptology,4,db/journals/joc/joc21.html#BellareN08,https://doi.org/10.1007/s00145-008-9026-x +Moni Naor,Perfect Zero-Knowledge Arguments for NP Using Any One-Way Permutation.,1998,11,J. Cryptology,2,db/journals/joc/joc11.html#NaorOVY98,https://doi.org/10.1007/s001459900037 +Renato M. Capocelli,On the Size of Shares for Secret Sharing Schemes.,1993,6,J. Cryptology,3,db/journals/joc/joc6.html#CapocelliSGV93,https://doi.org/10.1007/BF00198463 +Elena Andreeva 0001,New Second-Preimage Attacks on Hash Functions.,2016,29,J. Cryptology,4,db/journals/joc/joc29.html#0001BDFHKSZ16,https://doi.org/10.1007/s00145-015-9206-4 +Willi Meier,Correlation Properties of Combiners with Memory in Stream Ciphers.,1992,5,J. Cryptology,1,db/journals/joc/joc5.html#MeierS92,https://doi.org/10.1007/BF00191322 +Boaz Barak,Secure Computation Without Authentication.,2011,24,J. Cryptology,4,db/journals/joc/joc24.html#BarakCLPR11,https://doi.org/10.1007/s00145-010-9075-9 +Martin E. Dyer,On Key Storage in Secure Networks.,1995,8,J. Cryptology,4,db/journals/joc/joc8.html#DyerFFT95,https://doi.org/10.1007/BF00191355 +Shimon Even,A Construction of a Cipher from a Single Pseudorandom Permutation.,1997,10,J. Cryptology,3,db/journals/joc/joc10.html#EvenM97,https://doi.org/10.1007/s001459900025 +Michel Abdalla,Robust Encryption.,2018,31,J. Cryptology,2,db/journals/joc/joc31.html#AbdallaBN18,https://doi.org/10.1007/s00145-017-9258-8 +Phong Q. Nguyen,The Insecurity of the Digital Signature Algorithm with Partially Known Nonces.,2002,15,J. Cryptology,3,db/journals/joc/joc15.html#NguyenS02,https://doi.org/10.1007/s00145-002-0021-3 +Jean-Sébastien Coron,How to Build an Ideal Cipher: The Indifferentiability of the Feistel Construction.,2016,29,J. Cryptology,1,db/journals/joc/joc29.html#CoronHKPST16,https://doi.org/10.1007/s00145-014-9189-6 +Donald Beaver,Secure Multiparty Protocols and Zero-Knowledge Proof Systems Tolerating a Faulty Minority.,1991,4,J. Cryptology,2,db/journals/joc/joc4.html#Beaver91,https://doi.org/10.1007/BF00196771 +Hüseyin Hisil,Jacobian Coordinates on Genus 2 Curves.,2017,30,J. Cryptology,2,db/journals/joc/joc30.html#HisilC17,https://doi.org/10.1007/s00145-016-9227-7 +Oded Goldreich 0001,Preface.,2004,17,J. Cryptology,1,db/journals/joc/joc17.html#Goldreich04,https://doi.org/10.1007/s00145-003-1701-3 +Andreas Enge,An L(1/3) Discrete Logarithm Algorithm for Low Degree Curves.,2011,24,J. Cryptology,1,db/journals/joc/joc24.html#EngeGT11,https://doi.org/10.1007/s00145-010-9057-y +Marc Fischlin,Efficient Non-malleable Commitment Schemes.,2009,22,J. Cryptology,4,db/journals/joc/joc22.html#FischlinF09,https://doi.org/10.1007/s00145-009-9045-2 +Gustav Hast,Nearly One-Sided Tests and the Goldreich?Levin Predicate.,2004,17,J. Cryptology,3,db/journals/joc/joc17.html#Hast04,https://doi.org/10.1007/s00145-003-0141-4 +Philip D. MacKenzie,Threshold Password-Authenticated Key Exchange.,2006,19,J. Cryptology,1,db/journals/joc/joc19.html#MacKenzieSJ06,https://doi.org/10.1007/s00145-005-0232-5 +Ali Aydin Selçuk,On Probability of Success in Linear and Differential Cryptanalysis.,2008,21,J. Cryptology,1,db/journals/joc/joc21.html#Selcuk08,https://doi.org/10.1007/s00145-007-9013-7 +Eli Biham,Bug Attacks.,2016,29,J. Cryptology,4,db/journals/joc/joc29.html#BihamCS16,https://doi.org/10.1007/s00145-015-9209-1 +Florian Böhl,Confined Guessing: New Signatures From Standard Assumptions.,2015,28,J. Cryptology,1,db/journals/joc/joc28.html#BohlHJKS15,https://doi.org/10.1007/s00145-014-9183-z +Gustavus J. Simmons,A Cartesian Product Construction for Unconditionally Secure Authentication Codes that Permit Arbitration.,1990,2,J. Cryptology,2,db/journals/joc/joc2.html#Simmons90,https://doi.org/10.1007/BF00204449 +Luke O'Connor,On the Distribution of Characteristics in Bijective Mappings.,1995,8,J. Cryptology,2,db/journals/joc/joc8.html#OConnor95,https://doi.org/10.1007/BF00190756 +Jung Hee Cheon,Discrete Logarithm Problems with Auxiliary Inputs.,2010,23,J. Cryptology,3,db/journals/joc/joc23.html#Cheon10,https://doi.org/10.1007/s00145-009-9047-0 +Dennis Hofheinz,Obfuscation for Cryptographic Purposes.,2010,23,J. Cryptology,1,db/journals/joc/joc23.html#HofheinzMS10,https://doi.org/10.1007/s00145-009-9046-1 +Jean-Charles Faugère,Using Symmetries in the Index Calculus for Elliptic Curves Discrete Logarithm.,2014,27,J. Cryptology,4,db/journals/joc/joc27.html#FaugereGHR14,https://doi.org/10.1007/s00145-013-9158-5 +Yi Lu 0002,Cryptanalysis of an E0-like Combiner with Memory.,2008,21,J. Cryptology,3,db/journals/joc/joc21.html#LuV08,https://doi.org/10.1007/s00145-007-9017-3 +Matthew K. Franklin,Secure Communication in Minimal Connectivity Models.,2000,13,J. Cryptology,1,db/journals/joc/joc13.html#FranklinW00,https://doi.org/10.1007/s001459910002 +Jan Denef,An Extension of Kedlaya's Algorithm to Hyperelliptic Curves in Characteristic 2.,2006,19,J. Cryptology,1,db/journals/joc/joc19.html#DenefV06,https://doi.org/10.1007/s00145-004-0231-y +Matthew K. Franklin,Joint Encryption and Message-Efficient Secure Computation.,1996,9,J. Cryptology,4,db/journals/joc/joc9.html#FranklinH96,https://doi.org/10.1007/BF00189261 +Harald Niederreiter,A Combinatorial Approach to Probabilistic Results on the Linear Complexity Profile of Random Sequences.,1990,2,J. Cryptology,2,db/journals/joc/joc2.html#Niedderreiter90,https://doi.org/10.1007/BF00204450 +Gaetan Canivet,Glitch and Laser Fault Attacks onto a Secure AES Implementation on a SRAM-Based FPGA.,2011,24,J. Cryptology,2,db/journals/joc/joc24.html#CanivetMLCVR11,https://doi.org/10.1007/s00145-010-9083-9 +Michel Abdalla,Verifiable Random Functions: Relations to Identity-Based Key Encapsulation and New Constructions.,2014,27,J. Cryptology,3,db/journals/joc/joc27.html#AbdallaCF14,https://doi.org/10.1007/s00145-013-9153-x +Zvika Brakerski,Obfuscating Conjunctions.,2017,30,J. Cryptology,1,db/journals/joc/joc30.html#BrakerskiR17,https://doi.org/10.1007/s00145-015-9221-5 +Yehuda Lindell,Parallel Coin-Tossing and Constant-Round Secure Two-Party Computation.,2003,16,J. Cryptology,3,db/journals/joc/joc16.html#Lindell03,https://doi.org/10.1007/s00145-002-0143-7 +Yehuda Lindell,A Note on Constant-Round Zero-Knowledge Proofs of Knowledge.,2013,26,J. Cryptology,4,db/journals/joc/joc26.html#Lindell13,https://doi.org/10.1007/s00145-012-9132-7 +Ilan Komargodski,Secret-Sharing for NP.,2017,30,J. Cryptology,2,db/journals/joc/joc30.html#KomargodskiNY17,https://doi.org/10.1007/s00145-015-9226-0 +Raphael Overbeck,Structural Attacks for Public Key Cryptosystems based on Gabidulin Codes.,2008,21,J. Cryptology,2,db/journals/joc/joc21.html#Overbeck08,https://doi.org/10.1007/s00145-007-9003-9 +Alfred Menezes,Elliptic Curve Cryptosystems and Their Implementations.,1993,6,J. Cryptology,4,db/journals/joc/joc6.html#MenezesV93,https://doi.org/10.1007/BF00203817 +Michael J. Jacobson Jr.,Computing Discrete Logarithms in Quadratic Orders.,2000,13,J. Cryptology,4,db/journals/joc/joc13.html#Jacobson00,https://doi.org/10.1007/s001450010013 +Xavier Boyen,Unconditionally Anonymous Ring and Mesh Signatures.,2016,29,J. Cryptology,4,db/journals/joc/joc29.html#Boyen16,https://doi.org/10.1007/s00145-015-9208-2 +Dario Catalano,Paillier's Trapdoor Function Hides up to O(n) Bits.,2002,15,J. Cryptology,4,db/journals/joc/joc15.html#CatalanoGH02,https://doi.org/10.1007/s00145-002-0112-1 +Arpita Patra,Efficient Asynchronous Verifiable Secret Sharing and Multiparty Computation.,2015,28,J. Cryptology,1,db/journals/joc/joc28.html#PatraCR15,https://doi.org/10.1007/s00145-013-9172-7 +Tibor Jager,On the Analysis of Cryptographic Assumptions in the Generic Ring Model.,2013,26,J. Cryptology,2,db/journals/joc/joc26.html#JagerS13,https://doi.org/10.1007/s00145-012-9120-y +Henri Cohen,Analysis of the Sliding Window Powering Algorithm.,2005,18,J. Cryptology,1,db/journals/joc/joc18.html#Cohen05,https://doi.org/10.1007/s00145-004-0218-8 +Charanjit S. Jutla,Encryption Modes with Almost Free Message Integrity.,2008,21,J. Cryptology,4,db/journals/joc/joc21.html#Jutla08,https://doi.org/10.1007/s00145-008-9024-z +Ralf Küsters,On the Relationships between Notions of Simulation-Based Security.,2008,21,J. Cryptology,4,db/journals/joc/joc21.html#KustersDMR08,https://doi.org/10.1007/s00145-008-9019-9 +Eli Biham,New Attacks on IDEA with at Least 6 Rounds.,2015,28,J. Cryptology,2,db/journals/joc/joc28.html#BihamDKS15,https://doi.org/10.1007/s00145-013-9162-9 +Oded Goldreich 0001,A Uniform-Complexity Treatment of Encryption and Zero-Knowledge.,1993,6,J. Cryptology,1,db/journals/joc/joc6.html#Goldreich93,https://doi.org/10.1007/BF02620230 +Steven D. Galbraith,Elliptic Curve Paillier Schemes.,2002,15,J. Cryptology,2,db/journals/joc/joc15.html#Galbraith02,https://doi.org/10.1007/s00145-001-0015-6 +Benny Applebaum,Key-Dependent Message Security: Generic Amplification and Completeness.,2014,27,J. Cryptology,3,db/journals/joc/joc27.html#Applebaum14,https://doi.org/10.1007/s00145-013-9149-6 +David Cash,The Twin Diffie-Hellman Problem and Applications.,2009,22,J. Cryptology,4,db/journals/joc/joc22.html#CashKS09,https://doi.org/10.1007/s00145-009-9041-6 +Ernest F. Brickell,Some Improved Bounds on the Information Rate of Perfect Secret Sharing Schemes.,1992,5,J. Cryptology,3,db/journals/joc/joc5.html#BrickellS92,https://doi.org/10.1007/BF02451112 +Kouichi Sakurai,A Structural Comparison of the Computational Difficulty of Breaking Discrete Log Cryptosystems.,1998,11,J. Cryptology,1,db/journals/joc/joc11.html#SakuraiS98,https://doi.org/10.1007/s001459900033 +Shay Gueron,Fast Garbling of Circuits Under Standard Assumptions.,2018,31,J. Cryptology,3,db/journals/joc/joc31.html#GueronLNP18,https://doi.org/10.1007/s00145-017-9271-y +Danny Harnik,Completeness in Two-Party Secure Computation: A Computational View.,2006,19,J. Cryptology,4,db/journals/joc/joc19.html#HarnikNRR06,https://doi.org/10.1007/s00145-006-0346-4 +Ilan Komargodski,Functional Encryption for Randomized Functionalities in the Private-Key Setting from Minimal Assumptions.,2018,31,J. Cryptology,1,db/journals/joc/joc31.html#KomargodskiSY18,https://doi.org/10.1007/s00145-016-9250-8 +Rosario Gennaro,RSA-Based Undeniable Signatures.,2007,20,J. Cryptology,3,db/journals/joc/joc20.html#GennaroRK07,https://doi.org/10.1007/s00145-007-0202-1 +Krzysztof Pietrzak,Parallel Repetition of Computationally Sound Protocols Revisited.,2012,25,J. Cryptology,1,db/journals/joc/joc25.html#PietrzakW12,https://doi.org/10.1007/s00145-010-9090-x +Orr Dunkelman,Slidex Attacks on the Even-Mansour Encryption Scheme.,2015,28,J. Cryptology,1,db/journals/joc/joc28.html#DunkelmanKS15,https://doi.org/10.1007/s00145-013-9164-7 +Stanislav Smyshlyaev,Perfectly Balanced Boolean Functions and Golić Conjecture.,2012,25,J. Cryptology,3,db/journals/joc/joc25.html#Smyshlyaev12,https://doi.org/10.1007/s00145-011-9100-7 +Jovan Dj. Golic,Edit Probability Correlation Attacks on Stop/ Go Clocked Keystream Generators.,2003,16,J. Cryptology,1,db/journals/joc/joc16.html#GolicM03,https://doi.org/10.1007/s00145-002-9925-1 +Eiichiro Fujisaki,Secure Integration of Asymmetric and Symmetric Encryption Schemes.,2013,26,J. Cryptology,1,db/journals/joc/joc26.html#FujisakiO13,https://doi.org/10.1007/s00145-011-9114-1 +Shang-Hua Teng,Functional Inversion and Communication Complexity.,1994,7,J. Cryptology,3,db/journals/joc/joc7.html#Teng94,https://doi.org/10.1007/BF02318547 +Lars R. Knudsen,A Detailed Analysis of SAFER K.,2000,13,J. Cryptology,4,db/journals/joc/joc13.html#Knudsen00,https://doi.org/10.1007/s001450010004 +Akinori Kawachi,Computational Indistinguishability Between Quantum States and Its Cryptographic Application.,2012,25,J. Cryptology,3,db/journals/joc/joc25.html#KawachiKNY12,https://doi.org/10.1007/s00145-011-9103-4 +John Black,An Analysis of the Blockcipher-Based Hash Functions from PGV.,2010,23,J. Cryptology,4,db/journals/joc/joc23.html#BlackRSS10,https://doi.org/10.1007/s00145-010-9071-0 +Eli Biham,Cryptanalysis of the ANSI X9.52 CBCM Mode.,2002,15,J. Cryptology,1,db/journals/joc/joc15.html#BihamK02,https://doi.org/10.1007/s00145-001-0016-5 +Klaus Gaarder,Applying a Formal Analysis Technique to the CCITT X.509 Strong Two-Way Authentication Protocol.,1991,3,J. Cryptology,2,db/journals/joc/joc3.html#GaarderS91,https://doi.org/10.1007/BF00196790 +Alex Escala,An Algebraic Framework for Diffie-Hellman Assumptions.,2017,30,J. Cryptology,1,db/journals/joc/joc30.html#EscalaHKRV17,https://doi.org/10.1007/s00145-015-9220-6 +Mihir Bellare,On-line Ciphers and the Hash-CBC Constructions.,2012,25,J. Cryptology,4,db/journals/joc/joc25.html#BellareBKN12,https://doi.org/10.1007/s00145-011-9106-1 +Jovan Dj. Golic,A Generalized Correlation Attack on a Class of Stream Ciphers Based on the Levenshtein Distance.,1991,3,J. Cryptology,3,db/journals/joc/joc3.html#GolicM91,https://doi.org/10.1007/BF00196912 +Joan Boyar,On the Communication Complexity of Zero-Knowledge Proofs.,1993,6,J. Cryptology,2,db/journals/joc/joc6.html#BoyarLP93,https://doi.org/10.1007/BF02620135 +Karl Rubin,Using Abelian Varieties to Improve Pairing-Based Cryptography.,2009,22,J. Cryptology,3,db/journals/joc/joc22.html#RubinS09,https://doi.org/10.1007/s00145-008-9022-1 +Tamir Tassa,Hierarchical Threshold Secret Sharing.,2007,20,J. Cryptology,2,db/journals/joc/joc20.html#Tassa07,https://doi.org/10.1007/s00145-006-0334-8 +David Cash,Dynamic Proofs of Retrievability Via Oblivious RAM.,2017,30,J. Cryptology,1,db/journals/joc/joc30.html#CashKW17,https://doi.org/10.1007/s00145-015-9216-2 +Mario Lamberger,The Rebound Attack and Subspace Distinguishers: Application to Whirlpool.,2015,28,J. Cryptology,2,db/journals/joc/joc28.html#LambergerMSRR15,https://doi.org/10.1007/s00145-013-9166-5 +Ran Canetti,On the Limitations of Universally Composable Two-Party Computation Without Set-Up Assumptions.,2006,19,J. Cryptology,2,db/journals/joc/joc19.html#CanettiKL06,https://doi.org/10.1007/s00145-005-0419-9 +Chi-Jen Lu,Encryption against Storage-Bounded Adversaries from On-Line Strong Extractors.,2004,17,J. Cryptology,1,db/journals/joc/joc17.html#Lu04,https://doi.org/10.1007/s00145-003-0217-1 +Oded Goldreich 0001,Preface.,2000,13,J. Cryptology,1,db/journals/joc/joc13.html#Goldreich00,https://doi.org/10.1007/s001459910001 +Steven D. Galbraith,Endomorphisms for Faster Elliptic Curve Cryptography on a Large Class of Curves.,2011,24,J. Cryptology,3,db/journals/joc/joc24.html#GalbraithLS11,https://doi.org/10.1007/s00145-010-9065-y +Shoichi Hirose,A Simple Variant of the Merkle-Damgård Scheme with a Permutation.,2012,25,J. Cryptology,2,db/journals/joc/joc25.html#HirosePY12,https://doi.org/10.1007/s00145-010-9095-5 +Oded Goldreich 0001,A Perfect Zero-Knowledge Proof System for a Problem Equivalent to the Discrete Logarithm.,1993,6,J. Cryptology,2,db/journals/joc/joc6.html#GoldreichK93,https://doi.org/10.1007/BF02620137 +Ivan Damgård,An Extended Quadratic Frobenius Primality Test with Average- and Worst-Case Error Estimate.,2006,19,J. Cryptology,4,db/journals/joc/joc19.html#DamgardF06,https://doi.org/10.1007/s00145-006-0332-x +Erez Petrank,CBC MAC for Real-Time Data Sources.,2000,13,J. Cryptology,3,db/journals/joc/joc13.html#PetrankR00,https://doi.org/10.1007/s001450010009 +Zvika Brakerski,Multi-input Functional Encryption in the Private-Key Setting: Stronger Security from Weaker Assumptions.,2018,31,J. Cryptology,2,db/journals/joc/joc31.html#BrakerskiKS18,https://doi.org/10.1007/s00145-017-9261-0 +Arjen K. Lenstra,User Impersonation in Key Certification Schemes.,1993,6,J. Cryptology,4,db/journals/joc/joc6.html#LenstraY93,https://doi.org/10.1007/BF00203818 +Nigel P. Smart,Elliptic Curve Cryptosystems over Small Fields of Odd Characteristic.,1999,12,J. Cryptology,2,db/journals/joc/joc12.html#Smart99,https://doi.org/10.1007/PL00003820 +Markus Grassl,Cryptanalysis of the Tillich-Zémor Hash Function.,2011,24,J. Cryptology,1,db/journals/joc/joc24.html#GrasslIMS11,https://doi.org/10.1007/s00145-010-9063-0 +Eli Biham,Cryptanalysis of Triple Modes of Operation.,1999,12,J. Cryptology,3,db/journals/joc/joc12.html#Biham99,https://doi.org/10.1007/s001459900050 +Glenn A. Orton,A Design of a Fast Pipelined Modular Multiplier Based on a Diminished-Radix Algorithm.,1993,6,J. Cryptology,4,db/journals/joc/joc6.html#OrtonPT93,https://doi.org/10.1007/BF00203816 +Toshiya Itoh,A Low Communication Competitive Interactive Proof System for Promised Quadratic Residuosity.,1996,9,J. Cryptology,2,db/journals/joc/joc9.html#ItohHT96,https://doi.org/10.1007/BF00190804 +Gordon B. Agnew,An Implementation for a Fast Public-Key Cryptosystem.,1991,3,J. Cryptology,2,db/journals/joc/joc3.html#AgnewMOV91,https://doi.org/10.1007/BF00196789 +Charanjit S. Jutla,Shorter Quasi-Adaptive NIZK Proofs for Linear Subspaces.,2017,30,J. Cryptology,4,db/journals/joc/joc30.html#JutlaR17,https://doi.org/10.1007/s00145-016-9243-7 +Oded Goldreich 0001,On Expected Probabilistic Polynomial-Time Adversaries: A Suggestion for Restricted Definitions and Their Benefits.,2010,23,J. Cryptology,1,db/journals/joc/joc23.html#Goldreich10,https://doi.org/10.1007/s00145-009-9050-5 +Ivan Damgård,Two-Key Triple Encryption.,1998,11,J. Cryptology,3,db/journals/joc/joc11.html#DamgardK98,https://doi.org/10.1007/s001459900044 +Don Coppersmith,On Polynomial Approximation of the Discrete Logarithm and the Diffie - Hellman Mapping.,2000,13,J. Cryptology,3,db/journals/joc/joc13.html#CoppersmithS00,https://doi.org/10.1007/s001450010002 +Luke O'Connor,Algebraic Nonlinearity and Its Applications to Cryptography.,1994,7,J. Cryptology,4,db/journals/joc/joc7.html#OConnorK94,https://doi.org/10.1007/BF00203964 +Eli Biham,New Types of Cryptanalytic Attacks Using Related Keys.,1994,7,J. Cryptology,4,db/journals/joc/joc7.html#Biham94,https://doi.org/10.1007/BF00203965 +Stephen M. Matyas,Key Processing with Control Vectors.,1991,3,J. Cryptology,2,db/journals/joc/joc3.html#Matyas91,https://doi.org/10.1007/BF00196792 +Johannes A. Buchmann,A Key-Exchange System Based on Imaginary Quadratic Fields.,1988,1,J. Cryptology,2,db/journals/joc/joc1.html#BuchmannW88,https://doi.org/10.1007/BF02351719 +Svetla Nikova,Secure Hardware Implementation of Nonlinear Functions in the Presence of Glitches.,2011,24,J. Cryptology,2,db/journals/joc/joc24.html#NikovaRS11,https://doi.org/10.1007/s00145-010-9085-7 +Moni Naor,Bit Commitment Using Pseudorandomness.,1991,4,J. Cryptology,2,db/journals/joc/joc4.html#Naor91,https://doi.org/10.1007/BF00196774 +Victor Shoup,On the Security of a Practical Identification Scheme.,1999,12,J. Cryptology,4,db/journals/joc/joc12.html#Shoup99,https://doi.org/10.1007/s001459900056 +Jérémy Jean,Improved Cryptanalysis of AES-like Permutations.,2014,27,J. Cryptology,4,db/journals/joc/joc27.html#JeanNP14,https://doi.org/10.1007/s00145-013-9156-7 +Michael J. Fischer,A Secure Protocol for the Oblivious Transfer (Extended Abstract).,1996,9,J. Cryptology,3,db/journals/joc/joc9.html#FischerMR96, +Ralph C. Merkle,A Fast Software One-Way Hash Function.,1990,3,J. Cryptology,1,db/journals/joc/joc3.html#Merkle90,https://doi.org/10.1007/BF00203968 +Dafna Kidron,Impossibility Results for Universal Composability in Public-Key Models and with Fixed Inputs.,2011,24,J. Cryptology,3,db/journals/joc/joc24.html#KidronL11,https://doi.org/10.1007/s00145-010-9069-7 +Serge Vaudenay,Cryptanalysis of the Chor - Rivest Cryptosystem.,2001,14,J. Cryptology,2,db/journals/joc/joc14.html#Vaudenay01,https://doi.org/10.1007/s001450010005 +Carlo Blundo,On a Fallacious Bound for Authentication Codes.,1999,12,J. Cryptology,3,db/journals/joc/joc12.html#BlundoSKO99,https://doi.org/10.1007/s001459900049 +Achiya Bar-On,Efficient Slide Attacks.,2018,31,J. Cryptology,3,db/journals/joc/joc31.html#Bar-OnBDK18,https://doi.org/10.1007/s00145-017-9266-8 +Lior Malka,How to Achieve Perfect Simulation and a Complete Problem for Non-interactive Perfect Zero-Knowledge.,2015,28,J. Cryptology,3,db/journals/joc/joc28.html#Malka15,https://doi.org/10.1007/s00145-013-9165-6 +Andrew Klapper,The Vulnerability of Geometric Sequences Based on Fields of Odd Characteristic.,1994,7,J. Cryptology,1,db/journals/joc/joc7.html#Klapper94,https://doi.org/10.1007/BF00195208 +Ran Canetti,Randomness versus Fault-Tolerance.,2000,13,J. Cryptology,1,db/journals/joc/joc13.html#CanettiKOR00,https://doi.org/10.1007/s001459910005 +Dario Catalano,Trapdoor Hard-to-Invert Group Isomorphisms and Their Application to Password-Based Authentication.,2007,20,J. Cryptology,1,db/journals/joc/joc20.html#CatalanoPP07,https://doi.org/10.1007/s00145-006-0431-8 +Ilya Mironov,Incremental Deterministic Public-Key Encryption.,2018,31,J. Cryptology,1,db/journals/joc/joc31.html#MironovPRS18,https://doi.org/10.1007/s00145-017-9252-1 +Zvika Brakerski,Function-Private Functional Encryption in the Private-Key Setting.,2018,31,J. Cryptology,1,db/journals/joc/joc31.html#BrakerskiS18,https://doi.org/10.1007/s00145-017-9255-y +Yehuda Lindell,An Efficient Protocol for Secure Two-Party Computation in the Presence of Malicious Adversaries.,2015,28,J. Cryptology,2,db/journals/joc/joc28.html#LindellP15,https://doi.org/10.1007/s00145-014-9177-x +Iftach Haitner,Reducing Complexity Assumptions for Statistically-Hiding Commitment.,2009,22,J. Cryptology,3,db/journals/joc/joc22.html#HaitnerHKKMS09,https://doi.org/10.1007/s00145-007-9012-8 +ämin Baumeler,Quantum Private Information Retrieval has Linear Communication Complexity.,2015,28,J. Cryptology,1,db/journals/joc/joc28.html#BaumelerB15,https://doi.org/10.1007/s00145-014-9180-2 +Carlo Blundo,On Unconditionally Secure Distributed Oblivious Transfer.,2007,20,J. Cryptology,3,db/journals/joc/joc20.html#BlundoDSS07,https://doi.org/10.1007/s00145-007-0327-2 +Gilad Asharov,A Full Proof of the BGW Protocol for Perfectly Secure Multiparty Computation.,2017,30,J. Cryptology,1,db/journals/joc/joc30.html#AsharovL17,https://doi.org/10.1007/s00145-015-9214-4 +Patrick Longa,Four-Dimensional Gallant-Lambert-Vanstone Scalar Multiplication.,2014,27,J. Cryptology,2,db/journals/joc/joc27.html#LongaS14,https://doi.org/10.1007/s00145-012-9144-3 +Carmit Hazay,Efficient One-Sided Adaptively Secure Computation.,2017,30,J. Cryptology,1,db/journals/joc/joc30.html#HazayP17,https://doi.org/10.1007/s00145-015-9222-4 +Jonathan Katz,Parallel and Concurrent Security of the HB and HB+ Protocols.,2010,23,J. Cryptology,3,db/journals/joc/joc23.html#KatzSS10,https://doi.org/10.1007/s00145-010-9061-2 +Luke O'Connor,An Analysis of a Class of Algorithms for S-Box Construction.,1994,7,J. Cryptology,3,db/journals/joc/joc7.html#OConnor94,https://doi.org/10.1007/BF02318546 +Peter de Rooij,On Schnorr's Preprocessing for Digital Signature Schemes.,1997,10,J. Cryptology,1,db/journals/joc/joc10.html#Rooij97,https://doi.org/10.1007/s001459900016 +Eli Biham,Cryptanalysis of Skipjack Reduced to 31 Rounds Using Impossible Differentials.,2005,18,J. Cryptology,4,db/journals/joc/joc18.html#BihamBS05,https://doi.org/10.1007/s00145-005-0129-3 +James Aspnes,Spreading Alerts Quietly and the Subgroup Escape Problem.,2015,28,J. Cryptology,4,db/journals/joc/joc28.html#AspnesDYGP15,https://doi.org/10.1007/s00145-014-9181-1 +Michael Ben-Or,Trading Help for Interaction in Statistical Zero-Knowledge Proofs.,2003,16,J. Cryptology,2,db/journals/joc/joc16.html#Ben-OrG03,https://doi.org/10.1007/s00145-002-0113-0 +Nigel P. Smart,A Fast Diffie-Hellman Protocol in Genus 2.,1999,12,J. Cryptology,1,db/journals/joc/joc12.html#SmartS99,https://doi.org/10.1007/PL00003818 +Mahdi Sajadieh,Efficient Recursive Diffusion Layers for Block Ciphers and Hash Functions.,2015,28,J. Cryptology,2,db/journals/joc/joc28.html#SajadiehDMS15,https://doi.org/10.1007/s00145-013-9163-8 +Gagan Aggarwal,Secure Computation of the Median (and Other Elements of Specified Ranks).,2010,23,J. Cryptology,3,db/journals/joc/joc23.html#AggarwalMP10,https://doi.org/10.1007/s00145-010-9059-9 +Spyros S. Magliveras,Algebraic Properties of Cryptosystem PGM.,1992,5,J. Cryptology,3,db/journals/joc/joc5.html#MagliverasM92,https://doi.org/10.1007/BF02451113 +S. J. Phillips,Strongly Ideal Secret Sharing Schemes.,1992,5,J. Cryptology,3,db/journals/joc/joc5.html#PhillipsP92,https://doi.org/10.1007/BF02451114 +Arjen K. Lenstra,Preface.,2004,17,J. Cryptology,4,db/journals/joc/joc17.html#Lenstra04,https://doi.org/10.1007/s00145-004-1704-8 +Michael J. Jacobson Jr.,An Improved Real-Quadratic-Field-Based Key Exchange Procedure.,2006,19,J. Cryptology,2,db/journals/joc/joc19.html#JacobsonSW06,https://doi.org/10.1007/s00145-005-0357-6 +Michel Abdalla,Tightly Secure Signatures From Lossy Identification Schemes.,2016,29,J. Cryptology,3,db/journals/joc/joc29.html#AbdallaFLT16,https://doi.org/10.1007/s00145-015-9203-7 +Gilad Asharov,More Efficient Oblivious Transfer Extensions.,2017,30,J. Cryptology,3,db/journals/joc/joc30.html#AsharovLSZ17,https://doi.org/10.1007/s00145-016-9236-6 +Amos Beimel,Buses for Anonymous Message Delivery.,2003,16,J. Cryptology,1,db/journals/joc/joc16.html#BeimelD03,https://doi.org/10.1007/s00145-002-0128-6 +Ute Rosenbaum,A Lower Bound on Authentication After Having Observed a Sequence of Messages.,1993,6,J. Cryptology,3,db/journals/joc/joc6.html#Rosenbaum93,https://doi.org/10.1007/BF00198462 +Giuseppe Ateniese,Provably-Secure Time-Bound Hierarchical Key Assignment Schemes.,2012,25,J. Cryptology,2,db/journals/joc/joc25.html#AtenieseSFM12,https://doi.org/10.1007/s00145-010-9094-6 +Don Coppersmith,The Security of the Birational Permutation Signature Schemes.,1997,10,J. Cryptology,3,db/journals/joc/joc10.html#CoppersmithSV97,https://doi.org/10.1007/s001459900028 +Dominique Schröder,Security of Blind Signatures Revisited.,2017,30,J. Cryptology,2,db/journals/joc/joc30.html#SchroderU17,https://doi.org/10.1007/s00145-015-9225-1 +Mihir Bellare,New Proofs for NMAC and HMAC: Security without Collision Resistance.,2015,28,J. Cryptology,4,db/journals/joc/joc28.html#Bellare15,https://doi.org/10.1007/s00145-014-9185-x +Itai Dinur,Key Recovery Attacks on Iterated Even-Mansour Encryption Schemes.,2016,29,J. Cryptology,4,db/journals/joc/joc29.html#DinurDKS16,https://doi.org/10.1007/s00145-015-9207-3 +Alex Biryukov,Structural Cryptanalysis of SASAS.,2010,23,J. Cryptology,4,db/journals/joc/joc23.html#BiryukovS10,https://doi.org/10.1007/s00145-010-9062-1 +Tamir Tassa,Multipartite Secret Sharing by Bivariate Interpolation.,2009,22,J. Cryptology,2,db/journals/joc/joc22.html#TassaD09,https://doi.org/10.1007/s00145-008-9027-9 +Amos Beimel,Robust Information-Theoretic Private Information Retrieval.,2007,20,J. Cryptology,3,db/journals/joc/joc20.html#BeimelS07,https://doi.org/10.1007/s00145-007-0424-2 +Shi Bai,Improved Security Proofs in Lattice-Based Cryptography: Using the Rényi Divergence Rather than the Statistical Distance.,2018,31,J. Cryptology,2,db/journals/joc/joc31.html#BaiLRSSS18,https://doi.org/10.1007/s00145-017-9265-9 +Ernest F. Brickell,On the Classification of Ideal Secret Sharing Schemes.,1991,4,J. Cryptology,2,db/journals/joc/joc4.html#BrickellD91,https://doi.org/10.1007/BF00196772 +Rosario Gennaro,RSA-Based Undeniable Signatures.,2000,13,J. Cryptology,4,db/journals/joc/joc13.html#GennaroRK00,https://doi.org/10.1007/s001450010001 +Kaoru Kurosawa,Almost k-Wise Independent Sample Spaces and Their Cryptologic Applications.,2001,14,J. Cryptology,4,db/journals/joc/joc14.html#KurosawaJS01,https://doi.org/10.1007/s00145-001-0010-y +Gilad Asharov,On Constructing One-Way Permutations from Indistinguishability Obfuscation.,2018,31,J. Cryptology,3,db/journals/joc/joc31.html#AsharovS18,https://doi.org/10.1007/s00145-017-9268-6 +Uriel Feige,Zero-Knowledge Proofs of Identity.,1988,1,J. Cryptology,2,db/journals/joc/joc1.html#FeigeFS88,https://doi.org/10.1007/BF02351717 +Masayuki Abe,Tag-KEM/DEM: A New Framework for Hybrid Encryption.,2008,21,J. Cryptology,1,db/journals/joc/joc21.html#AbeGK08,https://doi.org/10.1007/s00145-007-9010-x +Michel Abdalla,Wildcarded Identity-Based Encryption.,2011,24,J. Cryptology,1,db/journals/joc/joc24.html#AbdallaBCDMNSS11,https://doi.org/10.1007/s00145-010-9060-3 +Alfredo De Santis,The Power of Preprocessing in Zero-Knowledge Proofs of Knowledge.,1996,9,J. Cryptology,3,db/journals/joc/joc9.html#SantisP96, +Martín Abadi,Reconciling Two Views of Cryptography (The Computational Soundness of Formal Encryption).,2002,15,J. Cryptology,2,db/journals/joc/joc15.html#AbadiR02,https://doi.org/10.1007/s00145-001-0014-7 +David Chaum,The Dining Cryptographers Problem: Unconditional Sender and Recipient Untraceability.,1988,1,J. Cryptology,1,db/journals/joc/joc1.html#Chaum88,https://doi.org/10.1007/BF00206326 +Ernest F. Brickell,An Interactive Identification Scheme Based on Discrete Logarithms and Factoring.,1992,5,J. Cryptology,1,db/journals/joc/joc5.html#BrickellM92,https://doi.org/10.1007/BF00191319 +Marc Fischlin,Robust Multi-Property Combiners for Hash Functions.,2014,27,J. Cryptology,3,db/journals/joc/joc27.html#FischlinLP14,https://doi.org/10.1007/s00145-013-9148-7 +Mike Burmester,Divertible and Subliminal-Free Zero-Knowledge Proofs for Languages.,1999,12,J. Cryptology,3,db/journals/joc/joc12.html#BurmesterDISS99,https://doi.org/10.1007/s001459900053 +Hendrik W. Lenstra Jr.,On the Chor-Rivest Knapsack Cryptosystem.,1991,3,J. Cryptology,3,db/journals/joc/joc3.html#Lenstra91,https://doi.org/10.1007/BF00196908 +Ran Canetti,Adaptive versus Non-Adaptive Security of Multi-Party Protocols.,2004,17,J. Cryptology,3,db/journals/joc/joc17.html#CanettiDDIM04,https://doi.org/10.1007/s00145-004-0135-x +Joe Kilian,An Efficient Noninteractive Zero-Knowledge Proof System for NP with General Assumptions.,1998,11,J. Cryptology,1,db/journals/joc/joc11.html#KilianP98,https://doi.org/10.1007/s001459900032 +Adrian Kent,Secure Classical Bit Commitment Using Fixed Capacity Communication Channels.,2005,18,J. Cryptology,4,db/journals/joc/joc18.html#Kent05,https://doi.org/10.1007/s00145-005-0905-8 +John Black,On the Impossibility of Highly-Efficient Blockcipher-Based Hash Functions.,2009,22,J. Cryptology,3,db/journals/joc/joc22.html#BlackCS09,https://doi.org/10.1007/s00145-008-9030-1 +Hoi-Kwong Lo,Efficient Quantum Key Distribution Scheme and a Proof of Its Unconditional Security.,2005,18,J. Cryptology,2,db/journals/joc/joc18.html#LoCA05,https://doi.org/10.1007/s00145-004-0142-y +Michael J. Fischer,Bounds on Secret Key Exchange Using a Random Deal of Cards.,1996,9,J. Cryptology,2,db/journals/joc/joc9.html#FischerW96,https://doi.org/10.1007/BF00190803 +Shafi Goldwasser,Secure Multi-Party Computation without Agreement.,2005,18,J. Cryptology,3,db/journals/joc/joc18.html#GoldwasserL05,https://doi.org/10.1007/s00145-005-0319-z +Shai Halevi,Efficient Commitment Schemes with Bounded Sender and Unbounded Receiver.,1999,12,J. Cryptology,2,db/journals/joc/joc12.html#Halevi99,https://doi.org/10.1007/PL00003821 +Donald W. Davies,Pairs and Triplets of DES S-Boxes.,1995,8,J. Cryptology,1,db/journals/joc/joc8.html#DaviesM95,https://doi.org/10.1007/BF00204799 +Shafi Goldwasser,On Best-Possible Obfuscation.,2014,27,J. Cryptology,3,db/journals/joc/joc27.html#GoldwasserR14,https://doi.org/10.1007/s00145-013-9151-z +Fred Piper,Linear Ciphers and Spreads.,1989,1,J. Cryptology,3,db/journals/joc/joc1.html#PiperW89,https://doi.org/10.1007/BF02252876 +Oded Goldreich 0001,Definitions and Properties of Zero-Knowledge Proof Systems.,1994,7,J. Cryptology,1,db/journals/joc/joc7.html#GoldreichO94,https://doi.org/10.1007/BF00195207 +Daniel R. L. Brown,Breaking RSA May Be As Difficult As Factoring.,2016,29,J. Cryptology,1,db/journals/joc/joc29.html#Brown16,https://doi.org/10.1007/s00145-014-9192-y +Rafael Pass,Public-Coin Parallel Zero-Knowledge for NP.,2013,26,J. Cryptology,1,db/journals/joc/joc26.html#PassRT13,https://doi.org/10.1007/s00145-011-9110-5 +Ben Morris,Deterministic Encryption with the Thorp Shuffle.,2018,31,J. Cryptology,2,db/journals/joc/joc31.html#MorrisRS18,https://doi.org/10.1007/s00145-017-9262-z +Yan Zong Ding,Constant-Round Oblivious Transfer in the Bounded Storage Model.,2007,20,J. Cryptology,2,db/journals/joc/joc20.html#DingHRS07,https://doi.org/10.1007/s00145-006-0438-1 +Burton S. Kaliski Jr.,One-Way Permutations on Elliptic Curves.,1991,3,J. Cryptology,3,db/journals/joc/joc3.html#Kaliski91,https://doi.org/10.1007/BF00196911 +Julia Borghoff,Slender-Set Differential Cryptanalysis.,2013,26,J. Cryptology,1,db/journals/joc/joc26.html#BorghoffKLT13,https://doi.org/10.1007/s00145-011-9111-4 +Yosuke Todo,Integral Cryptanalysis on Full MISTY1.,2017,30,J. Cryptology,3,db/journals/joc/joc30.html#Todo17,https://doi.org/10.1007/s00145-016-9240-x +Paul C. van Oorschot,Parallel Collision Search with Cryptanalytic Applications.,1999,12,J. Cryptology,1,db/journals/joc/joc12.html#OorschotW99,https://doi.org/10.1007/PL00003816 +R. Forre,Methods and Instruments for Designing S-Boxes.,1990,2,J. Cryptology,3,db/journals/joc/joc2.html#Forre90,https://doi.org/10.1007/BF00190799 +Spyros S. Magliveras,New Approaches to Designing Public Key Cryptosystems Using One-Way Functions and Trapdoors in Finite Groups.,2002,15,J. Cryptology,4,db/journals/joc/joc15.html#MagliverasST02,https://doi.org/10.1007/s00145-001-0018-3 +Ran Canetti,Preface.,2005,18,J. Cryptology,3,db/journals/joc/joc18.html#Canetti05,https://doi.org/10.1007/s00145-005-1803-1 +László Csirmaz,The Size of a Share Must Be Large.,1997,10,J. Cryptology,4,db/journals/joc/joc10.html#Csirmaz97,https://doi.org/10.1007/s001459900029 +Douglas R. Stinson,The Combinatorics of Authentication and Secrecy Codes.,1990,2,J. Cryptology,1,db/journals/joc/joc2.html#Stinson90,https://doi.org/10.1007/BF02252868 +Ran Canetti,Maintaining Authenticated Communication in the Presence of Break-Ins.,2000,13,J. Cryptology,1,db/journals/joc/joc13.html#CanettiHH00,https://doi.org/10.1007/s001459910004 +Christof Paar,Guest Editorial.,2011,24,J. Cryptology,2,db/journals/joc/joc24.html#PaarQS11,https://doi.org/10.1007/s00145-011-9099-9 +Burton S. Kaliski Jr.,A Chosen Message Attack on Demytko's Elliptic Curve Cryptosystem.,1997,10,J. Cryptology,1,db/journals/joc/joc10.html#Kaliski97,https://doi.org/10.1007/s001459900020 +Marc Joye,Chinese Remaindering Based Cryptosystems in the Presence of Faults.,1999,12,J. Cryptology,4,db/journals/joc/joc12.html#JoyeLQ99,https://doi.org/10.1007/s001459900055 +John Black,CBC MACs for Arbitrary-Length Messages: The Three-Key Constructions.,2005,18,J. Cryptology,2,db/journals/joc/joc18.html#BlackR05,https://doi.org/10.1007/s00145-004-0016-3 +Jovan Dj. Golic,On Matroid Characterization of Ideal Secret Sharing Schemes.,1998,11,J. Cryptology,2,db/journals/joc/joc11.html#Golic98,https://doi.org/10.1007/s001459900036 +Mark H. Carpenter,"Corrigendum to ""A stable and conservative interface treatment of arbitrary spatial accuracy"" [J. Comput. Phys. 148 (1999) 341-365].",2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#CarpenterNG17,https://doi.org/10.1016/j.jcp.2017.09.052 +Carine Boudesocque-Dubois,An adaptive multidomain Chebyshev method for nonlinear eigenvalue problems: Application to self-similar solutions of gas dynamics equations with nonlinear heat conduction.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#Boudesocque-DuboisLGC13,https://doi.org/10.1016/j.jcp.2012.10.057 +E. J. Brambley,Time-domain implementation of an impedance boundary condition with boundary layer correction.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#BrambleyG16,https://doi.org/10.1016/j.jcp.2016.05.064 +Rouhollah Tavakoli,Computationally efficient approach for the minimization of volume constrained vector-valued Ginzburg-Landau energy functional.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#Tavakoli15,https://doi.org/10.1016/j.jcp.2015.04.020 +Geoffrey M. Vasil,Tensor calculus in polar coordinates using Jacobi polynomials.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#VasilBLOBO16,https://doi.org/10.1016/j.jcp.2016.08.013 +Jan Tobias Horstmann,Hybrid simulation combining two space-time discretization of the discrete-velocity Boltzmann equation.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#HorstmannGML17,https://doi.org/10.1016/j.jcp.2017.08.029 +Dinshaw S. Balsara,Multidimensional Riemann problem with self-similar internal structure. Part I - Application to hyperbolic conservation laws on structured meshes.,2014,277,J. Comput. Physics,,db/journals/jcphy/jcphy277.html#Balsara14,https://doi.org/10.1016/j.jcp.2014.07.053 +Wei Guan,Finite-difference modeling of the electroseismic logging in a fluid-saturated porous formation.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#GuanH08,https://doi.org/10.1016/j.jcp.2008.02.001 +Eric Séverac,A spectral vanishing viscosity for the LES of turbulent flows within rotating cavities.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#SeveracS07,https://doi.org/10.1016/j.jcp.2007.05.023 +Thomas Hagstrom,Grid stabilization of high-order one-sided differencing I: First-order hyperbolic systems.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#HagstromH07,https://doi.org/10.1016/j.jcp.2006.09.017 +Esa Niemi,Dynamic multi-source X-ray tomography using a spacetime level set method.,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#NiemiLKHHS15,https://doi.org/10.1016/j.jcp.2015.03.016 +Enrique Domingo Fernández-Nieto,A multilayer shallow water system for polydisperse sedimentation.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#Fernandez-NietoKLB13,https://doi.org/10.1016/j.jcp.2012.12.008 +Borja Servan-Camas,Non-negativity and stability analyses of lattice Boltzmann method for advection-diffusion equation.,2009,228,J. Comput. Physics,1,db/journals/jcphy/jcphy228.html#Servan-CamasT09,https://doi.org/10.1016/j.jcp.2008.09.005 +Sheng Chen 0003,A simple enthalpy-based lattice Boltzmann scheme for complicated thermal systems.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#0003LZ12,https://doi.org/10.1016/j.jcp.2012.08.019 +Emre Biyikli,Multiresolution molecular mechanics: Implementation and efficiency.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#BiyikliT17,https://doi.org/10.1016/j.jcp.2016.10.010 +Konstantin Lipnikov,Analysis of the monotonicity conditions in the mimetic finite difference method for elliptic problems.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#LipnikovMS11,https://doi.org/10.1016/j.jcp.2010.12.039 +Lukas Failer,Adaptive time-step control for nonlinear fluid-structure interaction.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#FailerW18,https://doi.org/10.1016/j.jcp.2018.04.021 +Lin Lin 0001,Efficient iterative method for solving the Dirac-Kohn-Sham density functional theory.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#LinSE13,https://doi.org/10.1016/j.jcp.2013.03.030 +G. Clair,A multi-dimensional finite volume cell-centered direct ALE solver for hydrodynamics.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#ClairGP16,https://doi.org/10.1016/j.jcp.2016.08.050 +F. Vidal-Codina,A hybridizable discontinuous Galerkin method for computing nonlocal electromagnetic effects in three-dimensional metallic nanostructures.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#Vidal-CodinaNOP18,https://doi.org/10.1016/j.jcp.2017.11.025 +Matthew R. Cherry,A numerical method for predicting Rayleigh surface wave velocity in anisotropic crystals.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#CherrySG17,https://doi.org/10.1016/j.jcp.2017.09.002 +Anurag Dipankar,Symmetrized compact scheme for receptivity study of 2D transitional channel flow.,2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#DipankarS06,https://doi.org/10.1016/j.jcp.2005.10.018 +John P. Boyd 0001,Acceleration of algebraically-converging Fourier series when the coefficients have series in powers of 1/n.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#Boyd09,https://doi.org/10.1016/j.jcp.2008.10.039 +Luis E. Tobón,A new efficient 3D Discontinuous Galerkin Time Domain (DGTD) method for large and multiscale electromagnetic simulations.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#TobonRL15,https://doi.org/10.1016/j.jcp.2014.12.008 +Brody H. Foy,The Meshfree Finite Volume Method with application to multi-phase porous media models.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#FoyPT17,https://doi.org/10.1016/j.jcp.2016.12.045 +Sirui Tan,A staggered-grid finite-difference scheme optimized in the time-space domain for modeling scalar-wave propagation in geophysical problems.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#TanH14,https://doi.org/10.1016/j.jcp.2014.07.044 +SolKeun Jee,Conservative integral form of the incompressible Navier-Stokes equations for a rapidly pitching airfoil.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#JeeM12,https://doi.org/10.1016/j.jcp.2012.04.014 +Hiroshi Hayashi,Yin-Yang-Zhong grid: An overset grid system for a sphere.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#HayashiK16,https://doi.org/10.1016/j.jcp.2015.11.016 +Konstantinos Gourgoulias,Information criteria for quantifying loss of reversibility in parallelized KMC.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#GourgouliasKR17,https://doi.org/10.1016/j.jcp.2016.10.031 +Marta D'Elia,Optimization-based mesh correction with volume and convexity constraints.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#DEliaRPBS16,https://doi.org/10.1016/j.jcp.2016.02.050 +Sharadha Viswanathan,Numerical implementation of mixing and molecular transport in LES/PDF studies of turbulent reacting flows.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#ViswanathanWP11,https://doi.org/10.1016/j.jcp.2011.05.020 +H. Sitaraman,A matrix free implicit scheme for solution of resistive magneto-hydrodynamics equations on unstructured grids.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#SitaramanR13,https://doi.org/10.1016/j.jcp.2013.06.003 +William Oberkampf,Measures of agreement between computation and experiment: Validation metrics.,2006,217,J. Comput. Physics,1,db/journals/jcphy/jcphy217.html#OberkampfB06,https://doi.org/10.1016/j.jcp.2006.03.037 +Cong Huang,A simple smoothness indicator for the WENO scheme with adaptive order.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#HuangC18,https://doi.org/10.1016/j.jcp.2017.10.005 +A. G. B. Cruz,A consistent and stabilized continuous/discontinuous Galerkin method for fourth-order incompressible flow problems.,2012,231,J. Comput. Physics,16,db/journals/jcphy/jcphy231.html#CruzCD12,https://doi.org/10.1016/j.jcp.2012.05.002 +Yingda Cheng,Recovering doping profiles in semiconductor devices with the Boltzmann-Poisson model.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#ChengGR11,https://doi.org/10.1016/j.jcp.2011.01.034 +Florian Rauser,Ensemble-type numerical uncertainty information from single model integrations.,2015,292,J. Comput. Physics,,db/journals/jcphy/jcphy292.html#RauserMK15,https://doi.org/10.1016/j.jcp.2015.02.043 +Jasmine Foo,Multi-element probabilistic collocation method in high dimensions.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#FooK10,https://doi.org/10.1016/j.jcp.2009.10.043 +A. Shlivinski,Gaussian-windowed frame based method of moments formulation of surface-integral-equation for extended apertures.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#ShlivinskiL16,https://doi.org/10.1016/j.jcp.2015.12.028 +Matthew J. Zahr,An adjoint method for a high-order discretization of deforming domain conservation laws for optimization of flow problems.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#ZahrP16,https://doi.org/10.1016/j.jcp.2016.09.012 +Timothy J. Moroney,Efficient solution of two-sided nonlinear space-fractional diffusion equations using fast Poisson preconditioners.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#MoroneyY13,https://doi.org/10.1016/j.jcp.2013.03.029 +J. P. Briggs,Separable projection integrals for higher-order correlators of the cosmic microwave sky: Acceleration by factors exceeding 100.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#BriggsPFJS16,https://doi.org/10.1016/j.jcp.2016.01.019 +Edoardo Milotti,Model-based fit procedure for power-law-like spectra.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#Milotti06,https://doi.org/10.1016/j.jcp.2006.01.033 +Ee Han,An adaptive GRP scheme for compressible fluid flows.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#HanLT10,https://doi.org/10.1016/j.jcp.2009.10.038 +N. Anders Petersson,Discretizing singular point sources in hyperbolic wave propagation problems.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#PeterssonOSB16,https://doi.org/10.1016/j.jcp.2016.05.060 +Jung Hee Seo,A high-order immersed boundary method for acoustic wave scattering and low-Mach number flow-induced sound in complex geometries.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#SeoM11,https://doi.org/10.1016/j.jcp.2010.10.017 +Jonghoon Bin,Adaptive mesh redistribution method for domains with complex boundaries.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#BinUH11,https://doi.org/10.1016/j.jcp.2011.01.021 +Bin Zhang,The equilibrium state method for hyperbolic conservation laws with stiff reaction terms.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#ZhangLCW14,https://doi.org/10.1016/j.jcp.2013.12.043 +Yue Yu,Fractional modeling of viscoelasticity in 3D cerebral arteries and aneurysms.,2016,323,J. Comput. Physics,,db/journals/jcphy/jcphy323.html#YuPK16,https://doi.org/10.1016/j.jcp.2016.06.038 +P. Salinas,A discontinuous control volume finite element method for multi-phase flow in heterogeneous porous media.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#SalinasPXOPJ18,https://doi.org/10.1016/j.jcp.2017.09.058 +Seth B. Dworkin,A mass-conserving vorticity-velocity formulation with application to nonreacting and reacting flows.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#DworkinBS06,https://doi.org/10.1016/j.jcp.2005.11.002 +David A. Brown,A monolithic homotopy continuation algorithm with application to computational fluid dynamics.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#BrownZ16,https://doi.org/10.1016/j.jcp.2016.05.031 +A. Cervone,Simulation of axisymmetric jets with a finite element Navier-Stokes solver and a multilevel VOF approach.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#CervoneMS10,https://doi.org/10.1016/j.jcp.2010.05.025 +Shiwei Zhou,A variational level set method for the topology optimization of steady-state Navier-Stokes flow.,2008,227,J. Comput. Physics,24,db/journals/jcphy/jcphy227.html#ZhouL08,https://doi.org/10.1016/j.jcp.2008.08.022 +C. Brehm,A locally stabilized immersed boundary method for the compressible Navier-Stokes equations.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#BrehmHF15,https://doi.org/10.1016/j.jcp.2015.04.023 +Giampietro Carpentieri,Adjoint-based aerodynamic shape optimization on unstructured meshes.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#CarpentieriKT07,https://doi.org/10.1016/j.jcp.2007.02.011 +Adarsh Krishnamurthy,Patient-specific models of cardiac biomechanics.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#KrishnamurthyVCFNBSKNOMK13,https://doi.org/10.1016/j.jcp.2012.09.015 +Ali Khajeh-Saeed,Acceleration of the Smith-Waterman algorithm using single and multiple graphics processors.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#Khajeh-SaeedPP10,https://doi.org/10.1016/j.jcp.2010.02.009 +Siddhartha Mishra,Multi-level Monte Carlo finite volume methods for uncertainty quantification of acoustic wave propagation in random heterogeneous layered medium.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#MishraSS16,https://doi.org/10.1016/j.jcp.2016.02.014 +Wurigen Bo,Adaptive reconnection-based arbitrary Lagrangian Eulerian method.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#BoS15,https://doi.org/10.1016/j.jcp.2015.07.032 +P. Tamain,TOKAM-3D: A 3D fluid code for transport and turbulence in the edge plasma of Tokamaks.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#TamainGTGGSSCC10,https://doi.org/10.1016/j.jcp.2009.09.031 +Yalchin Efendiev,Generalized multiscale finite element methods (GMsFEM).,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#EfendievGH13,https://doi.org/10.1016/j.jcp.2013.04.045 +Romain Aubry,A three-dimensional parametric mesher with surface boundary-layer capability.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#AubryKMD14,https://doi.org/10.1016/j.jcp.2014.03.057 +Carlos Jerez-Hanckes,Multitrace/singletrace formulations and Domain Decomposition Methods for the solution of Helmholtz transmission problems for bounded composite scatterers.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#Jerez-HanckesPT17,https://doi.org/10.1016/j.jcp.2017.08.050 +Xiaoxin Lu,Multiscale modeling of nonlinear electric conductivity in graphene-reinforced nanocomposites taking into account tunnelling effect.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#LuYDB17,https://doi.org/10.1016/j.jcp.2017.01.063 +Petr Hellinger,Langevin representation of Coulomb collisions for bi-Maxwellian plasmas.,2010,229,J. Comput. Physics,14,db/journals/jcphy/jcphy229.html#HellingerT10,https://doi.org/10.1016/j.jcp.2010.04.009 +Joseph S. Shang,A computational approach for hypersonic nonequilibrium radiation utilizing space partition algorithm and Gauss quadrature.,2014,266,J. Comput. Physics,,db/journals/jcphy/jcphy266.html#ShangAHS14,https://doi.org/10.1016/j.jcp.2014.02.007 +Mostafa Jamshidian,Phase field modelling of stressed grain growth: Analytical study and the effect of microstructural length scale.,2014,261,J. Comput. Physics,,db/journals/jcphy/jcphy261.html#JamshidianR14,https://doi.org/10.1016/j.jcp.2013.12.022 +Antonius Dorda,A WENO-solver combined with adaptive momentum discretization for the Wigner transport equation and its application to resonant tunneling diodes.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#DordaS15,https://doi.org/10.1016/j.jcp.2014.12.026 +Xiaohui Su,On the characteristics-based ACM for incompressible flows.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#SuZH07,https://doi.org/10.1016/j.jcp.2007.08.009 +Tsorng-Whay Pan,A 3D DLM/FD method for simulating the motion of spheres and ellipsoids under creeping flow conditions.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#PanGCG18,https://doi.org/10.1016/j.jcp.2017.09.042 +Franco Auteri,Spectral solvers for spherical elliptic problems.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#AuteriQ07,https://doi.org/10.1016/j.jcp.2007.07.011 +Jasper J. Kreeft,Mixed mimetic spectral element method for Stokes flow: A pointwise divergence-free solution.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#KreeftG13,https://doi.org/10.1016/j.jcp.2012.10.043 +David B. Stein,Immersed boundary smooth extension: A high-order method for solving PDE on arbitrary smooth domains using Fourier spectral methods.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#SteinGT16,https://doi.org/10.1016/j.jcp.2015.10.023 +Jeff D. Eldredge,Numerical simulation of the fluid dynamics of 2D rigid body motion with the vortex particle method.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#Eldredge07,https://doi.org/10.1016/j.jcp.2006.06.038 +James M. McDonough,An alternative discretization and solution procedure for the dual phase-lag equation.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#McDonoughKKY06,https://doi.org/10.1016/j.jcp.2006.03.023 +Jason E. Hicken,Dual consistency and functional accuracy: a finite-difference perspective.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#HickenZ14,https://doi.org/10.1016/j.jcp.2013.08.014 +Di Yang,Simulation of viscous flows with undulatory boundaries: Part II. Coupling with other solvers for two-fluid computations.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#YangS11a,https://doi.org/10.1016/j.jcp.2011.02.035 +Zhan Chen,Differential geometry based solvation model I: Eulerian formulation.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#ChenBW10,https://doi.org/10.1016/j.jcp.2010.06.036 +Sang-Hyeon Lee,Effects of condition number on preconditioning for low Mach number flows.,2012,231,J. Comput. Physics,10,db/journals/jcphy/jcphy231.html#Lee12,https://doi.org/10.1016/j.jcp.2012.02.004 +V. Subramanian,Higher-order mimetic methods for unstructured meshes.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#SubramanianP06,https://doi.org/10.1016/j.jcp.2006.03.028 +H. C. Yee,"Corrigendum to ""Spurious behavior of shock-capturing methods by the fractional step approach: Problems containing stiff source terms and discontinuities"" [J. Comput. Physics 241 (2013) 266-291].",2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#YeeK0S13a,https://doi.org/10.1016/j.jcp.2013.05.021 +Ahmad El-Ajou,Approximate analytical solution of the nonlinear fractional KdV-Burgers equation: A new iterative algorithm.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#El-AjouAM15,https://doi.org/10.1016/j.jcp.2014.08.004 +Moataz O. Abu-Al-Saud,Multiscale level-set method for accurate modeling of immiscible two-phase flow with deposited thin films on solid surfaces.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#Abu-Al-SaudRT17,https://doi.org/10.1016/j.jcp.2016.12.038 +N. Chatzidai,On the elliptic mesh generation in domains containing multiple inclusions and undergoing large deformations.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#ChatzidaiGDT09,https://doi.org/10.1016/j.jcp.2008.11.020 +Choon Seng Chew,A generalized finite-difference (GFD) ALE scheme for incompressible flows around moving solid bodies on hybrid meshfree-Cartesian grids.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#ChewS006,https://doi.org/10.1016/j.jcp.2006.02.025 +Paola Gervasio,Algebraic fractional-step schemes with spectral methods for the incompressible Navier-Stokes equations.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#GervasioSV06,https://doi.org/10.1016/j.jcp.2005.09.018 +Felix Rieper,The influence of cell geometry on the accuracy of upwind schemes in the low mach number regime.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#RieperB09,https://doi.org/10.1016/j.jcp.2009.01.002 +Konstantin Lipnikov,The mimetic finite difference method for elliptic and parabolic problems with a staggered discretization of diffusion coefficient.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#LipnikovMMS16,https://doi.org/10.1016/j.jcp.2015.10.031 +Shin-ichi Iga,An equatorially enhanced grid with smooth resolution distribution generated by a spring dynamics method.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#Iga17,https://doi.org/10.1016/j.jcp.2016.10.017 +Pierric Kersaudy,A new surrogate modeling technique combining Kriging and polynomial chaos expansions - Application to uncertainty analysis in computational dosimetry.,2015,286,J. Comput. Physics,,db/journals/jcphy/jcphy286.html#KersaudySVPW15,https://doi.org/10.1016/j.jcp.2015.01.034 +Edward Santilli,The Stratified Ocean Model with Adaptive Refinement (SOMAR).,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#SantilliS15,https://doi.org/10.1016/j.jcp.2015.03.008 +S. Afkhami,A mesh-dependent model for applying dynamic contact angles to VOF simulations.,2009,228,J. Comput. Physics,15,db/journals/jcphy/jcphy228.html#AfkhamiZB09,https://doi.org/10.1016/j.jcp.2009.04.027 +Magnus Svärd,Weak solutions and convergent numerical schemes of modified compressible Navier-Stokes equations.,2015,288,J. Comput. Physics,,db/journals/jcphy/jcphy288.html#Svard15,https://doi.org/10.1016/j.jcp.2015.02.013 +Benzhuo Lu,Poisson-Nernst-Planck equations for simulating biomolecular diffusion-reaction processes I: Finite element solutions.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#LuHMZ10,https://doi.org/10.1016/j.jcp.2010.05.035 +Keizo Fujimoto,Electromagnetic full particle code with adaptive mesh refinement technique: Application to the current sheet evolution.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#FujimotoM06,https://doi.org/10.1016/j.jcp.2005.10.003 +Pierre Degond,A moving interface method for dynamic kinetic-fluid coupling.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#DegondDM07,https://doi.org/10.1016/j.jcp.2007.08.027 +Hao-Ran Liu,Fluid-structure interaction involving dynamic wetting: 2D modeling and simulations.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#LiuGD17,https://doi.org/10.1016/j.jcp.2017.07.017 +Hong Wang,A direct O(N log2 N) finite difference method for fractional diffusion equations.,2010,229,J. Comput. Physics,21,db/journals/jcphy/jcphy229.html#WangWS10,https://doi.org/10.1016/j.jcp.2010.07.011 +Dinshaw S. Balsara,Multidimensional Riemann problem with self-similar internal structure - part III - a multidimensional analogue of the HLLI Riemann solver for conservative hyperbolic systems.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#BalsaraN17,https://doi.org/10.1016/j.jcp.2017.05.038 +Igor Podlubny,Matrix approach to discrete fractional calculus II: Partial fractional differential equations.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#PodlubnyCSCJ09,https://doi.org/10.1016/j.jcp.2009.01.014 +Mustafa Kuzuoglu,Combining perturbation theory and transformation electromagnetics for finite element solution of Helmholtz-type scattering problems.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#KuzuogluO14,https://doi.org/10.1016/j.jcp.2014.06.057 +Yuki Homma,Numerical modeling of thermal force in a plasma for test-ion transport simulation based on Monte Carlo Binary Collision Model.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#HommaH12,https://doi.org/10.1016/j.jcp.2011.12.037 +Denys Dutykh,Finite volume schemes for dispersive wave propagation and runup.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#DutykhKM11,https://doi.org/10.1016/j.jcp.2011.01.003 +Chuchu Chen,Preservation of physical properties of stochastic Maxwell equations with additive noise via stochastic multi-symplectic methods.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#ChenHZ16,https://doi.org/10.1016/j.jcp.2015.11.052 +Nimrod Rospsha,Closed form FDTD-compatible Green's function based on combinatorics.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#RospshaK07,https://doi.org/10.1016/j.jcp.2007.05.017 +Shaozhong Deng,Extending the fast multipole method for charges inside a dielectric sphere in an ionic solvent: High-order image approximations for reaction fields.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#DengC07,https://doi.org/10.1016/j.jcp.2007.09.001 +Xiangfan Piao,One-step L(α)-stable temporal integration for the backward semi-Lagrangian scheme and its application in guiding center problems.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#PiaoKK18,https://doi.org/10.1016/j.jcp.2018.04.019 +Wanai Li,The multi-dimensional limiters for solving hyperbolic conservation laws on unstructured grids.,2011,230,J. Comput. Physics,21,db/journals/jcphy/jcphy230.html#LiRLL11,https://doi.org/10.1016/j.jcp.2011.06.018 +Stefano Berrone,Towards effective flow simulations in realistic discrete fracture networks.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#BerronePS16,https://doi.org/10.1016/j.jcp.2016.01.009 +Lyes Rahmouni,Two volume integral equations for the inhomogeneous and anisotropic forward problem in electroencephalography.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#RahmouniMA17,https://doi.org/10.1016/j.jcp.2017.07.013 +Suchuan Dong,An outflow boundary condition and algorithm for incompressible two-phase flows with phase field approach.,2014,266,J. Comput. Physics,,db/journals/jcphy/jcphy266.html#Dong14,https://doi.org/10.1016/j.jcp.2014.02.011 +Florian Schneider,Kershaw closures for linear transport equations in slab geometry II: High-order realizability-preserving discontinuous-Galerkin schemes.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#Schneider16a,https://doi.org/10.1016/j.jcp.2016.07.014 +Paul Norman,GPU-accelerated Classical Trajectory Calculation Direct Simulation Monte Carlo applied to shock waves.,2013,247,J. Comput. Physics,,db/journals/jcphy/jcphy247.html#NormanVS13,https://doi.org/10.1016/j.jcp.2013.03.060 +Changho Kim,Quantification of sampling uncertainty for molecular dynamics simulation: Time-dependent diffusion coefficient in simple fluids.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#KimBK15,https://doi.org/10.1016/j.jcp.2015.09.021 +William Rundell,Recovering an unknown source in a fractional diffusion problem.,2018,368,J. Comput. Physics,,db/journals/jcphy/jcphy368.html#RundellZ18,https://doi.org/10.1016/j.jcp.2018.04.046 +Benjamin Collins,Stability and accuracy of 3D neutron transport simulations using the 2D/1D method in MPACT.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#CollinsSKYKGLDG16,https://doi.org/10.1016/j.jcp.2016.08.022 +T. Lähivaara,A non-uniform basis order for the discontinuous Galerkin method of the 3D dissipative wave equation with perfectly matched layer.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#LahivaaraH10,https://doi.org/10.1016/j.jcp.2010.03.030 +Jingwei Hu,An asymptotic-preserving scheme for the semiconductor Boltzmann equation toward the energy-transport limit.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#HuW15,https://doi.org/10.1016/j.jcp.2014.10.050 +Dongryeol Lee,Multibody multipole methods.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#LeeOG12,https://doi.org/10.1016/j.jcp.2012.06.027 +Qing-Hua Li,Transient heat conduction analysis using the MLPG method and modified precise time step integration method.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#LiCK11,https://doi.org/10.1016/j.jcp.2011.01.019 +Qianshun Chang,Numerical computations for long-wave short-wave interaction equations in semi-classical limit.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#ChangWL08,https://doi.org/10.1016/j.jcp.2008.05.015 +Jiming Wu,Linearity preserving nine-point schemes for diffusion equation on distorted quadrilateral meshes.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#WuDGY10,https://doi.org/10.1016/j.jcp.2010.01.007 +Jianzhen Qian,The generalized Riemann problems for compressible fluid flows: Towards high order.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#QianLW14,https://doi.org/10.1016/j.jcp.2013.12.002 +Daehyun Wee,Modified interpolation kernels for treating diffusion and remeshing in vortex methods.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#WeeG06,https://doi.org/10.1016/j.jcp.2005.08.009 +Wei Guo 0004,Hybrid semi-Lagrangian finite element-finite difference methods for the Vlasov equation.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#GuoQ13,https://doi.org/10.1016/j.jcp.2012.09.014 +Kai Huang,Generalized Foldy-Lax formulation.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#HuangSZ10,https://doi.org/10.1016/j.jcp.2010.02.021 +Johan Larsson,Stability criteria for hybrid difference methods.,2008,227,J. Comput. Physics,5,db/journals/jcphy/jcphy227.html#LarssonG08,https://doi.org/10.1016/j.jcp.2007.11.025 +Ronny Ramlau,A Mumford-Shah level-set approach for the inversion and segmentation of X-ray tomography data.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#RamlauR07,https://doi.org/10.1016/j.jcp.2006.06.041 +Rafael J. de Moraes,Multiscale gradient computation for flow in heterogeneous porous media.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#MoraesRHJ17,https://doi.org/10.1016/j.jcp.2017.02.024 +Amir Paster,Connecting the dots: Semi-analytical and random walk numerical solutions of the diffusion-reaction equation with stochastic initial conditions.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#PasterBB14,https://doi.org/10.1016/j.jcp.2014.01.020 +L. Stricker,Numerical simulation of artificial microswimmers driven by Marangoni flow.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#Stricker17,https://doi.org/10.1016/j.jcp.2017.07.007 +Bernard Parent,Positivity-preserving dual time stepping schemes for gas dynamics.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#Parent18,https://doi.org/10.1016/j.jcp.2018.01.046 +Manuel Kindelan,Radial basis function interpolation in the limit of increasingly flat basis functions.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#KindelanMG16,https://doi.org/10.1016/j.jcp.2015.12.015 +Wenying Lu,Mass preserving discontinuous Galerkin methods for Schrödinger equations.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#LuHL15,https://doi.org/10.1016/j.jcp.2014.11.014 +Dmitry A. Fedosov,Velocity limit in DPD simulations of wall-bounded flows.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#FedosovPK08,https://doi.org/10.1016/j.jcp.2007.11.009 +Claes Eskilsson,Spectral/hp discontinuous Galerkin methods for modelling 2D Boussinesq equations.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#EskilssonS06,https://doi.org/10.1016/j.jcp.2005.07.017 +D. Fraggedakis,Discretization of three-dimensional free surface flows and moving boundary problems via elliptic grid methods based on variational principles.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#FraggedakisPDT17,https://doi.org/10.1016/j.jcp.2017.04.060 +Mahmoud Ismail,Adjoint-based inverse analysis of windkessel parameters for patient-specific vascular models.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#IsmailWG13,https://doi.org/10.1016/j.jcp.2012.10.028 +Tian Ding,Inverse transport calculations in optical imaging with subspace optimization algorithms.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#DingR14,https://doi.org/10.1016/j.jcp.2014.05.014 +François Fraysse,Upwind methods for the Baer-Nunziato equations and higher-order reconstruction using artificial viscosity.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#FraysseRRV16,https://doi.org/10.1016/j.jcp.2016.09.017 +D. Samaddar,Parallelization in time of numerical simulations of fully-developed plasma turbulence using the parareal algorithm.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#SamaddarNS10,https://doi.org/10.1016/j.jcp.2010.05.012 +Chu Wang,Connectivity-free front tracking method for multiphase flows with free surfaces.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#WangWZ13,https://doi.org/10.1016/j.jcp.2013.01.023 +Wenqiang Feng,Preconditioned steepest descent methods for some nonlinear elliptic equations involving p-Laplacian terms.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#FengSWW17,https://doi.org/10.1016/j.jcp.2016.12.046 +Brittany D. Froese,Fast finite difference solvers for singular solutions of the elliptic Monge-Ampère equation.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#FroeseO11,https://doi.org/10.1016/j.jcp.2010.10.020 +Buyang Li,A new approach for numerical simulation of the time-dependent Ginzburg-Landau equations.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#LiZ15,https://doi.org/10.1016/j.jcp.2015.09.049 +Giovanna Guidoboni,Stable loosely-coupled-type algorithm for fluid-structure interaction in blood flow.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#GuidoboniGCC09,https://doi.org/10.1016/j.jcp.2009.06.007 +Jie Shen 0001,An efficient moving mesh spectral method for the phase-field model of two-phase flows.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#ShenY09,https://doi.org/10.1016/j.jcp.2009.01.009 +Dimitri J. Mavriplis,Construction of the discrete geometric conservation law for high-order time-accurate simulations on dynamic meshes.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#MavriplisY06,https://doi.org/10.1016/j.jcp.2005.08.018 +Keh-Ming Shyue,A wave-propagation based volume tracking method for compressible multicomponent flow in two space dimensions.,2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#Shyue06,https://doi.org/10.1016/j.jcp.2005.10.030 +M. S. Chance,Calculation of the vacuum Green's function valid even for high toroidal mode numbers in tokamaks.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#ChanceTS07,https://doi.org/10.1016/j.jcp.2006.06.025 +Weigang Yao,A nonlinear modeling approach using weighted piecewise series and its applications to predict unsteady flows.,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#YaoL16,https://doi.org/10.1016/j.jcp.2016.04.052 +Edoardo Alinovi,A boundary element method for Stokes flows with interfaces.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#AlinoviB18,https://doi.org/10.1016/j.jcp.2017.12.004 +Erwin Franquet,Runge-Kutta discontinuous Galerkin method for the approximation of Baer and Nunziato type multiphase models.,2012,231,J. Comput. Physics,11,db/journals/jcphy/jcphy231.html#FranquetP12,https://doi.org/10.1016/j.jcp.2012.02.002 +Vitoriano Ruas,Hermite finite elements for diffusion phenomena.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#RuasBK13,https://doi.org/10.1016/j.jcp.2012.09.036 +Daniel A. Nelson,DG-FTLE: Lagrangian coherent structures with high-order discontinuous-Galerkin methods.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#NelsonJ15,https://doi.org/10.1016/j.jcp.2015.03.040 +David B. Stein,Immersed Boundary Smooth Extension (IBSE): A high-order method for solving incompressible flows in arbitrary smooth domains.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#SteinGT17,https://doi.org/10.1016/j.jcp.2017.01.010 +Souvik Chakraborty,An efficient algorithm for building locally refined hp - adaptive H-PCFE: Application to uncertainty quantification.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#ChakrabortyC17,https://doi.org/10.1016/j.jcp.2017.09.024 +Shiyi Li,A unified gas-kinetic scheme for axisymmetric flow in all Knudsen number regimes.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#LiLFX18,https://doi.org/10.1016/j.jcp.2018.04.004 +Jiangguo Liu,ELLAM for resolving the kinematics of two-dimensional resistive magnetohydrodynamic flows.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#LiuTC07,https://doi.org/10.1016/j.jcp.2007.09.009 +Bruce I. Cohen,Simulation of laser-plasma interactions and fast-electron transport in inhomogeneous plasma.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#CohenKD10,https://doi.org/10.1016/j.jcp.2010.03.001 +Sergey V. Shepel,New finite-element/finite-volume level set formulation for modelling two-phase incompressible flows.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#ShepelS06,https://doi.org/10.1016/j.jcp.2006.02.008 +Jeffrey W. Banks,Deforming composite grids for solving fluid structure problems.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#BanksHS12,https://doi.org/10.1016/j.jcp.2011.12.034 +Qing Nie,Compact integration factor methods in high spatial dimensions.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#NieWZL08,https://doi.org/10.1016/j.jcp.2008.01.050 +Jean C. Ragusa,A robust SN-DG-approximation for radiation transport in optically thick and diffusive regimes.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#RagusaGK12,https://doi.org/10.1016/j.jcp.2011.11.017 +Jun Bo Cheng,A sub-cell WENO reconstruction method for spatial derivatives in the ADER scheme.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#ChengTJT13,https://doi.org/10.1016/j.jcp.2013.05.034 +John Harlim,An ensemble Kalman filter for statistical estimation of physics constrained nonlinear regression models.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#HarlimMM14,https://doi.org/10.1016/j.jcp.2013.10.025 +Lulu Tian,An h-adaptive local discontinuous Galerkin method for the Navier-Stokes-Korteweg equations.,2016,319,J. Comput. Physics,,db/journals/jcphy/jcphy319.html#TianXKV16,https://doi.org/10.1016/j.jcp.2016.05.027 +Daniel A. Cogswell,Simulation of incompressible two-phase flow in porous media with large *teps.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#CogswellS17,https://doi.org/10.1016/j.jcp.2017.06.007 +Xiaofeng Yang 0003,Numerical approximations for the molecular beam epitaxial growth model based on the invariant energy quadratization method.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#YangZW17,https://doi.org/10.1016/j.jcp.2016.12.025 +Paul Tsuji,A sweeping preconditioner for time-harmonic Maxwell's equations with finite elements.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#TsujiEY12,https://doi.org/10.1016/j.jcp.2012.01.025 +John Harlim,Mathematical strategies for filtering complex systems: Regularly spaced sparse observations.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#HarlimM08,https://doi.org/10.1016/j.jcp.2008.01.049 +Stéphanie Chaillat,Theory and implementation of andℂ9*-matrix based iterative and direct solvers for Helmholtz and elastodynamic oscillatory kernels.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#ChaillatDC17,https://doi.org/10.1016/j.jcp.2017.09.013 +Zhiyong Li,A data-driven adaptive Reynolds-averaged Navier-Stokes k-χ9* model for turbulent flow.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#LiZBHM17,https://doi.org/10.1016/j.jcp.2017.05.009 +C. D. Sijoy,Volume-of-fluid algorithm with different modified dynamic material ordering methods and their comparisons.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#SijoyC10,https://doi.org/10.1016/j.jcp.2010.01.031 +Yong Li 0018,A higher-order Robert-Asselin type time filter.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#LiT14,https://doi.org/10.1016/j.jcp.2013.11.022 +Kevin W. Connington,Lattice Boltzmann simulations of forced wetting transitions of drops on superhydrophobic surfaces.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#ConningtonL13,https://doi.org/10.1016/j.jcp.2013.05.012 +Manuel Athènes,Free energy reconstruction from steered dynamics without post-processing.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#AthenesM10,https://doi.org/10.1016/j.jcp.2010.06.003 +Alexandre Vion,Double sweep preconditioner for optimized Schwarz methods applied to the Helmholtz problem.,2014,266,J. Comput. Physics,,db/journals/jcphy/jcphy266.html#VionG14,https://doi.org/10.1016/j.jcp.2014.02.015 +Longfei Xiao,A free surface interpolation approach for rapid simulation of short waves in meshless numerical wave tank based on the radial basis function.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#XiaoYPT16,https://doi.org/10.1016/j.jcp.2015.12.003 +R. C. Aldredge,Semi-Lagrangian advection-propagation (SLAP) scheme for three-dimensional interface tracking.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#Aldredge10,https://doi.org/10.1016/j.jcp.2010.03.006 +Thibault Dairay,Numerical dissipation vs. subgrid-scale modelling for large eddy simulation.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#DairayLLV17,https://doi.org/10.1016/j.jcp.2017.02.035 +Li-Lian Wang,On hp-convergence of prolate spheroidal wave functions and a new well-conditioned prolate-collocation scheme.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#WangZZ14,https://doi.org/10.1016/j.jcp.2014.03.005 +Ping Fan,A new smoothness indicator for improving the weighted essentially non-oscillatory scheme.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#FanSTY14,https://doi.org/10.1016/j.jcp.2014.03.032 +Nicola Castelletto,Scalable algorithms for three-field mixed finite element coupled poromechanics.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#CastellettoWF16,https://doi.org/10.1016/j.jcp.2016.09.063 +Martin Tillenius,A scalable RBF-FD method for atmospheric flow.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#TilleniusLLF15,https://doi.org/10.1016/j.jcp.2015.06.003 +Qin Li,Exponential Runge-Kutta for the inhomogeneous Boltzmann equations with high order of accuracy.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#LiP14,https://doi.org/10.1016/j.jcp.2013.11.020 +Jianke Yang,Newton-conjugate-gradient methods for solitary wave computations.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#Yang09,https://doi.org/10.1016/j.jcp.2009.06.012 +Bryan D. Quaife,High-volume fraction simulations of two-dimensional vesicle suspensions.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#QuaifeB14,https://doi.org/10.1016/j.jcp.2014.06.013 +Jingzhi Li,Enhanced multilevel linear sampling methods for inverse scattering problems.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#LiLW14,https://doi.org/10.1016/j.jcp.2013.09.048 +Chunlei Liang,A comparison of computational efficiencies of spectral difference method and correction procedure via reconstruction.,2013,239,J. Comput. Physics,,db/journals/jcphy/jcphy239.html#LiangCP13,https://doi.org/10.1016/j.jcp.2013.01.001 +Nail A. Gumerov,Efficient spectral and pseudospectral algorithms for 3D simulations of whistler-mode waves in a plasma.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#GumerovKSSP11,https://doi.org/10.1016/j.jcp.2010.12.038 +Chunjiang Ran,A gradient based algorithm to solve inverse plane bimodular problems of identification.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#RanYZ18,https://doi.org/10.1016/j.jcp.2017.11.005 +Alfredo Canelas,A new reconstruction method for the inverse potential problem.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#CanelasLN14,https://doi.org/10.1016/j.jcp.2013.10.020 +A. Iafrati,Modeling of ocean-atmosphere interaction phenomena during the breaking of modulated wave trains.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#IafratiBO14,https://doi.org/10.1016/j.jcp.2013.12.045 +Ahmad Kadoura,Accelerating Monte Carlo molecular simulations by reweighting and reconstructing Markov chains: Extrapolation of canonical ensemble averages and second derivatives to different temperature and density conditions.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#KadouraSS14,https://doi.org/10.1016/j.jcp.2014.03.038 +N. Germann,Numerical solution of an extended White-Metzner model for eccentric Taylor-Couette flow.,2011,230,J. Comput. Physics,21,db/journals/jcphy/jcphy230.html#GermannDW11,https://doi.org/10.1016/j.jcp.2011.07.007 +David Flad,Simulation of underresolved turbulent flows by adaptive filtering using the high order discontinuous Galerkin spectral element method.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#FladBM16,https://doi.org/10.1016/j.jcp.2015.11.064 +Murilo F. Tomé,Numerical simulation of viscoelastic flows using integral constitutive equations: A finite difference approach.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#TomeAAP08,https://doi.org/10.1016/j.jcp.2007.12.023 +Abouzar Kaboudian,The ghost solid method for the elastic solid-solid interface.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#KaboudianK14,https://doi.org/10.1016/j.jcp.2013.09.042 +Yongbin Ge,Multigrid method based on the transformation-free HOC scheme on nonuniform grids for 2D convection diffusion problems.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#GeC11,https://doi.org/10.1016/j.jcp.2011.02.027 +D. Shane Stafford,Using level sets for creating virtual random packs of non-spherical convex shapes.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#StaffordJ10,https://doi.org/10.1016/j.jcp.2010.01.003 +Paulo S. Branicio,Local stress calculation in simulations of multicomponent systems.,2009,228,J. Comput. Physics,22,db/journals/jcphy/jcphy228.html#BranicioS09,https://doi.org/10.1016/j.jcp.2009.08.024 +Chuanbin Du,An efficient S-DDM iterative approach for compressible contamination fluid flows in porous media.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#DuL10,https://doi.org/10.1016/j.jcp.2010.02.019 +Noma Park,A velocity-estimation subgrid model constrained by subgrid scale dissipation.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#ParkM08,https://doi.org/10.1016/j.jcp.2007.12.020 +Damien Violeau,On the maximum time step in weakly compressible SPH.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#VioleauL14,https://doi.org/10.1016/j.jcp.2013.09.001 +Hammad Mazhar,A differential variational approach for handling fluid-solid interaction problems via smoothed particle hydrodynamics.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#MazharPRJN18,https://doi.org/10.1016/j.jcp.2018.05.013 +Tsung-Min Hwang,"Erratum to ""Numerical simulation of three dimensional pyramid quantum dot"" [J. Comput. Phys. 196 (2004) 208-232].",2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#HwangLWW06,https://doi.org/10.1016/j.jcp.2005.11.001 +Philippe Chatelain,Isotropic compact interpolation schemes for particle methods.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#ChatelainL08,https://doi.org/10.1016/j.jcp.2007.11.039 +Liborio I. Costa,Meaningful *cales from Monte Carlo simulations of particle systems with hard-core interactions.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#Costa16,https://doi.org/10.1016/j.jcp.2016.09.023 +Kacper Kornet,A method for spectral DNS of low Rm channel flows based on the least dissipative modes.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#KornetP15,https://doi.org/10.1016/j.jcp.2015.05.018 +Kokou B. Dossou,Finite element computation of grating scattering matrices and application to photonic crystal band calculations.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#DossouBB06,https://doi.org/10.1016/j.jcp.2006.03.029 +Joaquín Ortega-Casanova,A numerical method for the study of nonlinear stability of axisymmetric flows based on the vector potential.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#Ortega-CasanovaF08,https://doi.org/10.1016/j.jcp.2007.11.041 +Liron Yatziv,O(N) implementation of the fast marching algorithm.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#YatzivBS06,https://doi.org/10.1016/j.jcp.2005.08.005 +Peter A. Bosler,A Lagrangian particle method with remeshing for tracer transport on the sphere.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#BoslerKKJ17,https://doi.org/10.1016/j.jcp.2017.03.052 +Hehu Xie,A multilevel finite element method for Fredholm integral eigenvalue problems.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#XieZ15,https://doi.org/10.1016/j.jcp.2015.09.043 +Pengtao Sun,A domain decomposition method for two-phase transport model in the cathode of a polymer electrolyte fuel cell.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#SunXWX09,https://doi.org/10.1016/j.jcp.2009.05.008 +Frederik Verhaeghe,Lattice Boltzmann modeling of microchannel flow in slip flow regime.,2009,228,J. Comput. Physics,1,db/journals/jcphy/jcphy228.html#VerhaegheLB09,https://doi.org/10.1016/j.jcp.2008.09.004 +Benjamin J. Sturdevant,Finite time step and spatial grid effects in 8*f simulation of warm plasmas.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#SturdevantP16,https://doi.org/10.1016/j.jcp.2015.10.055 +Sergey Litvinov,Towards consistence and convergence of conservative SPH approximations.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#LitvinovHA15,https://doi.org/10.1016/j.jcp.2015.08.041 +Andris M. Dimits,Understanding the accuracy of Nanbu's numerical Coulomb collision operator.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#DimitsWCCH09,https://doi.org/10.1016/j.jcp.2009.03.041 +Hui Liang,A new multi-domain method based on an analytical control surface for linear and second-order mean drift wave loads on floating bodies.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#LiangC17,https://doi.org/10.1016/j.jcp.2017.07.014 +Alireza Najafi-Yazdi,A low-dispersion and low-dissipation implicit Runge-Kutta scheme.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#Najafi-YazdiM13,https://doi.org/10.1016/j.jcp.2012.08.050 +Chunlei Liang,Spectral difference method for compressible flow on unstructured grids with mixed elements.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#LiangJW09,https://doi.org/10.1016/j.jcp.2008.12.038 +M. Ganesh,A high-order tangential basis algorithm for electromagnetic scattering by curved surfaces.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#GaneshH08,https://doi.org/10.1016/j.jcp.2008.01.016 +Craig Michoski,Adaptive hierarchic transformations for dynamically p-enriched slope-limiting over discontinuous Galerkin systems of generalized equations.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#MichoskiMDWKW11,https://doi.org/10.1016/j.jcp.2011.07.009 +Sumesh P. Thampi,Isotropic discrete Laplacian operators from lattice hydrodynamics.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#ThampiAAS13,https://doi.org/10.1016/j.jcp.2012.07.037 +Philip Mocz,Correspondence between constrained transport and vector potential methods for magnetohydrodynamics.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#Mocz17,https://doi.org/10.1016/j.jcp.2016.09.059 +Aaron Katz,High-order flux correction/finite difference schemes for strand grids.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#KatzW15,https://doi.org/10.1016/j.jcp.2014.11.019 +Denis V. Voskov,Operator-based linearization approach for modeling of multiphase multi-component flow in porous media.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#Voskov17,https://doi.org/10.1016/j.jcp.2017.02.041 +Vittorio Romano,2D numerical simulation of the MEP energy-transport model with a finite difference scheme.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#Romano07,https://doi.org/10.1016/j.jcp.2006.06.028 +Yoko Takakura,Direct-expansion forms of ADER schemes for conservation laws and their verification.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#Takakura06,https://doi.org/10.1016/j.jcp.2006.05.013 +Shaoping Quan,Simulations of multiphase flows with multiple length scales using moving mesh interface tracking with adaptive meshing.,2011,230,J. Comput. Physics,13,db/journals/jcphy/jcphy230.html#Quan11,https://doi.org/10.1016/j.jcp.2011.03.050 +John D. Towers,A source term method for Poisson problems on irregular domains.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#Towers18,https://doi.org/10.1016/j.jcp.2018.01.038 +Sunao Murashige,A numerical study on parasitic capillary waves using unsteady conformal mapping.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#MurashigeC17,https://doi.org/10.1016/j.jcp.2016.10.015 +William J. Layton,On the accuracy of the rotation form in simulations of the Navier-Stokes equations.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#LaytonMNOR09,https://doi.org/10.1016/j.jcp.2009.01.027 +Pramod K. Subbareddy,Scalar conservation and boundedness in simulations of compressible flow.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#SubbareddyKC17,https://doi.org/10.1016/j.jcp.2017.08.001 +Jesús Garicano-Mena,An entropy-variables-based formulation of residual distribution schemes for non-equilibrium flows.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#Garicano-MenaLD18,https://doi.org/10.1016/j.jcp.2018.02.020 +Jun Jiang,Some new discretization and adaptation and multigrid methods for 2-D 3-T diffusion equations.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#JiangHSZ07,https://doi.org/10.1016/j.jcp.2007.01.013 +Yunqing Huang,Interior penalty DG methods for Maxwell's equations in dispersive media.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#HuangLY11,https://doi.org/10.1016/j.jcp.2011.02.031 +Xianyi Zeng,A systematic approach for constructing higher-order immersed boundary and ghost fluid methods for fluid-structure interaction problems.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#ZengF12,https://doi.org/10.1016/j.jcp.2011.12.027 +Matthias Maier,Dipole excitation of surface plasmon on a conducting sheet: Finite element approximation and validation.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#MaierML17,https://doi.org/10.1016/j.jcp.2017.03.014 +Yalchin Efendiev,Generalized multiscale finite element method. Symmetric interior penalty coupling.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#EfendievGLMS13,https://doi.org/10.1016/j.jcp.2013.07.028 +James Bremer,An algorithm for the numerical evaluation of the associated Legendre functions that runs in time independent of degree and order.,2018,360,J. Comput. Physics,,db/journals/jcphy/jcphy360.html#Bremer18,https://doi.org/10.1016/j.jcp.2018.01.014 +Kun Xu 0001,Multiple temperature kinetic model and gas-kinetic method for hypersonic non-equilibrium flow computations.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#XuHC08,https://doi.org/10.1016/j.jcp.2008.03.035 +Ling Yuan,Discontinuous Galerkin method based on non-polynomial approximation spaces.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#YuanS06,https://doi.org/10.1016/j.jcp.2006.02.013 +José M. Urquiza,Weak imposition of the slip boundary condition on curved boundaries for Stokes flow.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#UrquizaGF14,https://doi.org/10.1016/j.jcp.2013.08.045 +Chamakuri Nagaiah,Boundary control of bidomain equations with state-dependent switching source functions in the ionic model.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#NagaiahEK14,https://doi.org/10.1016/j.jcp.2014.05.017 +Weijia Sun,A staggered-grid convolutional differentiator for elastic wave modelling.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#SunZF15,https://doi.org/10.1016/j.jcp.2015.08.017 +M. Eskandari,On the time relaxed Monte Carlo computations for the lid-driven micro cavity flow.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#EskandariN17,https://doi.org/10.1016/j.jcp.2017.03.017 +Isaías Alonso-Mallo,High order full discretizations of coupled wave equations with absorbing boundary conditions and geometric integration.,2014,265,J. Comput. Physics,,db/journals/jcphy/jcphy265.html#Alonso-MalloP14,https://doi.org/10.1016/j.jcp.2014.01.046 +Seongwon Kang,Prediction of wall-pressure fluctuation in turbulent flows with an immersed boundary method.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#KangIHM09,https://doi.org/10.1016/j.jcp.2009.05.036 +Yanwei Du,Local discontinuous Galerkin method for a nonlinear time-fractional fourth-order partial differential equation.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#DuLLFH17,https://doi.org/10.1016/j.jcp.2017.04.078 +Jianwei Guo,Effective surface and boundary conditions for heterogeneous surfaces with mixed boundary conditions.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#GuoVQ16,https://doi.org/10.1016/j.jcp.2015.10.050 +Jeffery D. Densmore,A hybrid transport-diffusion method for Monte Carlo radiative-transfer simulations.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#DensmoreUEB07,https://doi.org/10.1016/j.jcp.2006.07.031 +Raimund Bürger,Discontinuous finite volume element discretization for coupled flow-transport problems arising in models of sedimentation.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#BurgerKR15,https://doi.org/10.1016/j.jcp.2015.07.020 +Kuo-Ming Lee,Inverse scattering problem from an impedance obstacle via two-steps method.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#Lee14a,https://doi.org/10.1016/j.jcp.2014.06.008 +Liang Ge,A numerical method for solving the 3D unsteady incompressible Navier-Stokes equations in curvilinear domains with complex immersed boundaries.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#GeS07,https://doi.org/10.1016/j.jcp.2007.02.017 +Nathaniel R. Morgan,An approach for treating contact surfaces in Lagrangian cell-centered hydrodynamics.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#MorganKBCI13,https://doi.org/10.1016/j.jcp.2013.05.015 +S. Y. Wang,An extended level set method for shape and topology optimization.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#WangLKW07,https://doi.org/10.1016/j.jcp.2006.06.029 +Dongming Liu,A numerical study of three-dimensional liquid sloshing in tanks.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#LiuL08,https://doi.org/10.1016/j.jcp.2007.12.006 +Thomas M. Evans,A Monte Carlo synthetic-acceleration method for solving the thermal radiation diffusion equation.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#EvansMSH14,https://doi.org/10.1016/j.jcp.2013.10.043 +William D. Henshaw,A composite grid solver for conjugate heat transfer in fluid-structure systems.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#HenshawC09,https://doi.org/10.1016/j.jcp.2009.02.007 +Sina Ober-Blöbaum,Variational integrators for electric circuits.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#Ober-BlobaumTCOM13,https://doi.org/10.1016/j.jcp.2013.02.006 +Jing-Rebecca Li,Efficient thermal field computation in phase-field models.,2009,228,J. Comput. Physics,24,db/journals/jcphy/jcphy228.html#LiCB09,https://doi.org/10.1016/j.jcp.2009.08.022 +Lin Mu,A new weak Galerkin finite element method for elliptic interface problems.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#MuWYZ16,https://doi.org/10.1016/j.jcp.2016.08.024 +Axel Coussement,Three-dimensional boundary conditions for numerical simulations of reactive compressible flows with complex thermochemistry.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#CoussementGCFD12,https://doi.org/10.1016/j.jcp.2012.03.017 +Ka Chun Cheung,A localized meshless method for diffusion on folded surfaces.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#CheungLR15,https://doi.org/10.1016/j.jcp.2015.05.021 +Ming-Feng Xue,A preconditioned dual-primal finite element tearing and interconnecting method for solving three-dimensional time-harmonic Maxwell's equations.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#XueJ14,https://doi.org/10.1016/j.jcp.2014.06.040 +Andreas Alvermann,High-order commutator-free exponential time-propagation of driven quantum systems.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#AlvermannF11,https://doi.org/10.1016/j.jcp.2011.04.006 +Jens Berg,On the impact of boundary conditions on dual consistent finite difference discretizations.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#BergN13,https://doi.org/10.1016/j.jcp.2012.11.019 +Stéphane Vincent,Eulerian-Lagrangian multiscale methods for solving scalar equations - Application to incompressible two-phase flows.,2010,229,J. Comput. Physics,1,db/journals/jcphy/jcphy229.html#VincentBCM10,https://doi.org/10.1016/j.jcp.2009.09.007 +Zhengfang Zhang,An approach for maximizing the smallest eigenfrequency of structure vibration based on piecewise constant level set method.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#ZhangC18,https://doi.org/10.1016/j.jcp.2018.01.050 +Alexandre M. Tartakovsky,Pairwise Force Smoothed Particle Hydrodynamics model for multiphase flow: Surface tension and contact line dynamics.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#TartakovskyP16,https://doi.org/10.1016/j.jcp.2015.08.037 +Hasan Almanasreh,Stabilized finite element method for the radial Dirac equation.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#AlmanasrehSS13,https://doi.org/10.1016/j.jcp.2012.11.020 +N. Barral,Time-accurate anisotropic mesh adaptation for three-dimensional time-dependent problems with body-fitted moving geometries.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#BarralOA17,https://doi.org/10.1016/j.jcp.2016.11.029 +Martin Galler,A direct multigroup-WENO solver for the 2D non-stationary Boltzmann-Poisson system for GaAs devices: GaAs-MESFET.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#GallerS06,https://doi.org/10.1016/j.jcp.2005.08.003 +Raheel Ahmed,Three-dimensional control-volume distributed multi-point flux approximation coupled with a lower-dimensional surface fracture model.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#AhmedELHP15a,https://doi.org/10.1016/j.jcp.2015.10.001 +Ivan Cimrák,Level set method for the inverse elliptic problem in nonlinear electromagnetism.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#CimrakK10,https://doi.org/10.1016/j.jcp.2010.08.038 +Edip Can,A level set method for vapor bubble dynamics.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#CanP12,https://doi.org/10.1016/j.jcp.2011.10.021 +John R. Tramm,The Random Ray Method for neutral particle transport.,2017,342,J. Comput. Physics,,db/journals/jcphy/jcphy342.html#TrammSFS17,https://doi.org/10.1016/j.jcp.2017.04.038 +Cristóbal Bertoglio,A tangential regularization method for backflow stabilization in hemodynamics.,2014,261,J. Comput. Physics,,db/journals/jcphy/jcphy261.html#BertoglioC14,https://doi.org/10.1016/j.jcp.2013.12.057 +Swagata Bhaumik,A new velocity-vorticity formulation for direct numerical simulation of 3D transitional and turbulent flows.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#BhaumikS15,https://doi.org/10.1016/j.jcp.2014.12.030 +Ping Fan,The standard upwind compact difference schemes for incompressible flow simulations.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#Fan16,https://doi.org/10.1016/j.jcp.2016.06.030 +Ngoc Cuong Nguyen,A phase-based hybridizable discontinuous Galerkin method for the numerical solution of the Helmholtz equation.,2015,290,J. Comput. Physics,,db/journals/jcphy/jcphy290.html#NguyenPRC15,https://doi.org/10.1016/j.jcp.2015.02.002 +Luca Tosatto,Numerical solution of under-resolved detonations.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#TosattoV08,https://doi.org/10.1016/j.jcp.2007.10.011 +Zhenli Xu,Image charge approximations of reaction fields in solvents with arbitrary ionic strength.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#XuDC09,https://doi.org/10.1016/j.jcp.2008.11.023 +S. Adami,A new surface-tension formulation for multi-phase SPH using a reproducing divergence approximation.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#AdamiHA10a,https://doi.org/10.1016/j.jcp.2010.03.022 +Jean-François Remacle,GPU accelerated spectral finite elements on all-hex meshes.,2016,324,J. Comput. Physics,,db/journals/jcphy/jcphy324.html#RemacleGW16,https://doi.org/10.1016/j.jcp.2016.08.005 +Blaise Faugeras,FEM-BEM coupling methods for Tokamak plasma axisymmetric free-boundary equilibrium computations in unbounded domains.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#FaugerasH17,https://doi.org/10.1016/j.jcp.2017.04.047 +Arnaud Duran,On the well-balanced numerical discretization of shallow water equations on unstructured meshes.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#DuranLM13,https://doi.org/10.1016/j.jcp.2012.10.033 +Euntaek Lee,Cell-centered high-order hyperbolic finite volume method for diffusion equation on unstructured grids.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#LeeAL18,https://doi.org/10.1016/j.jcp.2017.10.051 +Hailiang Liu,A field-space-based level set method for computing multi-valued solutions to 1D Euler-Poisson equations.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#LiuW07,https://doi.org/10.1016/j.jcp.2006.12.018 +Matthew F. Barone,Stable Galerkin reduced order models for linearized compressible flow.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#BaroneKST09,https://doi.org/10.1016/j.jcp.2008.11.015 +R. Parashar,Scaling the fractional advective-dispersive equation for numerical evaluation of microbial dynamics in confined geometries with sticky boundaries.,2008,227,J. Comput. Physics,13,db/journals/jcphy/jcphy227.html#ParasharC08,https://doi.org/10.1016/j.jcp.2008.03.021 +Jingzhi Li,Ground detection by a single electromagnetic far-field measurement.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#LiLSW14,https://doi.org/10.1016/j.jcp.2014.05.027 +Matthew I. Barham,Finite element modeling of the deformation of magnetoelastic film.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#BarhamWS10,https://doi.org/10.1016/j.jcp.2010.04.007 +Maxime Pigou,New developments of the Extended Quadrature Method of Moments to solve Population Balance Equations.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#PigouMFPL18,https://doi.org/10.1016/j.jcp.2018.03.027 +Olav Møyner,A multiscale two-point flux-approximation method.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#MoynerL14,https://doi.org/10.1016/j.jcp.2014.07.003 +Longfei Li,A stable partitioned FSI algorithm for incompressible flow and deforming beams.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#LiHBSM16,https://doi.org/10.1016/j.jcp.2016.02.002 +Roman Pascal Schaerer,Efficient algorithms and implementations of entropy-based moment closures for rarefied gases.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#SchaererBT17,https://doi.org/10.1016/j.jcp.2017.02.064 +H. Lochon,HLLC-type Riemann solver with approximated two-phase contact for the computation of the Baer-Nunziato two-fluid model.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#LochonDGH16,https://doi.org/10.1016/j.jcp.2016.09.015 +Tomas Lundquist,The SBP-SAT technique for initial value problems.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#LundquistN14,https://doi.org/10.1016/j.jcp.2014.03.048 +Daoru Han,A 3D immersed finite element method with non-homogeneous interface flux jump for applications in particle-in-cell simulations of plasma-lunar surface interactions.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#HanWHLW16,https://doi.org/10.1016/j.jcp.2016.05.057 +H. K. Jeong,An immersed boundary-thermal lattice Boltzmann method using an equilibrium internal energy density approach for the simulation of flows with heat transfer.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#JeongYHT10,https://doi.org/10.1016/j.jcp.2009.12.002 +Jun Li,Phase-coexistence simulations of fluid mixtures by the Markov Chain Monte Carlo method using single-particle models.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#LiC13,https://doi.org/10.1016/j.jcp.2013.04.016 +Zhen Peng,One way domain decomposition method with second order transmission conditions for solving electromagnetic wave problems.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#PengRL10,https://doi.org/10.1016/j.jcp.2009.10.024 +Somayeh Mashayekhi,Numerical solution of distributed order fractional differential equations by hybrid functions.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#MashayekhiR16,https://doi.org/10.1016/j.jcp.2016.01.041 +Axel Coussement,Multicomponent real gas 3-D-NSCBC for direct numerical simulation of reactive compressible viscous flows.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#CoussementGFDD13,https://doi.org/10.1016/j.jcp.2013.01.049 +Razvan Stefanescu,POD/DEIM nonlinear model order reduction of an ADI implicit shallow water equations model.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#StefanescuN13,https://doi.org/10.1016/j.jcp.2012.11.035 +Thomas G. Fai,Lubricated immersed boundary method in two dimensions.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#FaiR18,https://doi.org/10.1016/j.jcp.2017.11.029 +Xiang-Gui Li,A combined discontinuous Galerkin method for the dipolar Bose-Einstein condensation.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#LiZZC14,https://doi.org/10.1016/j.jcp.2014.07.013 +Ryan W. Houim,A low-dissipation and time-accurate method for compressible multi-component flow with variable specific heat ratios.,2011,230,J. Comput. Physics,23,db/journals/jcphy/jcphy230.html#HouimK11,https://doi.org/10.1016/j.jcp.2011.07.031 +N. Anders Petersson,Wave propagation in anisotropic elastic materials and curvilinear coordinates using a summation-by-parts finite difference method.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#PeterssonS15,https://doi.org/10.1016/j.jcp.2015.07.023 +Alain Lerat,Steady discrete shocks of high-order RBC schemes.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#Lerat13,https://doi.org/10.1016/j.jcp.2013.06.030 +Jialin Hong,Energy-dissipation splitting finite-difference time-domain method for Maxwell equations with perfectly matched layers.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#HongJK14,https://doi.org/10.1016/j.jcp.2014.03.025 +Bin Wang,Improved Filon-type asymptotic methods for highly oscillatory differential equations with multiple time scales.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#WangW14,https://doi.org/10.1016/j.jcp.2014.07.035 +J. H. Adler,First-order system least squares and the energetic variational approach for two-phase flow.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#AdlerBLMZ11,https://doi.org/10.1016/j.jcp.2011.05.002 +D. G. Merrick,A novel finite volume discretization method for advection-diffusion systems on stretched meshes.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#MerrickMR18,https://doi.org/10.1016/j.jcp.2018.02.025 +Zhanjing Tao,High-order central Hermite WENO schemes: Dimension-by-dimension moment-based reconstructions.,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#TaoLQ16,https://doi.org/10.1016/j.jcp.2016.05.005 +Shamsul Qamar,The space-time CESE method for solving special relativistic hydrodynamic equations.,2012,231,J. Comput. Physics,10,db/journals/jcphy/jcphy231.html#QamarY12,https://doi.org/10.1016/j.jcp.2012.01.039 +Michael D. Toy,"Comment on the article ""Vertical discretizations for compressible Euler equation atmospheric models giving optimal representation of normal modes"" by Thuburn and Woollings.",2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#ToyR07,https://doi.org/10.1016/j.jcp.2006.08.022 +Jon Karl Sigurdsson,Hybrid continuum-particle method for fluctuating lipid bilayer membranes with diffusing protein inclusions.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#SigurdssonBA13,https://doi.org/10.1016/j.jcp.2013.06.016 +J. López,A volume of fluid approach for crystal growth simulation.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#LopezGH10,https://doi.org/10.1016/j.jcp.2010.05.026 +Alfredo Bermúdez,Treating network junctions in finite volume solution of transient gas flow models.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#BermudezLV17,https://doi.org/10.1016/j.jcp.2017.04.066 +Ruming Zhang,Efficient finite element method for grating profile reconstruction.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#ZhangS15,https://doi.org/10.1016/j.jcp.2015.09.016 +Michael Medvinsky,High order numerical simulation of the transmission and scattering of waves using the method of difference potentials.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#MedvinskyTT13,https://doi.org/10.1016/j.jcp.2013.03.014 +Toru Takahashi 0002,An interpolation-based fast-multipole accelerated boundary integral equation method for the three-dimensional wave equation.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#Takahashi14,https://doi.org/10.1016/j.jcp.2013.11.008 +Kai Germaschewski,The Plasma Simulation Code: A modern particle-in-cell code with patch-based load-balancing.,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#GermaschewskiFA16,https://doi.org/10.1016/j.jcp.2016.05.013 +Carlos J. García-Cervera,Spin-polarized currents in ferromagnetic multilayers.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#Garcia-CerveraW07,https://doi.org/10.1016/j.jcp.2006.10.029 +Eli Turkel,Compact 2D and 3D sixth order schemes for the Helmholtz equation with variable wave number.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#TurkelGGT13,https://doi.org/10.1016/j.jcp.2012.08.016 +Peter Hansbo,A linear nonconforming finite element method for Maxwell's equations in two dimensions. Part I: Frequency domain.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#HansboR10,https://doi.org/10.1016/j.jcp.2010.05.009 +Fanhai Zeng,Fast difference schemes for solving high-dimensional time-fractional subdiffusion equations.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#ZengZK16,https://doi.org/10.1016/j.jcp.2015.11.058 +D. N. Srinath,An adjoint method for shape optimization in unsteady viscous flows.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#SrinathM10,https://doi.org/10.1016/j.jcp.2009.11.019 +X. J. Gu,A computational strategy for the regularized 13 moment equations with enhanced wall-boundary conditions.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#GuE07,https://doi.org/10.1016/j.jcp.2006.11.032 +Sascha M. Schnepp,A hybrid Finite Integration-Finite Volume Scheme.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#SchneppGW10,https://doi.org/10.1016/j.jcp.2010.01.041 +F. Xavier Trias,A simple approach to discretize the viscous term with spatially varying (eddy-)viscosity.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#TriasGO13,https://doi.org/10.1016/j.jcp.2013.07.021 +Xueyang Li,Time-splitting finite difference method with the wavelet-adaptive grids for semiclassical Gross-Pitaevskii equation in supercritical case.,2014,267,J. Comput. Physics,,db/journals/jcphy/jcphy267.html#LiX14,https://doi.org/10.1016/j.jcp.2014.02.025 +Rémi Abgrall,A semi-intrusive deterministic approach to uncertainty quantification in non-linear fluid flow problems.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#AbgrallC13,https://doi.org/10.1016/j.jcp.2012.07.041 +James Williams 0006,The effects of plastic waves on the numerical convergence of the viscous-plastic and elastic-viscous-plastic sea-ice models.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#WilliamsTL17,https://doi.org/10.1016/j.jcp.2017.03.048 +Mark Christon,A hybrid incremental projection method for thermal-hydraulics applications.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#ChristonBNBFSXL16,https://doi.org/10.1016/j.jcp.2016.04.061 +Nicolas Favrie,A thermodynamically compatible splitting procedure in hyperelasticity.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#FavrieGN14,https://doi.org/10.1016/j.jcp.2014.03.051 +Xiangyu Hu 0002,A conservative interface method for compressible flows.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#0002KAH06,https://doi.org/10.1016/j.jcp.2006.04.001 +Barry D. Ganapol,A solution of the monoenergetic neutral particle transport equation for adjacent half-spaces with anisotropic scattering.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#GanapolMP16,https://doi.org/10.1016/j.jcp.2016.02.049 +Sebastian Reuther,Incompressible two-phase flows with an inextensible Newtonian fluid interface.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#ReutherV16,https://doi.org/10.1016/j.jcp.2016.07.023 +Mark Sherlock,A Monte-Carlo method for coulomb collisions in hybrid plasma models.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#Sherlock08,https://doi.org/10.1016/j.jcp.2007.11.037 +Timothy A. Smith,A Roe-like numerical method for weakly hyperbolic systems of equations in conservation and non-conservation form.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#SmithPP16,https://doi.org/10.1016/j.jcp.2016.04.006 +T. L. Ashbee,Generalized Hamiltonian point vortex dynamics on arbitrary domains using the method of fundamental solutions.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#AshbeeEM13,https://doi.org/10.1016/j.jcp.2013.03.044 +Yibao Li,Multi-component Cahn-Hilliard system with different boundary conditions in complex domains.,2016,323,J. Comput. Physics,,db/journals/jcphy/jcphy323.html#LiCK16,https://doi.org/10.1016/j.jcp.2016.07.017 +Christoph Lohmann,Flux-corrected transport algorithms preserving the eigenvalue range of symmetric tensor quantities.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#Lohmann17,https://doi.org/10.1016/j.jcp.2017.09.009 +Joe Iannelli,An implicit Galerkin finite element Runge-Kutta algorithm for shock-structure investigations.,2011,230,J. Comput. Physics,1,db/journals/jcphy/jcphy230.html#Iannelli11,https://doi.org/10.1016/j.jcp.2010.09.025 +Mikito Furuichi,Three-dimensional Eulerian method for large deformation of viscoelastic fluid: Toward plate-mantle simulation.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#FuruichiKK08,https://doi.org/10.1016/j.jcp.2008.01.052 +Kunkun Tang,Adaptive surrogate modeling by ANOVA and sparse polynomial dimensional decomposition for global sensitivity analysis in fluid simulation.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#TangCA16,https://doi.org/10.1016/j.jcp.2016.03.026 +William Peter,Quiet direct simulation Monte-Carlo with random *teps.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#Peter07,https://doi.org/10.1016/j.jcp.2006.06.008 +Jian Guo Zhou,Lattice Boltzmann morphodynamic model.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#Zhou14,https://doi.org/10.1016/j.jcp.2014.04.005 +Weixuan Li,An adaptive importance sampling algorithm for Bayesian inversion with multimodal distributions.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#LiL15,https://doi.org/10.1016/j.jcp.2015.03.047 +Jean-Baptiste Dupont,Numerical simulation of static and sliding drop with contact angle hysteresis.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#DupontL10,https://doi.org/10.1016/j.jcp.2009.07.034 +Yaqi Wang,Standard and goal-oriented adaptive mesh refinement applied to radiation transport on 2D unstructured triangular meshes.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#WangR11,https://doi.org/10.1016/j.jcp.2010.10.018 +Erell Jamelot,Fast non-overlapping Schwarz domain decomposition methods for solving the neutron diffusion equation.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#JamelotC13,https://doi.org/10.1016/j.jcp.2013.01.026 +Takashi Minoshima,Multi-moment advection scheme for Vlasov simulations.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#MinoshimaMA11,https://doi.org/10.1016/j.jcp.2011.05.010 +Jianming Yang,A highly scalable massively parallel fast marching method for the Eikonal equation.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#YangS17,https://doi.org/10.1016/j.jcp.2016.12.012 +C. Bona,Linear high-resolution schemes for hyperbolic conservation laws: TVB numerical evidence.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#BonaBT09,https://doi.org/10.1016/j.jcp.2008.12.010 +Gregory Beylkin,ODE solvers using band-limited approximations.,2014,265,J. Comput. Physics,,db/journals/jcphy/jcphy265.html#BeylkinS14,https://doi.org/10.1016/j.jcp.2014.02.001 +Krzysztof J. Fidkowski,A triangular cut-cell adaptive method for high-order discretizations of the compressible Navier-Stokes equations.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#FidkowskiD07,https://doi.org/10.1016/j.jcp.2007.02.007 +Florian Müller 0007,Multilevel Monte Carlo for two phase flow and Buckley-Leverett transport in random heterogeneous porous media.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#MullerJM13,https://doi.org/10.1016/j.jcp.2013.03.023 +John W. Pearson,Preconditioned iterative methods for Navier-Stokes control problems.,2015,292,J. Comput. Physics,,db/journals/jcphy/jcphy292.html#Pearson15,https://doi.org/10.1016/j.jcp.2015.03.029 +Hiroaki Yoshida,Lattice Boltzmann method for the convection-diffusion equation in curvilinear coordinate systems.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#YoshidaN14,https://doi.org/10.1016/j.jcp.2013.09.035 +J. Reisner,A space-time smooth artificial viscosity method for nonlinear conservation laws.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#ReisnerSS13,https://doi.org/10.1016/j.jcp.2012.08.027 +Richard Saurel,A relaxation-projection method for compressible flows. Part I: The numerical equation of state for the Euler equations.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#SaurelFDM07,https://doi.org/10.1016/j.jcp.2006.10.004 +Marinos Vouvakis,A domain decomposition approach for non-conformal couplings between finite and boundary elements for unbounded electromagnetic problems in R3.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#VouvakisZSL07,https://doi.org/10.1016/j.jcp.2007.01.014 +Benjamin Krank,A new approach to wall modeling in LES of incompressible flow via function enrichment.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#KrankW16,https://doi.org/10.1016/j.jcp.2016.04.001 +Janis Bajars,Transport of phase space densities through tetrahedral meshes using discrete flow mapping.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#BajarsCST17,https://doi.org/10.1016/j.jcp.2016.10.019 +M. Nicholas J. Moore,A fast Chebyshev method for simulating flexible-wing propulsion.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#Moore17,https://doi.org/10.1016/j.jcp.2017.05.052 +Anirban Bhattacharya,An enthalpy method for modeling eutectic solidification.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#BhattacharyaKKD14,https://doi.org/10.1016/j.jcp.2014.01.007 +Felix Sharipov,Numerical solution of the linearized Boltzmann equation for an arbitrary intermolecular potential.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#SharipovB09,https://doi.org/10.1016/j.jcp.2009.01.016 +Petros Koumoutsakos,Preface.,2008,227,J. Comput. Physics,21,db/journals/jcphy/jcphy227.html#Koumoutsakos08,https://doi.org/10.1016/j.jcp.2008.06.025 +Claus-Dieter Munz,Linearized acoustic perturbation equations for low Mach number flow with variable density and temperature.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#MunzDR07,https://doi.org/10.1016/j.jcp.2007.02.022 +Sooyoung Choi,Resonance treatment using pin-based pointwise energy slowing-down method.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#ChoiLL17,https://doi.org/10.1016/j.jcp.2016.11.007 +Barry Merriman,Diffusion generated motion of curves on surfaces.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#MerrimanR07,https://doi.org/10.1016/j.jcp.2007.03.034 +Søren Taverniers,A tightly-coupled domain-decomposition approach for highly nonlinear stochastic multiphysics systems.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#TaverniersT17,https://doi.org/10.1016/j.jcp.2016.10.052 +Florian Rauser,Predicting goal error evolution from near-initial-information: A learning algorithm.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#RauserKM11,https://doi.org/10.1016/j.jcp.2011.05.029 +John D. Jakeman,Enhancing adaptive sparse grid approximations and improving refinement strategies using adjoint-based a posteriori error estimates.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#JakemanW15,https://doi.org/10.1016/j.jcp.2014.09.014 +Chris H. Rycroft,Computation of three-dimensional standing water waves.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#RycroftW13,https://doi.org/10.1016/j.jcp.2013.08.026 +Jean-Philippe Braeunig,Reducing the entropy production in a collocated Lagrange-Remap scheme.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#Braeunig16,https://doi.org/10.1016/j.jcp.2016.03.008 +Hannes Frenander,Constructing non-reflecting boundary conditions using summation-by-parts in time.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#FrenanderN17,https://doi.org/10.1016/j.jcp.2016.11.038 +Christophe Berthon,Robustness of MUSCL schemes for 2D unstructured meshes.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#Berthon06,https://doi.org/10.1016/j.jcp.2006.02.028 +Ryusuke Numata,AstroGK: Astrophysical gyrokinetics code.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#NumataHTBD10,https://doi.org/10.1016/j.jcp.2010.09.006 +Frédéric Gibou,A review of level-set methods and some recent applications.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#GibouFO18,https://doi.org/10.1016/j.jcp.2017.10.006 +Jean-Pierre Auclair,Implementation of Newton's method with an analytical Jacobian to solve the 1D sea ice momentum equation.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#AuclairLTR17,https://doi.org/10.1016/j.jcp.2017.02.065 +Q. Liu,Approximation of the Lévy-Feller advection-dispersion process by random walk and finite difference method.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#LiuLTA07,https://doi.org/10.1016/j.jcp.2006.06.005 +D. M. Williams,Energy stable flux reconstruction schemes for advection-diffusion problems on triangles.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#WilliamsCVJ13,https://doi.org/10.1016/j.jcp.2013.05.007 +Nail A. Gumerov,Efficient FMM accelerated vortex methods in three dimensions via the Lamb-Helmholtz decomposition.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#GumerovD13,https://doi.org/10.1016/j.jcp.2013.01.021 +P. Tamain,The TOKAM3X code for edge turbulence fluid simulations of tokamak plasmas in versatile magnetic geometries.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#TamainBCCGGSS16,https://doi.org/10.1016/j.jcp.2016.05.038 +Chi Zhang,A generalized transport-velocity formulation for smoothed particle hydrodynamics.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#ZhangHA17a,https://doi.org/10.1016/j.jcp.2017.02.016 +Sunitha Nagrath,Hydrodynamic simulation of air bubble implosion using a level set approach.,2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#NagrathJLA06,https://doi.org/10.1016/j.jcp.2005.10.020 +Hyung Taek Ahn,Strongly coupled flow/structure interactions with a geometrically conservative ALE scheme on general hybrid meshes.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#AhnK06,https://doi.org/10.1016/j.jcp.2006.04.011 +Randall McDermott,The parabolic edge reconstruction method (PERM) for Lagrangian particle advection.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#McDermottP08,https://doi.org/10.1016/j.jcp.2008.01.045 +Bangti Jin,A variational Bayesian method to inverse problems with impulsive noise.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#Jin12,https://doi.org/10.1016/j.jcp.2011.09.009 +Tzanio V. Kolev,A tensor artificial viscosity using a finite element approach.,2009,228,J. Comput. Physics,22,db/journals/jcphy/jcphy228.html#KolevR09,https://doi.org/10.1016/j.jcp.2009.08.010 +René Hammer,A dispersion and norm preserving finite difference scheme with transparent boundary conditions for the Dirac equation in (1+1)D.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#HammerPA14a,https://doi.org/10.1016/j.jcp.2013.09.022 +Walter Boscheri,Lagrangian ADER-WENO finite volume schemes on unstructured triangular meshes based on genuinely multidimensional HLL Riemann solvers.,2014,267,J. Comput. Physics,,db/journals/jcphy/jcphy267.html#BoscheriBD14,https://doi.org/10.1016/j.jcp.2014.02.023 +Rajat Mittal,A versatile sharp interface immersed boundary method for incompressible flows with complex boundaries.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#MittalDBNVL08,https://doi.org/10.1016/j.jcp.2008.01.028 +Mahdi Esmaily Moghadam,A modular numerical method for implicit 0D/3D coupling in cardiovascular finite element simulations.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#MoghadamVFM13,https://doi.org/10.1016/j.jcp.2012.07.035 +Lucas M. Harris,A flux-form version of the conservative semi-Lagrangian multi-tracer transport scheme (CSLAM) on the cubed sphere grid.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#HarrisLM11,https://doi.org/10.1016/j.jcp.2010.11.001 +Q. R. Marksteiner,The use of tricubic interpolation with spectral derivatives to integrate particle trajectories in complicated electromagnetic fields.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#Marksteiner10,https://doi.org/10.1016/j.jcp.2010.05.011 +Yu Mao Wu,Computing highly oscillatory physical optics integral on the polygonal domain by an efficient numerical steepest descent path method.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#WuJC13,https://doi.org/10.1016/j.jcp.2012.10.052 +Chi-Wang Shu,High order WENO and DG methods for time-dependent convection-dominated PDEs: A brief survey of several recent developments.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#Shu16,https://doi.org/10.1016/j.jcp.2016.04.030 +Lingling Shi,A study of self-propelled elastic cylindrical micro-swimmers using modeling and computation.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#ShiCQP16,https://doi.org/10.1016/j.jcp.2016.02.071 +Robert Chiodi,A reformulation of the conservative level set reinitialization equation for accurate and robust simulation of complex multiphase flows.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#ChiodiD17,https://doi.org/10.1016/j.jcp.2017.04.053 +Lei Zhang,A multi-frequency iterative imaging method for discontinuous inverse medium problem.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#ZhangF18,https://doi.org/10.1016/j.jcp.2018.02.026 +Vianey Villamizar,High order local absorbing boundary conditions for acoustic waves in terms of farfield expansions.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#VillamizarAD17,https://doi.org/10.1016/j.jcp.2016.12.048 +Maximilian S. Metti,Energetically stable discretizations for charge transport and electrokinetic models.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#MettiXL16,https://doi.org/10.1016/j.jcp.2015.10.053 +Gordon L. Olson,Second order time evolution of the multigroup diffusion and P1 equations for radiation transport.,2011,230,J. Comput. Physics,20,db/journals/jcphy/jcphy230.html#Olson11,https://doi.org/10.1016/j.jcp.2011.06.001 +Dixon T. K. Kwok,A hybrid Boltzmann electrons and PIC ions model for simulating transient state of partially ionized plasma.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#Kwok08,https://doi.org/10.1016/j.jcp.2008.02.005 +Nathan M. Olson,A near-boundary modification for the link bounce-back boundary condition in the lattice Boltzmann method.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#Olson15,https://doi.org/10.1016/j.jcp.2015.08.021 +Philippe Grandclément,KADATH: A spectral solver for theoretical physics.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#Grandclement10,https://doi.org/10.1016/j.jcp.2010.01.005 +Metin Muradoglu,Simulations of soluble surfactants in 3D multiphase flow.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#MuradogluT14,https://doi.org/10.1016/j.jcp.2014.06.024 +Jie Bao,A mass conserving boundary condition for the lattice Boltzmann equation method.,2008,227,J. Comput. Physics,18,db/journals/jcphy/jcphy227.html#BaoYS08,https://doi.org/10.1016/j.jcp.2008.06.003 +Guglielmo Scovazzi,Lagrangian shock hydrodynamics on tetrahedral meshes: A stable and accurate variational multiscale approach.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#Scovazzi12,https://doi.org/10.1016/j.jcp.2012.06.033 +Zhiming Gao,A small stencil and extremum-preserving scheme for anisotropic diffusion problems on arbitrary 2D and 3D meshes.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#GaoW13a,https://doi.org/10.1016/j.jcp.2013.05.013 +Silvio Tschisgale,A non-iterative immersed boundary method for spherical particles of arbitrary density ratio.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#TschisgaleKF17,https://doi.org/10.1016/j.jcp.2017.03.026 +Zhaosheng Yu,A direct-forcing fictitious domain method for particulate flows.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#YuS07,https://doi.org/10.1016/j.jcp.2007.07.027 +Yibing Chen,Modified kinetic flux vector splitting schemes for compressible flows.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#ChenJ09,https://doi.org/10.1016/j.jcp.2009.01.035 +David R. Hatch,Analysis and compression of six-dimensional gyrokinetic datasets using higher order singular value decomposition.,2012,231,J. Comput. Physics,11,db/journals/jcphy/jcphy231.html#HatchdT12,https://doi.org/10.1016/j.jcp.2012.02.007 +Sudip Garain,Comparing Coarray Fortran (CAF) with MPI for several structured mesh PDE applications.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#GarainBR15,https://doi.org/10.1016/j.jcp.2015.05.020 +Bernd Brügmann,A pseudospectral matrix method for time-dependent tensor fields on a spherical shell.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#Brugmann13,https://doi.org/10.1016/j.jcp.2012.11.007 +Pingwen Zhang,An efficient numerical method of Landau-Brazovskii model.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#ZhangZ08,https://doi.org/10.1016/j.jcp.2008.02.021 +Xi (Ronald) Chen,A hybrid Hermite-discontinuous Galerkin method for hyperbolic systems with application to Maxwell's equations.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#ChenAH14,https://doi.org/10.1016/j.jcp.2013.09.046 +Joseph B. Nagel,Spectral likelihood expansions for Bayesian inference.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#NagelS16,https://doi.org/10.1016/j.jcp.2015.12.047 +Mario Morales-Hernández,A 2D extension of a Large Time Step explicit scheme (CFL andgt* 1) for unsteady problems with wet/dry boundaries.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#Morales-HernandezHG14,https://doi.org/10.1016/j.jcp.2014.01.019 +Jeffrey D. Hyman,Stochastic generation of explicit pore structures by thresholding Gaussian random fields.,2014,277,J. Comput. Physics,,db/journals/jcphy/jcphy277.html#HymanW14,https://doi.org/10.1016/j.jcp.2014.07.046 +M. Waindim,A body-force based method to generate supersonic equilibrium turbulent boundary layer profiles.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#WaindimG16,https://doi.org/10.1016/j.jcp.2015.10.004 +Abbas Fakhari,A mass-conserving lattice Boltzmann method with dynamic grid refinement for immiscible two-phase flows.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#FakhariGL16,https://doi.org/10.1016/j.jcp.2016.03.058 +Teemu Luostari,The ultra weak variational formulation of thin clamped plate problems.,2014,260,J. Comput. Physics,,db/journals/jcphy/jcphy260.html#LuostariHM14,https://doi.org/10.1016/j.jcp.2013.12.028 +Zhijun Tan,An immersed interface method for solving incompressible viscous flows with piecewise constant viscosity across a moving elastic membrane.,2008,227,J. Comput. Physics,23,db/journals/jcphy/jcphy227.html#TanLLLK08,https://doi.org/10.1016/j.jcp.2008.08.013 +Peng Wang,Uncertainty quantification in kinematic-wave models.,2012,231,J. Comput. Physics,23,db/journals/jcphy/jcphy231.html#WangT12a,https://doi.org/10.1016/j.jcp.2012.07.030 +Thomas Richter,A Fully Eulerian formulation for fluid-structure-interaction problems.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#Richter13,https://doi.org/10.1016/j.jcp.2012.08.047 +Caterina Calgaro,L∞-stability of vertex-based MUSCL finite volume schemes on unstructured grids: Simulation of incompressible flows with high density ratios.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#CalgaroCCG10,https://doi.org/10.1016/j.jcp.2010.04.034 +Su Yan 0002,A continuity-preserving and divergence-cleaning algorithm based on purely and damped hyperbolic Maxwell equations in inhomogeneous media.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#YanJ17,https://doi.org/10.1016/j.jcp.2017.01.012 +Ianik Plante,On the Green's function of the partially diffusion-controlled reversible ABCD reaction for radiation chemistry codes.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#PlanteD15,https://doi.org/10.1016/j.jcp.2015.05.007 +Alexander Hay,Verified predictions of shape sensitivities in wall-bounded turbulent flows by an adaptive finite-element method.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#HayPC09,https://doi.org/10.1016/j.jcp.2009.03.022 +J. Chao,A massively parallel multi-block hybrid compact-WENO scheme for compressible flows.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#ChaoHB09,https://doi.org/10.1016/j.jcp.2009.07.005 +Barnana Pal,Relaxation dynamics in small clusters: A modified Monte Carlo approach.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#Pal08,https://doi.org/10.1016/j.jcp.2007.11.007 +Hiroaki Yoshida,Multiple-relaxation-time lattice Boltzmann model for the convection and anisotropic diffusion equation.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#YoshidaN10,https://doi.org/10.1016/j.jcp.2010.06.037 +Taku Nonomura,Numerical (error) issues on compressible multicomponent flows using a high-order differencing scheme: Weighted compact nonlinear scheme.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#NonomuraMTOF12,https://doi.org/10.1016/j.jcp.2011.12.035 +G. Capdeville,A new category of Hermitian upwind schemes for computational acoustics - II. Two-dimensional aeroacoustics.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#Capdeville06,https://doi.org/10.1016/j.jcp.2006.01.010 +Miguel Fosas de Pando,Efficient evaluation of the direct and adjoint linearized dynamics from compressible flow solvers.,2012,231,J. Comput. Physics,23,db/journals/jcphy/jcphy231.html#PandoSS12,https://doi.org/10.1016/j.jcp.2012.06.038 +Lun Yang,Sequential data assimilation with multiple nonlinear models and applications to subsurface flow.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#YangNW17,https://doi.org/10.1016/j.jcp.2017.06.026 +M. Arnst,Itô-SDE MCMC method for Bayesian characterization of errors associated with data limitations in stochastic expansion methods for uncertainty quantification.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#ArnstAPB17,https://doi.org/10.1016/j.jcp.2017.08.005 +Ravindra Pethiyagoda,Jacobian-free Newton-Krylov methods with GPU acceleration for computing nonlinear ship wave patterns.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#PethiyagodaMMB14,https://doi.org/10.1016/j.jcp.2014.03.024 +L. M. M. van den Bos,Non-intrusive uncertainty quantification using reduced cubature rules.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#BosKD17,https://doi.org/10.1016/j.jcp.2016.12.011 +Zhuo-Jia Fu,Boundary particle method for Laplace transformed time fractional diffusion equations.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#FuCY13,https://doi.org/10.1016/j.jcp.2012.10.018 +Emmanuel Audusse,A fast finite volume solver for multi-layered shallow water flows with mass exchange.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#AudusseBSST14,https://doi.org/10.1016/j.jcp.2014.04.026 +Cristóbal E. Castro,Solvers for the high-order Riemann problem for hyperbolic balance laws.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#CastroT08,https://doi.org/10.1016/j.jcp.2007.11.013 +Dragan Vidovic,A superlinearly convergent Mach-uniform finite volume method for the Euler equations on staggered unstructured grids.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#VidovicSW06,https://doi.org/10.1016/j.jcp.2006.01.031 +Cristóbal Bertoglio,A Stokes-residual backflow stabilization method applied to physiological flows.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#BertoglioC16,https://doi.org/10.1016/j.jcp.2016.02.045 +Seong-Kwan Park,Existence and stability in the virtual interpolation point method for the Stokes equations.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#ParkJC16,https://doi.org/10.1016/j.jcp.2015.12.002 +Enzo Tonti,Why starting from differential equations for computational physics?,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#Tonti14,https://doi.org/10.1016/j.jcp.2013.08.016 +Soshi Kawai,A robust and accurate numerical method for transcritical turbulent flows at supercritical pressure with an arbitrary equation of state.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#KawaiTN15,https://doi.org/10.1016/j.jcp.2015.07.047 +Yue Cheng,Positivity-preserving DG and central DG methods for ideal MHD equations.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#ChengLQX13,https://doi.org/10.1016/j.jcp.2012.12.019 +Jean-Luc Fattebert,Finite element approach for density functional theory calculations on locally-refined meshes.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#FattebertHW07,https://doi.org/10.1016/j.jcp.2006.10.013 +Yang-Yao Niu,Computations of two-fluid models based on a simple and robust hybrid primitive variable Riemann solver with AUSMD.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#Niu16,https://doi.org/10.1016/j.jcp.2015.12.045 +Abdullah Demirel,Efficient multiple time-stepping algorithms of higher order.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#DemirelNBH15,https://doi.org/10.1016/j.jcp.2015.01.018 +Ricardo Cortez,Computation of three-dimensional Brinkman flows using regularized methods.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#CortezCLV10,https://doi.org/10.1016/j.jcp.2010.06.012 +Kevin T. Chu,A direct matrix method for computing analytical Jacobians of discretized nonlinear integro-differential equations.,2009,228,J. Comput. Physics,15,db/journals/jcphy/jcphy228.html#Chu09,https://doi.org/10.1016/j.jcp.2009.04.031 +P. Yang,Modelling of fluid-structure interaction with multiphase viscous flows using an immersed-body method.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#YangXFPLP16,https://doi.org/10.1016/j.jcp.2016.05.035 +Francesco Bassi,A discontinuous Galerkin method for inviscid low Mach number flows.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#BassiBHN09,https://doi.org/10.1016/j.jcp.2009.02.021 +Ju Ming,An efficient spectral method for computing dynamics of rotating two-component Bose-Einstein condensates via coordinate transformation.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#MingTZ14,https://doi.org/10.1016/j.jcp.2013.10.044 +D. Shyam Sundar,A high order meshless method with compact support.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#SundarY14,https://doi.org/10.1016/j.jcp.2014.04.010 +Christian B. Mendl,Efficient algorithm for two-center Coulomb and exchange integrals of electronic prolate spheroidal orbitals.,2012,231,J. Comput. Physics,15,db/journals/jcphy/jcphy231.html#Mendl12,https://doi.org/10.1016/j.jcp.2012.04.022 +Christopher K. W. Tam,Finite difference computation of acoustic scattering by small surface inhomogeneities and discontinuities.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#TamJ09,https://doi.org/10.1016/j.jcp.2009.05.005 +Daniel J. Bodony,Analysis of sponge zones for computational fluid mechanics.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#Bodony06,https://doi.org/10.1016/j.jcp.2005.07.014 +Paolo Bettini,Computation of stationary 3D halo currents in fusion devices with accuracy control.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#BettiniS14,https://doi.org/10.1016/j.jcp.2014.04.060 +Aude Bernard-Champmartin,A low diffusive Lagrange-remap scheme for the simulation of violent air-water free-surface flows.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#Bernard-ChampmartinV14,https://doi.org/10.1016/j.jcp.2014.05.032 +Y. Wang,A mass-conserved diffuse interface method and its application for incompressible multiphase flows with large density ratio.,2015,290,J. Comput. Physics,,db/journals/jcphy/jcphy290.html#Wang0SWN15,https://doi.org/10.1016/j.jcp.2015.03.005 +Franck Assous,Data mining techniques for scientific computing: Application to asymptotic paraxial approximations to model ultrarelativistic particles.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#AssousC11,https://doi.org/10.1016/j.jcp.2011.03.005 +Taku Ohwada,On the remedy against shock anomalies in kinetic schemes.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#OhwadaAXL13,https://doi.org/10.1016/j.jcp.2013.07.038 +Diego A. Donzis,Asynchronous finite-difference schemes for partial differential equations.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#DonzisK14,https://doi.org/10.1016/j.jcp.2014.06.017 +Samuel K. M. Chenoweth,A singularity-avoiding moving least squares scheme for two-dimensional unstructured meshes.,2009,228,J. Comput. Physics,15,db/journals/jcphy/jcphy228.html#ChenowethSO09,https://doi.org/10.1016/j.jcp.2009.04.036 +Andrea Mentrelli,Front propagation in anomalous diffusive media governed by time-fractional diffusion.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#MentrelliP15,https://doi.org/10.1016/j.jcp.2014.12.015 +Jingfang Huang,An integral equation method for epitaxial step-flow growth simulations.,2006,216,J. Comput. Physics,2,db/journals/jcphy/jcphy216.html#HuangLX06,https://doi.org/10.1016/j.jcp.2006.01.006 +Robert F. Remis,On the relation between FDTD and Fibonacci polynomials.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#Remis11,https://doi.org/10.1016/j.jcp.2010.11.009 +Georges-Henri Cottet,Semi-Lagrangian particle methods for high-dimensional Vlasov-Poisson systems.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#Cottet18,https://doi.org/10.1016/j.jcp.2018.03.042 +Wei-Fan Hu,An immersed boundary method for simulating the dynamics of three-dimensional axisymmetric vesicles in Navier-Stokes flows.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#HuKL14,https://doi.org/10.1016/j.jcp.2013.10.018 +Harun Kurkcu,Stable and efficient evaluation of periodized Green's functions for the Helmholtz equation at high frequencies.,2009,228,J. Comput. Physics,1,db/journals/jcphy/jcphy228.html#KurkcuR09,https://doi.org/10.1016/j.jcp.2008.08.021 +Nek Sharan,Time-stable overset grid method for hyperbolic problems using summation-by-parts operators.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#SharanPB18,https://doi.org/10.1016/j.jcp.2018.01.049 +L. Homsi,"Corrigendum to ""A coupled electro-thermal Discontinuous Galerkin method"" [J. Comput. Phys. 348 (2017) 231-258].",2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#HomsiGN17a,https://doi.org/10.1016/j.jcp.2017.09.022 +Benjamin Graille,Approximation of mono-dimensional hyperbolic systems: A lattice Boltzmann scheme as a relaxation method.,2014,266,J. Comput. Physics,,db/journals/jcphy/jcphy266.html#Graille14,https://doi.org/10.1016/j.jcp.2014.02.017 +Xuefei Yuan,Numerical simulation of four-field extended magnetohydrodynamics in dynamically adaptive curvilinear coordinates via Newton-Krylov-Schwarz.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#YuanJK12,https://doi.org/10.1016/j.jcp.2012.05.009 +Di Liu,A numerical scheme for optimal transition paths of stochastic chemical kinetic systems.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#Liu08,https://doi.org/10.1016/j.jcp.2008.06.010 +W. P. Bennett,A moving boundary flux stabilization method for Cartesian cut-cell grids using directional operator splitting.,2018,368,J. Comput. Physics,,db/journals/jcphy/jcphy368.html#BennettNK18,https://doi.org/10.1016/j.jcp.2018.04.048 +Alexander Patronis,Hybrid continuum-molecular modelling of multiscale internal gas flows.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#PatronisLBR13,https://doi.org/10.1016/j.jcp.2013.08.033 +Carlo Sansour,On a numerical implementation of a formulation of anisotropic continuum elastoplasticity at finite strains.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#SansourKS08,https://doi.org/10.1016/j.jcp.2008.04.025 +James McDonald,Affordable robust moment closures for CFD based on the maximum-entropy hierarchy.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#McDonaldT13,https://doi.org/10.1016/j.jcp.2013.05.046 +Jaber J. Hasbestan,A short note on the use of the red-black tree in Cartesian adaptive mesh refinement algorithms.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#HasbestanS17,https://doi.org/10.1016/j.jcp.2017.09.056 +Rimple Sandhu,Bayesian inference of nonlinear unsteady aerodynamics from aeroelastic limit cycle oscillations.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#SandhuPPKS16,https://doi.org/10.1016/j.jcp.2016.03.006 +James Kent,Determining the effective resolution of advection schemes. Part I: Dispersion analysis.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#KentWJR14,https://doi.org/10.1016/j.jcp.2014.01.043 +Selda Oterkus,Peridynamic thermal diffusion.,2014,265,J. Comput. Physics,,db/journals/jcphy/jcphy265.html#OterkusMA14,https://doi.org/10.1016/j.jcp.2014.01.027 +Jun Meng,A multilevel Cartesian non-uniform grid time domain algorithm.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#MengBLM10,https://doi.org/10.1016/j.jcp.2010.07.026 +Ronald H. W. Hoppe,An adaptive Newton continuation strategy for the fully implicit finite element immersed boundary method.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#HoppeL12,https://doi.org/10.1016/j.jcp.2012.03.004 +Fei Liao,Extending geometric conservation law to cell-centered finite difference methods on stationary grids.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#LiaoYZ15,https://doi.org/10.1016/j.jcp.2014.12.040 +Eric Cancès,Computing electronic structures: A new multiconfiguration approach for excited states.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#CancesGL06,https://doi.org/10.1016/j.jcp.2005.06.015 +Ersin Ozbenli,High order accurate finite difference schemes based on symmetry preservation.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#OzbenliV17,https://doi.org/10.1016/j.jcp.2017.08.023 +Yaoxin Zhang,2D nearly orthogonal mesh generation with controls on distortion function.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#ZhangJW06,https://doi.org/10.1016/j.jcp.2006.02.023 +Ricardo Costa,A sixth-order finite volume scheme for the steady-state incompressible Stokes equations on staggered unstructured meshes.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#CostaCM17,https://doi.org/10.1016/j.jcp.2017.07.047 +Daekyoung Kang,Precise numerical solutions of potential problems using the Crank-Nicolson method.,2008,227,J. Comput. Physics,5,db/journals/jcphy/jcphy227.html#KangW08,https://doi.org/10.1016/j.jcp.2007.11.028 +Kuan-Yu Chen,A note on pressure accuracy in immersed boundary method for Stokes flow.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#ChenFKL11,https://doi.org/10.1016/j.jcp.2011.03.019 +Milan Kucharik,One-step hybrid remapping algorithm for multi-material arbitrary Lagrangian-Eulerian methods.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#KucharikS12,https://doi.org/10.1016/j.jcp.2011.12.033 +Nawaf Bou-Rabee,A patch that imparts unconditional stability to explicit integrators for Langevin-like equations.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#Bou-RabeeV12,https://doi.org/10.1016/j.jcp.2011.12.007 +Florian Dugast,Topology optimization of thermal fluid flows with an adjoint Lattice Boltzmann Method.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#DugastFJFL18,https://doi.org/10.1016/j.jcp.2018.03.040 +Steven M. Kast,Optimal test functions for boundary accuracy in discontinuous finite element methods.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#KastDF15,https://doi.org/10.1016/j.jcp.2015.05.048 +Chin-Tien Lin,High resolution finite volume scheme for the quantum hydrodynamic equations.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#LinYC09,https://doi.org/10.1016/j.jcp.2008.11.007 +Konstantin Lipnikov,A high-order mimetic method on unstructured polyhedral meshes for the diffusion equation.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#LipnikovM14,https://doi.org/10.1016/j.jcp.2014.04.021 +Jesus Bueno,Liquid-vapor transformations with surfactants. Phase-field model and Isogeometric Analysis.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#BuenoG16,https://doi.org/10.1016/j.jcp.2016.06.008 +Tae-Yeon Kim,A numerical method for a second-gradient theory of incompressible fluid flow.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#KimDF07,https://doi.org/10.1016/j.jcp.2006.09.022 +Yi-Ming Chen,Variable-order fractional numerical differentiation for noisy signals by wavelet denoising.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#ChenWLBC16,https://doi.org/10.1016/j.jcp.2016.02.013 +Wenqi Yao,Noise-induced transition in barotropic flow over topography and application to Kuroshio.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#YaoR15,https://doi.org/10.1016/j.jcp.2015.07.059 +Simon Bolding,Second-order discretization in space and time for radiation-hydrodynamics.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#BoldingHEML17,https://doi.org/10.1016/j.jcp.2017.02.063 +Jan Nordström,Well-posed and stable transmission problems.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#NordstromL18,https://doi.org/10.1016/j.jcp.2018.03.003 +Soheil Soghrati,A boundary collocation meshfree method for the treatment of Poisson problems with complex morphologies.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#SoghratiMLB15,https://doi.org/10.1016/j.jcp.2014.10.030 +G. Capdeville,A Hermite upwind WENO scheme for solving hyperbolic conservation laws.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#Capdeville08,https://doi.org/10.1016/j.jcp.2007.10.017 +Bing-Yang Cao,Nonequilibrium molecular dynamics simulation of shear viscosity by a uniform momentum source-and-sink scheme.,2012,231,J. Comput. Physics,16,db/journals/jcphy/jcphy231.html#CaoD12,https://doi.org/10.1016/j.jcp.2012.04.017 +T. Deconinck,Discretization of the Joule heating term for plasma discharge fluid models in unstructured meshes.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#DeconinckMR09,https://doi.org/10.1016/j.jcp.2009.03.010 +Amanda Peters Randles,Parallel in time approximation of the lattice Boltzmann method for laminar flows.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#RandlesK14,https://doi.org/10.1016/j.jcp.2014.04.006 +Kevin J. Bowers,Zonal methods for the parallel execution of range-limited N-body simulations.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#BowersDS07,https://doi.org/10.1016/j.jcp.2006.06.014 +Andrea Alessandro Ruggiu,A new multigrid formulation for high order finite difference methods on summation-by-parts form.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#RuggiuWN18,https://doi.org/10.1016/j.jcp.2018.01.011 +Dante Kalise,Modeling and numerical approximation of a 2.5D set of equations for mesoscale atmospheric processes.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#KaliseL12,https://doi.org/10.1016/j.jcp.2012.06.035 +Shufang Song,Modified GMDH-NN algorithm and its application for global sensitivity analysis.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#SongW17,https://doi.org/10.1016/j.jcp.2017.07.027 +Murthy N. Guddati,Phonon absorbing boundary conditions for molecular dynamics.,2009,228,J. Comput. Physics,21,db/journals/jcphy/jcphy228.html#GuddatiT09,https://doi.org/10.1016/j.jcp.2009.07.033 +Stany Gallier,A fictitious domain approach for the simulation of dense suspensions.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#GallierLLP14,https://doi.org/10.1016/j.jcp.2013.09.015 +Jichun Li,Developing a time-domain finite-element method for modeling of electromagnetic cylindrical cloaks.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#LiHY12,https://doi.org/10.1016/j.jcp.2011.12.026 +Gerwin Osnabrugge,A convergent Born series for solving the inhomogeneous Helmholtz equation in arbitrarily large media.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#OsnabruggeLV16,https://doi.org/10.1016/j.jcp.2016.06.034 +Virginie Bonnaillie-Noël,Computing the steady states for an asymptotic model of quantum transport in resonant heterostructures.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#Bonnaillie-NoelNP06,https://doi.org/10.1016/j.jcp.2006.04.008 +Stéphane Vincent,Augmented Lagrangian and penalty methods for the simulation of two-phase flows interacting with moving solids. Application to hydroplaning flows interacting with real tire tread patterns.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#VincentSCSFMP11,https://doi.org/10.1016/j.jcp.2010.10.006 +Yuxi Chen,A fifth-order finite difference scheme for hyperbolic equations on block-adaptive curvilinear grids.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#ChenTG16,https://doi.org/10.1016/j.jcp.2015.11.003 +K. K. So,Anti-diffusion method for interface steepening in two-phase incompressible flow.,2011,230,J. Comput. Physics,13,db/journals/jcphy/jcphy230.html#SoHA11,https://doi.org/10.1016/j.jcp.2011.03.011 +Oishik Sen,Evaluation of kriging based surrogate models constructed from mesoscale computations of shock interaction with particles.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#SenGCJU17,https://doi.org/10.1016/j.jcp.2017.01.046 +Guang-hua Gao,A new fractional numerical differentiation formula to approximate the Caputo fractional derivative and its applications.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#GaoSZ14,https://doi.org/10.1016/j.jcp.2013.11.017 +Jack Weatheritt,A novel evolutionary algorithm applied to algebraic modifications of the RANS stress-strain relationship.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#WeatherittS16,https://doi.org/10.1016/j.jcp.2016.08.015 +Thomas C. S. Rendall,Efficient mesh motion using radial basis functions with data reduction algorithms.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#RendallA09,https://doi.org/10.1016/j.jcp.2009.05.013 +James Shaw,"Corrigendum to ""Multidimensional method-of-lines transport for atmospheric flows over steep terrain using arbitrary meshes"" [J. Comput. Phys.",2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#ShawWMD17a, +D. Sármány,Unconditionally stable space-time discontinuous residual distribution for shallow-water flows.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#SarmanyHR13,https://doi.org/10.1016/j.jcp.2013.06.043 +Yueqiang Shang,A two-level subgrid stabilized Oseen iterative method for the steady Navier-Stokes equations.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#Shang13,https://doi.org/10.1016/j.jcp.2012.08.024 +Wei Liu,High order conservative Lagrangian schemes with Lax-Wendroff type time discretization for the compressible Euler equations.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#LiuCS09,https://doi.org/10.1016/j.jcp.2009.09.001 +Christoph J. Mack,A preconditioned Krylov technique for global hydrodynamic stability analysis of large-scale compressible flows.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#MackS10,https://doi.org/10.1016/j.jcp.2009.09.019 +Enrique Bendito,Computational cost of the Fekete problem I: The Forces Method on the 2-sphere.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#BenditoCEGGMS09,https://doi.org/10.1016/j.jcp.2009.01.021 +Asitav Mishra,Time dependent adjoint-based optimization for coupled fluid-structure problems.,2015,292,J. Comput. Physics,,db/journals/jcphy/jcphy292.html#MishraMMS15,https://doi.org/10.1016/j.jcp.2015.03.010 +Peter Lucas,Fast unsteady flow computations with a Jacobian-free Newton-Krylov algorithm.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#LucasZB10,https://doi.org/10.1016/j.jcp.2010.08.033 +David J. Larson,A finite mass based method for Vlasov-Poisson simulations.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#LarsonY15,https://doi.org/10.1016/j.jcp.2014.12.022 +Li Yin,A cell functional minimization scheme for parabolic problem.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#YinWY10,https://doi.org/10.1016/j.jcp.2010.08.018 +Robert D. Skeel,Correcting mesh-based force calculations to conserve both energy and momentum in molecular dynamics simulations.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#SkeelHP07,https://doi.org/10.1016/j.jcp.2007.03.010 +T. G. Callaghan,Computing large-amplitude progressive Rossby waves on a sphere.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#CallaghanF06,https://doi.org/10.1016/j.jcp.2006.01.035 +R. Henniger,High-order accurate solution of the incompressible Navier-Stokes equations on massively parallel computers.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#HennigerOK10,https://doi.org/10.1016/j.jcp.2010.01.015 +Michal A. Kopera,Mass conservation of the unified continuous and discontinuous element-based Galerkin methods on dynamically adaptive grids with application to atmospheric simulations.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#KoperaG15,https://doi.org/10.1016/j.jcp.2015.05.010 +Rongjie Lai,Localized density matrix minimization and linear-scaling algorithms.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#LaiL16,https://doi.org/10.1016/j.jcp.2016.02.076 +J. Wu,An improved immersed boundary-lattice Boltzmann method for simulating three-dimensional incompressible flows.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#WuS10,https://doi.org/10.1016/j.jcp.2010.03.024 +Lilia Krivodonova,An efficient local time-stepping scheme for solution of nonlinear conservation laws.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#Krivodonova10,https://doi.org/10.1016/j.jcp.2010.07.037 +Tao Xiong,A hierarchical uniformly high order DG-IMEX scheme for the 1D BGK equation.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#XiongQ17,https://doi.org/10.1016/j.jcp.2017.01.032 +David Degerfeldt,A brick-tetrahedron finite-element interface with stable hybrid explicit-implicit time-stepping for Maxwell's equations.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#DegerfeldtR06,https://doi.org/10.1016/j.jcp.2006.05.016 +Guanghui Hu,A numerical study of 2D detonation waves with adaptive finite volume methods on unstructured grids.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#Hu17,https://doi.org/10.1016/j.jcp.2016.11.041 +Maziar Raissi,Hidden physics models: Machine learning of nonlinear partial differential equations.,2018,357,J. Comput. Physics,,db/journals/jcphy/jcphy357.html#RaissiK18,https://doi.org/10.1016/j.jcp.2017.11.039 +Saeid Hedayatrasa,Numerical modeling of wave propagation in functionally graded materials using time-domain spectral Chebyshev elements.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#HedayatrasaBZL14,https://doi.org/10.1016/j.jcp.2013.10.037 +Chohong Min,A supra-convergent finite difference scheme for the variable coefficient Poisson equation on non-graded grids.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#MinGC06,https://doi.org/10.1016/j.jcp.2006.01.046 +Jing-Mei Qiu,Positivity preserving semi-Lagrangian discontinuous Galerkin formulation: Theoretical analysis and application to the Vlasov-Poisson system.,2011,230,J. Comput. Physics,23,db/journals/jcphy/jcphy230.html#QiuS11a,https://doi.org/10.1016/j.jcp.2011.07.018 +Slah Sahmim,A sign matrix based scheme for non-homogeneous PDE's with an analysis of the convergence stagnation phenomenon.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#SahmimBA07,https://doi.org/10.1016/j.jcp.2007.06.017 +Shuonan Wu,Multiphase Allen-Cahn and Cahn-Hilliard models and their discretizations with the effect of pairwise surface tensions.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#WuX17,https://doi.org/10.1016/j.jcp.2017.04.039 +Stéphane Clain,A high-order finite volume method for systems of conservation laws - Multi-dimensional Optimal Order Detection (MOOD).,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#ClainDL11,https://doi.org/10.1016/j.jcp.2011.02.026 +Jiequan Li,Implementation of the GRP scheme for computing radially symmetric compressible fluid flows.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#LiLS09,https://doi.org/10.1016/j.jcp.2009.04.047 +Tian Jiang,Krylov single-step implicit integration factor WENO methods for advection-diffusion-reaction equations.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#JiangZ16,https://doi.org/10.1016/j.jcp.2016.01.021 +Martin Weigel,Performance potential for simulating spin models on GPU.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#Weigel12,https://doi.org/10.1016/j.jcp.2011.12.008 +Qingshan Chen,A co-volume scheme for the rotating shallow water equations on conforming non-orthogonal grids.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#ChenRG13,https://doi.org/10.1016/j.jcp.2013.01.003 +Manuel Aldegunde,Development of an exchange-correlation functional with uncertainty quantification capabilities for density functional theory.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#AldegundeKZ16,https://doi.org/10.1016/j.jcp.2016.01.034 +özgür Ergül,Novel electromagnetic surface integral equations for highly accurate computations of dielectric bodies with arbitrarily low contrasts.,2008,227,J. Comput. Physics,23,db/journals/jcphy/jcphy227.html#ErgulG08,https://doi.org/10.1016/j.jcp.2008.08.004 +Lei Cheng,Including fluid shear viscosity in a structural acoustic finite element model using a scalar fluid representation.,2013,247,J. Comput. Physics,,db/journals/jcphy/jcphy247.html#ChengLG13,https://doi.org/10.1016/j.jcp.2013.03.063 +Bryan D. Quaife,Adaptive time stepping for vesicle suspensions.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#QuaifeB16,https://doi.org/10.1016/j.jcp.2015.11.050 +Stephen D. Webb,Symplectic integration of magnetic systems.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#Webb14,https://doi.org/10.1016/j.jcp.2014.03.049 +Yan Wang,Multiphase lattice Boltzmann flux solver for incompressible multiphase flows with large density ratio.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#Wang0HT15,https://doi.org/10.1016/j.jcp.2014.09.035 +Simone Marras,Stabilized high-order Galerkin methods based on a parameter-free dynamic SGS model for LES.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#MarrasNG15,https://doi.org/10.1016/j.jcp.2015.07.034 +John P. Boyd 0001,A comparison of companion matrix methods to find roots of a trigonometric polynomial.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#Boyd13,https://doi.org/10.1016/j.jcp.2013.03.022 +Matthias Toggweiler,A novel adaptive time stepping variant of the Boris-Buneman integrator for the simulation of particle accelerators with space charge.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#ToggweilerAAY14,https://doi.org/10.1016/j.jcp.2014.05.008 +Martin Stoll,All-at-once solution of time-dependent Stokes control.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#StollW13,https://doi.org/10.1016/j.jcp.2012.08.039 +Dinshaw S. Balsara,Multidimensional HLLC Riemann solver for unstructured meshes - With application to Euler and MHD flows.,2014,261,J. Comput. Physics,,db/journals/jcphy/jcphy261.html#BalsaraDA14,https://doi.org/10.1016/j.jcp.2013.12.029 +Youngsoo Ha,On the numerical solution of a driven thin film equation.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#HaKM08,https://doi.org/10.1016/j.jcp.2008.04.007 +Thierry Coupez,Adaptive time-step with anisotropic meshing for incompressible flows.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#CoupezJNNDH13,https://doi.org/10.1016/j.jcp.2012.12.010 +Annamaria Mazzia,Bad behavior of Godunov mixed methods for strongly anisotropic advection-dispersion equations.,2011,230,J. Comput. Physics,23,db/journals/jcphy/jcphy230.html#MazziaMP11,https://doi.org/10.1016/j.jcp.2011.07.021 +Dario Isola,Finite-volume solution of two-dimensional compressible flows over dynamic adaptive grids.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#IsolaGQ15,https://doi.org/10.1016/j.jcp.2015.01.007 +Alexander Rothkopf,Improved maximum entropy analysis with an extended search space.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#Rothkopf13,https://doi.org/10.1016/j.jcp.2012.12.023 +Federico G. Pazzona,Improving the acceptance in Monte Carlo simulations: Sampling through intermediate states.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#PazzonaDS15,https://doi.org/10.1016/j.jcp.2015.04.014 +Peter A. Graf,Surface passivation optimization using DIRECT.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#GrafKJW07,https://doi.org/10.1016/j.jcp.2006.10.033 +Rebeca Salas-Boni,Principal components: A descent algorithm.,2014,267,J. Comput. Physics,,db/journals/jcphy/jcphy267.html#Salas-BoniT14,https://doi.org/10.1016/j.jcp.2014.02.033 +V. Sriram,A hybrid method for modelling two dimensional non-breaking and breaking waves.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#SriramMS14,https://doi.org/10.1016/j.jcp.2014.04.030 +Zhiqiang Wang,A parallel algorithm for 3D dislocation dynamics.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#WangGSL06,https://doi.org/10.1016/j.jcp.2006.04.005 +Sashikumaar Ganesan,A coupled arbitrary Lagrangian-Eulerian and Lagrangian method for computation of free surface flows with insoluble surfactants.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#GanesanT09,https://doi.org/10.1016/j.jcp.2008.12.035 +Anup A. Shirgaonkar,A new mathematical formulation and fast algorithm for fully resolved simulation of self-propulsion.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#ShirgaonkarMP09,https://doi.org/10.1016/j.jcp.2008.12.006 +S. B. Adrian,A hierarchical preconditioner for the electric field integral equation on unstructured meshes based on primal and dual Haar bases.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#AdrianAE17,https://doi.org/10.1016/j.jcp.2016.11.013 +Frédéric Gibou,On the performance of a simple parallel implementation of the ILU-PCG for the Poisson equation on irregular domains.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#GibouM12a,https://doi.org/10.1016/j.jcp.2012.02.023 +Alexander G. Churbanov,Numerical investigation of a space-fractional model of turbulent fluid flow in rectangular ducts.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#ChurbanovV16,https://doi.org/10.1016/j.jcp.2016.06.009 +B. Trouette,About the ellipticity of the Chebyshev-Gauss-Radau discrete Laplacian with Neumann condition.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#TrouetteDL10,https://doi.org/10.1016/j.jcp.2010.06.013 +A. Báez Vidal,On the properties of discrete spatial filters for CFD.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#VidalLTP16,https://doi.org/10.1016/j.jcp.2016.09.002 +Tomasz Hrycak,Pseudospectral Fourier reconstruction with the modified Inverse Polynomial Reconstruction Method.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#HrycakG10,https://doi.org/10.1016/j.jcp.2009.10.026 +Mohamed Zerroukat,A moist Boussinesq shallow water equations set for testing atmospheric models.,2015,290,J. Comput. Physics,,db/journals/jcphy/jcphy290.html#ZerroukatA15,https://doi.org/10.1016/j.jcp.2015.02.011 +Zhikai Wang,A new central compact finite difference scheme with high spectral resolution for acoustic wave equation.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#WangLWXC18,https://doi.org/10.1016/j.jcp.2018.03.030 +Dinh-Liem Nguyen,Numerical solution of a coefficient inverse problem with multi-frequency experimental raw data by a globally convergent algorithm.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#NguyenKNKFL17,https://doi.org/10.1016/j.jcp.2017.05.015 +Daniel P. Garrick,An interface capturing scheme for modeling atomization in compressible flows.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#GarrickHR17,https://doi.org/10.1016/j.jcp.2017.04.079 +Alberto Mussa,Lattice Boltzmann simulations of 2D laminar flows past two tandem cylinders.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#MussaAL09,https://doi.org/10.1016/j.jcp.2008.10.010 +Mario Ricchiuto,An explicit residual based approach for shallow water flows.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#Ricchiuto15,https://doi.org/10.1016/j.jcp.2014.09.027 +Sorin Mitran,Continuum-kinetic-microscopic model of lung clearance due to core-annular fluid entrainment.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#Mitran13,https://doi.org/10.1016/j.jcp.2013.01.037 +Jian-Jun Xu,A level-set continuum method for two-phase flows with insoluble surfactant.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#XuYL12,https://doi.org/10.1016/j.jcp.2012.05.014 +Yangyu Guo,Lattice Boltzmann modeling of phonon transport.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#GuoW16,https://doi.org/10.1016/j.jcp.2016.03.041 +A. J. Kriel,A flux splitting method for the Euler equations.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#Kriel14,https://doi.org/10.1016/j.jcp.2014.08.039 +Li-Jun Xuan,A point-value enhanced finite volume method based on approximate delta functions.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#XuanM18,https://doi.org/10.1016/j.jcp.2017.10.059 +Aaditya V. Rangan,Efficient methods for grouping vectors into low-rank clusters.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#Rangan11,https://doi.org/10.1016/j.jcp.2011.03.048 +Jian Du,A simple package for front tracking.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#DuFGJ0LW06,https://doi.org/10.1016/j.jcp.2005.08.034 +Jie Li,An arbitrary Lagrangian Eulerian method for three-phase flows with triple junction points.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#Li13,https://doi.org/10.1016/j.jcp.2013.05.029 +Hyung Taek Ahn,Multi-material interface reconstruction on generalized polyhedral meshes.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#AhnS07,https://doi.org/10.1016/j.jcp.2007.06.033 +Xavier Antoine,On the numerical approximation of high-frequency acoustic multiple scattering problems by circular cylinders.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#AntoineCR08,https://doi.org/10.1016/j.jcp.2007.09.030 +Ralf Hartmann,An optimal order interior penalty discontinuous Galerkin discretization of the compressible Navier-Stokes equations.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#HartmannH08,https://doi.org/10.1016/j.jcp.2008.07.015 +Yuri Luchko,Wave-diffusion dualism of the neutral-fractional processes.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#Luchko15,https://doi.org/10.1016/j.jcp.2014.06.005 +Jason E. Hicken,PDE-constrained optimization with error estimation and control.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#HickenA14,https://doi.org/10.1016/j.jcp.2013.12.050 +Lijin Wang,Computational singular perturbation analysis of stochastic chemical systems with stiffness.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#WangHCN17,https://doi.org/10.1016/j.jcp.2017.01.040 +A. H. Bhrawy,A method based on the Jacobi tau approximation for solving multi-term time-space fractional partial differential equations.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#BhrawyZ15,https://doi.org/10.1016/j.jcp.2014.10.060 +Lorenzo Botti,Assessment of Hybrid High-Order methods on curved meshes and comparison with discontinuous Galerkin methods.,2018,370,J. Comput. Physics,,db/journals/jcphy/jcphy370.html#BottiP18,https://doi.org/10.1016/j.jcp.2018.05.017 +Wei-Xi Huang,Three-dimensional simulation of elastic capsules in shear flow by the penalty immersed boundary method.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#HuangCS12,https://doi.org/10.1016/j.jcp.2012.01.006 +Pavel Váchal,Volume change and energy exchange: How they affect symmetry in the Noh problem.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#VachalW18,https://doi.org/10.1016/j.jcp.2018.03.021 +Thomas Toulorge,Robust untangling of curvilinear meshes.,2013,254,J. Comput. Physics,,db/journals/jcphy/jcphy254.html#ToulorgeGRL13,https://doi.org/10.1016/j.jcp.2013.07.022 +Nicola Castelletto,Multiscale finite-element method for linear elastic geomechanics.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#CastellettoHT17,https://doi.org/10.1016/j.jcp.2016.11.044 +Hongyong Yan,Optimal staggered-grid finite-difference schemes by combining Taylor-series expansion and sampling approximation for wave equation modeling.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#YanYL16,https://doi.org/10.1016/j.jcp.2016.09.019 +Hamid Moghaderi,Spectral analysis and multigrid preconditioners for two-dimensional space-fractional diffusion equations.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#MoghaderiDDM17,https://doi.org/10.1016/j.jcp.2017.08.064 +Xiang Ma,A stabilized stochastic finite element second-order projection method for modeling natural convection in random porous media.,2008,227,J. Comput. Physics,18,db/journals/jcphy/jcphy227.html#MaZ08,https://doi.org/10.1016/j.jcp.2008.06.008 +Y. Lin,Monte Carlo simulation of the Ising model on FPGA.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#LinWZGZ13,https://doi.org/10.1016/j.jcp.2012.12.005 +Seongju Do,Wavelet-based adaptation methodology combined with finite difference WENO to solve ideal magnetohydrodynamics.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#DoLK17,https://doi.org/10.1016/j.jcp.2017.03.028 +Aydin Nabovati,On the lattice Boltzmann method for phonon transport.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#NabovatiSA11,https://doi.org/10.1016/j.jcp.2011.03.061 +Konstantin A. Kemenov,Explicit small-scale velocity simulation for high-Re turbulent flows. Part II: Non-homogeneous flows.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#KemenovM07,https://doi.org/10.1016/j.jcp.2006.08.002 +Sibylle Günter,Finite element and higher order difference formulations for modelling heat transport in magnetised plasmas.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#GunterLT07,https://doi.org/10.1016/j.jcp.2007.07.016 +Brendan B. Godfrey,Numerical stability analysis of the pseudo-spectral analytical time-domain PIC algorithm.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#GodfreyVH14,https://doi.org/10.1016/j.jcp.2013.10.053 +James Kent,Determining the effective resolution of advection schemes. Part II: Numerical testing.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#KentJWR14,https://doi.org/10.1016/j.jcp.2014.08.045 +Yassine Boubendir,Stokes-Darcy boundary integral solutions using preconditioners.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#BoubendirT09,https://doi.org/10.1016/j.jcp.2009.08.014 +Lester O. Hedges,Stochastic level-set method for shape optimisation.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#HedgesKJ17,https://doi.org/10.1016/j.jcp.2017.07.010 +Weiping Bu,Finite difference/finite element method for two-dimensional space and time fractional Bloch-Torrey equations.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#BuTWY15,https://doi.org/10.1016/j.jcp.2014.06.031 +B. Sanderse,Accuracy analysis of explicit Runge-Kutta methods applied to the incompressible Navier-Stokes equations.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#SanderseK12,https://doi.org/10.1016/j.jcp.2011.11.028 +Gilles Vilmart,Reducing round-off errors in rigid body dynamics.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#Vilmart08,https://doi.org/10.1016/j.jcp.2008.04.013 +C. Le Touze,Multislope MUSCL method for general unstructured meshes.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#TouzeMG15,https://doi.org/10.1016/j.jcp.2014.12.032 +John D. Jakeman,Enhancing and#8467*1-minimization estimates of polynomial chaos expansions using basis selection.,2015,289,J. Comput. Physics,,db/journals/jcphy/jcphy289.html#JakemanES15,https://doi.org/10.1016/j.jcp.2015.02.025 +Franco Auteri,Navier-Stokes spectral solver in a sphere.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#AuteriQ09,https://doi.org/10.1016/j.jcp.2009.06.016 +Marie Doumic,Simulation of laser beam propagation with a paraxial model in a tilted frame.,2009,228,J. Comput. Physics,3,db/journals/jcphy/jcphy228.html#DoumicDGS09,https://doi.org/10.1016/j.jcp.2008.10.009 +Kunal Puri,Approximate Riemann solvers for the Godunov SPH (GSPH).,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#PuriR14a,https://doi.org/10.1016/j.jcp.2014.03.055 +T. Gómez,Pseudo-wave decomposition high-order method for magnetogasdynamics.,2008,227,J. Comput. Physics,20,db/journals/jcphy/jcphy227.html#Gomez08,https://doi.org/10.1016/j.jcp.2008.07.001 +Guglielmo Rubinacci,A fast technique applied to the analysis of Resistive Wall Modes with 3D conducting structures.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#RubinacciVVL09,https://doi.org/10.1016/j.jcp.2008.10.040 +A. Alvarez Laguna,A fully-implicit finite-volume method for multi-fluid reactive and collisional magnetized plasmas on unstructured meshes.,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#LagunaLDMP16,https://doi.org/10.1016/j.jcp.2016.04.058 +Walter Boscheri,Direct Arbitrary-Lagrangian-Eulerian ADER-MOOD finite volume schemes for multidimensional hyperbolic conservation laws.,2015,292,J. Comput. Physics,,db/journals/jcphy/jcphy292.html#BoscheriLD15,https://doi.org/10.1016/j.jcp.2015.03.015 +Yuanhong Li,Mesh refinement algorithms in an unstructured solver for multiphase flow simulation using discrete particles.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#LiK09,https://doi.org/10.1016/j.jcp.2009.05.018 +Jeffrey W. Banks,Upwind schemes for the wave equation in second-order form.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#BanksH12,https://doi.org/10.1016/j.jcp.2012.05.012 +Hongling Su,Energy/dissipation-preserving Birkhoffian multi-symplectic methods for Maxwell's equations with dissipation terms.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#SuL16,https://doi.org/10.1016/j.jcp.2016.01.035 +G. Casas,Approximating the Basset force by optimizing the method of van Hinsberg et al.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#CasasFO18,https://doi.org/10.1016/j.jcp.2017.09.060 +Huadong Gao,An efficient fully linearized semi-implicit Galerkin-mixed FEM for the dynamical Ginzburg-Landau equations of superconductivity.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#GaoS15,https://doi.org/10.1016/j.jcp.2015.03.057 +Shucheng Pan,High-order time-marching reinitialization for regional level-set functions.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#PanLHA18,https://doi.org/10.1016/j.jcp.2017.10.054 +Igor Zagorodnov,Conformal FDTD-methods to avoid time step reduction with and without cell enlargement.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#ZagorodnovSW07,https://doi.org/10.1016/j.jcp.2007.02.002 +W. Lowrie,A priori mesh quality metric error analysis applied to a high-order finite element method.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#LowrieLS11,https://doi.org/10.1016/j.jcp.2011.03.036 +Zhaosheng Yu,A fictitious domain method for particulate flows with heat transfer.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#YuSW06,https://doi.org/10.1016/j.jcp.2006.01.016 +Carlos M. Mora,Numerical solution of stochastic quantum master equations using stochastic interacting wave functions.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#MoraFB18,https://doi.org/10.1016/j.jcp.2018.03.045 +M. R. Norman,Multi-moment ADER-Taylor methods for systems of conservation laws with source terms in one dimension.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#NormanF12,https://doi.org/10.1016/j.jcp.2012.05.029 +Kannan N. Premnath,Three-dimensional multi-relaxation time (MRT) lattice-Boltzmann models for multiphase flow.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#PremnathA07,https://doi.org/10.1016/j.jcp.2006.10.023 +Ben Thornber,An improved reconstruction method for compressible flows with low Mach number features.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#ThornberMDYW08,https://doi.org/10.1016/j.jcp.2008.01.036 +Shaaban Ali Bakr,Domain decomposition Fourier finite element method for the simulation of 3D marine CSEM measurements.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#BakrPM13,https://doi.org/10.1016/j.jcp.2013.08.041 +S. C. Fu,Stochastic finite difference lattice Boltzmann method for steady incompressible viscous flows.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#FuSL10,https://doi.org/10.1016/j.jcp.2010.04.041 +Yeonjong Shin,Sequential function approximation with noisy data.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#ShinWX18,https://doi.org/10.1016/j.jcp.2018.05.042 +Dmitry Kolomenskiy,A Fourier spectral method for the Navier-Stokes equations with volume penalization for moving solid obstacles.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#KolomenskiyS09,https://doi.org/10.1016/j.jcp.2009.04.026 +F. Meng,A stable and accurate partitioned algorithm for conjugate heat transfer.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#MengBHS17,https://doi.org/10.1016/j.jcp.2017.04.052 +Tobias Preis,GPU accelerated Monte Carlo simulation of the 2D and 3D Ising model.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#PreisV0S09,https://doi.org/10.1016/j.jcp.2009.03.018 +Nikolay Nikitin,Finite-difference method for incompressible Navier-Stokes equations in arbitrary orthogonal curvilinear coordinates.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#Nikitin06,https://doi.org/10.1016/j.jcp.2006.01.036 +Khosro Shahbazi,Multigrid algorithms for high-order discontinuous Galerkin discretizations of the compressible Navier-Stokes equations.,2009,228,J. Comput. Physics,21,db/journals/jcphy/jcphy228.html#ShahbaziMB09,https://doi.org/10.1016/j.jcp.2009.07.013 +Alexander Bihlo,Convecting reference frames and invariant numerical models.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#BihloN14,https://doi.org/10.1016/j.jcp.2014.04.042 +Kelin Xia,MIB method for elliptic equations with multi-material interfaces.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#XiaZW11,https://doi.org/10.1016/j.jcp.2011.02.037 +Minseok Choi,On the equivalence of dynamically orthogonal and bi-orthogonal methods: Theory and numerical simulations.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#ChoiSK14,https://doi.org/10.1016/j.jcp.2014.03.050 +Hanquan Wang,A projection gradient method for computing ground state of spin-2 Bose-Einstein condensates.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#Wang14,https://doi.org/10.1016/j.jcp.2014.06.015 +Andrew J. Christlieb,Finite difference weighted essentially non-oscillatory schemes with constrained transport for ideal magnetohydrodynamics.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#ChristliebRT14,https://doi.org/10.1016/j.jcp.2014.03.001 +Anne M. Fernando,DGM-FD: A finite difference scheme based on the discontinuous Galerkin method applied to wave propagation.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#FernandoH11,https://doi.org/10.1016/j.jcp.2011.03.008 +Alexandre Dupuis,An immersed boundary-lattice-Boltzmann method for the simulation of the flow past an impulsively started cylinder.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#DupuisCK08,https://doi.org/10.1016/j.jcp.2008.01.009 +Zheng Sun,A discontinuous Galerkin method for nonlinear parabolic equations and gradient flow problems with interaction potentials.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#SunCS18,https://doi.org/10.1016/j.jcp.2017.09.050 +J. Thomas Beale,A velocity decomposition approach for moving interfaces in viscous fluids.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#BealeL09,https://doi.org/10.1016/j.jcp.2009.01.023 +Huimin Lin,Accuracy and efficiency in computing electrostatic potential for an ion channel model in layered dielectric/electrolyte media.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#LinTC14,https://doi.org/10.1016/j.jcp.2013.12.017 +Luc Berger-Vergiat,Parallel preconditioners for monolithic solution of shear bands.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#Berger-VergiatM16,https://doi.org/10.1016/j.jcp.2015.09.028 +Alain Lerat,An efficient high-order compact scheme for the unsteady compressible Euler and Navier-Stokes equations.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#Lerat16,https://doi.org/10.1016/j.jcp.2016.06.050 +Vaibhav Joshi,A positivity preserving and conservative variational scheme for phase-field modeling of two-phase flows.,2018,360,J. Comput. Physics,,db/journals/jcphy/jcphy360.html#JoshiJ18,https://doi.org/10.1016/j.jcp.2018.01.028 +Lloyd J. Bridge,A mixture formulation for numerical capturing of a two-phase/vapour interface in a porous medium.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#BridgeW07,https://doi.org/10.1016/j.jcp.2007.03.011 +Colin Josey,Windowed multipole for cross section Doppler broadening.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#JoseyDFS16,https://doi.org/10.1016/j.jcp.2015.08.013 +Alessandro Munafò,A spectral-Lagrangian Boltzmann solver for a multi-energy level gas.,2014,264,J. Comput. Physics,,db/journals/jcphy/jcphy264.html#MunafoHGM14,https://doi.org/10.1016/j.jcp.2014.01.036 +Hiroaki Nishikawa,A first-order system approach for diffusion equation. II: Unification of advection and diffusion.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#Nishikawa10,https://doi.org/10.1016/j.jcp.2009.10.040 +A. G. R. Thomas,A review of Vlasov-Fokker-Planck numerical modeling of inertial confinement fusion plasma.,2012,231,J. Comput. Physics,3,db/journals/jcphy/jcphy231.html#ThomasTRKRSB12,https://doi.org/10.1016/j.jcp.2011.09.028 +S. J. Lind,Incompressible-compressible flows with a transient discontinuous interface using smoothed particle hydrodynamics (SPH).,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#LindSR16,https://doi.org/10.1016/j.jcp.2015.12.005 +Jianfeng Lu 0001,Orbital minimization method with and#8467*1 regularization.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#LuT17,https://doi.org/10.1016/j.jcp.2017.02.005 +M. Pino Martín,A parallel implicit method for the direct numerical simulation of wall-bounded compressible turbulence.,2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#MartinC06,https://doi.org/10.1016/j.jcp.2005.10.017 +Enrico De Micheli,The expansion in Gegenbauer polynomials: A simple method for the fast computation of the Gegenbauer coefficients.,2013,239,J. Comput. Physics,,db/journals/jcphy/jcphy239.html#MicheliV13,https://doi.org/10.1016/j.jcp.2013.01.008 +M. Leguèbe,A second-order Cartesian method for the simulation of electropermeabilization cell models.,2015,292,J. Comput. Physics,,db/journals/jcphy/jcphy292.html#LeguebePW15,https://doi.org/10.1016/j.jcp.2015.03.028 +Yu Lv,Entropy-bounded discontinuous Galerkin scheme for Euler equations.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#LvI15,https://doi.org/10.1016/j.jcp.2015.04.026 +Daniel W. Meyer,Micromixing models for turbulent flows.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#MeyerJ09,https://doi.org/10.1016/j.jcp.2008.10.019 +Lingxing Yao,A numerical method for osmotic water flow and solute diffusion with deformable membrane boundaries in two spatial dimension.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#YaoM17,https://doi.org/10.1016/j.jcp.2017.09.006 +Mei Song Tong,Nyström method for elastic wave scattering by three-dimensional obstacles.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#TongC07,https://doi.org/10.1016/j.jcp.2007.06.013 +Matteo Longoni,An ALE-based numerical technique for modeling sedimentary basin evolution featuring layer deformations and faults.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#LongoniMQVR11,https://doi.org/10.1016/j.jcp.2011.01.027 +E. A. Koopman,An algorithm for detecting percolating structures in periodic systems - Application to polymer networks.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#KoopmanL14,https://doi.org/10.1016/j.jcp.2014.06.054 +Immo Huismann,Factorizing the factorization - a spectral-element solver for elliptic equations with linear operation count.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#HuismannSF17,https://doi.org/10.1016/j.jcp.2017.06.012 +Rongzong Huang,A modified multiple-relaxation-time lattice Boltzmann model for convection-diffusion equation.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#HuangW14a,https://doi.org/10.1016/j.jcp.2014.05.041 +A. Bukhvostova,Low Mach number algorithm for droplet-laden turbulent channel flow including phase transition.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#BukhvostovaKG15,https://doi.org/10.1016/j.jcp.2015.04.021 +Christoph Karle,Numerical solution of nonlinear wave equations in stratified dispersive media.,2006,216,J. Comput. Physics,1,db/journals/jcphy/jcphy216.html#KarleSHLS06,https://doi.org/10.1016/j.jcp.2005.11.024 +Ionut Danaila,A Newton method with adaptive finite elements for solving phase-change problems with natural convection.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#DanailaMHM14,https://doi.org/10.1016/j.jcp.2014.06.036 +Dexuan Xie,An improved algorithm and its parallel implementation for solving a general blood-tissue transport and metabolism model.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#XieDB09,https://doi.org/10.1016/j.jcp.2009.07.024 +A. Petras,PDEs on moving surfaces via the closest point method and a modified grid based particle method.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#PetrasR16,https://doi.org/10.1016/j.jcp.2016.02.024 +Massimo Maiolo,Wavelets as basis functions to represent the coarse-graining potential in multiscale coarse graining approach.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#MaioloVKD15,https://doi.org/10.1016/j.jcp.2015.07.039 +Stuart Chester,Modeling turbulent flow over fractal trees with renormalized numerical simulation.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#ChesterMP07,https://doi.org/10.1016/j.jcp.2006.12.009 +René Laprise,Regional climate modelling.,2008,227,J. Comput. Physics,7,db/journals/jcphy/jcphy227.html#Laprise08,https://doi.org/10.1016/j.jcp.2006.10.024 +Timothy J. Moroney,A three-dimensional finite volume method based on radial basis functions for the accurate computational modelling of nonlinear diffusion equations.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#MoroneyT07,https://doi.org/10.1016/j.jcp.2007.01.029 +Wei-Xi Huang,An improved penalty immersed boundary method for fluid-flexible body interaction.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#HuangCS11,https://doi.org/10.1016/j.jcp.2011.03.027 +Shibin Dai,Computational studies of coarsening rates for the Cahn-Hilliard equation with phase-dependent diffusion mobility.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#DaiD16,https://doi.org/10.1016/j.jcp.2016.01.018 +Jie Li 0010,Subdivision based isogeometric analysis technique for electric field integral equations for simply connected structures.,2016,319,J. Comput. Physics,,db/journals/jcphy/jcphy319.html#LiDLTS16,https://doi.org/10.1016/j.jcp.2016.04.008 +Benjamin G. Levine,Fast analysis of molecular dynamics trajectories with graphics processing units - Radial distribution function histogramming.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#LevineSK11,https://doi.org/10.1016/j.jcp.2011.01.048 +Peter D. Düben,The use of imprecise processing to improve accuracy in weather and climate prediction.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#DubenMP14,https://doi.org/10.1016/j.jcp.2013.10.042 +Rio Yokota,Calculation of isotropic turbulence using a pure Lagrangian vortex method.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#YokotaSO07,https://doi.org/10.1016/j.jcp.2007.06.003 +Adem Kaya,Finite difference approximations of multidimensional unsteady convection-diffusion-reaction equations.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#Kaya15,https://doi.org/10.1016/j.jcp.2015.01.024 +Will Pazner,Approximate tensor-product preconditioners for very high order discontinuous Galerkin methods.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#PaznerP18,https://doi.org/10.1016/j.jcp.2017.10.030 +Avi Soffer,Open boundaries for the nonlinear Schrödinger equation.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#SofferS07,https://doi.org/10.1016/j.jcp.2007.01.020 +Enrico Rinaldi,Exact Jacobians for implicit Navier-Stokes simulations of equilibrium real gas flows.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#RinaldiPC14,https://doi.org/10.1016/j.jcp.2014.03.058 +Eldad Haber,An octree multigrid method for quasi-static Maxwell's equations with highly discontinuous coefficients.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#HaberH07,https://doi.org/10.1016/j.jcp.2006.10.012 +Robert L. Higdon,Pressure forcing and dispersion analysis for discontinuous Galerkin approximations to oceanic fluid flows.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#Higdon13,https://doi.org/10.1016/j.jcp.2013.04.028 +Gang Bao,Fast multiscale Gaussian beam methods for wave equations in bounded convex domains.,2014,261,J. Comput. Physics,,db/journals/jcphy/jcphy261.html#BaoLQ14,https://doi.org/10.1016/j.jcp.2013.12.034 +Jeffrey W. Banks,A stable partitioned FSI algorithm for rigid bodies and incompressible flow. Part II: General formulation.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#BanksHST17a,https://doi.org/10.1016/j.jcp.2017.04.064 +Marian Nemec,Adjoint sensitivity computations for an embedded-boundary Cartesian mesh method.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#NemecA08,https://doi.org/10.1016/j.jcp.2007.11.018 +Jiten C. Kalita,A transformation-free HOC scheme for incompressible viscous flows past an impulsively started circular cylinder.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#KalitaR09,https://doi.org/10.1016/j.jcp.2009.04.016 +Seungwon Shin,A hybrid interface tracking - level set technique for multiphase flow with soluble surfactant.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#ShinCJKMC18,https://doi.org/10.1016/j.jcp.2018.01.010 +Philipp Birken,Preconditioning for modal discontinuous Galerkin methods for unsteady 3D Navier-Stokes equations.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#BirkenGHM13,https://doi.org/10.1016/j.jcp.2013.01.004 +Philippe Poncet,Analysis of an immersed boundary method for three-dimensional flows in vorticity formulation.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#Poncet09,https://doi.org/10.1016/j.jcp.2009.06.023 +Xiaogang Deng,Geometric conservation law and applications to high-order finite difference schemes with stationary grids.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#DengMTLZ11,https://doi.org/10.1016/j.jcp.2010.10.028 +Haksu Moon,Stable evaluation of Green's functions in cylindrically stratified regions with uniaxial anisotropic layers.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#MoonDT16,https://doi.org/10.1016/j.jcp.2016.08.019 +Jinlong Wu,Statistical method for resolving the photon-photoelectron-counting inversion problem.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#WuLPG11,https://doi.org/10.1016/j.jcp.2010.10.015 +Sergey Pancheshnyi,Numerical simulation of filamentary discharges with parallel adaptive mesh refinement.,2008,227,J. Comput. Physics,13,db/journals/jcphy/jcphy227.html#PancheshnyiSCB08,https://doi.org/10.1016/j.jcp.2008.03.020 +Svetlana Tlupova,Boundary integral solutions of coupled Stokes and Darcy flows.,2009,228,J. Comput. Physics,1,db/journals/jcphy/jcphy228.html#TlupovaC09,https://doi.org/10.1016/j.jcp.2008.09.011 +Christian Soize,Polynomial chaos representation of databases on manifolds.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#SoizeG17,https://doi.org/10.1016/j.jcp.2017.01.031 +G. Kumar,WENO-enhanced gas-kinetic scheme for direct simulations of compressible transition and turbulence.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#KumarGK13,https://doi.org/10.1016/j.jcp.2012.10.005 +Sylvain Laizet,High-order compact schemes for incompressible flows: A simple and efficient method with quasi-spectral accuracy.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#LaizetL09,https://doi.org/10.1016/j.jcp.2009.05.010 +Mijail Febres,Enhancement of a 2D front-tracking algorithm with a non-uniform distribution of Lagrangian markers.,2018,358,J. Comput. Physics,,db/journals/jcphy/jcphy358.html#FebresL18,https://doi.org/10.1016/j.jcp.2017.12.021 +Yang Cao 0001,Accuracy limitations and the measurement of errors in the stochastic simulation of chemically reacting systems.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#CaoP06,https://doi.org/10.1016/j.jcp.2005.06.012 +Abdelkader Krimi,Smoothed Particle Hydrodynamics: A consistent model for interfacial multiphase fluid flow simulations.,2018,358,J. Comput. Physics,,db/journals/jcphy/jcphy358.html#KrimiRKNDR18,https://doi.org/10.1016/j.jcp.2017.12.006 +Shidong Jiang,Second kind integral equations for the first kind Dirichlet problem of the biharmonic equation in three dimensions.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#JiangRTY11,https://doi.org/10.1016/j.jcp.2011.06.015 +Juan Sánchez,Radial collocation methods for the onset of convection in rotating spheres.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#SanchezGN16,https://doi.org/10.1016/j.jcp.2015.12.040 +Georgios Matheou,Verification of a fluid-dynamics solver using correlations with linear stability results.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#MatheouPD08,https://doi.org/10.1016/j.jcp.2008.01.055 +Weizhu Bao,Efficient numerical methods for computing ground states and dynamics of dipolar Bose-Einstein condensates.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#BaoCW10,https://doi.org/10.1016/j.jcp.2010.07.001 +Youngjoon Hong,A high-order perturbation of surfaces method for scattering of linear waves by periodic multiply layered gratings in two and three dimensions.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#HongN17a,https://doi.org/10.1016/j.jcp.2017.05.017 +Roger G. Ghanem,On the construction and analysis of stochastic models: Characterization and propagation of the errors associated with limited data.,2006,217,J. Comput. Physics,1,db/journals/jcphy/jcphy217.html#GhanemD06,https://doi.org/10.1016/j.jcp.2006.01.037 +Juntao Huang,Boundary conditions of the lattice Boltzmann method for convection-diffusion equations.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#HuangY15,https://doi.org/10.1016/j.jcp.2015.07.045 +I. Akkerman,Isogeometric analysis of free-surface flow.,2011,230,J. Comput. Physics,11,db/journals/jcphy/jcphy230.html#AkkermanBKF11,https://doi.org/10.1016/j.jcp.2010.11.044 +Juekuan Yang,GPU accelerated molecular dynamics simulation of thermal conductivities.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#YangWC07,https://doi.org/10.1016/j.jcp.2006.06.039 +Kai Fu,The conservative characteristic FD methods for atmospheric aerosol transport problems.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#FuL16,https://doi.org/10.1016/j.jcp.2015.10.049 +Wangtao Lu,Waveguide mode solver based on Neumann-to-Dirichlet operators and boundary integral equations.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#LuL12,https://doi.org/10.1016/j.jcp.2011.10.016 +Stephan Schwarz,A temporal discretization scheme to compute the motion of light particles in viscous flows by an immersed boundary method.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#SchwarzKF15,https://doi.org/10.1016/j.jcp.2014.10.039 +Astrid S. de Wijn,Numerical aspects of real-space approaches to strong-field electron dynamics.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#WijnKL07,https://doi.org/10.1016/j.jcp.2007.03.022 +Weizhu Bao,Computing the ground state and dynamics of the nonlinear Schrödinger equation with nonlocal interactions via the nonuniform FFT.,2015,296,J. Comput. Physics,,db/journals/jcphy/jcphy296.html#BaoJTZ15,https://doi.org/10.1016/j.jcp.2015.04.045 +Davoud Saffar Shamshirgar,The Spectral Ewald method for singly periodic domains.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#ShamshirgarT17,https://doi.org/10.1016/j.jcp.2017.07.001 +Robert I. A. Patterson,Stochastic weighted particle methods for population balance equations.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#PattersonWK11,https://doi.org/10.1016/j.jcp.2011.06.011 +M. Nitsche,High order quadratures for the evaluation of interfacial velocities in axi-symmetric Stokes flows.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#NitscheCKN10,https://doi.org/10.1016/j.jcp.2010.04.043 +Grigoris Katsiolides,Multilevel Monte Carlo and improved *tepping methods in atmospheric dispersion modelling.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#KatsiolidesMSSG18,https://doi.org/10.1016/j.jcp.2017.10.035 +Giuseppe Pitton,Computational reduction strategies for the detection of steady bifurcations in incompressible fluid-dynamics: Applications to Coanda effect in cardiology.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#PittonQR17,https://doi.org/10.1016/j.jcp.2017.05.010 +David Tskhakaya,Optimization of PIC codes by improved memory management.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#TskhakayaS07,https://doi.org/10.1016/j.jcp.2007.01.002 +Sebastian Ullmann,POD-Galerkin reduced-order modeling with adaptive finite element snapshots.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#UllmannRL16,https://doi.org/10.1016/j.jcp.2016.08.018 +Andrew R. Winters,A comparison of two entropy stable discontinuous Galerkin spectral element approximations for the shallow water equations with non-constant topography.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#WintersG15,https://doi.org/10.1016/j.jcp.2015.08.034 +Peter Thum,Efficient algebraic multigrid for migration-diffusion-convection-reaction systems arising in electrochemical simulations.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#ThumCWND10,https://doi.org/10.1016/j.jcp.2010.06.011 +Bruno Stupfel,Improved transmission conditions for a one-dimensional domain decomposition method applied to the solution of the Helmholtz equation.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#Stupfel10,https://doi.org/10.1016/j.jcp.2009.10.015 +Dinshaw S. Balsara,A sub-cell based indicator for troubled zones in RKDG schemes and a novel class of hybrid RKDG+HWENO schemes.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#BalsaraAMD07,https://doi.org/10.1016/j.jcp.2007.04.032 +D. Lee,A high order characteristic discontinuous Galerkin scheme for advection on unstructured meshes.,2016,324,J. Comput. Physics,,db/journals/jcphy/jcphy324.html#LeeLPRH16,https://doi.org/10.1016/j.jcp.2016.08.010 +Philippe G. LeFloch,A Godunov-type method for the shallow water equations with discontinuous topography in the resonant regime.,2011,230,J. Comput. Physics,20,db/journals/jcphy/jcphy230.html#LeFlochT11,https://doi.org/10.1016/j.jcp.2011.06.017 +M. Pisarenco,Efficient solution of Maxwell's equations for geometries with repeating patterns by an exchange of discretization directions in the aperiodic Fourier modal method.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#PisarencoMSM12,https://doi.org/10.1016/j.jcp.2012.07.049 +Shyamprasad Karagadde,A coupled VOF-IBM-enthalpy approach for modeling motion and growth of equiaxed dendrites in a solidifying melt.,2012,231,J. Comput. Physics,10,db/journals/jcphy/jcphy231.html#KaragaddeBTD12,https://doi.org/10.1016/j.jcp.2012.02.001 +Juan C. Latorre,Numerical methods for computing effective transport properties of flashing Brownian motors.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#LatorreKP14,https://doi.org/10.1016/j.jcp.2013.09.006 +S. Chabot,A high-order discontinuous Galerkin method for 1D wave propagation in a nonlinear heterogeneous medium.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#ChabotGMH18,https://doi.org/10.1016/j.jcp.2017.11.013 +Weiming Liu,An implicit finite element solution of thermal flows at low Mach number.,2008,227,J. Comput. Physics,5,db/journals/jcphy/jcphy227.html#LiuM08,https://doi.org/10.1016/j.jcp.2007.10.025 +Ken Mattsson,Compatible diagonal-norm staggered and upwind SBP operators.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#MattssonO18,https://doi.org/10.1016/j.jcp.2017.09.044 +Pierre-Henri Maire,A nominally second-order accurate finite volume cell-centered scheme for anisotropic diffusion on two-dimensional unstructured grids.,2012,231,J. Comput. Physics,5,db/journals/jcphy/jcphy231.html#MaireB12,https://doi.org/10.1016/j.jcp.2011.11.029 +Xinfeng Gao,A parallel solution - adaptive method for three-dimensional turbulent non-premixed combusting flows.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#GaoG10,https://doi.org/10.1016/j.jcp.2010.01.001 +A. Tejero-del-Caz,Ion injection in electrostatic particle-in-cell simulations of the ion sheath.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#Tejero-del-CazP17,https://doi.org/10.1016/j.jcp.2017.09.018 +Zhiliang Xu,Hierarchical reconstruction for spectral volume method on unstructured grids.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#XuLS09a,https://doi.org/10.1016/j.jcp.2009.05.001 +Fabrice Falissard,Uneven-order decentered Shapiro filters for boundary filtering.,2015,292,J. Comput. Physics,,db/journals/jcphy/jcphy292.html#Falissard15,https://doi.org/10.1016/j.jcp.2015.03.003 +L. F. Ricketson,Accurate derivative evaluation for any Grad-Shafranov solver.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#RicketsonCRF16,https://doi.org/10.1016/j.jcp.2015.11.015 +Jason P. Sheldon,A hybridizable discontinuous Galerkin method for modeling fluid-structure interaction.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#SheldonMP16,https://doi.org/10.1016/j.jcp.2016.08.037 +Alina Chertock,An asymptotic-preserving method for a relaxation of the Navier-Stokes-Korteweg equations.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#ChertockDN17,https://doi.org/10.1016/j.jcp.2017.01.030 +Goncalo Silva,Low- and high-order accurate boundary conditions: From Stokes to Darcy porous flow modeled with standard and improved Brinkman lattice Boltzmann schemes.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#SilvaTG17,https://doi.org/10.1016/j.jcp.2017.01.023 +Dinshaw S. Balsara,Divergence-free reconstruction of magnetic fields and WENO schemes for magnetohydrodynamics.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#Balsara09,https://doi.org/10.1016/j.jcp.2009.03.038 +Jonathan F. MacArt,Semi-implicit iterative methods for low Mach number turbulent reacting flows: Operator splitting versus approximate factorization.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#MacArtM16,https://doi.org/10.1016/j.jcp.2016.09.016 +Yi Sui,An efficient computational model for macroscale simulations of moving contact lines.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#SuiS13,https://doi.org/10.1016/j.jcp.2013.02.005 +Gwénaël Gabard,A full discrete dispersion analysis of time-domain simulations of acoustic liners with flow.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#GabardB14,https://doi.org/10.1016/j.jcp.2014.05.004 +G. A. Gerolymos,Very-high-order weno schemes.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#GerolymosSV09,https://doi.org/10.1016/j.jcp.2009.07.039 +R. Belaouar,Numerical coupling of Landau damping and Raman amplification.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#BelaouarCG09,https://doi.org/10.1016/j.jcp.2008.09.019 +Hiroaki Nishikawa,Dimensional scaling and numerical similarity in hyperbolic method for diffusion.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#NishikawaN18,https://doi.org/10.1016/j.jcp.2017.11.008 +Qinghai Zhang,Handling solid-fluid interfaces for viscous flows: Explicit jump approximation vs. ghost cell approaches.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#ZhangL10,https://doi.org/10.1016/j.jcp.2010.02.007 +Juan A. Acebrón,A Monte Carlo method for solving the one-dimensional telegraph equations with boundary conditions.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#AcebronR16,https://doi.org/10.1016/j.jcp.2015.10.027 +Kun Luo,A mass conserving level set method for detailed numerical simulation of liquid atomization.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#LuoSYF15,https://doi.org/10.1016/j.jcp.2015.06.009 +Claudio E. Torres,Analysis and parallel implementation of a forced N-body problem.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#TorresPARW13,https://doi.org/10.1016/j.jcp.2013.03.008 +Lexing Ying,The phase flow method.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#YingC06a,https://doi.org/10.1016/j.jcp.2006.05.008 +Vivek Prabhakar,Spectral/hp penalty least-squares finite element formulation for the steady incompressible Navier-Stokes equations.,2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#PrabhakarR06,https://doi.org/10.1016/j.jcp.2005.10.033 +Francesco Ferroni,GPU accelerated dislocation dynamics.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#FerroniTF14,https://doi.org/10.1016/j.jcp.2014.04.052 +Jonas Latz,Multilevel Sequential2 Monte Carlo for Bayesian inverse problems.,2018,368,J. Comput. Physics,,db/journals/jcphy/jcphy368.html#LatzPU18,https://doi.org/10.1016/j.jcp.2018.04.014 +Manuel Torrilhon,Hierarchical Boltzmann simulations and model error estimation.,2017,342,J. Comput. Physics,,db/journals/jcphy/jcphy342.html#TorrilhonS17,https://doi.org/10.1016/j.jcp.2017.04.041 +Julien Vanharen,Theoretical and numerical analysis of nonconforming grid interface for unsteady flows.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#VanharenPM15,https://doi.org/10.1016/j.jcp.2015.01.013 +Jianfeng Lu 0001,Compression of the electron repulsion integral tensor in tensor hypercontraction format with cubic scaling cost.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#LuY15,https://doi.org/10.1016/j.jcp.2015.09.014 +Eleonora Musharbash,Dual Dynamically Orthogonal approximation of incompressible Navier Stokes equations with random boundary conditions.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#MusharbashN18,https://doi.org/10.1016/j.jcp.2017.09.061 +Brian A. Mazzeo,From molecular dynamics to fluorescence anisotropy of fluorophores bound to oriented structures.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#MazzeoB13,https://doi.org/10.1016/j.jcp.2012.08.045 +Santiago Badia,Fluid-structure partitioned procedures based on Robin transmission conditions.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#BadiaNV08,https://doi.org/10.1016/j.jcp.2008.04.006 +Daniel F. Martin,A cell-centered adaptive projection method for the incompressible Navier-Stokes equations in three dimensions.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#MartinCG08,https://doi.org/10.1016/j.jcp.2007.09.032 +Yan Yang 0002,A hybrid scheme for compressible magnetohydrodynamic turbulence.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#YangWSYC16,https://doi.org/10.1016/j.jcp.2015.11.025 +M. W. Crochet,Numerical investigation of a modified family of centered schemes applied to multiphase equations with nonconservative sources.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#CrochetG13,https://doi.org/10.1016/j.jcp.2013.08.010 +C. Birk,Coupled acoustic response of two-dimensional bounded and unbounded domains using doubly-asymptotic open boundaries.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#BirkLS16,https://doi.org/10.1016/j.jcp.2015.12.029 +Zheng Li,A space-time fractional phase-field model with tunable sharpness and decay behavior and its efficient numerical simulation.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#LiWY17,https://doi.org/10.1016/j.jcp.2017.06.036 +Leonardo Di G. Sigalotti,An adaptive SPH method for strong shocks.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#SigalottiLT09,https://doi.org/10.1016/j.jcp.2009.04.041 +Nicolas Crouseilles,An Isogeometric Analysis approach for the study of the gyrokinetic quasi-neutrality equation.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#CrouseillesRS12,https://doi.org/10.1016/j.jcp.2011.09.004 +Jichun Li,An adaptive edge finite element method for electromagnetic cloaking simulation.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#LiHY13,https://doi.org/10.1016/j.jcp.2013.04.026 +Ching-Shan Chou,Optimal energy conserving local discontinuous Galerkin methods for second-order wave equation in heterogeneous media.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#ChouSX14,https://doi.org/10.1016/j.jcp.2014.04.009 +Craig A. Finch,A continuum hard-sphere model of protein adsorption.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#FinchCH13,https://doi.org/10.1016/j.jcp.2012.07.034 +Fabian Spill,Hybrid approaches for multiple-species stochastic reaction-diffusion models.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#SpillGAMB15,https://doi.org/10.1016/j.jcp.2015.07.002 +Mayya Tokman,Efficient integration of large stiff systems of ODEs with exponential propagation iterative (EPI) methods.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#Tokman06,https://doi.org/10.1016/j.jcp.2005.08.032 +Boris Gershgorin,Test models for improving filtering with model errors through stochastic parameter estimation.,2010,229,J. Comput. Physics,1,db/journals/jcphy/jcphy229.html#GershgorinHM10,https://doi.org/10.1016/j.jcp.2009.08.019 +Zhiyong Li,Retrospective cost adaptive Reynolds-averaged Navier-Stokes k-χ9* model for data-driven unsteady turbulent simulations.,2018,357,J. Comput. Physics,,db/journals/jcphy/jcphy357.html#LiHMB18,https://doi.org/10.1016/j.jcp.2017.11.037 +David Munger,A level set approach to simulate magnetohydrodynamic instabilities in aluminum reduction cells.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#MungerV06,https://doi.org/10.1016/j.jcp.2006.01.002 +Patrick Jenny,A solution algorithm for the fluid dynamic equations based on a stochastic model for molecular motion.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#JennyTH10,https://doi.org/10.1016/j.jcp.2009.10.008 +Matthew J. Zahr,An optimization-based approach for high-order accurate discretization of conservation laws with discontinuous solutions.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#ZahrP18,https://doi.org/10.1016/j.jcp.2018.03.029 +H. W. Zheng,An object-oriented and quadrilateral-mesh based solution adaptive algorithm for compressible multi-fluid flows.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#ZhengSC08,https://doi.org/10.1016/j.jcp.2008.03.037 +Shi Jin,A stochastic asymptotic-preserving scheme for a kinetic-fluid model for disperse two-phase flows with uncertainty.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#JinS17,https://doi.org/10.1016/j.jcp.2017.01.059 +Jiming Wu,Interpolation-based second-order monotone finite volume schemes for anisotropic diffusion equations on general grids.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#WuG14,https://doi.org/10.1016/j.jcp.2014.07.011 +J. Cohen,An analytical-based method for studying the nonlinear evolution of localized vortices in planar homogenous shear flows.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#CohenSKP10,https://doi.org/10.1016/j.jcp.2010.06.035 +Peng Ke,An improved known vicinity algorithm based on geometry test for particle localization in arbitrary grid.,2009,228,J. Comput. Physics,24,db/journals/jcphy/jcphy228.html#KeZWY09,https://doi.org/10.1016/j.jcp.2009.09.003 +Fei Fei,A diffusive information preservation method for small Knudsen number flows.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#FeiF13,https://doi.org/10.1016/j.jcp.2013.03.012 +Jaemin Shin,A conservative numerical method for the Cahn-Hilliard equation in complex domains.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#ShinJK11,https://doi.org/10.1016/j.jcp.2011.06.009 +Qiaolin He,A least-squares/finite element method for the numerical solution of the Navier-Stokes-Cahn-Hilliard system modeling the motion of the contact line.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#HeGW11,https://doi.org/10.1016/j.jcp.2011.03.022 +William Fong,Stability of asynchronous variational integrators.,2008,227,J. Comput. Physics,18,db/journals/jcphy/jcphy227.html#FongDL08,https://doi.org/10.1016/j.jcp.2008.05.017 +Allan Peter Engsig-Karup,A stabilised nodal spectral element method for fully nonlinear water waves.,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#Engsig-KarupEB16,https://doi.org/10.1016/j.jcp.2016.04.060 +Guoxi Ni,A DGBGK scheme based on WENO limiters for viscous and inviscid flows.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#NiJX08a,https://doi.org/10.1016/j.jcp.2008.02.009 +Mark P. Simens,A high-resolution code for turbulent boundary layers.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#SimensJHM09,https://doi.org/10.1016/j.jcp.2009.02.031 +Stephen C. Jardin,Review of implicit methods for the magnetohydrodynamic description of magnetically confined plasmas.,2012,231,J. Comput. Physics,3,db/journals/jcphy/jcphy231.html#Jardin12,https://doi.org/10.1016/j.jcp.2010.12.025 +Andrea Villa,Stability of the discretization of the electron avalanche phenomenon.,2015,296,J. Comput. Physics,,db/journals/jcphy/jcphy296.html#VillaBGLM15,https://doi.org/10.1016/j.jcp.2015.05.013 +Weidong Xin,A boundary element formulation of protein electrostatics with explicit ions.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#XinJ07,https://doi.org/10.1016/j.jcp.2006.09.011 +Adrien Bernede,An Unsplit Monte-Carlo solver for the resolution of the linear Boltzmann equation coupled to (stiff) Bateman equations.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#BernedeP18,https://doi.org/10.1016/j.jcp.2017.10.027 +Alessandro Alaia,A hybrid method for hydrodynamic-kinetic flow Part I: A particle-grid method for reducing stochastic noise in kinetic regimes.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#AlaiaP11,https://doi.org/10.1016/j.jcp.2011.03.047 +Jonathan M. Burt,A low diffusion particle method for simulating compressible inviscid flows.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#BurtB08,https://doi.org/10.1016/j.jcp.2008.01.020 +Julien Vanharen,Revisiting the spectral analysis for high-order spectral discontinuous methods.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#VanharenPVBS17,https://doi.org/10.1016/j.jcp.2017.02.043 +Kouki Fukui,Order-N cluster Monte Carlo method for spin systems with long-range interactions.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#FukuiT09,https://doi.org/10.1016/j.jcp.2008.12.022 +John D. Towers,Discretizing delta functions via finite differences and gradient normalization.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#Towers09a,https://doi.org/10.1016/j.jcp.2009.02.012 +Chang Yang,Conservative and non-conservative methods based on Hermite weighted essentially non-oscillatory reconstruction for Vlasov equations.,2014,279,J. Comput. Physics,,db/journals/jcphy/jcphy279.html#YangF14,https://doi.org/10.1016/j.jcp.2014.08.048 +Tim P. Schulze,Efficient kinetic Monte Carlo simulation.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#Schulze08,https://doi.org/10.1016/j.jcp.2007.10.021 +Stephen D. Griffiths,Kelvin wave propagation along straight boundaries in C-grid finite-difference models.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#Griffiths13,https://doi.org/10.1016/j.jcp.2013.08.040 +Z. Guo,Phase field study of the tip operating state of a freely growing dendrite against convection using a novel parallel multigrid approach.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#GuoMXG14,https://doi.org/10.1016/j.jcp.2013.10.004 +Yixuan Wang,Algebraic multiscale solver for flow in heterogeneous porous media.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#WangHT14,https://doi.org/10.1016/j.jcp.2013.11.024 +F. Vidal-Codina,Computing parametrized solutions for plasmonic nanogap structures.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#Vidal-CodinaNP18,https://doi.org/10.1016/j.jcp.2018.04.009 +Olivier Desjardins,An accurate conservative level set/ghost fluid method for simulating turbulent atomization.,2008,227,J. Comput. Physics,18,db/journals/jcphy/jcphy227.html#DesjardinsMP08,https://doi.org/10.1016/j.jcp.2008.05.027 +Laurent Duchemin,The Explicit-Implicit-Null method: Removing the numerical instability of PDEs.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#DucheminE14,https://doi.org/10.1016/j.jcp.2014.01.013 +Hong Luo,A reconstructed discontinuous Galerkin method based on a Hierarchical WENO reconstruction for compressible flows on tetrahedral grids.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#LuoXSNJ13,https://doi.org/10.1016/j.jcp.2012.11.026 +Rémi Abgrall,A comment on the computation of non-conservative products.,2010,229,J. Comput. Physics,8,db/journals/jcphy/jcphy229.html#AbgrallK10,https://doi.org/10.1016/j.jcp.2009.12.015 +Doghonay Arjmand,A time dependent approach for removing the cell boundary error in elliptic homogenization problems.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#ArjmandR16,https://doi.org/10.1016/j.jcp.2016.03.009 +Dongyong Wang,Semi-implicit integration factor methods on sparse grids for high-dimensional systems.,2015,292,J. Comput. Physics,,db/journals/jcphy/jcphy292.html#WangCN15,https://doi.org/10.1016/j.jcp.2015.03.033 +Juntao Huang,Second-order curved boundary treatments of the lattice Boltzmann method for convection-diffusion equations.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#HuangHY16,https://doi.org/10.1016/j.jcp.2016.01.008 +Xiangfan Piao,An embedded formula of the Chebyshev collocation method for stiff problems.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#PiaoBKK17,https://doi.org/10.1016/j.jcp.2017.09.046 +Tony Lelièvre,Computation of free energy differences through nonequilibrium stochastic dynamics: The reaction coordinate case.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#LelievreRS07,https://doi.org/10.1016/j.jcp.2006.08.003 +Geert Buckinx,Multi-scale modelling of flow in periodic solid structures through spatial averaging.,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#BuckinxB15,https://doi.org/10.1016/j.jcp.2015.02.051 +Raffaele Farina,A revised scheme to compute horizontal covariances in an oceanographic 3D-VAR assimilation system.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#FarinaDSMC15,https://doi.org/10.1016/j.jcp.2015.01.003 +Michael Hinze,Optimal control of the free boundary in a two-phase Stefan problem.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#HinzeZ07,https://doi.org/10.1016/j.jcp.2006.09.030 +Soshi Kawai,Assessment of localized artificial diffusivity scheme for large-eddy simulation of compressible turbulent flows.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#KawaiSL10,https://doi.org/10.1016/j.jcp.2009.11.005 +Kewei Liang,A splitting moving mesh method for reaction-diffusion equations of quenching type.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#LiangLOT06,https://doi.org/10.1016/j.jcp.2005.11.019 +A. Petras,An RBF-FD closest point method for solving PDEs on surfaces.,2018,370,J. Comput. Physics,,db/journals/jcphy/jcphy370.html#PetrasLR18,https://doi.org/10.1016/j.jcp.2018.05.022 +Colin J. Cotter,Mixed finite elements for numerical weather prediction.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#CotterS12,https://doi.org/10.1016/j.jcp.2012.05.020 +Alexandra Koulouri,Vector tomography for reconstructing electric fields with non-zero divergence in bounded domains.,2017,329,J. Comput. Physics,,db/journals/jcphy/jcphy329.html#KoulouriBR17,https://doi.org/10.1016/j.jcp.2016.10.037 +Michael S. Dodd,A fast pressure-correction method for incompressible two-fluid flows.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#DoddF14,https://doi.org/10.1016/j.jcp.2014.05.024 +Zhen-Sheng Sun,A sixth order hybrid finite difference scheme based on the minimized dispersion and controllable dissipation technique.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#SunLRZ14,https://doi.org/10.1016/j.jcp.2014.03.052 +Jesse Chan,GPU-accelerated discontinuous Galerkin methods on hybrid meshes.,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#ChanWMRW16,https://doi.org/10.1016/j.jcp.2016.04.003 +Simon L. Cotter,Constrained approximation of effective generators for multiscale stochastic reaction networks and application to conditioned path sampling.,2016,323,J. Comput. Physics,,db/journals/jcphy/jcphy323.html#Cotter16,https://doi.org/10.1016/j.jcp.2016.07.035 +Martina Bukac,Fluid-structure interaction in blood flow capturing non-zero longitudinal structure displacement.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#BukacCGTQ13,https://doi.org/10.1016/j.jcp.2012.08.033 +M. Flaig,Single-mode perturbation growth in an idealized spherical implosion.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#FlaigCWYT18,https://doi.org/10.1016/j.jcp.2018.06.014 +Arvind Baskaran,Energy stable and efficient finite-difference nonlinear multigrid schemes for the modified phase field crystal equation.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#BaskaranHLWWZ13,https://doi.org/10.1016/j.jcp.2013.04.024 +Benjamin E. Peigney,Fokker-Planck kinetic modeling of suprathermal α-particles in a fusion plasma.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#PeigneyLT14,https://doi.org/10.1016/j.jcp.2014.08.033 +Q. W. Ma,Quasi ALE finite element method for nonlinear water waves.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#MaY06,https://doi.org/10.1016/j.jcp.2005.06.014 +Bangti Jin,The Galerkin finite element method for a multi-term time-fractional diffusion equation.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#JinLLZ15,https://doi.org/10.1016/j.jcp.2014.10.051 +Cédric St-Jean,Solar cycle modelling using spatiotemporal decomposition schemes.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#St-JeanC07,https://doi.org/10.1016/j.jcp.2006.08.010 +M. R. Norman,Algorithmic improvements for schemes using the ADER time discretization.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#Norman13,https://doi.org/10.1016/j.jcp.2013.03.003 +Zeli Wang,Immersed boundary method for the simulation of 2D viscous flow based on vorticity-velocity formulations.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#WangFC09,https://doi.org/10.1016/j.jcp.2008.10.038 +A. Luque,Density models for streamer discharges: Beyond cylindrical symmetry and homogeneous media.,2012,231,J. Comput. Physics,3,db/journals/jcphy/jcphy231.html#LuqueE12,https://doi.org/10.1016/j.jcp.2011.04.019 +Kei Ito,A high-precision calculation method for interface normal and curvature on an unstructured grid.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#ItoKOKO14,https://doi.org/10.1016/j.jcp.2014.04.058 +Danielle C. Maddix,Numerical artifacts in the discontinuous Generalized Porous Medium Equation: How to avoid spurious temporal oscillations.,2018,368,J. Comput. Physics,,db/journals/jcphy/jcphy368.html#MaddixSG18a,https://doi.org/10.1016/j.jcp.2018.04.045 +E. Vergnault,An adjoint-based lattice Boltzmann method for noise control problems.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#VergnaultS14,https://doi.org/10.1016/j.jcp.2014.07.027 +Mathew A. Cleveland,Using hybrid implicit Monte Carlo diffusion to simulate gray radiation hydrodynamics.,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#ClevelandG15,https://doi.org/10.1016/j.jcp.2015.02.036 +Shravan Veerapaneni,Integral equation methods for vesicle electrohydrodynamics in three dimensions.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#Veerapaneni16,https://doi.org/10.1016/j.jcp.2016.08.052 +Ken Mattsson,Diagonal-norm upwind SBP operators.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#Mattsson17,https://doi.org/10.1016/j.jcp.2017.01.042 +Robert E. Dickinson,Determination of the multi-scattered solar radiation from a leaf canopy for use in climate models.,2008,227,J. Comput. Physics,7,db/journals/jcphy/jcphy227.html#Dickinson08,https://doi.org/10.1016/j.jcp.2007.12.010 +Stéphane Galera,A two-dimensional unstructured cell-centered multi-material ALE scheme using VOF interface reconstruction.,2010,229,J. Comput. Physics,16,db/journals/jcphy/jcphy229.html#GaleraMB10,https://doi.org/10.1016/j.jcp.2010.04.019 +John C. Quinn,Data assimilation using a GPU accelerated path integral Monte Carlo approach.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#QuinnA11,https://doi.org/10.1016/j.jcp.2011.07.015 +C. M. Linton,One- and two-dimensional lattice sums for the three-dimensional Helmholtz equation.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#LintonT09,https://doi.org/10.1016/j.jcp.2008.11.013 +Boyan Bejanov,A grid-alignment finite element technique for incompressible multicomponent flows.,2008,227,J. Comput. Physics,13,db/journals/jcphy/jcphy227.html#BejanovGM08,https://doi.org/10.1016/j.jcp.2008.03.011 +Lawrence Mitchell,High level implementation of geometric multigrid solvers for finite element problems: Applications in atmospheric modelling.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#MitchellM16,https://doi.org/10.1016/j.jcp.2016.09.037 +Cyrill B. Muratov,Optimal grid-based methods for thin film micromagnetics simulations.,2006,216,J. Comput. Physics,2,db/journals/jcphy/jcphy216.html#MuratovO06,https://doi.org/10.1016/j.jcp.2005.12.018 +åsmund Ervik,A multiscale method for simulating fluid interfaces covered with large molecules such as asphaltenes.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#ErvikLHJMMM16,https://doi.org/10.1016/j.jcp.2016.09.039 +Petri Fast,Moore's law and the Saffman-Taylor instability.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#FastS06,https://doi.org/10.1016/j.jcp.2005.06.022 +Rolf Sidler,A pseudo-spectral method for the simulation of poro-elastic seismic wave propagation in 2D polar coordinates using domain decomposition.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#SidlerCH13,https://doi.org/10.1016/j.jcp.2012.09.044 +Feng Zheng,Directly solving the Hamilton-Jacobi equations by Hermite WENO Schemes.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#ZhengQ16,https://doi.org/10.1016/j.jcp.2015.12.011 +Matthieu Jobelin,A finite element penalty-projection method for incompressible flows.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#JobelinLLAP06,https://doi.org/10.1016/j.jcp.2006.01.019 +G. I. Jennings,Water wave propagation in unbounded domains. Part II: Numerical methods for fractional PDEs.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#JenningsPCKRA14,https://doi.org/10.1016/j.jcp.2014.07.007 +Thomas C. Cecil,Simplex free adaptive tree fast sweeping and evolution methods for solving level set equations in arbitrary dimension.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#CecilOQ06,https://doi.org/10.1016/j.jcp.2005.08.020 +Xuliang Liu,A new class of central compact schemes with spectral-like resolution II: Hybrid weighted nonlinear schemes.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#LiuZZS15,https://doi.org/10.1016/j.jcp.2014.12.027 +Carlos Lozano,On mesh sensitivities and boundary formulas for discrete adjoint-based gradients in inviscid aerodynamic shape optimization.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#Lozano17,https://doi.org/10.1016/j.jcp.2017.06.025 +Stéphane Le Roux 0002,Convergence stability and estimator in orbital free electronic structure calculation on a grid at finite temperature.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#RouxZ07,https://doi.org/10.1016/j.jcp.2007.06.022 +D. Stone,Asynchronous discrete event schemes for PDEs.,2017,342,J. Comput. Physics,,db/journals/jcphy/jcphy342.html#StoneGL17,https://doi.org/10.1016/j.jcp.2017.04.026 +Sebastian Liska,A fast lattice Green's function method for solving viscous incompressible flows on unbounded domains.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#LiskaC16,https://doi.org/10.1016/j.jcp.2016.04.023 +Peter Korn,Formulation of an unstructured grid model for global ocean dynamics.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#Korn17,https://doi.org/10.1016/j.jcp.2017.03.009 +Z. J. Chen,A coupled pressure-based computational method for incompressible/compressible flows.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#ChenP10,https://doi.org/10.1016/j.jcp.2010.08.029 +Stefan Hickel,Letter to the Editor: On the evolution of dissipation rate and resolved kinetic energy in ALDM simulations of the Taylor-Green flow.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#HickelAD10,https://doi.org/10.1016/j.jcp.2009.11.017 +Ryan G. McClarren,A modified implicit Monte Carlo method for time-dependent radiative transfer with adaptive material coupling.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#McClarrenU09,https://doi.org/10.1016/j.jcp.2009.04.028 +Bernard Parent,Sheath governing equations in computational weakly-ionized plasmadynamics.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#ParentSM13,https://doi.org/10.1016/j.jcp.2012.08.011 +Jacob I. Waltz,Manufactured solutions for the three-dimensional Euler equations with relevance to Inertial Confinement Fusion.,2014,267,J. Comput. Physics,,db/journals/jcphy/jcphy267.html#WaltzCMRW14,https://doi.org/10.1016/j.jcp.2014.02.040 +Chunxiong Zheng,A perfectly matched layer approach to the nonlinear Schrödinger wave equations.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#Zheng07,https://doi.org/10.1016/j.jcp.2007.08.004 +Marek Strumik,Multidimensional Hall magnetohydrodynamics with isotropic or anisotropic thermal pressure: Numerical scheme and its validation using solitary waves.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#StrumikS17,https://doi.org/10.1016/j.jcp.2016.10.058 +Abbas Khayyer,Enhancement of performance and stability of MPS mesh-free particle method for multiphase flows characterized by high density ratios.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#KhayyerG13,https://doi.org/10.1016/j.jcp.2013.02.002 +D. F. Gordon,Time dependent Schrödinger equation on arbitrary structured grids: Application to photoionization.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#GordonH12,https://doi.org/10.1016/j.jcp.2012.05.021 +Vito Pasquariello,A cut-cell finite volume - finite element coupling approach for fluid-structure interaction in compressible flow.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#PasquarielloHOH16,https://doi.org/10.1016/j.jcp.2015.12.013 +Yuezheng Gong,A conservative Fourier pseudo-spectral method for the nonlinear Schrödinger equation.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#GongWWC17,https://doi.org/10.1016/j.jcp.2016.10.022 +Songting Luo,Properties-preserving high order numerical methods for a kinetic eikonal equation.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#LuoP17,https://doi.org/10.1016/j.jcp.2016.11.040 +F. Daude,On the computation of the Baer-Nunziato model using ALE formulation with HLL- and HLLC-type solvers towards fluid-structure interactions.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#DaudeG16,https://doi.org/10.1016/j.jcp.2015.09.056 +Eunseok Lee,Electronic structure calculations in a uniform magnetic field using periodic supercells.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#LeeCG07,https://doi.org/10.1016/j.jcp.2007.05.022 +D. Del Sarto,A multigrid AMR algorithm for the study of magnetic reconnection.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#SartoD17,https://doi.org/10.1016/j.jcp.2017.08.046 +Jeroen A. S. Witteveen,Simplex stochastic collocation with ENO-type stencil selection for robust uncertainty quantification.,2013,239,J. Comput. Physics,,db/journals/jcphy/jcphy239.html#WitteveenI13,https://doi.org/10.1016/j.jcp.2012.12.030 +Zhenli Xu,Adaptive absorbing boundary conditions for Schrödinger-type equations: Application to nonlinear and multi-dimensional problems.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#XuHW07,https://doi.org/10.1016/j.jcp.2007.02.004 +Patrick T. Greene,A high-order multi-zone cut-stencil method for numerical simulations of high-speed flows over complex geometries.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#GreeneEZK16,https://doi.org/10.1016/j.jcp.2016.04.032 +J. E. Bunder,Good coupling for the multiscale patch scheme on systems with microscale heterogeneity.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#BunderRK17,https://doi.org/10.1016/j.jcp.2017.02.004 +Jules B. Kajtar,SPH simulations of swimming linked bodies.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#KajtarM08,https://doi.org/10.1016/j.jcp.2008.06.004 +Xinyuan Wu,Efficient energy-preserving integrators for oscillatory Hamiltonian systems.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#WuWS13,https://doi.org/10.1016/j.jcp.2012.10.015 +M. Skarysz,An iterative interface reconstruction method for PLIC in general convex grids as part of a Coupled Level Set Volume of Fluid solver.,2018,368,J. Comput. Physics,,db/journals/jcphy/jcphy368.html#SkaryszGD18,https://doi.org/10.1016/j.jcp.2018.04.044 +Philippe Chatelain,A Fourier-based elliptic solver for vortical flows with periodic and unbounded directions.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#ChatelainK10,https://doi.org/10.1016/j.jcp.2009.12.035 +Ying Li,A new fractional time-stepping method for variable density incompressible flows.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#LiMGS13,https://doi.org/10.1016/j.jcp.2013.02.010 +Sheng Xu,The immersed interface method for simulating prescribed motion of rigid objects in an incompressible viscous flow.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#Xu08,https://doi.org/10.1016/j.jcp.2008.01.053 +Peng Zhang 0030,Extension of modified power method to two-dimensional problems.,2016,320,J. Comput. Physics,,db/journals/jcphy/jcphy320.html#ZhangLL16a,https://doi.org/10.1016/j.jcp.2016.05.024 +Lin Lin 0001,Fast construction of hierarchical matrix representation from matrix-vector multiplication.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#LinLY11,https://doi.org/10.1016/j.jcp.2011.02.033 +Rajesh Ramaswamy,A hybrid particle-mesh method for incompressible active polar viscous gels.,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#RamaswamyBJS15,https://doi.org/10.1016/j.jcp.2015.03.007 +René Beltman,A least-squares method for the inverse reflector problem in arbitrary orthogonal coordinates.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#BeltmanBI18,https://doi.org/10.1016/j.jcp.2018.04.041 +Yinnian He,Numerical comparisons of time-space iterative method and spatial iterative methods for the stationary Navier-Stokes equations.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#HeL12,https://doi.org/10.1016/j.jcp.2012.06.007 +Wenjun Cai,Numerical dispersion analysis of a multi-symplectic scheme for the three dimensional Maxwell's equations.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#CaiWS13,https://doi.org/10.1016/j.jcp.2012.09.043 +Baskar Ganapathysubramanian,Sparse grid collocation schemes for stochastic natural convection problems.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#GanapathysubramanianZ07a,https://doi.org/10.1016/j.jcp.2006.12.014 +Rony Touma,Central finite volume schemes with constrained transport divergence treatment for three-dimensional ideal MHD.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#ToumaA06,https://doi.org/10.1016/j.jcp.2005.07.013 +Yinhua Xia,Local discontinuous Galerkin methods for the generalized Zakharov system.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#XiaXS10,https://doi.org/10.1016/j.jcp.2009.10.029 +R. Sreekanth,An approximate linearized characteristic Riemann solver based on blending of Riemann invariants.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#SreekanthGL14,https://doi.org/10.1016/j.jcp.2014.08.043 +Stéphane Vincent,A Lagrangian VOF tensorial penalty method for the DNS of resolved particle-laden flows.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#VincentMSESC14,https://doi.org/10.1016/j.jcp.2013.08.023 +Francesco Ballarin,Fast simulations of patient-specific haemodynamics of coronary artery bypass grafts based on a POD-Galerkin method and a vascular shape parametrization.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#BallarinFIMQRS16,https://doi.org/10.1016/j.jcp.2016.03.065 +Mei-Jiau Huang,A fast resurrected core-spreading vortex method with no-slip boundary conditions.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#HuangSC09,https://doi.org/10.1016/j.jcp.2008.11.026 +Ryan Galagusz,A Fourier penalty method for solving the time-dependent Maxwell's equations in domains with curved boundaries.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#GalaguszSN16,https://doi.org/10.1016/j.jcp.2015.11.031 +Costanza Aricò,The MAST-edge centred lumped scheme for the flow simulation in variably saturated heterogeneous porous media.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#AricoST12,https://doi.org/10.1016/j.jcp.2011.10.012 +Carl A. Bauer,A fast multigrid-based electromagnetic eigensolver for curved metal boundaries on the Yee mesh.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#BauerWC13,https://doi.org/10.1016/j.jcp.2013.06.002 +Han Wang 0006,An efficient adaptive mesh redistribution method for a non-linear Dirac equation.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#WangT07,https://doi.org/10.1016/j.jcp.2006.07.011 +L. Fath,A fast mollified impulse method for biomolecular atomistic simulations.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#FathHS17,https://doi.org/10.1016/j.jcp.2016.12.024 +Konstantinos N. Blazakis,Whole cell tracking through the optimal control of geometric evolution laws.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#BlazakisMRSV15,https://doi.org/10.1016/j.jcp.2015.05.014 +Rohit Tripathy,Gaussian processes with built-in dimensionality reduction: Applications to high-dimensional uncertainty propagation.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#TripathyBG16,https://doi.org/10.1016/j.jcp.2016.05.039 +Zhi-Hui Li,Gas-kinetic numerical studies of three-dimensional complex flows on spacecraft re-entry.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#LiZ09,https://doi.org/10.1016/j.jcp.2008.10.013 +Paul G. Constantine,Exploiting active subspaces to quantify uncertainty in the numerical simulation of the HyShot II scramjet.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#ConstantineELI15,https://doi.org/10.1016/j.jcp.2015.09.001 +Zhibo Wang,Compact difference schemes for the modified anomalous fractional sub-diffusion equation and the fractional diffusion-wave equation.,2014,277,J. Comput. Physics,,db/journals/jcphy/jcphy277.html#WangV14,https://doi.org/10.1016/j.jcp.2014.08.012 +Silas Alben,An implicit method for coupled flow-body dynamics.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#Alben08,https://doi.org/10.1016/j.jcp.2008.01.021 +Thierry Goudon,Asymptotic-preserving schemes for kinetic-fluid modeling of disperse two-phase flows.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#GoudonJLY13,https://doi.org/10.1016/j.jcp.2013.03.038 +Timothy J. Moroney,Extending fields in a level set method by solving a biharmonic equation.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#MoroneyLMM17,https://doi.org/10.1016/j.jcp.2017.04.049 +A. Alekseenko,Deterministic solution of the spatially homogeneous Boltzmann equation using discontinuous Galerkin discretizations in the velocity space.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#AlekseenkoJ14,https://doi.org/10.1016/j.jcp.2014.03.031 +M. Borrel,The Elastoplast Discontinuous Galerkin (EDG) method for the Navier-Stokes equations.,2012,231,J. Comput. Physics,1,db/journals/jcphy/jcphy231.html#BorrelR12,https://doi.org/10.1016/j.jcp.2011.08.005 +Wen Liu,Time efficient aeroelastic simulations based on radial basis functions.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#LiuHY17,https://doi.org/10.1016/j.jcp.2016.10.063 +Mohamed Sulman,Optimal mass transport for higher dimensional adaptive grid generation.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#SulmanWR11,https://doi.org/10.1016/j.jcp.2011.01.025 +Thomas Y. Hou,Computing nearly singular solutions using pseudo-spectral methods.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#HouL07,https://doi.org/10.1016/j.jcp.2007.04.014 +E. Motheau,A high-order numerical algorithm for DNS of low-Mach-number reactive flows with detailed chemistry and quasi-spectral accuracy.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#MotheauA16,https://doi.org/10.1016/j.jcp.2016.02.059 +Serena Russo,A fast algorithm for the estimation of statistical error in DNS (or experimental) time averages.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#RussoL17,https://doi.org/10.1016/j.jcp.2017.07.005 +Negin Alemazkoor,A near-optimal sampling strategy for sparse recovery of polynomial chaos expansions.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#AlemazkoorM18,https://doi.org/10.1016/j.jcp.2018.05.025 +Jing-Rebecca Li,On the numerical solution of the heat equation I: Fast solvers in free space.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#LiG07,https://doi.org/10.1016/j.jcp.2007.06.021 +Michael J. Brazell,An overset mesh approach for 3D mixed element high-order discretizations.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#BrazellSM16,https://doi.org/10.1016/j.jcp.2016.06.031 +Jostein R. Natvig,Fast computation of multiphase flow in porous media by implicit discontinuous Galerkin schemes with optimal ordering of elements.,2008,227,J. Comput. Physics,24,db/journals/jcphy/jcphy227.html#NatvigL08,https://doi.org/10.1016/j.jcp.2008.08.024 +Sébastien Deck,A rapid and low noise switch from RANS to WMLES on curvilinear grids with compressible flow solvers.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#DeckWR18,https://doi.org/10.1016/j.jcp.2018.02.028 +Kunlun Liu,A fractional step method for solving the compressible Navier-Stokes equations.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#LiuP07,https://doi.org/10.1016/j.jcp.2007.06.026 +Peijun Li,Coupling of finite element and boundary integral methods for electromagnetic scattering in a two-layered medium.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#Li10,https://doi.org/10.1016/j.jcp.2009.09.040 +Miroslav Cada,Compact third-order limiter functions for finite volume methods.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#CadaT09,https://doi.org/10.1016/j.jcp.2009.02.020 +Samuel Paolucci,WAMR: An adaptive wavelet method for the simulation of compressible reacting flow. Part II. The parallel algorithm.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#PaolucciZG14,https://doi.org/10.1016/j.jcp.2014.03.059 +Wenjun Cai,Dissipation-preserving spectral element method for damped seismic wave equations.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#CaiZW17,https://doi.org/10.1016/j.jcp.2017.08.048 +Ignace Bogaert,A faster aggregation for 3D fast evanescent wave solvers using rotations.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#BogaertPO07,https://doi.org/10.1016/j.jcp.2007.08.002 +E. Riber,Evaluation of numerical strategies for large eddy simulation of particulate two-phase recirculating flows.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#RiberMGPS09,https://doi.org/10.1016/j.jcp.2008.10.001 +Moritz Kompenhans,Adaptation strategies for high order discontinuous Galerkin methods based on Tau-estimation.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#KompenhansRFV16,https://doi.org/10.1016/j.jcp.2015.11.032 +Ludovic Métivier,Strategies for solving index one DAE with non-negative constraints: Application to liquid-liquid extraction.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#MetivierM12,https://doi.org/10.1016/j.jcp.2011.12.039 +Michael Harmon,Numerical algorithms based on Galerkin methods for the modeling of reactive interfaces in photoelectrochemical (PEC) solar cells.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#HarmonGR16,https://doi.org/10.1016/j.jcp.2016.08.026 +Søren Taverniers,Conservative tightly-coupled simulations of stochastic multiscale systems.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#TaverniersPT16,https://doi.org/10.1016/j.jcp.2016.02.047 +Jayanarayanan Sitaraman,Parallel domain connectivity algorithm for unsteady flow computations using overlapping and adaptive grids.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#SitaramanFWP10,https://doi.org/10.1016/j.jcp.2010.03.008 +Fang Q. Hu,Absorbing boundary conditions for nonlinear Euler and Navier-Stokes equations based on the perfectly matched layer technique.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#HuLL08,https://doi.org/10.1016/j.jcp.2008.01.010 +Alain Lerat,Steady discrete shocks of 5th and 7th-order RBC schemes and shock profiles of their equivalent differential equations.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#Lerat14,https://doi.org/10.1016/j.jcp.2014.04.045 +Feng Xing,Parallel numerical modeling of hybrid-dimensional compositional non-isothermal Darcy flows in fractured porous media.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#XingML17,https://doi.org/10.1016/j.jcp.2017.05.043 +Z. Jibben,An arbitrary-order Runge-Kutta discontinuous Galerkin approach to reinitialization for banded conservative level sets.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#JibbenH17,https://doi.org/10.1016/j.jcp.2017.08.035 +Victor Bayona,Optimal variable shape parameter for multiquadric based RBF-FD method.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#BayonaMK12,https://doi.org/10.1016/j.jcp.2011.11.036 +Zhi Lin,High-order finite-volume solutions of the steady-state advection-diffusion equation with nonlinear Robin boundary conditions.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#LinZ17,https://doi.org/10.1016/j.jcp.2017.05.023 +Peter G. Maginot,A non-negative moment-preserving spatial discretization scheme for the linearized Boltzmann transport equation in 1-D and 2-D Cartesian geometries.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#MaginotMR12,https://doi.org/10.1016/j.jcp.2012.06.018 +Suguru Miyauchi,A numerical method for interaction problems between fluid and membranes with arbitrary permeability for fluid.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#MiyauchiTK17,https://doi.org/10.1016/j.jcp.2017.05.006 +Raoul D. Schram,Simulation of ring polymer melts with GPU acceleration.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#SchramB18,https://doi.org/10.1016/j.jcp.2018.02.027 +M. Yarmohammadi,Spectral iterative method and convergence analysis for solving nonlinear fractional differential equation.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#YarmohammadiJB18,https://doi.org/10.1016/j.jcp.2018.01.020 +Kai Bao,A finite element method for the numerical solution of the coupled Cahn-Hilliard and Navier-Stokes system for moving contact line problems.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#BaoSSW12,https://doi.org/10.1016/j.jcp.2012.07.027 +Ammar Hakim,A high resolution wave propagation scheme for ideal Two-Fluid plasma equations.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#HakimLS06,https://doi.org/10.1016/j.jcp.2006.03.036 +Xiangyu Hu 0002,An adaptive central-upwind weighted essentially non-oscillatory scheme.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#HuWA10,https://doi.org/10.1016/j.jcp.2010.08.019 +Hadi Hajibeygi,Multiscale finite-volume method for parabolic problems arising from compressible multiphase flow in porous media.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#HajibeygiJ09,https://doi.org/10.1016/j.jcp.2009.04.017 +Yongsam Kim,Simulating the dynamics of inextensible vesicles by the penalty immersed boundary method.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#KimL10,https://doi.org/10.1016/j.jcp.2010.03.020 +Dhiraj V. Patil,Multigrid lattice Boltzmann method for accelerated solution of elliptic equations.,2014,265,J. Comput. Physics,,db/journals/jcphy/jcphy265.html#PatilPB14,https://doi.org/10.1016/j.jcp.2014.01.049 +Yibin Wang,Zipper layer method for linking two dissimilar structured meshes.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#WangQCS13,https://doi.org/10.1016/j.jcp.2013.08.012 +Quan Zhang,On the computation of ensemble averages for spatially non-uniform particle systems.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#ZhangIP06,https://doi.org/10.1016/j.jcp.2005.07.003 +Di Yang,Simulation of viscous flows with undulatory boundaries. Part I: Basic solver.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#YangS11,https://doi.org/10.1016/j.jcp.2011.02.036 +Edward Luke,A fast mesh deformation method using explicit interpolation.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#LukeCB12,https://doi.org/10.1016/j.jcp.2011.09.021 +Shengtai Li,High order central scheme on overlapping cells for magneto-hydrodynamic flows with and without constrained transport method.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#Li08,https://doi.org/10.1016/j.jcp.2008.04.022 +G. Kasperski,A parallel Schwarz preconditioner for the Chebyshev Gauss-Lobatto collocation (d2/dx2 - h2) operator.,2015,296,J. Comput. Physics,,db/journals/jcphy/jcphy296.html#Kasperski15,https://doi.org/10.1016/j.jcp.2015.04.049 +Rongzong Huang,Total enthalpy-based lattice Boltzmann method with adaptive mesh refinement for solid-liquid phase change.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#HuangW16,https://doi.org/10.1016/j.jcp.2016.03.043 +Christian Klingenberg,Numerical comparison of Riemann solvers for astrophysical hydrodynamics.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#KlingenbergSW07,https://doi.org/10.1016/j.jcp.2007.07.034 +Jeremiah U. Brackbill,On energy and momentum conservation in particle-in-cell plasma simulation.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#Brackbill16,https://doi.org/10.1016/j.jcp.2016.04.050 +Chaoyu Quan,Mathematical analysis and calculation of molecular surfaces.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#QuanS16,https://doi.org/10.1016/j.jcp.2016.07.007 +Milan Kucharik,Conservative multi-material remap for staggered multi-material Arbitrary Lagrangian-Eulerian methods.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#KucharikS14,https://doi.org/10.1016/j.jcp.2013.10.050 +Fabrice Schlegel,A fast 3D particle method for the simulation of buoyant flow.,2008,227,J. Comput. Physics,21,db/journals/jcphy/jcphy227.html#SchlegelWG08,https://doi.org/10.1016/j.jcp.2008.03.036 +Kunkun Tang,An adaptive least-squares global sensitivity method and application to a plasma-coupled combustion prediction with parametric correlation.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#TangMWF18,https://doi.org/10.1016/j.jcp.2018.01.042 +Barry Koren,Computational plasma physics.,2012,231,J. Comput. Physics,3,db/journals/jcphy/jcphy231.html#KorenEGGKK12,https://doi.org/10.1016/j.jcp.2011.11.012 +Nail K. Yamaleev,Local-in-time adjoint-based method for design optimization of unsteady flows.,2010,229,J. Comput. Physics,14,db/journals/jcphy/jcphy229.html#YamaleevDN10,https://doi.org/10.1016/j.jcp.2010.03.045 +Roberto Rojas,A phase-field-lattice Boltzmann method for modeling motion and growth of a dendrite for binary alloy solidification in the presence of melt convection.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#RojasTO15,https://doi.org/10.1016/j.jcp.2015.05.045 +Samet Y. Kadioglu,A second order self-consistent IMEX method for radiation hydrodynamics.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#KadiogluKLR10,https://doi.org/10.1016/j.jcp.2010.07.019 +Bernard Bialecki,ADI spectral collocation methods for parabolic problems.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#BialeckiF10,https://doi.org/10.1016/j.jcp.2010.03.033 +Jean-Luc Vay,A domain decomposition method for pseudo-spectral electromagnetic simulations of plasmas.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#VayHG13,https://doi.org/10.1016/j.jcp.2013.03.010 +Ian Sammis,A geometric nonuniform fast Fourier transform.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#SammisS09,https://doi.org/10.1016/j.jcp.2009.06.027 +Aaron Fisher,An efficient vector finite element method for nonlinear electromagnetic modeling.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#FisherWR07,https://doi.org/10.1016/j.jcp.2007.01.031 +Yoshiaki Kuwata,Imbalance-correction grid-refinement method for lattice Boltzmann flow simulations.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#KuwataS16,https://doi.org/10.1016/j.jcp.2016.02.008 +Taeyoung Ha,Magnetotelluric inversion via reverse time migration algorithm of seismic data.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#HaS07,https://doi.org/10.1016/j.jcp.2006.11.024 +Christian Waluga,Mass-corrections for the conservative coupling of flow and transport on collocated meshes.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#WalugaWR16,https://doi.org/10.1016/j.jcp.2015.10.044 +Jeffrey W. Banks,An evaluation of the FCT method for high-speed flows on structured overlapping grids.,2009,228,J. Comput. Physics,15,db/journals/jcphy/jcphy228.html#BanksHS09,https://doi.org/10.1016/j.jcp.2009.04.033 +F. Acker,An improved WENO-Z scheme.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#AckerBC16,https://doi.org/10.1016/j.jcp.2016.01.038 +Enrique Domingo Fernández-Nieto,A new Savage-Hutter type model for submarine avalanches and generated tsunami.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#Fernandez-NietoBBDM08,https://doi.org/10.1016/j.jcp.2008.04.039 +S. Hysing,Mixed element FEM level set method for numerical simulation of immiscible fluids.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#Hysing12,https://doi.org/10.1016/j.jcp.2011.11.035 +Masayuki Tanaka,Multi-resolution MPS method.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#TanakaCB18,https://doi.org/10.1016/j.jcp.2017.12.042 +Knut Erik Teigen,A diffuse-interface method for two-phase flows with soluble surfactants.,2011,230,J. Comput. Physics,2,db/journals/jcphy/jcphy230.html#TeigenSLV11,https://doi.org/10.1016/j.jcp.2010.09.020 +Youngjoon Hong,A stable high-order perturbation of surfaces method for numerical simulation of diffraction problems in triply layered media.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#HongN17,https://doi.org/10.1016/j.jcp.2016.10.057 +Hideki Fujioka,A continuum model of interfacial surfactant transport for particle methods.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#Fujioka13,https://doi.org/10.1016/j.jcp.2012.09.041 +Sergio Toledo-Redondo,Parallel 3D-TLM algorithm for simulation of the Earth-ionosphere cavity.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#Toledo-RedondoSMMFPM13,https://doi.org/10.1016/j.jcp.2012.10.047 +Jean-Luc Guermond,An interior penalty Galerkin method for the MHD equations in heterogeneous domains.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#GuermondLLN07,https://doi.org/10.1016/j.jcp.2006.06.045 +Pierre Degond,An Asymptotic Preserving scheme for the Euler equations in a strong magnetic field.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#DegondDSV09,https://doi.org/10.1016/j.jcp.2008.12.040 +Andres Goza,A strongly-coupled immersed-boundary formulation for thin elastic structures.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#GozaC17,https://doi.org/10.1016/j.jcp.2017.02.027 +Nicolas Chevaugeon,Optimal numerical parameterization of discontinuous Galerkin method applied to wave propagation problems.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#ChevaugeonHGPR07,https://doi.org/10.1016/j.jcp.2006.09.005 +Edouard Demaldent,Fast and accurate point-based method for time-harmonic maxwell problems involving thin layer materials.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#DemaldentLC11,https://doi.org/10.1016/j.jcp.2011.03.060 +Alessandra Nigro,Up to sixth-order accurate A-stable implicit schemes applied to the Discontinuous Galerkin discretized Navier-Stokes equations.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#NigroBBG14,https://doi.org/10.1016/j.jcp.2014.07.028 +Ying Zhou,Absorbing boundary conditions for the Euler and Navier-Stokes equations with the spectral difference method.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#ZhouW10,https://doi.org/10.1016/j.jcp.2010.08.007 +Qiang Zhou 0003,A second-order accurate immersed boundary-lattice Boltzmann method for particle-laden flows.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#ZhouF14,https://doi.org/10.1016/j.jcp.2014.02.038 +José Ignacio Aliaga,A fast band-Krylov eigensolver for macromolecular functional motion simulation on multicore architectures and graphics processors.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#AliagaABCDLQ16,https://doi.org/10.1016/j.jcp.2016.01.007 +Weizhu Bao,Numerical methods for computing ground states and dynamics of nonlinear relativistic Hartree equation for boson stars.,2011,230,J. Comput. Physics,13,db/journals/jcphy/jcphy230.html#BaoD11,https://doi.org/10.1016/j.jcp.2011.03.051 +Georgios Karagiannis,Selection of polynomial chaos bases via Bayesian model uncertainty methods with applications to sparse approximation of PDEs with stochastic inputs.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#KaragiannisL14,https://doi.org/10.1016/j.jcp.2013.11.016 +Quanxiang Wang,Energy-preserving finite volume element method for the improved Boussinesq equation.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#WangZZZ14,https://doi.org/10.1016/j.jcp.2014.03.053 +Thomas C. S. Rendall,Reduced surface point selection options for efficient mesh deformation using radial basis functions.,2010,229,J. Comput. Physics,8,db/journals/jcphy/jcphy229.html#RendallA10,https://doi.org/10.1016/j.jcp.2009.12.006 +S. Pavan,A second order residual based predictor-corrector approach for time dependent pollutant transport.,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#PavanHRA16,https://doi.org/10.1016/j.jcp.2016.04.053 +Martin Geier,Parametrization of the cumulant lattice Boltzmann method for fourth order accurate diffusion part II: Application to flow around a sphere at drag crisis.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#GeierPS17a,https://doi.org/10.1016/j.jcp.2017.07.004 +Olaf Marxen,A method for the direct numerical simulation of hypersonic boundary-layer instability with finite-rate chemistry.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#MarxenMSI13,https://doi.org/10.1016/j.jcp.2013.07.029 +Jung Hee Seo,A sharp-interface immersed boundary method with improved mass conservation and reduced spurious pressure oscillations.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#SeoM11a,https://doi.org/10.1016/j.jcp.2011.06.003 +Peter Lynch,The origins of computer weather prediction and climate modeling.,2008,227,J. Comput. Physics,7,db/journals/jcphy/jcphy227.html#Lynch08,https://doi.org/10.1016/j.jcp.2007.02.034 +Zhiliang Xu,A new Runge-Kutta discontinuous Galerkin method with conservation constraint to improve CFL condition for solving conservation laws.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#XuCL14,https://doi.org/10.1016/j.jcp.2014.08.042 +Nicolas Lantos,Perfectly matched layers for the heat and advection-diffusion equations.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#LantosN10,https://doi.org/10.1016/j.jcp.2010.08.004 +Liang Xu,Accuracies and conservation errors of various ghost fluid methods for multi-medium Riemann problem.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#XuL11,https://doi.org/10.1016/j.jcp.2011.03.021 +Philip Kunz,Inflow/outflow with Dirichlet boundary conditions for pressure in ISPH.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#KunzHHN16,https://doi.org/10.1016/j.jcp.2016.08.046 +Bamdad Hosseini,On regularizations of the Dirac delta distribution.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#HosseiniNS16,https://doi.org/10.1016/j.jcp.2015.10.054 +J. Velechovský,Symmetry- and essentially-bound-preserving flux-corrected remapping of momentum in staggered ALE hydrodynamics.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#VelechovskyKLSV13,https://doi.org/10.1016/j.jcp.2013.08.037 +Igor L. Novak,Diffusion on a curved surface coupled to diffusion in the volume: Application to cell biology.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#NovakGCRSS07,https://doi.org/10.1016/j.jcp.2007.05.025 +K. Ghoos,Accuracy and convergence of coupled finite-volume/Monte Carlo codes for plasma edge simulations of nuclear fusion reactors.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#GhoosDSBB16,https://doi.org/10.1016/j.jcp.2016.06.049 +Hector Gomez,Three-dimensional simulation of unstable gravity-driven infiltration of water into a porous medium.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#GomezCJ13,https://doi.org/10.1016/j.jcp.2012.12.018 +Peter J. Diamessis,Effective numerical viscosity in spectral multidomain penalty method-based simulations of localized turbulence.,2008,227,J. Comput. Physics,17,db/journals/jcphy/jcphy227.html#Diamessis0D08,https://doi.org/10.1016/j.jcp.2008.05.011 +Abbas Khayyer,Enhancement of stability and accuracy of the moving particle semi-implicit method.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#KhayyerG11,https://doi.org/10.1016/j.jcp.2011.01.009 +James A. Rossmanith,A positivity-preserving high-order semi-Lagrangian discontinuous Galerkin scheme for the Vlasov-Poisson equations.,2011,230,J. Comput. Physics,16,db/journals/jcphy/jcphy230.html#RossmanithS11,https://doi.org/10.1016/j.jcp.2011.04.018 +Lawrence Carin,Compressive sensing for multi-static scattering analysis.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#CarinLLG09,https://doi.org/10.1016/j.jcp.2009.01.033 +Eric M. Wolf,A particle-in-cell method for the simulation of plasmas based on an unconditionally stable field solver.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#WolfCCB16,https://doi.org/10.1016/j.jcp.2016.08.006 +Sheng Xu 0005,Computing jump conditions for the immersed interface method using triangular meshes.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#XuP15,https://doi.org/10.1016/j.jcp.2015.08.019 +Shingyu Leung,An Eulerian approach for computing the finite time Lyapunov exponent.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#Leung11,https://doi.org/10.1016/j.jcp.2011.01.046 +Madlen Kimmritz,On the convergence of the modified elastic-viscous-plastic method for solving the sea ice momentum equation.,2015,296,J. Comput. Physics,,db/journals/jcphy/jcphy296.html#KimmritzDL15,https://doi.org/10.1016/j.jcp.2015.04.051 +Liang Pan,Generalized coordinate transformation and gas-kinetic scheme.,2015,287,J. Comput. Physics,,db/journals/jcphy/jcphy287.html#PanX15,https://doi.org/10.1016/j.jcp.2015.02.010 +Piotr K. Smolarkiewicz,Simulation of all-scale atmospheric dynamics on unstructured meshes.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#SmolarkiewiczSX16,https://doi.org/10.1016/j.jcp.2016.06.048 +Andreas Braumann,Numerical study of a stochastic particle algorithm solving a multidimensional population balance model for high shear granulation.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#BraumannKW10,https://doi.org/10.1016/j.jcp.2010.06.021 +Jerrad Hampton,Basis adaptive sample efficient polynomial chaos (BASE-PC).,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#HamptonD18,https://doi.org/10.1016/j.jcp.2018.03.035 +F. E. Mackay,Coupling MD particles to a lattice-Boltzmann fluid through the use of conservative forces.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#MackayD13,https://doi.org/10.1016/j.jcp.2012.11.038 +Juan M. Giménez,An extended validation of the last generation of particle finite element method for free surface flows.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#GimenezG15,https://doi.org/10.1016/j.jcp.2014.12.025 +Hyung-Min Kang,A new approach of a limiting process for multi-dimensional flows.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#KangKL10,https://doi.org/10.1016/j.jcp.2010.06.001 +Yongjin Jeong,Convergence analysis of two-node CMFD method for two-group neutron diffusion eigenvalue problem.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#JeongPLL15,https://doi.org/10.1016/j.jcp.2015.09.004 +Thomas E. Schwartzentruber,A hybrid particle-continuum method applied to shock waves.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#SchwartzentruberB06,https://doi.org/10.1016/j.jcp.2005.10.023 +Jure Mencinger,A PLIC-VOF method suited for adaptive moving grids.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#MencingerZ11,https://doi.org/10.1016/j.jcp.2010.10.010 +Libin Lu,Contact-aware simulations of particulate Stokesian suspensions.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#LuRZ17,https://doi.org/10.1016/j.jcp.2017.06.039 +Arne Bøckmann,A gradient augmented level set method for unstructured grids.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#BockmannV14,https://doi.org/10.1016/j.jcp.2013.10.024 +Jitendra Kumar,A novel consistent and well-balanced algorithm for simulations of multiphase flows on unstructured grids.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#KumarN17,https://doi.org/10.1016/j.jcp.2017.08.047 +Ryu Fattah,A priori grid quality estimation for high-order finite differencing.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#FattahAZ16,https://doi.org/10.1016/j.jcp.2016.03.063 +L. Michael,A multi-physics methodology for the simulation of reactive flow and elastoplastic structural response.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#MichaelN18,https://doi.org/10.1016/j.jcp.2018.03.037 +Sungtae Kim,Wavenumber-extended high-order oscillation control finite volume schemes for multi-dimensional aeroacoustic computations.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#KimLK08,https://doi.org/10.1016/j.jcp.2007.12.013 +Geoffrey M. Vasil,A new method for fast transforms in parity-mixed PDEs: Part II. Application to confined rotating convection.,2008,227,J. Comput. Physics,17,db/journals/jcphy/jcphy227.html#VasilBJ08a,https://doi.org/10.1016/j.jcp.2008.04.040 +Stefan C. Schlanderer,The boundary data immersion method for compressible flows with application to aeroacoustics.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#SchlandererWS17,https://doi.org/10.1016/j.jcp.2016.12.050 +Emilie Marchandise,CAD and mesh repair with Radial Basis Functions.,2012,231,J. Comput. Physics,5,db/journals/jcphy/jcphy231.html#MarchandisePR12,https://doi.org/10.1016/j.jcp.2011.11.033 +Christopher Michalak,Accuracy preserving limiter for the high-order accurate solution of the Euler equations.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#MichalakO09,https://doi.org/10.1016/j.jcp.2009.08.021 +Daniele Cerroni,A penalty-projection algorithm for a monolithic fluid-structure interaction solver.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#CerroniM16,https://doi.org/10.1016/j.jcp.2016.02.041 +David C. Del Rey Fernández,A generalized framework for nodal first derivative summation-by-parts operators.,2014,266,J. Comput. Physics,,db/journals/jcphy/jcphy266.html#FernandezBZ14,https://doi.org/10.1016/j.jcp.2014.01.038 +See-Jo Kim,Direct numerical simulations of droplet emulsions in sliding bi-periodic frames using the level-set method.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#KimH07,https://doi.org/10.1016/j.jcp.2006.12.012 +Jean-Pierre Bérenger,On the Huygens absorbing boundary conditions for electromagnetics.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#Berenger07,https://doi.org/10.1016/j.jcp.2007.04.008 +Konstantinos T. Panourgias,A nonlinear filter for high order discontinuous Galerkin discretizations with discontinuity resolution within the cell.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#PanourgiasE16,https://doi.org/10.1016/j.jcp.2016.08.049 +Xiaodong Ren,A multi-dimensional high-order DG-ALE method based on gas-kinetic theory with application to oscillating bodies.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#RenXS16,https://doi.org/10.1016/j.jcp.2016.04.028 +Chunlei Liang,An efficient correction procedure via reconstruction for simulation of viscous flow on moving and deforming domains.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#LiangMZ14,https://doi.org/10.1016/j.jcp.2013.08.046 +Ying Zhao 0004,Variational boundary conditions based on the Nitsche method for fitted and unfitted isogeometric discretizations of the mechanically coupled Cahn-Hilliard equation.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#ZhaoSX17,https://doi.org/10.1016/j.jcp.2017.03.040 +Ali Zein,Modeling phase transition for compressible two-phase flows applied to metastable liquids.,2010,229,J. Comput. Physics,8,db/journals/jcphy/jcphy229.html#ZeinHW10,https://doi.org/10.1016/j.jcp.2009.12.026 +Michael Royston,Parallel redistancing using the Hopf-Lax formula.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#RoystonPLCYTO18,https://doi.org/10.1016/j.jcp.2018.01.035 +So-Hsiang Chou,Efficient Arnoldi-type algorithms for rational eigenvalue problems arising in fluid-solid systems.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#ChouHHL11,https://doi.org/10.1016/j.jcp.2010.12.022 +M. Wasserman,A robust implicit multigrid method for RANS equations with two-equation turbulence models.,2010,229,J. Comput. Physics,16,db/journals/jcphy/jcphy229.html#WassermanMYG10,https://doi.org/10.1016/j.jcp.2010.04.023 +Stephen R. Lau,Multidomain spectral method for the helically reduced wave equation.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#LauP07,https://doi.org/10.1016/j.jcp.2007.08.032 +Chungang Chen,Shallow water model on cubed-sphere by multi-moment finite volume method.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#ChenX08,https://doi.org/10.1016/j.jcp.2008.01.033 +Hong Wang,Fast alternating-direction finite difference methods for three-dimensional space-fractional diffusion equations.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#WangD14,https://doi.org/10.1016/j.jcp.2013.10.040 +Shuo Zhang,A nonconforming finite element method for the Cahn-Hilliard equation.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#ZhangW10,https://doi.org/10.1016/j.jcp.2010.06.020 +Bengt Fornberg,Fast calculation of Laurent expansions for matrix inverses.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#Fornberg16,https://doi.org/10.1016/j.jcp.2016.09.028 +Lukas Exl,The extrapolated explicit midpoint scheme for variable order and step size controlled integration of the Landau-Lifschitz-Gilbert equation.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#ExlMSS17,https://doi.org/10.1016/j.jcp.2017.06.005 +L. M. Yang,A simple distribution function-based gas-kinetic scheme for simulation of viscous incompressible and compressible flows.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#YangSW14,https://doi.org/10.1016/j.jcp.2014.06.033 +J. L. Desmarais,Open boundary conditions for the Diffuse Interface Model in 1-D.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#DesmaraisK14,https://doi.org/10.1016/j.jcp.2014.01.032 +Asaf Zarmi,A general approach for high order absorbing boundary conditions for the Helmholtz equation.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#ZarmiT13,https://doi.org/10.1016/j.jcp.2013.01.032 +Hong Luo,A Hermite WENO reconstruction-based discontinuous Galerkin method for the Euler equations on tetrahedral grids.,2012,231,J. Comput. Physics,16,db/journals/jcphy/jcphy231.html#LuoXLNC12,https://doi.org/10.1016/j.jcp.2012.05.011 +Zixi Hu,On an adaptive preconditioned Crank-Nicolson MCMC algorithm for infinite dimensional Bayesian inference.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#HuYL17,https://doi.org/10.1016/j.jcp.2016.11.024 +Alessandra Adrover,Stretching-based diagnostics and reduction of chemical kinetic models with diffusion.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#AdroverCGV07,https://doi.org/10.1016/j.jcp.2007.01.030 +Jianguo Jiang,A transition rate transformation method for solving advection-dispersion equation.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#JiangW11,https://doi.org/10.1016/j.jcp.2011.03.034 +Lawrence C. Cheung,A nonlinear PSE method for two-fluid shear flows with complex interfacial topology.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#CheungZ11,https://doi.org/10.1016/j.jcp.2011.05.007 +Changpin Li,Numerical approaches to fractional calculus and fractional ordinary differential equation.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#LiCY11,https://doi.org/10.1016/j.jcp.2011.01.030 +Scott P. MacLachlan,Fast and robust solvers for pressure-correction in bubbly flow problems.,2008,227,J. Comput. Physics,23,db/journals/jcphy/jcphy227.html#MacLachlanTV08,https://doi.org/10.1016/j.jcp.2008.07.022 +Y. Noumir,A fast-marching like algorithm for geometrical shock dynamics.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#NoumirGLMS15,https://doi.org/10.1016/j.jcp.2014.12.019 +Lili Ju,Covolume-upwind finite volume approximations for linear elliptic partial differential equations.,2012,231,J. Comput. Physics,18,db/journals/jcphy/jcphy231.html#JuTXZ12,https://doi.org/10.1016/j.jcp.2012.05.004 +Jeffrey Willert,Leveraging Anderson Acceleration for improved convergence of iterative solutions to transport systems.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#WillertTK14,https://doi.org/10.1016/j.jcp.2014.05.015 +Mathieu Lepilliez,On two-phase flow solvers in irregular domains with contact line.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#LepilliezPGT16,https://doi.org/10.1016/j.jcp.2016.06.013 +Dali Zhang,Reconstruction of spectral function from effective permittivity of a composite material using rational function approximations.,2009,228,J. Comput. Physics,15,db/journals/jcphy/jcphy228.html#ZhangC09,https://doi.org/10.1016/j.jcp.2009.04.014 +Weihua Geng,A two-component Matched Interface and Boundary (MIB) regularization for charge singularity in implicit solvation.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#GengZ17,https://doi.org/10.1016/j.jcp.2017.09.026 +Giuliano De Stefano,Wavelet-based adaptive large-eddy simulation with explicit filtering.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#StefanoV13,https://doi.org/10.1016/j.jcp.2012.09.030 +Alexandru Cibotarica,Solution of nonlinear time-dependent PDEs through componentwise approximation of matrix functions.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#CibotaricaLP16,https://doi.org/10.1016/j.jcp.2016.06.024 +Peter Gerlinger,Lagrangian transported MDF methods for compressible high speed flows.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#Gerlinger17,https://doi.org/10.1016/j.jcp.2017.02.049 +Hong Luo,A reconstructed discontinuous Galerkin method for the compressible Navier-Stokes equations on arbitrary grids.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#LuoLNMD10,https://doi.org/10.1016/j.jcp.2010.05.033 +Chien-Chang Yen,Self-gravitational force calculation of infinitesimally thin gaseous disks.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#YenTYJ12,https://doi.org/10.1016/j.jcp.2012.08.003 +Tao Lin,A locking-free immersed finite element method for planar elasticity interface problems.,2013,247,J. Comput. Physics,,db/journals/jcphy/jcphy247.html#LinSZ13,https://doi.org/10.1016/j.jcp.2013.03.053 +Dario Contrino,Lattice-Boltzmann simulations of the thermally driven 2D square cavity at high Rayleigh numbers.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#ContrinoLAL14,https://doi.org/10.1016/j.jcp.2014.06.047 +Pierre Degond,An entropic quantum drift-diffusion model for electron transport in resonant tunneling diodes.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#DegondGM07,https://doi.org/10.1016/j.jcp.2006.06.027 +Tao Zhou,Weighted discrete least-squares polynomial approximation using randomized quadratures.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#ZhouNX15,https://doi.org/10.1016/j.jcp.2015.06.042 +Christopher M. Bard,A simple GPU-accelerated two-dimensional MUSCL-Hancock solver for ideal magnetohydrodynamics.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#BardD14,https://doi.org/10.1016/j.jcp.2013.12.006 +Daniel P. Garrick,A finite-volume HLLC-based scheme for compressible interfacial flows with surface tension.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#GarrickOR17,https://doi.org/10.1016/j.jcp.2017.03.007 +Jun Zhu,Hermite WENO schemes for Hamilton-Jacobi equations on unstructured meshes.,2013,254,J. Comput. Physics,,db/journals/jcphy/jcphy254.html#ZhuQ13,https://doi.org/10.1016/j.jcp.2013.07.030 +Olivier Gallinato,Superconvergent second order Cartesian method for solving free boundary problem for invadopodia formation.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#GallinatoP17,https://doi.org/10.1016/j.jcp.2017.03.010 +Zhiping Mao,Fractional Burgers equation with nonlinear non-locality: Spectral vanishing viscosity and local discontinuous Galerkin methods.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#MaoK17,https://doi.org/10.1016/j.jcp.2017.01.048 +Michele Benzi,A Relaxed Dimensional Factorization preconditioner for the incompressible Navier-Stokes equations.,2011,230,J. Comput. Physics,16,db/journals/jcphy/jcphy230.html#BenziNNW11,https://doi.org/10.1016/j.jcp.2011.04.001 +Simon Abraham,Spectral representation of stochastic field data using sparse polynomial chaos expansions.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#AbrahamTMLCG18,https://doi.org/10.1016/j.jcp.2018.04.025 +Yih-Ferng Peng,Nested Cartesian grid method in incompressible viscous fluid flow.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#PengMSH10,https://doi.org/10.1016/j.jcp.2010.05.041 +Cristian Constantin Lalescu,Influence of numerical schemes on statistical properties of computed charged particle trajectories in turbulent electromagnetic fields.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#LalescuTC13,https://doi.org/10.1016/j.jcp.2011.10.011 +Chris H. Rycroft,Simulations of a stretching bar using a plasticity model from the shear transformation zone theory.,2012,231,J. Comput. Physics,5,db/journals/jcphy/jcphy231.html#RycroftG12,https://doi.org/10.1016/j.jcp.2011.10.009 +A. Rona,Optimised prefactored compact schemes for linear wave propagation phenomena.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#RonaSHBP17,https://doi.org/10.1016/j.jcp.2016.10.014 +Simone Palamara,An effective algorithm for the generation of patient-specific Purkinje networks in computational electrocardiology.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#PalamaraVFN15,https://doi.org/10.1016/j.jcp.2014.11.043 +Kuo-Ming Lee,An inverse scattering problem from an impedance obstacle.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#Lee07,https://doi.org/10.1016/j.jcp.2007.07.030 +Li-Chieh Chen,A DFFD simulation method combined with the spectral element method for solid-fluid-interaction problems.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#ChenH17,https://doi.org/10.1016/j.jcp.2016.10.050 +Julia Ling,Machine learning strategies for systems with invariance properties.,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#LingJT16,https://doi.org/10.1016/j.jcp.2016.05.003 +Norikazu Sato,A consistent direct discretization scheme on Cartesian grids for convective and conjugate heat transfer.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#SatoTKIH16,https://doi.org/10.1016/j.jcp.2016.05.034 +Nathaniel R. Morgan,A Lagrangian staggered grid Godunov-like approach for hydrodynamics.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#MorganLBK14,https://doi.org/10.1016/j.jcp.2013.12.013 +Stefan Schoch,An Eulerian algorithm for coupled simulations of elastoplastic-solids and condensed-phase explosives.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#SchochNN13,https://doi.org/10.1016/j.jcp.2013.06.020 +Xiang Zheng,A parallel domain decomposition-based implicit method for the Cahn-Hilliard-Cook phase-field equation in 3D.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#ZhengYCK15,https://doi.org/10.1016/j.jcp.2015.01.016 +Olivier Chanrion,A PIC-MCC code for simulation of streamer propagation in air.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#ChanrionN08,https://doi.org/10.1016/j.jcp.2008.04.016 +J.-B. Lagaert,Hybrid spectral-particle method for the turbulent transport of a passive scalar.,2014,260,J. Comput. Physics,,db/journals/jcphy/jcphy260.html#LagaertBC14,https://doi.org/10.1016/j.jcp.2013.12.026 +Matthew J. Reynolds,Optimization via separated representations and the canonical tensor decomposition.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#ReynoldsBD17,https://doi.org/10.1016/j.jcp.2017.07.012 +Zhiqiang Sheng,A new nonlinear finite volume scheme preserving positivity for diffusion equations.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#ShengY16,https://doi.org/10.1016/j.jcp.2016.03.053 +Guangwei Yuan,Monotone finite volume schemes for diffusion equations on polygonal meshes.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#YuanS08,https://doi.org/10.1016/j.jcp.2008.03.007 +Gianluca Rossiello,Third-order-accurate fluctuation splitting schemes for unsteady hyperbolic problems.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#RossielloPPN07,https://doi.org/10.1016/j.jcp.2006.07.027 +Mohamed A. Hajji,An efficient algorithm for solving higher-order fractional Sturm-Liouville eigenvalue problems.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#HajjiAA14,https://doi.org/10.1016/j.jcp.2014.04.048 +Rob Harris,Efficient quadrature-free high-order spectral volume method on unstructured grids: Theory and 2D implementation.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#HarrisWL08,https://doi.org/10.1016/j.jcp.2007.09.012 +Yoshiaki Kuwata,Anomaly of the lattice Boltzmann methods in three-dimensional cylindrical flows.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#KuwataS15,https://doi.org/10.1016/j.jcp.2014.10.002 +Mohamed El Bouajaji,Approximate local magnetic-to-electric surface operators for time-harmonic Maxwell's equations.,2014,279,J. Comput. Physics,,db/journals/jcphy/jcphy279.html#BouajajiAG14,https://doi.org/10.1016/j.jcp.2014.09.011 +Clément Mettot,Computation of eigenvalue sensitivity to base flow modifications in a discrete framework: Application to open-loop control.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#MettotRS14,https://doi.org/10.1016/j.jcp.2014.03.022 +Richard P. Smedley-Stevenson,Asymptotic diffusion limit of cell temperature discretisation schemes for thermal radiation transport.,2015,286,J. Comput. Physics,,db/journals/jcphy/jcphy286.html#Smedley-Stevenson15,https://doi.org/10.1016/j.jcp.2013.10.038 +P. T. Barton,Eulerian adaptive finite-difference method for high-velocity impact and penetration problems.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#BartonDMP13,https://doi.org/10.1016/j.jcp.2013.01.013 +Haibiao Zheng,Adaptive variational multiscale methods for incompressible flow based on two local Gauss integrations.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#ZhengHS10,https://doi.org/10.1016/j.jcp.2010.05.038 +Xian Luo,Modeling electrokinetic flows by the smoothed profile method.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#LuoBK10,https://doi.org/10.1016/j.jcp.2010.01.030 +A. W. Vreman,A third-order multistep time discretization for a Chebyshev tau spectral method.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#VremanK16,https://doi.org/10.1016/j.jcp.2015.10.022 +M. Fares,The reduced basis method for the electric field integral equation.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#FaresHMS11,https://doi.org/10.1016/j.jcp.2011.03.023 +Raphael Egan,Geometric discretization of the multidimensional Dirac delta distribution - Application to the Poisson equation with singular source terms.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#EganG17,https://doi.org/10.1016/j.jcp.2017.06.003 +Ping Fan,High order weighted essentially nonoscillatory WENO-λ1* schemes for hyperbolic conservation laws.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#Fan14,https://doi.org/10.1016/j.jcp.2014.03.033 +Chiu-Yen Kao,Legendre-transform-based fast sweeping methods for static Hamilton-Jacobi equations on triangulated meshes.,2008,227,J. Comput. Physics,24,db/journals/jcphy/jcphy227.html#KaoOQ08,https://doi.org/10.1016/j.jcp.2008.08.016 +Alex Kanevsky,Idempotent filtering in spectral and spectral element methods.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#KanevskyCH06,https://doi.org/10.1016/j.jcp.2006.05.014 +Jan Ackmann,Stochastic goal-oriented error estimation with memory.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#AckmannMK17,https://doi.org/10.1016/j.jcp.2017.07.009 +Yan-Fei Jing,Lanczos-type variants of the COCR method for complex nonsymmetric linear systems.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#JingHZLCRDSC09,https://doi.org/10.1016/j.jcp.2009.05.022 +José A. Carrillo,Simulation of fluid and particles flows: Asymptotic preserving schemes for bubbling and flowing regimes.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#CarrilloGL08,https://doi.org/10.1016/j.jcp.2008.05.002 +Jean-Philippe Argaud,Sensor placement in nuclear reactors based on the generalized empirical interpolation method.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#ArgaudBCGMM18,https://doi.org/10.1016/j.jcp.2018.02.050 +N. K. Mapakshi,A scalable variational inequality approach for flow through porous media models with pressure-dependent viscosity.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#MapakshiCN18,https://doi.org/10.1016/j.jcp.2018.01.022 +Lukas Exl,Non-uniform FFT for the finite element computation of the micromagnetic scalar potential.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#ExlS14,https://doi.org/10.1016/j.jcp.2014.04.013 +Davide Vanzo,Pollutant transport by shallow water equations on unstructured meshes: Hyperbolization of the model and numerical solution via a novel flux splitting scheme.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#VanzoST16,https://doi.org/10.1016/j.jcp.2016.05.023 +Carlos Pantano,An oscillation free shock-capturing method for compressible van der Waals supercritical fluid flows.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#PantanoSS17,https://doi.org/10.1016/j.jcp.2017.01.057 +Siddhartha Mishra,Multi-level Monte Carlo finite volume methods for nonlinear systems of conservation laws in multi-dimensions.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#MishraSS12,https://doi.org/10.1016/j.jcp.2012.01.011 +Yana Di,Precursor simulations in spreading using a multi-mesh adaptive finite element method.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#DiW09,https://doi.org/10.1016/j.jcp.2008.10.028 +Chengkun Huang,QUICKPIC: A highly efficient particle-in-cell code for modeling wakefield acceleration in plasmas.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#HuangDRZLMCAK06,https://doi.org/10.1016/j.jcp.2006.01.039 +Yohsuke Imai,Stable coupling between vector and scalar variables for the IDO scheme on collocated grids.,2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#ImaiA06a,https://doi.org/10.1016/j.jcp.2005.10.015 +Jean-Pierre Bérenger,The Huygens subgridding for the numerical solution of the Maxwell equations.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#Berenger11,https://doi.org/10.1016/j.jcp.2011.03.046 +Manuel Kindelan,Application of the RBF meshless method to the solution of the radiative transport equation.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#KindelanBGM10,https://doi.org/10.1016/j.jcp.2009.11.014 +John Harlim,An algebraic method for constructing stable and consistent autoregressive filters.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#HarlimHR15,https://doi.org/10.1016/j.jcp.2014.12.004 +Xiangfan Piao,An iteration free backward semi-Lagrangian scheme for solving incompressible Navier-Stokes equations.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#PiaoBBK15,https://doi.org/10.1016/j.jcp.2014.11.040 +Luca Marchetti,HRSSA - Efficient hybrid stochastic simulation for spatially homogeneous biochemical reaction networks.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#MarchettiPT16,https://doi.org/10.1016/j.jcp.2016.04.056 +Luca Formaggia,On the physical consistency between three-dimensional and one-dimensional models in haemodynamics.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#FormaggiaQV13,https://doi.org/10.1016/j.jcp.2012.08.001 +M. Sani,A set of particle locating algorithms not requiring face belonging to cell connectivity data.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#SaniS09,https://doi.org/10.1016/j.jcp.2009.06.031 +David L. George,Augmented Riemann solvers for the shallow water equations over variable topography with steady states and inundation.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#George08,https://doi.org/10.1016/j.jcp.2007.10.027 +Woojin Kim,A weak-coupling immersed boundary method for fluid-structure interaction with low density ratio of solid to fluid.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#KimLC18,https://doi.org/10.1016/j.jcp.2017.12.045 +Weixiong Zheng,Moment closures based on minimizing the residual of the PN angular expansion in radiation transport.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#ZhengM16,https://doi.org/10.1016/j.jcp.2016.03.030 +G. P. Ghiroldi,A direct method for the Boltzmann equation based on a pseudo-spectral velocity space discretization.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#GhiroldiG14,https://doi.org/10.1016/j.jcp.2013.10.055 +Tadej Dobravec,A cellular automaton - finite volume method for the simulation of dendritic and eutectic growth in binary alloys using an adaptive mesh refinement.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#DobravecMS17,https://doi.org/10.1016/j.jcp.2017.08.011 +Marco Ellero,Incompressible smoothed particle hydrodynamics.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#ElleroSE07,https://doi.org/10.1016/j.jcp.2007.06.019 +James Bremer,On the numerical evaluation of the singular integrals of scattering theory.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#BremerG13,https://doi.org/10.1016/j.jcp.2013.05.048 +Seungwon Shin,Computation of the curvature field in numerical simulation of multiphase flow.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#Shin07,https://doi.org/10.1016/j.jcp.2006.08.009 +Konstantin Lipnikov,Interpolation-free monotone finite volume method for diffusion equations on polygonal meshes.,2009,228,J. Comput. Physics,3,db/journals/jcphy/jcphy228.html#LipnikovSV09,https://doi.org/10.1016/j.jcp.2008.09.031 +T. Weyens,PB3D: A new code for edge 3-D ideal linear peeling-ballooning stability.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#WeyensSHLG17,https://doi.org/10.1016/j.jcp.2016.10.054 +Jeffrey W. Banks,On Galerkin difference methods.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#BanksH16,https://doi.org/10.1016/j.jcp.2016.02.042 +Patrick E. Farrell,The addition of fields on different meshes.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#Farrell11,https://doi.org/10.1016/j.jcp.2011.01.028 +Raul Borsche,High order numerical methods for networks of hyperbolic conservation laws coupled with ODEs and lumped parameter models.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#BorscheK16,https://doi.org/10.1016/j.jcp.2016.10.003 +Kevin Carlberg,"Corrigendum to ""The GNAT method for nonlinear model reduction: Effective implementation and application to computational fluid dynamics and turbulent flows"" [J. Comput. Physics 242 (2013) 623-647].",2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#CarlbergFCA13a,https://doi.org/10.1016/j.jcp.2013.05.022 +Ian G. Grooms,Linearly implicit methods for nonlinear PDEs with linear dispersion and dissipation.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#GroomsJ11,https://doi.org/10.1016/j.jcp.2011.02.007 +Jisheng Kou,Thermodynamically consistent simulation of nonisothermal diffuse-interface two-phase flow with Peng-Robinson equation of state.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#KouS18,https://doi.org/10.1016/j.jcp.2018.05.047 +Yohei Sato,A depletable micro-layer model for nucleate pool boiling.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#SatoN15,https://doi.org/10.1016/j.jcp.2015.07.046 +Masoud Nickaeen,Newton multigrid least-squares FEM for the V-V-P formulation of the Navier-Stokes equations.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#NickaeenOT14,https://doi.org/10.1016/j.jcp.2013.09.011 +Michael Oevermann,A Cartesian grid finite volume method for elliptic equations with variable coefficients and embedded interfaces.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#OevermannK06,https://doi.org/10.1016/j.jcp.2006.04.010 +S. M. Zandi,Exponential basis functions in solution of incompressible fluid problems with moving free surfaces.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#ZandiBS12,https://doi.org/10.1016/j.jcp.2011.09.016 +Jan Nordström,"Corrigendum to ""On the relation between conservation and dual consistency for summation-by-parts schemes"" [J. Comput. Phys. 344 (2017) 437-439].",2018,360,J. Comput. Physics,,db/journals/jcphy/jcphy360.html#NordstromG18,https://doi.org/10.1016/j.jcp.2018.02.046 +K. S. Schmid,Higher order FE-FV method on unstructured grids for transport and two-phase flow with variable viscosity in heterogeneous porous media.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#SchmidGS13,https://doi.org/10.1016/j.jcp.2012.12.017 +Max Duarte,A new numerical strategy with space-time adaptivity and error control for multi-scale streamer discharge simulations.,2012,231,J. Comput. Physics,3,db/journals/jcphy/jcphy231.html#DuarteBMBDD12,https://doi.org/10.1016/j.jcp.2011.07.002 +Christopher Eldred,Dispersion analysis of compatible Galerkin schemes for the 1D shallow water model.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#EldredR18,https://doi.org/10.1016/j.jcp.2018.06.007 +Nicholas Frontiere,CRKSPH - A Conservative Reproducing Kernel Smoothed Particle Hydrodynamics Scheme.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#FrontiereRO17,https://doi.org/10.1016/j.jcp.2016.12.004 +Mike Christie,Uncertainty quantification for porous media flows.,2006,217,J. Comput. Physics,1,db/journals/jcphy/jcphy217.html#ChristieDE06,https://doi.org/10.1016/j.jcp.2006.01.026 +Weinan E,Nested stochastic simulation algorithms for chemical kinetic systems with multiple time scales.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#ELV07,https://doi.org/10.1016/j.jcp.2006.06.019 +Christian Kühnlein,Modelling atmospheric flows with adaptive moving meshes.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#KuhnleinSD12,https://doi.org/10.1016/j.jcp.2011.12.012 +Keyi Wu,A surrogate accelerated multicanonical Monte Carlo method for uncertainty quantification.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#WuL16,https://doi.org/10.1016/j.jcp.2016.06.020 +Jian Xu,Numerical methods for nonlinear Dirac equation.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#XuST13,https://doi.org/10.1016/j.jcp.2013.03.031 +Dinshaw S. Balsara,Von Neumann stability analysis of globally divergence-free RKDG schemes for the induction equation using multidimensional Riemann solvers.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#BalsaraK17,https://doi.org/10.1016/j.jcp.2017.01.056 +Matthew R. Smith,Development of an improved spatial reconstruction technique for the HLL method and its applications.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#SmithLHCW11,https://doi.org/10.1016/j.jcp.2010.09.023 +Jie Zhang,Direct simulation of multi-phase MHD flows on an unstructured Cartesian adaptive system.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#ZhangN14a,https://doi.org/10.1016/j.jcp.2014.03.030 +A. D. Kercher,Removal of pseudo-convergence in coplanar and near-coplanar Riemann problems of ideal magnetohydrodynamics solved using finite volume schemes.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#KercherW15,https://doi.org/10.1016/j.jcp.2014.11.027 +Stéphanie Péron,Automatic off-body overset adaptive Cartesian mesh method based on an octree approach.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#PeronB13,https://doi.org/10.1016/j.jcp.2012.07.029 +S. Adami,A transport-velocity formulation for smoothed particle hydrodynamics.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#AdamiHA13,https://doi.org/10.1016/j.jcp.2013.01.043 +Yingsong Zheng,Comparing macroscopic continuum models for rarefied gas dynamics: A new test method.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#ZhengRS06,https://doi.org/10.1016/j.jcp.2006.03.005 +Jun Lai,Robust integral formulations for electromagnetic scattering from three-dimensional cavities.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#LaiGO17,https://doi.org/10.1016/j.jcp.2017.05.008 +Wenjun Sun,An asymptotic preserving unified gas kinetic scheme for gray radiative transfer equations.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#SunJX15,https://doi.org/10.1016/j.jcp.2015.01.008 +D. P. Jones,Droplet size and velocity distributions for spray modelling.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#JonesW12,https://doi.org/10.1016/j.jcp.2011.09.030 +Katia Gomberoff,A method for obtaining three-dimensional computational equilibrium of non-neutral plasmas using WARP.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#GomberoffWFGV07,https://doi.org/10.1016/j.jcp.2007.02.029 +Adam J. Sierakowski,Resolved-particle simulation by the Physalis method: Enhancements and new capabilities.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#SierakowskiP16,https://doi.org/10.1016/j.jcp.2015.12.057 +Sebastian Liska,A fast immersed boundary method for external incompressible viscous flows using lattice Green's functions.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#LiskaC17,https://doi.org/10.1016/j.jcp.2016.11.034 +Delfim Soares Jr.,Dynamic analysis of fluid-soil-structure interaction problems by the boundary element method.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#SoaresM06,https://doi.org/10.1016/j.jcp.2006.04.006 +Mir Sajjad Hashemi,Numerical approximation of higher-order time-fractional telegraph equation by using a combination of a geometric approach and method of line.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#HashemiB16,https://doi.org/10.1016/j.jcp.2016.04.009 +Yi Sui,A hybrid method to study flow-induced deformation of three-dimensional capsules.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#SuiCRL08,https://doi.org/10.1016/j.jcp.2008.03.017 +Ulrich Römer,A defect corrected finite element approach for the accurate evaluation of magnetic fields on unstructured grids.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#RomerSG17,https://doi.org/10.1016/j.jcp.2017.01.041 +Jeffrey K. Wiens,An efficient parallel immersed boundary algorithm using a pseudo-compressible fluid solver.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#WiensS15,https://doi.org/10.1016/j.jcp.2014.10.058 +Daniel Conrad,Accuracy of non-Newtonian Lattice Boltzmann simulations.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#ConradSB15,https://doi.org/10.1016/j.jcp.2015.07.066 +Arpiruk Hokpunna,Compact fourth-order finite volume method for numerical solutions of Navier-Stokes equations on staggered grids.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#HokpunnaM10,https://doi.org/10.1016/j.jcp.2010.05.042 +Eric C. Cyr,Using the method of weighted residuals to compute potentials of mean force.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#CyrB07,https://doi.org/10.1016/j.jcp.2006.12.015 +Guillaume Dechristé,A Cartesian cut cell method for rarefied flow simulations around moving obstacles.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#DechristeM16,https://doi.org/10.1016/j.jcp.2016.03.024 +Guido Lodato,Three-dimensional boundary conditions for direct and large-eddy simulation of compressible viscous flows.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#LodatoDV08,https://doi.org/10.1016/j.jcp.2008.01.038 +Iman Borazjani,Curvilinear immersed boundary method for simulating fluid structure interaction with complex 3D rigid bodies.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#BorazjaniGS08,https://doi.org/10.1016/j.jcp.2008.04.028 +Stephen Cauley,A two-dimensional domain decomposition technique for the simulation of quantum-scale devices.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#CauleyBKK12,https://doi.org/10.1016/j.jcp.2011.10.006 +Jonathan B. Goodman,Coupling control variates for Markov chain Monte Carlo.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#GoodmanL09,https://doi.org/10.1016/j.jcp.2009.03.043 +Vitaliy Gyrya,High-order mimetic finite difference method for diffusion problems on polygonal meshes.,2008,227,J. Comput. Physics,20,db/journals/jcphy/jcphy227.html#GyryaL08,https://doi.org/10.1016/j.jcp.2008.06.028 +Francesco Bassi,On the flexibility of agglomeration based physical space discontinuous Galerkin discretizations.,2012,231,J. Comput. Physics,1,db/journals/jcphy/jcphy231.html#BassiBCPT12,https://doi.org/10.1016/j.jcp.2011.08.018 +Joachim Moortgat,Higher-order compositional modeling of three-phase flow in 3D fractured porous media based on cross-flow equilibrium.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#MoortgatF13,https://doi.org/10.1016/j.jcp.2013.05.009 +Matt Landreman,New velocity-space discretization for continuum kinetic calculations and Fokker-Planck collisions.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#LandremanE13,https://doi.org/10.1016/j.jcp.2013.02.041 +Sara Zahedi,Delta function approximations in level set methods by distance function extension.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#ZahediT10,https://doi.org/10.1016/j.jcp.2009.11.030 +Robert Scott Martin,Octree particle management for DSMC and PIC simulations.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#MartinC16,https://doi.org/10.1016/j.jcp.2016.01.020 +Songting Luo,Factored singularities and high-order Lax-Friedrichs sweeping schemes for point-source travel* and amplitudes.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#LuoQ11,https://doi.org/10.1016/j.jcp.2011.02.043 +Jens Berg,Superconvergent functional output for time-dependent problems using finite differences on summation-by-parts form.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#BergN12,https://doi.org/10.1016/j.jcp.2012.06.032 +Ramakrishna Tipireddy,Basis adaptation in homogeneous chaos spaces.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#TipireddyG14,https://doi.org/10.1016/j.jcp.2013.12.009 +Eugene Kazantsev,Identification of an optimal derivatives approximation by variational data assimilation.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#Kazantsev10,https://doi.org/10.1016/j.jcp.2009.09.018 +Volker John,On (essentially) non-oscillatory discretizations of evolutionary convection-diffusion equations.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#JohnN12,https://doi.org/10.1016/j.jcp.2011.10.025 +Christopher Cox,A high-order solver for unsteady incompressible Navier-Stokes equations using the flux reconstruction method on unstructured grids with implicit dual time stepping.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#CoxLP16,https://doi.org/10.1016/j.jcp.2016.03.016 +Francesco Capuano,Explicit Runge-Kutta schemes for incompressible flow with improved energy-conservation properties.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#CapuanoCRL17,https://doi.org/10.1016/j.jcp.2016.10.040 +Christoph M. Augustin,Anatomically accurate high resolution modeling of human whole heart electromechanics: A strongly scalable algebraic multigrid solver method for nonlinear deformation.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#AugustinNLPNHP16,https://doi.org/10.1016/j.jcp.2015.10.045 +Colton J. Conroy,hp discontinuous Galerkin methods for the vertical extent of the water column in coastal settings part I: Barotropic forcing.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#ConroyK16,https://doi.org/10.1016/j.jcp.2015.10.038 +Arnaud Fosso P.,Curvilinear finite-volume schemes using high-order compact interpolation.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#PDSS10,https://doi.org/10.1016/j.jcp.2010.03.027 +G. Manzini,A Legendre-Fourier spectral method with exact conservation laws for the Vlasov-Poisson system.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#ManziniDVM16,https://doi.org/10.1016/j.jcp.2016.03.069 +G. Della Rocca,Level set reinitialization at a contact line.,2014,265,J. Comput. Physics,,db/journals/jcphy/jcphy265.html#RoccaB14,https://doi.org/10.1016/j.jcp.2014.01.040 +Dag Lindbo,Spectral accuracy in fast Ewald-based methods for particle simulations.,2011,230,J. Comput. Physics,24,db/journals/jcphy/jcphy230.html#LindboT11,https://doi.org/10.1016/j.jcp.2011.08.022 +Fuyuan Wu,A conservative MHD scheme on unstructured Lagrangian grids for Z-pinch hydrodynamic simulations.,2018,357,J. Comput. Physics,,db/journals/jcphy/jcphy357.html#WuRL18,https://doi.org/10.1016/j.jcp.2017.12.014 +Yuhui Sun,A windowed Fourier pseudospectral method for hyperbolic conservation laws.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#SunZLW06,https://doi.org/10.1016/j.jcp.2005.09.027 +Eid H. Doha,Jacobi-Gauss-Lobatto collocation method for the numerical solution of l+l nonlinear Schrödinger equations.,2014,261,J. Comput. Physics,,db/journals/jcphy/jcphy261.html#DohaBAG14,https://doi.org/10.1016/j.jcp.2014.01.003 +Jisheng Kou,Multi-scale diffuse interface modeling of multi-component two-phase flow with partial miscibility.,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#KouS16,https://doi.org/10.1016/j.jcp.2016.04.055 +Jin Wang,A numerical algorithm for viscous incompressible interfacial flows.,2009,228,J. Comput. Physics,15,db/journals/jcphy/jcphy228.html#WangB09,https://doi.org/10.1016/j.jcp.2009.04.025 +Alexandros Beskos,Geometric MCMC for infinite-dimensional inverse problems.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#BeskosGLFS17,https://doi.org/10.1016/j.jcp.2016.12.041 +Marc-Antoine Habisreutinger,A coupled approximate deconvolution and dynamic mixed scale model for large-eddy simulation.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#HabisreutingerBLD07,https://doi.org/10.1016/j.jcp.2007.02.010 +L. Homsi,A coupled electro-thermal Discontinuous Galerkin method.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#HomsiGN17,https://doi.org/10.1016/j.jcp.2017.07.028 +Will Cousins,Boundary conditions for hemodynamics: The structured tree revisited.,2012,231,J. Comput. Physics,18,db/journals/jcphy/jcphy231.html#CousinsG12,https://doi.org/10.1016/j.jcp.2012.04.038 +ö. D. Gürcan,Numerical computation of the modified plasma dispersion function with curvature.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#Gurcan14,https://doi.org/10.1016/j.jcp.2014.03.017 +Xavier Antoine,Absorbing boundary conditions for the one-dimensional Schrödinger equation with an exterior repulsive potential.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#AntoineBK09,https://doi.org/10.1016/j.jcp.2008.09.013 +Jan Kopitz,CFD-based application of the Nyquist criterion to thermo-acoustic instabilities.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#KopitzP08,https://doi.org/10.1016/j.jcp.2008.03.022 +Henrik Juul Spietz,Iterative Brinkman penalization for simulation of impulsively started flow past a sphere and a circular disc.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#SpietzHW17,https://doi.org/10.1016/j.jcp.2017.01.064 +Yuqi Wu,A fully implicit domain decomposition based ALE framework for three-dimensional fluid-structure interaction with application in blood flow computation.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#WuC14,https://doi.org/10.1016/j.jcp.2013.10.046 +Leslie Greengard,The solution of the scalar wave equation in the exterior of a sphere.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#GreengardHJ14,https://doi.org/10.1016/j.jcp.2014.05.031 +Giacomo Dimarco,A multiscale fast semi-Lagrangian method for rarefied gas dynamics.,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#DimarcoLR15,https://doi.org/10.1016/j.jcp.2015.02.031 +David R. Rector,A semi-implicit lattice method for simulating flow.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#RectorS10,https://doi.org/10.1016/j.jcp.2010.05.020 +Piotr K. Smolarkiewicz,Building resolving large-eddy simulations and comparison with wind tunnel experiments.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#SmolarkiewiczSWPHB07,https://doi.org/10.1016/j.jcp.2007.08.005 +Guang-hua Gao,A finite difference scheme for fractional sub-diffusion equations on an unbounded domain using artificial boundary conditions.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#GaoSZ12,https://doi.org/10.1016/j.jcp.2011.12.028 +D. Xiao,Non-linear model reduction for the Navier-Stokes equations using residual DEIM method.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#XiaoFBPNDH14,https://doi.org/10.1016/j.jcp.2014.01.011 +Martin Losch,A parallel Jacobian-free Newton-Krylov solver for a coupled sea ice-ocean model.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#LoschFLV14,https://doi.org/10.1016/j.jcp.2013.09.026 +R. E. L. DeVille,Weighted Flow Algorithms (WFA) for stochastic particle coagulation.,2011,230,J. Comput. Physics,23,db/journals/jcphy/jcphy230.html#DeVilleRW11,https://doi.org/10.1016/j.jcp.2011.07.027 +X. Zeng,A variational multiscale finite element method for monolithic ALE computations of shock hydrodynamics using nodal elements.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#ZengS16,https://doi.org/10.1016/j.jcp.2016.03.052 +Christoph Köhn,A 3D particle Monte Carlo approach to studying nucleation.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#KohnES18,https://doi.org/10.1016/j.jcp.2018.02.032 +Michael G. Edwards,A quasi-positive family of continuous Darcy-flux finite-volume schemes with full pressure support.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#EdwardsZ08,https://doi.org/10.1016/j.jcp.2008.05.028 +Shidong Jiang,Analysis and accurate numerical solutions of the integral equation derived from the linearized BGKW equation for the steady Couette flow.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#JiangL16,https://doi.org/10.1016/j.jcp.2016.04.011 +Christopher J. Subich,Higher-order finite volume differential operators with selective upwinding on the icosahedral spherical grid.,2018,368,J. Comput. Physics,,db/journals/jcphy/jcphy368.html#Subich18,https://doi.org/10.1016/j.jcp.2018.04.053 +Juan A. Acebrón,A new parallel solver suited for arbitrary semilinear parabolic partial differential equations based on generalized random trees.,2011,230,J. Comput. Physics,21,db/journals/jcphy/jcphy230.html#AcebronR11,https://doi.org/10.1016/j.jcp.2011.06.033 +Andrew P. Kuprat,An anisotropic scale-invariant unstructured mesh generator suitable for volumetric imaging data.,2009,228,J. Comput. Physics,3,db/journals/jcphy/jcphy228.html#KupratE09,https://doi.org/10.1016/j.jcp.2008.09.030 +Walter Boscheri,A direct Arbitrary-Lagrangian-Eulerian ADER-WENO finite volume scheme on unstructured tetrahedral meshes for conservative and non-conservative hyperbolic systems in 3D.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#BoscheriD14,https://doi.org/10.1016/j.jcp.2014.06.059 +Hong Qin,"Comment on ""Hamiltonian splitting for the Vlasov-Maxwell equations"".",2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#QinHZLXW15,https://doi.org/10.1016/j.jcp.2015.04.056 +Enrique Martínez,Synchronous parallel kinetic Monte Carlo for continuum diffusion-reaction systems.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#MartinezMKP08,https://doi.org/10.1016/j.jcp.2007.11.045 +Ricardo Ruiz-Baier,Primal-mixed formulations for reaction-diffusion systems on deforming domains.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#Ruiz-Baier15,https://doi.org/10.1016/j.jcp.2015.07.018 +Arthur Guittet,A Voronoi Interface approach to cell aggregate electropermeabilization.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#GuittetPG17,https://doi.org/10.1016/j.jcp.2016.11.048 +Yun Yang,A high-order CESE scheme with a new divergence-free method for MHD numerical simulation.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#YangFJ17,https://doi.org/10.1016/j.jcp.2017.08.019 +Francois Hermeline,A discretization of the multigroup PN radiative transfer equation on general meshes.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#Hermeline16,https://doi.org/10.1016/j.jcp.2016.02.058 +Li Luo 0003,An efficient finite element method for simulation of droplet spreading on a topologically rough surface.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#LuoWC17,https://doi.org/10.1016/j.jcp.2017.08.010 +Wilko Rohlfs,Two-phase electrohydrodynamic simulations using a volume-of-fluid approach: A comment.,2012,231,J. Comput. Physics,12,db/journals/jcphy/jcphy231.html#RohlfsDHK12,https://doi.org/10.1016/j.jcp.2012.02.003 +Peter J. Ireland,Improving particle drag predictions in Euler-Lagrange simulations with two-way coupling.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#IrelandD17,https://doi.org/10.1016/j.jcp.2017.02.070 +Hiroyuki Nishida,ADI-SGS scheme on ideal magnetohydrodynamics.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#NishidaN09,https://doi.org/10.1016/j.jcp.2009.01.032 +George Papadakis 0004,A novel pressure-velocity formulation and solution method for fluid-structure interaction problems.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#Papadakis08,https://doi.org/10.1016/j.jcp.2007.12.004 +A. P. Hollis,An accurate and versatile lattice closure scheme for lattice Boltzmann equation fluids under external forces.,2008,227,J. Comput. Physics,17,db/journals/jcphy/jcphy227.html#HollisHC08,https://doi.org/10.1016/j.jcp.2008.05.007 +Kenneth Duru,Boundary conditions and stability of a perfectly matched layer for the elastic wave equation in first order form.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#DuruKK15,https://doi.org/10.1016/j.jcp.2015.09.048 +Daniel J. Price,Modelling discontinuities and Kelvin-Helmholtz instabilities in SPH.,2008,227,J. Comput. Physics,24,db/journals/jcphy/jcphy227.html#Price08,https://doi.org/10.1016/j.jcp.2008.08.011 +Moran Wang,Roughness and cavitations effects on electro-osmotic flows in rough microchannels using the lattice Poisson-Boltzmann methods.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#WangWC07,https://doi.org/10.1016/j.jcp.2007.05.001 +David P. Nicholls,Efficient enforcement of far-field boundary conditions in the Transformed Field Expansions method.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#Nicholls11,https://doi.org/10.1016/j.jcp.2011.07.029 +Volker Gravemeier,A consistent dynamic localization model for large eddy simulation of turbulent flows based on a variational formulation.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#Gravemeier06,https://doi.org/10.1016/j.jcp.2006.03.001 +Alireza Nejadmalayeri,Parallel adaptive wavelet collocation method for PDEs.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#NejadmalayeriVB15,https://doi.org/10.1016/j.jcp.2015.05.028 +Mingyu Zhang,A sharp interface method for SPH.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#ZhangD15a,https://doi.org/10.1016/j.jcp.2015.09.015 +Min Chen 0005,Numerical modeling of laser tunneling ionization in explicit particle-in-cell codes.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#ChenCGBYESL13,https://doi.org/10.1016/j.jcp.2012.11.029 +Francesco Capuano,An efficient time advancing strategy for energy-preserving simulations.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#CapuanoCL15,https://doi.org/10.1016/j.jcp.2015.03.070 +William D. Parker,Comparison of polynomial approximations to speed up planewave-based quantum Monte Carlo calculations.,2015,287,J. Comput. Physics,,db/journals/jcphy/jcphy287.html#ParkerUAPHW15,https://doi.org/10.1016/j.jcp.2015.01.037 +Jasmine Foo,The multi-element probabilistic collocation method (ME-PCM): Error analysis and applications.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#FooWK08,https://doi.org/10.1016/j.jcp.2008.07.009 +Naixing Feng,Second-order PML: Optimal choice of nth-order PML for truncating FDTD domains.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#FengYZWL15,https://doi.org/10.1016/j.jcp.2015.01.015 +Jin Fu,Time dependent solution for acceleration of tau-leaping.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#FuWP13,https://doi.org/10.1016/j.jcp.2012.10.036 +Marco D. de Tullio,A moving-least-squares immersed boundary method for simulating the fluid-structure interaction of elastic bodies with arbitrary thickness.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#TullioP16,https://doi.org/10.1016/j.jcp.2016.08.020 +Carlos Larriba,Free molecular collision cross section calculation methods for nanoparticles and complex ions with energy accommodation.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#LarribaH13,https://doi.org/10.1016/j.jcp.2013.05.038 +Pao-Hsiung Chiu,On the development of a dispersion-relation-preserving dual-compact upwind scheme for convection-diffusion equation.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#ChiuS09,https://doi.org/10.1016/j.jcp.2009.02.008 +Jingtang Ma,Moving mesh methods for blowup in reaction-diffusion equations with traveling heat source.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#MaJ09,https://doi.org/10.1016/j.jcp.2009.06.008 +Wenjun Cai,Partitioned averaged vector field methods.,2018,370,J. Comput. Physics,,db/journals/jcphy/jcphy370.html#CaiLW18,https://doi.org/10.1016/j.jcp.2018.05.009 +Daniel Conrad,A viscosity adaption method for Lattice Boltzmann simulations.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#ConradSB14,https://doi.org/10.1016/j.jcp.2014.08.008 +Alexander van Zuijlen,Higher-order time integration through smooth mesh deformation for 3D fluid-structure interaction simulations.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#ZuijlenBB07,https://doi.org/10.1016/j.jcp.2007.03.024 +Aditya Bandopadhyay,Computation of streaming potential in porous media: Modified permeability tensor.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#BandopadhyayDMC15,https://doi.org/10.1016/j.jcp.2015.07.030 +Sébastien Tanguy,Benchmarks and numerical methods for the simulation of boiling flows.,2014,264,J. Comput. Physics,,db/journals/jcphy/jcphy264.html#TanguySLCC14,https://doi.org/10.1016/j.jcp.2014.01.014 +Fengyan Li,A second order discontinuous Galerkin fast sweeping method for Eikonal equations.,2008,227,J. Comput. Physics,17,db/journals/jcphy/jcphy227.html#LiSZZ08,https://doi.org/10.1016/j.jcp.2008.05.018 +Matthew Hecht,Implementation of the LANS-α turbulence model in a primitive equation ocean model.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#HechtHPW08,https://doi.org/10.1016/j.jcp.2008.02.018 +Min Gao,An efficient scheme for a phase field model for the moving contact line problem with variable density and viscosity.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#GaoW14,https://doi.org/10.1016/j.jcp.2014.04.054 +Keri R. Moyle,Local remeshing for large amplitude grid deformations.,2008,227,J. Comput. Physics,5,db/journals/jcphy/jcphy227.html#MoyleV08,https://doi.org/10.1016/j.jcp.2007.11.015 +Minling Zheng,Numerical solution of the time fractional reaction-diffusion equation with a moving boundary.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#ZhengLLBS17,https://doi.org/10.1016/j.jcp.2017.03.006 +Duc-Vinh Le,An implicit immersed boundary method for three-dimensional fluid-membrane interactions.,2009,228,J. Comput. Physics,22,db/journals/jcphy/jcphy228.html#LeWPLK09,https://doi.org/10.1016/j.jcp.2009.08.018 +Issam Lakkis,A high resolution spatially adaptive vortex method for separating flows. Part I: Two-dimensional domains.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#LakkisG09,https://doi.org/10.1016/j.jcp.2008.09.025 +Aymen Laadhari,Fully implicit methodology for the dynamics of biomembranes and capillary interfaces by combining the level set and Newton methods.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#LaadhariSMS17,https://doi.org/10.1016/j.jcp.2017.04.019 +Bruno Després,Stabilization of cell-centered compressible Lagrangian methods using subzonal entropy.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#DespresL12,https://doi.org/10.1016/j.jcp.2012.04.018 +M. Carmen Calzada,Fictitious domains and level sets for moving boundary problems. Applications to the numerical simulation of tumor growth.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#CalzadaCFM11,https://doi.org/10.1016/j.jcp.2010.11.005 +Gino I. Montecinos,Reformulations for general advection-diffusion-reaction equations and locally implicit ADER schemes.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#MontecinosT14,https://doi.org/10.1016/j.jcp.2014.06.018 +Goncalo Silva,Truncation errors and the rotational invariance of three-dimensional lattice models in the lattice Boltzmann method.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#SilvaS14,https://doi.org/10.1016/j.jcp.2014.03.027 +Veselin Dobrev,High order curvilinear finite elements for elastic-plastic Lagrangian dynamics.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#DobrevKR14,https://doi.org/10.1016/j.jcp.2013.01.015 +Zhu Huang,Modal preconditioning of Galerkin spectral methods: Dual bookkeeping for the Delves-Freeman iteration.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#HuangB15a,https://doi.org/10.1016/j.jcp.2015.07.064 +D. M. Bond,Solving the discrete S-model kinetic equations with arbitrary order polynomial approximations.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#BondWMG14,https://doi.org/10.1016/j.jcp.2013.11.026 +Adrian M. Altenhoff,A stochastic boundary forcing for dissipative particle dynamics.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#AltenhoffWK07,https://doi.org/10.1016/j.jcp.2007.01.015 +Garrett E. Barter,Shock capturing with PDE-based artificial viscosity for DGFEM: Part I. Formulation.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#BarterD10,https://doi.org/10.1016/j.jcp.2009.11.010 +Samuel Paolucci,WAMR: An adaptive wavelet method for the simulation of compressible reacting flow. Part I. Accuracy and efficiency of algorithm.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#PaolucciZW14,https://doi.org/10.1016/j.jcp.2014.01.025 +S. Busto,Design and analysis of ADER-type schemes for model advection-diffusion-reaction equations.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#BustoTV16,https://doi.org/10.1016/j.jcp.2016.09.043 +Wen Zheng,A new incompressibility discretization for a hybrid particle MAC grid representation with surface tension.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#ZhengZKF15,https://doi.org/10.1016/j.jcp.2014.08.051 +Rafael Borges,An improved weighted essentially non-oscillatory scheme for hyperbolic conservation laws.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#BorgesCCD08,https://doi.org/10.1016/j.jcp.2007.11.038 +Paola Cinnella,High-order implicit residual smoothing time scheme for direct and large eddy simulations of compressible flows.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#CinnellaC16,https://doi.org/10.1016/j.jcp.2016.08.023 +Daniel Appelö,A high-order super-grid-scale absorbing layer and its application to linear hyperbolic systems.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#AppeloC09,https://doi.org/10.1016/j.jcp.2009.02.030 +Rob Remis,Stability of FDTD on nonuniform grids for Maxwell's equations in lossless media.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#Remis06,https://doi.org/10.1016/j.jcp.2006.02.022 +Bokai Yan,Analysis and simulation for a model of electron impact excitation/deexcitation and ionization/recombination.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#YanCBC15,https://doi.org/10.1016/j.jcp.2015.07.027 +Vladimir Sabelnikov,Modified level set equation and its numerical assessment.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#SabelnikovOG14,https://doi.org/10.1016/j.jcp.2014.08.018 +Jeffrey W. Banks,A high-resolution Godunov method for compressible multi-material flow on overlapping grids.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#BanksSKH07,https://doi.org/10.1016/j.jcp.2006.09.014 +Jing-Mei Qiu,Conservative high order semi-Lagrangian finite difference WENO methods for advection in incompressible flow.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#QiuS11,https://doi.org/10.1016/j.jcp.2010.04.037 +Yingda Cheng,Numerical study of the two-species Vlasov-Ampère system: Energy-conserving schemes and the current-driven ion-acoustic instability.,2015,288,J. Comput. Physics,,db/journals/jcphy/jcphy288.html#ChengCZ15,https://doi.org/10.1016/j.jcp.2015.02.020 +Kevin Carlberg,Galerkin v. least-squares Petrov-Galerkin projection in nonlinear model reduction.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#CarlbergJA17,https://doi.org/10.1016/j.jcp.2016.10.033 +Emmanuel Audusse,Approximation of the hydrostatic Navier-Stokes system for density stratified flows by a multilayer model: Kinetic interpretation and numerical solution.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#AudusseBPS11,https://doi.org/10.1016/j.jcp.2011.01.042 +Edward Santilli,An efficient method for solving highly anisotropic elliptic equations.,2011,230,J. Comput. Physics,23,db/journals/jcphy/jcphy230.html#SantilliS11,https://doi.org/10.1016/j.jcp.2011.06.022 +Abbas Fakhari,A weighted multiple-relaxation-time lattice Boltzmann method for multiphase flows and its application to partial coalescence cascades.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#FakhariBL17,https://doi.org/10.1016/j.jcp.2017.03.062 +Yuanxun Bao,An Immersed Boundary method with divergence-free velocity interpolation and force spreading.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#BaoDGMP17,https://doi.org/10.1016/j.jcp.2017.06.041 +Ken Mattsson,Stable and accurate wave-propagation in discontinuous media.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#MattssonHI08,https://doi.org/10.1016/j.jcp.2008.06.023 +Adam J. Hoffman,A time-dependent neutron transport method of characteristics formulation with time derivative propagation.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#HoffmanL16,https://doi.org/10.1016/j.jcp.2015.10.039 +Jie Yang,Taylor meshless method for solving non-linear partial differential equations.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#YangHKP17,https://doi.org/10.1016/j.jcp.2017.07.034 +Pierre F. J. Lermusiaux,Uncertainty estimation and prediction for interdisciplinary ocean dynamics.,2006,217,J. Comput. Physics,1,db/journals/jcphy/jcphy217.html#Lermusiaux06,https://doi.org/10.1016/j.jcp.2006.02.010 +Moran Wang,Elastic property of multiphase composites with random microstructures.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#WangP09,https://doi.org/10.1016/j.jcp.2009.05.007 +Christopher B. Ivey,Conservative and bounded volume-of-fluid advection on unstructured grids.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#IveyM17,https://doi.org/10.1016/j.jcp.2017.08.054 +Gisela Widmer,Sparse adaptive finite elements for radiative transfer.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#WidmerHS08,https://doi.org/10.1016/j.jcp.2008.02.025 +Brian Munsky,A multiple time interval finite state projection algorithm for the solution to the chemical master equation.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#MunskyK07,https://doi.org/10.1016/j.jcp.2007.05.016 +Kendra P. Keady,Stability of Monte Carlo k-eigenvalue simulations with CMFD feedback.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#KeadyL16,https://doi.org/10.1016/j.jcp.2016.06.002 +Peter Blaha,Iterative diagonalization in augmented plane wave based methods in electronic structure calculations.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#BlahaHKLS10,https://doi.org/10.1016/j.jcp.2009.09.036 +Andrew Barlow,Constrained optimization framework for interface-aware sub-scale dynamics models for voids closure in Lagrangian hydrodynamics.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#BarlowKS18,https://doi.org/10.1016/j.jcp.2018.03.034 +Ya-Nan Zhang,Finite difference methods for the time fractional diffusion equation on non-uniform meshes.,2014,265,J. Comput. Physics,,db/journals/jcphy/jcphy265.html#ZhangSL14,https://doi.org/10.1016/j.jcp.2014.02.008 +Peijun Li,A two-dimensional Helmhotlz equation solution for the multiple cavity scattering problem.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#LiW13,https://doi.org/10.1016/j.jcp.2012.12.022 +M. Parsani,Implicit LU-SGS algorithm for high-order methods on unstructured grid with p-multigrid strategy for solving the steady Navier-Stokes equations.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#ParsaniALT10,https://doi.org/10.1016/j.jcp.2009.10.014 +Tong Qin,Bound-preserving discontinuous Galerkin methods for relativistic hydrodynamics.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#QinSY16,https://doi.org/10.1016/j.jcp.2016.02.079 +Benjamin Brock,Explicit integration with GPU acceleration for large kinetic networks.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#BrockBBG15,https://doi.org/10.1016/j.jcp.2015.09.013 +Liang Jiang,A fast particle level set method with optimized particle correction procedure for interface capturing.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#JiangLC15,https://doi.org/10.1016/j.jcp.2015.06.039 +Yann Moguen,Solving low Mach number Riemann problems by a momentum interpolation method.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#MoguenBD15,https://doi.org/10.1016/j.jcp.2015.06.037 +Lin Yang,Implementation of metal-friendly EAM/FS-type semi-empirical potentials in HOOMD-blue: A GPU-accelerated molecular dynamics software.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#YangZWHT18,https://doi.org/10.1016/j.jcp.2018.01.015 +Yueh-Cheng Kuo,A minimal energy tracking method for non-radially symmetric solutions of coupled nonlinear Schrödinger equations.,2009,228,J. Comput. Physics,21,db/journals/jcphy/jcphy228.html#KuoLSW09,https://doi.org/10.1016/j.jcp.2009.07.029 +Xiaofeng Cai,A conservative semi-Lagrangian HWENO method for the Vlasov equation.,2016,323,J. Comput. Physics,,db/journals/jcphy/jcphy323.html#CaiQQ16,https://doi.org/10.1016/j.jcp.2016.07.021 +M. Zakari,An axisymmetric unstructured finite volume method applied to the numerical modeling of an atmospheric pressure gas discharge.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#ZakariCHS15,https://doi.org/10.1016/j.jcp.2014.10.031 +Lukas Einkemmer,On the performance of exponential integrators for problems in magnetohydrodynamics.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#EinkemmerTL17,https://doi.org/10.1016/j.jcp.2016.11.027 +Panagiotis E. Hadjidoukas,Λ8*4U: A high performance computing framework for Bayesian uncertainty quantification of complex models.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#HadjidoukasAPK15,https://doi.org/10.1016/j.jcp.2014.12.006 +Bangti Jin,Hierarchical Bayesian inference for Ill-posed problems via variational method.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#JinZ10,https://doi.org/10.1016/j.jcp.2010.06.016 +Nicolas Crouseilles,Conservative semi-Lagrangian schemes for Vlasov equations.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#CrouseillesMS10,https://doi.org/10.1016/j.jcp.2009.11.007 +Oleg Volkov,An inverse model for a free-boundary problem with a contact line: Steady case.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#VolkovP09,https://doi.org/10.1016/j.jcp.2009.03.042 +Sukky Jun,Axial Green's function method for steady Stokes flow in geometrically complex domains.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#JunK11,https://doi.org/10.1016/j.jcp.2010.12.007 +Ramon Codina,Approximation of the thermally coupled MHD problem using a stabilized finite element method.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#CodinaH11,https://doi.org/10.1016/j.jcp.2010.11.003 +Seung Hyun Kim,On the lattice Boltzmann method for multiphase flows with large density ratios.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#KimP15,https://doi.org/10.1016/j.jcp.2015.09.029 +Jiannong Fang,Towards oscillation-free implementation of the immersed boundary method with spectral-like methods.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#FangDHP11,https://doi.org/10.1016/j.jcp.2011.07.017 +Song Li,Computing entries of the inverse of a sparse matrix using the FIND algorithm.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#LiAKD08,https://doi.org/10.1016/j.jcp.2008.06.033 +Pieter Rauwoens,A conservative discrete compatibility-constraint low-Mach pressure-correction algorithm for time-accurate simulations of variable density flows.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#RauwoensVDM09,https://doi.org/10.1016/j.jcp.2009.03.036 +G. Billet,A Runge-Kutta discontinuous Galerkin approach to solve reactive flows: The hyperbolic operator.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#BilletR11,https://doi.org/10.1016/j.jcp.2010.10.025 +M. Arnst,Identification of Bayesian posteriors for coefficients of chaos expansions.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#ArnstGS10,https://doi.org/10.1016/j.jcp.2009.12.033 +Martin J. Mlacnik,Unstructured grid optimization for improved monotonicity of discrete solutions of elliptic equations with highly anisotropic coefficients.,2006,216,J. Comput. Physics,1,db/journals/jcphy/jcphy216.html#MlacnikD06,https://doi.org/10.1016/j.jcp.2005.12.007 +Giacomo Dimarco,Towards an ultra efficient kinetic scheme. Part III: High-performance-computing.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#DimarcoLN15,https://doi.org/10.1016/j.jcp.2014.12.023 +Jeff Candy,Spectral treatment of gyrokinetic shear flow.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#CandyB18,https://doi.org/10.1016/j.jcp.2017.12.020 +Guillaume Desquesnes,On the use of a high order overlapping grid method for coupling in CFD/CAA.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#DesquesnesTMS06,https://doi.org/10.1016/j.jcp.2006.05.019 +C. C. Huang,Cell-level canonical sampling by velocity scaling for multiparticle collision dynamics simulations.,2010,229,J. Comput. Physics,1,db/journals/jcphy/jcphy229.html#HuangCSGW10,https://doi.org/10.1016/j.jcp.2009.09.024 +F. Boselli,A multilayer method of fundamental solutions for Stokes flow problems.,2012,231,J. Comput. Physics,18,db/journals/jcphy/jcphy231.html#BoselliOK12,https://doi.org/10.1016/j.jcp.2012.05.023 +Aleksei I. Shestakov,Derivation and solution of multifrequency radiation diffusion equations for homogeneous refractive lossy media.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#ShestakovVS11,https://doi.org/10.1016/j.jcp.2010.10.008 +Eric T. Chung,Residual-driven online generalized multiscale finite element methods.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#ChungEL15,https://doi.org/10.1016/j.jcp.2015.07.068 +Jun-ichi Iwata,A massively-parallel electronic-structure calculations based on real-space density functional theory.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#IwataTOBSOY10,https://doi.org/10.1016/j.jcp.2009.11.038 +Michael Oevermann,An asymptotic solution approach for elliptic equations with discontinuous coefficients.,2014,261,J. Comput. Physics,,db/journals/jcphy/jcphy261.html#OevermannK14,https://doi.org/10.1016/j.jcp.2013.12.027 +J. Andrew Spencer,A finite element/Fourier treatment of the Fokker-Planck equation.,2012,231,J. Comput. Physics,18,db/journals/jcphy/jcphy231.html#SpencerJH12,https://doi.org/10.1016/j.jcp.2012.06.004 +William C. Skamarock,A time-split nonhydrostatic atmospheric model for weather research and forecasting applications.,2008,227,J. Comput. Physics,7,db/journals/jcphy/jcphy227.html#SkamarockK08,https://doi.org/10.1016/j.jcp.2007.01.037 +Samet Y. Kadioglu,A fourth-order auxiliary variable projection method for zero-Mach number gas dynamics.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#KadiogluKM08,https://doi.org/10.1016/j.jcp.2007.10.008 +Glen Hansen,Unstructured surface mesh adaptation using the Laplace-Beltrami target metric approach.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#HansenZ07,https://doi.org/10.1016/j.jcp.2006.11.033 +Zhiwei He,Preventing numerical oscillations in the flux-split based finite difference method for compressible flows with discontinuities.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#HeZLLT15,https://doi.org/10.1016/j.jcp.2015.07.049 +Jiequan Li,Thermodynamical effects and high resolution methods for compressible fluid flows.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#LiW17,https://doi.org/10.1016/j.jcp.2017.04.048 +D. V. Kotov,Numerical dissipation control in high order shock-capturing schemes for LES of low speed flows.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#KotovYWSK16,https://doi.org/10.1016/j.jcp.2015.11.029 +Weiping Bu,Galerkin finite element method for two-dimensional Riesz space fractional diffusion equations.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#BuTY14,https://doi.org/10.1016/j.jcp.2014.07.023 +Christopher Angstmann,A discrete time random walk model for anomalous diffusion.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#AngstmannDHN15,https://doi.org/10.1016/j.jcp.2014.08.003 +Shaohua Wu,Extension of moment projection method to the fragmentation process.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#WuYAMXYK17a,https://doi.org/10.1016/j.jcp.2017.01.045 +Wen-Hwa Chen,Modified Nosé-Hoover thermostat for solid state for constant temperature molecular dynamics simulation.,2011,230,J. Comput. Physics,16,db/journals/jcphy/jcphy230.html#ChenWC11,https://doi.org/10.1016/j.jcp.2011.04.030 +Malcolm Roberts,Multithreaded implicitly dealiased convolutions.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#RobertsB18,https://doi.org/10.1016/j.jcp.2017.11.026 +Gauthier Wissocq,Regularized characteristic boundary conditions for the Lattice-Boltzmann methods at high Reynolds number flows.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#WissocqGME17,https://doi.org/10.1016/j.jcp.2016.11.037 +Ioan Teleaga,Radiation models for thermal flows at low Mach number.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#TeleagaSGKS06,https://doi.org/10.1016/j.jcp.2005.11.015 +Florent Renac,Fast time implicit-explicit discontinuous Galerkin method for the compressible Navier-Stokes equations.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#RenacGMC13,https://doi.org/10.1016/j.jcp.2013.05.043 +Christopher K. Newman,A communication-avoiding implicit-explicit method for a free-surface ocean model.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#NewmanWKC16,https://doi.org/10.1016/j.jcp.2015.11.008 +Ngoc Cuong Nguyen,A posteriori error estimation and basis adaptivity for reduced-basis approximation of nonaffine-parametrized linear elliptic partial differential equations.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#Nguyen07,https://doi.org/10.1016/j.jcp.2007.08.031 +Alexandre Noll Marques,High order solution of Poisson problems with piecewise constant coefficients and interface jumps.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#MarquesNR17,https://doi.org/10.1016/j.jcp.2017.01.029 +Yongle Hao,Computation of moments for Maxwell's equations with random interfaces via pivoted low-rank approximation.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#HaoKLZ18,https://doi.org/10.1016/j.jcp.2018.05.004 +De-Xiang Chen,Least squares finite element method with high continuity NURBS basis for incompressible Navier-Stokes equations.,2014,260,J. Comput. Physics,,db/journals/jcphy/jcphy260.html#ChenXLF14,https://doi.org/10.1016/j.jcp.2013.12.031 +François Vilar,A discontinuous Galerkin discretization for solving the two-dimensional gas dynamics equations written under total Lagrangian formulation on general unstructured grids.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#VilarMA14,https://doi.org/10.1016/j.jcp.2014.07.030 +Martin Stoll,Fast solvers for optimal control problems from pattern formation.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#StollPM16,https://doi.org/10.1016/j.jcp.2015.10.006 +Dieter Fauconnier,A family of dynamic finite difference schemes for large-eddy simulation.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#FauconnierLD09,https://doi.org/10.1016/j.jcp.2008.11.014 +Xiu Yang,Reweighted ℓ*1ℓ*1 minimization method for stochastic elliptic differential equations.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#YangK13,https://doi.org/10.1016/j.jcp.2013.04.004 +Minh Do-Quang,Simulation of free dendritic crystal growth in a gravity environment.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#Do-QuangA08,https://doi.org/10.1016/j.jcp.2007.09.025 +Ricardo Cortez,A fast numerical method for computing doubly-periodic regularized Stokes flow in 3D.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#CortezH14,https://doi.org/10.1016/j.jcp.2013.10.032 +Mathieu Coquerelle,A vortex level set method for the two-way coupling of an incompressible fluid with colliding rigid bodies.,2008,227,J. Comput. Physics,21,db/journals/jcphy/jcphy227.html#CoquerelleC08,https://doi.org/10.1016/j.jcp.2008.03.041 +Jacob T. Fokkema,Stretched backgrounds for acoustic scattering models.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#FokkemaB12,https://doi.org/10.1016/j.jcp.2011.11.002 +Dmitry Borovikov,An efficient second-order accurate and continuous interpolation for block-adaptive grids.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#BorovikovST15,https://doi.org/10.1016/j.jcp.2015.05.038 +Jingfang Huang,Accelerating the convergence of spectral deferred correction methods.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#HuangJM06,https://doi.org/10.1016/j.jcp.2005.10.004 +Frédéric N. Felten,Kinetic energy conservation issues associated with the collocated mesh scheme for incompressible flow.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#FeltenL06,https://doi.org/10.1016/j.jcp.2005.11.009 +R. Kissmann,A central conservative scheme for general rectangular grids.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#KissmannPK09,https://doi.org/10.1016/j.jcp.2008.11.030 +Yan Liu 0023,A boundary focused quadrilateral mesh generation algorithm for multi-material structures.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#LiuX13,https://doi.org/10.1016/j.jcp.2012.08.042 +Wingfai Kwan,A fast Huygens sweeping method for capturing paraxial multi-color optical self-focusing in nematic liquid crystals.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#KwanLWQ17,https://doi.org/10.1016/j.jcp.2017.07.018 +Milan Dotlic,Second-order accurate finite volume method for well-driven flows.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#DotlicVPPD16,https://doi.org/10.1016/j.jcp.2015.12.021 +Q. Deng,A locally conservative stabilized continuous Galerkin finite element method for two-phase flow in poroelastic subsurfaces.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#DengGMT17,https://doi.org/10.1016/j.jcp.2017.06.024 +Guang Lin,Predicting shock dynamics in the presence of uncertainties.,2006,217,J. Comput. Physics,1,db/journals/jcphy/jcphy217.html#LinSK06,https://doi.org/10.1016/j.jcp.2006.02.009 +Ioan R. Ionescu,Augmented Lagrangian for shallow viscoplastic flow with topography.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#Ionescu13,https://doi.org/10.1016/j.jcp.2013.02.029 +Ruihao Huang,Recursive integral method for transmission eigenvalues.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#HuangSSZ16,https://doi.org/10.1016/j.jcp.2016.10.001 +Alex Mahalov,Vertically nested nonhydrostatic model for multiscale resolution of flows in the upper troposphere and lower stratosphere.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#MahalovM09,https://doi.org/10.1016/j.jcp.2008.10.030 +Yu-Chao Hua,An efficient two-step Monte Carlo method for heat conduction in nanostructures.,2017,342,J. Comput. Physics,,db/journals/jcphy/jcphy342.html#HuaC17,https://doi.org/10.1016/j.jcp.2017.04.042 +Thomas Hiller,Stochastic Rotation Dynamics simulations of wetting multi-phase flows.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#HillerLB16,https://doi.org/10.1016/j.jcp.2016.03.066 +Shravan K. Veerapaneni,The Chebyshev fast Gauss and nonuniform fast Fourier transforms and their application to the evaluation of distributed heat potentials.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#VeerapaneniB08,https://doi.org/10.1016/j.jcp.2008.05.003 +Dimitri J. Mavriplis,On the geometric conservation law for high-order discontinuous Galerkin discretizations on dynamically deforming meshes.,2011,230,J. Comput. Physics,11,db/journals/jcphy/jcphy230.html#MavriplisN11,https://doi.org/10.1016/j.jcp.2011.01.022 +Fedir V. Sirotkin,A new particle method for simulating breakup of liquid jets.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#SirotkinY12,https://doi.org/10.1016/j.jcp.2011.10.020 +J. Thomas Beale,Locally corrected semi-Lagrangian methods for Stokes flow with moving elastic interfaces.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#BealeS08,https://doi.org/10.1016/j.jcp.2007.11.047 +Leopold Grinberg,Proper orthogonal decomposition of atomistic flow simulations.,2012,231,J. Comput. Physics,16,db/journals/jcphy/jcphy231.html#Grinberg12,https://doi.org/10.1016/j.jcp.2012.05.007 +Karim Khayrat,A multi-scale network method for two-phase flow in porous media.,2017,342,J. Comput. Physics,,db/journals/jcphy/jcphy342.html#KhayratJ17,https://doi.org/10.1016/j.jcp.2017.04.023 +Eric Chénier,A collocated finite volume scheme to solve free convection for general non-conforming grids.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#ChenierEH09,https://doi.org/10.1016/j.jcp.2008.10.034 +Cosmin Safta,A high-order low-Mach number AMR construction for chemically reacting flows.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#SaftaRN10,https://doi.org/10.1016/j.jcp.2010.09.002 +Chang Shu 0002,A novel immersed boundary velocity correction-lattice Boltzmann method and its application to simulate flow past a circular cylinder.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#0002LC07,https://doi.org/10.1016/j.jcp.2007.06.002 +Li Wang,An immersed boundary method for fluid-structure interaction with compressible multiphase flows.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#WangCHNYT17,https://doi.org/10.1016/j.jcp.2017.06.008 +Jianxian Qiu,Runge-Kutta discontinuous Galerkin methods for compressible two-medium flow simulations: One-dimensional case.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#QiuLK07,https://doi.org/10.1016/j.jcp.2006.07.023 +Hai X. Vo,Regularized kernel PCA for the efficient parameterization of complex geological models.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#VoD16,https://doi.org/10.1016/j.jcp.2016.07.011 +Jong-Shinn Wu,Development and verification of a coupled DSMC-NS scheme using unstructured mesh.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#WuLCKT06,https://doi.org/10.1016/j.jcp.2006.04.013 +Yogesh G. Bhumkar,A linear focusing mechanism for dispersive and non-dispersive wave problems.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#BhumkarRS11,https://doi.org/10.1016/j.jcp.2010.11.026 +Qiang Du,Simulating the deformation of vesicle membranes under elastic bending energy in three dimensions.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#DuLW06,https://doi.org/10.1016/j.jcp.2005.07.020 +Bamdad Lessani,Time-accurate calculation of variable density flows with strong temperature gradients and combustion.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#LessaniP06,https://doi.org/10.1016/j.jcp.2005.07.001 +Daniel R. Lester,Global parametric solutions of scalar transport.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#LesterRMB08,https://doi.org/10.1016/j.jcp.2007.10.015 +A. Poux,Improvements on open and traction boundary conditions for Navier-Stokes time-splitting methods.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#PouxGA11,https://doi.org/10.1016/j.jcp.2011.02.024 +Kai Gu,Atomistic hybrid DSMC/NEMD method for nonequilibrium multiscale simulations.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#GuWK10,https://doi.org/10.1016/j.jcp.2009.10.035 +Christof Vömel,The use of bulk states to accelerate the band edge state calculation of a semiconductor quantum dot.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#VomelTWMD07,https://doi.org/10.1016/j.jcp.2006.10.005 +Scott M. Murman,Compact upwind schemes on adaptive octrees.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#Murman10,https://doi.org/10.1016/j.jcp.2009.10.019 +Kouroush Sadegh Zadeh,Parametrization of flow processes in porous media by multiobjective inverse modeling.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#ZadehM14,https://doi.org/10.1016/j.jcp.2013.12.001 +Yutao Tao,Steady-state and dynamic models for particle engulfment during solidification.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#TaoYD16,https://doi.org/10.1016/j.jcp.2016.03.050 +Irina Ginzburg,Truncation effect on Taylor-Aris dispersion in lattice Boltzmann schemes: Accuracy towards stability.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#GinzburgR15,https://doi.org/10.1016/j.jcp.2015.07.017 +Konstantin Lipnikov,A multilevel multiscale mimetic (M3) method for two-phase flows in porous media.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#LipnikovMS08,https://doi.org/10.1016/j.jcp.2008.03.029 +Yi Liu,Dynamic mode extrapolation to improve the efficiency of dual time stepping method.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#LiuWY18,https://doi.org/10.1016/j.jcp.2017.09.043 +Ngoc Cuong Nguyen,A class of embedded discontinuous Galerkin methods for computational fluid dynamics.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#NguyenPC15,https://doi.org/10.1016/j.jcp.2015.09.024 +Ryan W. Houim,A ghost fluid method for compressible reacting flows with phase change.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#HouimK13,https://doi.org/10.1016/j.jcp.2012.09.022 +Francesco Massimo,Comparisons of time explicit hybrid kinetic-fluid code Architect for Plasma Wakefield Acceleration with a full PIC code.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#MassimoAM16,https://doi.org/10.1016/j.jcp.2016.09.067 +Francis Filbet,A class of asymptotic-preserving schemes for kinetic equations and related problems with stiff sources.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#FilbetJ10,https://doi.org/10.1016/j.jcp.2010.06.017 +Ian J. Laurenzi,"Erratum to ""A general algorithm for exact simulation of multicomponent aggregation processes"" [J. Comput. Phys. 177(2002) 418-449].",2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#Laurenzi06,https://doi.org/10.1016/j.jcp.2006.03.002 +Wenjun Ying,A kernel-free boundary integral method for implicitly defined surfaces.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#YingW13,https://doi.org/10.1016/j.jcp.2013.06.019 +Alice Lieu,A comparison of high-order polynomial and wave-based methods for Helmholtz problems.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#LieuGB16,https://doi.org/10.1016/j.jcp.2016.05.045 +Yong-Lei Wang,Implementation of non-uniform FFT based Ewald summation in dissipative particle dynamics method.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#WangLL13,https://doi.org/10.1016/j.jcp.2012.09.023 +Guglielmo Scovazzi,A discontinuous Galerkin method for gravity-driven viscous fingering instabilities in porous media.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#ScovazziGC13,https://doi.org/10.1016/j.jcp.2012.09.003 +Adimurthi,Godunov-type numerical methods for a model of granular flow.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#AdimurthiAG16,https://doi.org/10.1016/j.jcp.2015.09.036 +Michel Rieutord,An algorithm for computing the 2D structure of fast rotating stars.,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#RieutordLP16,https://doi.org/10.1016/j.jcp.2016.05.011 +Nicolas Grenier,An accurate low-Mach scheme for a compressible two-fluid model applied to free-surface flows.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#GrenierVV13,https://doi.org/10.1016/j.jcp.2013.06.008 +J. Novak,A spectral method for the wave equation of divergence-free vectors and symmetric tensors inside a sphere.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#NovakCV10,https://doi.org/10.1016/j.jcp.2009.09.033 +Javier Murillo,Wave Riemann description of friction terms in unsteady shallow flows: Application to water and mud/debris floods.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#MurilloG12,https://doi.org/10.1016/j.jcp.2011.11.014 +Songting Luo,A uniformly second order fast sweeping method for eikonal equations.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#Luo13,https://doi.org/10.1016/j.jcp.2013.01.042 +William F. Godoy,On the use of flux limiters in the discrete ordinates method for 3D radiation calculations in absorbing and scattering media.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#GodoyD10,https://doi.org/10.1016/j.jcp.2009.12.037 +Y. T. Feng,Discrete thermal element modelling of heat conduction in particle systems: Basic formulations.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#FengHLO08,https://doi.org/10.1016/j.jcp.2008.01.031 +Ofer Shamir,"A Gegenbauer-based Shallow Water solver for a thick ""ocean"" over a rotating sphere.",2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#ShamirP16,https://doi.org/10.1016/j.jcp.2015.10.019 +Fabian Denner,Numerical time-step restrictions as a result of capillary waves.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#DennerW15,https://doi.org/10.1016/j.jcp.2015.01.021 +C. Birk,A local high-order doubly asymptotic open boundary for diffusion in a semi-infinite layer.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#BirkS10,https://doi.org/10.1016/j.jcp.2010.04.046 +Duc-Vinh Le,A front-tracking method with Catmull-Clark subdivision surfaces for studying liquid capsules enclosed by thin shells in shear flow.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#LeW11,https://doi.org/10.1016/j.jcp.2011.01.047 +Mehdi Tatari,The Galerkin boundary node method for magneto-hydrodynamic (MHD) equation.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#TatariG14,https://doi.org/10.1016/j.jcp.2013.10.056 +E. Gagarina,On variational and symplectic time integrators for Hamiltonian systems.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#GagarinaANVB16,https://doi.org/10.1016/j.jcp.2015.11.049 +Sören Bartels,Modeling and simulation of thermally actuated bilayer plates.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#BartelsBMN18,https://doi.org/10.1016/j.jcp.2017.10.044 +Rongzong Huang,An immersed boundary-thermal lattice Boltzmann method for solid-liquid phase change.,2014,277,J. Comput. Physics,,db/journals/jcphy/jcphy277.html#HuangW14,https://doi.org/10.1016/j.jcp.2014.08.020 +G. Thorgilsson,Recursive Green's function method for multi-terminal nanostructures.,2014,261,J. Comput. Physics,,db/journals/jcphy/jcphy261.html#ThorgilssonVE14,https://doi.org/10.1016/j.jcp.2013.12.054 +Rodrigo Panosso Macedo,Axisymmetric fully spectral code for hyperbolic equations.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#MacedoA14,https://doi.org/10.1016/j.jcp.2014.07.040 +Elizabeth L. Bouzarth,Modeling slender bodies with the method of regularized Stokeslets.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#BouzarthM11,https://doi.org/10.1016/j.jcp.2011.02.017 +Baskar Ganapathysubramanian,A stochastic multiscale framework for modeling flow through random heterogeneous porous media.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#GanapathysubramanianZ09,https://doi.org/10.1016/j.jcp.2008.10.006 +Joran Rolland,Statistical behaviour of adaptive multilevel splitting algorithms in simple models.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#RollandS15,https://doi.org/10.1016/j.jcp.2014.12.009 +Mark B. Flegg,Convergence of methods for coupling of microscopic and mesoscopic reaction-diffusion simulations.,2015,289,J. Comput. Physics,,db/journals/jcphy/jcphy289.html#FleggHE15,https://doi.org/10.1016/j.jcp.2015.01.030 +Milan Kucharik,A multi-scale residual-based anti-hourglass control for compatible staggered Lagrangian hydrodynamics.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#KucharikSSL18,https://doi.org/10.1016/j.jcp.2017.10.050 +Dongbin Xiu,Efficient stochastic Galerkin methods for random diffusion equations.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#XiuS09,https://doi.org/10.1016/j.jcp.2008.09.008 +Philip C. Wallstedt,An evaluation of explicit time integration schemes for use with the generalized interpolation material point method.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#WallstedtG08,https://doi.org/10.1016/j.jcp.2008.07.019 +William J. Rider,Robust verification analysis.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#RiderWKW16,https://doi.org/10.1016/j.jcp.2015.11.054 +Tilak R. Dhakal,Material point methods applied to one-dimensional shock waves and dual domain material point method with sub-points.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#DhakalZ16,https://doi.org/10.1016/j.jcp.2016.08.033 +Wai-Sun Don,Accuracy of the weighted essentially non-oscillatory conservative finite difference schemes.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#DonB13,https://doi.org/10.1016/j.jcp.2013.05.018 +A. W. Vreman,The projection method for the incompressible Navier-Stokes equations: The pressure near a no-slip wall.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#Vreman14,https://doi.org/10.1016/j.jcp.2014.01.035 +V. I. Kolobov,Towards adaptive kinetic-fluid simulations of weakly ionized plasmas.,2012,231,J. Comput. Physics,3,db/journals/jcphy/jcphy231.html#KolobovA12,https://doi.org/10.1016/j.jcp.2011.05.036 +Jae-Hun Jung,On the numerical convergence with the inverse polynomial reconstruction method for the resolution of the Gibbs phenomenon.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#JungS07,https://doi.org/10.1016/j.jcp.2007.01.018 +Marcus J. Grote,Nonreflecting boundary condition for time-dependent multiple scattering.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#GroteK07,https://doi.org/10.1016/j.jcp.2006.06.007 +S. Smolentsev,Induced electric current-based formulation in computations of low magnetic Reynolds number magnetohydrodynamic flows.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#SmolentsevCB10,https://doi.org/10.1016/j.jcp.2009.10.044 +Yu-Hang Tang,Multiscale Universal Interface: A concurrent framework for coupling heterogeneous solvers.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#TangKBLK15,https://doi.org/10.1016/j.jcp.2015.05.004 +Julien Berland,A study of differentiation errors in large-eddy simulations based on the EDQNM theory.,2008,227,J. Comput. Physics,18,db/journals/jcphy/jcphy227.html#BerlandBB08,https://doi.org/10.1016/j.jcp.2008.05.026 +Zarko Bodroski,Gaussian basis implementation of the charge patching method.,2018,368,J. Comput. Physics,,db/journals/jcphy/jcphy368.html#BodroskiVS18,https://doi.org/10.1016/j.jcp.2018.04.032 +Vivek Subramaniam,A plasma-vacuum interface tracking algorithm for magnetohydrodynamic simulations of coaxial plasma accelerators.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#SubramaniamR18,https://doi.org/10.1016/j.jcp.2018.03.041 +O. Balima,Optical tomography reconstruction algorithm with the finite element method: An optimal approach with regularization tools.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#BalimaFR13,https://doi.org/10.1016/j.jcp.2013.04.043 +Mohsen Zayernouri,Fractional Adams-Bashforth/Moulton methods: An application to the fractional Keller-Segel chemotaxis system.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#ZayernouriM16,https://doi.org/10.1016/j.jcp.2016.04.041 +Peter Gerlinger,Multi-dimensional limiting for high-order schemes including turbulence and combustion.,2012,231,J. Comput. Physics,5,db/journals/jcphy/jcphy231.html#Gerlinger12,https://doi.org/10.1016/j.jcp.2011.10.024 +Yan-Lin Shao,A harmonic polynomial cell (HPC) method for 3D Laplace equation with application in marine hydrodynamics.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#ShaoF14,https://doi.org/10.1016/j.jcp.2014.06.021 +Ofer Shamir,"A Hermite-based Shallow Water solver for a thin ""ocean"" over a rotating sphere.",2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#ShamirP14,https://doi.org/10.1016/j.jcp.2014.03.015 +Sébastian Minjeaud,Fourier-spectral element approximation of the ion-electron Braginskii system with application to tokamak edge plasma in divertor configuration.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#MinjeaudP16,https://doi.org/10.1016/j.jcp.2016.05.056 +Stylianos Dosopoulos,Non-conformal and parallel discontinuous Galerkin time domain method for Maxwell's equations: EM analysis of IC packages.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#DosopoulosZL13,https://doi.org/10.1016/j.jcp.2012.11.048 +Zhaohua Yin,A Hermite pseudospectral solver for two-dimensional incompressible flows on infinite domains.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#Yin14,https://doi.org/10.1016/j.jcp.2013.10.039 +Maarten Blommaert,A practical globalization of one-shot optimization for optimal design of tokamak divertors.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#BlommaertDBGR17,https://doi.org/10.1016/j.jcp.2016.10.041 +Wenjun Sun,A multidimensional unified gas-kinetic scheme for radiative transfer equations on unstructured mesh.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#SunJX17,https://doi.org/10.1016/j.jcp.2017.09.036 +Sanghyun Ha,A GPU-accelerated semi-implicit fractional-step method for numerical solutions of incompressible Navier-Stokes equations.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#HaPY18,https://doi.org/10.1016/j.jcp.2017.09.055 +Yiqun Li,Spectral-collocation variational integrators.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#LiWL17,https://doi.org/10.1016/j.jcp.2016.12.007 +Panagiotis Tsilifis,Reduced Wiener Chaos representation of random fields via basis adaptation and projection.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#TsilifisG17,https://doi.org/10.1016/j.jcp.2017.04.009 +Arthur E. Turrell,A Monte Carlo algorithm for degenerate plasmas.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#TurrellSR13,https://doi.org/10.1016/j.jcp.2013.03.052 +Nathaniel Trask,A compatible high-order meshless method for the Stokes equations with applications to suspension flows.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#TraskMH18,https://doi.org/10.1016/j.jcp.2017.10.039 +P. Zhang,Numerical simulation of particle motion using a combined MacCormack and immersed boundary method.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#ZhangB15,https://doi.org/10.1016/j.jcp.2015.03.021 +Grigorios A. Pavliotis,Calculating effective diffusivities in the limit of vanishing molecular diffusion.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#PavliotisSZ09,https://doi.org/10.1016/j.jcp.2008.10.014 +Esteban Ferrer,A high order Discontinuous Galerkin - Fourier incompressible 3D Navier-Stokes solver with rotating sliding meshes.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#FerrerW12,https://doi.org/10.1016/j.jcp.2012.04.039 +Tony W. H. Sheu,Dispersion relation equation preserving FDTD method for nonlinear cubic Schrödinger equation.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#SheuL15,https://doi.org/10.1016/j.jcp.2015.06.023 +Erez Gilad,A fast algorithm for convolution integrals with space and time variant kernels.,2006,216,J. Comput. Physics,1,db/journals/jcphy/jcphy216.html#GiladH06,https://doi.org/10.1016/j.jcp.2005.12.003 +Anthony Beaudoin,From Navier-Stokes to Stokes by means of particle methods.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#BeaudoinHR06,https://doi.org/10.1016/j.jcp.2005.09.014 +Carmelo Juez,2D simulation of granular flow over irregular steep slopes using global and local coordinates.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#JuezMG13,https://doi.org/10.1016/j.jcp.2013.08.002 +B. Finkelstein,The spectral order of accuracy: A new unified tool in the design methodology of excitation-adaptive wave equation FDTD schemes.,2009,228,J. Comput. Physics,24,db/journals/jcphy/jcphy228.html#FinkelsteinK09,https://doi.org/10.1016/j.jcp.2009.08.034 +Chris D. Cantwell,High-order spectral/hp element discretisation for reaction-diffusion problems on surfaces: Application to cardiac electrophysiology.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#CantwellYKPS14,https://doi.org/10.1016/j.jcp.2013.10.019 +Marcus J. Grote,Local nonreflecting boundary condition for time-dependent multiple scattering.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#GroteS11,https://doi.org/10.1016/j.jcp.2011.01.017 +Philipp W. Schroeder,Stabilised dG-FEM for incompressible natural convection flows with boundary and moving interior layers on non-adapted meshes.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#SchroederL17,https://doi.org/10.1016/j.jcp.2017.01.055 +Juan Cheng,Positivity-preserving Lagrangian scheme for multi-material compressible flow.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#ChengS14,https://doi.org/10.1016/j.jcp.2013.09.047 +Dimitrios Giannakis,A spectral Galerkin method for the coupled Orr-Sommerfeld and induction equations for free-surface MHD.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#GiannakisFR09,https://doi.org/10.1016/j.jcp.2008.10.016 +Luisa Beghin,On fractional tempered stable processes and their governing differential equations.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#Beghin15,https://doi.org/10.1016/j.jcp.2014.05.026 +Haitao Liao,Efficient sensitivity analysis method for chaotic dynamical systems.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#Liao16,https://doi.org/10.1016/j.jcp.2016.02.016 +Colin J. Cotter,Embedded discontinuous Galerkin transport schemes with localised limiters.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#CotterK16,https://doi.org/10.1016/j.jcp.2016.02.021 +Xuan Zhou,A new mesh deformation method based on disk relaxation algorithm with pre-displacement and post-smoothing.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#ZhouL13,https://doi.org/10.1016/j.jcp.2012.10.024 +Martin Lampe,Quasineutral particle simulation technique for whistlers.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#LampeJMSG06,https://doi.org/10.1016/j.jcp.2005.09.015 +Li Wang 0036,An asymptotic-preserving scheme for linear kinetic equation with fractional diffusion limit.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#WangY16,https://doi.org/10.1016/j.jcp.2016.02.034 +Mikhail S. Litsarev,A low-rank approach to the computation of path integrals.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#LitsarevO16,https://doi.org/10.1016/j.jcp.2015.11.009 +Vishal Mehra,High velocity impact of metal sphere on thin metallic plates: A comparative smooth particle hydrodynamics study.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#MehraC06,https://doi.org/10.1016/j.jcp.2005.06.020 +Thomas E. Schwartzentruber,A modular particle-continuum numerical method for hypersonic non-equilibrium gas flows.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#SchwartzentruberSB07,https://doi.org/10.1016/j.jcp.2007.01.022 +Shivkumar Chandrasekaran,Minimum Sobolev norm interpolation of scattered derivative data.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#ChandrasekaranG18,https://doi.org/10.1016/j.jcp.2018.03.014 +Xiang Ma,An adaptive hierarchical sparse grid collocation algorithm for the solution of stochastic differential equations.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#MaZ09,https://doi.org/10.1016/j.jcp.2009.01.006 +Natasha Flyer,Rotational transport on a sphere: Local node refinement with radial basis functions.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#FlyerL10,https://doi.org/10.1016/j.jcp.2009.11.016 +Saeed Ovaysi,Direct pore-level modeling of incompressible fluid flow in porous media.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#OvaysiP10,https://doi.org/10.1016/j.jcp.2010.06.028 +Zhi Yang Wong,Sequential implicit nonlinear solver for geothermal simulation.,2018,368,J. Comput. Physics,,db/journals/jcphy/jcphy368.html#WongHT18,https://doi.org/10.1016/j.jcp.2018.04.043 +Wangtao Lu,Babich's expansion and the fast Huygens sweeping method for the Helmholtz wave equation at high frequencies.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#LuQB16,https://doi.org/10.1016/j.jcp.2016.02.048 +Chun-Yu Zhang,Diffuse interface simulation of ternary fluids in contact with solid.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#ZhangDGW16,https://doi.org/10.1016/j.jcp.2015.12.054 +John D. Jakeman,Characterization of discontinuities in high-dimensional stochastic problems on adaptive sparse grids.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#JakemanAX11,https://doi.org/10.1016/j.jcp.2011.02.022 +Alexander Pletzer,Compact cell-centered discretization stencils at fine-coarse block structured grid interfaces.,2014,260,J. Comput. Physics,,db/journals/jcphy/jcphy260.html#PletzerJCS14,https://doi.org/10.1016/j.jcp.2013.12.020 +David G. Dritschel,On the simulation of nearly inviscid two-dimensional turbulence.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#DritschelS09,https://doi.org/10.1016/j.jcp.2009.01.015 +I. S. Chekhovskoy,Numerical approaches to simulation of multi-core fibers.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#ChekhovskoyPSF17,https://doi.org/10.1016/j.jcp.2016.12.056 +Gang Bao,Multiscale modeling and computation of optically manipulated nano devices.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#BaoLL16,https://doi.org/10.1016/j.jcp.2016.04.033 +Irina N. Shishkova,A solution of the Boltzmann equation in the presence of inelastic collisions.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#ShishkovaSX13,https://doi.org/10.1016/j.jcp.2012.07.007 +Jinsong Hua,Numerical simulation of bubble rising in viscous liquid.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#HuaL07,https://doi.org/10.1016/j.jcp.2006.08.008 +Youqi Zheng,A new approach to three-dimensional neutron transport solution based on the method of characteristics and linear axial approximation.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#ZhengCL17,https://doi.org/10.1016/j.jcp.2017.08.026 +Peter A. Graf,A note on the virtual crystal approach to alloy optimization.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#GrafJK09,https://doi.org/10.1016/j.jcp.2009.03.020 +E. Cebrián,Self-sustained current oscillations in the kinetic theory of semiconductor superlattices.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#CebrianBC09,https://doi.org/10.1016/j.jcp.2009.07.008 +S. Z. Husain,Spectrally-accurate algorithm for moving boundary problems for the Navier-Stokes equations.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#HusainF10,https://doi.org/10.1016/j.jcp.2009.11.035 +Guang Lin,Numerical studies of the stochastic Korteweg-de Vries equation.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#LinGK06,https://doi.org/10.1016/j.jcp.2005.08.029 +Changna Lu,The cutoff method for the numerical computation of nonnegative solutions of parabolic PDEs with application to anisotropic diffusion and Lubrication-type equations.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#LuHV13,https://doi.org/10.1016/j.jcp.2013.01.052 +Y. Bazilevs,Isogeometric analysis of Lagrangian hydrodynamics: Axisymmetric formulation in the rz-cylindrical coordinates.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#BazilevsLABS14,https://doi.org/10.1016/j.jcp.2014.01.001 +Kannan N. Premnath,Steady state convergence acceleration of the generalized lattice Boltzmann equation with forcing term through preconditioning.,2009,228,J. Comput. Physics,3,db/journals/jcphy/jcphy228.html#PremnathPB09,https://doi.org/10.1016/j.jcp.2008.09.028 +E. Vergnault,A time-reversal lattice Boltzmann method.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#VergnaultMS11,https://doi.org/10.1016/j.jcp.2011.07.014 +Matteo Bernardini,A general strategy for the optimization of Runge-Kutta schemes for wave propagation phenomena.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#BernardiniP09,https://doi.org/10.1016/j.jcp.2009.02.032 +Qin Sheng,Stability of a modified Peaceman-Rachford method for the paraxial Helmholtz equation on adaptive grids.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#ShengS16,https://doi.org/10.1016/j.jcp.2016.08.040 +Glen Hansen,A Jacobian-free Newton Krylov method for mortar-discretized thermomechanical contact problems.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#Hansen11,https://doi.org/10.1016/j.jcp.2011.04.038 +Kailiang Wu,High-order accurate physical-constraints-preserving finite difference WENO schemes for special relativistic hydrodynamics.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#WuT15,https://doi.org/10.1016/j.jcp.2015.06.012 +Zhongqiang Zhang,Numerical solution of the Stratonovich- and Ito-Euler equations: Application to the stochastic piston problem.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#ZhangYLK13,https://doi.org/10.1016/j.jcp.2012.11.017 +Shengyang Wu,A multi-mesh finite element method for phase-field based photonic band structure optimization.,2018,357,J. Comput. Physics,,db/journals/jcphy/jcphy357.html#WuHZ18,https://doi.org/10.1016/j.jcp.2017.12.031 +Sang-Hyeon Lee,Cancellation problem of preconditioning method at low Mach numbers.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#Lee07a,https://doi.org/10.1016/j.jcp.2007.04.001 +Toon Demeester,Stability analysis of a partitioned iterative method for steady free surface flow.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#DemeesterDV18,https://doi.org/10.1016/j.jcp.2017.10.053 +Alexander Patronis,Multiscale simulation of non-isothermal microchannel gas flows.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#PatronisL14,https://doi.org/10.1016/j.jcp.2014.04.004 +Matthys M. Botha,Solving the volume integral equations of electromagnetic scattering.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#Botha06,https://doi.org/10.1016/j.jcp.2006.02.004 +Guoping Xia,Consistent properties reconstruction on adaptive Cartesian meshes for complex fluids computations.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#XiaLM07,https://doi.org/10.1016/j.jcp.2007.01.034 +F. G. Fuchs,High order well-balanced finite volume schemes for simulating wave propagation in stratified magnetic atmospheres.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#FuchsMMRW10,https://doi.org/10.1016/j.jcp.2010.01.038 +Xiaoliang Wan,A sharp error estimate for the fast Gauss transform.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#WanK06,https://doi.org/10.1016/j.jcp.2006.04.016 +Chieh-Sen Huang,A semi-Lagrangian finite difference WENO scheme for scalar nonlinear conservation laws.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#HuangAH16,https://doi.org/10.1016/j.jcp.2016.06.027 +Mathias Winkel,A high-order Boris integrator.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#WinkelSR15,https://doi.org/10.1016/j.jcp.2015.04.022 +Limei Li,Alternating direction implicit Galerkin finite element method for the two-dimensional fractional diffusion-wave equation.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#LiXL13,https://doi.org/10.1016/j.jcp.2013.08.031 +Ganesh Natarajan,IDeC(k): A new velocity reconstruction algorithm on arbitrarily polygonal staggered meshes.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#NatarajanS11,https://doi.org/10.1016/j.jcp.2011.04.039 +David Sidilkover,Towards unification of the Vorticity Confinement and Shock Capturing (TVD and ENO/WENO) methods.,2018,358,J. Comput. Physics,,db/journals/jcphy/jcphy358.html#Sidilkover18,https://doi.org/10.1016/j.jcp.2017.12.033 +Ying Chen,Efficient energy stable schemes for isotropic and strongly anisotropic Cahn-Hilliard systems with the Willmore regularization.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#ChenLSWW18,https://doi.org/10.1016/j.jcp.2018.03.024 +Misun Min,A spectral-element discontinuous Galerkin lattice Boltzmann method for nearly incompressible flows.,2011,230,J. Comput. Physics,1,db/journals/jcphy/jcphy230.html#MinL11,https://doi.org/10.1016/j.jcp.2010.09.024 +Konstantin Lipnikov,Mimetic discretization of two-dimensional magnetic diffusion equations.,2013,247,J. Comput. Physics,,db/journals/jcphy/jcphy247.html#LipnikovRN13,https://doi.org/10.1016/j.jcp.2013.03.050 +Kenji Miki,Probabilistic models and uncertainty quantification for the ionization reaction rate of atomic Nitrogen.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#MikiPPP12,https://doi.org/10.1016/j.jcp.2012.01.005 +Eugene Kashdan,High-order accurate modeling of electromagnetic wave propagation across media - Grid conforming bodies.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#KashdanT06,https://doi.org/10.1016/j.jcp.2006.03.009 +Rodney O. Fox,Conditional hyperbolic quadrature method of moments for kinetic equations.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#FoxLV18,https://doi.org/10.1016/j.jcp.2018.03.025 +M. F. Eggl,A gradient-based framework for maximizing mixing in binary fluids.,2018,368,J. Comput. Physics,,db/journals/jcphy/jcphy368.html#EgglS18,https://doi.org/10.1016/j.jcp.2018.04.030 +Guillaume Fournier,A novel outflow boundary condition for incompressible laminar wall-bounded flows.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#FournierGP08,https://doi.org/10.1016/j.jcp.2008.03.038 +Simon Bogner,Boundary conditions for free interfaces with the lattice Boltzmann method.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#BognerAR15,https://doi.org/10.1016/j.jcp.2015.04.055 +F. Valentini,A hybrid-Vlasov model based on the current advance method for the simulation of collisionless magnetized plasma.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#ValentiniTCHM07,https://doi.org/10.1016/j.jcp.2007.01.001 +Liang Xie,Efficient mesh motion using radial basis functions with volume grid points reduction algorithm.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#XieL17,https://doi.org/10.1016/j.jcp.2017.07.042 +Yair Moryossef,Unconditionally positive implicit procedure for two-equation turbulence models: Application to k-χ9* turbulence models.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#MoryossefL06,https://doi.org/10.1016/j.jcp.2006.05.001 +Yohsuke Imai,Conservative form of interpolated differential operator scheme for compressible and incompressible fluid dynamics.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#ImaiAT08,https://doi.org/10.1016/j.jcp.2007.11.031 +Jeroen Wackers,Can adaptive grid refinement produce grid-independent solutions for incompressible flows?,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#WackersDGLQVPL17,https://doi.org/10.1016/j.jcp.2017.04.077 +Xian Luo,Smoothed profile method for particulate flows: Error analysis and simulations.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#LuoMK09,https://doi.org/10.1016/j.jcp.2008.11.006 +M. Al-Marouf,A versatile embedded boundary adaptive mesh method for compressible flow in complex geometry.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#Al-MaroufS17,https://doi.org/10.1016/j.jcp.2017.02.044 +Timothy M. Schaerf,On contour crossings in contour-advective simulations - part 1 - algorithm for detection and quantification.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#SchaerfM12,https://doi.org/10.1016/j.jcp.2011.09.015 +Massimo Cassiani,An efficient algorithm for scalar PDF modelling in incompressible turbulent flow* numerical analysis with evaluation of IEM and IECM micro-mixing models.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#CassianiRAG07,https://doi.org/10.1016/j.jcp.2006.09.023 +Gunnar Wendt,Partitioned coupling strategies for multi-physically coupled radiative heat transfer problems.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#WendtED15,https://doi.org/10.1016/j.jcp.2015.07.063 +Jean-Luc Vay,Numerical methods for instability mitigation in the modeling of laser wakefield accelerators in a Lorentz-boosted frame.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#VayGCG11,https://doi.org/10.1016/j.jcp.2011.04.003 +Gaofeng Wang,An overset grid method for large eddy simulation of turbomachinery stages.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#WangDPDMG14,https://doi.org/10.1016/j.jcp.2014.06.006 +Qianlong Liu,Heterogeneous mixtures of elliptical particles: Directly resolving local and global properties and responses.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#LiuR13,https://doi.org/10.1016/j.jcp.2012.09.039 +Giulio Ciraolo,A computational method for the Helmholtz equation in unbounded domains based on the minimization of an integral functional.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#CiraoloGS13,https://doi.org/10.1016/j.jcp.2013.03.047 +Kazem Hejranfar,On the outflow conditions for spectral solution of the viscous blunt-body problem.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#HejranfarEN09,https://doi.org/10.1016/j.jcp.2009.02.010 +Patrick Ciarlet Jr.,Continuous Galerkin methods for solving the time-dependent Maxwell equations in 3D geometries.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#CiarletJ07,https://doi.org/10.1016/j.jcp.2007.05.029 +Francis X. Giraldo,High-order triangle-based discontinuous Galerkin methods for hyperbolic equations on a rotating sphere.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#Giraldo06,https://doi.org/10.1016/j.jcp.2005.09.029 +F. Doisneau,Eulerian multi-fluid models for the simulation of dynamics and coalescence of particles in solid propellant combustion.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#DoisneauLMDM13,https://doi.org/10.1016/j.jcp.2012.09.025 +Adel M. Benselama,A 1D-3D mixed method for the numerical simulation of blast waves in confined geometries.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#BenselamaWM09,https://doi.org/10.1016/j.jcp.2009.06.010 +Miles Detrixhe,A parallel fast sweeping method for the Eikonal equation.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#DetrixheGM13,https://doi.org/10.1016/j.jcp.2012.11.042 +Mechthild Thalhammer,A numerical study of adaptive space and time discretisations for Gross-Pitaevskii equations.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#ThalhammerA12,https://doi.org/10.1016/j.jcp.2012.05.031 +Lijie Mei,The construction of arbitrary order ERKN methods based on group theory for solving oscillatory Hamiltonian systems with applications.,2016,323,J. Comput. Physics,,db/journals/jcphy/jcphy323.html#MeiW16,https://doi.org/10.1016/j.jcp.2016.07.033 +G. S. Payette,On the roles of minimization and linearization in least-squares finite element models of nonlinear boundary-value problems.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#PayetteR11,https://doi.org/10.1016/j.jcp.2011.02.002 +K. A. Stephani,A non-equilibrium surface reservoir approach for hybrid DSMC/Navier-Stokes particle generation.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#StephaniGV13,https://doi.org/10.1016/j.jcp.2012.08.017 +Yukun Guo,A time domain sampling method for inverse acoustic scattering problems.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#GuoHHLL16,https://doi.org/10.1016/j.jcp.2016.03.046 +Haifeng Wang,Weak second-order splitting schemes for Lagrangian Monte Carlo particle methods for the composition PDF/FDF transport equations.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#WangPP10,https://doi.org/10.1016/j.jcp.2009.11.012 +Varun Shankar,Mesh-free semi-Lagrangian methods for transport on a sphere using radial basis functions.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#ShankarW18,https://doi.org/10.1016/j.jcp.2018.04.007 +Kushal S. Kedia,A second-order coupled immersed boundary-SAMR construction for chemically reacting flow over a heat-conducting Cartesian grid-conforming solid.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#KediaSRNG14,https://doi.org/10.1016/j.jcp.2014.04.019 +Gibbeum Lee,Semi-analytical Karhunen-Loeve representation of irregular waves based on the prolate spheroidal wave functions.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#LeeC18,https://doi.org/10.1016/j.jcp.2017.09.023 +Beatrice Roget,Robust and efficient overset grid assembly for partitioned unstructured meshes.,2014,260,J. Comput. Physics,,db/journals/jcphy/jcphy260.html#RogetS14,https://doi.org/10.1016/j.jcp.2013.12.021 +Heng Hu,A bridging technique to analyze the influence of boundary conditions on instability patterns.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#HuDP11,https://doi.org/10.1016/j.jcp.2011.01.044 +Weiqing Ren,Analytical and numerical study of coupled atomistic-continuum methods for fluids.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#Ren07,https://doi.org/10.1016/j.jcp.2007.09.007 +Carl Erik Wasberg,Variational multiscale turbulence modelling in a high order spectral element method.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#WasbergGRA09,https://doi.org/10.1016/j.jcp.2009.06.029 +Takashi Ichinomiya,Temporal coarse-graining method to simulate the movement of atoms.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#Ichinomiya13,https://doi.org/10.1016/j.jcp.2013.05.049 +Weihua Deng,Numerical algorithm for the time fractional Fokker-Planck equation.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#Deng07,https://doi.org/10.1016/j.jcp.2007.09.015 +Xiang Chen,Passing waves from atomistic to continuum.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#ChenDXMC18,https://doi.org/10.1016/j.jcp.2017.10.038 +Thanh Tu Bui,A fast algorithm for modeling multiple bubbles dynamics.,2006,216,J. Comput. Physics,2,db/journals/jcphy/jcphy216.html#BuiOKKH06,https://doi.org/10.1016/j.jcp.2005.12.009 +Weizhu Bao,Efficient and spectrally accurate numerical methods for computing ground and first excited states in Bose-Einstein condensates.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#BaoCL06,https://doi.org/10.1016/j.jcp.2006.04.019 +V. Zheligovsky,The Monge-Ampère equation: Various forms and numerical solution.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#ZheligovskyPF10,https://doi.org/10.1016/j.jcp.2010.03.025 +Masashi Kanamori,Shock wave detection in two-dimensional flow based on the theory of characteristics from CFD data.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#KanamoriS11,https://doi.org/10.1016/j.jcp.2011.01.007 +Dirk M. Luchtenburg,Long-time uncertainty propagation using generalized polynomial chaos and flow map composition.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#LuchtenburgBR14,https://doi.org/10.1016/j.jcp.2014.06.029 +Shu-Lin Wu,A second-order parareal algorithm for fractional PDEs.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#Wu16,https://doi.org/10.1016/j.jcp.2015.12.007 +Stéphane Del Pino,Metric-based mesh adaptation for 2D Lagrangian compressible flows.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#Pino11,https://doi.org/10.1016/j.jcp.2010.11.030 +Yasuhiro Idomura,A new hybrid kinetic electron model for full-f gyrokinetic simulations.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#Idomura16,https://doi.org/10.1016/j.jcp.2016.02.057 +Hilary Weller,Mesh adaptation on the sphere using optimal transport and the numerical solution of a Monge-Ampère type equation.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#WellerBBC16,https://doi.org/10.1016/j.jcp.2015.12.018 +Johan Larsson,Blending technique for compressible inflow turbulence: Algorithm localization and accuracy assessment.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#Larsson09,https://doi.org/10.1016/j.jcp.2008.10.027 +Han Men,Bandgap optimization of two-dimensional photonic crystals using semidefinite programming and subspace methods.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#MenNFPP10,https://doi.org/10.1016/j.jcp.2010.01.023 +Karim Shariff,A contour dynamics algorithm for axisymmetric flow.,2008,227,J. Comput. Physics,21,db/journals/jcphy/jcphy227.html#ShariffLF08,https://doi.org/10.1016/j.jcp.2007.10.005 +P. J. A. Janssen,A boundary-integral model for drop deformation between two parallel plates with non-unit viscosity ratio drops.,2008,227,J. Comput. Physics,20,db/journals/jcphy/jcphy227.html#JanssenA08,https://doi.org/10.1016/j.jcp.2008.06.027 +Susanna Kube,Monte Carlo sampling of Wigner functions and surface hopping quantum dynamics.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#KubeLW09,https://doi.org/10.1016/j.jcp.2008.11.016 +Pavel B. Bochev,Optimization-based remap and transport: A divide and conquer strategy for feature-preserving discretizations.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#BochevRP14,https://doi.org/10.1016/j.jcp.2013.03.057 +Robert Prosser,Towards improved boundary conditions for the DNS and LES of turbulent subsonic flows.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#Prosser07,https://doi.org/10.1016/j.jcp.2006.09.006 +Patrick Jenny,Unconditionally convergent nonlinear solver for hyperbolic conservation laws with S-shaped flux functions.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#JennyTL09,https://doi.org/10.1016/j.jcp.2009.06.032 +Martin Campos Pinto,Noiseless Vlasov-Poisson simulations with linearly transformed particles.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#PintoSFGL14,https://doi.org/10.1016/j.jcp.2014.06.032 +Søren Taverniers,Noise propagation in hybrid models of nonlinear systems: The Ginzburg-Landau equation.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#TaverniersAT14,https://doi.org/10.1016/j.jcp.2014.01.015 +Barbara Re 0002,An interpolation-free ALE scheme for unsteady inviscid flows computations with large boundary displacements over three-dimensional adaptive grids.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#ReDG17,https://doi.org/10.1016/j.jcp.2017.03.034 +Grégoire Pont,Multiple-correction hybrid k-exact schemes for high-order compressible RANS-LES simulations on fully unstructured grids.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#PontBCMR17,https://doi.org/10.1016/j.jcp.2017.08.036 +Bruce I. Cohen,A grid-based binary model for coulomb collisions in plasmas.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#CohenDS13,https://doi.org/10.1016/j.jcp.2012.08.046 +Ercília Sousa,Finite difference approximations for a fractional advection diffusion problem.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#Sousa09,https://doi.org/10.1016/j.jcp.2009.02.011 +Gang Bao,An h-adaptive finite element solver for the calculations of the electronic structures.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#BaoHL12,https://doi.org/10.1016/j.jcp.2012.04.002 +Akbar Mohebbi,A high-order and unconditionally stable scheme for the modified anomalous fractional sub-diffusion equation with a nonlinear source term.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#MohebbiAD13,https://doi.org/10.1016/j.jcp.2012.11.052 +Rachel Nuter,Suppressing the numerical Cherenkov radiation in the Yee numerical scheme.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#NuterT16,https://doi.org/10.1016/j.jcp.2015.10.057 +C. S. Wu,Simulation of wave-structure interaction by hybrid Cartesian/immersed boundary and arbitrary Lagrangian-Eulerian finite-element method.,2013,254,J. Comput. Physics,,db/journals/jcphy/jcphy254.html#WuYC13,https://doi.org/10.1016/j.jcp.2013.07.014 +Alireza Mazaheri,A first-order hyperbolic system approach for dispersion.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#MazaheriRN16,https://doi.org/10.1016/j.jcp.2016.06.001 +Chohong Min,A second order accurate level set method on non-graded adaptive cartesian grids.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#MinG07a,https://doi.org/10.1016/j.jcp.2006.11.034 +Matti Leinonen,Application of stochastic Galerkin FEM to the complete electrode model of electrical impedance tomography.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#LeinonenHH14,https://doi.org/10.1016/j.jcp.2014.03.011 +Nam Mai-Duy,Compact local integrated-RBF approximations for second-order elliptic differential problems.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#Mai-DuyT11,https://doi.org/10.1016/j.jcp.2011.03.002 +Peng Zhang 0014,A weighted essentially non-oscillatory numerical scheme for a multi-class traffic flow model on an inhomogeneous highway.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#ZhangWS06,https://doi.org/10.1016/j.jcp.2005.07.019 +Hiroshi Terashima,"Corrigendum to ""Approach for simulating gas-liquid-like flows under supercritical pressures using a high-order central differencing scheme"" [J. Comput. Phys. 231(20) (2012) 6907-6923].",2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#TerashimaK15,https://doi.org/10.1016/j.jcp.2014.11.013 +Nail A. Gumerov,A scalar potential formulation and translation theory for the time-harmonic Maxwell equations.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#GumerovD07,https://doi.org/10.1016/j.jcp.2006.11.025 +Zhifang Du,A two-stage fourth order time-accurate discretization for Lax-Wendroff type flow solvers II. High order numerical boundary conditions.,2018,369,J. Comput. Physics,,db/journals/jcphy/jcphy369.html#DuL18a,https://doi.org/10.1016/j.jcp.2018.05.002 +Linhai Qiu,On thin gaps between rigid bodies two-way coupled to incompressible flow.,2015,292,J. Comput. Physics,,db/journals/jcphy/jcphy292.html#QiuYF15,https://doi.org/10.1016/j.jcp.2015.03.027 +Jeroen A. S. Witteveen,Subcell resolution in simplex stochastic collocation for spatial discontinuities.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#WitteveenI13a,https://doi.org/10.1016/j.jcp.2013.05.035 +Jason E. Hicken,Adjoint consistency analysis of residual-based variational multiscale methods.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#HickenLSO13,https://doi.org/10.1016/j.jcp.2013.07.039 +N. T. P. Le,A triangular discontinuous Galerkin method for non-Newtonian implicit constitutive models of rarefied and microscale gases.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#LeXM14,https://doi.org/10.1016/j.jcp.2014.05.013 +Klaus Huthmacher,A split-step method to include electron-electron collisions via Monte Carlo in multiple rate equation simulations.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#HuthmacherMRG16,https://doi.org/10.1016/j.jcp.2016.06.043 +Yossi Farjoun,An exactly conservative particle method for one dimensional scalar conservation laws.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#FarjounS09,https://doi.org/10.1016/j.jcp.2009.04.013 +Jeroen A. S. Witteveen,Effect of randomness on multi-frequency aeroelastic responses resolved by Unsteady Adaptive Stochastic Finite Elements.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#WitteveenB09,https://doi.org/10.1016/j.jcp.2009.06.013 +Ethan Levien,Coupling sample paths to the thermodynamic limit in Monte Carlo estimators with applications to gene expression.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#LevienB17,https://doi.org/10.1016/j.jcp.2017.05.050 +Wing-Cheong Lo,A robust and efficient method for steady state patterns in reaction-diffusion systems.,2012,231,J. Comput. Physics,15,db/journals/jcphy/jcphy231.html#LoCWN12,https://doi.org/10.1016/j.jcp.2012.04.006 +Fabian Denner,Pressure-based algorithm for compressible interfacial flows with acoustically-conservative interface discretisation.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#DennerXW18,https://doi.org/10.1016/j.jcp.2018.04.028 +Claudio E. Torres,Fast radial basis function interpolation with Gaussians by localization and iteration.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#TorresB09,https://doi.org/10.1016/j.jcp.2009.03.007 +Santiago Badia,Finite element approximation of nematic liquid crystal flows using a saddle-point structure.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#BadiaGG11,https://doi.org/10.1016/j.jcp.2010.11.033 +Jian Zhang,A phase field model for vesicle-substrate adhesion.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#ZhangDD09,https://doi.org/10.1016/j.jcp.2009.07.027 +Bin Zhang,A short note on the counter-intuitive spurious behaviors in stiff reacting flow.,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#ZhangW15,https://doi.org/10.1016/j.jcp.2015.03.017 +Kei W. Müller,Resolution of sub-element length scales in Brownian dynamics simulations of biopolymer networks with geometrically exact beam finite elements.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#MullerMW15,https://doi.org/10.1016/j.jcp.2015.09.038 +Stefan Hickel,An adaptive local deconvolution method for implicit LES.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#HickelAD06,https://doi.org/10.1016/j.jcp.2005.08.017 +Noele Peres,A 3D pseudospectral method for cylindrical coordinates. Application to the simulations of rotating cavity flows.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#PeresPS12,https://doi.org/10.1016/j.jcp.2012.04.033 +Shuai Wang,A positivity-preserving pyramid scheme for anisotropic diffusion problems on general hexahedral meshes with nonplanar cell faces.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#WangHY18,https://doi.org/10.1016/j.jcp.2018.05.026 +Liuyan Lu,Computationally efficient implementation of combustion chemistry in parallel PDF calculations.,2009,228,J. Comput. Physics,15,db/journals/jcphy/jcphy228.html#LuLRP09,https://doi.org/10.1016/j.jcp.2009.04.037 +Miles Detrixhe,Hybrid massively parallel fast sweeping method for static Hamilton-Jacobi equations.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#DetrixheG16,https://doi.org/10.1016/j.jcp.2016.06.023 +Xiao-Xing Su,A matrix-exponential decomposition based time-domain method for calculating the defect states of scalar waves in two-dimensional periodic structures.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#SuWZ17,https://doi.org/10.1016/j.jcp.2017.02.042 +Alexandra Claisse,A nonlinear PDE model for reconstructing a regular surface from sampled data using a level set formulation on triangular meshes.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#ClaisseF11,https://doi.org/10.1016/j.jcp.2011.02.039 +Yingda Cheng,Energy-conserving discontinuous Galerkin methods for the Vlasov-Ampère system.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#ChengCZ14a,https://doi.org/10.1016/j.jcp.2013.09.013 +F. Vidal-Codina,A model and variance reduction method for computing statistical outputs of stochastic elliptic partial differential equations.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#Vidal-CodinaNGP15,https://doi.org/10.1016/j.jcp.2015.05.041 +Luis Cueto-Felgueroso,A time-adaptive finite volume method for the Cahn-Hilliard and Kuramoto-Sivashinsky equations.,2008,227,J. Comput. Physics,24,db/journals/jcphy/jcphy227.html#Cueto-FelguerosoP08,https://doi.org/10.1016/j.jcp.2008.07.024 +M. Pino Martín,A bandwidth-optimized WENO scheme for the effective direct numerical simulation of compressible turbulence.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#MartinTWW06,https://doi.org/10.1016/j.jcp.2006.05.009 +S. Kumar Ranjith,No-slip boundary condition in finite-size dissipative particle dynamics.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#RanjithPV13,https://doi.org/10.1016/j.jcp.2012.07.046 +Nathaniel R. Morgan,A point-centered arbitrary Lagrangian Eulerian hydrodynamic approach for tetrahedral meshes.,2015,290,J. Comput. Physics,,db/journals/jcphy/jcphy290.html#MorganWBCCW15a,https://doi.org/10.1016/j.jcp.2015.02.024 +Weitao Chen,Lax-Friedrichs fast sweeping methods for steady state problems for hyperbolic conservation laws.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#ChenCK13,https://doi.org/10.1016/j.jcp.2012.10.008 +J. Wu,A solution-adaptive lattice Boltzmann method for two-dimensional incompressible viscous flows.,2011,230,J. Comput. Physics,6,db/journals/jcphy/jcphy230.html#WuS11,https://doi.org/10.1016/j.jcp.2010.12.013 +Alexandros I. Dimitriadis,Generalized non-local surface susceptibility model and Fresnel coefficients for the characterization of periodic metafilms with bianisotropic scatterers.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#DimitriadisKTH15,https://doi.org/10.1016/j.jcp.2014.10.028 +William M. Putman,Finite-volume transport on various cubed-sphere grids.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#PutmanL07,https://doi.org/10.1016/j.jcp.2007.07.022 +Andreas Haselbacher,Slow-time acceleration for modeling multiple-time-scale problems.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#HaselbacherNMM10,https://doi.org/10.1016/j.jcp.2009.09.029 +Etelvina Javierre,A level set method for three dimensional vector Stefan problems: Dissolution of stoichiometric particles in multi-component alloys.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#JavierreVVS07,https://doi.org/10.1016/j.jcp.2007.01.038 +Taku Nonomura,Effects of difference scheme type in high-order weighted compact nonlinear schemes.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#NonomuraF09,https://doi.org/10.1016/j.jcp.2009.02.018 +Noah D. Brenowitz,Nonlinear Laplacian spectral analysis of Rayleigh-Bénard convection.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#BrenowitzGM16,https://doi.org/10.1016/j.jcp.2016.03.051 +Christopher L. MacDonald,Efficient computation of the Grünwald-Letnikov fractional diffusion derivative using adaptive time step memory.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#MacDonaldBSS15,https://doi.org/10.1016/j.jcp.2015.04.048 +Xing Ji,A family of high-order gas-kinetic schemes and its comparison with Riemann solver based high-order methods.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#JiZSX18,https://doi.org/10.1016/j.jcp.2017.11.036 +Giacomo Dimarco,An efficient numerical method for solving the Boltzmann equation in multidimensions.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#DimarcoLNR18,https://doi.org/10.1016/j.jcp.2017.10.010 +Sander Rhebergen,Discontinuous Galerkin finite element methods for hyperbolic nonconservative partial differential equations.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#RhebergenBV08,https://doi.org/10.1016/j.jcp.2007.10.007 +Ratnesh K. Shukla,Nonlinear preconditioning for efficient and accurate interface capturing in simulation of multicomponent compressible flows.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#Shukla14,https://doi.org/10.1016/j.jcp.2014.07.034 +Vladimir M. Sadovskii,Modeling of wave processes in blocky media with porous and fluid-saturated interlayers.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#SadovskiiSL17,https://doi.org/10.1016/j.jcp.2017.06.001 +M. Kazolea,Numerical treatment of wave breaking on unstructured finite volume approximations for extended Boussinesq-type equations.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#KazoleaDS14,https://doi.org/10.1016/j.jcp.2014.01.030 +Maciej Balajewicz,Reduction of nonlinear embedded boundary models for problems with evolving interfaces.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#BalajewiczF14,https://doi.org/10.1016/j.jcp.2014.06.038 +Mark A. Goffin,Minimising the error in eigenvalue calculations involving the Boltzmann transport equation using goal-based adaptivity on unstructured meshes.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#GoffinBBPES13,https://doi.org/10.1016/j.jcp.2012.12.035 +Hamid Alemi Ardakani,Shallow-water sloshing in a moving vessel with variable cross-section and wetting-drying using an extension of George's well-balanced finite volume solver.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#ArdakaniBT16,https://doi.org/10.1016/j.jcp.2016.03.037 +J. P. Pontaza,A least-squares finite element formulation for unsteady incompressible flows with improved velocity-pressure coupling.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#Pontaza06,https://doi.org/10.1016/j.jcp.2006.01.013 +Andrea Mignone,High-order conservative finite difference GLM-MHD schemes for cell-centered MHD.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#MignoneTB10,https://doi.org/10.1016/j.jcp.2010.04.013 +Tomi Huttunen,Solving Maxwell's equations using the ultra weak variational formulation.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#HuttunenMM07,https://doi.org/10.1016/j.jcp.2006.10.016 +Alberto Guardone,Finite element/volume solution to axisymmetric conservation laws.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#GuardoneV07,https://doi.org/10.1016/j.jcp.2006.08.018 +Lei Bao,A mass and momentum flux-form high-order discontinuous Galerkin shallow water model on the cubed-sphere.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#BaoNT14,https://doi.org/10.1016/j.jcp.2013.11.033 +Fei Song 0003,A combined finite element and oversampling multiscale Petrov-Galerkin method for the multiscale elliptic problems with singularities.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#SongDW16,https://doi.org/10.1016/j.jcp.2015.11.013 +X. Liu,Extension of Kleiser and Schumann's influence-matrix method for generalized velocity boundary conditions.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#Liu11,https://doi.org/10.1016/j.jcp.2011.07.016 +Jiang Wan,A probabilistic graphical model based stochastic input model construction.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#WanZ14,https://doi.org/10.1016/j.jcp.2014.05.002 +J. Benoit,Source identification in time domain electromagnetics.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#BenoitCB12,https://doi.org/10.1016/j.jcp.2012.01.020 +Tarek I. Zohdi,Computational modeling of electrically-driven deposition of ionized polydisperse particulate powder mixtures in advanced manufacturing processes.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#Zohdi17,https://doi.org/10.1016/j.jcp.2017.03.044 +George Ilhwan Park,Numerical aspects and implementation of a two-layer zonal wall model for LES of compressible turbulent flows on unstructured meshes.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#ParkM16,https://doi.org/10.1016/j.jcp.2015.11.010 +Jean-Antoine Désidéri,Nested and self-adaptive Bézier parameterizations for shape optimization.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#DesideriMJ07,https://doi.org/10.1016/j.jcp.2006.12.016 +Nathan D. King,Solving variational problems and partial differential equations that map between manifolds via the closest point method.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#KingR17,https://doi.org/10.1016/j.jcp.2017.02.019 +Xiaomin Pan,Efficient monolithic projection method for time-dependent conjugate heat transfer problems.,2018,369,J. Comput. Physics,,db/journals/jcphy/jcphy369.html#PanLC18,https://doi.org/10.1016/j.jcp.2018.05.010 +Xuliang Liu,A new class of central compact schemes with spectral-like resolution I: Linear schemes.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#LiuZZS13,https://doi.org/10.1016/j.jcp.2013.04.014 +Jeffrey W. Banks,A stable FSI algorithm for light rigid bodies in compressible flow.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#BanksHS13,https://doi.org/10.1016/j.jcp.2013.02.050 +Brendan B. Godfrey,Suppressing the numerical Cherenkov instability in FDTD PIC codes.,2014,267,J. Comput. Physics,,db/journals/jcphy/jcphy267.html#GodfreyV14,https://doi.org/10.1016/j.jcp.2014.02.022 +Yanlai Chen,An adaptive high-order discontinuous Galerkin method with error control for the Hamilton-Jacobi equations. Part I: The one-dimensional steady state case.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#ChenC07,https://doi.org/10.1016/j.jcp.2007.05.003 +Taehun Lee,A lattice Boltzmann algorithm for calculation of the laminar jet diffusion flame.,2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#LeeLC06,https://doi.org/10.1016/j.jcp.2005.10.021 +Vitaliy Gyrya,The arbitrary order mimetic finite difference method for a diffusion equation with a non-symmetric diffusion tensor.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#GyryaL17,https://doi.org/10.1016/j.jcp.2017.07.019 +Hadi Hajibeygi,Iterative multiscale finite-volume method.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#HajibeygiBHJ08,https://doi.org/10.1016/j.jcp.2008.06.013 +David Stevens,The use of PDE centres in the local RBF Hermitian method for 3D convective-diffusion problems.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#StevensPLM09,https://doi.org/10.1016/j.jcp.2009.03.025 +Weizhu Bao,A uniformly accurate multiscale time integrator spectral method for the Klein-Gordon-Zakharov system in the high-plasma-frequency limit regime.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#BaoZ16,https://doi.org/10.1016/j.jcp.2016.09.046 +Hayder Salman,A time-splitting pseudospectral method for the solution of the Gross-Pitaevskii equations using spherical harmonics with generalised-Laguerre basis functions.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#Salman14,https://doi.org/10.1016/j.jcp.2013.10.009 +V. V. Altsybeyev,Application of Gauss's law space-charge limited emission model in iterative particle tracking method.,2016,324,J. Comput. Physics,,db/journals/jcphy/jcphy324.html#AltsybeyevP16,https://doi.org/10.1016/j.jcp.2016.08.007 +Houde Han,Adaptive artificial boundary condition for the two-level Schrödinger equation with conical crossings.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#HanZ11,https://doi.org/10.1016/j.jcp.2010.11.004 +Narsimha R. Rapaka,An immersed boundary method for direct and large eddy simulation of stratified flows in complex geometry.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#RapakaS16,https://doi.org/10.1016/j.jcp.2016.06.036 +Sungjin Kwon,An efficient three-dimensional adaptive quasicontinuum method using variable-node elements.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#KwonLPSLI09,https://doi.org/10.1016/j.jcp.2009.03.028 +V. P. Kolgan,Application of the principle of minimizing the derivative to the construction of finite-difference schemes for computing discontinuous solutions of gas dynamics.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#Kolgan11,https://doi.org/10.1016/j.jcp.2010.12.033 +T. Sakai,An application of one-sided Jacobi polynomials for spectral modeling of vector fields in polar coordinates.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#SakaiR09,https://doi.org/10.1016/j.jcp.2009.06.017 +Lianhua Zhu,Performance evaluation of the general characteristics based off-lattice Boltzmann scheme and DUGKS for low speed continuum flows.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#ZhuWG17,https://doi.org/10.1016/j.jcp.2016.11.051 +Zhiqiang Sheng,An improved monotone finite volume scheme for diffusion equation on polygonal meshes.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#ShengY12,https://doi.org/10.1016/j.jcp.2012.01.015 +Steven M. Kast,Output-based mesh adaptation for high order Navier-Stokes simulations on deformable domains.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#KastF13,https://doi.org/10.1016/j.jcp.2013.06.007 +Omer San,A coarse-grid projection method for accelerating incompressible flow computations.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#SanS13,https://doi.org/10.1016/j.jcp.2012.09.005 +Jianping Xiao,RBF-vortex methods for the barotropic vorticity equation on a sphere.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#XiaoWB15,https://doi.org/10.1016/j.jcp.2015.01.005 +Zhi-Feng Liu,Finite analytic numerical method for two-dimensional fluid flow in heterogeneous porous media.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#LiuW13,https://doi.org/10.1016/j.jcp.2012.11.001 +Kevin C. Viner,A steady-state solver and stability calculator for nonlinear internal wave flows.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#VinerED13,https://doi.org/10.1016/j.jcp.2013.02.007 +Jacques Blum,Reconstruction of the equilibrium of the plasma in a Tokamak and identification of the current density profile in real time.,2012,231,J. Comput. Physics,3,db/journals/jcphy/jcphy231.html#BlumBF12,https://doi.org/10.1016/j.jcp.2011.04.005 +Piotr Boronski,Spectral method for matching exterior and interior elliptic problems.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#Boronski07,https://doi.org/10.1016/j.jcp.2006.12.005 +Jean-Luc Guermond,A splitting method for incompressible flows with variable density based on a pressure Poisson equation.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#GuermondS09,https://doi.org/10.1016/j.jcp.2008.12.036 +Graeme Fairweather,Compact optimal quadratic spline collocation methods for the Helmholtz equation.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#FairweatherKM11,https://doi.org/10.1016/j.jcp.2010.12.041 +Emilie Blanc,Biot-JKD model: Simulation of 1D transient poroelastic waves with fractional derivatives.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#BlancCL13,https://doi.org/10.1016/j.jcp.2012.12.003 +Kun Xu 0001,A unified gas-kinetic scheme for continuum and rarefied flows.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#XuH10,https://doi.org/10.1016/j.jcp.2010.06.032 +X. Zheng,An eigen-based high-order expansion basis for structured spectral elements.,2011,230,J. Comput. Physics,23,db/journals/jcphy/jcphy230.html#ZhengD11,https://doi.org/10.1016/j.jcp.2011.08.009 +Sudarshan Tiwari,A particle-particle hybrid method for kinetic and continuum equations.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#TiwariKH09,https://doi.org/10.1016/j.jcp.2009.06.019 +Huangxin Chen,A robust multilevel method for hybridizable discontinuous Galerkin method for the Helmholtz equation.,2014,264,J. Comput. Physics,,db/journals/jcphy/jcphy264.html#ChenLX14,https://doi.org/10.1016/j.jcp.2014.01.042 +Abbas Khayyer,Comparative study on accuracy and conservation properties of two particle regularization schemes and proposal of an optimized particle shifting scheme in ISPH context.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#KhayyerGS17,https://doi.org/10.1016/j.jcp.2016.12.005 +Victor E. Ambrus,Lattice Boltzmann models based on half-range Gauss-Hermite quadratures.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#AmbrusS16,https://doi.org/10.1016/j.jcp.2016.04.010 +Igor Semenikhin,Application of the iterative approach to modal methods for the solution of Maxwell's equations.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#SemenikhinZ15,https://doi.org/10.1016/j.jcp.2015.07.052 +Isabelle Ramière,A general fictitious domain method with immersed jumps and multilevel nested structured meshes.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#RamiereAB07,https://doi.org/10.1016/j.jcp.2007.01.026 +V. Ya. Rudyak,Stochastic algorithm for simulating gas transport coefficients.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#RudyakL18,https://doi.org/10.1016/j.jcp.2017.11.001 +Karel Matous,A review of predictive nonlinear theories for multiscale modeling of heterogeneous materials.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#MatousGKG17,https://doi.org/10.1016/j.jcp.2016.10.070 +Vincent Moureau,An efficient semi-implicit compressible solver for large-eddy simulations.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#MoureauBP07,https://doi.org/10.1016/j.jcp.2007.05.035 +Lina Chang,An efficient and accurate reconstruction algorithm for the formulation of cell-centered diffusion schemes.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#ChangY12,https://doi.org/10.1016/j.jcp.2012.06.019 +Wenjun Kou,A fully resolved active musculo-mechanical model for esophageal transport.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#KouBGPKP15,https://doi.org/10.1016/j.jcp.2015.05.049 +Ngoc Cuong Nguyen,An implicit high-order hybridizable discontinuous Galerkin method for nonlinear convection-diffusion equations.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#NguyenPC09a,https://doi.org/10.1016/j.jcp.2009.08.030 +Hua Shen,A characteristic space-time conservation element and solution element method for conservation laws II. Multidimensional extension.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#ShenW16,https://doi.org/10.1016/j.jcp.2015.11.017 +Francesco Bassi,Optimal Runge-Kutta smoothers for the p-multigrid discontinuous Galerkin solution of the 1D Euler equations.,2011,230,J. Comput. Physics,11,db/journals/jcphy/jcphy230.html#BassiGR11,https://doi.org/10.1016/j.jcp.2010.04.030 +Artur Tyliszczak,A high-order compact difference algorithm for half-staggered grids for laminar and turbulent incompressible flows.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#Tyliszczak14,https://doi.org/10.1016/j.jcp.2014.07.043 +John A. Turner,The Virtual Environment for Reactor Applications (VERA): Design and architecture☆.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#TurnerCSBCPSS16,https://doi.org/10.1016/j.jcp.2016.09.003 +C. Yuan,Conditional quadrature method of moments for kinetic equations.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#YuanF11,https://doi.org/10.1016/j.jcp.2011.07.020 +Arthur Stück,An adjoint view on flux consistency and strong wall boundary conditions to the Navier-Stokes equations.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#Stuck15,https://doi.org/10.1016/j.jcp.2015.08.022 +Harald Ziegelwanger,The PAC-MAN model: Benchmark case for linear acoustics in computational physics.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#ZiegelwangerR17,https://doi.org/10.1016/j.jcp.2017.06.018 +S. Jaisankar,A central Rankine-Hugoniot solver for hyperbolic conservation laws.,2009,228,J. Comput. Physics,3,db/journals/jcphy/jcphy228.html#JaisankarR09,https://doi.org/10.1016/j.jcp.2008.10.002 +Nicholas P. Waterson,Design principles for bounded higher-order convection schemes - a unified approach.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#WatersonD07,https://doi.org/10.1016/j.jcp.2007.01.021 +Sandra Pieraccini,Microscopically implicit-macroscopically explicit schemes for the BGK equation.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#PieracciniP12,https://doi.org/10.1016/j.jcp.2011.08.027 +Petar Liovic,Multi-physics treatment in the vicinity of arbitrarily deformable gas-liquid interfaces.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#LiovicL07,https://doi.org/10.1016/j.jcp.2006.07.030 +Eleuterio F. Toro,MUSTA fluxes for systems of conservation laws.,2006,216,J. Comput. Physics,2,db/journals/jcphy/jcphy216.html#ToroT06a,https://doi.org/10.1016/j.jcp.2005.12.012 +Guofei Pang,Discovering variable fractional orders of advection-dispersion equations from field data using multi-fidelity Bayesian optimization.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#PangPCK17,https://doi.org/10.1016/j.jcp.2017.07.052 +Bin Wang,Functionally-fitted energy-preserving integrators for Poisson systems.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#WangW18,https://doi.org/10.1016/j.jcp.2018.03.015 +Vianey Villamizar,Generation of curvilinear coordinates on multiply connected regions with boundary singularities.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#VillamizarRM07,https://doi.org/10.1016/j.jcp.2006.09.028 +Reza Ghias,A sharp interface immersed boundary method for compressible viscous flows.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#GhiasMD07,https://doi.org/10.1016/j.jcp.2006.12.007 +M. Rieke,Coupled Vlasov and two-fluid codes on GPUs.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#RiekeTG15,https://doi.org/10.1016/j.jcp.2014.12.016 +Frederick Ira Moxley III,A G-FDTD scheme for solving multi-dimensional open dissipative Gross-Pitaevskii equations.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#MoxleyBMYD15,https://doi.org/10.1016/j.jcp.2014.11.021 +Pao-Hsiung Chiu,A conservative phase field method for solving incompressible two-phase flows.,2011,230,J. Comput. Physics,1,db/journals/jcphy/jcphy230.html#ChiuL11,https://doi.org/10.1016/j.jcp.2010.09.021 +Fabien Petitpas,A relaxation-projection method for compressible flows. Part II: Artificial heat exchanges for multiphase shocks.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#PetitpasFSM07,https://doi.org/10.1016/j.jcp.2007.03.014 +Sebastian Weitz,Monte Carlo efficiency improvement by multiple sampling of conditioned integration variables.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#WeitzBCDHEFFG16,https://doi.org/10.1016/j.jcp.2016.08.036 +Shravan K. Veerapaneni,A boundary integral method for simulating the dynamics of inextensible vesicles suspended in a viscous fluid in 2D.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#VeerapaneniGZB09,https://doi.org/10.1016/j.jcp.2008.11.036 +Adem Kaya,Finite difference approximations of multidimensional convection-diffusion-reaction problems with small diffusion on a special grid.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#KayaS15,https://doi.org/10.1016/j.jcp.2015.08.007 +Kazem Hejranfar,Implementation of a high-order compact finite-difference lattice Boltzmann method in generalized curvilinear coordinates.,2014,267,J. Comput. Physics,,db/journals/jcphy/jcphy267.html#HejranfarE14,https://doi.org/10.1016/j.jcp.2014.02.030 +Trung Bao Le,Fluid-structure interaction of an aortic heart valve prosthesis driven by an animated anatomic left ventricle.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#LeS13,https://doi.org/10.1016/j.jcp.2012.08.036 +Liyong Zhu,A variational phase field method for curve smoothing.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#ZhuWJW10,https://doi.org/10.1016/j.jcp.2009.11.040 +Marcus J. Grote,Time-dependent wave splitting and source separation.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#GroteKNA17,https://doi.org/10.1016/j.jcp.2016.10.021 +Haifei Liu,Lattice Boltzmann method for the age concentration equation in shallow water.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#LiuDWZ15,https://doi.org/10.1016/j.jcp.2015.07.022 +Nipun Kwatra,A method for avoiding the acoustic time step restriction in compressible flow.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#KwatraSGF09,https://doi.org/10.1016/j.jcp.2009.02.027 +H. Q. Yang,A high-order CFD method using successive differentiation.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#YangCPD15,https://doi.org/10.1016/j.jcp.2014.10.046 +Duan Z. Zhang,Material point method enhanced by modified gradient of shape function.,2011,230,J. Comput. Physics,16,db/journals/jcphy/jcphy230.html#ZhangMG11,https://doi.org/10.1016/j.jcp.2011.04.032 +Li Guo,Positivity preserving high-order local discontinuous Galerkin method for parabolic equations with blow-up solutions.,2015,289,J. Comput. Physics,,db/journals/jcphy/jcphy289.html#GuoY15,https://doi.org/10.1016/j.jcp.2015.02.041 +M. Meldi,An adaptive numerical method for solving EDQNM equations for the analysis of long-time decay of isotropic turbulence.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#MeldiS14,https://doi.org/10.1016/j.jcp.2014.01.002 +M. A. Gallis,Convergence behavior of a new DSMC algorithm.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#GallisTRB09,https://doi.org/10.1016/j.jcp.2009.03.021 +Qian Zhang,Immersed finite elements for optimal control problems of elliptic PDEs with interfaces.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#ZhangILZ15,https://doi.org/10.1016/j.jcp.2015.05.050 +G. Puigt,Discretisation of diffusive fluxes on hybrid grids.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#PuigtAM10,https://doi.org/10.1016/j.jcp.2009.10.037 +Po-Wen Hsieh,Two new upwind difference schemes for a coupled system of convection-diffusion equations arising from the steady MHD duct flow problems.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#HsiehY10,https://doi.org/10.1016/j.jcp.2010.08.034 +Saumik Dana,A multiscale fixed stress split iterative scheme for coupled flow and poromechanics in deep subsurface reservoirs.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#DanaGW18,https://doi.org/10.1016/j.jcp.2017.09.049 +Yu Wang,An improved multiphase lattice Boltzmann flux solver for three-dimensional flows with large density ratio and high Reynolds number.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#Wang0Y15,https://doi.org/10.1016/j.jcp.2015.08.049 +Antoine Lejay,Computing the principal eigenelements of some linear operators using a branching Monte Carlo method.,2008,227,J. Comput. Physics,23,db/journals/jcphy/jcphy227.html#LejayM08,https://doi.org/10.1016/j.jcp.2008.07.018 +Lee Shunn,Verification of variable-density flow solvers using manufactured solutions.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#ShunnHM12,https://doi.org/10.1016/j.jcp.2012.01.027 +Xiaoliang Wan,A dynamic-solver-consistent minimum action method: With an application to 2D Navier-Stokes equations.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#WanY17,https://doi.org/10.1016/j.jcp.2016.11.019 +T. Song,The shifted boundary method for hyperbolic systems: Embedded domain computations of linear waves and shallow water flows.,2018,369,J. Comput. Physics,,db/journals/jcphy/jcphy369.html#SongMSR18,https://doi.org/10.1016/j.jcp.2018.04.052 +Changying Liu,Arbitrarily high-order time-stepping schemes based on the operator spectrum theory for high-dimensional nonlinear Klein-Gordon equations.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#LiuW17b,https://doi.org/10.1016/j.jcp.2017.03.038 +L. J. Zheng,AEGIS-K code for linear kinetic analysis of toroidally axisymmetric plasma stability.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#ZhengKD10,https://doi.org/10.1016/j.jcp.2010.01.017 +Kristian Sandberg,The EPS method: A new method for constructing pseudospectral derivative operators.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#SandbergW11,https://doi.org/10.1016/j.jcp.2011.03.058 +Lorenzo Codecasa,Constitutive equations for discrete electromagnetic problems over polyhedral grids.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#CodecasaT07,https://doi.org/10.1016/j.jcp.2007.02.032 +Luca Bonaventura,Multilayer shallow water models with locally variable number of layers and semi-implicit time discretization.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#BonaventuraFGN18,https://doi.org/10.1016/j.jcp.2018.03.017 +Stefan Langer,Agglomeration multigrid methods with implicit Runge-Kutta smoothers applied to aerodynamic simulations on unstructured grids.,2014,277,J. Comput. Physics,,db/journals/jcphy/jcphy277.html#Langer14,https://doi.org/10.1016/j.jcp.2014.07.050 +Thomas E. Booth,An alternative Monte Carlo approach to the thermal radiative transfer problem.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#Booth11,https://doi.org/10.1016/j.jcp.2010.11.018 +Thomas J. Hardin,Fast finite element calculation of effective conductivity of random continuum microstructures: The recursive Poincaré-Steklov operator method.,2017,342,J. Comput. Physics,,db/journals/jcphy/jcphy342.html#HardinS17,https://doi.org/10.1016/j.jcp.2017.04.021 +Qiaolin He,A least-squares/fictitious domain method for incompressible viscous flow around obstacles with Navier slip boundary condition.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#HeGW18,https://doi.org/10.1016/j.jcp.2018.04.013 +Sebastian Liska,A parallel fast multipole method for elliptic difference equations.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#LiskaC14,https://doi.org/10.1016/j.jcp.2014.07.048 +Barbara Kaltenbacher,A modified and stable version of a perfectly matched layer technique for the 3-d second order wave equation in time domain with an application to aeroacoustics.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#KaltenbacherKS13,https://doi.org/10.1016/j.jcp.2012.10.016 +Benjamin Krank,A high-order semi-explicit discontinuous Galerkin solver for 3D incompressible flow with application to DNS and LES of turbulent channel flow.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#KrankFWK17,https://doi.org/10.1016/j.jcp.2017.07.039 +S. V. Petropavlovsky,A method of boundary equations for unsteady hyperbolic problems in 3D.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#PetropavlovskyT18,https://doi.org/10.1016/j.jcp.2018.03.039 +Katherine Bhan,Condensed history Monte Carlo methods for photon transport problems.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#BhanS07,https://doi.org/10.1016/j.jcp.2007.02.012 +Dongbin Xiu,Parametric uncertainty analysis of pulse wave propagation in a model of a human arterial network.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#XiuS07,https://doi.org/10.1016/j.jcp.2007.05.020 +Feng Bao,Hierarchical optimization for neutron scattering problems.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#BaoABD16,https://doi.org/10.1016/j.jcp.2016.03.017 +Anton Daitche,Advection of inertial particles in the presence of the history force: Higher order numerical schemes.,2013,254,J. Comput. Physics,,db/journals/jcphy/jcphy254.html#Daitche13,https://doi.org/10.1016/j.jcp.2013.07.024 +J. Tryoen,Intrusive Galerkin methods with upwinding for uncertain nonlinear hyperbolic systems.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#TryoenMNE10,https://doi.org/10.1016/j.jcp.2010.05.007 +Peicheng Yu,Enabling Lorentz boosted frame particle-in-cell simulations of laser wakefield acceleration in quasi-3D geometry.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#YuXDTDLMATDFVFL16,https://doi.org/10.1016/j.jcp.2016.04.014 +Donghyun You,A high-order Padé ADI method for unsteady convection-diffusion equations.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#You06,https://doi.org/10.1016/j.jcp.2005.10.001 +Walter Boscheri,High order cell-centered Lagrangian-type finite volume schemes with time-accurate local time stepping on unstructured triangular meshes.,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#BoscheriDZ15,https://doi.org/10.1016/j.jcp.2015.02.052 +Takemi Shigeta,Adaptive multilayer method of fundamental solutions using a weighted greedy QR decomposition for the Laplace equation.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#ShigetaYL12,https://doi.org/10.1016/j.jcp.2012.05.036 +M. Capuano,Simulations of viscous and compressible gas-gas flows using high-order finite difference schemes.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#CapuanoBS18,https://doi.org/10.1016/j.jcp.2018.01.047 +Gaddiel Ouaknin,Functional level-set derivative for a polymer self consistent field theory Hamiltonian.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#OuakninLBDFG17,https://doi.org/10.1016/j.jcp.2017.05.037 +Philippe Traoré,A robust and efficient finite volume scheme for the discretization of diffusive flux on extremely skewed meshes in complex geometries.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#TraoreAL09,https://doi.org/10.1016/j.jcp.2009.04.007 +Chieh-Sen Huang,An Eulerian-Lagrangian WENO finite volume scheme for advection problems.,2012,231,J. Comput. Physics,11,db/journals/jcphy/jcphy231.html#HuangAQ12,https://doi.org/10.1016/j.jcp.2012.01.030 +Kausik Chatterjee,A new Green's function Monte Carlo algorithm for the solution of the two-dimensional nonlinear Poisson-Boltzmann equation: Application to the modeling of the communication breakdown problem in space vehicles during re-entry.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#ChatterjeeRS14,https://doi.org/10.1016/j.jcp.2014.07.042 +Mustafa A. Mohamad,A probabilistic decomposition-synthesis method for the quantification of rare events due to internal instabilities.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#MohamadCS16,https://doi.org/10.1016/j.jcp.2016.06.047 +Romain Nguyen van yen,Wavelet-based density estimation for noise reduction in plasma simulations using particles.,2010,229,J. Comput. Physics,8,db/journals/jcphy/jcphy229.html#yendSFC10,https://doi.org/10.1016/j.jcp.2009.12.010 +Dimitri Krattiger,Generalized Bloch mode synthesis for accelerated calculation of elastic band structures.,2018,357,J. Comput. Physics,,db/journals/jcphy/jcphy357.html#KrattigerH18,https://doi.org/10.1016/j.jcp.2017.12.016 +Roberto de la Cruz,Coarse-graining and hybrid methods for efficient simulation of stochastic multi-scale models of tumour growth.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#CruzGCA17,https://doi.org/10.1016/j.jcp.2017.09.019 +M. R. Booty,A hybrid numerical method for interfacial fluid flow with soluble surfactant.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#BootyS10,https://doi.org/10.1016/j.jcp.2010.01.032 +Volker Gravemeier,Scale-separating operators for variational multiscale large eddy simulation of turbulent flows.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#Gravemeier06a,https://doi.org/10.1016/j.jcp.2005.07.007 +Daniel J. Magee,Accelerating solutions of one-dimensional unsteady PDEs with GPU-based swept time-space decomposition.,2018,357,J. Comput. Physics,,db/journals/jcphy/jcphy357.html#MageeN18,https://doi.org/10.1016/j.jcp.2017.12.028 +V. M. Kamenkovich,On the time-splitting scheme used in the Princeton Ocean Model.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#KamenkovichN09,https://doi.org/10.1016/j.jcp.2008.12.033 +Nicolas Legrand,A multi-grid framework for the extraction of large-scale vortices in Large-Eddy Simulation.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#LegrandLM17,https://doi.org/10.1016/j.jcp.2017.08.030 +Dongfang Li,Efficient implementation to numerically solve the nonlinear time fractional parabolic problems on unbounded spatial domain.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#LiZ16,https://doi.org/10.1016/j.jcp.2016.06.046 +Oishik Sen,Evaluation of multifidelity surrogate modeling techniques to construct closure laws for drag in shock-particle interactions.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#SenGCJU18,https://doi.org/10.1016/j.jcp.2018.05.039 +Zhengyong Ren,A hybrid boundary element-finite element approach to modeling plane wave 3D electromagnetic induction responses in the Earth.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#RenKGM14,https://doi.org/10.1016/j.jcp.2013.11.004 +Raúl Pagán Muñoz,Hybrid Fourier pseudospectral/discontinuous Galerkin time-domain method for wave propagation.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#MunozH17,https://doi.org/10.1016/j.jcp.2017.07.046 +Ralf Hartmann,Adjoint-based error estimation and adaptive mesh refinement for the RANS and k-χ9* turbulence model equations.,2011,230,J. Comput. Physics,11,db/journals/jcphy/jcphy230.html#HartmannHL11,https://doi.org/10.1016/j.jcp.2010.10.026 +Savino Longo,A Monte Carlo model for seeded atomic flows in the transition regime.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#LongoD09,https://doi.org/10.1016/j.jcp.2009.02.016 +A. W. Vreman,Stabilization of the Eulerian model for incompressible multiphase flow by artificial diffusion.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#Vreman11,https://doi.org/10.1016/j.jcp.2010.11.025 +Matthew T. Bettencourt,Flux limiting embedded boundary technique for electromagnetic FDTD.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#Bettencourt08,https://doi.org/10.1016/j.jcp.2007.11.043 +Mingrong Cui,Compact finite difference method for the fractional diffusion equation.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#Cui09,https://doi.org/10.1016/j.jcp.2009.07.021 +Guoyi Ke,New preconditioning techniques for the steady and unsteady buoyancy driven flow problems.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#KeA18,https://doi.org/10.1016/j.jcp.2018.05.037 +Lunji Song,Superconvergence property of an over-penalized discontinuous Galerkin finite element gradient recovery method.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#SongZ15,https://doi.org/10.1016/j.jcp.2015.07.036 +Mohammad Poursina,Long-range force and moment calculations in multiresolution simulations of molecular systems.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#PoursinaA12,https://doi.org/10.1016/j.jcp.2012.06.041 +Yuying Yan,A lattice Boltzmann method for incompressible two-phase flows on partial wetting surface with large density ratio.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#YanZ07,https://doi.org/10.1016/j.jcp.2007.08.010 +Mike E. Potter,An FDTD scheme on a face-centered-cubic (FCC) grid for the solution of the wave equation.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#PotterLN11,https://doi.org/10.1016/j.jcp.2011.04.027 +José E. Adsuara,On the equivalence between the Scheduled Relaxation Jacobi method and Richardson's non-stationary method.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#AdsuaraCCMA17,https://doi.org/10.1016/j.jcp.2016.12.020 +Jinghua Wang,A hybrid model for simulating rogue waves in random seas on a large temporal and spatial scale.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#WangMY16,https://doi.org/10.1016/j.jcp.2016.02.044 +Xiangyu Hu 0002,A constant-density approach for incompressible multi-phase SPH.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#HuA09,https://doi.org/10.1016/j.jcp.2008.11.027 +Jens Berg,Duality based boundary conditions and dual consistent finite difference discretizations of the Navier-Stokes and Euler equations.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#BergN14,https://doi.org/10.1016/j.jcp.2013.11.031 +Boris Bonev,Discontinuous Galerkin scheme for the spherical shallow water equations with applications to tsunami modeling and prediction.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#BonevHGK18,https://doi.org/10.1016/j.jcp.2018.02.008 +M. Davoudabadi,On accuracy and performance of high-order finite volume methods in local mean energy model of non-thermal plasmas.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#DavoudabadiSM09,https://doi.org/10.1016/j.jcp.2008.12.015 +R. Moulla,Pseudo-spectral methods for the spatial symplectic reduction of open systems of conservation laws.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#MoullaLM12,https://doi.org/10.1016/j.jcp.2011.10.008 +Heng Xiao,A consistent dual-mesh framework for hybrid LES/RANS modeling.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#XiaoJ12,https://doi.org/10.1016/j.jcp.2011.11.009 +Almut Gassmann,Inspection of hexagonal and triangular C-grid discretizations of the shallow water equations.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#Gassmann11,https://doi.org/10.1016/j.jcp.2011.01.014 +Ryan G. McClarren,Semi-implicit time integration for PN thermal radiative transfer.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#McClarrenELD08,https://doi.org/10.1016/j.jcp.2008.04.029 +Matthew F. Causley,Incorporating the Havriliak-Negami dielectric model in the FD-TD method.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#CausleyPJ11,https://doi.org/10.1016/j.jcp.2011.02.012 +Jun Zhu,A new fifth order finite difference WENO scheme for solving hyperbolic conservation laws.,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#ZhuQ16,https://doi.org/10.1016/j.jcp.2016.05.010 +Ivan Fumagalli,On a free-surface problem with moving contact line: From variational principles to stable numerical approximations.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#FumagalliPV18,https://doi.org/10.1016/j.jcp.2017.11.004 +N. Birgle,A domain decomposition method to couple nonisothermal compositional gas liquid Darcy and free gas flows.,2018,368,J. Comput. Physics,,db/journals/jcphy/jcphy368.html#BirgleMT18,https://doi.org/10.1016/j.jcp.2018.04.035 +Haihu Liu,Lattice Boltzmann phase-field modeling of thermocapillary flows in a confined microchannel.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#LiuVZK14,https://doi.org/10.1016/j.jcp.2013.08.054 +Etienne Ahusborde,A primal formulation for the Helmholtz decomposition.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#AhusbordeAC07,https://doi.org/10.1016/j.jcp.2007.04.002 +Songming Hou,A weak formulation for solving elliptic interface problems without body fitted grid.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#HouSWZ13,https://doi.org/10.1016/j.jcp.2013.04.025 +Zhiping Mao,Efficient spectral-Galerkin methods for fractional partial differential equations with variable coefficients.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#MaoS16,https://doi.org/10.1016/j.jcp.2015.11.047 +Paul Reiter,Multi-domain boundary element method for axi-symmetric layered linear acoustic systems.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#ReiterZ17,https://doi.org/10.1016/j.jcp.2017.08.062 +Poorya A. Ferdowsi,Second-order accurate normals from height functions.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#FerdowsiB08,https://doi.org/10.1016/j.jcp.2008.07.014 +Florin Bobaru,A peridynamic formulation for transient heat conduction in bodies with evolving discontinuities.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#BobaruD12,https://doi.org/10.1016/j.jcp.2011.12.017 +Sigrid Leyendecker,Variational collision integrator for polymer chains.,2012,231,J. Comput. Physics,10,db/journals/jcphy/jcphy231.html#LeyendeckerHK12,https://doi.org/10.1016/j.jcp.2012.01.017 +Siddhartha Verma,An improved bounded semi-Lagrangian scheme for the turbulent transport of passive scalars.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#VermaXB14,https://doi.org/10.1016/j.jcp.2014.03.062 +Karsten Schwarz,Efficient kinetic Monte Carlo method for reaction-diffusion problems with spatially varying annihilation rates.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#SchwarzR13,https://doi.org/10.1016/j.jcp.2012.11.036 +Dong Wang 0008,An efficient iterative thresholding method for image segmentation.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#WangLWW17,https://doi.org/10.1016/j.jcp.2017.08.020 +Katherine J. Evans,Enhanced algorithm efficiency for phase change convection using a multigrid preconditioner with a SIMPLE smoother.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#EvansKP07,https://doi.org/10.1016/j.jcp.2006.09.003 +Hiroshi Kato,A data assimilation methodology for reconstructing turbulent flows around aircraft.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#KatoYUO15,https://doi.org/10.1016/j.jcp.2014.12.013 +Wouter Tierens,An unconditionally stable time-domain discretization on cartesian meshes for the simulation of nonuniform magnetized cold plasma.,2012,231,J. Comput. Physics,15,db/journals/jcphy/jcphy231.html#TierensZ12,https://doi.org/10.1016/j.jcp.2012.04.028 +Florian Müller 0007,Solver-based vs. grid-based multilevel Monte Carlo for two phase flow and transport in random heterogeneous porous media.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#MullerMJ14,https://doi.org/10.1016/j.jcp.2014.02.047 +Magnus Redeker,A fast and accurate adaptive solution strategy for two-scale models with continuous inter-scale dependencies.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#RedekerE13,https://doi.org/10.1016/j.jcp.2012.12.025 +Guang-hua Gao,Three-point combined compact difference schemes for time-fractional advection-diffusion equations with smooth solutions.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#GaoS15a,https://doi.org/10.1016/j.jcp.2015.05.052 +Jiaxiang Cai,"Local structure-preserving algorithms for the ""good"" Boussinesq equation.",2013,239,J. Comput. Physics,,db/journals/jcphy/jcphy239.html#CaiW13,https://doi.org/10.1016/j.jcp.2013.01.009 +S. Jaisankar,Diffusion regulation for Euler solvers.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#JaisankarR07,https://doi.org/10.1016/j.jcp.2006.06.030 +Eleuterio F. Toro,A novel numerical flux for the 3D Euler equations with general equation of state.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#ToroCL15,https://doi.org/10.1016/j.jcp.2015.09.037 +Michael Dumbser,Finite volume schemes of very high order of accuracy for stiff hyperbolic balance laws.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#DumbserET08,https://doi.org/10.1016/j.jcp.2007.12.005 +Shengfeng Zhu,Variational piecewise constant level set methods for shape optimization of a two-density drum.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#ZhuWL10,https://doi.org/10.1016/j.jcp.2010.03.026 +Zhiqiang Sheng,The finite volume scheme preserving extremum principle for diffusion equations on polygonal meshes.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#ShengY11,https://doi.org/10.1016/j.jcp.2010.12.037 +Sergio Pirozzoli,Stabilized non-dissipative approximations of Euler equations in generalized curvilinear coordinates.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#Pirozzoli11,https://doi.org/10.1016/j.jcp.2011.01.001 +Naoufel Ben Abdallah,Multiscale simulation of transport in an open quantum system: Resonances and WKB interpolation.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#AbdallahP06,https://doi.org/10.1016/j.jcp.2005.08.012 +Eduardo Godoy,A Dirichlet-to-Neumann finite element method for axisymmetric elastostatics in a semi-infinite domain.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#GodoyBD17,https://doi.org/10.1016/j.jcp.2016.09.066 +Decheng Wan,Fictitious boundary and moving mesh methods for the numerical simulation of rigid particulate flows.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#WanT07,https://doi.org/10.1016/j.jcp.2006.06.002 +Charles M. Elliott,Modeling and computation of two phase geometric biomembranes using surface finite elements.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#ElliottS10,https://doi.org/10.1016/j.jcp.2010.05.014 +Dongling Wang,A linearly implicit conservative difference scheme for the space fractional coupled nonlinear Schrödinger equations.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#WangXY14,https://doi.org/10.1016/j.jcp.2014.04.047 +Haran Jackson,A fast numerical scheme for the Godunov-Peshkov-Romenski model of continuum mechanics.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#Jackson17a,https://doi.org/10.1016/j.jcp.2017.07.055 +Dimitris A. Goussis,An efficient iterative algorithm for the approximation of the fast and slow dynamics of stiff systems.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#GoussisV06,https://doi.org/10.1016/j.jcp.2005.09.019 +Guangtao Duan,A contoured continuum surface force model for particle methods.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#DuanKC15,https://doi.org/10.1016/j.jcp.2015.06.004 +Benedict J. Leimkuhler,On the numerical treatment of dissipative particle dynamics and related systems.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#LeimkuhlerS15,https://doi.org/10.1016/j.jcp.2014.09.008 +X. Blanc,Variance reduction method for particle transport equation in spherical geometry.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#BlancBKS18,https://doi.org/10.1016/j.jcp.2018.02.015 +Alfredo Canelas,A new method for inverse electromagnetic casting problems based on the topological derivative.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#CanelasNR11,https://doi.org/10.1016/j.jcp.2011.01.049 +Christiaan C. Stolk,A rapidly converging domain decomposition method for the Helmholtz equation.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#Stolk13,https://doi.org/10.1016/j.jcp.2013.01.039 +Lukas Osterloh,Regularized inversion of microphysical atmospheric particle parameters: Theory and application.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#OsterlohBNN13,https://doi.org/10.1016/j.jcp.2012.11.040 +Yongning Zhu,A second-order virtual node algorithm for nearly incompressible linear elasticity in irregular domains.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#ZhuWHCST12,https://doi.org/10.1016/j.jcp.2012.05.015 +B. Yildirim,A hybrid spectral/DG method for solving the phase-averaged ocean wave equation: Algorithm and validation.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#YildirimK12,https://doi.org/10.1016/j.jcp.2012.04.013 +Sung-Hwan Yoon,Multi-dimensional limiting process for three-dimensional flow physics analyses.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#YoonKK08,https://doi.org/10.1016/j.jcp.2008.02.012 +Zecheng Gan,Comparison of efficient techniques for the simulation of dielectric objects in electrolytes.,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#GanWBXL15,https://doi.org/10.1016/j.jcp.2015.03.019 +Reza Madankan,Computation of probabilistic hazard maps and source parameter estimation for volcanic ash transport and dispersion.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#MadankanPSBDJPPPSW14,https://doi.org/10.1016/j.jcp.2013.11.032 +Mohamed Zerroukat,A simple mass conserving semi-Lagrangian scheme for transport problems.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#Zerroukat10,https://doi.org/10.1016/j.jcp.2010.08.017 +Christiane Helzel,Multiscale simulations for suspensions of rod-like molecules.,2006,216,J. Comput. Physics,1,db/journals/jcphy/jcphy216.html#HelzelO06,https://doi.org/10.1016/j.jcp.2005.11.028 +Dong Liang,The efficient S-DDM scheme and its analysis for solving parabolic equations.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#LiangD14,https://doi.org/10.1016/j.jcp.2014.04.015 +Tuomas Airaksinen,A damping preconditioner for time-harmonic wave equations in fluid and elastic material.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#AiraksinenPT09,https://doi.org/10.1016/j.jcp.2008.10.036 +Mohsen Asle Zaeem,Finite element method for conserved phase fields: Stress-mediated diffusional phase transformation.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#ZaeemM10,https://doi.org/10.1016/j.jcp.2010.08.027 +Dinshaw S. Balsara,Divergence-free MHD on unstructured meshes using high order finite volume schemes based on multidimensional Riemann solvers.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#BalsaraD15a,https://doi.org/10.1016/j.jcp.2015.07.012 +Zhen Li 0003,A dissipative particle dynamics method for arbitrarily complex geometries.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#LiBTK18,https://doi.org/10.1016/j.jcp.2017.11.014 +Gaetano D'Avino,A numerical method for simulating concentrated rigid particle suspensions in an elongational flow using a fixed grid.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#DAvinoMHP07,https://doi.org/10.1016/j.jcp.2007.04.027 +Minseok Choi,A convergence study for SPDEs using combined Polynomial Chaos and Dynamically-Orthogonal schemes.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#ChoiSK13,https://doi.org/10.1016/j.jcp.2013.02.047 +Yao-Hsin Hwang,Macroscopic model and truncation error of discrete Boltzmann method.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#Hwang16,https://doi.org/10.1016/j.jcp.2016.06.033 +Silas Alben,Regularizing a vortex sheet near a separation point.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#Alben10,https://doi.org/10.1016/j.jcp.2010.03.044 +Bijan Goshayeshi,DSMC simulation of hypersonic flows using an improved SBT-TAS technique.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#GoshayeshiRS15,https://doi.org/10.1016/j.jcp.2015.09.027 +Fabien Casenave,Coupled BEM-FEM for the convected Helmholtz equation with non-uniform flow in a bounded domain.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#CasenaveES14,https://doi.org/10.1016/j.jcp.2013.10.016 +Shen Wang,Acoustic inverse scattering via Helmholtz operator factorization and optimization.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#WangHX10,https://doi.org/10.1016/j.jcp.2010.07.027 +Jian-Yu Lin,Simulation of compressible two-phase flows with topology change of fluid-fluid interface by a robust cut-cell method.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#LinSDLL17,https://doi.org/10.1016/j.jcp.2016.10.023 +Gregor Gassner,Polymorphic nodal elements and their application in discontinuous Galerkin methods.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#GassnerLMH09,https://doi.org/10.1016/j.jcp.2008.11.012 +Xiang Chen,An improved 2D MoF method by using high order derivatives.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#ChenZ17,https://doi.org/10.1016/j.jcp.2017.08.031 +Mark A. Taylor,A compatible and conservative spectral element method on unstructured grids.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#TaylorF10,https://doi.org/10.1016/j.jcp.2010.04.008 +David J. Torres,KIVA-4: An unstructured ALE code for compressible gas flow with sprays.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#TorresT06,https://doi.org/10.1016/j.jcp.2006.07.006 +Joseph Papac,A level set approach for diffusion and Stefan-type problems with Robin boundary conditions on quadtree/octree adaptive Cartesian grids.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#PapacHRG13,https://doi.org/10.1016/j.jcp.2012.08.038 +Ruifeng Yuan,An immersed-boundary method based on the gas kinetic BGK scheme for incompressible viscous flow.,2015,296,J. Comput. Physics,,db/journals/jcphy/jcphy296.html#YuanZZ15,https://doi.org/10.1016/j.jcp.2015.04.052 +Jiun-Der Yu,Two-phase viscoelastic jetting.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#YuSS07,https://doi.org/10.1016/j.jcp.2006.05.020 +Peiyao Luo,Monolithic multigrid method for the coupled Stokes flow and deformable porous medium system.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#LuoRGO18,https://doi.org/10.1016/j.jcp.2017.09.062 +Xin Wen,High order numerical methods to a type of delta function integrals.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#Wen07,https://doi.org/10.1016/j.jcp.2007.06.025 +Shanon M. Reckinger,Adaptive wavelet collocation method on the shallow water model.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#ReckingerVF14,https://doi.org/10.1016/j.jcp.2014.03.043 +Qian Wang,Compact high order finite volume method on unstructured grids III: Variational reconstruction.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#WangRPL17,https://doi.org/10.1016/j.jcp.2017.02.031 +Boris N. Khoromskij,Tensor decomposition in electronic structure calculations on 3D Cartesian grids.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#KhoromskijKCF09,https://doi.org/10.1016/j.jcp.2009.04.043 +Kevin Schmidmayer,A model and numerical method for compressible flows with capillary effects.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#SchmidmayerPDFG17,https://doi.org/10.1016/j.jcp.2017.01.001 +Gang-Joon Yoon,Comparison of eigenvalue ratios in artificial boundary perturbation and Jacobi preconditioning for solving Poisson equation.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#YoonM17,https://doi.org/10.1016/j.jcp.2017.08.013 +David M. Haughton,Evaluation of eigenfunctions from compound matrix variables in non-linear elasticity - II. Sixth order systems.,2008,227,J. Comput. Physics,20,db/journals/jcphy/jcphy227.html#Haughton08a,https://doi.org/10.1016/j.jcp.2008.07.003 +Rick Archibald,Discontinuity detection in multivariate space for stochastic simulations.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#ArchibaldGSX09,https://doi.org/10.1016/j.jcp.2009.01.001 +Bin Wang,A Filon-type asymptotic approach to solving highly oscillatory second-order initial value problems.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#WangLW13,https://doi.org/10.1016/j.jcp.2013.03.009 +Liang Li 0001,A hybridizable discontinuous Galerkin method combined to a Schwarz algorithm for the solution of 3d time-harmonic Maxwell's equation.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#LiLP14,https://doi.org/10.1016/j.jcp.2013.09.003 +M. M. Basko,An efficient cell-centered diffusion scheme for quadrilateral grids.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#BaskoMT09,https://doi.org/10.1016/j.jcp.2008.11.031 +Xiu Yang,Adaptive ANOVA decomposition of stochastic incompressible and compressible flows.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#YangCLK12,https://doi.org/10.1016/j.jcp.2011.10.028 +Ji Peng,On polynomial chaos expansion via gradient-enhanced and#8467*1-minimization.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#PengHD16,https://doi.org/10.1016/j.jcp.2015.12.049 +Mantulal Basumatary,Defect correction based velocity reconstruction for physically consistent simulations of non-Newtonian flows on unstructured grids.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#BasumataryNM14,https://doi.org/10.1016/j.jcp.2014.04.033 +Hanhui Jin,A novel energy conversion based method for velocity correction in molecular dynamics simulations.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#JinLKF17,https://doi.org/10.1016/j.jcp.2017.02.028 +Aditya K. Pandare,A robust and efficient finite volume method for compressible inviscid and viscous two-phase flows.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#PandareL18,https://doi.org/10.1016/j.jcp.2018.05.018 +Shuying Zhai,An unconditionally stable compact ADI method for three-dimensional time-fractional convection-diffusion equation.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#ZhaiFH14,https://doi.org/10.1016/j.jcp.2014.03.020 +Marco Latini,Effects of WENO flux reconstruction order and spatial resolution on reshocked two-dimensional Richtmyer-Meshkov instability.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#LatiniSD07,https://doi.org/10.1016/j.jcp.2006.06.051 +An Liang,Constructing spectral schemes of the immersed interface method via a global description of discontinuous functions.,2008,227,J. Comput. Physics,18,db/journals/jcphy/jcphy227.html#LiangJS08,https://doi.org/10.1016/j.jcp.2008.05.020 +Qibing Li,A high-order gas-kinetic Navier-Stokes flow solver.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#LiXF10,https://doi.org/10.1016/j.jcp.2010.05.019 +Xing Shi,A LBM-DLM/FD method for 3D fluid-structure interactions.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#ShiL07a,https://doi.org/10.1016/j.jcp.2007.06.031 +Paul J. Turinsky,Modeling and simulation challenges pursued by the Consortium for Advanced Simulation of Light Water Reactors (CASL).,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#TurinskyK16,https://doi.org/10.1016/j.jcp.2016.02.043 +Heydar Qasimov,Lacunae based stabilization of PMLs.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#QasimovT08,https://doi.org/10.1016/j.jcp.2008.04.018 +Marc D. Ryser,On the well-posedness of the stochastic Allen-Cahn equation in two dimensions.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#RyserNT12,https://doi.org/10.1016/j.jcp.2011.12.002 +Bangti Jin,Boundary knot method based on geodesic distance for anisotropic problems.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#JinC06,https://doi.org/10.1016/j.jcp.2005.11.032 +Matania Ben-Artzi,A direct Eulerian GRP scheme for compressible fluid flows.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#Ben-ArtziLW06,https://doi.org/10.1016/j.jcp.2006.01.044 +Joris Degroote,On the similarity between Dirichlet-Neumann with interface artificial compressibility and Robin-Neumann schemes for the solution of fluid-structure interaction problems.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#Degroote11,https://doi.org/10.1016/j.jcp.2011.05.012 +Chenfanfu Jiang,An angular momentum conserving affine-particle-in-cell method.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#JiangST17,https://doi.org/10.1016/j.jcp.2017.02.050 +Anca Belme,Time accurate anisotropic goal-oriented mesh adaptation for unsteady flows.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#BelmeDA12,https://doi.org/10.1016/j.jcp.2012.05.003 +Curtis Lee,A narrow-band gradient-augmented level set method for multiphase incompressible flow.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#LeeDM14,https://doi.org/10.1016/j.jcp.2014.04.055 +Abdul Majid,Application of Sobolev gradient method to Poisson-Boltzmann system.,2010,229,J. Comput. Physics,16,db/journals/jcphy/jcphy229.html#MajidS10,https://doi.org/10.1016/j.jcp.2010.04.017 +Diego Rossinelli,GPU accelerated simulations of bluff body flows using vortex particle methods.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#RossinelliBCK10,https://doi.org/10.1016/j.jcp.2010.01.004 +Leonardo Zepeda-Núñez,The method of polarized traces for the 2D Helmholtz equation.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#Zepeda-NunezD16,https://doi.org/10.1016/j.jcp.2015.11.040 +Jichun Li,A weak Galerkin least-squares finite element method for div-curl systems.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#LiYZ18,https://doi.org/10.1016/j.jcp.2018.02.036 +Kazufumi Ito,A well-conditioned augmented system for solving Navier-Stokes equations in irregular domains.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#ItoLL09,https://doi.org/10.1016/j.jcp.2008.12.028 +Xiangxiong Zhang,Positivity-preserving high order discontinuous Galerkin schemes for compressible Euler equations with source terms.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#ZhangS11,https://doi.org/10.1016/j.jcp.2010.10.036 +Wenrui Hao,A homotopy method based on WENO schemes for solving steady state problems of hyperbolic conservation laws.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#HaoHSSXZ13,https://doi.org/10.1016/j.jcp.2013.05.008 +Paul J. Atzberger,A stochastic immersed boundary method for fluid-structure dynamics at microscopic length scales.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#AtzbergerKP07,https://doi.org/10.1016/j.jcp.2006.11.015 +Matthew K. Borg,A multiscale method for micro/nano flows of high aspect ratio.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#BorgLR13,https://doi.org/10.1016/j.jcp.2012.09.009 +Vadim Lisitsa,Combination of the discontinuous Galerkin method with finite differences for simulation of seismic wave propagation.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#LisitsaTB16,https://doi.org/10.1016/j.jcp.2016.02.005 +Praveen Chandrashekar,Discontinuous Galerkin method for Navier-Stokes equations using kinetic flux vector splitting.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#Chandrashekar13,https://doi.org/10.1016/j.jcp.2012.09.017 +Wenwu Chen,Parallel implementation of efficient preconditioned linear solver for grid-based applications in chemical physics. I: Block Jacobi diagonalization.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#ChenP06,https://doi.org/10.1016/j.jcp.2006.04.012 +Wei Leng,Finite element three-dimensional Stokes ice sheet dynamics model with enhanced local mass conservation.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#LengJXCG14,https://doi.org/10.1016/j.jcp.2014.06.014 +S. Hardt,Evaporation model for interfacial flows based on a continuum-field representation of the source terms.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#HardtW08,https://doi.org/10.1016/j.jcp.2008.02.020 +Xiaocheng Guo,The HLLD Riemann solver based on magnetic field decomposition method for the numerical simulation of magneto-hydrodynamics.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#GuoFW16,https://doi.org/10.1016/j.jcp.2016.09.057 +Andrew Yeckel,An approximate block Newton method for coupled iterations of nonlinear solvers: Theory and conjugate heat transfer applications.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#YeckelLD09,https://doi.org/10.1016/j.jcp.2009.08.003 +Michael J. Chen,Accurate methods for computing inviscid and viscous Kelvin-Helmholtz instability.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#ChenF11,https://doi.org/10.1016/j.jcp.2010.11.017 +Haibiao Zheng,A finite element variational multiscale method for incompressible flows based on two local gauss integrations.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#ZhengHSS09,https://doi.org/10.1016/j.jcp.2009.05.006 +Seongwon Kang,On a robust ALE method with discrete primary and secondary conservation.,2013,254,J. Comput. Physics,,db/journals/jcphy/jcphy254.html#KangPH13,https://doi.org/10.1016/j.jcp.2013.07.012 +Guang-hua Gao,A compact finite difference scheme for the fractional sub-diffusion equations.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#GaoS11,https://doi.org/10.1016/j.jcp.2010.10.007 +Jun Zhu,A new third order finite volume weighted essentially non-oscillatory scheme on tetrahedral meshes.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#ZhuQ17,https://doi.org/10.1016/j.jcp.2017.08.021 +Frédéric Alauzet,3D transient fixed point mesh adaptation for time-dependent problems: Application to CFD simulations.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#AlauzetFGM07,https://doi.org/10.1016/j.jcp.2006.08.012 +Hrvoje Gotovac,Maximum entropy algorithm with inexact upper entropy bound based on Fup basis functions with compact support.,2009,228,J. Comput. Physics,24,db/journals/jcphy/jcphy228.html#GotovacG09,https://doi.org/10.1016/j.jcp.2009.09.011 +Scott A. Norris,Simulating the kinematics of completely faceted surfaces.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#NorrisW12,https://doi.org/10.1016/j.jcp.2012.02.030 +F. Xavier Trias,Symmetry-preserving discretization of Navier-Stokes equations on collocated unstructured grids.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#TriasLOPV14,https://doi.org/10.1016/j.jcp.2013.10.031 +Min Gao,A gradient stable scheme for a phase field model for the moving contact line problem.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#GaoW12,https://doi.org/10.1016/j.jcp.2011.10.015 +Y. C. Zhou,A matched interface and boundary method for solving multi-flow Navier-Stokes equations with applications to geodynamics.,2012,231,J. Comput. Physics,1,db/journals/jcphy/jcphy231.html#ZhouLH12,https://doi.org/10.1016/j.jcp.2011.09.010 +Thomas Toulorge,Optimal Runge-Kutta schemes for discontinuous Galerkin space discretizations applied to wave propagation problems.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#ToulorgeD12,https://doi.org/10.1016/j.jcp.2011.11.024 +Gwénaël Gabard,Discontinuous Galerkin methods with plane waves for time-harmonic problems.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#Gabard07,https://doi.org/10.1016/j.jcp.2007.02.030 +Yongliang Feng,A three dimensional lattice model for thermal compressible flow on standard lattices.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#FengST15,https://doi.org/10.1016/j.jcp.2015.09.011 +Nan-Jing Wu,Orthogonal grid generation of an irregular region using a local polynomial collocation method.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#WuTYC13,https://doi.org/10.1016/j.jcp.2013.01.005 +Maxime Barrault,Multilevel domain decomposition for electronic structure calculations.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#BarraultCHB07,https://doi.org/10.1016/j.jcp.2006.06.049 +James Bremer,A fast direct solver for the integral equations of scattering theory on planar curves with corners.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#Bremer12,https://doi.org/10.1016/j.jcp.2011.11.015 +Hemant Kamath,A roe-average algorithm for a granular-gas model with non-conservative terms.,2009,228,J. Comput. Physics,21,db/journals/jcphy/jcphy228.html#KamathD09,https://doi.org/10.1016/j.jcp.2009.08.005 +Zhipeng Qin,Topology preserving advection of implicit interfaces on Cartesian grids.,2015,290,J. Comput. Physics,,db/journals/jcphy/jcphy290.html#QinDRB15,https://doi.org/10.1016/j.jcp.2015.02.029 +Yinhao Zhu,Bayesian deep convolutional encoder-decoder networks for surrogate modeling and uncertainty quantification.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#ZhuZ18,https://doi.org/10.1016/j.jcp.2018.04.018 +Jan Nordström,A stable and conservative high order multi-block method for the compressible Navier-Stokes equations.,2009,228,J. Comput. Physics,24,db/journals/jcphy/jcphy228.html#NordstromGWS09,https://doi.org/10.1016/j.jcp.2009.09.005 +A. Bardazzi,Generalized HPC method for the Poisson equation.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#BardazziLAGF15,https://doi.org/10.1016/j.jcp.2015.07.026 +Anthony Beaudoin,Adapting particle methods to model the dynamics of concentration gradients and chemical reactivity under advective diffusive transport conditions.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#BeaudoinHD18,https://doi.org/10.1016/j.jcp.2017.10.037 +Aravind Alwan,Improved statistical models for limited datasets in uncertainty quantification using stochastic collocation.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#AlwanA13,https://doi.org/10.1016/j.jcp.2013.08.024 +T. Y. Hou,Multiscale modeling of incompressible turbulent flows.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#HouHH13,https://doi.org/10.1016/j.jcp.2012.08.029 +Lennart Schneiders,An efficient conservative cut-cell method for rigid bodies interacting with viscous compressible flows.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#SchneidersGMS16,https://doi.org/10.1016/j.jcp.2016.01.026 +Andrea Bonito,Numerical simulation of 3D viscoelastic flows with free surfaces.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#BonitoPL06,https://doi.org/10.1016/j.jcp.2005.11.013 +Yoshimichi Nakamura,Link molecule method for quantum mechanical/molecular mechanical hybrid simulations.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#NakamuraTOUO07,https://doi.org/10.1016/j.jcp.2007.03.001 +Gordan R. Stuhne,A robust unstructured grid discretization for 3-dimensional hydrostatic flows in spherical geometry: A new numerical structure for ocean general circulation modeling.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#StuhneP06,https://doi.org/10.1016/j.jcp.2005.08.031 +Weidong Li 0004,An implicit block LU-SGS finite-volume lattice-Boltzmann scheme for steady flows on arbitrary unstructured meshes.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#LiL16,https://doi.org/10.1016/j.jcp.2016.09.038 +Alexander Kurganov,New adaptive artificial viscosity method for hyperbolic systems of conservation laws.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#KurganovL12,https://doi.org/10.1016/j.jcp.2012.07.040 +Pierre-Alexandre Gourdain,High-resolution magnetohydrodynamic equilibrium code for unity beta plasmas.,2006,216,J. Comput. Physics,1,db/journals/jcphy/jcphy216.html#GourdainLN06,https://doi.org/10.1016/j.jcp.2005.12.005 +Eleuterio F. Toro,Derivative Riemann solvers for systems of conservation laws and ADER methods.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#ToroT06,https://doi.org/10.1016/j.jcp.2005.06.018 +Jianhua Zhang,A transpose-free quasi-minimal residual variant of the CORS method for solving non-Hermitian linear systems.,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#ZhangD15,https://doi.org/10.1016/j.jcp.2015.03.013 +Yoshiaki Abe,On the freestream preservation of high-order conservative flux-reconstruction schemes.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#AbeHNF15,https://doi.org/10.1016/j.jcp.2014.10.011 +C. Mehlmann,A finite element multigrid-framework to solve the sea ice momentum equation.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#MehlmannR17,https://doi.org/10.1016/j.jcp.2017.08.004 +Georg May,An improved gas-kinetic BGK finite-volume method for three-dimensional transonic flow.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#MaySJ07,https://doi.org/10.1016/j.jcp.2006.05.027 +Murilo F. Tomé,A finite difference technique for solving a time strain separable K-BKZ constitutive equation for two-dimensional moving free surface flows.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#TomeBOACPV16,https://doi.org/10.1016/j.jcp.2016.01.032 +Dmitry V. Kotov,Computational challenges for simulations related to the NASA electric arc shock tube (EAST) experiments.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#KotovYPPW14,https://doi.org/10.1016/j.jcp.2014.03.021 +Victor Bayona,Optimal constant shape parameter for multiquadric based RBF-FD method.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#BayonaMK11,https://doi.org/10.1016/j.jcp.2011.06.005 +C. M. Mast,Mitigating kinematic locking in the material point method.,2012,231,J. Comput. Physics,16,db/journals/jcphy/jcphy231.html#MastMAMS12,https://doi.org/10.1016/j.jcp.2012.04.032 +Tomohiro Sogabe,Solution of generalized shifted linear systems with complex symmetric matrices.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#SogabeHZF12,https://doi.org/10.1016/j.jcp.2012.04.046 +A. López Ortega,Numerical simulation of elastic-plastic solid mechanics using an Eulerian stretch tensor approach and HLLD Riemann solver.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#OrtegaLPM14,https://doi.org/10.1016/j.jcp.2013.10.007 +Markus Weinmüller,Perfect absorption in Schrödinger-like problems using non-equidistant complex grids.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#WeinmullerWRS17,https://doi.org/10.1016/j.jcp.2016.12.029 +Steven Diot,An interface reconstruction method based on analytical formulae for 2D planar and axisymmetric arbitrary convex cells.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#DiotFD14,https://doi.org/10.1016/j.jcp.2014.06.060 +Ehsan Tavakoli,High-order pole-treatment in cylindrical coordinates for incompressible flow simulations with finite-difference collocated schemes.,2015,296,J. Comput. Physics,,db/journals/jcphy/jcphy296.html#TavakoliLH15,https://doi.org/10.1016/j.jcp.2015.04.042 +Aimé Fournier,Exact calculation of Fourier series in nonconforming spectral-element methods.,2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#Fournier06,https://doi.org/10.1016/j.jcp.2005.11.023 +Enrique Domingo Fernández-Nieto,2D granular flows with the and#956*(I) rheology and side walls friction: A well-balanced multilayer discretization.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#Fernandez-Nieto18a,https://doi.org/10.1016/j.jcp.2017.11.038 +M. E. Gruber,A fast Fourier transform accelerated Ewald summation technique for the vector electromagnetic rectangular cavity Green's function.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#GruberKE15,https://doi.org/10.1016/j.jcp.2014.10.012 +S. Adami,A conservative SPH method for surfactant dynamics.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#AdamiHA10,https://doi.org/10.1016/j.jcp.2009.11.015 +Rong Kong,A new proof of geometric convergence for general transport problems based on sequential correlated sampling methods.,2008,227,J. Comput. Physics,23,db/journals/jcphy/jcphy227.html#KongS08,https://doi.org/10.1016/j.jcp.2008.07.016 +Konstantin Lipnikov,A framework for developing a mimetic tensor artificial viscosity for Lagrangian hydrocodes on arbitrary polygonal meshes.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#LipnikovS10,https://doi.org/10.1016/j.jcp.2010.06.045 +Giovanni Russo 0001,The Gaussian wave packet transform: Efficient computation of the semi-classical limit of the Schrödinger equation. Part 1 - Formulation and the one dimensional case.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#RussoS13,https://doi.org/10.1016/j.jcp.2012.08.018 +Eirik Endeve,Bound-preserving discontinuous Galerkin methods for conservative phase space advection in curvilinear coordinates.,2015,287,J. Comput. Physics,,db/journals/jcphy/jcphy287.html#EndeveHXM15,https://doi.org/10.1016/j.jcp.2015.02.005 +Paromita Nath,Sensor placement for calibration of spatially varying model parameters.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#NathHM17,https://doi.org/10.1016/j.jcp.2017.04.033 +Jeff D. Eldredge,Dynamically coupled fluid-body interactions in vorticity-based numerical simulations.,2008,227,J. Comput. Physics,21,db/journals/jcphy/jcphy227.html#Eldredge08,https://doi.org/10.1016/j.jcp.2008.03.033 +Yan Pan,A parallel orbital-updating based plane-wave basis method for electronic structure calculations.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#PanDGGRZ17,https://doi.org/10.1016/j.jcp.2017.07.033 +Wojciech Aniszewski,A new approach to sub-grid surface tension for LES of two-phase flows.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#AniszewskiBMT12,https://doi.org/10.1016/j.jcp.2012.07.016 +Petter A. Berthelsen,A local directional ghost cell approach for incompressible viscous flow problems with irregular boundaries.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#BerthelsenF08,https://doi.org/10.1016/j.jcp.2007.12.022 +Etienne Ahusborde,Mercer's spectral decomposition for the characterization of thermal parameters.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#AhusbordeABB15,https://doi.org/10.1016/j.jcp.2015.03.037 +Phanish Suryanarayana,A mesh-free convex approximation scheme for Kohn-Sham density functional theory.,2011,230,J. Comput. Physics,13,db/journals/jcphy/jcphy230.html#SuryanarayanaBO11,https://doi.org/10.1016/j.jcp.2011.03.018 +Doron Sabo,Fast evaluation of a time-domain non-linear cochlear model on GPUs.,2014,265,J. Comput. Physics,,db/journals/jcphy/jcphy265.html#SaboBWF14,https://doi.org/10.1016/j.jcp.2014.01.044 +Yohei Morinishi,Skew-symmetric convection form and secondary conservative finite difference methods for moving grids.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#MorinishiK14,https://doi.org/10.1016/j.jcp.2013.01.040 +Sadia Arshad,Trapezoidal scheme for time-space fractional diffusion equation with Riesz derivative.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#ArshadHKT17,https://doi.org/10.1016/j.jcp.2017.08.038 +Dhiraj V. Patil,Finite volume TVD formulation of lattice Boltzmann simulation on unstructured mesh.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#PatilL09,https://doi.org/10.1016/j.jcp.2009.04.008 +Keren Yang,Bayesian and variational Bayesian approaches for flows in heterogeneous random media.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#YangGEM17,https://doi.org/10.1016/j.jcp.2017.04.034 +John D. Towers,Two methods for discretizing a delta function supported on a level set.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#Towers07,https://doi.org/10.1016/j.jcp.2006.05.037 +Aditya K. Pandare,A hybrid reconstructed discontinuous Galerkin and continuous Galerkin finite element method for incompressible flows on unstructured grids.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#PandareL16,https://doi.org/10.1016/j.jcp.2016.07.002 +HyeongKae Park,On physics-based preconditioning of the Navier-Stokes equations.,2009,228,J. Comput. Physics,24,db/journals/jcphy/jcphy228.html#ParkNMK09,https://doi.org/10.1016/j.jcp.2009.09.015 +R. R. Hiemstra,High order geometric methods with exact conservation properties.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#HiemstraTHG14,https://doi.org/10.1016/j.jcp.2013.09.027 +Weifeng Zhao,Single-node second-order boundary schemes for the lattice Boltzmann method.,2017,329,J. Comput. Physics,,db/journals/jcphy/jcphy329.html#ZhaoY17,https://doi.org/10.1016/j.jcp.2016.10.049 +Javier Murillo,Weak solutions for partial differential equations with source terms: Application to the shallow water equations.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#MurilloG10,https://doi.org/10.1016/j.jcp.2010.02.016 +Stefan Jebens,Partially implicit peer methods for the compressible Euler equations.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#JebensKW11,https://doi.org/10.1016/j.jcp.2011.03.015 +Timothy M. Schaerf,On contour crossings in contour-advective simulations - part 2 - analysis of crossing errors and methods for their prevention.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#SchaerfM12a,https://doi.org/10.1016/j.jcp.2011.09.013 +Tao Xiong,High order maximum principle preserving semi-Lagrangian finite difference WENO schemes for the Vlasov equation.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#XiongQXC14,https://doi.org/10.1016/j.jcp.2014.05.033 +Bengt Eliasson,Outflow boundary conditions for the Fourier transformed three-dimensional Vlasov-Maxwell system.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#Eliasson07,https://doi.org/10.1016/j.jcp.2007.02.005 +Jan-Frederik Mennemann,Perfectly Matched Layers versus discrete transparent boundary conditions in quantum device simulations.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#MennemannJ14,https://doi.org/10.1016/j.jcp.2014.06.049 +Salvatore Marrone,Fast free-surface detection and level-set function definition in SPH solvers.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#MarroneCTG10,https://doi.org/10.1016/j.jcp.2010.01.019 +Mathias Malandain,Optimization of the deflated Conjugate Gradient algorithm for the solving of elliptic equations on massively parallel machines.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#MalandainMM13,https://doi.org/10.1016/j.jcp.2012.11.046 +Shohiro Sho,A quantum energy transport model for semiconductor device simulation.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#ShoO13,https://doi.org/10.1016/j.jcp.2012.10.051 +Zheming Zheng,A stabilized explicit Lagrange multiplier based domain decomposition method for parabolic problems.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#ZhengSP08,https://doi.org/10.1016/j.jcp.2008.01.057 +Kees Oosterlee,Preface.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#OosterleeKV07,https://doi.org/10.1016/j.jcp.2007.03.019 +Kirill M. Terekhov,Cell-centered nonlinear finite-volume methods for the heterogeneous anisotropic diffusion problem.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#TerekhovMT17,https://doi.org/10.1016/j.jcp.2016.11.010 +Alexandre Chiapolino,Models and methods for two-layer shallow water flows.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#ChiapolinoS18,https://doi.org/10.1016/j.jcp.2018.05.034 +Yuanqing Wu 0002,Speeding up the flash calculations in two-phase compositional flow simulations - The application of sparse grids.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#WuKSS15,https://doi.org/10.1016/j.jcp.2015.01.012 +Artur Palha,A mimetic spectral element solver for the Grad-Shafranov equation.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#PalhaKF16,https://doi.org/10.1016/j.jcp.2016.04.002 +David N. Smithe,Divergence preservation in the ADI algorithms for electromagnetics.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#SmitheCC09,https://doi.org/10.1016/j.jcp.2009.06.025 +Yvan Notay,A massively parallel solver for discrete Poisson-like problems.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#NotayN15,https://doi.org/10.1016/j.jcp.2014.10.043 +Arthur R. Ghigo,Low-Shapiro hydrostatic reconstruction technique for blood flow simulation in large arteries with varying geometrical and mechanical properties.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#GhigoDFL17,https://doi.org/10.1016/j.jcp.2016.11.032 +Pierre Degond,Asymptotic-Preserving methods and multiscale models for plasma physics.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#DegondD17,https://doi.org/10.1016/j.jcp.2017.02.009 +Tor Harald Sandve,An efficient multi-point flux approximation method for Discrete Fracture-Matrix simulations.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#SandveBN12,https://doi.org/10.1016/j.jcp.2012.01.023 +Lucia Parussini,Fictitious Domain approach with hp-finite element approximation for incompressible fluid flow.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#ParussiniP09,https://doi.org/10.1016/j.jcp.2009.02.019 +Khosro Shahbazi,Multi-dimensional hybrid Fourier continuation-WENO solvers for conservation laws.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#ShahbaziHZ13,https://doi.org/10.1016/j.jcp.2013.07.009 +Zlatko Solomenko,A level-set method for large-scale simulations of three-dimensional flows with moving contact lines.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#SolomenkoSA17,https://doi.org/10.1016/j.jcp.2017.07.011 +James S. Strand,Global sensitivity analysis for DSMC simulations of hypersonic shocks.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#StrandG13,https://doi.org/10.1016/j.jcp.2013.03.035 +Wenjun Xie,An axisymmetric multiple-relaxation-time lattice Boltzmann scheme.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#Xie15,https://doi.org/10.1016/j.jcp.2014.10.019 +R. T. Sibatov,Dispersive transport of charge carriers in disordered nanostructured materials.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#SibatovU15,https://doi.org/10.1016/j.jcp.2015.01.022 +Youngsoo Ha,Explicit solutions to a convection-reaction equation and defects of numerical schemes.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#HaK06,https://doi.org/10.1016/j.jcp.2006.07.018 +Elizabeth E. Hart,Compact RBF meshless methods for photonic crystal modelling.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#HartCD11,https://doi.org/10.1016/j.jcp.2011.03.010 +Rajeev K. Jaiman,"Erratum to ""Conservative load transfer along curved fluid-solid interface with non-matching meshes"" [J. Comput. Phys. 218(1) (2006) 372-397].",2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#JaimanJGL07,https://doi.org/10.1016/j.jcp.2006.11.029 +J. Jagalur-Mohan,A Galerkin least squares method for time harmonic Maxwell equations using Nédélec elements.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#Jagalur-MohanFO13,https://doi.org/10.1016/j.jcp.2012.10.003 +Na Zhang,Accurate multiscale finite element method for numerical simulation of two-phase flow in fractured media using discrete-fracture model.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#ZhangYHW13,https://doi.org/10.1016/j.jcp.2012.12.006 +Pavel S. Petrov,Transparent boundary conditions for iterative high-order parabolic equations.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#PetrovE16,https://doi.org/10.1016/j.jcp.2016.02.037 +Bor Plestenjak,Spectral collocation for multiparameter eigenvalue problems arising from separable boundary value problems.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#PlestenjakGH15,https://doi.org/10.1016/j.jcp.2015.06.015 +J. Wu,Implicit velocity correction-based immersed boundary-lattice Boltzmann method and its applications.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#WuS09,https://doi.org/10.1016/j.jcp.2008.11.019 +V. Wheatley,On the role of Riemann solvers in Discontinuous Galerkin methods for magnetohydrodynamics.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#WheatleyKH10,https://doi.org/10.1016/j.jcp.2009.10.003 +Volker Gravemeier,An algebraic variational multiscale-multigrid method for large-eddy simulation of turbulent variable-density flow at low Mach number.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#GravemeierW10,https://doi.org/10.1016/j.jcp.2010.04.036 +Natalie Happenhofer,A low Mach number solver: Enhancing applicability.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#HappenhoferGKLM13,https://doi.org/10.1016/j.jcp.2012.11.002 +Volker John,A variational multiscale method for turbulent flow simulation with adaptive large scale space.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#JohnK10,https://doi.org/10.1016/j.jcp.2009.09.025 +Constance M. Schober,Dispersive properties of multisymplectic integrators.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#SchoberW08,https://doi.org/10.1016/j.jcp.2008.01.026 +D. Yu,A numerical simulation method for dissolution in porous and fractured media.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#YuL10,https://doi.org/10.1016/j.jcp.2010.05.005 +Mykhailo Semkiv,Two-scale model for the effect of physical aging in elastomers filled with hard nanoparticles.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#SemkivAH17,https://doi.org/10.1016/j.jcp.2017.08.058 +Henri Samuel,A level set two-way wave equation approach for Eulerian interface tracking.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#Samuel14,https://doi.org/10.1016/j.jcp.2013.11.027 +Laslo T. Diosady,Preconditioning methods for discontinuous Galerkin solutions of the Navier-Stokes equations.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#DiosadyD09,https://doi.org/10.1016/j.jcp.2009.02.035 +Zheng Chen,Third order maximum-principle-satisfying direct discontinuous Galerkin methods for time dependent convection diffusion equations on unstructured triangular meshes.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#ChenHY16,https://doi.org/10.1016/j.jcp.2015.12.039 +Erkki Heikkola,Controllability method for the Helmholtz equation with higher-order discretizations.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#HeikkolaMPR07,https://doi.org/10.1016/j.jcp.2007.02.003 +Eric J. Parish,A dynamic subgrid scale model for Large Eddy Simulations based on the Mori-Zwanzig formalism.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#ParishD17,https://doi.org/10.1016/j.jcp.2017.07.053 +Yan Yan,Smooth and robust solutions for Dirichlet boundary control of fluid-solid conjugate heat transfer problems.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#YanK15,https://doi.org/10.1016/j.jcp.2014.10.049 +Pengtao Yue,An arbitrary Lagrangian-Eulerian method for simulating bubble growth in polymer foaming.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#YueFBH07,https://doi.org/10.1016/j.jcp.2007.07.007 +I. Yu. Gejadze,Computation of the analysis error covariance in variational data assimilation problems with nonlinear dynamics.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#GejadzeCDS11,https://doi.org/10.1016/j.jcp.2011.03.039 +Jae Wan Ahn,An axisymmetric computational model of generalized hydrodynamic theory for rarefied multi-species gas flows.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#AhnK09,https://doi.org/10.1016/j.jcp.2009.02.026 +Soheil Ghanbarzadeh,A level set method for materials with texturally equilibrated pores.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#GhanbarzadehHP15,https://doi.org/10.1016/j.jcp.2015.05.023 +Peijun Li,Near-field imaging of biperiodic surfaces for elastic waves.,2016,324,J. Comput. Physics,,db/journals/jcphy/jcphy324.html#LiWZ16,https://doi.org/10.1016/j.jcp.2016.07.030 +Jean-Baptiste Chapelier,A spectral-element dynamic model for the Large-Eddy simulation of turbulent flows.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#ChapelierL16,https://doi.org/10.1016/j.jcp.2016.05.051 +Yongbin Ge,A transformation-free HOC scheme and multigrid method for solving the 3D Poisson equation on nonuniform grids.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#GeCZ13,https://doi.org/10.1016/j.jcp.2012.09.034 +Greg Rainwater,A new approach to constructing efficient stiffly accurate EPIRK methods.,2016,323,J. Comput. Physics,,db/journals/jcphy/jcphy323.html#RainwaterT16,https://doi.org/10.1016/j.jcp.2016.07.026 +Guy Baruch,High-order numerical method for the nonlinear Helmholtz equation with material discontinuities in one space dimension.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#BaruchFT07,https://doi.org/10.1016/j.jcp.2007.08.022 +Shingyu Leung,The backward phase flow and FBI-transform-based Eulerian Gaussian beams for the Schrödinger equation.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#LeungQ10,https://doi.org/10.1016/j.jcp.2010.08.015 +Mohsen Zayernouri,Exponentially accurate spectral and spectral element methods for fractional ODEs.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#ZayernouriK14,https://doi.org/10.1016/j.jcp.2013.09.039 +Daniele Cerroni,A projection method for coupling two-phase VOF and fluid structure interaction simulations.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#CerroniVM18,https://doi.org/10.1016/j.jcp.2017.10.055 +Tapan K. Sengupta,A new compact difference scheme for second derivative in non-uniform grid expressed in self-adjoint form.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#SenguptaBS11,https://doi.org/10.1016/j.jcp.2010.11.035 +S. Z. Husain,Implicit spectrally-accurate method for moving boundary problems using immersed boundary conditions concept.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#HusainF08,https://doi.org/10.1016/j.jcp.2008.01.002 +Joao Paulo Gois,Front tracking with moving-least-squares surfaces.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#GoisNNB08,https://doi.org/10.1016/j.jcp.2008.07.013 +J. Benoit,Time-dependent current source identification for numerical simulations of Maxwell's equations.,2015,289,J. Comput. Physics,,db/journals/jcphy/jcphy289.html#BenoitCB15,https://doi.org/10.1016/j.jcp.2015.02.033 +Hafez Asgharzadeh,A Newton-Krylov method with an approximate analytical Jacobian for implicit solution of Navier-Stokes equations on staggered overset-curvilinear grids with immersed boundaries.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#AsgharzadehB17,https://doi.org/10.1016/j.jcp.2016.11.033 +Hong Wang,A high-accuracy preserving spectral Galerkin method for the Dirichlet boundary-value problem of variable-coefficient conservative fractional diffusion equations.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#WangZ15,https://doi.org/10.1016/j.jcp.2014.10.018 +Onur Atak,Coupling of Boundary Element and Wave Based Methods for the efficient solution of complex multiple scattering problems.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#AtakBHPD14,https://doi.org/10.1016/j.jcp.2013.10.034 +Xiaodong Chen,Thickness-based adaptive mesh refinement methods for multi-phase flow simulations with thin regions.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#ChenY14,https://doi.org/10.1016/j.jcp.2014.02.035 +E. G. Evstatiev,Variational formulation of particle algorithms for kinetic plasma simulations.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#EvstatievS13,https://doi.org/10.1016/j.jcp.2013.03.006 +Daniele Cavaglieri,Low-storage implicit/explicit Runge-Kutta schemes for the simulation of stiff high-dimensional ODE systems.,2015,286,J. Comput. Physics,,db/journals/jcphy/jcphy286.html#CavaglieriB15,https://doi.org/10.1016/j.jcp.2015.01.031 +Gregor Gassner,A contribution to the construction of diffusion fluxes for finite volume and discontinuous Galerkin schemes.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#GassnerLM07,https://doi.org/10.1016/j.jcp.2006.11.004 +Tristan Bereau,Optimized convergence for multiple histogram analysis.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#BereauS09,https://doi.org/10.1016/j.jcp.2009.05.011 +Ken Mattsson,Stable and accurate schemes for the compressible Navier-Stokes equations.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#MattssonSS08,https://doi.org/10.1016/j.jcp.2007.10.018 +Daniele A. Di Pietro,An a posteriori-driven adaptive Mixed High-Order method with application to electrostatics.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#PietroS16,https://doi.org/10.1016/j.jcp.2016.08.041 +Samer S. Ezz-Eldien,New quadrature approach based on operational matrix for solving a class of fractional variational problems.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#Ezz-Eldien16,https://doi.org/10.1016/j.jcp.2016.04.045 +Martina Bukac,A partitioned scheme for fluid-composite structure interaction problems.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#BukacCM15,https://doi.org/10.1016/j.jcp.2014.10.045 +Greg Rainwater,A new class of split exponential propagation iterative methods of Runge-Kutta type (sEPIRK) for semilinear systems of ODEs.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#RainwaterT14,https://doi.org/10.1016/j.jcp.2014.03.012 +Hong-Kui Pang,Multigrid method for fractional diffusion equations.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#PangS12,https://doi.org/10.1016/j.jcp.2011.10.005 +Lin Fu,Targeted ENO schemes with tailored resolution property for hyperbolic conservation laws.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#FuHA17a,https://doi.org/10.1016/j.jcp.2017.07.054 +Rémi Abgrall,Stochastic Discrete Equation Method (sDEM) for two-phase flows.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#AbgrallCGR15,https://doi.org/10.1016/j.jcp.2015.06.013 +Ruslan L. Davidchack,Discretization errors in molecular dynamics simulations with deterministic and stochastic thermostats.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#Davidchack10,https://doi.org/10.1016/j.jcp.2010.09.004 +Kelin Xia,Adaptively deformed mesh based interface method for elliptic equations with discontinuous coefficients.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#XiaZWW12,https://doi.org/10.1016/j.jcp.2011.10.026 +Youshan Liu,Higher-order triangular spectral element method with optimized cubature points for seismic wavefield modeling.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#LiuTXB17,https://doi.org/10.1016/j.jcp.2017.01.069 +Xavier Antoine,Robust and efficient preconditioned Krylov spectral solvers for computing the ground states of fast rotating and strongly interacting Bose-Einstein condensates.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#AntoineD14,https://doi.org/10.1016/j.jcp.2013.10.045 +Jan Nordström,Hyperbolic systems of equations posed on erroneous curved domains.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#NordstromN16,https://doi.org/10.1016/j.jcp.2015.12.048 +Mark Petersen,Efficient form of the LANS-α turbulence model in a primitive-equation ocean model.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#PetersenHW08,https://doi.org/10.1016/j.jcp.2008.02.017 +Ming-Jiu Ni,A consistent and conservative scheme for incompressible MHD flows at a low magnetic Reynolds number. Part III: On a staggered mesh.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#NiL12,https://doi.org/10.1016/j.jcp.2011.08.013 +Hélène Hivert,A first-order asymptotic preserving scheme for front propagation in a one-dimensional kinetic reaction-transport equation.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#Hivert18,https://doi.org/10.1016/j.jcp.2018.04.036 +Suchuan Dong,BDF-like methods for nonlinear dynamic analysis.,2010,229,J. Comput. Physics,8,db/journals/jcphy/jcphy229.html#Dong10,https://doi.org/10.1016/j.jcp.2009.12.028 +Yan Liu,A two dimensional nodal Riemann solver based on one dimensional Riemann solver for a cell-centered Lagrangian scheme.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#LiuSTM15,https://doi.org/10.1016/j.jcp.2014.12.031 +U. Rasthofer,An extended algebraic variational multiscale-multigrid-multifractal method (XAVM4) for large-eddy simulation of turbulent two-phase flow.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#RasthoferWG18,https://doi.org/10.1016/j.jcp.2018.01.013 +Shilpa Khatri,An embedded boundary method for soluble surfactants with interface tracking for two-phase flows.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#KhatriT14,https://doi.org/10.1016/j.jcp.2013.09.019 +Hong Wang,An O(N log2N) alternating-direction finite difference method for two-dimensional fractional diffusion equations.,2011,230,J. Comput. Physics,21,db/journals/jcphy/jcphy230.html#WangW11,https://doi.org/10.1016/j.jcp.2011.07.003 +René Hammer,Single-cone real-space finite difference scheme for the time-dependent Dirac equation.,2014,265,J. Comput. Physics,,db/journals/jcphy/jcphy265.html#HammerPA14,https://doi.org/10.1016/j.jcp.2014.01.028 +Vagelis Harmandaris,Path-space variational inference for non-equilibrium coarse-grained systems.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#HarmandarisKKP16,https://doi.org/10.1016/j.jcp.2016.03.021 +Michael O'Neil,An integral equation-based numerical solver for Taylor states in toroidal geometries.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#ONeilC18,https://doi.org/10.1016/j.jcp.2018.01.004 +Javier de Frutos,Projection methods for incompressible flow problems with WENO finite difference schemes.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#FrutosJN16,https://doi.org/10.1016/j.jcp.2015.12.041 +Y. Bazilevs,Isogeometric analysis of Lagrangian hydrodynamics.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#BazilevsABSS13,https://doi.org/10.1016/j.jcp.2013.02.021 +Alejandro M. Aragón,Multi-physics optimization of three-dimensional microvascular polymeric components.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#AragonSKGCW13,https://doi.org/10.1016/j.jcp.2012.07.036 +Andrea Alessandro Ruggiu,On pseudo-spectral time discretizations in summation-by-parts form.,2018,360,J. Comput. Physics,,db/journals/jcphy/jcphy360.html#RuggiuN18,https://doi.org/10.1016/j.jcp.2018.01.043 +Stéphane Dellacherie,The influence of cell geometry on the Godunov scheme applied to the linear wave equation.,2010,229,J. Comput. Physics,14,db/journals/jcphy/jcphy229.html#DellacherieOR10,https://doi.org/10.1016/j.jcp.2010.03.012 +Jing Zhao,A fast nonlinear conjugate gradient based method for 3D concentrated frictional contact problems.,2015,288,J. Comput. Physics,,db/journals/jcphy/jcphy288.html#ZhaoVO15,https://doi.org/10.1016/j.jcp.2015.02.016 +Jean C. Ragusa,Discontinuous finite element solution of the radiation diffusion equation on arbitrary polygonal meshes and locally adapted quadrilateral grids.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#Ragusa15,https://doi.org/10.1016/j.jcp.2014.09.013 +A. C. Raga,A family of functions for mass and energy flux splitting of the Euler equations.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#RagaC09,https://doi.org/10.1016/j.jcp.2009.09.006 +Sonia Fliss,Wave propagation in locally perturbed periodic media (case with absorption): Numerical aspects.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#FlissJ12,https://doi.org/10.1016/j.jcp.2011.10.007 +D. Serson,Velocity-correction schemes for the incompressible Navier-Stokes equations in general coordinate systems.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#SersonMS16,https://doi.org/10.1016/j.jcp.2016.04.026 +Kui Du,A numerical study on the stability of a class of Helmholtz problems.,2015,287,J. Comput. Physics,,db/journals/jcphy/jcphy287.html#DuLS15,https://doi.org/10.1016/j.jcp.2015.02.008 +Maurizio Tavelli,A pressure-based semi-implicit space-time discontinuous Galerkin method on staggered unstructured meshes for the solution of the compressible Navier-Stokes equations at all Mach numbers.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#TavelliD17,https://doi.org/10.1016/j.jcp.2017.03.030 +M. P. Ueckermann,Hybridizable discontinuous Galerkin projection methods for Navier-Stokes and Boussinesq equations.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#UeckermannL16,https://doi.org/10.1016/j.jcp.2015.11.028 +Jeevan Dahal,A numerical method for shock driven multiphase flow with evaporating particles.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#DahalM17,https://doi.org/10.1016/j.jcp.2017.04.074 +Y. Bao,Generalized thick strip modelling for vortex-induced vibration of long flexible cylinders.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#BaoPGS16,https://doi.org/10.1016/j.jcp.2016.05.062 +Jianping Meng,Assessment of the ellipsoidal-statistical Bhatnagar-Gross-Krook model for force-driven Poiseuille flows.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#MengWRZ13,https://doi.org/10.1016/j.jcp.2013.05.045 +Nauman Raza,Approximating time evolution related to Ginzburg-Landau functionals via Sobolev gradient methods in a finite-element setting.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#RazaSS10,https://doi.org/10.1016/j.jcp.2009.10.048 +Alexey Y. Chernyshenko,A hybrid finite volume - finite element method for bulk-surface coupled problems.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#ChernyshenkoOV18,https://doi.org/10.1016/j.jcp.2017.09.064 +James F. Kelly,Continuous and discontinuous Galerkin methods for a scalable three-dimensional nonhydrostatic atmospheric model: Limited-area mode.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#KellyG12,https://doi.org/10.1016/j.jcp.2012.04.042 +Nikolaos A. Gatsonis,A three-dimensional electrostatic particle-in-cell methodology on unstructured Delaunay-Voronoi grids.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#GatsonisS09,https://doi.org/10.1016/j.jcp.2009.02.003 +Natasha Flyer,Enhancing finite differences with radial basis functions: Experiments on the Navier-Stokes equations.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#FlyerBW16,https://doi.org/10.1016/j.jcp.2016.02.078 +Mohammad Shoeybi,An adaptive implicit-explicit scheme for the DNS and LES of compressible flows on unstructured grids.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#ShoeybiSHM10,https://doi.org/10.1016/j.jcp.2010.04.027 +Wei Ren 0003,An asymptotic-preserving Monte Carlo method for the Boltzmann equation.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#RenLJ14,https://doi.org/10.1016/j.jcp.2014.07.029 +Erich Elsen,Large calculation of the flow over a hypersonic vehicle using a GPU.,2008,227,J. Comput. Physics,24,db/journals/jcphy/jcphy227.html#ElsenLD08,https://doi.org/10.1016/j.jcp.2008.08.023 +Hasan çagan özen,A dynamical polynomial chaos approach for long-time evolution of SPDEs.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#OzenB17,https://doi.org/10.1016/j.jcp.2017.04.054 +Saumil Patel,A new splitting scheme to the discrete Boltzmann equation for non-ideal gases on non-uniform meshes.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#PatelL16,https://doi.org/10.1016/j.jcp.2016.09.060 +Tony C. Slaba,Reduced discretization error in HZETRN.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#SlabaBT13,https://doi.org/10.1016/j.jcp.2012.09.042 +Joshua A. Anderson,Massively parallel Monte Carlo for many-particle simulations on GPUs.,2013,254,J. Comput. Physics,,db/journals/jcphy/jcphy254.html#AndersonJGEG13,https://doi.org/10.1016/j.jcp.2013.07.023 +Hong Zhang 0008,Numerical investigations of two-phase flow with dynamic capillary pressure in porous media via a moving mesh method.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#ZhangZ17a,https://doi.org/10.1016/j.jcp.2017.05.041 +Nevsan Sengil,Highly efficient volume generation reservoirs in molecular simulations of gas flows.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#SengilE09,https://doi.org/10.1016/j.jcp.2009.03.016 +Li Wang,Implicit solution of the unsteady Euler equations for high-order accurate discontinuous Galerkin discretizations.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#WangM07,https://doi.org/10.1016/j.jcp.2007.03.002 +Phillip G. Schmitz,A fast nested dissection solver for Cartesian 3D elliptic problems using hierarchical matrices.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#SchmitzY14,https://doi.org/10.1016/j.jcp.2013.10.030 +Balaji Muralidharan,Simulation of moving boundaries interacting with compressible reacting flows using a second-order adaptive Cartesian cut-cell method.,2018,357,J. Comput. Physics,,db/journals/jcphy/jcphy357.html#MuralidharanM18,https://doi.org/10.1016/j.jcp.2017.12.030 +Saul A. Teukolsky,Formulation of discontinuous Galerkin methods for relativistic astrophysics.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#Teukolsky16,https://doi.org/10.1016/j.jcp.2016.02.031 +Mohammad Mirzadeh,Parallel level-set methods on adaptive tree-based grids.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#MirzadehGBG16,https://doi.org/10.1016/j.jcp.2016.06.017 +Hyea Hyun Kim,BDDC and FETI-DP preconditioners with adaptive coarse spaces for three-dimensional elliptic problems with oscillatory and high contrast coefficients.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#KimCW17,https://doi.org/10.1016/j.jcp.2017.08.003 +Lin Fu,A physics-motivated Centroidal Voronoi Particle domain decomposition method.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#FuHA17,https://doi.org/10.1016/j.jcp.2017.01.051 +Luca D'Alessandro,Shape optimization of solid-air porous phononic crystal slabs with widest full 3D bandgap for in-plane acoustic waves.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#DAlessandroBDWA17,https://doi.org/10.1016/j.jcp.2017.05.018 +Yaping Chen,Second-order accurate genuine BGK schemes for the ultra-relativistic flow simulations.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#ChenKT17,https://doi.org/10.1016/j.jcp.2017.08.022 +Assyr Abdulle,A three-scale offline-online numerical method for fluid flow in porous media.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#AbdulleBI17,https://doi.org/10.1016/j.jcp.2017.02.006 +L. F. Ricketson,An entropy based thermalization scheme for hybrid simulations of Coulomb collisions.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#RicketsonRCD14,https://doi.org/10.1016/j.jcp.2014.04.059 +Dzhelil Rufat,The chain collocation method: A spectrally accurate calculus of forms.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#RufatMMD14,https://doi.org/10.1016/j.jcp.2013.08.011 +Ludovic Métivier,Interlocked optimization and fast gradient algorithm for a seismic inverse problem.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#Metivier11,https://doi.org/10.1016/j.jcp.2011.06.019 +M. Meldi,A reduced order model based on Kalman filtering for sequential data assimilation of turbulent flows.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#MeldiP17,https://doi.org/10.1016/j.jcp.2017.06.042 +Luis Cueto-Felgueroso,Adaptive rational spectral methods for the linear stability analysis of nonlinear fourth-order problems.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#Cueto-FelguerosoJ09,https://doi.org/10.1016/j.jcp.2009.05.045 +Hongmei Yan,An efficient high-order boundary element method for nonlinear wave-wave and wave-body interactions.,2011,230,J. Comput. Physics,2,db/journals/jcphy/jcphy230.html#YanL11,https://doi.org/10.1016/j.jcp.2010.09.029 +Kathrin Bäumler,A subspace projection method for the implementation of interface conditions in a single-drop flow problem.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#BaumlerB13,https://doi.org/10.1016/j.jcp.2013.06.024 +Simone Deparis,FaCSI: A block parallel preconditioner for fluid-structure interaction in hemodynamics.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#DeparisFGQ16,https://doi.org/10.1016/j.jcp.2016.10.005 +Evaggelos Kritsikis,Beyond first-order finite element schemes in micromagnetics.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#KritsikisVBAT14,https://doi.org/10.1016/j.jcp.2013.08.035 +Adrian Sescu,Multidimensional optimization of finite difference schemes for Computational Aeroacoustics.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#SescuHA08,https://doi.org/10.1016/j.jcp.2008.01.008 +Elena Celledoni,"Preserving energy resp. dissipation in numerical PDEs using the ""Average Vector Field"" method.",2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#CelledoniGMMOOQ12,https://doi.org/10.1016/j.jcp.2012.06.022 +Kunihiko Toda,Multi-dimensional conservative semi-Lagrangian method of characteristics CIP for the shallow water equations.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#TodaOY09,https://doi.org/10.1016/j.jcp.2009.04.003 +Ianik Plante,Random sampling of the Green's Functions for reversible reactions with an intermediate state.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#PlanteDC13,https://doi.org/10.1016/j.jcp.2013.02.001 +Damien Violeau,Optimal time step for incompressible SPH.,2015,288,J. Comput. Physics,,db/journals/jcphy/jcphy288.html#VioleauL15,https://doi.org/10.1016/j.jcp.2015.02.015 +Paul G. A. Cizmas,Acceleration techniques for reduced-order models based on proper orthogonal decomposition.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#CizmasRBOB08,https://doi.org/10.1016/j.jcp.2008.04.036 +Eugene Vecharynski,A projected preconditioned conjugate gradient algorithm for computing many extreme eigenpairs of a Hermitian matrix.,2015,290,J. Comput. Physics,,db/journals/jcphy/jcphy290.html#VecharynskiYP15,https://doi.org/10.1016/j.jcp.2015.02.030 +Yu-Jia Li,Parallel implementation of the FETI-DPEM algorithm for general 3D EM simulations.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#LiJ09,https://doi.org/10.1016/j.jcp.2009.01.029 +Miaomiao Jin,Multiphysics modeling of two-phase film boiling within porous corrosion deposits.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#JinS16,https://doi.org/10.1016/j.jcp.2016.03.013 +Gregory H. Miller,An iterative boundary potential method for the infinite domain Poisson problem with interior Dirichlet boundaries.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#Miller08,https://doi.org/10.1016/j.jcp.2008.05.005 +Lehel Banjai,Fast convolution quadrature for the wave equation in three dimensions.,2014,279,J. Comput. Physics,,db/journals/jcphy/jcphy279.html#BanjaiK14,https://doi.org/10.1016/j.jcp.2014.08.049 +Zhuyin Ren,Second-order splitting schemes for a class of reactive systems.,2008,227,J. Comput. Physics,17,db/journals/jcphy/jcphy227.html#RenP08,https://doi.org/10.1016/j.jcp.2008.05.019 +Hermann Brunner,Artificial boundary conditions and finite difference approximations for a time-fractional diffusion-wave equation on a two-dimensional unbounded spatial domain.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#BrunnerHY14,https://doi.org/10.1016/j.jcp.2014.07.045 +Daniel M. Tartakovsky,Stochastic analysis of transport in tubes with rough walls.,2006,217,J. Comput. Physics,1,db/journals/jcphy/jcphy217.html#TartakovskyX06,https://doi.org/10.1016/j.jcp.2006.02.029 +Marco Onofri,A compressible magnetohydrodynamic numerical code with time-dependent boundary conditions in cylindrical geometry.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#OnofriPML07,https://doi.org/10.1016/j.jcp.2007.06.015 +Daniel W. Meyer,Consistent inflow and outflow boundary conditions for transported probability density function methods.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#MeyerJ07,https://doi.org/10.1016/j.jcp.2007.06.014 +C. H. Hague,A multiple flux boundary element method applied to the description of surface water waves.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#HagueS09,https://doi.org/10.1016/j.jcp.2009.04.012 +Jaap J. W. van der Vegt,Space-time discontinuous Galerkin method for nonlinear water waves.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#VegtX07,https://doi.org/10.1016/j.jcp.2006.11.031 +J. S. Cagnone,A p-adaptive LCP formulation for the compressible Navier-Stokes equations.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#CagnoneVN13,https://doi.org/10.1016/j.jcp.2012.08.053 +C. Veeramani,A fictitious domain formulation for flows with rigid particles: A non-Lagrange multiplier version.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#VeeramaniMN07,https://doi.org/10.1016/j.jcp.2006.10.028 +Yoonsang Lee,Multiscale numerical methods for passive advection-diffusion in incompressible turbulent flow fields.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#LeeE16,https://doi.org/10.1016/j.jcp.2016.04.046 +Bruno Stupfel,Sufficient uniqueness conditions for the solution of the time harmonic Maxwell's equations associated with surface impedance boundary conditions.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#StupfelP11,https://doi.org/10.1016/j.jcp.2011.02.032 +Hyung Taek Ahn,Adaptive moment-of-fluid method.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#AhnS09,https://doi.org/10.1016/j.jcp.2008.12.031 +Marc Bonnet,Elastic-wave identification of penetrable obstacles using shape-material sensitivity framework.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#BonnetG09,https://doi.org/10.1016/j.jcp.2008.09.009 +Dmitri Kuzmin,Hierarchical slope limiting in explicit and implicit discontinuous Galerkin methods.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#Kuzmin14,https://doi.org/10.1016/j.jcp.2013.04.032 +Hyunwook Park,A pre-conditioned implicit direct forcing based immersed boundary method for incompressible viscous flows.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#ParkPLC16,https://doi.org/10.1016/j.jcp.2016.03.035 +Vladislav Bukshtynov,Optimal reconstruction of material properties in complex multiphysics phenomena.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#BukshtynovP13,https://doi.org/10.1016/j.jcp.2013.02.034 +Slobodan Nickovic,Method for efficient prevention of gravity wave decoupling on rectangular semi-staggered grids.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#NickovicDVJCR11,https://doi.org/10.1016/j.jcp.2010.11.037 +S. M. Joshi,Higher-order multilevel framework for ADER scheme in computational aeroacoustics.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#JoshiC17,https://doi.org/10.1016/j.jcp.2017.02.062 +Amit Katiyar,A peridynamic formulation of pressure driven convective fluid transport in porous media.,2014,261,J. Comput. Physics,,db/journals/jcphy/jcphy261.html#KatiyarFOS14,https://doi.org/10.1016/j.jcp.2013.12.039 +Vinodh Bandaru,A hybrid finite difference-boundary element procedure for the simulation of turbulent MHD duct flow at finite magnetic Reynolds number.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#BandaruBKS16,https://doi.org/10.1016/j.jcp.2015.10.007 +Joseph M. Prusa,Computation at a coordinate singularity.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#Prusa18,https://doi.org/10.1016/j.jcp.2018.01.044 +Jean-Philippe Pons,Maintaining the point correspondence in the level set framework.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#PonsHKF06,https://doi.org/10.1016/j.jcp.2006.05.036 +Ken-ichi Tsubota,Short note on the bending models for a membrane in capsule mechanics: Comparison between continuum and discrete models.,2014,277,J. Comput. Physics,,db/journals/jcphy/jcphy277.html#Tsubota14,https://doi.org/10.1016/j.jcp.2014.08.007 +Lexing Ying,Fast geodesics computation with the phase flow method.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#YingC06,https://doi.org/10.1016/j.jcp.2006.07.032 +Carlo Fazioli,Stable computation of the functional variation of the Dirichlet-Neumann operator.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#FazioliN10,https://doi.org/10.1016/j.jcp.2009.10.021 +Keisuke Sugiura,An extension of Godunov SPH: Application to negative pressure media.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#SugiuraI16,https://doi.org/10.1016/j.jcp.2015.12.030 +Lars Ferm,An adaptive algorithm for simulation of stochastic reaction-diffusion processes.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#FermHL10,https://doi.org/10.1016/j.jcp.2009.09.030 +Yingnan Zhang,A numerical study of the 3-periodic wave solutions to KdV-type equations.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#ZhangHS18,https://doi.org/10.1016/j.jcp.2017.11.027 +Eugenia Kim,The mimetic finite difference method for the Landau-Lifshitz equation.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#KimL17,https://doi.org/10.1016/j.jcp.2016.10.016 +Dmitriy Y. Anistratov,Computational transport methodology based on decomposition of a problem domain into transport and diffusive subdomains.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#AnistratovS12,https://doi.org/10.1016/j.jcp.2012.06.008 +Amit Surana,Vortex dynamics in complex domains on a spherical surface.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#SuranaC08,https://doi.org/10.1016/j.jcp.2008.02.027 +Magnus Ekeberg,Fast pseudolikelihood maximization for direct-coupling analysis of protein structure from many homologous amino-acid sequences.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#EkebergHA14,https://doi.org/10.1016/j.jcp.2014.07.024 +Bokai Yan,A hybrid method with deviational particles for spatial inhomogeneous plasma.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#Yan16,https://doi.org/10.1016/j.jcp.2015.12.050 +Vincent Michaud-Rioux,RESCU: A real space electronic structure method.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#Michaud-RiouxZG16,https://doi.org/10.1016/j.jcp.2015.12.014 +Giovanni Russo 0001,Computation of strained epitaxial growth in three dimensions by kinetic Monte Carlo.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#RussoS06,https://doi.org/10.1016/j.jcp.2005.10.008 +Ji Peng,A weighted l1-minimization approach for sparse polynomial chaos expansions.,2014,267,J. Comput. Physics,,db/journals/jcphy/jcphy267.html#PengHD14,https://doi.org/10.1016/j.jcp.2014.02.024 +Shreyas Bidadi,Quantification of numerical diffusivity due to TVD schemes in the advection equation.,2014,261,J. Comput. Physics,,db/journals/jcphy/jcphy261.html#BidadiR14,https://doi.org/10.1016/j.jcp.2013.12.011 +Aaditya V. Rangan,Numerical methods for solving moment equations in kinetic theory of neuronal network dynamics.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#RanganCT07,https://doi.org/10.1016/j.jcp.2006.06.036 +Matania Ben-Artzi,Hyperbolic conservation laws on the sphere. A geometry-compatible finite volume scheme.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#Ben-ArtziFL09,https://doi.org/10.1016/j.jcp.2009.04.032 +Wei-Fan Hu,Vesicle electrohydrodynamic simulations by coupling immersed boundary and immersed interface method.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#HuLSY16,https://doi.org/10.1016/j.jcp.2016.04.035 +Thomas Heuzé,Lax-Wendroff and TVD finite volume methods for unidimensional thermomechanical numerical simulations of impacts on elastic-plastic solids.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#Heuze17,https://doi.org/10.1016/j.jcp.2017.06.027 +Xiang Chen,An improved 3D MoF method based on analytical partial derivatives.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#ChenZ16,https://doi.org/10.1016/j.jcp.2016.08.051 +Linhai Qiu,An adaptive discretization of compressible flow using a multitude of moving Cartesian grids.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#QiuLF16,https://doi.org/10.1016/j.jcp.2015.10.025 +I. Yucel Akkutlu,Multiscale model reduction for shale gas transport in poroelastic fractured media.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#AkkutluEVW18,https://doi.org/10.1016/j.jcp.2017.10.023 +Teresa S. Bailey,A piecewise linear finite element discretization of the diffusion equation for arbitrary polyhedral grids.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#BaileyAYZ08,https://doi.org/10.1016/j.jcp.2007.11.026 +Nikolaos A. Gatsonis,A smooth dissipative particle dynamics method for domains with arbitrary-geometry solid boundaries.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#GatsonisPY14,https://doi.org/10.1016/j.jcp.2013.08.059 +Yicong Ma,Robust preconditioners for incompressible MHD models.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#MaHHX16,https://doi.org/10.1016/j.jcp.2016.04.019 +Qinzhuo Liao,A two-stage adaptive stochastic collocation method on nested sparse grids for multiphase flow in randomly heterogeneous porous media.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#LiaoZT17,https://doi.org/10.1016/j.jcp.2016.10.061 +Vincenzo Pierro,Stochastic first passage time accelerated with CUDA.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#PierroTMF18,https://doi.org/10.1016/j.jcp.2018.01.039 +Adam M. Oberman,Filtered schemes for Hamilton-Jacobi equations: A simple construction of convergent accurate difference schemes.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#ObermanS15,https://doi.org/10.1016/j.jcp.2014.12.039 +Vilas Shinde,A Galerkin-free model reduction approach for the Navier-Stokes equations.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#ShindeLBHB16,https://doi.org/10.1016/j.jcp.2015.12.051 +Roman Samulyak,Lagrangian particle method for compressible fluid dynamics.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#SamulyakWC18,https://doi.org/10.1016/j.jcp.2018.02.004 +Bohai Zhang,Full scale multi-output Gaussian process emulator with nonseparable auto-covariance functions.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#ZhangKSKL15,https://doi.org/10.1016/j.jcp.2015.08.006 +Moubin Liu,Dissipative particle dynamics simulation of fluid motion through an unsaturated fracture and fracture junction.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#LiuMH07,https://doi.org/10.1016/j.jcp.2006.07.017 +Bo-Wen Lin,High-resolution Roe's scheme and characteristic boundary conditions for solving complex wave reflection phenomena in a tree-like arterial structure.,2014,260,J. Comput. Physics,,db/journals/jcphy/jcphy260.html#LinL14,https://doi.org/10.1016/j.jcp.2013.12.033 +H. Cho,Numerical methods for high-dimensional probability density function equations.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#ChoVK16,https://doi.org/10.1016/j.jcp.2015.10.030 +Andreas Sandvin,Auxiliary variables for 3D multiscale simulations in heterogeneous porous media.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#SandvinKN13,https://doi.org/10.1016/j.jcp.2012.12.016 +K. B. Nakshatrala,Non-negative mixed finite element formulations for a tensorial diffusion equation.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#NakshatralaV09,https://doi.org/10.1016/j.jcp.2009.05.039 +Emilie Marchandise,A stabilized finite element method using a discontinuous level set approach for solving two phase incompressible flows.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#MarchandiseR06,https://doi.org/10.1016/j.jcp.2006.04.015 +Hailiang Liu,A Bloch band based level set method for computing the semiclassical limit of Schrödinger equations.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#LiuW09,https://doi.org/10.1016/j.jcp.2009.01.028 +Kris Van den Abeele,An accuracy and stability study of the 2D spectral volume method.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#AbeeleL07,https://doi.org/10.1016/j.jcp.2007.05.004 +N. O. Braun,Regularization method for large eddy simulations of shock-turbulence interactions.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#BraunPM18,https://doi.org/10.1016/j.jcp.2018.01.052 +Hyun Geun Lee,First and second order operator splitting methods for the phase field crystal equation.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#LeeSL15,https://doi.org/10.1016/j.jcp.2015.06.038 +Xiaolei Yang,A smoothing technique for discrete delta functions with application to immersed boundary method in moving boundary simulations.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#YangZLH09,https://doi.org/10.1016/j.jcp.2009.07.023 +Francisco Rus,Adiabatic perturbations for compactons under dissipation and numerically-induced dissipation.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#RusV09,https://doi.org/10.1016/j.jcp.2009.03.005 +Sebastian Aland,Time integration for diffuse interface models for two-phase flow.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#Aland14,https://doi.org/10.1016/j.jcp.2013.12.055 +Nils Gerhard,Multiwavelet-based grid adaptation with discontinuous Galerkin schemes for shallow water equations.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#GerhardCMK15,https://doi.org/10.1016/j.jcp.2015.08.030 +Jeremiah Birrell,Boltzmann equation solver adapted to emergent chemical non-equilibrium.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#BirrellWR15,https://doi.org/10.1016/j.jcp.2014.10.056 +Wei-Koon Lee,A fast adaptive quadtree scheme for a two-layer shallow water model.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#LeeBT11,https://doi.org/10.1016/j.jcp.2011.03.007 +Satoshi Ii,CIP/multi-moment finite volume method for Euler equations: A semi-Lagrangian characteristic formulation.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#IiX07,https://doi.org/10.1016/j.jcp.2006.08.015 +Moujin Zhang,Solving the MHD equations by the space-time conservation element and solution element method.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#ZhangYLCB06,https://doi.org/10.1016/j.jcp.2005.10.006 +Neil G. Dickson,Importance of explicit vectorization for CPU and GPU software performance.,2011,230,J. Comput. Physics,13,db/journals/jcphy/jcphy230.html#DicksonKH11,https://doi.org/10.1016/j.jcp.2011.03.041 +Andras Pataki,Fast elliptic solvers in cylindrical coordinates and the Coulomb collision operator.,2011,230,J. Comput. Physics,21,db/journals/jcphy/jcphy230.html#PatakiG11,https://doi.org/10.1016/j.jcp.2011.07.005 +Alain Lerat,Vorticity-preserving schemes for the compressible Euler equations.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#LeratFS07,https://doi.org/10.1016/j.jcp.2006.12.025 +M. P. Ueckermann,Numerical schemes for dynamically orthogonal equations of stochastic fluid and ocean flows.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#UeckermannLS13,https://doi.org/10.1016/j.jcp.2012.08.041 +Tobias Kempe,Imposing the free-slip condition with a continuous forcing immersed boundary method.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#KempeLSF15,https://doi.org/10.1016/j.jcp.2014.11.015 +Olivier Larroche,An efficient explicit numerical scheme for diffusion-type equations with a highly inhomogeneous and highly anisotropic diffusion tensor.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#Larroche07,https://doi.org/10.1016/j.jcp.2006.09.016 +Patrick Hassard,An efficient boundary element formulation for doubly-periodic two-dimensional Stokes flow with pressure boundary conditions.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#HassardTFL18,https://doi.org/10.1016/j.jcp.2017.12.010 +Nail A. Gumerov,A method to compute periodic sums.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#GumerovD14,https://doi.org/10.1016/j.jcp.2014.04.039 +Taehun Lee,Lattice Boltzmann simulations of micron-scale drop impact on dry surfaces.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#LeeL10,https://doi.org/10.1016/j.jcp.2010.07.007 +Jaber J. Hasbestan,Binarized-octree generation for Cartesian adaptive mesh refinement around immersed geometries.,2018,368,J. Comput. Physics,,db/journals/jcphy/jcphy368.html#HasbestanS18,https://doi.org/10.1016/j.jcp.2018.04.039 +Yongbo Deng,Topology optimization of unsteady incompressible Navier-Stokes flows.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#DengLZLW11,https://doi.org/10.1016/j.jcp.2011.05.004 +Eric Lamballais,Straightforward high-order numerical dissipation via the viscous term for direct and large eddy simulation.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#LamballaisFL11,https://doi.org/10.1016/j.jcp.2011.01.040 +Girish V. Nivarti,A mesh partitioning algorithm for preserving spatial locality in arbitrary geometries.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#NivartiSB15,https://doi.org/10.1016/j.jcp.2014.10.022 +Christophe Bogey,Finite differences for coarse azimuthal discretization and for reduction of effective resolution near origin of cylindrical flow equations.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#BogeyCB11,https://doi.org/10.1016/j.jcp.2010.10.031 +Catherine Kublik,An implicit interface boundary integral method for Poisson's equation on arbitrary domains.,2013,247,J. Comput. Physics,,db/journals/jcphy/jcphy247.html#KublikTT13,https://doi.org/10.1016/j.jcp.2013.03.049 +ágnes Havasi,On Richardson extrapolation for low-dissipation low-dispersion diagonally implicit Runge-Kutta schemes.,2018,358,J. Comput. Physics,,db/journals/jcphy/jcphy358.html#HavasiK18,https://doi.org/10.1016/j.jcp.2017.12.043 +Colin B. Macdonald,Solving eigenvalue problems on curved surfaces using the Closest Point Method.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#MacdonaldBR11,https://doi.org/10.1016/j.jcp.2011.06.021 +Jae Wan Shim,Parametric lattice Boltzmann method.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#Shim17,https://doi.org/10.1016/j.jcp.2017.02.057 +Benzhuo Lu,New-version-fast-multipole-method accelerated electrostatic calculations in biomolecular systems.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#LuCM07,https://doi.org/10.1016/j.jcp.2007.05.026 +Alexander V. Rodionov,Artificial viscosity in Godunov-type schemes to cure the carbuncle phenomenon.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#Rodionov17,https://doi.org/10.1016/j.jcp.2017.05.024 +Rubén M. Cabezón,A one-parameter family of interpolating kernels for smoothed particle hydrodynamics studies.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#CabezonGR08,https://doi.org/10.1016/j.jcp.2008.06.014 +Selim Esedoglu,Diffusion generated motion using signed distance functions.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#EsedogluRT10,https://doi.org/10.1016/j.jcp.2009.10.002 +T. Blesgen,Approximation of the electron density of Aluminium clusters in tensor-product format.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#BlesgenGK12,https://doi.org/10.1016/j.jcp.2011.12.009 +Stefano Berrone,An optimization approach for large scale simulations of discrete fracture network flows.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#BerronePS14,https://doi.org/10.1016/j.jcp.2013.09.028 +Zhen Luo,Shape and topology optimization for electrothermomechanical microactuators using level set methods.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#LuoTM09,https://doi.org/10.1016/j.jcp.2009.01.010 +Rui Xu,Accuracy and stability in incompressible SPH (ISPH) based on the projection method and a new approach.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#XuSL09,https://doi.org/10.1016/j.jcp.2009.05.032 +Paul Kotyczka,Weak form of Stokes-Dirac structures and geometric discretization of port-Hamiltonian systems.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#KotyczkaML18,https://doi.org/10.1016/j.jcp.2018.02.006 +Pingbing Ming,Numerical methods for multiscale elliptic problems.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#MingY06,https://doi.org/10.1016/j.jcp.2005.09.024 +Ryo Onishi,Large-scale forcing with less communication in finite-difference simulations of stationary isotropic turbulence.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#OnishiBT11,https://doi.org/10.1016/j.jcp.2011.02.034 +Chi Zhang,A weakly compressible SPH method based on a low-dissipation Riemann solver.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#ZhangHA17,https://doi.org/10.1016/j.jcp.2017.01.027 +Mohamed Zerroukat,On the monotonic and conservative transport on overset/Yin-Yang grids.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#ZerroukatA15a,https://doi.org/10.1016/j.jcp.2015.09.006 +Marat I. Latypov,Data-driven reduced order models for effective yield strength and partitioning of strain in multiphase materials.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#LatypovK17,https://doi.org/10.1016/j.jcp.2017.06.013 +Dong Liang,A fractional step ELLAM approach to high-dimensional convection-diffusion problems with forward particle tracking.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#LiangDW07,https://doi.org/10.1016/j.jcp.2006.06.022 +Achim Schädle,Domain decomposition method for Maxwell's equations: Scattering off periodic structures.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#SchadleZBKS07,https://doi.org/10.1016/j.jcp.2007.04.017 +Gnana M. Subramaniam,A transformed path integral approach for solution of the Fokker-Planck equation.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#SubramaniamV17,https://doi.org/10.1016/j.jcp.2017.06.002 +Justin Hudson,A high resolution scheme for Eulerian gas-solid two-phase isentropic flow.,2006,216,J. Comput. Physics,2,db/journals/jcphy/jcphy216.html#HudsonH06,https://doi.org/10.1016/j.jcp.2005.12.010 +Songze Chen,A unified gas kinetic scheme with moving mesh and velocity space adaptation.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#ChenXLC12,https://doi.org/10.1016/j.jcp.2012.05.019 +Alexei Heintz,Fast numerical method for the Boltzmann equation on non-uniform grids.,2008,227,J. Comput. Physics,13,db/journals/jcphy/jcphy227.html#HeintzKG08,https://doi.org/10.1016/j.jcp.2008.03.028 +Jianying Zhang,Lattice Boltzmann simulations for the vortex tori pattern in the three-dimensional cubic-quintic complex Ginzburg-Landau equation.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#ZhangYW16,https://doi.org/10.1016/j.jcp.2015.11.039 +Song Li,Extension and optimization of the FIND algorithm: Computing Green's and less-than Green's functions.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#LiD12,https://doi.org/10.1016/j.jcp.2011.05.027 +Adrien Gomar,Convergence of Fourier-based time methods for turbomachinery wake passing problems.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#GomarBSDCF14,https://doi.org/10.1016/j.jcp.2014.08.029 +M. Parsani,An implicit high-order spectral difference approach for large eddy simulation.,2010,229,J. Comput. Physics,14,db/journals/jcphy/jcphy229.html#ParsaniGLT10,https://doi.org/10.1016/j.jcp.2010.03.038 +Di Zhang,A review on TVD schemes and a refined flux-limiter for steady-state calculations.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#ZhangJLC15,https://doi.org/10.1016/j.jcp.2015.08.042 +Haksu Moon,Stable pseudoanalytical computation of electromagnetic fields from arbitrarily-oriented dipoles in cylindrically stratified media.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#MoonTD14,https://doi.org/10.1016/j.jcp.2014.05.006 +Chein-Shan Liu,A multiple-scale Pascal polynomial for 2D Stokes and inverse Cauchy-Stokes problems.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#LiuY16,https://doi.org/10.1016/j.jcp.2016.02.017 +Joris C. G. Verschaeve,A curved no-slip boundary condition for the lattice Boltzmann method.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#VerschaeveM10,https://doi.org/10.1016/j.jcp.2010.05.022 +Stephen Wollman,Numerical approximation of the Vlasov-Maxwell-Fokker-Planck system in two dimensions.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#Wollman12,https://doi.org/10.1016/j.jcp.2011.12.018 +Wei Guo 0004,Superconvergence of discontinuous Galerkin and local discontinuous Galerkin methods: Eigen-structure analysis based on Fourier approach.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#GuoZQ13,https://doi.org/10.1016/j.jcp.2012.10.020 +Badrinarayanan Velamur Asokan,A stochastic variational multiscale method for diffusion in heterogeneous random media.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#AsokanZ06,https://doi.org/10.1016/j.jcp.2006.02.026 +Federico A. Stasyszyn,A vector potential implementation for smoothed particle magnetohydrodynamics.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#StasyszynE15,https://doi.org/10.1016/j.jcp.2014.11.011 +Jie Liu 0003,A stable second-order scheme for fluid-structure interaction with strong added-mass effects.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#LiuJG14,https://doi.org/10.1016/j.jcp.2014.04.020 +N. J. Sircombe,VALIS: A split-conservative scheme for the relativistic 2D Vlasov-Maxwell system.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#SircombeA09,https://doi.org/10.1016/j.jcp.2009.03.029 +Yong Liu,Entropy stable high order discontinuous Galerkin methods for ideal compressible MHD on structured meshes.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#LiuSZ18,https://doi.org/10.1016/j.jcp.2017.10.043 +Zhijun Shen,A robust HLLC-type Riemann solver for strong shock.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#ShenYY16,https://doi.org/10.1016/j.jcp.2016.01.001 +M. Alvaro,Numerical method for hydrodynamic modulation equations describing Bloch oscillations in semiconductor superlattices.,2012,231,J. Comput. Physics,13,db/journals/jcphy/jcphy231.html#AlvaroCB12,https://doi.org/10.1016/j.jcp.2012.02.024 +Y. Ling,A numerical source of small-scale number-density fluctuations in Eulerian-Lagrangian simulations of multiphase flows.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#LingHB10,https://doi.org/10.1016/j.jcp.2009.11.011 +Bharat B. Tripathi,Element centered smooth artificial viscosity in discontinuous Galerkin method for propagation of acoustic shock waves on unstructured meshes.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#TripathiLBCM18,https://doi.org/10.1016/j.jcp.2018.04.010 +Per Lötstedt,Simulation of stochastic diffusion via first exit *.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#LotstedtM15,https://doi.org/10.1016/j.jcp.2015.07.065 +Lise Charlot,A continuous Lagrangian sensitivity equation method for incompressible flow.,2012,231,J. Comput. Physics,18,db/journals/jcphy/jcphy231.html#CharlotEP12,https://doi.org/10.1016/j.jcp.2012.02.028 +Gabriel Stoltz,Stable schemes for dissipative particle dynamics with conserved energy.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#Stoltz17,https://doi.org/10.1016/j.jcp.2017.03.059 +Jinglai Li,A frozen Gaussian approximation-based multi-level particle swarm optimization for seismic inversion.,2015,296,J. Comput. Physics,,db/journals/jcphy/jcphy296.html#LiLY15,https://doi.org/10.1016/j.jcp.2015.04.050 +Yuanzhen Cheng,Fast and stable explicit operator splitting methods for phase-field models.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#ChengKQT15,https://doi.org/10.1016/j.jcp.2015.09.005 +Ignace Loris,Nonlinear regularization techniques for seismic tomography.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#LorisDNDR10,https://doi.org/10.1016/j.jcp.2009.10.020 +T. Coupez,Metric construction by length distribution tensor and edge based error for anisotropic adaptive meshing.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#Coupez11,https://doi.org/10.1016/j.jcp.2010.11.041 +Vladimir Fuchs,On the integration of equations of motion for particle-in-cell codes.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#FuchsG06,https://doi.org/10.1016/j.jcp.2005.09.026 +Yu-Hsin Shi,A gas-kinetic BGK scheme for semiclassical Boltzmann hydrodynamic transport.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#ShiY08,https://doi.org/10.1016/j.jcp.2008.06.036 +Stéphane Bedwani,Nanoscale adaptive meshing for rapid STM imaging.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#BedwaniGR08,https://doi.org/10.1016/j.jcp.2008.04.005 +Y. V. S. S. Sanyasiraju,Local radial basis function based gridfree scheme for unsteady incompressible viscous flows.,2008,227,J. Comput. Physics,20,db/journals/jcphy/jcphy227.html#SanyasirajuC08,https://doi.org/10.1016/j.jcp.2008.07.004 +Andrei I. Tolstykh,Development of arbitrary-order multioperators-based schemes for parallel calculations.: Part 2: Families of compact approximations with two-diagonal inversions and related multioperators.,2008,227,J. Comput. Physics,5,db/journals/jcphy/jcphy227.html#Tolstykh08,https://doi.org/10.1016/j.jcp.2007.11.036 +Jae Wook Kim,An advanced synthetic eddy method for the computation of aerofoil-turbulence interaction noise.,2015,287,J. Comput. Physics,,db/journals/jcphy/jcphy287.html#KimH15,https://doi.org/10.1016/j.jcp.2015.01.039 +G. Colomer,Parallel algorithms for Sn transport sweeps on unstructured meshes.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#ColomerBTR13,https://doi.org/10.1016/j.jcp.2012.07.009 +Bernard Parent,Modeling weakly-ionized plasmas in magnetic field: A new computationally-efficient approach.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#ParentMS15,https://doi.org/10.1016/j.jcp.2015.08.010 +Daniel Lagrava,Advances in multi-domain lattice Boltzmann grid refinement.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#LagravaMLC12,https://doi.org/10.1016/j.jcp.2012.03.015 +P. Bonneton,A splitting approach for the fully nonlinear and weakly dispersive Green-Naghdi model.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#BonnetonCLMT11,https://doi.org/10.1016/j.jcp.2010.11.015 +Angelo Iollo,A lagrangian scheme for the solution of the optimal mass transfer problem.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#IolloL11,https://doi.org/10.1016/j.jcp.2011.01.037 +Stéphane Balac,An Embedded Split-Step method for solving the nonlinear Schrödinger equation in optics.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#BalacM15,https://doi.org/10.1016/j.jcp.2014.09.018 +Hui Xu 0005,Some iterative finite element methods for steady Navier-Stokes equations with different viscosities.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#XuH13,https://doi.org/10.1016/j.jcp.2012.07.020 +A. Cervone,A geometrical predictor-corrector advection scheme and its application to the volume fraction function.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#CervoneMSZ09,https://doi.org/10.1016/j.jcp.2008.09.016 +Joshua A. Krakos,Sensitivity analysis of limit cycle oscillations.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#KrakosWHD12,https://doi.org/10.1016/j.jcp.2012.01.001 +Alex Simmons,A finite volume method for two-sided fractional diffusion equations on non-uniform meshes.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#SimmonsYM17,https://doi.org/10.1016/j.jcp.2017.01.061 +Florian Blachère,An admissibility and asymptotic-preserving scheme for systems of conservation laws with source term on 2D unstructured meshes.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#BlachereT16,https://doi.org/10.1016/j.jcp.2016.03.045 +Lorena A. Barba,Global field interpolation for particle methods.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#BarbaR10,https://doi.org/10.1016/j.jcp.2009.10.031 +M. A. Cardoso,Linearized reduced-order models for subsurface flow simulation.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#CardosoD10,https://doi.org/10.1016/j.jcp.2009.10.004 +Mehdi Dehghan,The use of proper orthogonal decomposition (POD) meshless RBF-FD technique to simulate the shallow water equations.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#DehghanA17,https://doi.org/10.1016/j.jcp.2017.09.007 +Junghan Kim,Development of EEM based silicon-water and silica-water wall potentials for non-reactive molecular dynamics simulations.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#KimIFNS14,https://doi.org/10.1016/j.jcp.2014.02.046 +Bruno Dubroca,A consistent approach for the coupling of radiation and hydrodynamics at low Mach number.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#DubrocaST07,https://doi.org/10.1016/j.jcp.2007.01.011 +Anotida Madzvamuse,Velocity-induced numerical solutions of reaction-diffusion systems on continuously growing domains.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#MadzvamuseM07,https://doi.org/10.1016/j.jcp.2006.11.022 +Grigoriy M. Drozdov,Time- and memory-efficient representation of complex mesoscale potentials.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#DrozdovOO17,https://doi.org/10.1016/j.jcp.2017.04.056 +Haibing Wang,Numerical solution of an inverse boundary value problem for the heat equation with unknown inclusions.,2018,369,J. Comput. Physics,,db/journals/jcphy/jcphy369.html#WangL18,https://doi.org/10.1016/j.jcp.2018.05.008 +Brian E. Moore,Conformal conservation laws and geometric integration for damped Hamiltonian PDEs.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#MooreNS13,https://doi.org/10.1016/j.jcp.2012.08.010 +Gabriel I. Font,Computational acceleration of orbital neutral sensor ionizer simulation through phenomena separation.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#Font16,https://doi.org/10.1016/j.jcp.2016.02.060 +Daniel T. Graves,An efficient solver for the equations of resistive MHD with spatially-varying resistivity.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#GravesTMC08,https://doi.org/10.1016/j.jcp.2008.01.044 +Liping Liu,A comparison of classical and high dimensional harmonic balance approaches for a Duffing oscillator.,2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#LiuTDAH06,https://doi.org/10.1016/j.jcp.2005.10.026 +Hang Ding,Diffuse interface model for incompressible two-phase flows with large density ratios.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#DingS007,https://doi.org/10.1016/j.jcp.2007.06.028 +Colin J. Cotter,Numerical wave propagation for the triangular P1DG-P2 finite element pair.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#CotterH11,https://doi.org/10.1016/j.jcp.2010.12.024 +Chang-Ming Chen,A Fourier method for the fractional diffusion equation describing sub-diffusion.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#ChenLTA07,https://doi.org/10.1016/j.jcp.2007.05.012 +Sooyoung Choi,Impact of inflow transport approximation on light water reactor analysis.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#ChoiSLL15,https://doi.org/10.1016/j.jcp.2015.07.005 +S. Unnikrishnan,A high-fidelity method to analyze perturbation evolution in turbulent flows.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#UnnikrishnanG16,https://doi.org/10.1016/j.jcp.2016.01.017 +Sotiria Lampoudi,Effect of excluded volume on 2D discrete stochastic chemical kinetics.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#LampoudiGP09,https://doi.org/10.1016/j.jcp.2009.02.002 +Paul A. Ullrich,An analysis of 1D finite-volume methods for geophysical problems on refined grids.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#UllrichJ11,https://doi.org/10.1016/j.jcp.2010.10.014 +Thomas Unfer,An asynchronous framework for the simulation of the plasma/flow interaction.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#Unfer13,https://doi.org/10.1016/j.jcp.2012.11.018 +Qiang Du,Stabilized linear semi-implicit schemes for the nonlocal Cahn-Hilliard equation.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#DuJLQ18,https://doi.org/10.1016/j.jcp.2018.02.023 +Amirali Kia,Fast electrostatic force calculation on parallel computer clusters.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#KiaKD08,https://doi.org/10.1016/j.jcp.2008.06.016 +Masaki Satoh,Nonhydrostatic icosahedral atmospheric model (NICAM) for global cloud resolving simulations.,2008,227,J. Comput. Physics,7,db/journals/jcphy/jcphy227.html#SatohMTMNI08,https://doi.org/10.1016/j.jcp.2007.02.006 +Mario Ricchiuto,Stabilized residual distribution for shallow water simulations.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#RicchiutoB09,https://doi.org/10.1016/j.jcp.2008.10.020 +Hang Ding,A stencil adaptive algorithm for finite difference solution of incompressible viscous flows.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#Ding006,https://doi.org/10.1016/j.jcp.2005.09.021 +Jin Sun Sohn,Dynamics of multicomponent vesicles in a viscous fluid.,2010,229,J. Comput. Physics,1,db/journals/jcphy/jcphy229.html#SohnTLVL10,https://doi.org/10.1016/j.jcp.2009.09.017 +Mounir Bennoune,Uniformly stable numerical schemes for the Boltzmann equation preserving the compressible Navier-Stokes asymptotics.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#BennouneLM08,https://doi.org/10.1016/j.jcp.2007.11.032 +Dries Vande Ginste,Error control in the perfectly matched layer based multilevel fast multipole algorithm.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#GinsteKZ09,https://doi.org/10.1016/j.jcp.2009.03.034 +L. S. Ferreira,Wang-Landau sampling: Saving CPU time.,2018,358,J. Comput. Physics,,db/journals/jcphy/jcphy358.html#FerreiraJLC18,https://doi.org/10.1016/j.jcp.2018.01.003 +Rodrigo C. Moura,Lyapunov exponents and adaptive mesh refinement for high-speed flows using a discontinuous Galerkin scheme.,2016,319,J. Comput. Physics,,db/journals/jcphy/jcphy319.html#MouraSBFO16,https://doi.org/10.1016/j.jcp.2016.05.019 +Victor A. Rukavishnikov,New numerical method for solving time-harmonic Maxwell equations with strong singularity.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#RukavishnikovM12,https://doi.org/10.1016/j.jcp.2011.11.031 +Simone Elke Hieber,An immersed boundary method for smoothed particle hydrodynamics of self-propelled swimmers.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#HieberK08,https://doi.org/10.1016/j.jcp.2008.06.017 +X. Y. Wang,SVD-GFD scheme to simulate complex moving body problems in 3D space.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#WangYYK10,https://doi.org/10.1016/j.jcp.2009.11.037 +Richard P. Dwight,Heuristic a posteriori estimation of error due to dissipation in finite volume schemes and application to mesh adaptation.,2008,227,J. Comput. Physics,5,db/journals/jcphy/jcphy227.html#Dwight08,https://doi.org/10.1016/j.jcp.2007.11.020 +Youngho Suh,A numerical method for the calculation of drag and lift of a deformable droplet in shear flow.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#SuhL13,https://doi.org/10.1016/j.jcp.2013.01.034 +Felix örley,Cut-element based immersed boundary method for moving geometries in compressible liquid flows with cavitation.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#OrleyPHA15,https://doi.org/10.1016/j.jcp.2014.11.028 +Gang Xu 0001,Constructing analysis-suitable parameterization of computational domain from CAD boundary by variational harmonic method.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#XuMDG13,https://doi.org/10.1016/j.jcp.2013.06.029 +Jing Li,Evaluation of failure probability via surrogate models.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#LiX10,https://doi.org/10.1016/j.jcp.2010.08.022 +H. Z. Yuan,A free energy-based surface tension force model for simulation of multiphase flows by level-set method.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#YuanCSWNS17,https://doi.org/10.1016/j.jcp.2017.05.020 +Aymeric Vié,Size-velocity correlations in hybrid high order moment/multi-fluid methods for polydisperse evaporating sprays: Modeling and numerical issues.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#VieLM13,https://doi.org/10.1016/j.jcp.2012.11.043 +Khosro Shahbazi,A high-order discontinuous Galerkin method for the unsteady incompressible Navier-Stokes equations.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#ShahbaziFE07,https://doi.org/10.1016/j.jcp.2006.07.029 +Xiangyu Hu 0002,Positivity-preserving method for high-order conservative schemes solving compressible Euler equations.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#0002AS13,https://doi.org/10.1016/j.jcp.2013.01.024 +Yannis Kallinderis,Flow feature detection for grid adaptation and flow visualization.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#KallinderisLA17,https://doi.org/10.1016/j.jcp.2017.04.001 +Martin Schneider 0010,Convergence of nonlinear finite volume schemes for heterogeneous anisotropic diffusion on general meshes.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#SchneiderAEF17,https://doi.org/10.1016/j.jcp.2017.09.003 +Ivo F. Sbalzarini,PPM - A highly efficient parallel particle-mesh library for the simulation of continuum systems.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#SbalzariniWBHKK06,https://doi.org/10.1016/j.jcp.2005.11.017 +Magnus Svärd,On the order of accuracy for difference approximations of initial-boundary value problems.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#SvardN06,https://doi.org/10.1016/j.jcp.2006.02.014 +Yanyuan Xing,A higher order numerical method for time fractional partial differential equations with nonsmooth data.,2018,357,J. Comput. Physics,,db/journals/jcphy/jcphy357.html#XingY18,https://doi.org/10.1016/j.jcp.2017.12.035 +Eid H. Doha,New algorithms for solving high even-order differential equations using third and fourth Chebyshev-Galerkin methods.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#DohaAB13,https://doi.org/10.1016/j.jcp.2012.11.009 +Ilias Malgarinos,Coupling a local adaptive grid refinement technique with an interface sharpening scheme for the simulation of two-phase flow and free-surface flows using VOF methodology.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#MalgarinosNG15,https://doi.org/10.1016/j.jcp.2015.08.004 +Cuong Ngo,A study on moving mesh finite element solution of the porous medium equation.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#NgoH17,https://doi.org/10.1016/j.jcp.2016.11.045 +Jiaqi Yang,A CG-FFT approach to the solution of a stress-velocity formulation of three-dimensional elastic scattering problems.,2008,227,J. Comput. Physics,24,db/journals/jcphy/jcphy227.html#YangABHR08,https://doi.org/10.1016/j.jcp.2008.07.027 +Samet Y. Kadioglu,Adaptive solution techniques for simulating underwater explosions and implosions.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#KadiogluS08,https://doi.org/10.1016/j.jcp.2007.10.019 +Bradley Martin,Seismic modeling with radial basis function-generated finite differences (RBF-FD) - a simplified treatment of interfaces.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#MartinF17,https://doi.org/10.1016/j.jcp.2017.01.065 +Dmitriy Y. Anistratov,Stability analysis of nonlinear two-grid method for multigroup neutron diffusion problems.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#AnistratovCJ17,https://doi.org/10.1016/j.jcp.2017.06.014 +Ao-Ping Peng,Implicit gas-kinetic unified algorithm based on multi-block docking grid for multi-body reentry flows covering all flow regimes.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#PengLWJ16,https://doi.org/10.1016/j.jcp.2016.09.050 +A. Beck,Multi-level multi-domain algorithm implementation for two-dimensional multiscale particle in cell simulations.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#BeckILM14,https://doi.org/10.1016/j.jcp.2013.12.016 +Benjamin Lalanne,On the computation of viscous terms for incompressible two-phase flows with Level Set/Ghost Fluid Method.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#LalanneVTR15,https://doi.org/10.1016/j.jcp.2015.08.036 +Igor Tsukerman,Trefftz difference schemes on irregular stencils.,2010,229,J. Comput. Physics,8,db/journals/jcphy/jcphy229.html#Tsukerman10,https://doi.org/10.1016/j.jcp.2009.12.025 +Yihao Liang,A GPU-based large-scale Monte Carlo simulation method for systems with long-range interactions.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#LiangXL17,https://doi.org/10.1016/j.jcp.2017.02.069 +Siu-Long Lei,A circulant preconditioner for fractional diffusion equations.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#LeiS13,https://doi.org/10.1016/j.jcp.2013.02.025 +Zhuyin Ren,Dynamic adaptive chemistry with operator splitting schemes for reactive flow simulations.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#RenXLS14,https://doi.org/10.1016/j.jcp.2014.01.016 +Hao-Ran Liu,A diffuse-interface immersed-boundary method for two-dimensional simulation of flows with moving contact lines on curved substrates.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#LiuD15,https://doi.org/10.1016/j.jcp.2015.03.059 +József Bakosi,A non-hybrid method for the PDF equations of turbulent flows on unstructured grids.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#Bakosi0B08,https://doi.org/10.1016/j.jcp.2008.02.024 +Leslie Greengard,A fast direct solver for scattering from periodic structures with multiple material interfaces in two dimensions.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#GreengardHL14,https://doi.org/10.1016/j.jcp.2013.11.011 +L. Michael,A hybrid formulation for the numerical simulation of condensed phase explosives.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#MichaelN16,https://doi.org/10.1016/j.jcp.2016.04.017 +Yongbo Deng,Self-consistent adjoint analysis for topology optimization of electromagnetic waves.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#DengK18,https://doi.org/10.1016/j.jcp.2018.01.045 +Jonathan A. Zimmerman,A material frame approach for evaluating continuum variables in atomistic simulations.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#ZimmermanJT10,https://doi.org/10.1016/j.jcp.2009.11.039 +Can Huang,Convergence of a p-version/hp-version method for fractional differential equations.,2015,286,J. Comput. Physics,,db/journals/jcphy/jcphy286.html#HuangZ15,https://doi.org/10.1016/j.jcp.2015.01.025 +Yan Shi,The finite-volume time-domain algorithm using least square method in solving Maxwell's equations.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#ShiL07,https://doi.org/10.1016/j.jcp.2007.05.033 +Shi Jin,A class of asymptotic-preserving schemes for the Fokker-Planck-Landau equation.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#JinY11,https://doi.org/10.1016/j.jcp.2011.04.002 +Georgios Karagiannis,A Bayesian mixed shrinkage prior procedure for spatial-stochastic basis selection and evaluation of gPC expansions: Applications to elliptic SPDEs.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#KaragiannisKL15,https://doi.org/10.1016/j.jcp.2014.12.034 +Giridhar Nandipati,Off-lattice pattern recognition scheme for kinetic Monte Carlo simulations.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#NandipatiKSR12,https://doi.org/10.1016/j.jcp.2011.12.029 +Longhui Zhang,Fictitious domain method for fully resolved reacting gas-solid flow simulation.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#ZhangLY15,https://doi.org/10.1016/j.jcp.2015.07.010 +Vrushali A. Bokil,Dispersion reducing methods for edge discretizations of the electric vector wave equation.,2015,287,J. Comput. Physics,,db/journals/jcphy/jcphy287.html#BokilGGM15,https://doi.org/10.1016/j.jcp.2015.01.042 +Mathew A. Cleveland,Corrected implicit Monte Carlo.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#ClevelandW18,https://doi.org/10.1016/j.jcp.2017.12.038 +Steven P. Hirshman,BCYCLIC: A parallel block tridiagonal matrix cyclic solver.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#HirshmanPLS10,https://doi.org/10.1016/j.jcp.2010.04.049 +Kohei Fukumitsu,A new directional-splitting CIP interpolation with high accuracy and low memory consumption.,2015,286,J. Comput. Physics,,db/journals/jcphy/jcphy286.html#FukumitsuYOOO15,https://doi.org/10.1016/j.jcp.2014.12.045 +Dieter Fauconnier,The dynamic procedure for accuracy improvement of numerical discretizations in fluid mechanics.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#FauconnierLD07,https://doi.org/10.1016/j.jcp.2006.11.012 +Xuewen Yin,An improved bounce-back scheme for complex boundary conditions in lattice Boltzmann method.,2012,231,J. Comput. Physics,11,db/journals/jcphy/jcphy231.html#YinZ12,https://doi.org/10.1016/j.jcp.2012.02.014 +Haiyang Gao,A conservative correction procedure via reconstruction formulation with the Chain-Rule divergence evaluation.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#GaoW13,https://doi.org/10.1016/j.jcp.2012.08.030 +Michael G. Edwards,The dominant wave-capturing flux: A finite-volume scheme without decomposition for systems of hyperbolic conservation laws.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#Edwards06,https://doi.org/10.1016/j.jcp.2006.02.005 +Aravind Balan,A stable high-order Spectral Difference method for hyperbolic conservation laws on triangular elements.,2012,231,J. Comput. Physics,5,db/journals/jcphy/jcphy231.html#BalanMS12,https://doi.org/10.1016/j.jcp.2011.11.041 +Alireza Doostan,A non-adapted sparse approximation of PDEs with stochastic inputs.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#DoostanO11,https://doi.org/10.1016/j.jcp.2011.01.002 +Li-ping He,A class of stable spectral methods for the Cahn-Hilliard equation.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#HeL09,https://doi.org/10.1016/j.jcp.2009.04.011 +Hongqiang Zhu,Adaptive Runge-Kutta discontinuous Galerkin methods using different indicators: One-dimensional case.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#ZhuQ09,https://doi.org/10.1016/j.jcp.2009.06.022 +S. Mendez,An unstructured solver for simulations of deformable particles in flows at arbitrary Reynolds numbers.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#MendezGN14,https://doi.org/10.1016/j.jcp.2013.08.061 +Cédric M. Campos,Extra Chance Generalized Hybrid Monte Carlo.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#CamposS15,https://doi.org/10.1016/j.jcp.2014.09.037 +Ozlem Ozgun,Domain compression via anisotropic metamaterials designed by coordinate transformations.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#OzgunK10,https://doi.org/10.1016/j.jcp.2009.10.023 +Jaemin Shin,Unconditionally stable methods for gradient flow using Convex Splitting Runge-Kutta scheme.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#ShinLL17,https://doi.org/10.1016/j.jcp.2017.07.006 +Birte Schrader,Discretization correction of general integral PSE Operators for particle methods.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#SchraderRS10,https://doi.org/10.1016/j.jcp.2010.02.004 +Jian-Guo Li,Propagation of ocean surface waves on a spherical multiple-cell grid.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#Li12,https://doi.org/10.1016/j.jcp.2012.08.007 +Van Thang Pham,Study of the 1D lattice Boltzmann shallow water equation and its coupling to build a canal network.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#ThangCLOM10,https://doi.org/10.1016/j.jcp.2010.06.022 +Kiril S. Shterev,Pressure based finite volume method for calculation of compressible viscous gas flows.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#ShterevS10,https://doi.org/10.1016/j.jcp.2009.09.042 +Y. Bazilevs,Large eddy simulation of turbulent Taylor-Couette flow using isogeometric analysis and the residual-based variational multiscale method.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#BazilevsA10,https://doi.org/10.1016/j.jcp.2010.01.008 +Debanjan Mukherjee,A discrete element based simulation framework to investigate particulate spray deposition processes.,2015,290,J. Comput. Physics,,db/journals/jcphy/jcphy290.html#MukherjeeZ15,https://doi.org/10.1016/j.jcp.2015.02.034 +N. Hanzlikova,Leap frog integrator modifications in highly collisional particle-in-cell codes.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#HanzlikovaT14,https://doi.org/10.1016/j.jcp.2014.03.018 +Dana A. Knoll,Numerical analysis of time integration errors for nonequilibrium radiation diffusion.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#KnollLM07,https://doi.org/10.1016/j.jcp.2007.05.034 +Jing-Mei Qiu,A conservative high order semi-Lagrangian WENO method for the Vlasov equation.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#QiuC10,https://doi.org/10.1016/j.jcp.2009.10.016 +Emre Kiliç,Solution of 3D inverse scattering problems by combined inverse equivalent current and finite element methods.,2015,288,J. Comput. Physics,,db/journals/jcphy/jcphy288.html#KilicE15,https://doi.org/10.1016/j.jcp.2015.02.004 +Jeffrey W. Banks,An added-mass partition algorithm for fluid-structure interactions of compressible fluids and nonlinear solids.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#BanksHKS16,https://doi.org/10.1016/j.jcp.2015.10.043 +Carl R. Sovinec,Stabilization of numerical interchange in spectral-element magnetohydrodynamics.,2016,319,J. Comput. Physics,,db/journals/jcphy/jcphy319.html#Sovinec16,https://doi.org/10.1016/j.jcp.2016.04.063 +Kevin Carlberg,Conservative model reduction for finite-volume models.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#CarlbergCS18,https://doi.org/10.1016/j.jcp.2018.05.019 +Ozlem Ozgun,Parallelized Characteristic Basis Finite Element Method (CBFEM-MPI) - A non-iterative domain decomposition algorithm for electromagnetic scattering problems.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#OzgunMK09,https://doi.org/10.1016/j.jcp.2008.12.002 +Satbir Singh,A multi-block ADI finite-volume method for incompressible Navier-Stokes equations in complex geometries.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#SinghY11,https://doi.org/10.1016/j.jcp.2011.06.006 +L. Patacchini,Explicit time-reversible orbit integration in Particle In Cell codes with static homogeneous magnetic field.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#PatacchiniH09,https://doi.org/10.1016/j.jcp.2008.12.021 +Federico Peinetti,Particle-in-cell method for parallel dynamics in magnetized electron plasmas: Study of high-amplitude BGK modes.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#PeinettiPCW06,https://doi.org/10.1016/j.jcp.2006.01.040 +Pep Mulet,A semi-Lagrangian AMR scheme for 2D transport problems in conservation form.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#MuletV13,https://doi.org/10.1016/j.jcp.2012.11.039 +Kalpajyoti Borah,A novel second-order flux splitting for ideal magnetohydrodynamics.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#BorahND16,https://doi.org/10.1016/j.jcp.2016.02.052 +Siegfried Cools,A fast and robust computational method for the ionization cross sections of the driven Schrödinger equation using an O(N) multigrid-based scheme.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#CoolsV16,https://doi.org/10.1016/j.jcp.2015.12.019 +Piotr K. Smolarkiewicz,A finite-volume module for simulating global all-scale atmospheric flows.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#SmolarkiewiczDH16,https://doi.org/10.1016/j.jcp.2016.03.015 +Anjie Hu,Force method in a pseudo-potential lattice Boltzmann model.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#HuLU15,https://doi.org/10.1016/j.jcp.2015.03.009 +Serge Huberson,Vortex particle methods in aeroacoustic calculations.,2008,227,J. Comput. Physics,21,db/journals/jcphy/jcphy227.html#HubersonRV08,https://doi.org/10.1016/j.jcp.2008.06.011 +Xin Guo,On the generation and maintenance of waves and turbulence in simulations of free-surface turbulence.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#GuoS09,https://doi.org/10.1016/j.jcp.2009.06.030 +Philip S. Beran,Uncertainty quantification of limit-cycle oscillations.,2006,217,J. Comput. Physics,1,db/journals/jcphy/jcphy217.html#BeranPM06,https://doi.org/10.1016/j.jcp.2006.03.038 +Yoshiaki Abe,Geometric interpretations and spatial symmetry property of metrics in the conservative form for high-order finite-difference schemes on moving and deforming grids.,2014,260,J. Comput. Physics,,db/journals/jcphy/jcphy260.html#AbeNIF14,https://doi.org/10.1016/j.jcp.2013.12.019 +María J. Cáceres,A numerical solver for a nonlinear Fokker-Planck equation representation of neuronal network dynamics.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#CaceresCT11,https://doi.org/10.1016/j.jcp.2010.10.027 +Aurel Neic,Efficient computation of electrograms and ECGs in human whole heart simulations using a reaction-eikonal model.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#NeicCPNBVP17,https://doi.org/10.1016/j.jcp.2017.06.020 +Jonathan M. Burt,A hybrid particle approach for continuum and rarefied flow simulation.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#BurtB09,https://doi.org/10.1016/j.jcp.2008.09.022 +Yingda Cheng,Superconvergence and time evolution of discontinuous Galerkin finite element solutions.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#ChengS08,https://doi.org/10.1016/j.jcp.2008.07.010 +Christel Hohenegger,Fluid-particle dynamics for passive tracers advected by a thermally fluctuating viscoelastic medium.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#HoheneggerM17,https://doi.org/10.1016/j.jcp.2017.03.053 +Jun Zhang 0016,Multiple temperature model for the information preservation method and its application to nonequilibrium gas flows.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#ZhangFJ11,https://doi.org/10.1016/j.jcp.2011.05.025 +Lingfei Wu,Estimating the trace of the matrix inverse by interpolating from the diagonal of an approximate inverse.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#WuLKSG16,https://doi.org/10.1016/j.jcp.2016.09.001 +Helene Barucq,A symmetric Trefftz-DG formulation based on a local boundary element method for the solution of the Helmholtz equation.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#BarucqBFMT17,https://doi.org/10.1016/j.jcp.2016.09.062 +J. M. López-Herrera,A charge-conservative approach for simulating electrohydrodynamic two-phase flows using volume-of-fluid.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#Lopez-HerreraPH11,https://doi.org/10.1016/j.jcp.2010.11.042 +Chao Li,Spatially hybrid computations for streamer discharges : II. Fully 3D simulations.,2012,231,J. Comput. Physics,3,db/journals/jcphy/jcphy231.html#LiEH12,https://doi.org/10.1016/j.jcp.2011.07.023 +Daniel Ingraham,External verification analysis: A code-independent verification technique for unsteady PDE codes.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#IngrahamH13,https://doi.org/10.1016/j.jcp.2013.02.032 +Zhen Lu,Analysis of operator splitting errors for near-limit flame simulations.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#LuZLRLL17,https://doi.org/10.1016/j.jcp.2017.01.044 +Xiao Li,Phase transitions of macromolecular microsphere composite hydrogels based on the stochastic Cahn-Hilliard equation.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#LiJZ15,https://doi.org/10.1016/j.jcp.2014.11.032 +Hervé Guillard,A Darcy law for the drift velocity in a two-phase flow model.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#GuillardD07,https://doi.org/10.1016/j.jcp.2007.02.025 +Guillaume Oger,An improved SPH method: Towards higher order convergence.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#OgerDAF07,https://doi.org/10.1016/j.jcp.2007.01.039 +Lin Ma,Viscous regularization and r-adaptive remeshing for finite element analysis of lipid membrane mechanics.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#MaK08,https://doi.org/10.1016/j.jcp.2008.02.019 +Binze Yang,A second-order boundary-fitted projection method for free-surface flow computations.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#YangP06,https://doi.org/10.1016/j.jcp.2005.08.025 +Cord-Christian Rossow,Efficient computation of compressible and incompressible flows.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#Rossow07,https://doi.org/10.1016/j.jcp.2006.05.034 +Thomas Gillis,An efficient iterative penalization method using recycled Krylov subspaces and its application to impulsively started flows.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#GillisWC17,https://doi.org/10.1016/j.jcp.2017.07.015 +Jiequan Li,Remark on the generalized Riemann problem method for compressible fluid flows.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#LiS07,https://doi.org/10.1016/j.jcp.2006.08.017 +Philip W. Livermore,Galerkin orthogonal polynomials.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#Livermore10,https://doi.org/10.1016/j.jcp.2009.11.022 +Samuel P. Schofield,A second-order accurate material-order-independent interface reconstruction technique for multi-material flow simulations.,2009,228,J. Comput. Physics,3,db/journals/jcphy/jcphy228.html#SchofieldGFL09,https://doi.org/10.1016/j.jcp.2008.09.023 +R. N. Slaybaugh,Multigrid in energy preconditioner for Krylov solvers.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#SlaybaughEDW13,https://doi.org/10.1016/j.jcp.2013.02.012 +Jeffrey W. Banks,An analysis of a new stable partitioned algorithm for FSI problems. Part II: Incompressible flow and structural shells.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#BanksHS14,https://doi.org/10.1016/j.jcp.2014.03.004 +P. A. Browne,Fast three dimensional r-adaptive mesh redistribution.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#BrowneBPC14,https://doi.org/10.1016/j.jcp.2014.06.009 +Mahdi Esmaily Moghadam,A scalable geometric multigrid solver for nonsymmetric elliptic systems with application to variable-density flows.,2018,357,J. Comput. Physics,,db/journals/jcphy/jcphy357.html#MoghadamJMI18,https://doi.org/10.1016/j.jcp.2017.12.024 +Huei-Shuang Chen,Spectral collocation methods using sine functions for a rotating Bose-Einstein condensation in optical lattices.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#ChenCC12,https://doi.org/10.1016/j.jcp.2011.10.030 +A. R. Owens,Optimal trace inequality constants for interior penalty discontinuous Galerkin discretisations of elliptic operators using arbitrary elements with non-constant Jacobians.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#OwensKE17,https://doi.org/10.1016/j.jcp.2017.09.020 +Duc-Vinh Le,Large deformation of liquid capsules enclosed by thin shells immersed in the fluid.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#LeT10,https://doi.org/10.1016/j.jcp.2010.01.042 +David Fridrich,Some cell-centered Lagrangian Lax-Wendroff HLL hybrid schemes.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#FridrichLW16,https://doi.org/10.1016/j.jcp.2016.09.022 +Bormin Huang,Development of a GPU-based high-performance radiative transfer model for the Infrared Atmospheric Sounding Interferometer (IASI).,2011,230,J. Comput. Physics,6,db/journals/jcphy/jcphy230.html#HuangMOH11,https://doi.org/10.1016/j.jcp.2010.09.011 +Tomás Dohnal,Perfectly matched layers in photonics computations: 1D and 2D nonlinear coupled mode equations.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#DohnalH07,https://doi.org/10.1016/j.jcp.2006.10.002 +M. Shadi Mohamed,Time-independent hybrid enrichment for finite element solution of transient conduction-radiation in diffusive grey media.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#MohamedSTL13,https://doi.org/10.1016/j.jcp.2013.05.030 +Juan A. Acebrón,Domain decomposition solution of nonlinear two-dimensional parabolic problems by random trees.,2009,228,J. Comput. Physics,15,db/journals/jcphy/jcphy228.html#AcebronRS09,https://doi.org/10.1016/j.jcp.2009.04.034 +Ellen M. Taylor,Optimization of nonlinear error for weighted essentially non-oscillatory methods in direct numerical simulations of compressible turbulence.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#TaylorWM07,https://doi.org/10.1016/j.jcp.2006.09.010 +Hiroaki Nishikawa,On hyperbolic method for diffusion with discontinuous coefficients.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#Nishikawa18,https://doi.org/10.1016/j.jcp.2018.04.027 +E. Vergnault,Application of Lattice Boltzmann Method to sensitivity analysis via complex differentiation.,2011,230,J. Comput. Physics,13,db/journals/jcphy/jcphy230.html#VergnaultS11,https://doi.org/10.1016/j.jcp.2011.03.044 +Sebastian Schunert,A flexible nonlinear diffusion acceleration method for the SN transport equations discretized with discontinuous finite elements.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#SchunertWGOBLWD17,https://doi.org/10.1016/j.jcp.2017.01.070 +Fengyan Li,Central discontinuous Galerkin methods for ideal MHD equations with the exactly divergence-free magnetic field.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#LiXY11,https://doi.org/10.1016/j.jcp.2011.03.006 +Marc R. J. Charest,Solution of the equation of radiative transfer using a Newton-Krylov approach and adaptive mesh refinement.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#CharestGG12,https://doi.org/10.1016/j.jcp.2011.11.016 +Yiqing Shen,E-CUSP scheme for the equations of ideal magnetohydrodynamics with high order WENO Scheme.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#ShenZH12,https://doi.org/10.1016/j.jcp.2012.04.015 +Fenglian Yang,Doubly stochastic radial basis function methods.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#YangYL18,https://doi.org/10.1016/j.jcp.2018.02.042 +Olivier Desjardins,A quadrature-based moment method for dilute fluid-particle flows.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#DesjardinsFV08,https://doi.org/10.1016/j.jcp.2007.10.026 +Ali Mani,Analysis and optimization of numerical sponge layers as a nonreflective boundary treatment.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#Mani12,https://doi.org/10.1016/j.jcp.2011.10.017 +Bjørn Fredrik Nielsen,On the use of the resting potential and level set methods for identifying ischemic heart disease: An inverse problem.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#NielsenLT07,https://doi.org/10.1016/j.jcp.2006.05.040 +Z. H. Ma,GPU computing of compressible flow problems by a meshless method with space-filling curves.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#MaWP14,https://doi.org/10.1016/j.jcp.2014.01.023 +Cédric Galusinski,On stability condition for bifluid flows with surface tension: Application to microfluidics.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#GalusinskiV08,https://doi.org/10.1016/j.jcp.2008.02.023 +Thomas Luu,Generalized reference fields and source interpolation for the difference formulation of radiation transport.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#LuuBS10,https://doi.org/10.1016/j.jcp.2009.10.049 +Ben Thornber,An algorithm for LES of premixed compressible flows using the Conditional Moment Closure model.,2011,230,J. Comput. Physics,20,db/journals/jcphy/jcphy230.html#ThornberBMH11,https://doi.org/10.1016/j.jcp.2011.06.024 +Zhaoyuan Wang,A simple and conservative operator-splitting semi-Lagrangian volume-of-fluid advection scheme.,2012,231,J. Comput. Physics,15,db/journals/jcphy/jcphy231.html#WangYS12a,https://doi.org/10.1016/j.jcp.2012.04.029 +Cesar A. Acosta Minoli,Discontinuous Galerkin spectral element approximations on moving meshes.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#MinoliK11,https://doi.org/10.1016/j.jcp.2010.11.038 +Benedikt Klein,A SIMPLE based discontinuous Galerkin solver for steady incompressible flows.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#KleinKO13,https://doi.org/10.1016/j.jcp.2012.11.051 +Masayuki Tanaka 0008,Stabilization and smoothing of pressure in MPS method by Quasi-Compressibility.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#TanakaM10,https://doi.org/10.1016/j.jcp.2010.02.011 +Emmanuel Brun,A local level-set method using a hash table data structure.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#BrunGG12,https://doi.org/10.1016/j.jcp.2011.12.001 +Konstantin Lipnikov,A monotone finite volume method for advection-diffusion equations on unstructured polygonal meshes.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#LipnikovSV10,https://doi.org/10.1016/j.jcp.2010.01.035 +Li-Tien Cheng,Efficient level set methods for constructing wavefronts in three spatial dimensions.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#Cheng07,https://doi.org/10.1016/j.jcp.2007.07.019 +Per Pettersson,Numerical analysis of the Burgers' equation in the presence of uncertainty.,2009,228,J. Comput. Physics,22,db/journals/jcphy/jcphy228.html#PetterssonIN09,https://doi.org/10.1016/j.jcp.2009.08.012 +Herwig A. Grogger,Finite difference approximations of first derivatives for three-dimensional grid singularities.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#Grogger07,https://doi.org/10.1016/j.jcp.2007.03.027 +N. F. Dudley Ward,A discontinuous Galerkin method for poroelastic wave propagation: The two-dimensional case.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#WardLE17,https://doi.org/10.1016/j.jcp.2017.08.070 +Christiaan M. Klaij,On the stabilization of finite volume methods with co-located variables for incompressible flow.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#Klaij15,https://doi.org/10.1016/j.jcp.2015.05.012 +D. L. Young,A novel vector potential formulation of 3D Navier-Stokes equations with through-flow boundaries by a local meshless method.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#YoungTW15,https://doi.org/10.1016/j.jcp.2015.07.040 +Chiaming Wang,Particle simulation of Coulomb collisions: Comparing the methods of Takizuka and Abe and Nanbu.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#WangLCCD08,https://doi.org/10.1016/j.jcp.2007.12.027 +Kausik Chatterjee,A new Green's function Monte Carlo algorithm for the estimation of the derivative of the solution of Helmholtz equation subject to Neumann and mixed boundary conditions.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#Chatterjee16,https://doi.org/10.1016/j.jcp.2016.02.075 +Han Chen,A numerical scheme for the Stefan problem on adaptive Cartesian grids with supralinear convergence rate.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#ChenMG09,https://doi.org/10.1016/j.jcp.2009.04.044 +José Ramón López-Blanco,Exploring large macromolecular functional motions on clusters of multicore processors.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#Lopez-BlancoRABCQ13,https://doi.org/10.1016/j.jcp.2013.03.032 +Won-Kwang Park,MUSIC algorithm for location searching of dielectric anomalies from S-parameters using microwave imaging.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#ParkKLS17,https://doi.org/10.1016/j.jcp.2017.07.035 +Lijian Jiang,Model's sparse representation based on reduced mixed GMsFE basis methods.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#JiangL17,https://doi.org/10.1016/j.jcp.2017.02.055 +Arnab Kr. De,A diffuse interface immersed boundary method for complex moving boundary problems.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#De18,https://doi.org/10.1016/j.jcp.2018.04.008 +Oksana Guba,Optimization-based limiters for the spectral element method.,2014,267,J. Comput. Physics,,db/journals/jcphy/jcphy267.html#GubaTS14,https://doi.org/10.1016/j.jcp.2014.02.029 +Xia Ji,A multi-level method for transmission eigenvalues of anisotropic media.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#JiS13,https://doi.org/10.1016/j.jcp.2013.08.030 +Nikola Mirkov,On the improved finite volume procedure for simulation of turbulent flows over real complex terrains.,2015,287,J. Comput. Physics,,db/journals/jcphy/jcphy287.html#MirkovRK15,https://doi.org/10.1016/j.jcp.2015.02.001 +Dan G. Cacuci,Second-order adjoint sensitivity analysis methodology (2nd-ASAM) for computing exactly and efficiently first- and second-order sensitivities in large-scale linear systems: I. Computational methodology.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#Cacuci15,https://doi.org/10.1016/j.jcp.2014.12.042 +Marian Piatkowski,A stable and high-order accurate discontinuous Galerkin based splitting method for the incompressible Navier-Stokes equations.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#PiatkowskiMB18,https://doi.org/10.1016/j.jcp.2017.11.035 +Assyr Abdulle,Numerical methods for stochastic partial differential equations with multiple scales.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#AbdulleP12,https://doi.org/10.1016/j.jcp.2011.11.039 +Qing Nie,Efficient semi-implicit schemes for stiff systems.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#NieZZ06,https://doi.org/10.1016/j.jcp.2005.09.030 +Dinshaw S. Balsara,An efficient class of WENO schemes with adaptive order.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#BalsaraGS16,https://doi.org/10.1016/j.jcp.2016.09.009 +Hélène Barucq,Localization of small obstacles from back-scattered data at limited incident angles with full-waveform inversion.,2018,370,J. Comput. Physics,,db/journals/jcphy/jcphy370.html#BarucqFP18,https://doi.org/10.1016/j.jcp.2018.05.011 +Mario F. Trujillo,The distortion of the level set gradient under advection.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#TrujilloAR17,https://doi.org/10.1016/j.jcp.2016.11.050 +Jerrad Hampton,Compressive sampling of polynomial chaos expansions: Convergence analysis and sampling strategies.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#HamptonD15,https://doi.org/10.1016/j.jcp.2014.09.019 +Stéphane Dellacherie,Numerical resolution of a potential diphasic low Mach number system.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#Dellacherie07,https://doi.org/10.1016/j.jcp.2006.09.009 +G. V. Vogman,Dory-Guest-Harris instability as a benchmark for continuum kinetic Vlasov-Poisson simulations of magnetized plasmas.,2014,277,J. Comput. Physics,,db/journals/jcphy/jcphy277.html#VogmanCS14,https://doi.org/10.1016/j.jcp.2014.08.014 +Philippe Miron,Anisotropic mesh adaptation on Lagrangian Coherent Structures.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#MironVGDH12,https://doi.org/10.1016/j.jcp.2012.06.015 +Ken Mattsson,Optimal diagonal-norm SBP operators.,2014,264,J. Comput. Physics,,db/journals/jcphy/jcphy264.html#MattssonAC14,https://doi.org/10.1016/j.jcp.2013.12.041 +Yann Moguen,Pressure-velocity coupling allowing acoustic calculation in low Mach number flow.,2012,231,J. Comput. Physics,16,db/journals/jcphy/jcphy231.html#MoguenKBVD12,https://doi.org/10.1016/j.jcp.2012.05.001 +Ana Alonso Rodríguez,Finite element simulation of eddy current problems using magnetic scalar potentials.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#RodriguezBGV15,https://doi.org/10.1016/j.jcp.2015.03.060 +Mathew A. Cleveland,Obtaining identical results with double precision global accuracy on different numbers of processors in parallel particle Monte Carlo simulations.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#ClevelandBGK13,https://doi.org/10.1016/j.jcp.2013.05.041 +Mattia Gazzola,Simulations of single and multiple swimmers with non-divergence free deforming geometries.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#GazzolaCRK11,https://doi.org/10.1016/j.jcp.2011.04.025 +James E. Gubernatis,Multiple extremal eigenpairs by the power method.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#GubernatisB08,https://doi.org/10.1016/j.jcp.2008.06.001 +Alexander Z. Zinchenko,Algorithm for direct numerical simulation of emulsion flow through a granular material.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#ZinchenkoD08,https://doi.org/10.1016/j.jcp.2008.05.004 +Thomas Unfer,An asynchronous scheme with local time stepping for multi-scale transport problems: Application to gas discharges.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#UnferBRT07,https://doi.org/10.1016/j.jcp.2007.07.018 +Gustaaf B. Jacobs,A high-order WENO-Z finite difference based particle-source-in-cell method for computation of particle-laden flows with shocks.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#JacobsD09,https://doi.org/10.1016/j.jcp.2008.10.037 +Jianfeng Lu 0001,Numerical scheme for a spatially inhomogeneous matrix-valued quantum Boltzmann equation.,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#LuM15,https://doi.org/10.1016/j.jcp.2015.03.020 +Li-Jun Xuan,A new gas-kinetic scheme based on analytical solutions of the BGK equation.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#XuanX13,https://doi.org/10.1016/j.jcp.2012.10.007 +Cem çelik,Crank-Nicolson method for the fractional diffusion equation with the Riesz fractional derivative.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#CelikD12,https://doi.org/10.1016/j.jcp.2011.11.008 +Zydrunas Gimbutas,Fast multi-particle scattering: A hybrid solver for the Maxwell equations in microstructured materials.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#GimbutasG13,https://doi.org/10.1016/j.jcp.2012.01.041 +Sergey A. Suslov,Numerical aspects of searching convective/absolute instability transition.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#Suslov06,https://doi.org/10.1016/j.jcp.2005.06.017 +Marcel Kwakkel,Extension of a CLSVOF method for droplet-laden flows with a coalescence/breakup model.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#KwakkelBB13,https://doi.org/10.1016/j.jcp.2013.07.005 +Przemyslaw Tredak,Efficient implementation of the many-body Reactive Bond Order (REBO) potential on GPU.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#TredakRM16,https://doi.org/10.1016/j.jcp.2016.05.061 +K. Waagan,A positive MUSCL-Hancock scheme for ideal magnetohydrodynamics.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#Waagan09,https://doi.org/10.1016/j.jcp.2009.08.020 +G. C. O'Leary,SPH accuracy improvement through the combination of a quasi-Lagrangian shifting transport velocity and consistent ALE formalisms.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#OLearyMTL16,https://doi.org/10.1016/j.jcp.2016.02.039 +Michael D. Sekora,A hybrid Godunov method for radiation hydrodynamics.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#SekoraS10,https://doi.org/10.1016/j.jcp.2010.05.024 +Frederick Blumenthal,A stability analysis of a real space split operator method for the Klein-Gordon equation.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#BlumenthalB12,https://doi.org/10.1016/j.jcp.2011.09.012 +Robert C. Tautz,On simplified numerical turbulence models in test-particle simulations.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#Tautz12,https://doi.org/10.1016/j.jcp.2012.02.021 +Chengjie Wang,Strongly coupled dynamics of fluids and rigid-body systems with the immersed boundary projection method.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#WangE15,https://doi.org/10.1016/j.jcp.2015.04.005 +Kartikey Asthana,On consistency and rate of convergence of Flux Reconstruction for time-dependent problems.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#AsthanaWJ17,https://doi.org/10.1016/j.jcp.2017.01.008 +A. J. Kriel,Error analysis of flux limiter schemes at extrema.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#Kriel17,https://doi.org/10.1016/j.jcp.2016.10.024 +W. N. Edeling,Bayesian estimates of parameter variability in the k-9* turbulence model.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#EdelingCDB14,https://doi.org/10.1016/j.jcp.2013.10.027 +Jaime Carpio,A local anisotropic adaptive algorithm for the solution of low-Mach transient combustion problems.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#CarpioPV16,https://doi.org/10.1016/j.jcp.2015.11.011 +Pavel Solín,Adaptive higher-order finite element methods for transient PDE problems based on embedded higher-order implicit Runge-Kutta methods.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#SolinK12,https://doi.org/10.1016/j.jcp.2011.10.023 +Rongzong Huang,Phase interface effects in the total enthalpy-based lattice Boltzmann model for solid-liquid phase change.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#HuangW15,https://doi.org/10.1016/j.jcp.2015.03.064 +Hassan Khosravian-Arab,Fractional spectral and pseudo-spectral methods in unbounded domains: Theory and applications.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#Khosravian-Arab17,https://doi.org/10.1016/j.jcp.2017.02.060 +Carlos Delgado,Combination of ray-tracing and the method of moments for electromagnetic radiation analysis using reduced meshes.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#DelgadoC18,https://doi.org/10.1016/j.jcp.2018.01.040 +Shi Jin,An asymptotic-preserving stochastic Galerkin method for the radiative heat transfer equations with random inputs and diffusive scalings.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#JinL17,https://doi.org/10.1016/j.jcp.2016.12.033 +Jung Hee Seo,Linearized perturbed compressible equations for low Mach number aeroacoustics.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#SeoM06,https://doi.org/10.1016/j.jcp.2006.03.003 +Igor L. Novak,A conservative algorithm for parabolic problems in domains with moving boundaries.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#NovakS14,https://doi.org/10.1016/j.jcp.2014.03.014 +Magnus Svärd,Review of summation-by-parts schemes for initial-boundary-value problems.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#SvardN14,https://doi.org/10.1016/j.jcp.2014.02.031 +Petr N. Vabishchevich,Two-level schemes for the advection equation.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#Vabishchevich18,https://doi.org/10.1016/j.jcp.2018.02.044 +Natasha Flyer,Transport schemes on a sphere using radial basis functions.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#FlyerW07,https://doi.org/10.1016/j.jcp.2007.05.009 +Stefan Fleckenstein,A Volume-of-Fluid-based numerical method for multi-component mass transfer with local volume changes.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#FleckensteinB15,https://doi.org/10.1016/j.jcp.2015.08.011 +Gautier Brèthes,Anisotropic norm-oriented mesh adaptation for a Poisson problem.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#BrethesD16,https://doi.org/10.1016/j.jcp.2016.07.008 +Duan Chen,Accurate and efficient Nyström volume integral equation method for the Maxwell equations for multiple 3-D scatterers.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#ChenCZC16,https://doi.org/10.1016/j.jcp.2016.05.042 +Shanqin Chen,A discontinuous Galerkin implementation of a domain decomposition method for kinetic-hydrodynamic coupling multiscale problems in gas dynamics and device simulations.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#ChenELS07,https://doi.org/10.1016/j.jcp.2007.01.025 +Edwin Albert Munts,A modal-based multiscale method for large eddy simulation.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#MuntsHB07,https://doi.org/10.1016/j.jcp.2007.03.004 +Daniel S. Abdi,Efficient construction of unified continuous and discontinuous Galerkin formulations for the 3D Euler equations.,2016,320,J. Comput. Physics,,db/journals/jcphy/jcphy320.html#AbdiG16,https://doi.org/10.1016/j.jcp.2016.05.033 +Lei Bian,ALmost EXact boundary conditions for transient Schrödinger-Poisson system.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#BianPTA16,https://doi.org/10.1016/j.jcp.2016.02.025 +Xue-song Li,An All-Speed Roe-type scheme and its asymptotic analysis of low Mach number behaviour.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#LiG08,https://doi.org/10.1016/j.jcp.2008.01.037 +Ryan N. Hill,The Symmetric Moment-of-Fluid interface reconstruction algorithm.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#HillS13,https://doi.org/10.1016/j.jcp.2013.04.037 +Carlos Pantano,LES approach for high Reynolds number wall-bounded flows with application to turbulent channel flow.,2008,227,J. Comput. Physics,21,db/journals/jcphy/jcphy227.html#PantanoPDM08,https://doi.org/10.1016/j.jcp.2008.04.015 +Panagiotis Dimitrakopoulos,Interfacial dynamics in Stokes flow via a three-dimensional fully-implicit interfacial spectral boundary element algorithm.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#Dimitrakopoulos07,https://doi.org/10.1016/j.jcp.2006.12.004 +Alain Lerat,On the design of high order residual-based dissipation for unsteady compressible flows.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#LeratGC13,https://doi.org/10.1016/j.jcp.2012.10.053 +Kai Diethelm,Increasing the efficiency of shooting methods for terminal value problems of fractional order.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#Diethelm15,https://doi.org/10.1016/j.jcp.2014.10.054 +Xin Lv,A matrix-free implicit unstructured multigrid finite volume method for simulating structural dynamics and fluid-structure interaction.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#LvZHXS07,https://doi.org/10.1016/j.jcp.2006.11.023 +Matthias Ihme,Regularization of reaction progress variable for application to flamelet-based combustion models.,2012,231,J. Comput. Physics,23,db/journals/jcphy/jcphy231.html#IhmeSZ12,https://doi.org/10.1016/j.jcp.2012.06.029 +Molei Tao,Explicit high-order symplectic integrators for charged particles in general electromagnetic fields.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#Tao16,https://doi.org/10.1016/j.jcp.2016.09.047 +Viktor Linders,Summation-by-Parts operators with minimal dispersion error for coarse grid flow calculations.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#LindersKN17,https://doi.org/10.1016/j.jcp.2017.03.039 +Phaedon-Stelios Koutsourelakis,Stochastic upscaling in solid mechanics: An excercise in machine learning.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#Koutsourelakis07,https://doi.org/10.1016/j.jcp.2007.04.012 +Terrence S. Tricco,Constrained hyperbolic divergence cleaning in smoothed particle magnetohydrodynamics with variable cleaning speeds.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#TriccoPB16,https://doi.org/10.1016/j.jcp.2016.06.053 +Wei Wang 0027,High order finite difference methods with subcell resolution for advection equations with stiff source terms.,2012,231,J. Comput. Physics,1,db/journals/jcphy/jcphy231.html#WangSYS12,https://doi.org/10.1016/j.jcp.2011.08.031 +Cheng Liu,An adaptive multi-moment FVM approach for incompressible flows.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#LiuH18,https://doi.org/10.1016/j.jcp.2018.01.006 +Vahid Keshavarzzadeh,Identification of discontinuous nonlinear systems via a multivariate Padé approach.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#KeshavarzzadehM16,https://doi.org/10.1016/j.jcp.2015.11.051 +Gang Xu 0001,"Corrigendum to ""Constructing analysis-suitable parameterization of computational domain from CAD boundary by variational harmonic method"" [J. Comput. Phys. 252(2013) 275-289].",2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#XuMDG14,https://doi.org/10.1016/j.jcp.2014.04.040 +Maria Elena Innocenti,A Multi Level Multi Domain Method for Particle In Cell plasma simulations.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#InnocentiLMBV13,https://doi.org/10.1016/j.jcp.2012.12.028 +Jian Cheng,A high order compact least-squares reconstructed discontinuous Galerkin method for the steady-state compressible flows on hybrid grids.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#ChengZL18,https://doi.org/10.1016/j.jcp.2018.02.012 +Alexander Farutin,3D numerical simulations of vesicle and inextensible capsule dynamics.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#FarutinBM14,https://doi.org/10.1016/j.jcp.2014.07.008 +Frédéric Gibou,A level set based sharp interface method for the multiphase incompressible Navier-Stokes equations with phase change.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#GibouCNB07,https://doi.org/10.1016/j.jcp.2006.07.035 +Yong Zhang,Natural element method for radiative heat transfer in a semitransparent medium with irregular geometries.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#ZhangYT13,https://doi.org/10.1016/j.jcp.2013.01.044 +Josephine Ainley,The method of images for regularized Stokeslets.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#AinleyDEBC08,https://doi.org/10.1016/j.jcp.2008.01.032 +David M. Ackerman,A finite element approach to self-consistent field theory calculations of multiblock polymers.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#AckermanDFG17,https://doi.org/10.1016/j.jcp.2016.11.020 +Pavel P. Popov,Specific volume coupling and convergence properties in hybrid particle/finite volume algorithms for turbulent reactive flows.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#PopovWP15,https://doi.org/10.1016/j.jcp.2015.03.001 +Frédéric Coquel,A positive and entropy-satisfying finite volume scheme for the Baer-Nunziato model.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#CoquelHS17,https://doi.org/10.1016/j.jcp.2016.11.017 +Ken Mattsson,A high-order accurate embedded boundary method for first order hyperbolic equations.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#MattssonA17,https://doi.org/10.1016/j.jcp.2016.12.034 +Horacio J. Aguerre,An oscillation-free flow solver based on flux reconstruction.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#AguerrePVDN18,https://doi.org/10.1016/j.jcp.2018.03.033 +Ngoc Cuong Nguyen,Gaussian functional regression for output prediction: Model assimilation and experimental design.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#NguyenP16,https://doi.org/10.1016/j.jcp.2015.12.035 +éric Madaule,Energy conserving discontinuous Galerkin spectral element method for the Vlasov-Poisson system.,2014,279,J. Comput. Physics,,db/journals/jcphy/jcphy279.html#MadauleRS14,https://doi.org/10.1016/j.jcp.2014.09.010 +Leslie Greengard,Stable and accurate integral equation methods for scattering problems with multiple material interfaces in two dimensions.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#GreengardL12,https://doi.org/10.1016/j.jcp.2011.11.034 +Adamandios Sifounakis,A conservative finite volume method for incompressible Navier-Stokes equations on locally refined nested Cartesian grids.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#SifounakisLY16,https://doi.org/10.1016/j.jcp.2016.09.026 +Anna-Karin Tornberg,Consistent boundary conditions for the Yee scheme.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#TornbergE08,https://doi.org/10.1016/j.jcp.2008.03.045 +Kai Huang,An efficient algorithm for the generalized Foldy-Lax formulation.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#HuangLZ13,https://doi.org/10.1016/j.jcp.2012.09.027 +Paul Dostert,Coarse-gradient Langevin algorithms for dynamic data integration and uncertainty quantification.,2006,217,J. Comput. Physics,1,db/journals/jcphy/jcphy217.html#DostertEHL06,https://doi.org/10.1016/j.jcp.2006.03.012 +David M. Haughton,Evaluation of eigenfunctions from compound matrix variables in non-linear elasticity - I. Fourth order systems.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#Haughton08,https://doi.org/10.1016/j.jcp.2008.01.003 +Zhiqin Zhao,Volumetric fast multipole method for modeling Schrödinger's equation.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#ZhaoKLACC07,https://doi.org/10.1016/j.jcp.2006.11.003 +Balaji Muralidharan,A high-order adaptive Cartesian cut-cell method for simulation of compressible viscous flow over immersed bodies.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#MuralidharanM16,https://doi.org/10.1016/j.jcp.2016.05.050 +Sheng-Bing Shi,Newmark-Beta-FDTD method for super-resolution analysis of time reversal waves.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#ShiSMJW17,https://doi.org/10.1016/j.jcp.2017.05.036 +K. Reuther,Simulating dendritic solidification using an anisotropy-free meshless front-tracking method.,2014,279,J. Comput. Physics,,db/journals/jcphy/jcphy279.html#ReutherR14,https://doi.org/10.1016/j.jcp.2014.09.003 +Matthew E. Hubbard,Non-oscillatory third order fluctuation splitting schemes for steady scalar conservation laws.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#Hubbard07,https://doi.org/10.1016/j.jcp.2006.08.007 +Tony W. H. Sheu,On the development of a high-order compact scheme for exhibiting the switching and dissipative solution natures in the Camassa-Holm equation.,2011,230,J. Comput. Physics,13,db/journals/jcphy/jcphy230.html#SheuCY11,https://doi.org/10.1016/j.jcp.2011.03.043 +José E. Adsuara,Scheduled Relaxation Jacobi method: Improvements and applications.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#AdsuaraCCA16,https://doi.org/10.1016/j.jcp.2016.05.053 +Ken Mattsson,High-fidelity numerical simulation of the dynamic beam equation.,2015,286,J. Comput. Physics,,db/journals/jcphy/jcphy286.html#MattssonS15,https://doi.org/10.1016/j.jcp.2015.01.038 +Mikhail Zaslavsky,Solution of time-convolutionary Maxwell's equations using parameter-dependent Krylov subspace reduction.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#ZaslavskyD10,https://doi.org/10.1016/j.jcp.2010.03.019 +Prashant Kumar,A multigrid multilevel Monte Carlo method for transport in the Darcy-Stokes system.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#KumarLGO18,https://doi.org/10.1016/j.jcp.2018.05.046 +Alberto Talamo,Numerical solution of the time dependent neutron transport equation by the method of the characteristics.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#Talamo13,https://doi.org/10.1016/j.jcp.2012.12.020 +Roger Käppeli,Well-balanced schemes for the Euler equations with gravitation.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#KappeliM14,https://doi.org/10.1016/j.jcp.2013.11.028 +Willem Hundsdorfer,IMEX extensions of linear multistep methods with general monotonicity and boundedness properties.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#HundsdorferR07,https://doi.org/10.1016/j.jcp.2007.03.003 +A. Mosahebi,An implicit and adaptive nonlinear frequency domain approach for periodic viscous flows.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#MosahebiN14,https://doi.org/10.1016/j.jcp.2014.08.022 +Souvik Chakraborty,Sequential experimental design based generalised ANOVA.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#ChakrabortyC16,https://doi.org/10.1016/j.jcp.2016.04.042 +Lukas Exl,Accurate and efficient computation of nonlocal potentials based on Gaussian-sum approximation.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#ExlMZ16,https://doi.org/10.1016/j.jcp.2016.09.045 +Sergey Litvinov,A splitting scheme for highly dissipative smoothed particle dynamics.,2010,229,J. Comput. Physics,15,db/journals/jcphy/jcphy229.html#LitvinovEHA10,https://doi.org/10.1016/j.jcp.2010.03.040 +Stefan Fechter,A sharp interface method for compressible liquid-vapor flow with phase transition and surface tension.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#FechterMRZ17,https://doi.org/10.1016/j.jcp.2017.02.001 +Manuel Hirschler,Open boundary conditions for ISPH and their application to micro-flow.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#HirschlerKHHN16,https://doi.org/10.1016/j.jcp.2015.12.024 +B. Sanderse,Boundary treatment for fourth-order staggered mesh discretizations of the incompressible Navier-Stokes equations.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#SanderseVK14,https://doi.org/10.1016/j.jcp.2013.10.002 +Po-Wen Hsieh,A bubble-stabilized least-squares finite element method for steady MHD duct flow problems at high Hartmann numbers.,2009,228,J. Comput. Physics,22,db/journals/jcphy/jcphy228.html#HsiehY09,https://doi.org/10.1016/j.jcp.2009.08.007 +Alireza Najafi-Yazdi,A high resolution differential filter for large eddy simulation: Toward explicit filtering on unstructured grids.,2015,292,J. Comput. Physics,,db/journals/jcphy/jcphy292.html#Najafi-YazdiNM15,https://doi.org/10.1016/j.jcp.2015.03.034 +Steven P. Hamilton,Efficient solution of the simplified PN equations.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#HamiltonE15,https://doi.org/10.1016/j.jcp.2014.12.014 +Marcus Herrmann,A parallel Eulerian interface tracking/Lagrangian point particle multi-scale coupling procedure.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#Herrmann10,https://doi.org/10.1016/j.jcp.2009.10.009 +Andris M. Dimits,Higher-order time integration of Coulomb collisions in a plasma using Langevin equations.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#DimitsCCRR13,https://doi.org/10.1016/j.jcp.2013.01.038 +J. Wei,GPU-accelerated Monte Carlo simulation of particle coagulation based on the inverse method.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#WeiK13,https://doi.org/10.1016/j.jcp.2013.04.030 +Mahbod Salmasi,Discrete exterior calculus approach for discretizing Maxwell's equations on face-centered cubic grids for FDTD.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#SalmasiP18,https://doi.org/10.1016/j.jcp.2018.03.019 +Bin Zhang,An asymptotic preserving Monte Carlo method for the multispecies Boltzmann equation.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#ZhangLJ16,https://doi.org/10.1016/j.jcp.2015.11.006 +Sanjay Govindjee,A time-domain Discontinuous Galerkin method for mechanical resonator quality factor computations.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#GovindjeeP12,https://doi.org/10.1016/j.jcp.2012.05.034 +Tyrus Berry,Semiparametric modeling: Correcting low-dimensional model error in parametric models.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#BerryH16,https://doi.org/10.1016/j.jcp.2015.12.043 +Matthew Charnley,A linear sampling method for through-the-wall radar detection.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#CharnleyW17,https://doi.org/10.1016/j.jcp.2017.06.035 +Emmanuel Montseny,Dissipative terms and local time-stepping improvements in a spatial high order Discontinuous Galerkin scheme for the time-domain Maxwell's equations.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#MontsenyPFC08,https://doi.org/10.1016/j.jcp.2008.03.032 +Innocent Niyonzima,Waveform relaxation for the computational homogenization of multiscale magnetoquasistatic problems.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#NiyonzimaGS16,https://doi.org/10.1016/j.jcp.2016.09.011 +Eric Brown-Dymkoski,Adaptive-Anisotropic Wavelet Collocation Method on general curvilinear coordinate systems.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#Brown-DymkoskiV17,https://doi.org/10.1016/j.jcp.2016.12.040 +Javier Murillo,A Riemann solver for unsteady computation of 2D shallow flows with variable density.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#MurilloLG12,https://doi.org/10.1016/j.jcp.2012.03.016 +Sanghyun Lee,Adaptive enriched Galerkin methods for miscible displacement problems with entropy residual stabilization.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#LeeW17,https://doi.org/10.1016/j.jcp.2016.10.072 +Lijun Yuan,Robust iterative method for nonlinear Helmholtz equation.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#YuanL17,https://doi.org/10.1016/j.jcp.2017.04.046 +John LaGrone,Double absorbing boundaries for finite-difference time-domain electromagnetics.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#LaGroneH16,https://doi.org/10.1016/j.jcp.2016.09.014 +Yohsuke Imai,Accuracy study of the IDO scheme by Fourier analysis.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#ImaiA06,https://doi.org/10.1016/j.jcp.2006.01.015 +Toby Sanders,Composite SAR imaging using sequential joint sparsity.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#SandersGP17,https://doi.org/10.1016/j.jcp.2017.02.071 +Charles Tadjeran,A second-order accurate numerical method for the two-dimensional fractional diffusion equation.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#TadjeranM07,https://doi.org/10.1016/j.jcp.2006.05.030 +Akil Narayan,Sequential data assimilation with multiple models.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#NarayanMX12,https://doi.org/10.1016/j.jcp.2012.06.002 +Ali Khajeh-Saeed,Direct numerical simulation of turbulence using GPU accelerated supercomputers.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#Khajeh-SaeedP13,https://doi.org/10.1016/j.jcp.2012.10.050 +Ming-Jiu Ni,A current density conservative scheme for incompressible MHD flows at a low magnetic Reynolds number. Part II: On an arbitrary collocated mesh.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#NiMHMA07,https://doi.org/10.1016/j.jcp.2007.07.023 +Lin Lin 0001,Adaptive local basis set for Kohn-Sham density functional theory in a discontinuous Galerkin framework I: Total energy calculation.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#LinLYE12,https://doi.org/10.1016/j.jcp.2011.11.032 +Yiqing Shen,High-resolution finite compact difference schemes for hyperbolic conservation laws.,2006,216,J. Comput. Physics,1,db/journals/jcphy/jcphy216.html#ShenYG06,https://doi.org/10.1016/j.jcp.2005.11.027 +Craig Michoski,A discontinuous Galerkin method for viscous compressible multifluids.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#MichoskiESV10,https://doi.org/10.1016/j.jcp.2009.11.033 +Felix Kwok,Potential-based reduced Newton algorithm for nonlinear multiphase flow in porous media.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#KwokT07,https://doi.org/10.1016/j.jcp.2007.08.012 +Emilie Blanc,Wave simulation in 2D heterogeneous transversely isotropic porous media with fractional attenuation: A Cartesian grid approach.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#BlancCL14,https://doi.org/10.1016/j.jcp.2014.07.002 +Matteo Bernardini,Turbulent channel flow simulations in convecting reference frames.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#BernardiniPQO13,https://doi.org/10.1016/j.jcp.2012.08.006 +Misun Min,Fourier spectral simulations and Gegenbauer reconstructions for electromagnetic waves in the presence of a metal nanoparticle.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#MinLFG06,https://doi.org/10.1016/j.jcp.2005.06.025 +Huan Lei,Systematic parameter inference in stochastic mesoscopic modeling.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#LeiYLK17,https://doi.org/10.1016/j.jcp.2016.10.029 +Tan Bui-Thanh,From Godunov to a unified hybridized discontinuous Galerkin framework for partial differential equations.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#Bui-Thanh15,https://doi.org/10.1016/j.jcp.2015.04.009 +Nathan Albin,A spectral FC solver for the compressible Navier-Stokes equations in general domains I: Explicit time-stepping.,2011,230,J. Comput. Physics,16,db/journals/jcphy/jcphy230.html#AlbinB11,https://doi.org/10.1016/j.jcp.2011.04.023 +Helen J. Wilson,Stokes flow past three spheres.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#Wilson13,https://doi.org/10.1016/j.jcp.2013.03.020 +Irina N. Shishkova,A numerical algorithm for kinetic modelling of evaporation processes.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#ShishkovaS06,https://doi.org/10.1016/j.jcp.2006.02.019 +Xiangxiong Zhang,Positivity-preserving high order finite difference WENO schemes for compressible Euler equations.,2012,231,J. Comput. Physics,5,db/journals/jcphy/jcphy231.html#ZhangS12,https://doi.org/10.1016/j.jcp.2011.11.020 +Matthijs den Toom,"Corrigendum to ""A tailored solver for bifurcation analysis of ocean-climate models"" [J. Comput. Phys 227 (2007) 654-679].",2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#ToomWD09,https://doi.org/10.1016/j.jcp.2009.04.002 +Alessandra Nigro,Second derivative time integration methods for discontinuous Galerkin solutions of unsteady compressible flows.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#NigroBCB17,https://doi.org/10.1016/j.jcp.2017.08.049 +Sang-Hyeon Lee,Alleviation of cancellation problem of preconditioned Navier-Stokes equations.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#Lee09,https://doi.org/10.1016/j.jcp.2009.04.024 +Jung Hee Seo,A method for the computational modeling of the physics of heart murmurs.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#SeoBGZATM17,https://doi.org/10.1016/j.jcp.2017.02.018 +Michael Dumbser,ADER-WENO finite volume schemes with space-time adaptive mesh refinement.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#DumbserZHB13,https://doi.org/10.1016/j.jcp.2013.04.017 +Markus Held,Lattice Boltzmann model for collisionless electrostatic drift wave turbulence obeying Charney-Hasegawa-Mima dynamics.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#HeldK15,https://doi.org/10.1016/j.jcp.2015.06.018 +Muruhan Rathinam,"Reversible-equivalent-monomolecular tau: A leaping method for ""small number and stiff"" stochastic chemical systems.",2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#RathinamE07,https://doi.org/10.1016/j.jcp.2006.10.034 +W. Liao,Euler calculations with embedded Cartesian grids and small-perturbation boundary conditions.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#LiaoKTL10,https://doi.org/10.1016/j.jcp.2010.01.014 +Jacob A. McGill,Efficient gradient estimation using finite differencing and likelihood ratios for kinetic Monte Carlo simulations.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#McGillOV12,https://doi.org/10.1016/j.jcp.2012.06.037 +Andreas Müller 0010,Comparison between adaptive and uniform discontinuous Galerkin simulations in dry 2D bubble experiments.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#MullerBGW13,https://doi.org/10.1016/j.jcp.2012.10.038 +Johan Helsing,Determination of normalized electric eigenfields in microwave cavities with sharp edges.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#HelsingK16,https://doi.org/10.1016/j.jcp.2015.09.054 +Aleksandar Donev,Stochastic Event-Driven Molecular Dynamics.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#DonevGA08,https://doi.org/10.1016/j.jcp.2007.11.010 +Sihong Shao,Comparison of deterministic and stochastic methods for time-dependent Wigner simulations.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#ShaoS15,https://doi.org/10.1016/j.jcp.2015.08.002 +Tianbing Chen,Piecewise-polynomial discretization and Krylov-accelerated multigrid for elliptic interface problems.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#ChenS08,https://doi.org/10.1016/j.jcp.2008.04.027 +Edward G. Phillips,A stochastic approach to uncertainty in the equations of MHD kinematics.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#PhillipsE15,https://doi.org/10.1016/j.jcp.2014.12.002 +Olivier Pinaud,Absorbing layers for the Dirac equation.,2015,289,J. Comput. Physics,,db/journals/jcphy/jcphy289.html#Pinaud15,https://doi.org/10.1016/j.jcp.2015.02.049 +Wenjun Ying,A kernel-free boundary integral method for elliptic boundary value problems.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#YingH07,https://doi.org/10.1016/j.jcp.2007.08.021 +Juan Cheng,Second order symmetry-preserving conservative Lagrangian scheme for compressible Euler equations in two-dimensional cylindrical coordinates.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#ChengS14a,https://doi.org/10.1016/j.jcp.2014.04.031 +Suchuan Dong,An unconditionally stable rotational velocity-correction scheme for incompressible flows.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#DongS10,https://doi.org/10.1016/j.jcp.2010.05.037 +Niklas Fehn,On the stability of projection methods for the incompressible Navier-Stokes equations based on high-order discontinuous Galerkin discretizations.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#FehnWK17,https://doi.org/10.1016/j.jcp.2017.09.031 +Shing Chan,A machine learning approach for efficient uncertainty quantification using multiscale methods.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#ChanE18,https://doi.org/10.1016/j.jcp.2017.10.034 +Mehrdad Yousefzadeh,Physics-based hybrid method for multiscale transport in porous media.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#YousefzadehB17,https://doi.org/10.1016/j.jcp.2017.04.055 +C. T. Tian,A three-dimensional multidimensional gas-kinetic scheme for the Navier-Stokes equations under gravitational fields.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#TianXCD07,https://doi.org/10.1016/j.jcp.2007.06.024 +Weizhang Huang,Sign-preserving of principal eigenfunctions in P1 finite element approximation of eigenvalue problems of second-order elliptic operators.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#Huang14,https://doi.org/10.1016/j.jcp.2014.06.012 +Mary Catherine A. Kropinski,Efficient numerical methods for multiple surfactant-coated bubbles in a two-dimensional stokes flow.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#KropinskiL11,https://doi.org/10.1016/j.jcp.2011.02.019 +Jianlin Xia,Effective matrix-free preconditioning for the augmented immersed interface method.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#XiaLY15,https://doi.org/10.1016/j.jcp.2015.09.050 +Mohammad Mirzadeh,A conservative discretization of the Poisson-Nernst-Planck equations on adaptive Cartesian grids.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#MirzadehG14,https://doi.org/10.1016/j.jcp.2014.06.039 +N. Zhang,An improved direct-forcing immersed-boundary method for finite difference applications.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#ZhangZ07,https://doi.org/10.1016/j.jcp.2006.06.012 +Bert Van Genechten,A Trefftz-based numerical modelling framework for Helmholtz problems with complex multiple-scatterer configurations.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#GenechtenBVD10,https://doi.org/10.1016/j.jcp.2010.05.016 +J. E. Sprittles,"Corrigendum to ""Finite element simulation of dynamic wetting flows as an interface formation process"" [J. Comput. Phys. 233(2013) 34-65].",2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#SprittlesS14,https://doi.org/10.1016/j.jcp.2014.06.041 +Cheng Liu,An efficient immersed boundary treatment for complex moving object.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#LiuH14,https://doi.org/10.1016/j.jcp.2014.06.042 +Hossein Mahmoodi Darian,A shock-detecting sensor for filtering of high-order compact finite difference schemes.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#DarianEH11,https://doi.org/10.1016/j.jcp.2010.09.028 +Ismail B. Celik,Prediction of discretization error using the error transport equation.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#CelikP17,https://doi.org/10.1016/j.jcp.2017.02.058 +Manuel A. Sánchez,Symplectic Hamiltonian HDG methods for wave propagation phenomena.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#SanchezCNPC17,https://doi.org/10.1016/j.jcp.2017.09.010 +Xin Liu,Three-dimensional shallow water system: A relaxation approach.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#LiuMSK17,https://doi.org/10.1016/j.jcp.2016.12.030 +Rodrigo C. Moura,Eigensolution analysis of spectral/hp continuous Galerkin approximations to advection-diffusion problems: Insights into spectral vanishing viscosity.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#MouraSP16,https://doi.org/10.1016/j.jcp.2015.12.009 +Chao Yang 0001,A constrained optimization algorithm for total energy minimization in electronic structure calculations.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#YangMW06,https://doi.org/10.1016/j.jcp.2006.01.030 +Feng Chen,Efficient spectral-Galerkin methods for systems of coupled second-order equations and their applications.,2012,231,J. Comput. Physics,15,db/journals/jcphy/jcphy231.html#ChenS12,https://doi.org/10.1016/j.jcp.2012.03.001 +Haibo Zhao,A new event-driven constant-volume method for solution of the time evolution of particle size distribution.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#ZhaoZ09,https://doi.org/10.1016/j.jcp.2008.10.033 +Li-Jun Xuan,A weighted-integral based scheme.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#XuanW10,https://doi.org/10.1016/j.jcp.2010.04.031 +Yuri Feldman,An extension of the immersed boundary method based on the distributed Lagrange multiplier approach.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#FeldmanG16,https://doi.org/10.1016/j.jcp.2016.06.039 +Bruno Lombard,Numerical modeling of transient two-dimensional viscoelastic waves.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#LombardP11,https://doi.org/10.1016/j.jcp.2011.04.015 +Hailong Guo,Gradient recovery for elliptic interface problem: III. Nitsche's method.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#GuoY18,https://doi.org/10.1016/j.jcp.2017.11.031 +Nishant Panda,Discontinuous Galerkin methods for solving Boussinesq-Green-Naghdi equations in resolving non-linear and dispersive surface water waves.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#PandaDZKWD14,https://doi.org/10.1016/j.jcp.2014.05.035 +Mark Ainsworth,Dispersive behaviour of high order finite element schemes for the one-way wave equation.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#Ainsworth14,https://doi.org/10.1016/j.jcp.2013.11.003 +Julien Javaloyes,Rational Chebyshev spectral transform for the dynamics of broad-area laser diodes.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#JavaloyesB15,https://doi.org/10.1016/j.jcp.2015.06.027 +Bin Dong,Wavelet frame based surface reconstruction from unorganized points.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#DongS11,https://doi.org/10.1016/j.jcp.2011.07.022 +Lori Badea,Schwarz method for earthquake source dynamics.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#BadeaIW08,https://doi.org/10.1016/j.jcp.2007.11.044 +Jens Lang 0001,Extrapolation-based implicit-explicit Peer methods with optimised stability regions.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#LangH17,https://doi.org/10.1016/j.jcp.2017.02.034 +Chang-Jun Zheng,An accurate and efficient acoustic eigensolver based on a fast multipole BEM and a contour integral method.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#ZhengGDCZ16,https://doi.org/10.1016/j.jcp.2015.10.048 +Yin-Tzer Shih,A two-parameter continuation algorithm using radial basis function collocation method for rotating Bose-Einstein condensates.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#ShihT13,https://doi.org/10.1016/j.jcp.2013.06.018 +Zheming Zheng,A hybrid multiscale kinetic Monte Carlo method for simulation of copper electrodeposition.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#ZhengSBAP08,https://doi.org/10.1016/j.jcp.2008.01.056 +Matías Fernando Benedetto,A hybrid mortar virtual element method for discrete fracture network simulations.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#BenedettoBBPS16,https://doi.org/10.1016/j.jcp.2015.11.034 +Tobias Leicht,Error estimation and anisotropic mesh refinement for 3d laminar aerodynamic flow simulations.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#LeichtH10,https://doi.org/10.1016/j.jcp.2010.06.019 +Sirui Tan,Efficient implementation of high order inverse Lax-Wendroff boundary treatment for conservation laws.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#TanWSN12,https://doi.org/10.1016/j.jcp.2011.11.037 +Belkis Erzincanli,An arbitrary Lagrangian-Eulerian formulation for solving moving boundary problems with large displacements and rotations.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#ErzincanliS13,https://doi.org/10.1016/j.jcp.2013.08.038 +Arthur Guittet,A stable projection method for the incompressible Navier-Stokes equations on arbitrary geometries and adaptive Quad/Octrees.,2015,292,J. Comput. Physics,,db/journals/jcphy/jcphy292.html#GuittetTG15,https://doi.org/10.1016/j.jcp.2015.03.024 +Do Wan Kim,Extrinsic meshfree approximation using asymptotic expansion for interfacial discontinuity of derivative.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#KimYLB07,https://doi.org/10.1016/j.jcp.2006.06.023 +Jizu Huang,A lattice Boltzmann model for multiphase flows with moving contact line and variable density.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#HuangW18,https://doi.org/10.1016/j.jcp.2017.10.002 +Juan Manzanero,The Bassi Rebay 1 scheme is a special case of the Symmetric Interior Penalty formulation for discontinuous Galerkin discretisations with Gauss-Lobatto points.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#ManzaneroRRF18,https://doi.org/10.1016/j.jcp.2018.02.035 +Peter A. Gnoffo,Solutions of nonlinear differential equations with feature detection using fast Walsh transforms.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#Gnoffo17,https://doi.org/10.1016/j.jcp.2017.03.016 +Benjamin Grier,Numerical integration techniques for discontinuous manufactured solutions.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#GrierAWCF14,https://doi.org/10.1016/j.jcp.2014.08.031 +M. Lilienthal,Non-dissipative space-time hp-discontinuous Galerkin method for the time-dependent Maxwell equations.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#LilienthalSW14,https://doi.org/10.1016/j.jcp.2014.07.015 +Seung Hyun Kim,A front propagation formulation for under-resolved reaction fronts.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#Kim15,https://doi.org/10.1016/j.jcp.2014.12.051 +Thomas Hagstrom,Grid stabilization of high-order one-sided differencing II: Second-order wave equations.,2012,231,J. Comput. Physics,23,db/journals/jcphy/jcphy231.html#HagstromH12,https://doi.org/10.1016/j.jcp.2012.07.033 +J. E. Sprittles,Finite element simulation of dynamic wetting flows as an interface formation process.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#SprittlesS13,https://doi.org/10.1016/j.jcp.2012.07.018 +Filippo Posta,Compensated optimal grids for elliptic boundary-value problems.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#PostaSM08,https://doi.org/10.1016/j.jcp.2008.06.026 +Maarten Hornikx,A multi-domain Fourier pseudospectral time-domain method for the linearized Euler equations.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#HornikxRD12,https://doi.org/10.1016/j.jcp.2012.03.014 +Chris E. Kees,A conservative level set method suitable for variable-order approximations and unstructured meshes.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#KeesAFB11,https://doi.org/10.1016/j.jcp.2011.02.030 +Houde Han,Split local absorbing conditions for one-dimensional nonlinear Klein-Gordon equation on unbounded domain.,2008,227,J. Comput. Physics,20,db/journals/jcphy/jcphy227.html#HanZ08,https://doi.org/10.1016/j.jcp.2008.07.006 +Like Li,Boundary conditions for thermal lattice Boltzmann equation method.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#LiMK13,https://doi.org/10.1016/j.jcp.2012.11.027 +Dominik Derigs,A novel averaging technique for discrete entropy-stable dissipation operators for ideal MHD.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#DerigsWGW17,https://doi.org/10.1016/j.jcp.2016.10.055 +Weizhu Bao,An efficient and spectrally accurate numerical method for computing dynamics of rotating Bose-Einstein condensates.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#BaoW06,https://doi.org/10.1016/j.jcp.2006.01.020 +Piotr K. Smolarkiewicz,A finite-volume module for cloud-resolving simulations of global atmospheric flows.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#SmolarkiewiczKG17,https://doi.org/10.1016/j.jcp.2017.04.008 +Krzysztof J. Fidkowski,Output-based space-time mesh adaptation for the compressible Navier-Stokes equations.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#FidkowskiL11,https://doi.org/10.1016/j.jcp.2011.03.059 +Daniel W. Meyer,Accurate and computationally efficient mixing models for the simulation of turbulent mixing with PDF methods.,2013,247,J. Comput. Physics,,db/journals/jcphy/jcphy247.html#MeyerJ13,https://doi.org/10.1016/j.jcp.2013.03.059 +I. S. Kavvadias,On the proper treatment of grid sensitivities in continuous adjoint methods for shape optimization.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#KavvadiasPG15,https://doi.org/10.1016/j.jcp.2015.08.012 +Qingsong Tu,An updated Lagrangian particle hydrodynamics (ULPH) for Newtonian fluids.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#TuL17,https://doi.org/10.1016/j.jcp.2017.07.031 +Martin Frank,Time-dependent simplified PN approximation to the equations of radiative transfer.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#FrankKLY07,https://doi.org/10.1016/j.jcp.2007.07.009 +James Bremer,Universal quadratures for boundary integral equations on two-dimensional domains with corners.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#BremerRS10,https://doi.org/10.1016/j.jcp.2010.06.040 +Sina Haeri,A new implicit fictitious domain method for the simulation of flow in complex geometries with heat transfer.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#HaeriS13,https://doi.org/10.1016/j.jcp.2012.11.050 +Li Fan,Time dependent scattering from a grating.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#FanM15,https://doi.org/10.1016/j.jcp.2015.07.067 +Samuel J. Araki,Cell-centered particle weighting algorithm for PIC simulations in a non-uniform 2D axisymmetric mesh.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#ArakiW14,https://doi.org/10.1016/j.jcp.2014.04.037 +Jeffery D. Densmore,Asymptotic analysis of the spatial discretization of radiation absorption and re-emission in Implicit Monte Carlo.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#Densmore11,https://doi.org/10.1016/j.jcp.2010.10.030 +R. Masson,Coupling compositional liquid gas Darcy and free gas flows at porous and free-flow domains interface.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#MassonTZ16,https://doi.org/10.1016/j.jcp.2016.06.003 +Cassio M. Oishi,An implicit technique for solving 3D low Reynolds number moving free surface flows.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#OishiTCM08,https://doi.org/10.1016/j.jcp.2008.04.017 +Arthur Moncorgé,Sequential fully implicit formulation for compositional simulation using natural variables.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#MoncorgeTJ18,https://doi.org/10.1016/j.jcp.2018.05.048 +Yao Jin,Optimized low-dissipation and low-dispersion schemes for compressible flows.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#JinLC18,https://doi.org/10.1016/j.jcp.2018.05.049 +Siddharth Savadatti,Accurate absorbing boundary conditions for anisotropic elastic media. Part 2: Untilted non-elliptic anisotropy.,2012,231,J. Comput. Physics,22,db/journals/jcphy/jcphy231.html#SavadattiG12a,https://doi.org/10.1016/j.jcp.2012.05.039 +M. Malovichko,Approximate solutions of acoustic 3D integral equation and their application to seismic modeling and full-waveform inversion.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#MalovichkoKYZ17,https://doi.org/10.1016/j.jcp.2017.06.021 +Guang Lin,Weak Galerkin finite element methods for Darcy flow: Anisotropy and heterogeneity.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#LinLMY14,https://doi.org/10.1016/j.jcp.2014.07.001 +Jinmo Lee,An implicit ghost-cell immersed boundary method for simulations of moving body problems with control of spurious force oscillations.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#LeeY13,https://doi.org/10.1016/j.jcp.2012.08.044 +Annafederica Urbano,An approximate Riemann solver for real gas parabolized Navier-Stokes equations.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#UrbanoN13,https://doi.org/10.1016/j.jcp.2012.09.019 +Jianping Meng,Accuracy analysis of high-order lattice Boltzmann models for rarefied gas flows.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#MengZ11,https://doi.org/10.1016/j.jcp.2010.10.023 +Arne Van Londersele,An in-depth stability analysis of nonuniform FDTD combined with novel local implicitization techniques.,2017,342,J. Comput. Physics,,db/journals/jcphy/jcphy342.html#LonderseleZG17,https://doi.org/10.1016/j.jcp.2017.04.036 +Raimund Bürger,Adaptive multiresolution WENO schemes for multi-species kinematic flow models.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#BurgerK07,https://doi.org/10.1016/j.jcp.2006.11.010 +Ferran Garcia,Exponential versus IMEX high-order time integrators for thermal convection in rotating spherical shells.,2014,264,J. Comput. Physics,,db/journals/jcphy/jcphy264.html#GarciaBNS14,https://doi.org/10.1016/j.jcp.2014.01.033 +Pavel B. Bochev,Fast optimization-based conservative remap of scalar fields through aggregate mass transfer.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#BochevRS13,https://doi.org/10.1016/j.jcp.2013.03.040 +Peter A. E. M. Janssen,Progress in ocean wave forecasting.,2008,227,J. Comput. Physics,7,db/journals/jcphy/jcphy227.html#Janssen08,https://doi.org/10.1016/j.jcp.2007.04.029 +Yan-Feng Wang,Finite analytic numerical method for three-dimensional fluid flow in heterogeneous porous media.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#WangLW14,https://doi.org/10.1016/j.jcp.2014.08.026 +åsmund Ervik,A robust method for calculating interface curvature and normal vectors using an extracted local level set.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#ErvikLM14,https://doi.org/10.1016/j.jcp.2013.09.053 +Manoj K. Rajpoot,Optimal time advancing dispersion relation preserving schemes.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#RajpootSD10,https://doi.org/10.1016/j.jcp.2010.01.018 +Min Hyung Cho,A heterogeneous FMM for layered media Helmholtz equation I: Two layers in R2.,2018,369,J. Comput. Physics,,db/journals/jcphy/jcphy369.html#ChoHCC18,https://doi.org/10.1016/j.jcp.2018.05.007 +Victor Bayona,On the role of polynomials in RBF-FD approximations: II. Numerical solution of elliptic PDEs.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#BayonaFFB17,https://doi.org/10.1016/j.jcp.2016.12.008 +Jun Jia,Fast transform from an adaptive multi-wavelet representation to a partial Fourier representation.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#JiaHF10,https://doi.org/10.1016/j.jcp.2010.04.006 +Sehun Chun,Method of moving frames to solve time-dependent Maxwell's equations on anisotropic curved surfaces: Applications to invisible cloak and ELF propagation.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#Chun17,https://doi.org/10.1016/j.jcp.2017.03.031 +Philip Zwanenburg,Equivalence between the Energy Stable Flux Reconstruction and Filtered Discontinuous Galerkin Schemes.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#ZwanenburgN16,https://doi.org/10.1016/j.jcp.2015.11.036 +Yao-Hsin Hwang,Construction and simulation of a novel continuous traffic flow model.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#HwangY17,https://doi.org/10.1016/j.jcp.2017.09.005 +Patrick Blonigan,Multiple shooting shadowing for sensitivity analysis of chaotic dynamical systems.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#BloniganW18,https://doi.org/10.1016/j.jcp.2017.10.032 +William W. Dai,Second-order accurate interface- and discontinuity-aware diffusion solvers in two and three dimensions.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#DaiS15,https://doi.org/10.1016/j.jcp.2014.10.040 +B. Freytag,Simulations of stellar convection with CO5BOLD.,2012,231,J. Comput. Physics,3,db/journals/jcphy/jcphy231.html#FreytagSLWSS12,https://doi.org/10.1016/j.jcp.2011.09.026 +Guangwei Yuan,Analysis of accuracy of a finite volume scheme for diffusion equations on distorted meshes.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#YuanS07,https://doi.org/10.1016/j.jcp.2006.11.011 +Tapan K. Sengupta,Further improvement and analysis of CCD scheme: Dissipation discretization and de-aliasing properties.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#SenguptaVB09,https://doi.org/10.1016/j.jcp.2009.05.038 +Filipe da Silva,Stable explicit coupling of the Yee scheme with a linear current model in fluctuating magnetized plasmas.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#SilvaPDH15,https://doi.org/10.1016/j.jcp.2015.03.069 +Panagiotis Tsoutsanis,WENO schemes on arbitrary mixed-element unstructured meshes in three space dimensions.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#TsoutsanisTD11,https://doi.org/10.1016/j.jcp.2010.11.023 +Roberto Camassa,Integral and integrable algorithms for a nonlinear shallow-water wave equation.,2006,216,J. Comput. Physics,2,db/journals/jcphy/jcphy216.html#CamassaHL06,https://doi.org/10.1016/j.jcp.2005.12.013 +Eurika Kaiser,Sparsity enabled cluster reduced-order models for control.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#KaiserMDKBB18,https://doi.org/10.1016/j.jcp.2017.09.057 +Jean Michel D. Sellier,On the simulation of indistinguishable fermions in the many-body Wigner formalism.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#SellierD15,https://doi.org/10.1016/j.jcp.2014.09.026 +Gábor Tóth,Hall magnetohydrodynamics on block-adaptive grids.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#TothMG08,https://doi.org/10.1016/j.jcp.2008.04.010 +Xavier Antoine,High-order IMEX-spectral schemes for computing the dynamics of systems of nonlinear Schrödinger/Gross-Pitaevskii equations.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#AntoineBR16,https://doi.org/10.1016/j.jcp.2016.09.020 +Joseph Bakarji,On the use of reverse Brownian motion to accelerate hybrid simulations.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#BakarjiT17,https://doi.org/10.1016/j.jcp.2016.12.032 +Julian A. Simeonov,A pressure boundary integral method for direct fluid-particle simulations on Cartesian grids.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#SimeonovC11,https://doi.org/10.1016/j.jcp.2010.11.027 +Dionysios Angelidis,Unstructured Cartesian refinement with sharp interface immersed boundary method for 3D unsteady incompressible flows.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#AngelidisCS16,https://doi.org/10.1016/j.jcp.2016.08.028 +Shin-ichi Iga,Improved smoothness and homogeneity of icosahedral grids using the spring dynamics method.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#IgaT14,https://doi.org/10.1016/j.jcp.2013.10.013 +Birte Schmidtmann,Hybrid entropy stable HLL-type Riemann solvers for hyperbolic conservation laws.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#SchmidtmannW17,https://doi.org/10.1016/j.jcp.2016.10.034 +Guang-hua Gao,Stability and convergence of finite difference schemes for a class of time-fractional sub-diffusion equations based on certain superconvergence.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#GaoSS15,https://doi.org/10.1016/j.jcp.2014.09.033 +Wensheng Zhang,A new high-order finite volume method for 3D elastic wave simulation on unstructured meshes.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#ZhangZZ17,https://doi.org/10.1016/j.jcp.2017.03.050 +Xuhao Liu,A higher order non-polynomial spline method for fractional sub-diffusion problems.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#LiuW17,https://doi.org/10.1016/j.jcp.2016.10.006 +Fernando Fraternali,On the estimation of the curvatures and bending rigidity of membrane networks via a local maximum-entropy approach.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#FraternaliLM12,https://doi.org/10.1016/j.jcp.2011.09.017 +Youhi Morii,ERENA: A fast and robust Jacobian-free integration method for ordinary differential equations of chemical kinetics.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#MoriiTKSS16,https://doi.org/10.1016/j.jcp.2016.06.022 +Ngoc Cuong Nguyen,An implicit high-order hybridizable discontinuous Galerkin method for linear convection-diffusion equations.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#NguyenPC09,https://doi.org/10.1016/j.jcp.2009.01.030 +Matthias Kirchhart,A splitting-free vorticity redistribution method.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#KirchhartO17,https://doi.org/10.1016/j.jcp.2016.11.014 +Tsutomu Ikeno,Finite-difference immersed boundary method consistent with wall conditions for incompressible turbulent flow simulations.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#IkenoK07,https://doi.org/10.1016/j.jcp.2007.05.028 +Markos A. Katsoulakis,Scalable information inequalities for uncertainty quantification.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#KatsoulakisRW17,https://doi.org/10.1016/j.jcp.2017.02.020 +Chunwu Wang,An interface treating technique for compressible multi-medium flow with Runge-Kutta discontinuous Galerkin method.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#WangS10,https://doi.org/10.1016/j.jcp.2010.08.012 +Kouroush Sadegh Zadeh,A mass-conservative switching algorithm for modeling fluid flow in variably saturated porous media.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#Zadeh11,https://doi.org/10.1016/j.jcp.2010.10.011 +Aarthi Sekaran,An analysis of numerical convergence in discrete velocity gas dynamics for internal flows.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#SekaranVG18,https://doi.org/10.1016/j.jcp.2018.03.023 +Lei Wu 0003,A fast spectral method for the Boltzmann equation for monatomic gas mixtures.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#WuZRZ15,https://doi.org/10.1016/j.jcp.2015.06.019 +Qiang Du,Fast and accurate implementation of Fourier spectral approximations of nonlocal diffusion operators and its applications.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#DuY17,https://doi.org/10.1016/j.jcp.2016.11.028 +Hendrik Ranocha,Extended skew-symmetric form for summation-by-parts operators and varying Jacobians.,2017,342,J. Comput. Physics,,db/journals/jcphy/jcphy342.html#RanochaOS17,https://doi.org/10.1016/j.jcp.2017.04.044 +Alessandro Alaia,A hybrid method for hydrodynamic-kinetic flow - Part II - Coupling of hydrodynamic and kinetic models.,2012,231,J. Comput. Physics,16,db/journals/jcphy/jcphy231.html#AlaiaP12,https://doi.org/10.1016/j.jcp.2012.02.022 +Daniel R. Ladiges,Frequency-domain Monte Carlo method for linear oscillatory gas flows.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#LadigesS15,https://doi.org/10.1016/j.jcp.2014.12.036 +S. V. Dolgov,Low-rank approximation in the numerical modeling of the Farley-Buneman instability in ionospheric plasma.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#DolgovST14,https://doi.org/10.1016/j.jcp.2014.01.029 +Sami Ammar,A multiphase three-dimensional multi-relaxation time (MRT) lattice Boltzmann model with surface tension adjustment.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#AmmarPT17,https://doi.org/10.1016/j.jcp.2017.04.045 +Arnaud Duran,Asymptotic preserving scheme for the shallow water equations with source terms on unstructured meshes.,2015,287,J. Comput. Physics,,db/journals/jcphy/jcphy287.html#DuranMTB15,https://doi.org/10.1016/j.jcp.2015.02.007 +Oleksandr Misiats,Second-order accurate monotone finite volume scheme for Richards' equation.,2013,239,J. Comput. Physics,,db/journals/jcphy/jcphy239.html#MisiatsL13,https://doi.org/10.1016/j.jcp.2012.09.004 +Angela Diggs,Evaluation of methods for calculating volume fraction in Eulerian-Lagrangian multiphase flow simulations.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#DiggsB16,https://doi.org/10.1016/j.jcp.2016.02.066 +Christian Bataillon,Numerical methods for the simulation of a corrosion model with moving oxide layer.,2012,231,J. Comput. Physics,18,db/journals/jcphy/jcphy231.html#BataillonBCFHT12,https://doi.org/10.1016/j.jcp.2012.06.005 +Marion Darbas,Combining analytic preconditioner and Fast Multipole Method for the 3-D Helmholtz equation.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#DarbasDL13,https://doi.org/10.1016/j.jcp.2012.10.059 +Masoud Safdari,A NURBS-based generalized finite element scheme for 3D simulation of heterogeneous materials.,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#SafdariNSG16,https://doi.org/10.1016/j.jcp.2016.05.004 +Xiangxiong Zhang,On maximum-principle-satisfying high order schemes for scalar conservation laws.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#ZhangS10,https://doi.org/10.1016/j.jcp.2009.12.030 +Dongwook Lee,An unsplit staggered mesh scheme for multidimensional magnetohydrodynamics.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#LeeD09,https://doi.org/10.1016/j.jcp.2008.08.026 +Narina Jung,Two-dimensional characteristic boundary conditions for open boundaries in the lattice Boltzmann methods.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#JungSY15,https://doi.org/10.1016/j.jcp.2015.08.044 +Yen Ting Ng,An efficient fluid-solid coupling algorithm for single-phase flows.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#NgMG09,https://doi.org/10.1016/j.jcp.2009.08.032 +Andres Goza,Accurate computation of surface stresses and forces with immersed boundary methods.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#GozaLMC16,https://doi.org/10.1016/j.jcp.2016.06.014 +Arezoo Motavalizadeh Ardekani,Collision of multi-particle and general shape objects in a viscous fluid.,2008,227,J. Comput. Physics,24,db/journals/jcphy/jcphy227.html#ArdekaniDR08,https://doi.org/10.1016/j.jcp.2008.08.014 +Sashikumaar Ganesan,Arbitrary Lagrangian-Eulerian finite-element method for computation of two-phase flows with soluble surfactants.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#GanesanT12,https://doi.org/10.1016/j.jcp.2012.01.018 +Bruno D. Welfert,Analysis of iterated ADI-FDTD schemes for Maxwell curl equations.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#Welfert07,https://doi.org/10.1016/j.jcp.2006.05.038 +Lionel Le Penven,On the spectral accuracy of a fictitious domain method for elliptic operators in multi-dimensions.,2012,231,J. Comput. Physics,23,db/journals/jcphy/jcphy231.html#PenvenB12,https://doi.org/10.1016/j.jcp.2012.07.043 +Abdoulaye Samake,Parallel implementation of a Lagrangian-based model on an adaptive mesh in C++: Application to sea-ice.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#SamakeRBO17,https://doi.org/10.1016/j.jcp.2017.08.055 +William J. Menz,Stochastic solution of population balance equations for reactor networks.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#MenzAK14,https://doi.org/10.1016/j.jcp.2013.09.021 +Xiaochen Wang,Trust-region based solver for nonlinear transport in heterogeneous porous media.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#WangT13,https://doi.org/10.1016/j.jcp.2013.06.041 +Michal Olejnik,SPH with dynamical smoothing length adjustment based on the local flow kinematics.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#OlejnikSP17,https://doi.org/10.1016/j.jcp.2017.07.023 +M. Tzoufras,A Vlasov-Fokker-Planck code for high energy density physics.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#TzoufrasBNT11,https://doi.org/10.1016/j.jcp.2011.04.034 +John N. Shadid,Stabilized FE simulation of prototype thermal-hydraulics problems with integrated adjoint-based capabilities.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#ShadidSCWP16,https://doi.org/10.1016/j.jcp.2016.04.062 +David Sondak,A new class of finite element variational multiscale turbulence models for incompressible magnetohydrodynamics.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#SondakSOPCS15,https://doi.org/10.1016/j.jcp.2015.04.035 +Chiara Sorgentone,A highly accurate boundary integral equation method for surfactant-laden drops in 3D.,2018,360,J. Comput. Physics,,db/journals/jcphy/jcphy360.html#SorgentoneT18,https://doi.org/10.1016/j.jcp.2018.01.033 +Pedro Gonnet,P-SHAKE: A quadratically convergent SHAKE in O(n2).,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#Gonnet07,https://doi.org/10.1016/j.jcp.2006.05.032 +Matthias Läuter,A parallel adaptive barotropic model of the atmosphere.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#LauterHRBFBDH07,https://doi.org/10.1016/j.jcp.2006.09.029 +Chau-Hsing Su,Covariance kernel representations of multidimensional second-order stochastic processes.,2006,217,J. Comput. Physics,1,db/journals/jcphy/jcphy217.html#SuL06,https://doi.org/10.1016/j.jcp.2006.02.006 +Troy D. Butler,Quantifying uncertainty in material damage from vibrational data.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#ButlerHJ15,https://doi.org/10.1016/j.jcp.2014.12.011 +Dirk Lebiedz,Minimal curvature trajectories: Riemannian geometry concepts for slow manifold computation in chemical kinetics.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#LebiedzRS10,https://doi.org/10.1016/j.jcp.2010.05.008 +Ankit V. Bhagatwala,A modified artificial viscosity approach for compressible turbulence simulations.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#BhagatwalaL09,https://doi.org/10.1016/j.jcp.2009.04.009 +E. Gagarina,Variational space-time (dis)continuous Galerkin method for nonlinear free surface water waves.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#GagarinaAVB14,https://doi.org/10.1016/j.jcp.2014.06.035 +M. H. Heydari,An efficient computational method for solving nonlinear stochastic Itô integral equations: Application for stochastic problems in physics.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#HeydariHCG15,https://doi.org/10.1016/j.jcp.2014.11.042 +Simone Marras,A variational multiscale stabilized finite element method for the solution of the Euler equations of nonhydrostatic stratified flows.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#MarrasMVJH13a,https://doi.org/10.1016/j.jcp.2012.10.056 +Masahiro Fujita,Multiscale simulation method for self-organization of nanoparticles in dense suspension.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#FujitaY07,https://doi.org/10.1016/j.jcp.2006.09.001 +Erich L. Foster,A structure preserving scheme for the Kolmogorov-Fokker-Planck equation.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#FosterLT17,https://doi.org/10.1016/j.jcp.2016.11.009 +Kivanc Ekici,Computationally fast harmonic balance methods for unsteady aerodynamic predictions of helicopter rotors.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#EkiciHD08,https://doi.org/10.1016/j.jcp.2008.02.028 +Ludovic Métivier,A robust absorbing layer method for anisotropic seismic wave modeling.,2014,279,J. Comput. Physics,,db/journals/jcphy/jcphy279.html#MetivierBLOV14,https://doi.org/10.1016/j.jcp.2014.09.007 +Marcos Castro,High order weighted essentially non-oscillatory WENO-Z schemes for hyperbolic conservation laws.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#CastroCD11,https://doi.org/10.1016/j.jcp.2010.11.028 +Rixin Yu,An improved high-order scheme for DNS of low Mach number turbulent reacting flows based on stiff chemistry solver.,2012,231,J. Comput. Physics,16,db/journals/jcphy/jcphy231.html#YuYB12,https://doi.org/10.1016/j.jcp.2012.05.006 +Z. Xiong,A high-order finite-volume algorithm for Fokker-Planck collisions in magnetized plasmas.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#XiongCRX08,https://doi.org/10.1016/j.jcp.2008.04.004 +Huafei Sun,An adaptive simplex cut-cell method for high-order discontinuous Galerkin discretizations of elliptic interface problems and conjugate heat transfer problems.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#SunD14,https://doi.org/10.1016/j.jcp.2014.08.035 +Xuehua Yang,Crank-Nicolson/quasi-wavelets method for solving fourth order partial integro-differential equation with a weakly singular kernel.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#YangXZ13,https://doi.org/10.1016/j.jcp.2012.09.037 +Min Hyung Cho,A parallel fast algorithm for computing the Helmholtz integral operator in 3-D layered media.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#ChoC12,https://doi.org/10.1016/j.jcp.2012.05.022 +Zhicheng Yang,A direct Eulerian GRP scheme for relativistic hydrodynamics: One-dimensional case.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#YangHT11,https://doi.org/10.1016/j.jcp.2011.07.004 +Junhui Gao,A block interface flux reconstruction method for numerical simulation with high order finite difference scheme.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#Gao13,https://doi.org/10.1016/j.jcp.2012.12.037 +Hermann Brunner,Numerical simulations of 2D fractional subdiffusion problems.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#BrunnerLY10,https://doi.org/10.1016/j.jcp.2010.05.015 +Mohammad Farazmand,Reduced-order prediction of rogue waves in two-dimensional deep-water waves.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#FarazmandS17,https://doi.org/10.1016/j.jcp.2017.03.054 +Scott A. Norris,Adaptive Localized Replay: An efficient integration scheme for accurate simulation of coarsening dynamical systems.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#NorrisT14,https://doi.org/10.1016/j.jcp.2014.05.003 +Sébastien F. Matringe,Robust streamline tracing for the simulation of porous media flow on general triangular and quadrilateral grids.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#MatringeJT06,https://doi.org/10.1016/j.jcp.2006.07.004 +Johan A. Heyns,A weakly compressible free-surface flow solver for liquid-gas systems using the volume-of-fluid approach.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#HeynsMHO13,https://doi.org/10.1016/j.jcp.2013.01.022 +Lucas O. Müller,A high order approximation of hyperbolic conservation laws in networks: Application to one-dimensional blood flow.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#MullerB15,https://doi.org/10.1016/j.jcp.2015.07.056 +J. Juno,Discontinuous Galerkin algorithms for fully kinetic plasmas.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#JunoHTSD18,https://doi.org/10.1016/j.jcp.2017.10.009 +Matthew W. Kunz,Pegasus: A new hybrid-kinetic particle-in-cell code for astrophysical plasma dynamics.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#KunzSB14,https://doi.org/10.1016/j.jcp.2013.11.035 +Jakob M. Maljaars,A hybridized discontinuous Galerkin framework for high-order particle-mesh operator splitting of the incompressible Navier-Stokes equations.,2018,358,J. Comput. Physics,,db/journals/jcphy/jcphy358.html#MaljaarsLM18,https://doi.org/10.1016/j.jcp.2017.12.036 +Marcus Herrmann,A balanced force refined level set grid method for two-phase flows on unstructured flow solver grids.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#Herrmann08,https://doi.org/10.1016/j.jcp.2007.11.002 +M. De Corato,Finite element formulation of fluctuating hydrodynamics for fluids filled with rigid particles using boundary fitted meshes.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#CoratoSHDMH16,https://doi.org/10.1016/j.jcp.2016.04.040 +Zhen Luo,Shape and topology optimization of compliant mechanisms using a parameterization level set method.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#LuoTWW07,https://doi.org/10.1016/j.jcp.2007.08.011 +L. Haupt,A fast spectral element solver combining static condensation and multigrid techniques.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#HauptSN13,https://doi.org/10.1016/j.jcp.2013.07.035 +Juan Cheng,A high order ENO conservative Lagrangian type scheme for the compressible Euler equations.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#ChengS07,https://doi.org/10.1016/j.jcp.2007.09.017 +Maria Elena Innocenti,Momentum conservation in Multi-Level Multi-Domain (MLMD) simulations.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#InnocentiBML16,https://doi.org/10.1016/j.jcp.2016.02.026 +Sonjoy Das,Polynomial chaos representation of spatio-temporal random fields from experimental measurements.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#DasGF09,https://doi.org/10.1016/j.jcp.2009.08.025 +John W. Barrett 0001,Stable finite element approximations of two-phase flow with soluble surfactant.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#BarrettGN15,https://doi.org/10.1016/j.jcp.2015.05.029 +Weiguo Gao,Iterative minimization algorithm for efficient calculations of transition states.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#GaoLZ16,https://doi.org/10.1016/j.jcp.2015.12.056 +Lucian Ivan,High-order central ENO finite-volume scheme for hyperbolic conservation laws on three-dimensional cubed-sphere grids.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#IvanSSG15,https://doi.org/10.1016/j.jcp.2014.11.002 +Jun Luo,Efficient formulation of scale separation for multi-scale modeling of interfacial flows.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#LuoHA16,https://doi.org/10.1016/j.jcp.2015.11.044 +Gaurav Tomar,Two-phase electrohydrodynamic simulations using a volume-of-fluid approach.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#TomarGBASDWD07,https://doi.org/10.1016/j.jcp.2007.09.003 +T. D. Ringler,A unified approach to energy conservation and potential vorticity dynamics for arbitrarily-structured C-grids.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#RinglerTKS10,https://doi.org/10.1016/j.jcp.2009.12.007 +Kay Hamacher,Efficient perturbation analysis of elastic network models - Application to acetylcholinesterase of T. californica.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#Hamacher10,https://doi.org/10.1016/j.jcp.2010.06.015 +Arnau Pont,Unified solver for fluid dynamics and aeroacoustics in isentropic gas flows.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#PontCBG18,https://doi.org/10.1016/j.jcp.2018.02.029 +Dong-Yeop Na,Axisymmetric charge-conservative electromagnetic particle simulation algorithm on unstructured grids: Application to microwave vacuum electronic devices.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#NaOMBT17,https://doi.org/10.1016/j.jcp.2017.06.016 +Paul J. Atzberger,Spatially adaptive stochastic numerical methods for intrinsic fluctuations in reaction-diffusion systems.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#Atzberger10,https://doi.org/10.1016/j.jcp.2010.01.012 +Brian R. Nease,Time series analysis and Monte Carlo methods for eigenvalue separation in neutron multiplication problems.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#NeaseU09,https://doi.org/10.1016/j.jcp.2009.07.037 +Marco Restelli,A semi-Lagrangian discontinuous Galerkin method for scalar advection by incompressible flows.,2006,216,J. Comput. Physics,1,db/journals/jcphy/jcphy216.html#RestelliBS06,https://doi.org/10.1016/j.jcp.2005.11.030 +Nianyu Yi,A direct discontinuous Galerkin method for the generalized Korteweg-de Vries equation: Energy conservation and boundary effect.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#YiHL13,https://doi.org/10.1016/j.jcp.2013.01.031 +Nauman Raza,Sobolev gradient approach for the time evolution related to energy minimization of Ginzburg-Landau functionals.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#RazaSS09,https://doi.org/10.1016/j.jcp.2008.12.017 +R. I. Saye,Multiscale modelling of evolving foams.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#SayeS16,https://doi.org/10.1016/j.jcp.2016.02.077 +Roger Temam,Suitable initial conditions.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#Temam06,https://doi.org/10.1016/j.jcp.2006.03.033 +Bernard Parent,Positivity-preserving flux difference splitting schemes.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#Parent13,https://doi.org/10.1016/j.jcp.2013.02.048 +Simon Abraham,A robust and efficient stepwise regression method for building sparse polynomial chaos expansions.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#AbrahamRGCL17,https://doi.org/10.1016/j.jcp.2016.12.015 +Kailiang Wu,A stochastic Galerkin method for first-order quasilinear hyperbolic systems with uncertainty.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#WuTX17,https://doi.org/10.1016/j.jcp.2017.05.027 +Romain Teyssier,Kinematic dynamos using constrained transport with high order Godunov schemes and adaptive mesh refinement.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#TeyssierFD06,https://doi.org/10.1016/j.jcp.2006.01.042 +Ping Wang,Modeling material responses by arbitrary Lagrangian Eulerian formulation and adaptive mesh refinement method.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#Wang10,https://doi.org/10.1016/j.jcp.2009.10.045 +Shugo Yasuda,Monte Carlo simulation for kinetic chemotaxis model: An application to the traveling population wave.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#Yasuda17,https://doi.org/10.1016/j.jcp.2016.10.066 +Feng Feng,Finite element modeling of lipid bilayer membranes.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#FengK06,https://doi.org/10.1016/j.jcp.2006.05.023 +Zhao Yu,An interaction potential based lattice Boltzmann method with adaptive mesh refinement (AMR) for two-phase flow simulation.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#YuF09,https://doi.org/10.1016/j.jcp.2009.05.034 +Hong Luo,A Hermite WENO-based limiter for discontinuous Galerkin method on unstructured grids.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#LuoBL07,https://doi.org/10.1016/j.jcp.2006.12.017 +Shaojing Li,Fast evaluation of Helmholtz potential on graphics processing units (GPUs).,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#LiLL10,https://doi.org/10.1016/j.jcp.2010.07.029 +Erin D. Fichtl,Krylov iterative methods and synthetic acceleration for transport in binary statistical media.,2009,228,J. Comput. Physics,22,db/journals/jcphy/jcphy228.html#FichtlWP09,https://doi.org/10.1016/j.jcp.2009.08.013 +Maria-Grazia Ascenzi,Individual-specific multi-scale finite element simulation of cortical bone of human proximal femur.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#AscenziKLKNK13,https://doi.org/10.1016/j.jcp.2012.05.027 +X. Z. Tang,Numerical computation of the helical Chandrasekhar-Kendall modes.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#Tang11,https://doi.org/10.1016/j.jcp.2010.07.033 +Jahrul M. Alam,Simultaneous space-time adaptive wavelet solution of nonlinear parabolic differential equations.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#AlamKV06,https://doi.org/10.1016/j.jcp.2005.10.009 +Yukihiro Komura,GPU-based single-cluster algorithm for the simulation of the Ising model.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#KomuraO12,https://doi.org/10.1016/j.jcp.2011.09.029 +Guanghui Hu,A multilevel correction adaptive finite element method for Kohn-Sham equation.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#HuXX18,https://doi.org/10.1016/j.jcp.2017.11.024 +Aamer Haque,Three-dimensional boundary detection for particle methods.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#HaqueD07,https://doi.org/10.1016/j.jcp.2007.06.012 +Peter D. Düben,A discontinuous/continuous low order finite element shallow water model on the sphere.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#DubenKA12,https://doi.org/10.1016/j.jcp.2011.11.018 +Shin K. Kang,The effect of lattice models within the lattice Boltzmann method in the simulation of wall-bounded turbulent flows.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#KangH13,https://doi.org/10.1016/j.jcp.2012.07.023 +Ehssan Nazockdast,A fast platform for simulating semi-flexible fiber suspensions applied to cell mechanics.,2017,329,J. Comput. Physics,,db/journals/jcphy/jcphy329.html#NazockdastRZS17,https://doi.org/10.1016/j.jcp.2016.10.026 +Yue Yu,Generalized fictitious methods for fluid-structure interactions: Analysis and simulations.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#YuBK13,https://doi.org/10.1016/j.jcp.2013.03.025 +Tuomas Airaksinen,An algebraic multigrid based shifted-Laplacian preconditioner for the Helmholtz equation.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#AiraksinenHPT07,https://doi.org/10.1016/j.jcp.2007.05.013 +Hehu Xie,Metric tensors for the interpolation error and its gradient in Lp norm.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#XieY14,https://doi.org/10.1016/j.jcp.2013.09.008 +J. R. Maddison,Directional integration on unstructured meshes via supermesh construction.,2012,231,J. Comput. Physics,12,db/journals/jcphy/jcphy231.html#MaddisonF12,https://doi.org/10.1016/j.jcp.2012.02.009 +Andrea Y. Weiße,Error-controlled global sensitivity analysis of ordinary differential equations.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#WeisseH11,https://doi.org/10.1016/j.jcp.2011.05.011 +Leopold Grinberg,Parallel multiscale simulations of a brain aneurysm.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#GrinbergFK13,https://doi.org/10.1016/j.jcp.2012.08.023 +Gang Guo,Lattice Monte Carlo simulation of Galilei variant anomalous diffusion.,2015,288,J. Comput. Physics,,db/journals/jcphy/jcphy288.html#GuoBU15,https://doi.org/10.1016/j.jcp.2015.02.017 +Bruce I. Cohen,Monte Carlo calculation of large and small-angle electron scattering in air.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#CohenHEFFGL17,https://doi.org/10.1016/j.jcp.2017.08.014 +R. Ahlfeld,SAMBA: Sparse Approximation of Moment-Based Arbitrary Polynomial Chaos.,2016,320,J. Comput. Physics,,db/journals/jcphy/jcphy320.html#AhlfeldBM16,https://doi.org/10.1016/j.jcp.2016.05.014 +Janusz A. Pudykiewicz,On numerical solution of the shallow water equations with chemical reactions on icosahedral geodesic grid.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#Pudykiewicz11,https://doi.org/10.1016/j.jcp.2010.11.045 +Alina Chertock,Well-balanced schemes for the Euler equations with gravitation: Conservative formulation using global fluxes.,2018,358,J. Comput. Physics,,db/journals/jcphy/jcphy358.html#ChertockCKOT18,https://doi.org/10.1016/j.jcp.2017.12.026 +B. Sanderse,Energy-conserving Runge-Kutta methods for the incompressible Navier-Stokes equations.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#Sanderse13,https://doi.org/10.1016/j.jcp.2012.07.039 +Zhen Luo,Design of piezoelectric actuators using a multiphase level set method of piecewise constants.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#LuoTLWW09,https://doi.org/10.1016/j.jcp.2008.12.019 +Zheng Fang,An operator expansions method for computing Dirichlet-Neumann operators in linear elastodynamics.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#FangN14,https://doi.org/10.1016/j.jcp.2014.04.038 +Shi Jin,Hamiltonian-preserving schemes for the Liouville equation of geometrical optics with discontinuous local wave speeds.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#JinW06,https://doi.org/10.1016/j.jcp.2005.10.012 +Eun-Sug Lee,Comparisons of weakly compressible and truly incompressible algorithms for the SPH mesh free particle method.,2008,227,J. Comput. Physics,18,db/journals/jcphy/jcphy227.html#LeeMXVLS08,https://doi.org/10.1016/j.jcp.2008.06.005 +Svenn Tveit,Identification of subsurface structures using electromagnetic data and shape priors.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#TveitBLM15,https://doi.org/10.1016/j.jcp.2014.12.041 +C. Brehm,A novel concept for the design of immersed interface methods.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#BrehmF13,https://doi.org/10.1016/j.jcp.2013.01.027 +Gordon L. Olson,Efficient solution of multi-dimensional flux-limited nonequilibrium radiation diffusion coupled to material conduction with second-order time discretization.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#Olson07,https://doi.org/10.1016/j.jcp.2007.05.015 +Ghulam M. Arshed,Minimizing errors from linear and nonlinear weights of WENO scheme for broadband applications with shock waves.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#ArshedH13,https://doi.org/10.1016/j.jcp.2013.03.037 +J. D. Berry,A multiphase electrokinetic flow model for electrolytes with liquid/liquid interfaces.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#BerryDH13,https://doi.org/10.1016/j.jcp.2013.05.026 +Raphaël Loubère,ReALE: A reconnection-based arbitrary-Lagrangian-Eulerian method.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#LoubereMSBG10,https://doi.org/10.1016/j.jcp.2010.03.011 +B. J. Gross,Hydrodynamic flows on curved surfaces: Spectral numerical methods for radial manifold shapes.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#GrossA18,https://doi.org/10.1016/j.jcp.2018.06.013 +Xiaoliang Wan,An adaptive high-order minimum action method.,2011,230,J. Comput. Physics,24,db/journals/jcphy/jcphy230.html#Wan11,https://doi.org/10.1016/j.jcp.2011.08.006 +Jan Nordström,Summation-by-parts in time.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#NordstromL13,https://doi.org/10.1016/j.jcp.2013.05.042 +Lee Lindblom,Constructing reference metrics on multicube representations of arbitrary manifolds.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#LindblomTR16,https://doi.org/10.1016/j.jcp.2016.02.029 +Daniel A. Barcarolo,Adaptive particle refinement and derefinement applied to the smoothed particle hydrodynamics method.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#BarcaroloTOV14,https://doi.org/10.1016/j.jcp.2014.05.040 +Wim M. van Rees,A comparison of vortex and pseudo-spectral methods for the simulation of periodic vortical flows at high Reynolds numbers.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#ReesLPK11,https://doi.org/10.1016/j.jcp.2010.11.031 +Gerald Paul,A Complexity O(1) priority queue for event driven molecular dynamics simulations.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#Paul07,https://doi.org/10.1016/j.jcp.2006.06.042 +C. de Dieuleveult,A global strategy for solving reactive transport equations.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#DieuleveultEK09,https://doi.org/10.1016/j.jcp.2009.05.044 +Lucian Ivan,Multi-dimensional finite-volume scheme for hyperbolic conservation laws on three-dimensional solution-adaptive cubed-sphere grids.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#IvanSNG13,https://doi.org/10.1016/j.jcp.2013.08.008 +Daniele Venturi 0002,New evolution equations for the joint response-excitation probability density function of stochastic solutions to first-order nonlinear PDEs.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#VenturiK12,https://doi.org/10.1016/j.jcp.2012.07.013 +Eric Brown-Dymkoski,A characteristic based volume penalization method for general evolution problems applied to compressible viscous flows.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#Brown-DymkoskiKV14,https://doi.org/10.1016/j.jcp.2013.12.060 +Seungjoon Lee,A general CFD framework for fault-resilient simulations based on multi-resolution information fusion.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#LeeKK17a,https://doi.org/10.1016/j.jcp.2017.06.044 +S. van Veldhuizen,On projected Newton-Krylov solvers for instationary laminar reacting gas flows.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#VeldhuizenVK10,https://doi.org/10.1016/j.jcp.2009.11.004 +Pablo Fernández 0002,The hybridized Discontinuous Galerkin method for Implicit Large-Eddy Simulation of transitional turbulent flows.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#FernandezNP17,https://doi.org/10.1016/j.jcp.2017.02.015 +J. J. B. Silva,Numerical approach of the quantum circuit theory.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#SilvaDA17,https://doi.org/10.1016/j.jcp.2016.12.028 +Wei Wang 0027,Construction of low dissipative high-order well-balanced filter schemes for non-equilibrium flows.,2011,230,J. Comput. Physics,11,db/journals/jcphy/jcphy230.html#WangYSMS11,https://doi.org/10.1016/j.jcp.2010.04.033 +Lingxiao Li,A robust solver for the finite element approximation of stationary incompressible MHD equations in 3D.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#LiZ17,https://doi.org/10.1016/j.jcp.2017.09.025 +Limei Li,Alternating direction implicit-Euler method for the two-dimensional fractional evolution equation.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#LiX13,https://doi.org/10.1016/j.jcp.2012.11.005 +Sergey N. Averkin,A parallel electrostatic Particle-in-Cell method on unstructured tetrahedral grids for large-scale bounded collisionless plasma simulations.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#AverkinG18,https://doi.org/10.1016/j.jcp.2018.02.011 +Carlos Pantano,A low numerical dissipation patch-based adaptive mesh refinement method for large-eddy simulation of compressible flows.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#PantanoD0P07,https://doi.org/10.1016/j.jcp.2006.06.011 +Anita Mayo,Fourth order accurate evaluation of integrals in potential theory on exterior 3D regions.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#MayoG07,https://doi.org/10.1016/j.jcp.2006.05.042 +Patrick L. Nash,A new fourth-order Fourier-Bessel split-step method for the extended nonlinear Schrödinger equation.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#Nash08,https://doi.org/10.1016/j.jcp.2007.10.012 +Elena Celledoni,Semi-Lagrangian multistep exponential integrators for index 2 differential-algebraic systems.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#CelledoniK11,https://doi.org/10.1016/j.jcp.2011.01.036 +Nicolas Crouseilles,A parallel Vlasov solver based on local cubic spline interpolation on patches.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#CrouseillesLS09,https://doi.org/10.1016/j.jcp.2008.10.041 +Kyle Mahady,A volume of fluid method for simulating fluid/fluid interfaces in contact with solid boundaries.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#MahadyAK15,https://doi.org/10.1016/j.jcp.2015.03.051 +Dorian Fructus,An explicit method for the nonlinear interaction between water waves and variable and moving bottom topography.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#FructusG07,https://doi.org/10.1016/j.jcp.2006.08.014 +G. A. Cooper,BECOOL: Ballooning eigensolver with COOL finite elements.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#CooperGCGP09,https://doi.org/10.1016/j.jcp.2009.04.004 +Laiping Zhang,A class of hybrid DG/FV methods for conservation laws I: Basic formulation and one-dimensional systems.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#ZhangWHDZ12,https://doi.org/10.1016/j.jcp.2011.06.010 +David J. Miller,A fully adaptive reaction-diffusion integration scheme with applications to systems biology.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#MillerG07,https://doi.org/10.1016/j.jcp.2007.05.031 +Peter Moore,Simulation and measurement of flow generated noise.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#MooreSB07,https://doi.org/10.1016/j.jcp.2007.04.006 +Amit Hochman,On the use of rational-function fitting methods for the solution of 2D Laplace boundary-value problems.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#HochmanLW13,https://doi.org/10.1016/j.jcp.2012.08.015 +Bruno Lombard,Numerical modeling of nonlinear acoustic waves in a tube connected with Helmholtz resonators.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#LombardM14,https://doi.org/10.1016/j.jcp.2013.11.036 +Zhen Peng,A boundary integral equation domain decomposition method for electromagnetic scattering from large and deep cavities.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#PengLL15,https://doi.org/10.1016/j.jcp.2014.10.010 +Natasha Flyer,A guide to RBF-generated finite differences for nonlinear transport: Shallow water simulations on a sphere.,2012,231,J. Comput. Physics,11,db/journals/jcphy/jcphy231.html#FlyerLBWS12,https://doi.org/10.1016/j.jcp.2012.01.028 +Vasileios Symeonidis,A family of time-staggered schemes for integrating hybrid DPD models for polymers: Algorithms and applications.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#SymeonidisK06,https://doi.org/10.1016/j.jcp.2006.01.043 +Mike Nicholas,A high accuracy algorithm for 3D periodic electromagnetic scattering.,2010,229,J. Comput. Physics,21,db/journals/jcphy/jcphy229.html#Nicholas10,https://doi.org/10.1016/j.jcp.2010.07.028 +Björn Engquist,Fast sweeping methods for hyperbolic systems of conservation laws at steady state II.,2015,286,J. Comput. Physics,,db/journals/jcphy/jcphy286.html#EngquistFT15,https://doi.org/10.1016/j.jcp.2015.01.028 +Konstantin Lipnikov,Mimetic finite difference method.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#LipnikovMS14,https://doi.org/10.1016/j.jcp.2013.07.031 +Chao Gao,Reducing the effects of compressibility in DPD-based blood flow simulations through severe stenotic microchannels.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#GaoZMDB17,https://doi.org/10.1016/j.jcp.2017.01.062 +R. S. Maier,Lattice-Boltzmann accuracy in pore-scale flow simulation.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#MaierB10,https://doi.org/10.1016/j.jcp.2009.09.013 +Yu-Chen Shu,Accurate gradient approximation for complex interface problems in 3D by an improved coupling interface method.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#ShuCC14,https://doi.org/10.1016/j.jcp.2014.07.017 +Björn Sjögreen,High order entropy conservative central schemes for wide ranges of compressible gas dynamics and MHD flows.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#SjogreenY18,https://doi.org/10.1016/j.jcp.2018.02.003 +Joshua Hansel,Flux-corrected transport techniques applied to the radiation transport equation discretized with continuous finite elements.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#HanselR18,https://doi.org/10.1016/j.jcp.2017.10.029 +Hong Zhao,A fixed-mesh method for incompressible flow-structure systems with finite solid deformations.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#ZhaoFM08,https://doi.org/10.1016/j.jcp.2007.11.019 +Virginie Ehrlacher,A dynamical adaptive tensor method for the Vlasov-Poisson system.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#EhrlacherL17,https://doi.org/10.1016/j.jcp.2017.03.015 +Andreas Nold,Pseudospectral methods for density functional theory in bounded and unbounded domains.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#NoldGYSK17,https://doi.org/10.1016/j.jcp.2016.12.023 +Carl R. Sovinec,Analysis of a mixed semi-implicit/implicit algorithm for low-frequency two-fluid plasma modeling.,2010,229,J. Comput. Physics,16,db/journals/jcphy/jcphy229.html#SovinecK10,https://doi.org/10.1016/j.jcp.2010.04.022 +Prateek Sharma,Preserving monotonicity in anisotropic diffusion.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#SharmaH07,https://doi.org/10.1016/j.jcp.2007.07.026 +Weipeng Hu,Generalized multi-symplectic integrators for a class of Hamiltonian nonlinear wave PDEs.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#HuDHZ13,https://doi.org/10.1016/j.jcp.2012.10.032 +Xin Bian,Multi-resolution flow simulations by smoothed particle hydrodynamics via domain decomposition.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#BianLK15,https://doi.org/10.1016/j.jcp.2015.04.044 +Haihu Liu,A lattice Boltzmann method for axisymmetric multicomponent flows with high viscosity ratio.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#LiuWBXZ16,https://doi.org/10.1016/j.jcp.2016.10.007 +Zhiliang Xu,New central and central discontinuous Galerkin schemes on overlapping cells of unstructured grids for solving ideal magnetohydrodynamic equations with globally divergence-free magnetic field.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#XuL16,https://doi.org/10.1016/j.jcp.2016.09.044 +Wanjun Song,Memory-optimized shift operator alternating direction implicit finite difference time domain method for plasma.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#SongZ17,https://doi.org/10.1016/j.jcp.2017.08.017 +Kuan Li,An optimal Galerkin scheme to solve the kinematic dynamo eigenvalue problem in a full sphere.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#LiLJ10,https://doi.org/10.1016/j.jcp.2010.07.039 +Martin Geier,Parametrization of the cumulant lattice Boltzmann method for fourth order accurate diffusion part I: Derivation and validation.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#GeierPS17,https://doi.org/10.1016/j.jcp.2017.05.040 +Robert R. Nourgaliev,Numerical prediction of interfacial instabilities: Sharp interface method (SIM).,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#NourgalievLT08,https://doi.org/10.1016/j.jcp.2007.12.008 +Michael Dumbser,High order ADER schemes for a unified first order hyperbolic formulation of Newtonian continuum mechanics coupled with electro-dynamics.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#DumbserPRZ17,https://doi.org/10.1016/j.jcp.2017.07.020 +Yuriy Bidasyuk,Improved convergence of scattering calculations in the oscillator representation.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#BidasyukV13,https://doi.org/10.1016/j.jcp.2012.09.018 +S. J. Kamkar,Feature-driven Cartesian adaptive mesh refinement for vortex-dominated flows.,2011,230,J. Comput. Physics,16,db/journals/jcphy/jcphy230.html#KamkarWSJ11,https://doi.org/10.1016/j.jcp.2011.04.024 +Thomas Y. Hou,An iteratively adaptive multi-scale finite element method for elliptic PDEs with rough coefficients.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#HouHLY17,https://doi.org/10.1016/j.jcp.2017.02.002 +James Bremer,Efficient discretization of Laplace boundary integral equations on polygonal domains.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#BremerR10,https://doi.org/10.1016/j.jcp.2009.12.001 +Christophe Berthon,Efficient well-balanced hydrostatic upwind schemes for shallow-water equations.,2012,231,J. Comput. Physics,15,db/journals/jcphy/jcphy231.html#BerthonF12,https://doi.org/10.1016/j.jcp.2012.02.031 +Héctor D. Ceniceros,A new approach for the numerical solution of diffusion equations with variable and degenerate mobility.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#CenicerosG13,https://doi.org/10.1016/j.jcp.2013.03.036 +Dokyun Kim,Immersed boundary method for flow around an arbitrarily moving body.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#KimC06,https://doi.org/10.1016/j.jcp.2005.07.010 +Adrianna Gillman,A fast direct solver for quasi-periodic scattering problems.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#GillmanB13,https://doi.org/10.1016/j.jcp.2013.04.015 +Haoxiang Luo,An immersed-boundary method for flow-structure interaction in biological systems with application to phonation.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#LuoMZBWH08,https://doi.org/10.1016/j.jcp.2008.05.001 +Marcos Vanella,A direct-forcing embedded-boundary method with adaptive mesh refinement for fluid-structure interaction problems.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#VanellaRB10,https://doi.org/10.1016/j.jcp.2010.05.003 +Anatoly A. Alikhanov,A new difference scheme for the time fractional diffusion equation.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#Alikhanov15,https://doi.org/10.1016/j.jcp.2014.09.031 +Ozlem Ozgun,Software metamaterials: Transformation media based multiscale techniques for computational electromagnetics.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#OzgunK13,https://doi.org/10.1016/j.jcp.2012.11.015 +Horacio J. Aguerre,Conservative handling of arbitrary non-conformal interfaces using an efficient supermesh.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#AguerreDGN17,https://doi.org/10.1016/j.jcp.2017.01.018 +Christiane Helzel,An unstaggered constrained transport method for the 3D ideal magnetohydrodynamic equations.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#HelzelRT11,https://doi.org/10.1016/j.jcp.2011.02.009 +Hailiang Liu,A local discontinuous Galerkin method for the Korteweg-de Vries equation with boundary effect.,2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#LiuY06,https://doi.org/10.1016/j.jcp.2005.10.016 +Yao Fu,Heat flux expressions that satisfy the conservation laws in atomistic system involving multibody potentials.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#FuS15,https://doi.org/10.1016/j.jcp.2015.03.050 +Nikos Nikolopoulos,Three-dimensional numerical investigation of a droplet impinging normally onto a wall film.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#NikolopoulosTB07,https://doi.org/10.1016/j.jcp.2006.12.002 +Xiaocheng Guo,An extended HLLC Riemann solver for the magneto-hydrodynamics including strong internal magnetic field.,2015,290,J. Comput. Physics,,db/journals/jcphy/jcphy290.html#Guo15,https://doi.org/10.1016/j.jcp.2015.02.048 +Huajun Zhu,Symplectic wavelet collocation method for Hamiltonian wave equations.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#ZhuTSTW10,https://doi.org/10.1016/j.jcp.2009.11.042 +Assyr Abdulle,Reduced basis finite element heterogeneous multiscale method for high-order discretizations of elliptic homogenization problems.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#AbdulleB12,https://doi.org/10.1016/j.jcp.2012.02.019 +Bouchra Bensiali,Comparison of different interpolation operators including nonlinear subdivision schemes in the simulation of particle trajectories.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#BensialiBCGL13,https://doi.org/10.1016/j.jcp.2012.11.025 +Guang-hua Gao,The finite difference approximation for a class of fractional sub-diffusion equations on a space unbounded domain.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#GaoS13,https://doi.org/10.1016/j.jcp.2012.11.011 +Juan Cheng,A cell-centered Lagrangian scheme with the preservation of symmetry and conservation properties for compressible fluid flows in two-dimensional cylindrical geometry.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#ChengS10,https://doi.org/10.1016/j.jcp.2010.06.007 +Graham W. Alldredge,Adaptive change of basis in entropy-based moment closures for linear kinetic equations.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#AlldredgeHOT14,https://doi.org/10.1016/j.jcp.2013.10.049 +Matthew E. Hubbard,Discontinuous fluctuation distribution.,2008,227,J. Comput. Physics,24,db/journals/jcphy/jcphy227.html#Hubbard08,https://doi.org/10.1016/j.jcp.2008.08.017 +Yu-Chen Shu,Augmented coupling interface method for solving eigenvalue problems with sign-changed coefficients.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#ShuKCC10,https://doi.org/10.1016/j.jcp.2010.09.001 +Matt Jacobs,Auction dynamics: A volume constrained MBO scheme.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#JacobsME18,https://doi.org/10.1016/j.jcp.2017.10.036 +Tomoharu Hatori,Level-by-level artificial viscosity and visualization for MHD simulation with adaptive mesh refinement.,2016,319,J. Comput. Physics,,db/journals/jcphy/jcphy319.html#HatoriINUM16,https://doi.org/10.1016/j.jcp.2016.04.064 +Joo-Sung Kim,An efficient and robust implicit operator for upwind point Gauss-Seidel method.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#KimK07,https://doi.org/10.1016/j.jcp.2006.11.008 +Akihiro Takezawa,Shape and topology optimization based on the phase field method and sensitivity analysis.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#TakezawaNK10,https://doi.org/10.1016/j.jcp.2009.12.017 +Axelle Viré,On discretization errors and subgrid scale model implementations in large eddy simulations.,2009,228,J. Comput. Physics,22,db/journals/jcphy/jcphy228.html#VireK09,https://doi.org/10.1016/j.jcp.2008.12.024 +Julien Chauchat,A three-dimensional numerical model for dense granular flows based on the andmicro*(I) rheology.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#ChauchatM14,https://doi.org/10.1016/j.jcp.2013.09.004 +Lifei Zhao,Active learning of constitutive relation from mesoscopic dynamics for macroscopic modeling of non-Newtonian flows.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#Zhao0COK18,https://doi.org/10.1016/j.jcp.2018.02.039 +Yang He,Higher order volume-preserving schemes for charged particle dynamics.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#HeSLQ16,https://doi.org/10.1016/j.jcp.2015.10.032 +María-Luisa Rapún,LUPOD: Collocation in POD via LU decomposition.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#RapunTV17,https://doi.org/10.1016/j.jcp.2017.01.005 +G. Kotalczyk,A Monte Carlo method for the simulation of coagulation and nucleation based on weighted particles and the concepts of stochastic resolution and merging.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#KotalczykK17,https://doi.org/10.1016/j.jcp.2017.03.041 +Cyril Galitzine,An adaptive procedure for the numerical parameters of a particle simulation.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#GalitzineB15,https://doi.org/10.1016/j.jcp.2014.10.044 +Ling Lin,A numerical method for the study of nucleation of ordered phases.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#LinCESZ10,https://doi.org/10.1016/j.jcp.2009.11.009 +Ryan G. McClarren,On solutions to the Pn equations for thermal radiative transfer.,2008,227,J. Comput. Physics,5,db/journals/jcphy/jcphy227.html#McClarrenHB08,https://doi.org/10.1016/j.jcp.2007.11.027 +J. Zitelli,A class of discontinuous Petrov-Galerkin methods. Part IV: The optimal test norm and time-harmonic wave propagation in 1D.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#ZitelliMDGPC11,https://doi.org/10.1016/j.jcp.2010.12.001 +Jichun Li,Analysis and application of the nodal discontinuous Galerkin method for wave propagation in metamaterials.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#LiH14,https://doi.org/10.1016/j.jcp.2013.11.018 +S. Kudriakov,On a new defect of shock-capturing methods.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#KudriakovH08,https://doi.org/10.1016/j.jcp.2007.10.014 +Piotr K. Smolarkiewicz,Pores resolving simulation of Darcy flows.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#SmolarkiewiczW10,https://doi.org/10.1016/j.jcp.2009.12.031 +Simone Elke Hieber,A Lagrangian particle method for the simulation of linear and nonlinear elastic models of soft tissue.,2008,227,J. Comput. Physics,21,db/journals/jcphy/jcphy227.html#HieberK08a,https://doi.org/10.1016/j.jcp.2008.05.016 +John P. Boyd 0001,The uselessness of the Fast Gauss Transform for summing Gaussian radial basis function series.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#Boyd10,https://doi.org/10.1016/j.jcp.2009.10.032 +Jean-Christophe Boniface,Rescaling of the Roe scheme in low Mach-number flow regions.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#Boniface17,https://doi.org/10.1016/j.jcp.2016.10.011 +Lee A. Berry,Event-based parareal: A data-flow based implementation of parareal.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#BerryERSSN12,https://doi.org/10.1016/j.jcp.2012.05.016 +Ian G. Grooms,Ensemble Kalman filters for dynamical systems with unresolved turbulence.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#GroomsLM14,https://doi.org/10.1016/j.jcp.2014.05.037 +Yingda Cheng,Energy-conserving discontinuous Galerkin methods for the Vlasov-Maxwell system.,2014,279,J. Comput. Physics,,db/journals/jcphy/jcphy279.html#ChengCZ14,https://doi.org/10.1016/j.jcp.2014.08.041 +Christian Soize,Data-driven probability concentration and sampling on manifold.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#SoizeG16,https://doi.org/10.1016/j.jcp.2016.05.044 +Victor Michel-Dansac,A well-balanced scheme for the shallow-water equations with topography or Manning friction.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#Michel-DansacBC17,https://doi.org/10.1016/j.jcp.2017.01.009 +Maria Zacharioudaki,A direct comparison between volume and surface tracking methods with a boundary-fitted coordinate transformation and third-order upwinding.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#ZacharioudakiKDT07,https://doi.org/10.1016/j.jcp.2007.09.004 +Boris N. Azarenok,A method of constructing adaptive hexahedral moving grids.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#Azarenok07,https://doi.org/10.1016/j.jcp.2007.05.010 +Olga Podvigina,The Cauchy-Lagrangian method for numerical analysis of Euler flow.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#PodviginaZF16,https://doi.org/10.1016/j.jcp.2015.11.045 +AbdoulAhad Validi,Low-rank separated representation surrogates of high-dimensional stochastic functions: Application in Bayesian inference.,2014,260,J. Comput. Physics,,db/journals/jcphy/jcphy260.html#Validi14,https://doi.org/10.1016/j.jcp.2013.12.024 +Zupeng Jia,Two new three-dimensional contact algorithms for staggered Lagrangian Hydrodynamics.,2014,267,J. Comput. Physics,,db/journals/jcphy/jcphy267.html#JiaGZL14,https://doi.org/10.1016/j.jcp.2014.02.042 +Mike A. Botchev,The Gautschi time stepping scheme for edge finite element discretizations of the Maxwell equations.,2006,216,J. Comput. Physics,2,db/journals/jcphy/jcphy216.html#BotchevHV06,https://doi.org/10.1016/j.jcp.2006.01.014 +Stephen R. Lau,Stellar surface as low-rank modification in iterative methods for binary neutron stars.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#Lau17,https://doi.org/10.1016/j.jcp.2017.07.026 +Lenka Dubcova,Comparison of mul*h hp-FEM to interpolation and projection methods for spatial coupling of thermal and neutron diffusion calculations.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#DubcovaSHP11,https://doi.org/10.1016/j.jcp.2010.10.034 +Saul A. Teukolsky,Short note on the mass matrix for Gauss-Lobatto grid points.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#Teukolsky15,https://doi.org/10.1016/j.jcp.2014.12.012 +Peter McCorquodale,High-order finite-volume methods for hyperbolic conservation laws on mapped multiblock grids.,2015,288,J. Comput. Physics,,db/journals/jcphy/jcphy288.html#McCorquodaleDHC15,https://doi.org/10.1016/j.jcp.2015.01.006 +Daniel Appelö,A new absorbing layer for elastic waves.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#AppeloK06,https://doi.org/10.1016/j.jcp.2005.11.006 +Irina Sagert,Hydrodynamic shock wave studies within a kinetic Monte Carlo approach.,2014,266,J. Comput. Physics,,db/journals/jcphy/jcphy266.html#SagertBCHPSS14,https://doi.org/10.1016/j.jcp.2014.02.019 +Fan Zhang,Incompressible material point method for free surface flow.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#ZhangZSLL17,https://doi.org/10.1016/j.jcp.2016.10.064 +Chih-Hao Chang,A robust and accurate approach to computing compressible multiphase flow: Stratified flow model and AUSM+-up scheme.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#ChangL07,https://doi.org/10.1016/j.jcp.2007.01.007 +Christophe Chalons,An all-regime Lagrange-Projection like scheme for 2D homogeneous models for two-phase flows on unstructured meshes.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#ChalonsGK17,https://doi.org/10.1016/j.jcp.2017.01.017 +Wonjung Lee,Adaptive approximation of higher order posterior statistics.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#Lee14,https://doi.org/10.1016/j.jcp.2013.11.015 +C. Bilger,Evaluation of two-phase flow solvers using Level Set and Volume of Fluid methods.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#BilgerAVC17,https://doi.org/10.1016/j.jcp.2017.05.044 +Kees van den Doel,On level set regularization for highly ill-posed distributed parameter estimation problems.,2006,216,J. Comput. Physics,2,db/journals/jcphy/jcphy216.html#DoelA06,https://doi.org/10.1016/j.jcp.2006.01.022 +M. de la Llave Plata,A wavelet-based multiresolution approach to large-eddy simulation of turbulence.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#PlataC10,https://doi.org/10.1016/j.jcp.2010.06.027 +Yingda Cheng,A new discontinuous Galerkin finite element method for directly solving the Hamilton-Jacobi equations.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#ChengW14,https://doi.org/10.1016/j.jcp.2014.02.041 +Wangtao Lu,Efficient high order waveguide mode solvers based on boundary integral equations.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#LuL14,https://doi.org/10.1016/j.jcp.2014.04.028 +Zhiliang Xu,Hierarchical reconstruction for discontinuous Galerkin methods on unstructured grids with a WENO-type linear reconstruction and partial neighboring cells.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#XuLS09,https://doi.org/10.1016/j.jcp.2008.11.025 +Philippe Parmentier,A Vortex Particle-Mesh method for subsonic compressible flows.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#ParmentierWC18,https://doi.org/10.1016/j.jcp.2017.10.040 +Eric Sonnendrücker,A split control variate scheme for PIC simulations with collisions.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#SonnendruckerWH15,https://doi.org/10.1016/j.jcp.2015.04.004 +Moongyu Park,On upscaling operator-stable Lévy motions in fractal porous media.,2006,217,J. Comput. Physics,1,db/journals/jcphy/jcphy217.html#ParkC06,https://doi.org/10.1016/j.jcp.2006.01.027 +Muhammad Irfan 0003,A front tracking method for direct numerical simulation of evaporation process in a multiphase system.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#IrfanM17,https://doi.org/10.1016/j.jcp.2017.02.036 +Jian-Jun Xu,A level-set method for interfacial flows with surfactant.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#XuLLZ06,https://doi.org/10.1016/j.jcp.2005.07.016 +V. Ruiz Barlett,Monte Carlo simulation with fixed steplength for diffusion processes in nonhomogeneous media.,2013,239,J. Comput. Physics,,db/journals/jcphy/jcphy239.html#BarlettHM13,https://doi.org/10.1016/j.jcp.2012.12.029 +Luis E. Tobón,Spurious solutions in mixed finite element method for Maxwell's equations: Dispersion analysis and new basis functions.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#TobonCL11,https://doi.org/10.1016/j.jcp.2011.05.035 +Christos Varsakelis,A numerical method for two-phase flows of dense granular mixtures.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#VarsakelisP14,https://doi.org/10.1016/j.jcp.2013.10.023 +Pierre-Henri Maire,A nominally second-order cell-centered Lagrangian scheme for simulating elastic-plastic flows on two-dimensional unstructured grids.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#MaireABLR13,https://doi.org/10.1016/j.jcp.2012.10.017 +Tsung-Ming Huang,Preconditioning bandgap eigenvalue problems in three-dimensional photonic crystals simulations.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#HuangCHLWW10,https://doi.org/10.1016/j.jcp.2010.08.003 +Christian P. Egerer,Efficient implicit LES method for the simulation of turbulent cavitating flows.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#EgererSHA16,https://doi.org/10.1016/j.jcp.2016.04.021 +Joris Picot,Reduction of the discretization stencil of direct forcing immersed boundary methods on rectangular cells: The ghost node shifting method.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#PicotG18,https://doi.org/10.1016/j.jcp.2018.02.047 +Simone Marras,A parameter-free dynamic alternative to hyper-viscosity for coupled transport equations: Application to the simulation of 3D squall lines using spectral elements.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#MarrasG15,https://doi.org/10.1016/j.jcp.2014.11.046 +Andrew P. Kuprat,A bidirectional coupling procedure applied to multiscale respiratory modeling.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#KupratKCCE13,https://doi.org/10.1016/j.jcp.2012.10.021 +Ivan Lunati,Multiscale finite-volume method for compressible multiphase flow in porous media.,2006,216,J. Comput. Physics,2,db/journals/jcphy/jcphy216.html#LunatiJ06,https://doi.org/10.1016/j.jcp.2006.01.001 +G. A. Richardson,Finite element form of FDV for widely varying flowfields.,2010,229,J. Comput. Physics,1,db/journals/jcphy/jcphy229.html#RichardsonCCW10,https://doi.org/10.1016/j.jcp.2009.09.023 +Grégoire Allaire,Structural optimization under overhang constraints imposed by additive manufacturing technologies.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#AllaireDEFM17,https://doi.org/10.1016/j.jcp.2017.09.041 +Qing Cheng,Efficient and accurate numerical schemes for a hydro-dynamically coupled phase field diblock copolymer model.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#ChengYS17,https://doi.org/10.1016/j.jcp.2017.04.010 +Qianlong Liu,Physalis method for heterogeneous mixtures of dielectrics and conductors: Accurately simulating one million particles using a PC.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#Liu11a,https://doi.org/10.1016/j.jcp.2011.07.024 +Steven P. Hamilton,An assessment of coupling algorithms for nuclear reactor core physics simulations.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#HamiltonBCPTKEP16,https://doi.org/10.1016/j.jcp.2016.02.012 +Matthias Läuter,A discontinuous Galerkin method for the shallow water equations in spherical triangular coordinates.,2008,227,J. Comput. Physics,24,db/journals/jcphy/jcphy227.html#LauterGHD08,https://doi.org/10.1016/j.jcp.2008.08.019 +Mario Ricchiuto,Upwind residual discretization of enhanced Boussinesq equations for wave propagation over complex bathymetries.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#RicchiutoF14,https://doi.org/10.1016/j.jcp.2013.12.048 +Rainer Kress 0001,A second degree Newton method for an inverse obstacle scattering problem.,2011,230,J. Comput. Physics,20,db/journals/jcphy/jcphy230.html#KressL11,https://doi.org/10.1016/j.jcp.2011.06.020 +Sandip Mazumder,Critical assessment of the stability and convergence of the equations of multi-component diffusion.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#Mazumder06,https://doi.org/10.1016/j.jcp.2005.07.018 +Yue Wang,Arbitrary high order discontinuous Galerkin schemes based on the GRP method for compressible Euler equations.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#WangW15,https://doi.org/10.1016/j.jcp.2015.04.029 +Robert L. Higdon,Multiple time scales and pressure forcing in discontinuous Galerkin approximations to layered ocean models.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#Higdon15,https://doi.org/10.1016/j.jcp.2015.04.010 +Guillaume Oger,Two-dimensional SPH simulations of wedge water entries.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#OgerDAF06,https://doi.org/10.1016/j.jcp.2005.09.004 +Jun Luo,A conservative sharp interface method for incompressible multiphase flows.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#LuoHA15,https://doi.org/10.1016/j.jcp.2014.12.044 +Rafail V. Abramov,Approximate linear response for slow variables of dynamics with explicit time scale separation.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#Abramov10,https://doi.org/10.1016/j.jcp.2010.06.029 +Shivkumar Chandrasekaran,Minimum Sobolev norm interpolation with trigonometric polynomials on the torus.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#ChandrasekaranJM13,https://doi.org/10.1016/j.jcp.2013.03.041 +Alberto M. Gambaruto,Wall shear stress and near-wall convective transport: Comparisons with vascular remodelling in a peripheral graft anastomosis.,2010,229,J. Comput. Physics,14,db/journals/jcphy/jcphy229.html#GambarutoDY10,https://doi.org/10.1016/j.jcp.2010.03.029 +Scott E. Parker,Preface to advances in numerical simulation of plasmas.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#ParkerC16,https://doi.org/10.1016/j.jcp.2016.07.013 +Pierre-Henri Maire,Multi-scale Godunov-type method for cell-centered discrete Lagrangian hydrodynamics.,2009,228,J. Comput. Physics,3,db/journals/jcphy/jcphy228.html#MaireN09,https://doi.org/10.1016/j.jcp.2008.10.012 +Yu Wang 0029,Adaptive variational curve smoothing based on level set method.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#WangSTW09,https://doi.org/10.1016/j.jcp.2009.05.021 +V. Sriram,Improved MLPG_R method for simulating 2D interaction between violent waves and elastic structures.,2012,231,J. Comput. Physics,22,db/journals/jcphy/jcphy231.html#SriramM12,https://doi.org/10.1016/j.jcp.2012.07.003 +Bart S. van Lith,Embedded WENO: A design strategy to improve existing WENO schemes.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#LithBI17,https://doi.org/10.1016/j.jcp.2016.11.026 +Eduardo Corona,A Tensor-Train accelerated solver for integral equations in complex geometries.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#CoronaRZ17,https://doi.org/10.1016/j.jcp.2016.12.051 +Tomasz Waclawczyk,A consistent solution of the re-initialization equation in the conservative level-set method.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#Waclawczyk15,https://doi.org/10.1016/j.jcp.2015.06.029 +M. J. Zimon,A novel coupling of noise reduction algorithms for particle flow simulations.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#ZimonRE16,https://doi.org/10.1016/j.jcp.2016.05.049 +Marek Krzysztof Misztal,Detailed analysis of the lattice Boltzmann method on unstructured grids.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#MisztalHMSM15,https://doi.org/10.1016/j.jcp.2015.05.019 +Sergey L. Gavrilyuk,Multi-dimensional shear shallow water flows: Problems and solutions.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#GavrilyukIF18,https://doi.org/10.1016/j.jcp.2018.04.011 +Hauke Gravenkamp,Simulation of elastic guided waves interacting with defects in arbitrarily long structures using the Scaled Boundary Finite Element Method.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#GravenkampBS15,https://doi.org/10.1016/j.jcp.2015.04.032 +Liang Yan 0002,A meshless method for solving an inverse spacewise-dependent heat source problem.,2009,228,J. Comput. Physics,1,db/journals/jcphy/jcphy228.html#YanYF09,https://doi.org/10.1016/j.jcp.2008.09.001 +Daniel Hartmann,The constrained reinitialization equation for level set methods.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#HartmannMS10,https://doi.org/10.1016/j.jcp.2009.10.042 +Frédéric Hecht,Original coupled FEM/BIE numerical model for analyzing infinite periodic surface acoustic wave transducers.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#HechtVD13,https://doi.org/10.1016/j.jcp.2013.03.043 +M. Parsani,Analysis of the implicit LU-SGS algorithm for 3rd- and 4th-order spectral volume scheme for solving the steady Navier-Stokes equations.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#ParsaniGL11,https://doi.org/10.1016/j.jcp.2011.05.026 +Bruno Després,Angular momentum preserving cell-centered Lagrangian and Eulerian schemes on arbitrary grids.,2015,290,J. Comput. Physics,,db/journals/jcphy/jcphy290.html#DespresL15,https://doi.org/10.1016/j.jcp.2015.02.032 +Nikola Topic,Steepest descent ballistic deposition of complex shaped particles.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#TopicP16,https://doi.org/10.1016/j.jcp.2015.12.052 +Evgueni E. Ovtchinnikov,Computing several eigenpairs of Hermitian problems by conjugate gradient iterations.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#Ovtchinnikov08,https://doi.org/10.1016/j.jcp.2008.06.038 +Thomas Hagstrom,The Double Absorbing Boundary method.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#HagstromGRB14,https://doi.org/10.1016/j.jcp.2013.11.025 +Ali Lotfi,Combination of epsilon and Ritz methods with multiscaling basis for solving a class of fractional optimal control problems.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#Lotfi18,https://doi.org/10.1016/j.jcp.2018.04.001 +Siu Wun Cheung,Staggered discontinuous Galerkin methods for the incompressible Navier-Stokes equations.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#CheungCKQ15,https://doi.org/10.1016/j.jcp.2015.08.024 +Nilabja Guha,A variational Bayesian approach for inverse problems with skew-t error distributions.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#GuhaWEJM15,https://doi.org/10.1016/j.jcp.2015.07.062 +József Kópházi,A space-angle DGFEM approach for the Boltzmann radiation transport equation with local angular refinement.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#KophaziL15,https://doi.org/10.1016/j.jcp.2015.05.031 +Benjamin S. Collyer,Importance sampling variance reduction for the Fokker-Planck rarefied gas particle method.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#CollyerCL16,https://doi.org/10.1016/j.jcp.2016.08.008 +Raheel Ahmed,Control-volume distributed multi-point flux approximation coupled with a lower-dimensional fracture model.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#AhmedELHP15,https://doi.org/10.1016/j.jcp.2014.12.047 +T. Gotoh,Spectral compact difference hybrid computation of passive scalar in isotropic turbulence.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#GotohHM12,https://doi.org/10.1016/j.jcp.2012.07.010 +Leonardo Di G. Sigalotti,A shock-capturing SPH scheme based on adaptive kernel estimation.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#SigalottiLDSK06,https://doi.org/10.1016/j.jcp.2005.06.016 +Tapan K. Sengupta,Solving Navier-Stokes equation for flow past cylinders using single-block structured and overset grids.,2010,229,J. Comput. Physics,1,db/journals/jcphy/jcphy229.html#SenguptaSS10,https://doi.org/10.1016/j.jcp.2009.09.026 +Massimiliano d'Aquino,A novel formulation for the numerical computation of magnetization modes in complex micromagnetic systems.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#dAquinoSMF09,https://doi.org/10.1016/j.jcp.2009.05.026 +Paul Chang,Reduced dimensional computational models of polymer electrolyte membrane fuel cell stacks.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#ChangKPW07,https://doi.org/10.1016/j.jcp.2006.10.011 +John B. Bell,Algorithm refinement for the stochastic Burgers' equation.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#BellFG07,https://doi.org/10.1016/j.jcp.2006.09.024 +Di Zhang,A refined volume-of-fluid algorithm for capturing sharp fluid interfaces on arbitrary meshes.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#ZhangJLCYS14,https://doi.org/10.1016/j.jcp.2014.06.043 +Yiqing Shen,High order conservative differencing for viscous terms and the application to vortex-induced vibration flows.,2009,228,J. Comput. Physics,22,db/journals/jcphy/jcphy228.html#ShenZC09,https://doi.org/10.1016/j.jcp.2009.08.004 +Xianmin Xu,An efficient threshold dynamics method for wetting on rough surfaces.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#XuWW17,https://doi.org/10.1016/j.jcp.2016.11.008 +Chunwu Wang,An adaptive ghost fluid finite volume method for compressible gas-water simulations.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#WangTL08,https://doi.org/10.1016/j.jcp.2008.03.005 +Christian Conti,GPU and APU computations of Finite Time Lyapunov Exponent fields.,2012,231,J. Comput. Physics,5,db/journals/jcphy/jcphy231.html#ContiRK12,https://doi.org/10.1016/j.jcp.2011.10.032 +Ralf Hartmann,Generalized adjoint consistent treatment of wall boundary conditions for compressible flows.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#HartmannL15,https://doi.org/10.1016/j.jcp.2015.07.042 +Dmitri Priimak,Finite difference numerical method for the superlattice Boltzmann transport equation and case comparison of CPU(C) and GPU(CUDA) implementations.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#Priimak14,https://doi.org/10.1016/j.jcp.2014.08.028 +G. T. Oud,A fully conservative mimetic discretization of the Navier-Stokes equations in cylindrical coordinates with associated singularity treatment.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#OudHVH16,https://doi.org/10.1016/j.jcp.2016.08.038 +S. Wang,Coupling GSM/ALE with ES-FEM-T3 for fluid-deformable structure interactions.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#WangKLXC14,https://doi.org/10.1016/j.jcp.2014.07.016 +Fande Kong,A scalable nonlinear fluid-structure interaction solver based on a Schwarz preconditioner with isogeometric unstructured coarse spaces in 3D.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#KongC17,https://doi.org/10.1016/j.jcp.2017.03.043 +Bok Jik Lee,Adaptive Osher-type scheme for the Euler equations with highly nonlinear equations of state.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#LeeTCN13,https://doi.org/10.1016/j.jcp.2013.03.046 +Philippe Guyenne,An operator expansion method for computing nonlinear surface waves on a ferrofluid jet.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#GuyenneP16,https://doi.org/10.1016/j.jcp.2016.05.055 +Sreenath Krishnan,Fully resolved viscoelastic particulate simulations using unstructured grids.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#KrishnanSI17,https://doi.org/10.1016/j.jcp.2017.02.068 +Kameswararao Anupindi,A novel multiblock immersed boundary method for large eddy simulation of complex arterial hemodynamics.,2013,254,J. Comput. Physics,,db/journals/jcphy/jcphy254.html#AnupindiDSF13,https://doi.org/10.1016/j.jcp.2013.07.033 +Byungjoon Lee 0001,An energy-stable method for solving the incompressible Navier-Stokes equations with non-slip boundary condition.,2018,360,J. Comput. Physics,,db/journals/jcphy/jcphy360.html#LeeM18,https://doi.org/10.1016/j.jcp.2018.01.030 +Kevin W. Connington,Interaction of fluid interfaces with immersed solid particles using the lattice Boltzmann method for liquid-gas-particle systems.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#ConningtonLM15,https://doi.org/10.1016/j.jcp.2014.11.044 +Hang Ding,On the diffuse interface method using a dual-resolution Cartesian grid.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#DingY14,https://doi.org/10.1016/j.jcp.2014.05.005 +Jan Nordström,Variance reduction through robust design of boundary conditions for stochastic hyperbolic systems of equations.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#NordstromW15,https://doi.org/10.1016/j.jcp.2014.10.061 +Jeff Doom,A numerical method for DNS/LES of turbulent reacting flows.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#DoomHM07,https://doi.org/10.1016/j.jcp.2007.05.037 +Harshavardhana S. Pathak,Adaptive finite-volume WENO schemes on dynamically redistributed grids for compressible Euler equations.,2016,319,J. Comput. Physics,,db/journals/jcphy/jcphy319.html#PathakS16,https://doi.org/10.1016/j.jcp.2016.05.007 +Xinfeng Liu,A front tracking algorithm for limited mass diffusion.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#LiuLG007,https://doi.org/10.1016/j.jcp.2006.08.011 +Lin Zhang 0010,Variational multiscale element-free Galerkin method for 2D Burgers' equation.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#ZhangOWZ10,https://doi.org/10.1016/j.jcp.2010.06.004 +C. Soria-Hoyo,A PIC based procedure for the integration of multiple time scale problems in gas discharge physics.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#Soria-HoyoPC09,https://doi.org/10.1016/j.jcp.2008.10.007 +Michael D. Meyers,On the numerical dispersion of electromagnetic particle-in-cell code: Finite grid instability.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#MeyersHZYA15,https://doi.org/10.1016/j.jcp.2015.05.037 +Jian-Jun Xu,A level-set method for two-phase flows with moving contact line and insoluble surfactant.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#XuR14,https://doi.org/10.1016/j.jcp.2014.01.012 +Nathaniel M. Ferraro,Calculations of two-fluid magnetohydrodynamic axisymmetric steady-states.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#FerraroJ09,https://doi.org/10.1016/j.jcp.2009.07.015 +Ee Han,Efficient and robust relaxation procedures for multi-component mixtures including phase transition.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#HanHM17,https://doi.org/10.1016/j.jcp.2017.02.066 +Alexandros Adam,Adaptive Haar wavelets for the angular discretisation of spectral wave models.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#AdamBPPHG16,https://doi.org/10.1016/j.jcp.2015.10.046 +Alberto M. Gambaruto,Computational haemodynamics of small vessels using the Moving Particle Semi-implicit (MPS) method.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#Gambaruto15,https://doi.org/10.1016/j.jcp.2015.08.039 +Zofia Trstanova,Estimating the speed-up of adaptively restrained Langevin dynamics.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#TrstanovaR17,https://doi.org/10.1016/j.jcp.2017.02.010 +Sebastian Acosta,Numerical method of characteristics for one-dimensional blood flow.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#AcostaPRPR15,https://doi.org/10.1016/j.jcp.2015.03.045 +Hong Zhao,A spectral boundary integral method for flowing blood cells.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#ZhaoIOF10,https://doi.org/10.1016/j.jcp.2010.01.024 +Christophe Thirard,On a way to save memory when solving time domain boundary integral equations for acoustic and vibroacoustic applications.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#ThirardP17,https://doi.org/10.1016/j.jcp.2017.07.040 +Giacomo Dimarco,An asymptotic preserving automatic domain decomposition method for the Vlasov-Poisson-BGK system with applications to plasmas.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#DimarcoMR14,https://doi.org/10.1016/j.jcp.2014.06.002 +Farshid Nazari,A stable and accurate scheme for nonlinear diffusion equations: Application to atmospheric boundary layer.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#NazariMZC13,https://doi.org/10.1016/j.jcp.2012.10.039 +U. Bhardwaj,Post-processing interstitialcy diffusion from molecular dynamics simulations.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#BhardwajBW16,https://doi.org/10.1016/j.jcp.2015.10.034 +S. A. Karabasov,Compact Accurately Boundary-Adjusting high-REsolution Technique for fluid dynamics.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#KarabasovG09,https://doi.org/10.1016/j.jcp.2009.06.037 +Sebastian Noelle,Well-balanced finite volume schemes of arbitrary order of accuracy for shallow water flows.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#NoellePPN06,https://doi.org/10.1016/j.jcp.2005.08.019 +Matthew Jemison,Filament capturing with the Multimaterial Moment-of-Fluid method.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#JemisonSS15,https://doi.org/10.1016/j.jcp.2015.01.014 +Liangliang Qiu,Nodal discontinuous Galerkin methods for fractional diffusion equations on 2D domain with triangular meshes.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#QiuDH15,https://doi.org/10.1016/j.jcp.2015.06.022 +Hao Chen 0015,A Kronecker product splitting preconditioner for two-dimensional space-fractional diffusion equations.,2018,360,J. Comput. Physics,,db/journals/jcphy/jcphy360.html#ChenLZ18,https://doi.org/10.1016/j.jcp.2018.01.034 +Soshi Kawai,Localized artificial diffusivity scheme for discontinuity capturing on curvilinear meshes.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#KawaiL08,https://doi.org/10.1016/j.jcp.2008.06.034 +F. Treyssède,Spectral element computation of high-frequency leaky modes in three-dimensional solid waveguides.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#Treyssede16,https://doi.org/10.1016/j.jcp.2016.03.029 +Kyongmin Yeo,Simulation of concentrated suspensions using the force-coupling method.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#YeoM10,https://doi.org/10.1016/j.jcp.2009.11.041 +Guoxi Ni,Remapping-free ALE-type kinetic method for flow computations.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#NiJX09,https://doi.org/10.1016/j.jcp.2009.01.013 +Chao Li,Spatially hybrid computations for streamer discharges with generic features of pulled fronts: I. Planar fronts.,2010,229,J. Comput. Physics,1,db/journals/jcphy/jcphy229.html#LiEH10,https://doi.org/10.1016/j.jcp.2009.09.027 +Alice Raeli,A finite-difference method for the variable coefficient Poisson equation on hierarchical Cartesian meshes.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#RaeliBI18,https://doi.org/10.1016/j.jcp.2017.11.007 +Ramakrishna Tipireddy,Basis adaptation and domain decomposition for steady-state partial differential equations with random coefficients.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#TipireddyST17,https://doi.org/10.1016/j.jcp.2017.08.067 +Yaoxin Zhang,Boundary treatment for 2D elliptic mesh generation in complex geometries.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#ZhangJWC08,https://doi.org/10.1016/j.jcp.2008.05.008 +Yan Li,An exponential compact difference scheme for solving 2D steady magnetohydrodynamic (MHD) duct flow problems.,2012,231,J. Comput. Physics,16,db/journals/jcphy/jcphy231.html#LiT12,https://doi.org/10.1016/j.jcp.2012.05.010 +Xiaofeng Yang 0003,An adaptive coupled level-set/volume-of-fluid interface capturing method for unstructured triangular grids.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#YangJLZC06,https://doi.org/10.1016/j.jcp.2006.01.007 +Luca Margheri,A hybrid anchored-ANOVA - POD/Kriging method for uncertainty quantification in unsteady high-fidelity CFD simulations.,2016,324,J. Comput. Physics,,db/journals/jcphy/jcphy324.html#MargheriS16,https://doi.org/10.1016/j.jcp.2016.07.036 +Hinrich Lütjens,XTOR-2F: A fully implicit Newton-Krylov solver applied to nonlinear 3D extended MHD in tokamaks.,2010,229,J. Comput. Physics,21,db/journals/jcphy/jcphy229.html#LutjensL10,https://doi.org/10.1016/j.jcp.2010.07.013 +Qi Li,The impact and treatment of the Gibbs phenomenon in immersed boundary method simulations of momentum and scalar transport.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#LiBA16,https://doi.org/10.1016/j.jcp.2016.01.013 +D. Liu,Force-coupling method for flows with ellipsoidal particles.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#LiuKMK09,https://doi.org/10.1016/j.jcp.2009.01.020 +Dmitri Kuzmin,A constrained finite element method satisfying the discrete maximum principle for anisotropic diffusion problems.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#KuzminSS09,https://doi.org/10.1016/j.jcp.2009.01.031 +Jan Nordström,Boundary conditions for a divergence free velocity-pressure formulation of the Navier-Stokes equations.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#NordstromMS07,https://doi.org/10.1016/j.jcp.2007.01.010 +Jihoe Kwon,A novel SPH method for sedimentation in a turbulent fluid.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#KwonM15,https://doi.org/10.1016/j.jcp.2015.06.040 +Lei Shi,Adjoint-based error estimation and mesh adaptation for the correction procedure via reconstruction method.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#ShiW15,https://doi.org/10.1016/j.jcp.2015.04.011 +W. E. H. Sollie,Space-time discontinuous Galerkin finite element method for two-fluid flows.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#SollieBV11,https://doi.org/10.1016/j.jcp.2010.10.019 +D. C. Visser,Modelling multi-viscosity systems with dissipative particle dynamics.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#VisserHI06,https://doi.org/10.1016/j.jcp.2005.09.022 +Dieter Fauconnier,On the spectral and conservation properties of nonlinear discretization operators.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#FauconnierD11,https://doi.org/10.1016/j.jcp.2011.02.025 +Wenrui Hao,A fictitious domain method with a hybrid cell model for simulating motion of cells in fluid flow.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#HaoXLL15,https://doi.org/10.1016/j.jcp.2014.09.020 +Victoria Arias,Poisson equations in irregular domains with Robin boundary conditions - Solver with second-order accurate gradients.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#AriasBG18,https://doi.org/10.1016/j.jcp.2018.03.022 +Antoni Calderer,Level set immersed boundary method for coupled simulation of air/water interaction with complex floating structures.,2014,277,J. Comput. Physics,,db/journals/jcphy/jcphy277.html#CaldererKS14,https://doi.org/10.1016/j.jcp.2014.08.010 +Patricia Hurd,Trajectory integration with potential energy discontinuities.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#HurdCP10,https://doi.org/10.1016/j.jcp.2009.11.025 +Yiqing Shen,Generalized finite compact difference scheme for shock/complex flowfield interaction.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#ShenZ11,https://doi.org/10.1016/j.jcp.2011.01.039 +Alex Kanevsky,Application of implicit-explicit high order Runge-Kutta methods to discontinuous-Galerkin schemes.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#KanevskyCGH07,https://doi.org/10.1016/j.jcp.2007.02.021 +Philippe G. LeFloch,Revisiting the method of characteristics via a convex hull algorithm.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#LeFlochM15,https://doi.org/10.1016/j.jcp.2015.05.043 +Rouven Künze,An adaptive multiscale method for density-driven instabilities.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#KunzeL12,https://doi.org/10.1016/j.jcp.2012.02.025 +Pedro S. Peixoto,Analysis of grid imprinting on geodesic spherical icosahedral grids.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#PeixotoB13,https://doi.org/10.1016/j.jcp.2012.11.041 +I-Liang Chern,A coupling interface method for elliptic interface problems.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#ChernS07,https://doi.org/10.1016/j.jcp.2007.03.012 +Xiaoan Ren,A dynamically adaptive wavelet approach to stochastic computations based on polynomial chaos - capturing all scales of random modes on independent grids.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#RenWX11,https://doi.org/10.1016/j.jcp.2011.05.038 +John Steinhoff,Solution of the scalar wave equation over very long distances using nonlinear solitary waves: Relation to finite difference methods.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#SteinhoffC12,https://doi.org/10.1016/j.jcp.2012.05.008 +Lin He,Incorporating topological derivatives into shape derivatives based level set methods.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#HeKO07,https://doi.org/10.1016/j.jcp.2007.01.003 +David Schmicker,Implicit Geometry Meshing for the simulation of Rotary Friction Welding.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#SchmickerPS14,https://doi.org/10.1016/j.jcp.2014.04.014 +J. B. White III,High-performance high-resolution semi-Lagrangian tracer transport on a sphere.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#WhiteD11,https://doi.org/10.1016/j.jcp.2011.05.008 +Dinshaw S. Balsara,A two-dimensional Riemann solver with self-similar sub-structure - Alternative formulation based on least squares projection.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#BalsaraVGNDGA16,https://doi.org/10.1016/j.jcp.2015.10.013 +Phillip Colella,A limiter for PPM that preserves accuracy at smooth extrema.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#ColellaS08,https://doi.org/10.1016/j.jcp.2008.03.034 +Marco F. P. ten Eikelder,An acoustic-convective splitting-based approach for the Kapila two-phase flow model.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#EikelderDKT17,https://doi.org/10.1016/j.jcp.2016.11.031 +Jian Cheng,Analysis and development of adjoint-based h-adaptive direct discontinuous Galerkin method for the compressible Navier-Stokes equations.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#ChengYYL18,https://doi.org/10.1016/j.jcp.2018.02.031 +Duo Wang,On the curvature effect of thin membranes.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#WangJCG13,https://doi.org/10.1016/j.jcp.2012.09.001 +Weiming Feng,Spectral implementation of an adaptive moving mesh method for phase-field equations.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#FengYHLDC06,https://doi.org/10.1016/j.jcp.2006.07.013 +Hailiang Liu,A Hamiltonian preserving discontinuous Galerkin method for the generalized Korteweg-de Vries equation.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#LiuY16b,https://doi.org/10.1016/j.jcp.2016.06.010 +Jeffrey J. Heys,Weighted least-squares finite elements based on particle imaging velocimetry data.,2010,229,J. Comput. Physics,1,db/journals/jcphy/jcphy229.html#HeysMMMWB10,https://doi.org/10.1016/j.jcp.2009.09.016 +Paul Tsuji,A fast directional algorithm for high-frequency electromagnetic scattering.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#TsujiY11,https://doi.org/10.1016/j.jcp.2011.02.013 +Guangrui Sun,Implicit LES using adaptive filtering.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#SunD18,https://doi.org/10.1016/j.jcp.2018.01.009 +Christoph Lohmann,Synchronized flux limiting for gas dynamics variables.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#LohmannK16,https://doi.org/10.1016/j.jcp.2016.09.025 +Jürgen Schnack,Efficient implementation of the Lanczos method for magnetic systems.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#SchnackHS08,https://doi.org/10.1016/j.jcp.2008.01.027 +Liangzhe Zhang,A quantitative comparison between C0 and C1 elements for solving the Cahn-Hilliard equation.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#ZhangTGPAMB13,https://doi.org/10.1016/j.jcp.2012.12.001 +Yongcheng Zhou,On the fictitious-domain and interpolation formulations of the matched interface and boundary (MIB) method.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#ZhouW06,https://doi.org/10.1016/j.jcp.2006.03.027 +Ping Lin,Simulations of singularity dynamics in liquid crystal flows: A C0 finite element approach.,2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#LinL06,https://doi.org/10.1016/j.jcp.2005.10.027 +Gary J. Chandler,Adjoint algorithms for the Navier-Stokes equations in the low Mach number limit.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#ChandlerJNS12,https://doi.org/10.1016/j.jcp.2011.11.013 +Carsten Eilks,Numerical simulation of dealloying by surface dissolution via the evolving surface finite element method.,2008,227,J. Comput. Physics,23,db/journals/jcphy/jcphy227.html#EilksE08,https://doi.org/10.1016/j.jcp.2008.07.023 +Feriedoun Sabetghadam,Fourier spectral embedded boundary solution of the Poisson's and Laplace equations with Dirichlet boundary conditions.,2009,228,J. Comput. Physics,1,db/journals/jcphy/jcphy228.html#SabetghadamSN09,https://doi.org/10.1016/j.jcp.2008.08.018 +Thomas Melvin,Dispersion analysis of the Pn - P n-1DG mixed finite element pair for atmospheric modelling.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#Melvin18,https://doi.org/10.1016/j.jcp.2017.11.019 +F. G. Fuchs,Splitting based finite volume schemes for ideal MHD equations.,2009,228,J. Comput. Physics,3,db/journals/jcphy/jcphy228.html#FuchsMR09,https://doi.org/10.1016/j.jcp.2008.09.027 +Francois Hermeline,A finite volume method for the approximation of Maxwell's equations in two space dimensions on arbitrary meshes.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#HermelineLO08,https://doi.org/10.1016/j.jcp.2008.05.013 +Jason E. Hicken,Output error estimation for summation-by-parts finite-difference schemes.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#Hicken12,https://doi.org/10.1016/j.jcp.2012.01.031 +Tao Feng,On linearization and preconditioning for radiation diffusion coupled to material thermal conduction equations.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#FengAYLZ13,https://doi.org/10.1016/j.jcp.2012.11.012 +J. H. Curtis,Accelerated simulation of stochastic particle removal processes in particle-resolved aerosol models.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#CurtisMRHW16,https://doi.org/10.1016/j.jcp.2016.06.029 +Andrew R. Siegel,Analysis of communication costs for domain decomposed Monte Carlo methods in nuclear reactor analysis.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#SiegelSFM12,https://doi.org/10.1016/j.jcp.2011.12.014 +Krista Nerinckx,A Mach-uniform algorithm: Coupled versus segregated approach.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#NerinckxVD07,https://doi.org/10.1016/j.jcp.2007.02.008 +Konstantin Grella,Sparse tensor spherical harmonics approximation in radiative transfer.,2011,230,J. Comput. Physics,23,db/journals/jcphy/jcphy230.html#GrellaS11,https://doi.org/10.1016/j.jcp.2011.07.028 +Baole Wen,Reduced modeling of porous media convection in a minimal flow unit at large Rayleigh number.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#WenC18,https://doi.org/10.1016/j.jcp.2018.06.001 +Liang Jie,Accelerating solidification process simulation for large-sized system of liquid metal atoms using GPU with CUDA.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#JieLSLM14,https://doi.org/10.1016/j.jcp.2013.10.012 +Maciek D. Korzec,Time-stepping methods for the simulation of the self-assembly of nano-crystals in Matlab on a GPU.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#KorzecA13,https://doi.org/10.1016/j.jcp.2013.05.040 +Shi Jin,Asymptotic-preserving methods for hyperbolic and transport equations with random inputs and diffusive scalings.,2015,289,J. Comput. Physics,,db/journals/jcphy/jcphy289.html#JinXZ15,https://doi.org/10.1016/j.jcp.2015.02.023 +Mehdi Ghommem,Mode decomposition methods for flows in high-contrast porous media. Global-local approach.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#GhommemPCE13,https://doi.org/10.1016/j.jcp.2013.06.033 +Hai P. Le,Monte Carlo simulation of excitation and ionization collisions with complexity reduction.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#LeYCC17,https://doi.org/10.1016/j.jcp.2017.06.029 +Yuhui Wu,A high-order photon Monte Carlo method for radiative transfer in direct numerical simulation.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#WuMH07,https://doi.org/10.1016/j.jcp.2006.10.014 +Fengyan Li,Arbitrary order exactly divergence-free central discontinuous Galerkin methods for ideal MHD equations.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#LiX12,https://doi.org/10.1016/j.jcp.2011.12.016 +Yunchang Seol,An immersed boundary method for simulating vesicle dynamics in three dimensions.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#SeolHKL16,https://doi.org/10.1016/j.jcp.2016.06.035 +Yujian Jiao,Well-conditioned fractional collocation methods using fractional Birkhoff interpolation basis.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#JiaoWH16,https://doi.org/10.1016/j.jcp.2015.10.029 +Adam R. Stinchcombe,An efficient method for simulation of noisy coupled multi-dimensional oscillators.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#StinchcombeF16,https://doi.org/10.1016/j.jcp.2016.05.025 +Michel Bergmann,A zonal Galerkin-free POD model for incompressible flows.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#BergmannFILST18,https://doi.org/10.1016/j.jcp.2017.10.001 +Jae Wook Kim,Quasi-disjoint pentadiagonal matrix systems for the parallelization of compact finite-difference schemes and filters.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#Kim13,https://doi.org/10.1016/j.jcp.2013.01.046 +Mulin Cheng,A dynamically bi-orthogonal method for time-dependent stochastic partial differential equations I: Derivation and algorithms.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#ChengHZ13a,https://doi.org/10.1016/j.jcp.2013.02.033 +Raoyang Zhang,Realization of isotropy of the lattice Boltzmann method via rotation of lattice velocity bases.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#ZhangSC07,https://doi.org/10.1016/j.jcp.2007.01.032 +Enrique Bendito,Estimation of Fekete points.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#BenditoCEG07,https://doi.org/10.1016/j.jcp.2007.03.017 +Richard L. Muddle,An efficient preconditioner for monolithically-coupled large-displacement fluid-structure interaction problems with pseudo-solid mesh updates.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#MuddleMH12,https://doi.org/10.1016/j.jcp.2012.07.001 +Kui Du,Arbitrary high-order C0 tensor product Galerkin finite element methods for the electromagnetic scattering from a large cavity.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#DuSZ13,https://doi.org/10.1016/j.jcp.2013.02.015 +Dharshi Devendran,An immersed boundary energy-based method for incompressible viscoelasticity.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#DevendranP12,https://doi.org/10.1016/j.jcp.2012.02.020 +Andreas Kempf,Note on the use of Yee-lattices in (semi-) implicit particle-in-cell codes.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#KempfGKS13,https://doi.org/10.1016/j.jcp.2012.11.045 +Benjamin Peherstorfer,Combining multiple surrogate models to accelerate failure probability estimation with expensive high-fidelity models.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#PeherstorferKW17,https://doi.org/10.1016/j.jcp.2017.04.012 +Hui Feng,A stable nodal integration method for static and quasi-static electromagnetic field computation.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#FengCL17,https://doi.org/10.1016/j.jcp.2017.02.022 +Tianheng Chen,Entropy stable high order discontinuous Galerkin methods with suitable quadrature rules for hyperbolic conservation laws.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#ChenS17,https://doi.org/10.1016/j.jcp.2017.05.025 +T. Tückmantel,H-VLPL: A three-dimensional relativistic PIC/fluid hybrid code.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#TuckmantelP14,https://doi.org/10.1016/j.jcp.2014.03.019 +Shan Zhao,High order matched interface and boundary methods for the Helmholtz equation in media with arbitrarily curved interfaces.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#Zhao10,https://doi.org/10.1016/j.jcp.2009.12.034 +Duc Duy Nguyen,Time-domain matched interface and boundary (MIB) modeling of Debye dispersive media with curved interfaces.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#NguyenZ14,https://doi.org/10.1016/j.jcp.2014.08.038 +Serguei Ovtchinnikov,Additive Schwarz-based fully coupled implicit methods for resistive Hall magnetohydrodynamic problems.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#OvtchinnikovDCK07,https://doi.org/10.1016/j.jcp.2007.02.027 +Bartosz Protas,Adjoint-based optimization of PDEs in moving domains.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#ProtasL08,https://doi.org/10.1016/j.jcp.2007.11.014 +Enric Pardo,3D computation of non-linear eddy currents: Variational method and superconducting cubic bulk.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#PardoK17,https://doi.org/10.1016/j.jcp.2017.05.001 +Ramon Codina,The fixed-mesh ALE approach for the numerical approximation of flows in moving domains.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#CodinaHCB09,https://doi.org/10.1016/j.jcp.2008.11.004 +Donald E. Burton,Reduction of dissipation in Lagrange cell-centered hydrodynamics (CCH) through corner gradient reconstruction (CGR).,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#BurtonMCK15,https://doi.org/10.1016/j.jcp.2015.06.041 +Daniel Z. Huang,A family of position- and orientation-independent embedded boundary methods for viscous flow and fluid-structure interaction problems.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#HuangSF18,https://doi.org/10.1016/j.jcp.2018.03.028 +Enrique Domingo Fernández-Nieto,Efficient numerical schemes for viscoplastic avalanches. Part 1: The 1D case.,2014,264,J. Comput. Physics,,db/journals/jcphy/jcphy264.html#Fernandez-NietoGV14,https://doi.org/10.1016/j.jcp.2014.01.026 +Sergey A. Zabelok,Adaptive kinetic-fluid solvers for heterogeneous computing architectures.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#ZabelokAK15,https://doi.org/10.1016/j.jcp.2015.10.003 +Shaoqiang Tang,A finite difference approach with velocity interfacial conditions for multiscale computations of crystalline solids.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#Tang08,https://doi.org/10.1016/j.jcp.2007.12.012 +Yingjie Gao,Third-order symplectic integration method with inverse time dispersion transform for long-term simulation.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#GaoZY16,https://doi.org/10.1016/j.jcp.2016.03.031 +Cheng Wang,Parallel adaptive mesh refinement method based on WENO finite difference scheme for the simulation of multi-dimensional detonation.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#WangDS15,https://doi.org/10.1016/j.jcp.2015.06.001 +Pierre Degond,An asymptotic-preserving method for highly anisotropic elliptic equations based on a Micro-Macro decomposition.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#DegondLNN12,https://doi.org/10.1016/j.jcp.2011.11.040 +Geoffrey M. Vasil,A new method for fast transforms in parity-mixed PDEs: Part I. Numerical techniques and analysis.,2008,227,J. Comput. Physics,17,db/journals/jcphy/jcphy227.html#VasilBJ08,https://doi.org/10.1016/j.jcp.2008.04.020 +Andrew R. Winters,ALE-DGSEM approximation of wave reflection and transmission from a moving medium.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#WintersK14,https://doi.org/10.1016/j.jcp.2014.01.022 +Lian-Ping Wang,A bin integral method for solving the kinetic collection equation.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#WangXG07,https://doi.org/10.1016/j.jcp.2007.03.029 +Mostafa Jamshidian,A multiscale coupled finite-element and phase-field framework to modeling stressed grain growth in polycrystalline thin films.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#JamshidianTR16,https://doi.org/10.1016/j.jcp.2016.09.061 +João P. P. Magalhães,Adaptive mesh finite-volume calculation of 2D lid-cavity corner vortices.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#MagalhaesAPP13,https://doi.org/10.1016/j.jcp.2013.02.042 +Nina V. Elkina,A new conservative unsplit method for the solution of the Vlasov equation.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#ElkinaB06,https://doi.org/10.1016/j.jcp.2005.09.023 +Xiang Zhang,An accurate elasto-plastic frictional tangential force-displacement model for granular-flow simulations: Displacement-driven formulation.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#ZhangV07,https://doi.org/10.1016/j.jcp.2006.12.028 +A. Yagub,A lattice Boltzmann model for substrates with regularly structured surface roughness.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#YagubFKS15,https://doi.org/10.1016/j.jcp.2015.08.040 +Yu Lv,An entropy-residual shock detector for solving conservation laws using high-order discontinuous Galerkin methods.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#LvSI16,https://doi.org/10.1016/j.jcp.2016.06.052 +Bram van Leer,A historical oversight: Vladimir P. Kolgan and his high-resolution scheme.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#Leer11,https://doi.org/10.1016/j.jcp.2010.12.032 +Thomas Guédeney,Non-uniform time sampling for multiple-frequency harmonic balance computations.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#GuedeneyGGSDP13,https://doi.org/10.1016/j.jcp.2012.11.010 +Amirashkan Darvish,An optimized hybrid Convolutional Perfectly Matched Layer for efficient absorption of electromagnetic waves.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#DarvishZR18,https://doi.org/10.1016/j.jcp.2017.11.030 +C. Deimert,Collocated electrodynamic FDTD schemes using overlapping Yee grids and higher-order Hodge duals.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#DeimertPO16,https://doi.org/10.1016/j.jcp.2016.08.048 +Z. C. He,A mass-redistributed finite element method (MR-FEM) for acoustic problems using triangular mesh.,2016,323,J. Comput. Physics,,db/journals/jcphy/jcphy323.html#HeLLLC16,https://doi.org/10.1016/j.jcp.2016.07.025 +G. Kluth,Discretization of hyperelasticity on unstructured mesh with a cell-centered Lagrangian scheme.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#KluthD10,https://doi.org/10.1016/j.jcp.2010.08.024 +Takaharu Yaguchi,The discrete variational derivative method based on discrete differential forms.,2012,231,J. Comput. Physics,10,db/journals/jcphy/jcphy231.html#YaguchiMS12,https://doi.org/10.1016/j.jcp.2012.01.035 +Sibusiso Mabuza,Local bounds preserving stabilization for continuous Galerkin discretization of hyperbolic systems.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#MabuzaSK18,https://doi.org/10.1016/j.jcp.2018.01.048 +V. Ruiz Barlett,Differences between fixed time step and kinetic Monte Carlo methods for biased diffusion.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#BarlettBHM09,https://doi.org/10.1016/j.jcp.2009.04.035 +Akash Anand,An efficient high-order Nyström scheme for acoustic scattering by inhomogeneous penetrable media with discontinuous material interface.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#AnandPKP16,https://doi.org/10.1016/j.jcp.2016.01.028 +Konstantin Lipnikov,The mimetic finite difference method for the 3D magnetostatic field problems on polyhedral meshes.,2011,230,J. Comput. Physics,2,db/journals/jcphy/jcphy230.html#LipnikovMBB11,https://doi.org/10.1016/j.jcp.2010.09.007 +Koottungal Revi Arun,Finite volume evolution Galerkin method for hyperbolic conservation laws with spatially varying flux functions.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#ArunKLP09,https://doi.org/10.1016/j.jcp.2008.10.004 +Javier Murillo,An Exner-based coupled model for two-dimensional transient flow over erodible bed.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#MurilloG10a,https://doi.org/10.1016/j.jcp.2010.08.006 +Kazem Hejranfar,Preconditioned characteristic boundary conditions based on artificial compressibility method for solution of incompressible flows.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#HejranfarP17,https://doi.org/10.1016/j.jcp.2017.05.014 +Jan Schlottke,Direct numerical simulation of evaporating droplets.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#SchlottkeW08,https://doi.org/10.1016/j.jcp.2008.01.042 +Mikhail Z. Tokar,Numerical modeling of transport barrier formation.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#Tokar10,https://doi.org/10.1016/j.jcp.2009.12.009 +Patrick Kilian,Simulating the injection of magnetized plasma without electromagnetic precursor wave.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#KilianS18,https://doi.org/10.1016/j.jcp.2017.10.012 +Eric T. Chung,An adaptive GMsFEM for high-contrast flow problems.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#ChungEL14,https://doi.org/10.1016/j.jcp.2014.05.007 +Diego Avesani,A new class of Moving-Least-Squares WENO-SPH schemes.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#AvesaniDB14,https://doi.org/10.1016/j.jcp.2014.03.041 +Ali Mani,Resolution requirements for aero-optical simulations.,2008,227,J. Comput. Physics,21,db/journals/jcphy/jcphy227.html#ManiWM08,https://doi.org/10.1016/j.jcp.2008.02.014 +Gary Cohen,A spatial high-order hexahedral discontinuous Galerkin method to solve Maxwell's equations in time domain.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#CohenFP06,https://doi.org/10.1016/j.jcp.2006.01.004 +Géraud Blatman,Adaptive sparse polynomial chaos expansion based on least angle regression.,2011,230,J. Comput. Physics,6,db/journals/jcphy/jcphy230.html#BlatmanS11,https://doi.org/10.1016/j.jcp.2010.12.021 +V. Ruiz Barlett,Comparison between fixed and Gaussian steplength in Monte Carlo simulations for diffusion processes.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#BarlettHM11,https://doi.org/10.1016/j.jcp.2011.01.041 +Marco Guidetti,Efficient assignment of the temperature set for Parallel Tempering.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#GuidettiRT12,https://doi.org/10.1016/j.jcp.2011.10.019 +Kensuke Yokoi,Efficient implementation of THINC scheme: A simple and practical smoothed VOF algorithm.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#Yokoi07,https://doi.org/10.1016/j.jcp.2007.06.020 +Junping Wang,Discrete maximum principle for the P1 - P0 weak Galerkin finite element approximations.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#WangYZZ18,https://doi.org/10.1016/j.jcp.2018.02.013 +Kazuyasu Sugiyama,A full Eulerian finite difference approach for solving fluid-structure coupling problems.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#SugiyamaITTM11,https://doi.org/10.1016/j.jcp.2010.09.032 +Pietro Asinari,Link-wise artificial compressibility method.,2012,231,J. Comput. Physics,15,db/journals/jcphy/jcphy231.html#AsinariOCR12,https://doi.org/10.1016/j.jcp.2012.04.027 +Tony C. Slaba,Faster and more accurate transport procedures for HZETRN.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#SlabaBB10,https://doi.org/10.1016/j.jcp.2010.09.010 +Ryuichi S. Nagaosa,Reprint of: A numerical modelling of gas exchange mechanisms between air and turbulent water with an aquarium chemical reaction.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#Nagaosa14a,https://doi.org/10.1016/j.jcp.2014.04.007 +Andrew Binder,A generalized parallel replica dynamics.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#BinderLS15,https://doi.org/10.1016/j.jcp.2015.01.002 +U. Rasthofer,Multifractal subgrid-scale modeling within a variational multiscale method for large-eddy simulation of turbulent flow.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#RasthoferG13,https://doi.org/10.1016/j.jcp.2012.09.013 +Anne-Marie Baudron,Parareal in time 3D numerical solver for the LWR Benchmark neutron diffusion transient model.,2014,279,J. Comput. Physics,,db/journals/jcphy/jcphy279.html#BaudronLMRS14,https://doi.org/10.1016/j.jcp.2014.08.037 +Daniele Bertaccini,Fast numerical solution of nonlinear nonlocal cochlear models.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#BertacciniS11,https://doi.org/10.1016/j.jcp.2010.12.035 +Kelin Xia,Multiscale geometric modeling of macromolecules I: Cartesian representation.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#XiaFCTW14,https://doi.org/10.1016/j.jcp.2013.09.034 +Anil Damle,SCDM-k: Localized orbitals for solids via selected columns of the density matrix.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#DamleLY17,https://doi.org/10.1016/j.jcp.2016.12.053 +Xiantao Li,A multiscale coupling method for the modeling of dynamics of solids with application to brittle cracks.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#LiYE10,https://doi.org/10.1016/j.jcp.2010.01.039 +Luis Cea,Unstructured finite volume discretisation of bed friction and convective flux in solute transport models linked to the shallow water equations.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#CeaV12,https://doi.org/10.1016/j.jcp.2012.01.007 +Jan Nordström,A stable hybrid method for hyperbolic problems.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#NordstromG06,https://doi.org/10.1016/j.jcp.2005.07.008 +Michael Dumbser,A unified framework for the construction of one-step finite volume and discontinuous Galerkin schemes on unstructured meshes.,2008,227,J. Comput. Physics,18,db/journals/jcphy/jcphy227.html#DumbserBTM08,https://doi.org/10.1016/j.jcp.2008.05.025 +G. Rizzuti,Multigrid-based 'shifted-Laplacian' preconditioning for the time-harmonic elastic wave equation.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#RizzutiM16,https://doi.org/10.1016/j.jcp.2016.04.049 +Patrick A. Klein,Coupled atomistic-continuum simulations using arbitrary overlapping domains.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#KleinZ06,https://doi.org/10.1016/j.jcp.2005.08.014 +Feruza A. Amirkulova,Acoustic multiple scattering using recursive algorithms.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#AmirkulovaN15,https://doi.org/10.1016/j.jcp.2015.07.031 +N. Babkovskaia,A high-order public domain code for direct numerical simulations of turbulent combustion.,2011,230,J. Comput. Physics,1,db/journals/jcphy/jcphy230.html#BabkovskaiaHB11,https://doi.org/10.1016/j.jcp.2010.08.028 +Michael Medvinsky,Local absorbing boundary conditions for elliptical shaped boundaries.,2008,227,J. Comput. Physics,18,db/journals/jcphy/jcphy227.html#MedvinskyTH08,https://doi.org/10.1016/j.jcp.2008.05.010 +Siddharth Savadatti,Absorbing boundary conditions for scalar waves in anisotropic media. Part 2: Time-dependent modeling.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#SavadattiG10,https://doi.org/10.1016/j.jcp.2010.05.017 +Jin Fu,The time dependent propensity function for acceleration of spatial stochastic simulation of reaction-diffusion systems.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#FuWLP14,https://doi.org/10.1016/j.jcp.2014.06.025 +Barry Koren,Physics-compatible numerical methods.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#KorenABFP14,https://doi.org/10.1016/j.jcp.2013.10.015 +Shenren Xu,Stabilisation of discrete steady adjoint solvers.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#XuRMM15,https://doi.org/10.1016/j.jcp.2015.06.036 +Shuting Gu,Convex splitting method for the calculation of transition states of energy functional.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#GuZ18,https://doi.org/10.1016/j.jcp.2017.10.028 +Roger Cocle,Combining the vortex-in-cell and parallel fast multipole methods for efficient domain decomposition simulations.,2008,227,J. Comput. Physics,21,db/journals/jcphy/jcphy227.html#CocleWD08,https://doi.org/10.1016/j.jcp.2007.10.010 +Roman Samulyak,A numerical algorithm for MHD of free surface flows at low magnetic Reynolds numbers.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#SamulyakDGX07,https://doi.org/10.1016/j.jcp.2007.06.005 +Keisuke Sugiura,An extension of Godunov SPH II: Application to elastic dynamics.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#SugiuraI17,https://doi.org/10.1016/j.jcp.2016.12.026 +Ian G. Grooms,Stochastic superparameterization in quasigeostrophic turbulence.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#GroomsM14,https://doi.org/10.1016/j.jcp.2013.09.020 +Ryusuke Numata,"Corrigendum to ""AstroGK: Astrophysical gyrokinetics code"" [J. Comput. Physics 229 (2010) 9347-9372].",2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#NumataHTBD13,https://doi.org/10.1016/j.jcp.2013.04.001 +Hongtao Chen,A full multigrid method for eigenvalue problems.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#ChenXX16,https://doi.org/10.1016/j.jcp.2016.07.009 +Vít Dolejsí,Efficient solution strategy for the semi-implicit discontinuous Galerkin discretization of the Navier-Stokes equations.,2011,230,J. Comput. Physics,11,db/journals/jcphy/jcphy230.html#DolejsiHH11,https://doi.org/10.1016/j.jcp.2010.10.029 +Bo Zhang,A Fourier-series-based kernel-independent fast multipole method.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#ZhangHPS11,https://doi.org/10.1016/j.jcp.2011.03.049 +Daisuke Nishiura,Parallel-vector algorithms for particle simulations on shared-memory multiprocessors.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#NishiuraS11,https://doi.org/10.1016/j.jcp.2010.11.040 +Limin Wang,Heuristic optimality criterion algorithm for shape design of fluid flow.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#WangFL10,https://doi.org/10.1016/j.jcp.2010.07.006 +éliane Bécache,High-order Absorbing Boundary Conditions for anisotropic and convective wave equations.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#BecacheGH10,https://doi.org/10.1016/j.jcp.2009.10.012 +Jan Ramboer,Optimization of time integration schemes coupled to spatial discretization for use in CAA applications.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#RamboerBSL06,https://doi.org/10.1016/j.jcp.2005.08.033 +Stephen C. Jardin,A high-order implicit finite element method for integrating the two-fluid magnetohydrodynamic equations in two dimensions.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#JardinBF07,https://doi.org/10.1016/j.jcp.2007.07.003 +Matthew Celnik,A predictor-corrector algorithm for the coupling of stiff ODEs to a particle population balance.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#CelnikPKW09,https://doi.org/10.1016/j.jcp.2008.12.030 +Mohamed Zerroukat,Application of the parabolic spline method (PSM) to a multi-dimensional conservative semi-Lagrangian transport scheme (SLICE).,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#ZerroukatWS07,https://doi.org/10.1016/j.jcp.2007.01.006 +S. V. Petropavlovsky,A non-deteriorating algorithm for computational electromagnetism based on quasi-lacunae of Maxwell's equations.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#PetropavlovskyT12,https://doi.org/10.1016/j.jcp.2011.09.019 +Alex Mahalov,Time-filtered leapfrog integration of Maxwell equations using unstaggered temporal grids.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#MahalovM16,https://doi.org/10.1016/j.jcp.2016.08.016 +Felix S. Schranner,A conservative interface-interaction model with insoluble surfactant.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#SchrannerA16,https://doi.org/10.1016/j.jcp.2016.09.058 +Cécile Piret,A radial basis functions method for fractional diffusion equations.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#PiretH13,https://doi.org/10.1016/j.jcp.2012.10.041 +Boyce E. Griffith,An accurate and efficient method for the incompressible Navier-Stokes equations using the projection method as a preconditioner.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#Griffith09,https://doi.org/10.1016/j.jcp.2009.07.001 +Bryan W. Holland,Computer data analysis of the oscillating forward-reverse method.,2012,231,J. Comput. Physics,11,db/journals/jcphy/jcphy231.html#HollandVT12,https://doi.org/10.1016/j.jcp.2012.02.018 +Youbing Yin,A multiscale MDCT image-based breathing lung model with time-varying regional ventilation.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#YinCHTL13,https://doi.org/10.1016/j.jcp.2012.12.007 +Eldad Haber,A fast method for the solution of the Helmholtz equation.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#HaberM11,https://doi.org/10.1016/j.jcp.2011.01.015 +Jian Guo Zhou,Enhancement of the LABSWE for shallow water flows.,2011,230,J. Comput. Physics,2,db/journals/jcphy/jcphy230.html#Zhou11,https://doi.org/10.1016/j.jcp.2010.09.027 +Changfeng Xue,An upwinding boundary condition capturing method for Maxwell's equations in media with material interfaces.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#XueD07,https://doi.org/10.1016/j.jcp.2006.12.001 +Eric Johnsen,On the treatment of contact discontinuities using WENO schemes.,2011,230,J. Comput. Physics,24,db/journals/jcphy/jcphy230.html#Johnsen11,https://doi.org/10.1016/j.jcp.2011.08.017 +Fayssal Benkhaldoun,Well-balanced finite volume schemes for pollutant transport by shallow water equations on unstructured meshes.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#BenkhaldounES07,https://doi.org/10.1016/j.jcp.2007.04.005 +Xiaodong Ren,A multi-dimensional high-order discontinuous Galerkin method based on gas kinetic theory for viscous flow computations.,2015,292,J. Comput. Physics,,db/journals/jcphy/jcphy292.html#RenXSG15,https://doi.org/10.1016/j.jcp.2015.03.031 +D. Lee,Discrete conservation properties for shallow water flows using mixed mimetic spectral elements.,2018,357,J. Comput. Physics,,db/journals/jcphy/jcphy357.html#LeePG18,https://doi.org/10.1016/j.jcp.2017.12.022 +William D. Henshaw,Parallel computation of three-dimensional flows using overlapping grids with adaptive mesh refinement.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#HenshawS08,https://doi.org/10.1016/j.jcp.2008.04.033 +Sehun Chun,Method of moving frames to solve the shallow water equations on arbitrary rotating curved surfaces.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#ChunE17,https://doi.org/10.1016/j.jcp.2016.12.013 +Pablo Mata,Variational integrators for the dynamics of thermo-elastic solids with finite speed thermal waves.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#MataL14,https://doi.org/10.1016/j.jcp.2013.09.030 +S. LeMartelot,Liquid and liquid-gas flows at all speeds.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#LeMartelotNS13,https://doi.org/10.1016/j.jcp.2013.08.001 +Florian Schneider,Kershaw closures for linear transport equations in slab geometry I: Model derivation.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#Schneider16,https://doi.org/10.1016/j.jcp.2016.02.080 +Jung Hee Seo,Prediction of cavitating flow noise by direct numerical simulation.,2008,227,J. Comput. Physics,13,db/journals/jcphy/jcphy227.html#SeoMS08,https://doi.org/10.1016/j.jcp.2008.03.016 +S. Karimi,On multi-time-step monolithic coupling algorithms for elastodynamics.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#KarimiN14,https://doi.org/10.1016/j.jcp.2014.05.034 +Rafael Ramis,One-dimensional Lagrangian implicit hydrodynamic algorithm for Inertial Confinement Fusion applications.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#Ramis17,https://doi.org/10.1016/j.jcp.2016.11.011 +Dragan Vidovic,Accelerated non-linear finite volume method for diffusion.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#VidovicDP11,https://doi.org/10.1016/j.jcp.2011.01.016 +Michael G. Edwards,Double-families of quasi-positive Darcy-flux approximations with highly anisotropic tensors on structured and unstructured grids.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#EdwardsZ10,https://doi.org/10.1016/j.jcp.2009.09.037 +F. Mottez,A guiding centre direct implicit scheme for magnetized plasma simulations.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#Mottez08,https://doi.org/10.1016/j.jcp.2007.11.034 +John P. Boyd 0001,Numerical and perturbative computations of solitary waves of the Benjamin-Ono equation with higher order nonlinearity using Christov rational basis functions.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#BoydX12,https://doi.org/10.1016/j.jcp.2011.10.004 +Qibing Li,On the multidimensional gas-kinetic BGK scheme.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#LiF06,https://doi.org/10.1016/j.jcp.2006.07.010 +Wei-Ming Lee,Acoustic scattering by multiple elliptical cylinders using collocation multipole method.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#Lee12a,https://doi.org/10.1016/j.jcp.2012.02.032 +David M. Ambrose,Fokas integral equations for three dimensional layered-media scattering.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#AmbroseN14,https://doi.org/10.1016/j.jcp.2014.07.018 +Matthias Ruf,A real space split operator method for the Klein-Gordon equation.,2009,228,J. Comput. Physics,24,db/journals/jcphy/jcphy228.html#RufBK09,https://doi.org/10.1016/j.jcp.2009.09.012 +Victor I. Kostin,Local time-space mesh refinement for simulation of elastic wave propagation in multi-scale media.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#KostinLRT15,https://doi.org/10.1016/j.jcp.2014.10.047 +Xiaoping Zhang,Quadrature rules for finite element approximations of 1D nonlocal problems.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#ZhangGJ16,https://doi.org/10.1016/j.jcp.2016.01.016 +Jie Zhang,A consistent and conservative scheme for MHD flows with complex boundaries on an unstructured Cartesian adaptive system.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#ZhangN14,https://doi.org/10.1016/j.jcp.2013.08.004 +Duan Z. Zhang,Material point method applied to multiphase flows.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#ZhangZVM08,https://doi.org/10.1016/j.jcp.2007.11.021 +Manuel Huber 0002,On the physically based modeling of surface tension and moving contact lines with dynamic contact angles on the continuum scale.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#HuberKSHKHN16,https://doi.org/10.1016/j.jcp.2016.01.030 +Fedderik van der Bos,Numerical simulation of premixed combustion using an enriched finite element method.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#BosG09,https://doi.org/10.1016/j.jcp.2008.12.039 +Sean Y. Hon,A cell based particle method for modeling dynamic interfaces.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#HonLZ14,https://doi.org/10.1016/j.jcp.2014.04.032 +Aidan P. Thompson,Spectral neighbor analysis method for automated generation of quantum-accurate interatomic potentials.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#ThompsonSTFT15,https://doi.org/10.1016/j.jcp.2014.12.018 +Jingrun Chen,An efficient multigrid strategy for large-scale molecular mechanics optimization.,2017,342,J. Comput. Physics,,db/journals/jcphy/jcphy342.html#ChenG17,https://doi.org/10.1016/j.jcp.2017.04.035 +James P. Collins,A gridfree scheme for simulation of natural convection in three dimensions.,2018,369,J. Comput. Physics,,db/journals/jcphy/jcphy369.html#CollinsB18,https://doi.org/10.1016/j.jcp.2018.05.012 +Christophe Bogey,A shock-capturing methodology based on adaptative spatial filtering for high-order non-linear computations.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#BogeyCB09,https://doi.org/10.1016/j.jcp.2008.10.042 +Francesco Paparella,Lagrangian numerical methods for ocean biogeochemical simulations.,2018,360,J. Comput. Physics,,db/journals/jcphy/jcphy360.html#PaparellaP18,https://doi.org/10.1016/j.jcp.2018.01.031 +Deep Ray,An artificial neural network as a troubled-cell indicator.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#RayH18,https://doi.org/10.1016/j.jcp.2018.04.029 +Nicolas Favrie,Diffuse interface model for compressible fluid - Compressible elastic-plastic solid interaction.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#FavrieG12,https://doi.org/10.1016/j.jcp.2011.11.027 +Yibin Wang,Delaunay graph and radial basis function for fast quality mesh deformation.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#WangQZ15,https://doi.org/10.1016/j.jcp.2015.03.046 +Matei Tene,Algebraic multiscale method for flow in heterogeneous porous media with embedded discrete fractures (F-AMS).,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#TeneKH16,https://doi.org/10.1016/j.jcp.2016.06.012 +Zhizhang Wu,A Bloch decomposition-based stochastic Galerkin method for quantum dynamics with a random external potential.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#WuH16,https://doi.org/10.1016/j.jcp.2016.04.051 +Stéphane Clain,First- and second-order finite volume methods for the one-dimensional nonconservative Euler system.,2009,228,J. Comput. Physics,22,db/journals/jcphy/jcphy228.html#ClainR09,https://doi.org/10.1016/j.jcp.2009.07.038 +Gil Ariel,Gaussian beam decomposition of high frequency wave fields using expectation-maximization.,2011,230,J. Comput. Physics,6,db/journals/jcphy/jcphy230.html#ArielETT11,https://doi.org/10.1016/j.jcp.2010.12.018 +S. Britt,Numerical solution of the wave equation with variable wave speed on nonconforming domains by high-order difference potentials.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#BrittTT18,https://doi.org/10.1016/j.jcp.2017.10.049 +Emanuela Abbate,An all-speed relaxation scheme for gases and compressible materials.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#AbbateIP17,https://doi.org/10.1016/j.jcp.2017.08.052 +Amit Kumar,Accelerated boundary integral method for multiphase flow in non-periodic geometries.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#KumarG12,https://doi.org/10.1016/j.jcp.2012.05.035 +Guang-hua Gao,Some high-order difference schemes for the distributed-order differential equations.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#GaoSS15a,https://doi.org/10.1016/j.jcp.2015.05.047 +Russel E. Caflisch,An application of multigrid methods for a discrete elastic model for epitaxial systems.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#CaflischLSXX06,https://doi.org/10.1016/j.jcp.2006.04.007 +Mingtian Xu,The integral equation approach to kinematic dynamo theory and its application to dynamo experiments in cylindrical geometry.,2008,227,J. Comput. Physics,17,db/journals/jcphy/jcphy227.html#XuSG08,https://doi.org/10.1016/j.jcp.2008.05.009 +Weizhang Huang,A new anisotropic mesh adaptation method based upon hierarchical a posteriori error estimates.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#HuangKL10,https://doi.org/10.1016/j.jcp.2009.11.029 +Kenny Chowdhary,Bayesian estimation of Karhunen-Loève expansions* A random subspace approach.,2016,319,J. Comput. Physics,,db/journals/jcphy/jcphy319.html#ChowdharyN16,https://doi.org/10.1016/j.jcp.2016.02.056 +Xia Cui,Asymptotic analysis of discrete schemes for non-equilibrium radiation diffusion.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#CuiYS16,https://doi.org/10.1016/j.jcp.2016.02.061 +Axelle Viré,Modeling and discretization errors in large eddy simulations of hydrodynamic and magnetohydrodynamic channel flows.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#VireKBK11,https://doi.org/10.1016/j.jcp.2010.11.039 +Patrick Blonigan,Probability density adjoint for sensitivity analysis of the Mean of Chaos.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#BloniganW14,https://doi.org/10.1016/j.jcp.2014.04.027 +Haihu Liu,Phase-field modeling droplet dynamics with soluble surfactants.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#LiuZ10,https://doi.org/10.1016/j.jcp.2010.08.031 +Anupam Gupta,Hybrid Lattice Boltzmann/Finite Difference simulations of viscoelastic multicomponent flows in confined geometries.,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#GuptaSS15,https://doi.org/10.1016/j.jcp.2015.03.006 +Bengt Fornberg,Stabilization of RBF-generated finite difference methods for convective PDEs.,2011,230,J. Comput. Physics,6,db/journals/jcphy/jcphy230.html#FornbergL11,https://doi.org/10.1016/j.jcp.2010.12.014 +Souvik Pal,Symmetry boundary condition in dissipative particle dynamics.,2015,292,J. Comput. Physics,,db/journals/jcphy/jcphy292.html#PalLLHM15,https://doi.org/10.1016/j.jcp.2015.03.025 +Feng Chen,A GPU parallelized spectral method for elliptic equations in rectangular domains.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#ChenS13,https://doi.org/10.1016/j.jcp.2013.05.031 +Bert Seynaeve,Fourier mode analysis of multigrid methods for partial differential equations with random coefficients.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#SeynaeveRNV07,https://doi.org/10.1016/j.jcp.2006.12.011 +Lei Tang,Improving Godunov-type reconstructions for simulation of vortex-dominated flows.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#TangB06,https://doi.org/10.1016/j.jcp.2005.08.030 +Masashi Noda,Massively-parallel electron dynamics calculations in real-time and real-space: Toward applications to nanostructures of more than ten-nanometers in size.,2014,265,J. Comput. Physics,,db/journals/jcphy/jcphy265.html#NodaINYB14,https://doi.org/10.1016/j.jcp.2014.02.006 +Stéphanie Chaillat,FaIMS: A fast algorithm for the inverse medium problem with multiple frequencies and multiple sources for the scalar Helmholtz equation.,2012,231,J. Comput. Physics,12,db/journals/jcphy/jcphy231.html#ChaillatB12,https://doi.org/10.1016/j.jcp.2012.02.006 +Gaël Poëtte,Non intrusive iterative stochastic spectral representation with application to compressible gas dynamics.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#PoetteL12,https://doi.org/10.1016/j.jcp.2011.12.038 +Jean-Luc Guermond,Nonlinear magnetohydrodynamics in axisymmetric heterogeneous domains using a Fourier/finite element technique and an interior penalty method.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#GuermondLLN09,https://doi.org/10.1016/j.jcp.2008.12.026 +Michael Dumbser,High order ADER schemes for a unified first order hyperbolic formulation of continuum mechanics: Viscous heat-conducting fluids and elastic solids.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#DumbserPRZ16,https://doi.org/10.1016/j.jcp.2016.02.015 +Frank Schilder,Computing Arnol**d tongue scenarios.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#SchilderP07,https://doi.org/10.1016/j.jcp.2006.05.041 +Honghua Dai,A time domain collocation method for studying the aeroelasticity of a two dimensional airfoil with a structural nonlinearity.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#DaiYYA14,https://doi.org/10.1016/j.jcp.2014.03.063 +Robert W. Anderson,High-order local maximum principle preserving (MPP) discontinuous Galerkin finite element method for the transport equation.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#AndersonDKKLRT17,https://doi.org/10.1016/j.jcp.2016.12.031 +Nima Tofighi,An incompressible smoothed particle hydrodynamics method for the motion of rigid bodies in fluids.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#TofighiORFY15,https://doi.org/10.1016/j.jcp.2015.05.015 +Michael Messner,A fast Galerkin method for parabolic space-time boundary integral equations.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#MessnerST14,https://doi.org/10.1016/j.jcp.2013.10.029 +D. Krishna Kishor,A Legendre spectral element model for sloshing and acoustic analysis in nearly incompressible fluids.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#KishorGG10,https://doi.org/10.1016/j.jcp.2009.12.008 +Ying Xu,A Numerical procedure for solving 2D phase-field model problems.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#XuMT06,https://doi.org/10.1016/j.jcp.2006.03.007 +Luca Magri,Stability analysis of thermo-acoustic nonlinear eigenproblems in annular combustors. Part I. Sensitivity.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#MagriBJ16,https://doi.org/10.1016/j.jcp.2016.07.032 +Leopold Grinberg,A new domain decomposition method with overlapping patches for ultrascale simulations: Application to biological flows.,2010,229,J. Comput. Physics,15,db/journals/jcphy/jcphy229.html#GrinbergK10,https://doi.org/10.1016/j.jcp.2010.04.014 +Huan Lei,Time-dependent and outflow boundary conditions for Dissipative Particle Dynamics.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#LeiFK11,https://doi.org/10.1016/j.jcp.2011.02.003 +Sheng Xu,A boundary condition capturing immersed interface method for 3D rigid objects in a flow.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#Xu11,https://doi.org/10.1016/j.jcp.2011.05.019 +Manuel J. Castro,Why many theories of shock waves are necessary: Convergence error in formally path-consistent schemes.,2008,227,J. Comput. Physics,17,db/journals/jcphy/jcphy227.html#CastroLMP08,https://doi.org/10.1016/j.jcp.2008.05.012 +Francesca Fusi,An adaptive strategy on the error of the objective functions for uncertainty-based derivative-free optimization.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#FusiC16,https://doi.org/10.1016/j.jcp.2016.01.004 +Xing Meng,Classical and semirelativistic magnetohydrodynamics with anisotropic ion pressure.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#MengTSG12,https://doi.org/10.1016/j.jcp.2011.12.042 +José A. Carrillo,Numerical simulation of nonlinear continuity equations by evolving diffeomorphisms.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#CarrilloRW16,https://doi.org/10.1016/j.jcp.2016.09.040 +Oscar P. Bruno,A high-order integral solver for scalar problems of diffraction by screens and apertures in three-dimensional space.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#BrunoL13,https://doi.org/10.1016/j.jcp.2013.06.022 +Huafei Sun,On the impact of triangle shapes for boundary layer problems using high-order finite element discretization.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#SunDH12,https://doi.org/10.1016/j.jcp.2011.09.018 +Shengtai Li,A fourth-order divergence-free method for MHD flows.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#Li10a,https://doi.org/10.1016/j.jcp.2010.06.044 +Pao-Hsiung Chiu,An effective explicit pressure gradient scheme implemented in the two-level non-staggered grids for incompressible Navier-Stokes equations.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#ChiuSL08,https://doi.org/10.1016/j.jcp.2007.12.007 +Jesse Capecelatro,An Euler-Lagrange strategy for simulating particle-laden flows.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#CapecelatroD13,https://doi.org/10.1016/j.jcp.2012.12.015 +Thomas Toulorge,CFL Conditions for Runge-Kutta discontinuous Galerkin methods on triangular grids.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#ToulorgeD11,https://doi.org/10.1016/j.jcp.2011.02.040 +Xiao-Kun Wei,An efficient higher-order PML in WLP-FDTD method for time reversed wave simulation.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#WeiSOW16,https://doi.org/10.1016/j.jcp.2016.06.032 +Yoann Cheny,The LS-STAG method: A new immersed boundary/level-set method for the computation of incompressible viscous flows in complex moving geometries with good conservation properties.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#ChenyB10,https://doi.org/10.1016/j.jcp.2009.10.007 +Fabian Denner,Compressive VOF method with skewness correction to capture sharp interfaces on arbitrary meshes.,2014,279,J. Comput. Physics,,db/journals/jcphy/jcphy279.html#DennerW14,https://doi.org/10.1016/j.jcp.2014.09.002 +Maya A. Petkova,Fast and accurate Voronoi density gridding from Lagrangian hydrodynamics data.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#PetkovaLB18,https://doi.org/10.1016/j.jcp.2017.10.024 +Alessandro Veneziani,ALADINS: An ALgebraic splitting time ADaptive solver for the Incompressible Navier-Stokes equations.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#VenezianiV13,https://doi.org/10.1016/j.jcp.2012.11.049 +Jan S. Hesthaven,Non-intrusive reduced order modeling of nonlinear problems using neural networks.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#HesthavenU18,https://doi.org/10.1016/j.jcp.2018.02.037 +Irene M. Gamba,Spectral-Lagrangian methods for collisional models of non-equilibrium statistical states.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#GambaT09,https://doi.org/10.1016/j.jcp.2008.09.033 +Lee Lindblom,Solving partial differential equations numerically on manifolds with arbitrary spatial topologies.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#LindblomS13,https://doi.org/10.1016/j.jcp.2013.02.031 +Diego Samuel Rodrigues,A semi-implicit finite element method for viscous lipid membranes.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#RodriguesAMB15,https://doi.org/10.1016/j.jcp.2015.06.010 +Markus Kästner,Isogeometric analysis of the Cahn-Hilliard equation - a convergence study.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#KastnerMB16,https://doi.org/10.1016/j.jcp.2015.10.047 +Piotr K. Smolarkiewicz,A consistent framework for discrete integrations of soundproof and compressible PDEs of atmospheric dynamics.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#SmolarkiewiczKW14,https://doi.org/10.1016/j.jcp.2014.01.031 +Hasan Almanasreh,hp-Cloud approximation of the Dirac eigenvalue problem: The way of stability.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#Almanasreh14,https://doi.org/10.1016/j.jcp.2014.03.046 +Lukas Einkemmer,A splitting approach for the Kadomtsev-Petviashvili equation.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#EinkemmerO15,https://doi.org/10.1016/j.jcp.2015.07.024 +C. D. Riyanti,A parallel multigrid-based preconditioner for the 3D heterogeneous high-frequency Helmholtz equation.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#RiyantiKEVOPM07,https://doi.org/10.1016/j.jcp.2007.03.033 +Brandon E. Merrill,A spectrally accurate method for overlapping grid solution of incompressible Navier-Stokes equations.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#MerrillPFL16,https://doi.org/10.1016/j.jcp.2015.11.057 +Andrew V. Terekhov,The stabilization of high-order multistep schemes for the Laguerre one-way wave equation solver.,2018,368,J. Comput. Physics,,db/journals/jcphy/jcphy368.html#Terekhov18,https://doi.org/10.1016/j.jcp.2018.04.059 +Bram van Es,Finite-volume scheme for anisotropic diffusion.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#EsKB16,https://doi.org/10.1016/j.jcp.2015.11.041 +R. David Evans,Multi-scenario modelling of uncertainty in stochastic chemical systems.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#EvansR14,https://doi.org/10.1016/j.jcp.2014.05.028 +Xiaogang Deng,Further studies on Geometric Conservation Law and applications to high-order finite difference schemes with stationary grids.,2013,239,J. Comput. Physics,,db/journals/jcphy/jcphy239.html#DengMMLTZ13,https://doi.org/10.1016/j.jcp.2012.12.002 +Ravi Samtaney,A method to simulate linear stability of impulsively accelerated density interfaces in ideal-MHD and gas dynamics.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#Samtaney09,https://doi.org/10.1016/j.jcp.2009.05.042 +N. I. Shvetsov-Shilovski,Stable and efficient momentum-space solutions of the time-dependent Schrödinger equation for one-dimensional atoms in strong laser fields.,2014,279,J. Comput. Physics,,db/journals/jcphy/jcphy279.html#Shvetsov-ShilovskiR14,https://doi.org/10.1016/j.jcp.2014.09.006 +Dinshaw S. Balsara,Three dimensional HLL Riemann solver for conservation laws on structured meshes* Application to Euler and magnetohydrodynamic flows.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#Balsara15,https://doi.org/10.1016/j.jcp.2015.03.056 +Ludvig af Klinteberg,A fast integral equation method for solid particles in viscous flow using quadrature by expansion.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#KlintebergT16,https://doi.org/10.1016/j.jcp.2016.09.006 +Abbas Fakhari,Diffuse interface modeling of three-phase contact line dynamics on curved boundaries: A lattice Boltzmann model for large density and viscosity ratios.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#FakhariB17,https://doi.org/10.1016/j.jcp.2017.01.025 +Hui Ji,Wavelet frame based scene reconstruction from range data.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#JiSX10,https://doi.org/10.1016/j.jcp.2009.11.024 +Swej Shah,The multiscale restriction smoothed basis method for fractured porous media (F-MsRSB).,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#ShahMTLH16,https://doi.org/10.1016/j.jcp.2016.05.001 +Emilie Marchandise,A quadrature-free discontinuous Galerkin method for the level set equation.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#MarchandiseRC06,https://doi.org/10.1016/j.jcp.2005.07.006 +Raul Borsche,ADER schemes and high order coupling on networks of hyperbolic conservation laws.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#BorscheK14,https://doi.org/10.1016/j.jcp.2014.05.042 +Eric E. Keaveny,Fluctuating force-coupling method for simulations of colloidal suspensions.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#Keaveny14,https://doi.org/10.1016/j.jcp.2014.03.013 +Zhao-peng Hao,A fourth-order approximation of fractional derivatives with its applications.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#HaoSC15,https://doi.org/10.1016/j.jcp.2014.10.053 +Laura B. Lurati,Padé-Gegenbauer suppression of Runge phenomenon in the diagonal limit of Gegenbauer approximations.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#Lurati07,https://doi.org/10.1016/j.jcp.2006.06.032 +Donghyun You,Analysis of stability and accuracy of finite-difference schemes on a skewed mesh.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#YouMWM06,https://doi.org/10.1016/j.jcp.2005.08.007 +Vaibhav Joshi,An adaptive variational procedure for the conservative and positivity preserving Allen-Cahn phase-field model.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#JoshiJ18a,https://doi.org/10.1016/j.jcp.2018.04.022 +Anirudh Rana,A robust numerical method for the R13 equations of rarefied gas dynamics: Application to lid driven cavity.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#RanaTS13,https://doi.org/10.1016/j.jcp.2012.11.023 +Mario Ohlberger,Approximation of skewed interfaces with tensor-based model reduction procedures: Application to the reduced basis hierarchical model reduction approach.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#OhlbergerS16,https://doi.org/10.1016/j.jcp.2016.06.021 +François Doisneau,A semi-Lagrangian transport method for kinetic problems with application to dense-to-dilute polydisperse reacting spray flows.,2017,329,J. Comput. Physics,,db/journals/jcphy/jcphy329.html#DoisneauAO17,https://doi.org/10.1016/j.jcp.2016.10.042 +Jeremiah U. Brackbill,Boundary conditions for Maxwell solvers.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#Brackbill08,https://doi.org/10.1016/j.jcp.2008.03.046 +Jing Li,Mesh refinement for uncertainty quantification through model reduction.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#LiS15,https://doi.org/10.1016/j.jcp.2014.09.021 +Heyu Wang,Efficient computation of dendritic growth with r-adaptive finite element methods.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#WangLT08,https://doi.org/10.1016/j.jcp.2008.02.016 +Hogenrich Damanik,A monolithic FEM-multigrid solver for non-isothermal incompressible flow on general meshes.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#DamanikHOT09,https://doi.org/10.1016/j.jcp.2009.02.024 +Qiang Chen 0005,Canonical symplectic structure and structure-preserving geometric algorithms for Schrödinger-Maxwell systems.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#ChenQLXZHW17,https://doi.org/10.1016/j.jcp.2017.08.033 +Philip J. Archer,A new non-overlapping concept to improve the Hybrid Particle Level Set method in multi-phase fluid flows.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#ArcherB15,https://doi.org/10.1016/j.jcp.2014.11.018 +Mohsen Zayernouri,Fractional spectral collocation methods for linear and nonlinear variable order FPDEs.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#ZayernouriK15,https://doi.org/10.1016/j.jcp.2014.12.001 +Kelsey L. DiPietro,Monge-Ampére simulation of fourth order PDEs in two dimensions with application to elastic-electrostatic contact problems.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#DiPietroL17,https://doi.org/10.1016/j.jcp.2017.08.032 +K. R. Srinivasan,Thermomechanical modeling of regressing heterogeneous solid propellants.,2009,228,J. Comput. Physics,21,db/journals/jcphy/jcphy228.html#SrinivasanMGJ09,https://doi.org/10.1016/j.jcp.2009.07.003 +Rodney O. Fox,Numerical simulation of spray coalescence in an Eulerian framework: Direct quadrature method of moments and multi-fluid method.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#FoxLM08,https://doi.org/10.1016/j.jcp.2007.10.028 +Ahmed H. Elsheikh,An iterative stochastic ensemble method for parameter estimation of subsurface flow models.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#ElsheikhWH13,https://doi.org/10.1016/j.jcp.2013.01.047 +Roland Glowinski,Wall-driven incompressible viscous flow in a two-dimensional semi-circular cavity.,2006,216,J. Comput. Physics,1,db/journals/jcphy/jcphy216.html#GlowinskiGP06,https://doi.org/10.1016/j.jcp.2005.11.021 +Michael Dumbser,Quadrature-free non-oscillatory finite volume schemes on unstructured meshes for nonlinear hyperbolic systems.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#DumbserKTT07,https://doi.org/10.1016/j.jcp.2007.04.004 +Ashish Pathak,A three-dimensional volume-of-fluid method for reconstructing and advecting three-material interfaces forming contact lines.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#PathakR16,https://doi.org/10.1016/j.jcp.2015.11.062 +Edward W. Larsen,Properties of the implicitly time-differenced equations of thermal radiation transport.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#LarsenKM13,https://doi.org/10.1016/j.jcp.2012.11.034 +L. M. Yang,Development of discrete gas kinetic scheme for simulation of 3D viscous incompressible and compressible flows.,2016,319,J. Comput. Physics,,db/journals/jcphy/jcphy319.html#YangSWS16,https://doi.org/10.1016/j.jcp.2016.05.018 +Antonio J. Gil,An enhanced Immersed Structural Potential Method for fluid-structure interaction.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#GilCBH13,https://doi.org/10.1016/j.jcp.2013.05.011 +Duncan A. Lockerby,Time-step coupling for hybrid simulations of multiscale flows.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#LockerbyDBR13,https://doi.org/10.1016/j.jcp.2012.11.032 +R. J. Dilz,A domain integral equation approach for simulating two dimensional transverse electric scattering in a layered medium with a Gabor frame discretization.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#DilzB17,https://doi.org/10.1016/j.jcp.2017.05.034 +S. Peluchon,A robust implicit-explicit acoustic-transport splitting scheme for two-phase flows.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#PeluchonGM17,https://doi.org/10.1016/j.jcp.2017.03.019 +Jean-Luc Guermond,Fast estimation from above of the maximum wave speed in the Riemann problem for the Euler equations.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#GuermondP16,https://doi.org/10.1016/j.jcp.2016.05.054 +Jens Berg,Stable Robin solid wall boundary conditions for the Navier-Stokes equations.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#BergN11,https://doi.org/10.1016/j.jcp.2011.06.027 +Arthur E. Turrell,Self-consistent inclusion of classical large-angle Coulomb collisions in plasma Monte Carlo simulations.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#TurrellSR15,https://doi.org/10.1016/j.jcp.2015.06.034 +You Ling,Selection of model discrepancy priors in Bayesian calibration.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#LingMM14,https://doi.org/10.1016/j.jcp.2014.08.005 +Daniel J. Price,Smoothed particle hydrodynamics and magnetohydrodynamics.,2012,231,J. Comput. Physics,3,db/journals/jcphy/jcphy231.html#Price12,https://doi.org/10.1016/j.jcp.2010.12.011 +James Bremer,On the nonoscillatory phase function for Legendre's differential equation.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#BremerR17,https://doi.org/10.1016/j.jcp.2017.08.041 +James Shaw,Multidimensional method-of-lines transport for atmospheric flows over steep terrain using arbitrary meshes.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#ShawWMD17,https://doi.org/10.1016/j.jcp.2017.04.061 +Haiyan Jiang,Accuracy of the Frensley inflow boundary condition for Wigner equations in simulating resonant tunneling diodes.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#JiangCT11,https://doi.org/10.1016/j.jcp.2010.12.002 +Christoph Lohmann,Flux-corrected transport algorithms for continuous Galerkin methods based on high order Bernstein finite elements.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#LohmannKSM17,https://doi.org/10.1016/j.jcp.2017.04.059 +S. Janakiraman,A novel variable resolution global spectral method on the sphere.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#JanakiramanNM12,https://doi.org/10.1016/j.jcp.2011.12.023 +Xiaoxiao Chen,A flexible numerical approach for quantification of epistemic uncertainty.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#ChenPX13,https://doi.org/10.1016/j.jcp.2013.01.018 +Terence J. O'Kane,ENSO regimes and the late 1970's climate shift: The role of synoptic weather and South Pacific ocean spiciness.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#OKaneMCO14,https://doi.org/10.1016/j.jcp.2013.10.058 +Takanobu Amano,A robust method for handling low density regions in hybrid simulations for collisionless plasmas.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#AmanoHS14,https://doi.org/10.1016/j.jcp.2014.06.048 +M. S. Rosin,Multilevel Monte Carlo simulation of Coulomb collisions.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#RosinRDCC14,https://doi.org/10.1016/j.jcp.2014.05.030 +Anshul Mittal,A parabolic velocity-decomposition method for wind turbines.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#MittalBST17,https://doi.org/10.1016/j.jcp.2016.10.038 +Jean-François Lemieux,A second-order accurate in time IMplicit-EXplicit (IMEX) integration scheme for sea ice dynamics.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#LemieuxKLG14,https://doi.org/10.1016/j.jcp.2014.01.010 +David J. Munk,Topology optimisation of micro fluidic mixers considering fluid-structure interactions with a coupled Lattice Boltzmann algorithm.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#MunkKVSP17,https://doi.org/10.1016/j.jcp.2017.08.008 +Benoît Fiorina,An artificial nonlinear diffusivity method for supersonic reacting flows with shocks.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#FiorinaL07,https://doi.org/10.1016/j.jcp.2006.07.020 +Tobias Jahnke,Solving chemical master equations by adaptive wavelet compression.,2010,229,J. Comput. Physics,16,db/journals/jcphy/jcphy229.html#JahnkeU10,https://doi.org/10.1016/j.jcp.2010.04.015 +T. Gillebaart,Adaptive radial basis function mesh deformation using data reduction.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#GillebaartBZB16,https://doi.org/10.1016/j.jcp.2016.05.036 +Yan-Fei Jing,A comparative study of iterative solutions to linear systems arising in quantum mechanics.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#JingHDC10,https://doi.org/10.1016/j.jcp.2010.07.034 +Ziemowit Malecha,A multiscale algorithm for simulating spatially-extended Langmuir circulation dynamics.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#MalechaCJ14,https://doi.org/10.1016/j.jcp.2013.07.003 +Haibo Huang,A mass-conserving axisymmetric multiphase lattice Boltzmann method and its application in simulation of bubble rising.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#HuangHL14,https://doi.org/10.1016/j.jcp.2014.03.028 +Wei Cai,Extending the fast multipole method to charges inside or outside a dielectric sphere.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#CaiDJ07,https://doi.org/10.1016/j.jcp.2006.10.019 +Andrei I. Tolstykh,Development of arbitrary-order multioperators-based schemes for parallel calculations. 1.: Higher-than-fifth-order approximations to convection terms.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#Tolstykh07,https://doi.org/10.1016/j.jcp.2007.03.021 +Ching-Shan Chou,High order residual distribution conservative finite difference WENO schemes for convection-diffusion steady state problems on non-smooth meshes.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#ChouS07,https://doi.org/10.1016/j.jcp.2006.11.006 +Wenwu Chen,Parallel implementation of efficient preconditioned linear solver for grid-based applications in chemical physics. II: QMR linear solver.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#ChenP06a,https://doi.org/10.1016/j.jcp.2006.03.031 +Siwei Duo,A novel and accurate finite difference method for the fractional Laplacian and the fractional Poisson problem.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#DuoWZ18,https://doi.org/10.1016/j.jcp.2017.11.011 +Yongcheng Zhou,High order matched interface and boundary method for elliptic equations with discontinuous coefficients and singular sources.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#ZhouZFW06,https://doi.org/10.1016/j.jcp.2005.07.022 +Yong Cao,A splitting extrapolation for solving nonlinear elliptic equations with d-quadratic finite elements.,2009,228,J. Comput. Physics,1,db/journals/jcphy/jcphy228.html#CaoHL09,https://doi.org/10.1016/j.jcp.2008.09.003 +Luis Chacón,An asymptotic-preserving semi-Lagrangian algorithm for the time-dependent anisotropic heat transport equation.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#ChacondH14,https://doi.org/10.1016/j.jcp.2014.04.049 +Severin Strobl,Exact calculation of the overlap volume of spheres and mesh elements.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#StroblFP16,https://doi.org/10.1016/j.jcp.2016.02.003 +A. Paredes,A penalization technique to model plasma facing components in a tokamak with temperature variations.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#ParedesBCSSGT14,https://doi.org/10.1016/j.jcp.2014.05.025 +Zheng-Fang Zhang,A boundary piecewise constant level set method for boundary control of eigenvalue optimization problems.,2011,230,J. Comput. Physics,2,db/journals/jcphy/jcphy230.html#ZhangC11,https://doi.org/10.1016/j.jcp.2010.10.005 +Daniel R. Reynolds,A fully implicit numerical method for single-fluid resistive magnetohydrodynamics.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#ReynoldsSW06,https://doi.org/10.1016/j.jcp.2006.03.022 +Rafael T. Guiraldello,The Multiscale Robin Coupled Method for flows in porous media.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#GuiraldelloASPB18,https://doi.org/10.1016/j.jcp.2017.11.002 +Matthew McCormick,Simulating left ventricular fluid-solid mechanics through the cardiac cycle under LVAD support.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#McCormickNKS13,https://doi.org/10.1016/j.jcp.2012.08.008 +Heng-fei Ding,High-order algorithms for Riesz derivative and their applications (II).,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#DingLC15,https://doi.org/10.1016/j.jcp.2014.06.007 +Arthur Stück,Dual-consistency study for Green-Gauss gradient schemes in an unstructured Navier-Stokes method.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#Stuck17,https://doi.org/10.1016/j.jcp.2017.08.043 +Zixuan Wang,Sparse grid discontinuous Galerkin methods for high-dimensional elliptic equations.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#WangTGC16,https://doi.org/10.1016/j.jcp.2016.03.005 +Brian C. Vermeire,Adaptive IMEX schemes for high-order unstructured methods.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#VermeireN15,https://doi.org/10.1016/j.jcp.2014.09.016 +David I. Ketcheson,Runge-Kutta methods with minimum storage implementations.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#Ketcheson10,https://doi.org/10.1016/j.jcp.2009.11.006 +Dan Erik Petersen,Block tridiagonal matrix inversion and fast transmission calculations.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#PetersenSHSS08,https://doi.org/10.1016/j.jcp.2007.11.035 +Thomas Y. Hou,Mathematical modeling and simulation of aquatic and aerial animal locomotion.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#HouSW07,https://doi.org/10.1016/j.jcp.2007.02.015 +Xiang Yang,Efficient relaxed-Jacobi smoothers for multigrid on parallel computers.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#YangM17,https://doi.org/10.1016/j.jcp.2016.12.010 +A. H. Sheikh,Accelerating the shifted Laplace preconditioner for the Helmholtz equation by multilevel deflation.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#SheikhLRNV16,https://doi.org/10.1016/j.jcp.2016.06.025 +Xue-lei Lin,A fast accurate approximation method with multigrid solver for two-dimensional fractional sub-diffusion equation.,2016,323,J. Comput. Physics,,db/journals/jcphy/jcphy323.html#LinLNS16,https://doi.org/10.1016/j.jcp.2016.07.031 +Kartikey Asthana,Non-linear stabilization of high-order Flux Reconstruction schemes via Fourier-spectral filtering.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#AsthanaLJ15,https://doi.org/10.1016/j.jcp.2015.09.041 +Ramanathan Vishnampet,A practical discrete-adjoint method for high-fidelity compressible turbulence simulations.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#VishnampetBF15,https://doi.org/10.1016/j.jcp.2015.01.009 +Jérôme Breil,A cell-centered diffusion scheme on two-dimensional unstructured meshes.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#BreilM07,https://doi.org/10.1016/j.jcp.2006.10.025 +Jeremy O. McCaslin,A localized re-initialization equation for the conservative level set method.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#McCaslinD14,https://doi.org/10.1016/j.jcp.2014.01.017 +Vincent Deledicque,An exact Riemann solver for compressible two-phase flow models containing non-conservative products.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#DeledicqueP07,https://doi.org/10.1016/j.jcp.2006.07.025 +H. Ye,Compact difference scheme for distributed-order time-fractional diffusion-wave equation on bounded domains.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#YeLA15,https://doi.org/10.1016/j.jcp.2015.06.025 +Grady B. Wright,Stable computations with flat radial basis functions using vector-valued rational approximations.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#WrightF17,https://doi.org/10.1016/j.jcp.2016.11.030 +John A. Evans,Isogeometric divergence-conforming B-splines for the unsteady Navier-Stokes equations.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#EvansH13,https://doi.org/10.1016/j.jcp.2013.01.006 +A. Dumon,Proper general decomposition (PGD) for the resolution of Navier-Stokes equations.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#DumonAA11,https://doi.org/10.1016/j.jcp.2010.11.010 +Matthew R. Smith,An improved Quiet Direct Simulation method for Eulerian fluids using a second-order scheme.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#SmithCWJC09,https://doi.org/10.1016/j.jcp.2008.12.013 +Chung-Gang Li,An implicit turbulence model for low-Mach Roe scheme using truncated Navier-Stokes equations.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#LiT17,https://doi.org/10.1016/j.jcp.2017.05.032 +Juan-Chen Huang,Implicit preconditioned WENO scheme for steady viscous flow computation.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#HuangLY09,https://doi.org/10.1016/j.jcp.2008.09.017 +Chih-Yung Wen,Extension of CE/SE method to non-equilibrium dissociating flows.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#WenMS18,https://doi.org/10.1016/j.jcp.2017.12.005 +Muhammad Mohebujjaman,Energy balance and mass conservation in reduced order models of fluid flows.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#MohebujjamanRXI17,https://doi.org/10.1016/j.jcp.2017.06.019 +Vincent M. Laboure,Implicit filtered PN for high-energy density thermal radiation transport using discontinuous Galerkin finite elements.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#LaboureMH16,https://doi.org/10.1016/j.jcp.2016.05.046 +Christopher J. Arthurs,Efficient simulation of cardiac electrical propagation using high-order finite elements II: Adaptive p-version.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#ArthursBK13,https://doi.org/10.1016/j.jcp.2013.07.011 +Pierre-Alain Gremaud,On the computation of steady hopper flows III: Model comparisons.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#GremaudMS06,https://doi.org/10.1016/j.jcp.2006.03.032 +Antonio Turiel,Numerical methods for the estimation of multifractal singularity spectra on sampled data: A comparative study.,2006,216,J. Comput. Physics,1,db/journals/jcphy/jcphy216.html#TurielVG06,https://doi.org/10.1016/j.jcp.2005.12.004 +Yongbo Deng,Combination of topology optimization and optimal control method.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#DengLLW14,https://doi.org/10.1016/j.jcp.2013.09.033 +Christian Obrecht,High-performance implementations and large-scale validation of the link-wise artificial compressibility method.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#ObrechtAKR14,https://doi.org/10.1016/j.jcp.2014.06.062 +Philipp Rauschenberger,A Volume-of-Fluid method with interface reconstruction for ice growth in supercooled water.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#RauschenbergerW15,https://doi.org/10.1016/j.jcp.2014.10.037 +Zhenning Cai,An h-adaptive mesh method for Boltzmann-BGK/hydrodynamics coupling.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#CaiL10,https://doi.org/10.1016/j.jcp.2009.10.050 +Q. Douasbin,Delayed-time domain impedance boundary conditions (D-TDIBC).,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#DouasbinSSP18,https://doi.org/10.1016/j.jcp.2018.05.003 +Jiannong Fang,A regularized Lagrangian finite point method for the simulation of incompressible viscous flows.,2008,227,J. Comput. Physics,20,db/journals/jcphy/jcphy227.html#FangP08,https://doi.org/10.1016/j.jcp.2008.06.031 +Kailiang Wu,Sequential function approximation on arbitrarily distributed point sets.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#WuX18,https://doi.org/10.1016/j.jcp.2017.10.020 +Ethan J. Kubatko,Time step restrictions for Runge-Kutta discontinuous Galerkin methods on triangular grids.,2008,227,J. Comput. Physics,23,db/journals/jcphy/jcphy227.html#KubatkoDW08,https://doi.org/10.1016/j.jcp.2008.07.026 +Stelios Varoutis,Application of the integro-moment method to steady-state two-dimensional rarefied gas flows subject to boundary induced discontinuities.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#VaroutisVS08,https://doi.org/10.1016/j.jcp.2008.03.008 +Frieder Lörcher,An explicit discontinuous Galerkin scheme with local time-stepping for general unsteady diffusion equations.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#LorcherGM08,https://doi.org/10.1016/j.jcp.2008.02.015 +S. Busto,A projection hybrid high order finite volume/finite element method for incompressible turbulent flows.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#BustoFTV18,https://doi.org/10.1016/j.jcp.2017.10.004 +Sudarshan Kumar K,A finite volume method for a two-phase multicomponent polymer flooding.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#KCG14,https://doi.org/10.1016/j.jcp.2014.07.014 +Ju Zhang,A high-order incompressible flow solver with WENO.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#ZhangJ09,https://doi.org/10.1016/j.jcp.2008.12.009 +Jialin Hong,Explicit multi-symplectic methods for Klein-Gordon-Schrödinger equations.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#HongJL09,https://doi.org/10.1016/j.jcp.2009.02.006 +Cristiano De Michele,Simulating hard rigid bodies.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#Michele10,https://doi.org/10.1016/j.jcp.2010.01.002 +Wenjun Kou,A continuum mechanics-based musculo-mechanical model for esophageal transport.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#KouGPKP17,https://doi.org/10.1016/j.jcp.2017.07.025 +Jin Seok Park,Multi-dimensional limiting process for hyperbolic conservation laws on unstructured grids.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#ParkYK10,https://doi.org/10.1016/j.jcp.2009.10.011 +Wanho Lee,Localized axial Green's function method for the convection-diffusion equations in arbitrary domains.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#LeeK14,https://doi.org/10.1016/j.jcp.2014.06.050 +Kai Gao,A high-order multiscale finite-element method for time-domain acoustic-wave modeling.,2018,360,J. Comput. Physics,,db/journals/jcphy/jcphy360.html#GaoFC18,https://doi.org/10.1016/j.jcp.2018.01.032 +Ratnesh K. Shukla,Very high-order compact finite difference schemes on non-uniform grids for incompressible Navier-Stokes equations.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#ShuklaTZ07,https://doi.org/10.1016/j.jcp.2006.11.007 +Huazhong Tang,A note on the conservative schemes for the Euler equations.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#TangL06,https://doi.org/10.1016/j.jcp.2006.03.035 +Hatem Touil,Direct and large-eddy simulation of turbulent flows on composite multi-resolution grids by the lattice Boltzmann method.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#TouilRL14,https://doi.org/10.1016/j.jcp.2013.07.037 +Amir Nejat,Effect of discretization order on preconditioning and convergence of a high-order unstructured Newton-GMRES solver for the Euler equations.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#NejatO08,https://doi.org/10.1016/j.jcp.2007.10.024 +Eric T. Chung,Cluster-based generalized multiscale finite element method for elliptic PDEs with random coefficients.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#ChungELZ18,https://doi.org/10.1016/j.jcp.2018.05.041 +Alfonso Caiazzo,A numerical investigation of velocity-pressure reduced order models for incompressible flows.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#CaiazzoIJS14,https://doi.org/10.1016/j.jcp.2013.12.004 +Ignace Bogaert,A low frequency stable plane wave addition theorem.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#BogaertO09,https://doi.org/10.1016/j.jcp.2008.10.022 +H. R. Ghazizadeh,Explicit and implicit finite difference schemes for fractional Cattaneo equation.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#GhazizadehMA10,https://doi.org/10.1016/j.jcp.2010.05.039 +Nandan Gokhale,A dimensionally split Cartesian cut cell method for hyperbolic conservation laws.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#GokhaleNK18,https://doi.org/10.1016/j.jcp.2018.03.005 +Oriano Bottauscio,Comparison of multiscale models for eddy current computation in granular magnetic materials.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#BottauscioM13,https://doi.org/10.1016/j.jcp.2013.06.037 +Hidekazu Ikeno,Spherical Bessel transform via exponential sum approximation of spherical Bessel function.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#Ikeno18,https://doi.org/10.1016/j.jcp.2017.11.016 +Donald J. Estep,Fast and reliable methods for determining the evolution of uncertain parameters in differential equations.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#EstepN06,https://doi.org/10.1016/j.jcp.2005.08.024 +François Vilar,Positivity-preserving cell-centered Lagrangian schemes for multi-material compressible flows: From first-order to high-orders. Part II: The two-dimensional case.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#VilarSM16a,https://doi.org/10.1016/j.jcp.2016.01.037 +José G. Aguilar,Adjoint-based sensitivity analysis of low-order thermoacoustic networks using a wave-based approach.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#AguilarMJ17,https://doi.org/10.1016/j.jcp.2017.04.013 +Hua Y. Geng,Accelerating ab initio path integral molecular dynamics with multilevel sampling of potential surface.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#Geng15,https://doi.org/10.1016/j.jcp.2014.12.007 +Zhu Heitman,On the existence of nonoscillatory phase functions for second order ordinary differential equations in the high-frequency regime.,2015,290,J. Comput. Physics,,db/journals/jcphy/jcphy290.html#HeitmanBR15,https://doi.org/10.1016/j.jcp.2015.02.028 +Michael Dumbser,A new efficient formulation of the HLLEM Riemann solver for general conservative and non-conservative hyperbolic systems.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#DumbserB16,https://doi.org/10.1016/j.jcp.2015.10.014 +Gregory Beylkin,Fast convolution with the free space Helmholtz Green's function.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#BeylkinKM09,https://doi.org/10.1016/j.jcp.2008.12.027 +Florian Beyer 0001,A spectral solver for evolution problems with spatial S3-topology.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#Beyer09,https://doi.org/10.1016/j.jcp.2009.05.037 +F. P. Martins,A numerical study of the Kernel-conformation transformation for transient viscoelastic fluid flows.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#MartinsOAA15,https://doi.org/10.1016/j.jcp.2015.08.038 +Paul J. Turinsky,"Special issue on the ""Consortium for Advanced Simulation of Light Water Reactors Research and Development Progress"".",2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#TurinskyM17,https://doi.org/10.1016/j.jcp.2017.01.028 +Gabriel D. Weymouth,Conservative Volume-of-Fluid method for free-surface simulations on Cartesian-grids.,2010,229,J. Comput. Physics,8,db/journals/jcphy/jcphy229.html#WeymouthY10,https://doi.org/10.1016/j.jcp.2009.12.018 +George E. Karniadakis,Uncertainty quantification in simulation science.,2006,217,J. Comput. Physics,1,db/journals/jcphy/jcphy217.html#KarniadakisG06,https://doi.org/10.1016/j.jcp.2006.06.009 +Jia-Le Zhang,A GPU-accelerated implicit meshless method for compressible flows.,2018,360,J. Comput. Physics,,db/journals/jcphy/jcphy360.html#ZhangMCC18,https://doi.org/10.1016/j.jcp.2018.01.037 +Zhe Li,An immersed boundary-lattice Boltzmann method for single- and multi-component fluid flows.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#LiFDP16,https://doi.org/10.1016/j.jcp.2015.10.026 +Vadim Dyadechko,Reconstruction of multi-material interfaces from moment data.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#DyadechkoS08,https://doi.org/10.1016/j.jcp.2007.12.029 +Ali Ahmadian,Tau method for the numerical solution of a fuzzy fractional kinetic model and its application to the oil palm frond as a promising source of xylose.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#AhmadianSBAY15,https://doi.org/10.1016/j.jcp.2015.03.011 +Shiwei Zhou,Level-set based topology optimization for electromagnetic dipole antenna design.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#ZhouLL10,https://doi.org/10.1016/j.jcp.2010.05.030 +Carlo de Falco,Quantum-corrected drift-diffusion models: Solution fixed point map and finite element approximation.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#FalcoJS09,https://doi.org/10.1016/j.jcp.2008.11.010 +Shlomy Shitrit,An algebraic multigrid solver for transonic flow problems.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#ShitritSG11,https://doi.org/10.1016/j.jcp.2010.11.034 +Ping Lin,An adaptive homotopy multi-grid method for molecule orientations of high dimensional liquid crystals.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#LinR07,https://doi.org/10.1016/j.jcp.2007.03.009 +Dean S. Oliver,Minimization for conditional simulation: Relationship to optimal transport.,2014,265,J. Comput. Physics,,db/journals/jcphy/jcphy265.html#Oliver14,https://doi.org/10.1016/j.jcp.2014.01.048 +Satoshi Ii,An interface capturing method with a continuous function: The THINC method on unstructured triangular and tetrahedral meshes.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#IiXX14,https://doi.org/10.1016/j.jcp.2013.11.034 +Mary Catherine A. Kropinski,Fast integral equation methods for the modified Helmholtz equation.,2011,230,J. Comput. Physics,2,db/journals/jcphy/jcphy230.html#KropinskiQ11,https://doi.org/10.1016/j.jcp.2010.09.030 +Noma Park,Analysis of numerical errors in large eddy simulation using statistical closure theory.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#ParkM07,https://doi.org/10.1016/j.jcp.2006.07.016 +Matthias Messner,Fast directional multilevel summation for oscillatory kernels based on Chebyshev interpolation.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#MessnerSD12,https://doi.org/10.1016/j.jcp.2011.09.027 +Tiangang Cui,Dimension-independent likelihood-informed MCMC.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#CuiLM16,https://doi.org/10.1016/j.jcp.2015.10.008 +Baskar Ganapathysubramanian,A non-linear dimension reduction methodology for generating data-driven stochastic input models.,2008,227,J. Comput. Physics,13,db/journals/jcphy/jcphy227.html#GanapathysubramanianZ08,https://doi.org/10.1016/j.jcp.2008.03.023 +M. Gallezot,A modal approach based on perfectly matched layers for the forced response of elastic open waveguides.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#GallezotTL18,https://doi.org/10.1016/j.jcp.2017.12.017 +Shinjiro Miyawaki,A 4DCT imaging-based breathing lung model with relative hysteresis.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#MiyawakiCHL16,https://doi.org/10.1016/j.jcp.2016.08.039 +Phani Motamarri,Higher-order adaptive finite-element methods for Kohn-Sham density functional theory.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#MotamarriNLKG13,https://doi.org/10.1016/j.jcp.2013.06.042 +Jörn Zimmerling,A Lanczos model-order reduction technique to efficiently simulate electromagnetic wave propagation in dispersive media.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#ZimmerlingWUR16,https://doi.org/10.1016/j.jcp.2016.03.057 +Xuerui Mao,Calculation of global optimal initial and boundary perturbations for the linearised incompressible Navier-Stokes equations.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#MaoBS13,https://doi.org/10.1016/j.jcp.2012.10.049 +Massimiliano Ferronato,A fully coupled 3-D mixed finite element model of Biot consolidation.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#FerronatoCG10,https://doi.org/10.1016/j.jcp.2010.03.018 +Weiwei Wang,Multiscale model of platelet translocation and collision.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#WangMK13,https://doi.org/10.1016/j.jcp.2012.08.014 +Alexander D. Klose,Light transport in biological tissue based on the simplified spherical harmonics equations.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#KloseL06,https://doi.org/10.1016/j.jcp.2006.07.007 +Chan-Hee Park,Are upwind techniques in multi-phase flow models necessary?,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#ParkBWK11,https://doi.org/10.1016/j.jcp.2011.07.030 +Gordon L. Olson,Alternate closures for radiation transport using Legendre polynomials in 1D and spherical harmonics in 2D.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#Olson12,https://doi.org/10.1016/j.jcp.2011.12.013 +Changhe Qiao,Analytical decoupling techniques for fully implicit reservoir simulation.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#QiaoWXZ17,https://doi.org/10.1016/j.jcp.2017.02.037 +Ming-Chih Lai,An immersed boundary method for interfacial flows with insoluble surfactant.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#LaiTH08,https://doi.org/10.1016/j.jcp.2008.04.014 +Benjamin Rembold,A multiblock joint PDF finite-volume hybrid algorithm for the computation of turbulent flows in complex geometries.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#RemboldJ06,https://doi.org/10.1016/j.jcp.2006.05.002 +Karl Rupp,Matrix compression for spherical harmonics expansions of the Boltzmann transport equation for semiconductors.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#RuppJG10,https://doi.org/10.1016/j.jcp.2010.08.008 +Seongwon Kang,DNS of buoyancy-dominated turbulent flows on a bluff body using the immersed boundary method.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#KangIH09,https://doi.org/10.1016/j.jcp.2008.12.037 +Lei Ye,A gyrokinetic continuum code based on the numerical Lie transform (NLT) method.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#YeXXDW16,https://doi.org/10.1016/j.jcp.2016.03.068 +Akhil Mulloth,High accuracy solution of bi-directional wave propagation in continuum mechanics.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#MullothSHSS15,https://doi.org/10.1016/j.jcp.2015.05.040 +Petros Koumoutsakos,Multiscale stochastic simulations of chemical reactions with regulated scale separation.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#KoumoutsakosF13,https://doi.org/10.1016/j.jcp.2012.11.030 +Gang Bao,Real-time adaptive finite element solution of time-dependent Kohn-Sham equation.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#BaoHL15,https://doi.org/10.1016/j.jcp.2014.10.052 +E. Panagiotou,The linking number in systems with Periodic Boundary Conditions.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#Panagiotou15,https://doi.org/10.1016/j.jcp.2015.07.058 +Eric B. Lindgren,An integral equation approach to calculate electrostatic interactions in many-body dielectric systems.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#LindgrenSPMSB18,https://doi.org/10.1016/j.jcp.2018.06.015 +Gianluca Vignoli,ADER schemes for the shallow water equations in channel with irregular bottom elevation.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#VignoliTT08,https://doi.org/10.1016/j.jcp.2007.11.006 +Rossella Arcucci,On the variational data assimilation problem solving and sensitivity analysis.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#ArcucciDPTM17,https://doi.org/10.1016/j.jcp.2017.01.034 +Lawrence K. Forbes,Computing unstable periodic waves at the interface of two inviscid fluids in uniform vertical flow.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#ForbesCT07,https://doi.org/10.1016/j.jcp.2006.06.010 +Hiroshi Terashima,A front-tracking/ghost-fluid method for fluid interfaces in compressible flows.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#TerashimaT09,https://doi.org/10.1016/j.jcp.2009.02.023 +Kanchan Sarkar,Evolutionary optimization of PAW data-sets for accurate high pressure simulations.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#SarkarTHW17,https://doi.org/10.1016/j.jcp.2017.06.032 +Thierry Sousbie,ColDICE: A parallel Vlasov-Poisson solver using moving adaptive simplicial tessellation.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#SousbieC16,https://doi.org/10.1016/j.jcp.2016.05.048 +V. Daru,A numerical method for the simulation of low Mach number liquid-gas flows.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#DaruQDM10,https://doi.org/10.1016/j.jcp.2010.08.013 +Akira Kasahara,Initial-value approach to study the inertio-gravity waves without the 'traditional approximation'.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#Kasahara07,https://doi.org/10.1016/j.jcp.2007.03.006 +Hong Luo,A hybrid Cartesian grid and gridless method for compressible flows.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#LuoBL06,https://doi.org/10.1016/j.jcp.2005.10.002 +Stéphane Gaudreault,An efficient exponential time integration method for the numerical solution of the shallow water equations on the sphere.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#GaudreaultP16,https://doi.org/10.1016/j.jcp.2016.07.012 +Takashi Shiroto,Finite-volume-concept-based Padé-type filters.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#ShirotoKO17,https://doi.org/10.1016/j.jcp.2017.08.027 +Elena V. Akhmatskaya,A comparison of generalized hybrid Monte Carlo methods with and without momentum flip.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#AkhmatskayaBR09,https://doi.org/10.1016/j.jcp.2008.12.014 +Tomoyuki Hanawa,Improving shock irregularities based on the characteristics of the MHD equations.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#HanawaMM08,https://doi.org/10.1016/j.jcp.2008.05.006 +Mosayeb Shams,A numerical model of two-phase flow at the micro-scale using the volume-of-fluid method.,2018,357,J. Comput. Physics,,db/journals/jcphy/jcphy357.html#ShamsRBB18,https://doi.org/10.1016/j.jcp.2017.12.027 +Huaxiong Huang,An immersed boundary method for restricted diffusion with permeable interfaces.,2009,228,J. Comput. Physics,15,db/journals/jcphy/jcphy228.html#HuangST09,https://doi.org/10.1016/j.jcp.2009.04.040 +Jarrod D. Edwards,Nonlinear variants of the TR/BDF2 method for thermal radiative diffusion.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#EdwardsMK11,https://doi.org/10.1016/j.jcp.2010.10.035 +Yoshiaki Abe,Conservative metric evaluation for high-order finite difference schemes with the GCL identities on moving and deforming grids.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#AbeINF13,https://doi.org/10.1016/j.jcp.2012.08.031 +Ching-Shan Chou,High order residual distribution conservative finite difference WENO schemes for steady state problems on non-smooth meshes.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#ChouS06,https://doi.org/10.1016/j.jcp.2005.10.007 +F.-L. Yang,A novel mesh regeneration algorithm for 2D FEM simulations of flows with moving boundary.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#YangCY11,https://doi.org/10.1016/j.jcp.2011.01.008 +Nicholas Zabaras,Modelling dendritic solidification with melt convection using the extended finite element method.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#ZabarasGT06,https://doi.org/10.1016/j.jcp.2006.02.002 +Miloslav Feistauer,On a robust discontinuous Galerkin technique for the solution of compressible flow.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#FeistauerK07,https://doi.org/10.1016/j.jcp.2007.01.035 +Fabian Denner,TVD differencing on three-dimensional unstructured meshes with monotonicity-preserving correction of mesh skewness.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#DennerW15a,https://doi.org/10.1016/j.jcp.2015.06.008 +Weixuan Li,An adaptive ANOVA-based PCKF for high-dimensional nonlinear inverse modeling.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#LiLZ14,https://doi.org/10.1016/j.jcp.2013.11.019 +Andrew W. Cook,Effects of heat conduction on artificial viscosity methods for shock capturing.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#Cook13,https://doi.org/10.1016/j.jcp.2013.08.003 +Chen Tang,High-order predictor-corrector of exponential fitting for the N-body problems.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#TangWYC06,https://doi.org/10.1016/j.jcp.2005.09.028 +Daniel Hartmann,Differential equation based constrained reinitialization for level set methods.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#HartmannMS08,https://doi.org/10.1016/j.jcp.2008.03.040 +Ye Chen,An adaptive continuation-multigrid method for the balanced vortex model.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#ChenF10,https://doi.org/10.1016/j.jcp.2009.11.032 +Yan Peng,Application of multi-block approach in the immersed boundary-lattice Boltzmann method for viscous fluid flows.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#Peng0CNL06,https://doi.org/10.1016/j.jcp.2006.02.017 +Yutao Sun,The finite volume local evolution Galerkin method for solving the hyperbolic conservation laws.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#SunR09,https://doi.org/10.1016/j.jcp.2009.04.001 +Bedrich Sousedík,Stochastic Galerkin methods for the steady-state Navier-Stokes equations.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#SousedikE16,https://doi.org/10.1016/j.jcp.2016.04.013 +Yann Guevel,Automatic detection and branch switching methods for steady bifurcation in fluid mechanics.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#GuevelBC11,https://doi.org/10.1016/j.jcp.2011.02.004 +Mikhail Z. Tokar,Numerical solution of momentum balance equations for plasmas with two ion species.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#Tokar11,https://doi.org/10.1016/j.jcp.2011.01.013 +Thomas T. Bringley,Validation of a simple method for representing spheres and slender bodies in an immersed boundary method for Stokes flow on an unbounded domain.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#BringleyP08,https://doi.org/10.1016/j.jcp.2008.01.048 +J. Thomas Beale,A proof that a discrete delta function is second-order accurate.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#Beale08,https://doi.org/10.1016/j.jcp.2007.11.004 +Ramses van Zon,Numerical implementation of the exact dynamics of free rigid bodies.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#ZonS07,https://doi.org/10.1016/j.jcp.2006.11.019 +Stefano Berrone,Flow simulations in porous media with immersed intersecting fractures.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#BerronePS17,https://doi.org/10.1016/j.jcp.2017.05.049 +David Amsallem,High-order accurate difference schemes for the Hodgkin-Huxley equations.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#AmsallemN13,https://doi.org/10.1016/j.jcp.2013.06.035 +Yuval Harness,The null-field method: A reconstruction kernel approach.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#HarnessD13,https://doi.org/10.1016/j.jcp.2013.04.011 +J. Michael Owen,Arbitrary Lagrangian Eulerian remap treatments consistent with staggered compatible total energy conserving Lagrangian methods.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#OwenS14,https://doi.org/10.1016/j.jcp.2014.05.023 +Song Li,"Erratum to ""A fast algorithm for sparse matrix computations related to inversion"" [J. Comput. Physics 242 (2013) 915-945].",2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#LiWD13a,https://doi.org/10.1016/j.jcp.2013.06.001 +Ricardo H. Nochetto,A hybrid variational front tracking-level set mesh generator for problems exhibiting large deformations and topological changes.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#NochettoW10,https://doi.org/10.1016/j.jcp.2010.04.035 +Ahmad S. Abushaikha,Fully implicit mixed-hybrid finite-element discretization for general purpose subsurface reservoir simulation.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#AbushaikhaVT17,https://doi.org/10.1016/j.jcp.2017.06.034 +Andrew R. Winters,A uniquely defined entropy stable matrix dissipation operator for high Mach number ideal MHD and compressible Euler simulations.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#WintersDGW17,https://doi.org/10.1016/j.jcp.2016.12.006 +Alexander V. Bobylev,Monte Carlo methods and their analysis for Coulomb collisions in multicomponent plasmas.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#BobylevP13,https://doi.org/10.1016/j.jcp.2013.03.024 +Mehdi Raessi,Advecting normal vectors: A new method for calculating interface normals and curvatures when modeling two-phase flows.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#RaessiMB07,https://doi.org/10.1016/j.jcp.2007.04.023 +Isaías Alonso-Mallo,Time exponential splitting technique for the Klein-Gordon equation with Hagstrom-Warburton high-order absorbing boundary conditions.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#Alonso-MalloP16,https://doi.org/10.1016/j.jcp.2016.02.004 +Giovanni Todarello,Finite-volume goal-oriented mesh adaptation for aerodynamics using functional derivative with respect to nodal coordinates.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#TodarelloVBPD16,https://doi.org/10.1016/j.jcp.2016.02.063 +Patrick T. Greene,Dynamic mesh adaptation for front evolution using discontinuous Galerkin based weighted condition number relaxation.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#GreeneSN17,https://doi.org/10.1016/j.jcp.2017.01.049 +Tania Bakhos,A fast algorithm for parabolic PDE-based inverse problems based on Laplace transforms and flexible Krylov solvers.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#BakhosSK15,https://doi.org/10.1016/j.jcp.2015.07.007 +Natasha Flyer,On the role of polynomials in RBF-FD approximations: I. Interpolation and accuracy.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#FlyerFBB16,https://doi.org/10.1016/j.jcp.2016.05.026 +György Tegze,Advanced operator splitting-based semi-implicit spectral method to solve the binary phase-field crystal equations with variable coefficients.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#TegzeBTPFG09,https://doi.org/10.1016/j.jcp.2008.11.011 +Bharath Ravu,Creating analytically divergence-free velocity fields from grid-based data.,2016,323,J. Comput. Physics,,db/journals/jcphy/jcphy323.html#RavuRMLK16,https://doi.org/10.1016/j.jcp.2016.07.018 +Gábor Tóth,Adaptive numerical algorithms in space weather modeling.,2012,231,J. Comput. Physics,3,db/journals/jcphy/jcphy231.html#TothHSZGFMMNPSGMO12,https://doi.org/10.1016/j.jcp.2011.02.006 +Ken Mattsson,High-fidelity numerical simulation of solitons in the nerve axon.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#MattssonW16,https://doi.org/10.1016/j.jcp.2015.11.007 +Michal Branicki,Filtering skill for turbulent signals for a suite of nonlinear and linear extended Kalman filters.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#BranickiGM12,https://doi.org/10.1016/j.jcp.2011.10.029 +Pengtao Yue,Spontaneous shrinkage of drops and mass conservation in phase-field simulations.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#YueZF07,https://doi.org/10.1016/j.jcp.2006.11.020 +Yu Wang,Boundary condition-enforced immersed boundary-lattice Boltzmann flux solver for thermal flows with Neumann boundary conditions.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#Wang0Y16,https://doi.org/10.1016/j.jcp.2015.11.046 +G. R. Liu,A novel Galerkin-like weakform and a superconvergent alpha finite element method (SαFEM) for mechanics problems using triangular meshes.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#LiuNNX09,https://doi.org/10.1016/j.jcp.2009.02.017 +Johan Meyers,A computational error-assessment of central finite-volume discretizations in large-eddy simulation using a Smagorinsky model.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#MeyersGS07,https://doi.org/10.1016/j.jcp.2007.07.012 +J.-F. Ripoll,A 3-D multiband closure for radiation and neutron transfer moment models.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#RipollW08,https://doi.org/10.1016/j.jcp.2007.08.028 +Stefanos Samaras,Using Raman-lidar-based regularized microphysical retrievals and Aerosol Mass Spectrometer measurements for the characterization of biomass burning aerosols.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#SamarasNBVBLTP15,https://doi.org/10.1016/j.jcp.2015.06.045 +Mulin Cheng,A dynamically bi-orthogonal method for time-dependent stochastic partial differential equations II: Adaptivity and generalizations.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#ChengHZ13,https://doi.org/10.1016/j.jcp.2013.02.020 +Lexing Ying,A high-order 3D boundary integral equation solver for elliptic PDEs in smooth domains.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#YingBZ06,https://doi.org/10.1016/j.jcp.2006.03.021 +J. de Laborderie,Numerical analysis of a high-order unstructured overset grid method for compressible LES of turbomachinery.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#LaborderieDGVWM18,https://doi.org/10.1016/j.jcp.2018.02.045 +Heinrich Voss,Iterative projection methods for computing relevant energy states of a quantum dot.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#Voss06,https://doi.org/10.1016/j.jcp.2006.01.034 +Zydrunas Gimbutas,A fast and stable method for rotating spherical harmonic expansions.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#GimbutasG09,https://doi.org/10.1016/j.jcp.2009.05.014 +A. R. Owens,Energy dependent mesh adaptivity of discontinuous isogeometric discrete ordinate methods with dual weighted residual error estimators.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#OwensKWE17,https://doi.org/10.1016/j.jcp.2017.01.035 +Diego Rossinelli,MRAG-I2D: Multi-resolution adapted grids for remeshed vortex methods on multicore architectures.,2015,288,J. Comput. Physics,,db/journals/jcphy/jcphy288.html#RossinelliHRGBK15,https://doi.org/10.1016/j.jcp.2015.01.035 +Eric E. Keaveny,Applying a second-kind boundary integral equation for surface tractions in Stokes flow.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#KeavenyS11,https://doi.org/10.1016/j.jcp.2010.12.010 +Bo Zhang 0006,Recovering scattering obstacles by multi-frequency phaseless far-field data.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#ZhangZ17,https://doi.org/10.1016/j.jcp.2017.05.022 +Andrea Mentrelli,Asymptotic-preserving scheme for highly anisotropic non-linear diffusion equations.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#MentrelliN12,https://doi.org/10.1016/j.jcp.2012.08.004 +Sergey A. Matveev,Tensor train versus Monte Carlo for the multicomponent Smoluchowski coagulation equation.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#MatveevZTS16,https://doi.org/10.1016/j.jcp.2016.04.025 +Mathieu Coquerelle,A fourth-order accurate curvature computation in a level set framework for two-phase flows subjected to surface tension forces.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#CoquerelleG16,https://doi.org/10.1016/j.jcp.2015.11.014 +Damien Tromeur-Dervout,Choice of initial guess in iterative solution of series of systems arising in fluid flow simulations.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#Tromeur-DervoutV06,https://doi.org/10.1016/j.jcp.2006.03.014 +Wonseok Shin,Choice of the perfectly matched layer boundary condition for frequency-domain Maxwell's equations solvers.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#ShinF12,https://doi.org/10.1016/j.jcp.2012.01.013 +Leonel P. Gonzalez,An effective z-stretching method for paraxial light beam propagation simulations.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#GonzalezGRS08,https://doi.org/10.1016/j.jcp.2008.04.019 +Anthony Chang,Modeling the interaction of biological cells with a solidifying interface.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#ChangDDH07,https://doi.org/10.1016/j.jcp.2007.05.039 +Jeffrey Lee Hellrung Jr.,A second order virtual node method for elliptic problems with interfaces and irregular domains in three dimensions.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#HellrungWST12,https://doi.org/10.1016/j.jcp.2011.11.023 +Fabian Teichert,Improved recursive Green's function formalism for quasi one-dimensional systems with realistic defects.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#TeichertZSS17,https://doi.org/10.1016/j.jcp.2017.01.024 +Xiangxiong Zhang,A curved boundary treatment for discontinuous Galerkin schemes solving time dependent problems.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#Zhang16,https://doi.org/10.1016/j.jcp.2015.12.036 +A. Villa,Implicit tracking for multi-fluid simulations.,2010,229,J. Comput. Physics,16,db/journals/jcphy/jcphy229.html#VillaF10,https://doi.org/10.1016/j.jcp.2010.04.020 +Qian Zhang 0007,Phase field modeling and simulation of three-phase flow on solid surfaces.,2016,319,J. Comput. Physics,,db/journals/jcphy/jcphy319.html#ZhangW16,https://doi.org/10.1016/j.jcp.2016.05.016 +Laurent White,A high-order finite volume remapping scheme for nonuniform grids: The piecewise quartic method (PQM).,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#WhiteA08,https://doi.org/10.1016/j.jcp.2008.04.026 +Zhiwei He,Characteristic-based and interface-sharpening algorithm for high-order simulations of immiscible compressible multi-material flows.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#HeTZG17,https://doi.org/10.1016/j.jcp.2016.12.035 +Jeffrey Willert,Residual Monte Carlo high-order solver for Moment-Based Accelerated Thermal Radiative Transfer equations.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#WillertP14,https://doi.org/10.1016/j.jcp.2014.07.039 +JianHua Yuan,Modeling photonic crystals by boundary integral equations and Dirichlet-to-Neumann maps.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#YuanLA08,https://doi.org/10.1016/j.jcp.2008.01.014 +Zhili Tang,Nash equilibrium and multi criterion aerodynamic optimization.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#TangZ16,https://doi.org/10.1016/j.jcp.2016.03.001 +Junfeng Wang 0004,A compressible high-order unstructured spectral difference code for stratified convection in rotating spherical shells.,2015,290,J. Comput. Physics,,db/journals/jcphy/jcphy290.html#WangLM15,https://doi.org/10.1016/j.jcp.2015.02.047 +Jeffrey K. Wiens,Riemann solver for a kinematic wave traffic model with discontinuous flux.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#WiensSW13,https://doi.org/10.1016/j.jcp.2013.02.024 +Faisal Amlani,An FC-based spectral solver for elastodynamic problems in general three-dimensional domains.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#AmlaniB16,https://doi.org/10.1016/j.jcp.2015.11.060 +Andrew Perrin,An explicit finite difference scheme with spectral boundary conditions for particulate flows.,2008,227,J. Comput. Physics,20,db/journals/jcphy/jcphy227.html#PerrinH08,https://doi.org/10.1016/j.jcp.2008.06.007 +Thomas Y. Hou,An efficient semi-implicit immersed boundary method for the Navier-Stokes equations.,2008,227,J. Comput. Physics,20,db/journals/jcphy/jcphy227.html#HouS08,https://doi.org/10.1016/j.jcp.2008.07.005 +O. Jansen,Tree code for collision detection of large numbers of particles applied to the Breit-Wheeler process.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#JansendRJT18,https://doi.org/10.1016/j.jcp.2017.11.021 +K. Grimich,Spectral properties of high-order residual-based compact schemes for unsteady compressible flows.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#GrimichCL13,https://doi.org/10.1016/j.jcp.2013.06.005 +Sergey L. Gavrilyuk,Modelling wave dynamics of compressible elastic materials.,2008,227,J. Comput. Physics,5,db/journals/jcphy/jcphy227.html#GavrilyukFS08,https://doi.org/10.1016/j.jcp.2007.11.030 +Pouyan Jahangiri,A high-order Monte Carlo algorithm for the direct simulation of Boltzmann equation.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#JahangiriNSA12,https://doi.org/10.1016/j.jcp.2012.02.029 +A. V. Goncharov,Kronecker product approximation of demagnetizing tensors for micromagnetics.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#GoncharovHDS10,https://doi.org/10.1016/j.jcp.2009.12.004 +Hiroaki Nishikawa,A first-order system approach for diffusion equation. I: Second-order residual-distribution schemes.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#Nishikawa07,https://doi.org/10.1016/j.jcp.2007.07.029 +Qin Li,Diffusion approximations and domain decomposition method of linear transport equations: Asymptotics and numerics.,2015,292,J. Comput. Physics,,db/journals/jcphy/jcphy292.html#LiLS15,https://doi.org/10.1016/j.jcp.2015.03.014 +Patrick Gelß,Nearest-neighbor interaction systems in the tensor-train format.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#GelssKMS17,https://doi.org/10.1016/j.jcp.2017.04.007 +Lucia Parussini,Multi-fidelity Gaussian process regression for prediction of random fields.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#ParussiniVPK17,https://doi.org/10.1016/j.jcp.2017.01.047 +Vladimir Druskin,An extended Krylov subspace model-order reduction technique to simulate wave propagation in unbounded domains.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#DruskinRZ14,https://doi.org/10.1016/j.jcp.2014.04.051 +Francisco Guillén-González,On linear schemes for a Cahn-Hilliard diffuse interface model.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#Guillen-GonzalezT13,https://doi.org/10.1016/j.jcp.2012.09.020 +Nan Xiao,Multi-scale computational model of three-dimensional hemodynamics within a deformable full-body arterial network.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#XiaoHF13,https://doi.org/10.1016/j.jcp.2012.09.016 +Christiaan M. Klaij,h-Multigrid for space-time discontinuous Galerkin discretizations of the compressible Navier-Stokes equations.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#KlaijRVV07,https://doi.org/10.1016/j.jcp.2007.08.034 +Robert N. Rieben,An arbitrary Lagrangian-Eulerian discretization of MHD on 3D unstructured grids.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#RiebenWWS07,https://doi.org/10.1016/j.jcp.2007.04.031 +John S. Lowengrub,Numerical simulation of endocytosis: Viscous flow driven by membranes with non-uniformly distributed curvature-inducing molecules.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#LowengrubAA16,https://doi.org/10.1016/j.jcp.2015.12.055 +Jan Zeman,Accelerating a FFT-based solver for numerical homogenization of periodic media by conjugate gradients.,2010,229,J. Comput. Physics,21,db/journals/jcphy/jcphy229.html#ZemanVNM10,https://doi.org/10.1016/j.jcp.2010.07.010 +Federico Domenichini,On the consistency of the direct forcing method in the fractional step solution of the Navier-Stokes equations.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#Domenichini08,https://doi.org/10.1016/j.jcp.2008.03.009 +Jae Hoon Lee,Fast intersections on nested tetrahedrons (FINT): An algorithm for adaptive finite element based distributed parameter estimation.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#LeeJS08,https://doi.org/10.1016/j.jcp.2008.02.008 +Gregor Mitscha-Baude,Adaptive and iterative methods for simulations of nanopores with the PNP-Stokes equations.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#Mitscha-BaudeBT17,https://doi.org/10.1016/j.jcp.2017.02.072 +Zhiguo Yang,Multiphase flows of N immiscible incompressible fluids: An outflow/open boundary condition and algorithm.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#YangD18,https://doi.org/10.1016/j.jcp.2018.04.003 +Hao Song,Modelling of water wave interaction with multiple cylinders of arbitrary shape.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#SongTC10,https://doi.org/10.1016/j.jcp.2009.10.041 +Abdul Majid,Approximate solutions to Poisson-Boltzmann systems with Sobolev gradients.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#MajidS11,https://doi.org/10.1016/j.jcp.2011.03.056 +Stephen M. Guzik,Interpolation methods and the accuracy of lattice-Boltzmann mesh refinement.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#GuzikWCA14,https://doi.org/10.1016/j.jcp.2013.11.037 +Romain Oguic,A parallelized multidomain compact solver for incompressible turbulent flows in cylindrical geometries.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#OguicVP15,https://doi.org/10.1016/j.jcp.2015.08.003 +Simon Marié,Comparison between lattice Boltzmann method and Navier-Stokes high order schemes for computational aeroacoustics.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#MarieRS09,https://doi.org/10.1016/j.jcp.2008.10.021 +David G. Dritschel,The combined Lagrangian advection method.,2010,229,J. Comput. Physics,14,db/journals/jcphy/jcphy229.html#DritschelF10,https://doi.org/10.1016/j.jcp.2010.03.048 +Ngoc Cuong Nguyen,High-order implicit hybridizable discontinuous Galerkin methods for acoustics and elastodynamics.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#NguyenPC11a,https://doi.org/10.1016/j.jcp.2011.01.035 +Maxime Barrault,Efficient parallel resolution of the simplified transport equations in mixed-dual formulation.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#BarraultLRR11,https://doi.org/10.1016/j.jcp.2010.11.047 +Johnwill Keating,A fast algorithm for direct simulation of particulate flows using conforming grids.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#KeatingM13,https://doi.org/10.1016/j.jcp.2013.08.039 +S. Kokh,An anti-diffusive numerical scheme for the simulation of interfaces between compressible fluids by means of a five-equation model.,2010,229,J. Comput. Physics,8,db/journals/jcphy/jcphy229.html#KokhL10,https://doi.org/10.1016/j.jcp.2009.12.003 +Yves Marichal,Immersed interface interpolation schemes for particle-mesh methods.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#MarichalCW16,https://doi.org/10.1016/j.jcp.2016.09.027 +Weiming An,An improved iteration loop for the three dimensional quasi-static particle-in-cell algorithm: QuickPIC.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#AnDMA13,https://doi.org/10.1016/j.jcp.2013.05.020 +Hua Shen,Maximum-principle-satisfying space-time conservation element and solution element scheme applied to compressible multifluids.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#ShenWPS17,https://doi.org/10.1016/j.jcp.2016.10.036 +Fei Zhang,Moving mesh finite element simulation for phase-field modeling of brittle fracture and convergence of Newton's iteration.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#ZhangHLZ18,https://doi.org/10.1016/j.jcp.2017.11.033 +Emmanuel Lorin,Frozen Gaussian approximation based domain decomposition methods for the linear Schrödinger equation beyond the semi-classical regime.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#LorinYA16,https://doi.org/10.1016/j.jcp.2016.02.035 +Mauricio Santillana,Estimating numerical errors due to operator splitting in global atmospheric chemistry models: Transport and chemistry.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#SantillanaZY16,https://doi.org/10.1016/j.jcp.2015.10.052 +Gerjan Hagelaar,How to normalize Maxwell-Boltzmann electrons in transient plasma models.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#Hagelaar07,https://doi.org/10.1016/j.jcp.2007.09.023 +John D. Jakeman,Minimal multi-element stochastic collocation for uncertainty quantification of discontinuous functions.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#JakemanNX13,https://doi.org/10.1016/j.jcp.2013.02.035 +L. D. Angulo,Causal-Path Local Time-Stepping in the discontinuous Galerkin method for Maxwell's equations.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#AnguloATPG14,https://doi.org/10.1016/j.jcp.2013.09.010 +François Vilar,Positivity-preserving cell-centered Lagrangian schemes for multi-material compressible flows: From first-order to high-orders. Part I: The one-dimensional case.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#VilarSM16,https://doi.org/10.1016/j.jcp.2016.02.027 +Marie Billaud Friess,Simulation of sharp interface multi-material flows involving an arbitrary number of components through an extended five-equation model.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#FriessK14,https://doi.org/10.1016/j.jcp.2014.05.012 +Panos Stinis,Stochastic global optimization as a filtering problem.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#Stinis12,https://doi.org/10.1016/j.jcp.2011.11.019 +ángel Rodríguez-Rozas,Non-conforming curved finite element schemes for time-dependent elastic-acoustic coupled problems.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#Rodriguez-Rozas16,https://doi.org/10.1016/j.jcp.2015.10.028 +Jinsong Hua,Energy law preserving C0 finite element schemes for phase field models in two-phase flow computations.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#HuaLLW11,https://doi.org/10.1016/j.jcp.2011.05.013 +Rodrigo C. Moura,Linear dispersion-diffusion analysis and its application to under-resolved turbulence simulations using discontinuous Galerkin spectral/hp methods.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#MouraSP15,https://doi.org/10.1016/j.jcp.2015.06.020 +Rémi Abgrall,Frontiers in Computational Physics: Modeling the Earth System.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#AbgrallSXZ14,https://doi.org/10.1016/j.jcp.2014.04.002 +Zhengzheng Hu,Stable and efficient finite-difference nonlinear-multigrid schemes for the phase field crystal equation.,2009,228,J. Comput. Physics,15,db/journals/jcphy/jcphy228.html#HuWWL09,https://doi.org/10.1016/j.jcp.2009.04.020 +Rafail V. Abramov,The multidimensional moment-constrained maximum entropy problem: A BFGS algorithm with constraint scaling.,2009,228,J. Comput. Physics,1,db/journals/jcphy/jcphy228.html#Abramov09,https://doi.org/10.1016/j.jcp.2008.08.020 +David M. Hall,Numerical method for hydrodynamic transport of inhomogeneous polymer melts.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#HallLFB07,https://doi.org/10.1016/j.jcp.2006.10.027 +Kenny Jolley,Modelling transient heat conduction in solids at multiple length and time scales: A coupled non-equilibrium molecular dynamics/continuum approach.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#JolleyG09,https://doi.org/10.1016/j.jcp.2009.06.035 +Peter Huthwaite,Accelerated finite element elastodynamic simulations using the GPU.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#Huthwaite14,https://doi.org/10.1016/j.jcp.2013.10.017 +Alon Spira,Geometric curve flows on parametric manifolds.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#SpiraK07,https://doi.org/10.1016/j.jcp.2006.09.008 +Neeraj Sarna,Entropy stable Hermite approximation of the linearised Boltzmann equation for inflow and outflow boundaries.,2018,369,J. Comput. Physics,,db/journals/jcphy/jcphy369.html#SarnaT18,https://doi.org/10.1016/j.jcp.2018.04.050 +Bernard Parent,Generalized Ohm's law and potential equation in computational weakly-ionized plasmadynamics.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#ParentSM11,https://doi.org/10.1016/j.jcp.2010.11.012 +Olivier Heuzé,Dissipative issue of high-order shock capturing schemes with non-convex equations of state.,2009,228,J. Comput. Physics,3,db/journals/jcphy/jcphy228.html#HeuzeJJ09,https://doi.org/10.1016/j.jcp.2008.10.005 +Bezalel Finkelstein,Finite difference time domain dispersion reduction schemes.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#FinkelsteinK07,https://doi.org/10.1016/j.jcp.2006.06.016 +Nuno F. Loureiro,An iterative semi-implicit scheme with robust damping.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#LoureiroH08,https://doi.org/10.1016/j.jcp.2008.01.015 +Pietro De Palma,Residual distribution schemes for advection and advection-diffusion problems on quadrilateral cells.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#PalmaPRN06,https://doi.org/10.1016/j.jcp.2006.02.003 +Yen Liu,Spectral (finite) volume method for conservation laws on unstructured grids V: Extension to three-dimensional systems.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#LiuVW06,https://doi.org/10.1016/j.jcp.2005.06.024 +Jianfeng Lu 0001,A cubic scaling algorithm for excited states calculations in particle-particle random phase approximation.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#LuY17,https://doi.org/10.1016/j.jcp.2017.03.055 +Shingyu Leung,A grid based particle method for moving interface problems.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#LeungZ09,https://doi.org/10.1016/j.jcp.2009.01.005 +K. B. Nakshatrala,On dual Schur domain decomposition method for linear first-order transient problems.,2009,228,J. Comput. Physics,21,db/journals/jcphy/jcphy228.html#NakshatralaPH09,https://doi.org/10.1016/j.jcp.2009.07.016 +Jared Crean,Entropy-stable summation-by-parts discretization of the Euler equations on general curved elements.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#CreanHFZC18,https://doi.org/10.1016/j.jcp.2017.12.015 +He Huang,Improve the efficiency of the Cartesian tensor based fast multipole method for Coulomb interaction using the traces.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#HuangLLCZ18,https://doi.org/10.1016/j.jcp.2018.05.028 +Nicolas Bertin,A FFT-based formulation for discrete dislocation dynamics in heterogeneous media.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#BertinC18,https://doi.org/10.1016/j.jcp.2017.11.020 +L. M. Yang,Circular function-based gas-kinetic scheme for simulation of inviscid compressible flows.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#YangSWZL13,https://doi.org/10.1016/j.jcp.2013.08.025 +John W. Barrett 0001,On stable parametric finite element methods for the Stefan problem and the Mullins-Sekerka problem with applications to dendritic growth.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#BarrettGN10,https://doi.org/10.1016/j.jcp.2010.04.039 +Eyal Arian,Analytic Hessian derivation for the quasi-one-dimensional Euler equations.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#ArianI09,https://doi.org/10.1016/j.jcp.2008.09.021 +Jin Liu 0002,Molecular simulations of electroosmotic flows in rough nanochannels.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#LiuWCR10,https://doi.org/10.1016/j.jcp.2010.06.042 +Kai Fan,A generalized discontinuous Galerkin (GDG) method for Schrödinger equations with nonsmooth solutions.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#FanCJ08,https://doi.org/10.1016/j.jcp.2007.10.023 +Moon Soo Lee,Direct numerical simulation of incompressible multiphase flow with phase change.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#LeeRA17,https://doi.org/10.1016/j.jcp.2017.04.073 +Francois Hermeline,A finite volume method for approximating 3D diffusion operators on general meshes.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#Hermeline09,https://doi.org/10.1016/j.jcp.2009.05.002 +R. Shamasundar,Improving the accuracy of mass-lumped finite-elements in the first-order formulation of the wave equation by defect correction.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#ShamasundarM16,https://doi.org/10.1016/j.jcp.2016.07.006 +Kamiar Zamzamian,Multidimensional upwinding for incompressible flows based on characteristics.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#ZamzamianR08,https://doi.org/10.1016/j.jcp.2008.06.018 +Tao Cai,Numerical simulation of core convection by a multi-layer semi-implicit spherical spectral method.,2011,230,J. Comput. Physics,24,db/journals/jcphy/jcphy230.html#CaiCD11,https://doi.org/10.1016/j.jcp.2011.08.014 +Markus Wahlsten,Robust boundary conditions for stochastic incompletely parabolic systems of equations.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#WahlstenN18,https://doi.org/10.1016/j.jcp.2018.04.060 +Yumin Lin,Finite difference/spectral approximations for the time-fractional diffusion equation.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#LinX07,https://doi.org/10.1016/j.jcp.2007.02.001 +Nail K. Yamaleev,A systematic methodology for constructing high-order energy stable WENO schemes.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#YamaleevC09a,https://doi.org/10.1016/j.jcp.2009.03.002 +J. C. Kok,A high-order low-dispersion symmetry-preserving finite-volume method for compressible flow on curvilinear grids.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#Kok09,https://doi.org/10.1016/j.jcp.2009.06.015 +Qifeng Liao,Reduced basis ANOVA methods for partial differential equations with high-dimensional random inputs.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#LiaoL16,https://doi.org/10.1016/j.jcp.2016.04.029 +Benjamin J. Sturdevant,An implicit 8*f particle-in-cell method with sub-cycling and orbit averaging for Lorentz ions.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#SturdevantPCH16,https://doi.org/10.1016/j.jcp.2016.04.036 +B.-F. Feng,An operator splitting method for the Degasperis-Procesi equation.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#FengL09,https://doi.org/10.1016/j.jcp.2009.07.022 +Lina Chang,A reconstruction algorithm with flexible stencils for anisotropic diffusion equations on 2D skewed meshes.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#Chang14,https://doi.org/10.1016/j.jcp.2013.09.012 +D. F. Gordon,Solution of relativistic quantum optics problems using clusters of graphical processing units.,2014,267,J. Comput. Physics,,db/journals/jcphy/jcphy267.html#GordonHH14,https://doi.org/10.1016/j.jcp.2014.02.028 +Victor Troshin,Proper orthogonal decomposition of flow-field in non-stationary geometry.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#TroshinSST16,https://doi.org/10.1016/j.jcp.2016.02.006 +Olivier Desjardins,A spectrally refined interface approach for simulating multiphase flows.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#DesjardinsP09,https://doi.org/10.1016/j.jcp.2008.11.005 +Paolo Luzzatto-Fegiz,An efficient and general numerical method to compute steady uniform vortices.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#Luzzatto-FegizW11,https://doi.org/10.1016/j.jcp.2011.04.035 +Vladimir V. Shashkin,3D conservative cascade semi-Lagrangian transport scheme using reduced latitude-longitude grid (CCS-RG).,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#ShashkinFT16,https://doi.org/10.1016/j.jcp.2015.11.005 +Indrajit G. Roy,On computing first and second order derivative spectra.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#Roy15,https://doi.org/10.1016/j.jcp.2015.04.015 +Alexandros Adam,Higher-order conservative interpolation between control-volume meshes: Application to advection and multiphase flow problems with dynamic mesh adaptivity.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#AdamPPSXFPMJ16,https://doi.org/10.1016/j.jcp.2016.05.058 +Sha Liu,Unified gas-kinetic scheme for diatomic molecular simulations in all flow regimes.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#LiuYXZ14,https://doi.org/10.1016/j.jcp.2013.11.030 +Sarah Hank,Modeling hyperelasticity in non-equilibrium multiphase flows.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#HankFM17,https://doi.org/10.1016/j.jcp.2016.11.001 +Lijian Tan,Multiscale modeling of alloy solidification using a database approach.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#TanZ07,https://doi.org/10.1016/j.jcp.2007.08.016 +Fang-Bao Tian,An efficient immersed boundary-lattice Boltzmann method for the hydrodynamic interaction of elastic filaments.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#TianLZLL11,https://doi.org/10.1016/j.jcp.2011.05.028 +Uliana Alekseeva,Hydrodynamics in adaptive resolution particle simulations: Multiparticle collision dynamics.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#AlekseevaWS16,https://doi.org/10.1016/j.jcp.2016.02.065 +Michael Strickland,A parallel algorithm for solving the 3d Schrödinger equation.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#StricklandY10,https://doi.org/10.1016/j.jcp.2010.04.032 +James A. Rossmanith,A class of residual distribution schemes and their relation to relaxation systems.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#Rossmanith08,https://doi.org/10.1016/j.jcp.2008.07.007 +Ibrahim H. Al-Lehyani,Coarse-grained simulation of transmembrane peptides in the gel phase.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#Al-LehyaniGBMA13,https://doi.org/10.1016/j.jcp.2012.12.014 +Y. Mor-Yossef,Unconditionally stable time marching scheme for Reynolds stress models.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#Mor-Yossef14,https://doi.org/10.1016/j.jcp.2014.07.047 +Eric Johnsen,Implementation of WENO schemes in compressible multicomponent flow problems.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#JohnsenC06,https://doi.org/10.1016/j.jcp.2006.04.018 +Kyle A. Brucker,Efficient algorithm for simulating homogeneous turbulent shear flow without remeshing.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#BruckerIVC07,https://doi.org/10.1016/j.jcp.2006.10.018 +Alireza Valizadeh,A study of solid wall models for weakly compressible SPH.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#ValizadehM15,https://doi.org/10.1016/j.jcp.2015.07.033 +Jun Lai,A fast and robust solver for the scattering from a layered periodic structure containing multi-particle inclusions.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#LaiKB15,https://doi.org/10.1016/j.jcp.2015.06.005 +David Pardo,Simulation of wireline sonic logging measurements acquired with Borehole-Eccentered tools using a high-order adaptive finite-element method.,2011,230,J. Comput. Physics,16,db/journals/jcphy/jcphy230.html#PardoMMTMC11,https://doi.org/10.1016/j.jcp.2011.04.028 +Andrew K. Henrick,Simulations of pulsating one-dimensional detonations with true fifth order accuracy.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#HenrickAP06,https://doi.org/10.1016/j.jcp.2005.08.013 +Michele La Rocca,A multispeed Discrete Boltzmann Model for transcritical 2D shallow water flows.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#RoccaMPS15,https://doi.org/10.1016/j.jcp.2014.12.029 +M. K. Cameron,Estimation of reactive fluxes in gradient stochastic systems using an analogy with electric circuits.,2013,247,J. Comput. Physics,,db/journals/jcphy/jcphy247.html#Cameron13,https://doi.org/10.1016/j.jcp.2013.03.054 +Yunqing Huang,Superconvergence of mixed finite element approximations to 3-D Maxwell's equations in metamaterials.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#HuangLYS11,https://doi.org/10.1016/j.jcp.2011.07.025 +Francis X. Giraldo,A study of spectral element and discontinuous Galerkin methods for the Navier-Stokes equations in nonhydrostatic mesoscale atmospheric modeling: Equation sets and test cases.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#GiraldoR08,https://doi.org/10.1016/j.jcp.2007.12.009 +J. W. Haverkort,Implementation of the full viscoresistive magnetohydrodynamic equations in a nonlinear finite element code.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#HaverkortBHPK16,https://doi.org/10.1016/j.jcp.2016.04.007 +Mark A. Goffin,Goal-based angular adaptivity applied to a wavelet-based discretisation of the neutral particle transport equation.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#GoffinBDPSS15,https://doi.org/10.1016/j.jcp.2014.10.063 +Yongbin Ge,Multigrid method and fourth-order compact difference discretization scheme with unequal meshsizes for 3D poisson equation.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#Ge10,https://doi.org/10.1016/j.jcp.2010.04.048 +Hua Shen,Robust high-order space-time conservative schemes for solving conservation laws on hybrid meshes.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#ShenWLZ15,https://doi.org/10.1016/j.jcp.2014.10.023 +Andreas Papoutsakis,An efficient Adaptive Mesh Refinement (AMR) algorithm for the Discontinuous Galerkin method: Applications for the computation of compressible two-phase flows.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#PapoutsakisSBDL18,https://doi.org/10.1016/j.jcp.2018.02.048 +Mowei Cheng,An efficient algorithm for solving the phase field crystal model.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#ChengW08,https://doi.org/10.1016/j.jcp.2008.03.012 +Weizhu Bao,A generalized-Laguerre-Hermite pseudospectral method for computing symmetric and central vortex states in Bose-Einstein condensates.,2008,227,J. Comput. Physics,23,db/journals/jcphy/jcphy227.html#BaoS08,https://doi.org/10.1016/j.jcp.2008.07.017 +Siyang Zhong,A controllable canonical form implementation of time domain impedance boundary conditions for broadband aeroacoustic computation.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#ZhongZH16,https://doi.org/10.1016/j.jcp.2016.03.002 +Maximiliano Ujevic,Solving procedure for a 25-diagonal coefficient matrix: Direct numerical solutions of the three-dimensional linear Fokker-Planck equation.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#UjevicL06,https://doi.org/10.1016/j.jcp.2005.11.004 +Helmut Harbrecht,Combination technique based k-th moment analysis of elliptic problems with random diffusion.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#HarbrechtPS13,https://doi.org/10.1016/j.jcp.2013.06.013 +Qing Pan,Isogeometric finite element approximation of minimal surfaces based on extended loop subdivision.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#PanCX17,https://doi.org/10.1016/j.jcp.2017.04.030 +Antonio Marquina,Diffusion front capturing schemes for a class of Fokker-Planck equations: Application to the relativistic heat equation.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#Marquina10,https://doi.org/10.1016/j.jcp.2009.12.014 +Tony W. H. Sheu,Development of a wavenumber-preserving scheme for solving Maxwell's equations in curvilinear non-staggered grids.,2013,247,J. Comput. Physics,,db/journals/jcphy/jcphy247.html#SheuML13,https://doi.org/10.1016/j.jcp.2013.03.062 +Rémi Abgrall,A one-time truncate and encode multiresolution stochastic framework.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#AbgrallCG14,https://doi.org/10.1016/j.jcp.2013.08.006 +Yuzhi Sun,Spectral (finite) volume method for conservation laws on unstructured grids VI: Extension to viscous flow.,2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#SunWL06,https://doi.org/10.1016/j.jcp.2005.10.019 +Richard J. Thompson,A discontinuous wave-in-cell numerical scheme for hyperbolic conservation laws.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#ThompsonM15,https://doi.org/10.1016/j.jcp.2015.06.047 +Lukas Exl,Fast stray field computation on tensor grids.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#ExlABGRS12,https://doi.org/10.1016/j.jcp.2011.12.030 +Gregor J. Gassner,Split form nodal discontinuous Galerkin schemes with summation-by-parts property for the compressible Euler equations.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#GassnerWK16,https://doi.org/10.1016/j.jcp.2016.09.013 +Jun Luo,Curvature boundary condition for a moving contact line.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#LuoHA16a,https://doi.org/10.1016/j.jcp.2016.01.024 +Yang Xiang 0002,An active contour model for image segmentation based on elastic interaction.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#XiangCY06,https://doi.org/10.1016/j.jcp.2006.03.026 +Paolo Valentini,A combined Event-Driven/Time-Driven molecular dynamics algorithm for the simulation of shock waves in rarefied gases.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#ValentiniS09,https://doi.org/10.1016/j.jcp.2009.08.026 +Zhaoyuan Wang,A new volume-of-fluid method with a constructed distance function on general structured grids.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#WangYS12,https://doi.org/10.1016/j.jcp.2012.01.022 +Gaurav Anand,Stochastic modeling of evaporating sprays within a consistent hybrid joint PDF framework.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#AnandJ09,https://doi.org/10.1016/j.jcp.2008.11.022 +Jongho Lee,Sources of spurious force oscillations from an immersed boundary method for moving-body problems.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#LeeKCY11,https://doi.org/10.1016/j.jcp.2011.01.004 +Qiqi Wang,A Monte Carlo method for solving unsteady adjoint equations.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#WangGSEM08,https://doi.org/10.1016/j.jcp.2008.03.006 +Jeremy Horwitz,Accurate calculation of Stokes drag for point-particle tracking in two-way coupled flows.,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#HorwitzM16,https://doi.org/10.1016/j.jcp.2016.04.034 +Johan Winges,Higher-order brick-tetrahedron hybrid method for Maxwell's equations in time domain.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#WingesR16,https://doi.org/10.1016/j.jcp.2016.05.063 +Vamsi Spandan,A parallel interaction potential approach coupled with the immersed boundary method for fully resolved simulations of deformable interfaces and membranes.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#SpandanMOLQTV17,https://doi.org/10.1016/j.jcp.2017.07.036 +Per-Gunnar Martinsson,A fast direct solver for scattering problems involving elongated structures.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#MartinssonR07,https://doi.org/10.1016/j.jcp.2006.06.037 +Matthias Wiesenberger,Streamline integration as a method for two-dimensional elliptic grid generation.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#WiesenbergerHE17,https://doi.org/10.1016/j.jcp.2017.03.056 +Iain R. Moyles,A numerical framework for singular limits of a class of reaction diffusion problems.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#MoylesW15,https://doi.org/10.1016/j.jcp.2015.07.053 +Ehsan Roohi,A generalized form of the Bernoulli Trial collision scheme in DSMC: Derivation and evaluation.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#RoohiSSE18,https://doi.org/10.1016/j.jcp.2017.10.033 +Frédérique Le Louër,Spectrally accurate numerical solution of hypersingular boundary integral equations for three-dimensional electromagnetic wave scattering problems.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#Louer14a,https://doi.org/10.1016/j.jcp.2014.07.022 +Yang Yang 0014,Discontinuous Galerkin method for Krause's consensus models and pressureless Euler equations.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#YangWS13,https://doi.org/10.1016/j.jcp.2013.06.015 +Piotr Boronski,Poloidal-toroidal decomposition in a finite cylinder. I: Influence matrices for the magnetohydrodynamic equations.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#BoronskiT07,https://doi.org/10.1016/j.jcp.2007.08.023 +Chenglong Zhang,A conservative scheme for Vlasov Poisson Landau modeling collisional plasmas.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#ZhangG17,https://doi.org/10.1016/j.jcp.2017.03.046 +Chris H. Rycroft,An Eulerian projection method for quasi-static elastoplasticity.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#RycroftSB15,https://doi.org/10.1016/j.jcp.2015.06.046 +Rémi Bourguet,Reduced-order modeling of transonic flows around an airfoil submitted to small deformations.,2011,230,J. Comput. Physics,1,db/journals/jcphy/jcphy230.html#BourguetBD11,https://doi.org/10.1016/j.jcp.2010.09.019 +Lei Zhang 0017,Diffuse-interface approach to predicting morphologies of critical nucleus and equilibrium structure for cubic to tetragonal transformations.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#ZhangCD10,https://doi.org/10.1016/j.jcp.2010.05.013 +Pierre Degond,Numerical approximation of the Euler-Maxwell model in the quasineutral limit.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#DegondDS12,https://doi.org/10.1016/j.jcp.2011.11.011 +Andrew Barlow,Arbitrary Lagrangian-Eulerian methods for modeling high-speed compressible multimaterial flows.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#BarlowMRRS16,https://doi.org/10.1016/j.jcp.2016.07.001 +Allan S. Nielsen,Communication-aware adaptive Parareal with application to a nonlinear hyperbolic system of partial differential equations.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#NielsenBH18,https://doi.org/10.1016/j.jcp.2018.04.056 +Guglielmo Scovazzi,A fully-coupled upwind discontinuous Galerkin method for incompressible porous media flows: High-order computations of viscous fingering instabilities in complex geometry.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#ScovazziHCY13,https://doi.org/10.1016/j.jcp.2013.06.012 +Quan Chen,An approximate framework for quantum transport calculation with model order reduction.,2015,286,J. Comput. Physics,,db/journals/jcphy/jcphy286.html#ChenLYZWC15,https://doi.org/10.1016/j.jcp.2015.01.032 +Zhiliang Xu,Point-wise hierarchical reconstruction for discontinuous Galerkin and finite volume methods for solving conservation laws.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#XuLDLS11,https://doi.org/10.1016/j.jcp.2011.05.014 +Armando Coco,Finite-difference ghost-point multigrid methods on Cartesian grids for elliptic problems in arbitrary domains.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#CocoR13,https://doi.org/10.1016/j.jcp.2012.11.047 +Volker Schauer,All-electron Kohn-Sham density functional theory on hierarchic finite element spaces.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#SchauerL13,https://doi.org/10.1016/j.jcp.2013.04.020 +Georg May,A hybrid multilevel method for high-order discretization of the Euler equations on unstructured meshes.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#MayIJ10,https://doi.org/10.1016/j.jcp.2010.01.036 +Jonathan Landry,Robust moving mesh algorithms for hybrid stretched meshes: Application to moving boundaries problems.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#LandrySLA16,https://doi.org/10.1016/j.jcp.2016.09.008 +Giovanni Lapenta,DEMOCRITUS: An adaptive particle in cell (PIC) code for object-plasma interactions.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#Lapenta11,https://doi.org/10.1016/j.jcp.2011.02.041 +Tae-Yeon Kim,A deconvolution enhancement of the Navier-Stokes-α6* model.,2012,231,J. Comput. Physics,11,db/journals/jcphy/jcphy231.html#KimRF12,https://doi.org/10.1016/j.jcp.2011.12.003 +Delfim Soares Jr.,Time-domain electromagnetic wave propagation analysis by edge-based smoothed point interpolation methods.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#Jr13,https://doi.org/10.1016/j.jcp.2012.10.009 +Victorita Dolean,Locally implicit discontinuous Galerkin method for time domain electromagnetics.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#DoleanFFL10,https://doi.org/10.1016/j.jcp.2009.09.038 +Jie Chen 0029,A numerical method for a model of two-phase flow in a coupled free flow and porous media system.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#ChenSW14,https://doi.org/10.1016/j.jcp.2014.02.043 +Jingyan Zhang,Constrained shrinking dimer dynamics for saddle point search with constraints.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#ZhangD12,https://doi.org/10.1016/j.jcp.2012.03.006 +Munekazu Ohno,Numerical testing of quantitative phase-field models with different polynomials for isothermal solidification in binary alloys.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#OhnoTS17,https://doi.org/10.1016/j.jcp.2017.01.053 +David Machac,Emulation of dynamic simulators with application to hydrology.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#MachacRA16,https://doi.org/10.1016/j.jcp.2016.02.046 +Yu Zou,Coarse-grained computation for particle coagulation and sintering processes by linking Quadrature Method of Moments with Monte-Carlo.,2010,229,J. Comput. Physics,14,db/journals/jcphy/jcphy229.html#ZouKKF10,https://doi.org/10.1016/j.jcp.2010.03.007 +Victor M. Calo,Multiscale empirical interpolation for solving nonlinear PDEs.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#CaloEGG14,https://doi.org/10.1016/j.jcp.2014.07.052 +Paul A. Ullrich,High-order finite-volume methods for the shallow-water equations on the sphere.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#UllrichJL10,https://doi.org/10.1016/j.jcp.2010.04.044 +Federico Negri,Efficient model reduction of parametrized systems by matrix discrete empirical interpolation.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#NegriMA15,https://doi.org/10.1016/j.jcp.2015.09.046 +Isha Dhiman,Collective dynamics of an inhomogeneous two-channel exclusion process: Theory and Monte Carlo simulations.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#DhimanG16,https://doi.org/10.1016/j.jcp.2016.01.010 +V. Vikas,Realizable high-order finite-volume schemes for quadrature-based moment methods.,2011,230,J. Comput. Physics,13,db/journals/jcphy/jcphy230.html#VikasWPF11,https://doi.org/10.1016/j.jcp.2011.03.038 +Peter A. Gnoffo,Global series solutions of nonlinear differential equations with shocks using Walsh functions.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#Gnoffo14,https://doi.org/10.1016/j.jcp.2013.10.054 +Hermínio T. Honório,A stabilized element-based finite volume method for poroelastic problems.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#HonorioMFJ18,https://doi.org/10.1016/j.jcp.2018.03.010 +Giovanni Lapenta,Particle simulations of space weather.,2012,231,J. Comput. Physics,3,db/journals/jcphy/jcphy231.html#Lapenta12,https://doi.org/10.1016/j.jcp.2011.03.035 +Travis M. Austin,Semi-automatic sparse preconditioners for high-order finite element methods on non-uniform meshes.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#AustinBJJMR12,https://doi.org/10.1016/j.jcp.2012.03.013 +Jan Nordström,On conservation and stability properties for summation-by-parts schemes.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#NordstromR17,https://doi.org/10.1016/j.jcp.2017.05.002 +X. F. Sun,Perfectly matched layer absorbing boundary condition for nonlinear two-fluid plasma equations.,2015,286,J. Comput. Physics,,db/journals/jcphy/jcphy286.html#SunJHZJG15,https://doi.org/10.1016/j.jcp.2015.01.033 +Paul J. Dellar,Lattice Boltzmann algorithms without cubic defects in Galilean invariance on standard lattices.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#Dellar14,https://doi.org/10.1016/j.jcp.2013.11.021 +Sofia Eriksson,A stable and conservative method for locally adapting the design order of finite difference schemes.,2011,230,J. Comput. Physics,11,db/journals/jcphy/jcphy230.html#ErikssonAN11,https://doi.org/10.1016/j.jcp.2010.11.020 +Yan Guo 0003,A positivity-preserving high order finite volume compact-WENO scheme for compressible Euler equations.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#GuoXS14,https://doi.org/10.1016/j.jcp.2014.06.046 +A. El-Kacimi,Wavelet based ILU preconditioners for the numerical solution by PUFEM of high frequency elastic wave scattering.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#El-KacimiL11,https://doi.org/10.1016/j.jcp.2011.01.012 +Ju Liu,Isogeometric analysis of the advective Cahn-Hilliard equation: Spinodal decomposition under shear flow.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#LiuDEBH13,https://doi.org/10.1016/j.jcp.2013.02.008 +E. Floriani,A stochastic approach to the solution of magnetohydrodynamic equations.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#FlorianiM13,https://doi.org/10.1016/j.jcp.2013.02.039 +Weiming Liu,A triple level finite element method for large eddy simulations.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#Liu09a,https://doi.org/10.1016/j.jcp.2008.12.004 +M. H. Heydari,A computational method for solving stochastic Itô-Volterra integral equations based on stochastic operational matrix for generalized hat basis functions.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#HeydariHGC14,https://doi.org/10.1016/j.jcp.2014.03.064 +Ya Zhang,Numerical study of the particle sedimentation in a viscous fluid using a coupled DEM-IB-CLBM approach.,2018,368,J. Comput. Physics,,db/journals/jcphy/jcphy368.html#ZhangZPH18,https://doi.org/10.1016/j.jcp.2018.04.049 +Innocent Souopgui,Space-time adaptive approach to variational data assimilation using wavelets.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#SouopguiWHV16,https://doi.org/10.1016/j.jcp.2015.11.030 +Xia Ma,Distribution coefficient algorithm for small mass nodes in material point method.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#MaGJZ10,https://doi.org/10.1016/j.jcp.2010.06.041 +G. Capdeville,A high-order multi-dimensional HLL-Riemann solver for non-linear Euler equations.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#Capdeville11,https://doi.org/10.1016/j.jcp.2010.12.043 +Jonah A. Reeger,Numerical quadrature over smooth surfaces with boundaries.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#ReegerF18,https://doi.org/10.1016/j.jcp.2017.11.010 +Maxime Theillard,A second-order sharp numerical method for solving the linear elasticity equations on irregular domains and adaptive grids - Application to shape optimization.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#TheillardDVG13,https://doi.org/10.1016/j.jcp.2012.09.002 +Salvatore Marrone,Coupling of Smoothed Particle Hydrodynamics with Finite Volume method for free-surface flows.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#MarroneMT16,https://doi.org/10.1016/j.jcp.2015.11.059 +Keith Julien,Efficient multi-dimensional solution of PDEs using Chebyshev spectral methods.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#JulienW09,https://doi.org/10.1016/j.jcp.2008.10.043 +Sumedh M. Joshi,Deflation-accelerated preconditioning of the Poisson-Neumann Schur problem on long domains with a high-order discontinuous element-based collocation method.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#JoshiTD16,https://doi.org/10.1016/j.jcp.2016.02.033 +Weizhang Huang,A geometric discretization and a simple implementation for variational mesh generation and adaptation.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#HuangK15,https://doi.org/10.1016/j.jcp.2015.08.032 +Valerio Caleffi,Fourth-order balanced source term treatment in central WENO schemes for shallow water equations.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#CaleffiVB06,https://doi.org/10.1016/j.jcp.2006.02.001 +David J. Chato,Phase field modeling of liquid jets in low gravity.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#Chato09,https://doi.org/10.1016/j.jcp.2008.10.031 +Akihiro Takezawa,Phase field method to optimize dielectric devices for electromagnetic wave propagation.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#TakezawaK14,https://doi.org/10.1016/j.jcp.2013.09.051 +David J. Chappell,Boundary element dynamical energy analysis: A versatile method for solving two or three dimensional wave problems in the high frequency limit.,2012,231,J. Comput. Physics,18,db/journals/jcphy/jcphy231.html#ChappellTG12,https://doi.org/10.1016/j.jcp.2012.05.028 +Jaemin Shin,First and second order numerical methods based on a new convex splitting for phase-field crystal equation.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#ShinLL16,https://doi.org/10.1016/j.jcp.2016.09.053 +J. W. S. Blokland,PHOENIX: MHD spectral code for rotating laboratory and gravitating astrophysical plasmas.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#BloklandHKG07,https://doi.org/10.1016/j.jcp.2007.04.018 +Jonathan R. Bull,Explicit filtering and exact reconstruction of the sub-filter stresses in large eddy simulation.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#BullJ16,https://doi.org/10.1016/j.jcp.2015.11.037 +Richard J. Thompson,A strong conservative Riemann solver for the solution of the coupled Maxwell and Navier-Stokes equations.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#ThompsonWMM14,https://doi.org/10.1016/j.jcp.2013.10.041 +Jun Zhu,Local DG method using WENO type limiters for convection-diffusion problems.,2011,230,J. Comput. Physics,11,db/journals/jcphy/jcphy230.html#ZhuQ11,https://doi.org/10.1016/j.jcp.2010.03.023 +Wen Chen 0003,A new definition of fractional Laplacian with application to modeling three-dimensional nonlocal heat conduction.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#ChenP16,https://doi.org/10.1016/j.jcp.2016.01.003 +Fábio Antonio Dorini,Statistical moments of the random linear transport equation.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#DoriniC08,https://doi.org/10.1016/j.jcp.2008.06.002 +Alireza Mazaheri,Efficient high-order discontinuous Galerkin schemes with first-order hyperbolic advection-diffusion system approach.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#MazaheriN16,https://doi.org/10.1016/j.jcp.2016.06.006 +Borja Servan-Camas,Accelerated 3D multi-body seakeeping simulations using unstructured finite elements.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#Servan-CamasG13,https://doi.org/10.1016/j.jcp.2013.06.023 +Francis Filbet,An inverse Lax-Wendroff method for boundary conditions applied to Boltzmann type models.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#FilbetY13,https://doi.org/10.1016/j.jcp.2013.03.015 +Qingshan Chen,Simulations of the 2.5D inviscid primitive equations in a limited domain.,2008,227,J. Comput. Physics,23,db/journals/jcphy/jcphy227.html#ChenTT08,https://doi.org/10.1016/j.jcp.2008.08.005 +Hadley M. Cave,Implementation of unsteady sampling procedures for the parallel direct simulation Monte Carlo method.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#CaveTWJHK08,https://doi.org/10.1016/j.jcp.2008.03.015 +B.-W. Jeng,Spectral collocation and a two-level continuation scheme for dipolar Bose-Einstein condensates.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#JengCC14,https://doi.org/10.1016/j.jcp.2013.09.018 +Alireza Pakravan,A Gauss-Newton full-waveform inversion in PML-truncated domains using scalar probing waves.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#PakravanKN17,https://doi.org/10.1016/j.jcp.2017.09.017 +Ozlem Ozgun,Near-field performance analysis of locally-conformal perfectly matched absorbers via Monte Carlo simulations.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#OzgunK07,https://doi.org/10.1016/j.jcp.2007.08.025 +Theodoros T. Zygiridis,Optimized three-dimensional FDTD discretizations of Maxwell's equations on Cartesian grids.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#ZygiridisT07,https://doi.org/10.1016/j.jcp.2007.07.008 +Jinn-Liang Liu,Numerical methods for the Poisson-Fermi equation in electrolytes.,2013,247,J. Comput. Physics,,db/journals/jcphy/jcphy247.html#Liu13,https://doi.org/10.1016/j.jcp.2013.03.058 +Simon Marié,Adaptive filtering for the lattice Boltzmann method.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#MarieG17,https://doi.org/10.1016/j.jcp.2016.12.017 +Julien Yvonnet,The reduced model multiscale method (R3M) for the non-linear homogenization of hyperelastic media at finite strains.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#YvonnetH07,https://doi.org/10.1016/j.jcp.2006.09.019 +Johannes Spinneken,Force-controlled absorption in a fully-nonlinear numerical wave tank.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#SpinnekenCS14,https://doi.org/10.1016/j.jcp.2014.04.018 +Max Duarte,A numerical strategy to discretize and solve the Poisson equation on dynamically adapted multiresolution grids for time-dependent streamer discharge simulations.,2015,289,J. Comput. Physics,,db/journals/jcphy/jcphy289.html#DuarteBMB15,https://doi.org/10.1016/j.jcp.2015.02.038 +Abed Zadehgol,Introducing a new kinetic model which admits an H-theorem for simulating the nearly incompressible fluid flows.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#ZadehgolA14,https://doi.org/10.1016/j.jcp.2014.06.053 +Jianfeng Lu 0001,Cubic scaling algorithms for RPA correlation using interpolative separable density fitting.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#LuT17a,https://doi.org/10.1016/j.jcp.2017.09.012 +Xiaofeng Cai,A high order semi-Lagrangian discontinuous Galerkin method for Vlasov-Poisson simulations without operator splitting.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#CaiGQ18,https://doi.org/10.1016/j.jcp.2017.10.048 +Wei-Xi Huang,Simulation of flexible filaments in a uniform flow by the immersed boundary method.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#HuangSS07,https://doi.org/10.1016/j.jcp.2007.07.002 +Dan Erik Petersen,A hybrid method for the parallel computation of Green's functions.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#PetersenLSSHSD09,https://doi.org/10.1016/j.jcp.2009.03.035 +Frédéric Alauzet,High-order sonic boom modeling based on adaptive methods.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#AlauzetL10,https://doi.org/10.1016/j.jcp.2009.09.020 +Yannis Kallinderis,A low order flow/acoustics interaction method for the prediction of sound propagation using 3D adaptive hybrid grids.,2012,231,J. Comput. Physics,18,db/journals/jcphy/jcphy231.html#KallinderisVM12,https://doi.org/10.1016/j.jcp.2012.05.030 +Sungjin Choi,Modeling of the quenching of blast products from energetic materials by expansion into vacuum.,2015,296,J. Comput. Physics,,db/journals/jcphy/jcphy296.html#ChoiSY15,https://doi.org/10.1016/j.jcp.2015.03.067 +Y. Shi,Simulation of three-component fluid flows using the multiphase lattice Boltzmann flux solver.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#ShiTW16,https://doi.org/10.1016/j.jcp.2016.03.011 +Toru Takahashi 0002,Application of the inverse fast multipole method as a preconditioner in a 3D Helmholtz boundary element method.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#TakahashiCD17,https://doi.org/10.1016/j.jcp.2017.04.016 +Matthias Jeschke,Exploring the performance of spatial stochastic simulation algorithms.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#JeschkeEU11,https://doi.org/10.1016/j.jcp.2010.12.030 +Andreas Klöckner,Nodal discontinuous Galerkin methods on graphics processors.,2009,228,J. Comput. Physics,21,db/journals/jcphy/jcphy228.html#KlocknerWBH09,https://doi.org/10.1016/j.jcp.2009.06.041 +Tao Xiong,A parametrized maximum principle preserving flux limiter for finite difference RK-WENO schemes with applications in incompressible flows.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#XiongQX13,https://doi.org/10.1016/j.jcp.2013.06.026 +Haibo Zhao,A differentially weighted Monte Carlo method for two-component coagulation.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#ZhaoKZ10,https://doi.org/10.1016/j.jcp.2010.05.031 +Yingda Cheng,A discontinuous Galerkin finite element method for directly solving the Hamilton-Jacobi equations.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#ChengS07a,https://doi.org/10.1016/j.jcp.2006.09.012 +Ana Carpio,Nonreflecting boundary conditions for discrete waves.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#CarpioT10,https://doi.org/10.1016/j.jcp.2009.11.013 +Tingqiu Li,Interactions of breaking waves with a current over cut cells.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#LiTR07,https://doi.org/10.1016/j.jcp.2006.10.003 +H. Uddin,A Cartesian-based embedded geometry technique with adaptive high-order finite differences for compressible flow around complex geometries.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#UddinKP14,https://doi.org/10.1016/j.jcp.2014.01.004 +Mike A. Shay,Equation Free Projective Integration: A multiscale method applied to a plasma ion acoustic wave.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#ShayDD07,https://doi.org/10.1016/j.jcp.2007.04.016 +Na Zhang,Parameterizing the Morse potential for coarse-grained modeling of blood plasma.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#ZhangZKBD14,https://doi.org/10.1016/j.jcp.2013.09.040 +Andrea Crivellini,A Spalart-Allmaras turbulence model implementation in a discontinuous Galerkin solver for incompressible flows.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#CrivelliniDB13,https://doi.org/10.1016/j.jcp.2012.12.038 +Jie Shen 0001,Efficient energy stable numerical schemes for a phase field moving contact line model.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#ShenYY15,https://doi.org/10.1016/j.jcp.2014.12.046 +Walter Arne,Finite volume approach for the instationary Cosserat rod model describing the spinning of viscous jets.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#ArneMMSW15,https://doi.org/10.1016/j.jcp.2015.03.042 +Helmer André Friis,A family of MPFA finite-volume schemes with full pressure support for the general tensor pressure equation on cell-centered triangular grids.,2011,230,J. Comput. Physics,1,db/journals/jcphy/jcphy230.html#FriisE11,https://doi.org/10.1016/j.jcp.2010.09.012 +Gabriel Georges,A 3D GCL compatible cell-centered Lagrangian scheme for solving gas dynamics equations.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#GeorgesBM16,https://doi.org/10.1016/j.jcp.2015.10.040 +Metin Muradoglu,An auxiliary grid method for computations of multiphase flows in complex geometries.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#MuradogluK06,https://doi.org/10.1016/j.jcp.2005.10.024 +Yaoxin Zhang,An improved nearly-orthogonal structured mesh generation system with smoothness control functions.,2012,231,J. Comput. Physics,16,db/journals/jcphy/jcphy231.html#ZhangJW12,https://doi.org/10.1016/j.jcp.2012.04.043 +ásdís Helgadóttir,A Poisson-Boltzmann solver on irregular domains with Neumann or Robin boundary conditions on non-graded adaptive grid.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#HelgadottirG11,https://doi.org/10.1016/j.jcp.2011.02.010 +Nassim Razaaly,Novel algorithm using Active Metamodel Learning and Importance Sampling: Application to multiple failure regions of low probability.,2018,368,J. Comput. Physics,,db/journals/jcphy/jcphy368.html#RazaalyC18,https://doi.org/10.1016/j.jcp.2018.04.047 +Wim-Paul Breugem,A second-order accurate immersed boundary method for fully resolved simulations of particle-laden flows.,2012,231,J. Comput. Physics,13,db/journals/jcphy/jcphy231.html#Breugem12,https://doi.org/10.1016/j.jcp.2012.02.026 +Sergey Plyasunov,Efficient stochastic sensitivity analysis of discrete event systems.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#PlyasunovA07,https://doi.org/10.1016/j.jcp.2006.06.047 +Alexander S. Lipatov,Merging for Particle-Mesh Complex Particle Kinetic modeling of the multiple plasma beams.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#Lipatov12,https://doi.org/10.1016/j.jcp.2011.12.020 +Antoine Bourgeade,Numerical methods for the bidimensional Maxwell-Bloch equations in nonlinear crystals.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#BourgeadeS06,https://doi.org/10.1016/j.jcp.2005.09.003 +B. Feng,Enhancing parallel quasi-static particle-in-cell simulations with a pipelining algorithm.,2009,228,J. Comput. Physics,15,db/journals/jcphy/jcphy228.html#FengHDMMK09,https://doi.org/10.1016/j.jcp.2009.04.019 +Lee Ming Kew,New explicit group iterative methods in the solution of three dimensional hyperbolic telegraph equations.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#KewA15,https://doi.org/10.1016/j.jcp.2015.03.052 +Pierre Degond,A multiscale kinetic-fluid solver with dynamic localization of kinetic effects.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#DegondDM10,https://doi.org/10.1016/j.jcp.2010.03.009 +Meinhard Paffrath,Adapted polynomial chaos expansion for failure detection.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#PaffrathW07,https://doi.org/10.1016/j.jcp.2007.04.011 +T. Corot,A new nodal solver for the two dimensional Lagrangian hydrodynamics.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#CorotM18,https://doi.org/10.1016/j.jcp.2017.09.053 +D. G. Giovanis,Uncertainty quantification for complex systems with very high dimensional response using Grassmann manifold variations.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#GiovanisS18,https://doi.org/10.1016/j.jcp.2018.03.009 +Kamalesh Sainath,Full-wave algorithm to model effects of bedding slopes on the response of subsurface electromagnetic geophysical sensors near unconformities.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#SainathT16,https://doi.org/10.1016/j.jcp.2016.02.036 +Peter W. Stokes,Efficient numerical solution of the time fractional diffusion equation by mapping from its Brownian counterpart.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#StokesPRW15,https://doi.org/10.1016/j.jcp.2014.11.023 +David Flad,On the use of kinetic energy preserving DG-schemes for large eddy simulation.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#FladG17,https://doi.org/10.1016/j.jcp.2017.09.004 +Yue Zhao,Galerkin finite element method for two-dimensional space and time fractional Bloch-Torrey equation.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#ZhaoBZT17,https://doi.org/10.1016/j.jcp.2017.08.051 +Mingge Deng,Anisotropic single-particle dissipative particle dynamics model.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#DengPK17,https://doi.org/10.1016/j.jcp.2017.01.033 +Robert R. Nourgaliev,Fully-implicit orthogonal reconstructed Discontinuous Galerkin method for fluid dynamics with phase change.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#NourgalievLWASD16,https://doi.org/10.1016/j.jcp.2015.11.004 +Xiaofan Li,A high-order boundary integral method for surface diffusions on elastically stressed axisymmetric rods.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#LiN09,https://doi.org/10.1016/j.jcp.2009.03.024 +B. Noetinger,A quasi steady state method for solving transient Darcy flow in complex 3D fractured networks.,2012,231,J. Comput. Physics,1,db/journals/jcphy/jcphy231.html#NoetingerJ12,https://doi.org/10.1016/j.jcp.2011.08.015 +Jordan B. Angel,High-order upwind schemes for the wave equation on overlapping grids: Maxwell's equations in second-order form.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#AngelBH18,https://doi.org/10.1016/j.jcp.2017.09.037 +Bangti Jin,An inverse Sturm-Liouville problem with a fractional derivative.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#JinR12,https://doi.org/10.1016/j.jcp.2012.04.005 +Boris Gershgorin,Filtering a statistically exactly solvable test model for turbulent tracers from partial observations.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#GershgorinM11,https://doi.org/10.1016/j.jcp.2010.11.024 +Kai Fan,A full vectorial generalized discontinuous Galerkin beam propagation method (GDG-BPM) for nonsmooth electromagnetic fields in waveguides.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#FanCJ08a,https://doi.org/10.1016/j.jcp.2008.03.044 +Vincent Le Chenadec,Combination of 3D unsplit forward and backward volume-of-fluid transport and coupling to the level set method.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#ChenadecP13,https://doi.org/10.1016/j.jcp.2012.07.019 +Alfredo Bermúdez,An optimal perfectly matched layer with unbounded absorbing function for time-harmonic acoustic scattering problems.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#BermudezHPR07,https://doi.org/10.1016/j.jcp.2006.09.018 +Mathieu Karamitros,Diffusion-controlled reactions modeling in Geant4-DNA.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#KaramitrosLBABDFFIIMNSTSI14,https://doi.org/10.1016/j.jcp.2014.06.011 +Roberto Camassa,Complete integrable particle methods and the recurrence of initial states for a nonlinear shallow-water wave equation.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#CamassaL08,https://doi.org/10.1016/j.jcp.2008.04.011 +J. W. Haverkort,The Brunt-Väisälä frequency of rotating tokamak plasmas.,2012,231,J. Comput. Physics,3,db/journals/jcphy/jcphy231.html#HaverkortBK12,https://doi.org/10.1016/j.jcp.2011.03.016 +Jennifer K. Ryan,Local derivative post-processing for the discontinuous Galerkin method.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#RyanC09,https://doi.org/10.1016/j.jcp.2009.08.017 +Maitham Makki Alhubail,The swept rule for breaking the latency barrier in time advancing PDEs.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#AlhubailW16,https://doi.org/10.1016/j.jcp.2015.11.026 +V. Vaibhav,Microlocal approach towards construction of nonreflecting boundary conditions.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#Vaibhav14,https://doi.org/10.1016/j.jcp.2014.04.050 +Ivan Christov,New non-oscillatory central schemes on unstructured triangulations for hyperbolic systems of conservation laws.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#ChristovP08,https://doi.org/10.1016/j.jcp.2008.02.007 +Sourabh V. Apte,A variable-density fictitious domain method for particulate flows with broad range of particle-fluid density ratios.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#ApteF13,https://doi.org/10.1016/j.jcp.2012.12.021 +Andrew G. Buchan,A POD reduced order model for resolving angular direction in neutron/photon transport problems.,2015,296,J. Comput. Physics,,db/journals/jcphy/jcphy296.html#BuchanCGDFPN15,https://doi.org/10.1016/j.jcp.2015.04.043 +Jung J. Choi,Hybrid spectral difference/embedded finite volume method for conservation laws.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#Choi15,https://doi.org/10.1016/j.jcp.2015.04.013 +Gang Bao,Inverse scattering by a continuation method with initial guesses from a direct imaging algorithm.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#BaoHL07,https://doi.org/10.1016/j.jcp.2007.08.020 +Ran Duan,High-order quadratures for the solution of scattering problems in two dimensions.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#DuanR09,https://doi.org/10.1016/j.jcp.2008.11.033 +Bobby Philip,Implicit adaptive mesh refinement for 2D reduced resistive magnetohydrodynamics.,2008,227,J. Comput. Physics,20,db/journals/jcphy/jcphy227.html#PhilipCP08,https://doi.org/10.1016/j.jcp.2008.06.029 +Webe João Mansur,Explicit time-domain approaches based on numerical Green's functions computed by finite differences - The ExGA family.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#MansurLSD07,https://doi.org/10.1016/j.jcp.2007.08.024 +Tong Li 0008,A stochastic thermostat algorithm for coarse-grained thermomechanical modeling of large-scale soft matters: Theory and application to microfilaments.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#LiG14,https://doi.org/10.1016/j.jcp.2014.01.021 +Christopher M. Romick,High-order shock-fitted detonation propagation in high explosives.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#RomickA17,https://doi.org/10.1016/j.jcp.2016.11.049 +Jae-Min Kwon,Development of semi-Lagrangian gyrokinetic code for full-f turbulence simulation in general tokamak geometry.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#KwonYPK15,https://doi.org/10.1016/j.jcp.2014.12.017 +Zhanjing Tao,High-order central Hermite WENO schemes on staggered meshes for hyperbolic conservation laws.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#TaoLQ15,https://doi.org/10.1016/j.jcp.2014.10.027 +P. Trontin,A subgrid computation of the curvature by a particle/level-set method. Application to a front-tracking/ghost-fluid method for incompressible flows.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#TrontinVEC12,https://doi.org/10.1016/j.jcp.2012.07.002 +Irmela Zentner,A biorthogonal decomposition for the identification and simulation of non-stationary and non-Gaussian random fields.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#ZentnerFPB16,https://doi.org/10.1016/j.jcp.2016.02.067 +Nicolas Besse,Adaptive multiresolution semi-Lagrangian discontinuous Galerkin methods for the Vlasov equations.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#BesseDM17,https://doi.org/10.1016/j.jcp.2016.12.003 +Jian Zhao,Runge-Kutta discontinuous Galerkin methods for the special relativistic magnetohydrodynamics.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#ZhaoT17,https://doi.org/10.1016/j.jcp.2017.04.027 +Melina A. Freitag,A low-rank approach to the solution of weak constraint variational data assimilation problems.,2018,357,J. Comput. Physics,,db/journals/jcphy/jcphy357.html#FreitagG18,https://doi.org/10.1016/j.jcp.2017.12.039 +Jörg Hennig,Fully pseudospectral time evolution and its application to 1+1 dimensional physical problems.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#Hennig13,https://doi.org/10.1016/j.jcp.2012.10.040 +Youssef M. Marzouk,Stochastic spectral methods for efficient Bayesian solution of inverse problems.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#MarzoukNR07,https://doi.org/10.1016/j.jcp.2006.10.010 +Yuri A. Omelchenko,A time-accurate explicit multi-scale technique for gas dynamics.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#OmelchenkoK07,https://doi.org/10.1016/j.jcp.2007.04.010 +Gianmarco Mengaldo,Dealiasing techniques for high-order spectral element methods on regular and irregular grids.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#MengaldoGMVS15,https://doi.org/10.1016/j.jcp.2015.06.032 +Andreas Klöckner,Quadrature by expansion: A new method for the evaluation of layer potentials.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#KlocknerBGO13,https://doi.org/10.1016/j.jcp.2013.06.027 +P. C. Bollada,Three dimensional thermal-solute phase field simulation of binary alloy solidification.,2015,287,J. Comput. Physics,,db/journals/jcphy/jcphy287.html#BolladaGJMY15,https://doi.org/10.1016/j.jcp.2015.01.040 +Dadan Darmana,Parallelization of an Euler-Lagrange model using mixed domain decomposition and a mirror domain technique: Application to dispersed gas-liquid two-phase flow.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#DarmanaDK06,https://doi.org/10.1016/j.jcp.2006.05.011 +Tony W. H. Sheu,Development of a dispersively accurate conservative level set scheme for capturing interface in two-phase flows.,2009,228,J. Comput. Physics,3,db/journals/jcphy/jcphy228.html#SheuYC09,https://doi.org/10.1016/j.jcp.2008.09.032 +Richard Mikael Slevinsky,A fast and well-conditioned spectral method for singular integral equations.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#SlevinskyO17,https://doi.org/10.1016/j.jcp.2016.12.009 +Nam Mai-Duy,A compact five-point stencil based on integrated RBFs for 2D second-order differential problems.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#Mai-DuyT13,https://doi.org/10.1016/j.jcp.2012.10.048 +Pao-Hsiung Chiu,A differentially interpolated direct forcing immersed boundary method for predicting incompressible Navier-Stokes equations in time-varying complex geometries.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#ChiuLS10,https://doi.org/10.1016/j.jcp.2010.02.013 +Xianping Li,An anisotropic mesh adaptation method for the finite element solution of heterogeneous anisotropic diffusion problems.,2010,229,J. Comput. Physics,21,db/journals/jcphy/jcphy229.html#LiH10,https://doi.org/10.1016/j.jcp.2010.07.009 +Adrianna Gillman,A simplified technique for the efficient and highly accurate discretization of boundary integral equations in 2D on domains with corners.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#GillmanHM14,https://doi.org/10.1016/j.jcp.2013.08.049 +Yan Zhao,Full-wave parallel dispersive finite-difference time-domain modeling of three-dimensional electromagnetic cloaking structures.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#ZhaoH09,https://doi.org/10.1016/j.jcp.2009.06.026 +Christian Diddens,Detailed finite element method modeling of evaporating multi-component droplets.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#Diddens17,https://doi.org/10.1016/j.jcp.2017.03.049 +Shuting Gu,An energy-stable finite-difference scheme for the binary fluid-surfactant system.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#GuZZ14,https://doi.org/10.1016/j.jcp.2014.03.060 +José M. Gallardo,On a well-balanced high-order finite volume scheme for shallow water equations with topography and dry areas.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#GallardoPC07,https://doi.org/10.1016/j.jcp.2007.08.007 +M. Böhm,Trim-to-Coherence Fourier Transform.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#BohmTSM09,https://doi.org/10.1016/j.jcp.2008.12.032 +Qiang Zhou 0003,A new family of high-order compact upwind difference schemes with good spectral resolution.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#ZhouYHS07,https://doi.org/10.1016/j.jcp.2007.09.008 +Shahaboddin Alahyari Beig,Maintaining interface equilibrium conditions in compressible multiphase flows using interface capturing.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#BeigJ15,https://doi.org/10.1016/j.jcp.2015.09.018 +Yalchin Efendiev,Accurate multiscale finite element methods for two-phase flow simulations.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#EfendievGHE06,https://doi.org/10.1016/j.jcp.2006.05.015 +Hu Chen,Finite difference/spectral approximations for the distributed order time fractional reaction-diffusion equation on an unbounded domain.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#ChenLC16,https://doi.org/10.1016/j.jcp.2016.03.044 +Derek T. Steinmoeller,A short note on the discontinuous Galerkin discretization of the pressure projection operator in incompressible flow.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#SteinmoellerSL13,https://doi.org/10.1016/j.jcp.2013.05.036 +Xiaofeng Yang 0003,Numerical simulations of jet pinching-off and drop formation using an energetic variational phase-field method.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#YangFLS06,https://doi.org/10.1016/j.jcp.2006.02.021 +Jeroen Wackers,Multigrid solution method for the steady RANS equations.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#WackersK07,https://doi.org/10.1016/j.jcp.2007.06.007 +R. Knaus,A computational approach to flame hole dynamics using an embedded manifold approach.,2015,296,J. Comput. Physics,,db/journals/jcphy/jcphy296.html#KnausP15,https://doi.org/10.1016/j.jcp.2015.04.037 +Iryna Rybak,A multiple-time-step technique for coupled free flow and porous medium systems.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#RybakM14,https://doi.org/10.1016/j.jcp.2014.04.036 +Panagiotis Neofytou,Revision of the characteristics-based scheme for incompressible flows.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#Neofytou07,https://doi.org/10.1016/j.jcp.2006.10.009 +Guanghui Hu,A robust high-order residual distribution type scheme for steady Euler equations on unstructured grids.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#HuLT10,https://doi.org/10.1016/j.jcp.2009.11.002 +Jie Zhang,A front tracking method for a deformable intravascular bubble in a tube with soluble surfactant transport.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#ZhangEA06,https://doi.org/10.1016/j.jcp.2005.09.016 +Ken Mattsson,High order finite difference methods for wave propagation in discontinuous media.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#MattssonN06,https://doi.org/10.1016/j.jcp.2006.05.007 +Sebastian Noelle,High-order well-balanced finite volume WENO schemes for shallow water equation with moving water.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#NoelleXS07,https://doi.org/10.1016/j.jcp.2007.03.031 +Andrew Duncan,Hybrid framework for the simulation of stochastic chemical kinetics.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#DuncanEZ16,https://doi.org/10.1016/j.jcp.2016.08.034 +Habib Ammari,Detection and classification from electromagnetic induction data.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#AmmariCCVW15,https://doi.org/10.1016/j.jcp.2015.08.027 +Nuno Cardoso,SU (2) lattice gauge theory simulations on Fermi GPUs.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#CardosoB11,https://doi.org/10.1016/j.jcp.2011.02.023 +Arthur van Dam,A robust moving mesh finite volume method applied to 1D hyperbolic conservation laws from magnetohydrodynamics.,2006,216,J. Comput. Physics,2,db/journals/jcphy/jcphy216.html#DamZ06,https://doi.org/10.1016/j.jcp.2005.12.014 +Pedro R. S. Antunes,Detection of holes in an elastic body based on eigenvalues and traces of eigenmodes.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#AntunesBT17,https://doi.org/10.1016/j.jcp.2016.12.044 +Ahmad S. Abushaikha,Interface control volume finite element method for modelling multi-phase fluid flow in highly heterogeneous and fractured reservoirs.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#AbushaikhaBGPJ15,https://doi.org/10.1016/j.jcp.2015.05.024 +Tuomas Korpilo,Numerically stable method for kinetic electrons in gyrokinetic particle-in-cell simulation of toroidal plasmas.,2013,239,J. Comput. Physics,,db/journals/jcphy/jcphy239.html#KorpiloHJKLO13,https://doi.org/10.1016/j.jcp.2012.12.033 +Vasanth Allampalli,High-accuracy large-step explicit Runge-Kutta (HALE-RK) schemes for computational aeroacoustics.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#AllampalliHNS09,https://doi.org/10.1016/j.jcp.2009.02.015 +Mihkel Veske,Dynamic coupling of a finite element solver to large-scale atomistic simulations.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#VeskeKEZAD18,https://doi.org/10.1016/j.jcp.2018.04.031 +Sina Arabi,A simple extension of Roe's scheme for real gases.,2017,329,J. Comput. Physics,,db/journals/jcphy/jcphy329.html#ArabiTC17,https://doi.org/10.1016/j.jcp.2016.10.067 +J. Blair Perot,Discrete calculus methods for diffusion.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#PerotS07a,https://doi.org/10.1016/j.jcp.2006.12.022 +Qinghai Zhang,HyPAM: A hybrid continuum-particle model for incompressible free-surface flows.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#ZhangL09,https://doi.org/10.1016/j.jcp.2008.10.029 +Marcel Pfeiffer,A grid-independent particle pairing strategy for DSMC.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#PfeifferMF13,https://doi.org/10.1016/j.jcp.2013.03.018 +John D. Jakeman,Numerical approach for quantification of epistemic uncertainty.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#JakemanEX10,https://doi.org/10.1016/j.jcp.2010.03.003 +Gábor Tóth,A parallel explicit/implicit time stepping scheme on block-adaptive grids.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#TothZGP06,https://doi.org/10.1016/j.jcp.2006.01.029 +Marc-Paul Errera,Comparative study of coupling coefficients in Dirichlet-Robin procedure for fluid-structure aerothermal simulations.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#ErreraD16,https://doi.org/10.1016/j.jcp.2016.02.022 +M. Sani,A lagged implicit segregated data reconstruction procedure to treat open boundaries.,2010,229,J. Comput. Physics,14,db/journals/jcphy/jcphy229.html#SaniS10,https://doi.org/10.1016/j.jcp.2010.04.005 +Sergey Fomel,Fast sweeping method for the factored eikonal equation.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#FomelLZ09,https://doi.org/10.1016/j.jcp.2009.05.029 +Prapanch Nair,Volume conservation issues in incompressible smoothed particle hydrodynamics.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#NairT15,https://doi.org/10.1016/j.jcp.2015.05.042 +Jordan Ko,Multi-element stochastic spectral projection for high quantile estimation.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#KoG13,https://doi.org/10.1016/j.jcp.2013.01.012 +Shaoping Quan,Modeling merging and breakup in the moving mesh interface tracking method for multiphase flow simulations.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#QuanLS09,https://doi.org/10.1016/j.jcp.2008.12.029 +Zupeng Jia,A new high-order discontinuous Galerkin spectral finite element method for Lagrangian gas dynamics in two-dimensions.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#JiaZ11,https://doi.org/10.1016/j.jcp.2010.12.023 +Eric T. Chung,Convergence and superconvergence of staggered discontinuous Galerkin methods for the three-dimensional Maxwell's equations on Cartesian grids.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#ChungCY13,https://doi.org/10.1016/j.jcp.2012.10.019 +Zhao-xiang Li,Pseudospectral methods for computing the multiple solutions of the Lane-Emden equation.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#LiW13a,https://doi.org/10.1016/j.jcp.2013.08.029 +Carolyn L. Phillips,Pseudo-random number generation for Brownian Dynamics and Dissipative Particle Dynamics simulations on GPU devices.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#PhillipsAG11,https://doi.org/10.1016/j.jcp.2011.05.021 +Kavita Goyal,An adaptive meshfree diffusion wavelet method for partial differential equations on the sphere.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#GoyalM14,https://doi.org/10.1016/j.jcp.2014.04.044 +Kristen A. Brown,Assimilating irregularly spaced sparsely observed turbulent signals with hierarchical Bayesian reduced stochastic filters.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#BrownH13,https://doi.org/10.1016/j.jcp.2012.11.006 +Soheil Soghrati,3D hierarchical interface-enriched finite element method: Implementation and applications.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#SoghratiA15,https://doi.org/10.1016/j.jcp.2015.06.035 +Jean Michel D. Sellier,A signed particle formulation of non-relativistic quantum mechanics.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#Sellier15,https://doi.org/10.1016/j.jcp.2015.05.036 +Petr N. Vabishchevich,Numerically solving an equation for fractional powers of elliptic operators.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#Vabishchevich15,https://doi.org/10.1016/j.jcp.2014.11.022 +Karabi Ghosh,Fully implicit 1D radiation hydrodynamics: Validation and verification.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#GhoshM10,https://doi.org/10.1016/j.jcp.2010.06.031 +R. A. Kolesnikov,Unlike-particle collision operator for gyrokinetic particle simulations.,2010,229,J. Comput. Physics,15,db/journals/jcphy/jcphy229.html#KolesnikovWH10,https://doi.org/10.1016/j.jcp.2010.04.018 +Matthew R. Norman,A low communication and large time step explicit finite-volume solver for non-hydrostatic atmospheric dynamics.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#NormanNS11,https://doi.org/10.1016/j.jcp.2010.11.022 +Lucian Mihai Itu,A parameter estimation framework for patient-specific hemodynamic computations.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#ItuSPKSC15,https://doi.org/10.1016/j.jcp.2014.10.034 +Jesse Capecelatro,A purely Lagrangian method for simulating the shallow water equations on a sphere using smooth particle hydrodynamics.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#Capecelatro18,https://doi.org/10.1016/j.jcp.2017.12.002 +Michael Wimmer,Optimal block-tridiagonalization of matrices for coherent charge transport.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#WimmerR09,https://doi.org/10.1016/j.jcp.2009.08.001 +Hailiang Liu,Alternating evolution discontinuous Galerkin methods for convection-diffusion equations.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#LiuP16,https://doi.org/10.1016/j.jcp.2015.12.017 +Ngoc Cuong Nguyen,Hybridizable discontinuous Galerkin methods for the time-harmonic Maxwell's equations.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#NguyenPC11b,https://doi.org/10.1016/j.jcp.2011.05.018 +Jianke Yang,Iteration methods for stability spectra of solitary waves.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#Yang08,https://doi.org/10.1016/j.jcp.2008.03.039 +Suchuan Dong,A pressure correction scheme for generalized form of energy-stable open boundary conditions for incompressible flows.,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#DongS15,https://doi.org/10.1016/j.jcp.2015.03.012 +Mei Song Tong,Multilevel fast multipole algorithm for elastic wave scattering by large three-dimensional objects.,2009,228,J. Comput. Physics,3,db/journals/jcphy/jcphy228.html#TongC09,https://doi.org/10.1016/j.jcp.2008.10.003 +Gang Li,Well-balanced discontinuous Galerkin methods with hydrostatic reconstruction for the Euler equations with gravitation.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#LiX18,https://doi.org/10.1016/j.jcp.2017.09.063 +Nicolas Besse,A wavelet-MRA-based adaptive semi-Lagrangian method for the relativistic Vlasov-Maxwell system.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#BesseLGSB08,https://doi.org/10.1016/j.jcp.2008.04.031 +Jinhong Jia,A fast finite volume method for conservative space-fractional diffusion equations in convex domains.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#JiaW16,https://doi.org/10.1016/j.jcp.2016.01.015 +Silas Alben,Simulating the dynamics of flexible bodies and vortex sheets.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#Alben09,https://doi.org/10.1016/j.jcp.2008.12.020 +Denis Colombant,Numerical fluid solutions for nonlocal electron transport in hot plasmas: Equivalent diffusion versus nonlocal source.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#ColombantM10,https://doi.org/10.1016/j.jcp.2010.02.017 +P. T. Brady,Code verification for finite volume multiphase scalar equations using the method of manufactured solutions.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#BradyHL12,https://doi.org/10.1016/j.jcp.2011.12.040 +Xuan Zhao,A box-type scheme for fractional sub-diffusion equation with Neumann boundary conditions.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#ZhaoS11,https://doi.org/10.1016/j.jcp.2011.04.013 +Luc Mieussens,On the asymptotic preserving property of the unified gas kinetic scheme for the diffusion limit of linear kinetic models.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#Mieussens13,https://doi.org/10.1016/j.jcp.2013.07.002 +Fei Meng 0003,Bi-directional evolutionary optimization for photonic band gap structures.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#MengHJ15,https://doi.org/10.1016/j.jcp.2015.09.010 +Ahmed Abed Al-Kadhem Majhool,Spray algorithm without interface construction.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#MajhoolW12,https://doi.org/10.1016/j.jcp.2012.01.012 +Bernard Parent,Ambipolar diffusion and drift in computational weakly-ionized plasmadynamics.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#ParentMS11,https://doi.org/10.1016/j.jcp.2011.07.006 +Jeff Candy,A high-accuracy Eulerian gyrokinetic solver for collisional plasmas.,2016,324,J. Comput. Physics,,db/journals/jcphy/jcphy324.html#CandyBB16,https://doi.org/10.1016/j.jcp.2016.07.039 +Hassan Khosravian-Arab,Fractional Sturm-Liouville boundary value problems in unbounded domains: Theory and applications.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#Khosravian-Arab15,https://doi.org/10.1016/j.jcp.2015.06.030 +Yulong Xing,High order well-balanced finite volume WENO schemes and discontinuous Galerkin methods for a class of hyperbolic systems with source terms.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#XingS06,https://doi.org/10.1016/j.jcp.2005.10.005 +Adrián Navas-Montilla,Energy balanced numerical schemes with very high order. The Augmented Roe Flux ADER scheme. Application to the shallow water equations.,2015,290,J. Comput. Physics,,db/journals/jcphy/jcphy290.html#Navas-MontillaM15,https://doi.org/10.1016/j.jcp.2015.03.002 +Raphaël di Chiara Roupert,Three-phase compressible flow in porous media: Total Differential Compatible interpolation of relative permeabilities.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#RoupertCS10,https://doi.org/10.1016/j.jcp.2010.03.013 +Larisa Gitelman,Polymer geometry and Li+ conduction in poly(ethylene oxide).,2008,227,J. Comput. Physics,18,db/journals/jcphy/jcphy227.html#GitelmanIANSG08,https://doi.org/10.1016/j.jcp.2008.06.006 +Xiang Ma,An adaptive high-dimensional stochastic model representation technique for the solution of stochastic partial differential equations.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#MaZ10,https://doi.org/10.1016/j.jcp.2010.01.033 +Costanza Aricò,The MAST FV/FE scheme for the simulation of two-dimensional thermohaline processes in variable-density saturated porous media.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#AricoT09,https://doi.org/10.1016/j.jcp.2008.10.015 +Naoufel Ben Abdallah,An accelerated algorithm for 2D simulations of the quantum ballistic transport in nanoscale MOSFETs.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#AbdallahMN07,https://doi.org/10.1016/j.jcp.2006.11.028 +Weizhu Bao,Efficient numerical methods for computing ground states of spin-1 Bose-Einstein condensates based on their characterizations.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#BaoCZ13,https://doi.org/10.1016/j.jcp.2013.06.036 +Zhengru Zhang,An adaptive time-stepping strategy for solving the phase field crystal model.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#ZhangMQ13,https://doi.org/10.1016/j.jcp.2013.04.031 +Pavel Tomin,Hybrid Multiscale Finite Volume method for two-phase flow in porous media.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#TominL13,https://doi.org/10.1016/j.jcp.2013.05.019 +Jacob Waltz,Operator splitting and time accuracy in Lagrange plus remap solution methods.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#Waltz13,https://doi.org/10.1016/j.jcp.2013.07.016 +Dieter Dobbelaere,A Calderón multiplicative preconditioner for the electromagnetic Poincaré-Steklov operator of a heterogeneous domain with scattering applications.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#DobbelaereZHSBR15,https://doi.org/10.1016/j.jcp.2015.09.052 +Zhi-Zhong Sun,The stability and convergence of an explicit difference scheme for the Schrödinger equation on an infinite domain by using artificial boundary conditions.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#Sun06,https://doi.org/10.1016/j.jcp.2006.07.001 +Michael Dumbser,Very high order PNPM schemes on unstructured meshes for the resistive relativistic MHD equations.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#DumbserZ09,https://doi.org/10.1016/j.jcp.2009.06.009 +Jie Liu 0003,Open and traction boundary conditions for the incompressible Navier-Stokes equations.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#Liu09b,https://doi.org/10.1016/j.jcp.2009.06.021 +Matteo Semplice,Adaptive-Mesh-Refinement for hyperbolic systems of conservation laws based on a posteriori stabilized high order polynomial reconstructions.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#SempliceL18,https://doi.org/10.1016/j.jcp.2017.10.031 +Sirui Tan,Inverse Lax-Wendroff procedure for numerical boundary conditions of conservation laws.,2010,229,J. Comput. Physics,21,db/journals/jcphy/jcphy229.html#TanS10,https://doi.org/10.1016/j.jcp.2010.07.014 +Manoj K. Rajpoot,Solution of linearized rotating shallow water equations by compact schemes with different grid-staggering strategies.,2012,231,J. Comput. Physics,5,db/journals/jcphy/jcphy231.html#RajpootBS12,https://doi.org/10.1016/j.jcp.2011.11.025 +J. H. van der Linden,The parallel subdomain-levelset deflation method in reservoir simulation.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#LindenJLV16,https://doi.org/10.1016/j.jcp.2015.10.016 +Sander Rhebergen,A space-time hybridizable discontinuous Galerkin method for incompressible flows on deforming domains.,2012,231,J. Comput. Physics,11,db/journals/jcphy/jcphy231.html#RhebergenC12,https://doi.org/10.1016/j.jcp.2012.02.011 +Tyler Maltba,Nonlocal PDF methods for Langevin equations with colored noise.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#MaltbaGT18,https://doi.org/10.1016/j.jcp.2018.04.023 +Mechthild Thalhammer,High-order time-splitting Hermite and Fourier spectral methods.,2009,228,J. Comput. Physics,3,db/journals/jcphy/jcphy228.html#ThalhammerCN09,https://doi.org/10.1016/j.jcp.2008.10.008 +Chunxiong Zheng,Exact nonreflecting boundary conditions for one-dimensional cubic nonlinear Schrödinger equations.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#Zheng06,https://doi.org/10.1016/j.jcp.2005.11.005 +Stéphane Jaouen,A purely Lagrangian method for computing linearly-perturbed flows in spherical geometry.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#Jaouen07,https://doi.org/10.1016/j.jcp.2006.12.008 +Cheng-Nian Xiao,Fully-coupled pressure-based finite-volume framework for the simulation of fluid flows at all speeds in complex geometries.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#XiaoDW17,https://doi.org/10.1016/j.jcp.2017.06.009 +Toshiyuki Nakata,A fluid-structure interaction model of insect flight with flexible wings.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#NakataL12,https://doi.org/10.1016/j.jcp.2011.11.005 +Josip Basic,A class of renormalised meshless Laplacians for boundary value problems.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#BasicDB18,https://doi.org/10.1016/j.jcp.2017.11.003 +Zhi-Zhong Sun,The stability and convergence of a difference scheme for the Schrödinger equation on an infinite domain by using artificial boundary conditions.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#SunW06,https://doi.org/10.1016/j.jcp.2005.09.011 +Samet Y. Kadioglu,A fully second order implicit/explicit time integration technique for hydrodynamics plus nonlinear heat conduction problems.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#KadiogluK10,https://doi.org/10.1016/j.jcp.2009.12.039 +Viktor Linders,Uniformly best wavenumber approximations by spatial central difference operators.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#LindersN15,https://doi.org/10.1016/j.jcp.2015.08.005 +Meire Fortunato,High-order unstructured curved mesh generation using the Winslow equations.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#FortunatoP16,https://doi.org/10.1016/j.jcp.2015.11.020 +Niklas Wintermeyer,An entropy stable nodal discontinuous Galerkin method for the two dimensional shallow water equations on unstructured curvilinear meshes with discontinuous bathymetry.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#WintermeyerWGK17,https://doi.org/10.1016/j.jcp.2017.03.036 +Yingjun Jiang,Domain decomposition methods for space fractional partial differential equations.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#JiangX17,https://doi.org/10.1016/j.jcp.2017.08.066 +Lijian Jiang,Model reduction method using variable-separation for stochastic saddle point problems.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#JiangL18,https://doi.org/10.1016/j.jcp.2017.10.056 +Bangti Jin,Inversion of Robin coefficient by a spectral stochastic finite element approach.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#JinZ08,https://doi.org/10.1016/j.jcp.2007.11.042 +Vincent Moureau,A ghost-fluid method for large-eddy simulations of premixed combustion in complex geometries.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#MoureauMPB07,https://doi.org/10.1016/j.jcp.2006.06.031 +Simone Melchionna,Incorporation of smooth spherical bodies in the Lattice Boltzmann method.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#Melchionna11,https://doi.org/10.1016/j.jcp.2011.02.021 +Peter C. Ma,An entropy-stable hybrid scheme for simulations of transcritical real-fluid flows.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#MaLI17,https://doi.org/10.1016/j.jcp.2017.03.022 +Asha Kumari Meena,Positivity-preserving high-order discontinuous Galerkin schemes for Ten-Moment Gaussian closure equations.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#MeenaKC17,https://doi.org/10.1016/j.jcp.2017.03.024 +A. R. Koblitz,Direct numerical simulation of particulate flows with an overset grid method.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#KoblitzLNH17,https://doi.org/10.1016/j.jcp.2017.04.058 +Ulrich Dobramysl,Mixed analytical-stochastic simulation method for the recovery of a Brownian gradient source from probability fluxes to small windows.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#DobramyslH18,https://doi.org/10.1016/j.jcp.2017.10.058 +Mark J. Stock,Impact of a vortex ring on a density interface using a regularized inviscid vortex sheet method.,2008,227,J. Comput. Physics,21,db/journals/jcphy/jcphy227.html#StockDT08,https://doi.org/10.1016/j.jcp.2008.05.022 +Hiroaki Nishikawa,Accuracy-preserving boundary flux quadrature for finite-volume discretization on unstructured grids.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#Nishikawa15,https://doi.org/10.1016/j.jcp.2014.10.033 +Konstantin A. Kemenov,Explicit small-scale velocity simulation for high-Re turbulent flows.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#KemenovM06,https://doi.org/10.1016/j.jcp.2006.05.006 +Jincong He,Enhanced linearized reduced-order models for subsurface flow simulation.,2011,230,J. Comput. Physics,23,db/journals/jcphy/jcphy230.html#HeSD11,https://doi.org/10.1016/j.jcp.2011.06.007 +Alexandre M. Tartakovsky,Simulations of reactive transport and precipitation with smoothed particle hydrodynamics.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#TartakovskyMSW07,https://doi.org/10.1016/j.jcp.2006.08.013 +John D. Towers,Finite difference methods for approximating Heaviside functions.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#Towers09,https://doi.org/10.1016/j.jcp.2009.01.026 +Pauline Lafitte,A high-order relaxation method with projective integration for solving nonlinear systems of hyperbolic conservation laws.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#LafitteMS17,https://doi.org/10.1016/j.jcp.2017.03.027 +Pedro S. Peixoto,On vector field reconstructions for semi-Lagrangian transport methods on geodesic staggered grids.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#PeixotoB14,https://doi.org/10.1016/j.jcp.2014.04.043 +Bruno Turcksin,Discontinuous diffusion synthetic acceleration for Sn transport on 2D arbitrary polygonal meshes.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#TurcksinR14,https://doi.org/10.1016/j.jcp.2014.05.044 +Arpit Mittal,Hybrid discrete ordinates - spherical harmonics solution to the Boltzmann Transport Equation for phonons for non-equilibrium heat conduction.,2011,230,J. Comput. Physics,18,db/journals/jcphy/jcphy230.html#MittalM11,https://doi.org/10.1016/j.jcp.2011.05.024 +Yu Mao Wu,Frequency-independent approach to calculate physical optics radiations with the quadratic concave phase variations.,2016,324,J. Comput. Physics,,db/journals/jcphy/jcphy324.html#WuT16,https://doi.org/10.1016/j.jcp.2016.07.029 +A. H. Bhrawy,A fully spectral collocation approximation for multi-dimensional fractional Schrödinger equations.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#BhrawyA15,https://doi.org/10.1016/j.jcp.2015.03.063 +Jean-Baptiste Chapelier,A Coherent vorticity preserving eddy-viscosity correction for Large-Eddy Simulation.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#ChapelierWS18,https://doi.org/10.1016/j.jcp.2018.01.012 +Charles Tadjeran,A second-order accurate numerical approximation for the fractional diffusion equation.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#TadjeranMS06,https://doi.org/10.1016/j.jcp.2005.08.008 +Amirhossein Aminfar,A fast block low-rank dense solver with applications to finite-element matrices.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#AminfarAD16,https://doi.org/10.1016/j.jcp.2015.10.012 +Lars Pesch,A discontinuous Galerkin finite element discretization of the Euler equations for compressible and incompressible fluids.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#PeschV08,https://doi.org/10.1016/j.jcp.2008.01.046 +Charles Pierre,Numerical computation of 3D heat transfer in complex parallel heat exchangers using generalized Graetz modes.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#PierreBGP14,https://doi.org/10.1016/j.jcp.2014.02.037 +Yang Liu,A new time-space domain high-order finite-difference method for the acoustic wave equation.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#LiuS09,https://doi.org/10.1016/j.jcp.2009.08.027 +Ricardo Ruiz-Baier,Mixed finite element - discontinuous finite volume element discretization of a general class of multicontinuum models.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#Ruiz-BaierL16,https://doi.org/10.1016/j.jcp.2016.06.054 +Philip T. Barton,A conservative level-set based method for compressible solid/fluid problems on fixed grids.,2011,230,J. Comput. Physics,21,db/journals/jcphy/jcphy230.html#BartonOD11,https://doi.org/10.1016/j.jcp.2011.07.008 +Reza Abedi,An asynchronous spacetime discontinuous Galerkin finite element method for time domain electromagnetics.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#AbediM17,https://doi.org/10.1016/j.jcp.2017.09.001 +Dong Liang,The spatial fourth-order energy-conserved S-FDTD scheme for Maxwell's equations.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#LiangY13,https://doi.org/10.1016/j.jcp.2013.02.040 +Antoine Llor,Energy preservation and entropy in Lagrangian space- and time-staggered hydrodynamic schemes.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#LlorCF16,https://doi.org/10.1016/j.jcp.2015.12.044 +Wanai Li,The multi-dimensional limiters for solving hyperbolic conservation laws on unstructured grids II: Extension to high order finite volume schemes.,2012,231,J. Comput. Physics,11,db/journals/jcphy/jcphy231.html#LiR12,https://doi.org/10.1016/j.jcp.2012.01.029 +Ulrik S. Fjordholm,Well-balanced and energy stable schemes for the shallow water equations with discontinuous topography.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#FjordholmMT11,https://doi.org/10.1016/j.jcp.2011.03.042 +Eric C. Cyr,Stabilization and scalable block preconditioning for the Navier-Stokes equations.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#CyrST12,https://doi.org/10.1016/j.jcp.2011.09.001 +Raoul van Loon,A fluid-structure interaction method with solid-rigid contact for heart valve dynamics.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#LoonAV06,https://doi.org/10.1016/j.jcp.2006.01.032 +M. Z. Jacobson,The effects of aircraft on climate and pollution. Part I: Numerical methods for treating the subgrid evolution of discrete size- and composition-resolved contrails from all commercial flights worldwide.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#JacobsonWNL11,https://doi.org/10.1016/j.jcp.2011.03.031 +N. Noormohammadi,A fictitious domain method using equilibrated basis functions for harmonic and bi-harmonic problems in physics.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#NoormohammadiB14,https://doi.org/10.1016/j.jcp.2014.04.011 +Nicholas D. Stehle,A hybrid transport-diffusion method for 2D transport problems with diffusive subdomains.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#StehleAA14,https://doi.org/10.1016/j.jcp.2014.03.056 +Ali Snedden,A new multi-scale structure finding algorithm to identify cosmological structure.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#SneddenPMCSB15,https://doi.org/10.1016/j.jcp.2015.07.004 +Andreas Haselbacher,An efficient and robust particle-localization algorithm for unstructured grids.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#HaselbacherNF07,https://doi.org/10.1016/j.jcp.2007.03.018 +Zhu Huang,Adaptive radial basis function and Hermite function pseudospectral methods for computing eigenvalues of the prolate spheroidal wave equation for very large bandwidth parameter.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#HuangXB15,https://doi.org/10.1016/j.jcp.2014.10.024 +Ting Long,An arbitrary boundary with ghost particles incorporated in coupled FEM-SPH model for FSI problems.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#LongHWZY17,https://doi.org/10.1016/j.jcp.2017.08.044 +Mu Wang,Spectral Ewald Acceleration of Stokesian Dynamics for polydisperse suspensions.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#WangB16,https://doi.org/10.1016/j.jcp.2015.11.042 +Giorgos Arampatzis,Hierarchical fractional-step approximations and parallel kinetic Monte Carlo algorithms.,2012,231,J. Comput. Physics,23,db/journals/jcphy/jcphy231.html#ArampatzisKPTX12,https://doi.org/10.1016/j.jcp.2012.07.017 +Raoul D. Schram,Reaction-diffusion model Monte Carlo simulations on the GPU.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#Schram13,https://doi.org/10.1016/j.jcp.2013.01.041 +Anastasios H. Panaretos,The effect of the 2-D Laplacian operator approximation on the performance of finite-difference time-domain schemes for Maxwell's equations.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#PanaretosAD07,https://doi.org/10.1016/j.jcp.2007.08.019 +Eliodoro Chiavazzo,Quasi-equilibrium grid algorithm: Geometric construction for model reduction.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#ChiavazzoK08,https://doi.org/10.1016/j.jcp.2008.02.006 +Adi Ditkowski,A grid redistribution method for singular problems.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#DitkowskiG09,https://doi.org/10.1016/j.jcp.2008.11.035 +Adrianna Gillman,Fast and accurate numerical methods for solving elliptic difference equations defined on lattices.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#GillmanM10,https://doi.org/10.1016/j.jcp.2010.07.024 +A. Scrinzi,On the non-equivalence of perfectly matched layers and exterior complex scaling.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#ScrinziSM14,https://doi.org/10.1016/j.jcp.2014.03.007 +Shreyas Bidadi,On the stability and diffusive characteristics of Roe-MUSCL and Runge-Kutta schemes for inviscid Taylor-Green vortex.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#BidadiR15a,https://doi.org/10.1016/j.jcp.2015.07.013 +Jan-Frederik Mennemann,Transient Schrödinger-Poisson simulations of a high-frequency resonant tunneling diode oscillator.,2013,239,J. Comput. Physics,,db/journals/jcphy/jcphy239.html#MennemannJK13,https://doi.org/10.1016/j.jcp.2012.12.009 +A. C. Faliagas,Mixed weak-perturbative solution method for Maxwell's equations of diffusion with Müller's partial stress tensor in the low velocity limit.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#Faliagas16,https://doi.org/10.1016/j.jcp.2015.12.046 +Peter R. Kramer,Comparative analysis of multiscale Gaussian random field simulation algorithms.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#KramerKS07,https://doi.org/10.1016/j.jcp.2007.05.002 +Zhigui Lin,Finite volume element approximation of an inhomogeneous Brusselator model with cross-diffusion.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#LinRT14,https://doi.org/10.1016/j.jcp.2013.09.009 +Yann Moguen,Semi-implicit characteristic-based boundary treatment for acoustics in low Mach number flows.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#MoguenBD13,https://doi.org/10.1016/j.jcp.2013.08.019 +Haihu Liu,Modeling and simulation of thermocapillary flows using lattice Boltzmann method.,2012,231,J. Comput. Physics,12,db/journals/jcphy/jcphy231.html#LiuZV12,https://doi.org/10.1016/j.jcp.2012.02.015 +Danielle C. Maddix,Numerical artifacts in the Generalized Porous Medium Equation: Why harmonic averaging itself is not to blame.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#MaddixSG18,https://doi.org/10.1016/j.jcp.2018.02.010 +Volkan Akcelik,Shape determination for deformed electromagnetic cavities.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#AkcelikKLLNX08,https://doi.org/10.1016/j.jcp.2007.09.029 +Xiangmin Jiao,Face offsetting: A unified approach for explicit moving interfaces.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#Jiao07,https://doi.org/10.1016/j.jcp.2006.05.021 +Alexandre Chiapolino,Sharpening diffuse interfaces with compressible fluids on unstructured meshes.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#ChiapolinoSN17,https://doi.org/10.1016/j.jcp.2017.03.042 +Andrew R. Siegel,The effect of load imbalances on the performance of Monte Carlo algorithms in LWR analysis.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#SiegelSRFF13,https://doi.org/10.1016/j.jcp.2012.06.012 +Meng Li,A fast linearized conservative finite element method for the strongly coupled nonlinear fractional Schrödinger equations.,2018,358,J. Comput. Physics,,db/journals/jcphy/jcphy358.html#LiGHFZ18,https://doi.org/10.1016/j.jcp.2017.12.044 +Kui Du,Two transparent boundary conditions for the electromagnetic scattering from two-dimensional overfilled cavities.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#Du11,https://doi.org/10.1016/j.jcp.2011.03.055 +B. Noetinger,A quasi steady state method for solving transient Darcy flow in complex 3D fractured networks accounting for matrix to fracture flow.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#Noetinger15,https://doi.org/10.1016/j.jcp.2014.11.038 +Alfredo Bermúdez,Numerical solution of non-isothermal non-adiabatic flow of real gases in pipelines.,2016,323,J. Comput. Physics,,db/journals/jcphy/jcphy323.html#BermudezLV16,https://doi.org/10.1016/j.jcp.2016.07.020 +Tingchun Wang,Fourth-order compact and energy conservative difference schemes for the nonlinear Schrödinger equation in two dimensions.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#WangGX13,https://doi.org/10.1016/j.jcp.2013.03.007 +Gang Li,High order finite volume WENO schemes for the Euler equations under gravitational fields.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#LiX16,https://doi.org/10.1016/j.jcp.2016.04.015 +Mohamed Zerroukat,The monotonic Quartic Spline Method (QSM) for conservative transport problems.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#ZerroukatSW10,https://doi.org/10.1016/j.jcp.2009.10.018 +Manuel Jesús Castro Díaz,A second order PVM flux limiter method. Application to magnetohydrodynamics and shallow stratified flows.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#DiazFNA14,https://doi.org/10.1016/j.jcp.2013.12.059 +Alex Kanevsky,Modeling simple locomotors in Stokes flow.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#KanevskyST10,https://doi.org/10.1016/j.jcp.2009.05.030 +Yuezheng Gong,Some new structure-preserving algorithms for general multi-symplectic formulations of Hamiltonian PDEs.,2014,279,J. Comput. Physics,,db/journals/jcphy/jcphy279.html#GongCW14,https://doi.org/10.1016/j.jcp.2014.09.001 +Tormod Bjøntegaard,Accurate interface-tracking for arbitrary Lagrangian-Eulerian schemes.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#BjontegaardR09,https://doi.org/10.1016/j.jcp.2009.03.012 +Sarah Mauger,GPU accelerated fully space and time resolved numerical simulations of self-focusing laser beams in SBS-active media.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#MaugerVBS13,https://doi.org/10.1016/j.jcp.2012.10.034 +Andrey A. Markov,Simulation of front motion in a reacting condensed two phase mixture.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#MarkovFM12,https://doi.org/10.1016/j.jcp.2012.06.003 +Alex H. Barnett,Stability and convergence of the method of fundamental solutions for Helmholtz problems on analytic domains.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#BarnettB08,https://doi.org/10.1016/j.jcp.2008.04.008 +Rémi Abgrall,Essentially non-oscillatory Residual Distribution schemes for hyperbolic problems.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#Abgrall06,https://doi.org/10.1016/j.jcp.2005.10.034 +Peng Chen,Uncertainty propagation using infinite mixture of Gaussian processes and variational Bayesian inference.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#ChenZB15,https://doi.org/10.1016/j.jcp.2014.12.028 +G. M. Zhang,Wave propagation in functionally graded materials by modified smoothed particle hydrodynamics (MSPH) method.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#ZhangB07,https://doi.org/10.1016/j.jcp.2006.07.028 +Christiaan M. Klaij,Space-time discontinuous Galerkin method for the compressible Navier-Stokes equations.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#KlaijVV06a,https://doi.org/10.1016/j.jcp.2006.01.018 +Kris Van den Abeele,Dispersion and dissipation properties of the 1D spectral volume method and application to a p-multigrid algorithm.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#AbeeleBL07,https://doi.org/10.1016/j.jcp.2006.10.022 +Junzhao Luo,A semi-implicit level set method for structural shape and topology optimization.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#LuoLCTW08,https://doi.org/10.1016/j.jcp.2008.02.003 +Frédéric Couderc,An explicit asymptotic preserving low Froude scheme for the multilayer shallow water model with density stratification.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#CoudercDV17,https://doi.org/10.1016/j.jcp.2017.04.018 +Siddharth Savadatti,Absorbing boundary conditions for scalar waves in anisotropic media. Part 1: Time harmonic modeling.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#SavadattiG10a,https://doi.org/10.1016/j.jcp.2010.05.018 +Stephen C. Jardin,On 1D diffusion problems with a gradient-dependent diffusion coefficient.,2008,227,J. Comput. Physics,20,db/journals/jcphy/jcphy227.html#JardinBHK08,https://doi.org/10.1016/j.jcp.2008.06.032 +Juan A. Acebrón,Highly efficient numerical algorithm based on random trees for accelerating parallel Vlasov-Poisson simulations.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#AcebronR13,https://doi.org/10.1016/j.jcp.2013.05.025 +Jean-Luc Guermond,Entropy viscosity method for nonlinear conservation laws.,2011,230,J. Comput. Physics,11,db/journals/jcphy/jcphy230.html#GuermondPP11,https://doi.org/10.1016/j.jcp.2010.11.043 +Tafizur Rehman,A cluster expansion model for predicting activation barrier of atomic processes.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#RehmanJC13,https://doi.org/10.1016/j.jcp.2013.03.005 +Per Pettersson,A well-posed and stable stochastic Galerkin formulation of the incompressible Navier-Stokes equations with random data.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#PetterssonND16,https://doi.org/10.1016/j.jcp.2015.11.027 +Hailong Guo,Gradient recovery for elliptic interface problem: II. Immersed finite element methods.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#GuoY17,https://doi.org/10.1016/j.jcp.2017.03.003 +Marcus R. Garvie,An efficient and robust numerical algorithm for estimating parameters in Turing systems.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#GarvieMT10,https://doi.org/10.1016/j.jcp.2010.05.040 +David P. Starinshak,A multimaterial extension to subzonal reconstruction.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#StarinshakO16,https://doi.org/10.1016/j.jcp.2015.11.056 +Sashikumaar Ganesan,Simulations of impinging droplets with surfactant-dependent dynamic contact angle.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#Ganesan15,https://doi.org/10.1016/j.jcp.2015.08.026 +Alex Townsend,The automatic solution of partial differential equations using a global spectral method.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#TownsendO15,https://doi.org/10.1016/j.jcp.2015.06.031 +Milo R. Dorr,A numerical algorithm for the solution of a phase-field model of polycrystalline materials.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#DorrFWBT10,https://doi.org/10.1016/j.jcp.2009.09.041 +Irene M. Gamba,A conservative spectral method for the Boltzmann equation with anisotropic scattering and the grazing collisions limit.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#GambaH14,https://doi.org/10.1016/j.jcp.2014.03.035 +Xiangyang Cui,A triangular prism solid and shell interactive mapping element for electromagnetic sheet metal forming process.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#CuiLFL17,https://doi.org/10.1016/j.jcp.2017.02.014 +Diego álvarez,Crack reconstruction using a level-set strategy.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#AlvarezDIM09,https://doi.org/10.1016/j.jcp.2009.04.038 +Tan Ren,Runge-Kutta central discontinuous Galerkin BGK method for the Navier-Stokes equations.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#RenHXQ14,https://doi.org/10.1016/j.jcp.2014.06.045 +Songze Chen,A comparative study of an asymptotic preserving scheme and unified gas-kinetic scheme in continuum flow limit.,2015,288,J. Comput. Physics,,db/journals/jcphy/jcphy288.html#ChenX15,https://doi.org/10.1016/j.jcp.2015.02.014 +Harun Kurkcu,An integral representation of the Green function for a linear array of acoustic point sources.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#KurkcuNR11,https://doi.org/10.1016/j.jcp.2010.12.034 +Min-Geun Kim,Adjoint design sensitivity analysis of reduced atomic systems using generalized Langevin equation for lattice structures.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#KimJC13,https://doi.org/10.1016/j.jcp.2013.01.020 +Binghai Wen,Galilean invariant fluid-solid interfacial dynamics in lattice Boltzmann simulations.,2014,266,J. Comput. Physics,,db/journals/jcphy/jcphy266.html#WenZTWF14,https://doi.org/10.1016/j.jcp.2014.02.018 +Emmanuel Maitre,Level set methods for optimization problems involving geometry and constraints II. Optimization over a fixed surface.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#MaitreS08,https://doi.org/10.1016/j.jcp.2008.07.011 +Emmanuel Germaine,3DFLUX: A high-order fully three-dimensional flux integral solver for the scalar transport equation.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#GermaineMC13,https://doi.org/10.1016/j.jcp.2013.01.010 +Ying He 0007,A new spectral method for numerical solution of the unbounded rough surface scattering problem.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#HeLS14,https://doi.org/10.1016/j.jcp.2014.07.026 +S. Jolliet,Parallel filtering in global gyrokinetic simulations.,2012,231,J. Comput. Physics,3,db/journals/jcphy/jcphy231.html#JollietMVVATBBI12,https://doi.org/10.1016/j.jcp.2011.01.029 +Jorge M. Ramírez,Multiplicative cascades applied to PDEs (two numerical examples).,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#Ramirez06,https://doi.org/10.1016/j.jcp.2005.09.006 +Sylvain Reboux,A self-organizing Lagrangian particle method for adaptive-resolution advection-diffusion simulations.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#RebouxSS12,https://doi.org/10.1016/j.jcp.2012.01.026 +Wenxiao Pan,Modeling electrokinetic flows by consistent implicit incompressible smoothed particle hydrodynamics.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#PanKPTP17,https://doi.org/10.1016/j.jcp.2016.12.042 +Devon Powell,An exact general remeshing scheme applied to physically conservative voxelization.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#PowellA15,https://doi.org/10.1016/j.jcp.2015.05.022 +Santiago Badia,Block recursive LU preconditioners for the thermally coupled incompressible inductionless MHD problem.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#BadiaMP14,https://doi.org/10.1016/j.jcp.2014.06.028 +Rui Chen 0004,Decoupled energy stable schemes for phase-field vesicle membrane model.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#ChenJYZ15,https://doi.org/10.1016/j.jcp.2015.09.025 +Steven J. Ruuth,A simple embedding method for solving partial differential equations on surfaces.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#RuuthM08,https://doi.org/10.1016/j.jcp.2007.10.009 +N. J. van der Kaap,Massively parallel kinetic Monte Carlo simulations of charge carrier transport in organic semiconductors.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#KaapK16,https://doi.org/10.1016/j.jcp.2015.12.001 +G. B. Jacobs,High-order nodal discontinuous Galerkin particle-in-cell method on unstructured grids.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#JacobsH06,https://doi.org/10.1016/j.jcp.2005.09.008 +Kristoffer Virta,Interface waves in almost incompressible elastic materials.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#VirtaK15,https://doi.org/10.1016/j.jcp.2015.09.051 +Zahra Shojaaee,An adaptive hierarchical domain decomposition method for parallel contact dynamics simulations of granular materials.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#ShojaaeeSBTW12,https://doi.org/10.1016/j.jcp.2011.09.024 +Graham W. Alldredge,A realizability-preserving discontinuous Galerkin scheme for entropy-based moment closures for linear kinetic equations in one space dimension.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#AlldredgeS15,https://doi.org/10.1016/j.jcp.2015.04.034 +Paolo Amore,High order eigenvalues for the Helmholtz equation in complicated non-tensor domains through Richardson extrapolation of second order finite differences.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#AmoreBFR16,https://doi.org/10.1016/j.jcp.2015.12.059 +Guo-Wei Wei,"On the validity of ""A proof that the discrete singular convolution (DSC)/Lagrange-distributed approximation function (LDAF) method is inferior to high order finite differences"".",2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#WeiZ07,https://doi.org/10.1016/j.jcp.2007.05.036 +Feng-Nan Hwang,A parallel additive Schwarz preconditioned Jacobi-Davidson algorithm for polynomial eigenvalue problems in quantum dot simulation.,2010,229,J. Comput. Physics,8,db/journals/jcphy/jcphy229.html#HwangWHW10,https://doi.org/10.1016/j.jcp.2009.12.024 +Pradeep Singh Rawat,On high-order shock-fitting and front-tracking schemes for numerical simulation of shock-disturbance interactions.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#RawatZ10,https://doi.org/10.1016/j.jcp.2010.05.021 +Pavel P. Popov,An accurate time advancement algorithm for particle tracking.,2008,227,J. Comput. Physics,20,db/journals/jcphy/jcphy227.html#PopovMP08,https://doi.org/10.1016/j.jcp.2008.06.021 +Wei Zhu 0007,Scientific data interpolation with low dimensional manifold model.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#ZhuWBHJO18,https://doi.org/10.1016/j.jcp.2017.09.048 +Jim E. Morel,Spatial discretizations for self-adjoint forms of the radiative transfer equations.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#MorelANMEU06,https://doi.org/10.1016/j.jcp.2005.09.017 +J. S. Marshall,Discrete-element modeling of particulate aerosol flows.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#Marshall09,https://doi.org/10.1016/j.jcp.2008.10.035 +Eliodoro Chiavazzo,Approximation of slow and fast dynamics in multiscale dynamical systems by the linearized Relaxation Redistribution Method.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#Chiavazzo12,https://doi.org/10.1016/j.jcp.2011.11.007 +Soshi Kawai,Divergence-free-preserving high-order schemes for magnetohydrodynamics: An artificial magnetic resistivity method.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#Kawai13,https://doi.org/10.1016/j.jcp.2013.05.033 +Andrea Villa,A PDE-based partial discharge simulator.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#VillaBGLM17a,https://doi.org/10.1016/j.jcp.2017.05.045 +A. Sibra,Simulation of reactive polydisperse sprays strongly coupled to unsteady flows in solid rocket motors: Efficient strategy using Eulerian Multi-Fluid methods.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#SibraDMLM17,https://doi.org/10.1016/j.jcp.2017.02.003 +Nathan V. Roberts,A discontinuous Petrov-Galerkin methodology for adaptive solutions to the incompressible Navier-Stokes equations.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#RobertsDM15,https://doi.org/10.1016/j.jcp.2015.07.014 +Hyun-Gyu Kang,An efficient implementation of a high-order filter for a cubed-sphere spectral element model.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#KangC17,https://doi.org/10.1016/j.jcp.2016.12.001 +Li Wang,Adjoint-based h-p adaptive discontinuous Galerkin methods for the 2D compressible Euler equations.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#WangM09,https://doi.org/10.1016/j.jcp.2009.07.012 +Pierre Crispel,An asymptotic preserving scheme for the two-fluid Euler-Poisson model in the quasineutral limit.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#CrispelDV07,https://doi.org/10.1016/j.jcp.2006.09.004 +Farshid Nazari,High-order low-dissipation low-dispersion diagonally implicit Runge-Kutta schemes.,2015,286,J. Comput. Physics,,db/journals/jcphy/jcphy286.html#NazariMC15,https://doi.org/10.1016/j.jcp.2015.01.020 +Yogesh G. Bhumkar,A dispersion relation preserving optimized upwind compact difference scheme for high accuracy flow simulations.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#BhumkarSS14,https://doi.org/10.1016/j.jcp.2014.08.040 +Giacomo Dimarco,Towards an ultra efficient kinetic scheme. Part II: The high order case.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#DimarcoL13a,https://doi.org/10.1016/j.jcp.2013.07.017 +Ryan I. Fernandes,An ADI extrapolated Crank-Nicolson orthogonal spline collocation method for nonlinear reaction-diffusion systems.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#FernandesF12,https://doi.org/10.1016/j.jcp.2012.04.001 +Xiaosong Sun,Three-dimensional simulation of a solid-liquid flow by the DEM-SPH method.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#SunSY13,https://doi.org/10.1016/j.jcp.2013.04.019 +Tomoaki Watanabe,LES-Lagrangian particle method for turbulent reactive flows based on the approximate deconvolution model and mixing model.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#WatanabeSNIH15,https://doi.org/10.1016/j.jcp.2015.03.038 +Troy D. Butler,Reparameterization for statistical state estimation applied to differential equations.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#ButlerJ12,https://doi.org/10.1016/j.jcp.2011.12.019 +Hongwei Cheng,A wideband fast multipole method for the Helmholtz equation in three dimensions.,2006,216,J. Comput. Physics,1,db/journals/jcphy/jcphy216.html#ChengCGGEHRYZ06,https://doi.org/10.1016/j.jcp.2005.12.001 +Mikhail Z. Tokar,Numerical solution of continuity equation with a flux non-linearly depending on the density gradient.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#Tokar06,https://doi.org/10.1016/j.jcp.2006.05.005 +Sheng Xu,An immersed interface method for simulating the interaction of a fluid with moving boundaries.,2006,216,J. Comput. Physics,2,db/journals/jcphy/jcphy216.html#XuW06,https://doi.org/10.1016/j.jcp.2005.12.016 +Wei Wang 0027,High-order well-balanced schemes and applications to non-equilibrium flow.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#WangSYS09,https://doi.org/10.1016/j.jcp.2009.05.028 +Peng Zhang 0030,A general solution strategy of modified power method for higher mode solutions.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#ZhangLL16,https://doi.org/10.1016/j.jcp.2015.10.042 +D. C. Barnes,Continuously differentiable PIC shape functions for triangular meshes.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#Barnes18,https://doi.org/10.1016/j.jcp.2018.02.002 +Jian-Guo Liu,Stable and accurate pressure approximation for unsteady incompressible viscous flow.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#LiuLP10,https://doi.org/10.1016/j.jcp.2010.01.010 +Weidong Li 0004,High order spectral difference lattice Boltzmann method for incompressible hydrodynamics.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#Li17,https://doi.org/10.1016/j.jcp.2017.05.039 +W. N. Edeling,Predictive RANS simulations via Bayesian Model-Scenario Averaging.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#EdelingCD14,https://doi.org/10.1016/j.jcp.2014.06.052 +Burton Wendroff,A compact artificial viscosity equivalent to a tensor viscosity.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#Wendroff10,https://doi.org/10.1016/j.jcp.2010.05.034 +Peter A. Maginnis,Variance-reduced simulation of lattice discrete-time Markov chains with applications in reaction networks.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#MaginnisWD16,https://doi.org/10.1016/j.jcp.2016.06.019 +Tengfei Liang,A physical-based gas-surface interaction model for rarefied gas flow simulation.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#LiangLY18,https://doi.org/10.1016/j.jcp.2017.08.061 +Ruihan Guo,Semi-implicit spectral deferred correction methods for highly nonlinear partial differential equations.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#GuoXX17,https://doi.org/10.1016/j.jcp.2017.02.059 +Matthias Morzfeld,A random map implementation of implicit filters.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#MorzfeldTAC12,https://doi.org/10.1016/j.jcp.2011.11.022 +Nicolas Grenier,An Hamiltonian interface SPH formulation for multi-fluid and free surface flows.,2009,228,J. Comput. Physics,22,db/journals/jcphy/jcphy228.html#GrenierACTA09,https://doi.org/10.1016/j.jcp.2009.08.009 +Philipp Metzner,Generator estimation of Markov jump processes.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#MetznerDJS07,https://doi.org/10.1016/j.jcp.2007.07.032 +E. Vergnault,A lattice Boltzmann method for nonlinear disturbances around an arbitrary base flow.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#VergnaultMS12,https://doi.org/10.1016/j.jcp.2012.07.021 +Daniel Y. Le Roux,Spurious inertial oscillations in shallow-water models.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#Roux12,https://doi.org/10.1016/j.jcp.2012.04.052 +Kyle J. Lange,Using sensitivity derivatives for design and parameter estimation in an atmospheric plasma discharge simulation.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#LangeA10,https://doi.org/10.1016/j.jcp.2010.04.038 +Mario Alvarez,A posteriori error estimation for an augmented mixed-primal method applied to sedimentation-consolidation systems.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#AlvarezGR18,https://doi.org/10.1016/j.jcp.2018.04.040 +Travis C. Fisher,High-order entropy stable finite difference schemes for nonlinear conservation laws: Finite domains.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#FisherC13,https://doi.org/10.1016/j.jcp.2013.06.014 +Howard C. Elman,Fast iterative solvers for buoyancy driven flow problems.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#ElmanMS11,https://doi.org/10.1016/j.jcp.2011.02.014 +Lin Mu,A stable numerical algorithm for the Brinkman equations by weak Galerkin finite element methods.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#MuWY14,https://doi.org/10.1016/j.jcp.2014.04.017 +Shravan K. Veerapaneni,A numerical method for simulating the dynamics of 3D axisymmetric vesicles suspended in viscous flows.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#VeerapaneniGBZ09,https://doi.org/10.1016/j.jcp.2009.06.020 +Liwei Xu,Numerical simulation of three-dimensional nonlinear water waves.,2009,228,J. Comput. Physics,22,db/journals/jcphy/jcphy228.html#XuG09,https://doi.org/10.1016/j.jcp.2009.08.015 +Arturas Ziemys,Hierarchical modeling of diffusive transport through nanochannels by coupling molecular dynamics with finite element method.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#ZiemysKMKHFG11,https://doi.org/10.1016/j.jcp.2011.03.054 +Li-Tien Cheng,Redistancing by flow of time dependent eikonal equation.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#ChengT08,https://doi.org/10.1016/j.jcp.2007.12.018 +Samuel Temple Reeve,Error correction in multi-fidelity molecular dynamics simulations using functional uncertainty quantification.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#ReeveS17,https://doi.org/10.1016/j.jcp.2016.12.039 +Aleksei I. Shestakov,A multigroup diffusion solver using pseudo transient continuation for a radiation-hydrodynamic code with patch-based AMR.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#ShestakovO08,https://doi.org/10.1016/j.jcp.2007.09.019 +Francesco Bassi,An artificial compressibility flux for the discontinuous Galerkin solution of the incompressible Navier-Stokes equations.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#BassiCPR06,https://doi.org/10.1016/j.jcp.2006.03.006 +Hiroaki Nishikawa,Divergence formulation of source term.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#Nishikawa12,https://doi.org/10.1016/j.jcp.2012.05.032 +Yunqing Huang,Recovery of normal derivatives from the piecewise L2 projection.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#HuangLY12,https://doi.org/10.1016/j.jcp.2011.10.001 +Varun Shankar,The overlapped radial basis function-finite difference (RBF-FD) method: A generalization of RBF-FD.,2017,342,J. Comput. Physics,,db/journals/jcphy/jcphy342.html#Shankar17,https://doi.org/10.1016/j.jcp.2017.04.037 +Zhenli Xu,Solving fluctuation-enhanced Poisson-Boltzmann equations.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#XuM14,https://doi.org/10.1016/j.jcp.2014.07.004 +Stylianos Dosopoulos,Interconnect and lumped elements modeling in interior penalty discontinuous Galerkin time-domain methods.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#DosopoulosL10,https://doi.org/10.1016/j.jcp.2010.07.036 +Matthew Buoni,An algorithm for simulation of electrochemical systems with surface-bulk coupling strategies.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#BuoniP10,https://doi.org/10.1016/j.jcp.2009.09.032 +Philipp Trisjono,On a consistent high-order finite difference scheme with kinetic energy conservation for simulating turbulent reacting flows.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#TrisjonoKP16,https://doi.org/10.1016/j.jcp.2016.09.052 +Oscar P. Bruno,High-order unconditionally stable FC-AD solvers for general smooth domains I. Basic elements.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#BrunoL10,https://doi.org/10.1016/j.jcp.2009.11.020 +D. S. Watvisave,A hybrid MD-DSMC coupling method to investigate flow characteristics of micro-devices.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#WatvisavePB15,https://doi.org/10.1016/j.jcp.2015.09.012 +Sergio Blanes,An efficient algorithm based on splitting for the time integration of the Schrödinger equation.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#BlanesCM15,https://doi.org/10.1016/j.jcp.2015.09.047 +Arnab Chaudhuri,On the use of immersed boundary methods for shock/obstacle interactions.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#ChaudhuriHC11,https://doi.org/10.1016/j.jcp.2010.11.016 +S. Yan,Numerical simulation of fully nonlinear interaction between steep waves and 2D floating bodies using the QALE-FEM method.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#YanM07,https://doi.org/10.1016/j.jcp.2006.06.046 +Aaron Katz,Multicloud: Multigrid convergence with a meshless operator.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#KatzJ09,https://doi.org/10.1016/j.jcp.2009.04.023 +Kenneth Duru,Stable and high order accurate difference methods for the elastic wave equation in discontinuous media.,2014,279,J. Comput. Physics,,db/journals/jcphy/jcphy279.html#DuruV14,https://doi.org/10.1016/j.jcp.2014.08.046 +Xiangxiong Zhang,On positivity-preserving high order discontinuous Galerkin schemes for compressible Euler equations on rectangular meshes.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#ZhangS10a,https://doi.org/10.1016/j.jcp.2010.08.016 +A. F. Lifschitz,Particle-in-Cell modelling of laser-plasma interaction using Fourier decomposition.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#LifschitzDLFRM09,https://doi.org/10.1016/j.jcp.2008.11.017 +G. R. Anjos,A 3D moving mesh Finite Element Method for two-phase flows.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#AnjosBMT14,https://doi.org/10.1016/j.jcp.2014.03.067 +Jincheng Ren,Compact difference scheme for the fractional sub-diffusion equation with Neumann boundary conditions.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#RenSZ13,https://doi.org/10.1016/j.jcp.2012.08.026 +Samir Shrestha,Numerical simulation of a moving rigid body in a rarefied gas.,2015,292,J. Comput. Physics,,db/journals/jcphy/jcphy292.html#ShresthaTKH15,https://doi.org/10.1016/j.jcp.2015.03.030 +Ivana Seric,Direct numerical simulation of variable surface tension flows using a Volume-of-Fluid method.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#SericAK18,https://doi.org/10.1016/j.jcp.2017.10.008 +Francisco de la Hoz,A pseudo-spectral method for a non-local KdV-Burgers equation posed on R.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#HozC16,https://doi.org/10.1016/j.jcp.2016.01.031 +Alexander M. Bronstein,Weighted distance maps computation on parametric three-dimensional manifolds.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#BronsteinBK07,https://doi.org/10.1016/j.jcp.2007.01.009 +Gérard Labrosse,The optimal 3-node preconditioner of the d2/dx2 Fourier and Chebyshev spectral operators.,2011,230,J. Comput. Physics,1,db/journals/jcphy/jcphy230.html#LabrosseR11,https://doi.org/10.1016/j.jcp.2010.09.016 +C. C. Joggerst,Cross-code comparisons of mixing during the implosion of dense cylindrical and spherical shells.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#JoggerstNWLMFRFR14,https://doi.org/10.1016/j.jcp.2014.06.037 +Pao-Hsiung Chiu,A dispersion-relation-preserving algorithm for a nonlinear shallow-water wave equation.,2009,228,J. Comput. Physics,21,db/journals/jcphy/jcphy228.html#ChiuLS09,https://doi.org/10.1016/j.jcp.2009.07.030 +Haijian Yang,Nonlinearly preconditioned semismooth Newton methods for variational inequality solution of two-phase flow in porous media.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#YangSY17,https://doi.org/10.1016/j.jcp.2016.11.036 +María Jesús Algar,An efficient hybrid technique in RCS predictions of complex targets at high frequencies.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#AlgarLMDC17,https://doi.org/10.1016/j.jcp.2017.05.035 +Fei Lu 0007,Limitations of polynomial chaos expansions in the Bayesian solution of inverse problems.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#LuMTC15,https://doi.org/10.1016/j.jcp.2014.11.010 +Duane Rosenberg,Geophysical-astrophysical spectral-element adaptive refinement (GASpAR): Object-oriented h-adaptive fluid dynamics simulation.,2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#RosenbergFFP06,https://doi.org/10.1016/j.jcp.2005.10.031 +Luca Gerardo-Giorda,A model-based block-triangular preconditioner for the Bidomain system in electrocardiology.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#Gerardo-GiordaMNPV09,https://doi.org/10.1016/j.jcp.2009.01.034 +Andrew Perrin,An explicit finite-difference scheme for simulation of moving particles.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#PerrinH06,https://doi.org/10.1016/j.jcp.2005.06.021 +Braxton Osting,Optimization of spectral functions of Dirichlet-Laplacian eigenvalues.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#Osting10,https://doi.org/10.1016/j.jcp.2010.07.040 +Ngoc Cuong Nguyen,Hybridizable discontinuous Galerkin methods for partial differential equations in continuum mechanics.,2012,231,J. Comput. Physics,18,db/journals/jcphy/jcphy231.html#NguyenP12,https://doi.org/10.1016/j.jcp.2012.02.033 +Vahid Reza Hosseini,Local radial point interpolation (MLRPI) method for solving time fractional diffusion-wave equation with damping.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#HosseiniSC16,https://doi.org/10.1016/j.jcp.2016.02.030 +Dirk Peschka,Thin-film free boundary problems for partial wetting.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#Peschka15,https://doi.org/10.1016/j.jcp.2015.04.041 +Weinan E,A general strategy for designing seamless multiscale methods.,2009,228,J. Comput. Physics,15,db/journals/jcphy/jcphy228.html#ERV09,https://doi.org/10.1016/j.jcp.2009.04.030 +Shintaro Takeuchi,Interaction problem between fluid and membrane by a consistent direct discretisation approach.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#TakeuchiFGK18,https://doi.org/10.1016/j.jcp.2018.05.033 +L. Soucasse,Subgrid-scale model for radiative transfer in turbulent participating media.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#SoucasseRS14,https://doi.org/10.1016/j.jcp.2013.10.006 +Mehrtash Babadi,Analytical first derivatives of the RE-squared interaction potential.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#BabadiEE06,https://doi.org/10.1016/j.jcp.2006.04.014 +Jannis Teunissen,Controlling the weights of simulation particles: adaptive particle management using k-d trees.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#TeunissenE14,https://doi.org/10.1016/j.jcp.2013.12.005 +J. Blair Perot,Differential forms for scientists and engineers.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#PerotZ14,https://doi.org/10.1016/j.jcp.2013.08.007 +Frédérique Laurent,Realizable second-order finite-volume schemes for the advection of moment sets of the particle size distribution.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#LaurentN17,https://doi.org/10.1016/j.jcp.2017.02.046 +Maurizio Tavelli,Arbitrary high order accurate space-time discontinuous Galerkin finite element schemes on staggered unstructured meshes for linear elasticity.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#TavelliD18,https://doi.org/10.1016/j.jcp.2018.03.038 +Arthur Stück,Adjoint complement to viscous finite-volume pressure-correction methods.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#StuckR13,https://doi.org/10.1016/j.jcp.2013.01.002 +Sebastian Aland,Diffuse interface models of locally inextensible vesicles in a viscous fluid.,2014,277,J. Comput. Physics,,db/journals/jcphy/jcphy277.html#AlandELV14,https://doi.org/10.1016/j.jcp.2014.08.016 +A. R. Owens,Discontinuous isogeometric analysis methods for the first-order form of the neutron transport equation with discrete ordinate (SN) angular discretisation.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#OwensWKE16,https://doi.org/10.1016/j.jcp.2016.03.060 +Jianming Yang,Sharp interface immersed-boundary/level-set method for wave-body interactions.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#YangS09,https://doi.org/10.1016/j.jcp.2009.05.047 +Felix S. Schranner,On the convergence of the weakly compressible sharp-interface method for two-phase flows.,2016,324,J. Comput. Physics,,db/journals/jcphy/jcphy324.html#SchrannerHA16,https://doi.org/10.1016/j.jcp.2016.07.037 +Yicun Zhen,Adaptive error covariances estimation methods for ensemble Kalman filters.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#ZhenH15,https://doi.org/10.1016/j.jcp.2015.03.061 +Shuwang Li,A rescaling scheme with application to the long-time simulation of viscous fingering in a Hele-Shaw cell.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#LiLL07,https://doi.org/10.1016/j.jcp.2006.12.023 +Yves Achdou,Transparent boundary conditions for the Helmholtz equation in some ramified domains with a fractal boundary.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#AchdouST07,https://doi.org/10.1016/j.jcp.2006.05.033 +Mark Sussman,A sharp interface method for incompressible two-phase flows.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#SussmanSHOR07,https://doi.org/10.1016/j.jcp.2006.06.020 +Wenjie Liu,Some numerical algorithms for solving the highly oscillatory second-order initial value problems.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#LiuWS14,https://doi.org/10.1016/j.jcp.2014.07.033 +S. Ianniello,A self-adaptive oriented particles Level-Set method for tracking interfaces.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#IannielloM10,https://doi.org/10.1016/j.jcp.2009.10.034 +Hanquan Wang,An efficient numerical method for computing dynamics of spin F = 2 Bose-Einstein condensates.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#Wang11,https://doi.org/10.1016/j.jcp.2011.04.021 +Feng Zheng,Finite difference Hermite WENO schemes for the Hamilton-Jacobi equations.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#ZhengSQ17,https://doi.org/10.1016/j.jcp.2017.02.033 +Guillaume Bal,A hybrid (Monte Carlo/deterministic) approach for multi-dimensional radiation transport.,2011,230,J. Comput. Physics,20,db/journals/jcphy/jcphy230.html#BalDL11,https://doi.org/10.1016/j.jcp.2011.06.029 +Vincent Deledicque,A conservative approximation to compressible two-phase flow models in the stiff mechanical relaxation limit.,2008,227,J. Comput. Physics,21,db/journals/jcphy/jcphy227.html#DeledicqueP08,https://doi.org/10.1016/j.jcp.2007.12.011 +Ling-Tian Gao,A phase field method for simulating morphological evolution of vesicles in electric fields.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#GaoFG09,https://doi.org/10.1016/j.jcp.2009.02.034 +Claudio Bierig,Approximation of probability density functions by the Multilevel Monte Carlo Maximum Entropy method.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#BierigC16,https://doi.org/10.1016/j.jcp.2016.03.027 +Zbigniew Pawel Piotrowski,On numerical realizability of thermal convection.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#PiotrowskiSMW09,https://doi.org/10.1016/j.jcp.2009.05.023 +David L. Bilyeu,A two-dimensional fourth-order unstructured-meshed Euler solver based on the CESE method.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#BilyeuYCC14,https://doi.org/10.1016/j.jcp.2013.09.044 +Tian Jiang,Krylov implicit integration factor WENO methods for semilinear and fully nonlinear advection-diffusion-reaction equations.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#JiangZ13,https://doi.org/10.1016/j.jcp.2013.07.015 +Flaviu S. Cipcigan,Electronic coarse graining enhances the predictive power of molecular simulation allowing challenges in water physics to be addressed.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#CipciganSCM16,https://doi.org/10.1016/j.jcp.2016.08.030 +Chi-Ok Hwang,"Off-centered ""Walk-on-Spheres"" (WOS) algorithm.",2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#HwangHK15,https://doi.org/10.1016/j.jcp.2015.10.002 +Marcelo Buffoni,A non-linear observer for unsteady three-dimensional flows.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#BuffoniCILS08,https://doi.org/10.1016/j.jcp.2007.11.005 +N. Ansari,Filtered density function simulator on unstructured meshes.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#AnsariGSG11,https://doi.org/10.1016/j.jcp.2011.05.015 +Pedro Gonnet,A short note on the fast evaluation of dihedral angle potentials and their derivatives.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#Gonnet12,https://doi.org/10.1016/j.jcp.2011.12.022 +Gholam-Ali Zakeri,Sinc collocation approximation of non-smooth solution of a nonlinear weakly singular Volterra integral equation.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#ZakeriN10,https://doi.org/10.1016/j.jcp.2010.05.010 +H. C. Yee,Development of low dissipative high order filter schemes for multiscale Navier-Stokes/MHD systems.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#YeeS07,https://doi.org/10.1016/j.jcp.2007.01.012 +Alejandro L. Garcia,Generation of the Maxwellian inflow distribution.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#GarciaW06,https://doi.org/10.1016/j.jcp.2006.01.025 +Cosmin Safta,Hybrid discrete/continuum algorithms for stochastic reaction networks.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#SaftaSDN15,https://doi.org/10.1016/j.jcp.2014.10.026 +Jeroen A. S. Witteveen,An improved front tracking method for the Euler equations.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#WitteveenKB07,https://doi.org/10.1016/j.jcp.2006.10.020 +M. T. McGurn,An Eulerian-Lagrangian moving immersed interface method for simulating burning solids.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#McGurnRD13,https://doi.org/10.1016/j.jcp.2013.01.045 +Xinjuan Chen,A subset multicanonical Monte Carlo method for simulating rare failure events.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#ChenL17,https://doi.org/10.1016/j.jcp.2017.04.051 +Marco D. de Tullio,An immersed boundary method for compressible flows using local grid refinement.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#TullioPIPN07,https://doi.org/10.1016/j.jcp.2007.03.008 +Sylvain Maire,A partially reflecting random walk on spheres algorithm for electrical impedance tomography.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#MaireS15,https://doi.org/10.1016/j.jcp.2015.10.005 +Cyril Galitzine,An analysis of the convergence of the direct simulation Monte Carlo method.,2015,289,J. Comput. Physics,,db/journals/jcphy/jcphy289.html#GalitzineB15a,https://doi.org/10.1016/j.jcp.2015.02.039 +J. Tenreiro Machado,Numerical calculation of the left and right fractional derivatives.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#Machado15,https://doi.org/10.1016/j.jcp.2014.05.029 +Chunye Gong,GPU accelerated simulations of 3D deterministic particle transport using discrete ordinates method.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#GongLCHFG11,https://doi.org/10.1016/j.jcp.2011.04.010 +Bruno Seny,An efficient parallel implementation of explicit multirate Runge-Kutta schemes for discontinuous Galerkin computations.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#SenyLTLR14,https://doi.org/10.1016/j.jcp.2013.07.041 +Yaling Liu,Rheology of red blood cell aggregation by computer simulation.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#LiuL06,https://doi.org/10.1016/j.jcp.2006.05.010 +M. K. Cameron,Analysis and algorithms for a regularized cauchy problem arising from a non-linear elliptic PDE for seismic velocity estimation.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#CameronFS09,https://doi.org/10.1016/j.jcp.2009.06.036 +Houman Owhadi,Gamblets for opening the complexity-bottleneck of implicit schemes for hyperbolic and parabolic ODEs/PDEs with rough coefficients.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#OwhadiZ17,https://doi.org/10.1016/j.jcp.2017.06.037 +Donald J. Estep,A posteriori error estimation and adaptive mesh refinement for a multiscale operator decomposition approach to fluid-solid heat transfer.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#EstepTW10,https://doi.org/10.1016/j.jcp.2010.02.003 +Mario Chater,Simplified Least Squares Shadowing sensitivity analysis for chaotic ODEs and PDEs.,2017,329,J. Comput. Physics,,db/journals/jcphy/jcphy329.html#ChaterNW17,https://doi.org/10.1016/j.jcp.2016.10.035 +R. I. Saye,Analysis and applications of the Voronoi Implicit Interface Method.,2012,231,J. Comput. Physics,18,db/journals/jcphy/jcphy231.html#SayeS12,https://doi.org/10.1016/j.jcp.2012.04.004 +Qingming Chang,Application of the lattice Boltzmann method to two-phase Rayleigh-Benard convection with a deformable interface.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#ChangA06,https://doi.org/10.1016/j.jcp.2005.05.031 +Gang Li,Hybrid weighted essentially non-oscillatory schemes with different indicators.,2010,229,J. Comput. Physics,21,db/journals/jcphy/jcphy229.html#LiQ10,https://doi.org/10.1016/j.jcp.2010.07.012 +Jianqiang Han,An adaptive moving mesh method for two-dimensional ideal magnetohydrodynamics.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#HanT07,https://doi.org/10.1016/j.jcp.2006.05.031 +Emilie Marchandise,A stabilized finite element method using a discontinuous level set approach for the computation of bubble dynamics.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#MarchandiseGCR07,https://doi.org/10.1016/j.jcp.2007.01.005 +Manuel Jesús Castro Díaz,High order exactly well-balanced numerical methods for shallow water systems.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#DiazLP13,https://doi.org/10.1016/j.jcp.2013.03.033 +Jinho Kim,A stable HLLC Riemann solver for relativistic magnetohydrodynamics.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#KimB14,https://doi.org/10.1016/j.jcp.2014.04.023 +Christoph Karle,A parallel implementation of a two-dimensional fluid laser-plasma integrator for stratified plasma-vacuum systems.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#KarleSHS08,https://doi.org/10.1016/j.jcp.2008.04.024 +Andreas Hellander,Local error estimates for adaptive simulation of the reaction-diffusion master equation via operator splitting.,2014,266,J. Comput. Physics,,db/journals/jcphy/jcphy266.html#HellanderLDP14,https://doi.org/10.1016/j.jcp.2014.02.004 +Chunfeng Zhou,3D phase-field simulations of interfacial dynamics in Newtonian and viscoelastic fluids.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#ZhouYFOH10,https://doi.org/10.1016/j.jcp.2009.09.039 +Jing Li,A unified framework for mesh refinement in random and physical space.,2016,323,J. Comput. Physics,,db/journals/jcphy/jcphy323.html#LiS16,https://doi.org/10.1016/j.jcp.2016.07.027 +Kay Hamacher,Adaptive extremal optimization by detrended fluctuation analysis.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#Hamacher07,https://doi.org/10.1016/j.jcp.2007.09.013 +Xing Zheng,Incompressible SPH method based on Rankine source solution for violent water wave simulation.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#ZhengMD14,https://doi.org/10.1016/j.jcp.2014.07.036 +Wenjun Sun,An asymptotic preserving unified gas kinetic scheme for frequency-dependent radiative transfer equations.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#SunJXL15,https://doi.org/10.1016/j.jcp.2015.09.002 +Yifei Sun,A numerical solver for high dimensional transient Fokker-Planck equation in modeling polymeric fluids.,2015,289,J. Comput. Physics,,db/journals/jcphy/jcphy289.html#Sun015,https://doi.org/10.1016/j.jcp.2015.02.026 +Zhu Huang,Chebyshev-Fourier spectral methods in bipolar coordinates.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#HuangB15,https://doi.org/10.1016/j.jcp.2015.03.062 +Jen-Hao Chen,Exploring ground states and excited states of spin-1 Bose-Einstein condensates by continuation methods.,2011,230,J. Comput. Physics,6,db/journals/jcphy/jcphy230.html#ChenCW11,https://doi.org/10.1016/j.jcp.2010.11.048 +Yves Wiaux,Fast spin and#177*2 spherical harmonics transforms and application in cosmology.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#WiauxJV07,https://doi.org/10.1016/j.jcp.2007.07.005 +H. Dodig,A boundary integral method for numerical computation of radar cross section of 3D targets using hybrid BEM/FEM with edge elements.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#Dodig17,https://doi.org/10.1016/j.jcp.2017.07.043 +Jean-David Benamou,Source point discovery through high frequency asymptotic time reversal.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#BenamouCM12,https://doi.org/10.1016/j.jcp.2012.03.012 +Victor Sofonea,Implementation of diffuse reflection boundary conditions in a thermal lattice Boltzmann model with flux limiters.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#Sofonea09,https://doi.org/10.1016/j.jcp.2009.05.009 +Songting Luo,An asymptotic method based on a Hopf-Cole transformation for a kinetic BGK equation in the hyperbolic limit.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#LuoP17a,https://doi.org/10.1016/j.jcp.2017.04.028 +Andrew L. Stewart,An energy and potential enstrophy conserving numerical scheme for the multi-layer shallow water equations with complete Coriolis force.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#StewartD16,https://doi.org/10.1016/j.jcp.2015.12.042 +Franck Assous,Solving Maxwell's equations in singular domains with a Nitsche type method.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#AssousM11,https://doi.org/10.1016/j.jcp.2011.03.013 +Andri Bezzola,An exact and efficient first passage time algorithm for reaction-diffusion processes on a 2D-lattice.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#BezzolaBAP14,https://doi.org/10.1016/j.jcp.2013.08.053 +Elliot J. Carr,The extended distributed microstructure model for gradient-driven transport: A two-scale model for bypassing effective parameters.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#CarrPT16,https://doi.org/10.1016/j.jcp.2016.10.004 +Kendra P. Keady,An improved random walk algorithm for the implicit Monte Carlo method.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#KeadyC17,https://doi.org/10.1016/j.jcp.2016.09.056 +Jeaniffer Vides,A simple two-dimensional extension of the HLL Riemann solver for hyperbolic systems of conservation laws.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#VidesNA15,https://doi.org/10.1016/j.jcp.2014.10.013 +Jean Michel D. Sellier,A Wigner Monte Carlo approach to density functional theory.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#SellierD14,https://doi.org/10.1016/j.jcp.2014.03.065 +Felipe Vico,Fast convolution with free-space Green's functions.,2016,323,J. Comput. Physics,,db/journals/jcphy/jcphy323.html#VicoGF16,https://doi.org/10.1016/j.jcp.2016.07.028 +Toufic Abboud,Coupling discontinuous Galerkin methods and retarded potentials for transient wave propagation on unbounded domains.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#AbboudJRT11,https://doi.org/10.1016/j.jcp.2011.03.062 +Orazgeldy Kurbanmuradov,Randomized Spectral and Fourier-Wavelet Methods for multidimensional Gaussian random vector fields.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#KurbanmuradovSK13,https://doi.org/10.1016/j.jcp.2013.03.021 +Moritz Schneider,Extrapolation-based super-convergent implicit-explicit Peer methods with A-stable implicit part.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#SchneiderLH18,https://doi.org/10.1016/j.jcp.2018.04.006 +Jun Jia,Krylov deferred correction accelerated method of lines transpose for parabolic problems.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#JiaH08,https://doi.org/10.1016/j.jcp.2007.09.018 +Maziar Raissi,Inferring solutions of differential equations using noisy multi-fidelity data.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#RaissiPK17,https://doi.org/10.1016/j.jcp.2017.01.060 +René Pinnau,Model reduction techniques for frequency averaging in radiative heat transfer.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#PinnauS07,https://doi.org/10.1016/j.jcp.2007.04.024 +Heyu Huang,A multi-phase level set framework for source reconstruction in bioluminescence tomography.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#HuangQLHCYT10,https://doi.org/10.1016/j.jcp.2010.03.041 +Yue Tian,Computing traveltime and amplitude sensitivity kernels in finite-frequency tomography.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#TianMND07,https://doi.org/10.1016/j.jcp.2007.07.004 +David M. Ambrose,A small-scale decomposition for 3D boundary integral computations with surface tension.,2013,247,J. Comput. Physics,,db/journals/jcphy/jcphy247.html#AmbroseST13,https://doi.org/10.1016/j.jcp.2013.03.045 +Tobias Knopp,A grid and flow adaptive wall-function method for RANS turbulence modelling.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#KnoppAS06,https://doi.org/10.1016/j.jcp.2006.05.003 +David Coulette,Numerical comparisons of gyrokinetic multi-water-bag models.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#CouletteB13,https://doi.org/10.1016/j.jcp.2013.03.065 +Yu Liu,A coupled phase-field and volume-of-fluid method for accurate representation of limiting water wave deformation.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#LiuY16a,https://doi.org/10.1016/j.jcp.2016.05.059 +Melapudi Vikram,Fast evaluation of time domain fields in sub-wavelength source/observer distributions using accelerated Cartesian expansions (ACE).,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#VikramS07,https://doi.org/10.1016/j.jcp.2007.08.017 +D. Brinkman,A convergent 2D finite-difference scheme for the Dirac-Poisson system and the simulation of graphene.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#BrinkmanHM14,https://doi.org/10.1016/j.jcp.2013.09.052 +A. Gronskis,Inflow and initial conditions for direct numerical simulation based on adjoint data assimilation.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#GronskisHM13,https://doi.org/10.1016/j.jcp.2013.01.051 +Jue Yan,A local discontinuous Galerkin method for directly solving Hamilton-Jacobi equations.,2011,230,J. Comput. Physics,1,db/journals/jcphy/jcphy230.html#YanO11,https://doi.org/10.1016/j.jcp.2010.09.022 +Z. Yang,Finite element method for nonlinear Riesz space fractional diffusion equations on irregular domains.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#YangYNWZL17,https://doi.org/10.1016/j.jcp.2016.10.053 +F. L. Yang,An adaptive greedy technique for inverse boundary determination problem.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#YangLW10,https://doi.org/10.1016/j.jcp.2010.07.031 +Danilo Costarelli,Asymptotic-numerical solution of nonlinear systems of one-dimensional balance laws.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#CostarelliLS13,https://doi.org/10.1016/j.jcp.2013.02.030 +Carolynne Montijn,An adaptive grid refinement strategy for the simulation of negative streamers.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#MontijnHE06,https://doi.org/10.1016/j.jcp.2006.04.017 +Laurent Monasse,A conservative coupling algorithm between a compressible flow and a rigid body using an Embedded Boundary method.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#MonasseDMPT12,https://doi.org/10.1016/j.jcp.2012.01.002 +Jim Kao,Estimating model parameters for an impact-produced shock-wave simulation: Optimal use of partial data with the extended Kalman filter.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#KaoFIG06,https://doi.org/10.1016/j.jcp.2005.10.022 +Guillaume Perrin,Nested polynomial trends for the improvement of Gaussian process-based predictors.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#PerrinSMG17,https://doi.org/10.1016/j.jcp.2017.05.051 +Dan G. Cacuci,Second-order adjoint sensitivity analysis methodology (2nd-ASAM) for computing exactly and efficiently first- and second-order sensitivities in large-scale linear systems: II. Illustrative application to a paradigm particle diffusion problem.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#Cacuci15a,https://doi.org/10.1016/j.jcp.2014.11.030 +A. López-Yela,Finite element method to solve the spectral problem for arbitrary self-adjoint extensions of the Laplace-Beltrami operator on manifolds with a boundary.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#Lopez-YelaP17,https://doi.org/10.1016/j.jcp.2017.06.043 +Marc O. Delchini,Entropy-based artificial viscosity stabilization for non-equilibrium Grey Radiation-Hydrodynamics.,2015,296,J. Comput. Physics,,db/journals/jcphy/jcphy296.html#DelchiniRM15,https://doi.org/10.1016/j.jcp.2015.04.039 +Martin Vymazal,High-order upwind residual distribution schemes on isoparametric curved elements.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#VymazalQVD11,https://doi.org/10.1016/j.jcp.2010.05.027 +Xiao Chen,A flexible uncertainty quantification method for linearly coupled multi-physics systems.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#ChenNST13,https://doi.org/10.1016/j.jcp.2013.04.009 +Farzad Sabzikar,Tempered fractional calculus.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#SabzikarMC15,https://doi.org/10.1016/j.jcp.2014.04.024 +Wouter Dekeyser,Automated divertor target design by adjoint shape sensitivity analysis and a one-shot method.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#DekeyserRB14,https://doi.org/10.1016/j.jcp.2014.08.023 +Samuel Amstutz,A new algorithm for topology optimization using a level-set method.,2006,216,J. Comput. Physics,2,db/journals/jcphy/jcphy216.html#AmstutzA06,https://doi.org/10.1016/j.jcp.2005.12.015 +Xueyu Zhu,Multi-fidelity stochastic collocation method for computation of statistical moments.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#ZhuLX17,https://doi.org/10.1016/j.jcp.2017.04.022 +Marcos Vanella,A moving-least-squares reconstruction for embedded-boundary formulations.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#VanellaB09,https://doi.org/10.1016/j.jcp.2009.06.003 +C. J. Budd,The geometry of r-adaptive meshes generated using optimal transport methods.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#BuddRW15,https://doi.org/10.1016/j.jcp.2014.11.007 +Pieter Rauwoens,A solution for the odd-even decoupling problem in pressure-correction algorithms for variable density flows.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#RauwoensVM07,https://doi.org/10.1016/j.jcp.2007.07.010 +Pengtao Yue,Phase-field simulations of interfacial dynamics in viscoelastic fluids using finite elements with adaptive meshing.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#YueZFOH06,https://doi.org/10.1016/j.jcp.2006.03.016 +Z. F. Tian,High-order compact exponential finite difference methods for convection-diffusion type problems.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#TianD07,https://doi.org/10.1016/j.jcp.2006.06.001 +Annalisa Buffa,Isogeometric methods for computational electromagnetics: B-spline and T-spline discretizations.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#BuffaSV14,https://doi.org/10.1016/j.jcp.2013.08.015 +Emre Turkoz,AETHER: A simulation platform for inductively coupled plasma.,2015,286,J. Comput. Physics,,db/journals/jcphy/jcphy286.html#TurkozC15,https://doi.org/10.1016/j.jcp.2015.01.027 +Utku Erdogan,A smart nonstandard finite difference scheme for second order nonlinear boundary value problems.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#ErdoganO11,https://doi.org/10.1016/j.jcp.2011.04.033 +Xueying Xie,An isochoric domain deformation method for computing steady free surface flows with conserved volumes.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#XieMP07,https://doi.org/10.1016/j.jcp.2007.04.028 +Y. Rouizi,Numerical model reduction of 2D steady incompressible laminar flows: Application on the flow over a backward-facing step.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#RouiziFVP09,https://doi.org/10.1016/j.jcp.2008.12.001 +Pierre-Henri Maire,A high-order cell-centered Lagrangian scheme for two-dimensional compressible fluid flows on unstructured meshes.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#Maire09,https://doi.org/10.1016/j.jcp.2008.12.007 +F. Jauberteau,Multiscale/fractional step schemes for the numerical simulation of the rotating shallow water flows with complex periodic topography.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#JauberteauTT14,https://doi.org/10.1016/j.jcp.2014.03.036 +Seung-Hoe Ku,A new hybrid-Lagrangian numerical scheme for gyrokinetic simulation of tokamak edge plasma.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#KuHCKP16,https://doi.org/10.1016/j.jcp.2016.03.062 +Guido Kanschat,A strongly conservative finite element method for the coupling of Stokes and Darcy flow.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#KanschatR10,https://doi.org/10.1016/j.jcp.2010.04.021 +Zhijun Tan,An adaptive mesh redistribution method for the incompressible mixture flows using phase-field model.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#TanLK07,https://doi.org/10.1016/j.jcp.2007.01.019 +Thomas Breinlinger,Surface tension and wetting effects with smoothed particle hydrodynamics.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#BreinlingerPHK13,https://doi.org/10.1016/j.jcp.2013.02.038 +Zoltán Perkó,Grid and basis adaptive polynomial chaos techniques for sensitivity and uncertainty analysis.,2014,260,J. Comput. Physics,,db/journals/jcphy/jcphy260.html#PerkoGLK14,https://doi.org/10.1016/j.jcp.2013.12.025 +Phanish Suryanarayana,Augmented Lagrangian formulation of orbital-free density functional theory.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#SuryanarayanaP14,https://doi.org/10.1016/j.jcp.2014.07.006 +Chih-Hao Chang,"Erratum to ""A robust and accurate approach to computing compressible multiphase flow: Stratified flow model and AUSM+-up scheme"" [J. Comput. Phys. 225(2007) 840-873].",2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#ChangL08,https://doi.org/10.1016/j.jcp.2008.01.041 +Jianhua Pan,High order sub-cell finite volume schemes for solving hyperbolic conservation laws II: Extension to two-dimensional systems on unstructured grids.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#PanRS17,https://doi.org/10.1016/j.jcp.2017.02.052 +J. López,On reducing interface curvature computation errors in the height function technique.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#LopezH10,https://doi.org/10.1016/j.jcp.2010.03.032 +Gian Luca Delzanno,On particle movers in cylindrical geometry for Particle-In-Cell simulations.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#DelzannoC13,https://doi.org/10.1016/j.jcp.2013.07.007 +Andrew J. Christlieb,A high order time splitting method based on integral deferred correction for semi-Lagrangian Vlasov simulations.,2014,267,J. Comput. Physics,,db/journals/jcphy/jcphy267.html#ChristliebGMQ14,https://doi.org/10.1016/j.jcp.2014.02.012 +Isaías Alonso-Mallo,A high order finite element discretization with local absorbing boundary conditions of the linear Schrödinger equation.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#Alonso-MalloR06,https://doi.org/10.1016/j.jcp.2006.05.022 +Kazufumi Ito,A high order compact MAC finite difference scheme for the Stokes equations: Augmented variable approach.,2008,227,J. Comput. Physics,17,db/journals/jcphy/jcphy227.html#ItoQ08,https://doi.org/10.1016/j.jcp.2008.05.021 +L. Zhou,Lattice Boltzmann simulation of gas-solid adsorption processes at pore scale level.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#ZhouQCT15,https://doi.org/10.1016/j.jcp.2015.08.014 +Giuseppe Bonfigli,An efficient multi-scale Poisson solver for the incompressible Navier-Stokes equations with immersed boundaries.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#BonfigliJ09,https://doi.org/10.1016/j.jcp.2009.03.032 +Dieter Fauconnier,Construction of explicit and implicit dynamic finite difference schemes and application to the large-eddy simulation of the Taylor-Green vortex.,2009,228,J. Comput. Physics,21,db/journals/jcphy/jcphy228.html#FauconnierLD09a,https://doi.org/10.1016/j.jcp.2009.07.028 +Jialin Hong,Multi-symplectic Runge-Kutta-Nyström methods for nonlinear Schrödinger equations with variable coefficients.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#HongLL07,https://doi.org/10.1016/j.jcp.2007.06.023 +Benjamin M. Cowan,Characteristics of an envelope model for laser-plasma accelerator simulation.,2011,230,J. Comput. Physics,1,db/journals/jcphy/jcphy230.html#CowanBCEGMP11,https://doi.org/10.1016/j.jcp.2010.09.009 +Felipe Montefuscolo,High-order ALE schemes for incompressible capillary flows.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#MontefuscoloSB14,https://doi.org/10.1016/j.jcp.2014.08.030 +Benjamin Helmich-Paris,Improvements on the minimax algorithm for the Laplace transformation of orbital energy denominators.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#Helmich-ParisV16,https://doi.org/10.1016/j.jcp.2016.06.011 +Ying He 0007,An efficient and stable spectral method for electromagnetic scattering from a layered periodic structure.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#HeNS12,https://doi.org/10.1016/j.jcp.2011.10.033 +Svetlana Dubinkina,Statistical relevance of vorticity conservation in the Hamiltonian particle-mesh method.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#DubinkinaF10,https://doi.org/10.1016/j.jcp.2009.12.012 +Fangming Jiang,SPH simulation of transition to turbulence for planar shear flow subjected to a streamwise magnetic field.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#JiangOS06,https://doi.org/10.1016/j.jcp.2006.01.009 +Yang He,Volume-preserving algorithms for charged particle dynamics.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#HeSLQ15,https://doi.org/10.1016/j.jcp.2014.10.032 +L. Leclercq,3D magnetospheric parallel hybrid multi-grid method applied to planet-plasma interactions.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#LeclercqMLHM16,https://doi.org/10.1016/j.jcp.2016.01.005 +I. A. Sadovskyy,Stable large-scale solver for Ginzburg-Landau equations for superconductors.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#SadovskyyKPKG15,https://doi.org/10.1016/j.jcp.2015.04.002 +Takaharu Yaguchi,An extension of the discrete variational method to nonuniform grids.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#YaguchiMS10,https://doi.org/10.1016/j.jcp.2010.02.018 +Martin Burger 0001,A level set approach to anisotropic flows with curvature regularization.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#BurgerHSV07,https://doi.org/10.1016/j.jcp.2006.11.026 +David Stevens,The radial basis function finite collocation approach for capturing sharp fronts in time dependent advection problems.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#StevensP15,https://doi.org/10.1016/j.jcp.2015.05.032 +Youngsoo Ha,An improved weighted essentially non-oscillatory scheme with a new smoothness indicator.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#HaKLY13,https://doi.org/10.1016/j.jcp.2012.06.016 +Hendrik Ranocha,Generalised summation-by-parts operators and variable coefficients.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#Ranocha18,https://doi.org/10.1016/j.jcp.2018.02.021 +Wolfgang Polifke,Partially reflecting and non-reflecting boundary conditions for simulation of compressible viscous flow.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#PolifkeWM06,https://doi.org/10.1016/j.jcp.2005.08.016 +Jacek K. Wróbel,Regularized image system for Stokes flow outside a solid sphere.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#WrobelCVF16,https://doi.org/10.1016/j.jcp.2016.04.043 +Saulo R. M. Barros,A global finite-difference semi-Lagrangian model for the adiabatic primitive equations.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#BarrosG07,https://doi.org/10.1016/j.jcp.2007.06.011 +Mohammad Motamed,A fast phase space method for computing creeping rays.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#MotamedR06,https://doi.org/10.1016/j.jcp.2006.03.024 +Craig Michoski,Quantum hydrodynamics with trajectories: The nonlinear conservation form mixed/discontinuous Galerkin method with applications in chemistry.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#MichoskiESV09,https://doi.org/10.1016/j.jcp.2009.08.011 +Shingyu Leung,Eulerian Gaussian beams for Schrödinger equations in the semi-classical regime.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#LeungQ09,https://doi.org/10.1016/j.jcp.2009.01.007 +Ville Havu,Efficient O(N) integration for all-electron electronic structure calculation using numeric basis functions.,2009,228,J. Comput. Physics,22,db/journals/jcphy/jcphy228.html#HavuBHS09,https://doi.org/10.1016/j.jcp.2009.08.008 +L. Beirão da Veiga,Mimetic finite difference method for the Stokes problem on polygonal meshes.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#VeigaGLM09,https://doi.org/10.1016/j.jcp.2009.06.034 +Michael N. Macrossan,Restricted Collision List method for faster Direct Simulation Monte-Carlo (DSMC) collisions.,2016,319,J. Comput. Physics,,db/journals/jcphy/jcphy319.html#Macrossan16,https://doi.org/10.1016/j.jcp.2016.05.015 +Zhenning Cai,Approximation of the linearized Boltzmann collision operator for hard-sphere and inverse-power-law models.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#CaiT15,https://doi.org/10.1016/j.jcp.2015.04.031 +Evgeny Kikinzon,Approximate static condensation algorithm for solving multi-material diffusion problems on meshes non-aligned with material interfaces.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#KikinzonKLS17,https://doi.org/10.1016/j.jcp.2017.06.048 +Caio F. Rodrigues,Construction of minimum energy high-order Helmholtz bases for structured elements.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#RodriguesSB16,https://doi.org/10.1016/j.jcp.2015.11.033 +Hendrik Ranocha,Summation-by-parts operators for correction procedure via reconstruction.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#RanochaOS16,https://doi.org/10.1016/j.jcp.2016.02.009 +Behrouz Karami Halashi,A reconstructed discontinuous Galerkin method for magnetohydrodynamics on arbitrary grids.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#HalashiL16,https://doi.org/10.1016/j.jcp.2016.08.055 +Chein-Shan Liu,A multiple-direction Trefftz method for solving the multi-dimensional wave equation in an arbitrary spatial domain.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#LiuK16,https://doi.org/10.1016/j.jcp.2016.05.030 +Tapan K. Sengupta,A new alternating bi-diagonal compact scheme for non-uniform grids.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#SenguptaS16,https://doi.org/10.1016/j.jcp.2016.01.014 +Dinshaw S. Balsara,A high-order relativistic two-fluid electrodynamic scheme with consistent reconstruction of electromagnetic fields and a multidimensional Riemann solver for electromagnetism.,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#BalsaraAGK16,https://doi.org/10.1016/j.jcp.2016.05.006 +Holger Heumann,A finite element method with overlapping meshes for free-boundary axisymmetric plasma equilibria in realistic geometries.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#HeumannR17,https://doi.org/10.1016/j.jcp.2017.01.006 +Altug Ozcelikkale,Least-squares spectral element solution of incompressible Navier-Stokes equations with adaptive refinement.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#OzcelikkaleS12,https://doi.org/10.1016/j.jcp.2012.01.024 +Frans Pretorius,Adaptive mesh refinement for coupled elliptic-hyperbolic systems.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#PretoriusC06,https://doi.org/10.1016/j.jcp.2006.02.011 +Kazufumi Ito,A two-stage method for inverse medium scattering.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#ItoJZ13,https://doi.org/10.1016/j.jcp.2012.12.004 +S. Jaisankar,Directional Diffusion Regulator (DDR) for some numerical solvers of hyperbolic conservation laws.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#JaisankarS13,https://doi.org/10.1016/j.jcp.2012.07.031 +ZhanSen Qian,A class of large time step Godunov schemes for hyperbolic conservation laws and applications.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#andL11,https://doi.org/10.1016/j.jcp.2011.06.008 +Michael D. White,High-order parabolic beam approximation for aero-optics.,2010,229,J. Comput. Physics,15,db/journals/jcphy/jcphy229.html#White10,https://doi.org/10.1016/j.jcp.2010.03.046 +Beiping Duan,Spectral approximation methods and error estimates for Caputo fractional derivative with applications to initial-value problems.,2016,319,J. Comput. Physics,,db/journals/jcphy/jcphy319.html#DuanZC16,https://doi.org/10.1016/j.jcp.2016.05.017 +Arpit Tiwari,A diffuse interface model with immiscibility preservation.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#TiwariFP13,https://doi.org/10.1016/j.jcp.2013.06.021 +D. Lannes,A new class of fully nonlinear and weakly dispersive Green-Naghdi models for efficient 2D simulations.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#LannesM15,https://doi.org/10.1016/j.jcp.2014.11.016 +Alexandru Cioaca,An optimization framework to improve 4D-Var data assimilation system performance.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#CioacaS14,https://doi.org/10.1016/j.jcp.2014.07.005 +Eugenio Aulisa,Interface reconstruction with least-squares fit and split advection in three-dimensional Cartesian geometry.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#AulisaMSZ07,https://doi.org/10.1016/j.jcp.2007.03.015 +R. H. Jackson,Numerical solution of the cylindrical Poisson equation using the Local Taylor Polynomial technique.,2012,231,J. Comput. Physics,16,db/journals/jcphy/jcphy231.html#JacksonWV12,https://doi.org/10.1016/j.jcp.2012.04.034 +Farshid Nazari,Optimal high-order diagonally-implicit Runge-Kutta schemes for nonlinear diffusive systems on atmospheric boundary layer.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#NazariMCZ14,https://doi.org/10.1016/j.jcp.2014.01.039 +Reza Khazaeli,Application of a ghost fluid approach for a thermal lattice Boltzmann method.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#KhazaeliMA13,https://doi.org/10.1016/j.jcp.2013.04.044 +Joachim Moortgat,Mixed-hybrid and vertex-discontinuous-Galerkin finite element modeling of multiphase compositional flow on 3D unstructured grids.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#MoortgatF16,https://doi.org/10.1016/j.jcp.2016.03.054 +Luke N. Olson,Smoothed aggregation multigrid solvers for high-order discontinuous Galerkin methods for elliptic problems.,2011,230,J. Comput. Physics,18,db/journals/jcphy/jcphy230.html#OlsonS11,https://doi.org/10.1016/j.jcp.2011.05.009 +S. Dong,Multiphase flows of N immiscible incompressible fluids: A reduction-consistent and thermodynamically-consistent formulation and associated algorithm.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#Dong18,https://doi.org/10.1016/j.jcp.2018.01.041 +Xiang Ma,Kernel principal component analysis for stochastic input model generation.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#MaZ11a,https://doi.org/10.1016/j.jcp.2011.05.037 +Ali Mani,Suitability of artificial bulk viscosity for large-eddy simulation of turbulent flows with shocks.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#ManiLM09,https://doi.org/10.1016/j.jcp.2009.06.040 +Liang Pan,An efficient and accurate two-stage fourth-order gas-kinetic scheme for the Euler and Navier-Stokes equations.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#PanXLL16,https://doi.org/10.1016/j.jcp.2016.08.054 +Lars K. S. Daldorff,Two-way coupling of a global Hall magnetohydrodynamics model with a local implicit particle-in-cell model.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#DaldorffTGLAMB14,https://doi.org/10.1016/j.jcp.2014.03.009 +Elias Ghossein,Random generation of periodic hard ellipsoids based on molecular dynamics: A computationally-efficient algorithm.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#GhosseinL13,https://doi.org/10.1016/j.jcp.2013.07.004 +A. Mueller,Novel two-way artificial boundary condition for 2D vertical water wave propagation modelled with Radial-Basis-Function Collocation Method.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#Mueller18,https://doi.org/10.1016/j.jcp.2018.01.017 +C. Baranger,Locally refined discrete velocity grids for stationary rarefied flow simulations.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#BarangerCHM14,https://doi.org/10.1016/j.jcp.2013.10.014 +Eugene D. Brooks III,Piecewise linear discretization of Symbolic Implicit Monte Carlo radiation transport in the difference formulation.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#BrooksSP06,https://doi.org/10.1016/j.jcp.2006.07.014 +Qi Wang,Numerical design of FSHL-based approximate cloaks with arbitrary shapes.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#WangHL17,https://doi.org/10.1016/j.jcp.2016.12.037 +Feng Chen 0019,A multi-domain spectral method for time-fractional differential equations.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#ChenXH15,https://doi.org/10.1016/j.jcp.2014.10.016 +Marco Fasondini,Methods for the computation of the multivalued Painlevé transcendents on their Riemann surfaces.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#FasondiniFW17,https://doi.org/10.1016/j.jcp.2017.04.071 +Dafang Wang,Inverse electrocardiographic source localization of ischemia: An optimization framework and finite element solution.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#WangKMJ13,https://doi.org/10.1016/j.jcp.2013.05.027 +Craig Schroeder,A second order virtual node algorithm for Navier-Stokes flow problems with interfacial forces and discontinuous material properties.,2014,265,J. Comput. Physics,,db/journals/jcphy/jcphy265.html#SchroederSHT14,https://doi.org/10.1016/j.jcp.2014.01.051 +Jilian Wu,Unconditionally stable Gauge-Uzawa finite element schemes for incompressible natural convection problems with variable density.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#WuSF17,https://doi.org/10.1016/j.jcp.2017.07.045 +Suchuan Dong,A robust and accurate outflow boundary condition for incompressible flow simulations on severely-truncated unbounded domains.,2014,261,J. Comput. Physics,,db/journals/jcphy/jcphy261.html#DongKC14,https://doi.org/10.1016/j.jcp.2013.12.042 +Aria Abubakar,Three-dimensional visco-acoustic modeling using a renormalized integral equation iterative solver.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#AbubakarH13,https://doi.org/10.1016/j.jcp.2013.04.008 +R. S. Jeffers,Goal-based h-adaptivity of the 1-D diamond difference discrete ordinate method.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#JeffersKEFHR17,https://doi.org/10.1016/j.jcp.2017.01.037 +Zhen F. Tian,An efficient compact difference scheme for solving the streamfunction formulation of the incompressible Navier-Stokes equations.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#TianY11,https://doi.org/10.1016/j.jcp.2010.12.031 +Pierre-Henri Maire,A high-order cell-centered Lagrangian scheme for compressible fluid flows in two-dimensional cylindrical geometry.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#Maire09a,https://doi.org/10.1016/j.jcp.2009.06.018 +Suchuan Dong,A time-stepping scheme involving constant coefficient matrices for phase-field simulations of two-phase incompressible flows with large density ratios.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#DongS12,https://doi.org/10.1016/j.jcp.2012.04.041 +Susana Serna,A characteristic-based nonconvex entropy-fix upwind scheme for the ideal magnetohydrodynamic equations.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#Serna09,https://doi.org/10.1016/j.jcp.2009.03.001 +Xin Wen,A steady state capturing and preserving method for computing hyperbolic systems with geometrical source terms having concentrations.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#Wen06,https://doi.org/10.1016/j.jcp.2006.03.019 +Zhipeng Li,Block-diagonalization of the variational nodal response matrix using the symmetry group theory.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#LiWLC17,https://doi.org/10.1016/j.jcp.2017.09.029 +Fabrice Colin,Computing a null divergence velocity field using smoothed particle hydrodynamics.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#ColinEL06,https://doi.org/10.1016/j.jcp.2006.01.021 +Ugis Lacis,A stable fluid-structure-interaction solver for low-density rigid bodies using the immersed boundary projection method.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#LacisTB16,https://doi.org/10.1016/j.jcp.2015.10.041 +Jens H. Walther,Multiscale simulation of water flow past a C540 fullerene.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#WaltherPKK12,https://doi.org/10.1016/j.jcp.2011.12.015 +Christoph Schwab,Karhunen-Loève approximation of random fields by generalized fast multipole methods.,2006,217,J. Comput. Physics,1,db/journals/jcphy/jcphy217.html#SchwabT06,https://doi.org/10.1016/j.jcp.2006.01.048 +Capdeville Guy,A HLL-Rankine-Hugoniot Riemann solver for complex non-linear hyperbolic problems.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#Guy13,https://doi.org/10.1016/j.jcp.2013.05.024 +Tao Zhou,Note on coefficient matrices from stochastic Galerkin methods for random diffusion equations.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#ZhouT10,https://doi.org/10.1016/j.jcp.2010.07.016 +Michael Lentine,An unconditionally stable fully conservative semi-Lagrangian method.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#LentineGF11,https://doi.org/10.1016/j.jcp.2010.12.036 +Eleuterio F. Toro,FORCE schemes on unstructured meshes I: Conservative hyperbolic systems.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#ToroHD09,https://doi.org/10.1016/j.jcp.2009.01.025 +Tuan L. Hoang,Computationally-efficient stochastic cluster dynamics method for modeling damage accumulation in irradiated materials.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#HoangMBH15,https://doi.org/10.1016/j.jcp.2015.07.061 +Lauri Lehtovaara,Solution of time-independent Schrödinger equation by the imaginary time propagation method.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#LehtovaaraTE07,https://doi.org/10.1016/j.jcp.2006.06.006 +Thomas Y. Hou,Wiener Chaos expansions and numerical solutions of randomly forced equations of fluid mechanics.,2006,216,J. Comput. Physics,2,db/journals/jcphy/jcphy216.html#HouLRZ06,https://doi.org/10.1016/j.jcp.2006.01.008 +Nitin Agarwal,A domain adaptive stochastic collocation approach for analysis of MEMS under uncertainties.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#AgarwalA09,https://doi.org/10.1016/j.jcp.2009.07.014 +Angxiu Ni,Sensitivity analysis on chaotic dynamical systems by Non-Intrusive Least Squares Shadowing (NILSS).,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#NiW17,https://doi.org/10.1016/j.jcp.2017.06.033 +Paul-Emile Bernard,High-order discontinuous Galerkin schemes on general 2D manifolds applied to the shallow water equations.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#BernardRCLH09,https://doi.org/10.1016/j.jcp.2009.05.046 +Mads Mølholm Hejlesen,Iterative Brinkman penalization for remeshed vortex methods.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#HejlesenKLW15,https://doi.org/10.1016/j.jcp.2014.09.029 +L. He,Block-spectral mapping for multi-scale solution.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#He13,https://doi.org/10.1016/j.jcp.2013.05.004 +Guo-Hua Tu,A characteristic-based shock-capturing scheme for hyperbolic problems.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#TuY07,https://doi.org/10.1016/j.jcp.2007.03.007 +David L. Ropp,Stability of operator splitting methods for systems with indefinite operators: Advection-diffusion-reaction systems.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#RoppS09,https://doi.org/10.1016/j.jcp.2009.02.001 +Mehran Eslaminia,A double-sweeping preconditioner for the Helmholtz equation.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#EslaminiaG16,https://doi.org/10.1016/j.jcp.2016.03.022 +J. M. Zhao,A second order radiative transfer equation and its solution by meshless method with application to strongly inhomogeneous media.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#ZhaoTL13,https://doi.org/10.1016/j.jcp.2012.08.020 +Mamdouh S. Mohamed,Discrete exterior calculus discretization of incompressible Navier-Stokes equations over surface simplicial meshes.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#MohamedHS16,https://doi.org/10.1016/j.jcp.2016.02.028 +Weizhu Bao,A parametric finite element method for solid-state dewetting problems with anisotropic surface energies.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#BaoJWZ17,https://doi.org/10.1016/j.jcp.2016.11.015 +C. Nathan Woods,Verification of fluid-dynamic codes in the presence of shocks and other discontinuities.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#WoodsS15,https://doi.org/10.1016/j.jcp.2015.03.055 +Michail E. Kavousanakis,Projective and coarse projective integration for problems with continuous symmetries.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#KavousanakisEBGK07,https://doi.org/10.1016/j.jcp.2006.12.003 +Chohong Min,A second order accurate projection method for the incompressible Navier-Stokes equations on non-graded adaptive grids.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#MinG06,https://doi.org/10.1016/j.jcp.2006.07.019 +Daniel Straub,Bayesian analysis of rare events.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#StraubPB16,https://doi.org/10.1016/j.jcp.2016.03.018 +Ricardo Cortez,A general system of images for regularized Stokeslets and other elements near a plane wall.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#CortezV15,https://doi.org/10.1016/j.jcp.2015.01.019 +Steven P. Hamilton,Hot zero power reactor calculations using the Insilico code.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#HamiltonEDJPG16,https://doi.org/10.1016/j.jcp.2016.03.033 +Stefano Markidis,The energy conserving particle-in-cell method.,2011,230,J. Comput. Physics,18,db/journals/jcphy/jcphy230.html#MarkidisL11,https://doi.org/10.1016/j.jcp.2011.05.033 +Filippo Capolino,Efficient computation of the 3D Green's function for the Helmholtz operator for a linear array of point sources using the Ewald method.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#CapolinoWJ07,https://doi.org/10.1016/j.jcp.2006.09.013 +Alexandre M. Tartakovsky,Dimension reduction method for ODE fluid models.,2011,230,J. Comput. Physics,23,db/journals/jcphy/jcphy230.html#TartakovskyPF11,https://doi.org/10.1016/j.jcp.2011.08.004 +Shrinivas Lankalapalli,An adaptive finite element method for magnetohydrodynamics.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#LankalapalliFSS07,https://doi.org/10.1016/j.jcp.2006.12.010 +øystein Tråsdahl,High order numerical approximation of minimal surfaces.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#TrasdahlR11,https://doi.org/10.1016/j.jcp.2011.03.003 +Thomas Hagstrom,High-order local absorbing conditions for the wave equation: Extensions and improvements.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#HagstromMG08,https://doi.org/10.1016/j.jcp.2007.11.040 +Marc-Paul Errera,Optimal solutions of numerical interface conditions in fluid-structure thermal analysis.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#ErreraC13,https://doi.org/10.1016/j.jcp.2013.03.004 +Yukinao Akamatsu,A new scheme of causal viscous hydrodynamics for relativistic heavy-ion collisions: A Riemann solver for quark-gluon plasma.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#AkamatsuINT14,https://doi.org/10.1016/j.jcp.2013.08.047 +Tao Cai,A semi-implicit spectral method for compressible convection of rotating and density-stratified flows in Cartesian geometry.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#Cai16,https://doi.org/10.1016/j.jcp.2016.01.022 +Marianne Gjestvold Omang,SPH in spherical and cylindrical coordinates.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#OmangBT06,https://doi.org/10.1016/j.jcp.2005.08.023 +Jiangguo Liu,The lowest-order weak Galerkin finite element method for the Darcy equation on quadrilateral and hybrid meshes.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#LiuTW18,https://doi.org/10.1016/j.jcp.2018.01.001 +Ben Van de Wiele,Application of the fast multipole method for the evaluation of magnetostatic fields in micromagnetic computations.,2008,227,J. Comput. Physics,23,db/journals/jcphy/jcphy227.html#WieleOD08,https://doi.org/10.1016/j.jcp.2008.08.003 +David J. Smith,A nearest-neighbour discretisation of the regularized stokeslet boundary integral equation.,2018,358,J. Comput. Physics,,db/journals/jcphy/jcphy358.html#Smith18,https://doi.org/10.1016/j.jcp.2017.12.008 +Gérard Labrosse,The piecewise-linear Finite Volume scheme: The best known lowest-order preconditioner for the d2/dx2 Chebyshev spectral operator.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#Labrosse09,https://doi.org/10.1016/j.jcp.2009.03.019 +Dag Lindbo,Spectrally accurate fast summation for periodic Stokes potentials.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#LindboT10,https://doi.org/10.1016/j.jcp.2010.08.026 +Brendan B. Godfrey,Numerical stability of relativistic beam multidimensional PIC simulations employing the Esirkepov algorithm.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#GodfreyV13,https://doi.org/10.1016/j.jcp.2013.04.006 +Mikhail A. Belonosov,An iterative solver for the 3D Helmholtz equation.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#BelonosovDKNT17,https://doi.org/10.1016/j.jcp.2017.05.026 +Cheng Peng,Direct numerical simulation of turbulent pipe flow using the lattice Boltzmann method.,2018,357,J. Comput. Physics,,db/journals/jcphy/jcphy357.html#PengGGW18,https://doi.org/10.1016/j.jcp.2017.11.040 +Ionut Danaila,A finite element method with mesh adaptivity for computing vortex states in fast-rotating Bose-Einstein condensates.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#DanailaH10,https://doi.org/10.1016/j.jcp.2010.05.032 +Sebastian Bosma,Multiscale finite volume method for discrete fracture modeling on unstructured grids (MS-DFM).,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#BosmaHTT17,https://doi.org/10.1016/j.jcp.2017.09.032 +Sander Rhebergen,A space-time discontinuous Galerkin method for the incompressible Navier-Stokes equations.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#RhebergenCV13,https://doi.org/10.1016/j.jcp.2012.08.052 +Miquel Aguirre,An upwind vertex centred Finite Volume solver for Lagrangian solid dynamics.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#AguirreGBL15,https://doi.org/10.1016/j.jcp.2015.07.029 +Anne Cadiou,Asymptotic and numerical analysis of an inviscid bounded vortex flow at low Mach number.,2008,227,J. Comput. Physics,18,db/journals/jcphy/jcphy227.html#CadiouPB08,https://doi.org/10.1016/j.jcp.2008.05.024 +John P. Boyd 0001,A proof that the discrete singular convolution (DSC)/Lagrange-distributed approximating function (LDAF) method is inferior to high order finite differences.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#Boyd06,https://doi.org/10.1016/j.jcp.2005.10.010 +Xiang Chen,A robust and efficient polyhedron subdivision and intersection algorithm for three-dimensional MMALE remapping.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#ChenZJ17,https://doi.org/10.1016/j.jcp.2017.02.029 +Janusz A. Pudykiewicz,Numerical solution of the reaction-advection-diffusion equation on the sphere.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#Pudykiewicz06,https://doi.org/10.1016/j.jcp.2005.08.021 +Akihiro Suzuki,A conservative scheme for the relativistic Vlasov-Maxwell system.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#SuzukiS10,https://doi.org/10.1016/j.jcp.2009.11.001 +Yanheng Li,Stability and convergence analysis of a dynamics-based collective method for random sphere packing.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#LiJ13,https://doi.org/10.1016/j.jcp.2013.05.023 +Bernhard Seiwald,Optimization of energy confinement in the 1/ν regime for stellarators.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#SeiwaldKKKNTJ08,https://doi.org/10.1016/j.jcp.2008.02.026 +Pratik Donde,A multivariate quadrature based moment method for LES based modeling of supersonic combustion.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#DondeKR12,https://doi.org/10.1016/j.jcp.2012.04.031 +Benjamin Braconnier,An all-speed relaxation scheme for interface flows with surface tension.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#BraconnierN09,https://doi.org/10.1016/j.jcp.2009.04.046 +Yu-Wen Li,General local energy-preserving integrators for solving multi-symplectic Hamiltonian PDEs.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#LiW15a,https://doi.org/10.1016/j.jcp.2015.08.023 +Changpin Li,Finite difference methods with non-uniform meshes for nonlinear fractional differential equations.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#LiYC16,https://doi.org/10.1016/j.jcp.2016.04.039 +Y. Sun,Explicit formulations of gas-kinetic flux solver for simulation of incompressible and compressible viscous flows.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#Sun0TWY15,https://doi.org/10.1016/j.jcp.2015.07.060 +Nicolas Crouseilles,Hamiltonian splitting for the Vlasov-Maxwell equations.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#CrouseillesEF15,https://doi.org/10.1016/j.jcp.2014.11.029 +Li Liu,Nonuniform time-step Runge-Kutta discontinuous Galerkin method for Computational Aeroacoustics.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#LiuLH10,https://doi.org/10.1016/j.jcp.2010.05.028 +Yuto Miyatake,Numerical integration of the Ostrovsky equation based on its geometric structures.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#MiyatakeYM12,https://doi.org/10.1016/j.jcp.2012.02.027 +Ondrej Maxian,A continuous energy-based immersed boundary method for elastic shells.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#MaxianKS18,https://doi.org/10.1016/j.jcp.2018.05.045 +Stéphane Del Pino,An asymptotic preserving multidimensional ALE method for a system of two compressible flows coupled with friction.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#PinoLM18,https://doi.org/10.1016/j.jcp.2018.02.016 +Stephen A. Jordan,The spatial resolution properties of composite compact finite differencing.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#Jordan07,https://doi.org/10.1016/j.jcp.2006.06.026 +Markus Nordlund,Improved PISO algorithms for modeling density varying flow in conjugate fluid-porous domains.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#NordlundSKFG16,https://doi.org/10.1016/j.jcp.2015.11.035 +Babak Hejazialhosseini,High order finite volume methods on wavelet-adapted grids with local time-stepping on multicore architectures for the simulation of shock-bubble interactions.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#HejazialhosseiniRBK10,https://doi.org/10.1016/j.jcp.2010.07.021 +Erik Bernsen,The application of Jacobian-free Newton-Krylov methods to reduce the spin-up time of ocean general circulation models.,2010,229,J. Comput. Physics,21,db/journals/jcphy/jcphy229.html#BernsenDTW10,https://doi.org/10.1016/j.jcp.2010.07.015 +Guoqiao You,An Eulerian method for computing the coherent ergodic partition of continuous dynamical systems.,2014,264,J. Comput. Physics,,db/journals/jcphy/jcphy264.html#YouL14a,https://doi.org/10.1016/j.jcp.2014.01.034 +L. Kedward,Efficient and exact mesh deformation using multiscale RBF interpolation.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#KedwardAR17,https://doi.org/10.1016/j.jcp.2017.05.042 +E. J. Brambley,Optimized finite-difference (DRP) schemes perform poorly for decaying or growing oscillations.,2016,324,J. Comput. Physics,,db/journals/jcphy/jcphy324.html#Brambley16,https://doi.org/10.1016/j.jcp.2016.08.003 +J. D. Cooper,Stable perfectly-matched-layer boundary conditions for finite-difference time-domain simulation of acoustic waves in piezoelectric crystals.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#CooperVIHC13,https://doi.org/10.1016/j.jcp.2013.07.019 +Nicholas K. Allsopp,Molecular dynamics beyonds the limits: Massive scaling on 72 racks of a BlueGene/P and supercooled glass dynamics of a 1 billion particles system.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#AllsoppRF12,https://doi.org/10.1016/j.jcp.2012.01.019 +David Amsallem,Real-time solution of linear computational problems using databases of parametric reduced-order models with arbitrary underlying meshes.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#AmsallemTF16,https://doi.org/10.1016/j.jcp.2016.08.025 +Xiaofeng Yang 0003,Analytic relations for reconstructing piecewise linear interfaces in triangular and tetrahedral grids.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#YangJ06,https://doi.org/10.1016/j.jcp.2005.09.002 +Eric J. Parish,A paradigm for data-driven predictive modeling using field inversion and machine learning.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#ParishD16,https://doi.org/10.1016/j.jcp.2015.11.012 +Mohammad Mirzadeh,A second-order discretization of the nonlinear Poisson-Boltzmann equation over irregular geometries using non-graded adaptive Cartesian grids.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#MirzadehTG11,https://doi.org/10.1016/j.jcp.2010.12.008 +Songze Chen,Gas-kinetic scheme with discontinuous derivative for low speed flow computation.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#ChenJLC11,https://doi.org/10.1016/j.jcp.2010.12.003 +Yannis Kallinderis,A priori mesh quality metrics for three-dimensional hybrid grids.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#KallinderisF15,https://doi.org/10.1016/j.jcp.2014.09.036 +C. D. Bohn,Validation of a lattice Boltzmann model for gas-solid reactions with experiments.,2012,231,J. Comput. Physics,16,db/journals/jcphy/jcphy231.html#BohnSDM12,https://doi.org/10.1016/j.jcp.2012.04.021 +Mohamed El-Gamel,A comparison between the Sinc-Galerkin and the modified decomposition methods for solving two-point boundary-value problems.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#El-Gamel07,https://doi.org/10.1016/j.jcp.2006.09.025 +Mark Owkes,Importance of curvature evaluation scale for predictive simulations of dynamic gas-liquid interfaces.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#OwkesCSC18,https://doi.org/10.1016/j.jcp.2018.03.018 +William T. Taitano,An equilibrium-preserving discretization for the nonlinear Rosenbluth-Fokker-Planck operator in arbitrary multi-dimensional geometry.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#TaitanoCS17,https://doi.org/10.1016/j.jcp.2017.03.032 +Dragan Vidovic,Piecewise linear transformation in diffusive flux discretization.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#VidovicDPP15,https://doi.org/10.1016/j.jcp.2014.11.024 +Rémi Abgrall,Construction of very high order residual distribution schemes for steady inviscid flow problems on hybrid unstructured meshes.,2011,230,J. Comput. Physics,11,db/journals/jcphy/jcphy230.html#AbgrallLR11,https://doi.org/10.1016/j.jcp.2010.07.035 +Yajun An,Uniform dispersion reduction schemes for the one dimensional wave equation in isotropic media.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#An17,https://doi.org/10.1016/j.jcp.2017.04.015 +Qianyi Chen,Improved CE/SE scheme with particle level set method for numerical simulation of spall fracture due to high-velocity impact.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#ChenWL10,https://doi.org/10.1016/j.jcp.2010.06.033 +Daniel R. Reynolds,Self-consistent solution of cosmological radiation-hydrodynamics and chemical ionization.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#ReynoldsHPN09,https://doi.org/10.1016/j.jcp.2009.06.006 +Silvia Falletta,The panel-clustering method for the wave equation in two spatial dimensions.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#FallettaS16,https://doi.org/10.1016/j.jcp.2015.10.033 +Marianne M. Francois,A balanced-force algorithm for continuous and sharp interfacial surface tension models within a volume tracking framework.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#FrancoisCDKSW06,https://doi.org/10.1016/j.jcp.2005.08.004 +Jia Li,A generalized polynomial chaos based ensemble Kalman filter with high accuracy.,2009,228,J. Comput. Physics,15,db/journals/jcphy/jcphy228.html#LiX09,https://doi.org/10.1016/j.jcp.2009.04.029 +Roland Schöbi,Uncertainty propagation of p-boxes using sparse polynomial chaos expansions.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#SchobiS17,https://doi.org/10.1016/j.jcp.2017.03.021 +Sean Lovett,Adaptive mesh refinement for compressible thermal flow in porous media.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#LovettNM15,https://doi.org/10.1016/j.jcp.2014.09.017 +Phani Motamarri,Higher-order adaptive finite-element methods for orbital-free density functional theory.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#MotamarriIKG12,https://doi.org/10.1016/j.jcp.2012.04.036 +Amaury Johnen,Geometrical validity of curvilinear pyramidal finite elements.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#JohnenG15,https://doi.org/10.1016/j.jcp.2015.06.033 +Melissa R. Adkins,Geodesic curvature driven surface microdomain formation.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#AdkinsZ17,https://doi.org/10.1016/j.jcp.2017.05.029 +D. G. E. Grigoriadis,Immersed boundary method for the MHD flows of liquid metals.,2009,228,J. Comput. Physics,3,db/journals/jcphy/jcphy228.html#GrigoriadisKV09,https://doi.org/10.1016/j.jcp.2008.10.017 +Jessica Bosch,Fast solution of Cahn-Hilliard variational inequalities using implicit time discretization and finite elements.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#BoschSB14,https://doi.org/10.1016/j.jcp.2013.12.053 +C. Leland Ellison,"Comment on ""Symplectic integration of magnetic systems"": A proof that the Boris algorithm is not variational.",2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#EllisonBQ15,https://doi.org/10.1016/j.jcp.2015.09.007 +Kirankumar R. Hiremath,Numerical solution of nonlocal hydrodynamic Drude model for arbitrary shaped nano-plasmonic structures using Nédélec finite elements.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#HiremathZS12,https://doi.org/10.1016/j.jcp.2012.05.013 +Andrea Franceschini,A novel Lagrangian approach for the stable numerical simulation of fault and fracture mechanics.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#FranceschiniFJT16,https://doi.org/10.1016/j.jcp.2016.03.032 +Mike Guidry,Algebraic stabilization of explicit numerical integration for extremely stiff reaction networks.,2012,231,J. Comput. Physics,16,db/journals/jcphy/jcphy231.html#Guidry12,https://doi.org/10.1016/j.jcp.2012.04.026 +Chang-Jun Zheng,Free vibration analysis of elastic structures submerged in an infinite or semi-infinite fluid domain by means of a coupled FE-BE solver.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#ZhengBZGC18,https://doi.org/10.1016/j.jcp.2018.01.018 +Yohei Morinishi,Skew-symmetric form of convective terms and fully conservative finite difference schemes for variable density low-Mach number flows.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#Morinishi10,https://doi.org/10.1016/j.jcp.2009.09.021 +Yoshihiro Otani,A periodic FMM for Maxwell's equations in 3D and its applications to problems related to photonic crystals.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#OtaniN08,https://doi.org/10.1016/j.jcp.2008.01.029 +Vu Thai Luan,Preconditioned implicit-exponential integrators (IMEXP) for stiff PDEs.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#LuanTR17,https://doi.org/10.1016/j.jcp.2017.01.054 +Seungjoon Lee,A resilient and efficient CFD framework: Statistical learning tools for multi-fidelity and heterogeneous information fusion.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#LeeKK17,https://doi.org/10.1016/j.jcp.2017.05.021 +Kris Van den Abeele,A stability analysis for the spectral volume method on tetrahedral grids.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#AbeeleGPL09,https://doi.org/10.1016/j.jcp.2008.10.011 +Mark Owkes,A mesh-decoupled height function method for computing interface curvature.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#OwkesD15,https://doi.org/10.1016/j.jcp.2014.10.036 +Andrei Alexandru,Multi-mass solvers for lattice QCD on GPUs.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#AlexandruPGL12,https://doi.org/10.1016/j.jcp.2011.11.003 +Michel Bergmann,Modeling and simulation of fish-like swimming.,2011,230,J. Comput. Physics,2,db/journals/jcphy/jcphy230.html#BergmannI11,https://doi.org/10.1016/j.jcp.2010.09.017 +John N. Shadid,Towards a scalable fully-implicit fully-coupled resistive MHD formulation with stabilized FE methods.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#ShadidPBCLT10,https://doi.org/10.1016/j.jcp.2010.06.018 +HongGuang Sun,A fast semi-discrete Kansa method to solve the two-dimensional spatiotemporal fractional diffusion equation.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#SunLZPG17,https://doi.org/10.1016/j.jcp.2017.05.012 +Harmen van der Ven,An adaptive multitime multigrid algorithm for time-periodic flow simulations.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#Ven08,https://doi.org/10.1016/j.jcp.2008.01.039 +Lluís Jofre,Parallel load balancing strategy for Volume-of-Fluid methods on 3-D unstructured meshes.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#JofreBLO15,https://doi.org/10.1016/j.jcp.2014.11.009 +Magnus Svärd,A stable high-order finite difference scheme for the compressible Navier-Stokes equations: No-slip wall boundary conditions.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#SvardN08,https://doi.org/10.1016/j.jcp.2007.12.028 +Feng Xiao 0001,Unified formulation for compressible and incompressible flows by using multi-integrated moments II: Multi-dimensional version for compressible and incompressible flows.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#XiaoAI06,https://doi.org/10.1016/j.jcp.2005.08.002 +Thomas Wick,Coupling fluid-structure interaction with phase-field fracture.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#Wick16,https://doi.org/10.1016/j.jcp.2016.09.024 +Kui Du,A composite preconditioner for the electromagnetic scattering from a large cavity.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#Du11a,https://doi.org/10.1016/j.jcp.2011.07.011 +Lukas Osterloh,"Corrigendum to ""Regularized inversion of microphysical atmospheric particle parameters: Theory and application"" [J. Comput. Phys. 237 (2013) 79-94].",2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#OsterlohBNN14,https://doi.org/10.1016/j.jcp.2014.07.041 +Grégoire Allaire,Damage and fracture evolution in brittle materials by shape optimization methods.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#AllaireJG11,https://doi.org/10.1016/j.jcp.2011.03.024 +Amina Younsi,On anisotropy function in crystal growth simulations using Lattice Boltzmann equation.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#YounsiC16,https://doi.org/10.1016/j.jcp.2016.08.014 +Javier Murillo,Augmented versions of the HLL and HLLC Riemann solvers including source terms in one and two dimensions for shallow flow applications.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#MurilloG12a,https://doi.org/10.1016/j.jcp.2012.06.031 +Xin Lv,A novel coupled level set and volume of fluid method for sharp interface capturing on 3D tetrahedral grids.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#LvZZR10,https://doi.org/10.1016/j.jcp.2009.12.005 +Andreas Lemmer,Parallel domain decomposition method with non-blocking communication for flow through porous media.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#LemmerH15,https://doi.org/10.1016/j.jcp.2014.08.032 +Daniel Simmons,A hybrid Boundary Element Unstructured Transmission-line (BEUT) method for accurate 2D electromagnetic simulation.,2016,324,J. Comput. Physics,,db/journals/jcphy/jcphy324.html#SimmonsCS16,https://doi.org/10.1016/j.jcp.2016.08.002 +Jeffrey J. Heys,An alternative least-squares formulation of the Navier-Stokes equations with improved mass conservation.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#HeysLMM07,https://doi.org/10.1016/j.jcp.2007.05.005 +Alfredo Raúl Carella,Least-Squares Spectral Method for the solution of a fractional advection-dispersion equation.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#CarellaD13,https://doi.org/10.1016/j.jcp.2012.04.050 +Edgar Olbrant,Asymptotic derivation and numerical investigation of time-dependent simplified PN equations.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#OlbrantLFS13,https://doi.org/10.1016/j.jcp.2012.10.055 +Ido Schaefer,Semi-global approach for propagation of the time-dependent Schrödinger equation for time-dependent and nonlinear problems.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#SchaeferTK17,https://doi.org/10.1016/j.jcp.2017.04.017 +Ping Lin,An energy law preserving C0 finite element scheme for simulating the kinematic effects in liquid crystal dynamics.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#LinLZ07,https://doi.org/10.1016/j.jcp.2007.09.005 +I. Yu. Gejadze,On gauss-verifiability of optimal solutions in variational data assimilation problems with nonlinear dynamics.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#GejadzeS15,https://doi.org/10.1016/j.jcp.2014.09.032 +Jeffrey Willert,A comparison of acceleration methods for solving the neutron transport k-eigenvalue problem.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#WillertPK14,https://doi.org/10.1016/j.jcp.2014.06.044 +Pedro Gonnet,Using piecewise polynomials for faster potential function evaluation.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#Gonnet10,https://doi.org/10.1016/j.jcp.2009.09.028 +Alfonso Barbas,Development of a Godunov method for Maxwell's equations with Adaptive Mesh Refinement.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#BarbasV15,https://doi.org/10.1016/j.jcp.2015.07.048 +Shizhao Wang,An immersed boundary method based on discrete stream function formulation for two- and three-dimensional incompressible flows.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#WangZ11,https://doi.org/10.1016/j.jcp.2011.01.045 +Andrea Villa,An efficient algorithm for corona simulation with complex chemical models.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#VillaBGLM17,https://doi.org/10.1016/j.jcp.2017.02.038 +Terrence S. Tricco,Constrained hyperbolic divergence cleaning for smoothed particle magnetohydrodynamics.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#TriccoP12,https://doi.org/10.1016/j.jcp.2012.06.039 +Karl Glasner,Improving the accuracy of convexity splitting methods for gradient flow equations.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#GlasnerO16,https://doi.org/10.1016/j.jcp.2016.03.042 +Kai Gao,An improved rotated staggered-grid finite-difference method with fourth-order temporal accuracy for elastic-wave modeling in anisotropic media.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#GaoH17,https://doi.org/10.1016/j.jcp.2017.08.053 +Xiongwei Cui,A hybrid wavelet-based adaptive immersed boundary finite-difference lattice Boltzmann method for two-dimensional fluid-structure interaction.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#CuiYWL17,https://doi.org/10.1016/j.jcp.2016.12.019 +Kim-Claire Le Thanh,A volume of fluid method for a two-dimensional plasma expansion problem.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#ThanhPV07,https://doi.org/10.1016/j.jcp.2007.02.031 +Mitsuru Honda,Dynamic transport simulation code including plasma rotation and radial electric field.,2008,227,J. Comput. Physics,5,db/journals/jcphy/jcphy227.html#HondaF08,https://doi.org/10.1016/j.jcp.2007.11.017 +Pengde Wang,An implicit midpoint difference scheme for the fractional Ginzburg-Landau equation.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#WangH16,https://doi.org/10.1016/j.jcp.2016.02.018 +Walter Pötz,Single-cone finite difference scheme for the (2+1)D Dirac von Neumann equation.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#PotzS17,https://doi.org/10.1016/j.jcp.2017.07.037 +Jeroen Bédorf,A sparse octree gravitational N-body code that runs entirely on the GPU processor.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#BedorfGZ12,https://doi.org/10.1016/j.jcp.2011.12.024 +Ben Adcock,Parameter selection and numerical approximation properties of Fourier extensions from fixed data.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#AdcockR14,https://doi.org/10.1016/j.jcp.2014.05.036 +Razvan Stefanescu,POD/DEIM reduced-order strategies for efficient four dimensional variational data assimilation.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#StefanescuSN15,https://doi.org/10.1016/j.jcp.2015.04.030 +C. Ji,A novel iterative direct-forcing immersed boundary method and its finite volume applications.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#JiMW12,https://doi.org/10.1016/j.jcp.2011.11.010 +Yang Liu,Time-space domain dispersion-relation-based finite-difference method with arbitrary even-order accuracy for the 2D acoustic wave equation.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#LiuS13,https://doi.org/10.1016/j.jcp.2012.08.025 +Bao Wang,Second order method for solving 3D elasticity equations with complex interfaces.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#WangXW15,https://doi.org/10.1016/j.jcp.2015.03.053 +Jiaxiang Cai,Local energy-preserving and momentum-preserving algorithms for coupled nonlinear Schrödinger system.,2013,239,J. Comput. Physics,,db/journals/jcphy/jcphy239.html#CaiWL13,https://doi.org/10.1016/j.jcp.2012.12.036 +Oriano Bottauscio,A multiscale approach to the analysis of magnetic grid shields and its validation.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#BottauscioCMRZ07,https://doi.org/10.1016/j.jcp.2007.09.010 +Cheng Wang,Robust high order discontinuous Galerkin schemes for two-dimensional gaseous detonations.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#WangZSN12,https://doi.org/10.1016/j.jcp.2011.10.002 +Shingyu Leung,A grid based particle method for solving partial differential equations on evolving surfaces and modeling high order geometrical motion.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#LeungLZ11,https://doi.org/10.1016/j.jcp.2010.12.029 +P. Surya Mohan,Variable order spherical harmonic expansion scheme for the radiative transport equation using finite elements.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#MohanTSPA11,https://doi.org/10.1016/j.jcp.2011.06.004 +Olav Aursjø,An improved lattice Boltzmann method for simulating advective-diffusive processes in fluids.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#AursjoJVH17,https://doi.org/10.1016/j.jcp.2016.12.014 +Xiaomin Pan,Fully decoupled monolithic projection method for natural convection problems.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#PanKLC17,https://doi.org/10.1016/j.jcp.2017.01.022 +Sergio Pirozzoli,Generalized characteristic relaxation boundary conditions for unsteady compressible flow simulations.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#PirozzoliC13,https://doi.org/10.1016/j.jcp.2013.04.021 +Ivan G. Graham,Quasi-Monte Carlo methods for elliptic PDEs with random coefficients and applications.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#GrahamKNSS11,https://doi.org/10.1016/j.jcp.2011.01.023 +Hui Xu 0005,Sensitivity analysis and determination of free relaxation parameters for the weakly-compressible MRT-LBM schemes.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#XuMS12,https://doi.org/10.1016/j.jcp.2012.07.005 +Saswati Dana,Physically consistent simulation of mesoscale chemical kinetics: The non-negative FIS-α method.,2011,230,J. Comput. Physics,24,db/journals/jcphy/jcphy230.html#DanaR11,https://doi.org/10.1016/j.jcp.2011.07.032 +Dake Chen,El Niño prediction and predictability.,2008,227,J. Comput. Physics,7,db/journals/jcphy/jcphy227.html#ChenC08,https://doi.org/10.1016/j.jcp.2007.05.014 +Yasunori Watanabe,Free-surface flows under impacting droplets.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#WatanabeSI08,https://doi.org/10.1016/j.jcp.2007.10.020 +Per Pettersson,A stochastic Galerkin method for the Euler equations with Roe variable transformation.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#PetterssonIN14,https://doi.org/10.1016/j.jcp.2013.10.011 +Alexey I. Neelov,An efficient numerical quadrature for the calculation of the potential energy of wavefunctions expressed in the Daubechies wavelet basis.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#NeelovG06,https://doi.org/10.1016/j.jcp.2006.01.003 +David C. Del Rey Fernández,Corner-corrected diagonal-norm summation-by-parts operators for the first derivative with increased order of accuracy.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#FernandezBZ17,https://doi.org/10.1016/j.jcp.2016.10.051 +Martin Almquist,High-fidelity numerical solution of the time-dependent Dirac equation.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#AlmquistME14,https://doi.org/10.1016/j.jcp.2013.12.038 +Ares Rosakis,Dedication.,2008,227,J. Comput. Physics,21,db/journals/jcphy/jcphy227.html#RosakisP08,https://doi.org/10.1016/j.jcp.2008.08.006 +Olivier Coulaud,High performance BLAS formulation of the multipole-to-local operator in the fast multipole method.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#CoulaudFR08,https://doi.org/10.1016/j.jcp.2007.09.027 +Philsu Kim,An error embedded method based on generalized Chebyshev polynomials.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#KimKJB16,https://doi.org/10.1016/j.jcp.2015.11.021 +Jean-David Benamou,Numerical solution of the Optimal Transportation problem using the Monge-Ampère equation.,2014,260,J. Comput. Physics,,db/journals/jcphy/jcphy260.html#BenamouFO14,https://doi.org/10.1016/j.jcp.2013.12.015 +Lucas O. Müller,Well-balanced high-order numerical schemes for one-dimensional blood flow in vessels with varying mechanical properties.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#MullerPT13,https://doi.org/10.1016/j.jcp.2013.01.050 +Marcos Lage,Flows with suspended and floating particles.,2011,230,J. Comput. Physics,20,db/journals/jcphy/jcphy230.html#LageLC11,https://doi.org/10.1016/j.jcp.2011.06.031 +Lin Zheng,Kinetic theory based lattice Boltzmann equation with viscous dissipation and pressure work for axisymmetric thermal flows.,2010,229,J. Comput. Physics,16,db/journals/jcphy/jcphy229.html#ZhengGSZ10,https://doi.org/10.1016/j.jcp.2010.04.026 +Dale B. Haidvogel,Ocean forecasting in terrain-following coordinates: Formulation and skill assessment of the Regional Ocean Modeling System.,2008,227,J. Comput. Physics,7,db/journals/jcphy/jcphy227.html#HaidvogelABCCLFGHLLMMMPSSSWW08,https://doi.org/10.1016/j.jcp.2007.06.016 +A. Berkenbos,Accurate method for including solid-fluid boundary interactions in mesoscopic model fluids.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#BerkenbosL08,https://doi.org/10.1016/j.jcp.2008.01.011 +S. A. Tokareva,A flux splitting method for the Baer-Nunziato equations of compressible two-phase flow.,2016,323,J. Comput. Physics,,db/journals/jcphy/jcphy323.html#TokarevaT16,https://doi.org/10.1016/j.jcp.2016.07.019 +Pierre Terrier,Cluster dynamics modelling of materials: A new hybrid deterministic/stochastic coupling approach.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#TerrierAJAS17,https://doi.org/10.1016/j.jcp.2017.08.015 +Brendan S. Mascarenhas,Coupling p-multigrid to geometric multigrid for discontinuous Galerkin formulations of the convection-diffusion equation.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#MascarenhasHA10,https://doi.org/10.1016/j.jcp.2010.01.020 +Changqiu Jin,An adaptive grid method for two-dimensional viscous flows.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#JinX06,https://doi.org/10.1016/j.jcp.2006.01.041 +V. Vaibhav,Transparent boundary condition for numerical modeling of intense laser-molecule interaction.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#Vaibhav15,https://doi.org/10.1016/j.jcp.2014.12.005 +Pavel P. Popov,Implicit and explicit schemes for mass consistency preservation in hybrid particle/finite-volume algorithms for turbulent reactive flows.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#PopovP14,https://doi.org/10.1016/j.jcp.2013.09.005 +Rodney O. Fox,Higher-order quadrature-based moment methods for kinetic equations.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#Fox09,https://doi.org/10.1016/j.jcp.2009.07.018 +Cesare Corrado,Identification of weakly coupled multiphysics problems. Application to the inverse problem of electrocardiography.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#CorradoGM15,https://doi.org/10.1016/j.jcp.2014.11.041 +Hassan Errami,Detection of Hopf bifurcations in chemical reaction networks using convex coordinates.,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#ErramiEGSS015,https://doi.org/10.1016/j.jcp.2015.02.050 +Dmitriy Y. Anistratov,Iterative stability analysis of spatial domain decomposition based on block Jacobi algorithm for the diamond-difference scheme.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#AnistratovA15,https://doi.org/10.1016/j.jcp.2015.05.033 +Travis C. Fisher,Discretely conservative finite-difference formulations for nonlinear conservation laws in split form: Theory and boundary conditions.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#FisherCNYS13,https://doi.org/10.1016/j.jcp.2012.09.026 +Ryuichi S. Nagaosa,A numerical modelling of gas exchange mechanisms between air and turbulent water with an aquarium chemical reaction.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#Nagaosa14,https://doi.org/10.1016/j.jcp.2013.08.027 +F. Daude,A Finite-Volume approach for compressible single- and two-phase flows in flexible pipelines with fluid-structure interaction.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#DaudeG18,https://doi.org/10.1016/j.jcp.2018.01.055 +Hongqiao Wang,Gaussian process surrogates for failure detection: A Bayesian experimental design approach.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#WangLL16,https://doi.org/10.1016/j.jcp.2016.02.053 +S. Kacem,Full multi grid method for electric field computation in point-to-plane streamer discharge in air at atmospheric pressure.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#KacemEDRYC12,https://doi.org/10.1016/j.jcp.2011.08.003 +Stefan Hellander,Flexible single molecule simulation of reaction-diffusion processes.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#HellanderL11,https://doi.org/10.1016/j.jcp.2011.02.020 +Vasileios Maroulas,Improved particle filters for multi-target tracking.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#MaroulasS12,https://doi.org/10.1016/j.jcp.2011.09.023 +Masayuki Yano,An optimization-based framework for anisotropic simplex mesh adaptation.,2012,231,J. Comput. Physics,22,db/journals/jcphy/jcphy231.html#YanoD12,https://doi.org/10.1016/j.jcp.2012.06.040 +Ahmad Golbabai,Computing a numerical solution of two dimensional non-linear Schrödinger equation on complexly shaped domains by RBF based differential quadrature method.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#GolbabaiN16,https://doi.org/10.1016/j.jcp.2016.07.003 +Lajos Szalmás,Variance-reduced DSMC for binary gas flows as defined by the McCormack kinetic model.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#Szalmas12,https://doi.org/10.1016/j.jcp.2012.01.016 +Enrique Domingo Fernández-Nieto,Efficient numerical schemes for viscoplastic avalanches. Part 2: The 2D case.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#Fernandez-Nieto18,https://doi.org/10.1016/j.jcp.2017.09.054 +Guoyin Wang,Dual-scale Galerkin methods for Darcy flow.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#WangSNKRCM18,https://doi.org/10.1016/j.jcp.2017.10.047 +Qingcheng Yang,Multiresolution molecular mechanics: Surface effects in nanoscale materials.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#YangT17,https://doi.org/10.1016/j.jcp.2017.01.058 +Guillaume Houzeaux,A massively parallel fractional step solver for incompressible flows.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#HouzeauxVAC09,https://doi.org/10.1016/j.jcp.2009.05.019 +Peter Buchak,Surface-tension-driven Stokes flow: A numerical method based on conformal geometry.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#BuchakC16,https://doi.org/10.1016/j.jcp.2016.04.044 +Shanqin Chen,Krylov implicit integration factor methods for spatial discretization on high dimensional unstructured meshes: Application to discontinuous Galerkin methods.,2011,230,J. Comput. Physics,11,db/journals/jcphy/jcphy230.html#ChenZ11,https://doi.org/10.1016/j.jcp.2011.01.010 +Wensheng Tang,Discontinuous Galerkin methods for Hamiltonian ODEs and PDEs.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#TangSC17,https://doi.org/10.1016/j.jcp.2016.11.023 +Eduardo Corona,Boundary integral equation analysis for suspension of spheres in Stokes flow.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#CoronaV18,https://doi.org/10.1016/j.jcp.2018.02.017 +Matteo Cusini,Constrained pressure residual multiscale (CPR-MS) method for fully implicit simulation of multiphase flow in porous media.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#CusiniLNH15,https://doi.org/10.1016/j.jcp.2015.07.019 +M. Dudzinski,Well-balanced bicharacteristic-based scheme for multilayer shallow water flows including wet/dry fronts.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#DudzinskiL13,https://doi.org/10.1016/j.jcp.2012.10.037 +S. Hess,How to improve the diagnosis of kinetic energy in 8*f PIC codes.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#HessM09,https://doi.org/10.1016/j.jcp.2009.05.035 +Zhijun Tan,An immersed interface method for Stokes flows with fixed/moving interfaces and rigid boundaries.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#TanLK09,https://doi.org/10.1016/j.jcp.2009.06.005 +Fausto Cavalli,3D simulations of early blood vessel formation.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#CavalliGNSVS07,https://doi.org/10.1016/j.jcp.2007.03.030 +Chungang Chen,Global shallow water models based on multi-moment constrained finite volume method and three quasi-uniform spherical grids.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#ChenLSX14,https://doi.org/10.1016/j.jcp.2013.10.026 +Sung Don Kim,Robust HLLC Riemann solver with weighted average flux scheme for strong shock.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#KimLLJ09,https://doi.org/10.1016/j.jcp.2009.07.006 +Chaopeng Shen,Adaptive mesh refinement based on high order finite difference WENO scheme for multi-scale simulations.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#ShenQC11,https://doi.org/10.1016/j.jcp.2011.02.008 +Qing Xie,A spectral radius scaling semi-implicit iterative time stepping method for reactive flow simulations with detailed chemistry.,2018,368,J. Comput. Physics,,db/journals/jcphy/jcphy368.html#XieXR18,https://doi.org/10.1016/j.jcp.2018.04.042 +Prabir Daripa,Modeling and simulation of surfactant-polymer flooding using a new hybrid method.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#DaripaD17,https://doi.org/10.1016/j.jcp.2017.01.038 +R. E. Denton,Symmetry boundary conditions.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#DentonH09,https://doi.org/10.1016/j.jcp.2009.03.033 +Nitin Agarwal,A stochastic Lagrangian approach for geometrical uncertainties in electrostatics.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#AgarwalA07,https://doi.org/10.1016/j.jcp.2007.03.026 +Jianming Yang,A non-iterative direct forcing immersed boundary method for strongly-coupled fluid-solid interactions.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#YangS15,https://doi.org/10.1016/j.jcp.2015.04.040 +Nathaniel R. Morgan,3D level set methods for evolving fronts on tetrahedral meshes with adaptive mesh refinement.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#MorganW17,https://doi.org/10.1016/j.jcp.2017.02.030 +Tapan K. Sengupta,A new combined stable and dispersion relation preserving compact scheme for non-periodic problems.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#SenguptaLV09,https://doi.org/10.1016/j.jcp.2009.01.003 +Christiaan M. Klaij,Pseudo-time stepping methods for space-time discontinuous Galerkin discretizations of the compressible Navier-Stokes equations.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#KlaijVV06,https://doi.org/10.1016/j.jcp.2006.04.003 +Damrongsak Wirasaet,Artificial boundary layers in discontinuous Galerkin solutions to shallow water equations in channels.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#WirasaetBMKWD15,https://doi.org/10.1016/j.jcp.2015.07.015 +Drew P. Higginson,A full-angle Monte-Carlo scattering technique including cumulative and single-event Rutherford scattering in plasmas.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#Higginson17,https://doi.org/10.1016/j.jcp.2017.08.016 +Jens Niegemann,Efficient low-storage Runge-Kutta schemes with optimized stability regions.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#NiegemannDB12,https://doi.org/10.1016/j.jcp.2011.09.003 +Dominik Göddeke,Energy efficiency vs. performance of the numerical solution of PDEs: An application study on a low-power ARM-based cluster.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#GoddekeKGRRPR13,https://doi.org/10.1016/j.jcp.2012.11.031 +Britton Chang,A deterministic photon free method to solve radiation transfer equations.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#Chang07a,https://doi.org/10.1016/j.jcp.2006.06.048 +Wei Cai,A new FFT-based algorithm to compute Born radii in the generalized Born theory of biomolecule solvation.,2008,227,J. Comput. Physics,24,db/journals/jcphy/jcphy227.html#CaiXB08,https://doi.org/10.1016/j.jcp.2008.08.015 +Kazufumi Ito,A domain decomposition solver for acoustic scattering by elastic objects in layered media.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#ItoQT08,https://doi.org/10.1016/j.jcp.2008.06.015 +Shiv Kumar Sambasivan,A cell-centered Lagrangian finite volume approach for computing elasto-plastic response of solids in cylindrical axisymmetric geometries.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#SambasivanSB13,https://doi.org/10.1016/j.jcp.2012.11.044 +Min Tang 0002,An asymptotic preserving method for strongly anisotropic diffusion equations based on field line integration.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#TangW17,https://doi.org/10.1016/j.jcp.2016.10.062 +M. Dieste,Random particle methods applied to broadband fan interaction noise.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#DiesteG12,https://doi.org/10.1016/j.jcp.2012.07.044 +Marco Caliari,A minimisation approach for computing the ground state of Gross-Pitaevskii systems.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#CaliariORT09,https://doi.org/10.1016/j.jcp.2008.09.018 +Ilias Bilionis,Multi-output local Gaussian process regression: Applications to uncertainty quantification.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#BilionisZ12,https://doi.org/10.1016/j.jcp.2012.04.047 +Salvador Izquierdo,Momentum transfer correction for macroscopic-gradient boundary conditions in lattice Boltzmann methods.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#IzquierdoF10,https://doi.org/10.1016/j.jcp.2009.11.036 +Bruno Blais,A conservative lattice Boltzmann model for the volume-averaged Navier-Stokes equations based on a novel collision operator.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#BlaisTVB15,https://doi.org/10.1016/j.jcp.2015.03.036 +Josefin Ahlkrona,A meshfree approach to non-Newtonian free surface ice flow: Application to the Haut Glacier d'Arolla.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#AhlkronaS17,https://doi.org/10.1016/j.jcp.2016.10.045 +Charbel Farhat,An ALE formulation of embedded boundary methods for tracking boundary layers in turbulent fluid-structure interaction problems.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#FarhatL14,https://doi.org/10.1016/j.jcp.2014.01.018 +Eric Johnsen,Preventing numerical errors generated by interface-capturing schemes in compressible multi-material flows.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#JohnsenH12,https://doi.org/10.1016/j.jcp.2012.04.048 +Y. Lin,Random number generators for large-scale parallel Monte Carlo simulations on FPGA.,2018,360,J. Comput. Physics,,db/journals/jcphy/jcphy360.html#LinWL18,https://doi.org/10.1016/j.jcp.2018.01.029 +Lulu Tian,A local discontinuous Galerkin method for the (non)-isothermal Navier-Stokes-Korteweg equations.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#TianXKV15,https://doi.org/10.1016/j.jcp.2015.04.025 +Gino I. Montecinos,Hyperbolic reformulation of a 1D viscoelastic blood flow model and ADER finite volume schemes.,2014,266,J. Comput. Physics,,db/journals/jcphy/jcphy266.html#MontecinosMT14,https://doi.org/10.1016/j.jcp.2014.02.013 +Tobias Kempe,An improved immersed boundary method with direct forcing for the simulation of particle laden flows.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#KempeF12,https://doi.org/10.1016/j.jcp.2012.01.021 +Abtin Rahimian,Boundary integral method for the flow of vesicles with viscosity contrast in three dimensions.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#RahimianVZB15,https://doi.org/10.1016/j.jcp.2015.06.017 +T. Allen,A deep non-hydrostatic compressible atmospheric model on a Yin-Yang grid.,2016,319,J. Comput. Physics,,db/journals/jcphy/jcphy319.html#AllenZ16,https://doi.org/10.1016/j.jcp.2016.05.022 +Eugenia S. Bakunova,Optimal filtering of complex turbulent systems with memory depth through consistency constraints.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#BakunovaH13,https://doi.org/10.1016/j.jcp.2012.11.028 +éliane Bécache,Stable perfectly matched layers for a cold plasma in a strong background magnetic field.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#BecacheJK17,https://doi.org/10.1016/j.jcp.2017.03.051 +Maciej Balajewicz,Minimal subspace rotation on the Stiefel manifold for stabilization and enhancement of projection-based reduced order models for the compressible Navier-Stokes equations.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#BalajewiczTD16,https://doi.org/10.1016/j.jcp.2016.05.037 +J. Martín-Vaquero,Extrapolated stabilized explicit Runge-Kutta methods.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#Martin-VaqueroK16,https://doi.org/10.1016/j.jcp.2016.08.042 +Pat Plunkett,Spatially adaptive stochastic methods for fluid-structure interactions subject to thermal fluctuations in domains with complex geometries.,2014,277,J. Comput. Physics,,db/journals/jcphy/jcphy277.html#PlunkettHSA14,https://doi.org/10.1016/j.jcp.2014.07.051 +Hiroaki Nishikawa,Hyperbolic advection-diffusion schemes for high-Reynolds-number boundary-layer problems.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#NishikawaL18,https://doi.org/10.1016/j.jcp.2017.09.039 +Olivier Le Métayer,A numerical scheme for the Green-Naghdi model.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#MetayerGH10,https://doi.org/10.1016/j.jcp.2009.11.021 +Wenxiao Pan,Smoothed particle hydrodynamics continuous boundary force method for Navier-Stokes equations subject to a Robin boundary condition.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#PanBT14,https://doi.org/10.1016/j.jcp.2013.12.014 +Dexuan Xie,A nonlocal modified Poisson-Boltzmann equation and finite element solver for computing electrostatics of biomolecules.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#XieJ16,https://doi.org/10.1016/j.jcp.2016.06.028 +Lawrence E. Kidder,SpECTRE: A task-based discontinuous Galerkin code for relativistic astrophysics.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#KidderFFSTBDDHL17,https://doi.org/10.1016/j.jcp.2016.12.059 +Michael J. Schmidt,A Kernel-based Lagrangian method for imperfectly-mixed chemical reactions.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#SchmidtPB17,https://doi.org/10.1016/j.jcp.2017.02.012 +Xuehua Yang,Orthogonal spline collocation method for the two-dimensional fractional sub-diffusion equation.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#YangZX14,https://doi.org/10.1016/j.jcp.2013.09.016 +Nail A. Gumerov,Fast multipole methods on graphics processors.,2008,227,J. Comput. Physics,18,db/journals/jcphy/jcphy227.html#GumerovD08,https://doi.org/10.1016/j.jcp.2008.05.023 +Jérôme Fontane,The HyperCASL algorithm: A new approach to the numerical simulation of geophysical flows.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#FontaneD09,https://doi.org/10.1016/j.jcp.2009.05.025 +Ramon Planas,Approximation of the inductionless MHD problem using a stabilized finite element method.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#PlanasBC11,https://doi.org/10.1016/j.jcp.2010.12.046 +Emmanuel Audusse,Conservative discretization of Coriolis force in a finite volume framework.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#AudusseKO09,https://doi.org/10.1016/j.jcp.2009.01.004 +Rahul Kumar,One-sided finite-difference approximations suitable for use with Richardson extrapolation.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#KumarB06,https://doi.org/10.1016/j.jcp.2006.05.035 +Hui Zheng,A meshfree local RBF collocation method for anti-plane transverse elastic wave propagation analysis in 2D phononic crystals.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#ZhengZWSS16,https://doi.org/10.1016/j.jcp.2015.10.020 +P. Young,A high-order Nyström discretization scheme for boundary integral equations defined on rotationally symmetric surfaces.,2012,231,J. Comput. Physics,11,db/journals/jcphy/jcphy231.html#YoungHM12,https://doi.org/10.1016/j.jcp.2012.02.008 +Zhijun Shen,Behavior of viscous solutions in Lagrangian formulation.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#ShenYL10,https://doi.org/10.1016/j.jcp.2010.02.020 +Zhen-huan Teng,Exact boundary conditions for the initial value problem of convex conservation laws.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#Teng10,https://doi.org/10.1016/j.jcp.2010.01.028 +David Kay,A multigrid finite element solver for the Cahn-Hilliard equation.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#KayW06,https://doi.org/10.1016/j.jcp.2005.07.004 +Abdon Atangana,On the stability and convergence of the time-fractional variable order telegraph equation.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#Atangana15,https://doi.org/10.1016/j.jcp.2014.12.043 +J. López,A new volume conservation enforcement method for PLIC reconstruction in general convex grids.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#LopezHGF16,https://doi.org/10.1016/j.jcp.2016.04.018 +Thorsten Hohage,Fast numerical solution of the electromagnetic medium scattering problem and applications to the inverse problem.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#Hohage06,https://doi.org/10.1016/j.jcp.2005.09.025 +Xiang An,A fast algorithm based on partial basic solution vectors domain decomposition method for scattering analysis of electrically large cylinders.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#AnL06,https://doi.org/10.1016/j.jcp.2006.07.002 +A. Chaudhuri,Explicit discontinuous spectral element method with entropy generation based artificial viscosity for shocked viscous flows.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#ChaudhuriJDAM17,https://doi.org/10.1016/j.jcp.2016.11.042 +Jinjie Liu,Generalization of the FDTD algorithm for simulations of hydrodynamic nonlinear Drude model.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#LiuBZZHKM10,https://doi.org/10.1016/j.jcp.2010.04.016 +Yunsic Shim,Hybrid asynchronous algorithm for parallel kinetic Monte Carlo simulations of thin film growth.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#ShimA06,https://doi.org/10.1016/j.jcp.2005.07.005 +Marzia Bisi,Numerical studies of a granular gas in a host medium.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#BisiRS12,https://doi.org/10.1016/j.jcp.2011.10.010 +Tsung-Ming Huang,Computing the full spectrum of large sparse palindromic quadratic eigenvalue problems arising from surface Green's function calculations.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#HuangLTC18,https://doi.org/10.1016/j.jcp.2017.12.011 +Christian Contarino,Junction-Generalized Riemann Problem for stiff hyperbolic balance laws in networks: An implicit solver and ADER schemes.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#ContarinoTMBK16,https://doi.org/10.1016/j.jcp.2016.03.049 +Hyoungsu Baek,A convergence study of a new partitioned fluid-structure interaction algorithm based on fictitious mass and damping.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#BaekK12,https://doi.org/10.1016/j.jcp.2011.09.025 +Qinwu Xu,A parareal method for time-fractional differential equations.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#XuHC15,https://doi.org/10.1016/j.jcp.2014.11.034 +Simone Marras,Variational multiscale stabilization of high-order spectral elements for the advection-diffusion equation.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#MarrasKGV12,https://doi.org/10.1016/j.jcp.2012.06.028 +Mayank Bajpayi,A Finite Variable Difference Relaxation Scheme for hyperbolic-parabolic equations.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#BajpayiR09,https://doi.org/10.1016/j.jcp.2009.06.038 +Andrea Mignone,A second-order unsplit Godunov scheme for cell-centered MHD: The CTU-GLM scheme.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#MignoneT10,https://doi.org/10.1016/j.jcp.2009.11.026 +Siddharth Oroskar,Efficient computation of the 2D periodic Green's function using the Ewald method.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#OroskarJW06,https://doi.org/10.1016/j.jcp.2006.06.050 +Zhouyang Ge,An efficient mass-preserving interface-correction level set/ghost fluid method for droplet suspensions under depletion forces.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#GeLTB18,https://doi.org/10.1016/j.jcp.2017.10.046 +A. Panarese,A Monte Carlo model for determination of binary diffusion coefficients in gases.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#PanareseBCDLLC11,https://doi.org/10.1016/j.jcp.2011.03.053 +F. Paravento,A robust numerical model for premixed flames with high density ratios based on new pressure correction and IMEX schemes.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#Paravento10,https://doi.org/10.1016/j.jcp.2010.03.002 +Patrick Gelß,Solving the master equation without kinetic Monte Carlo: Tensor train approximations for a CO oxidation model.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#GelssMS16,https://doi.org/10.1016/j.jcp.2016.03.025 +Wouter Tierens,BOR-FDTD subgridding based on finite element principles.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#TierensZ11,https://doi.org/10.1016/j.jcp.2011.02.028 +Joshua A. Anderson,General purpose molecular dynamics simulations fully implemented on graphics processing units.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#AndersonLT08,https://doi.org/10.1016/j.jcp.2008.01.047 +Virginie Marry,Trotter derived algorithms for molecular dynamics with constraints: Velocity Verlet revisited.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#MarryC07,https://doi.org/10.1016/j.jcp.2006.07.033 +Keh-Ming Shyue,A high-resolution mapped grid algorithm for compressible multiphase flow problems.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#Shyue10,https://doi.org/10.1016/j.jcp.2010.08.010 +August Johansson,A three-dimensional coupled Nitsche and level set method for electrohydrodynamic potential flows in moving domains.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#JohanssonGS16,https://doi.org/10.1016/j.jcp.2015.12.026 +Dinshaw S. Balsara,Exploring various flux vector splittings for the magnetohydrodynamic system.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#BalsaraMT16,https://doi.org/10.1016/j.jcp.2016.01.029 +Wei-Fan Hu,A hybrid immersed boundary and immersed interface method for electrohydrodynamic simulations.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#HuLY15,https://doi.org/10.1016/j.jcp.2014.11.005 +Margarete O. Domingues,An adaptive multiresolution scheme with local time stepping for evolutionary PDEs.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#DominguesGRS08,https://doi.org/10.1016/j.jcp.2007.11.046 +Jean-François Lemieux,Implementation of the Jacobian-free Newton-Krylov method for solving the first-order ice sheet momentum balance.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#LemieuxPEKSHP11,https://doi.org/10.1016/j.jcp.2011.04.037 +Yifan Zhang,Maximum-principle-satisfying second order discontinuous Galerkin schemes for convection-diffusion equations on triangular meshes.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#ZhangZS13,https://doi.org/10.1016/j.jcp.2012.09.032 +Mathea J. Vuik,Multiwavelet troubled-cell indicator for discontinuity detection of discontinuous Galerkin schemes.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#VuikR14,https://doi.org/10.1016/j.jcp.2014.03.047 +Benedict J. Leimkuhler,Pairwise adaptive thermostats for improved accuracy and stability in dissipative particle dynamics.,2016,324,J. Comput. Physics,,db/journals/jcphy/jcphy324.html#LeimkuhlerS16,https://doi.org/10.1016/j.jcp.2016.07.034 +Sunyoung Bu,An evaluation of solution algorithms and numerical approximation methods for modeling an ion exchange process.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#BuHBM10,https://doi.org/10.1016/j.jcp.2010.03.021 +Lei Wu 0003,Fast spectral solution of the generalized Enskog equation for dense gases.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#WuZR15,https://doi.org/10.1016/j.jcp.2015.09.034 +Zhiqiang Sheng,An efficient numerical method for the equations of steady and unsteady flows of homogeneous incompressible Newtonian fluid.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#ShengTH11,https://doi.org/10.1016/j.jcp.2010.10.002 +J. D. Densmore,Monte Carlo simulation methods in moment-based scale-bridging algorithms for thermal radiative-transfer problems.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#DensmorePWRK15,https://doi.org/10.1016/j.jcp.2014.12.020 +Hailiang Liu,A free energy satisfying discontinuous Galerkin method for one-dimensional Poisson-Nernst-Planck systems.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#LiuW17a,https://doi.org/10.1016/j.jcp.2016.10.008 +R. Gu,Simulating vesicle-substrate adhesion using two phase field functions.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#GuWG14,https://doi.org/10.1016/j.jcp.2014.07.010 +Scott Grandison,A rapid boundary integral equation technique for protein electrostatics.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#GrandisonPV07,https://doi.org/10.1016/j.jcp.2006.10.021 +Michael Siegel,A local target specific quadrature by expansion method for evaluation of layer potentials in 3D.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#SiegelT18,https://doi.org/10.1016/j.jcp.2018.03.006 +Bengt Fornberg,On choosing a radial basis function and a shape parameter when solving a convective PDE on a sphere.,2008,227,J. Comput. Physics,5,db/journals/jcphy/jcphy227.html#FornbergP08,https://doi.org/10.1016/j.jcp.2007.11.016 +Charles Pierre,Preconditioning the bidomain model with almost linear complexity.,2012,231,J. Comput. Physics,1,db/journals/jcphy/jcphy231.html#Pierre12,https://doi.org/10.1016/j.jcp.2011.08.025 +Bradley Froehle,A high-order discontinuous Galerkin method for fluid-structure interaction with efficient implicit-explicit time stepping.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#FroehleP14,https://doi.org/10.1016/j.jcp.2014.03.034 +Jeremy A. Roberts,Multigroup diffusion preconditioners for multiplying fixed-source transport problems.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#RobertsF14,https://doi.org/10.1016/j.jcp.2014.06.034 +Ivan Lunati,An iterative multiscale finite volume algorithm converging to the exact solution.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#LunatiTL11,https://doi.org/10.1016/j.jcp.2010.11.036 +Taras I. Lakoba,A generalized Petviashvili iteration method for scalar and vector Hamiltonian equations with arbitrary form of nonlinearity.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#LakobaY07,https://doi.org/10.1016/j.jcp.2007.06.009 +Stephan Küchlin,Parallel Fokker-Planck-DSMC algorithm for rarefied gas flow simulation in complex domains at all Knudsen numbers.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#KuchlinJ17,https://doi.org/10.1016/j.jcp.2016.10.018 +Rixin Yu,A fully divergence-free method for generation of inhomogeneous and anisotropic turbulence with large spatial variation.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#YuB14,https://doi.org/10.1016/j.jcp.2013.08.055 +Hua Ji,A new adaptive mesh refinement data structure with an application to detonation.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#JiLY10,https://doi.org/10.1016/j.jcp.2010.08.023 +Mario Ricchiuto,Application of conservative residual distribution schemes to the solution of the shallow water equations on unstructured meshes.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#RicchiutoAD07,https://doi.org/10.1016/j.jcp.2006.06.024 +Rémi Abgrall,"Preface to the special issue ""High order methods for CFD problems"".",2011,230,J. Comput. Physics,11,db/journals/jcphy/jcphy230.html#AbgrallQ11,https://doi.org/10.1016/j.jcp.2011.03.004 +Pierre Degond,Asymptotic-Preserving Particle-In-Cell method for the Vlasov-Poisson system near quasineutrality.,2010,229,J. Comput. Physics,16,db/journals/jcphy/jcphy229.html#DegondDNSV10,https://doi.org/10.1016/j.jcp.2010.04.001 +Mikito Furuichi,Development of a Stokes flow solver robust to large viscosity jumps using a Schur complement approach with mixed precision arithmetic.,2011,230,J. Comput. Physics,24,db/journals/jcphy/jcphy230.html#FuruichiMT11,https://doi.org/10.1016/j.jcp.2011.09.007 +Takanobu Amano,Divergence-free approximate Riemann solver for the quasi-neutral two-fluid plasma model.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#Amano15,https://doi.org/10.1016/j.jcp.2015.07.035 +Blaise Delmotte,Large-scale simulation of steady and time-dependent active suspensions with the force-coupling method.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#DelmotteKPC15,https://doi.org/10.1016/j.jcp.2015.09.020 +Taku Nonomura,A simple interface sharpening technique with a hyperbolic tangent function applied to compressible two-fluid modeling.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#NonomuraKF14,https://doi.org/10.1016/j.jcp.2013.10.021 +Thomas Y. Hou,Removing the stiffness of elastic force from the immersed boundary method for the 2D Stokes equations.,2008,227,J. Comput. Physics,21,db/journals/jcphy/jcphy227.html#HouS08a,https://doi.org/10.1016/j.jcp.2008.03.002 +Christoph Erath,Reprint of: A conservative multi-tracer transport scheme for spectral-element spherical grids.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#ErathN14a,https://doi.org/10.1016/j.jcp.2014.04.008 +Arie de Niet,A tailored solver for bifurcation analysis of ocean-climate models.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#NietWSD07,https://doi.org/10.1016/j.jcp.2007.08.006 +Shravan M. Hanasoge,Spatio-spectral concentration of convolutions.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#Hanasoge16,https://doi.org/10.1016/j.jcp.2016.02.068 +Saket Patkar,Towards positivity preservation for monolithic two-way solid-fluid coupling.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#PatkarALLF16,https://doi.org/10.1016/j.jcp.2016.02.010 +Alexander V. Rodionov,"Complement to the ""Kolgan project"".",2012,231,J. Comput. Physics,13,db/journals/jcphy/jcphy231.html#Rodionov12,https://doi.org/10.1016/j.jcp.2012.03.011 +Peter Clarke,A low noise discrete velocity method for the Boltzmann equation with quantized rotational and vibrational energy.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#ClarkeVG18,https://doi.org/10.1016/j.jcp.2017.08.065 +Tomas Oppelstrup,Matrix compression by common subexpression elimination.,2013,247,J. Comput. Physics,,db/journals/jcphy/jcphy247.html#Oppelstrup13,https://doi.org/10.1016/j.jcp.2013.03.042 +Hirotake Sugawara,Timesaving techniques for decision of electron-molecule collisions in Monte Carlo simulation of electrical discharges.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#SugawaraMSS07,https://doi.org/10.1016/j.jcp.2006.09.007 +Shaoqiang Tang,Homogenizing atomic dynamics by fractional differential equations.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#TangY17,https://doi.org/10.1016/j.jcp.2017.06.038 +Kathrin Müller,Smoothed dissipative particle dynamics with angular momentum conservation.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#MullerFG15,https://doi.org/10.1016/j.jcp.2014.10.017 +Shuai Zhang,Simulation of solid-fluid mixture flow using moving particle methods.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#ZhangKSKMF09,https://doi.org/10.1016/j.jcp.2008.12.005 +Francisco Rus,Self-similar radiation from numerical Rosenau-Hyman compactons.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#RusV07,https://doi.org/10.1016/j.jcp.2007.07.024 +Ankur Taneja,A fully-coupled discontinuous Galerkin spectral element method for two-phase flow in petroleum reservoirs.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#TanejaH18,https://doi.org/10.1016/j.jcp.2017.09.059 +E. Love,Stability analysis of a predictor/multi-corrector method for staggered-grid Lagrangian shock hydrodynamics.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#LoveRS09,https://doi.org/10.1016/j.jcp.2009.06.042 +Wijnand Hoitinga,Direct Minimization of the least-squares spectral element functional - Part I: Direct solver.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#HoitingaGKG08,https://doi.org/10.1016/j.jcp.2007.10.022 +Grétar Tryggvason,Note: Enriching the content of the Journal of Computational Physics.,2012,231,J. Comput. Physics,22,db/journals/jcphy/jcphy231.html#Tryggvason12,https://doi.org/10.1016/j.jcp.2012.06.026 +Pouria Mistani,The island dynamics model on parallel quadtree grids.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#MistaniGBSMRG18,https://doi.org/10.1016/j.jcp.2018.01.054 +Mircea Grigoriu,Parametric models for samples of random functions.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#Grigoriu15,https://doi.org/10.1016/j.jcp.2015.04.053 +Marc Dambrine,Numerical solution of the homogeneous Neumann boundary value problem on domains with a thin layer of random thickness.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#DambrineGHP17,https://doi.org/10.1016/j.jcp.2016.10.044 +Raphaël Loubère,Volume consistency in a staggered grid Lagrangian hydrodynamics scheme.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#LoubereSW08,https://doi.org/10.1016/j.jcp.2008.01.006 +Xucheng Meng,A NURBS-enhanced finite volume solver for steady Euler equations.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#MengH18,https://doi.org/10.1016/j.jcp.2017.12.041 +M. Icardi,Quadrature-based moment closures for non-equilibrium flows: Hard-sphere collisions and approach to equilibrium.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#IcardiAMIF12,https://doi.org/10.1016/j.jcp.2012.07.012 +Jeffrey W. Banks,A stable partitioned FSI algorithm for rigid bodies and incompressible flow. Part I: Model problem analysis.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#BanksHST17,https://doi.org/10.1016/j.jcp.2017.01.015 +Nathan L. Mundis,Toward an optimal solver for time-spectral fluid-dynamic and aeroelastic solutions on unstructured meshes.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#MundisM17,https://doi.org/10.1016/j.jcp.2017.04.067 +Marta de la Llave Plata,On the use of biorthogonal interpolating wavelets for large-eddy simulation of turbulence.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#PlataCP12,https://doi.org/10.1016/j.jcp.2012.06.024 +Aymen Laadhari,Computing the dynamics of biomembranes by combining conservative level set and adaptive finite element methods.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#LaadhariSM14,https://doi.org/10.1016/j.jcp.2013.12.032 +Ferran Garcia,A comparison of high-order time integrators for thermal convection in rotating spherical shells.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#GarciaNGS10,https://doi.org/10.1016/j.jcp.2010.07.004 +Zheng Lou,A dual-field domain-decomposition method for the time-domain finite-element analysis of large finite arrays.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#LouJ07,https://doi.org/10.1016/j.jcp.2006.07.024 +Richard Uber,Analysis and numerical solution of transient electromagnetic scattering from two cavities.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#UberWH17,https://doi.org/10.1016/j.jcp.2017.04.043 +Julian Kates-Harbeck,Simplex-in-cell technique for collisionless plasma simulations.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#Kates-HarbeckTZ16,https://doi.org/10.1016/j.jcp.2015.10.017 +Ulrich Hetmaniuk,Basis selection in LOBPCG.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#HetmaniukL06,https://doi.org/10.1016/j.jcp.2006.02.007 +Changqiu Jin,A unified moving grid gas-kinetic method in Eulerian space for viscous flow computation.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#JinX07,https://doi.org/10.1016/j.jcp.2006.07.015 +Tong Gao,Deformation of elastic particles in viscous shear flow.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#GaoH09,https://doi.org/10.1016/j.jcp.2008.11.029 +Xudong Lan,Modified relaxation time Monte Carlo method for continuum-transition gas flows.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#LanSL08,https://doi.org/10.1016/j.jcp.2008.01.012 +Qiqi Wang,A high order multivariate approximation scheme for scattered data sets.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#WangMI10,https://doi.org/10.1016/j.jcp.2010.04.047 +Fangxin Fang,Non-linear Petrov-Galerkin methods for reduced order hyperbolic equations and discontinuous finite element methods.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#FangPNEDX13,https://doi.org/10.1016/j.jcp.2012.10.011 +L. M. Yang,A three-dimensional explicit sphere function-based gas-kinetic flux solver for simulation of inviscid compressible flows.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#YangSW15,https://doi.org/10.1016/j.jcp.2015.03.058 +Enrique Martínez,Billion-atom synchronous parallel kinetic Monte Carlo simulations of critical 3D Ising systems.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#MartinezMM11,https://doi.org/10.1016/j.jcp.2010.11.006 +Nail K. Yamaleev,A family of fourth-order entropy stable nonoscillatory spectral collocation schemes for the 1-D Navier-Stokes equations.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#YamaleevC17,https://doi.org/10.1016/j.jcp.2016.11.039 +Hugo G. Castro,A time and space correlated turbulence synthesis method for Large Eddy Simulations.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#CastroP13,https://doi.org/10.1016/j.jcp.2012.10.035 +Ricardo H. Nochetto,The Ericksen model of liquid crystals with colloidal and electric effects.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#NochettoWZ18,https://doi.org/10.1016/j.jcp.2017.09.035 +S. A. Tokareva,HLLC-type Riemann solver for the Baer-Nunziato equations of compressible two-phase flow.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#TokarevaT10,https://doi.org/10.1016/j.jcp.2010.01.016 +Walter Boscheri,A second-order cell-centered Lagrangian ADER-MOOD finite volume scheme on multidimensional unstructured meshes for hydrodynamics.,2018,358,J. Comput. Physics,,db/journals/jcphy/jcphy358.html#BoscheriDLM18,https://doi.org/10.1016/j.jcp.2017.12.040 +Pedro S. Peixoto,Accuracy analysis of mimetic finite volume operators on geodesic grids and a consistent alternative.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#Peixoto16,https://doi.org/10.1016/j.jcp.2015.12.058 +Kenneth Duru,A perfectly matched layer for the time-dependent wave equation in heterogeneous and layered media.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#Duru14,https://doi.org/10.1016/j.jcp.2013.10.022 +Alain Lerat,A high-order time formulation of the RBC schemes for unsteady compressible Euler equations.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#Lerat15,https://doi.org/10.1016/j.jcp.2015.09.045 +Christophe Demazière,Development of a point-kinetic verification scheme for nuclear reactor applications.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#DemaziereDJ17,https://doi.org/10.1016/j.jcp.2017.03.020 +Christos Kavouklis,Parallel adaptation of general three-dimensional hybrid meshes.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#KavouklisK10,https://doi.org/10.1016/j.jcp.2010.01.011 +Björn Engquist,Fast sweeping methods for hyperbolic systems of conservation laws at steady state.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#EngquistFT13,https://doi.org/10.1016/j.jcp.2013.08.036 +Henrik Juul Spietz,A regularization method for solving the Poisson equation for mixed unbounded-periodic domains.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#SpietzHW18,https://doi.org/10.1016/j.jcp.2017.12.018 +R. K. Crockett,A Cartesian grid embedded boundary method for solving the Poisson and heat equations with discontinuous coefficients in three dimensions.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#CrockettCG11,https://doi.org/10.1016/j.jcp.2010.12.017 +Isaías Alonso-Mallo,Simulation of coherent structures in nonlinear Schrödinger-type equations.,2010,229,J. Comput. Physics,21,db/journals/jcphy/jcphy229.html#Alonso-MalloDR10,https://doi.org/10.1016/j.jcp.2010.07.018 +Alireza Yazdani,Flow in complex domains simulated by Dissipative Particle Dynamics driven by geometry-specific body-forces.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#YazdaniDCK16,https://doi.org/10.1016/j.jcp.2015.11.001 +Rihuan Ke,A fast direct method for block triangular Toeplitz-like with tri-diagonal block systems from time-fractional partial differential equations.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#KeNS15,https://doi.org/10.1016/j.jcp.2015.09.042 +Li Chen,Coupled numerical approach combining finite volume and lattice Boltzmann methods for multi-scale multi-physicochemical processes.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#ChenHKT13,https://doi.org/10.1016/j.jcp.2013.07.034 +Maziar Raissi,Machine learning of linear differential equations using Gaussian processes.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#RaissiPK17a,https://doi.org/10.1016/j.jcp.2017.07.050 +Moran Wang,Modeling electrokinetic flows in microchannels using coupled lattice Boltzmann methods.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#WangK10,https://doi.org/10.1016/j.jcp.2009.10.006 +Philip W. Livermore,Spectral radial basis functions for full sphere computations.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#LivermoreJW07,https://doi.org/10.1016/j.jcp.2007.08.026 +Songze Chen,Cartesian grid method for gas kinetic scheme on irregular geometries.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#ChenXL16,https://doi.org/10.1016/j.jcp.2016.09.018 +Andrew J. Christlieb,High order parametrized maximum-principle-preserving and positivity-preserving WENO schemes on unstructured meshes.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#ChristliebLTX15,https://doi.org/10.1016/j.jcp.2014.10.029 +W. N. Edeling,Simplex-stochastic collocation method with improved scalability.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#EdelingDC16,https://doi.org/10.1016/j.jcp.2015.12.034 +A. Durán,Time behaviour of the error when simulating finite-band periodic waves. The case of the KdV equation.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#Duran08,https://doi.org/10.1016/j.jcp.2007.10.016 +Elisabetta Carlini,A semi-Lagrangian scheme for the curve shortening flow in codimension-2.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#CarliniFF07,https://doi.org/10.1016/j.jcp.2007.01.028 +Sanghyun Lee,Enriched Galerkin methods for two-phase flow in porous media with capillary pressure.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#LeeW18,https://doi.org/10.1016/j.jcp.2018.03.031 +G. Carré,A cell-centered Lagrangian hydrodynamics scheme on general unstructured meshes in arbitrary dimension.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#CarrePDL09,https://doi.org/10.1016/j.jcp.2009.04.015 +Klas Jareteg,A numerical framework for bubble transport in a subcooled fluid flow.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#JaretegSVD17,https://doi.org/10.1016/j.jcp.2017.05.033 +Francis Filbet,A rescaling velocity method for dissipative kinetic equations. Applications to granular media.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#FilbetR13,https://doi.org/10.1016/j.jcp.2013.04.023 +Brendan Kochunas,Fourier analysis of iteration schemes for k-eigenvalue transport problems with flux-dependent cross sections.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#KochunasFL17,https://doi.org/10.1016/j.jcp.2017.05.028 +Jungsoo Suh,Compressible large eddy simulations of wall-bounded turbulent flows using a semi-implicit numerical scheme for low Mach number aeroacoustics.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#SuhFMP06,https://doi.org/10.1016/j.jcp.2005.10.036 +Ngoc Cuong Nguyen,An implicit high-order hybridizable discontinuous Galerkin method for the incompressible Navier-Stokes equations.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#NguyenPC11,https://doi.org/10.1016/j.jcp.2010.10.032 +Donald W. Schwendeman,The Riemann problem and a high-resolution Godunov method for a model of compressible two-phase flow.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#SchwendemanWK06,https://doi.org/10.1016/j.jcp.2005.07.012 +S. Kaessmair,Comparative computational analysis of the Cahn-Hilliard equation with emphasis on C1-continuous methods.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#KaessmairS16,https://doi.org/10.1016/j.jcp.2016.07.005 +Bobby Philip,Dynamic implicit 3D adaptive mesh refinement for non-equilibrium radiation diffusion.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#PhilipWBBP14,https://doi.org/10.1016/j.jcp.2013.12.058 +Michael Dumbser,Arbitrary high order non-oscillatory finite volume schemes on unstructured meshes for linear hyperbolic systems.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#DumbserK07,https://doi.org/10.1016/j.jcp.2006.06.043 +Gregor Gassner,Explicit one-step time discretizations for discontinuous Galerkin and finite volume schemes based on local predictors.,2011,230,J. Comput. Physics,11,db/journals/jcphy/jcphy230.html#GassnerDHM11,https://doi.org/10.1016/j.jcp.2010.10.024 +Matthew R. Mata,A numerical scheme for particle-laden thin film flow in two dimensions.,2011,230,J. Comput. Physics,16,db/journals/jcphy/jcphy230.html#MataB11,https://doi.org/10.1016/j.jcp.2011.04.029 +Hailiang Liu,A level set approach for dilute non-collisional fluid-particle flows.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#LiuWF11,https://doi.org/10.1016/j.jcp.2010.08.030 +Taras I. Lakoba,A mode elimination technique to improve convergence of iteration methods for finding solitary waves.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#LakobaY07a,https://doi.org/10.1016/j.jcp.2007.06.010 +Xiankun Xu,Distance descending ordering method: An O(n) algorithm for inverting the mass matrix in simulation of macromolecules with long branches.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#XuL17,https://doi.org/10.1016/j.jcp.2017.08.006 +Herwig A. Grogger,Finite difference approximations of first derivatives for two-dimensional grid singularities.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#Grogger06,https://doi.org/10.1016/j.jcp.2006.01.017 +Xavier Antoine,Absorbing boundary conditions for relativistic quantum mechanics equations.,2014,277,J. Comput. Physics,,db/journals/jcphy/jcphy277.html#AntoineLSFB14,https://doi.org/10.1016/j.jcp.2014.07.037 +Martin Reitzle,A volume-of-fluid method for three-dimensional hexagonal solidification processes.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#ReitzleKGW17,https://doi.org/10.1016/j.jcp.2017.03.001 +John W. Barrett 0001,On the parametric finite element approximation of evolving hypersurfaces in R3.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#BarrettGN08,https://doi.org/10.1016/j.jcp.2007.11.023 +Radu Cimpeanu,A parameter-free perfectly matched layer formulation for the finite-element-based solution of the Helmholtz equation.,2015,296,J. Comput. Physics,,db/journals/jcphy/jcphy296.html#CimpeanuMH15,https://doi.org/10.1016/j.jcp.2015.05.006 +Po-Wen Hsieh,"Erratum to ""A bubble-stabilized least-squares finite element method for steady MHD duct flow problems at high Hartmann numbers"" [J. Comput. Physics 228 (2009) 8301-8320].",2011,230,J. Comput. Physics,2,db/journals/jcphy/jcphy230.html#HsiehY11,https://doi.org/10.1016/j.jcp.2010.10.003 +D. Fuster,An energy preserving formulation for the simulation of multiphase turbulent flows.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#Fuster13,https://doi.org/10.1016/j.jcp.2012.10.029 +Lucas C. Wilcox,A high-order discontinuous Galerkin method for wave propagation through coupled elastic-acoustic media.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#WilcoxSBG10,https://doi.org/10.1016/j.jcp.2010.09.008 +Nikolai Schmitt,A DGTD method for the numerical modeling of the interaction of light with nanometer scale metallic structures taking into account non-local dispersion effects.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#SchmittSLMV16,https://doi.org/10.1016/j.jcp.2016.04.020 +Hui Xu 0005,Optimal low-dispersion low-dissipation LBM schemes for computational aeroacoustics.,2011,230,J. Comput. Physics,13,db/journals/jcphy/jcphy230.html#XuS11,https://doi.org/10.1016/j.jcp.2011.03.040 +Stefania Bellavia,Globalization strategies for Newton-Krylov methods for stabilized FEM discretization of Navier-Stokes equations.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#BellaviaB07,https://doi.org/10.1016/j.jcp.2007.07.021 +Babak S. Hosseini,Isogeometric Analysis of the Navier-Stokes-Cahn-Hilliard equations with application to incompressible two-phase flows.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#HosseiniTMP17,https://doi.org/10.1016/j.jcp.2017.07.029 +Gordon L. Olson,Second-order time evolution of PN equations for radiation transport.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#Olson09,https://doi.org/10.1016/j.jcp.2009.01.012 +Youssef M. Marzouk,Dimensionality reduction and polynomial chaos acceleration of Bayesian inference in inverse problems.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#MarzoukN09,https://doi.org/10.1016/j.jcp.2008.11.024 +Umair bin Waheed,Efficient traveltime solutions of the acoustic TI eikonal equation.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#WaheedAW15,https://doi.org/10.1016/j.jcp.2014.11.006 +Alireza Mazaheri,Improved second-order hyperbolic residual-distribution scheme and its extension to third-order on arbitrary triangular grids.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#MazaheriN15,https://doi.org/10.1016/j.jcp.2015.07.054 +Francesco Mainardi,On complete monotonicity of the Prabhakar function and non-Debye relaxation in dielectrics.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#MainardiG15,https://doi.org/10.1016/j.jcp.2014.08.006 +Jung Il Choi,An immersed boundary method for complex incompressible flows.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#ChoiOER07,https://doi.org/10.1016/j.jcp.2006.10.032 +Mathew A. Cleveland,An extension of implicit Monte Carlo diffusion: Multigroup and the difference formulation.,2010,229,J. Comput. Physics,16,db/journals/jcphy/jcphy229.html#ClevelandGP10,https://doi.org/10.1016/j.jcp.2010.04.004 +S. Dong,Wall-bounded multiphase flows of N immiscible incompressible fluids: Consistency and contact-angle boundary condition.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#Dong17,https://doi.org/10.1016/j.jcp.2017.02.048 +Giovanni Russo 0001,The Gaussian wave packet transform: Efficient computation of the semi-classical limit of the Schrödinger equation. Part 2. Multidimensional case.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#RussoS14,https://doi.org/10.1016/j.jcp.2013.09.023 +C. Peco,An adaptive meshfree method for phase-field models of biomembranes. Part II: A Lagrangian approach for membranes in viscous fluids.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#PecoRA13,https://doi.org/10.1016/j.jcp.2013.04.038 +François Fraysse,The estimation of truncation error by and#964*-estimation revisited.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#FraysseVV12,https://doi.org/10.1016/j.jcp.2011.09.031 +Kenji Miki,Systematic validation of non-equilibrium thermochemical models using Bayesian inference.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#MikiPP15,https://doi.org/10.1016/j.jcp.2015.05.011 +Shu C. Chen,Numerical electromagnetic frequency domain analysis with discrete exterior calculus.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#ChenC17,https://doi.org/10.1016/j.jcp.2017.08.068 +Yannick Gorsse,A simple second order cartesian scheme for compressible Euler flows.,2012,231,J. Comput. Physics,23,db/journals/jcphy/jcphy231.html#GorsseITW12,https://doi.org/10.1016/j.jcp.2012.07.014 +Haibin Chang,History matching of facies distribution with the EnKF and level set parameterization.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#ChangZL10,https://doi.org/10.1016/j.jcp.2010.07.005 +Jinjie Liu,Transformation optics based local mesh refinement for solving Maxwell's equations.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#LiuBM14,https://doi.org/10.1016/j.jcp.2013.10.048 +U. Ziegler,A semi-discrete central scheme for magnetohydrodynamics on orthogonal-curvilinear grids.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#Ziegler11,https://doi.org/10.1016/j.jcp.2010.10.022 +Colin J. Cotter,A finite element exterior calculus framework for the rotating shallow-water equations.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#CotterT14,https://doi.org/10.1016/j.jcp.2013.10.008 +Fabio Nobile,Inexact accurate partitioned algorithms for fluid-structure interaction problems with finite elasticity in haemodynamics.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#NobilePV14,https://doi.org/10.1016/j.jcp.2014.05.020 +Rosa Donat,Well-Balanced Adaptive Mesh Refinement for shallow water flows.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#DonatMMM14,https://doi.org/10.1016/j.jcp.2013.09.032 +Parthib R. Rao,Numerical stability of explicit off-lattice Boltzmann schemes: A comparative study.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#RaoS15,https://doi.org/10.1016/j.jcp.2015.01.017 +Philip T. Barton,Exact and approximate solutions of Riemann problems in non-linear elasticity.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#BartonDRT09,https://doi.org/10.1016/j.jcp.2009.06.014 +Cristian Constantin Lalescu,Implementation of high order spline interpolations for tracking test particles in discretized fields.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#LalescuTC10,https://doi.org/10.1016/j.jcp.2009.10.046 +Cesar A. Acosta Minoli,Boundary states at reflective moving boundaries.,2012,231,J. Comput. Physics,11,db/journals/jcphy/jcphy231.html#MinoliK12,https://doi.org/10.1016/j.jcp.2012.02.012 +C. P. Rupert,An analysis of polynomial chaos approximations for modeling single-fluid-phase flow in porous medium systems.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#RupertM07,https://doi.org/10.1016/j.jcp.2007.07.001 +Takayasu Matsuo,An energy-conserving Galerkin scheme for a class of nonlinear dispersive equations.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#MatsuoY09,https://doi.org/10.1016/j.jcp.2009.03.003 +Gang Bao,Numerical solution of an inverse medium scattering problem for Maxwell's Equations at fixed frequency.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#BaoL09,https://doi.org/10.1016/j.jcp.2009.03.031 +James A. Rossmanith,A wave propagation method for hyperbolic systems on the sphere.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#Rossmanith06,https://doi.org/10.1016/j.jcp.2005.08.027 +Orlando Ayala,A hybrid approach for simulating turbulent collisions of hydrodynamically-interacting particles.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#AyalaGW07,https://doi.org/10.1016/j.jcp.2006.11.016 +Bülent Karasözen,Natural convection in porous annular domains: Mimetic scheme and family of steady states.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#KarasozenTT12,https://doi.org/10.1016/j.jcp.2012.01.004 +Sven Groß,An extended pressure finite element space for two-phase incompressible flows with surface tension.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#GrossR07,https://doi.org/10.1016/j.jcp.2006.12.021 +Thomas Y. Hou,A heterogeneous stochastic FEM framework for elliptic PDEs.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#HouL15,https://doi.org/10.1016/j.jcp.2014.10.020 +A. Susanto,High-order central ENO finite-volume scheme for ideal MHD.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#SusantoISG13,https://doi.org/10.1016/j.jcp.2013.04.040 +David Rochette,Two-dimensional computation of gas flow in a porous bed characterized by a porosity jump.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#RochetteC06,https://doi.org/10.1016/j.jcp.2006.03.013 +Luca Scarbolo,Unified framework for a side-by-side comparison of different multicomponent algorithms: Lattice Boltzmann vs. phase field model.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#ScarboloMPSST13,https://doi.org/10.1016/j.jcp.2012.09.029 +Yukihito Suzuki,Bracket formulations and energy- and helicity-preserving numerical methods for incompressible two-phase flows.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#Suzuki18,https://doi.org/10.1016/j.jcp.2017.11.034 +Mani Mehra,An adaptive wavelet collocation method for the solution of partial differential equations on the sphere.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#MehraK08,https://doi.org/10.1016/j.jcp.2008.02.004 +C. H. Chang,A compatible Lagrangian hydrodynamic scheme for multicomponent flows with mixing.,2012,231,J. Comput. Physics,11,db/journals/jcphy/jcphy231.html#ChangS12,https://doi.org/10.1016/j.jcp.2012.02.005 +Ryo Onishi,An efficient parallel simulation of interacting inertial particles in homogeneous isotropic turbulence.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#OnishiTV13,https://doi.org/10.1016/j.jcp.2013.02.027 +J. Thomas Beale,Partially implicit motion of a sharp interface in Navier-Stokes flow.,2012,231,J. Comput. Physics,18,db/journals/jcphy/jcphy231.html#Beale12,https://doi.org/10.1016/j.jcp.2012.05.018 +Nick A. Gentile,Including the effects of temperature-dependent opacities in the implicit Monte Carlo algorithm.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#Gentile11,https://doi.org/10.1016/j.jcp.2011.03.029 +Veselin Dobrev,Sequential limiting in continuous and discontinuous Galerkin methods for the Euler equations.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#DobrevKKRT18,https://doi.org/10.1016/j.jcp.2017.12.012 +Kunal Puri,A comparison of SPH schemes for the compressible Euler equations.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#PuriR14,https://doi.org/10.1016/j.jcp.2013.08.060 +Eric T. Chung,A ray-based IPDG method for high-frequency time-domain acoustic wave propagation in inhomogeneous media.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#ChungLQ17,https://doi.org/10.1016/j.jcp.2017.07.048 +Suchuan Dong,Physical formulation and numerical algorithm for simulating N immiscible incompressible fluids involving general order parameters.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#Dong15,https://doi.org/10.1016/j.jcp.2014.11.039 +Rémi Abgrall,An immersed boundary method using unstructured anisotropic mesh adaptation combined with level-sets and penalization techniques.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#AbgrallBD14,https://doi.org/10.1016/j.jcp.2013.08.052 +Tomas Halleröd,Electric and magnetic losses modeled by a stable hybrid with explicit-implicit time-stepping for Maxwell's equations.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#HallerodR08,https://doi.org/10.1016/j.jcp.2008.01.007 +Alexander I. Kozynchenko,On improving the algorithm efficiency in the particle-particle force calculations.,2016,320,J. Comput. Physics,,db/journals/jcphy/jcphy320.html#KozynchenkoK16,https://doi.org/10.1016/j.jcp.2016.05.029 +Long Chen 0002,A PDE approach to fractional diffusion: A posteriori error analysis.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#ChenNOS15,https://doi.org/10.1016/j.jcp.2015.01.001 +Joanna Szmelter,An unstructured-mesh atmospheric model for nonhydrostatic dynamics: Towards optimal mesh resolution.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#SzmelterZS15,https://doi.org/10.1016/j.jcp.2015.03.054 +V. Vikas,Radiation transport modeling using extended quadrature method of moments.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#VikasHWF13,https://doi.org/10.1016/j.jcp.2013.03.028 +Jian-Guo Liu,An accurate front capturing scheme for tumor growth models with a free boundary limit.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#LiuTWZ18,https://doi.org/10.1016/j.jcp.2018.03.013 +Lilit Axner,Performance evaluation of a parallel sparse lattice Boltzmann solver.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#AxnerBZLLH08,https://doi.org/10.1016/j.jcp.2008.01.013 +Shreyas Bidadi,"Corrigendum to ""On the stability and diffusive characteristics of Roe-MUSCL and Runge-Kutta schemes for inviscid Taylor-Green vortex"" [Journal of Computational Physics 299 (2015) 339-351].",2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#BidadiR16,https://doi.org/10.1016/j.jcp.2015.09.035 +Sebastian Nørgaard,Topology optimization of unsteady flow problems using the lattice Boltzmann method.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#NorgaardSL16,https://doi.org/10.1016/j.jcp.2015.12.023 +Stéphanie Chaillat,A new Fast Multipole formulation for the elastodynamic half-space Green's tensor.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#ChaillatB14,https://doi.org/10.1016/j.jcp.2013.11.010 +Marx Chhay,Comparison of some Lie-symmetry-based integrators.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#ChhayHHS11,https://doi.org/10.1016/j.jcp.2010.12.015 +Vishwas Rao,A time-parallel approach to strong-constraint four-dimensional variational data assimilation.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#RaoS16,https://doi.org/10.1016/j.jcp.2016.02.040 +Mohammad Poursina,An improved fast multipole method for electrostatic potential calculations in a class of coarse-grained molecular simulations.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#PoursinaA14,https://doi.org/10.1016/j.jcp.2014.04.025 +Nicolas Crouseilles,Uniformly accurate Particle-in-Cell method for the long time solution of the two-dimensional Vlasov-Poisson equation with uniform strong magnetic field.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#CrouseillesLMZ17,https://doi.org/10.1016/j.jcp.2017.06.011 +Eduardo Corona,An integral equation formulation for rigid bodies in Stokes flow in three dimensions.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#CoronaGRV17,https://doi.org/10.1016/j.jcp.2016.12.018 +Jian Zhao,Runge-Kutta discontinuous Galerkin methods with WENO limiter for the special relativistic hydrodynamics.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#ZhaoT13,https://doi.org/10.1016/j.jcp.2013.02.018 +Annabelle Collin,A Luenberger observer for reaction-diffusion models with front position data.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#CollinCM15,https://doi.org/10.1016/j.jcp.2015.07.044 +Fabrice Deluzet,Numerical study of the plasma tearing instability on the resistive time scale.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#DeluzetNOP15,https://doi.org/10.1016/j.jcp.2014.10.003 +Lie-Quan Lee,On using moving windows in finite element time domain simulation for long accelerator structures.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#LeeCNK10,https://doi.org/10.1016/j.jcp.2010.08.037 +Andreas Ehrl,A computational approach for the simulation of natural convection in electrochemical cells.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#EhrlBGW13,https://doi.org/10.1016/j.jcp.2012.08.043 +G. I. Jennings,Water wave propagation in unbounded domains. Part I: Nonreflecting boundaries.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#JenningsKR14,https://doi.org/10.1016/j.jcp.2014.02.032 +Daniel R. Lester,The frictional pebble game: An algorithm for rigidity percolation in saturated frictional assemblies.,2018,369,J. Comput. Physics,,db/journals/jcphy/jcphy369.html#LesterL18,https://doi.org/10.1016/j.jcp.2018.05.016 +B. Kraczek,Adaptive spacetime method using Riemann jump conditions for coupled atomistic-continuum dynamics.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#KraczekMHJ10,https://doi.org/10.1016/j.jcp.2009.11.023 +Weihua Geng,A treecode-accelerated boundary integral Poisson-Boltzmann solver for electrostatics of solvated biomolecules.,2013,247,J. Comput. Physics,,db/journals/jcphy/jcphy247.html#GengK13,https://doi.org/10.1016/j.jcp.2013.03.056 +Wilhelm Heinrichs,A direct solver for the least-squares spectral collocation system on rectangular elements for the incompressible Navier-Stokes equations.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#HeinrichsK08,https://doi.org/10.1016/j.jcp.2008.01.025 +Xin Wen,High order numerical methods to two dimensional delta function integrals in level set methods.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#Wen09,https://doi.org/10.1016/j.jcp.2009.03.004 +Yunkai Zhou,Chebyshev-filtered subspace iteration method free of sparse diagonalization for solving the Kohn-Sham equation.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#ZhouCS14,https://doi.org/10.1016/j.jcp.2014.06.056 +Christoph Schmitt 0001,Reactive linearized equations of perturbed compressible variables for low-Mach number variable-density flows.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#SchmittP15,https://doi.org/10.1016/j.jcp.2014.10.007 +Andrew J. Christlieb,High order operator splitting methods based on an integral deferred correction framework.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#ChristliebLX15,https://doi.org/10.1016/j.jcp.2015.03.032 +Yiqing Shen,Large eddy simulation using a new set of sixth order schemes for compressible viscous terms.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#ShenZ10,https://doi.org/10.1016/j.jcp.2010.07.017 +S. J. Lind,High-order Eulerian incompressible smoothed particle hydrodynamics with transition to Lagrangian free-surface motion.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#LindS16,https://doi.org/10.1016/j.jcp.2016.08.047 +Yulong Xing,Exactly well-balanced discontinuous Galerkin methods for the shallow water equations with moving water equilibrium.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#Xing14,https://doi.org/10.1016/j.jcp.2013.10.010 +Suchuan Dong,An efficient algorithm for incompressible N-phase flows.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#Dong14a,https://doi.org/10.1016/j.jcp.2014.08.002 +Patrick D. O'Connor,Accurate rate expressions for simulations of gas-phase chemical reactions.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#OConnorLA08,https://doi.org/10.1016/j.jcp.2008.04.023 +Pablo Fernández 0002,Lyapunov spectrum of the separated flow around the NACA 0012 airfoil and its dependence on numerical discretization.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#FernandezW17,https://doi.org/10.1016/j.jcp.2017.08.056 +Vijaya R. Ambati,Space-time discontinuous Galerkin discretization of rotating shallow water equations.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#AmbatiB07,https://doi.org/10.1016/j.jcp.2007.01.036 +M. Hossein Gorji,Variance reduction for Fokker-Planck based particle Monte Carlo schemes.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#GorjiAJ15,https://doi.org/10.1016/j.jcp.2015.04.008 +Raunak Borker,A high-order discontinuous Galerkin method for unsteady advection-diffusion problems.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#BorkerFT17,https://doi.org/10.1016/j.jcp.2016.12.021 +Valerio Caleffi,Well balancing of the SWE schemes for moving-water steady flows.,2017,342,J. Comput. Physics,,db/journals/jcphy/jcphy342.html#CaleffiV17,https://doi.org/10.1016/j.jcp.2017.04.031 +Lilia Krivodonova,Limiters for high-order discontinuous Galerkin methods.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#Krivodonova07,https://doi.org/10.1016/j.jcp.2007.05.011 +L. M. Yang,Numerical simulation of flows from free molecular regime to continuum regime by a DVM with streaming and collision processes.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#YangSWW16,https://doi.org/10.1016/j.jcp.2015.11.043 +Gabriel D. Weymouth,Boundary data immersion method for Cartesian-grid simulations of fluid-body interaction problems.,2011,230,J. Comput. Physics,16,db/journals/jcphy/jcphy230.html#WeymouthY11,https://doi.org/10.1016/j.jcp.2011.04.022 +Sruti Chigullapalli,Entropy considerations in numerical simulations of non-equilibrium rarefied flows.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#ChigullapalliVIA10,https://doi.org/10.1016/j.jcp.2009.11.027 +Nicolas Schneider,A spectral anelastic Navier-Stokes solver for a stratified two-miscible-layer system in infinite horizontal channel.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#SchneiderHLG15,https://doi.org/10.1016/j.jcp.2015.06.043 +Peter E. J. Vos,From h to p efficiently: Implementing finite and spectral/hp element methods to achieve optimal performance for low- and high-order discretisations.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#VosSK10,https://doi.org/10.1016/j.jcp.2010.03.031 +Fei Liao,Extending geometric conservation law to cell-centered finite difference methods on moving and deforming grids.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#LiaoY15,https://doi.org/10.1016/j.jcp.2015.09.032 +Won-Kwang Park,Performance analysis of multi-frequency topological derivative for reconstructing perfectly conducting cracks.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#Park17,https://doi.org/10.1016/j.jcp.2017.02.007 +Jingfang Huang,Arbitrary order Krylov deferred correction methods for differential algebraic equations.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#HuangJM07,https://doi.org/10.1016/j.jcp.2006.06.040 +Abouzar Kaboudian,The ghost solid methods for the elastic-plastic solid-solid interface and the and#977*-criterion.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#KaboudianTK15,https://doi.org/10.1016/j.jcp.2015.09.023 +Kunihiko Taira,The immersed boundary method: A projection approach.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#TairaC07,https://doi.org/10.1016/j.jcp.2007.03.005 +Che Wang,A fast collocation method for a variable-coefficient nonlocal diffusion model.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#WangW17,https://doi.org/10.1016/j.jcp.2016.11.003 +Qian Wang,Compact high order finite volume method on unstructured grids II: Extension to two-dimensional Euler equations.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#WangRL16a,https://doi.org/10.1016/j.jcp.2016.03.048 +Yuxian Zhang,A corner-free truncation strategy for FDTD method in target scattering.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#ZhangFZL15,https://doi.org/10.1016/j.jcp.2015.08.050 +Stéphane Clain,A multislope MUSCL method on unstructured meshes applied to compressible Euler equations for axisymmetric swirling flows.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#ClainRT10,https://doi.org/10.1016/j.jcp.2010.03.004 +Dale R. Welch,Adaptive particle management in a particle-in-cell code.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#WelchGCR07,https://doi.org/10.1016/j.jcp.2007.07.015 +Ryosuke Yano,Fast and accurate calculation of dilute quantum gas using Uehling-Uhlenbeck model equation.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#Yano17,https://doi.org/10.1016/j.jcp.2016.10.071 +Bin Xie,A hybrid pressure-density-based Mach uniform algorithm for 2D Euler equations on unstructured grids by using multi-moment finite volume method.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#XieDSX17,https://doi.org/10.1016/j.jcp.2017.01.043 +Lionel Gélébart,Filtering material properties to improve FFT-based methods for numerical homogenization.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#GelebartO15,https://doi.org/10.1016/j.jcp.2015.03.048 +Oishik Sen,Evaluation of convergence behavior of metamodeling techniques for bridging scales in multi-scale multimaterial simulation.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#SenDJU15,https://doi.org/10.1016/j.jcp.2015.03.043 +Alexander V. Rodionov,Artificial viscosity to cure the carbuncle phenomenon: The three-dimensional case.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#Rodionov18,https://doi.org/10.1016/j.jcp.2018.02.001 +Craig Michoski,Discontinuous Galerkin methods for plasma physics in the scrape-off layer of tokamaks.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#MichoskiMIW14,https://doi.org/10.1016/j.jcp.2014.06.058 +David Salac,A level set projection model of lipid vesicles in general flows.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#SalacM11,https://doi.org/10.1016/j.jcp.2011.07.019 +Haoming Wang,Lattice Boltzmann method for simulations of gas-particle flows over a backward-facing step.,2013,239,J. Comput. Physics,,db/journals/jcphy/jcphy239.html#WangZGHZ13,https://doi.org/10.1016/j.jcp.2012.12.032 +Jeroen A. S. Witteveen,Second order front tracking for the Euler equations.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#Witteveen10,https://doi.org/10.1016/j.jcp.2009.12.019 +Hengbin An,On choosing a nonlinear initial iterate for solving the 2-D 3-T heat conduction equations.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#AnMXL09,https://doi.org/10.1016/j.jcp.2009.01.024 +Igor V. Sokolov,A TVD principle and conservative TVD schemes for adaptive Cartesian grids.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#SokolovPGR06,https://doi.org/10.1016/j.jcp.2006.07.021 +Olav Møyner,A multiscale restriction-smoothed basis method for high contrast porous media represented on unstructured grids.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#MoynerL16,https://doi.org/10.1016/j.jcp.2015.10.010 +H. C. Yee,Spurious behavior of shock-capturing methods by the fractional step approach: Problems containing stiff source terms and discontinuities.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#YeeK0S13,https://doi.org/10.1016/j.jcp.2013.01.028 +Nicole Cusimano,A space-fractional Monodomain model for cardiac electrophysiology combining anisotropy and heterogeneity on realistic geometries.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#CusimanoG18,https://doi.org/10.1016/j.jcp.2018.02.034 +Francesco Miniati,Glimm-Godunov's method for cosmic-ray-hydrodynamics.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#Miniati07,https://doi.org/10.1016/j.jcp.2007.08.013 +Kai Huang,Efficient numerical simulation for long range wave propagation.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#HuangPSTZ06,https://doi.org/10.1016/j.jcp.2005.11.003 +Karthik Mani,Error estimation and adaptation for functional outputs in time-dependent flow problems.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#ManiM10,https://doi.org/10.1016/j.jcp.2009.09.034 +Huo-Yuan Duan,Computation of Maxwell singular solution by nodal-continuous elements.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#DuanTYY14,https://doi.org/10.1016/j.jcp.2014.02.044 +Shaohua Wu,A moment projection method for population balance dynamics with a shrinkage term.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#WuYAMXYK17,https://doi.org/10.1016/j.jcp.2016.10.030 +Samira Nikkar,Fully discrete energy stable high order finite difference methods for hyperbolic problems in deforming domains.,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#NikkarN15,https://doi.org/10.1016/j.jcp.2015.02.027 +Hyoseon Yang,A short note on the error estimates of Yuan-Shu discontinuous Galerkin method based on non-polynomial approximation spaces.,2016,320,J. Comput. Physics,,db/journals/jcphy/jcphy320.html#YangY16,https://doi.org/10.1016/j.jcp.2016.05.032 +Piotr K. Smolarkiewicz,An unstructured-mesh atmospheric model for nonhydrostatic dynamics.,2013,254,J. Comput. Physics,,db/journals/jcphy/jcphy254.html#SmolarkiewiczSW13,https://doi.org/10.1016/j.jcp.2013.07.027 +Héctor D. Ceniceros,Coupled flow-polymer dynamics via statistical field theory: Modeling and computation.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#CenicerosFM09,https://doi.org/10.1016/j.jcp.2008.11.009 +Larisa Gitelman,Modeling and simulation of Li-ion conduction in poly(ethylene oxide).,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#GitelmanIANSG07,https://doi.org/10.1016/j.jcp.2007.08.033 +Dmitri Kuzmin,Failsafe flux limiting and constrained data projections for equations of gas dynamics.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#KuzminMSS10,https://doi.org/10.1016/j.jcp.2010.08.009 +Gulshan B. Sharma,Adaptive scapula bone remodeling computational simulation: Relevance to regenerative medicine.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#SharmaR13,https://doi.org/10.1016/j.jcp.2012.09.028 +Matteo Parsani,Entropy stable discontinuous interfaces coupling for the three-dimensional compressible Navier-Stokes equations.,2015,290,J. Comput. Physics,,db/journals/jcphy/jcphy290.html#ParsaniCN15,https://doi.org/10.1016/j.jcp.2015.02.042 +Shaoping Quan,A moving mesh interface tracking method for 3D incompressible two-phase flows.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#QuanS07,https://doi.org/10.1016/j.jcp.2006.06.044 +J. S. Cagnone,A stable interface element scheme for the p-adaptive lifting collocation penalty formulation.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#CagnoneN12,https://doi.org/10.1016/j.jcp.2011.10.018 +Jesse R. Woodroffe,Hybrid simulation of whistler excitation by electron beams in two-dimensional non-periodic domains.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#WoodroffeS14,https://doi.org/10.1016/j.jcp.2014.06.055 +Stefan A. Sauter,Convolution quadrature for the wave equation with impedance boundary conditions.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#SauterS17,https://doi.org/10.1016/j.jcp.2017.01.013 +Alexandre Noll Marques,A Correction Function Method for Poisson problems with interface jump conditions.,2011,230,J. Comput. Physics,20,db/journals/jcphy/jcphy230.html#MarquesNR11,https://doi.org/10.1016/j.jcp.2011.06.014 +Bernard Parent,Electron and ion transport equations in computational weakly-ionized plasmadynamics.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#ParentMS14,https://doi.org/10.1016/j.jcp.2013.11.029 +Jirí Mikyska,Implementation of higher-order methods for robust and efficient compositional simulation.,2010,229,J. Comput. Physics,8,db/journals/jcphy/jcphy229.html#MikyskaF10,https://doi.org/10.1016/j.jcp.2009.12.022 +R. Elliot English,An adaptive discretization of incompressible flow using a multitude of moving Cartesian grids.,2013,254,J. Comput. Physics,,db/journals/jcphy/jcphy254.html#EnglishQYF13,https://doi.org/10.1016/j.jcp.2013.07.032 +Mihai Alexe,Space-time adaptive solution of inverse problems with the discrete adjoint method.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#AlexeS14,https://doi.org/10.1016/j.jcp.2014.03.042 +Michal Branicki,Dynamic Stochastic Superresolution of sparsely observed turbulent systems.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#BranickiM13,https://doi.org/10.1016/j.jcp.2012.11.037 +Nauman Raza,Energy minimization related to the nonlinear Schrödinger equation.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#RazaSSL09,https://doi.org/10.1016/j.jcp.2008.12.016 +Hongwei Zheng,A lattice Boltzmann model for multiphase flows with large density ratio.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#Zheng0C06,https://doi.org/10.1016/j.jcp.2006.02.015 +Fioralba Cakoni,Direct imaging of small scatterers using reduced time dependent data.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#CakoniR17,https://doi.org/10.1016/j.jcp.2017.02.061 +Jean-Baptiste Apoung Kamga,Numerical zoom for multiscale problems with an application to nuclear waste disposal.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#KamgaP07,https://doi.org/10.1016/j.jcp.2007.03.020 +V. Vikas,Realizable high-order finite-volume schemes for quadrature-based moment methods applied to diffusion population balance equations.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#VikasWF13,https://doi.org/10.1016/j.jcp.2013.05.002 +Andrea Bonito,Parametric FEM for geometric biomembranes.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#BonitoNP10,https://doi.org/10.1016/j.jcp.2009.12.036 +Samuel N. Stechmann,Multiscale eddy simulation for moist atmospheric convection: Preliminary investigation.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#Stechmann14,https://doi.org/10.1016/j.jcp.2014.02.009 +Yibing Chen,HFVS: An arbitrary high order approach based on flux vector splitting.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#ChenJL16,https://doi.org/10.1016/j.jcp.2016.07.004 +Christian Kühnlein,An unstructured-mesh finite-volume MPDATA for compressible atmospheric dynamics.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#KuhnleinS17,https://doi.org/10.1016/j.jcp.2016.12.054 +Shuangxi Zhang,"Comment on ""Symplectic integration of magnetic systems"" by Stephen D. Webb [J. Comput. Phys. 270(2014) 570-576].",2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#ZhangJS15,https://doi.org/10.1016/j.jcp.2014.10.062 +Jaewook Nam,Tracking birth of vortex in flows.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#NamSC09,https://doi.org/10.1016/j.jcp.2009.03.017 +Anthony Nouy,Generalized spectral decomposition for stochastic nonlinear problems.,2009,228,J. Comput. Physics,1,db/journals/jcphy/jcphy228.html#NouyM09,https://doi.org/10.1016/j.jcp.2008.09.010 +Stefan Schnabel,Advanced multicanonical Monte Carlo methods for efficient simulations of nucleation processes of polymers.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#SchnabelJB11,https://doi.org/10.1016/j.jcp.2011.02.018 +Yannis Kallinderis,A priori mesh quality estimation via direct relation between truncation error and mesh distortion.,2009,228,J. Comput. Physics,3,db/journals/jcphy/jcphy228.html#KallinderisK09,https://doi.org/10.1016/j.jcp.2008.10.023 +Jorge Eduardo Macías-Díaz,A structure-preserving method for a class of nonlinear dissipative wave equations with Riesz space-fractional derivatives.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#Macias-Diaz17,https://doi.org/10.1016/j.jcp.2017.09.028 +Zhenyu Zhang,A discrete velocity direction model for the Boltzmann equation and applications to micro gas flows.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#ZhangXQX08,https://doi.org/10.1016/j.jcp.2008.01.030 +Sorin Nedelcu,GPU implementations of the bond fluctuation model.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#NedelcuWLS12,https://doi.org/10.1016/j.jcp.2011.12.021 +Orestis Malaspinas,Wall model for large-eddy simulation based on the lattice Boltzmann method.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#MalaspinasS14,https://doi.org/10.1016/j.jcp.2014.06.020 +Xi Du,A third-order finite-volume residual-based scheme for the 2D Euler equations on unstructured grids.,2011,230,J. Comput. Physics,11,db/journals/jcphy/jcphy230.html#DuCL11,https://doi.org/10.1016/j.jcp.2011.01.032 +X. Sun,Acceleration of diffusive molecular dynamics simulations through mean field approximation and subcycling time integration.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#SunAOW17,https://doi.org/10.1016/j.jcp.2017.08.069 +Edgar Olbrant,A realizability-preserving discontinuous Galerkin method for the M1 model of radiative transfer.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#OlbrantHF12,https://doi.org/10.1016/j.jcp.2012.03.002 +Jonathan Carroll-Nellenback,Efficient parallelization for AMR MHD multiphysics calculations* implementation in AstroBEAR.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#Carroll-NellenbackSFD13,https://doi.org/10.1016/j.jcp.2012.10.004 +Luís Eça,A procedure for the estimation of the numerical uncertainty of CFD calculations based on grid refinement studies.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#EcaH14,https://doi.org/10.1016/j.jcp.2014.01.006 +Dongling Wang,Crank-Nicolson difference scheme for the coupled nonlinear Schrödinger equations with the Riesz space fractional derivative.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#WangXY13,https://doi.org/10.1016/j.jcp.2013.02.037 +Sarah D. Olson,Modeling the dynamics of an elastic rod with intrinsic curvature and twist using a regularized Stokes formulation.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#OlsonLC13,https://doi.org/10.1016/j.jcp.2012.12.026 +Ken Mattsson,"Corrigendum to ""Summation by parts operators for finite difference approximations of second derivatives"" [J. Comput. Phys. 199 (2004) 503-540].",2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#MattssonN17,https://doi.org/10.1016/j.jcp.2017.09.051 +Marc I. Gerritsma,Time-dependent generalized polynomial chaos.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#GerritsmaSVK10,https://doi.org/10.1016/j.jcp.2010.07.020 +S. Baars,Continuation of probability density functions using a generalized Lyapunov approach.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#BaarsVMKWD17,https://doi.org/10.1016/j.jcp.2017.02.021 +A. Idesman,Use of post-processing to increase the order of accuracy of the trapezoidal rule at time integration of linear elastodynamics problems.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#Idesman12,https://doi.org/10.1016/j.jcp.2011.12.036 +Guido Thömmes,A lattice Boltzmann method for immiscible multiphase flow simulations using the level set method.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#ThommesBJVKKSW09,https://doi.org/10.1016/j.jcp.2008.10.032 +Olivier Roussel,Coherent Vortex Simulation of weakly compressible turbulent mixing layers using adaptive multiresolution methods.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#RousselS10,https://doi.org/10.1016/j.jcp.2009.11.034 +Cong Huang,A new adaptively central-upwind sixth-order WENO scheme.,2018,357,J. Comput. Physics,,db/journals/jcphy/jcphy357.html#HuangC18a,https://doi.org/10.1016/j.jcp.2017.12.032 +Alastair J. Smith,A new iterative scheme for solving the discrete Smoluchowski equation.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#SmithWK18,https://doi.org/10.1016/j.jcp.2017.09.045 +Matteo Parsani,Entropy stable wall boundary conditions for the three-dimensional compressible Navier-Stokes equations.,2015,292,J. Comput. Physics,,db/journals/jcphy/jcphy292.html#ParsaniCN15a,https://doi.org/10.1016/j.jcp.2015.03.026 +David S. Abraham,A correction function method for the wave equation with interface jump conditions.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#AbrahamMN18,https://doi.org/10.1016/j.jcp.2017.10.015 +Mária Lukácová-Medvid'ová,Well-balanced finite volume evolution Galerkin methods for the shallow water equations.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#Lukacova-MedvidovaNK07,https://doi.org/10.1016/j.jcp.2006.06.015 +Claire Guerrier,Multiscale models and stochastic simulation methods for computing rare but key binding events in cell biology.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#GuerrierH17,https://doi.org/10.1016/j.jcp.2017.03.058 +Yajun Zhu,Implicit unified gas-kinetic scheme for steady state solutions in all flow regimes.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#ZhuZX16,https://doi.org/10.1016/j.jcp.2016.03.038 +Sang-Kil Son,Voronoi-cell finite difference method for accurate electronic structure calculation of polyatomic molecules on unstructured grids.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#Son11,https://doi.org/10.1016/j.jcp.2010.12.012 +Makoto Takamoto,A fast numerical scheme for causal relativistic hydrodynamics with dissipation.,2011,230,J. Comput. Physics,18,db/journals/jcphy/jcphy230.html#TakamotoI11,https://doi.org/10.1016/j.jcp.2011.05.030 +Roman Hatzky,Electromagnetic gyrokinetic PIC simulation with an adjustable control variates method.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#HatzkyKM07,https://doi.org/10.1016/j.jcp.2006.12.019 +Javier Murillo,Energy balance numerical schemes for shallow water equations with discontinuous topography.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#MurilloG13,https://doi.org/10.1016/j.jcp.2012.11.003 +Lijian Tan,Modeling the growth and interaction of multiple dendrites in solidification using a level set method.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#TanZ07a,https://doi.org/10.1016/j.jcp.2007.03.023 +C. H. Yu,A dispersively accurate compact finite difference method for the Degasperis-Procesi equation.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#YuS13,https://doi.org/10.1016/j.jcp.2012.10.046 +Ruairi M. Nestor,Extension of the finite volume particle method to viscous flow.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#NestorBLQ09,https://doi.org/10.1016/j.jcp.2008.11.003 +Gaël Poëtte,Uncertainty quantification for systems of conservation laws.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#PoetteDL09,https://doi.org/10.1016/j.jcp.2008.12.018 +Z. Jomaa,The Shortley-Weller embedded finite-difference method for the 3D Poisson equation with mixed boundary conditions.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#JomaaM10,https://doi.org/10.1016/j.jcp.2010.01.021 +X. Sheldon Wang,"Erratum to ""On computational issues of immersed finite element methods"" [J. Comput. Phys 228 (2009) 2535-2551].",2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#WangZL09a,https://doi.org/10.1016/j.jcp.2009.05.041 +Jürgen Dölz,Hierarchical matrix approximation for the uncertainty quantification of potentials on random domains.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#DolzH18,https://doi.org/10.1016/j.jcp.2018.05.040 +Richard Lombardini,Higher-order wavelet reconstruction/differentiation filters and Gibbs phenomena.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#LombardiniAKKGJ16,https://doi.org/10.1016/j.jcp.2015.10.035 +Fawang Liu,A semi-alternating direction method for a 2-D fractional FitzHugh-Nagumo monodomain model on an approximate irregular domain.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#LiuZTAB15,https://doi.org/10.1016/j.jcp.2014.06.001 +Junying Cao,A high order schema for the numerical solution of the fractional ordinary differential equations.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#CaoX13,https://doi.org/10.1016/j.jcp.2012.12.013 +Evangelia Kalligiannaki,Multilevel coarse graining and nano-pattern discovery in many particle stochastic systems.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#KalligiannakiKPV12,https://doi.org/10.1016/j.jcp.2011.12.011 +Dang Van Nguyen,A finite elements method to solve the Bloch-Torrey equation applied to diffusion magnetic resonance imaging.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#NguyenLGB14,https://doi.org/10.1016/j.jcp.2014.01.009 +Yuki Homma,Numerical modeling of the thermal force in a plasma for test-ion transport simulation based on a Monte Carlo Binary Collision Model (II) - Thermal forces due to temperature gradients parallel and perpendicular to the magnetic field.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#HommaH13,https://doi.org/10.1016/j.jcp.2013.04.039 +Peng Chen 0016,A new algorithm for high-dimensional uncertainty quantification based on dimension-adaptive sparse grid approximation and reduced basis methods.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#ChenQ15,https://doi.org/10.1016/j.jcp.2015.06.006 +Andreas Mark,Derivation and validation of a novel implicit second-order accurate immersed boundary method.,2008,227,J. Comput. Physics,13,db/journals/jcphy/jcphy227.html#MarkW08,https://doi.org/10.1016/j.jcp.2008.03.031 +Konstantin Lipnikov,Monotone finite volume schemes for diffusion equations on unstructured triangular and shape-regular polygonal meshes.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#LipnikovSSV07,https://doi.org/10.1016/j.jcp.2007.08.008 +Jiming Wu,A stabilized linearity-preserving scheme for the heterogeneous and anisotropic diffusion problems on polygonal meshes.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#WuGD12,https://doi.org/10.1016/j.jcp.2012.06.042 +Suchuan Dong,A convective-like energy-stable open boundary condition for simulations of incompressible flows.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#Dong15a,https://doi.org/10.1016/j.jcp.2015.09.017 +Alexia de Brauer,A Cartesian scheme for compressible multimaterial models in 3D.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#BrauerIM16,https://doi.org/10.1016/j.jcp.2016.02.032 +Dmitri Kuzmin,On the design of general-purpose flux limiters for finite element schemes. I. Scalar convection.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#Kuzmin06,https://doi.org/10.1016/j.jcp.2006.03.034 +Linghua Kong,Splitting multisymplectic integrators for Maxwell's equations.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#KongHZ10,https://doi.org/10.1016/j.jcp.2010.02.010 +Johan Helsing,An explicit kernel-split panel-based Nyström scheme for integral equations on axially symmetric surfaces.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#HelsingK14,https://doi.org/10.1016/j.jcp.2014.04.053 +Louis Ellam,A Bayesian approach to multiscale inverse problems with on-the-fly scale determination.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#EllamZG16,https://doi.org/10.1016/j.jcp.2016.08.031 +K. B. Nakshatrala,A numerical framework for diffusion-controlled bimolecular-reactive systems to enforce maximum principles and the non-negative constraint.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#NakshatralaMV13,https://doi.org/10.1016/j.jcp.2013.07.010 +M. A. Badri,High performance computation of radiative transfer equation using the finite element method.,2018,360,J. Comput. Physics,,db/journals/jcphy/jcphy360.html#BadriJRF18,https://doi.org/10.1016/j.jcp.2018.01.027 +Alfredo González-Calderón,Application of the and#952*-method to a telegraphic model of fluid flow in a dual-porosity medium.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#Gonzalez-Calderon18,https://doi.org/10.1016/j.jcp.2017.09.014 +Allan Peter Engsig-Karup,An efficient flexible-order model for 3D nonlinear water waves.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#Engsig-KarupBL09,https://doi.org/10.1016/j.jcp.2008.11.028 +Steffen Basting,Extended ALE Method for fluid-structure interaction problems with large structural displacements.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#BastingQCG17,https://doi.org/10.1016/j.jcp.2016.11.043 +Filipe S. Pereira,Challenges in Scale-Resolving Simulations of turbulent wake flows with coherent structures.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#PereiraEVG18,https://doi.org/10.1016/j.jcp.2018.02.038 +Bo Wang,Hybridizable discontinuous Galerkin method (HDG) for Stokes interface flow.,2013,247,J. Comput. Physics,,db/journals/jcphy/jcphy247.html#WangK13,https://doi.org/10.1016/j.jcp.2013.03.064 +M. Hossein Gorji,An efficient particle Fokker-Planck algorithm for rarefied gas flows.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#GorjiJ14,https://doi.org/10.1016/j.jcp.2013.12.046 +John P. Boyd 0001,Three ways to solve the Poisson equation on a sphere with Gaussian forcing.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#BoydZ09,https://doi.org/10.1016/j.jcp.2009.03.023 +Siddharth Savadatti,Accurate absorbing boundary conditions for anisotropic elastic media. Part 1: Elliptic anisotropy.,2012,231,J. Comput. Physics,22,db/journals/jcphy/jcphy231.html#SavadattiG12,https://doi.org/10.1016/j.jcp.2012.05.033 +Tuhin Sahai,Uncertainty quantification in hybrid dynamical systems.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#SahaiP13,https://doi.org/10.1016/j.jcp.2012.10.030 +J. López,Analytical and geometrical tools for 3D volume of fluid methods in general grids.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#LopezH08,https://doi.org/10.1016/j.jcp.2008.03.010 +Naixing Feng,Novel and efficient FDTD implementation of higher-order perfectly matched layer based on ADE method.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#FengL13,https://doi.org/10.1016/j.jcp.2012.08.012 +Christopher J. Roy,On the generation of exact solutions for evaluating numerical schemes and estimating discretization error.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#RoyS09,https://doi.org/10.1016/j.jcp.2008.11.008 +Jianming Yang,An embedded-boundary formulation for large-eddy simulation of turbulent flows interacting with moving boundaries.,2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#YangB06,https://doi.org/10.1016/j.jcp.2005.10.035 +Ravi Radhakrishnan,Temporal multiscale approach for nanocarrier motion with simultaneous adhesion and hydrodynamic interactions in targeted drug delivery.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#RadhakrishnanULAE13,https://doi.org/10.1016/j.jcp.2012.10.026 +Gilles Serre,Reliable reduced-order models for time-dependent linearized Euler equations.,2012,231,J. Comput. Physics,15,db/journals/jcphy/jcphy231.html#SerreLGB12,https://doi.org/10.1016/j.jcp.2012.04.019 +Gian Luca Delzanno,An optimal robust equidistribution method for two-dimensional grid adaptation based on Monge-Kantorovich optimization.,2008,227,J. Comput. Physics,23,db/journals/jcphy/jcphy227.html#DelzannoCFCL08,https://doi.org/10.1016/j.jcp.2008.07.020 +Miguel Fosas de Pando,Nonlinear model-order reduction for compressible flow solvers using the Discrete Empirical Interpolation Method.,2016,324,J. Comput. Physics,,db/journals/jcphy/jcphy324.html#PandoSS16,https://doi.org/10.1016/j.jcp.2016.08.004 +Manuel Duarte Ortigueira,What is a fractional derivative?,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#OrtigueiraM15,https://doi.org/10.1016/j.jcp.2014.07.019 +Christopher R. Anderson,Efficient solution of the Schroedinger-Poisson equations in layered semiconductor devices.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#Anderson09,https://doi.org/10.1016/j.jcp.2009.03.037 +Kota Hirabayashi,A new framework for magnetohydrodynamic simulations with anisotropic pressure.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#HirabayashiHA16,https://doi.org/10.1016/j.jcp.2016.09.064 +Andrew J. Christlieb,A high-order positivity-preserving single-stage single-step method for the ideal magnetohydrodynamic equations.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#ChristliebFST16,https://doi.org/10.1016/j.jcp.2016.04.016 +Jana Orszaghova,From the paddle to the beach - A Boussinesq shallow water numerical wave tank based on Madsen and Sørensen's equations.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#OrszaghovaBT12,https://doi.org/10.1016/j.jcp.2011.08.028 +Andrew J. Hesford,Reduced-rank approximations to the far-field transform in the gridded fast multipole method.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#HesfordW11,https://doi.org/10.1016/j.jcp.2011.02.016 +S. Zandi,Spectrally-accurate algorithm for the analysis of flows in two-dimensional vibrating channels.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#ZandiMF15,https://doi.org/10.1016/j.jcp.2015.08.025 +A. W. Vreman,A staggered overset grid method for resolved simulation of incompressible flow around moving spheres.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#Vreman17,https://doi.org/10.1016/j.jcp.2016.12.027 +Britton Chang,The incorporation of the semi-implicit linear equations into Newton's method to solve radiation transfer equations.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#Chang07,https://doi.org/10.1016/j.jcp.2007.05.038 +Charbel Farhat,A hybrid discontinuous Galerkin method for computing the ground state solution of Bose-Einstein condensates.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#FarhatT12,https://doi.org/10.1016/j.jcp.2012.03.010 +Andreas Wingen,Regularization of soft-X-ray imaging in the DIII-D tokamak.,2015,289,J. Comput. Physics,,db/journals/jcphy/jcphy289.html#WingenSUHH15,https://doi.org/10.1016/j.jcp.2015.02.040 +Illia Thiele,Boundary conditions for arbitrarily shaped and tightly focused laser pulses in electromagnetic codes.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#ThieleSN16,https://doi.org/10.1016/j.jcp.2016.06.004 +Adrien Loseille,Fully anisotropic goal-oriented mesh adaptation for 3D steady Euler equations.,2010,229,J. Comput. Physics,8,db/journals/jcphy/jcphy229.html#LoseilleDA10,https://doi.org/10.1016/j.jcp.2009.12.021 +Bo Gao,A note on hybrid Eulerian/Lagrangian computation of compressible inviscid and viscous flows.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#GaoXW07,https://doi.org/10.1016/j.jcp.2007.05.019 +Diego del-Castillo-Negrete,Compression of magnetohydrodynamic simulation data using singular value decomposition.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#del-Castillo-NegreteHSD07,https://doi.org/10.1016/j.jcp.2006.07.022 +Thorsten Kattelans,Conservation of mass and momentum of the least-squares spectral collocation scheme for the Stokes problem.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#KattelansH09,https://doi.org/10.1016/j.jcp.2009.03.015 +Yan Yu,Uncertainty quantification for chaotic computational fluid dynamics.,2006,217,J. Comput. Physics,1,db/journals/jcphy/jcphy217.html#YuZLPBGG06,https://doi.org/10.1016/j.jcp.2006.03.030 +Jun Bo Cheng,A third-order moving mesh cell-centered scheme for one-dimensional elastic-plastic flows.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#ChengHJT17,https://doi.org/10.1016/j.jcp.2017.08.018 +Sergey N. Medyanik,Domain reduction method for atomistic simulations.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#MedyanikKL06,https://doi.org/10.1016/j.jcp.2006.03.008 +Fabrice Falissard,Chebyshev-like generalized Shapiro filters for high-accuracy flow computations.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#Falissard17,https://doi.org/10.1016/j.jcp.2017.01.067 +Jan Nordström,Weak and strong wall boundary procedures and convergence to steady-state of the Navier-Stokes equations.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#NordstromEE12,https://doi.org/10.1016/j.jcp.2012.04.007 +Guglielmo Stecca,Upwind-biased FORCE schemes with applications to free-surface shallow flows.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#SteccaST10,https://doi.org/10.1016/j.jcp.2010.05.001 +Will Pazner,Stage-parallel fully implicit Runge-Kutta solvers for discontinuous Galerkin fluid simulations.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#PaznerP17,https://doi.org/10.1016/j.jcp.2017.01.050 +Ya-Nan Zhang,Alternating direction implicit schemes for the two-dimensional fractional sub-diffusion equation.,2011,230,J. Comput. Physics,24,db/journals/jcphy/jcphy230.html#ZhangS11a,https://doi.org/10.1016/j.jcp.2011.08.020 +Phaedon-Stelios Koutsourelakis,Special Issue: Big data and predictive computational modeling.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#KoutsourelakisZ16,https://doi.org/10.1016/j.jcp.2016.03.028 +Carsten Burstedde,Computing light masks in neutral atom lithography.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#BursteddeBK06,https://doi.org/10.1016/j.jcp.2006.07.012 +Jianming Zhang,Adaptive spatial decomposition in fast multipole method.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#ZhangT07,https://doi.org/10.1016/j.jcp.2007.03.032 +Holger Brandsmeier,A multiscale hp-FEM for 2D photonic crystal bands.,2011,230,J. Comput. Physics,2,db/journals/jcphy/jcphy230.html#BrandsmeierSS11,https://doi.org/10.1016/j.jcp.2010.09.018 +Wijnand Hoitinga,A discontinuous Galerkin finite-element method for a 1D prototype of the Boltzmann equation.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#HoitingaB11,https://doi.org/10.1016/j.jcp.2011.04.016 +Rafail V. Abramov,An improved algorithm for the multidimensional moment-constrained maximum entropy problem.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#Abramov07,https://doi.org/10.1016/j.jcp.2007.04.026 +Bruno Cochelin,Power series analysis as a major breakthrough to improve the efficiency of Asymptotic Numerical Method in the vicinity of bifurcations.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#CochelinM13,https://doi.org/10.1016/j.jcp.2012.11.016 +Weibing Deng,Upscaling methods for a class of convection-diffusion equations with highly oscillating coefficients.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#DengGH08,https://doi.org/10.1016/j.jcp.2008.04.037 +Karin Leiderman,A regularization method for the numerical solution of periodic Stokes flow.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#LeidermanBCL13,https://doi.org/10.1016/j.jcp.2012.09.035 +Mauro Valorani,The G-Scheme: A framework for multi-scale adaptive model reduction.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#ValoraniP09,https://doi.org/10.1016/j.jcp.2009.03.011 +Yunkai Zhou,Self-consistent-field calculations using Chebyshev-filtered subspace iteration.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#ZhouSTC06,https://doi.org/10.1016/j.jcp.2006.03.017 +Nachiketa Mishra,A comparative study on low-memory iterative solvers for FFT-based homogenization of periodic media.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#MishraVZ16,https://doi.org/10.1016/j.jcp.2016.05.041 +Zhiming Lu,Identifying arbitrary parameter zonation using multiple level set functions.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#LuVL18,https://doi.org/10.1016/j.jcp.2018.03.016 +M. A. Herrada,A numerical method to study the dynamics of capillary fluid systems.,2016,306,J. Comput. Physics,,db/journals/jcphy/jcphy306.html#HerradaM16,https://doi.org/10.1016/j.jcp.2015.11.048 +Siarhei Khirevich,Coarse- and fine-grid numerical behavior of MRT/TRT lattice-Boltzmann schemes in regular and random sphere packings.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#KhirevichGT15,https://doi.org/10.1016/j.jcp.2014.10.038 +Andreas Rätz,Surface evolution of elastically stressed films under deposition by a diffuse interface model.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#RatzRV06,https://doi.org/10.1016/j.jcp.2005.09.013 +Vincent Le Chenadec,A monotonicity preserving conservative sharp interface flow solver for high density ratio two-phase flows.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#ChenadecP13a,https://doi.org/10.1016/j.jcp.2013.04.027 +Alexander Thomas White,Rotational invariance in the three-dimensional lattice Boltzmann method is dependent on the choice of lattice.,2011,230,J. Comput. Physics,16,db/journals/jcphy/jcphy230.html#WhiteC11,https://doi.org/10.1016/j.jcp.2011.04.031 +Amartya Banerjee,A spectral scheme for Kohn-Sham density functional theory of clusters.,2015,287,J. Comput. Physics,,db/journals/jcphy/jcphy287.html#BanerjeeEJ15,https://doi.org/10.1016/j.jcp.2015.02.009 +Keizo Fujimoto,A new electromagnetic particle-in-cell model with adaptive mesh refinement for high-performance parallel computation.,2011,230,J. Comput. Physics,23,db/journals/jcphy/jcphy230.html#Fujimoto11,https://doi.org/10.1016/j.jcp.2011.08.002 +Jan Ole Skogestad,Domain decomposition strategies for nonlinear flow problems in porous media.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#SkogestadKN13,https://doi.org/10.1016/j.jcp.2012.10.001 +Matthew Elsey,Diffusion generated motion for grain growth in two and three dimensions.,2009,228,J. Comput. Physics,21,db/journals/jcphy/jcphy228.html#ElseyES09,https://doi.org/10.1016/j.jcp.2009.07.020 +Costanza Aricò,Monotonic solution of heterogeneous anisotropic diffusion problems.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#AricoT13,https://doi.org/10.1016/j.jcp.2013.06.017 +P. J. van Dijk,Hermite-DG methods for pdf equations modelling particle transport and deposition in turbulent boundary layers.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#DijkS12,https://doi.org/10.1016/j.jcp.2012.04.016 +Mircea Grigoriu,Probabilistic models for stochastic elliptic partial differential equations.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#Grigoriu10,https://doi.org/10.1016/j.jcp.2010.07.023 +Mehmet Sahin,An arbitrary Lagrangian-Eulerian formulation for the numerical simulation of flow patterns generated by the hydromedusa Aequorea victoria.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#SahinM09,https://doi.org/10.1016/j.jcp.2009.03.027 +Oindrila Kanjilal,Girsanov's transformation based variance reduced Monte Carlo simulation schemes for reliability estimation in nonlinear stochastic dynamics.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#KanjilalM17,https://doi.org/10.1016/j.jcp.2017.03.047 +Kailiang Wu,Finite volume local evolution Galerkin method for two-dimensional relativistic hydrodynamics.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#WuT14,https://doi.org/10.1016/j.jcp.2013.08.057 +Manuel Aldegunde,Quantifying uncertainties in first-principles alloy thermodynamics using cluster expansions.,2016,323,J. Comput. Physics,,db/journals/jcphy/jcphy323.html#AldegundeZK16,https://doi.org/10.1016/j.jcp.2016.07.016 +Rouhollah Tavakoli,Unconditionally energy stable time stepping scheme for Cahn-Morral equation: Application to multi-component spinodal decomposition and optimal space tiling.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#Tavakoli16,https://doi.org/10.1016/j.jcp.2015.10.018 +Alex Simmons,A preconditioned numerical solver for stiff nonlinear reaction-diffusion equations with fractional Laplacians that avoids dense matrices.,2015,287,J. Comput. Physics,,db/journals/jcphy/jcphy287.html#SimmonsYM15,https://doi.org/10.1016/j.jcp.2015.02.012 +Shingyu Leung,A grid based particle method for evolution of open curves and surfaces.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#LeungZ09a,https://doi.org/10.1016/j.jcp.2009.07.017 +Markus Schöberl,Predictive coarse-graining.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#SchoberlZK17,https://doi.org/10.1016/j.jcp.2016.10.073 +Henning Sauerland,The extended finite element method for two-phase and free-surface flows: A systematic study.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#SauerlandF11,https://doi.org/10.1016/j.jcp.2011.01.033 +Milan Kucharik,A comparative study of interface reconstruction methods for multi-material ALE simulations.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#KucharikGSS10,https://doi.org/10.1016/j.jcp.2009.07.009 +Habib N. Najm,Enforcing positivity in intrusive PC-UQ methods for reactive ODE systems.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#NajmV14,https://doi.org/10.1016/j.jcp.2014.03.061 +Thomas Melvin,Wave dispersion properties of compound finite elements.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#MelvinT17,https://doi.org/10.1016/j.jcp.2017.02.025 +Johan Helsing,On the evaluation of layer potentials close to their sources.,2008,227,J. Comput. Physics,5,db/journals/jcphy/jcphy227.html#HelsingO08,https://doi.org/10.1016/j.jcp.2007.11.024 +Lucian Ivan,High-order solution-adaptive central essentially non-oscillatory (CENO) method for viscous flows.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#IvanG14,https://doi.org/10.1016/j.jcp.2013.09.045 +Tyrone S. Phillips,Error transport equation boundary conditions for the Euler and Navier-Stokes equations.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#PhillipsDRB17,https://doi.org/10.1016/j.jcp.2016.11.002 +David P. Nicholls,A rapid boundary perturbation algorithm for scattering by families of rough surfaces.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#Nicholls09,https://doi.org/10.1016/j.jcp.2009.01.018 +Sriramkrishnan Muralikrishnan,An improved iterative HDG approach for partial differential equations.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#MuralikrishnanT18,https://doi.org/10.1016/j.jcp.2018.04.033 +Jianping Zhang,Variational image registration by a total fractional-order variation model.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#ZhangC15,https://doi.org/10.1016/j.jcp.2015.02.021 +Yasuhiro Idomura,New conservative gyrokinetic full-f Vlasov code and its comparison to gyrokinetic 8*f particle-in-cell code.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#IdomuraITV07,https://doi.org/10.1016/j.jcp.2007.04.013 +Mahmoud A. E. Abdelrahman,A new front tracking scheme for the ultra-relativistic Euler equations.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#AbdelrahmanK14,https://doi.org/10.1016/j.jcp.2014.06.051 +Murat Barisik,Boundary treatment effects on molecular dynamics simulations of interface thermal resistance.,2012,231,J. Comput. Physics,23,db/journals/jcphy/jcphy231.html#BarisikB12,https://doi.org/10.1016/j.jcp.2012.07.026 +M. Roger,A hybrid transport-diffusion model for radiative transfer in absorbing and scattering media.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#RogerCCC14,https://doi.org/10.1016/j.jcp.2014.06.063 +Darko Stosic,GPU-advanced 3D electromagnetic simulations of superconductors in the Ginzburg-Landau formalism.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#StosicSLSM16,https://doi.org/10.1016/j.jcp.2016.06.040 +Tapan K. Sengupta,Analysis of anisotropy of numerical wave solutions by high accuracy finite difference methods.,2011,230,J. Comput. Physics,1,db/journals/jcphy/jcphy230.html#SenguptaRSV11,https://doi.org/10.1016/j.jcp.2010.09.003 +Spencer E. Olson,Gridless DSMC.,2008,227,J. Comput. Physics,17,db/journals/jcphy/jcphy227.html#OlsonC08,https://doi.org/10.1016/j.jcp.2008.04.038 +Jianbo Cui,Stochastic symplectic and multi-symplectic methods for nonlinear Schrödinger equation with white noise dispersion.,2017,342,J. Comput. Physics,,db/journals/jcphy/jcphy342.html#CuiHLZ17,https://doi.org/10.1016/j.jcp.2017.04.029 +Jean-Luc Fattebert,Accelerated Block Preconditioned Gradient method for large scale wave functions calculations in Density Functional Theory.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#Fattebert10,https://doi.org/10.1016/j.jcp.2009.09.035 +Shan Zhao,Operator splitting ADI schemes for pseudo-time coupled nonlinear solvation simulations.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#Zhao14,https://doi.org/10.1016/j.jcp.2013.09.043 +Yinhua Xia,Local discontinuous Galerkin methods for the Cahn-Hilliard type equations.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#XiaXS07,https://doi.org/10.1016/j.jcp.2007.08.001 +Kirill A. Bulashevich,Simulation of visible and ultra-violet group-III nitride light emitting diodes.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#BulashevichMKZZ06,https://doi.org/10.1016/j.jcp.2005.08.011 +Daniel Hartmann,"Erratum to ""Differential Equation Based Constrained Reinitialization for Level Set Methods"" [J. Comput. Phys. 227(2008) 6821-6845].",2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#HartmannMS08a,https://doi.org/10.1016/j.jcp.2008.08.001 +Selim Esedoglu,Kernels with prescribed surface tension and mobility for threshold dynamics schemes.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#EsedogluJZ17,https://doi.org/10.1016/j.jcp.2017.02.023 +Soheil Soghrati,Hierarchical interface-enriched finite element method: An automated technique for mesh-independent simulations.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#Soghrati14,https://doi.org/10.1016/j.jcp.2014.06.016 +Pablo J. Blanco,On the continuity of mean total normal stress in geometrical multiscale cardiovascular problems.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#BlancoDM13,https://doi.org/10.1016/j.jcp.2013.05.037 +Pieter W. Hemker,A trust-region strategy for manifold-mapping optimization.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#HemkerC07,https://doi.org/10.1016/j.jcp.2007.04.003 +Miquel Aguirre,A vertex centred Finite Volume Jameson-Schmidt-Turkel (JST) algorithm for a mixed conservation formulation in solid dynamics.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#AguirreGBC14,https://doi.org/10.1016/j.jcp.2013.12.012 +E. D. Kay,A multi-layer integral model for locally-heated thin film flow.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#KayHP17,https://doi.org/10.1016/j.jcp.2017.01.066 +Jaw-Yen Yang,High-order kinetic flux vector splitting schemes in general coordinates for ideal quantum gas dynamics.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#YangHSX07,https://doi.org/10.1016/j.jcp.2007.08.014 +Iain Waugh,Matrix-free continuation of limit cycles for bifurcation analysis of large thermoacoustic systems.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#WaughIJ13,https://doi.org/10.1016/j.jcp.2012.12.034 +Kun Wang,A scalable parallel black oil simulator on distributed memory parallel computers.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#WangLC15,https://doi.org/10.1016/j.jcp.2015.08.016 +Jie Shen 0001,The scalar auxiliary variable (SAV) approach for gradient flows.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#ShenXY18,https://doi.org/10.1016/j.jcp.2017.10.021 +Christophe Buet,Asymptotic preserving and positive schemes for radiation hydrodynamics.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#BuetD06,https://doi.org/10.1016/j.jcp.2005.11.011 +Daniele A. Di Pietro,Weighted interior penalty discretization of fully nonlinear and weakly dispersive free surface shallow water flows.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#PietroM18,https://doi.org/10.1016/j.jcp.2017.11.009 +Romina Gobbi,Numerical solution of certain classes of transport equations in any dimension by Shannon sampling.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#GobbiPS10,https://doi.org/10.1016/j.jcp.2010.01.013 +Sébastien Leclaire,Progress and investigation on lattice Boltzmann modeling of multiple immiscible fluids or components with variable density and viscosity ratios.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#LeclaireRT13,https://doi.org/10.1016/j.jcp.2013.03.039 +Tsung-Min Hwang,Numerical schemes for three-dimensional irregular shape quantum dots over curvilinear coordinate systems.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#HwangWW07,https://doi.org/10.1016/j.jcp.2007.04.022 +Frédérique Le Louër,A high order spectral algorithm for elastic obstacle scattering in three dimensions.,2014,279,J. Comput. Physics,,db/journals/jcphy/jcphy279.html#Louer14,https://doi.org/10.1016/j.jcp.2014.08.047 +Bernd Böttger,Phase-field simulation of microstructure formation in technical castings - A self-consistent homoenthalpic approach to the micro-macro problem.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#BottgerEA09,https://doi.org/10.1016/j.jcp.2009.06.028 +Athanasios G. Polimeridis,Stable FFT-JVIE solvers for fast analysis of highly inhomogeneous dielectric objects.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#PolimeridisVDW14,https://doi.org/10.1016/j.jcp.2014.03.026 +Bo Wang,Error analysis of a discontinuous Galerkin method for Maxwell equations in dispersive media.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#WangXZ10,https://doi.org/10.1016/j.jcp.2010.07.038 +Andrea Mignone,High-order conservative reconstruction schemes for finite volume methods in cylindrical and spherical coordinates.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#Mignone14,https://doi.org/10.1016/j.jcp.2014.04.001 +Nail K. Yamaleev,Third-order Energy Stable WENO scheme.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#YamaleevC09,https://doi.org/10.1016/j.jcp.2009.01.011 +Giovanni Iadarola,GPU-accelerated T-matrix algorithm for light-scattering simulations.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#IadarolaFNVM12,https://doi.org/10.1016/j.jcp.2012.03.008 +Emilio Castronovo,Mathematical test criteria for filtering complex systems: Plentiful observations.,2008,227,J. Comput. Physics,7,db/journals/jcphy/jcphy227.html#CastronovoHM08,https://doi.org/10.1016/j.jcp.2007.12.016 +Robert E. Zillich,Combination of the pair density approximation and the Takahashi-Imada approximation for path integral Monte Carlo simulations.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#Zillich15,https://doi.org/10.1016/j.jcp.2015.08.020 +Xi Deng,High fidelity discontinuity-resolving reconstruction for compressible multiphase flows with moving interfaces.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#DengIXSX18,https://doi.org/10.1016/j.jcp.2018.03.036 +Francesco Miniati,A hybrid scheme for gas-dust systems stiffly coupled via viscous drag.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#Miniati10,https://doi.org/10.1016/j.jcp.2010.01.034 +Wanda Strychalski,A poroelastic immersed boundary method with applications to cell biology.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#StrychalskiCLG15,https://doi.org/10.1016/j.jcp.2014.10.004 +Jun Fang,A Kohn-Sham equation solver based on hexahedral finite elements.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#FangGZ12,https://doi.org/10.1016/j.jcp.2011.12.043 +Jae-Hong Pyo,Gauge-Uzawa methods for incompressible flows with variable density.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#PyoS07,https://doi.org/10.1016/j.jcp.2006.06.013 +Mayya Tokman,A new class of exponential propagation iterative methods of Runge-Kutta type (EPIRK).,2011,230,J. Comput. Physics,24,db/journals/jcphy/jcphy230.html#Tokman11,https://doi.org/10.1016/j.jcp.2011.08.023 +Zhen-Hua Jiang,Efficient methods with higher order interpolation and MOOD strategy for compressible turbulence simulations.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#JiangYY18,https://doi.org/10.1016/j.jcp.2018.06.018 +Thomas Orgis,Baroclinic waves on the 6* plane using low-order Discontinuous Galerkin discretisation.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#OrgisLHD17,https://doi.org/10.1016/j.jcp.2017.03.029 +Yinhua Xia,A fully discrete stable discontinuous Galerkin method for the thin film epitaxy problem without slope selection.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#Xia15,https://doi.org/10.1016/j.jcp.2014.09.025 +Randall McDermott,A velocity divergence constraint for large-eddy simulation of low-Mach flows.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#McDermott14,https://doi.org/10.1016/j.jcp.2014.06.019 +Jens Lindström,A stable and high-order accurate conjugate heat transfer problem.,2010,229,J. Comput. Physics,14,db/journals/jcphy/jcphy229.html#LindstromN10,https://doi.org/10.1016/j.jcp.2010.04.010 +Olha Ivanyshyn,Inverse scattering for surface impedance from phase-less far field data.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#IvanyshynK11,https://doi.org/10.1016/j.jcp.2011.01.038 +Fanbin Bu,A fast and high-order method for the three-dimensional elastic wave scattering problem.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#BuLR14,https://doi.org/10.1016/j.jcp.2013.11.009 +Rajeev K. Jaiman,Conservative load transfer along curved fluid-solid interface with non-matching meshes.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#JaimanJGL06,https://doi.org/10.1016/j.jcp.2006.02.016 +Zhen Guan,Second order convex splitting schemes for periodic nonlocal Cahn-Hilliard and Allen-Cahn equations.,2014,277,J. Comput. Physics,,db/journals/jcphy/jcphy277.html#GuanLWW14,https://doi.org/10.1016/j.jcp.2014.08.001 +W. Pan,Smoothed particle hydrodynamics non-Newtonian model for ice-sheet and ice-shelf dynamics.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#PanTM13,https://doi.org/10.1016/j.jcp.2012.10.027 +Paul Tranquilli,Exponential-Krylov methods for ordinary differential equations.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#TranquilliS14,https://doi.org/10.1016/j.jcp.2014.08.013 +Hadi Hajibeygi,Adaptive iterative multiscale finite volume method.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#HajibeygiJ11,https://doi.org/10.1016/j.jcp.2010.10.009 +Denis Ricot,Lattice Boltzmann method with selective viscosity filter.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#RicotMSB09,https://doi.org/10.1016/j.jcp.2009.03.030 +Julien Favier,A Lattice Boltzmann-Immersed Boundary method to simulate the fluid interaction with moving and slender flexible objects.,2014,261,J. Comput. Physics,,db/journals/jcphy/jcphy261.html#FavierRP14,https://doi.org/10.1016/j.jcp.2013.12.052 +Ilias Bilionis,Free energy computations by minimization of Kullback-Leibler divergence: An efficient adaptive biasing potential method for sparse representations.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#BilionisK12,https://doi.org/10.1016/j.jcp.2012.01.033 +Jin-Luen Lee,A multistep flux-corrected transport scheme.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#LeeBM10,https://doi.org/10.1016/j.jcp.2010.08.039 +Jean Michel D. Sellier,The many-body Wigner Monte Carlo method for time-dependent ab-initio quantum simulations.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#SellierD14a,https://doi.org/10.1016/j.jcp.2014.05.039 +V. Vaibhav,Artificial boundary conditions for certain evolution PDEs with cubic nonlinearity for non-compactly supported initial data.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#Vaibhav11,https://doi.org/10.1016/j.jcp.2011.01.024 +Patrick Jenny,Modeling complex wells with the multi-scale finite-volume method.,2009,228,J. Comput. Physics,3,db/journals/jcphy/jcphy228.html#JennyL09,https://doi.org/10.1016/j.jcp.2008.09.026 +Junseok Kim,A finite difference method for a conservative Allen-Cahn equation on non-flat surfaces.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#KimJYC17,https://doi.org/10.1016/j.jcp.2016.12.060 +Arthur E. P. Veldman,The numerical simulation of liquid sloshing on board spacecraft.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#VeldmanGLHV07,https://doi.org/10.1016/j.jcp.2006.12.020 +Christopher Harder,A family of Multiscale Hybrid-Mixed finite element methods for the Darcy equation with rough coefficients.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#HarderPV13,https://doi.org/10.1016/j.jcp.2013.03.019 +Robert Montgomery,Use of multiscale zirconium alloy deformation models in nuclear fuel behavior analysis.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#MontgomeryTLASS17,https://doi.org/10.1016/j.jcp.2016.09.051 +Moataz O. Abu-Al-Saud,A conservative and well-balanced surface tension model.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#Abu-Al-SaudPT18,https://doi.org/10.1016/j.jcp.2018.02.022 +Michael Dumbser,A simple robust and accurate a posteriori sub-cell finite volume limiter for the discontinuous Galerkin method on unstructured meshes.,2016,319,J. Comput. Physics,,db/journals/jcphy/jcphy319.html#DumbserL16,https://doi.org/10.1016/j.jcp.2016.05.002 +Marc Buffat,A spectral fictitious domain method with internal forcing for solving elliptic PDEs.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#BuffatP11,https://doi.org/10.1016/j.jcp.2010.12.004 +Per-Gunnar Martinsson,A direct solver for variable coefficient elliptic PDEs discretized via a composite spectral collocation method.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#Martinsson13,https://doi.org/10.1016/j.jcp.2013.02.019 +Farzad Ismail,Developments of entropy-stable residual distribution methods for conservation laws I: Scalar problems.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#IsmailC17,https://doi.org/10.1016/j.jcp.2016.10.065 +Amaury Johnen,Geometrical validity of curvilinear finite elements.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#JohnenRG13,https://doi.org/10.1016/j.jcp.2012.08.051 +Yue Tian,Dynamic ray tracing and traveltime corrections for global seismic tomography.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#TianHNMD07,https://doi.org/10.1016/j.jcp.2007.04.025 +Alexander Barnett,A new integral representation for quasi-periodic fields and its application to two-dimensional band structure calculations.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#BarnettG10,https://doi.org/10.1016/j.jcp.2010.05.029 +Khosro Shahbazi,Multi-domain Fourier-continuation/WENO hybrid solver for conservation laws.,2011,230,J. Comput. Physics,24,db/journals/jcphy/jcphy230.html#ShahbaziABH11,https://doi.org/10.1016/j.jcp.2011.08.024 +Guoqiao You,VIALS: An Eulerian tool based on total variation and the level set method for studying dynamical systems.,2014,266,J. Comput. Physics,,db/journals/jcphy/jcphy266.html#YouL14,https://doi.org/10.1016/j.jcp.2014.02.014 +Rémi Abgrall,Linear and non-linear high order accurate residual distribution schemes for the discretization of the steady compressible Navier-Stokes equations.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#AbgrallS15,https://doi.org/10.1016/j.jcp.2014.11.031 +Chieh-Sen Huang,A re-averaged WENO reconstruction and a third order CWENO scheme for hyperbolic conservation laws.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#HuangAH14,https://doi.org/10.1016/j.jcp.2013.12.056 +Umer Zeeshan Ijaz,Nonstationary phase boundary estimation in electrical impedance tomography using unscented Kalman filter.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#IjazKLKK08,https://doi.org/10.1016/j.jcp.2007.12.025 +Steven Diot,An interface reconstruction method based on an analytical formula for 3D arbitrary convex cells.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#DiotF16,https://doi.org/10.1016/j.jcp.2015.10.011 +A. Kaufmann,Comparison between Lagrangian and mesoscopic Eulerian modelling approaches for inertial particles suspended in decaying isotropic turbulence.,2008,227,J. Comput. Physics,13,db/journals/jcphy/jcphy227.html#KaufmannMSH08,https://doi.org/10.1016/j.jcp.2008.03.004 +Haiyan Jiang,A device adaptive inflow boundary condition for Wigner equations of quantum transport.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#JiangLC14,https://doi.org/10.1016/j.jcp.2013.11.007 +Lorenzo Botti,A pressure-correction scheme for convection-dominated incompressible flows with discontinuous velocity and continuous pressure.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#BottiP11,https://doi.org/10.1016/j.jcp.2010.10.004 +Robert R. Nourgaliev,High-fidelity interface tracking in compressible flows: Unlimited anchored adaptive level set.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#NourgalievT07,https://doi.org/10.1016/j.jcp.2006.10.031 +A. B. Morris,Monte Carlo solution of the Boltzmann equation via a discrete velocity model.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#MorrisVG11,https://doi.org/10.1016/j.jcp.2010.10.037 +Gong Cheng,Accurate and stable time stepping in ice sheet modeling.,2017,329,J. Comput. Physics,,db/journals/jcphy/jcphy329.html#ChengLS17,https://doi.org/10.1016/j.jcp.2016.10.060 +A. H. L. M. Charin,A moving mesh interface tracking method for simulation of liquid-liquid systems.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#CharinTJSL17,https://doi.org/10.1016/j.jcp.2017.01.011 +M. Arndt,Efficient algorithms for discrete lattice calculations.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#ArndtST09,https://doi.org/10.1016/j.jcp.2009.03.039 +Stefan Bilbao,Higher-order accurate two-step finite difference schemes for the many-dimensional wave equation.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#BilbaoH18,https://doi.org/10.1016/j.jcp.2018.04.012 +Hiroki Sakamoto,Improvement and performance evaluation of the perturbation source method for an exact Monte Carlo perturbation calculation in fixed source problems.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#SakamotoY17,https://doi.org/10.1016/j.jcp.2017.05.004 +Haijun Yu,Numerical approximations for a phase-field moving contact line model with variable densities and viscosities.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#YuY17,https://doi.org/10.1016/j.jcp.2017.01.026 +Mohamed M. Selim,Incremental approach for radial basis functions mesh deformation with greedy algorithm.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#SelimKS17,https://doi.org/10.1016/j.jcp.2017.03.037 +Guanghui Hu,An adaptive finite volume method for 2D steady Euler equations with WENO reconstruction.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#Hu13,https://doi.org/10.1016/j.jcp.2013.07.006 +Björn Engquist,Seafloor identification in sonar imagery via simulations of Helmholtz equations and discrete optimization.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#EngquistFHZ17,https://doi.org/10.1016/j.jcp.2017.03.004 +C. Kristopher Garrett,Optimization and large scale computation of an entropy-based moment closure.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#GarrettHH15,https://doi.org/10.1016/j.jcp.2015.09.008 +J. P. Pontaza,A spectral element least-squares formulation for incompressible Navier-Stokes flows using triangular nodal elements.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#Pontaza07a,https://doi.org/10.1016/j.jcp.2006.06.035 +Fang Liu,Numerical integration for ab initio many-electron self energy calculations within the GW approximation.,2015,286,J. Comput. Physics,,db/journals/jcphy/jcphy286.html#LiuLVLKSJDYNL15,https://doi.org/10.1016/j.jcp.2015.01.023 +Christopher B. Ivey,Accurate interface normal and curvature estimates on three-dimensional unstructured non-convex polyhedral meshes.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#IveyM15,https://doi.org/10.1016/j.jcp.2015.07.055 +S. Adami,A generalized wall boundary condition for smoothed particle hydrodynamics.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#AdamiHA12,https://doi.org/10.1016/j.jcp.2012.05.005 +Benjamin Miquel,Hybrid Chebyshev function bases for sparse spectral methods in parity-mixed PDEs on an infinite domain.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#MiquelJ17,https://doi.org/10.1016/j.jcp.2017.08.034 +Michael Baldauf,Stability analysis for linear discretisations of the advection equation with Runge-Kutta time integration.,2008,227,J. Comput. Physics,13,db/journals/jcphy/jcphy227.html#Baldauf08,https://doi.org/10.1016/j.jcp.2008.03.025 +Tiangang Cui,Scalable posterior approximations for large-scale Bayesian inverse problems via likelihood-informed parameter and state reduction.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#CuiMW16,https://doi.org/10.1016/j.jcp.2016.03.055 +Tao Du,A fast algorithm for the simulation of arterial pulse waves.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#DuHC16,https://doi.org/10.1016/j.jcp.2016.03.036 +Sébastian Minjeaud,High order approximation of a tokamak edge plasma transport minimal model with Bohm boundary conditions.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#MinjeaudP15,https://doi.org/10.1016/j.jcp.2014.12.049 +Gerald Jordan,Fast iterative interior eigensolver for millions of atoms.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#JordanMKK12,https://doi.org/10.1016/j.jcp.2012.04.010 +Luis Chacón,Multiscale high-order/low-order (HOLO) algorithms and applications.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#ChaconCKNPTWW17,https://doi.org/10.1016/j.jcp.2016.10.069 +Songting Luo,Fast Huygens sweeping methods for Helmholtz equations in inhomogeneous media in the high frequency regime.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#LuoQB14,https://doi.org/10.1016/j.jcp.2014.03.066 +D. Le Hardy,Specular reflection treatment for the 3D radiative transfer equation solved with the discrete ordinates method.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#HardyFRH17,https://doi.org/10.1016/j.jcp.2017.01.019 +George Frantziskonis,Time-parallel multiscale/multiphysics framework.,2009,228,J. Comput. Physics,21,db/journals/jcphy/jcphy228.html#FrantziskonisMDSNP09,https://doi.org/10.1016/j.jcp.2009.07.035 +Duan Z. Zhang,Shock waves simulated using the dual domain material point method combined with molecular dynamics.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#ZhangD17,https://doi.org/10.1016/j.jcp.2017.01.003 +Sébastien Tanguy,A Level Set Method for vaporizing two-phase flows.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#TanguyMB07,https://doi.org/10.1016/j.jcp.2006.07.003 +Tooru Sugiyama,Multi-scale plasma simulation by the interlocking of magnetohydrodynamic model and particle-in-cell kinetic model.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#SugiyamaK07,https://doi.org/10.1016/j.jcp.2007.09.011 +Kao-San Yeh,The streamline subgrid integration method: I. Quasi-monotonic second-order transport schemes.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#Yeh07,https://doi.org/10.1016/j.jcp.2007.02.033 +Long Chen 0002,An interface-fitted mesh generator and virtual element methods for elliptic interface problems.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#ChenWW17,https://doi.org/10.1016/j.jcp.2017.01.004 +Peijun Li,A Cartesian treecode for screened coulomb interactions.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#LiJK09,https://doi.org/10.1016/j.jcp.2009.02.022 +Damien Kah,A high order moment method simulating evaporation and advection of a polydisperse liquid spray.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#KahLMJ12,https://doi.org/10.1016/j.jcp.2011.08.032 +Jingwei Hu,A stochastic Galerkin method for the Boltzmann equation with uncertainty.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#HuJ16,https://doi.org/10.1016/j.jcp.2016.03.047 +Camille Carvalho,Asymptotic analysis for close evaluation of layer potentials.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#CarvalhoKK18,https://doi.org/10.1016/j.jcp.2017.11.015 +Christopher R. Anderson,A Rayleigh-Chebyshev procedure for finding the smallest eigenvalues and associated eigenvectors of large sparse Hermitian matrices.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#Anderson10,https://doi.org/10.1016/j.jcp.2010.06.030 +Nicolas Besse,Gyro-water-bag approach in nonlinear gyrokinetic turbulence.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#BesseB09,https://doi.org/10.1016/j.jcp.2009.02.025 +Adam Davidson,Implementation of a hybrid particle code with a PIC description in r-z and a gridless description in and#981* into OSIRIS.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#DavidsonTATLVFSM15,https://doi.org/10.1016/j.jcp.2014.10.064 +Dinshaw S. Balsara,A subluminal relativistic magnetohydrodynamics scheme with ADER-WENO predictor and multidimensional Riemann solver-based corrector.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#BalsaraK16,https://doi.org/10.1016/j.jcp.2016.02.001 +Wouter Tierens,Higher-order hybrid implicit/explicit FDTD time-stepping.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#Tierens16,https://doi.org/10.1016/j.jcp.2016.09.065 +John Thuburn,Numerical wave propagation on the hexagonal C-grid.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#Thuburn08a,https://doi.org/10.1016/j.jcp.2008.02.010 +Malidi Ahamadi,A Lagrangian finite element method for simulation of a suspension under planar extensional flow.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#AhamadiH08,https://doi.org/10.1016/j.jcp.2008.04.035 +Binh K. Lieu,Computation of frequency responses for linear time-invariant PDEs on a compact interval.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#LieuJ13,https://doi.org/10.1016/j.jcp.2013.05.010 +Metin Muradoglu,A front-tracking method for computation of interfacial flows with soluble surfactants.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#MuradogluT08,https://doi.org/10.1016/j.jcp.2007.10.003 +Pavel Váchal,A symmetry preserving dissipative artificial viscosity in an r-z staggered Lagrangian discretization.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#VachalW14,https://doi.org/10.1016/j.jcp.2013.10.036 +Anna-Karin Tornberg,A numerical method for simulations of rigid fiber suspensions.,2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#TornbergG06,https://doi.org/10.1016/j.jcp.2005.10.028 +Sara Zahedi,A conservative level set method for contact line dynamics.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#ZahediGK09,https://doi.org/10.1016/j.jcp.2009.05.043 +M. Ganesh,A fully discrete Galerkin method for high frequency exterior acoustic scattering in three dimensions.,2011,230,J. Comput. Physics,1,db/journals/jcphy/jcphy230.html#GaneshH11,https://doi.org/10.1016/j.jcp.2010.09.014 +David P. Starinshak,A new level set model for multimaterial flows.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#StarinshakKR14,https://doi.org/10.1016/j.jcp.2013.12.036 +Elin Olsson,A conservative level set method for two phase flow II.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#OlssonKZ07,https://doi.org/10.1016/j.jcp.2006.12.027 +Juan P. Aguayo,The numerical prediction of planar viscoelastic contraction flows using the pom-pom model and higher-order finite volume schemes.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#AguayoPPTSW07,https://doi.org/10.1016/j.jcp.2006.05.039 +Olivier P. Le Maître,A stochastic particle-mesh scheme for uncertainty propagation in vortical flows.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#MaitreK07,https://doi.org/10.1016/j.jcp.2007.04.030 +Tomislav Maric,An enhanced un-split face-vertex flux-based VoF method.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#MaricMB18,https://doi.org/10.1016/j.jcp.2018.03.048 +Shawn W. Walker,Shape optimization of self-avoiding curves.,2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#Walker16,https://doi.org/10.1016/j.jcp.2016.02.011 +Robert D. Berry,Data-free inference of the joint distribution of uncertain model parameters.,2012,231,J. Comput. Physics,5,db/journals/jcphy/jcphy231.html#BerryNDMA12,https://doi.org/10.1016/j.jcp.2011.10.031 +Gianmarco Mengaldo,Spatial eigensolution analysis of energy-stable flux reconstruction schemes and influence of the numerical flux on accuracy and robustness.,2018,358,J. Comput. Physics,,db/journals/jcphy/jcphy358.html#MengaldoGMS18,https://doi.org/10.1016/j.jcp.2017.12.019 +Jin Yao,An easy method to accelerate an iterative algebraic equation solver.,2014,267,J. Comput. Physics,,db/journals/jcphy/jcphy267.html#Yao14,https://doi.org/10.1016/j.jcp.2014.02.027 +Manuel A. Diaz,An efficient direct solver for rarefied gas flows with arbitrary statistics.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#DiazY16,https://doi.org/10.1016/j.jcp.2015.09.003 +Dmitri Kuzmin,Explicit and implicit FEM-FCT algorithms with flux linearization.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#Kuzmin09,https://doi.org/10.1016/j.jcp.2008.12.011 +A. M. Zhang,Improved three-dimensional bubble dynamics model based on boundary element method.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#ZhangL15,https://doi.org/10.1016/j.jcp.2015.03.049 +H. S. Tang,An overset grid method for integration of fully 3D fluid dynamics and geophysics fluid dynamics models to simulate multiphysics coastal ocean flows.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#TangQW14,https://doi.org/10.1016/j.jcp.2014.05.010 +A. S. Zymaris,Adjoint wall functions: A new concept for use in aerodynamic shape optimization.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#ZymarisPGO10,https://doi.org/10.1016/j.jcp.2010.03.037 +Mark F. Adams,Toward textbook multigrid efficiency for fully implicit resistive magnetohydrodynamics.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#AdamsSB10,https://doi.org/10.1016/j.jcp.2010.04.024 +Vincent Mons,Reconstruction of unsteady viscous flows using data assimilation schemes.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#MonsCGS16,https://doi.org/10.1016/j.jcp.2016.04.022 +Shu-Lin Wu,Parareal algorithms with local time-integrators for time fractional differential equations.,2018,358,J. Comput. Physics,,db/journals/jcphy/jcphy358.html#WuZ18,https://doi.org/10.1016/j.jcp.2017.12.029 +Oscar P. Bruno,Electromagnetic integral equations requiring small numbers of Krylov-subspace iterations.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#BrunoEPT09,https://doi.org/10.1016/j.jcp.2009.05.020 +Mapundi K. Banda,A lattice-Boltzmann relaxation scheme for coupled convection-radiation systems.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#BandaKS07,https://doi.org/10.1016/j.jcp.2007.05.030 +Julien Coatléven,Helmholtz equation in periodic media with a line defect.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#Coatleven12,https://doi.org/10.1016/j.jcp.2011.10.022 +Andreas Meister 0003,A comparison of the Discontinuous-Galerkin- and Spectral-Difference-Method on triangulations using PKD polynomials.,2012,231,J. Comput. Physics,23,db/journals/jcphy/jcphy231.html#MeisterOSW12,https://doi.org/10.1016/j.jcp.2012.07.025 +Yu-Hau Tseng,An immersed boundary method for endocytosis.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#TsengH14,https://doi.org/10.1016/j.jcp.2014.05.009 +Meng Li,Canonical straight field line magnetic flux coordinates for tokamaks.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#LiBZ16,https://doi.org/10.1016/j.jcp.2016.09.004 +Dongyong Wang,Array-representation integration factor method for high-dimensional systems.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#WangZN14,https://doi.org/10.1016/j.jcp.2013.11.002 +François Fillion-Gourdeau,A split-step numerical method for the time-dependent Dirac equation in 3-D axisymmetric geometry.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#Fillion-GourdeauLB14,https://doi.org/10.1016/j.jcp.2014.03.068 +Stefan Baumgartner,A one-level FETI method for the drift-diffusion-Poisson system with discontinuities at an interface.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#BaumgartnerH13,https://doi.org/10.1016/j.jcp.2013.02.043 +Xuanchun Dong,A short note on simplified pseudospectral methods for computing ground state and dynamics of spherically symmetric Schrödinger-Poisson-Slater system.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#Dong11,https://doi.org/10.1016/j.jcp.2011.07.026 +Yanfen Cui,Numerical method satisfying the first two conservation laws for the Korteweg-de Vries equation.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#CuiM07,https://doi.org/10.1016/j.jcp.2007.07.031 +Charbel Farhat,FIVER: A finite volume method based on exact two-phase Riemann problems and sparse grids for multi-material flows with large density jumps.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#FarhatGR12,https://doi.org/10.1016/j.jcp.2012.05.026 +Brian T. Helenbrook,Preconditioning for dual-time-stepping simulations of the shallow water equations including Coriolis and bed friction effects.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#HelenbrookC08,https://doi.org/10.1016/j.jcp.2008.01.004 +Sanna Mönkölä,An optimization-based approach for solving a time-harmonic multiphysical wave problem with higher-order schemes.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#Monkola13,https://doi.org/10.1016/j.jcp.2013.02.022 +Sanna Mönkölä,Time-harmonic elasticity with controllability and higher-order discretization methods.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#MonkolaHPR08,https://doi.org/10.1016/j.jcp.2008.01.054 +Aimee Gotway Bailey,Efficient constraint dynamics using MILC SHAKE.,2008,227,J. Comput. Physics,20,db/journals/jcphy/jcphy227.html#BaileyLS08,https://doi.org/10.1016/j.jcp.2008.07.002 +Michele Caputo,Damage and fatigue described by a fractional derivative model.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#CaputoF15,https://doi.org/10.1016/j.jcp.2014.11.012 +Wei Ran,GPU accelerated CESE method for 1D shock tube problems.,2011,230,J. Comput. Physics,24,db/journals/jcphy/jcphy230.html#RanCQL11,https://doi.org/10.1016/j.jcp.2011.08.026 +Matteo Tugnoli,A locally p-adaptive approach for Large Eddy Simulation of compressible flows in a DG framework.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#TugnoliABR17,https://doi.org/10.1016/j.jcp.2017.08.007 +Jón Tómas Grétarsson,Numerically stable fluid-structure interactions between compressible flow and solid structures.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#GretarssonKF11,https://doi.org/10.1016/j.jcp.2011.01.005 +Gregory R. Werner,Extracting degenerate modes and frequencies from time-domain simulations with filter-diagonalization.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#WernerC08,https://doi.org/10.1016/j.jcp.2008.01.040 +Johan Helsing,The effective conductivity of arrays of squares: Large random unit cells and extreme contrast ratios.,2011,230,J. Comput. Physics,20,db/journals/jcphy/jcphy230.html#Helsing11a,https://doi.org/10.1016/j.jcp.2011.05.032 +Kentaro Yaji,Topology optimization using the lattice Boltzmann method incorporating level set boundary expressions.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#YajiYYMIN14,https://doi.org/10.1016/j.jcp.2014.06.004 +Panagiotis Tsoutsanis,Extended bounds limiter for high-order finite-volume schemes on unstructured meshes.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#Tsoutsanis18,https://doi.org/10.1016/j.jcp.2018.02.009 +Maxime Huet,One-dimensional characteristic boundary conditions using nonlinear invariants.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#Huet15,https://doi.org/10.1016/j.jcp.2014.12.010 +Ngoc Cuong Nguyen,A multiscale reduced-basis method for parametrized elliptic partial differential equations with multiple scales.,2008,227,J. Comput. Physics,23,db/journals/jcphy/jcphy227.html#Nguyen08,https://doi.org/10.1016/j.jcp.2008.07.025 +Xinghui Zhong,A simple weighted essentially nonoscillatory limiter for Runge-Kutta discontinuous Galerkin methods.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#ZhongS13,https://doi.org/10.1016/j.jcp.2012.08.028 +Hassan Badreddine,Sequential Quadratic Programming (SQP) for optimal control in direct numerical simulation of turbulent flow.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#BadreddineVM14,https://doi.org/10.1016/j.jcp.2013.08.044 +Hong Luo,A discontinuous Galerkin method based on a Taylor basis for the compressible flows on arbitrary grids.,2008,227,J. Comput. Physics,20,db/journals/jcphy/jcphy227.html#LuoBL08,https://doi.org/10.1016/j.jcp.2008.06.035 +Jorge A. Morales,Simulation of confined magnetohydrodynamic flows with Dirichlet boundary conditions using a pseudo-spectral method with volume penalization.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#MoralesLBS14,https://doi.org/10.1016/j.jcp.2014.05.038 +Weizhang Huang,A study of moving mesh PDE methods for numerical simulation of blowup in reaction diffusion equations.,2008,227,J. Comput. Physics,13,db/journals/jcphy/jcphy227.html#HuangMR08,https://doi.org/10.1016/j.jcp.2008.03.024 +Richard Liska,Optimization-based synchronized flux-corrected conservative interpolation (remapping) of mass and momentum for arbitrary Lagrangian-Eulerian methods.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#LiskaSVW10,https://doi.org/10.1016/j.jcp.2009.10.039 +Guglielmo Scovazzi,Analytical and variational numerical methods for unstable miscible displacement flows in porous media.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#ScovazziWML17,https://doi.org/10.1016/j.jcp.2017.01.021 +Satyaki Bhattacharjee,A nonlinear manifold-based reduced order model for multiscale analysis of heterogeneous hyperelastic materials.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#BhattacharjeeM16,https://doi.org/10.1016/j.jcp.2016.01.040 +Alexandra Claisse,A new exceptional points method with application to cell-centered Lagrangian schemes and curved meshes.,2012,231,J. Comput. Physics,11,db/journals/jcphy/jcphy231.html#ClaisseDLL12,https://doi.org/10.1016/j.jcp.2012.02.017 +Allison Lewis,An information theoretic approach to use high-fidelity codes to calibrate low-fidelity codes.,2016,324,J. Comput. Physics,,db/journals/jcphy/jcphy324.html#LewisSWF16,https://doi.org/10.1016/j.jcp.2016.08.001 +Caterina Calgaro,Positivity-preserving schemes for Euler equations: Sharp and practical CFL conditions.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#CalgaroCGP13,https://doi.org/10.1016/j.jcp.2012.09.040 +Georges-Henri Cottet,A semi-implicit level set method for multiphase flows and fluid-structure interaction problems.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#CottetM16,https://doi.org/10.1016/j.jcp.2016.03.004 +K. Karagiozis,A low numerical dissipation immersed interface method for the compressible Navier-Stokes equations.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#KaragiozisKP10,https://doi.org/10.1016/j.jcp.2009.10.005 +Patrick D. Anderson,On the streamfunction-vorticity formulation in sliding bi-period frames: Application to bulk behavior for polymer blends.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#AndersonKH06,https://doi.org/10.1016/j.jcp.2005.07.002 +S. M. Zandi,Exponential basis functions in solution of problems with fully incompressible materials: A mesh-free method.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#ZandiBS12a,https://doi.org/10.1016/j.jcp.2012.06.036 +Antoine Lejay,Simulating diffusion processes in discontinuous media: Benchmark tests.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#LejayP16,https://doi.org/10.1016/j.jcp.2016.03.003 +Thomas A. Brunner,Comparison of four parallel algorithms for domain decomposed implicit Monte Carlo.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#BrunnerUEG06,https://doi.org/10.1016/j.jcp.2005.07.009 +Wenjia Xie,On numerical instabilities of Godunov-type schemes for strong shocks.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#XieLLTP17,https://doi.org/10.1016/j.jcp.2017.08.063 +Lexing Ying,A kernel independent fast multipole algorithm for radial basis functions.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#Ying06,https://doi.org/10.1016/j.jcp.2005.09.010 +Xavier Antoine,Efficient spectral computation of the stationary states of rotating Bose-Einstein condensates by preconditioned nonlinear conjugate gradient methods.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#AntoineLT17,https://doi.org/10.1016/j.jcp.2017.04.040 +Roland Duclous,High order resolution of the Maxwell-Fokker-Planck-Landau model intended for ICF applications.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#DuclousDFT09,https://doi.org/10.1016/j.jcp.2009.04.005 +Tapan K. Sengupta,Error dynamics: Beyond von Neumann analysis.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#SenguptaDS07,https://doi.org/10.1016/j.jcp.2007.06.001 +Xinran Ruan,A normalized gradient flow method with attractive-repulsive splitting for computing ground states of Bose-Einstein condensates with higher-order interaction.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#Ruan18,https://doi.org/10.1016/j.jcp.2018.04.038 +Y. Sun,Symplectic and multisymplectic numerical methods for Maxwell's equations.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#SunT11,https://doi.org/10.1016/j.jcp.2010.12.006 +Maciej Waruszewski,MPDATA: Third-order accuracy for variable flows.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#WaruszewskiKPS18,https://doi.org/10.1016/j.jcp.2018.01.005 +Tae Gon Kang,A direct simulation method for flows with suspended paramagnetic particles.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#KangHTAM08,https://doi.org/10.1016/j.jcp.2008.01.005 +Pietro Asinari,A consistent lattice Boltzmann equation with baroclinic coupling for mixtures.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#AsinariL08,https://doi.org/10.1016/j.jcp.2007.12.001 +Dietmar Kröner,Local discontinuous Galerkin numerical solutions of non-Newtonian incompressible flows modeled by p-Navier-Stokes equations.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#KronerRT14,https://doi.org/10.1016/j.jcp.2014.03.045 +Yongsam Kim,Numerical simulations of three-dimensional foam by the immersed boundary method.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#KimLPS14,https://doi.org/10.1016/j.jcp.2014.03.016 +David J. Hill 0003,An Eulerian hybrid WENO centered-difference solver for elastic-plastic solids.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#HillPOM10,https://doi.org/10.1016/j.jcp.2010.08.020 +Herbert Egger,Enhancement of flow measurements using fluid-dynamic constraints.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#EggerST17,https://doi.org/10.1016/j.jcp.2017.04.080 +Haran Jackson,On the eigenvalues of the ADER-WENO Galerkin predictor.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#Jackson17,https://doi.org/10.1016/j.jcp.2016.12.058 +Mehmet Sarp Yalim,A finite volume implicit time integration method for solving the equations of ideal magnetohydrodynamics for the hyperbolic divergence cleaning approach.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#YalimALQD11,https://doi.org/10.1016/j.jcp.2011.04.020 +Randall McDermott,A particle formulation for treating differential diffusion in filtered density function methods.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#McDermottP07,https://doi.org/10.1016/j.jcp.2007.05.006 +Olivier Desjardins,High order conservative finite difference scheme for variable density low Mach number turbulent flows.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#DesjardinsBBP08,https://doi.org/10.1016/j.jcp.2008.03.027 +Jesse Chan,On discretely entropy conservative and entropy stable discontinuous Galerkin methods.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#Chan18,https://doi.org/10.1016/j.jcp.2018.02.033 +Andreas Hellander,Hybrid method for the chemical master equation.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#HellanderL07,https://doi.org/10.1016/j.jcp.2007.07.020 +Takemi Shigeta,Method of fundamental solutions with optimal regularization techniques for the Cauchy problem of the Laplace equation with singular points.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#ShigetaY09,https://doi.org/10.1016/j.jcp.2008.11.018 +J. Sigüenza,Validation of an immersed thick boundary method for simulating fluid-structure interactions of deformable membranes.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#SiguenzaMADJMN16,https://doi.org/10.1016/j.jcp.2016.06.041 +C. P. Ridgers,Modelling gamma-ray photon emission and pair production in high-intensity laser-matter interactions.,2014,260,J. Comput. Physics,,db/journals/jcphy/jcphy260.html#RidgersKDBBBAB14,https://doi.org/10.1016/j.jcp.2013.12.007 +Anindya Bhaduri,Stochastic collocation approach with adaptive mesh refinement for parametric uncertainty analysis.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#BhaduriHSGK18,https://doi.org/10.1016/j.jcp.2018.06.003 +Jialin Lou,Reconstructed discontinuous Galerkin methods for linear advection-diffusion equations based on first-order hyperbolic system.,2018,369,J. Comput. Physics,,db/journals/jcphy/jcphy369.html#LouLLN18,https://doi.org/10.1016/j.jcp.2018.04.058 +Charles Swanson,Convergence acceleration of Runge-Kutta schemes for solving the Navier-Stokes equations.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#SwansonTR07,https://doi.org/10.1016/j.jcp.2007.02.028 +Dmitrii Azarnykh,Numerical methods for the weakly compressible Generalized Langevin Model in Eulerian reference frame.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#AzarnykhLA16,https://doi.org/10.1016/j.jcp.2016.02.073 +Bruno Stupfel,One-way domain decomposition method with exact radiation condition and fast GMRES solver for the solution of Maxwell's equations.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#StupfelL16,https://doi.org/10.1016/j.jcp.2016.07.015 +Shidong Jiang,Second kind integral equation formulation for the modified biharmonic equation and its applications.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#JiangKQ13,https://doi.org/10.1016/j.jcp.2013.04.034 +Don E. Bruss,S2SA preconditioning for the Sn equations with strictly nonnegative spatial discretization.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#BrussMR14,https://doi.org/10.1016/j.jcp.2014.05.022 +Matthias Markl,Free surface Neumann boundary condition for the advection-diffusion lattice Boltzmann method.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#MarklK15,https://doi.org/10.1016/j.jcp.2015.08.033 +Nico Schlömer,An optimal linear solver for the Jacobian system of the extreme type-II Ginzburg-Landau problem.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#SchlomerV13,https://doi.org/10.1016/j.jcp.2012.10.013 +Andrei G. Borisov,Wave packet propagation by the Faber polynomial approximation in electrodynamics of passive media.,2006,216,J. Comput. Physics,1,db/journals/jcphy/jcphy216.html#BorisovS06,https://doi.org/10.1016/j.jcp.2005.12.011 +Avi Robinson-Mosher,A symmetric positive definite formulation for monolithic fluid structure interaction.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#Robinson-MosherSF11,https://doi.org/10.1016/j.jcp.2010.11.021 +Felix Rieper,A low-Mach number fix for Roe's approximate Riemann solver.,2011,230,J. Comput. Physics,13,db/journals/jcphy/jcphy230.html#Rieper11,https://doi.org/10.1016/j.jcp.2011.03.025 +Vincent Giovangigli,Multicomponent transport algorithms for partially ionized mixtures.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#Giovangigli10,https://doi.org/10.1016/j.jcp.2010.02.001 +Mohsen Zayernouri,Fractional Sturm-Liouville eigen-problems: Theory and numerical approximation.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#ZayernouriK13,https://doi.org/10.1016/j.jcp.2013.06.031 +Sergey D. Ustyugov,Piecewise parabolic method on a local stencil for magnetized supersonic turbulence simulation.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#UstyugovPKN09,https://doi.org/10.1016/j.jcp.2009.07.007 +Dongjin Lee,Solution of the k-th eigenvalue problem in large-scale electronic structure calculations.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#LeeHSMZ18,https://doi.org/10.1016/j.jcp.2018.06.002 +Sandra Nägele,On the influence of different stabilisation methods for the incompressible Navier-Stokes equations.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#NageleW07,https://doi.org/10.1016/j.jcp.2006.12.024 +Xiangyu Hu 0002,Scale separation for implicit large eddy simulation.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#HuA11,https://doi.org/10.1016/j.jcp.2011.05.023 +M. Darwish,A coupled finite volume solver for the solution of incompressible flows on unstructured grids.,2009,228,J. Comput. Physics,1,db/journals/jcphy/jcphy228.html#DarwishSM09,https://doi.org/10.1016/j.jcp.2008.08.027 +Jonathan Hagan,Capacitance matrix technique for avoiding spurious eigenmodes in the solution of hydrodynamic stability problems by Chebyshev collocation method.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#HaganP13,https://doi.org/10.1016/j.jcp.2012.12.012 +Beibei Zhu,Splitting K-symplectic methods for non-canonical separable Hamiltonian problems.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#ZhuZTTZ16,https://doi.org/10.1016/j.jcp.2016.06.044 +Bruno Escribano,Multiple-time-stepping generalized hybrid Monte Carlo methods.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#EscribanoARA15,https://doi.org/10.1016/j.jcp.2014.08.052 +Nasser Mohieddin Abukhdeir,Long-time integration methods for mesoscopic models of pattern-forming systems.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#AbukhdeirVKP11,https://doi.org/10.1016/j.jcp.2011.03.052 +Aaditya V. Rangan,Detecting low-rank clusters via random sampling.,2012,231,J. Comput. Physics,1,db/journals/jcphy/jcphy231.html#Rangan12,https://doi.org/10.1016/j.jcp.2011.09.008 +Xiaofeng Yang 0003,Modeling and simulations of drop pinch-off from liquid crystal filaments and the leaky liquid crystal faucet immersed in viscous fluids.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#YangFLLSWC13,https://doi.org/10.1016/j.jcp.2012.10.042 +Ben Evans,Nano-particle drag prediction at low Reynolds number using a direct Boltzmann-BGK solution approach.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#Evans18,https://doi.org/10.1016/j.jcp.2017.09.038 +Hailiang Liu,Alternating evolution discontinuous Galerkin methods for Hamilton-Jacobi equations.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#LiuP14,https://doi.org/10.1016/j.jcp.2013.09.038 +Ying Sun,Sharp interface tracking using the phase-field equation.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#SunB07,https://doi.org/10.1016/j.jcp.2006.05.025 +Swarnava Ghosh,Higher-order finite-difference formulation of periodic Orbital-free Density Functional Theory.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#GhoshS16,https://doi.org/10.1016/j.jcp.2015.12.027 +Matthias K. Gobbert,A kinetic transport and reaction model and simulator for rarefied gas flow in the transition regime.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#GobbertC06,https://doi.org/10.1016/j.jcp.2005.08.026 +Jianxian Qiu,A numerical study for the performance of the Runge-Kutta discontinuous Galerkin method based on different numerical fluxes.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#QiuKS06,https://doi.org/10.1016/j.jcp.2005.07.011 +Ryan B. Norman,Validation of nuclear models used in space radiation shielding applications.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#NormanB13,https://doi.org/10.1016/j.jcp.2012.09.006 +Hong Wang,A fast Galerkin method with efficient matrix assembly and storage for a peridynamic model.,2012,231,J. Comput. Physics,23,db/journals/jcphy/jcphy231.html#WangT12,https://doi.org/10.1016/j.jcp.2012.06.009 +T. Görler,The global version of the gyrokinetic turbulence code GENE.,2011,230,J. Comput. Physics,18,db/journals/jcphy/jcphy230.html#GorlerLBDJMT11,https://doi.org/10.1016/j.jcp.2011.05.034 +Shahnam Gorgizadeh,Eigenmode computation of cavities with perturbed geometry using matrix perturbation methods applied on generalized eigenvalue problems.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#GorgizadehFR18,https://doi.org/10.1016/j.jcp.2018.03.012 +M. Pisarenco,On the complexity of aperiodic Fourier modal methods for finite periodic structures.,2014,261,J. Comput. Physics,,db/journals/jcphy/jcphy261.html#PisarencoS14,https://doi.org/10.1016/j.jcp.2013.12.051 +Satoshi Ii,A global shallow water model using high order multi-moment constrained finite volume method and icosahedral grid.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#IiX10,https://doi.org/10.1016/j.jcp.2009.11.008 +Jean-Luc Guermond,Effects of discontinuous magnetic permeability on magnetodynamic problems.,2011,230,J. Comput. Physics,16,db/journals/jcphy/jcphy230.html#GuermondLLNR11,https://doi.org/10.1016/j.jcp.2011.04.026 +Byungjoon Lee 0001,Revisiting the redistancing problem using the Hopf-Lax formula.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#LeeDOK17,https://doi.org/10.1016/j.jcp.2016.11.005 +Beatrice Roget,Wall distance search algorithm using voxelized marching spheres.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#RogetS13,https://doi.org/10.1016/j.jcp.2013.01.035 +Nishant Nangia,A moving control volume approach to computing hydrodynamic forces and torques on immersed bodies.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#NangiaJPB17,https://doi.org/10.1016/j.jcp.2017.06.047 +Alexander Linke,On velocity errors due to irrotational forces in the Navier-Stokes momentum balance.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#LinkeM16,https://doi.org/10.1016/j.jcp.2016.02.070 +Peter Lenaers,A new high-order method for the simulation of incompressible wall-bounded turbulent flows.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#LenaersSBJ14,https://doi.org/10.1016/j.jcp.2014.04.034 +Haiyan Jiang,Effect of boundary treatments on quantum transport current in the Green's function and Wigner distribution methods for a nano-scale DG-MOSFET.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#JiangC10,https://doi.org/10.1016/j.jcp.2010.02.008 +Candong Cheng,3D quantum transport solver based on the perfectly matched layer and spectral element methods for the simulation of semiconductor nanodevices.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#ChengLLML07,https://doi.org/10.1016/j.jcp.2007.07.028 +Mark Goldsworthy,Simulation of unsteady flows by the DSMC macroscopic chemistry method.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#GoldsworthyMA09,https://doi.org/10.1016/j.jcp.2008.09.006 +G. MacDonald,A computational method for the coupled solution of reaction-diffusion equations on evolving domains and manifolds: Application to a model of cell migration and chemotaxis.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#MacDonaldMNI16,https://doi.org/10.1016/j.jcp.2015.12.038 +Tae-Hyeong Yi,Vertical discretization with finite elements for a global hydrostatic model on the cubed sphere.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#YiP17,https://doi.org/10.1016/j.jcp.2017.02.067 +Stéphane Popinet,A quadtree-adaptive multigrid solver for the Serre-Green-Naghdi equations.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#Popinet15,https://doi.org/10.1016/j.jcp.2015.09.009 +Ben P. Sommeijer,On stabilized integration for time-dependent PDEs.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#SommeijerV07,https://doi.org/10.1016/j.jcp.2006.11.013 +Marc de la Asunción,Simulation of tsunamis generated by landslides using adaptive mesh refinement on GPU.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#AsuncionD17,https://doi.org/10.1016/j.jcp.2017.05.016 +Yuanwei Xu,MBAR-enhanced lattice Monte Carlo simulation of the effect of helices on membrane protein aggregation.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#XuR17,https://doi.org/10.1016/j.jcp.2016.12.016 +Alfredo Pinelli,Immersed-boundary methods for general finite-difference and finite-volume Navier-Stokes solvers.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#PinelliNPF10,https://doi.org/10.1016/j.jcp.2010.08.021 +Andrew T. Barker,Scalable parallel methods for monolithic coupling in fluid-structure interaction with application to blood flow modeling.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#BarkerC10,https://doi.org/10.1016/j.jcp.2009.10.001 +Hongxu Liu,WLS-ENO: Weighted-least-squares based essentially non-oscillatory schemes for finite volume methods on unstructured meshes.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#LiuJ16,https://doi.org/10.1016/j.jcp.2016.03.039 +Upender K. Kaul,Three-dimensional elliptic grid generation with fully automatic boundary constraints.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#Kaul10,https://doi.org/10.1016/j.jcp.2010.04.028 +Sining Yu,Three-dimensional matched interface and boundary (MIB) method for treating geometric singularities.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#YuW07,https://doi.org/10.1016/j.jcp.2007.08.003 +Per-Olof Persson,A sparse and high-order accurate line-based discontinuous Galerkin method for unstructured meshes.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#Persson13,https://doi.org/10.1016/j.jcp.2012.09.008 +ZhanSen Qian,On large time step TVD scheme for hyperbolic conservation laws and its efficiency evaluation.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#QianL12,https://doi.org/10.1016/j.jcp.2012.07.015 +Stephen Wollman,Numerical approximation of the Vlasov-Poisson-Fokker-Planck system in two dimensions.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#WollmanO09,https://doi.org/10.1016/j.jcp.2009.05.027 +David Radice,A new spherical harmonics scheme for multi-dimensional radiation transport I. Static matter configurations.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#RadiceARO13,https://doi.org/10.1016/j.jcp.2013.01.048 +Haiyan Jiang,Boundary treatments in non-equilibrium Green's function (NEGF) methods for quantum transport in nano-MOSFETs.,2008,227,J. Comput. Physics,13,db/journals/jcphy/jcphy227.html#JiangSCZ08,https://doi.org/10.1016/j.jcp.2008.03.018 +Dongyang Zou,A shock-fitting technique for cell-centered finite volume methods on unstructured dynamic meshes.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#ZouXDL17,https://doi.org/10.1016/j.jcp.2017.05.047 +Hatem Touil,Tracking discontinuities in hyperbolic conservation laws with spectral accuracy.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#TouilHS07,https://doi.org/10.1016/j.jcp.2007.02.016 +Satoshi Ii,An interface capturing method with a continuous function: The THINC method with multi-dimensional reconstruction.,2012,231,J. Comput. Physics,5,db/journals/jcphy/jcphy231.html#IiSTTMX12,https://doi.org/10.1016/j.jcp.2011.11.038 +Todd T. Chisholm,A Jacobian-free Newton-Krylov algorithm for compressible turbulent fluid flows.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#ChisholmZ09,https://doi.org/10.1016/j.jcp.2009.02.004 +Liuyan Lu,An improved algorithm for in situ adaptive tabulation.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#LuP09,https://doi.org/10.1016/j.jcp.2008.09.015 +Avinaash Murali,A new mixed basis Navier-Stokes formulation for incompressible flows over complex geometries.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#MuraliR16,https://doi.org/10.1016/j.jcp.2015.11.065 +P. Marti,A fully spectral methodology for magnetohydrodynamic calculations in a whole sphere.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#MartiJ16,https://doi.org/10.1016/j.jcp.2015.10.056 +R. N. Simpson,An isogeometric boundary element method for electromagnetic scattering with compatible B-spline discretizations.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#SimpsonLVE18,https://doi.org/10.1016/j.jcp.2018.01.025 +Jeffrey W. Banks,On sub-linear convergence for linearly degenerate waves in capturing schemes.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#BanksAR08,https://doi.org/10.1016/j.jcp.2008.04.002 +Xuan Zhao,Second-order approximations for variable order fractional derivatives: Algorithms and applications.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#ZhaoSK15,https://doi.org/10.1016/j.jcp.2014.08.015 +V. A. Semiletov,CABARET scheme with conservation-flux asynchronous time-stepping for nonlinear aeroacoustics problems.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#SemiletovK13,https://doi.org/10.1016/j.jcp.2013.07.008 +Sophie Loire,Spatial filter averaging approach of probabilistic method to linear second-order partial differential equations of the parabolic type.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#LoireM13,https://doi.org/10.1016/j.jcp.2012.08.035 +Mads Mølholm Hejlesen,A high order solver for the unbounded Poisson equation.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#HejlesenRCW13,https://doi.org/10.1016/j.jcp.2013.05.050 +Jin Seok Park,Hierarchical multi-dimensional limiting strategy for correction procedure via reconstruction.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#ParkK16,https://doi.org/10.1016/j.jcp.2015.12.020 +E. Kansa,Discrete Calderon's projections on parallelepipeds and their application to computing exterior magnetic fields for FRC plasmas.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#KansaST13,https://doi.org/10.1016/j.jcp.2012.09.033 +Pascal Beckstein,Efficient solution of 3D electromagnetic eddy-current problems within the finite volume framework of OpenFOAM.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#BecksteinGV17,https://doi.org/10.1016/j.jcp.2017.05.005 +George I. Bell,Simulating the dynamical friction force on ions due to a briefly co-propagating electron beam.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#BellBFSBSAMBL08,https://doi.org/10.1016/j.jcp.2008.06.019 +S. Ndanou,Multi-solid and multi-fluid diffuse interface model: Applications to dynamic fracture and fragmentation.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#NdanouFG15,https://doi.org/10.1016/j.jcp.2015.04.024 +Eric T. Chung,Fast online generalized multiscale finite element method using constraint energy minimization.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#ChungEL18,https://doi.org/10.1016/j.jcp.2017.11.022 +Timur Z. Ismagilov,Second order finite volume scheme for Maxwell's equations with discontinuous electromagnetic properties on unstructured meshes.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#Ismagilov15,https://doi.org/10.1016/j.jcp.2014.11.001 +Jacob Bedrossian,A second order virtual node method for elliptic problems with interfaces and irregular domains.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#BedrossianBZST10,https://doi.org/10.1016/j.jcp.2010.05.002 +Song Li,A fast algorithm for sparse matrix computations related to inversion.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#LiWD13,https://doi.org/10.1016/j.jcp.2013.01.036 +Zhaoyuan Wang,An improved particle correction procedure for the particle level set method.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#WangYS09,https://doi.org/10.1016/j.jcp.2009.04.045 +François Monard,An accurate solver for forward and inverse transport.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#MonardB10,https://doi.org/10.1016/j.jcp.2010.03.016 +A. H. Bhrawy,A spectral tau algorithm based on Jacobi operational matrix for numerical solution of time fractional diffusion-wave equations.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#BhrawyDBE15,https://doi.org/10.1016/j.jcp.2014.03.039 +Ming-Jiu Ni,A current density conservative scheme for incompressible MHD flows at a low magnetic Reynolds number. Part I: On a rectangular collocated grid system.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#NiMMHA07,https://doi.org/10.1016/j.jcp.2007.07.025 +Xiaoyi Li,Front tracking simulation of deformation and buckling instability of a liquid capsule enclosed by an elastic membrane.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#LiS08,https://doi.org/10.1016/j.jcp.2008.01.034 +Jae Wook Kim,Optimised boundary compact finite difference schemes for computational aeroacoustics.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#Kim07,https://doi.org/10.1016/j.jcp.2007.01.008 +Ryosuke Akoh,A multi-moment finite volume formulation for shallow water equations on unstructured mesh.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#AkohIX10,https://doi.org/10.1016/j.jcp.2010.02.023 +B. Dorschner,Grad's approximation for moving and stationary walls in entropic lattice Boltzmann simulations.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#DorschnerCBK15,https://doi.org/10.1016/j.jcp.2015.04.017 +Zhenlin Guo,A numerical method for the quasi-incompressible Cahn-Hilliard-Navier-Stokes equations for variable density flows with a discrete energy law.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#GuoLL14,https://doi.org/10.1016/j.jcp.2014.07.038 +Zhi Zhao,Preconditioned iterative methods for space-time fractional advection-diffusion equations.,2016,319,J. Comput. Physics,,db/journals/jcphy/jcphy319.html#ZhaoJL16,https://doi.org/10.1016/j.jcp.2016.05.021 +David J. Chappell,Solving the stationary Liouville equation via a boundary element method.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#ChappellT13,https://doi.org/10.1016/j.jcp.2012.10.002 +Yayun Wang,Fully-resolved simulation of particulate flows with particles-fluid heat transfer.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#WangSP17,https://doi.org/10.1016/j.jcp.2017.07.044 +Thi Hieu Luu,A new method for reconstruction of cross-sections using Tucker decomposition.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#LuuMGG17,https://doi.org/10.1016/j.jcp.2017.05.019 +Ming-Jiu Ni,Consistent projection methods for variable density incompressible Navier-Stokes equations with continuous surface forces on a rectangular collocated mesh.,2009,228,J. Comput. Physics,18,db/journals/jcphy/jcphy228.html#Ni09,https://doi.org/10.1016/j.jcp.2009.06.004 +Shawn W. Walker,Shape optimization of peristaltic pumping.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#WalkerS10,https://doi.org/10.1016/j.jcp.2009.10.030 +Zhi-Hui Li,Second-order two-scale finite element algorithm for dynamic thermo-mechanical coupling problem in symmetric structure.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#LiMC16,https://doi.org/10.1016/j.jcp.2016.03.034 +José Miguel Reynolds-Barredo,An analytic model for the convergence of turbulent simulations time-parallelized via the parareal algorithm.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#Reynolds-BarredoNS13,https://doi.org/10.1016/j.jcp.2013.08.028 +Daniel Appelö,Numerical methods for solid mechanics on overlapping grids: Linear elasticity.,2012,231,J. Comput. Physics,18,db/journals/jcphy/jcphy231.html#AppeloBHS12,https://doi.org/10.1016/j.jcp.2012.04.008 +Elena V. Akhmatskaya,"Erratum to ""A comparison of generalized hybrid Monte Carlo methods with and without momentum flip"" [J. Comput. Phys 228 (2009) 2256-2265].",2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#AkhmatskayaBR09a,https://doi.org/10.1016/j.jcp.2009.06.039 +Roger A. Sauer,A stabilized finite element formulation for liquid shells and its application to lipid bilayers.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#SauerDMS17,https://doi.org/10.1016/j.jcp.2016.11.004 +T. T. Nguyen,Solution of population balance equations in applications with fine particles: Mathematical modeling and numerical schemes.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#NguyenLFM16,https://doi.org/10.1016/j.jcp.2016.08.017 +Ossian O'Reilly,Energy stable and high-order-accurate finite difference methods on staggered grids.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#OReillyLDN17,https://doi.org/10.1016/j.jcp.2017.06.030 +Ratnesh K. Shukla,Isotropic finite volume discretization.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#ShuklaG14,https://doi.org/10.1016/j.jcp.2014.07.025 +D. Long,Numerical wave propagation on non-uniform one-dimensional staggered grids.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#LongT11,https://doi.org/10.1016/j.jcp.2010.12.040 +Christopher J. Vogl,The Curvature-Augmented Closest Point method with vesicle inextensibility application.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#Vogl17,https://doi.org/10.1016/j.jcp.2017.06.004 +Mingrong Cui,Compact exponential scheme for the time fractional convection-diffusion reaction equation with variable coefficients.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#Cui15,https://doi.org/10.1016/j.jcp.2014.09.012 +Changying Liu,Symmetric and arbitrarily high-order Birkhoff-Hermite time integrators and their long-time behaviour for solving nonlinear Klein-Gordon equations.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#LiuIW18,https://doi.org/10.1016/j.jcp.2017.10.057 +Alex J. Yuffa,Object-oriented electrodynamic S-matrix code with modern applications.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#YuffaS12,https://doi.org/10.1016/j.jcp.2012.03.018 +Ali Q. Raeini,Modelling two-phase flow in porous media at the pore scale using the volume-of-fluid method.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#RaeiniBB12,https://doi.org/10.1016/j.jcp.2012.04.011 +Tapan K. Sengupta,Error dynamics of diffusion equation: Effects of numerical diffusion and dispersive diffusion.,2014,266,J. Comput. Physics,,db/journals/jcphy/jcphy266.html#SenguptaB14,https://doi.org/10.1016/j.jcp.2014.02.021 +Collin S. Meierbachtol,An electrostatic Particle-In-Cell code on multi-block structured meshes.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#MeierbachtolSDV17,https://doi.org/10.1016/j.jcp.2017.09.016 +Scott J. Reckinger,Comprehensive numerical methodology for direct numerical simulations of compressible Rayleigh-Taylor instability.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#ReckingerLV16,https://doi.org/10.1016/j.jcp.2015.11.002 +Tetsuro Tsuji,Moving boundary problems for a rarefied gas: Spatially one-dimensional case.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#TsujiA13,https://doi.org/10.1016/j.jcp.2013.05.017 +Magnus Vartdal,An oriented particle level set method based on surface coordinates.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#VartdalB13,https://doi.org/10.1016/j.jcp.2013.05.044 +Marc T. Henry de Frahan,A new limiting procedure for discontinuous Galerkin methods applied to compressible multiphase flows with shocks and interfaces.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#FrahanVJ15,https://doi.org/10.1016/j.jcp.2014.09.030 +Grady B. Wright,Scattered node compact finite difference-type formulas generated from radial basis functions.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#WrightF06,https://doi.org/10.1016/j.jcp.2005.05.030 +Olivier Czarny,Bézier surfaces and finite elements for MHD simulations.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#CzarnyH08,https://doi.org/10.1016/j.jcp.2008.04.001 +Yong Zhang,On the computation of ground state and dynamics of Schrödinger-Poisson-Slater system.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#ZhangD11,https://doi.org/10.1016/j.jcp.2010.12.045 +Pengde Wang,An energy conservative difference scheme for the nonlinear fractional Schrödinger equations.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#WangH15,https://doi.org/10.1016/j.jcp.2014.03.037 +Martin Dohlus,Explicit TE/TM scheme for particle beam simulations.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#DohlusZ09,https://doi.org/10.1016/j.jcp.2008.12.023 +Peter G. Maginot,High-order solution methods for grey discrete ordinates thermal radiative transfer.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#MaginotRM16,https://doi.org/10.1016/j.jcp.2016.09.055 +Kuan-Yu Chen,A conservative scheme for solving coupled surface-bulk convection-diffusion equations with an application to interfacial flows with soluble surfactant.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#ChenL14,https://doi.org/10.1016/j.jcp.2013.10.003 +Garth N. Wells,A discontinuous Galerkin method for the Cahn-Hilliard equation.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#WellsKG06,https://doi.org/10.1016/j.jcp.2006.03.010 +Hyoungsu Baek,Sub-iteration leads to accuracy and stability enhancements of semi-implicit schemes for the Navier-Stokes equations.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#BaekK11,https://doi.org/10.1016/j.jcp.2011.01.011 +Michel Bergmann,Enablers for robust POD models.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#BergmannBI09,https://doi.org/10.1016/j.jcp.2008.09.024 +Jon Wilkening,Accurate spectral numerical schemes for kinetic equations with energy diffusion.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#WilkeningCL15,https://doi.org/10.1016/j.jcp.2015.03.039 +Minwei Gong,Coupled fluid-structure solver: The case of shock wave impact on monolithic and composite material plates.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#GongA09,https://doi.org/10.1016/j.jcp.2009.03.009 +Petar Liovic,Efficient simulation of surface tension-dominated flows through enhanced interface geometry interrogation.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#LiovicFRM10,https://doi.org/10.1016/j.jcp.2010.06.034 +Mircea Grigoriu,A method for solving stochastic equations by reduced order models and local approximations.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#Grigoriu12,https://doi.org/10.1016/j.jcp.2012.06.013 +Haysam Telib,The effect of shocks on second order sensitivities for the quasi-one-dimensional Euler equations.,2011,230,J. Comput. Physics,23,db/journals/jcphy/jcphy230.html#TelibAI11,https://doi.org/10.1016/j.jcp.2011.08.010 +Maojun Li,High order well-balanced CDG-FE methods for shallow water waves by a Green-Naghdi model.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#LiGLX14,https://doi.org/10.1016/j.jcp.2013.09.050 +Alfeus Sunarso,GPU-accelerated molecular dynamics simulation for study of liquid crystalline flows.,2010,229,J. Comput. Physics,15,db/journals/jcphy/jcphy229.html#SunarsoTC10,https://doi.org/10.1016/j.jcp.2010.03.047 +Gaddiel Ouaknin,Self-consistent field theory simulations of polymers on arbitrary domains.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#OuakninLDFG16,https://doi.org/10.1016/j.jcp.2016.09.021 +E. Momox,Solution of the 1D Schrödinger equation in semiconductor heterostructures using the immersed interface method.,2012,231,J. Comput. Physics,18,db/journals/jcphy/jcphy231.html#MomoxZB12,https://doi.org/10.1016/j.jcp.2012.05.017 +Zedong Wu,A highly accurate finite-difference method with minimum dispersion error for solving the Helmholtz equation.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#WuA18,https://doi.org/10.1016/j.jcp.2018.03.046 +Esteban Ferrer,An interior penalty stabilised incompressible discontinuous Galerkin-Fourier solver for implicit large eddy simulations.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#Ferrer17,https://doi.org/10.1016/j.jcp.2017.07.049 +I. Yu. Gejadze,On optimal solution error covariances in variational data assimilation problems.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#GejadzeDS10,https://doi.org/10.1016/j.jcp.2009.11.028 +Qian-Yong Chen,Enriched multi-point flux approximation for general grids.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#ChenWYM08,https://doi.org/10.1016/j.jcp.2007.09.021 +Seakweng Vong,A compact difference scheme for a two dimensional fractional Klein-Gordon equation with Neumann boundary conditions.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#VongW14,https://doi.org/10.1016/j.jcp.2014.06.022 +Felix Rieper,On the dissipation mechanism of upwind-schemes in the low Mach number regime: A comparison between Roe and HLL.,2010,229,J. Comput. Physics,2,db/journals/jcphy/jcphy229.html#Rieper10,https://doi.org/10.1016/j.jcp.2009.09.043 +E. J. Caramana,The implementation of slide lines as a combined force and velocity boundary condition.,2009,228,J. Comput. Physics,11,db/journals/jcphy/jcphy228.html#Caramana09,https://doi.org/10.1016/j.jcp.2009.02.029 +Su Zhao,Operator splitting implicit integration factor methods for stiff reaction-diffusion-advection systems.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#ZhaoOLZN11,https://doi.org/10.1016/j.jcp.2011.04.009 +Arnab Kumar De,Analysis of a new high resolution upwind compact scheme.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#DeE06,https://doi.org/10.1016/j.jcp.2006.02.020 +Nan Chen 0004,Efficient statistically accurate algorithms for the Fokker-Planck equation in large dimensions.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#ChenM18,https://doi.org/10.1016/j.jcp.2017.10.022 +Ramakrishnan Thirumalaisamy,Towards an improved conservative approach for simulating electrohydrodynamic two-phase flows using volume-of-fluid.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#ThirumalaisamyN18,https://doi.org/10.1016/j.jcp.2018.04.024 +Haihu Liu,Modelling thermocapillary migration of a microfluidic droplet on a solid surface.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#LiuZ15,https://doi.org/10.1016/j.jcp.2014.09.015 +Ondrej Polívka,Compositional modeling in porous media using constant volume flash and flux computation without the need for phase identification.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#PolivkaM14,https://doi.org/10.1016/j.jcp.2014.04.029 +Katherine J. Evans,Development of a 2-D algorithm to simulate convection and phase transition efficiently.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#EvansKP06,https://doi.org/10.1016/j.jcp.2006.03.025 +Jerrad Hampton,Practical error bounds for a non-intrusive bi-fidelity approach to parametric/stochastic model reduction.,2018,368,J. Comput. Physics,,db/journals/jcphy/jcphy368.html#HamptonFND18,https://doi.org/10.1016/j.jcp.2018.04.015 +H. V. Moradi,A method for analysis of stability of flows in ribbed annuli.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#MoradiF16,https://doi.org/10.1016/j.jcp.2016.02.069 +Min Sup Hur,Test particle method for incorporation of the kinetic effects into the envelope simulations of Raman backscattering.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#HurS07,https://doi.org/10.1016/j.jcp.2007.06.032 +Elliott S. Wise,Bandwidth-based mesh adaptation in multiple dimensions.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#WiseCT18,https://doi.org/10.1016/j.jcp.2018.06.009 +Yalchin Efendiev,Multiscale finite element methods for high-contrast problems using local spectral basis functions.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#EfendievGW11,https://doi.org/10.1016/j.jcp.2010.09.026 +Mads Mølholm Hejlesen,A multiresolution method for solving the Poisson equation using high order regularization.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#HejlesenW16,https://doi.org/10.1016/j.jcp.2016.08.053 +M. Shadi Mohamed,An enriched finite element model with q-refinement for radiative boundary layers in glass cooling.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#MohamedSTL14,https://doi.org/10.1016/j.jcp.2013.11.005 +Andrew J. Hesford,The fast multipole method and Fourier convolution for the solution of acoustic scattering on regular volumetric grids.,2010,229,J. Comput. Physics,21,db/journals/jcphy/jcphy229.html#HesfordW10,https://doi.org/10.1016/j.jcp.2010.07.025 +Robert M. Kirby,Towards stable coupling methods for high-order discretization of fluid-structure interaction: Algorithms and observations.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#KirbyYK07,https://doi.org/10.1016/j.jcp.2006.09.015 +Rodney O. Fox,A quadrature-based third-order moment method for dilute gas-particle flows.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#Fox08,https://doi.org/10.1016/j.jcp.2008.03.014 +Jinfeng Jiang,A dissipation-rate reserving DG method for wave catching-up phenomena in a nonlinearly elastic composite bar.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#JiangXD14,https://doi.org/10.1016/j.jcp.2013.10.051 +J. D. Pearce,A pseudo-spectral algorithm and test cases for the numerical solution of the two-dimensional rotating Green-Naghdi shallow water equations.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#PearceE10,https://doi.org/10.1016/j.jcp.2010.06.009 +Phillip Colella,Controlling self-force errors at refinement boundaries for AMR-PIC.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#ColellaN10,https://doi.org/10.1016/j.jcp.2009.07.004 +Björn Sjögreen,"Corrigendum to ""On High Order Finite-Difference Metric Discretizations Satisfying GCL on Moving and Deforming Grids"" [J. Comput. Phys.",2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#SjogreenYV17, +Jinsong Hua,Numerical simulation of 3D bubbles rising in viscous liquids using a front tracking method.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#HuaSL08,https://doi.org/10.1016/j.jcp.2007.12.002 +Bao Wang,Object-oriented persistent homology.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#WangW16,https://doi.org/10.1016/j.jcp.2015.10.036 +Guangzhao Zhou,Simplification of the flux function for a high-order gas-kinetic evolution model.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#ZhouXL17,https://doi.org/10.1016/j.jcp.2017.03.023 +Gabriel Stoltz,Path sampling with stochastic dynamics: Some new algorithms.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#Stoltz07,https://doi.org/10.1016/j.jcp.2006.12.006 +Hilary Weller,Runge-Kutta IMEX schemes for the Horizontally Explicit/Vertically Implicit (HEVI) solution of wave equations.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#WellerLW13,https://doi.org/10.1016/j.jcp.2013.06.025 +Yun Yang,An upwind CESE scheme for 2D and 3D MHD numerical simulation in general curvilinear coordinates.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#YangFJ18,https://doi.org/10.1016/j.jcp.2018.05.014 +J. Schulze,Iterative optimization based on an objective functional in frequency-space with application to jet-noise cancellation.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#SchulzeSS11,https://doi.org/10.1016/j.jcp.2011.04.014 +Mehdi Ghommem,Mode decomposition methods for flows in high-contrast porous media. A global approach.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#GhommemCE14,https://doi.org/10.1016/j.jcp.2013.09.031 +Santos B. Yuste,Weighted average finite difference methods for fractional diffusion equations.,2006,216,J. Comput. Physics,1,db/journals/jcphy/jcphy216.html#Yuste06,https://doi.org/10.1016/j.jcp.2005.12.006 +Giorgio Rosatti,Modelling the transition between fixed and mobile bed conditions in two-phase free-surface flows: The Composite Riemann Problem and its numerical solution.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#RosattiZ15,https://doi.org/10.1016/j.jcp.2015.01.011 +Ruben Specogna,A discrete geometric approach to solving time independent Schrödinger equation.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#SpecognaT11,https://doi.org/10.1016/j.jcp.2010.11.007 +Josselin Garnier,A two-way paraxial system for simulation of wave backscattering by a random medium.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#GarnierS09,https://doi.org/10.1016/j.jcp.2009.01.022 +Yunkai Zhou,A block Chebyshev-Davidson method with inner-outer restart for large eigenvalue problems.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#Zhou10,https://doi.org/10.1016/j.jcp.2010.08.032 +Zhicheng Yang,A direct Eulerian GRP scheme for relativistic hydrodynamics: Two-dimensional case.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#YangT12,https://doi.org/10.1016/j.jcp.2011.11.026 +Hossein Pourmatin,Multiscale real-space quantum-mechanical tight-binding calculations of electronic structure in crystals with defects using perfectly matched layers.,2016,323,J. Comput. Physics,,db/journals/jcphy/jcphy323.html#PourmatinD16,https://doi.org/10.1016/j.jcp.2016.07.024 +D. Xiao,A non-intrusive reduced-order model for compressible fluid and fractured solid coupling and its application to blasting.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#XiaoYFXPNC17,https://doi.org/10.1016/j.jcp.2016.10.068 +Cheng Peng,A hydrodynamically-consistent MRT lattice Boltzmann model on a 2D rectangular grid.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#PengMGW16,https://doi.org/10.1016/j.jcp.2016.09.031 +Hailiang Liu,Entropy/energy stable schemes for evolutionary dispersal models.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#LiuY14,https://doi.org/10.1016/j.jcp.2013.08.032 +Sergio Pirozzoli,Performance analysis and optimization of finite-difference schemes for wave propagation problems.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#Pirozzoli07,https://doi.org/10.1016/j.jcp.2006.08.006 +Kyle E. Niemeyer,Accelerating moderately stiff chemical kinetics in reactive-flow simulations using GPUs.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#NiemeyerS14,https://doi.org/10.1016/j.jcp.2013.09.025 +Christoph Börgers,An angular multigrid method for computing mono-energetic particle beams in Flatland.,2010,229,J. Comput. Physics,8,db/journals/jcphy/jcphy229.html#BorgersM10,https://doi.org/10.1016/j.jcp.2009.12.023 +Hae-Soo Oh,The generalized product partition of unity for the meshless methods.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#OhJW10,https://doi.org/10.1016/j.jcp.2009.10.047 +Yaman Güçlü,Arbitrarily high order Convected Scheme solution of the Vlasov-Poisson system.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#GucluCH14,https://doi.org/10.1016/j.jcp.2014.04.003 +Inga Berre,Identification of three-dimensional electric conductivity changes from time-lapse electromagnetic observations.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#BerreLM11,https://doi.org/10.1016/j.jcp.2011.02.015 +Manas Rachh,Fast algorithms for Quadrature by Expansion I: Globally valid expansions.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#RachhKO17,https://doi.org/10.1016/j.jcp.2017.04.062 +Stéphane Dellacherie,Analysis of Godunov type schemes applied to the compressible Euler system at low Mach number.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#Dellacherie10,https://doi.org/10.1016/j.jcp.2009.09.044 +Javier Murillo,Improved Riemann solvers for complex transport in two-dimensional unsteady shallow flow.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#MurilloG11,https://doi.org/10.1016/j.jcp.2011.05.022 +Zhennan Zhou,Numerical approximation of the Schrödinger equation with the electromagnetic field by the Hagedorn wave packets.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#Zhou14a,https://doi.org/10.1016/j.jcp.2014.04.041 +Norhashidah Hj. Mohd. Ali,New explicit group iterative methods in the solution of two dimensional hyperbolic equations.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#AliK12,https://doi.org/10.1016/j.jcp.2012.06.025 +Guillaume Chiavassa,Time domain numerical modeling of wave propagation in 2D heterogeneous porous media.,2011,230,J. Comput. Physics,13,db/journals/jcphy/jcphy230.html#ChiavassaL11,https://doi.org/10.1016/j.jcp.2011.03.030 +G. Bornia,On the properties and limitations of the height function method in two-dimensional Cartesian geometry.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#BorniaCMSZ11,https://doi.org/10.1016/j.jcp.2010.11.029 +Jinhong Jia,A preconditioned fast finite volume scheme for a fractional differential equation discretized on a locally refined composite mesh.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#JiaW15a,https://doi.org/10.1016/j.jcp.2015.06.028 +Bram van Es,Finite-difference schemes for anisotropic diffusion.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#EsKB14,https://doi.org/10.1016/j.jcp.2014.04.046 +Y. Kawazura,A hybrid gyrokinetic ion and isothermal electron fluid code for astrophysical plasma.,2018,360,J. Comput. Physics,,db/journals/jcphy/jcphy360.html#KawazuraB18,https://doi.org/10.1016/j.jcp.2018.01.026 +L. Chiron,Coupled SPH-FV method with net vorticity and mass transfer.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#ChironMMT18,https://doi.org/10.1016/j.jcp.2018.02.052 +Eric Cancès,A perturbation-method-based post-processing for the planewave discretization of Kohn-Sham models.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#CancesDMSV16,https://doi.org/10.1016/j.jcp.2015.12.012 +K. Parand,Rational Legendre pseudospectral approach for solving nonlinear differential equations of Lane-Emden type.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#ParandSD09,https://doi.org/10.1016/j.jcp.2009.08.029 +Jianbin Yang,B-spline tight frame based force matching method.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#YangZTLS18,https://doi.org/10.1016/j.jcp.2018.02.024 +Philip T. Barton,An Eulerian method for multi-component problems in non-linear elasticity with sliding interfaces.,2010,229,J. Comput. Physics,15,db/journals/jcphy/jcphy229.html#BartonD10,https://doi.org/10.1016/j.jcp.2010.04.012 +Jorge Eduardo Macías-Díaz,A dynamically consistent method to solve nonlinear multidimensional advection-reaction equations with fractional diffusion.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#Macias-Diaz18,https://doi.org/10.1016/j.jcp.2018.03.047 +Maria Adela Puscas,A time semi-implicit scheme for the energy-balanced coupling of a shocked fluid flow with a deformable structure.,2015,296,J. Comput. Physics,,db/journals/jcphy/jcphy296.html#PuscasMETMD15,https://doi.org/10.1016/j.jcp.2015.04.012 +Sashank Srinivasan,A positivity-preserving high order discontinuous Galerkin scheme for convection-diffusion equations.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#SrinivasanPZ18,https://doi.org/10.1016/j.jcp.2018.04.002 +Mingyu Zhang,Simulation of surface tension in 2D and 3D with smoothed particle hydrodynamics method.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#Zhang10,https://doi.org/10.1016/j.jcp.2010.06.010 +Bobby Philip,A parallel multi-domain solution methodology applied to nonlinear thermal transport problems in nuclear fuel pins.,2015,286,J. Comput. Physics,,db/journals/jcphy/jcphy286.html#PhilipBAHSCD15,https://doi.org/10.1016/j.jcp.2015.01.029 +Jiang Wan,A probabilistic graphical model approach to stochastic multiscale partial differential equations.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#WanZ13,https://doi.org/10.1016/j.jcp.2013.05.016 +Jonathan Weare,Particle filtering with path sampling and an application to a bimodal ocean current model.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#Weare09,https://doi.org/10.1016/j.jcp.2009.02.033 +Shucheng Pan,A conservative interface-interaction method for compressible multi-material flows.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#PanHHA18,https://doi.org/10.1016/j.jcp.2018.02.007 +Helene Barucq,New absorbing layers conditions for short water waves.,2010,229,J. Comput. Physics,1,db/journals/jcphy/jcphy229.html#BarucqDT10,https://doi.org/10.1016/j.jcp.2009.08.033 +Guosheng Fu,A new troubled-cell indicator for discontinuous Galerkin methods for hyperbolic conservation laws.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#FuS17,https://doi.org/10.1016/j.jcp.2017.06.046 +Takashi Shiroto,Structure-preserving operators for thermal-nonequilibrium hydrodynamics.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#ShirotoKO18,https://doi.org/10.1016/j.jcp.2018.03.008 +A. Fortin,A more efficient anisotropic mesh adaptation for the computation of Lagrangian coherent structures.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#FortinBG15,https://doi.org/10.1016/j.jcp.2015.01.010 +Anurag Dipankar,A new phase-screen method for electromagnetic wave propagation in turbulent flows using large-eddy simulation.,2009,228,J. Comput. Physics,20,db/journals/jcphy/jcphy228.html#DipankarS09,https://doi.org/10.1016/j.jcp.2009.07.011 +X. Zeng,A frame-invariant vector limiter for flux corrected nodal remap in arbitrary Lagrangian-Eulerian flow computations.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#ZengS14,https://doi.org/10.1016/j.jcp.2014.03.054 +M. J. Zimon,An evaluation of noise reduction algorithms for particle-based fluid simulations in multi-scale applications.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#ZimonPEBBGR16,https://doi.org/10.1016/j.jcp.2016.08.021 +Amir Nejat,A high-order accurate unstructured finite volume Newton-Krylov algorithm for inviscid compressible flows.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#NejatO08a,https://doi.org/10.1016/j.jcp.2007.11.011 +Jeffery D. Densmore,A hybrid transport-diffusion Monte Carlo method for frequency-dependent radiative-transfer simulations.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#DensmoreTU12,https://doi.org/10.1016/j.jcp.2012.06.020 +Amit Singh 0006,Thermal parameter identification for non-Fourier heat transfer from molecular dynamics.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#SinghT15,https://doi.org/10.1016/j.jcp.2015.07.008 +Kazuki Maeda,Eulerian-Lagrangian method for simulation of cloud cavitation.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#MaedaC18,https://doi.org/10.1016/j.jcp.2018.05.029 +Jing Li,An efficient surrogate-based method for computing rare failure probability.,2011,230,J. Comput. Physics,24,db/journals/jcphy/jcphy230.html#LiLX11a,https://doi.org/10.1016/j.jcp.2011.08.008 +Shankhadeep Das,A coupled ordinates method for solution acceleration of rarefied gas dynamics simulations.,2015,289,J. Comput. Physics,,db/journals/jcphy/jcphy289.html#DasMAM15,https://doi.org/10.1016/j.jcp.2015.02.035 +W. Steven Rosenthal,Displacement data assimilation.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#RosenthalVMR17,https://doi.org/10.1016/j.jcp.2016.10.025 +Na Zhang,Locally conservative Galerkin and finite volume methods for two-phase flow in porous media.,2013,254,J. Comput. Physics,,db/journals/jcphy/jcphy254.html#ZhangHY13,https://doi.org/10.1016/j.jcp.2013.07.025 +Aditya Konduri,High-order asynchrony-tolerant finite difference schemes for partial differential equations.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#KonduriD17,https://doi.org/10.1016/j.jcp.2017.08.037 +Felix Carbonell,Numerical simulation of nonlinear dynamical systems driven by commutative noise.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#CarbonellBJC07,https://doi.org/10.1016/j.jcp.2007.05.024 +Ofer Markish,Cylindrical FDTD grid-compatible Green's functions.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#MarkishK13,https://doi.org/10.1016/j.jcp.2012.12.011 +Robert Lipton,Uncertain loading and quantifying maximum energy concentration within composite structures.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#LiptonSS16,https://doi.org/10.1016/j.jcp.2016.07.010 +Christiaan C. Stolk,A dispersion minimizing scheme for the 3-D Helmholtz equation based on ray theory.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#Stolk16,https://doi.org/10.1016/j.jcp.2016.03.023 +Qiong Zheng,Second-order Poisson-Nernst-Planck solver for ion transport.,2011,230,J. Comput. Physics,13,db/journals/jcphy/jcphy230.html#ZhengCW11,https://doi.org/10.1016/j.jcp.2011.03.020 +K. Gudmundsson,Improved procedure for the computation of Lamb's coefficients in the physalis method for particle simulation.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#GudmundssonP13,https://doi.org/10.1016/j.jcp.2012.08.049 +Y. Li,Optimal fourth-order staggered-grid finite-difference scheme for 3D frequency-domain viscoelastic wave modeling.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#LiHMB16,https://doi.org/10.1016/j.jcp.2016.06.018 +Antoine Lemoine,Moment-of-fluid analytic reconstruction on 2D Cartesian grids.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#LemoineGB17,https://doi.org/10.1016/j.jcp.2016.10.013 +Travis C. Fisher,Boundary closures for fourth-order energy stable weighted essentially non-oscillatory finite-difference schemes.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#FisherCYF11,https://doi.org/10.1016/j.jcp.2011.01.043 +Shravan K. Veerapaneni,A fast algorithm for simulating vesicle flows in three dimensions.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#VeerapaneniRBZ11,https://doi.org/10.1016/j.jcp.2011.03.045 +Paul Bolton,A least-squares finite element method for the Navier-Stokes equations.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#BoltonT06,https://doi.org/10.1016/j.jcp.2005.08.015 +Roberto Trozzo,Axisymmetric Boundary Element Method for vesicles in a capillary.,2015,289,J. Comput. Physics,,db/journals/jcphy/jcphy289.html#TrozzoBLJ15,https://doi.org/10.1016/j.jcp.2015.02.022 +Stephen O'Sullivan,A class of high-order Runge-Kutta-Chebyshev stability polynomials.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#OSullivan15,https://doi.org/10.1016/j.jcp.2015.07.050 +Guillaume Jouvet,Numerical simulation of Rhonegletscher from 1874 to 2100.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#JouvetHBPR09,https://doi.org/10.1016/j.jcp.2009.05.033 +Xiaoliang Wan,A minimum action method for small random perturbations of two-dimensional parallel shear flows.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#Wan13,https://doi.org/10.1016/j.jcp.2012.10.006 +A. Veeraragavan,Use of the method of manufactured solutions for the verification of conjugate heat transfer solvers.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#VeeraragavanBG16,https://doi.org/10.1016/j.jcp.2015.12.004 +Oren Peles,Acceleration methods for multi-physics compressible flow.,2018,358,J. Comput. Physics,,db/journals/jcphy/jcphy358.html#PelesT18,https://doi.org/10.1016/j.jcp.2017.10.011 +Robert R. Nourgaliev,Adaptive characteristics-based matching for compressible multifluid dynamics.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#NourgalievDT06,https://doi.org/10.1016/j.jcp.2005.08.028 +Yang Chen,Electromagnetic gyrokinetic 8*f particle-in-cell turbulence simulation with realistic equilibrium profiles and geometry.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#ChenP07,https://doi.org/10.1016/j.jcp.2006.05.028 +Yuanxun Bao,A Gaussian-like immersed-boundary kernel with three continuous derivatives and improved translational invariance.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#BaoKP16,https://doi.org/10.1016/j.jcp.2016.04.024 +Simon Hill,Boundedness-preserving implicit correction of mesh-induced errors for VOF based heat and mass transfer.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#HillDAKBM18,https://doi.org/10.1016/j.jcp.2017.09.027 +Zheming Zheng,Runge-Kutta-Chebyshev projection method.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#ZhengP06,https://doi.org/10.1016/j.jcp.2006.07.005 +Colm Clancy,A class of semi-implicit predictor-corrector schemes for the time integration of atmospheric models.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#ClancyP13,https://doi.org/10.1016/j.jcp.2012.08.032 +Jinghua Wang,A fully nonlinear numerical method for modeling wave-current interactions.,2018,369,J. Comput. Physics,,db/journals/jcphy/jcphy369.html#WangMY18,https://doi.org/10.1016/j.jcp.2018.04.057 +Lin Fu,A novel partitioning method for block-structured adaptive meshes.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#FuLHA17,https://doi.org/10.1016/j.jcp.2016.11.016 +David P. Starinshak,A subzone reconstruction algorithm for efficient staggered compatible remapping.,2015,296,J. Comput. Physics,,db/journals/jcphy/jcphy296.html#StarinshakO15,https://doi.org/10.1016/j.jcp.2015.04.046 +Keiichi Kitamura,Towards shock-stable and accurate hypersonic heating computations: A new pressure flux for AUSM-family schemes.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#KitamuraS13,https://doi.org/10.1016/j.jcp.2013.02.046 +Lun Yang,A completely iterative method for the infinite domain electrostatic problem with nonlinear dielectric media.,2011,230,J. Comput. Physics,21,db/journals/jcphy/jcphy230.html#YangD11,https://doi.org/10.1016/j.jcp.2011.07.001 +Aaron Towne,One-way spatial integration of hyperbolic equations.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#TowneC15,https://doi.org/10.1016/j.jcp.2015.08.015 +Lei Wu 0003,Deterministic numerical solutions of the Boltzmann equation using the fast spectral method.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#WuWSRZ13,https://doi.org/10.1016/j.jcp.2013.05.003 +M. Meyer,A conservative immersed interface method for Large-Eddy Simulation of incompressible flows.,2010,229,J. Comput. Physics,18,db/journals/jcphy/jcphy229.html#MeyerDHHA10,https://doi.org/10.1016/j.jcp.2010.04.040 +Luca Magri,Stability analysis of thermo-acoustic nonlinear eigenproblems in annular combustors. Part II. Uncertainty quantification.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#MagriBNJ16,https://doi.org/10.1016/j.jcp.2016.08.043 +Jeremy D. Scheff,A multiscale modeling approach to inflammation: A case study in human endotoxemia.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#ScheffMFACDDLVA13,https://doi.org/10.1016/j.jcp.2012.09.024 +Juliana Vianna Valério,Efficient computation of the spectrum of viscoelastic flows.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#ValerioCT09,https://doi.org/10.1016/j.jcp.2008.10.018 +Magnus Aa. Gjennestad,Computation of three-dimensional three-phase flow of carbon dioxide using a high-order WENO scheme.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#GjennestadGLJEH17,https://doi.org/10.1016/j.jcp.2017.07.016 +Weihua Geng,Multiscale molecular dynamics using the matched interface and boundary method.,2011,230,J. Comput. Physics,2,db/journals/jcphy/jcphy230.html#GengW11,https://doi.org/10.1016/j.jcp.2010.09.031 +Jeremy Shaw,Sensitivity of the model error parameter specification in weak-constraint four-dimensional variational data assimilation.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#ShawD17,https://doi.org/10.1016/j.jcp.2017.04.050 +Zhongying Chen,A dispersion minimizing finite difference scheme and preconditioned solver for the 3D Helmholtz equation.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#ChenCW12,https://doi.org/10.1016/j.jcp.2012.07.048 +Holger Schmitz,Darwin-Vlasov simulations of magnetised plasmas.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#SchmitzG06,https://doi.org/10.1016/j.jcp.2005.10.013 +Manfred Opper,An estimator for the relative entropy rate of path measures for stochastic differential equations.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#Opper17,https://doi.org/10.1016/j.jcp.2016.11.021 +Xavier Antoine,Phase reduction models for improving the accuracy of the finite element solution of time-harmonic scattering problems I: General approach and low-order models.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#AntoineG09,https://doi.org/10.1016/j.jcp.2009.01.008 +Jin-Hai Zhang,Optimized explicit finite-difference schemes for spatial derivatives using maximum norm.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#ZhangY13,https://doi.org/10.1016/j.jcp.2013.04.029 +Thomas Engels,Numerical simulation of fluid-structure interaction with the volume penalization method.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#EngelsKSS15,https://doi.org/10.1016/j.jcp.2014.10.005 +Yanyan He,Numerical strategy for model correction using physical constraints.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#HeX16,https://doi.org/10.1016/j.jcp.2016.02.054 +Taku Ohwada,Artificial compressibility method revisited: Asymptotic numerical method for incompressible Navier-Stokes equations.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#OhwadaA10,https://doi.org/10.1016/j.jcp.2009.11.003 +Chiara Sorgentone,A new high order energy and enstrophy conserving Arakawa-like Jacobian differential operator.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#SorgentoneCN15,https://doi.org/10.1016/j.jcp.2015.08.028 +Yushu Yang,Tau leaping of stiff stochastic chemical systems via local central limit approximation.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#YangR13,https://doi.org/10.1016/j.jcp.2013.02.011 +Jinhong Jia,Fast finite difference methods for space-fractional diffusion equations with fractional derivative boundary conditions.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#JiaW15,https://doi.org/10.1016/j.jcp.2014.08.021 +Haitian Lu,A Riemann problem based method for solving compressible and incompressible flows.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#LuZWWZ17,https://doi.org/10.1016/j.jcp.2016.10.047 +Jianliang Qian,Fast Gaussian wavepacket transforms and Gaussian beams for the Schrödinger equation.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#QianY10,https://doi.org/10.1016/j.jcp.2010.06.043 +Xue-song Li,The momentum interpolation method based on the time-marching algorithm for All-Speed flows.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#LiG10,https://doi.org/10.1016/j.jcp.2010.06.039 +Hoang-Ngan Nguyen,Computation of the singular and regularized image systems for doubly-periodic Stokes flow in the presence of a wall.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#NguyenL15,https://doi.org/10.1016/j.jcp.2015.05.030 +Charbel Farhat,A higher-order generalized ghost fluid method for the poor for the three-dimensional two-phase flow computation of underwater implosions.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#FarhatRS08,https://doi.org/10.1016/j.jcp.2008.04.032 +Chang Liu,A unified gas-kinetic scheme for continuum and rarefied flows IV: Full Boltzmann and model equations.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#LiuXSC16,https://doi.org/10.1016/j.jcp.2016.03.014 +Andreas Adelmann,A fast parallel Poisson solver on irregular domains applied to beam dynamics simulations.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#AdelmannAI10,https://doi.org/10.1016/j.jcp.2010.02.022 +Bin Xie,Toward efficient and accurate interface capturing on arbitrary hybrid unstructured grids: The THINC method with quadratic surface representation and Gaussian quadrature.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#XieX17,https://doi.org/10.1016/j.jcp.2017.08.028 +Xiantao Li,Variational boundary conditions for molecular dynamics simulations: Treatment of the loading condition.,2008,227,J. Comput. Physics,24,db/journals/jcphy/jcphy227.html#Li08a,https://doi.org/10.1016/j.jcp.2008.08.010 +Ava J. Mauro,A First-Passage Kinetic Monte Carlo method for reaction-drift-diffusion processes.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#MauroSSAI14,https://doi.org/10.1016/j.jcp.2013.12.023 +William F. Godoy,Parallel Jacobian-free Newton Krylov solution of the discrete ordinates method with flux limiters for 3D radiative transfer.,2012,231,J. Comput. Physics,11,db/journals/jcphy/jcphy231.html#GodoyL12,https://doi.org/10.1016/j.jcp.2012.02.010 +Jean-François Cossette,The Monge-Ampère trajectory correction for semi-Lagrangian schemes.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#CossetteSC14,https://doi.org/10.1016/j.jcp.2014.05.016 +Qiuju Wang,An accurate and robust finite volume scheme based on the spline interpolation for solving the Euler and Navier-Stokes equations on non-uniform curvilinear grids.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#WangR15,https://doi.org/10.1016/j.jcp.2014.12.050 +Robert D. Guy,On the accuracy of direct forcing immersed boundary methods with projection methods.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#GuyH10,https://doi.org/10.1016/j.jcp.2009.10.027 +Y. F. Zhang,Controlling bulk Reynolds number and bulk temperature in channel flow simulations.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#ZhangV16,https://doi.org/10.1016/j.jcp.2015.10.051 +Timothy G. Vaughan,A retrodictive stochastic simulation algorithm.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#VaughanDD10,https://doi.org/10.1016/j.jcp.2010.01.027 +Krishnamurthy Nagendra,A new approach for conjugate heat transfer problems using immersed boundary method for curvilinear grid based solvers.,2014,267,J. Comput. Physics,,db/journals/jcphy/jcphy267.html#NagendraTV14,https://doi.org/10.1016/j.jcp.2014.02.045 +Yegao Qu,An immersed boundary formulation for simulating high-speed compressible viscous flows with moving solids.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#QuSB18,https://doi.org/10.1016/j.jcp.2017.10.045 +Rodrigo C. Moura,On the eddy-resolving capability of high-order discontinuous Galerkin approaches to implicit LES / under-resolved DNS of Euler turbulence.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#MouraMPS17,https://doi.org/10.1016/j.jcp.2016.10.056 +Hideshi Ishida,Revaluation of the first-order upwind difference scheme to solve coarse-grained master equations.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#IshidaM07,https://doi.org/10.1016/j.jcp.2006.06.004 +Edoardo Milotti,"Erratum to ""Model-based fit procedure for power-law-like spectra"" [J. Comput. Phys. 217(2006) 834-844].",2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#Milotti07,https://doi.org/10.1016/j.jcp.2007.08.018 +Markos A. Katsoulakis,Special Issue: Predictive multiscale materials modeling.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#KatsoulakisZ17,https://doi.org/10.1016/j.jcp.2017.02.045 +Kathleen Feigl,Development and evaluation of a micro-macro algorithm for the simulation of polymer flow.,2006,216,J. Comput. Physics,1,db/journals/jcphy/jcphy216.html#FeiglT06,https://doi.org/10.1016/j.jcp.2005.11.026 +Andre Weiner,Advanced subgrid-scale modeling for convection-dominated species transport at fluid interfaces with application to mass transfer from rising bubbles.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#WeinerB17,https://doi.org/10.1016/j.jcp.2017.06.040 +Xiangyu Hu 0002,An efficient low-dissipation hybrid weighted essentially non-oscillatory scheme.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#HuWA15,https://doi.org/10.1016/j.jcp.2015.08.043 +Zupeng Jia,An effective integration of methods for second-order three-dimensional multi-material ALE method on unstructured hexahedral meshes using MOF interface reconstruction.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#JiaLZ13,https://doi.org/10.1016/j.jcp.2012.11.004 +Zhili Lin,An analytical derivation of the optimum source patterns for the pseudospectral time-domain method.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#LinT09,https://doi.org/10.1016/j.jcp.2009.06.033 +David González 0002,A natural element updated Lagrangian strategy for free-surface fluid dynamics.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#GonzalezCCD07,https://doi.org/10.1016/j.jcp.2006.09.002 +Silvia V. Nedea,Density distribution for a dense hard-sphere gas in micro/nano-channels: Analytical and simulation results.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#NedeaFSJMH06,https://doi.org/10.1016/j.jcp.2006.04.002 +Matthew Charnley,Through-the-wall radar detection analysis via numerical modeling of Maxwell's equations.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#CharnleyW16,https://doi.org/10.1016/j.jcp.2016.01.039 +Richard Pasquetti,Cubature versus Fekete-Gauss nodes for spectral element methods on simplicial meshes.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#PasquettiR17,https://doi.org/10.1016/j.jcp.2017.07.022 +Andreas Pieper,High-performance implementation of Chebyshev filter diagonalization for interior eigenvalue computations.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#PieperKAGFHLW16,https://doi.org/10.1016/j.jcp.2016.08.027 +Hiroaki Nishikawa,Effects of high-frequency damping on iterative convergence of implicit viscous solver.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#NishikawaNW17,https://doi.org/10.1016/j.jcp.2017.07.021 +Thomas Y. Hou,Sparse + low-energy decomposition for viscous conservation laws.,2015,288,J. Comput. Physics,,db/journals/jcphy/jcphy288.html#HouLS15,https://doi.org/10.1016/j.jcp.2015.02.019 +Jean-François Lemieux,A comparison of the Jacobian-free Newton-Krylov method and the EVP model for solving the sea ice momentum equation with a viscous-plastic formulation: A serial algorithm study.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#LemieuxKTHL12,https://doi.org/10.1016/j.jcp.2012.05.024 +K. S. C. Peerenboom,Mass conservative finite volume discretization of the continuity equations in multi-component mixtures.,2011,230,J. Comput. Physics,9,db/journals/jcphy/jcphy230.html#PeerenboomDBLGM11,https://doi.org/10.1016/j.jcp.2011.02.001 +Jianhua Cheng,A second-order semi-implicit 8*f8*f method for hybrid simulation.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#ChengPCU13,https://doi.org/10.1016/j.jcp.2013.03.017 +Paul J. Dellar,Lattice Boltzmann magnetohydrodynamics with current-dependent resistivity.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#Dellar13,https://doi.org/10.1016/j.jcp.2012.11.021 +Christophe Besse,Discrete transparent boundary conditions for the mixed KDV-BBM equation.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#BesseNS17,https://doi.org/10.1016/j.jcp.2017.05.031 +Vincenzo Citro,Efficient stabilization and acceleration of numerical simulation of fluid flows by residual recombination.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#CitroLGA17,https://doi.org/10.1016/j.jcp.2017.04.081 +Britton J. Olson,Directional artificial fluid properties for compressible large-eddy simulation.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#OlsonL13,https://doi.org/10.1016/j.jcp.2013.03.026 +Marc Medale,A parallel computer implementation of the Asymptotic Numerical Method to study thermal convection instabilities.,2009,228,J. Comput. Physics,22,db/journals/jcphy/jcphy228.html#MedaleC09,https://doi.org/10.1016/j.jcp.2009.07.032 +Zhi Liang,A fast multipole method for the Rotne-Prager-Yamakawa tensor and its applications.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#LiangGGHJ13,https://doi.org/10.1016/j.jcp.2012.09.021 +Gautier Dakin,Inverse Lax-Wendroff boundary treatment for compressible Lagrange-remap hydrodynamics on Cartesian grids.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#DakinDJ18,https://doi.org/10.1016/j.jcp.2017.10.014 +Eric E. Keaveny,Modeling the magnetic interactions between paramagnetic beads in magnetorheological fluids.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#KeavenyM08,https://doi.org/10.1016/j.jcp.2008.07.008 +Anil Zenginoglu,Hyperboloidal layers for hyperbolic equations on unbounded domains.,2011,230,J. Comput. Physics,6,db/journals/jcphy/jcphy230.html#Zenginoglu11,https://doi.org/10.1016/j.jcp.2010.12.016 +Alejandro M. Aragón,Multi-physics design of microvascular materials for active cooling applications.,2011,230,J. Comput. Physics,13,db/journals/jcphy/jcphy230.html#AragonSGW11,https://doi.org/10.1016/j.jcp.2011.03.012 +Juan Chen,A review of hybrid implicit explicit finite difference time domain method.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#Chen18,https://doi.org/10.1016/j.jcp.2018.02.053 +Guoxi Ni,Efficient kinetic schemes for steady and unsteady flow simulations on unstructured meshes.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#NiJX08,https://doi.org/10.1016/j.jcp.2007.06.018 +Jorge J. Moré,Do you trust derivatives or differences?,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#MoreW14,https://doi.org/10.1016/j.jcp.2014.04.056 +Wei Liao,Textbook-efficiency multigrid solver for three-dimensional unsteady compressible Navier-Stokes equations.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#LiaoDPL08,https://doi.org/10.1016/j.jcp.2008.03.026 +Vincent Heuveline,Shape optimization towards stability in constrained hydrodynamic systems.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#HeuvelineS09,https://doi.org/10.1016/j.jcp.2008.06.030 +Günther Grün,Two-phase flow with mass density contrast: Stable schemes for a thermodynamic consistent and frame-indifferent diffuse-interface model.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#GrunK14,https://doi.org/10.1016/j.jcp.2013.10.028 +Sirui Tan,A high order moving boundary treatment for compressible inviscid flows.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#TanS11,https://doi.org/10.1016/j.jcp.2011.04.011 +Jun Zhu,Numerical study on the convergence to steady state solutions of a new class of high order WENO schemes.,2017,349,J. Comput. Physics,,db/journals/jcphy/jcphy349.html#ZhuS17,https://doi.org/10.1016/j.jcp.2017.08.012 +Tomas Lundquist,A hybrid framework for coupling arbitrary summation-by-parts schemes on general meshes.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#LundquistMN18,https://doi.org/10.1016/j.jcp.2018.02.018 +Tobias A. Kampmann,Parallelized event chain algorithm for dense hard sphere and polymer systems.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#KampmannBK15,https://doi.org/10.1016/j.jcp.2014.10.059 +Christophe Chalons,A new comment on the computation of non-conservative products using Roe-type path conservative schemes.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#ChalonsC17,https://doi.org/10.1016/j.jcp.2017.01.016 +Assyr Abdulle,Stabilized multilevel Monte Carlo method for stiff stochastic differential equations.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#AbdulleB13,https://doi.org/10.1016/j.jcp.2013.05.039 +Ben Thornber,On the implicit large eddy simulations of homogeneous decaying turbulence.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#ThornberMD07,https://doi.org/10.1016/j.jcp.2007.06.030 +Yongsam Kim,Numerical simulations of two-dimensional foam by the immersed boundary method.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#KimLP10,https://doi.org/10.1016/j.jcp.2010.03.035 +Vaibhav Joshi,A positivity preserving variational method for multi-dimensional convection-diffusion-reaction equation.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#JoshiJ17,https://doi.org/10.1016/j.jcp.2017.03.005 +Xiaobo Yang,A moving mesh finite difference method for equilibrium radiation diffusion equations.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#YangHQ15,https://doi.org/10.1016/j.jcp.2015.06.014 +J. R. C. King,Boundary conditions for simulations of oscillating bubbles using the non-linear acoustic approximation.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#KingZR15,https://doi.org/10.1016/j.jcp.2014.12.037 +Marc Medale,High performance computations of steady-state bifurcations in 3D incompressible fluid flows by Asymptotic Numerical Method.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#MedaleC15,https://doi.org/10.1016/j.jcp.2015.07.021 +Michael Dumbser,A posteriori subcell limiting of the discontinuous Galerkin finite element method for hyperbolic conservation laws.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#DumbserZLD14,https://doi.org/10.1016/j.jcp.2014.08.009 +Stefanie Günther,A framework for simultaneous aerodynamic design optimization in the presence of chaos.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#GuntherGW17,https://doi.org/10.1016/j.jcp.2016.10.043 +Gregory H. Miller,A Neumann-Neumann preconditioned iterative substructuring approach for computing solutions to Poisson's equation with prescribed jumps on an embedded boundary.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#MillerP13,https://doi.org/10.1016/j.jcp.2012.10.023 +Shreyas Bidadi,Investigation of numerical viscosities and dissipation rates of second-order TVD-MUSCL schemes for implicit large-eddy simulation.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#BidadiR15,https://doi.org/10.1016/j.jcp.2014.10.057 +Matthew Anderson,A numerical approach to space-time finite elements for the wave equation.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#AndersonK07,https://doi.org/10.1016/j.jcp.2007.04.021 +Hasan Gunes,Gappy data: To Krig or not to Krig?,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#GunesSK06,https://doi.org/10.1016/j.jcp.2005.06.023 +Eldar Akhmetgaliyev,A boundary integral algorithm for the Laplace Dirichlet-Neumann mixed eigenvalue problem.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#AkhmetgaliyevBN15,https://doi.org/10.1016/j.jcp.2015.05.016 +Maarten L. Van De Put,Efficient solution of the Wigner-Liouville equation using a spectral decomposition of the force field.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#PutSM17,https://doi.org/10.1016/j.jcp.2017.08.059 +Adam Reichert,Energy stable numerical methods for hyperbolic partial differential equations using overlapping domain decomposition.,2012,231,J. Comput. Physics,16,db/journals/jcphy/jcphy231.html#ReichertHB12,https://doi.org/10.1016/j.jcp.2012.03.003 +A. Rosolen,An adaptive meshfree method for phase-field models of biomembranes. Part I: Approximation with maximum-entropy basis functions.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#RosolenPA13,https://doi.org/10.1016/j.jcp.2013.04.046 +Ken Mattsson,A solution to the stability issues with block norm summation by parts operators.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#MattssonA13,https://doi.org/10.1016/j.jcp.2013.07.013 +Jianchun Wang,A hybrid numerical simulation of isotropic compressible turbulence.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#WangWXSC10,https://doi.org/10.1016/j.jcp.2010.03.042 +Kris Van den Abeele,On the connection between the spectral volume and the spectral difference method.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#AbeeleLW07,https://doi.org/10.1016/j.jcp.2007.08.030 +Christophe Cornet,A new algorithm for charge deposition for multiple-grid method for PIC simulations in r-z cylindrical coordinates.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#CornetK07,https://doi.org/10.1016/j.jcp.2007.01.004 +Peter H. Lauritzen,A conservative semi-Lagrangian multi-tracer transport scheme (CSLAM) on the cubed-sphere grid.,2010,229,J. Comput. Physics,5,db/journals/jcphy/jcphy229.html#LauritzenNU10,https://doi.org/10.1016/j.jcp.2009.10.036 +Elie Hachem,Stabilized finite element method for incompressible flows with high Reynolds number.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#HachemRKDC10,https://doi.org/10.1016/j.jcp.2010.07.030 +Kensuke Yokoi,A density-scaled continuum surface force model within a balanced force formulation.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#Yokoi14,https://doi.org/10.1016/j.jcp.2014.08.034 +Johan Helsing,Integral equation methods for elliptic problems with boundary conditions of mixed type.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#Helsing09a,https://doi.org/10.1016/j.jcp.2009.09.004 +Alexander Bass,Symmetry reduction for molecular dynamics simulation of an imploding gas bubble.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#BassPMR08,https://doi.org/10.1016/j.jcp.2007.10.013 +J. C. Mandal,A genuinely multidimensional convective pressure flux split Riemann solver for Euler equations.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#MandalS15,https://doi.org/10.1016/j.jcp.2015.05.039 +Daniel A. Cassidy,An investigation of interface-sharpening schemes for multi-phase mixture flows.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#CassidyET09,https://doi.org/10.1016/j.jcp.2009.02.028 +Alexander Pletzer,Conservative interpolation of edge and face data on n dimensional structured grids using differential forms.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#PletzerF15,https://doi.org/10.1016/j.jcp.2015.08.029 +Alberto Guardone,Arbitrary Lagrangian Eulerian formulation for two-dimensional flows using dynamic meshes with edge swapping.,2011,230,J. Comput. Physics,20,db/journals/jcphy/jcphy230.html#GuardoneIQ11,https://doi.org/10.1016/j.jcp.2011.06.026 +Zhu Wang,Two-level discretizations of nonlinear closure models for proper orthogonal decomposition.,2011,230,J. Comput. Physics,1,db/journals/jcphy/jcphy230.html#WangABI11,https://doi.org/10.1016/j.jcp.2010.09.015 +Cécile Piret,The orthogonal gradients method: A radial basis functions method for solving partial differential equations on arbitrary surfaces.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#Piret12,https://doi.org/10.1016/j.jcp.2012.03.007 +Hengbin An,Anderson acceleration and application to the three-temperature energy equations.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#AnJW17,https://doi.org/10.1016/j.jcp.2017.06.031 +Waad Subber,A domain decomposition method of stochastic PDEs: An iterative solution techniques using a two-level scalable preconditioner.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#SubberS14,https://doi.org/10.1016/j.jcp.2013.08.058 +Bartosz Protas,Adjoint-based optimization of PDE systems with alternative gradients.,2008,227,J. Comput. Physics,13,db/journals/jcphy/jcphy227.html#Protas08,https://doi.org/10.1016/j.jcp.2008.03.013 +Houfu Fan,An adhesive contact mechanics formulation based on atomistically induced surface traction.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#FanRL15,https://doi.org/10.1016/j.jcp.2015.08.035 +Todd Arbogast,A fully conservative Eulerian-Lagrangian method for a convection-diffusion problem in a solenoidal field.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#ArbogastH10,https://doi.org/10.1016/j.jcp.2010.01.009 +Dinesh A. Shetty,High-order incompressible large-eddy simulation of fully inhomogeneous turbulent flows.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#ShettyFCF10,https://doi.org/10.1016/j.jcp.2010.08.011 +Richard M. J. Kramer,Algebraically constrained extended edge element method (eXFEM-AC) for resolution of multi-material cells.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#KramerBSV14,https://doi.org/10.1016/j.jcp.2014.07.021 +Luís Eça,On code verification of RANS solvers.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#EcaKVHP16,https://doi.org/10.1016/j.jcp.2016.01.002 +C. H. Yu,An optimized dispersion-relation-preserving combined compact difference scheme to solve advection equations.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#YuWHP15,https://doi.org/10.1016/j.jcp.2015.07.051 +A. Campos,The effect of artificial bulk viscosity in simulations of forced compressible turbulence.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#CamposM18,https://doi.org/10.1016/j.jcp.2018.05.030 +Nobuyoshi Fujimatsu,New interpolation technique for the CIP method on curvilinear coordinates.,2010,229,J. Comput. Physics,16,db/journals/jcphy/jcphy229.html#FujimatsuS10,https://doi.org/10.1016/j.jcp.2010.03.039 +Dmitry A. Fedosov,Triple-decker: Interfacing atomistic-mesoscopic-continuum flow regimes.,2009,228,J. Comput. Physics,4,db/journals/jcphy/jcphy228.html#FedosovK09,https://doi.org/10.1016/j.jcp.2008.10.024 +Yuxiang Liu,Efficient numerical solution of acoustic scattering from doubly-periodic arrays of axisymmetric objects.,2016,324,J. Comput. Physics,,db/journals/jcphy/jcphy324.html#LiuB16,https://doi.org/10.1016/j.jcp.2016.08.011 +Qiqi Wang,Least Squares Shadowing sensitivity analysis of chaotic limit cycle oscillations.,2014,267,J. Comput. Physics,,db/journals/jcphy/jcphy267.html#WangHB14,https://doi.org/10.1016/j.jcp.2014.03.002 +Youngdon Kwon,Numerical aspects in modeling high Deborah number flow and elastic instability.,2014,265,J. Comput. Physics,,db/journals/jcphy/jcphy265.html#Kwon14,https://doi.org/10.1016/j.jcp.2014.02.005 +Sergey A. Matveev,A fast numerical method for the Cauchy problem for the Smoluchowski equation.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#MatveevST15,https://doi.org/10.1016/j.jcp.2014.11.003 +Boris I. Krasnopolsky,A conservative fully implicit algorithm for predicting slug flows.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#KrasnopolskyL18,https://doi.org/10.1016/j.jcp.2017.11.032 +R. Ranjan,A collocated method for the incompressible Navier-Stokes equations inspired by the Box scheme.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#RanjanP13,https://doi.org/10.1016/j.jcp.2012.08.021 +S. Majid Hosseini,Pressure boundary conditions for computing incompressible flows with SPH.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#HosseiniF11,https://doi.org/10.1016/j.jcp.2011.06.013 +Assyr Abdulle,PIROCK: A swiss-knife partitioned implicit-explicit orthogonal Runge-Kutta Chebyshev integrator for stiff diffusion-advection-reaction problems with or without noise.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#AbdulleV13,https://doi.org/10.1016/j.jcp.2013.02.009 +Rongzong Huang,Third-order analysis of pseudopotential lattice Boltzmann model for multiphase flow.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#HuangW16a,https://doi.org/10.1016/j.jcp.2016.09.030 +Johan Helsing,Faster convergence and higher accuracy for the Dirichlet-Neumann map.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#Helsing09,https://doi.org/10.1016/j.jcp.2008.12.025 +Eric T. Chung,Adaptive multiscale model reduction with Generalized Multiscale Finite Element Methods.,2016,320,J. Comput. Physics,,db/journals/jcphy/jcphy320.html#ChungEH16,https://doi.org/10.1016/j.jcp.2016.04.054 +Christof Vömel,State-of-the-art eigensolvers for electronic structure calculations of large scale nano-systems.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#VomelTMCWD08,https://doi.org/10.1016/j.jcp.2008.01.018 +Jón Tómas Grétarsson,Fully conservative leak-proof treatment of thin solid structures immersed in compressible fluids.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#GretarssonF13,https://doi.org/10.1016/j.jcp.2013.02.017 +Jianfeng Lu 0001,Sparsifying preconditioner for soliton calculations.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#LuY16,https://doi.org/10.1016/j.jcp.2016.03.061 +Paul A. Ullrich,MCore: A non-hydrostatic atmospheric dynamical core utilizing high-order finite-volume methods.,2012,231,J. Comput. Physics,15,db/journals/jcphy/jcphy231.html#UllrichJ12,https://doi.org/10.1016/j.jcp.2012.04.024 +Kari Astala,Nonlinear Fourier analysis for discontinuous conductivities: Computational results.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#AstalaPRS14,https://doi.org/10.1016/j.jcp.2014.07.032 +Sk. Safique Ahmad,The fully implicit stochastic-α method for stiff stochastic differential equations.,2009,228,J. Comput. Physics,22,db/journals/jcphy/jcphy228.html#AhmadPR09,https://doi.org/10.1016/j.jcp.2009.08.002 +Nicolas Favrie,Solid-fluid diffuse interface model in cases of extreme deformations.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#FavrieGS09,https://doi.org/10.1016/j.jcp.2009.05.015 +Kai Jiang,Spectral method for exploring patterns of diblock copolymers.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#JiangHZ10,https://doi.org/10.1016/j.jcp.2010.06.038 +Georges Akiki,Pairwise-interaction extended point-particle model for particle-laden flows.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#AkikiMB17,https://doi.org/10.1016/j.jcp.2017.07.056 +V. D. Liseikin,Applications of a comprehensive grid method to solution of three-dimensional boundary value problems.,2011,230,J. Comput. Physics,21,db/journals/jcphy/jcphy230.html#LiseikinRK11,https://doi.org/10.1016/j.jcp.2011.06.002 +P. Sivakumar,A primitive-variable Riemann method for solution of the shallow water equations with wetting and drying.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#SivakumarHTB09,https://doi.org/10.1016/j.jcp.2009.07.002 +Chenzhou Lian,Solution-limited time stepping to enhance reliability in CFD applications.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#LianXM09,https://doi.org/10.1016/j.jcp.2009.03.040 +Aníbal Chicco-Ruiz,An algorithm for prescribed mean curvature using isogeometric methods.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#Chicco-RuizMP16,https://doi.org/10.1016/j.jcp.2016.04.012 +Nikolaos A. Gatsonis,An unstructured direct simulation Monte Carlo methodology with Kinetic-Moment inflow and outflow boundary conditions.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#GatsonisCA13,https://doi.org/10.1016/j.jcp.2012.08.009 +Christian Gobert,Subgrid modelling for particle-LES by Spectrally Optimised Interpolation (SOI).,2011,230,J. Comput. Physics,21,db/journals/jcphy/jcphy230.html#GobertM11,https://doi.org/10.1016/j.jcp.2011.06.028 +Steffen Basting,An FCT finite element scheme for ideal MHD equations in 1D and 2D.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#BastingK17,https://doi.org/10.1016/j.jcp.2017.02.051 +Basile Audoly,A discrete geometric approach for simulating the dynamics of thin viscous threads.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#AudolyCBBGW13,https://doi.org/10.1016/j.jcp.2013.06.034 +Hyea Hyun Kim,Approximation of macroscopic conductivity for a multiscale model by using mortar methods.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#KimK17,https://doi.org/10.1016/j.jcp.2017.02.011 +Gino I. Montecinos,Comparison of solvers for the generalized Riemann problem for hyperbolic systems with source terms.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#MontecinosCDT12,https://doi.org/10.1016/j.jcp.2012.06.011 +Elliot J. Carr,A variable-stepsize Jacobian-free exponential integrator for simulating transport in heterogeneous porous media: Application to wood drying.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#CarrTP13,https://doi.org/10.1016/j.jcp.2012.07.024 +Aleksandar Donev,Calculating the free energy of nearly jammed hard-particle packings using molecular dynamics.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#DonevST07,https://doi.org/10.1016/j.jcp.2006.12.013 +Gennady B. Sushko,Simulation of ultra-relativistic electrons and positrons channeling in crystals with MBN Explorer.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#SushkoBSKGS13,https://doi.org/10.1016/j.jcp.2013.06.028 +Sergey Charnyi,On conservation laws of Navier-Stokes Galerkin discretizations.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#CharnyiHOR17,https://doi.org/10.1016/j.jcp.2017.02.039 +Ruihan Guo,An efficient fully-discrete local discontinuous Galerkin method for the Cahn-Hilliard-Hele-Shaw system.,2014,264,J. Comput. Physics,,db/journals/jcphy/jcphy264.html#GuoXX14,https://doi.org/10.1016/j.jcp.2014.01.037 +Markus Berndt,Two-step hybrid conservative remapping for multimaterial arbitrary Lagrangian-Eulerian methods.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#BerndtBGKMS11,https://doi.org/10.1016/j.jcp.2011.05.003 +Tormod Bjøntegaard,Accurate interface-tracking of surfaces in three dimensions for arbitrary Lagrangian-Eulerian schemes.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#BjontegaardR12,https://doi.org/10.1016/j.jcp.2012.06.010 +B. B. Zhao,A comparative study of diffraction of shallow-water waves by high-level IGN and GN equations.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#ZhaoED15,https://doi.org/10.1016/j.jcp.2014.11.020 +Matthew K. Borg,Fluid simulations with atomistic resolution: a hybrid multiscale method with field-wise coupling.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#BorgLR13a,https://doi.org/10.1016/j.jcp.2013.08.022 +M. Mazzotti,A 2.5D boundary element formulation for modeling damped waves in arbitrary cross-section waveguides and cavities.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#MazzottiBMV13,https://doi.org/10.1016/j.jcp.2013.04.013 +Xiaoping Zhang,A vertex-centered and positivity-preserving scheme for anisotropic diffusion problems on arbitrary polygonal grids.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#ZhangSW17,https://doi.org/10.1016/j.jcp.2017.04.070 +François Fillion-Gourdeau,Galerkin method for unsplit 3-D Dirac equation using atomically/kinetically balanced B-spline basis.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#Fillion-Gourdeau16,https://doi.org/10.1016/j.jcp.2015.11.024 +Adrián Navas-Montilla,Overcoming numerical shockwave anomalies using energy balanced numerical schemes. Application to the Shallow Water Equations with discontinuous topography.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#Navas-MontillaM17,https://doi.org/10.1016/j.jcp.2017.03.057 +Pierre Degond,Damped Arrow-Hurwicz algorithm for sphere packing.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#DegondFM17,https://doi.org/10.1016/j.jcp.2016.11.047 +Johannes Tophøj Rasmussen,A multiresolution remeshed Vortex-In-Cell algorithm using patches.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#RasmussenCW11,https://doi.org/10.1016/j.jcp.2011.05.006 +Chao Yang 0002,Parallel multilevel methods for implicit solution of shallow water equations with nonsmooth topography on the cubed-sphere.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#YangC11,https://doi.org/10.1016/j.jcp.2010.12.027 +D. R. Golbert,On the search of more stable second-order lattice-Boltzmann schemes in confined flows.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#GolbertBCF15,https://doi.org/10.1016/j.jcp.2015.03.065 +Zhen Li 0003,Energy-conserving dissipative particle dynamics with temperature-dependent properties.,2014,265,J. Comput. Physics,,db/journals/jcphy/jcphy265.html#LiTLCK14,https://doi.org/10.1016/j.jcp.2014.02.003 +John Thuburn,Some conservation issues for the dynamical cores of NWP and climate models.,2008,227,J. Comput. Physics,7,db/journals/jcphy/jcphy227.html#Thuburn08,https://doi.org/10.1016/j.jcp.2006.08.016 +Friedrich Kupka,Total-variation-diminishing implicit-explicit Runge-Kutta methods for the simulation of double-diffusive convection in astrophysics.,2012,231,J. Comput. Physics,9,db/journals/jcphy/jcphy231.html#KupkaHHK12,https://doi.org/10.1016/j.jcp.2011.12.031 +Guofei Pang,Space-fractional advection-dispersion equations by the Kansa method.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#PangCF15,https://doi.org/10.1016/j.jcp.2014.07.020 +Rick Borrell,Parallel direct Poisson solver for discretisations with one Fourier diagonalisable direction.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#BorrellLTO11,https://doi.org/10.1016/j.jcp.2011.02.042 +W. Kyle Anderson,Petrov-Galerkin and discontinuous-Galerkin methods for time-domain and frequency-domain electromagnetic simulations.,2011,230,J. Comput. Physics,23,db/journals/jcphy/jcphy230.html#AndersonWKTH11,https://doi.org/10.1016/j.jcp.2011.06.025 +Dinshaw S. Balsara,Efficient implementation of ADER schemes for Euler and magnetohydrodynamical flows on structured meshes - Speed comparisons with Runge-Kutta methods.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#BalsaraMDDX13,https://doi.org/10.1016/j.jcp.2012.04.051 +Kristina Koal,Adapting the spectral vanishing viscosity method for large-eddy simulations in cylindrical configurations.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#KoalSB12,https://doi.org/10.1016/j.jcp.2012.01.014 +Duc-Vinh Le,An immersed interface method for viscous incompressible flows involving rigid and flexible boundaries.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#LeKP06,https://doi.org/10.1016/j.jcp.2006.05.004 +Fang-Bao Tian,Fluid-structure interaction involving large deformations: 3D simulations and applications to biological systems.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#TianDLDR14,https://doi.org/10.1016/j.jcp.2013.10.047 +Weizhu Bao,Numerical methods and comparison for computing dark and bright solitons in the nonlinear Schrödinger equation.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#BaoTX13,https://doi.org/10.1016/j.jcp.2012.10.054 +Li Yuan,Resolving the shock-induced combustion by an adaptive mesh redistribution method.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#YuanT07,https://doi.org/10.1016/j.jcp.2006.10.006 +Shivkumar Chandrasekaran,A minimum Sobolev norm technique for the numerical discretization of PDEs.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#ChandrasekaranM15,https://doi.org/10.1016/j.jcp.2015.07.025 +Martin Leutbecher,Ensemble forecasting.,2008,227,J. Comput. Physics,7,db/journals/jcphy/jcphy227.html#LeutbecherP08,https://doi.org/10.1016/j.jcp.2007.02.014 +Mario Morales-Hernández,A large time step 1D upwind explicit scheme (CFL andgt* 1): Application to shallow water equations.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#Morales-HernandezGM12,https://doi.org/10.1016/j.jcp.2012.06.017 +Elijah P. Newren,Unconditionally stable discretizations of the immersed boundary equations.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#NewrenFGK07,https://doi.org/10.1016/j.jcp.2006.08.004 +Peter Korn,Elementary dispersion analysis of some mimetic discretizations on triangular C-grids.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#KornD17,https://doi.org/10.1016/j.jcp.2016.10.059 +Martín Sánchez-Rocha,The compressible hybrid RANS/LES formulation using an additive operator.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#Sanchez-RochaM09,https://doi.org/10.1016/j.jcp.2008.11.021 +Alex H. Barnett,High-order boundary integral equation solution of high frequency wave scattering from obstacles in an unbounded linearly stratified medium.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#BarnettNM15,https://doi.org/10.1016/j.jcp.2015.05.034 +Peter K. Moore,Solving regularly and singularly perturbed reaction-diffusion equations in three space dimensions.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#Moore07,https://doi.org/10.1016/j.jcp.2006.10.015 +G. Pashos,A modified phase-field method for the investigation of wetting transitions of droplets on patterned surfaces.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#PashosKB15,https://doi.org/10.1016/j.jcp.2014.11.045 +Lin He,Reconstruction of shapes and impedance functions using few far-field measurements.,2009,228,J. Comput. Physics,3,db/journals/jcphy/jcphy228.html#HeKS09,https://doi.org/10.1016/j.jcp.2008.09.029 +Evan F. Bollig,Solution to PDEs using radial basis function finite-differences (RBF-FD) on multiple GPUs.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#BolligFE12,https://doi.org/10.1016/j.jcp.2012.06.030 +Santiago Badia,On an unconditionally convergent stabilized finite element approximation of resistive magnetohydrodynamics.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#BadiaCP13,https://doi.org/10.1016/j.jcp.2012.09.031 +Xiangxiong Zhang,On positivity-preserving high order discontinuous Galerkin schemes for compressible Navier-Stokes equations.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#Zhang17,https://doi.org/10.1016/j.jcp.2016.10.002 +Pierre Degond,Numerical simulations of the Euler system with congestion constraint.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#DegondHN11,https://doi.org/10.1016/j.jcp.2011.07.010 +Kejia Pan,A new extrapolation cascadic multigrid method for three dimensional elliptic boundary value problems.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#PanHHR17,https://doi.org/10.1016/j.jcp.2017.04.069 +Florencio Balboa Usabiaga,Inertial coupling for point particle fluctuating hydrodynamics.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#UsabiagaPD13,https://doi.org/10.1016/j.jcp.2012.10.045 +Arthur R. Ghigo,A 2D nonlinear multiring model for blood flow in large elastic arteries.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#GhigoFL17,https://doi.org/10.1016/j.jcp.2017.08.039 +Josefin Ahlkrona,Dynamically coupling the non-linear Stokes equations with the shallow ice approximation in glaciology: Description and first applications of the ISCAL method.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#AhlkronaLKZ16,https://doi.org/10.1016/j.jcp.2015.12.025 +Irene M. Gamba,Spectral method for a kinetic swarming model.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#GambaHM15,https://doi.org/10.1016/j.jcp.2015.04.033 +Philip W. Livermore,An implementation of the exponential time differencing scheme to the magnetohydrodynamic equations in a spherical shell.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#Livermore07,https://doi.org/10.1016/j.jcp.2006.05.029 +Pedro Alexandre da Cruz,Numerical solution of the Ericksen-Leslie dynamic equations for two-dimensional nematic liquid crystal flows.,2013,247,J. Comput. Physics,,db/journals/jcphy/jcphy247.html#CruzTSM13,https://doi.org/10.1016/j.jcp.2013.03.061 +Yidong Xia,Assessment of a hybrid finite element and finite volume code for turbulent incompressible flows.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#XiaWLCB16,https://doi.org/10.1016/j.jcp.2015.12.022 +Jelena Popovic,Adaptive fast interface tracking methods.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#PopovicR17,https://doi.org/10.1016/j.jcp.2017.02.017 +Mario Ricchiuto,Explicit Runge-Kutta residual distribution schemes for time dependent problems: Second order case.,2010,229,J. Comput. Physics,16,db/journals/jcphy/jcphy229.html#RicchiutoA10,https://doi.org/10.1016/j.jcp.2010.04.002 +Stefan Schoenawa,Discontinuous Galerkin discretization of the Reynolds-averaged Navier-Stokes equations with the shear-stress transport model.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#SchoenawaH14,https://doi.org/10.1016/j.jcp.2013.12.062 +Bernard Bialecki,Spectral Chebyshev-Fourier collocation for the Helmholtz and variable coefficient equations in a disk.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#BialeckiK08,https://doi.org/10.1016/j.jcp.2008.06.009 +Peng Chen,A nonparametric belief propagation method for uncertainty quantification with applications to flow in random porous media.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#ChenZ13,https://doi.org/10.1016/j.jcp.2013.05.006 +Vladimir A. Titarev,Construction and comparison of parallel implicit kinetic solvers in three spatial dimensions.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#TitarevDU14,https://doi.org/10.1016/j.jcp.2013.08.051 +Mauro Bologna,Diffusion in heterogeneous media: An iterative scheme for finding approximate solutions to fractional differential equations with time-dependent coefficients.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#BolognaSWG15,https://doi.org/10.1016/j.jcp.2014.08.027 +Oliver V. Atassi,Implementation of nonreflecting boundary conditions for the nonlinear Euler equations.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#AtassiG08,https://doi.org/10.1016/j.jcp.2007.09.028 +Xie Liang,A new spectral difference method using hierarchical polynomial bases for hyperbolic conservation laws.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#LiangMBQ15,https://doi.org/10.1016/j.jcp.2014.11.008 +Marcello Lappa,A mathematical and numerical framework for the analysis of compressible thermal convection in gases at very high temperatures.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#Lappa16,https://doi.org/10.1016/j.jcp.2016.02.062 +Carlos M. Xisto,A pressure-based high resolution numerical method for resistive MHD.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#XistoPO14,https://doi.org/10.1016/j.jcp.2014.07.009 +Sabyasachi Chatterjee,Computing singularly perturbed differential equations.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#ChatterjeeAA18,https://doi.org/10.1016/j.jcp.2017.10.025 +Christelle Lusso,Two-dimensional simulation by regularization of free surface viscoplastic flows with Drucker-Prager yield stress and application to granular collapse.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#LussoEBMFR17,https://doi.org/10.1016/j.jcp.2016.12.036 +Jiequan Li,Comparison of the generalized Riemann solver and the gas-kinetic scheme for inviscid compressible flow simulations.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#LiLX11,https://doi.org/10.1016/j.jcp.2011.03.028 +Abigail L. Bowers,New connections between finite element formulations of the Navier-Stokes equations.,2010,229,J. Comput. Physics,24,db/journals/jcphy/jcphy229.html#BowersCLR10,https://doi.org/10.1016/j.jcp.2010.08.036 +Hengfei Ding,Mixed spline function method for reaction-subdiffusion equations.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#DingL13,https://doi.org/10.1016/j.jcp.2013.02.014 +Mohamed El Bouajaji,A quasi-optimal domain decomposition algorithm for the time-harmonic Maxwell's equations.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#BouajajiTAG15,https://doi.org/10.1016/j.jcp.2015.03.041 +Hong Wang,A superfast-preconditioned iterative method for steady-state space-fractional diffusion equations.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#WangD13,https://doi.org/10.1016/j.jcp.2012.07.045 +Thierry Buffard,Monoslope and multislope MUSCL methods for unstructured meshes.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#BuffardC10,https://doi.org/10.1016/j.jcp.2010.01.026 +Andrea Mignone,A simple and accurate Riemann solver for isothermal MHD.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#Mignone07,https://doi.org/10.1016/j.jcp.2007.01.033 +D. F. Gordon,Fully explicit nonlinear optics model in a particle-in-cell framework.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#GordonHP13,https://doi.org/10.1016/j.jcp.2013.05.014 +Mehdi Najafi,Application of a shock-fitted spectral collocation method for computing transient high-speed inviscid flows over a blunt nose.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#NajafiHE14,https://doi.org/10.1016/j.jcp.2013.09.037 +Gennady V. Miloshevsky,Application of finite-difference methods to membrane-mediated protein interactions and to heat and magnetic field diffusion in plasmas.,2006,212,J. Comput. Physics,1,db/journals/jcphy/jcphy212.html#MiloshevskySPHJ06,https://doi.org/10.1016/j.jcp.2005.06.013 +Igor A. Andriyash,A spectral unaveraged algorithm for free electron laser simulations.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#AndriyashLM15,https://doi.org/10.1016/j.jcp.2014.11.026 +Patricio Farrell,Computational and analytical comparison of flux discretizations for the semiconductor device equations beyond Boltzmann statistics.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#FarrellKF17,https://doi.org/10.1016/j.jcp.2017.06.023 +Jean-Frédéric Gerbeau,Approximated Lax pairs for the reduced order integration of nonlinear evolution equations.,2014,265,J. Comput. Physics,,db/journals/jcphy/jcphy265.html#GerbeauL14,https://doi.org/10.1016/j.jcp.2014.01.047 +Virginie Grandgirard,A drift-kinetic Semi-Lagrangian 4D code for ion turbulence simulation.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#GrandgirardBBBGGMSSSVV06,https://doi.org/10.1016/j.jcp.2006.01.023 +Yu Chen,Vorticity vector-potential method for 3D viscous incompressible flows in time-dependent curvilinear coordinates.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#ChenX16,https://doi.org/10.1016/j.jcp.2016.02.020 +D. G. Huang,Preconditioned dual-time procedures and its application to simulating the flow with cavitations.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#Huang07,https://doi.org/10.1016/j.jcp.2006.10.001 +Thierry Goudon,Finite Volume schemes on unstructured grids for non-local models: Application to the simulation of heat transport in plasmas.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#GoudonP12,https://doi.org/10.1016/j.jcp.2012.07.050 +Seung Hyun Kim,Accuracy of higher-order lattice Boltzmann methods for microscale flows with finite Knudsen numbers.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#KimPB08,https://doi.org/10.1016/j.jcp.2008.06.012 +Max Rietmann,Newmark local time stepping on high-performance computing architectures.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#RietmannGPS17,https://doi.org/10.1016/j.jcp.2016.11.012 +Masahiro Fujita,Direct simulation of drying colloidal suspension on substrate using immersed free surface model.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#FujitaKY15,https://doi.org/10.1016/j.jcp.2014.10.042 +Lucas K. Wagner,QWalk: A quantum Monte Carlo program for electronic structure.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#WagnerBM09,https://doi.org/10.1016/j.jcp.2009.01.017 +Liang Pan,A third-order compact gas-kinetic scheme on unstructured meshes for compressible Navier-Stokes solutions.,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#PanX16,https://doi.org/10.1016/j.jcp.2016.05.012 +Christian Vergara,A coupled 3D-1D numerical monodomain solver for cardiac electrical activation in the myocardium with detailed Purkinje network.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#VergaraLPLFQ16,https://doi.org/10.1016/j.jcp.2015.12.016 +Christopher Batty,A cell-centred finite volume method for the Poisson problem on non-graded quadtrees with second order accurate gradients.,2017,331,J. Comput. Physics,,db/journals/jcphy/jcphy331.html#Batty17,https://doi.org/10.1016/j.jcp.2016.11.035 +Nail A. Gumerov,Fast multipole method for the biharmonic equation in three dimensions.,2006,215,J. Comput. Physics,1,db/journals/jcphy/jcphy215.html#GumerovD06,https://doi.org/10.1016/j.jcp.2005.10.029 +Irene M. Gamba,Galerkin-Petrov approach for the Boltzmann equation.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#GambaR18,https://doi.org/10.1016/j.jcp.2018.04.017 +Andrés Arrarás,Error analysis of multipoint flux domain decomposition methods for evolutionary diffusion problems.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#ArrarasPY14,https://doi.org/10.1016/j.jcp.2013.08.013 +Ye Xiong,Monte Carle simulation of quantum transport through nanostructures.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#XiongX12,https://doi.org/10.1016/j.jcp.2011.09.022 +Yaohong Wang,A hybrid level set-volume constraint method for incompressible two-phase flow.,2012,231,J. Comput. Physics,19,db/journals/jcphy/jcphy231.html#WangSS12,https://doi.org/10.1016/j.jcp.2012.06.014 +Fakhrodin Mohammadi,A wavelet-based computational method for solving stochastic Itô-Volterra integral equations.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#Mohammadi15,https://doi.org/10.1016/j.jcp.2015.05.051 +J. M. Morrell,A cell by cell anisotropic adaptive mesh ALE scheme for the numerical solution of the Euler equations.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#MorrellSB07,https://doi.org/10.1016/j.jcp.2007.05.040 +Colin J. Cotter,LBB stability of a mixed Galerkin finite element pair for fluid flow simulations.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#CotterHPR09,https://doi.org/10.1016/j.jcp.2008.09.014 +Yunhuang Zhang,Iterative performance of various formulations of the SPNSPN equations.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#ZhangRM13,https://doi.org/10.1016/j.jcp.2013.06.009 +Yuri A. Omelchenko,Self-adaptive time integration of flux-conservative equations with sources.,2006,216,J. Comput. Physics,1,db/journals/jcphy/jcphy216.html#OmelchenkoK06a,https://doi.org/10.1016/j.jcp.2005.12.008 +Patrick Blonigan,Adjoint sensitivity analysis of chaotic dynamical systems with non-intrusive least squares shadowing.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#Blonigan17,https://doi.org/10.1016/j.jcp.2017.08.002 +Lakshman Anumolu,Gradient augmented level set method for phase change simulations.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#AnumoluT18,https://doi.org/10.1016/j.jcp.2017.10.016 +S. J. Lind,Incompressible smoothed particle hydrodynamics for free-surface flows: A generalised diffusion-based algorithm for stability and validations for impulsive flows and propagating waves.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#LindXSR12,https://doi.org/10.1016/j.jcp.2011.10.027 +A. Tayebi,A meshless method for solving two-dimensional variable-order time fractional advection-diffusion equation.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#TayebiSH17,https://doi.org/10.1016/j.jcp.2017.03.061 +Alireza Doostan,A least-squares approximation of partial differential equations with high-dimensional random inputs.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#DoostanI09,https://doi.org/10.1016/j.jcp.2009.03.006 +Jia Zhao 0004,A decoupled energy stable scheme for a hydrodynamic phase-field model of mixtures of nematic liquid crystals and viscous fluids.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#ZhaoYSW16,https://doi.org/10.1016/j.jcp.2015.09.044 +Junhui Gao,An optimized spectral difference scheme for CAA problems.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#GaoYL12,https://doi.org/10.1016/j.jcp.2012.04.009 +Rouven Künze,A Multilevel Multiscale Finite-Volume Method.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#KunzeLL13,https://doi.org/10.1016/j.jcp.2013.08.042 +Kouroush Sadegh Zadeh,Parameter estimation in flow through partially saturated porous materials.,2008,227,J. Comput. Physics,24,db/journals/jcphy/jcphy227.html#Zadeh08,https://doi.org/10.1016/j.jcp.2008.09.007 +Hui Xu 0005,Analysis of the absorbing layers for the weakly-compressible lattice Boltzmann methods.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#XuS13,https://doi.org/10.1016/j.jcp.2013.02.051 +Clotilde Fermanian Kammerer,A kinetic model for the transport of electrons in a graphene layer.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#KammererM16,https://doi.org/10.1016/j.jcp.2016.09.010 +Lambert Fick,A stabilized POD model for turbulent flows over a range of Reynolds numbers: Optimal parameter sampling and constrained projection.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#FickMPT18,https://doi.org/10.1016/j.jcp.2018.05.027 +Pedro R. S. Antunes,Is it possible to tune a drum?,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#Antunes17,https://doi.org/10.1016/j.jcp.2017.02.056 +T. Abadie,On the combined effects of surface tension force calculation and interface advection on spurious currents within Volume of Fluid and Level Set frameworks.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#AbadieAL15,https://doi.org/10.1016/j.jcp.2015.04.054 +Caroline Gatti-Bono,Coupling and decoupling of the acoustic and gravity waves through perturbational analysis of the Euler equations.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#Gatti-Bono08,https://doi.org/10.1016/j.jcp.2007.09.024 +Hiroe Yamazaki,Vertical slice modelling of nonlinear Eady waves using a compatible finite element method.,2017,343,J. Comput. Physics,,db/journals/jcphy/jcphy343.html#YamazakiSCMC17,https://doi.org/10.1016/j.jcp.2017.04.006 +Jean-François Lemieux,Improving the numerical convergence of viscous-plastic sea ice models with the Jacobian-free Newton-Krylov method.,2010,229,J. Comput. Physics,8,db/journals/jcphy/jcphy229.html#LemieuxTSTTHA10,https://doi.org/10.1016/j.jcp.2009.12.011 +Amnon Birman,Application of the GRP scheme to open channel flow equations.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#BirmanF07,https://doi.org/10.1016/j.jcp.2006.07.008 +Xavier Antoine,On the ground states and dynamics of space fractional nonlinear Schrödinger/Gross-Pitaevskii equations with rotation term and nonlocal nonlinear interactions.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#AntoineTZ16,https://doi.org/10.1016/j.jcp.2016.08.009 +Xingye Yue,The local microscale problem in the multiscale modeling of strongly heterogeneous media: Effects of boundary conditions and cell size.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#YueE07,https://doi.org/10.1016/j.jcp.2006.07.034 +Sibylle Günter,A mixed implicit-explicit finite difference scheme for heat transport in magnetised plasmas.,2009,228,J. Comput. Physics,2,db/journals/jcphy/jcphy228.html#GunterL09,https://doi.org/10.1016/j.jcp.2008.09.012 +Zhicheng Hu,Acceleration for microflow simulations of high-order moment models by using lower-order model correction.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#HuLQ16,https://doi.org/10.1016/j.jcp.2016.09.042 +Raimund Bürger,Discontinuous approximation of viscous two-phase flow in heterogeneous porous media.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#BurgerKKR16,https://doi.org/10.1016/j.jcp.2016.05.043 +Michel Bergmann,Bioinspired swimming simulations.,2016,323,J. Comput. Physics,,db/journals/jcphy/jcphy323.html#BergmannI16,https://doi.org/10.1016/j.jcp.2016.07.022 +Boris N. Azarenok,A variational hexahedral grid generator with control metric.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#Azarenok06,https://doi.org/10.1016/j.jcp.2006.03.004 +Sihong Shao,Accurate calculation of Green's function of the Schrödinger equation in a block layered potential.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#ShaoCT06,https://doi.org/10.1016/j.jcp.2006.04.009 +Christian Lessig,Efficient and accurate rotation of finite spherical harmonics expansions.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#LessigWF12,https://doi.org/10.1016/j.jcp.2011.09.014 +Nickolay Y. Gnedin,Enforcing the Courant-Friedrichs-Lewy condition in explicitly conservative local time stepping schemes.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#GnedinSK18,https://doi.org/10.1016/j.jcp.2018.01.008 +Vassili Kitsios,BiGlobal stability analysis in curvilinear coordinates of massively separated lifting bodies.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#KitsiosRTOS09,https://doi.org/10.1016/j.jcp.2009.06.011 +E. J. Caramana,Curl-q: A vorticity damping artificial viscosity for essentially irrotational Lagrangian hydrodynamics calculations.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#CaramanaL06,https://doi.org/10.1016/j.jcp.2005.11.018 +D. R. Golbert,"Corrigendum to ""On the search of more stable second-order lattice-Boltzmann schemes in confined flows"" [J. Comp. Phys. (2015) 605-618].",2016,311,J. Comput. Physics,,db/journals/jcphy/jcphy311.html#GolbertBCF16,https://doi.org/10.1016/j.jcp.2016.01.012 +Shaozhong Deng,Generalized image charge solvation model for electrostatic interactions in molecular dynamics simulations of aqueous solutions.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#DengXBJC13,https://doi.org/10.1016/j.jcp.2013.03.027 +Y.-S. Wang,A two-parameter continuation method for computing numerical solutions of spin-1 Bose-Einstein condensates.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#WangC14,https://doi.org/10.1016/j.jcp.2013.08.056 +Alberto Guardone,On the relation between finite element and finite volume schemes for compressible flows with cylindrical and spherical symmetry.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#GuardoneSGP11,https://doi.org/10.1016/j.jcp.2010.10.012 +Oleksandr Marchuk,Modeling of supersonic plasma flow in the scrape-off layer.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#MarchukT07,https://doi.org/10.1016/j.jcp.2007.09.022 +Victorita Dolean,Effective transmission conditions for domain decomposition methods applied to the time-harmonic curl-curl Maxwell's equations.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#DoleanGLLP15,https://doi.org/10.1016/j.jcp.2014.09.024 +G. Capdeville,Towards a compact high-order method for non-linear hyperbolic systems. I: The Hermite Least-Square Monotone (HLSM) reconstruction.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#Capdeville09,https://doi.org/10.1016/j.jcp.2009.02.005 +Alexander Hay,hp-Adaptive time integration based on the BDF for viscous flows.,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#HayEPG15,https://doi.org/10.1016/j.jcp.2015.03.022 +Mridul Aanjaneya,A monolithic mass tracking formulation for bubbles in incompressible flow.,2013,247,J. Comput. Physics,,db/journals/jcphy/jcphy247.html#AanjaneyaPF13,https://doi.org/10.1016/j.jcp.2013.03.048 +Yuen-Yick Kwan,An efficient direct parallel spectral-element solver for separable elliptic problems.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#KwanS07,https://doi.org/10.1016/j.jcp.2007.02.013 +Suguru Miyauchi,A numerical method for mass transfer by a thin moving membrane with selective permeabilities.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#MiyauchiTK15,https://doi.org/10.1016/j.jcp.2014.12.048 +Keiichi Kitamura,Simple a posteriori slope limiter (Post Limiter) for high resolution and efficient flow computations.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#KitamuraH17,https://doi.org/10.1016/j.jcp.2017.04.002 +Oleg Boiarkine,A positivity-preserving ALE finite element scheme for convection-diffusion equations in moving domains.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#BoiarkineKCGM11,https://doi.org/10.1016/j.jcp.2010.12.042 +Romain Laraufie,A dynamic forcing method for unsteady turbulent inflow conditions.,2011,230,J. Comput. Physics,23,db/journals/jcphy/jcphy230.html#LaraufieDS11,https://doi.org/10.1016/j.jcp.2011.08.012 +Simone Deparis,Reduced basis method for multi-parameter-dependent steady Navier-Stokes equations: Applications to natural convection in a cavity.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#DeparisR09,https://doi.org/10.1016/j.jcp.2009.03.008 +Michal A. Kopera,Analysis of adaptive mesh refinement for IMEX discontinuous Galerkin solutions of the compressible Euler equations with application to atmospheric simulations.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#KoperaG14,https://doi.org/10.1016/j.jcp.2014.06.026 +Weiwei Wang,Spectral methods based on new formulations for coupled Stokes and Darcy equations.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#WangX14,https://doi.org/10.1016/j.jcp.2013.09.036 +Alex Main,A second-order time-accurate implicit finite volume method with exact two-phase Riemann problems for compressible multi-phase fluid and fluid-structure problems.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#MainF14,https://doi.org/10.1016/j.jcp.2013.11.001 +Rajkeshar Singh,Three-dimensional adaptive Cartesian grid method with conservative interface restructuring and reconstruction.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#SinghS07,https://doi.org/10.1016/j.jcp.2006.12.026 +Sergio Pirozzoli,On the spectral properties of shock-capturing schemes.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#Pirozzoli06,https://doi.org/10.1016/j.jcp.2006.07.009 +Yin Wang,Sixth order compact scheme combined with multigrid method and extrapolation technique for 2D poisson equation.,2009,228,J. Comput. Physics,1,db/journals/jcphy/jcphy228.html#WangZ09,https://doi.org/10.1016/j.jcp.2008.09.002 +Robin Chatelin,Hybrid grid-particle methods and Penalization: A Sherman-Morrison-Woodbury approach to compute 3D viscous flows using FFT.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#ChatelinP14,https://doi.org/10.1016/j.jcp.2014.03.023 +Craig A. Schroeder,Semi-implicit surface tension formulation with a Lagrangian surface mesh on an Eulerian simulation grid.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#SchroederZF12,https://doi.org/10.1016/j.jcp.2011.11.021 +Maurizio Tavelli,A staggered space-time discontinuous Galerkin method for the three-dimensional incompressible Navier-Stokes equations on unstructured tetrahedral meshes.,2016,319,J. Comput. Physics,,db/journals/jcphy/jcphy319.html#TavelliD16,https://doi.org/10.1016/j.jcp.2016.05.009 +S. H. Hashemi,Exponential basis functions in space and time: A meshless method for 2D time dependent problems.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#HashemiBM13,https://doi.org/10.1016/j.jcp.2013.01.033 +Matthias Gehre,Expectation propagation for nonlinear inverse problems - with an application to electrical impedance tomography.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#GehreJ14,https://doi.org/10.1016/j.jcp.2013.12.010 +Chad D. Meyer,A stabilized Runge-Kutta-Legendre method for explicit super-time-stepping of parabolic and mixed equations.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#MeyerBA14,https://doi.org/10.1016/j.jcp.2013.08.021 +Thomas Gillis,Fast immersed interface Poisson solver for 3D unbounded problems around arbitrary geometries.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#GillisWC18,https://doi.org/10.1016/j.jcp.2017.10.042 +Walter Boscheri,Arbitrary-Lagrangian-Eulerian Discontinuous Galerkin schemes with a posteriori subcell finite volume limiting on moving unstructured meshes.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#BoscheriD17,https://doi.org/10.1016/j.jcp.2017.06.022 +Sethuraman Sankaran,A method for stochastic constrained optimization using derivative-free surrogate pattern search and collocation.,2010,229,J. Comput. Physics,12,db/journals/jcphy/jcphy229.html#SankaranAM10,https://doi.org/10.1016/j.jcp.2010.03.005 +Roberto Bernetti,Exact solution of the Riemann problem for the shallow water equations with discontinuous bottom geometry.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#BernettiTT08,https://doi.org/10.1016/j.jcp.2007.11.033 +Shaul Sorek,Modified Eulerian-Lagrangian formulation for hydrodynamic modeling.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#SorekB12,https://doi.org/10.1016/j.jcp.2011.12.005 +Vickie E. Lynch,An automated analysis workflow for optimization of force-field parameters using neutron scattering data.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#LynchBBGSPG17,https://doi.org/10.1016/j.jcp.2017.03.045 +Karabi Ghosh,"Comments on ""Including the effects of temperature-dependent opacities in the implicit Monte Carlo algorithm"" by N.A. Gentile [J. Comput. Phys. 230 (2011) 5100-5114].",2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#Ghosh17,https://doi.org/10.1016/j.jcp.2016.11.006 +Nadège Villedieu,Third order residual distribution schemes for the Navier-Stokes equations.,2011,230,J. Comput. Physics,11,db/journals/jcphy/jcphy230.html#VilledieuQRD11,https://doi.org/10.1016/j.jcp.2010.12.026 +Yeonjong Shin,On a near optimal sampling strategy for least squares polynomial regression.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#ShinX16,https://doi.org/10.1016/j.jcp.2016.09.032 +William Fong,The black-box fast multipole method.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#FongD09,https://doi.org/10.1016/j.jcp.2009.08.031 +Zhouhua Qiu,A Fourier-Legendre spectral element method in polar coordinates.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#QiuZMLYZ12,https://doi.org/10.1016/j.jcp.2011.10.003 +Florent Renac,Improvement of the recursive projection method for linear iterative scheme stabilization based on an approximate eigenvalue problem.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#Renac11,https://doi.org/10.1016/j.jcp.2011.03.057 +C. Kraus,Perfectly matched layers in a divergence preserving ADI scheme for electromagnetics.,2012,231,J. Comput. Physics,1,db/journals/jcphy/jcphy231.html#KrausAA12,https://doi.org/10.1016/j.jcp.2011.08.016 +Fabien Evrard,Estimation of curvature from volume fractions using parabolic reconstruction on two-dimensional unstructured meshes.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#EvrardDW17,https://doi.org/10.1016/j.jcp.2017.09.034 +Jaap J. W. van der Vegt,HP-Multigrid as Smoother algorithm for higher order discontinuous Galerkin discretizations of advection dominated flows. Part II: Optimization of the Runge-Kutta smoother.,2012,231,J. Comput. Physics,22,db/journals/jcphy/jcphy231.html#VegtR12a,https://doi.org/10.1016/j.jcp.2012.05.037 +R. E. Heath,A discontinuous Galerkin method for the Vlasov-Poisson system.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#HeathGMM12,https://doi.org/10.1016/j.jcp.2011.09.020 +Bruno Costa 0002,Multi-domain hybrid spectral-WENO methods for hyperbolic conservation laws.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#CostaD07,https://doi.org/10.1016/j.jcp.2006.11.002 +M. R. Smith,Effects of direction decoupling in flux calculation in finite volume solvers.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#SmithMA08,https://doi.org/10.1016/j.jcp.2007.12.015 +Kosala Bandara,Boundary element based multiresolution shape optimisation in electrostatics.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#BandaraCOSZ15,https://doi.org/10.1016/j.jcp.2015.05.017 +Sugata Sen,Natural norm a posteriori error estimators for reduced basis approximations.,2006,217,J. Comput. Physics,1,db/journals/jcphy/jcphy217.html#SenVHDNP06,https://doi.org/10.1016/j.jcp.2006.02.012 +Huanhuan Yang,Fast spherical centroidal Voronoi mesh generation: A Lloyd-preconditioned LBFGS method in parallel.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#YangGJ18,https://doi.org/10.1016/j.jcp.2018.04.034 +James Bremer,A Nyström method for weakly singular integral operators on surfaces.,2012,231,J. Comput. Physics,14,db/journals/jcphy/jcphy231.html#BremerG12,https://doi.org/10.1016/j.jcp.2012.04.003 +P. G. Kassebaum,Application of group representation theory to derive Hermite interpolation polynomials on a triangle.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#KassebaumBR12,https://doi.org/10.1016/j.jcp.2012.04.045 +Laiping Zhang,A class of hybrid DG/FV methods for conservation laws II: Two-dimensional cases.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#ZhangWHDZ12a,https://doi.org/10.1016/j.jcp.2011.03.032 +John B. Greer,Fourth order partial differential equations on general geometries.,2006,216,J. Comput. Physics,1,db/journals/jcphy/jcphy216.html#GreerBS06,https://doi.org/10.1016/j.jcp.2005.11.031 +Jialin Hong,An energy-conserving method for stochastic Maxwell equations with multiplicative noise.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#HongJZC17,https://doi.org/10.1016/j.jcp.2017.09.030 +Blaise Delmotte,A general formulation of Bead Models applied to flexible fibers and active filaments at low Reynolds number.,2015,286,J. Comput. Physics,,db/journals/jcphy/jcphy286.html#DelmotteCP15,https://doi.org/10.1016/j.jcp.2015.01.026 +Anotida Madzvamuse,Time-stepping schemes for moving grid finite elements applied to reaction-diffusion systems on fixed and growing domains.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#Madzvamuse06,https://doi.org/10.1016/j.jcp.2005.09.012 +Krzysztof J. Fidkowski,Output-based space-time mesh optimization for unsteady flows using continuous-in-time adjoints.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#Fidkowski17,https://doi.org/10.1016/j.jcp.2017.04.005 +C. L. Winter,Multivariate sensitivity analysis of saturated flow through simulated highly heterogeneous groundwater aquifers.,2006,217,J. Comput. Physics,1,db/journals/jcphy/jcphy217.html#WinterGNT06,https://doi.org/10.1016/j.jcp.2006.01.047 +G. Lin,Uncertainty quantification via random domain decomposition and probabilistic collocation on sparse grids.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#LinTT10,https://doi.org/10.1016/j.jcp.2010.05.036 +Leslie Greengard,Extension of the Lorenz-Mie-Debye method for electromagnetic scattering to the time-domain.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#GreengardHJ15,https://doi.org/10.1016/j.jcp.2015.07.009 +Torbjørn Utnes,A segregated implicit pressure projection method for incompressible flows.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#Utnes08,https://doi.org/10.1016/j.jcp.2007.11.022 +Jie Liu 0003,A second-order changing-connectivity ALE scheme and its application to FSI with large convection of fluids and near contact of structures.,2016,304,J. Comput. Physics,,db/journals/jcphy/jcphy304.html#Liu16,https://doi.org/10.1016/j.jcp.2015.10.015 +Boris Gershgorin,Improving filtering and prediction of spatially extended turbulent systems with model errors through stochastic parameter estimation.,2010,229,J. Comput. Physics,1,db/journals/jcphy/jcphy229.html#GershgorinHM10a,https://doi.org/10.1016/j.jcp.2009.09.022 +David J. Horntrop,Mesoscopic simulation of Ostwald ripening.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#Horntrop06,https://doi.org/10.1016/j.jcp.2006.02.018 +William J. Rider,Accurate monotonicity- and extrema-preserving methods through adaptive nonlinear hybridizations.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#RiderGK07,https://doi.org/10.1016/j.jcp.2007.02.023 +Xiaoqiang Wang,Efficient and stable exponential time differencing Runge-Kutta methods for phase field elastic bending energy models.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#WangJD16,https://doi.org/10.1016/j.jcp.2016.04.004 +Konstantin Brenner,Hybrid-dimensional modelling of two-phase flow through fractured porous media with enhanced matrix fracture transmission conditions.,2018,357,J. Comput. Physics,,db/journals/jcphy/jcphy357.html#BrennerHMS18,https://doi.org/10.1016/j.jcp.2017.12.003 +Piotr K. Smolarkiewicz,Iterated upwind schemes for gas dynamics.,2009,228,J. Comput. Physics,1,db/journals/jcphy/jcphy228.html#SmolarkiewiczS09,https://doi.org/10.1016/j.jcp.2008.08.008 +María-Luisa Rapún,Reduced order models based on local POD plus Galerkin projection.,2010,229,J. Comput. Physics,8,db/journals/jcphy/jcphy229.html#RapunV10,https://doi.org/10.1016/j.jcp.2009.12.029 +Wei Cai,A Schwarz generalized eigen-oscillation spectral element method (GeSEM) for 2-D high frequency electromagnetic scattering in dispersive inhomogeneous media.,2008,227,J. Comput. Physics,23,db/journals/jcphy/jcphy227.html#CaiJSS08,https://doi.org/10.1016/j.jcp.2008.08.012 +Dongwoo Sohn,Finite element analysis of quasistatic crack propagation in brittle media with voids or inclusions.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#SohnLCKI11,https://doi.org/10.1016/j.jcp.2011.05.016 +Christopher Angstmann,From stochastic processes to numerical methods: A new scheme for solving reaction subdiffusion fractional partial differential equations.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#AngstmannDHJLN16,https://doi.org/10.1016/j.jcp.2015.11.053 +Nneoma Ogbonna,Decoupled overlapping grids for the numerical modeling of oil wells.,2012,231,J. Comput. Physics,1,db/journals/jcphy/jcphy231.html#OgbonnaD12,https://doi.org/10.1016/j.jcp.2011.09.002 +Takanobu Amano,A generalized quasi-neutral fluid-particle hybrid plasma model and its application to energetic-particle-magnetohydrodynamics hybrid simulation.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#Amano18,https://doi.org/10.1016/j.jcp.2018.04.020 +F. A. G. Almeida,Association of scattering matrices in quantum networks.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#AlmeidaM13,https://doi.org/10.1016/j.jcp.2013.02.044 +Matei Tene,Adaptive algebraic multiscale solver for compressible flow in heterogeneous porous media.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#TeneWH15,https://doi.org/10.1016/j.jcp.2015.08.009 +Chuanfu Xu,Collaborating CPU and GPU for large-scale high-order CFD simulations with complex grids on the TianHe-1A supercomputer.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#XuDZFWJCCWWLC14,https://doi.org/10.1016/j.jcp.2014.08.024 +B. Kubrak,Low-diffusivity scalar transport using a WENO scheme and dual meshing.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#KubrakHGW13,https://doi.org/10.1016/j.jcp.2012.12.039 +Aaron Katz,Application of strand meshes to complex aerodynamic flow fields.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#KatzWSMC11,https://doi.org/10.1016/j.jcp.2011.04.036 +Peng Zhang 0030,Extension of the noise propagation matrix method for higher mode solutions.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#ZhangLL17,https://doi.org/10.1016/j.jcp.2017.05.007 +Sijun Zhang,Generalized formulations for the Rhie-Chow interpolation.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#ZhangZB14,https://doi.org/10.1016/j.jcp.2013.11.006 +Elena Beretta,Reconstruction of a piecewise constant conductivity on a polygonal partition via shape optimization in EIT.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#BerettaMPS18,https://doi.org/10.1016/j.jcp.2017.10.017 +Matthew R. Norman,Hermite WENO limiting for multi-moment finite-volume methods using the ADER-DT time discretization for 1-D systems of conservation laws.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#Norman15,https://doi.org/10.1016/j.jcp.2014.11.017 +Yu-Hsin Shi,High resolution kinetic beam schemes in generalized coordinates for ideal quantum gas dynamics.,2007,222,J. Comput. Physics,2,db/journals/jcphy/jcphy222.html#ShiHY07,https://doi.org/10.1016/j.jcp.2006.08.001 +Christian Huber,A lattice Boltzmann model for coupled diffusion.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#HuberCM10,https://doi.org/10.1016/j.jcp.2010.07.002 +Nathaniel R. Morgan,A Godunov-like point-centered essentially Lagrangian hydrodynamic approach.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#MorganWBCCW15,https://doi.org/10.1016/j.jcp.2014.10.048 +David Nordsletten,A non-conforming monolithic finite element method for problems of coupled mechanics.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#NordslettenKS10,https://doi.org/10.1016/j.jcp.2010.05.043 +Christopher J. Subich,A robust moving mesh method for spectral collocation solutions of time-dependent partial differential equations.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#Subich15,https://doi.org/10.1016/j.jcp.2015.04.003 +Yasutaro Nishimura,A finite element Poisson solver for gyrokinetic particle simulations in a global field aligned mesh.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#NishimuraLLE06,https://doi.org/10.1016/j.jcp.2005.10.011 +Don S. Lemons,Small-angle Coulomb collision model for particle-in-cell simulations.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#LemonsWDA09,https://doi.org/10.1016/j.jcp.2008.10.025 +Maruti Kumar Mudunuru,On enforcing maximum principles and achieving element-wise species balance for advection-diffusion-reaction equations under the finite element method.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#MudunuruN16,https://doi.org/10.1016/j.jcp.2015.09.057 +Prateek Sharma,A fast semi-implicit method for anisotropic diffusion.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#SharmaH11,https://doi.org/10.1016/j.jcp.2011.03.009 +Hanif Montazeri,A balanced-force algorithm for two-phase flows.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#MontazeriW14,https://doi.org/10.1016/j.jcp.2013.09.054 +Grégory Huber,A time splitting projection scheme for compressible two-phase flows. Application to the interaction of bubbles with ultrasound waves.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#HuberTBG15,https://doi.org/10.1016/j.jcp.2015.09.019 +Ravindra Duddu,Diffusional evolution of precipitates in elastic media using the extended finite element and the level set methods.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#DudduCVM11,https://doi.org/10.1016/j.jcp.2010.11.002 +Kazuki Niino,Preconditioning based on Calderon's formulae for periodic fast multipole methods for Helmholtz' equation.,2012,231,J. Comput. Physics,1,db/journals/jcphy/jcphy231.html#NiinoN12,https://doi.org/10.1016/j.jcp.2011.08.019 +Kevin Carlberg,The GNAT method for nonlinear model reduction: Effective implementation and application to computational fluid dynamics and turbulent flows.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#CarlbergFCA13,https://doi.org/10.1016/j.jcp.2013.02.028 +Zhen Peng,Non-conformal domain decomposition method with second-order transmission conditions for time-harmonic electromagnetics.,2010,229,J. Comput. Physics,16,db/journals/jcphy/jcphy229.html#PengL10,https://doi.org/10.1016/j.jcp.2010.03.049 +Andrew J. Christlieb,A WENO-based Method of Lines Transpose approach for Vlasov simulations.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#ChristliebGJ16,https://doi.org/10.1016/j.jcp.2016.09.048 +Alexey G. Fatyanov,High-performance modeling acoustic and elastic waves using the parallel Dichotomy Algorithm.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#FatyanovT11,https://doi.org/10.1016/j.jcp.2010.11.046 +P.-H. Kao,An investigation into curved and moving boundary treatments in the lattice Boltzmann method.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#KaoY08,https://doi.org/10.1016/j.jcp.2008.02.002 +Daan Crommelin,Fitting *eries by continuous-time Markov chains: A quadratic programming approach.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#CrommelinV06,https://doi.org/10.1016/j.jcp.2006.01.045 +William J. Menz,Application of stochastic weighted algorithms to a multidimensional silica particle model.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#MenzPWK13,https://doi.org/10.1016/j.jcp.2013.04.010 +Jun Fang,A hybrid approach to solve the high-frequency Helmholtz equation with source singularity in smooth heterogeneous media.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#FangQZZ18,https://doi.org/10.1016/j.jcp.2018.03.011 +Xue-lei Lin,A multigrid method for linear systems arising from time-dependent two-dimensional space-fractional diffusion equations.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#LinNS17,https://doi.org/10.1016/j.jcp.2017.02.008 +Omar Abu Arqub,Constructing and predicting solitary pattern solutions for nonlinear time-fractional dispersive partial differential equations.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#ArqubEM15,https://doi.org/10.1016/j.jcp.2014.09.034 +Ercília Sousa,An explicit high order method for fractional advection diffusion equations.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#Sousa14,https://doi.org/10.1016/j.jcp.2014.08.036 +Frédéric Gibou,Efficient symmetric positive definite second-order accurate monolithic solver for fluid/solid interactions.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#GibouM12,https://doi.org/10.1016/j.jcp.2012.01.009 +Dorian Krause,Towards a large-scale scalable adaptive heart model using shallow tree meshes.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#KrauseDPK15,https://doi.org/10.1016/j.jcp.2015.05.005 +Jose J. Blanco-Pillado,A new parallel simulation technique.,2012,231,J. Comput. Physics,1,db/journals/jcphy/jcphy231.html#Blanco-PilladoOS12,https://doi.org/10.1016/j.jcp.2011.08.029 +Daniele Schiavazzi,A matching pursuit approach to solenoidal filtering of three-dimensional velocity measurements.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#SchiavazziCIE14,https://doi.org/10.1016/j.jcp.2013.12.049 +Jun Zhu,Runge-Kutta discontinuous Galerkin method using a new type of WENO limiters on unstructured meshes.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#ZhuZSQ13,https://doi.org/10.1016/j.jcp.2013.04.012 +Duncan A. Lockerby,Asynchronous coupling of hybrid models for efficient simulation of multiscale systems.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#LockerbyPBR15,https://doi.org/10.1016/j.jcp.2014.12.035 +Qianlong Liu,A Brinkman penalization method for compressible flows in complex geometries.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#LiuV07,https://doi.org/10.1016/j.jcp.2007.07.037 +S. Weggler,A new numerical method for nonlocal electrostatics in biomolecular simulations.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#WegglerRH10,https://doi.org/10.1016/j.jcp.2010.01.040 +Ken Mattsson,Diagonal-norm summation by parts operators for finite difference approximations of third and fourth derivatives.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#Mattsson14,https://doi.org/10.1016/j.jcp.2014.06.027 +Rong Kong,Transport-constrained extensions of collision and track length estimators for solutions of radiative transport problems.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#KongS13,https://doi.org/10.1016/j.jcp.2013.02.023 +Yi-Ju Chou,An Euler-Lagrange model for simulating fine particle suspension in liquid flows.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#ChouGS15,https://doi.org/10.1016/j.jcp.2015.07.038 +Peter Balogh,A computational approach to modeling cellular-scale blood flow in complex geometry.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#BaloghB17,https://doi.org/10.1016/j.jcp.2017.01.007 +D. F. Cavalca,Development and convergence analysis of an effective and robust implicit Euler solver for 3D unstructured grids.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#CavalcaBCTS18,https://doi.org/10.1016/j.jcp.2018.04.005 +Pieter D. Boom,Optimization of high-order diagonally-implicit Runge-Kutta methods.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#BoomZ18,https://doi.org/10.1016/j.jcp.2018.05.020 +Jian-Feng Cai,Blind motion deblurring using multiple images.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#CaiJLS09,https://doi.org/10.1016/j.jcp.2009.04.022 +L. Isoardi,Penalization modeling of a limiter in the Tokamak edge plasma.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#IsoardiCCHSGSST10,https://doi.org/10.1016/j.jcp.2009.11.031 +Songming Hou,Numerical method for solving matrix coefficient elliptic equation with sharp-edged interfaces.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#HouWW10,https://doi.org/10.1016/j.jcp.2010.06.005 +Yu Lv,Discontinuous Galerkin method for multicomponent chemically reacting flows and combustion.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#LvI14,https://doi.org/10.1016/j.jcp.2014.03.029 +Subhash C. Mishra,Solving transient conduction and radiation heat transfer problems using the lattice Boltzmann method and the finite volume method.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#MishraR07,https://doi.org/10.1016/j.jcp.2006.08.021 +Anthony B. Costa,Extending the length and time scales of Gram-Schmidt Lyapunov vector computations.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#CostaG13,https://doi.org/10.1016/j.jcp.2013.03.051 +P. A. Bakhvalov,Modification of Flux Correction method for accuracy improvement on unsteady problems.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#BakhvalovK17,https://doi.org/10.1016/j.jcp.2017.02.053 +Jing Gong,A stable and efficient hybrid scheme for viscous problems in complex geometries.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#GongN07,https://doi.org/10.1016/j.jcp.2007.05.018 +Jianping Meng,Diffuse reflection boundary condition for high-order lattice Boltzmann models with streaming-collision mechanism.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#MengZ14,https://doi.org/10.1016/j.jcp.2013.10.057 +Stéphane Popinet,An accurate adaptive solver for surface-tension-driven interfacial flows.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#Popinet09,https://doi.org/10.1016/j.jcp.2009.04.042 +Injae Lee,A discrete-forcing immersed boundary method for the fluid-structure interaction of an elastic slender body.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#LeeC15,https://doi.org/10.1016/j.jcp.2014.09.028 +Thomas Zauner,Application of a force field algorithm for creating strongly correlated multiscale sphere packings.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#Zauner16,https://doi.org/10.1016/j.jcp.2016.02.038 +Cheng Liu,Adaptive THINC-GFM for compressible multi-medium flows.,2017,342,J. Comput. Physics,,db/journals/jcphy/jcphy342.html#LiuH17,https://doi.org/10.1016/j.jcp.2017.04.032 +Brian C. Vermeire,On the properties of energy stable flux reconstruction schemes for implicit large eddy simulation.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#VermeireV16,https://doi.org/10.1016/j.jcp.2016.09.034 +Divakar Viswanath,Navier-Stokes solver using Green's functions I: Channel flow and plane Couette flow.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#ViswanathT13,https://doi.org/10.1016/j.jcp.2013.06.004 +Jan Nordström,On the relation between conservation and dual consistency for summation-by-parts schemes.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#NordstromG17,https://doi.org/10.1016/j.jcp.2017.04.072 +Lijie Mei,Symplectic exponential Runge-Kutta methods for solving nonlinear Hamiltonian systems.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#MeiW17,https://doi.org/10.1016/j.jcp.2017.03.018 +Keh-Ming Shyue,An Eulerian interface sharpening algorithm for compressible two-phase flow: The algebraic THINC approach.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#ShyueX14,https://doi.org/10.1016/j.jcp.2014.03.010 +Katerina Konakli,Polynomial meta-models with canonical low-rank approximations: Numerical insights and comparison to sparse polynomial chaos expansions.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#KonakliS16,https://doi.org/10.1016/j.jcp.2016.06.005 +Leonid Yelash,Adaptive discontinuous evolution Galerkin method for dry atmospheric flow.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#YelashMLGW14,https://doi.org/10.1016/j.jcp.2014.02.034 +Jianming Yang,A simple and efficient direct forcing immersed boundary framework for fluid-structure interactions.,2012,231,J. Comput. Physics,15,db/journals/jcphy/jcphy231.html#YangS12,https://doi.org/10.1016/j.jcp.2012.04.012 +Nicolay M. Tanushev,Gaussian beam decomposition of high frequency wave fields.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#TanushevET09,https://doi.org/10.1016/j.jcp.2009.08.028 +Rajapandiyan Asaithambi,A note on a conservative finite volume approach to address numerical stiffness in polar meshes.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#AsaithambiM17,https://doi.org/10.1016/j.jcp.2017.04.025 +Wanai Li,The discontinuous Galerkin spectral element methods for compressible flows on two-dimensional mixed grids.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#LiPR18,https://doi.org/10.1016/j.jcp.2018.03.001 +Xingyu Wang,AP-Cloud: Adaptive Particle-in-Cloud method for optimal solutions to Vlasov-Poisson equation.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#WangSJY16,https://doi.org/10.1016/j.jcp.2016.04.037 +Geert H. Keetels,Fourier spectral and wavelet solvers for the incompressible Navier-Stokes equations with volume-penalization: Convergence of a dipole-wall collision.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#KeetelsDKCSH07,https://doi.org/10.1016/j.jcp.2007.07.036 +F. D. Halpern,The GBS code for tokamak scrape-off layer simulations.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#HalpernRJLMMMRT16,https://doi.org/10.1016/j.jcp.2016.03.040 +Gökberk Kabacaoglu,Low-resolution simulations of vesicle suspensions in 2D.,2018,357,J. Comput. Physics,,db/journals/jcphy/jcphy357.html#KabacaogluQB18,https://doi.org/10.1016/j.jcp.2017.12.023 +Gwenn Boedec,3D vesicle dynamics simulations with a linearly triangulated surface.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#BoedecLJ11,https://doi.org/10.1016/j.jcp.2010.10.021 +Mingrong Cui,Compact alternating direction implicit method for two-dimensional time fractional diffusion equation.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#Cui12,https://doi.org/10.1016/j.jcp.2011.12.010 +Tomás Dohnal,Perfectly matched layers for coupled nonlinear Schrödinger equations with mixed derivatives.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#Dohnal09,https://doi.org/10.1016/j.jcp.2009.08.023 +Jian Du,An immersed boundary method for two-fluid mixtures.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#DuGF14,https://doi.org/10.1016/j.jcp.2014.01.008 +Björn Sjögreen,On high order finite-difference metric discretizations satisfying GCL on moving and deforming grids.,2014,265,J. Comput. Physics,,db/journals/jcphy/jcphy265.html#SjogreenYV14,https://doi.org/10.1016/j.jcp.2014.01.045 +Dominik Derigs,Ideal GLM-MHD: About the entropy consistent nine-wave magnetic field divergence diminishing ideal magnetohydrodynamics equations.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#DerigsWGWB18,https://doi.org/10.1016/j.jcp.2018.03.002 +Yen Liu,Spectral difference method for unstructured grids I: Basic formulation.,2006,216,J. Comput. Physics,2,db/journals/jcphy/jcphy216.html#LiuVW06a,https://doi.org/10.1016/j.jcp.2006.01.024 +Lin Fu,A family of high-order targeted ENO schemes for compressible-fluid simulations.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#Fu0A16,https://doi.org/10.1016/j.jcp.2015.10.037 +Matteo Cusini,Algebraic dynamic multilevel method for compositional flow in heterogeneous porous media.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#CusiniFKH18,https://doi.org/10.1016/j.jcp.2017.10.052 +R. Ostilla-Monico,A multiple-resolution strategy for Direct Numerical Simulation of scalar turbulence.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#Ostilla-MonicoY15,https://doi.org/10.1016/j.jcp.2015.08.031 +J. Blair Perot,A discrete calculus analysis of the Keller Box scheme and a generalization of the method to arbitrary meshes.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#PerotS07,https://doi.org/10.1016/j.jcp.2007.04.015 +Gerardo Tauriello,A comparative study of penalization and phase field methods for the solution of the diffusion equation in complex geometries.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#TaurielloK15,https://doi.org/10.1016/j.jcp.2014.11.033 +Roberto Garrappa,Solving the time-fractional Schrödinger equation by Krylov projection methods.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#GarrappaMP15,https://doi.org/10.1016/j.jcp.2014.09.023 +Andrew Barlow,Constrained optimization framework for interface-aware sub-scale dynamics closure model for multimaterial cells in Lagrangian and arbitrary Lagrangian-Eulerian hydrodynamics.,2014,276,J. Comput. Physics,,db/journals/jcphy/jcphy276.html#BarlowHS14,https://doi.org/10.1016/j.jcp.2014.07.031 +V. Kazemi-Kamyab,Analysis and application of high order implicit Runge-Kutta schemes for unsteady conjugate heat transfer: A strongly-coupled approach.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#Kazemi-KamyabZB14,https://doi.org/10.1016/j.jcp.2014.04.016 +Nathan D. Masters,Octant flux splitting information preservation DSMC method for thermally driven flows.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#MastersY07,https://doi.org/10.1016/j.jcp.2007.06.027 +Zhaoli Guo,A comparative study of the LBE and GKS methods for 2D near incompressible laminar flows.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#GuoLLX08,https://doi.org/10.1016/j.jcp.2008.01.024 +Chohong Min,Robust second-order accurate discretizations of the multi-dimensional Heaviside and Dirac delta functions.,2008,227,J. Comput. Physics,22,db/journals/jcphy/jcphy227.html#MinG08,https://doi.org/10.1016/j.jcp.2008.07.021 +Qian Wang,Compact high order finite volume method on unstructured grids I: Basic formulations and one-dimensional schemes.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#WangRL16,https://doi.org/10.1016/j.jcp.2016.01.036 +Xiu Yang,Enhancing sparsity of Hermite polynomial expansions by iterative rotations.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#YangLBL16,https://doi.org/10.1016/j.jcp.2015.11.038 +Stefan Schlamp,Higher moments of the velocity distribution function in dense-gas shocks.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#SchlampH07,https://doi.org/10.1016/j.jcp.2006.09.020 +Basil Bayati,Adaptive mesh refinement for stochastic reaction-diffusion processes.,2011,230,J. Comput. Physics,1,db/journals/jcphy/jcphy230.html#BayatiCK11,https://doi.org/10.1016/j.jcp.2010.08.035 +S. V. Petropavlovsky,Non-deteriorating time domain numerical algorithms for Maxwell's electrodynamics.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#PetropavlovskyT17,https://doi.org/10.1016/j.jcp.2017.01.068 +Sailajananda Bhattacharya,Far-field approximation for hydrodynamic interactions in parallel-wall geometry.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#BhattacharyaBW06,https://doi.org/10.1016/j.jcp.2005.07.015 +Rei Kawashima,A hyperbolic-equation system approach for magnetized electron fluids in quasi-neutral plasmas.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#KawashimaKS15,https://doi.org/10.1016/j.jcp.2014.12.024 +Weixuan Li,Inverse regression-based uncertainty quantification algorithms for high-dimensional models: Theory and practice.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#LiLL16,https://doi.org/10.1016/j.jcp.2016.05.040 +J. Y. Shao,Development of an immersed boundary-phase field-lattice Boltzmann method for Neumann boundary condition to study contact line dynamics.,2013,234,J. Comput. Physics,,db/journals/jcphy/jcphy234.html#ShaoSC13,https://doi.org/10.1016/j.jcp.2012.08.040 +Hideaki Miura,Hall effects and sub-grid-scale modeling in magnetohydrodynamic turbulence simulations.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#MiuraAH16,https://doi.org/10.1016/j.jcp.2016.03.067 +Aleksandar Donev,A First-Passage Kinetic Monte Carlo algorithm for complex diffusion-reaction systems.,2010,229,J. Comput. Physics,9,db/journals/jcphy/jcphy229.html#DonevBOGSK10,https://doi.org/10.1016/j.jcp.2009.12.038 +Georgij Bispen,Asymptotic preserving IMEX finite volume schemes for low Mach number Euler equations with gravitation.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#BispenLY17,https://doi.org/10.1016/j.jcp.2017.01.020 +J. D. Crouch,Predicting the onset of flow unsteadiness based on global instability.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#CrouchGM07,https://doi.org/10.1016/j.jcp.2006.10.035 +Oleg Davydov,Adaptive meshless centres and RBF stencils for Poisson equation.,2011,230,J. Comput. Physics,2,db/journals/jcphy/jcphy230.html#DavydovO11,https://doi.org/10.1016/j.jcp.2010.09.005 +Ira Katz,Neutral gas free molecular flow algorithm including ionization and walls for use in plasma simulations.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#KatzM11,https://doi.org/10.1016/j.jcp.2010.11.013 +Bernard Parent,Positivity-preserving high-resolution schemes for systems of conservation laws.,2012,231,J. Comput. Physics,1,db/journals/jcphy/jcphy231.html#Parent12,https://doi.org/10.1016/j.jcp.2011.09.006 +Vedran Coralic,Finite-volume WENO scheme for viscous compressible multicomponent flows.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#CoralicC14,https://doi.org/10.1016/j.jcp.2014.06.003 +Satoshi Togo,Self-consistent treatment of the sheath boundary conditions by introducing anisotropic ion temperatures and virtual divertor model.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#TogoTNHILO16,https://doi.org/10.1016/j.jcp.2016.01.011 +Wei E. I. Sha,Application of the symplectic finite-difference time-domain scheme to electromagnetic simulation.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#ShaHWC07,https://doi.org/10.1016/j.jcp.2006.11.027 +Peicheng Yu,Modeling of laser wakefield acceleration in Lorentz boosted frame using EM-PIC code with spectral solver.,2014,266,J. Comput. Physics,,db/journals/jcphy/jcphy266.html#YuXDAVTFLSM14,https://doi.org/10.1016/j.jcp.2014.02.016 +Arthur Moncorgé,Modified sequential fully implicit scheme for compositional flow simulation.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#MoncorgeTJ17,https://doi.org/10.1016/j.jcp.2017.02.032 +Alex Main,An enhanced FIVER method for multi-material flow problems with second-order convergence rate.,2017,329,J. Comput. Physics,,db/journals/jcphy/jcphy329.html#MainZAF17,https://doi.org/10.1016/j.jcp.2016.10.028 +Floraine Cordier,An Asymptotic-Preserving all-speed scheme for the Euler and Navier-Stokes equations.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#CordierDK12,https://doi.org/10.1016/j.jcp.2012.04.025 +Davide Cortinovis,Zonal Multiscale Finite-Volume framework.,2017,337,J. Comput. Physics,,db/journals/jcphy/jcphy337.html#CortinovisJ17,https://doi.org/10.1016/j.jcp.2017.01.052 +Stefano Markidis,The Fluid-Kinetic Particle-in-Cell method for plasma simulations.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#MarkidisHLRHML14,https://doi.org/10.1016/j.jcp.2014.02.002 +Jitendra Kumar,Diffuse interface immersed boundary method for multi-fluid flows with arbitrarily moving rigid bodies.,2018,360,J. Comput. Physics,,db/journals/jcphy/jcphy360.html#KumarN18,https://doi.org/10.1016/j.jcp.2018.01.024 +Lorenzo Codecasa,A new set of basis functions for the discrete geometric approach.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#CodecasaST10,https://doi.org/10.1016/j.jcp.2010.06.023 +A. Froio,Design and optimization of Artificial Neural Networks for the modelling of superconducting magnets operation in tokamak fusion reactors.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#FroioBCQSZ16,https://doi.org/10.1016/j.jcp.2016.05.028 +Lijian Jiang,Multi-element least square HDMR methods and their applications for stochastic multiscale model reduction.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#JiangL15,https://doi.org/10.1016/j.jcp.2015.03.066 +Bo Kong,A solution algorithm for fluid-particle flows across all flow regimes.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#KongF17,https://doi.org/10.1016/j.jcp.2017.05.013 +Pavel Tomin,Local-global splitting for spatiotemporal-adaptive multiscale methods.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#TominL15,https://doi.org/10.1016/j.jcp.2014.09.022 +Shiwei Lan,Emulation of higher-order tensors in manifold Monte Carlo methods for Bayesian Inverse Problems.,2016,308,J. Comput. Physics,,db/journals/jcphy/jcphy308.html#LanBCG16,https://doi.org/10.1016/j.jcp.2015.12.032 +Mathieu Bouffard,A particle-in-cell method for studying double-diffusive convection in the liquid layers of planetary interiors.,2017,346,J. Comput. Physics,,db/journals/jcphy/jcphy346.html#BouffardLCFAT17,https://doi.org/10.1016/j.jcp.2017.06.028 +Robin C. Oliver,A stochastic finite element model for the dynamics of globular macromolecules.,2013,239,J. Comput. Physics,,db/journals/jcphy/jcphy239.html#OliverRHH13,https://doi.org/10.1016/j.jcp.2012.12.027 +Javier Murillo,Conservative numerical simulation of multi-component transport in two-dimensional unsteady shallow water flow.,2009,228,J. Comput. Physics,15,db/journals/jcphy/jcphy228.html#MurilloGB09,https://doi.org/10.1016/j.jcp.2009.04.039 +Dimitri Komatitsch,High-order finite-element seismic wave propagation modeling with MPI on a large GPU cluster.,2010,229,J. Comput. Physics,20,db/journals/jcphy/jcphy229.html#KomatitschEGM10,https://doi.org/10.1016/j.jcp.2010.06.024 +Yabin Zhang,A fast direct solver for boundary value problems on locally perturbed geometries.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#ZhangG18,https://doi.org/10.1016/j.jcp.2017.12.013 +Matthias Preisig,Two-phase free-surface fluid dynamics on moving domains.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#PreisigZ10,https://doi.org/10.1016/j.jcp.2009.12.020 +Christopher R. Anderson,High order expanding domain methods for the solution of Poisson's equation in infinite domains.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#Anderson16,https://doi.org/10.1016/j.jcp.2016.02.074 +Matthew Harker,Sylvester Equations and the numerical solution of partial fractional differential equations.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#HarkerO15,https://doi.org/10.1016/j.jcp.2014.12.033 +Li-Tien Cheng,Level-set minimization of potential controlled Hadwiger valuations for molecular solvation.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#ChengLW10,https://doi.org/10.1016/j.jcp.2010.07.032 +James J. Nutaro,On the stability and performance of discrete event methods for simulating continuous systems.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#NutaroZ07,https://doi.org/10.1016/j.jcp.2007.08.015 +Marianna Pepona,A coupled Immersed Boundary-Lattice Boltzmann method for incompressible flows through moving porous media.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#PeponaF16,https://doi.org/10.1016/j.jcp.2016.06.026 +V. I. Kolobov,Unified solver for rarefied and continuum flows with adaptive mesh and algorithm refinement.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#KolobovAAFZ07,https://doi.org/10.1016/j.jcp.2006.09.021 +Sergio Pirozzoli,Generalized conservative approximations of split convective derivative operators.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#Pirozzoli10,https://doi.org/10.1016/j.jcp.2010.06.006 +Yongchang Lee,A multiscale modeling technique for bridging molecular dynamics with finite element method.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#LeeB13,https://doi.org/10.1016/j.jcp.2013.06.039 +Andrew J. Christlieb,High accuracy solutions to energy gradient flows from material science models.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#ChristliebJPWW14,https://doi.org/10.1016/j.jcp.2013.09.049 +Mario Fernández-Pendás,Adaptive multi-stage integrators for optimal energy conservation in molecular simulations.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#Fernandez-Pendas16,https://doi.org/10.1016/j.jcp.2016.09.035 +Jörg Stiller,Robust multigrid for high-order discontinuous Galerkin methods: A fast Poisson solver suitable for high-aspect ratio Cartesian grids.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#Stiller16,https://doi.org/10.1016/j.jcp.2016.09.041 +Filippo Maria Denaro,What does Finite Volume-based implicit filtering really resolve in Large-Eddy Simulations?,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#Denaro11,https://doi.org/10.1016/j.jcp.2011.02.011 +David Uminsky,A multi-moment vortex method for 2D viscous fluids.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#UminskyWB12,https://doi.org/10.1016/j.jcp.2011.11.001 +Bin Xie,A multi-moment finite volume method for incompressible Navier-Stokes equations on unstructured grids: Volume-average/point-value formulation.,2014,277,J. Comput. Physics,,db/journals/jcphy/jcphy277.html#XieIIX14,https://doi.org/10.1016/j.jcp.2014.08.011 +Christoph Erath,A conservative multi-tracer transport scheme for spectral-element spherical grids.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#ErathN14,https://doi.org/10.1016/j.jcp.2013.08.050 +Georges Akiki,Immersed boundary method with non-uniform distribution of Lagrangian markers for a non-uniform Eulerian mesh.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#AkikiB16,https://doi.org/10.1016/j.jcp.2015.11.019 +Xiao Xu,A parallelized hybrid N-S/DSMC-IP approach based on adaptive structured/unstructured overlapping grids for hypersonic transitional flows.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#XuWZZT18,https://doi.org/10.1016/j.jcp.2018.05.021 +Md. Ashfaquzzaman Khan,Parallel discrete molecular dynamics simulation with speculation and in-order commitment.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#KhanH11,https://doi.org/10.1016/j.jcp.2011.05.001 +Robert K. Smith,Revisiting the Rossby-Haurwitz wave test case with contour advection.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#SmithD06,https://doi.org/10.1016/j.jcp.2006.01.011 +Peter H. Lauritzen,On simplifying 'incremental remap'-based transport schemes.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#LauritzenEM11,https://doi.org/10.1016/j.jcp.2011.06.030 +Oscar P. Bruno,"Higher-order in time ""quasi-unconditionally stable"" ADI solvers for the compressible Navier-Stokes equations in 2D and 3D curvilinear domains.",2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#BrunoC16,https://doi.org/10.1016/j.jcp.2015.12.010 +Marco Donatelli,Spectral analysis and structure preserving preconditioners for fractional diffusion equations.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#DonatelliMC16,https://doi.org/10.1016/j.jcp.2015.11.061 +Georg Bauer,An isogeometric variational multiscale method for large-eddy simulation of coupled multi-ion transport in turbulent flow.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#BauerGGW13,https://doi.org/10.1016/j.jcp.2013.05.028 +Shi Jin,A semiclassical transport model for two-dimensional thin quantum barriers.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#JinN07,https://doi.org/10.1016/j.jcp.2007.06.006 +Eugenio Oñate,Modeling incompressible flows at low and high Reynolds numbers via a finite calculus-finite element approach.,2007,224,J. Comput. Physics,1,db/journals/jcphy/jcphy224.html#OnateVG07,https://doi.org/10.1016/j.jcp.2007.02.026 +Aaditya V. Rangan,A simple filter for detecting low-rank submatrices.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#Rangan12a,https://doi.org/10.1016/j.jcp.2011.12.032 +Tianbai Xiao,A well-balanced unified gas-kinetic scheme for multiscale flow transport under gravitational field.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#XiaoCX17,https://doi.org/10.1016/j.jcp.2016.12.022 +Paragmoni Kalita,A novel hybrid approach with multidimensional-like effects for compressible flow computations.,2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#KalitaD17,https://doi.org/10.1016/j.jcp.2017.03.033 +Thomas Carraro,Coupling vs decoupling approaches for PDE/ODE systems modeling intercellular signaling.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#CarraroFG16,https://doi.org/10.1016/j.jcp.2016.03.020 +Weizhu Bao,Efficient and accurate numerical methods for the Klein-Gordon-Schrödinger equations.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#BaoY07,https://doi.org/10.1016/j.jcp.2007.02.018 +I. Yu. Gejadze,Design of the control set in the framework of variational data assimilation.,2016,325,J. Comput. Physics,,db/journals/jcphy/jcphy325.html#GejadzeM16,https://doi.org/10.1016/j.jcp.2016.08.029 +Edo M. A. Frederix,Characteristics-based sectional modeling of aerosol nucleation and condensation.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#FrederixSKNG16,https://doi.org/10.1016/j.jcp.2016.09.005 +Andrea Sacchetti,Spectral splitting method for nonlinear Schrödinger equations with singular potential.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#Sacchetti07,https://doi.org/10.1016/j.jcp.2007.09.014 +Tzyy-Leng Horng,An error minimized pseudospectral penalty direct Poisson solver.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#HorngT12,https://doi.org/10.1016/j.jcp.2011.11.042 +Michel Bergmann,Optimal control of the cylinder wake in the laminar regime by trust-region methods and POD reduced-order models.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#BergmannC08,https://doi.org/10.1016/j.jcp.2008.04.034 +Andreas Asheim,Local solutions to high-frequency 2D scattering problems.,2010,229,J. Comput. Physics,14,db/journals/jcphy/jcphy229.html#AsheimH10,https://doi.org/10.1016/j.jcp.2010.03.034 +Mohammad H. Kurdi,Spectral element method in time for rapidly actuated systems.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#KurdiB08,https://doi.org/10.1016/j.jcp.2007.09.031 +John Harlim,Numerical strategies for filtering partially observed stiff stochastic differential equations.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#Harlim11,https://doi.org/10.1016/j.jcp.2010.10.016 +Massimo Camarda,A kinetic Monte Carlo method on super-lattices for the study of the defect formation in the growth of close packed structures.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#CamardaMV07,https://doi.org/10.1016/j.jcp.2007.08.036 +Christoph Erath,A new conservative numerical scheme for flow problems on unstructured grids and unbounded domains.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#Erath13,https://doi.org/10.1016/j.jcp.2013.03.055 +Nam Mai-Duy,A numerical study of strongly overdamped Dissipative Particle Dynamics (DPD) systems.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#Mai-DuyPK13,https://doi.org/10.1016/j.jcp.2013.03.013 +Ankush Sengupta,Error analysis and correction for Lattice Boltzmann simulated flow conductance in capillaries of different shapes and alignments.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#SenguptaHFB12,https://doi.org/10.1016/j.jcp.2011.12.004 +Weihua Geng,Parallel higher-order boundary integral electrostatics computation on molecular surfaces with curved triangulation.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#Geng13,https://doi.org/10.1016/j.jcp.2013.01.029 +Paul N. Racec,Eigensolutions of the Wigner-Eisenbud problem for a cylindrical nanowire within finite volume method.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#RacecSK13,https://doi.org/10.1016/j.jcp.2013.06.010 +Jochen Kursawe,Impact of implementation choices on quantitative predictions of cell-based computational models.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#KursaweBF17,https://doi.org/10.1016/j.jcp.2017.05.048 +Shi Jin,Bloch decomposition-based Gaussian beam method for the Schrödinger equation with periodic potentials.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#JinWYH10,https://doi.org/10.1016/j.jcp.2010.01.025 +Ning Du,A fast method for a generalized nonlocal elastic model.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#DuWW15,https://doi.org/10.1016/j.jcp.2015.05.008 +Lu Zhang,Fast numerical solution for fractional diffusion equations by exponential quadrature rule.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#ZhangSP15,https://doi.org/10.1016/j.jcp.2015.07.001 +Giovanni Stracquadanio,Semiconductor device design using the BiMADS algorithm.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#StracquadanioRN13,https://doi.org/10.1016/j.jcp.2013.01.025 +Johan Helsing,On a Helmholtz transmission problem in planar domains with corners.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#HelsingK18,https://doi.org/10.1016/j.jcp.2018.05.044 +Jeffery D. Densmore,Stability analysis and time-step limits for a Monte Carlo Compton-scattering method.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#DensmoreWL10,https://doi.org/10.1016/j.jcp.2010.01.022 +Adrianus T. de Hoop,The 3D wave equation and its Cartesian coordinate stretched perfectly matched embedding - A time-domain Green's function performance analysis.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#HoopRB07,https://doi.org/10.1016/j.jcp.2006.06.018 +Gioel Calabrese,Numerical stability for finite difference approximations of Einstein's equations.,2006,218,J. Comput. Physics,2,db/journals/jcphy/jcphy218.html#CalabreseHH06,https://doi.org/10.1016/j.jcp.2006.02.027 +Ramachandran D. Nair,A class of deformational flow test cases for linear transport problems on the sphere.,2010,229,J. Comput. Physics,23,db/journals/jcphy/jcphy229.html#NairL10,https://doi.org/10.1016/j.jcp.2010.08.014 +Bruno Lombard,Numerical modeling of the acoustic wave propagation across a homogenized rigid microstructure in the time domain.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#LombardMM17,https://doi.org/10.1016/j.jcp.2017.01.036 +Lijian Tan,A level set simulation of dendritic solidification of multi-component alloys.,2007,221,J. Comput. Physics,1,db/journals/jcphy/jcphy221.html#TanZ07b,https://doi.org/10.1016/j.jcp.2006.06.003 +Nicolas Crouseilles,Asymptotic Preserving schemes for highly oscillatory Vlasov-Poisson equations.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#CrouseillesLM13,https://doi.org/10.1016/j.jcp.2013.04.022 +Stephan Küchlin,Automatic mesh refinement and parallel load balancing for Fokker-Planck-DSMC algorithm.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#KuchlinJ18,https://doi.org/10.1016/j.jcp.2018.02.049 +Vladimir A. Titarev,Implicit high-order method for calculating rarefied gas flow in a planar microchannel.,2012,231,J. Comput. Physics,1,db/journals/jcphy/jcphy231.html#Titarev12,https://doi.org/10.1016/j.jcp.2011.08.030 +Bengt Fornberg,A numerical methodology for the Painlevé equations.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#FornbergW11,https://doi.org/10.1016/j.jcp.2011.04.007 +Eran Treister,A fast marching algorithm for the factored eikonal equation.,2016,324,J. Comput. Physics,,db/journals/jcphy/jcphy324.html#TreisterH16,https://doi.org/10.1016/j.jcp.2016.08.012 +Thomas M. M. Homolle,A low-variance deviational simulation Monte Carlo for the Boltzmann equation.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#HomolleH07,https://doi.org/10.1016/j.jcp.2007.07.006 +Bart van der Holst,Hybrid block-AMR in cartesian and curvilinear coordinates: MHD applications.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#HolstK07,https://doi.org/10.1016/j.jcp.2007.05.007 +Li Xu,High order accurate and low dissipation method for unsteady compressible viscous flow computation on helicopter rotor in forward flight.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#XuW14,https://doi.org/10.1016/j.jcp.2013.10.033 +William McLean,Time-stepping error bounds for fractional diffusion problems with non-smooth initial data.,2015,293,J. Comput. Physics,,db/journals/jcphy/jcphy293.html#McLeanM15,https://doi.org/10.1016/j.jcp.2014.08.050 +Catherine Ha Ta,An integration factor method for stochastic and stiff reaction-diffusion systems.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#TaWN15,https://doi.org/10.1016/j.jcp.2015.04.028 +Michael N. Macrossan,Searching for a near neighbor particle in DSMC cells using pseudo-subcells.,2010,229,J. Comput. Physics,17,db/journals/jcphy/jcphy229.html#Macrossan10,https://doi.org/10.1016/j.jcp.2010.04.042 +Luca Bergamaschi,Mixed Constraint Preconditioners for the iterative solution of FE coupled consolidation equations.,2008,227,J. Comput. Physics,23,db/journals/jcphy/jcphy227.html#BergamaschiFG08,https://doi.org/10.1016/j.jcp.2008.08.002 +Dongming Wei,A level set method for the semiclassical limit of the Schrödinger equation with discontinuous potentials.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#WeiJTY10,https://doi.org/10.1016/j.jcp.2010.06.026 +Manuel Kindelan,Frequency optimized RBF-FD for wave equations.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#KindelanAG18,https://doi.org/10.1016/j.jcp.2018.06.006 +Ruslan L. Davidchack,"Corrigendum to ""Discretization errors in molecular dynamics simulations with deterministic and stochastic thermostats"" [J. Comput. Physics 229 (2010) 9323-9346].",2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#Davidchack15,https://doi.org/10.1016/j.jcp.2015.07.003 +Maël Bosson,Interactive physically-based structural modeling of hydrocarbon systems.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#BossonGBR12,https://doi.org/10.1016/j.jcp.2011.12.006 +Jeffrey W. Banks,An analysis of a new stable partitioned algorithm for FSI problems. Part I: Incompressible flow and elastic solids.,2014,269,J. Comput. Physics,,db/journals/jcphy/jcphy269.html#BanksHS14a,https://doi.org/10.1016/j.jcp.2014.03.006 +Sining Yu,Matched interface and boundary (MIB) method for elliptic problems with sharp-edged interfaces.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#YuZW07,https://doi.org/10.1016/j.jcp.2006.10.030 +Jian-Jun Xu,A level-set method for two-phase flows with soluble surfactant.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#XuSL18,https://doi.org/10.1016/j.jcp.2017.10.019 +Jonathan H. Tu,An improved algorithm for balanced POD through an analytic treatment of impulse response tails.,2012,231,J. Comput. Physics,16,db/journals/jcphy/jcphy231.html#TuR12,https://doi.org/10.1016/j.jcp.2012.04.023 +Giovanni Lapenta,Exactly energy conserving semi-implicit particle in cell formulation.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#Lapenta17,https://doi.org/10.1016/j.jcp.2017.01.002 +Rémi Abgrall,Editorial.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#Abgrall16,https://doi.org/10.1016/j.jcp.2015.12.053 +Kun Wang,Error correction method for Navier-Stokes equations at high Reynolds numbers.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#WangW13,https://doi.org/10.1016/j.jcp.2013.07.042 +Robert Artebrant,Increasing the accuracy in locally divergence-preserving finite volume schemes for MHD.,2008,227,J. Comput. Physics,6,db/journals/jcphy/jcphy227.html#ArtebrantT08,https://doi.org/10.1016/j.jcp.2007.12.003 +Hiroaki Nishikawa,Accuracy-preserving source term quadrature for third-order edge-based discretization.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#NishikawaL17,https://doi.org/10.1016/j.jcp.2017.04.075 +Christopher J. Arthurs,Efficient simulation of cardiac electrical propagation using high order finite elements.,2012,231,J. Comput. Physics,10,db/journals/jcphy/jcphy231.html#ArthursBK12,https://doi.org/10.1016/j.jcp.2012.01.037 +Linlin Shi,Spectral element method for elastic and acoustic waves in frequency domain.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#ShiZWZLL16,https://doi.org/10.1016/j.jcp.2016.09.036 +Francesco Salvadore,GPU accelerated flow solver for direct numerical simulation of turbulent flows.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#SalvadoreBB13,https://doi.org/10.1016/j.jcp.2012.10.012 +Pierre Degond,Fluid simulations with localized boltzmann upscaling by direct simulation Monte-Carlo.,2012,231,J. Comput. Physics,6,db/journals/jcphy/jcphy231.html#DegondD12,https://doi.org/10.1016/j.jcp.2011.11.030 +Daniele Venturi 0002,Exact PDF equations and closure approximations for advective-reactive transport.,2013,243,J. Comput. Physics,,db/journals/jcphy/jcphy243.html#VenturiTTK13,https://doi.org/10.1016/j.jcp.2013.03.001 +Laurent White,High-order regridding-remapping schemes for continuous isopycnal and generalized coordinates in ocean models.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#WhiteAH09,https://doi.org/10.1016/j.jcp.2009.08.016 +Mohamed M. Khader,Numerical treatment for solving the perturbed fractional PDEs using hybrid techniques.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#Khader13,https://doi.org/10.1016/j.jcp.2013.05.032 +Weile Jia,Fast plane wave density functional theory molecular dynamics calculations on multi-GPU machines.,2013,251,J. Comput. Physics,,db/journals/jcphy/jcphy251.html#JiaFCWCGW13,https://doi.org/10.1016/j.jcp.2013.05.005 +Christian J. Cyron,Micromechanical simulations of biopolymer networks with finite elements.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#CyronMBW13,https://doi.org/10.1016/j.jcp.2012.10.025 +Patrick Jenny,Adaptive fully implicit multi-scale finite-volume method for multi-phase flow and transport in heterogeneous porous media.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#JennyLT06,https://doi.org/10.1016/j.jcp.2006.01.028 +Christophe Bogey,On the application of explicit spatial filtering to the variables or fluxes of linear equations.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#BogeyB07,https://doi.org/10.1016/j.jcp.2007.04.007 +Oscar P. Bruno,Rapidly convergent two-dimensional quasi-periodic Green function throughout the spectrum - including Wood anomalies.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#BrunoD14,https://doi.org/10.1016/j.jcp.2013.12.047 +José A. Morales Escalante,Galerkin methods for Boltzmann-Poisson transport with reflection conditions on rough boundaries.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#EscalanteG18,https://doi.org/10.1016/j.jcp.2018.02.041 +Jin Liu 0002,A continuum-atomistic simulation of heat transfer in micro- and nano-flows.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#LiuCNR07,https://doi.org/10.1016/j.jcp.2007.07.014 +Caroline Gatti-Bono,An anelastic allspeed projection method for gravitationally stratified flows.,2006,216,J. Comput. Physics,2,db/journals/jcphy/jcphy216.html#Gatti-BonoC06,https://doi.org/10.1016/j.jcp.2005.12.017 +Xun Huan,Simulation-based optimal Bayesian experimental design for nonlinear systems.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#HuanM13,https://doi.org/10.1016/j.jcp.2012.08.013 +Hongwei Liu,A Runge-Kutta discontinuous Galerkin method for viscous flow equations.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#LiuX07,https://doi.org/10.1016/j.jcp.2006.11.014 +Paul T. Lin,Performance of a parallel algebraic multilevel preconditioner for stabilized finite element semiconductor device modeling.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#LinSSTHH09,https://doi.org/10.1016/j.jcp.2009.05.024 +Alfredo Bermúdez,A projection hybrid finite volume/element method for low-Mach number flows.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#BermudezFSV14,https://doi.org/10.1016/j.jcp.2013.09.029 +Feng Xiao 0001,Revisit to the THINC scheme: A simple algebraic VOF algorithm.,2011,230,J. Comput. Physics,19,db/journals/jcphy/jcphy230.html#XiaoIC11,https://doi.org/10.1016/j.jcp.2011.06.012 +Satoshi Ii,High order multi-moment constrained finite volume method. Part I: Basic formulation.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#IiX09,https://doi.org/10.1016/j.jcp.2009.02.009 +Oleg Burdakov,Monotonicity recovering and accuracy preserving optimization methods for postprocessing finite element solutions.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#BurdakovKV12,https://doi.org/10.1016/j.jcp.2011.12.041 +Gianmarco Manzini,Mesh locking effects in the finite volume solution of 2-D anisotropic diffusion equations.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#ManziniP07,https://doi.org/10.1016/j.jcp.2006.05.026 +Z. Chen,An SPH model for multiphase flows with complex interfaces and large density differences.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#ChenZLZLS15,https://doi.org/10.1016/j.jcp.2014.11.037 +Yimin Zhong,An implicit boundary integral method for computing electric potential of macromolecules in solvent.,2018,359,J. Comput. Physics,,db/journals/jcphy/jcphy359.html#ZhongRT18,https://doi.org/10.1016/j.jcp.2018.01.021 +Raphaël Comminal,Cellwise conservative unsplit advection for the volume of fluid method.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#ComminalSH15,https://doi.org/10.1016/j.jcp.2014.12.003 +Sylvain Desroziers,Simulation of laser propagation in a plasma with a frequency wave equation.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#DesroziersNS08,https://doi.org/10.1016/j.jcp.2007.11.008 +Tarek I. Zohdi,Numerical simulation of the impact and deposition of charged particulate droplets.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#Zohdi13,https://doi.org/10.1016/j.jcp.2012.09.012 +C. Nita,Multigrid optimization for DNS-based optimal control in turbulent channel flows.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#NitaVM18,https://doi.org/10.1016/j.jcp.2018.03.044 +D. V. Kotov,"Corrigendum to ""Numerical dissipation control in high order shock-capturing schemes for LES of low speed flows"" [J. Comput. Phys. 307 (2016) 189-202].",2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#KotovYWSK18,https://doi.org/10.1016/j.jcp.2017.10.003 +E. T. Meier,Modeling open boundaries in dissipative MHD simulation.,2012,231,J. Comput. Physics,7,db/journals/jcphy/jcphy231.html#MeierGLS12,https://doi.org/10.1016/j.jcp.2012.01.003 +Giacomo Dimarco,Towards an ultra efficient kinetic scheme. Part I: Basics on the BGK equation.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#DimarcoL13,https://doi.org/10.1016/j.jcp.2012.10.058 +Elena V. Akhmatskaya,GSHMC: An efficient method for molecular simulation.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#AkhmatskayaR08,https://doi.org/10.1016/j.jcp.2008.01.023 +Matias Avila,A finite element dynamical nonlinear subscale approximation for the low Mach number flow equations.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#AvilaPC11,https://doi.org/10.1016/j.jcp.2011.06.032 +Franziska Nestler,Fast Ewald summation based on NFFT with mixed periodicity.,2015,285,J. Comput. Physics,,db/journals/jcphy/jcphy285.html#NestlerPP15,https://doi.org/10.1016/j.jcp.2014.12.052 +O. Furtmaier,Semi-spectral method for the Wigner equation.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#FurtmaierSM16,https://doi.org/10.1016/j.jcp.2015.11.023 +Ching Y. Loh,Multi-dimensional dissipation for cure of pathological behaviors of upwind scheme.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#LohJ09,https://doi.org/10.1016/j.jcp.2008.10.044 +Carl A. Bauer,A second-order 3D electromagnetics algorithm for curved interfaces between anisotropic dielectrics on a Yee mesh.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#BauerWC11,https://doi.org/10.1016/j.jcp.2010.12.005 +Johan Helsing,The effective conductivity of random checkerboards.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#Helsing11,https://doi.org/10.1016/j.jcp.2010.10.033 +Adrien Renaud,A Discontinuous Galerkin Material Point Method for the solution of impact problems in solid dynamics.,2018,369,J. Comput. Physics,,db/journals/jcphy/jcphy369.html#RenaudHS18,https://doi.org/10.1016/j.jcp.2018.05.001 +Rémi Abgrall,Computational science for energy research.,2017,345,J. Comput. Physics,,db/journals/jcphy/jcphy345.html#AbgrallK17,https://doi.org/10.1016/j.jcp.2017.06.010 +Svetlana Dubinkina,Statistical mechanics of Arakawa's discretizations.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#DubinkinaF07,https://doi.org/10.1016/j.jcp.2007.09.002 +Ioannis Toulopoulos,Artificial boundary conditions for the numerical solution of the Euler equations by the discontinuous galerkin method.,2011,230,J. Comput. Physics,15,db/journals/jcphy/jcphy230.html#ToulopoulosE11,https://doi.org/10.1016/j.jcp.2011.04.008 +Matteo Cusini,Algebraic dynamic multilevel (ADM) method for fully implicit simulations of multiphase flow in porous media.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#CusiniKH16,https://doi.org/10.1016/j.jcp.2016.03.007 +María L. Garzón,Numerical simulation of non-viscous liquid pinch-off using a coupled level set-boundary integral method.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#GarzonGS09,https://doi.org/10.1016/j.jcp.2009.04.048 +Arthur Guittet,Solving elliptic problems with discontinuities on irregular domains - the Voronoi Interface Method.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#GuittetLTG15,https://doi.org/10.1016/j.jcp.2015.06.026 +Ryota Imazawa,Meshless method for solving fixed boundary problem of plasma equilibrium.,2015,292,J. Comput. Physics,,db/journals/jcphy/jcphy292.html#ImazawaKI15,https://doi.org/10.1016/j.jcp.2015.03.035 +Nicholas Zabaras,A scalable framework for the solution of stochastic inverse problems using a sparse grid collocation approach.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#ZabarasG08,https://doi.org/10.1016/j.jcp.2008.01.019 +Man Long Wong,High-order localized dissipation weighted compact nonlinear scheme for shock- and interface-capturing in compressible flows.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#WongL17,https://doi.org/10.1016/j.jcp.2017.03.008 +Davide Cortinovis,Iterative Galerkin-enriched multiscale finite-volume method.,2014,277,J. Comput. Physics,,db/journals/jcphy/jcphy277.html#CortinovisJ14,https://doi.org/10.1016/j.jcp.2014.08.019 +Franco Brezzi,Mimetic scalar products of discrete differential forms.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#BrezziBM14,https://doi.org/10.1016/j.jcp.2013.08.017 +John T. Katsikadelis,Numerical solution of distributed order fractional differential equations.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#Katsikadelis14,https://doi.org/10.1016/j.jcp.2013.11.013 +Ayako Ishii,Validation of radiative transfer computation with Monte Carlo method for ultra-relativistic background flow.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#IshiiONIY17,https://doi.org/10.1016/j.jcp.2017.07.038 +Huangxin Chen,A one-domain approach for modeling and simulation of free fluid over a porous medium.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#ChenW14,https://doi.org/10.1016/j.jcp.2013.12.008 +Romain Aubry,Deflated preconditioned conjugate gradient solvers for the Pressure-Poisson equation.,2008,227,J. Comput. Physics,24,db/journals/jcphy/jcphy227.html#AubryMLC08,https://doi.org/10.1016/j.jcp.2008.08.025 +S. V. Diwakar,A Quadratic Spline based Interface (QUASI) reconstruction algorithm for accurate tracking of two-phase flows.,2009,228,J. Comput. Physics,24,db/journals/jcphy/jcphy228.html#DiwakarDS09,https://doi.org/10.1016/j.jcp.2009.09.014 +Juan-Chen Huang,A conservative discrete ordinate method for solving semiclassical Boltzmann-BGK equation with Maxwell type wall boundary condition.,2015,290,J. Comput. Physics,,db/journals/jcphy/jcphy290.html#HuangHY15,https://doi.org/10.1016/j.jcp.2015.02.037 +Mark Owkes,A mass and momentum conserving unsplit semi-Lagrangian framework for simulating multiphase flows.,2017,332,J. Comput. Physics,,db/journals/jcphy/jcphy332.html#OwkesD17,https://doi.org/10.1016/j.jcp.2016.11.046 +Anna-Karin Tornberg,A fast multipole method for the three-dimensional Stokes equations.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#TornbergG08,https://doi.org/10.1016/j.jcp.2007.06.029 +Hassan Safouhi,The Fourier transform method and the SD approach for the analytical and numerical treatment of multicenter overlap-like quantum similarity integrals.,2006,216,J. Comput. Physics,1,db/journals/jcphy/jcphy216.html#SafouhiB06,https://doi.org/10.1016/j.jcp.2005.11.020 +S.-L. Chang,Computing wave functions of nonlinear Schrödinger equations: A time-independent approach.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#ChangCJ07,https://doi.org/10.1016/j.jcp.2007.03.028 +Bin Liu,An effective bead-spring model for polymer simulation.,2008,227,J. Comput. Physics,5,db/journals/jcphy/jcphy227.html#LiuWFKG08,https://doi.org/10.1016/j.jcp.2007.11.012 +Guillermo Artana,Strong and weak constraint variational assimilations for reduced order fluid flow modeling.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#ArtanaCCM12,https://doi.org/10.1016/j.jcp.2012.01.010 +Xuan Zhao,A positivity-preserving semi-implicit discontinuous Galerkin scheme for solving extended magnetohydrodynamics equations.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#ZhaoYS14,https://doi.org/10.1016/j.jcp.2014.08.044 +François Fraysse,Quasi-a priori truncation error estimation and higher order extrapolation for non-linear partial differential equations.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#FraysseVR13,https://doi.org/10.1016/j.jcp.2013.07.018 +Jinyong Ying,A new finite element and finite difference hybrid method for computing electrostatics of ionic solvated biomolecule.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#YingX15,https://doi.org/10.1016/j.jcp.2015.06.016 +Assyr Abdulle,A reduced basis localized orthogonal decomposition.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#AbdulleH15,https://doi.org/10.1016/j.jcp.2015.04.016 +Jeremy O. McCaslin,A fast marching approach to multidimensional extrapolation.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#McCaslinCD14,https://doi.org/10.1016/j.jcp.2014.06.023 +Sébastien Blaise,Discontinuous Galerkin unsteady discrete adjoint method for real-time efficient Tsunami simulations.,2013,232,J. Comput. Physics,1,db/journals/jcphy/jcphy232.html#BlaiseSML13,https://doi.org/10.1016/j.jcp.2012.08.022 +Kenji Miki,"Corrigendum to ""Probabilistic models and uncertainty quantification for the ionization reaction rate of atomic Nitrogen"" [JCOMP 231(9) (2012) 3871-3886].",2012,231,J. Comput. Physics,15,db/journals/jcphy/jcphy231.html#MikiPPP12a,https://doi.org/10.1016/j.jcp.2012.04.030 +Vrushali A. Bokil,Energy stable discontinuous Galerkin methods for Maxwell's equations in nonlinear optical media.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#BokilCJL17,https://doi.org/10.1016/j.jcp.2017.08.009 +Lei Wu 0003,A fast iterative scheme for the linearized Boltzmann equation.,2017,338,J. Comput. Physics,,db/journals/jcphy/jcphy338.html#WuZLZR17,https://doi.org/10.1016/j.jcp.2017.03.002 +Guilherme Cunha,On the effective accuracy of spectral-like optimized finite-difference schemes for computational aeroacoustics.,2014,263,J. Comput. Physics,,db/journals/jcphy/jcphy263.html#CunhaR14,https://doi.org/10.1016/j.jcp.2014.01.024 +Qiqi Wang,Forward and adjoint sensitivity computation of chaotic dynamical systems.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#Wang13,https://doi.org/10.1016/j.jcp.2012.09.007 +Kirill Serkh,On the solution of elliptic partial differential equations on regions with corners.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#SerkhR16,https://doi.org/10.1016/j.jcp.2015.10.024 +Lode Pollet,Engineering local optimality in quantum Monte Carlo algorithms.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#PolletHR07,https://doi.org/10.1016/j.jcp.2007.03.013 +Pierre Degond,Asymptotic-Preserving Particle-In-Cell methods for the Vlasov-Maxwell system in the quasi-neutral limit.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#DegondDD17,https://doi.org/10.1016/j.jcp.2016.11.018 +Ping Fan,An efficient front-tracking method for fully nonlinear interfacial waves.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#Fan08,https://doi.org/10.1016/j.jcp.2008.04.021 +John D. Towers,A convergence rate theorem for finite difference approximations to delta functions.,2008,227,J. Comput. Physics,13,db/journals/jcphy/jcphy227.html#Towers08,https://doi.org/10.1016/j.jcp.2008.03.019 +Jukka A. Heikkinen,Full f gyrokinetic method for particle simulation of tokamak transport.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#HeikkinenJKO08,https://doi.org/10.1016/j.jcp.2008.02.013 +Riccardo Rossi,Direct numerical simulation of scalar transport using unstructured finite-volume schemes.,2009,228,J. Comput. Physics,5,db/journals/jcphy/jcphy228.html#Rossi09,https://doi.org/10.1016/j.jcp.2008.11.001 +Hadi Hajibeygi,A hierarchical fracture model for the iterative multiscale finite volume method.,2011,230,J. Comput. Physics,24,db/journals/jcphy/jcphy230.html#HajibeygiKJ11,https://doi.org/10.1016/j.jcp.2011.08.021 +Lennart Schneiders,An accurate moving boundary formulation in cut-cell methods.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#SchneidersHMS13,https://doi.org/10.1016/j.jcp.2012.09.038 +Jianqiang Wang,Modified Particle Method with integral Navier-Stokes formulation for incompressible flows.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#WangZ18,https://doi.org/10.1016/j.jcp.2018.03.043 +Chet Nieter,Application of Dey-Mittra conformal boundary algorithm to 3D electromagnetic modeling.,2009,228,J. Comput. Physics,21,db/journals/jcphy/jcphy228.html#NieterCWSS09,https://doi.org/10.1016/j.jcp.2009.07.025 +Lorenzo Botti,h-multigrid agglomeration based solution strategies for discontinuous Galerkin discretizations of incompressible flow problems.,2017,347,J. Comput. Physics,,db/journals/jcphy/jcphy347.html#BottiCB17,https://doi.org/10.1016/j.jcp.2017.07.002 +Ching-Long Lin,Preface.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#LinPK13,https://doi.org/10.1016/j.jcp.2013.02.004 +Xiyang I. A. Yang,Acceleration of the Jacobi iterative method by factors exceeding 100 using scheduled relaxation.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#YangM14,https://doi.org/10.1016/j.jcp.2014.06.010 +C. Gorria,Discrete conservation laws and the convergence of long time simulations of the mkdv equation.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#GorriaAV13,https://doi.org/10.1016/j.jcp.2012.10.044 +Lin Lin 0001,Optimized local basis set for Kohn-Sham density functional theory.,2012,231,J. Comput. Physics,13,db/journals/jcphy/jcphy231.html#LinLYE12a,https://doi.org/10.1016/j.jcp.2012.03.009 +Jun Zhu,Runge-Kutta discontinuous Galerkin method using WENO limiters II: Unstructured meshes.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#ZhuQSD08,https://doi.org/10.1016/j.jcp.2007.12.024 +Ryan G. McClarren,Robust and accurate filtered spherical harmonics expansions for radiative transfer.,2010,229,J. Comput. Physics,16,db/journals/jcphy/jcphy229.html#McClarrenH10,https://doi.org/10.1016/j.jcp.2010.03.043 +Giovanni Lapenta,Cost-effectiveness of fully implicit moving mesh adaptation: A practical investigation in 1D.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#LapentaC06,https://doi.org/10.1016/j.jcp.2006.03.011 +Daniele A. Di Pietro,Discontinuous Skeletal Gradient Discretisation methods on polytopal meshes.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#PietroDM18,https://doi.org/10.1016/j.jcp.2017.11.018 +Qing Pan,Isogeometric analysis based on extended Loop's subdivision.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#PanXXZ15,https://doi.org/10.1016/j.jcp.2015.06.044 +Luise Blank,Preconditioning for Allen-Cahn variational inequalities with non-local constraints.,2012,231,J. Comput. Physics,16,db/journals/jcphy/jcphy231.html#BlankSS12,https://doi.org/10.1016/j.jcp.2012.04.035 +Ben Thornber,On entropy generation and dissipation of kinetic energy in high-resolution shock-capturing schemes.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#ThornberDWY08,https://doi.org/10.1016/j.jcp.2008.01.035 +Shuai Wang,A pyramid scheme for three-dimensional diffusion equations on polyhedral meshes.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#WangHY17,https://doi.org/10.1016/j.jcp.2017.08.060 +Takashi Minoshima,Multi-moment advection scheme in three dimension for Vlasov simulations of magnetized plasma.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#MinoshimaMA13,https://doi.org/10.1016/j.jcp.2012.11.024 +Emil Coyajee,Numerical simulation of drop impact on a liquid-liquid interface with a multiple marker front-capturing method.,2009,228,J. Comput. Physics,12,db/journals/jcphy/jcphy228.html#CoyajeeB09,https://doi.org/10.1016/j.jcp.2009.03.014 +Phillip G. Schmitz,A fast direct solver for elliptic problems on general meshes in 2D.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#SchmitzY12,https://doi.org/10.1016/j.jcp.2011.10.013 +Xiangyu Hu 0002,An incompressible multi-phase SPH method.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#HuA07,https://doi.org/10.1016/j.jcp.2007.07.013 +Nolwenn Balin,Boundary element and finite element coupling for aeroacoustics simulations.,2015,294,J. Comput. Physics,,db/journals/jcphy/jcphy294.html#BalinCDDDT15,https://doi.org/10.1016/j.jcp.2015.03.044 +Antoine Lejay,Simulating diffusion processes in discontinuous media: A numerical scheme with constant time steps.,2012,231,J. Comput. Physics,21,db/journals/jcphy/jcphy231.html#LejayP12,https://doi.org/10.1016/j.jcp.2012.07.011 +L. H. Han,Adaptive multi-resolution method for compressible multi-phase flows with sharp interface model and pyramid data structure.,2014,262,J. Comput. Physics,,db/journals/jcphy/jcphy262.html#HanHA14,https://doi.org/10.1016/j.jcp.2013.12.061 +David J. Biagioni,Randomized interpolative decomposition of separated representations.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#BiagioniBB15,https://doi.org/10.1016/j.jcp.2014.10.009 +Jeffrey A. F. Hittinger,Block-structured adaptive mesh refinement algorithms for Vlasov simulation.,2013,241,J. Comput. Physics,,db/journals/jcphy/jcphy241.html#HittingerB13,https://doi.org/10.1016/j.jcp.2013.01.030 +Andrea Villa,An asymptotic preserving scheme for the streamer simulation.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#VillaBGM13,https://doi.org/10.1016/j.jcp.2013.02.016 +Pavel Váchal,On preservation of symmetry in r-z staggered Lagrangian schemes.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#VachalW16,https://doi.org/10.1016/j.jcp.2015.11.063 +C. Ma,Numerical modeling of thermocapillary two-phase flows with evaporation using a two-scalar approach for heat transfer.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#MaB13,https://doi.org/10.1016/j.jcp.2012.09.011 +Kunlun Liu,Inflow conditions for the large eddy simulation of turbulent boundary layers: A dynamic recycling procedure.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#LiuP06,https://doi.org/10.1016/j.jcp.2006.04.004 +Jürgen De Zaeytijd,An efficient hybrid MLFMA-FFT solver for the volume integral equation in case of sparse 3D inhomogeneous dielectric scatterers.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#ZaeytijdBF08,https://doi.org/10.1016/j.jcp.2008.04.009 +Adrian Sandu,Discrete second order adjoints in atmospheric chemical transport modeling.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#SanduZ08,https://doi.org/10.1016/j.jcp.2008.02.011 +Shu-Jie Li,An exponential time-integrator scheme for steady and unsteady inviscid flows.,2018,365,J. Comput. Physics,,db/journals/jcphy/jcphy365.html#LiLWJ18,https://doi.org/10.1016/j.jcp.2018.03.020 +Brian C. Vermeire,On the utility of GPU accelerated high-order methods for unsteady flow simulations: A comparison with industry-standard tools.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#VermeireWV17,https://doi.org/10.1016/j.jcp.2016.12.049 +Sébastian Minjeaud,An adaptive pressure correction method without spurious velocities for diffuse-interface models of incompressible flows.,2013,236,J. Comput. Physics,,db/journals/jcphy/jcphy236.html#Minjeaud13,https://doi.org/10.1016/j.jcp.2012.11.022 +Hiroshi Terashima,Approach for simulating gas-liquid-like flows under supercritical pressures using a high-order central differencing scheme.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#TerashimaK12,https://doi.org/10.1016/j.jcp.2012.06.021 +Gregory R. Carmichael,Predicting air quality: Improvements through advanced methods to integrate models and measurements.,2008,227,J. Comput. Physics,7,db/journals/jcphy/jcphy227.html#CarmichaelSCDCT08,https://doi.org/10.1016/j.jcp.2007.02.024 +Yohei Sato,A new contact line treatment for a conservative level set method.,2012,231,J. Comput. Physics,10,db/journals/jcphy/jcphy231.html#SatoN12,https://doi.org/10.1016/j.jcp.2012.01.034 +Stephan Schwarz,An immersed boundary method for the simulation of bubbles with varying shape.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#SchwarzKF16,https://doi.org/10.1016/j.jcp.2016.01.033 +Bernardo Cockburn,An adaptive spectral/DG method for a reduced phase-space based level set approach to geometrical optics on curved elements.,2014,259,J. Comput. Physics,,db/journals/jcphy/jcphy259.html#CockburnKR14,https://doi.org/10.1016/j.jcp.2013.12.018 +Alexander Sommer,Certified dual-corrected radiation patterns of phased antenna arrays by offline-online order reduction of finite-element models.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#SommerFD15,https://doi.org/10.1016/j.jcp.2015.06.024 +Paul K. Romano,Data decomposition of Monte Carlo particle transport simulations via tally servers.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#RomanoSFS13,https://doi.org/10.1016/j.jcp.2013.06.011 +A. L. Rosen,Hybrid Adaptive Ray-Moment Method (HARM2): A highly parallel method for radiation hydrodynamics on adaptive grids.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#RosenKOLK17,https://doi.org/10.1016/j.jcp.2016.10.048 +Frans H. Ebersohn,Kinetic simulation technique for plasma flow in strong external magnetic field.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#EbersohnSGS17,https://doi.org/10.1016/j.jcp.2017.09.021 +Federico Fuentes,Coupled variational formulations of linear elasticity and the DPG methodology.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#FuentesKDT17,https://doi.org/10.1016/j.jcp.2017.07.051 +Laslo T. Diosady,Tensor-product preconditioners for higher-order space-time discontinuous Galerkin methods.,2017,330,J. Comput. Physics,,db/journals/jcphy/jcphy330.html#DiosadyM17,https://doi.org/10.1016/j.jcp.2016.11.022 +Olivier Le Métayer,A discrete model for compressible flows in heterogeneous media.,2011,230,J. Comput. Physics,7,db/journals/jcphy/jcphy230.html#MetayerMFH11,https://doi.org/10.1016/j.jcp.2010.12.020 +Hailiang Liu,A free energy satisfying finite difference method for Poisson-Nernst-Planck equations.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#LiuW14,https://doi.org/10.1016/j.jcp.2014.02.036 +Gaëtan Compère,Transient adaptivity applied to two-phase incompressible flows.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#CompereMR08,https://doi.org/10.1016/j.jcp.2007.10.002 +Maxim A. Olshanskii,Velocity-vorticity-helicity formulation and a solver for the Navier-Stokes equations.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#OlshanskiiR10,https://doi.org/10.1016/j.jcp.2010.02.012 +Lajos Szalmás,A fast iterative model for discrete velocity calculations on triangular grids.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#SzalmasV10,https://doi.org/10.1016/j.jcp.2010.02.015 +Andrew J. Majda,New perspectives on superparameterization for geophysical turbulence.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#MajdaG14,https://doi.org/10.1016/j.jcp.2013.09.014 +Peng Zhang 0006,A multiple time stepping algorithm for efficient multiscale modeling of platelets flowing in blood plasma.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#ZhangZDB15,https://doi.org/10.1016/j.jcp.2015.01.004 +Ben-Wen Li,Schur-decomposition for 3D matrix equations and its application in solving radiative discrete ordinates equations discretized by Chebyshev collocation spectral method.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#LiTSH10,https://doi.org/10.1016/j.jcp.2009.10.025 +Cyril Misev,Steepest descent optimisation of Runge-Kutta coefficients for second order implicit finite volume CFD codes.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#MisevH18,https://doi.org/10.1016/j.jcp.2017.09.008 +Marzio Piller,Compact finite volume schemes on boundary-fitted grids.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#PillerS08,https://doi.org/10.1016/j.jcp.2008.01.022 +Peter N. Blossey,Selective monotonicity preservation in scalar advection.,2008,227,J. Comput. Physics,10,db/journals/jcphy/jcphy227.html#BlosseyD08,https://doi.org/10.1016/j.jcp.2008.01.043 +Lise-Marie Imbert-Gérard,Well-posedness and generalized plane waves simulations of a 2D mode conversion model.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#Imbert-Gerard15,https://doi.org/10.1016/j.jcp.2015.09.033 +Francisco Guillén-González,Unconditionally energy stable numerical schemes for phase-field vesicle membrane model.,2018,354,J. Comput. Physics,,db/journals/jcphy/jcphy354.html#Guillen-Gonzalez18,https://doi.org/10.1016/j.jcp.2017.10.060 +Guy Baruch,A high-order numerical method for the nonlinear Helmholtz equation in multidimensional layered media.,2009,228,J. Comput. Physics,10,db/journals/jcphy/jcphy228.html#BaruchFT09,https://doi.org/10.1016/j.jcp.2009.02.014 +Davod Alizadehrad,Static and dynamic properties of smoothed dissipative particle dynamics.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#AlizadehradF18,https://doi.org/10.1016/j.jcp.2017.12.009 +Santiago Badia,Coupling Biot and Navier-Stokes equations for modelling fluid-poroelastic media interaction.,2009,228,J. Comput. Physics,21,db/journals/jcphy/jcphy228.html#BadiaQQ09,https://doi.org/10.1016/j.jcp.2009.07.019 +A. R. Long,The iterative thermal emission method: A more implicit modification of IMC.,2014,277,J. Comput. Physics,,db/journals/jcphy/jcphy277.html#LongGP14,https://doi.org/10.1016/j.jcp.2014.08.017 +Mikhail A. Tolstykh,Vorticity-divergence mass-conserving semi-Lagrangian shallow-water model using the reduced grid on the sphere.,2012,231,J. Comput. Physics,11,db/journals/jcphy/jcphy231.html#TolstykhS12,https://doi.org/10.1016/j.jcp.2012.02.016 +Xue-Hong Wu,A stabilized MLPG method for steady state incompressible fluid flow simulation.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#WuTSZ10,https://doi.org/10.1016/j.jcp.2010.08.001 +Gabriele Manoli,An iterative particle filter approach for coupled hydro-geophysical inversion of a controlled infiltration experiment.,2015,283,J. Comput. Physics,,db/journals/jcphy/jcphy283.html#ManoliRPDFCP15,https://doi.org/10.1016/j.jcp.2014.11.035 +Guanghui Hu,Simulating finger phenomena in porous media with a moving finite element method.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#HuZ11,https://doi.org/10.1016/j.jcp.2011.01.031 +Jim E. Morel,Linear multifrequency-grey acceleration recast for preconditioned Krylov iterations.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#MorelYW07,https://doi.org/10.1016/j.jcp.2007.07.033 +Ville Honkkila,HLLC solver for ideal relativistic MHD.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#HonkkilaJ07,https://doi.org/10.1016/j.jcp.2006.09.027 +Bogdan Rosa,An accurate and efficient method for treating aerodynamic interactions of cloud droplets.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#RosaWMG11,https://doi.org/10.1016/j.jcp.2011.07.012 +E. Farhi,Virtual experiments: Combining realistic neutron scattering instrument and sample simulations.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#FarhiHJK09,https://doi.org/10.1016/j.jcp.2009.04.006 +Shi Jin,Computational high frequency waves through curved interfaces via the Liouville equation and geometric theory of diffraction.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#JinY08,https://doi.org/10.1016/j.jcp.2008.02.029 +Peter E. Vincent,Insights from von Neumann analysis of high-order flux reconstruction schemes.,2011,230,J. Comput. Physics,22,db/journals/jcphy/jcphy230.html#VincentCJ11,https://doi.org/10.1016/j.jcp.2011.07.013 +Xin Liu,Well-balanced central-upwind scheme for a fully coupled shallow water system modeling flows over erodible bed.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#LiuMKS15,https://doi.org/10.1016/j.jcp.2015.07.043 +E. Sousa,A blended continuous-discontinuous finite element method for solving the multi-fluid plasma model.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#SousaS16,https://doi.org/10.1016/j.jcp.2016.08.044 +Yu Chen,On the inverse scattering problem in the acoustic environment.,2009,228,J. Comput. Physics,9,db/journals/jcphy/jcphy228.html#ChenDR09,https://doi.org/10.1016/j.jcp.2008.12.034 +Xuan Zhou,A novel three-dimensional mesh deformation method based on sphere relaxation.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#ZhouL15,https://doi.org/10.1016/j.jcp.2015.05.046 +Dingyi Pan,Numerical investigations on the compressibility of a DPD fluid.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#PanPMK13,https://doi.org/10.1016/j.jcp.2013.02.013 +Yi Li,Accurate computation of Stokes flow driven by an open immersed interface.,2012,231,J. Comput. Physics,15,db/journals/jcphy/jcphy231.html#LiL12,https://doi.org/10.1016/j.jcp.2012.04.020 +R. M. J. Kramer,Nondissipative and energy-stable high-order finite-difference interface schemes for 2-D patch-refined grids.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#KramerPP09,https://doi.org/10.1016/j.jcp.2009.04.010 +Dominik L. Michels,A semi-analytical approach to molecular dynamics.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#MichelsD15,https://doi.org/10.1016/j.jcp.2015.10.009 +Guanghui Hu,An adaptive finite volume solver for steady Euler equations with non-oscillatory k-exact reconstruction.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#HuY16,https://doi.org/10.1016/j.jcp.2016.02.019 +Xiaomin Pan,A decoupled monolithic projection method for natural convection problems.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#PanKLC16,https://doi.org/10.1016/j.jcp.2016.03.019 +Mohammad Robiul Hossan,Hybrid immersed interface-immersed boundary methods for AC dielectrophoresis.,2014,270,J. Comput. Physics,,db/journals/jcphy/jcphy270.html#HossanDD14,https://doi.org/10.1016/j.jcp.2014.04.012 +D. Dragna,Analysis of the dissipation and dispersion properties of the multi-domain Chebyshev pseudospectral method.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#DragnaBHB13,https://doi.org/10.1016/j.jcp.2013.07.036 +Predrag Lazic,The Robin Hood method - A novel numerical method for electrostatic problems based on a non-local charge transfer.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#LazicSA06,https://doi.org/10.1016/j.jcp.2005.08.006 +Diogo M. C. Martins,Continuity constrained least-squares interpolation for SFO suppression in immersed boundary methods.,2017,336,J. Comput. Physics,,db/journals/jcphy/jcphy336.html#MartinsAP17,https://doi.org/10.1016/j.jcp.2017.02.026 +Janusz Andrzejewski,On optimizing Jacobi-Davidson method for calculating eigenvalues in low dimensional structures using eight band k and* p model.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#Andrzejewski13,https://doi.org/10.1016/j.jcp.2013.04.003 +Qinwu Xu,Stable multi-domain spectral penalty methods for fractional partial differential equations.,2014,257,J. Comput. Physics,,db/journals/jcphy/jcphy257.html#XuH14,https://doi.org/10.1016/j.jcp.2013.09.041 +Martin Berggren,Acoustic boundary layers as boundary conditions.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#BerggrenBN18,https://doi.org/10.1016/j.jcp.2018.06.005 +Anne-Sophie Bonnet-Ben Dhia,On the use of Perfectly Matched Layers at corners for scattering problems with sign-changing coefficients.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#DhiaCCC16,https://doi.org/10.1016/j.jcp.2016.06.037 +Niranjan S. Ghaisas,A unified high-order Eulerian method for continuum simulations of fluid flow and of elastic-plastic deformations in solids.,2018,371,J. Comput. Physics,,db/journals/jcphy/jcphy371.html#GhaisasSL18,https://doi.org/10.1016/j.jcp.2018.05.035 +Gianluca Lavalle,A numerical reduced model for thin liquid films sheared by a gas flow.,2015,301,J. Comput. Physics,,db/journals/jcphy/jcphy301.html#LavalleVBLC15,https://doi.org/10.1016/j.jcp.2015.08.018 +Hinrich Lütjens,The XTOR code for nonlinear 3D simulations of MHD instabilities in tokamak plasmas.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#LutjensL08,https://doi.org/10.1016/j.jcp.2008.04.003 +Albert Y. Tong,A numerical method for capillarity-dominant free surface flows.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#TongW07,https://doi.org/10.1016/j.jcp.2006.06.034 +Håvard Berland,Conservation of phase space properties using exponential integrators on the cubic Schrödinger equation.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#BerlandIS07,https://doi.org/10.1016/j.jcp.2006.11.030 +Nathaniel Trask,Compact moving least squares: An optimization framework for generating high-order compact meshless discretizations.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#TraskMH16,https://doi.org/10.1016/j.jcp.2016.08.045 +G. Capdeville,A central WENO scheme for solving hyperbolic conservation laws on non-uniform meshes.,2008,227,J. Comput. Physics,5,db/journals/jcphy/jcphy227.html#Capdeville08a,https://doi.org/10.1016/j.jcp.2007.11.029 +Murthy N. Guddati,Exponential convergence through linear finite element discretization of stratified subdomains.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#GuddatiDA16,https://doi.org/10.1016/j.jcp.2016.06.045 +Juntao Huang,Bound-preserving modified exponential Runge-Kutta discontinuous Galerkin methods for scalar hyperbolic equations with stiff source terms.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#HuangS18,https://doi.org/10.1016/j.jcp.2018.01.051 +Xiangyu Hu 0002,On the HLLC Riemann solver for interface interaction in compressible multi-fluid flow.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#HuAI09,https://doi.org/10.1016/j.jcp.2009.06.002 +Stéphanie Chaillat,Fast iterative boundary element methods for high-frequency scattering problems in 3D elastodynamics.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#ChaillatDL17,https://doi.org/10.1016/j.jcp.2017.04.020 +Howard C. Elman,A taxonomy and comparison of parallel block multi-level preconditioners for the incompressible Navier-Stokes equations.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#ElmanHSST08,https://doi.org/10.1016/j.jcp.2007.09.026 +Thomas A. Gardiner,An unsplit Godunov method for ideal MHD via constrained transport in three dimensions.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#GardinerS08,https://doi.org/10.1016/j.jcp.2007.12.017 +Bojana V. Rosic,Sampling-free linear Bayesian update of polynomial chaos representations.,2012,231,J. Comput. Physics,17,db/journals/jcphy/jcphy231.html#RosicLPM12,https://doi.org/10.1016/j.jcp.2012.04.044 +A. P. Markesteijn,Time asynchronous relative dimension in space method for multi-scale problems in fluid dynamics.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#MarkesteijnK14,https://doi.org/10.1016/j.jcp.2013.10.035 +Lucas O. Müller,Consistent treatment of viscoelastic effects at junctions in one-dimensional blood flow models.,2016,314,J. Comput. Physics,,db/journals/jcphy/jcphy314.html#MullerLB16,https://doi.org/10.1016/j.jcp.2016.03.012 +Yann Moguen,Godunov-type schemes with an inertia term for unsteady full Mach number range flow calculations.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#MoguenDPBD15,https://doi.org/10.1016/j.jcp.2014.10.041 +Philipp Rauschenberger,Direct numerical simulation of rigid bodies in multiphase flow within an Eulerian framework.,2015,291,J. Comput. Physics,,db/journals/jcphy/jcphy291.html#RauschenbergerW15a,https://doi.org/10.1016/j.jcp.2015.03.023 +Kentaro Yaji,Topology optimization in thermal-fluid flow using the lattice Boltzmann method.,2016,307,J. Comput. Physics,,db/journals/jcphy/jcphy307.html#YajiYYMIN16,https://doi.org/10.1016/j.jcp.2015.12.008 +Yuri A. Omelchenko,HYPERS: A unidimensional asynchronous framework for multiscale hybrid simulations.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#OmelchenkoK12,https://doi.org/10.1016/j.jcp.2011.11.004 +Manuel Torrilhon,Boundary conditions for regularized 13-moment-equations for micro-channel-flows.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#TorrilhonS08,https://doi.org/10.1016/j.jcp.2007.10.006 +Mostafa Faghih Shojaei,Compatible-strain mixed finite element methods for incompressible nonlinear elasticity.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#ShojaeiY18,https://doi.org/10.1016/j.jcp.2018.01.053 +K. S. C. Peerenboom,On the ambipolar constraint in multi-component diffusion problems.,2011,230,J. Comput. Physics,10,db/journals/jcphy/jcphy230.html#PeerenboomDGM11,https://doi.org/10.1016/j.jcp.2011.02.029 +Tsorng-Whay Pan,A DLM/FD/IB method for simulating compound vesicle motion under creeping flow condition.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#PanZNG15,https://doi.org/10.1016/j.jcp.2015.07.057 +Salvatore Marrone,An accurate SPH modeling of viscous flows around bodies at low and moderate Reynolds numbers.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#MarroneCACG13,https://doi.org/10.1016/j.jcp.2013.03.011 +Gowri Srinivasan,Random walk particle tracking simulations of non-Fickian transport in heterogeneous media.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#SrinivasanTDVBR10,https://doi.org/10.1016/j.jcp.2010.02.014 +Mark R. Dowling,Monte Carlo techniques for real-time quantum dynamics.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#DowlingDDC07,https://doi.org/10.1016/j.jcp.2006.05.017 +Christopher A. Kennedy,Reduced aliasing formulations of the convective terms within the Navier-Stokes equations for a compressible fluid.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#KennedyG08,https://doi.org/10.1016/j.jcp.2007.09.020 +Chan-Sun Shin,Numerical methods to improve the computing efficiency of discrete dislocation dynamics simulations.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#ShinFVK06,https://doi.org/10.1016/j.jcp.2005.10.025 +B. Shanker,Accelerated Cartesian expansions - A fast method for computing of potentials of the form R-ν for all real ν.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#ShankerH07,https://doi.org/10.1016/j.jcp.2007.04.033 +Christian Prax,Control of the vorticity mode in the linearized Euler equations for hybrid aeroacoustic prediction.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#PraxGN08,https://doi.org/10.1016/j.jcp.2008.02.022 +Wellington C. de Jesus,A 3D front-tracking approach for simulation of a two-phase fluid with insoluble surfactant.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#JesusRPVS15,https://doi.org/10.1016/j.jcp.2014.10.021 +Jaap J. W. van der Vegt,hp-Multigrid as Smoother algorithm for higher order discontinuous Galerkin discretizations of advection dominated flows: Part I. Multilevel analysis.,2012,231,J. Comput. Physics,22,db/journals/jcphy/jcphy231.html#VegtR12,https://doi.org/10.1016/j.jcp.2012.05.038 +A. K. Das,Modeling of liquid-vapor phase change using smoothed particle hydrodynamics.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#DasD15,https://doi.org/10.1016/j.jcp.2015.09.026 +William D. Henshaw,Moving overlapping grids with adaptive mesh refinement for high-speed reactive and non-reactive flow.,2006,216,J. Comput. Physics,2,db/journals/jcphy/jcphy216.html#HenshawS06,https://doi.org/10.1016/j.jcp.2006.01.005 +Alexander Hay,Reduced-order models for parameter dependent geometries based on shape sensitivity analysis.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#HayBAP10,https://doi.org/10.1016/j.jcp.2009.10.033 +Philippe Angot,An optimal penalty method for a hyperbolic system modeling the edge plasma transport in a tokamak.,2014,261,J. Comput. Physics,,db/journals/jcphy/jcphy261.html#AngotAG14,https://doi.org/10.1016/j.jcp.2013.12.037 +M. Ganesh,A reduced basis method for electromagnetic scattering by multiple particles in three dimensions.,2012,231,J. Comput. Physics,23,db/journals/jcphy/jcphy231.html#GaneshHS12,https://doi.org/10.1016/j.jcp.2012.07.008 +Xianglong Kong,Particle-in-cell simulations with charge-conserving current deposition on graphic processing units.,2011,230,J. Comput. Physics,4,db/journals/jcphy/jcphy230.html#KongHRD11,https://doi.org/10.1016/j.jcp.2010.11.032 +Lucia Rueda Villegas,A Ghost Fluid/Level Set Method for boiling flows and liquid evaporation: Application to the Leidenfrost effect.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#VillegasALT16,https://doi.org/10.1016/j.jcp.2016.04.031 +Armando Coco,Second order finite-difference ghost-point multigrid methods for elliptic problems with discontinuous coefficients on an arbitrary interface.,2018,361,J. Comput. Physics,,db/journals/jcphy/jcphy361.html#CocoR18,https://doi.org/10.1016/j.jcp.2018.01.016 +Wei Shi,Explicit multi-symplectic extended leap-frog methods for Hamiltonian wave equations.,2012,231,J. Comput. Physics,22,db/journals/jcphy/jcphy231.html#ShiWX12,https://doi.org/10.1016/j.jcp.2012.07.004 +Benjamin Kadoch,A volume penalization method for incompressible flows and scalar advection-diffusion with moving obstacles.,2012,231,J. Comput. Physics,12,db/journals/jcphy/jcphy231.html#KadochKAS12,https://doi.org/10.1016/j.jcp.2012.01.036 +Francesco Miniati,A modified higher order Godunov's scheme for stiff source conservative hydrodynamics.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#MiniatiC07a,https://doi.org/10.1016/j.jcp.2006.10.008 +Chohong Min,Geometric integration over irregular domains with application to level-set methods.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#MinG07,https://doi.org/10.1016/j.jcp.2007.05.032 +Zhiming Chen,The adaptive immersed interface finite element method for elliptic and Maxwell interface problems.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#ChenXZ09,https://doi.org/10.1016/j.jcp.2009.03.044 +Hua Shen,A characteristic space-time conservation element and solution element method for conservation laws.,2015,288,J. Comput. Physics,,db/journals/jcphy/jcphy288.html#ShenWZ15,https://doi.org/10.1016/j.jcp.2015.02.018 +Zhifang Du,A Hermite WENO reconstruction for fourth order temporal accurate schemes based on the GRP solver for hyperbolic conservation laws.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#DuL18,https://doi.org/10.1016/j.jcp.2017.11.023 +Thomas Toulorge,Optimizing the geometrical accuracy of curvilinear meshes.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#ToulorgeLR16,https://doi.org/10.1016/j.jcp.2016.01.023 +O. Lehtikangas,Finite element approximation of the radiative transport equation in a medium with piece-wise constant refractive index.,2015,282,J. Comput. Physics,,db/journals/jcphy/jcphy282.html#LehtikangasTKA15,https://doi.org/10.1016/j.jcp.2014.11.025 +Raimund Bürger,On the implementation of WENO schemes for a class of polydisperse sedimentation models.,2011,230,J. Comput. Physics,6,db/journals/jcphy/jcphy230.html#BurgerDMV11,https://doi.org/10.1016/j.jcp.2010.12.019 +Liang Pan,A gas kinetic scheme for the Baer-Nunziato two-phase flow model.,2012,231,J. Comput. Physics,22,db/journals/jcphy/jcphy231.html#PanZTW12,https://doi.org/10.1016/j.jcp.2012.04.049 +Yohei Sato,A sharp-interface phase change model for a mass-conservative interface tracking method.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#SatoN13,https://doi.org/10.1016/j.jcp.2013.04.035 +Tarek A. El-Moselhy,Bayesian inference with optimal maps.,2012,231,J. Comput. Physics,23,db/journals/jcphy/jcphy231.html#MoselhyM12,https://doi.org/10.1016/j.jcp.2012.07.022 +Cristian R. Nastase,High-order discontinuous Galerkin methods using an hp-multigrid approach.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#NastaseM06,https://doi.org/10.1016/j.jcp.2005.08.022 +M. Meldi,An arbitrary Lagrangian-Eulerian approach for the simulation of immersed moving solids with Lattice Boltzmann Method.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#MeldiVS13,https://doi.org/10.1016/j.jcp.2012.10.014 +M. V. Rakhuba,Grid-based electronic structure calculations: The tensor decomposition approach.,2016,312,J. Comput. Physics,,db/journals/jcphy/jcphy312.html#RakhubaO16,https://doi.org/10.1016/j.jcp.2016.02.023 +Bernard Deconinck,Computing spectra of linear operators using the Floquet-Fourier-Hill method.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#DeconinckK06,https://doi.org/10.1016/j.jcp.2006.03.020 +Serafim Kalliadasis,A new framework for extracting coarse-grained models from time series with multiscale structure.,2015,296,J. Comput. Physics,,db/journals/jcphy/jcphy296.html#KalliadasisKP15,https://doi.org/10.1016/j.jcp.2015.05.002 +M. Hossein Gorji,Fokker-Planck-DSMC algorithm for simulations of rarefied gas flows.,2015,287,J. Comput. Physics,,db/journals/jcphy/jcphy287.html#GorjiJ15,https://doi.org/10.1016/j.jcp.2015.01.041 +Eric Johnsen,Assessment of high-resolution methods for numerical simulations of compressible turbulence with shock waves.,2010,229,J. Comput. Physics,4,db/journals/jcphy/jcphy229.html#JohnsenLBCMORSSYZL10,https://doi.org/10.1016/j.jcp.2009.10.028 +Tao Xiong,High order asymptotic preserving nodal discontinuous Galerkin IMEX schemes for the BGK equation.,2015,284,J. Comput. Physics,,db/journals/jcphy/jcphy284.html#XiongJLQ15,https://doi.org/10.1016/j.jcp.2014.12.021 +Sebastian Acosta,Coupling of Dirichlet-to-Neumann boundary condition and finite difference methods in curvilinear coordinates for multiple scattering.,2010,229,J. Comput. Physics,15,db/journals/jcphy/jcphy229.html#AcostaV10,https://doi.org/10.1016/j.jcp.2010.04.011 +Chao Zhang,A third-order gas-kinetic CPR method for the Euler and Navier-Stokes equations on triangular meshes.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#ZhangLFW18,https://doi.org/10.1016/j.jcp.2018.02.040 +Yesom Park,An efficient MILU preconditioning for solving the 2D Poisson equation with Neumann boundary condition.,2018,356,J. Comput. Physics,,db/journals/jcphy/jcphy356.html#ParkKJLM18,https://doi.org/10.1016/j.jcp.2017.11.028 +Rodolphe Prignitz,Particulate flows with the subspace projection method.,2014,260,J. Comput. Physics,,db/journals/jcphy/jcphy260.html#PrignitzB14,https://doi.org/10.1016/j.jcp.2013.12.030 +Ping Du,A tangent-plane marker-particle method for the computation of three-dimensional solid surfaces evolving by surface diffusion on a substrate.,2010,229,J. Comput. Physics,3,db/journals/jcphy/jcphy229.html#DuKW10,https://doi.org/10.1016/j.jcp.2009.10.013 +Yannick Gorsse,A simple Cartesian scheme for compressible multimaterials.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#GorsseIMT14,https://doi.org/10.1016/j.jcp.2014.04.057 +Christian A. Rivera,Parallel finite element simulations of incompressible viscous fluid flow by domain decomposition with Lagrange multipliers.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#RiveraHGT10,https://doi.org/10.1016/j.jcp.2010.03.028 +Milad Fatenejad,Extension of Kershaw diffusion scheme to hexahedral meshes.,2008,227,J. Comput. Physics,4,db/journals/jcphy/jcphy227.html#FatenejadM08,https://doi.org/10.1016/j.jcp.2007.11.001 +John Thuburn,A primal-dual mimetic finite element scheme for the rotating shallow water equations on polygonal spherical meshes.,2015,290,J. Comput. Physics,,db/journals/jcphy/jcphy290.html#ThuburnC15,https://doi.org/10.1016/j.jcp.2015.02.045 +W. W. Xing,Manifold learning for the emulation of spatial fields from computational models.,2016,326,J. Comput. Physics,,db/journals/jcphy/jcphy326.html#XingTSNZ16,https://doi.org/10.1016/j.jcp.2016.07.040 +C. C. Su,Large-scale simulations on multiple Graphics Processing Units (GPUs) for the direct simulation Monte Carlo method.,2012,231,J. Comput. Physics,23,db/journals/jcphy/jcphy231.html#SuSKWHT12,https://doi.org/10.1016/j.jcp.2012.07.038 +Matthias Ehrhardt,Exact artificial boundary conditions for problems with periodic structures.,2008,227,J. Comput. Physics,14,db/journals/jcphy/jcphy227.html#EhrhardtZ08,https://doi.org/10.1016/j.jcp.2008.03.042 +Pietro Lenarda,Partitioned coupling of advection-diffusion-reaction systems and Brinkman flows.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#LenardaPR17,https://doi.org/10.1016/j.jcp.2017.05.011 +M. Borchardt,A fast solver for the gyrokinetic field equation with adiabatic electrons.,2012,231,J. Comput. Physics,18,db/journals/jcphy/jcphy231.html#BorchardtKH12,https://doi.org/10.1016/j.jcp.2012.06.001 +Adrián Lozano-Durán,Numerically accurate computation of the conditional trajectories of the topological invariants in turbulent flows.,2015,295,J. Comput. Physics,,db/journals/jcphy/jcphy295.html#Lozano-DuranHJ15,https://doi.org/10.1016/j.jcp.2015.04.036 +Gang Bao,An accurate boundary element method for the exterior elastic scattering problem in two dimensions.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#BaoXY17,https://doi.org/10.1016/j.jcp.2017.07.032 +Kazem Hejranfar,Preconditioned characteristic boundary conditions for solution of the preconditioned Euler equations at low Mach number flows.,2012,231,J. Comput. Physics,12,db/journals/jcphy/jcphy231.html#HejranfarK12,https://doi.org/10.1016/j.jcp.2012.01.040 +Aihua Wood,Analysis of electromagnetic scattering from an overfilled cavity in the ground plane.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#Wood06,https://doi.org/10.1016/j.jcp.2005.11.007 +Pablo Ducru,Kernel reconstruction methods for Doppler broadening - Temperature interpolation by linear combination of reference cross sections at optimally chosen temperatures.,2017,335,J. Comput. Physics,,db/journals/jcphy/jcphy335.html#DucruJDSFS17,https://doi.org/10.1016/j.jcp.2017.01.039 +Dorota Jarecka,A spreading drop of shallow water.,2015,289,J. Comput. Physics,,db/journals/jcphy/jcphy289.html#JareckaJS15,https://doi.org/10.1016/j.jcp.2015.02.003 +Nail K. Yamaleev,Nonlinear model reduction for unsteady discontinuous flows.,2013,245,J. Comput. Physics,,db/journals/jcphy/jcphy245.html#YamaleevP13,https://doi.org/10.1016/j.jcp.2013.03.002 +Juliana Vianna Valério,Filtering the eigenvalues at infinite from the linear stability analysis of incompressible flows.,2007,227,J. Comput. Physics,1,db/journals/jcphy/jcphy227.html#ValerioCT07,https://doi.org/10.1016/j.jcp.2007.07.017 +Søren Taverniers,Impact of parametric uncertainty on estimation of the energy deposition into an irradiated brain tumor.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#TaverniersT17a,https://doi.org/10.1016/j.jcp.2017.07.008 +Sha Miao,Computation of three-dimensional multiphase flow dynamics by Fully-Coupled Immersed Flow (FCIF) solver.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#MiaoHL17,https://doi.org/10.1016/j.jcp.2017.08.042 +Maryam Rahbaralam,Do we really need a large number of particles to simulate bimolecular reactive transport with random walk methods? A kernel density estimation approach.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#RahbaralamFS15,https://doi.org/10.1016/j.jcp.2015.09.030 +Christos Varsakelis,The equilibrium limit of a constitutive model for two-phase granular mixtures and its numerical approximation.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#VarsakelisP10,https://doi.org/10.1016/j.jcp.2010.02.005 +Francesco Capuano,Energy preserving turbulent simulations at a reduced computational cost.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#CapuanoCBL15,https://doi.org/10.1016/j.jcp.2015.06.011 +Peter Wittek,High-performance dynamic quantum clustering on graphics processors.,2013,233,J. Comput. Physics,,db/journals/jcphy/jcphy233.html#Wittek13,https://doi.org/10.1016/j.jcp.2012.08.048 +John Thuburn,Numerical representation of geostrophic modes on arbitrarily structured C-grids.,2009,228,J. Comput. Physics,22,db/journals/jcphy/jcphy228.html#ThuburnRSK09,https://doi.org/10.1016/j.jcp.2009.08.006 +Sudhir B. Kylasa,PuReMD-GPU: A reactive molecular dynamics simulation package for GPUs.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#KylasaAG14,https://doi.org/10.1016/j.jcp.2014.04.035 +Theresa G. White,Identifying deformation mechanisms in molecular dynamics simulations of laser shocked matter.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#WhiteTSGHE17,https://doi.org/10.1016/j.jcp.2017.08.040 +Dexuan Xie,New solution decomposition and minimization schemes for Poisson-Boltzmann equation in calculation of biomolecular electrostatics.,2014,275,J. Comput. Physics,,db/journals/jcphy/jcphy275.html#Xie14a,https://doi.org/10.1016/j.jcp.2014.07.012 +Alexandre Chabory,Fast transform based preconditioners for 2D finite-difference frequency-domain - Waveguides and periodic structures.,2008,227,J. Comput. Physics,16,db/journals/jcphy/jcphy227.html#ChaboryHST08,https://doi.org/10.1016/j.jcp.2008.04.030 +Mehdi Mosharaf Dehkordi,A multi-resolution multiscale finite volume method for simulation of fluid flows in heterogeneous porous media.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#DehkordiM13,https://doi.org/10.1016/j.jcp.2013.04.018 +Tonkid Chantrasmi,Padé-Legendre approximants for uncertainty analysis with discontinuous response surfaces.,2009,228,J. Comput. Physics,19,db/journals/jcphy/jcphy228.html#ChantrasmiDI09,https://doi.org/10.1016/j.jcp.2009.06.024 +Ziyao Sun,Boundary Variation Diminishing (BVD) reconstruction: A new approach to improve Godunov schemes.,2016,322,J. Comput. Physics,,db/journals/jcphy/jcphy322.html#SunIX16,https://doi.org/10.1016/j.jcp.2016.06.051 +M. Lee,Atom-partitioned multipole expansions for electrostatic potential boundary conditions.,2017,328,J. Comput. Physics,,db/journals/jcphy/jcphy328.html#LeeLEK17,https://doi.org/10.1016/j.jcp.2016.10.012 +Charles Cleret de Langavant,Level-set simulations of soluble surfactant driven flows.,2017,348,J. Comput. Physics,,db/journals/jcphy/jcphy348.html#LangavantGTTG17,https://doi.org/10.1016/j.jcp.2017.07.003 +Shengfeng Zhu,A level set method for shape optimization in semilinear elliptic problems.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#ZhuHW18,https://doi.org/10.1016/j.jcp.2017.09.066 +Seong H. Lee,Adaptive multiscale finite-volume method for nonlinear multiphase transport in heterogeneous formations.,2009,228,J. Comput. Physics,24,db/journals/jcphy/jcphy228.html#LeeZT09,https://doi.org/10.1016/j.jcp.2009.09.009 +Amit Amritkar,Recycling Krylov subspaces for CFD applications and a new hybrid recycling solver.,2015,303,J. Comput. Physics,,db/journals/jcphy/jcphy303.html#AmritkarSSTA15,https://doi.org/10.1016/j.jcp.2015.09.040 +Javier Murillo,Accurate numerical modeling of 1D flow in channels with arbitrary shape. Application of the energy balanced property.,2014,260,J. Comput. Physics,,db/journals/jcphy/jcphy260.html#MurilloG14,https://doi.org/10.1016/j.jcp.2013.12.040 +Seungwon Shin,The Local Front Reconstruction Method for direct simulation of two- and three-dimensional multiphase flows.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#ShinYJ11,https://doi.org/10.1016/j.jcp.2011.04.040 +Seung-Cheol Lee,A hybrid finite/boundary element method for periodic structures on non-periodic meshes using an interior penalty formulation for Maxwell's equations.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#LeeRL10,https://doi.org/10.1016/j.jcp.2010.03.014 +Kailiang Wu,A third-order accurate direct Eulerian GRP scheme for the Euler equations in gas dynamics.,2014,264,J. Comput. Physics,,db/journals/jcphy/jcphy264.html#WuYT14,https://doi.org/10.1016/j.jcp.2014.01.041 +Dragan Vidovic,Convex combinations for diffusion schemes.,2013,246,J. Comput. Physics,,db/journals/jcphy/jcphy246.html#VidovicDDPP13,https://doi.org/10.1016/j.jcp.2013.03.034 +Claes Eskilsson,On devising Boussinesq-type models with bounded eigenspectra: One horizontal dimension.,2014,271,J. Comput. Physics,,db/journals/jcphy/jcphy271.html#EskilssonE14,https://doi.org/10.1016/j.jcp.2013.08.048 +Sourabh V. Apte,A numerical method for fully resolved simulation (FRS) of rigid particle-flow interactions in complex flows.,2009,228,J. Comput. Physics,8,db/journals/jcphy/jcphy228.html#ApteMP09,https://doi.org/10.1016/j.jcp.2008.11.034 +Alex M. Runov,Energy and momentum preserving Coulomb collision model for kinetic Monte Carlo simulations of plasma steady states in toroidal fusion devices.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#RunovKH15,https://doi.org/10.1016/j.jcp.2015.08.001 +Fangying Song,Spectral direction splitting methods for two-dimensional space fractional diffusion equations.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#SongX15,https://doi.org/10.1016/j.jcp.2015.07.011 +Paul J. Atzberger,Stochastic Eulerian Lagrangian methods for fluid-structure interactions with thermal fluctuations.,2011,230,J. Comput. Physics,8,db/journals/jcphy/jcphy230.html#Atzberger11,https://doi.org/10.1016/j.jcp.2010.12.028 +Youngjean Jung,A variational level set approach for surface area minimization of triply-periodic surfaces.,2007,223,J. Comput. Physics,2,db/journals/jcphy/jcphy223.html#JungCT07,https://doi.org/10.1016/j.jcp.2006.10.007 +Ratnesh K. Shukla,An interface capturing method for the simulation of multi-phase compressible flows.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#ShuklaPF10,https://doi.org/10.1016/j.jcp.2010.06.025 +Xin Lv,An efficient parallel/unstructured-multigrid preconditioned implicit method for simulating 3D unsteady compressible flows with moving objects.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#Lv0HXW06,https://doi.org/10.1016/j.jcp.2005.11.012 +Rikard Ojala,An accurate integral equation method for simulating multi-phase Stokes flow.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#OjalaT15,https://doi.org/10.1016/j.jcp.2015.06.002 +Yu-Xin Ren,A multi-dimensional upwind scheme for solving Euler and Navier-Stokes equations.,2006,219,J. Comput. Physics,1,db/journals/jcphy/jcphy219.html#RenS06,https://doi.org/10.1016/j.jcp.2006.03.018 +Dongwook Lee 0004,The Piecewise Cubic Method (PCM) for computational fluid dynamics.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#LeeFR17,https://doi.org/10.1016/j.jcp.2017.04.004 +Lin Mu,Weak Galerkin methods for second order elliptic interface problems.,2013,250,J. Comput. Physics,,db/journals/jcphy/jcphy250.html#MuWWYZ13,https://doi.org/10.1016/j.jcp.2013.04.042 +Robert E. Clark,Locally conformal finite-difference time-domain techniques for particle-in-cell plasma simulation.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#ClarkWZMGRPMSJT11,https://doi.org/10.1016/j.jcp.2010.10.013 +Richard Pasquetti,Comparison of some isoparametric mappings for curved triangular spectral elements.,2016,316,J. Comput. Physics,,db/journals/jcphy/jcphy316.html#Pasquetti16,https://doi.org/10.1016/j.jcp.2016.04.038 +Livio Gibelli,Spectral convergence of the Hermite basis function solution of the Vlasov equation: The free-streaming term.,2006,219,J. Comput. Physics,2,db/journals/jcphy/jcphy219.html#GibelliS06,https://doi.org/10.1016/j.jcp.2006.06.017 +Xiang Ma,A stochastic mixed finite element heterogeneous multiscale method for flow in porous media.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#MaZ11,https://doi.org/10.1016/j.jcp.2011.03.001 +Yassine Boubendir,A quasi-optimal non-overlapping domain decomposition algorithm for the Helmholtz equation.,2012,231,J. Comput. Physics,2,db/journals/jcphy/jcphy231.html#BoubendirAG12,https://doi.org/10.1016/j.jcp.2011.08.007 +C. D. Sijoy,Finite difference time domain algorithm for electromagnetic problems involving material movement.,2009,228,J. Comput. Physics,6,db/journals/jcphy/jcphy228.html#SijoyC09,https://doi.org/10.1016/j.jcp.2008.12.008 +Xiaolin Zhong,A new high-order immersed interface method for solving elliptic equations with imbedded interface of discontinuity.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#Zhong07,https://doi.org/10.1016/j.jcp.2007.01.017 +Yunfeng Cai,Hybrid preconditioning for iterative diagonalization of ill-conditioned generalized eigenvalue problems in electronic structure calculations.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#CaiBPS13,https://doi.org/10.1016/j.jcp.2013.07.020 +Michael Oevermann,A sharp interface finite volume method for elliptic equations on Cartesian grids.,2009,228,J. Comput. Physics,14,db/journals/jcphy/jcphy228.html#OevermannSK09,https://doi.org/10.1016/j.jcp.2009.04.018 +William A. Wieselquist,A cell-local finite difference discretization of the low-order quasidiffusion equations for neutral particle transport on unstructured quadrilateral meshes.,2014,273,J. Comput. Physics,,db/journals/jcphy/jcphy273.html#WieselquistAM14,https://doi.org/10.1016/j.jcp.2014.05.011 +Aaron Katz,Mesh quality effects on the accuracy of CFD solutions on unstructured meshes.,2011,230,J. Comput. Physics,20,db/journals/jcphy/jcphy230.html#KatzS11,https://doi.org/10.1016/j.jcp.2011.06.023 +Frédéric Nataf,A new approach to perfectly matched layers for the linearized Euler system.,2006,214,J. Comput. Physics,2,db/journals/jcphy/jcphy214.html#Nataf06,https://doi.org/10.1016/j.jcp.2005.10.014 +Victor Bayona,RBF-FD formulas and convergence properties.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#BayonaMCK10,https://doi.org/10.1016/j.jcp.2010.07.008 +X. Sheldon Wang,On computational issues of immersed finite element methods.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#WangZL09,https://doi.org/10.1016/j.jcp.2008.12.012 +John W. Barrett 0001,A parametric finite element method for fourth order geometric evolution equations.,2007,222,J. Comput. Physics,1,db/journals/jcphy/jcphy222.html#BarrettGN07,https://doi.org/10.1016/j.jcp.2006.07.026 +Junqing Chen,An adaptive inverse iteration for Maxwell eigenvalue problem based on edge elements.,2010,229,J. Comput. Physics,7,db/journals/jcphy/jcphy229.html#ChenXZ10,https://doi.org/10.1016/j.jcp.2009.12.013 +Johannes Tausch,A fast method for solving the heat equation by layer potentials.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#Tausch07,https://doi.org/10.1016/j.jcp.2006.11.001 +Jianfang Lu,Inverse Lax-Wendroff procedure for numerical boundary conditions of convection-diffusion equations.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#LuFTSZ16,https://doi.org/10.1016/j.jcp.2016.04.059 +Michael Hintermüller,An adaptive finite element Moreau-Yosida-based solver for a coupled Cahn-Hilliard/Navier-Stokes system.,2013,235,J. Comput. Physics,,db/journals/jcphy/jcphy235.html#MichaelHintermullerHK13,https://doi.org/10.1016/j.jcp.2012.10.010 +Alexandros Syrakos,Numerical experiments on the efficiency of local grid refinement based on truncation error estimates.,2012,231,J. Comput. Physics,20,db/journals/jcphy/jcphy231.html#SyrakosEBG12,https://doi.org/10.1016/j.jcp.2012.06.023 +Mark Owkes,A discontinuous Galerkin conservative level set scheme for interface capturing in multiphase flows.,2013,249,J. Comput. Physics,,db/journals/jcphy/jcphy249.html#OwkesD13,https://doi.org/10.1016/j.jcp.2013.04.036 +Swapan K. Pandit,A transient higher order compact scheme for incompressible viscous flows on geometries beyond rectangular.,2007,225,J. Comput. Physics,1,db/journals/jcphy/jcphy225.html#PanditKD07,https://doi.org/10.1016/j.jcp.2007.01.016 +David Cohen,Multi-symplectic integration of the Camassa-Holm equation.,2008,227,J. Comput. Physics,11,db/journals/jcphy/jcphy227.html#CohenOR08,https://doi.org/10.1016/j.jcp.2008.01.051 +Rajat Mittal,Computational modeling of cardiac hemodynamics: Current status and future outlook.,2016,305,J. Comput. Physics,,db/journals/jcphy/jcphy305.html#MittalSVCLHJYAG16,https://doi.org/10.1016/j.jcp.2015.11.022 +Paul Macklin,An improved geometry-aware curvature discretization for level set methods: Application to tumor growth.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#MacklinL06,https://doi.org/10.1016/j.jcp.2005.11.016 +Travis Askham,An adaptive fast multipole accelerated Poisson solver for complex geometries.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#AskhamC17,https://doi.org/10.1016/j.jcp.2017.04.063 +Le Duan,A high-order cut-cell method for numerical simulation of hypersonic boundary-layer instability with surface roughness.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#DuanWZ10,https://doi.org/10.1016/j.jcp.2010.06.008 +Xiangyu Hu 0002,A multi-phase SPH method for macroscopic and mesoscopic flows.,2006,213,J. Comput. Physics,2,db/journals/jcphy/jcphy213.html#0002A06,https://doi.org/10.1016/j.jcp.2005.09.001 +Dinshaw S. Balsara,Multidimensional Riemann problem with self-similar internal structure. Part II - Application to hyperbolic conservation laws on unstructured meshes.,2015,287,J. Comput. Physics,,db/journals/jcphy/jcphy287.html#BalsaraD15,https://doi.org/10.1016/j.jcp.2014.11.004 +Dongmi Luo,A hybrid LDG-HWENO scheme for KdV-type equations.,2016,313,J. Comput. Physics,,db/journals/jcphy/jcphy313.html#LuoHQ16,https://doi.org/10.1016/j.jcp.2016.02.064 +Ahmed H. Elsheikh,Hybrid nested sampling algorithm for Bayesian model selection applied to inverse subsurface flow problems.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#ElsheikhWH14,https://doi.org/10.1016/j.jcp.2013.10.001 +Ren-Chuen Chen,An accelerated monotone iterative method for the quantum-corrected energy transport model.,2008,227,J. Comput. Physics,12,db/journals/jcphy/jcphy227.html#ChenL08,https://doi.org/10.1016/j.jcp.2008.03.003 +Hasan Almanasreh,"Corrigendum to ""Stabilized finite element method for the radial Dirac equation"" [J. Comput. Phys. 236(2013) 426-442].",2017,340,J. Comput. Physics,,db/journals/jcphy/jcphy340.html#AlmanasrehSS17,https://doi.org/10.1016/j.jcp.2017.02.040 +Hehu Xie,A multigrid method for eigenvalue problem.,2014,274,J. Comput. Physics,,db/journals/jcphy/jcphy274.html#Xie14,https://doi.org/10.1016/j.jcp.2014.06.030 +K. K. So,Anti-diffusion interface sharpening technique for two-phase compressible flow simulations.,2012,231,J. Comput. Physics,11,db/journals/jcphy/jcphy231.html#SoHA12,https://doi.org/10.1016/j.jcp.2012.02.013 +Antonio J. Gil,The Immersed Structural Potential Method for haemodynamic applications.,2010,229,J. Comput. Physics,22,db/journals/jcphy/jcphy229.html#GilCBH10,https://doi.org/10.1016/j.jcp.2010.08.005 +Tomoaki Watanabe,Gradients estimation from random points with volumetric tensor in turbulence.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#WatanabeN17,https://doi.org/10.1016/j.jcp.2017.08.057 +Joanna Szmelter,An edge-based unstructured mesh discretisation in geospherical framework.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#SzmelterS10,https://doi.org/10.1016/j.jcp.2010.03.017 +Shu-Lin Wu,Fast parareal iterations for fractional diffusion equations.,2017,329,J. Comput. Physics,,db/journals/jcphy/jcphy329.html#WuZ17,https://doi.org/10.1016/j.jcp.2016.10.046 +Taeyoung Ha,Efficient electric resistivity inversion using adjoint state of mixed finite-element method for Poisson's equation.,2006,214,J. Comput. Physics,1,db/journals/jcphy/jcphy214.html#HaPS06,https://doi.org/10.1016/j.jcp.2005.09.007 +Stephen R. Lau,Sparse spectral-tau method for the three-dimensional helically reduced wave equation on two-center domains.,2012,231,J. Comput. Physics,22,db/journals/jcphy/jcphy231.html#LauP12,https://doi.org/10.1016/j.jcp.2012.07.006 +Thomas Guillet,A simple multigrid scheme for solving the Poisson equation with arbitrary domain boundaries.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#GuilletT11,https://doi.org/10.1016/j.jcp.2011.02.044 +Pengtao Sun,A new adaptive local mesh refinement algorithm and its application on fourth order thin film flow problem.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#SunRX07,https://doi.org/10.1016/j.jcp.2006.11.005 +Bokai Yan,A Monte Carlo method with negative particles for Coulomb collisions.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#YanC15,https://doi.org/10.1016/j.jcp.2015.06.021 +Salvador Izquierdo,Optimal preconditioning of lattice Boltzmann methods.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#IzquierdoF09,https://doi.org/10.1016/j.jcp.2009.05.040 +Najeem Adeleke,Revisiting low-fidelity two-fluid models for gas-solids transport.,2016,319,J. Comput. Physics,,db/journals/jcphy/jcphy319.html#AdelekeAI16,https://doi.org/10.1016/j.jcp.2016.05.020 +Chuan-Chih Chou,Multiscale diffusion Monte Carlo simulation of epitaxial growth.,2006,217,J. Comput. Physics,2,db/journals/jcphy/jcphy217.html#ChouF06,https://doi.org/10.1016/j.jcp.2006.01.012 +Peter Benner,Fast iterative solution of the Bethe-Salpeter eigenvalue problem using low-rank and QTT tensor approximation.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#BennerDKK17,https://doi.org/10.1016/j.jcp.2016.12.047 +Hessam Babaee,A robust bi-orthogonal/dynamically-orthogonal method using the covariance pseudo-inverse with application to stochastic flow problems.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#BabaeeCSK17,https://doi.org/10.1016/j.jcp.2017.04.057 +Miguel A. Fernández,Fully decoupled time-marching schemes for incompressible fluid/thin-walled structure interaction.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#FernandezLV15,https://doi.org/10.1016/j.jcp.2015.05.009 +Giorgio Rosatti,A well-balanced approach for flows over mobile-bed with high sediment-transport.,2006,220,J. Comput. Physics,1,db/journals/jcphy/jcphy220.html#RosattiF06,https://doi.org/10.1016/j.jcp.2006.05.012 +Yaoxin Zhang,2D automatic body-fitted structured mesh generation using advancing extraction method.,2018,353,J. Comput. Physics,,db/journals/jcphy/jcphy353.html#ZhangJ18,https://doi.org/10.1016/j.jcp.2017.10.018 +Patrick Whalen,Exponential time-differencing with embedded Runge-Kutta adaptive step control.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#WhalenBM15,https://doi.org/10.1016/j.jcp.2014.09.038 +Giovanni Samaey,Patch dynamics with buffers for homogenization problems.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#SamaeyKR06,https://doi.org/10.1016/j.jcp.2005.08.010 +Wen Yan,Flexibly imposing periodicity in kernel independent FMM: A multipole-to-local operator approach.,2018,355,J. Comput. Physics,,db/journals/jcphy/jcphy355.html#YanS18,https://doi.org/10.1016/j.jcp.2017.11.012 +Xinfeng Liu,Compact integration factor methods for complex domains and adaptive mesh refinement.,2010,229,J. Comput. Physics,16,db/journals/jcphy/jcphy229.html#LiuN10,https://doi.org/10.1016/j.jcp.2010.04.003 +Hillary R. Fairbanks,A low-rank control variate for multilevel Monte Carlo simulation of high-dimensional uncertain systems.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#FairbanksDKI17,https://doi.org/10.1016/j.jcp.2017.03.060 +Shuhai Zhang,Development of nonlinear weighted compact schemes with increasingly higher order accuracy.,2008,227,J. Comput. Physics,15,db/journals/jcphy/jcphy227.html#ZhangJS08,https://doi.org/10.1016/j.jcp.2008.04.012 +Lin Zhang 0010,Variational multiscale element free Galerkin method for the water wave problems.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#ZhangOJR11,https://doi.org/10.1016/j.jcp.2011.03.026 +Florian Bürgel,A sparsity regularization and total variation based computational framework for the inverse medium problem in scattering.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#BurgelKL17,https://doi.org/10.1016/j.jcp.2017.03.011 +Wooyoung Choi,An iterative method to solve a regularized model for strongly nonlinear long internal waves.,2011,230,J. Comput. Physics,5,db/journals/jcphy/jcphy230.html#ChoiGJ11,https://doi.org/10.1016/j.jcp.2010.11.049 +William W. Dai,Interface- and discontinuity-aware numerical schemes for plasma 3-T radiation diffusion in two and three dimensions.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#DaiS15a,https://doi.org/10.1016/j.jcp.2015.07.041 +Qinghai Zhang,A new interface tracking method: The polygonal area mapping method.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#ZhangL08,https://doi.org/10.1016/j.jcp.2007.12.014 +Elizabeth L. Bouzarth,A multirate time integrator for regularized Stokeslets.,2010,229,J. Comput. Physics,11,db/journals/jcphy/jcphy229.html#BouzarthM10,https://doi.org/10.1016/j.jcp.2010.02.006 +Matthew T. Calef,Nonlinear Krylov acceleration applied to a discrete ordinates formulation of the k-eigenvalue problem.,2013,238,J. Comput. Physics,,db/journals/jcphy/jcphy238.html#CalefFWBC13,https://doi.org/10.1016/j.jcp.2012.12.024 +Peijun Li,Numerical solution of an inverse obstacle scattering problem with near-field data.,2015,290,J. Comput. Physics,,db/journals/jcphy/jcphy290.html#LiW15,https://doi.org/10.1016/j.jcp.2015.03.004 +Jure Mencinger,On the finite volume discretization of discontinuous body force field on collocated grid: Application to VOF method.,2007,221,J. Comput. Physics,2,db/journals/jcphy/jcphy221.html#MencingerZ07,https://doi.org/10.1016/j.jcp.2006.06.021 +Clifford Hall,The Metropolis Monte Carlo method with CUDA enabled Graphic Processing Units.,2014,258,J. Comput. Physics,,db/journals/jcphy/jcphy258.html#HallJB14,https://doi.org/10.1016/j.jcp.2013.11.012 +Shiying Xiong,The boundary-constraint method for constructing vortex-surface fields.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#XiongY17,https://doi.org/10.1016/j.jcp.2017.03.013 +A. Prakash,High-order shock-fitting methods for direct numerical simulation of hypersonic flow with chemical and thermal nonequilibrium.,2011,230,J. Comput. Physics,23,db/journals/jcphy/jcphy230.html#PrakashPWZ11,https://doi.org/10.1016/j.jcp.2011.08.001 +Lucia Carichino,Energy-based operator splitting approach for the time discretization of coupled systems of partial and ordinary differential equations for fluid flows: The Stokes case.,2018,364,J. Comput. Physics,,db/journals/jcphy/jcphy364.html#CarichinoGS18,https://doi.org/10.1016/j.jcp.2018.02.030 +Yingjun Jiang,Multigrid methods for space fractional partial differential equations.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#JiangX15,https://doi.org/10.1016/j.jcp.2015.08.052 +Georgios Matheou,Scalar excursions in large-eddy simulations.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#MatheouD16,https://doi.org/10.1016/j.jcp.2016.08.035 +Gang-Joon Yoon,Analyses on the finite difference method by Gibou et al. for Poisson equation.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#YoonM15,https://doi.org/10.1016/j.jcp.2014.09.009 +Caterina Calgaro,An hybrid finite volume-finite element method for variable density incompressible flows.,2008,227,J. Comput. Physics,9,db/journals/jcphy/jcphy227.html#CalgaroCG08,https://doi.org/10.1016/j.jcp.2008.01.017 +Matthew Dobson,Cell list algorithms for nonequilibrium molecular dynamics.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#DobsonFS16,https://doi.org/10.1016/j.jcp.2016.03.056 +Antoine Tambue,An exponential integrator for advection-dominated reactive transport in heterogeneous porous media.,2010,229,J. Comput. Physics,10,db/journals/jcphy/jcphy229.html#TambueLG10,https://doi.org/10.1016/j.jcp.2010.01.037 +Yong Cao,An iterative immersed finite element method for an electric potential interface problem based on given surface electric quantity.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#CaoCHL15,https://doi.org/10.1016/j.jcp.2014.10.014 +Jochen Schütz,A hybrid mixed method for the compressible Navier-Stokes equations.,2013,240,J. Comput. Physics,,db/journals/jcphy/jcphy240.html#SchutzM13,https://doi.org/10.1016/j.jcp.2013.01.019 +D. Imbert,Fictitious domain method for acoustic waves through a granular suspension of movable rigid spheres.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#ImbertMG15,https://doi.org/10.1016/j.jcp.2014.10.006 +Victorita Dolean,A domain decomposition method for solving the three-dimensional time-harmonic Maxwell equations discretized by discontinuous Galerkin methods.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#DoleanLP08,https://doi.org/10.1016/j.jcp.2007.10.004 +Ryan G. McClarren,The effects of slope limiting on asymptotic-preserving numerical methods for hyperbolic conservation laws.,2008,227,J. Comput. Physics,23,db/journals/jcphy/jcphy227.html#McClarrenL08,https://doi.org/10.1016/j.jcp.2008.07.012 +Bendiks Jan Boersma,A 6th order staggered compact finite difference method for the incompressible Navier-Stokes and scalar transport equations.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#Boersma11,https://doi.org/10.1016/j.jcp.2011.03.014 +Xiaobo Gong,An immersed boundary method for mass transfer across permeable moving interfaces.,2014,278,J. Comput. Physics,,db/journals/jcphy/jcphy278.html#GongGH14,https://doi.org/10.1016/j.jcp.2014.08.025 +Rei Kawashima,A flux-splitting method for hyperbolic-equation system of magnetized electron fluids in quasi-neutral plasmas.,2016,310,J. Comput. Physics,,db/journals/jcphy/jcphy310.html#KawashimaKS16,https://doi.org/10.1016/j.jcp.2016.01.006 +Ryan I. Fernandes,An ADI extrapolated Crank-Nicolson orthogonal spline collocation method for nonlinear reaction-diffusion systems on evolving domains.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#FernandesBF15,https://doi.org/10.1016/j.jcp.2015.07.016 +Nicoletta Franchina,Multicomponent gas flow computations by a discontinuous Galerkin scheme using L2-projection of perfect gas EOS.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#FranchinaSB16,https://doi.org/10.1016/j.jcp.2016.03.059 +Yaman Güçlü,A high order cell-centered semi-Lagrangian scheme for multi-dimensional kinetic simulations of neutral gas flows.,2012,231,J. Comput. Physics,8,db/journals/jcphy/jcphy231.html#GucluH12,https://doi.org/10.1016/j.jcp.2012.01.008 +C. Brehm,On consistent boundary closures for compact finite-difference WENO schemes.,2017,334,J. Comput. Physics,,db/journals/jcphy/jcphy334.html#Brehm17,https://doi.org/10.1016/j.jcp.2016.12.057 +Tapan K. Sengupta,A new compact scheme for parallel computing using domain decomposition.,2007,220,J. Comput. Physics,2,db/journals/jcphy/jcphy220.html#SenguptaDR07,https://doi.org/10.1016/j.jcp.2006.05.018 +Thomas G. Jenkins,Coupling extended magnetohydrodynamic fluid codes with radiofrequency ray tracing codes for fusion modeling.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#JenkinsH15,https://doi.org/10.1016/j.jcp.2015.05.035 +Amit Amritkar,Efficient parallel CFD-DEM simulations using OpenMP.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#AmritkarDT14,https://doi.org/10.1016/j.jcp.2013.09.007 +Shamsul Qamar,A high order kinetic flux-vector splitting method for the reduced five-equation model of compressible two-fluid flows.,2009,228,J. Comput. Physics,24,db/journals/jcphy/jcphy228.html#QamarA09,https://doi.org/10.1016/j.jcp.2009.09.010 +Chohong Min,On reinitializing level set functions.,2010,229,J. Comput. Physics,8,db/journals/jcphy/jcphy229.html#Min10,https://doi.org/10.1016/j.jcp.2009.12.032 +Juhi Jang,High order asymptotic preserving DG-IMEX schemes for discrete-velocity kinetic equations in a diffusive scaling.,2015,281,J. Comput. Physics,,db/journals/jcphy/jcphy281.html#JangLQX15,https://doi.org/10.1016/j.jcp.2014.10.025 +Livio Fedeli,Computer simulations of phase field drops on super-hydrophobic surfaces.,2017,344,J. Comput. Physics,,db/journals/jcphy/jcphy344.html#Fedeli17,https://doi.org/10.1016/j.jcp.2017.04.068 +Gongyou Liang,Simulation of self-assemblies of colloidal particles on the substrate using a lattice Boltzmann pseudo-solid model.,2013,248,J. Comput. Physics,,db/journals/jcphy/jcphy248.html#LiangZCOOC13,https://doi.org/10.1016/j.jcp.2013.04.007 +Bartlomiej Gardas,Counting defects in quantum computers with Graphics Processing Units.,2018,366,J. Comput. Physics,,db/journals/jcphy/jcphy366.html#GardasP18,https://doi.org/10.1016/j.jcp.2018.04.016 +Roberto Camassa,Viscous and inviscid regularizations in a class of evolutionary partial differential equations.,2010,229,J. Comput. Physics,19,db/journals/jcphy/jcphy229.html#CamassaCLS10,https://doi.org/10.1016/j.jcp.2010.06.002 +Stéphane étienne,Perspective on the geometric conservation law and finite element methods for ALE simulations of incompressible flow.,2009,228,J. Comput. Physics,7,db/journals/jcphy/jcphy228.html#EtienneGP09,https://doi.org/10.1016/j.jcp.2008.11.032 +Agnès Leroy,Unified semi-analytical wall boundary conditions applied to 2-D incompressible SPH.,2014,261,J. Comput. Physics,,db/journals/jcphy/jcphy261.html#LeroyVFK14,https://doi.org/10.1016/j.jcp.2013.12.035 +Matthieu Duponcheel,Time-reversibility of the Euler equations as a benchmark for energy conserving schemes.,2008,227,J. Comput. Physics,19,db/journals/jcphy/jcphy227.html#DuponcheelOW08,https://doi.org/10.1016/j.jcp.2008.06.020 +S. Mendez,Acoustic modeling of perforated plates with bias flow for Large-Eddy Simulations.,2009,228,J. Comput. Physics,13,db/journals/jcphy/jcphy228.html#MendezE09,https://doi.org/10.1016/j.jcp.2009.03.026 +Michael Kraus,Variational integrators for reduced magnetohydrodynamics.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#KrausTG16,https://doi.org/10.1016/j.jcp.2016.05.047 +Z. Guo,An implicit parallel multigrid computing scheme to solve coupled thermal-solute phase-field equations for dendrite evolution.,2012,231,J. Comput. Physics,4,db/journals/jcphy/jcphy231.html#GuoMG12,https://doi.org/10.1016/j.jcp.2011.11.006 +Igor Shevchenko,Absorbing boundary conditions for nonlinear acoustics: The Westervelt equation.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#ShevchenkoK15,https://doi.org/10.1016/j.jcp.2015.08.051 +Matteo Antuono,Delayed Over-Relaxation for iterative methods.,2016,321,J. Comput. Physics,,db/journals/jcphy/jcphy321.html#AntuonoC16,https://doi.org/10.1016/j.jcp.2016.06.016 +Fu-Rong Lin,Preconditioned iterative methods for fractional diffusion equation.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#LinYJ14,https://doi.org/10.1016/j.jcp.2013.07.040 +Kai Jiang,Numerical methods for quasicrystals.,2014,256,J. Comput. Physics,,db/journals/jcphy/jcphy256.html#JiangZ14,https://doi.org/10.1016/j.jcp.2013.08.034 +Marc Garbey,Multiscale modeling and distributed computing to predict cosmesis outcome after a lumpectomy.,2013,244,J. Comput. Physics,,db/journals/jcphy/jcphy244.html#GarbeySTB13,https://doi.org/10.1016/j.jcp.2012.08.002 +Zhenning Cai,The NRxx method for polyatomic gases.,2014,267,J. Comput. Physics,,db/journals/jcphy/jcphy267.html#CaiL14,https://doi.org/10.1016/j.jcp.2014.02.026 +Matthew S. McMullen,The computational efficiency of non-linear frequency domain methods.,2006,212,J. Comput. Physics,2,db/journals/jcphy/jcphy212.html#McMullenJ06,https://doi.org/10.1016/j.jcp.2005.07.021 +Waad Subber,A parallel time integrator for noisy nonlinear oscillatory systems.,2018,362,J. Comput. Physics,,db/journals/jcphy/jcphy362.html#SubberS18,https://doi.org/10.1016/j.jcp.2018.01.019 +Bruno Blais,Development of an unresolved CFD-DEM model for the flow of viscous suspensions and its application to solid-liquid mixing.,2016,318,J. Comput. Physics,,db/journals/jcphy/jcphy318.html#BlaisLGFB16,https://doi.org/10.1016/j.jcp.2016.05.008 +N. Ben Nasr,Low-diffusion approximate Riemann solvers for Reynolds-stress transport.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#NasrGV14,https://doi.org/10.1016/j.jcp.2014.02.010 +Eric A. Machorro,Discontinuous Galerkin finite element method applied to the 1-D spherical neutron transport equation.,2007,223,J. Comput. Physics,1,db/journals/jcphy/jcphy223.html#Machorro07,https://doi.org/10.1016/j.jcp.2006.08.020 +Yang Feng,Algorithms for accurate relativistic particle injection.,2008,227,J. Comput. Physics,3,db/journals/jcphy/jcphy227.html#FengKV08,https://doi.org/10.1016/j.jcp.2007.09.016 +Jialin Hong,A stochastic multi-symplectic scheme for stochastic Maxwell equations with additive noise.,2014,268,J. Comput. Physics,,db/journals/jcphy/jcphy268.html#HongJZ14,https://doi.org/10.1016/j.jcp.2014.03.008 +Hong Wang,A fast finite difference method for three-dimensional time-dependent space-fractional diffusion equations and its efficient implementation.,2013,253,J. Comput. Physics,,db/journals/jcphy/jcphy253.html#WangD13a,https://doi.org/10.1016/j.jcp.2013.06.040 +Pilhwa Lee,The immersed boundary method for advection-electrodiffusion with implicit *tepping and local mesh refinement.,2010,229,J. Comput. Physics,13,db/journals/jcphy/jcphy229.html#LeeGP10,https://doi.org/10.1016/j.jcp.2010.03.036 +Basil Bayati,D-leaping: Accelerating stochastic simulation algorithms for reactions with delays.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#BayatiCK09,https://doi.org/10.1016/j.jcp.2009.05.004 +Stéphane Brull,Local discrete velocity grids for deterministic rarefied flow simulations.,2014,266,J. Comput. Physics,,db/journals/jcphy/jcphy266.html#BrullM14,https://doi.org/10.1016/j.jcp.2014.01.050 +Dinshaw S. Balsara,Multidimensional HLLE Riemann solver: Application to Euler and magnetohydrodynamic flows.,2010,229,J. Comput. Physics,6,db/journals/jcphy/jcphy229.html#Balsara10,https://doi.org/10.1016/j.jcp.2009.11.018 +Vittorio Romano,DSMC method consistent with the Pauli exclusion principle and comparison with deterministic solutions for charge transport in graphene.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#RomanoMC15,https://doi.org/10.1016/j.jcp.2015.08.047 +John Strain,Locally-corrected spectral methods and overdetermined elliptic systems.,2007,224,J. Comput. Physics,2,db/journals/jcphy/jcphy224.html#Strain07,https://doi.org/10.1016/j.jcp.2006.11.017 +Oliver Fortmeier,Parallel re-initialization of level set functions on distributed unstructured tetrahedral grids.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#FortmeierB11,https://doi.org/10.1016/j.jcp.2011.02.005 +Nataliya Portman,Sampling algorithms for validation of supervised learning models for Ising-like systems.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#PortmanT17,https://doi.org/10.1016/j.jcp.2017.06.045 +Naoyuki Onodera,Large-eddy simulation of turbulent channel flows with conservative IDO scheme.,2011,230,J. Comput. Physics,14,db/journals/jcphy/jcphy230.html#OnoderaAK11,https://doi.org/10.1016/j.jcp.2011.04.004 +Deborah A. Fixel,Convective scheme solution of the Boltzmann transport equation for nanoscale semiconductor devices.,2007,227,J. Comput. Physics,2,db/journals/jcphy/jcphy227.html#FixelH07,https://doi.org/10.1016/j.jcp.2007.09.006 +Simone Marras,Simulations of moist convection by a variational multiscale stabilized finite element method.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#MarrasMVJH13,https://doi.org/10.1016/j.jcp.2013.06.006 +Adrián Navas-Montilla,Asymptotically and exactly energy balanced augmented flux-ADER schemes with application to hyperbolic conservation laws with geometric source terms.,2016,317,J. Comput. Physics,,db/journals/jcphy/jcphy317.html#Navas-MontillaM16,https://doi.org/10.1016/j.jcp.2016.04.047 +Takemi Shigeta,Mathematical and numerical studies on meshless methods for exterior unbounded domain problems.,2011,230,J. Comput. Physics,17,db/journals/jcphy/jcphy230.html#ShigetaY11,https://doi.org/10.1016/j.jcp.2011.05.017 +Martin Frank,Partial moment entropy approximation to radiative heat transfer.,2006,218,J. Comput. Physics,1,db/journals/jcphy/jcphy218.html#FrankDK06,https://doi.org/10.1016/j.jcp.2006.01.038 +Jian Cheng,A direct discontinuous Galerkin method for the compressible Navier-Stokes equations on arbitrary grids.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#ChengYLLL16,https://doi.org/10.1016/j.jcp.2016.09.049 +Kaustubh Rao,A stopping criterion for the iterative solution of partial differential equations.,2018,352,J. Comput. Physics,,db/journals/jcphy/jcphy352.html#RaoMP18,https://doi.org/10.1016/j.jcp.2017.09.033 +Sung Ha Kang,Path optimization with limited sensing ability.,2015,299,J. Comput. Physics,,db/journals/jcphy/jcphy299.html#KangKZ15,https://doi.org/10.1016/j.jcp.2015.07.037 +Jens P. Eberhard,Numerical upscaling for the eddy-current model with stochastic magnetic materials.,2008,227,J. Comput. Physics,8,db/journals/jcphy/jcphy227.html#EberhardPW08,https://doi.org/10.1016/j.jcp.2007.12.021 +Philipp Lauber,LIGKA: A linear gyrokinetic code for the description of background kinetic and fast particle effects on the MHD stability in tokamaks.,2007,226,J. Comput. Physics,1,db/journals/jcphy/jcphy226.html#LauberGKP07,https://doi.org/10.1016/j.jcp.2007.04.019 +Pierre Degond,Self-organized hydrodynamics with congestion and path formation in crowds.,2013,237,J. Comput. Physics,,db/journals/jcphy/jcphy237.html#DegondH13,https://doi.org/10.1016/j.jcp.2012.11.033 +Bastian Bohn,A sparse grid based method for generative dimensionality reduction of high-dimensional data.,2016,309,J. Comput. Physics,,db/journals/jcphy/jcphy309.html#BohnGG16,https://doi.org/10.1016/j.jcp.2015.12.033 +Zhen-Sheng Sun,A class of finite difference schemes with low dispersion and controllable dissipation for DNS of compressible turbulence.,2011,230,J. Comput. Physics,12,db/journals/jcphy/jcphy230.html#SunRLZY11,https://doi.org/10.1016/j.jcp.2011.02.038 +Jiequan Li,The adaptive GRP scheme for compressible fluid flows over unstructured meshes.,2013,242,J. Comput. Physics,,db/journals/jcphy/jcphy242.html#LiZ13,https://doi.org/10.1016/j.jcp.2013.02.003 +Stefano Mattei,A fully-implicit Particle-In-Cell Monte Carlo Collision code for the simulation of inductively coupled plasmas.,2017,350,J. Comput. Physics,,db/journals/jcphy/jcphy350.html#MatteiNOLTH17,https://doi.org/10.1016/j.jcp.2017.09.015 +Kazunari Iwasaki,Minimizing dispersive errors in smoothed particle magnetohydrodynamics for strongly magnetized medium.,2015,302,J. Comput. Physics,,db/journals/jcphy/jcphy302.html#Iwasaki15,https://doi.org/10.1016/j.jcp.2015.09.022 +Carolyn L. Phillips,A learning heuristic for space mapping and searching self-organizing systems using adaptive mesh refinement.,2014,272,J. Comput. Physics,,db/journals/jcphy/jcphy272.html#Phillips14,https://doi.org/10.1016/j.jcp.2014.05.001 +Feifei Chen,Topology optimization of hyperelastic structures using a level set method.,2017,351,J. Comput. Physics,,db/journals/jcphy/jcphy351.html#ChenWWZ17,https://doi.org/10.1016/j.jcp.2017.09.040 +Yalchin Efendiev,Local-global multiscale model reduction for flows in high-contrast heterogeneous media.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#EfendievGG12,https://doi.org/10.1016/j.jcp.2012.07.032 +Ana Carpio,Domain reconstruction using photothermal techniques.,2008,227,J. Comput. Physics,17,db/journals/jcphy/jcphy227.html#CarpioR08,https://doi.org/10.1016/j.jcp.2008.05.014 +Sandeep Menon,Parallel adaptive simplical re-meshing for deforming domain CFD computations.,2015,298,J. Comput. Physics,,db/journals/jcphy/jcphy298.html#MenonMSS15,https://doi.org/10.1016/j.jcp.2015.05.044 +Jeffery D. Densmore,Stability analysis of implicit time discretizations for the Compton-scattering Fokker-Planck equation.,2009,228,J. Comput. Physics,16,db/journals/jcphy/jcphy228.html#DensmoreWLM09,https://doi.org/10.1016/j.jcp.2009.05.003 +Bin Xie,A multi-moment constrained finite volume method on arbitrary unstructured grids for incompressible flows.,2016,327,J. Comput. Physics,,db/journals/jcphy/jcphy327.html#XieX16,https://doi.org/10.1016/j.jcp.2016.09.054 +Kenji Imadera,A numerical method for solving the Vlasov-Poisson equation based on the conservative IDO scheme.,2009,228,J. Comput. Physics,23,db/journals/jcphy/jcphy228.html#ImaderaKSLU09,https://doi.org/10.1016/j.jcp.2009.09.008 +Steffen Basting,A hybrid level set-front tracking finite element approach for fluid-structure interaction and two-phase flow applications.,2013,255,J. Comput. Physics,,db/journals/jcphy/jcphy255.html#BastingW13,https://doi.org/10.1016/j.jcp.2013.08.018 +Panos Drouvelis,Parallel implementation of the recursive Green's function method.,2006,215,J. Comput. Physics,2,db/journals/jcphy/jcphy215.html#DrouvelisSB06,https://doi.org/10.1016/j.jcp.2005.11.010 +Anvar Gilmanov,A numerical approach for simulating fluid structure interaction of flexible thin shells undergoing arbitrarily large deformations in complex domains.,2015,300,J. Comput. Physics,,db/journals/jcphy/jcphy300.html#GilmanovLS15,https://doi.org/10.1016/j.jcp.2015.08.008 +Ling Guo,A gradient enhanced ℓ*1-minimization for sparse approximation of polynomial chaos expansions.,2018,367,J. Comput. Physics,,db/journals/jcphy/jcphy367.html#GuoNZ18,https://doi.org/10.1016/j.jcp.2018.04.026 +Shaoqiang Tang,A pseudo-spectral multiscale method: Interfacial conditions and coarse grid equations.,2006,213,J. Comput. Physics,1,db/journals/jcphy/jcphy213.html#TangHL06,https://doi.org/10.1016/j.jcp.2005.08.001 +Hafiz Abdul Wajid,An optimally blended finite-spectral element scheme with minimal dispersion for Maxwell equations.,2012,231,J. Comput. Physics,24,db/journals/jcphy/jcphy231.html#WajidA12,https://doi.org/10.1016/j.jcp.2012.07.047 +Guillaume Jouvet,An adaptive Newton multigrid method for a model of marine ice sheets.,2013,252,J. Comput. Physics,,db/journals/jcphy/jcphy252.html#JouvetG13,https://doi.org/10.1016/j.jcp.2013.06.032 +Songming Hou,An improved imaging method for extended targets.,2017,333,J. Comput. Physics,,db/journals/jcphy/jcphy333.html#HouZ17,https://doi.org/10.1016/j.jcp.2016.12.055 +Robert Hager,A fully non-linear multi-species Fokker-Planck-Landau collision operator for simulation of fusion plasma.,2016,315,J. Comput. Physics,,db/journals/jcphy/jcphy315.html#HagerYKDWC16,https://doi.org/10.1016/j.jcp.2016.03.064 +Marica Pelanti,A Riemann solver for single-phase and two-phase shallow flow models based on relaxation. Relations with Roe and VFRoe solvers.,2011,230,J. Comput. Physics,3,db/journals/jcphy/jcphy230.html#PelantiBM11,https://doi.org/10.1016/j.jcp.2010.10.001 +Juwon Jang,An immersed boundary method for nonuniform grids.,2017,341,J. Comput. Physics,,db/journals/jcphy/jcphy341.html#JangL17,https://doi.org/10.1016/j.jcp.2017.04.014 +Naoufel Ben Abdallah,A deterministic solver for a hybrid quantum-classical transport model in nanoMOSFETs.,2009,228,J. Comput. Physics,17,db/journals/jcphy/jcphy228.html#AbdallahCCV09,https://doi.org/10.1016/j.jcp.2009.06.001 +Manuel A. Diaz,A conservative numerical scheme for modeling nonlinear acoustic propagation in thermoviscous homogeneous media.,2018,363,J. Comput. Physics,,db/journals/jcphy/jcphy363.html#DiazSS18,https://doi.org/10.1016/j.jcp.2018.02.005 +Pierre Lallemand,A lattice Boltzmann front-tracking method for interface dynamics with surface tension in two dimensions.,2007,226,J. Comput. Physics,2,db/journals/jcphy/jcphy226.html#LallemandLP07,https://doi.org/10.1016/j.jcp.2007.05.021 +Dinshaw S. Balsara,A two-dimensional HLLC Riemann solver for conservation laws: Application to Euler and magnetohydrodynamic flows.,2012,231,J. Comput. Physics,22,db/journals/jcphy/jcphy231.html#Balsara12,https://doi.org/10.1016/j.jcp.2011.12.025 +J. P. Pontaza,A new consistent splitting scheme for incompressible Navier-Stokes flows: A least-squares spectral element implementation.,2007,225,J. Comput. Physics,2,db/journals/jcphy/jcphy225.html#Pontaza07,https://doi.org/10.1016/j.jcp.2007.02.009 +Khosro Shahbazi,Robust second-order scheme for multi-phase flow computations.,2017,339,J. Comput. Physics,,db/journals/jcphy/jcphy339.html#Shahbazi17,https://doi.org/10.1016/j.jcp.2017.03.025 +L. H. Han,Scale separation for multi-scale modeling of free-surface and two-phase flows with the conservative sharp interface method.,2015,280,J. Comput. Physics,,db/journals/jcphy/jcphy280.html#Han0A15,https://doi.org/10.1016/j.jcp.2014.10.001 +Dan Gordon 0001,Compact high order schemes with gradient-direction derivatives for absorbing boundary conditions.,2015,297,J. Comput. Physics,,db/journals/jcphy/jcphy297.html#GordonGT15,https://doi.org/10.1016/j.jcp.2015.05.027 +Paraschos Koutris,Algorithmic Aspects of Parallel Data Processing.,2018,8,Foundations and Trends in Databases,4,db/journals/ftdb/ftdb8.html#KoutrisSS18,https://doi.org/10.1561/1900000055 +Ihab F. Ilyas,Trends in Cleaning Relational Data: Consistency and Deduplication.,2015,5,Foundations and Trends in Databases,4,db/journals/ftdb/ftdb5.html#IlyasC15,https://doi.org/10.1561/1900000045 +Rada Chirkova,Materialized Views.,2012,4,Foundations and Trends in Databases,4,db/journals/ftdb/ftdb4.html#ChirkovaY12,https://doi.org/10.1561/1900000020 +Alexandros Labrinidis,Caching and Materialization for Web Databases.,2009,2,Foundations and Trends in Databases,3,db/journals/ftdb/ftdb2.html#LabrinidisLXX09,https://doi.org/10.1561/1900000005 +Daniel Abadi,The Design and Implementation of Modern Column-Oriented Database Systems.,2013,5,Foundations and Trends in Databases,3,db/journals/ftdb/ftdb5.html#AbadiBHIM13,https://doi.org/10.1561/1900000024 +Shivnath Babu,Massively Parallel Databases and MapReduce Systems.,2013,5,Foundations and Trends in Databases,1,db/journals/ftdb/ftdb5.html#BabuH13,https://doi.org/10.1561/1900000036 +Amol Deshpande,Adaptive Query Processing.,2007,1,Foundations and Trends in Databases,1,db/journals/ftdb/ftdb1.html#DeshpandeIR07,https://doi.org/10.1561/1900000001 +Marios Hadjieleftheriou,Approximate String Processing.,2011,2,Foundations and Trends in Databases,4,db/journals/ftdb/ftdb2.html#Hadjieleftheriou11,https://doi.org/10.1561/1900000010 +Haowen Chan,Secure Distributed Data Aggregation.,2011,3,Foundations and Trends in Databases,3,db/journals/ftdb/ftdb3.html#ChanHPS11,https://doi.org/10.1561/1900000025 +Sunita Sarawagi,Information Extraction.,2008,1,Foundations and Trends in Databases,3,db/journals/ftdb/ftdb1.html#Sarawagi08,https://doi.org/10.1561/1900000003 +Joseph M. Hellerstein,Architecture of a Database System.,2007,1,Foundations and Trends in Databases,2,db/journals/ftdb/ftdb1.html#HellersteinSH07,https://doi.org/10.1561/1900000002 +Todd J. Green,Datalog and Recursive Query Processing.,2013,5,Foundations and Trends in Databases,2,db/journals/ftdb/ftdb5.html#GreenHLZ13,https://doi.org/10.1561/1900000017 +Goetz Graefe,Modern B-Tree Techniques.,2011,3,Foundations and Trends in Databases,4,db/journals/ftdb/ftdb3.html#Graefe11,https://doi.org/10.1561/1900000028 +Thomas Heinis,Data Infrastructure for Medical Research.,2017,8,Foundations and Trends in Databases,3,db/journals/ftdb/ftdb8.html#HeinisA17,https://doi.org/10.1561/1900000050 +Gabriel Reyes,SynchroWatch: One-Handed Synchronous Smartwatch Gestures Using Correlation and Magnetic Sensing.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#ReyesWJGEAS17,http://doi.acm.org/10.1145/3161162 +Sinh Huynh,EngageMon: Multi-Modal Engagement Sensing for Mobile Games.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#HuynhKKBL18,http://doi.acm.org/10.1145/3191745 +Rummana Bari,rConverse: Moment by Moment Conversation Detection Using a Mobile Respiration Sensor.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#BariARPBK18,http://doi.acm.org/10.1145/3191734 +Chih-Hsiang Hsu,iTour: Making Tourist Maps GPS-Enabled.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#HsuKCWTCYHL17,http://doi.acm.org/10.1145/3161167 +Shichao Yue,Extracting Multi-Person Respiration from Entangled RF Signals.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#YueHWRK18,http://doi.acm.org/10.1145/3214289 +Reham Mohamed,HeartSense: Ubiquitous Accurate Multi-Modal Fusion-based Heart Rate Estimation Using Smartphones.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#MohamedY17,http://doi.acm.org/10.1145/3132028 +Suiming Guo,Modelling Passengers' Reaction to Dynamic Prices in Ride-on-demand Services: A Search for the Best Fare.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#GuoCLXC17,http://doi.acm.org/10.1145/3161194 +Carlos Ruiz,IDrone: Robust Drone Identification through Motion Actuation Feedback.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#RuizPBCJNZ18,http://doi.acm.org/10.1145/3214283 +Callum Parker,Does the Public Still Look at Public Displays?: A Field Observation of Public Displays in the Wild.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#ParkerTK18,http://doi.acm.org/10.1145/3214276 +Ruilin Liu,Your Search Path Tells Others Where to Park: Towards Fine-Grained Parking Availability Crowdsourcing Using Parking Decision Models.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#LiuYKHIN17,http://doi.acm.org/10.1145/3130942 +Moon-Hwan Lee,Flower-Pop: Facilitating Casual Group Conversations With Multiple Mobile Devices.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#LeeRSLKJMN17,http://doi.acm.org/10.1145/3161170 +Marc Tonsen,InvisibleEye: Mobile Eye Tracking Using Multiple Low-Resolution Cameras and Learning-Based Gaze Estimation.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#TonsenSSB17,http://doi.acm.org/10.1145/3130971 +Katrin Plaumann,Improving Input Accuracy on Smartphones for Persons who are Affected by Tremor using Motion Sensors.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#PlaumannBDHSR17,http://doi.acm.org/10.1145/3161169 +Raghav H. Venkatnarayan,Gesture Recognition Using Ambient Light.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#VenkatnarayanS18,http://doi.acm.org/10.1145/3191772 +Chen-Yu Hsu,Zero-Effort In-Home Sleep and Insomnia Monitoring using Radio Signals.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#HsuAYHKK17,http://doi.acm.org/10.1145/3130924 +Fusang Zhang,From Fresnel Diffraction Model to Fine-grained Human Respiration Sensing with Commodity Wi-Fi Devices.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#ZhangZXWNJW18,http://doi.acm.org/10.1145/3191785 +Daniel Groeger,ObjectSkin: Augmenting Everyday Objects with Hydroprinted Touch Sensors and Displays.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#GroegerS17,http://doi.acm.org/10.1145/3161165 +Nikola Banovic,Warming Up to Cold Start Personalization.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#BanovicK17,http://doi.acm.org/10.1145/3161175 +Andrew M. Carek,SeismoWatch: Wearable Cuffless Blood Pressure Monitoring Using Pulse Transit Time.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#CarekCJKI17,http://doi.acm.org/10.1145/3130905 +Chouchang Yang,EM-Comm: Touch-based Communication via Modulated Electromagnetic Emissions.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#YangS17,http://doi.acm.org/10.1145/3130984 +Mahmoud Hassan,FootStriker: An EMS-based Foot Strike Assistant for Running.,2017,1,IMWUT,1,db/journals/imwut/imwut1.html#HassanDWKK17,http://doi.acm.org/10.1145/3053332 +Tian Hao,MindfulWatch: A Smartwatch-Based System For Real-Time Respiration Monitoring During Meditation.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#HaoBXCT17,http://doi.acm.org/10.1145/3130922 +Liang Liu 0001,Third-Eye: A Mobilephone-Enabled Crowdsensing System for Air Quality Monitoring.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#LiuLZMZ18,http://doi.acm.org/10.1145/3191752 +Tim Duente,MuscleIO: Muscle-Based Input and Output for Casual Notifications.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#DuenteSPR18,http://doi.acm.org/10.1145/3214267 +Tran Huy Vu,Smartwatch-based Early Gesture Detection 8 Trajectory Tracking for Interactive Gesture-Driven Applications.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#VuMRCL18,http://doi.acm.org/10.1145/3191771 +Yu Yang,SharedEdge: GPS-Free Fine-Grained Travel Time Estimation in State-Level Highway Systems.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#YangZZ18,http://doi.acm.org/10.1145/3191780 +Landu Jiang,SafeDrive: Detecting Distracted Driving Behaviors Using Wrist-Worn Devices.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#JiangLLBX17,http://doi.acm.org/10.1145/3161179 +Xiao Zhang,MoodExplorer: Towards Compound Emotion Detection via Smartphone Sensing.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#ZhangLCL17,http://doi.acm.org/10.1145/3161414 +Ryo Imai,Early Destination Prediction with Spatio-temporal User Behavior Patterns.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#ImaiTKS17,http://doi.acm.org/10.1145/3161197 +Isaac L. Johnson,Beautiful...but at What Cost?: An Examination of Externalities in Geographic Vehicle Routing.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#JohnsonHPSH17,http://doi.acm.org/10.1145/3090080 +Alessandro Montanari,Detecting Emerging Activity-Based Working Traits through Wearable Technology.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#MontanariMSN17,http://doi.acm.org/10.1145/3130951 +Noah Apthorpe,Discovering Smart Home Internet of Things Privacy Norms Using Contextual Integrity.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#ApthorpeSMRF18,http://doi.acm.org/10.1145/3214262 +Gregory D. Abowd,Editorial.,2017,1,IMWUT,1,db/journals/imwut/imwut1.html#AbowdKSSY17,http://doi.acm.org/10.1145/3075960 +Vaishnavi Ranganathan,RF Bandaid: A Fully-Analog and Passive Wireless Interface for Wearable Sensors.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#RanganathanGLST18,http://doi.acm.org/10.1145/3214282 +Saksham Chitkara,Does this App Really Need My Location?: Context-Aware Privacy Management for Smartphones.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#ChitkaraGHHA17,http://doi.acm.org/10.1145/3132029 +Mohamed Khamis,EyePACT: Eye-Based Parallax Correction on Touch-Enabled Interactive Displays.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#KhamisBTAB17,http://doi.acm.org/10.1145/3161168 +Bin Guo,CrowdStory: Fine-Grained Event Storyline Generation by Fusion of Multi-Modal Crowdsourced Data.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#GuoOZZYWW17,http://doi.acm.org/10.1145/3130920 +Yiqin Lu,BlindType: Eyes-Free Text Entry on Handheld Touchpad by Leveraging Thumb's Muscle Memory.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#LuYYSZ17,http://doi.acm.org/10.1145/3090083 +Liang Wang 0006,SpiderWalk: Circumstance-aware Transportation Activity Detection Using a Novel Contact Vibration Sensor.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#WangCPGWTL18,http://doi.acm.org/10.1145/3191774 +Kazuya Ohara,Detecting State Changes of Indoor Everyday Objects using Wi-Fi Channel State Information.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#OharaMM17,http://doi.acm.org/10.1145/3131898 +Cheng Zhang,SoundTrak: Continuous 3D Tracking of a Finger Using Active Acoustics.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#ZhangXWJPHLCIA17,http://doi.acm.org/10.1145/3090095 +Samiha Samrose,CoCo: Collaboration Coach for Understanding Team Dynamics during Video Conferencing.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#SamroseZWLNLAH17,http://doi.acm.org/10.1145/3161186 +Simon Butscher,InformationSense: Trade-offs for the Design and the Implementation of a Large Highly Deformable Cloth Display.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#ButscherDR17,http://doi.acm.org/10.1145/3090053 +Aftab Khan,Activity Recognition for Quality Assessment of Batting Shots in Cricket using a Hierarchical Representation.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#KhanNP17,http://doi.acm.org/10.1145/3130927 +Sam Mitchell Finnigan,Augmenting Audits: Exploring the Role of Sensor Toolkits in Sustainable Buildings Management.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#FinniganCFLC17,http://doi.acm.org/10.1145/3090075 +Balz Maag,W-Air: Enabling Personal Air Pollution Monitoring on Wearables.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#MaagZT18,http://doi.acm.org/10.1145/3191756 +Xuan Lu,PRADO: Predicting App Adoption by Learning the Correlation between Developer-Controllable Properties and User Behaviors.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#LuCLLXM17,http://doi.acm.org/10.1145/3130944 +Malcolm Haynes,Effects of Lateral Eye Displacement on Comfort While Reading from a Video Display Terminal.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#HaynesS17,http://doi.acm.org/10.1145/3161177 +Vuong Thanh Tung,Watching inside the Screen: Digital Activity Monitoring for Task Recognition and Proactive Information Retrieval.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#TungJR17,http://doi.acm.org/10.1145/3130974 +Nazmus Saquib,Sensei: Sensing Educational Interaction.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#SaquibBGK17,http://doi.acm.org/10.1145/3161172 +Siyuan Cao,Enabling Public Cameras to Talk to the Public.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#CaoW18,http://doi.acm.org/10.1145/3214266 +Florian Schaule,Employing Consumer Wearables to Detect Office Workers' Cognitive Load for Interruption Management.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#SchauleJBL18,http://doi.acm.org/10.1145/3191764 +Lawrence H. Kim,UbiSwarm: Ubiquitous Robotic Interfaces and Investigation of Abstract Motion as a Display.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#KimF17,http://doi.acm.org/10.1145/3130931 +Yinghui Li,Gazture: Design and Implementation of a Gaze based Gesture Control System on Tablets.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#LiCW17,http://doi.acm.org/10.1145/3130939 +Shuochao Yao,RDeepSense: Reliable Deep Mobile Computing Models with Uncertainty Estimations.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#YaoZSZZLA17,http://doi.acm.org/10.1145/3161181 +Sangwon Bae,Detecting Drinking Episodes in Young Adults Using Smartphone-based Sensors.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#BaeFSPKCD17,http://doi.acm.org/10.1145/3090051 +Jan Kucera,Towards Calm Displays: Matching Ambient Illumination in Bedrooms.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#KuceraSCOH17,http://doi.acm.org/10.1145/3090081 +Fannie Liu,Supporting Social Interactions with an Expressive Heart Rate Sharing Application.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#LiuDK17,http://doi.acm.org/10.1145/3130943 +Gaurav Paruthi,Finding the Sweet Spot(s): Understanding Context to Support Physical Activity Plans.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#ParuthiRCKN18,http://doi.acm.org/10.1145/3191761 +Petko Georgiev,Low-resource Multi-task Audio Sensing for Mobile and Embedded Devices via Shared Deep Neural Network Representations.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#GeorgievBLM17,http://doi.acm.org/10.1145/3131895 +Kohei Matsumura,On Active Passengering: Supporting In-Car Experiences.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#MatsumuraK17,http://doi.acm.org/10.1145/3161176 +Yang Xu,WiStep: Device-free Step Counting with WiFi Signals.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#XuYWZLH17,http://doi.acm.org/10.1145/3161415 +Yuanying Chen,Rapid: A Multimodal and Device-free Approach Using Noise Estimation for Robust Person Identification.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#ChenDGLG17,http://doi.acm.org/10.1145/3130906 +Xiao Wang,XRec: Behavior-Based User Recognition Across Mobile Devices.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#WangYZT17,http://doi.acm.org/10.1145/3130975 +Lie Ming Tang,Defining Adherence: Making Sense of Physical Activity Tracker Data.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#TangMEBEBK18,http://doi.acm.org/10.1145/3191769 +Chu Luo,TestAWARE: A Laboratory-Oriented Testing Tool for Mobile Context-Aware Applications.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#LuoKKFFGMK17,http://doi.acm.org/10.1145/3130945 +Yuxiang Lin,Calibrating Low-Cost Sensors by a Two-Phase Learning Approach for Urban Air Quality Measurement.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#LinDC18,http://doi.acm.org/10.1145/3191750 +Keum San Chun,Detecting Eating Episodes by Tracking Jawbone Movements with a Non-Contact Wearable Sensor.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#ChunBT18,http://doi.acm.org/10.1145/3191736 +Jing Qian,Remotion: A Motion-Based Capture and Replay Platform of Mobile Device Interaction for Remote Usability Testing.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#QianCPYNH18,http://doi.acm.org/10.1145/3214280 +Rui Wang,Tracking Depression Dynamics in College Students Using Mobile Phone and Wearable Sensing.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#WangWdHKHC18,http://doi.acm.org/10.1145/3191775 +Christian Holz,Glabella: Continuously Sensing Blood Pressure Behavior using an Unobtrusive Wearable Device.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#HolzW17,http://doi.acm.org/10.1145/3132024 +Corey Brian Jackson,Addressing The Privacy Paradox through Personalized Privacy Notifications.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#JacksonW18,http://doi.acm.org/10.1145/3214271 +Lie Ming Tang,Harnessing Long Term Physical Activity Data - How Long-term Trackers Use Data and How an Adherence-based Interface Supports New Insights.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#TangK17,http://doi.acm.org/10.1145/3090091 +Weixi Gu,SugarMate: Non-intrusive Blood Glucose Monitoring with Smartphones.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#GuZZLZZSZ17,http://doi.acm.org/10.1145/3130919 +Joan-Isaac Biel,Bites'n'Bits: Inferring Eating Behavior from Contextual Mobile Data.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#BielMLG17,http://doi.acm.org/10.1145/3161161 +Xuehan Ye,Accurate and Efficient Indoor Location by Dynamic Warping in Sequence-Type Radio-map.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#YeWGHL18,http://doi.acm.org/10.1145/3191782 +Kaifei Chen,SnapLink: Fast and Accurate Vision-Based Appliance Control in Large Commercial Buildings.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#ChenFKKJCK17,http://doi.acm.org/10.1145/3161173 +Zheng Lu 0005,Inferring Correlation between User Mobility and App Usage in Massive Coarse-grained Data Traces.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#LuFZLC17,http://doi.acm.org/10.1145/3161171 +Xiaojie Wu,Cost-Sensitive Semi-Supervised Personalized Semantic Place Label Recognition Using Multi-Context Data.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#WuCLHC17,http://doi.acm.org/10.1145/3131903 +Di Wu 0002,From Intermittent to Ubiquitous: Enhancing Mobile Access to Online Social Networks with Opportunistic Optimization.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#WuAPLGL17,http://doi.acm.org/10.1145/3130979 +Yiqing Hu,Lightitude: Indoor Positioning Using Uneven Light Intensity Distribution.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#HuXHLYZM18,http://doi.acm.org/10.1145/3214270 +Valentin Radu,Multimodal Deep Learning for Activity and Context Recognition.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#RaduTBLMMK17,http://doi.acm.org/10.1145/3161174 +Ru Zhao,Semi-Automated 8 Collaborative Online Training Module for Improving Communication Skills.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#ZhaoLBGH17,http://doi.acm.org/10.1145/3090097 +Thivya Kandappu,Obfuscation At-Source: Privacy in Context-Aware Mobile Crowd-Sourcing.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#KandappuMCTL18,http://doi.acm.org/10.1145/3191748 +Peter Washington,SuperpowerGlass: A Wearable Aid for the At-Home Therapy of Children with Autism.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#WashingtonVKHDF17,http://doi.acm.org/10.1145/3130977 +Tianxing Li,Reconstructing Hand Poses Using Visible Light.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#LiXXHYZ17,http://doi.acm.org/10.1145/3130937 +Li Yan 0004,Employing Opportunistic Charging for Electric Taxicabs to Reduce Idle Time.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#YanSLSSQZX18,http://doi.acm.org/10.1145/3191779 +Keunseo Kim,TrailSense: A Crowdsensing System for Detecting Risky Mountain Trail Segments with Walking Pattern Analysis.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#KimZKL17,http://doi.acm.org/10.1145/3131893 +David Beattie,Exploring How Drivers Perceive Spatial Earcons in Automated Vehicles.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#BeattieBH17,http://doi.acm.org/10.1145/3130901 +Su Yang,Predicting Commercial Activeness over Urban Big Data.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#YangWWSGZZ17,http://doi.acm.org/10.1145/3130983 +Ha Trinh,RoboCOP: A Robotic Coach for Oral Presentations.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#TrinhAEB17,http://doi.acm.org/10.1145/3090092 +Liangying Peng,AROMA: A Deep Multi-Task Learning Based Simple and Complex Human Activity Recognition Method Using Wearable Sensors.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#PengCYZ18,http://doi.acm.org/10.1145/3214277 +Alex Mariakakis,BiliScreen: Smartphone-Based Scleral Jaundice Monitoring for Liver and Pancreatic Disorders.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#MariakakisBPYTP17,http://doi.acm.org/10.1145/3090085 +Virag Varga,Enabling Interactive Infrastructure with Body Channel Communication.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#VargaVSG17,http://doi.acm.org/10.1145/3161180 +Benjamin H. Groh,Automated Ski Velocity and Jump Length Determination in Ski Jumping Based on Unobtrusive and Wearable Sensors.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#GrohWDKME17,http://doi.acm.org/10.1145/3130918 +Daniel Buschek,A Comparative Evaluation of Spatial Targeting Behaviour Patterns for Finger and Stylus Tapping on Mobile Touchscreen Devices.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#BuschekKA17,http://doi.acm.org/10.1145/3161160 +Yiran Zhao,VibeBin: A Vibration-Based Waste Bin Level Detection System.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#ZhaoYLHSA17,http://doi.acm.org/10.1145/3132027 +Jacob W. Kamminga,Robust Sensor-Orientation-Independent Feature Selection for Animal Activity Recognition on Collar Tags.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#KammingaLMBMH18,http://doi.acm.org/10.1145/3191747 +Takahiro Hashizume,Auth 'n' Scan: Opportunistic Photoplethysmography in Mobile Fingerprint Authentication.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#HashizumeAY17,http://doi.acm.org/10.1145/3161189 +Matthias Seuter,Running with Technology: Evaluating the Impact of Interacting with Wearable Devices on Running Movement.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#SeuterPBZK17,http://doi.acm.org/10.1145/3130966 +Olivier Augereau,Wordometer Systems for Everyday Life.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#AugereauSKK17,http://doi.acm.org/10.1145/3161601 +Tong Zhan,Capturing the Shifting Shapes: Enabling Efficient Screen-Camera Communication with a Pattern-based Dynamic Barcode.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#ZhanLCL18,http://doi.acm.org/10.1145/3191784 +Yun C. Zhang,Watching the TV Watchers.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#ZhangR18,http://doi.acm.org/10.1145/3214291 +Nivedita Arora,SATURN: A Thin and Flexible Self-powered Microphone Leveraging Triboelectric Nanogenerator.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#AroraZSOWGWSWA18,http://doi.acm.org/10.1145/3214263 +Xingyu Huang,CTS: A Cellular-based Trajectory Tracking System with GPS-level Accuracy.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#HuangLWCXZ17,http://doi.acm.org/10.1145/3161185 +Fengli Xu,Detecting Popular Temporal Modes in Population-scale Unlabelled Trajectory Data.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#XuXCLSM18,http://doi.acm.org/10.1145/3191778 +Eric Whitmire,DigiTouch: Reconfigurable Thumb-to-Finger Input and Text Entry on Head-mounted Displays.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#WhitmireJJNKPG17,http://doi.acm.org/10.1145/3130978 +Ankur Sarker,MORP: Data-Driven Multi-Objective Route Planning and Optimization for Electric Vehicles.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#SarkerSS17,http://doi.acm.org/10.1145/3161408 +David Dobbelstein,PocketThumb: a Wearable Dual-Sided Touch Interface for Cursor-based Control of Smart-Eyewear.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#DobbelsteinWHR17,http://doi.acm.org/10.1145/3090055 +Yu Guan,Ensembles of Deep LSTM Learners for Activity Recognition using Wearables.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#GuanP17,http://doi.acm.org/10.1145/3090076 +Niels van Berkel,Gamification of Mobile Experience Sampling Improves Data Quality and Quantity.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#BerkelGHK17,http://doi.acm.org/10.1145/3130972 +Yuanchun Li,PrivacyStreams: Enabling Transparency in Personal Data Processing for Mobile Apps.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#LiCLGHFAH17,http://doi.acm.org/10.1145/3130941 +Larry Chan,Students' Experiences with Ecological Momentary Assessment Tools to Report on Emotional Well-being.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#ChanSKBAW18,http://doi.acm.org/10.1145/3191735 +Chris Xiaoxuan Lu,Snoopy: Sniffing Your Smartwatch Passwords via Deep Sequence Learning.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#LuDWWMMST17,http://doi.acm.org/10.1145/3161196 +Rajalakshmi Nandakumar,CovertBand: Activity Information Leakage using Music.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#NandakumarTKG17,http://doi.acm.org/10.1145/3131897 +Xiao Sun,SleepMonitor: Monitoring Respiratory Rate and Body Position During Sleep Using Smartwatch.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#SunQWTC17,http://doi.acm.org/10.1145/3130969 +Sumeet Kumar,Rethinking the Future of Wireless Emergency Alerts: A Comprehensive Study of Technical and Conceptual Improvements.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#KumarEIGF18,http://doi.acm.org/10.1145/3214274 +Christopher Clarke,Remote Control by Body Movement in Synchrony with Orbiting Widgets: an Evaluation of TraceMatch.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#ClarkeBEG17,http://doi.acm.org/10.1145/3130910 +Yomna Abdelrahman,Cognitive Heat: Exploring the Usage of Thermal Imaging to Unobtrusively Estimate Cognitive Load.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#AbdelrahmanVDSV17,http://doi.acm.org/10.1145/3130898 +Chenshu Wu,Gain Without Pain: Accurate WiFi-based Localization using Fingerprint Spatial Gradient.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#WuXYLY17,http://doi.acm.org/10.1145/3090094 +Sherry Ruan,Comparing Speech and Keyboard Text Entry for Short Messages in Two Languages on Touchscreen Phones.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#RuanWLNL17,http://doi.acm.org/10.1145/3161187 +Swadhin Pradhan,Smartphone-based Acoustic Indoor Space Mapping.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#PradhanBMQCY18,http://doi.acm.org/10.1145/3214278 +Champika Manel Ranasinghe,Visualizing Location Uncertainty on Mobile Devices: Cross-Cultural Differences in Perceptions and Preferences.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#RanasingheKK18,http://doi.acm.org/10.1145/3191762 +Hancheng Cao,Uniqueness in the City: Urban Morphology and Location Privacy.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#CaoFLK18,http://doi.acm.org/10.1145/3214265 +Longbiao Chen,RADAR: Road Obstacle Identification for Disaster Response Leveraging Cross-Domain Urban Data.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#ChenFWZYLNPW17,http://doi.acm.org/10.1145/3161159 +Nan Yu,QGesture: Quantifying Gesture Distance and Direction with WiFi Signals.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#YuWLK18,http://doi.acm.org/10.1145/3191783 +Asif Salekin,A Weakly Supervised Learning Framework for Detecting Social Anxiety and Depression.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#SalekinEGTS18,http://doi.acm.org/10.1145/3214284 +Abhinav Mehrotra,Understanding the Role of Places and Activities on Mobile Phone Interaction and Usage Patterns.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#MehrotraMHGMMR17,http://doi.acm.org/10.1145/3131901 +Sameera Palipana,FallDeFi: Ubiquitous Fall Detection using Commodity Wi-Fi Devices.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#PalipanaRAP17,http://doi.acm.org/10.1145/3161183 +Yuki Kubo,Exploring Context-Aware User Interfaces for Smartphone-Smartwatch Cross-Device Interaction.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#KuboTST17,http://doi.acm.org/10.1145/3130934 +Hao Wu 0011,CLSTERS: A General System for Reducing Errors of Trajectories Under Challenging Localization Situations.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#WuSZYZ17,http://doi.acm.org/10.1145/3130981 +Xiaoyang Xie,PrivateHunt: Multi-Source Data-Driven Dispatching in For-Hire Vehicle Systems.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#XieZZ18,http://doi.acm.org/10.1145/3191777 +Kai Lukoff,What Makes Smartphone Use Meaningful or Meaningless?,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#LukoffYKH18,http://doi.acm.org/10.1145/3191754 +Yuanchun Li,Mining User Reviews for Mobile App Comparisons.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#LiJGC17,http://doi.acm.org/10.1145/3130935 +Benjamin Finley,Mobile Device Type Substitution.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#FinleyS18,http://doi.acm.org/10.1145/3191740 +Eunji Chong,Detecting Gaze Towards Eyes in Natural Social Interactions and Its Use in Child Assessment.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#ChongCYSRJRR17,http://doi.acm.org/10.1145/3131902 +Erin Griffiths,Privacy-preserving Image Processing with Binocular Thermal Cameras.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#GriffithsAW17,http://doi.acm.org/10.1145/3161198 +Man-Kang Leung,TwistIn: Tangible Authentication of Smart Devices via Motion Co-analysis with a Smartwatch.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#LeungFH18,http://doi.acm.org/10.1145/3214275 +Xiaoyi Fan,TagFree Activity Identification with RFIDs.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#FanGL18,http://doi.acm.org/10.1145/3191739 +Chenyu Huang,BreathLive: Liveness Detection for Heart Sound Authentication with Deep Breathing.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#HuangCYZ18,http://doi.acm.org/10.1145/3191744 +Yehoshua Shuki Cohen,Money Drives: Can Monetary Incentives based on Real-Time Monitoring Improve Driving Behavior?,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#CohenS17,http://doi.acm.org/10.1145/3161417 +Huichu Zhang,Detecting Urban Anomalies Using Multiple Spatio-Temporal Data Sources.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#ZhangZY18,http://doi.acm.org/10.1145/3191786 +Shijia Pan,FootprintID: Indoor Pedestrian Identification through Ambient Structural Vibration Sensing.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#PanYMFBMNZ17,http://doi.acm.org/10.1145/3130954 +Hayeon Jeong,Smartwatch Wearing Behavior Analysis: A Longitudinal Study.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#JeongKKLJ17,http://doi.acm.org/10.1145/3131892 +Morgan Vigil-Hayes,FiDO: A Community-based Web Browsing Agent and CDN for Challenged Network Environments.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#Vigil-HayesBZ17,http://doi.acm.org/10.1145/3132030 +Zhanna Sarsenbayeva,Effect of Distinct Ambient Noise Types on Mobile Interaction.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#SarsenbayevaBVK18,http://doi.acm.org/10.1145/3214285 +Martin Pielot,Beyond Interruptibility: Predicting Opportune Moments to Engage Mobile Phone Users.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#PielotCKSMO17,http://doi.acm.org/10.1145/3130956 +Ceara Byrne,Predicting the Suitability of Service Animals Using Instrumented Dog Toys.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#ByrneZFHSCSJ17,http://doi.acm.org/10.1145/3161184 +Koustuv Saha,Inferring Mood Instability on Social Media by Leveraging Ecological Momentary Assessments.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#SahaCBAC17,http://doi.acm.org/10.1145/3130960 +Lee Stearns,TouchCam: Realtime Recognition of Location-Specific On-Body Gestures to Support Users with Visual Impairments.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#StearnsOFF17,http://doi.acm.org/10.1145/3161416 +Hamish Tennent,Character Actor: Design and Evaluation of Expressive Robot Car Seat Motion.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#TennentMJ17,http://doi.acm.org/10.1145/3161407 +Stephen Uzor,Exploring the Communication of Progress in Home-based Falls Rehabilitation using Exergame Technologies.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#UzorB17,http://doi.acm.org/10.1145/3161195 +Taylan K. Sen,Automated Dyadic Data Recorder (ADDR) Framework and Analysis of Facial Cues in Deceptive Communication.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#SenHTH17,http://doi.acm.org/10.1145/3161178 +Seongmin Ham,QuickTalk: An Association-Free Communication Method for IoT Devices in Proximity.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#HamLL17,http://doi.acm.org/10.1145/3130921 +Milka Trajkova,Takes Tutu to Ballet: Designing Visual and Verbal Feedback for Augmented Mirrors.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#TrajkovaC18,http://doi.acm.org/10.1145/3191770 +Deepak Vasisht,Duet: Estimating User Position and Identity in Smart Homes Using Intermittent and Incomplete RF-Data.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#VasishtJHKK18,http://doi.acm.org/10.1145/3214287 +Robin Brewer,How to Remember What to Remember: Exploring Possibilities for Digital Reminder Systems.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#BrewerML17,http://doi.acm.org/10.1145/3130903 +Vamsi Talla,Battery-Free Cellphone.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#TallaKGS17,http://doi.acm.org/10.1145/3090090 +Inyeop Kim,Let's FOCUS: Mitigating Mobile Phone Use in College Classrooms.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#KimJJKL17,http://doi.acm.org/10.1145/3130928 +Ujwal Gadiraju,Modus Operandi of Crowd Workers: The Invisible Role of Microtask Work Environments.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#GadirajuCGD17,http://doi.acm.org/10.1145/3130914 +Alessandro Montanari,Measuring Interaction Proxemics with Wearable Light Tags.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#MontanariTFLJZM18,http://doi.acm.org/10.1145/3191757 +Jiayao Tan,SilentKey: A New Authentication Framework through Ultrasonic-based Lip Reading.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#TanWNS18,http://doi.acm.org/10.1145/3191768 +Tengxiang Zhang,TouchPower: Interaction-based Power Transfer for Power-as-needed Devices.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#ZhangYYWBS17,http://doi.acm.org/10.1145/3130986 +Shuai Wang 0008,BRAVO: Improving the Rebalancing Operation in Bike Sharing with Rebalancing Range Prediction.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#WangHZSLGLLS18,http://doi.acm.org/10.1145/3191776 +Mozhgan Azimpourkivi,Camera Based Two Factor Authentication Through Mobile and Wearable Devices.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#AzimpourkiviTC17,http://doi.acm.org/10.1145/3131904 +Akhil Mathur,Moving Beyond Market Research: Demystifying Smartphone User Behavior in India.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#MathurKMK17,http://doi.acm.org/10.1145/3130947 +Yongsen Ma,SignFi: Sign Language Recognition Using WiFi.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#MaZWZJ18,http://doi.acm.org/10.1145/3191755 +Jarrod Knibbe,Automatic Calibration of High Density Electric Muscle Stimulation.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#KnibbeSBH17,http://doi.acm.org/10.1145/3130933 +Abhinav Mehrotra,MyTraces: Investigating Correlation and Causation between Users' Emotional States and Mobile Phone Interaction.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#MehrotraTHM17,http://doi.acm.org/10.1145/3130948 +Parastoo Abtahi,Drone Near Me: Exploring Touch-Based Human-Drone Interaction.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#AbtahiZJL17,http://doi.acm.org/10.1145/3130899 +Nitesh Goyal,Intelligent Interruption Management using Electro Dermal Activity based Physiological Sensor for Collaborative Sensemaking.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#GoyalF17,http://doi.acm.org/10.1145/3130917 +Donghan Yu,Smartphone App Usage Prediction Using Points of Interest.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#YuLXZK17,http://doi.acm.org/10.1145/3161413 +Piotr Sapiezynski,Inferring Person-to-person Proximity Using WiFi Signals.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#SapiezynskiSWLL17,http://doi.acm.org/10.1145/3090089 +John Krumm,Urban Impulses: Evoked Responses From Local Event Stimuli.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#Krumm17,http://doi.acm.org/10.1145/3161193 +Shuo Zhang,Understanding Group Event Scheduling via the OutWithFriendz Mobile Application.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#ZhangAGHLM17,http://doi.acm.org/10.1145/3161200 +Jin Lu,Joint Modeling of Heterogeneous Sensing Data for Depression Assessment via Multi-task Learning.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#LuSYMWKBRWB18,http://doi.acm.org/10.1145/3191753 +Yonatan Vaizman,Context Recognition In-the-Wild: Unified Model for Multi-Modal Sensors and Multi-Label Classification.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#VaizmanWL17,http://doi.acm.org/10.1145/3161192 +Cheng Zhang,FingerSound: Recognizing unistroke thumb gestures using a ring.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#ZhangWKPGPSIA17,http://doi.acm.org/10.1145/3130985 +Xinyu Li,Progress Estimation and Phase Detection for Sequential Processes.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#LiZZZCGCMFB17,http://doi.acm.org/10.1145/3130936 +Christian Lander,hEYEbrid: A hybrid approach for mobile calibration-free gaze estimation.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#LanderLK17,http://doi.acm.org/10.1145/3161166 +Chuyu Wang,RF-ECG: Heart Rate Variability Assessment Based on COTS RFID Tag Array.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#WangXWCBL18,http://doi.acm.org/10.1145/3214288 +Jorge Gonçalves,CrowdPickUp: Crowdsourcing Task Pickup in the Wild.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#GoncalvesHBAK17,http://doi.acm.org/10.1145/3130916 +Yuki Uno,Luciola: A Millimeter-Scale Light-Emitting Particle Moving in Mid-Air Based On Acoustic Levitation and Wireless Powering.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#UnoQSIMHKKT17,http://doi.acm.org/10.1145/3161182 +Chuyu Wang,RF-Kinect: A Wearable RFID-based Approach Towards 3D Body Movement Tracking.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#WangLCXLL18,http://doi.acm.org/10.1145/3191773 +Liqiong Chang,RF-Copybook: A Millimeter Level Calligraphy Copybook based on commodity RFID.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#ChangXWCWTF17,http://doi.acm.org/10.1145/3161191 +Zhice Yang,Lightweight Display-to-device Communication Using Electromagnetic Radiation and FM Radio.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#YangZWZ18,http://doi.acm.org/10.1145/3191781 +Andrew Clayphan,Comparing a Single-Touch Whiteboard and a Multi-Touch Tabletop for Collaboration in School Museum Visits.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#ClayphanCKSH18,http://doi.acm.org/10.1145/3191738 +Jan Riemann,FlowPut: Environment-Aware Interactivity for Tangible 3D Objects.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#RiemannSHM18,http://doi.acm.org/10.1145/3191763 +Bin Guo,CityTransfer: Transferring Inter- and Intra-City Knowledge for Chain Store Site Recommendation based on Multi-Source Urban Data.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#GuoLZWY17,http://doi.acm.org/10.1145/3161411 +Vamsi Talla,LoRa Backscatter: Enabling The Vision of Ubiquitous Connectivity.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#TallaHKNSG17,http://doi.acm.org/10.1145/3130970 +Kyle Rector,Eyes-Free Art: Exploring Proxemic Audio Interfaces For Blind and Low Vision Art Engagement.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#RectorSTJM17,http://doi.acm.org/10.1145/3130958 +Rafal Kocielnik,Reflection Companion: A Conversational System for Engaging Users in Reflection on Physical Activity.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#KocielnikXAH18,http://doi.acm.org/10.1145/3214273 +Rafael Ballagas,The Design Space of 3D Printable Interactivity.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#BallagasGL18,http://doi.acm.org/10.1145/3214264 +Vitor F. Rey,Label Propagation: An Unsupervised Similarity Based Method for Integrating New Sensors in Activity Recognition Systems.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#ReyL17,http://doi.acm.org/10.1145/3130959 +Zhanna Sarsenbayeva,Sensing Cold-Induced Situational Impairments in Mobile Interaction Using Battery Temperature.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#SarsenbayevaBVR17,http://doi.acm.org/10.1145/3130963 +Sicong Liu,UbiEar: Bringing Location-independent Sound Awareness to the Hard-of-hearing People with Smartphones.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#LiuZDSHW17,http://doi.acm.org/10.1145/3090082 +Dominik Schürmann,OpenKeychain: An Architecture for Cryptography with Smart Cards and NFC Rings on Android.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#SchurmannDW17,http://doi.acm.org/10.1145/3130964 +Asif Salekin,Distant Emotion Recognition.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#SalekinCALSHBS17,http://doi.acm.org/10.1145/3130961 +Fazlay Rabbi,When Virtual Reality Meets Internet of Things in the Gym: Enabling Immersive Interactive Machine Exercises.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#RabbiPFZL18,http://doi.acm.org/10.1145/3214281 +Rui Wang 0016,Predicting Symptom Trajectories of Schizophrenia using Mobile Sensing.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#WangWABBCCHKSW17,http://doi.acm.org/10.1145/3130976 +Simon Klakegg,Assisted Medication Management in Elderly Care Using Miniaturised Near-Infrared Spectroscopy.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#KlakeggGLVPBSKH18,http://doi.acm.org/10.1145/3214272 +Abdelkareem Bedri,EarBit: Using Wearable Sensors to Detect Eating Episodes in Unconstrained Environments.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#BedriLHKGPBGSA17,http://doi.acm.org/10.1145/3130902 +Alex Mariakakis,PupilScreen: Using Smartphones to Assess Traumatic Brain Injury.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#MariakakisBWMBL17,http://doi.acm.org/10.1145/3131896 +Martin Weigel,DeformWear: Deformation Input on Tiny Wearable Devices.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#WeigelS17,http://doi.acm.org/10.1145/3090093 +Balz Maag,SCAN: Multi-Hop Calibration for Mobile Sensor Arrays.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#MaagZST17,http://doi.acm.org/10.1145/3090084 +Paul Baumann,Every Byte Counts: Selective Prefetching for Mobile Applications.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#BaumannS17,http://doi.acm.org/10.1145/3090052 +Mohamed Abdelaal 0001,ComNSense: Grammar-Driven Crowd-Sourcing of Point Clouds for Automatic Indoor Mapping.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#AbdelaalRDRRBF18,http://doi.acm.org/10.1145/3191733 +Haojian Jin,Towards Wearable Everyday Body-Frame Tracking using Passive RFIDs.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#JinYKH17,http://doi.acm.org/10.1145/3161199 +Christoph Anderson,A Survey of Attention Management Systems in Ubiquitous Computing Environments.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#AndersonHSODP18,http://doi.acm.org/10.1145/3214261 +Avinash Kalyanaraman,Forma Track: Tracking People based on Body Shape.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#KalyanaramanHSW17,http://doi.acm.org/10.1145/3130926 +Arsalan Mosenia,ProCMotive: Bringing Programmability and Connectivity into Isolated Vehicles.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#MoseniaBZMC18,http://doi.acm.org/10.1145/3191758 +Vivek K. Singh,Riskalyzer: Inferring Individual Risk-Taking Propensity Using Phone Metadata.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#SinghGW18,http://doi.acm.org/10.1145/3191766 +Xiaoran Fan,Energy-Ball: Wireless Power Transfer for Batteryless Internet of Things through Distributed Beamforming.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#FanDLSZTHH18,http://doi.acm.org/10.1145/3214268 +Cole Gleason,Crowdsourcing the Installation and Maintenance of Indoor Localization Infrastructure to Support Blind Navigation.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#GleasonASTPAKB18,http://doi.acm.org/10.1145/3191741 +Moses Akazue,Using Thermal Stimuli to Enhance Photo-Sharing in Social Media.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#AkazueHB17,http://doi.acm.org/10.1145/3090050 +Marco Speicher,VRShop: A Mobile Interactive Virtual Reality Shopping Environment Combining the Benefits of On- and Offline Shopping.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#SpeicherCK17,http://doi.acm.org/10.1145/3130967 +Pablo Paredes,Just Breathe: In-Car Interventions for Guided Slow Breathing.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#ParedesZHBMJL18,http://doi.acm.org/10.1145/3191760 +Vikram Iyer,Charging a Smartphone Across a Room Using Lasers.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#IyerBNMG17,http://doi.acm.org/10.1145/3161163 +Aditya Ponnada,Microinteraction Ecological Momentary Assessment Response Rates: Effect of Microinteractions or the Smartwatch?,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#PonnadaHMMI17,http://doi.acm.org/10.1145/3130957 +Wei Gong,SiFi: Pushing the Limit of Time-Based WiFi Localization Using a Single Commodity Access Point.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#GongL18,http://doi.acm.org/10.1145/3191742 +Xiang Li,IndoTrack: Device-Free Indoor Human Tracking with Commodity Wi-Fi.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#LiZLXLZM17,http://doi.acm.org/10.1145/3130940 +Weinan Shi,TOAST: Ten-Finger Eyes-Free Typing on Touchable Surfaces.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#ShiYYLS18,http://doi.acm.org/10.1145/3191765 +Yongtuo Zhang,Continuous Authentication Using Eye Movement Response of Implicit Visual Stimuli.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#ZhangHXCH17,http://doi.acm.org/10.1145/3161410 +Tilman Dingler,Building Cognition-Aware Systems: A Mobile Toolkit for Extracting Time-of-Day Fluctuations of Cognitive Performance.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#DinglerSM17,http://doi.acm.org/10.1145/3132025 +Nediyana Daskalova,Lessons Learned from Two Cohorts of Personal Informatics Self-Experiments.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#DaskalovaDPSSH17,http://doi.acm.org/10.1145/3130911 +Matthias Budde,Participatory Sensing or Participatory Nonsense?: Mitigating the Effect of Human Error on Data Quality in Citizen Science.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#BuddeSHDRB17,http://doi.acm.org/10.1145/3131900 +Ke-Yu Chen,Mago: Mode of Transport Inference Using the Hall-Effect Magnetic Sensor and Accelerometer.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#ChenSHN17,http://doi.acm.org/10.1145/3090054 +Afsaneh Doryab,If It's Convenient: Leveraging Context in Peer-to-Peer Variable Service Transaction Recommendations.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#DoryabBYWCD17,http://doi.acm.org/10.1145/3130913 +H. M. Sajjad Hossain,DeActive: Scaling Activity Recognition with Active Deep Learning.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#HossainKR18,http://doi.acm.org/10.1145/3214269 +Can Liu,Guessing Attacks on User-Generated Gesture Passwords.,2017,1,IMWUT,1,db/journals/imwut/imwut1.html#LiuCL17,http://doi.acm.org/10.1145/3053331 +Milan Jain,Portable+: A Ubiquitous And Smart Way Towards Comfortable Energy Savings.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#JainSC17,http://doi.acm.org/10.1145/3090079 +Rui Liu,Vocal Resonance: Using Internal Body Voice for Wearable Authentication.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#LiuCRPK18,http://doi.acm.org/10.1145/3191751 +Konstantinos Papangelis,Conquering the City: Understanding perceptions of Mobility and Human Territoriality in Location-based Mobile Games.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#PapangelisMSLCC17,http://doi.acm.org/10.1145/3130955 +Zengshi Huang,3DLoc: 3D Features for Accurate Indoor Positioning.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#HuangGHS17,http://doi.acm.org/10.1145/3161409 +Vijay Srinivasan,RuleSelector: Selecting Conditional Action Rules from User Behavior Patterns.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#SrinivasanKJ18,http://doi.acm.org/10.1145/3191767 +Mariella Dimiccoli,Mitigating Bystander Privacy Concerns in Egocentric Activity Recognition with Deep Learning and Intentional Image Degradation.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#DimiccoliMT17,http://doi.acm.org/10.1145/3161190 +Nan Zhao,Mediated Atmospheres: A Multimodal Mediated Work Environment.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#ZhaoAP17,http://doi.acm.org/10.1145/3090096 +Masato Sugasaki,Robust Indoor Localization across Smartphone Models with Ellipsoid Features from Multiple RSSIs.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#SugasakiS17,http://doi.acm.org/10.1145/3130968 +Caitlyn E. Seim,Passive Haptic Training to Improve Speed and Performance on a Keypad.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#SeimDZSS17,http://doi.acm.org/10.1145/3132026 +Maotian Zhang,iDial: Enabling a Virtual Dial Plate on the Hand Back for Around-Device Interaction.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#ZhangDYXTX18,http://doi.acm.org/10.1145/3191787 +Kundan Krishna,An LSTM Based System for Prediction of Human Activities with Durations.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#KrishnaJMC17,http://doi.acm.org/10.1145/3161201 +Takahiro Yabe,CityFlowFragility: Measuring the Fragility of People Flow in Cities to Disasters using GPS Data Collected from Smartphones.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#YabeTS17,http://doi.acm.org/10.1145/3130982 +Renhe Jiang,Deep ROI-Based Modeling for Urban Human Mobility Prediction.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#JiangSFXCCS18,http://doi.acm.org/10.1145/3191746 +Masato Nomiyama,Xnavi: Travel Planning System Based on Experience Flows.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#NomiyamaTOTNH18,http://doi.acm.org/10.1145/3191759 +Xinye Lin,SHOW: Smart Handwriting on Watches.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#LinCCLW17,http://doi.acm.org/10.1145/3161412 +Chen Song,My Smartphone Recognizes Genuine QR Codes!: Practical Unclonable QR Code via 3D Printing.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#SongLXZJR18,http://doi.acm.org/10.1145/3214286 +Jaejeung Kim,Technology Supported Behavior Restriction for Mitigating Self-Interruptions in Multi-device Environments.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#KimCL17,http://doi.acm.org/10.1145/3130932 +Young-Ho Kim,OmniTrack: A Flexible Self-Tracking Approach Leveraging Semi-Automated Tracking.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#KimJLCS17,http://doi.acm.org/10.1145/3130930 +Yu Zhang 0034,FinDroidHR: Smartwatch Gesture Input with Optical Heartrate Monitor.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#ZhangGLKS18,http://doi.acm.org/10.1145/3191788 +Saumay Pushp,PrivacyShield: A Mobile System for Supporting Subtle Just-in-time Privacy Provisioning through Off-Screen-based Touch Gestures.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#PushpLXKS18,http://doi.acm.org/10.1145/3214279 +Mark Mirtchouk,Recognizing Eating from Body-Worn Sensors: Combining Free-living and Laboratory Data.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#MirtchoukLSCZK17,http://doi.acm.org/10.1145/3131894 +Tianben Wang,C-FMCW Based Contactless Respiration Detection Using Acoustic Signal.,2017,1,IMWUT,4,db/journals/imwut/imwut1.html#WangZZGZD17,http://doi.acm.org/10.1145/3161188 +Myeongcheol Kwak,An Energy-efficient and Lightweight Indoor Localization System for Internet-of-Things (IoT) Environments.,2018,2,IMWUT,1,db/journals/imwut/imwut2.html#KwakPKHK18,http://doi.acm.org/10.1145/3191749 +Rostaminia Soha,iLid: Low-power Sensing of Fatigue and Drowsiness Measures on a Computational Eyeglass.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#SohaMGMG17,http://doi.acm.org/10.1145/3090088 +Sugang Li,Auto++: Detecting Cars Using Embedded Microphones in Real-Time.,2017,1,IMWUT,3,db/journals/imwut/imwut1.html#LiFZTLH17,http://doi.acm.org/10.1145/3130938 +Jeremy Gummeson,RFID Light Bulb: Enabling Ubiquitous Deployment of Interactive RFID Systems.,2017,1,IMWUT,2,db/journals/imwut/imwut1.html#GummesonMYRHS17,http://doi.acm.org/10.1145/3090077 +Xiao Zhang 0008,Touch Sense: Touch Screen Based Mental Stress Sense.,2018,2,IMWUT,2,db/journals/imwut/imwut2.html#ZhangLLZYYS18,http://doi.acm.org/10.1145/3214290 +Shuyu Sun 0001,A Locally Conservative Finite Element Method Based on Piecewise Constant Enrichment of the Continuous Galerkin Method.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#SunL09,https://doi.org/10.1137/080722953 +Mo Mu,A Grid-Based Subtree-Subcube Assignment Strategy for Solving Partial Differential Equations on Hypercubes.,1992,13,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc13.html#MuR92,https://doi.org/10.1137/0913049 +Philip J. Rasch,On Shape-Preserving Interpolation and Semi-Lagrangian Transport.,1990,11,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc11.html#RaschW90,https://doi.org/10.1137/0911039 +Lorenz Berger,Stabilized Lowest-Order Finite Element Approximation for Linear Three-Field Poroelasticity.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#BergerBKT15,https://doi.org/10.1137/15M1009822 +P. Batten,On the Choice of Wavespeeds for the HLLC Riemann Solver.,1997,18,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc18.html#BattenCLC97,https://doi.org/10.1137/S1064827593260140 +Bruno Lang,Using Level 3 BLAS in Rotation-Based Algorithms.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#Lang98,https://doi.org/10.1137/S1064827595280211 +Michael Junk,Discretizations for the Incompressible Navier-Stokes Equations Based on the Lattice Boltzmann Method.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#JunkK00,https://doi.org/10.1137/S1064827599357188 +John W. Ruge,A Nonlinear Multigrid Solver for a Semi-Lagrangian Potential Vorticity-Based Shallow-Water Model on the Sphere.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#RugeLMBB00,https://doi.org/10.1137/S1064827595284841 +Barry Joe,Construction of K-Dimensional Delaunay Triangulations Using Local Transformations.,1993,14,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc14.html#Joe93,https://doi.org/10.1137/0914083 +Eid H. Doha,Efficient Spectral-Galerkin Algorithms for Direct Solution of Second-Order Equations Using Ultraspherical Polynomials.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#DohaA02,https://doi.org/10.1137/S1064827500378933 +Martin J. Gander,Optimized Schwarz Methods with Overlap for the Helmholtz Equation.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#GanderZ16,https://doi.org/10.1137/15M1021659 +Kazufumi Ito,A Regularization Parameter for Nonsmooth Tikhonov Regularization.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#ItoJT11,https://doi.org/10.1137/100790756 +Franco Dassi,A Novel Surface Remeshing Scheme via Radial Basis Functions and Higher-Dimensional Embedding.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#DassiFS17,https://doi.org/10.1137/16M1077015 +J. L. Peterson,Positivity Preservation and Advection Algorithms with Applications to Edge Plasma Turbulence.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#PetersonH13,https://doi.org/10.1137/120888053 +Tugrul Dayar,On Vector-Kronecker Product Multiplication with Rectangular Factors.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#DayarO15,https://doi.org/10.1137/140980326 +Barry F. Smith,An Optimal Domain Decomposition Preconditioner for the Finite Element Solution of Linear Elasticity Problems.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#Smith92,https://doi.org/10.1137/0913019 +David F. Gleich,An Inner-Outer Iteration for Computing PageRank.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#GleichGGL10,https://doi.org/10.1137/080727397 +Xiao-Chuan Cai,Domain Decomposition Algorithms for Indefinite Elliptic Problems.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#CaiW92,https://doi.org/10.1137/0913013 +Sven Beuchler,Extension Operators on Tensor Product Structures in Two and Three Dimensions.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#Beuchler05,https://doi.org/10.1137/040605151 +Raymond H. Chan,Fast Multilevel Algorithm for a Minimization Problem in Impulse Noise Removal.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#ChanC08,https://doi.org/10.1137/060654931 +Lars Ferm,Two-Grid Solution of Shock Problems.,1997,18,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc18.html#FermL97,https://doi.org/10.1137/S1064827595280429 +Rebecka Tumblin,Parallel Compact Hash Algorithms for Computational Meshes.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#TumblinAHR15,https://doi.org/10.1137/13093371X +Wansheng Wang,Stability Analysis of Theta-Methods for Nonlinear Neutral Functional Differential Equations.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#WangL08,https://doi.org/10.1137/060654116 +Jens Georg Schmidt,An A Posteriori Error Estimator for the FEM in Nonlinear Elastostatics.,2003,24,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc24.html#Schmidt03,https://doi.org/10.1137/S1064827501384238 +Michael Baudin,A Semi-implicit Relaxation Scheme for Modeling Two-Phase Flow in a Pipeline.,2005,27,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc27.html#BaudinCT05,https://doi.org/10.1137/030601624 +Marie Billaud Friess,Dynamical Model Reduction Method for Solving Parameter-Dependent Dynamical Systems.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#FriessN17,https://doi.org/10.1137/16M1071493 +Stuart C. Hawkins,An Implicit Wavelet Sparse Approximate Inverse Preconditioner.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#HawkinsC05,https://doi.org/10.1137/S1064827503423500 +Martin Hanke,A General Heuristic for Choosing the Regularization Parameter in Ill-Posed Problems.,1996,17,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc17.html#HankeR96,https://doi.org/10.1137/0917062 +Shi Shu,Multilevel Preconditioning Methods for Discrete Models of Lattice Block Materials.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#ShuBXXZ08,https://doi.org/10.1137/070684203 +Martin J. Gander,Analysis of a New Space-Time Parallel Multigrid Algorithm for Parabolic Problems.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#GanderN16,https://doi.org/10.1137/15M1046605 +Paul M. de Zeeuw,Nonlinear Multigrid Applied to a One-Dimensional Stationary Semiconductor Model.,1992,13,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc13.html#Zeeuw92,https://doi.org/10.1137/0913028 +C. T. Kelley,Multilevel Algorithms for Constrained Compact Fixed Point Problems.,1994,15,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc15.html#KelleyS94,https://doi.org/10.1137/0915042 +Cédric Chauvière,A New Method for Micro-Macro Simulations of Viscoelastic Flows.,2002,23,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc23.html#Chauviere02,https://doi.org/10.1137/S1064827501384603 +Eugene Vecharynski,Preconditioned Locally Harmonic Residual Method for Computing Interior Eigenpairs of Certain Classes of Hermitian Matrices.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#VecharynskiK15,https://doi.org/10.1137/14098048X +Kevin R. Long,Unified Embedded Parallel Finite Element Computations via Software-Based Fr[e-acute]chet Differentiation.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#LongKW10,https://doi.org/10.1137/09076920X +Weizhu Bao,Numerical Study of Time-Splitting Spectral Discretizations of Nonlinear Schrödinger Equations in the Semiclassical Regimes.,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#BaoJM03,https://doi.org/10.1137/S1064827501393253 +J. H. Adler,Island Coalescence Using Parallel First-Order System Least Squares on Incompressible Resistive Magnetohydrodynamics.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#AdlerBMMRT13,https://doi.org/10.1137/120880227 +Cris Cecka,Fourier-Based Fast Multipole Method for the Helmholtz Equation.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#CeckaD13,https://doi.org/10.1137/11085774X +Qinghai Zhang,A Fourth-Order Accurate Finite-Volume Method with Structured Adaptive Mesh Refinement for Solving the Advection-Diffusion Equation.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#ZhangJC12,https://doi.org/10.1137/110820105 +Stefano Berrone,A Parallel Solver for Large Scale DFN Flow Simulations.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#BerronePSV15,https://doi.org/10.1137/140984014 +Kenneth Eriksson,Explicit Time-Stepping for Stiff ODEs.,2004,25,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc25.html#ErikssonJL04,https://doi.org/10.1137/S1064827502409626 +Mark Ainsworth,Bernstein-Bézier Finite Elements of Arbitrary Order and Optimal Assembly Procedures.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#AinsworthAD11,https://doi.org/10.1137/11082539X +Marco Picasso,A Numerical Study of Some Hessian Recovery Techniques on Isotropic and Anisotropic Meshes.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#PicassoABG11,https://doi.org/10.1137/100798715 +John Loffeld,Implementation of Parallel Adaptive-Krylov Exponential Solvers for Stiff Problems.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#LoffeldT14,https://doi.org/10.1137/13094462X +B. Lee,A Multigrid Framework for Sn Discretizations of the Boltzmann Transport Equation.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#Lee12,https://doi.org/10.1137/110841199 +Jian Liang,Solving Partial Differential Equations on Point Clouds.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#LiangZ13,https://doi.org/10.1137/120869730 +Zdzislaw Jackiewicz,Determination of Optimal Parameters for the Chebyshev-Gegenbauer Reconstruction Method.,2004,25,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc25.html#Jackiewicz04,https://doi.org/10.1137/S1064827503423597 +H. W. Tam,Two-Stage Parallel Methods for the Numerical Solution of Ordinary Differential Equations.,1992,13,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc13.html#Tam92a,https://doi.org/10.1137/0913062 +Carl T. Kelley,Fast Algorithms for Compact Fixed Point Problems with Inexact Function Evaluations.,1991,12,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc12.html#KelleyS91,https://doi.org/10.1137/0912038 +Arta A. Jamshidi,A Recursive Local Polynomial Approximation Method Using Dirichlet Clouds and Radial Basis Functions.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#JamshidiP16,https://doi.org/10.1137/15M1008592 +Stephen G. Walker,Sampling Unnormalized Probabilities: An Alternative to the Metropolis-Hastings Algorithm.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#Walker14,https://doi.org/10.1137/130922549 +Faker Ben Belgacem,Approximation of the Wave and Electromagnetic Diffusion Equations by Spectral Method.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#BelgacemG98,https://doi.org/10.1137/S1064827595294344 +Bernardo Cockburn,A Hybridizable Discontinuous Galerkin Method for Steady-State Convection-Diffusion-Reaction Problems.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#CockburnDGRS09,https://doi.org/10.1137/080728810 +Geng Yang,Inexact Block Jacobi-Broyden Methods for Solving Nonlinear Systems of Equations.,1997,18,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc18.html#YangDF97,https://doi.org/10.1137/S1064827595285172 +Jingzhi Li,Multilevel Linear Sampling Method for Inverse Scattering Problems.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#LiLZ08,https://doi.org/10.1137/060674247 +Marylesa Howard,Bayesian Abel Inversion in Quantitative X-Ray Radiography.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#HowardFLMH16,https://doi.org/10.1137/15M1018721 +Shang-Hong Lai,Generalized Capacitance Matrix Theorems and Algorithm for Solving Linear Systems.,1998,19,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc19.html#LaiV98,https://doi.org/10.1137/S1064827595283653 +Kui Ren,Frequency Domain Optical Tomography Based on the Equation of Radiative Transfer.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#RenBH06,https://doi.org/10.1137/040619193 +G. N. Milstein,Mean-Square Numerical Methods for Stochastic Differential Equations with Small Noises.,1997,18,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc18.html#MilsteinT97,https://doi.org/10.1137/S1064827594278575 +Thomas F. Coleman,Solving Systems of Nonlinear Equations on a Message-Passing Multiprocessor.,1990,11,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc11.html#ColemanL90,https://doi.org/10.1137/0911063 +Neil N. Carlson,Design and Application of a Gradient-Weighted Moving Finite Element Code I: in One Dimension.,1998,19,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc19.html#CarlsonM98,https://doi.org/10.1137/S106482759426955X +Shinichiro Ohnuki,Error Minimization of Multipole Expansion.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#OhnukiC05,https://doi.org/10.1137/S1064827502417970 +Elisabeth Ullmann,Efficient Iterative Solvers for Stochastic Galerkin Discretizations of Log-Transformed Random Diffusion Problems.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#UllmannEE12,https://doi.org/10.1137/110836675 +Katharine Gurski,An HLLC-Type Approximate Riemann Solver for Ideal Magnetohydrodynamics.,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#Gurski04,https://doi.org/10.1137/S1064827502407962 +Saifon Chaturantabut,Structure-Preserving Model Reduction for Nonlinear Port-Hamiltonian Systems.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#ChaturantabutBG16,https://doi.org/10.1137/15M1055085 +Christian Kuehn,Deterministic Continuation of Stochastic Metastable Equilibria via Lyapunov Equations and Ellipsoids.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#Kuehn12,https://doi.org/10.1137/110839874 +Susanne C. Brenner,Preconditioning Complicated Finite Elements by Simple Finite Elements.,1996,17,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc17.html#Brenner96,https://doi.org/10.1137/S1064827594277065 +Christopher C. Paige,Residual and Backward Error Bounds in Minimum Residual Krylov Subspace Methods.,2002,23,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc23.html#PaigeS02,https://doi.org/10.1137/S1064827500381239 +Elizabeth Qian,A Certified Trust Region Reduced Basis Approach to PDE-Constrained Optimization.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#QianGVW17,https://doi.org/10.1137/16M1081981 +Haijian Yang,Active-Set Reduced-Space Methods with Nonlinear Elimination for Two-Phase Flow Problems in Porous Media.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#YangYS16,https://doi.org/10.1137/15M1041882 +Kurt Georg,Approximation of Integrals for Boundary Element Methods.,1991,12,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc12.html#Georg91,https://doi.org/10.1137/0912024 +Nat Chun-Ho Leung,Partial Differential Equation Pricing of Contingent Claims under Stochastic Correlation.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#LeungCD18,https://doi.org/10.1137/16M1099017 +Xudong Yao,Numerical Methods for Computing Nonlinear Eigenpairs: Part II. Non-Iso-Homogeneous Cases.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#YaoZ08,https://doi.org/10.1137/060656425 +Peter White 0002,Spatial Invasion of Pine Beetles into Lodgepole Forests: A Numerical Approach.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#WhiteP98,https://doi.org/10.1137/S1064827596297550 +Kenji Kashima,On Weak Approximation of Stochastic Differential Equations through Hard Bounds by Mathematical Programming.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#KashimaK13,https://doi.org/10.1137/110841497 +Edward Rothberg,An Efficient Block-Oriented Approach to Parallel Sparse Cholesky Factorization.,1994,15,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc15.html#RothbergG94,https://doi.org/10.1137/0915085 +Cornelis W. Oosterlee,Krylov Subspace Acceleration of Nonlinear Multigrid with Application to Recirculating Flows.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#OosterleeW00,https://doi.org/10.1137/S1064827598338093 +Anwei Liu,Quality Local Refinement of Tetrahedral Meshes Based on Bisection.,1995,16,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc16.html#LiuJ95,https://doi.org/10.1137/0916074 +Alex A. Gorodetsky,Efficient Localization of Discontinuities in Complex Computational Simulations.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#GorodetskyM14,https://doi.org/10.1137/140953137 +Berkant Savas,Quasi-Newton Methods on Grassmannians and Multilinear Approximations of Tensors.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#SavasL10,https://doi.org/10.1137/090763172 +Jennifer A. Scott,On Positive Semidefinite Modification Schemes for Incomplete Cholesky Factorization.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#ScottT14,https://doi.org/10.1137/130917582 +Daniel Kressner,Recompression of Hadamard Products of Tensors in Tucker Format.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#KressnerP17,https://doi.org/10.1137/16M1093896 +Yin-Liang Huang,A Generalized MAC Scheme on Curvilinear Domains.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#HuangLW13,https://doi.org/10.1137/120875508 +Valeria Simoncini,Interpreting IDR as a Petrov--Galerkin Method.,2010,32,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc32.html#SimonciniS10,https://doi.org/10.1137/090774756 +Johan Hoffman,On Duality-Based A Posteriori Error Estimation in Various Norms and Linear Functionals for Large Eddy Simulation.,2004,26,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc26.html#Hoffman04,https://doi.org/10.1137/S1064827503417198 +A. Katharina Wilkins,Sensitivity Analysis for Oscillating Dynamical Systems.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#WilkinsTWB09,https://doi.org/10.1137/070707129 +Oliver Bröker,Robust Parallel Smoothing for Multigrid Via Sparse Approximate Inverses.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#BrokerGMR01,https://doi.org/10.1137/S1064827500380623 +Xiangfeng Wang,The Linearized Alternating Direction Method of Multipliers for Dantzig Selector.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#WangY12,https://doi.org/10.1137/110833543 +Shuang Zhang,Turbulent Decay and Mixing of Accelerated Inhomogeneous Flows Via a Feature Based Analysis.,2004,26,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc26.html#ZhangCZ04,https://doi.org/10.1137/S1064827503423962 +Andrea Barth,Uncertainty Quantification for Hyperbolic Conservation Laws with Flux Coefficients Given by Spatiotemporal Random Fields.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#BarthF16,https://doi.org/10.1137/15M1027723 +Raymond H. Chan,Wavelet Algorithms for High-Resolution Image Reconstruction.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#ChanCSS03,https://doi.org/10.1137/S1064827500383123 +Charles H. Tong,A Family of Quasi-Minimal Residual Methods for Nonsymmetric Linear Systems.,1994,15,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc15.html#Tong94,https://doi.org/10.1137/0915006 +Howard C. Elman,Block Preconditioners Based on Approximate Commutators.,2006,27,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc27.html#ElmanHSST06,https://doi.org/10.1137/040608817 +Sebastian Berisha,Deblurring and Sparse Unmixing of Hyperspectral Images Using Multiple Point Spread Functions.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#BerishaNP15,https://doi.org/10.1137/140980478 +Hongwei Lin,An Efficient Method for Fitting Large Data Sets Using T-Splines.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#LinZ13,https://doi.org/10.1137/120888569 +Wei Xu,Efficient (Partial) Determination of Derivative Matrices via Automatic Differentiation.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#XuC13,https://doi.org/10.1137/11085061X +Irad Yavneh,A Multilevel Nonlinear Method.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#YavnehD06,https://doi.org/10.1137/040613809 +Jacob Barhen,Consistent Uncertainty Reduction in Modeling Nonlinear Systems.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#BarhenPR04,https://doi.org/10.1137/S1064827503427522 +Augustin A. Dubrulle,Block Gauss Reduction to Hessenberg Form.,1991,12,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc12.html#Dubrulle91,https://doi.org/10.1137/0912066 +James Demmel,Performance and Accuracy of LAPACK's Symmetric Tridiagonal Eigensolvers.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#DemmelMPV08,https://doi.org/10.1137/070688778 +Owe Axelsson,On the Additive Version of the Algebraic Multilevel Iteration Method for Anisotropic Elliptic Problems.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#AxelssonP99,https://doi.org/10.1137/S1064827597320058 +Axel Klar,A Numerical Method for Kinetic Semiconductor Equations in the Drift-Diffusion Limit.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#Klar99,https://doi.org/10.1137/S1064827597319258 +F. J. Pinski,Algorithms for Kullback-Leibler Approximation of Probability Measures in Infinite Dimensions.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#PinskiSSW15,https://doi.org/10.1137/14098171X +Phaedon-Stelios Koutsourelakis,Accurate Uncertainty Quantification Using Inaccurate Computational Models.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#Koutsourelakis09,https://doi.org/10.1137/080733565 +Chengming Huang,An Analysis of Delay-Dependent Stability for Ordinary and Partial Differential Equations with Fixed and Distributed Delays.,2004,25,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc25.html#HuangV04,https://doi.org/10.1137/S1064827502409717 +Kamil A. Khan,Sensitivity Analysis of Limit-Cycle Oscillating Hybrid Systems.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#KhanSB11,https://doi.org/10.1137/100804632 +David A. Kay,A Posteriori Error Estimation for Stabilized Mixed Approximations of the Stokes Equations.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#KayS99,https://doi.org/10.1137/S1064827598333715 +Willem Hundsdorfer,On Multistep Stabilizing Correction Splitting Methods with Applications to the Heston Model.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#HundsdorferH18,https://doi.org/10.1137/17M1146026 +Ulrich Rüde,On the Multilevel Adaptive Iterative Method.,1994,15,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc15.html#Rude94,https://doi.org/10.1137/0915038 +John M. Conroy,Data-Parallel Sparse Factorization.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#ConroyKLN98,https://doi.org/10.1137/S1064827594276412 +Paul J. Lanzkron,An Analysis of Approximate Nonlinear Elimination.,1996,17,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc17.html#LanzkronRW96,https://doi.org/10.1137/S106482759325154X +Eugene Vecharynski,The Cycle-Convergence of Restarted GMRES for Normal Matrices Is Sublinear.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#VecharynskiL10,https://doi.org/10.1137/080727403 +Marjon J. Ruijter,Two-Dimensional Fourier Cosine Series Expansion Method for Pricing Financial Options.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#RuijterO12,https://doi.org/10.1137/120862053 +Piero Barone,A Diffusion Equation for the Density of the Ratio of Two Jointly Distributed Gaussian Variables and the Exponential Analysis Problem.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#Barone12,https://doi.org/10.1137/110835323 +Elizabeth R. Jessup,Performance-Based Numerical Solver Selection in the Lighthouse Framework.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#JessupMNS16,https://doi.org/10.1137/15M1028406 +Riccardo Aramini,Postprocessing of the Linear Sampling Method by Means of Deformable Models.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#AraminiBCP08,https://doi.org/10.1137/070701583 +Amir F. Atiya,Efficient Estimation of First Passage Time Density Function for Jump-Diffusion Processes.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#AtiyaM05,https://doi.org/10.1137/S1064827502417982 +Tamara G. Kolda,Counting Triangles in Massive Graphs with MapReduce.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#KoldaPPST14,https://doi.org/10.1137/13090729X +Ronald D. Haynes,A Schwarz Waveform Moving Mesh Method.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#HaynesR07,https://doi.org/10.1137/050631549 +S. V. Tsynkov,Artificial Boundary Conditions for Computation of Oscillating External Flows.,1997,18,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc18.html#Tsynkov97,https://doi.org/10.1137/S1064827595291145 +John R. Gilbert,Highly Parallel Sparse Cholesky Factorization.,1992,13,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc13.html#GilbertS92,https://doi.org/10.1137/0913067 +Yvon Maday,The Reduced Basis Element Method: Application to a Thermal Fin Problem.,2004,26,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc26.html#MadayR04,https://doi.org/10.1137/S1064827502419932 +Huayi Wei,Adaptive Mesh Refinement and Superconvergence for Two-Dimensional Interface Problems.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#WeiCHZ14,https://doi.org/10.1137/120866622 +Henri Calandra,A Modified Block Flexible GMRES Method with Deflation at Each Iteration for the Solution of Non-Hermitian Linear Systems with Multiple Right-Hand Sides.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#CalandraGLVC13,https://doi.org/10.1137/120883037 +Manuel Jesús Castro Díaz,On Well-Balanced Finite Volume Methods for Nonconservative Nonhomogeneous Hyperbolic Systems.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#DiazRFP07,https://doi.org/10.1137/040607642 +Jason Frank,Linear PDEs and Numerical Methods That Preserve a Multisymplectic Conservation Law.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#FrankMR06,https://doi.org/10.1137/050628271 +Tony F. Chan,A Nonlinear Primal-Dual Method for Total Variation-Based Image Restoration.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#ChanGM99,https://doi.org/10.1137/S1064827596299767 +John A. Mackenzie,The Efficient Generation of Simple Two-Dimensional Adaptive Grids.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#Mackenzie98,https://doi.org/10.1137/S1064827594271068 +Ching Y. Loh,A New Lagrangian Method for Time-Dependent Inviscid Flow Computation.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#LohH00,https://doi.org/10.1137/S1064827597330856 +David W. Zingg,A Method of Smooth Bivariate Interpolation for Data Given on a Generalized Curvilinear Grid.,1992,13,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc13.html#ZinggY92,https://doi.org/10.1137/0913040 +Yair Censor,On Diagonally Relaxed Orthogonal Projection Methods.,2008,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#CensorEHN08,https://doi.org/10.1137/050639399 +Qifeng Liao,A Domain Decomposition Approach for Uncertainty Analysis.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#LiaoW15,https://doi.org/10.1137/140980508 +Nigam Chandra Parida,The Alpha-Method Direct Transcription in Path Constrained Dynamic Optimization.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#ParidaR09,https://doi.org/10.1137/070682289 +Franciszek A. Dul,MINRES and MINERR Are Better than SYMMLQ in Eigenpair Computations.,1998,19,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc19.html#Dul98,https://doi.org/10.1137/S106482759528226X +Hans D. Mittelmann,Iterative Solution of the Eigenvalue Problem in Hopf Bifurcation for the Boussinesq Equations.,1994,15,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc15.html#MittelmannCJ94,https://doi.org/10.1137/0915045 +Dan Kushnir,A Highly Accurate Solver for Stiff Ordinary Differential Equations.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#KushnirR12,https://doi.org/10.1137/100810216 +Fynn Scheben,Iterative Methods for Neutron Transport Eigenvalue Problems.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#SchebenG11,https://doi.org/10.1137/100799022 +Peter A. Forsyth,Quadratic Convergence for Valuing American Options Using a Penalty Method.,2002,23,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc23.html#ForsythV02,https://doi.org/10.1137/S1064827500382324 +Tomasz Hrycak,An Improved Fast Multipole Algorithm for Potential Fields.,1998,19,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc19.html#HrycakR98,https://doi.org/10.1137/S106482759630989X +Traian Iliescu,Are the Snapshot Difference Quotients Needed in the Proper Orthogonal Decomposition?,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#IliescuW14,https://doi.org/10.1137/130925141 +Mao De-kang,Toward Front Tracking Based on Conservation in Two Space Dimensions.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#De-kang00,https://doi.org/10.1137/S1064827597310609 +Harald Garcke,Numerical Approximation of Phase Field Based Shape and Topology Optimization for Fluids.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#GarckeHHK15,https://doi.org/10.1137/140969269 +S. S. Ravindran,Adaptive Reduced-Order Controllers for a Thermal Flow System Using Proper Orthogonal Decomposition.,2002,23,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc23.html#Ravindran02,https://doi.org/10.1137/S1064827500374716 +Rafael Bru,Preconditioning Sparse Nonsymmetric Linear Systems with the Sherman-Morrison Formula.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#BruCMM03,https://doi.org/10.1137/S1064827502407524 +Saptarshi Das,Solving Overdetermined Eigenvalue Problems.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#DasN13,https://doi.org/10.1137/110828514 +Sadegh Jokar,Exact and Approximate Sparse Solutions of Underdetermined Linear Equations.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#JokarP08,https://doi.org/10.1137/070686676 +Guido M. Cortelazzo,Rational Multiple Criterion Approximation and Rational Complex Approximation by Differential Correction-Type Algorithms.,1995,16,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc16.html#CortelazzoMM95,https://doi.org/10.1137/0916057 +Manuel Torrilhon,Locally Divergence-preserving Upwind Finite Volume Schemes for Magnetohydrodynamic Equations.,2005,26,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc26.html#Torrilhon05,https://doi.org/10.1137/S1064827503426401 +Dongmin Kim,Tackling Box-Constrained Optimization via a New Projected Quasi-Newton Approach.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#KimSD10,https://doi.org/10.1137/08073812X +Felix Gremse,GPU-Accelerated Sparse Matrix-Matrix Multiplication by Iterative Row Merging.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#GremseHSKN15,https://doi.org/10.1137/130948811 +Christian Bender,Iterative Improvement of Lower and Upper Bounds for Backward SDEs.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#BenderGS17,https://doi.org/10.1137/16M1081348 +Raimund Bürger,Antidiffusive and Random-Sampling Lagrangian-Remap Schemes for the Multiclass Lighthill-Whitham-Richards Traffic Model.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#BurgerCV13,https://doi.org/10.1137/130923877 +Francis Filbet,A Hierarchy of Hybrid Numerical Methods for Multiscale Kinetic Equations.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#FilbetR15,https://doi.org/10.1137/140958773 +Giray ökten,Solving Linear Equations by Monte Carlo Simulation.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#Okten05,https://doi.org/10.1137/04060500X +Xiang-Gen Xia,Signal Extrapolation in Wavelet Subspaces.,1995,16,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc16.html#XiaKZ95,https://doi.org/10.1137/0916005 +Debojyoti Ghosh,Efficient Implementation of Nonlinear Compact Schemes on Massively Parallel Platforms.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#GhoshCB15,https://doi.org/10.1137/140989261 +Scott MacLachlan,Algebraic Multigrid Solvers for Complex-Valued Matrices.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#MacLachlanO08,https://doi.org/10.1137/070687232 +Nicholas J. Higham,Estimating the Condition Number of the Fréchet Derivative of a Matrix Function.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#HighamR14,https://doi.org/10.1137/130950082 +William L. Briggs,Wavelets and Multigrid.,1993,14,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc14.html#BriggsE93,https://doi.org/10.1137/0914031 +Giacomo Dimarco,Study of a New Asymptotic Preserving Scheme for the Euler System in the Low Mach Number Limit.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#DimarcoLV17,https://doi.org/10.1137/16M1069274 +Peter N. Brown,Preconditioning Strategies for Fully Implicit Radiation Diffusion with Material-Energy Transfer.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#BrownW01,https://doi.org/10.1137/S106482750037295X +James J. Brannick,Bootstrap Algebraic Multigrid for the 2D Wilson Dirac system.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#BrannickK14,https://doi.org/10.1137/130934660 +Siegfried M. Rump,Accurate Floating-Point Summation Part I: Faithful Rounding.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#RumpOO08,https://doi.org/10.1137/050645671 +L. S. Hou,Numerical Approximation of Optimal Flow Control Problems by a Penalty Method: Error Estimates and Numerical Results.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#HouR99,https://doi.org/10.1137/S1064827597325153 +Jisheng Kou,Numerical Methods for a Multicomponent Two-Phase Interface Model with Geometric Mean Influence Parameters.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#KouS15,https://doi.org/10.1137/140969579 +Prateek Sharma,Numerical Implementation of Streaming Down the Gradient: Application to Fluid Modeling of Cosmic Rays and Saturated Conduction.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#SharmaCM10,https://doi.org/10.1137/100792135 +Kathrin Smetana,Optimal Local Approximation Spaces for Component-Based Static Condensation Procedures.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#SmetanaP16,https://doi.org/10.1137/15M1009603 +Yunqing Huang,Modeling Backward Wave Propagation in Metamaterials by the Finite Element Time-Domain Method.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#HuangLY13,https://doi.org/10.1137/120869869 +Jack J. Dongarra,A Parallel Algorithm for the Nonsymmetric Eigenvalue Problem.,1993,14,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc14.html#DongarraS93,https://doi.org/10.1137/0914035 +Tony F. Chan,On the Optimality of the Median Cut Spectral Bisection Graph Partitioning Method.,1997,18,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc18.html#ChanCS97,https://doi.org/10.1137/S1064827594262649 +Lina Song,Recovery-Based Error Estimator for Stabilized Finite Element Method for the Stationary Navier-Stokes Problem.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#SongSF16,https://doi.org/10.1137/15M1015261 +Eugene Vecharynski,Absolute Value Preconditioning for Symmetric Indefinite Linear Systems.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#VecharynskiK13,https://doi.org/10.1137/120886686 +Pavel P. Popov,The Direct Richardson pth Order (DRp) Schemes: A New Class of Time Integration Schemes for Stochastic Differential Equations.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#PopovP12,https://doi.org/10.1137/100801445 +Moody T. Chu,Low-Dimensional Polytope Approximation and Its Applications to Nonnegative Matrix Factorization.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#ChuL08,https://doi.org/10.1137/070680436 +Anne Greenbaum,Max-Min Properties of Matrix Factor Norms.,1994,15,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc15.html#GreenbaumG94,https://doi.org/10.1137/0915024 +Chen Greif,Iterative Solution of Cyclically Reduced Systems Arising from Discretization of the Three-Dimensional Convection-Diffusion Equation.,1998,19,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc19.html#GreifV98,https://doi.org/10.1137/S1064827596296994 +Tristan van Leeuwen,3D Frequency-Domain Seismic Inversion with Controlled Sloppiness.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#LeeuwenH14,https://doi.org/10.1137/130918629 +Jinchao Xu,A Novel Two-Grid Method for Semilinear Elliptic Equations.,1994,15,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc15.html#Xu94,https://doi.org/10.1137/0915016 +Aaron Luttman,A Variational Approach to Video Segmentation for Botanical Data.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#LuttmanB07,https://doi.org/10.1137/060653792 +Elisabeth Ullmann,A Kronecker Product Preconditioner for Stochastic Galerkin Finite Element Discretizations.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#Ullmann10,https://doi.org/10.1137/080742853 +Aslak Tveito,The Solution of Nonstrictly Hyperbolic Conservation Laws May Be Hard to Compute.,1995,16,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc16.html#TveitoW95,https://doi.org/10.1137/0916021 +Konstantin Lipnikov,Anderson Acceleration for Nonlinear Finite Volume Scheme for Advection-Diffusion Problems.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#LipnikovSV13,https://doi.org/10.1137/120867846 +Devin A. Matthews,High-Performance Tensor Contraction without Transposition.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#Matthews18,https://doi.org/10.1137/16M108968X +Anil Damle,Computing Localized Representations of the Kohn-Sham Subspace Via Randomization and Refinement.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#Damle0Y17,https://doi.org/10.1137/16M1098589 +June M. Donato,Fourier Analysis of Incomplete Factorization Preconditioners for Three-Dimensional Anisotropic Problems.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#DonatoC92,https://doi.org/10.1137/0913017 +Huo-Yuan Duan,A Mixed H1-Conforming Finite Element Method for Solving Maxwell's Equations with Non-H1 Solution.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#DuanTYY18,https://doi.org/10.1137/16M1078082 +Martin J. Gander,Analysis of the Parareal Time-Parallel Time-Integration Method.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#GanderV07,https://doi.org/10.1137/05064607X +Kazufumi Ito,Optimal Control of Thermally Convected Fluid Flows.,1998,19,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc19.html#ItoR98,https://doi.org/10.1137/S1064827596299731 +Tugrul Dayar,On the Effects of Using the Grassmann-Taksar-Heyman Method in Iterative Aggregation-Disaggregation.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#DayarS96,https://doi.org/10.1137/0917021 +Pieter Ghysels,Modeling the Performance of Geometric Multigrid Stencils on Multicore Computer Architectures.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#GhyselsV15,https://doi.org/10.1137/130935781 +Pierre Degond,On the Time Splitting Spectral Method for the Complex Ginzburg-Landau Equation in the Large Time and Space Scale Limit.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#DegondJT08,https://doi.org/10.1137/070700711 +Peter K. Moore,An Adaptive Finite Element Method for Parabolic Differential Systems: Some Algorithmic Considerations in Solving in Three Space Dimensions.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#Moore99,https://doi.org/10.1137/S1064827598349197 +Benjamin Ganis,A Stochastic Mortar Mixed Finite Element Method for Flow in Porous Media with Multiple Rock Types.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#GanisYZ11,https://doi.org/10.1137/100790689 +Yee Lo Keung,An Efficient Linear Solver for Nonlinear Parameter Identification Problems.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#KeungZ01,https://doi.org/10.1137/S1064827598346740 +Thomas G. Fai,Immersed Boundary Method for Variable Viscosity and Variable Density Problems Using Fast Constant-Coefficient Linear Solvers II: Theory.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#FaiGMP14,https://doi.org/10.1137/12090304X +A. M. Blokhin,Numerical Method for 2D Simulation of a Silicon MESFET with a Hydrodynamical Model Based on the Maximum Entropy Principle.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#BlokhinI09,https://doi.org/10.1137/070706537 +Mario Ohlberger,Error Control for the Localized Reduced Basis Multiscale Method with Adaptive On-Line Enrichment.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#OhlbergerS15,https://doi.org/10.1137/151003660 +J. H. Adler,Robust Solvers for Maxwell's Equations with Dissipative Boundary Conditions.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#AdlerHZ17,https://doi.org/10.1137/16M1073339 +Helmut Harbrecht,Wavelet Galerkin Schemes for Boundary Integral Equations-Implementation and Quadrature.,2006,27,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc27.html#HarbrechtS06,https://doi.org/10.1137/S1064827503429387 +Nicholas J. Higham,Estimating the Largest Elements of a Matrix.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#HighamR16,https://doi.org/10.1137/15M1053645 +Ulrike Baur,Gramian-Based Model Reduction for Data-Sparse Systems.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#BaurB08,https://doi.org/10.1137/070711578 +Srinivas Aluru,Greengard's N-Body Algorithm is not Order N.,1996,17,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc17.html#Aluru96,https://doi.org/10.1137/S1064827593272031 +Weizhu Bao,A Simple and Efficient Numerical Method for Computing the Dynamics of Rotating Bose-Einstein Condensates via Rotating Lagrangian Coordinates.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#BaoMTZ13,https://doi.org/10.1137/130911111 +Anshul Gupta,Enhancing Performance and Robustness of ILU Preconditioners by Blocking and Selective Transposition.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#Gupta17,https://doi.org/10.1137/15M1053256 +Weidong Zhao,New Kinds of High-Order Multistep Schemes for Coupled Forward Backward Stochastic Differential Equations.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#ZhaoFZ14,https://doi.org/10.1137/130941274 +Paul H. Calamai,Generating Linear and Linear-Quadratic Bilevel Programming Problems.,1993,14,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc14.html#CalamaiV93,https://doi.org/10.1137/0914049 +M. A. T. van Hinsberg,On the Efficiency and Accuracy of Interpolation Methods for Spectral Codes.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#HinsbergBTC12,https://doi.org/10.1137/110849018 +Joseph Young,An Application of Random Projection to Parameter Estimation in Partial Differential Equations.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#YoungR12,https://doi.org/10.1137/11084666X +Jørgen Sand,A Jacobi Waveform Relaxation Method for ODEs.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#SandB98,https://doi.org/10.1137/S1064827596306562 +Roman Wienands,On Three-Grid Fourier Analysis for Multigrid.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#WienandsO01,https://doi.org/10.1137/S106482750037367X +Xiaobo Yang,A Moving Mesh WENO Method for One-Dimensional Conservation Laws.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#YangHQ12,https://doi.org/10.1137/110856381 +Emil M. Constantinescu,Extrapolated Implicit-Explicit Time Stepping.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#ConstantinescuS10,https://doi.org/10.1137/080732833 +Grady I. Lemoine,High-Resolution Finite Volume Modeling of Wave Propagation in Orthotropic Poroelastic Media.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#LemoineOL13,https://doi.org/10.1137/120878720 +Verena Kuhlemann,Improving the Communication Pattern in Matrix-Vector Operations for Large Scale-Free Graphs by Disaggregation.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#KuhlemannV13,https://doi.org/10.1137/12088313X +Ivi C. Tsantili,A Computational Stochastic Methodology for the Design of Random Meta-materials under Geometric Constraints.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#TsantiliCCK18,https://doi.org/10.1137/17M1113473 +Xudong Yao,Numerical Methods for Computing Nonlinear Eigenpairs: Part I. Iso-Homogeneous Cases.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#YaoZ07,https://doi.org/10.1137/060651859 +Jie Chen,How Accurately Should I Compute Implicit Matrix-Vector Products When Applying the Hutchinson Trace Estimator?,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#Chen16,https://doi.org/10.1137/15M1051506 +Jesse Chan,GPU-Accelerated Bernstein-Bézier Discontinuous Galerkin Methods for Wave Problems.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#ChanW17,https://doi.org/10.1137/15M1053542 +Luiz Mariano Carvalho,Algebraic Two-Level Preconditioners for the Schur Complement Method.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#CarvalhoGT01,https://doi.org/10.1137/S1064827598340809 +William F. Mitchell,Optimal Multilevel Iterative Methods for Adaptive Grids.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#Mitchell92,https://doi.org/10.1137/0913009 +Jing Li,Surrogate Based Method for Evaluation of Failure Probability under Multiple Constraints.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#LiX14,https://doi.org/10.1137/120877192 +Alfio Quarteroni,A Domain Decomposition Method for Advection-Diffusion Processes with Application to Blood Solutes.,2002,23,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc23.html#QuarteroniVZ02,https://doi.org/10.1137/S1064827500375722 +Tony F. Chan,Efficient Variants of the Vertex Space Domain Decomposition Algorithm.,1994,15,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc15.html#ChanMS94,https://doi.org/10.1137/0915082 +James Glimm,Interface Tracking for Axisymmetric Flows.,2002,24,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc24.html#GlimmGZ02,https://doi.org/10.1137/S1064827500366690 +Panagiota Tsompanopoulou,ADI Methods for Cubic Spline Collocation Discretizations of Elliptic PDE.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#TsompanopoulouV98,https://doi.org/10.1137/S1064827595281794 +Bernardo Cockburn,A Hybridizable Discontinuous Galerkin Method for the p-Laplacian.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#CockburnS16,https://doi.org/10.1137/15M1008014 +Antonio Marquina,Local Piecewise Hyperbolic Reconstruction of Numerical Fluxes for Nonlinear Scalar Conservation Laws.,1994,15,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc15.html#Marquina94,https://doi.org/10.1137/0915054 +John Greenstadt,Cell Discretization of Nonselfadjoint Linear Elliptic Partial Differential Equations.,1991,12,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc12.html#Greenstadt91,https://doi.org/10.1137/0912057 +Florian Schornbaum,Extreme-Scale Block-Structured Adaptive Mesh Refinement.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#SchornbaumR18,https://doi.org/10.1137/17M1128411 +Luca Bonaventura,Semi-Lagrangian Methods for Parabolic Problems in Divergence Form.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#BonaventuraF14,https://doi.org/10.1137/140969713 +Christopher R. Anderson,Integral Equation Preconditioning for the Solution of Poisson's Equation on Geometrically Complex Regions.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#AndersonL99,https://doi.org/10.1137/S1064827597323804 +Jitendra Kumar,A Note on Moment Preservation of Finite Volume Schemes for Solving Growth and Aggregation Population Balance Equations.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#KumarW10,https://doi.org/10.1137/090757356 +John A. Gubner,Computation of Shot-Noise Probability Distributions and Densities.,1996,17,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc17.html#Gubner96,https://doi.org/10.1137/S1064827594268725 +Marco Caliari,Meshfree Exponential Integrators.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#CaliariOR13,https://doi.org/10.1137/100818236 +Jeffrey J. Heys,Enhanced Mass Conservation in Least-Squares Methods for Navier-Stokes Equations.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#HeysLMMR09,https://doi.org/10.1137/080721303 +M. van Veldhuizen,Approximation of the Invariant Manifold in the Josephson Equation.,1992,13,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc13.html#Veldhuizen92,https://doi.org/10.1137/0913038 +Amel Sboui,A Composite Mixed Finite Element for Hexahedral Grids.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#SbouiJR09,https://doi.org/10.1137/070703703 +Mario Arioli,A Block Projection Method for Sparse Matrices.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#ArioliDNR92,https://doi.org/10.1137/0913003 +Daniel Y. Le Roux,Analysis of Numerically Induced Oscillations in 2D Finite-Element Shallow-Water Models Part I: Inertia-Gravity Waves.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#RouxRP07,https://doi.org/10.1137/060650106 +Tony W. H. Sheu,Element-by-Element Parallel Computation of Incompressible Navier-Stokes Equations in Three Dimensions.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#SheuWT99,https://doi.org/10.1137/S1064827598335416 +Michael P. Friedlander,Low-Rank Spectral Optimization via Gauge Duality.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#FriedlanderM16,https://doi.org/10.1137/15M1034283 +Haw-ren Fang,A Filtered Lanczos Procedure for Extreme and Interior Eigenvalue Problems.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#FangS12,https://doi.org/10.1137/110836535 +Jurjen Duintjer Tebbens,Efficient Preconditioning of Sequences of Nonsymmetric Linear Systems.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#TebbensT07,https://doi.org/10.1137/06066151X +Dirk Laurie,Initial Values for the Inverse Toeplitz Eigenvalue Problem.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#Laurie01,https://doi.org/10.1137/S106482759935561X +Gregory S. Cochran,A Randomized Subdivision Algorithm for Determining the Topology of Nodal Sets.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#CochranWD13,https://doi.org/10.1137/120903154 +Orazio Muscato,A Class of Stochastic Algorithms for the Wigner Equation.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#MuscatoW16,https://doi.org/10.1137/16M105798X +Michele Benzi,A Sparse Approximate Inverse Preconditioner for the Conjugate Gradient Method.,1996,17,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc17.html#BenziMT96,https://doi.org/10.1137/S1064827594271421 +Bokai Yan,A Successive Penalty-Based Asymptotic-Preserving Scheme for Kinetic Equations.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#YanJ13,https://doi.org/10.1137/110857982 +Giuseppe Fiorentino,Multigrid Methods for Symmetric Positive Definite Block Toeplitz Matrices with Nonnegative Generating Functions.,1996,17,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc17.html#FiorentinoS96,https://doi.org/10.1137/S1064827594271512 +Dionissios T. Hristopulos,Numerical Implementation of a Space-Transformation Approach for Solving the Three-Dimensional Flow Equation.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#HristopulosCS98,https://doi.org/10.1137/S1064827594278721 +Panagiotis A. Foteinos,Fully Generalized Two-Dimensional Constrained Delaunay Mesh Refinement.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#FoteinosCC10,https://doi.org/10.1137/090763226 +Mattia Gazzola,Reinforcement Learning and Wavelet Adapted Vortex Methods for Simulations of Self-propelled Swimmers.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#GazzolaHK14,https://doi.org/10.1137/130943078 +Esmond Ng,A Scheme for Handling Rank-Deficiency in the Solution of Sparse Linear Least Squares Problems.,1991,12,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc12.html#Ng91,https://doi.org/10.1137/0912062 +Sergey Dolgov,Alternating Minimal Energy Methods for Linear Systems in Higher Dimensions.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#DolgovS14,https://doi.org/10.1137/140953289 +Christian H. Bischof,A Parallel QR Factorization Algorithm with Controlled Local Pivoting.,1991,12,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc12.html#Bischof91,https://doi.org/10.1137/0912002 +Frédéric Nataf,A Coarse Space Construction Based on Local Dirichlet-to-Neumann Maps.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#NatafXDS11,https://doi.org/10.1137/100796376 +Kelly Black,Spectral Elements on Infinite Domain.,1998,19,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc19.html#Black98,https://doi.org/10.1137/S1064827596301418 +Anne Greenbaum,Card Shuffling and the Polynomial Numerical Hull of Degree k.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#Greenbaum03,https://doi.org/10.1137/S1064827501400278 +Ricardo Cortez,The Method of Regularized Stokeslets.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#Cortez01,https://doi.org/10.1137/S106482750038146X +Tony F. Chan,A Quasi-Minimal Residual Variant of the Bi-CGSTAB Algorithm for Nonsymmetric Systems.,1994,15,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc15.html#ChanGSST94,https://doi.org/10.1137/0915023 +Xiao-Chuan Cai,Parallel Newton-Krylov-Schwarz Algorithms for the Transonic Full Potential Equation.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#CaiGKMY98,https://doi.org/10.1137/S1064827596304046 +Vladimir Druskin,On Adaptive Choice of Shifts in Rational Krylov Subspace Reduction of Evolutionary Problems.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#DruskinLZ10,https://doi.org/10.1137/090774082 +Tobias Weinzierl,Peano - A Traversal and Storage Scheme for Octree-Like Adaptive Cartesian Multiscale Grids.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#WeinzierlM11,https://doi.org/10.1137/100799071 +Takeshi Ogita,Accurate Sum and Dot Product.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#OgitaRO05,https://doi.org/10.1137/030601818 +Philippe Bechouche,A Semiclassical Coupled Model for the Transient Simulation of Semiconductor Devices.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#BechoucheG07,https://doi.org/10.1137/060655262 +Awad H. Al-Mohy,Improved Inverse Scaling and Squaring Algorithms for the Matrix Logarithm.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#Al-MohyH12,https://doi.org/10.1137/110852553 +Hadi Pouransari,Optimizing the Adaptive Fast Multipole Method for Fractal Sets.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#PouransariD15,https://doi.org/10.1137/140962681 +Vincent Martin,Modeling Fractures and Barriers as Interfaces for Flow in Porous Media.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#MartinJR05,https://doi.org/10.1137/S1064827503429363 +Peter Benner,Range-Separated Tensor Format for Many-Particle Modeling.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#BennerKK18,https://doi.org/10.1137/16M1098930 +Jesse Chan,A Comparison of High Order Interpolation Nodes for the Pyramid.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#ChanW15,https://doi.org/10.1137/141000105 +Maxim A. Olshanskii,A Trace Finite Element Method for PDEs on Evolving Surfaces.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#OlshanskiiX17,https://doi.org/10.1137/16M1099388 +Harold J. Kushner,Domain Decomposition Methods for Large Markov Chain Control Problems and Nonlinear Elliptic-Type Equations.,1997,18,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc18.html#Kushner97,https://doi.org/10.1137/S1064827594274656 +Hyenkyun Woo,Proximal Linearized Alternating Direction Method for Multiplicative Denoising.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#WooY13,https://doi.org/10.1137/11083811X +Ananth Grama,Parallel Hierarchical Solvers and Preconditioners for Boundary Element Methods.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#GramaKS98,https://doi.org/10.1137/S1064827596313322 +Xiaoliang Wan,Asymptotically Efficient Simulation of Elliptic Problems with Small Random Forcing.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#WanZ18,https://doi.org/10.1137/17M111643X +Hillel Tal-Ezer,On Restart and Error Estimation for Krylov Approximation of w=f(A)v.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#Tal-Ezer07,https://doi.org/10.1137/040617868 +Raymond H. Chan,Superlinear Convergence Estimates for a Conjugate Gradient Method for the Biharmonic Equation.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#ChanDH98,https://doi.org/10.1137/S1064827596303570 +Koottungal Revi Arun,A Numerical Scheme for Three-Dimensional Front Propagation and Control of Jordan Mode.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#Arun12,https://doi.org/10.1137/100802177 +Howard C. Elman,Introduction to the Special Issue on Iterative Methods for Solving Systems of Algebraic Equations.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#Elman98,https://doi.org/10.1137/SJOCE3000019000001000vii000001 +Charbel Farhat,The Dual Schur Complement Method with Well-Posed Local Neumann Problems: Regularization with a Perturbed Lagrangian Formulation.,1993,14,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc14.html#FarhatCR93,https://doi.org/10.1137/0914047 +Martin J. Gander,Best Robin Parameters for Optimized Schwarz Methods at Cross Points.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#GanderK12,https://doi.org/10.1137/110837218 +Todd Arbogast,Enhanced Cell-Centered Finite Differences for Elliptic Equations on General Geometry.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#ArobogastDKWY98,https://doi.org/10.1137/S1064827594264545 +Hailiang Liu,An Invariant Preserving Discontinuous Galerkin Method for the Camassa-Holm Equation.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#LiuX16,https://doi.org/10.1137/15M102705X +Guido E. Sartoris,A 3D Rectangular Mixed Finite Element Method to Solve the Stationary Semiconductor Equations.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#Sartoris98,https://doi.org/10.1137/S1064827594275091 +Shu-Lin Wu,Toward Parallel Coarse Grid Correction for the Parareal Algorithm.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#Wu18,https://doi.org/10.1137/17M1141102 +Stavros A. Zenios,Parallel Block-Partitioning of Truncated Newton for Nonlinear Network Optimization.,1992,13,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc13.html#ZeniosP92,https://doi.org/10.1137/0913068 +Peter N. Brown,Semicoarsening Multigrid on Distributed Memory Machines.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#BrownFJ00,https://doi.org/10.1137/S1064827598339141 +Joseph E. Pasciak,Exact de Rham Sequences of Spaces Defined on Macro-Elements in Two and Three Spatial Dimensions.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#PasciakV08,https://doi.org/10.1137/070698178 +Moritz Kreutzer,A Unified Sparse Matrix Data Format for Efficient General Sparse Matrix-Vector Multiplication on Modern Processors with Wide SIMD Units.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#KreutzerHWFB14,https://doi.org/10.1137/130930352 +Mohsen Zayernouri,Spectral and Discontinuous Spectral Element Methods for Fractional Delay Equations.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#ZayernouriCZK14,https://doi.org/10.1137/130935884 +Nuutti Hyvönen,Thermal Tomography with Unknown Boundary.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#HyvonenM18,https://doi.org/10.1137/16M1104573 +Alexander Kurganov,Adaptive Semidiscrete Central-Upwind Schemes for Nonconvex Hyperbolic Conservation Laws.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#KurganovPP07,https://doi.org/10.1137/040614189 +Bradley K. Alpert,A Fast Algorithm for the Evaluation of Legendre Expansions.,1991,12,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc12.html#AlpertR91,https://doi.org/10.1137/0912009 +Jie Chen,On the Use of Discrete Laplace Operator for Preconditioning Kernel Matrices.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#Chen13,https://doi.org/10.1137/120874527 +Blaise Bourdin,Optimal Partitions for Eigenvalues.,2009,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#BourdinBO09,https://doi.org/10.1137/090747087 +Paul R. Willems,A Framework for the MR3 Algorithm: Theory and Implementation.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#WillemsL13,https://doi.org/10.1137/110834020 +E. D. de Goede,Vectorization of the Odd-Even Hopscotch Scheme and the Alternating Direction Implicit Scheme for the Two-Dimensional Burgers Equations.,1990,11,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc11.html#GoedeB90,https://doi.org/10.1137/0911021 +Marianne Bessemoulin-Chatard,A Finite Volume Scheme for Nonlinear Degenerate Parabolic Equations.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#Bessemoulin-ChatardF12,https://doi.org/10.1137/110853807 +Mohammad Asadzadeh,Discrete-Ordinates and Streamline Diffusion Methods for a Flow Described by BGK Model.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#AsadzadehKM14,https://doi.org/10.1137/120885747 +D. Chen,Iterative Parameter-Choice and Multigrid Methods for Anisotropic Diffusion Denoising.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#ChenMK11,https://doi.org/10.1137/100796066 +Wolfgang Dahmen,On an Adaptive Multigrid Solver for Convection-Dominated Problems.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#DahmenMS01,https://doi.org/10.1137/S106482759935544X +Katharina Kormann,A Galerkin Radial Basis Function Method for the Schrödinger Equation.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#KormannL13,https://doi.org/10.1137/120893975 +Wlodek Proskurowski,Preconditioning Capacitance Matrix Problems in Domain Imbedding.,1994,15,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc15.html#ProskurowskiV94,https://doi.org/10.1137/0915005 +Andrea Villa,Convergence of Weakly Imposed Boundary Conditions: The One-Dimensional Hyperbolic Case.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#Villa09,https://doi.org/10.1137/080720516 +Mark T. Jones,A Parallel Graph Coloring Heuristic.,1993,14,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc14.html#JonesP93,https://doi.org/10.1137/0914041 +Boris Diskin,On Quantitative Analysis Methods for Multigrid Solutions.,2005,27,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc27.html#DiskinTM05,https://doi.org/10.1137/030601521 +Géraldine Pichot,A Generalized Mixed Hybrid Mortar Method for Solving Flow in Stochastic Discrete Fracture Networks.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#PichotED12,https://doi.org/10.1137/100804383 +Mo Mu,Solving Composite Problems with Interface Relaxation.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#Mu99,https://doi.org/10.1137/S1064827597321180 +Martin Balazovjech,A Higher Order Scheme for a Tangentially Stabilized Plane Curve Shortening Flow with a Driving Force.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#BalazovjechM11,https://doi.org/10.1137/100795309 +Jasper van den Eshof,Preconditioning Lanczos Approximations to the Matrix Exponential.,2006,27,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc27.html#EshofH06,https://doi.org/10.1137/040605461 +Susanne M. Balle,SVD Computations on the Connection Machine CM-5/CM-5E: Implementation and Accuracy.,1997,18,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc18.html#BalleP97,https://doi.org/10.1137/S1064827595281356 +Boris N. Khoromskij,Tensor-Structured Galerkin Approximation of Parametric and Stochastic Elliptic PDEs.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#KhoromskijS11,https://doi.org/10.1137/100785715 +Alvaro Moraes,A Multilevel Adaptive Reaction-splitting Simulation Method for Stochastic Reaction Networks.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#MoraesTV16,https://doi.org/10.1137/140972081 +Marian Brezina,Algebraic Multigrid Based on Element Interpolation (AMGe).,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#BrezinaCFHJMMR01,https://doi.org/10.1137/S1064827598344303 +Michael Griebel,Multilevel Algorithms Considered as Iterative Methods on Semidefinite Systems.,1994,15,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc15.html#Griebel94,https://doi.org/10.1137/0915036 +Julien Diaz,Energy Conserving Explicit Local Time Stepping for Second-Order Wave Equations.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#DiazG09,https://doi.org/10.1137/070709414 +Maka Karalashvili,Incremental Identification of Transport Coefficients in Convection-Diffusion Systems.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#KaralashviliGMRM08,https://doi.org/10.1137/070692388 +Anna-Lena Gerner,Certified Reduced Basis Methods for Parametrized Saddle Point Problems.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#GernerV12,https://doi.org/10.1137/110854084 +Marc Gamell,Scalable Failure Masking for Stencil Computations using Ghost Region Expansion and Cell to Rank Remapping.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#GamellTKMHCP17,https://doi.org/10.1137/16M1081610 +Vipin Gopal,A Successive Linear Programming Approach for Initialization and Reinitialization after Discontinuities of Differential-Algebraic Equations.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#GopalB98,https://doi.org/10.1137/S1064827596307725 +Jean-Paul Berrut,The Linear Rational Pseudospectral Method with Iteratively Optimized Poles for Two-Point Boundary Value Problems.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#BerrutM01,https://doi.org/10.1137/S106482750036615X +Eberhard Bänsch,Finite Element Method for Epitaxial Growth with Thermodynamic Boundary Conditions.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#BanschHV05,https://doi.org/10.1137/030601028 +J. R. Peterson,Residual Monte Carlo for the One-Dimensional Particle Transport Equation.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#PetersonMR16,https://doi.org/10.1137/16M1057619 +John C. Strikwerda,A Domain Decomposition Method for Incompressible Viscous Flow.,1993,14,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc14.html#StrikwerdaS93,https://doi.org/10.1137/0914004 +Kendall E. Atkinson,Two-Grid Iteration Methods for Linear Integral Equations of the Second Kind on Piecewise Smooth Surfaces in and#8477*3.,1994,15,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc15.html#Atkinson94,https://doi.org/10.1137/0915066 +Bruce Hendrickson,Partitioning Rectangular and Structurally Unsymmetric Sparse Matrices for Parallel Processing.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#HendricksonK00,https://doi.org/10.1137/S1064827598341475 +John R. Gilbert,Geometric Mesh Partitioning: Implementation and Experiments.,1998,19,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc19.html#GilbertMT98,https://doi.org/10.1137/S1064827594275339 +Evan VanderZee,Well-Centered Triangulation.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#VanderZeeHGR10,https://doi.org/10.1137/090748214 +Robert C. Kirby,Solver Composition Across the PDE/Linear Algebra Barrier.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#KirbyM18,https://doi.org/10.1137/17M1133208 +Tony F. Chan,Composite Step Product Methods for Solving Nonsymmetric Linear Systems.,1996,17,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc17.html#ChanS96,https://doi.org/10.1137/S1064827594269202 +Tyrone Rees,Preconditioning Iterative Methods for the Optimal Control of the Stokes Equations.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#ReesW11,https://doi.org/10.1137/100798491 +R. Lord,A Fast and Accurate FFT-Based Method for Pricing Early-Exercise Options under L[e-acute]vy Processes.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#LordFBO08,https://doi.org/10.1137/070683878 +Loyce Adams,The Immersed Interface/Multigrid Methods for Interface Problems.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#AdamsL02,https://doi.org/10.1137/S1064827501389849 +Gradimir V. Milovanovic,Gaussian-type Quadrature Rules for Müntz Systems.,2005,27,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc27.html#MilovanovicC05,https://doi.org/10.1137/040621533 +Bora Uçar,Encapsulating Multiple Communication-Cost Metrics in Partitioning Sparse Rectangular Matrices for Parallel Matrix-Vector Multiplies.,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#UcarA04,https://doi.org/10.1137/S1064827502410463 +Koen Engelborghs,Collocation Methods for the Computation of Periodic Solutions of Delay Differential Equations.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#EngelborghsLHR01,https://doi.org/10.1137/S1064827599363381 +Alex Pothen,A Fast Reordering Algorithm for Parallel Sparse Triangular Solution.,1992,13,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc13.html#PothenA92,https://doi.org/10.1137/0913036 +Shusen Xie,A Numerical Method for the Generalized Regularized Long Wave Equation Using a Reproducing Kernel Function.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#XieKWY08,https://doi.org/10.1137/070683623 +James J. Brannick,Compatible Relaxation and Coarsening in Algebraic Multigrid.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#BrannickF10,https://doi.org/10.1137/090772216 +Michele Benzi,A Sparse Approximate Inverse Preconditioner for Nonsymmetric Linear Systems.,1998,19,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc19.html#BenziT98,https://doi.org/10.1137/S1064827595294691 +Daniel Osei-Kuffuor,Matrix Reordering Using Multilevel Graph Coarsening for ILU Preconditioning.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#Osei-KuffuorLS15,https://doi.org/10.1137/130936610 +Reiichiro Kawai,Acceleration on Adaptive Importance Sampling with Sample Average Approximation.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#Kawai17,https://doi.org/10.1137/15M1047192 +Xiangmin Jiao,Local Orthogonal Cutting Method for Computing Medial Curves and Its Biomedical Applications.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#JiaoED10,https://doi.org/10.1137/090767170 +Yeonjong Shin,Correcting Data Corruption Errors for Multivariate Function Approximation.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#ShinX16a,https://doi.org/10.1137/16M1059473 +Randall Bramley,Solving Linear Inequalities in a Least Squares Sense.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#BramleyW96,https://doi.org/10.1137/0917020 +Gennady Yu. Kulikov,Global Error Control in Adaptive Nordsieck Methods.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#Kulikov12,https://doi.org/10.1137/100791932 +Randolph E. Bank,A Weakly Overlapping Domain Decomposition Preconditioner for the Finite Element Solution of Elliptic Partial Differential Equations.,2002,23,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc23.html#BankJNN02,https://doi.org/10.1137/S1064827501361425 +Mofdi El-Amrani,An L2-Projection for the Galerkin-Characteristic Solution of Incompressible Flows.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#El-AmraniS11,https://doi.org/10.1137/100805790 +S. A. Goreinov,Wedderburn Rank Reduction and Krylov Subspace Method for Tensor Approximation. Part 1: Tucker Case.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#GoreinovOS12,https://doi.org/10.1137/100792056 +Jennifer L. Mueller,Direct Reconstructions of Conductivities from Boundary Measurements.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#MuellerS03,https://doi.org/10.1137/S1064827501394568 +Michele Benzi,A Direct Projection Method for Sparse Linear Systems.,1995,16,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc16.html#BenziM95,https://doi.org/10.1137/0916067 +Markus Brenk,Numerical Simulation of Particle Transport in a Drift Ratchet.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#BrenkBMMNW08,https://doi.org/10.1137/070692212 +Weiming Cao,Anisotropic Measures of Third Order Derivatives and the Quadratic Interpolation Error on Triangular Elements.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#Cao07,https://doi.org/10.1137/050634700 +Ronald B. Morgan,GMRES with Deflated Restarting.,2002,24,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc24.html#Morgan02,https://doi.org/10.1137/S1064827599364659 +Zhijun Tan,An Immersed Interface Method for the Incompressible Navier--Stokes Equations with Discontinuous Viscosity Across the Interface.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#TanLLK09,https://doi.org/10.1137/080712970 +Insu Han,Approximating Spectral Sums of Large-Scale Matrices using Stochastic Chebyshev Approximations.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#HanMAS17,https://doi.org/10.1137/16M1078148 +Roland Glowinski,A Simple Explicit Operator-Splitting Method for Effective Hamiltonians.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#GlowinskiLQ18,https://doi.org/10.1137/17M1137322 +Loyce Adams,New Geometric Immersed Interface Multigrid Solvers.,2004,25,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc25.html#AdamsC04,https://doi.org/10.1137/S1064827503421707 +Dexuan Xie,New Parallel SOR Method by Domain Partitioning.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#XieA99,https://doi.org/10.1137/S1064827597303370 +Mario Amrein,Fully Adaptive Newton-Galerkin Methods for Semilinear Elliptic Partial Differential Equations.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#AmreinW15,https://doi.org/10.1137/140983537 +Marie E. Rognes,Automated Goal-Oriented Error Control I: Stationary Variational Problems.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#RognesL13,https://doi.org/10.1137/10081962X +Shu-Lin Wu,Convergence Analysis of Schwarz Waveform Relaxation with Convolution Transmission Conditions.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#WuX17,https://doi.org/10.1137/16M1072620 +Johann Rudi,Weighted BFBT Preconditioner for Stokes Flow Problems with Highly Heterogeneous Viscosity.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#RudiSG17,https://doi.org/10.1137/16M108450X +Jeonghun J. Lee,Parameter-Robust Discretization and Preconditioning of Biot's Consolidation Model.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#LeeMW17,https://doi.org/10.1137/15M1029473 +Hillel Tal-Ezer,The Iterative Solver RISOLV with Application to the Exterior Helmholtz Problem.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#Tal-EzerT10,https://doi.org/10.1137/08072454X +Zhongxiao Jia,An Approach to Making SPAI and PSAI Preconditioning Effective for Large Irregular Sparse Linear Systems.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#JiaZ13,https://doi.org/10.1137/120900800 +Alex Toth,Local Improvement Results for Anderson Acceleration with Inaccurate Function Evaluations.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#TothEEHKPS17,https://doi.org/10.1137/16M1080677 +Boris N. Khoromskij,Multigrid Accelerated Tensor Approximation of Function Related Multidimensional Arrays.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#KhoromskijK09,https://doi.org/10.1137/080730408 +Tan Bui-Thanh,Model Reduction for Large-Scale Systems with High-Dimensional Parametric Input Space.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#Bui-ThanhWG08,https://doi.org/10.1137/070694855 +Manuel Jesús Castro Díaz,A Class of Computationally Fast First Order Finite Volume Solvers: PVM Methods.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#DiazF12,https://doi.org/10.1137/100795280 +Victoria E. Howle,Block Preconditioners for Coupled Physics Problems.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#HowleKD13,https://doi.org/10.1137/120883086 +Dongbin Xiu,Numerical Methods for Differential Equations in Random Domains.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#XiuT06,https://doi.org/10.1137/040613160 +James Weldon Demmel,Computing Connecting Orbits via an Improved Algorithm for Continuing Invariant Subspaces.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#DemmelDF00,https://doi.org/10.1137/S1064827598344868 +Chunwan Lv,Error Analysis of a High Order Method for Time-Fractional Diffusion Equations.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#LvX16,https://doi.org/10.1137/15M102664X +Rafail V. Abramov,Quantifying Uncertainty for Non-Gaussian Ensembles in Complex Systems.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#AbramovM04,https://doi.org/10.1137/S1064827503426310 +Jean Michel Fiard,First-Order System Least Squares (FOSLS) for Convection-Diffusion Problems: Numerical Results.,1998,19,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc19.html#FiardMM98,https://doi.org/10.1137/S1064827596301169 +Thomas G. Wright,Large-Scale Computation of Pseudospectra Using ARPACK and Eigs.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#WrightT01,https://doi.org/10.1137/S106482750037322X +Eveline Rosseel,Iterative Solvers for the Stochastic Finite Element Method.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#RosseelV10,https://doi.org/10.1137/080727026 +David Bindel,Continuation of Invariant Subspaces in Large Bifurcation Problems.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#BindelDF08,https://doi.org/10.1137/060654219 +James J. Brannick,Optimal Interpolation and Compatible Relaxation in Classical Algebraic Multigrid.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#BrannickCKFH18,https://doi.org/10.1137/17M1123456 +Raphaël M. Jungers,Fast Methods for Computing the p-Radius of Matrices.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#JungersP11,https://doi.org/10.1137/090777906 +Jesse L. Barlow,On the Use of Structural Zeros in Orthogonal Factorization.,1990,11,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc11.html#Barlow90,https://doi.org/10.1137/0911034 +Edmond Kwan-yu Chiu,A Conservative Mesh-Free Scheme and Generalized Framework for Conservation Laws.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#ChiuWHJ12,https://doi.org/10.1137/110842740 +Gilles Vilmart,Weak Second Order Multirevolution Composition Methods for Highly Oscillatory Stochastic Differential Equations with Additive or Multiplicative Noise.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#Vilmart14,https://doi.org/10.1137/130935331 +Felix Friedrich,Efficient Moment Computation over Polygonal Domains with an Application to Rapid Wedgelet Approximation.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#FriedrichDFW07,https://doi.org/10.1137/050646597 +Arta A. Jamshidi,A Radial Basis Function Algorithm with Automatic Model Order Determination.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#JamshidiK15,https://doi.org/10.1137/130948252 +Zhaojun Bai,A New Preprocessing Algorithm for the Computation of the Generalized Singular Value Decomposition.,1993,14,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc14.html#BaiZ93,https://doi.org/10.1137/0914060 +Max Gunzburger,Optimal Control of Stochastic Flow over a Backward-Facing Step Using Reduced-Order Modeling.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#GunzburgerM11,https://doi.org/10.1137/100817279 +Marie E. Rognes,Efficient Assembly of $H(\mathrmdiv) and H(\mathrmcurl)$ Conforming Finite Elements.,2009,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#RognesKL09,https://doi.org/10.1137/08073901X +Zhilin Li,New Formulations for Interface Problems in Polar Coordinates.,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#LiWCL03,https://doi.org/10.1137/S106482750139618X +Ronald F. Boisvert,Algorithms for Special Tridiagonal Systems.,1991,12,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc12.html#Boisvert91,https://doi.org/10.1137/0912023 +David S. Watkins,Shifting Strategies for the Parallel QR Algorithm.,1994,15,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc15.html#Watkins94,https://doi.org/10.1137/0915057 +Mario Putti,Finite Element Approximation of the Diffusion Operator on Tetrahedra.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#PuttiC98,https://doi.org/10.1137/S1064827595290711 +Jun Zhu,New Finite Volume Weighted Essentially Nonoscillatory Schemes on Triangular Meshes.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#ZhuQ18,https://doi.org/10.1137/17M1112790 +Wu Li,A Data Smoothing Technique for Piecewise Convex/Concave Curves.,1996,17,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc17.html#LiNS96,https://doi.org/10.1137/S1064827592239822 +Joseph G. Ecker,Performance of Several Optimization Methods on Robot Trajectory Planning Problems.,1994,15,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc15.html#EckerKM94,https://doi.org/10.1137/0915084 +Jens Struckmeier,A Steady-State Particle Method for the Boltzmann Equation.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#Struckmeier99,https://doi.org/10.1137/S106482759833317X +Vivek Sarin,An Efficient Iterative Method for the Generalized Stokes Problem.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#SarinS98,https://doi.org/10.1137/S106482759630365X +Simone Cacace,A Generalized Newton Method for Homogenization of Hamilton-Jacobi Equations.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#CacaceC16,https://doi.org/10.1137/16M1058613 +William D. Gropp,Parallel Performance of Domain-Decomposed Preconditioned Krylov Methods for PDEs with Locally Uniform Refinement.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#GroppK92,https://doi.org/10.1137/0913008 +Fayssal Benkhaldoun,Solution of the Sediment Transport Equations Using a Finite Volume Method Based on Sign Matrix.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#BenkhaldounSS09,https://doi.org/10.1137/080727634 +Miroslav Bacák,A Second Order Nonsmooth Variational Model for Restoring Manifold-Valued Images.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#BacakBSW16,https://doi.org/10.1137/15M101988X +Xiaoge Wang,CIMGS: An Incomplete Orthogonal FactorizationPreconditioner.,1997,18,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc18.html#WangGB97,https://doi.org/10.1137/S1064827594268270 +Maojun Li,Maximum-Principle-Satisfying and Positivity-Preserving High Order Central Discontinuous Galerkin Methods for Hyperbolic Conservation Laws.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#LiLLX16,https://doi.org/10.1137/16M1070001 +Zhiqiang Sheng,A Nine Point Scheme for the Approximation of Diffusion Operators on Distorted Quadrilateral Meshes.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#ShengY08,https://doi.org/10.1137/060665853 +Pascal Havé,Algebraic Domain Decomposition Methods for Highly Heterogeneous Problems.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#HaveMNSXZ13,https://doi.org/10.1137/110842648 +Peter N. Brown,On Mesh-Independent Convergence of an Inexact Newton-Multigrid Algorithm.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#BrownVW03,https://doi.org/10.1137/S1064827502407822 +Michael K. Ng,Recursive-Based PCG Methods for Toeplitz Systems with Nonnegative Generating Functions.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#NgSJ03,https://doi.org/10.1137/S1064827500378155 +Jan S. Hesthaven,A Stable Penalty Method for the Compressible Navier-Stokes Equations: II. One-Dimensional Domain Decomposition Schemes.,1997,18,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc18.html#Hesthaven97,https://doi.org/10.1137/S1064827594276540 +Knud D. Andersen,An Efficient Primal-Dual Interior-Point Method for Minimizing a Sum of Euclidean Norms.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#AndersenCCO00,https://doi.org/10.1137/S1064827598343954 +Daniel Baffet,Double Absorbing Boundary Formulations for Acoustics and Elastodynamics.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#BaffetHG14,https://doi.org/10.1137/130928728 +Xinwei Liu,A Robust Algorithm for Optimization with General Equality and Inequality Constraints.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#LiuY00,https://doi.org/10.1137/S1064827598334861 +Marc Garbey,Asymptotic-Numerical Study of Supersensitivity for Generalized Burgers' Equations.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#GarbeyK00,https://doi.org/10.1137/S1064827598342201 +Paul G. Constantine,A Factorization of the Spectral Galerkin System for Parameterized Matrix Equations: Derivation and Applications.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#ConstantineGI11,https://doi.org/10.1137/100799046 +Eduardo F. D'Azevedo,Optimal Triangular Mesh Generation by Coordinate Transformation.,1991,12,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc12.html#DAzevedo91,https://doi.org/10.1137/0912040 +Kundan Kumar,Reactive Flow and Reaction-Induced Boundary Movement in a Thin Channel.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#KumarWW13,https://doi.org/10.1137/130913134 +Louis F. Rossi,Evaluation of the Biot-Savart Integral for Deformable Elliptical Gaussian Vortex Elements.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#Rossi06a,https://doi.org/10.1137/050637789 +Yair Shapira,Multigrid for Locally Refined Meshes.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#Shapira99,https://doi.org/10.1137/S1064827597316564 +Dhavide A. Aruliah,Multigrid Preconditioning for Krylov Methods for Time-Harmonic Maxwell's Equations in Three Dimensions.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#AruliahA02,https://doi.org/10.1137/S1064827501387358 +Giovanni F. Gronchi,On the Stationary Points of the Squared Distance between Two Ellipses with a Common Focus.,2002,24,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc24.html#Gronchi02,https://doi.org/10.1137/S1064827500374170 +Ruihan Guo,Local Discontinuous Galerkin Method and High Order Semi-Implicit Scheme for the Phase Field Crystal Equation.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#GuoX16,https://doi.org/10.1137/15M1038803 +Arvind K. Saibaba,Fast Algorithms for Hyperspectral Diffuse Optical Tomography.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#SaibabaKMF15,https://doi.org/10.1137/140990073 +Leland Jameson,The Differentiation Matrix for Daubechies-Based Wavelets on an Interval.,1996,17,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc17.html#Jameson96,https://doi.org/10.1137/S1064827593260176 +Barbara I. Wohlmuth,Monotone Multigrid Methods on Nonmatching Grids for Nonlinear Multibody Contact Problems.,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#WohlmuthK03,https://doi.org/10.1137/S1064827502405318 +Patrick Amestoy,Parallel Computation of Entries of A-1.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#AmestoyDLR15,https://doi.org/10.1137/120902616 +Christophe Chalons,Large Time Step and Asymptotic Preserving Numerical Schemes for the Gas Dynamics Equations with Source Terms.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#ChalonsGK13,https://doi.org/10.1137/130908671 +Esteban Moro,Boundary Preserving Semianalytic Numerical Algorithms for Stochastic Differential Equations.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#MoroS07,https://doi.org/10.1137/05063725X +Zhong-Zhi Bai,On Greedy Randomized Kaczmarz Method for Solving Large Sparse Linear Systems.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#BaiW18,https://doi.org/10.1137/17M1137747 +Simone Cacace,Can Local Single-Pass Methods Solve Any Stationary Hamilton-Jacobi-Bellman Equation?,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#CacaceCF14,https://doi.org/10.1137/130907707 +Lina Meinecke,Analysis and Design of Jump Coefficients in Discrete Stochastic Diffusion Models.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#MeineckeEHL16,https://doi.org/10.1137/15M101110X +Daniel Y. Le Roux,A New Triangular Finite-Element with Optimum Constraint Ratio for Compressible Fluids.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#Roux01,https://doi.org/10.1137/S1064827500367403 +M. J. Del Razo,Numerical Methods for Interface Coupling of Compressible and Almost Incompressible Media.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#RazoL17,https://doi.org/10.1137/16M1067834 +Mo Mu,A Linearized Crank-Nicolson-Galerkin Method for the Ginzburg-Landau Model.,1997,18,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc18.html#Mu97,https://doi.org/10.1137/S1064827595283756 +Fabian M. Buchmann,An Exit Probability Approach to Solving High Dimensional Dirichlet Problems.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#BuchmannP06,https://doi.org/10.1137/050622201 +C. J. Budd,Moving Mesh Generation Using the Parabolic Monge--Amp[e-grave]re Equation.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#BuddW09,https://doi.org/10.1137/080716773 +Stanley C. Eisenstat,Efficient Polynomial Preconditioning for the Conjugate Gradient Method.,1990,11,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc11.html#EisenstatOV90,https://doi.org/10.1137/0911051 +Lennaert van Veen,On Matrix-Free Computation of 2D Unstable Manifolds.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#VeenKA11,https://doi.org/10.1137/100789804 +Panayot S. Vassilevski,Finite Difference Schemes on Triangular Cell-Centered Grids with Local Refinement.,1992,13,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc13.html#VassilevskiPL92,https://doi.org/10.1137/0913073 +Thomas G. Fai,Immersed Boundary Method for Variable Viscosity and Variable Density Problems Using Fast Constant-Coefficient Linear Solvers I: Numerical Method and Results.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#FaiGMP13,https://doi.org/10.1137/120903038 +Achi Brandt,Multiscale Algorithm for Atmospheric Data Assimilation.,1997,18,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc18.html#BrandtZ97,https://doi.org/10.1137/S106482759528942X +Scott MacLachlan,A Greedy Strategy for Coarse-Grid Selection.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#MacLachlanS07,https://doi.org/10.1137/060654062 +Roland Hunt,Three-Dimensional Flow in a General Tube Using a Combination of Finite and Pseudospectral Discretisations.,1995,16,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc16.html#Hunt95,https://doi.org/10.1137/0916033 +Johannes Tausch,Multiscale Bases for the Sparse Representation of Boundary Integral Operators on Complex Geometry.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#TauschW03,https://doi.org/10.1137/S1064827500369451 +Thomas Wick,An Error-Oriented Newton/Inexact Augmented Lagrangian Approach for Fully Monolithic Phase-Field Fracture Propagation.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#Wick17,https://doi.org/10.1137/16M1063873 +Chao Yang 0002,A Scalable Fully Implicit Compressible Euler Solver for Mesoscale Nonhydrostatic Simulation of Atmospheric Flows.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#YangC14,https://doi.org/10.1137/130919167 +J. Fohring,Geophysical Imaging of Fluid Flow in Porous Media.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#FohringHR14,https://doi.org/10.1137/130925232 +Robert D. Skeel,A Method for the Spatial Discretization of Parabolic Equations in One Space Variable.,1990,11,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc11.html#SkeelB90,https://doi.org/10.1137/0911001 +Christo I. Christov,A Fourier-Series Method for Solving Soliton Problems.,1990,11,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc11.html#ChristovB90,https://doi.org/10.1137/0911037 +Bert J. Debusschere,Numerical Challenges in the Use of Polynomial Chaos Representations for Stochastic Processes.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#DebusschereNPKGM04,https://doi.org/10.1137/S1064827503427741 +T. Carraro,Indirect Multiple Shooting for Nonlinear Parabolic Optimal Control Problems with Control Constraints.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#CarraroGR14,https://doi.org/10.1137/120895809 +Luca F. Pavarino,Parallel Multilevel Schwarz and Block Preconditioners for the Bidomain Parabolic-Parabolic and Parabolic-Elliptic Formulations.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#PavarinoS11,https://doi.org/10.1137/100808721 +Romain Aubry,An Entropy Satisfying Boundary Layer Surface Mesh Generation.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#AubryDMKG15,https://doi.org/10.1137/140963625 +Rachel Kuske,Gradient-Particle Solutions of Fokker-Planck Equations for Noisy Delay Bifurcations.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#Kuske00,https://doi.org/10.1137/S1064827599350332 +Andrew T. Barker,Spectral Upscaling for Graph Laplacian Problems with Application to Reservoir Simulation.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#BarkerLV17,https://doi.org/10.1137/16M1077581 +Juan C. Meza,A Multigrid Preconditioner for the Semiconductor Equations.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#MezaT96,https://doi.org/10.1137/0917010 +Eldad Haber,An Octree Method for Parametric Image Registration.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#HaberHM07,https://doi.org/10.1137/060662605 +Maria Elizabeth G. Ong,Uniform Refinement of a Tetrahedron.,1994,15,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc15.html#Ong94,https://doi.org/10.1137/0915070 +Marian Brezina,Adaptive Algebraic Multigrid.,2006,27,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc27.html#BrezinaFMMMR06,https://doi.org/10.1137/040614402 +Johan Hoffman,Computation of Mean Drag for Bluff Body Problems Using Adaptive DNS/LES.,2005,27,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc27.html#Hoffman05,https://doi.org/10.1137/040614463 +Carsten Carstensen,Averaging Techniques for the Effective Numerical Solution of Symm's Integral Equation of the First Kind.,2006,27,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc27.html#CarstensenP06,https://doi.org/10.1137/040609033 +Awad H. Al-Mohy,New Algorithms for Computing the Matrix Sine and Cosine Separately or Simultaneously.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#Al-MohyHR15,https://doi.org/10.1137/140973979 +Tamara G. Kolda,Special Section on Two Themes: Planet Earth and Big Data.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#KoldaY14,https://doi.org/10.1137/130973727 +D. Noutsos,Two-level Toeplitz preconditioning: approximation results for matrices and functions.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#NoutsosCV06,https://doi.org/10.1137/050627046 +Daniel Drzisga,Scheduling Massively Parallel Multigrid for Multilevel Monte Carlo Methods.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#DrzisgaGRSW17,https://doi.org/10.1137/16M1083591 +Zydrunas Gimbutas,Coulomb Interactions on Planar Structures: Inverting the Square Root of the Laplacian.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#GimbutasGM01,https://doi.org/10.1137/S1064827599361199 +Ning Hu,Multi-P Methods: Iterative Algorithms for the P-Version of the Finite Element Analysis.,1995,16,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc16.html#HuK95,https://doi.org/10.1137/0916076 +Horst D. Simon,Low-Rank Matrix Approximation Using the Lanczos Bidiagonalization Process with Applications.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#SimonZ00,https://doi.org/10.1137/S1064827597327309 +J. H. Adler,Error Analysis for Constrained First-Order System Least-Squares Finite-Element Methods.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#AdlerV14,https://doi.org/10.1137/130943091 +C.-S. Chien,A Two-Grid Discretization Scheme for Semilinear Elliptic Eigenvalue Problems.,2006,27,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc27.html#ChienJ06,https://doi.org/10.1137/030602447 +Shi Jin,A Micro-Macro Decomposition-Based Asymptotic-Preserving Scheme for the Multispecies Boltzmann Equation.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#JinS10,https://doi.org/10.1137/090756077 +Léopold Cambier,Robust Low-Rank Matrix Completion by Riemannian Optimization.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#CambierA16,https://doi.org/10.1137/15M1025153 +Chiara Puglisi,Modification of the Householder Method Based on the Compact WY Representation.,1992,13,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc13.html#Puglisi92,https://doi.org/10.1137/0913042 +Christoph Ortner,Atomistic/Continuum Blending with Ghost Force Correction.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#Ortner016,https://doi.org/10.1137/15M1020241 +Andrew J. Christlieb,Parallel High-Order Integrators.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#ChristliebMO10,https://doi.org/10.1137/09075740X +S. N. Papakostas,High Phase-Lag-Order Runge-Kutta and Nyström Pairs.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#PapakostasT99,https://doi.org/10.1137/S1064827597315509 +Xianyi Zeng,A General Approach to Enhance Slope Limiters in MUSCL Schemes on Nonuniform Rectilinear Grids.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#Zeng16,https://doi.org/10.1137/140970185 +Giancarlo Sangalli,Isogeometric Preconditioners Based on Fast Solvers for the Sylvester Equation.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#SangalliT16,https://doi.org/10.1137/16M1062788 +Eric C. Cyr,Teko: A Block Preconditioning Capability with Concrete Example Applications in Navier-Stokes and MHD.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#CyrST16,https://doi.org/10.1137/15M1017946 +Ernesto G. Birgin,Robust Stopping Criteria for Dykstra's Algorithm.,2005,26,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc26.html#BirginR05,https://doi.org/10.1137/03060062X +Yat Tin Chow,Analysis on a Nonnegative Matrix Factorization and Its Applications.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#ChowIZ16,https://doi.org/10.1137/15M1020824 +Nick Vannieuwenhoven,Computing the Gradient in Optimization Algorithms for the CP Decomposition in Constant Memory through Tensor Blocking.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#Vannieuwenhoven15,https://doi.org/10.1137/14097968X +Jennifer Pestana,Efficient Block Preconditioning for a C1 Finite Element Discretization of the Dirichlet Biharmonic Problem.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#PestanaMHTM16,https://doi.org/10.1137/15M1014887 +Joab R. Winkler,High Order Terms for Condition Estimation of Univariate Polynomials.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#Winkler06,https://doi.org/10.1137/050629239 +Jesper Karlsson,An Error Estimate for Symplectic Euler Approximation of Optimal Control Problems.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#KarlssonLSST15,https://doi.org/10.1137/140959481 +S. P. Hirshman,Dynamic Database Generation for Efficient Calculation of Stellarator Plasma Equilibria.,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#HirshmanBJ04,https://doi.org/10.1137/S106482750342458X +Leslie V. Foster,The Probability of Large Diagonal Elements in the QR Factorization.,1990,11,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc11.html#Foster90,https://doi.org/10.1137/0911030 +Ronny Richter,Discrete Differential Forms for (1+1)-Dimensional Cosmological Space-Times.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#RichterF10,https://doi.org/10.1137/080734583 +Eric de Sturler,Block-Diagonal and Constraint Preconditioners for Nonsymmetric Indefinite Linear Systems. Part I: Theory.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#SturlerL05,https://doi.org/10.1137/S1064827502411006 +Herbert Egger,A Robust Conservative Mixed Finite Element Method for Isentropic Compressible Flow on Pipe Networks.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#Egger18,https://doi.org/10.1137/16M1094373 +Michael R. Osborne,A Modified Prony Algorithm for Fitting Functions Defined by Difference Equations.,1991,12,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc12.html#OsborneS91,https://doi.org/10.1137/0912020 +Bruce Turkington,Statistical Equilibrium Computations of Coherent Structures in Turbulent Shear Layers.,1996,17,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc17.html#TurkingtonW96,https://doi.org/10.1137/S1064827593251708 +Adam C. Zelinski,Simultaneously Sparse Solutions to Linear Inverse Problems with Multiple System Matrices and a Single Observation Vector.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#ZelinskiGA10,https://doi.org/10.1137/080730822 +Jingu Kim,Fast Nonnegative Matrix Factorization: An Active-Set-Like Method and Comparisons.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#KimP11,https://doi.org/10.1137/110821172 +Gennady Y. Kulikov,Estimating the State in Stiff Continuous-Time Stochastic Systems within Extended Kalman Filtering.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#KulikovK16,https://doi.org/10.1137/15M1039833 +Jie Shen 0001,Efficient Spectral Sparse Grid Methods and Applications to High-Dimensional Elliptic Equations II. Unbounded Domains.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#ShenY12,https://doi.org/10.1137/110834950 +Anita T. Layton,A Semi-Lagrangian Semi-Implicit Numerical Method for Models of the Urine Concentrating Mechanism.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#LaytonL02,https://doi.org/10.1137/S1064827500381781 +I. D. L. Bogle,A New Sparsity Preserving Quasi-Newton Update for Solving Nonlinear Equations.,1990,11,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc11.html#BogleP90,https://doi.org/10.1137/0911036 +Axel Klar,Asymptotic-Induced Domain Decomposition Methods for Kinetic and Drift Diffusion Semiconductor Equations.,1998,19,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc19.html#Klar98,https://doi.org/10.1137/S1064827595286177 +Laura Grigori,Hypergraph-Based Unsymmetric Nested Dissection Ordering for Sparse LU Factorization.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#GrigoriBDD10,https://doi.org/10.1137/080720395 +Edmond Chow,Fine-Grained Parallel Incomplete LU Factorization.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#ChowP15,https://doi.org/10.1137/140968896 +Fang Fang 0002,A Novel Pricing Method for European Options Based on Fourier-Cosine Series Expansions.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#FangO08,https://doi.org/10.1137/080718061 +Enver Kayaaslan,Partitioning Hypergraphs in Scientific Computing Applications through Vertex Separators on Graphs.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#KayaaslanPCA12,https://doi.org/10.1137/100810022 +Jianguo Xin,Numerical Solution of an Inverse Problem of Imaging of Antipersonnel Land Mines By the Globally Convergent Convexification Algorithm.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#XinK08,https://doi.org/10.1137/070691206 +Alfio Borzì,Multigrid Optimization Schemes for Solving Bose-Einstein Condensate Control Problems.,2008,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#BorziH08,https://doi.org/10.1137/070686135 +Sergio Amat,On a Power WENO Scheme with Improved Accuracy Near Discontinuities.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#AmatLRT17,https://doi.org/10.1137/17M1122098 +Lars Ferm,The Number of Coarse-Grid Iterations Every Cycle for the Two-Grid Method.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#Ferm98,https://doi.org/10.1137/S1064827592234314 +Bernard Bialecki,An Alternating-Direction Implicit Orthogonal Spline Collocation Scheme for Nonlinear Parabolic Problems on Rectangular Polygons.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#BialeckiF06,https://doi.org/10.1137/050627885 +Kalvis M. Jansons,Exponential Timestepping with Boundary Test for Stochastic Differential Equations.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#JansonsL03,https://doi.org/10.1137/S1064827501399535 +Ralf Hannemann,Continuous and Discrete Composite Adjoints for the Hessian of the Lagrangian in Shooting Algorithms for Dynamic Optimization.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#HannemannM10,https://doi.org/10.1137/080714518 +Chun-Hua Guo,The Matrix Equation X+ATX-1A=Q and Its Application in Nano Research.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#GuoL10,https://doi.org/10.1137/090758209 +Jie Shen 0001,Efficient Spectral Sparse Grid Methods and Applications to High-Dimensional Elliptic Problems.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#ShenY10a,https://doi.org/10.1137/100787842 +Francis Filbet,Numerical Simulation of the Smoluchowski Coagulation Equation.,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#FilbetL04,https://doi.org/10.1137/S1064827503429132 +James H. Bramble,Analysis of V-Cycle Multigrid Algorithms for Forms Defined by Numerical Quadrature.,1994,15,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc15.html#BrambleGP94,https://doi.org/10.1137/0915037 +Luca F. Pavarino,Preconditioned Mixed Spectral Element Methods for Elasticity and Stokes Problems.,1998,19,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc19.html#Pavarino98,https://doi.org/10.1137/S1064827596307142 +Pin T. Ng,Smoothing Spline Score Estimation.,1994,15,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc15.html#Ng94,https://doi.org/10.1137/0915061 +Blanca Ayuso de Dios,A Combined Preconditioning Strategy for Nonsymmetric Systems.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#DiosBV14,https://doi.org/10.1137/120888946 +Tony F. Chan,Boundary Treatments for Multilevel Methods on Unstructured Meshes.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#ChanGZ99,https://doi.org/10.1137/S1064827596310056 +Bruce N. Lundberg,Variable Order Adams-Bashforth Predictors with an Error-Stepsize Control for Continuation Methods.,1991,12,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc12.html#LundbergP91,https://doi.org/10.1137/0912037 +Jan Nordström,The Fringe Region Technique and the Fourier Method Used in the Direct Numerical Simulation of Spatially Evolving Viscous Flows.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#NordstromNH99,https://doi.org/10.1137/S1064827596310251 +Armin Lechleiter,A Floquet-Bloch Transform Based Numerical Method for Scattering from Locally Perturbed Periodic Surfaces.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#LechleiterZ17,https://doi.org/10.1137/16M1104111 +Matania Ben-Artzi,A Fast Direct Solver for the Biharmonic Problem in a Rectangular Grid.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#Ben-ArtziCF08,https://doi.org/10.1137/070694168 +Raz Kupferman,A Numerical Study of the Axisymmetric Couette-Taylor Problem Using a Fast High-Resolution Second-Order Central Scheme.,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#Kupferman98,https://doi.org/10.1137/S1064827597318009 +Tony F. Chan,Preserving Symmetry in Preconditioned Krylov Subspace Methods.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#ChanCSY98,https://doi.org/10.1137/S1064827596311554 +Robert Bridson,Multiresolution Approximate Inverse Preconditioners.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#BridsonT01,https://doi.org/10.1137/S1064827500373784 +Lingfei Wu,A Preconditioned Hybrid SVD Method for Accurately Computing Singular Triplets of Large Matrices.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#WuS15,https://doi.org/10.1137/140979381 +Ebrahim M. Kolahdouz,Electrohydrodynamics of Three-Dimensional Vesicles: A Numerical Approach.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#KolahdouzS15,https://doi.org/10.1137/140988966 +Jussi Rahola,On the Eigenvalues of the Volume Integral Operator of Electromagnetic Scattering.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#Rahola00,https://doi.org/10.1137/S1064827598338962 +Loïc Giraldi,"To Be or Not to Be Intrusive? The Solution of Parametric and Stochastic Equations - the ""Plain Vanilla"" Galerkin Case.",2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#GiraldiLLMN14,https://doi.org/10.1137/130942802 +Thomas F. Coleman,A Parallel Nonlinear Least-Squares Solver: Theoretical Analysis and Numerical Results.,1992,13,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc13.html#ColemanP92,https://doi.org/10.1137/0913046 +Stefan Henn,Multimodal Image Registration Using a Variational Approach.,2004,25,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc25.html#HennW04,https://doi.org/10.1137/S1064827502201424 +Graham Horton,A Space-Time Multigrid Method for Parabolic Partial Differential Equations.,1995,16,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc16.html#HortonV95,https://doi.org/10.1137/0916050 +Christian Soize,Physical Systems with Random Uncertainties: Chaos Representations with Arbitrary Probability Measure.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#SoizeG04,https://doi.org/10.1137/S1064827503424505 +Homer F. Walker,An Adaptation of Krylov Subspace Methods to Path Following Problems.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#Walker99,https://doi.org/10.1137/S1064827597315376 +Mila Nikolova,On and#54465*1 Data Fitting and Concave Regularization for Image Recovery.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#NikolovaNT13,https://doi.org/10.1137/10080172X +Aaron Luttman,Erratum: A Variational Approach to Video Segmentation for Botanical Data.,2008,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#LuttmanB08,https://doi.org/10.1137/070700036 +Burak Aksoylu,Multilevel Solvers for Unstructured Surface Meshes.,2005,26,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc26.html#AksoyluKS05,https://doi.org/10.1137/S1064827503430138 +Qingfang Dai,RKDG Finite Element Method Combined with BGK Scheme for Solving Fluid Dynamics System.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#DaiY06,https://doi.org/10.1137/040618783 +Ivo Babuska,The Splitting Method as a Tool for Multiple Damage Analysis.,2005,26,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc26.html#BabuskaA05,https://doi.org/10.1137/S1064827502417167 +Edward Rothberg,Efficient Methods for Out-of-Core Sparse Cholesky Factorization.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#RothbergS99,https://doi.org/10.1137/S1064827597322975 +Misha Elena Kilmer,A Projection-Based Approach to General-Form Tikhonov Regularization.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#KilmerHE07,https://doi.org/10.1137/050645592 +Yoshio Komori,Weak Second Order Explicit Exponential Runge-Kutta Methods for Stochastic Differential Equations.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#KomoriCB17,https://doi.org/10.1137/15M1041341 +W. Wu,Rotating Waves from Hopf Bifurcations in Equations with O(2)-Symmetry.,1994,15,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc15.html#WuAS94,https://doi.org/10.1137/0915033 +Christian Clason,A Forward Approach to Numerical Data Assimilation.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#ClasonH09,https://doi.org/10.1137/090746240 +R. Mannella,Numerical Stochastic Integration for Quasi-Symplectic Flows.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#Mannella06,https://doi.org/10.1137/040620965 +John Bell,Three-Dimensional Adaptive Mesh Refinement for Hyperbolic Conservation Laws.,1994,15,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc15.html#BellBSW94,https://doi.org/10.1137/0915008 +Michele Benzi,An Efficient Solver for the Incompressible Navier-Stokes Equations in Rotation Form.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#BenziL07,https://doi.org/10.1137/060658825 +Nathaniel Trask,A High-Order Staggered Meshless Method for Elliptic Problems.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#TraskPB17,https://doi.org/10.1137/16M1055992 +Bruno Carpentieri,Combining Fast Multipole Techniques and an Approximate Inverse Preconditioner for Large Electromagnetism Calculations.,2005,27,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc27.html#CarpentieriDGS05,https://doi.org/10.1137/040603917 +Andrew T. T. McRae,Automated Generation and Symbolic Manipulation of Tensor Product Finite Elements.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#McRaeBMHC16,https://doi.org/10.1137/15M1021167 +Tien-Yien Li,Parallel Homotopy Algorithm for the Symmetric Tridiagonal Eigenvalue Problem.,1991,12,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc12.html#LiZS91,https://doi.org/10.1137/0912026 +Chunxiong Zheng,Numerical Solution to the Sine-Gordon Equation Defined on the Whole Real Axis.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#Zheng07,https://doi.org/10.1137/050640643 +Tsz Wai Wong,Computing Surface Uniformization Using Discrete Beltrami Flow.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#WongZ15,https://doi.org/10.1137/130939183 +Christoph Reisinger,Efficient Hierarchical Approximation of High-Dimensional Option Pricing Problems.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#ReisingerW07,https://doi.org/10.1137/060649616 +Marica Pelanti,Wave Structure Similarity of the HLLC and Roe Riemann Solvers: Application to Low Mach Number Preconditioning.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#Pelanti18,https://doi.org/10.1137/17M1154965 +Rolf Krause,A Nonsmooth Multiscale Method for Solving Frictional Two-Body Contact Problems in 2D and 3D with Multigrid Efficiency.,2009,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#Krause09,https://doi.org/10.1137/070682514 +Jeffrey S. Ovall,A High-Order Method for Evaluating Derivatives of Harmonic Functions in Planar Domains.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#OvallR18,https://doi.org/10.1137/17M1141825 +Mika Malinen,Boundary Conditions in the Schur Complement Preconditioning of Dissipative Acoustic Equations.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#Malinen07,https://doi.org/10.1137/050629720 +Leonardo E. Figueroa,Augmented Mixed Finite Element Methods for the Stationary Stokes Equations.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#FigueroaGM08,https://doi.org/10.1137/080713069 +Stefano Berrone,An Adaptive WEM Algorithm for Solving Elliptic Boundary Value Problems in Fairly General Domains.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#BerroneK06,https://doi.org/10.1137/04062014X +Moon-Chuen Lee,Fast Three-Dimensional Discrete Cosine Transform.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#LeeCA08,https://doi.org/10.1137/070693370 +Anshul Gupta,Adaptive Techniques for Improving the Performance of Incomplete Factorization Preconditioning.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#GuptaG10,https://doi.org/10.1137/080727695 +Nick Vannieuwenhoven,IMF: An Incomplete Multifrontal LU-Factorization for Element-Structured Sparse Linear Systems.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#VannieuwenhovenM13,https://doi.org/10.1137/100818996 +Stephen J. Wright,Parallel Algorithms for Banded Linear Systems.,1991,12,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc12.html#Wright91,https://doi.org/10.1137/0912044 +Andreas Glaser,A Fast Algorithm for the Calculation of the Roots of Special Functions.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#GlaserLR07,https://doi.org/10.1137/06067016X +Dimitris J. Kavvadias,Efficiently Computing Many Roots of a Function.,2005,27,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc27.html#KavvadiasMV05,https://doi.org/10.1137/S1064827502406531 +Anders Logg,Multi-Adaptive Galerkin Methods for ODEs II: implementation and Applications.,2004,25,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc25.html#Logg04,https://doi.org/10.1137/S1064827501389734 +Chong Gu,Interaction Splines with Regular Data: Automatically Smoothing Digital Images.,1993,14,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc14.html#Gu93,https://doi.org/10.1137/0914012 +Xuemin Tu,Three-Level BDDC in Three Dimensions.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#Tu07,https://doi.org/10.1137/050629902 +Martin Christiansen,Deblurring Methods Using Antireflective Boundary Conditions.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#ChristiansenH08,https://doi.org/10.1137/060671413 +Boris Diskin,Half-Space Analysis of the Defect-Correction Method for Fromm Discretization of Convection.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#DiskinT00,https://doi.org/10.1137/S1064827599358637 +Chunguang Li,CGNR Is an Error Reducing Algorithm.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#Li01,https://doi.org/10.1137/S1064827500375990 +Seongjai Kim,An O(N) Level Set Method for Eikonal Equations.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#Kim01,https://doi.org/10.1137/S1064827500367130 +Stanley C. Eisenstat,Exploiting Structural Symmetry in a Sparse Partial Pivoting Code.,1993,14,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc14.html#EisenstatL93,https://doi.org/10.1137/0914016 +Dongbin Xiu,High-Order Collocation Methods for Differential Equations with Random Inputs.,2005,27,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc27.html#XiuH05,https://doi.org/10.1137/040615201 +Ryan A. Rossi,Parallel Maximum Clique Algorithms with Applications to Network Analysis.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#RossiGG15,https://doi.org/10.1137/14100018X +Panayot S. Vassilevski,2004 Copper Mountain Conference.,2006,27,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc27.html#Vassilevski06, +Aziz Madrane,Three-Dimensional Adaptive Central Schemes on Unstructured Staggered Grids.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#MadraneV09,https://doi.org/10.1137/06066240X +Jinglai Li,Adaptive Construction of Surrogates for the Bayesian Solution of Inverse Problems.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#LiM14,https://doi.org/10.1137/130938189 +Bernard Bialecki,Fourier Matrix Decomposition Methods for the Least Squares Solution of Singular Neumann and Periodic Hermite Bicubic Collocation Problems.,1995,16,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc16.html#BialeckiR95,https://doi.org/10.1137/0916027 +Kendall E. Atkinson,Piecewise Polynomial Collocation for Boundary Integral Equations.,1995,16,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc16.html#AtkinsonC95,https://doi.org/10.1137/0916040 +Andreas Mang,A Semi-Lagrangian Two-Level Preconditioned Newton-Krylov Solver for Constrained Diffeomorphic Image Registration.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#MangB17,https://doi.org/10.1137/16M1070475 +Hadi Pouransari,Fast Hierarchical Solvers For Sparse Matrices Using Extended Sparsification and Low-Rank Approximation.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#PouransariCD17,https://doi.org/10.1137/15M1046939 +Tan Bui-Thanh,Construction and Analysis of HDG Methods for Linearized Shallow Water Equations.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#Bui-Thanh16,https://doi.org/10.1137/16M1057243 +Tsung-Min Hwang,Numerical Solution of Quadratic Eigenvalue Problems with Structure-Preserving Methods.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#HwangLM03,https://doi.org/10.1137/S106482750139220X +Kazufumi Ito,Lagrange Multiplier Approach with Optimized Finite Difference Stencils for Pricing American Options under Stochastic Volatility.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#ItoT09,https://doi.org/10.1137/07070574X +Jing-Rebecca Li,A Fast Time Stepping Method for Evaluating Fractional Integrals.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#Li10,https://doi.org/10.1137/080736533 +Kookjin Lee,A Preconditioned Low-Rank Projection Method with a Rank-Reduction Scheme for Stochastic Partial Differential Equations.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#LeeE17,https://doi.org/10.1137/16M1075582 +Alfredo Cutolo,An Upwind-Euler Scheme for an ODE-PDE Model of Supply Chains.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#CutoloPR11,https://doi.org/10.1137/090767479 +Jeffrey J. Heys,On Mass-Conserving Least-Squares Methods.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#HeysLMM06,https://doi.org/10.1137/050640928 +Jesse Chan,A Short Note on a Bernstein-Bezier Basis for the Pyramid.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#ChanW16a,https://doi.org/10.1137/15M1036397 +Michele Benzi,Preconditioning Highly Indefinite and Nonsymmetric Matrices.,2000,22,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc22.html#BenziHT00,https://doi.org/10.1137/S1064827599361308 +Chris Fraley,Large-Scale Estimation of Variance and Covariance Components.,1995,16,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc16.html#FraleyB95,https://doi.org/10.1137/0916013 +Shucheng Pan,A Consistent Analytical Formulation for Volume Estimation of Geometries Enclosed by Implicitly Defined Surfaces.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#PanHA18,https://doi.org/10.1137/17M1126370 +Irad Yavneh,Fast Multigrid Solution of the Advection Problem with Closed Characteristics.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#YavnehVB98,https://doi.org/10.1137/S1064827596302989 +Emil M. Constantinescu,Optimal Explicit Strong-Stability-Preserving General Linear Methods.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#ConstantinescuS10a,https://doi.org/10.1137/090766206 +Zhenning Cai,A Quantum Kinetic Monte Carlo Method for Quantum Many-Body Spin Dynamics.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#CaiL18,https://doi.org/10.1137/17M1145446 +Frank E. Curtis,An Interior-Point Algorithm for Large-Scale Nonlinear Optimization with Inexact Step Computations.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#CurtisSW10,https://doi.org/10.1137/090747634 +Burak Aksoylu,An Odyssey into Local Refinement and Multilevel Preconditioning III: Implementation and Numerical Experiments.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#AksoyluBH03,https://doi.org/10.1137/S1064827502407676 +Mark W. Reichelt,Optimal Convolution SOR Acceleration of Waveform Relaxation with Application to Parallel Simulation of Semiconductor Devices.,1995,16,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc16.html#ReicheltWA95,https://doi.org/10.1137/0916066 +Emmanuel Audusse,Optimized Schwarz Waveform Relaxation for the Primitive Equations of the Ocean.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#AudusseDM10,https://doi.org/10.1137/090770059 +Mario Ohlberger,A Dimensional Reduction Approach Based on the Application of Reduced Basis Methods in the Framework of Hierarchical Model Reduction.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#OhlbergerS14,https://doi.org/10.1137/130939122 +Ajay Jasra,Bayesian Static Parameter Estimation for Partially Observed Diffusions via Multilevel Monte Carlo.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#JasraKLZ18,https://doi.org/10.1137/17M1112595 +Ning Hu,Multi-p Preconditioners.,1997,18,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc18.html#HuGK97,https://doi.org/10.1137/S1064827595279368 +Hyea Hyun Kim,A FETI--DP Formulation for the Three-Dimensional Stokes Problem without Primal Pressure Unknowns.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#KimL10,https://doi.org/10.1137/090777335 +Eugene Vecharynski,Graph Partitioning Using Matrix Values for Preconditioning Symmetric Positive Definite Systems.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#VecharynskiSS14,https://doi.org/10.1137/120898760 +Shi Jin,Efficient Asymptotic-Preserving (AP) Schemes For Some Multiscale Kinetic Equations.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#Jin99,https://doi.org/10.1137/S1064827598334599 +Konrad Simon,A Hyperelastic Two-Scale Optimization Model for Shape Matching.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#SimonSJB17,https://doi.org/10.1137/15M1048562 +K. Barmak,Towards a Statistical Theory of Texture Evolution in Polycrystals.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#BarmakEGKT08,https://doi.org/10.1137/070692352 +Terry Haut,An Asymptotic Parallel-in-Time Method for Highly Oscillatory PDEs.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#HautW14,https://doi.org/10.1137/130914577 +William G. Litvinov,A Modified TV-Stokes Model for Image Processing.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#LitvinovRT11,https://doi.org/10.1137/080727506 +Andreas Pedersen,Efficient Sampling of Saddle Points with the Minimum-Mode Following Method.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#PedersenHJ11,https://doi.org/10.1137/100792743 +Bruce Hendrickson,The Torus-Wrap Mapping for Dense Matrix Calculations on Massively Parallel Computers.,1994,15,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc15.html#HendricksonW94,https://doi.org/10.1137/0915074 +Burhan Sadiq,Barycentric Hermite Interpolation.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#SadiqV13,https://doi.org/10.1137/110833221 +Xingzhi Zhan,Computing the Extremal Positive Definite Solutions of a Matrix Equation.,1996,17,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc17.html#Zhan96,https://doi.org/10.1137/S1064827594277041 +José A. Carrillo,Numerical Simulation of Diffusive and Aggregation Phenomena in Nonlinear Continuity Equations by Evolving Diffeomorphisms.,2009,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#CarrilloM09,https://doi.org/10.1137/080739574 +Weizhu Bao,Computing Ground States of Spin-1 Bose-Einstein Condensates by the Normalized Gradient Flow.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#BaoL08,https://doi.org/10.1137/070698488 +Gerhard Starke,Subspace Orthogonalization for Substructuring Preconditioners for Non-self-adjoint Elliptic Problems.,1997,18,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc18.html#Starke97,https://doi.org/10.1137/S106482759325908X +Bjørn Fredrik Nielsen,Analysis of the Minimal Residual Method Applied to Ill Posed Optimality Systems.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#NielsenM13,https://doi.org/10.1137/120871547 +Ambady Suresh,Positivity-Preserving Schemes in Multidimensions.,2000,22,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc22.html#Suresh00,https://doi.org/10.1137/S1064827599360443 +Wolfgang Mackens,Computing the Minimum Eigenvalue of a Symmetric Positive Definite Toeplitz Matrix by Newton-type Methods.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#MackensV99,https://doi.org/10.1137/S1064827598342195 +Jörg Grande,Eulerian Finite Element Methods for Parabolic Equations on Moving Surfaces.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#Grande14,https://doi.org/10.1137/130920095 +Zhiqiang Cai,First-Order System Least Squares For Linear Elasticity: Numerical Results.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#CaiLMM00,https://doi.org/10.1137/S1064827598338640 +Karol Mikula,Manifold Evolution with Tangential Redistribution of Points.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#MikulaRSS14,https://doi.org/10.1137/130927668 +Ping Lin 0001,Long Time Numerical Solution of the Navier--Stokes Equations Based on a Sequential Regularization Formulation.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#LinLL08,https://doi.org/10.1137/060673722 +René Milk,pyMOR - Generic Algorithms and Interfaces for Model Order Reduction.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#MilkRS16,https://doi.org/10.1137/15M1026614 +Robert Bartnik,Numerical Methods for the Einstein Equations in Null Quasi-Spherical Coordinates.,2000,22,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc22.html#BartnikN00,https://doi.org/10.1137/S1064827599356171 +Hongjiong Tian,Continuous Block Theta-Methods for Ordinary and Delay Differential Equations.,2009,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#TianSK09,https://doi.org/10.1137/080730779 +Mehiddin Al-Baali,On the Order of Convergence of Preconditioned Nonlinear Conjugate Gradient Methods.,1996,17,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc17.html#Al-BaaliF96,https://doi.org/10.1137/S1064827591194303 +Andrew P. Kuprat,Modeling Microstructure Evolution Using Gradient-Weighted Moving Finite Elements.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#Kuprat00,https://doi.org/10.1137/S1064827598348374 +Jiequan Li,A Two-Stage Fourth Order Time-Accurate Discretization for Lax-Wendroff Type Flow Solvers I. Hyperbolic Conservation Laws.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#LiD16,https://doi.org/10.1137/15M1052512 +Raymond H. Chan,A Family of Block Preconditioners for Block Systems.,1992,13,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc13.html#ChanJ92,https://doi.org/10.1137/0913070 +Rafael Bru,Preconditioned Iterative Methods for Solving Linear Least Squares Problems.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#BruMMT14,https://doi.org/10.1137/130931588 +Martin B. van Gijzen,Spectral Analysis of the Discrete Helmholtz Operator Preconditioned with a Shifted Laplacian.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#GijzenEV07,https://doi.org/10.1137/060661491 +Lei Tang,Uniformly Accurate Finite Difference Schemes for p-Refinement.,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#TangB98,https://doi.org/10.1137/S1064827596308354 +Marlis Hochbruck,Exponential Integrators for Large Systems of Differential Equations.,1998,19,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc19.html#HochbruckLS98,https://doi.org/10.1137/S1064827595295337 +Xiaoliang Wan,The Wick-Malliavin Approximation of Elliptic Problems with Log-Normal Random Coefficients.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#WanR13,https://doi.org/10.1137/130918605 +Serhat Yesilyurt,Bayesian-Validated Surrogates for Noisy Computer Simulations* Application to Random Media.,1996,17,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc17.html#YesilyurtGCP96,https://doi.org/10.1137/0917063 +Weigang Wang,Special Bilinear Quadrilateral Elements For Locally Refined Finite Element Grids.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#Wang01,https://doi.org/10.1137/S1064827599358911 +Alessio Spantini,Optimal Low-rank Approximations of Bayesian Linear Inverse Problems.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#SpantiniSCMTM15,https://doi.org/10.1137/140977308 +Mario Arioli,Block Lanczos Techniques for Accelerating the Block Cimmino Method.,1995,16,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc16.html#ArioliDRS95,https://doi.org/10.1137/0916086 +Abdou M. Abdel-Rehim,Deflated and Restarted Symmetric Lanczos Methods for Eigenvalues and Linear Equations with Multiple Right-Hand Sides.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#Abdel-RehimMNW10,https://doi.org/10.1137/080727361 +Roy Mathias,The Instability of Parallel Prefix Matrix Multiplication.,1995,16,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc16.html#Mathias95,https://doi.org/10.1137/0916056 +Peter Benner,Two-Sided Projection Methods for Nonlinear Model Order Reduction.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#BennerB15,https://doi.org/10.1137/14097255X +Zi-Xing Xing,A Distributed-Memory Randomized Structured Multifrontal Method for Sparse Direct Solutions.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#XingXHCB17,https://doi.org/10.1137/16M1079221 +David Amsallem,An Online Method for Interpolating Linear Parametric Reduced-Order Models.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#AmsallemF11,https://doi.org/10.1137/100813051 +Yat Tin Chow,Cyclic Coordinate-Update Algorithms for Fixed-Point Problems: Analysis and Applications.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#ChowWY17,https://doi.org/10.1137/16M1102653 +Shmuel Rippa,Adaptive Approximation by Piecewise Linear Polynomials on Triangulations of Subsets of Scattered Data.,1992,13,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc13.html#Rippa92,https://doi.org/10.1137/0913065 +Lorella Fatone,Optimal Collocation Nodes for Fractional Derivative Operators.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#FatoneF15,https://doi.org/10.1137/140993697 +Daniela Calvetti,Tikhonov Regularization with a Solution Constraint.,2004,26,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc26.html#CalvettiR04,https://doi.org/10.1137/S1064827502412280 +Ralph E. Carlson,A Bivariate Interpolation Algorithm for Data that are Monotone in One Variable.,1991,12,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc12.html#CarlsonF91,https://doi.org/10.1137/0912046 +Jussi Rahola,Solution of Dense Systems of Linear Equations in the Discrete-Dipole Approximation.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#Rahola96,https://doi.org/10.1137/0917007 +Mardochée Magolu monga Made,Dynamically Relaxed Block Incomplete Factorizations for Solving Two- and Three-Dimensional Problems.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#MadeN00,https://doi.org/10.1137/S1064827596311591 +Sebastian Noelle,A Weakly Asymptotic Preserving Low Mach Number Scheme for the Euler Equations of Gas Dynamics.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#NoelleBALM14,https://doi.org/10.1137/120895627 +Xuping Xie,Data-Driven Filtered Reduced Order Modeling of Fluid Flows.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#XieMRI18,https://doi.org/10.1137/17M1145136 +Yonghong Zeng,Fast Computation of MD-DCT-IV/MD-DST-IV by MD-DWT or MD-DCT-II.,2003,24,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc24.html#ZengLBC03,https://doi.org/10.1137/S1064827501394830 +Carsten Carstensen,A Posteriori Error Control in Adaptive Qualocation Boundary Element Analysis for a Logarithmic-Kernel Integral Equation of the First Kind.,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#CarstensenP03,https://doi.org/10.1137/S1064827501399006 +Miklós Homolya,A Parallel Edge Orientation Algorithm for Quadrilateral Meshes.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#HomolyaH16,https://doi.org/10.1137/15M1021325 +Shing-Tung Yau,Reducing the Symmetric Matrix Eigenvalue Problem to Matrix Multiplications.,1993,14,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc14.html#YauL93,https://doi.org/10.1137/0914008 +Alexei Lozinski,An Anisotropic Error Estimator for the Crank--Nicolson Method: Application to a Parabolic Problem.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#LozinskiPP09,https://doi.org/10.1137/080715135 +Louis H. Howell,A Modified Schwarz-Christoffel Transformation for Elongated Regions.,1990,11,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc11.html#HowellT90,https://doi.org/10.1137/0911054 +Daniel Busby,Hierarchical Nonlinear Approximation for Experimental Design and Statistical Data Fitting.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#BusbyFI07,https://doi.org/10.1137/050639983 +Robert I. McLachlan,The Multisymplectic Diamond Scheme.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#McLachlanW15,https://doi.org/10.1137/140958359 +Paul D. Hovland,Efficient Derivative Codes through Automatic Differentiation and Interface Contraction: An Application in Biostatistics.,1997,18,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc18.html#HovlandBSC97,https://doi.org/10.1137/S1064827595281800 +Xin He,Combining the Augmented Lagrangian Preconditioner with the Simple Schur Complement Approximation.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#HeVK18,https://doi.org/10.1137/17M1144775 +Boris Kramer,System Identification via CUR-Factored Hankel Approximation.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#KramerG18,https://doi.org/10.1137/17M1137632 +Tobias Jahnke,An Adaptive Wavelet Method for the Chemical Master Equation.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#Jahnke10,https://doi.org/10.1137/080742324 +Sadok Lamine,Higher Order Multidimensional Upwind Convection Schemes for Flow in Porous Media on Structured and Unstructured Quadrilateral Grids.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#LamineE10,https://doi.org/10.1137/080727750 +Ian G. Graham,Unstructured Additive Schwarz-Conjugate Gradient Method for Elliptic Problems with Highly Discontinuous Coefficients.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#GrahamH99,https://doi.org/10.1137/S1064827596305593 +Alan J. Laub,Statistical Condition Estimation for the Roots of Polynomials.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#LaubX08,https://doi.org/10.1137/070702242 +Stephan Schmidt,Weak and Strong Form Shape Hessians and Their Automatic Generation.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#Schmidt18,https://doi.org/10.1137/16M1099972 +Roland Griesmaier,Inverse Source Problems for Maxwell's Equations and the Windowed Fourier Transform.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#GriesmaierMS18,https://doi.org/10.1137/17M1150943 +Francesc Aràndiga,Fast Multiresolution Algorithms for Solving Linear Equations: A Comparative Study.,1995,16,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc16.html#ArandigaCD95,https://doi.org/10.1137/0916037 +Robert D. Russell,On the Structure of Jacobians for Spectral Methods for Nonlinear Partial Differential Equations.,1992,13,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc13.html#RussellST92,https://doi.org/10.1137/0913030 +Xiangxiong Zhang,Maximum-principle-satisfying High Order Finite Volume Weighted Essentially Nonoscillatory Schemes for Convection-diffusion Equations.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#ZhangLS12,https://doi.org/10.1137/110839230 +Howard C. Elman,Preconditioning Techniques for Reduced Basis Methods for Parameterized Elliptic Partial Differential Equations.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#ElmanF15,https://doi.org/10.1137/140970859 +Steve Bryson,Central Schemes for Multidimensional Hamilton-Jacobi Equations.,2003,25,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc25.html#BrysonL03,https://doi.org/10.1137/S1064827501394969 +Pascal Hénon,A Parallel Multistage ILU Factorization Based on a Hierarchical Graph Decomposition.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#HenonS06,https://doi.org/10.1137/040608258 +Philip W. Sharp,Explicit Runge-Kutta Pairs with One More Derivative Evaluation than the Minimum.,1993,14,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc14.html#SharpS93,https://doi.org/10.1137/0914021 +Bradley M. Bell,A Statistical Model and Estimation of Disease Rates as Functions of Age and Time.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#BellF13,https://doi.org/10.1137/120872413 +Simon Etter,Parallel ALS Algorithm for Solving Linear Systems in the Hierarchical Tucker Representation.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#Etter16,https://doi.org/10.1137/15M1038852 +Jonathan D. Hogg,Design of a Multicore Sparse Cholesky Factorization Using DAGs.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#HoggRS10,https://doi.org/10.1137/090757216 +Ann S. Almgren,A Cartesian Grid Projection Method for the Incompressible Euler Equations in Complex Geometries.,1997,18,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc18.html#AlmgrenBCM97,https://doi.org/10.1137/S1064827594273730 +Roland W. Freund,An Implementation of the QMR Method Based on Coupled Two-Term Recurrences.,1994,15,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc15.html#FreundN94,https://doi.org/10.1137/0915022 +Arta A. Jamshidi,Towards a Black Box Algorithm for Nonlinear Function Approximation over High-Dimensional Domains.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#JamshidiK07,https://doi.org/10.1137/050646457 +Paul O. Frederickson,Normalized Convergence Rates for the PSMG Method.,1991,12,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc12.html#FredericksonM91,https://doi.org/10.1137/0912012 +N. Anders Petersson,Computing Periodic Gravity Waves on Water by Using Moving Composite Overlapping Grids.,1993,14,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc14.html#Petersson93,https://doi.org/10.1137/0914079 +Szymon Jaroszewicz,Arithmetic Operations on Independent Random Variables: A Numerical Approach.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#JaroszewiczK12,https://doi.org/10.1137/110839680 +Howard C. Elman,Fast Nonsymmetric Iterations and Preconditioning for Navier-Stokes Equations.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#ElmanS96,https://doi.org/10.1137/0917004 +Damaris Hermey,Fitting Data with Errors in All Variables Using the Huber M-estimator.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#HermeyW99,https://doi.org/10.1137/S106482759731823X +Miguel A. Fernández,Explicit Coupling Schemes for a Fluid-Fluid Interaction Problem Arising in Hemodynamics.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#FernandezGS14,https://doi.org/10.1137/130948653 +Eleanor Chu,Parallel Algorithms and Subcube Embedding on a Hypercube.,1993,14,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc14.html#ChuG93,https://doi.org/10.1137/0914006 +Elisabeth Larsson,A Least Squares Radial Basis Function Partition of Unity Method for Solving PDEs.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#LarssonSH17,https://doi.org/10.1137/17M1118087 +M. Lukácová-Medvidová,Finite Volume Evolution Galerkin Methods for Hyperbolic Systems.,2004,26,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc26.html#Lukacova-MedvidovaMW04,https://doi.org/10.1137/S1064827502419439 +Robert W. Anderson,High-Order Multi-Material ALE Hydrodynamics.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#AndersonDKRT18,https://doi.org/10.1137/17M1116453 +Anthony Pajot,Globally Adaptive Control Variate for Robust Numerical Integration.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#PajotBP14,https://doi.org/10.1137/130937846 +Johann Guilleminot,Itô SDE-based Generator for a Class of Non-Gaussian Vector-valued Random Fields in Uncertainty Quantification.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#GuilleminotS14,https://doi.org/10.1137/130948586 +P. Wilders,Schwarz and Schur: An Algebraical Note on Equivalence Properties.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#WildersB99,https://doi.org/10.1137/S1064827596305234 +Haibiao Zheng,A Posteriori Error Estimates of Stabilization of Low-Order Mixed Finite Elements for Incompressible Flow.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#ZhengHS10,https://doi.org/10.1137/090771508 +M. Ableidinger,Splitting Integrators for the Stochastic Landau-Lifshitz Equation.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#AbleidingerB16,https://doi.org/10.1137/15M103529X +Wanrong Cao,Numerical Methods for Stochastic Delay Differential Equations Via the Wong-Zakai Approximation.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#CaoZK15,https://doi.org/10.1137/130942024 +Jan Hegemann,An Explicit Update Scheme for Inverse Parameter and Interface Estimation of Piecewise Constant Coefficients in Linear Elliptic PDEs.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#HegemannCRT13,https://doi.org/10.1137/110834500 +Fausto Cavalli,Discontinuous Galerkin Approximation of Relaxation Models for Linear and Nonlinear Diffusion Equations.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#CavalliNP12,https://doi.org/10.1137/110827752 +Gregorio Quintana-Ortí,A BLAS-3 Version of the QR Factorization with Column Pivoting.,1998,19,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc19.html#Quintana-OrtiSB98,https://doi.org/10.1137/S1064827595296732 +Ngai-Hang Z. Leung,An SDP-Based Divide-and-Conquer Algorithm for Large-Scale Noisy Anchor-Free Graph Realization.,2009,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#LeungT09,https://doi.org/10.1137/080733103 +Alen Alexanderian,A Fast and Scalable Method for A-Optimal Design of Experiments for Infinite-dimensional Bayesian Nonlinear Inverse Problems.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#AlexanderianPSG16,https://doi.org/10.1137/140992564 +Aly-Khan Kassam,Fourth-Order Time-Stepping for Stiff PDEs.,2005,26,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc26.html#KassamT05,https://doi.org/10.1137/S1064827502410633 +Per Lötstedt,A Minimal Residual Interpolation Method for Linear Equations with Multiple Right-Hand Sides.,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#LotstedtN04,https://doi.org/10.1137/S106482750241877X +Gian Luca Delzanno,Generalized Monge-Kantorovich Optimization for Grid Generation and Adaptation in Lp.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#DelzannoF10,https://doi.org/10.1137/090749785 +Siddhartha Mishra,Multilevel Monte Carlo Finite Volume Methods for Shallow Water Equations with Uncertain Topography in Multi-dimensions.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#MishraSS12,https://doi.org/10.1137/110857295 +Jeffery Allen,A Fluidity-Based First-Order System Least-Squares Method for Ice Sheets.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#AllenLMR17,https://doi.org/10.1137/140974973 +Ebrahim M. Kolahdouz,A Semi-implicit Gradient Augmented Level Set Method.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#KolahdouzS13,https://doi.org/10.1137/120871237 +Ludovic Métivier,Full Waveform Inversion and the Truncated Newton Method.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#MetivierBVO13,https://doi.org/10.1137/120877854 +Alex H. Barnett,An Exponentially Convergent Nonpolynomial Finite Element Method for Time-Harmonic Scattering from Polygons.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#BarnettB10,https://doi.org/10.1137/090768667 +Benjamin E. Sonday,Eigenvalues of the Jacobian of a Galerkin-Projected Uncertain ODE System.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#SondayBND11,https://doi.org/10.1137/100785922 +Tariq Aslam,A static PDE Approach for MultiDimensional Extrapolation Using Fast Sweeping Methods.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#AslamLZ14,https://doi.org/10.1137/140956919 +Eric Barth,A Time-Reversible Variable-Stepsize Integrator for Constrained Dynamics.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#BarthLR99,https://doi.org/10.1137/S1064827596314194 +Roland Hunt,Three-Dimensional Steady Flow in a Dividing Channel Using Finite and Pseudospectral Differences.,1996,17,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc17.html#Hunt96,https://doi.org/10.1137/S1064827594271950 +J. Alex Lee,A New Stabilization of Adaptive Step Trapezoid Rule Based on Finite Difference Interrupts.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#LeeNP15,https://doi.org/10.1137/140966915 +C.-S. Chien,Mode Jumping In The Von Kármán Equations.,2000,22,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc22.html#ChienGM00,https://doi.org/10.1137/S1064827596307324 +Kurt Lust,An Adaptive Newton-Picard Algorithm with Subspace Iteration for Computing Periodic Solutions.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#LustR98,https://doi.org/10.1137/S1064827594277673 +Laurent O. Jay,Improved Quasi-Steady-State-Approximation Methods for Atmospheric Chemistry Integration.,1997,18,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc18.html#JaySPC97,https://doi.org/10.1137/S1064827595283033 +Tommy Elfving,Unmatched Projector/Backprojector Pairs: Perturbation and Convergence Analysis.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#ElfvingH18,https://doi.org/10.1137/17M1133828 +J. H. Adler,Efficiency Based Adaptive Local Refinement for First-Order System Least-Squares Formulations.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#AdlerMMNRT11,https://doi.org/10.1137/100786897 +Nathan Bell,Exposing Fine-Grained Parallelism in Algebraic Multigrid Methods.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#BellDO12,https://doi.org/10.1137/110838844 +Edward J. C. Hall,hp-Adaptive Discontinuous Galerkin Methods for Neutron Transport Criticality Problems.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#HallHM17,https://doi.org/10.1137/16M1079944 +Eddie Wadbro,Microwave Tomography Using Topology Optimization Techniques.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#WadbroB08,https://doi.org/10.1137/070679879 +Michel J. Daydé,Element-by-Element Preconditioners for Large Partially Separable Optimization Problems.,1997,18,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc18.html#DaydeLG97,https://doi.org/10.1137/S1064827594274796 +Gunther Reissig,Differential-Algebraic Equations of Index 1 May Have an Arbitrarily High Structural Index.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#ReissigMB00,https://doi.org/10.1137/S1064827599353853 +Rex A. Kerr,Fast Monte Carlo Simulation Methods for Biological Reaction-Diffusion Systems in Solution and on Surfaces.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#KerrBKDCBSS08,https://doi.org/10.1137/070692017 +Junping Wang,A Robust Numerical Method for Stokes Equations Based on Divergence-Free H(div) Finite Element Methods.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#WangWY09,https://doi.org/10.1137/080730044 +Alessio Fumagalli,Dual Virtual Element Method for Discrete Fractures Networks.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#FumagalliK18,https://doi.org/10.1137/16M1098231 +Carmen Campos,Parallel Krylov Solvers for the Polynomial Eigenvalue Problem in SLEPc.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#CamposR16,https://doi.org/10.1137/15M1022458 +Julia Springer,Adjoint-Based Optimization for Rigid Body Motion in Multiphase Navier-Stokes Flow.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#SpringerU15,https://doi.org/10.1137/140974511 +David Colton,A Regularized Sampling Method for Solving Three-Dimensional Inverse Scattering Problems.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#ColtonGM00,https://doi.org/10.1137/S1064827598340159 +Yiorgos Sokratis Smyrlis,The Method of Fundamental Solutions for Stationary Heat Conduction Problems in Rotationally Symmetric Domains.,2006,27,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc27.html#SmyrlisK06,https://doi.org/10.1137/040615213 +Christian Lage,Wavelet Galerkin Algorithms for Boundary Integral Equations.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#LageS99,https://doi.org/10.1137/S1064827597329989 +Nejib Smaoui,Timely Communication: Symmetry and the Karhunen-Loève Analysis.,1997,18,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc18.html#SmaouiA97,https://doi.org/10.1137/S1064827596309694 +Edmond Chow,Preconditioned Krylov Subspace Methods for Sampling Multivariate Gaussian Distributions.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#ChowS14,https://doi.org/10.1137/130920587 +Djano Kandaswamy,Analytic Sensing: Noniterative Retrieval of Point Sources from Boundary Measurements.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#KandaswamyBV09,https://doi.org/10.1137/080712829 +Walter Acevedo,Second-order Accurate Ensemble Transform Particle Filters.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#AcevedoWR17,https://doi.org/10.1137/16M1095184 +V. Buyarov,Computation of the Entropy of Polynomials Orthogonal on an Interval.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#BuyarovSMS04,https://doi.org/10.1137/S1064827503426711 +Penny J. Davies,Convolution-in-Time Approximations of Time Domain Boundary Integral Equations.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#DaviesD13,https://doi.org/10.1137/120881907 +Dongfang Li,Unconditionally Convergent L1-Galerkin FEMs for Nonlinear Time-Fractional Schrödinger Equations.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#LiWZ17,https://doi.org/10.1137/16M1105700 +Yunfeng Xiong,An Advective-Spectral-Mixed Method for Time-Dependent Many-Body Wigner Simulations.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#XiongCS16,https://doi.org/10.1137/15M1051373 +Todd Arbogast,A Fully Mass and Volume Conserving Implementation of a Characteristic Method for Transport Problems.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#ArbogastH06,https://doi.org/10.1137/040621077 +Alexandre Caboussat,An Alternating Direction Method of Multipliers for the Numerical Solution of a Fully Nonlinear Partial Differential Equation Involving the Jacobian Determinant.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#CaboussatG18,https://doi.org/10.1137/16M1094075 +Marcus Webb,Stability of Barycentric Interpolation Formulas for Extrapolation.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#WebbTG12,https://doi.org/10.1137/110848797 +Harold R. Parks,Numerical Approximation of Parametric Oriented Area-Minimizing Hypersurfaces.,1992,13,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc13.html#Parks92,https://doi.org/10.1137/0913027 +Sven Groß,Parallel Multilevel Tetrahedral Grid Refinement.,2005,26,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc26.html#GrossR05,https://doi.org/10.1137/S1064827503425237 +Todd Arbogast,A Fully Conservative Eulerian-Lagrangian Stream-Tube Method for Advection-Diffusion Problems.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#ArbogastHH12,https://doi.org/10.1137/110840376 +Amir Averbuch,A Framework for Discrete Integral Transformations II-The 2D Discrete Radon Transform.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#AverbuchCDISS08,https://doi.org/10.1137/060650301 +Jorge Balbas,Nonoscillatory Central Schemes for One- and Two-Dimensional Magnetohydrodynamics Equations. II: High-Order SemiDiscrete Schemes.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#BalbasT06,https://doi.org/10.1137/040610246 +Andrey N. Chernikov,Generalized Insertion Region Guides for Delaunay Mesh Refinement.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#ChernikovC12,https://doi.org/10.1137/100809076 +Thomas K. DeLillo,A Comparison of some Numerical Conformal Mapping Methods for Exterior Regions.,1991,12,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc12.html#DeLilloE91,https://doi.org/10.1137/0912022 +Mohamed M. S. Nasser,Numerical Conformal Mapping via a Boundary Integral Equation with the Generalized Neumann Kernel.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#Nasser09,https://doi.org/10.1137/070711438 +Doron Levy,Compact Central WENO Schemes for Multidimensional Conservation Laws.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#LevyPR00,https://doi.org/10.1137/S1064827599359461 +Chao Jin,Parallel Domain Decomposition Methods for Stochastic Elliptic Equations.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#JinCL07,https://doi.org/10.1137/060662381 +Adam W. Bojanczyk,Stability Analysis of a Householder-Based Algorithm for Downdating the Cholesky Factorization.,1991,12,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc12.html#BojanczykS91,https://doi.org/10.1137/0912067 +Larry L. Schumaker,On Generalized Cross Validation for Tensor Smoothing Splines.,1990,11,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc11.html#SchumakerU90,https://doi.org/10.1137/0911042 +Mofdi El-Amrani,A Galerkin-Characteristic Method for Large-Eddy Simulation of Turbulent Flow and Heat Transfer.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#El-AmraniS08,https://doi.org/10.1137/080720711 +Louis F. Rossi,Merging Computational Elements in Vortex Simulations.,1997,18,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc18.html#Rossi97,https://doi.org/10.1137/S1064827595285287 +Patrick M. Knupp,A Framework for Variational Grid Generation: Conditioning the Jacobian Matrix with Matrix Norms.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#KnuppR00,https://doi.org/10.1137/S1064827598341633 +Jianlin Xia,Efficient Structured Multifrontal Factorization for General Large Sparse Matrices.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#Xia13,https://doi.org/10.1137/120867032 +Dong Han,Multigrid Methods for Second Order Hamilton-Jacobi-Bellman and Hamilton-Jacobi-Bellman-Isaacs Equations.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#HanW13,https://doi.org/10.1137/120881476 +S. Jain,A Hierarchical Multiresolution Adaptive Mesh Refinement for the Solution of Evolution PDEs.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#JainTZ08,https://doi.org/10.1137/070708329 +T. Gao,Mean Exit Time and Escape Probability for Dynamical Systems Driven by Lévy Noises.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#GaoDLS14,https://doi.org/10.1137/120897262 +Frederico F. Campos,An Efficient Solver for Multi-Right-Hand-Side Linear Systems Based on the CCCG(λ1*) Method with Applications to Implicit Time-Dependent Partial Differential Equations.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#CamposB98,https://doi.org/10.1137/S106482759630382X +Adam P. Harrison,High Performance Rearrangement and Multiplication Routines for Sparse Tensor Arithmetic.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#HarrisonJ18,https://doi.org/10.1137/17M1115873 +Marco Artina,Anisotropic Mesh Adaptation for Crack Detection In Brittle Materials.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#ArtinaFMP15,https://doi.org/10.1137/140970495 +Ralph C. Smith,A Galerkin Method for Linear PDE Systems in Circular Geometries with Structural Acoustic Problems.,1997,18,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc18.html#Smith97,https://doi.org/10.1137/S1064827594268531 +Carsten Burstedde,p4est: Scalable Algorithms for Parallel Adaptive Mesh Refinement on Forests of Octrees.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#BursteddeWG11,https://doi.org/10.1137/100791634 +Chunguang Sun,Parallel Sparse Orthogonal Factorization on Distributed-Memory Multiprocessors.,1996,17,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc17.html#Sun96,https://doi.org/10.1137/S1064827593260449 +Hehu Xie,Collocation Methods for General Volterra Functional Integral Equations with Vanishing Delays.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#XieZB11,https://doi.org/10.1137/100818595 +Stefano Micheletti,Output Functional Control for Nonlinear Equations Driven by Anisotropic Mesh Adaption: The Navier--Stokes Equations.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#MichelettiP08,https://doi.org/10.1137/070691930 +Zhaojun Bai,The Spectral Decomposition of Nonsymmetric Matrices on Distributed Memory Parallel Computers.,1997,18,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc18.html#BaiDDPRS97,https://doi.org/10.1137/S1064827595281368 +A. Rademacher,NCP Function-Based Dual Weighted Residual Error Estimators for Signorini's Problem.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#Rademacher16,https://doi.org/10.1137/15M1033873 +Paul G. Constantine,Model Reduction With MapReduce-enabled Tall and Skinny Singular Value Decomposition.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#ConstantineGHT14,https://doi.org/10.1137/130925219 +Kun Xu 0001,Discontinuous Galerkin BGK Method for Viscous Flow Equations: One-Dimensional Systems.,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#Xu04,https://doi.org/10.1137/S1064827502416113 +Ulrich Rüde,The Hierarchical Basis Extrapolation Method.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#Rude92,https://doi.org/10.1137/0913016 +Yidu Yang,The Shifted-Inverse Iteration Based on the Multigrid Discretizations for Eigenvalue Problems.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#YangBHY15,https://doi.org/10.1137/140992011 +Marina Spivak,The Fast Generalized Gauss Transform.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#SpivakVG10,https://doi.org/10.1137/100790744 +Junichi Imai,Pricing Derivative Securities Using Integrated Quasi-Monte Carlo Methods with Dimension Reduction and Discontinuity Realignment.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#ImaiT14,https://doi.org/10.1137/130926286 +Tony F. Chan,Some Applications of the Rank Revealing QR Factorization.,1992,13,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc13.html#ChanH92,https://doi.org/10.1137/0913043 +James Baglama,Adaptively Preconditioned GMRES Algorithms.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#BaglamaCGR98,https://doi.org/10.1137/S1064827596305258 +Pierre-David Létourneau,Cauchy Fast Multipole Method for General Analytic Kernels.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#LetourneauCD14,https://doi.org/10.1137/120891617 +Akil Narayan,A Stochastic Collocation Algorithm with Multifidelity Models.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#NarayanGX14,https://doi.org/10.1137/130929461 +Zhiqiang Cai,Multilevel Iteration for Mixed Finite Element Systems with Penalty.,1993,14,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc14.html#CaiGP93,https://doi.org/10.1137/0914065 +John Strain,Fast Adaptive Methods for the Free-Space Heat Equation.,1994,15,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc15.html#Strain94,https://doi.org/10.1137/0915013 +Brett W. Bader,On the Performance of Tensor Methods for Solving Ill-Conditioned Problems.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#BaderS07,https://doi.org/10.1137/040607745 +Justin W. L. Wan,A Boundary Condition-Capturing Multigrid Approach to Irregular Boundary Problems.,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#WanL04,https://doi.org/10.1137/S1064827503428540 +Morten Bjørhus,The ODE Formulation of Hyperbolic PDEs Discretized by the Spectral Collocation Method.,1995,16,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc16.html#Bjorhus95,https://doi.org/10.1137/0916035 +Wei Zhu 0003,Segmentation with Depth: A Level Set Approach.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#ZhuCE06,https://doi.org/10.1137/050622213 +Lidia Aceto,Rational Approximation to the Fractional Laplacian Operator in Reaction-Diffusion Problems.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#AcetoN17,https://doi.org/10.1137/16M1064714 +Alfredo Buttari,Fine-Grained Multithreading for the Multifrontal QR Factorization of Sparse Matrices.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#Buttari13,https://doi.org/10.1137/110846427 +Ossian O'Reilly,Simulation of Wave Propagation Along Fluid-Filled Cracks Using High-Order Summation-by-Parts Operators and Implicit-Explicit Time Stepping.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#OReillyDN17,https://doi.org/10.1137/16M1097511 +Mark Lyon,A Fast Algorithm for Fourier Continuation.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#Lyon11,https://doi.org/10.1137/11082436X +Julianne Chung,An Efficient Iterative Approach for Large-Scale Separable Nonlinear Inverse Problems.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#ChungN10,https://doi.org/10.1137/080732213 +Charles S. Kenney,Small-Sample Statistical Condition Estimates for General Matrix Functions.,1994,15,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc15.html#KenneyL94,https://doi.org/10.1137/0915003 +Catherine Hurley,Analyzing High-Dimensional Data with Motion Graphics.,1990,11,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc11.html#HurleyB90,https://doi.org/10.1137/0911068 +Raul Borsche,Kinetic Layers and Coupling Conditions for Macroscopic Equations on Networks I: The Wave Equation.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#BorscheK18,https://doi.org/10.1137/17M1138364 +Steffen Börm,Construction of Data-Sparse H2-Matrices by Hierarchical Compression.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#Borm09,https://doi.org/10.1137/080720693 +I. Yu. Gejadze,On Analysis Error Covariances in Variational Data Assimilation.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#GejadzeDS08,https://doi.org/10.1137/07068744X +Jorge Delgado,A Corner Cutting Algorithm for Evaluating Rational B[e-acute]zier Surfaces and the Optimal Stability of the Basis.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#DelgadoP07,https://doi.org/10.1137/060649148 +Stefan M. Wild,ORBIT: Optimization by Radial Basis Function Interpolation in Trust-Regions.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#WildRS08,https://doi.org/10.1137/070691814 +Stefan Güttel,Zolotarev Quadrature Rules and Load Balancing for the FEAST Eigensolver.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#GuttelPTV15,https://doi.org/10.1137/140980090 +Michael Steinlechner,Riemannian Optimization for High-Dimensional Tensor Completion.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#Steinlechner16,https://doi.org/10.1137/15M1010506 +Lorenzo Pareschi,Central Runge-Kutta Schemes for Conservation Laws.,2005,26,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc26.html#PareschiPR05,https://doi.org/10.1137/S1064827503420696 +Bei Wang,A Particle-in-cell Method with Adaptive Phase-space Remapping for Kinetic Plasmas.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#WangMC11,https://doi.org/10.1137/100811805 +Chen-Hung Wu,Simulation of Osmotic Swelling by the Stochastic Immersed Boundary Method.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#WuFAP15,https://doi.org/10.1137/14098404X +J. Tryoen,Adaptive Anisotropic Spectral Stochastic Methods for Uncertain Scalar Conservation Laws.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#TryoenME12,https://doi.org/10.1137/120863927 +Achi Brandt,Multilevel Evaluation of Integral Transforms with Asymptotically Smooth Kernels.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#BrandtV98,https://doi.org/10.1137/S106482759528555X +Maziar Raissi,Numerical Gaussian Processes for Time-Dependent and Nonlinear Partial Differential Equations.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#RaissiPK18,https://doi.org/10.1137/17M1120762 +G. W. Stewart,Adjusting the Rayleigh Quotient in Semiorthogonal Lanczos Methods.,2002,24,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc24.html#Stewart02,https://doi.org/10.1137/S1064827501388984 +Brett W. Bader,Efficient MATLAB Computations with Sparse and Factored Tensors.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#BaderK07,https://doi.org/10.1137/060676489 +Ivo Babuska,Efficient Solution of Anisotropic Lattice Equations by the Recovery Method.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#BabuskaS08,https://doi.org/10.1137/070690717 +G. von Winckel,A Globalized Newton Method for the Accurate Solution of a Dipole Quantum Control Problem.,2009,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#WinckelBV09,https://doi.org/10.1137/09074961X +Yong-Kang Zhu,A New Distillation Algorithm for Floating-Point Summation.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#ZhuYZ05,https://doi.org/10.1137/030602009 +Francisco José Gaspar,A Simple and Efficient Segregated Smoother for the Discrete Stokes Equations.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#GasparNOR14,https://doi.org/10.1137/130920630 +Daniel Gross,GPU-Based Volume Reconstruction from Very Few Arbitrarily Aligned X-Ray Images.,2009,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#GrossHSSS09,https://doi.org/10.1137/080736739 +Michael Herty,Discrete-Velocity Models and Relaxation Schemes for Traffic Flows.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#HertyPS06,https://doi.org/10.1137/04061982X +Andreas Frommer,Restarted GMRES for Shifted Linear Systems.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#FrommerG98,https://doi.org/10.1137/S1064827596304563 +Alfonso Caiazzo,Projection Schemes for Fluid Flows through a Porous Interface.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#CaiazzoFGM11,https://doi.org/10.1137/100788124 +Xiaoliang Wan,Stochastic Solutions for the Two-Dimensional Advection-Diffusion Equation.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#WanXK04,https://doi.org/10.1137/S106482750342684X +Alexander A. Weiss,A Posteriori Error Estimator for Obstacle Problems.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#WeissW10,https://doi.org/10.1137/090773921 +Emmanuil H. Georgoulis,Multilevel Sparse Kernel-Based Interpolation.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#GeorgoulisLS13,https://doi.org/10.1137/110859610 +Musheng Wei,Numerical Computation of the Scattering Frequencies for a Cylindrically Symmetric Potential.,1993,14,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc14.html#WeiM93,https://doi.org/10.1137/0914019 +Kathryn Turner,Efficient High Accuracy Solutions with GMRES(m).,1992,13,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc13.html#TurnerW92,https://doi.org/10.1137/0913048 +S. H. Lui,Computation of Pseudospectra by Continuation.,1997,18,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc18.html#Lui97,https://doi.org/10.1137/S1064827594276035 +H. P. Flath,Fast Algorithms for Bayesian Uncertainty Quantification in Large-Scale Linear Inverse Problems Based on Low-Rank Partial Hessian Approximations.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#FlathWAHWG11,https://doi.org/10.1137/090780717 +Santiago Badia,Splitting Methods Based on Algebraic Factorization for Fluid-Structure Interaction.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#BadiaQQ08,https://doi.org/10.1137/070680497 +Weizhu Bao,A Fourth-Order Time-Splitting Laguerre-Hermite Pseudospectral Method for Bose-Einstein Condensates.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#BaoS05b,https://doi.org/10.1137/030601211 +Elisabeth Larsson,Stable Computation of Differentiation Matrices and Scattered Node Stencils Based on Gaussian Radial Basis Functions.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#LarssonLHF13,https://doi.org/10.1137/120899108 +Richard K. Beatson,Kernel-Based Methods for Vector-Valued Data with Correlated Components.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#BeatsonCS11,https://doi.org/10.1137/090758076 +Werner Römisch,Stepsize Control for Mean-Square Numerical Methods for Stochastic Differential Equations with Small Noise.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#RomischW06,https://doi.org/10.1137/030601429 +Weizhu Bao,A Uniformly and Optimally Accurate Method for the Zakharov System in the Subsonic Limit Regime.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#BaoS18,https://doi.org/10.1137/17M1113333 +Akil Narayan,Adaptive Leja Sparse Grid Constructions for Stochastic Collocation and High-Dimensional Approximation.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#NarayanJ14,https://doi.org/10.1137/140966368 +Valmor F. De Almeida,Domain Deformation Mapping: Application to Variational Mesh Generation.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#Almeida99,https://doi.org/10.1137/S1064827594274760 +Dionissios T. Hristopulos,Erratum: Spartan Gibbs Random Field Models for Geostatistical Applications.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#Hristopulos05,https://doi.org/10.1137/050624613 +Andreas Stathopoulos,Computing and Deflating Eigenvalues While Solving Multiple Right-Hand Side Linear Systems with an Application to Quantum Chromodynamics.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#StathopoulosO10,https://doi.org/10.1137/080725532 +Alex Pothen,A Mapping Algorithm for Parallel Sparse Cholesky Factorization.,1993,14,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc14.html#PothenS93,https://doi.org/10.1137/0914074 +Xiaobai Sun,The Generalized Newton Iteration forthe Matrix Sign Function.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#SunQ02,https://doi.org/10.1137/S1064827598348696 +John M. Dennis,Applying Automated Memory Analysis to Improve Iterative Algorithms.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#DennisJ07,https://doi.org/10.1137/060661533 +Ehsan Kharazmi,Petrov-Galerkin and Spectral Collocation Methods for Distributed Order Differential Equations.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#KharazmiZK17,https://doi.org/10.1137/16M1073121 +Yousef Saad,A Deflated Version of the Conjugate Gradient Algorithm.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#SaadYEG00,https://doi.org/10.1137/S1064829598339761 +Robert Michael Lewis,Model Problems for the Multigrid Optimization of Systems Governed by Differential Equations.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#LewisN05,https://doi.org/10.1137/S1064827502407792 +Zhiming Chen,An Adaptive Multilevel Method for Time-Harmonic Maxwell Equations with Singularities.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#ChenWZ07,https://doi.org/10.1137/050636012 +Alexander V. Shapeev,An Asymptotic Fitting Finite Element Method with Exponential Mesh Refinement for Accurate Computation of Corner Eddies in Viscous Flows.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#ShapeevL09,https://doi.org/10.1137/080719145 +Martin Weiser,State Trajectory Compression for Optimal Control with Parabolic PDEs.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#WeiserG12,https://doi.org/10.1137/11082172X +Bernd Brumm,A Fast Matrix-free Algorithm for Spectral Approximations to the Schrödinger Equation.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#Brumm15,https://doi.org/10.1137/140981022 +Dennis Denker,Edge Detection of Piecewise Smooth Functions from UnderSampled Fourier Data Using Variance Signatures.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#DenkerG17,https://doi.org/10.1137/16M1068013 +Pierre Degond,A Deterministic Approximation of Diffusion Equations Using Particles.,1990,11,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc11.html#DegondM90,https://doi.org/10.1137/0911018 +Curtis R. Vogel,Iterative Methods for Total Variation Denoising.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#VogelO96,https://doi.org/10.1137/0917016 +Eunjung Lee,FOSLL* for Nonlinear Partial Differential Equations.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#LeeMW15,https://doi.org/10.1137/140974353 +Laura Grigori,Parallel Symbolic Factorization for Sparse LU with Static Pivoting.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#GrigoriDL07,https://doi.org/10.1137/050638102 +Ulrich Rüde,Nested Newton Strategies for Energy-Corrected Finite Element Methods.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#RudeWW14,https://doi.org/10.1137/130935392 +William F. Spotz,Iterative and Parallel Performance of High-Order Compact Systems.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#SpotzC98,https://doi.org/10.1137/S106482759630379X +Jens Keiner,Computing with Expansions in Gegenbauer Polynomials.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#Keiner09,https://doi.org/10.1137/070703065 +Liping Zhang 0005,Homotopy for Rational Riccati Equations Arising in Stochastic Optimal Control.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#ZhangFCW15,https://doi.org/10.1137/140953204 +Zhong-Zhi Bai,On Inexact Preconditioners for Nonsymmetric Matrices.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#BaiN05,https://doi.org/10.1137/040604091 +Carsten W. Schulz-Rinne,Numerical Solution of the Riemann Problem for Two-Dimensional Gas Dynamics.,1993,14,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc14.html#Schulz-RinneCG93,https://doi.org/10.1137/0914082 +Yousef Saad,ILUM: A Multi-Elimination ILU Preconditioner for General Sparse Matrices.,1996,17,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc17.html#Saad96,https://doi.org/10.1137/0917054 +Yuanzhe Xi,Computing Partial Spectra with Least-Squares Rational Filters.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#XiS16,https://doi.org/10.1137/16M1061965 +Zhen Peng,A Scalable Nonoverlapping and Nonconformal Domain Decomposition Method for Solving Time-Harmonic Maxwell Equations in R3.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#PengL12,https://doi.org/10.1137/100817978 +Irene Livshits,Accuracy Properties of the Wave-Ray Multigrid Algorithm for Helmholtz Equations.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#LivshitsB06,https://doi.org/10.1137/040620461 +Stefan K. Stefanov,On DSMC Calculations of Rarefied Gas Flows with Small Number of Particles in Cells.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#Stefanov11,https://doi.org/10.1137/090751864 +Niclas Jansson,Framework for Massively Parallel Adaptive Finite Element Computational Fluid Dynamics on Tetrahedral Meshes.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#JanssonHJ12,https://doi.org/10.1137/100800683 +Alain Sei,A Family of Numerical Schemes for the Computation of Elastic Waves.,1995,16,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc16.html#Sei95,https://doi.org/10.1137/0916052 +Xin Zhang,Gradient Type Optimization Methods For Electronic Structure Calculations.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#ZhangZWZ14,https://doi.org/10.1137/130932934 +Tom Manteuffel,A Parallel Version of a Multigrid Algorithm for Isotropic Transport Equations.,1994,15,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc15.html#ManteuffelMMOY94,https://doi.org/10.1137/0915032 +Zhongqiang Zhang,A Recursive Sparse Grid Collocation Method for Differential Equations with White Noise.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#ZhangTRK14,https://doi.org/10.1137/130938906 +Jaw-Yen Yang,Kinetic Flux Vector Splitting Schemes for Ideal Quantum Gas Dynamics.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#YangHS07,https://doi.org/10.1137/050646664 +Martin Mönnigmann,Efficient Calculation of Bounds on Spectra of Hessian Matrices.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#Monnigmann08,https://doi.org/10.1137/070704186 +So-Hsiang Chou,Mixed Upwinding Covolume Methods on Rectangular Grids for Convection-Diffusion Problems.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#ChouKV99,https://doi.org/10.1137/S1064827597321052 +Joel E. Dendy Jr.,Grandchild of the Frequency Decomposition Multigrid Method.,1995,16,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc16.html#DendyT95,https://doi.org/10.1137/0916020 +Ankit Gupta,Unbiased Estimation of Parameter Sensitivities for Stochastic Chemical Reaction Networks.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#GuptaK13,https://doi.org/10.1137/120898747 +Jie Shen 0001,A Phase-Field Model and Its Numerical Approximation for Two-Phase Incompressible Flows with Different Densities and Viscosities.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#ShenY10,https://doi.org/10.1137/09075860X +Kazufumi Ito,A Numerical Study of an Augmented Lagrangian Method for the Estimation of Parameters in Elliptic Systems.,1991,12,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc12.html#ItoKK91,https://doi.org/10.1137/0912048 +Jeroen A. S. Witteveen,Simplex Stochastic Collocation with Random Sampling and Extrapolation for Nonhypercube Probability Spaces.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#WitteveenI12,https://doi.org/10.1137/100817504 +Matteo Semplice,Preconditioned Implicit Solvers for Nonlinear PDEs in Monument Conservation.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#Semplice10,https://doi.org/10.1137/100785417 +Andreas Mang,A Lagrangian Gauss-Newton-Krylov Solver for Mass- and Intensity-Preserving Diffeomorphic Image Registration.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#MangR17,https://doi.org/10.1137/17M1114132 +J. L. Hart,Efficient Computation of Sobol' Indices for Stochastic Models.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#HartAG17,https://doi.org/10.1137/16M106193X +Jun Wang,Recurrent Neural Networks for Computing Pseudoinverses of Rank-Deficient Matrices.,1997,18,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc18.html#Wang97,https://doi.org/10.1137/S1064827594267161 +David Colton,The Linear Sampling Method for Solving the Electromagnetic Inverse Scattering Problem.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#ColtonHM03,https://doi.org/10.1137/S1064827501390467 +Feng Liu,An Adaptive Grid Method and Its Application to Steady Euler Flow Calculations.,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#LiuJL98,https://doi.org/10.1137/S1064827596305738 +Ludwig W. Dorodnicyn,Kinetical-Consistent Algorithms for Simulation of Reactive Flows.,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#Dorodnicyn98,https://doi.org/10.1137/S1064827595288437 +Bernard Bialecki,Matrix Decomposition Algorithms in Orthogonal Spline Collocation for Separable Elliptic Boundary Value Problems.,1995,16,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc16.html#BialeckiF95,https://doi.org/10.1137/0916022 +Wayne H. Enright,Superconvergent Interpolants for the Collocation Solution of Boundary Value Ordinary Differential Equations.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#EnrightM99,https://doi.org/10.1137/S1064827597329114 +Thomas K. Huckle,Compact Fourier Analysis for Designing Multigrid Methods.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#Huckle08,https://doi.org/10.1137/070702564 +Kim-Chuan Toh,Calculation of Pseudospectra by the Arnoldi Iteration.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#TohT96,https://doi.org/10.1137/0917002 +Günther Of,Fast Evaluation of Volume Potentials in Boundary Element Methods.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#OfSU10,https://doi.org/10.1137/080744359 +Weiqiang Chen,An Augmented Lagrangian Method for and#8467*1-Regularized Optimization Problems with Orthogonality Constraints.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#ChenJY16,https://doi.org/10.1137/140988875 +Yang Cao 0001,A Posteriori Error Estimation and Global Error Control for Ordinary Differential Equations by the Adjoint Method.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#CaoP04,https://doi.org/10.1137/S1064827503420969 +Carsten Carstensen,Averaging Techniques for the A Posteriori BEM Error Control for a Hypersingular Integral Equation in Two Dimensions.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#CarstensenP07,https://doi.org/10.1137/050623930 +Lina Hemmingsson,Analysis of Semi-Toeplitz Preconditioners for First-Order PDEs.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#HemmingssonO96,https://doi.org/10.1137/0917005 +Artem Napov,An Efficient Multigrid Method for Graph Laplacian Systems II: Robust Aggregation.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#NapovN17,https://doi.org/10.1137/16M1071420 +Alfonso Bueno-Orovio,Spectral Methods for Partial Differential Equations in Irregular Domains: The Spectral Smoothed Boundary Method.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#Bueno-OrovioPF06,https://doi.org/10.1137/040607575 +Andrea Bonito,A Continuous Interior Penalty Method for Viscoelastic Flows.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#BonitoB08,https://doi.org/10.1137/060677033 +Peter N. Brown,Consistent Initial Condition Calculation for Differential-Algebraic Systems.,1998,19,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc19.html#BrownHP98,https://doi.org/10.1137/S1064827595289996 +Carlo Janna,Adaptive Pattern Research for Block FSAI Preconditioning.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#JannaF11,https://doi.org/10.1137/100810368 +Guido Kanschat,Preconditioning Methods for Local Discontinuous Galerkin Discretizations.,2003,25,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc25.html#Kanschat03,https://doi.org/10.1137/S1064827502410657 +René-Edouard Plessix,Waveform Inversion of Reflection Seismic Data for Kinematic Parameters by Local Optimization.,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#PlessixRC98,https://doi.org/10.1137/S1064827596311980 +Michael Jung,Implicit Extrapolation Methods for Variable Coefficient Problems.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#JungR98,https://doi.org/10.1137/S1064827595293557 +Xiaolin Fan,A Componentwise Convex Splitting Scheme for Diffuse Interface Models with Van der Waals and Peng-Robinson Equations of State.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#FanKQS17,https://doi.org/10.1137/16M1061552 +Ping Lin,An Iterative Perturbation Method for the Pressure Equation in the Simulation of Miscible Displacement in Porous Media.,1998,19,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc19.html#LinY98,https://doi.org/10.1137/S1064827595282258 +Xianliang Hu,Bivariate Splines of Various Degrees for Numerical Solution of Partial Differential Equations.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#HuHL07,https://doi.org/10.1137/060667207 +Saul Abarbanel,On the Removal of Boundary Errors Caused by Runge-Kutta Integration of Nonlinear Partial Differential Equations.,1996,17,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc17.html#AbarbanelGC96,https://doi.org/10.1137/S1064827595282520 +Alexander Kurganov,Semidiscrete Central-Upwind Schemes for Hyperbolic Conservation Laws and Hamilton-Jacobi Equations.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#KurganovNP01,https://doi.org/10.1137/S1064827500373413 +Bo Xiao,Parallel Algorithms for Nearest Neighbor Search Problems in High Dimensions.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#XiaoB16,https://doi.org/10.1137/15M1026377 +Jason E. Hicken,A Simplified and Flexible Variant of GCROT for Solving Nonsymmetric Linear Systems.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#HickenZ10,https://doi.org/10.1137/090754674 +Tarek P. Mathew,Domain Decomposition Operator Splittings for the Solution of Parabolic Equations.,1998,19,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc19.html#MathewPRW98,https://doi.org/10.1137/S1064827595288206 +Paul A. Milewski,A PseudoSpectral Procedure for the Solution of Nonlinear Wave Equations with Examples from Free-Surface Flows.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#MilewskiT99,https://doi.org/10.1137/S1064827597321532 +Assyr Abdulle,A Discontinuous Galerkin Reduced Basis Numerical Homogenization Method for Fluid Flow in Porous Media.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#AbdulleB17,https://doi.org/10.1137/15M1050690 +Peter A. Forsyth,Monotonicity Considerations for Saturated-Unsaturated Subsurface Flow.,1997,18,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc18.html#ForsythK97,https://doi.org/10.1137/S1064827594265824 +Ta-Kang Ku,On the Spectrum of a Family of Preconditioned Block Toeplitz Matrices.,1992,13,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc13.html#KuK92,https://doi.org/10.1137/0913056 +Dianne P. O'Leary,Near-Optimal Parameters for Tikhonov and Other Regularization Methods.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#OLeary01,https://doi.org/10.1137/S1064827599354147 +Christiane Helzel,A Modified Fractional Step Method for the Accurate Approximation of Detonation Waves.,2000,22,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc22.html#HelzelLW00,https://doi.org/10.1137/S1064827599357814 +Gabriel R. Barrenechea,Finite Element Eigenvalue Enclosures for the Maxwell Operator.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#BarrenecheaBB14,https://doi.org/10.1137/140957810 +Xin Liu 0001,Limited Memory Block Krylov Subspace Optimization for Computing Dominant Singular Value Decompositions.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#LiuWZ13,https://doi.org/10.1137/120871328 +Bruce Hendrickson,Improving the Run Time and Quality of Nested Dissection Ordering.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#HendricksonR98,https://doi.org/10.1137/S1064827596300656 +Yuanzhe Xi,A Rational Function Preconditioner For Indefinite Sparse Linear Systems.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#XiS17,https://doi.org/10.1137/16M1078409 +Dexuan Xie,A Fast Solver for a Nonlocal Dielectric Continuum Model.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#XieJBS12,https://doi.org/10.1137/110839254 +M. De Cicco,Nonlinear Stability of Compressible Thermal Lattice BGK Models.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#CiccoSB99,https://doi.org/10.1137/S1064827597319805 +Daniel M. Tartakovsky,Effective Properties of Random Composites.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#TartakovskyG04,https://doi.org/10.1137/S106482750342711X +Carsten H. Wolters,Numerical Mathematics of the Subtraction Method for the Modeling of a Current Dipole in EEG Source Reconstruction Using Finite Element Head Models.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#WoltersKMHGH07,https://doi.org/10.1137/060659053 +Xiaoying Dai,A Conjugate Gradient Method for Electronic Structure Calculations.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#DaiLZZ17,https://doi.org/10.1137/16M1072929 +Marsha J. Berger,A Simplified h-box Method for Embedded Boundary Grids.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#BergerH12,https://doi.org/10.1137/110829398 +Ang Li,Analysis of a Splitting Approach for the Parallel Solution of Linear Systems on GPU Cards.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#LiSN17,https://doi.org/10.1137/15M1039523 +Xiao-Chuan Cai,An Optimal Two-Level Overlapping Domain Decomposition Method for Elliptic Problems in Two and Three Dimensions.,1993,14,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc14.html#Cai93,https://doi.org/10.1137/0914014 +Drew P. Kouri,Inexact Objective Function Evaluations in a Trust-Region Algorithm for PDE-Constrained Optimization under Uncertainty.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#KouriHRW14,https://doi.org/10.1137/140955665 +Ian G. Grooms,Molecular Embedding via a Second Order Dissimilarity Parameterized Approach.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#GroomsLT09,https://doi.org/10.1137/070688547 +S. S. Ravindran,Real-Time Computational Algorithm for Optimal Control of an MHD Flow System.,2005,26,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc26.html#Ravindran05,https://doi.org/10.1137/S1064827502400534 +Peter Bastian,Load Balancing for Adaptive Multigrid Methods.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#Bastian98,https://doi.org/10.1137/S1064827596297562 +Chris J. Budd,The Finite Element Approximation of Semilinear Elliptic Partial Differential Equations with Critical Exponents in the Cube.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#BuddHW99,https://doi.org/10.1137/S1064827596312134 +Xiaoliang Wan,Multi-Element Generalized Polynomial Chaos for Arbitrary Probability Measures.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#WanK06,https://doi.org/10.1137/050627630 +Christian H. Bischof,Structure-Preserving and Rank-Revealing QR-Factorizations.,1991,12,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc12.html#BischofH91,https://doi.org/10.1137/0912073 +Gilles Chabert,A Priori Error Analysis and Spring Arithmetic.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#ChabertJ09,https://doi.org/10.1137/070696982 +Che-Rung Lee,Minimal Split Checkerboard Method for Exponentiating Sparse Matrices and Its Applications in Quantum Statistical Mechanics.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#Lee13,https://doi.org/10.1137/110838716 +G. W. Stewart,Block Gram--Schmidt Orthogonalization.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#Stewart08,https://doi.org/10.1137/070682563 +Mingchao Cai,Overlapping Schwarz Methods with a Standard Coarse Space for Almost Incompressible Linear Elasticity.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#CaiPW15,https://doi.org/10.1137/140981861 +Brett M. Averick,Computing Large Sparse Jacobian Matrices Using Automatic Differentiation.,1994,15,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc15.html#AverickMBCG94,https://doi.org/10.1137/0915020 +Tong Zhang 0001,On the Homotopy Method for Perturbed Symmetric Generalized Eigenvalue Problems.,1998,19,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc19.html#0001LG98,https://doi.org/10.1137/S1064827596299755 +Johnathan M. Bardsley,A Nonnegatively Constrained Convex Programming Method for Image Reconstruction.,2004,25,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc25.html#BardsleyV04,https://doi.org/10.1137/S1064827502410451 +Michael Pippig,PFFT: An Extension of FFTW to Massively Parallel Architectures.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#Pippig13,https://doi.org/10.1137/120885887 +Nicolas Crouseilles,Numerical Schemes for Kinetic Equations in the Anomalous Diffusion Limit. Part I: The Case of Heavy-Tailed Equilibrium.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#CrouseillesHL16,https://doi.org/10.1137/15M1011366 +M. J. Fengler,A Nonlinear Galerkin Scheme Involving Vector and Tensor Spherical Harmonics for Solving the Incompressible Navier-Stokes Equation on the Sphere.,2005,27,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc27.html#FenglerF05,https://doi.org/10.1137/040612567 +Braxton Osting,Minimal Dirichlet Energy Partitions for Graphs.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#OstingWO14,https://doi.org/10.1137/130934568 +Peter Deuflhard,Adaptive Discrete Galerkin Methods Applied to the Chemical Master Equation.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#DeuflhardHJW08,https://doi.org/10.1137/070689759 +Richard B. Pelz,Parallel Compact FFTs for Real Sequences.,1993,14,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc14.html#Pelz93,https://doi.org/10.1137/0914056 +Willy Govaerts,Numerical Continuation of Bifurcations of Limit Cycles in MATLAB.,2005,27,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc27.html#GovaertsKD05,https://doi.org/10.1137/030600746 +Thomas F. Coleman,Fast (Structured) Newton Computations.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#ColemanX08,https://doi.org/10.1137/070701005 +Eric C. Cyr,Approaches for Adjoint-Based A Posteriori Analysis of Stabilized Finite Element Methods.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#CyrSW14,https://doi.org/10.1137/120895822 +Achi Brandt,Accelerated Multigrid Convergence and High-Reynolds Recirculating Flows.,1993,14,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc14.html#BrandtY93,https://doi.org/10.1137/0914039 +Olivier du Merle,An Interior Point Algorithm for Minimum Sum-of-Squares Clustering.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#MerleHJM99,https://doi.org/10.1137/S1064827597328327 +Rachel N. Robey,Hash-Based Algorithms for Discretized Data.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#RobeyNR13,https://doi.org/10.1137/120873686 +Donald J. Estep,Generalized Green's Functions and the Effective Domain of Influence.,2005,26,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc26.html#EstepHL05,https://doi.org/10.1137/S1064827502416319 +Constantine Bekas,Computation of Smallest Eigenvalues using Spectral Schur Complements.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#BekasS05,https://doi.org/10.1137/040603528 +Cosmina Hogea,Brain--Tumor Interaction Biophysical Models for Medical Image Registration.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#HogeaDB08,https://doi.org/10.1137/07069208X +Gil Ariel,Parareal Multiscale Methods for Highly Oscillatory Dynamical Systems.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#ArielKT16,https://doi.org/10.1137/15M1011044 +Mark B. Flegg,Analysis of the Two-Regime Method on Square Meshes.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#FleggCZE14,https://doi.org/10.1137/130915844 +Carlos J. S. Alves,The Method of Fundamental Solutions Applied to Some Inverse Eigenproblems.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#AlvesA13,https://doi.org/10.1137/110860380 +Leo G. Rebholz,Improved Accuracy in Algebraic Splitting Methods for Navier-Stokes Equations.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#RebholzX17,https://doi.org/10.1137/16M1061424 +William D. Elliott,Fast Fourier Transform Accelerated Fast Multipole Algorithm.,1996,17,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc17.html#ElliottB96,https://doi.org/10.1137/S1064827594264259 +Rémi Abgrall,High-Order Preserving Residual Distribution Schemes for Advection-Diffusion Scalar Problems on Arbitrary Grids.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#AbgrallSR14,https://doi.org/10.1137/12090143X +Jörg Liesen,Least Squares Residuals and Minimal Residual Methods.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#LiesenRS02,https://doi.org/10.1137/S1064827500377988 +Erding Luo,Pseudospectral vs. Finite Difference Methods for Initial Value Problems with Discontinuous Coefficient.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#LuoK98,https://doi.org/10.1137/S1064827596301698 +Jo Simoens,Waveform Relaxation with Fast Direct Methods as Preconditioner.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#SimoensV00,https://doi.org/10.1137/S1064827598338986 +Pierre Hansen,New Branch-and-Bound Rules for Linear Bilevel Programming.,1992,13,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc13.html#HansenJS92,https://doi.org/10.1137/0913069 +Nejib Smaoui,A Model for the Unstable Manifold of the Bursting Behavior in the 2D Navier-Stokes Flow.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#Smaoui01,https://doi.org/10.1137/S1064827599355013 +Francesc Aràndiga,Stability Through Synchronization in Nonlinear Multiscale Transformations.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#ArandigaD07,https://doi.org/10.1137/050630817 +Milana Gataric,A Practical Guide to the Recovery of Wavelet Coefficients from Fourier Measurements.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#GataricP16,https://doi.org/10.1137/15M1018630 +Volker John,A Finite Element Variational Multiscale Method for the Navier-Stokes Equations.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#JohnK05,https://doi.org/10.1137/030601533 +Anthony M. Castaldo,Reducing Floating Point Error in Dot Product Using the Superblock Family of Algorithms.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#CastaldoWC08,https://doi.org/10.1137/070679946 +Eric Joseph Hall,Computable Error Estimates for Finite Element Approximations of Elliptic Partial Differential Equations with Rough Stochastic Data.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#HallHSST16,https://doi.org/10.1137/15M1044266 +Huangxin Chen,Multilevel Preconditioner with Stable Coarse Grid Corrections for the Helmholtz Equation.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#ChenWX15,https://doi.org/10.1137/13091840X +Wai-Sun Don,Hybrid Compact-WENO Finite Difference Scheme with Conjugate Fourier Shock Detection Algorithm for Hyperbolic Conservation Laws.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#DonGLW16,https://doi.org/10.1137/15M1021520 +Georgios Akrivis,Numerical Approximation of Blow-Up of Radially Symmetric Solutions of the Nonlinear Schrödinger Equation.,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#AkrivisDKM03,https://doi.org/10.1137/S1064827597332041 +Gregorio Quintana-Ortí,Efficient Solution Of The Rank-Deficient Linear Least Squares Problem.,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#Quintana-OrtiQP98,https://doi.org/10.1137/S1064827596304836 +Benjamin Müller,A First-Order System Least Squares Method for Hyperelasticity.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#MullerSSS14,https://doi.org/10.1137/130937573 +Gene H. Golub,On Solving Block-Structured Indefinite Linear Systems.,2003,24,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc24.html#GolubG03,https://doi.org/10.1137/S1064827500375096 +Tycho L. van Noorden,A Broyden Rank p+1 Update Continuation Method with Subspace Iteration.,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#NoordenLB04,https://doi.org/10.1137/S1064827501399985 +Pierre-Henri Maire,A Cell-Centered Lagrangian Scheme for Two-Dimensional Compressible Flow Problems.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#MaireABO07,https://doi.org/10.1137/050633019 +Ziqing Xie,On Finding Multiple Solutions to a Singularly Perturbed Neumann Problem.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#XieYZ12,https://doi.org/10.1137/100810411 +Volker Naulin,Accuracy of Spectral and Finite Difference Schemes in 2D Advection Problems.,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#NaulinN03,https://doi.org/10.1137/S1064827502405070 +Nail A. Gumerov,Fast Radial Basis Function Interpolation via Preconditioned Krylov Iteration.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#GumerovD07,https://doi.org/10.1137/060662083 +Clark R. Dohrmann,Interpolation Operators for Algebraic Multigrid by Local Optimization.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#Dohrmann07,https://doi.org/10.1137/06066103X +G. V. Bicknell,The Equations of Motion of Particles in Smoothed Particle Hydrodynamics.,1991,12,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc12.html#Bicknell91,https://doi.org/10.1137/0912064 +Maka Karalashvili,Identification of Transport Coefficient Models in Convection-Diffusion Equations.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#KaralashviliGMMR11,https://doi.org/10.1137/09077360X +R. I. Saye,High-Order Quadrature Methods for Implicitly Defined Surfaces and Volumes in Hyperrectangles.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#Saye15,https://doi.org/10.1137/140966290 +Igor E. Kaporin,On a Class of Nonlinear Equation Solvers Based on the Residual Norm Reduction over a Sequence of Affine Subspaces.,1995,16,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc16.html#KaporinA95,https://doi.org/10.1137/0916015 +Ray S. Tuminaro,A Matrix Dependent/Algebraic Multigrid Approach for Extruded Meshes with Applications to Ice Sheet Modeling.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#TuminaroPTSP16,https://doi.org/10.1137/15M1040839 +Stefan Kunis,Stability Results for Scattered Data Interpolation by Trigonometric Polynomials.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#KunisP07,https://doi.org/10.1137/060665075 +Markus Wabro,AMGe - Coarsening Strategies and Application to the Oseen Equations.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#Wabro06,https://doi.org/10.1137/040610350 +Chad Lieberman,Nonlinear Goal-Oriented Bayesian Inference: Application to Carbon Capture and Storage.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#LiebermanW14,https://doi.org/10.1137/130928315 +Diego Rossinelli,Multicore/Multi-GPU Accelerated Simulations of Multiphase Compressible Flows Using Wavelet Adapted Grids.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#RossinelliHSK11,https://doi.org/10.1137/100795930 +Satoru Iwata 0001,Primal-Dual Combinatorial Relaxation Algorithms for the Maximum Degree of Subdeterminants.,1996,17,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc17.html#IwataMS96,https://doi.org/10.1137/0917064 +Zi-Cai Li,The Schwarz Alternating Method for Singularity Problems.,1994,15,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc15.html#Li94,https://doi.org/10.1137/0915065 +Ruipeng Li,Divide and Conquer Low-Rank Preconditioners for Symmetric Matrices.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#LiS13,https://doi.org/10.1137/120872735 +Panayot S. Vassilevski,A Block-Diagonal Algebraic Multigrid Preconditioner for the Brinkman Problem.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#VassilevskiV13,https://doi.org/10.1137/120882846 +Huibin Chang,Phase Retrieval from Incomplete Magnitude Information via Total Variation Regularization.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#ChangLNZ16,https://doi.org/10.1137/15M1029357 +John Guckenheimer,Computing Periodic Orbits and their Bifurcations with Automatic Differentiation.,2000,22,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc22.html#GuckenheimerM00,https://doi.org/10.1137/S1064827599359278 +James Vogel,Superfast Divide-and-Conquer Method and Perturbation Analysis for Structured Eigenvalue Solutions.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#VogelXCB16,https://doi.org/10.1137/15M1018812 +Patrick H. Pisciuneri,An Irregularly Portioned FDF Simulator.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#PisciuneriYSG13,https://doi.org/10.1137/130911512 +Catherine Elizabeth Powell,An Efficient Reduced Basis Solver for Stochastic Galerkin Matrix Equations.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#PowellSS17,https://doi.org/10.1137/15M1032399 +Wanho Lee,Simulations of Valveless Pumping in an Open Elastic Tube.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#LeeJL09,https://doi.org/10.1137/08071613X +Binghuai Lin,Efficient Characterization of Uncertain Model Parameters with a Reduced-Order Ensemble Kalman Filter.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#LinM14,https://doi.org/10.1137/130910415 +Illia Horenko,Finite Element Approach to Clustering of Multidimensional Time Series.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#Horenko10,https://doi.org/10.1137/080715962 +John Burkardt,Centroidal Voronoi Tessellation-Based Reduced-Order Modeling of Complex Systems.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#BurkardtGL06,https://doi.org/10.1137/5106482750342221x +Tahir Malas,Incomplete LU Preconditioning with the Multilevel Fast Multipole Algorithm for Electromagnetic Scattering.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#MalasG07,https://doi.org/10.1137/060659107 +Majid K. Vakilzadeh,Using Approximate Bayesian Computation by Subset Simulation for Efficient Posterior Assessment of Dynamic State-Space Model Classes.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#VakilzadehBA18,https://doi.org/10.1137/16M1090466 +Svend Tollak Munkejord,A MUSTA Scheme for a Nonconservative Two-Fluid Model.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#MunkejordEF09,https://doi.org/10.1137/080719273 +Andrew V. Knyazev,Principal Angles between Subspaces in an A-Based Scalar Product: Algorithms and Perturbation Estimates.,2002,23,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc23.html#KnyazevA02,https://doi.org/10.1137/S1064827500377332 +Florent Renac,Time Implicit High-Order Discontinuous Galerkin Method with Reduced Evaluation Cost.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#RenacMC12,https://doi.org/10.1137/100816845 +Zheng-Jian Bai,A Dual Optimization Approach to Inverse Quadratic Eigenvalue Problems with Partial Eigenstructure.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#BaiCS07,https://doi.org/10.1137/060656346 +William McLean,Fast Summation by Interval Clustering for an Evolution Equation with Memory.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#McLean12,https://doi.org/10.1137/120870505 +Nicole Spillane,An Adaptive MultiPreconditioned Conjugate Gradient Algorithm.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#Spillane16,https://doi.org/10.1137/15M1028534 +Zhiming Chen,On the Efficiency of Adaptive Finite Element Methods for Elliptic Problems with Discontinuous Coefficients.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#ChenD02,https://doi.org/10.1137/S1064827501383713 +Levi Lustman,Solution of Linear Systems of Ordinary Differential Equations on an INTEL Hypercube.,1991,12,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc12.html#LustmanNK91,https://doi.org/10.1137/0912081 +Christophe Chalons,High-Order Numerical Schemes for One-Dimensional Nonlocal Conservation Laws.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#ChalonsGV18,https://doi.org/10.1137/16M110825X +Pieter Ghysels,Hiding Global Communication Latency in the GMRES Algorithm on Massively Parallel Machines.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#GhyselsAMV13,https://doi.org/10.1137/12086563X +Maxim A. Olshanskii,An Augmented Lagrangian Approach to Linearized Problems in Hydrodynamic Stability.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#OlshanskiiB08,https://doi.org/10.1137/070691851 +Mingyou Huang,Computation of Invariant Tori by the Fourier Methods.,1997,18,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc18.html#HuangKM97,https://doi.org/10.1137/S1064827593258826 +Bilal Hatipoglu,Parallel Triangular Mesh Refinement by Longest Edge Bisection.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#HatipogluO15,https://doi.org/10.1137/140973840 +Troy D. Butler,A Posteriori Error Analysis of Stochastic Differential Equations Using Polynomial Chaos Expansions.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#ButlerDW11,https://doi.org/10.1137/100795760 +Thorsten Grahs,Image Processing for Numerical Approximations of Conservation Laws: Nonlinear Anisotropic Artificial Dissipation.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#Grahs0S02,https://doi.org/10.1137/S106482759935143X +Márcia A. Inda,On the Efficient Parallel Computation of Legendre Transforms.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#IndaBM01,https://doi.org/10.1137/S1064827599355864 +Matthias Petschow,Improved Accuracy and Parallelism for MRRR-Based Eigensolvers - A Mixed Precision Approach.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#PetschowQB14,https://doi.org/10.1137/130911561 +Robert R. Nourgaliev,Marker Redistancing/Level Set Method for High-Fidelity Implicit Interface Tracking.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#NourgalievKM10,https://doi.org/10.1137/080727439 +James Sneyd,Computation of Geodesic Trajectories on Tubular Surfaces.,1990,11,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc11.html#SneydP90,https://doi.org/10.1137/0911014 +Zhonghua Qiao,Two-Phase Fluid Simulation Using a Diffuse Interface Model with Peng-Robinson Equation of State.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#QiaoS14,https://doi.org/10.1137/130933745 +Roland Griesse,Numerical Sensitivity Analysis for the Quantity of Interest in PDE-Constrained Optimization.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#GriesseV07,https://doi.org/10.1137/050637273 +Petter E. Bjørstad,Timely Communication: Efficient Algorithms for Solving a Fourth-Order Equation with the Spectral-Galerkin Method.,1997,18,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc18.html#BjorstadT97,https://doi.org/10.1137/S1064827596298233 +Fabio Dercole,BPCONT: An Auto Driver for the Continuation of Branch Points of Algebraic and Boundary-Value Problems.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#Dercole08,https://doi.org/10.1137/070692546 +Jörg Liesen,GMRES Convergence Analysis for a Convection-Diffusion Model Problem.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#LiesenS05,https://doi.org/10.1137/S1064827503430746 +Peter Benner,Frequency-Limited Balanced Truncation with Low-Rank Approximations.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#BennerKS16,https://doi.org/10.1137/15M1030911 +Jennifer A. Scott,Preconditioning of Linear Least Squares by Robust Incomplete Factorization for Implicitly Held Normal Equations.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#ScottT16,https://doi.org/10.1137/16M105890X +Barry Lee,First-Order System Least-Squares for the Helmholtz Equation.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#LeeMMR00,https://doi.org/10.1137/S1064827598339773 +Richard B. Pember,Numerical Methods for Hyperbolic Conservation Laws with Stiff Relaxation II. Higher-Order Godunov Methods.,1993,14,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc14.html#Pember93,https://doi.org/10.1137/0914052 +Tahar Amari,Computing Beltrami Fields.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#AmariBB09,https://doi.org/10.1137/070700942 +Matthias Bolten,Fourier Analysis of Periodic Stencils in Multigrid Methods.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#BoltenR18,https://doi.org/10.1137/16M1073959 +Eberhard Bänsch,Numerical Treatment of the Navier-Stokes Equations with Slip Boundary Condition.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#BanschH00,https://doi.org/10.1137/S1064827598343991 +Charles S. Kenney,Polar Decomposition and Matrix Sign Function Condition Estimates.,1991,12,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc12.html#KenneyL91,https://doi.org/10.1137/0912027 +Jie Shen 0001,Müntz-Galerkin Methods and Applications to Mixed Dirichlet-Neumann Boundary Value Problems.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#ShenW16,https://doi.org/10.1137/15M1052391 +Thomas A. Manteuffel,A Fast Multigrid Algorithm for Isotropic Transport Problems. II: With Absorption.,1996,17,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc17.html#ManteuffelMMY96,https://doi.org/10.1137/S1064827593251435 +M. Hadjinicolaou,Asymptotic Solution of Stiff PDEs with the CSP Method: The Reaction Diffusion Equation.,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#HadjinicolaouG98,https://doi.org/10.1137/S1064827596303995 +Achi Brandt,On Recombining Iterants in Multigrid Algorithms and Problems with Small Islands.,1995,16,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc16.html#BrandtM95,https://doi.org/10.1137/0916002 +Kelly Black,A Spectral Element Technique with a Local Spectral Basis.,1997,18,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc18.html#Black97,https://doi.org/10.1137/S1064827594268713 +Tim N. Phillips,Multidomain Collocation Methods for the Stream Function Formulation of the Navier-Stokes Equations.,1995,16,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc16.html#PhillipsM95,https://doi.org/10.1137/0916046 +Christophe Chalons,Numerical Approximation of a Macroscopic Model of Pedestrian Flows.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#Chalons07,https://doi.org/10.1137/050641211 +Noel Chalmers,Relaxing the CFL Number of the Discontinuous Galerkin Method.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#ChalmersKQ14,https://doi.org/10.1137/130927504 +Fuhui Fang,Hierarchical Orthogonal Matrix Generation and Matrix-Vector Multiplications in Rigid Body Simulations.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#FangHHMZ18,https://doi.org/10.1137/17M1117744 +Wansheng Wang,A Posteriori Error Analysis for Crank-Nicolson-Galerkin Type Methods for Reaction-Diffusion Equations with Delay.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#WangRSZ18,https://doi.org/10.1137/17M1143514 +Peter Benner,Computing All or Some Eigenvalues of Symmetric H-Matrices.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#BennerM12,https://doi.org/10.1137/100815323 +Gabriel J. Lord,Computation of Homoclinic Orbits in Partial Differential Equations: An Application to Cylindrical Shell Buckling.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#LordCH99,https://doi.org/10.1137/S1064827597321647 +Ilse C. F. Ipsen,A Note on Preconditioning Nonsymmetric Matrices.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#Ipsen01,https://doi.org/10.1137/S1064827500377435 +J. C. Diaz,Domain Decomposition and Schur Complement Approaches to Coupling the Well Equations in Reservoir Simulation.,1995,16,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc16.html#DiazS95,https://doi.org/10.1137/0916003 +Randall Bramley,Row Projection Methods for Large Nonsymmetric Linear Systems.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#BramleyS92,https://doi.org/10.1137/0913010 +Fabio Di Benedetto,Analysis of Preconditioning Techniques for Ill-Conditioned Toeplitz Matrices.,1995,16,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc16.html#Benedetto95,https://doi.org/10.1137/0916041 +Guohua Zhou,Fourier Analysis of Multigrid Methods on Hexagonal Grids.,2009,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#ZhouF09,https://doi.org/10.1137/070709566 +Hans De Sterck,A Self-Learning Algebraic Multigrid Method for Extremal Singular Triplets and Eigenpairs.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#Sterck12a,https://doi.org/10.1137/110823316 +Maria Cristina Recchioni,The Use of Wavelets in the Operator Expansion Method for Time-Dependent Acoustic Obstacle Scattering.,2004,25,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc25.html#RecchioniZ04,https://doi.org/10.1137/S1064827502393016 +Arta A. Jamshidi,Skew-Radial Basis Function Expansions for Empirical Modeling.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#JamshidiK10,https://doi.org/10.1137/08072293X +Stefania Bellavia,Efficient Preconditioner Updates for Shifted Linear Systems.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#BellaviaSSM11,https://doi.org/10.1137/100803419 +Mohsen Zayernouri,Discontinuous Spectral Element Methods for Time- and Space-Fractional Advection Equations.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#ZayernouriK14a,https://doi.org/10.1137/130940967 +Loyce Adams,A Comparison of Algebraic Multigrid and Geometric Immersed Interface Multigrid Methods for Interface Problems.,2005,26,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc26.html#AdamsC05,https://doi.org/10.1137/S1064827503425262 +Michael K. Schneider,Krylov Subspace Estimation.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#SchneiderW01,https://doi.org/10.1137/S1064827599357292 +Lixin Liu,Computation and Continuation of Homoclinic and Heteroclinic Orbits with Arclength Parameterization.,1997,18,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc18.html#LiuMR97,https://doi.org/10.1137/S1064827595288218 +Rémi Abgrall,Residual Distribution Schemes for Conservation Laws via Adaptive Quadrature.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#AbgrallB03,https://doi.org/10.1137/S106482750138592X +Chao Zhang,A New Active Set Method For Nonnegative Matrix Factorization.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#ZhangJX14,https://doi.org/10.1137/130930212 +Shawn W. Walker,FELICITY: A Matlab/C++ Toolbox for Developing Finite Element Methods and Simulation Modeling.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#Walker18,https://doi.org/10.1137/17M1128745 +Isabelle Charpentier,Checkpointing Schemes for Adjoint Codes: Application to the Meteorological Model Meso-NH.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#Charpentier01,https://doi.org/10.1137/S1064827598343735 +Wei Guo 0004,An Adaptive Multiresolution Discontinuous Galerkin Method for Time-Dependent Transport Equations in Multidimensions.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#GuoC17,https://doi.org/10.1137/16M1083190 +James Baglama,Augmented Implicitly Restarted Lanczos Bidiagonalization Methods.,2005,27,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc27.html#BaglamaR05,https://doi.org/10.1137/04060593X +Efstratios Gallopoulos,Efficient Solution of Parabolic Equations by Krylov Approximation Methods.,1992,13,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc13.html#GallopoulosS92,https://doi.org/10.1137/0913071 +Grady I. Lemoine,Three-Dimensional Mapped-Grid Finite Volume Modeling of Poroelastic-Fluid Wave Propagation.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#Lemoine16,https://doi.org/10.1137/130934866 +Jirí Horák,Numerical Variational Methods Applied to Cylinder Buckling.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#HorakLP08,https://doi.org/10.1137/060675241 +Françoise Tisseur,A Parallel Divide and Conquer Algorithm for the Symmetric Eigenvalue Problem on Distributed Memory Architectures.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#TisseurD99,https://doi.org/10.1137/S1064827598336951 +Dave Higdon,Combining Field Data and Computer Simulations for Calibration and Prediction.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#HigdonKCCR04,https://doi.org/10.1137/S1064827503426693 +Misha Elena Kilmer,Recycling Subspace Information for Diffuse Optical Tomography.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#KilmerS06,https://doi.org/10.1137/040610271 +Nicholas I. M. Gould,On the Solution of Equality Constrained Quadratic Programming Problems Arising in Optimization.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#GouldHN01,https://doi.org/10.1137/S1064827598345667 +J. Tinsley Oden,MultiScale Modeling of Physical Phenomena: Adaptive Control of Models.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#OdenPRB06,https://doi.org/10.1137/050632488 +Derya B. özyurt,Cheap Second Order Directional Derivatives of Stiff ODE Embedded Functionals.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#OzyurtB05,https://doi.org/10.1137/030601582 +Timothy P. Chartier,Sensitivity and Stability of Ranking Vectors.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#ChartierKLP11,https://doi.org/10.1137/090772745 +Jesse Chan,Weight-Adjusted Discontinuous Galerkin Methods: Wave Propagation in Heterogeneous Media.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#ChanHW17a,https://doi.org/10.1137/16M1089186 +Jianxian Qiu,Finite Difference WENO Schemes with Lax-Wendroff-Type Time Discretizations.,2003,24,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc24.html#QiuS03,https://doi.org/10.1137/S1064827502412504 +Yin-Liang Huang,A Null Space Free Jacobi-Davidson Iteration for Maxwell's Operator.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#HuangHLW15,https://doi.org/10.1137/140954714 +Penghang Yin,Minimization of and#8467*1-2 for Compressed Sensing.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#YinLHX15,https://doi.org/10.1137/140952363 +Jérôme Dubois,Accelerating the Explicitly Restarted Arnoldi Method with GPUs Using an Autotuned Matrix Vector Product.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#DuboisCP11,https://doi.org/10.1137/10079906X +Ernst P. Stephan,Domain Decomposition Algorithms for Indefinite Hypersingular Integral Equations: The h and p Versions.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#Stephan098,https://doi.org/10.1137/S1064827595296161 +Dana A. Knoll,Enhanced Nonlinear Iterative Techniques Applied to a Nonequilibrium Plasma Flow.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#KnollM98,https://doi.org/10.1137/S1064827596304034 +Kevin Carlberg,Preserving Lagrangian Structure in Nonlinear Model Reduction with Application to Structural Dynamics.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#CarlbergTB15,https://doi.org/10.1137/140959602 +Marco Caliari,The Leja Method Revisited: Backward Error Analysis for the Matrix Exponential.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#CaliariKOR16,https://doi.org/10.1137/15M1027620 +Marielba Rojas,A Trust-Region Approach to the Regularization of Large-Scale Discrete Forms of Ill-Posed Problems.,2002,23,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc23.html#RojasS02,https://doi.org/10.1137/S1064827500378167 +William D. Henshaw,A High-Order Accurate Parallel Solver for Maxwell's Equations on Overlapping Grids.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#Henshaw06,https://doi.org/10.1137/050644379 +James G. Nagy,Fast Inverse QR Factorization for Toeplitz Matrices.,1993,14,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc14.html#Nagy93,https://doi.org/10.1137/0914070 +Richard K. Beatson,Which Cubic Spline should One Use?,1992,13,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc13.html#BeatsonC92,https://doi.org/10.1137/0913059 +Lingfei Li,Option Pricing in Some Non-Lévy Jump Models.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#LiZ16,https://doi.org/10.1137/15M1048926 +J. R. Maddison,Optimal Constrained Interpolation in Mesh-Adaptive Finite Element Modeling.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#MaddisonH17,https://doi.org/10.1137/15M102054X +Mario Arioli,Preconditioning Linear Least-Squares Problems by Identifying a Basis Matrix.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#ArioliD15,https://doi.org/10.1137/140975358 +Chris R. Johnson 0001,Special Issue on Computational Science and Engineering.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#JohnsonKR08,https://doi.org/10.1137/SJOCE3000030000006000vii000001 +Chunxiong Zheng,Numerical Solution of the Nonlocal Diffusion Equation on the Real Line.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#ZhengHDZ17,https://doi.org/10.1137/16M1090107 +Anita T. Layton,Modeling Water Transport across Elastic Boundaries Using an Explicit Jump Method.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#Layton06,https://doi.org/10.1137/050642198 +Julian Becerra-Sagredo,Moments Preserving and high-resolution Semi-Lagrangian Advection Scheme.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#Becerra-Sagredo16,https://doi.org/10.1137/140990619 +Radu Serban,The Effect of Problem Perturbations on Nonlinear Dynamical Systems and their Reduced-Order Models.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#SerbanHP07,https://doi.org/10.1137/050625278 +Tao Zhou,Multivariate Discrete Least-Squares Approximations with a New Type of Collocation Grid.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#ZhouNX14,https://doi.org/10.1137/130950434 +Alexandre M. Tartakovsky,Hybrid Simulations of Reaction-Diffusion Systems in Porous Media.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#TartakovskyTSM08,https://doi.org/10.1137/070691097 +William T. Taitano,Development of a Consistent and Stable Fully Implicit Moment Method for Vlasov-Ampère Particle in Cell (PIC) System.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#TaitanoKCC13,https://doi.org/10.1137/120881385 +Jingzhi Li,Strengthened Linear Sampling Method with a Reference Ball.,2009,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#LiLZ09,https://doi.org/10.1137/080734170 +Marc Boileau,Robust Numerical Coupling of Pressure and Pressureless Gas Dynamics Equations for Eulerian Spray DNS and LES.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#BoileauCM15,https://doi.org/10.1137/130945740 +Henk A. van der Vorst,Copper Mountain Special Issue on Iterative Methods.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#Vorst03,https://doi.org/10.1137/SJOCE3000025000002000vii000001 +Binghuai Lin,Real-Time Ensemble Control with Reduced-Order Modeling.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#LinM14a,https://doi.org/10.1137/130921878 +Braxton Osting,Minimal Convex Combinations of Sequential Laplace-Dirichlet Eigenvalues.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#OstingK13,https://doi.org/10.1137/120881865 +Arnold Reusken,On the Approximate Cyclic Reduction Preconditioner.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#Reusken99,https://doi.org/10.1137/S1064827597331655 +Seongjai Kim,Multigrid Simulation for High-Frequency Solutions of the Helmholtz Problem in Heterogeneous Media.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#KimK02,https://doi.org/10.1137/S1064827501385426 +Yoshihiro Kanno,Contact Analysis of Cable Networks by Using Second-Order Cone Programming.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#KannoO06,https://doi.org/10.1137/S1064827503431946 +Lihua Shen,A Defect Correction Scheme for Finite Element Eigenvalues with Applications to Quantum Chemistry.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#ShenZ06,https://doi.org/10.1137/040614013 +Lulu Liu,A Note on Adaptive Nonlinear Preconditioning Techniques.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#LiuKK18,https://doi.org/10.1137/17M1128502 +C. Ponce,A Nonlinear Algebraic Multigrid Framework for the Power Flow Equations.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#PonceBV18,https://doi.org/10.1137/16M1109965 +R. E. Beardmore,A Numerical Bifurcation Analysis of the Ornstein-Zernike Equation with Hypernetted Chain Closure.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#BeardmorePB07,https://doi.org/10.1137/060650659 +Amy Nicole Langville,A Reordering for the PageRank Problem.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#LangvilleM06,https://doi.org/10.1137/040607551 +Daniel Osei-Kuffuor,A Scalable O(N) Algorithm for Large-Scale Parallel First-Principles Molecular Dynamics Simulations.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#Osei-KuffuorF14,https://doi.org/10.1137/140956476 +Barbara Zubik-Kowal,Waveform Relaxation for Functional-Differential Equations.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#Zubik-KowalV99,https://doi.org/10.1137/S1064827598332916 +Per-Olof Persson,Newton-GMRES Preconditioning for Discontinuous Galerkin Discretizations of the Navier--Stokes Equations.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#PerssonP08,https://doi.org/10.1137/070692108 +Philippe Hoch,Hamilton-Jacobi Equations on a Manifold and Applications to Grid Generation or Refinement.,2002,23,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc23.html#HochR02,https://doi.org/10.1137/S1064827599360182 +Todd Arbogast,A Locally Conservative Eulerian-Lagrangian Method for a Model Two-Phase Flow Problem in a One-Dimensional Porous Medium.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#ArbogastHR12,https://doi.org/10.1137/090778079 +Ananth Grama,Improving Error Bounds for Multipole-Based Treecodes.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#GramaSS00,https://doi.org/10.1137/S1064827598339128 +Anita Mayo,Fast Parallel Iterative Solution of Poisson's and the Biharmonic Equations on Irregular Regions.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#MayoG92,https://doi.org/10.1137/0913006 +Stefan Henn,A Multigrid Method for a Fourth-Order Diffusion Equation with Application to Image Processing.,2005,27,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc27.html#Henn05,https://doi.org/10.1137/040611124 +Ramsharan Rangarajan,Provably Robust Directional Vertex Relaxation for Geometric Mesh Optimization.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#RangarajanL17,https://doi.org/10.1137/16M1089101 +Bogdan Vioreanu,Spectra of Multiplication Operators as a Numerical Tool.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#VioreanuR14,https://doi.org/10.1137/110860082 +Karl Meerbergen,Locking and Restarting Quadratic Eigenvalue Solvers.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#Meerbergen01,https://doi.org/10.1137/S106482759935174X +Jun Wang,An Adaptive Fast Gauss Transform in Two Dimensions.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#WangG18,https://doi.org/10.1137/17M1159865 +Giuseppe Alì,Index-Aware Model Order Reduction for Linear Index-2 DAEs with Constant Coefficients.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#AliBST13,https://doi.org/10.1137/120894415 +M. Munteanu,A Scalable Newton--Krylov--Schwarz Method for the Bidomain Reaction-Diffusion System.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#MunteanuPS09,https://doi.org/10.1137/08074355X +Pieter Ghysels,An Efficient Multicore Implementation of a Novel HSS-Structured Multifrontal Solver Using Randomized Sampling.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#GhyselsLRWN16,https://doi.org/10.1137/15M1010117 +Ann S. Almgren,On the Use of Higher-Order Projection Methods for Incompressible Turbulent Flow.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#AlmgrenABM13,https://doi.org/10.1137/110829386 +Kenneth L. Ho,A Fast Direct Solver for Structured Linear Systems by Recursive Skeletonization.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#HoG12,https://doi.org/10.1137/120866683 +Jan Janssen,Multigrid Waveform Relaxation on Spatial Finite Element Meshes: The Discrete-Time Case.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#JanssenV96,https://doi.org/10.1137/0917011 +Raymond H. Chan,Fast Iterative Solvers for Toeplitz-Plus-Band Systems.,1993,14,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc14.html#ChanN93,https://doi.org/10.1137/0914061 +Michele Benzi,A Robust Preconditioner with Low Memory Requirements for Large Sparse Least Squares Problems.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#BenziT03,https://doi.org/10.1137/S106482750240649X +Xudong Yao,A Minimax Method for Finding Multiple Critical Points in Banach Spaces and Its Application to Quasi-linear Elliptic PDE.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#YaoZ05,https://doi.org/10.1137/S1064827503430503 +Manuel Chiachio,Approximate Bayesian Computation by Subset Simulation.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#ChiachioBCR14,https://doi.org/10.1137/130932831 +Ching-Tien Ho,Optimizing Tridiagonal Solvers for Alternating Direction Methods on Boolean Cube Multiprocessors.,1990,11,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc11.html#HoJ90,https://doi.org/10.1137/0911032 +Stephen Joe,Constructing Sobol Sequences with Better Two-Dimensional Projections.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#JoeK08,https://doi.org/10.1137/070709359 +Jie Du,A High Order Stable Conservative Method for Solving Hyperbolic Conservation Laws on Arbitrarily Distributed Point Clouds.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#DuS16,https://doi.org/10.1137/16M1060583 +Christiane Lemieux,Randomized Polynomial Lattice Rules for Multivariate Integration and Simulation.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#LemieuxL03,https://doi.org/10.1137/S1064827501393782 +Oliver Lass,Model Order Reduction Techniques with a Posteriori Error Control for Nonlinear Robust Optimization Governed by Partial Differential Equations.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#LassU17,https://doi.org/10.1137/16M108269X +Peter R. Brune,Unstructured Geometric Multigrid in Two and Three Dimensions on Complex and Graded Meshes.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#BruneKS13,https://doi.org/10.1137/110827077 +Robert B. Schnabel,A New Modified Cholesky Factorization.,1990,11,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc11.html#SchnabelE90,https://doi.org/10.1137/0911064 +Markku Verkama,Random Relaxation of Fixed-Point Iteration.,1996,17,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc17.html#Verkama96,https://doi.org/10.1137/0917058 +Emmanuel Gobet,Rare Event Simulation Using Reversible Shaking Transformations.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#GobetL15,https://doi.org/10.1137/14098418X +Henson Van Emden,Multilevel Image Reconstruction with Natural Pixels.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#EmdenLMR96,https://doi.org/10.1137/0917014 +Alberto Donoso,Numerical Simulations in 3D Heat Conduction: Minimizing the Quadratic Mean Temperature Gradient by an Optimality Criteria Method.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#Donoso06,https://doi.org/10.1137/060650453 +Qiya Hu,Substructuring Preconditioners for the Systems Arising from Plane Wave Discretization of Helmholtz Equations.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#HuZ16,https://doi.org/10.1137/151003040 +Beong In Yun,An Extended Sigmoidal Transformation Technique for Evaluating Weakly Singular Integrals without Splitting the Integration Interval.,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#Yun03,https://doi.org/10.1137/S1064827502414606 +Alessandro Lanza,A Generalized Krylov Subspace Method for and#8467*p-ℓ*q Minimization.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#LanzaMRS15,https://doi.org/10.1137/140967982 +M. J. Baines,Multidimensional Least Squares Fluctuation Distribution Schemes with Adaptive Mesh Movement for Steady Hyperbolic Equations.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#BainesLH02,https://doi.org/10.1137/S1064827500370202 +Sander Rhebergen,Three-Field Block Preconditioners for Models of Coupled Magma/Mantle Dynamics.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#RhebergenWWK15,https://doi.org/10.1137/14099718X +Xi-Le Zhao,Total Variation Structured Total Least Squares Method for Image Restoration.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#ZhaoWZHN13,https://doi.org/10.1137/130915406 +Axel Klawonn,A Parallel Implementation of Dual-Primal FETI Methods for Three-Dimensional Linear Elasticity Using a Transformation of Basis.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#KlawonnR06,https://doi.org/10.1137/050624364 +Doron Levy,A Fourth-Order Central WENO Scheme for Multidimensional Hyperbolic Systems of Conservation Laws.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#LevyPR02,https://doi.org/10.1137/S1064827501385852 +Jun Zhu,A New Type of Modified WENO Schemes for Solving Hyperbolic Conservation Laws.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#ZhuQ17,https://doi.org/10.1137/16M1087291 +Yossi Gil,Automated Transformations for PDE Systems with Application to Multigrid Solvers.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#GilGOY03,https://doi.org/10.1137/S1064827501385943 +Steven F. Ashby,A Comparison of Adaptive Chebyshev and Least Squares Polynomial Preconditioning for Hermitian Positive Definite Linear Systems.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#AshbyMO92,https://doi.org/10.1137/0913001 +Paul G. Constantine,Erratum: Active Subspace Methods in Theory and Practice: Applications to Kriging Surfaces.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#ConstantineDW14a,https://doi.org/10.1137/140983598 +Elias Jarlebring,An Inverse Iteration Method for Eigenvalue Problems with Eigenvector Nonlinearities.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#JarlebringKM14,https://doi.org/10.1137/130910014 +Kent-André Mardal,Order-Optimal Preconditioners for Implicit Runge-Kutta Schemes Applied to Parabolic PDEs.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#MardalNS07,https://doi.org/10.1137/05064093X +Rosemary A. Renaut,Hybrid and Iteratively Reweighted Regularization by Unbiased Predictive Risk and Weighted GCV for Projected Systems.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#RenautVA17,https://doi.org/10.1137/15M1037925 +Richard Liska,Comparison of Several Difference Schemes on 1D and 2D Test Problems for the Euler Equations.,2003,25,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc25.html#LiskaW03,https://doi.org/10.1137/S1064827502402120 +Yingfei Wang,Nested-Batch-Mode Learning and Stochastic Optimization with An Application to Sequential MultiStage Testing in Materials Science.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#WangRBMP15,https://doi.org/10.1137/140971117 +Yuxin Chen,Accelerated Dimension-Independent Adaptive Metropolis.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#ChenKLL16,https://doi.org/10.1137/15M1026432 +Karol Mikula,Evolution of Convex Plane Curves Describing Anisotropic Motions of Phase Interfaces.,1996,17,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc17.html#MikulaK96,https://doi.org/10.1137/S1064827594261905 +Jaime Carpio,"Anisotropic ""Goal-Oriented"" Mesh Adaptivity for Elliptic Problems.",2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#CarpioPB13,https://doi.org/10.1137/120874606 +Alexandra Tcheng,A Fast-marching Algorithm for Nonmonotonically Evolving Fronts.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#TchengN16,https://doi.org/10.1137/15M1017302 +Lawrence F. Shampine,Diagnosing Stiffness for Runge-Kutta Methods.,1991,12,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc12.html#Shampine91,https://doi.org/10.1137/0912015 +Scott MacLachlan,Modification and Compensation Strategies for Threshold-based Incomplete Factorizations.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#MacLachlanOS12,https://doi.org/10.1137/110834986 +K. Andrew Cliffe,Adaptive Discontinuous Galerkin Methods for Eigenvalue Problems Arising in Incompressible Fluid Flows.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#CliffeHH10,https://doi.org/10.1137/080731918 +Hanieh Mirzaee,Smoothness-Increasing Accuracy-Conserving Filters for Discontinuous Galerkin Solutions over Unstructured Triangular Meshes.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#MirzaeeKRK13,https://doi.org/10.1137/120874059 +Hideaki Kaneko,Wavelet Collocation Method and Multilevel Augmentation Method for Hammerstein Equations.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#KanekoNN12,https://doi.org/10.1137/100809246 +Benjamin Aymard,A Numerical Method for Transport Equations with Discontinuous Flux Functions: Application to Mathematical Modeling of Cell Dynamics.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#AymardCCP13,https://doi.org/10.1137/120904238 +Mathea J. Vuik,Automated Parameters for Troubled-Cell Indicators Using Outlier Detection.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#VuikR16,https://doi.org/10.1137/15M1018393 +Olaf Steinbach,Adaptive Boundary Element Methods Based on Computational Schemes for Sobolev Norms.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#Steinbach00,https://doi.org/10.1137/S1064827599352999 +Michael Günther 0005,Index Concepts for Linear Mixed Systems of Differential-Algebraic and Hyperbolic-Type Equations.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#0005W01,https://doi.org/10.1137/S1064827598349057 +Weiqun Zhang,BoxLib with Tiling: An Adaptive Mesh Refinement Software Framework.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#ZhangADNSU16,https://doi.org/10.1137/15M102616X +Qianshun Chang,Acceleration Methods for Total Variation-Based Image Denoising.,2003,25,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc25.html#ChangC03,https://doi.org/10.1137/S106482750241534X +L. Forestier-Coste,A Finite Volume Preserving Scheme on Nonuniform Meshes and for Multidimensional Coalescence.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#Forestier-CosteM12,https://doi.org/10.1137/110847998 +Hans De Sterck,A Nonlinear GMRES Optimization Algorithm for Canonical Tensor Decomposition.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#Sterck12,https://doi.org/10.1137/110835530 +Erik S. Van Vleck,Numerical Shadowing Near Hyperbolic Trajectories.,1995,16,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc16.html#Vleck95,https://doi.org/10.1137/0916068 +Ping Lin,The Numerical Solution of a Challenging Class of Turning Point Problems.,2003,25,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc25.html#LinO03,https://doi.org/10.1137/S1064827503394442 +Bo Zhang,An FFT-based Algorithm for Efficient Computation of Green's Functions for the Helmholtz and Maxwell's Equations in Periodic Domains.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#ZhangZ18,https://doi.org/10.1137/18M1165621 +Axel Klawonn,Adaptive Coarse Spaces for FETI-DP in Three Dimensions.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#KlawonnKR16,https://doi.org/10.1137/15M1049610 +Jian Zhang,Numerical Studies of Discrete Approximations to the Allen--Cahn Equation in the Sharp Interface Limit.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#ZhangD09,https://doi.org/10.1137/080738398 +Mo Mu,Numerical Methods for Simulating Ginzburg-Landau Vortices.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#MuDC98,https://doi.org/10.1137/S1064827595295076 +Michael P. Friedlander,Global and Finite Termination of a Two-Phase Augmented Lagrangian Filter Method for General Quadratic Programs.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#FriedlanderL08,https://doi.org/10.1137/060669930 +Oguz Kaya,Parallel Candecomp/Parafac Decomposition of Sparse Tensors Using Dimension Trees.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#KayaU18,https://doi.org/10.1137/16M1102744 +Robert Scheichl,Decoupling Three-Dimensional Mixed Problems Using Divergence-Free Finite Elements.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#Scheichl02,https://doi.org/10.1137/S1064827500375886 +Stefano Zampini,Multilevel Balancing Domain Decomposition by Constraints Deluxe Algorithms with Adaptive Coarse Spaces for Flow in Porous Media.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#ZampiniT17,https://doi.org/10.1137/16M1080653 +Bor Plestenjak,Roots of Bivariate Polynomial Systems via Determinantal Representations.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#PlestenjakH16,https://doi.org/10.1137/140983847 +Ulrich Elsner,The Anderson Model of Localization: A Challenge for Modern Eigenvalue Methods.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#ElsnerMMRS99,https://doi.org/10.1137/S1064827598332217 +Lu Zhou 0001,Residual Smoothing Techniques for Iterative Methods.,1994,15,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc15.html#ZhouW94,https://doi.org/10.1137/0915021 +Weizhu Bao,A Generalized-Laguerre--Fourier--Hermite Pseudospectral Method for Computing the Dynamics of Rotating Bose--Einstein Condensates.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#BaoLS09,https://doi.org/10.1137/080739811 +Jinn-Liang Liu,On Weak Residual Error Estimation.,1996,17,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc17.html#Liu96,https://doi.org/10.1137/S1064827593249587 +Clark R. Dohrmann,A Preconditioner for Substructuring Based on Constrained Energy Minimization.,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#Dohrmann03,https://doi.org/10.1137/S1064827502412887 +Peter N. Brown,A Moment-Parity Multigrid Preconditioner for the First-Order System Least-Squares Formulation of the Boltzmann Transport Equation.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#BrownLM03,https://doi.org/10.1137/S1064827502407172 +Piotr P. Grinevich,An Iterative Method for the Stokes-Type Problem with Variable Viscosity.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#GrinevichO09,https://doi.org/10.1137/08744803 +Leonard J. Gray,Direct Evaluation of Hypersingular Galerkin Surface Integrals.,2004,25,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc25.html#GrayGK04,https://doi.org/10.1137/S1064827502405999 +Thomas F. Coleman,The Efficient Computation of Structured Gradients using Automatic Differentiation.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#ColemanJ99,https://doi.org/10.1137/S1064827597320794 +Kai Bittner,Fast Algorithms for Periodic Spline Wavelets on Sparse Grids.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#Bittner99,https://doi.org/10.1137/S1064827596309098 +Jorge Sastre,New Scaling-Squaring Taylor Algorithms for Computing the Matrix Exponential.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#SastreIDR15,https://doi.org/10.1137/090763202 +Ronald B. Morgan,Restarting the Nonsymmetric Lanczos Algorithm for Eigenvalues and Linear Equations Including Multiple Right-Hand Sides.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#MorganN11,https://doi.org/10.1137/100799265 +Angel Tocino,Weak Second Order Conditions for Stochastic Runge-Kutta Methods.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#TocinoV02,https://doi.org/10.1137/S1064827501387814 +Zlatko Drmac,Quadrature-Based Vector Fitting for Discretized H2 Approximation.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#DrmacGB15,https://doi.org/10.1137/140961511 +Roland Griesmaier,Inverse Source Problems for the Helmholtz Equation and the Windowed Fourier Transform II.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#GriesmaierHR13,https://doi.org/10.1137/130908658 +Dan Stefanica,A Numerical Study of FETI Algorithms for Mortar Finite Element Methods.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#Stefanica01,https://doi.org/10.1137/S1064827500378829 +Adam W. Bojanczyk,The Procrustes Problem for Orthogonal Stiefel Matrices.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#BojanczykL99,https://doi.org/10.1137/S106482759630992X +Luca Dieci,Solution of the Systems Associated with Invariant Tori Approximation. II: Multigrid Methods.,1994,15,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc15.html#DieciB94,https://doi.org/10.1137/0915083 +Grady I. Lemoine,Finite Volume Modeling of Poroelastic-Fluid Wave Propagation with Mapped Grids.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#LemoineO14,https://doi.org/10.1137/130920824 +Steve Schaffer,A Semicoarsening Multigrid Method for Elliptic Partial Differential Equations with Highly Discontinuous and Anisotropic Coefficients.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#Schaffer98,https://doi.org/10.1137/S1064827595281587 +Quan Deng,A Fast Treecode for Multiquadric Interpolation with Varying Shape Parameters.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#DengD12,https://doi.org/10.1137/110836225 +Natalie N. Beams,A Finite Element Based P3M Method for N-Body Problems.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#BeamsOF16,https://doi.org/10.1137/15M1014644 +C. R. Prins,A Monge-Ampère-Solver for Free-Form Reflector Design.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#PrinsBRJT14,https://doi.org/10.1137/130938876 +William J. Morokoff,Quasi-Random Sequences and Their Discrepancies.,1994,15,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc15.html#MorokoffC94,https://doi.org/10.1137/0915077 +Bruno Costa 0002,Time Marching Multilevel Techniques for Evolutionary Dissipative Problems.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#CostaDGT01,https://doi.org/10.1137/S1064827598339967 +Rongjie Lai,Solving Partial Differential Equations on Manifolds From Incomplete Interpoint Distance.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#LaiL17,https://doi.org/10.1137/17M1111176 +Christian Clason,A Duality-Based Splitting Method for l1-TV Image Restoration with Automatic Regularization Parameter Choice.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#ClasonJK10,https://doi.org/10.1137/090768217 +Akil Narayan,Constructing Nested Nodal Sets for Multivariate Polynomial Interpolation.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#NarayanX13,https://doi.org/10.1137/12089613X +Bernard Bialecki,Matrix Decomposition Algorithms for Modified Spline Collocation for Helmholtz Problems.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#BialeckiFK03,https://doi.org/10.1137/S106482750139964X +Habib Ammari,MUSIC-Type Electromagnetic Imaging of a Collection of Small Three-Dimensional Inclusions.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#AmmariILP07,https://doi.org/10.1137/050640655 +Stefan Goedecker,Remark on Algorithms to Find Roots of Polynomials.,1994,15,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc15.html#Goedecker94,https://doi.org/10.1137/0915064 +Jonathan Feinberg,Multivariate Polynomial Chaos Expansions with Dependent Variables.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#FeinbergEL18,https://doi.org/10.1137/15M1020447 +Christophe Airiau,Stabilization and Best Actuator Location for the Navier-Stokes Equations.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#AiriauBDFRW17,https://doi.org/10.1137/16M107503X +Timo Betcke,Overresolving in the Laplace Domain for Convolution Quadrature Methods.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#BetckeSS17,https://doi.org/10.1137/16M106474X +Sebastian Garreis,Constrained Optimization with Low-Rank Tensors and Applications to Parametric Problems with PDEs.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#GarreisU17,https://doi.org/10.1137/16M1057607 +H. Cho,Adaptive Discontinuous Galerkin Method for Response-Excitation PDF Equations.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#ChoVK13,https://doi.org/10.1137/12088896X +Igor N. Konshin,ILU Preconditioners for Nonsymmetric Saddle-Point Matrices with Application to the Incompressible Navier-Stokes Equations.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#KonshinOV15,https://doi.org/10.1137/15M1012311 +Axel Klawonn,An Optimal Preconditioner for a Class of Saddle Point Problems with a Penalty Term.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#Klawonn98a,https://doi.org/10.1137/S1064827595279575 +Laurent Gosse,Numerical High-Field Limits in Two-Stream Kinetic Models and 1D Aggregation Equations.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#GosseV16,https://doi.org/10.1137/151004653 +Sergio Blanes,Adaptive Geometric Integrators for Hamiltonian Problems with Approximate Scale Invariance.,2005,26,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc26.html#BlanesB05,https://doi.org/10.1137/S1064827502416630 +Fanhai Zeng,Numerical Algorithms for Time-Fractional Subdiffusion Equation with Second-Order Accuracy.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#ZengLLT15,https://doi.org/10.1137/14096390X +Eduardo F. D'Azevedo,An ADI-Like Preconditioner for Boltzmann Transport.,2005,26,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc26.html#DAzevedoMML05,https://doi.org/10.1137/S1064827503424013 +Erik S. Van Vleck,Numerical Shadowing Using Componentwise Bounds and a Sharper Fixed Point Result.,2000,22,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc22.html#Vleck00,https://doi.org/10.1137/S1064827599353452 +Luc Giraud,A Robust Criterion for the Modified Gram-Schmidt Algorithm with Selective Reorthogonalization.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#GiraudL03,https://doi.org/10.1137/S106482750340783X +Amit Bhave,Partially Stirred Reactor Model: Analytical Solutions and Numerical Convergence Study of a PDF/Monte Carlo Method.,2004,25,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc25.html#BhaveK04,https://doi.org/10.1137/S1064827502411328 +Michael Schäfer,Numerical Solution of the Time-Dependent Axisymmetric Boussinesq Equations on Processor Arrays.,1992,13,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc13.html#Schafer92,https://doi.org/10.1137/0913078 +Nikola D. Peric,Sensitivity Analysis of Uncertain Dynamic Systems Using Set-Valued Integration.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#PericVC17,https://doi.org/10.1137/16M1102719 +Michael Jung,Implicit Extrapolation Methods for Multilevel Finite Element Computations.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#JungR96,https://doi.org/10.1137/0917012 +Xiao-Chuan Cai,The Use of Pointwise Interpolation in Domain Decomposition Methods with Nonnested Meshes.,1995,16,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc16.html#Cai95,https://doi.org/10.1137/0916016 +Tony F. Chan,On Two Variants of an Algebraic Wavelet Preconditioner.,2002,24,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc24.html#ChanC02,https://doi.org/10.1137/S1064827501391436 +Howard C. Elman,Preconditioning for the Steady-State Navier-Stokes Equations with Low Viscosity.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#Elman99,https://doi.org/10.1137/S1064827596312547 +Nicholas J. Higham,Computing the Action of Trigonometric and Hyperbolic Matrix Functions.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#HighamK17,https://doi.org/10.1137/16M1084225 +Y. Huang,Methods for Pricing American Options under Regime Switching.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#HuangFL11,https://doi.org/10.1137/110820920 +Luke N. Olson,A General Interpolation Strategy for Algebraic Multigrid Using Energy Minimization.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#OlsonST11,https://doi.org/10.1137/100803031 +Pamela M. Burrage,A Variable Stepsize Implementation for Stochastic Differential Equations.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#BurrageB03,https://doi.org/10.1137/S1064827500376922 +Xiaoqun Wang,Enhancing Quasi-Monte Carlo Methods by Exploiting Additive Approximation for Problems in Finance.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#Wang12,https://doi.org/10.1137/100814597 +Richard Baltensperger,Spectral Differencing with a Twist.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#BaltenspergerT03,https://doi.org/10.1137/S1064827501388182 +Olivier P. Le Maître,Natural Convection in a Closed Cavity under Stochastic Non-Boussinesq Conditions.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#MaitreRDNGK04,https://doi.org/10.1137/S1064827503422853 +Rodrigo B. Platte,Using Global Interpolation to Evaluate the Biot-Savart Integral for Deformable Elliptical Gaussian Vortex Elements.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#PlatteRM09,https://doi.org/10.1137/070696027 +Nhu Nguyen,The Regular Fourier Matrices and Nonuniform Fast Fourier Transforms.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#NguyenL99,https://doi.org/10.1137/S1064827597325712 +Beong In Yun,A New Sigmoidal Transformation for Weakly Singular Integrals in the Boundary Element Method.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#YunK03,https://doi.org/10.1137/S1064827501396191 +Zhijian He,Good Path Generation Methods in Quasi-Monte Carlo for Pricing Financial Derivatives.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#HeW14,https://doi.org/10.1137/13091556X +Andrea Cangiani,hp-Version Space-Time Discontinuous Galerkin Methods for Parabolic Problems on Prismatic Meshes.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#CangianiDG17,https://doi.org/10.1137/16M1073285 +Michael R. Osborne,What is the Covariance Analog of the Paige and Saunders Information Filter?,1991,12,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc12.html#OsborneP91,https://doi.org/10.1137/0912072 +Mohsen Zayernouri,Fractional Spectral Collocation Method.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#ZayernouriK14,https://doi.org/10.1137/130933216 +Klaudius Scheufele,Robust Multisecant Quasi-Newton Variants for Parallel Fluid-Structure Simulations - and Other Multiphysics Applications.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#ScheufeleM17,https://doi.org/10.1137/16M1082020 +Virgile Rostand,Kernel Analysis of the Discretized Finite Difference and Finite Element Shallow-Water Models.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#RostandRC08,https://doi.org/10.1137/070695198 +Caroline Gatti-Bono,A Second-Order Accurate Conservative Front-Tracking Method in One Dimension.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#Gatti-BonoCT10,https://doi.org/10.1137/070704083 +Hans De Sterck,Special Section on Two Themes: CSE Software and Big Data in CSE.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#SterckJM16,https://doi.org/10.1137/16N974188 +Stephanie Friedhoff,Local Fourier Analysis of Space-Time Relaxation and Multigrid Schemes.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#FriedhoffMB13,https://doi.org/10.1137/120881361 +Pierre-Henri Cocquet,How Large a Shift is Needed in the Shifted Helmholtz Preconditioner for its Effective Inversion by Multigrid?,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#CocquetG17,https://doi.org/10.1137/15M102085X +Silvia Bonettini,A Scaled Gradient Projection Method for Bayesian Learning in Dynamical Systems.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#BonettiniCP15,https://doi.org/10.1137/140973529 +Kenneth O. Kortanek,Vector-Supercomputer Experiments with the Primal Affine Linear Programming Scaling Algorithm.,1993,14,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc14.html#Kortanek93,https://doi.org/10.1137/0914018 +Iain S. Duff,The Augmented Block Cimmino Distributed Method.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#DuffGRZ15,https://doi.org/10.1137/140961444 +Sverker Holmgren,Semicirculant Preconditioners for First-Order Partial Differential Equations.,1994,15,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc15.html#HolmgrenO94,https://doi.org/10.1137/0915027 +Martyn R. Field,Optimizing a Parallel Conjugate Gradient Solver.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#Field98,https://doi.org/10.1137/S1064827596302205 +Santiago Badia,Adaptive Finite Element Simulation of Incompressible Flows by Hybrid Continuous-Discontinuous Galerkin Formulations.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#BadiaB13,https://doi.org/10.1137/120880732 +Daehyun Wee,Convergence Characteristics and Computational Cost of Two Algebraic Kernels in Vortex Methods with a Tree-Code Algorithm.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#WeeMSG09,https://doi.org/10.1137/080726872 +Kristian B. ølgaard,Automated Code Generation for Discontinuous Galerkin Methods.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#OlgaardLW08,https://doi.org/10.1137/070710032 +James R. McCombs,Iterative Validation of Eigensolvers: A Scheme for Improving the Reliability of Hermitian Eigenvalue Solvers.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#McCombsS06,https://doi.org/10.1137/050627617 +R. D. Eisenhut,Comparing Averaged-Out Utilities of Probability Trees Having Random Parameters.,1991,12,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc12.html#EisenhutDRW91,https://doi.org/10.1137/0912060 +Thomas A. Manteuffel,A Fast Multigrid Algorithm for Isotropic Transport Problems I: Pure Scattering.,1995,16,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc16.html#ManteuffelMMOY95,https://doi.org/10.1137/0916038 +Gang Zou,Robust Variance Reduction for Random Walk Methods.,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#ZouS04,https://doi.org/10.1137/S1064827503424025 +P. Hauret,Energy-Consistent CoRotational Schemes for Frictional Contact Problems.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#HauretSWW08,https://doi.org/10.1137/070687827 +Anthony P. Austin,Computing Eigenvalues of Real Symmetric Matrices with Rational Filters in Real Arithmetic.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#AustinT15,https://doi.org/10.1137/140984129 +Pierre-Alain Gremaud,Computation of Nonclassical Solutions to Hamilton-Jacobi Problems.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#GremaudI99,https://doi.org/10.1137/S1064827597327668 +James Lu,A Quasi-Minimal Residual Method for Simultaneous Primal-Dual Solutions and Superconvergent Functional Estimates.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#LuD03,https://doi.org/10.1137/S1064827501390625 +Suely Oliveira,Exact Prediction of QR Fill-In by Row-Merge Trees.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#Oliveira01,https://doi.org/10.1137/S1064827599333965 +Mardochée Magolu monga Made,Ordering Strategies for Modified Block Incomplete Factorizations.,1995,16,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc16.html#Made95,https://doi.org/10.1137/0916024 +Manuel Baumann,Nested Krylov Methods for Shifted Linear Systems.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#BaumannG15,https://doi.org/10.1137/140979927 +H. W. Tam,One-Stage Parallel Methods for the Numerical Solution of Ordinary Differential Equations.,1992,13,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc13.html#Tam92,https://doi.org/10.1137/0913061 +Anders Logg,Multi-Adaptive Galerkin Methods for ODEs I.,2003,24,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc24.html#Logg03,https://doi.org/10.1137/S1064827501389722 +Hans Petter Langtangen,Stochastic Breakthrough Time Analysis of an Enhanced Oil Recovery Process.,1992,13,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc13.html#Langtangen92,https://doi.org/10.1137/0913079 +Zhisong Fu,A Fast Iterative Method for Solving the Eikonal Equation on Triangulated Surfaces.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#FuJPKW11,https://doi.org/10.1137/100788951 +P. J. Young,A Reformulation of the Partial Least Squares Regression Algorithm.,1994,15,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc15.html#Young94,https://doi.org/10.1137/0915015 +Yongxin Li,A Minimax Method for Finding Multiple Critical Points and Its Applications to Semilinear PDEs.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#LiZ01,https://doi.org/10.1137/S1064827599365641 +Michael K. Ng,A Fast Algorithm for Deblurring Models with Neumann Boundary Conditions.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#NgCT99,https://doi.org/10.1137/S1064827598341384 +Michael K. Ng,Weighted Toeplitz Regularized Least Squares Computation for Image Restoration.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#NgP14,https://doi.org/10.1137/120888776 +Xiaoxiao Chen,An Efficient Method for Uncertainty Propagation using Fuzzy Sets.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#ChenHX15,https://doi.org/10.1137/140997385 +Tamás Terlaky,Computing Maximum Likelihood Estimators of Convex Density Functions.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#TerlakyV98,https://doi.org/10.1137/S1064827595286578 +Philippe Gaudreau,Computation of Tail Probabilities via Extrapolation Methods and Connection with Rational and Padé Approximants.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#GaudreauSS12,https://doi.org/10.1137/100803778 +Behnam Hashemi,Chebfun in Three Dimensions.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#HashemiT17,https://doi.org/10.1137/16M1083803 +Daniel Appelö,A Fourth-Order Accurate Embedded Boundary Method for the Wave Equation.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#AppeloP12,https://doi.org/10.1137/09077223X +Mario Arioli,Use of the P4 and P5 Algorithms for In-Core Factorization of Sparse Matrices.,1990,11,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc11.html#ArioliDGR90,https://doi.org/10.1137/0911053 +Karl Rupp,ViennaCL - Linear Algebra Library for Multi- and Many-Core Architectures.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#RuppTRWMGJS16,https://doi.org/10.1137/15M1026419 +Jianyu Huang,Strassen's Algorithm for Tensor Contraction.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#HuangMG18,https://doi.org/10.1137/17M1135578 +Sheng-Gwo Chen,Discrete Conservation Laws on Evolving Surfaces.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#ChenW16,https://doi.org/10.1137/151003453 +D. Fournier,Discontinuous Galerkin Discretization and hp-Refinement for the Resolution of the Neutron Transport Equation.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#FournierHT13,https://doi.org/10.1137/110844581 +Sandra May,Two-Dimensional Slope Limiters for Finite Volume Schemes on Non-Coordinate-Aligned Meshes.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#MayB13,https://doi.org/10.1137/120875624 +Vladimir Druskin,Solution of the Time-Domain Inverse Resistivity Problem in the Model Reduction Framework Part I. One-Dimensional Problem with SISO Data.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#DruskinSZ13,https://doi.org/10.1137/110852607 +Jo Simoens,A Stabilized Lifting Construction of Wavelets on Irregular Meshes on the Interval.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#SimoensV03,https://doi.org/10.1137/S1064827502376571 +Jari Toivanen,Numerical Valuation of European and American Options under Kou's Jump-Diffusion Model.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#Toivanen08,https://doi.org/10.1137/060674697 +Arif M. Khan,Efficient Approximation Algorithms for Weighted b-Matching.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#KhanPPSSMHD16,https://doi.org/10.1137/15M1026304 +Kolja Brix,Refinement and Connectivity Algorithms for Adaptive Discontinuous Galerkin Methods.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#BrixMV11,https://doi.org/10.1137/090767418 +G. W. Stewart,The QLP Approximation to the Singular Value Decomposition.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#Stewart99,https://doi.org/10.1137/S1064827597319519 +Roland W. Freund,An Implementation of the Look-Ahead Lanczos Algorithm for Non-Hermitian Matrices.,1993,14,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc14.html#FreundGN93,https://doi.org/10.1137/0914009 +Benjamin Ganis,A Global Jacobian Method for Mortar Discretizations of Nonlinear Porous Media Flows.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#GanisJPWY14,https://doi.org/10.1137/130931837 +Paul Kuberry,An Optimization-Based Approach for Elliptic Problems with Interfaces.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#KuberryBP17,https://doi.org/10.1137/16M1084547 +Michael Carley,Numerical Quadratures for Singular and Hypersingular Integrals in Boundary Element Methods.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#Carley07,https://doi.org/10.1137/060666093 +Eric C. Cyr,A New Approximate Block Factorization Preconditioner for Two-Dimensional Incompressible (Reduced) Resistive MHD.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#CyrSTPC13,https://doi.org/10.1137/12088879X +Sergio Blanes,Composition Methods for Differential Equations with Processing.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#BlanesCM06,https://doi.org/10.1137/030601223 +S. R. Karpik,Multigrid Methods for the Solution of Poisson's Equation in a Thick Spherical Shell.,1991,12,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc12.html#KarpikP91,https://doi.org/10.1137/0912036 +Joost Rommes,Computing Transfer Function Dominant Poles of Large-Scale Second-Order Dynamical Systems.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#RommesM08,https://doi.org/10.1137/070684562 +Mohammad Shakourifar,The Cost/Reliability Trade-Off in Verifying Approximate Solutions to Differential Equations with Distributed Delays.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#ShakourifarE13,https://doi.org/10.1137/120880793 +Tania Bakhos,Multipreconditioned Gmres for Shifted Systems.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#BakhosKLSS17,https://doi.org/10.1137/16M1068694 +Xiaoqun Wang,Constructing Robust Good Lattice Rules for Computational Finance.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#Wang07,https://doi.org/10.1137/060650714 +Melven Röhrig-Zöllner,Increasing the Performance of the Jacobi-Davidson Method by Blocking.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#Rohrig-ZollnerT15,https://doi.org/10.1137/140976017 +Cristóbal Bertoglio,Fractional-Step Schemes for the Coupling of Distributed and Lumped Models in Hemodynamics.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#BertoglioCF13,https://doi.org/10.1137/120874412 +Ronald Cools,Constructing Embedded Lattice Rules for Multivariate Integration.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#CoolsKN06,https://doi.org/10.1137/06065074X +Hong Wang,A Fast Finite Difference Method for Two-Dimensional Space-Fractional Diffusion Equations.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#WangB12,https://doi.org/10.1137/12086491X +Tarek P. Mathew,Analysis of Block Parareal Preconditioners for Parabolic Optimal Control Problems.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#MathewSS10,https://doi.org/10.1137/080717481 +Cevdet Aykanat,Permuting Sparse Rectangular Matrices into Block-Diagonal Form.,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#AykanatPC04,https://doi.org/10.1137/S1064827502401953 +Jan G. Verwer,A Second-Order Rosenbrock Method Applied to Photochemical Dispersion Problems.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#VerwerSBH99,https://doi.org/10.1137/S1064827597326651 +Achiya Dax,Column Relaxation Methods for Least Norm Problems.,1990,11,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc11.html#DaxB90,https://doi.org/10.1137/0911056 +Malena I. Español,A Wavelet-Based Multilevel Approach for Blind Deconvolution Problems.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#EspanolK14,https://doi.org/10.1137/130928716 +Gregory Baker,Stable Methods for Vortex Sheet Motion in the Presence of Surface Tension.,1998,19,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc19.html#BakerN98,https://doi.org/10.1137/S1064827595296562 +J. David Moulton,Approximate Schur Complement Preconditioning of the Lowest-Order Nodal Discretizations.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#MoultonMA98,https://doi.org/10.1137/S1064827596303491 +Elena Braverman,A Fast Spectral Solver for a 3D Helmholtz Equation.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#BravermanIA99,https://doi.org/10.1137/S1064827598334241 +Jian-Xin Xu 0001,An Algorithm for Melnikov Functions and Application to a Chaotic Rotor.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#XuYZ05,https://doi.org/10.1137/S1064827503420726 +Georgios Arampatzis,Langevin Diffusion for Population Based Sampling with an Application in Bayesian Inference for Pharmacodynamics.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#ArampatzisWAWHK18,https://doi.org/10.1137/16M1107401 +Maksymilian Dryja,Domain Decomposition Algorithms with Small Overlap.,1994,15,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc15.html#DryjaW94,https://doi.org/10.1137/0915040 +Alex Townsend,Computing with Functions in Spherical and Polar Geometries I. The Sphere.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#TownsendWW16,https://doi.org/10.1137/15M1045855 +Pedro R. S. Antunes,An Augmented-RBF Method for Solving Fractional Sturm-Liouville Eigenvalue Problems.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#AntunesF15,https://doi.org/10.1137/140954209 +Jean-Frédéric Gerbeau,A Moment-Matching Method to Study the Variability of Phenomena Described by Partial Differential Equations.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#GerbeauLT18,https://doi.org/10.1137/16M1103476 +Stefan Langer,Investigation of Preconditioning Techniques for the Iteratively Regularized Gauss--Newton Method for Exponentially Ill-Posed Problems.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#Langer10,https://doi.org/10.1137/090749967 +Richard K. Beatson,Fast Solution of the Radial Basis Function Interpolation Equations: Domain Decomposition Methods.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#BeatsonLB01,https://doi.org/10.1137/S1064827599361771 +Luis Rández,Optimizing the Numerical Integration of Initial Value Problems in Shooting Methods for Linear Boundary Value Problems.,1993,14,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc14.html#Randez93,https://doi.org/10.1137/0914053 +Peiyao Luo,Uzawa Smoother in Multigrid for the Coupled Porous Medium and Stokes Flow System.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#LuoRLO17,https://doi.org/10.1137/16M1076514 +Stefan Henn,Iterative Multigrid Regularization Techniques for Image Matching.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#HennW01,https://doi.org/10.1137/S106482750037161X +Caroline Lasser,Computing Expectation Values for Molecular Quantum Dynamics.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#LasserR10,https://doi.org/10.1137/090770461 +Brett M. Averick,Fast Solution of Nonlinear Poisson-Type Equations.,1993,14,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc14.html#AverickO93,https://doi.org/10.1137/0914003 +Greg Henry,A Parallel Implementation of the Nonsymmetric QR Algorithm for Distributed Memory Architectures.,2002,24,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc24.html#HenryWD02,https://doi.org/10.1137/S1064827597325165 +Louis F. Rossi,Resurrecting Core Spreading Vortex Methods: A New Scheme that is Both Deterministic and Convergent.,1996,17,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc17.html#Rossi96,https://doi.org/10.1137/S1064827593254397 +Lehel Banjai,Revisiting the Crowding Phenomenon in Schwarz-Christoffel Mapping.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#Banjai08,https://doi.org/10.1137/060677392 +Núria Parés,Exact Bounds for Linear Outputs of the Advection-Diffusion-Reaction Equation Using Flux-Free Error Estimates.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#ParesDH09,https://doi.org/10.1137/080724356 +Howard C. Elman,Lyapunov Inverse Iteration for Identifying Hopf Bifurcations in Models of Incompressible Flow.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#ElmanMSW12,https://doi.org/10.1137/110827600 +Ray S. Tuminaro,A Highly Parallel Multigrid-Like Method for the Solution of the Euler Equations.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#Tuminaro92,https://doi.org/10.1137/0913005 +Eleanor Chu,QR Factorization of a Dense Matrix on a Hypercube Multiprocessor.,1990,11,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc11.html#ChuG90,https://doi.org/10.1137/0911057 +Qiang Du,Numerical Solution of a Two-Dimensional Nonlocal Wave Equation on Unbounded Domains.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#DuHZZ18,https://doi.org/10.1137/16M1102896 +Fangying Song,Computing Fractional Laplacians on Complex-Geometry Domains: Algorithms and Simulations.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#SongXK17,https://doi.org/10.1137/16M1078197 +Myron B. Allen,Well-Conditioned Iterative Schemes for Mixed Finite-Element Models of Porous-Media Flows.,1992,13,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc13.html#AllenEL92,https://doi.org/10.1137/0913047 +Xiao-Chuan Cai,Multiplicative Schwarz Methods for Parabolic Problems.,1994,15,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc15.html#Cai94,https://doi.org/10.1137/0915039 +Bangti Jin,Correction of High-Order BDF Convolution Quadrature for Fractional Evolution Equations.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#JinLZ17,https://doi.org/10.1137/17M1118816 +Leigh Little,Block LU Preconditioners for Symmetric and Nonsymmetric Saddle Point Problems.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#LittleSS03,https://doi.org/10.1137/S1064827502405513 +Laurent O. Jay,Structure Preservation for Constrained Dynamics with Super Partitioned Additive Runge-Kutta Methods.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#Jay98,https://doi.org/10.1137/S1064827595293223 +Kai Bittner,Fast Algorithms for Adaptive Free Knot Spline Approximation Using Nonuniform Biorthogonal Spline Wavelets.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#BittnerB15,https://doi.org/10.1137/14095354X +Zi-Niu Wu,Steady and Unsteady Shock Waves on Overlapping Grids.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#Wu99,https://doi.org/10.1137/S1064827597318381 +Xiao Liu,Parallel Randomized and Matrix-Free Direct Solvers for Large Structured Dense Linear Systems.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#LiuXH16,https://doi.org/10.1137/15M1023774 +Vineet Rawat,Nonoverlapping Domain Decomposition with Second Order Transmission Condition for the Time-Harmonic Maxwell's Equations.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#RawatL10,https://doi.org/10.1137/090777220 +Krzysztof J. Fidkowski,An Entropy Adjoint Approach to Mesh Refinement.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#FidkowskiR10,https://doi.org/10.1137/090759057 +Tyrone Rees,Optimal Solvers for PDE-Constrained Optimization.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#ReesDW10,https://doi.org/10.1137/080727154 +Ron Kimmel,An Algebraic Multigrid Approach for Image Analysis.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#KimmelY03,https://doi.org/10.1137/S1064827501389229 +Yizhuang Song,Analysis and Blocking of Error Propagation by Region-Dependent Noisy Data in MREIT.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#SongKJJSW13,https://doi.org/10.1137/120889034 +Stefania Bellavia,Nonsymmetric Preconditioner Updates in Newton-Krylov Methods for Nonlinear Systems.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#BellaviaBM11,https://doi.org/10.1137/100789786 +Stephan Schmidt,Efficient Numerical Solution of Geometric Inverse Problems Involving Maxwell's Equations Using Shape Derivatives and Automatic Code Generation.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#SchmidtSW18,https://doi.org/10.1137/16M110602X +Steve Bryson,Balanced Central Schemes for the Shallow Water Equations on Unstructured Grids.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#BrysonL05,https://doi.org/10.1137/040605539 +Jean-Luc Guermond,High-Order Time Stepping for the Incompressible Navier-Stokes Equations.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#GuermondM15,https://doi.org/10.1137/140975231 +Roman Andreev,Preconditioning the Augmented Lagrangian Method for Instationary Mean Field Games with Diffusion.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#Andreev17,https://doi.org/10.1137/16M1072346 +David Chin-Lung Fong,LSMR: An Iterative Algorithm for Sparse Least-Squares Problems.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#FongS11,https://doi.org/10.1137/10079687X +Sanghyun Lee,A Locally Conservative Enriched Galerkin Approximation and Efficient Solver for Elliptic and Parabolic Problems.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#LeeLW16,https://doi.org/10.1137/15M1041109 +Hans De Sterck,Smoothed Aggregation Multigrid for Markov Chains.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#SterckMMMPRS10,https://doi.org/10.1137/080719157 +Fabio Nobile,An Effective Fluid-Structure Interaction Formulation for Vascular Dynamics by Generalized Robin Conditions.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#NobileV08,https://doi.org/10.1137/060678439 +Sergio Blanes,Numerical Integrators for the Hybrid Monte Carlo Method.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#BlanesCS14,https://doi.org/10.1137/130932740 +Shawn W. Walker,Tetrahedralization of Isosurfaces with Guaranteed-Quality by Edge Rearrangement (TIGER).,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#Walker13,https://doi.org/10.1137/120866075 +Stig Skelboe,Accuracy of Decoupled Implicit Integration Formulas.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#Skelboe00,https://doi.org/10.1137/S1064827598337919 +Alexander V. Shapeev,Consistent Energy-Based Atomistic/Continuum Coupling for Two-Body Potentials in Three Dimensions.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#Shapeev12,https://doi.org/10.1137/110844544 +Xiuling Ma,Extrapolation for Finite Volume Approximations.,2003,24,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc24.html#MaMZ03,https://doi.org/10.1137/S1064827501398335 +Per-Gunnar Martinsson,Householder QR Factorization With Randomization for Column Pivoting (HQRRP).,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#MartinssonQHG17,https://doi.org/10.1137/16M1081270 +Praveen Chandrashekar,A Second Order Well-Balanced Finite Volume Scheme for Euler Equations with Gravity.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#ChandrashekarK15,https://doi.org/10.1137/140984373 +George Biros,Parallel Lagrange-Newton-Krylov-Schur Methods for PDE-Constrained Optimization. Part II: The Lagrange-Newton Solver and Its Application to Optimal Control of Steady Viscous Flows.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#BirosG05a,https://doi.org/10.1137/S1064827502415661 +Guillaume Aupy,Optimal Multistage Algorithm for Adjoint Computation.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#AupyHHR16,https://doi.org/10.1137/15M1019222 +Ian T. Foster,Parallel Algorithms for the Spectral Transform Method.,1997,18,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc18.html#FosterW97,https://doi.org/10.1137/S1064827594266891 +Olivier Zahm,Interpolation of Inverse Operators for Preconditioning Parameter-Dependent Equations.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#ZahmN16,https://doi.org/10.1137/15M1019210 +Alexander Heinlein,A Parallel Implementation of a Two-Level Overlapping Schwarz Method with Energy-Minimizing Coarse Space Based on Trilinos.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#HeinleinKR16,https://doi.org/10.1137/16M1062843 +Birte Schmidtmann,A Hybrid Riemann Solver for Large Hyperbolic Systems of Conservation Laws.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#SchmidtmannT17,https://doi.org/10.1137/16M108567X +Laek S. Andallah,A Discrete Boltzmann Equation Based on a Cub-Octahedron in R3.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#AndallahB08,https://doi.org/10.1137/060673850 +Torquil Macdonald Sørensen,Levy Process Simulation by Stochastic Step Functions.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#SorensenB13,https://doi.org/10.1137/110851080 +J. Reiss,The Shifted Proper Orthogonal Decomposition: A Mode Decomposition for Multiple Transport Phenomena.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#ReissSSM18,https://doi.org/10.1137/17M1140571 +Stephen L. Campbell,Solvability of General Differential Algebraic Equations.,1995,16,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc16.html#CampbellG95,https://doi.org/10.1137/0916017 +Amnon J. Meir,Radially Projected Finite Elements.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#MeirT09,https://doi.org/10.1137/07069167X +Achim Schädle,Fast and Oblivious Convolution Quadrature.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#SchadleLL06,https://doi.org/10.1137/050623139 +Jan Mayer,Symmetric Permutations for I-matrices to Delay and Avoid Small Pivots During Factorization.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#Mayer08,https://doi.org/10.1137/060669176 +Emmanuel Agullo,Interpolation-Restart Strategies for Resilient Eigensolvers.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#AgulloGSZ16,https://doi.org/10.1137/15M1042115 +Florian Kummer,An Extension of the Discontinuous Galerkin Method for the Singular Poisson Equation.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#KummerO13,https://doi.org/10.1137/120878586 +Fei Liu,Recursive Sweeping Preconditioner for the Three-Dimensional Helmholtz Equation.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#LiuY16,https://doi.org/10.1137/15M1010154 +Peter A. Forsyth,A Control Volume Finite Element Approach to NAPL Groundwater Contamination.,1991,12,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc12.html#Forsyth91,https://doi.org/10.1137/0912055 +Kadir Akbudak,Simultaneous Input and Output Matrix Partitioning for Outer-Product-Parallel Sparse Matrix-Matrix Multiplication.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#AkbudakA14,https://doi.org/10.1137/13092589X +Yasunori Aoki,Cluster Newton Method for Sampling Multiple Solutions of Underdetermined Inverse Problems: Application to a Parameter Identification Problem in Pharmacokinetics.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#AokiHSK14,https://doi.org/10.1137/120885462 +Elias Jarlebring,A Krylov Method for the Delay Eigenvalue Problem.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#JarlebringMM10,https://doi.org/10.1137/10078270X +Mihai Anitescu,Sensitivities in Large Eddy Simulation and Improved Estimates of Turbulent Flow Functionals.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#AnitescuL07,https://doi.org/10.1137/050631161 +Jizu Huang,A Fully Implicit Method for Lattice Boltzmann Equations.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#HuangYC15,https://doi.org/10.1137/140975346 +Marc Alexander Schweitzer,An Algebraic Treatment of Essential Boundary Conditions in the Particle--Partition of Unity Method.,2009,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#Schweitzer09,https://doi.org/10.1137/080716499 +Robert D. Falgout,Parallel Time Integration with Multigrid.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#FalgoutFKMS14,https://doi.org/10.1137/130944230 +Michel Crouzeix,The Davidson Method.,1994,15,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc15.html#CrouzeixPS94,https://doi.org/10.1137/0915004 +Vladimir Rokhlin,Fast Algorithms for Spherical Harmonic Expansions.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#RokhlinT06,https://doi.org/10.1137/050623073 +Shlomo Ta'asan,On the Multigrid Waveform Relaxation Method.,1995,16,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc16.html#TaasanZ95,https://doi.org/10.1137/0916063 +Pieter D. Boom,High-Order Implicit Time-Marching Methods Based on Generalized Summation-By-Parts Operators.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#BoomZ15,https://doi.org/10.1137/15M1014917 +Paolo Crosetto,Parallel Algorithms for Fluid-Structure Interaction Problems in Haemodynamics.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#CrosettoDFQ11,https://doi.org/10.1137/090772836 +Paulien van Slingerland,Position-Dependent Smoothness-Increasing Accuracy-Conserving (SIAC) Filtering for Improving Discontinuous Galerkin Solutions.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#SlingerlandRV11,https://doi.org/10.1137/100782188 +Ming Li,Wavelet Frame Based Algorithm for 3D Reconstruction in Electron Microscopy.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#LiFJS14,https://doi.org/10.1137/130914474 +Michael Pippig,Parallel Three-Dimensional Nonequispaced Fast Fourier Transforms and Their Application to Particle Simulation.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#PippigP13,https://doi.org/10.1137/120888478 +Natasha Flyer,The Convergence of Spectral and Finite Difference Methods for Initial-Boundary Value Problems.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#FlyerS02,https://doi.org/10.1137/S1064827500374169 +Luc Giraud,Convergence in Backward Error of Relaxed GMRES.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#GiraudGL07,https://doi.org/10.1137/040608416 +Cui Cong,Implicit Space-Time Domain Decomposition Methods for Stochastic Parabolic Partial Differential Equations.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#CongCG14,https://doi.org/10.1137/12090410X +Sven Groß,Robust Preconditioning for XFEM Applied to Time-Dependent Stokes Problems.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#GrossLOR16,https://doi.org/10.1137/15M1024007 +Hans De Sterck,Nonlinearly Preconditioned Optimization on Grassmann Manifolds for Computing Approximate Tucker Tensor Decompositions.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#SterckH16,https://doi.org/10.1137/15M1037288 +Lars-Erik Andersson,Error Analysis for Operations in Solid Modeling in the Presence of Uncertainty.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#AnderssonSZ07,https://doi.org/10.1137/040604303 +Alex H. Barnett,Evaluation of Layer Potentials Close to the Boundary for Laplace and Helmholtz Problems on Analytic Planar Domains.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#Barnett14,https://doi.org/10.1137/120900253 +David I. Ketcheson,High-Order Wave Propagation Algorithms for Hyperbolic Systems.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#KetchesonPL13,https://doi.org/10.1137/110830320 +Peter Kandolf,A Block Krylov Method to Compute the Action of the Fréchet Derivative of a Matrix Function on a Vector with Applications to Condition Number Estimation.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#KandolfR17,https://doi.org/10.1137/16M1077969 +Erin Carson,Avoiding Communication in Nonsymmetric Lanczos-Based Krylov Subspace Methods.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#CarsonKD13,https://doi.org/10.1137/120881191 +Christophe Chalons,Well-Balanced Time Implicit Formulation of Relaxation Schemes for the Euler Equations.,2008,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#ChalonsCM08,https://doi.org/10.1137/070683040 +James M. Rosinski,The Accumulation of Rounding Errors and Port Validation for Global Atmospheric Models.,1997,18,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc18.html#RosinskiW97,https://doi.org/10.1137/S1064827594275534 +R. Bank,Algebraic Multigrid Domain and Range Decomposition (AMG-DD/AMG-RD).,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#BankFJMMR15,https://doi.org/10.1137/140974717 +Liang Yan 0002,Stochastic Collocation Algorithms Using l1-Minimization for Bayesian Solution of Inverse Problems.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#YanG15,https://doi.org/10.1137/140965144 +Zhao Zhang,Fast Bit-Reversals on Uniprocessors and Shared-Memory Multiprocessors.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#Zhang001,https://doi.org/10.1137/S1064827599359709 +Eldad Haber,Fast Finite Volume Simulation of 3D Electromagnetic Problems with Highly Discontinuous Coefficients.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#HaberA01,https://doi.org/10.1137/S1064827599360741 +Sergey Dolgov,Low-Rank Solution to an Optimization Problem Constrained by the Navier-Stokes Equations.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#DolgovS17,https://doi.org/10.1137/15M1040414 +Hans De Sterck,An Adaptive Algebraic Multigrid Algorithm for Low-Rank Canonical Tensor Decomposition.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#SterckM13,https://doi.org/10.1137/110855934 +Robert D. Skeel,Practical Construction of Modified Hamiltonians.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#SkeelH01,https://doi.org/10.1137/S106482750138318X +H. Martin Bücker,Parallel Minimum p-Norm Solution of the Neuromagnetic Inverse Problem for Realistic Signals Using Exact Hessian-Vector Products.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#BuckerBR08,https://doi.org/10.1137/07069198X +Roel Van Beeumen,A Rational Krylov Method Based on Hermite Interpolation for Nonlinear Eigenvalue Problems.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#BeeumenMM13,https://doi.org/10.1137/120877556 +Shu-Lin Wu,Schwarz Waveform Relaxation for a Neutral Functional Partial Differential Equation Model of Lossless Coupled Transmission Lines.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#WuH13,https://doi.org/10.1137/110860975 +Mapundi K. Banda,Toward a Mathematical Analysis for Drift-Flux Multiphase Flow Models in Networks.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#BandaHN10,https://doi.org/10.1137/080722138 +Prabhu Ramachandran,A Fast Multipole Method for Higher Order Vortex Panels in Two Dimensions.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#RamachandranRR05,https://doi.org/10.1137/S1064827502420719 +S. Brdar,Compact and Stable Discontinuous Galerkin Methods for Convection-Diffusion Problems.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#BrdarDK12,https://doi.org/10.1137/100817528 +James Demmel,Accurate and Efficient Floating Point Summation.,2004,25,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc25.html#DemmelH04,https://doi.org/10.1137/S1064827502407627 +Li-Tien Cheng,Binary Level-Set Shape Optimization Model and Algorithm for Volumetric Modulated Arc Therapy in Radiotherapy Treatment.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#ChengDMJJ13,https://doi.org/10.1137/120890430 +Habib Ammari,Two Numerical Methods for Recovering Small Inclusions from the Scattering Amplitude at a Fixed Frequency.,2005,27,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc27.html#AmmariIL05,https://doi.org/10.1137/040612518 +Stefano Zonca,An Unfitted Formulation for the Interaction of an Incompressible Fluid with a Thick Structure via an XFEM/DG Approach.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#ZoncaVF18,https://doi.org/10.1137/16M1097602 +Tommy Elfving,Semiconvergence and Relaxation Parameters for Projected SIRT Algorithms.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#ElfvingHN12,https://doi.org/10.1137/110834640 +Lars Eldén,Wavelet and Fourier Methods for Solving the Sideways Heat Equation.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#EldenBR00,https://doi.org/10.1137/S1064827597331394 +Miklós Homolya,TSFC: A Structure-Preserving Form Compiler.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#HomolyaMLH18,https://doi.org/10.1137/17M1130642 +Nim Keung Leung,C1 Convexity-Preserving Interpolation of Scattered Data.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#LeungR99,https://doi.org/10.1137/S1064827597315832 +Chris Walshaw,Mesh Partitioning: A Multilevel Balancing and Refinement Algorithm.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#WalshawC00,https://doi.org/10.1137/S1064827598337373 +Ricardo Delgadillo,Gauge-Invariant Frozen Gaussian Approximation Method for the Schrödinger Equation with Periodic Potentials.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#DelgadilloLY16,https://doi.org/10.1137/15M1040384 +Brendan Harding,Fault Tolerant Computation with the Sparse Grid Combination Technique.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#HardingHLS15,https://doi.org/10.1137/140964448 +P. B. Monk,A Dispersion Analysis of Finite Element Methods for Maxwell's Equations.,1994,15,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc15.html#MonkP94,https://doi.org/10.1137/0915055 +Kevin Burrage,An Efficient Implicit FEM Scheme for Fractional-in-Space Reaction-Diffusion Equations.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#BurrageHK12,https://doi.org/10.1137/110847007 +Dimitris J. Kavvadias,Locating and Computing Arbitrarily Distributed Zeros.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#KavvadiasMV99,https://doi.org/10.1137/S1064827598333806 +Matteo Parsani,Optimized Explicit Runge-Kutta Schemes for the Spectral Difference Method Applied to Wave Propagation Problems.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#ParsaniKD13,https://doi.org/10.1137/120885899 +Howard C. Elman,A Multigrid Method Enhanced by Krylov Subspace Iteration for Discrete Helmholtz Equations.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#ElmanEO01,https://doi.org/10.1137/S1064827501357190 +Charles H. Tong,Multilevel Filtering Preconditioners: Extensions to More General Elliptic Problems.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#TongCK92,https://doi.org/10.1137/0913012 +Michel O. Deville,Finite-Element Preconditioning for Pseudospectral Solutions of Elliptic Problems.,1990,11,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc11.html#DevilleM90,https://doi.org/10.1137/0911019 +Kenneth Duru,The Role of Numerical Boundary Procedures in the Stability of Perfectly Matched Layers.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#Duru16,https://doi.org/10.1137/140976443 +Michael G. Edwards,An h-r-Adaptive Approximate Riemann Solver for the Euler Equations in Two Dimensions.,1993,14,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc14.html#EdwardsOD93,https://doi.org/10.1137/0914011 +Pritam Ganguly,An Algorithm for Two-Dimensional Mesh Generation Based on the Pinwheel Tiling.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#GangulyVP06,https://doi.org/10.1137/040611343 +Andrew J. Christlieb,A Parallel Space-Time Algorithm.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#ChristliebHO12,https://doi.org/10.1137/110843484 +Huadong Gao,A New Mixed Formulation and Efficient Numerical Solution of Ginzburg-Landau Equations Under the Temporal Gauge.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#GaoS16,https://doi.org/10.1137/15M1022744 +Lakhdar Remaki,3-D Mesh Adaptation on Multiple Weak Discontinuities and Boundary Layers.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#RemakiH06,https://doi.org/10.1137/S1064827503429879 +David Kay,A Block Preconditioner for High-Order Mixed Finite Element Approximations to the Navier-Stokes Equations.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#KayL06,https://doi.org/10.1137/040609045 +Bin Han 0003,Design of Hermite Subdivision Schemes Aided by Spectral Radius Optimization.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#0003OY03,https://doi.org/10.1137/S1064827502408608 +Yongsam Kim,An Immersed Boundary Heart Model Coupled with a Multicompartment Lumped Model of the Circulatory System.,2010,32,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc32.html#KimLJ10,https://doi.org/10.1137/090761963 +Paul T. Bauman,GRINS: A Multiphysics Framework Based on the libMesh Finite Element Library.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#BaumanS16,https://doi.org/10.1137/15M1026110 +I. J. Anderson,A Distillation Algorithm for Floating-Point Summation.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#Anderson99,https://doi.org/10.1137/S1064827596314200 +Daniel Y. Le Roux,Analysis of Numerically Induced Oscillations in Two-Dimensional Finite-Element Shallow-Water Models Part II: Free Planetary Waves.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#RouxP08,https://doi.org/10.1137/070697872 +Martin Eller,A Symmetric Low-Frequency Stable Broadband Maxwell Formulation for Industrial Applications.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#EllerRSZ17,https://doi.org/10.1137/16M1077817 +Xiaoming He,A Finite Element Splitting Extrapolation for Second Order Hyperbolic Equations.,2009,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#HeL09,https://doi.org/10.1137/070703090 +Henri Calandra,Flexible Variants of Block Restarted GMRES Methods with Application to Geophysics.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#CalandraGLPV12,https://doi.org/10.1137/10082364X +Sharif Rahman,Uncertainty Quantification by Alternative Decompositions of Multivariate Functions.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#Rahman13,https://doi.org/10.1137/12089168X +Donald Goldfarb,Parametric Maximum Flow Algorithms for Fast Total Variation Minimization.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#GoldfarbY09,https://doi.org/10.1137/070706318 +Xiao-Qing Jin,A Note on Preconditioned Block Toeplitz Matrices.,1995,16,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc16.html#Jin95,https://doi.org/10.1137/0916055 +Jaime Peraire,The Compact Discontinuous Galerkin (CDG) Method for Elliptic Problems.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#PeraireP08,https://doi.org/10.1137/070685518 +Stefan Güttel,NLEIGS: A Class of Fully Rational Krylov Methods for Nonlinear Eigenvalue Problems.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#GuttelBMM14,https://doi.org/10.1137/130935045 +Henk A. van der Vorst,Special Issue 2000 Copper Mountain Conference.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#Vorst01,https://doi.org/10.1137/SJOCE3000023000002000vii000001 +Tan Bui-Thanh,Adaptive Hessian-Based Nonstationary Gaussian Process Response Surface Method for Probability Density Approximation with Application to Bayesian Solution of Large-Scale Inverse Problems.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#Bui-ThanhGH12,https://doi.org/10.1137/110851419 +Eugene Vecharynski,Generalized Preconditioned Locally Harmonic Residual Method for Non-Hermitian Eigenproblems.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#VecharynskiYX16,https://doi.org/10.1137/15M1027413 +Zachary Battles,An Extension of MATLAB to Continuous Functions and Operators.,2004,25,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc25.html#BattlesT04,https://doi.org/10.1137/S1064827503430126 +Yair Koren,Adaptive Multiscale Redistribution for Vector Quantization.,2006,27,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc27.html#KorenY06,https://doi.org/10.1137/040607769 +Daniele Boffi,A Nonconforming High-Order Method for the Biot Problem on General Meshes.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#BoffiBP16,https://doi.org/10.1137/15M1025505 +Roberto Barrio,Sensitivity Analysis of ODES/DAES Using the Taylor Series Method.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#Barrio06,https://doi.org/10.1137/030601892 +Erin Carson,A New Analysis of Iterative Refinement and Its Application to Accurate Solution of Ill-Conditioned Sparse Linear Systems.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#CarsonH17,https://doi.org/10.1137/17M1122918 +Nicholas J. Higham,The Accuracy of Floating Point Summation.,1993,14,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc14.html#Higham93,https://doi.org/10.1137/0914050 +Irad Yavneh,On Red-Black SOR Smoothing in Multigrid.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#Yavneh96,https://doi.org/10.1137/0917013 +William Jalby,Stability Analysis and Improvement of the Block Gram-Schmidt Algorithm.,1991,12,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc12.html#JalbyP91,https://doi.org/10.1137/0912056 +M. P. Neilson,Modeling Cell Movement and Chemotaxis Using Pseudopod-Based Feedback.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#NeilsonMWI11,https://doi.org/10.1137/100788938 +Kuiyuan Li,An Algorithm for Symmetric Tridiagonal Eigenproblems: Divide and Conquer with Homotopy Continuation.,1993,14,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc14.html#LiL93,https://doi.org/10.1137/0914046 +Sebastiano Boscarino,Implicit-Explicit Runge-Kutta Schemes for Hyperbolic Systems and Kinetic Equations in the Diffusion Limit.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#BoscarinoPR13,https://doi.org/10.1137/110842855 +Sheng-Gwo Chen,Discrete Conservation Laws on Curved Surfaces.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#ChenW13,https://doi.org/10.1137/110846257 +Carla D. Martin,An Order-p Tensor Factorization with Applications in Imaging.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#MartinSL13,https://doi.org/10.1137/110841229 +Mi-Young Kim,Discontinuous-Continuous Galerkin Methods for a Structured Model of a Biological System.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#Kim08,https://doi.org/10.1137/070706094 +Xiao-Chuan Cai,Inexact Newton Methods with Restricted Additive Schwarz Based Nonlinear Elimination for Problems with High Local Nonlinearity.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#CaiL11,https://doi.org/10.1137/080736272 +Yuezheng Gong,Fully Discrete Second-Order Linear Schemes for Hydrodynamic Phase Field Models of Binary Viscous Fluid Flows with Variable Densities.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#Gong0YW18,https://doi.org/10.1137/17M1111759 +V. A. Bandy,Some Multigrid Algorithms for Elliptic Problems on Data Parallel Machines.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#BandyDS98,https://doi.org/10.1137/S1064827596303648 +Ling Guo,Stochastic Collocation Methods via and#8467*1 Minimization Using Randomized Quadratures.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#GuoNZC17,https://doi.org/10.1137/16M1059680 +Haoying Fu,Efficient Minimization Methods of Mixed l2-l1 and l1-l1 Norms for Image Restoration.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#FuNNB06,https://doi.org/10.1137/040615079 +Christophe Berthon,A Positive Preserving High Order VFRoe Scheme for Shallow Water Equations: A Class of Relaxation Schemes.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#BerthonM08,https://doi.org/10.1137/070686147 +Sylvain Vallaghé,The Static Condensation Reduced Basis Element Method for a Mixed-Mean Conjugate Heat Exchanger Model.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#VallagheP14,https://doi.org/10.1137/120887709 +Prince Chidyagwai,Constraint Preconditioning for the Coupled Stokes-Darcy System.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#ChidyagwaiLS16,https://doi.org/10.1137/15M1032156 +Luciano Misici,Three-Dimensional Inverse Obstacle Scattering for Time Harmonic Acoustic Waves: A Numerical Method.,1994,15,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc15.html#MisiciZ94,https://doi.org/10.1137/0915072 +Peter Buchholz,Block SOR Preconditioned Projection Methods for Kronecker Structured Markovian Representations.,2005,26,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc26.html#BuchholzD05,https://doi.org/10.1137/S1064827503425882 +Jos L. M. van Dorsselaer,Several Concepts to Investigate Strongly Nonnormal Eigenvalue Problems.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#Dorsselaer03,https://doi.org/10.1137/S1064827500382749 +Yvan Notay,Aggregation-Based Algebraic Multigrid for Convection-Diffusion Equations.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#Notay12,https://doi.org/10.1137/110835347 +Roman Wienands,Fourier Analysis of GMRES(m) Preconditioned by Multigrid.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#WienandsOW00,https://doi.org/10.1137/S1064827599353014 +Leonardo Zepeda-Núñez,Nested Domain Decomposition with Polarized Traces for the 2D Helmholtz Equation.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#Zepeda-NunezD18,https://doi.org/10.1137/15M104582X +William E. Boyse,A Block QMR Method for Computing Multiple Simultaneous Solutions to Complex Symmetric Systems.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#BoyseS96,https://doi.org/10.1137/0917019 +R. Michael Porter,An Interpolating Polynomial Method for Numerical Conformal Mapping.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#Porter01,https://doi.org/10.1137/S1064827599355256 +Daan Huybrechs,A Sparse Discretization for Integral Equation Formulations of High Frequency Scattering Problems.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#HuybrechsV07,https://doi.org/10.1137/060651525 +Chung-Ki Cho,Dual-Mesh Characteristics for Particle-Mesh Methods for the Simulation of Convection-Dominated Flows.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#ChoLK18,https://doi.org/10.1137/17M1114648 +Xiao-Chuan Cai,A Restricted Additive Schwarz Preconditioner for General Sparse Linear Systems.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#CaiS99,https://doi.org/10.1137/S106482759732678X +Yingzhou Li,Interpolative Butterfly Factorization.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#LiY17,https://doi.org/10.1137/16M1074941 +Andreas Frommer,Stopping Criteria for Rational Matrix Functions of Hermitian and Symmetric Matrices.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#FrommerS08,https://doi.org/10.1137/070684598 +Gennady Y. Kulikov,Variable-Stepsize Interpolating Explicit Parallel Peer Methods with Inherent Global Error Control.,2010,32,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc32.html#KulikovW10,https://doi.org/10.1137/090764840 +Robert J. Renka,A Simple and Efficient Method for Modeling Constant Mean Curvature Surfaces.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#Renka15,https://doi.org/10.1137/140972275 +Gene H. Golub,An Iteration for Indefinite Systems and Its Application to the Navier-Stokes Equations.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#GolubW98,https://doi.org/10.1137/S106482759529382X +Jörg Lampe,Accelerating the LSTRS Algorithm.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#LampeRSV11,https://doi.org/10.1137/090764426 +Luca Dieci,Block M-Matrices and Computation of Invariant Tori.,1992,13,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc13.html#DieciL92,https://doi.org/10.1137/0913053 +Michael Messner,An Efficient Galerkin Boundary Element Method for the Transient Heat Equation.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#MessnerST15,https://doi.org/10.1137/151004422 +Na Li,Crout Versions of ILU for General Sparse Matrices.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#LiSC03,https://doi.org/10.1137/S1064827502405094 +Dalin Tang,Numerical and Asymptotic Solutions for Peristaltic Motion of Nonlinear Viscous Flows with Elastic Free Boundaries.,1993,14,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc14.html#TangR93,https://doi.org/10.1137/0914077 +Laurent Bourgeois,On Simultaneous Identification of the Shape and Generalized Impedance Boundary Condition in Obstacle Scattering.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#BourgeoisCH12,https://doi.org/10.1137/110850347 +Yu Hong Yeung,AMPS: An Augmented Matrix Formulation for Principal Submatrix Updates with Application to Power Grids.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#YeungPHH17,https://doi.org/10.1137/16M1082755 +Heinz-Otto Kreiss,A Second Order Accurate Embedded Boundary Method for the Wave Equation with Dirichlet Data.,2006,27,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc27.html#KreissP06,https://doi.org/10.1137/040604728 +Rémi Abgrall,Two-Layer Shallow Water System: A Relaxation Approach.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#AbgrallK09,https://doi.org/10.1137/06067167X +Paul Castillo,Performance of Discontinuous Galerkin Methods for Elliptic PDEs.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#Castillo02,https://doi.org/10.1137/S1064827501388339 +Patricia D. Hough,Asynchronous Parallel Pattern Search for Nonlinear Optimization.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#HoughKT01,https://doi.org/10.1137/S1064827599365823 +Malena I. Español,Multilevel Approach For Signal Restoration Problems With Toeplitz Matrices.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#EspanolK10,https://doi.org/10.1137/080715780 +Daniel Y. Le Roux,Dispersion Relation Analysis of the $P^NC_1 - P^_1$ Finite-Element Pair in Shallow-Water Models.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#Roux05,https://doi.org/10.1137/030602435 +Daniel Potts,Fast Summation at Nonequispaced Knots by NFFT.,2003,24,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc24.html#PottsS03,https://doi.org/10.1137/S1064827502400984 +Delyan Kalchev,Two-Level Adaptive Algebraic Multigrid for a Sequence of Problems with Slowly Varying Random Coefficients.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#KalchevKV13,https://doi.org/10.1137/120895366 +Chris Fraley,Algorithms for Model-Based Gaussian Hierarchical Clustering.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#Fraley98,https://doi.org/10.1137/S1064827596311451 +Manuel Baumann,Space-Time Galerkin POD with Application in Optimal Control of Semilinear Partial Differential Equations.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#BaumannBH18,https://doi.org/10.1137/17M1135281 +Patrick H. Worley,Limits on Parallelism in the Numerical Solution of Linear Partial Differential Equations.,1991,12,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc12.html#Worley91,https://doi.org/10.1137/0912001 +Irene Livshits,One-Dimensional Algorithm for Finding Eigenbasis of the Schrödinger Operator.,2008,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#Livshits08,https://doi.org/10.1137/070684197 +Nicholas Hale,Contour Integral Solution of Elliptic PDEs in Cylindrical Domains.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#HaleW15,https://doi.org/10.1137/15M1032764 +Anders Andersson,Schwarz--Christoffel Mappings for Nonpolygonal Regions.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#Andersson08,https://doi.org/10.1137/070701297 +Takumi Washio,A Parallel Multilevel Technique for Solving the Bidomain Equation on a Human Heart with Purkinje Fibers and a Torso Model.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#WashioOH08,https://doi.org/10.1137/070689711 +Alan Genz,Stochastic Integration Rules for Infinite Regions.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#GenzM98,https://doi.org/10.1137/S1064827595286803 +Toni Karvonen,Fully Symmetric Kernel Quadrature.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#KarvonenS18,https://doi.org/10.1137/17M1121779 +Yuji Nakatsukasa,The AAA Algorithm for Rational Approximation.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#NakatsukasaST18,https://doi.org/10.1137/16M1106122 +Jing Yuan,Simultaneous Higher-Order Optical Flow Estimation and Decomposition.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#YuanSS07,https://doi.org/10.1137/060660709 +Jian-Feng Cai,Restoration of Chopped and Nodded Images by Framelets.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#CaiCSS08,https://doi.org/10.1137/040615298 +Lothar Nannen,Exact Sequences of High Order Hardy Space Infinite Elements for Exterior Maxwell Problems.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#NannenHSS13,https://doi.org/10.1137/110860148 +Thomas Hagstrom,Accurate Radiation Boundary Conditions for the Linearized Euler Equations in Cartesian Domains.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#HagstromG03,https://doi.org/10.1137/S1064827501395914 +Diederik R. Fokkema,Jacobi-Davidson Style QR and QZ Algorithms for the Reduction of Matrix Pencils.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#FokkemaSV98,https://doi.org/10.1137/S1064827596300073 +Leevan Ling,A Fast Block-Greedy Algorithm for Quasi-optimal Meshless Trial Subspace Selection.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#Ling16,https://doi.org/10.1137/15M1037627 +A. M. Sauer-Budge,Computing Bounds for Linear Functionals of Exact Weak Solutions to the Advection-Diffusion-Reaction Equation.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#Sauer-BudgeP04,https://doi.org/10.1137/S1064827503427121 +Keijo Hämäläinen,Sparse Tomography.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#HamalainenKKLNS13,https://doi.org/10.1137/120876277 +Dana A. Knoll,A Multigrid Preconditioned Newton-Krylov Method.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#KnollR99,https://doi.org/10.1137/S1064827598332709 +Andrey N. Chernikov,Parallel Guaranteed Quality Delaunay Uniform Mesh Refinement.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#ChernikovC06,https://doi.org/10.1137/050625886 +Ilan Degani,Optimal Quantum Control by an Adapted Coordinate Ascent Algorithm.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#DeganiZ12,https://doi.org/10.1137/11082467X +S. A. Stotland,Orderings for Parallel Conjugate Gradient Preconditioners.,1997,18,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc18.html#StotlandO97,https://doi.org/10.1137/S1064827593256244 +Christoph Börgers,Exponential Time Differencing for Hodgkin-Huxley-like ODEs.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#BorgersN13,https://doi.org/10.1137/120883657 +Zhe Feng,An Adaptive Independence Sampler MCMC Algorithm for Bayesian Inferences of Functions.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#FengL18,https://doi.org/10.1137/15M1021751 +Seher Acer,A Recursive Bipartitioning Algorithm for Permuting Sparse Square Matrices into Block Diagonal Form with Overlap.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#AcerKA13,https://doi.org/10.1137/120861242 +Charles S. Henkel,Recursive Least Squares on a Hypercube Multiprocessor Using the Covariance Factorization.,1991,12,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc12.html#HenkelP91,https://doi.org/10.1137/0912005 +Lawrence F. Shampine,The MATLAB ODE Suite.,1997,18,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc18.html#ShampineR97,https://doi.org/10.1137/S1064827594276424 +Aaron L. Fogelson,Immersed Interface Methods for Neumann and Related Problems in Two and Three Dimensions.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#FogelsonK01,https://doi.org/10.1137/S1064827597327541 +Christian Meyer 0001,Adaptive Optimal Control of the Obstacle Problem.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#MeyerRW15,https://doi.org/10.1137/140975863 +Marica Pelanti,High-Resolution Finite Volume Methods for Dusty Gas Jets and Plumes.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#PelantiL06,https://doi.org/10.1137/050635018 +James C. Schatzman,Accuracy of the Discrete Fourier Transform and the Fast Fourier Transform.,1996,17,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc17.html#Schatzman96,https://doi.org/10.1137/S1064827593247023 +Nathan Albin,Discrete Periodic Extension Using an Approximate Step Function.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#AlbinP14,https://doi.org/10.1137/130932533 +Hong Cheng,Solving Degenerate Reaction-Diffusion Equations via Variable Step Peaceman-Rachford Splitting.,2004,25,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc25.html#ChengLST04,https://doi.org/10.1137/S1064827501380691 +Andreas Eibeck,An Efficient Stochastic Algorithm for Studying Coagulation Dynamics and Gelation Phenomena.,2000,22,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc22.html#EibeckW00,https://doi.org/10.1137/S1064827599353488 +Michael Griebel,An Algebraic Multigrid Method for Linear Elasticity.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#GriebelOS03,https://doi.org/10.1137/S1064827502407810 +Andrey N. Chernikov,Generalized Two-Dimensional Delaunay Mesh Refinement.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#ChernikovC09,https://doi.org/10.1137/080723028 +Michael Lange,Efficient Mesh Management in Firedrake Using PETSc DMPlex.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#LangeMKG16,https://doi.org/10.1137/15M1026092 +David Hysom,A Scalable Parallel Algorithm for Incomplete Factor Preconditioning.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#HysomP01,https://doi.org/10.1137/S1064827500376193 +Alessio Spantini,Goal-Oriented Optimal Approximations of Bayesian Linear Inverse Problems.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#SpantiniCWTM17,https://doi.org/10.1137/16M1082123 +Lawrence S. Mulholland,Pseudospectral Solution of Near-Singular Problems using Numerical Coordinate Transformations Based on Adaptivity.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#MulhollandHS98,https://doi.org/10.1137/S1064827595291984 +Claire Chainais-Hillairet,Study of Discrete Duality Finite Volume Schemes for the Peaceman Model.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#Chainais-HillairetKM13,https://doi.org/10.1137/130910555 +Ghislaine Godinaud,A Lagrange Scheme for a Mathematical Model of Powder Compression.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#GodinaudRR01,https://doi.org/10.1137/S1064827597233743 +Bernard D. Coleman,Space-Time Finite Element Methods for Surface Diffusion with Applications to the Theory of the Stability of Cylinders.,1996,17,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc17.html#ColemanFM96,https://doi.org/10.1137/S1064827594274589 +Gabriella Puppo,Numerical Entropy Production for Central Schemes.,2004,25,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc25.html#Puppo04,https://doi.org/10.1137/S1064827502386712 +David P. Nicholls,A Stable High-Order Method for Two-Dimensional Bounded-Obstacle Scattering.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#NichollsS06,https://doi.org/10.1137/050632920 +Pavel Jiránek,A Posteriori Error Estimates Including Algebraic Error and Stopping Criteria for Iterative Solvers.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#JiranekSV10,https://doi.org/10.1137/08073706X +Kristian Bredies,Iterated Hard Shrinkage for Minimization Problems with Sparsity Constraints.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#BrediesL08,https://doi.org/10.1137/060663556 +Zhiping Li,Numerical Justification of Branched Laminated Microstructure with Surface Energy.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#Li03,https://doi.org/10.1137/S1064827501396774 +Xin Wen,High Order Numerical Methods to Three Dimensional Delta Function Integrals in Level Set Methods.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#Wen10,https://doi.org/10.1137/090758295 +Jocelyne Erhel,Flow Simulation in Three-Dimensional Discrete Fracture Networks.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#ErhelDP09,https://doi.org/10.1137/080729244 +Yu-Mei Huang,Two-Step Approach for the Restoration of Images Corrupted by Multiplicative Noise.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#HuangLZ13,https://doi.org/10.1137/120898693 +Yidu Yang,Mixed Methods for the Helmholtz Transmission Eigenvalues.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#YangBLH16,https://doi.org/10.1137/15M1050756 +Prabir Daripa,A Fast Algorithm to Solve Nonhomogeneous Cauchy-Riemann Equations in the Complex Plane.,1992,13,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc13.html#Daripa92,https://doi.org/10.1137/0913080 +Helmut Harbrecht,On the Numerical Solution of a Shape Optimization Problem for the Heat Equation.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#HarbrechtT13,https://doi.org/10.1137/110855703 +Gun Srijuntongsiri,A Condition Number Analysis of a Line-Surface Intersection Algorithm.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#SrijuntongsiriV08,https://doi.org/10.1137/060668043 +Elena Celledoni,The Exact Computation of the Free Rigid Body Motion and Its Use in Splitting Methods.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#CelledoniFSZ08,https://doi.org/10.1137/070704393 +Mark Ainsworth,Is the Multigrid Method Fault Tolerant? The Two-Grid Case.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#AinsworthG17,https://doi.org/10.1137/16M1100691 +Neil N. Carlson,Design and Application of a Gradient-Weighted Moving Finite Element Code II: in Two Dimensions.,1998,19,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc19.html#CarlsonM98a,https://doi.org/10.1137/S1064827594269561 +Fabian Schury,Efficient Two-Scale Optimization of Manufacturable Graded Structures.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#SchurySW12,https://doi.org/10.1137/110850335 +Christopher M. Kuster,Fast Numerical Methods for Bernoulli Free Boundary Problems.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#KusterGT07,https://doi.org/10.1137/06065444X +Matthias Heinkenschloss,Neumann-Neumann Domain Decomposition Preconditioners for Linear-Quadratic Elliptic Optimal Control Problems.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#HeinkenschlossN06,https://doi.org/10.1137/040612774 +Stefano Trazzi,Adaptive and Recursive Time Relaxed Monte Carlo Methods for Rarefied Gas Dynamics.,2009,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#TrazziPW09,https://doi.org/10.1137/07069119X +Lizhen Qin,Optimized Schwarz Methods with Robin Transmission Conditions for Parabolic Problems.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#QinX08,https://doi.org/10.1137/070682149 +Steven Huss-Lederman,A Parallelizable Eigensolver for Real Diagonalizable Matrices with Real Eigenvalues.,1997,18,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc18.html#Huss-LedermanTT97,https://doi.org/10.1137/S1064827592228833 +Thomas G. Fai,Erratum: Immersed Boundary Method for Variable Viscosity and Variable Density Problems Using Fast Constant-Coefficient Linear Solvers I: Numerical Method and Results.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#FaiGMP14a,https://doi.org/10.1137/140967295 +Marc Garbey,A Schwarz Alternating Procedure for Singular Perturbation Problems.,1996,17,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc17.html#Garbey96,https://doi.org/10.1137/S1064827593258437 +Brett W. Bader,Curvilinear Linesearch for Tensor Methods.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#BaderS03,https://doi.org/10.1137/S1064827502406658 +Margreet Nool,A Parallel Jacobi-Davidson-type Method for Solving Large Generalized Eigenvalue Problems in Magnetohydrodynamics.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#NoolP00,https://doi.org/10.1137/S106482759933290X +Debojyoti Ghosh,Semi-implicit Time Integration of Atmospheric Flows with Characteristic-Based Flux Partitioning.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#GhoshC16,https://doi.org/10.1137/15M1044369 +Liviu Gr. Ixaru,Fast Computation of the Slater Integrals.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#IxaruSS06,https://doi.org/10.1137/050641004 +Sebastian Reich,A Nonparametric Ensemble Transform Method for Bayesian Inference.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#Reich13,https://doi.org/10.1137/130907367 +Bengt Fornberg,A Pseudospectral Approach for Polar and Spherical Geometries.,1995,16,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc16.html#Fornberg95,https://doi.org/10.1137/0916061 +David Kay,A Preconditioner for the Steady-State Navier-Stokes Equations.,2002,24,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc24.html#KayLW02,https://doi.org/10.1137/S106482759935808X +Achiya Dax,A Modified Iterative Refinement Scheme.,2004,25,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc25.html#Dax04,https://doi.org/10.1137/S1064827502409055 +Niccolò Dal Santo,Multi Space Reduced Basis Preconditioners for Large-Scale Parametrized PDEs.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#SantoDMQ18,https://doi.org/10.1137/16M1089149 +Rongliang Chen,Parallel One-Shot Lagrange-Newton-Krylov-Schwarz Algorithms for Shape Optimization of Steady Incompressible Flows.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#ChenC12,https://doi.org/10.1137/110830769 +Jingwei Hu,A Stochastic Galerkin Method for Hamilton-Jacobi Equations with Uncertainty.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#HuJX15,https://doi.org/10.1137/140990930 +Enver Kayaaslan,1.5D Parallel Sparse Matrix-Vector Multiply.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#KayaaslanAU18,https://doi.org/10.1137/16M1105591 +Mapundi K. Banda,A Stability Notion for Lattice Boltzmann Equations.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#BandaYK06,https://doi.org/10.1137/040606211 +Emmanuil H. Georgoulis,Norm Preconditioners for Discontinuous Galerkin hp-Finite Element Methods.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#GeorgoulisL08,https://doi.org/10.1137/060661612 +Nicolas Fiétier,A Meshless Particle Method for Poisson and Diffusion Problems with Discontinuous Coefficients and Inhomogeneous Boundary Conditions.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#FietierDS13,https://doi.org/10.1137/120889290 +Din-Kow Sun,Construction of Nearly Orthogonal Nedelec Bases for Rapid Convergence with Multilevel Preconditioned Solvers.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#SunLC01,https://doi.org/10.1137/S1064827500367531 +Ioannis Toulopoulos,Numerical Methods for Power-Law Diffusion Problems.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#ToulopoulosW17,https://doi.org/10.1137/16M1067792 +B. Lee,Guidance for Choosing Multigrid Preconditioners for Systems of Elliptic Partial Differential Equations.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#Lee09,https://doi.org/10.1137/070703636 +Chad Lieberman,Parameter and State Model Reduction for Large-Scale Statistical Inverse Problems.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#LiebermanWG10,https://doi.org/10.1137/090775622 +C. W. Wang,A Real Ghost Fluid Method for the Simulation of Multimedium Compressible Flow.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#WangLK06,https://doi.org/10.1137/030601363 +Michele Benzi,Analysis of Augmented Lagrangian-Based Preconditioners for the Steady Incompressible Navier-Stokes Equations.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#BenziW11,https://doi.org/10.1137/100797989 +Jirí Maryska,Schur Complement Systems in the Mixed-Hybrid Finite Element Approximation of the Potential Fluid Flow Problem.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#MaryskaRT00,https://doi.org/10.1137/S1064827598339608 +Michael K. Ng,Fast Recursive Least Squares Adaptive Filtering by Fast Fourier Transform-Based Conjugate Gradient Iterations.,1996,17,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc17.html#NgP96,https://doi.org/10.1137/0917060 +Francis Filbet,Numerical Simulations of Kinetic Models for Chemotaxis.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#FilbetY14,https://doi.org/10.1137/130910208 +Felix Anker,SDE Based Regression for Linear Random PDEs.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#AnkerBELNS17,https://doi.org/10.1137/16M1060637 +Zdenek Strakos,On Efficient Numerical Approximation of the Bilinear Form c*A-1b.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#StrakosT11,https://doi.org/10.1137/090753723 +Peter W. Glynn,Analysis of Initial Transient Deletion for Parallel Steady-State Simulations.,1992,13,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc13.html#GlynnH92,https://doi.org/10.1137/0913054 +Teresa Reginska,A Regularization Parameter in Discrete Ill-Posed Problems.,1996,17,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc17.html#Reginska96,https://doi.org/10.1137/S1064827593252672 +Sébastien Lacroix,Iterative Solution Methods for Modeling Multiphase Flow in Porous Media Fully Implicitly.,2003,25,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc25.html#LacroixVWW03,https://doi.org/10.1137/S106482750240443X +Michael J. Rempe,A Predictor-Corrector Algorithm for Reaction-Diffusion Equations Associated with Neural Activity on Branched Structures.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#RempeC06,https://doi.org/10.1137/050643210 +Luca F. Pavarino,Multilevel Additive Schwarz Preconditioners for the Bidomain Reaction-Diffusion System.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#PavarinoS08,https://doi.org/10.1137/070706148 +Raimund Bürger,Coupling of Discontinuous Galerkin Schemes for Viscous Flow in Porous Media with Adsorption.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#BurgerKRT18,https://doi.org/10.1137/17M1125820 +Juan J. García-Ripoll,Optimizing Schrödinger Functionals Using Sobolev Gradients: Applications to Quantum Mechanics and Nonlinear Optics.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#Garcia-RipollP01,https://doi.org/10.1137/S1064827500377721 +Alfio Quarteroni,An Interface-Strip Domain Decomposition Preconditioner.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#QuarteroniSV06,https://doi.org/10.1137/04061057X +Jan Nordström,Error Bounded Schemes for Time-dependent Hyperbolic Problems.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#Nordstrom07,https://doi.org/10.1137/060654943 +Gene H. Golub,A Stable Numerical Method for Inverting Shape from Moments.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#GolubMV99,https://doi.org/10.1137/S1064827597328315 +Thomas F. Coleman,Computing a Trust Region Step for a Penalty Function.,1990,11,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc11.html#ColemanH90,https://doi.org/10.1137/0911012 +Marc Garbey,On Some Applications of the Superposition Principle with Fourier Basis.,2000,22,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc22.html#Garbey00,https://doi.org/10.1137/S1064827597328133 +Yogi A. Erlangga,A Novel Multigrid Based Preconditioner For Heterogeneous Helmholtz Problems.,2006,27,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc27.html#ErlanggaOV06,https://doi.org/10.1137/040615195 +Margherita Porcelli,Preconditioning of Active-Set Newton Methods for PDE-constrained Optimal Control Problems.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#PorcelliST15,https://doi.org/10.1137/140975711 +Antti Lipponen,Correction of Model Reduction Errors in Simulations.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#LipponenHRKK18,https://doi.org/10.1137/15M1052421 +Dominic E. Charrier,Symmetric Interior Penalty Discontinuous Galerkin Discretizations and Block Preconditioning for Heterogeneous Stokes Flow.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#CharrierMS17,https://doi.org/10.1137/16M1084912 +Lizhen Qin,Finite Element Formulation in Flat Coordinate Spaces to Solve Elliptic Problems on General Closed Riemannian Manifolds.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#QinZZ14,https://doi.org/10.1137/110854722 +Lei-Hong Zhang,A Krylov Subspace Method for Large-Scale Second-Order Cone Linear Complementarity Problem.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#ZhangYSL15,https://doi.org/10.1137/140995064 +Olaf Schenk,On Large-Scale Diagonalization Techniques for the Anderson Model of Localization.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#SchenkBR06,https://doi.org/10.1137/050637649 +Minghua Chen,High Order Algorithms for the Fractional Substantial Diffusion Equation with Truncated Lévy Flights.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#ChenD15,https://doi.org/10.1137/14097207X +Mari Paz Calvo,High-Order Symplectic Runge-Kutta-Nyström Methods.,1993,14,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc14.html#CalvoS93a,https://doi.org/10.1137/0914073 +Weizhu Bao,Efficient and Stable Numerical Methods for the Generalized and Vector Zakharov System.,2005,26,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc26.html#BaoS05a,https://doi.org/10.1137/030600941 +Gabriel N. Gatica,A Preconditioned MINRES Method for the Coupling of Mixed-FEM and BEM for Some Nonlinear Problems.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#GaticaH02,https://doi.org/10.1137/S106482750138887X +Kendall E. Atkinson,Iterative Solution of Linear Systems Arising from the Boundary Integral Method.,1992,13,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc13.html#AtkinsonG92,https://doi.org/10.1137/0913041 +Victorita Dolean,Optimized Schwarz Methods for Maxwell's Equations.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#DoleanGG09,https://doi.org/10.1137/080728536 +Markus Huber 0004,Resilience for Massively Parallel Multigrid Solvers.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#HuberGRW16,https://doi.org/10.1137/15M1026122 +Uri M. Ascher,Sequential Regularization Methods for Nonlinear Higher-Index DAEs.,1997,18,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc18.html#AscherL97,https://doi.org/10.1137/S1064827595287778 +Barry F. Smith,A Parallel Implementation of an Iterative Substructuring Algorithm for Problems in Three Dimensions.,1993,14,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc14.html#Smith93,https://doi.org/10.1137/0914025 +Eleuterio F. Toro,Advection-Diffusion-Reaction Equations: Hyperbolization and High-Order ADER Discretizations.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#ToroM14,https://doi.org/10.1137/130937469 +Marián Slodicka,A Robust and Efficient Linearization Scheme for Doubly Nonlinear and Degenerate Parabolic Problems Arising in Flow in Porous Media.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#Slodicka02,https://doi.org/10.1137/S1064827500381860 +Anne Greenbaum,GMRES/CR and Arnoldi/Lanczos as Matrix Approximation Problems.,1994,15,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc15.html#GreenbaumT94,https://doi.org/10.1137/0915025 +Roberto Cavoretto,A Trivariate Interpolation Algorithm Using a Cube-Partition Searching Procedure.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#CavorettoR15,https://doi.org/10.1137/140989157 +L. L. Stell,A Fixed Domain Method for Injection Governed by the Stokes Equations.,1995,16,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc16.html#StellS95,https://doi.org/10.1137/0916047 +Lars Ferm,Adaptive Error Control for Steady State Solutions of Inviscid Flow.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#FermL02,https://doi.org/10.1137/S1064827500367452 +David W. Zingg,Comparison of High-Accuracy Finite-Difference Methods for Linear Wave Propagation.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#Zingg00,https://doi.org/10.1137/S1064827599350320 +Christian Boehm,A Semismooth Newton-CG Method for Constrained Parameter Identification in Seismic Tomography.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#BoehmU15,https://doi.org/10.1137/140968331 +Ning Du,A Fast Finite Element Method for Space-Fractional Dispersion Equations on Bounded Domains in and#8477*2.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#DuW15,https://doi.org/10.1137/15M1007458 +Tuomo Rossi,A Parallel Fast Direct Solver for Block Tridiagonal Systems with Separable Matrices of Arbitrary Dimension.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#RossiT99,https://doi.org/10.1137/S1064827597317016 +Hisham Bin Zubair,Multigrid for High-Dimensional Elliptic Partial Differential Equations on Non-equidistant Grids.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#ZubairOW07,https://doi.org/10.1137/060665695 +Ivan V. Oseledets,Tensor-Train Decomposition.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#Oseledets11,https://doi.org/10.1137/090752286 +Sjoerd Geevers,Sharp Penalty Term and Time Step Bounds for the Interior Penalty Discontinuous Galerkin Method for Linear Hyperbolic Problems.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#GeeversV17,https://doi.org/10.1137/16M1091290 +Jeff R. Cash,A Variable Step Runge-Kutta-Nyström Integrator for Reversible Systems of Second Order Initial Value Problems.,2005,26,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc26.html#Cash05,https://doi.org/10.1137/S030601727 +Lin Mu,A Least-Squares-Based Weak Galerkin Finite Element Method for Second Order Elliptic Equations.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#MuWY17,https://doi.org/10.1137/16M1083244 +Tom Gustafsson,A Posteriori Estimates for Conforming Kirchhoff Plate Elements.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#GustafssonSV18,https://doi.org/10.1137/17M1137334 +Armin Fügenschuh,A Discrete Optimization Approach to Large Scale Supply Networks Based on Partial Differential Equations.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#FugenschuhGHKM08,https://doi.org/10.1137/060663799 +Benjamin Peherstorfer,Localized Discrete Empirical Interpolation Method.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#PeherstorferBWB14,https://doi.org/10.1137/130924408 +Michele Benzi,An Augmented Lagrangian-Based Approach to the Oseen Problem.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#BenziO06,https://doi.org/10.1137/050646421 +Robert I. A. Patterson,The Linear Process Deferment Algorithm: A new technique for solving population balance equations.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#PattersonSBKN06,https://doi.org/10.1137/040618953 +Ariful Azad,Exploiting Multiple Levels of Parallelism in Sparse Matrix-Matrix Multiplication.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#AzadBBDGSTW16,https://doi.org/10.1137/15M104253X +David Fritzsche,Overlapping Blocks by Growing a Partition with Applications to Preconditioning.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#FritzscheFSS13,https://doi.org/10.1137/100803821 +Peter Gangl,Shape Optimization of an Electric Motor Subject to Nonlinear Magnetostatics.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#GanglLLMS15,https://doi.org/10.1137/15100477X +Martin J. Gander,PARAEXP: A Parallel Integrator for Linear Initial-Value Problems.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#GanderG13,https://doi.org/10.1137/110856137 +John W. Pearson,Fast Iterative Solution of Reaction-Diffusion Control Problems Arising from Chemical Processes.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#PearsonS13,https://doi.org/10.1137/120892003 +Paolo Bientinesi,A Parallel Eigensolver for Dense Symmetric Matrices Based on Multiple Relatively Robust Representations.,2005,27,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc27.html#BientinesiDG05,https://doi.org/10.1137/030601107 +Chao Yang 0001,A Trust Region Direct Constrained Minimization Algorithm for the Kohn-Sham Equation.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#YangMW07,https://doi.org/10.1137/060661442 +James Nance,A Sparse Interpolation Algorithm for Dynamical Simulations in Computational Chemistry.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#NanceK15,https://doi.org/10.1137/140965284 +Norman Yarvin,Generalized Gaussian Quadratures and Singular Value Decompositions of Integral Operators.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#YarvinR98,https://doi.org/10.1137/S1064827596310779 +Matthias Bollhöfer,Algebraic Multilevel Preconditioner for the Helmholtz Equation in Heterogeneous Media.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#BollhoferGS09,https://doi.org/10.1137/080725702 +Christopher A. Leibs,Nested Iteration and First-Order Systems Least Squares for a Two-Fluid Electromagnetic Darwin Model.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#LeibsM15,https://doi.org/10.1137/14097793X +Kevin T. Joyce,Point Spread Function Estimation in X-Ray Imaging with Partially Collapsed Gibbs Sampling.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#JoyceBL18,https://doi.org/10.1137/17M1149250 +H. J. Taijeron,Spline Interpolation and Smoothing on Hyperspheres.,1994,15,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc15.html#TaijeronGC94,https://doi.org/10.1137/0915068 +Yassine Boubendir,Acceleration of an Iterative Method for the Evaluation of High-Frequency Multiple Scattering Effects.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#BoubendirER17,https://doi.org/10.1137/16M1080501 +Shelvean Kapita,Residual-Based Adaptivity and PWDG Methods for the Helmholtz Equation.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#KapitaMW15,https://doi.org/10.1137/140967696 +Danny C. Sorensen,A DEIM Induced CUR Factorization.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#SorensenE16,https://doi.org/10.1137/140978430 +Matthias Kirchhart,A Smooth Partition of Unity Finite Element Method for Vortex Particle Regularization.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#KirchhartO17,https://doi.org/10.1137/17M1116258 +Stefan Röllin,Improving the Accuracy of GMRes with Deflated Restarting.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#RollinF07,https://doi.org/10.1137/060656127 +Matthias Kunik,A BGK-Type Flux-Vector Splitting Scheme for the Ultrarelativistic Euler Equations.,2004,26,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc26.html#KunikQW04,https://doi.org/10.1137/S1064827503422208 +Ranjit M. Passi,A Convolution Algorithm with Application to Data Assimilation.,1996,17,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc17.html#PassiGLD96,https://doi.org/10.1137/0917061 +Gang Bao,Computation of Pseudo-Differential Operators.,1996,17,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc17.html#BaoS96,https://doi.org/10.1137/S1064827593258279 +Silvia Bonettini,A Variable Metric Forward-Backward Method with Extrapolation.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#BonettiniPR16,https://doi.org/10.1137/15M1025098 +Amin Boumenir,Sampling and Eigenvalues of Non-Self-Adjoint Sturm-Liouville Problems.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#Boumenir01,https://doi.org/10.1137/S1064827500374078 +Christian Clason,The Quasi-Reversibility Method for Thermoacoustic Tomography in a Heterogeneous Medium.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#ClasonK07,https://doi.org/10.1137/06066970X +Marco Discacciati,Numerical Approximation of Internal Discontinuity Interface Problems.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#DiscacciatiQQ13,https://doi.org/10.1137/110850487 +Robert I. McLachlan,On the Numerical Integration of Ordinary Differential Equations by Symmetric Composition Methods.,1995,16,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc16.html#McLachlan95,https://doi.org/10.1137/0916010 +Christoph Lehrenfeld,The Nitsche XFEM-DG Space-Time Method and its Implementation in Three Space Dimensions.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#Lehrenfeld15,https://doi.org/10.1137/130943534 +Do Y. Kwak,V-Cycle Multigrid for Cell-Centered Finite Differences.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#Kwak99,https://doi.org/10.1137/S1064827597327310 +T. G. Liu,The Modified Ghost Fluid Method for Coupling of Fluid and Structure Constituted with Hydro-Elasto-Plastic Equation of State.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#LiuXK08,https://doi.org/10.1137/050647013 +Chen Greif,A Note on the Convergence of SOR for the PageRank Problem.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#GreifK11,https://doi.org/10.1137/110823523 +Snorre H. Christiansen,Constraint Preserving Schemes for Some Gauge Invariant Wave Equations.,2009,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#Christiansen09,https://doi.org/10.1137/070690900 +Ana Alonso Rodriguez,New Nonoverlapping Domain Decomposition Methods for the Harmonic Maxwell System.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#RodriguezG06,https://doi.org/10.1137/040608696 +Weizhang Huang,A Simple Adaptive Grid Method in Two Dimensions.,1994,15,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc15.html#HuangS94,https://doi.org/10.1137/0915049 +Xiao-Wen Chang,Computation of a Test Statistic in Data Quality Control.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#ChangPT05,https://doi.org/10.1137/030601557 +Tony F. Chan,High-Order Total Variation-Based Image Restoration.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#ChanMM00,https://doi.org/10.1137/S1064827598344169 +John A. Trangenstein,Adaptive Mesh Refinement for Wave Propagation in Nonlinear Solids.,1995,16,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc16.html#Trangenstein95,https://doi.org/10.1137/0916048 +Craig C. Douglas,Fast Hybrid Solution of Algebraic Systems.,1990,11,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc11.html#DouglasMM90,https://doi.org/10.1137/0911060 +Robert C. Kirby,Low-Complexity Finite Element Algorithms for the de Rham Complex on Simplices.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#Kirby14,https://doi.org/10.1137/130927693 +Udo Ziegler,Block-Structured Adaptive Mesh Refinement on Curvilinear-Orthogonal Grids.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#Ziegler12,https://doi.org/10.1137/110843940 +Robert D. Skeel,What Makes Molecular Dynamics Work?,2009,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#Skeel09,https://doi.org/10.1137/070683660 +Gregor Gassner,A Comparison of the Dispersion and Dissipation Errors of Gauss and Gauss-Lobatto Discontinuous Galerkin Spectral Element Methods.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#GassnerK11,https://doi.org/10.1137/100807211 +Alessandro Alla,An Efficient Policy Iteration Algorithm for Dynamic Programming Equations.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#AllaFK15,https://doi.org/10.1137/130932284 +Torben Pätz,Composite Finite Elements for a Phase Change Model.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#PatzP12,https://doi.org/10.1137/110853935 +Tong Qin,Implicit Positivity-Preserving High-Order Discontinuous Galerkin Methods for Conservation Laws.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#QinS18,https://doi.org/10.1137/17M112436X +Desmond J. Higham,Phase Space Error Control for Dynamical Systems.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#HighamHW00,https://doi.org/10.1137/S1064827597331400 +Stefano Berrone,A PDE-Constrained Optimization Formulation for Discrete Fracture Network Flows.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#BerronePS13a,https://doi.org/10.1137/120865884 +Zhongxiao Jia,A Refined Harmonic Lanczos Bidiagonalization Method and an Implicitly Restarted Algorithm for Computing the Smallest Singular Triplets of Large Matrices.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#JiaN10,https://doi.org/10.1137/080733383 +Pauline Lafitte,Asymptotic-preserving Projective Integration Schemes for Kinetic Equations in the Diffusion Limit.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#LafitteS12,https://doi.org/10.1137/100795954 +Geoffrey Womeldorff,Unified Matching Grids for Multidomain Multiphysics Simulations.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#WomeldorffPGR13,https://doi.org/10.1137/130906611 +Paul N. Swarztrauber,On Computing the Points and Weights for Gauss-Legendre Quadrature.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#Swarztrauber03,https://doi.org/10.1137/S1064827500379690 +Roland Pulch,Variational Methods for Solving Warped Multirate Partial Differential Algebraic Equations.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#Pulch08,https://doi.org/10.1137/050638886 +Tony F. Chan,A Note on the Efficiency of Domain Decomposed Incomplete Factorizations.,1990,11,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc11.html#ChanG90,https://doi.org/10.1137/0911046 +M. Sebastian Pauletti,Igatools: An Isogeometric Analysis Library.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#PaulettiMCA15,https://doi.org/10.1137/140955252 +Christoph Winter,Wavelet Galerkin Schemes for Multidimensional Anisotropic Integrodifferential Operators.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#Winter10,https://doi.org/10.1137/090760143 +Tahar Amari,A Preconditioned Semi-Implicit Method for Magnetohydrodynamics Equations.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#AmariLJ99,https://doi.org/10.1137/S1064827596304824 +José Henrique de Morais Goulart,Low-Rank Tensor Recovery using Sequentially Optimal Modal Projections in Iterative Hard Thresholding (SeMPIHT).,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#GoulartF17,https://doi.org/10.1137/16M1062089 +Qiang Du,Constrained Centroidal Voronoi Tessellations for Surfaces.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#DuGJ03,https://doi.org/10.1137/S1064827501391576 +Alexander Kurganov,A Third-Order Semidiscrete Central Scheme for Conservation Laws and Convection-Diffusion Equations.,2000,22,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc22.html#KurganovL00,https://doi.org/10.1137/S1064827599360236 +Alex Townsend,An Extension of Chebfun to Two Dimensions.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#TownsendT13,https://doi.org/10.1137/130908002 +Michael Griebel,Parallel Domain-Oriented Multilevel Methods.,1995,16,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc16.html#Griebel95,https://doi.org/10.1137/0916064 +Joseph Kolibal,Importance of Convection and Damping on Rates of Convergence for the Lax-Wendroff Method.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#Kolibal99,https://doi.org/10.1137/S1064827597308269 +Günther Of,Coupling of Discontinuous Galerkin Finite Element and Boundary Element Methods.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#OfRST12,https://doi.org/10.1137/110848530 +James Demmel,Accurate Singular Values of Bidiagonal Matrices.,1990,11,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc11.html#DemmelK90,https://doi.org/10.1137/0911052 +Richard E. Ewing,Two-Level Local Refinement Preconditioners for Nonsymmetric and Indefinite Elliptic Problems.,1994,15,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc15.html#EwingPV94,https://doi.org/10.1137/0915010 +Jesse Chan,Weight-Adjusted Discontinuous Galerkin Methods: Curvilinear Meshes.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#ChanHW17,https://doi.org/10.1137/16M1089198 +Siegfried Cools,An Efficient Multigrid Calculation of the Far Field Map for Helmholtz and Schrödinger Equations.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#CoolsRV14,https://doi.org/10.1137/130921064 +Martin Siebenborn,Algorithmic Aspects of Multigrid Methods for Optimization in Shape Spaces.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#SiebenbornW17,https://doi.org/10.1137/16M1104561 +Fred J. Hickernell,Extensible Lattice Sequences for Quasi-Monte Carlo Quadrature.,2000,22,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc22.html#HickernellHLL00,https://doi.org/10.1137/S1064827599356638 +Antonio Márquez,Analyses of Mixed Continuous and Discontinuous Galerkin Methods for the tIme Harmonic Elasticity Problem with Reduced Symmetry.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#MarquezMT15,https://doi.org/10.1137/14099022X +C. S. Chien,Multiple Bifurcation in the von Kármán Equations.,1997,18,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc18.html#ChienC97,https://doi.org/10.1137/S106482759427364X +Anaïs Crestetto,A Hybrid Method for Anisotropic Elliptic Problems Based on the Coupling of an Asymptotic-Preserving Method with the Asymptotic Limit Model.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#CrestettoDN16,https://doi.org/10.1137/15M1011470 +Lidia Aceto,On the Construction and Properties of m-step Methods for FDEs.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#AcetoMN15,https://doi.org/10.1137/140973505 +Marc Lenoir,Evaluation of 3-D Singular and Nearly Singular Integrals in Galerkin BEM for Thin Layers.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#LenoirS12,https://doi.org/10.1137/120866567 +Gabriele Ciaramella,Newton Methods for the Optimal Control of Closed Quantum Spin Systems.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#CiaramellaBDW15,https://doi.org/10.1137/140966988 +Xiangrui Meng,LSRN: A Parallel Iterative Solver for Strongly Over- or Underdetermined Systems.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#MengSM14,https://doi.org/10.1137/120866580 +Francis Filbet,Approximation of Hyperbolic Models for Chemosensitive Movement.,2005,27,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc27.html#FilbetS05,https://doi.org/10.1137/040604054 +Murat Manguoglu,Weighted Matrix Ordering and Parallel Banded Preconditioners for Iterative Linear System Solvers.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#ManguogluKSG10,https://doi.org/10.1137/080713409 +Mario Arioli,A Note on GMRES Preconditioned by a Perturbed L D LT Decomposition with Static Pivoting.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#ArioliDGP07,https://doi.org/10.1137/060661545 +Markus Klingler,A Restart Procedure for the Finite Mass Method.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#KlinglerLY07,https://doi.org/10.1137/050641235 +Michael Carley,Moving Least Squares via Orthogonal Polynomials.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#Carley10,https://doi.org/10.1137/09076711X +Zhiming Lu,A Comparative Study on Uncertainty Quantification for Flow in Randomly Heterogeneous Media Using Monte Carlo Simulations and Conventional and KL-Based Moment-Equation Approaches.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#LuZ04,https://doi.org/10.1137/S1064827503426826 +Carl Erik Wasberg,Optimal Decomposition of the Domain in Spectral Methods for Wave-Like Phenomena.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#WasbergG00,https://doi.org/10.1137/S1064827597322306 +Zaiwen Wen,Adaptive Regularized Self-Consistent Field Iteration with Exact Hessian for Electronic Structure Calculation.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#WenMUZ13,https://doi.org/10.1137/120894385 +Lexing Ying,Sparse Fourier Transform via Butterfly Algorithm.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#Ying09,https://doi.org/10.1137/08071291X +Shuhuang Xiang,The Fast Implementation of Higher Order Hermite-Fejér Interpolation.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#XiangH15,https://doi.org/10.1137/140971488 +Osni Marques,Benefits of IEEE-754 Features in Modern Symmetric Tridiagonal Eigensolvers.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#MarquesRV06,https://doi.org/10.1137/050641624 +Olivier Zahm,Projection-Based Model Order Reduction Methods for the Estimation of Vector-Valued Variables of Interest.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#ZahmFN17,https://doi.org/10.1137/16M106385X +William R. Ferng,Mesh Independence of Matrix-Free Methods for Path Following.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#FerngK00,https://doi.org/10.1137/S1064827598339360 +Nicolas Crouseilles,Numerical Schemes for Kinetic Equations in the Anomalous Diffusion Limit. Part II: Degenerate Collision Frequency.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#CrouseillesHL16a,https://doi.org/10.1137/15M1053190 +Shen Wang,Efficient Scalable Algorithms for Solving Dense Linear Systems with Hierarchically Semiseparable Structures.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#WangLXSH13,https://doi.org/10.1137/110848062 +Habib Ammari,Asymptotic Imaging of Perfectly Conducting Cracks.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#AmmariKLP10,https://doi.org/10.1137/090749013 +Simone Deparis,A Rescaled Localized Radial Basis Function Interpolation on Non-Cartesian and Nonconforming Grids.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#DeparisFQ14,https://doi.org/10.1137/130947179 +Howard C. Elman,Line Iterative Methods for Cyclically Reduced Discrete Convection-Diffusion Problems.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#ElmanG92,https://doi.org/10.1137/0913018 +Stephan Gadau,A Three-Dimensional Mixed Finite-Element Approximation of the Semiconductor Energy-Transport Equations.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#GadauJ08,https://doi.org/10.1137/070706276 +David Dereudre,Exact Simulation of Brownian Diffusions with Drift Admitting Jumps.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#DereudreMR17,https://doi.org/10.1137/16M107699X +Qinghai Zhang,Fourth-Order Interface Tracking in Two Dimensions via an Improved Polygonal Area Mapping Method.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#ZhangF14,https://doi.org/10.1137/140951886 +Michael Mascagni,Monte Carlo Methods for Calculating Some Physical Properties of Large Molecules.,2004,26,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc26.html#MascagniS04,https://doi.org/10.1137/S1064827503422221 +Ernst Hairer,Reversible Long-Term Integration with Variable Stepsizes.,1997,18,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc18.html#HairerS97,https://doi.org/10.1137/S1064827595285494 +Martin J. Gander,Analysis of Two Parareal Algorithms for Time-Periodic Problems.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#GanderJSZ13,https://doi.org/10.1137/130909172 +Yuezheng Gong,Second Order Fully Discrete Energy Stable Methods on Staggered Grids for Hydrodynamic Phase Field Models of Binary Viscous Fluids.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#GongZW18,https://doi.org/10.1137/17M1135451 +David Kay,Efficient Numerical Solution of Cahn-Hilliard-Navier-Stokes Fluids in 2D.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#KayW07,https://doi.org/10.1137/050648110 +Sarah W. Gaaf,The Infinite Bi-Lanczos Method for Nonlinear Eigenvalue Problems.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#GaafJ17,https://doi.org/10.1137/16M1084195 +Benjamin Peherstorfer,Data-Driven Reduced Model Construction with Time-Domain Loewner Models.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#PeherstorferGW17,https://doi.org/10.1137/16M1094750 +Chris Anderson,Rapid Computation of the Discrete Fourier Transform.,1996,17,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc17.html#AndersonD96,https://doi.org/10.1137/0917059 +Luke Olson,Algebraic Multigrid Preconditioning of High-Order Spectral Elements for Elliptic Problems on a Simplicial Mesh.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#Olson07,https://doi.org/10.1137/060663465 +Johnathan M. Bardsley,Randomize-Then-Optimize: A Method for Sampling from Posterior Distributions in Nonlinear Inverse Problems.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#BardsleySHL14,https://doi.org/10.1137/140964023 +Gilles Vilmart,Postprocessed Integrators for the High Order Integration of Ergodic SDEs.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#Vilmart15,https://doi.org/10.1137/140974328 +Huosheng Sun,An Overdetermined Schwarz Alternating Method.,1996,17,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc17.html#SunT96,https://doi.org/10.1137/0917057 +David J. Knezevic,A Certified Reduced Basis Method for the Fokker--Planck Equation of Dilute Polymeric Fluids: FENE Dumbbells in Extensional Flow.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#KnezevicP10,https://doi.org/10.1137/090759239 +Dalin Tang,A Free Moving Boundary Model and Boundary Iteration Method for Unsteady Viscous Flow in Stenotic Elastic Tubes.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#TangY99,https://doi.org/10.1137/S1064827597315686 +Tobias Jahnke,Long-Time-Step Integrators for Almost-Adiabatic Quantum Dynamics.,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#Jahnke04,https://doi.org/10.1137/S1064827502411316 +Ann S. Almgren,A Numerical Method for the Incompressible Navier-Stokes Equations Based on an Approximate Projection.,1996,17,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc17.html#AlmgrenBS96,https://doi.org/10.1137/S1064827593244213 +Rafael Bru,Balanced Incomplete Factorization.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#BruMMT08,https://doi.org/10.1137/070696088 +Siegfried M. Rump,Ultimately Fast Accurate Summation.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#Rump09,https://doi.org/10.1137/080738490 +Christian Bayer 0001,On NonAsymptotic Optimal Stopping Criteria in Monte Carlo Simulations.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#BayerHST14,https://doi.org/10.1137/130911433 +Patrick M. Knupp,Algebraic Mesh Quality Metrics.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#Knupp01,https://doi.org/10.1137/S1064827500371499 +Shao-Liang Zhang,GPBi-CG: Generalized Product-type Methods Based on Bi-CG for Solving Nonsymmetric Linear Systems.,1997,18,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc18.html#Zhang97,https://doi.org/10.1137/S1064827592236313 +Jiayang Sun,Some Practical Aspects of Exploratory Projection Pursuit.,1993,14,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc14.html#Sun93,https://doi.org/10.1137/0914005 +Richard K. Beatson,Fast Evaluation of Radial Basis Functions: Moment-Based Methods.,1998,19,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc19.html#BeatsonN98,https://doi.org/10.1137/S1064827595293569 +Huiyuan Li,Efficient Spectral and Spectral Element Methods for Eigenvalue Problems of Schrödinger Equations with an Inverse Square Potential.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#LiZ17,https://doi.org/10.1137/16M1069596 +Junichi Imai,An Accelerating Quasi-Monte Carlo Method for Option Pricing Under the Generalized Hyperbolic L[e-acute]vy Process.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#ImaiT09,https://doi.org/10.1137/080727713 +Gary R. Marple,A Fast Algorithm for Simulating Multiphase Flows Through Periodic Geometries of Arbitrary Shape.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#MarpleBGV16,https://doi.org/10.1137/15M1043066 +Laura Grigori,Communication Avoiding ILU0 Preconditioner.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#GrigoriM15,https://doi.org/10.1137/130930376 +Samuel Herrmann,The First-passage Time of the Brownian Motion to a Curved Boundary: an Algorithmic Approach.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#HerrmannT16,https://doi.org/10.1137/151006172 +Christos Arvanitis,Behavior of Finite Volume Schemes for Hyperbolic Conservation Laws on Adaptive Redistributed Spatial Grids.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#ArvanitisD06,https://doi.org/10.1137/050632853 +William D. Gropp,Domain Decomposition with Local Mesh Refinement.,1992,13,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc13.html#GroppK92a,https://doi.org/10.1137/0913057 +Kevin Burrage,Numerical Methods for Second-Order Stochastic Differential Equations.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#BurrageLL07,https://doi.org/10.1137/050646032 +Andrei Schaffer,Stability of the Adjoint Differential-Algebraic Equation of the Index-3 Multibody System Equation of Motion.,2005,26,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc26.html#Schaffer05,https://doi.org/10.1137/030601983 +Mohamed M. S. Nasser,A Fast Boundary Integral Equation Method for Conformal Mapping of Multiply Connected Regions.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#NasserA13,https://doi.org/10.1137/120901933 +Johannes Kraus 0001,Additive Schur Complement Approximation and Application to Multilevel Preconditioning.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#Kraus12,https://doi.org/10.1137/110845082 +Tao Xiong,High Order Maximum-Principle-Preserving Discontinuous Galerkin Method for Convection-Diffusion Equations.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#XiongQX15,https://doi.org/10.1137/140965326 +Nadine Aubry,Preserving Symmetries in the Proper Orthogonal Decomposition.,1993,14,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc14.html#AubryLT93,https://doi.org/10.1137/0914030 +Benjamin Peherstorfer,A Multigrid Method for Adaptive Sparse Grids.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#PeherstorferZZB15,https://doi.org/10.1137/140974985 +Bracy H. Elton,Comparisons of Lattice Boltzmann and Finite Difference Methods for a Two-Dimensional Viscous Burgers Equation.,1996,17,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc17.html#Elton96,https://doi.org/10.1137/0917052 +Valmor F. De Almeida,Construction of Solution Curves for Large Two-Dimensional Problems of Steady-State Flows of Incompressible Fluids.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#AlmeidaD00,https://doi.org/10.1137/S1064827598334514 +Wilhelm Heinrichs,Defect Correction for Convection-Dominated Flow.,1996,17,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc17.html#Heinrichs96,https://doi.org/10.1137/S1064827593243736 +Uri M. Ascher,On Effective Methods for Implicit Piecewise Smooth Surface Recovery.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#AscherHH06,https://doi.org/10.1137/040617261 +Erik Burman,A Stabilized Cut Finite Element Method for the Three Field Stokes Problem.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#BurmanCM15,https://doi.org/10.1137/140983574 +Catherine Kublik,Algorithms for Area Preserving Flows.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#KublikEF11,https://doi.org/10.1137/100815542 +Finbarr O'Sullivan,Sensitivity Analysis for Regularized Estimation in Some System Identification Problems.,1991,12,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc12.html#OSullivan91,https://doi.org/10.1137/0912068 +Martin J. Gander,Optimized Schwarz Methods without Overlap for the Helmholtz Equation.,2002,24,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc24.html#GanderMN02,https://doi.org/10.1137/S1064827501387012 +Maurizio Falcone,A Finite-Difference Approximation of a Two-Layer System for Growing Sandpiles.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#FalconeV06,https://doi.org/10.1137/050629410 +Volker Betz,Nonadiabatic Transitions Through Tilted Avoided Crossings.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#BetzG11,https://doi.org/10.1137/100802347 +Subhendu Bikash Hazra,Multigrid One-shot Method for Aerodynamic Shape Optimization.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#Hazra08,https://doi.org/10.1137/060656498 +Michael Griebel,Space-Time Approximation with Sparse Grids.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#GriebelOV06,https://doi.org/10.1137/050629252 +Erik Lehto,A Radial Basis Function (RBF) Compact Finite Difference (FD) Scheme for Reaction-Diffusion Equations on Surfaces.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#LehtoSW17,https://doi.org/10.1137/16M1095457 +Jorgen L. Nikolajsen,Fractional Significant Digits.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#Nikolajsen13,https://doi.org/10.1137/110828435 +Nicholas J. Higham,Fast Polar Decomposition of an Arbitrary Matrix.,1990,11,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc11.html#HighamS90,https://doi.org/10.1137/0911038 +Eunok Jung,Two-Dimensional Simulations of Valveless Pumping Using the Immersed Boundary Method.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#JungP01,https://doi.org/10.1137/S1064827500366094 +Jörg Kampen,Monte Carlo Greeks for Financial Products via Approximative Transition Densities.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#KampenKS08,https://doi.org/10.1137/070682198 +Leandro Farina,Evaluation of Single Layer Potentials over Curved Surfaces.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#Farina01,https://doi.org/10.1137/S1064827599363393 +Ryadh Haferssas,An Additive Schwarz Method Type Theory for Lions's Algorithm and a Symmetrized Optimized Restricted Additive Schwarz Method.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#HaferssasJN17,https://doi.org/10.1137/16M1060066 +Tony F. Chan,Analysis of Projection Methods for Solving Linear Systems with Multiple Right-Hand Sides.,1997,18,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc18.html#ChanW97,https://doi.org/10.1137/S1064827594273067 +Nick Alger,A Data Scalable Augmented Lagrangian KKT Preconditioner for Large-Scale Inverse Problems.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#AlgerVBG17,https://doi.org/10.1137/16M1084365 +Barna L. Bihari,Multiresolution Schemes for the Numerical Solution of 2-D Conservation Laws I.,1997,18,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc18.html#BihariH97,https://doi.org/10.1137/S1064827594278848 +Abeer Aldoghaither,Modulating Functions Based Algorithm for the Estimation of the Coefficients and Differentiation Order for a Space-Fractional Advection-Dispersion Equation.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#AldoghaitherLL15,https://doi.org/10.1137/15M1008993 +Raz Kupferman,A Central-Difference Scheme for a Pure Stream Function Formulation of Incompressible Viscous Flow.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#Kupferman01,https://doi.org/10.1137/S1064827500373395 +Piero Barone,Fast Deconvolution by a Two-Step Method.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#Barone99,https://doi.org/10.1137/S1064827597307100 +Pierluigi Amodio,A Parallel Gauss-Seidel Method for Block Tridiagonal Linear Systems.,1995,16,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc16.html#AmodioM95,https://doi.org/10.1137/0916084 +Angelo Marcello Anile,Assessment of a High Resolution Centered Scheme for the Solution of Hydrodynamical Semiconductor Equations.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#AnileNP01,https://doi.org/10.1137/S1064827599361588 +Stephen J. Thomas,A Schwarz Preconditioner for the Cubed-Sphere.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#ThomasDTF03,https://doi.org/10.1137/S1064827502409420 +Jim E. Jones,A Multigrid Method for Variable Coefficient Maxwell's Equations.,2006,27,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc27.html#JonesL06,https://doi.org/10.1137/040608283 +Jianjun Cui,Equidistribution on the Sphere.,1997,18,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc18.html#CuiF97,https://doi.org/10.1137/S1064827595281344 +Jianxian Qiu,A Comparison of Troubled-Cell Indicators for Runge-Kutta Discontinuous Galerkin Methods Using Weighted Essentially Nonoscillatory Limiters.,2005,27,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc27.html#QiuS05,https://doi.org/10.1137/04061372X +Ron Estrin,SPMR: A Family of Saddle-Point Minimum Residual Solvers.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#EstrinG18,https://doi.org/10.1137/16M1102410 +Randolph E. Bank,A New Paradigm for Parallel Adaptive Meshing Algorithms.,2000,22,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc22.html#BankH00,https://doi.org/10.1137/S1064827599353701 +Wanda Strychalski,Simulating Biochemical Signaling Networks in Complex Moving Geometries.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#StrychalskiAE10,https://doi.org/10.1137/090779693 +Stefania Bellavia,A Matrix-Free Preconditioner for Sparse Symmetric Positive Definite Systems and Least-Squares Problems.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#BellaviaGM13,https://doi.org/10.1137/110840819 +Laurent White,Flow Simulation in Heterogeneous Porous Media With the Moving Least-Squares Method.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#WhitePT17,https://doi.org/10.1137/16M1070840 +Qiqi Wang,Minimal Repetition Dynamic Checkpointing Algorithm for Unsteady Adjoint Calculation.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#WangMI09,https://doi.org/10.1137/080727890 +Alessandro Alla,Nonlinear Model Order Reduction via Dynamic Mode Decomposition.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#AllaK17,https://doi.org/10.1137/16M1059308 +Lorenzo Pareschi,Time Relaxed Monte Carlo Methods for the Boltzmann Equation.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#PareschiR01,https://doi.org/10.1137/S1064827500375916 +Shengtai Li,Stability of Moving Mesh Systems of Partial Differential Equations.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#LiPR98,https://doi.org/10.1137/S1064827596302011 +Anil K. Bangia,Unsteady Two-Dimensional Flows in Complex Geometries: Comparative Bifurcation Studies with Global Eigenfunction Expansions.,1997,18,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc18.html#BangiaBKK97,https://doi.org/10.1137/S1064827595282246 +Philip Roe,Linear Bicharacteristic Schemes Without Dissipation.,1998,19,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc19.html#Roe98,https://doi.org/10.1137/S1064827594272785 +Steven Pruess,A Stable High-Order Interpolation Scheme for Superconvergent Data.,1996,17,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc17.html#PruessJ96,https://doi.org/10.1137/S1064827593257481 +Jonathan F. Bard,A Branch and Bound Algorithm for the Bilevel Programming Problem.,1990,11,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc11.html#BardM90,https://doi.org/10.1137/0911017 +Steven M. Serbin,A Scheme for Parallelizing Certain Algorithms for the Linear Inhomogeneous Heat Equation.,1992,13,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc13.html#Serbin92,https://doi.org/10.1137/0913024 +Minling Zheng,A Novel High Order Space-Time Spectral Method for the Time Fractional Fokker-Planck Equation.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#ZhengLTA15,https://doi.org/10.1137/140980545 +Hans De Sterck,Recursively Accelerated Multilevel Aggregation for Markov Chains.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#SterckMSW10,https://doi.org/10.1137/090770114 +Jan M. ten Vregelaar,On Computing Objective Function and Gradient in the Context of Least Squares Fitting a Dynamic Errors-In-Variables Model.,1995,16,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc16.html#Vregelaar95,https://doi.org/10.1137/0916044 +Trond Mannseth,An Analysis of the Robustness of Some Incomplete Factorizations.,1995,16,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc16.html#Mannseth95,https://doi.org/10.1137/0916083 +Thomas Richter 0003,Optimal Control and Parameter Estimation for Stationary Fluid-Structure Interaction Problems.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#RichterW13,https://doi.org/10.1137/120893239 +Jie Chen 0007,Algebraic Distance on Graphs.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#ChenS11,https://doi.org/10.1137/090775087 +Yinnian He,First-Order Decoupled Finite Element Method of the three-Dimensional Primitive Equations of the Ocean.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#HeZXC16,https://doi.org/10.1137/15M1019611 +Hsueh-Chen Lee,An Adaptively Refined Least-Squares Finite Element Method for Generalized Newtonian Fluid Flows Using the Carreau Model.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#Lee14,https://doi.org/10.1137/130912682 +Jörn Hofhaus,Alternating-Direction Line-Relaxation Methods on Multicomputers.,1996,17,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc17.html#HofhausV96,https://doi.org/10.1137/S1064827593253872 +Hans Petter Langtangen,Numerical Solution of First Passage Problems in Random Vibrations.,1994,15,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc15.html#Langtangen94,https://doi.org/10.1137/0915059 +Hongyuan Zha,On Updating Problems in Latent Semantic Indexing.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#ZhaS99,https://doi.org/10.1137/S1064827597329266 +Randolph E. Bank,On the Complexity of Sparse Gaussian Elimination via Bordering.,1990,11,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc11.html#BankR90,https://doi.org/10.1137/0911009 +Johannes K. Kraus,Preconditioning Heterogeneous H(div) Problems by Additive Schur Complement Approximation and Applications.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#KrausLLMZ16,https://doi.org/10.1137/140974092 +Simon L. Cotter,Adaptive Finite Element Method Assisted by Stochastic Simulation of Chemical Systems.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#CotterVE13,https://doi.org/10.1137/120877374 +Birte Schrader,Choosing the Best Kernel: Performance Models for Diffusion Operators in Particle Methods.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#SchraderRS12,https://doi.org/10.1137/110835815 +Tobin A. Driscoll,Numerical Conformal Mapping Using Cross-Ratios and Delaunay Triangulation.,1998,19,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc19.html#DriscollV98,https://doi.org/10.1137/S1064827596298580 +Stefano Micheletti,On Some Mixed Finite Element Methods with Numerical Integration.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#MichelettiSS01,https://doi.org/10.1137/S1064827500348788 +Gundolf Haase,Parallel Algebraic Multigrid Methods on Distributed Memory Computers.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#HaaseKR02,https://doi.org/10.1137/S1064827501386237 +Sergiy Zhuk,Data Assimilation for Linear Parabolic Equations: Minimax Projection Method.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#ZhukFHS15,https://doi.org/10.1137/13094709X +Meng Wang,Modified Virtual Grid Difference for Discretizing the Laplace-Beltrami Operator on Point Clouds.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#WangLZ18,https://doi.org/10.1137/16M1065690 +Jun Liu 0013,A Multiresolution Method for Distributed Parameter Estimation.,1993,14,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc14.html#Liu93,https://doi.org/10.1137/0914024 +Nicholas Hale,An Algorithm for the Convolution of Legendre Series.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#HaleT14a,https://doi.org/10.1137/140955835 +Zeyao Mo,Scalable Heuristic Algorithms for the Parallel Execution of Data Flow Acyclic Digraphs.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#MoZW09,https://doi.org/10.1137/050634554 +Nikolai D. Botkin,Stable Numerical Schemes for Solving Hamilton-Jacobi-Bellman-Isaacs Equations.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#BotkinHT11,https://doi.org/10.1137/100801068 +Mengdi Zheng,Adaptive Wick-Malliavin Approximation to Nonlinear SPDEs with Discrete Random Variables.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#ZhengRK15,https://doi.org/10.1137/140975930 +D. M. Kelly,PICIN: A Particle-in-Cell Solver for Incompressible Free Surface Flows with Two-Way Fluid-Solid Coupling.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#KellyCZ15,https://doi.org/10.1137/140976911 +Anne Gelb,Determining Analyticity for Parameter Optimization of the Gegenbauer Reconstruction Method.,2005,27,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc27.html#GelbJ05,https://doi.org/10.1137/040603814 +K. W. Morton,Vorticity-Preserving Lax-Wendroff-Type Schemes for the System Wave Equation.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#MortonR01,https://doi.org/10.1137/S106482759935914X +Tiantian Liu,Efficient and Qualified Mesh Generation for Gaussian Molecular Surface Using Adaptive Partition and Piecewise Polynomial Approximation.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#LiuCL18,https://doi.org/10.1137/16M1099704 +Michael S. Jolly,Accurate Computations on Inertial Manifolds.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#JollyRT01,https://doi.org/10.1137/S1064827599351738 +Björn Gmeiner,Performance and Scalability of Hierarchical Hybrid Multigrid Solvers for Stokes Systems.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#GmeinerRSWW15,https://doi.org/10.1137/130941353 +David J. Haroldsen,Numerical Calculation of Three-Dimensional Interfacial Potential Flows Using the Point Vortex Method.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#HaroldsenM98,https://doi.org/10.1137/S1064827596302060 +Kailiang Wu,A Randomized Tensor Quadrature Method for High Dimensional Polynomial Approximation.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#WuSX17,https://doi.org/10.1137/16M1081695 +Philipp Stumm,MultiStage Approaches for Optimal Offline Checkpointing.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#StummW09,https://doi.org/10.1137/080718036 +Daming Yuan,High Order Positivity-Preserving Discontinuous Galerkin Methods for Radiative Transfer Equations.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#YuanCS16,https://doi.org/10.1137/16M1061072 +Björn Adlerborn,Distributed One-Stage Hessenberg-Triangular Reduction with Wavefront Scheduling.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#AdlerbornKK18,https://doi.org/10.1137/16M1103890 +Francesco P. Andriulli,A Multiresolution Approach to the Electric Field Integral Equation in Antenna Problems.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#AndriulliTV07,https://doi.org/10.1137/050634943 +Nguyenho Ho,Accelerating the Uzawa Algorithm.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#HoOW17,https://doi.org/10.1137/16M1076770 +Wade S. Martinson,Index and Characteristic Analysis of Linear PDAE Systems.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#MartinsonB03,https://doi.org/10.1137/S1064827599363411 +Janne M. J. Huttunen,Estimation of Systematic and Spatially Correlated Components of Random Signals from Repeated Measurements: Application to Contrast Enhanced Computer Tomography Measurements.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#HuttunenTHTJ16,https://doi.org/10.1137/15M1017727 +Richard M. Beam,The Asymptotic Spectra of Banded Toeplitz and Quasi-Toeplitz Matrices.,1993,14,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc14.html#BeamW93,https://doi.org/10.1137/0914059 +Shidong Jiang,Fast and Accurate Evaluation of Nonlocal Coulomb and Dipole-Dipole Interactions via the Nonuniform FFT.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#JiangGB14,https://doi.org/10.1137/130945582 +Santiago Badia,On Monotonicity-Preserving Stabilized Finite Element Approximations of Transport Problems.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#BadiaH14,https://doi.org/10.1137/130927206 +Noel Walkington,Axially Symmetric Acoustic Wave Propagation Through Flows with Vorticity.,1991,12,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc12.html#Walkington91,https://doi.org/10.1137/0912078 +Luca Dedè,Reduced Basis Method and A Posteriori Error Estimation for Parametrized Linear-Quadratic Optimal Control Problems.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#Dede10,https://doi.org/10.1137/090760453 +Richard Mikael Slevinsky,On The Use of Conformal Maps for the Acceleration of Convergence of the Trapezoidal Rule and Sinc Numerical Methods.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#SlevinskyO15,https://doi.org/10.1137/140978363 +M. Ganesh,A High Performance Computing and Sensitivity Analysis Algorithm for Stochastic Many-Particle Wave Scattering.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#GaneshH15,https://doi.org/10.1137/140996069 +Nail A. Gumerov,Recursions for the Computation of Multipole Translation and Rotation Coefficients for the 3-D Helmholtz Equation.,2004,25,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc25.html#GumerovD04,https://doi.org/10.1137/S1064827501399705 +Bosco García-Archilla,Long-Time-Step Methods for Oscillatory Differential Equations.,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#Garcia-Archilla98,https://doi.org/10.1137/S1064827596313851 +Björn Adlerborn,A Parallel QZ Algorithm for Distributed Memory HPC Systems.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#AdlerbornKK14,https://doi.org/10.1137/140954817 +Eleonora Musharbash,Error Analysis of the Dynamically Orthogonal Approximation of Time Dependent Random PDEs.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#MusharbashNZ15,https://doi.org/10.1137/140967787 +Oscar P. Bruno,Regularity Theory and Superalgebraic Solvers for Wire Antenna Problems.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#BrunoH07,https://doi.org/10.1137/050648262 +Benjamin Rosenbaum,Efficient Response Surface Methods Based on Generic Surrogate Models.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#RosenbaumS13,https://doi.org/10.1137/120865331 +Wim A. Mulder,Multigrid for the One-Dimensional Inviscid Burgers Equation.,1990,11,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc11.html#Mulder90,https://doi.org/10.1137/0911002 +Matteo Astorino,Robin Based Semi-Implicit Coupling in Fluid-Structure Interaction: Stability Analysis and Numerics.,2009,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#AstorinoCF09,https://doi.org/10.1137/090749694 +Tony F. Chan,Performance of Block-ILU Factorization Preconditioners Based on Block-Size Reduction for 2D Elasticity Systems.,1997,18,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc18.html#ChanMV97,https://doi.org/10.1137/S1064827594277399 +Yuantao Cai,Regularization Preconditioners for Frame-Based Image Deblurring with Reduced Boundary Artifacts.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#CaiDBH16,https://doi.org/10.1137/140976261 +Nathan O. Collier,The Cost of Continuity: Performance of Iterative Solvers on Isogeometric Finite Elements.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#CollierDPC13,https://doi.org/10.1137/120881038 +Lulu Liu,Field-Split Preconditioned Inexact Newton Algorithms.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#LiuK15,https://doi.org/10.1137/140970379 +Yujia Chen,The Closest Point Method and Multigrid Solvers for Elliptic Equations on Surfaces.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#ChenM15,https://doi.org/10.1137/130929497 +Timo Tonn,Optimal Control of Parameter-Dependent Convection-Diffusion Problems around Rigid Bodies.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#TonnUV10,https://doi.org/10.1137/08074194X +Michael Tortorella,Closed Newton-Cotes Quadrature Rules for Stieltjes Integrals and Numerical Convolution of Life Distributions.,1990,11,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc11.html#Tortorella90,https://doi.org/10.1137/0911043 +Michael Wathen,Preconditioners for Mixed Finite Element Discretizations of Incompressible MHD Equations.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#WathenGS17,https://doi.org/10.1137/16M1098991 +Arthur Bousquet,Newton Solvers for Drift-Diffusion and Electrokinetic Equations.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#BousquetHMX18,https://doi.org/10.1137/17M1146956 +Kevin Burrage,A Deflation Technique for Linear Systems of Equations.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#BurrageEPW98,https://doi.org/10.1137/S1064827595294721 +Zhong-Zhi Bai,Fast Iterative Schemes for Nonsymmetric Algebraic Riccati Equations Arising from Transport Theory.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#BaiGL08,https://doi.org/10.1137/060675344 +Ralf Deiterding,Comparison of Adaptive Multiresolution and Adaptive Mesh Refinement Applied to Simulations of the Compressible Euler Equations.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#DeiterdingDGS16,https://doi.org/10.1137/15M1026043 +Saviz Mowlavi,Model Order Reduction for Stochastic Dynamical Systems with Continuous Symmetries.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#MowlaviS18,https://doi.org/10.1137/17M1126576 +Fabio Di Benedetto,Preconditioning of Block Toeplitz Matrices by Sine Transforms.,1997,18,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc18.html#Benedetto97,https://doi.org/10.1137/S1064827595258335 +Zhenning Cai,Solving Vlasov Equations Using NRxx Method.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#CaiLW13,https://doi.org/10.1137/120871791 +Bernardo Cockburn,Coupling at a Distance HDG and BEM.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#CockburnSS12,https://doi.org/10.1137/110823237 +Brittany D. Froese,A Numerical Method for the Elliptic Monge-Ampère Equation with Transport Boundary Conditions.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#Froese12,https://doi.org/10.1137/110822372 +Luise Blank,Preconditioning via a Schur Complement Method: An Application in State Estimation.,2003,25,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc25.html#Blank03,https://doi.org/10.1137/S1064827501399080 +Adam M. Oberman,A Numerical Method for Variational Problems with Convexity Constraints.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#Oberman13,https://doi.org/10.1137/120869973 +Evan S. Gawlik,Embedding-Based Interpolation on the Special Orthogonal Group.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#GawlikL18,https://doi.org/10.1137/17M1129416 +Sriramkrishnan Muralikrishnan,iHDG: An Iterative HDG Framework for Partial Differential Equations.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#MuralikrishnanT17,https://doi.org/10.1137/16M1074187 +Hossein Zivari-Piran,Accurate First-Order Sensitivity Analysis for Delay Differential Equations.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#Zivari-PiranE12,https://doi.org/10.1137/100814949 +Anil Damle,Pole Expansion for Solving a Type of Parametrized Linear Systems in Electronic Structure Calculations.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#DamleLY14,https://doi.org/10.1137/130944825 +Mauro Perego,A Variational Approach for Estimating the Compliance of the Cardiovascular Tissue: An Inverse Fluid-Structure Interaction Problem.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#PeregoVV11,https://doi.org/10.1137/100808277 +Robert C. Kirby,Topological Optimization of the Evaluation of Finite Element Matrices.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#KirbyLST06,https://doi.org/10.1137/050635547 +Stefano Berrone,On Simulations of Discrete Fracture Network Flows with an Optimization-Based Extended Finite Element Method.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#BerronePS13,https://doi.org/10.1137/120882883 +Krzysztof Domino,Efficient Computation of Higher-Order Cumulant Tensors.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#DominoGP18,https://doi.org/10.1137/17M1149365 +Frank W. Letniowski,Three-Dimensional Delaunay Triangulations for Finite Element Approximations to a Second-Order Diffusion Operator.,1992,13,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc13.html#Letniowski92,https://doi.org/10.1137/0913045 +Michael M. Wolf,Combinatorial Optimization of Matrix-Vector Multiplication in Finite Element Assembly.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#WolfH09,https://doi.org/10.1137/070704289 +C.-C. Jay Kuo,Two-Color Fourier Analysis of Iterative Algorithms for Elliptic Problems with Red/Black Ordering.,1990,11,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc11.html#KuoC90,https://doi.org/10.1137/0911045 +Ashvin Gopaul,Analysis of a Fourth-Order Scheme for a Three-Dimensional Convection-Diffusion Model Problem.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#GopaulB06,https://doi.org/10.1137/S1064827502410797 +Inderjit S. Dhillon,Glued Matrices and the MRRR Algorithm.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#DhillonPV05,https://doi.org/10.1137/040620746 +V. Sirotkin,Overlapping Schwarz Methods for a Singularly Perturbed Semilinear Elliptic Problem and Their Parallel Implementation.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#SirotkinT99,https://doi.org/10.1137/S1064827597317995 +Enrique S. Quintana-Ortí,A Note On Parallel Matrix Inversion.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#Quintana-OrtiQS01,https://doi.org/10.1137/S1064827598345679 +Manuel Torrilhon,Krylov-Riemann Solver for Large Hyperbolic Systems of Conservation Laws.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#Torrilhon12,https://doi.org/10.1137/110840832 +Hemant Mahawar,Preconditioned Iterative Solvers for Inductance Extraction of VLSI Circuits.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#MahawarS07,https://doi.org/10.1137/040609628 +Wim A. Mulder,A Note on the Use of Symmetric Line Gauss-Seidel for the Steady Upwind Differenced Euler Equations.,1990,11,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc11.html#Mulder90a,https://doi.org/10.1137/0911023 +P. J. van der Houwen,Triangularly Implicit Iteration Methods for ODE-IVP Solvers.,1997,18,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc18.html#HouwenS97,https://doi.org/10.1137/S1064827595287456 +Andrew M. Stuart,The Dynamics of the Theta Method.,1991,12,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc12.html#StuartP91,https://doi.org/10.1137/0912074 +Paola Goatin,The Wave-Front Tracking Algorithm for Hughes' Model of Pedestrian Motion.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#GoatinM13,https://doi.org/10.1137/120898863 +Julien Langou,Recovery Patterns for Iterative Methods in a Parallel Unstable Environment.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#LangouCBD07,https://doi.org/10.1137/040620394 +Emmanuel Leriche,High-Order Direct Stokes Solvers with or Without Temporal Splitting: Numerical Investigations of Their Comparative Properties.,2000,22,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc22.html#LericheL00,https://doi.org/10.1137/S1064827598349641 +Julianne Chung,Designing Optimal Spectral Filters for Inverse Problems.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#ChungCO11,https://doi.org/10.1137/100812938 +Gang Wu,A Preconditioned and Shifted GMRES Algorithm for the PageRank Problem with Multiple Damping Factors.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#WuWJ12,https://doi.org/10.1137/110834585 +Björn Engquist,Fast Wavelet Based Algorithms for Linear Evolution Equations.,1994,15,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc15.html#EngquistOZ94,https://doi.org/10.1137/0915048 +Karel Crombecq,A Novel Hybrid Sequential Design Strategy for Global Surrogate Modeling of Computer Experiments.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#CrombecqGDD11,https://doi.org/10.1137/090761811 +Bangti Jin,Two Fully Discrete Schemes for Fractional Diffusion and Diffusion-Wave Equations with Nonsmooth Data.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#JinLZ16,https://doi.org/10.1137/140979563 +Jianyu Pan,Fast Iterative Solvers for Linear Systems Arising from Time-Dependent Space-Fractional Diffusion Equations.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#PanNW16,https://doi.org/10.1137/15M1030273 +Chandrajit L. Bajaj,An Efficient Higher-Order Fast Multipole Boundary Element Solution for Poisson-Boltzmann-Based Molecular Electrostatics.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#BajajCR11,https://doi.org/10.1137/090764645 +Sven Erik Mattsson,Index Reduction in Differential-Algebraic Equations Using Dummy Derivatives.,1993,14,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc14.html#MattssonS93,https://doi.org/10.1137/0914043 +Erkki Heikkola,A Parallel Fictitious Domain Method for the Three-Dimensional Helmholtz Equation.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#HeikkolaRT03,https://doi.org/10.1137/S1064827500370305 +Louis A. Romero,The Large Equal Radius Conditions and Time of Arrival Geolocation Algorithms.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#RomeroMD08,https://doi.org/10.1137/070699020 +Mark F. Adams,Landau Collision Integral Solver with Adaptive Mesh Refinement on Emerging Architectures.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#AdamsHKBIM17,https://doi.org/10.1137/17M1118828 +Luis Ortiz-Gracia,Robust Pricing of European Options with Wavelets and the Characteristic Function.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#Ortiz-GraciaO13,https://doi.org/10.1137/130907288 +Christian Engwer,A Discontinuous Galerkin Method to Solve the EEG Forward Problem Using the Subtraction Approach.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#EngwerVLW17,https://doi.org/10.1137/15M1048392 +Barry F. Smith,A Domain Decomposition Algorithm Using a Hierarchical Basis.,1990,11,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc11.html#SmithW90,https://doi.org/10.1137/0911069 +Amir Averbuch,Parallel Adaptive Solution of a Poisson Equation with Multiwavelets.,2000,22,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc22.html#AverbuchBI00,https://doi.org/10.1137/S106482759833694X +Mark Ainsworth,Construction and Analysis of Optimal Hierarchic Models of Boundary Value Problems on Thin Circular and Spherical Geometries.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#AinsworthA00,https://doi.org/10.1137/S1064827599356274 +Olivier Bokanowski,An Efficient Filtered Scheme for Some First Order Time-Dependent Hamilton-Jacobi Equations.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#BokanowskiFS16,https://doi.org/10.1137/140998482 +Mounir Bennoune,On the Jump Conditions for an Immersed Interface Method.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#BennouneMO16,https://doi.org/10.1137/140989856 +Jack Poulson,A Parallel Sweeping Preconditioner for Heterogeneous 3D Helmholtz Equations.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#PoulsonELY13,https://doi.org/10.1137/120871985 +James J. Brannick,Least-Squares Finite Element Methods for Quantum Electrodynamics.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#BrannickKMM10,https://doi.org/10.1137/080729633 +Jing Li,Computation of Failure Probability Subject to Epistemic Uncertainty.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#LiX12,https://doi.org/10.1137/120864155 +Samuel Corveleyn,Iterative Solvers for a Spectral Galerkin Approach to Elliptic Partial Differential Equations with Fuzzy Coefficients.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#CorveleynRV13,https://doi.org/10.1137/120881592 +Eberhard Bänsch,Riccati-based Boundary Feedback Stabilization of Incompressible Navier-Stokes Flows.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#BanschBSW15,https://doi.org/10.1137/140980016 +David I. Ketcheson,Highly Efficient Strong Stability-Preserving Runge-Kutta Methods with Low-Storage Implementations.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#Ketcheson08,https://doi.org/10.1137/07070485X +Christopher E. Goodyer,Adaptive Timestepping for Elastohydrodynamic Lubrication Solvers.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#GoodyerB06,https://doi.org/10.1137/050622092 +Robert D. Falgout,Multigrid Reduction in Time for Nonlinear Parabolic Problems: A Case Study.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#FalgoutMOS17,https://doi.org/10.1137/16M1082330 +Marc Alexander Schweitzer,Variational Mass Lumping in the Partition of Unity Method.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#Schweitzer13,https://doi.org/10.1137/120895561 +Ulrike Baur,Interpolatory Projection Methods for Parameterized Model Reduction.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#BaurBBG11,https://doi.org/10.1137/090776925 +Ernesto Kofman,Discrete Event Simulation of Hybrid Systems.,2004,25,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc25.html#Kofman04,https://doi.org/10.1137/S1064827502418379 +Junping Wang,A Posteriori Error Estimation for an Interior Penalty Type Method Employing $H(\mathrm{div})$ Elements for the Stokes Equations.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#WangWY11,https://doi.org/10.1137/100783996 +Nicholas J. Higham,Stability of the Partitioned Inverse Method for Parallel Solution of Sparse Triangular Systems.,1994,15,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc15.html#HighamP94,https://doi.org/10.1137/0915009 +Xiaojun Chen 0001,Lower Bound Theory of Nonzero Entries in Solutions of and#8467*2-ℓ*p Minimization.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#ChenXY10,https://doi.org/10.1137/090761471 +Edward G. Phillips,Scalable Preconditioners for Structure Preserving Discretizations of Maxwell Equations in First Order Form.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#PhillipsSC18,https://doi.org/10.1137/17M1135827 +Eric de Sturler,A Regularized Gauss-Newton Trust Region Approach to Imaging in Diffuse Optical Tomography.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#SturlerK11,https://doi.org/10.1137/100798181 +Sonia Fliss,A Dirichlet-to-Neumann Approach for The Exact Computation of Guided Modes in Photonic Crystal Waveguides.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#Fliss13,https://doi.org/10.1137/12086697X +James H. Adler,Monolithic Multigrid Methods for Two-Dimensional Resistive Magnetohydrodynamics.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#AdlerBCMT16,https://doi.org/10.1137/151006135 +Christoph Hofer,Discontinuous Galerkin Isogeometric Analysis of Elliptic Diffusion Problems on Segmentations with Gaps.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#HoferLT16,https://doi.org/10.1137/15M1048574 +Vítezslav Veselý,Fast Cell-Structured Algorithm for Digit Reversal of Arbitrary Length.,1991,12,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc12.html#Vesely91,https://doi.org/10.1137/0912017 +Pieter W. Hemker,Two-Level Fourier Analysis of a Multigrid Approach for Discontinuous Galerkin Discretization.,2003,25,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc25.html#HemkerHR03,https://doi.org/10.1137/S1064827502405100 +Martin Almquist,MultiLevel Local Time-Stepping Methods of Runge-Kutta-type for Wave Equations.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#AlmquistM17,https://doi.org/10.1137/16M1084407 +Louis H. Howell,An Adaptive Mesh Projection Method for Viscous Incompressible Flow.,1997,18,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc18.html#HowellB97,https://doi.org/10.1137/S1064827594270555 +Erwan Faou,Computing Semiclassical Quantum Dynamics with Hagedorn Wavepackets.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#FaouGL09,https://doi.org/10.1137/080729724 +Dirk Lebiedz,A Variational Principle for Computing Slow Invariant Manifolds in Dissipative Dynamical Systems.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#LebiedzSU11,https://doi.org/10.1137/100790318 +Benqi Guo,Additive Schwarz Methods for the h-p Version of the Finite Element Method in Two Dimensions.,1997,18,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc18.html#GuoC97,https://doi.org/10.1137/S1064827595294368 +R. A. Trompert,Analysis of the Implicit Euler Local Uniform Grid Refinement Method.,1993,14,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc14.html#TrompertV93,https://doi.org/10.1137/0914017 +Volker H. Schulz,Exploiting Invariants in the Numerical Solution of Multipoint Boundary Value Problems for DAE.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#SchulzBS98,https://doi.org/10.1137/S1064827594261917 +Qiumei Huang,The hp Discontinuous Galerkin Method for Delay Differential Equations with Nonlinear Vanishing Delay.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#HuangXB13,https://doi.org/10.1137/120901416 +Nicolas Bock,Solvers for O (N) Electronic Structure in the Strong Scaling Limit.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#BockCK16,https://doi.org/10.1137/140974602 +I. K. Abu-Shumays,Incomplete Block Cyclic Reduction as a Preconditioner for Polynomial Iterative Methods.,1990,11,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc11.html#Abu-Shumays90,https://doi.org/10.1137/0911031 +Jing Li,On Upper and Lower Bounds for Quantity of Interest in Problems Subject to Epistemic Uncertainty.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#LiQX14,https://doi.org/10.1137/120892969 +R. Zimmermann,A Locally Parametrized Reduced-Order Model for the Linear Frequency Domain Approach to Time-Accurate Computational Fluid Dynamics.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#Zimmermann14,https://doi.org/10.1137/130942462 +Liya Asner,Adjoint-Based a Posteriori Error Estimation for Coupled Time-Dependent Systems.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#AsnerTK12,https://doi.org/10.1137/110858458 +Chris J. Budd,Moving Mesh Methods for Problems with Blow-Up.,1996,17,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc17.html#BuddHR96,https://doi.org/10.1137/S1064827594272025 +Jiyan Yang,Quantile Regression for Large-Scale Applications.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#YangMM14,https://doi.org/10.1137/130919258 +Martin J. Gander,Optimized Schwarz Methods for Model Problems with Continuously Variable Coefficients.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#GanderX16,https://doi.org/10.1137/15M1053943 +Roman Wienands,Collocation Coarse Approximation in Multigrid.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#WienandsY09,https://doi.org/10.1137/08074461X +Doron Gill,An O(N2 ) Method for Computing the Eigensystem of N and#735* N Symmetric Tridiagonal Matrices by the Divide and Conquer Approach.,1990,11,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc11.html#GillT90,https://doi.org/10.1137/0911010 +Sergio Blanes,Symplectic Integration with Processing: A General Study.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#BlanesCR99,https://doi.org/10.1137/S1064827598332497 +Fanhai Zeng,A Generalized Spectral Collocation Method with Tunable Accuracy for Variable-Order Fractional Differential Equations.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#ZengZK15,https://doi.org/10.1137/141001299 +Rafael G. Campos,A New Formulation of the Fast Fractional Fourier Transform.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#CamposRC12,https://doi.org/10.1137/100812677 +Monika Nitsche,Axisymmetric Vortex Sheet Motion: Accurate Evaluation of the Principal Value Integral.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#Nitsche99,https://doi.org/10.1137/S1064827596314182 +Tahir Malas,Schur Complement Preconditioners for Surface Integral-Equation Formulations of Dielectric Problems Solved with the Multilevel Fast Multipole Algorithm.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#MalasG11,https://doi.org/10.1137/090780808 +Qiang Du,Adaptive Finite Element Method for a Phase Field Bending Elasticity Model of Vesicle Membrane Deformations.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#DuZ08,https://doi.org/10.1137/060656449 +Roberto Barrio,Parallel Algorithms to Evaluate Orthogonal Polynomial Series.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#Barrio00,https://doi.org/10.1137/S1064827598340494 +Ramesh Natarajan,Domain Decomposition using Spectral Expansions of Steklov-Poincaré Operators II: A Matrix Formulation.,1997,18,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc18.html#Natarajan97,https://doi.org/10.1137/S1064827594274309 +Gerhard Starke,Least-Squares Mixed Finite Element Solution of Variably Saturated Subsurface Flow Problems.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#Starke00,https://doi.org/10.1137/S1064827598339384 +Michele Benzi,Robust Approximate Inverse Preconditioning for the Conjugate Gradient Method.,2000,22,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc22.html#BenziCT00,https://doi.org/10.1137/S1064827599356900 +Inmaculada Higueras,Design and Implementation of Predictors for Additive Semi-Implicit Runge--Kutta Methods.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#HiguerasMR09,https://doi.org/10.1137/070710160 +Jong Hyuk Park,The Domain Decomposition Method for Maxwell's Equations in Time Domain Simulations with Dispersive Metallic Media.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#ParkS10,https://doi.org/10.1137/070705374 +Rob H. Bisseling,Parallel Triangular System Solving on a Mesh Network of Transputers.,1991,12,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc12.html#BisselingV91,https://doi.org/10.1137/0912041 +Todd Arbogast,Mixed Methods for Two-Phase Darcy-Stokes Mixtures of Partially Melted Materials with Regions of Zero Porosity.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#ArbogastHT17,https://doi.org/10.1137/16M1091095 +Zlatko Drmac,Vector Fitting for Matrix-valued Rational Approximation.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#DrmacGB15a,https://doi.org/10.1137/15M1010774 +Wen Huang,Solving PhaseLift by Low-Rank Riemannian Optimization Methods for Complex Semidefinite Constraints.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#HuangGZ17,https://doi.org/10.1137/16M1072838 +Peter Monk 0001,Finite Element Methods for Maxwell's Transmission Eigenvalues.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#MonkS12,https://doi.org/10.1137/110839990 +Venera Khoromskaia,Tensor-Structured Factorized Calculation of Two-Electron Integrals in a General Basis.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#KhoromskaiaKS13,https://doi.org/10.1137/120884067 +Maxim A. Olshanskii,Pressure Schur Complement Preconditioners for the Discrete Oseen Problem.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#OlshanskiiV07,https://doi.org/10.1137/070679776 +Hirofumi Tomita,A New Approach to Atmospheric General Circulation Model: Global Cloud Resolving Model NICAM and its Computational Performance.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#TomitaGS08,https://doi.org/10.1137/070692273 +Changqing Hu,A Discontinuous Galerkin Finite Element Method for Hamilton-Jacobi Equations.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#HuS99,https://doi.org/10.1137/S1064827598337282 +Michele Benzi,Orderings for Factorized Sparse Approximate Inverse Preconditioners.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#BenziT00,https://doi.org/10.1137/S1064827598339372 +Eldad Haber,An Efficient Numerical Method for the Solution of the L2 Optimal Mass Transfer Problem.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#HaberRT10,https://doi.org/10.1137/080730238 +Philippe Guyenne,A High-Order Spectral Method for Nonlinear Water Waves over Moving Bottom Topography.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#GuyenneN07,https://doi.org/10.1137/060666214 +Mark Embree,Weighted Inner Products for GMRES and GMRES-DR.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#EmbreeMN17,https://doi.org/10.1137/16M1082615 +C. V. Pao,Block Monotone Iterations for Numerical Solutions of Fourth-Order Nonlinear Elliptic Boundary Value Problems.,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#PaoL03,https://doi.org/10.1137/S1064827502409912 +Shi Jin,Computation of Interface Reflection and Regular or Diffuse Transmission of the Planar Symmetric Radiative Transfer Equation with Isotropic Scattering and Its Diffusion Limit.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#JinLY08,https://doi.org/10.1137/060676192 +Bernardo Cockburn,Solving Dirichlet Boundary-value Problems on Curved Domains by Extensions from Subdomains.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#CockburnS12,https://doi.org/10.1137/100805200 +Mark Richardson,A Sinc Function Analogue of Chebfun.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#RichardsonT11,https://doi.org/10.1137/110825947 +Tao Tang,The Hermite Spectral Method for Gaussian-Type Functions.,1993,14,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc14.html#Tang93,https://doi.org/10.1137/0914038 +Christoph Riesinger,Solving Random Ordinary Differential Equations on GPU Clusters using Multiple Levels of Parallelism.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#RiesingerNR16,https://doi.org/10.1137/15M1036014 +Martin D. Schatz,Parallel Matrix Multiplication: A Systematic Journey.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#SchatzGP16,https://doi.org/10.1137/140993478 +James H. Bramble,Domain Decomposition Methods for Problems with Partial Refinement.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#BrambleEPP92,https://doi.org/10.1137/0913021 +Norberto Mangiavacchi,An Effective Implementation of Surface Tension Using the Marker and Cell Method for Axisymmetric and Planar Flows.,2005,26,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc26.html#MangiavacchiCTCOM05,https://doi.org/10.1137/S1064827503427182 +Thomas Fevens,Absorbing Boundary Conditions for the Schrödinger Equation.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#FevensJ99,https://doi.org/10.1137/S1064827594277053 +Irad Yavneh,Coarse-Grid Correction for Nonelliptic and Singular Perturbation Problems.,1998,19,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc19.html#Yavneh98,https://doi.org/10.1137/S1064827596310998 +Matthias Mayr,A Temporal Consistent Monolithic Approach to Fluid-Structure Interaction Enabling Single Field Predictors.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#MayrKWG15,https://doi.org/10.1137/140953253 +Peipei Lu,A Robust Multilevel Method for the Time-harmonic Maxwell Equation with High Wave Number.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#LuX16,https://doi.org/10.1137/15M1007033 +Shuwang Li,A Boundary Integral Method for Computing the Dynamics of an Epitaxial Island.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#LiL11,https://doi.org/10.1137/100814871 +Luis F. Portugal,An Investigation of Interior-Point Algorithms for the Linear Transportation Problem.,1996,17,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc17.html#PortugalBJPT96,https://doi.org/10.1137/S1064827593258280 +Omar Lakkis,A Finite Element Method for Second Order Nonvariational Elliptic Problems.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#LakkisP11,https://doi.org/10.1137/100787672 +Stephan Knapek,Matrix-Dependent Multigrid Homogenization for Diffusion Problems.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#Knapek98,https://doi.org/10.1137/S1064827596304848 +Armin Iske,Hierarchical Matrix Approximation for Kernel-Based Scattered Data Interpolation.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#IskeBW17,https://doi.org/10.1137/16M1101167 +Bernardo Cockburn,A Model Numerical Scheme for the Propagation of phase Transitions in Solids.,1996,17,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc17.html#CockburnG96,https://doi.org/10.1137/S106482759426688X +Kirsty L. Brown,A Multilevel Approach for Computing the Limited-Memory Hessian and its Inverse in Variational Data Assimilation.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#BrownGR16,https://doi.org/10.1137/15M1041407 +Martin Berzins,A Data-Bounded Quadratic Interpolant on Triangles and Tetrahedra.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#Berzins00,https://doi.org/10.1137/S1064827597317636 +Francis X. Giraldo,Implicit-Explicit Formulations of a Three-Dimensional Nonhydrostatic Unified Model of the Atmosphere (NUMA).,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#GiraldoKC13,https://doi.org/10.1137/120876034 +Yana Di,Moving Mesh Methods for Singular Problems on a Sphere Using Perturbed Harmonic Mappings.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#DiLTZ06,https://doi.org/10.1137/050642514 +Jim E. Jones,AMGE Based on Element Agglomeration.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#JonesV01,https://doi.org/10.1137/S1064827599361047 +Janis Hardwick,Using Path Induction to Evaluate Sequential Allocation Procedures.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#HardwickS99,https://doi.org/10.1137/S1064827595291820 +Rizwan Uddin,Comparison of the Nodal Integral Method and Nonstandard Finite-Difference Schemes for the Fisher Equation.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#Uddin01,https://doi.org/10.1137/S1064827597325463 +Xiaoxia Guo,A Fast l1-TV Algorithm for Image Restoration.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#GuoLN09,https://doi.org/10.1137/080724435 +Oscar Chinellato,Including Covariances in Calibration to Obtain Better Measurement Uncertainty Estimates.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#ChinellatoAB04,https://doi.org/10.1137/S1064827503426735 +Malcolm F. Murphy,A Note on Preconditioning for Indefinite Linear Systems.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#MurphyGW00,https://doi.org/10.1137/S1064827599355153 +Markus Hegland,An Implementation of Multiple and Multivariate Fourier Transforms on Vector Processors.,1995,16,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc16.html#Hegland95,https://doi.org/10.1137/0916018 +Nejib Smaoui,Linear versus Nonlinear Dimensionality Reduction of High-Dimensional Dynamical Systems.,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#Smaoui04,https://doi.org/10.1137/S1064827502412723 +Pierluigi Amodio,A Cyclic Reduction Approach to the Numerical Solution of Boundary Value ODEs.,1997,18,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc18.html#AmodioP97,https://doi.org/10.1137/S1064827595287225 +Florian Schornbaum,Massively Parallel Algorithms for the Lattice Boltzmann Method on NonUniform Grids.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#SchornbaumR16,https://doi.org/10.1137/15M1035240 +Robert Michael Lewis,Implementing Generating Set Search Methods for Linearly Constrained Minimization.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#LewisST07,https://doi.org/10.1137/050635432 +Wayne Joubert,Preconditioning Second-Order Elliptic Operators: Experiment and Theory.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#JoubertMPW92,https://doi.org/10.1137/0913014 +Randall J. LeVeque,Immersed Interface Methods for Stokes Flow with Elastic Boundaries or Surface Tension.,1997,18,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc18.html#LeVequeL97,https://doi.org/10.1137/S1064827595282532 +You-Wei Wen,Iterative Algorithms Based on Decoupling of Deblurring and Denoising for Image Restoration.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#WenNC08,https://doi.org/10.1137/070683374 +Xin Wen,High Order Numerical Quadratures to One Dimensional Delta Function Integrals.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#Wen08,https://doi.org/10.1137/070682939 +Haseena Saran,Alternating Evolution Schemes for Hyperbolic Conservation Laws.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#SaranL11,https://doi.org/10.1137/080733577 +Edward G. Phillips,A Block Preconditioner for an Exact Penalty Formulation for Stationary MHD.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#PhillipsECSP14,https://doi.org/10.1137/140955082 +Tom Manteuffel,Special Issue on Iterative Methods in Numerical Linear Algebra.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#Manteuffel96,https://doi.org/10.1137/0917001 +Daniel B. Szyld,Preconditioned Eigensolvers for Large-Scale Nonlinear Hermitian Eigenproblems with Variational Characterizations. II. Interior Eigenvalues.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#SzyldVX15,https://doi.org/10.1137/15M1016096 +William B. March,ASKIT: Approximate Skeletonization Kernel-Independent Treecode in High Dimensions.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#MarchXB15,https://doi.org/10.1137/140989546 +M. J. Del Razo,Computational and In Vitro Studies of Blast-Induced Blood-Brain Barrier Disruption.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#RazoMMHPBMLC16,https://doi.org/10.1137/15M1010750 +Jinchao Xu,Some Remarks on a Multigrid Preconditioner.,1994,15,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc15.html#XuQ94,https://doi.org/10.1137/0915012 +Wilfried N. Gansterer,Computing Approximate Eigenpairs of Symmetric Block Tridiagonal Matrices.,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#GanstererWMG03,https://doi.org/10.1137/S1064827501399432 +C. C. Fang,Two Element-by-Element Iterative Solutions for Shallow Water Equations.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#FangS01,https://doi.org/10.1137/S1064827599360881 +Ralf Hiptmair,Multilevel Method for Mixed Eigenproblems.,2002,23,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc23.html#HiptmairN02,https://doi.org/10.1137/S1064827501385001 +Elias David Niño Ruiz,An Ensemble Kalman Filter Implementation Based on Modified Cholesky Decomposition for Inverse Covariance Matrix Estimation.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#RuizSD18,https://doi.org/10.1137/16M1097031 +W. H. Hui,Computation of the Shallow Water Equations Using the Unified Coordinates.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#HuiK02,https://doi.org/10.1137/S1064827500367415 +Weizhu Bao,The Random Projection Method for Stiff Detonation Capturing.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#BaoJ01,https://doi.org/10.1137/S1064827599364969 +Ernesto E. Prudencio,Parallel Full Space SQP Lagrange-Newton-Krylov-Schwarz Algorithms for PDE-Constrained Optimization Problems.,2006,27,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc27.html#PrudencioBC06,https://doi.org/10.1137/040602997 +Lukas Einkemmer,Overcoming Order Reduction in Diffusion-Reaction Splitting. Part 1: Dirichlet Boundary Conditions.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#EinkemmerO15,https://doi.org/10.1137/140994204 +Steffen Börm,Adaptive Variable-Rank Approximation of General Dense Matrices.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#Borm07,https://doi.org/10.1137/060651173 +Howard C. Elman,Least Squares Preconditioners for Stabilized Discretizations of the Navier-Stokes Equations.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#ElmanHSST07,https://doi.org/10.1137/060655742 +Shibing Tang,Local Multilevel Methods with Rectangular Finite Elements for the Biharmonic Problem.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#TangX17,https://doi.org/10.1137/17M111008X +Farid Bozorgnia,Numerical Algorithm for Spatial Segregation of Competitive Systems.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#Bozorgnia09,https://doi.org/10.1137/080722588 +James Bremer,A Nonlinear Optimization Procedure for Generalized Gaussian Quadratures.,2010,32,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc32.html#BremerGR10,https://doi.org/10.1137/080737046 +Dalia Fishelov,Vortex Methods for Slightly Viscous Three-Dimensional Flow.,1990,11,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc11.html#Fishelov90,https://doi.org/10.1137/0911024 +Mikko Byckling,Preconditioning with Direct Approximate Factoring of the Inverse.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#BycklingH14,https://doi.org/10.1137/12088570X +Gang Bao,A Fast Algorithm for the Electromagnetic Scattering from a Large Cavity.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#BaoS05,https://doi.org/10.1137/S1064827503428539 +Yves Coudière,A 3D Discrete Duality Finite Volume Method for Nonlinear Elliptic Equations.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#CoudiereH11,https://doi.org/10.1137/100786046 +Haijian Yang,Nonlinear Preconditioning Techniques for Full-Space Lagrange-Newton Solution of PDE-Constrained Optimization Problems.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#YangHC16,https://doi.org/10.1137/15M104075X +Juan A. Acebrón,Domain Decomposition Solution of Elliptic Boundary-Value Problems via Monte Carlo and Quasi-Monte Carlo Methods.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#AcebronBLS05,https://doi.org/10.1137/030600692 +Samira Nikkar,Summation-by-Parts Operators for Non-Simply Connected Domains.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#NikkarN18,https://doi.org/10.1137/18M1163671 +Petr Vanek,Two-grid Method for Linear Elasticity on Unstructured Meshes.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#VanekBT99,https://doi.org/10.1137/S1064827596297112 +Robert Balder,The Solution of Multidimensional Real Helmholtz Equations on Sparse Grids.,1996,17,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc17.html#BalderZ96,https://doi.org/10.1137/S1064827593247035 +Daniel Kressner,Low-Rank Tensor Methods with Subspace Correction for Symmetric Eigenvalue Problems.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#KressnerSU14,https://doi.org/10.1137/130949919 +K. Davey,A Generalized SOR Method for Dense Linear Systems of Boundary Element Equations.,1998,19,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc19.html#DaveyB98,https://doi.org/10.1137/S1064827597288097 +Weizhu Bao,Computing the Ground State Solution of Bose-Einstein Condensates by a Normalized Gradient Flow.,2004,25,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc25.html#BaoD04,https://doi.org/10.1137/S1064827503422956 +Martin P. Neuenhofen,Mstab: Stabilized Induced Dimension Reduction for Krylov Subspace Recycling.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#NeuenhofenG18,https://doi.org/10.1137/16M1092465 +Alan Edelman,The Future Fast Fourier Transform?,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#EdelmanMT98,https://doi.org/10.1137/S1064827597316266 +Pierre L'Ecuyer,Sparse Serial Tests of Uniformity for Random Number Generators.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#LEcuyerSW02,https://doi.org/10.1137/S1064827598349033 +Lars Grasedyck,Variants of Alternating Least Squares Tensor Completion in the Tensor Train Format.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#GrasedyckKK15,https://doi.org/10.1137/130942401 +Hongwei Cheng,On the Compression of Low Rank Matrices.,2005,26,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc26.html#ChengGMR05,https://doi.org/10.1137/030602678 +Jean-Luc Guermond,Invariant Domains Preserving Arbitrary Lagrangian Eulerian Approximation of Hyperbolic Systems with Continuous Finite Elements.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#GuermondPSY17,https://doi.org/10.1137/16M1063034 +John N. Shadid,A Comparison of Preconditioned Nonsymmetric Krylov Methods on a Large-Scale MIMD Machine.,1994,15,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc15.html#ShadidT94,https://doi.org/10.1137/0915030 +Leo Grady,Isoperimetric Partitioning: A New Algorithm for Graph Partitioning.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#GradyS06,https://doi.org/10.1137/040609008 +A. Pinelli,An Efficient Iterative Solution Method for the Chebyshev Collocation of Advection-Dominated Transport Problems.,1996,17,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc17.html#PinelliCDB96,https://doi.org/10.1137/S1064827593253835 +Timo Betcke,The Generalized Singular Value Decomposition and the Method of Particular Solutions.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#Betcke08,https://doi.org/10.1137/060651057 +Giancarlo Benettin,A Changing-Chart Symplectic Algorithm for Rigid Bodies and Other Hamiltonian Systems on Manifolds.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#BenettinCF01,https://doi.org/10.1137/S1064827500381720 +Willy Govaerts,Numerical Methods for Two-Parameter Local Bifurcation Analysis of Maps.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#GovaertsGKM07,https://doi.org/10.1137/060653858 +Nicolas Bock,An Optimized Sparse Approximate Matrix Multiply for Matrices with Decay.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#BockC13,https://doi.org/10.1137/120870761 +Thomas Peter,Nonlinear Approximation by Sums of Exponentials and Translates.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#PeterPT11,https://doi.org/10.1137/100790094 +Guillaume Chiavassa,Point Value Multiscale Algorithms for 2D Compressible Flows.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#ChiavassaD01,https://doi.org/10.1137/S1064827599363988 +Stephen Portnoy,Asymptotic Behavior of the Number of Regression Quantile Breakpoints.,1991,12,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc12.html#Portnoy91,https://doi.org/10.1137/0912047 +Yogi A. Erlangga,Algebraic Multilevel Krylov Methods.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#ErlanggaN09,https://doi.org/10.1137/080731657 +Peter Arbenz,A Jacobi-Davidson Method for Solving Complex Symmetric Eigenvalue Problems.,2004,25,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc25.html#ArbenzH04,https://doi.org/10.1137/S1064827502410992 +Bora Uçar,Partitioning Sparse Matrices for Parallel Preconditioned Iterative Methods.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#UcarA07,https://doi.org/10.1137/040617431 +Sonjoy Das,Asymptotic Sampling Distribution for Polynomial Chaos Representation from Data: A Maximum Entropy and Fisher Information Approach.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#DasGS08,https://doi.org/10.1137/060652105 +Rong-Qing Jia,Applications of Multigrid Algorithms to Finite Difference Schemes for Elliptic Equations with Variable Coefficients.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#Jia14,https://doi.org/10.1137/13091823X +Sookkyung Lim,Simulations of the Whirling Instability by the Immersed Boundary Method.,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#LimP04,https://doi.org/10.1137/S1064827502417477 +Piet J. van der Houwen,Iterated Runge-Kutta Methods on Parallel Computers.,1991,12,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc12.html#HouwenS91,https://doi.org/10.1137/0912054 +Jizu Huang,A Nonlinearly Preconditioned Inexact Newton Algorithm for Steady State Lattice Boltzmann Equations.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#HuangYC16,https://doi.org/10.1137/15M1028078 +T. J. Harris,An Iterative Method for Matrix Spectral Factorization.,1992,13,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc13.html#HarrisD92,https://doi.org/10.1137/0913029 +Yuji Nakatsukasa,Stable and Efficient Spectral Divide and Conquer Algorithms for the Symmetric Eigenvalue Decomposition and the SVD.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#NakatsukasaH13,https://doi.org/10.1137/120876605 +L. E. Carr III,An Element-Based Spectrally Optimized Approximate Inverse Preconditioner for the Euler Equations.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#CarrBG12,https://doi.org/10.1137/11083229X +Martin Berzins,A Solution-Based Triangular and Tetrahedral Mesh Quality Indicator.,1998,19,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc19.html#Berzins98,https://doi.org/10.1137/S1064827596305222 +Jeroen A. S. Witteveen,Refinement Criteria for Simplex Stochastic Collocation with Local Extremum Diminishing Robustness.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#WitteveenI12a,https://doi.org/10.1137/100817498 +Christophe J. Zbinden,Partitioned Runge-Kutta-Chebyshev Methods for Diffusion-Advection-Reaction Problems.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#Zbinden11,https://doi.org/10.1137/100807892 +Nail K. Yamaleev,Optimal Two-Dimensional Finite Difference Grids Providing Superconvergence.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#Yamaleev02,https://doi.org/10.1137/S1064827500378994 +Jonas Ballani,Reduced Basis Methods: From Low-Rank Matrices to Low-Rank Tensors.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#BallaniK16,https://doi.org/10.1137/15M1042784 +Zhenning Cai,Numerical Regularized Moment Method of Arbitrary Order for Boltzmann-BGK Equation.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#CaiL10,https://doi.org/10.1137/100785466 +Curtis R. Vogel,Iterative SVD-Based Methods for Ill-Posed Problems.,1994,15,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc15.html#VogelW94,https://doi.org/10.1137/0915047 +Martin D. Schatz,Exploiting Symmetry in Tensors for High Performance: Multiplication with Symmetric Tensors.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#SchatzLGK14,https://doi.org/10.1137/130907215 +Francesca Arrigo,Updating and Downdating Techniques for Optimizing Network Communicability.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#ArrigoB16,https://doi.org/10.1137/140991923 +Gaobiao Xiao,Application of an Inverse Problem for Symmetric Periodic Potentials.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#XiaoYGO01,https://doi.org/10.1137/S1064827500376211 +Rodolfo Bermejo,A Space-Time Adaptive Finite Element Algorithm Based on Dual Weighted Residual Methodology for Parabolic Equations.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#BermejoC09,https://doi.org/10.1137/070698853 +Ke Chen,On a Class of Preconditioning Methods for Dense Linear Systems from Boundary Elements.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#Chen98,https://doi.org/10.1137/S1064827596304058 +Kapil Ahuja,Improved Scaling for Quantum Monte Carlo on Insulators.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#AhujaCSCK11,https://doi.org/10.1137/100805467 +Yves Bourgault,Anisotropic Error Estimates and Space Adaptivity for a Semidiscrete Finite Element Approximation of the Transient Transport Equation.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#BourgaultP13,https://doi.org/10.1137/120891320 +Shang-Hua Teng,Provably Good Partitioning and Load Balancing Algorithms for Parallel Adaptive N-Body Simulation.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#Teng98,https://doi.org/10.1137/S1064827595288942 +Herbert Egger,On Structure-Preserving Model Reduction for Damped Wave Propagation in Transport Networks.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#EggerKLMM18,https://doi.org/10.1137/17M1125303 +Thomas L. D. Croft,Least-Squares Proper Generalized Decompositions for Weakly Coercive Elliptic Problems.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#CroftP17,https://doi.org/10.1137/15M1049269 +Richard Saurel,A Simple Method for Compressible Multifluid Flows.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#SaurelA99,https://doi.org/10.1137/S1064827597323749 +Maya Neytcheva,Preconditioning of Indefinite and Almost Singular Finite Element Elliptic Equations.,1998,19,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc19.html#NeytchevaV98,https://doi.org/10.1137/S1064827595291480 +Grey Ballard,Reducing Communication Costs for Sparse Matrix Multiplication within Algebraic Multigrid.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#BallardSH16,https://doi.org/10.1137/15M1028807 +Andrew V. Knyazev,Block Locally Optimal Preconditioned Eigenvalue Xolvers (BLOPEX) in Hypre and PETSc.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#KnyazevALO07,https://doi.org/10.1137/060661624 +Ramesh Natarajan,Domain Decomposition Using Spectral Expansions of Steklov-Poincaré Operators.,1995,16,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc16.html#Natarajan95,https://doi.org/10.1137/0916029 +Catherine J. Dalzell,Computing Reproducing Kernels with Arbitrary Boundary Constraints.,1993,14,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc14.html#DalzellR93,https://doi.org/10.1137/0914032 +Alison Ramage,A Preconditioned Nullspace Method for Liquid Crystal Director Modeling.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#RamageG13,https://doi.org/10.1137/120870219 +F. Ma,Monte Carlo Simulation of Linear Two-Phase Flow in Heterogeneous Media.,1990,11,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc11.html#MaW90,https://doi.org/10.1137/0911059 +Jeffrey M. Hokanson,Projected Nonlinear Least Squares for Exponential Fitting.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#Hokanson17,https://doi.org/10.1137/16M1084067 +Henry M. Jurgens,Numerical Solution of the Time-Domain Maxwell Equations Using High-Accuracy Finite-Difference Methods.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#JurgensZ01,https://doi.org/10.1137/S1064827598334666 +Marcus Holm,Dynamic Autotuning of Adaptive Fast Multipole Methods on Hybrid Multicore CPU and GPU Systems.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#HolmEGH14,https://doi.org/10.1137/130943595 +Annick Sartenaer,Automatic Determination of an Initial Trust Region in Nonlinear Programming.,1997,18,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc18.html#Sartenaer97,https://doi.org/10.1137/S1064827595286955 +Jing-Mei Qiu,Convergence of High Order Finite Volume Weighted Essentially Nonoscillatory Scheme and Discontinuous Galerkin Method for Nonconvex Conservation Laws.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#QiuS08,https://doi.org/10.1137/070687487 +Chandrajit L. Bajaj,Nonuniform Fourier Transforms for Rigid-Body and Multidimensional Rotational Correlations.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#BajajBBV13,https://doi.org/10.1137/120892386 +Garry H. Rodrigue,A Vector Finite Element Time-Domain Method for Solving Maxwell's Equations on Unstructured Hexahedral Grids.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#RodrigueW01,https://doi.org/10.1137/S1064827598343826 +Gary L. Miller,Geometric Separators for Finite-Element Meshes.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#MillerTTV98,https://doi.org/10.1137/S1064827594262613 +Mohamed Lemine Ould-Salihi,Blending Finite-Difference and Vortex Methods for Incompressible Flow Computations.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#Ould-SalihiCH01,https://doi.org/10.1137/S1064827599350769 +Fande Kong,A Highly Scalable Multilevel Schwarz Method with Boundary Geometry Preserving Coarse Spaces for 3D Elasticity Problems on Domains with Complex Geometry.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#KongC16,https://doi.org/10.1137/15M1010567 +Kevin W. Aiton,An Adaptive Partition of Unity Method for Chebyshev Polynomial Interpolation.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#AitonD18,https://doi.org/10.1137/17M112052X +Alexander G. Kalmikov,A Hessian-Based Method for Uncertainty Quantification in Global Ocean State Estimation.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#KalmikovH14,https://doi.org/10.1137/130925311 +Mohammed Lemou,Micro-Macro Schemes for Kinetic Equations Including Boundary Layers.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#LemouM12,https://doi.org/10.1137/120865513 +Francis X. Canning,Sparse Approximation for Solving Integral Equations with Oscillatory Kernels.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#Canning92,https://doi.org/10.1137/0913004 +Zachary Clawson,Causal Domain Restriction for Eikonal Equations.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#ClawsonCV14,https://doi.org/10.1137/130936531 +Zhonggui Chen,Revisiting Optimal Delaunay Triangulation for 3D Graded Mesh Generation.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#ChenWLLS14,https://doi.org/10.1137/120875132 +Matthias Heinkenschloss,Reduced Order Modeling for Time-Dependent Optimization Problems with Initial Value Controls.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#HeinkenschlossJ18,https://doi.org/10.1137/16M1109084 +Hussein Mustapha,A New Approach to Simulating Flow in Discrete Fracture Networks with an Optimized Mesh.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#MustaphaM07,https://doi.org/10.1137/060653482 +Xiaojun Tang,Fractional Pseudospectral Schemes with Equivalence for Fractional Differential Equations.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#TangSX17,https://doi.org/10.1137/15M1061496 +Martin Neumüller,A Fully Parallelizable Space-Time Multilevel Monte Carlo Method for Stochastic Differential Equations with Additive Noise.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#NeumullerT18,https://doi.org/10.1137/17M1146725 +Martin H. Gutknecht,Variants of BICGSTAB for Matrices with Complex Spectrum.,1993,14,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc14.html#Gutknecht93,https://doi.org/10.1137/0914062 +Awad H. Al-Mohy,Computing the Fréchet Derivative of the Matrix Logarithm and Estimating the Condition Number.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#Al-MohyHR13,https://doi.org/10.1137/120885991 +James M. Banoczi,The Lack of Influence of the Right-Hand Side on the Accuracy of Linear System Solution.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#BanocziCCI98,https://doi.org/10.1137/S106482759630526X +Eitan Tadmor,Adaptive Spectral Viscosity for Hyperbolic Conservation Laws.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#TadmorW12,https://doi.org/10.1137/110836456 +Thomas Y. Hou,The Convergence of an Exact Desingularization for Vortex Methods.,1993,14,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc14.html#HouLS93,https://doi.org/10.1137/0914001 +Kiok Lim Tan,A Level Set-Boundary Element Method for the Simulation of Underwater Bubble Dynamics.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#TanKW08,https://doi.org/10.1137/060660667 +Jon B. Cherrie,Fast Evaluation of Radial Basis Functions: Methods for Generalized Multiquadrics in Rn.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#CherrieBN02,https://doi.org/10.1137/S1064827500367609 +Robert Bridson,A Structural Diagnosis of Some IC Orderings.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#BridsonT01a,https://doi.org/10.1137/S1064827599353841 +Stefan Holst,A Mixed Finite-Element Discretization of the Energy-Transport Model for Semiconductors.,2003,24,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc24.html#HolstJP03,https://doi.org/10.1137/S1064827501396440 +Claude Brezinski,Error Estimates for the Solution of Linear Systems.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#Brezinski99,https://doi.org/10.1137/S1064827597328510 +Leocadio G. Casado,Interval Algorithms for Finding the Minimal Root in a Set of Multiextremal One-Dimensional Nondifferentiable Functions.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#CasadoGS02,https://doi.org/10.1137/S1064827599357590 +Emmanuel Agullo,Reducing the I/O Volume in Sparse Out-of-core Multifrontal Methods.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#AgulloGL10,https://doi.org/10.1137/080720061 +Ramji Kamakoti,High-Order Narrow Stencil Finite-Difference Approximations of Second-Order Derivatives Involving Variable Coefficients.,2009,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#KamakotiP09,https://doi.org/10.1137/080740829 +J. E. Bunder,Accuracy of Patch Dynamics with Mesoscale Temporal Coupling for Efficient Massively Parallel Simulations.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#BunderRK16,https://doi.org/10.1137/15M1015005 +Martin Stoll,A Low-Rank in Time Approach to PDE-Constrained Optimization.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#StollB15,https://doi.org/10.1137/130926365 +Michael Bader,Dynamically Adaptive Simulations with Minimal Memory Requirement---Solving the Shallow Water Equations Using Sierpinski Curves.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#BaderBSV10,https://doi.org/10.1137/080728871 +Sebastiano Boscarino,On a Class of Uniformly Accurate IMEX Runge--Kutta Schemes and Applications to Hyperbolic Systems with Relaxation.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#BoscarinoR09,https://doi.org/10.1137/080713562 +Anna Lischke,A Petrov-Galerkin Spectral Method of Linear Complexity for Fractional Multiterm ODEs on the Half Line.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#LischkeZK17,https://doi.org/10.1137/17M1113060 +Hans De Sterck,Algebraic Multigrid for Markov Chains.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#SterckMMMRS10,https://doi.org/10.1137/090753589 +R. Zimmermann,On the Maximum Likelihood Training of Gradient-Enhanced Spatial Gaussian Processes.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#Zimmermann13,https://doi.org/10.1137/13092229X +Kent Pearce,A Constructive Method for Numerically Computing Conformal Mappings for Gearlike Domains.,1991,12,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc12.html#Pearce91,https://doi.org/10.1137/0912013 +Tetyana Vdovina,A Two--Scale Solution Algorithm for the Elastic Wave Equation.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#VdovinaMG09,https://doi.org/10.1137/080714877 +William J. Layton,Oscillation Absorption Finite Element Methods for Convection-Diffusion Problems.,1996,17,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc17.html#LaytonP96,https://doi.org/10.1137/S1064827593259091 +Tsung-Ming Huang,A Newton-Type Method with Nonequivalence Deflation for Nonlinear Eigenvalue Problems Arising in Photonic Crystal Modeling.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#HuangLM16,https://doi.org/10.1137/151004823 +John D. Pryce,Fast Automatic Differentiation Jacobians by Compact LU Factorization.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#PryceT08,https://doi.org/10.1137/050644847 +Christian Cabos,Error Bounds for Dynamic Responses in Forced Vibration Problems.,1994,15,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc15.html#Cabos94,https://doi.org/10.1137/0915001 +Raimund Bürger,A Stabilized Finite Volume Element Formulation for Sedimentation-Consolidation Processes.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#BurgerRT12,https://doi.org/10.1137/110836559 +Jok Man Tang,Domain-Decomposition-Type Methods for Computing the Diagonal of a Matrix Inverse.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#TangS11,https://doi.org/10.1137/100799939 +Alexandre Ern,Adaptive Inexact Newton Methods with A Posteriori Stopping Criteria for Nonlinear Diffusion PDEs.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#ErnV13,https://doi.org/10.1137/120896918 +David Pardo,PML Enhanced with a Self-Adaptive Goal-Oriented hp-Finite Element Method: Simulation of Through-Casing Borehole Resistivity Measurements.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#PardoDTM08,https://doi.org/10.1137/070689796 +Irfan Altas,Multigrid Solution of Automatically Generated High-Order Discretizations for the Biharmonic Equation.,1998,19,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc19.html#AltasDGM98,https://doi.org/10.1137/S1464827596296970 +David H. Bailey,A Fast Method for the Numerical Evaluation of Continuous Fourier and Laplace Transforms.,1994,15,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc15.html#BaileyS94,https://doi.org/10.1137/0915067 +Khachik Sargsyan,Uncertainty Quantification given Discontinuous Model Response and a Limited Number of Model Runs.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#SargsyanSDN12,https://doi.org/10.1137/100817899 +Takashi Sasakawa,Optimal Magnetic Shield Design with Second-Order Cone Programming.,2003,24,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc24.html#SasakawaT03,https://doi.org/10.1137/S1064827500380350 +Thomas F. Coleman,The Efficient Computation of Sparse Jacobian Matrices Using Automatic Differentiation.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#ColemanV98,https://doi.org/10.1137/S1064827595295349 +N. Anders Petersson,Hole-Cutting for Three-Dimensional Overlapping Grids.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#Petersson99,https://doi.org/10.1137/S1064827597329102 +David Day,Solving Complex-Valued Linear Systems via Equivalent Real Formulations.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#DayH01,https://doi.org/10.1137/S1064827500372262 +John E. Tolsma,Efficient Calculation of Sparse Jacobians.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#TolsmaB99,https://doi.org/10.1137/S1064827597316552 +Vladimir Druskin,Using Nonorthogonal Lanczos Vectors in the Computation of Matrix Functions.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#DruskinGK98,https://doi.org/10.1137/S1064827596303661 +Lin Lin 0001,Elliptic Preconditioner for Accelerating the Self-Consistent Field Iteration in Kohn-Sham Density Functional Theory.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#LinY13,https://doi.org/10.1137/120880604 +Giuseppe La Spina,High-Resolution Finite Volume Central Schemes for a Compressible Two-Phase Model.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#SpinaV12,https://doi.org/10.1137/12087089X +Edmond Chow,Approximate Inverse Techniques for Block-Partitioned Matrices.,1997,18,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc18.html#ChowS97,https://doi.org/10.1137/S1064827595281575 +Zhangxin Chen,Multigrid Algorithms for Nonconforming and Mixed Methods for Nonsymmetric and Indefinite Problems.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#ChenKY98,https://doi.org/10.1137/S1064827595289790 +Chi-Tien Lin,High-Resolution Nonoscillatory Central Schemes for Hamilton-Jacobi Equations.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#LinT00,https://doi.org/10.1137/S1064827598344856 +Michael D. Marcozzi,On the Approximation of Optimal Stopping Problems with Application to Financial Mathematics.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#Marcozzi01,https://doi.org/10.1137/S1064827599364647 +Achi Brandt,Fast Calculation of Multiple Line Integrals.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#BrandtD99a,https://doi.org/10.1137/S1064827595285718 +Michael Griebel,Dimensionality Reduction of High-Dimensional Data with a NonLinear Principal Component Aligned Generative Topographic Mapping.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#GriebelH14,https://doi.org/10.1137/130931382 +John D. Jakeman,A Generalized Sampling and Preconditioning Scheme for Sparse Approximation of Polynomial Chaos Expansions.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#JakemanNZ17,https://doi.org/10.1137/16M1063885 +Santiago Badia,Multilevel Balancing Domain Decomposition at Extreme Scales.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#BadiaMP16,https://doi.org/10.1137/15M1013511 +Michael K. Ng,Preconditioned Lanczos Methods for the Minimum Eigenvalue of a Symmetric Positive Definite Toeplitz Matrix.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#Ng00,https://doi.org/10.1137/S1064827597330169 +Anita T. Layton,A Semi-Lagrangian Collocation Method for the Shallow Water Equations on the Sphere.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#Layton03,https://doi.org/10.1137/S1064827501395021 +Gennady Yu. Kulikov,A Singly Diagonally Implicit Two-Step Peer Triple with Global Error Control for Stiff Ordinary Differential Equations.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#KulikovW15,https://doi.org/10.1137/140979952 +Jörg Peters,Fast Iterative Solvers for Discrete Stokes Equations.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#PetersRR05,https://doi.org/10.1137/040606028 +Juan E. Santos,Determination of a Transversely Isotropic Medium Equivalent to a Fractured Fluid-Saturated Poroelastic Medium. A Finite Element Approach.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#SantosCC17,https://doi.org/10.1137/15M1040876 +Julio Enrique Castrillón-Candás,Spatially Adapted Multiwavelets and Sparse Representation of Integral Equations on General Geometries.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#Castrillon-Candas03,https://doi.org/10.1137/S1064827501371238 +John A. Trangenstein,The Riemann Problem for Longitudinal Motion in an Elastic-Plastic Bar.,1991,12,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc12.html#TrangensteinP91,https://doi.org/10.1137/0912010 +James Demmel,Nonnegative Diagonals and High Performance on Low-Profile Matrices from Householder QR.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#DemmelHHR09,https://doi.org/10.1137/080725763 +Luca Bergamaschi,A Mixed Finite Element-Finite Volume Formulation of the Black-Oil Model.,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#BergamaschiMM98,https://doi.org/10.1137/S1064827595289303 +Leonidas Linardakis,Delaunay Decoupling Method for Parallel Guaranteed Quality Planar Mesh Refinement.,2006,27,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc27.html#LinardakisC06,https://doi.org/10.1137/030602812 +Bengt Fornberg,A Pseudospectral Fictitious Point Method for High Order Initial-Boundary Value Problems.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#Fornberg06,https://doi.org/10.1137/040611252 +Jian Cheng,Multidomain Hybrid RKDG and WENO Methods for Hyperbolic Conservation Laws.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#ChengLL13,https://doi.org/10.1137/110855156 +Elsayed M. E. Elbarbary,Integration Preconditioning Matrix for Ultraspherical Pseudospectral Operators.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#Elbarbary06,https://doi.org/10.1137/050630982 +Eduard Bader,Certified Reduced Basis Methods for Parametrized Distributed Elliptic Optimal Control Problems with Control Constraints.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#BaderKGV16,https://doi.org/10.1137/16M1059898 +Michael Dumbser,Central Weighted ENO Schemes for Hyperbolic Conservation Laws on Fixed and Moving Unstructured Meshes.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#DumbserBS017,https://doi.org/10.1137/17M1111036 +Raimund Bürger,Regularized Nonlinear Solvers for IMEX Methods Applied to Diffusively Corrected Multispecies Kinematic Flow Models.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#BurgerMV13,https://doi.org/10.1137/120888533 +Weiming Cao,A Moving Mesh Method Based on the Geometric Conservation Law.,2002,24,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc24.html#CaoHR02,https://doi.org/10.1137/S1064827501384925 +David L. Chopp,Another Look at Velocity Extensions in the Level Set Method.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#Chopp09,https://doi.org/10.1137/070686329 +Hari Sundar,Bottom-Up Construction and 2: 1 Balance Refinement of Linear Octrees in Parallel.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#SundarSB08,https://doi.org/10.1137/070681727 +Gene H. Golub,Inexact Preconditioned Conjugate Gradient Method with Inner-Outer Iteration.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#GolubY99,https://doi.org/10.1137/S1064827597323415 +Narayan Kovvali,Rapid Prolate Pseudospectral Differentiation and Interpolation with the Fast Multipole Method.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#KovvaliLZCC06,https://doi.org/10.1137/050635961 +Wolfgang Bangerth,A Framework for the Adaptive Finite Element Solution of Large-Scale Inverse Problems.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#Bangerth08,https://doi.org/10.1137/070690560 +Christof Vömel,Detecting Localization in an Invariant Subspace.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#VomelP11,https://doi.org/10.1137/09077624X +George S. Fishman,Evaluating Best-Case and Worst-Case Variances When Bounds are Available.,1992,13,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc13.html#FishmanGR92,https://doi.org/10.1137/0913076 +Jan S. Hesthaven,Certified Reduced Basis Method for the Electric Field Integral Equation.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#HesthavenSZ12,https://doi.org/10.1137/110848268 +Wayne Joubert,A Robust GMRES-Based Adaptive Polynomial Preconditioning Algorithm for Nonsymmetric Linear Systems.,1994,15,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc15.html#Joubert94,https://doi.org/10.1137/0915029 +Manuel J. Castro,Finite Volume Simulation of the Geostrophic Adjustment in a Rotating Shallow-Water System.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#CastroLP08,https://doi.org/10.1137/070707166 +Michael Hintermüller,An Infeasible Primal-Dual Algorithm for Total Bounded Variation-Based Inf-Convolution-Type Image Restoration.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#HintermullerS06,https://doi.org/10.1137/040613263 +Esmond G. Ng,A Supernodal Cholesky Factorization Algorithm for Shared-Memory Multiprocessors.,1993,14,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc14.html#NgP93,https://doi.org/10.1137/0914048 +Hans Petter Langtangen,SISC Redefined.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#Langtangen12,http://epubs.siam.org/sisc/resource/1/sjoce3/v34/i1/pvii_s1 +Patrick H. Worley,The Effect of Time Constraints on Scaled Speedup.,1990,11,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc11.html#Worley90,https://doi.org/10.1137/0911050 +Susan E. Minkoff,Spatial Parallelism of a 3D Finite Difference Velocity-Stress Elastic Wave Propagation Code.,2002,24,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc24.html#Minkoff02,https://doi.org/10.1137/S1064827501390960 +D. O. Gunter,Implicit Integration of the Time-Dependent Ginzburg-Landau Equations of Superconductivity.,2002,23,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc23.html#GunterKL02,https://doi.org/10.1137/S1064827500375473 +Zhong-Zhi Bai,Block Triangular and Skew-Hermitian Splitting Methods for Positive-Definite Linear Systems.,2005,26,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc26.html#BaiGLY05,https://doi.org/10.1137/S1064827503428114 +Hao Liu,A Level Set Based Variational Principal Flow Method for Nonparametric Dimension Reduction on Riemannian Manifolds.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#LiuYLC17,https://doi.org/10.1137/16M107236X +William J. Layton,Robustness of an Elementwise Parallel Finite Element Method for Convection-Diffusion Problems.,1998,19,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc19.html#LaytonMR98,https://doi.org/10.1137/S1064827595293545 +Mark Ainsworth,Is the Multigrid Method Fault Tolerant? The Multilevel Case.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#AinsworthG17a,https://doi.org/10.1137/16M1097274 +Jorgen L. Nikolajsen,An Improved Laguerre Eigensolver for Unsymmetric Matrices.,2000,22,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc22.html#Nikolajsen00,https://doi.org/10.1137/S106482759834963X +Hai Bi,Local and Parallel Finite Element Discretizations for Eigenvalue Problems.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#BiYL13,https://doi.org/10.1137/130911883 +Michael Herty,Coupling Conditions for Networked Systems of Euler Equations.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#Herty08,https://doi.org/10.1137/070688535 +Tony F. Chan,Fourier Analysis of Relaxed Incomplete Factorization Preconditioners.,1991,12,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc12.html#Chan91,https://doi.org/10.1137/0912035 +Tamar Schlick,Modified Cholesky Factorizations for Sparse Preconditioners.,1993,14,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc14.html#Schlick93,https://doi.org/10.1137/0914026 +Hans Henrik B. Sørensen,Multicore Performance of Block Algebraic Iterative Reconstruction Methods.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#SorensenH14,https://doi.org/10.1137/130920642 +Jens L. Eftang,"An ""hp"" Certified Reduced Basis Method for Parametrized Elliptic Partial Differential Equations.",2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#EftangPR10,https://doi.org/10.1137/090780122 +Tim N. Phillips,A Semi-Lagrangian Finite Volume Method for Newtonian Contraction Flows.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#PhillipsW01,https://doi.org/10.1137/S1064827599365288 +Paola F. Antonietti,hp-Version Composite Discontinuous Galerkin Methods for Elliptic Problems on Complicated Domains.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#AntoniettiGH13,https://doi.org/10.1137/120877246 +Robert F. Warming,Discrete Multiresolution Analysis Using Hermite Interpolation: Biorthogonal Multiwavelets.,2000,22,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc22.html#WarmingB00,https://doi.org/10.1137/S1064827597315236 +Awad H. Al-Mohy,A Truncated Taylor Series Algorithm for Computing the Action of Trigonometric and Hyperbolic Matrix Functions.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#Al-Mohy18,https://doi.org/10.1137/17M1145227 +Linda Stals,Stability Analysis of Time Stepping for Prolonged Plasma Fluid Simulations.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#StalsNB08,https://doi.org/10.1137/070703569 +Feng Zhao,The Parallel Multipole Method on the Connection Machine.,1991,12,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc12.html#ZhaoJ91,https://doi.org/10.1137/0912077 +Stephen D. Bond,Stabilized Integration of Hamiltonian Systems with Hard-Sphere Inequality Constraints.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#BondL07,https://doi.org/10.1137/06066552X +Eleanor McDonald,Preconditioning and Iterative Solution of All-at-Once Systems for Evolutionary Partial Differential Equations.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#McDonaldPW18,https://doi.org/10.1137/16M1062016 +ömer Eugeciouglu,Efficient Nonparametric Density Estimation on the Sphere with Applications in Fluid Mechanics.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#EugeciougluS00,https://doi.org/10.1137/S1064827595290462 +Teri Barth,A Taxonomy of Consistently Stabilized Finite Element Methods for the Stokes Problem.,2004,25,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc25.html#BarthBGS04,https://doi.org/10.1137/S1064827502407718 +Henk A. van der Vorst,Residual Replacement Strategies for Krylov Subspace Iterative Methods for the Convergence of True Residuals.,2000,22,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc22.html#VorstY00,https://doi.org/10.1137/S1064827599353865 +Thomas A. Manteuffel,A Root-Node-Based Algebraic Multigrid Method.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#ManteuffelOSS17,https://doi.org/10.1137/16M1082706 +Stephan Schmidt,Large-Scale Three-Dimensional Acoustic Horn Optimization.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#SchmidtWB16,https://doi.org/10.1137/15M1021131 +David W. Zingg,High-Accuracy Finite-Difference Schemes for Linear Wave Propagation.,1996,17,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc17.html#ZinggLJ96,https://doi.org/10.1137/S1064827594267173 +Thomas A. Brunner,Algebraic Multigrid for Linear Systems Obtained by Explicit Element Reduction.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#BrunnerK11,https://doi.org/10.1137/100801640 +Annalisa Buffa,On the Acoustic Single Layer Potential: Stabilization and Fourier Analysis.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#BuffaS06,https://doi.org/10.1137/040615110 +Robert C. Kirby,Optimizing the Evaluation of Finite Element Matrices.,2005,27,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc27.html#KirbyKLS05,https://doi.org/10.1137/040607824 +Rüdiger Weiss,Error-Minimizing Krylov Subspace Methods.,1994,15,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc15.html#Weiss94,https://doi.org/10.1137/0915034 +éliane Bécache,A Fictitious Domain Method with Mixed Finite Elements for Elastodynamics.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#BecacheRT07,https://doi.org/10.1137/060655821 +Jin Xu,Scalable Direct Vlasov Solver with Discontinuous Galerkin Method on Unstructured Mesh.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#XuOMN10,https://doi.org/10.1137/10078904X +Shidong Jiang,Integral Equation Methods for Unsteady Stokes Flow in Two Dimensions.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#JiangVG12,https://doi.org/10.1137/110860537 +Per Christian Hansen,Test Matrices for Regularization Methods.,1995,16,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc16.html#Hansen95,https://doi.org/10.1137/0916032 +Hermann Brunner,Computational Solution of Blow-Up Problems for Semilinear Parabolic PDEs on Unbounded Domains.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#BrunnerWZ10,https://doi.org/10.1137/090761367 +Weizhu Bao,An Exponential Wave Integrator Sine Pseudospectral Method for the Klein-Gordon-Zakharov System.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#BaoDZ13,https://doi.org/10.1137/110855004 +Adam Chacon,Fast Two-scale Methods for Eikonal Equations.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#ChaconV12,https://doi.org/10.1137/10080909X +Henk A. van der Vorst,Bi-CGSTAB: A Fast and Smoothly Converging Variant of Bi-CG for the Solution of Nonsymmetric Linear Systems.,1992,13,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc13.html#Vorst92,https://doi.org/10.1137/0913035 +Klaus J. Ressel,QMR Smoothing for Lanczos-Type Product Methods Based on Three-Term Rrecurrences.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#ResselG98,https://doi.org/10.1137/S1064827596304812 +Jan S. Hesthaven,A Stable Penalty Method for the Compressible Navier-Stokes Equations: I. Open Boundary Conditions.,1996,17,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc17.html#HesthavenG96,https://doi.org/10.1137/S1064827594268488 +William J. Layton,Numerical Solution of the Stationary Navier-Stokes Equations Using a Multilevel Finite Element Method.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#LaytonLP98,https://doi.org/10.1137/S1064827596306045 +Rodolfo Bermejo,A Multigrid Algorithm for the p-Laplacian.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#BermejoI00,https://doi.org/10.1137/S1064827598339098 +Jacob G. Martin,Ranks and Representations for Spectral Graph Bisection.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#MartinC09,https://doi.org/10.1137/070710640 +Ilaria Perugia,Linear Algebra Methods in a Mixed Approximation of Magnetostatic Problems.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#PerugiaSA99,https://doi.org/10.1137/S1064827598333211 +Tetsu Narumi,Accelerating Molecular Dynamics Simulations on PlayStation 3 Platform Using Virtual-GRAPE Programming Model.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#NarumiKTY08,https://doi.org/10.1137/070692054 +Zheng-Jian Bai,Computing the Nearest Doubly Stochastic Matrix with A Prescribed Entry.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#BaiCT07,https://doi.org/10.1137/050639831 +Junfeng Yang,Alternating Direction Algorithms for 1-Problems in Compressive Sensing.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#YangZ11,https://doi.org/10.1137/090777761 +Francesca Rapetti,A FETI Preconditioner for Two Dimensional Edge Element Approximations of Maxwell's Equations on Nonmatching Grids.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#RapettiT01,https://doi.org/10.1137/S1064827500366999 +James Glimm,Robust Computational Algorithms for Dynamic Interface Tracking in Three Dimensions.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#GlimmG0T00,https://doi.org/10.1137/S1064827598340500 +Fredrik Manne,Efficient Sparse Cholesky Factorization on a Massively Parallel SIMD Computer.,1995,16,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc16.html#ManneH95,https://doi.org/10.1137/0916054 +Matthias Grajewski,Mathematical and Numerical Analysis of a Robust and Efficient Grid Deformation Method in the Finite Element Context.,2009,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#GrajewskiKT09,https://doi.org/10.1137/050639387 +Graeme D. Chalmers,Asymptotic Stability of a Jump-Diffusion Equation and Its Numerical Approximation.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#ChalmersH08,https://doi.org/10.1137/070699469 +Laurent Desbat,"The ""Minimum Reconstruction Error"" Choice of Regularization Parameters: Some More Efficient Methods and Their Application to Deconvolution Problems.",1995,16,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc16.html#DesbatG95,https://doi.org/10.1137/0916080 +Mengdi Zheng,Numerical Methods for SPDEs with Tempered Stable Processes.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#ZhengK15,https://doi.org/10.1137/140966083 +V. Baramidze,Spherical Splines for Data Interpolation and Fitting.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#BaramidzeLS06,https://doi.org/10.1137/040620722 +Jie Shen 0001,Efficient Spectral-Galerkin Methods III: Polar and Cylindrical Geometries.,1997,18,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc18.html#Shen97,https://doi.org/10.1137/S1064827595295301 +A. T. Barker,A Scalable Preconditioner for a Primal Discontinuous Petrov-Galerkin Method.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#BarkerDGK18,https://doi.org/10.1137/16M1104780 +Vladimir Druskin,A Krylov Stability-Corrected Coordinate-Stretching Method to Simulate Wave Propagation in Unbounded Domains.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#DruskinR13,https://doi.org/10.1137/12087356X +Ricardo D. Fierro,Regularization by Truncated Total Least Squares.,1997,18,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc18.html#FierroGHO97,https://doi.org/10.1137/S1064827594263837 +Yaw Kyei,Space-Time Finite Volume Differencing Framework for Effective Higher-Order Accurate Discretizations of Parabolic Equations.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#Kyei12,https://doi.org/10.1137/10080498X +Gabriella Puppo,A Vortex-Grid Method for Prandtl's Equations.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#Puppo99,https://doi.org/10.1137/S1064827596297860 +Ben Leimkuhler,Estimating Waveform Relaxation Convergence.,1993,14,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc14.html#Leimkuhler93,https://doi.org/10.1137/0914054 +Thomas Luu,Efficient and Accurate Parallel Inversion of the Gamma Distribution.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#Luu15,https://doi.org/10.1137/14095875X +Kainan Wang,A Randomized Maximum A Posteriori Method for Posterior Sampling of High Dimensional Nonlinear Bayesian Inverse Problems.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#WangBG18,https://doi.org/10.1137/16M1060625 +Per-Gunnar Martinsson,An Accelerated Kernel-Independent Fast Multipole Method in One Dimension.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#MartinssonR07,https://doi.org/10.1137/060662253 +Giovanni Russo 0001,A Level-Set Method for the Evolution of Faceted Crystals.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#RussoS00,https://doi.org/10.1137/S1064827599351921 +Shahnawaz Ahmed,A Third Order Accurate Fast Marching Method for the Eikonal Equation in Two Dimensions.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#AhmedBMR11,https://doi.org/10.1137/10080258X +C. Jourdana,A Hybrid Classical-Quantum Transport Model for the Simulation of Carbon Nanotube Transistors.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#JourdanaP14,https://doi.org/10.1137/130926353 +Xiaowei Zhang 0002,Incremental Regularized Least Squares for Dimensionality Reduction of Large-Scale Data.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#ZhangCCLNT16,https://doi.org/10.1137/15M1035653 +Songhe Song,Third Order Accurate Large-Particle Finite Volume Method on Unstructured Triangular Meshes.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#SongC02,https://doi.org/10.1137/S1064827599353105 +Hong Wang,A Component-Based Eulerian-Lagrangian Formulation for Multicomponent Multiphase Compositional Flow and Transport in Porous Media.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#WangZET13,https://doi.org/10.1137/120885681 +Tobias Preußer,3D Composite Finite Elements for Elliptic Boundary Value Problems with Discontinuous Coefficients.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#PreusserRSS11,https://doi.org/10.1137/100791750 +Moritz Lang,Modular Parameter Identification of Biomolecular Networks.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#LangS16,https://doi.org/10.1137/15M103306X +Jean-Antoine Désidéri,Convergence Analysis of the Defect-Correction Iteration for Hyperbolic Problems.,1995,16,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc16.html#DesideriH95,https://doi.org/10.1137/0916007 +H. Schmitt,Contour Dynamics and the Fast Multipole Method.,1994,15,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc15.html#Schmitt94,https://doi.org/10.1137/0915060 +Nicholas Hale,Fast and Accurate Computation of Gauss-Legendre and Gauss-Jacobi Quadrature Nodes and Weights.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#HaleT13,https://doi.org/10.1137/120889873 +Zlatko Drmac,Implementation of Jacobi Rotations for Accurate Singular Value Computation in Floating Point Arithmetic.,1997,18,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc18.html#Drmac97,https://doi.org/10.1137/S1064827594265095 +Shinichiro Ohnuki,Truncation Error Analysis of Multipole Expansion.,2004,25,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc25.html#OhnukiC04,https://doi.org/10.1137/S1064827502412668 +Ulrich Langer,Inexact Data-Sparse Boundary Element Tearing and Interconnecting Methods.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#LangerOSZ07,https://doi.org/10.1137/050636243 +Marcus J. Grote,Parallel Preconditioning with Sparse Approximate Inverses.,1997,18,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc18.html#GroteH97,https://doi.org/10.1137/S1064827594276552 +Martin Berggren,Numerical Solution of a Flow-Control Problem: Vorticity Reduction by Dynamic Boundary Action.,1998,19,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc19.html#Berggren98,https://doi.org/10.1137/S1064827595294678 +Laurent Granvilliers,Parameter Estimation Using Interval Computations.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#GranvilliersCB04,https://doi.org/10.1137/S1064827503426851 +Paul J. Dellar,Lattice Boltzmann Formulation for Linear Viscoelastic Fluids Using an Abstract Second Stress.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#Dellar14,https://doi.org/10.1137/130940372 +Yimin Zhu,A Parallel Implementation of the p-Version of the Finite Element Method.,1996,17,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc17.html#ZhuK96,https://doi.org/10.1137/S1064827593260619 +J. M. Picone,Timing Analysis of the Monotonic Logical Grid for Many-Body Dynamics.,1990,11,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc11.html#PiconeLB90,https://doi.org/10.1137/0911022 +Tim Boonen,Local Fourier Analysis of Multigrid for the Curl-Curl Equation.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#BoonenLV08,https://doi.org/10.1137/070679119 +Xiaodong Zhang,Parallel Methods for Solving Nonlinear Block Bordered Systems of Equations.,1992,13,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc13.html#ZhangBS92,https://doi.org/10.1137/0913050 +Peter Minary,Dynamical Spatial Warping: A Novel Method for the Conformational Sampling of Biophysical Structure.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#MinaryTM08,https://doi.org/10.1137/070686706 +Knut-Andreas Lie,On the Artificial Compression Method for Second-Order Nonoscillatory Central Difference Schemes for Systems of Conservation Laws.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#LieN03,https://doi.org/10.1137/S1064827501392880 +Ka Chun Cheung,A Kernel-Based Embedding Method and Convergence Analysis for Surfaces PDEs.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#CheungL18,https://doi.org/10.1137/16M1080410 +C. R. Prins,A Least-Squares Method for Optimal Transport Using the Monge-Ampère Equation.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#PrinsBBJT15,https://doi.org/10.1137/140986414 +Terhemen Aboiyar,Adaptive ADER Methods Using Kernel-Based Polyharmonic Spline WENO Reconstruction.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#AboiyarGI10,https://doi.org/10.1137/100792573 +Micol Pennacchio,Fast Structured AMG Preconditioning for the Bidomain Model in Electrocardiology.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#PennacchioS11,https://doi.org/10.1137/100796364 +Roland Griesmaier,Inverse Source Problems for the Helmholtz Equation and the Windowed Fourier Transform.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#GriesmaierHR12,https://doi.org/10.1137/110855880 +Boris Diskin,New Factorizable Discretizations for the Euler Equations.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#DiskinT03,https://doi.org/10.1137/S1064827502404787 +James G. Nagy,Restoring Images Degraded by Spatially Variant Blur.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#NagyO98,https://doi.org/10.1137/S106482759528507X +Mark Ainsworth,A Posteriori Error Estimation for Lowest Order Raviart-Thomas Mixed Finite Elements.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#Ainsworth07,https://doi.org/10.1137/06067331X +Qiang Du,Quasi-Laguerre Iteration in Solving Symmetric Tridiagonal Eigenvalue Problems.,1996,17,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc17.html#DuJLZ96,https://doi.org/10.1137/S1064827594273225 +Christophe Chalons,Fast Relaxation Solvers for Hyperbolic-Elliptic Phase Transition Problems.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#ChalonsCER12,https://doi.org/10.1137/110848815 +Ta-Hsin Li,Multiscale Representation and Analysis of Spherical Data by Spherical Wavelets.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#Li99,https://doi.org/10.1137/S1064827598341463 +Xiao-Chuan Cai,Nonlinearly Preconditioned Inexact Newton Algorithms.,2002,24,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc24.html#CaiK02,https://doi.org/10.1137/S106482750037620X +Volker Mehrmann,Structure-Preserving Methods for Computing Eigenpairs of Large Sparse Skew-Hamiltonian/Hamiltonian Pencils.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#MehrmannW01,https://doi.org/10.1137/S1064827500366434 +Michael P. Friedlander,Erratum: Hybrid Deterministic-Stochastic Methods for Data Fitting.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#FriedlanderS13,https://doi.org/10.1137/130908257 +Michael Ulbrich,A Proximal Gradient Method for Ensemble Density Functional Theory.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#UlbrichWYKL15,https://doi.org/10.1137/14098973X +Michael L. Minion,Interweaving PFASST and Parallel Multigrid.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#MinionSBER15,https://doi.org/10.1137/14097536X +L. Harhanen,Edge-Enhancing Reconstruction Algorithm for Three-Dimensional Electrical Impedance Tomography.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#HarhanenHMS15,https://doi.org/10.1137/140971750 +Ralf Hannemann-Tamás,Adjoint Sensitivity Analysis for Nonsmooth Differential-Algebraic Equation Systems.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#Hannemann-Tamas15,https://doi.org/10.1137/140976315 +Robert I. McLachlan,A New Implementation of Symplectic Runge-Kutta Methods.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#McLachlan07,https://doi.org/10.1137/06065338X +Ivo Babuska,Parallel Implementation of the hp-Version of the Finite Element Method on a Shared-Memory Architecture.,1992,13,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc13.html#BabuskaEM92,https://doi.org/10.1137/0913081 +Ning Wang,Geometric Properties of the Icosahedral-Hexagonal Grid on the Two-Sphere.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#WangL11,https://doi.org/10.1137/090761355 +James S. Ball,Automatic Computation of Zeros of Bessel Functions and Other Special Functions.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#Ball99,https://doi.org/10.1137/S1064827598339074 +Jorge Delgado,Running Relative Error for the Evaluation of Polynomials.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#DelgadoP09,https://doi.org/10.1137/080745249 +Laura Grigori,Low Rank Approximation of a Sparse Matrix Based on LU Factorization with Column and Row Tournament Pivoting.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#GrigoriCD18,https://doi.org/10.1137/16M1074527 +Mapundi K. Banda,Large-Eddy Simulation of Thermal Flows based on Discrete-Velocity Models.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#BandaST08,https://doi.org/10.1137/070682174 +Eran Treister,Full Waveform Inversion Guided by Travel Time Tomography.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#TreisterH17,https://doi.org/10.1137/16M1082718 +Tahir Malas,Accelerating the Multilevel Fast Multipole Algorithm with the Sparse-Approximate-Inverse (SAI) Preconditioning.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#MalasG09,https://doi.org/10.1137/070711098 +Li-Lian Wang,A Well-Conditioned Collocation Method Using a Pseudospectral Integration Matrix.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#WangSZ14,https://doi.org/10.1137/130922409 +Alessandro Buccini,A Semiblind Regularization Algorithm for Inverse Problems with Application to Image Deblurring.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#BucciniDR18,https://doi.org/10.1137/16M1101830 +Andrey N. Chernikov,Multitissue Tetrahedral Image-to-mesh Conversion with Guaranteed Quality and Fidelity.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#ChernikovC11,https://doi.org/10.1137/100815256 +Satish Iyengar,A Saddle Point Approximation for Certain Multivariate Tail Probabilities.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#IyengarM98,https://doi.org/10.1137/S1064827594277338 +Stefano Serra Capizzano,Multigrid Methods for Multilevel Circulant Matrices.,2004,26,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc26.html#CapizzanoP04,https://doi.org/10.1137/S1064827501388509 +Bärbel Janssen,Adaptive Multilevel Methods with Local Smoothing for H1- and Hcurl-Conforming High Order Finite Element Methods.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#JanssenK11,https://doi.org/10.1137/090778523 +Padma Raghavan,Parallel Hybrid Preconditioning: Incomplete Factorization with Selective Sparse Approximate Inversion.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#RaghavanT10,https://doi.org/10.1137/080739987 +James Lu,Higher-Dimensional Integration with Gaussian Weight for Applications in Probabilistic Design.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#LuD04,https://doi.org/10.1137/S1064827503426863 +Shi Jin,Asymptotic-Preserving Numerical Schemes for the Semiconductor Boltzmann Equation Efficient in the High Field Regime.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#JinW13,https://doi.org/10.1137/120886534 +Robin Chatelin,A Hybrid Grid-Particle Method for Moving Bodies in 3D Stokes Flow with Variable Viscosity.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#ChatelinP13,https://doi.org/10.1137/120892921 +Shan Zhao,Comparison of the Discrete Singular Convolution and Three Other Numerical Schemes for Solving Fisher's Equation.,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#ZhaoW03,https://doi.org/10.1137/S1064827501390972 +Sander Rhebergen,Analysis of Block Preconditioners for Models of Coupled Magma/Mantle Dynamics.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#RhebergenWKW14,https://doi.org/10.1137/130946678 +Bruno Lombard,How to Incorporate the Spring-Mass Conditions in Finite-Difference Schemes.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#LombardP03,https://doi.org/10.1137/S1064827501385931 +Ariel Almendral,Accurate Evaluation of European and American Options Under the CGMY Process.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#AlmendralO07,https://doi.org/10.1137/050637613 +Yoshimasa Nakamura,Calculating Laplace Transforms in Terms of the Toda Molecule.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#Nakamura98,https://doi.org/10.1137/S106482759631408X +Doron Levy,Central WENO Schemes for Hamilton-Jacobi Equations on Triangular Meshes.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#LevyNSZ06,https://doi.org/10.1137/040612002 +Markus Hegland,A Parallel Algorithm for the Reduction to Tridiagonal Form for Eigendecomposition.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#HeglandKO99,https://doi.org/10.1137/S1064827595296719 +Herbert Egger,A Space-Time Discontinuous Galerkin Trefftz Method for Time Dependent Maxwell's Equations.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#EggerKSW15,https://doi.org/10.1137/140999323 +Ann S. Almgren,Approximate Projection Methods: Part I. Inviscid Analysis.,2000,22,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc22.html#AlmgrenBC00,https://doi.org/10.1137/S1064827599357024 +Olga V. Ushakova,Conditions of Nondegeneracy of Three-Dimensional Cells. A Formula of a Volume of Cells.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#Ushakova01,https://doi.org/10.1137/S1064827500380702 +Chang-Ming Chen,Numerical Schemes with High Spatial Accuracy for a Variable-Order Anomalous Subdiffusion Equation.,2010,32,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc32.html#ChenLAT10,https://doi.org/10.1137/090771715 +Nicoletta Del Buono,Computation of the Exponential of Large Sparse Skew-Symmetric Matrices.,2005,27,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc27.html#BuonoLP05,https://doi.org/10.1137/030600758 +Daniel Appelö,A General Perfectly Matched Layer Model for Hyperbolic-Parabolic Systems.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#AppeloH09,https://doi.org/10.1137/080713951 +Mark Ainsworth,Compression Using Lossless Decimation: Analysis and Application.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#AinsworthKW17,https://doi.org/10.1137/16M1086248 +Saifon Chaturantabut,Nonlinear Model Reduction via Discrete Empirical Interpolation.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#ChaturantabutS10,https://doi.org/10.1137/090766498 +Bradley K. Alpert,Hybrid Gauss-Trapezoidal Quadrature Rules.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#Alpert99,https://doi.org/10.1137/S1064827597325141 +Hao Lu,A Uniform-Consistency Barrier on Finite-Difference Schemes of Positive Type for Convection-Diffusion Equations.,1995,16,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc16.html#Lu95,https://doi.org/10.1137/0916011 +F. Prill,Smoothed Aggregation Multigrid for the Discontinuous Galerkin Method.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#PrillLH09,https://doi.org/10.1137/080728457 +Hong Zhang 0006,High Order Implicit-explicit General Linear Methods with Optimized Stability Regions.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#ZhangSB16,https://doi.org/10.1137/15M1018897 +Alfredo Bermúdez,An Exact Bounded Perfectly Matched Layer for Time-Harmonic Scattering Problems.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#BermudezHPR07,https://doi.org/10.1137/060670912 +Jianliang Qian,A Local Level Set Method for Paraxial Geometrical Optics.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#QianL06,https://doi.org/10.1137/030601673 +Jorge J. Moré,Estimating Computational Noise.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#MoreW11,https://doi.org/10.1137/100786125 +Julianne Chung,A Hybrid LSMR Algorithm for Large-Scale Tikhonov Regularization.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#ChungP15,https://doi.org/10.1137/140975024 +Peter R. Johnston,An Analysis of the Zero-Crossing Method for Choosing Regularization Parameters.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#JohnstonG02,https://doi.org/10.1137/S1064827500373516 +Nicholas I. M. Gould,Sparse Approximate-Inverse Preconditioners Using Norm-Minimization Techniques.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#GouldS98,https://doi.org/10.1137/S1064827595288425 +Rhys Gwynllyw,Preconditioned Iterative Methods for Unsteady Non-Newtonian Flow Between Eccentrically Rotating Cylinders.,1996,17,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc17.html#GwynllywP96,https://doi.org/10.1137/S1064827594271044 +Quan Liu,Polynomial Preconditioned GMRES and GMRES-DR.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#LiuMW15,https://doi.org/10.1137/140968276 +John R. McMahon,Knot Selection for Least Squares Thin Plate Splines.,1992,13,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc13.html#McMahonF92,https://doi.org/10.1137/0913026 +Nick Vannieuwenhoven,A New Truncation Strategy for the Higher-Order Singular Value Decomposition.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#VannieuwenhovenVM12,https://doi.org/10.1137/110836067 +Ole Christian Lingjærde,Generalized projection pursuit regression.,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#LingjaerdeL98,https://doi.org/10.1137/S1064827595296574 +Gabriel J. Lord,Computing Stochastic Traveling Waves.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#LordT12,https://doi.org/10.1137/100784734 +Qianshun Chang,Efficient Algebraic Multigrid Algorithms and Their Convergence.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#ChangH02,https://doi.org/10.1137/S1064827501389850 +Subhendu Bikash Hazra,Simultaneous Pseudo-Timestepping for Aerodynamic Shape Optimization Problems with State Constraints.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#HazraS06,https://doi.org/10.1137/05062442X +Ralf Zimmermann,An Accelerated Greedy Missing Point Estimation Procedure.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#ZimmermannW16,https://doi.org/10.1137/15M1042899 +Raymond H. Chan,A Multilevel Algorithm for Simultaneously Denoising and Deblurring Images.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#ChanC10,https://doi.org/10.1137/080741410 +Michael Pernice,NITSOL: A Newton Iterative Solver for Nonlinear Systems.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#PerniceW98,https://doi.org/10.1137/S1064827596303843 +Randolph E. Bank,Dual Functions for a Parallel Adaptive Method.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#BankO07,https://doi.org/10.1137/060668304 +Khachik Sargsyan,Spectral Representation and Reduced Order Modeling of the Dynamics of Stochastic Reaction Networks via Adaptive Data Partitioning.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#SargsyanDNM10,https://doi.org/10.1137/090747932 +Yanwei Wang,Fast Discrete Orthonormal Stockwell Transform.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#WangO09,https://doi.org/10.1137/080737113 +Leonardo Zepeda-Núñez,Fast Alternating BiDirectional Preconditioner for the 2D High-Frequency Lippmann-Schwinger Equation.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#Zepeda-NunezZ16,https://doi.org/10.1137/16M1064660 +D. M. Gritsis,Optimal Control of Systems Described by Index Two Differential-Algebraic Equations.,1995,16,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc16.html#GritsisPS95,https://doi.org/10.1137/0916078 +Alan George,Numerical Simulation of Unsteady Incompressible Flow (\em Re \protect\boldmath $\leq$ 9500) on the Curvilinear Half-Staggered Mesh.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#GeorgeHTW00,https://doi.org/10.1137/S1064827598337099 +D. Dahiya,Characteristic Fast Marching Method for Monotonically Propagating Fronts in a Moving Medium.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#DahiyaBC13,https://doi.org/10.1137/110852632 +Habib Ammari,Optimal Shape Design by Partial Spectral Data.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#AmmariCLZ15,https://doi.org/10.1137/130942498 +Kees van den Doel,Adaptive and Stochastic Algorithms for Electrical Impedance Tomography and DC Resistivity Problems with Piecewise Constant Solutions and Many Measurements.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#DoelA12,https://doi.org/10.1137/110826692 +Zbigniew Koza,Compressed Multirow Storage Format for Sparse Matrices on Graphics Processing Units.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#KozaMSM14,https://doi.org/10.1137/120900216 +Sebastiano Boscarino,Linearly Implicit IMEX Runge-Kutta Methods for a Class of Degenerate Convection-Diffusion Problems.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#BoscarinoBMRV15,https://doi.org/10.1137/140967544 +Johnathan M. Bardsley,An Iterative Method for Edge-Preserving MAP Estimation When Data-Noise Is Poisson.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#BardsleyG10,https://doi.org/10.1137/080726884 +Oliver Lass,POD Galerkin Schemes for Nonlinear Elliptic-Parabolic Systems.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#LassV13,https://doi.org/10.1137/110848414 +Robert C. Kirby,Geometric Optimization of the Evaluation of Finite Element Matrices.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#KirbyS07,https://doi.org/10.1137/060660722 +David Nordsletten,A Preconditioner for the Finite Element Approximation to the Arbitrary Lagrangian--Eulerian Navier--Stokes Equations.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#NordslettenSK10,https://doi.org/10.1137/08072958X +Michael Griebel,A Particle-Partition of Unity Method-Part III: A Multilevel Solver.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#GriebelS02,https://doi.org/10.1137/S1064827501395252 +Anastasios Karangelis,Condition Number Estimates and Weak Scaling for 2-Level 2-Lagrange Multiplier Methods for General Domains and Cross Points.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#KarangelisL15,https://doi.org/10.1137/140965491 +David Elliott,Clenshaw--Curtis and Gauss--Legendre Quadrature for Certain Boundary Element Integrals.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#ElliottJJ08,https://doi.org/10.1137/07070200X +Julianne Chung,Windowed Spectral Regularization of Inverse Problems.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#ChungEO11,https://doi.org/10.1137/100809787 +Edmond Chow,Approximate Inverse Preconditioners via Sparse-Sparse Iterations.,1998,19,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc19.html#ChowS98,https://doi.org/10.1137/S1064827594270415 +Haoying Fu,Structured Total Least Squares for Color Image Restoration.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#FuNB06,https://doi.org/10.1137/040605436 +K. Gärtner,Existence of Bounded Discrete Steady-State Solutions of the Van Roosbroeck System on Boundary Conforming Delaunay Grids.,2009,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#Gartner09,https://doi.org/10.1137/070710950 +Juan Manzanero,Dispersion-Dissipation Analysis for Advection Problems with Nonconstant Coefficients: Applications to Discontinuous Galerkin Formulations.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#ManzaneroRFV18,https://doi.org/10.1137/16M1101143 +Xiaoqun Wang,Why Are High-Dimensional Finance Problems Often of Low Effective Dimension?.,2005,27,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc27.html#WangS05,https://doi.org/10.1137/S1064827503429429 +Zydrunas Gimbutas,A Fast Algorithm for Spherical Grid Rotations and Its Application to Singular Quadrature.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#GimbutasV13,https://doi.org/10.1137/120900587 +Shui-Nee Chow,A Shadowing Lemma Approach to Global Error Analysis for Initial Value ODEs.,1994,15,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc15.html#ChowV94,https://doi.org/10.1137/0915058 +Xiaohua Wan,Iterative Methods in Large Field Electron Microscope Tomography.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#WanPLZHLE13,https://doi.org/10.1137/120881464 +Gérard Meurant,On the Incomplete Cholesky Decomposition of a Class of Perturbed Matrices.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#Meurant01,https://doi.org/10.1137/S1064827500371244 +Loïc Giraldi,Low-Rank Approximate Inverse for Preconditioning Tensor-Structured Linear Systems.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#GiraldiNL14,https://doi.org/10.1137/130918137 +Jayadeep Gopalakrishnan,Dispersive and Dissipative Errors in the DPG Method with Scaled Norms for Helmholtz Equation.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#GopalakrishnanMO14,https://doi.org/10.1137/130918186 +Lior Horesh,A Second Order Discretization of Maxwell's Equations in the Quasi-Static Regime on OcTree Grids.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#HoreshH11,https://doi.org/10.1137/100798508 +Troy D. Butler,Combining Push-Forward Measures and Bayes' Rule to Construct Consistent Solutions to Stochastic Inverse Problems.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#ButlerJW18,https://doi.org/10.1137/16M1087229 +Yvon Maday,Locally Adaptive Greedy Approximations for Anisotropic Parameter Reduced Basis Spaces.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#MadayS13,https://doi.org/10.1137/120873868 +Won-Ki Jeong,A Fast Iterative Method for Eikonal Equations.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#JeongW08,https://doi.org/10.1137/060670298 +Louis F. Rossi,Achieving High-Order Convergence Rates with Deforming Basis Functions.,2005,26,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc26.html#Rossi05,https://doi.org/10.1137/S1064827503425286 +Christopher R. Anderson,An Implementation of the Fast Multipole Method without Multipoles.,1992,13,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc13.html#Anderson92,https://doi.org/10.1137/0913055 +Claude Brezinski,Multiparameter Iterative Schemes for the Solution of Systems of Linear and Nonlinear Equations.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#BrezinskiC99,https://doi.org/10.1137/S106482759631370X +Alexei Bespalov,Energy Norm A Posteriori Error Estimation for Parametric Operator Equations.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#BespalovPS14,https://doi.org/10.1137/130916849 +Omar Lakkis,A Finite Element Method for Nonlinear Elliptic Problems.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#LakkisP13,https://doi.org/10.1137/120887655 +Per Christian Hansen,The Use of the L-Curve in the Regularization of Discrete Ill-Posed Problems.,1993,14,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc14.html#HansenO93,https://doi.org/10.1137/0914086 +Purnima Ghale,Task-based Parallel Computation of the Density Matrix in Quantum-based Molecular Dynamics using Graph Partitioning.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#GhaleKMNPPSSH17,https://doi.org/10.1137/16M109404X +Viktoria Taroudaki,Near-Optimal Spectral Filtering and Error Estimation for Solving Ill-Posed Problems.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#TaroudakiO15,https://doi.org/10.1137/15M1019581 +Yousef Saad,BILUM: Block Versions of Multielimination and Multilevel ILU Preconditioner for General Sparse Linear Systems.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#SaadZ99,https://doi.org/10.1137/S106482759732753X +Miroslav Stoyanov,Numerical Analysis of Fixed Point Algorithms in the Presence of Hardware Faults.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#StoyanovW15,https://doi.org/10.1137/140991406 +Arjun Singh Gambhir,Deflation as a Method of Variance Reduction for Estimating the Trace of a Matrix Inverse.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#GambhirSO17,https://doi.org/10.1137/16M1066361 +Akil Narayan,Stochastic Collocation Methods on Unstructured Grids in High Dimensions via Interpolation.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#NarayanX12,https://doi.org/10.1137/110854059 +Carola Kruse,Time-Decoupled High Order Continuous Space-Time Finite Element Schemes for the Heat Equation.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#KruseS14,https://doi.org/10.1137/130914589 +Harold R. Parks,Computing Least Area Hypersurfaces Spanning Arbitrary Boundaries.,1997,18,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc18.html#ParksP97,https://doi.org/10.1137/S1064827594278903 +Daniel Y. Le Roux,Time Discretization Schemes for Poincaré Waves in Finite-Element Shallow-Water Models.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#RouxDS11,https://doi.org/10.1137/090779413 +Martin Schreiber,Evaluation of an Efficient Stack-RLE Clustering Concept for Dynamically Adaptive Grids.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#SchreiberNB16,https://doi.org/10.1137/15M1027711 +Eldad Haber,Adaptive Mesh Refinement for Nonparametric Image Registration.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#HaberHM08,https://doi.org/10.1137/070687724 +Luca F. Pavarino,Overlapping Schwarz Methods for Fekete and Gauss-Lobatto Spectral Elements.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#PavarinoZPR07,https://doi.org/10.1137/060663568 +Gerard L. G. Sleijpen,Exploiting BiCGstab(ℓ*) Strategies to Induce Dimension Reduction.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#SleijpenG10,https://doi.org/10.1137/090752341 +Philipp Stumm,New Algorithms for Optimal Online Checkpointing.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#StummW10,https://doi.org/10.1137/080742439 +Zhaojun Bai,Computing the Generalized Singular Value Decomposition.,1993,14,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc14.html#BaiD93,https://doi.org/10.1137/0914085 +Sverker Holmgren,Semicirculant Solvers and Boundary Corrections for First-Order Partial Differential Equations.,1996,17,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc17.html#HolmgrenO96,https://doi.org/10.1137/S106482759324999X +Jörg Stiller,Factorization Techniques for Nodal Spectral Elements in Curved Domains.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#StillerF08,https://doi.org/10.1137/070700905 +Wayne H. Enright,Runge-Kutta Software with Defect Control for Boundary Value ODEs.,1996,17,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc17.html#EnrightM96,https://doi.org/10.1137/S1064827593251496 +Derek S. Bale,A Wave Propagation Method for Conservation Laws and Balance Laws with Spatially Varying Flux Functions.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#BaleLMR03,https://doi.org/10.1137/S106482750139738X +Randolph E. Bank,A Domain Decomposition Solver for a Parallel Adaptive Meshing Paradigm.,2004,26,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc26.html#BankL04,https://doi.org/10.1137/S1064827503428096 +Tao Tang,On Discrete Least-Squares Projection in Unbounded Domain with Random Evaluations and its Application to Parametric Uncertainty Quantification.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#TangZ14,https://doi.org/10.1137/140961894 +Lubomír Bañas,Computational Studies for the Stochastic Landau-Lifshitz-Gilbert Equation.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#BanasBP13,https://doi.org/10.1137/110856666 +Rahul S. Sampath,A Parallel Geometric Multigrid Method for Finite Elements on Octree Meshes.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#SampathB10,https://doi.org/10.1137/090747774 +Feng Bao,Adaptive Meshfree Backward SDE Filter.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#BaoM17,https://doi.org/10.1137/16M1100277 +Francis Collino,The Perfectly Matched Layer in Curvilinear Coordinates.,1998,19,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc19.html#CollinoM98,https://doi.org/10.1137/S1064827596301406 +Marco Restelli,A Conservative Discontinuous Galerkin Semi-Implicit Formulation for the Navier-Stokes Equations in Nonhydrostatic Mesoscale Modeling.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#RestelliG09,https://doi.org/10.1137/070708470 +Bradley K. Alpert,Wavelet-Like Bases for the Fast Solution of Second-Kind Integral Equations.,1993,14,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc14.html#AlpertBCR93,https://doi.org/10.1137/0914010 +Thomas Huckle,Some Aspects of Circulant Preconditioners.,1993,14,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc14.html#Huckle93,https://doi.org/10.1137/0914034 +Jason Frank,On the Construction of Deflation-Based Preconditioners.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#FrankV01,https://doi.org/10.1137/S1064827500373231 +Stanley C. Eisenstat,Choosing the Forcing Terms in an Inexact Newton Method.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#EisenstatW96,https://doi.org/10.1137/0917003 +Hannah Morgan,Towards a Unified Finite Element Method for the Stokes Equations.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#MorganS18,https://doi.org/10.1137/16M1103117 +Tony F. Chan,Galerkin Projection Methods for Solving Multiple Linear Systems.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#ChanN99,https://doi.org/10.1137/S1064827598310227 +Dimitris Valougeorgis,Acceleration Schemes of the Discrete Velocity Method: Gaseous Flows in Rectangular Microchannels.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#ValougeorgisN03,https://doi.org/10.1137/S1064827502406506 +J. H. Adler,Numerical Approximation of Asymptotically Disappearing Solutions of Maxwell's Equations.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#AdlerPZ13,https://doi.org/10.1137/120879385 +Qiuqi Li,A Novel Variable-Separation Method Based on Sparse and Low Rank Representation for Stochastic Partial Differential Equations.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#LiJ17,https://doi.org/10.1137/16M1100010 +Azzam Haidar,Toward a High Performance Tile Divide and Conquer Algorithm for the Dense Symmetric Eigenvalue Problem.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#HaidarLD12,https://doi.org/10.1137/110823699 +Gregory Beylkin,Multivariate Regression and Machine Learning with Sums of Separable Functions.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#BeylkinGM09,https://doi.org/10.1137/070710524 +Liang Yan 0002,Sparse Approximation using and#8467*1-ℓ*2 Minimization and Its Application to Stochastic Collocation.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#YanSX17,https://doi.org/10.1137/15M103947X +Kailiang Wu,A Direct Eulerian GRP Scheme for Spherically Symmetric General Relativistic Hydrodynamics.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#WuT16,https://doi.org/10.1137/16M1055657 +M. Ganesh,A Hybrid High-Order Algorithm for Radar Cross Section Computations.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#GaneshH07,https://doi.org/10.1137/060664859 +Marco Picasso,An Anisotropic Error Indicator Based on Zienkiewicz-Zhu Error Estimator: Application to Elliptic and Parabolic Problems.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#Picasso03,https://doi.org/10.1137/S1064827501398578 +Kaname Amano,A Charge Simulation Method for Numerical Conformal Mapping onto Circular and Radial Slit Domains.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#Amano98,https://doi.org/10.1137/S1064827595294307 +J. J. Liu,On the Accuracy of the Numerical Detection of Complex Obstacles from Far Field Data Using the Probe Method.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#LiuS09,https://doi.org/10.1137/080718024 +Nejib Smaoui,Analyzing the Dynamics of Cellular Flames Using Karhunen-Loève Decomposition and Autoassociative Neural Networks.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#SmaouiA03,https://doi.org/10.1137/S1064827501386201 +Shu-Lin Wu,A Parallel Iterative Algorithm for Differential Linear Complementarity Problems.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#WuC17,https://doi.org/10.1137/16M1103749 +Sabine Le Borne,Preconditioned Nullspace Method for the Two-Dimensional Oseen Problem.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#Borne09,https://doi.org/10.1137/070691577 +Sou-Cheng T. Choi,MINRES-QLP: A Krylov Subspace Method for Indefinite or Singular Symmetric Systems.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#ChoiPS11,https://doi.org/10.1137/100787921 +Ulrik S. Fjordholm,Vorticity Preserving Finite Volume Schemes for the Shallow Water Equations.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#FjordholmM11,https://doi.org/10.1137/090775956 +Robert J. MacKinnon,Nodal Superconvergence and Solution Enhancement for a Class of Finite-Element and Finite-Difference Methods.,1990,11,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc11.html#MacKinnonC90,https://doi.org/10.1137/0911020 +Randolph E. Bank,The Incomplete Factorization Multigraph Algorithm.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#BankS99,https://doi.org/10.1137/S1064827597319520 +Khachik Sargsyan,Fault Resilient Domain Decomposition Preconditioner for PDEs.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#SargsyanRMSMNMK15,https://doi.org/10.1137/15M1014474 +Sung Ha Kang,Optimal Sensor Positioning* A Probability Perspective Study.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#KangKZ17,https://doi.org/10.1137/16M107089X +Luc Giraud,A Comparative Study of Iterative Solvers Exploiting Spectral Information for SPD Systems.,2006,27,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc27.html#GiraudRT06,https://doi.org/10.1137/040608301 +Gun Srijuntongsiri,A Condition Number Analysis of an Algorithm for Solving a System of Polynomial Equations with One Degree of Freedom.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#SrijuntongsiriV11,https://doi.org/10.1137/090780547 +Mihai Cucuringu,ADM-CLE Approach for Detecting Slow Variables in Continuous Time Markov Chains and Dynamic Data.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#CucuringuE17,https://doi.org/10.1137/15M1017120 +Roger B. Sidje,Inexact Uniformization Method for Computing Transient Distributions of Markov Chains.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#SidjeBM07,https://doi.org/10.1137/060662629 +Yongsam Kim,2-D Parachute Simulation by the Immersed Boundary Method.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#KimP06,https://doi.org/10.1137/S1064827501389060 +Ricardo H. Nochetto,An Adaptive Finite Element Method for Two-Phase Stefan Problems in Two Space Dimensions. II: Implementation and Numerical Experiments.,1991,12,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc12.html#NochettoPV91,https://doi.org/10.1137/0912065 +Carlo Janna,The Use of Supernodes in Factored Sparse Approximate Inverse Preconditioning.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#JannaFG15,https://doi.org/10.1137/140956026 +Christina Steiner,Adaptive Timestep Control for Nonstationary Solutions of the Euler Equations.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#SteinerMN10,https://doi.org/10.1137/090752821 +Cheng Tu,Stability and Instability in the Computation of Flows with Moving Immersed Boundaries: A Comparison of Three Methods.,1992,13,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc13.html#TuP92,https://doi.org/10.1137/0913077 +Youcef Saad,A Flexible Inner-Outer Preconditioned GMRES Algorithm.,1993,14,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc14.html#Saad93,https://doi.org/10.1137/0914028 +Siegfried Müller,The Riemann Problem for the Euler Equations with Nonconvex and Nonsmooth Equation of State: Construction of Wave Curves.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#MullerV06,https://doi.org/10.1137/040619909 +James Rankin,Continuation of Localized Coherent Structures in Nonlocal Neural Field Equations.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#RankinABFL14,https://doi.org/10.1137/130918721 +G. Alistair Watson,On Computing the Least Quantile of Squares Estimate.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#Watson98,https://doi.org/10.1137/S1064827595283768 +John S. Lowengrub,High-Order and Efficient Methods for the Vorticity Formulation of the Euler Equations.,1993,14,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc14.html#LowengrubSM93,https://doi.org/10.1137/0914067 +Patrick E. Farrell,Deflation Techniques for Finding Distinct Solutions of Nonlinear Partial Differential Equations.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#FarrellBF15,https://doi.org/10.1137/140984798 +Shi Jin,Two Interface-Type Numerical Methods for Computing Hyperbolic Systems with Geometrical Source Terms Having Concentrations.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#JinW05,https://doi.org/10.1137/040605825 +Yann d'Halluin,A Semi-Lagrangian Approach for American Asian Options under Jump Diffusion.,2005,27,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc27.html#dHalluinFL05,https://doi.org/10.1137/030602630 +James H. Adler,Energy Minimization for Liquid Crystal Equilibrium with Electric and Flexoelectric Effects.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#AdlerABEM15,https://doi.org/10.1137/140975036 +Tom Manteuffel,Special Section on Iterative Methods in Numerical Linear Algebra.,1994,15,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc15.html#ManteuffelM94,https://doi.org/10.1137/0915intro1 +Klaus Lackner,Multiscale Linear Solvers for Very Large Systems Derived from PDES.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#LacknerM00,https://doi.org/10.1137/S1064827598339785 +Andrew Lumsdaine,Spectra and Pseudospectra of Waveform Relaxation Operators.,1997,18,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc18.html#LumsdaineW97,https://doi.org/10.1137/S106482759528778X +Arun In,Numerical Evaluation of an Energy Relaxation Method for Inviscid Real Fluids.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#In99,https://doi.org/10.1137/S1064827597324561 +Christiane Helzel,A High-Resolution Rotated Grid Method for Conservation Laws with Embedded Geometries.,2005,26,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc26.html#HelzelBL05,https://doi.org/10.1137/S106482750343028X +Peter Frolkovic,High-Resolution Flux-Based Level Set Method.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#FrolkovicM07,https://doi.org/10.1137/050646561 +Joseph Czyzyk,Using a Massively Parallel Processor to Solve Large Sparse Linear Programs by an Interior-Point Method.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#CzyzykFM98,https://doi.org/10.1137/S1064827594272086 +Bernd Fischer,On Adaptive Weighted Polynomial Preconditioning for Hermitian Positive Definite Matrices.,1994,15,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc15.html#FischerF94,https://doi.org/10.1137/0915028 +Olivier P. Le Maître,Multi-Resolution-Analysis Scheme for Uncertainty Quantification in Chemical Systems.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#MaitreNPGK07,https://doi.org/10.1137/050643118 +Kui Du,A Simple Numerical Method for Complex Geometrical Optics Solutions to the Conductivity Equation.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#Du11,https://doi.org/10.1137/100802256 +Peter N. Brown,Hybrid Krylov Methods for Nonlinear Systems of Equations.,1990,11,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc11.html#BrownS90,https://doi.org/10.1137/0911026 +Barry Lee,Asynchronous Fast Adaptive Composite-Grid Methods: Numerical Results.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#LeeMPQ03,https://doi.org/10.1137/S1064827502407536 +H. Sue Dollar,Approximate Factorization Constraint Preconditioners for Saddle-Point Matrices.,2006,27,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc27.html#DollarW06,https://doi.org/10.1137/04060768X +Nicola Guglielmi,On the Method by Rostami for Computing the Real Stability Radius of Large and Sparse Matrices.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#Guglielmi16,https://doi.org/10.1137/15M1029709 +Charles L. Epstein,Smoothed Corners and Scattered Waves.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#EpsteinO16,https://doi.org/10.1137/15M1028248 +Lawrence Bush,On the Application of the Continuous Galerkin Finite Element Method for Conservation Problems.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#BushG13,https://doi.org/10.1137/120900393 +Laurie A. Hulbert,Limiting Communication in Parallel Sparse Cholesky Factorization.,1991,12,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc12.html#HulbertZ91,https://doi.org/10.1137/0912063 +Hui Guo,Bound-Preserving Discontinuous Galerkin Method for Compressible Miscible Displacement in Porous Media.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#GuoY17,https://doi.org/10.1137/16M1101313 +Colin Fox,Convergence in Variance of Chebyshev Accelerated Gibbs Samplers.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#FoxP14,https://doi.org/10.1137/120900940 +Qianqian Yang 0001,Novel Numerical Methods for Solving the Time-Space Fractional Diffusion Equation in Two Dimensions.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#YangTLI11,https://doi.org/10.1137/100800634 +Daria A. Sushnikova,Compress and Eliminate Solver for Symmetric Positive Definite Sparse Matrices.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#SushnikovaO18,https://doi.org/10.1137/16M1068487 +Tobin Isaac,Recursive Algorithms for Distributed Forests of Octrees.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#IsaacBWG15,https://doi.org/10.1137/140970963 +Leonid Gurvits,A Further Note on Max-Min Properties of Matrix Factor Norms.,1995,16,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc16.html#GurvitsG95,https://doi.org/10.1137/0916030 +Michal Kocvara,Primal-Dual Interior Point Multigrid Method for Topology Optimization.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#KocvaraM16,https://doi.org/10.1137/15M1044126 +S. H. Lui,On Schwarz Alternating Methods for Nonlinear Elliptic PDEs.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#Lui99,https://doi.org/10.1137/S1064827597327553 +Hyea Hyun Kim,A Neumann-Dirichlet Preconditioner for a FETI-DP Formulation of the Two-Dimensional Stokes Problem with Mortar Methods.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#KimL06,https://doi.org/10.1137/030601119 +Geoffrey S. Chesshire,A Scheme for Conservative Interpolation on Overlapping Grids.,1994,15,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc15.html#ChesshireH94,https://doi.org/10.1137/0915051 +Wenlong Dai,An Iterative Riemann Solver for Relativistic Hydrodynamics.,1997,18,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc18.html#DaiW97a,https://doi.org/10.1137/S1064827595282234 +Jungho Lee,Two Domain Decomposition Methods for Auxiliary Linear Problems of a Multibody Elliptic Variational Inequality.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#Lee13a,https://doi.org/10.1137/100783753 +Santiago Badia,A Highly Scalable Parallel Implementation of Balancing Domain Decomposition by Constraints.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#BadiaMP14,https://doi.org/10.1137/130931989 +Zhiqiang Cai,First-Order System Least Squares for the Stokes and Linear Elasticity Equations: Further Results.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#CaiLMM00a,https://doi.org/10.1137/S1064827598338652 +Mayya Tokman,New Adaptive Exponential Propagation Iterative Methods of Runge-Kutta Type.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#TokmanLT12,https://doi.org/10.1137/110849961 +Robert D. Russell,Some Numerical Aspects of Computing Inertial Manifolds.,1993,14,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc14.html#RussellST93,https://doi.org/10.1137/0914002 +Jens Lang 0001,On Global Error Estimation and Control for Initial Value Problems.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#LangV07,https://doi.org/10.1137/050646950 +Moritz Schulze Darup,Improved Automatic Computation of Hessian Matrix Spectral Bounds.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#DarupM16,https://doi.org/10.1137/15M1025773 +Jun Jia,Stable and Spectrally Accurate Schemes for the Navier-Stokes Equations.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#JiaL11,https://doi.org/10.1137/090754340 +Patrick Amestoy,On Computing Inverse Entries of a Sparse Matrix in an Out-of-Core Environment.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#AmestoyDLRRU12,https://doi.org/10.1137/100799411 +Vladimir Mikulinsky,"Multigrid Treatment of ""Thin"" Domains.",1991,12,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc12.html#Mikulinsky91,https://doi.org/10.1137/0912050 +Ray Tuminaro,Special Section: 2010 Copper Mountain Conference.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#TuminaroBCDEFJKKKLMMSW11,http://epubs.siam.org/sisc/resource/1/sjoce3/v33/i5/p2685_s1 +Peter Gruber 0001,Solution of One-Time-Step Problems in Elastoplasticity by a Slant Newton Method.,2009,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#GruberV09,https://doi.org/10.1137/070690079 +Jia Zhao 0004,Energy Stable Numerical Schemes for a Hydrodynamic Model of Nematic Liquid Crystals.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#ZhaoYLW16,https://doi.org/10.1137/15M1024093 +Mari Paz Calvo,Instabilities and Inaccuracies in the Integration of Highly Oscillatory Problems.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#CalvoS09,https://doi.org/10.1137/080727658 +Pierre Weiss,Efficient Schemes for Total Variation Minimization Under Constraints in Image Processing.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#WeissBA09,https://doi.org/10.1137/070696143 +Sheng Xu,Systematic Derivation of Jump Conditions for the Immersed Interface Method in Three-Dimensional Flow Simulation.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#XuW06,https://doi.org/10.1137/040604960 +San-Yih Lin,A Modified Penalty Method for Stokes Equations and Its Applications to Navier-Stokes Equations.,1995,16,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc16.html#LinCW95,https://doi.org/10.1137/0916001 +Carsten Carstensen,Numerical Experiments for the Arnold-Winther Mixed Finite Elements for the Stokes Problem.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#CarstensenGP12,https://doi.org/10.1137/100802906 +I. Yu. Gejadze,On Computation of the Design Function Gradient for the Sensor-Location Problem in Variational Data Assimilation.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#GejadzeS12,https://doi.org/10.1137/110825121 +Robert Artebrant,Conservative Logarithmic Reconstructions and Finite Volume Methods.,2005,27,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc27.html#ArtebrantS05,https://doi.org/10.1137/03060240X +Sverker Holmgren,Convergence Acceleration for the Linearized Navier-Stokes Equations using Semicirculant Approximations.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#HolmgrenBS99,https://doi.org/10.1137/S1064827597317983 +Panayot S. Vassilevski,General Constrained Energy Minimization Interpolation Mappings for AMG.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#Vassilevski10,https://doi.org/10.1137/080726252 +Michael G. Edwards,Quasi M-Matrix Multifamily Continuous Darcy-Flux Approximations with Full Pressure Support on Structured and Unstructured Grids in Three Dimensions.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#EdwardsZ11,https://doi.org/10.1137/080745390 +Luca F. Pavarino,BDDC Preconditioners for Spectral Element Discretizations of Almost Incompressible Elasticity in Three Dimensions.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#PavarinoWZ10,https://doi.org/10.1137/100791701 +Gérard Meurant,Estimates of the Norm of the Error in Solving Linear Systems with FOM and GMRES.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#Meurant11,https://doi.org/10.1137/100795565 +Ray S. Tuminaro,Special Issue: 2008 Copper Mountain Conference.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#Tuminaro10,https://doi.org/10.1137/SJOCE3000032000001000vii000001 +Paul Mycek,Discrete A Priori Bounds for the Detection of Corrupted PDE Solutions in Exascale Computations.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#MycekRMSMSDK17,https://doi.org/10.1137/15M1051786 +Konstantinos Gourgoulias,Information Metrics For Long-Time Errors in Splitting Schemes For Stochastic Dynamics and Parallel Kinetic Monte Carlo.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#GourgouliasKR16,https://doi.org/10.1137/15M1047271 +Carl T. Kelley,GMRES and Integral Operators.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#KelleyX96,https://doi.org/10.1137/0917015 +Stefan Holst,An Adaptive Mixed Scheme for Energy-Transport Simulations of Field-Effect Transistors.,2004,25,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc25.html#HolstJP04,https://doi.org/10.1137/S1064827502418215 +Howard C. Elman,Performance Enhancements and Parallel Algorithms for Two Multilevel Preconditioners.,1993,14,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc14.html#ElmanG93,https://doi.org/10.1137/0914055 +Xuan Zhao,A Fourth-order Compact ADI scheme for Two-Dimensional Nonlinear Space Fractional Schrödinger Equation.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#ZhaoSH14,https://doi.org/10.1137/140961560 +Murtazo Nazarov,On the Stability of the Dual Problem for High Reynolds Number Flow Past a Circular Cylinder in Two Dimensions.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#NazarovH12,https://doi.org/10.1137/110836213 +Gregory Beylkin,A Multiresolution Approach to Regularization of Singular Operators and Fast Summation.,2002,24,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc24.html#BeylkinC02,https://doi.org/10.1137/S1064827500379227 +Dante Kalise,Polynomial Approximation of High-Dimensional Hamilton-Jacobi-Bellman Equations and Applications to Feedback Control of Semilinear Parabolic PDEs.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#KaliseK18,https://doi.org/10.1137/17M1116635 +M. Gu,Subspace Iteration Randomization and Singular Value Problems.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#Gu15,https://doi.org/10.1137/130938700 +Maxim A. Olshanskii,Navier-Stokes Equations in Rotation Form: A Robust Multigrid Solver for the Velocity Problem.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#OlshanskiiR02,https://doi.org/10.1137/S1064827500374881 +Roland Herzog,A Modified Implementation of MINRES to Monitor Residual Subvector Norms for Block Systems.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#HerzogS17,https://doi.org/10.1137/16M1093021 +M. Amara,Coupling of Darcy--Forchheimer and Compressible Navier--Stokes Equations with Heat Transfer.,2009,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#AmaraCL09,https://doi.org/10.1137/070709517 +Grigorios P. Zouros,Transverse Electric Scattering on Inhomogeneous Objects: Spectrum of Integral Operator and Preconditioning.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#ZourosB12,https://doi.org/10.1137/110831568 +Rolf Jeltsch,Waveform Relaxation with Overlapping Splittings.,1995,16,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc16.html#JeltschP95,https://doi.org/10.1137/0916004 +Valeria Simoncini,An Iterative Method for Nonsymmetric Systems with Multiple Right-Hand Sides.,1995,16,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc16.html#SimonciniG95,https://doi.org/10.1137/0916053 +Jennifer K. Ryan,Extension of a Post Processing Technique for the Discontinuous Galerkin Method for Hyperbolic Equations with Application to an Aeroacoustic Problem.,2005,26,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc26.html#RyanSA05,https://doi.org/10.1137/S1064827503423998 +YongHoon Kwon,A Second-Order Tridiagonal Method for American Options under Jump-Diffusion Models.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#KwonL11,https://doi.org/10.1137/100806552 +Cameron W. Smith,Improving Unstructured Mesh Partitions for Multiple Criteria Using Mesh Adjacencies.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#SmithRIJS18,https://doi.org/10.1137/15M1027814 +Misha E. Kilmer,Pivoted Cauchy-Like Preconditioners for Regularized Solution of Ill-Posed Problems.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#KilmerO99,https://doi.org/10.1137/S1064827596308974 +Oren E. Livne,MuST: The Multilevel Sinc Transform.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#LivneB11,https://doi.org/10.1137/100806904 +Chengfeng Weng,Efficient Computation of Option Prices and Greeks by Quasi-Monte Carlo Method with Smoothing and Dimension Reduction.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#WengWH17,https://doi.org/10.1137/15M1050380 +Yi He,Convergence Acceleration Algorithm via an Equation Related to the Lattice Boussinesq Equation.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#HeHSW11,https://doi.org/10.1137/100808757 +Jan Nordström,Summation-By-Parts in Time: The Second Derivative.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#NordstromL16,https://doi.org/10.1137/15M103861X +Daniel Wirtz,A Posteriori Error Estimation for DEIM Reduced Nonlinear Dynamical Systems.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#WirtzSH14,https://doi.org/10.1137/120899042 +I. Bogaert,O(1) Computation of Legendre Polynomials and Gauss-Legendre Nodes and Weights for Parallel Computing.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#BogaertMF12,https://doi.org/10.1137/110855442 +John M. Stockie,A Moving Mesh Method for One-dimensional Hyperbolic Conservation Laws.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#StockieMR01,https://doi.org/10.1137/S1064827599364428 +Haesun Park,Schur-Type Methods for Solving Least Squares Problems with Toeplitz Structure.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#ParkE00,https://doi.org/10.1137/S1064827598347423 +Chandrajit L. Bajaj,Fast Molecular Solvation Energetics and Forces Computation.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#BajajZ10,https://doi.org/10.1137/090746173 +Pieter Coulier,The Inverse Fast Multipole Method: Using a Fast Approximate Direct Solver as a Preconditioner for Dense Linear Systems.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#CoulierPD17,https://doi.org/10.1137/15M1034477 +Kari Brusdal,Basis Norm Rescaling for Nonlinear Parameter Estimation.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#BrusdalM00,https://doi.org/10.1137/S1064827598341645 +Leslie Greengard,Potential Flow in Channels.,1990,11,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc11.html#Greengard90,https://doi.org/10.1137/0911035 +William I. Newman,Primitive Variable Determination in Conservative Relativistic Magnetohydrodynamic Simulations.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#NewmanH14,https://doi.org/10.1137/140956749 +Max Kuang,Preconditioning of Optimal Transport.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#KuangT17,https://doi.org/10.1137/16M1074953 +Claus-Dieter Munz,A Finite-Volume Method for the Maxwell Equations in the Time Domain.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#MunzSV00,https://doi.org/10.1137/S1064827596307890 +Woody Lichtenstein,Block-Cyclic Dense Linear Algebra.,1993,14,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc14.html#LichtensteinJ93,https://doi.org/10.1137/0914075 +Lili Ju,Adaptive Finite Element Methods for Elliptic PDEs Based on Conforming Centroidal Voronoi-Delaunay Triangulations.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#JuGZ06,https://doi.org/10.1137/050643568 +Assyr Abdulle,Fourth Order Chebyshev Methods with Recurrence Relation.,2002,23,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc23.html#Abdulle02,https://doi.org/10.1137/S1064827500379549 +Véronique Martin,Schwarz Waveform Relaxation Algorithms for the Linear Viscous Equatorial Shallow Water Equations.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#Martin09,https://doi.org/10.1137/070691450 +Daniele Bertaccini,A Circulant Preconditioner for the Systems of LMF-Based ODE Codes.,2000,22,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc22.html#Bertaccini00,https://doi.org/10.1137/S1064827599353476 +A. Myers,A 4th-Order Particle-in-Cell Method with Phase-Space Remapping for the Vlasov-Poisson Equation.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#MyersCS17,https://doi.org/10.1137/16M105962X +Lingfei Wu,PRIMME_SVDS: A High-Performance Preconditioned SVD Solver for Accurate Large-Scale Computations.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#WuRS17,https://doi.org/10.1137/16M1082214 +Heiko Berninger,The 2-Lagrange Multiplier Method Applied to Nonlinear Transmission Problems for the Richards Equation in Heterogeneous Soil with Cross Points.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#BerningerLS14,https://doi.org/10.1137/120901064 +Marian Brezina,Parallel Algebraic Multigrids for Structural Mechanics.,2006,27,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc27.html#BrezinaTB06,https://doi.org/10.1137/040608271 +Tom Manteuffel,Special Section on Iterative Methods in Numerical Linear Algebra.,1994,15,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc15.html#ManteuffelM94a,https://doi.org/10.1137/0915intro2 +James Kestyn,Feast Eigensolver for Non-Hermitian Problems.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#KestynPT16,https://doi.org/10.1137/15M1026572 +Kjell Gustafsson,Control Strategies for the Iterative Solution of Nonlinear Equations in ODE Solvers.,1997,18,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc18.html#GustafssonS97,https://doi.org/10.1137/S1064827595287109 +Jørg E. Aarnes,Mixed Multiscale Finite Element Methods for Stochastic Porous Media Flows.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#AarnesE08,https://doi.org/10.1137/07070108X +Thomas Huckle,Preconditioning Strategies for Hermitian Indefinite Toeplitz Linear Systems.,2004,25,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc25.html#HuckleCP04,https://doi.org/10.1137/S1064827502416332 +Sylvain Durand,Reconstruction of Wavelet Coefficients Using Total Variation Minimization.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#DurandF03,https://doi.org/10.1137/S1064827501397792 +T. NKaoua,Solution of the Nonlinear Radiative Transfer Equations by a Fully Implicit Matrix Monte Carlo Method Coupled with the Rosseland Diffusion Equation via Domain Decomposition.,1991,12,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc12.html#NKaoua91,https://doi.org/10.1137/0912028 +Kun Xu 0001,A Gas-Kinetic Scheme for the Euler Equations with Heat Transfer.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#Xu99,https://doi.org/10.1137/S106482759731628X +Daniel Loghin,Analysis of Preconditioners for Saddle-Point Problems.,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#LoghinW04,https://doi.org/10.1137/S1064827502418203 +Ruipeng Li,A Thick-Restart Lanczos Algorithm with Polynomial Filtering for Hermitian Eigenvalue Problems.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#LiXVYS16,https://doi.org/10.1137/15M1054493 +Jingchen Liu,Efficient Rare Event Simulation for Failure Problems in Random Media.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#LiuLZ15,https://doi.org/10.1137/140965569 +Wurigen Bo,A Robust Front Tracking Method: Verification and Application to Simulation of the Primary Breakup of a Liquid Jet.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#BoLGL11,https://doi.org/10.1137/10079135X +Martin Burger 0001,A Hyperelastic Regularization Energy for Image Registration.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#BurgerMR13,https://doi.org/10.1137/110835955 +Matthias Bolten,Multigrid Methods for Tensor Structured Markov Chains with Low Rank Approximation.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#BoltenKS16,https://doi.org/10.1137/140994447 +Rodolfo Bermejo,A Semi-Lagrangian Particle Level Set Finite Element Method for Interface Problems.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#BermejoP13,https://doi.org/10.1137/110830587 +Tao Tang,Boundary Layer Resolving Pseudospectral Methods for Singular Perturbation Problems.,1996,17,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc17.html#TangT96,https://doi.org/10.1137/S1064827592234120 +Victor Pan,Compact Multigrid.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#PanR92,https://doi.org/10.1137/0913007 +F. Xabier Garaizar,Adaptive Mesh Refinement and Front-Tracking for Shear Bands in an Antiplane Shear Model.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#GaraizarT98,https://doi.org/10.1137/S1064827597319271 +Jens Neumann,Consistency on Domain Boundaries for Linear PDAE Systems.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#NeumannP08,https://doi.org/10.1137/060650088 +Mats Holmström,Solving Hyperbolic PDEs Using Interpolating Wavelets.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#Holmstrom99,https://doi.org/10.1137/S1064827597316278 +Mario Berljafa,The RKFIT Algorithm for Nonlinear Rational Approximation.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#BerljafaG17,https://doi.org/10.1137/15M1025426 +Zhiqiang Xu,On Sparse Interpolation and the Design of Deterministic Interpolation Points.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#XuZ14,https://doi.org/10.1137/13094596X +Mila Nikolova,Analysis of Half-Quadratic Minimization Methods for Signal and Image Recovery.,2005,27,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc27.html#NikolovaN05,https://doi.org/10.1137/030600862 +Andreas Frommer,Fast CG-Based Methods for Tikhonov-Phillips Regularization.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#FrommerM99,https://doi.org/10.1137/S1064827596313310 +Patrick M. Knupp,Jacobian-Weighted Elliptic Grid Generation.,1996,17,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc17.html#Knupp96,https://doi.org/10.1137/S1064827594278563 +Amir Averbuch,A Framework for Discrete Integral Transformations I-The Pseudopolar Fourier Transform.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#AverbuchCDIS08,https://doi.org/10.1137/060650283 +Bakytzhan Kallemov,A Second-Order Strong Method for the Langevin Equations with Holonomic Constraints.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#KallemovM11,https://doi.org/10.1137/100785600 +Marian Brezina,Adaptive Smoothed Aggregation (αSA).,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#BrezinaFMMMR04,https://doi.org/10.1137/S1064827502418598 +Thomas A. Höft,Fast Updating Multipole Coulombic Potential Calculation.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#HoftA17,https://doi.org/10.1137/16M1096189 +Emily K. Szusz,A Linear Time Algorithm for Near Minimax Continuous Piecewise Linear Representations of Discrete Data.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#SzuszW10,https://doi.org/10.1137/090769077 +Takashi Washio,Flexible Multiple Semicoarsening for Three-Dimensional Singularly Perturbed Problems.,1998,19,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc19.html#WashioO98,https://doi.org/10.1137/S1064827596305829 +Stéphane Descombes,Locally Implicit Discontinuous Galerkin Time Domain Method for Electromagnetic Wave Propagation in Dispersive Media Applied to Numerical Dosimetry in Biological Tissues.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#DescombesLM16,https://doi.org/10.1137/15M1010282 +Shu-Lin Wu,Convergence Analysis for Three Parareal Solvers.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#WuZ15,https://doi.org/10.1137/140970756 +Sébastien Loisel,Optimized Schwarz and 2-Lagrange Multiplier Methods for Multiscale Elliptic PDEs.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#LoiselNS15,https://doi.org/10.1137/15M1009676 +Michael Kolmbauer,A Robust Preconditioned MinRes Solver for Distributed Time-Periodic Eddy Current Optimal Control Problems.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#KolmbauerL12,https://doi.org/10.1137/110842533 +Andrew V. Knyazev,Toward the Optimal Preconditioned Eigensolver: Locally Optimal Block Preconditioned Conjugate Gradient Method.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#Knyazev01,https://doi.org/10.1137/S1064827500366124 +Michael Schmich,Adaptivity with Dynamic Meshes for Space-Time Finite Element Discretizations of Parabolic Equations.,2008,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#SchmichV08,https://doi.org/10.1137/060670468 +Roy A. Nicolaides,Numerical Methods for a Nonconvex Optimization Problem Modeling Martensitic Microstructure.,1997,18,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc18.html#NicolaidesWW97,https://doi.org/10.1137/S1064827595283471 +Zhilin Li,Maximum Principle Preserving Schemes for Interface Problems with Discontinuous Coefficients.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#LiI01,https://doi.org/10.1137/S1064827500370160 +Wei Gong,A Multilevel Correction Method for Optimal Controls of Elliptic Equations.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#GongXY15,https://doi.org/10.1137/140990255 +Jianxian Qiu,Runge-Kutta Discontinuous Galerkin Method Using WENO Limiters.,2005,26,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc26.html#QiuS05a,https://doi.org/10.1137/S1064827503425298 +Linda R. Petzold,Regularization of Higher-Index Differential-Algebraic Equations with Rank-Deficient Constraints.,1997,18,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc18.html#PetzoldRM97,https://doi.org/10.1137/S1064827593276041 +Yalchin Efendiev,Preconditioning Markov Chain Monte Carlo Simulations Using Coarse-Scale Models.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#EfendievHL06,https://doi.org/10.1137/050628568 +G. Cohen,Mixed Higher Order Spectral Finite Elements for Reissner-Mindlin Equations.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#CohenG07,https://doi.org/10.1137/050642332 +Shlomo Ta'asan,Multigrid Methods for Locating Singularities in Bifurcation Problems.,1990,11,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc11.html#Taasan90,https://doi.org/10.1137/0911003 +Shravan K. Veerapaneni,A High-Order Solver for the Heat Equation in 1D domains with Moving Boundaries.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#VeerapaneniB07,https://doi.org/10.1137/060677896 +Aivars K. Celmins,A Practical Approach to Nonlinear Fuzzy Regression.,1991,12,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc12.html#Celmins91,https://doi.org/10.1137/0912029 +Zhimin Zhang,A New Finite Element Gradient Recovery Method: Superconvergence Property.,2005,26,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc26.html#ZhangN05,https://doi.org/10.1137/S1064827503402837 +Jed Brown,Achieving Textbook Multigrid Efficiency for Hydrostatic Ice Sheet Flow.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#Brown0A13,https://doi.org/10.1137/110834512 +Jeng Yen,An Efficient Newton-Type Iteration for the Numerical Solution of Highly Oscillatory Constrained Multibody Dynamic Systems.,1998,19,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc19.html#YenP98,https://doi.org/10.1137/S1064827596297227 +Senka Vukovic,Upwind Schemes with Exact Conservation Property for One-Dimensional Open Channel Flow Equations.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#VukovicS03,https://doi.org/10.1137/S1064827501392211 +Frédéric Bouillault,The Mortar Edge Element Method in Three Dimensions: Application to Magnetostatics.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#BouillaultBMR03,https://doi.org/10.1137/S1064827501386006 +Ichitaro Yamazaki,Mixed-Precision Cholesky QR Factorization and Its Case Studies on Multicore CPU with Multiple GPUs.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#YamazakiTD15,https://doi.org/10.1137/14M0973773 +Piotr Krzyzanowski,On Block Preconditioners for Nonsymmetric Saddle Point Problems.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#Krzyzanowski01,https://doi.org/10.1137/S1064827599360406 +Heather Wilber,Computing with Functions in Spherical and Polar Geometries II. The Disk.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#WilberTW17,https://doi.org/10.1137/16M1070207 +Petar Liovic,A Newton--Krylov Solver for Remapping-Based Volume-of-Fluid Methods.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#LiovicL08,https://doi.org/10.1137/07069571X +Sergio Blanes,Error Analysis of Splitting Methods for the Time Dependent Schrödinger Equation.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#BlanesCM11,https://doi.org/10.1137/100794535 +Klaus Iglberger,Expression Templates Revisited: A Performance Analysis of Current Methodologies.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#IglbergerHTR12,https://doi.org/10.1137/110830125 +Yvan Notay,Optimal Order Preconditioning of Finite Difference Matrices.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#Notay00a,https://doi.org/10.1137/S1064827597320770 +Wei-Pai Tang,Generalized Schwarz Splittings.,1992,13,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc13.html#Tang92,https://doi.org/10.1137/0913032 +Christopher A. Leibs,A Comparison of Finite Element Spaces for H(div) Conforming First-Order System Least Squares.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#LeibsMM17,https://doi.org/10.1137/16M1082159 +Andrew J. Cleary,Robustness and Scalability of Algebraic Multigrid.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#ClearyFEJMMMR00,https://doi.org/10.1137/S1064827598339402 +Zhong-Zhi Bai,Optimal Parameter in Hermitian and Skew-Hermitian Splitting Method for Certain Two-by-Two Block Matrices.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#BaiGL06,https://doi.org/10.1137/050623644 +Zheng Wang 0011,Orthogonal Rank-One Matrix Pursuit for Low Rank Matrix Completion.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#WangLLFDY15,https://doi.org/10.1137/130934271 +Jacques Huitfeldt,A New Algorithm for Numerical Path Following Applied to an Example from Hydrodynamical Flow.,1990,11,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc11.html#HuitfeldtR90,https://doi.org/10.1137/0911067 +Michele Benzi,Special Section: 2012 Copper Mountain Conference.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#Benzi13,https://doi.org/10.1137/13097348X +Kris G. van der Zee,Goal-Oriented Error Estimation and Adaptivity for Free-Boundary Problems: The Shape-Linearization Approach.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#ZeeBB10a,https://doi.org/10.1137/080741239 +M. V. Rakhuba,Jacobi-Davidson Method on Low-Rank Matrix Manifolds.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#RakhubaO18,https://doi.org/10.1137/17M1123080 +Qian-Yong Chen,Partitions of a Simplex Leading to Accurate Spectral (Finite) Volume Reconstruction.,2006,27,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc27.html#Chen06,https://doi.org/10.1137/030601387 +Joseph M. Maubach,Local Bisection Refinement for N-Simplicial Grids Generated by Reflection.,1995,16,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc16.html#Maubach95,https://doi.org/10.1137/0916014 +John Thuburn,A Framework for Mimetic Discretization of the Rotating Shallow-Water Equations on Arbitrary Polygonal Grids.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#ThuburnC12,https://doi.org/10.1137/110850293 +Carl T. Kelley,Termination of Newton/Chord Iterations and the Method of Lines.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#KelleyMT98,https://doi.org/10.1137/S1064827596303582 +Simon L. Cotter,Error Analysis of Diffusion Approximation Methods for Multiscale Systems in Reaction Kinetics.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#CotterE16,https://doi.org/10.1137/14100052X +Christoph Erath,An Adaptive Nonsymmetric Finite Volume and Boundary Element Coupling Method for a Fluid Mechanics Interface Problem.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#ErathS17,https://doi.org/10.1137/16M1076721 +Shujun Bi,Exact Penalty Decomposition Method for Zero-Norm Minimization Based on MPEC Formulation.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#BiLP14,https://doi.org/10.1137/110855867 +J. Frank Ethridge,A New Fast-Multipole Accelerated Poisson Solver in Two Dimensions.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#EthridgeG01,https://doi.org/10.1137/S1064827500369967 +Jason E. Hicken,Multidimensional Summation-by-Parts Operators: General Theory and Application to Simplex Elements.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#HickenFZ16,https://doi.org/10.1137/15M1038360 +Bertil Gustafsson,Time Compact Difference Methods for Wave Propagation in Discontinuous Media.,2004,26,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc26.html#GustafssonW04,https://doi.org/10.1137/S1064827503425900 +Howard C. Elman,Special Issue on Iterative Methods for Solving Systems of Algebraic Equations.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#Elman00,https://doi.org/10.1137/SJOCE3000021000005000vii000001 +Luca Dieci,Some Stability Aspects of Schemes for the Adaptive Integration of Siff Initial Value Problems.,1991,12,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc12.html#DieciE91,https://doi.org/10.1137/0912069 +Mohsen Zayernouri,Tempered Fractional Sturm-Liouville EigenProblems.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#ZayernouriAK15,https://doi.org/10.1137/140985536 +Aydin Buluç,Parallel Sparse Matrix-Matrix Multiplication and Indexing: Implementation and Experiments.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#BulucG12,https://doi.org/10.1137/110848244 +Dimitri Breda,Pseudospectral Differencing Methods for Characteristic Roots of Delay Differential Equations.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#BredaMV05,https://doi.org/10.1137/030601600 +Piero Colli Franzone,Adaptivity in Space and Time for Reaction-Diffusion Systems in Electrocardiology.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#FranzoneDELP06,https://doi.org/10.1137/050634785 +Vladimir Druskin,Solution of Large Scale Evolutionary Problems Using Rational Krylov Subspaces with Optimized Shifts.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#DruskinKZ09,https://doi.org/10.1137/080742403 +Simone Göttlich,Partial Outer Convexification for Traffic Light Optimization in Road Networks.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#GottlichPZ17,https://doi.org/10.1137/15M1048197 +Robert Jan Labeur,Energy Stable and Momentum Conserving Hybrid Finite Element Method for the Incompressible Navier-Stokes Equations.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#LabeurW12,https://doi.org/10.1137/100818583 +Arnold J. Stromberg,Computing the Exact Least Median of Squares Estimate and Stability Diagnostics in Multiple Linear Regression.,1993,14,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc14.html#Stromberg93,https://doi.org/10.1137/0914076 +Louis F. Rossi,A Comparative Study of Lagrangian Methods Using Axisymmetric and Deforming Blobs.,2006,27,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc27.html#Rossi06,https://doi.org/10.1137/030600679 +Shi Jin,A Hybrid Phase-Flow Method for Hamiltonian Systems with Discontinuous Hamiltonians.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#JinWH08,https://doi.org/10.1137/070709505 +Jingfang Huang,A Fast Direct Solver for Elliptic Partial Differential Equations on Adaptively Refined Meshes.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#HuangG99,https://doi.org/10.1137/S1064827598346235 +Leo Knüsel,Computation of the Noncentral Gamma Distribution.,1996,17,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc17.html#KnuselB96,https://doi.org/10.1137/S1064827594263631 +B. J. C. Baxter,A New Error Estimate of the Fast Gauss Transform.,2002,24,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc24.html#BaxterR02,https://doi.org/10.1137/S1064827501396920 +Alexander Popp,Dual Quadratic Mortar Finite Element Methods for 3D Finite Deformation Contact.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#PoppWGW12,https://doi.org/10.1137/110848190 +Erlendur Steinthorsson,Methods for Reducing Approximate-Factorization Errors in Two- and Three-Factored Schemes.,1993,14,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc14.html#SteinthorssonS93,https://doi.org/10.1137/0914072 +Matthias Bolten,A Bootstrap Algebraic Multilevel Method for Markov Chains.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#BoltenBBFKL11,https://doi.org/10.1137/100791816 +Susanne C. Brenner,Lower Bounds for Two-Level Additive Schwarz Preconditioners with Small Overlap.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#Brenner00,https://doi.org/10.1137/S1064827598336483 +Helmer André Friis,Symmetric Positive Definite Flux-Continuous Full-Tensor Finite-Volume Schemes on Unstructured Cell-Centered Triangular Grids.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#FriisEM08,https://doi.org/10.1137/070692182 +C. Klein,Fourth Order Time-Stepping for Kadomtsev-Petviashvili and Davey-Stewartson Equations.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#KleinR11,https://doi.org/10.1137/100816663 +Amparo Gil,Efficient and Accurate Algorithms for the Computation and Inversion of the Incomplete Gamma Function Ratios.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#GilST12,https://doi.org/10.1137/120872553 +Jeffrey D. Hyman,Conforming Delaunay Triangulation of Stochastically Generated Three Dimensional Discrete Fracture Networks: A Feature Rejection Algorithm for Meshing Strategy.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#HymanGPM14,https://doi.org/10.1137/130942541 +Johnathan M. Bardsley,MCMC-Based Image Reconstruction with Uncertainty Quantification.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#Bardsley12,https://doi.org/10.1137/11085760X +Subhendu Bikash Hazra,Multigrid One-Shot Method for State Constrained Aerodynamic Shape Optimization.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#Hazra08a,https://doi.org/10.1137/070691942 +Alen Alexanderian,A-Optimal Design of Experiments for Infinite-Dimensional Bayesian Linear Inverse Problems with Regularized and#8467*0-Sparsification.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#AlexanderianPSG14,https://doi.org/10.1137/130933381 +Antonio Marquina,Explicit Algorithms for a New Time Dependent Model Based on Level Set Motion for Nonlinear Deblurring and Noise Removal.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#MarquinaO00,https://doi.org/10.1137/S1064827599351751 +Cleve Ashcraft,Compressed Graphs and the Minimum Degree Algorithm.,1995,16,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc16.html#Ashcraft95,https://doi.org/10.1137/0916081 +Veselin Dobrev,Two-Level Convergence Theory for Multigrid Reduction in Time (MGRIT).,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#DobrevKPS17,https://doi.org/10.1137/16M1074096 +Robert J. Renka,Minimal Surfaces and Sobolev Gradients.,1995,16,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc16.html#RenkaN95,https://doi.org/10.1137/0916082 +Gene H. Golub,An Inverse Free Preconditioned Krylov Subspace Method for Symmetric Generalized Eigenvalue Problems.,2002,24,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc24.html#GolubY02,https://doi.org/10.1137/S1064827500382579 +Ashish Bhatt,Structure-preserving Exponential Runge-Kutta Methods.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#BhattM17,https://doi.org/10.1137/16M1071171 +Peter N. Brown,Using Krylov Methods in the Solution of Large-Scale Differential-Algebraic Systems.,1994,15,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc15.html#BrownHP94,https://doi.org/10.1137/0915088 +Marnix Van Daele,Superconvergent Deferred Correction Methods For First Order Systems of Nonlinear Two-Point Boundary Value Problems.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#DaeleC01,https://doi.org/10.1137/S1064827599362004 +Tareq M. Malas,Multicore-Optimized Wavefront Diamond Blocking for Optimizing Stencil Updates.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#MalasHLSWK15,https://doi.org/10.1137/140991133 +Cornelis W. Oosterlee,An Evaluation of Parallel Multigrid as a Solver and a Preconditioner for Singularly Perturbed Problems.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#OosterleeW98,https://doi.org/10.1137/S1064827596302825 +Uri M. Ascher,The Midpoint Scheme and Variants for Hamiltonian Systems: Advantages and Pitfalls.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#AscherR99,https://doi.org/10.1137/S1064827597316059 +Sebastiano Boscarino,High-Order Asymptotic-Preserving Methods for Fully Nonlinear Relaxation Problems.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#BoscarinoLR14,https://doi.org/10.1137/120893136 +Jürgen Götze,On the Parallel Implementation of Jacobi and Kogbetliantz Algorithms.,1994,15,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc15.html#Gotze94,https://doi.org/10.1137/0915081 +Hillel Tal-Ezer,High Degree Polynomial Interpolation in Newton Form.,1991,12,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc12.html#Tal-Ezer91,https://doi.org/10.1137/0912034 +Martin J. Gander,Space-Time Continuous Analysis of Waveform Relaxation for the Heat Equation.,1998,19,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc19.html#GanderS98,https://doi.org/10.1137/S1064827596305337 +Thomas Hauser,Code Optimizations for Complex Microprocessors Applied to CFD Software.,2004,25,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc25.html#HauserMLDH04,https://doi.org/10.1137/S1064827502410530 +Jonathan J. Hu,Toward an h-Independent Algebraic Multigrid Method for Maxwell's Equations.,2006,27,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc27.html#HuTBGR06,https://doi.org/10.1137/040608118 +Tianshi Lu,Dynamic Phase Boundaries for Compressible Fluids.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#LuXSGJ08,https://doi.org/10.1137/060661703 +Matthew F. Causley,Method of Lines Transpose: Energy Gradient Flows Using Direct Operator Inversion for Phase-Field Models.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#CausleyCC17,https://doi.org/10.1137/16M1104123 +Irene M. Gamba,A Fast Spectral Method for the Boltzmann Collision Operator with General Collision Kernels.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#GambaHHH17,https://doi.org/10.1137/16M1096001 +Vladimir A. Kazeev,Multilevel Toeplitz Matrices Generated by Tensor-Structured Vectors and Convolution with Logarithmic Complexity.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#KazeevKT13,https://doi.org/10.1137/110844830 +Junqing Chen,An Adaptive Finite Element Method for the Eddy Current Model with Circuit/Field Couplings.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#ChenCCZ10,https://doi.org/10.1137/080713112 +Michael Thuné,A Numerical Algorithm for Stability Analysis of Difference Methods for Hyperbolic Systems.,1990,11,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc11.html#Thune90,https://doi.org/10.1137/0911004 +John Strain,Locally Corrected Multidimensional Quadrature Rules for Singular Functions.,1995,16,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc16.html#Strain95,https://doi.org/10.1137/0916058 +Ke Chen,Error Equidistribution and Mesh Adaptation.,1994,15,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc15.html#Chen94,https://doi.org/10.1137/0915050 +Chengjian Zhang,General Linear Methods for Volterra Integro-differential Equations with Memory.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#ZhangV06,https://doi.org/10.1137/040607058 +Wim Michiels,An Iterative Method for Computing the Pseudospectral Abscissa for a Class of Nonlinear Eigenvalue Problems.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#MichielsG12,https://doi.org/10.1137/110856113 +K. Ito,The Nonnegative Matrix Factorization: Regularization and Complexity.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#ItoL16,https://doi.org/10.1137/14099841X +Jay Casper,Computational Considerations for the Simulation of Shock-Induced Sound.,1998,19,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc19.html#CasperC98,https://doi.org/10.1137/S1064827595294101 +Michael Weba,Simulation and Approximation of Stochastic Processes by Spline Functions.,1992,13,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc13.html#Weba92,https://doi.org/10.1137/0913063 +Robert Artebrant,Limiter-Free Third Order Logarithmic Reconstruction.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#ArtebrantS06,https://doi.org/10.1137/040620187 +Zhimin Peng,ARock: An Algorithmic Framework for Asynchronous Parallel Coordinate Updates.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#PengXYY16,https://doi.org/10.1137/15M1024950 +Daniele Bigoni,Spectral Tensor-Train Decomposition.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#BigoniEM16,https://doi.org/10.1137/15M1036919 +Zhaojun Bai,Dimension Reduction of Large-Scale Second-Order Dynamical Systems via a Second-Order Arnoldi Method.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#BaiS05,https://doi.org/10.1137/040605552 +Ewout van den Berg,Probing the Pareto Frontier for Basis Pursuit Solutions.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#BergF08,https://doi.org/10.1137/080714488 +Zlatko Drmac,A New Selection Operator for the Discrete Empirical Interpolation Method - Improved A Priori Error Bound and Extensions.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#DrmacG16,https://doi.org/10.1137/15M1019271 +Xuejun Xu,A New Divergence-Free Interpolation Operator with Applications to the Darcy--Stokes--Brinkman Equations.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#XuZ10,https://doi.org/10.1137/090751049 +Rolf Krause,A Parallel Approach to the Variational Transfer of Discrete Fields between Arbitrarily Distributed Unstructured Finite Element Meshes.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#KrauseZ16,https://doi.org/10.1137/15M1008361 +Wai Sun Don,Accuracy Enhancement for Higher Derivatives using Chebyshev Collocation and a Mapping Technique.,1997,18,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc18.html#DonS97,https://doi.org/10.1137/S1064827594274607 +Yi Jiang,Parametrized Maximum Principle Preserving Limiter for Finite Difference WENO Schemes Solving Convection-Dominated Diffusion Equations.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#JiangX13,https://doi.org/10.1137/130924937 +James Demmel,Communication-optimal Parallel and Sequential QR and LU Factorizations.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#DemmelGHL12,https://doi.org/10.1137/080731992 +Yuichiro Miki,A2ILU: Auto-accelerated ILU Preconditioner for Sparse Linear Systems.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#MikiW13,https://doi.org/10.1137/110842685 +Nicola Mastronardi,Computing the Smallest Eigenpair of a Symmetric Positive Definite Toeplitz Matrix.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#MastronardiB99,https://doi.org/10.1137/S106482759732229X +Gerrit Welper,Interpolation of Functions with Parameter Dependent Jumps by Transformed Snapshots.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#Welper17,https://doi.org/10.1137/16M1059904 +Wenlong Dai,A High-Order Godunov-Type Scheme for Shock Interactions in Ideal Magnetohydrodynamics.,1997,18,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc18.html#DaiW97,https://doi.org/10.1137/S1064827593257729 +Giacomo Mazzi,Dimensional Reductions for the Computation of Time-Dependent Quantum Expectations.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#MazziL11,https://doi.org/10.1137/100788148 +Lourenço Beirão da Veiga,Adaptive Selection of Primal Constraints for Isogeometric BDDC Deluxe Preconditioners.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#VeigaPSWZ17,https://doi.org/10.1137/15M1054675 +Clark R. Dohrmann,On the Design of Small Coarse Spaces for Domain Decomposition Algorithms.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#DohrmannW17,https://doi.org/10.1137/17M1114272 +Per Christian Hansen,Truncated Singular Value Decomposition Solutions to Discrete Ill-Posed Problems with Ill-Determined Numerical Rank.,1990,11,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc11.html#Hansen90,https://doi.org/10.1137/0911028 +Miguel F. Anjos,A Modified Broyden Update with Interpolation.,1993,14,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc14.html#Anjos93,https://doi.org/10.1137/0914080 +M. Chanaud,A Parallel Full Geometric Multigrid Solver for Time Harmonic Maxwell Problems.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#ChanaudGGPR14,https://doi.org/10.1137/130909512 +Takumi Washio,Overlapped Multicolor MILU Preconditioning.,1995,16,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc16.html#WashioH95,https://doi.org/10.1137/0916039 +Anthony D. Holmes,A Front-Fixing Finite Element Method for the Valuation of American Options.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#HolmesY08,https://doi.org/10.1137/070694442 +Larisa Beilina,An Adaptive Hybrid FEM/FDM Method for an Inverse Scattering Problem in Scanning Acoustic Microscopy.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#BeilinaC06,https://doi.org/10.1137/050631252 +Artem Napov,Algebraic Multigrid for Moderate Order Finite Elements.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#NapovN14,https://doi.org/10.1137/130922616 +Austin R. Benson,A Parallel Directional Fast Multipole Method.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#BensonPTEY14,https://doi.org/10.1137/130945569 +Ivar Lie,Using Implicit ODE Methods with Iterative Linear Equation Solvers in Spectral Methods.,1993,14,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc14.html#Lie93,https://doi.org/10.1137/0914071 +Oliver G. Ernst,Efficient Solvers for a Linear Stochastic Galerkin Mixed Formulation of Diffusion Problems with Random Data.,2009,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#ErnstPSU09,https://doi.org/10.1137/070705817 +Minghao W. Rostami,New Algorithms for Computing the Real Structured Pseudospectral Abscissa and the Real Stability Radius of Large and Sparse Matrices.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#Rostami15,https://doi.org/10.1137/140975413 +Yali Amit,A Nonlinear Variational Problem for Image Matching.,1994,15,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc15.html#Amit94,https://doi.org/10.1137/0915014 +Yuanchang Sun,Underdetermined Sparse Blind Source Separation of Nonnegative and Partially Overlapped Data.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#SunX11,https://doi.org/10.1137/100788434 +Alfio Borzì,An Algebraic Multigrid Method for a Class of Elliptic Differential Systems.,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#BorziB03,https://doi.org/10.1137/S1064827502411250 +Jonathan J. Crofts,Efficient Detection of Periodic Orbits in Chaotic Systems by Stabilizing Transformations.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#CroftsD06,https://doi.org/10.1137/050623401 +Romain de Loubens,Error Analysis of an Adaptive Implicit Scheme for Hyperbolic Conservation Laws.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#LoubensRT09,https://doi.org/10.1137/080724502 +Stefania Bellavia,A Globally Convergent Newton-GMRES Subspace Method for Systems of Nonlinear Equations.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#BellaviaM01,https://doi.org/10.1137/S1064827599363976 +Chin-Tien Wu,Analysis and Comparison of Geometric and Algebraic Multigrid for Convection-Diffusion Equations.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#WuE06,https://doi.org/10.1137/060662940 +Long Lee,An Immersed Interface Method for Incompressible Navier-Stokes Equations.,2003,25,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc25.html#LeeL03,https://doi.org/10.1137/S1064827502414060 +James S. Warsa,Solution ofthe Discontinuous P1 Equations in Two-Dimensional Cartesian Geometry with Two-Level Preconditioning.,2003,24,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc24.html#WarsaWM03,https://doi.org/10.1137/S1064827500374583 +Daniel Kressner,Preconditioned Low-rank Riemannian Optimization for Linear Systems with Tensor Product Structure.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#KressnerSV16,https://doi.org/10.1137/15M1032909 +Adam Chacon,A Parallel Two-Scale Method for Eikonal Equations.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#ChaconV15,https://doi.org/10.1137/12088197X +Toni Lassila,A Reduced Basis Model with Parametric Coupling for Fluid-Structure Interaction Problems.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#LassilaQR12,https://doi.org/10.1137/110819950 +Christian H. Bischof,A Parallel Algorithm for the Sylvester Observer Equation.,1996,17,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc17.html#BischofDP96,https://doi.org/10.1137/S1064827591223276 +Charalampos Tsitouras,Cheap Error Estimation for Runge-Kutta Methods.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#TsitourasP99,https://doi.org/10.1137/S1064827596302230 +Kuan Xu,A Fast Algorithm for the Convolution of Functions with Compact Support Using Fourier Extensions.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#XuAW17,https://doi.org/10.1137/17M1114764 +Wing Lok Wan,A Phase Error Analysis of Multigrid Methods for Hyperbolic Equations.,2003,25,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc25.html#WanC03,https://doi.org/10.1137/S106482750240933X +Yana Di,Moving Mesh Finite Element Methods for the Incompressible Navier-Stokes Equations.,2005,26,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc26.html#DiLTZ05,https://doi.org/10.1137/030600643 +Jiangyong Hou,A Dual-Porosity-Stokes Model and Finite Element Method for Coupling Dual-Porosity Flow and Free Flow.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#HouQHGWB16,https://doi.org/10.1137/15M1044072 +Alexandre Ern,Towards Polyalgorithmic Linear System Solvers for Nonlinear Elliptic Problems.,1994,15,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc15.html#ErnGKS94,https://doi.org/10.1137/0915044 +Darko Volkov,Accurate and Efficient Boundary Integral Methods for Electrified Liquid Bridge Problems.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#VolkovPP05,https://doi.org/10.1137/040604352 +Assefaw Hadish Gebremedhin,New Acyclic and Star Coloring Algorithms with Application to Computing Hessians.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#GebremedhinTMP07,https://doi.org/10.1137/050639879 +Ricardo Cortez,On the Accuracy of Impulse Methods for Fluid Flow.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#Cortez98,https://doi.org/10.1137/S1064827595293570 +Jennifer A. Scott,Solving Mixed Sparse-Dense Linear Least-Squares Problems by Preconditioned Iterative Methods.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#ScottT17,https://doi.org/10.1137/16M1108339 +Ray S. Tuminaro,Analysis of the Multigrid FMV Cycle on Large-Scale Parallel Machines.,1993,14,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc14.html#TuminaroW93,https://doi.org/10.1137/0914069 +Gang Bao,Numerical Solution of Inverse Scattering Problems with Multi-experimental Limited Aperture Data.,2003,25,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc25.html#BaoL03,https://doi.org/10.1137/S1064827502409705 +Kris G. van der Zee,Goal-Oriented Error Estimation and Adaptivity for Free-Boundary Problems: The Domain-Map Linearization Approach.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#ZeeBB10,https://doi.org/10.1137/080741227 +Mohammed Lemou,Implicit Schemes for the Fokker-Planck-Landau Equation.,2005,27,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc27.html#LemouM05,https://doi.org/10.1137/040609422 +Emmanuel Agullo,Robust Memory-Aware Mappings for Parallel Multifrontal Factorizations.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#AgulloABGLR16,https://doi.org/10.1137/130938505 +E. H. van Brummelen,On the Nonnormality of Subiteration for a Fluid-Structure-Interaction Problem.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#BrummelenB05,https://doi.org/10.1137/S1064827503431430 +Philip L. Roe,Sonic Flux Formulae.,1992,13,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc13.html#Roe92,https://doi.org/10.1137/0913034 +Yousef Saad,Multilevel ILU With Reorderings for Diagonal Dominance.,2005,27,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc27.html#Saad05,https://doi.org/10.1137/030602733 +Mark H. Carpenter,Entropy Stable Spectral Collocation Schemes for the Navier-Stokes Equations: Discontinuous Interfaces.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#CarpenterFNF14,https://doi.org/10.1137/130932193 +Giacomo Dimarco,Fluid Solver Independent Hybrid Methods for Multiscale Kinetic Equations.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#DimarcoP10,https://doi.org/10.1137/080730585 +Megan E. Farquhar,GPU Accelerated Algorithms for Computing Matrix Function Vector Products with Applications to Exponential Integrators and Fractional Diffusion.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#FarquharMYT16,https://doi.org/10.1137/15M1021672 +Diederik R. Fokkema,Accelerated Inexact Newton Schemes for Large Systems of Nonlinear Equations.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#FokkemaSV98a,https://doi.org/10.1137/S1064827595296148 +Carlo L. Bottasso,Time-Step-Size-Independent Conditioning and Sensitivity to Perturbations in the Numerical Solution of Index Three Differential Algebraic Equations.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#BottassoBC07,https://doi.org/10.1137/050638503 +Yasuhiro Wada,An Accurate and Robust Flux Splitting Scheme for Shock and Contact Discontinuities.,1997,18,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc18.html#WadaL97,https://doi.org/10.1137/S1064827595287626 +Gerard L. G. Sleijpen,Exploiting Multilevel Preconditioning Techniques in Eigenvalue Computations.,2004,25,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc25.html#SleijpenW04,https://doi.org/10.1137/S1064827599361059 +Ilias Bilionis,Multidimensional Adaptive Relevance Vector Machines for Uncertainty Quantification.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#BilionisZ12,https://doi.org/10.1137/120861345 +James M. Banoczi,A Fast Multilevel Algorithm for the Solution of Nonlinear Systems of Conductive-Radiative Heat Transfer Equations.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#BanocziK98,https://doi.org/10.1137/S1064827596302965 +Leslie Greengard,The Fast Gauss Transform.,1991,12,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc12.html#GreengardS91,https://doi.org/10.1137/0912004 +Yao Zhu,Erasure Coding for Fault-Oblivious Linear System Solvers.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#ZhuGG17,https://doi.org/10.1137/15M1041511 +Ralf Hartmann,Multitarget Error Estimation and Adaptivity in Aerodynamic Flow Simulations.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#Hartmann08,https://doi.org/10.1137/070710962 +D. S. Britt,A High-Order Numerical Method for the Helmholtz Equation with Nonstandard Boundary Conditions.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#BrittTT13,https://doi.org/10.1137/120902689 +Yong-Kang Zhu,Correct Rounding and a Hybrid Approach to Exact Floating-Point Summation.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#ZhuH09,https://doi.org/10.1137/070710020 +Adrianna Gillman,A Direct Solver with O(N) Complexity for Variable Coefficient Elliptic PDEs Discretized via a High-Order Composite Spectral Collocation Method.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#GillmanM14,https://doi.org/10.1137/130918988 +Jean-Philippe Brunet,Hypercube Algorithms for Direct N-Body Solvers for Different Granularities.,1993,14,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc14.html#BrunetME93,https://doi.org/10.1137/0914068 +Alan H. Vermeulen,Integrating Products of B-Splines.,1992,13,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc13.html#VermeulenBH92,https://doi.org/10.1137/0913060 +Reiichiro Kawai,Measuring Impact of Random Jumps Without Sample Path Generation.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#Kawai15,https://doi.org/10.1137/151004070 +Carlo Janna,Enhanced Block FSAI Preconditioning Using Domain Decomposition Techniques.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#JannaFG13,https://doi.org/10.1137/120880860 +Daniel Köster,Numerical Simulation of Acoustic Streaming on Surface Acoustic Wave-driven Biochips.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#Koster07,https://doi.org/10.1137/060676623 +Francesc Pons Llopis,Particle Filtering for Stochastic Navier-Stokes Signal Observed with Linear Additive Noise.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#LlopisKBJ18,https://doi.org/10.1137/17M1151900 +Günay Dogan,A Variational Shape Optimization Approach for Image Segmentation with a Mumford--Shah Functional.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#DoganMN08,https://doi.org/10.1137/070692066 +Scott Shaobing Chen,Atomic Decomposition by Basis Pursuit.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#ChenDS98,https://doi.org/10.1137/S1064827596304010 +Elena Braverman,A Hierarchical 3-D Direct Helmholtz Solver by Domain Decomposition and Modified Fourier Method.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#BravermanIA05,https://doi.org/10.1137/S1064827502417039 +Alexander Y. Suhov,Artificial Boundary Conditions for the Simulation of the Heat Equation in an Infinite Domain.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#SuhovD11,https://doi.org/10.1137/100794171 +Robert D. Russell,MOVCOL4: A Moving Mesh Code for Fourth-Order Time-Dependent Partial Differential Equations.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#RussellWX07,https://doi.org/10.1137/050643167 +Richard G. Carter,Numerical Experience with a Class of Algorithms for Nonlinear Optimization Using Inexact Function and Gradient Information.,1993,14,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc14.html#Carter93,https://doi.org/10.1137/0914023 +John Strain,The Fast Gauss Transform with Variable Scales.,1991,12,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc12.html#Strain91,https://doi.org/10.1137/0912059 +Peter L. W. Man,Coupling Algorithms for Calculating Sensitivities of Smoluchowski's Coagulation Equation.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#ManNBK10,https://doi.org/10.1137/09075679X +Simon J. A. Malham,Stochastic Lie Group Integrators.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#MalhamW08,https://doi.org/10.1137/060666743 +Tugrul Dayar,State Space Orderings for Gauss-Seidel in Markov Chains Revisited.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#Dayar98,https://doi.org/10.1137/S1064827596303612 +Zhiping Mao,Hermite Spectral Methods for Fractional PDEs in Unbounded Domains.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#MaoS17,https://doi.org/10.1137/16M1097109 +Man-Chung Yeung,ML(k)BiCGSTAB: A BiCGSTAB Variant Based on Multiple Lanczos Starting Vectors.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#YeungC99,https://doi.org/10.1137/S1064827597321581 +Tony Shardlow,Splitting for Dissipative Particle Dynamics.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#Shardlow03,https://doi.org/10.1137/S1064827501392879 +Wanrong Cao,Time-Splitting Schemes for Fractional Differential Equations I: Smooth Solutions.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#CaoZK15a,https://doi.org/10.1137/140996495 +Xunnian Yang,Dynamic Evaluation of Free-Form Curves and Surfaces.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#YangH17,https://doi.org/10.1137/16M1058911 +Claude Pommerell,Memory Aspects and Performance of Iterative Solvers.,1994,15,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc15.html#PommerellF94,https://doi.org/10.1137/0915031 +David J. Torres,Pseudospectral Solution of the Two-Dimensional Navier-Stokes Equations in a Disk.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#TorresC99,https://doi.org/10.1137/S1064827597330157 +Hadrien Montanelli,Fourth-Order Time-Stepping For Stiff PDEs On The Sphere.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#MontanelliN18,https://doi.org/10.1137/17M1112728 +Anthony J. Roberts,General Tooth Boundary Conditions for Equation Free Modeling.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#RobertsK07,https://doi.org/10.1137/060654554 +Peter Kunkel,A New Software Package for Linear Differential-Algebraic Equations.,1997,18,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc18.html#KunkelMRW97,https://doi.org/10.1137/S1064827595286347 +Denis Demidov,Programming CUDA and OpenCL: A Case Study Using Modern C++ Libraries.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#DemidovARG13,https://doi.org/10.1137/120903683 +Jack Poulson,A Parallel Butterfly Algorithm.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#PoulsonDMY14,https://doi.org/10.1137/130921544 +N. B. Petrovskaya,Modification of A Finite Volume Scheme for Laplace's Equation.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#Petrovskaya01,https://doi.org/10.1137/S1064827500368925 +Rémi Abgrall,Staggered Grid Residual Distribution Scheme for Lagrangian Hydrodynamics.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#AbgrallT17,https://doi.org/10.1137/16M1078781 +Benedict J. Leimkuhler,Adaptive Thermostats for Noisy Gradient Systems.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#LeimkuhlerS16,https://doi.org/10.1137/15M102318X +T. W. Tee,A Rational Spectral Collocation Method with Adaptively Transformed Chebyshev Grid Points.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#TeeT06,https://doi.org/10.1137/050641296 +Peter Sonneveld,IDR(s): A Family of Simple and Fast Algorithms for Solving Large Nonsymmetric Systems of Linear Equations.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#SonneveldG08,https://doi.org/10.1137/070685804 +Wei Guo 0004,A Sparse Grid Discontinuous Galerkin Method for High-Dimensional Transport Equations and Its Application to Kinetic Simulations.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#GuoC16,https://doi.org/10.1137/16M1060017 +Bernard Bialecki,A Legendre Spectral Galerkin Method for the Biharmonic Dirichlet Problem.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#BialeckiK01,https://doi.org/10.1137/S1064827598342407 +A. N. Yzelman,Cache-Oblivious Sparse Matrix--Vector Multiplication by Using Sparse Matrix Partitioning Methods.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#YzelmanB09,https://doi.org/10.1137/080733243 +Tomoya Takeuchi,Tikhonov Regularization by a Reproducing Kernel Hilbert Space for the Cauchy Problem for an Elliptic Equation.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#TakeuchiY08,https://doi.org/10.1137/070684793 +Roy W. Melton,An Analysis of the Spectral Transform Operations in Climate and Weather Models.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#MeltonW08,https://doi.org/10.1137/060655109 +Peter Sonneveld,On the Convergence Behavior of IDR(s) and Related Methods.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#Sonneveld12,https://doi.org/10.1137/100789889 +Lei Zhang 0017,Optimization-based Shrinking Dimer Method for Finding Transition States.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#0017DZ16,https://doi.org/10.1137/140972676 +Yuri A. Kuznetsov,Numerical Normal Forms for Codim 2 Bifurcations of Fixed Points with at Most Two Critical Eigenvalues.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#KuznetsovM05,https://doi.org/10.1137/030601508 +Andreas Stathopoulos,Hierarchical Probing for Estimating the Trace of the Matrix Inverse on Toroidal Lattices.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#StathopoulosLO13,https://doi.org/10.1137/120881452 +Alfio Quarteroni,Domain Decomposition Methods for Systems of Conservation Laws: Spectral Collocation Approximations.,1990,11,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc11.html#Quarteroni90,https://doi.org/10.1137/0911058 +Ahmed Khamayseh,Quasi-Orthogonal Grids with Impedance Matching.,2000,22,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc22.html#KhamaysehH00,https://doi.org/10.1137/S1064827599358613 +Lehel Banjai,Multistep and Multistage Convolution Quadrature for the Wave Equation: Algorithms and Experiments.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#Banjai10,https://doi.org/10.1137/090775981 +Athanasios C. Antoulas,Model Reduction of Bilinear Systems in the Loewner Framework.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#AntoulasGI16,https://doi.org/10.1137/15M1041432 +Hong Wang,An Approximation to Miscible Fluid Flows in Porous Media with Point Sources and Sinks by an Eulerian-Lagrangian Localized Adjoint Method and Mixed Finite Element Methods.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#WangLELQ00,https://doi.org/10.1137/S1064827598349215 +Hale Erten,Quality Triangulations with Locally Optimal Steiner Points.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#ErtenU09,https://doi.org/10.1137/080716748 +Michael K. Ng,Approximate Inverse Circulant-plus-Diagonal Preconditioners for Toeplitz-plus-Diagonal Matrices.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#NgP10,https://doi.org/10.1137/080720280 +Donna A. Calhoun,A Finite Volume Method for Solving Parabolic Equations on Logically Cartesian Curved Surface Meshes.,2009,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#CalhounH09,https://doi.org/10.1137/08073322X +Christopher A. Wong,Bilinear Quadratures for Inner Products.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#Wong16,https://doi.org/10.1137/15M1042048 +June-Yub Lee,A Fast Adaptive Numerical Method for Stiff Two-Point Boundary Value Problems.,1997,18,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc18.html#LeeG97,https://doi.org/10.1137/S1064827594272797 +Paola Brianzi,Improvement of Space-Invariant Image Deblurring by Preconditioned Landweber Iterations.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#BrianziBE08,https://doi.org/10.1137/050636024 +Todd F. Dupont,Superconvergence and Postprocessing of Fluxes from Lowest-Order Mixed Methods on Triangles and Tetrahedra.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#DupontK98,https://doi.org/10.1137/S1064827595280417 +Martin Berzins,Temporal Error Control for Convection-Dominated Equations in Two Space Dimensions.,1995,16,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc16.html#Berzins95,https://doi.org/10.1137/0916036 +Ahmed Hefny,Rows versus Columns: Randomized Kaczmarz or Gauss-Seidel for Ridge Regression.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#HefnyNR17,https://doi.org/10.1137/16M1077891 +Roland Glowinski,Operator-Splitting Based Fast Sweeping Methods for Isotropic Wave Propagation in a Moving Fluid.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#GlowinskiLQ16,https://doi.org/10.1137/15M1043868 +Wade S. Martinson,A Differentiation Index for Partial Differential-Algebraic Equations.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#MartinsonB00,https://doi.org/10.1137/S1064827598332229 +Frank Günther,A Cache-Aware Algorithm for PDEs on Hierarchical Data Structures Based on Space-Filling Curves.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#GuntherMPZ06,https://doi.org/10.1137/040604078 +John E. Tolsma,Hidden Discontinuities and Parametric Sensitivity Calculations.,2002,23,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc23.html#TolsmaB02,https://doi.org/10.1137/S106482750037281X +Achi Brandt,Bootstrap AMG.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#BrandtBKL11,https://doi.org/10.1137/090752973 +E. S. Coakley,A Fast Randomized Algorithm for Orthogonal Projection.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#CoakleyRT11,https://doi.org/10.1137/090779656 +Danail Vassilev,Coupling Stokes--Darcy Flow with Transport.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#VassilevY09,https://doi.org/10.1137/080732146 +E. Morano,Coarsening Strategies for Unstructured Multigrid Techniques with Application to Anisotropic Problems.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#MoranoMV98,https://doi.org/10.1137/S1064827595287638 +Ming Gu 0002,Efficient Algorithms for Computing a Strong Rank-Revealing QR Factorization.,1996,17,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc17.html#GuE96,https://doi.org/10.1137/0917055 +Paris Perdikaris,Multifidelity Information Fusion Algorithms for High-Dimensional Systems and Massive Data sets.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#PerdikarisVK16,https://doi.org/10.1137/15M1055164 +Ionut Danaila,Computation of Ground States of the Gross-Pitaevskii Functional via Riemannian Optimization.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#DanailaP17,https://doi.org/10.1137/17M1121974 +Luigi Brugnano,Iterative Solution of Piecewise Linear Systems and Applications to Flows in Porous Media.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#BrugnanoC09,https://doi.org/10.1137/08072749X +Marc Garbey,A Parallel Schwarz Method for a Convection-Diffusion Problem.,2000,22,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc22.html#GarbeyKV00,https://doi.org/10.1137/S1064827598335854 +Didier Lucor,Adaptive Generalized Polynomial Chaos for Nonlinear Random Oscillators.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#LucorK04,https://doi.org/10.1137/S1064827503427984 +Andrew J. Christlieb,Positivity-Preserving Finite Difference Weighted ENO Schemes with Constrained Transport for Ideal Magnetohydrodynamic Equations.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#ChristliebLTX15,https://doi.org/10.1137/140971208 +Andreas Frommer,Adaptive Aggregation-Based Domain Decomposition Multigrid for the Lattice Wilson-Dirac Operator.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#FrommerKKLR14,https://doi.org/10.1137/130919507 +Michiel E. Hochstenbach,A Jacobi-Davidson Type SVD Method.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#Hochstenbach01,https://doi.org/10.1137/S1064827500372973 +Tetsuya Misawa,A Lie Algebraic Approach to Numerical Integration of Stochastic Differential Equations.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#Misawa01,https://doi.org/10.1137/S106482750037024X +Patrick E. Farrell,Automated Derivation of the Adjoint of High-Level Transient Finite Element Programs.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#FarrellHFR13,https://doi.org/10.1137/120873558 +C. R. Dietrich,Fast and Exact Simulation of Stationary Gaussian Processes through Circulant Embedding of the Covariance Matrix.,1997,18,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc18.html#DietrichN97,https://doi.org/10.1137/S1064827592240555 +Evangelia Kalligiannaki,Spatial Two-Level Interacting Particle Simulations and Information Theory-Based Error Quantification.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#KalligiannakiKP14,https://doi.org/10.1137/120887060 +Simon N. Wood,Monotonic Smoothing Splines Fitted by Cross Validation.,1994,15,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc15.html#Wood94,https://doi.org/10.1137/0915069 +Irad Yavneh,A Method for Devising Efficient Multigrid Smoothers for Complicated PDE Systems.,1993,14,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc14.html#Yavneh93,https://doi.org/10.1137/0914084 +A. Wacher,String Gradient Weighted Moving Finite Elements in Multiple Dimensions with Applications in Two Dimensions.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#WacherS07,https://doi.org/10.1137/040619557 +Sara N. Pollock,An Improved Method for Solving Quasi-linear Convection Diffusion Problems on a Coarse Mesh.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#Pollock16,https://doi.org/10.1137/15M1007823 +Alex H. Barnett,Spectrally Accurate Quadratures for Evaluation of Layer Potentials Close to the Boundary for the 2D Stokes and Laplace Equations.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#BarnettWV15,https://doi.org/10.1137/140990826 +Emanuel H. Rubensson,Interior Eigenvalues from Density Matrix Expansions in Quantum Mechanical Molecular Dynamics.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#RubenssonN14,https://doi.org/10.1137/130911585 +Charles Audet,Enumeration of All Extreme Equilibria of Bimatrix Games.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#AudetHJS01,https://doi.org/10.1137/S1064827598339086 +Bruno Carpentieri,Additive and Multiplicative Two-Level Spectral Preconditioning for General Linear Systems.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#CarpentieriGG07,https://doi.org/10.1137/060654906 +Eric de Sturler,Nonlinear Parametric Inversion Using Interpolatory Model Reduction.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#SturlerGKCBO15,https://doi.org/10.1137/130946320 +José A. Carrillo,Nonoscillatory Interpolation Methods Applied to Vlasov-Based Models.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#CarrilloV07,https://doi.org/10.1137/050644549 +Charles-Edouard Bréhier,High Order Integrator for Sampling the Invariant Distribution of a Class of Parabolic Stochastic PDEs with Additive Space-Time Noise.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#BrehierV16,https://doi.org/10.1137/15M1021088 +John W. Barrett 0001,Parametric Approximation of Willmore Flow and Related Geometric Evolution Equations.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#BarrettGN08,https://doi.org/10.1137/070700231 +Cécile Piret,A Radial Basis Function based Frames Strategy for Bypassing the Runge Phenomenon.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#Piret16,https://doi.org/10.1137/15M1040943 +Mario Berljafa,Parallelization of the Rational Arnoldi Algorithm.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#BerljafaG17a,https://doi.org/10.1137/16M1079178 +Stéphane Lanteri,Analysis of a Generalized Dispersive Model Coupled to a DGTD Method with Application to Nanophotonics.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#LanteriSV17,https://doi.org/10.1137/15M105207X +John M. Conroy,A Parallel Inertia Method for Finding Eigenvalues on Vector and SIMD Architectures.,1995,16,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc16.html#ConroyP95,https://doi.org/10.1137/0916031 +Hayden Schaeffer,Real-Time Adaptive Video Compression.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#SchaefferYZO15,https://doi.org/10.1137/130937792 +Susana Serna,A Class of Extended Limiters Applied to Piecewise Hyperbolic Methods.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#Serna06,https://doi.org/10.1137/040611811 +Klaus Erhard,A Numerical Study of the Probe Method.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#ErhardP06,https://doi.org/10.1137/040607149 +Rodolfo Bermejo,Modified Lagrange-Galerkin Methods to Integrate Time Dependent Incompressible Navier-Stokes Equations.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#BermejoS15,https://doi.org/10.1137/140973967 +Andrew T. Ogielski,Sparse Matrix Computations on Parallel Processor Arrays.,1993,14,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc14.html#OgielskiA93,https://doi.org/10.1137/0914033 +Shivakumar Kameswaran,Advantages of Nonlinear-Programming-Based Methodologies for Inequality Path-Constrained Optimal Control Problems - A Numerical Study.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#KameswaranB08,https://doi.org/10.1137/050644938 +Stephen J. Wright,A Collection of Problems for Which Gaussian Elimination with Partial Pivoting is Unstable.,1993,14,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc14.html#Wright93,https://doi.org/10.1137/0914013 +Jonathan D. Hogg,A Fast Dense Triangular Solve in CUDA.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#Hogg13,https://doi.org/10.1137/12088358X +Zhaojun Bai,A Symmetric Band Lanczos Process Based on Coupled Recurrences and Some Applications.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#BaiF01,https://doi.org/10.1137/S1064827500371773 +Carmen Rodrigo,Accuracy Measures and Fourier Analysis for the Full Multigrid Algorithm.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#RodrigoGOY10,https://doi.org/10.1137/100786101 +Stephen J. Wright,Stable Parallel Algorithms for Two-Point Boundary Value Problems.,1992,13,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc13.html#Wright92,https://doi.org/10.1137/0913044 +Janine C. Bennett,Trigger Detection for Adaptive Scientific Workflows Using Percentile Sampling.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#BennettBCPSS16,https://doi.org/10.1137/15M1027942 +Faidra Stavropoulou,Parametrization of Random Vectors in Polynomial Chaos Expansions via Optimal Transportation.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#StavropoulouM15,https://doi.org/10.1137/130949063 +Kokou B. Dossou,A Newton-GMRES Approach for the Analysis of the Postbuckling Behavior of the Solutions of the von Kármán Equations.,2003,24,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc24.html#DossouP03,https://doi.org/10.1137/S1064827500376144 +Sasanka Are,Multibody Interactions in Coarse-Graining Schemes for Extended Systems.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#AreKPR08,https://doi.org/10.1137/080713276 +Clive Temperton,A Generalized Prime Factor FFT Algorithm for any N = 2p 3q 5r.,1992,13,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc13.html#Temperton92,https://doi.org/10.1137/0913039 +Stephen J. Wright,Adaptation of a Two-Point Boundary Value Problem Solver to a Vector-Multiprocessor Environment.,1990,11,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc11.html#WrightP90,https://doi.org/10.1137/0911025 +Ya Zhang,Multiscale Computations for 3D Time-Dependent Maxwell's Equations in Composite Materials.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#ZhangCW10,https://doi.org/10.1137/080740337 +Mani Mehra,An Adaptive Multilevel Wavelet Solver for Elliptic Equations on an Optimal Spherical Geodesic Grid.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#MehraK08,https://doi.org/10.1137/070689607 +Barry Lee,Improved Multiple-Coarsening Methods for Sn Discretizations of the Boltzmann Equation.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#Lee10,https://doi.org/10.1137/080742476 +Claude Pommerell,Migration of Vectorized Iterative Solvers to Distributed-Memory Architectures.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#PommerellR96,https://doi.org/10.1137/0917017 +Haifeng Qian,Stochastic Preconditioning for Diagonally Dominant Matrices.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#QianS08,https://doi.org/10.1137/07068713X +Jeroen A. S. Witteveen,A Monomial Chaos Approach for Efficient Uncertainty Quantification in Nonlinear Problems.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#WitteveenB08,https://doi.org/10.1137/06067287X +Geunseop Lee,Fast High-Resolution Image Reconstruction Using Tikhonov Regularization Based Total Least Squares.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#LeeFB13,https://doi.org/10.1137/110850591 +Jean-Philippe Brunet,Erratum: Hypercube Algorithms for Direct N-Body Solvers for Different Granularities.,1994,15,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc15.html#BrunetEM94,https://doi.org/10.1137/0915017 +Raymond H. Chan,Toeplitz-Circulant Preconditioners for Toeplitz Systems and their Applications to Queueing Networks with Batch Arrivals.,1996,17,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc17.html#ChanC96,https://doi.org/10.1137/S1064827594266581 +Per-Gunnar Martinsson,A Randomized Blocked Algorithm for Efficiently Computing Rank-revealing Factorizations of Matrices.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#MartinssonV16,https://doi.org/10.1137/15M1026080 +Hans De Sterck,Numerical Conservation Properties of H(div)-Conforming Least-Squares Finite Element Methods for the Burgers Equation.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#SterckMMO05,https://doi.org/10.1137/S1064827503430758 +Tien-Yien Li,The Homotopy Continuation Algorithm for the Real Nonsymmetric Eigenproblem: Further Development and Implementation.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#LiZ99,https://doi.org/10.1137/S1064827597318228 +James Martin,A Stochastic Newton MCMC Method for Large-Scale Statistical Inverse Problems with Application to Seismic Inversion.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#MartinWBG12,https://doi.org/10.1137/110845598 +Elias Jarlebring,The Waveguide Eigenvalue Problem and the Tensor Infinite Arnoldi Method.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#JarlebringMR17,https://doi.org/10.1137/15M1044667 +Jie Shen 0001,Efficient Spectral-Galerkin Method II. Direct Solvers of Second- and Fourth-Order Equations Using Chebyshev Polynomials.,1995,16,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc16.html#Shen95,https://doi.org/10.1137/0916006 +Xiaoying Dai,Stable Parareal in Time Method for First- and Second-Order Hyperbolic Systems.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#DaiM13,https://doi.org/10.1137/110861002 +Colin B. Macdonald,The Implicit Closest Point Method for the Numerical Solution of Partial Differential Equations on Surfaces.,2009,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#MacdonaldR09,https://doi.org/10.1137/080740003 +Ludvig af Klinteberg,Adaptive Quadrature by Expansion for Layer Potential Evaluation in Two Dimensions.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#KlintebergT18,https://doi.org/10.1137/17M1121615 +øistein Bøe,A Monotone Petrov-Galerkin Method for Quasilinear Parabolic Differential Equations.,1993,14,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc14.html#Boe93,https://doi.org/10.1137/0914064 +Fei Liu,Sparsify and Sweep: An Efficient Preconditioner for the Lippmann-Schwinger Equation.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#LiuY18,https://doi.org/10.1137/17M1132057 +Ernesto Aranda,On the Computation of the Rank-One Convex Hull of a Function.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#ArandaP01,https://doi.org/10.1137/S1064827599362028 +Lu Wang,A Parallel Auxiliary Grid Algebraic Multigrid Method for Graphic Processing Units.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#WangHCX13,https://doi.org/10.1137/120894452 +Shuai Xue,Sharp Boundary Electrocardiac Simulations.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#XueLGFC16,https://doi.org/10.1137/15M1019283 +Alexander Kurganov,Second-Order Fully Discrete Central-Upwind Scheme for Two-Dimensional Hyperbolic Systems of Conservation Laws.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#KurganovPW17,https://doi.org/10.1137/15M1038670 +Marzio Sala,A New Petrov--Galerkin Smoothed Aggregation Preconditioner for Nonsymmetric Linear Systems.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#SalaT08,https://doi.org/10.1137/060659545 +Weiming Cao,Preconditioning on Element Interfaces for the p-Version Finite Element Method and Spectral Element Method.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#CaoG99,https://doi.org/10.1137/S1064827596306951 +Marcus Drosson,Stability and Boundary Resolution Analysis of the Discontinuous Galerkin Method Applied to the Reynolds-Averaged Navier-Stokes Equations Using the Spalart-Allmaras Model.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#DrossonHE13,https://doi.org/10.1137/110834615 +Lukas Einkemmer,Overcoming Order Reduction in Diffusion-Reaction Splitting. Part 2: Oblique Boundary Conditions.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#EinkemmerO16,https://doi.org/10.1137/16M1056250 +Harald Osnes,A Study of Some Finite Difference Schemes for a Unidirectional Stochastic Transport Equation.,1998,19,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc19.html#OsnesL98,https://doi.org/10.1137/S1064827593259108 +Alexander Bihlo,Invariant Discretization Schemes for the Shallow-Water Equations.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#BihloP12,https://doi.org/10.1137/120861187 +Roswitha März,Recent Results in Solving Index-2 Differential-Algebraic Equations in Circuit Simulation.,1997,18,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc18.html#MarzT97,https://doi.org/10.1137/S1064827595287250 +Eitan Levin,Estimation of the Regularization Parameter in Linear Discrete Ill-Posed Problems Using the Picard Parameter.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#LevinM17,https://doi.org/10.1137/17M1123195 +Dirk P. Laurie,A Two-Phase Algorithm for the Chebyshev Solution of Complex Linear Equations.,1994,15,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc15.html#LaurieV94,https://doi.org/10.1137/0915086 +Uri M. Ascher,Collocation Software for Boundary Value Differential-Algebraic Equations.,1994,15,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc15.html#AscherS94,https://doi.org/10.1137/0915056 +Ivan V. Oseledets,Algebraic Wavelet Transform via Quantics Tensor Train Decomposition.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#OseledetsT11,https://doi.org/10.1137/100811647 +Tim Rees,A Preconditioner for Linear Systems Arising From Interior Point Optimization Methods.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#ReesG07,https://doi.org/10.1137/060661673 +Philip M. Gresho,Adaptive Time-Stepping for Incompressible Flow Part I: Scalar Advection-Diffusion.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#GreshoGS08,https://doi.org/10.1137/070688018 +N. Anders Petersson,An Algorithm for Assembling Overlapping Grid Systems.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#Petersson99a,https://doi.org/10.1137/S1064827597292917 +Bin Dong,A New Multiscale Representation for Shapes and Its Application to Blood Vessel Recovery.,2010,32,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc32.html#DongCSO10,https://doi.org/10.1137/09076043X +Guang-Shan Jiang,Nonoscillatory Central Schemes for Multidimensional Hyperbolic Conservation Laws.,1998,19,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc19.html#JiangT98,https://doi.org/10.1137/S106482759631041X +Bo Wang,Parameter Estimation for ODEs Using a Cross-Entropy Approach.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#WangE13,https://doi.org/10.1137/120889733 +Sookkyung Lim,Dynamics of a Closed Rod with Twist and Bend in Fluid.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#LimFWP08,https://doi.org/10.1137/070699780 +Eran Treister,On-the-Fly Adaptive Smoothed Aggregation Multigrid for Markov Chains.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#TreisterY11,https://doi.org/10.1137/100799034 +George S. Fishman,Sensitivity Analysis Using the Monte Carlo Acceptance-Rejection Method.,1990,11,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc11.html#Fishman90,https://doi.org/10.1137/0911066 +Alexander M. Bronstein,Efficient Computation of Isometry-Invariant Distances Between Surfaces.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#BronsteinBK06,https://doi.org/10.1137/050639296 +Catherine Elizabeth Powell,Preconditioning Steady-State Navier-Stokes Equations with Random Data.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#PowellS12,https://doi.org/10.1137/120870578 +Matthias Kirchhart,Analysis of an XFEM Discretization for Stokes Interface Problems.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#KirchhartGR16,https://doi.org/10.1137/15M1011779 +Patrice Hauret,A Discrete Differential Sequence for Elasticity Based upon Continuous Displacements.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#HauretH13,https://doi.org/10.1137/110848189 +Christopher K. Newman,Physics-Based Preconditioners for Ocean Simulation.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#NewmanK13,https://doi.org/10.1137/120881397 +Weidong Zhao,A New Kind of Accurate Numerical Method for Backward Stochastic Differential Equations.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#ZhaoCP06,https://doi.org/10.1137/05063341X +Simon Praetorius,Development and Analysis of a Block-Preconditioner for the Phase-Field Crystal Equation.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#PraetoriusV15,https://doi.org/10.1137/140980375 +Qing Chu,Iterative Wavefront Reconstruction for Astronomical Imaging.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#ChuJN13,https://doi.org/10.1137/120882603 +Michael K. Ng,Inexact Alternating Direction Methods for Image Recovery.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#NgWY11,https://doi.org/10.1137/100807697 +Matthias Morzfeld,Iterative Importance Sampling Algorithms for Parameter Estimation.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#MorzfeldDGPFB18,https://doi.org/10.1137/16M1088417 +Nathan Halko,An Algorithm for the Principal Component Analysis of Large Data Sets.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#HalkoMST11,https://doi.org/10.1137/100804139 +Elsa Cazelles,Geodesic PCA versus Log-PCA of Histograms in the Wasserstein Space.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#CazellesSBCP18,https://doi.org/10.1137/17M1143459 +J. W. Neuberger,Sobolev Gradients and the Ginzburg-Landau Functional.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#NeubergerR98,https://doi.org/10.1137/S1064827596302722 +Pedro Miguel Lima,Numerical Solution of the Neural Field Equation in the Two-Dimensional Case.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#LimaB15,https://doi.org/10.1137/15M1022562 +Caterina Fenu,Network Analysis via Partial Spectral Factorization and Gauss Quadrature.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#FenuMRR13,https://doi.org/10.1137/130911123 +Clint Dawson,High Resolution Schemes for Conservation Laws with Locally Varying Time Steps.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#DawsonK01,https://doi.org/10.1137/S1064827500367737 +Simone Cacace,A Patchy Dynamic Programming Scheme for a Class of Hamilton-Jacobi-Bellman Equations.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#CacaceCFP12,https://doi.org/10.1137/110841576 +Mark A. Aves,Runge-Kutta Solutions of a Hyperbolic Conservation Law with Source Term.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#AvesGH00,https://doi.org/10.1137/S106482759833601X +J. H. Adler,First-Order System Least Squares for Incompressible Resistive Magnetohydrodynamics.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#AdlerMMR10,https://doi.org/10.1137/080727282 +Mark K. Seager,Adaptive Domain Extension and Adaptive Grids for Unbounded Spherical Elliptic PDEs.,1990,11,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc11.html#SeagerC90,https://doi.org/10.1137/0911006 +Jingya Chang,Computing Eigenvalues of Large Scale Sparse Tensors Arising from a Hypergraph.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#ChangCQ16,https://doi.org/10.1137/16M1060224 +Emanuel H. Rubensson,Controlling Errors in Recursive Fermi-Dirac Operator Expansions with Applications in Electronic Structure Theory.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#Rubensson12,https://doi.org/10.1137/11083352X +Márcia A. Gomes-Ruggiero,Comparing Algorithms for Solving Sparse Nonlinear Systems of Equations.,1992,13,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc13.html#Gomes-RuggieroM92,https://doi.org/10.1137/0913025 +Naomi Decker,Note on the Parallel Efficiency of the Frederickson-McBryan Multigrid Algorithm.,1991,12,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc12.html#Decker91,https://doi.org/10.1137/0912011 +Richard M. Beam,Multiresolution Analysis and Supercompact Multiwavelets.,2000,22,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc22.html#BeamW00,https://doi.org/10.1137/S1064827596311906 +Otto Heinreichsberger,Fast Iterative Solution of Carrier Continuity Equations for Three-Dimensional Device Simulation.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#Heinreichsberger92,https://doi.org/10.1137/0913015 +Yuancheng Luo,Efficient Parallel Nonnegative Least Squares on Multicore Architectures.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#LuoD11,https://doi.org/10.1137/100799083 +Giacomo Dimarco,Asymptotic-Preserving Monte Carlo Methods for Transport Equations in the Diffusive Limit.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#DimarcoPS18,https://doi.org/10.1137/17M1140741 +L. Beirão da Veiga,A Mimetic Discretization of the Stokes Problem with Selected Edge Bubbles.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#VeigaL10,https://doi.org/10.1137/090767029 +Larisa Beilina,A Globally Convergent Numerical Method for a Coefficient Inverse Problem.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#BeilinaK08,https://doi.org/10.1137/070711414 +Karthikeyan Duraisamy,Implicit Scheme for Hyperbolic Conservation Laws Using Nonoscillatory Reconstruction in Space and Time.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#DuraisamyB07,https://doi.org/10.1137/070683271 +Julianne Chung,Generalized Hybrid Iterative Methods for Large-Scale Bayesian Inverse Problems.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#ChungS17,https://doi.org/10.1137/16M1081968 +M. A. López-Marcos,Explicit Symplectic Integrators Using Hessian-Vector Products.,1997,18,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc18.html#Lopez-MarcosSS97,https://doi.org/10.1137/S1064827595288085 +René Lamour,A Shooting Method for Fully Implicit Index-2 Differential Algebraic Equations.,1997,18,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc18.html#Lamour97,https://doi.org/10.1137/S1064827595287274 +Lois Mansfield,Damped Jacobi Preconditioning and Coarse Grid Deflation for Conjugate Gradient Iteration on Parallel Computers.,1991,12,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc12.html#Mansfield91,https://doi.org/10.1137/0912071 +James M. Banoczi,A Fast Multilevel Algorithm for the Solution of Nonlinear Systems of Conductive-Radiative Heat Transfer Equations in Two Space Dimensions.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#BanocziK99,https://doi.org/10.1137/S1064827597322756 +Marlis Hochbruck,A Multilevel Jacobi--Davidson Method for Polynomial PDE Eigenvalue Problems Arising in Plasma Physics.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#HochbruckL10,https://doi.org/10.1137/090774604 +Keith R. Santarelli,A Framework for Reduced Order Modeling with Mixed Moment Matching and Peak Error Objectives.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#Santarelli10,https://doi.org/10.1137/090761136 +François Musy,Compatible Coarse Nodal and Edge Elements Through Energy Functionals.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#MusyNP07,https://doi.org/10.1137/050645750 +Ngoc Cuong Nguyen,Functional Regression for State Prediction Using Linear PDE Models and Observations.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#NguyenMFP16,https://doi.org/10.1137/14100275X +Roberto Barrio,A Parallel Algorithm to Evaluate Chebyshev Series on a Message Passing Environment.,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#BarrioS98,https://doi.org/10.1137/S1064827596312857 +Franca Bianco,High-Order Central Schemes for Hyperbolic Systems of Conservation Laws.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#BiancoPR99,https://doi.org/10.1137/S1064827597324998 +Jeffrey Willert,Hybrid Deterministic/Monte Carlo Neutronics.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#WillertKKP13,https://doi.org/10.1137/120880021 +Björn Engquist,Fast Directional Multilevel Algorithms for Oscillatory Kernels.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#EngquistY07,https://doi.org/10.1137/07068583X +Wei Zhang 0065,Applications of the Cross-Entropy Method to Importance Sampling and Optimal Control of Diffusions.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#ZhangWHWS14,https://doi.org/10.1137/14096493X +Saman Ghili,Least Squares Approximation of Polynomial Chaos Expansions With Optimized Grid Points.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#GhiliI17,https://doi.org/10.1137/15M1028303 +B. Chang,Spatial Multigrid for Isotropic Neutron Transport.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#ChangMMRS07,https://doi.org/10.1137/060661363 +Zhiqiang Sheng,Construction of Nonlinear Weighted Method for Finite Volume Schemes Preserving Maximum Principle.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#ShengY18,https://doi.org/10.1137/16M1098000 +Ling Guo,Weighted Approximate Fekete Points: Sampling for Least-Squares Polynomial Approximation.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#GuoNYZ18,https://doi.org/10.1137/17M1140960 +Jirí Kopal,Factorized Approximate Inverses with Adaptive Dropping.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#KopalRT16,https://doi.org/10.1137/15M1030315 +Leslie Greengard,An Integral Equation Approach to the Incompressible Navier-Stokes Equations in Two Dimensions.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#GreengardK98,https://doi.org/10.1137/S1064827597317648 +Alfio Borzì,The Numerical Solution of the Steady State Solid Fuel Ignition Model and Its Optimal Control.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#BorziK00,https://doi.org/10.1137/S1064827599360194 +Dirk Lebiedz,A Continuation Method for the Efficient Solution of Parametric Optimization Problems in Kinetic Model Reduction.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#LebiedzS13,https://doi.org/10.1137/120900344 +Christian H. Bischof,Sensitivity Analysis of Turbulence Models Using Automatic Differentiation.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#BischofBR04,https://doi.org/10.1137/S1064827503426723 +István Faragó,Discrete Maximum Principle and Adequate Discretizations of Linear Parabolic Problems.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#FaragoH06,https://doi.org/10.1137/050627241 +Qun Ma,Verlet-I/R-RESPA/Impulse is Limited by Nonlinear Instabilities.,2003,24,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc24.html#MaIS03,https://doi.org/10.1137/S1064827501399833 +Erin Carson,Accelerating the Solution of Linear Systems by Iterative Refinement in Three Precisions.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#CarsonH18,https://doi.org/10.1137/17M1140819 +Felice Iavernaro,Block-Boundary Value Methods for the Solution of Ordinary Differential Equations.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#IavernaroM99,https://doi.org/10.1137/S1064827597325785 +H. Cho,Algorithms for Propagating Uncertainty Across Heterogeneous Domains.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#ChoYVK15,https://doi.org/10.1137/140992060 +Roland M. Caplan,A Modulus-Squared Dirichlet Boundary Condition for Time-Dependent Complex Partial Differential Equations and Its Application to the Nonlinear Schrödinger Equation.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#CaplanC14,https://doi.org/10.1137/130920046 +Alexei Bespalov,Efficient Adaptive Stochastic Galerkin Methods for Parametric Operator Equations.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#BespalovS16,https://doi.org/10.1137/15M1027048 +Luhan Chuang,Numerical Methods for Finding Clustersolutions of Optimal Control Problems.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#ChuangK98,https://doi.org/10.1137/S1064827596295290 +Marcus J. Grote,Inexact Interior-Point Method for PDE-Constrained Nonlinear Optimization.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#GroteHKS14,https://doi.org/10.1137/130921283 +Axel Klawonn,Toward Extremely Scalable Nonlinear Domain Decomposition Methods for Elliptic Partial Differential Equations.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#KlawonnLR15,https://doi.org/10.1137/140997907 +Ionut Danaila,A New Sobolev Gradient Method for Direct Minimization of the Gross--Pitaevskii Energy with Rotation.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#DanailaK10,https://doi.org/10.1137/100782115 +Yvan Notay,Flexible Conjugate Gradients.,2000,22,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc22.html#Notay00,https://doi.org/10.1137/S1064827599362314 +Allan R. Willms,Bounding Data with a Piecewise Linear Band.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#Willms09,https://doi.org/10.1137/080732316 +Luigi Brugnano,Iterative Solution of Piecewise Linear Systems.,2008,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#BrugnanoC08,https://doi.org/10.1137/070681867 +Andreas Karageorghis,Kansa-RBF Algorithms for Elliptic Problems in Axisymmetric Domains.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#KarageorghisCL16,https://doi.org/10.1137/15M1037974 +Urs von Matt,The Orthogonal qd-Algorithm.,1997,18,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc18.html#Matt97,https://doi.org/10.1137/S1064827594274887 +Jared L. Aurentz,Fast Computation of the Zeros of a Polynomial via Factorization of the Companion Matrix.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#AurentzVW13,https://doi.org/10.1137/120865392 +David Doyen,Time-Integration Schemes for the Finite Element Dynamic Signorini Problem.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#DoyenEP11,https://doi.org/10.1137/100791440 +K. C. Zygalakis,On the Existence and the Applications of Modified Equations for Stochastic Differential Equations.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#Zygalakis11,https://doi.org/10.1137/090762336 +Pratik Biswas,A Distributed SDP Approach for Large-Scale Noisy Anchor-Free Graph Realization with Applications to Molecular Conformation.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#BiswasTY08,https://doi.org/10.1137/05062754X +Olaf Schenk,Inertia-Revealing Preconditioning For Large-Scale Nonconvex Constrained Optimization.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#SchenkWW08,https://doi.org/10.1137/070707233 +Weiwei Sun,Iterative Algorithms for Orthogonal Spline Collocation Linear Systems.,1995,16,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc16.html#Sun95,https://doi.org/10.1137/0916043 +Alexander Veit,Using the Tensor-Train Approach to Solve the Ground-State Eigenproblem for Hydrogen Molecules.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#VeitS17,https://doi.org/10.1137/15M102808X +Andrea Cangiani,Adaptivity and Blow-Up Detection for Nonlinear Evolution Problems.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#CangianiGKM16,https://doi.org/10.1137/16M106073X +Pavel B. Bochev,An Improved Algebraic Multigrid Method for Solving Maxwell's Equations.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#BochevGHRT03,https://doi.org/10.1137/S1064827502407706 +Max la Cour Christensen,Numerical Multilevel Upscaling for Incompressible Flow in Reservoir Simulation: An Element-Based Algebraic Multigrid (AMGe) Approach.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#ChristensenVEV17,https://doi.org/10.1137/140988991 +Scott B. Baden,Programming Abstractions for Dynamically Partitioning and Coordinating Localized Scientific Calculations Running on Multiprocessors.,1991,12,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc12.html#Baden91,https://doi.org/10.1137/0912008 +Hong Wang,An ELLAM Scheme for Advection-Diffusion Equations in Two Dimensions.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#WangDEESM99,https://doi.org/10.1137/S1064827596309396 +John Guckenheimer,Computing Hopf Bifurcations. II: Three Examples From Neurophysiology.,1996,17,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc17.html#GuckenheimerM96,https://doi.org/10.1137/S1064827593253495 +Qiumei Huang,Superconvergence of Discontinuous Galerkin Solutions for Delay Differential Equations of Pantograph Type.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#HuangXB11,https://doi.org/10.1137/110824632 +David J. B. Lloyd,Efficient Numerical Continuation and Stability Analysis of Spatiotemporal Quadratic Optical Solitons.,2005,27,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc27.html#LloydC05,https://doi.org/10.1137/040604455 +Karol Mikula,A New Level Set Method for Motion in Normal Direction Based on a Semi-Implicit Forward-Backward Diffusion Approach.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#MikulaO10,https://doi.org/10.1137/09075946X +Zhenning Cai,NRxx Simulation of Microflows with Shakhov Model.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#CaiLQ12,https://doi.org/10.1137/110828551 +Michel O. Deville,Fourier Analysis of Finite Element Preconditioned Collocation Schemes.,1992,13,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc13.html#DevilleM92,https://doi.org/10.1137/0913033 +James O'Neil,A Block Ordering Method for Sparse Matrices.,1990,11,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc11.html#ONeilS90,https://doi.org/10.1137/0911048 +Jun Luo,A Well-Balanced Symplecticity-Preserving Gas-Kinetic Scheme for Hydrodynamic Equations under Gravitational Field.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#LuoXL11,https://doi.org/10.1137/100803699 +Ralf Hartmann,Adaptive Discontinuous Galerkin Finite Element Methods for Nonlinear Hyperbolic Conservation Laws.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#HartmannH03,https://doi.org/10.1137/S1064827501389084 +Michiel E. Hochstenbach,Alternatives to the Rayleigh Quotient for the Quadratic Eigenvalue Problem.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#HochstenbachV03,https://doi.org/10.1137/S1064827502406403 +Nicholas J. Higham,Stability of Parallel Triangular System Solvers.,1995,16,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc16.html#Higham95,https://doi.org/10.1137/0916025 +Pieterjan Robbe,A Multi-Index Quasi-Monte Carlo Algorithm for Lognormal Diffusion Problems.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#RobbeNV17,https://doi.org/10.1137/16M1082561 +Robin Sibson,Computation of Thin-Plate Splines.,1991,12,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc12.html#SibsonS91,https://doi.org/10.1137/0912070 +Wing Lok Wan,An Energy-minimizing Interpolation for Robust Multigrid Methods.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#WanCS99,https://doi.org/10.1137/S1064827598334277 +Jesse Chan,Orthogonal Bases for Vertex-Mapped Pyramids.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#ChanW16,https://doi.org/10.1137/15M1011408 +Jan Pomplun,Accelerated A Posteriori Error Estimation for the Reduced Basis Method with Application to 3D Electromagnetic Scattering Problems.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#PomplunS10,https://doi.org/10.1137/090760271 +Sam Subbey,The Impact of Uncertain Centrifuge Capillary Pressure on Reservoir Simulation.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#SubbeyCS04,https://doi.org/10.1137/S1064827503426747 +Adrian C. Muresan,Analysis of Aggregation-Based Multigrid.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#MuresanN08,https://doi.org/10.1137/060678397 +Chris J. Budd,On the Solution of Convection-Diffusion Boundary Value Problems Using Equidistributed Grids.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#BuddKS98,https://doi.org/10.1137/S1064827595280454 +Smadar Karni,Hybrid Multifluid Algorithms.,1996,17,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc17.html#Karni96,https://doi.org/10.1137/S106482759528003X +Joachim van der Herten,A Fuzzy Hybrid Sequential Design Strategy for Global Surrogate Modeling of High-Dimensional Computer Experiments.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#HertenCDD15,https://doi.org/10.1137/140962437 +J. H. Adler,Combining Deflation and Nested Iteration for Computing Multiple Solutions of Nonlinear Variational Problems.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#AdlerEFM17,https://doi.org/10.1137/16M1058728 +Walter Gander,Algorithms for the Polar Decomposition.,1990,11,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc11.html#Gander90,https://doi.org/10.1137/0911062 +David C. Del Rey Fernández,Generalized Summation-by-Parts Operators for the Second Derivative.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#FernandezZ15,https://doi.org/10.1137/140992205 +Thomas K. DeLillo,Numerical Computation of the Schwarz-Christoffel Transformation for Multiply Connected Domains.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#DeLilloK11,https://doi.org/10.1137/100816912 +Tony F. Chan,Eigendecomposition of Domain Decomposition Interface Operators for Constant Coefficient Elliptic Problems.,1991,12,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc12.html#ChanH91,https://doi.org/10.1137/0912080 +William W. Hager,Iterative Methods for Nearly Singular Linear Systems.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#Hager00,https://doi.org/10.1137/S106482759834634X +Peter Benner,Efficient Solution of Large-Scale Saddle Point Systems Arising in Riccati-Based Boundary Feedback Stabilization of Incompressible Stokes Flow.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#BennerSSW13,https://doi.org/10.1137/120881312 +Stephen A. Vavasis,Automatic Domain Partitioning in Three Dimensions.,1991,12,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc12.html#Vavasis91,https://doi.org/10.1137/0912051 +Weizhang Huang,Measuring Mesh Qualities and Application to Variational Mesh Adaptation.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#Huang05,https://doi.org/10.1137/S1064827503429405 +Wenlong Dai,A High-Order Iterative Implicit-Explicit Hybrid Scheme for Magnetohydrodynamics.,1998,19,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc19.html#DaiW98,https://doi.org/10.1137/S1064827595286086 +Woohyuk Choi,Vispark: GPU-Accelerated Distributed Visual COmputing Using Spark.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#ChoiHJ16,https://doi.org/10.1137/15M1026407 +Nahid Emad,Multiple Explicitly Restarted Arnoldi Method for Solving Large Eigenproblems.,2005,27,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc27.html#EmadPE05,https://doi.org/10.1137/S1064827500366082 +Roel Matthysen,Fast Algorithms for the Computation of Fourier Extensions of Arbitrary Length.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#MatthysenH16,https://doi.org/10.1137/15M1030923 +Martin J. Gander,Overlapping Schwarz Waveform Relaxation for Convection-Dominated Nonlinear Conservation Laws.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#GanderR05,https://doi.org/10.1137/030601090 +Benjamin Peherstorfer,Online Adaptive Model Reduction for Nonlinear Systems via Low-Rank Updates.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#PeherstorferW15,https://doi.org/10.1137/140989169 +Harri Hakula,On Moduli of Rings and Quadrilaterals: Algorithms and Experiments.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#HakulaRV11,https://doi.org/10.1137/090763603 +José E. Castillo,A Discrete Variational Grid Generation Method.,1991,12,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc12.html#Castillo91,https://doi.org/10.1137/0912025 +Norbert Heuer,Iterative Substructuring for Hypersingular Integral Equations in $\Bbb R^3$.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#HeuerS98,https://doi.org/10.1137/S1064827596311797 +Márcia A. Gomes-Ruggiero,Spectral Projected Gradient Method with Inexact Restoration for Minimization with Nonconvex Constraints.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#Gomes-RuggieroMS09,https://doi.org/10.1137/070707828 +Marjon J. Ruijter,A Fourier Cosine Method for an Efficient Computation of Solutions to BSDEs.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#RuijterO15,https://doi.org/10.1137/130913183 +Santi S. Adavani,Multigrid Algorithms for Inverse Problems with Linear Parabolic PDE Constraints.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#AdavaniB08,https://doi.org/10.1137/070687426 +Santiago Badia,Space-Time Balancing Domain Decomposition.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#BadiaO17,https://doi.org/10.1137/16M1074266 +Julie C. Mitchell,Sampling Rotation Groups by Successive Orthogonal Images.,2008,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#Mitchell08,https://doi.org/10.1137/030601879 +D. Pathria,The Correct Formulation of Intermediate Boundary Conditions for Runge-Kutta Time Integration of Initial Boundary Value Problems.,1997,18,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc18.html#Pathria97,https://doi.org/10.1137/S1064827594273948 +Babak Maboudi Afkham,Structure Preserving Model Reduction of Parametric Hamiltonian Systems.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#AfkhamH17,https://doi.org/10.1137/17M1111991 +Hailiang Liu,Alternating Evolution Schemes for Hamilton-Jacobi Equations.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#LiuPS13,https://doi.org/10.1137/120862806 +JiGuan G. Lin,Modeling Test Responses by Multivariable Polynomials of Higher Degrees.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#Lin06,https://doi.org/10.1137/040603954 +Zhongze Li,SchurRAS: A Restricted Version of the Overlapping Schur Complement Preconditioner.,2006,27,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc27.html#LiS06,https://doi.org/10.1137/040608350 +Valeria Simoncini,Theory of Inexact Krylov Subspace Methods and Applications to Scientific Computing.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#SimonciniS03,https://doi.org/10.1137/S1064827502406415 +Zydrunas Gimbutas,A Generalized Fast Multipole Method for Nonoscillatory Kernels.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#GimbutasR03,https://doi.org/10.1137/S1064827500381148 +Jessica Cervi,High-Order Operator Splitting for the Bidomain and Monodomain Models.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#CerviS18,https://doi.org/10.1137/17M1137061 +Michael R. Osborne,A Modified Prony Algorithm for Exponential Function Fitting.,1995,16,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc16.html#OsborneS95,https://doi.org/10.1137/0916008 +Thomas Dunst,The Forward-Backward Stochastic Heat Equation: Numerical Analysis and Simulation.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#DunstP16,https://doi.org/10.1137/15M1022951 +James Hilditch,A Front Tracking Method for Compressible Flames in One Dimension.,1995,16,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc16.html#HilditchC95,https://doi.org/10.1137/0916045 +Paul Tranquilli,Rosenbrock-Krylov Methods for Large Systems of Differential Equations.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#TranquilliS14,https://doi.org/10.1137/130923336 +Allison H. Baker,On Improving Linear Solver Performance: A Block Variant of GMRES.,2006,27,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc27.html#BakerDJ06,https://doi.org/10.1137/040608088 +Ignacio Martín Llorente,Alternating Plane Smoothers For Multiblock Grids.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#LlorenteDM00,https://doi.org/10.1137/S106482759935736X +Pierre Degond,Numerical Discretization of Energy-Transport Models for Semiconductors with Nonparabolic Band Structure.,2000,22,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc22.html#DegondJP00,https://doi.org/10.1137/S1064827599360972 +Lin Lin 0001,A Fast Parallel Algorithm for Selected Inversion of Structured Sparse Matrices with Application to 2D Electronic Structure Calculations.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#LinYLYE11,https://doi.org/10.1137/09077432X +Hans Olsson,Stage Value Predictors and Efficient Newton Iterations in Implicit Runge-Kutta Methods.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#OlssonS98,https://doi.org/10.1137/S1064827596306963 +Kapil Ahuja,Recycling BiCGSTAB with an Application to Parametric Model Order Reduction.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#AhujaBSF15,https://doi.org/10.1137/140972433 +Wai Sun Don,Accuracy and Speed in Computing the Chebyshev Collocation Derivative.,1995,16,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc16.html#DonS95,https://doi.org/10.1137/0916073 +Tsung-Ming Huang,A Robust Numerical Algorithm for Computing Maxwell's Transmission Eigenvalue Problems.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#HuangHL15,https://doi.org/10.1137/15M1018927 +Yong-Tao Zhang,High-Order WENO Schemes for Hamilton-Jacobi Equations on Triangular Meshes.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#ZhangS03,https://doi.org/10.1137/S1064827501396798 +Ben Adcock,Resolution-Optimal Exponential and Double-Exponential Transform Methods for Functions with Endpoint Singularities.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#AdcockMR17,https://doi.org/10.1137/15M104517X +Stephan C. Kramer,Parallel Statistical Multiresolution Estimation for Image Reconstruction.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#KramerHKL16,https://doi.org/10.1137/15M1020332 +C. Falcó Korn,Verification May be Better than Estimation.,1996,17,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc17.html#KornHU96,https://doi.org/10.1137/0917065 +David Fritzsche,Extensions of Certain Graph-based Algorithms for Preconditioning.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#FritzscheFS07,https://doi.org/10.1137/060661284 +Mohammed Lemou,A New Asymptotic Preserving Scheme Based on Micro-Macro Formulation for Linear Kinetic Equations in the Diffusion Limit.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#LemouM08,https://doi.org/10.1137/07069479X +Sebastian Holtz,The Alternating Linear Scheme for Tensor Optimization in the Tensor Train Format.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#HoltzRS12,https://doi.org/10.1137/100818893 +Pingping Zeng,Pricing Barrier and Bermudan Style Options Under Time-Changed Lévy Processes: Fast Hilbert Transform Approach.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#ZengK14,https://doi.org/10.1137/130922495 +Marlis Hochbruck,Error Analysis of Krylov Methods In a Nutshell.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#HochbruckL98,https://doi.org/10.1137/S1064827595290450 +Snorre H. Christiansen,On Constraint Preservation in Numerical Simulations of Yang-Mills Equations.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#ChristiansenW06,https://doi.org/10.1137/040616887 +Lehel Banjai,A Multipole Method for Schwarz-Christoffel Mapping of Polygons with Thousands of Sides.,2003,25,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc25.html#BanjaiT03,https://doi.org/10.1137/S1064827502411675 +Kazuo Murota,Computational Use of Group Theory in Bifurcation Analysis of Symmetric Structures.,1991,12,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc12.html#MurotaI91,https://doi.org/10.1137/0912016 +Xiaoming He,A Domain Decomposition Method for the Steady-State Navier-Stokes-Darcy Model with Beavers-Joseph Interface Condition.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#HeLLM15,https://doi.org/10.1137/140965776 +Jane Lawson,Balancing Space and Time Errors in the Method of Lines for Parabolic Equations.,1991,12,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc12.html#LawsonBD91,https://doi.org/10.1137/0912031 +Mohamed El Bouajaji,Optimized Schwarz Methods for the Time-Harmonic Maxwell Equations with Damping.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#BouajajiDGL12,https://doi.org/10.1137/110842995 +Michael Goldstein,Probabilistic Formulations for Transferring Inferences from Mathematical Models to Physical Systems.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#GoldsteinR04,https://doi.org/10.1137/S106482750342670X +William W. Hager,Minimizing the Profile of a Symmetric Matrix.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#Hager02,https://doi.org/10.1137/S1064827500379215 +Matthias Heinkenschloss,Balanced Truncation Model Reduction for a Class of Descriptor Systems with Application to the Oseen Equations.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#HeinkenschlossSS08,https://doi.org/10.1137/070681910 +Cédric Chauvière,Computational Modeling of Uncertainty in Time-Domain Electromagnetics.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#ChauviereHL06,https://doi.org/10.1137/040621673 +Zhisong Fu,A Fast Iterative Method for Solving the Eikonal Equation on Tetrahedral Domains.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#FuKW13,https://doi.org/10.1137/120881956 +Marc Garbey,Domain Decomposition to Solve Transition Layers and Asymptotics.,1994,15,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc15.html#Garbey94,https://doi.org/10.1137/0915053 +Dongbin Xiu,The Wiener-Askey Polynomial Chaos for Stochastic Differential Equations.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#XiuK02,https://doi.org/10.1137/S1064827501387826 +Per-Gunnar Martinsson,Compressing Rank-Structured Matrices via Randomized Sampling.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#Martinsson16,https://doi.org/10.1137/15M1016679 +Paul Houston,Automatic Symbolic Computation for Discontinuous Galerkin Finite Element Methods.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#HoustonS18,https://doi.org/10.1137/17M1129751 +Maria Cristina Recchioni,Hamilton-based Numerical Methods for a Fluid-Membrane Interaction in Two and Three Dimensions.,1998,19,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc19.html#RecchioniR98,https://doi.org/10.1137/S106482759528973X +Rongjie Lai,A Ridge and Corner Preserving Model for Surface Restoration.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#LaiTC13,https://doi.org/10.1137/110846634 +Tamara G. Kolda,A Scalable Generative Graph Model with Community Structure.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#KoldaPPS14,https://doi.org/10.1137/130914218 +Christian Wieners,Duality Estimates and Multigrid Analysis for Saddle Point Problems Arising from Mortar Discretizations.,2003,24,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc24.html#WienersW03,https://doi.org/10.1137/S1064827502402715 +Yannan Chen,The Fiedler Vector of a Laplacian Tensor for Hypergraph Partitioning.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#ChenQZ17,https://doi.org/10.1137/16M1094828 +Elizabeth R. Jessup,Improving the Accuracy of Inverse Iteration.,1992,13,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc13.html#JessupI92,https://doi.org/10.1137/0913031 +Vincent Israel-Jost,FA-SART: A Frequency-Adaptive Algorithm in Pinhole SPECT Tomography.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#Israel-Jost08,https://doi.org/10.1137/060668341 +Veselin Dobrev,High-Order Curvilinear Finite Element Methods for Lagrangian Hydrodynamics.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#DobrevKR12,https://doi.org/10.1137/120864672 +Gregory J. Rodin,Boundary Element Preconditioners for Problems Defined on Slender Domains.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#RodinS03,https://doi.org/10.1137/S1064827500372067 +Gregory Beylkin,Algorithms for Numerical Analysis in High Dimensions.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#BeylkinM05,https://doi.org/10.1137/040604959 +Qiang Du,Anisotropic Centroidal Voronoi Tessellations and Their Applications.,2005,26,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc26.html#DuW05,https://doi.org/10.1137/S1064827503428527 +Francis Filbet,Solving the Boltzmann Equation in N log2N.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#FilbetMP06,https://doi.org/10.1137/050625175 +Yi Yan,Sparse Preconditioned Iterative Methods for Dense Linear Systems.,1994,15,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc15.html#Yan94,https://doi.org/10.1137/0915073 +Ville Kolehmainen,Limited Data X-Ray Tomography Using Nonlinear Evolution Equations.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#KolehmainenLS08,https://doi.org/10.1137/050622791 +Robert I. A. Patterson,A Stochastic Weighted Particle Method for Coagulation-Advection Problems.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#PattersonW12,https://doi.org/10.1137/110843319 +Kossi D. Edoh,Computation of Lyapunov-Type Numbers for Invariant Curves of Planar Maps.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#EdohL01,https://doi.org/10.1137/S1064827500366707 +Dionissios T. Hristopulos,Spartan Gibbs Random Field Models for Geostatistical Applications.,2003,24,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc24.html#Hristopulos03,https://doi.org/10.1137/S106482750240265X +James Glimm,Statistical Riemann Problems and a Composition Law for Errors in Numerical Solutions of Shock Physics Problems.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#GlimmGKLLSYYZ04,https://doi.org/10.1137/S1064827503427534 +Charles H. Tong,A Domain Decomposition Preconditioner Based on a Change to a Multilevel Nodal Basis.,1991,12,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc12.html#TongCK91,https://doi.org/10.1137/0912082 +Jean-David Benamou,Iterative Bregman Projections for Regularized Transportation Problems.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#BenamouCCNP15,https://doi.org/10.1137/141000439 +Wilhelm Heinrichs,A Stabilized Treatment of the Biharmonic Operator with Spectral Methods.,1991,12,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc12.html#Heinrichs91,https://doi.org/10.1137/0912061 +Kody J. H. Law,Deterministic Mean-Field Ensemble Kalman Filtering.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#LawTT16,https://doi.org/10.1137/140984415 +K. Andrew Cliffe,Goal-Oriented A Posteriori Error Estimation For The Travel Time Functional In Porous Media Flows.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#CliffeCH15,https://doi.org/10.1137/140960499 +Edmond Chow,An Aggregation Multilevel Method Using Smooth Error Vectors.,2006,27,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc27.html#Chow06,https://doi.org/10.1137/040608192 +Johannes Tausch,Multidimensional Fast Gauss Transforms by Chebyshev Expansions.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#TauschW09,https://doi.org/10.1137/080732729 +K. R. Jackson,Adaptive Linear Equation Solvers in Codes for Large Stiff Systems of ODEs.,1993,14,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc14.html#JacksonS93,https://doi.org/10.1137/0914051 +Lourenço Beirão da Veiga,A Higher-Order Formulation of the Mimetic Finite Difference Method.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#VeigaM08,https://doi.org/10.1137/080717894 +Julien Coatléven,Transparent Boundary Conditions for Evolution Equations in Infinite Periodic Strips.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#Coatleven12,https://doi.org/10.1137/110838030 +Chih-Jen Lin,Incomplete Cholesky Factorizations with Limited Memory.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#LinM99,https://doi.org/10.1137/S1064827597327334 +Wei-Cheng Wang,A Jump Condition Capturing Finite Difference Scheme for Elliptic Interface Problems.,2004,25,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc25.html#Wang04,https://doi.org/10.1137/S1064827502405987 +David Kinderlehrer,A Variational Approach to Modeling and Simulation of Grain Growth.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#KinderlehrerLT06,https://doi.org/10.1137/030601971 +K. L. Hamlington,Evaluation of Grid-Based and Grid-Free Methods to Model Microchannel Transport-Reaction.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#HamlingtonKFCG13,https://doi.org/10.1137/120880598 +Axel Klawonn,A Domain Decomposition Method with Lagrange Multipliers and Inexact Solvers for Linear Elasticity.,2000,22,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc22.html#KlawonnW00,https://doi.org/10.1137/S1064827599352495 +Federico Negri,Reduced Basis Method for Parametrized Elliptic Optimal Control Problems.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#NegriRMQ13,https://doi.org/10.1137/120894737 +Raymond H. Chan,Multigrid Method for Ill-Conditioned Symmetric Toeplitz Systems.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#ChanCS98,https://doi.org/10.1137/S1064827595293831 +Dimitri Breda,Computing the Eigenvalues of Realistic Daphnia Models by Pseudospectral Methods.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#BredaGSV15,https://doi.org/10.1137/15M1016710 +James Glimm,Front Tracking Simulations of Ion Deposition and Resputtering.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#GlimmSTTV99,https://doi.org/10.1137/S1064827597318393 +Apostolos Hadjidimos,Iterative Line Cubic Spline Collocation Methods for Elliptic Partial Differential Equations in Several Dimensions.,1993,14,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc14.html#HadjidimosHRV93,https://doi.org/10.1137/0914045 +David E. Womble,A Time-Stepping Algorithm for Parallel Computers.,1990,11,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc11.html#Womble90,https://doi.org/10.1137/0911049 +Brett N. Ryland,On Multisymplecticity of Partitioned Runge-Kutta Methods.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#RylandM08,https://doi.org/10.1137/070688468 +Dan Ibanez,Modifiable Array Data Structures for Mesh Topology.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#IbanezS17,https://doi.org/10.1137/16M1063496 +Andrew L. Zachary,A Higher-Order Godunov Method for Multidimensional Ideal Magnetohydrodynamics.,1994,15,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc15.html#ZacharyMC94,https://doi.org/10.1137/0915019 +Tim Chartier,Spectral AMGe (χ1*AMGe).,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#ChartierFHJMMRV03,https://doi.org/10.1137/S106482750139892X +Jie Shen 0001,Efficient Spectral-Galerkin Method I. Direct Solvers of Second- and Fourth-Order Equations Using Legendre Polynomials.,1994,15,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc15.html#Shen94,https://doi.org/10.1137/0915089 +Zhongqiang Zhang,Error Estimates for the ANOVA Method with Polynomial Chaos Interpolation: Tensor Product Functions.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#ZhangCK12,https://doi.org/10.1137/100788859 +Sean Curtis,Postprocessing for the Discontinuous Galerkin Method over Nonuniform Meshes.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#CurtisKRS07,https://doi.org/10.1137/070681284 +Michael Pernice,A Multigrid-Preconditioned Newton-Krylov Method for the Incompressible Navier-Stokes Equations.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#PerniceT01,https://doi.org/10.1137/S1064827500372250 +Jeffrey K. Bennighof,An Automated Multilevel Substructuring Method for Eigenspace Computation in Linear Elastodynamics.,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#BennighofL04,https://doi.org/10.1137/S1064827502400650 +X. Peng,A Method for Geometry Optimization in a Simple Model of Two-Dimensional Heat Transfer.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#PengNP13,https://doi.org/10.1137/120870499 +Ta-Kang Ku,A Minimum-Phase LU Factorization Preconditioner for Toeplitz Matrices.,1992,13,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc13.html#KuK92a,https://doi.org/10.1137/0913083 +Gerhard Starke,Alternating Direction Preconditioning for Nonsymmetric Systems of Linear Equations.,1994,15,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc15.html#Starke94,https://doi.org/10.1137/0915026 +Eleanor W. Jenkins,An Aggregation-Based Domain Decomposition Preconditioner for Groundwater Flow.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#JenkinsKKM01,https://doi.org/10.1137/S1064827500372274 +Amir Averbuch,A Fast Poisson Solver of Arbitrary Order Accuracy in Rectangular Regions.,1998,19,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc19.html#AverbuchIV98,https://doi.org/10.1137/S1064827595288589 +James H. Adler,Constrained Optimization for Liquid Crystal Equilibria.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#AdlerEMM16,https://doi.org/10.1137/141001846 +Fabio Di Benedetto,Superoptimal Preconditioned Conjugate Gradient Iteration for Image Deblurring.,2005,26,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc26.html#BenedettoEC05,https://doi.org/10.1137/S1064827503421653 +Paul Houston,hp-Adaptive Discontinuous Galerkin Finite Element Methods for First-Order Hyperbolic Problems.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#HoustonS01,https://doi.org/10.1137/S1064827500378799 +Oren E. Livne,Lean Algebraic Multigrid (LAMG): Fast Graph Laplacian Linear Solver.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#LivneB12,https://doi.org/10.1137/110843563 +Mardochée Magolu monga Made,Taking Advantage of the Potentialities of Dynamically Modified Block Incomplete Factorizations.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#Made98,https://doi.org/10.1137/S0036144594266284 +Sarah W. Gaaf,Probabilistic Bounds for the Matrix Condition Number with Extended Lanczos Bidiagonalization.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#GaafH15,https://doi.org/10.1137/140975218 +Gerardo Tauriello,Coupling Remeshed Particle and Phase Field Methods for the Simulation of Reaction-Diffusion on the Surface and the Interior of Deforming Geometries.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#TaurielloK13,https://doi.org/10.1137/130906441 +C. Coray,High Order Accuracy Optimized Methods for Constrained Numerical Solutions of Hyperbolic Conservation Laws.,1994,15,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc15.html#CorayK94,https://doi.org/10.1137/0915052 +Christian Lubich,Fast Convolution for Nonreflecting Boundary Conditions.,2002,24,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc24.html#LubichS02,https://doi.org/10.1137/S1064827501388741 +Loïc Giraldi,To Be or Not to be Intrusive? The Solution of Parametric and Stochastic Equations - Proper Generalized Decomposition.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#GiraldiLMN15,https://doi.org/10.1137/140969063 +Alfred A. Lorber,ODE Recursions and Iterative Solvers for Linear Equations.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#LorberCJ96,https://doi.org/10.1137/0917006 +Zhongyi Huang,A Bloch Decomposition-Based Split-Step Pseudospectral Method for Quantum Dynamics with Periodic Potentials.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#HuangJMS07,https://doi.org/10.1137/060652026 +Qingping Deng,Timely Communicaton: An Analysis for a Nonoverlapping Domain Decomposition Iterative Procedure.,1997,18,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc18.html#Deng97,https://doi.org/10.1137/S1064827595286797 +Felice Iavernaro,Convergence and Stability of Multistep Methods Solving Nonlinear Initial Value Problems.,1997,18,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc18.html#IavernaroM97,https://doi.org/10.1137/S1064827595287122 +Heinz-Otto Kreiss,An Embedded Boundary Method for the Wave Equation with Discontinuous Coefficients.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#KreissP06a,https://doi.org/10.1137/050641399 +Yang Cao 0001,Adjoint Sensitivity Analysis for Differential-Algebraic Equations: The Adjoint DAE System and Its Numerical Solution.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#CaoLPS03,https://doi.org/10.1137/S1064827501380630 +Serkan Gugercin,Model Reduction of Descriptor Systems by Interpolatory Projection Methods.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#GugercinSW13,https://doi.org/10.1137/130906635 +Andrew J. Majda,Numerical Study of the Mechanisms for Initiation of Reacting Shock Waves.,1990,11,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc11.html#MajdaR90,https://doi.org/10.1137/0911055 +Richard H. Burkhart,Asymptotic Expansion of the Free-space Green's Function for the Discrete 3-D Poisson Equation.,1997,18,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc18.html#Burkhart97,https://doi.org/10.1137/S1064827594261589 +Dganit Amitai,Implicit-Explicit Parallel Asynchronous Solver of Parabolic PDEs.,1998,19,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc19.html#AmitaiAII98,https://doi.org/10.1137/S1064827595281290 +Raymond H. Chan,Fast Band-Toeplitz Preconditioners for Hermitian Toeplitz Systems.,1994,15,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc15.html#ChanT94,https://doi.org/10.1137/0915011 +Zhiqiang Sheng,Monotone Finite Volume Schemes of Nonequilibrium Radiation Diffusion Equations on Distorted Meshes.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#ShengYY09,https://doi.org/10.1137/080721558 +Rodrigo B. Platte,C∞ Compactly Supported and Positive Definite Radial Kernels.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#Platte15,https://doi.org/10.1137/14M1000683 +Michele Benzi,Special Section: 2014 Copper Mountain Conference.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#Benzi15,https://doi.org/10.1137/15N973940 +Peter Kloeden,Gauss-Quadrature Method for One-Dimensional Mean-Field SDEs.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#KloedenS17,https://doi.org/10.1137/16M1095688 +Alfio Borzì,Multilevel Solution of Cell Vertex Cauchy-Riemann Equations.,1997,18,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc18.html#BorziMSV97,https://doi.org/10.1137/S1064827595281952 +Grady B. Wright,An Efficient and Robust Method for Simulating Two-Phase Gel Dynamics.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#WrightGF08,https://doi.org/10.1137/070695927 +Richard M. Crownover,A Least Squares Approach to Linear Discriminant Analysis.,1991,12,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc12.html#Crownover91,https://doi.org/10.1137/0912032 +Andreas Stathopoulos,Nearly Optimal Preconditioned Methods for Hermitian Eigenproblems under Limited Memory. Part I: Seeking One Eigenvalue.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#Stathopoulos07,https://doi.org/10.1137/050631574 +Laurent Gosse,Lagrangian Numerical Approximations to One-Dimensional Convolution-Diffusion Equations.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#GosseT06,https://doi.org/10.1137/050628015 +Stefan Vandewalle,Efficient Parallel Algorithms for Solving Initial-Boundary Value and Time-Periodic Parabolic Partial Differential Equations.,1992,13,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc13.html#VandewalleP92,https://doi.org/10.1137/0913075 +P. Mironowicz,A Task-Scheduling Approach for Efficient Sparse Symmetric Matrix-Vector Multiplication on a GPU.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#MironowiczDM15,https://doi.org/10.1137/14097135X +Robert I. McLachlan,Symplectic Integrators for Index 1 Constraints.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#McLachlanMVW13,https://doi.org/10.1137/120885085 +Veerle Ledoux,Solution of Sturm--Liouville Problems Using Modified Neumann Schemes.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#LedouxD10,https://doi.org/10.1137/090758398 +Ingo Matheis,Convergence of the Stochastic Weighted Particle Method for the Boltzmann Equation.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#MatheisW03,https://doi.org/10.1137/S1064827502406014 +Mo-Hong Chou,An Efficient Scheme for Unsteady Flow Past an Object with Boundary Conformal to a Circle.,1992,13,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc13.html#Chou92,https://doi.org/10.1137/0913051 +Badri Hiriyur,A Quasi-algebraic Multigrid Approach to Fracture Problems Based on Extended Finite Elements.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#HiriyurTWBK12,https://doi.org/10.1137/110819913 +Malte Braack,Duality Based A Posteriori Error Estimation for Quasi-Periodic Solutions Using Time Averages.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#BraackBT11,https://doi.org/10.1137/100809519 +Martin Drohmann,Reduced Basis Approximation for Nonlinear Parametrized Evolution Equations based on Empirical Operator Interpolation.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#DrohmannHO12,https://doi.org/10.1137/10081157X +Michal Kocvara,Constraint Interface Preconditioning for Topology Optimization Problems.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#KocvaraLT16,https://doi.org/10.1137/140980387 +Grace Hechmé,Efficient Methods for Computing Spectral Projectors for Linearized Hydrodynamic Equations.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#HechmeNS08,https://doi.org/10.1137/050648122 +Ching-Yuen Loh,A Lagrangian Random Choice Approach for Supersonic Real Gas Flows.,1994,15,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc15.html#LohL94,https://doi.org/10.1137/0915063 +Gary Cohen,Mixed Spectral Finite Elements for the Linear Elasticity System in Unbounded Domains.,2005,26,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc26.html#CohenF05,https://doi.org/10.1137/S1064827502407457 +Markus Klingler,The Finite Mass Method on Domains with Boundary.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#KlinglerLY05,https://doi.org/10.1137/S1064827502420483 +Mónika Polner,A Space-Time Finite Element Method for Neural Field Equations with Transmission Delays.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#PolnerVG17,https://doi.org/10.1137/16M1085024 +Kirk M. Soodhalter,Block Krylov Subspace Recycling for Shifted Systems with Unrelated Right-Hand Sides.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#Soodhalter16,https://doi.org/10.1137/140998214 +Gregor Gassner,A Skew-Symmetric Discontinuous Galerkin Spectral Element Discretization and Its Relation to SBP-SAT Finite Difference Methods.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#Gassner13,https://doi.org/10.1137/120890144 +Youngsoo Ha,Sixth-order Weighted Essentially Nonoscillatory Schemes Based on Exponential Polynomials.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#HaKYY16,https://doi.org/10.1137/15M1042814 +Massimo Bernaschi,A Factored Sparse Approximate Inverse Preconditioned Conjugate Gradient Solver on Graphics Processing Units.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#BernaschiBFJ16,https://doi.org/10.1137/15M1027826 +Cornelis W. Oosterlee,A Genetic Search for Optimal Multigrid Components Within a Fourier Analysis Setting.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#OosterleeW03,https://doi.org/10.1137/S1064827501397950 +Edward G. Phillips,Block Preconditioners for Stable Mixed Nodal and Edge finite element Representations of Incompressible Resistive MHD.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#PhillipsSCEP16,https://doi.org/10.1137/16M1074084 +Michael Griebel,A Particle-Partition of Unity Method-Part II: Efficient Cover Construction and Reliable Integration.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#GriebelS02a,https://doi.org/10.1137/S1064827501391588 +Ralph Menikoff,Errors When Shock Waves Interact Due to Numerical Shock Width.,1994,15,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc15.html#Menikoff94,https://doi.org/10.1137/0915075 +Yogi A. Erlangga,Multilevel Projection-Based Nested Krylov Iteration for Boundary Value Problems.,2008,30,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc30.html#ErlanggaN08,https://doi.org/10.1137/070684550 +Grey Ballard,Communication-optimal Parallel and Sequential Cholesky Decomposition.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#BallardDHS10,https://doi.org/10.1137/090760969 +Xuan Vinh Doan,A Proximal Point Algorithm for Sequential Feature Extraction Applications.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#DoanTV13,https://doi.org/10.1137/110843381 +Misha E. Kilmer,QMR-Based Projection Techniques for the Solution of Non-Hermitian Systems with Multiple Right-Hand Sides.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#KilmerMR01,https://doi.org/10.1137/S1064827599355542 +Samuel A. Isaacson,Incorporating Diffusion in Complex Geometries into Stochastic Chemical Kinetics Simulations.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#IsaacsonP06,https://doi.org/10.1137/040605060 +K. J. in 't Hout,A Contour Integral Method for the Black-Scholes and Heston Equations.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#HoutW11,https://doi.org/10.1137/090776081 +Lothar Reichel,A Matrix Problem with Application to Rapid Solution of Integral Equations.,1990,11,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc11.html#Reichel90,https://doi.org/10.1137/0911016 +Graham Horton,An Algorithm with Polylog Parallel Complexity for Solving Parabolic Partial Differential Equations.,1995,16,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc16.html#HortonVW95,https://doi.org/10.1137/0916034 +Peter Benner,Symplectic Balancing of Hamiltonian Matrices.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#Benner01,https://doi.org/10.1137/S1064827500367993 +Cun Mu,Scalable Robust Matrix Recovery: Frank-Wolfe Meets Proximal Methods.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#MuZWG16,https://doi.org/10.1137/15M101628X +C. Kristopher Garrett,A Fast Solver for Implicit Integration of the Vlasov-Poisson System in the Eulerian Framework.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#GarrettH18,https://doi.org/10.1137/17M1134184 +Vít Dolejsí,hp-Adaptation Driven by Polynomial-Degree-Robust A Posteriori Error Estimates for Elliptic Problems.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#DolejsiEV16,https://doi.org/10.1137/15M1026687 +Nicholas K.-R. Kevlahan,An Adaptive Wavelet Collocation Method for Fluid-Structure Interaction at High Reynolds Numbers.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#KevlahanV05,https://doi.org/10.1137/S1064827503428503 +Katharina Kormann,A Semi-Lagrangian Vlasov Solver in Tensor Train Format.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#Kormann15,https://doi.org/10.1137/140971270 +Yongxin Li,Convergence Results of a Local Minimax Method for Finding Multiple Critical Points.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#LiZ03,https://doi.org/10.1137/S1064827500379732 +N. Martin,Four-Field Finite Element Solver and Sensitivities for Quasi-Newtonian Flows.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#MartinM14,https://doi.org/10.1137/130914887 +Zhiqiang Cai,Solution Methods for the Poisson Equation with Corner Singularities: Numerical Results.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#CaiKS01,https://doi.org/10.1137/S1064827500372778 +Jingyue Wang,A Study on Anisotropic Mesh Adaptation for Finite Element Approximation of Eigenvalue Problems with Anisotropic Diffusion Operators.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#WangH15,https://doi.org/10.1137/140958554 +Buyang Li,A Fast and Stable Preconditioned Iterative Method for Optimal Control Problem of Wave Equations.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#LiLX15,https://doi.org/10.1137/15M1020526 +Roger G. Ghanem,Special Issue on Uncertainty Quantification.,2004,26,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc26.html#GhanemW04, +Valeria Simoncini,A New Iterative Method for Solving Large-Scale Lyapunov Matrix Equations.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#Simoncini07,https://doi.org/10.1137/06066120X +Allison H. Baker,Multigrid Smoothers for Ultraparallel Computing.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#BakerFKY11,https://doi.org/10.1137/100798806 +Judith D. Gardiner,A Stabilized Matrix Sign Function Algorithm for Solving Algebraic Riccati Equations.,1997,18,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc18.html#Gardiner97,https://doi.org/10.1137/S1064827593259078 +Gene H. Golub,A Fast Poisson Solver for the Finite Difference Solution of the Incompressible Navier-Stokes Equations.,1998,19,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc19.html#GolubHST98,https://doi.org/10.1137/S1064827595285299 +Svetozar Margenov,Algebraic Multilevel Preconditioning of Anisotropic Elliptic Problems.,1994,15,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc15.html#MargenovV94,https://doi.org/10.1137/0915062 +Evelyn Buckwar,Stochastic Runge--Kutta Methods for It[o-circumflex] SODEs with Small Noise.,2010,32,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc32.html#BuckwarRW10,https://doi.org/10.1137/090763275 +Cosmin G. Petra,An Augmented Incomplete Factorization Approach for Computing the Schur Complement in Stochastic Optimization.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#PetraSLG14,https://doi.org/10.1137/130908737 +Frédéric Legoll,A Micro-Macro Parareal Algorithm: Application to Singularly Perturbed Ordinary Differential Equations.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#LegollLS13,https://doi.org/10.1137/120872681 +Panayot S. Vassilevski,Computation of Constants in the Strengthened Cauchy Inequality for Elliptic Bilinear Forms with Anisotropy.,1992,13,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc13.html#VassilevskiE92,https://doi.org/10.1137/0913037 +Manuel J. Castro,Central Schemes for Nonconservative Hyperbolic Systems.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#CastroPPR12,https://doi.org/10.1137/110828873 +Chong Gu,Minimizing GCV/GML Scores with Multiple Smoothing Parameters via the Newton Method.,1991,12,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc12.html#GuW91,https://doi.org/10.1137/0912021 +Martin Storath,Exact Algorithms for L1-TV Regularization of Real-Valued or Circle-Valued Signals.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#StorathWU16,https://doi.org/10.1137/15M101796X +M. Pellikka,Homology and Cohomology Computation in Finite Element Modeling.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#PellikkaSKG13,https://doi.org/10.1137/130906556 +Slimane Adjerid,A Posteriori Finite Element Error Estimation for Diffusion Problems.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#AdjeridBF99,https://doi.org/10.1137/S1064827596305040 +Xue Jiang,Eddy Current Model for Nondestructive Evaluation with Thin Cracks.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#JiangLZ16,https://doi.org/10.1137/15M1015492 +J. Kenneth Wolfenbarger,Regularized Solutions to the Aerosol Data Inversion Problem.,1991,12,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc12.html#WolfenbargerS91,https://doi.org/10.1137/0912019 +Matthias K. Gobbert,Long-Time Simulations on High Resolution Meshes to Model Calcium Waves in a Heart Cell.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#Gobbert08,https://doi.org/10.1137/070692261 +Masayuki Yano,A Reduced Basis Method for Coercive Equations with an Exact Solution Certificate and Spatio-Parameter Adaptivity: Energy-Norm and Output Error Bounds.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#Yano18,https://doi.org/10.1137/16M1071341 +Mihai Anitescu,A Matrix-free Approach for Solving the Parametric Gaussian Process Maximum Likelihood Problem.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#AnitescuCW12,https://doi.org/10.1137/110831143 +Luis Ortiz-Gracia,A Highly Efficient Shannon Wavelet Inverse Fourier Technique for Pricing European Options.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#Ortiz-GraciaO16,https://doi.org/10.1137/15M1014164 +María J. Cáceres,Deterministic Simulation of the Boltzmann-Poisson System in GaAs-Based Semiconductors.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#CaceresCM06,https://doi.org/10.1137/040607526 +Albert Parker,Sampling Gaussian Distributions in Krylov Spaces with Conjugate Gradients.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#ParkerF12,https://doi.org/10.1137/110831404 +Bengt Fornberg,Stable Computations with Gaussian Radial Basis Functions.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#FornbergLF11,https://doi.org/10.1137/09076756X +Mo Mu,Preconditioning for Domain Decomposition through Function Approximation.,1994,15,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc15.html#MuR94,https://doi.org/10.1137/0915087 +Reinhard Nabben,A Comparison of Deflation and the Balancing Preconditioner.,2006,27,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc27.html#NabbenV06,https://doi.org/10.1137/040608246 +Patrick Henning,Localized Orthogonal Decomposition Techniques for Boundary Value Problems.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#HenningM14,https://doi.org/10.1137/130933198 +Santtu Salmi,An IMEX-Scheme for Pricing Options under Stochastic Volatility Models with Jumps.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#SalmiTS14,https://doi.org/10.1137/130924905 +A. Dutt,Fast Fourier Transforms for Nonequispaced Data.,1993,14,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc14.html#DuttR93,https://doi.org/10.1137/0914081 +Roman N. Makarov,Stochastic Algorithms with Hermite Cubic Spline Interpolation for Global Estimation of Solutions of Boundary Value Problems.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#MakarovS07,https://doi.org/10.1137/040619156 +Colin Desa,Preconditioned Iterative Methods for Homotopy Curve Tracking.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#DesaIRWW92,https://doi.org/10.1137/0913002 +Xinlong Feng,Long Time Numerical Simulations for Phase-Field Problems Using p-Adaptive Spectral Deferred Correction Methods.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#FengTY15,https://doi.org/10.1137/130928662 +Roland Becker,Stabilized Finite Element Formulation with Domain Decomposition for Incompressible Flows.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#BeckerCLT15,https://doi.org/10.1137/140975796 +Dmitry Pekurovsky,P3DFFT: A Framework for Parallel Computations of Fourier Transforms in Three Dimensions.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#Pekurovsky12,https://doi.org/10.1137/11082748X +C. Cartwright,Parallel Support Set Searches for Meshfree Methods.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#CartwrightOS06,https://doi.org/10.1137/S1064827502414321 +Francesc Aràndiga,Multiresolution Based on Weighted Averages of the Hat Function II: Nonlinear Reconstruction Techniques.,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#ArandigaDH98,https://doi.org/10.1137/S1064827596308822 +Roman Andreev,Wavelet-In-Time Multigrid-In-Space Preconditioning of Parabolic Evolution Equations.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#Andreev16,https://doi.org/10.1137/140998639 +Alastair Gregory,A Seamless Multilevel Ensemble Transform Particle Filter.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#GregoryC17,https://doi.org/10.1137/16M1102021 +Bengt Fornberg,A Stable Algorithm for Flat Radial Basis Functions on a Sphere.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#FornbergP07,https://doi.org/10.1137/060671991 +Ramendra K. Sahoo,A Composite Adaptive Grid Generation and Migration Technique for Materials Processing Problems.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#SahooP03,https://doi.org/10.1137/S1064827501392235 +Mario A. Casarin,Timely Communication: Diagonal Edge Preconditioners in p-version and Spectral Element Methods.,1997,18,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc18.html#Casarin97,https://doi.org/10.1137/S1064827595292321 +Barry Joe,Construction of Three-Dimensional Improved-Quality Triangulations Using Local Transformations.,1995,16,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc16.html#Joe95,https://doi.org/10.1137/0916075 +Hailiang Liu,Maximum-Principle-Satisfying Third Order Discontinuous Galerkin Schemes for Fokker-Planck Equations.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#LiuY14,https://doi.org/10.1137/130935161 +Xiao-Wen Chang,An Orthogonal Transformation Algorithm for GPS Positioning.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#ChangP03,https://doi.org/10.1137/S1064827501397937 +David H. Bailey,Efficient Detection of a Continuous-Wave Signal with a Linear Frequency Drift.,1995,16,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc16.html#BaileyS95,https://doi.org/10.1137/0916071 +Ronald B. Morgan,Preconditioning the Lanczos Algorithm for Sparse Symmetric Eigenvalue Problems.,1993,14,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc14.html#MorganS93,https://doi.org/10.1137/0914037 +George Biros,Parallel Lagrange-Newton-Krylov-Schur Methods for PDE-Constrained Optimization. Part I: The Krylov-Schur Solver.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#BirosG05,https://doi.org/10.1137/S106482750241565X +Erik Adler Christensen,Evaluation of Proper Orthogonal Decomposition-Based Decomposition Techniques Applied to Parameter-Dependent Nonturbulent Flows.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#ChristensenBS99,https://doi.org/10.1137/S1064827598333181 +Craig S. MacDonald,Efficient Moving Mesh Methods for Q-Tensor Models of Nematic Liquid Crystals.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#MacDonaldMRN15,https://doi.org/10.1137/130923683 +Yan Xu,Local Discontinuous Galerkin Method for the Hunter--Saxton Equation and Its Zero-Viscosity and Zero-Dispersion Limits.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#XuS08,https://doi.org/10.1137/080714105 +R. Touma,Well-Balanced Unstaggered Central Schemes for the Euler Equations with Gravitation.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#ToumaKK16,https://doi.org/10.1137/140992667 +Xiaofeng Yang 0003,Efficient Second Order Unconditionally Stable Schemes for a Phase Field Moving Contact Line Model Using an Invariant Energy Quadratization Approach.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#YangY18,https://doi.org/10.1137/17M1125005 +Matteo Parsani,Entropy Stable Staggered Grid Discontinuous Spectral Collocation Methods of any Order for the Compressible Navier-Stokes Equations.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#ParsaniCFN16,https://doi.org/10.1137/15M1043510 +Luca Dieci,Numerical Calculation of Invariant Tori.,1991,12,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc12.html#DieciLR91,https://doi.org/10.1137/0912033 +Michael Schäfer,Parallel Algorithms for the Numerical Solution of Incompressible Finite Elasticity Problems.,1991,12,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc12.html#Schafer91,https://doi.org/10.1137/0912014 +C. William Gear,Projective Methods for Stiff Differential Equations: Problems with Gaps in Their Eigenvalue Spectrum.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#GearK03,https://doi.org/10.1137/S1064827501388157 +Stefania Corsaro,Semi-Implicit Covolume Method in 3D Image Segmentation.,2006,28,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc28.html#CorsaroMSS06,https://doi.org/10.1137/060651203 +Michele Benzi,Multilevel Algorithms for Large-Scale Interior Point Methods.,2009,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#BenziHT09,https://doi.org/10.1137/060650799 +Roland W. Freund,Conjugate Gradient-Type Methods for Linear Systems with Complex Symmetric Coefficient Matrices.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#Freund92,https://doi.org/10.1137/0913023 +Bo Strand,Simulations of Acoustic Wave Phenomena Using High-Order Finite Difference Approximations.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#Strand99,https://doi.org/10.1137/S1064827596312523 +Grady B. Wright,Extension of Chebfun to Periodic Functions.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#WrightJMT15,https://doi.org/10.1137/141001007 +Xiaojie Wang,Higher Order Strong Approximations of Semilinear Stochastic Wave Equation with Additive Space-time White Noise.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#WangGT14,https://doi.org/10.1137/130937524 +James Glimm,Three-Dimensional Front Tracking.,1998,19,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc19.html#GlimmG0SZZ98,https://doi.org/10.1137/S1064827595293600 +André Massing,Efficient Implementation of Finite Element Methods on Nonmatching and Overlapping Meshes in Three Dimensions.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#MassingLL13,https://doi.org/10.1137/11085949X +Axel Klawonn,Nonlinear FETI-DP and BDDC Methods: A Unified Framework and Parallel Results.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#KlawonnLRU17,https://doi.org/10.1137/16M1102495 +Farbod Roosta-Khorasani,Stochastic Algorithms for Inverse Problems Involving PDEs and many Measurements.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#Roosta-KhorasaniDA14,https://doi.org/10.1137/130922756 +Tony F. Chan,Identification of Discontinuous Coefficients in Elliptic Problems Using Total Variation Regularization.,2003,25,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc25.html#ChanT03,https://doi.org/10.1137/S1064827599326020 +Jessica Bosch,Preconditioning for Vector-Valued Cahn-Hilliard Equations.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#BoschS15,https://doi.org/10.1137/14M0973633 +Francis X. Giraldo,Semi-Implicit Formulations of the Navier--Stokes Equations: Application to Nonhydrostatic Atmospheric Modeling.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#GiraldoRL10,https://doi.org/10.1137/090775889 +Jianwei Ma,Combined Complex Ridgelet Shrinkage and Total Variation Minimization.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#MaF06,https://doi.org/10.1137/05062737X +Quan M. Bui,Algebraic Multigrid Preconditioners for Multiphase Flow in Porous Media.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#BuiEM17,https://doi.org/10.1137/16M1082652 +Linzhang Lu,A Fast Algorithm For Fast Train Palindromic Quadratic Eigenvalue Problems.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#LuWKLL16,https://doi.org/10.1137/16M1063563 +Meghan O'Connell,Computing Reduced Order Models via Inner-Outer Krylov Recycling in Diffuse Optical Tomography.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#OConnellKSG17,https://doi.org/10.1137/16M1062880 +Matthew Elsey,Fast and Accurate Redistancing by Directional Optimization.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#ElseyE14,https://doi.org/10.1137/120889447 +Edward Givelberg,A Weak Formulation of the Immersed Boundary Method.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#Givelberg12,https://doi.org/10.1137/100785181 +Carsten Carstensen,Fully Reliable Localized Error Control in the FEM.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#CarstensenF99,https://doi.org/10.1137/S1064827597327486 +Richard H. Byrd,A Limited Memory Algorithm for Bound Constrained Optimization.,1995,16,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc16.html#ByrdLNZ95,https://doi.org/10.1137/0916069 +Gijs L. Kooij,An Exponential Time Integrator for the Incompressible Navier-Stokes Equation.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#KooijBG18,https://doi.org/10.1137/17M1121950 +Shi Jin,Efficient Stochastic Asymptotic-Preserving Implicit-Explicit Methods for Transport Equations with Diffusive Scalings and Random Inputs.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#JinLP18,https://doi.org/10.1137/17M1120518 +Jacques Baranger,The Aitken-Like Acceleration of the Schwarz Method on Nonuniform Cartesian Grids.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#BarangerGO08,https://doi.org/10.1137/050636607 +Christine Thomas-Agnan,Smoothing Periodic Curves by a Method of Regularization.,1990,11,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc11.html#Thomas-Agnan90,https://doi.org/10.1137/0911027 +éric Gourdin,Global Optimization Decomposition Methods for Bounded Parameter Minimax Risk Evaluation.,1994,15,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc15.html#GourdinJM94,https://doi.org/10.1137/0915002 +Anders Forsgren,Computing Modified Newton Directions Using a Partial Cholesky Factorization.,1995,16,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc16.html#ForsgrenGM95,https://doi.org/10.1137/0916009 +Thilo Penzl,A Cyclic Low-Rank Smith Method for Large Sparse Lyapunov Equations.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#Penzl99,https://doi.org/10.1137/S1064827598347666 +Lei Li,A Simple Parallel Algorithm for Polynomial Evaluation.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#LiHN96,https://doi.org/10.1137/0917018 +Laurent Gosse,Maxwellian Decay for Well-balanced Approximations of a Super-characteristic Chemotaxis Model.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#Gosse12,https://doi.org/10.1137/10081753X +T.-Y. Li,Implementing the Parallel Quasi-Laguerre's Algorithm for Symmetric Tridiagonal Eigenproblems.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#LiZ99a,https://doi.org/10.1137/S1064827596310585 +Chao Yang 0001,An Algebraic Substructuring Method for Large-Scale Eigenvalue Calculation.,2005,27,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc27.html#YangGBLLHN05,https://doi.org/10.1137/040613767 +Jan S. Hesthaven,A Stable Penalty Method for the Compressible Navier-Stokes Equations: III. Multidimensional Domain Decomposition Schemes.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#Hesthaven98,https://doi.org/10.1137/S1064827596299470 +Andrew T. T. McRae,Optimal-Transport-Based Mesh Adaptivity on the Plane and Sphere Using Finite Elements.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#McRaeCB18,https://doi.org/10.1137/16M1109515 +Tomi Huttunen,The Ultra-Weak Variational Formulation for Elastic Wave Problems.,2004,25,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc25.html#HuttunenMCK04,https://doi.org/10.1137/S1064827503422233 +Giuseppe Gambolati,Nested Iterations for Symmetric Eigenproblems.,1995,16,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc16.html#GambolatiPP95,https://doi.org/10.1137/0916012 +Daniel Lowell,Stencil-Aware GPU Optimization of Iterative Solvers.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#LowellGHKCMNSSS13,https://doi.org/10.1137/120883153 +Michael K. Ng,Solving Constrained Total-variation Image Restoration and Reconstruction Problems via Alternating Direction Methods.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#NgWY10,https://doi.org/10.1137/090774823 +Ahmed Naga,Enhancing Eigenvalue Approximation by Gradient Recovery.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#NagaZZ06,https://doi.org/10.1137/050640588 +Eduardo F. D'Azevedo,Are Bilinear Quadrilaterals Better Than Linear Triangles?,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#DAzevedo00,https://doi.org/10.1137/S106482759630406X +Lorenzo Tamellini,Model Reduction Based on Proper Generalized Decomposition for the Stochastic Steady Incompressible Navier-Stokes Equations.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#TamelliniMN14,https://doi.org/10.1137/120878999 +Jesús A. De Loera,A Sampling Kaczmarz-Motzkin Algorithm for Linear Feasibility.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#LoeraHN17,https://doi.org/10.1137/16M1073807 +Ana Alonso Rodríguez,Iterative Methods for the Saddle-Point Problem Arising from the HC/EI Formulation of the Eddy Current Problem.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#RodriguezH09,https://doi.org/10.1137/080722278 +Christoph Lehrenfeld,Nitsche-XFEM with Streamline Diffusion Stabilization for a Two-Phase Mass Transport Problem.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#LehrenfeldR12,https://doi.org/10.1137/110855235 +Guillaume Perrin,Identification of Polynomial Chaos Representations in High Dimension from a Set of Realizations.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#PerrinSDF12,https://doi.org/10.1137/11084950X +M. A. Hansen,Pseudotransient Continuation for Combustion Simulation with Detailed Reaction Mechanisms.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#HansenS16,https://doi.org/10.1137/15M1023166 +Eran Treister,Non-Galerkin Multigrid Based on Sparsified Smoothed Aggregation.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#TreisterY15,https://doi.org/10.1137/140952570 +Christiane Helzel,A High-Order Unstaggered Constrained-Transport Method for the Three-Dimensional Ideal Magnetohydrodynamic Equations Based on the Method of Lines.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#HelzelRT13,https://doi.org/10.1137/120870323 +Peter D. Lax,Solution of Two-Dimensional Riemann Problems of Gas Dynamics by Positive Schemes.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#LaxL98,https://doi.org/10.1137/S1064827595291819 +Richard A. Smith,Semicoarsening Multigrid on a Hypercube.,1992,13,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc13.html#SmithW92,https://doi.org/10.1137/0913074 +Jiaping Yu,Local and Parallel Finite Element Algorithms Based on the Partition of Unity for the Stokes Problem.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#YuSZ14,https://doi.org/10.1137/130925748 +Maria Adela Puscas,A Three-Dimensional Conservative Coupling Method Between an Inviscid Compressible Flow and a Moving Rigid Solid.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#PuscasM15,https://doi.org/10.1137/140962930 +Michael L. Parks,Recycling Krylov Subspaces for Sequences of Linear Systems.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#ParksSMJM06,https://doi.org/10.1137/040607277 +Yvon Maday,Analysis of Iterative Methods for the Steady and Unsteady Stokes Problem: Application to Spectral Element Discretizations.,1993,14,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc14.html#MadayMPR93,https://doi.org/10.1137/0914020 +Vyacheslav Borisov,On Monotonicity of Difference Schemes for Computational Physics.,2004,25,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc25.html#BorisovS04,https://doi.org/10.1137/S1064827502406695 +Elena Virnik,An Algebraic Multigrid Preconditioner for a Class of Singular M-Matrices.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#Virnik07,https://doi.org/10.1137/060659272 +Dante Kalise,Local Minimization Algorithms for Dynamic Programming Equations.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#KaliseKK16,https://doi.org/10.1137/15M1010269 +Francisco José Gaspar,Multigrid Waveform Relaxation for the Time-Fractional Heat Equation.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#GasparR17,https://doi.org/10.1137/16M1090193 +Christian H. Bischof,A Cholesky Up- and Downdating Algorithm for Systolic and SIMD Architectures.,1993,14,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc14.html#BischofPT93,https://doi.org/10.1137/0914042 +Veselin Dobrev,Surface Reconstruction and Image Enhancement via L1-Minimization.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#DobrevGP10,https://doi.org/10.1137/09075408X +Jared Tanner,Normalized Iterative Hard Thresholding for Matrix Completion.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#TannerW13,https://doi.org/10.1137/120876459 +Joel E. Dendy Jr.,Revenge of the Semicoarsening Frequency Decomposition Multigrid Method.,1997,18,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc18.html#Dendy97,https://doi.org/10.1137/S1064827594278095 +Julianne M. Chung,A Framework for Regularization via Operator Approximation.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#ChungKO15,https://doi.org/10.1137/130945363 +Donald J. McGillen,A Particle Scheme Incorporating an Elliptic Approximation for the Relativistic Vlasov-Maxwell System.,1995,16,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc16.html#McGillen95,https://doi.org/10.1137/0916077 +Jerry Markman,An Iterative Algorithm for Solving Hamilton-Jacobi Type Equations.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#MarkmanK00,https://doi.org/10.1137/S1064827598344315 +Johannes Tausch,Equivariant Preconditioners for Boundary Element Methods.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#Tausch96,https://doi.org/10.1137/0917008 +Jed A. Duersch,Randomized QR with Column Pivoting.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#DuerschG17,https://doi.org/10.1137/15M1044680 +Marco Donatelli,On the Regularizing Power of Multigrid-type Algorithms.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#DonatelliC06,https://doi.org/10.1137/040605023 +Donald J. Estep,Computational Error Estimation and Adaptive Error Control for a Finite Element Solution of Launch Vehicle Trajectory Problems.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#EstepHW99,https://doi.org/10.1137/S1064827599337732 +Jianyu Pan,Preconditioning Techniques for Diagonal-*-Toeplitz Matrices in Fractional Diffusion Equations.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#PanKNS14,https://doi.org/10.1137/130931795 +Antonio Cosmin Ionita,Data-Driven Parametrized Model Reduction in the Loewner Framework.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#IonitaA14,https://doi.org/10.1137/130914619 +Edward Givelberg,Distributed Immersed Boundary Simulation in Titanium.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#GivelbergY06,https://doi.org/10.1137/040618734 +Ilse C. F. Ipsen,Solving the Symmetric Tridiagonal Eigenvalue Problem on the Hypercube.,1990,11,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc11.html#IpsenJ90,https://doi.org/10.1137/0911013 +ümit V. çatalyürek,Hypergraph Partitioning-Based Fill-Reducing Ordering for Symmetric Matrices.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#CatalyurekAK11,https://doi.org/10.1137/090757575 +Weimin Han,Discrete-Ordinate Discontinuous Galerkin Methods for Solving the Radiative Transfer Equation.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#HanHE10,https://doi.org/10.1137/090767340 +Simon Tavener,Adjoint Based A Posteriori Analysis of Multiscale Mortar Discretizations with Multinumerics.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#TavenerW13,https://doi.org/10.1137/12089973X +Rommel Bustinza,A Local Discontinuous Galerkin Method for Nonlinear Diffusion Problems with Mixed Boundary Conditions.,2004,26,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc26.html#BustinzaG04,https://doi.org/10.1137/S1064827502419415 +Boris N. Khoromskij,Frequency Filtering for Elliptic Interface Problems with Lagrange Multipliers.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#KhoromskijMW99,https://doi.org/10.1137/S1064827595289832 +T. B. Jönsthövel,On the Use of Rigid Body Modes in the Deflated Preconditioned Conjugate Gradient Method.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#JonsthovelGVS13,https://doi.org/10.1137/100803651 +Lori A. Freitag,A Parallel Algorithm for Mesh Smoothing.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#FreitagJP99,https://doi.org/10.1137/S1064827597323208 +Christian Ketelsen,Least-Squares Finite Element Discretization of the Neutron Transport Equation in Spherical Geometry.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#KetelsenMS15,https://doi.org/10.1137/140975152 +Qing Fan,Performance Issues for Iterative Solvers in Device Simulation.,1996,17,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc17.html#FanFMT96,https://doi.org/10.1137/0917009 +George M. Slota,Complex Network Partitioning Using Label Propagation.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#SlotaMR16,https://doi.org/10.1137/15M1026183 +Jin Huang,Extrapolation Algorithms for Solving Mixed Boundary Integral Equations of the Helmholtz Equation by Mechanical Quadrature Methods.,2009,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#HuangW09,https://doi.org/10.1137/080740763 +Daniel Ruprecht,Spectral Deferred Corrections with Fast-wave Slow-wave Splitting.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#RuprechtS16,https://doi.org/10.1137/16M1060078 +Xuejun Zhang,Multilevel Schwarz Methods for the Biharmonic Dirichlet Problem.,1994,15,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc15.html#Zhang94,https://doi.org/10.1137/0915041 +Guang-Shan Jiang,Weighted ENO Schemes for Hamilton-Jacobi Equations.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#JiangP00,https://doi.org/10.1137/S106482759732455X +Stewart J. Anderson,Smoothing Polynomial Splines for Bivariate Data.,1990,11,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc11.html#AndersonJS90,https://doi.org/10.1137/0911044 +M. V. Rakhuba,Fast Multidimensional Convolution in Low-Rank Tensor Formats via Cross Approximation.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#RakhubaO15,https://doi.org/10.1137/140958529 +Hans De Sterck,Least-Squares Finite Element Methods and Algebraic Multigrid Solvers for Linear Hyperbolic PDEs.,2004,26,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc26.html#SterckMMO04,https://doi.org/10.1137/S106482750240858X +Stanley Bak,Some Improvements for the Fast Sweeping Method.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#BakMR10,https://doi.org/10.1137/090749645 +Andreas Stathopoulos,A Block Orthogonalization Procedure with Constant Synchronization Requirements.,2002,23,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc23.html#StathopoulosW02,https://doi.org/10.1137/S1064827500370883 +Elisabeth Larsson,A Domain Decomposition Method for the Helmholtz Equation in a Multilayer Domain.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#Larsson99,https://doi.org/10.1137/S1064827597325323 +Kathrin Hatz,Estimating Parameters in Optimal Control Problems.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#HatzSB12,https://doi.org/10.1137/110823390 +Jonathan P. Whiteley,A Discontinuous Galerkin Finite Element Method for Multiphase Viscous Flow.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#Whiteley15,https://doi.org/10.1137/14098497X +Yu Zhuang,Stabilized Explicit-Implicit Domain Decomposition Methods for the Numerical Solution of Parabolic Equations.,2002,24,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc24.html#ZhuangS02,https://doi.org/10.1137/S1064827501384755 +Diego Ruiz-Antolín,A Nonuniform Fast Fourier Transform Based on Low Rank Approximation.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#Ruiz-AntolinT18,https://doi.org/10.1137/17M1134822 +Martin Huber,Simulation of Diffraction in Periodic Media with a Coupled Finite Element and Plane Wave Approach.,2009,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#HuberSSZ09,https://doi.org/10.1137/070705118 +Faiz A. Al-Khayyal,Solution of Structured Geometric Programs in Sample Survey Design.,1992,13,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc13.html#Al-KhayyalHCDKP92,https://doi.org/10.1137/0913052 +Emmanuel J. Candès,Fast Computation of Fourier Integral Operators.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#CandesDY07,https://doi.org/10.1137/060671139 +Joshua D. Griffin,Asynchronous Parallel Generating Set Search for Linearly Constrained Optimization.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#GriffinKL08,https://doi.org/10.1137/060664161 +Mark H. Carpenter,The Theoretical Accuracy of Runge-Kutta Time Discretizations for the Initial Boundary Value Problem: A Study of the Boundary Error.,1995,16,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc16.html#CarpenterGAD95,https://doi.org/10.1137/0916072 +Jan G. Verwer,An Implicit-Explicit Runge-Kutta-Chebyshev Scheme for Diffusion-Reaction Equations.,2004,25,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc25.html#VerwerS04,https://doi.org/10.1137/S1064827503429168 +Achi Brandt,Multigrid Solution of an Elliptic Boundary-Value Problem with Integral Constraints.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#BrandtIYS99,https://doi.org/10.1137/S1064827597331813 +Y. Wang,Fluctuating Hydrodynamics Methods for Dynamic Coarse-Grained Implicit-Solvent Simulations in LAMMPS.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#WangSA16,https://doi.org/10.1137/15M1026390 +Alexander Kurganov,Central-Upwind Schemes for Two-Layer Shallow Water Equations.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#KurganovP09,https://doi.org/10.1137/080719091 +Vladimir Karlin,"Time-Marching Algorithms for Nonlocal Evolution Equations Based Upon ""Approximate Approximations"".",1997,18,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc18.html#KarlinM97,https://doi.org/10.1137/S1064827594270221 +Jie Chen 0007,Computing f(A)b via Least Squares Polynomial Approximations.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#ChenAS11,https://doi.org/10.1137/090778250 +Wei Cai,Direct Numerical Calculations of a Neutral Stability Curve for One-Dimensional Detonations.,1996,17,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc17.html#CaiOZ96,https://doi.org/10.1137/0917053 +Victorita Dolean,Nonlinear Preconditioning: How to Use a Nonlinear Schwarz Method to Precondition Newton's Method.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#DoleanGKKM16,https://doi.org/10.1137/15M102887X +Romain Aubry,Linear Sources for Mesh Generation.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#AubryKMDL13,https://doi.org/10.1137/120874953 +Mark Ainsworth,A Hierarchical Domain Decomposition Preconditioner for h-P Finite Element Approximation on Locally Refined Meshes.,1996,17,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc17.html#Ainsworth96,https://doi.org/10.1137/S1064827594272578 +Zhong-Zhi Bai,On Preconditioned Iterative Methods for Burgers Equations.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#BaiHN07,https://doi.org/10.1137/060649124 +Jichun Li,Developing Finite Element Methods for Maxwell's Equations in a Cole-Cole Dispersive Medium.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#LiHL11,https://doi.org/10.1137/110827624 +Ahmed Khamayseh,Hybrid Curve Point Distribution Algorithms.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#KhamaysehK02,https://doi.org/10.1137/S1064827500367592 +Jianbing Chen,Improving Point Selection in Cubature by a New Discrepancy.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#ChenZ13,https://doi.org/10.1137/12089377X +Henson Van Emden,Element-Free AMGe: General Algorithms for Computing Interpolation Weights in AMG.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#EmdenV01,https://doi.org/10.1137/S1064827500372997 +Abdou Garba,A Helmholtz-Hodge Projection Method Using an Iterative Gauge Computation to Solve the 3D Generalized Stokes Problem.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#GarbaH13,https://doi.org/10.1137/110860902 +Olivier Dubois 0001,The Optimized Schwarz Method with a Coarse Grid Correction.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#DuboisGLSS12,https://doi.org/10.1137/090774434 +Lars Karlsson,Algorithms for Hessenberg-Triangular Reduction of Fiedler Linearization of Matrix Polynomials.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#KarlssonT15,https://doi.org/10.1137/140970458 +Bernard Bialecki,Spectral Chebyshev Collocation for the Poisson and Biharmonic Equations.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#BialeckiK10,https://doi.org/10.1137/100782516 +Jean-Paul Berrut,The Linear Barycentric Rational Quadrature Method for Volterra Integral Equations.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#BerrutHK14,https://doi.org/10.1137/120904020 +Pedro Gonnet,Efficient and Scalable Algorithms for Smoothed Particle Hydrodynamics on Hybrid Shared/Distributed-Memory Architectures.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#Gonnet15,https://doi.org/10.1137/140964266 +S. V. Dolgov,Fast Solution of Parabolic Problems in the Tensor Train/Quantized Tensor Train Format with Initial Application to the Fokker-Planck Equation.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#DolgovKO12,https://doi.org/10.1137/120864210 +John C. Bowman,Efficient Dealiased Convolutions without Padding.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#BowmanR11,https://doi.org/10.1137/100787933 +Patrick Amestoy,On the Complexity of the Block Low-Rank Multifrontal Factorization.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#AmestoyBLM17,https://doi.org/10.1137/16M1077192 +David A. Kopriva,An Energy Stable Discontinuous Galerkin Spectral Element Discretization for Variable Coefficient Advection Problems.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#KoprivaG14,https://doi.org/10.1137/130928650 +Stefano Zampini,PCBDDC: A Class of Robust Dual-Primal Methods in PETSc.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#Zampini16,https://doi.org/10.1137/15M1025785 +Thomas Strohmer,A Levinson-Galerkin Algorithm for Regularized Trigonometric Approximation.,2000,22,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc22.html#Strohmer00,https://doi.org/10.1137/S1064827597329254 +Guoqiao You,Eulerian Methods for Visualizing Continuous Dynamical Systems using Lyapunov Exponents.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#YouWL17,https://doi.org/10.1137/16M1066890 +Weizhang Huang,The Adaptive Verlet Method.,1997,18,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc18.html#HuangL97,https://doi.org/10.1137/S1064827595284658 +Carsten Carstensen,A Posteriori Finite Element Error Control for the P-Laplace Problem.,2003,25,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc25.html#CarstensenK03,https://doi.org/10.1137/S1064827502416617 +Emmanuel Hanert,A Chebyshev PseudoSpectral Method to Solve the Space-Time Tempered Fractional Diffusion Equation.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#HanertP14,https://doi.org/10.1137/130927292 +Padma Raghavan,Distributed Sparse Gaussian Elimination and Orthogonal Factorization.,1995,16,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc16.html#Raghavan95,https://doi.org/10.1137/0916085 +Axel Klawonn,Block-Triangular Preconditioners for Saddle Point Problems with a Penalty Term.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#Klawonn98,https://doi.org/10.1137/S1064827596303624 +Mark Sussman,A Stable and Efficient Method for Treating Surface Tension in Incompressible Two-Phase Flow.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#SussmanO09,https://doi.org/10.1137/080732122 +Sean Carnaffan,Solving Multidimensional Fractional Fokker-Planck Equations via Unbiased Density Formulas for Anomalous Diffusion Processes.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#CarnaffanK17,https://doi.org/10.1137/17M111482X +Chao Yang 0002,A Fully Implicit Domain Decomposition Algorithm for Shallow Water Equations on the Cubed-Sphere.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#YangCC10,https://doi.org/10.1137/080727348 +Michael A. Heroux,Parallel Segregated Schur Complement Methods for Fluid Density Functional Theories.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#HerouxSF07,https://doi.org/10.1137/060661594 +Richard E. Ewing,A Modified Finite Volume Approximation of Second-Order Elliptic Equations with Discontinuous Coefficients.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#EwingIL01,https://doi.org/10.1137/S1064827599353877 +Arvind K. Saibaba,A Flexible Krylov Solver for Shifted Systems with Application to Oscillatory Hydraulic Tomography.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#SaibabaBK13,https://doi.org/10.1137/120902690 +Stefan Hüeber,Efficient Algorithms for Problems with Friction.,2007,29,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc29.html#HueberMW07,https://doi.org/10.1137/050634141 +Bruno Lombard,The Explicit Simplified Interface Method for Compressible Multicomponent Flows.,2005,27,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc27.html#LombardD05,https://doi.org/10.1137/030601041 +Yousef Saad,Distributed Schur Complement Techniques for General Sparse Linear Systems.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#SaadS99,https://doi.org/10.1137/S1064827597328996 +Francisco José Gaspar,Fourier Analysis for Multigrid Methods on Triangular Grids.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#GasparGL09,https://doi.org/10.1137/080713483 +Martin K. Bernauer,Optimal Control of the Classical Two-Phase Stefan Problem in Level Set Formulation.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#BernauerH11,https://doi.org/10.1137/100783327 +Xavier Antoine,Absorbing Boundary Conditions for General Nonlinear Schrödinger Equations.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#AntoineBK11,https://doi.org/10.1137/090780535 +Huazhong Tang,A Class of High Resolution Difference Schemes for Nonlinear Hamilton-Jacobi Equations with Varying Time and Space Grids.,2005,26,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc26.html#TangW05,https://doi.org/10.1137/S1064827503428126 +Michael A. Epton,Multipole Translation Theory for the Three-Dimensional Laplace and Helmholtz Equations.,1995,16,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc16.html#EptonD95,https://doi.org/10.1137/0916051 +Mark Embree,Generalizing Eigenvalue Theorems to Pseudospectra Theorems.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#EmbreeT01,https://doi.org/10.1137/S1064827500373012 +M. Elizabeth G. Ong,Hierarchical Basis Preconditioners in Three Dimensions.,1997,18,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc18.html#Ong97,https://doi.org/10.1137/S1064827594276539 +Leonidas Linardakis,Graded Delaunay Decoupling Method for Parallel Guaranteed Quality Planar Mesh Generation.,2008,30,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc30.html#LinardakisC08,https://doi.org/10.1137/060677276 +Jan G. Verwer,Gauss-Seidel Iteration for Stiff ODES from Chemical Kinetics.,1994,15,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc15.html#Verwer94,https://doi.org/10.1137/0915076 +Ioannis K. Dassios,A Preconditioner for A Primal-Dual Newton Conjugate Gradient Method for Compressed Sensing Problems.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#DassiosFG15,https://doi.org/10.1137/141002062 +Christiaan C. Stolk,A Multigrid Method for the Helmholtz Equation with Optimized Coarse Grid Corrections.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#StolkAB14,https://doi.org/10.1137/13092349X +Yeonjong Shin,Nonadaptive Quasi-Optimal Points Selection for Least Squares Linear Regression.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#ShinX16,https://doi.org/10.1137/15M1015868 +Antti H. Niemi,Benchmark Computations of Stresses in a Spherical Dome with Shell Finite Elements.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#Niemi16,https://doi.org/10.1137/15M1027590 +Kab Seok Kang,P1 Nonconforming Finite Element Multigrid Method for Radiation Transport.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#Kang03,https://doi.org/10.1137/S1064827502407354 +Assyr Abdulle,S-ROCK: Chebyshev Methods for Stiff Stochastic Differential Equations.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#AbdulleC08,https://doi.org/10.1137/070679375 +C. Leonard Berman,Grid-Multipole Calculations.,1995,16,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc16.html#Berman95,https://doi.org/10.1137/0916062 +Michael P. Friedlander,Hybrid Deterministic-Stochastic Methods for Data Fitting.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#FriedlanderS12,https://doi.org/10.1137/110830629 +Christophe Gomez,Monte Carlo Methods for Radiative Transfer with Singular Kernels.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#GomezP18,https://doi.org/10.1137/17M1134755 +Eric Dow,Optimization of Gaussian Random Fields.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#DowW15,https://doi.org/10.1137/140992187 +James Baglama,IRBL: An Implicitly Restarted Block-Lanczos Method for Large-Scale Hermitian Eigenproblems.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#BaglamaCR03,https://doi.org/10.1137/S1064827501397949 +Charbel Farhat,An Unconventional Domain Decomposition Method for an Efficient Parallel Solution of Large-Scale Finite Element Systems.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#FarhatR92,https://doi.org/10.1137/0913020 +Robert I. McLachlan,High Order Multisymplectic Runge-Kutta Methods.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#McLachlanRS14,https://doi.org/10.1137/140958050 +Sebastiano Boscarino,Implicit-Explicit Integral Deferred Correction Methods for Stiff Problems.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#BoscarinoQR18,https://doi.org/10.1137/16M1105232 +Peter Bastian,Parallelization of Robust Multigrid Methods: ILU Factorization and Frequency Decomposition Method.,1991,12,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc12.html#BastianH91,https://doi.org/10.1137/0912079 +Axel Klawonn,Nonlinear FETI-DP and BDDC Methods.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#KlawonnLR14,https://doi.org/10.1137/130920563 +Robert Krasny,Fast Evaluation of Multiquadric RBF Sums by a Cartesian Treecode.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#KrasnyW11,https://doi.org/10.1137/090779851 +Panayot S. Vassilevski,Stabilizing the Hierarchical Basis by Approximate Wavelets II: Implementation and Numerical Results.,1998,20,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc20.html#VassilevskiW98,https://doi.org/10.1137/S1064827596300668 +Kai Wang,MSP: A Class of Parallel Multistep Successive Sparse Approximate Inverse Preconditioning Strategies.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#Wang003,https://doi.org/10.1137/S1064827502400832 +Guangwei Yuan,A Conservative Domain Decomposition Procedure for Nonlinear Diffusion Problems on Arbitrary Quadrilateral Grids.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#YuanYY11,https://doi.org/10.1137/10081335X +Sergiy Zhuk,On Source-Term Parameter Estimation for Linear Advection-Diffusion Equations with Uncertain Coefficients.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#ZhukTMOS16,https://doi.org/10.1137/15M1034829 +Stefan Engblom,Simulation of Stochastic Reaction-Diffusion Processes on Unstructured Meshes.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#EngblomFHL09,https://doi.org/10.1137/080721388 +Christof Vömel,Divide and Conquer on Hybrid GPU-Accelerated Multicore Systems.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#VomelTD12,https://doi.org/10.1137/100806783 +Stéphane Labbé,Fast Computation for Large Magnetostatic Systems Adapted for Micromagnetism.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#Labbe05,https://doi.org/10.1137/030601053 +Gordon W. Inverarity,Fast Computation of Multidimensional Fourier Integrals.,2002,24,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc24.html#Inverarity02,https://doi.org/10.1137/S106482750138647X +Satu Elisa Schaeffer,Scalable Uniform Graph Sampling by Local Computation.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#Schaeffer10,https://doi.org/10.1137/080716086 +Christian Soize,Computational Aspects for Constructing Realizations of Polynomial Chaos in High Dimension.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#SoizeD10,https://doi.org/10.1137/100787830 +Fernando L. Alvarado,Optimal Parallel Solution of Sparse Triangular Systems.,1993,14,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc14.html#AlvaradoS93,https://doi.org/10.1137/0914027 +Mohammad Shakourifar,Reliable Approximate Solution of Systems of Volterra Integro-Differential Equations with Time-Dependent Delays.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#ShakourifarE11,https://doi.org/10.1137/100793098 +Weizhang Huang,Moving Mesh Strategy Based on a Gradient Flow Equation for Two-Dimensional Problems.,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#HuangR98,https://doi.org/10.1137/S1064827596315242 +Troy Butler,A Measure-Theoretic Interpretation of Sample Based Numerical Integration with Applications to Inverse and Prediction Problems under Uncertainty.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#ButlerGMW17,https://doi.org/10.1137/16M1063289 +Cameron Talischi,A Family of H(div) Finite Element Approximations on Polygonal Meshes.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#Talischi15,https://doi.org/10.1137/140979873 +Ali Abdi,The Barycentric Rational Difference-Quadrature Scheme for Systems of Volterra Integro-differential Equations.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#AbdiH18,https://doi.org/10.1137/17M114371X +Friedrich K. Hebeker,An Adaptive Finite Element Method for Unsteady Convection-Dominated Flows with Stiff Source Terms.,1999,21,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc21.html#HebekerR99,https://doi.org/10.1137/S1064827597319039 +Ming-Chih Lai,A Fractional Step Immersed Boundary Method for Stokes Flow with an Inextensible Interface Enclosing a Solid Particle.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#LaiHL12,https://doi.org/10.1137/100818777 +Christopher T. H. Baker,Pitfalls in Parameter Estimation for Delay Differential Equations.,1997,18,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc18.html#BakerP97,https://doi.org/10.1137/S1064827595287201 +Zheng Wang,Bayesian Inverse Problems with l1 Priors: A Randomize-Then-Optimize Approach.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#WangBSCM17,https://doi.org/10.1137/16M1080938 +Andreas Potschka,Newton-Picard-Based Preconditioning for Linear-Quadratic Optimization Problems with Time-Periodic Parabolic PDE Constraints.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#PotschkaMSB12,https://doi.org/10.1137/100807776 +Olivier Bokanowski,A Discontinuous Galerkin Solver for Front Propagation.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#BokanowskiCS11,https://doi.org/10.1137/090771909 +Mi-Young Kim,Discontinuous Galerkin Methods for a Model of Population Dynamics with Unbounded Mortality.,2006,27,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc27.html#Kim06,https://doi.org/10.1137/050624182 +Ronnie Wallace,Numerical Solution of a Nonlinear Dissipative System Using a Pseudospectral Method and Inertial Manifolds.,1995,16,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc16.html#WallaceS95,https://doi.org/10.1137/0916060 +Bertil Gustafsson,Time Compact High Order Difference Methods for Wave Propagation.,2004,26,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc26.html#GustafssonM04,https://doi.org/10.1137/030602459 +Herbert Edelsbrunner,An O(n2 log n) Time Algorithm for the Minmax Angle Triangulation.,1992,13,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc13.html#EdelsbrunnerTW92,https://doi.org/10.1137/0913058 +Robert Szalai,Continuation of Bifurcations in Periodic Delay-Differential Equations Using Characteristic Matrices.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#SzalaiSH06,https://doi.org/10.1137/040618709 +Owe Axelsson,The Nested Recursive Two-Level Factorization Method for Nine-Point Difference Matrices.,1991,12,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc12.html#AxelssonE91,https://doi.org/10.1137/0912075 +Guido Ala,The Method of Fundamental Solutions in Solving Coupled Boundary Value Problems for M/EEG.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#AlaFFGM15,https://doi.org/10.1137/13094921X +Bruno Lombard,Numerical modeling of elastic waves across imperfect contacts..,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#LombardP06,https://doi.org/10.1137/05062740X +Matthias Bollhöfer,A Robust and Efficient ILU that Incorporates the Growth of the Inverse Triangular Factors.,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#Bollhofer03,https://doi.org/10.1137/S1064827502403411 +Xuan Zhao,Superconvergence Points of Fractional Spectral Interpolation.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#ZhaoZ16,https://doi.org/10.1137/15M1011172 +Mark Ainsworth,Computing the Bézier Control Points of the Lagrangian Interpolant in Arbitrary Dimension.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#AinsworthS16,https://doi.org/10.1137/15M1046113 +Nicholas Hale,Conformal Maps to Multiply Slit Domains and Applications.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#HaleT09,https://doi.org/10.1137/080738325 +Mark F. Adams,Segmental Refinement: A Multigrid Technique for Data Locality.,2016,38,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc38.html#AdamsBKS16,https://doi.org/10.1137/140975127 +S. Candelaresi,Mimetic Methods for Lagrangian Relaxation of Magnetic Fields.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#CandelaresiPH14,https://doi.org/10.1137/140967404 +Jürgen Götze,A Square Root and Division Free Givens Rotation for Solving Least Squares Problems on Systolic Arrays.,1991,12,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc12.html#GotzeS91,https://doi.org/10.1137/0912042 +M. Naumov,AmgX: A Library for GPU Accelerated Algebraic Multigrid and Preconditioned Iterative Methods.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#NaumovACCDELMRS15,https://doi.org/10.1137/140980260 +Claudio Padra,An hp Finite Element Method to Solve a Fluid-Solid Vibration Problem.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#PadraRS12,https://doi.org/10.1137/120868396 +Emmanuel Perrey-Debain,A General Asymptotic Expansion Formula for Integrals Involving High-Order Orthogonal Polynomials.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#Perrey-DebainA09,https://doi.org/10.1137/080736740 +Jie Chen 0007,A Fast Summation Tree Code for Matérn Kernel.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#00070A14,https://doi.org/10.1137/120903002 +Zhuliang Chen,A Semi-Lagrangian Approach for Natural Gas Storage Valuation and Optimal Operation.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#ChenF07,https://doi.org/10.1137/060672911 +Leonard J. Gray,Boundary Integral Evaluation of Surface Derivatives.,2004,26,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc26.html#GrayPK04,https://doi.org/10.1137/S1064827502406002 +Horst D. Simon,How Good is Recursive Bisection?,1997,18,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc18.html#SimonT97,https://doi.org/10.1137/S1064827593255135 +Marie-Hélène Lallemand,Iterative Defect Correction and Multigrid Accelerated Explicit Time Stepping Schemes for the Steady Euler Equations.,1993,14,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc14.html#LallemandK93,https://doi.org/10.1137/0914058 +Daniel R. Reynolds,Operator-Based Preconditioning of Stiff Hyperbolic Systems.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#ReynoldsSW10,https://doi.org/10.1137/080713331 +Per Christian Hansen,The Modified Truncated SVD Method for Regularization in General Form.,1992,13,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc13.html#HansenSS92,https://doi.org/10.1137/0913066 +Weiming Cao,A Study of Monitor Functions for Two-Dimensional Adaptive Mesh Generation.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#CaoHR99,https://doi.org/10.1137/S1064827597327656 +Clive Temperton,Self-Sorting In-Place Fast Fourier Transforms.,1991,12,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc12.html#Temperton91,https://doi.org/10.1137/0912043 +Panos Parpas,A Multilevel Proximal Gradient Algorithm for a Class of Composite Optimization Problems.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#Parpas17,https://doi.org/10.1137/16M1082299 +Pierre-Alain Gremaud,Computational Study of Fast Methods for the Eikonal Equation.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#GremaudK06,https://doi.org/10.1137/040605655 +Emmanuel Gobet,Stratified Regression Monte-Carlo Scheme for Semilinear PDEs and BSDEs with Large Scale Parallelization on GPUs.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#GobetLTV16,https://doi.org/10.1137/16M106371X +Dexuan Xie,A New Block Parallel SOR Method and Its Analysis.,2006,27,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc27.html#Xie06,https://doi.org/10.1137/040604777 +Shengguo Li,An Improved DQDS Algorithm.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#LiGP14,https://doi.org/10.1137/120881087 +S. H. Lui,On Schwarz Alternating Methods for the Incompressible Navier-Stokes Equations.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#Lui01,https://doi.org/10.1137/S1064827598347411 +Leonid Y. Zaslavsky,An Adaptive Algebraic Multigrid for Reactor Criticality Calculations.,1995,16,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc16.html#Zaslavsky95,https://doi.org/10.1137/0916049 +Patrick Amestoy,Improving Multifrontal Methods by Means of Block Low-Rank Representations.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#AmestoyABBLW15,https://doi.org/10.1137/120903476 +Lars Ruthotto,jInv-a Flexible Julia Package for PDE Parameter Estimation.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#RuthottoTH17,https://doi.org/10.1137/16M1081063 +Tim Warburton,A Low-Storage Curvilinear Discontinuous Galerkin Method for Wave Problems.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#Warburton13,https://doi.org/10.1137/120899662 +Mélanie Beck,B-Methods for the Numerical Solution of Evolution Problems with Blow-Up Solutions Part I: Variation of the Constant.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#BeckGK15,https://doi.org/10.1137/15M1011767 +Arne Barinka,Adaptive Wavelet Schemes for Elliptic Problems - Implementation and Numerical Experiments.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#BarinkaBCCDDU01,https://doi.org/10.1137/S1064827599365501 +Graeme Fairweather,The Reformulation and Numerical Solution of Certain Nonclassical Initial-Boundary Value Problems.,1991,12,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc12.html#FairweatherS91,https://doi.org/10.1137/0912007 +Fei Xue,A Block Preconditioned Harmonic Projection Method for Large-Scale Nonlinear Eigenvalue Problems.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#Xue18,https://doi.org/10.1137/17M112141X +Spike T. Lee,Shift-Invert Arnoldi Approximation to the Toeplitz Matrix Exponential.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#LeePS10,https://doi.org/10.1137/090758064 +Patrick E. Farrell,A Framework for the Automation of Generalized Stability Theory.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#FarrellCF14,https://doi.org/10.1137/120900745 +Franco Dassi,A Priori Anisotropic Mesh Adaptation on Implicitly Defined Surfaces.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#DassiPF15,https://doi.org/10.1137/140995246 +Thomas Engels,FluSI: A Novel Parallel Simulation Tool for Flapping Insect Flight Using a Fourier Method with Volume Penalization.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#EngelsKSS16,https://doi.org/10.1137/15M1026006 +Gregory E. Fasshauer,Stable Evaluation of Gaussian Radial Basis Function Interpolants.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#FasshauerM12,https://doi.org/10.1137/110824784 +Debojyoti Ghosh,Compact Reconstruction Schemes with Weighted ENO Limiting for Hyperbolic Conservation Laws.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#GhoshB12,https://doi.org/10.1137/110857659 +Yat Tin Chow,Direct Sampling Method for Diffusive Optical Tomography.,2015,37,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc37.html#ChowILZ15,https://doi.org/10.1137/14097519X +Jeanne A. Atwell,Reduced Order Controllers for Spatially Distributed Systems via Proper Orthogonal Decomposition.,2004,26,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc26.html#AtwellK04,https://doi.org/10.1137/S1064827599360091 +Jukka Räbinä,Efficient Time Integration of Maxwell's Equations with Generalized Finite Differences.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#RabinaMR15,https://doi.org/10.1137/140988759 +Boris N. Khoromskij,Numerical Solution of the Hartree - Fock Equation in Multilevel Tensor-Structured Format.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#KhoromskijKF11,https://doi.org/10.1137/090777372 +Kui Du,On Well-Conditioned Spectral Collocation and Spectral Methods by the Integral Reformulation.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#Du16,https://doi.org/10.1137/15M1046629 +Roland W. Freund,A Transpose-Free Quasi-Minimal Residual Algorithm for Non-Hermitian Linear Systems.,1993,14,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc14.html#Freund93,https://doi.org/10.1137/0914029 +Benjamin Peherstorfer,Optimal Model Management for Multifidelity Monte Carlo Estimation.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#PeherstorferWG16,https://doi.org/10.1137/15M1046472 +Gary Ulrich,Positivity Conditions for Quartic Polynomials.,1994,15,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc15.html#UlrichW94,https://doi.org/10.1137/0915035 +Miroslav Kuchta,Preconditioners for Saddle Point Systems with Trace Constraints Coupling 2D and 1D Domains.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#KuchtaNVMM16,https://doi.org/10.1137/15M1052822 +Peter Arbenz,Computing Eigenvalues of Banded Symmetric Toeplitz Matrices.,1991,12,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc12.html#Arbenz91,https://doi.org/10.1137/0912039 +Kapil Ahuja,Recycling BiCG with an Application to Model Reduction.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#AhujaSGC12,https://doi.org/10.1137/100801500 +Frédéric Magoulès,Optimal Discrete Transmission Conditions for a Nonoverlapping Domain Decomposition Method for the Helmholtz Equation.,2004,25,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc25.html#MagoulesRS04,https://doi.org/10.1137/S1064827502415351 +Yongjin Zhang,An Efficient Output Error Estimation for Model Order Reduction of Parametrized Evolution Equations.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#ZhangFLB15,https://doi.org/10.1137/140998603 +Marc I. Gerritsma,Compatible Spectral Approximations for the Velocity-Pressure-Stress Formulation of the Stokes Problem.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#GerritsmaP99,https://doi.org/10.1137/S1064827597324846 +Junfeng Yang,An Efficient TVL1 Algorithm for Deblurring Multichannel Images Corrupted by Impulsive Noise.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#YangZY09,https://doi.org/10.1137/080732894 +Lars König,A Matrix-Free Approach to Parallel and Memory-Efficient Deformable Image Registration.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#KonigRDL18,https://doi.org/10.1137/17M1125522 +Kou-Kung Alex Chang,Mass-Conserving Front Tracking for Miscible Two-Phase Flow.,1997,18,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc18.html#ChangL97,https://doi.org/10.1137/S1064827595289480 +Britta Heubeck,New Finite Elements for Large-Scale Simulation of Optical Waves.,2008,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#HeubeckPS08,https://doi.org/10.1137/070692224 +Andreas Stathopoulos,Nearly Optimal Preconditioned Methods for Hermitian Eigenproblems Under Limited Memory. Part II: Seeking Many Eigenvalues.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#StathopoulosM07,https://doi.org/10.1137/060661910 +Kenneth Duru,Stable and High-Order Accurate Boundary Treatments for the Elastic Wave Equation on Second-Order Form.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#DuruKM14,https://doi.org/10.1137/130947210 +Paul G. Constantine,Residual Minimizing Model Interpolation for Parameterized Nonlinear Dynamical Systems.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#ConstantineW12,https://doi.org/10.1137/100816717 +Axel Ruhe,Rational Krylov: A Practical Algorithm for Large Sparse Nonsymmetric Matrix Pencils.,1998,19,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc19.html#Ruhe98,https://doi.org/10.1137/S1064827595285597 +Maxence Reberol,Computing the Distance between Two Finite Element Solutions Defined on Different 3D Meshes on a GPU.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#ReberolL18,https://doi.org/10.1137/17M1115976 +Zhiqiang Cai,A Multigrid Method for the Pseudostress Formulation of Stokes Problems.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#CaiW07,https://doi.org/10.1137/060661429 +Fergus R. Cooper,Numerical Analysis of the Immersed Boundary Method for Cell-Based Simulation.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#CooperBF17,https://doi.org/10.1137/16M1092246 +Scott MacLachlan,Greedy Coarsening Strategies for Nonsymmetric Problems.,2007,29,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc29.html#MacLachlanS07a,https://doi.org/10.1137/060660928 +Kadir Akbudak,Hypergraph Partitioning Based Models and Methods for Exploiting Cache Locality in Sparse Matrix-Vector Multiplication.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#AkbudakKA13,https://doi.org/10.1137/100813956 +Len G. Margolin,Antidiffusive Velocities for Multipass Donor Cell Advection.,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#MargolinS98,https://doi.org/10.1137/S106482759324700X +Jeff Borggaard,On Efficient Solutions to the Continuous Sensitivity Equation Using Automatic Differentiation.,2000,22,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc22.html#BorggaardV00,https://doi.org/10.1137/S1064827599352136 +C. Robert Pinnegar,The Bi-Gaussian S-Transform.,2003,24,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc24.html#PinnegarM03,https://doi.org/10.1137/S1064827500369803 +Tyson Brochu,Robust Topological Operations for Dynamic Explicit Surfaces.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#BrochuB09,https://doi.org/10.1137/080737617 +Luc Devroye,Algorithms for Generating Discrete Random Variables with a Given Generating Function or a Given Moment Sequence.,1991,12,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc12.html#Devroye91,https://doi.org/10.1137/0912006 +Ana-Maria Matache,Fast Numerical Solution of Parabolic Integrodifferential Equations with Applications in Finance.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#MatacheSW05,https://doi.org/10.1137/030602617 +Stefan Aeberhard,New Fast Algorithms for Error Rate-Based Stepwise Variable Selection in Discriminant Analysis.,2000,22,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc22.html#AeberhardVC00,https://doi.org/10.1137/S1064827596300784 +Adam B. Singer,Bounding the Solutions of Parameter Dependent Nonlinear Ordinary Differential Equations.,2006,27,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc27.html#SingerB06,https://doi.org/10.1137/040604388 +Todd D. Plantenga,A Trust Region Method for Nonlinear Programming Based on Primal Interior-Point Techniques.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#Plantenga98,https://doi.org/10.1137/S1064827595284403 +Joseph M. Teran,Tether Force Constraints in Stokes Flow by the Immersed Boundary Method on a Periodic Domain.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#TeranP09,https://doi.org/10.1137/080720217 +Johannes Semmler,Material Optimization in Transverse Electromagnetic Scattering Applications.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#SemmlerPS18,https://doi.org/10.1137/17M1127569 +Graham W. Alldredge,High-Order Entropy-Based Closures for Linear Transport in Slab Geometry II: A Computational Study of the Optimization Problem.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#AlldredgeHT12,https://doi.org/10.1137/11084772X +Cory D. Hauck,Positive PN Closures.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#HauckM10,https://doi.org/10.1137/090764918 +Mihaela Negreanu,Wavelet Filtering for Exact Controllability of the Wave Equation.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#NegreanuMS06,https://doi.org/10.1137/050622894 +Nguyen Trung Thành,Reconstruction of the Refractive Index from Experimental Backscattering Data Using a Globally Convergent Inverse Method.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#ThanhBKF14,https://doi.org/10.1137/130924962 +Ernesto E. Prudencio,Parallel Multilevel Restricted Schwarz Preconditioners with Pollution Removing for PDE-Constrained Optimization.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#PrudencioC07,https://doi.org/10.1137/050635663 +Claude Manté,The Use of Regularization Methods in Computing Radon-Nikodým Derivatives. Application to Grain-Size Distributions.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#Mante99,https://doi.org/10.1137/S1064827597319374 +John Harlim,Interpolating Irregularly Spaced Observations for Filtering Turbulent Complex Systems.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#Harlim11,https://doi.org/10.1137/100800427 +R. C. Cabrales,A Time-Splitting Finite-Element Stable Approximation for the Ericksen-Leslie Equations.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#CabralesGG15,https://doi.org/10.1137/140960979 +Randall J. LeVeque,One-Dimensional Front Tracking Based on High Resolution Wave Propagation Methods.,1995,16,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc16.html#LeVequeS95,https://doi.org/10.1137/0916023 +Stefan Hüeber,A Primal-Dual Active Set Algorithm for Three-Dimensional Contact Problems with Coulomb Friction.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#HueberSW08,https://doi.org/10.1137/060671061 +G. Migliorati,Approximation of Quantities of Interest in Stochastic PDEs by the Random Discrete L2 Projection on Polynomial Spaces.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#MiglioratiNST13,https://doi.org/10.1137/120897109 +Yves Nievergelt,Extensions of Priest's Double-Precision Summation.,2006,28,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc28.html#Nievergelt06,https://doi.org/10.1137/040617005 +Willi Jäger,Asymptotic Analysis of the Laminar Viscous Flow Over a Porous Bed.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#JagerMN01,https://doi.org/10.1137/S1064827599360339 +H. V. R. Mittal,Solving Immersed Interface Problems Using a New Interfacial Points-Based Finite Difference Approach.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#MittalR18,https://doi.org/10.1137/16M1106006 +Qingyuan Liu,Discontinuous Galerkin Methods for Weakly Coupled Hyperbolic MultiDomain Problems.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#LiuSZ17,https://doi.org/10.1137/16M1089332 +Zhongqiang Zhang,A Multistage Wiener Chaos Expansion Method for Stochastic Advection-Diffusion-Reaction Equations.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#ZhangRTK12,https://doi.org/10.1137/110849572 +Jayadeep Gopalakrishnan,Mapped Tent Pitching Schemes for Hyperbolic Systems.,2017,39,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc39.html#GopalakrishnanS17,https://doi.org/10.1137/16M1101374 +Amir Averbuch,Direct Inversion of the Three-Dimensional Pseudo-polar Fourier Transform.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#AverbuchSS16,https://doi.org/10.1137/15M1031916 +Thomas Dickopf,Design and Analysis of a Lightweight Parallel Adaptive Scheme for the Solution of the Monodomain Equation.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#DickopfKKP14,https://doi.org/10.1137/130912505 +Paul G. Constantine,Accelerating Markov Chain Monte Carlo with Active Subspaces.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#ConstantineKB16,https://doi.org/10.1137/15M1042127 +Florent Chave,A Hybrid High-Order Method for Darcy Flows in Fractured Porous Media.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#ChavePF18,https://doi.org/10.1137/17M1119500 +Carsten Carstensen,Adaptive Finite Elements for Elastic Bodies in Contact.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#CarstensenSW99,https://doi.org/10.1137/S1064827595295350 +Jie Shen 0001,Efficient Spectral-Galerkin Methods IV. Spherical Geometries.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#Shen99,https://doi.org/10.1137/S1064827597317028 +Bruce Hendrickson,Toward an Efficient Parallel Eigensolver for Dense Symmetric Matrices.,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#HendricksonJS98,https://doi.org/10.1137/S1064827596300681 +Peter N. Brown,A Theoretical Comparison of the Arnoldi and GMRES Algorithms.,1991,12,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc12.html#Brown91,https://doi.org/10.1137/0912003 +Michael D. Marcozzi,On the Valuation of Asian Options by Variational Methods.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#Marcozzi03,https://doi.org/10.1137/S1064827501388169 +Steinar Evje,Weakly Implicit Numerical Schemes for a Two-Fluid Model.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#EvjeF05,https://doi.org/10.1137/030600631 +Kossi D. Edoh,Numerical Approximation of Rough Invariant Curves of Planar Maps.,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#EdohL03,https://doi.org/10.1137/S106482750241373X +N. B. Petrovskaya,On Oscillations in Discontinuous Galerkin Discretization Schemes for Steady State Problems.,2006,27,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc27.html#Petrovskaya06,https://doi.org/10.1137/040603085 +Markus Brunk,Numerical Coupling of Electric Circuit Equations and Energy-Transport Models for Semiconductors.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#BrunkJ08,https://doi.org/10.1137/070681430 +Jing-Rebecca Li,High Order Accurate Methods for the Evaluation of Layer Heat Potentials.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#LiG09,https://doi.org/10.1137/080732389 +Michele Benzi,Special Section: 2016 Copper Mountain Conference.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#Benzi17,https://doi.org/10.1137/15N974416 +John A. Mackenzie,A Discontinuous Galerkin Moving Mesh Method for Hamilton-Jacobi Equations.,2007,29,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc29.html#MackenzieN07,https://doi.org/10.1137/060656243 +Marta Benítez,Second-Order Pure Lagrange-Galerkin Methods for Fluid-Structure Interaction Problems.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#BenitezB15,https://doi.org/10.1137/141001081 +Thomas A. Manteuffel,Special Issue on Iterative Methods in Numerical Linear Algebra.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#ManteuffelP92,https://doi.org/10.1137/0913intro1 +Yong-Tao Zhang,Uniformly Accurate Discontinuous Galerkin Fast Sweeping Methods for Eikonal Equations.,2011,33,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc33.html#ZhangCLZS11,https://doi.org/10.1137/090770291 +Ignace Bogaert,Iteration-Free Computation of Gauss-Legendre Quadrature Nodes and Weights.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#Bogaert14,https://doi.org/10.1137/140954969 +Hyun-Cheol Hwang,An Internal Structure Dependent Riemann Solver for Regularization-Sensitive Shock Waves and Its Application to Front Tracking.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#Hwang07,https://doi.org/10.1137/040621715 +Martin Tillenius,SuperGlue: A Shared Memory Framework Using Data Versioning for Dependency-Aware Task-Based Parallelization.,2015,37,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc37.html#Tillenius15,https://doi.org/10.1137/140989716 +Adam W. Bojanczyk,The Procrustes Problem for Orthogonal Kronecker Products.,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#BojanczykL03,https://doi.org/10.1137/S1064827501396464 +Uri M. Ascher,Stability of Computational Methods for Constrained Dynamics Systems.,1993,14,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc14.html#AscherP93,https://doi.org/10.1137/0914007 +Y. Sudhakar,On the Use of Compressed Polyhedral Quadrature Formulas in Embedded Interface Methods.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#SudhakarSVW17,https://doi.org/10.1137/16M1085206 +Jonas Ballani,Tree Adaptive Approximation in the Hierarchical Tensor Format.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#BallaniG14,https://doi.org/10.1137/130926328 +Delyan Kalchev,Upscaling of Mixed Finite Element Discretization Problems by the Spectral AMGe Method.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#KalchevLVEV16,https://doi.org/10.1137/15M1036683 +Bruno Carpentieri,The BiCOR and CORS Iterative Algorithms for Solving Nonsymmetric Linear Systems.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#CarpentieriJH11,https://doi.org/10.1137/100794031 +R. Baker Kearfott,Empirical Evaluation of Innovations in Interval Branch and Bound Algorithms for Nonlinear Systems.,1997,18,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc18.html#Kearfott97,https://doi.org/10.1137/S1064827594266131 +Silvia Gazzola,Generalized Arnoldi-Tikhonov Method for Sparse Reconstruction.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#GazzolaN14,https://doi.org/10.1137/130917673 +Jennifer Scott,On Using Cholesky-Based Factorizations and Regularization for Solving Rank-Deficient Sparse Linear Least-Squares Problems.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#Scott17,https://doi.org/10.1137/16M1065380 +Mark T. Jones,Parallel Algorithms for Adaptive Mesh Refinement.,1997,18,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc18.html#JonesP97,https://doi.org/10.1137/S106482759528065X +Bruce Hendrickson,An Improved Spectral Graph Partitioning Algorithm for Mapping Parallel Computations.,1995,16,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc16.html#HendricksonL95,https://doi.org/10.1137/0916028 +John T. Betts,Convergence of Nonconvergent IRK Discretizations of Optimal Control Problems with State Inequality Constraints.,2002,23,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc23.html#BettsBC02,https://doi.org/10.1137/S1064827500383044 +Michael Hagemann,Weighted Matchings for Preconditioning Symmetric Indefinite Linear Systems.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#HagemannS06,https://doi.org/10.1137/040615614 +Alyson Fox,Numerical Methods for Gremban's Expansion of Signed Graphs.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#FoxMS17,https://doi.org/10.1137/16M1082433 +Andreas Kleefeld,A Global Galerkin Method for Solving the Exterior Neumann Problem for the Helmholtz Equation Using Panich's Integral Equation Approach.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#KleefeldL13,https://doi.org/10.1137/120873066 +Johan Helsing,A Fast and Stable Solver for Singular Integral Equations on Piecewise Smooth Curves.,2011,33,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc33.html#Helsing11,https://doi.org/10.1137/090779218 +Carlo Janna,A Block FSAI-ILU Parallel Preconditioner for Symmetric Positive Definite Linear Systems.,2010,32,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc32.html#JannaFG10,https://doi.org/10.1137/090779760 +Todd S. Coffey,Pseudotransient Continuation and Differential-Algebraic Equations.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#CoffeyKK03,https://doi.org/10.1137/S106482750241044X +Jun Lai,A Fast Direct Solver for High Frequency Scattering from a Large Cavity in Two Dimensions.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#LaiAG14,https://doi.org/10.1137/140964904 +Achiya Dax,On Row Relaxation Methods for Large Constrained Least Squares Problems.,1993,14,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc14.html#Dax93,https://doi.org/10.1137/0914036 +Mario Arioli,Stopping Criteria for Adaptive Finite Element Solvers.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#ArioliGL13,https://doi.org/10.1137/120867421 +Ole Løseth Elvetun,PDE-Constrained Optimization with Local Control and Boundary Observations: Robust Preconditioners.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#ElvetunN16,https://doi.org/10.1137/140999098 +Patrick R. Conrad,Adaptive Smolyak Pseudospectral Approximations.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#ConradM13,https://doi.org/10.1137/120890715 +Joel Franklin,Analytic Continuation by the Fast Fourier Transform.,1990,11,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc11.html#Franklin90,https://doi.org/10.1137/0911007 +Semyon Tsynkov,External Boundary Conditions for Three-Dimensional Problems of Computational Aerodynamics.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#Tsynkov99,https://doi.org/10.1137/S1064827597318757 +Jason E. Hicken,Superconvergent Functional Estimates from Summation-By-Parts Finite-Difference Discretizations.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#HickenZ11,https://doi.org/10.1137/100790987 +Matthias Bollhöfer,Multilevel Preconditioners Constructed From Inverse-Based ILUs.,2006,27,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc27.html#BollhoferS06,https://doi.org/10.1137/040608374 +Laura Homa,Bayesian Preconditioned CGLS for Source Separation in MEG Time Series.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#HomaCHS13,https://doi.org/10.1137/120889903 +Edmond Chow,A Priori Sparsity Patterns for Parallel Sparse Approximate Inverse Preconditioners.,2000,21,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc21.html#Chow00,https://doi.org/10.1137/S106482759833913X +Dana A. Knoll,On Preconditioning Newton-Krylov Methods in Solidifying Flow Applications.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#KnollVMK01,https://doi.org/10.1137/S1064827500374303 +Joel H. Saltz,Aggregation Methods for Solving Sparse Triangular Systems on Multiprocessors.,1990,11,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc11.html#Saltz90,https://doi.org/10.1137/0911008 +Emmanuil H. Georgoulis,Discontinuous Galerkin Methods for Advection-Diffusion-Reaction Problems on Anisotropically Refined Meshes.,2007,30,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc30.html#GeorgoulisHH07,https://doi.org/10.1137/060672352 +Sheng-Gwo Chen,Discrete Conservation Laws on Curved Surfaces II: A Dual Approach.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#ChenW14,https://doi.org/10.1137/130921805 +Douglas N. Arnold,Locally Adapted Tetrahedral Meshes Using Bisection.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#ArnoldMP00,https://doi.org/10.1137/S1064827597323373 +S.-L. Chang,Liapunov-Schmidt Reduction and Continuation for Nonlinear Schrödinger Equations.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#ChangCJ07,https://doi.org/10.1137/050642861 +Wouter Tierens,Unification of Leapfrog and Crank-Nicolson Finite Difference Time Domain Methods.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#Tierens18,https://doi.org/10.1137/16M1079634 +Min Zhou,Controlling Unstructured Mesh Partitions for Massively Parallel Simulations.,2010,32,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc32.html#ZhouSDSJ10,https://doi.org/10.1137/090777323 +Russ Wolfinger,Computing Gaussian Likelihoods and Their Derivatives for General Linear Mixed Models.,1994,15,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc15.html#WolfingerTS94,https://doi.org/10.1137/0915079 +Assyr Abdulle,Weak Second Order Explicit Stabilized Methods for Stiff Stochastic Differential Equations.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#AbdulleVZ13,https://doi.org/10.1137/12088954X +Dimitris J. Kavvadias,Locating and Computing All the Simple Roots and Extrema of a Function.,1996,17,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc17.html#KavvadiasV96,https://doi.org/10.1137/S1064827594265666 +Ning Wang,An Efficient Search Algorithm for Minimum Covering Polygons on the Sphere.,2013,35,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc35.html#Wang13,https://doi.org/10.1137/120880331 +Marcel Bieri,Sparse Tensor Discretization of Elliptic sPDEs.,2009,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#BieriAS09,https://doi.org/10.1137/090749256 +Matthias Petschow,High-Performance Solvers for Dense Hermitian Eigenproblems.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#PetschowPB13,https://doi.org/10.1137/110848803 +Lisa J. Larsson,An Iterative Algorithm for Computing Measures of Generalized Voronoi Regions.,2014,36,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc36.html#LarssonCN14,https://doi.org/10.1137/130935598 +R. Kissmann,A Semidiscrete Finite Volume Constrained Transport Method on Orthogonal Curvilinear Grids.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#KissmannP12,https://doi.org/10.1137/110834329 +Amanda Bienz,Reducing Parallel Communication in Algebraic Multigrid through Sparsification.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#BienzFGOS16,https://doi.org/10.1137/15M1026341 +George Karypis,A Fast and High Quality Multilevel Scheme for Partitioning Irregular Graphs.,1998,20,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc20.html#KarypisK98,https://doi.org/10.1137/S1064827595287997 +Michele Benzi,Orderings for Incomplete Factorization Preconditioning of Nonsymmetric Problems.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#BenziSD99,https://doi.org/10.1137/S1064827597326845 +John Greenstadt,Solution of Elliptic Systems of Partial Differential Equations by Cell Discretization.,1993,14,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc14.html#Greenstadt93,https://doi.org/10.1137/0914040 +Navid Rahimi,CAD Model Simplification Error Estimation for Electrostatics Problems.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#RahimiKLM18,https://doi.org/10.1137/16M1078641 +Alfio Borzì,Multigrid Methods and Sparse-Grid Collocation Techniques for Parabolic Optimal Control Problems with Random Coefficients.,2009,31,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc31.html#BorziW09,https://doi.org/10.1137/070711311 +Manuel Calvo,On the Preservation of Invariants by Explicit Runge-Kutta Methods.,2006,28,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc28.html#CalvoHMR06,https://doi.org/10.1137/04061979X +Tommaso Taddei,A Localization Strategy for Data Assimilation* Application to State Estimation and Parameter Estimation.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#TaddeiP18,https://doi.org/10.1137/17M1116830 +James H. Lai,Algebraic Multigrid for High-Order Hierarchical H(curl) Finite Elements.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#LaiO11,https://doi.org/10.1137/100799095 +Richard A. Redner,Convergence Rates for Uniform B-Spline Density Estimators Part I: One Dimension.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#Redner99,https://doi.org/10.1137/S1064827595291996 +Nicholas J. Higham,Experience with a Matrix Norm Estimator.,1990,11,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc11.html#Higham90,https://doi.org/10.1137/0911047 +Ruth M. Holland,Sparse Approximate Inverses and Target Matrices.,2005,26,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc26.html#HollandWS05,https://doi.org/10.1137/030601132 +Michèle De La Chevrotière,Calibration of the Stochastic Multicloud Model Using Bayesian Inference.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#ChevrotiereKM14,https://doi.org/10.1137/13094267X +James Bremer,On the Numerical Calculation of the Roots of Special Functions Satisfying Second Order Ordinary Differential Equations.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#Bremer17,https://doi.org/10.1137/16M1057139 +Jack Lee,Multiphysics Computational Modeling in CHeart.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#LeeCRKAVSDMSN16,https://doi.org/10.1137/15M1014097 +Joel E. Dendy Jr.,A Semicoarsening Multigrid Algorithm for SIMD Machines.,1992,13,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc13.html#DendyIR92,https://doi.org/10.1137/0913082 +Nils Henrik Risebro,Front Tracking Applied to a Nonstrictly Hyperbolic System of Conservation Laws.,1991,12,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc12.html#RisebroT91,https://doi.org/10.1137/0912076 +Jobst Heitzig,Moving Taylor Bayesian Regression for Nonparametric Multidimensional Function Estimation with Possibly Correlated Errors.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#Heitzig13,https://doi.org/10.1137/12087846X +Bruno Carpentieri,A Class of Spectral Two-Level Preconditioners.,2003,25,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc25.html#CarpentieriDG03,https://doi.org/10.1137/S1064827502408591 +Matthew J. Reynolds,Randomized Alternating Least Squares for Canonical Tensor Decompositions: Application to A PDE With Random Data.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#ReynoldsDB16,https://doi.org/10.1137/15M1042802 +Thomas K. DeLillo,Numerical Conformal Mapping Methods for Simply and Doubly Connected Regions.,1998,19,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc19.html#DeLilloP98,https://doi.org/10.1137/S1064827596303545 +Jan S. Hesthaven,Stable Spectral Methods on Tetrahedral Elements.,2000,21,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc21.html#HesthavenT00,https://doi.org/10.1137/S1064827598343723 +Ivan V. Oseledets,Solution of Linear Systems and Matrix Inversion in the TT-Format.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#OseledetsD12,https://doi.org/10.1137/110833142 +Soumyendu Raha,Constraint Partitioning for Stability in Path-Constrained Dynamic Optimization Problems.,2001,22,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc22.html#RahaP01,https://doi.org/10.1137/S1064827500372390 +William F. Trench,Numerical Solution of the Inverse Eigenvalue Problem for Real Symmetric Toeplitz Matrices.,1997,18,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc18.html#Trench97,https://doi.org/10.1137/S1064827595280673 +Emmanuel Audusse,A Fast and Stable Well-Balanced Scheme with Hydrostatic Reconstruction for Shallow Water Flows.,2004,25,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc25.html#AudusseBBKP04,https://doi.org/10.1137/S1064827503431090 +Gudmundur F. Adalsteinsson,Compressive Sampling for Energy Spectrum Estimation of Turbulent Flows.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#AdalsteinssonK15,https://doi.org/10.1137/140966216 +G. Alistair Watson,Robust Solutions to a General Class of Approximation Problems.,2004,25,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc25.html#Watson04,https://doi.org/10.1137/S1064827502412498 +Johannes K. Kraus,Multilevel Preconditioning of Two-dimensional Elliptic Problems Discretized by a Class of Discontinuous Galerkin Methods.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#KrausT08,https://doi.org/10.1137/060667372 +Angelika Bunse-Gerstner,On the Generalized Schur Decomposition of a Matrix Pencil for Parallel Computation.,1991,12,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc12.html#Bunse-GerstnerF91,https://doi.org/10.1137/0912049 +Jennifer M. Deang,Issues Related to Least-Squares Finite Element Methods for the Stokes Equations.,1998,20,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc20.html#DeangG98,https://doi.org/10.1137/S1064827595294526 +Yeonjong Shin,A Randomized Algorithm for Multivariate Function Approximation.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#ShinX17,https://doi.org/10.1137/16M1075193 +Zhonghua Qiao,An Adaptive Time-Stepping Strategy for the Molecular Beam Epitaxy Models.,2011,33,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc33.html#QiaoZT11,https://doi.org/10.1137/100812781 +Esmond G. Ng,Block Sparse Cholesky Algorithms on Advanced Uniprocessor Computers.,1993,14,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc14.html#NgP93a,https://doi.org/10.1137/0914063 +Donald Goldfarb,Second-order Cone Programming Methods for Total Variation-Based Image Restoration.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#GoldfarbY05,https://doi.org/10.1137/040608982 +Bruno Lang,A Parallel Algorithm for Reducing Symmetric Banded Matrices to Tridiagonal Form.,1993,14,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc14.html#Lang93,https://doi.org/10.1137/0914078 +Ebrahim M. Kasenally,GMBACK: A Generalised Minimum Backward Error Algorithm for Nonsymmetric Linear Systems.,1995,16,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc16.html#Kasenally95,https://doi.org/10.1137/0916042 +Ionut-Gabriel Farcas,Nonintrusive Uncertainty Analysis of Fluid-Structure Interaction with Spatially Adaptive Sparse Grids and Polynomial Chaos Expansion.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#FarcasUNB18,https://doi.org/10.1137/16M1093975 +Greg Henry,Parallelizing the QR Algorithm for the Unsymmetric Algebraic Eigenvalue Problem: Myths and Reality.,1996,17,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc17.html#HenryG96,https://doi.org/10.1137/0917056 +Scott MacLachlan,Robust Solution of Singularly Perturbed Problems Using Multigrid Methods.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#MacLachlanM13,https://doi.org/10.1137/120889770 +Edward Rothberg,Performance of Panel and Block Approaches to Sparse Cholesky Factorization on the iPSC/860 and Paragon Multicomputers.,1996,17,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc17.html#Rothberg96,https://doi.org/10.1137/S106482759426715X +G. N. Milstein,Numerical Algorithms for Forward-Backward Stochastic Differential Equations.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#MilsteinT06,https://doi.org/10.1137/040614426 +Hasan Metin Aktulga,Reactive Molecular Dynamics: Numerical Methods and Algorithmic Techniques.,2012,34,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc34.html#AktulgaPDG12,https://doi.org/10.1137/100808599 +Stefano Serra Capizzano,A Note on Antireflective Boundary Conditions and Fast Deblurring Models.,2004,25,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc25.html#Capizzano04,https://doi.org/10.1137/S1064827502410244 +Claudio Canuto,Finite-Element Preconditioning of G-NI Spectral Methods.,2010,31,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc31.html#CanutoGQ10,https://doi.org/10.1137/090746367 +Gunar Matthies,A Multigrid Method for Incompressible Flow Problems Using Quasi Divergence Free Functions.,2006,28,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc28.html#MatthiesS06,https://doi.org/10.1137/04061814X +Jeff R. Cash,A Deferred Correction Method for Nonlinear Two-Point Boundary Value Problems: Implementation and Numerical Evaluation.,1991,12,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc12.html#CashW91,https://doi.org/10.1137/0912052 +Tzanio V. Kolev,Parallel Auxiliary Space AMG Solver for H(div) Problems.,2012,34,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc34.html#KolevV12,https://doi.org/10.1137/110859361 +Bernard Bialecki,Preconditioned Richardson and Minimal Residual Iterative Methods for Piecewise Hermite Bicubic Orthogonal Spline Collocation Equations.,1994,15,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc15.html#Bialecki94,https://doi.org/10.1137/0915043 +Daryl M. Kempthorne,A Comparison of Techniques for the Reconstruction of Leaf Surfaces from Scanned Data.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#KempthorneTB14,https://doi.org/10.1137/130938761 +Daniel Beylkin,Fitting a Bandlimited Curve to Points in a Plane.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#BeylkinR14,https://doi.org/10.1137/130932703 +Vedran Novakovic,A Hierarchically Blocked Jacobi SVD Algorithm for Single and Multiple Graphics Processing Units.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#Novakovic15,https://doi.org/10.1137/140952429 +Kalvis M. Jansons,Multidimensional Exponential Timestepping with Boundary Test.,2005,27,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc27.html#JansonsL05,https://doi.org/10.1137/040612865 +Carsten Burstedde,A Tetrahedral Space-Filling Curve for Nonconforming Adaptive Meshes.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#BursteddeH16,https://doi.org/10.1137/15M1040049 +Daniel B. Szyld,FQMR: A Flexible Quasi-Minimal Residual Method with Inexact Preconditioning.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#SzyldV01,https://doi.org/10.1137/S106482750037336X +Sirpa Saarinen,Ill-Conditioning in Neural Network Training Problems.,1993,14,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc14.html#SaarinenBC93,https://doi.org/10.1137/0914044 +Michail M. Konstantinov,Perturbation Analysis of Matrix Quadratic Equations.,1990,11,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc11.html#KonstantinovPC90,https://doi.org/10.1137/0911065 +Emmanuel Agullo,Task-Based FMM for Multicore Architectures.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#AgulloBCDMT14,https://doi.org/10.1137/130915662 +Drew P. Kouri,A Trust-Region Algorithm with Adaptive Stochastic Collocation for PDE Optimization under Uncertainty.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#KouriHRW13,https://doi.org/10.1137/120892362 +David A. Kay,Adaptive Time-Stepping for Incompressible Flow Part II: Navier--Stokes Equations.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#KayGGS10,https://doi.org/10.1137/080728032 +Lourenço Beirão da Veiga,Isogeometric BDDC Preconditioners with Deluxe Scaling.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#VeigaPSWZ14,https://doi.org/10.1137/130917399 +M. Garbey,Acceleration of the Schwarz Method for Elliptic Problems.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#Garbey05,https://doi.org/10.1137/S1064827502416344 +Eran Treister,A Multilevel Framework for Sparse Optimization with Application to Inverse Covariance Estimation and Logistic Regression.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#TreisterTY16,https://doi.org/10.1137/15M102469X +Annie A. M. Cuyt,Efficient and Reliable Multiprecision Implementation of Elementary and Special Functions.,2006,28,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc28.html#CuytVW06,https://doi.org/10.1137/050629203 +Joan Baiges,Refficientlib: An Efficient Load-Rebalanced Adaptive Mesh Refinement Algorithm for High-Performance Computational Physics Meshes.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#BaigesB17,https://doi.org/10.1137/15M105330X +Ion Victor Gosea,Data-Driven Model Order Reduction of Linear Switched Systems in the Loewner Framework.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#GoseaPA18,https://doi.org/10.1137/17M1120233 +David L. Chopp,Some Improvements of the Fast Marching Method.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#Chopp01,https://doi.org/10.1137/S106482750037617X +Thomas Hagstrom,High-Order Radiation Boundary Conditions for the Convective Wave Equation in Exterior Domains.,2003,25,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc25.html#HagstromHT03,https://doi.org/10.1137/S1064827502419695 +Hongyi Yu,A Local Space-Time Adaptive Scheme in Solving Two-Dimensional Parabolic Problems Based on Domain Decomposition Methods.,2001,23,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc23.html#Yu01,https://doi.org/10.1137/S1064827500315360 +Arnold D. Kim,Chebyshev Spectral Methods for Radiative Transfer.,2002,23,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc23.html#KimM02,https://doi.org/10.1137/S1064827500382312 +Bernard Bialecki,Optimal Superconvergent One Step Nodal Cubic Spline Collocation Methods.,2005,27,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc27.html#BialeckiFK05,https://doi.org/10.1137/040609793 +David Amsallem,Energy Stable Model Reduction of Neurons by Nonnegative Discrete Empirical Interpolation.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#AmsallemN16,https://doi.org/10.1137/15M1013870 +Zhiming Gao,A Second-Order Positivity-Preserving Finite Volume Scheme for Diffusion Equations on General Meshes.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#GaoW15,https://doi.org/10.1137/140972470 +Luc Giraud,Flexible GMRES with Deflated Restarting.,2010,32,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc32.html#GiraudGPV10,https://doi.org/10.1137/080741847 +Nela Bosner,Parallel and Heterogeneous m-Hessenberg-Triangular-Triangular Reduction.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#BosnerK17,https://doi.org/10.1137/15M1047349 +Takeshi Iwashita,Comparison Criteria for Parallel Orderings in ILU Preconditioning.,2005,26,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc26.html#IwashitaNS05,https://doi.org/10.1137/03060076X +Gregery T. Buzzard,Sharp Interface and Voltage Conservation in the Phase Field Method: Application to Cardiac Electrophysiology.,2008,30,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc30.html#BuzzardFS08,https://doi.org/10.1137/060653378 +Fanhai Zeng,A Generalized Spectral Collocation Method with Tunable Accuracy for Fractional Differential Equations with End-Point Singularities.,2017,39,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc39.html#ZengMK17,https://doi.org/10.1137/16M1076083 +Knud D. Andersen,Computing Limit Loads by Minimizing a Sum of Norms.,1998,19,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc19.html#AndersenCO98,https://doi.org/10.1137/S1064827594275303 +Matania Ben-Artzi,Remarks on High-Resolution Split Schemes Computation.,2000,22,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc22.html#Ben-ArtziFF00,https://doi.org/10.1137/S1064827599345248 +Yan Jiang,An Alternative Formulation of Finite Difference Weighted ENO Schemes with Lax-Wendroff Time Discretization for Conservation Laws.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#JiangSZ13,https://doi.org/10.1137/120889885 +Claude Brezinski,The Simplified Topological 9*-Algorithms for Accelerating Sequences in a Vector Space.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#BrezinskiR14,https://doi.org/10.1137/140957044 +Vishwas Rao,Robust Data Assimilation Using L1 and Huber Norms.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#RaoSNR17,https://doi.org/10.1137/15M1045910 +William F. Trench,A Note on Computing Eigenvalues of Banded Hermitian Toeplitz Matrices.,1993,14,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc14.html#Trench93,https://doi.org/10.1137/0914015 +Josef Dick,Fast QMC Matrix-Vector Multiplication.,2015,37,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc37.html#DickKGS15,https://doi.org/10.1137/151005518 +Andreas Bartel,Dynamic Iteration for Coupled Problems of Electric Circuits and Distributed Devices.,2013,35,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc35.html#BartelBGS13,https://doi.org/10.1137/120867111 +Jean-Piero Suarez,A High-Order Dirac-Delta Regularization with Optimal Scaling in the Spectral Solution of One-Dimensional Singular Hyperbolic Conservation Laws.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#SuarezJD14,https://doi.org/10.1137/130939341 +Patrice Coorevits,A Posteriori Error Control of Finite Element Approximations for Coulomb's Frictional Contact.,2001,23,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc23.html#CoorevitsHH01,https://doi.org/10.1137/S1064827500375461 +Brian J. McCartin,Computation of Exponential Splines.,1990,11,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc11.html#McCartin90,https://doi.org/10.1137/0911015 +Martin Berzins,Extending the Uintah Framework through the Petascale Modeling of Detonation in Arrays of High Explosive Devices.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#BerzinsBHBHMSW16,https://doi.org/10.1137/15M1023270 +Jan Van Lent,Multigrid Methods for Implicit Runge-Kutta and Boundary Value Method Discretizations of Parabolic PDEs.,2005,27,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc27.html#LentV05,https://doi.org/10.1137/030601144 +Fu-Rong Lin,Factorized Banded Inverse Preconditioners for Matrices with Toeplitz Structure.,2005,26,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc26.html#LinNC05,https://doi.org/10.1137/030601272 +Alastair Gregory,Multilevel Ensemble Transform Particle Filtering.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#GregoryCR16,https://doi.org/10.1137/15M1038232 +Haim Avron,Blendenpik: Supercharging LAPACK's Least-Squares Solver.,2010,32,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc32.html#AvronMT10,https://doi.org/10.1137/090767911 +Neil V. Budko,Spectrum of the Volume Integral Operator of Electromagnetic Scattering.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#BudkoS06,https://doi.org/10.1137/050630660 +Richard E. Ewing,A Simplified Method for Upscaling Composite Materials with High Contrast of the Conductivity.,2009,31,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc31.html#EwingILRW09,https://doi.org/10.1137/080731906 +Marian Brezina,Towards Adaptive Smoothed Aggregation (AlphaSA) for Nonsymmetric Problems.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#BrezinaMMRS10,https://doi.org/10.1137/080727336 +Yanlai Chen,Certified Reduced Basis Methods and Output Bounds for the Harmonic Maxwell's Equations.,2010,32,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc32.html#ChenHMR10,https://doi.org/10.1137/09075250X +Randolph E. Bank,An Algebraic Multilevel Multigraph Algorithm.,2002,23,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc23.html#BankS02,https://doi.org/10.1137/S1064827500381045 +Olivier Bodart,XFEM-Based Fictitious Domain Method for Linear Elasticity Model with Crack.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#BodartCCK16,https://doi.org/10.1137/15M1008385 +Junichi Imai,Quasi-Monte Carlo Method for Infinitely Divisible Random Vectors via Series Representations.,2010,32,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc32.html#ImaiK10,https://doi.org/10.1137/090752365 +Mayeul d'Avezac,Learning to Predict Physical Properties using Sums of Separable Functions.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#dAvezacBMZ11,https://doi.org/10.1137/100805959 +Mike A. Botchev,Numerical Integration of Damped Maxwell Equations.,2009,31,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc31.html#BotchevV09,https://doi.org/10.1137/08072108X +Jie Shen 0001,Decoupled Energy Stable Schemes for Phase-Field Models of Two-Phase Complex Fluids.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#ShenY14,https://doi.org/10.1137/130921593 +Wanrong Cao,Implicit-Explicit Difference Schemes for Nonlinear Fractional Differential Equations with Nonsmooth Solutions.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#CaoZZK16,https://doi.org/10.1137/16M1070323 +Daniel Ruprecht,Transparent Boundary Conditions for Time-Dependent Problems.,2008,30,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc30.html#RuprechtSSZ08,https://doi.org/10.1137/070692637 +Tom Peterka,Self-Adaptive Density Estimation of Particle Data.,2016,38,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc38.html#PeterkaCLRC16,https://doi.org/10.1137/15M1016308 +Wayne B. Hayes,A Fast Shadowing Algorithm for High-Dimensional ODE Systems.,2007,29,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc29.html#HayesJ07,https://doi.org/10.1137/060654840 +M. A. Williams,Iterative Solution of a Nonlinear System Arising in Phase-Change Problems.,1990,11,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc11.html#WilliamsW90,https://doi.org/10.1137/0911061 +Huu Chuong La,Dual Control and Online Optimal Experimental Design.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#ChuongPSB17,https://doi.org/10.1137/16M1069936 +Juan Kuntz,Bounding Stationary Averages of Polynomial Diffusions via Semidefinite Programming.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#KuntzOSB16,https://doi.org/10.1137/16M107801X +Georgios Akrivis,Computational Study of the Dispersively Modified Kuramoto-Sivashinsky Equation.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#AkrivisPS12,https://doi.org/10.1137/100816791 +Jian Ping Wu,A Parallelization Technique Based on Factor Combination and Graph Partitioning for General Incomplete LU Factorization.,2012,34,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc34.html#WuZSL12,https://doi.org/10.1137/100793244 +Veronica Mejia Bustamante,Iterative Breast Tomosynthesis Image Reconstruction.,2013,35,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc35.html#BustamanteNFS13,https://doi.org/10.1137/120881440 +Ka Fai Cedric Yiu,On the Optimal Control Method for Airfoil and Cascade Analysis.,1995,16,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc16.html#Yiu95,https://doi.org/10.1137/0916079 +Yousef Saad,Finding Exact and Approximate Block Structures for ILU Preconditioning.,2003,24,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc24.html#Saad03,https://doi.org/10.1137/S1064827501393393 +Gary Froyland,Detecting and Locating Near-Optimal Almost-Invariant Sets and Cycles.,2003,24,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc24.html#FroylandD03,https://doi.org/10.1137/S106482750238911X +Delin Chu,Sparse Orthogonal Linear Discriminant Analysis.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#ChuLN12,https://doi.org/10.1137/110851377 +Pavel B. Bochev,An Algebraic Multigrid Approach Based on a Compatible Gauge Reformulation of Maxwell's Equations.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#BochevHST08,https://doi.org/10.1137/070685932 +Daniel Potts,Preconditioners for Ill-Conditioned Toeplitz Systems Constructed from Positive Kernels.,2001,22,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc22.html#PottsS01,https://doi.org/10.1137/S1064827599351428 +Chao Yang,Large-Scale Normal Coordinate Analysis for Molecular Structures.,2001,23,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc23.html#YangPNST01,https://doi.org/10.1137/S1064827500373668 +Carsten Burstedde,Coarse Mesh Partitioning for Tree-Based AMR.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#BursteddeH17,https://doi.org/10.1137/16M1103518 +Qiya Hu,Novel Multilevel Preconditioners for the Systems Arising from Plane Wave Discretization of Helmholtz Equations with Large Wave Numbers.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#HuL17,https://doi.org/10.1137/15M1022963 +Sarah L. Mitchell,Analysis of Box Schemes for Reactive Flow Problems.,2006,27,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc27.html#MitchellMS06,https://doi.org/10.1137/030601910 +Morten Dahlby,A General Framework for Deriving Integral Preserving Numerical Methods for PDEs.,2011,33,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc33.html#DahlbyO11,https://doi.org/10.1137/100810174 +John W. Barrett 0001,On the Variational Approximation of Combined Second and Fourth Order Geometric Evolution Equations.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#BarrettGN07,https://doi.org/10.1137/060653974 +Yassine Boubendir,Domain Decomposition Methods for Solving Stokes-Darcy Problems with Boundary Integrals.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#BoubendirT13,https://doi.org/10.1137/110838376 +Quan-Fang Wang,Theoretical and Computational Issues of Optimal Control for Distributed Hopfield Neural Network Equations with Diffusion Term.,2007,29,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc29.html#Wang07a,https://doi.org/10.1137/050647943 +Tony F. Chan,Computing Truncated Singular Value Decomposition Least Squares Solutions by Rank Revealing QR-Factorizations.,1990,11,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc11.html#ChanH90,https://doi.org/10.1137/0911029 +Yu-Wen Li,Exponential Integrators Preserving First Integrals or Lyapunov Functions for Conservative or Dissipative Systems.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#LiW16,https://doi.org/10.1137/15M1023257 +Peter Monk 0001,A Comparison of Three Mixed Methods for the Time-Dependent Maxwell's Equations.,1992,13,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc13.html#Monk92,https://doi.org/10.1137/0913064 +Graham F. Carey,Least-Squares Mixed Finite Element Methods for Non-Selfadjoint Elliptic Problems: II. Performance of Block-ILU Factorization Methods.,1995,16,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc16.html#CareyPV95,https://doi.org/10.1137/0916065 +Mo Mu,A New Family of Preconditioners for Domain Decomposition.,1995,16,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc16.html#Mu95,https://doi.org/10.1137/0916019 +Gundolf Haase,Cache Issues of Algebraic Multigrid Methods for Linear Systems with Multiple Right-Hand Sides.,2005,27,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc27.html#HaaseR05,https://doi.org/10.1137/S1064827502405112 +Alfio Borzì,Optimal Control Formulation for Determining Optical Flow.,2003,24,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc24.html#BorziIK03,https://doi.org/10.1137/S1064827501386481 +David Lee,Thin Plate Splines with Discontinuities and Fast Algorithms for Their Computation.,1994,15,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc15.html#LeeS94,https://doi.org/10.1137/0915080 +Paul G. Constantine,Active Subspace Methods in Theory and Practice: Applications to Kriging Surfaces.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#ConstantineDW14,https://doi.org/10.1137/130916138 +Zhenyue Zhang,Principal Manifolds and Nonlinear Dimensionality Reduction via Tangent Space Alignment.,2004,26,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc26.html#ZhangZ04,https://doi.org/10.1137/S1064827502419154 +Desmond J. Higham,Runge-Kutta Defect Control Using Hermite-Birkhoff Interpolation.,1991,12,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc12.html#Higham91,https://doi.org/10.1137/0912053 +Juan M. Restrepo,Circumventing Storage Limitations in Variational Data Assimilation Studies.,1998,19,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc19.html#RestrepoLG98,https://doi.org/10.1137/S1064827595285500 +Qiya Hu,A Plane-Wave Least-Squares Method for Time-Harmonic Maxwell's Equations in Absorbing Media.,2014,36,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc36.html#HuY14,https://doi.org/10.1137/130928509 +Eldad Haber,A Multilevel Method for Image Registration.,2006,27,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc27.html#HaberM06,https://doi.org/10.1137/040608106 +Fanhai Zeng,The Use of Finite Difference/Element Approaches for Solving the Time-Fractional Subdiffusion Equation.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#ZengLLT13,https://doi.org/10.1137/130910865 +Artem Napov,An Algebraic Multigrid Method with Guaranteed Convergence Rate.,2012,34,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc34.html#NapovN12,https://doi.org/10.1137/100818509 +H. Sue Dollar,Preconditioning Saddle-Point Systems with Applications in Optimization.,2010,32,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc32.html#DollarGSW10,https://doi.org/10.1137/080727129 +Zecheng Gan,A Hybrid Method for Systems of Closely Spaced Dielectric Spheres and Ions.,2016,38,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc38.html#GanJLX16,https://doi.org/10.1137/15M105046X +William D. Henshaw,On Multigrid for Overlapping Grids.,2005,26,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc26.html#Henshaw05,https://doi.org/10.1137/040603735 +Y. F. Xie,A Two-Timensional Composite Grid Numerical Model Based on the Reduced System for Oceanography.,1996,17,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc17.html#XieBC96,https://doi.org/10.1137/S1064827594278113 +Christos Xenophontos,A Singular Function Boundary Integral Method for Laplacian Problems with Boundary Singularities.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#XenophontosEG06,https://doi.org/10.1137/050622742 +Irene Livshits,Multiple Galerkin Adaptive Algebraic Multigrid Algorithm for the Helmholtz Equations.,2015,37,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc37.html#Livshits15,https://doi.org/10.1137/140975310 +Changhao Yan,A Parallel Method for Solving Laplace Equations with Dirichlet Data Using Local Boundary Integral Equations and Random Walks.,2013,35,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc35.html#YanCZ13,https://doi.org/10.1137/120875004 +Jeffrey M. Hokanson,Data-Driven Polynomial Ridge Approximation Using Variable Projection.,2018,40,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc40.html#HokansonC18,https://doi.org/10.1137/17M1117690 +Yvan Notay,Algebraic Multigrid for Stokes Equations.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#Notay17,https://doi.org/10.1137/16M1071419 +Indranil Chowdhury,Single Level Multipole Expansions and Operators for Potentials of the Form r-Lambda.,2005,26,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc26.html#ChowdhuryJ05,https://doi.org/10.1137/030602241 +Achi Brandt,Multigrid Solvers for Nonaligned Sonic Flows.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#BrandtD99,https://doi.org/10.1137/S1064827598332205 +Yi Chen,Local Polynomial Chaos Expansion for Linear Differential Equations with High Dimensional Random Inputs.,2015,37,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc37.html#ChenJGX15,https://doi.org/10.1137/140970100 +Qiang Du,Numerical Algorithms of the Lawrence-Doniach Model for Layered Superconductors and their Parallel Implementation.,1999,20,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc20.html#DuG99,https://doi.org/10.1137/S1064827596311566 +Julia Docampo-Sánchez,Multi-Dimensional Filtering: Reducing the Dimension Through Rotation.,2017,39,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc39.html#Docampo-Sanchez17,https://doi.org/10.1137/16M1097845 +A. Schmidt,Derivative-Extended POD Reduced-Order Modeling for Parameter Estimation.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#SchmidtPKB13,https://doi.org/10.1137/120896694 +Masayuki Yano,A Space-Time Petrov-Galerkin Certified Reduced Basis Method: Application to the Boussinesq Equations.,2014,36,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc36.html#Yano14,https://doi.org/10.1137/120903300 +Tom Lyche,A Multiresolution Tensor Spline Method for Fitting Functions on the Sphere.,2000,22,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc22.html#LycheS00,https://doi.org/10.1137/S1064827598344388 +Dang-Manh Nguyen,Explicit Least-Degree Boundary Filters for Discontinuous Galerkin.,2017,39,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc39.html#NguyenP17,https://doi.org/10.1137/17M1114016 +Syuzanna Sargsyan,Online Interpolation Point Refinement for Reduced-Order Models using a Genetic Algorithm.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#SargsyanBK18,https://doi.org/10.1137/16M1086352 +Jens Keiner,A New Algorithm for the Nonequispaced Fast Fourier Transform on the Rotation Group.,2012,34,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc34.html#KeinerV12,https://doi.org/10.1137/110835232 +Uri M. Ascher,Sequential Regularization Methods for Simulating Mechanical Systems with Many Closed Loops.,1999,21,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc21.html#AscherL99,https://doi.org/10.1137/S1064827596310238 +Chih-Che Chueh,An h-Adaptive Operator Splitting Method for Two-Phase Flow in 3D Heterogeneous Porous Media.,2013,35,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc35.html#ChuehDB13,https://doi.org/10.1137/120866208 +J. A. C. Weideman,Algorithms for Parameter Selection in the Weeks Method for Inverting the Laplace Transform.,1999,21,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc21.html#Weideman99,https://doi.org/10.1137/S1064827596312432 +Robert D. Falgout,Non-Galerkin Coarse Grids for Algebraic Multigrid.,2014,36,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc36.html#FalgoutS14,https://doi.org/10.1137/130931539 +Charles S. Kenney,Statistical Condition Estimation for Linear Systems.,1998,19,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc19.html#KenneyLR98,https://doi.org/10.1137/S1064827595282519 +Liqian Peng,Symplectic Model Reduction of Hamiltonian Systems.,2016,38,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc38.html#PengM16,https://doi.org/10.1137/140978922 +Cleve Ashcraft,A Fan-In Algorithm for Distributed Sparse Numerical Factorization.,1990,11,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc11.html#AshcraftEL90,https://doi.org/10.1137/0911033 +Marcus J. Grote,Runge-Kutta-Based Explicit Local Time-Stepping Methods for Wave Propagation.,2015,37,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc37.html#GroteMM15,https://doi.org/10.1137/140958293 +Michael Pernice,Solution of Equilibrium Radiation Diffusion Problems Using Implicit Adaptive Mesh Refinement.,2006,27,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc27.html#PerniceP06,https://doi.org/10.1137/040609069 +Anna Gambin,Aggregation Algorithms for Perturbed Markov Chains with Applications to Networks Modeling.,2008,31,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc31.html#GambinKP08,https://doi.org/10.1137/050624716 +Xiaoqun Wang,Efficient Weighted Lattice Rules with Applications to Finance.,2006,28,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc28.html#WangS06,https://doi.org/10.1137/S1064827502418197 +Silvia Gazzola,Fast Nonnegative Least Squares Through Flexible Krylov Subspaces.,2017,39,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc39.html#GazzolaW17,https://doi.org/10.1137/15M1048872 +Assyr Abdulle,High Weak Order Methods for Stochastic Differential Equations Based on Modified Equations.,2012,34,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc34.html#AbdulleCVZ12,https://doi.org/10.1137/110846609 +Claude Pommerell,A Set of New Mapping and Coloring Heuristics for Distributed-Memory Parallel Processors.,1992,13,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc13.html#PommerellAF92,https://doi.org/10.1137/0913011 +Haim Avron,Efficient Dimensionality Reduction for Canonical Correlation Analysis.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#AvronBTZ14,https://doi.org/10.1137/130919222 +Pedro R. S. Antunes,Numerical Minimization of Dirichlet Laplacian Eigenvalues of Four-Dimensional Geometries.,2017,39,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc39.html#AntunesO17,https://doi.org/10.1137/16M1083773 +Hans Z. Munthe-Kaas,Superparallel FFTs.,1993,14,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc14.html#Munthe-Kaas93,https://doi.org/10.1137/0914022 +J. Quer,An Automatic Adaptive Importance Sampling Algorithm for Molecular Dynamics in Reaction Coordinates.,2018,40,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc40.html#QuerDKW18,https://doi.org/10.1137/17M1124772 +Pascal Grob,Conservative Coupling between Finite Elements and Retarded Potentials. Application to Vibroacoustics.,2007,29,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc29.html#GrobJ07,https://doi.org/10.1137/050647141 +J. M. Varah,Relative Sizes of the Hessian Terms in Nonlinear Parameter Estimation.,1990,11,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc11.html#Varah90,https://doi.org/10.1137/0911011 +Raymond H. Chan,The Numerical Solution of the Biharmonic Equation by Conformal Mapping.,1997,18,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc18.html#ChanDH97,https://doi.org/10.1137/S1064827595292710 +Duan Chen,Accurate and Efficient Nyström Volume Integral Equation Method for Electromagnetic Scattering of 3-D Metamaterials in Layered Media.,2018,40,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc40.html#ChenCC18,https://doi.org/10.1137/16M110900X +Lars-Erik Andersson,Best Constrained Approximation in Hilbert Space and Interpolation by Cubic Splines Subject to Obstacles.,1995,16,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc16.html#AnderssonE95,https://doi.org/10.1137/0916070 +Filippo Terragni,Local POD Plus Galerkin Projection in the Unsteady Lid-Driven Cavity Problem.,2011,33,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc33.html#TerragniVV11,https://doi.org/10.1137/100816006 +Dexuan Xie,Efficient Algorithms for a Nonlocal Dielectric Model for Protein in Ionic Solvent.,2013,35,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc35.html#XieJS13,https://doi.org/10.1137/120899078 +Jan Mayer,Alternative Weighted Dropping Strategies for ILUTP.,2006,27,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc27.html#Mayer06,https://doi.org/10.1137/030602022 +Bogdan Opanchuk,Parallel Optimized Sampling for Stochastic Equations.,2016,38,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc38.html#OpanchukKD16,https://doi.org/10.1137/15M1040098 +Oliver Röhrle,Bridging Scales: A Three-Dimensional Electromechanical Finite Element Model of Skeletal Muscle.,2008,30,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc30.html#RohrleDP08,https://doi.org/10.1137/070691504 +Zohreh Ranjbar,Solving an Ill-Posed Cauchy Problem for a Two-Dimensional Parabolic PDE with Variable Coefficients Using a Preconditioned GMRES Method.,2014,36,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc36.html#RanjbarE14,https://doi.org/10.1137/130951166 +Rickard Enander,Implicit Explicit Residual Smoothing for the Multidimensional Euler and Navier-Stokes Equations.,1997,18,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc18.html#Enander97,https://doi.org/10.1137/S1064827594262637 +Arthur Sherman,A Gradient Random Walk Method for Two-Dimensional Reaction-Diffusion Equations.,1994,15,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc15.html#ShermanM94,https://doi.org/10.1137/0915078 +Yifan Hu,A Multilevel Algorithm for Wavefront Reduction.,2001,23,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc23.html#HuS01,https://doi.org/10.1137/S1064827500377733 +Wlodzimierz Proskurowski,Preconditioning Nonsymmetric and Indefinite Capacitance Matrix Problems in Domain Imbedding.,1995,16,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc16.html#ProskurowskiV95,https://doi.org/10.1137/0916026 +Miguel A. Dumett,An Immersed Interface Method for Solving Anisotropic Elliptic Boundary Value Problems in Three Dimensions.,2003,25,SIAM J. Scientific Computing,1,db/journals/siamsc/siamsc25.html#DumettK03,https://doi.org/10.1137/S106482750240697X +Tasso Lappas,Riemann Invariant Manifolds for the Multidimensional Euler Equations.,1999,20,SIAM J. Scientific Computing,4,db/journals/siamsc/siamsc20.html#LappasLD99,https://doi.org/10.1137/S1064827595284063 +Yuanyuan Liu,High Order Finite Difference WENO Schemes for Nonlinear Degenerate Parabolic Equations.,2011,33,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc33.html#LiuSZ11,https://doi.org/10.1137/100791002 +Feng Wang,A Crosswind Block Iterative Method for Convection-Dominated Problems.,1999,21,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc21.html#WangX99,https://doi.org/10.1137/S106482759631192X +Jennifer A. Scott,On Signed Incomplete Cholesky Factorization Preconditioners for Saddle-Point Systems.,2014,36,SIAM J. Scientific Computing,6,db/journals/siamsc/siamsc36.html#ScottT14a,https://doi.org/10.1137/140956671 +David Cohen,MultiSymplectic Discretization of Wave Map Equations.,2016,38,SIAM J. Scientific Computing,2,db/journals/siamsc/siamsc38.html#CohenV16,https://doi.org/10.1137/15M1014322 +Philippe L. Toint,An Assessment of Nonmonotone Linesearch Techniques for Unconstrained Optimization.,1996,17,SIAM J. Scientific Computing,3,db/journals/siamsc/siamsc17.html#Toint96,https://doi.org/10.1137/S106482759427021X +Ilan Degani,Quantum Control With Piecewise Constant Control Functions.,2009,31,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc31.html#DeganiZlN09,https://doi.org/10.1137/080729839 +Timothy C. Warburton,Basis Functions for Triangular and Quadrilateral High-Order Elements.,1999,20,SIAM J. Scientific Computing,5,db/journals/siamsc/siamsc20.html#WarburtonSK99,https://doi.org/10.1137/S1064827597315716 +,,,,,,, +,,,,,,, +Andrés Cordón-Franco,A note on parameter free and#928*1-induction and restricted exponentiation.,2011,57,Math. Log. Q.,5,db/journals/mlq/mlq57.html#Cordon-FrancoFL11,https://doi.org/10.1002/malq.201010013 +Angel V. Ditchev,Some results on bounded truth-table degrees.,1990,36,Math. Log. Q.,3,db/journals/mlq/mlq36.html#Ditchev90,https://doi.org/10.1002/malq.19900360311 +Stephan Wehner,The Index Set of Injectively Enumerable Classes of Recursively Enumerable Sets is and#8721*5-Complete.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Wehner94,https://doi.org/10.1002/malq.19940400112 +,,,,,,, +Barbara Klunder,Topos Based Semantic for Constructive Logic with Strong Negation.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Klunder92,https://doi.org/10.1002/malq.19920380146 +Joan Gispert,Lattice BCK logics with Modus Ponens as unique rule.,2014,60,Math. Log. Q.,3,db/journals/mlq/mlq60.html#GispertT14,https://doi.org/10.1002/malq.201300065 +Jason A. Schanker,Weakly measurable cardinals.,2011,57,Math. Log. Q.,3,db/journals/mlq/mlq57.html#Schanker11,https://doi.org/10.1002/malq.201010006 +,,,,,,, +Peter Zahn,"Supplements to ""A Predicative Approach to Nonstandard Mathematics"".",1989,35,Math. Log. Q.,3,db/journals/mlq/mlq35.html#Zahn89a,https://doi.org/10.1002/malq.19890350310 +,,,,,,, +Siu-Ah Ng,Lévy processes on a first order model.,2010,56,Math. Log. Q.,3,db/journals/mlq/mlq56.html#Ng10,https://doi.org/10.1002/malq.200910015 +Grace Piper,The wi-club filter on kappa lambda.,2009,55,Math. Log. Q.,5,db/journals/mlq/mlq55.html#Piper09,https://doi.org/10.1002/malq.200710095 +Petar Maksimovic,Simple characterization of functionally complete one-element sets of propositional connectives.,2006,52,Math. Log. Q.,5,db/journals/mlq/mlq52.html#MaksimovicJ06,https://doi.org/10.1002/malq.200610009 +Karel Chvalovský,Note on Deduction Theorems in contraction-free logics.,2012,58,Math. Log. Q.,3,db/journals/mlq/mlq58.html#ChvalovskyC12,https://doi.org/10.1002/malq.201110065 +Emil Jerábek,Cluster expansion and the boxdot conjecture.,2016,62,Math. Log. Q.,6,db/journals/mlq/mlq62.html#Jerabek16a,https://doi.org/10.1002/malq.201600036 +Nadja Hempel,On n-dependent groups and fields.,2016,62,Math. Log. Q.,3,db/journals/mlq/mlq62.html#Hempel16,https://doi.org/10.1002/malq.201400080 +,,,,,,, +Márton Elekes,Decomposing the real line into Borel sets closed under addition.,2015,61,Math. Log. Q.,6,db/journals/mlq/mlq61.html#ElekesK15,https://doi.org/10.1002/malq.201400100 +Stefano Cavagnetto,Some applications of propositional logic to cellular automata.,2009,55,Math. Log. Q.,6,db/journals/mlq/mlq55.html#Cavagnetto09,https://doi.org/10.1002/malq.200810008 +Stefano Leonesi,Filling certain cuts in discrete weakly o-minimal structures.,2005,51,Math. Log. Q.,2,db/journals/mlq/mlq51.html#LeonesiT05,https://doi.org/10.1002/malq.200410014 +,,,,,,, +Jan Krajícek,Interpolation by a Game.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#Krajicek98,https://doi.org/10.1002/malq.19980440403 +Michal Krynicki,Hierarchies of Partially Ordered Connectives and Quantifiers.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Krynicki93,https://doi.org/10.1002/malq.19930390134 +Günter Asser,Zur Robinson-Charakterisierung Der Einstelligen Primitiv Rekursiven Wortfunktionen.,1988,34,Math. Log. Q.,4,db/journals/mlq/mlq34.html#Asser88,https://doi.org/10.1002/malq.19880340407 +David Makinson,Non-Equivalent Formulae in one Variable in A Strong Omnitemporal Modal Logic.,1981,27,Math. Log. Q.,7,db/journals/mlq/mlq27.html#Makinson81,https://doi.org/10.1002/malq.19810270703 +Jouko A. Väänänen,Reflection of Long Game Formulas.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#VaananenH94,https://doi.org/10.1002/malq.19940400307 +Ján Pich,Nisan-Wigderson generators in proof systems with forms of interpolation.,2011,57,Math. Log. Q.,4,db/journals/mlq/mlq57.html#Pich11,https://doi.org/10.1002/malq.201010012 +Matthias Baaz,The Axiom of Choice in Quantum Theory.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#BaazBS96,https://doi.org/10.1002/malq.19960420128 +Helmut Schwichtenberg,Dialectica interpretation of well-founded induction.,2008,54,Math. Log. Q.,3,db/journals/mlq/mlq54.html#Schwichtenberg08,https://doi.org/10.1002/malq.200710045 +Michael A. McRobbie,A Note on the Admissibility of Cut in Relevant Tableau Systems.,1979,25,Math. Log. Q.,32,db/journals/mlq/mlq25.html#McRobbieM79,https://doi.org/10.1002/malq.19790253203 +,,,,,,, +C. Alkor,Baire Category on Cardinals.,1983,29,Math. Log. Q.,4,db/journals/mlq/mlq29.html#AlkorI83,https://doi.org/10.1002/malq.19830290411 +Pierluigi Minari,On the Semantics of Comparative Logic.,1988,34,Math. Log. Q.,5,db/journals/mlq/mlq34.html#Minari88,https://doi.org/10.1002/malq.19880340507 +Ruy J. G. B. de Queiroz,Proof theory and computer programming.,1990,36,Math. Log. Q.,5,db/journals/mlq/mlq36.html#QueirozM90,https://doi.org/10.1002/malq.19900360505 +,,,,,,, +Teodor Stepien,Minimal systems.,1990,36,Math. Log. Q.,5,db/journals/mlq/mlq36.html#Stepien90,https://doi.org/10.1002/malq.19900360507 +,,,,,,, +J. W. Degen,Some Aspects and Examples of Infinity Notions.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Degen94,https://doi.org/10.1002/malq.19940400116 +,,,,,,, +Helmut Wolter,Entscheidbarkeit der Arithmetik mit Addition und Ordnung in Logiken mit verallgemeinerten Quantoren.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Wolter75,https://doi.org/10.1002/malq.19750210139 +,,,,,,, +Th. Lucas,Universal classes of Monadic Algebras.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Lucas76,https://doi.org/10.1002/malq.19760220105 +,,,,,,, +Frederik Herzberg,A definable nonstandard enlargement.,2008,54,Math. Log. Q.,2,db/journals/mlq/mlq54.html#Herzberg08,https://doi.org/10.1002/malq.200710022 +,,,,,,, +Renato A. Lewin,First order theory for literal-paraconsistent and literal-paracomplete matrices.,2010,56,Math. Log. Q.,4,db/journals/mlq/mlq56.html#LewinM10,https://doi.org/10.1002/malq.200810062 +Charles G. Morgan,A Gap Cohomology Group.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#Morgan95,https://doi.org/10.1002/malq.19950410411 +,,,,,,, +Petr Hájek 0001,On witnessed models in fuzzy logic III - witnessed Gödel logics.,2010,56,Math. Log. Q.,2,db/journals/mlq/mlq56.html#Hajek10,https://doi.org/10.1002/malq.200810047 +Rod Downey,Asymptotic density and the Ershov hierarchy.,2015,61,Math. Log. Q.,3,db/journals/mlq/mlq61.html#DowneyJMS15,https://doi.org/10.1002/malq.201300081 +Fernando Ferreira,Extracting Algorithms from Intuitionistic Proofs.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#FerreiraM98,https://doi.org/10.1002/malq.19980440202 +Jakob Kellner,F-products and nonstandard hulls for semigroups.,2004,50,Math. Log. Q.,1,db/journals/mlq/mlq50.html#KellnerP04,https://doi.org/10.1002/malq.200310071 +Saharon Shelah,Models of expansions of andequation image* with no end extensions.,2011,57,Math. Log. Q.,4,db/journals/mlq/mlq57.html#Shelah11,https://doi.org/10.1002/malq.200910129 +Daniel Abraham Romano,Construction of An Equality Relation on a Set with Coequality Relation.,1989,35,Math. Log. Q.,6,db/journals/mlq/mlq35.html#Romano89a,https://doi.org/10.1002/malq.19890350606 +Maciej Kandulski,Phrase Structure Languages Generated by Categorial Grammars With Product.,1988,34,Math. Log. Q.,4,db/journals/mlq/mlq34.html#Kandulski88a,https://doi.org/10.1002/malq.19880340413 +Lawrence Peter Belluce,Commutative rings whose ideals form an MV-algebra.,2009,55,Math. Log. Q.,5,db/journals/mlq/mlq55.html#BelluceN09,https://doi.org/10.1002/malq.200810012 +Radosav S. Dordevic,Analytic Completeness Theorem for Singular Biprobability Models.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Dordevic93,https://doi.org/10.1002/malq.19930390126 +,,,,,,, +Miklós Erdélyi-Szabó,Decidability in the Constructive Theory of Reals as an Ordered and#8474*-vectorspace.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Erdelyi-Szabo97,https://doi.org/10.1002/malq.19970430307 +Sandra Marques Pinto,Subdirectly irreducible separable dynamic algebras.,2010,56,Math. Log. Q.,4,db/journals/mlq/mlq56.html#PintoO10,https://doi.org/10.1002/malq.200910033 +Hirokazu Nishimura,Some connections between boolean valued analysis and topological reduction theory for C*-algebras.,1990,36,Math. Log. Q.,5,db/journals/mlq/mlq36.html#Nishimura90a,https://doi.org/10.1002/malq.19900360511 +Noboru Osuga,The covering number and the uniformity of the ideal If.,2006,52,Math. Log. Q.,4,db/journals/mlq/mlq52.html#Osuga06,https://doi.org/10.1002/malq.200610001 +Martin Dowd,Higher Type Categories.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Dowd93a,https://doi.org/10.1002/malq.19930390129 +Miroslawa Kolowska-Gawiejnowicz,A Labelled Deductive System for Relational Semantics of the Lambek Calculus.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#Kolowska-Gawiejnowicz99,https://doi.org/10.1002/malq.19990450105 +Stefano Leonesi,On the Boolean algebras of definable sets in weakly o-minimal theories.,2004,50,Math. Log. Q.,3,db/journals/mlq/mlq50.html#LeonesiT04,https://doi.org/10.1002/malq.200310095 +George Weaver,From finitary to infinitary second-order logic.,2005,51,Math. Log. Q.,5,db/journals/mlq/mlq51.html#WeaverP05,https://doi.org/10.1002/malq.200410046 +Antonio di Nola,On Vaught's Conjecture and finitely valued MV algebras.,2012,58,Math. Log. Q.,3,db/journals/mlq/mlq58.html#NolaL12,https://doi.org/10.1002/malq.201020091 +José G. Mijares,A notion of selective ultrafilter corresponding to topological Ramsey spaces.,2007,53,Math. Log. Q.,3,db/journals/mlq/mlq53.html#Mijares07,https://doi.org/10.1002/malq.200510045 +,,,,,,, +Jindrich Zapletal,Bounded Namba forcing axiom may fail.,2018,64,Math. Log. Q.,3,db/journals/mlq/mlq64.html#Zapletal18,https://doi.org/10.1002/malq.201700025 +,,,,,,, +Stephen Flood,Separating principles below WKL0.,2016,62,Math. Log. Q.,6,db/journals/mlq/mlq62.html#FloodT16,https://doi.org/10.1002/malq.201500001 +,,,,,,, +Noriya Kadota,Some extensions of built-upness on systems of fundamental sequences.,1990,36,Math. Log. Q.,4,db/journals/mlq/mlq36.html#KadotaA90,https://doi.org/10.1002/malq.19900360409 +David W. Kueker,Nearly Model Complete Theories.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#KuekerT99,https://doi.org/10.1002/malq.19990450302 +Helmut Pfeiffer,A theorem on labelled trees and the limits of its provability.,1990,36,Math. Log. Q.,2,db/journals/mlq/mlq36.html#Pfeiffer90,https://doi.org/10.1002/malq.19900360204 +Charles E. Hughes,Triadic partial implicational propositional calculi.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Hughes75,https://doi.org/10.1002/malq.19750210103 +Victor Pambuccian,Forms of the Pasch axiom in ordered geometry.,2010,56,Math. Log. Q.,1,db/journals/mlq/mlq56.html#Pambuccian10,https://doi.org/10.1002/malq.200810032 +Miguel Campercholi,Algebraic functions in quasiprimal algebras.,2014,60,Math. Log. Q.,3,db/journals/mlq/mlq60.html#CampercholiV14,https://doi.org/10.1002/malq.201200060 +Somayeh Motamed,Radical of filters in BL-algebras.,2011,57,Math. Log. Q.,2,db/journals/mlq/mlq57.html#MotamedTSM11,https://doi.org/10.1002/malq.201010003 +Jesper Carlström,EM + Ext- + ACint is equivalent to ACext.,2004,50,Math. Log. Q.,3,db/journals/mlq/mlq50.html#Carlstrom04,https://doi.org/10.1002/malq.200410100 +Toshimichi Usuba,Hierarchies of ineffabilities.,2013,59,Math. Log. Q.,3,db/journals/mlq/mlq59.html#Usuba13,https://doi.org/10.1002/malq.201200003 +Thomas G. McLaughlin,A Note on Effective Ultrapowers: Uniform Failure of Bounded Collection.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#McLaughlin93,https://doi.org/10.1002/malq.19930390146 +Mohamed A. Amer,Polyadic and cylindric algebras of sentences.,2006,52,Math. Log. Q.,5,db/journals/mlq/mlq52.html#AmerA06,https://doi.org/10.1002/malq.200510039 +Masazumi Hanazawa,An Extension of the Notion of Relativization to Hilbert's and#1013*-Symbol.,1980,26,Math. Log. Q.,31,db/journals/mlq/mlq26.html#Hanazawa80,https://doi.org/10.1002/malq.19800263103 +Gérard Lopez,Reconstruction d'une S-Expansion.,1983,29,Math. Log. Q.,1,db/journals/mlq/mlq29.html#Lopez83,https://doi.org/10.1002/malq.19830290104 +,,,,,,, +Christine Gaßner,The Axiom of Choice in Second-Order Predicate Logic.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Gassner94,https://doi.org/10.1002/malq.19940400410 +,,,,,,, +Kazuyuki Tanaka,Non standard Analysis in WKL0.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Tanaka97,https://doi.org/10.1002/malq.19970430312 +Beibut Sh. Kulpeshov,Minimality conditions on circularly ordered structures.,2005,51,Math. Log. Q.,4,db/journals/mlq/mlq51.html#KulpeshovM05,https://doi.org/10.1002/malq.200410040 +,,,,,,, +Tarek Sayed Ahmed,The class of infinite dimensional neat reducts of quasi-polyadic algebras is not axiomatizable.,2006,52,Math. Log. Q.,1,db/journals/mlq/mlq52.html#Ahmed06,https://doi.org/10.1002/malq.200510020 +Shingo Ibuka,Kolmogorov complexity and characteristic constants of formal theories of arithmetic.,2011,57,Math. Log. Q.,5,db/journals/mlq/mlq57.html#IbukaKK11,https://doi.org/10.1002/malq.201010017 +Pierre Ille,Cloture intervallaire et extension logique d'une relation.,1990,36,Math. Log. Q.,3,db/journals/mlq/mlq36.html#Ille90,https://doi.org/10.1002/malq.19900360304 +Rod McBeth,Fundamental Sequences for Initial Ordinals Smaller than a Certain and#920*0.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#McBeth76,https://doi.org/10.1002/malq.19760220111 +Heinrich Rolletschek,A Variant of the Notion of Semicreative Set.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Rolletschek93,https://doi.org/10.1002/malq.19930390106 +Gregory L. McColm,Some Ramsey Theory in Boolean Algebra for Complexity Classes.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#McColm92,https://doi.org/10.1002/malq.19920380125 +Jeffrey B. Remmel,Feasible Graphs and Colorings.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#RemmelC95,https://doi.org/10.1002/malq.19950410305 +Gerhard Lischke,Squares of regular languages.,2005,51,Math. Log. Q.,3,db/journals/mlq/mlq51.html#Lischke05,https://doi.org/10.1002/malq.200410032 +Richard Bird,Non recursive functionals.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Bird75,https://doi.org/10.1002/malq.19750210105 +,,,,,,, +Joan Rand Moschovakis,Unavoidable sequences in constructive analysis.,2010,56,Math. Log. Q.,2,db/journals/mlq/mlq56.html#Moschovakis10,https://doi.org/10.1002/malq.200810046 +Benedetto Intrigila,Negative Results on the Reduction of the Recursion Scheme.,1988,34,Math. Log. Q.,4,db/journals/mlq/mlq34.html#Intrigila88,https://doi.org/10.1002/malq.19880340403 +Steven K. Thomason,Reduction of second-order logic to modal logic.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Thomason75a,https://doi.org/10.1002/malq.19750210114 +Hajnal Andréka,Binary Relations and Permutation Groups.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#AndrekaDN95,https://doi.org/10.1002/malq.19950410207 +Rudolf Taschner,The swap of integral and limit in constructive mathematics.,2010,56,Math. Log. Q.,5,db/journals/mlq/mlq56.html#Taschner10,https://doi.org/10.1002/malq.200910107 +Klaus Frovin Jørgensen,Functional interpretation and the existence property.,2004,50,Math. Log. Q.,6,db/journals/mlq/mlq50.html#Jorgensen04,https://doi.org/10.1002/malq.200410004 +Jan von Plato,Translations from natural deduction to sequent calculus.,2003,49,Math. Log. Q.,5,db/journals/mlq/mlq49.html#Plato03,https://doi.org/10.1002/malq.200310047 +Valeriy K. Bulitko,On Some Complexity Characteristics of Immune Sets.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#Bulitko95,https://doi.org/10.1002/malq.19950410303 +Young Bae Jun,New types of hyper MV-deductive systems in hyper MV-algebras.,2010,56,Math. Log. Q.,4,db/journals/mlq/mlq56.html#JunKK10,https://doi.org/10.1002/malq.200910011 +,,,,,,, +,,,,,,, +Guohua Wu,Regular reals.,2005,51,Math. Log. Q.,2,db/journals/mlq/mlq51.html#Wu05,https://doi.org/10.1002/malq.200310129 +Takako Nemoto,Infinite games in the Cantor space and subsystems of second order arithmetic.,2007,53,Math. Log. Q.,3,db/journals/mlq/mlq53.html#NemotoMT07,https://doi.org/10.1002/malq.200610041 +Yong Cheng,The HOD Hypothesis and a supercompact cardinal.,2017,63,Math. Log. Q.,5,db/journals/mlq/mlq63.html#Cheng17,https://doi.org/10.1002/malq.201600007 +,,,,,,, +Nigel J. Cutland,Compactness Without Languages.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Cutland76,https://doi.org/10.1002/malq.19760220113 +Bozena Piekart,Automorphisms of Models of True Arithmetic: Subgroups which Extend to a Maximal Subgroup Uniquely.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#PiekartK94,https://doi.org/10.1002/malq.19940400113 +Joel Uckelman,Representing Utility Functions via Weighted Goals.,2009,55,Math. Log. Q.,4,db/journals/mlq/mlq55.html#UckelmanCEL09,https://doi.org/10.1002/malq.200810024 +Arthur W. Apter,Indestructibility under adding Cohen subsets and level by level equivalence.,2009,55,Math. Log. Q.,3,db/journals/mlq/mlq55.html#Apter09a,https://doi.org/10.1002/malq.200810006 +Athanassios Tzouvaras,Omega- and Beta-Models of Alternative Set Theory.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Tzouvaras94,https://doi.org/10.1002/malq.19940400411 +,,,,,,, +,,,,,,, +Predrag Tanovic,On definability of types of finite Cantor-Bendixson rank.,2011,57,Math. Log. Q.,3,db/journals/mlq/mlq57.html#Tanovic11,https://doi.org/10.1002/malq.200910134 +William S. Hatcher,On the Order Structure of the Hyperreal Line.,1983,29,Math. Log. Q.,4,db/journals/mlq/mlq29.html#HatcherL83,https://doi.org/10.1002/malq.19830290404 +Mikolaj Bojanczyk,Piecewise testable tree languages,2012,8,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs8.html#abs-1208-5129,https://doi.org/10.2168/LMCS-8(3:26)2012 +Philipp Weis,Structure Theorem and Strict Alternation Hierarchy for FO^2 on Words,2009,5,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs5.html#abs-0907-0616,http://arxiv.org/abs/0907.0616 +Sung-Shik T. Q. Jongmans,Data optimizations for constraint automata.,2016,12,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs12.html#JongmansA16,https://doi.org/10.2168/LMCS-12(3:11)2016 +Davide Basile,Automata for Specifying and Orchestrating Service Contracts.,2016,12,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs12.html#BasileDF16,https://doi.org/10.2168/LMCS-12(4:6)2016 +William Lovas,Refinement Types for Logical Frameworks and Their Interpretation as Proof Irrelevance,2010,6,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs6.html#abs-1009-1861,https://doi.org/10.2168/LMCS-6(4:5)2010 +Christophe Fouqueré,Incarnation in Ludics and maximal cliques of paths.,2013,9,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs9.html#FouquereQ13,https://doi.org/10.2168/LMCS-9(4:6)2013 +Myrto Arapinis,Dynamic Tags for Security Protocols.,2014,10,Logical Methods in Computer Science,2,db/journals/lmcs/lmcs10.html#ArapinisDK14,https://doi.org/10.2168/LMCS-10(2:11)2014 +Steven Awodey,Kripke Semantics for Martin-Löf's Extensional Type Theory,2011,7,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs7.html#abs-1109-1702,https://doi.org/10.2168/LMCS-7(3:18)2011 +Thomas Place,Separating Regular Languages by Locally Testable and Locally Threshold Testable Languages.,2014,10,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs10.html#PlaceRZ13,https://doi.org/10.2168/LMCS-10(3:24)2014 +Jan Schwinghammer,Nested Hoare Triples and Frame Rules for Higher-order Store,2011,7,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs7.html#abs-1109-3031,https://doi.org/10.2168/LMCS-7(3:21)2011 +Roman Kontchakov,Spatial logics with connectedness predicates,2010,6,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs6.html#abs-1003-5399,http://arxiv.org/abs/1003.5399 +Naoki Kobayashi 0001,Complexity of Model Checking Recursion Schemes for Fragments of the Modal Mu-Calculus,2011,7,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs7.html#abs-1109-5267,https://doi.org/10.2168/LMCS-7(4:9)2011 +Victor L. Selivanov,Total Representations,2013,9,Logical Methods in Computer Science,2,db/journals/lmcs/lmcs9.html#abs-1304-1239,https://doi.org/10.2168/LMCS-9(2:5)2013 +Dimiter Skordev,Approximation systems for functions in topological and in metric spaces.,2013,9,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs9.html#Skordev13,https://doi.org/10.2168/LMCS-9(4:15)2013 +Stéphane Demri,The complexity of linear-time temporal logic over the class of ordinals,2010,6,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs6.html#abs-1009-5206,https://doi.org/10.2168/LMCS-6(4:9)2010 +Jean Goubault-Larrecq,QRB-Domains and the Probabilistic Powerdomain,2012,8,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs8.html#abs-1202-2287,https://doi.org/10.2168/LMCS-8(1:14)2012 +Giovanni Bernardi 0001,Mutually Testing Processes.,2015,11,Logical Methods in Computer Science,2,db/journals/lmcs/lmcs11.html#BernardiH15,https://doi.org/10.2168/LMCS-11(2:1)2015 +John Fearnley,Time and Space Results for Parity Games with Bounded Treewidth,2013,9,Logical Methods in Computer Science,2,db/journals/lmcs/lmcs9.html#abs-1112-0221,https://doi.org/10.2168/LMCS-9(2:6)2013 +René David,About the range property for H.,2014,10,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs10.html#DavidN13,https://doi.org/10.2168/LMCS-10(1:3)2014 +Krishnendu Chatterjee,Expressiveness and Closure Properties for Quantitative Languages,2010,6,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs6.html#abs-1007-4018,http://arxiv.org/abs/1007.4018 +Martin Lang 0001,Modeling and Verification of Infinite Systems with Resources.,2013,9,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs9.html#LangL13,https://doi.org/10.2168/LMCS-9(4:22)2013 +Alexander Rabinovich,The Church Problem for Countable Ordinals,2009,5,Logical Methods in Computer Science,2,db/journals/lmcs/lmcs5.html#abs-0811-2198,http://arxiv.org/abs/0811.2198 +Marcelo Arenas,Composition with Target Constraints,2011,7,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs7.html#abs-1106-3745,https://doi.org/10.2168/LMCS-7(3:13)2011 +Ugo Dal Lago,On Constructor Rewrite Systems and the Lambda Calculus,2012,8,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs8.html#abs-1208-0515,https://doi.org/10.2168/LMCS-8(3:12)2012 +Bartek Klin,Coalgebraic trace semantics via forgetful logics.,2016,12,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs12.html#KlinR16,https://doi.org/10.2168/LMCS-12(4:10)2016 +Manuel Bodirsky,On the Scope of the Universal-Algebraic Approach to Constraint Satisfaction,2009,8,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs8.html#abs-0909-5097,https://doi.org/10.2168/LMCS-8(3:13)2012 +Makoto Hamana,Initial Algebra Semantics for Cyclic Sharing Tree Structures,2010,6,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs6.html#abs-1007-4266,http://arxiv.org/abs/1007.4266 +Michael Holtmann,Degrees of Lookahead in Regular Infinite Games,2012,8,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs8.html#abs-1209-0800,https://doi.org/10.2168/LMCS-8(3:24)2012 +Christine Gaßner,Strong Turing Degrees for Additive BSS RAM's.,2013,9,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs9.html#Gassner13,https://doi.org/10.2168/LMCS-9(4:25)2013 +Patrick Bahr,Modes of Convergence for Term Graph Rewriting,2012,8,Logical Methods in Computer Science,2,db/journals/lmcs/lmcs8.html#abs-1205-0357,https://doi.org/10.2168/LMCS-8(2:6)2012 +Gyesik Lee,Proof-irrelevant model of CC with predicative induction and judgmental equality,2011,7,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs7.html#abs-1111-0123,https://doi.org/10.2168/LMCS-7(4:5)2011 +Thomas Schwentick,Two-Variable Logic with Two Order Relations,2012,8,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs8.html#abs-1110-1439,https://doi.org/10.2168/LMCS-8(1:15)2012 +Matteo Mio,On the equivalence of game and denotational semantics for the probabilistic mu-calculus,2012,8,Logical Methods in Computer Science,2,db/journals/lmcs/lmcs8.html#abs-1205-0126,https://doi.org/10.2168/LMCS-8(2:7)2012 +Thomas Genet,Reachability Analysis of Innermost Rewriting.,2017,13,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs13.html#GenetS16,https://doi.org/10.23638/LMCS-13(1:12)2017 +Pierre-Malo Deniélou,Parameterised Multiparty Session Types,2012,8,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs8.html#abs-1208-6483,https://doi.org/10.2168/LMCS-8(4:6)2012 +Siva Anantharaman,Unification modulo a 2-sorted Equational theory for Cipher-Decipher Block Chaining.,2014,10,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs10.html#AnantharamanBNR14,https://doi.org/10.2168/LMCS-10(1:5)2014 +George Chatzieleftheriou,Abstract Model Repair.,2015,11,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs11.html#Chatzieleftheriou15,https://doi.org/10.2168/LMCS-11(3:11)2015 +Yasuhiko Minamide,Weighted Pushdown Systems with Indexed Weight Domains.,2016,12,Logical Methods in Computer Science,2,db/journals/lmcs/lmcs12.html#Minamide16,https://doi.org/10.2168/LMCS-12(2:9)2016 +Thomas Place,A decidable characterization of locally testable tree languages,2011,7,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs7.html#abs-1109-5851,https://doi.org/10.2168/LMCS-7(4:3)2011 +Franz Baader,Unification in the Description Logic EL,2010,6,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs6.html#abs-1006-2289,http://arxiv.org/abs/1006.2289 +Neil Ghani,Positive Inductive-Recursive Definitions.,2015,11,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs11.html#GhaniMF15,https://doi.org/10.2168/LMCS-11(1:13)2015 +Bojan Basic,On absorption in semigroups and n-ary semigroups.,2015,11,Logical Methods in Computer Science,2,db/journals/lmcs/lmcs11.html#Basic15,https://doi.org/10.2168/LMCS-11(2:15)2015 +Patricia Bouyer,Pure Nash Equilibria in Concurrent Deterministic Games.,2015,11,Logical Methods in Computer Science,2,db/journals/lmcs/lmcs11.html#BouyerBMU15,https://doi.org/10.2168/LMCS-11(2:9)2015 +Nicolai Kraus,Notions of Anonymous Existence in Martin-Löf Type Theory.,2017,13,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs13.html#KrausECA16,https://doi.org/10.23638/LMCS-13(1:15)2017 +Ulrich Berger 0001,Extracting verified decision procedures: DPLL and Resolution.,2015,11,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs11.html#BergerLFS15,https://doi.org/10.2168/LMCS-11(1:6)2015 +David Monniaux,Automatic Modular Abstractions for Template Numerical Constraints,2010,6,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs6.html#abs-1005-4844,http://arxiv.org/abs/1005.4844 +Joost Winter,Coalgebraic Characterizations of Context-Free Languages.,2013,9,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs9.html#WinterBR13,https://doi.org/10.2168/LMCS-9(3:14)2013 +Aleksy Schubert,On the Mints Hierarchy in First-Order Intuitionistic Logic.,2016,12,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs12.html#SchubertUZ16,https://doi.org/10.2168/LMCS-12(4:11)2016 +Aquinas Hobor,Barriers in Concurrent Separation Logic: Now With Tool Support!,2012,8,Logical Methods in Computer Science,2,db/journals/lmcs/lmcs8.html#abs-1203-6412,https://doi.org/10.2168/LMCS-8(2:2)2012 +Delia Kesner,A Theory of Explicit Substitutions with Safe and Full Composition,2009,5,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs5.html#abs-0905-2539,http://arxiv.org/abs/0905.2539 +Akitoshi Kawamura,Computational Complexity of Smooth Differential Equations.,2014,10,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs10.html#KawamuraORZ13,https://doi.org/10.2168/LMCS-10(1:6)2014 +Matija Pretnar,Inferring Algebraic Effects.,2014,10,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs10.html#Pretnar13,https://doi.org/10.2168/LMCS-10(3:21)2014 +Amir M. Ben-Amram,Monotonicity Constraints for Termination in the Integer Domain,2011,7,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs7.html#abs-1105-6317,https://doi.org/10.2168/LMCS-7(3:4)2011 +François Laroussinie,Counting CTL,2012,9,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs9.html#abs-1211-4651,https://doi.org/10.2168/LMCS-9(1:3)2013 +Mikolaj Bojanczyk,Automata theory in nominal sets.,2014,10,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs10.html#BojanczykKL14,https://doi.org/10.2168/LMCS-10(3:4)2014 +Willem L. Fouché,Fourier spectra of measures associated with algorithmically random Brownian motion.,2014,10,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs10.html#FoucheMD14,https://doi.org/10.2168/LMCS-10(3:20)2014 +Nathanaël Fijalkow,Deciding the value 1 problem for probabilistic leaktight automata.,2015,11,Logical Methods in Computer Science,2,db/journals/lmcs/lmcs11.html#FijalkowGKO15,https://doi.org/10.2168/LMCS-11(2:12)2015 +George Metcalfe,Admissibility in Finitely Generated Quasivarieties,2013,9,Logical Methods in Computer Science,2,db/journals/lmcs/lmcs9.html#abs-1305-3530,https://doi.org/10.2168/LMCS-9(2:9)2013 +Frédéric Lang,Partial Model Checking using Networks of Labelled Transition Systems and Boole an Equation Systems.,2013,9,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs9.html#LangM13,https://doi.org/10.2168/LMCS-9(4:1)2013 +Alexandra Silva 0001,Non-Deterministic Kleene Coalgebras,2010,6,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs6.html#abs-1007-3769,http://arxiv.org/abs/1007.3769 +Thomas Place,Separating Regular Languages with First-Order Logic.,2016,12,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs12.html#PlaceZ14,https://doi.org/10.2168/LMCS-12(1:5)2016 +Matthew Hennessy,A calculus for costed computations,2011,7,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs7.html#abs-1011-6308,https://doi.org/10.2168/LMCS-7(1:7)2011 +Andrea Turrini,Cost Preserving Bisimulations for Probabilistic Automata.,2014,10,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs10.html#TurriniH14,https://doi.org/10.2168/LMCS-10(4:11)2014 +Lars Kuhtz,Efficient Parallel Path Checking for Linear-Time Temporal Logic With Past and Bounds,2012,8,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs8.html#abs-1210-0574,https://doi.org/10.2168/LMCS-8(4:10)2012 +Thomas Colcombet,Logics with rigidly guarded data tests.,2015,11,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs11.html#ColcombetLP14,https://doi.org/10.2168/LMCS-11(3:10)2015 +Elmar Böhler,Boolean Circuits as a Data Structure for Boolean Functions: Efficient Algorithms and Hard Problems,2010,8,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs8.html#abs-1009-1208,https://doi.org/10.2168/LMCS-8(3:31)2012 +Udi Boker,Exact and Approximate Determinization of Discounted-Sum Automata.,2014,10,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs10.html#BokerH14,https://doi.org/10.2168/LMCS-10(1:10)2014 +Martin Grohe,L-Recursion and a new Logic for Logarithmic Space,2012,9,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs9.html#abs-1212-6567,https://doi.org/10.2168/LMCS-9(1:11)2013 +Peter Hertling,Computing a Solution of Feigenbaum's Functional Equation in Polynomial Time.,2014,10,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs10.html#HertlingS14,https://doi.org/10.2168/LMCS-10(4:7)2014 +Martin Grohe,The Complexity of Datalog on Linear Orders,2009,5,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs5.html#abs-0902-1179,http://arxiv.org/abs/0902.1179 +Sebastian Preugschat,Effective Characterizations of Simple Fragments of Temporal Logic Using Carton--Michel Automata,2013,9,Logical Methods in Computer Science,2,db/journals/lmcs/lmcs9.html#abs-1303-5956,https://doi.org/10.2168/LMCS-9(2:8)2013 +Christoph Berkholz,Lower Bounds for Existential Pebble Games and k-Consistency Tests,2013,9,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs9.html#abs-1205-0679,https://doi.org/10.2168/LMCS-9(4:2)2013 +Afshin Amighi,Permission-Based Separation Logic for Multithreaded Java Programs.,2015,11,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs11.html#AmighiHHH14,https://doi.org/10.2168/LMCS-11(1:2)2015 +Martin Berger,Program Logics for Homogeneous Generative Run-Time Meta-Programming.,2015,11,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs11.html#BergerT14a,https://doi.org/10.2168/LMCS-11(1:5)2015 +Tino Teige,Generalized Craig Interpolation for Stochastic Boolean Satisfiability Problems with Applications to Probabilistic State Reachability and Region Stability.,2012,8,Logical Methods in Computer Science,2,db/journals/lmcs/lmcs8.html#abs-1206-4444,https://doi.org/10.2168/LMCS-8(2:16)2012 +Marc Bezem,On streams that are finitely red,2012,8,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs8.html#abs-1210-1200,https://doi.org/10.2168/LMCS-8(4:4)2012 +Tomás Brázdil,Two Views on Multiple Mean-Payoff Objectives in Markov Decision Processes,2014,10,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs10.html#abs-1104-3489,https://doi.org/10.2168/LMCS-10(1:13)2014 +Dag Normann,Banach Spaces as Data Types,2011,7,Logical Methods in Computer Science,2,db/journals/lmcs/lmcs7.html#abs-1104-5307,https://doi.org/10.2168/LMCS-7(2:11)2011 +Eike Neumann,Computational Problems in Metric Fixed Point Theory and their Weihrauch Degrees.,2015,11,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs11.html#Neumann15,https://doi.org/10.2168/LMCS-11(4:20)2015 +Marcelo P. Fiore,On the mathematical synthesis of equational logics,2011,7,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs7.html#abs-1107-3031,https://doi.org/10.2168/LMCS-7(3:12)2011 +Samy Abbes,Markov two-components processes,2013,9,Logical Methods in Computer Science,2,db/journals/lmcs/lmcs9.html#abs-1305-5239,https://doi.org/10.2168/LMCS-9(2:14)2013 +Alasdair Urquhart,Width and size of regular resolution proofs,2012,8,Logical Methods in Computer Science,2,db/journals/lmcs/lmcs8.html#abs-1205-1050,https://doi.org/10.2168/LMCS-8(2:8)2012 +Peter Selinger,Generators and relations for n-qubit Clifford operators.,2015,11,Logical Methods in Computer Science,2,db/journals/lmcs/lmcs11.html#Selinger13,https://doi.org/10.2168/LMCS-11(2:10)2015 +Diego Latella,Bisimulation of Labelled State-to-Function Transition Systems Coalgebraically.,2015,11,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs11.html#LatellaMV15a,https://doi.org/10.2168/LMCS-11(4:16)2015 +Silvio Ghilardi,Backward Reachability of Array-based Systems by SMT solving: Termination and Invariant Synthesis,2010,6,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs6.html#abs-1010-1872,https://doi.org/10.2168/LMCS-6(4:10)2010 +Rob J. van Glabbeek,Computation Tree Logic with Deadlock Detection,2009,5,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs5.html#abs-0912-2109,http://arxiv.org/abs/0912.2109 +Mohammad Raza,Footprints in Local Reasoning,2009,5,Logical Methods in Computer Science,2,db/journals/lmcs/lmcs5.html#abs-0903-1032,http://arxiv.org/abs/0903.1032 +Alberto Carraro,Ordered Models of the Lambda Calculus.,2013,9,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs9.html#CarraroS13,https://doi.org/10.2168/LMCS-9(4:21)2013 +Ozan Kahramanogullari,Interaction and Depth against Nondeterminism in Proof Search.,2014,10,Logical Methods in Computer Science,2,db/journals/lmcs/lmcs10.html#Kahramanogullari14,https://doi.org/10.2168/LMCS-10(2:5)2014 +Sebastian Rudolph,Type-elimination-based reasoning for the description logic SHIQbs using decision diagrams and disjunctive datalog,2012,8,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs8.html#abs-1202-0914,https://doi.org/10.2168/LMCS-8(1:12)2012 +Manuel A. Martins,The role of logical interpretations in program development.,2014,10,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs10.html#MartinsMB13,https://doi.org/10.2168/LMCS-10(1:1)2014 +Alberto Griggio,Efficient Interpolant Generation in Satisfiability Modulo Linear Integer Arithmetic,2010,8,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs8.html#abs-1010-4422,https://doi.org/10.2168/LMCS-8(3:3)2012 +Lars Birkedal,First steps in synthetic guarded domain theory: step-indexing in the topos of trees,2012,8,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs8.html#abs-1208-3596,https://doi.org/10.2168/LMCS-8(4:1)2012 +Marc de Falco,An Explicit Framework for Interaction Nets,2010,6,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs6.html#abs-1010-1066,https://doi.org/10.2168/LMCS-6(4:6)2010 +Benedikt Bollig,A Robust Class of Data Languages and an Application to Learning.,2014,10,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs10.html#BolligHLM14,https://doi.org/10.2168/LMCS-10(4:19)2014 +Isolde Adler,Tree-width for first order formulae,2012,8,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs8.html#abs-1203-3814,https://doi.org/10.2168/LMCS-8(1:32)2012 +Nathan Bowler,Exploring the Boundaries of Monad Tensorability on Set.,2013,9,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs9.html#BowlerGLS13,https://doi.org/10.2168/LMCS-9(3:22)2013 +Kojiro Higuchi,The degree structure of Weihrauch-reducibility,2011,9,Logical Methods in Computer Science,2,db/journals/lmcs/lmcs9.html#abs-1101-0112,https://doi.org/10.2168/LMCS-9(2:2)2013 +Parosh Aziz Abdulla,Priced Timed Petri Nets.,2013,9,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs9.html#AbdullaM13,https://doi.org/10.2168/LMCS-9(4:10)2013 +Jirí Srba,Beyond Language Equivalence on Visibly Pushdown Automata,2009,5,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs5.html#abs-0901-2068,http://arxiv.org/abs/0901.2068 +Mark Kaminski,Terminating Tableaux for Graded Hybrid Logic with Global Modalities and Role Hierarchies,2011,7,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs7.html#abs-1012-0746,https://doi.org/10.2168/LMCS-7(1:5)2011 +Noam Zeilberger,A correspondence between rooted planar maps and normal planar lambda terms.,2015,11,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs11.html#ZeilbergerG14,https://doi.org/10.2168/LMCS-11(3:22)2015 +Thomas Martin Gawlitza,Invariant Generation through Strategy Iteration in Succinctly Represented Control Flow Graphs,2012,8,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs8.html#abs-1209-0643,https://doi.org/10.2168/LMCS-8(3:29)2012 +Nicole Schweikardt,A note on the expressive power of linear orders,2011,7,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs7.html#abs-1111-5901,https://doi.org/10.2168/LMCS-7(4:7)2011 +Dag Normann,A rich hierarchy of functionals of finite types,2009,5,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs5.html#abs-0909-1198,http://arxiv.org/abs/0909.1198 +Klaus Keimel,Weak upper topologies and duality for cones.,2015,11,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs11.html#Keimel15,https://doi.org/10.2168/LMCS-11(3:21)2015 +Frédéric Herbreteau,Coarse abstractions make Zeno behaviours difficult to detect,2011,9,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs9.html#abs-1106-1850,https://doi.org/10.2168/LMCS-9(1:6)2013 +Olivier Finkel,Ambiguity of omega-Languages of Turing Machines,2014,10,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs10.html#abs-1209-5669,https://doi.org/10.2168/LMCS-10(3:12)2014 +Ralf Wimmer,High-level Counterexamples for Probabilistic Automata,2015,11,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs11.html#abs-1305-5055,https://doi.org/10.2168/LMCS-11(1:15)2015 +Paola Bruscoli,Quasipolynomial Normalisation in Deep Inference via Atomic Flows and Threshold Formulae,2016,12,Logical Methods in Computer Science,2,db/journals/lmcs/lmcs12.html#abs-0903-5392,https://doi.org/10.2168/LMCS-12(2:5)2016 +Bernard Boigelot,On the Sets of Real Numbers Recognized by Finite Automata in Multiple Bases,2010,6,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs6.html#abs-1001-2508,http://arxiv.org/abs/1001.2508 +Dimitrios Kouzapas,Globally Governed Session Semantics.,2014,10,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs10.html#KouzapasY14,https://doi.org/10.2168/LMCS-10(4:20)2014 +Sylvain Conchon,Canonized Rewriting and Ground AC Completion Modulo Shostak Theories : Design and Implementation,2012,8,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs8.html#abs-1207-3262,https://doi.org/10.2168/LMCS-8(3:16)2012 +Wojciech Czerwinski,Reachability Problem for Weak Multi-Pushdown Automata.,2013,9,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs9.html#CzerwinskiHL13,https://doi.org/10.2168/LMCS-9(3:13)2013 +Sam Staton,Relating coalgebraic notions of bisimulation,2011,7,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs7.html#abs-1101-4223,https://doi.org/10.2168/LMCS-7(1:13)2011 +Amélie Gheerbrant,Complete Axiomatizations of Fragments of Monadic Second-Order Logic on Finite Trees,2012,8,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs8.html#abs-1210-2620,https://doi.org/10.2168/LMCS-8(4:12)2012 +Peter Selinger,Finite dimensional Hilbert spaces are complete for dagger compact closed categories.,2012,8,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs8.html#abs-1207-6972,https://doi.org/10.2168/LMCS-8(3:6)2012 +Karin Quaas,Verification for Timed Automata extended with Discrete Data Structure.,2015,11,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs11.html#Quaas14,https://doi.org/10.2168/LMCS-11(3:20)2015 +Mayer Goldberg,Ellipses and Lambda Definability.,2015,11,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs11.html#Goldberg15b,https://doi.org/10.2168/LMCS-11(3:25)2015 +Frédéric Vogels,Featherweight VeriFast.,2015,11,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs11.html#Vogels0P15,https://doi.org/10.2168/LMCS-11(3:19)2015 +Ximeng Li 0001,A Coordination Language for Databases.,2016,13,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs13.html#Li0LNN16,https://doi.org/10.23638/LMCS-13(1:10)2017 +Alessandro Cimatti,Software Model Checking with Explicit Scheduler and Symbolic Threads,2012,8,Logical Methods in Computer Science,2,db/journals/lmcs/lmcs8.html#abs-1206-3182,https://doi.org/10.2168/LMCS-8(2:18)2012 +Naoki Nishida 0001,Soundness of Unravelings for Conditional Term Rewriting Systems via Ultra-Properties Related to Linearity,2012,8,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs8.html#abs-1206-5694,https://doi.org/10.2168/LMCS-8(3:4)2012 +Valentin Blot,Typed realizability for first-order classical analysis.,2015,11,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs11.html#Blot15,https://doi.org/10.2168/LMCS-11(4:22)2015 +Viviana Bono,Typing Copyless Message Passing,2012,8,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs8.html#abs-1202-2086,https://doi.org/10.2168/LMCS-8(1:17)2012 +Marius Bozga,Deciding Conditional Termination,2014,10,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs10.html#abs-1302-2762,https://doi.org/10.2168/LMCS-10(3:8)2014 +Stephan Kreutzer,On the Parameterized Intractability of Monadic Second-Order Logic,2012,8,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs8.html#abs-1203-3167,https://doi.org/10.2168/LMCS-8(1:27)2012 +Guillaume Cano,Formalized linear algebra over Elementary Divisor Rings in Coq.,2016,12,Logical Methods in Computer Science,2,db/journals/lmcs/lmcs12.html#CanoCDMS16,https://doi.org/10.2168/LMCS-12(2:7)2016 +Roberto Bruttomesso,Quantifier-Free Interpolation of a Theory of Arrays,2012,8,Logical Methods in Computer Science,2,db/journals/lmcs/lmcs8.html#abs-1204-2386,https://doi.org/10.2168/LMCS-8(2:4)2012 +Klaus Dräger,Permissive Controller Synthesis for Probabilistic Systems.,2015,11,Logical Methods in Computer Science,2,db/journals/corr/corr1504.html#DragerFK0U15,https://doi.org/10.2168/LMCS-11(2:16)2015 +Giorgi Japaridze,On the system CL12 of computability logic,2015,11,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs11.html#abs-1203-0103,https://doi.org/10.2168/LMCS-11(3:1)2015 +Sadegh Esmaeil Zadeh Soudjani,Quantitative Approximation of the Probability Distribution of a Markov Process by Formal Abstractions.,2015,11,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs11.html#SoudjaniA15,https://doi.org/10.2168/LMCS-11(3:8)2015 +Frank Drewes,Structurally Cyclic Petri Nets.,2015,11,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs11.html#DrewesL15,https://doi.org/10.2168/LMCS-11(4:15)2015 +Ben C. Moszkowski,A Complete Axiom System for Propositional Interval Temporal Logic with Infinite Time,2012,8,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs8.html#abs-1207-3816,https://doi.org/10.2168/LMCS-8(3:10)2012 +Michele Boreale,Quantitative information flow under generic leakage functions and adaptive adversaries.,2015,11,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs11.html#BorealeP15,https://doi.org/10.2168/LMCS-11(4:5)2015 +Andrzej S. Murawski,Block structure vs scope extrusion: between innocence and omniscience.,2016,12,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs12.html#MurawskiT16,https://doi.org/10.2168/LMCS-12(3:3)2016 +Adam Koprowski,TRX: A Formally Verified Parser Interpreter,2011,7,Logical Methods in Computer Science,2,db/journals/lmcs/lmcs7.html#abs-1105-2576,https://doi.org/10.2168/LMCS-7(2:18)2011 +Pablo Barceló,Order-Invariant Types and Their Applications.,2016,12,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs12.html#BarceloL16,https://doi.org/10.2168/LMCS-12(1:9)2016 +Dag Normann,The extensional realizability model of continuous functionals and three weakly non-constructive classical theorems.,2015,11,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs11.html#Normann15,https://doi.org/10.2168/LMCS-11(1:8)2015 +Ionut Tutu,Service-Oriented Logic Programming.,2015,11,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs11.html#TutuF15,https://doi.org/10.2168/LMCS-11(3:3)2015 +Felix Klein 0001,How Much Lookahead is Needed to Win Infinite Games?,2016,12,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs12.html#KleinZ14,https://doi.org/10.2168/LMCS-12(3:4)2016 +Stephen A. Cook,Formal Theories for Linear Algebra,2012,8,Logical Methods in Computer Science,1,db/journals/lmcs/lmcs8.html#abs-1101-1449,https://doi.org/10.2168/LMCS-8(1:25)2012 +Rémi Bonnet,Reachability under Contextual Locking.,2013,9,Logical Methods in Computer Science,3,db/journals/lmcs/lmcs9.html#BonnetCMV13,https://doi.org/10.2168/LMCS-9(3:21)2013 +Thomas P. Jensen,Secure the Clones,2012,8,Logical Methods in Computer Science,2,db/journals/lmcs/lmcs8.html#abs-1204-4322,https://doi.org/10.2168/LMCS-8(2:5)2012 +Tomer Kotek,Connection Matrices and the Definability of Graph Parameters.,2014,10,Logical Methods in Computer Science,4,db/journals/lmcs/lmcs10.html#KotekM13,https://doi.org/10.2168/LMCS-10(4:1)2014 +Michael Mortimer,On languages with two variables.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Mortimer75,https://doi.org/10.1002/malq.19750210118 +Evgueni Vassiliev,Countably Categorical Structures with n-Degenerate Algebraic Closure.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#Vassiliev99,https://doi.org/10.1002/malq.19990450108 +Thomas G. McLaughlin,Existentially Incomplete Tame Models and a Conjecture of Ellentuck.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#McLaughlin99,https://doi.org/10.1002/malq.19990450204 +Stephen L. Bloom,A note on the predicatively definable sets of N. N. Nepeîvoda.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Bloom75,https://doi.org/10.1002/malq.19750210158 +Teruyuki Yorioka,A note on a forcing related to the S-space problem in the extension with a coherent Suslin tree.,2015,61,Math. Log. Q.,3,db/journals/mlq/mlq61.html#Yorioka15,https://doi.org/10.1002/malq.201300066 +P. H. Stanford,A Formalisation of the Integers in a Multi-Successor Arithmetic.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Stanford76,https://doi.org/10.1002/malq.19760220115 +T. C. Wesselkamper,No Abelian Semigroup Operation is Complete.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Wesselkamper76,https://doi.org/10.1002/malq.19760220109 +Alan Rose,A Note on Formalisation by the Method of Description of Truth-Tables.,1978,24,Math. Log. Q.,7,db/journals/mlq/mlq24.html#Rose78,https://doi.org/10.1002/malq.19780240703 +Elisabetta Pastori,Failure of n-uniqueness: a family of examples.,2011,57,Math. Log. Q.,2,db/journals/mlq/mlq57.html#PastoriS11,https://doi.org/10.1002/malq.200910127 +Richard Routley,Welding Semantics For Weak Strict Modal Logics into the General Framework of Modal Logic Semantics.,1977,23,Math. Log. Q.,36,db/journals/mlq/mlq23.html#Routley77,https://doi.org/10.1002/malq.19770233604 +Dugald Macpherson,Extending Partial Orders on o-Minimal Structures to Definable Total Orders.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#MacphersonS97,https://doi.org/10.1002/malq.19970430403 +Marta A. Zander,A note on a subvariety of linear tense algebras.,2005,51,Math. Log. Q.,1,db/journals/mlq/mlq51.html#Zander05,https://doi.org/10.1002/malq.200410012 +,,,,,,, +,,,,,,, +Eiko Isoda,Incompleteness Results in Kripke Bundle Semantics.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#IsodaN97,https://doi.org/10.1002/malq.19970430405 +Miroslawa Kolowska-Gawiejnowicz,Powerset Residuated Algebras and Generalized Lambek Calculus.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Kolowska-Gawiejnowicz97,https://doi.org/10.1002/malq.19970430108 +John T. Baldwin 0001,K-generic Projective Planes have Morley Rank Two or Infinity.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#BaldwinI94,https://doi.org/10.1002/malq.19940400202 +Frank Wolter,Tense Logic Without Tense Operators.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#Wolter96,https://doi.org/10.1002/malq.19960420113 +Ralf Schindler,Thin equivalence relations in scaled pointclasses.,2011,57,Math. Log. Q.,6,db/journals/mlq/mlq57.html#SchindlerS11,https://doi.org/10.1002/malq.200920050 +John L. Hickman,An Ordinal Version of the Fundamental Law of Algebra.,1983,29,Math. Log. Q.,2,db/journals/mlq/mlq29.html#Hickman83,https://doi.org/10.1002/malq.19830290203 +Ricardo Almeida,Connectedness and compactness on standard sets.,2010,56,Math. Log. Q.,1,db/journals/mlq/mlq56.html#Almeida10,https://doi.org/10.1002/malq.200810036 +Hiroya Kawai,Completeness Theorems for Temporal Logics TΩ and ω33*TΩ.,1988,34,Math. Log. Q.,5,db/journals/mlq/mlq34.html#Kawai88,https://doi.org/10.1002/malq.19880340503 +Tarek Sayed Ahmed,On the complexity of axiomatizations of the class of representable quasi-polyadic equality algebras.,2011,57,Math. Log. Q.,4,db/journals/mlq/mlq57.html#Ahmed11,https://doi.org/10.1002/malq.201010015 +Nando Prati,A Partial Model of NF with ZF.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Prati93,https://doi.org/10.1002/malq.19930390132 +,,,,,,, +Abir Nour,Sémantique algébrique d'un systèmes logique basé sur un ensemble ordonné fini.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#Nour99,https://doi.org/10.1002/malq.19990450404 +Lorenz Halbeisen,Making doughnuts of Cohen reals.,2003,49,Math. Log. Q.,2,db/journals/mlq/mlq49.html#Halbeisen03,https://doi.org/10.1002/malq.200310016 +,,,,,,, +Matthew C. Salts,An Interval of Computably Enumerable Isolating Degrees.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#Salts99,https://doi.org/10.1002/malq.19990450106 +Paola D'Aquino,A note on the decidability of exponential terms.,2007,53,Math. Log. Q.,3,db/journals/mlq/mlq53.html#DAquinoT07,https://doi.org/10.1002/malq.200610047 +Douglas R. Busch,On the Number of Solovay r-Degrees.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Busch76,https://doi.org/10.1002/malq.19760220137 +Jeffry L. Hirst,Minima of initial segments of infinite sequences of reals.,2004,50,Math. Log. Q.,1,db/journals/mlq/mlq50.html#Hirst04,https://doi.org/10.1002/malq.200310075 +,,,,,,, +Manfred Armbrust,Equivalence Relations versus Unary Operations.,1983,29,Math. Log. Q.,11,db/journals/mlq/mlq29.html#Armbrust83,https://doi.org/10.1002/malq.19830291104 +Regina Aragón,Some Boolean algebras with finitely many distinguished ideals II.,2003,49,Math. Log. Q.,3,db/journals/mlq/mlq49.html#Aragon03,https://doi.org/10.1002/malq.200310026 +Takao Inoué,Flagg and Friedman's Translation is not Faithful.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Inoue92,https://doi.org/10.1002/malq.19920380151 +Henryk Kotlarski,More on induction in the language with a satisfaction class.,1990,36,Math. Log. Q.,5,db/journals/mlq/mlq36.html#KotlarskiR90,https://doi.org/10.1002/malq.19900360509 +David DeVidi,Intuitionistic epsilon- and tau-calculi.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#DeVidi95,https://doi.org/10.1002/malq.19950410409 +,,,,,,, +Jafar S. Eivazloo,Expansions of ordered fields without definable gaps.,2003,49,Math. Log. Q.,1,db/journals/mlq/mlq49.html#EivazlooM03,https://doi.org/10.1002/malq.200310005 +Richard Kaye,Parameter-Free Universal Induction.,1989,35,Math. Log. Q.,5,db/journals/mlq/mlq35.html#Kaye89,https://doi.org/10.1002/malq.19890350511 +Bernhard Heinemann,On Binary Computation Structures.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Heinemann97,https://doi.org/10.1002/malq.19970430205 +Tarek Sayed Ahmed,An Omitting Types Theorem for first order logic with infinitary relation symbols.,2007,53,Math. Log. Q.,6,db/journals/mlq/mlq53.html#AhmedS07,https://doi.org/10.1002/malq.200610050 +Piotr Borodulin-Nadzieja,Ideals with bases of unbounded Borel complexity.,2011,57,Math. Log. Q.,6,db/journals/mlq/mlq57.html#Borodulin-NadziejaG11,https://doi.org/10.1002/malq.201020081 +Karol Habart,On Absoluteness.,1989,35,Math. Log. Q.,5,db/journals/mlq/mlq35.html#Habart89,https://doi.org/10.1002/malq.19890350513 +Bing-Yu Zhang,Lp-Computability.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#ZhangZ99,https://doi.org/10.1002/malq.19990450403 +Martin Lange,A quick axiomatisation of LTL with past.,2005,51,Math. Log. Q.,1,db/journals/mlq/mlq51.html#Lange05,https://doi.org/10.1002/malq.200410009 +László Csirmaz,Strong Semantical Characterization for Nondeterministic Programs.,1987,33,Math. Log. Q.,5,db/journals/mlq/mlq33.html#Csirmaz87,https://doi.org/10.1002/malq.19870330504 +Josef Berger,Exact calculation of inverse functions.,2005,51,Math. Log. Q.,2,db/journals/mlq/mlq51.html#Berger05,https://doi.org/10.1002/malq.200410020 +,,,,,,, +,,,,,,, +Vasco Brattka,Approaches to Effective Semi-Continuity of Real Functions.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#BrattkaZW99,https://doi.org/10.1002/malq.19990450407 +Frederik Herzberg,"Addendum to ""A definable nonstandard enlargement"".",2008,54,Math. Log. Q.,6,db/journals/mlq/mlq54.html#Herzberg08a,https://doi.org/10.1002/malq.200810002 +Carlos G. González,The union axiom in zermelo set theory.,1990,36,Math. Log. Q.,4,db/journals/mlq/mlq36.html#Gonzalez90,https://doi.org/10.1002/malq.19900360402 +Hirokazu Nishimura,On the absoluteness of types in boolean valued lattices.,1990,36,Math. Log. Q.,3,db/journals/mlq/mlq36.html#Nishimura90,https://doi.org/10.1002/malq.19900360308 +Akito Tsuboi,Almost Total Elementary Maps.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#TsuboiI95,https://doi.org/10.1002/malq.19950410306 +Daniel Dzierzgowski,Typical Ambiguity and Elementary Equivalence.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Dzierzgowski93,https://doi.org/10.1002/malq.19930390147 +Michael Deutsch 0001,Zur Darstellung koaufzählbarer Prädikate bei Verwendung eines einzigen unbeschränkten Quantors.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Deutsch75a,https://doi.org/10.1002/malq.19750210161 +Yi Zhang,Towards a Problem of E. van Douwen and A. Miller.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#Zhang99,https://doi.org/10.1002/malq.19990450203 +,,,,,,, +Rutger Kuyper,Computational aspects of satisfiability in probability logic.,2014,60,Math. Log. Q.,6,db/journals/mlq/mlq60.html#Kuyper14,https://doi.org/10.1002/malq.201300015 +George F. Schumm,Disjunctive extensions of S4 and a conjecture of Goldblatt's.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Schumm75,https://doi.org/10.1002/malq.19750210110 +Heike Mildenberger,Borel on the Questions Versus Borel on the Answers.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#Mildenberger99,https://doi.org/10.1002/malq.19990450112 +Joseph Zielinski,An automorphism group of an ω*-stable structure that is not locally (OB).,2016,62,Math. Log. Q.,6,db/journals/mlq/mlq62.html#Zielinski16,https://doi.org/10.1002/malq.201500074 +,,,,,,, +Hisato Muraki,Largest fixed points of set continuous operators and Boffa's Anti-Foundation.,2005,51,Math. Log. Q.,4,db/journals/mlq/mlq51.html#Muraki05,https://doi.org/10.1002/malq.200410039 +Andrzej Orlicki,Binary Relations Over the Category of Enumerated Sets.,1988,34,Math. Log. Q.,3,db/journals/mlq/mlq34.html#Orlicki88a,https://doi.org/10.1002/malq.19880340310 +S. K. Thomason,The logical consequence relation of propositional tense logic.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Thomason75,https://doi.org/10.1002/malq.19750210104 +,,,,,,, +Saharon Shelah,Models of PA: when two elements are necessarily order automorphic.,2015,61,Math. Log. Q.,6,db/journals/mlq/mlq61.html#Shelah15,https://doi.org/10.1002/malq.200920124 +Radim Belohlávek,Fuzzy Galois Connections.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#Belohlavek99,https://doi.org/10.1002/malq.19990450408 +Petr Hájek 0001,A note on the first-order logic of complete BL-chains.,2008,54,Math. Log. Q.,4,db/journals/mlq/mlq54.html#HajekM08,https://doi.org/10.1002/malq.200710058 +Andrés Villaveces,Around independence and domination in metric abstract elementary classes: assuming uniqueness of limit models.,2014,60,Math. Log. Q.,3,db/journals/mlq/mlq60.html#VillavecesZ14,https://doi.org/10.1002/malq.201300059 +Norihiro Kamide,Notes on Craig interpolation for LJ with strong negation.,2011,57,Math. Log. Q.,4,db/journals/mlq/mlq57.html#Kamide11,https://doi.org/10.1002/malq.201010016 +,,,,,,, +J. Donald Monk,Special subalgebras of Boolean algebras.,2010,56,Math. Log. Q.,2,db/journals/mlq/mlq56.html#Monk10,https://doi.org/10.1002/malq.200910002 +Wolfram Menzel,Topological aspects of numberings.,2003,49,Math. Log. Q.,2,db/journals/mlq/mlq49.html#MenzelS03,https://doi.org/10.1002/malq.200310013 +Omar De la Cruz,Metric spaces and the axiom of choice.,2003,49,Math. Log. Q.,5,db/journals/mlq/mlq49.html#CruzHHKR03a,https://doi.org/10.1002/malq.200310049 +,Cover Picture.,2018,64,Math. Log. Q.,3,db/journals/mlq/mlq64.html#X18,https://doi.org/10.1002/malq.201870013 +Hirokazu Nishimura,The Semantical Characterization of de Dicto in Continuous Modal Model Theory.,1981,27,Math. Log. Q.,15,db/journals/mlq/mlq27.html#Nishimura81,https://doi.org/10.1002/malq.19810271503 +Wolfgang Merkle,Exact Pairs for Abstract Bounded Reducibilities.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#Merkle99,https://doi.org/10.1002/malq.19990450306 +Thomas G. McLaughlin,Some Extension and Rearrangement Theorems For Nerode Semirings.,1989,35,Math. Log. Q.,3,db/journals/mlq/mlq35.html#McLaughlin89,https://doi.org/10.1002/malq.19890350303 +Olga Xirotiri,There is no safe pairing function over an arbitrary structure.,2006,52,Math. Log. Q.,4,db/journals/mlq/mlq52.html#Xirotiri06,https://doi.org/10.1002/malq.200610003 +Philipp Kleppmann,Nielsen-Schreier and the Axiom of Choice.,2015,61,Math. Log. Q.,6,db/journals/mlq/mlq61.html#Kleppmann15,https://doi.org/10.1002/malq.201400046 +Fabio Bellissima,Minimal Axiomatization in Modal Logic.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#BellissimaC97,https://doi.org/10.1002/malq.19970430112 +J. V. Howard,Computable explanations.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Howard75,https://doi.org/10.1002/malq.19750210129 +,,,,,,, +Hirokazu Nishimura,Saturated and Special Models in Modal Model Theory With Applications to the Modal and DE RE Hierarchies.,1980,26,Math. Log. Q.,31,db/journals/mlq/mlq26.html#Nishimura80a,https://doi.org/10.1002/malq.19800263102 +Philippe Moser,On the convergence of Fourier series of computable Lebesgue integrable functions.,2010,56,Math. Log. Q.,5,db/journals/mlq/mlq56.html#Moser10,https://doi.org/10.1002/malq.200910101 +Erez Shochat,A Galois correspondence for countable short recursively saturated models of PA.,2010,56,Math. Log. Q.,3,db/journals/mlq/mlq56.html#Shochat10,https://doi.org/10.1002/malq.200810050 +Hervé Perdry,Henselian valued fields: a constructive point of view.,2005,51,Math. Log. Q.,4,db/journals/mlq/mlq51.html#Perdry05,https://doi.org/10.1002/malq.200410042 +Marianne Morillon,Three-space type Hahn-Banach properties.,2017,63,Math. Log. Q.,5,db/journals/mlq/mlq63.html#Morillon17,https://doi.org/10.1002/malq.201500087 +Michael A. Ingrassia,Jumps of nontrivial splittings of recursively enumerable sets.,1990,36,Math. Log. Q.,4,db/journals/mlq/mlq36.html#IngrassiaL90,https://doi.org/10.1002/malq.19900360403 +,,,,,,, +,,,,,,, +John L. Hickman,Boundedness Properties of Cardinals.,1979,25,Math. Log. Q.,31,db/journals/mlq/mlq25.html#Hickman79c,https://doi.org/10.1002/malq.19790253103 +Ingrid Lindström,Degrees of Souslin And Aronszajn Trees.,1987,33,Math. Log. Q.,2,db/journals/mlq/mlq33.html#Lindstrom87,https://doi.org/10.1002/malq.19870330211 +Kyriakos Keremedis,Compact and Loeb Hausdorff spaces in andequation image* and the axiom of choice for families of finite sets.,2012,58,Math. Log. Q.,3,db/journals/mlq/mlq58.html#Keremedis12,https://doi.org/10.1002/malq.201020039 +Erik Palmgren,Resolution of the uniform lower bound problem in constructive analysis.,2008,54,Math. Log. Q.,1,db/journals/mlq/mlq54.html#Palmgren08,https://doi.org/10.1002/malq.200710034 +Claudio Cerrato,Modal Tree-Sequents.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#Cerrato96,https://doi.org/10.1002/malq.19960420117 +Jack H. Lutz,Connectivity properties of dimension level sets.,2008,54,Math. Log. Q.,5,db/journals/mlq/mlq54.html#LutzW08,https://doi.org/10.1002/malq.200710060 +Armin Hemmerling,Computability of String Functions Over Algebraic Structures.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#Hemmerling98,https://doi.org/10.1002/malq.19980440102 +Hilbert Levitz,A Macro Program for the Primitive Recursive Functions.,1991,37,Math. Log. Q.,8,db/journals/mlq/mlq37.html#LevitzNS91,https://doi.org/10.1002/malq.19910370803 +Dietmar Schweigert,A Completeness Theorem for Correlation Lattices.,1983,29,Math. Log. Q.,8,db/journals/mlq/mlq29.html#SchweigertS83,https://doi.org/10.1002/malq.19830290803 +Hans Kleine Büning,Durch syntaktische Rekursion definierte Klassen.,1983,29,Math. Log. Q.,3,db/journals/mlq/mlq29.html#Buning83,https://doi.org/10.1002/malq.19830290306 +Pawel Pazdyka,The Preservation of submodel Relation by Taking Primitive Models.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Pazdyka92,https://doi.org/10.1002/malq.19920380102 +Heinrich Herre,Entscheidbarkeit von Theorien in Logiken mit verallgemeinerten Quantoren.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#HerreW75,https://doi.org/10.1002/malq.19750210131 +Daniel G. Schwartz,Semantic Completeness of Free-Variable Theories.,1987,33,Math. Log. Q.,5,db/journals/mlq/mlq33.html#Schwartz87b,https://doi.org/10.1002/malq.19870330508 +Robert S. Lubarsky,The Kripke schema in metric topology.,2012,58,Math. Log. Q.,6,db/journals/mlq/mlq58.html#LubarskyRS12,https://doi.org/10.1002/malq.201200018 +Victor Pambuccian,Ternary Operations as Primitive Notions for Constructive Plane Geometry V.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Pambuccian94a,https://doi.org/10.1002/malq.19940400404 +Norihiro Kamide,A note on dual-intuitionistic logic.,2003,49,Math. Log. Q.,5,db/journals/mlq/mlq49.html#Kamide03a,https://doi.org/10.1002/malq.200310055 +,,,,,,, +Rusins Freivalds,Probabilistic Versus Deterministic Inductive Inference in Nonstandard Numberings.,1988,34,Math. Log. Q.,6,db/journals/mlq/mlq34.html#FreivaldsKW88,https://doi.org/10.1002/malq.19880340605 +Alan Rose,Formalisations With Non-Standard Degrees of Completeness.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Rose76a,https://doi.org/10.1002/malq.19760220124 +,,,,,,, +Bernhard Banaschewski,Choice Principles and Compactness Conditions.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#Banaschewski98,https://doi.org/10.1002/malq.19980440313 +Sofya Kamenkovich,Euler characteristic of imaginaries in o-minimal structures.,2017,63,Math. Log. Q.,5,db/journals/mlq/mlq63.html#KamenkovichP17,https://doi.org/10.1002/malq.201500031 +Helmut Vogel,über ein mit der Bar-Induktion Verwandtes Schema.,1979,25,Math. Log. Q.,30,db/journals/mlq/mlq25.html#Vogel79,https://doi.org/10.1002/malq.19790253002 +Anne Preller,An Interpretation of Martin-LöF's Constructive Theory of Types in Elementary Topos Theory.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Preller92,https://doi.org/10.1002/malq.19920380118 +Saturo Kuroda,On a Theory for AC0 and the Strength of the Induction Scheme.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#Kuroda98,https://doi.org/10.1002/malq.19980440312 +Gerhard Lischke,Towards the Actual Relationship Between NP and Exponential Time.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#Lischke99,https://doi.org/10.1002/malq.19990450104 +Alessandra Carbone,Much shorter proofs: A bimodal investigation.,1990,36,Math. Log. Q.,1,db/journals/mlq/mlq36.html#CarboneM90,https://doi.org/10.1002/malq.19900360107 +Daria Spescha,Realisability in weak systems of explicit mathematics.,2011,57,Math. Log. Q.,6,db/journals/mlq/mlq57.html#SpeschaS11,https://doi.org/10.1002/malq.201020064 +Douglas S. Bridges,A General Constructive Intermediate Value Theorem.,1989,35,Math. Log. Q.,5,db/journals/mlq/mlq35.html#Bridges89,https://doi.org/10.1002/malq.19890350509 +Juji Takahashi,Models of Set Theory in Which Every Normal Precipitous Ideal is Uniformly Normed.,1989,35,Math. Log. Q.,6,db/journals/mlq/mlq35.html#Takahashi89,https://doi.org/10.1002/malq.19890350609 +Shokoofeh Ghorbani,On the category of hyper MV-algebras.,2009,55,Math. Log. Q.,1,db/journals/mlq/mlq55.html#GhorbaniEH09,https://doi.org/10.1002/malq.200710082 +João Rasga,Interpolation via translations.,2009,55,Math. Log. Q.,5,db/journals/mlq/mlq55.html#RasgaCS09,https://doi.org/10.1002/malq.200810013 +Stéphane Le Roux 0001,Singular coverings and non-uniform notions of closed set computability.,2008,54,Math. Log. Q.,5,db/journals/mlq/mlq54.html#RouxZ08,https://doi.org/10.1002/malq.200610058 +Ray E. Jennings,Modal Undefinability in Some Alternative Leibnizian Frames.,1988,34,Math. Log. Q.,1,db/journals/mlq/mlq34.html#JenningsPO88,https://doi.org/10.1002/malq.19880340104 +,,,,,,, +Krister Segerberg,Arbitrary Truth-Value Functions and Natural Deduction.,1983,29,Math. Log. Q.,11,db/journals/mlq/mlq29.html#Segerberg83,https://doi.org/10.1002/malq.19830291102 +Paul E. Howard,The Boolean Prime Ideal Theorem Plus Countable Choice Do Not Imply Dependent Choice.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#HowardR96,https://doi.org/10.1002/malq.19960420133 +,,,,,,, +Dolph Ulrich,Generalization of a Result of Pahi's.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Ulrich76a,https://doi.org/10.1002/malq.19760220154 +,,,,,,, +,,,,,,, +Adam Piolunowicz,On the Shadows of Ideals.,1987,33,Math. Log. Q.,3,db/journals/mlq/mlq33.html#Piolunowicz87,https://doi.org/10.1002/malq.19870330302 +,,,,,,, +George Voutsadakis,Categorical Abstract Algebraic Logic: Algebraic Semantics for (χ0*)-Institutions.,2013,59,Math. Log. Q.,3,db/journals/mlq/mlq59.html#Voutsadakis13,https://doi.org/10.1002/malq.200920103 +Jean Guillaume Hagendorf,Sur La Reconstruction Des Ordres Totaux.,1988,34,Math. Log. Q.,3,db/journals/mlq/mlq34.html#Hagendorf88,https://doi.org/10.1002/malq.19880340302 +Brian F. Chellas,The completeness of monotonic modal logics.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#ChellasM75,https://doi.org/10.1002/malq.19750210150 +Cristian S. Calude,Recursive Baire Classification and Speedable Functions.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#CaludeIZ92,https://doi.org/10.1002/malq.19920380112 +Kees Doets,Relatives of the Russell Paradox.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#Doets99,https://doi.org/10.1002/malq.19990450107 +Mário J. Edmundo,Definable group extensions in semi-bounded o-minimal structures.,2009,55,Math. Log. Q.,6,db/journals/mlq/mlq55.html#EdmundoE09,https://doi.org/10.1002/malq.200910027 +Dev Kumar Roy,The shortest definition of a number in Peano arithmetic.,2003,49,Math. Log. Q.,1,db/journals/mlq/mlq49.html#Roy03,https://doi.org/10.1002/malq.200310006 +,,,,,,, +Douglas S. Bridges,Complements of Intersections in Constructive Mathematics.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#BridgesI94,https://doi.org/10.1002/malq.19940400106 +Petr Glivický,A wild model of linear arithmetic and discretely ordered modules.,2017,63,Math. Log. Q.,6,db/journals/mlq/mlq63.html#GlivickyP17,https://doi.org/10.1002/malq.201600012 +Maciej Kandulski,On Commutative and Nonassociative Syntactic Calculi and Categorial Grammars.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#Kandulski95,https://doi.org/10.1002/malq.19950410208 +Robert K. Meyer,Further Results on Proof Theories For Semilattice Logics.,1988,34,Math. Log. Q.,4,db/journals/mlq/mlq34.html#MeyerMGU88,https://doi.org/10.1002/malq.19880340404 +Charles M. Harris,Automorphisms of λ1*-like computable linear orderings and Kierstead's conjecture.,2016,62,Math. Log. Q.,6,db/journals/mlq/mlq62.html#HarrisLC16,https://doi.org/10.1002/malq.201400109 +Roman Wencel,Imaginaries in Boolean algebras.,2012,58,Math. Log. Q.,3,db/journals/mlq/mlq58.html#Wencel12,https://doi.org/10.1002/malq.201020082 +Petr Cintula,Residuated logics based on strict triangular norms with an involutive negation.,2006,52,Math. Log. Q.,3,db/journals/mlq/mlq52.html#CintulaKMN06,https://doi.org/10.1002/malq.200510032 +Roman Murawski,Iterations of Satisfaction Classes and Models of Peano Arithmetic.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Murawski92,https://doi.org/10.1002/malq.19920380106 +Linda Wessels,Cut Elimination in a Gentzen-Style and#1013*-Calculus Without Identity.,1977,23,Math. Log. Q.,36,db/journals/mlq/mlq23.html#Wessels77,https://doi.org/10.1002/malq.19770233606 +David W. Kueker,Vaught Sentences and the Covering Theorem.,1988,34,Math. Log. Q.,3,db/journals/mlq/mlq34.html#Kueker88,https://doi.org/10.1002/malq.19880340306 +Kyriakos Keremedis,Choice principles for special subsets of the real line.,2003,49,Math. Log. Q.,5,db/journals/mlq/mlq49.html#KeremedisT03,https://doi.org/10.1002/malq.200310048 +Eric Schechter,Two Topological Equivalents of the Axiom of Choice.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Schechter92,https://doi.org/10.1002/malq.19920380152 +Ugo Solitro,Local Computation in Linear Logic.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#SolitroV93,https://doi.org/10.1002/malq.19930390123 +Stefano Baratella,On Some Properties of Recursively Enumerable Equivalence Relations.,1989,35,Math. Log. Q.,3,db/journals/mlq/mlq35.html#Baratella89,https://doi.org/10.1002/malq.19890350309 +Caterina Bianchini,Reducibility in Some Categories of Partial Recursive Operators.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#BianchiniS92,https://doi.org/10.1002/malq.19920380133 +,,,,,,, +Wafik Boulos Lotfallah,An Ehrenfeucht-Fraïssé class game.,2004,50,Math. Log. Q.,2,db/journals/mlq/mlq50.html#Lotfallah04,https://doi.org/10.1002/malq.200310088 +,,,,,,, +Lida Torkzadeh,Hyper MV-ideals in hyper MV-algebras.,2010,56,Math. Log. Q.,1,db/journals/mlq/mlq56.html#TorkzadehA10,https://doi.org/10.1002/malq.200810035 +,,,,,,, +Thierry Libert,On topological set theory.,2005,51,Math. Log. Q.,3,db/journals/mlq/mlq51.html#LibertE05,https://doi.org/10.1002/malq.200410026 +Jürgen Hauck,Berechenbare Reelle Funktionenfolgen.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Hauck76,https://doi.org/10.1002/malq.19760220136 +Gábor Erdélyi,Sincere-Strategy Preference-Based Approval Voting Fully Resists Constructive Control and Broadly Resists Destructive Control.,2009,55,Math. Log. Q.,4,db/journals/mlq/mlq55.html#ErdelyiNR09,https://doi.org/10.1002/malq.200810020 +Dirk van Dalen,Intuitionistic Free Abelian Groups.,1988,34,Math. Log. Q.,1,db/journals/mlq/mlq34.html#DalenV88,https://doi.org/10.1002/malq.19880340102 +Helmut Wolter,Orderings in Exponential Fields of Term Defined Functions.,1989,35,Math. Log. Q.,2,db/journals/mlq/mlq35.html#Wolter89,https://doi.org/10.1002/malq.19890350209 +Hiroshi Sakai,Generalized Prikry forcing and iteration of generic ultrapowers.,2005,51,Math. Log. Q.,5,db/journals/mlq/mlq51.html#Sakai05,https://doi.org/10.1002/malq.200410047 +,,,,,,, +Chaz Schlindwein,A short proof of the preservation of the omegaomega-bounding property.,2004,50,Math. Log. Q.,1,db/journals/mlq/mlq50.html#Schlindwein04,https://doi.org/10.1002/malq.200310072 +Yutaka Yasuda,Some Properties of Thin and#928*.,1987,33,Math. Log. Q.,3,db/journals/mlq/mlq33.html#Yasuda87,https://doi.org/10.1002/malq.19870330303 +Arthur W. Apter,Removing Laver functions from supercompactness arguments.,2005,51,Math. Log. Q.,2,db/journals/mlq/mlq51.html#Apter05,https://doi.org/10.1002/malq.200410015 +Saharon Shelah,On long increasing chains modulo flat ideals.,2010,56,Math. Log. Q.,4,db/journals/mlq/mlq56.html#Shelah10,https://doi.org/10.1002/malq.200910010 +Richard Kaye,Generic cuts in models of arithmetic.,2008,54,Math. Log. Q.,2,db/journals/mlq/mlq54.html#Kaye08,https://doi.org/10.1002/malq.200710017 +Dietrich Schwartz,Ultraprodukte in der Theorie der logischen Auswahlfunktionen.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Schwartz75,https://doi.org/10.1002/malq.19750210151 +Douglas S. Bridges,A Constructive Treatment of Open and Unopen Mapping Theorems.,1989,35,Math. Log. Q.,1,db/journals/mlq/mlq35.html#BridgesJM89,https://doi.org/10.1002/malq.19890350105 +Eduardo Hirsh,Algebraization of logics defined by literal-paraconsistent or literal-paracomplete matrices.,2008,54,Math. Log. Q.,2,db/journals/mlq/mlq54.html#HirshL08,https://doi.org/10.1002/malq.200710021 +Morteza Moniri,Preservation theorems for Kripke models.,2009,55,Math. Log. Q.,2,db/journals/mlq/mlq55.html#MoniriZ09,https://doi.org/10.1002/malq.200710085 +Harvey Friedman,A cumulative hierarchy of predicates.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Friedman75,https://doi.org/10.1002/malq.19750210137 +Ryo Kashima,On semilattice relevant logics.,2003,49,Math. Log. Q.,4,db/journals/mlq/mlq49.html#Kashima03,https://doi.org/10.1002/malq.200310043 +Arthur W. Apter,Universal partial indestructibility and strong compactness.,2005,51,Math. Log. Q.,5,db/journals/mlq/mlq51.html#Apter05b,https://doi.org/10.1002/malq.200510004 +Daniel G. Schwartz,A Free-Variable Theory of Primitive Recursive Arithmetic.,1987,33,Math. Log. Q.,2,db/journals/mlq/mlq33.html#Schwartz87,https://doi.org/10.1002/malq.19870330210 +Barbara F. Csima,Degree spectra and immunity properties.,2010,56,Math. Log. Q.,1,db/journals/mlq/mlq56.html#CsimaK10,https://doi.org/10.1002/malq.200910001 +Tapani Hyttinen,Generalizing Morley's Theorem.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#Hyttinen98,https://doi.org/10.1002/malq.19980440205 +,,,,,,, +Eliot D. Feldman,L- Σ.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Feldman75,https://doi.org/10.1002/malq.19750210163 +Shahram Mohsenipour,On Keisler singular-like models.,2008,54,Math. Log. Q.,3,db/journals/mlq/mlq54.html#Mohsenipour08,https://doi.org/10.1002/malq.200710047 +,,,,,,, +Claude Laflamme,Bonnding and Dominating Number of Families of Functions on ω*.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Laflamme94,https://doi.org/10.1002/malq.19940400208 +Liljana Babinkostova,On some questions about selective separability.,2009,55,Math. Log. Q.,5,db/journals/mlq/mlq55.html#Babinkostova09,https://doi.org/10.1002/malq.200810010 +George Epstein,Logics Which Are Characterized by Subresiduated Lattices.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#EpsteinH76,https://doi.org/10.1002/malq.19760220128 +Arthur W. Apter,Forcing the Least Measurable to Violate GCH.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#Apter99,https://doi.org/10.1002/malq.19990450412 +Gonçalo Gutierres,On countable choice and sequential spaces.,2008,54,Math. Log. Q.,2,db/journals/mlq/mlq54.html#Gutierres08,https://doi.org/10.1002/malq.200710018 +Wilhelm Kubin,Eine Axiomatisierung der Mehrwertigen Logiken von Gödel.,1979,25,Math. Log. Q.,33,db/journals/mlq/mlq25.html#Kubin79,https://doi.org/10.1002/malq.19790253306 +Jialu Zhang,Fuzzy topology representation for MV-algebras.,2009,55,Math. Log. Q.,3,db/journals/mlq/mlq55.html#ZhangC09,https://doi.org/10.1002/malq.200810005 +Hisato Muraki,Non Complementedness and Non Distributivity of Kleene Degrees.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Muraki97,https://doi.org/10.1002/malq.19970430310 +Teresa Bigorajska,Strongly maximal subgroups determined by elements in interstices.,2003,49,Math. Log. Q.,1,db/journals/mlq/mlq49.html#Bigorajska03,https://doi.org/10.1002/malq.200310010 +,,,,,,, +Ai-ni Hsieh,A finite model property for RMImin.,2006,52,Math. Log. Q.,6,db/journals/mlq/mlq52.html#HsiehR06,https://doi.org/10.1002/malq.200610018 +Michael Rathjen,The Recursively Mahlo Property in Second Order Arithmetic.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#Rathjen96,https://doi.org/10.1002/malq.19960420106 +Pascal Ostermann,Many-Valued Modal Propositional Calculi.,1988,34,Math. Log. Q.,4,db/journals/mlq/mlq34.html#Ostermann88,https://doi.org/10.1002/malq.19880340411 +Petra Murinová,Omitting types in fuzzy logic with evaluated syntax.,2006,52,Math. Log. Q.,3,db/journals/mlq/mlq52.html#MurinovaN06,https://doi.org/10.1002/malq.200510031 +Seyed-Mohammad Bagheri,A Los type theorem for linear metric formulas.,2010,56,Math. Log. Q.,1,db/journals/mlq/mlq56.html#Bagheri10,https://doi.org/10.1002/malq.200810037 +,,,,,,, +Tapani Hyttinen,Finiteness of U-rank implies simplicity in homogeneous structures.,2003,49,Math. Log. Q.,6,db/journals/mlq/mlq49.html#Hyttinen03,https://doi.org/10.1002/malq.200310062 +Sebastien Vasey,On the uniqueness property of forking in abstract elementary classes.,2017,63,Math. Log. Q.,6,db/journals/mlq/mlq63.html#Vasey17a,https://doi.org/10.1002/malq.201700020 +Janak Ramakrishnan,Uniform bounds on growth in o-minimal structures.,2010,56,Math. Log. Q.,4,db/journals/mlq/mlq56.html#Ramakrishnan10,https://doi.org/10.1002/malq.200910031 +Maurizio Fattorosi-Barnaba,An Infinitary Graded Modal Logic (Graded Modalities VI).,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#Fattorosi-BarnabaG95,https://doi.org/10.1002/malq.19950410410 +Larry Mathews,Completions of Convexly Ordered Valuation Rings.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Mathews94,https://doi.org/10.1002/malq.19940400303 +Alexander Berenstein,Supersimple structures with a dense independent subset.,2017,63,Math. Log. Q.,6,db/journals/mlq/mlq63.html#BerensteinCV17,https://doi.org/10.1002/malq.201500022 +A. K. Khalifa,A constructive version of Sperner's lemma and Brouwer's fixed point theorem.,1990,36,Math. Log. Q.,3,db/journals/mlq/mlq36.html#Khalifa90,https://doi.org/10.1002/malq.19900360309 +Michael Deutsch 0001,Zur Präfixoptimalität Gewisser and#8708* ... and#8708*-Darstellungen Aufzählbarer Prädikate.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Deutsch76,https://doi.org/10.1002/malq.19760220144 +Uffe Flarup Hansen,Two logical hierarchies of optimization problems over the real numbers.,2006,52,Math. Log. Q.,1,db/journals/mlq/mlq52.html#HansenM06,https://doi.org/10.1002/malq.200510021 +Mai Gehrke,The Order Structure of Stone Spaces and the TD-Separation Axiom.,1991,37,Math. Log. Q.,1,db/journals/mlq/mlq37.html#Gehrke91,https://doi.org/10.1002/malq.19910370103 +Antonín Sochor,Choices of Convenient Sets.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Sochor94,https://doi.org/10.1002/malq.19940400108 +Aviad Heifetz,Infinitary S5-Epistemic Logic.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Heifetz97,https://doi.org/10.1002/malq.19970430306 +,,,,,,, +Pawel Pazdyka,On a Reconstruction of Models with Only One Binary Relation.,1988,34,Math. Log. Q.,5,db/journals/mlq/mlq34.html#Pazdyka88,https://doi.org/10.1002/malq.19880340508 +Armin Hemmerling,Editorial: Math. Log. Quart. 1/2007.,2007,53,Math. Log. Q.,1,db/journals/mlq/mlq53.html#Hemmerling07,https://doi.org/10.1002/malq.200790000 +Néstor G. Martínez,Elimination of Quantifiers on Ł*ukasiewicz Logics.,1989,35,Math. Log. Q.,1,db/journals/mlq/mlq35.html#Martinez89,https://doi.org/10.1002/malq.19890350103 +Lankun Guo,Fuzzy closure systems on L - ordered sets.,2011,57,Math. Log. Q.,3,db/journals/mlq/mlq57.html#GuoZL11,https://doi.org/10.1002/malq.201010007 +Stefano Mazzanti,Bounded iteration and unary functions.,2005,51,Math. Log. Q.,1,db/journals/mlq/mlq51.html#Mazzanti05,https://doi.org/10.1002/malq.200410010 +Paul B. Larson,The stationary set splitting game.,2008,54,Math. Log. Q.,2,db/journals/mlq/mlq54.html#LarsonS08,https://doi.org/10.1002/malq.200610054 +V. Michele Abrusci,Non-commutative intuitionistic linear logic.,1990,36,Math. Log. Q.,4,db/journals/mlq/mlq36.html#Abrusci90a,https://doi.org/10.1002/malq.19900360405 +Josef Berger,Editorial: Math. Log. Quart. 1/2008.,2008,54,Math. Log. Q.,1,db/journals/mlq/mlq54.html#BergerPSZ08,https://doi.org/10.1002/malq.200890000 +Hirokazu Nishimura,A Boolean Transfer Principle from L*-Algebras to AL*-Algebras.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Nishimura93a,https://doi.org/10.1002/malq.19930390128 +Janak Ramakrishnan,Maximal small extensions of o-minimal structures.,2010,56,Math. Log. Q.,5,db/journals/mlq/mlq56.html#Ramakrishnan10a,https://doi.org/10.1002/malq.200910102 +,,,,,,, +M. Armbrust,An Equivalence-Theoretic Equivalent of the Axiom of Choice.,1986,32,Math. Log. Q.,6,db/journals/mlq/mlq32.html#Armbrust86,https://doi.org/10.1002/malq.19860320604 +Giovanna Corsi,Weak Logics with Strict Implication.,1987,33,Math. Log. Q.,5,db/journals/mlq/mlq33.html#Corsi87,https://doi.org/10.1002/malq.19870330503 +Makoto Kobayashi,A note on stationarity of types over models in simple theories.,2008,54,Math. Log. Q.,6,db/journals/mlq/mlq54.html#KobayashiT08,https://doi.org/10.1002/malq.200710071 +Zuzana Haniková,Distinguishing standard SBL-algebras with involutive negations by propositional formulas.,2008,54,Math. Log. Q.,6,db/journals/mlq/mlq54.html#HanikovaS08,https://doi.org/10.1002/malq.200610057 +Marian Boykan Pour-El,On a simple definition of computable function of a real variable-with applications to functions of a complex variable.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Pour-ElC75,https://doi.org/10.1002/malq.19750210102 +Norbert Brunner,KategoriesäTze und multiples Auswahlaxiom.,1983,29,Math. Log. Q.,8,db/journals/mlq/mlq29.html#Brunner83,https://doi.org/10.1002/malq.19830290804 +C. K. R. T. Jones,The and#1009*-Calculus.,1981,27,Math. Log. Q.,7,db/journals/mlq/mlq27.html#JonesK81,https://doi.org/10.1002/malq.19810270702 +Maria Emilia Maietti,Can You Add Power-Sets to Martin-Löf's Intuitionistic Set Theory?,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#MaiettiV99,https://doi.org/10.1002/malq.19990450410 +,,,,,,, +Douglas S. Bridges,Continuous homomorphisms of R onto a compact group.,2010,56,Math. Log. Q.,2,db/journals/mlq/mlq56.html#BridgesH10,https://doi.org/10.1002/malq.200810048 +,,,,,,, +Dolph Ulrich,On a Property of Matrices for Subsystems of IC+.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Ulrich76,https://doi.org/10.1002/malq.19760220126 +Albert Hoogewijs,A Partial Predicate Calculus in a Two-Valued Logic.,1983,29,Math. Log. Q.,4,db/journals/mlq/mlq29.html#Hoogewijs83,https://doi.org/10.1002/malq.19830290410 +Arno Pauly,On the (semi)lattices induced by continuous reducibilities.,2010,56,Math. Log. Q.,5,db/journals/mlq/mlq56.html#Pauly10,https://doi.org/10.1002/malq.200910104 +Ivan N. Soskov,Intrinsically Hyperarithmetical Sets.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#Soskov96a,https://doi.org/10.1002/malq.19960420139 +Olaf Beyersdorff,Do there exist complete sets for promise classes?,2011,57,Math. Log. Q.,6,db/journals/mlq/mlq57.html#BeyersdorffS11,https://doi.org/10.1002/malq.201010021 +Sebastiaan Terwijn,Arithmetical Measure.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#TerwijnT98,https://doi.org/10.1002/malq.19980440211 +Laurence Kirby,Addition and multiplication of sets.,2007,53,Math. Log. Q.,1,db/journals/mlq/mlq53.html#Kirby07,https://doi.org/10.1002/malq.200610026 +Hanamantagouda P. Sankappanavar,Heyting Algebras with a Dual Lattice Endomorphism.,1987,33,Math. Log. Q.,6,db/journals/mlq/mlq33.html#Sankappanavar87a,https://doi.org/10.1002/malq.19870330610 +Caterina Bianchini,A Note an Closed Degrees of Difficulty of the Medvedev Lattice.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#BianchiniS96,https://doi.org/10.1002/malq.19960420111 +,,,,,,, +Alfredo Burrieza,Completeness of a functional system for surjective functions.,2017,63,Math. Log. Q.,6,db/journals/mlq/mlq63.html#BurriezaFG17,https://doi.org/10.1002/malq.201600011 +Antonio J. Rodríguez Salas,A Structure Theorem for Free Temporal Algebras.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#SalasO95a,https://doi.org/10.1002/malq.19950410210 +George Weaver,The Fraenkel-Carnap question for Dedekind algebras.,2003,49,Math. Log. Q.,1,db/journals/mlq/mlq49.html#WeaverG03,https://doi.org/10.1002/malq.200310008 +Norbert Brunner,Topologische Maximalprinzipien.,1987,33,Math. Log. Q.,2,db/journals/mlq/mlq33.html#Brunner87,https://doi.org/10.1002/malq.19870330208 +Arief Daynes,A new technique for proving realisability and consistency theorems using finite paraconsistent models of cut-free logic.,2006,52,Math. Log. Q.,6,db/journals/mlq/mlq52.html#Daynes06,https://doi.org/10.1002/malq.200610013 +Nader Vakil,A remark on uniform spaces with invariant nonstandard hulls.,2005,51,Math. Log. Q.,6,db/journals/mlq/mlq51.html#VakilV05,https://doi.org/10.1002/malq.200510011 +Hanamantagouda P. Sankappanavar,Congruence properties of pseudocomplemented De Morgan algebras.,2014,60,Math. Log. Q.,6,db/journals/mlq/mlq60.html#SankappanavarC14,https://doi.org/10.1002/malq.201300038 +,,,,,,, +Heinrich Herre,Entscheidbarkeit Der Theorie Der Linearen Ordnung In L.,1977,23,Math. Log. Q.,18,db/journals/mlq/mlq23.html#HerreW77,https://doi.org/10.1002/malq.19770231802 +Igor Urbas,On subsystems of the system J1 of Arruda and Da Costa.,1990,36,Math. Log. Q.,2,db/journals/mlq/mlq36.html#Urbas90,https://doi.org/10.1002/malq.19900360203 +Ferrante Formato,Grasping Infinity by Finite Sets.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#FormatoG98,https://doi.org/10.1002/malq.19980440310 +Young Bae Jun,Soft ordered semigroups.,2010,56,Math. Log. Q.,1,db/journals/mlq/mlq56.html#JunLK10,https://doi.org/10.1002/malq.200810030 +Milos S. Kurilic,Unsupported Boolean algebras and forcing.,2004,50,Math. Log. Q.,6,db/journals/mlq/mlq50.html#Kurilic04,https://doi.org/10.1002/malq.200410003 +Dolph Ulrich,On the Incompleteness of a Descending Chain of Extensions of Implicational S5.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Ulrich92,https://doi.org/10.1002/malq.19920380129 +Takeshi Yamaguchi,On the Difficulty of Writing Out Formal Proofs in Arithmetic.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#YamaguchiK97,https://doi.org/10.1002/malq.19970430305 +Leopoldo Román,Ultradiophantine Categories.,1988,34,Math. Log. Q.,4,db/journals/mlq/mlq34.html#Roman88,https://doi.org/10.1002/malq.19880340402 +Marian Boykan Pour-El,The Wave Equation with Computable Initial Data Whose Unique Solution Is Nowhere Computable.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Pour-ElZ97,https://doi.org/10.1002/malq.19970430406 +Michael Rathjen,How to Develop Proof-Theoretic Ordinal Functions on the Basis of Admissible Ordinals.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Rathjen93,https://doi.org/10.1002/malq.19930390107 +,,,,,,, +Paul E. Howard,On the set-theoretic strength of the existence of disjoint cofinal sets in posets without maximal elements.,2016,62,Math. Log. Q.,3,db/journals/mlq/mlq62.html#HowardST16,https://doi.org/10.1002/malq.201400089 +Daniel Abraham Romano,A theorem on cocongruence of rings.,1990,36,Math. Log. Q.,1,db/journals/mlq/mlq36.html#Romano90,https://doi.org/10.1002/malq.19900360110 +Ermek S. Nurkhaidarov,Interstitial and pseudo gaps in models of Peano Arithmetic.,2010,56,Math. Log. Q.,2,db/journals/mlq/mlq56.html#Nurkhaidarov10,https://doi.org/10.1002/malq.200810045 +Anuj Dawar,Capturing Relativized Complexity Classes without Order.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#DawarGH98,https://doi.org/10.1002/malq.19980440108 +,,,,,,, +Yu-ichi Tanaka,A construction of real closed fields.,2015,61,Math. Log. Q.,3,db/journals/mlq/mlq61.html#TanakaT15,https://doi.org/10.1002/malq.201300052 +L. M. Doorman,A note on the existence property for intuitionistic logic with function symbols.,1990,36,Math. Log. Q.,1,db/journals/mlq/mlq36.html#Doorman90,https://doi.org/10.1002/malq.19900360104 +Zoran Markovic,On the Structure of Kripke Models of Heyting Arithmetic.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Markovic93,https://doi.org/10.1002/malq.19930390154 +Jens Blanck,Stability of representations of effective partial algebras.,2011,57,Math. Log. Q.,2,db/journals/mlq/mlq57.html#BlanckST11,https://doi.org/10.1002/malq.200910133 +Antonio di Nola,On free MV algebras and a problem of Tarski.,2016,62,Math. Log. Q.,3,db/journals/mlq/mlq62.html#NolaLV16,https://doi.org/10.1002/malq.201400106 +Andrey N. Frolov,Increasing eta-representable degrees.,2009,55,Math. Log. Q.,6,db/journals/mlq/mlq55.html#FrolovZ09,https://doi.org/10.1002/malq.200810031 +,,,,,,, +Norihiro Kamide,Paraconsistent double negation as a modal operator.,2016,62,Math. Log. Q.,6,db/journals/mlq/mlq62.html#Kamide16a,https://doi.org/10.1002/malq.201500042 +Jan Krajícek,Some Results and Problems in The Modal Set Theory MST.,1988,34,Math. Log. Q.,2,db/journals/mlq/mlq34.html#Krajicek88,https://doi.org/10.1002/malq.19880340206 +,,,,,,, +Vladimir V. Rybakov,Intermediate Logics Preserving Admissible Inference Rules of Heyting Calculus.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Rybakov93,https://doi.org/10.1002/malq.19930390144 +,,,,,,, +Yehuda Rav,Lattice Theoretical Equivalences of the Ultrafilter Principle.,1989,35,Math. Log. Q.,2,db/journals/mlq/mlq35.html#Rav89,https://doi.org/10.1002/malq.19890350203 +Ruggero Ferro,Non Standard Regular Finite Set Theory.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#FerroB95,https://doi.org/10.1002/malq.19950410203 +Karl-Heinz Diener,On the Transitive Hull of a and#954*-Narrow Relation.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Diener92,https://doi.org/10.1002/malq.19920380137 +Ivan N. Soskov,Intrinsically II11 Relations.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#Soskov96,https://doi.org/10.1002/malq.19960420110 +Antoni Torrens,On The Role of The Polynomial (X and#8594* Y) and#8594* Y in Some Implicative Algebras.,1988,34,Math. Log. Q.,2,db/journals/mlq/mlq34.html#Torrens88,https://doi.org/10.1002/malq.19880340205 +,,,,,,, +Xizhong Zheng,h-monotonically computable real numbers.,2005,51,Math. Log. Q.,2,db/journals/mlq/mlq51.html#ZhengRB05,https://doi.org/10.1002/malq.200410016 +Mario J. Pérez-Jiménez,Maximum Schemes in Arithmetic.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Perez-JimenezF94,https://doi.org/10.1002/malq.19940400312 +Paul E. Howard,On infinite-dimensional Banach spaces and weak forms of the axiom of choice.,2017,63,Math. Log. Q.,6,db/journals/mlq/mlq63.html#HowardT17,https://doi.org/10.1002/malq.201600027 +Alexandra A. Soskova,Effective Structures.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Soskova97,https://doi.org/10.1002/malq.19970430207 +Paul D. Humke,An example of a function with multiple ambiguities.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Humke75a,https://doi.org/10.1002/malq.19750210156 +,,,,,,, +Henryk Kotlarski,On a question of Andreas Weiermann.,2009,55,Math. Log. Q.,2,db/journals/mlq/mlq55.html#KotlarskiZ09,https://doi.org/10.1002/malq.200710089 +Mark Mandelkern,Open Subspaces of Locally Compact Metric Spaces.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Mandelkern93,https://doi.org/10.1002/malq.19930390124 +Masami Ito,"Corrigendum to ""Generalized periodicity and primitivity for words"".",2007,53,Math. Log. Q.,6,db/journals/mlq/mlq53.html#ItoL07a,https://doi.org/10.1002/malq.200710027 +Joseph Barback,"Corrigendum to ""Regressive isols and comparability"".",2005,51,Math. Log. Q.,6,db/journals/mlq/mlq51.html#Barback05,https://doi.org/10.1002/malq.200510006 +,,,,,,, +Arthur W. Apter,Indestructibility and stationary reflection.,2009,55,Math. Log. Q.,3,db/journals/mlq/mlq55.html#Apter09,https://doi.org/10.1002/malq.200810001 +Roberto Cignoli,Glivenko like theorems in natural expansions of BCK-logic.,2004,50,Math. Log. Q.,2,db/journals/mlq/mlq50.html#CignoliT04,https://doi.org/10.1002/malq.200310082 +Jaime Gaspar,Proof interpretations with truth.,2010,56,Math. Log. Q.,6,db/journals/mlq/mlq56.html#GasparO10,https://doi.org/10.1002/malq.200910112 +Paolo Lipparini,An infinite natural sum.,2016,62,Math. Log. Q.,3,db/journals/mlq/mlq62.html#Lipparini16,https://doi.org/10.1002/malq.201500017 +Tapani Hyttinen,On Non-Determined Ehrenfeucht-FRAïSSé Games and unstable Theories.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Hyttinen92,https://doi.org/10.1002/malq.19920380138 +Olivier Esser,On the Consistency of a Positive Theory.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#Esser99,https://doi.org/10.1002/malq.19990450110 +Franz D. Seifert,Eine Klassifizierung endlich erzeugbarer Gruppen durch formale Sprachen.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Seifert76,https://doi.org/10.1002/malq.19760220151 +Steffen Lempp,Highness and Bounding Minimal Pairs.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#LemppDS93,https://doi.org/10.1002/malq.19930390151 +Thomas E. Forster,Permutation Models in the Sense of Rieger-Bernays.,1987,33,Math. Log. Q.,3,db/journals/mlq/mlq33.html#Forster87,https://doi.org/10.1002/malq.19870330304 +Marius Zimand,On the Topological Size of Sets of Random Strings.,1986,32,Math. Log. Q.,6,db/journals/mlq/mlq32.html#Zimand86,https://doi.org/10.1002/malq.19860320602 +Herbert Baier,The Analytic Polynomial Time Hierarchy.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#BaierW98,https://doi.org/10.1002/malq.19980440412 +Loredana Biacino,Recursively Enumerable L-Sets.,1987,33,Math. Log. Q.,2,db/journals/mlq/mlq33.html#BiacinoG87,https://doi.org/10.1002/malq.19870330204 +John Krueger,A general Mitchell style iteration.,2008,54,Math. Log. Q.,6,db/journals/mlq/mlq54.html#Krueger08,https://doi.org/10.1002/malq.200710080 +,,,,,,, +Roland Hinnion,Directed Sets and Malitz-Cauchy-Completions.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Hinnion97,https://doi.org/10.1002/malq.19970430404 +Tapani Hyttinen,On the Number of Elementary Submodels of an Unsuperstable Homogeneous Structure.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#HyttinenS98,https://doi.org/10.1002/malq.19980440307 +Joel David Hamkins,Pf != NPf for almost all f.,2003,49,Math. Log. Q.,5,db/journals/mlq/mlq49.html#HamkinsW03,https://doi.org/10.1002/malq.200310057 +Julien Melleray,Computing the complexity of the relation of isometry between separable Banach spaces.,2007,53,Math. Log. Q.,2,db/journals/mlq/mlq53.html#Melleray07,https://doi.org/10.1002/malq.200610032 +,,,,,,, +Armin Hemmerling,Editorial: MLQ - Math. Log. Quart. 1/2006.,2006,52,Math. Log. Q.,1,db/journals/mlq/mlq52.html#Hemmerling06,https://doi.org/10.1002/malq.200690000 +Stanislav Krajci,Two Remarks on Partitions of ω* to with Finite Blocks.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#Krajci99,https://doi.org/10.1002/malq.19990450312 +Hervé Fournier,Tautologies over implication with negative literals.,2010,56,Math. Log. Q.,4,db/journals/mlq/mlq56.html#FournierGGZ10,https://doi.org/10.1002/malq.200810053 +Esko Turunen,Hyper-Archimedean BL-algebras are MV-algebras.,2007,53,Math. Log. Q.,2,db/journals/mlq/mlq53.html#Turunen07,https://doi.org/10.1002/malq.200610037 +Martin Grohe,Some Remarks on Finite Löwenheim-Skolem Theorems.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#Grohe96,https://doi.org/10.1002/malq.19960420145 +Ulrich Berger 0001,Classical truth in higher types.,2008,54,Math. Log. Q.,3,db/journals/mlq/mlq54.html#Berger08,https://doi.org/10.1002/malq.200710046 +Gonçalo Gutierres,The Ultrafilter Closure in ZF.,2010,56,Math. Log. Q.,3,db/journals/mlq/mlq56.html#Gutierres10,https://doi.org/10.1002/malq.200910014 +Majid Alizadeh,On the linear Lindenbaum algebra of Basic Propositional Logic.,2004,50,Math. Log. Q.,1,db/journals/mlq/mlq50.html#AlizadehA04,https://doi.org/10.1002/malq.200310077 +Douglas S. Bridges,Constructive complements of unions of two closed sets.,2004,50,Math. Log. Q.,3,db/journals/mlq/mlq50.html#Bridges04,https://doi.org/10.1002/malq.200410093 +Andrzej Orlicki,Strong Reducibilities of Enumerations and Partial Enumerated Algebras.,1988,34,Math. Log. Q.,2,db/journals/mlq/mlq34.html#Orlicki88,https://doi.org/10.1002/malq.19880340208 +Martin W. Bunder,Some Results in Aczel-Feferman Logic and Set Theory.,1982,28,Math. Log. Q.,19,db/journals/mlq/mlq28.html#Bunder82,https://doi.org/10.1002/malq.19820281902 +,,,,,,, +Kyriakos Keremedis,Consequences of the failure of the axiom of choice in the theory of Lindelöf metric spaces.,2004,50,Math. Log. Q.,2,db/journals/mlq/mlq50.html#Keremedis04,https://doi.org/10.1002/malq.200310084 +Hans Kleine Büning,Note on the E.,1982,28,Math. Log. Q.,19,db/journals/mlq/mlq28.html#Buning82,https://doi.org/10.1002/malq.19820281903 +Antonín Sochor,Extendability of Functions on Models of ZFFin.,1988,34,Math. Log. Q.,4,db/journals/mlq/mlq34.html#Sochor88,https://doi.org/10.1002/malq.19880340406 +Carlo Toffalori,Notes on local o-minimality.,2009,55,Math. Log. Q.,6,db/journals/mlq/mlq55.html#ToffaloriV09,https://doi.org/10.1002/malq.200810016 +Evgueni Vassiliev,On pseudolinearity and generic pairs.,2010,56,Math. Log. Q.,1,db/journals/mlq/mlq56.html#Vassiliev10,https://doi.org/10.1002/malq.200810033 +Takakazu Mori,Effective Fine-convergence of Walsh-Fourier series.,2008,54,Math. Log. Q.,5,db/journals/mlq/mlq54.html#MoriYT08,https://doi.org/10.1002/malq.200710063 +Kai Brünnler,On contraction and the modal fragment.,2008,54,Math. Log. Q.,4,db/journals/mlq/mlq54.html#BrunnlerPS08,https://doi.org/10.1002/malq.200710043 +Anuj Dawar,Elementary Properties of the Finite Ranks.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#DawarDLW98,https://doi.org/10.1002/malq.19980440306 +Kenneth L. Manders,On Algebraic Geometry Over Rings with Exponentiation.,1987,33,Math. Log. Q.,4,db/journals/mlq/mlq33.html#Manders87,https://doi.org/10.1002/malq.19870330402 +Paul E. Howard,If vector spaces are projective modules then multiple choice holds.,2005,51,Math. Log. Q.,2,db/journals/mlq/mlq51.html#Howard05,https://doi.org/10.1002/malq.200410018 +,Contents: (Math. Log. Quart. 3/2018).,2018,64,Math. Log. Q.,3,db/journals/mlq/mlq64.html#X18a,https://doi.org/10.1002/malq.201870003 +Friederike Körner,Cofinal Indiscernibles and some Applications to New Foundations.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Korner94,https://doi.org/10.1002/malq.19940400305 +Camilo Argoty,Hilbert spaces expanded with a unitary operator.,2009,55,Math. Log. Q.,1,db/journals/mlq/mlq55.html#ArgotyB09,https://doi.org/10.1002/malq.200710076 +T. C. Wesselkamper,Weak completeness and Abelian semigroups.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Wesselkamper75,https://doi.org/10.1002/malq.19750210135 +Adam Cichon,A Uniform Approach to Fundamental Sequences and Hierarchies.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#CichonBW94,https://doi.org/10.1002/malq.19940400212 +Antonio Mario Sette,Fraïssé and Robinson'S Forcing.,1981,27,Math. Log. Q.,15,db/journals/mlq/mlq27.html#Sette81,https://doi.org/10.1002/malq.19810271502 +K. Potthoff,Orderings of Types of Countable Arithmetic.,1978,24,Math. Log. Q.,7,db/journals/mlq/mlq24.html#Potthoff78,https://doi.org/10.1002/malq.19780240702 +Andrzej Roslanowski,Generating ultrafilters in a reasonable way.,2008,54,Math. Log. Q.,2,db/journals/mlq/mlq54.html#RoslanowskiS08,https://doi.org/10.1002/malq.200610055 +Petr Hájek 0001,On witnessed models in fuzzy logic II.,2007,53,Math. Log. Q.,6,db/journals/mlq/mlq53.html#Hajek07a,https://doi.org/10.1002/malq.200710019 +Denisa Diaconescu,Forcing operators on MTL-algebras.,2011,57,Math. Log. Q.,1,db/journals/mlq/mlq57.html#DiaconescuG11,https://doi.org/10.1002/malq.200910117 +Szymon Zeberski,On completely nonmeasurable unions.,2007,53,Math. Log. Q.,1,db/journals/mlq/mlq53.html#Zeberski07,https://doi.org/10.1002/malq.200610024 +Erik Palmgren,Constructive Sheaf Semantics.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Palmgren97,https://doi.org/10.1002/malq.19970430304 +Nadejda V. Georgieva,Classes of One-Argument Recursive Functions.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Georgieva76,https://doi.org/10.1002/malq.19760220117 +Andrea Cantini,Extending constructive operational set theory by impredicative principles.,2011,57,Math. Log. Q.,3,db/journals/mlq/mlq57.html#Cantini11,https://doi.org/10.1002/malq.201010009 +Sakaé Fuchino,Destructibility of stationary subsets of Pkappalambda.,2005,51,Math. Log. Q.,6,db/journals/mlq/mlq51.html#FuchinoP05,https://doi.org/10.1002/malq.200510009 +Hanamantagouda P. Sankappanavar,Pseudocomplemented and Almost Pseudocomplemented Ockham Algebras: Principal Congruences.,1989,35,Math. Log. Q.,3,db/journals/mlq/mlq35.html#Sankappanavar89,https://doi.org/10.1002/malq.19890350306 +Jafar S. Eivazloo,Pseudo definably connected definable sets.,2016,62,Math. Log. Q.,3,db/journals/mlq/mlq62.html#EivazlooT16,https://doi.org/10.1002/malq.201400034 +Friedrich Otto,Separating the Intrinsic Complexity and the Derivational complexity of the Word Problem for Finitely Presented Groups.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#OttoCM93,https://doi.org/10.1002/malq.19930390117 +Henryk Kotlarski,Other Proofs of Old Results.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#Kotlarski98,https://doi.org/10.1002/malq.19980440406 +,,,,,,, +Roman Murawski,Trace Expansions of Initial Segments.,1984,30,Math. Log. Q.,30,db/journals/mlq/mlq30.html#Murawski84,https://doi.org/10.1002/malq.19840303003 +Steve Giambrone,Proof Theories for Semilattice Logics.,1987,33,Math. Log. Q.,5,db/journals/mlq/mlq33.html#GiambroneU87,https://doi.org/10.1002/malq.19870330507 +,,,,,,, +Bernd J. Stephan,Compactness and recursive enumerability in intensional logic.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Stephan75,https://doi.org/10.1002/malq.19750210141 +Andreas Weiermann,Ordinal arithmetic with simultaneously defined theta-functions.,2011,57,Math. Log. Q.,2,db/journals/mlq/mlq57.html#WeiermannW11,https://doi.org/10.1002/malq.200910125 +Petr Hájek 0001,On witnessed models in fuzzy logic.,2007,53,Math. Log. Q.,1,db/journals/mlq/mlq53.html#Hajek07,https://doi.org/10.1002/malq.200610027 +Lutz Priese,Reversible Automaten und Einfache Universelle 2-Dimensionale Thue-Systeme.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Priese76,https://doi.org/10.1002/malq.19760220146 +Kosta Dosen,A Brief Survey of Frames for the Lambek Calculus.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Dosen92,https://doi.org/10.1002/malq.19920380113 +Omar De la Cruz,Unions and the axiom of choice.,2008,54,Math. Log. Q.,6,db/journals/mlq/mlq54.html#CruzHHKR08,https://doi.org/10.1002/malq.200710073 +Masoud Haveshki,n -fold filters in BL-algebras.,2008,54,Math. Log. Q.,2,db/journals/mlq/mlq54.html#HaveshkiE08,https://doi.org/10.1002/malq.200710029 +Andrea Cantini,Notes on Formal Theories of Truth.,1989,35,Math. Log. Q.,2,db/journals/mlq/mlq35.html#Cantini89,https://doi.org/10.1002/malq.19890350202 +Horst Struve,Zum Begriff Der Projektiv-Metrischen Ebene.,1988,34,Math. Log. Q.,1,db/journals/mlq/mlq34.html#StruveS88,https://doi.org/10.1002/malq.19880340110 +Yongcheng Wu,Computability of measurable sets via effective metrics.,2005,51,Math. Log. Q.,6,db/journals/mlq/mlq51.html#WuD05,https://doi.org/10.1002/malq.200510008 +George Voutsadakis,Categorical abstract algebraic logic: The criterion for deductive equivalence.,2003,49,Math. Log. Q.,4,db/journals/mlq/mlq49.html#Voutsadakis03,https://doi.org/10.1002/malq.200310036 +,,,,,,, +Pierre Matet,Weak saturation of ideals on Pλ4*(λ*).,2011,57,Math. Log. Q.,2,db/journals/mlq/mlq57.html#Matet11,https://doi.org/10.1002/malq.200810064 +Josep Maria Font,On Special Implicative Filters.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#Font99,https://doi.org/10.1002/malq.19990450111 +,,,,,,, +Nitta Takashi,Classification of non-well-founded sets and an application.,2003,49,Math. Log. Q.,2,db/journals/mlq/mlq49.html#TakashiTT03,https://doi.org/10.1002/malq.200310018 +,,,,,,, +Vladimir Kanovei,Special Model Axiom in Nonstandard Set Theory.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#KanoveiR99,https://doi.org/10.1002/malq.19990450308 +Juan Carlos Martínez,Superatomic Boolean algebras constructed from strongly unbounded functions.,2011,57,Math. Log. Q.,5,db/journals/mlq/mlq57.html#MartinezS11,https://doi.org/10.1002/malq.201010014 +,,,,,,, +Roger D. Maddux,Finitary Algebraic Logic.,1989,35,Math. Log. Q.,4,db/journals/mlq/mlq35.html#Maddux89,https://doi.org/10.1002/malq.19890350405 +,,,,,,, +Ford Waghrees Gorgy,The Independence of the Rule of Syllogism in S2.,1979,25,Math. Log. Q.,31,db/journals/mlq/mlq25.html#Gorgy79,https://doi.org/10.1002/malq.19790253102 +Horst Herrlich,The axiom of choice holds iff maximal closed filters exist.,2003,49,Math. Log. Q.,3,db/journals/mlq/mlq49.html#Herrlich03,https://doi.org/10.1002/malq.200310033 +,,,,,,, +,,,,,,, +Omar De la Cruz,Products of compact spaces and the axiom of choice II.,2003,49,Math. Log. Q.,1,db/journals/mlq/mlq49.html#CruzHHKR03,https://doi.org/10.1002/malq.200310004 +Simon Thomas 0001,The Nonexistence of a Binary Homogeneous Pseudoplane.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#Thomas98,https://doi.org/10.1002/malq.19980440110 +Antonio Montalbán,On the pi11-separation principle.,2008,54,Math. Log. Q.,6,db/journals/mlq/mlq54.html#Montalban08,https://doi.org/10.1002/malq.200710049 +Armin Hemmerling,Navigation Without Perception of Coordinates and Distances.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Hemmerling94,https://doi.org/10.1002/malq.19940400210 +Richard Ketchersid,On the extender algebra being complete.,2006,52,Math. Log. Q.,6,db/journals/mlq/mlq52.html#KetchersidZ06,https://doi.org/10.1002/malq.200610011 +Mihai Prunescu,Undecidable and decidable restrictions of Hilbert's Tenth Problem: images of polynomials vs. images of exponential functions.,2006,52,Math. Log. Q.,1,db/journals/mlq/mlq52.html#Prunescu06,https://doi.org/10.1002/malq.200510013 +,,,,,,, +Armin Hemmerling,The discrete parts of approximately decidable sets in Euclidean spaces.,2003,49,Math. Log. Q.,4,db/journals/mlq/mlq49.html#Hemmerling03a,https://doi.org/10.1002/malq.200310046 +,,,,,,, +Camilo Enrique Argoty Pulido,Model theory of a Hilbert space expanded with an unbounded closed selfadjoint operator.,2014,60,Math. Log. Q.,6,db/journals/mlq/mlq60.html#Pulido14,https://doi.org/10.1002/malq.201110043 +,,,,,,, +Morteza Moniri,"Corrigendum to ""Weak Arithmetics and Kripke Models"".",2004,50,Math. Log. Q.,6,db/journals/mlq/mlq50.html#Moniri04,https://doi.org/10.1002/malq.200410007 +Vilém Vychodil,Continuous fuzzy Horn logic.,2006,52,Math. Log. Q.,2,db/journals/mlq/mlq52.html#Vychodil06,https://doi.org/10.1002/malq.200510025 +Mirjana Ilic,An alternative Gentzenisation of RW+∗8*.,2016,62,Math. Log. Q.,6,db/journals/mlq/mlq62.html#Ilic16,https://doi.org/10.1002/malq.201400084 +Majid Alizadeh,On Löb algebras.,2006,52,Math. Log. Q.,1,db/journals/mlq/mlq52.html#AlizadehA06,https://doi.org/10.1002/malq.200510016 +Joachim Lambek,New Proofs of Some Intuitionistic Principles.,1983,29,Math. Log. Q.,10,db/journals/mlq/mlq29.html#LambekS83,https://doi.org/10.1002/malq.19830291004 +Alexander G. Pinus,(Title in Russian).,1987,33,Math. Log. Q.,6,db/journals/mlq/mlq33.html#Ignored87,https://doi.org/10.1002/malq.19870330606 +Kenshi Miyabe,Algorithmic randomness over general spaces.,2014,60,Math. Log. Q.,3,db/journals/mlq/mlq60.html#Miyabe14,https://doi.org/10.1002/malq.201200051 +,,,,,,, +Makoto Fujiwara,Classical provability of uniform versions and intuitionistic provability.,2015,61,Math. Log. Q.,3,db/journals/mlq/mlq61.html#FujiwaraK15,https://doi.org/10.1002/malq.201300056 +Cristian S. Calude,Generalisations of disjunctive sequences.,2005,51,Math. Log. Q.,2,db/journals/mlq/mlq51.html#CaludeS05,https://doi.org/10.1002/malq.200310130 +J. Richard Büchi,The Complete Extensions of the Monadic Second Order Theory of Countable Ordinals.,1983,29,Math. Log. Q.,5,db/journals/mlq/mlq29.html#BuchiS83,https://doi.org/10.1002/malq.19830290502 +Wojciech Sachwanowicz,Forcing and the Omitting Types Theorem For Lt.,1986,32,Math. Log. Q.,6,db/journals/mlq/mlq32.html#Sachwanowicz86,https://doi.org/10.1002/malq.19860320603 +Sato Kentaro,Forcing under Anti-Foundation Axiom: An expression of the stalks.,2006,52,Math. Log. Q.,3,db/journals/mlq/mlq52.html#Kentaro06,https://doi.org/10.1002/malq.200410060 +Helmut Pfeiffer,A Notation System for Ordinal Using ω8*-Functions on Inaccessible Mahlo numbers.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Pfeiffer92,https://doi.org/10.1002/malq.19920380142 +Branislav R. Boricic,Validity Measurement in Some Propositional Logics.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Boricic97,https://doi.org/10.1002/malq.19970430410 +Olivier Esser,On the axiom of extensionality in the positive set theory.,2003,49,Math. Log. Q.,1,db/journals/mlq/mlq49.html#Esser03,https://doi.org/10.1002/malq.200310009 +Wojciech Buszkowski,Sequent systems for compact bilinear logic.,2003,49,Math. Log. Q.,5,db/journals/mlq/mlq49.html#Buszkowski03,https://doi.org/10.1002/malq.200310050 +,,,,,,, +W. Richard Strark,A Logic For Distributed Processes.,1989,35,Math. Log. Q.,4,db/journals/mlq/mlq35.html#Strark89,https://doi.org/10.1002/malq.19890350404 +Gonçalo Gutierres,Sequential topological conditions in in the absence of the axiom of choice.,2003,49,Math. Log. Q.,3,db/journals/mlq/mlq49.html#Gutierres03,https://doi.org/10.1002/malq.200310029 +,,,,,,, +Thomas Forster,Permutations and stratified formulae a preservation theorem.,1990,36,Math. Log. Q.,5,db/journals/mlq/mlq36.html#Forster90,https://doi.org/10.1002/malq.19900360504 +Wei Yao,Fuzzy Galois connections on fuzzy posets.,2009,55,Math. Log. Q.,1,db/journals/mlq/mlq55.html#YaoL09,https://doi.org/10.1002/malq.200710079 +Barbara Majcher-Iwanow,Gdelta-pieces of canonical partitions of G-spaces.,2005,51,Math. Log. Q.,5,db/journals/mlq/mlq51.html#Majcher-Iwanow05,https://doi.org/10.1002/malq.200410041 +Peter Hertling,A Real Number Structure that is Effectively Categorical.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#Hertling99,https://doi.org/10.1002/malq.19990450202 +,,,,,,, +John Jones,A Formalisation of an M-Valued Propositional Calculus with Variable Functors.,1983,29,Math. Log. Q.,6,db/journals/mlq/mlq29.html#Jones83,https://doi.org/10.1002/malq.19830290604 +Heinrich Wansing,Tarskian Structured Consequence Relations and Functional Completeness.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#Wansing95,https://doi.org/10.1002/malq.19950410108 +Laurence Kirby,Substandard models of finite set theory.,2010,56,Math. Log. Q.,6,db/journals/mlq/mlq56.html#Kirby10,https://doi.org/10.1002/malq.200910114 +Akira Kanda,Acceptable Numerations of Morphisms and Myhill-Shepherdson Property.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#Kanda95,https://doi.org/10.1002/malq.19950410105 +Paolo Gentilini,Provability Logic in the Gentzen Formulation of Arithmetic.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Gentilini92,https://doi.org/10.1002/malq.19920380150 +Pierluigi Minari,Quasilinear Posets and some Subsystems Of Dummett's LC.,1987,33,Math. Log. Q.,3,db/journals/mlq/mlq33.html#Minari87,https://doi.org/10.1002/malq.19870330310 +Seyed Mohammad Bagheri,Some results on Kripke models over an arbitrary fixed frame.,2003,49,Math. Log. Q.,5,db/journals/mlq/mlq49.html#BagheriM03,https://doi.org/10.1002/malq.200310052 +Tapani Hyttinen,Locally modular geometries in homogeneous structures.,2005,51,Math. Log. Q.,3,db/journals/mlq/mlq51.html#Hyttinen05,https://doi.org/10.1002/malq.200410031 +Stanley Burris,Polynomial Time Uniform Word Problems.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#Burris95,https://doi.org/10.1002/malq.19950410204 +,,,,,,, +Gerhard Lischke,Restorations of punctured languages and similarity of languages.,2006,52,Math. Log. Q.,1,db/journals/mlq/mlq52.html#Lischke06,https://doi.org/10.1002/malq.200510017 +,,,,,,, +William R. Brian,Non-well-founded extensions of V.,2013,59,Math. Log. Q.,3,db/journals/mlq/mlq59.html#Brian13,https://doi.org/10.1002/malq.201200014 +,,,,,,, +Andrea Cantini,Asymmetric Interpretations for Bounded Theories.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#Cantini96,https://doi.org/10.1002/malq.19960420123 +Emil Jerábek,Abelian groups and quadratic residues in weak arithmetic.,2010,56,Math. Log. Q.,3,db/journals/mlq/mlq56.html#Jerabek10,https://doi.org/10.1002/malq.200910009 +Roland Sh. Omanadze,On the bounded quasi-degrees of c.e. sets.,2013,59,Math. Log. Q.,3,db/journals/mlq/mlq59.html#Omanadze13,https://doi.org/10.1002/malq.201200101 +Vasco Brattka,Effective Borel measurability and reducibility of functions.,2005,51,Math. Log. Q.,1,db/journals/mlq/mlq51.html#Brattka05,https://doi.org/10.1002/malq.200310125 +Stefano Leonesi,omega-categorical weakly o-minimal expansions of Boolean lattices.,2003,49,Math. Log. Q.,4,db/journals/mlq/mlq49.html#LeonesiT03,https://doi.org/10.1002/malq.200310042 +Maurizio Negri,Fixed points and diagonal method.,1990,36,Math. Log. Q.,4,db/journals/mlq/mlq36.html#Negri90,https://doi.org/10.1002/malq.19900360406 +Gabriel Sandu,Partially Ordered Connectives.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#SanduV92,https://doi.org/10.1002/malq.19920380134 +José Gil-Férez,Multi-term pi-institutions and their equivalence.,2006,52,Math. Log. Q.,5,db/journals/mlq/mlq52.html#Gil-Ferez06,https://doi.org/10.1002/malq.200610010 +Pavol Safarik,On the computational content of the Bolzano-Weierstraß Principle.,2010,56,Math. Log. Q.,5,db/journals/mlq/mlq56.html#SafarikK10,https://doi.org/10.1002/malq.200910106 +Milena Stefanova,Spatiality and classical logic.,2011,57,Math. Log. Q.,4,db/journals/mlq/mlq57.html#StefanovaV11,https://doi.org/10.1002/malq.201010020 +,,,,,,, +Vasco Brattka,Order-free Recursion on the Real Numbers.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Brattka97,https://doi.org/10.1002/malq.19970430206 +Juhani Nieminen,A note on simple graphic algebras.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Nieminen75,https://doi.org/10.1002/malq.19750210147 +Dick de Jongh,Much Shorter Proofs.,1989,35,Math. Log. Q.,3,db/journals/mlq/mlq35.html#JonghM89,https://doi.org/10.1002/malq.19890350308 +Andrea Cantini,Levels of Implication and Type Free Theories of Classifications with Approximation Operator.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Cantini92,https://doi.org/10.1002/malq.19920380109 +Maurizio Negri,Universal Functions in Partial Structures.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Negri92,https://doi.org/10.1002/malq.19920380121 +Alexander Berenstein,Definable subgroups of measure algebras.,2006,52,Math. Log. Q.,4,db/journals/mlq/mlq52.html#Berenstein06,https://doi.org/10.1002/malq.200610004 +Arnold W. Miller,Long Borel hierarchies.,2008,54,Math. Log. Q.,3,db/journals/mlq/mlq54.html#Miller08,https://doi.org/10.1002/malq.200710044 +Martin Weese,Zum Isomorphieproblem der Booleschen Algebren.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Weese75,https://doi.org/10.1002/malq.19750210162 +Saharon Shelah,Stable theories and representation over sets.,2016,62,Math. Log. Q.,3,db/journals/mlq/mlq62.html#ShelahC16,https://doi.org/10.1002/malq.200920105 +Sven Ove Hansson,Some Solved and Unsolved Remainder Equations.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#Hansson95,https://doi.org/10.1002/malq.19950410307 +,,,,,,, +Klaus Schumacher,Boolean Algebras in AST.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Schumacher92,https://doi.org/10.1002/malq.19920380135 +Rosalie Iemhoff,Preservativity logic: An analogue of interpretability logic for constructive theories.,2003,49,Math. Log. Q.,3,db/journals/mlq/mlq49.html#Iemhoff03,https://doi.org/10.1002/malq.200310023 +Xiangnan Zhou,Boolean products of R0-algebras.,2010,56,Math. Log. Q.,3,db/journals/mlq/mlq56.html#ZhouL10,https://doi.org/10.1002/malq.200910006 +Rostislav Horcík,Archimedean classes in integral commutative residuated chains.,2009,55,Math. Log. Q.,3,db/journals/mlq/mlq55.html#HorcikM09,https://doi.org/10.1002/malq.200710091 +Helmut Wolter,On Roots of Exponential Terms.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Wolter93,https://doi.org/10.1002/malq.19930390112 +Arnold Oberschelp,Klassentheoretische Paare.,1981,27,Math. Log. Q.,36,db/journals/mlq/mlq27.html#OberschelpT81,https://doi.org/10.1002/malq.19810273603 +Esko Turunen,Well-Defined Fuzzy Sentential Logic.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#Turunen95,https://doi.org/10.1002/malq.19950410209 +Klaus Denecke,Hyperidentities of Dyadic Algebras.,1989,35,Math. Log. Q.,4,db/journals/mlq/mlq35.html#Denecke89,https://doi.org/10.1002/malq.19890350403 +,,,,,,, +Thomjas Bedürftig,Another Characterization of the Natural Numbers.,1989,35,Math. Log. Q.,2,db/journals/mlq/mlq35.html#Bedurftig89,https://doi.org/10.1002/malq.19890350208 +Fernando Ferreira,Two General Results on Intuitionistic Bounded Theories.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#Ferreira99,https://doi.org/10.1002/malq.19990450310 +Franco Montagna,Zfc-Models as Kripke-Models.,1983,29,Math. Log. Q.,3,db/journals/mlq/mlq29.html#Montagna83,https://doi.org/10.1002/malq.19830290305 +Peter Zahn,A Meaningful Mathematical First Order Language: Partial Peano Algebras and Rule Systems.,1989,35,Math. Log. Q.,2,db/journals/mlq/mlq35.html#Zahn89,https://doi.org/10.1002/malq.19890350205 +,,,,,,, +Warren D. Goldfarb,On the effective ω*-rule.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Goldfarb75,https://doi.org/10.1002/malq.19750210155 +William I. Gasarch,Reverse Mathematics and Recursive Graph Theory.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#GasarchH98,https://doi.org/10.1002/malq.19980440405 +,,,,,,, +Rod McBeth,A Second Normal Form for Functions of the System EP.,1984,30,Math. Log. Q.,25,db/journals/mlq/mlq30.html#McBeth84,https://doi.org/10.1002/malq.19840302504 +Francisco M. García Olmedo,Negation and BCK-algebras.,2003,49,Math. Log. Q.,4,db/journals/mlq/mlq49.html#OlmedoS03,https://doi.org/10.1002/malq.200310035 +Paul E. Howard,Versions of Normality and Some Weak Forms of the Axiom of Choice.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#HowardKRR98,https://doi.org/10.1002/malq.19980440309 +Gerhard Jäger,Variation on a theme of Schütte.,2004,50,Math. Log. Q.,3,db/journals/mlq/mlq50.html#JagerP04,https://doi.org/10.1002/malq.200310097 +Zoran Markovic,A probabilistic extension of intuitionistic logic.,2003,49,Math. Log. Q.,4,db/journals/mlq/mlq49.html#MarkovicOR03,https://doi.org/10.1002/malq.200310044 +,,,,,,, +Morteza Moniri,On two questions about feasibly constructive arithmetic.,2003,49,Math. Log. Q.,4,db/journals/mlq/mlq49.html#Moniri03a,https://doi.org/10.1002/malq.200310045 +Thomas Becker,Real Closed Rings and Ordered Valuation Ring.,1983,29,Math. Log. Q.,8,db/journals/mlq/mlq29.html#Becker83,https://doi.org/10.1002/malq.19830290802 +Lo Czukai,The Maximal Closed Classes of Unary Functions in p-Valued Logic.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#CzukaiL96,https://doi.org/10.1002/malq.19960420120 +,,,,,,, +Alistair H. Lachlan,A Note on Positive Equivalence Relations.,1987,33,Math. Log. Q.,1,db/journals/mlq/mlq33.html#Lachlan87,https://doi.org/10.1002/malq.19870330106 +,,,,,,, +Adam Krawczyk,Measurability and the baire property at higher levels.,1990,36,Math. Log. Q.,5,db/journals/mlq/mlq36.html#KrawczykS90,https://doi.org/10.1002/malq.19900360502 +Peter Aczel,The Relation Reflection Scheme.,2008,54,Math. Log. Q.,1,db/journals/mlq/mlq54.html#Aczel08,https://doi.org/10.1002/malq.200710035 +Andrzej Orlicki,"Correction to ""Strong Reducibilities of Enumerations and Partial Enumerated Algebras"".",1989,35,Math. Log. Q.,1,db/journals/mlq/mlq35.html#Orlicki89a,https://doi.org/10.1002/malq.19890350111 +Rodney G. Downey,A Note on Decompositions of Recursively Enumerable Subspaces.,1984,30,Math. Log. Q.,30,db/journals/mlq/mlq30.html#Downey84a,https://doi.org/10.1002/malq.19840303002 +Gerold Stahl,Parallel Theories and Routine Revision in First-Order Logic.,1987,33,Math. Log. Q.,5,db/journals/mlq/mlq33.html#Stahl87,https://doi.org/10.1002/malq.19870330510 +Andrzej Orlicki,Covariant Hom-Functors on the Category of Enumerated Sets.,1989,35,Math. Log. Q.,1,db/journals/mlq/mlq35.html#Orlicki89,https://doi.org/10.1002/malq.19890350110 +Alan Rose,A note on the existence of tautologies without constants.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Rose75,https://doi.org/10.1002/malq.19750210119 +Matthias Galota,Generic separations and leaf languages.,2003,49,Math. Log. Q.,4,db/journals/mlq/mlq49.html#GalotaKV03,https://doi.org/10.1002/malq.200310037 +Beibut Sh. Kulpeshov,Binary types in and#8501*0-categorical weakly o-minimal theories.,2011,57,Math. Log. Q.,3,db/journals/mlq/mlq57.html#Kulpeshov11,https://doi.org/10.1002/malq.200910123 +Walter Harnau,Die Teilweise Geordnete Menge and#981*k der Vertauschbarkeitsmengen der K-Wertigen Logik.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Harnau76,https://doi.org/10.1002/malq.19760220103 +Nobuyuki Sakamoto,Uniform versions of some axioms of second order arithmetic.,2004,50,Math. Log. Q.,6,db/journals/mlq/mlq50.html#SakamotoY04,https://doi.org/10.1002/malq.200310122 +Valeriy K. Bulitko,About Segment Complexity of Turing Reductions.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#Bulitko99,https://doi.org/10.1002/malq.19990450413 +Henryk Kotlarski,Some variations of the Hardy hierarchy.,2005,51,Math. Log. Q.,4,db/journals/mlq/mlq51.html#KotlarskiP05,https://doi.org/10.1002/malq.200410043 +Matthew Valeriote,On Solvable Congruences in Finitely Decidable Varieties.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Valeriote94,https://doi.org/10.1002/malq.19940400309 +Félix Bou,On weakening the Deduction Theorem and strengthening Modus Ponens.,2004,50,Math. Log. Q.,3,db/journals/mlq/mlq50.html#BouFL04,https://doi.org/10.1002/malq.200410001 +Gianluca Paolini,Independence logic and abstract independence relations.,2015,61,Math. Log. Q.,3,db/journals/mlq/mlq61.html#Paolini15,https://doi.org/10.1002/malq.201400031 +Takako Nemoto,Determinacy of Wadge classes and subsystems of second order arithmetic.,2009,55,Math. Log. Q.,2,db/journals/mlq/mlq55.html#Nemoto09,https://doi.org/10.1002/malq.200710081 +Marcel Erné,Finiteness conditions and distributive laws for Boolean algebras.,2009,55,Math. Log. Q.,6,db/journals/mlq/mlq55.html#Erne09,https://doi.org/10.1002/malq.200810034 +Victor Pambuccian,The complexity of plane hyperbolic incidence geometry is (forall)(exist)(forall)(exist).,2005,51,Math. Log. Q.,3,db/journals/mlq/mlq51.html#Pambuccian05,https://doi.org/10.1002/malq.200410028 +Kam-Chau Wong,Computability of Minimizers and Separating Hyperplanes.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#Wong96,https://doi.org/10.1002/malq.19960420144 +Frank Stephan 0001,Effective Search Problems.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#StephanK94,https://doi.org/10.1002/malq.19940400209 +,,,,,,, +Wojciech Sachwanowicz,A note on complete partitions in boolean algebras.,1990,36,Math. Log. Q.,3,db/journals/mlq/mlq36.html#Sachwanowicz90,https://doi.org/10.1002/malq.19900360305 +John Lake,Comparing type theory and set theory.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Lake75a,https://doi.org/10.1002/malq.19750210144 +Hilbert Levitz,A Natural Variant of Ackermann's Function.,1988,34,Math. Log. Q.,5,db/journals/mlq/mlq34.html#LevitzN88,https://doi.org/10.1002/malq.19880340504 +Robert H. Cowen,Elementary Equivalence and Constructible Models of Zermelo-Fraenkel Set Theory.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Cowen76,https://doi.org/10.1002/malq.19760220143 +Paolo Lipparini,More on regular and decomposable ultrafilters in ZFC.,2010,56,Math. Log. Q.,4,db/journals/mlq/mlq56.html#Lipparini10,https://doi.org/10.1002/malq.200910013 +,,,,,,, +Wojcßch Buszkowski,The Equivalence of Unidirectional Lambek Categorial Grammars and Context-Free Grammars.,1985,31,Math. Log. Q.,24,db/journals/mlq/mlq31.html#Buszkowski85a,https://doi.org/10.1002/malq.19850312402 +,,,,,,, +Timothy McNicholl,Uniformly computable aspects of inner functions: estimation and factorization.,2008,54,Math. Log. Q.,5,db/journals/mlq/mlq54.html#McNicholl08a,https://doi.org/10.1002/malq.200710061 +,,,,,,, +,,,,,,, +Emil Jerábek,The strength of sharply bounded induction.,2006,52,Math. Log. Q.,6,db/journals/mlq/mlq52.html#Jerabek06,https://doi.org/10.1002/malq.200610019 +,,,,,,, +George Weaver,Fraenkel-Carnap properties.,2005,51,Math. Log. Q.,3,db/journals/mlq/mlq51.html#WeaverG05,https://doi.org/10.1002/malq.200410030 +,,,,,,, +Jacob C. E. Dekker,Isols and Maximal Intersecting Classes.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Dekker93,https://doi.org/10.1002/malq.19930390110 +,,,,,,, +,,,,,,, +Geir Waagbø,Quantified Modal Logic with Neighborhood Semantics.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Waagbo92,https://doi.org/10.1002/malq.19920380144 +Manuel Abad,Zariski-type topology for implication algebras.,2010,56,Math. Log. Q.,3,db/journals/mlq/mlq56.html#AbadCV10,https://doi.org/10.1002/malq.200910012 +Douglas S. Bridges,Absolute Continuity and the Uniqueness of the Constructive Functional Calculus.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#BridgesI94a,https://doi.org/10.1002/malq.19940400408 +Rod Downey,Jumps of Hemimaximal Sets.,1991,37,Math. Log. Q.,8,db/journals/mlq/mlq37.html#DowneyS91,https://doi.org/10.1002/malq.19910370802 +A. K. Khalifa,A New Approach to Constructive Topology and Measure Theory.,1989,35,Math. Log. Q.,6,db/journals/mlq/mlq35.html#Khalifa89,https://doi.org/10.1002/malq.19890350610 +S. Barry Cooper,Properly Sigma2 minimal degrees and 0'' complementation.,2005,51,Math. Log. Q.,3,db/journals/mlq/mlq51.html#CooperLY05,https://doi.org/10.1002/malq.200410027 +Zofia Adamowicz,A Note on B Σn and an Intermediate Induction Schema.,1988,34,Math. Log. Q.,3,db/journals/mlq/mlq34.html#AdamowiczK88,https://doi.org/10.1002/malq.19880340309 +,,,,,,, +Fabio Bellissima,"On the Inadequacy of the Relational Semantic for the ""Until"" Operator.",1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#BellissimaC92,https://doi.org/10.1002/malq.19920380120 +Luca Motto Ros,Game representations of classes of piecewise definable functions.,2011,57,Math. Log. Q.,1,db/journals/mlq/mlq57.html#Ros11,https://doi.org/10.1002/malq.200910124 +Roland Hinnion,Embedding Properties and Anti-Foundation in Set Theory.,1989,35,Math. Log. Q.,1,db/journals/mlq/mlq35.html#Hinnion89,https://doi.org/10.1002/malq.19890350108 +Donald H. Pelletier,On violating the GCH below the least measurable cardinal.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Pelletier75,https://doi.org/10.1002/malq.19750210146 +Antoni Torrens,Cyclic Elements in MV-Algebras and Post Algebras.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Torrens94,https://doi.org/10.1002/malq.19940400402 +Nobu-Yuki Suzuki,An extension of ono's completeness result.,1990,36,Math. Log. Q.,4,db/journals/mlq/mlq36.html#Suzuki90,https://doi.org/10.1002/malq.19900360410 +Ahmad Shafaat,Consistency in Categorical Languages for Algebras.,1980,26,Math. Log. Q.,13,db/journals/mlq/mlq26.html#Shafaat80,https://doi.org/10.1002/malq.19800261303 +Peter A. Fejer,Embedding Lattices with Top Preserved Below Non-GL2 Degrees.,1989,35,Math. Log. Q.,1,db/journals/mlq/mlq35.html#Fejer89,https://doi.org/10.1002/malq.19890350102 +Hector Pinedo,Polish globalization of Polish group partial actions.,2017,63,Math. Log. Q.,6,db/journals/mlq/mlq63.html#PinedoU17,https://doi.org/10.1002/malq.201600018 +Anne Preller,Intensional Equality in Categories With Structure and Coherence Problems.,1988,34,Math. Log. Q.,5,db/journals/mlq/mlq34.html#PrellerM88,https://doi.org/10.1002/malq.19880340506 +,,,,,,, +Jon C. Muzio,Concerning Completeness and Abelian Semigroups.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Muzio76,https://doi.org/10.1002/malq.19760220108 +Giangiacomo Gerla,Fuzzy natural deduction.,1990,36,Math. Log. Q.,1,db/journals/mlq/mlq36.html#GerlaT90,https://doi.org/10.1002/malq.19900360108 +Arthur W. Apter,Coding into HOD via normal measures with some applications.,2011,57,Math. Log. Q.,4,db/journals/mlq/mlq57.html#ApterF11,https://doi.org/10.1002/malq.201010010 +,,,,,,, +,,,,,,, +Eleftherios Tachtsis,A note on the deductive strength of the Nielsen-Schreier theorem.,2018,64,Math. Log. Q.,3,db/journals/mlq/mlq64.html#Tachtsis18,https://doi.org/10.1002/malq.201700022 +Saharon Shelah,Two cardinals models with gap one revisited.,2005,51,Math. Log. Q.,5,db/journals/mlq/mlq51.html#Shelah05,https://doi.org/10.1002/malq.200410036 +Benedetto Intrigila,The Basic Decision Problem in lambda-Calculus.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Intrigila93,https://doi.org/10.1002/malq.19930390120 +Petter Kristian Køber,Uniform domain representations of lp -spaces.,2007,53,Math. Log. Q.,2,db/journals/mlq/mlq53.html#Kober07,https://doi.org/10.1002/malq.200610039 +Claudio Cerrato,Modal Sequents for Normal Modal Logics.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Cerrato93,https://doi.org/10.1002/malq.19930390127 +Hans-Dietrich Hecker,Variants of Visibility and their Complexity.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#HeckerS98,https://doi.org/10.1002/malq.19980440411 +Joel David Hamkins,The Necessary Maximality Principle for c. c. c. forcing is equiconsistent with a weakly compact cardinal.,2005,51,Math. Log. Q.,5,db/journals/mlq/mlq51.html#HamkinsW05,https://doi.org/10.1002/malq.200410045 +Jan Krajícek,A Possible Modal Formulation of Comprehension Scheme.,1987,33,Math. Log. Q.,5,db/journals/mlq/mlq33.html#Krajicek87,https://doi.org/10.1002/malq.19870330511 +Alexej P. Pynko,Subquasivarieties of implicative locally-finite quasivarieties.,2010,56,Math. Log. Q.,6,db/journals/mlq/mlq56.html#Pynko10,https://doi.org/10.1002/malq.200810161 +,,,,,,, +Branislav R. Boricic,On Some Interpretations of Classical Logic.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Boricic92,https://doi.org/10.1002/malq.19920380139 +Hirokazu Nishimura,Boolean Valued and Stone Algebra Valued Measure Theories.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Nishimura94,https://doi.org/10.1002/malq.19940400110 +Douglas S. Bridges,Constructive Notions of Strict Convexity.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Bridges93a,https://doi.org/10.1002/malq.19930390135 +Zhi-Wei Sun,Anew Relation-Combining Theorem and its Application.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Sun92,https://doi.org/10.1002/malq.19920380117 +Seiki Akama,On the Proof Method for Constructive Falsity.,1988,34,Math. Log. Q.,5,db/journals/mlq/mlq34.html#Akama88,https://doi.org/10.1002/malq.19880340502 +Michael Deutsch 0001,A Note on the Theorems of Church-Turing and Trachtenbrot.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Deutsch94,https://doi.org/10.1002/malq.19940400311 +Franco Montagna,Iterated Extensional Rosser's Fixed Points and Hyperhyperdiagonalizable Algebras.,1987,33,Math. Log. Q.,4,db/journals/mlq/mlq33.html#Montagna87,https://doi.org/10.1002/malq.19870330403 +Victor L. Selivanov,Hierarchies in phi-spaces and applications.,2005,51,Math. Log. Q.,1,db/journals/mlq/mlq51.html#Selivanov05,https://doi.org/10.1002/malq.200310126 +Erik Ellentuck,Diagonal Methods in the Theory of Isols.,1980,26,Math. Log. Q.,13,db/journals/mlq/mlq26.html#Ellentuck80,https://doi.org/10.1002/malq.19800261302 +Christopher J. Ash,A Completeness Theorem for Certain Classes of Recursive Infinitary Formulas.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#AshK94,https://doi.org/10.1002/malq.19940400204 +J. Richard Büchi,Definability in the Existential Theory of Concatenation and Undecidable Extensions of this Theory.,1988,34,Math. Log. Q.,4,db/journals/mlq/mlq34.html#BuchiS88,https://doi.org/10.1002/malq.19880340410 +Richard Elwes,Measurable groups of low dimension.,2008,54,Math. Log. Q.,4,db/journals/mlq/mlq54.html#ElwesR08,https://doi.org/10.1002/malq.200710052 +Marie Ferbus-Zanda,Kolmogorov complexity and set theoretical representations of integers.,2006,52,Math. Log. Q.,4,db/journals/mlq/mlq52.html#Ferbus-ZandaG06,https://doi.org/10.1002/malq.200510040 +Arnold Beckmann,An unexpected separation result in Linearly Bounded Arithmetic.,2005,51,Math. Log. Q.,2,db/journals/mlq/mlq51.html#BeckmannJ05,https://doi.org/10.1002/malq.200410019 +Nattapon Sonpanow,Some properties of infinite factorials.,2018,64,Math. Log. Q.,3,db/journals/mlq/mlq64.html#SonpanowV18,https://doi.org/10.1002/malq.201700054 +Keita Yokoyama,Non-standard analysis in ACA0 and Riemann mapping theorem.,2007,53,Math. Log. Q.,2,db/journals/mlq/mlq53.html#Yokoyama07,https://doi.org/10.1002/malq.200610033 +László Babai,The Complexity of Defining a Relation on a Finite Graph.,1987,33,Math. Log. Q.,3,db/journals/mlq/mlq33.html#BabaiT87,https://doi.org/10.1002/malq.19870330312 +,,,,,,, +Mohammad Ardeshir,Basic Propositional Calculus I.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#ArdeshirR98,https://doi.org/10.1002/malq.19980440304 +Fred Richman,Real numbers and other completions.,2008,54,Math. Log. Q.,1,db/journals/mlq/mlq54.html#Richman08,https://doi.org/10.1002/malq.200710024 +Razvan Diaconescu,On quasi-varieties of multiple valued logic models.,2011,57,Math. Log. Q.,2,db/journals/mlq/mlq57.html#Diaconescu11,https://doi.org/10.1002/malq.200910131 +J. L. Bell,Universal Complete Boolean Algebras and Cardinal Collapsing.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Bell76,https://doi.org/10.1002/malq.19760220121 +,,,,,,, +Dietrich Schwartz,Algebraic Analysis of The Term Logic with Choice Operator.,1981,27,Math. Log. Q.,22,db/journals/mlq/mlq27.html#Schwartz81,https://doi.org/10.1002/malq.19810272203 +Hiroya Kawai,Eine Logik Erster Stufe mit Einem Infinitären Zeitoperator.,1982,28,Math. Log. Q.,13,db/journals/mlq/mlq28.html#Kawai82,https://doi.org/10.1002/malq.19820281302 +Enrique Casanovas,|T|+-resplendent models and the Lascar group.,2005,51,Math. Log. Q.,6,db/journals/mlq/mlq51.html#CasanovasP05,https://doi.org/10.1002/malq.200510012 +David Steiner 0001,On the proof theory of type two functionals based on primitive recursive operations.,2006,52,Math. Log. Q.,3,db/journals/mlq/mlq52.html#SteinerS06,https://doi.org/10.1002/malq.200510029 +Kandasamy Muthuvel,Some Results Related to Patai's Theorem.,1987,33,Math. Log. Q.,6,db/journals/mlq/mlq33.html#Muthuvel87,https://doi.org/10.1002/malq.19870330609 +James H. Schmerl,Reverse Mathematics and Grundy colorings of graphs.,2010,56,Math. Log. Q.,5,db/journals/mlq/mlq56.html#Schmerl10,https://doi.org/10.1002/malq.200910108 +Stan J. Surma,An Axiomatisation of the Conditionals of Post's Many Valued Logics.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#Surma95,https://doi.org/10.1002/malq.19950410308 +George Voutsadakis,Categorical abstract algebraic logic: The largest theory system included in a theory family.,2006,52,Math. Log. Q.,3,db/journals/mlq/mlq52.html#Voutsadakis06,https://doi.org/10.1002/malq.200510034 +,,,,,,, +Sinisa Crvenkovic,Semigroups with apartness.,2013,59,Math. Log. Q.,6,db/journals/mlq/mlq59.html#CrvenkovicMR13,https://doi.org/10.1002/malq.201200107 +,,,,,,, +Rüdiger Schätz,Formalizing falsification: Three delete operations.,1990,36,Math. Log. Q.,5,db/journals/mlq/mlq36.html#Schatz90,https://doi.org/10.1002/malq.19900360510 +Claus-Peter Schnorr,A characterization of complexity sequences.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#SchnorrS75,https://doi.org/10.1002/malq.19750210106 +Ning Zhong 0002,Derivatives of Computable Functions.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#Zhong98,https://doi.org/10.1002/malq.19980440303 +,,,,,,, +Stephen H. Brackin,Partitions with no Coarsenings of Higher Degree.,1989,35,Math. Log. Q.,4,db/journals/mlq/mlq35.html#Brackin89,https://doi.org/10.1002/malq.19890350409 +,,,,,,, +Roman Kossak,Game Approximations of Satisfaction Classes Models.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#KossakK92,https://doi.org/10.1002/malq.19920380103 +Katsumasa Ishii,New sequent calculi for Visser's Formal Propositional Logic.,2003,49,Math. Log. Q.,5,db/journals/mlq/mlq49.html#Ishii03a,https://doi.org/10.1002/malq.200310056 +,,,,,,, +Hirokazu Nishimura,On a Duality Between Boolean Valued Analysis and Topological Reduction Theory.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Nishimura93,https://doi.org/10.1002/malq.19930390105 +Markus Huberich,A Note on Boolean Algebras with Few Partitions Modulo some Filter.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#Huberich96,https://doi.org/10.1002/malq.19960420114 +Mauro Di Nasso,Linearly Stratified Models for the Foundations of Nonstandard Mathematics.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#Nasso98,https://doi.org/10.1002/malq.19980440111 +Alan Rose,A Note on the Existence of Tautologies in Certain Propositional Calculi Without Propositional Variables.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Rose76,https://doi.org/10.1002/malq.19760220114 +,,,,,,, +Thomas G. McLaughlin,Existentially Complete Nerode Semirings.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#McLaughlin95,https://doi.org/10.1002/malq.19950410102 +,,,,,,, +Jan Dobrowolski,A preservation theorem for theories without the tree property of the first kind.,2017,63,Math. Log. Q.,6,db/journals/mlq/mlq63.html#DobrowolskiK17,https://doi.org/10.1002/malq.201600049 +George Rousseau,The Theorem of the Means for Cardinal and Ordinal Numbers.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Rousseau93,https://doi.org/10.1002/malq.19930390133 +Giacomo Lenzi,On a positive set theory with inequality.,2011,57,Math. Log. Q.,5,db/journals/mlq/mlq57.html#Lenzi11,https://doi.org/10.1002/malq.201010022 +Peter Jipsen,Partition Complete Boolean Algebras and Almost Compact Cardinals.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#JipsenR99,https://doi.org/10.1002/malq.19990450208 +Zofia Adamowicz,A note on the Sigma1 collection scheme and fragments of bounded arithmetic.,2010,56,Math. Log. Q.,2,db/journals/mlq/mlq56.html#AdamowiczK10,https://doi.org/10.1002/malq.200810043 +Marat M. Arslanov,There is no low maximal d. c. e. degree - Corrigendum.,2004,50,Math. Log. Q.,6,db/journals/mlq/mlq50.html#ArslanovCL04,https://doi.org/10.1002/malq.200410006 +Victor Pambuccian,Ternary Operations as Primitive Notions for Constructive Plane Geometry VI.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#Pambuccian95,https://doi.org/10.1002/malq.19950410310 +Olivier Finkel,Local sentences and Mahlo cardinals.,2007,53,Math. Log. Q.,6,db/journals/mlq/mlq53.html#FinkelT07,https://doi.org/10.1002/malq.200610049 +Jordi Rebagliato,A Finite Hilbert-Style Axiomatization of the Implication-Less Fragment of the Intuitionistic Propositional Calculus.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#RebagliatoV94,https://doi.org/10.1002/malq.19940400109 +Stephen A. Fenner,Bounded Immunity and Btt-Reductions.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#FennerS99,https://doi.org/10.1002/malq.19990450102 +Jürgen Hauck,Zur Wellengleichung mit konstruktiven Randbedingungen.,1984,30,Math. Log. Q.,36,db/journals/mlq/mlq30.html#Hauck84a,https://doi.org/10.1002/malq.19840303602 +Hilbert Levitz,An ordered set of arithmetic functions representing the least 9*-number.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Levitz75,https://doi.org/10.1002/malq.19750210115 +Cristian Calude,On a theorem of Günter Asser.,1990,36,Math. Log. Q.,2,db/journals/mlq/mlq36.html#CaludeS90,https://doi.org/10.1002/malq.19900360207 +,,,,,,, +Felix Brandt 0001,Some Remarks on Dodgson's Voting Rule.,2009,55,Math. Log. Q.,4,db/journals/mlq/mlq55.html#Brandt09,https://doi.org/10.1002/malq.200810017 +Ai-ni Hsieh,Conserving involution in residuated structures.,2007,53,Math. Log. Q.,6,db/journals/mlq/mlq53.html#HsiehR07,https://doi.org/10.1002/malq.200610052 +Zhixiang Chen,On Splitting of a Recursive Set with Polynomial Time Minimal Pairs.,1989,35,Math. Log. Q.,5,db/journals/mlq/mlq35.html#Chen89,https://doi.org/10.1002/malq.19890350508 +Armin Hemmerling,Editorial: Math. Log. Quart. 2/2008.,2008,54,Math. Log. Q.,2,db/journals/mlq/mlq54.html#Hemmerling08,https://doi.org/10.1002/malq.200890001 +Kyriakos Keremedis,The failure of the axiom of choice implies unrest in the theory of Lindelöf metric spaces.,2003,49,Math. Log. Q.,2,db/journals/mlq/mlq49.html#Keremedis03,https://doi.org/10.1002/malq.200310017 +Ermek S. Nurkhaidarov,Decoding in the automorphism group of a recursively saturated model of arithmetic.,2015,61,Math. Log. Q.,3,db/journals/mlq/mlq61.html#Nurkhaidarov15,https://doi.org/10.1002/malq.201400008 +Witold A. Pogorzelski,Structural completeness of the first-order predicate calculus.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#PogorzelskiP75,https://doi.org/10.1002/malq.19750210138 +Jakob Grue Simonsen,On local non-compactness in recursive mathematics.,2006,52,Math. Log. Q.,4,db/journals/mlq/mlq52.html#Simonsen06,https://doi.org/10.1002/malq.200510036 +,,,,,,, +Ralf-Dieter Schindler,Weak Covering at Large Cardinals.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Schindler97,https://doi.org/10.1002/malq.19970430103 +Peter Telec,Sequenzen und Strukturierte Zeichenreihen.,1979,25,Math. Log. Q.,33,db/journals/mlq/mlq25.html#Telec79,https://doi.org/10.1002/malq.19790253305 +,,,,,,, +Maciej Kandulski,Normal Form of Derivations in the Nonassociative and Commutative Lambek Calculus with Product.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Kandulski93,https://doi.org/10.1002/malq.19930390113 +Masami Ito,Generalized periodicity and primitivity for words.,2007,53,Math. Log. Q.,1,db/journals/mlq/mlq53.html#ItoL07,https://doi.org/10.1002/malq.200610030 +Grzegorz Michalski,On the Iterated ω*-Rule.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Michalski92,https://doi.org/10.1002/malq.19920380116 +Isaac Goldbring,An approximate Herbrand's theorem and definable functions in metric structures.,2012,58,Math. Log. Q.,3,db/journals/mlq/mlq58.html#Goldbring12,https://doi.org/10.1002/malq.201110061 +Victoria Gitman,Proper and piecewise proper families of reals.,2009,55,Math. Log. Q.,5,db/journals/mlq/mlq55.html#Gitman09,https://doi.org/10.1002/malq.200810015 +,,,,,,, +,,,,,,, +Douglas S. Bridges,A Definitive Constructive Open Mapping Theorem?,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#BridgesI98,https://doi.org/10.1002/malq.19980440413 +,,,,,,, +Andrei A. Kuzichev,Translations of Logical Formulas and the Equiconsistency Problem.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Kuzichev94,https://doi.org/10.1002/malq.19940400107 +James H. Schmerl,Remarks on Self-Extending Models.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Schmerl76,https://doi.org/10.1002/malq.19760220159 +,,,,,,, +,,,,,,, +Teresa Bigorajska,On Sigma1-definable Functions Provably Total in I-Pi1-.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#Bigorajska95,https://doi.org/10.1002/malq.19950410111 +Mark Mandelkern,Constructively Complete Finite Sets.,1988,34,Math. Log. Q.,2,db/journals/mlq/mlq34.html#Mandelkern88,https://doi.org/10.1002/malq.19880340202 +Iraj Kalantari,On Turing degrees of points in computable topology.,2008,54,Math. Log. Q.,5,db/journals/mlq/mlq54.html#KalantariW08,https://doi.org/10.1002/malq.200710062 +John N. Martin,A syntactic characterization of Kleene's strong connectives with two designated values.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Martin75,https://doi.org/10.1002/malq.19750210124 +Martin W. Bunder,Equality in.,1978,24,Math. Log. Q.,8,db/journals/mlq/mlq24.html#Bunder78,https://doi.org/10.1002/malq.19780240804 +,,,,,,, +Holger Petersen,The Computation of Partial Recursive Word-Functions Without Read Instructions.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#Petersen96,https://doi.org/10.1002/malq.19960420127 +Mohamed Khalouani,étude constructive de problèmes de topologie pour les réels irrationnels.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#KhalouaniLL99,https://doi.org/10.1002/malq.19990450209 +Olivier Esser,An Interpretation of the Zermelo-Fraenkel Set Theory and the Kelley-Morse Set Theory in a Positive Theory.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Esser97,https://doi.org/10.1002/malq.19970430309 +Norbert Brunner,Russell's Alternative to the Axiom of Choice.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#BrunnerH92,https://doi.org/10.1002/malq.19920380149 +Jan Johannsen,A Remark on Independence Results for Sharply Bounded Arithmetic.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#Johannsen98a,https://doi.org/10.1002/malq.19980440415 +Juergen Quandt,Relative Consistency of a Set Theory with Hyperclasses.,1987,33,Math. Log. Q.,2,db/journals/mlq/mlq33.html#Quandt87,https://doi.org/10.1002/malq.19870330203 +Victor Pambuccian,"Corrigendum to ""The complexity of plane hyperbolic incidence geometry is (forall)(exist)(forall)(exist)"".",2008,54,Math. Log. Q.,6,db/journals/mlq/mlq54.html#Pambuccian08,https://doi.org/10.1002/malq.200710068 +Toshio Suzuki,Witnessing Numbers of Shelah Cardinals.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Suzuki93,https://doi.org/10.1002/malq.19930390109 +Victor Pambuccian,Ternary Operations as Primitive Notions for Plane Geometry II.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Pambuccian92,https://doi.org/10.1002/malq.19920380132 +Reinhard Pöschel,The Equational Logic For Graph Algebras.,1989,35,Math. Log. Q.,3,db/journals/mlq/mlq35.html#Poschel89,https://doi.org/10.1002/malq.19890350311 +Andrzej Orlicki,On some categories of partial enumerated sets.,1990,36,Math. Log. Q.,6,db/journals/mlq/mlq36.html#Orlicki90a,https://doi.org/10.1002/malq.19900360607 +Martin Weese,A Direct Proof of a Result of Shelah.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Weese92,https://doi.org/10.1002/malq.19920380130 +Paul E. Howard,Disjoint Unions of Topological Spaces and Choice.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#HowardKRR98a,https://doi.org/10.1002/malq.19980440408 +Fred Richman,Intuitionistic notions of boundedness in N.,2009,55,Math. Log. Q.,1,db/journals/mlq/mlq55.html#Richman09,https://doi.org/10.1002/malq.200710072 +Frank Wolter,Properties of Tense Logics.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#Wolter96a,https://doi.org/10.1002/malq.19960420140 +,,,,,,, +Joseph Barback,On hyper-torre isols.,2006,52,Math. Log. Q.,4,db/journals/mlq/mlq52.html#Barback06,https://doi.org/10.1002/malq.200610002 +Martin Weese,Definierbare Prädikate in Booleschen Algebren I.,1977,23,Math. Log. Q.,36,db/journals/mlq/mlq23.html#Weese77,https://doi.org/10.1002/malq.19770233605 +Marek Balcerzak,On monotone hull operations.,2011,57,Math. Log. Q.,2,db/journals/mlq/mlq57.html#BalcerzakF11,https://doi.org/10.1002/malq.201010004 +John T. Baldwin 0001,A Hanf number for saturation and omission: the superstable case.,2014,60,Math. Log. Q.,6,db/journals/mlq/mlq60.html#BaldwinS14,https://doi.org/10.1002/malq.201300022 +Karel Hrbacek,Degrees of analytic Sets.,1983,29,Math. Log. Q.,2,db/journals/mlq/mlq29.html#Hrbacek83,https://doi.org/10.1002/malq.19830290204 +Horst Herrlich,Odd-sized partitions of Russell-sets.,2010,56,Math. Log. Q.,2,db/journals/mlq/mlq56.html#HerrlichT10,https://doi.org/10.1002/malq.200810049 +,,,,,,, +Kyriakos Keremedis,Extending Independent Sets to Bases and the Axiom of Choice.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#Keremedis98,https://doi.org/10.1002/malq.19980440106 +John Loader,An alternative concept of the universal decision element in m-valued logic.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Loader75,https://doi.org/10.1002/malq.19750210148 +Kota Takeuchi,Model companions of theories of graphs.,2015,61,Math. Log. Q.,3,db/journals/mlq/mlq61.html#TakeuchiTT15,https://doi.org/10.1002/malq.201400019 +,,,,,,, +Radosav S. Dordevic,Analytic Completeness Theorem for absolutely Continuous Biprobability Models.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Dordevic92,https://doi.org/10.1002/malq.19920380119 +Yalin F. çelikler,Quantifier elimination for the theory of algebraically closed valued fields with analytic structure.,2007,53,Math. Log. Q.,3,db/journals/mlq/mlq53.html#Celikler07,https://doi.org/10.1002/malq.200610042 +,,,,,,, +Imre Z. Ruzsa,Two variants of the system of entailment.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Ruzsa75,https://doi.org/10.1002/malq.19750210107 +,,,,,,, +Seyed Mohammad Bagheri,On translations of complete first order theories.,2003,49,Math. Log. Q.,1,db/journals/mlq/mlq49.html#Bagheri03,https://doi.org/10.1002/malq.200310007 +Guillermo Badia,On elimination of quantifiers in some non-classical mathematical theories.,2018,64,Math. Log. Q.,3,db/journals/mlq/mlq64.html#BadiaT18,https://doi.org/10.1002/malq.201600078 +G. P. Monro,The Concept of Multiset.,1987,33,Math. Log. Q.,2,db/journals/mlq/mlq33.html#Monro87,https://doi.org/10.1002/malq.19870330212 +Norihiro Kamide,Classical linear logics with mix separation principle.,2003,49,Math. Log. Q.,2,db/journals/mlq/mlq49.html#Kamide03,https://doi.org/10.1002/malq.200310019 +Olivier Gasquet,Predicate Modal Logics Do Not Mix Very Well.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#Gasquet98,https://doi.org/10.1002/malq.19980440103 +Arthur W. Apter,Level by level equivalence and strong compactness.,2004,50,Math. Log. Q.,1,db/journals/mlq/mlq50.html#Apter04,https://doi.org/10.1002/malq.200310076 +Feresiano Mwesigye,Countably categorical coloured linear orders.,2010,56,Math. Log. Q.,2,db/journals/mlq/mlq56.html#MwesigyeT10,https://doi.org/10.1002/malq.200910005 +,,,,,,, +Gilda Ferreira,Confined modified realizability.,2010,56,Math. Log. Q.,1,db/journals/mlq/mlq56.html#FerreiraO10,https://doi.org/10.1002/malq.200810029 +,,,,,,, +Iain A. Stewart,Logics with Zero-One Laws that Are Not Fragments of Bounded-Variable Infinitary Logic.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Stewart97a,https://doi.org/10.1002/malq.19970430203 +Laurent Vanderputten,A nonstandard density theorem for weak topologies on Banach and Bochner spaces.,2003,49,Math. Log. Q.,3,db/journals/mlq/mlq49.html#Vanderputten03,https://doi.org/10.1002/malq.200310027 +Guozhen Shen,Generalizations of Cantor's theorem in ZF.,2017,63,Math. Log. Q.,5,db/journals/mlq/mlq63.html#Shen17,https://doi.org/10.1002/malq.201600039 +Rami P. Grossberg,The equality S1 = D = R.,2003,49,Math. Log. Q.,2,db/journals/mlq/mlq49.html#GrossbergKTD03,https://doi.org/10.1002/malq.200310012 +Levon Haykazyan,Constructing quasiminimal structures.,2017,63,Math. Log. Q.,5,db/journals/mlq/mlq63.html#Haykazyan17,https://doi.org/10.1002/malq.201600071 +V. B. Sehtman,"A Remark on M. K. Rennie's Paper ""Models for Multiply Modal Systems"".",1977,23,Math. Log. Q.,36,db/journals/mlq/mlq23.html#Sehtman77,https://doi.org/10.1002/malq.19770233609 +Armin Hemmerling,Approximate decidability in euclidean spaces.,2003,49,Math. Log. Q.,1,db/journals/mlq/mlq49.html#Hemmerling03,https://doi.org/10.1002/malq.200310003 +Klaus Benecke,Spezifikation parametrisierter Datentypen.,1983,29,Math. Log. Q.,2,db/journals/mlq/mlq29.html#Benecke83,https://doi.org/10.1002/malq.19830290205 +Mingsheng Ying,The Fundamental Theorem of Ultraproduct in Pavelka's Logic.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Ying92,https://doi.org/10.1002/malq.19920380115 +Masahiko Murakami,Expanding the additive reduct of a model of Peano arithmetic.,2003,49,Math. Log. Q.,4,db/journals/mlq/mlq49.html#MurakamiT03,https://doi.org/10.1002/malq.200310038 +R. R. Rockingham Gill,A note on the compactness theorem.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Gill75,https://doi.org/10.1002/malq.19750210149 +,,,,,,, +Gerhard Jäger,"Corrigendum to ""Variation on a theme of Schütte"".",2005,51,Math. Log. Q.,6,db/journals/mlq/mlq51.html#JagerP05,https://doi.org/10.1002/malq.200510005 +Tryggvi Edwald,The t-variable method in gentzen-style automatic theorem proving.,1990,36,Math. Log. Q.,3,db/journals/mlq/mlq36.html#Edwald90,https://doi.org/10.1002/malq.19900360310 +Itay Kaplan,Forcing a countable structure to belong to the ground model.,2016,62,Math. Log. Q.,6,db/journals/mlq/mlq62.html#KaplanS16,https://doi.org/10.1002/malq.201400094 +,,,,,,, +Sy D. Friedman,Definability degrees.,2005,51,Math. Log. Q.,5,db/journals/mlq/mlq51.html#Friedman05,https://doi.org/10.1002/malq.200510002 +,,,,,,, +Peter Schuster 0001,"Corrigendum to ""Unique solutions"".",2007,53,Math. Log. Q.,2,db/journals/mlq/mlq53.html#Schuster07,https://doi.org/10.1002/malq.200710001 +Kyriakos Keremedis,Weak Hausdorff Gaps and the p≤t Problem.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#Keremedis99,https://doi.org/10.1002/malq.19990450109 +,,,,,,, +Gérard Lopez,La relation différence et l'anti-isomorphie.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#LopezB95,https://doi.org/10.1002/malq.19950410213 +,,,,,,, +Douglas S. Bridges,Product a-frames and proximity.,2008,54,Math. Log. Q.,1,db/journals/mlq/mlq54.html#Bridges08,https://doi.org/10.1002/malq.200710033 +Erik Ellentuck,Decomposable Isols and Their Degrees.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Ellentuck76,https://doi.org/10.1002/malq.19760220134 +Agustin Riscos,N-Categories in Logic.,1987,33,Math. Log. Q.,6,db/journals/mlq/mlq33.html#RiscosL87,https://doi.org/10.1002/malq.19870330605 +George Barmpalias,A transfinite hierarchy of reals.,2003,49,Math. Log. Q.,2,db/journals/mlq/mlq49.html#Barmpalias03,https://doi.org/10.1002/malq.200310015 +Kam-Chau Wong,A fixed point theorem for o-minimal structures.,2003,49,Math. Log. Q.,6,db/journals/mlq/mlq49.html#Wong03,https://doi.org/10.1002/malq.200310065 +Henrik Forssell,Topological representation of geometric theories.,2012,58,Math. Log. Q.,6,db/journals/mlq/mlq58.html#Forssell12,https://doi.org/10.1002/malq.201100080 +Giacomo Bonanno,On the Logic of Common Belief.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#Bonanno96,https://doi.org/10.1002/malq.19960420126 +Roland Hinnion,Stratified and positive comprehension seen as superclass rules over ordinary set theory.,1990,36,Math. Log. Q.,6,db/journals/mlq/mlq36.html#Hinnion90,https://doi.org/10.1002/malq.19900360605 +Dick De Jongh,Provable Fixed Points.,1988,34,Math. Log. Q.,3,db/journals/mlq/mlq34.html#JonghM88,https://doi.org/10.1002/malq.19880340307 +Andrei Popescu 0001,A general approach to fuzzy concepts.,2004,50,Math. Log. Q.,3,db/journals/mlq/mlq50.html#Popescu04,https://doi.org/10.1002/malq.200310098 +Pascal Ostermann,Many-valued modal logics: Uses and predicate calculus.,1990,36,Math. Log. Q.,4,db/journals/mlq/mlq36.html#Ostermann90,https://doi.org/10.1002/malq.19900360411 +,,,,,,, +Antonio di Nola,A discrete representation of free MV-algebras.,2010,56,Math. Log. Q.,3,db/journals/mlq/mlq56.html#NolaGS10,https://doi.org/10.1002/malq.200910036 +Thierry Libert,Positive Frege and its Scott-style semantics.,2008,54,Math. Log. Q.,4,db/journals/mlq/mlq54.html#Libert08,https://doi.org/10.1002/malq.200710053 +Carlo Toffalori,Some Decidability Results for ™4*[G]-Modules when G is Cyclic of Squarefree Order.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#Toffalori96a,https://doi.org/10.1002/malq.19960420135 +Amélie Gheerbrant,Recursive complexity of the Carnap first order modal logic C.,2006,52,Math. Log. Q.,1,db/journals/mlq/mlq52.html#GheerbrantM06,https://doi.org/10.1002/malq.200410057 +,,,,,,, +Kazuyuki Tanaka,A Game-Theoretic Proof of analytic Ramsey Theorem.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Tanaka92,https://doi.org/10.1002/malq.19920380127 +Karsten Steffens,Der Satz von Dilworth und Souslin's Hypothese.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Steffens75,https://doi.org/10.1002/malq.19750210126 +,,,,,,, +,,,,,,, +,,,,,,, +Martin Weese,Decidability with Respect to Härtig Quantifier and Rescher Quantifier.,1981,27,Math. Log. Q.,36,db/journals/mlq/mlq27.html#Weese81,https://doi.org/10.1002/malq.19810273604 +Arthur W. Apter,An Easton theorem for level by level equivalence.,2005,51,Math. Log. Q.,3,db/journals/mlq/mlq51.html#Apter05a,https://doi.org/10.1002/malq.200510023 +Cédric Rivière,The model theory of m-ordered differential fields.,2006,52,Math. Log. Q.,4,db/journals/mlq/mlq52.html#Riviere06,https://doi.org/10.1002/malq.200510037 +Antonio Avilés,Free sets for set-mappings relative to a family of sets.,2017,63,Math. Log. Q.,6,db/journals/mlq/mlq63.html#AvilesP17,https://doi.org/10.1002/malq.201600100 +Larry Mathews,Hilbert's 17th Problem for Real Closed Rings.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Mathews94a,https://doi.org/10.1002/malq.19940400403 +Williams Kramer Forrest,Some Basic Results in the Theory of ω*-Stable Theories.,1979,25,Math. Log. Q.,33,db/journals/mlq/mlq25.html#Forrest79,https://doi.org/10.1002/malq.19790253302 +Ilnur I. Batyrshin,Quasi-completeness and functions without fixed-points.,2006,52,Math. Log. Q.,6,db/journals/mlq/mlq52.html#Batyrshin06,https://doi.org/10.1002/malq.200610017 +,,,,,,, +Carlo Toffalori,p-ℵ*0-Categorical Lattice-Ordered Structures.,1989,35,Math. Log. Q.,1,db/journals/mlq/mlq35.html#Toffalori89,https://doi.org/10.1002/malq.19890350104 +M. B. Thuraisingham,Reducibility Relationships Between Decision Problems for System Functions.,1987,33,Math. Log. Q.,4,db/journals/mlq/mlq33.html#Thuraisingham87,https://doi.org/10.1002/malq.19870330404 +Joel David Hamkins,Tall cardinals.,2009,55,Math. Log. Q.,1,db/journals/mlq/mlq55.html#Hamkins09,https://doi.org/10.1002/malq.200710084 +Dietrich Schwartz,Kanonische Abbildungen und Eilenberg-Maschinen.,1978,24,Math. Log. Q.,12,db/journals/mlq/mlq24.html#Schwartz78,https://doi.org/10.1002/malq.19780241202 +Mark Mandelkern,Finitary Sequence Spaces.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Mandelkern93a,https://doi.org/10.1002/malq.19930390145 +Robert S. Lubarsky,On extensions of supercompactness.,2015,61,Math. Log. Q.,3,db/journals/mlq/mlq61.html#LubarskyP15,https://doi.org/10.1002/malq.201400030 +,,,,,,, +Dag Normann,General Type-Structures of Continuous and Countable Functionals.,1983,29,Math. Log. Q.,4,db/journals/mlq/mlq29.html#Normann83,https://doi.org/10.1002/malq.19830290402 +Emil Jerábek,A note on Grzegorczyk's logic.,2004,50,Math. Log. Q.,3,db/journals/mlq/mlq50.html#Jeabek04,https://doi.org/10.1002/malq.200310094 +Petr Vopenka,Contributions to the theory of semisets V: On the axiom of general collapse.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#VopenkaS75,https://doi.org/10.1002/malq.19750210134 +F. W. Gorgy,On the Impossibility of Transformation of All True Formulas Of Markov's Language L1 into True Formulas of His Language and#8477*.,1988,34,Math. Log. Q.,4,db/journals/mlq/mlq34.html#Gorgy88,https://doi.org/10.1002/malq.19880340405 +Hirokazu Nishimura,On the Completeness of Chronological Logics with Modal Operators.,1979,25,Math. Log. Q.,31,db/journals/mlq/mlq25.html#Nishimura79,https://doi.org/10.1002/malq.19790253104 +Maria Emilia Alonso,Elementary constructive theory of Henselian local rings.,2008,54,Math. Log. Q.,3,db/journals/mlq/mlq54.html#AlonsoLP08,https://doi.org/10.1002/malq.200710057 +,,,,,,, +,,,,,,, +Iain A. Stewart,Monotonicity and the Expressibility of NP Operators.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Stewart94,https://doi.org/10.1002/malq.19940400118 +John Jones,Implication and Iterated Implication.,1983,29,Math. Log. Q.,10,db/journals/mlq/mlq29.html#Jones83a,https://doi.org/10.1002/malq.19830291006 +Luisa Iturrioz,Symmetrical Heyting Algebras with Operators.,1983,29,Math. Log. Q.,2,db/journals/mlq/mlq29.html#Iturrioz83,https://doi.org/10.1002/malq.19830290202 +Steve Jackson,The strong partition relation on omega1 revisited.,2004,50,Math. Log. Q.,1,db/journals/mlq/mlq50.html#JacksonM04,https://doi.org/10.1002/malq.200310073 +Vladimir R. Kiyatkin,On Finite Model Property for Admissible Rules.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#KiyatkinRO99,https://doi.org/10.1002/malq.19990450409 +Ahmet çevik,choice classes.,2016,62,Math. Log. Q.,6,db/journals/mlq/mlq62.html#Cevik16,https://doi.org/10.1002/malq.201500055 +Ronald Fagin,A spectrum hierarchy.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Fagin75b,https://doi.org/10.1002/malq.19750210117 +Stefano Mazzanti,Iteration on notation and unary functions.,2013,59,Math. Log. Q.,6,db/journals/mlq/mlq59.html#Mazzanti13,https://doi.org/10.1002/malq.201200055 +,,,,,,, +Quentin Brouette,A nullstellensatz and a positivstellensatz for ordered differential fields.,2013,59,Math. Log. Q.,3,db/journals/mlq/mlq59.html#Brouette13,https://doi.org/10.1002/malq.201200041 +Benedikt Löwe,A parametrised choice principle and Martin's conjecture on Blackwell determinacy.,2006,52,Math. Log. Q.,2,db/journals/mlq/mlq52.html#Lowe06,https://doi.org/10.1002/malq.200410059 +,,,,,,, +J. U. L. Ersov,Theorie der Numerierungen II.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Ersov75,https://doi.org/10.1002/malq.19750210164 +S. Barry Cooper,Enumeration Reducibility Using Bounded Information: Counting Minimal Covers.,1987,33,Math. Log. Q.,6,db/journals/mlq/mlq33.html#Cooper87,https://doi.org/10.1002/malq.19870330608 +J. Castro,Nondeterministic and#937*-Computations and the Analytical Hierarchy.,1989,35,Math. Log. Q.,4,db/journals/mlq/mlq35.html#CastroC89,https://doi.org/10.1002/malq.19890350406 +,,,,,,, +Miklós Erdélyi-Szabó,Undecidability of the Real Algebraic Structure of Scott's Model.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#Erdelyi-Szabo98,https://doi.org/10.1002/malq.19980440305 +Olivier Esser,Inconsistency of GPK + AFA.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#Esser96,https://doi.org/10.1002/malq.19960420109 +,,,,,,, +Juan C. Martínez,A consistency result on cardinal sequences of scattered Boolean spaces.,2005,51,Math. Log. Q.,6,db/journals/mlq/mlq51.html#Martinez05,https://doi.org/10.1002/malq.200410050 +,,,,,,, +Vladimir Kanovei,On a Spector Ultrapower for the Solovay Model.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#KanoveiL97,https://doi.org/10.1002/malq.19970430311 +Martin Goldstern,Strongly Amorphous Sets and Dual Dedekind Infinity.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Goldstern97,https://doi.org/10.1002/malq.19970430105 +,,,,,,, +,,,,,,, +Josep Maria Font,Note on algebraic models for relevance logic.,1990,36,Math. Log. Q.,6,db/journals/mlq/mlq36.html#FontR90,https://doi.org/10.1002/malq.19900360606 +Michael von Rimscha,Hierarchies for Non-Founded Models of Set Theory.,1983,29,Math. Log. Q.,4,db/journals/mlq/mlq29.html#Rimscha83,https://doi.org/10.1002/malq.19830290412 +Arsham Borumand Saeid,Some results in BL -algebras.,2009,55,Math. Log. Q.,6,db/journals/mlq/mlq55.html#SaeidM09,https://doi.org/10.1002/malq.200910025 +Stephen Binns,A splitting theorem for the Medvedev and Muchnik lattices.,2003,49,Math. Log. Q.,4,db/journals/mlq/mlq49.html#Binns03,https://doi.org/10.1002/malq.200310034 +Thomas Herzog,The Inequivalence of Two Well-Known Notions of Randomness for Binary Sequences.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#HerzogO76,https://doi.org/10.1002/malq.19760220147 +Mário J. Edmundo,On the Euler characteristic of definable groups.,2011,57,Math. Log. Q.,1,db/journals/mlq/mlq57.html#Edmundo11,https://doi.org/10.1002/malq.200910126 +Achim Blumensath,Simple monadic theories and indiscernibles.,2011,57,Math. Log. Q.,1,db/journals/mlq/mlq57.html#Blumensath11,https://doi.org/10.1002/malq.200910121 +Fernando Ferreira,On End-Extensions of Models of and#172*exp.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#Ferreira96,https://doi.org/10.1002/malq.19960420102 +Andrey A. Kuzichev,A Theory of Ambiguous Types and Its Axiomatizations.,1989,35,Math. Log. Q.,6,db/journals/mlq/mlq35.html#Kuzichev89,https://doi.org/10.1002/malq.19890350605 +Thomas Forster,A Consistent Higher-Order Theory Without a (Higher-Order) Model.,1989,35,Math. Log. Q.,5,db/journals/mlq/mlq35.html#Forster89,https://doi.org/10.1002/malq.19890350502 +V. Wiktor Marek,No minimal transitive model of Z-.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#MarekS75,https://doi.org/10.1002/malq.19750210130 +Andrzej Orlicki,Constructive and Locally Constructive Endofunctors on the Category of Enumerated Sets.,1987,33,Math. Log. Q.,4,db/journals/mlq/mlq33.html#Orlicki87,https://doi.org/10.1002/malq.19870330412 +Silvio Valentini,The Modal Logic of Consistency Assertions of Peano Arithmetic.,1983,29,Math. Log. Q.,1,db/journals/mlq/mlq29.html#Valentini83,https://doi.org/10.1002/malq.19830290105 +Ricardo de Aldama,Definable nilpotent and soluble envelopes in groups without the independence property.,2013,59,Math. Log. Q.,3,db/journals/mlq/mlq59.html#Aldama13,https://doi.org/10.1002/malq.201200043 +Michal Krynicki,Notion of Interpretation and Nonelementary Languages.,1988,34,Math. Log. Q.,6,db/journals/mlq/mlq34.html#Krynicki88,https://doi.org/10.1002/malq.19880340606 +Alessandra Carbone,Rosser Orderings in Bimodal Logics.,1989,35,Math. Log. Q.,4,db/journals/mlq/mlq35.html#CarboneM89,https://doi.org/10.1002/malq.19890350407 +Kyriakos Keremedis,Countable sums and products of metrizable spaces in ZF.,2005,51,Math. Log. Q.,1,db/journals/mlq/mlq51.html#KeremedisT05,https://doi.org/10.1002/malq.200410011 +Akito Tsuboi,On Definability of Normal Subgroups of a Superstable Group.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Tsuboi92,https://doi.org/10.1002/malq.19920380108 +S. Barry Cooper,Strong Minimal Covers for Recursively Enumerable Degrees.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#Cooper96,https://doi.org/10.1002/malq.19960420116 +Stefano Baratella,A note on infinitary continuous logic.,2015,61,Math. Log. Q.,6,db/journals/mlq/mlq61.html#Baratella15,https://doi.org/10.1002/malq.201400077 +Thomas Brihaye,A note on the undecidability of the reachability problem for o-minimal dynamical systems.,2006,52,Math. Log. Q.,2,db/journals/mlq/mlq52.html#Brihaye06,https://doi.org/10.1002/malq.200510024 +James B. Freeman,Algebraic Semantics for Modal Predicate Logic.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Freeman76,https://doi.org/10.1002/malq.19760220162 +Jan Saroch, Σ-algebraically compact modules and Lχ9*1χ9*-compact cardinals.,2015,61,Math. Log. Q.,3,db/journals/mlq/mlq61.html#Saroch15,https://doi.org/10.1002/malq.201400054 +,,,,,,, +Robert A. Bull,Cut Elimination for Propositional Dynamic Logic without.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Bull92,https://doi.org/10.1002/malq.19920380107 +,,,,,,, +,,,,,,, +Arthur W. Apter,Supercompactness and measurable limits of strong cardinals II: Applications to level by level equivalence.,2006,52,Math. Log. Q.,5,db/journals/mlq/mlq52.html#Apter06,https://doi.org/10.1002/malq.200610005 +Hannes Diener,Generalising compactness.,2008,54,Math. Log. Q.,1,db/journals/mlq/mlq54.html#Diener08,https://doi.org/10.1002/malq.200710041 +,,,,,,, +Philip Scowcroft,A model of intuitionistic analysis in which and#8960*-definable discrete sets are subcountable.,2016,62,Math. Log. Q.,3,db/journals/mlq/mlq62.html#Scowcroft16,https://doi.org/10.1002/malq.201400043 +Antonio Greco,A Class of Models for Skala's Set Theory.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Greco92,https://doi.org/10.1002/malq.19920380123 +Alan Rose,Scompleteness of Sets of Three-Valued Sheffer Function.,1983,29,Math. Log. Q.,10,db/journals/mlq/mlq29.html#Rose83,https://doi.org/10.1002/malq.19830291002 +Miha E. Habic,The grounded Martin's axiom.,2017,63,Math. Log. Q.,5,db/journals/mlq/mlq63.html#Habic17,https://doi.org/10.1002/malq.201600097 +Antonio di Nola,The Prime Spectrum of an MV-Algebra.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#NolaBS94,https://doi.org/10.1002/malq.19940400304 +Bruno Poizat,Polygones.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#PoizatM95,https://doi.org/10.1002/malq.19950410109 +John L. Bell,Fregean Extensions of First-Order Theories.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Bell94,https://doi.org/10.1002/malq.19940400104 +Ford W. Gorgy,Mutual Transformability of Formulas of the Languages of Markov Lχ9*n and andequation Image*n1.,1983,29,Math. Log. Q.,4,db/journals/mlq/mlq29.html#GorgyS83a,https://doi.org/10.1002/malq.19830290406 +,,,,,,, +P. H. Stanford,Polish circles.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Stanford75,https://doi.org/10.1002/malq.19750210152 +,,,,,,, +Michel Hébert,Preservation and Interpolation Through Binary Relations Between Theories.,1989,35,Math. Log. Q.,2,db/journals/mlq/mlq35.html#Hebert89,https://doi.org/10.1002/malq.19890350206 +Carlo Toffalori,Decidability for ™4*[G]-Modules when G is Cyclic of Prime Order.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#Toffalori96,https://doi.org/10.1002/malq.19960420131 +Felipe Cucker,Machines Over the Reals and Non Uniformity.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Cucker97,https://doi.org/10.1002/malq.19970430202 +,,,,,,, +Akira Kanda,Alternative Characterizations of Precomplete Numerations.,1987,33,Math. Log. Q.,2,db/journals/mlq/mlq33.html#KandaL87,https://doi.org/10.1002/malq.19870330202 +Dietrich Schwartz,Sequenzenschliessen in Der Algebraischen Attributenlogik.,1977,23,Math. Log. Q.,36,db/journals/mlq/mlq23.html#Schwartz77,https://doi.org/10.1002/malq.19770233603 +Andreas Weiermann,An Order-Theoretic Characterization of the Schütte-Veblen-Hierarchy.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Weiermann93a,https://doi.org/10.1002/malq.19930390141 +,,,,,,, +,,,,,,, +Camillo Costantini,Pairwise disjoint eight-shaped curves in hybrid planes.,2007,53,Math. Log. Q.,6,db/journals/mlq/mlq53.html#Costantini07,https://doi.org/10.1002/malq.200710003 +Xiaoding Yi,Splittings of 0' into the Recursively Enumerable Degrees.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#Yi96,https://doi.org/10.1002/malq.19960420122 +Yuefei Sui,A New Reducibility between Turing- and wtt-Reducibility.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Sui94,https://doi.org/10.1002/malq.19940400115 +Sergio A. Celani,n-linear weakly Heyting algebras.,2006,52,Math. Log. Q.,4,db/journals/mlq/mlq52.html#Celani06,https://doi.org/10.1002/malq.200510041 +Rodney G. Downey,On the Universal Splitting Property.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Downey97,https://doi.org/10.1002/malq.19970430303 +,,,,,,, +,,,,,,, +Martin Kummer,The Length Problem for Co-R.E. Sets.,1988,34,Math. Log. Q.,3,db/journals/mlq/mlq34.html#Kummer88,https://doi.org/10.1002/malq.19880340311 +Leon Harkleroad,Fuzzy Regressivity and Retraceability.,1988,34,Math. Log. Q.,6,db/journals/mlq/mlq34.html#Harkleroad88,https://doi.org/10.1002/malq.19880340604 +Jeffrey Scott Leaning,Disassociated indiscernibles.,2014,60,Math. Log. Q.,6,db/journals/mlq/mlq60.html#LeaningB14,https://doi.org/10.1002/malq.201100111 +,,,,,,, +Erik Ellentuck,Random Isols.,1983,29,Math. Log. Q.,1,db/journals/mlq/mlq29.html#Ellentuck83,https://doi.org/10.1002/malq.19830290102 +Karl-Heinz Diener,On Constructing Infinitary Languages Lα 6* without the Axiom of Choice.,1983,29,Math. Log. Q.,6,db/journals/mlq/mlq29.html#Diener83,https://doi.org/10.1002/malq.19830290603 +,,,,,,, +Arthur W. Apter,How many normal measures can Alef.,2010,56,Math. Log. Q.,2,db/journals/mlq/mlq56.html#Apter10a,https://doi.org/10.1002/malq.200910003 +Robert P. McArthur,A Completeness Result for Quantificational Tense Logic.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#McArthurL76,https://doi.org/10.1002/malq.19760220110 +Abhijit Dasgupta,A set of axioms for nonstandard extensions.,2011,57,Math. Log. Q.,5,db/journals/mlq/mlq57.html#Dasgupta11,https://doi.org/10.1002/malq.201010025 +Mai Gehrke,On the Maximality of Some Conormal Extensions of a Lattice.,1987,33,Math. Log. Q.,1,db/journals/mlq/mlq33.html#GehrkeK87,https://doi.org/10.1002/malq.19870330103 +Mauro Ferrari,A secondary semantics for Second Order Intuitionistic Propositional Logic.,2004,50,Math. Log. Q.,2,db/journals/mlq/mlq50.html#FerrariFF04,https://doi.org/10.1002/malq.200310090 +Andreas Weiermann,A Simplified Functorial Construction of the Veblen Hierarchy.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Weiermann93,https://doi.org/10.1002/malq.19930390131 +Josef Slapal,Relations of Type α.,1988,34,Math. Log. Q.,6,db/journals/mlq/mlq34.html#Slapal88,https://doi.org/10.1002/malq.19880340608 +Martin Dowd,An Extension of the Lebesgue Measure Pertaining to the Repeated Experiment.,1989,35,Math. Log. Q.,3,db/journals/mlq/mlq35.html#Dowd89,https://doi.org/10.1002/malq.19890350302 +,,,,,,, +,,,,,,, +Pier Luigi Ferrari,The Rank Function and Hilbert'S Second and#1013*-Theorem.,1989,35,Math. Log. Q.,4,db/journals/mlq/mlq35.html#Ferrari89,https://doi.org/10.1002/malq.19890350410 +Kyriakos Keremedis,The Boolean prime ideal theorem and products of cofinite topologies.,2013,59,Math. Log. Q.,6,db/journals/mlq/mlq59.html#Keremedis13,https://doi.org/10.1002/malq.201100077 +Sergio A. Celani,On the free implicative semilattice extension of a Hilbert algebra.,2012,58,Math. Log. Q.,3,db/journals/mlq/mlq58.html#CelaniJ12,https://doi.org/10.1002/malq.201020098 +Joseph Barback,Regressive Isols and Comparability.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Barback76,https://doi.org/10.1002/malq.19760220149 +Paul E. Howard,Variations of Rado's Lemma.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Howard93,https://doi.org/10.1002/malq.19930390139 +Victor L. Selivanov,Recursiveness of ω*-Operations.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Selivanov94,https://doi.org/10.1002/malq.19940400207 +,,,,,,, +Sam Sanders,Relative arithmetic.,2010,56,Math. Log. Q.,6,db/journals/mlq/mlq56.html#Sanders10,https://doi.org/10.1002/malq.200910110 +,,,,,,, +T. G. McLaughlin,A note concerning the V* relation on and#923*r.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#McLaughlin75,https://doi.org/10.1002/malq.19750210123 +Jörg Flum,An Extension of the Lemma of Rasiowa and Sikorski.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#Flum98,https://doi.org/10.1002/malq.19980440409 +Teodor Stepien,On The Uniqueness of the Lindenbaum Extension.,1988,34,Math. Log. Q.,5,db/journals/mlq/mlq34.html#Stepien88,https://doi.org/10.1002/malq.19880340509 +,,,,,,, +J.-M. Brochet,The Finite Cutset Property.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Brochet93,https://doi.org/10.1002/malq.19930390118 +Christian Delhommé,Infinite Projection Properties.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#Delhomme98,https://doi.org/10.1002/malq.19980440407 +Luminita Vîta,On proximal convergence in uniform spaces.,2003,49,Math. Log. Q.,6,db/journals/mlq/mlq49.html#Vita03a,https://doi.org/10.1002/malq.200310059 +David A. Ross,A nonstandard proof of a lemma from constructive measure theory.,2006,52,Math. Log. Q.,5,db/journals/mlq/mlq52.html#Ross06,https://doi.org/10.1002/malq.200610008 +Leszek Aleksander Kolodziejczyk,The polynomial and linear time hierarchies in V0.,2009,55,Math. Log. Q.,5,db/journals/mlq/mlq55.html#KolodziejczykT09,https://doi.org/10.1002/malq.200810007 +Stefano Berardi,A generalization of a conservativity theorem for classical versus intuitionistic arithmetic.,2004,50,Math. Log. Q.,1,db/journals/mlq/mlq50.html#Berardi04,https://doi.org/10.1002/malq.200310074 +Jan Krajícek,Quantified propositional calculi and fragments of bounded arithmetic.,1990,36,Math. Log. Q.,1,db/journals/mlq/mlq36.html#KrajicekP90,https://doi.org/10.1002/malq.19900360106 +Vasco Brattka,Editorial: Math. Log. Quart. 5/2008.,2008,54,Math. Log. Q.,5,db/journals/mlq/mlq54.html#BrattkaISZ08,https://doi.org/10.1002/malq.200890002 +Michel Hébert,"Corrections to ""preservation and interpolation through binary relations between theories"".",1990,36,Math. Log. Q.,6,db/journals/mlq/mlq36.html#Hebert90,https://doi.org/10.1002/malq.19900360609 +Janak Ramakrishnan,Definably extending partial orders in totally ordered structures.,2014,60,Math. Log. Q.,3,db/journals/mlq/mlq60.html#RamakrishnanS14,https://doi.org/10.1002/malq.201300047 +Daniel Gluschankof,The Elementary Classes of Direct and Boolean Products.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Gluschankof94,https://doi.org/10.1002/malq.19940400206 +,,,,,,, +,,,,,,, +Edith Elkind,A Tractable and Expressive Class of Marginal Contribution Nets and Its Applications.,2009,55,Math. Log. Q.,4,db/journals/mlq/mlq55.html#ElkindGGW09,https://doi.org/10.1002/malq.200810021 +,,,,,,, +Martin Weese,Entscheidbarkeit in Speziellen Uniformen Strukturen Bezüglich Sprachen Mit Mächtigkeitsquantoren.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Weese76,https://doi.org/10.1002/malq.19760220130 +Klaus Denecke,Algebraische Eigenschaften Eines Funktional Unvollständigen Dreiwertigen Aussagenkalküls.,1988,34,Math. Log. Q.,2,db/journals/mlq/mlq34.html#Denecke88,https://doi.org/10.1002/malq.19880340210 +,,,,,,, +Mai Gehrke,Some nonstandard methods applied to distributive lattices.,1990,36,Math. Log. Q.,2,db/journals/mlq/mlq36.html#GehrkeIK90,https://doi.org/10.1002/malq.19900360205 +Arthur W. Apter,Failures of GCH and the level by level equivalence between strong compactness and supercompactness.,2003,49,Math. Log. Q.,6,db/journals/mlq/mlq49.html#Apter03a,https://doi.org/10.1002/malq.200310064 +Bernhard Banaschewski,Excluded Middle versus Choice in a topos.,2005,51,Math. Log. Q.,3,db/journals/mlq/mlq51.html#Banaschewski05,https://doi.org/10.1002/malq.200410029 +,,,,,,, +,,,,,,, +Daniel Abraham Romano,Construction of a Coideal of a Ring Compatible with a Principal Ideal.,1989,35,Math. Log. Q.,2,db/journals/mlq/mlq35.html#Romano89,https://doi.org/10.1002/malq.19890350207 +Erik Palmgren,The Friedman-Translation for Martin-Löf's Type Theory.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#Palmgren95,https://doi.org/10.1002/malq.19950410304 +Jean Guillaume Hagendorf,Restriction Respectueuse et Reconstruction des chaines et des Relations Infinites.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Hagendorf92,https://doi.org/10.1002/malq.19920380143 +Narciso N. García,A Theory of Operations on the Universe I. The Theory of Iteration and F-Ordinals.,1991,37,Math. Log. Q.,25,db/journals/mlq/mlq37.html#Garcia91,https://doi.org/10.1002/malq.19910372502 +Roland Hinnion,Ramifiable Directed Sets.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#Hinnion98,https://doi.org/10.1002/malq.19980440208 +Herwig Nübling,The polynomial hierarchy for some structures over the binary words.,2007,53,Math. Log. Q.,1,db/journals/mlq/mlq53.html#Nubling07,https://doi.org/10.1002/malq.200610025 +,,,,,,, +Costas Dimitracopoulos,A Note on a Theorem of H. FRIEDMAN.,1988,34,Math. Log. Q.,1,db/journals/mlq/mlq34.html#Dimitracopoulos88,https://doi.org/10.1002/malq.19880340103 +Andrzej Orlicki,χ9*-Operations over Partial Enumerated Sets.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Orlicki93a,https://doi.org/10.1002/malq.19930390157 +Josep Maria Font,"Correction to ""Some Remarks on Heyting Matrices"".",1988,34,Math. Log. Q.,3,db/journals/mlq/mlq34.html#Font88,https://doi.org/10.1002/malq.19880340313 +Enrique Casanovas,Some remarks on indiscernible sequences.,2003,49,Math. Log. Q.,5,db/journals/mlq/mlq49.html#Casanovas03,https://doi.org/10.1002/malq.200310051 +John Williamson,The Complete Axiomatisation of any Many-Valued Propositional Logic.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Williamson76,https://doi.org/10.1002/malq.19760220140 +Bernhard König,Winning strategies in club games and their applications.,2011,57,Math. Log. Q.,1,db/journals/mlq/mlq57.html#Konig11,https://doi.org/10.1002/malq.200910119 +Carlos A. Di Prisco,The normal depth of filters on an infinite cardinal.,1990,36,Math. Log. Q.,4,db/journals/mlq/mlq36.html#PriscoFH90,https://doi.org/10.1002/malq.19900360404 +Gábor Sági,Ultratopologies.,2004,50,Math. Log. Q.,6,db/journals/mlq/mlq50.html#SagiG04,https://doi.org/10.1002/malq.200310123 +Bin He,A high dimensional Open Coloring Axiom.,2005,51,Math. Log. Q.,5,db/journals/mlq/mlq51.html#He05,https://doi.org/10.1002/malq.200510003 +Andrea Sorbi,A Note on Relative Efficiency of Axiom Systems.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#SorbiFM94,https://doi.org/10.1002/malq.19940400211 +Karim Nour,A General Type for Storage Operators.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#Nour95,https://doi.org/10.1002/malq.19950410407 +,,,,,,, +,,,,,,, +Michael Rathjen,A note on Bar Induction in Constructive Set Theory.,2006,52,Math. Log. Q.,3,db/journals/mlq/mlq52.html#Rathjen06,https://doi.org/10.1002/malq.200510030 +Roman Wencel,On the strong cell decomposition property for weakly o-minimal structures.,2013,59,Math. Log. Q.,6,db/journals/mlq/mlq59.html#Wencel13,https://doi.org/10.1002/malq.201200016 +,,,,,,, +Christian Maurer,Ein Rekursiv Definiertes Geordnetes Paar.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Maurer76,https://doi.org/10.1002/malq.19760220129 +Klaus Kaiser,On Complementedly Normal Lattices II: Extensions.,1984,30,Math. Log. Q.,36,db/journals/mlq/mlq30.html#Kaiser84,https://doi.org/10.1002/malq.19840303603 +Jakob Grue Simonsen,Specker sequences revisited.,2005,51,Math. Log. Q.,5,db/journals/mlq/mlq51.html#Simonsen05,https://doi.org/10.1002/malq.200410048 +Kuanysh Abeshev,On the existence of universal numberings for finite families of d.c.e. sets.,2014,60,Math. Log. Q.,3,db/journals/mlq/mlq60.html#Abeshev14,https://doi.org/10.1002/malq.201200045 +Pierre Matet,A partition property of a mixed type for Pkappa(lambda).,2003,49,Math. Log. Q.,6,db/journals/mlq/mlq49.html#Matet03,https://doi.org/10.1002/malq.200310067 +,,,,,,, +Kees Trautwein,Non-associative Lambek Categorial Grammar in Polynomial Time.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#TrautweinA95,https://doi.org/10.1002/malq.19950410405 +Renato A. Lewin,Literal-paraconsistent and literal-paracomplete matrices.,2006,52,Math. Log. Q.,5,db/journals/mlq/mlq52.html#LewinM06,https://doi.org/10.1002/malq.200510044 +Rostislav Horcík,On n-contractive fuzzy logics.,2007,53,Math. Log. Q.,3,db/journals/mlq/mlq53.html#HorcikNP07,https://doi.org/10.1002/malq.200610044 +Iraj Kalantari,When series of computable functions with varying domains are computable.,2013,59,Math. Log. Q.,6,db/journals/mlq/mlq59.html#KalantariW13,https://doi.org/10.1002/malq.201200053 +,,,,,,, +,,,,,,, +,,,,,,, +Dietmar Schuchardt,Two NP-Hard Art-Gallery Problems for Ortho-Polygons.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#SchuchardtH95,https://doi.org/10.1002/malq.19950410212 +C. T. Chong,∗1*1-Density and Turing Degrees.,1987,33,Math. Log. Q.,2,db/journals/mlq/mlq33.html#Chong87,https://doi.org/10.1002/malq.19870330209 +Alexander Abian,On the standard-model hypothesis of ZF.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Abian75,https://doi.org/10.1002/malq.19750210111 +Panagiotis Rouvelas,Decreasing sentences in Simple Type Theory.,2017,63,Math. Log. Q.,5,db/journals/mlq/mlq63.html#Rouvelas17,https://doi.org/10.1002/malq.201500093 +Olivier Chapuis,Definability of Geometric Properties in Algebraically Closed Fields.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#ChapuisK99,https://doi.org/10.1002/malq.19990450411 +Emanuele Frittaion,Linear extensions of partial orders and reverse mathematics.,2012,58,Math. Log. Q.,6,db/journals/mlq/mlq58.html#FrittaionM12,https://doi.org/10.1002/malq.201200025 +,,,,,,, +Christopher J. Ash,Recursive Structures and Ershov's Hierarchy.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#AshK96,https://doi.org/10.1002/malq.19960420138 +Douglas S. Bridges,Geometric Intuition and Elementary Constructive Analysis.,1979,25,Math. Log. Q.,33,db/journals/mlq/mlq25.html#Bridges79b,https://doi.org/10.1002/malq.19790253303 +Athanossios Tzouvaras,Positive set-operators of low complexity.,2003,49,Math. Log. Q.,3,db/journals/mlq/mlq49.html#Tzouvaras03,https://doi.org/10.1002/malq.200310028 +Makoto Takahashi,pi-short Boolean algebras.,2003,49,Math. Log. Q.,6,db/journals/mlq/mlq49.html#TakahashiY03,https://doi.org/10.1002/malq.200310058 +Ivor Grattan-Guinness,Fuzzy Membership Mapped onto Intervals and Many-Valued Quantities.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Grattan-Guinness76,https://doi.org/10.1002/malq.19760220120 +Norihiro Kamide,On a logic of involutive quantales.,2005,51,Math. Log. Q.,6,db/journals/mlq/mlq51.html#Kamide05a,https://doi.org/10.1002/malq.200410049 +Zofia Kostrzycka,On non-compact logics in NEXT(KTB).,2008,54,Math. Log. Q.,6,db/journals/mlq/mlq54.html#Kostrzycka08,https://doi.org/10.1002/malq.200710056 +D. A. Anapolitanos,Automorphisms of Finite Order.,1979,25,Math. Log. Q.,33,db/journals/mlq/mlq25.html#Anapolitanos79,https://doi.org/10.1002/malq.19790253308 +Marie-Hélène Mourgues,Cell decomposition for P-minimal fields.,2009,55,Math. Log. Q.,5,db/journals/mlq/mlq55.html#Mourgues09,https://doi.org/10.1002/malq.200810009 +,,,,,,, +Masayuki Karato,A Tukey decomposition of Pkappalambda and the tree property for directed sets.,2005,51,Math. Log. Q.,3,db/journals/mlq/mlq51.html#Karato05,https://doi.org/10.1002/malq.200410033 +Katsumasa Ishii,A note on the first incompleteness theorem.,2003,49,Math. Log. Q.,2,db/journals/mlq/mlq49.html#Ishii03,https://doi.org/10.1002/malq.200310021 +Phil Watson,Embeddings in the Strong Reducibilities Between 1 and npm.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Watson97,https://doi.org/10.1002/malq.19970430411 +Stephen M. Walk,Lattice embeddings and array noncomputable degrees.,2004,50,Math. Log. Q.,3,db/journals/mlq/mlq50.html#Walk04,https://doi.org/10.1002/malq.200310092 +,,,,,,, +Thomas G. McLaughlin,Trees and Isols II.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#McLaughlin76,https://doi.org/10.1002/malq.19760220106 +Quentin Brouette,On differential Galois groups of strongly normal extensions.,2018,64,Math. Log. Q.,3,db/journals/mlq/mlq64.html#BrouetteP18,https://doi.org/10.1002/malq.201600098 +,,,,,,, +Alexander P. Kreuzer,From Bolzano-Weierstraß to Arzelà-Ascoli.,2014,60,Math. Log. Q.,3,db/journals/mlq/mlq60.html#Kreuzer14,https://doi.org/10.1002/malq.201200076 +Heinrich Rolletschek,Some New Lattice Constructions in High R. E. Degrees.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#Rolletschek95,https://doi.org/10.1002/malq.19950410311 +Jirí Hanika,Herbrandizing search problems in Bounded Arithmetic.,2004,50,Math. Log. Q.,6,db/journals/mlq/mlq50.html#Hanika04,https://doi.org/10.1002/malq.200410005 +Paul D. Humke,The Baire category of sets of access.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Humke75,https://doi.org/10.1002/malq.19750210140 +J. W. Degen,There Can Be a Permutation Which Is Not The Product of Two Reflections.,1988,34,Math. Log. Q.,1,db/journals/mlq/mlq34.html#Degen88,https://doi.org/10.1002/malq.19880340108 +Akihiro Kanamori,The complete 0†.,1990,36,Math. Log. Q.,2,db/journals/mlq/mlq36.html#KanamoriA90,https://doi.org/10.1002/malq.19900360206 +Bernhard König,Dense subtrees in complete Boolean algebras.,2006,52,Math. Log. Q.,3,db/journals/mlq/mlq52.html#Konig06,https://doi.org/10.1002/malq.200510033 +Henryk Kotlarski,Automorphisms of Countable Recursively Saturated Models of PA: Open Subgroups and Invariant Cuts.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#KotlarskiP95,https://doi.org/10.1002/malq.19950410112 +Jeffry L. Hirst,Reverse Mathematics and Ordinal Multiplication.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#Hirst98,https://doi.org/10.1002/malq.19980440404 +Silvio Valentini,Decidability in Intuitionistic Type Theory is Functionally Decidable.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#Valentini96,https://doi.org/10.1002/malq.19960420125 +Sandra Marques Pinto,Monadic dynamic algebras.,2006,52,Math. Log. Q.,2,db/journals/mlq/mlq52.html#PintoOP06,https://doi.org/10.1002/malq.200510022 +Arthur W. Apter,Reducing the consistency strength of an indestructibility theorem.,2008,54,Math. Log. Q.,3,db/journals/mlq/mlq54.html#Apter08,https://doi.org/10.1002/malq.200710037 +Vladimir Kanovei,On effective ω3*-boundedness and ω3*-compactness.,2013,59,Math. Log. Q.,3,db/journals/mlq/mlq59.html#KanoveiL13,https://doi.org/10.1002/malq.201200001 +Tatsuya Shimura,Cut-Elimination Theorem for the Logic of Constant Domains.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#ShimuraK94,https://doi.org/10.1002/malq.19940400203 +Franco Parlamento,The Decision Problem for Restricted Universal Quantification in Set Theory and the Axiom of Foundation.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#ParlamentoP92,https://doi.org/10.1002/malq.19920380110 +Michael Rathjen,On the regular extension axiom and its variants.,2003,49,Math. Log. Q.,5,db/journals/mlq/mlq49.html#RathjenL03,https://doi.org/10.1002/malq.200310054 +Morteza Moniri,Polynomial induction and length minimization in intuitionistic bounded arithmetic.,2005,51,Math. Log. Q.,1,db/journals/mlq/mlq51.html#Moniri05,https://doi.org/10.1002/malq.200410008 +,,,,,,, +,,,,,,, +Patrizio Cintioli,Low sets without subsets of higher many-one degree.,2011,57,Math. Log. Q.,5,db/journals/mlq/mlq57.html#Cintioli11,https://doi.org/10.1002/malq.200920043 +Luis Miguel Villegas-Silva,A gap 1 cardinal transfer theorem.,2006,52,Math. Log. Q.,4,db/journals/mlq/mlq52.html#Villegas-Silva06,https://doi.org/10.1002/malq.200510038 +,,,,,,, +James M. Henle,Filters for Square-Bracket Partition Relations.,1984,30,Math. Log. Q.,12,db/journals/mlq/mlq30.html#HenleKK84,https://doi.org/10.1002/malq.19840301203 +,,,,,,, +Thilo Weinert,The Bounded Axiom A Forcing Axiom.,2010,56,Math. Log. Q.,6,db/journals/mlq/mlq56.html#Weinert10,https://doi.org/10.1002/malq.200810163 +,,,,,,, +Ian Pratt-Hartmann,The two-variable fragment with counting and equivalence.,2015,61,Math. Log. Q.,6,db/journals/mlq/mlq61.html#Pratt-Hartmann15,https://doi.org/10.1002/malq.201400102 +Martin M. Zuckerman,Products of 3 or 4 Ordinals.,1988,34,Math. Log. Q.,3,db/journals/mlq/mlq34.html#Zuckerman88,https://doi.org/10.1002/malq.19880340303 +Teresa Bigorajska,Universal Induction and True Universal Arithmetic.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Bigorajska94,https://doi.org/10.1002/malq.19940400114 +,,,,,,, +,,,,,,, +Henri Lombardi,Comparison of Picard groups in dimension 1.,2008,54,Math. Log. Q.,3,db/journals/mlq/mlq54.html#LombardiQ08,https://doi.org/10.1002/malq.200710051 +Eugenio G. Omodeo,Decidability of and#8707**∀*-Sentences in Membership Theories.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#OmodeoPP96,https://doi.org/10.1002/malq.19960420105 +,,,,,,, +Marcus Kracht,Prefinitely Axiomatizable Modal and Intermediate Logics.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Kracht93,https://doi.org/10.1002/malq.19930390136 +,,,,,,, +,,,,,,, +Paul E. Howard,The Existence of Level Sets in a Free Group Implies the Axiom of Choice.,1987,33,Math. Log. Q.,4,db/journals/mlq/mlq33.html#Howard87,https://doi.org/10.1002/malq.19870330406 +,,,,,,, +Xiaokang Yu,Lebesgue Convergence Theorems and Reverse Mathematics.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Yu94,https://doi.org/10.1002/malq.19940400102 +Vladimir Ristic,Biprobability logic with conditional expectation.,2011,57,Math. Log. Q.,4,db/journals/mlq/mlq57.html#RisticDI11,https://doi.org/10.1002/malq.201010018 +Daniel R. Vanderveken,A formal definition of the set of the logical connectors of pragmatics.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Vanderveken76,https://doi.org/10.1002/malq.19760220160 +Virginie Mazoyer,Polygones.,2004,50,Math. Log. Q.,2,db/journals/mlq/mlq50.html#Mazoyer04,https://doi.org/10.1002/malq.200310085 +Douglas Cenzer,Minimal extensions of Pi01 classes.,2005,51,Math. Log. Q.,2,db/journals/mlq/mlq51.html#CenzerR05,https://doi.org/10.1002/malq.200410021 +Esfandiar Eslami,Shelah's strong covering property and CH in V[r].,2012,58,Math. Log. Q.,3,db/journals/mlq/mlq58.html#EslamiG12,https://doi.org/10.1002/malq.201100050 +Klaus Denecke,Squares of Primal Algebras.,1987,33,Math. Log. Q.,1,db/journals/mlq/mlq33.html#Denecke87,https://doi.org/10.1002/malq.19870330109 +,,,,,,, +,,,,,,, +,,,,,,, +Emil Jerábek,Simulating non-prenex cuts in quantified propositional calculus.,2011,57,Math. Log. Q.,5,db/journals/mlq/mlq57.html#JerabekN11,https://doi.org/10.1002/malq.201020093 +Rodney G. Downey,Effective Extensions of Linear Forms on a Recursive Vector Space Over a Recursive Field.,1985,31,Math. Log. Q.,13,db/journals/mlq/mlq31.html#DowneyK85,https://doi.org/10.1002/malq.19850311302 +John C. Shepherdson,On the Definition of Computable Function of a Real Variable.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Shepherdson76,https://doi.org/10.1002/malq.19760220148 +Olivier Finkel,On some sets of dictionaries whose omega -powers have a given.,2010,56,Math. Log. Q.,5,db/journals/mlq/mlq56.html#Finkel10,https://doi.org/10.1002/malq.200810154 +,,,,,,, +Hugues Leblanc,Probabilistic Semantics for First-Order Logic.,1979,25,Math. Log. Q.,32,db/journals/mlq/mlq25.html#Leblanc79,https://doi.org/10.1002/malq.19790253202 +Jürgen Hauck,Konstruktive Darstellungen in Topologischen Räumen mit Rekursiver Basis.,1980,26,Math. Log. Q.,36,db/journals/mlq/mlq26.html#Hauck80a,https://doi.org/10.1002/malq.19800263603 +Michael Deutsch 0001,Zur Benutzung der Verkettung als Basis für die Arithmetik.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Deutsch75,https://doi.org/10.1002/malq.19750210120 +,,,,,,, +Valeriy K. Bulitko,On existence of complete sets for bounded reducibilities.,2003,49,Math. Log. Q.,6,db/journals/mlq/mlq49.html#BulitkoB03,https://doi.org/10.1002/malq.200310061 +Arthur L. Rubin,Weak Forms of the Axiom of Choke and the Generalized Continuum Hypothesis.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#RubinR93,https://doi.org/10.1002/malq.19930390104 +André Nies,Recursively Enumerable Equivalence Relations Modulo Finite Differences.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Nies94,https://doi.org/10.1002/malq.19940400407 +,,,,,,, +Norihiro Kamide,A spatial modal logic with a location interpretation.,2005,51,Math. Log. Q.,4,db/journals/mlq/mlq51.html#Kamide05,https://doi.org/10.1002/malq.200510001 +Miklós Ferenczi,Existence of partial transposition means representability in cylindric algebras.,2011,57,Math. Log. Q.,1,db/journals/mlq/mlq57.html#Ferenczi11,https://doi.org/10.1002/malq.200910120 +,,,,,,, +Zdzislaw Dywan,On a Method of Axiomatization of Some Propositional Calculi.,1987,33,Math. Log. Q.,1,db/journals/mlq/mlq33.html#Dywan87,https://doi.org/10.1002/malq.19870330108 +Frieder Haug,On Preservation of Stability for Finite Extensions of Abelian Groups.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Haug94,https://doi.org/10.1002/malq.19940400103 +Victor Pambuccian,Ternary Operations as Primitive Notions for Constructive Plane Geometry.,1989,35,Math. Log. Q.,6,db/journals/mlq/mlq35.html#Pambuccian89,https://doi.org/10.1002/malq.19890350608 +,,,,,,, +Kyriakos Keremedis,Partition Reals and the Consistency of t and gt add(R).,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Keremedis93,https://doi.org/10.1002/malq.19930390156 +,,,,,,, +Douglas A. Cenzer,Index sets for omega-languages.,2003,49,Math. Log. Q.,1,db/journals/mlq/mlq49.html#CzenzerR03,https://doi.org/10.1002/malq.200310002 +,,,,,,, +Gerhard Lischke,Natürliche Kompliziertheitsmasze und Erhaltungssätze I.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Lischke76,https://doi.org/10.1002/malq.19760220150 +Robert Ralowski,Remarks on nonmeasurable unions of big point families.,2009,55,Math. Log. Q.,6,db/journals/mlq/mlq55.html#Ralowski09,https://doi.org/10.1002/malq.200810014 +Thomas G. McLaughlin,Some observations on the substructure lattice of a Delta1 ultrapower.,2010,56,Math. Log. Q.,3,db/journals/mlq/mlq56.html#McLaughlin10,https://doi.org/10.1002/malq.200810052 +John Case,Rice and Rice-Shapiro Theorems for transfinite correction grammars.,2011,57,Math. Log. Q.,5,db/journals/mlq/mlq57.html#CaseJ11,https://doi.org/10.1002/malq.201020054 +Heinrich Wansing,Bemerkungen Zur Semantik Nicht-Normaler Möglicher Welten.,1989,35,Math. Log. Q.,6,db/journals/mlq/mlq35.html#Wansing89,https://doi.org/10.1002/malq.19890350611 +,,,,,,, +Emil Jerábek,Proofs with monotone cuts.,2012,58,Math. Log. Q.,3,db/journals/mlq/mlq58.html#Jerabek12,https://doi.org/10.1002/malq.201020071 +M. B. Thuraisingham,Representation of One-One Degrees by n-Cylindrical Decision Problems.,1988,34,Math. Log. Q.,6,db/journals/mlq/mlq34.html#Thuraisingham88,https://doi.org/10.1002/malq.19880340602 +,,,,,,, +Philipp Rothmaler,Stationary Types in Moduless.,1983,29,Math. Log. Q.,8,db/journals/mlq/mlq29.html#Rothmaler83,https://doi.org/10.1002/malq.19830290805 +,,,,,,, +Edward Hermann Haeusler,A Concrete Categorical Model for the Lambek Syntactic Calculus.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#HaeuslerC97,https://doi.org/10.1002/malq.19970430107 +Yungchen Cheng,Representation of Posets.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#ChengK92,https://doi.org/10.1002/malq.19920380122 +Paul Goodyear,Double Enlargements of Topological Spaces.,1984,30,Math. Log. Q.,25,db/journals/mlq/mlq30.html#Goodyear84,https://doi.org/10.1002/malq.19840302503 +George Tourlakis,Recursion in Partial Type-1 Objects With Well-Behaved Oracles.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#Tourlakis96,https://doi.org/10.1002/malq.19960420137 +Newton C. A. da Costa,α Logic and Infinitary Languages.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#CostaP76,https://doi.org/10.1002/malq.19760220112 +Shih Ping Tung,Definability on Formulas With Single Quantifier.,1988,34,Math. Log. Q.,2,db/journals/mlq/mlq34.html#Tung88,https://doi.org/10.1002/malq.19880340203 +Dario Maguolo,An Intuitionistic Version of Cantor's Theorem.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#MaguoloV96,https://doi.org/10.1002/malq.19960420136 +Zvonimir Sikic,Premiss tree proofs and logic of contradiction.,1990,36,Math. Log. Q.,3,db/journals/mlq/mlq36.html#Sikic90,https://doi.org/10.1002/malq.19900360312 +,,,,,,, +Olaf Beyersdorff,On the correspondence between arithmetic theories and propositional proof systems - a survey.,2009,55,Math. Log. Q.,2,db/journals/mlq/mlq55.html#Beyersdorff09,https://doi.org/10.1002/malq.200710069 +Tarek Sayed Ahmed,A simple construction of representable relation algebras with non-representable completions.,2009,55,Math. Log. Q.,3,db/journals/mlq/mlq55.html#Ahmed09,https://doi.org/10.1002/malq.200710075 +Arthur W. Apter,Tallness and level by level equivalence and inequivalence.,2010,56,Math. Log. Q.,1,db/journals/mlq/mlq56.html#Apter10,https://doi.org/10.1002/malq.200810039 +Thierry Coquand,A constructive proof of the Peter-Weyl theorem.,2005,51,Math. Log. Q.,4,db/journals/mlq/mlq51.html#CoquandS05,https://doi.org/10.1002/malq.200410037 +,,,,,,, +Kyriakos Kontostathis,Topological Framework for Finite Injury.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Kontostathis92,https://doi.org/10.1002/malq.19920380114 +Graciela Domenech,Modal-type orthomodular logic.,2009,55,Math. Log. Q.,3,db/journals/mlq/mlq55.html#DomenechFR09,https://doi.org/10.1002/malq.200710088 +Florian Pelupessy,Reverse mathematics of the finite downwards closed subsets of ordered by inclusion and adjacent Ramsey for fixed dimension.,2018,64,Math. Log. Q.,3,db/journals/mlq/mlq64.html#Pelupessy18,https://doi.org/10.1002/malq.201700040 +Dietrich Schwartz,Das Homomorphietheorem für MV-Algebren Endlicher Ordnung.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Schwartz76,https://doi.org/10.1002/malq.19760220119 +,,,,,,, +George Voutsadakis,Categorical abstract algebraic logic: Gentzen pi -institutions and the deduction-detachment property.,2005,51,Math. Log. Q.,6,db/journals/mlq/mlq51.html#Voutsadakis05,https://doi.org/10.1002/malq.200310132 +Vladimir Kanovei,A theorem on ROD-hypersmooth equivalence relations in the Solovay model.,2003,49,Math. Log. Q.,3,db/journals/mlq/mlq49.html#KanoveiR03,https://doi.org/10.1002/malq.200310030 +Frank Stephan 0001,A Cohesive Set which is not High.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#StephanJ93,https://doi.org/10.1002/malq.19930390153 +Giulia Frosoni,Conuclear images of substructural logics.,2016,62,Math. Log. Q.,3,db/journals/mlq/mlq62.html#Frosoni16,https://doi.org/10.1002/malq.201400074 +Françoise Point,Existentially closed ordered difference fields and rings.,2010,56,Math. Log. Q.,3,db/journals/mlq/mlq56.html#Point10,https://doi.org/10.1002/malq.200910007 +David W. H. Gillam,Relatively Complete Theories.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Gillam76,https://doi.org/10.1002/malq.19760220133 +Jürgen Hauck,Konstruktive reelle funktionale und Operatoren.,1983,29,Math. Log. Q.,4,db/journals/mlq/mlq29.html#Hauck83,https://doi.org/10.1002/malq.19830290407 +,,,,,,, +Pierre Matet,Some Aspects of n-Subtlety.,1988,34,Math. Log. Q.,2,db/journals/mlq/mlq34.html#Matet88,https://doi.org/10.1002/malq.19880340211 +Mahya Malekghasemi,Maximality of linear continuous logic.,2018,64,Math. Log. Q.,3,db/journals/mlq/mlq64.html#MalekghasemiB18,https://doi.org/10.1002/malq.201600081 +Joan Gispert,Bounded BCK-algebras and their generated variety.,2007,53,Math. Log. Q.,2,db/journals/mlq/mlq53.html#GispertT07,https://doi.org/10.1002/malq.200610040 +John L. Bell,Polymodal Lattices and Polymodal Logic.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#Bell96,https://doi.org/10.1002/malq.19960420119 +,,,,,,, +Marta Sagastume,The logic Ł•.,2014,60,Math. Log. Q.,6,db/journals/mlq/mlq60.html#SagastumeM14,https://doi.org/10.1002/malq.201200105 +Chanoch Havlin,Existence of EF-equivalent non-isomorphic models.,2007,53,Math. Log. Q.,2,db/journals/mlq/mlq53.html#HavlinS07,https://doi.org/10.1002/malq.200610031 +Williams Kramer Forrest,The Theory of Affine Constructible Sets.,1983,29,Math. Log. Q.,3,db/journals/mlq/mlq29.html#Forrest83,https://doi.org/10.1002/malq.19830290302 +Saharon Shelah,Groupwise density cannot be much bigger than the unbounded number.,2008,54,Math. Log. Q.,4,db/journals/mlq/mlq54.html#Shelah08,https://doi.org/10.1002/malq.200710032 +Noriya Kadota,On Wainer's Notation for a Minimal Subrecursive Inaccessible Ordinal.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Kadota93,https://doi.org/10.1002/malq.19930390125 +Akihiro Kanamori,Mathias and set theory.,2016,62,Math. Log. Q.,3,db/journals/mlq/mlq62.html#Kanamori16,https://doi.org/10.1002/malq.201500072 +,,,,,,, +Bernd I. Dahn,On the Theory of exponential Fields.,1983,29,Math. Log. Q.,9,db/journals/mlq/mlq29.html#DahnW83,https://doi.org/10.1002/malq.19830290902 +Arthur W. Apter,A Cardinal Pattern Inspired by AD.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#Apter96,https://doi.org/10.1002/malq.19960420118 +Steven S. Muchnick,The Vectorized Grzegorczyk Hierarchy.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Muchnick76,https://doi.org/10.1002/malq.19760220156 +Martin Kühnrich,Eine äQuivalente Formalisierung der Logik von Feferman und Aczel.,1983,29,Math. Log. Q.,11,db/journals/mlq/mlq29.html#Kuhnrich83,https://doi.org/10.1002/malq.19830291103 +Peter H. Starke,Entscheidungsprobleme für Autonome Mehrbandautomaten.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Starke76,https://doi.org/10.1002/malq.19760220118 +,,,,,,, +Andreas Baudisch,Die Elementare Theorie der Gruppe vom Typ p∞ mit Untergruppen.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Baudisch75,https://doi.org/10.1002/malq.19750210142 +,,,,,,, +K. Subramani,On deciding the non-emptiness of 2SAT polytopes with respect to First Order Queries.,2004,50,Math. Log. Q.,3,db/journals/mlq/mlq50.html#Subramani04,https://doi.org/10.1002/malq.200310099 +Silvio Valentini,The Judgement Calculus for Intuitionistic Linear Logic: Proof Theory and Semantics.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Valentini92,https://doi.org/10.1002/malq.19920380105 +Ronald Fagin,Comparing the Power of Games on Graphs.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Fagin97,https://doi.org/10.1002/malq.19970430402 +Daniel Dzierzgowski,Constants in Kripke Models for Intuitionistic Logic.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#Dzierzgowski95,https://doi.org/10.1002/malq.19950410402 +,,,,,,, +Andrea Cantini,Two Impredicative Theories of Properties and Sets.,1988,34,Math. Log. Q.,5,db/journals/mlq/mlq34.html#Cantini88,https://doi.org/10.1002/malq.19880340505 +,,,,,,, +Nicholas Bamber,On Interstices of Countable Arithmetically Saturated Models of Peano Arithmetic.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#BamberK97,https://doi.org/10.1002/malq.19970430408 +Silvio Valentini,Representation Theorems for Quantales.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Valentini94,https://doi.org/10.1002/malq.19940400205 +,,,,,,, +Douglas S. Bridges,Weak-operator Continuity and the Existence Of Adjoints.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#BridgesD99,https://doi.org/10.1002/malq.19990450205 +Decheng Ding,Discontinuity of Cappings in the Recursively Enumerable Degrees and Strongly Nonbranching Degrees.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#DingA94,https://doi.org/10.1002/malq.19940400302 +Timothy McNicholl,Effective embeddings into strong degree structures.,2003,49,Math. Log. Q.,3,db/journals/mlq/mlq49.html#McNicholl03,https://doi.org/10.1002/malq.200310022 +Karl-Heinz Diener,On the Predecessor Relation in Abstract Algebras.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Diener93,https://doi.org/10.1002/malq.19930390152 +,,,,,,, +Jan Ekman,Propositions in Prepositional Logic Provable Only by Indirect Proofs.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#Ekman98,https://doi.org/10.1002/malq.19980440105 +Yoshihiro Abe,Combinatorics for Small Ideals on Pkλ*.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Abe97,https://doi.org/10.1002/malq.19970430409 +Roger D. Maddux,Finitary Algebraic Logic II.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Maddux93,https://doi.org/10.1002/malq.19930390159 +Mircea-Dan Hernest,Light monotone Dialectica methods for proof mining.,2009,55,Math. Log. Q.,5,db/journals/mlq/mlq55.html#Hernest09,https://doi.org/10.1002/malq.200710093 +Silvio Ghilardi,Modal logics with n-ary connectives.,1990,36,Math. Log. Q.,3,db/journals/mlq/mlq36.html#GhilardiM90,https://doi.org/10.1002/malq.19900360303 +John Case,Effectivizing Inseparability.,1991,37,Math. Log. Q.,7,db/journals/mlq/mlq37.html#Case91,https://doi.org/10.1002/malq.19910370702 +,,,,,,, +Andrzej Roslanowski,How much sweetness is there in the universe?,2006,52,Math. Log. Q.,1,db/journals/mlq/mlq52.html#RoslanowskiS06,https://doi.org/10.1002/malq.200410056 +Katsumasa Ishii,A note on decidability of variables in intuitionistic propositional logic.,2018,64,Math. Log. Q.,3,db/journals/mlq/mlq64.html#Ishii18,https://doi.org/10.1002/malq.201700004 +Marianne Morillon,James sequences and Dependent Choices.,2005,51,Math. Log. Q.,2,db/journals/mlq/mlq51.html#Morillon05,https://doi.org/10.1002/malq.200410017 +Tarek Sayed Ahmed,The class of polyadic algebras has the super amalgamation property.,2010,56,Math. Log. Q.,1,db/journals/mlq/mlq56.html#Ahmed10,https://doi.org/10.1002/malq.200810040 +,,,,,,, +Toshiyasu Arai,Non-elementary speed-ups in logic calculi.,2008,54,Math. Log. Q.,6,db/journals/mlq/mlq54.html#Arai08,https://doi.org/10.1002/malq.200710067 +,,,,,,, +,,,,,,, +,,,,,,, +Makoto Fujiwara,On the strength of marriage theorems and uniformity.,2014,60,Math. Log. Q.,3,db/journals/mlq/mlq60.html#FujiwaraHK14,https://doi.org/10.1002/malq.201300021 +Leila Z. Puga,On The Imaginary Logic of N. A. VASILIEV.,1988,34,Math. Log. Q.,3,db/journals/mlq/mlq34.html#PugaC88,https://doi.org/10.1002/malq.19880340304 +Jan Kraszewski,Bernstein sets and kappa -coverings.,2010,56,Math. Log. Q.,2,db/journals/mlq/mlq56.html#KraszewskiRSZ10,https://doi.org/10.1002/malq.200910008 +Lutz Heindorf,Regular ideals and Boolean Pairs.,1984,30,Math. Log. Q.,35,db/journals/mlq/mlq30.html#Heindorf84a,https://doi.org/10.1002/malq.19840303504 +,,,,,,, +Alexander Leitsch,On Different Concepts of Resolution.,1989,35,Math. Log. Q.,1,db/journals/mlq/mlq35.html#Leitsch89,https://doi.org/10.1002/malq.19890350109 +Peter Zahn,A Predicative Approach to Nonstandard Mathematics.,1987,33,Math. Log. Q.,1,db/journals/mlq/mlq33.html#Zahn87,https://doi.org/10.1002/malq.19870330111 +Jun Li,On Remainder Equations.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Li97,https://doi.org/10.1002/malq.19970430308 +Manuel Lerman,Computable choice functions for computable linear orderings.,2003,49,Math. Log. Q.,5,db/journals/mlq/mlq49.html#LermanW03,https://doi.org/10.1002/malq.200310053 +Saeed Salehi,Provably total functions of Basic Arithmetic.,2003,49,Math. Log. Q.,3,db/journals/mlq/mlq49.html#Salehi03,https://doi.org/10.1002/malq.200310032 +Dolph Ulrich,Answer to a Question Suggested by Schumm.,1984,30,Math. Log. Q.,25,db/journals/mlq/mlq30.html#Ulrich84,https://doi.org/10.1002/malq.19840302502 +Klaus Meer,On the Relations Between Discrete and Continuous Complexity Theory.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#Meer95,https://doi.org/10.1002/malq.19950410214 +Paul Howard,The finiteness of compact Boolean algebras.,2011,57,Math. Log. Q.,1,db/journals/mlq/mlq57.html#Howard11,https://doi.org/10.1002/malq.201010002 +Armin Hemmerling,Günter Asser (1926-2015).,2015,61,Math. Log. Q.,3,db/journals/mlq/mlq61.html#Hemmerling15,https://doi.org/10.1002/malq.201539999 +Peter Zahn,A Nonstandard Delta Function in a Predicative Theory.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#Zahn95,https://doi.org/10.1002/malq.19950410211 +James H. Schmerl,Substructure lattices and almost minimal end extensions of models of Peano arithmetic.,2004,50,Math. Log. Q.,6,db/journals/mlq/mlq50.html#Schmerl04,https://doi.org/10.1002/malq.200310118 +Atwell R. Turquette,Minimal Axioms for Peirce's Triadic Logic.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Turquette76,https://doi.org/10.1002/malq.19760220123 +Andrey A. Kuzichev,Elimination of Quantifiers over Vectors in Some Theories of Vector Spaces.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Kuzichev92a,https://doi.org/10.1002/malq.19920380155 +,,,,,,, +Shimon Garti,Two cardinal models for singular andmicro*.,2007,53,Math. Log. Q.,6,db/journals/mlq/mlq53.html#GartiS07,https://doi.org/10.1002/malq.200610053 +P. A. Guil Asensio,Strict Mittag-Leffler modules.,2011,57,Math. Log. Q.,6,db/journals/mlq/mlq57.html#AsensioIRT11,https://doi.org/10.1002/malq.201010023 +Carles Noguera,On triangular norm based axiomatic extensions of the weak nilpotent minimum logic.,2008,54,Math. Log. Q.,4,db/journals/mlq/mlq54.html#NogueraEG08,https://doi.org/10.1002/malq.200710054 +Helmut Wolter,Consequences of Schanuel's Condition for Zeros of Exponential Terms.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Wolter93a,https://doi.org/10.1002/malq.19930390158 +Xiaoding Yi,Jump Theorems for REA Operators.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#YiL93,https://doi.org/10.1002/malq.19930390103 +Achim Blumensath,Simple monadic theories and partition width.,2011,57,Math. Log. Q.,4,db/journals/mlq/mlq57.html#Blumensath11a,https://doi.org/10.1002/malq.201010019 +,,,,,,, +Annie Chateau,The ultra-weak Ash conjecture and some particular cases.,2006,52,Math. Log. Q.,1,db/journals/mlq/mlq52.html#ChateauM06,https://doi.org/10.1002/malq.200510010 +Rodney G. Downey,On Choice Sets and Strongly Non-Trivial Self-Embeddings of Recursive Linear Orders.,1989,35,Math. Log. Q.,3,db/journals/mlq/mlq35.html#DowneyM89,https://doi.org/10.1002/malq.19890350307 +Keith Harrow,Small Grzegorczyk classes and limited minimum.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Harrow75,https://doi.org/10.1002/malq.19750210157 +Carl G. Jockusch Jr.,"Correction to ""A Cohesive Set which is not High"".",1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#JockuschS97,https://doi.org/10.1002/malq.19970430412 +,,,,,,, +Manuela Busaniche,Free nilpotent minimum algebras.,2006,52,Math. Log. Q.,3,db/journals/mlq/mlq52.html#Busaniche06,https://doi.org/10.1002/malq.200510027 +Mohammad Ardeshir,Decidability and Specker sequences in intuitionistic mathematics.,2009,55,Math. Log. Q.,6,db/journals/mlq/mlq55.html#ArdeshirR09,https://doi.org/10.1002/malq.200710094 +Regina Aragón,Some Boolean Algebras with Finitely Many Distinguished Ideals I.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#Aragon95,https://doi.org/10.1002/malq.19950410406 +Ronald Fagin,Monadic generalized spectra.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Fagin75,https://doi.org/10.1002/malq.19750210112 +Franco Montagna,Kripke-style semantics for many-valued logics.,2003,49,Math. Log. Q.,6,db/journals/mlq/mlq49.html#MontagnaS03,https://doi.org/10.1002/malq.200310068 +Enrico Marchioni,Craig interpolation for semilinear substructural logics.,2012,58,Math. Log. Q.,6,db/journals/mlq/mlq58.html#MarchioniM12,https://doi.org/10.1002/malq.201200004 +Philipp Kleppmann,Generating sets of free groups and the axiom of choice.,2014,60,Math. Log. Q.,3,db/journals/mlq/mlq60.html#Kleppmann14,https://doi.org/10.1002/malq.201300088 +Daniel Gluschankof,Maximal Deductive Systems and Injective Objects in the Category of Hilbert Algebras.,1988,34,Math. Log. Q.,3,db/journals/mlq/mlq34.html#GluschankofT88,https://doi.org/10.1002/malq.19880340305 +Tapani Hyttinen,Stability and General Logics.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#Hyttinen99,https://doi.org/10.1002/malq.19990450207 +Norihiro Kamide,Synthesized substructural logics.,2007,53,Math. Log. Q.,3,db/journals/mlq/mlq53.html#Kamide07,https://doi.org/10.1002/malq.200610036 +Anna R. Ferraioli,Representations of MV-algebras by sheaves.,2011,57,Math. Log. Q.,1,db/journals/mlq/mlq57.html#FerraioliL11,https://doi.org/10.1002/malq.200910116 +Annalisa Marcja,On Pseudo -N0-Categorical Theories.,1984,30,Math. Log. Q.,35,db/journals/mlq/mlq30.html#MarcjaT84,https://doi.org/10.1002/malq.19840303502 +Andrzej Orlicki,Computable Limits and Colimits in Categories of Partial Enumerated Sets.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Orlicki93,https://doi.org/10.1002/malq.19930390121 +Thomas Vetterlein,Residuated lattices arising from equivalence relations on Boolean and Brouwerian algebras.,2008,54,Math. Log. Q.,4,db/journals/mlq/mlq54.html#Vetterlein08,https://doi.org/10.1002/malq.200710048 +V. Ja. Krenovic,A Decision Method for the Universal Theorems of Quine's New Foundations.,1982,28,Math. Log. Q.,13,db/journals/mlq/mlq28.html#KrenovicO82,https://doi.org/10.1002/malq.19820281303 +Charles E. Hughes,Sets derived by deterministic systems with axiom.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Hughes75a,https://doi.org/10.1002/malq.19750210109 +Giovanni Curi,On some peculiar aspects of the constructive theory of point-free spaces.,2010,56,Math. Log. Q.,4,db/journals/mlq/mlq56.html#Curi10,https://doi.org/10.1002/malq.200910037 +Uliano P. Balestrini,The Modality of Finite (Graded Modalties VII).,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#BalestriniF99,https://doi.org/10.1002/malq.19990450406 +Hilbert Levitz,Eine Rekursive Universelle Funktion Für Die Primitiv-Rekursiven Funktionen.,1987,33,Math. Log. Q.,6,db/journals/mlq/mlq33.html#LevitzN87,https://doi.org/10.1002/malq.19870330607 +Günter Asser,Letter from the outgoing Managing Editor/Letter from the new Managing Editor.,2005,51,Math. Log. Q.,1,db/journals/mlq/mlq51.html#AsserH05,https://doi.org/10.1002/malq.200590000 +,,,,,,, +Gurgen Asatryan,A solution to identities problem in 2-element HSI-algebras.,2004,50,Math. Log. Q.,2,db/journals/mlq/mlq50.html#Asatryan04,https://doi.org/10.1002/malq.200310087 +,,,,,,, +,,,,,,, +John L. Bell,Boolean Algebras and Distributive Lattices Treated Constructively.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#Bell99,https://doi.org/10.1002/malq.19990450113 +Joanna Golinska-Pilarek,Number of non-Fregean sentential logics that have adequate models.,2006,52,Math. Log. Q.,5,db/journals/mlq/mlq52.html#Golinska-Pilarek06,https://doi.org/10.1002/malq.200510042 +Hanamantagouda P. Sankappanavar,Principal Congruences of Pseudocomplemented Demorgan Algebras.,1987,33,Math. Log. Q.,1,db/journals/mlq/mlq33.html#Sankappanavar87,https://doi.org/10.1002/malq.19870330102 +Andreas Spillner 0001,Minimum boundary touching tilings of polyominoes.,2006,52,Math. Log. Q.,1,db/journals/mlq/mlq52.html#Spillner06,https://doi.org/10.1002/malq.200510015 +,,,,,,, +Luminita Vîta,Proximal and uniform convergence on apartness spaces.,2003,49,Math. Log. Q.,3,db/journals/mlq/mlq49.html#Vita03,https://doi.org/10.1002/malq.200310025 +Karl-Heinz Diener,Einfache Beweise Für Die Eindeutige Zerlegbarkeit Von Ausdrücken Endlicher und Unendlicher Sprachen.,1987,33,Math. Log. Q.,3,db/journals/mlq/mlq33.html#Diener87,https://doi.org/10.1002/malq.19870330305 +Cédric Milliet,Small skew fields.,2007,53,Math. Log. Q.,1,db/journals/mlq/mlq53.html#Milliet07,https://doi.org/10.1002/malq.200610029 +,,,,,,, +Giovanna Corsi,Quantified Modal Logic With Rigid Terms.,1988,34,Math. Log. Q.,3,db/journals/mlq/mlq34.html#Corsi88,https://doi.org/10.1002/malq.19880340308 +Steven Vickers,The localic compact interval is an Escardó-Simpson interval object.,2017,63,Math. Log. Q.,6,db/journals/mlq/mlq63.html#Vickers17,https://doi.org/10.1002/malq.201500090 +,,,,,,, +Satoru Yoshida,The constructive completion of the space D(R).,2005,51,Math. Log. Q.,1,db/journals/mlq/mlq51.html#Yoshida05,https://doi.org/10.1002/malq.200310128 +Youssef Boudabbous,Reconstructible and Half-Reconstructible Tournaments: Application to Their Groups of Hemimorphisms.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#Boudabbous99,https://doi.org/10.1002/malq.19990450313 +,,,,,,, +Ben Ellison,Kripke submodels and universal sentences.,2007,53,Math. Log. Q.,3,db/journals/mlq/mlq53.html#EllisonFMR07,https://doi.org/10.1002/malq.200610048 +Douglas S. Bridges,A constructive treatment of Urysohn's Lemma in an apartness space.,2006,52,Math. Log. Q.,5,db/journals/mlq/mlq52.html#BridgesD06,https://doi.org/10.1002/malq.200610006 +Arthur W. Apter,All uncountable cardinals in the Gitik model are almost Ramsey and carry Rowbottom filters.,2016,62,Math. Log. Q.,3,db/journals/mlq/mlq62.html#ApterDK16,https://doi.org/10.1002/malq.201400050 +Felix Brandt 0001,The Computational Complexity of Choice Sets.,2009,55,Math. Log. Q.,4,db/journals/mlq/mlq55.html#BrandtFH09,https://doi.org/10.1002/malq.200810027 +,,,,,,, +Lawrence Peter Belluce,Yosida Type Representation for Perfect MV-Algebras.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#BelluceN96,https://doi.org/10.1002/malq.19960420143 +Hans Kleine Büning,First-Order Formulas in Conjunctive Quantificational Form.,1988,34,Math. Log. Q.,1,db/journals/mlq/mlq34.html#BuningL88,https://doi.org/10.1002/malq.19880340107 +Kyriakos Keremedis,Tychonoff products of compact spaces in ZF and closed ultrafilters.,2010,56,Math. Log. Q.,5,db/journals/mlq/mlq56.html#Keremedis10,https://doi.org/10.1002/malq.200910103 +Bernhard Banaschewski,Algebraic Closure without Choice.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Banaschewski92,https://doi.org/10.1002/malq.19920380136 +Birger Strauch,On Partial Classes Containing All Monotone and Zero-Preserving Total Boolean Functions.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Strauch97,https://doi.org/10.1002/malq.19970430407 +Dumitru Busneag,ƒ-Multipliers and the localization of hilbert algebras.,1990,36,Math. Log. Q.,4,db/journals/mlq/mlq36.html#Busneag90,https://doi.org/10.1002/malq.19900360407 +Gido Scharfenberger-Fabian,Chain homogeneous Souslin algebras.,2011,57,Math. Log. Q.,6,db/journals/mlq/mlq57.html#Scharfenberger-Fabian11,https://doi.org/10.1002/malq.201020034 +Michael Byrd,Sugihara's Criterion and Some Structural Parallels Between E→ and S3→.,1978,24,Math. Log. Q.,12,db/journals/mlq/mlq24.html#ByrdH78,https://doi.org/10.1002/malq.19780241203 +Edward R. Griffor,Some Consequences of Ad for Kleene Recursion in 3E.,1983,29,Math. Log. Q.,10,db/journals/mlq/mlq29.html#Griffor83,https://doi.org/10.1002/malq.19830291003 +Vladimir Kanovei,Ulm Classification of Analytic Equivalence Relations in Generic Universes.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#Kanovei98,https://doi.org/10.1002/malq.19980440302 +Kazem Taghva,Model completeness and direct power.,1990,36,Math. Log. Q.,1,db/journals/mlq/mlq36.html#Taghva90,https://doi.org/10.1002/malq.19900360102 +Iain A. Stewart,Regular Subgraphs in Graphs and Rooted Graphs and Definability in Monadic Second-Order Logic.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Stewart97,https://doi.org/10.1002/malq.19970430102 +,,,,,,, +Louise Hay,Spectra and halting problems.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Hay75,https://doi.org/10.1002/malq.19750210122 +Cyprien Gnanvo,La Reconstruction des tournois sans Diamant.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#GnanvoI92,https://doi.org/10.1002/malq.19920380124 +William S. Hatcher,Categorical languages for algebraic structures.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#HatcherS75,https://doi.org/10.1002/malq.19750210159 +Alexej P. Pynko,Characterizing Belnap's Logic via De Morgan's Laws.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#Pynko95,https://doi.org/10.1002/malq.19950410403 +,,,,,,, +Eduardo Mizraji,The Operators of Vector Logic.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#Mizraji96,https://doi.org/10.1002/malq.19960420104 +Andrzej Orlicki,On Lifting of and#937*-Operations From the Category of Sets to the Category of Enumerated Sets.,1989,35,Math. Log. Q.,5,db/journals/mlq/mlq35.html#Orlicki89b,https://doi.org/10.1002/malq.19890350512 +Charles N. Delzell,"Correction to ""Note on Quantifier Prefixes Over Diophantine Equations"".",1988,34,Math. Log. Q.,3,db/journals/mlq/mlq34.html#Delzell88,https://doi.org/10.1002/malq.19880340312 +Dietrich Schwartz,Polyadic MV-Algebras.,1980,26,Math. Log. Q.,36,db/journals/mlq/mlq26.html#Schwartz80a,https://doi.org/10.1002/malq.19800263602 +Martin Wirsing,Small Universal Post Systems.,1979,25,Math. Log. Q.,33,db/journals/mlq/mlq25.html#Wirsing79,https://doi.org/10.1002/malq.19790253307 +Steven Vickers,A localic theory of lower and upper integrals.,2008,54,Math. Log. Q.,1,db/journals/mlq/mlq54.html#Vickers08,https://doi.org/10.1002/malq.200710028 +,,,,,,, +Timothy McNicholl,A uniformly computable Implicit Function Theorem.,2008,54,Math. Log. Q.,3,db/journals/mlq/mlq54.html#McNicholl08,https://doi.org/10.1002/malq.200710040 +Rodney G. Downey,Automorphisms and Recursive Structures.,1987,33,Math. Log. Q.,4,db/journals/mlq/mlq33.html#DowneyR87,https://doi.org/10.1002/malq.19870330409 +Marcin Mostowski,Pure Logic with Branched Quantifiers.,1989,35,Math. Log. Q.,1,db/journals/mlq/mlq35.html#Mostowski89,https://doi.org/10.1002/malq.19890350106 +Francesco Ciraulo,A constructive semantics for non-deducibility.,2008,54,Math. Log. Q.,1,db/journals/mlq/mlq54.html#Ciraulo08,https://doi.org/10.1002/malq.200710026 +,,,,,,, +,,,,,,, +Karol Habart,Bounds in the Turing Reducibility of Functions.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Habart92,https://doi.org/10.1002/malq.19920380141 +Biswambhar Pahi,Jankov-theorems for some implicational calculi.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Pahi75,https://doi.org/10.1002/malq.19750210127 +Jesper Carlström,A constructive version of Birkhoff's theorem.,2008,54,Math. Log. Q.,1,db/journals/mlq/mlq54.html#Carlstrom08,https://doi.org/10.1002/malq.200710023 +Andreas Blass,Sperner spaces and first-order logic.,2003,49,Math. Log. Q.,2,db/journals/mlq/mlq49.html#BlassP03,https://doi.org/10.1002/malq.200310011 +,,,,,,, +Masoud Haveshki,A topology induced by uniformity on BL-algebras.,2007,53,Math. Log. Q.,2,db/journals/mlq/mlq53.html#HaveshkiES07,https://doi.org/10.1002/malq.200610035 +Morteza Moniri,Independence results for weak systems of intuitionistic arithmetic.,2003,49,Math. Log. Q.,3,db/journals/mlq/mlq49.html#Moniri03,https://doi.org/10.1002/malq.200310024 +Reinhard Klette,Indexmengen und Erkennung Rekursiver Funktionen.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Klette76,https://doi.org/10.1002/malq.19760220131 +James P. Jones,On Series of Ordinals and Combinatorics.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#JonesLN97,https://doi.org/10.1002/malq.19970430114 +Valentina S. Harizanov,Effectively and Noneffectively Nowhere Simple Sets.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#Harizanov96,https://doi.org/10.1002/malq.19960420121 +Pawel Pazdyka,On A Reconstruction of Models in Models with Only One Binary Relation: A Correction.,1989,35,Math. Log. Q.,6,db/journals/mlq/mlq35.html#Pazdyka89,https://doi.org/10.1002/malq.19890350613 +,,,,,,, +Charles Zaiontz,Axiomatization of the Monadic Theory of Ordinals andlt* ω*2.,1983,29,Math. Log. Q.,6,db/journals/mlq/mlq29.html#Zaiontz83,https://doi.org/10.1002/malq.19830290602 +,,,,,,, +Seyed Mohammad Bagheri,Some preservation theorems in an intermediate logic.,2006,52,Math. Log. Q.,2,db/journals/mlq/mlq52.html#Bagheri06,https://doi.org/10.1002/malq.200510019 +Philipp Lücke,Measurable cardinals and good -wellorderings.,2018,64,Math. Log. Q.,3,db/journals/mlq/mlq64.html#LuckeS18,https://doi.org/10.1002/malq.201700018 +Walter Alexandre Carnielli,The problem Of Quantificational Completeness and the Characterization of All Perfect Quantifiers in 3-Valued Logics.,1987,33,Math. Log. Q.,1,db/journals/mlq/mlq33.html#Carnielli87,https://doi.org/10.1002/malq.19870330104 +Hanamantagouda P. Sankappanavar,Linked Double Weak Stone Algebras.,1989,35,Math. Log. Q.,6,db/journals/mlq/mlq35.html#Sankappanavar89a,https://doi.org/10.1002/malq.19890350604 +Silvio Valentini,A Proof of the Normal Form Theorem for the Closed Terms of Girard's System F by Means of Computability.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Valentini93,https://doi.org/10.1002/malq.19930390155 +Alexandre Ivanov,Automorphism group actions on trees.,2004,50,Math. Log. Q.,1,db/journals/mlq/mlq50.html#IvanovK04,https://doi.org/10.1002/malq.200310078 +Tatsuji Kawai,Formally continuous functions on Baire space.,2018,64,Math. Log. Q.,3,db/journals/mlq/mlq64.html#Kawai18,https://doi.org/10.1002/malq.201700015 +Frederick Bagemihl,Ordinal numbers in Arithmetic Progression.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Bagemihl92,https://doi.org/10.1002/malq.19920380148 +Carl G. Jockusch Jr.,Completely Autoreducible Degrees.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#JockuschP76,https://doi.org/10.1002/malq.19760220164 +,,,,,,, +Yuki Anbo,A note on stability spectrum of generic structures.,2010,56,Math. Log. Q.,3,db/journals/mlq/mlq56.html#AnboI10,https://doi.org/10.1002/malq.200810051 +Naohi Eguchi,A lexicographic path order with slow growing derivation bounds.,2009,55,Math. Log. Q.,2,db/journals/mlq/mlq55.html#Eguchi09,https://doi.org/10.1002/malq.200710090 +Andrei S. Morozov,On sigma-definability without equality over the real numbers.,2008,54,Math. Log. Q.,5,db/journals/mlq/mlq54.html#MorozovK08,https://doi.org/10.1002/malq.200710064 +Horst Luckhardt,A short proof of a well-known theorem of intuitionistic analysis.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Luckhardt75,https://doi.org/10.1002/malq.19750210125 +Nalinaxi H. Sankappanavar,Quasi-Stone Algebras.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#SankappanavarS93,https://doi.org/10.1002/malq.19930390130 +Andrzej Zbrzezny,The hilbert type axiomatization of some three-valued propositional logic.,1990,36,Math. Log. Q.,5,db/journals/mlq/mlq36.html#Zbrzezny90,https://doi.org/10.1002/malq.19900360506 +Alan Adamson,A Note on Two-Cardinal Models.,1983,29,Math. Log. Q.,4,db/journals/mlq/mlq29.html#Adamson83,https://doi.org/10.1002/malq.19830290403 +Tapani Hyttinen,On Nonstructure of Elementary Submodels of an Unsuperstable Homogeneous Structure.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Hyttinen97,https://doi.org/10.1002/malq.19970430115 +,,,,,,, +Giovanna Corsi,A Cut-Free Calculus For Dummett's LC Quantified.,1989,35,Math. Log. Q.,4,db/journals/mlq/mlq35.html#Corsi89,https://doi.org/10.1002/malq.19890350402 +Peter Apostoli,Modal Aggregation and the Theory of Paraconsistent Filters.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#Apostoli96,https://doi.org/10.1002/malq.19960420115 +Weiguang Peng,Two kinds of fixed point theorems and reverse mathematics.,2017,63,Math. Log. Q.,5,db/journals/mlq/mlq63.html#PengY17,https://doi.org/10.1002/malq.201600096 +,,,,,,, +H. Jerome Keisler,A local normal form theorem for infinitary logic with unary quantifiers.,2005,51,Math. Log. Q.,2,db/journals/mlq/mlq51.html#KeislerL05,https://doi.org/10.1002/malq.200410013 +,,,,,,, +George Voutsadakis,Categorical abstract algebraic logic: The categorical Suszko operator.,2007,53,Math. Log. Q.,6,db/journals/mlq/mlq53.html#Voutsadakis07a,https://doi.org/10.1002/malq.200710020 +Paul B. Larson,Coding with canonical functions.,2017,63,Math. Log. Q.,5,db/journals/mlq/mlq63.html#LarsonS17,https://doi.org/10.1002/malq.201500060 +Eleftherios Tachtsis,On Martin's Axiom and Forms of Choice.,2016,62,Math. Log. Q.,3,db/journals/mlq/mlq62.html#Tachtsis16,https://doi.org/10.1002/malq.201400115 +Masamitsu Ozaki,On MODkP Counting Degrees.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#OzakiS99,https://doi.org/10.1002/malq.19990450305 +Victor Pambuccian,Ternary Operations as Primitive Notions for Constructive Plane Geometry III.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Pambuccian93,https://doi.org/10.1002/malq.19930390143 +,,,,,,, +,,,,,,, +Wojciech Zielonka,Interdefinability of Lambekian Functors.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Zielonka92,https://doi.org/10.1002/malq.19920380145 +Frank P. Weber,Invariant Constructions of Simple and Maximal Sets.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#Weber95,https://doi.org/10.1002/malq.19950410202 +Fernando Ferreira,Counting as integration in feasible analysis.,2006,52,Math. Log. Q.,3,db/journals/mlq/mlq52.html#FerreiraF06,https://doi.org/10.1002/malq.200510035 +Vassilios Gregoriades,A recursion theoretic characterization of the Topological Vaught Conjecture in the Zermelo-Fraenkel set theory.,2017,63,Math. Log. Q.,6,db/journals/mlq/mlq63.html#Gregoriades17,https://doi.org/10.1002/malq.201600094 +,,,,,,, +Dengfeng Li,A minimal pair joining to a plus cupping Turing degree.,2003,49,Math. Log. Q.,6,db/journals/mlq/mlq49.html#LiL03,https://doi.org/10.1002/malq.200310060 +Michael Rathjen,The natural numbers in constructive set theory.,2008,54,Math. Log. Q.,1,db/journals/mlq/mlq54.html#Rathjen08,https://doi.org/10.1002/malq.200710036 +Alberto Marcone,The Set of Better Quasi Orderings is Pi21-complete.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#Marcone95,https://doi.org/10.1002/malq.19950410309 +Luiz Carlos Pereira,A Formalization of Sambin's Normalization for GL.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#PereiraH93,https://doi.org/10.1002/malq.19930390116 +Bernhard Banaschewski,"A New Proof that ""Krull implies Zorn"".",1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Banaschewski94,https://doi.org/10.1002/malq.19940400405 +,,,,,,, +,,,,,,, +Hisato Muraki,Local Density of Kleene Degrees.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#Muraki95,https://doi.org/10.1002/malq.19950410205 +Allyson Tripp,Finite Homogeneous 3-Graphs.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#TrippL95,https://doi.org/10.1002/malq.19950410302 +James H. Schmerl,Difference Sets and Recursion Theory.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#Schmerl98,https://doi.org/10.1002/malq.19980440410 +Ilnur I. Batyrshin,Non-isolated quasi-degrees.,2009,55,Math. Log. Q.,6,db/journals/mlq/mlq55.html#Batyrshin09,https://doi.org/10.1002/malq.200810026 +Jerrold M. Gold,A Reflection Property for Saturated Models.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Gold76,https://doi.org/10.1002/malq.19760220152 +Thierry Coquand,A note on the axiomatisation of real numbers.,2008,54,Math. Log. Q.,3,db/journals/mlq/mlq54.html#CoquandL08,https://doi.org/10.1002/malq.200710039 +Peter Schreiber 0001,A Note on Parallelism in Affine Geometry.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Schreiber93,https://doi.org/10.1002/malq.19930390115 +,,,,,,, +Anthony Bonato,A Pigeonhole Property for Relational Structures.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#BonatoD99,https://doi.org/10.1002/malq.19990450311 +Abderezak Ould Houcine,On superstable groups with residual properties.,2007,53,Math. Log. Q.,1,db/journals/mlq/mlq53.html#Houcine07,https://doi.org/10.1002/malq.200610023 +Stefano Baratella,Consequences of neocompact quantifier elimination.,2003,49,Math. Log. Q.,2,db/journals/mlq/mlq49.html#BaratellaN03,https://doi.org/10.1002/malq.200310014 +Koichiro Ikeda,On Theories Having Three Countable Models.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#IkedaPT98,https://doi.org/10.1002/malq.19980440203 +Kazuma Ikeda,Nonstandard models that are definable in models of Peano Arithmetic.,2007,53,Math. Log. Q.,1,db/journals/mlq/mlq53.html#IkedaT07,https://doi.org/10.1002/malq.200610020 +György Serény,Boolos-style proofs of limitative theorems.,2004,50,Math. Log. Q.,2,db/journals/mlq/mlq50.html#Sereny04,https://doi.org/10.1002/malq.200310091 +Kurt Engesser,Some Connections between Topological and Modal Logic.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#Engesser95,https://doi.org/10.1002/malq.19950410106 +B. Herrmann,Finite Replacement and Finite Hilbert-Style Axiomatizability.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#HerrmannR92,https://doi.org/10.1002/malq.19920380131 +H. Luckhardt,A Limit for Higher Recursion Theory.,1979,25,Math. Log. Q.,30,db/journals/mlq/mlq25.html#Luckhardt79,https://doi.org/10.1002/malq.19790253003 +Marcel Crabbé,The Hauptsatz for Stratified Comprehension: A Semantic Proof.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Crabbe94,https://doi.org/10.1002/malq.19940400406 +Bakhadyr Khoussainov,Games with Unknown Past.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#KhoussainovYY98,https://doi.org/10.1002/malq.19980440206 +Rod Downey,A Contiguous Nonbranching Degree.,1989,35,Math. Log. Q.,4,db/journals/mlq/mlq35.html#Downey89,https://doi.org/10.1002/malq.19890350411 +Joseph Barback,A Fine Structure in the Theory of Isols.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#Barback98,https://doi.org/10.1002/malq.19980440209 +Malika More,Rudimentary Languages and Second Order Logic.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#MoreO97,https://doi.org/10.1002/malq.19970430315 +Yoram Bachrach,Effort Games and the Price of Myopia.,2009,55,Math. Log. Q.,4,db/journals/mlq/mlq55.html#BachrachZR09,https://doi.org/10.1002/malq.200810018 +,,,,,,, +T. A. McKee,Infinitary logic and topological homeomorphisms.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#McKee75,https://doi.org/10.1002/malq.19750210154 +Bernhard G. Goetze,The Structure of the Lattice of Recursive Sets.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Goetze76,https://doi.org/10.1002/malq.19760220125 +Volker Weispfenning,Nullstellensätze - A Model Theoretic Framework.,1977,23,Math. Log. Q.,36,db/journals/mlq/mlq23.html#Weispfenning77,https://doi.org/10.1002/malq.19770233607 +Carlos Di Prisco,Local Ramsey theory: an abstract approach.,2017,63,Math. Log. Q.,5,db/journals/mlq/mlq63.html#PriscoMN17,https://doi.org/10.1002/malq.201500086 +Matteo Viale,The cumulative hierarchy and the constructible universe of ZFA.,2004,50,Math. Log. Q.,1,db/journals/mlq/mlq50.html#Viale04,https://doi.org/10.1002/malq.200310080 +Joaquín Borrego-Díaz,On Overspill Principles and Axiom Schemes for Bounded Formulas.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#Borrego-DiazFP96,https://doi.org/10.1002/malq.19960420129 +Ildikó Sain,Structured Nonstandard Dynamic Logic.,1984,30,Math. Log. Q.,31,db/journals/mlq/mlq30.html#Sain84,https://doi.org/10.1002/malq.19840303102 +Hernando Gaitán,Free Algebras in Certain Varieties of Distributive Pseudocomplemented De Morgan Algebras.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#Gaitan98,https://doi.org/10.1002/malq.19980440414 +Gunter Fuchs,Successor levels of the Jensen hierarchy.,2009,55,Math. Log. Q.,1,db/journals/mlq/mlq55.html#Fuchs09,https://doi.org/10.1002/malq.200710077 +Michel Parigot,Le modèle Compagnon de la THéOrie des arbres.,1983,29,Math. Log. Q.,3,db/journals/mlq/mlq29.html#Parigot83,https://doi.org/10.1002/malq.19830290303 +Martin K. Solomon,Measure Independent Gödel Speed-Ups and the Relative Difculty of Recognizing Sets.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Solomon93,https://doi.org/10.1002/malq.19930390142 +,,,,,,, +,,,,,,, +Enrique Casanovas,Weak forms of elimination of imaginaries.,2004,50,Math. Log. Q.,2,db/journals/mlq/mlq50.html#CasanovasF04,https://doi.org/10.1002/malq.200310083 +Roland Hinnion,"Correction to ""Embedding Properties and Anti-Foundation in Set Theory"".",1989,35,Math. Log. Q.,6,db/journals/mlq/mlq35.html#Hinnion89a,https://doi.org/10.1002/malq.19890350614 +James G. Raftery,Inconsistency lemmas in algebraic logic.,2013,59,Math. Log. Q.,6,db/journals/mlq/mlq59.html#Raftery13,https://doi.org/10.1002/malq.201200020 +,,,,,,, +Stanley Burris,Model Companions with Finitely Many Countable Models.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Burris94,https://doi.org/10.1002/malq.19940400119 +John Jones,Some Propositional Calculi with Constant and Variable Functors.,1984,30,Math. Log. Q.,30,db/journals/mlq/mlq30.html#Jones84,https://doi.org/10.1002/malq.19840303004 +,,,,,,, +Leopoldo E. Bertossi,The formal language Lt and topological products.,1990,36,Math. Log. Q.,2,db/journals/mlq/mlq36.html#Bertossi90,https://doi.org/10.1002/malq.19900360202 +Raimon Elgueta,Algebraic Characterizations for Universal Fragments of Logic.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#Elgueta99,https://doi.org/10.1002/malq.19990450309 +,,,,,,, +Christopher J. Ash,Sentences with finite models.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Ash75,https://doi.org/10.1002/malq.19750210153 +Hartmut Höft,Antisymmetry and Lexicographic Product Relations.,1981,27,Math. Log. Q.,22,db/journals/mlq/mlq27.html#Hoft81,https://doi.org/10.1002/malq.19810272202 +Nikolaos Efstathiou Sofronidis,Calculus of variations and descriptive set theory.,2009,55,Math. Log. Q.,5,db/journals/mlq/mlq55.html#Sofronidis09,https://doi.org/10.1002/malq.200810003 +Alejandro Margarit,Abraham Robinson's Meta-Algebra Revisited.,1987,33,Math. Log. Q.,6,db/journals/mlq/mlq33.html#MargaritL87,https://doi.org/10.1002/malq.19870330604 +Takeshi Yamaguchi,Effective Nonrecursiveness.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Yamaguchi97,https://doi.org/10.1002/malq.19970430106 +Jacek Cichon,Hamel-isomorphic images of the unit ball.,2010,56,Math. Log. Q.,6,db/journals/mlq/mlq56.html#CichonS10,https://doi.org/10.1002/malq.200910113 +,,,,,,, +Shin'ichi Yokota,Axiomatization of the First-Order Intermediate Logics of Bounded Kripkean Heights I.,1989,35,Math. Log. Q.,5,db/journals/mlq/mlq35.html#Yokota89,https://doi.org/10.1002/malq.19890350507 +Satoru Yoshida,The Banach-Steinhaus theorem for the space D(R) in constructive analysis.,2003,49,Math. Log. Q.,3,db/journals/mlq/mlq49.html#Yoshida03,https://doi.org/10.1002/malq.200310031 +,,,,,,, +Stanley Burris,Decidable Model Companions.,1989,35,Math. Log. Q.,3,db/journals/mlq/mlq35.html#Burris89,https://doi.org/10.1002/malq.19890350305 +Ruggero Ferro,A Theory of Sets with the Negation of the Axiom of Inflnity.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#FerroB93,https://doi.org/10.1002/malq.19930390138 +Hiroyasu Kamo,Computability of Self-Similar Sets.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#KamoK99,https://doi.org/10.1002/malq.19990450103 +Qin Jun,An Elementary System as and its Semi-Completeness and Decidability.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Jun92,https://doi.org/10.1002/malq.19920380128 +,,,,,,, +Guido Bertolotti,Exhibiting Wide Families of Maximal Intermediate Propositional Logics with the Disjunction Property.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#BertolottiMS96,https://doi.org/10.1002/malq.19960420141 +George Voutsadakis,"Corrigendum to ""Categorical abstract algebraic logic: The criterion for deductive equivalence"".",2005,51,Math. Log. Q.,6,db/journals/mlq/mlq51.html#Voutsadakis05a,https://doi.org/10.1002/malq.200510007 +Hajime Ishihara,Compactness under constructive scrutiny.,2004,50,Math. Log. Q.,6,db/journals/mlq/mlq50.html#IshiharaS04,https://doi.org/10.1002/malq.200310119 +,,,,,,, +Tapani Hyttinen,Forking and Incomplete Types.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#Hyttinen96,https://doi.org/10.1002/malq.19960420134 +Wenqi Huang,The hardness of the grid problem Gi Under the Routine Resolution Method.,1987,33,Math. Log. Q.,1,db/journals/mlq/mlq33.html#HuangLC87,https://doi.org/10.1002/malq.19870330110 +Henryk Kotlarski,On the End Extension Problem For Δ0-PA(S).,1989,35,Math. Log. Q.,5,db/journals/mlq/mlq35.html#Kotlarski89,https://doi.org/10.1002/malq.19890350504 +Joan Bagaria,On coding uncountable sets by reals.,2010,56,Math. Log. Q.,4,db/journals/mlq/mlq56.html#BagariaK10,https://doi.org/10.1002/malq.200910056 +,,,,,,, +Carlos A. Di Prisco,Some Results an Polarized Relations of Higher Dimension.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#PriscoC93,https://doi.org/10.1002/malq.19930390150 +André Rognes,Turning decision procedures into disprovers.,2009,55,Math. Log. Q.,1,db/journals/mlq/mlq55.html#Rognes09,https://doi.org/10.1002/malq.200710083 +Teruyuki Yorioka,Pmax variations related to slaloms.,2006,52,Math. Log. Q.,2,db/journals/mlq/mlq52.html#Yorioka06,https://doi.org/10.1002/malq.200510028 +Sergio A. Celani,Weak-quasi-Stone algebras.,2009,55,Math. Log. Q.,3,db/journals/mlq/mlq55.html#CelaniC09,https://doi.org/10.1002/malq.200710092 +Manfred E. Szabo,The Continuous Realizability of Entailment.,1983,29,Math. Log. Q.,4,db/journals/mlq/mlq29.html#Szabo83,https://doi.org/10.1002/malq.19830290408 +Mladen Vukovic,Bisimulations between generalized Veltman models and Veltman models.,2008,54,Math. Log. Q.,4,db/journals/mlq/mlq54.html#Vukovic08,https://doi.org/10.1002/malq.200710050 +Giangiacomo Gerla,An Extension Principle for Fuzzy Logics.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Gerla94,https://doi.org/10.1002/malq.19940400306 +Alan Rose,A Strongly Complete Formalisation of a 5-Valued Propositional Calculus.,1987,33,Math. Log. Q.,3,db/journals/mlq/mlq33.html#Rose87a,https://doi.org/10.1002/malq.19870330307 +Wojciech Zielonka,Cut-Rule Axiomatization of Product-Free Lambek Calculus With the Empty String.,1988,34,Math. Log. Q.,2,db/journals/mlq/mlq34.html#Zielonka88,https://doi.org/10.1002/malq.19880340207 +Hervé Perdry,Lazy bases: a minimalist constructive theory of Noetherian rings.,2008,54,Math. Log. Q.,1,db/journals/mlq/mlq54.html#Perdry08,https://doi.org/10.1002/malq.200710042 +John Case,Sortability and Extensibility of the Graphs of Recursively Enumerable Partial and Total Orders.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Case76,https://doi.org/10.1002/malq.19760220102 +J. Dodu,The Hahn-Banach Property and the Axiom of Choice.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#DoduM99,https://doi.org/10.1002/malq.19990450303 +Christopher J. Ash,A Conjecture Concerning the Spectrum of a Sentence.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Ash94,https://doi.org/10.1002/malq.19940400308 +Domenico Zambella,Forcing in Finite Structures.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Zambella97,https://doi.org/10.1002/malq.19970430313 +T. A. McKee,Sentences Preserved between Equivalent Topological Bases.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#McKee76,https://doi.org/10.1002/malq.19760220107 +Jean Sylvestre Gakwaya,Characterization of the Relations in Grzegorczyk's Hierarchy Revisited.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Gakwaya97,https://doi.org/10.1002/malq.19970430109 +Karim Khanaki,Random variables and integral logic.,2011,57,Math. Log. Q.,5,db/journals/mlq/mlq57.html#KhanakiB11,https://doi.org/10.1002/malq.201020068 +Gurgen Asatryan,On models of exponentiation. Identities in the HSI-algebra of posets.,2008,54,Math. Log. Q.,3,db/journals/mlq/mlq54.html#Asatryan08,https://doi.org/10.1002/malq.200710031 +Wojcech Sachwanowicz,Boolean powers over incomplete boolean algebras.,1990,36,Math. Log. Q.,5,db/journals/mlq/mlq36.html#Sachwanowicz90a,https://doi.org/10.1002/malq.19900360508 +Stanley Burris,The Model Completion of the Class of and#8466*-Structures.,1987,33,Math. Log. Q.,4,db/journals/mlq/mlq33.html#Burris87,https://doi.org/10.1002/malq.19870330405 +,,,,,,, +John W. Rosenthal,Truth in all of certain well-founded countable models arising in set theory.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Rosenthal75,https://doi.org/10.1002/malq.19750210113 +,,,,,,, +Stefan Geschke,Weak Borel chromatic numbers.,2011,57,Math. Log. Q.,1,db/journals/mlq/mlq57.html#Geschke11,https://doi.org/10.1002/malq.201010001 +Isidore Fleischer,Completeness of the Infinitary Polyadic Axiomatization.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Fleischer93,https://doi.org/10.1002/malq.19930390122 +Marcin Mostowski,Arithmetic of divisibility in finite models.,2004,50,Math. Log. Q.,2,db/journals/mlq/mlq50.html#MostowskiW04,https://doi.org/10.1002/malq.200310086 +,,,,,,, +Saharon Shelah,Recursive logic frames.,2006,52,Math. Log. Q.,2,db/journals/mlq/mlq52.html#ShelahV06,https://doi.org/10.1002/malq.200410058 +Beibut Sh. Kulpeshov,On aleph0-categorical weakly circularly minimal structures.,2006,52,Math. Log. Q.,6,db/journals/mlq/mlq52.html#Kulpeshov06,https://doi.org/10.1002/malq.200610014 +,,,,,,, +Daniel A. Romano,Equality and Coequality Relations on the Cartesian Product of Sets.,1988,34,Math. Log. Q.,5,db/journals/mlq/mlq34.html#Romano88a,https://doi.org/10.1002/malq.19880340510 +,,,,,,, +Martin Gerson,A Neighbourhood Frame for T with No Equivalent Relational Frame.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Gerson76,https://doi.org/10.1002/malq.19760220104 +,,,,,,, +S. Barry Cooper,Properly and#931*2 Enumeration Degrees.,1988,34,Math. Log. Q.,6,db/journals/mlq/mlq34.html#CooperC88,https://doi.org/10.1002/malq.19880340603 +,,,,,,, +Jack H. Lutz,Effective fractal dimensions.,2005,51,Math. Log. Q.,1,db/journals/mlq/mlq51.html#Lutz05,https://doi.org/10.1002/malq.200310127 +,,,,,,, +,,,,,,, +Xin Ma,On Schauder equivalence relations.,2017,63,Math. Log. Q.,6,db/journals/mlq/mlq63.html#Ma17,https://doi.org/10.1002/malq.201600074 +Bernhard König,Fragments of Martin's Maximum in generic extensions.,2004,50,Math. Log. Q.,3,db/journals/mlq/mlq50.html#KonigY04,https://doi.org/10.1002/malq.200410101 +Guohua Wu,Quasi-complements of the cappable degrees.,2004,50,Math. Log. Q.,2,db/journals/mlq/mlq50.html#Wu04,https://doi.org/10.1002/malq.200310089 +,,,,,,, +Norihiro Kamide,A decidable paraconsistent relevant logic: Gentzen system and Routley-Meyer semantics.,2016,62,Math. Log. Q.,3,db/journals/mlq/mlq62.html#Kamide16,https://doi.org/10.1002/malq.201400086 +,,,,,,, +Joji Takahashi,Precipitousness of a Sum of Ideals on Complete Boolean Algebras.,1988,34,Math. Log. Q.,4,db/journals/mlq/mlq34.html#TakahashiK88,https://doi.org/10.1002/malq.19880340408 +Dolph Ulrich,A Descending Chain of Incomplete Extensions of Implicational S 5.,1985,31,Math. Log. Q.,13,db/journals/mlq/mlq31.html#Ulrich85,https://doi.org/10.1002/malq.19850311303 +Irakli O. Chitaia,Hyperhypersimple sets and Q1-reducibility.,2016,62,Math. Log. Q.,6,db/journals/mlq/mlq62.html#Chitaia16,https://doi.org/10.1002/malq.201600045 +Victor Pambuccian,Ternary Operations as Primitive Notions for Constructive Plane Geometry IV.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Pambuccian94,https://doi.org/10.1002/malq.19940400111 +Jan von Plato,Normal derivability in modal logic.,2005,51,Math. Log. Q.,6,db/journals/mlq/mlq51.html#Plato05,https://doi.org/10.1002/malq.200410054 +,,,,,,, +Josef Berger,Brouwer's fan theorem and unique existence in constructive analysis.,2005,51,Math. Log. Q.,4,db/journals/mlq/mlq51.html#BergerI05,https://doi.org/10.1002/malq.200410038 +,,,,,,, +,,,,,,, +,,,,,,, +J. Donald Monk,Remarks on continuum cardinals on Boolean algebras.,2012,58,Math. Log. Q.,3,db/journals/mlq/mlq58.html#Monk12,https://doi.org/10.1002/malq.201110064 +,,,,,,, +Bernhard Banaschewski,Fixpoints Without the Natural Numbers.,1991,37,Math. Log. Q.,8,db/journals/mlq/mlq37.html#Banaschewski91,https://doi.org/10.1002/malq.19910370804 +Isabel Oitavem,Characterizing NC with tier 0 pointers.,2004,50,Math. Log. Q.,1,db/journals/mlq/mlq50.html#Oitavem04,https://doi.org/10.1002/malq.200310070 +,,,,,,, +,,,,,,, +Agi Kurucz,Weakly associative relation algebras with projections.,2009,55,Math. Log. Q.,2,db/journals/mlq/mlq55.html#Kurucz09,https://doi.org/10.1002/malq.200710074 +Peter Hertling,Is the Mandelbrot set computable?,2005,51,Math. Log. Q.,1,db/journals/mlq/mlq51.html#Hertling05,https://doi.org/10.1002/malq.200310124 +Nino B. Cocchiarella,A Note on the Definition of Identity in Quine's New Foundations.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Cocchiarella76,https://doi.org/10.1002/malq.19760220127 +Arthur W. Apter,Characterizing strong compactness via strongness.,2003,49,Math. Log. Q.,4,db/journals/mlq/mlq49.html#Apter03,https://doi.org/10.1002/malq.200310040 +Omar De la Cruz,Properties of the real line and weak forms of the Axiom of Choice.,2005,51,Math. Log. Q.,6,db/journals/mlq/mlq51.html#CruzHHKT05,https://doi.org/10.1002/malq.200410052 +,,,,,,, +,,,,,,, +Samuel Coskey,The conjugacy problem for automorphism groups of countable homogeneous structures.,2016,62,Math. Log. Q.,6,db/journals/mlq/mlq62.html#CoskeyE16,https://doi.org/10.1002/malq.201500004 +Paul B. Larson,Splitting stationary sets from weak forms of Choice.,2009,55,Math. Log. Q.,3,db/journals/mlq/mlq55.html#LarsonS09,https://doi.org/10.1002/malq.200810011 +Vinicius Cifú Lopes,Reduced products and sheaves of metric structures.,2013,59,Math. Log. Q.,3,db/journals/mlq/mlq59.html#Lopes13,https://doi.org/10.1002/malq.201200084 +Erhard Quaisser,Zum Stufenaufbau Von Translationsebenen in Spiegelungsgeometrischer Darstellung.,1988,34,Math. Log. Q.,1,db/journals/mlq/mlq34.html#Quaisser88,https://doi.org/10.1002/malq.19880340111 +Roman Murawski,Some Properties of the Family of Expansions to Models of A.,1991,37,Math. Log. Q.,17,db/journals/mlq/mlq37.html#Murawski91,https://doi.org/10.1002/malq.19910371703 +Kyriakos Keremedis,Some weak forms of the Baire category theorem.,2003,49,Math. Log. Q.,4,db/journals/mlq/mlq49.html#Kermedis03,https://doi.org/10.1002/malq.200310039 +Gerhard Lischke,über die Erfüllung gewisser Erhaltungssätze durch Kompliziertheitsmasse.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Lischke75,https://doi.org/10.1002/malq.19750210121 +Marcel Crabbé,On the Reduction of Type Theory.,1983,29,Math. Log. Q.,4,db/journals/mlq/mlq29.html#Crabbe83,https://doi.org/10.1002/malq.19830290409 +John W. Rosenthal,Partial n1-homogeneity of the countable saturated model of an n1-categorical theory.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Rosenthal75a,https://doi.org/10.1002/malq.19750210136 +Piotr Koszmider,A Formalism for Some Class of Forcing Notions.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Koszmider92,https://doi.org/10.1002/malq.19920380140 +Douglas Cenzer,Computable symbolic dynamics.,2008,54,Math. Log. Q.,5,db/journals/mlq/mlq54.html#CenzerDK08,https://doi.org/10.1002/malq.200710066 +Dimiter Skordev,A Normal form Theorem for Recursive Operators in Iterative Combinatory Spaces.,1978,24,Math. Log. Q.,8,db/journals/mlq/mlq24.html#Skordev78,https://doi.org/10.1002/malq.19780240803 +Hiroya Kawai,Sequential Calculus for a First Order Infinitary Temporal Logic.,1987,33,Math. Log. Q.,5,db/journals/mlq/mlq33.html#Kawai87,https://doi.org/10.1002/malq.19870330506 +Michal Krynicki,Quantifiers determined by partial orderings.,1990,36,Math. Log. Q.,1,db/journals/mlq/mlq36.html#Krynicki90,https://doi.org/10.1002/malq.19900360109 +Michel de Rougemont,Second-order and Inductive Definability on Finite Structures.,1987,33,Math. Log. Q.,1,db/journals/mlq/mlq33.html#Rougemont87,https://doi.org/10.1002/malq.19870330107 +V. Yu. Shavrukov,Remarks on Uniformly Finitely Precomplete Positive Equivalences.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#Shavrukov96,https://doi.org/10.1002/malq.19960420107 +Jindrich Zapletal,Applications of the ergodic iteration theorem.,2010,56,Math. Log. Q.,2,db/journals/mlq/mlq56.html#Zapletal10,https://doi.org/10.1002/malq.200810041 +Andrés Cordón-Franco,Fragments of Arithmetic and true sentences.,2005,51,Math. Log. Q.,3,db/journals/mlq/mlq51.html#Cordon-FrancoFM05,https://doi.org/10.1002/malq.200410034 +Branislav Martic,Iterative Systems and Diagram Algorithms.,1981,27,Math. Log. Q.,36,db/journals/mlq/mlq27.html#Martic81,https://doi.org/10.1002/malq.19810273602 +Jannis Manakos,On a Subtheory of the Bernays-Gödel Set Theory.,1989,35,Math. Log. Q.,5,db/journals/mlq/mlq35.html#Manakos89,https://doi.org/10.1002/malq.19890350506 +Ulf Friedrichsdorf,Einige Bemerkungen Zur Peano-Arithmetik.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Friedrichsdorf76,https://doi.org/10.1002/malq.19760220153 +Maciej Kandulski,The equivalence of Nonassociative Lambek Categorial Grammars and Context-Free Grammars.,1988,34,Math. Log. Q.,1,db/journals/mlq/mlq34.html#Kandulski88,https://doi.org/10.1002/malq.19880340106 +G. E. Puninskij,The Model Completion of the Theory of All Partially Ordered Sets.,1989,35,Math. Log. Q.,6,db/journals/mlq/mlq35.html#Puninskij89,https://doi.org/10.1002/malq.19890350602 +Martin Weese,The Isomorphism Problem of Superatomic Boolean Algebras.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Weese76a,https://doi.org/10.1002/malq.19760220155 +J. Donald Monk,Minimum-sized Infinite Partitions of Boolean Algebras.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#Monk96,https://doi.org/10.1002/malq.19960420142 +,,,,,,, +Andrzej Orlicki,Some remarks on ω*-powers of enumerated sets and their applications to ω*-operations.,1990,36,Math. Log. Q.,2,db/journals/mlq/mlq36.html#Orlicki90,https://doi.org/10.1002/malq.19900360208 +Erik Ellentuck,Galois Theorems for Isolated Fields.,1981,27,Math. Log. Q.,1,db/journals/mlq/mlq27.html#Ellentuck81,https://doi.org/10.1002/malq.19810270102 +Joseph Barback,On Regressive Isols and Comparability of Summands and a Theorem of R. Downey.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Barback97,https://doi.org/10.1002/malq.19970430111 +Klaus Weihrauch,Computational complexity on computable metric spaces.,2003,49,Math. Log. Q.,1,db/journals/mlq/mlq49.html#Weihrauch03,https://doi.org/10.1002/malq.200310001 +John L. Bell,Hilbert's and#1013*-Operator in Intuitionistic Type Theories.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Bell93,https://doi.org/10.1002/malq.19930390137 +Grzegorz Michalski,Relatively Recursively Enumerable Versus Relatively Sigma1 in Models of Peano Arithmetic.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#Michalski95,https://doi.org/10.1002/malq.19950410408 +Jeffry L. Hirst,Derived Sequences and Reverse Mathematics.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Hirst93,https://doi.org/10.1002/malq.19930390148 +Mitsuru Yasuhara,"An Addition to ""Cut Elimination in and#1013*-Calculi"".",1989,35,Math. Log. Q.,6,db/journals/mlq/mlq35.html#Yasuhara89,https://doi.org/10.1002/malq.19890350603 +Kosta Dosen,A Brauerian representation of split preorders.,2003,49,Math. Log. Q.,6,db/journals/mlq/mlq49.html#DosenP03,https://doi.org/10.1002/malq.200310063 +Andrzej Orlicki,On Constructively Non-Morphisms of Enumerated Sets and Constructive Non-Reducibility of Enumerations.,1987,33,Math. Log. Q.,6,db/journals/mlq/mlq33.html#Orlicki87a,https://doi.org/10.1002/malq.19870330603 +Ernst Zimmermann,Full Lambek Calculus in natural deduction.,2010,56,Math. Log. Q.,1,db/journals/mlq/mlq56.html#Zimmermann10,https://doi.org/10.1002/malq.200810042 +Melven Krom,Recursive Solvability of Problems with Matrices.,1989,35,Math. Log. Q.,5,db/journals/mlq/mlq35.html#KromK89,https://doi.org/10.1002/malq.19890350510 +Robin J. Grayson,On Closed Subsets of the Intuitionistic Reals.,1983,29,Math. Log. Q.,1,db/journals/mlq/mlq29.html#Grayson83,https://doi.org/10.1002/malq.19830290103 +Ulrich Kohlenbach,A note on the monotone functional interpretation.,2011,57,Math. Log. Q.,6,db/journals/mlq/mlq57.html#Kohlenbach11,https://doi.org/10.1002/malq.201110023 +James M. Henle,Calculus on strong partition cardinals.,2006,52,Math. Log. Q.,6,db/journals/mlq/mlq52.html#Henle06,https://doi.org/10.1002/malq.200610016 +Seema Ahmad,Some Special Pairs Of and#931*2 e-Degrees.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#AhmadL98,https://doi.org/10.1002/malq.19980440402 +Klaus Hilmar Sprenger,Some Hierarchies of Primitive Recursive Functions on Term Algebras.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Sprenger97,https://doi.org/10.1002/malq.19970430208 +Ibrahim Garro,Nonstandard Models for a Fragment of the Arithmetic and Their Decision Problem.,1987,33,Math. Log. Q.,6,db/journals/mlq/mlq33.html#Garro87,https://doi.org/10.1002/malq.19870330602 +Hans-Dietrich Hecker,Zur Programmkomplexität Rekursiv Aufzählbarer Mengen.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Hecker76,https://doi.org/10.1002/malq.19760220132 +Javier Gutiérrez García,Fuzzy Galois connections categorically.,2010,56,Math. Log. Q.,2,db/journals/mlq/mlq56.html#GarciaMPZ10,https://doi.org/10.1002/malq.200810044 +,,,,,,, +Jana Dietel,Quadrilaterizing an Orthogonal Polygon in Parallel.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#DietelH98,https://doi.org/10.1002/malq.19980440104 +Martin Dowd,Remarks on Levy's Reflection Axiom.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Dowd93,https://doi.org/10.1002/malq.19930390111 +,,,,,,, +José Raymundo Marcial-Romero,Sequential real number computation and recursive relations.,2008,54,Math. Log. Q.,5,db/journals/mlq/mlq54.html#Marcial-RomeroM08,https://doi.org/10.1002/malq.200710065 +Ewa Orlowska,Logic For Reasoning About Knowledge.,1989,35,Math. Log. Q.,6,db/journals/mlq/mlq35.html#Orlowska89,https://doi.org/10.1002/malq.19890350612 +Geoffrey LaForte,The Isolated D. R. E. Degrees are Dense in the R. E. Degrees.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#LaForte96,https://doi.org/10.1002/malq.19960420108 +Maciej Malicki,Abelian pro-countable groups and non-Borel orbit equivalence relations.,2016,62,Math. Log. Q.,6,db/journals/mlq/mlq62.html#Malicki16,https://doi.org/10.1002/malq.201500064 +,,,,,,, +Luc Lismont,La connaissance commune en logique modale.,1993,39,Math. Log. Q.,,db/journals/mlq/mlq39.html#Lismont93,https://doi.org/10.1002/malq.19930390114 +Andrzej Orlicki,On Some Problems Related to Enumerated Types of Algebras.,1988,34,Math. Log. Q.,6,db/journals/mlq/mlq34.html#Orlicki88b,https://doi.org/10.1002/malq.19880340607 +Sherrie J. Nicol,Continuous and Exact Sets of Specified Cardinality.,1989,35,Math. Log. Q.,3,db/journals/mlq/mlq35.html#Nicol89,https://doi.org/10.1002/malq.19890350304 +Seyed-Mohammad Bagheri,Preservation theorems in linear continuous logic.,2014,60,Math. Log. Q.,3,db/journals/mlq/mlq60.html#BagheriS14,https://doi.org/10.1002/malq.201200065 +Martin K. Solomon,A Connection Between Blum Speedable Sets and Gödel's Speed-Up Theorem.,1987,33,Math. Log. Q.,5,db/journals/mlq/mlq33.html#Solomon87,https://doi.org/10.1002/malq.19870330505 +Johannes Czermak,Distinct Modalities are not Equivalent in T.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Czermak76,https://doi.org/10.1002/malq.19760220116 +Stefano Mazzanti,Iterative Characterizations of Computable Unary Functions: A General Method.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Mazzanti97,https://doi.org/10.1002/malq.19970430104 +Peter Schuster 0001,Unique solutions.,2006,52,Math. Log. Q.,6,db/journals/mlq/mlq52.html#Schuster06,https://doi.org/10.1002/malq.200610012 +Jouke Witteveen,Fixed-parameter decidability: Extending parameterized complexity analysis.,2016,62,Math. Log. Q.,6,db/journals/mlq/mlq62.html#WitteveenT16,https://doi.org/10.1002/malq.201500077 +Alistair H. Lachlan,A remark on the strict order property.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Lachlan75,https://doi.org/10.1002/malq.19750210108 +,,,,,,, +Stefano Leonesi,Weakly minimal modules over integral group rings and over related classes of rings.,2005,51,Math. Log. Q.,6,db/journals/mlq/mlq51.html#LeonesiLT05,https://doi.org/10.1002/malq.200410053 +Arthur W. Chou,On the complexity of finding paths in a two-dimensional domain I: Shortest paths.,2004,50,Math. Log. Q.,6,db/journals/mlq/mlq50.html#ChouK04,https://doi.org/10.1002/malq.200310120 +Sergio A. Celani,Bounded distributive lattices with strict implication.,2005,51,Math. Log. Q.,3,db/journals/mlq/mlq51.html#CelaniJ05,https://doi.org/10.1002/malq.200410022 +,,,,,,, +Takao Inoué,A Note on Stahl's Opposite System.,1989,35,Math. Log. Q.,5,db/journals/mlq/mlq35.html#Inoue89,https://doi.org/10.1002/malq.19890350503 +Karim Nour,Storage Operators and and∀-positive Types in TTR Type System.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#Nour96,https://doi.org/10.1002/malq.19960420130 +Franco Montagna,"Corrigendum to ""Kripke-style semantics for many-valued logics"".",2004,50,Math. Log. Q.,1,db/journals/mlq/mlq50.html#MontagnaS04,https://doi.org/10.1002/malq.200310081 +Kosta Dosen,A Note on Gentzen's Decision Procedure for Intuitionistic Propositional Logic.,1987,33,Math. Log. Q.,5,db/journals/mlq/mlq33.html#Dosen87,https://doi.org/10.1002/malq.19870330509 +Andreas Weiermann,Phase transition thresholds for some Friedman-style independence results.,2007,53,Math. Log. Q.,1,db/journals/mlq/mlq53.html#Weiermann07,https://doi.org/10.1002/malq.200610022 +Alexander Kreuzer,The cohesive principle and the Bolzano-Weierstraß principle.,2011,57,Math. Log. Q.,3,db/journals/mlq/mlq57.html#Kreuzer11,https://doi.org/10.1002/malq.201010008 +J. L. Bell,A Note on Generic Ultrafilters.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Bell76a,https://doi.org/10.1002/malq.19760220141 +Arthur W. Apter,More on the Least Strongly Compact Cardinal.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Apter97,https://doi.org/10.1002/malq.19970430316 +Sandra Marques Pinto,Congruences and ideals on Boolean modules: a heterogeneous point of view.,2011,57,Math. Log. Q.,6,db/journals/mlq/mlq57.html#PintoO11,https://doi.org/10.1002/malq.201020057 +,,,,,,, +,,,,,,, +Robin Havea,Separation properties in neighbourhood and quasi-apartness spaces.,2008,54,Math. Log. Q.,1,db/journals/mlq/mlq54.html#HaveaIV08,https://doi.org/10.1002/malq.200710025 +Edith Hemaspaandra,Hybrid Elections Broaden Complexity-Theoretic Resistance to Control.,2009,55,Math. Log. Q.,4,db/journals/mlq/mlq55.html#HemaspaandraHR09,https://doi.org/10.1002/malq.200810019 +Manuel Lerman,Ideals of Generalized Finite Sets in Lattices of α-Recursively Enumerable Sets.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Lerman76,https://doi.org/10.1002/malq.19760220145 +Kohtaro Tadaki,An extension of Chaitin's halting probability Omega to a measurement operator in an infinite dimensional quantum system.,2006,52,Math. Log. Q.,5,db/journals/mlq/mlq52.html#Tadaki06,https://doi.org/10.1002/malq.200410061 +,,,,,,, +,,,,,,, +Dev Kumar Roy,Effective extensions of partial orders.,1990,36,Math. Log. Q.,3,db/journals/mlq/mlq36.html#Roy90,https://doi.org/10.1002/malq.19900360306 +Ramon Jansana,On the Mathematical Content of the Theory of Classes KM.,1989,35,Math. Log. Q.,5,db/journals/mlq/mlq35.html#Jansana89,https://doi.org/10.1002/malq.19890350505 +Michael Deutsch 0001,Eine Verschärfung Eines Satzes von Kostyrko zur Reduktionstheorie mit Einer Anwendung Auf die Spektrale Darstellung von Prädikaten.,1987,33,Math. Log. Q.,4,db/journals/mlq/mlq33.html#Deutsch87a,https://doi.org/10.1002/malq.19870330410 +Eva Leenknegt,Cell decomposition and definable functions for weak p-adic structures.,2012,58,Math. Log. Q.,6,db/journals/mlq/mlq58.html#Leenknegt12,https://doi.org/10.1002/malq.201200031 +Ivan Marques,On speedability of recursively enumerable sets.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Marques75,https://doi.org/10.1002/malq.19750210128 +Jan Kuper,An Application of Non-Wellfounded Sets to the Foundations of Geometry.,1991,37,Math. Log. Q.,17,db/journals/mlq/mlq37.html#Kuper91,https://doi.org/10.1002/malq.19910371702 +Pierluigi Minari,A Note on a Subsystem Of Intuitionistic Logic with Constant Domains.,1987,33,Math. Log. Q.,5,db/journals/mlq/mlq33.html#Minari87a,https://doi.org/10.1002/malq.19870330502 +Su Gao,A note on equivalence relations and#8467*p(ℓ*q).,2015,61,Math. Log. Q.,6,db/journals/mlq/mlq61.html#GaoY15,https://doi.org/10.1002/malq.201500051 +Marat Kh. Faizrahmanov,Limitwise monotonic sets of reals.,2015,61,Math. Log. Q.,3,db/journals/mlq/mlq61.html#FaizrahmanovK15,https://doi.org/10.1002/malq.201400015 +,,,,,,, +Isabel Oitavem,Characterizing PSPACE with pointers.,2008,54,Math. Log. Q.,3,db/journals/mlq/mlq54.html#Oitavem08,https://doi.org/10.1002/malq.200610056 +Martin K. Solomon,Relativized Gödel speed-up and the degree of succinctness of representations.,1990,36,Math. Log. Q.,3,db/journals/mlq/mlq36.html#Solomon90,https://doi.org/10.1002/malq.19900360302 +Rod Downey,On a Question of a. Retzlaff.,1983,29,Math. Log. Q.,6,db/journals/mlq/mlq29.html#Downey83,https://doi.org/10.1002/malq.19830290605 +Michael Zakharyaschev,All Finitely Axiomatizable Normal Extensions of K4.3 are Decidable.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#ZakharyaschevA95,https://doi.org/10.1002/malq.19950410103 +,,,,,,, +Paul E. Howard,On vector spaces over specific fields without choice.,2013,59,Math. Log. Q.,3,db/journals/mlq/mlq59.html#HowardT13,https://doi.org/10.1002/malq.201200049 +Jana Maríková,Geometric properties of semilinear and semibounded sets.,2006,52,Math. Log. Q.,2,db/journals/mlq/mlq52.html#Marikova06,https://doi.org/10.1002/malq.200510026 +,,,,,,, +Sergio A. Celani,Distributive Lattices with a Negation Operator.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#Celani99,https://doi.org/10.1002/malq.19990450206 +Douglas S. Bridges,A Note on Morse's Lambda-Notation in Set Theory.,1978,24,Math. Log. Q.,8,db/journals/mlq/mlq24.html#Bridges78,https://doi.org/10.1002/malq.19780240802 +Andrew E. M. Lewis,The minimal complementation property above 0'.,2005,51,Math. Log. Q.,5,db/journals/mlq/mlq51.html#Lewis05,https://doi.org/10.1002/malq.200410044 +Ernest Schimmerling,Collapsing functions.,2004,50,Math. Log. Q.,1,db/journals/mlq/mlq50.html#SchimmerlingV04,https://doi.org/10.1002/malq.200310069 +,,,,,,, +Arthur W. Apter,Indestructibility and level by level equivalence and inequivalence.,2007,53,Math. Log. Q.,1,db/journals/mlq/mlq53.html#Apter07,https://doi.org/10.1002/malq.200610028 +Takahito Aoto 0001,On the Finite Model Property of Intuitionistic Modal Logics over MIPC.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#AotoS99,https://doi.org/10.1002/malq.19990450402 +Mihai Prunescu,P != NP for all infinite Boolean algebras.,2003,49,Math. Log. Q.,2,db/journals/mlq/mlq49.html#Prunescu03,https://doi.org/10.1002/malq.200310020 +Michal Krynicki,On Some Applications of Games for Härtig Quantifier.,1987,33,Math. Log. Q.,4,db/journals/mlq/mlq33.html#Krynicki87,https://doi.org/10.1002/malq.19870330411 +Akito Tsuboi,Categoricity and Non-Orthogonality of Types.,1987,33,Math. Log. Q.,4,db/journals/mlq/mlq33.html#Tsuboi87,https://doi.org/10.1002/malq.19870330408 +Salma Kuhlmann,Comparison of exponential-logarithmic and logarithmic-exponential series.,2012,58,Math. Log. Q.,6,db/journals/mlq/mlq58.html#KuhlmannT12,https://doi.org/10.1002/malq.201100113 +,,,,,,, +Thierry Lacoste,A Simplified Proof of the 0-1 Law for Existential Second-Order Ackermann Sentences.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#Lacoste97,https://doi.org/10.1002/malq.19970430314 +Norman Danner,The weak pigeonhole principle for function classes in S12.,2006,52,Math. Log. Q.,6,db/journals/mlq/mlq52.html#DannerP06,https://doi.org/10.1002/malq.200610015 +Wieslaw Szwast,On the generator problem.,1990,36,Math. Log. Q.,1,db/journals/mlq/mlq36.html#Szwast90,https://doi.org/10.1002/malq.19900360105 +Alan Rose,Generalised Functional Completeness of Sets of M-Valued Sheffer Functions.,1984,30,Math. Log. Q.,12,db/journals/mlq/mlq30.html#Rose84,https://doi.org/10.1002/malq.19840301202 +John C. Simms,Covering Hyperspace with Hypercurves.,1991,37,Math. Log. Q.,25,db/journals/mlq/mlq37.html#Simms91,https://doi.org/10.1002/malq.19910372503 +Andrei A. Kuzichev,The Ambiguous Type Theory is Hereditarily Undecidable.,1992,38,Math. Log. Q.,1,db/journals/mlq/mlq38.html#Kuzichev92,https://doi.org/10.1002/malq.19920380126 +Antonín Sochor,Contribution to the theory of semisets VI: (Non-existence of the class of all absolute natural numbers).,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Sochor75,https://doi.org/10.1002/malq.19750210160 +Qing Zhou,Computable Real-Valued Functions on Recursive Open and Closed Subsets of Euclidean Space.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#Zhou96,https://doi.org/10.1002/malq.19960420132 +John L. Bell,The axiom of choice and the law of excluded middle in weak set theories.,2008,54,Math. Log. Q.,2,db/journals/mlq/mlq54.html#Bell08,https://doi.org/10.1002/malq.200710030 +Shawn Hedman,Quantifier-eliminable locally finite graphs.,2011,57,Math. Log. Q.,2,db/journals/mlq/mlq57.html#HedmanP11,https://doi.org/10.1002/malq.200910130 +Salah Labhalla,Analyse de complexité pour un théorème de Hall sur les fractions continues.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#LabhallaL96,https://doi.org/10.1002/malq.19960420112 +,,,,,,, +Youssef Boudabbous,Sur la détermination d'une relation binaire à partir d'informations locales.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#Boudabbous98,https://doi.org/10.1002/malq.19980440210 +Samuel R. Buss,The quantifier complexity of polynomial-size iterated definitions in first-order logic.,2010,56,Math. Log. Q.,6,db/journals/mlq/mlq56.html#BussJ10,https://doi.org/10.1002/malq.200910111 +Tapani Hyttinen,Finitely generated submodels of an uncountably categorical homogeneous structure.,2004,50,Math. Log. Q.,1,db/journals/mlq/mlq50.html#Hyttinen04,https://doi.org/10.1002/malq.200310079 +Makoto Kikuchi,A Note on Boolos' Proof of the Incompleteness Theorem.,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#Kikuchi94,https://doi.org/10.1002/malq.19940400409 +Michael Lieberman,A topology for galois types in abstract elementary classes.,2011,57,Math. Log. Q.,2,db/journals/mlq/mlq57.html#Lieberman11,https://doi.org/10.1002/malq.200910132 +,,,,,,, +,,,,,,, +,,,,,,, +M. Randall Holmes,On hereditarily small sets in ZF.,2014,60,Math. Log. Q.,3,db/journals/mlq/mlq60.html#Holmes14,https://doi.org/10.1002/malq.201300089 +Vladimir Kanovei,Loeb Measure from the Point of View of a Coin Flipping Game.,1996,42,Math. Log. Q.,,db/journals/mlq/mlq42.html#KanoveiR96,https://doi.org/10.1002/malq.19960420103 +Guido Gherardi,Effective Borel degrees of some topological functions.,2006,52,Math. Log. Q.,6,db/journals/mlq/mlq52.html#Gherardi06,https://doi.org/10.1002/malq.200610021 +,,,,,,, +,,,,,,, +Emil Jerábek,Sequence encoding without induction.,2012,58,Math. Log. Q.,3,db/journals/mlq/mlq58.html#Jerabek12a,https://doi.org/10.1002/malq.201200013 +V. Michele Abrusci,A comparison between lambek syntactic calculus and intuitionistic linear propositional logic.,1990,36,Math. Log. Q.,1,db/journals/mlq/mlq36.html#Abrusci90,https://doi.org/10.1002/malq.19900360103 +,,,,,,, +Mário J. Edmundo,A remark on divisibility of definable groups.,2005,51,Math. Log. Q.,6,db/journals/mlq/mlq51.html#Edmundo05,https://doi.org/10.1002/malq.200510014 +Michael Deutsch 0001,Reduktionstyp und Spektrale Darstellung Mit Dem Präfix.,1991,37,Math. Log. Q.,18,db/journals/mlq/mlq37.html#Deutsch91,https://doi.org/10.1002/malq.19910371802 +,,,,,,, +,,,,,,, +,,,,,,, +Will Boney,A presentation theorem for continuous logic and metric abstract elementary classes.,2017,63,Math. Log. Q.,5,db/journals/mlq/mlq63.html#Boney17,https://doi.org/10.1002/malq.201600058 +Troy Lee,Arithmetical definability over finite structures.,2003,49,Math. Log. Q.,4,db/journals/mlq/mlq49.html#Lee03,https://doi.org/10.1002/malq.200310041 +Marco Cesati,Computation Models for Parameterized Complexity.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#CesatiI97,https://doi.org/10.1002/malq.19970430204 +Shahram Mohsenipour,A generalization of the Keisler-Morley theorem to recursively saturated ordered structures.,2007,53,Math. Log. Q.,3,db/journals/mlq/mlq53.html#Mohsenipour07,https://doi.org/10.1002/malq.200610045 +,,,,,,, +,,,,,,, +Hiroakira Ono,Reflection Principles in Fragments of Peano Arithmetic.,1987,33,Math. Log. Q.,4,db/journals/mlq/mlq33.html#Ono87,https://doi.org/10.1002/malq.19870330407 +,,,,,,, +Kenshi Miyabe,Truth-table Schnorr randomness and truth-table reducible randomness.,2011,57,Math. Log. Q.,3,db/journals/mlq/mlq57.html#Miyabe11,https://doi.org/10.1002/malq.200910128 +Josep Maria Font,The simplest protoalgebraic logic.,2013,59,Math. Log. Q.,6,db/journals/mlq/mlq59.html#Font13,https://doi.org/10.1002/malq.201200052 +Thomas G. McLaughlin,"Correction to my Paper ""Closed Basic Retracing Functions and Hyperimmune Sets"".",1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#McLaughlin76a,https://doi.org/10.1002/malq.19760220138 +Annika Kanckos,Consistency of Heyting arithmetic in natural deduction.,2010,56,Math. Log. Q.,6,db/journals/mlq/mlq56.html#Kanckos10,https://doi.org/10.1002/malq.200910118 +Hassan Sfouli,Definability and nondefinability results for certain o-minimal structures.,2010,56,Math. Log. Q.,5,db/journals/mlq/mlq56.html#Sfouli10,https://doi.org/10.1002/malq.200910105 +George Voutsadakis,Categorical abstract algebraic logic: The Diagram and the Reduction Operator Lemmas.,2007,53,Math. Log. Q.,2,db/journals/mlq/mlq53.html#Voutsadakis07,https://doi.org/10.1002/malq.200610034 +Tarek Sayed Ahmed,A note on substitutions in representable cylindric algebras.,2009,55,Math. Log. Q.,3,db/journals/mlq/mlq55.html#Ahmed09a,https://doi.org/10.1002/malq.200710086 +Thomas Streicher,Shoenfield is Gödel after Krivine.,2007,53,Math. Log. Q.,2,db/journals/mlq/mlq53.html#StreicherK07,https://doi.org/10.1002/malq.200610038 +Gábor Sági,On topological properties of ultraproducts of finite sets.,2005,51,Math. Log. Q.,3,db/journals/mlq/mlq51.html#SagiS05,https://doi.org/10.1002/malq.200410024 +Daniel G. Schwartz,On the Equivalence Between Logic-Free and Logic-Bearing Systems of Primitive Recursive Arithmetic.,1987,33,Math. Log. Q.,3,db/journals/mlq/mlq33.html#Schwartz87a,https://doi.org/10.1002/malq.19870330308 +Daria Spescha,Elementary explicit types and polynomial time operations.,2009,55,Math. Log. Q.,3,db/journals/mlq/mlq55.html#SpeschaS09,https://doi.org/10.1002/malq.200810004 +János Demetrovics,Construction of Large Sets of Clones.,1987,33,Math. Log. Q.,2,db/journals/mlq/mlq33.html#DemetrovicsH87,https://doi.org/10.1002/malq.19870330207 +Walter Felscher,A Linear Parsing Algorithm For Parenthesis Terms.,1989,35,Math. Log. Q.,4,db/journals/mlq/mlq35.html#Felscher89,https://doi.org/10.1002/malq.19890350408 +Mário J. Edmundo,The universal covering homomorphism in o-minimal expansions of groups.,2007,53,Math. Log. Q.,6,db/journals/mlq/mlq53.html#EdmundoE07,https://doi.org/10.1002/malq.200610051 +Erich Grädel,On Preservation Theorems for Two-Variable Logic.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#GradelR99,https://doi.org/10.1002/malq.19990450304 +Hiroshi Aoyama,The Semantic Completeness of a Global Intuitionistic Logic.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#Aoyama98,https://doi.org/10.1002/malq.19980440204 +Olga Kosheleva,An Application of Logic to Combinatorial Geometry: How Many Tetrahedra are Equidecomposable with a Cube?,1994,40,Math. Log. Q.,,db/journals/mlq/mlq40.html#KoshelevaK94,https://doi.org/10.1002/malq.19940400105 +Farzad Didehvar,On a Class of Recursively Enumerable Sets.,1999,45,Math. Log. Q.,,db/journals/mlq/mlq45.html#Didehvar99,https://doi.org/10.1002/malq.19990450405 +Jannis Manakos,On Skala's Set Theory.,1984,30,Math. Log. Q.,35,db/journals/mlq/mlq30.html#Manakos84,https://doi.org/10.1002/malq.19840303503 +çigdem Gencer,On a Question of Phillips.,1997,43,Math. Log. Q.,,db/journals/mlq/mlq43.html#GencerT97,https://doi.org/10.1002/malq.19970430110 +Arthur W. Apter,The first measurable cardinal can be the first uncountable regular cardinal at any successor height.,2014,60,Math. Log. Q.,6,db/journals/mlq/mlq60.html#ApterDK14,https://doi.org/10.1002/malq.201110007 +Stefano Baratella,An infinitary variant of Metric Temporal Logic over dense time domains.,2004,50,Math. Log. Q.,3,db/journals/mlq/mlq50.html#BaratellaM04,https://doi.org/10.1002/malq.200310096 +Karim Nour,S-Storage Operators.,1998,44,Math. Log. Q.,,db/journals/mlq/mlq44.html#Nour98,https://doi.org/10.1002/malq.19980440107 +Jacques Grassin,Γ6*11-Good Inductive Definitions Over The Continuum.,1981,27,Math. Log. Q.,1,db/journals/mlq/mlq27.html#Grassin81,https://doi.org/10.1002/malq.19810270103 +Alex Blum,Two Observations About S5.,1977,23,Math. Log. Q.,36,db/journals/mlq/mlq23.html#Blum77,https://doi.org/10.1002/malq.19770233602 +Serikzhan A. Badaev,A note on partial numberings.,2005,51,Math. Log. Q.,2,db/journals/mlq/mlq51.html#BadaevS05,https://doi.org/10.1002/malq.200310131 +Ronald Fagin,A two-cardinal characterization of double spectra.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Fagin75a,https://doi.org/10.1002/malq.19750210116 +Manuel Abad,Free-decomposability in varieties of semi-Heyting algebras.,2012,58,Math. Log. Q.,3,db/journals/mlq/mlq58.html#AbadCV12,https://doi.org/10.1002/malq.201020092 +Alfredo Burrieza,Analyzing completeness of axiomatic functional systems for temporal and** modal logics.,2010,56,Math. Log. Q.,1,db/journals/mlq/mlq56.html#BurriezaGM10,https://doi.org/10.1002/malq.200810038 +Michael Deutsch 0001,Registermaschinen üBER Quotiententermmengen.,1981,27,Math. Log. Q.,18,db/journals/mlq/mlq27.html#Deutsch81a,https://doi.org/10.1002/malq.19810271802 +H. de Swart,Elements of Intuitionistic Analysis II the Stone-Weierstrass Theorem and Ascoli's Theorem.,1976,22,Math. Log. Q.,1,db/journals/mlq/mlq22.html#Swart76a,https://doi.org/10.1002/malq.19760220158 +Rafael Grimson,Quantifier elimination for elementary geometry and elementary affine geometry.,2012,58,Math. Log. Q.,6,db/journals/mlq/mlq58.html#GrimsonKO12,https://doi.org/10.1002/malq.201100095 +Apoloniusz Tyszka,Two conjectures on the arithmetic in R and C.,2010,56,Math. Log. Q.,2,db/journals/mlq/mlq56.html#Tyszka10,https://doi.org/10.1002/malq.200910004 +S. N. Furs,Syllogistics of Some Theories.,1987,33,Math. Log. Q.,1,db/journals/mlq/mlq33.html#Furs87,https://doi.org/10.1002/malq.19870330105 +,,,,,,, +Winfried Just,Separation Properties of Ideals Over ω*.,1987,33,Math. Log. Q.,3,db/journals/mlq/mlq33.html#JustM87,https://doi.org/10.1002/malq.19870330311 +Marian Alexandru Baroni,Continuity properties of preference relations.,2008,54,Math. Log. Q.,5,db/journals/mlq/mlq54.html#BaroniB08,https://doi.org/10.1002/malq.200710059 +J. Richard Büchi,Deterministic Automata and the Monadic Theory of Ordinals andlt* ω*2.,1983,29,Math. Log. Q.,5,db/journals/mlq/mlq29.html#BuchiZ83,https://doi.org/10.1002/malq.19830290503 +Guo-Jun Wang,A topological characterization of consistency of logic theories in propositional logic.,2006,52,Math. Log. Q.,5,db/journals/mlq/mlq52.html#WangS06,https://doi.org/10.1002/malq.200610007 +Zak Mesyan,The Bergman-Shelah preorder on transformation semigroups.,2012,58,Math. Log. Q.,6,db/journals/mlq/mlq58.html#MesyanMMP12,https://doi.org/10.1002/malq.201200002 +Tristan Kuijpers,Lipschitz extensions of definable p-adic functions.,2015,61,Math. Log. Q.,3,db/journals/mlq/mlq61.html#Kuijpers15,https://doi.org/10.1002/malq.201400014 +Kazuyuki Tanaka,Weak axioms of determinacy and subsystems of analysis I: 8*.,1990,36,Math. Log. Q.,6,db/journals/mlq/mlq36.html#Tanaka90,https://doi.org/10.1002/malq.19900360602 +Riccardo Camerlo,Coloring linear orders with Rado's partial order.,2007,53,Math. Log. Q.,3,db/journals/mlq/mlq53.html#CamerloM07,https://doi.org/10.1002/malq.200710002 +Paul W. Goldberg,Editorial: Math. Log. Quart. 4/2009.,2009,55,Math. Log. Q.,4,db/journals/mlq/mlq55.html#GoldbergR09,https://doi.org/10.1002/malq.200990000 +Walker M. White,On the complexity of categoricity in computable structures.,2003,49,Math. Log. Q.,6,db/journals/mlq/mlq49.html#White03,https://doi.org/10.1002/malq.200310066 +Tarek Sayed Ahmed,On neat embeddings of cylindric algebras.,2009,55,Math. Log. Q.,6,db/journals/mlq/mlq55.html#Ahmed09b,https://doi.org/10.1002/malq.200810028 +Satyadev Nandakumar,A characterization of constructive dimension.,2009,55,Math. Log. Q.,2,db/journals/mlq/mlq55.html#Nandakumar09,https://doi.org/10.1002/malq.200710087 +Stefano Baratella,A note on unbounded metric temporal logic over dense time domains.,2006,52,Math. Log. Q.,5,db/journals/mlq/mlq52.html#BaratellaM06,https://doi.org/10.1002/malq.200510043 +Klaus Denecke,Hybrid Identities and Hybrid Equational Logic.,1995,41,Math. Log. Q.,,db/journals/mlq/mlq41.html#Denecke95,https://doi.org/10.1002/malq.19950410206 +Thierry Coquand,Metric complements of overt closed sets.,2011,57,Math. Log. Q.,4,db/journals/mlq/mlq57.html#CoquandPS11,https://doi.org/10.1002/malq.201010011 +Zarko Mijajlovic,"Regular Relations and the Quantifier ""There Exist uncountably Many"".",1983,29,Math. Log. Q.,3,db/journals/mlq/mlq29.html#MijajlovicH83,https://doi.org/10.1002/malq.19830290304 +,,,,,,, +Joachim Reineke,Minimale Gruppen.,1975,21,Math. Log. Q.,1,db/journals/mlq/mlq21.html#Reineke75,https://doi.org/10.1002/malq.19750210145 +Jules Tindzogho Ntsiri,The Structure of an SL2-module of finite Morley rank.,2017,63,Math. Log. Q.,5,db/journals/mlq/mlq63.html#Ntsiri17,https://doi.org/10.1002/malq.201600021 +Jeff C. Kahn,The Effects of Fluidic Loading on Underwater Contact Sensing with Robotic Fins and Beams.,2016,9,IEEE Trans. Haptics,2,db/journals/toh/toh9.html#KahnT16,https://doi.org/10.1109/TOH.2015.2485200 +Etienne Burdet,Book Review: Human Robotics: Neuromechanics and Motor Control.,2014,7,IEEE Trans. Haptics,2,db/journals/toh/toh7.html#BurdetFMKA14,https://doi.org/10.1109/TOH.2014.2309729 +Nesra Yannier,Using Haptics to Convey Cause-and-Effect Relations in Climate Visualization.,2008,1,IEEE Trans. Haptics,2,db/journals/toh/toh1.html#YannierBTS08,https://doi.org/10.1109/TOH.2008.16 +Lynette A. Jones,News from the Field.,2017,10,IEEE Trans. Haptics,1,db/journals/toh/toh10.html#Jones17a,https://doi.org/10.1109/TOH.2017.2663258 +Bertram J. Unger,The Physical Basis of Perceived Roughness in Virtual Sinusoidal Textures.,2013,6,IEEE Trans. Haptics,4,db/journals/toh/toh6.html#UngerKH13,https://doi.org/10.1109/TOH.2013.35 +Gianni Campion,Fast Calibration of Haptic Texture Synthesis Algorithms.,2009,2,IEEE Trans. Haptics,2,db/journals/toh/toh2.html#CampionH09,https://doi.org/10.1109/TOH.2009.5 +Lei Wei 0002,Haptic Collision Detection on Disjoint Objects with Overlapping and Inclusive Bounding Volumes.,2018,11,IEEE Trans. Haptics,1,db/journals/toh/toh11.html#WeiZN18,https://doi.org/10.1109/TOH.2017.2749221 +Inwook Hwang,Real-Time Dual-Band Haptic Music Player for Mobile Devices.,2013,6,IEEE Trans. Haptics,3,db/journals/toh/toh6.html#HwangLC13,https://doi.org/10.1109/TOH.2013.7 +Clemens Schuwerk,On the Transparency of Client/Server-Based Haptic Interaction with Deformable Objects.,2017,10,IEEE Trans. Haptics,2,db/journals/toh/toh10.html#SchuwerkXS17,https://doi.org/10.1109/TOH.2016.2612635 +William R. Provancher,Fingerpad Skin Stretch Increases the Perception of Virtual Friction.,2009,2,IEEE Trans. Haptics,4,db/journals/toh/toh2.html#ProvancherS09,https://doi.org/10.1109/TOH.2009.34 +Ali Talasaz,The Role of Direct and Visual Force Feedback in Suturing Using a 7-DOF Dual-Arm Teleoperated System.,2017,10,IEEE Trans. Haptics,2,db/journals/toh/toh10.html#TalasazTP17,https://doi.org/10.1109/TOH.2016.2616874 +Dianne T. V. Pawluk,Designing Haptic Assistive Technology for Individuals Who Are Blind or Visually Impaired.,2015,8,IEEE Trans. Haptics,3,db/journals/toh/toh8.html#PawlukAK15,https://doi.org/10.1109/TOH.2015.2471300 +Pawel Malysz,Task Performance Evaluation of Asymmetric Semiautonomous Teleoperation of Mobile Twin-Arm Robotic Manipulators.,2013,6,IEEE Trans. Haptics,4,db/journals/toh/toh6.html#MalyszS13,https://doi.org/10.1109/TOH.2013.23 +Randall B. Hellman,Functional Contour-following via Haptic Perception and Reinforcement Learning.,2018,11,IEEE Trans. Haptics,1,db/journals/toh/toh11.html#HellmanTSS18,https://doi.org/10.1109/TOH.2017.2753233 +J. Edward Colgate,EIC Editorial.,2013,6,IEEE Trans. Haptics,4,db/journals/toh/toh6.html#Colgate13a,https://doi.org/10.1109/TOH.2013.69 +Harold Soh,Incrementally Learning Objects by Touch: Online Discriminative and Generative Models for Tactile-Based Recognition.,2014,7,IEEE Trans. Haptics,4,db/journals/toh/toh7.html#SohD14,https://doi.org/10.1109/TOH.2014.2326159 +Shunsuke Yoshimoto,Electrotactile Augmentation for Carving Guidance.,2016,9,IEEE Trans. Haptics,1,db/journals/toh/toh9.html#YoshimotoKIONTM16,https://doi.org/10.1109/TOH.2015.2479229 +Joe Mullenbach,Student Innovation Challenge at the World Haptics Conference 2015: Teams Create Haptic Apps for the TPad Phone.,2015,8,IEEE Trans. Haptics,3,db/journals/toh/toh8.html#Mullenbach15,https://doi.org/10.1109/TOH.2015.2468092 +Antonio Frisoli,Guest Editorial: Special Issue on Haptics in Rehabilitation and Neural Engineering.,2014,7,IEEE Trans. Haptics,2,db/journals/toh/toh7.html#FrisoliOCS14,https://doi.org/10.1109/TOH.2014.2313760 +Carlo Alberto Avizzano,Portable Haptic Interface with Omni-Directional Movement and Force Capability.,2014,7,IEEE Trans. Haptics,2,db/journals/toh/toh7.html#AvizzanoSR14,https://doi.org/10.1109/TOH.2014.2310462 +Hiroyuki Kajimoto,Electrotactile Display with Real-Time Impedance Feedback Using Pulse Width Modulation.,2012,5,IEEE Trans. Haptics,2,db/journals/toh/toh5.html#Kajimoto12,https://doi.org/10.1109/TOH.2011.39 +Dangxiao Wang,Haptic Simulation of Organ Deformationand Hybrid Contacts in Dental Operations.,2014,7,IEEE Trans. Haptics,1,db/journals/toh/toh7.html#WangSLZX14,https://doi.org/10.1109/TOH.2014.2304734 +Jernej Barbic,Six-DoF Haptic Rendering of Contact Between Geometrically Complex Reduced Deformable Models.,2008,1,IEEE Trans. Haptics,1,db/journals/toh/toh1.html#BarbicJ08,https://doi.org/10.1109/TOH.2008.1 +Kenya Matsui,Relative Contribution Ratios of Skin andProprioceptive Sensations in Perception of Force Applied to Fingertip.,2014,7,IEEE Trans. Haptics,1,db/journals/toh/toh7.html#MatsuiOY14,https://doi.org/10.1109/TOH.2013.71 +Jeroen H. Hogema,A Tactile Seat for Direction Coding in Car Driving: Field Evaluation.,2009,2,IEEE Trans. Haptics,4,db/journals/toh/toh2.html#HogemaVEK09,https://doi.org/10.1109/TOH.2009.35 +Yoshiyuki Tanaka,Analysis of Operational Comfort in Manual Tasks Using Human Force Manipulability Measure.,2015,8,IEEE Trans. Haptics,1,db/journals/toh/toh8.html#TanakaNYT15,https://doi.org/10.1109/TOH.2014.2371025 +Giulio Rosati,Effects of Kinesthetic and Cutaneous Stimulation During the Learning of a Viscous Force Field.,2014,7,IEEE Trans. Haptics,2,db/journals/toh/toh7.html#RosatiOPP14,https://doi.org/10.1109/TOH.2013.2296312 +Thomas Pietrzak,Creating Usable Pin Array Tactons for Nonvisual Information.,2009,2,IEEE Trans. Haptics,2,db/journals/toh/toh2.html#PietrzakCBMP09,https://doi.org/10.1109/TOH.2009.6 +Mojtaba Azadi,Evaluating Vibrotactile Dimensions for the Design of Tactons.,2014,7,IEEE Trans. Haptics,1,db/journals/toh/toh7.html#AzadiJ14,https://doi.org/10.1109/TOH.2013.2296051 +Thomas Feix,Analysis of Human Grasping Behavior: Object Characteristics and Grasp Type.,2014,7,IEEE Trans. Haptics,3,db/journals/toh/toh7.html#FeixBD14,https://doi.org/10.1109/TOH.2014.2326871 +Neil Forrest,A Comparative Study of Haptic Stiffness Identification by Veterinarians and Students.,2011,4,IEEE Trans. Haptics,2,db/journals/toh/toh4.html#ForrestBKT11,https://doi.org/10.1109/TOH.2010.57 +Mirela Kahrimanovic,Characterization of the Haptic Shape-Weight Illusion with 3D Objects.,2011,4,IEEE Trans. Haptics,4,db/journals/toh/toh4.html#KahrimanovicTK11,https://doi.org/10.1109/TOH.2011.22 +Yon Visell,Biology to Technology in Active Touch Sensing - Introduction to the Special Section.,2016,9,IEEE Trans. Haptics,2,db/journals/toh/toh9.html#VisellLHH16,https://doi.org/10.1109/TOH.2016.2571458 +Taku Hachisu,Vibration Feedback Latency Affects Material Perception During Rod Tapping Interactions.,2017,10,IEEE Trans. Haptics,2,db/journals/toh/toh10.html#HachisuK17,https://doi.org/10.1109/TOH.2016.2628900 +Susan J. Lederman,Tactile and Haptic Illusions.,2011,4,IEEE Trans. Haptics,4,db/journals/toh/toh4.html#LedermanJ11,https://doi.org/10.1109/TOH.2011.2 +Edvard Naerum,The Effect of Interaction Force Estimation on Performance in Bilateral Teleoperation.,2012,5,IEEE Trans. Haptics,2,db/journals/toh/toh5.html#NaerumEH12,https://doi.org/10.1109/TOH.2011.51 +Dangxiao Wang,Collocation Accuracy of Visuo-Haptic System: Metrics and Calibration.,2011,4,IEEE Trans. Haptics,4,db/journals/toh/toh4.html#WangZZZC11,https://doi.org/10.1109/TOH.2011.17 +Saurabh Dargar,Development of a Haptic Interface for Natural Orifice Translumenal Endoscopic Surgery Simulation.,2016,9,IEEE Trans. Haptics,3,db/journals/toh/toh9.html#DargarDS16,https://doi.org/10.1109/TOH.2016.2543224 +Klas Kronander,Learning Compliant Manipulation through Kinesthetic and Tactile Human-Robot Interaction.,2014,7,IEEE Trans. Haptics,3,db/journals/toh/toh7.html#KronanderB14,https://doi.org/10.1109/TOH.2013.54 +Verena Nitsch,A Meta-Analysis of the Effects of Haptic Interfaces on Task Performance with Teleoperation Systems.,2013,6,IEEE Trans. Haptics,4,db/journals/toh/toh6.html#NitschF13,https://doi.org/10.1109/TOH.2012.62 +Gianni Borghesan,Interconnection and Simulation Issues in Haptics.,2010,3,IEEE Trans. Haptics,4,db/journals/toh/toh3.html#BorghesanMM10,https://doi.org/10.1109/TOH.2010.24 +Fabien Danieau,Enhancing Audiovisual Experience with Haptic Feedback: A Survey on HAV.,2013,6,IEEE Trans. Haptics,2,db/journals/toh/toh6.html#DanieauLGFMC13,https://doi.org/10.1109/TOH.2012.70 +Nikolai Hungr,Dynamic Physical Constraints: Emulating Hard Surfaces with High Realism.,2012,5,IEEE Trans. Haptics,1,db/journals/toh/toh5.html#HungrRHP12,https://doi.org/10.1109/TOH.2011.50 +Danny Grant,Guest Editorial for Special Section on Consumer Electronics.,2012,5,IEEE Trans. Haptics,1,db/journals/toh/toh5.html#GrantCM12,https://doi.org/10.1109/TOH.2012.11 +Femke E. van Beek,Anisotropy in the Haptic Perception of Force Direction and Magnitude.,2013,6,IEEE Trans. Haptics,4,db/journals/toh/toh6.html#BeekTK13,https://doi.org/10.1109/TOH.2013.37 +J. Edward Colgate,EIC Editorial.,2012,5,IEEE Trans. Haptics,1,db/journals/toh/toh5.html#Colgate12,https://doi.org/10.1109/TOH.2012.10 +Seokhee Jeon,Rendering Virtual Tumors in Real Tissue Mock-Ups Using Haptic Augmented Reality.,2012,5,IEEE Trans. Haptics,1,db/journals/toh/toh5.html#JeonCH12,https://doi.org/10.1109/TOH.2011.40 +Hsiang-Yu Chen,Design and Evaluation of Identifiable Key-Click Signals for Mobile Devices.,2011,4,IEEE Trans. Haptics,4,db/journals/toh/toh4.html#ChenPDT11,https://doi.org/10.1109/TOH.2011.21 +John F. Soechting,Multiple Factors Underlying Haptic Perception of Length and Orientation.,2011,4,IEEE Trans. Haptics,4,db/journals/toh/toh4.html#SoechtingF11,https://doi.org/10.1109/TOH.2011.18 +Frédéric Giraud,Modeling and Compensation of the Internal Friction Torque of a Travelling Wave Ultrasonic Motor.,2011,4,IEEE Trans. Haptics,4,db/journals/toh/toh4.html#GiraudSALI11,https://doi.org/10.1109/TOH.2011.20 +Roberta L. Klatzky,Please Touch: Object Properties that Invite Touch.,2012,5,IEEE Trans. Haptics,2,db/journals/toh/toh5.html#KlatzkyP12,https://doi.org/10.1109/TOH.2011.54 +Dangxiao Wang,Force Maintenance Accuracy Using a Tool: Effects of Magnitude and Feedback.,2016,9,IEEE Trans. Haptics,3,db/journals/toh/toh9.html#WangJYZ16,https://doi.org/10.1109/TOH.2016.2535216 +Tatsuma Sakurai,Sharp Tactile Line Presentation Using Edge Stimulation Method.,2016,9,IEEE Trans. Haptics,1,db/journals/toh/toh9.html#SakuraiKS16,https://doi.org/10.1109/TOH.2015.2477839 +Brian T. Gleeson,Design of a Fingertip-Mounted Tactile Display with Tangential Skin Displacement Feedback.,2010,3,IEEE Trans. Haptics,4,db/journals/toh/toh3.html#GleesonHP10a,https://doi.org/10.1109/TOH.2010.8 +Lynette A. Jones,News from the Field.,2016,9,IEEE Trans. Haptics,3,db/journals/toh/toh9.html#Jones16a,https://doi.org/10.1109/TOH.2016.2601169 +Samuel H. L. McAmis,Simultaneous Perception of Forces and Motions Using Bimanual Interactions.,2012,5,IEEE Trans. Haptics,3,db/journals/toh/toh5.html#McAmisR12,https://doi.org/10.1109/TOH.2012.39 +Luca Turchet,Haptic Feedback for Enhancing Realism of Walking Simulations.,2013,6,IEEE Trans. Haptics,1,db/journals/toh/toh6.html#TurchetBS13,https://doi.org/10.1109/TOH.2012.51 +Lynette A. Jones,Application of Psychophysical Techniques to Haptic Research.,2013,6,IEEE Trans. Haptics,3,db/journals/toh/toh6.html#JonesT13,https://doi.org/10.1109/TOH.2012.74 +Felix C. Huang,Learning Kinematic Constraints in Laparoscopic Surgery.,2012,5,IEEE Trans. Haptics,4,db/journals/toh/toh5.html#HuangMPP12,https://doi.org/10.1109/TOH.2011.52 +Brian T. Gleeson,Mental Rotation of Tactile Stimuli: Using Directional Haptic Cues in Mobile Devices.,2013,6,IEEE Trans. Haptics,3,db/journals/toh/toh6.html#GleesonP13,https://doi.org/10.1109/TOH.2013.5 +Ian R. Summers,Structure of the Pacinian Corpuscle: Insights Provided by Improved Mechanical Modeling.,2018,11,IEEE Trans. Haptics,1,db/journals/toh/toh11.html#SummersPW18,https://doi.org/10.1109/TOH.2017.2769648 +Jeffrey B. Wagman,Taking the other cinderella to the ball: a review of psychology of touch and blindness by morton a. heller and edouard gentaz [book review].,2015,8,IEEE Trans. Haptics,3,db/journals/toh/toh8.html#Wagman15,https://doi.org/10.1109/TOH.2015.2452671 +Francisco Oliveira,The Haptic Deictic System - HDS: Bringing Blind Students to Mainstream Classrooms.,2012,5,IEEE Trans. Haptics,2,db/journals/toh/toh5.html#OliveiraQCF12,https://doi.org/10.1109/TOH.2011.35 +Gabriel Baud-Bovy,Ability of Low-Cost Force-Feedback Device to Influence Postural Stability.,2015,8,IEEE Trans. Haptics,2,db/journals/toh/toh8.html#Baud-BovyTB15,https://doi.org/10.1109/TOH.2014.2369057 +Susan J. Lederman,Haptic Processing of Facial Expressions of Emotion in 2D Raised-Line Drawings.,2008,1,IEEE Trans. Haptics,1,db/journals/toh/toh1.html#LedermanKRLNH08,https://doi.org/10.1109/TOH.2008.3 +Amir Haddadi,Bounded-Impedance Absolute Stability of Bilateral Teleoperation Control Systems.,2010,3,IEEE Trans. Haptics,1,db/journals/toh/toh3.html#HaddadiH10,https://doi.org/10.1109/TOH.2009.48 +Julius Klein,3DOM: A 3 Degree of Freedom Manipulandum to Investigate Redundant Motor Control.,2014,7,IEEE Trans. Haptics,2,db/journals/toh/toh7.html#KleinRB14,https://doi.org/10.1109/TOH.2013.59 +Eileen Lee Ming Su,Effect of Grip Force and Training in Unstable Dynamics on Micromanipulation Accuracy.,2011,4,IEEE Trans. Haptics,3,db/journals/toh/toh4.html#SuGYTAB11,https://doi.org/10.1109/TOH.2011.33 +Takumi Yokosaka,Estimating Tactile Perception by Observing Explorative Hand Motion of Others.,2018,11,IEEE Trans. Haptics,2,db/journals/toh/toh11.html#YokosakaKWN18,https://doi.org/10.1109/TOH.2017.2775631 +Randy Lee,In-Situ Force Augmentation Improves Surface Contact and Force Control.,2017,10,IEEE Trans. Haptics,4,db/journals/toh/toh10.html#LeeKS17,https://doi.org/10.1109/TOH.2017.2696949 +Claudio Pacchierotti,Teleoperation of Steerable Flexible Needles by Combining Kinesthetic and Vibratory Feedback.,2014,7,IEEE Trans. Haptics,4,db/journals/toh/toh7.html#PacchierottiAMP14,https://doi.org/10.1109/TOH.2014.2360185 +Gareth W. Young,Haptics in Music: The Effects of Vibrotactile Stimulus in Low Frequency Auditory Difference Detection Tasks.,2017,10,IEEE Trans. Haptics,1,db/journals/toh/toh10.html#YoungMW17,https://doi.org/10.1109/TOH.2016.2646370 +Karon E. MacLean,Foundations of Transparency in Tactile Information Design.,2008,1,IEEE Trans. Haptics,2,db/journals/toh/toh1.html#MacLean08,https://doi.org/10.1109/TOH.2008.20 +Cristy Ho,Reorienting Driver Attentionwith Dynamic Tactile Cues.,2014,7,IEEE Trans. Haptics,1,db/journals/toh/toh7.html#HoGS14,https://doi.org/10.1109/TOH.2013.62 +Jonas Schmidtler,Influence of Size-Weight Illusion on Usability in Haptic Human-Robot Collaboration.,2018,11,IEEE Trans. Haptics,1,db/journals/toh/toh11.html#SchmidtlerB18,https://doi.org/10.1109/TOH.2017.2757925 +Zhan Fan Quek,Sensory Substitution and Augmentation Using 3-Degree-of-Freedom Skin Deformation Feedback.,2015,8,IEEE Trans. Haptics,2,db/journals/toh/toh8.html#QuekSNPO15,https://doi.org/10.1109/TOH.2015.2398448 +Gastone Pietro Rosati Papini,Desktop Haptic Interface for Simulation of Hand-Tremor.,2016,9,IEEE Trans. Haptics,1,db/journals/toh/toh9.html#PapiniFB16,https://doi.org/10.1109/TOH.2015.2504971 +Dane Powell,The Task-Dependent Efficacy of Shared-Control Haptic Guidance Paradigms.,2012,5,IEEE Trans. Haptics,3,db/journals/toh/toh5.html#PowellO12,https://doi.org/10.1109/TOH.2012.40 +Lynette A. Jones,News from the Field.,2015,8,IEEE Trans. Haptics,3,db/journals/toh/toh8.html#Jones15a,https://doi.org/10.1109/TOH.2015.2464731 +Juan Jose Zarate,Using Pot-Magnets to Enable Stable and Scalable Electromagnetic Tactile Displays.,2017,10,IEEE Trans. Haptics,1,db/journals/toh/toh10.html#ZarateS17,https://doi.org/10.1109/TOH.2016.2591951 +Andrew Theriault,Design and Development of an AffordableHaptic Robot with Force-Feedback andCompliant Actuation to Improve Therapyfor Patients with Severe Hemiparesis.,2014,7,IEEE Trans. Haptics,2,db/journals/toh/toh7.html#TheriaultNJ14,https://doi.org/10.1109/TOH.2013.51 +Shogo Okamoto,Psychophysical Dimensions of Tactile Perception of Textures.,2013,6,IEEE Trans. Haptics,1,db/journals/toh/toh6.html#OkamotoNY13,https://doi.org/10.1109/TOH.2012.32 +Allan Barrea,Simple and Reliable Method to Estimate the Fingertip Static Coefficient of Friction in Precision Grip.,2016,9,IEEE Trans. Haptics,4,db/journals/toh/toh9.html#BarreaBLT16,https://doi.org/10.1109/TOH.2016.2609921 +Daniel K. Y. Chen,Lower Extremity Lateral Skin Stretch Perception for Haptic Feedback.,2016,9,IEEE Trans. Haptics,1,db/journals/toh/toh9.html#ChenAWB16,https://doi.org/10.1109/TOH.2016.2516012 +Christian Hatzfeld,Vibrotactile Force Perception - Absolute and Differential Thresholds and External Influences.,2016,9,IEEE Trans. Haptics,4,db/journals/toh/toh9.html#HatzfeldCKW16,https://doi.org/10.1109/TOH.2016.2571694 +Jeremy D. Brown,Non-Colocated Kinesthetic Display Limits Compliance Discrimination in the Absence of Terminal Force Cues.,2016,9,IEEE Trans. Haptics,3,db/journals/toh/toh9.html#BrownSGGG16,https://doi.org/10.1109/TOH.2016.2554120 +Claudio Pacchierotti,Enhancing the Performance of Passive Teleoperation Systems via Cutaneous Feedback.,2015,8,IEEE Trans. Haptics,4,db/journals/toh/toh8.html#PacchierottiTBP15,https://doi.org/10.1109/TOH.2015.2457927 +German H. Flores,Vibrotactile Guidance for Wayfinding of Blind Walkers.,2015,8,IEEE Trans. Haptics,3,db/journals/toh/toh8.html#FloresKMMMS15,https://doi.org/10.1109/TOH.2015.2409980 +Aaron Plauche,A Haptic Feedback System for Phase-Based Sensory Restoration in Above-Knee Prosthetic Leg Users.,2016,9,IEEE Trans. Haptics,3,db/journals/toh/toh9.html#PlaucheVG16,https://doi.org/10.1109/TOH.2016.2580507 +Katherine O. Sofia,Mechanical and Psychophysical Studies of Surface Wave Propagation during Vibrotactile Stimulation.,2013,6,IEEE Trans. Haptics,3,db/journals/toh/toh6.html#SofiaJ13,https://doi.org/10.1109/TOH.2013.1 +Timothy Richard Coles,The Role of Haptics in Medical Training Simulators: A Survey of the State of the Art.,2011,4,IEEE Trans. Haptics,1,db/journals/toh/toh4.html#ColesMJ11,https://doi.org/10.1109/TOH.2010.19 +Karlin Bark,Rotational Skin Stretch Feedback: A Wearable Haptic Display for Motion.,2010,3,IEEE Trans. Haptics,3,db/journals/toh/toh3.html#BarkWSSC10,https://doi.org/10.1109/TOH.2010.21 +Shogo Okamoto,Lossy Data Compression of Vibrotactile Material-Like Textures.,2013,6,IEEE Trans. Haptics,1,db/journals/toh/toh6.html#OkamotoY13,https://doi.org/10.1109/TOH.2012.18 +Tomohiro Amemiya,Active Manual Movement Improves Directional Perception of Illusory Force.,2016,9,IEEE Trans. Haptics,4,db/journals/toh/toh9.html#AmemiyaG16,https://doi.org/10.1109/TOH.2016.2587624 +Jean-Claude Metzger,Neurocognitive Robot-Assisted Therapy of Hand Function.,2014,7,IEEE Trans. Haptics,2,db/journals/toh/toh7.html#MetzgerLCCG14,https://doi.org/10.1109/TOH.2013.72 +Delphine Picard,Haptic Recognition of Emotions in Raised-Line Drawings by Congenitally Blind and Sighted Adults.,2011,4,IEEE Trans. Haptics,1,db/journals/toh/toh4.html#PicardJL11,https://doi.org/10.1109/TOH.2010.58 +Luke Osborn,Neuromimetic Event-Based Detection for Closed-Loop Tactile Feedback Control of Upper Limb Prostheses.,2016,9,IEEE Trans. Haptics,2,db/journals/toh/toh9.html#OsbornKST16,https://doi.org/10.1109/TOH.2016.2564965 +Reza Haghighi Osgouei,Improving 3D Shape Recognition withElectrostatic Friction Display.,2017,10,IEEE Trans. Haptics,4,db/journals/toh/toh10.html#OsgoueiKC17,https://doi.org/10.1109/TOH.2017.2710314 +Tara A. McGregor,Haptic Classification of Facial Identity in 2D Displays: Configural versus Feature-Based Processing.,2010,3,IEEE Trans. Haptics,1,db/journals/toh/toh3.html#McGregorKHL10,https://doi.org/10.1109/TOH.2009.49 +Christopher T. Asque,Haptic-Assisted Target Acquisition in a Visual Point-and-Click Task for Computer Users with Motion Impairments.,2012,5,IEEE Trans. Haptics,2,db/journals/toh/toh5.html#AsqueDL12,https://doi.org/10.1109/TOH.2011.55 +J. Edward Colgate,EIC Editorial.,2011,4,IEEE Trans. Haptics,1,db/journals/toh/toh4.html#Colgate11,https://doi.org/10.1109/TOH.2011.13 +Kyle B. Reed,Physical Collaboration of Human-Human and Human-Robot Teams.,2008,1,IEEE Trans. Haptics,2,db/journals/toh/toh1.html#ReedP08,https://doi.org/10.1109/TOH.2008.13 +Jeonggoo Kang,Investigation on Low Voltage Operation of Electrovibration Display.,2017,10,IEEE Trans. Haptics,3,db/journals/toh/toh10.html#KangKCKR17,https://doi.org/10.1109/TOH.2016.2635145 +Marta Franceschi,A System for Electrotactile Feedback Using Electronic Skin and Flexible Matrix Electrodes: Experimental Evaluation.,2017,10,IEEE Trans. Haptics,2,db/journals/toh/toh10.html#FranceschiSDSVF17,https://doi.org/10.1109/TOH.2016.2618377 +Carolina Passenberg,Exploring the Design Space of Haptic Assistants: The Assistance Policy Module.,2013,6,IEEE Trans. Haptics,4,db/journals/toh/toh6.html#PassenbergGP13,https://doi.org/10.1109/TOH.2013.34 +Huanhuan Qin,A Multi-Finger Interface with MR Actuators for Haptic Applications.,2018,11,IEEE Trans. Haptics,1,db/journals/toh/toh11.html#QinSGLJ18,https://doi.org/10.1109/TOH.2017.2709321 +Laura Raya,A New User-Adapted Search Haptic Algorithm to Navigate along Filiform Structures.,2014,7,IEEE Trans. Haptics,3,db/journals/toh/toh7.html#RayaBPG14,https://doi.org/10.1109/TOH.2014.2324574 +Sofiane Ghenna,Enhancing Variable Friction Tactile Display Using an Ultrasonic Travelling Wave.,2017,10,IEEE Trans. Haptics,2,db/journals/toh/toh10.html#GhennaVGGAL17,https://doi.org/10.1109/TOH.2016.2607200 +Satoshi Saga,Precise Shape Reconstruction by ActivePattern in Total-Internal-Reflection-BasedTactile Sensor.,2014,7,IEEE Trans. Haptics,1,db/journals/toh/toh7.html#SagaTD14,https://doi.org/10.1109/TOH.2013.61 +Sabrina A. Panëels,Review of Designs for Haptic Data Visualization.,2010,3,IEEE Trans. Haptics,2,db/journals/toh/toh3.html#PaneelsR10,https://doi.org/10.1109/TOH.2009.44 +Joseph M. Romano,Creating Realistic Virtual Textures from Contact Acceleration Data.,2012,5,IEEE Trans. Haptics,2,db/journals/toh/toh5.html#RomanoK12,https://doi.org/10.1109/TOH.2011.38 +Yongjae Yoo,Consonance of Vibrotactile Chords.,2014,7,IEEE Trans. Haptics,1,db/journals/toh/toh7.html#YooHC14,https://doi.org/10.1109/TOH.2013.57 +Jaeha Kim,Depth Cube-Based Six Degree-of-Freedom Haptic Rendering for Rigid Bodies.,2015,8,IEEE Trans. Haptics,4,db/journals/toh/toh8.html#KimLR15,https://doi.org/10.1109/TOH.2015.2422298 +Jussi Rantala,The Role of Gesture Types and Spatial Feedback in Haptic Communication.,2011,4,IEEE Trans. Haptics,4,db/journals/toh/toh4.html#RantalaRLARRMSS11,https://doi.org/10.1109/TOH.2011.4 +Julie M. Walker,Tactile Feedback of Object Slip Facilitates Virtual Object Manipulation.,2015,8,IEEE Trans. Haptics,4,db/journals/toh/toh8.html#WalkerBSO15,https://doi.org/10.1109/TOH.2015.2420096 +Strahinja Dosen,A Novel Method to Generate Amplitude-Frequency Modulated Vibrotactile Stimulation.,2016,9,IEEE Trans. Haptics,1,db/journals/toh/toh9.html#DosenNYDF16,https://doi.org/10.1109/TOH.2015.2497229 +Thomas Grieve,Optimizing Fingernail Imaging Calibration for 3D Force Magnitude Prediction.,2016,9,IEEE Trans. Haptics,1,db/journals/toh/toh9.html#GrieveHM16,https://doi.org/10.1109/TOH.2015.2468229 +Joao Rebelo,Time Domain Passivity Controller for 4-Channel Time-Delay Bilateral Teleoperation.,2015,8,IEEE Trans. Haptics,1,db/journals/toh/toh8.html#RebeloS15,https://doi.org/10.1109/TOH.2014.2363466 +Alexandra Lezkan,Multiple Fingers - One Gestalt.,2016,9,IEEE Trans. Haptics,2,db/journals/toh/toh9.html#LezkanMCKPD16,https://doi.org/10.1109/TOH.2016.2524000 +Dangxiao Wang,Six Degree-of-Freedom Haptic Simulation of a Stringed Musical Instrument for Triggering Sounds.,2017,10,IEEE Trans. Haptics,2,db/journals/toh/toh10.html#WangZSZX17,https://doi.org/10.1109/TOH.2016.2628369 +Ginga Kato,Design and Psychophysical Evaluation of the HapSticks: A Novel Non-Grounded Mechanism for Presenting Tool-Mediated Vertical Forces.,2017,10,IEEE Trans. Haptics,3,db/journals/toh/toh10.html#KatoKNKT17,https://doi.org/10.1109/TOH.2016.2636824 +Seyed Farokh Atashzar,Haptic Feedback Manipulation During Botulinum Toxin Injection Therapy for Focal Hand Dystonia Patients: A Possible New Assistive Strategy.,2016,9,IEEE Trans. Haptics,4,db/journals/toh/toh9.html#AtashzarSWSDRLJ16,https://doi.org/10.1109/TOH.2016.2601605 +Antoine Lassagne,Performance Evaluation of Passive Haptic Feedback for Tactile HMI Design in CAVEs.,2018,11,IEEE Trans. Haptics,1,db/journals/toh/toh11.html#LassagneKPM18,https://doi.org/10.1109/TOH.2017.2755653 +Igor Peterlík,Constraint-Based Haptic Rendering of Multirate Compliant Mechanisms.,2011,4,IEEE Trans. Haptics,3,db/journals/toh/toh4.html#PeterlikNDCK11,https://doi.org/10.1109/TOH.2011.41 +Waseem Hassan,Towards Universal Haptic Library: Library-Based Haptic Texture Assignment Using Image Texture and Perceptual Space.,2018,11,IEEE Trans. Haptics,2,db/journals/toh/toh11.html#HassanAAAJ18,https://doi.org/10.1109/TOH.2017.2782279 +Teemu Tuomas Ahmaniemi,Design of Dynamic Vibrotactile Textures.,2010,3,IEEE Trans. Haptics,4,db/journals/toh/toh3.html#AhmaniemiML10,https://doi.org/10.1109/TOH.2010.22 +Ilia G. Polushin,${{\cal L}}_2$ -Stability of Haptic Systems with Projection-Based Force Reflection.,2014,7,IEEE Trans. Haptics,3,db/journals/toh/toh7.html#PolushinH14,https://doi.org/10.1109/TOH.2014.2305437 +Shunsuke Yoshimoto,Material Roughness Modulation via Electrotactile Augmentation.,2015,8,IEEE Trans. Haptics,2,db/journals/toh/toh8.html#YoshimotoKIO15,https://doi.org/10.1109/TOH.2015.2412942 +Dangxiao Wang,Six Degree-of-Freedom Haptic Simulation of Probing Dental Caries Within a Narrow Oral Cavity.,2016,9,IEEE Trans. Haptics,2,db/journals/toh/toh9.html#WangZSZHX16,https://doi.org/10.1109/TOH.2016.2531660 +Pietro Cerveri,A Novel Wearable Apparatus to Measure Fingertip Forces in Manipulation Tasks Based on MEMS Barometric Sensors.,2017,10,IEEE Trans. Haptics,3,db/journals/toh/toh10.html#CerveriQBF17,https://doi.org/10.1109/TOH.2016.2636822 +J. Edward Colgate,Editorial.,2013,6,IEEE Trans. Haptics,1,db/journals/toh/toh6.html#Colgate13,https://doi.org/10.1109/TOH.2013.16 +Lynette A. Jones,News from the Field: Courses in Haptics.,2014,7,IEEE Trans. Haptics,4,db/journals/toh/toh7.html#Jones14c,https://doi.org/10.1109/TOH.2014.2373060 +Matti Strese,Multimodal Feature-Based Surface Material Classification.,2017,10,IEEE Trans. Haptics,2,db/journals/toh/toh10.html#StreseSIS17,https://doi.org/10.1109/TOH.2016.2625787 +Carlos Rossa,Design and Control of a Dual Unidirectional Brake Hybrid Actuation System for Haptic Devices.,2014,7,IEEE Trans. Haptics,4,db/journals/toh/toh7.html#RossaLM14,https://doi.org/10.1109/TOH.2014.2346501 +Mikel Sagardia,Multimodal Evaluation of the Differences between Real and Virtual Assemblies.,2018,11,IEEE Trans. Haptics,1,db/journals/toh/toh11.html#SagardiaH18,https://doi.org/10.1109/TOH.2017.2741488 +Takeshi Tanabe,Evaluation of the Perceptual Characteristics of a Force Induced by Asymmetric Vibrations.,2018,11,IEEE Trans. Haptics,2,db/journals/toh/toh11.html#TanabeYI18,https://doi.org/10.1109/TOH.2017.2743717 +Chung Hyuk Park,Telerobotic Haptic Exploration in Art Galleries and Museums for Individuals with Visual Impairments.,2015,8,IEEE Trans. Haptics,3,db/journals/toh/toh8.html#ParkRH15,https://doi.org/10.1109/TOH.2015.2460253 +Charles Hudin,Localized Tactile Feedback on a Transparent Surface through Time-Reversal Wave Focusing.,2015,8,IEEE Trans. Haptics,2,db/journals/toh/toh8.html#HudinLH15,https://doi.org/10.1109/TOH.2015.2411267 +J. Edward Colgate,EIC Editorial.,2010,3,IEEE Trans. Haptics,4,db/journals/toh/toh3.html#Colgate10a,https://doi.org/10.1109/TOH.2010.54 +Slawa Madelska,News from the Field: Coders and the Creative Unite to Design and Build Apps for Surface Haptics.,2015,8,IEEE Trans. Haptics,2,db/journals/toh/toh8.html#Madelska15,https://doi.org/10.1109/TOH.2015.2438371 +Lynette A. Jones,News from the Field.,2018,11,IEEE Trans. Haptics,2,db/journals/toh/toh11.html#Jones18a,https://doi.org/10.1109/TOH.2018.2837598 +Lukas Kaim,Exploratory Strategies in Haptic Softness Discrimination Are Tuned to Achieve High Levels of Task Performance.,2011,4,IEEE Trans. Haptics,4,db/journals/toh/toh4.html#KaimD11,https://doi.org/10.1109/TOH.2011.19 +Kup-Sze Choi,A Heuristic Force Model for Haptic Simulation of Nasogastric Tube Insertion Using Fuzzy Logic.,2016,9,IEEE Trans. Haptics,3,db/journals/toh/toh9.html#ChoiHCDQ16,https://doi.org/10.1109/TOH.2016.2550044 +Lynette Jones,News from the Field.,2017,10,IEEE Trans. Haptics,3,db/journals/toh/toh10.html#Jones17b,https://doi.org/10.1109/TOH.2017.2741379 +Brian T. Gleeson,Improved Tactile Shear Feedback: Tactor Design and an Aperture-Based Restraint.,2011,4,IEEE Trans. Haptics,4,db/journals/toh/toh4.html#GleesonSP11,https://doi.org/10.1109/TOH.2010.56 +J. Edward Colgate,An Interview with Susan Lederman.,2010,3,IEEE Trans. Haptics,4,db/journals/toh/toh3.html#Colgate10b,https://doi.org/10.1109/TOH.2010.48 +Marco D'Alonzo,HyVE - Hybrid Vibro-ElectrotactileStimulation - Is an Efficient Approachto Multi-Channel Sensory Feedback.,2014,7,IEEE Trans. Haptics,2,db/journals/toh/toh7.html#DAlonzoDCF14,https://doi.org/10.1109/TOH.2013.52 +H. Christiaan Stronks,Vibrotactile Spatial Acuity and Intensity Discrimination on the Lower Back Using Coin Motors.,2016,9,IEEE Trans. Haptics,4,db/journals/toh/toh9.html#StronksPB16,https://doi.org/10.1109/TOH.2016.2569484 +Thomas Sednaoui,Friction Reduction through Ultrasonic Vibration Part 2: Experimental Evaluation of Intermittent Contact and Squeeze Film Levitation.,2017,10,IEEE Trans. Haptics,2,db/journals/toh/toh10.html#SednaouiVDLCA17,https://doi.org/10.1109/TOH.2017.2671376 +Hong Z. Tan,Optimum Information Transfer Rates for Communication through Haptic and Other Sensory Modalities.,2010,3,IEEE Trans. Haptics,2,db/journals/toh/toh3.html#TanRD10,https://doi.org/10.1109/TOH.2009.46 +Tricia L. Gibo,Movement Strategy Discovery during Training via Haptic Guidance.,2016,9,IEEE Trans. Haptics,2,db/journals/toh/toh9.html#GiboA16,https://doi.org/10.1109/TOH.2016.2516984 +Jongman Seo,Perceptual Analysis of Vibrotactile Flows on a Mobile Device.,2013,6,IEEE Trans. Haptics,4,db/journals/toh/toh6.html#SeoC13,https://doi.org/10.1109/TOH.2013.24 +Linda R. Elliott,Field-Based Validation of a Tactile Navigation Device.,2010,3,IEEE Trans. Haptics,2,db/journals/toh/toh3.html#ElliottERD10,https://doi.org/10.1109/TOH.2010.3 +Jeneva A. Cronin,Task-Specific Somatosensory Feedback via Cortical Stimulation in Humans.,2016,9,IEEE Trans. Haptics,4,db/journals/toh/toh9.html#CroninWCSROO16,https://doi.org/10.1109/TOH.2016.2591952 +Annie Rydström,Can Haptics Facilitate Interaction with an In-Vehicle Multifunctional Interface?.,2009,2,IEEE Trans. Haptics,3,db/journals/toh/toh2.html#RydstromBB09,https://doi.org/10.1109/TOH.2009.21 +Keisuke Hasegawa,Character Reading via Stylus Reproducing Normal Handwriting Motion.,2016,9,IEEE Trans. Haptics,1,db/journals/toh/toh9.html#HasegawaSMS16,https://doi.org/10.1109/TOH.2016.2517625 +Babak Hejrati,Kinesthetic Force Feedback and Belt Control for the Treadport Locomotion Interface.,2015,8,IEEE Trans. Haptics,2,db/journals/toh/toh8.html#HejratiCHA15,https://doi.org/10.1109/TOH.2015.2404357 +Lisa Dopjans,Cross-Modal Transfer in Visual and Haptic Face Recognition.,2009,2,IEEE Trans. Haptics,4,db/journals/toh/toh2.html#DopjansWB09,https://doi.org/10.1109/TOH.2009.18 +Juan Wu,Experimental Study on the Perception Characteristics of Haptic Texture by Multidimensional Scaling.,2015,8,IEEE Trans. Haptics,4,db/journals/toh/toh8.html#WuLLSZ15,https://doi.org/10.1109/TOH.2015.2438866 +J. Edward Colgate,Editorial.,2009,2,IEEE Trans. Haptics,1,db/journals/toh/toh2.html#Colgate09,https://doi.org/10.1109/TOH.2009.12 +M. Ercan Altinsoy,Electrotactile Feedback for Handheld Devices with Touch Screen and Simulation of Roughness.,2012,5,IEEE Trans. Haptics,1,db/journals/toh/toh5.html#AltinsoyM12,https://doi.org/10.1109/TOH.2011.56 +Carsten Neupert,Pseudo-Haptic Feedback in Teleoperation.,2016,9,IEEE Trans. Haptics,3,db/journals/toh/toh9.html#NeupertMSKWH16,https://doi.org/10.1109/TOH.2016.2557331 +Alexander Russomanno,Refreshing Refreshable Braille Displays.,2015,8,IEEE Trans. Haptics,3,db/journals/toh/toh8.html#RussomannoOGR15,https://doi.org/10.1109/TOH.2015.2423492 +Vincent Duchaine,Stable and Intuitive Control of an Intelligent Assist Device.,2012,5,IEEE Trans. Haptics,2,db/journals/toh/toh5.html#DuchaineSGG12,https://doi.org/10.1109/TOH.2011.49 +Qiong Wang 0001,Impulse-Based Rendering Methods for Haptic Simulation of Bone-Burring.,2012,5,IEEE Trans. Haptics,4,db/journals/toh/toh5.html#WangCWQH12,https://doi.org/10.1109/TOH.2011.69 +Stacie M. Straughn,To Go or Not to Go: Stimulus-Response Compatibility for Tactile and Auditory Pedestrian Collision Warnings.,2009,2,IEEE Trans. Haptics,2,db/journals/toh/toh2.html#StraughnGT09,https://doi.org/10.1109/TOH.2009.15 +Ge Yu,Simulating Sharp Geometric Features in Six Degrees-of-Freedom Haptic Rendering.,2015,8,IEEE Trans. Haptics,1,db/journals/toh/toh8.html#YuWZX15,https://doi.org/10.1109/TOH.2014.2377745 +Hsin-Ni Ho,Physical-Perceptual Correspondence for Dynamic Thermal Stimulation.,2017,10,IEEE Trans. Haptics,1,db/journals/toh/toh10.html#HoSKWMN17,https://doi.org/10.1109/TOH.2016.2583424 +Hojin Lee,Mid-Air Tactile Stimulation Using Indirect Laser Radiation.,2016,9,IEEE Trans. Haptics,4,db/journals/toh/toh9.html#LeeKKCJPKOBYKC16,https://doi.org/10.1109/TOH.2016.2569081 +Lynette A. Jones,Editorial.,2015,8,IEEE Trans. Haptics,1,db/journals/toh/toh8.html#Jones15,https://doi.org/10.1109/TOH.2015.2403012 +Anthony Talvas,A Survey on Bimanual Haptic Interaction.,2014,7,IEEE Trans. Haptics,3,db/journals/toh/toh7.html#TalvasML14,https://doi.org/10.1109/TOH.2014.2314456 +Maarten W. A. Wijntjes,Local Surface Orientation Dominates Haptic Curvature Discrimination.,2009,2,IEEE Trans. Haptics,2,db/journals/toh/toh2.html#WijntjesSHK09,https://doi.org/10.1109/TOH.2009.1 +Matteo Bianchi 0002,Design and Characterization of a Fabric-Based Softness Display.,2015,8,IEEE Trans. Haptics,2,db/journals/toh/toh8.html#0002S15,https://doi.org/10.1109/TOH.2015.2404353 +Fabien Verite,Closed Loop Kinesthetic Feedback for Postural Control Rehabilitation.,2014,7,IEEE Trans. Haptics,2,db/journals/toh/toh7.html#VeriteBM14,https://doi.org/10.1109/TOH.2013.64 +Henri Boessenkool,A Task-Specific Analysis of the Benefit of Haptic Shared Control During Telemanipulation.,2013,6,IEEE Trans. Haptics,1,db/journals/toh/toh6.html#BoessenkoolAHHW13,https://doi.org/10.1109/TOH.2012.22 +Haruhisa Kawasaki,Perception and Haptic Rendering of Friction Moments.,2011,4,IEEE Trans. Haptics,1,db/journals/toh/toh4.html#KawasakiOKM11,https://doi.org/10.1109/TOH.2010.42 +Hongbo Wang,Control of a Robot Dancer for Enhancing Haptic Human-Robot Interaction in Waltz.,2012,5,IEEE Trans. Haptics,3,db/journals/toh/toh5.html#WangK12,https://doi.org/10.1109/TOH.2012.36 +Matthew K. X. J. Pan,Exploring the Role of Haptic Feedback in Enabling Implicit HCI-Based Bookmarking.,2014,7,IEEE Trans. Haptics,1,db/journals/toh/toh7.html#PanMCM14,https://doi.org/10.1109/TOH.2014.2309124 +Xiao Xu,Energy Prediction for Teleoperation Systems That Combine the Time Domain Passivity Approach with Perceptual Deadband-Based Haptic Data Reduction.,2016,9,IEEE Trans. Haptics,4,db/journals/toh/toh9.html#XuSCS16,https://doi.org/10.1109/TOH.2016.2558157 +Sander E. M. Jansen,Identifying Haptic Exploratory Procedures by Analyzing Hand Dynamics and Contact Force.,2013,6,IEEE Trans. Haptics,4,db/journals/toh/toh6.html#JansenTK13,https://doi.org/10.1109/TOH.2013.22 +Heewon Kim,Method for Providing Electrovibration with Uniform Intensity.,2015,8,IEEE Trans. Haptics,4,db/journals/toh/toh8.html#KimKKLR15,https://doi.org/10.1109/TOH.2015.2476810 +Sumner L. Norman,Planar Hand Motion Guidance UsingFingertip Skin-Stretch Feedback.,2014,7,IEEE Trans. Haptics,2,db/journals/toh/toh7.html#NormanDGP14,https://doi.org/10.1109/TOH.2013.2296306 +Gunhyuk Park,A Physics-Based Vibrotactile Feedback Library for Collision Events.,2017,10,IEEE Trans. Haptics,3,db/journals/toh/toh10.html#ParkC17,https://doi.org/10.1109/TOH.2016.2614804 +Ilana Nisky,Perception and Action in Teleoperated Needle Insertion.,2011,4,IEEE Trans. Haptics,3,db/journals/toh/toh4.html#NiskyPPMK11,https://doi.org/10.1109/TOH.2011.30 +Cigil Ece Madan,Recognition of Haptic Interaction Patterns in Dyadic Joint Object Manipulation.,2015,8,IEEE Trans. Haptics,1,db/journals/toh/toh8.html#MadanKSB15,https://doi.org/10.1109/TOH.2014.2384049 +Amin Abdossalami,Adaptive Control for Improved Transparency in Haptic Simulations.,2009,2,IEEE Trans. Haptics,1,db/journals/toh/toh2.html#AbdossalamiS09,https://doi.org/10.1109/TOH.2008.18 +Amir Haddadi,Robust Stability of Teleoperation Systems with Time Delay: A New Approach.,2013,6,IEEE Trans. Haptics,2,db/journals/toh/toh6.html#HaddadiH13,https://doi.org/10.1109/TOH.2012.52 +Claudio Pacchierotti,Displaying Sensed Tactile Cues with a Fingertip Haptic Device.,2015,8,IEEE Trans. Haptics,4,db/journals/toh/toh8.html#PacchierottiPK15,https://doi.org/10.1109/TOH.2015.2445770 +Timothy Edmunds,Perceptually Augmented Simulator Design.,2012,5,IEEE Trans. Haptics,1,db/journals/toh/toh5.html#EdmundsP12,https://doi.org/10.1109/TOH.2011.42 +Evren Samur,Design and Evaluation of a Novel Haptic Interface for Endoscopic Simulation.,2012,5,IEEE Trans. Haptics,4,db/journals/toh/toh5.html#SamurFB12,https://doi.org/10.1109/TOH.2011.70 +Nicholas L. Bernstein,Dynamics Modeling for Parallel Haptic Interfaces with Force Sensing and Control.,2013,6,IEEE Trans. Haptics,4,db/journals/toh/toh6.html#BernsteinLP13,https://doi.org/10.1109/TOH.2013.3 +Yeongmi Kim,Identification of Vibrotactile Patterns Encoding Obstacle Distance Information.,2015,8,IEEE Trans. Haptics,3,db/journals/toh/toh8.html#KimHG15,https://doi.org/10.1109/TOH.2015.2415213 +Wouter M. Bergmann Tiest,Cues for Haptic Perception of Compliance.,2009,2,IEEE Trans. Haptics,4,db/journals/toh/toh2.html#TiestK09,https://doi.org/10.1109/TOH.2009.16 +Seyedshams Feyzabadi,Human Force Discrimination during Active Arm Motion for Force Feedback Design.,2013,6,IEEE Trans. Haptics,3,db/journals/toh/toh6.html#FeyzabadiSFKKA13,https://doi.org/10.1109/TOH.2013.4 +Maria C. Dadarlat,Encoding and Decoding of Multi-Channel ICMS in Macaque Somatosensory Cortex.,2016,9,IEEE Trans. Haptics,4,db/journals/toh/toh9.html#DadarlatS16,https://doi.org/10.1109/TOH.2016.2616311 +Mujthaba Ahtamad,Warning Drivers about Impending Collisions Using Vibrotactile Flow.,2016,9,IEEE Trans. Haptics,1,db/journals/toh/toh9.html#AhtamadSHG16,https://doi.org/10.1109/TOH.2015.2501798 +Adam J. Spiers,Single-Grasp Object Classification and Feature Extraction with Simple Robot Hands and Tactile Sensors.,2016,9,IEEE Trans. Haptics,2,db/journals/toh/toh9.html#SpiersLCD16,https://doi.org/10.1109/TOH.2016.2521378 +Lorenzo Masia,Wrist Coordination in a Kinematically Redundant Stabilization Task.,2012,5,IEEE Trans. Haptics,3,db/journals/toh/toh5.html#MasiaSBSM12,https://doi.org/10.1109/TOH.2012.35 +Joseph Mullenbach,eShiver: Lateral Force Feedback on Fingertips through Oscillatory Motion of an Electroadhesive Surface.,2017,10,IEEE Trans. Haptics,3,db/journals/toh/toh10.html#MullenbachPC17,https://doi.org/10.1109/TOH.2016.2630057 +Simone Fani,W-FYD: A Wearable Fabric-Based Display for Haptic Multi-Cue Delivery and Tactile Augmented Reality.,2018,11,IEEE Trans. Haptics,2,db/journals/toh/toh11.html#FaniCBMB18,https://doi.org/10.1109/TOH.2017.2708717 +Hong Z. Tan,Manual Detection of Spatial and Temporal Torque Variation through a Rotary Switch.,2008,1,IEEE Trans. Haptics,2,db/journals/toh/toh1.html#TanYPBJ08,https://doi.org/10.1109/TOH.2008.15 +Peter B. Luh,Welcome Message.,2008,1,IEEE Trans. Haptics,1,db/journals/toh/toh1.html#Luh08,https://doi.org/10.1109/TOH.2008.12 +Megumi Nakao,Fingertip-Based Feature Analysis for the Push and Stroke Manipulation of Elastic Objects.,2017,10,IEEE Trans. Haptics,4,db/journals/toh/toh10.html#NakaoSM17,https://doi.org/10.1109/TOH.2017.2720598 +Bertram J. Unger,Roughness Perception in Virtual Textures.,2011,4,IEEE Trans. Haptics,2,db/journals/toh/toh4.html#UngerHK11,https://doi.org/10.1109/TOH.2010.61 +Sang-Youn Kim,Vibrotactile Rendering for a Traveling Vibrotactile Wave Based on a Haptic Processor.,2012,5,IEEE Trans. Haptics,1,db/journals/toh/toh5.html#KimK12,https://doi.org/10.1109/TOH.2011.72 +Gunhyuk Park,"Correction to ""A Physics-Based Vibrotactile Feedback Library for Collision Events"".",2018,11,IEEE Trans. Haptics,1,db/journals/toh/toh11.html#ParkC18,https://doi.org/10.1109/TOH.2018.2814068 +Martin Kuschel,Combination and Integration in the Perception of Visual-Haptic Compliance Information.,2010,3,IEEE Trans. Haptics,4,db/journals/toh/toh3.html#KuschelLBK10,https://doi.org/10.1109/TOH.2010.9 +Aaron R. Ferber,Using Kinesthetic and Tactile Cues to Maintain Exercise Intensity.,2009,2,IEEE Trans. Haptics,4,db/journals/toh/toh2.html#FerberPC09,https://doi.org/10.1109/TOH.2009.22 +Pontus Olsson,Comparison of Walking and Traveling-Wave Piezoelectric Motors as Actuators in Kinesthetic Haptic Devices.,2016,9,IEEE Trans. Haptics,3,db/journals/toh/toh9.html#OlssonNCJ16,https://doi.org/10.1109/TOH.2016.2537803 +Loic Corenthy,Volume Haptics with Topology-Consistent Isosurfaces.,2015,8,IEEE Trans. Haptics,4,db/journals/toh/toh8.html#CorenthyOPG15,https://doi.org/10.1109/TOH.2015.2466239 +Georgios Karafotias,Mid-Air Tactile Stimulation for Pain Distraction.,2018,11,IEEE Trans. Haptics,2,db/journals/toh/toh11.html#KarafotiasKTPE18,https://doi.org/10.1109/TOH.2017.2781693 +Nadia Vanessa Garcia-Hernandez,How Tactor Size and Density of Normal Indentation Tactile Displays Affects Grating Discrimination Tasks.,2014,7,IEEE Trans. Haptics,3,db/journals/toh/toh7.html#Garcia-HernandezBCTC14,https://doi.org/10.1109/TOH.2014.2309128 +Daniel Greenwald,Haptic Detection of Artificial Tumors by Hand and with a Tool in a MIS Environment.,2012,5,IEEE Trans. Haptics,2,db/journals/toh/toh5.html#GreenwaldCB12,https://doi.org/10.1109/TOH.2011.68 +Matthew Kocsis,Discrimination of Real and Virtual Surfaces with Sinusoidal and Triangular Gratings Using the Fingertip and Stylus.,2013,6,IEEE Trans. Haptics,2,db/journals/toh/toh6.html#KocsisCTAHT13,https://doi.org/10.1109/TOH.2012.31 +Maria Karam,Designing the Model Human Cochlea: An Ambient Crossmodal Audio-Tactile Display.,2009,2,IEEE Trans. Haptics,3,db/journals/toh/toh2.html#KaramRF09,https://doi.org/10.1109/TOH.2009.32 +Tom Froese,The Enactive Torch: A New Tool for the Science of Perception.,2012,5,IEEE Trans. Haptics,4,db/journals/toh/toh5.html#FroeseMBSS12,https://doi.org/10.1109/TOH.2011.57 +Eleonora Patricia Westebring-van der Putten,The Effect of Augmented Feedback on Grasp Force in Laparoscopic Grasp Control.,2010,3,IEEE Trans. Haptics,4,db/journals/toh/toh3.html#PuttenDGJD10,https://doi.org/10.1109/TOH.2010.23 +Lynette A. Jones,Editorial.,2017,10,IEEE Trans. Haptics,1,db/journals/toh/toh10.html#Jones17,https://doi.org/10.1109/TOH.2017.2662879 +Shogo Okamoto,Detectability and Perceptual Consequences of Delayed Feedback in a Vibrotactile Texture Display.,2009,2,IEEE Trans. Haptics,2,db/journals/toh/toh2.html#OkamotoKST09,https://doi.org/10.1109/TOH.2009.17 +Curt Salisbury,What You Can't Feel Won't Hurt You: Evaluating Haptic Hardware Using a Haptic Contrast Sensitivity Function.,2011,4,IEEE Trans. Haptics,2,db/journals/toh/toh4.html#SalisburyGTBS11,https://doi.org/10.1109/TOH.2011.5 +Nicole L. Valles,To Know Your Own Strength: Overriding Natural Force Attenuation.,2014,7,IEEE Trans. Haptics,2,db/journals/toh/toh7.html#VallesR14,https://doi.org/10.1109/TOH.2013.55 +Edgar Berdahl,Force-Sensitive Detents Improve User Performance for Linear Selection Tasks.,2013,6,IEEE Trans. Haptics,2,db/journals/toh/toh6.html#BerdahlSWN13,https://doi.org/10.1109/TOH.2012.55 +Yasemin Vardar,Effect of Waveform on Tactile Perception by Electrovibration Displayed on Touch Screens.,2017,10,IEEE Trans. Haptics,4,db/journals/toh/toh10.html#VardarGB17,https://doi.org/10.1109/TOH.2017.2704603 +Charles Spence,Tactile and Multisensory Spatial Warning Signals for Drivers.,2008,1,IEEE Trans. Haptics,2,db/journals/toh/toh1.html#SpenceH08,https://doi.org/10.1109/TOH.2008.14 +Dangxiao Wang,iDental: A Haptic-Based Dental Simulator and Its Preliminary User Evaluation.,2012,5,IEEE Trans. Haptics,4,db/journals/toh/toh5.html#WangZHWLCZ12,https://doi.org/10.1109/TOH.2011.59 +Monica Bordegoni,Geodesic Spline Interface for Haptic Curve Rendering.,2011,4,IEEE Trans. Haptics,2,db/journals/toh/toh4.html#BordegoniFCA11,https://doi.org/10.1109/TOH.2011.1 +Andrew A. Stanley,Controllable Surface Haptics via Particle Jamming and Pneumatics.,2015,8,IEEE Trans. Haptics,1,db/journals/toh/toh8.html#StanleyO15,https://doi.org/10.1109/TOH.2015.2391093 +Stefano Scheggi,Human-Robot Formation Control via Visualand Vibrotactile Haptic Feedback.,2014,7,IEEE Trans. Haptics,4,db/journals/toh/toh7.html#ScheggiMP14,https://doi.org/10.1109/TOH.2014.2332173 +Mario Cheng,Abdominal Palpation Haptic Device for Colonoscopy Simulation Using Pneumatic Control.,2012,5,IEEE Trans. Haptics,2,db/journals/toh/toh5.html#ChengMWOPVSR12,https://doi.org/10.1109/TOH.2011.66 +Paul D. Markel,Spatial Memory for Patterns of Taps on the Fingers.,2015,8,IEEE Trans. Haptics,4,db/journals/toh/toh8.html#Markel15,https://doi.org/10.1109/TOH.2015.2462831 +Jeroen van Oosterhout,Haptic Shared Control in Tele-Manipulation: Effects of Inaccuracies in Guidance on Task Execution.,2015,8,IEEE Trans. Haptics,2,db/journals/toh/toh8.html#OosterhoutWBHBH15,https://doi.org/10.1109/TOH.2015.2406708 +Chih-Hung King,A Multielement Tactile Feedback System for Robot-Assisted Minimally Invasive Surgery.,2009,2,IEEE Trans. Haptics,1,db/journals/toh/toh2.html#KingCFBCDG09,https://doi.org/10.1109/TOH.2008.19 +Orcun Goksel,Haptic Simulator for Prostate Brachytherapy with Simulated Needle and Probe Interaction.,2011,4,IEEE Trans. Haptics,3,db/journals/toh/toh4.html#GokselSS11,https://doi.org/10.1109/TOH.2011.34 +Stephen Sinclair,Velocity Estimation Algorithms for Audio-Haptic Simulations Involving Stick-Slip.,2014,7,IEEE Trans. Haptics,4,db/journals/toh/toh7.html#SinclairWH14,https://doi.org/10.1109/TOH.2014.2346505 +Francesco Chinello,A Three Revolute-Revolute-Spherical Wearable Fingertip Cutaneous Device for Stiffness Rendering.,2018,11,IEEE Trans. Haptics,1,db/journals/toh/toh11.html#ChinelloPMP18,https://doi.org/10.1109/TOH.2017.2755015 +Peter B. Luh,Editorial.,2010,3,IEEE Trans. Haptics,2,db/journals/toh/toh3.html#Luh10,https://doi.org/10.1109/TOH.2010.34 +Michael Wiertlewski,Power Optimization of Ultrasonic Friction-Modulation Tactile Interfaces.,2015,8,IEEE Trans. Haptics,1,db/journals/toh/toh8.html#WiertlewskiC15,https://doi.org/10.1109/TOH.2014.2362518 +Ramin Mafi,A Parallel Computing Platform for Real-Time Haptic Interaction with Deformable Bodies.,2010,3,IEEE Trans. Haptics,3,db/journals/toh/toh3.html#MafiSMMEKN10,https://doi.org/10.1109/TOH.2009.50 +Steven A. Cholewiak,A Frequency-Domain Analysis of Haptic Gratings.,2010,3,IEEE Trans. Haptics,1,db/journals/toh/toh3.html#CholewiakKTA10,https://doi.org/10.1109/TOH.2009.36 +Mohamadreza Arbabtafti,Physics-Based Haptic Simulation of Bone Machining.,2011,4,IEEE Trans. Haptics,1,db/journals/toh/toh4.html#ArbabtaftiMNMRS11,https://doi.org/10.1109/TOH.2010.5 +Takahiro Endo,Five-Fingered Haptic Interface Robot: HIRO III.,2011,4,IEEE Trans. Haptics,1,db/journals/toh/toh4.html#EndoKMISMK11,https://doi.org/10.1109/TOH.2010.62 +Colin Swindells,Designing for Feel: Contrasts between Human and Automated Parametric Capture of Knob Physics.,2009,2,IEEE Trans. Haptics,4,db/journals/toh/toh2.html#SwindellsMB09,https://doi.org/10.1109/TOH.2009.23 +Ali Israr,Passive and Active Discrimination of Natural Frequency of Virtual Dynamic Systems.,2009,2,IEEE Trans. Haptics,1,db/journals/toh/toh2.html#IsrarLPO09,https://doi.org/10.1109/TOH.2008.21 +Ali Jazayeri,A Passivity Criterion for Sampled-Data Bilateral Teleoperation Systems.,2013,6,IEEE Trans. Haptics,3,db/journals/toh/toh6.html#JazayeriT13,https://doi.org/10.1109/TOH.2012.73 +Takumi Yokosaka,Linkage between Free Exploratory Movements and Subjective Tactile Ratings.,2017,10,IEEE Trans. Haptics,2,db/journals/toh/toh10.html#YokosakaKWN17,https://doi.org/10.1109/TOH.2016.2613055 +Tim Horeman,Force Parameters for Skills Assessment in Laparoscopy.,2012,5,IEEE Trans. Haptics,4,db/journals/toh/toh5.html#HoremanRJDD12,https://doi.org/10.1109/TOH.2011.60 +Ioannis Sarakoglou,A High Performance Tactile Feedback Display and Its Integration in Teleoperation.,2012,5,IEEE Trans. Haptics,3,db/journals/toh/toh5.html#SarakoglouGTC12,https://doi.org/10.1109/TOH.2012.20 +Dirk Fortmeier,Direct Visuo-Haptic 4D Volume Rendering Using Respiratory Motion Models.,2015,8,IEEE Trans. Haptics,4,db/journals/toh/toh8.html#FortmeierWMH15,https://doi.org/10.1109/TOH.2015.2445768 +Wouter M. Bergmann Tiest,Haptic Discrimination and Matching of Viscosity.,2013,6,IEEE Trans. Haptics,1,db/journals/toh/toh6.html#TiestVK13,https://doi.org/10.1109/TOH.2012.17 +Abhijit Biswas,Vibrotactile Sensitivity Threshold: Nonlinear Stochastic Mechanotransduction Model of the Pacinian Corpuscle.,2015,8,IEEE Trans. Haptics,1,db/journals/toh/toh8.html#BiswasMS15a,https://doi.org/10.1109/TOH.2014.2369422 +Maria Laura D'Angelo,An Integrated Approach to Characterize the Behavior of a Human Fingertip in Contact with a Silica Window.,2017,10,IEEE Trans. Haptics,1,db/journals/toh/toh10.html#DAngeloCBDBPRBC17,https://doi.org/10.1109/TOH.2016.2614679 +Katsunari Sato,Finger-Shaped GelForce: Sensor for Measuring Surface Traction Fields for Robotic Hand.,2010,3,IEEE Trans. Haptics,1,db/journals/toh/toh3.html#SatoKKT10,https://doi.org/10.1109/TOH.2009.47 +Michael Walker,Tactile Morse Code Using Locational Stimulus Identification.,2018,11,IEEE Trans. Haptics,1,db/journals/toh/toh11.html#WalkerR18,https://doi.org/10.1109/TOH.2017.2743713 +Femke Elise van Beek,The Effect of Global and Local Damping on the Perception of Hardness.,2016,9,IEEE Trans. Haptics,3,db/journals/toh/toh9.html#BeekHNTK16,https://doi.org/10.1109/TOH.2016.2567395 +Ali Talasaz,Integration of Force Reflection with Tactile Sensing for Minimally Invasive Robotics-Assisted Tumor Localization.,2013,6,IEEE Trans. Haptics,2,db/journals/toh/toh6.html#TalasazP13,https://doi.org/10.1109/TOH.2012.64 +Jian Li,Absolute Stability of a Class of Trilateral Haptic Systems.,2014,7,IEEE Trans. Haptics,3,db/journals/toh/toh7.html#LiTH14,https://doi.org/10.1109/TOH.2014.2321616 +Fabien Danieau,A Kinesthetic Washout Filter for Force-Feedback Rendering.,2015,8,IEEE Trans. Haptics,1,db/journals/toh/toh8.html#DanieauLGFMC15,https://doi.org/10.1109/TOH.2014.2381652 +Vicent Girbés,Haptic Feedback to Assist Bus Drivers for Pedestrian Safety at Low Speed.,2016,9,IEEE Trans. Haptics,3,db/journals/toh/toh9.html#GirbesADT16,https://doi.org/10.1109/TOH.2016.2531686 +Lynette A. Jones,News from the Field.,2014,7,IEEE Trans. Haptics,2,db/journals/toh/toh7.html#Jones14a,https://doi.org/10.1109/TOH.2014.2322291 +Naoki Takizawa,Encountered-Type Haptic Interface for Representation of Shape and Rigidity of 3D Virtual Objects.,2017,10,IEEE Trans. Haptics,4,db/journals/toh/toh10.html#TakizawaYIOO17,https://doi.org/10.1109/TOH.2017.2740934 +Jaeyoung Park,Haptic Edge Sharpness Perception with a Contact Location Display.,2012,5,IEEE Trans. Haptics,4,db/journals/toh/toh5.html#ParkDPJT12,https://doi.org/10.1109/TOH.2012.14 +Kristen Murphy,Haptics-Based Apps for Middle School Students with Visual Impairments.,2015,8,IEEE Trans. Haptics,3,db/journals/toh/toh8.html#MurphyD15,https://doi.org/10.1109/TOH.2015.2401832 +Pham Quang Trung,Two-Photon Imaging of DiO-Labelled Meissner Corpuscle in Living Mouse's Fingertip.,2016,9,IEEE Trans. Haptics,4,db/journals/toh/toh9.html#TrungHTSKM16,https://doi.org/10.1109/TOH.2016.2574718 +Stefano Mazzoleni,Mechanisms of Motor Recovery in Chronic and Subacute Stroke Patients Following a Robot-Aided Training.,2014,7,IEEE Trans. Haptics,2,db/journals/toh/toh7.html#MazzoleniPZDP14,https://doi.org/10.1109/TOH.2013.73 +Junsuk Kim,Neural Categorization of Vibrotactile Frequency in Flutter and Vibration Stimulations: An fMRI Study.,2016,9,IEEE Trans. Haptics,4,db/journals/toh/toh9.html#KimCCBK16,https://doi.org/10.1109/TOH.2016.2593727 +Enzo Pasquale Scilingo,Rendering Softness: Integration of Kinesthetic and Cutaneous Information in a Haptic Device.,2010,3,IEEE Trans. Haptics,2,db/journals/toh/toh3.html#ScilingoBGB10,https://doi.org/10.1109/TOH.2010.2 +Hamideh Kerdegari,Head-Mounted Sensory Augmentation Device: Designing a Tactile Language.,2016,9,IEEE Trans. Haptics,3,db/journals/toh/toh9.html#KerdegariKP16,https://doi.org/10.1109/TOH.2016.2554111 +Antal Haans,The Virtual Midas Touch: Helping Behavior After a Mediated Social Touch.,2009,2,IEEE Trans. Haptics,3,db/journals/toh/toh2.html#HaansI09,https://doi.org/10.1109/TOH.2009.20 +Steven C. Hauser,Force-Rate Cues Reduce Object Deformation Necessary to Discriminate Compliances Harder than the Skin.,2018,11,IEEE Trans. Haptics,2,db/journals/toh/toh11.html#HauserG18,https://doi.org/10.1109/TOH.2017.2715845 +Inwook Hwang,"Erratum to ""Real-Time Dual-Band Haptic Music Player for Mobile Devices"".",2014,7,IEEE Trans. Haptics,3,db/journals/toh/toh7.html#HwangLC14,https://doi.org/10.1109/TOH.2014.2355694 +James C. Gwilliam,Characterization and Psychophysical Studies of an Air-Jet Lump Display.,2013,6,IEEE Trans. Haptics,2,db/journals/toh/toh6.html#GwilliamBSO13,https://doi.org/10.1109/TOH.2012.71 +Sara Contu,The Role of Visual and Haptic Feedback During Dynamically Coupled Bimanual Manipulation.,2016,9,IEEE Trans. Haptics,4,db/journals/toh/toh9.html#ContuHM16,https://doi.org/10.1109/TOH.2016.2609909 +Nantachai Sornkarn,Can a Soft Robotic Probe Use Stiffness Control Like a Human Finger to Improve Efficacy of Haptic Perception?,2017,10,IEEE Trans. Haptics,2,db/journals/toh/toh10.html#SornkarnN17,https://doi.org/10.1109/TOH.2016.2615924 +Seung-Chan Kim,Haptic Rendering of 3D Geometry on 2D Touch Surface Based on Mechanical Rotation.,2018,11,IEEE Trans. Haptics,1,db/journals/toh/toh11.html#KimHK18,https://doi.org/10.1109/TOH.2017.2768523 +Jaedong Lee,Rich Pinch: Perception of Object Movement with Tactile Illusion.,2016,9,IEEE Trans. Haptics,1,db/journals/toh/toh9.html#LeeKK16,https://doi.org/10.1109/TOH.2015.2475271 +Seokhee Jeon,Haptic Tumor Augmentation: Exploring Multi-Point Interaction.,2014,7,IEEE Trans. Haptics,4,db/journals/toh/toh7.html#JeonH14,https://doi.org/10.1109/TOH.2014.2330300 +Sarangi P. Parikh,Negative Feedback for Small Capacitive Touchscreen Interfaces: A Usability Study for Data Entry Tasks.,2012,5,IEEE Trans. Haptics,1,db/journals/toh/toh5.html#ParikhE12,https://doi.org/10.1109/TOH.2011.71 +Fotios Dimeas,Online Stability in Human-Robot Cooperation with Admittance Control.,2016,9,IEEE Trans. Haptics,2,db/journals/toh/toh9.html#DimeasA16,https://doi.org/10.1109/TOH.2016.2518670 +Tomohiro Amemiya,Tactile Apparent Motion on the Torso Modulates Perceived Forward Self-Motion Velocity.,2016,9,IEEE Trans. Haptics,4,db/journals/toh/toh9.html#AmemiyaHI16,https://doi.org/10.1109/TOH.2016.2598332 +Ian M. Bullock,Grasp Frequency and Usage in Daily Household and Machine Shop Tasks.,2013,6,IEEE Trans. Haptics,3,db/journals/toh/toh6.html#BullockZRGD13,https://doi.org/10.1109/TOH.2013.6 +Adam J. Spiers,Design and Evaluation of Shape-Changing Haptic Interfaces for Pedestrian Navigation Assistance.,2017,10,IEEE Trans. Haptics,1,db/journals/toh/toh10.html#SpiersD17,https://doi.org/10.1109/TOH.2016.2582481 +Ziying Tang,Distributed Haptic Interactions with Physically Based 3D Deformable Models over Lossy Networks.,2013,6,IEEE Trans. Haptics,4,db/journals/toh/toh6.html#TangYGP13,https://doi.org/10.1109/TOH.2013.47 +Rocco Rizzo,Shape Localization and Recognition Using a Magnetorheological-Fluid Haptic Display.,2018,11,IEEE Trans. Haptics,2,db/journals/toh/toh11.html#RizzoMJ18,https://doi.org/10.1109/TOH.2017.2771420 +Kamran Razi,Development of a Guaranteed Stable Network of Telerobots with Kinesthetic Consensus.,2014,7,IEEE Trans. Haptics,4,db/journals/toh/toh7.html#RaziH14,https://doi.org/10.1109/TOH.2014.2330619 +Shogo Okamoto,Vibrotactile Stimuli Applied to Finger Pads as Biases for Perceived Inertial and Viscous Loads.,2011,4,IEEE Trans. Haptics,4,db/journals/toh/toh4.html#OkamotoKT11,https://doi.org/10.1109/TOH.2011.16 +Dianne Pawluk,Haptic Assistive Technology for Individuals who are Visually Impaired.,2015,8,IEEE Trans. Haptics,3,db/journals/toh/toh8.html#PawlukBGHH15,https://doi.org/10.1109/TOH.2015.2476735 +álvaro G. Pérez,Optimization-Based Wearable Tactile Rendering.,2017,10,IEEE Trans. Haptics,2,db/journals/toh/toh10.html#PerezLCCMMPO17,https://doi.org/10.1109/TOH.2016.2619708 +Thomas K. Ferris,When Content Matters: The Role of Processing Code in Tactile Display Design.,2010,3,IEEE Trans. Haptics,3,db/journals/toh/toh3.html#FerrisS10,https://doi.org/10.1109/TOH.2010.10 +Bogdan Vigaru,Design and Evaluation of a Cable-Driven fMRI-Compatible Haptic Interface to Investigate Precision Grip Control.,2016,9,IEEE Trans. Haptics,1,db/journals/toh/toh9.html#VigaruSG16,https://doi.org/10.1109/TOH.2015.2485201 +Ying Zheng,Comparison of Visual and Vibrotactile Feedback Methods for Seated Posture Guidance.,2013,6,IEEE Trans. Haptics,1,db/journals/toh/toh6.html#ZhengM13,https://doi.org/10.1109/TOH.2012.3 +Lynette A. Jones,News from the Field.,2016,9,IEEE Trans. Haptics,2,db/journals/toh/toh9.html#Jones16,https://doi.org/10.1109/TOH.2016.2571443 +Domenico Prattichizzo,Towards Wearability in Fingertip Haptics: A 3-DoF Wearable Device for Cutaneous Force Feedback.,2013,6,IEEE Trans. Haptics,4,db/journals/toh/toh6.html#PrattichizzoCPM13,https://doi.org/10.1109/TOH.2013.53 +Ahmad M. Manasrah,Perceived Cooling Using Asymmetrically-Applied Hot and Cold Stimuli.,2017,10,IEEE Trans. Haptics,1,db/journals/toh/toh10.html#ManasrahCGR17,https://doi.org/10.1109/TOH.2016.2578334 +Mehmet Ayyildiz,An Optoelectromechanical Tactile Sensor for Detection of Breast Lumps.,2013,6,IEEE Trans. Haptics,2,db/journals/toh/toh6.html#AyyildizGYB13,https://doi.org/10.1109/TOH.2012.54 +Ruben D. Ponce Wong,Spatial Asymmetry in Tactile Sensor SkinDeformation Aids Perception of EdgeOrientation During Haptic Exploration.,2014,7,IEEE Trans. Haptics,2,db/journals/toh/toh7.html#WongHS14,https://doi.org/10.1109/TOH.2013.56 +Daniele De Leonardis,An EMG-Controlled Robotic Hand Exoskeleton for Bilateral Rehabilitation.,2015,8,IEEE Trans. Haptics,2,db/journals/toh/toh8.html#LeonardisBLSTMP15,https://doi.org/10.1109/TOH.2015.2417570 +Matthew Philpott,Surface-Roughness-Based Virtual Textiles: Evaluation Using a Multi-Contactor Display.,2015,8,IEEE Trans. Haptics,2,db/journals/toh/toh8.html#PhilpottS15,https://doi.org/10.1109/TOH.2015.2412551 +Edoardo Battaglia,ThimbleSense: A Fingertip-Wearable Tactile Sensor for Grasp Analysis.,2016,9,IEEE Trans. Haptics,1,db/journals/toh/toh9.html#Battaglia0AGCSS16,https://doi.org/10.1109/TOH.2015.2482478 +Lynette A. Jones,EIC Editorial.,2016,9,IEEE Trans. Haptics,1,db/journals/toh/toh9.html#JonesDLT16,https://doi.org/10.1109/TOH.2016.2529705 +Salih Ozgur Oguz,Supporting Negotiation Behavior with Haptics-Enabled Human-Computer Interfaces.,2012,5,IEEE Trans. Haptics,3,db/journals/toh/toh5.html#OguzKSB12,https://doi.org/10.1109/TOH.2012.37 +Ingvars Birznieks,Haptics in Neuroscience.,2016,9,IEEE Trans. Haptics,4,db/journals/toh/toh9.html#BirznieksGSB16,https://doi.org/10.1109/TOH.2016.2627738 +Samuel B. Schorr,Three-Dimensional Skin Deformation as Force Substitution: Wearable Device Design and Performance During Haptic Exploration of Virtual Environments.,2017,10,IEEE Trans. Haptics,3,db/journals/toh/toh10.html#SchorrO17,https://doi.org/10.1109/TOH.2017.2672969 +Daniele De Leonardis,A 3-RSR Haptic Wearable Device for Rendering Fingertip Contact Forces.,2017,10,IEEE Trans. Haptics,3,db/journals/toh/toh10.html#LeonardisSBF17,https://doi.org/10.1109/TOH.2016.2640291 +Teemu Tuomas Ahmaniemi,Effect of Dynamic Vibrotactile Feedback on the Control of Isometric Finger Force.,2013,6,IEEE Trans. Haptics,3,db/journals/toh/toh6.html#Ahmaniemi13,https://doi.org/10.1109/TOH.2012.72 +Andrew A. Stanley,Evaluation of Tactile Feedback Methods for Wrist Rotation Guidance.,2012,5,IEEE Trans. Haptics,3,db/journals/toh/toh5.html#StanleyK12,https://doi.org/10.1109/TOH.2012.33 +Kristina Denisova,Intra- and Intermanual CurvatureAftereffect Can Be Obtained via Tool-Touch.,2014,7,IEEE Trans. Haptics,1,db/journals/toh/toh7.html#DenisovaKCK14,https://doi.org/10.1109/TOH.2013.63 +Eric Vezzoli,Friction Reduction through Ultrasonic Vibration Part 1: Modelling Intermittent Contact.,2017,10,IEEE Trans. Haptics,2,db/journals/toh/toh10.html#VezzoliVGLGRPA17,https://doi.org/10.1109/TOH.2017.2671432 +Domenico Prattichizzo,Cutaneous Force Feedback as a Sensory Subtraction Technique in Haptics.,2012,5,IEEE Trans. Haptics,4,db/journals/toh/toh5.html#PrattichizzoPR12,https://doi.org/10.1109/TOH.2012.15 +Julie M. Walker,Haptic Orientation Guidance Using Two Parallel Double-Gimbal Control Moment Gyroscopes.,2018,11,IEEE Trans. Haptics,2,db/journals/toh/toh11.html#WalkerCRO18,https://doi.org/10.1109/TOH.2017.2713380 +Hikaru Nagano,Haptic Invitation of Textures: Perceptually Prominent Properties of Materials Determine Human Touch Motions.,2014,7,IEEE Trans. Haptics,3,db/journals/toh/toh7.html#NaganoOY14,https://doi.org/10.1109/TOH.2014.2321575 +Yon Visell,Touch Is Everywhere: Floor Surfaces as Ambient Haptic Interfaces.,2009,2,IEEE Trans. Haptics,3,db/journals/toh/toh2.html#VisellLC09,https://doi.org/10.1109/TOH.2009.31 +Jonghyun Ryu,Vibrotactile Feedback for Information Delivery in the Vehicle.,2010,3,IEEE Trans. Haptics,2,db/journals/toh/toh3.html#RyuCPCH10,https://doi.org/10.1109/TOH.2010.1 +Shahrzad Abbasi Baharanchi,Design and Implementation of a Tactile Stimulation Device to Increase Auditory Discrimination.,2017,10,IEEE Trans. Haptics,4,db/journals/toh/toh10.html#BaharanchiMAT17,https://doi.org/10.1109/TOH.2017.2696528 +Dianne T. V. Pawluk,Figure/Ground Segmentation via a Haptic Glance: Attributing Initial Finger Contacts to Objects or Their Supporting Surfaces.,2011,4,IEEE Trans. Haptics,1,db/journals/toh/toh4.html#PawlukKAHL11,https://doi.org/10.1109/TOH.2010.25 +Shusheng Zhang,Rhythmic Haptic Stimuli Improve Short-Term Attention.,2016,9,IEEE Trans. Haptics,3,db/journals/toh/toh9.html#ZhangWAZW16,https://doi.org/10.1109/TOH.2016.2531662 +Eric Vezzoli,Physical and Perceptual Independence of Ultrasonic Vibration and Electrovibration for Friction Modulation.,2015,8,IEEE Trans. Haptics,2,db/journals/toh/toh8.html#VezzoliMAGLB15,https://doi.org/10.1109/TOH.2015.2430353 +Seongkook Heo,Vibrotactile Compliance Feedback for Tangential Force Interaction.,2017,10,IEEE Trans. Haptics,3,db/journals/toh/toh10.html#HeoL17,https://doi.org/10.1109/TOH.2016.2604305 +Luca Giulio Brayda,Predicting Successful Tactile Mapping of Virtual Objects.,2013,6,IEEE Trans. Haptics,4,db/journals/toh/toh6.html#BraydaCG13,https://doi.org/10.1109/TOH.2013.49 +Jean-Philippe Choiniere,Development and Experimental Validation of a Haptic Compass Based on Asymmetric Torque Stimuli.,2017,10,IEEE Trans. Haptics,1,db/journals/toh/toh10.html#ChoiniereG17,https://doi.org/10.1109/TOH.2016.2580144 +Zhuanghua Shi,Effects of Packet Loss and Latency on the Temporal Discrimination of Visual-Haptic Events.,2010,3,IEEE Trans. Haptics,1,db/journals/toh/toh3.html#ShiZRCHM10,https://doi.org/10.1109/TOH.2009.45 +Taku Nakamura,A Multi-User Surface Visuo-Haptic Display Using Electrostatic Friction Modulation and Capacitive-Type Position Sensing.,2016,9,IEEE Trans. Haptics,3,db/journals/toh/toh9.html#NakamuraY16,https://doi.org/10.1109/TOH.2016.2556660 +Ryan Schindeler,Analog Haptic Control: Advantages and Challenges.,2018,11,IEEE Trans. Haptics,2,db/journals/toh/toh11.html#SchindelerH18,https://doi.org/10.1109/TOH.2017.2768526 +Arnold W. de Jonge,The Effect of Trial-by-Trial Adaptation on Conflicts in Haptic Shared Control for Free-Air Teleoperation Tasks.,2016,9,IEEE Trans. Haptics,1,db/journals/toh/toh9.html#JongeWBA16,https://doi.org/10.1109/TOH.2015.2477302 +Tomohiro Amemiya,Asymmetric Oscillation Distorts the Perceived Heaviness of Handheld Objects.,2008,1,IEEE Trans. Haptics,1,db/journals/toh/toh1.html#AmemiyaM08,https://doi.org/10.1109/TOH.2008.5 +Nadia Vanessa Garcia-Hernandez,Feeling through Tactile Displays: A Study on the Effect of the Array Density and Size on the Discrimination of Tactile Patterns.,2011,4,IEEE Trans. Haptics,2,db/journals/toh/toh4.html#Garcia-HernandezTC11,https://doi.org/10.1109/TOH.2010.59 +Benoit P. Delhaye,Robo-Psychophysics: Extracting Behaviorally Relevant Features from the Output of Sensors on a Prosthetic Finger.,2016,9,IEEE Trans. Haptics,4,db/journals/toh/toh9.html#DelhayeSB16,https://doi.org/10.1109/TOH.2016.2573298 +Lucie A. Huet,Simulations of a Vibrissa Slipping along a Straight Edge and an Analysis of Frictional Effects during Whisking.,2016,9,IEEE Trans. Haptics,2,db/journals/toh/toh9.html#HuetH16,https://doi.org/10.1109/TOH.2016.2522432 +Xi Chen,Design of a Robotic Mobility System with a Modular Haptic Feedback Approach to Promote Socialization in Children.,2014,7,IEEE Trans. Haptics,2,db/journals/toh/toh7.html#ChenRGA14,https://doi.org/10.1109/TOH.2013.38 +Jeroen G. W. Wildenbeest,The Impact of Haptic Feedback Quality on the Performance of Teleoperated Assembly Tasks.,2013,6,IEEE Trans. Haptics,2,db/journals/toh/toh6.html#WildenbeestAHHB13,https://doi.org/10.1109/TOH.2012.19 +Arash Ajoudani,Exploring Teleimpedance and Tactile Feedback for Intuitive Control of the Pisa/IIT SoftHand.,2014,7,IEEE Trans. Haptics,2,db/journals/toh/toh7.html#AjoudaniG0CGTB14,https://doi.org/10.1109/TOH.2014.2309142 +Shunsuke Yoshimoto,Estimation of Object Elasticity by Capturing Fingernail Images During Haptic Palpation.,2018,11,IEEE Trans. Haptics,2,db/journals/toh/toh11.html#YoshimotoKO18,https://doi.org/10.1109/TOH.2018.2803053 +Domenico Prattichizzo,Digital Handwriting with a Finger or a Stylus: A Biomechanical Comparison.,2015,8,IEEE Trans. Haptics,4,db/journals/toh/toh8.html#PrattichizzoMM15,https://doi.org/10.1109/TOH.2015.2434812 +Guy Avraham,Toward Perceiving Robots as Humans: Three Handshake Models Face the Turing-Like Handshake Test.,2012,5,IEEE Trans. Haptics,3,db/journals/toh/toh5.html#AvrahamNFAKLK12,https://doi.org/10.1109/TOH.2012.16 +Guohong Liu,Effect of Electrostatic Tactile Feedback on Accuracy and Efficiency of Pan Gestures on Touch Screens.,2018,11,IEEE Trans. Haptics,1,db/journals/toh/toh11.html#LiuSWLZ18,https://doi.org/10.1109/TOH.2017.2742514 +Sara Mulatto,Using Postural Synergies to Animate a Low-Dimensional Hand Avatar in Haptic Simulation.,2013,6,IEEE Trans. Haptics,1,db/journals/toh/toh6.html#MulattoFMP13,https://doi.org/10.1109/TOH.2012.13 +Timothy Richard Coles,Integrating Haptics with Augmented Reality in a Femoral Palpation and Needle Insertion Training Simulation.,2011,4,IEEE Trans. Haptics,3,db/journals/toh/toh4.html#ColesJGC11,https://doi.org/10.1109/TOH.2011.32 +Pingjun Xia,Haptics for Product Design and Manufacturing Simulation.,2016,9,IEEE Trans. Haptics,3,db/journals/toh/toh9.html#Xia16,https://doi.org/10.1109/TOH.2016.2554551 +Lynette A. Jones,News from the Field.,2014,7,IEEE Trans. Haptics,3,db/journals/toh/toh7.html#Jones14b,https://doi.org/10.1109/TOH.2014.2350435 +Dangxiao Wang,Force Control Tasks with Pure Haptic Feedback Promote Short-Term Focused Attention.,2014,7,IEEE Trans. Haptics,4,db/journals/toh/toh7.html#WangZYYY14,https://doi.org/10.1109/TOH.2014.2359007 +Myrthe A. Plaisier,Haptic Object Individuation.,2010,3,IEEE Trans. Haptics,4,db/journals/toh/toh3.html#PlaisierTK10,https://doi.org/10.1109/TOH.2010.6 +Stefano Papetti,Vibrotactile Sensitivity in Active Touch: Effect of Pressing Force.,2017,10,IEEE Trans. Haptics,1,db/journals/toh/toh10.html#PapettiJGSF17,https://doi.org/10.1109/TOH.2016.2582485 +Siyan Zhao,Intermanual Apparent Tactile Motion and Its Extension to 3D Interactions.,2017,10,IEEE Trans. Haptics,4,db/journals/toh/toh10.html#ZhaoIFK17,https://doi.org/10.1109/TOH.2017.2678502 +Chih-Hung King,Tactile Feedback Induces Reduced Grasping Force in Robot-Assisted Surgery.,2009,2,IEEE Trans. Haptics,2,db/journals/toh/toh2.html#KingCFLDGB09,https://doi.org/10.1109/TOH.2009.4 +Virjanand Panday,Bimanual Integration of Position and Curvature in Haptic Perception.,2013,6,IEEE Trans. Haptics,3,db/journals/toh/toh6.html#PandayTK13,https://doi.org/10.1109/TOH.2013.8 +Sebastiaan M. Petermeijer,The Effect of Haptic Support Systems on Driver Performance: A Literature Survey.,2015,8,IEEE Trans. Haptics,4,db/journals/toh/toh8.html#PetermeijerAMW15,https://doi.org/10.1109/TOH.2015.2437871 +Myrthe A. Plaisier,Visually Guided Haptic Search.,2010,3,IEEE Trans. Haptics,1,db/journals/toh/toh3.html#PlaisierKTE10,https://doi.org/10.1109/TOH.2009.43 +Nick Colonnese,Rendered and Characterized Closed-Loop Accuracy of Impedance-Type Haptic Displays.,2015,8,IEEE Trans. Haptics,4,db/journals/toh/toh8.html#ColonneseSAO15,https://doi.org/10.1109/TOH.2015.2457438 +John Ware,Search Efficiency for Tactile Features Rendered by Surface Haptic Displays.,2014,7,IEEE Trans. Haptics,4,db/journals/toh/toh7.html#WareCPCK14,https://doi.org/10.1109/TOH.2014.2323257 +Paul Phamduy,Communicating through Touch: Macro Fiber Composites for Tactile Stimulation on the Abdomen.,2018,11,IEEE Trans. Haptics,2,db/journals/toh/toh11.html#PhamduyRHTLP18,https://doi.org/10.1109/TOH.2017.2781244 +Lynette A. Jones,EIC Editorial.,2018,11,IEEE Trans. Haptics,1,db/journals/toh/toh11.html#Jones18,https://doi.org/10.1109/TOH.2018.2809059 +Marco Janko,On Frictional Forces between the Finger and a Textured Surface during Active Touch.,2016,9,IEEE Trans. Haptics,2,db/journals/toh/toh9.html#JankoPV16,https://doi.org/10.1109/TOH.2015.2507583 +Myongchan Kim,Saliency-Driven Real-Time Video-to-Tactile Translation.,2014,7,IEEE Trans. Haptics,3,db/journals/toh/toh7.html#KimLC14,https://doi.org/10.1109/TOH.2013.58 +Allison M. Okamura,Haptics in Medicine and Clinical Skill Acquisition.,2011,4,IEEE Trans. Haptics,3,db/journals/toh/toh4.html#OkamuraBBH11,https://doi.org/10.1109/TOH.2011.47 +Julia A. Griffin,The Role of Haptic Feedback in Robotic-Assisted Retinal Microsurgery Systems: A Systematic Review.,2017,10,IEEE Trans. Haptics,1,db/journals/toh/toh10.html#GriffinZN17,https://doi.org/10.1109/TOH.2016.2598341 +J. Edward Colgate,EIC Editorial.,2010,3,IEEE Trans. Haptics,1,db/journals/toh/toh3.html#Colgate10,https://doi.org/10.1109/TOH.2010.16 +Gijs Huisman,Social Touch Technology: A Survey of Haptic Technology for Social Touch.,2017,10,IEEE Trans. Haptics,3,db/journals/toh/toh10.html#Huisman17,https://doi.org/10.1109/TOH.2017.2650221 +Maurizio Maisto,Evaluation of Wearable Haptic Systems for the Fingers in Augmented Reality Applications.,2017,10,IEEE Trans. Haptics,4,db/journals/toh/toh10.html#MaistoPCSLP17,https://doi.org/10.1109/TOH.2017.2691328 +Ian M. Bullock,A Hand-Centric Classification of Human and Robot Dexterous Manipulation.,2013,6,IEEE Trans. Haptics,2,db/journals/toh/toh6.html#BullockMD13,https://doi.org/10.1109/TOH.2012.53 +Dangxiao Wang,Localization Performance of Multiple Vibrotactile Cues on Both Arms.,2018,11,IEEE Trans. Haptics,1,db/journals/toh/toh11.html#WangPALWZ18,https://doi.org/10.1109/TOH.2017.2742507 +Laura Marchal-Crespo,The Effect of Haptic Guidance on Learning a Hybrid Rhythmic-Discrete Motor Task.,2015,8,IEEE Trans. Haptics,2,db/journals/toh/toh8.html#Marchal-CrespoB15,https://doi.org/10.1109/TOH.2014.2375173 +Lynette A. Jones,Guest Editorial for World Haptics Spotlight Section.,2010,3,IEEE Trans. Haptics,3,db/journals/toh/toh3.html#JonesHY10,https://doi.org/10.1109/TOH.2010.40 +Sile O'Modhrain,Designing Media for Visually-Impaired Users of Refreshable Touch Displays: Possibilities and Pitfalls.,2015,8,IEEE Trans. Haptics,3,db/journals/toh/toh8.html#OModhrainGGL15,https://doi.org/10.1109/TOH.2015.2466231 +J. Edward Colgate,EIC Editorial.,2011,4,IEEE Trans. Haptics,2,db/journals/toh/toh4.html#Colgate11a,https://doi.org/10.1109/TOH.2011.28 +J. Edward Colgate,Editorial.,2008,1,IEEE Trans. Haptics,1,db/journals/toh/toh1.html#Colgate08,https://doi.org/10.1109/TOH.2008.11 +Sunil Kumar Agrawal,Training Toddlers Seated on Mobile Robots to Steer Using Force-Feedback Joystick.,2012,5,IEEE Trans. Haptics,4,db/journals/toh/toh5.html#AgrawalCRG12,https://doi.org/10.1109/TOH.2011.67 +Franck Mars,Analysis of Human-Machine Cooperation When Driving with Different Degrees of Haptic Shared Control.,2014,7,IEEE Trans. Haptics,3,db/journals/toh/toh7.html#MarsDH14,https://doi.org/10.1109/TOH.2013.2295095 +Angelica I. Avilés,Towards Retrieving Force Feedback in Robotic-Assisted Surgery: A Supervised Neuro-Recurrent-Vision Approach.,2017,10,IEEE Trans. Haptics,3,db/journals/toh/toh10.html#AvilesAHC17,https://doi.org/10.1109/TOH.2016.2640289 +Shogo Okamoto,Virtual Active Touch: Perception of Virtual Gratings Wavelength through Pointing-Stick Interface.,2012,5,IEEE Trans. Haptics,1,db/journals/toh/toh5.html#OkamotoYKT12,https://doi.org/10.1109/TOH.2011.48 +Jeroen van Oosterhout,Tele-Manipulation with Two Asymmetric Slaves: Two Operators Perform Better Than One.,2018,11,IEEE Trans. Haptics,1,db/journals/toh/toh11.html#OosterhoutHBHA18,https://doi.org/10.1109/TOH.2017.2759108 +Loic Corenthy,Haptically Assisted Connection Procedure for the Reconstruction of Dendritic Spines.,2014,7,IEEE Trans. Haptics,4,db/journals/toh/toh7.html#CorenthyGBSMBDP14,https://doi.org/10.1109/TOH.2014.2354041 +Raphaela Groten,The Role of Haptic Feedback for the Integration of Intentions in Shared Task Execution.,2013,6,IEEE Trans. Haptics,1,db/journals/toh/toh6.html#GrotenFKP13,https://doi.org/10.1109/TOH.2012.2 +Masakazu Hirokawa,Effect of Haptic Assistance on Learning Vehicle Reverse Parking Skills.,2014,7,IEEE Trans. Haptics,3,db/journals/toh/toh7.html#HirokawaUFKS14,https://doi.org/10.1109/TOH.2014.2309135 +Javier Corredor,Decision-Making Model for Adaptive Impedance Control of Teleoperation Systems.,2017,10,IEEE Trans. Haptics,1,db/journals/toh/toh10.html#CorredorSP17,https://doi.org/10.1109/TOH.2016.2581807 +Fredrik Ryden,A Proxy Method for Real-Time 3-DOF Haptic Rendering of Streaming Point Cloud Data.,2013,6,IEEE Trans. Haptics,3,db/journals/toh/toh6.html#RydenC13,https://doi.org/10.1109/TOH.2013.20 +Heather Culbertson,Modeling and Rendering Realistic Textures from Unconstrained Tool-Surface Interactions.,2014,7,IEEE Trans. Haptics,3,db/journals/toh/toh7.html#CulbertsonUK14,https://doi.org/10.1109/TOH.2014.2316797 +Virjanand Panday,Influence of Local Properties on the Perception of Global Object Orientation.,2012,5,IEEE Trans. Haptics,1,db/journals/toh/toh5.html#PandayTK12,https://doi.org/10.1109/TOH.2011.53 +Lynette A. Jones,Editorial.,2014,7,IEEE Trans. Haptics,1,db/journals/toh/toh7.html#Jones14,https://doi.org/10.1109/TOH.2014.2305818 +Ayse Küçükyilmaz,Intention Recognition for Dynamic Role Exchange in Haptic Collaboration.,2013,6,IEEE Trans. Haptics,1,db/journals/toh/toh6.html#KucukyilmazSB13,https://doi.org/10.1109/TOH.2012.21 +Abhijit Biswas,Multiscale Layered Biomechanical Model of the Pacinian Corpuscle.,2015,8,IEEE Trans. Haptics,1,db/journals/toh/toh8.html#BiswasMS15,https://doi.org/10.1109/TOH.2014.2369416 +Erik C. Chubb,ShiverPaD: A Glass Haptic Surface That Produces Shear Force on a Bare Finger.,2010,3,IEEE Trans. Haptics,3,db/journals/toh/toh3.html#ChubbCP10,https://doi.org/10.1109/TOH.2010.7 +Dangxiao Wang,Configuration-Based Optimization for Six Degree-of-Freedom Haptic Rendering for Fine Manipulation.,2013,6,IEEE Trans. Haptics,2,db/journals/toh/toh6.html#WangZZX13,https://doi.org/10.1109/TOH.2012.63 +Tao Zeng,Contribution of Slip Cue to Curvature Perception through Active and Dynamic Touch.,2013,6,IEEE Trans. Haptics,4,db/journals/toh/toh6.html#ZengLGA13,https://doi.org/10.1109/TOH.2013.21 +Jessica Dacleu Ndengue,Tactile Perception and Friction-Induced Vibrations: Discrimination of Similarly Patterned Wood-Like Surfaces.,2017,10,IEEE Trans. Haptics,3,db/journals/toh/toh10.html#NdengueCFCZDM17,https://doi.org/10.1109/TOH.2016.2643662 +Sahba Aghajani Pedram,Torque Contribution to Haptic Rendering of Virtual Textures.,2017,10,IEEE Trans. Haptics,4,db/journals/toh/toh10.html#PedramKB17,https://doi.org/10.1109/TOH.2017.2679000 +Hongyi Xu,Adaptive 6-DoF Haptic Contact Stiffness Using the Gauss Map.,2016,9,IEEE Trans. Haptics,3,db/journals/toh/toh9.html#XuB16,https://doi.org/10.1109/TOH.2016.2558185 +Manuel Cruz,Applications of Smart Materials to Haptics.,2018,11,IEEE Trans. Haptics,1,db/journals/toh/toh11.html#CruzKSBG18,https://doi.org/10.1109/TOH.2018.2809058 +Brian T. Gleeson,Exploration of Tactile Contact in a Haptic Display: Effects of Contact Velocity and Transient Vibrations.,2011,4,IEEE Trans. Haptics,2,db/journals/toh/toh4.html#GleesonP11,https://doi.org/10.1109/TOH.2010.26 +Jeonggoo Kang,Smooth Vibrotactile Flow Generation Using Two Piezoelectric Actuators.,2012,5,IEEE Trans. Haptics,1,db/journals/toh/toh5.html#KangLKCWR12,https://doi.org/10.1109/TOH.2012.1 +Sunghoon Yim,Topography Compensation for Haptization of a Mesh Object and Its Stiffness Distribution.,2015,8,IEEE Trans. Haptics,1,db/journals/toh/toh8.html#YimJC15,https://doi.org/10.1109/TOH.2013.74 +Jonathan M. Ehrich,Factors Influencing Haptic Perception of Complex Shapes.,2008,1,IEEE Trans. Haptics,1,db/journals/toh/toh1.html#EhrichFS08,https://doi.org/10.1109/TOH.2008.4 +Dangxiao Wang,Effects of Concurrent and Delayed Visual Feedback on Motor Memory Consolidation.,2017,10,IEEE Trans. Haptics,3,db/journals/toh/toh10.html#WangLYZ17,https://doi.org/10.1109/TOH.2017.2672549 +Jussi Rantala,Methods for Presenting Braille Characters on a Mobile Device with a Touchscreen and Tactile Feedback.,2009,2,IEEE Trans. Haptics,1,db/journals/toh/toh2.html#RantalaRLSRSPH09,https://doi.org/10.1109/TOH.2009.3 +Takayuki Hoshi,Noncontact Tactile Display Based on Radiation Pressure of Airborne Ultrasound.,2010,3,IEEE Trans. Haptics,3,db/journals/toh/toh3.html#HoshiTIS10,https://doi.org/10.1109/TOH.2010.4 +Jaeyoung Park,Haptic Perception of Edge Sharpness in Real and Virtual Environments.,2017,10,IEEE Trans. Haptics,1,db/journals/toh/toh10.html#ParkPT17,https://doi.org/10.1109/TOH.2016.2612202 +Sunghoon Yim,Data-Driven Haptic Modeling and Rendering of Viscoelastic and Frictional Responses of Deformable Objects.,2016,9,IEEE Trans. Haptics,4,db/journals/toh/toh9.html#YimJC16,https://doi.org/10.1109/TOH.2016.2571690 +Hsin-Yun Yao,Perceived Vibration Strength in Mobile Devices: The Effect of Weight and Frequency.,2010,3,IEEE Trans. Haptics,1,db/journals/toh/toh3.html#YaoGC10,https://doi.org/10.1109/TOH.2009.37 +Georg Rauter,Learning of Temporal and Spatial Movement Aspects: A Comparison of Four Types of Haptic Control and Concurrent Visual Feedback.,2015,8,IEEE Trans. Haptics,4,db/journals/toh/toh8.html#RauterSRW15,https://doi.org/10.1109/TOH.2015.2431686 +Jumpei Arata,Robotically Enhanced Rubber Hand Illusion.,2014,7,IEEE Trans. Haptics,4,db/journals/toh/toh7.html#ArataHIS14,https://doi.org/10.1109/TOH.2014.2304722 +Seongcheol Mun,Electro-Active Polymer Based Soft Tactile Interface for Wearable Devices.,2018,11,IEEE Trans. Haptics,1,db/journals/toh/toh11.html#MunYNPPPLK18,https://doi.org/10.1109/TOH.2018.2805901 +Camille K. Williams,Motor Learning Perspectives on HapticTraining for the Upper Extremities.,2014,7,IEEE Trans. Haptics,2,db/journals/toh/toh7.html#WilliamsC14,https://doi.org/10.1109/TOH.2013.2297102 +Gabriel Cirio,Vibrotactile Rendering of Splashing Fluids.,2013,6,IEEE Trans. Haptics,1,db/journals/toh/toh6.html#CirioMLC13,https://doi.org/10.1109/TOH.2012.34 +Ryuichi Doizaki,Automatic Estimation of Multidimensional Ratings from a Single Sound-Symbolic Word and Word-Based Visualization of Tactile Perceptual Space.,2017,10,IEEE Trans. Haptics,2,db/journals/toh/toh10.html#DoizakiWS17,https://doi.org/10.1109/TOH.2016.2615923 +Jérémy Streque,New Magnetic Microactuator Design Based on PDMS Elastomer and MEMS Technologies for Tactile Display.,2010,3,IEEE Trans. Haptics,2,db/journals/toh/toh3.html#StrequeTPP10,https://doi.org/10.1109/TOH.2009.61 +Vibol Yem,Comparative Evaluation of Tactile Sensation by Electrical and Mechanical Stimulation.,2017,10,IEEE Trans. Haptics,1,db/journals/toh/toh10.html#YemK17,https://doi.org/10.1109/TOH.2016.2605084 +Jan Smisek,Haptic Guidance on Demand: A Grip-Force Based Scheduling of Guidance Forces.,2018,11,IEEE Trans. Haptics,2,db/journals/toh/toh11.html#SmisekMSPS18,https://doi.org/10.1109/TOH.2017.2777855 +Matthias Flückiger,Evaluation of Piano Key Vibrations Among Different Acoustic Pianos and Relevance to Vibration Sensation.,2018,11,IEEE Trans. Haptics,2,db/journals/toh/toh11.html#FluckigerGT18,https://doi.org/10.1109/TOH.2017.2773099 +Shogo Okamoto,Anticipatory Vibrotactile Cueing Facilitates Grip Force Adjustment during Perturbative Loading.,2016,9,IEEE Trans. Haptics,2,db/journals/toh/toh9.html#OkamotoWH16,https://doi.org/10.1109/TOH.2016.2526613 +Megumi Nakao,A Model for Sharing Haptic Interaction.,2010,3,IEEE Trans. Haptics,4,db/journals/toh/toh3.html#NakaoKSM10,https://doi.org/10.1109/TOH.2010.35 +Peter B. Shull,Continuous Movement Tracking Performance for Predictable and Unpredictable Tasks with Vibrotactile Feedback.,2017,10,IEEE Trans. Haptics,4,db/journals/toh/toh10.html#ShullZC17,https://doi.org/10.1109/TOH.2017.2689023 +William McMahan,Tool Contact Acceleration Feedback for Telerobotic Surgery.,2011,4,IEEE Trans. Haptics,3,db/journals/toh/toh4.html#McMahanGSMKLWLK11,https://doi.org/10.1109/TOH.2011.31 +Hongyi Xu,6-DoF Haptic Rendering Using Continuous Collision Detection between Points and Signed Distance Fields.,2017,10,IEEE Trans. Haptics,2,db/journals/toh/toh10.html#XuB17,https://doi.org/10.1109/TOH.2016.2613872 +Ilana Nisky,A Regression and Boundary-Crossing-Based Model for the Perception of Delayed Stiffness.,2008,1,IEEE Trans. Haptics,2,db/journals/toh/toh1.html#NiskyMK08,https://doi.org/10.1109/TOH.2008.17 +Séréna Bochereau,Characterizing and Imaging Gross and Real Finger Contacts under Dynamic Loading.,2017,10,IEEE Trans. Haptics,4,db/journals/toh/toh10.html#BochereauDAH17,https://doi.org/10.1109/TOH.2017.2686849 +Raphael Höver,Data-Driven Haptic Rendering—*From Viscous Fluids to Visco-Elastic Solids.,2009,2,IEEE Trans. Haptics,1,db/journals/toh/toh2.html#HoverKSH09,https://doi.org/10.1109/TOH.2009.2 +Nathan F. Lepora,Biomimetic Active Touch with Fingertips and Whiskers.,2016,9,IEEE Trans. Haptics,2,db/journals/toh/toh9.html#Lepora16,https://doi.org/10.1109/TOH.2016.2558180 +Takashi G. Sato,Tactile Phantom Sensation for Coaching Respiration Timing.,2015,8,IEEE Trans. Haptics,1,db/journals/toh/toh8.html#SatoOBM15,https://doi.org/10.1109/TOH.2015.2396896 +Nadine Besse,Understanding Graphics on a Scalable Latching Assistive Haptic Display Using a Shape Memory Polymer Membrane.,2018,11,IEEE Trans. Haptics,1,db/journals/toh/toh11.html#BesseRZFBS18,https://doi.org/10.1109/TOH.2017.2767049 +Won-Hyeong Park,An Enhanced Soft Vibrotactile Actuator Based on ePVC Gel with Silicon Dioxide Nanoparticles.,2018,11,IEEE Trans. Haptics,1,db/journals/toh/toh11.html#ParkSYK18,https://doi.org/10.1109/TOH.2018.2808176 +Franck Gonzalez,Analysis of Hand Contact Areas and Interaction Capabilities During Manipulation and Exploration.,2014,7,IEEE Trans. Haptics,4,db/journals/toh/toh7.html#GonzalezGB14,https://doi.org/10.1109/TOH.2014.2321395 +Kanav Kahol,Ambient Haptic Systems.,2009,2,IEEE Trans. Haptics,3,db/journals/toh/toh2.html#KaholHB09,https://doi.org/10.1109/TOH.2009.38 +Karon E. MacLean,Putting Haptics into the Ambience.,2009,2,IEEE Trans. Haptics,3,db/journals/toh/toh2.html#MacLean09,https://doi.org/10.1109/TOH.2009.33 +Dawei Jia,Human Performance Measures for Interactive Haptic-Audio-Visual Interfaces.,2013,6,IEEE Trans. Haptics,1,db/journals/toh/toh6.html#JiaBNH13,https://doi.org/10.1109/TOH.2012.41 +Miada Almasre,Comparison of Four SVM Classifiers Used with Depth Sensors to Recognize Arabic Sign Language Words.,2017,6,Computers,2,db/journals/computers/computers6.html#AlmasreA17,https://doi.org/10.3390/computers6020020 +Antti Evesti,Architecture and Knowledge-Driven Self-Adaptive Security in Smart Space.,2013,2,Computers,1,db/journals/computers/computers2.html#EvestiSO13,https://doi.org/10.3390/computers2010034 +Samah Felemban,Towards Recognising Learning Evidence in Collaborative Virtual Environments: A Mixed Agents Approach.,2017,6,Computers,3,db/journals/computers/computers6.html#FelembanGC17,https://doi.org/10.3390/computers6030022 +Mariana-Eugenia Ilas,A New Method of Histogram Computation for Efficient Implementation of the HOG Algorithm.,2018,7,Computers,1,db/journals/computers/computers7.html#IlasI18,https://doi.org/10.3390/computers7010018 +Imdadul Karim,A Comparative Experimental Design and Performance Analysis of Snort-Based Intrusion Detection System in Practical Computer Networks.,2017,6,Computers,1,db/journals/computers/computers6.html#KarimVLM17,https://doi.org/10.3390/computers6010006 +Joseph Alexander Brown,Levels for Hotline Miami 2: Wrong Number Using Procedural Content Generations.,2018,7,Computers,2,db/journals/computers/computers7.html#BrownLOP18,https://doi.org/10.3390/computers7020022 +Zainab Sultani,Color Reduction in an Authenticate Live 3D Point Cloud Video Streaming System.,2016,5,Computers,3,db/journals/computers/computers5.html#SultaniAW16,https://doi.org/10.3390/computers5030017 +Christoph Reichert,An Efficient Decoder for the Recognition of Event-Related Potentials in High-Density MEG Recordings.,2016,5,Computers,2,db/journals/computers/computers5.html#ReichertDKH16,https://doi.org/10.3390/computers5020005 +Mejda Chihaoui,A Survey of 2D Face Recognition Techniques.,2016,5,Computers,4,db/journals/computers/computers5.html#ChihaouiEBA16,https://doi.org/10.3390/computers5040021 +Ali A. Yassin,Strong Authentication Scheme Based on Hand Geometry and Smart Card Factors.,2016,5,Computers,3,db/journals/computers/computers5.html#YassinYH16,https://doi.org/10.3390/computers5030015 +Mohammad Samadi Gharajeh,Static Three-Dimensional Fuzzy Routing Based on the Receiving Probability in Wireless Sensor Networks.,2013,2,Computers,4,db/journals/computers/computers2.html#GharajehK13,https://doi.org/10.3390/computers2040152 +Maryam Taherian,Promoting the Quality Level of Signaling in Railway Transportation System Taking Advantage from Wireless Sensor Networks Technology.,2017,6,Computers,3,db/journals/computers/computers6.html#TaherianMH17,https://doi.org/10.3390/computers6030026 +Ghassan Kbar,A University-Based Smart and Context Aware Solution for People with Disabilities (USCAS-PWD).,2016,5,Computers,3,db/journals/computers/computers5.html#KbarAMAM16,https://doi.org/10.3390/computers5030018 +Federico Sarzotti,Self-Monitoring of Emotions and Mood Using a Tangible Approach.,2018,7,Computers,1,db/journals/computers/computers7.html#Sarzotti18,https://doi.org/10.3390/computers7010007 +Teng Li,Exploring Graphics Processing Unit (GPU) Resource Sharing Efficiency for High Performance Computing.,2013,2,Computers,4,db/journals/computers/computers2.html#LiNE13,https://doi.org/10.3390/computers2040176 +Jason R. Rambach,6DoF Object Tracking based on 3D Scans for Augmented Reality Remote Live Support.,2018,7,Computers,1,db/journals/computers/computers7.html#RambachPSAS18,https://doi.org/10.3390/computers7010006 +Khaled Shuaib,Cognitive Radio for Smart Grid with Security Considerations.,2016,5,Computers,2,db/journals/computers/computers5.html#ShuaibBHAA16,https://doi.org/10.3390/computers5020007 +Amon Rapp,Editorial of the Special Issue on Quantified Self and Personal Informatics.,2018,7,Computers,1,db/journals/computers/computers7.html#RappCM18,https://doi.org/10.3390/computers7010014 +Darren Seifert,A Security Analysis of Cyber-Physical Systems Architecture for Healthcare.,2016,5,Computers,4,db/journals/computers/computers5.html#SeifertR16,https://doi.org/10.3390/computers5040027 +Takahiro Yamaguchi,A Reference Point Construction Method Using Mobile Terminals and the Indoor Localization Evaluation in the Centroid Method.,2015,4,Computers,2,db/journals/computers/computers4.html#YamaguchiT15,https://doi.org/10.3390/computers4020155 +Grégoire Cattan,Recommendations for Integrating a P300-Based Brain Computer Interface in Virtual Reality Environments for Gaming.,2018,7,Computers,2,db/journals/computers/computers7.html#CattanMAC18,https://doi.org/10.3390/computers7020034 +Daniel Peters,A Secure System Architecture for Measuring Instruments in Legal Metrology.,2015,4,Computers,2,db/journals/computers/computers4.html#PetersPST15,https://doi.org/10.3390/computers4020061 +Khattab M. Ali Alheeti,Intelligent Intrusion Detection of Grey Hole and Rushing Attacks in Self-Driving Vehicular Networks.,2016,5,Computers,3,db/journals/computers/computers5.html#AlheetiGM16,https://doi.org/10.3390/computers5030016 +Shariq Bashir,An Improved Retrievability-Based Cluster-Resampling Approach for Pseudo Relevance Feedback.,2016,5,Computers,4,db/journals/computers/computers5.html#Bashir16,https://doi.org/10.3390/computers5040029 +Jeremy Straub,A Characterization of the Utility of Using Artificial Intelligence to Test Two Artificial Intelligence Systems.,2013,2,Computers,2,db/journals/computers/computers2.html#StraubH13,https://doi.org/10.3390/computers2020067 +Alessandro S. Spinelli,Reliability of NAND Flash Memories: Planar Cells and Emerging Issues in 3D Devices.,2017,6,Computers,2,db/journals/computers/computers6.html#SpinelliCL17,https://doi.org/10.3390/computers6020016 +Ralph Vacca,Promises and Pitfalls of Computer-Supported Mindfulness: Exploring a Situated Mobile Approach.,2018,7,Computers,1,db/journals/computers/computers7.html#Vacca18,https://doi.org/10.3390/computers7010002 +Andrej Kosir,Emotion Elicitation in a Socially Intelligent Service: The Typing Tutor.,2017,6,Computers,2,db/journals/computers/computers6.html#KosirS17,https://doi.org/10.3390/computers6020014 +Xiulong Liu,CPS-Based Smart Warehouse for Industry 4.0: A Survey of the Underlying Technologies.,2018,7,Computers,1,db/journals/computers/computers7.html#LiuCYJ18,https://doi.org/10.3390/computers7010013 +Raffaele Bolla,Improving Efficiency of Edge Computing Infrastructures through Orchestration Models †.,2018,7,Computers,2,db/journals/computers/computers7.html#BollaCRR18,https://doi.org/10.3390/computers7020036 +Mustufa Haider Abidi,Development and Evaluation of the Virtual Prototype of the First Saudi Arabian-Designed Car.,2016,5,Computers,4,db/journals/computers/computers5.html#AbidiAEDA16,https://doi.org/10.3390/computers5040026 +John Gatewood Ham,An ECMA-55 Minimal BASIC Compiler for x86-64 Linux.,2014,3,Computers,3,db/journals/computers/computers3.html#Ham14,https://doi.org/10.3390/computers3030069 +Rafael Lahoz-Beltra,Quantum Genetic Algorithms for Computer Scientists.,2016,5,Computers,4,db/journals/computers/computers5.html#Lahoz-Beltra16,https://doi.org/10.3390/computers5040024 +Sparsh Mittal,A Survey of Soft-Error Mitigation Techniques for Non-Volatile Memories.,2017,6,Computers,1,db/journals/computers/computers6.html#Mittal17,https://doi.org/10.3390/computers6010008 +Rami Yared,Ambient Technology to Assist Elderly People in Indoor Risks.,2016,5,Computers,4,db/journals/computers/computers5.html#YaredA16,https://doi.org/10.3390/computers5040022 +Juhani Latvakoski,A Survey on M2M Service Networks.,2014,3,Computers,4,db/journals/computers/computers3.html#LatvakoskiIVJAMLTGGKGV14,https://doi.org/10.3390/computers3040130 +Georg Gerstweiler,DARGS: Dynamic AR Guiding System for Indoor Environments.,2018,7,Computers,1,db/journals/computers/computers7.html#GerstweilerPK18,https://doi.org/10.3390/computers7010005 +Brian Ondiege,Exploring a New Security Framework for Remote Patient Monitoring Devices.,2017,6,Computers,1,db/journals/computers/computers6.html#OndiegeCM17,https://doi.org/10.3390/computers6010011 +Fatemeh Moradi,NEAT-Lamp and Talking Tree: Beyond Personal Informatics towards Active Workplaces.,2018,7,Computers,1,db/journals/computers/computers7.html#MoradiW18,https://doi.org/10.3390/computers7010004 +Yoshio Suga,Store-Carry and Forward-Type M2M Communication Protocol Enabling Guide Robots to Work together and the Method of Identifying Malfunctioning Robots Using the Byzantine Algorithm.,2016,5,Computers,4,db/journals/computers/computers5.html#SugaT16,https://doi.org/10.3390/computers5040030 +Piotr Dziurzanski,Feedback-Based Admission Control for Firm Real-Time Task Allocation with Dynamic Voltage and Frequency Scaling.,2018,7,Computers,2,db/journals/computers/computers7.html#DziurzanskiS18,https://doi.org/10.3390/computers7020026 +Süleyman Savas,Designing Domain-Specific Heterogeneous Architectures from Dataflow Programs.,2018,7,Computers,2,db/journals/computers/computers7.html#SavasUN18,https://doi.org/10.3390/computers7020027 +Jun-Won Ho,Hop-by-HopWorm Propagation with Carryover Epidemic Model in Mobile Sensor Networks.,2015,4,Computers,4,db/journals/computers/computers4.html#Ho15,https://doi.org/10.3390/computers4040283 +Amit Singh 0002,An Artificial Bee Colony-Based COPE Framework for Wireless Sensor Network.,2016,5,Computers,2,db/journals/computers/computers5.html#SinghN16,https://doi.org/10.3390/computers5020008 +Milko Krachunov,Application of Machine Learning Models in Error and Variant Detection in High-Variation Genomics Datasets.,2017,6,Computers,4,db/journals/computers/computers6.html#KrachunovNV17,https://doi.org/10.3390/computers6040029 +Laith Al-Jobouri,Video over DSL with LDGM Codes for Interactive Applications.,2016,5,Computers,2,db/journals/computers/computers5.html#Al-JobouriCFC16,https://doi.org/10.3390/computers5020009 +Amjad Mahmood,Hard Real-Time Task Scheduling in Cloud Computing Using an Adaptive Genetic Algorithm.,2017,6,Computers,2,db/journals/computers/computers6.html#MahmoodK17,https://doi.org/10.3390/computers6020015 +Wulfrano Arturo Luna Ramirez,Bridging the Gap between ABM and MAS: A Disaster-Rescue Simulation Using Jason and NetLogo.,2018,7,Computers,2,db/journals/computers/computers7.html#RamirezF18,https://doi.org/10.3390/computers7020024 +Xiaowu Li,The Accurate Method for Computing the Minimum Distance between a Point and an Elliptical Torus.,2016,5,Computers,1,db/journals/computers/computers5.html#LiWHWY16,https://doi.org/10.3390/computers5010004 +Giuseppe Agapito,Editorial of the Special Issue of the 10th Workshop on Biomedical and Bioinformatics Challenges for Computer Science - BBC 2017.,2018,7,Computers,1,db/journals/computers/computers7.html#AgapitoCCDZ18,https://doi.org/10.3390/computers7010017 +Mamdouh Babi,Towards Trustworthy Collaborative Editing.,2017,6,Computers,2,db/journals/computers/computers6.html#BabiZ17,https://doi.org/10.3390/computers6020013 +Jalil Boukhobza,A Scalable and Highly Configurable Cache-Aware Hybrid Flash Translation Layer.,2014,3,Computers,1,db/journals/computers/computers3.html#BoukhobzaOR14,https://doi.org/10.3390/computers3010036 +Atinat Palawan,Continuity-Aware Scheduling Algorithm for Scalable Video Streaming.,2016,5,Computers,2,db/journals/computers/computers5.html#PalawanWG16,https://doi.org/10.3390/computers5020011 +Cosmina Ivan,A Cloud Based Mobile Dispatching System with Built-in Social CRM Component: Design and Implementation.,2015,4,Computers,3,db/journals/computers/computers4.html#IvanP15,https://doi.org/10.3390/computers4030176 +Gian Domenico Licciardo,Design of a Convolutional Two-Dimensional Filter in FPGA for Image Processing Applications.,2017,6,Computers,2,db/journals/computers/computers6.html#LicciardoCB17,https://doi.org/10.3390/computers6020019 +Laith Al-Jobouri,Error and Congestion Resilient Video Streaming over Broadband Wireless.,2015,4,Computers,2,db/journals/computers/computers4.html#Al-JobouriAFG15,https://doi.org/10.3390/computers4020113 +Ismail Amin Ali,Data Partitioning Technique for Improved Video Prioritization.,2017,6,Computers,3,db/journals/computers/computers6.html#AliMFG17,https://doi.org/10.3390/computers6030023 +Maryam Malekabadi,Air Condition's PID Controller Fine-Tuning Using Artificial Neural Networks and Genetic Algorithms.,2018,7,Computers,2,db/journals/computers/computers7.html#MalekabadiHN18,https://doi.org/10.3390/computers7020032 +Abhishek Bhatia,A Hybrid Autonomic Computing-Based Approach to Distributed Constraint Satisfaction Problems.,2015,4,Computers,1,db/journals/computers/computers4.html#BhatiaSG15,https://doi.org/10.3390/computers4010002 +E. George Walters III,Linear and Quadratic Interpolators Using Truncated-Matrix Multipliers and Squarers.,2015,4,Computers,4,db/journals/computers/computers4.html#Walters15,https://doi.org/10.3390/computers4040293 +Mohamad Hammam Alsafrjalani,Low Effort Design Space Exploration Methodology for Configurable Caches.,2018,7,Computers,2,db/journals/computers/computers7.html#AlsafrjalaniG18,https://doi.org/10.3390/computers7020021 +Hamid Reza Nasrinpour,Grouped Bees Algorithm: A Grouped Version of the Bees Algorithm.,2017,6,Computers,1,db/journals/computers/computers6.html#NasrinpourBT17,https://doi.org/10.3390/computers6010005 +Naser Al-Falahy,Improved Capacity and Fairness of Massive Machine Type Communications in Millimetre Wave 5G Network.,2018,7,Computers,1,db/journals/computers/computers7.html#Al-FalahyA18,https://doi.org/10.3390/computers7010016 +Mark Bowkett,Failure Detection of Composites with Control System Corrective Response in Drone System Applications.,2018,7,Computers,2,db/journals/computers/computers7.html#BowkettTC18,https://doi.org/10.3390/computers7020023 +Shian-Ru Ke,A Review on Video-Based Human Activity Recognition.,2013,2,Computers,2,db/journals/computers/computers2.html#KeHLHYC13,https://doi.org/10.3390/computers2020088 +Saeed Shahrivari,Beyond Batch Processing: Towards Real-Time and Streaming Big Data.,2014,3,Computers,4,db/journals/computers/computers3.html#Shahrivari14,https://doi.org/10.3390/computers3040117 +Rohit Kumar Das,BSEA: A Blind Sealed-Bid E-Auction Scheme for E-Commerce Applications.,2016,5,Computers,4,db/journals/computers/computers5.html#DasNBCMM16,https://doi.org/10.3390/computers5040032 +Xin Chen,Research on Similarity Measurements of 3D Models Based on Skeleton Trees.,2017,6,Computers,2,db/journals/computers/computers6.html#ChenHLHY17,https://doi.org/10.3390/computers6020017 +Salekul Islam,Security Property Validation of the Sensor Network Encryption Protocol (SNEP).,2015,4,Computers,3,db/journals/computers/computers4.html#Islam15,https://doi.org/10.3390/computers4030215 +Aaron J. Quigley,Welcome to Computers - A New Open Access Journal for Computer Science.,2012,1,Computers,1,db/journals/computers/computers1.html#Quigley12,https://doi.org/10.3390/computers1010001 +Tosiron Adegbija,TaPT: Temperature-Aware Dynamic Cache Optimization for Embedded Systems.,2018,7,Computers,1,db/journals/computers/computers7.html#AdegbijaG18,https://doi.org/10.3390/computers7010003 +Sajida Parveen,Face Liveness Detection Using Dynamic Local Ternary Pattern (DLTP).,2016,5,Computers,2,db/journals/computers/computers5.html#ParveenAAAHN16,https://doi.org/10.3390/computers5020010 +Amruta Awasthi,Non-Invasive Sensor Technology for the Development of a Dairy Cattle Health Monitoring System.,2016,5,Computers,4,db/journals/computers/computers5.html#AwasthiARW16,https://doi.org/10.3390/computers5040023 +Sang-won Leigh,Body-Borne Computers as Extensions of Self.,2017,6,Computers,1,db/journals/computers/computers6.html#LeighSKLM17,https://doi.org/10.3390/computers6010012 +Qaisar Abbas,DeepCAD: A Computer-Aided Diagnosis System for Mammographic Masses Using Deep Invariant Features.,2016,5,Computers,4,db/journals/computers/computers5.html#Abbas16,https://doi.org/10.3390/computers5040028 +Dario Bruneo,Energy Management in Industrial Plants.,2012,1,Computers,1,db/journals/computers/computers1.html#BruneoCMPS12,https://doi.org/10.3390/computers1010024 +Adrian Enache,Adaptive Video Transmission Using Residue Octree Cubes.,2014,3,Computers,2,db/journals/computers/computers3.html#EnacheB14,https://doi.org/10.3390/computers3020058 +Mitica Craus,Fractal Aspects in Classical Parallel Computing.,2016,5,Computers,3,db/journals/computers/computers5.html#CrausBA16,https://doi.org/10.3390/computers5030019 +Hikaru Sato,An N100-P300 Spelling Brain-Computer Interface with Detection of Intentional Control.,2016,5,Computers,4,db/journals/computers/computers5.html#SatoW16,https://doi.org/10.3390/computers5040031 +Mohammed R. Al-Mulla,Optimal Elbow Angle for Extracting sEMG Signals During Fatiguing Dynamic Contraction.,2015,4,Computers,3,db/journals/computers/computers4.html#Al-MullaSA15,https://doi.org/10.3390/computers4030251 +Qaisar Abbas,Prediction of Dermoscopy Patterns for Recognition of both Melanocytic and Non-Melanocytic Skin Lesions.,2016,5,Computers,3,db/journals/computers/computers5.html#AbbasSA16,https://doi.org/10.3390/computers5030013 +Mostafa Pordel,Semi-Automatic Image Labelling Using Depth Information.,2015,4,Computers,2,db/journals/computers/computers4.html#PordelH15,https://doi.org/10.3390/computers4020142 +Matt Edmunds,Design of a Flow Visualisation Framework.,2015,4,Computers,1,db/journals/computers/computers4.html#EdmundsTL15,https://doi.org/10.3390/computers4010024 +Tri Vu,Wearable Food Intake Monitoring Technologies: A Comprehensive Review.,2017,6,Computers,1,db/journals/computers/computers6.html#VuLAX17,https://doi.org/10.3390/computers6010004 +Fasee Ullah,Traffic Priority-Aware Adaptive Slot Allocation for Medium Access Control Protocol in Wireless Body Area Network.,2017,6,Computers,1,db/journals/computers/computers6.html#UllahAKA17,https://doi.org/10.3390/computers6010009 +Benjamin Johansen,Personalizing the Fitting of Hearing Aids by Learning Contextual Preferences From Internet of Things Data.,2018,7,Computers,1,db/journals/computers/computers7.html#JohansenPKLPL18,https://doi.org/10.3390/computers7010001 +Alaa A. S. Al-Rubaie,BICM-ID with Physical Layer Network Coding in TWR Free Space Optical Communication Links.,2017,6,Computers,3,db/journals/computers/computers6.html#Al-RubaieAG17,https://doi.org/10.3390/computers6030024 +Omar ávalos,Induction Motor Parameter Identification Using a Gravitational Search Algorithm.,2016,5,Computers,2,db/journals/computers/computers5.html#AvalosCG16,https://doi.org/10.3390/computers5020006 +Mohamad Hammam Alsafrjalani,Scheduling and Tuning for Low Energy in Heterogeneous and Configurable Multicore Systems.,2018,7,Computers,2,db/journals/computers/computers7.html#AlsafrjalaniG18a,https://doi.org/10.3390/computers7020025 +Issa M. Khalil,Cloud Computing Security: A Survey.,2014,3,Computers,1,db/journals/computers/computers3.html#KhalilKA14,https://doi.org/10.3390/computers3010001 +Igor M. Queiroz,A New Strategy for Energy Saving in Spectrum-Sliced Elastic Optical Networks †.,2018,7,Computers,2,db/journals/computers/computers7.html#QueirozA18,https://doi.org/10.3390/computers7020030 +Teemu Henrikki Laine,Mobile Educational Augmented Reality Games: A Systematic Literature Review and Two Case Studies.,2018,7,Computers,1,db/journals/computers/computers7.html#Laine18,https://doi.org/10.3390/computers7010019 +Elena Vergori,Battery Modelling and Simulation Using a Programmable Testing Equipment.,2018,7,Computers,2,db/journals/computers/computers7.html#VergoriMS18,https://doi.org/10.3390/computers7020020 +Emon Kumar Dey,An Automated System for Garment Texture Design Class Identification.,2015,4,Computers,3,db/journals/computers/computers4.html#DeyTS15,https://doi.org/10.3390/computers4030265 +Patrizia Vizza,On the Use of Voice Signals for Studying Sclerosis Disease.,2017,6,Computers,4,db/journals/computers/computers6.html#VizzaTMBV17,https://doi.org/10.3390/computers6040030 +Adeel Anjum,BangA: An Efficient and Flexible Generalization-Based Algorithm for Privacy Preserving Data Publication.,2017,6,Computers,1,db/journals/computers/computers6.html#AnjumR17,https://doi.org/10.3390/computers6010001 +Mari C. Juan,Users' Perceptions Using Low-End and High-End Mobile-Rendered HMDs: A Comparative Study.,2018,7,Computers,1,db/journals/computers/computers7.html#JuanGVL18,https://doi.org/10.3390/computers7010015 +Alyaa Al-Barrak,Enhancing BER Performance Limit of BCH and RS Codes Using Multipath Diversity.,2017,6,Computers,2,db/journals/computers/computers6.html#Al-BarrakAKC17,https://doi.org/10.3390/computers6020021 +Eric Chiejina,A Dynamic Reputation Management System for Mobile Ad Hoc Networks.,2015,4,Computers,2,db/journals/computers/computers4.html#ChiejinaXC15,https://doi.org/10.3390/computers4020087 +Bellamkonda Saidulu,Low Noise Low Power CMOS Telescopic-OTA for Bio-Medical Applications.,2016,5,Computers,4,db/journals/computers/computers5.html#SaiduluMS16,https://doi.org/10.3390/computers5040025 +Mohammed Altaher,High-Precision Control of a Piezo-Driven Nanopositioner Using Fuzzy Logic Controllers.,2018,7,Computers,1,db/journals/computers/computers7.html#AltaherA18,https://doi.org/10.3390/computers7010010 +Andreas Schreiber,Visualizing the Provenance of Personal Data Using Comics.,2018,7,Computers,1,db/journals/computers/computers7.html#SchreiberS18,https://doi.org/10.3390/computers7010012 +Rino Micheloni,Architectural and Integration Options for 3D NAND Flash Memories.,2017,6,Computers,3,db/journals/computers/computers6.html#MicheloniCZO17,https://doi.org/10.3390/computers6030027 +E. George Walters III,Array Multipliers for High Throughput in Xilinx FPGAs with 6-Input LUTs.,2016,5,Computers,4,db/journals/computers/computers5.html#Walters16,https://doi.org/10.3390/computers5040020 +Chin-Ling Chen,An Improvement on Remote User Authentication Schemes Using Smart Cards.,2018,7,Computers,1,db/journals/computers/computers7.html#ChenDTCL18,https://doi.org/10.3390/computers7010009 +Grigorios Kalliatakis,Conceiving Human Interaction by Visualising Depth Data of Head Pose Changes and Emotion Recognition via Facial Expressions.,2017,6,Computers,3,db/journals/computers/computers6.html#KalliatakisSV17,https://doi.org/10.3390/computers6030025 +Luke Whittington,Towards Realising FollowMe User Profiles for Macro-Intelligent Environments.,2013,2,Computers,3,db/journals/computers/computers2.html#WhittingtonDHA13,https://doi.org/10.3390/computers2030132 +James Stallwood,The Right to Remember: Implementing a Rudimentary Emotive-Effect Layer for Frustration on AI Agent Gameplay Strategy.,2017,6,Computers,2,db/journals/computers/computers6.html#StallwoodR17,https://doi.org/10.3390/computers6020018 +Adrian Kampa,Discrete Event Simulation Method as a Tool for Improvement of Manufacturing Systems.,2017,6,Computers,1,db/journals/computers/computers6.html#KampaGP17,https://doi.org/10.3390/computers6010010 +Reggie Davidrajuh,Performance Evaluation of Discrete Event Systems with GPenSIM.,2018,7,Computers,1,db/journals/computers/computers7.html#DavidrajuhSK18,https://doi.org/10.3390/computers7010008 +Qingquan Sun,Static Human Detection and Scenario Recognition via Wearable Thermal Sensing System.,2017,6,Computers,1,db/journals/computers/computers6.html#SunSQHCH17,https://doi.org/10.3390/computers6010003 +Andrea Silvagni,3D NAND Flash Based on Planar Cells.,2017,6,Computers,4,db/journals/computers/computers6.html#Silvagni17,https://doi.org/10.3390/computers6040028 +Djallel Bouneffouf,Exponentiated Gradient Exploration for Active Learning.,2016,5,Computers,1,db/journals/computers/computers5.html#Bouneffouf16,https://doi.org/10.3390/computers5010001 +Ahmed Saeed 0004,Hardware-Assisted Secure Communication in Embedded and Multi-Core Computing Systems.,2018,7,Computers,2,db/journals/computers/computers7.html#SaeedAJ18,https://doi.org/10.3390/computers7020031 +Md. Golam Murshed,Enhanced Bully Algorithm for Leader Node Election in Synchronous Distributed Systems.,2012,1,Computers,1,db/journals/computers/computers1.html#MurshedA12,https://doi.org/10.3390/computers1010003 +Norlina Mohd Sabr,Optimization of Nano-Process Deposition Parameters Based on Gravitational Search Algorithm.,2016,5,Computers,2,db/journals/computers/computers5.html#SabrSPM16,https://doi.org/10.3390/computers5020012 +Joy Backhaus,Assessing Efficiency of Prompts Based on Learner Characteristics.,2017,6,Computers,1,db/journals/computers/computers6.html#BackhausJPK17,https://doi.org/10.3390/computers6010007 +William Diehl,Comparing the Cost of Protecting Selected Lightweight Block Ciphers against Differential Power Analysis in Low-Cost FPGAs.,2018,7,Computers,2,db/journals/computers/computers7.html#DiehlAKG18,https://doi.org/10.3390/computers7020028 +Giorgio Bruno,A Dataflow-Oriented Modeling Approach to Business Processes.,2017,8,IJHCITP,1,db/journals/ijhcitp/ijhcitp8.html#Bruno17,https://doi.org/10.4018/IJHCITP.2017010104 +Bernard Griffin,Adopting Agile Methods for Graduate Employability.,2013,4,IJHCITP,3,db/journals/ijhcitp/ijhcitp4.html#GriffinURG13,https://doi.org/10.4018/jhcitp.2013070101 +Alberto Bento,Strategic Information Systems and Business Outcomes.,2014,5,IJHCITP,1,db/journals/ijhcitp/ijhcitp5.html#BentoBWB14,https://doi.org/10.4018/ijhcitp.2014010102 +Thurasamy Ramayah,Key Dimensions on B2C E-Business: An Empirical Study in Malaysia.,2013,4,IJHCITP,2,db/journals/ijhcitp/ijhcitp4.html#RamayahPS13,https://doi.org/10.4018/jhcitp.2013040104 +Blanca García-Riaza,Students' Perception of the Integration of Mobile Devices as Learning Tools in Pre-Primary and Primary Teacher Training Degrees.,2016,7,IJHCITP,2,db/journals/ijhcitp/ijhcitp7.html#Garcia-RiazaR16,https://doi.org/10.4018/IJHCITP.2016040102 +Murat Yilmaz,Social Capital as a Determinant Factor of Software Development Productivity: An Empirical Study Using Structural Equation Modeling.,2012,3,IJHCITP,2,db/journals/ijhcitp/ijhcitp3.html#YilmazO12,https://doi.org/10.4018/jhcitp.2012040104 +Tokuro Matsuo,Analogical Thinking Based Instruction Method in IT Professional Education.,2010,1,IJHCITP,3,db/journals/ijhcitp/ijhcitp1.html#MatsuoF10,https://doi.org/10.4018/jhcitp.2010070101 +Aishwarya Singh,Empathy and Mindfulness: Potential Antecedents to Authentic Leadership.,2016,7,IJHCITP,4,db/journals/ijhcitp/ijhcitp7.html#SinghSS16,https://doi.org/10.4018/IJHCITP.2016100101 +Ruchi Verma,On Behavioural Responses and Different Shades of Flaming in Social Media and Computer Mediated Communication.,2016,7,IJHCITP,4,db/journals/ijhcitp/ijhcitp7.html#VermaNS16,https://doi.org/10.4018/IJHCITP.2016100103 +Sunil Chaudhary,Time Up for Phishing with Effective Anti-Phishing Research Strategies.,2015,6,IJHCITP,2,db/journals/ijhcitp/ijhcitp6.html#ChaudharyBLV15,https://doi.org/10.4018/IJHCITP.2015040104 +Andrea Valéria Steil,Behavioral Intentions and Retention of Technical and Scientific Staff in Research and Development Organizations.,2018,9,IJHCITP,2,db/journals/ijhcitp/ijhcitp9.html#SteilDSCC18,https://doi.org/10.4018/IJHCITP.2018040102 +Saraswathy R. Aravinda Rajah,Facades of Attractive Employer in Indian IT Industry: Existing Employee Perspective.,2011,2,IJHCITP,1,db/journals/ijhcitp/ijhcitp2.html#RajahNSM11,https://doi.org/10.4018/jhcitp.2011010106 +Priyam Dhani,Emotional Intelligence and Personality Traits as Predictors of Job Performance of IT Employees.,2018,9,IJHCITP,3,db/journals/ijhcitp/ijhcitp9.html#DhaniS18,https://doi.org/10.4018/IJHCITP.2018070105 +Mamta Mohapatra,Building a Sustainable Talent Acquisition Model in a Dynamic Business Environment.,2018,9,IJHCITP,3,db/journals/ijhcitp/ijhcitp9.html#MohapatraS18,https://doi.org/10.4018/IJHCITP.2018070103 +Florian Schwade,The ERP Challenge: Developing an Integrated Platform and Course Concept for Teaching ERP Skills in Universities.,2018,9,IJHCITP,1,db/journals/ijhcitp/ijhcitp9.html#SchwadeS18,https://doi.org/10.4018/IJHCITP.2018010104 +Adriana Mijuskovic,Cloud Storage Privacy and Security User Awareness: A Comparative Analysis between Dutch and Macedonian Users.,2016,7,IJHCITP,3,db/journals/ijhcitp/ijhcitp7.html#MijuskovicF16,https://doi.org/10.4018/IJHCITP.2016070101 +Salila Kumar Pattnaik,Employer Value Proposition: A Conceptual Framework and Scale Development for Indian Information Technology Professionals.,2016,7,IJHCITP,4,db/journals/ijhcitp/ijhcitp7.html#PattnaikM16,https://doi.org/10.4018/IJHCITP.2016100102 +Rositsa Doneva,Social Media in Bulgarian Higher Education: An Exploratory Survey.,2017,8,IJHCITP,4,db/journals/ijhcitp/ijhcitp8.html#DonevaG17,https://doi.org/10.4018/IJHCITP.2017100106 +Adrián Hernández-López,Satisfaction and Motivation: IT Practitioners' Perspective.,2012,3,IJHCITP,4,db/journals/ijhcitp/ijhcitp3.html#Hernandez-Lopez12,https://doi.org/10.4018/jhcitp.2012100104 +Carlo Gabriel Porto Bellini,Customer Team Effectiveness through People Traits in Information Systems Development: A Compilation of Theoretical Measures.,2012,3,IJHCITP,3,db/journals/ijhcitp/ijhcitp3.html#BelliniPB12,https://doi.org/10.4018/jhcitp.2012070105 +Javier García Guzmán,Success Factors for the Management of Global Virtual Teams for Software Development.,2011,2,IJHCITP,2,db/journals/ijhcitp/ijhcitp2.html#GuzmanRSS11,https://doi.org/10.4018/jhcitp.2011040105 +Mehdi Khouja,IT Governance in Higher Education Institutions: A Systematic Literature Review.,2018,9,IJHCITP,2,db/journals/ijhcitp/ijhcitp9.html#KhoujaRHM18,https://doi.org/10.4018/IJHCITP.2018040104 +Kerstin V. Siakas,IT Methods and Techniques Applied to Educational Quality Enhancement.,2011,2,IJHCITP,3,db/journals/ijhcitp/ijhcitp2.html#SiakasGG11,https://doi.org/10.4018/jhcitp.2011070106 +Chingning Wang,Understanding IT Compensation Strategies from the Perspective of Small Non-IT Firms: A Case Study of a US-Based Chinese Newspaper.,2014,5,IJHCITP,4,db/journals/ijhcitp/ijhcitp5.html#WangK14,https://doi.org/10.4018/ijhcitp.2014100101 +Andreas Munk-Madsen,Success Factors and Motivators in SPI.,2011,2,IJHCITP,4,db/journals/ijhcitp/ijhcitp2.html#Munk-MadsenN11,https://doi.org/10.4018/jhcitp.2011100105 +Safiah Omar,The Influence of Career Adaptability and Work Happiness on ICT Professionals' Intention to Leave.,2018,9,IJHCITP,1,db/journals/ijhcitp/ijhcitp9.html#Omar18,https://doi.org/10.4018/IJHCITP.2018010102 +Léon J. M. Rothkrantz,How Social Media Facilitate Learning Communities and Peer Groups around MOOCS.,2015,6,IJHCITP,1,db/journals/ijhcitp/ijhcitp6.html#Rothkrantz15,https://doi.org/10.4018/ijhcitp.2015010101 +Ricardo Colomo Palacios,Linked Data: Perspectives for IT Professionals.,2012,3,IJHCITP,3,db/journals/ijhcitp/ijhcitp3.html#PalaciosSAG12,https://doi.org/10.4018/jhcitp.2012070101 +Darko Galinec,Human Capital Management Process Based on Information Technology Models and Governance.,2010,1,IJHCITP,1,db/journals/ijhcitp/ijhcitp1.html#Galinec10,https://doi.org/10.4018/jhcitp.2010091104 +Carlo Gabriel Porto Bellini,Are We Still Talking to Ourselves? An Analysis of the Introspective Information Technology Field by Brazilian Experts.,2013,4,IJHCITP,3,db/journals/ijhcitp/ijhcitp4.html#BelliniDP13,https://doi.org/10.4018/jhcitp.2013070102 +Premalatha Packirisamy,Managing Power Distance to Retain Talent: Evidence from India.,2017,8,IJHCITP,3,db/journals/ijhcitp/ijhcitp8.html#Packirisamy17,https://doi.org/10.4018/IJHCITP.2017070104 +Rachid Belhaj,Including Client Opinion and Employee Engagement in the Strategic Human Resource Management: An Advanced SWOT- FUZZY Decision Making Tool.,2015,6,IJHCITP,3,db/journals/ijhcitp/ijhcitp6.html#BelhajT15,https://doi.org/10.4018/IJHCITP.2015070102 +Cristina Olaverri-Monreal,Intelligent Agent (IA) Systems to Generate User Stories for a Positive User Experience.,2014,5,IJHCITP,1,db/journals/ijhcitp/ijhcitp5.html#Olaverri-MonrealHB14,https://doi.org/10.4018/ijhcitp.2014010103 +Laura Icela González-Pérez,User Experience in Institutional Repositories: A Systematic Literature Review.,2018,9,IJHCITP,1,db/journals/ijhcitp/ijhcitp9.html#Gonzalez-PerezR18,https://doi.org/10.4018/IJHCITP.2018010105 +Sungjoo Kang,Model Based Estimation and Tracking Method for Agile Software Project.,2012,3,IJHCITP,2,db/journals/ijhcitp/ijhcitp3.html#KangCB12,https://doi.org/10.4018/jhcitp.2012040101 +Vinita Sinha,Comparative Study on Workplace Collaboration across the Leading Global Organizations in IT Sector.,2015,6,IJHCITP,2,db/journals/ijhcitp/ijhcitp6.html#SinhaMDAS15,https://doi.org/10.4018/IJHCITP.2015040102 +Carlos Figuera,A Multidisciplinary Problem Based Learning Experience for Telecommunications Students.,2011,2,IJHCITP,3,db/journals/ijhcitp/ijhcitp2.html#FigueraMGAACRRR11,https://doi.org/10.4018/jhcitp.2011070102 +Lifen Cheng,Is It A Small World After All?: Mapping Intercultural Competence in Computer Mediated Communication Users in Spanish Campus.,2014,5,IJHCITP,3,db/journals/ijhcitp/ijhcitp5.html#ChengA14,https://doi.org/10.4018/ijhcitp.2014070104 +Juri Valtanen,Problem-Focused Higher Education for Shaping the Knowledge Society.,2011,2,IJHCITP,4,db/journals/ijhcitp/ijhcitp2.html#ValtanenBGRS11,https://doi.org/10.4018/jhcitp.2011100103 +Heli Aramo-Immonen,Project Managers' Competence Identification.,2011,2,IJHCITP,1,db/journals/ijhcitp/ijhcitp2.html#Aramo-ImmonenBMV11,https://doi.org/10.4018/jhcitp.2011010103 +Sara Pinto,Technological Dissemination in the Portuguese Payments System: An Empirical Analysis to the Region of Santarém.,2010,1,IJHCITP,4,db/journals/ijhcitp/ijhcitp1.html#PintoF10,https://doi.org/10.4018/jhcitp.2010100104 +Jasmina Trajkovski,Risk Management Framework That Meets the Implementation Challenges in IT-Centric Micro and Small Companies.,2013,4,IJHCITP,2,db/journals/ijhcitp/ijhcitp4.html#TrajkovskiA13,https://doi.org/10.4018/jhcitp.2013040102 +Prerna Chhetri,The Impact of Perceived Organizational Politics on Work Attitudes: The Moderating Role of Leader-Member-Exchange Quality.,2014,5,IJHCITP,2,db/journals/ijhcitp/ijhcitp5.html#ChhetriAC14,https://doi.org/10.4018/ijhcitp.2014040101 +Mrinmoy Majumder,Technology as Work and Work as Technology.,2016,7,IJHCITP,1,db/journals/ijhcitp/ijhcitp7.html#Majumder16,https://doi.org/10.4018/IJHCITP.2016010102 +Alexander Baumeister,Activity Driven Budgeting of Software Projects.,2010,1,IJHCITP,4,db/journals/ijhcitp/ijhcitp1.html#BaumeisterI10,https://doi.org/10.4018/jhcitp.2010100102 +Maria Clara Viegas,TRAILER: A Tool for Managing Informal Learning.,2014,5,IJHCITP,3,db/journals/ijhcitp/ijhcitp5.html#ViegasMAMGFBJGH14,https://doi.org/10.4018/ijhcitp.2014070101 +Rory O'Connor,The Effect of Team Dynamics on Software Development Process Improvement.,2012,3,IJHCITP,3,db/journals/ijhcitp/ijhcitp3.html#OConnorB12,https://doi.org/10.4018/jhcitp.2012070102 +Antonio Maratea,User Click Modeling on a Learning Management System.,2017,8,IJHCITP,4,db/journals/ijhcitp/ijhcitp8.html#MarateaPM17,https://doi.org/10.4018/IJHCITP.2017100104 +Helena Dulce Campos,GOTOPS: Code of Technoethics Governance.,2010,1,IJHCITP,3,db/journals/ijhcitp/ijhcitp1.html#CamposA10,https://doi.org/10.4018/jhcitp.2010070104 +Babak Sohrabi,Human Resources Management and Information Systems Trend Analysis Using Text Clustering.,2018,9,IJHCITP,3,db/journals/ijhcitp/ijhcitp9.html#SohrabiVA18,https://doi.org/10.4018/IJHCITP.2018070101 +Michael Elliott,Excellence in IT Project Management: Firing Agile Silver Bullets.,2015,6,IJHCITP,3,db/journals/ijhcitp/ijhcitp6.html#ElliottD15,https://doi.org/10.4018/IJHCITP.2015070105 +Daniela Chudá,Mouse Usage Biometrics in eLearning Systems: Detection of Impersonation and User Profiling.,2015,6,IJHCITP,1,db/journals/ijhcitp/ijhcitp6.html#ChudaK15,https://doi.org/10.4018/ijhcitp.2015010104 +Marta Gómez,How Does the Extraversion of Software Development Teams Influence Team Satisfaction and Software Quality?: A Controlled Experiment.,2012,3,IJHCITP,4,db/journals/ijhcitp/ijhcitp3.html#GomezAGC12,https://doi.org/10.4018/jhcitp.2012100102 +Gustavo Ribeiro Alves,Simultaneous Usage of Methods for the Development of Experimental Competences.,2016,7,IJHCITP,1,db/journals/ijhcitp/ijhcitp7.html#AlvesVLG16,https://doi.org/10.4018/IJHCITP.2016010104 +Daniel Perez González,Interactions and Effects of CRM 2.0 in Public Administration: Issues of Interest to IT Professionals.,2012,3,IJHCITP,1,db/journals/ijhcitp/ijhcitp3.html#GonzalezG12,https://doi.org/10.4018/IJHCITP.2012010103 +Peter Krátky,Big Five Personality in Online Learning and Games: Analysis of Student Activity.,2016,7,IJHCITP,3,db/journals/ijhcitp/ijhcitp7.html#KratkyTC16,https://doi.org/10.4018/IJHCITP.2016070103 +Tzvetomir Vassilev,An Approach to Teaching Introductory Programming for IT Professionals Using Games.,2015,6,IJHCITP,1,db/journals/ijhcitp/ijhcitp6.html#Vassilev15,https://doi.org/10.4018/ijhcitp.2015010103 +ángel Herrero Crespo,Market Orientation and Manager's Innovativeness in the Adoption of Managerial IT in Small Firms: Application to the Retail Sector.,2013,4,IJHCITP,3,db/journals/ijhcitp/ijhcitp4.html#CrespoAS13,https://doi.org/10.4018/jhcitp.2013070105 +Giorgio Bruno,Combining Flexibility and Data Handling in Business Process Models.,2014,5,IJHCITP,2,db/journals/ijhcitp/ijhcitp5.html#Bruno14,https://doi.org/10.4018/ijhcitp.2014040102 +George Dragoi,Knowledge Base Development in Virtual Enterprise Network as Support for Workplace Risk Assessment.,2011,2,IJHCITP,3,db/journals/ijhcitp/ijhcitp2.html#DragoiDRRC11,https://doi.org/10.4018/jhcitp.2011070104 +Rui Moutinho,Project Scheduling and Cost Minimization with Multiple Availability Constrained Resources under Stochastic Conditions.,2015,6,IJHCITP,4,db/journals/ijhcitp/ijhcitp6.html#MoutinhoT15,https://doi.org/10.4018/IJHCITP.2015100103 +Miroslav Minovic,Educational Games and IT Professionals: Perspectives from the Field.,2012,3,IJHCITP,4,db/journals/ijhcitp/ijhcitp3.html#MinovicSM12,https://doi.org/10.4018/jhcitp.2012100103 +Zoran Putnik,Partial Solution for a Problem of Developing a Large Number of eLearning Resources.,2016,7,IJHCITP,3,db/journals/ijhcitp/ijhcitp7.html#PutnikIBB16,https://doi.org/10.4018/IJHCITP.2016070105 +Angelos Zompras,An Investigation of ISO 26000 and Social Responsibility Practices Applied in IT Companies.,2015,6,IJHCITP,2,db/journals/ijhcitp/ijhcitp6.html#ZomprasS15,https://doi.org/10.4018/IJHCITP.2015040103 +Hilda Tellioglu,FCE: A Framework for Curriculum Evaluation.,2016,7,IJHCITP,3,db/journals/ijhcitp/ijhcitp7.html#Tellioglu16,https://doi.org/10.4018/IJHCITP.2016070102 +Manuel Palomo-Duarte,Assessing Foreign Language Learning Through Mobile Game-Based Learning Environments.,2016,7,IJHCITP,2,db/journals/ijhcitp/ijhcitp7.html#Palomo-DuarteBC16,https://doi.org/10.4018/IJHCITP.2016040104 +Kevin Duncan,A Secure Knowledge Resource Management Theory for IT/IS Outsourcing: The Service Provider Perspective.,2014,5,IJHCITP,1,db/journals/ijhcitp/ijhcitp5.html#DuncanD14,https://doi.org/10.4018/ijhcitp.2014010105 +Nelson Carriço,Information Architecture For IS Function: A Case Study.,2014,5,IJHCITP,2,db/journals/ijhcitp/ijhcitp5.html#CarricoVFD14,https://doi.org/10.4018/ijhcitp.2014040103 +Valentina Dagiene,An Experience of Running a MOOC on Information Technology.,2016,7,IJHCITP,3,db/journals/ijhcitp/ijhcitp7.html#DagieneRG16,https://doi.org/10.4018/IJHCITP.2016070106 +Giorgio Bruno,A Notation for the Task-Oriented Modeling of Business Processes.,2012,3,IJHCITP,3,db/journals/ijhcitp/ijhcitp3.html#Bruno12,https://doi.org/10.4018/jhcitp.2012070104 +Maha Khemaja,Skill oriented Training Activity as a Service: An Approach based on the e-Competence Framework to overcome the Fast Changing IT Profession.,2014,5,IJHCITP,4,db/journals/ijhcitp/ijhcitp5.html#KhemajaM14,https://doi.org/10.4018/ijhcitp.2014100104 +Fidel Egoeze,Impact of ICT on Universities Administrative Services and Management of Students' Records: ICT in University Administration.,2018,9,IJHCITP,2,db/journals/ijhcitp/ijhcitp9.html#EgoezeMMD18,https://doi.org/10.4018/IJHCITP.2018040101 +Donna Weaver McCloskey,An Examination of the Boundary Between Work and Home for Knowledge Workers.,2018,9,IJHCITP,3,db/journals/ijhcitp/ijhcitp9.html#McCloskey18,https://doi.org/10.4018/IJHCITP.2018070102 +Colin Pattinson,Sustainability and Social Responsibility in Raising Awareness of Green Issues through Developing Tertiary Academic Provision: A Case Study.,2011,2,IJHCITP,4,db/journals/ijhcitp/ijhcitp2.html#PattinsonOR11,https://doi.org/10.4018/jhcitp.2011100101 +Karsten Jahn,A Vertical Approach to Knowledge Management: Codification and Personalization in Software Processes.,2011,2,IJHCITP,2,db/journals/ijhcitp/ijhcitp2.html#JahnN11,https://doi.org/10.4018/jhcitp.2011040103 +Lars Göran Wallgren,Theory Y Embedded in Theory X: The Limited Role of Autonomy in Decreasing Perceived Stress among IT Consultants.,2013,4,IJHCITP,4,db/journals/ijhcitp/ijhcitp4.html#Wallgren13,https://doi.org/10.4018/ijhcitp.2013100101 +Elli Georgiadou,The I5P Visualisation Framework for Performance Estimation through the Alignment of Process Maturity and Knowledge Sharing.,2011,2,IJHCITP,2,db/journals/ijhcitp/ijhcitp2.html#GeorgiadouSB11,https://doi.org/10.4018/jhcitp.2011040104 +Valentina Morandi,Learning in Networks of SMEs: A Case Study in the ICT Industry.,2011,2,IJHCITP,1,db/journals/ijhcitp/ijhcitp2.html#MorandiS11,https://doi.org/10.4018/jhcitp.2011010105 +Radi Romansky,Architecture of Combined e-Learning Environment and Investigation of Secure Access and Privacy Protection.,2016,7,IJHCITP,3,db/journals/ijhcitp/ijhcitp7.html#RomanskyN16,https://doi.org/10.4018/IJHCITP.2016070107 +Tokuro Matsuo,Scenario-Based Career Path Decision Support Services in Human Capital Development.,2012,3,IJHCITP,1,db/journals/ijhcitp/ijhcitp3.html#MatsuoSTF12,https://doi.org/10.4018/jhcitp.2012010102 +Nelson Gama,Using People-CMM for Diminishing Resistance to ITIL.,2011,2,IJHCITP,3,db/journals/ijhcitp/ijhcitp2.html#GamaSS11,https://doi.org/10.4018/jhcitp.2011070103 +Salaheldin Ismail Salaheldin,Utilization of Project Management Software in Qatari Government Organizations: A Field-Force Analysis.,2010,1,IJHCITP,1,db/journals/ijhcitp/ijhcitp1.html#SalaheldinSA10,https://doi.org/10.4018/jhcitp.2010091101 +Imran U. Khan,An Organisational Culture Model for Comparative Studies and Assessment of IT Projects.,2012,3,IJHCITP,2,db/journals/ijhcitp/ijhcitp3.html#KhanUM12,https://doi.org/10.4018/jhcitp.2012040105 +Maha Khemaja,Using a Knapsack Model to Optimize Continuous Building of a Hybrid Intelligent Tutoring System: Application to Information Technology Professionals.,2016,7,IJHCITP,2,db/journals/ijhcitp/ijhcitp7.html#Khemaja16,https://doi.org/10.4018/IJHCITP.2016040101 +Markus Helfert,Student Projects and Virtual Collaboration in IT Degrees: Incorporating Entrepreneurship into Study Programmes.,2017,8,IJHCITP,4,db/journals/ijhcitp/ijhcitp8.html#HelfertLD17,https://doi.org/10.4018/IJHCITP.2017100102 +Francisco José Domínguez Mayo,A Framework for the Quality Evaluation of MDWE Methodologies and Information Technology Infrastructures.,2011,2,IJHCITP,4,db/journals/ijhcitp/ijhcitp2.html#MayoCMRF11,https://doi.org/10.4018/jhcitp.2011100102 +Antti Knutas,Creating Student Interaction Profiles for Adaptive Collaboration Gamification Design.,2016,7,IJHCITP,3,db/journals/ijhcitp/ijhcitp7.html#KnutasIMRP16,https://doi.org/10.4018/IJHCITP.2016070104 +Razwan Mohmed Salah,IT-Based Education with Online Labs in the MENA Region: Profiling the Research Community.,2015,6,IJHCITP,4,db/journals/ijhcitp/ijhcitp6.html#SalahAG15,https://doi.org/10.4018/IJHCITP.2015100101 +Mirna Muñoz,Method to Evaluate Process Performance Focused on Minimizing Resistance to Change.,2013,4,IJHCITP,2,db/journals/ijhcitp/ijhcitp4.html#MunozMCAG13,https://doi.org/10.4018/jhcitp.2013040101 +Sandra K. Newton,Attitudes and Work Environment Factors Influencing the Information Technology Professionals' Work Behaviors.,2013,4,IJHCITP,4,db/journals/ijhcitp/ijhcitp4.html#NewtonN13,https://doi.org/10.4018/ijhcitp.2013100104 +Lubomira Stantcheva,Addressing Sustainability in IT-Governance Frameworks.,2014,5,IJHCITP,4,db/journals/ijhcitp/ijhcitp5.html#Stantcheva014,https://doi.org/10.4018/ijhcitp.2014100105 +Youngkeun Choi,Human Resource Management and Security Policy Compliance.,2017,8,IJHCITP,3,db/journals/ijhcitp/ijhcitp8.html#Choi17,https://doi.org/10.4018/IJHCITP.2017070105 +Francisco Antunes,Reviewing Motivations for Engaging in Decision Support Social Networks.,2014,5,IJHCITP,1,db/journals/ijhcitp/ijhcitp5.html#AntunesC14,https://doi.org/10.4018/ijhcitp.2014010101 +Raquel Mendes,Glass Ceilings in Portugal?: An Analysis of the Gender Wage Gap Using a Quantile Regression Approach.,2010,1,IJHCITP,2,db/journals/ijhcitp/ijhcitp1.html#Mendes10,https://doi.org/10.4018/jhcitp.2010040101 +Vasilica Maria Margalina,Achieving Job Satisfaction for Instructors in E-Learning: The Relational Coordination Role.,2015,6,IJHCITP,4,db/journals/ijhcitp/ijhcitp6.html#MargalinaHB15,https://doi.org/10.4018/IJHCITP.2015100104 +Shubhangini Rathore,A Study of Role Stress among the IT Professionals in India: Examining the Impact of Demographic Factors.,2015,6,IJHCITP,2,db/journals/ijhcitp/ijhcitp6.html#RathoreA15a,https://doi.org/10.4018/IJHCITP.2015040101 +Kumar Viswanathan,Relationship between Variables in Work Life Balance Study for IT Companies.,2013,4,IJHCITP,4,db/journals/ijhcitp/ijhcitp4.html#ViswanathanK13,https://doi.org/10.4018/ijhcitp.2013100103 +Anuradha Mathrani,Work Practices to Curb Attrition in the Indian Hi-Tech Software Development Industry: A Structurational Analysis.,2011,2,IJHCITP,3,db/journals/ijhcitp/ijhcitp2.html#MathraniM11,https://doi.org/10.4018/jhcitp.2011070101 +Shubhangini Rathore,Examining the impact of Emotional Intelligence on Organizational Role Stress: An empirical study of the Indian IT sector.,2015,6,IJHCITP,1,db/journals/ijhcitp/ijhcitp6.html#RathoreA15,https://doi.org/10.4018/ijhcitp.2015010105 +Vladimir Stantchev,Reducing Information Asymmetry in Cloud Marketplaces.,2012,3,IJHCITP,4,db/journals/ijhcitp/ijhcitp3.html#StantchevT12,https://doi.org/10.4018/jhcitp.2012100101 +António Trigo,IT Professionals: An Iberian Snapshot.,2010,1,IJHCITP,1,db/journals/ijhcitp/ijhcitp1.html#TrigoVSBMG10,https://doi.org/10.4018/jhcitp.2010091105 +Sanjay Mathrani,Understanding the Transformation Process Success Factors in Enterprise System Implementations: An IT Professional's Perspective.,2013,4,IJHCITP,1,db/journals/ijhcitp/ijhcitp4.html#MathraniM13,https://doi.org/10.4018/jhcitp.2013010102 +Elena Ruiz Larrocha,Proposals for Postgraduate Students to Reinforce Information Security Management Inside ITIL®.,2011,2,IJHCITP,2,db/journals/ijhcitp/ijhcitp2.html#LarrochaMDCVMC11,https://doi.org/10.4018/jhcitp.2011040102 +Roumiana Peytcheva-Forsyth,How Students' Experience in E-Learning Affects Their Judgements about the Quality of an Online Course.,2015,6,IJHCITP,1,db/journals/ijhcitp/ijhcitp6.html#Peytcheva-Forsyth15,https://doi.org/10.4018/ijhcitp.2015010102 +Sulakshna Dwivedi,Organizational Citizenship Behaviors as a Mediator between Culture and Turnover Intentions: Mediating Effect of OCBs.,2017,8,IJHCITP,2,db/journals/ijhcitp/ijhcitp8.html#Dwivedi17,https://doi.org/10.4018/IJHCITP.2017040102 +Helena Garbarino Alberti,IT Governance and Human Resources Management: A Framework for SMEs.,2013,4,IJHCITP,3,db/journals/ijhcitp/ijhcitp4.html#Alberti13,https://doi.org/10.4018/jhcitp.2013070104 +Reddiyoor Narayanaswamy Anantharaman,Role of Self-Efficacy and Collective Efficacy as Moderators of Occupational Stress Among Software Development Professionals.,2017,8,IJHCITP,2,db/journals/ijhcitp/ijhcitp8.html#AnantharamanRAK17,https://doi.org/10.4018/IJHCITP.2017040103 +Ana María Pinto Llorente,Assessing the Effectiveness of Interactive and Collaborative Resources to Improve Reading and Writing in English.,2016,7,IJHCITP,1,db/journals/ijhcitp/ijhcitp7.html#LlorenteGG16,https://doi.org/10.4018/IJHCITP.2016010105 +Mohammad Faraz Naim,Investigating the Impact of Social Media on Gen Y Employees' Engagement: An Indian Perspective.,2017,8,IJHCITP,3,db/journals/ijhcitp/ijhcitp8.html#NaimL17,https://doi.org/10.4018/IJHCITP.2017070103 +Tomislav Rozman,An Analysis of Web-based Document Management and Communication Tools Usage Among Project Managers.,2017,8,IJHCITP,1,db/journals/ijhcitp/ijhcitp8.html#RozmanSR17,https://doi.org/10.4018/IJHCITP.2017010101 +Pekka Mäkiaho,MMT: A Tool for Observing Metrics in Software Projects.,2017,8,IJHCITP,4,db/journals/ijhcitp/ijhcitp8.html#MakiahoVP17,https://doi.org/10.4018/IJHCITP.2017100103 +Faith-Michael E. Uzoka,Understanding the Turnover Intentions of Information Technology Personnel: A Comparative Analysis of Two Developing Countries.,2015,6,IJHCITP,3,db/journals/ijhcitp/ijhcitp6.html#UzokaSMO15,https://doi.org/10.4018/IJHCITP.2015070103 +Joaquim A. Alves,Adjusting Higher Education Competences to Companies Professional Needs: A Case Study in an Engineering Master's Degree.,2017,8,IJHCITP,1,db/journals/ijhcitp/ijhcitp8.html#AlvesLAG17,https://doi.org/10.4018/IJHCITP.2017010105 +Neuza Ferreira,Social Networks and Young People: A Case Study.,2010,1,IJHCITP,4,db/journals/ijhcitp/ijhcitp1.html#Ferreira10,https://doi.org/10.4018/jhcitp.2010100103 +Martin Sherry,Actions towards Maturing the ICT Profession in Europe.,2013,4,IJHCITP,1,db/journals/ijhcitp/ijhcitp4.html#SherryCMO13,https://doi.org/10.4018/jhcitp.2013010105 +Sanjay Bhattacharya,Factors Determining Psychological Contract of IT Employees in India.,2018,9,IJHCITP,1,db/journals/ijhcitp/ijhcitp9.html#BhattacharyaTK18,https://doi.org/10.4018/IJHCITP.2018010103 +Aiswarya Balachandar,Conflict Segments of Women Employees of IT Sector in India: Its Relevance with the Demographic Profile.,2012,3,IJHCITP,1,db/journals/ijhcitp/ijhcitp3.html#BalachandarG12,https://doi.org/10.4018/jhcitp.2012010104 +Dhanya Pramod,Social Media Impact on the Recruitment and Selection Process in the Information Technology Industry.,2016,7,IJHCITP,2,db/journals/ijhcitp/ijhcitp7.html#PramodB16,https://doi.org/10.4018/IJHCITP.2016040103 +Olaf Radant,Metrics for the Management of IT Personnel: A Systematic Literature Review.,2018,9,IJHCITP,2,db/journals/ijhcitp/ijhcitp9.html#RadantS18,https://doi.org/10.4018/IJHCITP.2018040103 +Lukas Valek,Open Ways for Time Banking Research: Project Management and Beyond.,2016,7,IJHCITP,1,db/journals/ijhcitp/ijhcitp7.html#Valek16,https://doi.org/10.4018/IJHCITP.2016010103 +Anca Draghici,Decision Making Process Approach for Choosing the Adequate ICT Tool in Virtual Teams.,2013,4,IJHCITP,2,db/journals/ijhcitp/ijhcitp4.html#DraghiciAD13,https://doi.org/10.4018/jhcitp.2013040105 +Rajnish Kumar Misra,Analysis of Employability Skill Gap in Information Technology Professionals.,2018,9,IJHCITP,3,db/journals/ijhcitp/ijhcitp9.html#MisraK18,https://doi.org/10.4018/IJHCITP.2018070104 +María Luisa Sein-Echaluce,Interaction of Knowledge Spirals to Create Ontologies for An Institutional Repository of Educational Innovation Best Practices.,2017,8,IJHCITP,2,db/journals/ijhcitp/ijhcitp8.html#Sein-EchaluceAB17,https://doi.org/10.4018/IJHCITP.2017040105 +Francisco J. García-Peñalvo,Knowledge Co-Creation Process Based on Informal Learning Competences Tagging and Recognition.,2013,4,IJHCITP,4,db/journals/ijhcitp/ijhcitp4.html#Garcia-PenalvoGJF13,https://doi.org/10.4018/ijhcitp.2013100102 +Miguel-Angel Acedo Ramírez,Satisfaction with External Internships: Do Students Acquire the Professional Skills Necessary to Improve their Employability?,2017,8,IJHCITP,1,db/journals/ijhcitp/ijhcitp8.html#RamirezCGC17,https://doi.org/10.4018/IJHCITP.2017010103 +Pedro Miguel Fernandes Ruivo,Success Factors for Data Protection in Services and Support Roles: Combining Traditional Interviews with Delphi Method.,2015,6,IJHCITP,3,db/journals/ijhcitp/ijhcitp6.html#RuivoSO15,https://doi.org/10.4018/IJHCITP.2015070104 +Dafinka Miteva,e-Analytics for e-Learning.,2017,8,IJHCITP,4,db/journals/ijhcitp/ijhcitp8.html#MitevaSS17,https://doi.org/10.4018/IJHCITP.2017100101 +Kostadin Koroutchev,The Social Environment as a Determinant for the Impact of the Big Five Personality Factors and the Group's Performance.,2013,4,IJHCITP,1,db/journals/ijhcitp/ijhcitp4.html#KoroutchevAG13,https://doi.org/10.4018/jhcitp.2013010101 +Zamira Acosta,The Organizacional Management as Instrument to Overcome the Resistance to the Innovative Process: An Application in the Canary Company.,2010,1,IJHCITP,2,db/journals/ijhcitp/ijhcitp1.html#AcostaF10,https://doi.org/10.4018/jhcitp.2010040104 +Jozef Tvarozek,Student-Generated Content Improves Online Learning of Programming.,2016,7,IJHCITP,4,db/journals/ijhcitp/ijhcitp7.html#TvarozekJ16,https://doi.org/10.4018/IJHCITP.2016100106 +Adrián Hernández-López,Team Software Process in GSD Teams: A Study of New Work Practices and Models.,2010,1,IJHCITP,3,db/journals/ijhcitp/ijhcitp1.html#Hernandez-LopezPGS10,https://doi.org/10.4018/jhcitp.2010070103 +Witold Suryn,Information Systems Typology According to Quality Attributes.,2012,3,IJHCITP,2,db/journals/ijhcitp/ijhcitp3.html#SurynT12,https://doi.org/10.4018/jhcitp.2012040102 +Neetima Agarwal,Twirl of Dexterity: A Gamut to Prevail in the Current Times in the Information Technology Industry.,2014,5,IJHCITP,3,db/journals/ijhcitp/ijhcitp5.html#AgarwalPA14,https://doi.org/10.4018/ijhcitp.2014070105 +Francis Brouns,E-Portfolios in Support of Informal Learning.,2014,5,IJHCITP,3,db/journals/ijhcitp/ijhcitp5.html#BrounsVJF14,https://doi.org/10.4018/ijhcitp.2014070102 +Cristina Casado-Lumbreras,A Vision on the Evolution of Perceptions of Professional Practice: The Case of IT.,2015,6,IJHCITP,2,db/journals/ijhcitp/ijhcitp6.html#Casado-Lumbreras15,https://doi.org/10.4018/IJHCITP.2015040105 +Francesca Sgobbi,The Borders of Inter-Firm Mobility for ICT Employees in Italy.,2013,4,IJHCITP,1,db/journals/ijhcitp/ijhcitp4.html#Sgobbi13,https://doi.org/10.4018/jhcitp.2013010104 +Anne Kramer,Training Soft Skills to Project Managers An Experience Report.,2012,3,IJHCITP,2,db/journals/ijhcitp/ijhcitp3.html#Kramer12,https://doi.org/10.4018/jhcitp.2012040106 +Sreejith S. S.,Identifying Criteria for Continuous Evaluation of Software Engineers for Reward and Recognition: An Exploratory Research.,2016,7,IJHCITP,4,db/journals/ijhcitp/ijhcitp7.html#SM16,https://doi.org/10.4018/IJHCITP.2016100105 +Abel Usoro,Trust as an Aspect of Organisational Culture: Its Effects on Knowledge Sharing in Virtual Communities.,2011,2,IJHCITP,1,db/journals/ijhcitp/ijhcitp2.html#UsoroK11,https://doi.org/10.4018/jhcitp.2011010101 +Antoine Trad,The Business Transformation Framework for Managers in Business Innovation Transformation Projects: Business Architecture Managerial Recommendation.,2015,6,IJHCITP,4,db/journals/ijhcitp/ijhcitp6.html#TradK15,https://doi.org/10.4018/IJHCITP.2015100102 +Jitendra Singh Tomar,Employee Engagement Practices in IT Sector Vis-à-Vis Other Sectors in India.,2017,8,IJHCITP,3,db/journals/ijhcitp/ijhcitp8.html#Tomar17,https://doi.org/10.4018/IJHCITP.2017070101 +Steven Westlund,Leading Techies: Assessing Project Leadership Styles Most Significantly Related to Software Developer Job Satisfaction.,2011,2,IJHCITP,2,db/journals/ijhcitp/ijhcitp2.html#Westlund11,https://doi.org/10.4018/jhcitp.2011040101 +Jing Quan,The Determinants of Information Technology Wages.,2011,2,IJHCITP,1,db/journals/ijhcitp/ijhcitp2.html#QuanDGD11,https://doi.org/10.4018/jhcitp.2011010104 +Alfonso Urquiza Echavarren,A Dynamic Approach to Introduce Competency Frameworks: Application to the IT and Systems Management Domain.,2011,2,IJHCITP,1,db/journals/ijhcitp/ijhcitp2.html#Echavarren11,https://doi.org/10.4018/jhcitp.2011010102 +Albert D. Ritzhaupt,A Study on Services Motivating Computing Professional Association Membership.,2012,3,IJHCITP,1,db/journals/ijhcitp/ijhcitp3.html#RitzhauptUJ12,https://doi.org/10.4018/IJHCITP.2012010105 +Léon J. M. Rothkrantz,Affective Didactic Models in Higher Education.,2017,8,IJHCITP,4,db/journals/ijhcitp/ijhcitp8.html#Rothkrantz17,https://doi.org/10.4018/IJHCITP.2017100105 +Margarita André Ampuero,Identification of Patterns for the Formation of Software Development Projects Teams.,2010,1,IJHCITP,3,db/journals/ijhcitp/ijhcitp1.html#AmpueroPC10,https://doi.org/10.4018/jhcitp.2010070105 +Laura Ponisio,Using Network Analysis to Improve Decision Making for Partner Selection in Inter-Organizational Networks.,2013,4,IJHCITP,3,db/journals/ijhcitp/ijhcitp4.html#PonisioER13,https://doi.org/10.4018/jhcitp.2013070103 +Juri Valtanen,Features for Suitable Problems: IT Professionals' and IT Students' Opinions.,2012,3,IJHCITP,3,db/journals/ijhcitp/ijhcitp3.html#ValtanenBGHRSS12,https://doi.org/10.4018/jhcitp.2012070103 +Kirsi Liikamaa,Replacing Project Managers in Information Technology Projects: Contradictions that Explain the Phenomenon.,2015,6,IJHCITP,3,db/journals/ijhcitp/ijhcitp6.html#LiikamaaVPA15,https://doi.org/10.4018/IJHCITP.2015070101 +Mohamed A. Sheriff,Relating Software Quality Models and Process Methods to User Value.,2013,4,IJHCITP,2,db/journals/ijhcitp/ijhcitp4.html#SheriffG13,https://doi.org/10.4018/jhcitp.2013040103 +Mounira Ilahi,Semantic Models for Competence-Based Assessment.,2014,5,IJHCITP,3,db/journals/ijhcitp/ijhcitp5.html#IlahiCB14,https://doi.org/10.4018/ijhcitp.2014070103 +Ricardo Colomo Palacios,Identifying Technical Competences of IT Professionals: The Case of Software Engineers.,2010,1,IJHCITP,1,db/journals/ijhcitp/ijhcitp1.html#PalaciosCGB10,https://doi.org/10.4018/jhcitp.2010091103 +Craig C. Claybaugh,Diffusion of a Professional Social Network: Business School Graduates in Focus.,2015,6,IJHCITP,4,db/journals/ijhcitp/ijhcitp6.html#ClaybaughHY15,https://doi.org/10.4018/IJHCITP.2015100105 +Neetima Agarwal,Expanding the Kirkpatrick Evaluation Model-Towards more Efficient Training in the IT Sector.,2014,5,IJHCITP,4,db/journals/ijhcitp/ijhcitp5.html#AgarwalPA14a,https://doi.org/10.4018/ijhcitp.2014100102 +David O'Sullivan,Collaborative Innovation for the Management of Information Technology Resources.,2010,1,IJHCITP,1,db/journals/ijhcitp/ijhcitp1.html#OSullivanD10,https://doi.org/10.4018/jhcitp.2010091102 +Margaret Ross,Engaging the Students in Activity Based Learning for Future Employability.,2011,2,IJHCITP,4,db/journals/ijhcitp/ijhcitp2.html#RossSU11,https://doi.org/10.4018/jhcitp.2011100104 +Stephen C. Wingreen,Managing IT Employee Attitudes that Lead to Turnover: Integrating a Person-Job Fit Perspective.,2017,8,IJHCITP,1,db/journals/ijhcitp/ijhcitp8.html#WingreenLN17,https://doi.org/10.4018/IJHCITP.2017010102 +A. D. Amar,Learning in Organizations: Some Observations from the Practice.,2016,7,IJHCITP,4,db/journals/ijhcitp/ijhcitp7.html#AmarW16,https://doi.org/10.4018/IJHCITP.2016100104 +Víctor Manuel álvarez García,RSS-Based Learning Using Audio.,2010,1,IJHCITP,4,db/journals/ijhcitp/ijhcitp1.html#GarciaRDP10,https://doi.org/10.4018/jhcitp.2010100105 +Lisardo Prieto-González,ModEAS: Towards A Modular Enterprise App Store.,2014,5,IJHCITP,2,db/journals/ijhcitp/ijhcitp5.html#Prieto-GonzalezPPT14,https://doi.org/10.4018/ijhcitp.2014040105 +Macarena López-Fernández,Human Resource Management on Social Capital.,2010,1,IJHCITP,2,db/journals/ijhcitp/ijhcitp1.html#Lopez-FernandezMR10,https://doi.org/10.4018/jhcitp.2010040103 +Shruti Traymbak,Moderating Role of Gender between Job Characteristics and Job Satisfaction: An Empirical Study of Software Industry Using Structural Equation Modeling.,2017,8,IJHCITP,2,db/journals/ijhcitp/ijhcitp8.html#TraymbakKJ17,https://doi.org/10.4018/IJHCITP.2017040104 +Elli Georgiadou,The QUAIL Framework: Quality Assurance for Information Literacy Projects.,2017,8,IJHCITP,2,db/journals/ijhcitp/ijhcitp8.html#GeorgiadouMSKRK17,https://doi.org/10.4018/IJHCITP.2017040106 +Joana Peixoto,A Project Risk Management Methodology Developed for an Electrical Portuguese Organization.,2016,7,IJHCITP,1,db/journals/ijhcitp/ijhcitp7.html#PeixotoTFA16,https://doi.org/10.4018/IJHCITP.2016010101 +Kakoli Bandyopadhyay,An Analysis of Factors Affecting User Acceptance of ERP Systems in the United States.,2012,3,IJHCITP,1,db/journals/ijhcitp/ijhcitp3.html#BandyopadhyayB12,https://doi.org/10.4018/jhcitp.2012010101 +Fabiano Rodrigues Ferreira,A Proposal for Mapping IT Professionals' Competence Supported by Multiple Intelligences Theory.,2018,9,IJHCITP,1,db/journals/ijhcitp/ijhcitp9.html#FerreiraA18,https://doi.org/10.4018/IJHCITP.2018010101 +Leisa J. Armstrong,An eAgriculture-Based Decision Support Framework for Information Dissemination.,2010,1,IJHCITP,4,db/journals/ijhcitp/ijhcitp1.html#ArmstrongDT10,https://doi.org/10.4018/jhcitp.2010100101 +Nikolaos Preve,Investment in Human Capital as a Means to Preserve IT Strategic Advantage in an Organization: A Case Study of Greece.,2012,3,IJHCITP,2,db/journals/ijhcitp/ijhcitp3.html#Preve12,https://doi.org/10.4018/jhcitp.2012040103 +António Silva,Performance Appraisal Approaches and Methods for IT/IS Projects: A Review.,2017,8,IJHCITP,3,db/journals/ijhcitp/ijhcitp8.html#SilvaVPP17,https://doi.org/10.4018/IJHCITP.2017070102 +Shakeb Ahmad Khan,Precision Active Bridge Circuit for Measuring Incremental Resistance with ANN Compensation of Excitation Voltage Variation.,2011,1,J. Sensor Technology,3,db/journals/jst/jst1.html#KhanI11,https://doi.org/10.4236/jst.2011.13008 +Vikas Patil,Nanocrystalline CuO Thin Films for H2S Monitoring: Microstructural and Optoelectronic Characterization.,2011,1,J. Sensor Technology,2,db/journals/jst/jst1.html#PatilJPCGPRS11,https://doi.org/10.4236/jst.2011.12006 +Madhuchhanda Choudhury,ZnO: PVP Quantum Dot Ethanol Sensor.,2011,1,J. Sensor Technology,3,db/journals/jst/jst1.html#ChoudhuryNN11,https://doi.org/10.4236/jst.2011.13012 +Lijie Yang,The Effect of Magnetic Field-Tuned Resonance on the Capacitance of Laminate Composites.,2011,1,J. Sensor Technology,3,db/journals/jst/jst1.html#YangTWLZ11,https://doi.org/10.4236/jst.2011.13011 +Ademola P. Abidoye,Using Wearable Sensors for Remote Healthcare Monitoring System.,2011,1,J. Sensor Technology,2,db/journals/jst/jst1.html#AbidoyeAAAN11,https://doi.org/10.4236/jst.2011.12004 +Yu Huang,An Optical Fiber Sensor Probe Using a PMMA/CPR Coated Bent Optical Fiber as a Transducer for Monitoring Trace Ammonia.,2011,1,J. Sensor Technology,2,db/journals/jst/jst1.html#HuangT11,https://doi.org/10.4236/jst.2011.12005 +María E. Escuderos,Application of a Quartz Crystal Microbalance (QCM) System Coated with Chromatographic Adsorbents for the Detection of Olive Oil Volatile Compounds.,2011,1,J. Sensor Technology,1,db/journals/jst/jst1.html#EscuderosSJ11,https://doi.org/10.4236/jst.2011.11001 +Hemant K. Chitte,Synthesis of Polypyrrole Using Ferric Chloride (FeCl3) as Oxidant Together with Some Dopants for Use in Gas Sensors.,2011,1,J. Sensor Technology,2,db/journals/jst/jst1.html#ChitteSBW11,https://doi.org/10.4236/jst.2011.12007 +Vitaliy Kunin,Direction of Arrival Estimation and Localization Using Acoustic Sensor Arrays.,2011,1,J. Sensor Technology,3,db/journals/jst/jst1.html#KuninTSO11,https://doi.org/10.4236/jst.2011.13010 +Riichi Murayama,Non-Contact Stress Measurement during Tensile Testing Using an Emat for SH0-Plate Wave and Lamb Wave.,2011,1,J. Sensor Technology,3,db/journals/jst/jst1.html#Murayama11,https://doi.org/10.4236/jst.2011.13009 +Shailesh Pawar,Fabrication of Nanocrystalline TiO2 Thin Film Ammonia Vapor Sensor.,2011,1,J. Sensor Technology,1,db/journals/jst/jst1.html#PawarCPRDPSJP11,https://doi.org/10.4236/jst.2011.11002 +Jan Fransaer,Mathematical Modeling of the Amperometric Response to Glucose of Glucose Oxidase Films Deposited by AC-Electrophoresis.,2011,1,J. Sensor Technology,2,db/journals/jst/jst1.html#FransaerA11,https://doi.org/10.4236/jst.2011.12003 +Anind K. Dey,editoral: Situated Interaction and Context-Aware Computing.,2001,5,Personal and Ubiquitous Computing,1,db/journals/puc/puc5.html#DeyKMS01,https://doi.org/10.1007/PL00000013 +Nadia Gámez,FamiWare: a family of event-based middleware for ambient intelligence.,2011,15,Personal and Ubiquitous Computing,4,db/journals/puc/puc15.html#GamezF11,https://doi.org/10.1007/s00779-010-0354-0 +Leopoldina Fortunati,The Mobile Phone: An Identity on the Move.,2001,5,Personal and Ubiquitous Computing,2,db/journals/puc/puc5.html#Fortunati01,https://doi.org/10.1007/PL00000017 +Harold W. Thimbleby,Design for a Fax.,1997,1,Personal and Ubiquitous Computing,2,db/journals/puc/puc1.html#Thimbleby97,https://doi.org/10.1007/BF02199215 +Erik Grönvall,HCI at the boundary of work and life.,2016,20,Personal and Ubiquitous Computing,4,db/journals/puc/puc20.html#GronvallCARB16,https://doi.org/10.1007/s00779-016-0937-5 +Ofer Bergman,The use of attention resources in navigation versus search.,2013,17,Personal and Ubiquitous Computing,3,db/journals/puc/puc17.html#BergmanTS13,https://doi.org/10.1007/s00779-012-0544-z +Jeffrey McCandless,Introduction.,2011,15,Personal and Ubiquitous Computing,5,db/journals/puc/puc15.html#McCandless11,https://doi.org/10.1007/s00779-010-0323-7 +Thai-Lai Pham,Composite Device Computing Environment: A Framework for Situated Interaction Using Small Screen Devices.,2001,5,Personal and Ubiquitous Computing,1,db/journals/puc/puc5.html#PhamSGP01,https://doi.org/10.1007/s007790170024 +Vivek Menon,Enhancing biometric recognition with spatio-temporal reasoning in smart environments.,2013,17,Personal and Ubiquitous Computing,5,db/journals/puc/puc17.html#MenonJG13,https://doi.org/10.1007/s00779-012-0546-x +George Drosatos,An efficient privacy-preserving solution for finding the nearest doctor.,2014,18,Personal and Ubiquitous Computing,1,db/journals/puc/puc18.html#DrosatosE14,https://doi.org/10.1007/s00779-012-0619-x +Giulio Jacucci,Active construction of experience through mobile media: a field study with implications for recording and sharing.,2007,11,Personal and Ubiquitous Computing,4,db/journals/puc/puc11.html#JacucciOS07,https://doi.org/10.1007/s00779-006-0084-5 +Sukin Kang,Go anywhere: user-verifiable authentication over distance-free channel for mobile devices.,2013,17,Personal and Ubiquitous Computing,5,db/journals/puc/puc17.html#KangKH13,https://doi.org/10.1007/s00779-012-0531-4 +Miriam Gil,Personalization for unobtrusive service interaction.,2012,16,Personal and Ubiquitous Computing,5,db/journals/puc/puc16.html#GilGP12,https://doi.org/10.1007/s00779-011-0414-0 +Sara Ljungblad,Ubicomp challenges in collaborative scheduling: Pin and Play at the Göteborg film festival.,2007,11,Personal and Ubiquitous Computing,7,db/journals/puc/puc11.html#LjungbladHH07,https://doi.org/10.1007/s00779-006-0115-2 +Keith Cheverst,Using Context as a Crystal Ball: Rewards and Pitfalls.,2001,5,Personal and Ubiquitous Computing,1,db/journals/puc/puc5.html#CheverstDME01,https://doi.org/10.1007/s007790170020 +Zhangbing Zhou,Data intelligence on the Internet of Things.,2016,20,Personal and Ubiquitous Computing,3,db/journals/puc/puc20.html#ZhouTZG16,https://doi.org/10.1007/s00779-016-0912-1 +Xianghua Ding,Informing and performing: investigating how mediated sociality becomes visible.,2012,16,Personal and Ubiquitous Computing,8,db/journals/puc/puc16.html#DingEKP12,https://doi.org/10.1007/s00779-011-0443-8 +Zhiying Zhou,3D story cube: an interactive tangible user interface for storytelling with 3D graphics and audio.,2004,8,Personal and Ubiquitous Computing,5,db/journals/puc/puc8.html#ZhouCP04,https://doi.org/10.1007/s00779-004-0300-0 +Nan Li,Design and implementation of a sensor-based wireless camera system for continuous monitoring in assistive environments.,2010,14,Personal and Ubiquitous Computing,6,db/journals/puc/puc14.html#LiYCGW10,https://doi.org/10.1007/s00779-009-0271-2 +Chia-Yen Chen,Multimedia augmented reality information system for museum guidance.,2014,18,Personal and Ubiquitous Computing,2,db/journals/puc/puc18.html#ChenCH14,https://doi.org/10.1007/s00779-013-0647-1 +Juha Kela,Accelerometer-based gesture control for a design environment.,2006,10,Personal and Ubiquitous Computing,5,db/journals/puc/puc10.html#KelaKMKSJM06,https://doi.org/10.1007/s00779-005-0033-8 +Elizabeth Rey,Personalized stress monitoring: a smartphone-enabled system for quantification of salivary cortisol.,2018,22,Personal and Ubiquitous Computing,4,db/journals/puc/puc22.html#ReyJACE18,https://doi.org/10.1007/s00779-018-1164-z +G. Dalton,The Design of SmartSpace: a Personal Working Environment.,1998,2,Personal and Ubiquitous Computing,1,db/journals/puc/puc2.html#DaltonMBGS98,https://doi.org/10.1007/BF01581845 +S. Han,Investigation of the parallel efficiency of a PC cluster for the simulation of a CFD problem.,2014,18,Personal and Ubiquitous Computing,6,db/journals/puc/puc18.html#HanC14,https://doi.org/10.1007/s00779-013-0733-4 +Dmitry G. Korzun,Semantic infrastructure of a smart museum: toward making cultural heritage knowledge usable and creatable by visitors and professionals.,2017,21,Personal and Ubiquitous Computing,2,db/journals/puc/puc21.html#KorzunVYV17,https://doi.org/10.1007/s00779-016-0996-7 +Pham Thi Thu Thuy,Semantic and structural similarities between XML Schemas for integration of ubiquitous healthcare data.,2013,17,Personal and Ubiquitous Computing,7,db/journals/puc/puc17.html#ThuyLL13,https://doi.org/10.1007/s00779-012-0567-5 +Abdelfettah Belghith,Challenges and trends in wireless ubiquitous computing systems.,2011,15,Personal and Ubiquitous Computing,8,db/journals/puc/puc15.html#BelghithKS11,https://doi.org/10.1007/s00779-011-0368-2 +Rongfang Bie,Adaptive fuzzy clustering by fast search and find of density peaks.,2016,20,Personal and Ubiquitous Computing,5,db/journals/puc/puc20.html#BieMRSD16,https://doi.org/10.1007/s00779-016-0954-4 +Yinghui Zhang,Towards privacy protection and malicious behavior traceability in smart health.,2017,21,Personal and Ubiquitous Computing,5,db/journals/puc/puc21.html#ZhangLZCL17,https://doi.org/10.1007/s00779-017-1047-8 +Peiguang Lin,k-Multi-preference query over road networks.,2016,20,Personal and Ubiquitous Computing,3,db/journals/puc/puc20.html#LinYN16,https://doi.org/10.1007/s00779-016-0913-0 +Anthony Saliba,User-perceived quality of service in wireless data networks.,2005,9,Personal and Ubiquitous Computing,6,db/journals/puc/puc9.html#SalibaBIF05,https://doi.org/10.1007/s00779-005-0034-7 +Rikard Lindell,Crafting interaction: The epistemology of modern programming.,2014,18,Personal and Ubiquitous Computing,3,db/journals/puc/puc18.html#Lindell14,https://doi.org/10.1007/s00779-013-0687-6 +Henrique Houayek,AWE: an animated work environment for working with physical and digital tools and artifacts.,2014,18,Personal and Ubiquitous Computing,5,db/journals/puc/puc18.html#HouayekGGWW14,https://doi.org/10.1007/s00779-013-0731-6 +Tuo Shi,Retrieving the maximal time-bounded positive influence set from social networks.,2016,20,Personal and Ubiquitous Computing,5,db/journals/puc/puc20.html#ShiCCLL16,https://doi.org/10.1007/s00779-016-0943-7 +Ann Light,The politics of representing cultures in ubiquitous media: challenging national cultural norms by studying a map with Indian and British users.,2011,15,Personal and Ubiquitous Computing,6,db/journals/puc/puc15.html#Light11,https://doi.org/10.1007/s00779-010-0339-z +Oskar Juhlin,Video interaction: a research agenda.,2014,18,Personal and Ubiquitous Computing,3,db/journals/puc/puc18.html#JuhlinZER14,https://doi.org/10.1007/s00779-013-0705-8 +Antonio L. Alfeo,Sleep behavior assessment via smartwatch and stigmergic receptive fields.,2018,22,Personal and Ubiquitous Computing,2,db/journals/puc/puc22.html#AlfeoBCRPV18,https://doi.org/10.1007/s00779-017-1038-9 +Jill Palzkill Woelfer,Designing ubiquitous information systems for a community of homeless young people: precaution and a way forward.,2011,15,Personal and Ubiquitous Computing,6,db/journals/puc/puc15.html#WoelferH11,https://doi.org/10.1007/s00779-010-0341-5 +Tracy L. Westeyn,Monitoring children's developmental progress using augmented toys and activity recognition.,2012,16,Personal and Ubiquitous Computing,2,db/journals/puc/puc16.html#WesteynASJPW12,https://doi.org/10.1007/s00779-011-0386-0 +Dalian Liu,Self-Universum support vector machine.,2014,18,Personal and Ubiquitous Computing,8,db/journals/puc/puc18.html#LiuTBS14,https://doi.org/10.1007/s00779-014-0797-9 +Min Yin,Phone n' Computer: teaming up an information appliance with a PC.,2010,14,Personal and Ubiquitous Computing,7,db/journals/puc/puc14.html#YinPZ10,https://doi.org/10.1007/s00779-009-0251-6 +Nicholas Andrew Bradley,An Experimental Investigation into Wayfinding Directions for Visually Impaired People.,2005,9,Personal and Ubiquitous Computing,6,db/journals/puc/puc9.html#BradleyD05,https://doi.org/10.1007/s00779-005-0350-y +Gangyong Jia,Dynamic cloud resource management for efficient media applications in mobile computing environments.,2018,22,Personal and Ubiquitous Computing,3,db/journals/puc/puc22.html#JiaHJCL18,https://doi.org/10.1007/s00779-018-1118-5 +Anna Louise Cox,Tlk or txt? Using voice input for SMS composition.,2008,12,Personal and Ubiquitous Computing,8,db/journals/puc/puc12.html#CoxCWL08,https://doi.org/10.1007/s00779-007-0178-8 +Stephan Bosch,A study on automatic recognition of object use exploiting motion correlation of wireless sensors.,2012,16,Personal and Ubiquitous Computing,7,db/journals/puc/puc16.html#BoschMHHMV12,https://doi.org/10.1007/s00779-011-0451-8 +Robert Steele,MobiPass: a passport for mobile business.,2007,11,Personal and Ubiquitous Computing,3,db/journals/puc/puc11.html#SteeleT07,https://doi.org/10.1007/s00779-006-0100-9 +Divyan Munirathnam Konidala,Resuscitating privacy-preserving mobile payment with customer in complete control.,2012,16,Personal and Ubiquitous Computing,6,db/journals/puc/puc16.html#KonidalaDKLLKK12,https://doi.org/10.1007/s00779-011-0436-7 +Antti Aaltonen,Refining visualization reference model for context information.,2005,9,Personal and Ubiquitous Computing,6,db/journals/puc/puc9.html#AaltonenL05,https://doi.org/10.1007/s00779-005-0349-4 +Ryong Lee,Urban area characterization based on crowd behavioral lifelogs over Twitter.,2013,17,Personal and Ubiquitous Computing,4,db/journals/puc/puc17.html#LeeWS13,https://doi.org/10.1007/s00779-012-0510-9 +Mark Blythe,Technology scruples: why intimidation will not save the recording industry and how enchantment might.,2008,12,Personal and Ubiquitous Computing,5,db/journals/puc/puc12.html#BlytheW08,https://doi.org/10.1007/s00779-007-0158-z +Jakob E. Bardram,The trouble with login: on usability and computer security in ubiquitous computing.,2005,9,Personal and Ubiquitous Computing,6,db/journals/puc/puc9.html#Bardram05a,https://doi.org/10.1007/s00779-005-0347-6 +Cristina Sylla,TUIs vs. GUIs: comparing the learning potential with preschoolers.,2012,16,Personal and Ubiquitous Computing,4,db/journals/puc/puc16.html#SyllaBCC12,https://doi.org/10.1007/s00779-011-0407-z +Christiane Moser,Child-centered game development (CCGD): developing games with children at school.,2013,17,Personal and Ubiquitous Computing,8,db/journals/puc/puc17.html#Moser13,https://doi.org/10.1007/s00779-012-0528-z +Yan Liu,A dynamic assignment scheduling algorithm for big data stream processing in mobile Internet services.,2016,20,Personal and Ubiquitous Computing,3,db/journals/puc/puc20.html#LiuWYQS16,https://doi.org/10.1007/s00779-016-0914-z +Stephen A. Brewster,Presenting Dynamic Information on Mobile Computers.,2000,4,Personal and Ubiquitous Computing,4,db/journals/puc/puc4.html#BrewsterM00,https://doi.org/10.1007/BF02391559 +Dexi Liu,Top-k entities query processing on uncertainly fused multi-sensory data.,2013,17,Personal and Ubiquitous Computing,5,db/journals/puc/puc17.html#LiuWXPR13,https://doi.org/10.1007/s00779-012-0542-1 +Juan Gómez-Romero,Context-based scene recognition from visual data in smart homes: an Information Fusion approach.,2012,16,Personal and Ubiquitous Computing,7,db/journals/puc/puc16.html#Gomez-RomeroSPGM12,https://doi.org/10.1007/s00779-011-0450-9 +Min-Sung Hong,Social recommendation service for cultural heritage.,2017,21,Personal and Ubiquitous Computing,2,db/journals/puc/puc21.html#HongJPC17,https://doi.org/10.1007/s00779-016-0985-x +Wooseok Ryu,Generation of RFID test datasets using RSN tool.,2013,17,Personal and Ubiquitous Computing,7,db/journals/puc/puc17.html#RyuKH13,https://doi.org/10.1007/s00779-012-0576-4 +Patricia Flatley Brennan,Observing health in everyday living: ODLs and the care-between-the-care.,2015,19,Personal and Ubiquitous Computing,1,db/journals/puc/puc19.html#BrennanC15,https://doi.org/10.1007/s00779-014-0805-0 +Leopoldina Fortunati,The social representation of telecommunications.,2008,12,Personal and Ubiquitous Computing,6,db/journals/puc/puc12.html#FortunatiM08a,https://doi.org/10.1007/s00779-008-0199-y +Martijn Jansen,Pearl: living media enabled by interactive photo projection.,2014,18,Personal and Ubiquitous Computing,5,db/journals/puc/puc18.html#JansenHF14,https://doi.org/10.1007/s00779-013-0691-x +Yaser Jararweh,Delay-aware power optimization model for mobile edge computing systems.,2017,21,Personal and Ubiquitous Computing,6,db/journals/puc/puc21.html#JararwehAATB17,https://doi.org/10.1007/s00779-017-1032-2 +Daniel Ashbrook,Using GPS to learn significant locations and predict movement across multiple users.,2003,7,Personal and Ubiquitous Computing,5,db/journals/puc/puc7.html#AshbrookS03,https://doi.org/10.1007/s00779-003-0240-0 +Steve Whittaker,Easy on that trigger dad: a study of long term family photo retrieval.,2010,14,Personal and Ubiquitous Computing,1,db/journals/puc/puc14.html#WhittakerBC10,https://doi.org/10.1007/s00779-009-0218-7 +Luca Chittaro,HCI aspects of mobile devices and services.,2004,8,Personal and Ubiquitous Computing,2,db/journals/puc/puc8.html#Chittaro04,https://doi.org/10.1007/s00779-004-0268-9 +Andrea Maurino,Partitioning rules for orchestrating mobile information systems.,2005,9,Personal and Ubiquitous Computing,5,db/journals/puc/puc9.html#MaurinoM05,https://doi.org/10.1007/s00779-004-0333-4 +Thomas Olsson 0002,Expected user experience of mobile augmented reality services: a user study in the context of shopping centres.,2013,17,Personal and Ubiquitous Computing,2,db/journals/puc/puc17.html#OlssonLKV13,https://doi.org/10.1007/s00779-011-0494-x +Young-Hyuk Kim,A study on algorithm to identify the abnormal status of a patient using acceleration algorithm.,2014,18,Personal and Ubiquitous Computing,6,db/journals/puc/puc18.html#KimLL14,https://doi.org/10.1007/s00779-013-0736-1 +Hong Chen,Ubiquitous Personal Study: a framework for supporting information access and sharing.,2009,13,Personal and Ubiquitous Computing,7,db/journals/puc/puc13.html#ChenJ09,https://doi.org/10.1007/s00779-009-0221-z +Fabio Morreale,Collaborative creativity: The Music Room.,2014,18,Personal and Ubiquitous Computing,5,db/journals/puc/puc18.html#MorrealeAMRC14,https://doi.org/10.1007/s00779-013-0728-1 +Adrian David Cheok,Ubiquitous interaction with positioning and navigation using a novel light sensor-based information transmission system.,2008,12,Personal and Ubiquitous Computing,6,db/journals/puc/puc12.html#CheokL08,https://doi.org/10.1007/s00779-007-0140-9 +Christophe Scholliers,Ambient contracts: verifying and enforcing ambient object compositions à la carte.,2011,15,Personal and Ubiquitous Computing,4,db/journals/puc/puc15.html#ScholliersHTMD11,https://doi.org/10.1007/s00779-010-0355-z +Zheng Yan 0002,Exploring the impact of trust information visualization on mobile application usage.,2013,17,Personal and Ubiquitous Computing,6,db/journals/puc/puc17.html#YanLNY13,https://doi.org/10.1007/s00779-013-0636-4 +Tomás Sánchez López,Adding sense to the Internet of Things - An architecture framework for Smart Object systems.,2012,16,Personal and Ubiquitous Computing,3,db/journals/puc/puc16.html#LopezRHM12,https://doi.org/10.1007/s00779-011-0399-8 +Adrian Williamson,Emotion in Interactive Systems: Applying Transactional Analysis.,1999,3,Personal and Ubiquitous Computing,3,db/journals/puc/puc3.html#WilliamsonW99,https://doi.org/10.1007/BF01305337 +Joseph K. Liu,Special issue on security and privacy for smart cities.,2017,21,Personal and Ubiquitous Computing,5,db/journals/puc/puc21.html#LiuCHA17,https://doi.org/10.1007/s00779-017-1043-z +Ulrich Atz,Evaluating experience sampling of stress in a single-subject research design.,2013,17,Personal and Ubiquitous Computing,4,db/journals/puc/puc17.html#Atz13,https://doi.org/10.1007/s00779-012-0512-7 +Zachary Pousman,Design iterations for a location-aware event planner.,2004,8,Personal and Ubiquitous Computing,2,db/journals/puc/puc8.html#PousmanIFMS04,https://doi.org/10.1007/s00779-004-0266-y +Aris M. Ouksel,A context-aware cross-layer broadcast model for ad hoc networks.,2014,18,Personal and Ubiquitous Computing,4,db/journals/puc/puc18.html#OukselL14,https://doi.org/10.1007/s00779-013-0699-2 +Bram J. J. van der Vlist,Configuring and controlling ubiquitous computing infrastructure with semantic connections: a tangible and an AR approach.,2013,17,Personal and Ubiquitous Computing,4,db/journals/puc/puc17.html#VlistNRHF13,https://doi.org/10.1007/s00779-012-0627-x +Yong-Joon Lee,Study of detection method for spoofed IP against DDoS attacks.,2018,22,Personal and Ubiquitous Computing,1,db/journals/puc/puc22.html#LeeBKY18,https://doi.org/10.1007/s00779-017-1097-y +Bin Guo,PicPick: a generic data selection framework for mobile crowd photography.,2016,20,Personal and Ubiquitous Computing,3,db/journals/puc/puc20.html#GuoCYXZ16,https://doi.org/10.1007/s00779-016-0924-x +Diego López de Ipiña,TRIP: A Low-Cost Vision-Based Location System for Ubiquitous Computing.,2002,6,Personal and Ubiquitous Computing,3,db/journals/puc/puc6.html#IpinaMH02,https://doi.org/10.1007/s007790200020 +Soo-Cheol Kim,RFID-based indoor location tracking to ensure the safety of the elderly in smart home environments.,2013,17,Personal and Ubiquitous Computing,8,db/journals/puc/puc17.html#KimJP13,https://doi.org/10.1007/s00779-012-0604-4 +Zheng Yan 0002,TruBeRepec: a trust-behavior-based reputation and recommender system for mobile applications.,2012,16,Personal and Ubiquitous Computing,5,db/journals/puc/puc16.html#YanZD12,https://doi.org/10.1007/s00779-011-0420-2 +Steinar Kristoffersen,Design ideas for IT in public spaces.,2010,14,Personal and Ubiquitous Computing,3,db/journals/puc/puc14.html#KristoffersenB10,https://doi.org/10.1007/s00779-009-0255-2 +Martin Hynes,Accurate monitoring of human physical activity levels for medical diagnosis and monitoring using off-the-shelf cellular handsets.,2011,15,Personal and Ubiquitous Computing,7,db/journals/puc/puc15.html#HynesWMK11,https://doi.org/10.1007/s00779-010-0345-1 +Jürgen Bohn,Prototypical implementation of location-aware services based on a middleware architecture for super-distributed RFID tag infrastructures.,2008,12,Personal and Ubiquitous Computing,2,db/journals/puc/puc12.html#Bohn08,https://doi.org/10.1007/s00779-006-0107-2 +Mikhail Sysoev,Noninvasive stress recognition considering the current activity.,2015,19,Personal and Ubiquitous Computing,7,db/journals/puc/puc19.html#SysoevKP15,https://doi.org/10.1007/s00779-015-0885-5 +José Bravo,RFID breadcrumbs for enhanced care data management and dissemination.,2013,17,Personal and Ubiquitous Computing,6,db/journals/puc/puc17.html#BravoLH13,https://doi.org/10.1007/s00779-012-0557-7 +Montserrat Ros,Wireless outdoor personal area network using adaptive inquiry scanning for location-based services.,2013,17,Personal and Ubiquitous Computing,2,db/journals/puc/puc17.html#RosDPM13,https://doi.org/10.1007/s00779-011-0501-2 +Thomas F. J.-M. Pasquier,Data provenance to audit compliance with privacy policy in the Internet of Things.,2018,22,Personal and Ubiquitous Computing,2,db/journals/puc/puc22.html#PasquierSPESB18,https://doi.org/10.1007/s00779-017-1067-4 +Angelo Gaeta,A grid based software architecture for delivery of adaptive and personalised learning experiences.,2009,13,Personal and Ubiquitous Computing,3,db/journals/puc/puc13.html#GaetaGR09,https://doi.org/10.1007/s00779-007-0183-y +Hubert Piontek,Improving the accuracy of ultrasound-based localisation systems.,2007,11,Personal and Ubiquitous Computing,6,db/journals/puc/puc11.html#PiontekSK07,https://doi.org/10.1007/s00779-006-0096-1 +Nikos Kalatzis,Cross-community context management in Cooperating Smart Spaces.,2014,18,Personal and Ubiquitous Computing,2,db/journals/puc/puc18.html#KalatzisLRKPXZA14,https://doi.org/10.1007/s00779-013-0654-2 +Tomohiro Amemiya,Location-free haptic interaction for large-area social applications.,2009,13,Personal and Ubiquitous Computing,5,db/journals/puc/puc13.html#AmemiyaMA09,https://doi.org/10.1007/s00779-008-0198-z +Leonid Ivonin,Unconscious emotions: quantifying and logging something we are not aware of.,2013,17,Personal and Ubiquitous Computing,4,db/journals/puc/puc17.html#IvoninCCR13,https://doi.org/10.1007/s00779-012-0514-5 +Avishek Saha,Context-aware block-based motion estimation algorithm for multimedia internet of things (IoT) platform.,2018,22,Personal and Ubiquitous Computing,1,db/journals/puc/puc22.html#SahaLHPK18,https://doi.org/10.1007/s00779-017-1058-5 +Ying K. Leung,Mobile Pen-Based Technologies for Drivers Licence Administration.,1998,2,Personal and Ubiquitous Computing,4,db/journals/puc/puc2.html#LeungMP98,https://doi.org/10.1007/BF01885561 +Jesús Fontecha,Elderly frailty detection by using accelerometer-enabled smartphones and clinical information records.,2013,17,Personal and Ubiquitous Computing,6,db/journals/puc/puc17.html#FontechaNHB13,https://doi.org/10.1007/s00779-012-0559-5 +Lian Loke,Understanding movement for interaction design: frameworks and approaches.,2007,11,Personal and Ubiquitous Computing,8,db/journals/puc/puc11.html#LokeLRE07,https://doi.org/10.1007/s00779-006-0132-1 +Erika Reponen,Primary and secondary context in mobile video communication.,2008,12,Personal and Ubiquitous Computing,4,db/journals/puc/puc12.html#ReponenHM08,https://doi.org/10.1007/s00779-007-0150-7 +Heikki Ailisto,Bridging the physical and virtual worlds by local connectivity-based physical selection.,2006,10,Personal and Ubiquitous Computing,6,db/journals/puc/puc10.html#AilistoPVSTK06,https://doi.org/10.1007/s00779-005-0057-0 +Dimitrios Tzovaras,Interactive mixed reality white cane simulation for the training of the blind and the visually impaired.,2009,13,Personal and Ubiquitous Computing,1,db/journals/puc/puc13.html#TzovarasMNS09,https://doi.org/10.1007/s00779-007-0171-2 +Juan Pablo Hourcade,Multitouch tablet applications and activities to enhance the social skills of children with autism spectrum disorders.,2012,16,Personal and Ubiquitous Computing,2,db/journals/puc/puc16.html#HourcadeBH12,https://doi.org/10.1007/s00779-011-0383-3 +Lázaro Campoalegre,Interactive visualization of medical volume models in mobile devices.,2013,17,Personal and Ubiquitous Computing,7,db/journals/puc/puc17.html#CampoalegreBN13,https://doi.org/10.1007/s00779-012-0596-0 +Christoph Angerer,Evaluation and exploration of RFID systems by rapid prototyping.,2012,16,Personal and Ubiquitous Computing,3,db/journals/puc/puc16.html#AngererLR12,https://doi.org/10.1007/s00779-011-0391-3 +Tacha Serif,HMD versus PDA: a comparative study of the user out-of-box experience.,2005,9,Personal and Ubiquitous Computing,4,db/journals/puc/puc9.html#SerifG05,https://doi.org/10.1007/s00779-004-0325-4 +Se-Hak Chun,The burden of proof and the optimal security investment of firms in ubiquitous computing.,2013,17,Personal and Ubiquitous Computing,5,db/journals/puc/puc17.html#Chun13,https://doi.org/10.1007/s00779-012-0532-3 +Panu Korpipää,Bayesian approach to sensor-based context awareness.,2003,7,Personal and Ubiquitous Computing,2,db/journals/puc/puc7.html#KorpipaaKPMS03,https://doi.org/10.1007/s00779-003-0237-8 +Hans-Christian Jetter,Theme issue on designing collaborative interactive spaces.,2014,18,Personal and Ubiquitous Computing,5,db/journals/puc/puc18.html#JetterDR14,https://doi.org/10.1007/s00779-013-0753-0 +Kai Fan,Proxy-assisted access control scheme of cloud data for smart cities.,2017,21,Personal and Ubiquitous Computing,5,db/journals/puc/puc21.html#FanWWY17,https://doi.org/10.1007/s00779-017-1050-0 +Tina Park,Living Profiles: an example of user-centered design in developing a teen-oriented personal health record.,2015,19,Personal and Ubiquitous Computing,1,db/journals/puc/puc19.html#ParkCMN15,https://doi.org/10.1007/s00779-014-0812-1 +Florian Michahelles,Smart CAPs for Smart Its - Context Detection for Mobile Users.,2002,6,Personal and Ubiquitous Computing,4,db/journals/puc/puc6.html#MichahellesS02,https://doi.org/10.1007/s007790200027 +Hideki Hayashi,Updated data dissemination methods for updating old replicas in ad hoc networks.,2005,9,Personal and Ubiquitous Computing,5,db/journals/puc/puc9.html#HayashiHN05,https://doi.org/10.1007/s00779-004-0331-6 +Chris Aimone,An EyeTap video-based featureless projective motion estimation assisted by gyroscopic tracking for wearable computer mediated reality.,2003,7,Personal and Ubiquitous Computing,5,db/journals/puc/puc7.html#AimoneFM03,https://doi.org/10.1007/s00779-003-0239-6 +Agustinus Borgy Waluyo,Design and evaluation of lightweight middleware for personal wireless body area network.,2009,13,Personal and Ubiquitous Computing,7,db/journals/puc/puc13.html#WaluyoPCY09,https://doi.org/10.1007/s00779-009-0222-y +Matthew L. Lee,Sensor-based observations of daily living for aging in place.,2015,19,Personal and Ubiquitous Computing,1,db/journals/puc/puc19.html#LeeD15,https://doi.org/10.1007/s00779-014-0810-3 +Brian David Johnson,Brain machines.,2014,18,Personal and Ubiquitous Computing,4,db/journals/puc/puc18.html#Johnson14a,https://doi.org/10.1007/s00779-013-0681-z +Francesco Bellotti,Using 3D Sound to Improve the Effectiveness of the Advanced Driver Assistance Systems.,2002,6,Personal and Ubiquitous Computing,3,db/journals/puc/puc6.html#BellottiBGM02,https://doi.org/10.1007/s007790200016 +Andrea Leal Penados,Get up and move: an interactive cuddly toy that stimulates physical activity.,2010,14,Personal and Ubiquitous Computing,5,db/journals/puc/puc14.html#PenadosGSJ10,https://doi.org/10.1007/s00779-009-0270-3 +Wouter Pasman,Human-agent service matching using natural language queries: system test and training.,2006,10,Personal and Ubiquitous Computing,6,db/journals/puc/puc10.html#PasmanL06,https://doi.org/10.1007/s00779-006-0067-6 +Eleanor F. Toye,Interacting with mobile services: an evaluation of camera-phones and visual tags.,2007,11,Personal and Ubiquitous Computing,2,db/journals/puc/puc11.html#ToyeSMSUB07,https://doi.org/10.1007/s00779-006-0064-9 +Victoria Meza-Kubo,UCSA: a design framework for usable cognitive systems for the worried-well.,2013,17,Personal and Ubiquitous Computing,6,db/journals/puc/puc17.html#Meza-KuboM13,https://doi.org/10.1007/s00779-012-0554-x +Adrian Friday,Guidelines and open issues in systems support for Ubicomp: reflections on UbiSys 2003 and 2004.,2006,10,Personal and Ubiquitous Computing,1,db/journals/puc/puc10.html#FridayRBA06,https://doi.org/10.1007/s00779-005-0031-x +Parvin Asadzadeh,Gesture recognition using RFID technology.,2012,16,Personal and Ubiquitous Computing,3,db/journals/puc/puc16.html#AsadzadehKT12,https://doi.org/10.1007/s00779-011-0395-z +Oihane Kamara Esteban,On-demand energy monitoring and response architecture in a ubiquitous world.,2017,21,Personal and Ubiquitous Computing,3,db/journals/puc/puc21.html#EstebanPAB17,https://doi.org/10.1007/s00779-017-1014-4 +Oliver Storz,Supporting ordering and consistency in a distributed Event Heap for Ubiquitous Computing.,2006,10,Personal and Ubiquitous Computing,1,db/journals/puc/puc10.html#StorzFD06,https://doi.org/10.1007/s00779-005-0039-2 +Robbert-Jan Beun,Special issue on supporting a healthier lifestyle with e-coaching systems.,2017,21,Personal and Ubiquitous Computing,4,db/journals/puc/puc21.html#BeunAHKRW17,https://doi.org/10.1007/s00779-017-1029-x +Peter Ljungstrand,Context Awareness and Mobile Phones.,2001,5,Personal and Ubiquitous Computing,1,db/journals/puc/puc5.html#Ljungstrand01,https://doi.org/10.1007/s007790170032 +Chen Lin,On context-aware distributed event dissemination.,2011,15,Personal and Ubiquitous Computing,3,db/journals/puc/puc15.html#LinJLC11,https://doi.org/10.1007/s00779-010-0330-8 +Christoph Amma,Airwriting: a wearable handwriting recognition system.,2014,18,Personal and Ubiquitous Computing,1,db/journals/puc/puc18.html#AmmaGS14,https://doi.org/10.1007/s00779-013-0637-3 +Hannu Verkasalo,Contextual patterns in mobile service usage.,2009,13,Personal and Ubiquitous Computing,5,db/journals/puc/puc13.html#Verkasalo09,https://doi.org/10.1007/s00779-008-0197-0 +Astrid Twenebowa Larssen,Introduction to the special issue on movement-based interaction.,2007,11,Personal and Ubiquitous Computing,8,db/journals/puc/puc11.html#LarssenRLE07,https://doi.org/10.1007/s00779-006-0131-2 +Aikaterini Mitrokotsa,User-driven RFID applications and challenges.,2012,16,Personal and Ubiquitous Computing,3,db/journals/puc/puc16.html#MitrokotsaSM12,https://doi.org/10.1007/s00779-011-0444-7 +Dou Hui,A two-time-scale load balancing framework for minimizing electricity bills of Internet Data Centers.,2016,20,Personal and Ubiquitous Computing,5,db/journals/puc/puc20.html#HuiQWS16,https://doi.org/10.1007/s00779-016-0941-9 +Chris Esposito,Wearable Computers: Field Test Observations and System Design Guidelines.,1997,1,Personal and Ubiquitous Computing,2,db/journals/puc/puc1.html#Esposito97,https://doi.org/10.1007/BF02199213 +Mike Hawley,Personal systems.,1997,1,Personal and Ubiquitous Computing,1,db/journals/puc/puc1.html#Hawley97, +Jiehan Zhou,Context-aware pervasive service composition and its implementation.,2011,15,Personal and Ubiquitous Computing,3,db/journals/puc/puc15.html#ZhouGPRYS11,https://doi.org/10.1007/s00779-010-0333-5 +Andrew L. Kun,Automotive user interfaces and interactive applications in the car.,2013,17,Personal and Ubiquitous Computing,5,db/journals/puc/puc17.html#KunSDB13,https://doi.org/10.1007/s00779-012-0520-7 +Daniel Michelis,The disappearing screen: scenarios for audible interfaces.,2008,12,Personal and Ubiquitous Computing,1,db/journals/puc/puc12.html#MichelisRNS08,https://doi.org/10.1007/s00779-006-0123-2 +Riadh Karchoud,Long-life application - Situation detection in a context-aware all-in-one application.,2017,21,Personal and Ubiquitous Computing,6,db/journals/puc/puc21.html#KarchoudIIRD17,https://doi.org/10.1007/s00779-017-1077-2 +Aristodemos Pnevmatikakis,Robust multimodal audio-visual processing for advanced context awareness in smart spaces.,2009,13,Personal and Ubiquitous Computing,1,db/journals/puc/puc13.html#PnevmatikakisSTP09,https://doi.org/10.1007/s00779-007-0169-9 +Mark Billinghurst,editorial: Special Issue on Wearable Computing.,2002,6,Personal and Ubiquitous Computing,1,db/journals/puc/puc6.html#Billinghurst02,https://doi.org/10.1007/s007790200000 +Dani Korpi,On the human ability to discriminate audio ambiances from similar locations of an urban environment.,2013,17,Personal and Ubiquitous Computing,4,db/journals/puc/puc17.html#KorpiHPEMV13,https://doi.org/10.1007/s00779-012-0625-z +Liam Betsworth,Performative technologies for heritage site regeneration.,2014,18,Personal and Ubiquitous Computing,7,db/journals/puc/puc18.html#BetsworthBRJ14,https://doi.org/10.1007/s00779-014-0766-3 +Ikkyu Choi,Semi-automatic construction of domain ontology for agent reasoning.,2013,17,Personal and Ubiquitous Computing,8,db/journals/puc/puc17.html#ChoiRK13,https://doi.org/10.1007/s00779-012-0606-2 +Saskia Bakker,Peripheral interaction: characteristics and considerations.,2015,19,Personal and Ubiquitous Computing,1,db/journals/puc/puc19.html#BakkerHE15,https://doi.org/10.1007/s00779-014-0775-2 +Yasamin Dadashi,Investigating presentation of rail-specific spatial information on handheld computer screens.,2012,16,Personal and Ubiquitous Computing,8,db/journals/puc/puc16.html#DadashiSWC12,https://doi.org/10.1007/s00779-011-0439-4 +Cliff Randell,The Well Mannered Wearable Computer.,2002,6,Personal and Ubiquitous Computing,1,db/journals/puc/puc6.html#RandellM02,https://doi.org/10.1007/s007790200003 +Mika Luimula,Remote navigation of a mobile robot in an RFID-augmented environment.,2010,14,Personal and Ubiquitous Computing,2,db/journals/puc/puc14.html#LuimulaSPPA10,https://doi.org/10.1007/s00779-009-0238-3 +Sabine Geldof,Talking Wearables Exploit Context.,2001,5,Personal and Ubiquitous Computing,1,db/journals/puc/puc5.html#GeldofT01,https://doi.org/10.1007/s007790170033 +Sabiha Ghellal,Interactive movie elements in a pervasive game.,2008,12,Personal and Ubiquitous Computing,4,db/journals/puc/puc12.html#GhellalL08,https://doi.org/10.1007/s00779-007-0186-8 +Mario Baldi,Designing a Videoconference System for Active Networks.,1998,2,Personal and Ubiquitous Computing,2,db/journals/puc/puc2.html#BaldiPR98,https://doi.org/10.1007/BF01324937 +Cosmin Munteanu,Hidden in plain sight: low-literacy adults in a developed country overcoming social and educational challenges through mobile learning support tools.,2014,18,Personal and Ubiquitous Computing,6,db/journals/puc/puc18.html#MunteanuMMMLFL14,https://doi.org/10.1007/s00779-013-0748-x +Seung-Ho Lim,Efficient journaling writeback schemes for reliable and high-performance storage systems.,2013,17,Personal and Ubiquitous Computing,8,db/journals/puc/puc17.html#LimCP13,https://doi.org/10.1007/s00779-012-0603-5 +Yvonne Rogers,Enhancing learning: a study of how mobile devices can facilitate sensemaking.,2010,14,Personal and Ubiquitous Computing,2,db/journals/puc/puc14.html#RogersCHT10,https://doi.org/10.1007/s00779-009-0250-7 +Tareq Adnan,Efficient and accurate sensor network localization.,2014,18,Personal and Ubiquitous Computing,4,db/journals/puc/puc18.html#AdnanDM14,https://doi.org/10.1007/s00779-013-0692-9 +Oh-Keun Ha,Relation model describing the effects of introducing RFID in the supply chain: evidence from the food and beverage industry in South Korea.,2014,18,Personal and Ubiquitous Computing,3,db/journals/puc/puc18.html#HaSCLP14,https://doi.org/10.1007/s00779-013-0675-x +Jinhyuk Choi,Usability of one-handed interaction methods for handheld projection-based augmented reality.,2013,17,Personal and Ubiquitous Computing,2,db/journals/puc/puc17.html#ChoiK13,https://doi.org/10.1007/s00779-011-0502-1 +Scott C. Bates,Space psychology: natural elements in habitation design.,2011,15,Personal and Ubiquitous Computing,5,db/journals/puc/puc15.html#BatesM11,https://doi.org/10.1007/s00779-010-0316-6 +Neil Y. Yen,Modeling user-generated contents: an intelligent state machine for user-centric search support.,2013,17,Personal and Ubiquitous Computing,8,db/journals/puc/puc17.html#YenPJS13,https://doi.org/10.1007/s00779-012-0607-1 +Jordi Mongay Batalla,Conception of ID layer performance at the network level for Internet of Things.,2014,18,Personal and Ubiquitous Computing,2,db/journals/puc/puc18.html#BatallaK14,https://doi.org/10.1007/s00779-013-0664-0 +Tacha Serif,Satellite-based delivery of educational content to geographically isolated communities: a service based approach.,2009,13,Personal and Ubiquitous Computing,3,db/journals/puc/puc13.html#SerifGSCTT09,https://doi.org/10.1007/s00779-007-0185-9 +Jean-Claude Martin,Manual annotation and automatic image processing of multimodal emotional behaviors: validating the annotation of TV interviews.,2009,13,Personal and Ubiquitous Computing,1,db/journals/puc/puc13.html#MartinCDKA09,https://doi.org/10.1007/s00779-007-0167-y +Attila Reiss,A novel confidence-based multiclass boosting algorithm for mobile physical activity monitoring.,2015,19,Personal and Ubiquitous Computing,1,db/journals/puc/puc19.html#ReissHS15,https://doi.org/10.1007/s00779-014-0816-x +Yazhi Liu,Comprehensive tempo-spatial data collection in crowd sensing using a heterogeneous sensing vehicle selection method.,2016,20,Personal and Ubiquitous Computing,3,db/journals/puc/puc20.html#LiuNL16,https://doi.org/10.1007/s00779-016-0932-x +Robert D. Macredie,Software Agents and Agency: A Personal Information Management Perspective.,1997,1,Personal and Ubiquitous Computing,2,db/journals/puc/puc1.html#MacredieK97,https://doi.org/10.1007/BF02199214 +Stefano Burigat,On the effectiveness of Overview+Detail visualization on mobile devices.,2013,17,Personal and Ubiquitous Computing,2,db/journals/puc/puc17.html#BurigatC13,https://doi.org/10.1007/s00779-011-0500-3 +Albrecht Schmidt 0001,Matching Information and Ambient Media.,1999,3,Personal and Ubiquitous Computing,4,db/journals/puc/puc3.html#SchmidtGB99, +Matthieu-P. Schapranow,Costs of authentic pharmaceuticals: research on qualitative and quantitative aspects of enabling anti-counterfeiting in RFID-aided supply chains.,2012,16,Personal and Ubiquitous Computing,3,db/journals/puc/puc16.html#Schapranow0ZP12,https://doi.org/10.1007/s00779-011-0390-4 +Dimosthenis Ioannidis,Comparison of detailed occupancy profile generative methods to published standard diversity profiles.,2017,21,Personal and Ubiquitous Computing,3,db/journals/puc/puc21.html#IoannidisVMKMZT17,https://doi.org/10.1007/s00779-017-1013-5 +Tilde Bekker,Designing playful interactions for social interaction and physical play.,2010,14,Personal and Ubiquitous Computing,5,db/journals/puc/puc14.html#BekkerSE10,https://doi.org/10.1007/s00779-009-0264-1 +Hye-Young Kim,Intra domain route optimization for ubiquitous network.,2009,13,Personal and Ubiquitous Computing,7,db/journals/puc/puc13.html#KimCJ09,https://doi.org/10.1007/s00779-009-0219-6 +Maurits Kaptein,Adaptive persuasive messaging to increase service retention: using persuasion profiles to increase the effectiveness of email reminders.,2013,17,Personal and Ubiquitous Computing,6,db/journals/puc/puc17.html#KapteinH13,https://doi.org/10.1007/s00779-012-0585-3 +Md Munirul Haque,e-ESAS: Evolution of a participatory design-based solution for breast cancer (BC) patients in rural Bangladesh.,2015,19,Personal and Ubiquitous Computing,2,db/journals/puc/puc19.html#HaqueKAUALHDFS15,https://doi.org/10.1007/s00779-014-0828-6 +Steven Cadavid,Exploiting visual quasi-periodicity for real-time chewing event detection using active appearance models and support vector machines.,2012,16,Personal and Ubiquitous Computing,6,db/journals/puc/puc16.html#CadavidAH12,https://doi.org/10.1007/s00779-011-0425-x +Daniela Petrelli,Tangible data souvenirs as a bridge between a physical museum visit and online digital experience.,2017,21,Personal and Ubiquitous Computing,2,db/journals/puc/puc21.html#PetrelliMOMG17,https://doi.org/10.1007/s00779-016-0993-x +Robert K. Harle,Towards autonomous updating of world models in location-aware spaces.,2008,12,Personal and Ubiquitous Computing,4,db/journals/puc/puc12.html#HarleH08,https://doi.org/10.1007/s00779-006-0103-6 +Mikiko Nakanishi,Intuitive substitute interface.,2013,17,Personal and Ubiquitous Computing,8,db/journals/puc/puc17.html#NakanishiH13,https://doi.org/10.1007/s00779-013-0651-5 +Richard Cordeo,The Development of Video Dialtone Networks.,1997,1,Personal and Ubiquitous Computing,2,db/journals/puc/puc1.html#Cordeo97, +Mika Raento,Designing for privacy and self-presentation in social awareness.,2008,12,Personal and Ubiquitous Computing,7,db/journals/puc/puc12.html#RaentoO08,https://doi.org/10.1007/s00779-008-0200-9 +Fengzi Wang,Semantic trajectories-based social relationships discovery using WiFi monitors.,2017,21,Personal and Ubiquitous Computing,1,db/journals/puc/puc21.html#WangZM17,https://doi.org/10.1007/s00779-016-0983-z +Franz Gravenhorst,Exploring the link between behaviour and health.,2015,19,Personal and Ubiquitous Computing,2,db/journals/puc/puc19.html#GravenhorstOAM15,https://doi.org/10.1007/s00779-014-0830-z +Martijn ten Bhömer,Interaction design for supporting communication between Chinese sojourners.,2013,17,Personal and Ubiquitous Computing,1,db/journals/puc/puc17.html#BhomerH13,https://doi.org/10.1007/s00779-011-0482-1 +Lukas Desmond Elias Van Campenhout,Touching the dematerialized.,2016,20,Personal and Ubiquitous Computing,1,db/journals/puc/puc20.html#CampenhoutFHSP16,https://doi.org/10.1007/s00779-016-0907-y +Antti Oulasvirta,Habits make smartphone use more pervasive.,2012,16,Personal and Ubiquitous Computing,1,db/journals/puc/puc16.html#OulasvirtaRMR12,https://doi.org/10.1007/s00779-011-0412-2 +Michael Beigl,MemoClip: A Location-Based Remembrance Appliance.,2000,4,Personal and Ubiquitous Computing,4,db/journals/puc/puc4.html#Beigl00,https://doi.org/10.1007/BF02391564 +Florian Mueller 0001,Towards understanding how to design for social play in exertion games.,2010,14,Personal and Ubiquitous Computing,5,db/journals/puc/puc14.html#MuellerGV10,https://doi.org/10.1007/s00779-009-0268-x +Junping Wang,A new online anomaly learning and detection for large-scale service of Internet of Thing.,2015,19,Personal and Ubiquitous Computing,7,db/journals/puc/puc19.html#WangKD15,https://doi.org/10.1007/s00779-015-0874-8 +Werner Grass,Selected papers of the ARCS06 conference: an introduction.,2008,12,Personal and Ubiquitous Computing,2,db/journals/puc/puc12.html#GrassSUW08,https://doi.org/10.1007/s00779-006-0108-1 +Diego López-de-Ipiña,Ubiquitous Intelligence and computing for enabling a smarter world.,2017,21,Personal and Ubiquitous Computing,3,db/journals/puc/puc21.html#Lopez-de-IpinaC17,https://doi.org/10.1007/s00779-017-1015-3 +Kenji Mase,Welcome to the special issue on memory and sharing of experience for the Journal of Personal and Ubiquitous Computing.,2007,11,Personal and Ubiquitous Computing,4,db/journals/puc/puc11.html#MaseSF07,https://doi.org/10.1007/s00779-006-0083-6 +Fathi Hamhoum,Supporting pilgrims in navigating densely crowded religious sites.,2012,16,Personal and Ubiquitous Computing,8,db/journals/puc/puc16.html#HamhoumK12,https://doi.org/10.1007/s00779-011-0461-6 +Eiman Kanjo,MobGeoSen: facilitating personal geosensor data collection and visualization using mobile phones.,2008,12,Personal and Ubiquitous Computing,8,db/journals/puc/puc12.html#KanjoBPCFWCW08,https://doi.org/10.1007/s00779-007-0180-1 +Chon-in Wu,Point-of-capture archiving and editing of personal experiences from a mobile device.,2007,11,Personal and Ubiquitous Computing,4,db/journals/puc/puc11.html#WuTCLCH07,https://doi.org/10.1007/s00779-006-0082-7 +Fan Li 0001,Routing with multi-level cross-community social groups in mobile opportunistic networks.,2014,18,Personal and Ubiquitous Computing,2,db/journals/puc/puc18.html#LiZZG014,https://doi.org/10.1007/s00779-013-0657-z +Karen G. Cheng,Challenges of integrating patient-centered data into clinical workflow for care of high-risk infants.,2015,19,Personal and Ubiquitous Computing,1,db/journals/puc/puc19.html#ChengHHNB15,https://doi.org/10.1007/s00779-014-0807-y +Kathleen Neumann,Expanding a Distributed Deductive Database with Mobile Computing.,1997,1,Personal and Ubiquitous Computing,3,db/journals/puc/puc1.html#NeumannM97,https://doi.org/10.1007/BF01299652 +Juuso Karikoski,Contextual usage patterns in smartphone communication services.,2013,17,Personal and Ubiquitous Computing,3,db/journals/puc/puc17.html#KarikoskiS13,https://doi.org/10.1007/s00779-011-0503-0 +Andrea Szymkowiak,A memory aid with remote communication using distributed technology.,2005,9,Personal and Ubiquitous Computing,1,db/journals/puc/puc9.html#SzymkowiakMGSEW05,https://doi.org/10.1007/s00779-004-0259-x +Jian-Hui Huang,A proportional fairness scheduling for wireless sensor networks.,2016,20,Personal and Ubiquitous Computing,5,db/journals/puc/puc20.html#HuangB16,https://doi.org/10.1007/s00779-016-0948-2 +Tomas Bostrom,Mobile Audio Distribution.,1999,3,Personal and Ubiquitous Computing,4,db/journals/puc/puc3.html#BostromELMN99,https://doi.org/10.1007/BF01540550 +John Krumm,Where will they turn: predicting turn proportions at intersections.,2010,14,Personal and Ubiquitous Computing,7,db/journals/puc/puc14.html#Krumm10,https://doi.org/10.1007/s00779-009-0248-1 +Bo N. Schenkman,Perceived Similarities and Preferences for Consumer Electronics Products.,2002,6,Personal and Ubiquitous Computing,2,db/journals/puc/puc6.html#Schenkman02,https://doi.org/10.1007/s007790200011 +Anton Umek,Wearable training system with real-time biofeedback and gesture user interface.,2015,19,Personal and Ubiquitous Computing,7,db/journals/puc/puc19.html#UmekTK15,https://doi.org/10.1007/s00779-015-0886-4 +Tuong Tri Nguyen,Identifying and ranking cultural heritage resources on geotagged social media for smart cultural tourism services.,2017,21,Personal and Ubiquitous Computing,2,db/journals/puc/puc21.html#NguyenCJ17,https://doi.org/10.1007/s00779-016-0992-y +Trish Keaton,Browsing the environment with the SNAPandTELL wearable computer system - Erratum.,2005,9,Personal and Ubiquitous Computing,6,db/journals/puc/puc9.html#KeatonDS05a,https://doi.org/10.1007/s00779-005-0351-x +Burcu Cinaz,Monitoring of mental workload levels during an everyday life office-work scenario.,2013,17,Personal and Ubiquitous Computing,2,db/journals/puc/puc17.html#CinazAMT13,https://doi.org/10.1007/s00779-011-0466-1 +Anas El Husseini,Trust-based authentication scheme with user rating for low-resource devices in smart environments.,2013,17,Personal and Ubiquitous Computing,5,db/journals/puc/puc17.html#HusseiniMEM13,https://doi.org/10.1007/s00779-012-0548-8 +Kai Xing,When smart grid meets PHEVs: a smart load distribution mechanism in smart grid.,2014,18,Personal and Ubiquitous Computing,8,db/journals/puc/puc18.html#XingZLC14,https://doi.org/10.1007/s00779-014-0790-3 +Connie Golsteijn,Hybrid crafting: towards an integrated practice of crafting with physical and digital components.,2014,18,Personal and Ubiquitous Computing,3,db/journals/puc/puc18.html#GolsteijnHFS14,https://doi.org/10.1007/s00779-013-0684-9 +Alexander Thayer,Theme issue on EIST.,2014,18,Personal and Ubiquitous Computing,6,db/journals/puc/puc18.html#Thayer14,https://doi.org/10.1007/s00779-013-0745-0 +Chi-Jui Wu,Out of sight: a toolkit for tracking occluded human joint positions.,2017,21,Personal and Ubiquitous Computing,1,db/journals/puc/puc21.html#WuQH17,https://doi.org/10.1007/s00779-016-0997-6 +Jing Zhou,SShare: a simulator for studying and evaluating decentralized SPARQL query processing.,2015,19,Personal and Ubiquitous Computing,7,db/journals/puc/puc19.html#ZhouHXQ15,https://doi.org/10.1007/s00779-015-0878-4 +Sung-Kwan Kang,Development of head detection and tracking systems for visual surveillance.,2014,18,Personal and Ubiquitous Computing,3,db/journals/puc/puc18.html#KangCL14,https://doi.org/10.1007/s00779-013-0668-9 +Enrico Rukzio,Theme issue on personal projection.,2012,16,Personal and Ubiquitous Computing,1,db/journals/puc/puc16.html#RukzioSRHD12,https://doi.org/10.1007/s00779-011-0372-6 +Philip R. Ross,A designerly critique on enchantment.,2008,12,Personal and Ubiquitous Computing,5,db/journals/puc/puc12.html#RossOWH08,https://doi.org/10.1007/s00779-007-0162-3 +Susanne Bødker,Rethinking technology on the boundaries of life and work.,2016,20,Personal and Ubiquitous Computing,4,db/journals/puc/puc20.html#Bodker16,https://doi.org/10.1007/s00779-016-0933-9 +Marco Furini,Sentiment analysis and Twitter: a game proposal.,2018,22,Personal and Ubiquitous Computing,4,db/journals/puc/puc22.html#FuriniM18,https://doi.org/10.1007/s00779-018-1142-5 +Guri Verne,Do-it-yourself services and work-like chores: on civic duties and digital public services.,2016,20,Personal and Ubiquitous Computing,4,db/journals/puc/puc20.html#VerneB16,https://doi.org/10.1007/s00779-016-0936-6 +Sarah Spiekermann,RFID and privacy: what consumers really want and fear.,2009,13,Personal and Ubiquitous Computing,6,db/journals/puc/puc13.html#Spiekermann09,https://doi.org/10.1007/s00779-008-0215-2 +Scott M. Thayer,An Architecture for the Integration of Physical and Informational Spaces.,2003,7,Personal and Ubiquitous Computing,2,db/journals/puc/puc7.html#ThayerS03,https://doi.org/10.1007/s00779-003-0234-y +John Underkoffler,A View from the Luminous Room.,1997,1,Personal and Ubiquitous Computing,2,db/journals/puc/puc1.html#Underkoffler97a,https://doi.org/10.1007/BF02199211 +Kwanghyo Park,Smartphone-based pedestrian tracking in indoor corridor environments.,2013,17,Personal and Ubiquitous Computing,2,db/journals/puc/puc17.html#ParkSC13,https://doi.org/10.1007/s00779-011-0499-5 +Changsu Kim,A cross-country comparison of the adoption of ubiquitous supply chain management.,2012,16,Personal and Ubiquitous Computing,6,db/journals/puc/puc16.html#KimJRL12,https://doi.org/10.1007/s00779-011-0438-5 +Gerhard Schall,Handheld Augmented Reality for underground infrastructure visualization.,2009,13,Personal and Ubiquitous Computing,4,db/journals/puc/puc13.html#SchallMKVJRS09,https://doi.org/10.1007/s00779-008-0204-5 +José M. Noguera,A scalable architecture for 3D map navigation on mobile devices.,2013,17,Personal and Ubiquitous Computing,7,db/journals/puc/puc17.html#NogueraSOJ13,https://doi.org/10.1007/s00779-012-0598-y +Alan Chamberlain,Locating experience: touring a pervasive performance.,2011,15,Personal and Ubiquitous Computing,7,db/journals/puc/puc15.html#ChamberlainOFBTARTMR11,https://doi.org/10.1007/s00779-010-0351-3 +David Moreland,A snapshot of trusted personal devices applicable to transaction processing.,2010,14,Personal and Ubiquitous Computing,4,db/journals/puc/puc14.html#MorelandNHZ10,https://doi.org/10.1007/s00779-009-0235-6 +Guglielmo Cola,Wearable systems for e-health and wellbeing.,2018,22,Personal and Ubiquitous Computing,2,db/journals/puc/puc22.html#ColaV18,https://doi.org/10.1007/s00779-017-1041-1 +Gail R. Casper,Introduction to theme issue on technologies for patient-defined and patient-generated data.,2015,19,Personal and Ubiquitous Computing,1,db/journals/puc/puc19.html#CasperM15,https://doi.org/10.1007/s00779-014-0803-2 +George Caridakis,Non-manual cues in automatic sign language recognition.,2014,18,Personal and Ubiquitous Computing,1,db/journals/puc/puc18.html#CaridakisAK14,https://doi.org/10.1007/s00779-012-0615-1 +Hyosun Kwon,Intangibles wear materiality via material composition.,2014,18,Personal and Ubiquitous Computing,3,db/journals/puc/puc18.html#KwonKL14,https://doi.org/10.1007/s00779-013-0688-5 +Weishan Zhang,QoS4IVSaaS: a QoS management framework for intelligent video surveillance as a service.,2016,20,Personal and Ubiquitous Computing,5,db/journals/puc/puc20.html#ZhangDXXLLZ16,https://doi.org/10.1007/s00779-016-0945-5 +Byung Wook Kim,Suboptimal LED selection for distributed MIMO visible light communications.,2018,22,Personal and Ubiquitous Computing,1,db/journals/puc/puc22.html#Kim18,https://doi.org/10.1007/s00779-017-1080-7 +Christine Satchell,Conveying identity with mobile content.,2010,14,Personal and Ubiquitous Computing,3,db/journals/puc/puc14.html#SatchellG10,https://doi.org/10.1007/s00779-009-0254-3 +Christopher K. Hess,An application of a context-aware file system.,2003,7,Personal and Ubiquitous Computing,6,db/journals/puc/puc7.html#HessC03,https://doi.org/10.1007/s00779-003-0250-y +Karl D. D. Willis,A pre-history of handheld projector-based interaction.,2012,16,Personal and Ubiquitous Computing,1,db/journals/puc/puc16.html#Willis12,https://doi.org/10.1007/s00779-011-0373-5 +Can Telkenaroglu,Dual-Finger 3D Interaction Techniques for mobile devices.,2013,17,Personal and Ubiquitous Computing,7,db/journals/puc/puc17.html#TelkenarogluC13,https://doi.org/10.1007/s00779-012-0594-2 +Ashfaq Hussain Farooqi,A novel intrusion detection framework for wireless sensor networks.,2013,17,Personal and Ubiquitous Computing,5,db/journals/puc/puc17.html#FarooqiKWL13,https://doi.org/10.1007/s00779-012-0529-y +Theodosios Sapounidis,Tangible versus graphical user interfaces for robot programming: exploring cross-age children's preferences.,2013,17,Personal and Ubiquitous Computing,8,db/journals/puc/puc17.html#SapounidisD13,https://doi.org/10.1007/s00779-013-0641-7 +Hoill Jung,Discovery of automotive design paradigm using relevance feedback.,2014,18,Personal and Ubiquitous Computing,6,db/journals/puc/puc18.html#JungC14,https://doi.org/10.1007/s00779-013-0738-z +Sujith Samuel Mathew,Building sustainable parking lots with the Web of Things.,2014,18,Personal and Ubiquitous Computing,4,db/journals/puc/puc18.html#MathewASM14,https://doi.org/10.1007/s00779-013-0694-7 +Hans-Christian Jetter,Blended Interaction: understanding natural human-computer interaction in post-WIMP interactive spaces.,2014,18,Personal and Ubiquitous Computing,5,db/journals/puc/puc18.html#JetterRG14,https://doi.org/10.1007/s00779-013-0725-4 +Xiaohui Chen,Potentials of IR-UWB technology for ubiquitous computing.,2011,15,Personal and Ubiquitous Computing,1,db/journals/puc/puc15.html#ChenXYWW11,https://doi.org/10.1007/s00779-010-0299-3 +Maria Luiza Recena Menezes,Towards emotion recognition for virtual environments: an evaluation of eeg features on benchmark dataset.,2017,21,Personal and Ubiquitous Computing,6,db/journals/puc/puc21.html#MenezesSGSVAWB17,https://doi.org/10.1007/s00779-017-1072-7 +Roberto R. Expósito,Evaluation of messaging middleware for high-performance cloud computing.,2013,17,Personal and Ubiquitous Computing,8,db/journals/puc/puc17.html#ExpositoTRTD13,https://doi.org/10.1007/s00779-012-0605-3 +Gary D. Walborn,Pro-Motion: Support for Mobile Database Access.,1997,1,Personal and Ubiquitous Computing,3,db/journals/puc/puc1.html#WalbornC97,https://doi.org/10.1007/BF01299651 +Alexandra Zafiroglu,Digital homes on wheels: designing for the unimagined home.,2007,11,Personal and Ubiquitous Computing,5,db/journals/puc/puc11.html#ZafirogluC07,https://doi.org/10.1007/s00779-006-0074-7 +Henar Martín,Activity logging using lightweight classification techniques in mobile devices.,2013,17,Personal and Ubiquitous Computing,4,db/journals/puc/puc17.html#MartinBIC13,https://doi.org/10.1007/s00779-012-0515-4 +Sana Maqsood,Bend Passwords: using gestures to authenticate on flexible devices.,2016,20,Personal and Ubiquitous Computing,4,db/journals/puc/puc20.html#MaqsoodCG16,https://doi.org/10.1007/s00779-016-0928-6 +Phoebe Sengers,The disenchantment of affect.,2008,12,Personal and Ubiquitous Computing,5,db/journals/puc/puc12.html#SengersBMG08,https://doi.org/10.1007/s00779-007-0161-4 +Junqi Guo,Structural health monitoring by using a sparse coding-based deep learning algorithm with wireless sensor networks.,2014,18,Personal and Ubiquitous Computing,8,db/journals/puc/puc18.html#GuoXBS14,https://doi.org/10.1007/s00779-014-0800-5 +Chris Schmandt,Personal and Ubiquitous Computing.,2004,8,Personal and Ubiquitous Computing,6,db/journals/puc/puc8.html#SchmandtA04,https://doi.org/10.1007/s00779-004-0306-7 +Carman Neustaedter,Creating scalable location-based games: lessons from Geocaching.,2013,17,Personal and Ubiquitous Computing,2,db/journals/puc/puc17.html#NeustaedterTJ13,https://doi.org/10.1007/s00779-011-0497-7 +Sara Bury,Designing for social interaction with mundane technologies: issues of security and trust.,2010,14,Personal and Ubiquitous Computing,3,db/journals/puc/puc14.html#BuryIRS10,https://doi.org/10.1007/s00779-009-0257-0 +Gang Pan 0001,GeeAir: a universal multimodal remote control device for home appliances.,2010,14,Personal and Ubiquitous Computing,8,db/journals/puc/puc14.html#PanWZWYL10,https://doi.org/10.1007/s00779-010-0287-7 +David M. Frohlich,The future of personal technologies.,1997,1,Personal and Ubiquitous Computing,1,db/journals/puc/puc1.html#FrohlichTHH97, +Lucia Terrenghi,A taxonomy for and analysis of multi-person-display ecosystems.,2009,13,Personal and Ubiquitous Computing,8,db/journals/puc/puc13.html#TerrenghiQD09,https://doi.org/10.1007/s00779-009-0244-5 +Eva Eriksson,Movement-based interaction in camera spaces: a conceptual framework.,2007,11,Personal and Ubiquitous Computing,8,db/journals/puc/puc11.html#ErikssonHL07,https://doi.org/10.1007/s00779-006-0134-z +Steven Strachan,Bearing-based selection in mobile spatial interaction.,2009,13,Personal and Ubiquitous Computing,4,db/journals/puc/puc13.html#StrachanM09,https://doi.org/10.1007/s00779-008-0205-4 +Joshua Wainer,The effectiveness of using a robotics class to foster collaboration among groups of children with autism in an exploratory study.,2010,14,Personal and Ubiquitous Computing,5,db/journals/puc/puc14.html#WainerFDR10,https://doi.org/10.1007/s00779-009-0266-z +Nicholas D. Lane,Community Similarity Networks.,2014,18,Personal and Ubiquitous Computing,2,db/journals/puc/puc18.html#LaneXLHCCZ14,https://doi.org/10.1007/s00779-013-0655-1 +Yao-Jen Chang,A kinect-based vocational task prompting system for individuals with cognitive impairments.,2013,17,Personal and Ubiquitous Computing,2,db/journals/puc/puc17.html#ChangCWC13,https://doi.org/10.1007/s00779-011-0498-6 +Hong Joo Lee,A study on the promotion of the business service for regional retail store using smart technology.,2013,17,Personal and Ubiquitous Computing,7,db/journals/puc/puc17.html#Lee13,https://doi.org/10.1007/s00779-012-0582-6 +Holger Hoffmann,Incorporating behavioral trust theory into system development for ubiquitous applications.,2014,18,Personal and Ubiquitous Computing,1,db/journals/puc/puc18.html#HoffmannS14,https://doi.org/10.1007/s00779-012-0631-1 +Cheonshik Kim,Special issue: Advanced technology for smart home automation and entertainment.,2018,22,Personal and Ubiquitous Computing,1,db/journals/puc/puc22.html#KimKRY18,https://doi.org/10.1007/s00779-017-1102-5 +Alissa Nicole Antle,East meets west: a mobile brain-computer system that helps children living in poverty learn to self-regulate.,2018,22,Personal and Ubiquitous Computing,4,db/journals/puc/puc22.html#AntleCSC18,https://doi.org/10.1007/s00779-018-1166-x +Richard K. Lomotey,Using a cloud-centric middleware to enable mobile hosting of Web services: mHealth use case.,2014,18,Personal and Ubiquitous Computing,5,db/journals/puc/puc18.html#LomoteyD14,https://doi.org/10.1007/s00779-013-0721-8 +Junggi Yang,Coronary heart disease optimization system on adaptive-network-based fuzzy inference system and linear discriminant analysis (ANFIS-LDA).,2014,18,Personal and Ubiquitous Computing,6,db/journals/puc/puc18.html#YangKKL14,https://doi.org/10.1007/s00779-013-0737-0 +Puneet Gupta,Evolving a pervasive IT infrastructure: a technology integration approach.,2004,8,Personal and Ubiquitous Computing,1,db/journals/puc/puc8.html#GuptaM04,https://doi.org/10.1007/s00779-003-0254-7 +Frank Siegemund,Rendezvous layer protocols for Bluetooth-enabled smart devices.,2003,7,Personal and Ubiquitous Computing,2,db/journals/puc/puc7.html#SiegemundR03,https://doi.org/10.1007/s00779-003-0233-z +Diomidis Spinellis,Palmtop Programmable Appliance Controls.,1998,2,Personal and Ubiquitous Computing,1,db/journals/puc/puc2.html#Spinellis98,https://doi.org/10.1007/BF01581842 +Kyusuk Han,Secure and efficient public key management in next generation mobile networks.,2012,16,Personal and Ubiquitous Computing,6,db/journals/puc/puc16.html#HanMSYP12,https://doi.org/10.1007/s00779-011-0434-9 +Daniele Riboni,COSAR: hybrid reasoning for context-aware activity recognition.,2011,15,Personal and Ubiquitous Computing,3,db/journals/puc/puc15.html#RiboniB11,https://doi.org/10.1007/s00779-010-0331-7 +Piiastiina Tikka,Contributing or receiving-the role of social interaction styles in persuasion over a social networking platform.,2017,21,Personal and Ubiquitous Computing,4,db/journals/puc/puc21.html#TikkaO17,https://doi.org/10.1007/s00779-017-1027-z +Nicola J. Bidwell,Situated interactions between audiovisual media and African herbal lore.,2011,15,Personal and Ubiquitous Computing,6,db/journals/puc/puc15.html#BidwellWKC11,https://doi.org/10.1007/s00779-010-0337-1 +Lei Tang 0002,Supporting rapid design and evaluation of pervasive applications: challenges and solutions.,2011,15,Personal and Ubiquitous Computing,3,db/journals/puc/puc15.html#TangYZWB11,https://doi.org/10.1007/s00779-010-0332-6 +Peter Tolmie,The practical politics of sharing personal data.,2018,22,Personal and Ubiquitous Computing,2,db/journals/puc/puc22.html#TolmieC18,https://doi.org/10.1007/s00779-017-1071-8 +A. Lee Gilbert,Beyond usability: the OoBE dynamics of mobile data services markets.,2005,9,Personal and Ubiquitous Computing,4,db/journals/puc/puc9.html#GilbertSI05,https://doi.org/10.1007/s00779-004-0321-8 +Luís A. Castro,Erratum to: Behavioral data gathering for assessing functional status and health in older adults using mobile phones.,2015,19,Personal and Ubiquitous Computing,2,db/journals/puc/puc19.html#CastroFQP15a,https://doi.org/10.1007/s00779-014-0832-x +Stuart Goose,WIRE3: Driving Around the Information Super-Highway.,2002,6,Personal and Ubiquitous Computing,3,db/journals/puc/puc6.html#GooseD02,https://doi.org/10.1007/s007790200017 +Lars Erik Holmquist,Tangible interfaces in perspective.,2004,8,Personal and Ubiquitous Computing,5,db/journals/puc/puc8.html#HolmquistSU04,https://doi.org/10.1007/s00779-004-0292-9 +Tao Lei,AOM: adaptive mobile data traffic offloading for M2M networks.,2016,20,Personal and Ubiquitous Computing,6,db/journals/puc/puc20.html#LeiWLY16,https://doi.org/10.1007/s00779-016-0962-4 +Tin Yu Wu,A GA-based mobile RFID localization scheme for internet of things.,2012,16,Personal and Ubiquitous Computing,3,db/journals/puc/puc16.html#WuLHLW12,https://doi.org/10.1007/s00779-011-0398-9 +Guangjie Han,TGM-COT: energy-efficient continuous object tracking scheme with two-layer grid model in wireless sensor networks.,2016,20,Personal and Ubiquitous Computing,3,db/journals/puc/puc20.html#HanSLQS16,https://doi.org/10.1007/s00779-016-0927-7 +Sakari Tamminen,Understanding mobile contexts.,2004,8,Personal and Ubiquitous Computing,2,db/journals/puc/puc8.html#TamminenOTK04,https://doi.org/10.1007/s00779-004-0263-1 +Bieke Zaman,Editorial: the evolving field of tangible interaction for children: the challenge of empirical validation.,2012,16,Personal and Ubiquitous Computing,4,db/journals/puc/puc16.html#ZamanAMM12,https://doi.org/10.1007/s00779-011-0409-x +Yasuto Nakanishi,Context Aware Messaging Service: A Dynamical Messaging Delivery using Location Information and Schedule Information.,2000,4,Personal and Ubiquitous Computing,4,db/journals/puc/puc4.html#NakanishiTOH00,https://doi.org/10.1007/BF02391562 +Hyoseok Yoon,Lightful user interaction on smart wearables.,2016,20,Personal and Ubiquitous Computing,6,db/journals/puc/puc20.html#YoonPL16,https://doi.org/10.1007/s00779-016-0959-z +Michael Kenteris,Electronic mobile guides: a survey.,2011,15,Personal and Ubiquitous Computing,1,db/journals/puc/puc15.html#KenterisGE11,https://doi.org/10.1007/s00779-010-0295-7 +Martin Modahl,UbiqStack: a taxonomy for a ubiquitous computing software stack.,2006,10,Personal and Ubiquitous Computing,1,db/journals/puc/puc10.html#ModahlASAR06,https://doi.org/10.1007/s00779-005-0036-5 +Yu-e Sun,SPRITE: a novel strategy-proof multi-unit double auction scheme for spectrum allocation in ubiquitous communications.,2014,18,Personal and Ubiquitous Computing,4,db/journals/puc/puc18.html#SunHXCZXH14,https://doi.org/10.1007/s00779-013-0709-4 +Timo Koivumäki,The perceptions towards mobile services: an empirical analysis of the role of use facilitators.,2008,12,Personal and Ubiquitous Computing,1,db/journals/puc/puc12.html#KoivumakiRK08,https://doi.org/10.1007/s00779-006-0128-x +Theodoros Anagnostopoulos,Environmental exposure assessment using indoor/outdoor detection on smartphones.,2017,21,Personal and Ubiquitous Computing,4,db/journals/puc/puc21.html#Anagnostopoulos17,https://doi.org/10.1007/s00779-017-1028-y +Christian Plessl,The case for reconfigurable hardware in wearable computing.,2003,7,Personal and Ubiquitous Computing,5,db/journals/puc/puc7.html#PlesslEWBPTT03,https://doi.org/10.1007/s00779-003-0243-x +Jialiu Lin,A comparative study of location-sharing privacy preferences in the United States and China.,2013,17,Personal and Ubiquitous Computing,4,db/journals/puc/puc17.html#LinBSNHLG13,https://doi.org/10.1007/s00779-012-0610-6 +Tim Walton,Correction to: Exploring object-based content adaptation for mobile audio.,2018,22,Personal and Ubiquitous Computing,4,db/journals/puc/puc22.html#WaltonEKM18a,https://doi.org/10.1007/s00779-018-1140-7 +Robbert-Jan Beun,Talk and Tools: the best of both worlds in mobile user interfaces for E-coaching.,2017,21,Personal and Ubiquitous Computing,4,db/journals/puc/puc21.html#BeunFGSHLB17,https://doi.org/10.1007/s00779-017-1021-5 +Kathryn Rounding,Evaluating interfaces with children.,2013,17,Personal and Ubiquitous Computing,8,db/journals/puc/puc17.html#RoundingTWGT13,https://doi.org/10.1007/s00779-012-0521-6 +Scott Lederer,Personal privacy through understanding and action: five pitfalls for designers.,2004,8,Personal and Ubiquitous Computing,6,db/journals/puc/puc8.html#LedererHDL04,https://doi.org/10.1007/s00779-004-0304-9 +Wen-Fong Wang,SVM-based classification method to identify alcohol consumption using ECG and PPG monitoring.,2018,22,Personal and Ubiquitous Computing,2,db/journals/puc/puc22.html#WangYW18,https://doi.org/10.1007/s00779-017-1042-0 +Luciano Baresi,Special issue on ubiquitous mobile information and collaboration systems (UMICS).,2005,9,Personal and Ubiquitous Computing,5,db/journals/puc/puc9.html#BaresiDGM05,https://doi.org/10.1007/s00779-004-0329-0 +Martijn H. Vastenburg,Considerate home notification systems: a field study of acceptability of notifications in the home.,2008,12,Personal and Ubiquitous Computing,8,db/journals/puc/puc12.html#VastenburgKR08,https://doi.org/10.1007/s00779-007-0176-x +Markus C. Huebscher,An adaptive middleware framework for context-aware applications.,2006,10,Personal and Ubiquitous Computing,1,db/journals/puc/puc10.html#HuebscherM06,https://doi.org/10.1007/s00779-005-0035-6 +Tatsuo Nakajima,Designing motivation using persuasive ambient mirrors.,2013,17,Personal and Ubiquitous Computing,1,db/journals/puc/puc17.html#NakajimaL13,https://doi.org/10.1007/s00779-011-0469-y +Bruce H. Thomas,Where Does the Mouse Go? An Investigation into the Placement of a Body-Attached TouchPad Mouse for Wearable Computers.,2002,6,Personal and Ubiquitous Computing,2,db/journals/puc/puc6.html#ThomasGZM02,https://doi.org/10.1007/s007790200009 +Hui-Huang Hsu,Guest Editorial: Theme issue on location and context-aware services.,2014,18,Personal and Ubiquitous Computing,2,db/journals/puc/puc18.html#HsuR14,https://doi.org/10.1007/s00779-013-0642-6 +Sébastien Kubicki,RFID interactive tabletop application with tangible objects: exploratory study to observe young children' behaviors.,2015,19,Personal and Ubiquitous Computing,8,db/journals/puc/puc19.html#KubickiWLK15,https://doi.org/10.1007/s00779-015-0891-7 +Kristof Van Laerhoven,Teaching Context to Applications.,2001,5,Personal and Ubiquitous Computing,1,db/journals/puc/puc5.html#LaerhovenA01,https://doi.org/10.1007/s007790170029 +Gokul Chittaranjan,Mining large-scale smartphone data for personality studies.,2013,17,Personal and Ubiquitous Computing,3,db/journals/puc/puc17.html#ChittaranjanBG13,https://doi.org/10.1007/s00779-011-0490-1 +Junqi Guo,Square-root unscented Kalman filtering-based localization and tracking in the Internet of Things.,2014,18,Personal and Ubiquitous Computing,4,db/journals/puc/puc18.html#GuoZSB14,https://doi.org/10.1007/s00779-013-0713-8 +Amandine Afonso Jaco,Trains of thought on the tabletop: visualizing association of ideas improves creativity.,2014,18,Personal and Ubiquitous Computing,5,db/journals/puc/puc18.html#JacoBBAV14,https://doi.org/10.1007/s00779-013-0726-3 +Vassiliki Koufi,A system for the provision of medical diagnostic and treatment advice in home care environment.,2010,14,Personal and Ubiquitous Computing,6,db/journals/puc/puc14.html#KoufiMV10,https://doi.org/10.1007/s00779-009-0275-y +Luca Chittaro,Evaluating Interface Design Choices on WAP Phones: Navigation and Selection.,2002,6,Personal and Ubiquitous Computing,4,db/journals/puc/puc6.html#ChittaroC02,https://doi.org/10.1007/s007790200023 +Orit Shaer,The TAC paradigm: specifying tangible user interfaces.,2004,8,Personal and Ubiquitous Computing,5,db/journals/puc/puc8.html#ShaerLCJ04,https://doi.org/10.1007/s00779-004-0298-3 +Melchiorre Masali,Space anthropology: physical and cultural adaptation in outer space.,2011,15,Personal and Ubiquitous Computing,5,db/journals/puc/puc15.html#MasaliFAS11,https://doi.org/10.1007/s00779-010-0324-6 +Anthony Steed,Using tracked mobile sensors to make maps of environmental effects.,2008,12,Personal and Ubiquitous Computing,4,db/journals/puc/puc12.html#SteedM08,https://doi.org/10.1007/s00779-006-0104-5 +Cristina Hava Muntean,Open corpus architecture for personalised ubiquitous e-learning.,2009,13,Personal and Ubiquitous Computing,3,db/journals/puc/puc13.html#MunteanM09,https://doi.org/10.1007/s00779-007-0189-5 +Karin Niemantsverdriet,A perspective on multi-user interaction design based on an understanding of domestic lighting conflicts.,2017,21,Personal and Ubiquitous Computing,2,db/journals/puc/puc21.html#Niemantsverdriet17,https://doi.org/10.1007/s00779-016-0998-5 +Florian Schaub,On credibility improvements for automotive navigation systems.,2013,17,Personal and Ubiquitous Computing,5,db/journals/puc/puc17.html#SchaubHK013,https://doi.org/10.1007/s00779-012-0519-0 +Julie Rico Williamson,Understanding performative interactions in public settings.,2014,18,Personal and Ubiquitous Computing,7,db/journals/puc/puc18.html#WilliamsonHJLR14,https://doi.org/10.1007/s00779-014-0819-7 +Evangelos Niforatos,EmoSnaps: a mobile application for emotion recall from facial expressions.,2015,19,Personal and Ubiquitous Computing,2,db/journals/puc/puc19.html#NiforatosK15,https://doi.org/10.1007/s00779-014-0777-0 +Simen Hagen,Toward accessible self-service kiosks through intelligent user interfaces.,2010,14,Personal and Ubiquitous Computing,8,db/journals/puc/puc14.html#HagenS10,https://doi.org/10.1007/s00779-010-0286-8 +Jakob E. Bardram,Activity-based computing: support for mobility and collaboration in ubiquitous computing.,2005,9,Personal and Ubiquitous Computing,5,db/journals/puc/puc9.html#Bardram05,https://doi.org/10.1007/s00779-004-0335-2 +Robyn Taylor,Nightingallery: theatrical framing and orchestration in participatory performance.,2014,18,Personal and Ubiquitous Computing,7,db/journals/puc/puc18.html#TaylorSSWBO14,https://doi.org/10.1007/s00779-014-0763-6 +Simon Robinson,Navigation your way: from spontaneous independent exploration to dynamic social journeys.,2012,16,Personal and Ubiquitous Computing,8,db/journals/puc/puc16.html#RobinsonJWMEL12,https://doi.org/10.1007/s00779-011-0457-2 +James F. Knight,The design of the SensVest.,2005,9,Personal and Ubiquitous Computing,1,db/journals/puc/puc9.html#KnightSPBBA05,https://doi.org/10.1007/s00779-004-0269-8 +Andrew Clayphan,ScriptStorm: scripting to enhance tabletop brainstorming.,2014,18,Personal and Ubiquitous Computing,6,db/journals/puc/puc18.html#ClayphanKW14,https://doi.org/10.1007/s00779-013-0746-z +Katerina Diamantaki,Erratum to: Theoretical and methodological implications of designing and implementing multiuser location-based games.,2011,15,Personal and Ubiquitous Computing,1,db/journals/puc/puc15.html#DiamantakiRCTG11,https://doi.org/10.1007/s00779-010-0334-4 +Jianen Yan,Discrete PSO-based workload optimization in virtual machine placement.,2018,22,Personal and Ubiquitous Computing,3,db/journals/puc/puc22.html#YanZXZ18,https://doi.org/10.1007/s00779-018-1111-z +Rashid Mehmood,Effective cancer subtyping by employing density peaks clustering by using gene expression microarray.,2018,22,Personal and Ubiquitous Computing,3,db/journals/puc/puc22.html#MehmoodEBS18,https://doi.org/10.1007/s00779-018-1112-y +Peter Darcy,X-CleLo: intelligent deterministic RFID data and event transformer.,2012,16,Personal and Ubiquitous Computing,3,db/journals/puc/puc16.html#DarcySS12,https://doi.org/10.1007/s00779-011-0397-x +Andy Crabtree,Hybrid ecologies: understanding cooperative interaction in emerging physical-digital environments.,2008,12,Personal and Ubiquitous Computing,7,db/journals/puc/puc12.html#CrabtreeR08,https://doi.org/10.1007/s00779-007-0142-7 +Anand Ranganathan,An infrastructure for context-awareness based on first order logic.,2003,7,Personal and Ubiquitous Computing,6,db/journals/puc/puc7.html#RanganathanC03,https://doi.org/10.1007/s00779-003-0251-x +Bofeng Zhang,Research on life-cycle of user model in U-Business.,2013,17,Personal and Ubiquitous Computing,7,db/journals/puc/puc17.html#ZhangZMLZJ13,https://doi.org/10.1007/s00779-012-0580-8 +Peter J. Brown,Context-aware Retrieval: Exploring a New Environment for Information Retrieval and Information Filtering.,2001,5,Personal and Ubiquitous Computing,4,db/journals/puc/puc5.html#BrownJ01,https://doi.org/10.1007/s007790170004 +Timo Jokela,Methods for quantitative usability requirements: a case study on the development of the user interface of a mobile phone.,2006,10,Personal and Ubiquitous Computing,6,db/journals/puc/puc10.html#JokelaKPSK06,https://doi.org/10.1007/s00779-005-0050-7 +Roy C. Park,Telemedicine health service using LTE-Advanced relay antenna.,2014,18,Personal and Ubiquitous Computing,6,db/journals/puc/puc18.html#ParkJSCL14,https://doi.org/10.1007/s00779-013-0744-1 +Darpan Triboan,Semantic segmentation of real-time sensor data stream for complex activity recognition.,2017,21,Personal and Ubiquitous Computing,3,db/journals/puc/puc21.html#TriboanCCW17,https://doi.org/10.1007/s00779-017-1005-5 +Andrew F. Monk,Computers and fun.,1999,3,Personal and Ubiquitous Computing,3,db/journals/puc/puc3.html#MonkF99, +Tatiana Gossen,Find it if you can: usability case study of search engines for young users.,2013,17,Personal and Ubiquitous Computing,8,db/journals/puc/puc17.html#GossenHN13,https://doi.org/10.1007/s00779-012-0523-4 +Walter V. Sujansky,A standard-based model for the sharing of patient-generated health information with electronic health records.,2015,19,Personal and Ubiquitous Computing,1,db/journals/puc/puc19.html#SujanskyK15,https://doi.org/10.1007/s00779-014-0806-z +Ylva Gislén,Avatopia: a cross-media community for societal action.,2008,12,Personal and Ubiquitous Computing,4,db/journals/puc/puc12.html#GislenLM08,https://doi.org/10.1007/s00779-007-0152-5 +Justine Cassell,Making Space for Voice: Technologies to Support Children's Fantasy and Storytelling.,2001,5,Personal and Ubiquitous Computing,3,db/journals/puc/puc5.html#CassellR01,https://doi.org/10.1007/PL00000018 +Isaac Wiafe,Categorizing users in behavior change support systems based on cognitive dissonance.,2014,18,Personal and Ubiquitous Computing,7,db/journals/puc/puc18.html#WiafeNG14,https://doi.org/10.1007/s00779-014-0782-3 +Tetsuya Oda,Effects of population size for location-aware node placement in WMNs: evaluation by a genetic algorithm-based approach.,2014,18,Personal and Ubiquitous Computing,2,db/journals/puc/puc18.html#OdaBSBXY14,https://doi.org/10.1007/s00779-013-0643-5 +Yan Sun 0004,Toward inference attacks for k-anonymity.,2014,18,Personal and Ubiquitous Computing,8,db/journals/puc/puc18.html#SunYLX14,https://doi.org/10.1007/s00779-014-0787-y +Hannadi Sammek,Robust video communication for ubiquitous network access.,2011,15,Personal and Ubiquitous Computing,8,db/journals/puc/puc15.html#SammekFG11,https://doi.org/10.1007/s00779-011-0367-3 +Quan Z. Sheng,Practices and applications in ambient and intelligent information systems.,2017,21,Personal and Ubiquitous Computing,6,db/journals/puc/puc21.html#ShengZS17,https://doi.org/10.1007/s00779-017-1037-x +John Krumm,A survey of computational location privacy.,2009,13,Personal and Ubiquitous Computing,6,db/journals/puc/puc13.html#Krumm09,https://doi.org/10.1007/s00779-008-0212-5 +Kuai Xu,Characterizing home network traffic: an inside view.,2014,18,Personal and Ubiquitous Computing,4,db/journals/puc/puc18.html#XuWGGJ14,https://doi.org/10.1007/s00779-013-0711-x +Trish Keaton,Browsing the environment with the SNAPandTELL wearable computer system.,2005,9,Personal and Ubiquitous Computing,6,db/journals/puc/puc9.html#KeatonDS05,https://doi.org/10.1007/s00779-004-0316-5 +Jinbao Wang,Protecting query privacy with differentially private k-anonymity in location-based services.,2018,22,Personal and Ubiquitous Computing,3,db/journals/puc/puc22.html#WangCLYLG18,https://doi.org/10.1007/s00779-018-1124-7 +Harold W. Thimbleby,Obituary for a Fax.,2002,6,Personal and Ubiquitous Computing,2,db/journals/puc/puc6.html#ThimblebyJ02,https://doi.org/10.1007/s007790200014 +Armir Bujari,Using gamification to discover cultural heritage locations from geo-tagged photos.,2017,21,Personal and Ubiquitous Computing,2,db/journals/puc/puc21.html#BujariCGP17,https://doi.org/10.1007/s00779-016-0989-6 +Joel Lanir,Shared mobile displays: an exploratory study of their use in a museum setting.,2016,20,Personal and Ubiquitous Computing,4,db/journals/puc/puc20.html#LanirWKF16,https://doi.org/10.1007/s00779-016-0931-y +Paul S. Fisher,Mining intelligent solution to compensate missing data context of medical IoT devices.,2018,22,Personal and Ubiquitous Computing,1,db/journals/puc/puc22.html#FisherJBK18,https://doi.org/10.1007/s00779-017-1106-1 +Jyri Rantala,Fiber optic sensors for wearable applications.,2011,15,Personal and Ubiquitous Computing,1,db/journals/puc/puc15.html#RantalaHV11,https://doi.org/10.1007/s00779-010-0303-y +Christian Licoppe,Managing One's Availability to Telephone Communication Through Mobile Phones: A French Case Study of the Development Dynamics of Mobile Phone Use.,2001,5,Personal and Ubiquitous Computing,2,db/journals/puc/puc5.html#LicoppeH01,https://doi.org/10.1007/s007790170013 +Mikael Wiberg,PUC theme issue: material interactions.,2014,18,Personal and Ubiquitous Computing,3,db/journals/puc/puc18.html#WibergKT14,https://doi.org/10.1007/s00779-013-0683-x +Hannu Kukka,This is not classified: everyday information seeking and encountering in smart urban spaces.,2013,17,Personal and Ubiquitous Computing,1,db/journals/puc/puc17.html#KukkaKOYSJH13,https://doi.org/10.1007/s00779-011-0474-1 +Ramón Hervás,Awareness marks: adaptive services through user interactions with augmented objects.,2011,15,Personal and Ubiquitous Computing,4,db/journals/puc/puc15.html#HervasBF11,https://doi.org/10.1007/s00779-010-0363-z +David M. Frohlich,Rediscovery of forgotten images in domestic photo collections.,2013,17,Personal and Ubiquitous Computing,4,db/journals/puc/puc17.html#FrohlichWK13,https://doi.org/10.1007/s00779-012-0612-4 +Stephane G. Belmon,Mobile Agents and Intellectual Property Protection.,1998,2,Personal and Ubiquitous Computing,2,db/journals/puc/puc2.html#BelmonY98,https://doi.org/10.1007/BF01324938 +Jessica R. Cauchard,Steerable projection: exploring alignment in interactive mobile displays.,2012,16,Personal and Ubiquitous Computing,1,db/journals/puc/puc16.html#CauchardFHS12,https://doi.org/10.1007/s00779-011-0375-3 +Waralak V. Siricharoen,Question matrix method according to divided dimensions of infographics evaluation.,2017,21,Personal and Ubiquitous Computing,2,db/journals/puc/puc21.html#SiricharoenV17,https://doi.org/10.1007/s00779-016-0988-7 +Li Feng,A novel contention-on-demand design for WiFi hotspots.,2016,20,Personal and Ubiquitous Computing,5,db/journals/puc/puc20.html#FengYCA16,https://doi.org/10.1007/s00779-016-0942-8 +David Frohlich,short paper: The Memory Box.,2000,4,Personal and Ubiquitous Computing,4,db/journals/puc/puc4.html#FrohlichM00,https://doi.org/10.1007/BF02391566 +Lin Yao,Protecting the sink location privacy in wireless sensor networks.,2013,17,Personal and Ubiquitous Computing,5,db/journals/puc/puc17.html#YaoKSW13,https://doi.org/10.1007/s00779-012-0539-9 +Florian Echtler,Supporting casual interactions between board games on public tabletop displays and mobile devices.,2009,13,Personal and Ubiquitous Computing,8,db/journals/puc/puc13.html#EchtlerNDK09,https://doi.org/10.1007/s00779-009-0246-3 +Theodoros N. Arvanitis,Human factors and qualitative pedagogical evaluation of a mobile augmented reality system for science education used by learners with physical disabilities.,2009,13,Personal and Ubiquitous Computing,3,db/journals/puc/puc13.html#ArvanitisPKSSGG09,https://doi.org/10.1007/s00779-007-0187-7 +Haliyana Khalid,The experience of photologging: global mechanisms and local interactions.,2010,14,Personal and Ubiquitous Computing,3,db/journals/puc/puc14.html#KhalidD10,https://doi.org/10.1007/s00779-009-0261-4 +Bin Guo,An introduction to the special issue on cross-community mining.,2014,18,Personal and Ubiquitous Computing,2,db/journals/puc/puc18.html#GuoYP14,https://doi.org/10.1007/s00779-013-0653-3 +Bojan Blazica,A personal perspective on photowork: implicit human-computer interaction for photo collection management.,2013,17,Personal and Ubiquitous Computing,8,db/journals/puc/puc17.html#BlazicaVM13,https://doi.org/10.1007/s00779-013-0650-6 +Satoshi Sakurai,A visibility control system for collaborative digital table.,2009,13,Personal and Ubiquitous Computing,8,db/journals/puc/puc13.html#SakuraiKSK09,https://doi.org/10.1007/s00779-009-0243-6 +José María Conejero,A model-driven approach for reusing tests in smart home systems.,2011,15,Personal and Ubiquitous Computing,4,db/journals/puc/puc15.html#ConejeroCRHS11,https://doi.org/10.1007/s00779-010-0352-2 +Hyoseok Yoon,Social itinerary recommendation from user-generated digital trails.,2012,16,Personal and Ubiquitous Computing,5,db/journals/puc/puc16.html#YoonZXW12,https://doi.org/10.1007/s00779-011-0419-8 +Iris Soute,Head Up Games: combining the best of both worlds by merging traditional and digital play.,2010,14,Personal and Ubiquitous Computing,5,db/journals/puc/puc14.html#SouteMM10,https://doi.org/10.1007/s00779-009-0265-0 +Lynne Hamill,The Introduction of New Technology into the Household.,2000,4,Personal and Ubiquitous Computing,1,db/journals/puc/puc4.html#Hamill00,https://doi.org/10.1007/BF01613599 +Simon Holland,AudioGPS: Spatial Audio Navigation with a Minimal Attention Interface.,2002,6,Personal and Ubiquitous Computing,4,db/journals/puc/puc6.html#HollandMG02,https://doi.org/10.1007/s007790200025 +Rita Orji,LunchTime: a slow-casual game for long-term dietary behavior change.,2013,17,Personal and Ubiquitous Computing,6,db/journals/puc/puc17.html#OrjiVM13,https://doi.org/10.1007/s00779-012-0590-6 +Debora Jeske,Exploring the relationship between impulsivity and decision-making on mobile devices.,2016,20,Personal and Ubiquitous Computing,4,db/journals/puc/puc20.html#JeskeBC16,https://doi.org/10.1007/s00779-016-0938-4 +Laura Lentini,Space and places: when interacting with and in physical space becomes a meaningful experience.,2010,14,Personal and Ubiquitous Computing,5,db/journals/puc/puc14.html#LentiniD10,https://doi.org/10.1007/s00779-009-0267-y +Claudio S. Pinhanez,Interval scripts: a programming paradigm for interactive environments and agents.,2003,7,Personal and Ubiquitous Computing,1,db/journals/puc/puc7.html#PinhanezB03,https://doi.org/10.1007/s00779-002-0209-4 +Jun Rekimoto,SyncTap: synchronous user operation for spontaneous network connection.,2004,8,Personal and Ubiquitous Computing,2,db/journals/puc/puc8.html#Rekimoto04,https://doi.org/10.1007/s00779-004-0262-2 +Niina Mallat,An empirical investigation of mobile ticketing service adoption in public transportation.,2008,12,Personal and Ubiquitous Computing,1,db/journals/puc/puc12.html#MallatRTO08,https://doi.org/10.1007/s00779-006-0126-z +Yong Lee 0002,Performance analysis of authentication and key distribution scheme for mobile multi-hop relay in IEEE 802.16j.,2012,16,Personal and Ubiquitous Computing,6,db/journals/puc/puc16.html#LeeLKJ12,https://doi.org/10.1007/s00779-011-0427-8 +Weipeng Jing,RPR: recommendation for passengers by roads based on cloud computing and taxis traces data.,2016,20,Personal and Ubiquitous Computing,3,db/journals/puc/puc20.html#JingHSMH16,https://doi.org/10.1007/s00779-016-0925-9 +Jia Shao,Evaluation of missing value imputation methods for wireless soil datasets.,2017,21,Personal and Ubiquitous Computing,1,db/journals/puc/puc21.html#ShaoMS17,https://doi.org/10.1007/s00779-016-0978-9 +Nagendra Bhargava Bharatula,Functionality-power-packaging considerations in context aware wearable systems.,2008,12,Personal and Ubiquitous Computing,2,db/journals/puc/puc12.html#BharatulaLT08,https://doi.org/10.1007/s00779-006-0106-3 +Steve Howard,Pervasive computing in the domestic space.,2007,11,Personal and Ubiquitous Computing,5,db/journals/puc/puc11.html#HowardKS07,https://doi.org/10.1007/s00779-006-0081-8 +Kher Hui Ng,The iterative development of a tangible pin-board to symmetrically link physical and digital documents.,2007,11,Personal and Ubiquitous Computing,3,db/journals/puc/puc11.html#NgKB07,https://doi.org/10.1007/s00779-006-0065-8 +Sarah Spiekermann,An update on privacy in ubiquitous computing.,2009,13,Personal and Ubiquitous Computing,6,db/journals/puc/puc13.html#SpiekermannL09,https://doi.org/10.1007/s00779-008-0210-7 +Daniel Gatica-Perez,Theme issue from ISWC 2013.,2015,19,Personal and Ubiquitous Computing,1,db/journals/puc/puc19.html#Gatica-PerezRF15,https://doi.org/10.1007/s00779-014-0814-z +Oliver Schmid,Real-time collaboration through web applications: an introduction to the Toolkit for Web-based Interactive Collaborative Environments (TWICE).,2014,18,Personal and Ubiquitous Computing,5,db/journals/puc/puc18.html#SchmidMH14,https://doi.org/10.1007/s00779-013-0729-0 +Lucia Terrenghi,Kitchen stories: sharing recipes with the Living Cookbook.,2007,11,Personal and Ubiquitous Computing,5,db/journals/puc/puc11.html#TerrenghiHB07,https://doi.org/10.1007/s00779-006-0079-2 +Mudassar Ahmad Mughal,Context-dependent software solutions to handle video synchronization and delay in collaborative live mobile video production.,2014,18,Personal and Ubiquitous Computing,3,db/journals/puc/puc18.html#MughalJ14,https://doi.org/10.1007/s00779-013-0701-z +Andrés Muñoz,Design and evaluation of an ambient assisted living system based on an argumentative multi-agent system.,2011,15,Personal and Ubiquitous Computing,4,db/journals/puc/puc15.html#MunozAVB11,https://doi.org/10.1007/s00779-010-0361-1 +Sen H. Hirano,uSmell: exploring the potential for gas sensors to classify odors in ubicomp applications relative to airflow and distance.,2015,19,Personal and Ubiquitous Computing,1,db/journals/puc/puc19.html#HiranoHT15,https://doi.org/10.1007/s00779-014-0770-7 +Andrea Gaggioli,A mobile data collection platform for mental health research.,2013,17,Personal and Ubiquitous Computing,2,db/journals/puc/puc17.html#GaggioliPTBCCR13,https://doi.org/10.1007/s00779-011-0465-2 +Choon Seong Leem,Taxonomy of ubiquitous computing service for city development.,2013,17,Personal and Ubiquitous Computing,7,db/journals/puc/puc17.html#LeemK13,https://doi.org/10.1007/s00779-012-0583-5 +Joseph K. Liu,Erratum to: Special issue on security and privacy for smart cities.,2017,21,Personal and Ubiquitous Computing,5,db/journals/puc/puc21.html#LiuCHA17a,https://doi.org/10.1007/s00779-017-1062-9 +Gérard Lachapelle,Pedestrian navigation with high sensitivity GPS receivers and MEMS.,2007,11,Personal and Ubiquitous Computing,6,db/journals/puc/puc11.html#Lachapelle07,https://doi.org/10.1007/s00779-006-0094-3 +Rui S. Moreira,A behavioral reflective architecture for managing the integration of personal ubicomp systems: automatic SNMP-based discovery and management of behavior context in smart-spaces.,2016,20,Personal and Ubiquitous Computing,2,db/journals/puc/puc20.html#MoreiraMMS16,https://doi.org/10.1007/s00779-016-0901-4 +Osama O. Barzaiq,Adapting the mobile phone for task efficiency: the case of predicting outgoing calls using frequency and regularity of historical calls.,2011,15,Personal and Ubiquitous Computing,8,db/journals/puc/puc15.html#BarzaiqL11,https://doi.org/10.1007/s00779-011-0401-5 +Morgan Ames,Requirements for mobile photoware.,2010,14,Personal and Ubiquitous Computing,2,db/journals/puc/puc14.html#AmesENSH10,https://doi.org/10.1007/s00779-009-0237-4 +Anne Ekholm,Editorial: The Design of In-car Communication and Information Applications.,2002,6,Personal and Ubiquitous Computing,3,db/journals/puc/puc6.html#Ekholm02,https://doi.org/10.1007/s007790200015 +Ilias Maglogiannis,Face detection and recognition of natural human emotion using Markov random fields.,2009,13,Personal and Ubiquitous Computing,1,db/journals/puc/puc13.html#MaglogiannisVA09,https://doi.org/10.1007/s00779-007-0165-0 +Francesco Piccialli,Cultural heritage and new technologies: trends and challenges.,2017,21,Personal and Ubiquitous Computing,2,db/journals/puc/puc21.html#PiccialliC17,https://doi.org/10.1007/s00779-016-0984-y +Hao Wu 0010,On improving aggregate recommendation diversity and novelty in folksonomy-based social systems.,2014,18,Personal and Ubiquitous Computing,8,db/journals/puc/puc18.html#WuCHLP14,https://doi.org/10.1007/s00779-014-0785-0 +Mikael Wiberg,Methodology for materiality: interaction design research through a material lens.,2014,18,Personal and Ubiquitous Computing,3,db/journals/puc/puc18.html#Wiberg14,https://doi.org/10.1007/s00779-013-0686-7 +Harri Oinas-Kukkonen,A foundation for the study of behavior change support systems.,2013,17,Personal and Ubiquitous Computing,6,db/journals/puc/puc17.html#Oinas-Kukkonen13,https://doi.org/10.1007/s00779-012-0591-5 +Bingchuan Yuan,Context-aware hybrid reasoning framework for pervasive healthcare.,2014,18,Personal and Ubiquitous Computing,4,db/journals/puc/puc18.html#YuanH14,https://doi.org/10.1007/s00779-013-0696-5 +Vassilis Kostakos,Towards proximity-based passenger sensing on public transport buses.,2013,17,Personal and Ubiquitous Computing,8,db/journals/puc/puc17.html#KostakosCM13,https://doi.org/10.1007/s00779-013-0652-4 +Esteban Egea-López,A wireless sensor networks MAC protocol for real-time applications.,2008,12,Personal and Ubiquitous Computing,2,db/journals/puc/puc12.html#Egea-LopezVMGPD08,https://doi.org/10.1007/s00779-006-0111-6 +Sangseok Yoon,PASU: A personal area situation understanding system using wireless camera sensor networks.,2013,17,Personal and Ubiquitous Computing,4,db/journals/puc/puc17.html#YoonOLO13,https://doi.org/10.1007/s00779-012-0611-5 +Angeles Muñoz Civantos,Using mobile media creation to structure museum interpretation with professional vision.,2016,20,Personal and Ubiquitous Computing,1,db/journals/puc/puc20.html#CivantosBCAL16,https://doi.org/10.1007/s00779-015-0895-3 +Binod Vaidya,Robust and secure routing scheme for wireless multihop network.,2009,13,Personal and Ubiquitous Computing,7,db/journals/puc/puc13.html#VaidyaYCH09,https://doi.org/10.1007/s00779-009-0220-0 +Brian Keith Smith,Integrating glucometers and digital photography as experience capture tools to enhance patient understanding and communication of diabetes self-management practices.,2007,11,Personal and Ubiquitous Computing,4,db/journals/puc/puc11.html#SmithFAS07,https://doi.org/10.1007/s00779-006-0087-2 +Hye Jung Choi,Effects of wheelchair-based rehabilitation on the physical functions and health perception of stroke patients.,2013,17,Personal and Ubiquitous Computing,7,db/journals/puc/puc17.html#ChoiKPK13,https://doi.org/10.1007/s00779-012-0571-9 +David Pinelle,Evaluating teamwork support in tabletop groupware applications using collaboration usability analysis.,2008,12,Personal and Ubiquitous Computing,3,db/journals/puc/puc12.html#PinelleG08,https://doi.org/10.1007/s00779-007-0145-4 +Sharon Springel,The New Media Paradigm - Users as Creators of Content.,1999,3,Personal and Ubiquitous Computing,3,db/journals/puc/puc3.html#Springel99,https://doi.org/10.1007/BF01305341 +Juan-Pablo García-Vázquez,Supporting the strategies to improve elders' medication compliance by providing ambient aids.,2011,15,Personal and Ubiquitous Computing,4,db/journals/puc/puc15.html#Garcia-VazquezRAB11,https://doi.org/10.1007/s00779-010-0362-0 +John C. McCarthy,The experience of enchantment in human-computer interaction.,2006,10,Personal and Ubiquitous Computing,6,db/journals/puc/puc10.html#McCarthyWWD06,https://doi.org/10.1007/s00779-005-0055-2 +Cheonshik Kim,Self-embedding fragile watermarking scheme to restoration of a tampered image using AMBTC.,2018,22,Personal and Ubiquitous Computing,1,db/journals/puc/puc22.html#KimSY18,https://doi.org/10.1007/s00779-017-1061-x +Weishan Zhang,A survey on decision making for task migration in mobile cloud environments.,2016,20,Personal and Ubiquitous Computing,3,db/journals/puc/puc20.html#ZhangTXCLLY16,https://doi.org/10.1007/s00779-016-0915-y +Muhammad Younas 0001,A new model for context-aware transactions in mobile services.,2011,15,Personal and Ubiquitous Computing,8,db/journals/puc/puc15.html#YounasM11,https://doi.org/10.1007/s00779-011-0369-1 +Gil Weinberg,The Musical Playpen - An Immersive Digital Musical Instrument.,1999,3,Personal and Ubiquitous Computing,3,db/journals/puc/puc3.html#Weinberg99,https://doi.org/10.1007/BF01305338 +Marcela D. Rodríguez,CAMMInA: a mobile ambient information system to motivate elders to exercise.,2013,17,Personal and Ubiquitous Computing,6,db/journals/puc/puc17.html#RodriguezRMN13,https://doi.org/10.1007/s00779-012-0561-y +Erik Buchmann,Re-identification of Smart Meter data.,2013,17,Personal and Ubiquitous Computing,4,db/journals/puc/puc17.html#BuchmannBBK13,https://doi.org/10.1007/s00779-012-0513-6 +Andrew L. Kun,Interactions between human-human multi-threaded dialogues and driving.,2013,17,Personal and Ubiquitous Computing,5,db/journals/puc/puc17.html#KunSH13,https://doi.org/10.1007/s00779-012-0518-1 +Lirong Qiu,Implementing RSA for sensor nodes in smart cities.,2017,21,Personal and Ubiquitous Computing,5,db/journals/puc/puc21.html#QiuLPS17,https://doi.org/10.1007/s00779-017-1044-y +Paul Lefrere,Activity-based scenarios for and approaches to ubiquitous e-Learning.,2009,13,Personal and Ubiquitous Computing,3,db/journals/puc/puc13.html#Lefrere09,https://doi.org/10.1007/s00779-007-0188-6 +Timothy S. McNerney,From turtles to Tangible Programming Bricks: explorations in physical language design.,2004,8,Personal and Ubiquitous Computing,5,db/journals/puc/puc8.html#McNerney04,https://doi.org/10.1007/s00779-004-0295-6 +Arto Lehtiniemi,Design and evaluation of mood pictures in social music discovery service.,2016,20,Personal and Ubiquitous Computing,1,db/journals/puc/puc20.html#LehtiniemiOT16,https://doi.org/10.1007/s00779-016-0900-5 +Takuya Maekawa,Training data selection with user's physical characteristics data for acceleration-based activity modeling.,2013,17,Personal and Ubiquitous Computing,3,db/journals/puc/puc17.html#MaekawaW13,https://doi.org/10.1007/s00779-011-0491-0 +Konstantinos Moustakas,3D content-based search using sketches.,2009,13,Personal and Ubiquitous Computing,1,db/journals/puc/puc13.html#MoustakasNTCBV09,https://doi.org/10.1007/s00779-007-0166-z +Mikael Goldstein,The Media Equation Does Not Always Apply: People are not Polite Towards Small Computers.,2002,6,Personal and Ubiquitous Computing,2,db/journals/puc/puc6.html#GoldsteinAW02,https://doi.org/10.1007/s007790200008 +Jörg Roth,Using Handheld Devices in Synchronous Collaborative Scenarios.,2001,5,Personal and Ubiquitous Computing,4,db/journals/puc/puc5.html#RothU01,https://doi.org/10.1007/s007790170003 +Reza Rawassizadeh,UbiqLog: a generic mobile phone-based life-log framework.,2013,17,Personal and Ubiquitous Computing,4,db/journals/puc/puc17.html#RawassizadehTWT13,https://doi.org/10.1007/s00779-012-0511-8 +Orit Shaer,Designing reality-based interfaces for experiential bio-design.,2014,18,Personal and Ubiquitous Computing,6,db/journals/puc/puc18.html#ShaerVLLCXHBDK14,https://doi.org/10.1007/s00779-013-0752-1 +Murrey G. Olmsted,What consumers want in personal health applications: findings from Project HealthDesign.,2015,19,Personal and Ubiquitous Computing,1,db/journals/puc/puc19.html#OlmstedMZ15,https://doi.org/10.1007/s00779-014-0811-2 +Kun Li,Personalized multi-modality image management and search for mobile devices.,2013,17,Personal and Ubiquitous Computing,8,db/journals/puc/puc17.html#LiZLSD13,https://doi.org/10.1007/s00779-013-0660-4 +Jay Schneider,Disseminating Trust Information in Wearable Communities.,2000,4,Personal and Ubiquitous Computing,4,db/journals/puc/puc4.html#SchneiderKJFS00,https://doi.org/10.1007/BF02391568 +Thomas Ludwig 0005,"Work or leisure? Designing a user-centered approach for researching activity ""in the wild"".",2016,20,Personal and Ubiquitous Computing,4,db/journals/puc/puc20.html#0005DPR16,https://doi.org/10.1007/s00779-016-0935-7 +Miriam Konkel,Tagaboo: a collaborative children's game based upon wearable RFID technology.,2004,8,Personal and Ubiquitous Computing,5,db/journals/puc/puc8.html#KonkelLUH04,https://doi.org/10.1007/s00779-004-0302-y +Peter J. Thomas,Editoral.,2000,4,Personal and Ubiquitous Computing,4,db/journals/puc/puc4.html#ThomasG00,https://doi.org/10.1007/BF02391556 +Giulio Iacucci,Computational support to record and re-experience visits.,2004,8,Personal and Ubiquitous Computing,2,db/journals/puc/puc8.html#IacucciKP04,https://doi.org/10.1007/s00779-004-0261-3 +Dzmitry Aliakseyeu,Users' quest for an optimized representation of a multi-device space.,2009,13,Personal and Ubiquitous Computing,8,db/journals/puc/puc13.html#AliakseyeuLM09,https://doi.org/10.1007/s00779-009-0245-4 +Youngsoo Kim,An efficient scheme of target classification and information fusion in wireless sensor networks.,2009,13,Personal and Ubiquitous Computing,7,db/journals/puc/puc13.html#KimJKL09,https://doi.org/10.1007/s00779-009-0225-8 +Marije Kanis,Making mundane pleasures visible: mediating daily likings with lightweight technology.,2010,14,Personal and Ubiquitous Computing,3,db/journals/puc/puc14.html#KanisB10,https://doi.org/10.1007/s00779-009-0256-1 +Keonsoo Lee,Social relation-based dynamic team organization by context-aware matchmaking.,2013,17,Personal and Ubiquitous Computing,8,db/journals/puc/puc17.html#LeeKRC13,https://doi.org/10.1007/s00779-012-0608-0 +Ivo Malý,An evaluation tool for research of user behavior in a realistic mobile environment.,2013,17,Personal and Ubiquitous Computing,1,db/journals/puc/puc17.html#MalyMVFS13,https://doi.org/10.1007/s00779-011-0475-0 +Leah Buechley,Special issue on material computing.,2011,15,Personal and Ubiquitous Computing,2,db/journals/puc/puc15.html#BuechleyC11,https://doi.org/10.1007/s00779-010-0312-x +Vassilis Kostakos,Understanding and measuring the urban pervasive infrastructure.,2009,13,Personal and Ubiquitous Computing,5,db/journals/puc/puc13.html#KostakosNYOKC09,https://doi.org/10.1007/s00779-008-0196-1 +Koen van Boerdonk,Contact through canvas: an entertaining encounter.,2009,13,Personal and Ubiquitous Computing,8,db/journals/puc/puc13.html#BoerdonkTKH09,https://doi.org/10.1007/s00779-009-0240-9 +Xin Hong,Segmenting sensor data for activity monitoring in smart environments.,2013,17,Personal and Ubiquitous Computing,3,db/journals/puc/puc17.html#HongN13,https://doi.org/10.1007/s00779-012-0507-4 +Xiaohui Cui,Chinese social media analysis for disease surveillance.,2015,19,Personal and Ubiquitous Computing,7,db/journals/puc/puc19.html#CuiYWHZLJL15,https://doi.org/10.1007/s00779-015-0877-5 +Tim Walton,Exploring object-based content adaptation for mobile audio.,2018,22,Personal and Ubiquitous Computing,4,db/journals/puc/puc22.html#WaltonEKM18,https://doi.org/10.1007/s00779-018-1125-6 +Judy Chen,From interaction to performance with public displays.,2014,18,Personal and Ubiquitous Computing,7,db/journals/puc/puc18.html#ChenDHM14,https://doi.org/10.1007/s00779-014-0764-5 +Nathan Eagle,Reality mining: sensing complex social systems.,2006,10,Personal and Ubiquitous Computing,4,db/journals/puc/puc10.html#EagleP06,https://doi.org/10.1007/s00779-005-0046-3 +Markus Bylund,Service Contracts: Coordination of User-Adaptation in Open Service Architectures.,1998,2,Personal and Ubiquitous Computing,3,db/journals/puc/puc2.html#BylundW98,https://doi.org/10.1007/BF01321175 +Saskia Bakker,Embodied metaphors in tangible interaction design.,2012,16,Personal and Ubiquitous Computing,4,db/journals/puc/puc16.html#BakkerAH12,https://doi.org/10.1007/s00779-011-0410-4 +Paul Dourish,What we talk about when we talk about context.,2004,8,Personal and Ubiquitous Computing,1,db/journals/puc/puc8.html#Dourish04,https://doi.org/10.1007/s00779-003-0253-8 +Elena Vildjiounaite,Unobtrusive stress detection on the basis of smartphone usage data.,2018,22,Personal and Ubiquitous Computing,4,db/journals/puc/puc22.html#VildjiounaiteKK18,https://doi.org/10.1007/s00779-017-1108-z +Leon Barnard,Capturing the effects of context on human performance in mobile computing systems.,2007,11,Personal and Ubiquitous Computing,2,db/journals/puc/puc11.html#BarnardYJS07,https://doi.org/10.1007/s00779-006-0063-x +Maytham Safar,Optimized skyline queries on road networks using nearest neighbors.,2011,15,Personal and Ubiquitous Computing,8,db/journals/puc/puc15.html#SafarET11,https://doi.org/10.1007/s00779-011-0371-7 +Antti Oulasvirta,Embodied interaction with a 3D versus 2D mobile map.,2009,13,Personal and Ubiquitous Computing,4,db/journals/puc/puc13.html#OulasvirtaEN09,https://doi.org/10.1007/s00779-008-0209-0 +Vassilis Kostakos,The challenges and opportunities of designing pervasive systems for deep-space colonies.,2011,15,Personal and Ubiquitous Computing,5,db/journals/puc/puc15.html#Kostakos11,https://doi.org/10.1007/s00779-010-0317-5 +Lachlan Urquhart,Realising the right to data portability for the domestic Internet of things.,2018,22,Personal and Ubiquitous Computing,2,db/journals/puc/puc22.html#UrquhartSM18,https://doi.org/10.1007/s00779-017-1069-2 +Doowon Kim,fFTP: a fast file transfer protocol for home N-screen platform.,2018,22,Personal and Ubiquitous Computing,1,db/journals/puc/puc22.html#KimBFK18,https://doi.org/10.1007/s00779-017-1082-5 +Xiling Luo,Privacy-preserving identity-based file sharing in smart city.,2017,21,Personal and Ubiquitous Computing,5,db/journals/puc/puc21.html#LuoRHWL17,https://doi.org/10.1007/s00779-017-1051-z +Inmaculada Ayala,Self-configuring agents for ambient assisted living applications.,2013,17,Personal and Ubiquitous Computing,6,db/journals/puc/puc17.html#AyalaAF13,https://doi.org/10.1007/s00779-012-0555-9 +Irene Lia Schlacht,Space extreme design: conclusion and acknowledgements.,2011,15,Personal and Ubiquitous Computing,5,db/journals/puc/puc15.html#Schlacht11a,https://doi.org/10.1007/s00779-010-0321-9 +Ion Constas,Interface-Me: Pursuing Sociability Through Personal Devices.,2001,5,Personal and Ubiquitous Computing,3,db/journals/puc/puc5.html#ConstasP01,https://doi.org/10.1007/s007790170009 +Michael Benisch,Capturing location-privacy preferences: quantifying accuracy and user-burden tradeoffs.,2011,15,Personal and Ubiquitous Computing,7,db/journals/puc/puc15.html#BenischKSC11,https://doi.org/10.1007/s00779-010-0346-0 +Bert Arnrich,Mental health and the impact of ubiquitous technologies.,2013,17,Personal and Ubiquitous Computing,2,db/journals/puc/puc17.html#ArnrichOB13,https://doi.org/10.1007/s00779-011-0464-3 +Alison Burrows,Empirically derived user attributes for the design of home healthcare technologies.,2015,19,Personal and Ubiquitous Computing,8,db/journals/puc/puc19.html#BurrowsGC15,https://doi.org/10.1007/s00779-015-0889-1 +Jörg Roth,Patterns of Mobile Interaction.,2002,6,Personal and Ubiquitous Computing,4,db/journals/puc/puc6.html#Roth02,https://doi.org/10.1007/s007790200029 +Gerhard Schall,Smart Vidente: advances in mobile augmented reality for interactive visualization of underground infrastructure.,2013,17,Personal and Ubiquitous Computing,7,db/journals/puc/puc17.html#SchallZR13,https://doi.org/10.1007/s00779-012-0599-x +Yu-Chun Huang,Future home design: an emotional communication channel approach to smart space.,2013,17,Personal and Ubiquitous Computing,6,db/journals/puc/puc17.html#HuangWL13,https://doi.org/10.1007/s00779-012-0635-x +Kaska Porayska-Pomsta,Developing technology for autism: an interdisciplinary approach.,2012,16,Personal and Ubiquitous Computing,2,db/journals/puc/puc16.html#Porayska-PomstaFPRSMFAWBAKCWGGL12,https://doi.org/10.1007/s00779-011-0384-2 +Youngjung Suh,Enhancing and evaluating users' social experience with a mobile phone guide applied to cultural heritage.,2011,15,Personal and Ubiquitous Computing,6,db/journals/puc/puc15.html#SuhSWDM11,https://doi.org/10.1007/s00779-010-0344-2 +Yu Tang,mDHT: a multi-level-indexed DHT algorithm to extra-large-scale data retrieval on HDFS/Hadoop architecture.,2014,18,Personal and Ubiquitous Computing,8,db/journals/puc/puc18.html#TangFWY14,https://doi.org/10.1007/s00779-014-0784-1 +Liz Falconer,Experiencing sense of place in virtual and physical Avebury.,2017,21,Personal and Ubiquitous Computing,6,db/journals/puc/puc21.html#Falconer17,https://doi.org/10.1007/s00779-017-1064-7 +Shiuan-Tung Chen,Personal video delivery with rapid Raptor code decoder.,2016,20,Personal and Ubiquitous Computing,6,db/journals/puc/puc20.html#ChenCCSS16,https://doi.org/10.1007/s00779-016-0964-2 +Roelof Anne Jelle de Vries,A word of advice: how to tailor motivational text messages based on behavior change theory to personality and gender.,2017,21,Personal and Ubiquitous Computing,4,db/journals/puc/puc21.html#VriesTZLE17,https://doi.org/10.1007/s00779-017-1025-1 +Jaakko T. Lehikoinen,Understanding privacy regulation in ubicomp interactions.,2008,12,Personal and Ubiquitous Computing,8,db/journals/puc/puc12.html#LehikoinenLH08,https://doi.org/10.1007/s00779-007-0163-2 +Ludovico Boratto,An e-coaching ecosystem: design and effectiveness analysis of the engagement of remote coaching on athletes.,2017,21,Personal and Ubiquitous Computing,4,db/journals/puc/puc21.html#BorattoCMP17,https://doi.org/10.1007/s00779-017-1026-0 +Fadi Chehimi,Evolution of 3D mobile games development.,2008,12,Personal and Ubiquitous Computing,1,db/journals/puc/puc12.html#ChehimiCE08,https://doi.org/10.1007/s00779-006-0129-9 +Antonio J. Jara,Mobile digcovery: discovering and interacting with the world through the Internet of things.,2014,18,Personal and Ubiquitous Computing,2,db/journals/puc/puc18.html#JaraLFCZG14,https://doi.org/10.1007/s00779-013-0648-0 +Jennifer Waycott,Students' experiences with PDAs for reading course materials.,2003,7,Personal and Ubiquitous Computing,1,db/journals/puc/puc7.html#WaycottK03,https://doi.org/10.1007/s00779-002-0211-x +Jacques M. B. Terken,Multimodal support for social dynamics in co-located meetings.,2010,14,Personal and Ubiquitous Computing,8,db/journals/puc/puc14.html#TerkenS10,https://doi.org/10.1007/s00779-010-0284-x +Yun Liu 0001,k-Nearest neighbors tracking in wireless sensor networks with coverage holes.,2016,20,Personal and Ubiquitous Computing,3,db/journals/puc/puc20.html#LiuFZ16,https://doi.org/10.1007/s00779-016-0918-8 +Tom Djajadiningrat,Easy doesn't do it: skill and expression in tangible aesthetics.,2007,11,Personal and Ubiquitous Computing,8,db/journals/puc/puc11.html#DjajadiningratMS07,https://doi.org/10.1007/s00779-006-0137-9 +Shaowei Chu,Design of a motion-based gestural menu-selection interface for a self-portrait camera.,2015,19,Personal and Ubiquitous Computing,2,db/journals/puc/puc19.html#ChuT15,https://doi.org/10.1007/s00779-014-0776-1 +Petra Fagerberg,eMoto: emotionally engaging interaction.,2004,8,Personal and Ubiquitous Computing,5,db/journals/puc/puc8.html#FagerbergSH04,https://doi.org/10.1007/s00779-004-0301-z +Fawzi Daoud,Knowledgeable CyberBrokers for Electronic Commerce.,1998,2,Personal and Ubiquitous Computing,3,db/journals/puc/puc2.html#Daoud98,https://doi.org/10.1007/BF01321176 +Mark A. Neerincx,Situated cognitive engineering for crew support in space.,2011,15,Personal and Ubiquitous Computing,5,db/journals/puc/puc15.html#Neerincx11,https://doi.org/10.1007/s00779-010-0319-3 +Zhiwei Wang,An ID-based online/offline signature scheme without random oracles for wireless sensor networks.,2013,17,Personal and Ubiquitous Computing,5,db/journals/puc/puc17.html#WangC13,https://doi.org/10.1007/s00779-012-0534-1 +Dadong Wan,Magic Wardrobe: Situated Shopping from your own Bedroom.,2000,4,Personal and Ubiquitous Computing,4,db/journals/puc/puc4.html#Wan00,https://doi.org/10.1007/BF02391565 +Ernö Kovacs,Integrating Mobile Agents into The Mobile Middleware.,1998,2,Personal and Ubiquitous Computing,2,db/journals/puc/puc2.html#KovacsRR98,https://doi.org/10.1007/BF01324936 +Anthony Savidis,Distributed interface bits: dynamic dialogue composition from ambient computing resources.,2005,9,Personal and Ubiquitous Computing,3,db/journals/puc/puc9.html#SavidisS05,https://doi.org/10.1007/s00779-004-0327-2 +Christian Sandor,A rapid prototyping software infrastructure for user interfaces in ubiquitous augmented reality.,2005,9,Personal and Ubiquitous Computing,3,db/journals/puc/puc9.html#SandorK05,https://doi.org/10.1007/s00779-004-0328-1 +David Dearman,Mobile map interactions during a rendezvous: exploring the implications of automation.,2010,14,Personal and Ubiquitous Computing,1,db/journals/puc/puc14.html#DearmanIT10,https://doi.org/10.1007/s00779-008-0195-2 +Antonio Si,Adaptive Caching and Refreshment in Mobile Databases.,1997,1,Personal and Ubiquitous Computing,3,db/journals/puc/puc1.html#SiL97,https://doi.org/10.1007/BF01299650 +Yu Wei,Performance monitoring and evaluation in dance teaching with mobile sensing technology.,2014,18,Personal and Ubiquitous Computing,8,db/journals/puc/puc18.html#WeiYBWS14,https://doi.org/10.1007/s00779-014-0799-7 +Zhao Xiao,Visual analysis of risks in peer-to-peer lending market.,2018,22,Personal and Ubiquitous Computing,4,db/journals/puc/puc22.html#XiaoLZ18,https://doi.org/10.1007/s00779-018-1165-y +Adam Wójtowicz,Model for adaptable context-based biometric authentication for mobile devices.,2016,20,Personal and Ubiquitous Computing,2,db/journals/puc/puc20.html#WojtowiczJ16,https://doi.org/10.1007/s00779-016-0905-0 +Anton Umek,Validation of smartphone gyroscopes for mobile biofeedback applications.,2016,20,Personal and Ubiquitous Computing,5,db/journals/puc/puc20.html#UmekK16,https://doi.org/10.1007/s00779-016-0946-4 +Steven Feiner,A Touring Machine: Prototyping 3D Augmented Reality Systems for Exploring the Urban Environment.,1997,1,Personal and Ubiquitous Computing,3,db/journals/puc/puc1.html#FeinerMHW97,https://doi.org/10.1007/BF01682023 +Helen Cole,Designing mobile technologies to support co-present collaboration.,2003,7,Personal and Ubiquitous Computing,6,db/journals/puc/puc7.html#ColeS03,https://doi.org/10.1007/s00779-003-0249-4 +James F. Knight,Uses of accelerometer data collected from a wearable system.,2007,11,Personal and Ubiquitous Computing,2,db/journals/puc/puc11.html#KnightBABSA07,https://doi.org/10.1007/s00779-006-0070-y +Peng-Cheng Huang,Efficient access control system based on aesthetic QR code.,2018,22,Personal and Ubiquitous Computing,1,db/journals/puc/puc22.html#HuangCLL18,https://doi.org/10.1007/s00779-017-1089-y +Kai He,Anonymous identity-based broadcast encryption technology for smart city information system.,2017,21,Personal and Ubiquitous Computing,5,db/journals/puc/puc21.html#HeWMY17,https://doi.org/10.1007/s00779-017-1053-x +Roberto De Virgilio,AML: a modeling language for designing adaptive web applications.,2012,16,Personal and Ubiquitous Computing,5,db/journals/puc/puc16.html#Virgilio12,https://doi.org/10.1007/s00779-011-0418-9 +Ilias Maglogiannis,Pervasive technologies for assistive environments: special issue of PETRA 2008 conference.,2010,14,Personal and Ubiquitous Computing,6,db/journals/puc/puc14.html#MaglogiannisMPB10,https://doi.org/10.1007/s00779-010-0291-y +Nicola Green,Configuring the Mobile User: Sociological and Industry Views.,2001,5,Personal and Ubiquitous Computing,2,db/journals/puc/puc5.html#GreenHMC01,https://doi.org/10.1007/s007790170017 +Caroline Hummels,ISH and the search for resonant tangible interaction.,2004,8,Personal and Ubiquitous Computing,5,db/journals/puc/puc8.html#HummelsH04,https://doi.org/10.1007/s00779-004-0303-x +Charlotte Magnusson,Navigation by pointing to GPS locations.,2012,16,Personal and Ubiquitous Computing,8,db/journals/puc/puc16.html#MagnussonRS12,https://doi.org/10.1007/s00779-011-0456-3 +Erick Oduor,The design and evaluation of a photograph-sharing application for rural and urban Kenyan families.,2016,20,Personal and Ubiquitous Computing,4,db/journals/puc/puc20.html#OduorNH16,https://doi.org/10.1007/s00779-016-0930-z +Davide Figo,Preprocessing techniques for context recognition from accelerometer data.,2010,14,Personal and Ubiquitous Computing,7,db/journals/puc/puc14.html#FigoDFC10,https://doi.org/10.1007/s00779-010-0293-9 +Peter Cochrane,The symbiosis of man and machine.,1997,1,Personal and Ubiquitous Computing,1,db/journals/puc/puc1.html#Cochrane97, +Quan Z. Sheng,User-centric ambient information systems and applications.,2014,18,Personal and Ubiquitous Computing,4,db/journals/puc/puc18.html#ShengSM14,https://doi.org/10.1007/s00779-013-0693-8 +Myong-Woo Lee,A single tri-axial accelerometer-based real-time personal life log system capable of human activity recognition and exercise information generation.,2011,15,Personal and Ubiquitous Computing,8,db/journals/puc/puc15.html#LeeKK11,https://doi.org/10.1007/s00779-011-0403-3 +Jaana Rantanen,Smart Clothing Prototype for the Arctic Environment.,2002,6,Personal and Ubiquitous Computing,1,db/journals/puc/puc6.html#RantanenIKMRTV02,https://doi.org/10.1007/s007790200001 +Libing Wu,Secure public data auditing scheme for cloud storage in smart city.,2017,21,Personal and Ubiquitous Computing,5,db/journals/puc/puc21.html#WuWKH17,https://doi.org/10.1007/s00779-017-1048-7 +Haytham Assem,Machine learning as a service for enabling Internet of Things and People.,2016,20,Personal and Ubiquitous Computing,6,db/journals/puc/puc20.html#AssemXBO16,https://doi.org/10.1007/s00779-016-0963-3 +Martin Colbert,Age differences rendezvousing: reminders for side-stepping.,2005,9,Personal and Ubiquitous Computing,6,db/journals/puc/puc9.html#Colbert05a,https://doi.org/10.1007/s00779-005-0032-9 +Alan F. Blackwell,Undisciplined disciples: everything you always wanted to know about ethnomethodology but were afraid to ask Yoda.,2017,21,Personal and Ubiquitous Computing,3,db/journals/puc/puc21.html#BlackwellBK17,https://doi.org/10.1007/s00779-017-0999-z +Mattia Gustarini,Anonymous smartphone data collection: factors influencing the users' acceptance in mobile crowd sensing.,2016,20,Personal and Ubiquitous Computing,1,db/journals/puc/puc20.html#GustariniWD16,https://doi.org/10.1007/s00779-015-0898-0 +Thomas Rist,Customizing Graphics for Tiny Displays of Mobile Devices.,2002,6,Personal and Ubiquitous Computing,4,db/journals/puc/puc6.html#RistB02,https://doi.org/10.1007/s007790200026 +Thomas Binder,Supporting configurability in a mixed-media environment for design students.,2004,8,Personal and Ubiquitous Computing,5,db/journals/puc/puc8.html#BinderMGJMPW04,https://doi.org/10.1007/s00779-004-0294-7 +Rodrigo Vera,EDIPS: an Easy to Deploy Indoor Positioning System to support loosely coupled mobile work.,2011,15,Personal and Ubiquitous Computing,4,db/journals/puc/puc15.html#VeraOA11,https://doi.org/10.1007/s00779-010-0357-x +Lu Wang 0007,The design and empirical evaluations of 3D positioning techniques for pressure-based touch control on mobile devices.,2018,22,Personal and Ubiquitous Computing,3,db/journals/puc/puc22.html#WangWXZQMY18,https://doi.org/10.1007/s00779-018-1147-0 +Alexandre Alapetite,Dynamic 2D-barcodes for multi-device Web session migration including mobile phones.,2010,14,Personal and Ubiquitous Computing,1,db/journals/puc/puc14.html#Alapetite10,https://doi.org/10.1007/s00779-009-0228-5 +Mooseop Kim,Compact and unified hardware architecture for SHA-1 and SHA-256 of trusted mobile computing.,2013,17,Personal and Ubiquitous Computing,5,db/journals/puc/puc17.html#KimLR13,https://doi.org/10.1007/s00779-012-0543-0 +Igor Pernek,Exercise repetition detection for resistance training based on smartphones.,2013,17,Personal and Ubiquitous Computing,4,db/journals/puc/puc17.html#PernekHK13,https://doi.org/10.1007/s00779-012-0626-y +Lori Malatesta,MPEG-4 facial expression synthesis.,2009,13,Personal and Ubiquitous Computing,1,db/journals/puc/puc13.html#MalatestaRKK09,https://doi.org/10.1007/s00779-007-0164-1 +Josephine Reid,A research methodology for evaluating location aware experiences.,2011,15,Personal and Ubiquitous Computing,1,db/journals/puc/puc15.html#ReidHCMS11,https://doi.org/10.1007/s00779-010-0308-6 +Fiona Jane Candy,"Come on momma, let's see the drummer: movement-based interaction and the performance of personal style.",2007,11,Personal and Ubiquitous Computing,8,db/journals/puc/puc11.html#Candy07,https://doi.org/10.1007/s00779-006-0136-x +E. Rehmi Post,Electrostatic power harvesting for material computing.,2011,15,Personal and Ubiquitous Computing,2,db/journals/puc/puc15.html#PostW11,https://doi.org/10.1007/s00779-010-0313-9 +Kostas Karpouzis,Introduction to the special issue on emerging multimodal interfaces.,2009,13,Personal and Ubiquitous Computing,1,db/journals/puc/puc13.html#KarpouzisST09,https://doi.org/10.1007/s00779-007-0174-z +Naohiko Kohtake,InfoPoint: A Device that Provides a Uniform User Interface to Allow Appliances to Work Together over a Network.,2001,5,Personal and Ubiquitous Computing,4,db/journals/puc/puc5.html#KohtakeRA01,https://doi.org/10.1007/s007790170005 +Bert Bongers,Towards a Multimodal Interaction Space: categorisation and applications.,2007,11,Personal and Ubiquitous Computing,8,db/journals/puc/puc11.html#BongersV07,https://doi.org/10.1007/s00779-006-0138-8 +Tuomas Vaittinen,Uncover: supporting city exploration with egocentric visualizations of location-based content.,2018,22,Personal and Ubiquitous Computing,4,db/journals/puc/puc22.html#VaittinenM18,https://doi.org/10.1007/s00779-018-1167-9 +Yanfei Lu,Secured access control for vehicles in RFID systems on roads.,2014,18,Personal and Ubiquitous Computing,8,db/journals/puc/puc18.html#LuLWJCH14,https://doi.org/10.1007/s00779-014-0794-z +Alan Chamberlain,Special theme on privacy and the Internet of things.,2018,22,Personal and Ubiquitous Computing,2,db/journals/puc/puc22.html#ChamberlainCHM18,https://doi.org/10.1007/s00779-017-1066-5 +Michael Beigl,Selected papers of the ARCS02 conference: an introduction.,2003,7,Personal and Ubiquitous Computing,2,db/journals/puc/puc7.html#BeiglGUW03,https://doi.org/10.1007/s00779-003-0236-9 +Sheng-Hsiang Yu,A mobile mediation tool for improving interaction between depressed individuals and caregivers.,2011,15,Personal and Ubiquitous Computing,7,db/journals/puc/puc15.html#YuWCCCYH11,https://doi.org/10.1007/s00779-010-0347-z +Hong Peng,A method of identifying chronic stress by EEG.,2013,17,Personal and Ubiquitous Computing,7,db/journals/puc/puc17.html#PengHZFZCYC13,https://doi.org/10.1007/s00779-012-0593-3 +Wilfred W. K. Lin,Applying FLC-based dynamic buffer size tuning to shorten the information retrieval round trip time in mobile location-aware environments.,2008,12,Personal and Ubiquitous Computing,1,db/journals/puc/puc12.html#LinDW08,https://doi.org/10.1007/s00779-006-0125-0 +Paul Dourish,Theme issue on social interaction and mundane technologies.,2010,14,Personal and Ubiquitous Computing,3,db/journals/puc/puc14.html#DourishGRR10,https://doi.org/10.1007/s00779-010-0281-0 +Dejan S. Milojicic,MASIF: The OMG Mobile Agent System Interoperability Facility.,1998,2,Personal and Ubiquitous Computing,2,db/journals/puc/puc2.html#MilojicicBBCCFKLOOTVW98,https://doi.org/10.1007/BF01324942 +Minkyong Kim,Periodic properties of user mobility and access-point popularity.,2007,11,Personal and Ubiquitous Computing,6,db/journals/puc/puc11.html#KimK07,https://doi.org/10.1007/s00779-006-0093-4 +Sultan Alamri,A connectivity index for moving objects in an indoor cellular space.,2014,18,Personal and Ubiquitous Computing,2,db/journals/puc/puc18.html#AlamriTSA14,https://doi.org/10.1007/s00779-013-0645-3 +Neeraj Kumar 0001,ALCA: agent learning-based clustering algorithm in vehicular ad hoc networks.,2013,17,Personal and Ubiquitous Computing,8,db/journals/puc/puc17.html#KumarCP13,https://doi.org/10.1007/s00779-012-0600-8 +Eija Kaasinen,User needs for location-aware mobile services.,2003,7,Personal and Ubiquitous Computing,1,db/journals/puc/puc7.html#Kaasinen03,https://doi.org/10.1007/s00779-002-0214-7 +Antonio J. Jara,An internet of things-based personal device for diabetes therapy management in ambient assisted living (AAL).,2011,15,Personal and Ubiquitous Computing,4,db/journals/puc/puc15.html#JaraZG11,https://doi.org/10.1007/s00779-010-0353-1 +Pierluigi Casale,Personalization and user verification in wearable systems using biometric walking patterns.,2012,16,Personal and Ubiquitous Computing,5,db/journals/puc/puc16.html#CasalePR12,https://doi.org/10.1007/s00779-011-0415-z +Edward Tse,Special issue on child computer interaction.,2013,17,Personal and Ubiquitous Computing,8,db/journals/puc/puc17.html#Tse13,https://doi.org/10.1007/s00779-013-0754-z +Thao P. Nghiem,A pure peer-to-peer approach for kNN query processing in mobile ad hoc networks.,2013,17,Personal and Ubiquitous Computing,5,db/journals/puc/puc17.html#NghiemWT13,https://doi.org/10.1007/s00779-012-0545-y +Michael Oduor,Persuasive software design patterns for social influence.,2014,18,Personal and Ubiquitous Computing,7,db/journals/puc/puc18.html#OduorAO14,https://doi.org/10.1007/s00779-014-0778-z +Jasper Lindenberg,Improving service matching and selection in ubiquitous computing environments: a user study.,2007,11,Personal and Ubiquitous Computing,1,db/journals/puc/puc11.html#LindenbergPKSN07,https://doi.org/10.1007/s00779-006-0066-7 +Jiangpeng Dai,Mobile phone-based pervasive fall detection.,2010,14,Personal and Ubiquitous Computing,7,db/journals/puc/puc14.html#DaiBYSX10,https://doi.org/10.1007/s00779-010-0292-x +David M. Krum,Augmented reality using personal projection and retroreflection.,2012,16,Personal and Ubiquitous Computing,1,db/journals/puc/puc16.html#KrumSB12,https://doi.org/10.1007/s00779-011-0374-4 +Luke Hespanhol,Understanding the effects of contextual constraints on performative behaviour in interactive media installations.,2014,18,Personal and Ubiquitous Computing,7,db/journals/puc/puc18.html#HespanholT14,https://doi.org/10.1007/s00779-014-0765-4 +Pingyi Zhou,Automatically constructing course dependence graph based on association semantic link model.,2016,20,Personal and Ubiquitous Computing,5,db/journals/puc/puc20.html#ZhouLYCCZ16,https://doi.org/10.1007/s00779-016-0950-8 +Tao Zhou 0007,Understanding the effect of flow on user adoption of mobile games.,2013,17,Personal and Ubiquitous Computing,4,db/journals/puc/puc17.html#Zhou13a,https://doi.org/10.1007/s00779-012-0613-3 +Egon L. van den Broek,Ubiquitous emotion-aware computing.,2013,17,Personal and Ubiquitous Computing,1,db/journals/puc/puc17.html#Broek13,https://doi.org/10.1007/s00779-011-0479-9 +Martin Spindler,Tangible displays for the masses: spatial interaction with handheld displays by using consumer depth cameras.,2014,18,Personal and Ubiquitous Computing,5,db/journals/puc/puc18.html#SpindlerBWD14,https://doi.org/10.1007/s00779-013-0730-7 +James R. Wallace,Investigating teamwork and taskwork in single- and multi-display groupware systems.,2009,13,Personal and Ubiquitous Computing,8,db/journals/puc/puc13.html#WallaceSSEI09,https://doi.org/10.1007/s00779-009-0241-8 +Hassan Artail,Device-aware desktop web page transformation for rendering on handhelds.,2005,9,Personal and Ubiquitous Computing,6,db/journals/puc/puc9.html#ArtailR05,https://doi.org/10.1007/s00779-005-0348-5 +Elena Vildjiounaite,Correction to: Unobtrusive stress detection on the basis of smartphone usage data.,2018,22,Personal and Ubiquitous Computing,4,db/journals/puc/puc22.html#VildjiounaiteKK18a,https://doi.org/10.1007/s00779-018-1170-1 +Irene Lia Schlacht,Space design - Visual interface of space habitats.,2011,15,Personal and Ubiquitous Computing,5,db/journals/puc/puc15.html#SchlachtB11,https://doi.org/10.1007/s00779-010-0326-4 +Ching-Nung Yang,Aspect ratio invariant visual cryptography by image filtering and resizing.,2013,17,Personal and Ubiquitous Computing,5,db/journals/puc/puc17.html#YangCSK13,https://doi.org/10.1007/s00779-012-0535-0 +Natalia A. Romero,Connecting the family with awareness systems.,2007,11,Personal and Ubiquitous Computing,4,db/journals/puc/puc11.html#RomeroMBRIF07,https://doi.org/10.1007/s00779-006-0089-0 +Johannes Schumm,Unobtrusive physiological monitoring in an airplane seat.,2010,14,Personal and Ubiquitous Computing,6,db/journals/puc/puc14.html#SchummSBBAT10,https://doi.org/10.1007/s00779-009-0272-1 +Adam Wójtowicz,Technical feasibility of context-aware passive payment authorization for physical points of sale.,2017,21,Personal and Ubiquitous Computing,6,db/journals/puc/puc21.html#WojtowiczC17,https://doi.org/10.1007/s00779-017-1035-z +Javier Gómez,Adaptive manuals as assistive technology to support and train people with acquired brain injury in their daily life activities.,2013,17,Personal and Ubiquitous Computing,6,db/journals/puc/puc17.html#GomezMHAAM13,https://doi.org/10.1007/s00779-012-0560-z +Omar Cheikhrouhou,RiSeG: a ring based secure group communication protocol for resource-constrained wireless sensor networks.,2011,15,Personal and Ubiquitous Computing,8,db/journals/puc/puc15.html#CheikhrouhouKDA11,https://doi.org/10.1007/s00779-011-0365-5 +Hiroyuki Manabe,Conductive rubber electrodes for earphone-based eye gesture input interface.,2015,19,Personal and Ubiquitous Computing,1,db/journals/puc/puc19.html#ManabeFY15,https://doi.org/10.1007/s00779-014-0818-8 +Peter Weller,Evaluation of a wearable computer system for telemonitoring in a critical environment.,2010,14,Personal and Ubiquitous Computing,1,db/journals/puc/puc14.html#WellerRMM10,https://doi.org/10.1007/s00779-009-0231-x +Leonardo Mostarda,Context-based authentication and transport of cultural assets.,2010,14,Personal and Ubiquitous Computing,4,db/journals/puc/puc14.html#MostardaDD10,https://doi.org/10.1007/s00779-009-0233-8 +Anastasia Karanastasi,A natural language model for managing TV-Anytime information in mobile environments.,2005,9,Personal and Ubiquitous Computing,5,db/journals/puc/puc9.html#KaranastasiKC05,https://doi.org/10.1007/s00779-004-0330-7 +Pau Giner,Implicit interaction design for pervasive workflows.,2011,15,Personal and Ubiquitous Computing,4,db/journals/puc/puc15.html#GinerCFP11,https://doi.org/10.1007/s00779-010-0360-2 +Mark D. Dunlop,Investigating five key predictive text entry with combined distance and keystroke modelling.,2008,12,Personal and Ubiquitous Computing,8,db/journals/puc/puc12.html#DunlopM08,https://doi.org/10.1007/s00779-007-0179-7 +Mark Howell,Spatial metaphors for a speech-based mobile city guide service.,2005,9,Personal and Ubiquitous Computing,1,db/journals/puc/puc9.html#HowellLT05,https://doi.org/10.1007/s00779-004-0271-1 +Marios C. Angelides,Collaborative design of web service networks in a multilingual user community.,2005,9,Personal and Ubiquitous Computing,5,db/journals/puc/puc9.html#AngelidesE05,https://doi.org/10.1007/s00779-004-0337-0 +Zhiwen Yu,Theme issue on adaptation and personalization for ubiquitous computing.,2012,16,Personal and Ubiquitous Computing,5,db/journals/puc/puc16.html#YuCKKH12,https://doi.org/10.1007/s00779-011-0441-x +Yunchuan Sun,A novel stock recommendation system using Guba sentiment analysis.,2018,22,Personal and Ubiquitous Computing,3,db/journals/puc/puc22.html#SunFW18,https://doi.org/10.1007/s00779-018-1121-x +Mattias Esbjörnsson,From ethnography on infrastructure management to initial user feedback on PlaceMemo.,2006,10,Personal and Ubiquitous Computing,4,db/journals/puc/puc10.html#Esbjornsson06,https://doi.org/10.1007/s00779-005-0041-8 +Olivier Liechti,A Digital Photography Framework Enabling Affective Awareness in Home Communication.,2000,4,Personal and Ubiquitous Computing,1,db/journals/puc/puc4.html#LiechtiI00,https://doi.org/10.1007/BF01613595 +Shang Ping Lee,A mobile pet wearable computer and mixed reality system for human-poultry interaction through the internet.,2006,10,Personal and Ubiquitous Computing,5,db/journals/puc/puc10.html#LeeCJDJCF06,https://doi.org/10.1007/s00779-005-0051-6 +Kwangsoo Kim,RFID-based location-sensing system for safety management.,2012,16,Personal and Ubiquitous Computing,3,db/journals/puc/puc16.html#KimK12,https://doi.org/10.1007/s00779-011-0394-0 +Orkan Telhan,Materials with computational experience and style.,2011,15,Personal and Ubiquitous Computing,2,db/journals/puc/puc15.html#Telhan11,https://doi.org/10.1007/s00779-010-0314-8 +Igor Chimir,SmartText: Using Agents Supporting Personalised Reading Comprehension.,1998,2,Personal and Ubiquitous Computing,3,db/journals/puc/puc2.html#ChimirHA98,https://doi.org/10.1007/BF01321173 +Zhihua Zhang,C2MP: Chebyshev chaotic map-based authentication protocol for RFID applications.,2015,19,Personal and Ubiquitous Computing,7,db/journals/puc/puc19.html#ZhangWG15,https://doi.org/10.1007/s00779-015-0876-6 +José Bravo,"Theme issue: ""ubiquitous computing and ambient intelligence"".",2011,15,Personal and Ubiquitous Computing,4,db/journals/puc/puc15.html#BravoFI11,https://doi.org/10.1007/s00779-010-0358-9 +Peter Tolmie,Digital plumbing: the mundane work of deploying UbiComp in the home.,2010,14,Personal and Ubiquitous Computing,3,db/journals/puc/puc14.html#TolmieCEHGR10,https://doi.org/10.1007/s00779-009-0260-5 +Ilias Maglogiannis,Assistive environments for the disabled and the senior citizens: theme issue of PETRA 2010 and 2011 conferences.,2014,18,Personal and Ubiquitous Computing,1,db/journals/puc/puc18.html#MaglogiannisBPM14,https://doi.org/10.1007/s00779-012-0616-0 +René Mayrhofer,Security and trust in context-aware applications.,2014,18,Personal and Ubiquitous Computing,1,db/journals/puc/puc18.html#MayrhoferSS14,https://doi.org/10.1007/s00779-012-0630-2 +Günter Karjoth,Protecting the Computation Results of Free-Roaming Agents.,1998,2,Personal and Ubiquitous Computing,2,db/journals/puc/puc2.html#KarjothAG98,https://doi.org/10.1007/BF01324939 +Jongsung Kim,On the security of the block cipher GOST suitable for the protection in U-business services.,2013,17,Personal and Ubiquitous Computing,7,db/journals/puc/puc17.html#Kim13,https://doi.org/10.1007/s00779-012-0578-2 +Omer Rashid,Providing location based information/advertising for existing mobile phone users.,2008,12,Personal and Ubiquitous Computing,1,db/journals/puc/puc12.html#RashidCE08,https://doi.org/10.1007/s00779-006-0121-4 +Steve Jones,Using keyphrases as search result surrogates on small screen devices.,2004,8,Personal and Ubiquitous Computing,1,db/journals/puc/puc8.html#JonesJD04,https://doi.org/10.1007/s00779-004-0258-y +Luciano Gamberini,How natural is a natural interface? An evaluation procedure based on action breakdowns.,2013,17,Personal and Ubiquitous Computing,1,db/journals/puc/puc17.html#GamberiniSPFMSRL13,https://doi.org/10.1007/s00779-011-0476-z +Ben Kirman,Blowtooth: a provocative pervasive game for smuggling virtual drugs through real airport security.,2012,16,Personal and Ubiquitous Computing,6,db/journals/puc/puc16.html#KirmanLL12,https://doi.org/10.1007/s00779-011-0423-z +Junyu Wang,Session-based security enhancement of RFID systems for emerging open-loop applications.,2014,18,Personal and Ubiquitous Computing,8,db/journals/puc/puc18.html#WangFS14,https://doi.org/10.1007/s00779-014-0788-x +Junping Wang,Multi-objects scalable coordinated learning in internet of things.,2015,19,Personal and Ubiquitous Computing,7,db/journals/puc/puc19.html#WangDS15,https://doi.org/10.1007/s00779-015-0888-2 +Melody Moore Jackson,FIDO - Facilitating interactions for dogs with occupations: wearable communication interfaces for working dogs.,2015,19,Personal and Ubiquitous Computing,1,db/journals/puc/puc19.html#JacksonVFBZGCS15,https://doi.org/10.1007/s00779-014-0817-9 +Mark D. Dunlop,editorial: The Challenge of Mobile Devices for Human Computer Interaction.,2002,6,Personal and Ubiquitous Computing,4,db/journals/puc/puc6.html#DunlopB02,https://doi.org/10.1007/s007790200022 +Johan Gustav Bellika,The Virtual Library Secretary - A User Model Based Software Agent.,1998,2,Personal and Ubiquitous Computing,3,db/journals/puc/puc2.html#BellikaHW98,https://doi.org/10.1007/BF01321174 +Bu-Lim Choi,The impact of policy measures on promoting the modal shift from road to rail.,2014,18,Personal and Ubiquitous Computing,6,db/journals/puc/puc18.html#ChoiCL14,https://doi.org/10.1007/s00779-013-0734-3 +Mohamed Amine Abid,Stability routing with constrained path length for improved routability in dynamic MANETs.,2011,15,Personal and Ubiquitous Computing,8,db/journals/puc/puc15.html#AbidB11,https://doi.org/10.1007/s00779-011-0366-4 +Eduardo Quintana,Augmented reality annotations to assist persons with Alzheimers and their caregivers.,2013,17,Personal and Ubiquitous Computing,6,db/journals/puc/puc17.html#QuintanaF13,https://doi.org/10.1007/s00779-012-0558-6 +Fadi M. Al-Turjman,Towards augmenting federated wireless sensor networks in forestry applications.,2013,17,Personal and Ubiquitous Computing,5,db/journals/puc/puc17.html#Al-TurjmanHOA13,https://doi.org/10.1007/s00779-012-0549-7 +Panagiotis E. Antoniou,Versatile mixed reality medical educational spaces* requirement analysis from expert users.,2017,21,Personal and Ubiquitous Computing,6,db/journals/puc/puc21.html#AntoniouDAB17,https://doi.org/10.1007/s00779-017-1074-5 +Robert Albrecht,Guided by music: pedestrian and cyclist navigation with route and beacon guidance.,2016,20,Personal and Ubiquitous Computing,1,db/journals/puc/puc20.html#AlbrechtVL16,https://doi.org/10.1007/s00779-016-0906-z +Gary Marsden,Data Structures in the Design of Interfaces.,2002,6,Personal and Ubiquitous Computing,2,db/journals/puc/puc6.html#MarsdenTJG02,https://doi.org/10.1007/s007790200012 +Matteo Ciman,Stairstep recognition and counting in a serious Game for increasing users' physical activity.,2016,20,Personal and Ubiquitous Computing,6,db/journals/puc/puc20.html#CimanDGA16,https://doi.org/10.1007/s00779-016-0968-y +Eran Toch,Crowdsourcing privacy preferences in context-aware applications.,2014,18,Personal and Ubiquitous Computing,1,db/journals/puc/puc18.html#Toch14,https://doi.org/10.1007/s00779-012-0632-0 +Katerina Diamantaki,Theoretical and methodological implications of designing and implementing multiuser location-based games.,2011,15,Personal and Ubiquitous Computing,1,db/journals/puc/puc15.html#DiamantakiRCT11,https://doi.org/10.1007/s00779-010-0304-x +Didier Hoareau,Middleware support for the deployment of ubiquitous software components.,2008,12,Personal and Ubiquitous Computing,2,db/journals/puc/puc12.html#HoareauM08,https://doi.org/10.1007/s00779-006-0110-7 +Delfina Malandrino,MIMOSA: context-aware adaptation for ubiquitous web access.,2010,14,Personal and Ubiquitous Computing,4,db/journals/puc/puc14.html#MalandrinoMRBCS10,https://doi.org/10.1007/s00779-009-0232-9 +Katherine K. Kim,Youth-centered design and usage results of the iN Touch mobile self-management program for overweight/obesity.,2015,19,Personal and Ubiquitous Computing,1,db/journals/puc/puc19.html#KimLYS15,https://doi.org/10.1007/s00779-014-0808-x +Asier Aztiria,Discovering frequent user-environment interactions in intelligent environments.,2012,16,Personal and Ubiquitous Computing,1,db/journals/puc/puc16.html#AztiriaABIC12,https://doi.org/10.1007/s00779-011-0471-4 +Boon-Chong Seet,"Theme issue on ""Sensor-driven computing and applications for Ambient Intelligence"".",2012,16,Personal and Ubiquitous Computing,7,db/journals/puc/puc16.html#SeetBW12,https://doi.org/10.1007/s00779-011-0452-7 +Chris W. Johnson 0001,Taking Fun Seriously: Using Cognitive Models to Reason About Interaction with Computer Games.,1999,3,Personal and Ubiquitous Computing,3,db/journals/puc/puc3.html#Johnson99,https://doi.org/10.1007/BF01305335 +Seongkee Lee,Resiliency of mobile OS security for secure personal ubiquitous computing.,2018,22,Personal and Ubiquitous Computing,1,db/journals/puc/puc22.html#LeeLKKLK18,https://doi.org/10.1007/s00779-017-1098-x +Dongyan Zhang,Bitrate allocation among multiple video streams to maximize profit in content delivery networks.,2016,20,Personal and Ubiquitous Computing,3,db/journals/puc/puc20.html#ZhangHL16,https://doi.org/10.1007/s00779-016-0919-7 +Saskia Van Dantzig,Toward a persuasive mobile application to reduce sedentary behavior.,2013,17,Personal and Ubiquitous Computing,6,db/journals/puc/puc17.html#DantzigGH13,https://doi.org/10.1007/s00779-012-0588-0 +Connie Golsteijn,Facilitating communication about books through an online community.,2011,15,Personal and Ubiquitous Computing,2,db/journals/puc/puc15.html#GolsteijnH11,https://doi.org/10.1007/s00779-010-0301-0 +George Roussos,Editorial: ubiquitous computing in the real world.,2007,11,Personal and Ubiquitous Computing,7,db/journals/puc/puc11.html#RoussosK07,https://doi.org/10.1007/s00779-006-0113-4 +Dorota M. Huizinga,Editorial.,1997,1,Personal and Ubiquitous Computing,3,db/journals/puc/puc1.html#Huizinga97, +Rod McCall,Using presence to evaluate an augmented reality location aware game.,2011,15,Personal and Ubiquitous Computing,1,db/journals/puc/puc15.html#McCallWLB11,https://doi.org/10.1007/s00779-010-0306-8 +Charlie Wilson,Smart homes and their users: a systematic analysis and key challenges.,2015,19,Personal and Ubiquitous Computing,2,db/journals/puc/puc19.html#WilsonHH15,https://doi.org/10.1007/s00779-014-0813-0 +Ching-Hsien Hsu,Alleviating reader collision problem in mobile RFID networks.,2009,13,Personal and Ubiquitous Computing,7,db/journals/puc/puc13.html#HsuCYP09,https://doi.org/10.1007/s00779-009-0224-9 +Cong Zuo,Cost-effective privacy-preserving vehicular urban sensing system.,2017,21,Personal and Ubiquitous Computing,5,db/journals/puc/puc21.html#ZuoLJSF17,https://doi.org/10.1007/s00779-017-1046-9 +Hammad Banuri,An Android runtime security policy enforcement framework.,2012,16,Personal and Ubiquitous Computing,6,db/journals/puc/puc16.html#BanuriAKMAKYTAAZ12,https://doi.org/10.1007/s00779-011-0437-6 +ZhangBing Zhou,A three-dimensional sub-region query processing mechanism in underwater WSNs.,2015,19,Personal and Ubiquitous Computing,7,db/journals/puc/puc19.html#ZhouXGX15,https://doi.org/10.1007/s00779-015-0875-7 +Tom L. Martin,Discipline-based instruction to promote interdisciplinary design of wearable and pervasive computing products.,2013,17,Personal and Ubiquitous Computing,3,db/journals/puc/puc17.html#MartinKFMCD13,https://doi.org/10.1007/s00779-011-0492-z +Wolfgang Reitberger,Situated and mobile displays for reflection on shopping and nutritional choices.,2014,18,Personal and Ubiquitous Computing,7,db/journals/puc/puc18.html#ReitbergerSF14,https://doi.org/10.1007/s00779-014-0781-4 +Antonio J. Jara,Participative marketing: extending social media marketing through the identification and interaction capabilities from the Internet of things.,2014,18,Personal and Ubiquitous Computing,4,db/journals/puc/puc18.html#JaraPS14,https://doi.org/10.1007/s00779-013-0714-7 +Bruno Lepri,What is happening now? Detection of activities of daily living from simple visual features.,2010,14,Personal and Ubiquitous Computing,8,db/journals/puc/puc14.html#LepriMCPZ10,https://doi.org/10.1007/s00779-010-0290-z +Pekka Ketola,Special issue on out-of-box experience and consumer devices.,2005,9,Personal and Ubiquitous Computing,4,db/journals/puc/puc9.html#Ketola05,https://doi.org/10.1007/s00779-004-0319-2 +Eduardo E. Veas,Mobile augmented reality for environmental monitoring.,2013,17,Personal and Ubiquitous Computing,7,db/journals/puc/puc17.html#VeasGFGS13,https://doi.org/10.1007/s00779-012-0597-z +Jinwoo Kim 0001,Toward the Construction of Fun Computer Games: Differences in the views of developers and players.,1999,3,Personal and Ubiquitous Computing,3,db/journals/puc/puc3.html#KimCK99,https://doi.org/10.1007/BF01305334 +Vassilis Athitsos,A database-based framework for gesture recognition.,2010,14,Personal and Ubiquitous Computing,6,db/journals/puc/puc14.html#AthitsosWS10,https://doi.org/10.1007/s00779-009-0276-x +Connie Golsteijn,Facilitating parent-teenager communication through interactive photo cubes.,2013,17,Personal and Ubiquitous Computing,2,db/journals/puc/puc17.html#GolsteijnH13,https://doi.org/10.1007/s00779-011-0487-9 +Deven McGraw,Engaging patients while addressing their privacy concerns: the experience of Project HealthDesign.,2015,19,Personal and Ubiquitous Computing,1,db/journals/puc/puc19.html#McGrawBPI15,https://doi.org/10.1007/s00779-014-0809-9 +Brian P. Bailey,Adapting paper prototyping for designing user interfaces for multiple display environments.,2008,12,Personal and Ubiquitous Computing,3,db/journals/puc/puc12.html#BaileyBCM08,https://doi.org/10.1007/s00779-007-0147-2 +Do Hyeon Lee,IKEv2 authentication exchange model and performance analysis in mobile IPv6 networks.,2014,18,Personal and Ubiquitous Computing,3,db/journals/puc/puc18.html#LeeK14,https://doi.org/10.1007/s00779-013-0669-8 +Paul De Hert,Legal safeguards for privacy and data protection in ambient intelligence.,2009,13,Personal and Ubiquitous Computing,6,db/journals/puc/puc13.html#HertGMWF09,https://doi.org/10.1007/s00779-008-0211-6 +Jean-Baptiste Lézoray,A design process enabling adaptation in pervasive heterogeneous contexts.,2011,15,Personal and Ubiquitous Computing,4,db/journals/puc/puc15.html#LezoraySPTGB11,https://doi.org/10.1007/s00779-010-0356-y +Stan Kurkovsky,Using ubiquitous computing in interactive mobile marketing.,2006,10,Personal and Ubiquitous Computing,4,db/journals/puc/puc10.html#KurkovskyH06,https://doi.org/10.1007/s00779-005-0044-5 +Raino Vastamäki,A behavioural model of temperature controller usage and energy saving.,2005,9,Personal and Ubiquitous Computing,4,db/journals/puc/puc9.html#VastamakiSL05,https://doi.org/10.1007/s00779-004-0326-3 +Hongjuan Li,Secure friend discovery based on encounter history in mobile social networks.,2015,19,Personal and Ubiquitous Computing,7,db/journals/puc/puc19.html#LiCCLC15,https://doi.org/10.1007/s00779-015-0873-9 +Xiong Li 0002,An efficient authentication and key agreement scheme with user anonymity for roaming service in smart city.,2017,21,Personal and Ubiquitous Computing,5,db/journals/puc/puc21.html#LiSKWSK17,https://doi.org/10.1007/s00779-017-1054-9 +Abidalrahman Moh'd,SN-SEC: a secure wireless sensor platform with hardware cryptographic primitives.,2013,17,Personal and Ubiquitous Computing,5,db/journals/puc/puc17.html#MohdAPRM13,https://doi.org/10.1007/s00779-012-0563-9 +Yu Wang 0003,Participant selection for data collection through device-to-device communications in mobile sensing.,2017,21,Personal and Ubiquitous Computing,1,db/journals/puc/puc21.html#WangLL17,https://doi.org/10.1007/s00779-016-0974-0 +Kevin Mercer,Designing for video: investigating the contextual cues within viewing situations.,2014,18,Personal and Ubiquitous Computing,3,db/journals/puc/puc18.html#MercerMM14,https://doi.org/10.1007/s00779-013-0702-y +Min Lei,Dynamically enabled defense effectiveness evaluation of a home Internet based on vulnerability analysis and attack layer measurement.,2018,22,Personal and Ubiquitous Computing,1,db/journals/puc/puc22.html#LeiYMSZM18,https://doi.org/10.1007/s00779-017-1084-3 +Jofish Kaye,Theme issue on Histories of Ubicomp.,2017,21,Personal and Ubiquitous Computing,3,db/journals/puc/puc21.html#KayeS17,https://doi.org/10.1007/s00779-017-1000-x +Ricardo Chavarriaga,Unsupervised adaptation for acceleration-based activity recognition: robustness to sensor displacement and rotation.,2013,17,Personal and Ubiquitous Computing,3,db/journals/puc/puc17.html#ChavarriagaBM13,https://doi.org/10.1007/s00779-011-0493-y +Cristina de Negueruela,Brain-computer interfaces for space applications.,2011,15,Personal and Ubiquitous Computing,5,db/journals/puc/puc15.html#NegueruelaBMM11,https://doi.org/10.1007/s00779-010-0322-8 +Unai Lopez-Novoa,Overcrowding detection in indoor events using scalable technologies.,2017,21,Personal and Ubiquitous Computing,3,db/journals/puc/puc21.html#Lopez-NovoaAELA17,https://doi.org/10.1007/s00779-017-1012-6 +Ching-Hsien Hsu,Internet of People and situated computing.,2016,20,Personal and Ubiquitous Computing,6,db/journals/puc/puc20.html#Hsu16,https://doi.org/10.1007/s00779-016-0957-1 +John M. Carroll,Reviving community networks: hyperlocality and suprathresholding in Web 2.0 designs.,2015,19,Personal and Ubiquitous Computing,2,db/journals/puc/puc19.html#CarrollHHR15,https://doi.org/10.1007/s00779-014-0831-y +Jonathan Green,Exploring attractions and exhibits with interactive flashlights.,2014,18,Personal and Ubiquitous Computing,1,db/journals/puc/puc18.html#GreenPB14,https://doi.org/10.1007/s00779-013-0661-3 +Vero Vanden Abeele,User eXperience Laddering with preschoolers: unveiling attributes and benefits of cuddly toy interfaces.,2012,16,Personal and Ubiquitous Computing,4,db/journals/puc/puc16.html#AbeeleZG12,https://doi.org/10.1007/s00779-011-0408-y +Yanxia Zhang,Look together: using gaze for assisting co-located collaborative search.,2017,21,Personal and Ubiquitous Computing,1,db/journals/puc/puc21.html#ZhangPCABG17,https://doi.org/10.1007/s00779-016-0969-x +John Dowell,Companion apps for information-rich television programmes: representation and interaction.,2015,19,Personal and Ubiquitous Computing,7,db/journals/puc/puc19.html#DowellMKA15,https://doi.org/10.1007/s00779-015-0867-7 +Wei Zeng,Classifying watermelon ripeness by analysing acoustic signals using mobile devices.,2014,18,Personal and Ubiquitous Computing,7,db/journals/puc/puc18.html#ZengHAM14,https://doi.org/10.1007/s00779-013-0706-7 +Setia Hermawati,Managing obesity through mobile phone applications: a state-of-the-art review from a user-centred design perspective.,2014,18,Personal and Ubiquitous Computing,8,db/journals/puc/puc18.html#HermawatiL14,https://doi.org/10.1007/s00779-014-0757-4 +Kjetil Nordby,Designing calm technology and peripheral interaction for offshore service vessels.,2016,20,Personal and Ubiquitous Computing,4,db/journals/puc/puc20.html#NordbyM16,https://doi.org/10.1007/s00779-016-0929-5 +Riku Suomela,The evolution of perspective view in WalkMap.,2003,7,Personal and Ubiquitous Computing,5,db/journals/puc/puc7.html#SuomelaRL03,https://doi.org/10.1007/s00779-003-0244-9 +Yang-Hoon Kim,A u-IT collaboration evaluation model for value networks.,2013,17,Personal and Ubiquitous Computing,7,db/journals/puc/puc17.html#KimC13a,https://doi.org/10.1007/s00779-012-0581-7 +Nicky Kern,Wearable sensing to annotate meeting recordings.,2003,7,Personal and Ubiquitous Computing,5,db/journals/puc/puc7.html#KernSJLT03,https://doi.org/10.1007/s00779-003-0242-y +Tore Urnes,Using Mobile Code to Build a Smart Kitchen.,2000,4,Personal and Ubiquitous Computing,4,db/journals/puc/puc4.html#UrnesHJM00,https://doi.org/10.1007/BF02391557 +Bin Guo,Toward a cooperative programming framework for context-aware applications.,2011,15,Personal and Ubiquitous Computing,3,db/journals/puc/puc15.html#GuoZI11,https://doi.org/10.1007/s00779-010-0329-1 +Stefan Fünfrocken,Transparent Migration of Java-Based Mobile Agents: Capturing and Reestablishing the State of Java Programs.,1998,2,Personal and Ubiquitous Computing,2,db/journals/puc/puc2.html#Funfrocken98,https://doi.org/10.1007/BF01324941 +Young-Ho Park 0002,Efficient techniques on retrieving bio-information for active U-healthcare.,2013,17,Personal and Ubiquitous Computing,7,db/journals/puc/puc17.html#Park13,https://doi.org/10.1007/s00779-012-0569-3 +Marigo Heijboer,Facilitating peripheral interaction: design and evaluation of peripheral interaction for a gesture-based lighting control with multimodal feedback.,2016,20,Personal and Ubiquitous Computing,1,db/journals/puc/puc20.html#HeijboerHBB16,https://doi.org/10.1007/s00779-015-0893-5 +Elhadi M. Shakshuki,New developments in pervasive and ambient information systems.,2013,17,Personal and Ubiquitous Computing,5,db/journals/puc/puc17.html#ShakshukiY13,https://doi.org/10.1007/s00779-012-0551-0 +Lizbeth Escobedo,Smart objects to support the discrimination training of children with autism.,2014,18,Personal and Ubiquitous Computing,6,db/journals/puc/puc18.html#EscobedoIHAT14,https://doi.org/10.1007/s00779-013-0750-3 +Julian Randall,LuxTrace: indoor positioning using building illumination.,2007,11,Personal and Ubiquitous Computing,6,db/journals/puc/puc11.html#RandallABB07,https://doi.org/10.1007/s00779-006-0097-0 +Yiding Wang,Liveness detection for dorsal hand vein recognition.,2016,20,Personal and Ubiquitous Computing,3,db/journals/puc/puc20.html#WangZQ16,https://doi.org/10.1007/s00779-016-0922-z +Keni Bernardin,Multimodal identity tracking in a smart room.,2009,13,Personal and Ubiquitous Computing,1,db/journals/puc/puc13.html#BernardinES09,https://doi.org/10.1007/s00779-007-0175-y +Rui S. Moreira,Dynamic adaptation of personal ubicomp environments.,2016,20,Personal and Ubiquitous Computing,2,db/journals/puc/puc20.html#MoreiraTSMRB16,https://doi.org/10.1007/s00779-016-0909-9 +Dong Woo Ryu,Generating knowledge for the identification of device failure causes and the prediction of the *-to-failure in u-Healthcare environments.,2013,17,Personal and Ubiquitous Computing,7,db/journals/puc/puc17.html#RyuKYP13,https://doi.org/10.1007/s00779-012-0573-7 +Le Duy Ngan,Semantic Web service discovery: state-of-the-art and research challenges.,2013,17,Personal and Ubiquitous Computing,8,db/journals/puc/puc17.html#NganK13,https://doi.org/10.1007/s00779-012-0609-z +Peter Thomas,From web-site to on-line presence* from internet to information.,1999,3,Personal and Ubiquitous Computing,4,db/journals/puc/puc3.html#Thomas99,https://doi.org/10.1007/BF01540549 +Bernd Ploderer,Social interaction and reflection for behaviour change.,2014,18,Personal and Ubiquitous Computing,7,db/journals/puc/puc18.html#PlodererROG14,https://doi.org/10.1007/s00779-014-0779-y +Ayako Ono,Space art: aesthetics design as psychological support.,2011,15,Personal and Ubiquitous Computing,5,db/journals/puc/puc15.html#OnoS11,https://doi.org/10.1007/s00779-010-0325-5 +Da-Zhi Sun,Man-in-the-middle attacks on Secure Simple Pairing in Bluetooth standard V5.0 and its countermeasure.,2018,22,Personal and Ubiquitous Computing,1,db/journals/puc/puc22.html#SunMS18,https://doi.org/10.1007/s00779-017-1081-6 +Markus Montola,A ludological view on the pervasive mixed-reality game research paradigm.,2011,15,Personal and Ubiquitous Computing,1,db/journals/puc/puc15.html#Montola11,https://doi.org/10.1007/s00779-010-0307-7 +Alex S. Taylor,Homes that make us smart.,2007,11,Personal and Ubiquitous Computing,5,db/journals/puc/puc11.html#TaylorHSISP07,https://doi.org/10.1007/s00779-006-0076-5 +Andreas Komninos,A calendar based Internet content pre-caching agent for small computing devices.,2008,12,Personal and Ubiquitous Computing,7,db/journals/puc/puc12.html#KomninosD08,https://doi.org/10.1007/s00779-007-0153-4 +Lichen Zhang 0001,Mobility-aware routing in delay tolerant networks.,2015,19,Personal and Ubiquitous Computing,7,db/journals/puc/puc19.html#ZhangCLW15,https://doi.org/10.1007/s00779-015-0880-x +Anna Ståhl,Experiencing the Affective Diary.,2009,13,Personal and Ubiquitous Computing,5,db/journals/puc/puc13.html#StahlHSTC09,https://doi.org/10.1007/s00779-008-0202-7 +Ali Shemshadi,Searching for the internet of things: where it is and what it looks like.,2017,21,Personal and Ubiquitous Computing,6,db/journals/puc/puc21.html#ShemshadiSQSZY17,https://doi.org/10.1007/s00779-017-1034-0 +Sadaqat Jan,FARM: file annotation and retrieval on mobile devices.,2011,15,Personal and Ubiquitous Computing,7,db/journals/puc/puc15.html#JanLA11,https://doi.org/10.1007/s00779-011-0400-6 +Antonio Coronato,A multimodal semantic location service for intelligent environments: an application for Smart Hospitals.,2009,13,Personal and Ubiquitous Computing,7,db/journals/puc/puc13.html#CoronatoEP09,https://doi.org/10.1007/s00779-009-0223-x +Alan Chamberlain,Understanding mass participatory pervasive computing systems for environmental campaigns.,2014,18,Personal and Ubiquitous Computing,7,db/journals/puc/puc18.html#ChamberlainPGFPGBTKGGWF14,https://doi.org/10.1007/s00779-013-0756-x +Bert Bongers,The projector as instrument.,2012,16,Personal and Ubiquitous Computing,1,db/journals/puc/puc16.html#Bongers12,https://doi.org/10.1007/s00779-011-0378-0 +Keni Bernardin,Multimodal identity tracking in a smart room.,2009,13,Personal and Ubiquitous Computing,5,db/journals/puc/puc13.html#BernardinES09a,https://doi.org/10.1007/s00779-008-0216-1 +Ekin Gedik,Personalised models for speech detection from body movements using transductive parameter transfer.,2017,21,Personal and Ubiquitous Computing,4,db/journals/puc/puc21.html#GedikH17,https://doi.org/10.1007/s00779-017-1006-4 +Rich Ling,We Release Them Little by Little: Maturation and Gender Identity as Seen in the Use of Mobile Telephony.,2001,5,Personal and Ubiquitous Computing,2,db/journals/puc/puc5.html#Ling01a,https://doi.org/10.1007/s007790170015 +Matt Jones 0001,ONTRACK: Dynamically adapting music playback to support navigation.,2008,12,Personal and Ubiquitous Computing,7,db/journals/puc/puc12.html#JonesJBWBH08,https://doi.org/10.1007/s00779-007-0155-2 +Andrew E. Fano,"What are a Location's ""File"" and ""Edit"" Menus?",2001,5,Personal and Ubiquitous Computing,1,db/journals/puc/puc5.html#Fano01,https://doi.org/10.1007/s007790170021 +Andy Crabtree,House rules: the collaborative nature of policy in domestic networks.,2015,19,Personal and Ubiquitous Computing,1,db/journals/puc/puc19.html#CrabtreeRTMLBP15,https://doi.org/10.1007/s00779-014-0771-6 +Jing Sang,An efficient fingerprint identification algorithm based on minutiae and invariant moment.,2018,22,Personal and Ubiquitous Computing,1,db/journals/puc/puc22.html#SangWQWC18,https://doi.org/10.1007/s00779-017-1094-1 +Pradeep Kumar 0002,Envisioned speech recognition using EEG sensors.,2018,22,Personal and Ubiquitous Computing,1,db/journals/puc/puc22.html#KumarSRSD18,https://doi.org/10.1007/s00779-017-1083-4 +John Paul Varkey,Human motion recognition using a wireless sensor-based wearable system.,2012,16,Personal and Ubiquitous Computing,7,db/journals/puc/puc16.html#VarkeyPW12,https://doi.org/10.1007/s00779-011-0455-4 +Michael Philetus Weller,Hyperform specification: designing and interacting with self-reconfiguring materials.,2011,15,Personal and Ubiquitous Computing,2,db/journals/puc/puc15.html#WellerGG11,https://doi.org/10.1007/s00779-010-0315-7 +David H. Nguyen,Information privacy in institutional and end-user tracking and recording technologies.,2010,14,Personal and Ubiquitous Computing,1,db/journals/puc/puc14.html#NguyenH10,https://doi.org/10.1007/s00779-009-0229-4 +Erich Bruns,Adaptive training of video sets for image recognition on mobile phones.,2009,13,Personal and Ubiquitous Computing,2,db/journals/puc/puc13.html#BrunsB09,https://doi.org/10.1007/s00779-008-0194-3 +Vasileios Terzis,Measuring instant emotions based on facial expressions during computer-based assessment.,2013,17,Personal and Ubiquitous Computing,1,db/journals/puc/puc17.html#TerzisME13,https://doi.org/10.1007/s00779-011-0477-y +Pham Phuoc Hung,Optimal collaboration of thin-thick clients and resource allocation in cloud computing.,2014,18,Personal and Ubiquitous Computing,3,db/journals/puc/puc18.html#HungTMMH14,https://doi.org/10.1007/s00779-013-0673-z +Dimitrios D. Vergados,Service personalization for assistive living in a mobile ambient healthcare-networked environment.,2010,14,Personal and Ubiquitous Computing,6,db/journals/puc/puc14.html#Vergados10,https://doi.org/10.1007/s00779-009-0278-8 +Juan Pablo Forero,PostBits: using contextual locations for embedding cloud information in the home.,2016,20,Personal and Ubiquitous Computing,6,db/journals/puc/puc20.html#ForeroFSWNSM16,https://doi.org/10.1007/s00779-016-0967-z +Rich Ling,editorial: Guest Editorial: Mobile Communication and the Reformulation of the Social Order.,2001,5,Personal and Ubiquitous Computing,2,db/journals/puc/puc5.html#Ling01,https://doi.org/10.1007/PL00000016 +Theo Kanter,Context-Aware Personal Communication for Teleliving.,1998,2,Personal and Ubiquitous Computing,4,db/journals/puc/puc2.html#KanterFG98,https://doi.org/10.1007/BF01885564 +Huan Zhou 0002,Predicting temporal centrality in Opportunistic Mobile Social Networks based on social behavior of people.,2016,20,Personal and Ubiquitous Computing,6,db/journals/puc/puc20.html#ZhouTXHF16,https://doi.org/10.1007/s00779-016-0958-0 +Rubén Cuevas,Understanding the locality effect in Twitter: measurement and analysis.,2014,18,Personal and Ubiquitous Computing,2,db/journals/puc/puc18.html#CuevasGCG14,https://doi.org/10.1007/s00779-013-0658-y +Emilia I. Barakova,Expressing and interpreting emotional movements in social games with robots.,2010,14,Personal and Ubiquitous Computing,5,db/journals/puc/puc14.html#BarakovaL10,https://doi.org/10.1007/s00779-009-0263-2 +Julie A. Kientz,Embedded capture and access: encouraging recording and reviewing of data in the caregiving domain.,2012,16,Personal and Ubiquitous Computing,2,db/journals/puc/puc16.html#Kientz12,https://doi.org/10.1007/s00779-011-0380-6 +Stephen A. Brewster,Overcoming the Lack of Screen Space on Mobile Computers.,2002,6,Personal and Ubiquitous Computing,3,db/journals/puc/puc6.html#Brewster02,https://doi.org/10.1007/s007790200019 +Abhishek Prakash Tayal,An address assignment for the automatic configuration of mobile ad hoc networks.,2004,8,Personal and Ubiquitous Computing,1,db/journals/puc/puc8.html#TayalP04,https://doi.org/10.1007/s00779-003-0256-5 +Filomena Papa,Broadband Cellular Radio Telecommunication Technologies in Distance Learning: A Human Factors Field Study.,2001,5,Personal and Ubiquitous Computing,4,db/journals/puc/puc5.html#PapaS01,https://doi.org/10.1007/s007790170002 +Jacek Chmielewski,Device-Independent Architecture for ubiquitous applications.,2014,18,Personal and Ubiquitous Computing,2,db/journals/puc/puc18.html#Chmielewski14,https://doi.org/10.1007/s00779-013-0666-y +Iulian Radu,Augmented reality in education: a meta-review and cross-media analysis.,2014,18,Personal and Ubiquitous Computing,6,db/journals/puc/puc18.html#Radu14,https://doi.org/10.1007/s00779-013-0747-y +Stuart Moran,ExoPranayama: a biofeedback-driven actuated environment for supporting yoga breathing practices.,2016,20,Personal and Ubiquitous Computing,2,db/journals/puc/puc20.html#MoranJSG16,https://doi.org/10.1007/s00779-016-0910-3 +Daniela Petrelli,Family memories in the home: contrasting physical and digital mementos.,2010,14,Personal and Ubiquitous Computing,2,db/journals/puc/puc14.html#PetrelliW10,https://doi.org/10.1007/s00779-009-0279-7 +Min-Woo Park,Dangerous Wi-Fi access point: attacks to benign smartphone applications.,2014,18,Personal and Ubiquitous Computing,6,db/journals/puc/puc18.html#ParkCEC14,https://doi.org/10.1007/s00779-013-0739-y +Lars Hallnäs,Slow Technology - Designing for Reflection.,2001,5,Personal and Ubiquitous Computing,3,db/journals/puc/puc5.html#HallnasR01,https://doi.org/10.1007/PL00000019 +Asim Smailagic,Metronaut: A Wearable Computer with Sensing and Global Communication Capabilities.,1997,1,Personal and Ubiquitous Computing,3,db/journals/puc/puc1.html#SmailagicMRRO97,https://doi.org/10.1007/BF01682029 +Lu Zhou,Secure group information exchange scheme for vehicular ad hoc networks.,2017,21,Personal and Ubiquitous Computing,5,db/journals/puc/puc21.html#ZhouLWL17,https://doi.org/10.1007/s00779-017-1049-6 +Karen Holtzblatt,Customer-centered design for mobile applications.,2005,9,Personal and Ubiquitous Computing,4,db/journals/puc/puc9.html#Holtzblatt05,https://doi.org/10.1007/s00779-004-0324-5 +Jie Li 0002,The Optimal Assignment of Cells in PCS Networks.,1997,1,Personal and Ubiquitous Computing,3,db/journals/puc/puc1.html#LiKI97,https://doi.org/10.1007/BF01299647 +Gillian R. Hayes,Interactive visual supports for children with autism.,2010,14,Personal and Ubiquitous Computing,7,db/journals/puc/puc14.html#HayesHMMNY10,https://doi.org/10.1007/s00779-010-0294-8 +Mark W. Newman,Supporting the unremarkable: experiences with the obje Display Mirror.,2007,11,Personal and Ubiquitous Computing,7,db/journals/puc/puc11.html#NewmanDESS07,https://doi.org/10.1007/s00779-006-0117-0 +Simon Robinson,Exploring casual point-and-tilt interactions for mobile geo-blogging.,2010,14,Personal and Ubiquitous Computing,4,db/journals/puc/puc14.html#RobinsonEJ10,https://doi.org/10.1007/s00779-009-0236-5 +Barnan Das,PUCK: an automated prompting system for smart environments: toward achieving automated prompting - challenges involved.,2012,16,Personal and Ubiquitous Computing,7,db/journals/puc/puc16.html#DasCSS12,https://doi.org/10.1007/s00779-011-0445-6 +Tor-Morten Grønli,Context-aware and automatic configuration of mobile devices in cloud-enabled ubiquitous computing.,2014,18,Personal and Ubiquitous Computing,4,db/journals/puc/puc18.html#GronliGY14,https://doi.org/10.1007/s00779-013-0698-3 +Yanna Vogiazou,Design for emergence: experiments with a mixed reality urban playground game.,2007,11,Personal and Ubiquitous Computing,1,db/journals/puc/puc11.html#VogiazouRGRE07,https://doi.org/10.1007/s00779-006-0068-5 +Zakwan Jaroucheh,An approach to domain-based scalable context management architecture in pervasive environments.,2012,16,Personal and Ubiquitous Computing,6,db/journals/puc/puc16.html#JarouchehLS12,https://doi.org/10.1007/s00779-011-0422-0 +Weishan Zhang,A video cloud platform combing online and offline cloud computing technologies.,2015,19,Personal and Ubiquitous Computing,7,db/journals/puc/puc19.html#ZhangXDGLY15,https://doi.org/10.1007/s00779-015-0879-3 +Genevieve Bell,Yesterday's tomorrows: notes on ubiquitous computing's dominant vision.,2007,11,Personal and Ubiquitous Computing,2,db/journals/puc/puc11.html#BellD07,https://doi.org/10.1007/s00779-006-0071-x +Jonas Fritsch,Ink: designing for performative literary interactions.,2014,18,Personal and Ubiquitous Computing,7,db/journals/puc/puc18.html#FritschPVL14,https://doi.org/10.1007/s00779-014-0767-2 +Qing Zhang,Variable elasticity spring-relaxation: improving the accuracy of localization for WSNs with unknown path loss exponent.,2012,16,Personal and Ubiquitous Computing,7,db/journals/puc/puc16.html#ZhangFSF12,https://doi.org/10.1007/s00779-011-0449-2 +Raluca Marin-Perianu,A performance analysis of a wireless body-area network monitoring system for professional cycling.,2013,17,Personal and Ubiquitous Computing,1,db/journals/puc/puc17.html#Marin-PerianuMHTBPR13,https://doi.org/10.1007/s00779-011-0486-x +Tatsuyuki Kawamura,Ubiquitous Memories: a memory externalization system using physical objects.,2007,11,Personal and Ubiquitous Computing,4,db/journals/puc/puc11.html#KawamuraFTKK07,https://doi.org/10.1007/s00779-006-0085-4 +Giacomo Cozzani,Innovative technologies for intangible cultural heritage education and preservation: the case of i-Treasures.,2017,21,Personal and Ubiquitous Computing,2,db/journals/puc/puc21.html#CozzaniPDKK17,https://doi.org/10.1007/s00779-016-0991-z +Chul-Ho Park,A cross-layer approach for multiuser multiplexing on IP mobility.,2014,18,Personal and Ubiquitous Computing,6,db/journals/puc/puc18.html#ParkO14,https://doi.org/10.1007/s00779-013-0741-4 +Julian Seifert,From the private into the public: privacy-respecting mobile interaction techniques for sharing data on surfaces.,2014,18,Personal and Ubiquitous Computing,4,db/journals/puc/puc18.html#SeifertDSHR14,https://doi.org/10.1007/s00779-013-0667-x +Christian Becker,On location models for ubiquitous computing.,2005,9,Personal and Ubiquitous Computing,1,db/journals/puc/puc9.html#BeckerD05,https://doi.org/10.1007/s00779-004-0270-2 +Gheorghita Ghinea,"Special issue on ""Ubiquitous e-Learning Solutions over Heterogeneous Networks"".",2009,13,Personal and Ubiquitous Computing,3,db/journals/puc/puc13.html#GhineaSCTT09,https://doi.org/10.1007/s00779-007-0182-z +Zhu Wang,Cross-domain community detection in heterogeneous social networks.,2014,18,Personal and Ubiquitous Computing,2,db/journals/puc/puc18.html#WangZZYY14,https://doi.org/10.1007/s00779-013-0656-0 +Thilina Halloluwa,Gamification for development: a case of collaborative learning in Sri Lankan primary schools.,2018,22,Personal and Ubiquitous Computing,2,db/journals/puc/puc22.html#HalloluwaVUH18,https://doi.org/10.1007/s00779-017-1073-6 +Ilaria Torre,Supporting users to take informed decisions on privacy settings of personal devices.,2018,22,Personal and Ubiquitous Computing,2,db/journals/puc/puc22.html#TorreSKA18,https://doi.org/10.1007/s00779-017-1068-3 +Wolfgang Trumler,AMUN: an autonomic middleware for the Smart Doorplate Project.,2006,10,Personal and Ubiquitous Computing,1,db/journals/puc/puc10.html#TrumlerPBU06,https://doi.org/10.1007/s00779-005-0029-4 +Ying Zhang,Bring QoS to P2P-based semantic service discovery for the Universal Network.,2009,13,Personal and Ubiquitous Computing,7,db/journals/puc/puc13.html#ZhangHYZCH09,https://doi.org/10.1007/s00779-009-0226-7 +Hua Wang,Self-taught learning via exponential family sparse coding for cost-effective patient thought record categorization.,2014,18,Personal and Ubiquitous Computing,1,db/journals/puc/puc18.html#WangHBLM14,https://doi.org/10.1007/s00779-012-0614-2 +Tom Djajadiningrat,Tangible products: redressing the balance between appearance and action.,2004,8,Personal and Ubiquitous Computing,5,db/journals/puc/puc8.html#DjajadiningratWFO04,https://doi.org/10.1007/s00779-004-0293-8 +Tim van Kasteren,An activity monitoring system for elderly care using generative and discriminative models.,2010,14,Personal and Ubiquitous Computing,6,db/journals/puc/puc14.html#KasterenEK10,https://doi.org/10.1007/s00779-009-0277-9 +Serge Offermans,User interaction with everyday lighting systems.,2014,18,Personal and Ubiquitous Computing,8,db/journals/puc/puc18.html#OffermansEE14,https://doi.org/10.1007/s00779-014-0759-2 +Marcelo Coelho,Shape-changing interfaces.,2011,15,Personal and Ubiquitous Computing,2,db/journals/puc/puc15.html#CoelhoZ11,https://doi.org/10.1007/s00779-010-0311-y +Yuanyi Chen,GraphLoc: a graph-based method for indoor subarea localization with zero-configuration.,2017,21,Personal and Ubiquitous Computing,3,db/journals/puc/puc21.html#ChenGSC17,https://doi.org/10.1007/s00779-017-1011-7 +Barry Brumitt,Better Living Through Geometry.,2001,5,Personal and Ubiquitous Computing,1,db/journals/puc/puc5.html#BrumittS01,https://doi.org/10.1007/s007790170028 +Anna Vallgårda,Giving form to computational things: developing a practice of interaction design.,2014,18,Personal and Ubiquitous Computing,3,db/journals/puc/puc18.html#Vallgarda14,https://doi.org/10.1007/s00779-013-0685-8 +Michael Rose,Music in the Home: Interfaces for Music Appliances.,2000,4,Personal and Ubiquitous Computing,1,db/journals/puc/puc4.html#Rose00,https://doi.org/10.1007/BF01613598 +Elizabeth Evans,The Malthusian Paradox: performance in an alternate reality game.,2014,18,Personal and Ubiquitous Computing,7,db/journals/puc/puc18.html#EvansFM14,https://doi.org/10.1007/s00779-014-0762-7 +Miguel Bruns Alonso,Measuring and adapting behavior during product interaction to influence affect.,2013,17,Personal and Ubiquitous Computing,1,db/journals/puc/puc17.html#AlonsoHKH13,https://doi.org/10.1007/s00779-011-0472-3 +Thad Starner,A Wearable Computer-Based American Sign Language Recogniser.,1997,1,Personal and Ubiquitous Computing,3,db/journals/puc/puc1.html#StarnerWP97,https://doi.org/10.1007/BF01682027 +Yun Zhou 0003,Innovative wearable interfaces: an exploratory analysis of paper-based interfaces with camera-glasses device unit.,2014,18,Personal and Ubiquitous Computing,4,db/journals/puc/puc18.html#ZhouXDC14,https://doi.org/10.1007/s00779-013-0697-4 +Brianne Campbell,Cell phone ownership and use among mental health outpatients in the USA.,2015,19,Personal and Ubiquitous Computing,2,db/journals/puc/puc19.html#CampbellCCDB15,https://doi.org/10.1007/s00779-014-0822-z +Hui Wang 0006,A utility maximization approach for information-communication tradeoff in Wireless Body Area Networks.,2014,18,Personal and Ubiquitous Computing,8,db/journals/puc/puc18.html#WangADZ14,https://doi.org/10.1007/s00779-014-0792-1 +Mikael Goldstein,Providing proper affordances when transferring source metaphors from information appliances to a 3G mobile multipurpose handset.,2003,7,Personal and Ubiquitous Computing,6,db/journals/puc/puc7.html#GoldsteinNA03,https://doi.org/10.1007/s00779-003-0252-9 +Alexandre Benoit,Multimodal focus attention and stress detection and feedback in an augmented driver simulator.,2009,13,Personal and Ubiquitous Computing,1,db/journals/puc/puc13.html#BenoitBCNLTLMC09,https://doi.org/10.1007/s00779-007-0173-0 +Hande özgür Alemdar,Daily life behaviour monitoring for health assessment using machine learning: bridging the gap between domains.,2015,19,Personal and Ubiquitous Computing,2,db/journals/puc/puc19.html#AlemdarTE15,https://doi.org/10.1007/s00779-014-0823-y +Irene Zaragozá,Ubiquitous monitoring and assessment of childhood obesity.,2013,17,Personal and Ubiquitous Computing,6,db/journals/puc/puc17.html#ZaragozaGRCSA13,https://doi.org/10.1007/s00779-012-0562-x +Joel Lanir,Visualizing museum visitors' behavior: Where do they go and what do they do there?,2017,21,Personal and Ubiquitous Computing,2,db/journals/puc/puc21.html#LanirKSYLS17,https://doi.org/10.1007/s00779-016-0994-9 +Cornelia Kappeler-Setz,Towards long term monitoring of electrodermal activity in daily life.,2013,17,Personal and Ubiquitous Computing,2,db/journals/puc/puc17.html#Kappeler-SetzGSAT13,https://doi.org/10.1007/s00779-011-0463-4 +Nam-Uk Kim,Blocking-artifact detection in frequency domain for frame-rate up-conversion.,2018,22,Personal and Ubiquitous Computing,1,db/journals/puc/puc22.html#KimL18,https://doi.org/10.1007/s00779-017-1019-z +François Portet,Design and evaluation of a smart home voice interface for the elderly: acceptability and objection aspects.,2013,17,Personal and Ubiquitous Computing,1,db/journals/puc/puc17.html#PortetVGRM13,https://doi.org/10.1007/s00779-011-0470-5 +Alexandra Weilenmann,Mobile video literacy: negotiating the use of a new visual technology.,2014,18,Personal and Ubiquitous Computing,3,db/journals/puc/puc18.html#WeilenmannSE14,https://doi.org/10.1007/s00779-013-0703-x +Vangelis Metsis,Non-invasive analysis of sleep patterns via multimodal sensor input.,2014,18,Personal and Ubiquitous Computing,1,db/journals/puc/puc18.html#MetsisKAM14,https://doi.org/10.1007/s00779-012-0623-1 +Shun-yuan Yeh,GETA sandals: a footstep location tracking system.,2007,11,Personal and Ubiquitous Computing,6,db/journals/puc/puc11.html#YehCWCH07,https://doi.org/10.1007/s00779-006-0098-z +John A. Hughes,Patterns of Home Life: Informing Design For Domestic Environments.,2000,4,Personal and Ubiquitous Computing,1,db/journals/puc/puc4.html#HughesORRV00,https://doi.org/10.1007/BF01613596 +Leonel Morgado,Integration scenarios of virtual worlds in learning management systems using the MULTIS approach.,2017,21,Personal and Ubiquitous Computing,6,db/journals/puc/puc21.html#MorgadoPFMAVPCP17,https://doi.org/10.1007/s00779-017-1063-8 +Hong Z. Tan,Tactual Displays for Wearable Computing.,1997,1,Personal and Ubiquitous Computing,3,db/journals/puc/puc1.html#TanP97,https://doi.org/10.1007/BF01682025 +Yinlong Zhang,Robust orientation estimate via inertial guided visual sample consensus.,2018,22,Personal and Ubiquitous Computing,2,db/journals/puc/puc22.html#ZhangLLAT18,https://doi.org/10.1007/s00779-017-1040-2 +Marc Langheinrich,A survey of RFID privacy approaches.,2009,13,Personal and Ubiquitous Computing,6,db/journals/puc/puc13.html#Langheinrich09,https://doi.org/10.1007/s00779-008-0213-4 +Xiaoguang Niu,An energy-efficient source-anonymity protocol in surveillance systems.,2016,20,Personal and Ubiquitous Computing,5,db/journals/puc/puc20.html#NiuZYCJL16,https://doi.org/10.1007/s00779-016-0949-1 +Jesús Carretero,The Internet of Things: connecting the world.,2014,18,Personal and Ubiquitous Computing,2,db/journals/puc/puc18.html#CarreteroG14,https://doi.org/10.1007/s00779-013-0665-z +Allison Druin,When are Personal Technologies for Children?,2001,5,Personal and Ubiquitous Computing,3,db/journals/puc/puc5.html#DruinI01,https://doi.org/10.1007/s007790170008 +Ren-Hung Hwang,Uplink access control for machine-type communications in LTE-A networks.,2016,20,Personal and Ubiquitous Computing,6,db/journals/puc/puc20.html#HwangHLW16,https://doi.org/10.1007/s00779-016-0961-5 +Peter C. Wright,Editorial.,2008,12,Personal and Ubiquitous Computing,5,db/journals/puc/puc12.html#WrightBM08,https://doi.org/10.1007/s00779-007-0159-y +Li Zang,Improved dynamic remote data auditing protocol for smart city security.,2017,21,Personal and Ubiquitous Computing,5,db/journals/puc/puc21.html#ZangYXLDT17,https://doi.org/10.1007/s00779-017-1052-y +Nazneen,Supporting parents for in-home capture of problem behaviors of children with developmental disabilities.,2012,16,Personal and Ubiquitous Computing,2,db/journals/puc/puc16.html#NazneenRRFCAA12,https://doi.org/10.1007/s00779-011-0385-1 +Aaron J. Quigley,Special issue on interaction with coupled and public displays.,2009,13,Personal and Ubiquitous Computing,8,db/journals/puc/puc13.html#QuigleySI09,https://doi.org/10.1007/s00779-009-0242-7 +Guang-Yu Zhu,Research on the comprehensive traffic state evaluation model linked with drivers' perception under the vehicle networking.,2014,18,Personal and Ubiquitous Computing,8,db/journals/puc/puc18.html#ZhuLYZ14,https://doi.org/10.1007/s00779-014-0801-4 +Hung-Min Sun,A collaborative routing protocol against routing disruptions in MANETs.,2013,17,Personal and Ubiquitous Computing,5,db/journals/puc/puc17.html#SunCYC13,https://doi.org/10.1007/s00779-012-0537-y +Imran Erguler,Security flaws in a recent RFID delegation protocol.,2012,16,Personal and Ubiquitous Computing,3,db/journals/puc/puc16.html#ErgulerA12,https://doi.org/10.1007/s00779-011-0393-1 +Tom Martin,Note from the editors of the special issue of the best paper nominees from the 2011 International Symposium on Wearable Computers.,2013,17,Personal and Ubiquitous Computing,3,db/journals/puc/puc17.html#MartinS13,https://doi.org/10.1007/s00779-011-0488-8 +Zombo Fu,Reference-based importance assessment model of identity information.,2013,17,Personal and Ubiquitous Computing,5,db/journals/puc/puc17.html#FuCWY13,https://doi.org/10.1007/s00779-012-0538-x +Saumil Dharia,Social recommendations for personalized fitness assistance.,2018,22,Personal and Ubiquitous Computing,2,db/journals/puc/puc22.html#DhariaEJPVVY18,https://doi.org/10.1007/s00779-017-1039-8 +Barbara Maria Grüter,Methodological issues in studying player experiences of location aware games.,2011,15,Personal and Ubiquitous Computing,1,db/journals/puc/puc15.html#GruterMBB11,https://doi.org/10.1007/s00779-010-0305-9 +Claudia Linnhoff-Popien,Personal and ubiquitous computing: special issue on location and context awareness.,2007,11,Personal and Ubiquitous Computing,6,db/journals/puc/puc11.html#Linnhoff-PopienS07,https://doi.org/10.1007/s00779-006-0092-5 +Leonardo Ramirez,Landmarke: an ad hoc deployable ubicomp infrastructure to support indoor navigation of firefighters.,2012,16,Personal and Ubiquitous Computing,8,db/journals/puc/puc16.html#RamirezDGBSW12,https://doi.org/10.1007/s00779-011-0462-5 +Luís A. Castro,Behavioral data gathering for assessing functional status and health in older adults using mobile phones.,2015,19,Personal and Ubiquitous Computing,2,db/journals/puc/puc19.html#CastroFQP15,https://doi.org/10.1007/s00779-014-0825-9 +Yue-Shan Chang,A near field communication-driven home automation framework.,2013,17,Personal and Ubiquitous Computing,1,db/journals/puc/puc17.html#ChangWH13,https://doi.org/10.1007/s00779-011-0484-z +Andy Dearden,Kheti: mobile multimedia in an agricultural co-operative.,2011,15,Personal and Ubiquitous Computing,6,db/journals/puc/puc15.html#DeardenMR11,https://doi.org/10.1007/s00779-010-0335-3 +Francisco Javier Ordóñez,Sensor-based Bayesian detection of anomalous living patterns in a home setting.,2015,19,Personal and Ubiquitous Computing,2,db/journals/puc/puc19.html#OrdonezTS15,https://doi.org/10.1007/s00779-014-0820-1 +Seungmin Rho,Agent societies and social networks for ubiquitous computing.,2013,17,Personal and Ubiquitous Computing,8,db/journals/puc/puc17.html#RhoCD13,https://doi.org/10.1007/s00779-013-0723-6 +Jason Pascoe,Developing Personal Technologies for the Field.,1998,2,Personal and Ubiquitous Computing,1,db/journals/puc/puc2.html#PascoeMR98,https://doi.org/10.1007/BF01581844 +Fabio Pianesi,Multimodal support to group dynamics.,2008,12,Personal and Ubiquitous Computing,3,db/journals/puc/puc12.html#PianesiZNLFL08,https://doi.org/10.1007/s00779-007-0144-5 +Paul Dourish,Resistance is futile: reading science fiction alongside ubiquitous computing.,2014,18,Personal and Ubiquitous Computing,4,db/journals/puc/puc18.html#DourishB14,https://doi.org/10.1007/s00779-013-0678-7 +Massimo Ficco,Hybrid indoor and outdoor location services for new generation mobile terminals.,2014,18,Personal and Ubiquitous Computing,2,db/journals/puc/puc18.html#FiccoPC14,https://doi.org/10.1007/s00779-013-0644-4 +Sangjun Jeon,A recovery method of deleted record for SQLite database.,2012,16,Personal and Ubiquitous Computing,6,db/journals/puc/puc16.html#JeonBBL12,https://doi.org/10.1007/s00779-011-0428-7 +Steve Mann,Editorial.,1997,1,Personal and Ubiquitous Computing,3,db/journals/puc/puc1.html#Mann97a,https://doi.org/10.1007/BF02199210 +Yuichiro Takeuchi,A user-adaptive city guide system with an unobtrusive navigation interface.,2009,13,Personal and Ubiquitous Computing,2,db/journals/puc/puc13.html#TakeuchiS09,https://doi.org/10.1007/s00779-007-0192-x +Leysia Palen,When home base is not a place: parents' use of mobile telephones.,2007,11,Personal and Ubiquitous Computing,5,db/journals/puc/puc11.html#PalenH07,https://doi.org/10.1007/s00779-006-0078-3 +Bin Yu 0004,DeLight: biofeedback through ambient light for stress intervention and relaxation assistance.,2018,22,Personal and Ubiquitous Computing,4,db/journals/puc/puc22.html#YuHFF18,https://doi.org/10.1007/s00779-018-1141-6 +Junsheng Zhang,Building text-based temporally linked event network for scientific big data analytics.,2016,20,Personal and Ubiquitous Computing,5,db/journals/puc/puc20.html#ZhangYSF16,https://doi.org/10.1007/s00779-016-0940-x +Jiankang Ren,A sensitive data aggregation scheme for body sensor networks based on data hiding.,2013,17,Personal and Ubiquitous Computing,7,db/journals/puc/puc17.html#RenWY13,https://doi.org/10.1007/s00779-012-0566-6 +Guangquan Xu,An algorithm on fairness verification of mobile sink routing in wireless sensor network.,2013,17,Personal and Ubiquitous Computing,5,db/journals/puc/puc17.html#XuLXXGLFM13,https://doi.org/10.1007/s00779-012-0536-z +Mirco Musolesi,EMMA: Epidemic Messaging Middleware for Ad hoc networks.,2006,10,Personal and Ubiquitous Computing,1,db/journals/puc/puc10.html#MusolesiMH06,https://doi.org/10.1007/s00779-005-0037-4 +Eyhab Al-Masri,MobiEureka: an approach for enhancing the discovery of mobile web services.,2010,14,Personal and Ubiquitous Computing,7,db/journals/puc/puc14.html#Al-MasriM10,https://doi.org/10.1007/s00779-009-0252-5 +Tatsuo Nakajima,A software infrastructure for supporting spontaneous and personalized interaction in home computing environments.,2006,10,Personal and Ubiquitous Computing,6,db/journals/puc/puc10.html#NakajimaS06,https://doi.org/10.1007/s00779-005-0056-1 +Yunchuan Sun,An extensible and active semantic model of information organizing for the Internet of Things.,2014,18,Personal and Ubiquitous Computing,8,db/journals/puc/puc18.html#SunJ14,https://doi.org/10.1007/s00779-014-0786-z +Sotirios Terzis,Middleware for pervasive and ad hoc computing.,2006,10,Personal and Ubiquitous Computing,1,db/journals/puc/puc10.html#TerzisNNW06,https://doi.org/10.1007/s00779-005-0040-9 +Wei-Po Lee,Customising WAP-based information services on mobile networks.,2003,7,Personal and Ubiquitous Computing,6,db/journals/puc/puc7.html#LeeL03,https://doi.org/10.1007/s00779-003-0247-6 +Marius Wernke,A classification of location privacy attacks and approaches.,2014,18,Personal and Ubiquitous Computing,1,db/journals/puc/puc18.html#WernkeSDR14,https://doi.org/10.1007/s00779-012-0633-z +Anthony Jameson,Modelling both the Context and the User.,2001,5,Personal and Ubiquitous Computing,1,db/journals/puc/puc5.html#Jameson01,https://doi.org/10.1007/s007790170025 +Chiung-Ying Wang,Mobility management in ubiquitous environments.,2011,15,Personal and Ubiquitous Computing,3,db/journals/puc/puc15.html#WangHH11,https://doi.org/10.1007/s00779-010-0328-2 +Christophe Salzmann,End-to-end adaptation scheme for ubiquitous remote experimentation.,2009,13,Personal and Ubiquitous Computing,3,db/journals/puc/puc13.html#SalzmannGM09,https://doi.org/10.1007/s00779-007-0184-x +Zilu Liang,SleepExplorer: a visualization tool to make sense of correlations between personal sleep data and contextual factors.,2016,20,Personal and Ubiquitous Computing,6,db/journals/puc/puc20.html#LiangPLNBKL16,https://doi.org/10.1007/s00779-016-0960-6 +Junsheng Zhang,A synergetic mechanism for digital library service in mobile and cloud computing environment.,2014,18,Personal and Ubiquitous Computing,8,db/journals/puc/puc18.html#ZhangSZQ14,https://doi.org/10.1007/s00779-014-0798-8 +Emilia I. Barakova,Trends in measuring human behavior and interaction.,2013,17,Personal and Ubiquitous Computing,1,db/journals/puc/puc17.html#BarakovaSRN13,https://doi.org/10.1007/s00779-011-0478-x +Marko T. Heikkinen,Benefits and challenges of new mobile service development in R and D network.,2008,12,Personal and Ubiquitous Computing,1,db/journals/puc/puc12.html#HeikkinenS08,https://doi.org/10.1007/s00779-006-0127-y +Genevieve Bell,Back to the shed: gendered visions of technology and domesticity.,2007,11,Personal and Ubiquitous Computing,5,db/journals/puc/puc11.html#BellD07a,https://doi.org/10.1007/s00779-006-0073-8 +ZhangBing Zhou,EGF-tree: an energy-efficient index tree for facilitating multi-region query aggregation in the internet of things.,2014,18,Personal and Ubiquitous Computing,4,db/journals/puc/puc18.html#ZhouTZNW14,https://doi.org/10.1007/s00779-013-0710-y +Mike Sharples,The Design and Implementation of a Mobile Learning Resource.,2002,6,Personal and Ubiquitous Computing,3,db/journals/puc/puc6.html#SharplesCW02,https://doi.org/10.1007/s007790200021 +Stina Nylander,Mobile access to real-time information-the case of autonomous stock brokering.,2004,8,Personal and Ubiquitous Computing,1,db/journals/puc/puc8.html#NylanderBB04,https://doi.org/10.1007/s00779-003-0257-4 +Robert Steele,Telehealth and ubiquitous computing for bandwidth-constrained rural and remote areas.,2013,17,Personal and Ubiquitous Computing,3,db/journals/puc/puc17.html#SteeleL13,https://doi.org/10.1007/s00779-012-0506-5 +Kyung-Yong Chung,Recent trends on convergence and ubiquitous computing.,2014,18,Personal and Ubiquitous Computing,6,db/journals/puc/puc18.html#Chung14,https://doi.org/10.1007/s00779-013-0743-2 +Zaobo He,An energy efficient privacy-preserving content sharing scheme in mobile social networks.,2016,20,Personal and Ubiquitous Computing,5,db/journals/puc/puc20.html#HeCHTSL16,https://doi.org/10.1007/s00779-016-0952-6 +Were Oyomno,Usability study of ME2.0 - User interface design for mobile context enhanced personalisation software.,2013,17,Personal and Ubiquitous Computing,2,db/journals/puc/puc17.html#OyomnoJKH13,https://doi.org/10.1007/s00779-011-0495-9 +Matthew Cooper,LoCo: boosting for indoor location classification combining Wi-Fi and BLE.,2016,20,Personal and Ubiquitous Computing,1,db/journals/puc/puc20.html#CooperBFK16,https://doi.org/10.1007/s00779-015-0899-z +John Dowell,Erratum to: Companion apps for information-rich television programmes: representation and interaction.,2015,19,Personal and Ubiquitous Computing,7,db/journals/puc/puc19.html#DowellMKA15a,https://doi.org/10.1007/s00779-015-0868-6 +Kyusuk Han,A novel secure key paring protocol for RF4CE ubiquitous smart home systems.,2013,17,Personal and Ubiquitous Computing,5,db/journals/puc/puc17.html#HanKSK13,https://doi.org/10.1007/s00779-012-0541-2 +Karanya Sitdhisanguan,Using tangible user interfaces in computer-based training systems for low-functioning autistic children.,2012,16,Personal and Ubiquitous Computing,2,db/journals/puc/puc16.html#SitdhisanguanCDO12,https://doi.org/10.1007/s00779-011-0382-4 +Jinjun Liu,Redundancy reduction for indoor device-free localization.,2017,21,Personal and Ubiquitous Computing,1,db/journals/puc/puc21.html#LiuAHPCZ17,https://doi.org/10.1007/s00779-016-0979-8 +Mario Romero,Alien presence in the home: the design of Tableau Machine.,2008,12,Personal and Ubiquitous Computing,5,db/journals/puc/puc12.html#RomeroPM08,https://doi.org/10.1007/s00779-007-0190-z +Thomas Pederson,Magic Touch: A Simple Object Location Tracking System Enabling the Development of Physical-Virtual Artefacts in Office Environments.,2001,5,Personal and Ubiquitous Computing,1,db/journals/puc/puc5.html#Pederson01,https://doi.org/10.1007/s007790170031 +Joseph A. Paradiso,Identifying and facilitating social interaction with a wearable wireless sensor network.,2010,14,Personal and Ubiquitous Computing,2,db/journals/puc/puc14.html#ParadisoGLSMAMP10,https://doi.org/10.1007/s00779-009-0239-2 +Adrian David Cheok,Confucius computer: a philosophical digital agent for intergenerational philosophical play.,2017,21,Personal and Ubiquitous Computing,2,db/journals/puc/puc21.html#CheokEK17,https://doi.org/10.1007/s00779-016-0995-8 +Michael Kenteris,An innovative mobile electronic tourist guide application.,2009,13,Personal and Ubiquitous Computing,2,db/journals/puc/puc13.html#KenterisGE09,https://doi.org/10.1007/s00779-007-0191-y +Eric Schweikardt,Experiments in design synthesis when behavior is determined by shape.,2011,15,Personal and Ubiquitous Computing,2,db/journals/puc/puc15.html#SchweikardtG11,https://doi.org/10.1007/s00779-010-0310-z +Michael S. Horn,Tangible interaction and learning: the case for a hybrid approach.,2012,16,Personal and Ubiquitous Computing,4,db/journals/puc/puc16.html#HornCB12,https://doi.org/10.1007/s00779-011-0404-2 +Juha Marila,Time-out in user interface: the case of mobile text input.,2004,8,Personal and Ubiquitous Computing,2,db/journals/puc/puc8.html#MarilaR04,https://doi.org/10.1007/s00779-004-0264-0 +Andrew J. May,Pedestrian navigation aids: information requirements and design implications.,2003,7,Personal and Ubiquitous Computing,6,db/journals/puc/puc7.html#MayRBT03,https://doi.org/10.1007/s00779-003-0248-5 +Dan J. Smith,Acoustic environment as an indicator of social and physical context.,2006,10,Personal and Ubiquitous Computing,4,db/journals/puc/puc10.html#SmithMR06,https://doi.org/10.1007/s00779-005-0045-4 +Lu Leng,Palmprint recognition system on mobile devices with double-line-single-point assistance.,2018,22,Personal and Ubiquitous Computing,1,db/journals/puc/puc22.html#LengGCK18,https://doi.org/10.1007/s00779-017-1105-2 +Muhammad Ashad Kabir,User-centric social context information management: an ontology-based approach and platform.,2014,18,Personal and Ubiquitous Computing,5,db/journals/puc/puc18.html#KabirHYC14,https://doi.org/10.1007/s00779-013-0720-9 +Roger C. F. Tucker,Speech-as-data technologies for personal information devices.,2003,7,Personal and Ubiquitous Computing,1,db/journals/puc/puc7.html#TuckerHH03,https://doi.org/10.1007/s00779-002-0210-y +Kabsu Han,Implementation of the personal healthcare services on automotive environments.,2014,18,Personal and Ubiquitous Computing,3,db/journals/puc/puc18.html#HanJC14,https://doi.org/10.1007/s00779-013-0672-0 +Linas Baltrunas,Context relevance assessment and exploitation in mobile recommender systems.,2012,16,Personal and Ubiquitous Computing,5,db/journals/puc/puc16.html#BaltrunasLPR12,https://doi.org/10.1007/s00779-011-0417-x +Keith Cheverst,Exploring Context-aware Information Push.,2002,6,Personal and Ubiquitous Computing,4,db/journals/puc/puc6.html#CheverstMD02,https://doi.org/10.1007/s007790200028 +Juha Lehikoinen,An Empirical and Theoretical Evaluation of BinScroll: A Rapid Selection Technique for Alphanumeric Lists.,2002,6,Personal and Ubiquitous Computing,2,db/journals/puc/puc6.html#LehikoinenS02a,https://doi.org/10.1007/s007790200013 +Juha Lehikoinen,Accessing Context in Wearable Computers.,2002,6,Personal and Ubiquitous Computing,1,db/journals/puc/puc6.html#LehikoinenS02,https://doi.org/10.1007/s007790200006 +Hyejin Kim,IMAF: in situ indoor modeling and annotation framework on mobile phones.,2013,17,Personal and Ubiquitous Computing,3,db/journals/puc/puc17.html#KimRW13,https://doi.org/10.1007/s00779-012-0516-3 +Mark S. Ackerman,Privacy in pervasive environments: next generation labeling protocols.,2004,8,Personal and Ubiquitous Computing,6,db/journals/puc/puc8.html#Ackerman04,https://doi.org/10.1007/s00779-004-0305-8 +Antti Oulasvirta,Making the ordinary visible in microblogs.,2010,14,Personal and Ubiquitous Computing,3,db/journals/puc/puc14.html#OulasvirtaLKR10,https://doi.org/10.1007/s00779-009-0259-y +Shahram Izadi,Citywide: Supporting Interactive Digital Experiences Across Physical Space.,2002,6,Personal and Ubiquitous Computing,4,db/journals/puc/puc6.html#IzadiFBFGRS02,https://doi.org/10.1007/s007790200030 +K. S. Gayathri,Hierarchical activity recognition for dementia care using Markov Logic Network.,2015,19,Personal and Ubiquitous Computing,2,db/journals/puc/puc19.html#GayathriER15,https://doi.org/10.1007/s00779-014-0827-7 +Tao Zhou 0007,An empirical examination of the determinants of mobile purchase.,2013,17,Personal and Ubiquitous Computing,1,db/journals/puc/puc17.html#Zhou13,https://doi.org/10.1007/s00779-011-0485-y +José M. Noguera,Interaction and visualization of 3D virtual environments on mobile devices.,2013,17,Personal and Ubiquitous Computing,7,db/journals/puc/puc17.html#NogueraT13,https://doi.org/10.1007/s00779-012-0595-1 +Yunchuan Sun,Advancing researches on IoT systems and intelligent applications.,2018,22,Personal and Ubiquitous Computing,3,db/journals/puc/puc22.html#SunZBY18,https://doi.org/10.1007/s00779-018-1159-9 +Chiara Rossitto,Interweaving place and story in a location-based audio drama.,2016,20,Personal and Ubiquitous Computing,2,db/journals/puc/puc20.html#RossittoBE16,https://doi.org/10.1007/s00779-016-0908-x +Haeyong Chung,VisPorter: facilitating information sharing for collaborative sensemaking on multiple displays.,2014,18,Personal and Ubiquitous Computing,5,db/journals/puc/puc18.html#ChungNSCQ14,https://doi.org/10.1007/s00779-013-0727-2 +Hans Gellersen,Supporting device discovery and spontaneous interaction with spatial references.,2009,13,Personal and Ubiquitous Computing,4,db/journals/puc/puc13.html#GellersenFGGKKRS09,https://doi.org/10.1007/s00779-008-0206-3 +Francisco Borrego-Jaraba,A NFC-based pervasive solution for city touristic surfing.,2011,15,Personal and Ubiquitous Computing,7,db/journals/puc/puc15.html#Borrego-JarabaRG11,https://doi.org/10.1007/s00779-010-0364-y +Xiong Luo,A laguerre neural network-based ADP learning scheme with its application to tracking control in the Internet of Things.,2016,20,Personal and Ubiquitous Computing,3,db/journals/puc/puc20.html#LuoLZWZ16,https://doi.org/10.1007/s00779-016-0916-x +Mark Blythe,The hitchhiker's guide to ubicomp: using techniques from literary and critical theory to reframe scientific agendas.,2014,18,Personal and Ubiquitous Computing,4,db/journals/puc/puc18.html#Blythe14,https://doi.org/10.1007/s00779-013-0679-6 +Jinhyuk Choi,Organizing and presenting geospatial tags in location-based augmented reality.,2011,15,Personal and Ubiquitous Computing,6,db/journals/puc/puc15.html#ChoiJK11,https://doi.org/10.1007/s00779-010-0343-3 +Dimitris Vassis,Providing advanced remote medical treatment services through pervasive environments.,2010,14,Personal and Ubiquitous Computing,6,db/journals/puc/puc14.html#VassisBSP10,https://doi.org/10.1007/s00779-009-0273-0 +Joseph F. McCarthy,Active Environments: Sensing and Responding to Groups of People.,2001,5,Personal and Ubiquitous Computing,1,db/journals/puc/puc5.html#McCarthy01,https://doi.org/10.1007/s007790170036 +Jie Zhang,Hybrid computation offloading for smart home automation in mobile cloud computing.,2018,22,Personal and Ubiquitous Computing,1,db/journals/puc/puc22.html#ZhangZLGZQXD18,https://doi.org/10.1007/s00779-017-1095-0 +Cristiano Storni,Design challenges for ubiquitous and personal computing in chronic disease care and patient empowerment: a case study rethinking diabetes self-monitoring.,2014,18,Personal and Ubiquitous Computing,5,db/journals/puc/puc18.html#Storni14,https://doi.org/10.1007/s00779-013-0707-6 +Mórna Ní Chonchúir,The enchanting potential of technology: a dialogical case study of enchantment and the Internet.,2008,12,Personal and Ubiquitous Computing,5,db/journals/puc/puc12.html#ChonchuirM08,https://doi.org/10.1007/s00779-007-0157-0 +Peter Fröhlich,Mobile Spatial Interaction.,2009,13,Personal and Ubiquitous Computing,4,db/journals/puc/puc13.html#FrohlichSB09,https://doi.org/10.1007/s00779-008-0208-1 +Trinh Minh Tri Do,Human interaction discovery in smartphone proximity networks.,2013,17,Personal and Ubiquitous Computing,3,db/journals/puc/puc17.html#DoG13,https://doi.org/10.1007/s00779-011-0489-7 +Yi Ouyang,SentiStory: multi-grained sentiment analysis and event summarization with crowdsourced social media data.,2017,21,Personal and Ubiquitous Computing,1,db/journals/puc/puc21.html#OuyangGZYZ17,https://doi.org/10.1007/s00779-016-0977-x +Mariwan Ahmed,An efficient algorithm for partially matched services in internet of services.,2016,20,Personal and Ubiquitous Computing,3,db/journals/puc/puc20.html#AhmedLHYA16,https://doi.org/10.1007/s00779-016-0917-9 +Patrick de la Hamette,Architecture and applications of the FingerMouse: a smart stereo camera for wearable computing HCI.,2008,12,Personal and Ubiquitous Computing,2,db/journals/puc/puc12.html#HametteT08,https://doi.org/10.1007/s00779-006-0109-0 +Mikael B. Skov,Supporting information access in a hospital ward by a context-aware mobile electronic patient record.,2006,10,Personal and Ubiquitous Computing,4,db/journals/puc/puc10.html#SkovH06,https://doi.org/10.1007/s00779-005-0049-0 +Frances Aldrich,Pager Messages as Self-Reminders: a Case Study of their Use in Memory Impairment.,1998,2,Personal and Ubiquitous Computing,1,db/journals/puc/puc2.html#Aldrich98,https://doi.org/10.1007/BF01581841 +Claudia Repetto,Virtual reality and mobile phones in the treatment of generalized anxiety disorders: a phase-2 clinical trial.,2013,17,Personal and Ubiquitous Computing,2,db/journals/puc/puc17.html#RepettoGPCRR13,https://doi.org/10.1007/s00779-011-0467-0 +Mette Ramsgard Thomsen,Sites of flux: imagining space in the dance-architectures of The Changing Room and Sea Unsea.,2008,12,Personal and Ubiquitous Computing,5,db/journals/puc/puc12.html#Thomsen08,https://doi.org/10.1007/s00779-007-0160-5 +Márcia Abech,A model for learning objects adaptation in light of mobile and context-aware computing.,2016,20,Personal and Ubiquitous Computing,2,db/journals/puc/puc20.html#AbechCBRR16,https://doi.org/10.1007/s00779-016-0902-3 +Mayu Iwata,A content search system considering the activity and context of a mobile user.,2013,17,Personal and Ubiquitous Computing,5,db/journals/puc/puc17.html#IwataMHKSMKUHNT13,https://doi.org/10.1007/s00779-012-0550-1 +Katayoun Farrahi,A probabilistic approach to mining mobile phone data sequences.,2014,18,Personal and Ubiquitous Computing,1,db/journals/puc/puc18.html#FarrahiG14,https://doi.org/10.1007/s00779-013-0640-8 +Lejla Batina,Extending ECC-based RFID authentication protocols to privacy-preserving multi-party grouping proofs.,2012,16,Personal and Ubiquitous Computing,3,db/journals/puc/puc16.html#BatinaLSSV12,https://doi.org/10.1007/s00779-011-0392-2 +Michael Rohs,Impact of item density on the utility of visual context in magic lens interactions.,2009,13,Personal and Ubiquitous Computing,8,db/journals/puc/puc13.html#RohsSSENK09,https://doi.org/10.1007/s00779-009-0247-2 +Krupa Nathwani,Perceptions versus expectations of multimedia messaging service (MMS).,2005,9,Personal and Ubiquitous Computing,4,db/journals/puc/puc9.html#NathwaniE05,https://doi.org/10.1007/s00779-004-0320-9 +Chi-Yi Lin,A location-based personal task reminder for mobile users.,2014,18,Personal and Ubiquitous Computing,2,db/journals/puc/puc18.html#LinH14,https://doi.org/10.1007/s00779-013-0646-2 +Zaobo He,Customized privacy preserving for inherent data and latent data.,2017,21,Personal and Ubiquitous Computing,1,db/journals/puc/puc21.html#HeCSLC17,https://doi.org/10.1007/s00779-016-0972-2 +Abdulrahman Alhothaily,A novel verification method for payment card systems.,2015,19,Personal and Ubiquitous Computing,7,db/journals/puc/puc19.html#AlhothailyACB15,https://doi.org/10.1007/s00779-015-0881-9 +Sandra Buchmüller,Bridging the gender and generation gap by ICT applying a participatory design process.,2011,15,Personal and Ubiquitous Computing,7,db/journals/puc/puc15.html#BuchmullerJBS11,https://doi.org/10.1007/s00779-011-0388-y +Peter Coschurba,Metaphors and Context-Aware Information Access.,2001,5,Personal and Ubiquitous Computing,1,db/journals/puc/puc5.html#CoschurbaBKL01,https://doi.org/10.1007/s007790170022 +Jesús Quirce García,A study on PDAs for onboard applications and technologies and methodologies.,2011,15,Personal and Ubiquitous Computing,5,db/journals/puc/puc15.html#Garcia11,https://doi.org/10.1007/s00779-010-0318-4 +Deborah J. Cohen,Developing a model for understanding patient collection of observations of daily living: a qualitative meta-synthesis of the Project HealthDesign program.,2015,19,Personal and Ubiquitous Computing,1,db/journals/puc/puc19.html#CohenKHDAS15,https://doi.org/10.1007/s00779-014-0804-1 +Fan Li 0001,CondioSense: high-quality context-aware service for audio sensing system via active sonar.,2017,21,Personal and Ubiquitous Computing,1,db/journals/puc/puc21.html#LiCSZLW17,https://doi.org/10.1007/s00779-016-0981-1 +M. Poulymenopoulou,E-EPR: a workflow-based electronic emergency patient record.,2014,18,Personal and Ubiquitous Computing,1,db/journals/puc/puc18.html#PoulymenopoulouMV14,https://doi.org/10.1007/s00779-012-0620-4 +Won Ho Chung,A smartphone watch for mobile surveillance service.,2012,16,Personal and Ubiquitous Computing,6,db/journals/puc/puc16.html#Chung12,https://doi.org/10.1007/s00779-011-0435-8 +Xiaodong Liu,A virtual uneven grid-based routing protocol for mobile sink-based WSNs in a smart home system.,2018,22,Personal and Ubiquitous Computing,1,db/journals/puc/puc22.html#LiuL18,https://doi.org/10.1007/s00779-017-1093-2 +Beth E. Kolko,Reflection on research methodologies for ubicomp in developing contexts.,2011,15,Personal and Ubiquitous Computing,6,db/journals/puc/puc15.html#KolkoPRJ11,https://doi.org/10.1007/s00779-010-0338-0 +Alessio Bellino,SEQUENCE: a remote control technique to select objects by matching their rhythm.,2018,22,Personal and Ubiquitous Computing,4,db/journals/puc/puc22.html#Bellino18,https://doi.org/10.1007/s00779-018-1129-2 +Jabe Piter Faber,MARBOWL: increasing the fun experience of shooting marbles.,2012,16,Personal and Ubiquitous Computing,4,db/journals/puc/puc16.html#FaberH12,https://doi.org/10.1007/s00779-011-0405-1 +Bradley J. Rhodes,The Wearable Remembrance Agent: A System for Augmented Memory.,1997,1,Personal and Ubiquitous Computing,3,db/journals/puc/puc1.html#Rhodes97,https://doi.org/10.1007/BF01682024 +Leila Takayama,The motivations of ubiquitous computing: revisiting the ideas behind and beyond the prototypes.,2017,21,Personal and Ubiquitous Computing,3,db/journals/puc/puc21.html#Takayama17,https://doi.org/10.1007/s00779-017-1002-8 +Katrien Verbert,Learning dashboards: an overview and future research opportunities.,2014,18,Personal and Ubiquitous Computing,6,db/journals/puc/puc18.html#VerbertGDSAPK14,https://doi.org/10.1007/s00779-013-0751-2 +Gillian R. Hayes,Supporting the transition from hospital to home for premature infants using integrated mobile computing and sensor support.,2011,15,Personal and Ubiquitous Computing,8,db/journals/puc/puc15.html#HayesPSGRC11,https://doi.org/10.1007/s00779-011-0402-4 +Haodi Ping,Accurate and energy-efficient boundary detection of continuous objects in duty-cycled wireless sensor networks.,2018,22,Personal and Ubiquitous Computing,3,db/journals/puc/puc22.html#PingZSS18,https://doi.org/10.1007/s00779-018-1119-4 +Iván García-Magariño,A smartphone-based system for detecting hand tremors in unconstrained environments.,2016,20,Personal and Ubiquitous Computing,6,db/journals/puc/puc20.html#Garcia-Magarino16,https://doi.org/10.1007/s00779-016-0956-2 +Chang-Won Jeong,Sleeping situation monitoring system in ubiquitous environments.,2013,17,Personal and Ubiquitous Computing,7,db/journals/puc/puc17.html#JeongJJ13,https://doi.org/10.1007/s00779-012-0570-x +Ming Ki Chong,Usability classification for spontaneous device association.,2012,16,Personal and Ubiquitous Computing,1,db/journals/puc/puc16.html#ChongG12,https://doi.org/10.1007/s00779-011-0421-1 +Kasper Garnæs,Designing technologies for presence-in-absence: illustrating the Cube and the Picture Frame.,2007,11,Personal and Ubiquitous Computing,5,db/journals/puc/puc11.html#GarnaesGKS07,https://doi.org/10.1007/s00779-006-0072-9 +Elaine M. Huang,When design just isn't enough: the unanticipated challenges of the real world for large collaborative displays.,2007,11,Personal and Ubiquitous Computing,7,db/journals/puc/puc11.html#HuangMT07,https://doi.org/10.1007/s00779-006-0114-3 +Corina Sas,MeditAid: a wearable adaptive neurofeedback-based system for training mindfulness state.,2015,19,Personal and Ubiquitous Computing,7,db/journals/puc/puc19.html#SasC15,https://doi.org/10.1007/s00779-015-0870-z +Javier Marco,Bringing tabletop technology to all: evaluating a tangible farm game with kindergarten and special needs children.,2013,17,Personal and Ubiquitous Computing,8,db/journals/puc/puc17.html#MarcoCB13,https://doi.org/10.1007/s00779-012-0522-5 +Anu Mäkelä,It's fun to do things together Two cases of explorative user studies.,1999,3,Personal and Ubiquitous Computing,3,db/journals/puc/puc3.html#MakelaB99,https://doi.org/10.1007/BF01305339 +Lisa A. Thomas,A life story in three parts: the use of triptychs to make sense of personal digital data.,2018,22,Personal and Ubiquitous Computing,4,db/journals/puc/puc22.html#ThomasFAB18,https://doi.org/10.1007/s00779-018-1110-0 +Ting-Peng Liang,Effect of use contexts on the continuous use of mobile services: the case of mobile games.,2011,15,Personal and Ubiquitous Computing,2,db/journals/puc/puc15.html#LiangY11,https://doi.org/10.1007/s00779-010-0300-1 +Ann Blandford,Group and Individual Time Management Tools: What You Get is Not What You Need.,2001,5,Personal and Ubiquitous Computing,4,db/journals/puc/puc5.html#BlandfordG01,https://doi.org/10.1007/PL00000020 +Reza Rawassizadeh,Theme issue on electronic memories and life logging.,2013,17,Personal and Ubiquitous Computing,4,db/journals/puc/puc17.html#RawassizadehWT13,https://doi.org/10.1007/s00779-012-0509-2 +Jeffrey Bardzell,A great and troubling beauty: cognitive speculation and ubiquitous computing.,2014,18,Personal and Ubiquitous Computing,4,db/journals/puc/puc18.html#BardzellB14,https://doi.org/10.1007/s00779-013-0677-8 +Jofish Kaye,Special issue on science fiction and ubiquitous computing.,2014,18,Personal and Ubiquitous Computing,4,db/journals/puc/puc18.html#KayeD14,https://doi.org/10.1007/s00779-014-0773-4 +Jeong-Heon Kim,Range image denoising using a constrained local Gaussian model for 3D object query service in the smart space.,2013,17,Personal and Ubiquitous Computing,7,db/journals/puc/puc17.html#KimC13,https://doi.org/10.1007/s00779-012-0575-5 +Cliff Randell,The Shopping Jacket: Wearable Computing for the Consumer.,2000,4,Personal and Ubiquitous Computing,4,db/journals/puc/puc4.html#RandellM00,https://doi.org/10.1007/BF02391567 +Shin'ichi Konomi,Ubiquitous computing in the real world: lessons learnt from large scale RFID deployments.,2007,11,Personal and Ubiquitous Computing,7,db/journals/puc/puc11.html#KonomiR07,https://doi.org/10.1007/s00779-006-0116-1 +Dan Chalmers,A framework for contextual mediation in mobile and ubiquitous computing applied to the context-aware adaptation of maps.,2004,8,Personal and Ubiquitous Computing,1,db/journals/puc/puc8.html#ChalmersDS04,https://doi.org/10.1007/s00779-003-0255-6 +Timo Ali-Vehmas,Service adoption strategies of push over cellular.,2008,12,Personal and Ubiquitous Computing,1,db/journals/puc/puc12.html#Ali-VehmasL08,https://doi.org/10.1007/s00779-006-0122-3 +Namje Park,Electronic identity information hiding methods using a secret sharing scheme in multimedia-centric internet of things environment.,2018,22,Personal and Ubiquitous Computing,1,db/journals/puc/puc22.html#ParkL18,https://doi.org/10.1007/s00779-017-1017-1 +Franz Gravenhorst,Mobile phones as medical devices in mental disorder treatment: an overview.,2015,19,Personal and Ubiquitous Computing,2,db/journals/puc/puc19.html#GravenhorstMBGMWFOALT15,https://doi.org/10.1007/s00779-014-0829-5 +Nadia Brancati,Experiencing touchless interaction with augmented content on wearable head-mounted displays in cultural heritage applications.,2017,21,Personal and Ubiquitous Computing,2,db/journals/puc/puc21.html#BrancatiCFGN17,https://doi.org/10.1007/s00779-016-0987-8 +Samuel Epstein,Using kernels for a video-based mouse-replacement interface.,2014,18,Personal and Ubiquitous Computing,1,db/journals/puc/puc18.html#EpsteinMB14,https://doi.org/10.1007/s00779-012-0617-z +Jian Chen,Recommendation of optimized information seeking process based on the similarity of user access behavior patterns.,2013,17,Personal and Ubiquitous Computing,8,db/journals/puc/puc17.html#ChenZJ13,https://doi.org/10.1007/s00779-012-0601-7 +Aaron Springer,Mood modeling: accuracy depends on active logging and reflection.,2018,22,Personal and Ubiquitous Computing,4,db/journals/puc/puc22.html#SpringerHW18,https://doi.org/10.1007/s00779-018-1123-8 +Antti Pirhonen,Supporting a user facing a novel application: learnability in OOBE.,2005,9,Personal and Ubiquitous Computing,4,db/journals/puc/puc9.html#Pirhonen05,https://doi.org/10.1007/s00779-004-0323-6 +Yulong Bian,A framework for physiological indicators of flow in VR games: construction and preliminary evaluation.,2016,20,Personal and Ubiquitous Computing,5,db/journals/puc/puc20.html#BianYGLZLSM16,https://doi.org/10.1007/s00779-016-0953-5 +Tiiu Poldma,The interior spatial environment: dynamic 0g environments and human places.,2011,15,Personal and Ubiquitous Computing,5,db/journals/puc/puc15.html#Poldma11,https://doi.org/10.1007/s00779-010-0348-y +Florian Mueller 0001,Sports over a Distance.,2007,11,Personal and Ubiquitous Computing,8,db/journals/puc/puc11.html#MuellerSTOW07,https://doi.org/10.1007/s00779-006-0133-0 +Ralph Barthel,An internet of old things as an augmented memory system.,2013,17,Personal and Ubiquitous Computing,2,db/journals/puc/puc17.html#BarthelMHKJS13,https://doi.org/10.1007/s00779-011-0496-8 +Min Woo Cheon,Low level light therapy by Red-Green-Blue LEDs improves healing in an excision model of Sprague-Dawley rats.,2013,17,Personal and Ubiquitous Computing,7,db/journals/puc/puc17.html#CheonKLK13,https://doi.org/10.1007/s00779-012-0577-3 +Xiaoqiang Sun,Utilizing fully homomorphic encryption to implement secure medical computation in smart cities.,2017,21,Personal and Ubiquitous Computing,5,db/journals/puc/puc21.html#SunZSYX17,https://doi.org/10.1007/s00779-017-1056-7 +Xaroula Charalampia Kerasidou,Figuring ubicomp (out).,2017,21,Personal and Ubiquitous Computing,3,db/journals/puc/puc21.html#Kerasidou17,https://doi.org/10.1007/s00779-017-1001-9 +Joseph Korpela,Privacy preserving recognition of object-based activities using near-infrared reflective markers.,2018,22,Personal and Ubiquitous Computing,2,db/journals/puc/puc22.html#KorpelaM18,https://doi.org/10.1007/s00779-017-1070-9 +Ke Xu 0004,Visual registration for unprepared augmented reality environments.,2003,7,Personal and Ubiquitous Computing,5,db/journals/puc/puc7.html#XuPCQK03,https://doi.org/10.1007/s00779-003-0241-z +Alexandra Weilenmann,Negotiating Use: Making Sense of Mobile Technology.,2001,5,Personal and Ubiquitous Computing,2,db/journals/puc/puc5.html#Weilenmann01,https://doi.org/10.1007/PL00000015 +Stina Nylander,Ubiquitous service access through adapted user interfaces on multiple devices.,2005,9,Personal and Ubiquitous Computing,3,db/journals/puc/puc9.html#NylanderBW05,https://doi.org/10.1007/s00779-004-0317-4 +Jong Hyuk Park,"Special issue on ""Intelligent systems and services for ubiquitous computing"".",2009,13,Personal and Ubiquitous Computing,7,db/journals/puc/puc13.html#ParkMYD09,https://doi.org/10.1007/s00779-009-0230-y +Nadiya Slobodenyuk,Towards cognitively grounded gaze-controlled interfaces.,2016,20,Personal and Ubiquitous Computing,6,db/journals/puc/puc20.html#Slobodenyuk16,https://doi.org/10.1007/s00779-016-0970-4 +Louise Barkhuus,Empowerment through seamfulness: smart phones in everyday life.,2011,15,Personal and Ubiquitous Computing,6,db/journals/puc/puc15.html#BarkhuusP11,https://doi.org/10.1007/s00779-010-0342-4 +Wei Liang,Analyzing of research patterns based on a temporal tracking and assessing model.,2016,20,Personal and Ubiquitous Computing,6,db/journals/puc/puc20.html#LiangJLWH16,https://doi.org/10.1007/s00779-016-0965-1 +Michael Hardegger,3D ActionSLAM: wearable person tracking in multi-floor environments.,2015,19,Personal and Ubiquitous Computing,1,db/journals/puc/puc19.html#HardeggerRT15,https://doi.org/10.1007/s00779-014-0815-y +Rosalind W. Picard,Affective Wearables.,1997,1,Personal and Ubiquitous Computing,3,db/journals/puc/puc1.html#PicardH97,https://doi.org/10.1007/BF01682026 +M. Mikkonen,User and Concept Studies as Tools in Developing Mobile Communication Services for the Elderly.,2002,6,Personal and Ubiquitous Computing,2,db/journals/puc/puc6.html#MikkonenVIH02,https://doi.org/10.1007/s007790200010 +Ray-I Chang,A new spatial IP assignment method for IP-based wireless sensor networks.,2012,16,Personal and Ubiquitous Computing,7,db/journals/puc/puc16.html#ChangC12,https://doi.org/10.1007/s00779-011-0446-5 +Matt Jones 0001,"Beyond ""yesterday's tomorrow"": future-focused mobile interaction design by and for emergent users.",2017,21,Personal and Ubiquitous Computing,1,db/journals/puc/puc21.html#JonesRPJRMWJCH17,https://doi.org/10.1007/s00779-016-0982-0 +Dag Johansen,Mobile Agent Applicability.,1998,2,Personal and Ubiquitous Computing,2,db/journals/puc/puc2.html#Johansen98,https://doi.org/10.1007/BF01324935 +Joel S. Birnbaum,Pervasive computing.,1997,1,Personal and Ubiquitous Computing,1,db/journals/puc/puc1.html#Birnbaum97, +Jongdae Han,Extracting communication structure of a development organization from a software repository.,2014,18,Personal and Ubiquitous Computing,6,db/journals/puc/puc18.html#HanJ14,https://doi.org/10.1007/s00779-013-0742-3 +Junling Lu,User social activity-based routing for cognitive radio networks.,2018,22,Personal and Ubiquitous Computing,3,db/journals/puc/puc22.html#LuCWZLH18,https://doi.org/10.1007/s00779-018-1114-9 +Damianos Gavalas,Scenic route planning for tourists.,2017,21,Personal and Ubiquitous Computing,1,db/journals/puc/puc21.html#GavalasKKPV17,https://doi.org/10.1007/s00779-016-0971-3 +Afsaneh Doryab,Impact factor analysis: combining prediction with parameter ranking to reveal the impact of behavior on health outcome.,2015,19,Personal and Ubiquitous Computing,2,db/journals/puc/puc19.html#DoryabFFKB15,https://doi.org/10.1007/s00779-014-0826-8 +María Bermúdez-Edo,IoT-Lite: a lightweight semantic model for the internet of things and its use with dynamic semantics.,2017,21,Personal and Ubiquitous Computing,3,db/journals/puc/puc21.html#Bermudez-EdoEBT17,https://doi.org/10.1007/s00779-017-1010-8 +Yngve Dahl,A comparison of location and token-based interaction techniques for point-of-care access to medical information.,2008,12,Personal and Ubiquitous Computing,6,db/journals/puc/puc12.html#DahlS08,https://doi.org/10.1007/s00779-007-0141-8 +Andrew A. Allen,A user-centric approach to dynamic adaptation of reusable communication services.,2016,20,Personal and Ubiquitous Computing,2,db/journals/puc/puc20.html#AllenCC16,https://doi.org/10.1007/s00779-016-0904-1 +Peter Brown,Triggering Information by Context.,1998,2,Personal and Ubiquitous Computing,1,db/journals/puc/puc2.html#Brown98,https://doi.org/10.1007/BF01581843 +Albrecht Schmidt 0001,Context-Aware Telephony Over WAP.,2000,4,Personal and Ubiquitous Computing,4,db/journals/puc/puc4.html#SchmidtTM00,https://doi.org/10.1007/BF02391563 +Philip R. Ross,The case of sculpting atmospheres: towards design principles for expressive tangible interaction in control of ambient systems.,2007,11,Personal and Ubiquitous Computing,2,db/journals/puc/puc11.html#RossK07,https://doi.org/10.1007/s00779-005-0062-3 +Andrea Grimes Parker,Reflection-through-performance: personal implications of documenting health behaviors for the collective.,2014,18,Personal and Ubiquitous Computing,7,db/journals/puc/puc18.html#Parker14,https://doi.org/10.1007/s00779-014-0780-5 +Olaf Zukunft,Adaptation in Mobile Workflow Management.,1997,1,Personal and Ubiquitous Computing,3,db/journals/puc/puc1.html#Zukunft97,https://doi.org/10.1007/BF01299654 +Elhadi M. Shakshuki,A personal meeting scheduling agent.,2014,18,Personal and Ubiquitous Computing,4,db/journals/puc/puc18.html#ShakshukiH14,https://doi.org/10.1007/s00779-013-0695-6 +Petteri Alahuhta,Experiences in developing mobile applications using the Apricot Agent Platform.,2007,11,Personal and Ubiquitous Computing,1,db/journals/puc/puc11.html#AlahuhtaLHKR07,https://doi.org/10.1007/s00779-005-0058-z +Nafaâ Jabeur,From competitive sensor redundancy to competitive service redundancy in a Smart City context.,2017,21,Personal and Ubiquitous Computing,6,db/journals/puc/puc21.html#JabeurNYB17,https://doi.org/10.1007/s00779-017-1033-1 +Gillian R. Hayes,Theme issue on autism and technology.,2012,16,Personal and Ubiquitous Computing,2,db/journals/puc/puc16.html#HayesK12,https://doi.org/10.1007/s00779-011-0387-z +Kenneth P. Fishkin,A taxonomy for and analysis of tangible interfaces.,2004,8,Personal and Ubiquitous Computing,5,db/journals/puc/puc8.html#Fishkin04,https://doi.org/10.1007/s00779-004-0297-4 +Dianxi Shi,A novel orientation- and location-independent activity recognition method.,2017,21,Personal and Ubiquitous Computing,3,db/journals/puc/puc21.html#ShiWWMW17,https://doi.org/10.1007/s00779-017-1007-3 +Naohiko Kohtake,Self-organizable panel for assembling DIY ubiquitous computing.,2007,11,Personal and Ubiquitous Computing,7,db/journals/puc/puc11.html#KohtakeOYITT07,https://doi.org/10.1007/s00779-006-0118-z +Rainer Planinc,Introducing the use of depth data for fall detection.,2013,17,Personal and Ubiquitous Computing,6,db/journals/puc/puc17.html#PlanincK13,https://doi.org/10.1007/s00779-012-0552-z +Nearchos Paspallis,A pluggable middleware architecture for developing context-aware mobile applications.,2014,18,Personal and Ubiquitous Computing,5,db/journals/puc/puc18.html#PaspallisP14,https://doi.org/10.1007/s00779-013-0722-7 +Luis Valente,A method to assess pervasive qualities in mobile games.,2018,22,Personal and Ubiquitous Computing,4,db/journals/puc/puc22.html#ValenteFLC18,https://doi.org/10.1007/s00779-017-1107-0 +Vivek Menon,Multimodal identification and tracking in smart environments.,2010,14,Personal and Ubiquitous Computing,8,db/journals/puc/puc14.html#MenonJG10,https://doi.org/10.1007/s00779-010-0288-6 +Aaron Toney,Social weight: designing to minimise the social consequences arising from technology use by the mobile professional.,2003,7,Personal and Ubiquitous Computing,5,db/journals/puc/puc7.html#ToneyMTP03,https://doi.org/10.1007/s00779-003-0245-8 +Jiguo Yu,Connected dominating set construction in cognitive radio networks.,2016,20,Personal and Ubiquitous Computing,5,db/journals/puc/puc20.html#YuLCAWF16,https://doi.org/10.1007/s00779-016-0944-6 +Andy Crabtree,I've got a sheep with three legs if anybody wants it?: re-visioning the rural economy.,2015,19,Personal and Ubiquitous Computing,8,db/journals/puc/puc19.html#CrabtreeCVDGG15,https://doi.org/10.1007/s00779-015-0890-8 +Steve Mann,Smart clothing.,1997,1,Personal and Ubiquitous Computing,1,db/journals/puc/puc1.html#Mann97, +Anxo Cereijo Roibás,Implications of the socio-physical contexts when interacting with mobile media.,2008,12,Personal and Ubiquitous Computing,4,db/journals/puc/puc12.html#RoibasGFC08,https://doi.org/10.1007/s00779-007-0149-0 +Bruce H. Thomas,First Person Indoor/Outdoor Augmented Reality Application: ARQuake.,2002,6,Personal and Ubiquitous Computing,1,db/journals/puc/puc6.html#ThomasCDSBP02,https://doi.org/10.1007/s007790200007 +Nicola J. Bidwell,Pursuing genius loci: interaction design and natural places.,2010,14,Personal and Ubiquitous Computing,1,db/journals/puc/puc14.html#BidwellB10,https://doi.org/10.1007/s00779-009-0217-8 +Tore Urnes,Building Distributed Context-Aware Applications.,2001,5,Personal and Ubiquitous Computing,1,db/journals/puc/puc5.html#UrnesHMM01,https://doi.org/10.1007/s007790170027 +Daniela Godoy,Enabling topic-level trust for collaborative information sharing.,2012,16,Personal and Ubiquitous Computing,8,db/journals/puc/puc16.html#GodoyA12,https://doi.org/10.1007/s00779-011-0440-y +Michael Kirchhof,Component-based development of Web-enabled eHome services.,2005,9,Personal and Ubiquitous Computing,5,db/journals/puc/puc9.html#KirchhofL05,https://doi.org/10.1007/s00779-004-0336-1 +Stefan Arbanowski,The Human Communication Space: Towards I-centric Communications.,2001,5,Personal and Ubiquitous Computing,1,db/journals/puc/puc5.html#ArbanowskiMSP01,https://doi.org/10.1007/s007790170026 +Jason I. Hong,A Context/Communication Information Agent.,2001,5,Personal and Ubiquitous Computing,1,db/journals/puc/puc5.html#HongL01,https://doi.org/10.1007/s007790170037 +Yibo Han,Novel itinerary-based KNN query algorithm leveraging grid division routing in wireless sensor networks of skewness distribution.,2014,18,Personal and Ubiquitous Computing,8,db/journals/puc/puc18.html#HanTZXSW14,https://doi.org/10.1007/s00779-014-0795-y +Kristiina M. Valter McConville,Active video game head movement inputs.,2014,18,Personal and Ubiquitous Computing,1,db/journals/puc/puc18.html#McConvilleM14,https://doi.org/10.1007/s00779-013-0662-2 +Miwa Ikemiya,Broken probes: toward the design of worn media.,2014,18,Personal and Ubiquitous Computing,3,db/journals/puc/puc18.html#IkemiyaR14,https://doi.org/10.1007/s00779-013-0690-y +John Paul Varkey,Erratum to: Human motion recognition using a wireless sensor-based wearable system.,2012,16,Personal and Ubiquitous Computing,7,db/journals/puc/puc16.html#VarkeyPW12a,https://doi.org/10.1007/s00779-012-0592-4 +Giulio Iacucci,Everyday Life as a Stage in Creating and Performing Scenarios for Wireless Devices.,2002,6,Personal and Ubiquitous Computing,4,db/journals/puc/puc6.html#IacucciK02,https://doi.org/10.1007/s007790200031 +Yolanda Vazquez-Alvarez,Auditory display design for exploration in mobile audio-augmented reality.,2012,16,Personal and Ubiquitous Computing,8,db/journals/puc/puc16.html#Vazquez-AlvarezOB12,https://doi.org/10.1007/s00779-011-0459-0 +Juha Lehikoinen,1D selection of 2D objects in head-worn displays.,2003,7,Personal and Ubiquitous Computing,1,db/journals/puc/puc7.html#LehikoinenR03,https://doi.org/10.1007/s00779-002-0212-9 +Yingwei Zhang,Wearing-independent hand gesture recognition method based on EMG armband.,2018,22,Personal and Ubiquitous Computing,3,db/journals/puc/puc22.html#ZhangCYYLL18,https://doi.org/10.1007/s00779-018-1152-3 +Yunjin Nam,Personal search system based on android using lifelog and machine learning.,2018,22,Personal and Ubiquitous Computing,1,db/journals/puc/puc22.html#NamSS18,https://doi.org/10.1007/s00779-017-1087-0 +Ioannis G. Damousis,A fuzzy expert system for the early warning of accidents due to driver hypo-vigilance.,2009,13,Personal and Ubiquitous Computing,1,db/journals/puc/puc13.html#DamousisTS09,https://doi.org/10.1007/s00779-007-0170-3 +Cheong Ghil Kim,Implementation of a cost-effective home lighting control system on embedded Linux with OpenWrt.,2014,18,Personal and Ubiquitous Computing,3,db/journals/puc/puc18.html#KimK14,https://doi.org/10.1007/s00779-013-0671-1 +Soledad Escolar,Energy management in solar cells powered wireless sensor networks for quality of service optimization.,2014,18,Personal and Ubiquitous Computing,2,db/journals/puc/puc18.html#EscolarCC14,https://doi.org/10.1007/s00779-013-0663-1 +Stefan Forsström,Enabling ubiquitous sensor-assisted applications on the internet-of-things.,2014,18,Personal and Ubiquitous Computing,4,db/journals/puc/puc18.html#ForsstromK14,https://doi.org/10.1007/s00779-013-0712-9 +Robert Steele,Special Issue of Personal and Ubiquitous Computing: Papers from the Fourth International Conference on Mobile Business.,2008,12,Personal and Ubiquitous Computing,1,db/journals/puc/puc12.html#Steele08,https://doi.org/10.1007/s00779-006-0130-3 +Mark Blythe,Little brother: could and should wearable computing technologies be applied to reducing older people's fear of crime?.,2004,8,Personal and Ubiquitous Computing,6,db/journals/puc/puc8.html#BlytheWM04,https://doi.org/10.1007/s00779-004-0309-4 +Jin Liu,Power consumption prediction of web services for energy-efficient service selection.,2015,19,Personal and Ubiquitous Computing,7,db/journals/puc/puc19.html#LiuJCYL15,https://doi.org/10.1007/s00779-015-0887-3 +Mohamed Aissa,A new scalable multicast routing algorithm for interactive real-time applications.,2011,15,Personal and Ubiquitous Computing,8,db/journals/puc/puc15.html#AissaMMYB11,https://doi.org/10.1007/s00779-011-0370-8 +Karl-Petter ðkesson,Designing Leisure Applications for the Mundane Car-Commute.,2002,6,Personal and Ubiquitous Computing,3,db/journals/puc/puc6.html#EkessonN02,https://doi.org/10.1007/s007790200018 +Jie Wan 0001,Dynamic sensor event segmentation for real-time activity recognition in a smart home context.,2015,19,Personal and Ubiquitous Computing,2,db/journals/puc/puc19.html#WanOO15,https://doi.org/10.1007/s00779-014-0824-x +Florian Güldenpfennig,Personal digital archives on mobile phones with MEO.,2015,19,Personal and Ubiquitous Computing,2,db/journals/puc/puc19.html#GuldenpfennigF15,https://doi.org/10.1007/s00779-014-0802-3 +Wonjun Lee,Explorative research on the heat as an expression medium: focused on interpersonal communication.,2012,16,Personal and Ubiquitous Computing,8,db/journals/puc/puc16.html#LeeL12,https://doi.org/10.1007/s00779-011-0424-y +Wendy Keay-Bright,Is simplicity the key to engagement for children on the autism spectrum?,2012,16,Personal and Ubiquitous Computing,2,db/journals/puc/puc16.html#Keay-BrightH12,https://doi.org/10.1007/s00779-011-0381-5 +Guoliang Liu,Strengthen nodal cooperation for data dissemination in mobile social networks.,2014,18,Personal and Ubiquitous Computing,8,db/journals/puc/puc18.html#LiuJC14,https://doi.org/10.1007/s00779-014-0791-2 +Antti Oulasvirta,Understanding contexts by being there: case studies in bodystorming.,2003,7,Personal and Ubiquitous Computing,2,db/journals/puc/puc7.html#OulasvirtaKK03,https://doi.org/10.1007/s00779-003-0238-7 +Tilde Bekker,Design for social interaction through physical play in diverse contexts of use.,2010,14,Personal and Ubiquitous Computing,5,db/journals/puc/puc14.html#BekkerSB10,https://doi.org/10.1007/s00779-009-0269-9 +Walterio W. Mayol-Cuevas,Wearable Visual Robots.,2002,6,Personal and Ubiquitous Computing,1,db/journals/puc/puc6.html#Mayol-CuevasTM02,https://doi.org/10.1007/s007790200004 +Mark T. Smith,ISWC 2012 best papers.,2014,18,Personal and Ubiquitous Computing,1,db/journals/puc/puc18.html#SmithA14,https://doi.org/10.1007/s00779-013-0639-1 +Cheng-Yu Yang,File changes with security proof stored in cloud service systems.,2018,22,Personal and Ubiquitous Computing,1,db/journals/puc/puc22.html#YangHWCW18,https://doi.org/10.1007/s00779-017-1090-5 +Jacek Chmielewski,Declarative GUI descriptions for device-independent applications.,2016,20,Personal and Ubiquitous Computing,2,db/journals/puc/puc20.html#ChmielewskiFRW16,https://doi.org/10.1007/s00779-016-0903-2 +Damianos Gavalas,A web-based pervasive recommendation system for mobile tourist guides.,2011,15,Personal and Ubiquitous Computing,7,db/journals/puc/puc15.html#GavalasK11,https://doi.org/10.1007/s00779-011-0389-x +Daphne Economou,User experience evaluation of human representation in collaborative virtual environments.,2017,21,Personal and Ubiquitous Computing,6,db/journals/puc/puc21.html#EconomouDAG17,https://doi.org/10.1007/s00779-017-1075-4 +Chan-Shik Ahn,Robust vocabulary recognition clustering model using an average estimator least mean square filter in noisy environments.,2014,18,Personal and Ubiquitous Computing,6,db/journals/puc/puc18.html#AhnO14,https://doi.org/10.1007/s00779-013-0732-5 +"Nitin ""Nick"" Sawhney",Aware Community Portals: Shared Information Appliances for Transitional Spaces.,2001,5,Personal and Ubiquitous Computing,1,db/journals/puc/puc5.html#SawhneyWS01,https://doi.org/10.1007/s007790170034 +Lilly Irani,Rhythms and plasticity: television temporality at home.,2010,14,Personal and Ubiquitous Computing,7,db/journals/puc/puc14.html#IraniJK10,https://doi.org/10.1007/s00779-009-0280-1 +Yao-Jen Chang,Comparing picture and video prompting in autonomous indoor wayfinding for individuals with cognitive impairments.,2010,14,Personal and Ubiquitous Computing,8,db/journals/puc/puc14.html#ChangW10,https://doi.org/10.1007/s00779-010-0285-9 +Gerasimos Spanakis,Machine learning techniques in eating behavior e-coaching - Balancing between generalization and personalization.,2017,21,Personal and Ubiquitous Computing,4,db/journals/puc/puc21.html#SpanakisWBLR17,https://doi.org/10.1007/s00779-017-1022-4 +Rüdiger Zillmer,A robust device for large-scale monitoring of bar soap usage in free-living conditions.,2014,18,Personal and Ubiquitous Computing,8,db/journals/puc/puc18.html#ZillmerWBM14,https://doi.org/10.1007/s00779-014-0760-9 +Stefania Bandini,Improving the effectiveness of monitoring and control systems exploiting knowledge-based approaches.,2005,9,Personal and Ubiquitous Computing,5,db/journals/puc/puc9.html#BandiniS05,https://doi.org/10.1007/s00779-004-0334-3 +Alexander V. Smirnov,Context-based infomobility system for cultural heritage recommendation: Tourist Assistant - TAIS.,2017,21,Personal and Ubiquitous Computing,2,db/journals/puc/puc21.html#SmirnovKP17,https://doi.org/10.1007/s00779-016-0990-0 +Shaoqing Wang,CRPD: a novel clustering routing protocol for dynamic wireless sensor networks.,2018,22,Personal and Ubiquitous Computing,3,db/journals/puc/puc22.html#WangYACN18,https://doi.org/10.1007/s00779-018-1117-6 +Haroon Malik,Detecting performance anomalies in large-scale software systems using entropy.,2017,21,Personal and Ubiquitous Computing,6,db/journals/puc/puc21.html#MalikS17,https://doi.org/10.1007/s00779-017-1036-y +Sara Bartolini,Reconfigurable natural interaction in smart environments: approach and prototype implementation.,2012,16,Personal and Ubiquitous Computing,7,db/journals/puc/puc16.html#BartoliniMDFBC12,https://doi.org/10.1007/s00779-011-0454-5 +Kristine S. Nagel,Designing home availability services.,2007,11,Personal and Ubiquitous Computing,5,db/journals/puc/puc11.html#NagelSA07,https://doi.org/10.1007/s00779-006-0077-4 +Richard Keeble,Special Issue on Software Agents and Issues in Personalisation: Technology to Accomodate Individual Users.,1998,2,Personal and Ubiquitous Computing,3,db/journals/puc/puc2.html#KeebleM98,https://doi.org/10.1007/BF01321171 +Anind K. Dey,Understanding and Using Context.,2001,5,Personal and Ubiquitous Computing,1,db/journals/puc/puc5.html#Dey01,https://doi.org/10.1007/s007790170019 +Gary Marsden,Globicomp - doing ubicomp differently: introduction to the special issue.,2011,15,Personal and Ubiquitous Computing,6,db/journals/puc/puc15.html#MarsdenTJ11,https://doi.org/10.1007/s00779-010-0336-2 +Eduardo Souto,Mires: a publish/subscribe middleware for sensor networks.,2006,10,Personal and Ubiquitous Computing,1,db/journals/puc/puc10.html#SoutoGVVRFK06,https://doi.org/10.1007/s00779-005-0038-3 +Josué Iglesias,Design and validation of a light inference system to support embedded context reasoning.,2012,16,Personal and Ubiquitous Computing,7,db/journals/puc/puc16.html#IglesiasBTCM12,https://doi.org/10.1007/s00779-011-0447-4 +Moses Akazue,Using thermal stimuli to influence affect in different picture display sizes.,2017,21,Personal and Ubiquitous Computing,4,db/journals/puc/puc21.html#AkazueHB17,https://doi.org/10.1007/s00779-017-1018-0 +Antti Ropponen,A novel concept of a wearable information appliance using context-based human-computer interaction.,2013,17,Personal and Ubiquitous Computing,1,db/journals/puc/puc17.html#RopponenLS13,https://doi.org/10.1007/s00779-011-0483-0 +Chao Peng,Adaptive video-on-demand broadcasting in ubiquitous computing environment.,2009,13,Personal and Ubiquitous Computing,7,db/journals/puc/puc13.html#PengTXYPK09,https://doi.org/10.1007/s00779-009-0227-6 +Wenbo Shi,A privacy-preserving degree-matching multi-attribute auction scheme in smart grid auction market.,2017,21,Personal and Ubiquitous Computing,5,db/journals/puc/puc21.html#ShiBWLZS17,https://doi.org/10.1007/s00779-017-1055-8 +Stephan Karpischek,my2cents: enabling research on consumer-product interaction.,2012,16,Personal and Ubiquitous Computing,6,db/journals/puc/puc16.html#KarpischekMF12,https://doi.org/10.1007/s00779-011-0426-9 +David West,MEMENTO: a digital-physical scrapbook for memory sharing.,2007,11,Personal and Ubiquitous Computing,4,db/journals/puc/puc11.html#WestQK07,https://doi.org/10.1007/s00779-006-0090-7 +Haeyong Chung,SAViL: cross-display visual links for sensemaking in display ecologies.,2018,22,Personal and Ubiquitous Computing,2,db/journals/puc/puc22.html#ChungN18,https://doi.org/10.1007/s00779-017-1091-4 +Ann Light,Transports of delight? What the experience of receiving (mobile) phone calls can tell us about design.,2008,12,Personal and Ubiquitous Computing,5,db/journals/puc/puc12.html#Light08,https://doi.org/10.1007/s00779-007-0156-1 +Frank Bentley,Beyond the bar: the places where location-based services are used in the city.,2015,19,Personal and Ubiquitous Computing,1,db/journals/puc/puc19.html#BentleyCM15,https://doi.org/10.1007/s00779-014-0772-5 +Joachim Baumann,The Shadow Approach: An Orphan Detection Protocol for Mobile Agents.,1998,2,Personal and Ubiquitous Computing,2,db/journals/puc/puc2.html#BaumannR98,https://doi.org/10.1007/BF01324940 +Sausan Yazji,Efficient location aware intrusion detection to protect mobile devices.,2014,18,Personal and Ubiquitous Computing,1,db/journals/puc/puc18.html#YazjiSDTJ14,https://doi.org/10.1007/s00779-012-0628-9 +Guomei Zhang,Interference coordination based on random fractional spectrum reuse in femtocells toward Internet of Things.,2016,20,Personal and Ubiquitous Computing,5,db/journals/puc/puc20.html#ZhangCL16,https://doi.org/10.1007/s00779-016-0947-3 +Rüdiger Zillmer,Measurement of toothbrushing behaviour in a natural environment.,2013,17,Personal and Ubiquitous Computing,1,db/journals/puc/puc17.html#Zillmer13,https://doi.org/10.1007/s00779-011-0481-2 +Milan Kabác,Designing parallel data processing for enabling large-scale sensor applications.,2017,21,Personal and Ubiquitous Computing,3,db/journals/puc/puc21.html#KabacCV17,https://doi.org/10.1007/s00779-017-1009-1 +Enric Plaza,Competing Agents in Agent-Mediated Institutions.,1998,2,Personal and Ubiquitous Computing,3,db/journals/puc/puc2.html#PlazaNS98,https://doi.org/10.1007/BF01321177 +Michail N. Giannakos,Understanding children's behavior in an asynchronous video-mediated communication environment.,2013,17,Personal and Ubiquitous Computing,8,db/journals/puc/puc17.html#GiannakosCIDJ13,https://doi.org/10.1007/s00779-012-0525-2 +Cian O'Connor,Making video mundane: intellectual disability and the use of camcorders.,2010,14,Personal and Ubiquitous Computing,3,db/journals/puc/puc14.html#OConnorF10,https://doi.org/10.1007/s00779-009-0258-z +Constantinos Kolias,Design and implementation of a VoiceXML-driven wiki application for assistive environments on the web.,2010,14,Personal and Ubiquitous Computing,6,db/journals/puc/puc14.html#KoliasKAKK10,https://doi.org/10.1007/s00779-009-0274-z +Frank Vetere,Bringing emotion and physicality to domestic ICTs: interview with Steven Kyffin.,2007,11,Personal and Ubiquitous Computing,5,db/journals/puc/puc11.html#VetereF07,https://doi.org/10.1007/s00779-006-0080-9 +Jesper Kjeldskov,Exploring context-awareness for ubiquitous computing in the healthcare domain.,2007,11,Personal and Ubiquitous Computing,7,db/journals/puc/puc11.html#KjeldskovS07,https://doi.org/10.1007/s00779-006-0112-5 +Mattias Rost,Mobile exploration of geotagged photographs.,2012,16,Personal and Ubiquitous Computing,6,db/journals/puc/puc16.html#RostCH12,https://doi.org/10.1007/s00779-011-0433-x +Seokhee Jeon,Interaction with large ubiquitous displays using camera-equipped mobile phones.,2010,14,Personal and Ubiquitous Computing,2,db/journals/puc/puc14.html#JeonHKB10,https://doi.org/10.1007/s00779-009-0249-0 +Alexandros Karypidis,Automated context aggregation and file annotation for PAN-based computing.,2007,11,Personal and Ubiquitous Computing,1,db/journals/puc/puc11.html#KarypidisL07,https://doi.org/10.1007/s00779-005-0061-4 +Michela Cozza,Ubiquitous technologies for older people.,2017,21,Personal and Ubiquitous Computing,3,db/journals/puc/puc21.html#CozzaAT17,https://doi.org/10.1007/s00779-017-1003-7 +Marian Walter,The smart car seat: personalized monitoring of vital signs in automotive applications.,2011,15,Personal and Ubiquitous Computing,7,db/journals/puc/puc15.html#WalterEWL11,https://doi.org/10.1007/s00779-010-0350-4 +Andreas Schrader,Modular framework support for context-aware mobile cinema.,2008,12,Personal and Ubiquitous Computing,4,db/journals/puc/puc12.html#SchraderCB08,https://doi.org/10.1007/s00779-007-0151-6 +Desney S. Tan,Using job-shop scheduling tasks for evaluating collocated collaboration.,2008,12,Personal and Ubiquitous Computing,3,db/journals/puc/puc12.html#TanGMIKHC08,https://doi.org/10.1007/s00779-007-0154-3 +Nicky Kern,Recognizing context for annotating a live life recording.,2007,11,Personal and Ubiquitous Computing,4,db/journals/puc/puc11.html#KernSS07,https://doi.org/10.1007/s00779-006-0086-3 +Hyojoon Bae,Fast and scalable 3D cyber-physical modeling for high-precision mobile augmented reality systems.,2015,19,Personal and Ubiquitous Computing,8,db/journals/puc/puc19.html#BaeWFP015,https://doi.org/10.1007/s00779-015-0892-6 +Elizabeth FitzGerald,To the Castle! A comparison of two audio guides to enable public discovery of historical events.,2013,17,Personal and Ubiquitous Computing,4,db/journals/puc/puc17.html#FitzGeraldTC13,https://doi.org/10.1007/s00779-012-0624-0 +Lisa G. Cowan,Projector phone use: practices and social implications.,2012,16,Personal and Ubiquitous Computing,1,db/journals/puc/puc16.html#CowanWGPH12,https://doi.org/10.1007/s00779-011-0377-1 +Anton Kos,Smart sport equipment: SmartSki prototype for biofeedback applications in skiing.,2018,22,Personal and Ubiquitous Computing,3,db/journals/puc/puc22.html#KosU18,https://doi.org/10.1007/s00779-018-1146-1 +Stephen W. Draper,Analysing fun as a candidate software requirement.,1999,3,Personal and Ubiquitous Computing,3,db/journals/puc/puc3.html#Draper99,https://doi.org/10.1007/BF01305336 +Pedro Peris-Lopez,A secure distance-based RFID identification protocol with an off-line back-end database.,2012,16,Personal and Ubiquitous Computing,3,db/journals/puc/puc16.html#Peris-LopezOPH12,https://doi.org/10.1007/s00779-011-0396-y +Joachim Neumann,Integration of audiovisual sensors and technologies in a smart room.,2009,13,Personal and Ubiquitous Computing,1,db/journals/puc/puc13.html#NeumannCMH09,https://doi.org/10.1007/s00779-007-0172-1 +Guy Hoffman,Robotic experience companionship in music listening and video watching.,2016,20,Personal and Ubiquitous Computing,1,db/journals/puc/puc20.html#HoffmanBV16,https://doi.org/10.1007/s00779-015-0897-1 +Christopher Richard Wren,Minimalism in ubiquitous interface design.,2004,8,Personal and Ubiquitous Computing,5,db/journals/puc/puc8.html#WrenR04,https://doi.org/10.1007/s00779-004-0299-2 +Georg Strom,Mobile Devices as Props in Daily Role Playing.,2002,6,Personal and Ubiquitous Computing,4,db/journals/puc/puc6.html#Strom02,https://doi.org/10.1007/s007790200032 +Phil Turner,Implementing a wireless network of PDAs in a hospital setting.,2005,9,Personal and Ubiquitous Computing,4,db/journals/puc/puc9.html#TurnerMKPT05,https://doi.org/10.1007/s00779-004-0322-7 +Maria Salamó,Generating recommendations for consensus negotiation in group personalization services.,2012,16,Personal and Ubiquitous Computing,5,db/journals/puc/puc16.html#SalamoMS12,https://doi.org/10.1007/s00779-011-0413-1 +Peter Jagodzinski,Paradigms for the Design of Interactive Drama.,1999,3,Personal and Ubiquitous Computing,3,db/journals/puc/puc3.html#JagodzinskiTR99,https://doi.org/10.1007/BF01305340 +Kwangsoo Lee,The relationship between healthcare information system and cost in hospital.,2013,17,Personal and Ubiquitous Computing,7,db/journals/puc/puc17.html#LeeWK13,https://doi.org/10.1007/s00779-012-0574-6 +Faruk Bagci,The reflective mobile agent paradigm implemented in a smart office environment.,2007,11,Personal and Ubiquitous Computing,1,db/journals/puc/puc11.html#BagciSPTU07,https://doi.org/10.1007/s00779-005-0059-y +Sahar Bayoumi,Exploiting ambient illumination to locate and recognise user behaviour in enclosed environments.,2010,14,Personal and Ubiquitous Computing,4,db/journals/puc/puc14.html#BayoumiPK10,https://doi.org/10.1007/s00779-009-0234-7 +David A. Ross,Development of a Wearable Computer Orientation System.,2002,6,Personal and Ubiquitous Computing,1,db/journals/puc/puc6.html#RossB02,https://doi.org/10.1007/s007790200005 +Lynne Baillie,Capturing the response of players to a location-based game.,2011,15,Personal and Ubiquitous Computing,1,db/journals/puc/puc15.html#BaillieMMU11,https://doi.org/10.1007/s00779-010-0309-5 +Bin Guo,iCROSS: toward a scalable infrastructure for cross-domain context management.,2013,17,Personal and Ubiquitous Computing,3,db/journals/puc/puc17.html#GuoZSYZ13,https://doi.org/10.1007/s00779-012-0564-8 +Janneke Verhaegh,In-game assessment and training of nonverbal cognitive skills using TagTiles.,2013,17,Personal and Ubiquitous Computing,8,db/journals/puc/puc17.html#VerhaeghFAR13,https://doi.org/10.1007/s00779-012-0527-0 +Leysia Palen,Discovery and Integration of Mobile Communications in Everyday Life.,2001,5,Personal and Ubiquitous Computing,2,db/journals/puc/puc5.html#PalenSY01,https://doi.org/10.1007/s007790170014 +Tim Moors,Using short-range communication to control mobile device functionality.,2008,12,Personal and Ubiquitous Computing,1,db/journals/puc/puc12.html#MoorsMS08,https://doi.org/10.1007/s00779-006-0124-1 +Takuya Maekawa,Activity recognition with hand-worn magnetic sensors.,2013,17,Personal and Ubiquitous Computing,6,db/journals/puc/puc17.html#MaekawaKSS13,https://doi.org/10.1007/s00779-012-0556-8 +Dorota M. Huizinga,Disconnected Operation for Heterogeneous Servers: A Practical Approach.,1997,1,Personal and Ubiquitous Computing,3,db/journals/puc/puc1.html#HuizingaM97,https://doi.org/10.1007/BF01299648 +Antonio J. Jara,Drug identification and interaction checker based on IoT to minimize adverse drug reactions and improve drug compliance.,2014,18,Personal and Ubiquitous Computing,1,db/journals/puc/puc18.html#JaraZG14,https://doi.org/10.1007/s00779-012-0622-2 +Roy C. Park,Performance analysis of LTE downlink system using relay-based selective transmission.,2014,18,Personal and Ubiquitous Computing,3,db/journals/puc/puc18.html#ParkJCK14,https://doi.org/10.1007/s00779-013-0674-y +Xu Sun,The role of spatial contextual factors in mobile personalization at large sports events.,2009,13,Personal and Ubiquitous Computing,4,db/journals/puc/puc13.html#SunM09,https://doi.org/10.1007/s00779-008-0203-6 +Diomidis Spinellis,The information furnace: consolidated home control.,2003,7,Personal and Ubiquitous Computing,1,db/journals/puc/puc7.html#Spinellis03,https://doi.org/10.1007/s00779-002-0213-8 +Nadir Weibel,LAB-IN-A-BOX: semi-automatic tracking of activity in the medical office.,2015,19,Personal and Ubiquitous Computing,2,db/journals/puc/puc19.html#WeibelREACA15,https://doi.org/10.1007/s00779-014-0821-0 +Mohd Izani Mohamed Rawi,Wireless sensor networks and human comfort index.,2013,17,Personal and Ubiquitous Computing,5,db/journals/puc/puc17.html#RawiA13,https://doi.org/10.1007/s00779-012-0547-9 +Jongsung Kim,Advanced security technologies and applications for ubiquitous computing.,2013,17,Personal and Ubiquitous Computing,5,db/journals/puc/puc17.html#KimLH13,https://doi.org/10.1007/s00779-012-0533-2 +Daniele Riboni,Context provenance to enhance the dependability of ambient intelligence systems.,2012,16,Personal and Ubiquitous Computing,7,db/journals/puc/puc16.html#RiboniB12,https://doi.org/10.1007/s00779-011-0448-3 +Tobias Langlotz,Sketching up the world: in situ authoring for mobile Augmented Reality.,2012,16,Personal and Ubiquitous Computing,6,db/journals/puc/puc16.html#LanglotzMZDRS12,https://doi.org/10.1007/s00779-011-0430-0 +Aparna Krishnan,TimeSpace: activity-based temporal visualisation of personal information spaces.,2005,9,Personal and Ubiquitous Computing,1,db/journals/puc/puc9.html#KrishnanJ05,https://doi.org/10.1007/s00779-004-0291-x +Geoffrey H. Kuenning,Experience with an Automated Hoarding System.,1997,1,Personal and Ubiquitous Computing,3,db/journals/puc/puc1.html#KuenningRP97,https://doi.org/10.1007/BF01299649 +Dimitrios Damopoulos,User privacy and modern mobile services: are they on the same path?,2013,17,Personal and Ubiquitous Computing,7,db/journals/puc/puc17.html#DamopoulosKAGP13,https://doi.org/10.1007/s00779-012-0579-1 +Lisa A. Thomas,Assessing the value of brief automated biographies.,2016,20,Personal and Ubiquitous Computing,1,db/journals/puc/puc20.html#ThomasB16,https://doi.org/10.1007/s00779-015-0896-2 +Raymond K. Wong,Online role mining for context-aware mobile service recommendation.,2014,18,Personal and Ubiquitous Computing,5,db/journals/puc/puc18.html#WongCH14,https://doi.org/10.1007/s00779-013-0717-4 +Dawud Gordon,Activity recognition for creatures of habit - Energy-efficient embedded classification using prediction.,2014,18,Personal and Ubiquitous Computing,1,db/journals/puc/puc18.html#GordonCB14,https://doi.org/10.1007/s00779-013-0638-2 +Daniel M. Johnson 0001,Exploring mindlessness as an explanation for the media equation: a study of stereotyping in computer tutorials.,2009,13,Personal and Ubiquitous Computing,2,db/journals/puc/puc13.html#JohnsonG09,https://doi.org/10.1007/s00779-007-0193-9 +Da-Zhi Sun,Correction to: Man-in-the-middle attacks on Secure Simple Pairing in Bluetooth standard V5.0 and its countermeasure.,2018,22,Personal and Ubiquitous Computing,1,db/journals/puc/puc22.html#SunMS18a,https://doi.org/10.1007/s00779-017-1085-2 +Jennifer J. Ockerman,Wearable Computers for Performance Support: Initial Feasibility Study.,1997,1,Personal and Ubiquitous Computing,3,db/journals/puc/puc1.html#OckermanNT97,https://doi.org/10.1007/BF01682028 +Ilkka Arminen,Social functions of location in mobile telephony.,2006,10,Personal and Ubiquitous Computing,5,db/journals/puc/puc10.html#Arminen06,https://doi.org/10.1007/s00779-005-0052-5 +Tuomo Kujala,Browsing the information highway while driving: three in-vehicle touch screen scrolling methods and driver distraction.,2013,17,Personal and Ubiquitous Computing,5,db/journals/puc/puc17.html#Kujala13,https://doi.org/10.1007/s00779-012-0517-2 +Amir Haroun,Data fusion in automotive applications.,2017,21,Personal and Ubiquitous Computing,3,db/journals/puc/puc21.html#HarounMD17,https://doi.org/10.1007/s00779-017-1008-2 +Yingjian Liu,Big data challenges in ocean observation: a survey.,2017,21,Personal and Ubiquitous Computing,1,db/journals/puc/puc21.html#LiuQLG17,https://doi.org/10.1007/s00779-016-0980-2 +Wei Liu,The yoking-proof-based authentication protocol for cloud-assisted wearable devices.,2016,20,Personal and Ubiquitous Computing,3,db/journals/puc/puc20.html#LiuLWKN16,https://doi.org/10.1007/s00779-016-0926-8 +Derek F. Reilly,Marked-up maps: combining paper maps and electronic information resources.,2006,10,Personal and Ubiquitous Computing,4,db/journals/puc/puc10.html#ReillyRANI06,https://doi.org/10.1007/s00779-005-0043-6 +Danny B. Lange,Present and Future Trends of Mobile Agent Technology.,1998,2,Personal and Ubiquitous Computing,2,db/journals/puc/puc2.html#Lange98, +José María de Fuentes,Assessment of attribute-based credentials for privacy-preserving road traffic services in smart cities.,2017,21,Personal and Ubiquitous Computing,5,db/journals/puc/puc21.html#FuentesGSV17,https://doi.org/10.1007/s00779-017-1057-6 +Sajid Hussain,Genetic algorithm for effective open port selection for a web filter.,2013,17,Personal and Ubiquitous Computing,8,db/journals/puc/puc17.html#HussainOY13,https://doi.org/10.1007/s00779-012-0602-6 +Gil-Young Song,Multiple categorizations of products: cognitive modeling of customers through social media data mining.,2014,18,Personal and Ubiquitous Computing,6,db/journals/puc/puc18.html#SongCLLCR14,https://doi.org/10.1007/s00779-013-0740-5 +Markus Weiss,PowerPedia: changing energy usage with the help of a community-based smartphone application.,2012,16,Personal and Ubiquitous Computing,6,db/journals/puc/puc16.html#WeissSMF12,https://doi.org/10.1007/s00779-011-0432-y +Mandayam T. Raghunath,User Interfaces for Applications on a Wrist Watch.,2002,6,Personal and Ubiquitous Computing,1,db/journals/puc/puc6.html#RaghunathN02,https://doi.org/10.1007/s007790200002 +Byoungoh Kim,SpinRadar: a spontaneous service provision middleware for place-aware social interactions.,2014,18,Personal and Ubiquitous Computing,2,db/journals/puc/puc18.html#KimKLH14,https://doi.org/10.1007/s00779-013-0659-x +Max L. Wilson,Pico-ing into the future of mobile projection and contexts.,2012,16,Personal and Ubiquitous Computing,1,db/journals/puc/puc16.html#WilsonCRJB12,https://doi.org/10.1007/s00779-011-0376-2 +Linda M. Gallant,An ethnography of communication approach to mobile product testing.,2006,10,Personal and Ubiquitous Computing,5,db/journals/puc/puc10.html#Gallant06,https://doi.org/10.1007/s00779-005-0053-4 +Christian Decker,A file system for system programming in ubiquitous computing.,2007,11,Personal and Ubiquitous Computing,1,db/journals/puc/puc11.html#DeckerRBK07,https://doi.org/10.1007/s00779-005-0060-5 +Yuk Kuen Wong,A confidence-based framework for business to consumer (B2C) mobile commerce adoption.,2008,12,Personal and Ubiquitous Computing,1,db/journals/puc/puc12.html#WongH08,https://doi.org/10.1007/s00779-006-0120-5 +Theodosios Sapounidis,Evaluating children performance with graphical and tangible robot programming tools.,2015,19,Personal and Ubiquitous Computing,1,db/journals/puc/puc19.html#SapounidisDS15,https://doi.org/10.1007/s00779-014-0774-3 +Katrin Plaumann,Towards accurate cursorless pointing: the effects of ocular dominance and handedness.,2018,22,Personal and Ubiquitous Computing,4,db/journals/puc/puc22.html#PlaumannWWMR18,https://doi.org/10.1007/s00779-017-1100-7 +Wei Lu 0010,Joint semantic similarity assessment with raw corpus and structured ontology for semantic-oriented service discovery.,2016,20,Personal and Ubiquitous Computing,3,db/journals/puc/puc20.html#LuCCL16,https://doi.org/10.1007/s00779-016-0921-0 +Weidong Huang 0001,Establishing aesthetics based on human graph reading behavior: two eye tracking studies.,2013,17,Personal and Ubiquitous Computing,1,db/journals/puc/puc17.html#Huang13,https://doi.org/10.1007/s00779-011-0473-2 +Elise van den Hoven,Informing augmented memory system design through autobiographical memory theory.,2008,12,Personal and Ubiquitous Computing,6,db/journals/puc/puc12.html#HovenE08,https://doi.org/10.1007/s00779-007-0177-9 +David K. McGookin,Extreme navigation: introduction to the special issue.,2012,16,Personal and Ubiquitous Computing,8,db/journals/puc/puc16.html#McGookinM12,https://doi.org/10.1007/s00779-011-0458-1 +Irene Lia Schlacht,Space extreme design - New ideas and approaches for space habitability.,2011,15,Personal and Ubiquitous Computing,5,db/journals/puc/puc15.html#Schlacht11,https://doi.org/10.1007/s00779-010-0320-x +Patrizia Marti,Situated Interaction in Art.,2001,5,Personal and Ubiquitous Computing,1,db/journals/puc/puc5.html#MartiGP01,https://doi.org/10.1007/PL00000014 +Ashweeni Kumar Beeharee,Exploiting real world knowledge in ubiquitous applications.,2007,11,Personal and Ubiquitous Computing,6,db/journals/puc/puc11.html#BeehareeS07,https://doi.org/10.1007/s00779-006-0091-6 +Y. Wei,Node localization algorithm for wireless sensor networks using compressive sensing theory.,2016,20,Personal and Ubiquitous Computing,5,db/journals/puc/puc20.html#WeiLC16,https://doi.org/10.1007/s00779-016-0951-7 +Aitor Almeida,Imhotep: an approach to user and device conscious mobile applications.,2011,15,Personal and Ubiquitous Computing,4,db/journals/puc/puc15.html#AlmeidaOCLS11,https://doi.org/10.1007/s00779-010-0359-8 +Muhammad Usman 0004,Modeling value of time for trip chains using sigmoid utility.,2017,21,Personal and Ubiquitous Computing,6,db/journals/puc/puc21.html#UsmanKYBJW17,https://doi.org/10.1007/s00779-017-1030-4 +Qinghe Du,Interference-controlled D2D routing aided by knowledge extraction at cellular infrastructure towards ubiquitous CPS.,2015,19,Personal and Ubiquitous Computing,7,db/journals/puc/puc19.html#DuSXRS15,https://doi.org/10.1007/s00779-015-0872-x +Wilfried M. Post,Evaluating meeting support tools.,2008,12,Personal and Ubiquitous Computing,3,db/journals/puc/puc12.html#PostVB08,https://doi.org/10.1007/s00779-007-0148-1 +Zhan Huan,The soil moisture sensor based on soil dielectric property.,2017,21,Personal and Ubiquitous Computing,1,db/journals/puc/puc21.html#HuanWLW17,https://doi.org/10.1007/s00779-016-0975-z +Chia-Chen Chen,A smart assistant toward product-awareness shopping.,2014,18,Personal and Ubiquitous Computing,2,db/journals/puc/puc18.html#ChenHPTY14,https://doi.org/10.1007/s00779-013-0649-z +Daniel Boos,A toolbox for managing organisational issues in the early stage of the development of a ubiquitous computing application.,2013,17,Personal and Ubiquitous Computing,6,db/journals/puc/puc17.html#BoosGG13,https://doi.org/10.1007/s00779-012-0634-y +Dan Morris,Using machine learning to support pedagogy in the arts.,2013,17,Personal and Ubiquitous Computing,8,db/journals/puc/puc17.html#MorrisF13,https://doi.org/10.1007/s00779-012-0526-1 +Jianchang Lai,Fully privacy-preserving and revocable ID-based broadcast encryption for data access control in smart city.,2017,21,Personal and Ubiquitous Computing,5,db/journals/puc/puc21.html#LaiMGSC17,https://doi.org/10.1007/s00779-017-1045-x +Sten Lundesgaard Amundsen,A resource and context model for mobile middleware.,2008,12,Personal and Ubiquitous Computing,2,db/journals/puc/puc12.html#AmundsenE08,https://doi.org/10.1007/s00779-006-0105-4 +Jacob T. Biehl,When privacy and utility are in harmony: towards better design of presence technologies.,2013,17,Personal and Ubiquitous Computing,3,db/journals/puc/puc17.html#BiehlRL13,https://doi.org/10.1007/s00779-012-0504-7 +Kher Hui Ng,Treasure codes: augmenting learning from physical museum exhibits through treasure hunting.,2018,22,Personal and Ubiquitous Computing,4,db/journals/puc/puc22.html#NgHO18,https://doi.org/10.1007/s00779-018-1126-5 +Richard H. R. Harper,editoral: Domestic Design: An Introduction to the Research Issues Surrounding the Development and Design of Interactive Technologies for the Home.,2000,4,Personal and Ubiquitous Computing,1,db/journals/puc/puc4.html#Harper00,https://doi.org/10.1007/BF01613594 +David Y. Lees,Designing Information Artefacts for Knowledge Workers.,1998,2,Personal and Ubiquitous Computing,4,db/journals/puc/puc2.html#LeesT98,https://doi.org/10.1007/BF01885562 +Fabio Crestani,Theme issue on interactive mobile information access.,2006,10,Personal and Ubiquitous Computing,4,db/journals/puc/puc10.html#CrestaniDJJM06,https://doi.org/10.1007/s00779-005-0042-7 +Mattias Esbjörnsson,Traffic encounters and Hocman: Associating motorcycle ethnography with design.,2004,8,Personal and Ubiquitous Computing,2,db/journals/puc/puc8.html#EsbjornssonJO04,https://doi.org/10.1007/s00779-004-0260-4 +John Soldatos,A breadboard architecture for pervasive context-aware services in smart spaces: middleware components and prototype applications.,2007,11,Personal and Ubiquitous Computing,3,db/journals/puc/puc11.html#SoldatosDSP07,https://doi.org/10.1007/s00779-006-0102-7 +Leopoldina Fortunati,The social representation of telecommunications.,2008,12,Personal and Ubiquitous Computing,6,db/journals/puc/puc12.html#FortunatiM08,https://doi.org/10.1007/s00779-006-0139-7 +Eamonn O'Neill,Can we do without GUIs? Gesture and speech interaction with a patient information system.,2006,10,Personal and Ubiquitous Computing,5,db/journals/puc/puc10.html#ONeillKKWW06,https://doi.org/10.1007/s00779-005-0048-1 +Colin English,Towards self-protecting ubiquitous systems: monitoring trust-based interactions.,2006,10,Personal and Ubiquitous Computing,1,db/journals/puc/puc10.html#EnglishTN06,https://doi.org/10.1007/s00779-005-0030-y +Anton Nijholt,Mixed reality participants in smart meeting rooms and smart home environments.,2009,13,Personal and Ubiquitous Computing,1,db/journals/puc/puc13.html#NijholtZP09,https://doi.org/10.1007/s00779-007-0168-x +Seokhwan Kim,A location-sensitive visual interface on the palm: interacting with common objects in an augmented space.,2015,19,Personal and Ubiquitous Computing,1,db/journals/puc/puc19.html#KimTT15,https://doi.org/10.1007/s00779-014-0769-0 +Andrew Manches,Tangibles for learning: a representational analysis of physical manipulation.,2012,16,Personal and Ubiquitous Computing,4,db/journals/puc/puc16.html#ManchesO12,https://doi.org/10.1007/s00779-011-0406-0 +Yi Du,Banded choropleth map.,2018,22,Personal and Ubiquitous Computing,3,db/journals/puc/puc22.html#DuRZLTD18,https://doi.org/10.1007/s00779-018-1120-y +Rashid Mehmood,IoT-enabled Web warehouse architecture: a secure approach.,2015,19,Personal and Ubiquitous Computing,7,db/journals/puc/puc19.html#MehmoodSBDD15,https://doi.org/10.1007/s00779-015-0882-8 +Chaocan Xiang,Counter-strike: accurate and robust identification of low-level radiation sources with crowd-sensing networks.,2017,21,Personal and Ubiquitous Computing,1,db/journals/puc/puc21.html#XiangYX17,https://doi.org/10.1007/s00779-016-0976-y +Rune Veerasawmy,When noise becomes voice: designing interactive technology for crowd experiences through imitation and invention.,2014,18,Personal and Ubiquitous Computing,7,db/journals/puc/puc18.html#VeerasawmyM14,https://doi.org/10.1007/s00779-014-0761-8 +Julia S. Mollee,What technological features are used in smartphone apps that promote physical activity? A review and content analysis.,2017,21,Personal and Ubiquitous Computing,4,db/journals/puc/puc21.html#MolleeMKK17,https://doi.org/10.1007/s00779-017-1023-3 +Youngsun Kim,"Extending ""out of the body"" tactile phantom sensations to 2D and applying it to mobile interaction.",2015,19,Personal and Ubiquitous Computing,8,db/journals/puc/puc19.html#KimLK15,https://doi.org/10.1007/s00779-015-0894-4 +Dingqi Yang,Providing real-time assistance in disaster relief by leveraging crowdsourcing power.,2014,18,Personal and Ubiquitous Computing,8,db/journals/puc/puc18.html#YangZFRJRL14,https://doi.org/10.1007/s00779-014-0758-3 +Oscar de Bruijn,RSVP Browser: Web Browsing on Small Screen Devices.,2002,6,Personal and Ubiquitous Computing,4,db/journals/puc/puc6.html#BruijnSC02,https://doi.org/10.1007/s007790200024 +Farzana Rahman,Efficient detection of counterfeit products in large-scale RFID systems using batch authentication protocols.,2014,18,Personal and Ubiquitous Computing,1,db/journals/puc/puc18.html#RahmanA14,https://doi.org/10.1007/s00779-012-0629-8 +Weizhe Zhang,Android platform-based individual privacy information protection system.,2016,20,Personal and Ubiquitous Computing,6,db/journals/puc/puc20.html#ZhangLXV16,https://doi.org/10.1007/s00779-016-0966-0 +Daniela Petrelli,Modelling and Adapting to Context.,2001,5,Personal and Ubiquitous Computing,1,db/journals/puc/puc5.html#PetrelliNZSS01,https://doi.org/10.1007/s007790170023 +Odd-Wiking Rahlff,Using Personal Traces in Context Space: Towards Context Trace Technology.,2001,5,Personal and Ubiquitous Computing,1,db/journals/puc/puc5.html#RahlffRH01,https://doi.org/10.1007/s007790170030 +Matthias Heinrichs,Introduction of car sharing into existing car fleets in microscopic travel demand modelling.,2017,21,Personal and Ubiquitous Computing,6,db/journals/puc/puc21.html#HeinrichsKCS17,https://doi.org/10.1007/s00779-017-1031-3 +Athanasios Bamis,The BehaviorScope framework for enabling ambient assisted living.,2010,14,Personal and Ubiquitous Computing,6,db/journals/puc/puc14.html#BamisLTS10,https://doi.org/10.1007/s00779-010-0282-z +Shiwei Cheng,Smooth Gaze: a framework for recovering tasks across devices using eye tracking.,2018,22,Personal and Ubiquitous Computing,3,db/journals/puc/puc22.html#ChengFD18,https://doi.org/10.1007/s00779-018-1115-8 +Jian Yu,Advances in context-aware mobile services.,2014,18,Personal and Ubiquitous Computing,5,db/journals/puc/puc18.html#YuSYS14,https://doi.org/10.1007/s00779-013-0716-5 +John Underkoffler,Antisedentary beigeless computing.,1997,1,Personal and Ubiquitous Computing,1,db/journals/puc/puc1.html#Underkoffler97,https://doi.org/10.1007/BF01317886 +Andreas Riener,Traffic flow harmonization in expressway merging.,2013,17,Personal and Ubiquitous Computing,3,db/journals/puc/puc17.html#RienerZFRR13,https://doi.org/10.1007/s00779-012-0505-6 +I. Barry Crabtree,Adaptive Personal Agents.,1998,2,Personal and Ubiquitous Computing,3,db/journals/puc/puc2.html#CrabtreeST98,https://doi.org/10.1007/BF01321172 +Petros Belsis,A k-anonymity privacy-preserving approach in wireless medical monitoring environments.,2014,18,Personal and Ubiquitous Computing,1,db/journals/puc/puc18.html#BelsisP14,https://doi.org/10.1007/s00779-012-0618-y +Jong Hyuk Park,Guest editorial: Theme issue on smartphone applications and services for pervasive computing.,2012,16,Personal and Ubiquitous Computing,6,db/journals/puc/puc16.html#ParkCSD12,https://doi.org/10.1007/s00779-011-0429-6 +Tae-Jung Kim,An efficient hybrid delivery technology for a broadcast TV service.,2018,22,Personal and Ubiquitous Computing,1,db/journals/puc/puc22.html#KimKK18,https://doi.org/10.1007/s00779-017-1059-4 +Kher Hui Ng,Understanding food consumption lifecycles using wearable cameras.,2015,19,Personal and Ubiquitous Computing,7,db/journals/puc/puc19.html#NgSMBFR15,https://doi.org/10.1007/s00779-015-0871-y +Yuehua Cheng,Online social trust reinforced personalized recommendation.,2016,20,Personal and Ubiquitous Computing,3,db/journals/puc/puc20.html#ChengLY16,https://doi.org/10.1007/s00779-016-0923-y +Egon L. van den Broek,Cross-validation of bimodal health-related stress assessment.,2013,17,Personal and Ubiquitous Computing,2,db/journals/puc/puc17.html#BroekSD13,https://doi.org/10.1007/s00779-011-0468-z +Stuart Morton,Mobile Architecture for Wishard Memorial Hospital Ambulatory Service.,1997,1,Personal and Ubiquitous Computing,3,db/journals/puc/puc1.html#MortonB97,https://doi.org/10.1007/BF01299653 +Ron Wakkary,Situated play in a tangible interface and adaptive audio museum guide.,2007,11,Personal and Ubiquitous Computing,3,db/journals/puc/puc11.html#WakkaryH07,https://doi.org/10.1007/s00779-006-0101-8 +Soon-Seok Kim,Encoder design for healthcare signals.,2013,17,Personal and Ubiquitous Computing,7,db/journals/puc/puc17.html#KimLCP13,https://doi.org/10.1007/s00779-012-0572-8 +Victoria Haines,Probing user values in the home environment within a technology driven Smart Home project.,2007,11,Personal and Ubiquitous Computing,5,db/journals/puc/puc11.html#HainesMCM07,https://doi.org/10.1007/s00779-006-0075-6 +Lisa Anthony,Designing smarter touch-based interfaces for educational contexts.,2014,18,Personal and Ubiquitous Computing,6,db/journals/puc/puc18.html#AnthonyBTNBI14,https://doi.org/10.1007/s00779-013-0749-9 +Salil Pradhan,Semantic Location.,2000,4,Personal and Ubiquitous Computing,4,db/journals/puc/puc4.html#Pradhan00,https://doi.org/10.1007/BF02391560 +Winard Britt,An embedded system for real-time navigation and remote command of a trained canine.,2011,15,Personal and Ubiquitous Computing,1,db/journals/puc/puc15.html#BrittMWBH11,https://doi.org/10.1007/s00779-010-0298-4 +Fridtjof Feldbusch,The BTRC Bluetooth remote control system.,2003,7,Personal and Ubiquitous Computing,2,db/journals/puc/puc7.html#FeldbuschPOI03,https://doi.org/10.1007/s00779-003-0235-x +Yuichi Koyama,A multi-modal dialogue analysis method for medical interviews based on design of interaction corpus.,2010,14,Personal and Ubiquitous Computing,8,db/journals/puc/puc14.html#KoyamaSHKMSKY10,https://doi.org/10.1007/s00779-010-0289-5 +Xiaofeng Lu,Directional communication with movement prediction in mobile wireless sensor networks.,2014,18,Personal and Ubiquitous Computing,8,db/journals/puc/puc18.html#LuQLHLLB14,https://doi.org/10.1007/s00779-014-0793-0 +L. Tiina Sarjakoski,Analysis of verbal route descriptions and landmarks for hiking.,2012,16,Personal and Ubiquitous Computing,8,db/journals/puc/puc16.html#SarjakoskiKFLRS12,https://doi.org/10.1007/s00779-011-0460-7 +Barry A. T. Brown,The Future of the Personal Computer in the Home: A Research Note.,2000,4,Personal and Ubiquitous Computing,1,db/journals/puc/puc4.html#Brown00,https://doi.org/10.1007/BF01613597 +Kjetil Nordby,Multi-field relations in designing for short-range RFID.,2011,15,Personal and Ubiquitous Computing,2,db/journals/puc/puc15.html#Nordby11,https://doi.org/10.1007/s00779-010-0296-6 +Xiaoguang Niu,WTrack: HMM-based walk pattern recognition and indoor pedestrian tracking using phone inertial sensors.,2014,18,Personal and Ubiquitous Computing,8,db/journals/puc/puc18.html#NiuLCLLC14,https://doi.org/10.1007/s00779-014-0796-x +Anxo Cereijo Roibás,Editorial.,2011,15,Personal and Ubiquitous Computing,5,db/journals/puc/puc15.html#RoibasM11,https://doi.org/10.1007/s00779-011-0379-z +Timothy Neate,Cross-device media: a review of second screening and multi-device television.,2017,21,Personal and Ubiquitous Computing,2,db/journals/puc/puc21.html#NeateJE17,https://doi.org/10.1007/s00779-017-1016-2 +Da-Zhi Sun,On the security and improvement of a two-factor user authentication scheme in wireless sensor networks.,2013,17,Personal and Ubiquitous Computing,5,db/journals/puc/puc17.html#SunLFCX13,https://doi.org/10.1007/s00779-012-0540-3 +David Frohlich,short paper: Augmenting Photographs with Audio.,2000,4,Personal and Ubiquitous Computing,4,db/journals/puc/puc4.html#FrohlichAT00,https://doi.org/10.1007/BF02391558 +Bruce Sterling,Futility and resistance.,2014,18,Personal and Ubiquitous Computing,4,db/journals/puc/puc18.html#Sterling14,https://doi.org/10.1007/s00779-013-0676-9 +Caroline L. van Straten,Effects of robots' intonation and bodily appearance on robot-mediated communicative treatment outcomes for children with autism spectrum disorder.,2018,22,Personal and Ubiquitous Computing,2,db/journals/puc/puc22.html#StratenSBGBC18,https://doi.org/10.1007/s00779-017-1060-y +Kyung-Yong Chung,Recent trends on mobile computing and future networks.,2014,18,Personal and Ubiquitous Computing,3,db/journals/puc/puc18.html#ChungYK14,https://doi.org/10.1007/s00779-013-0682-y +Anne Suwita,Evaluating the Usability of the Siemens C10 Mobile Phone Going Beyond Common Practice in Industry.,1999,3,Personal and Ubiquitous Computing,4,db/journals/puc/puc3.html#SuwitaB99,https://doi.org/10.1007/BF01540551 +Elisa Bertino,Privacy-preserving techniques for location-based services.,2009,1,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial1.html#Bertino09,http://doi.acm.org/10.1145/1567253.1567254 +Thomas Mandl 0001,Evaluating GIR: geography-oriented or user-oriented?,2011,3,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial3.html#Mandl11,http://doi.acm.org/10.1145/2047296.2047306 +Ting Hua,How events unfold: spatiotemporal mining in social media.,2015,7,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial7.html#HuaZCLR15,http://doi.acm.org/10.1145/2876480.2876485 +Patrick Laube,The low hanging fruit is gone: achievements and challenges of computational movement analysis.,2015,7,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial7.html#Laube15,http://doi.acm.org/10.1145/2782759.2782762 +Silvia Nittel,Introduction to this special issue: geosensor networks.,2015,7,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial7.html#Nittel15,http://doi.acm.org/10.1145/2826686.2826688 +Oscar Martinez-Rubi,Benchmarking and improving point cloud data management in MonetDB.,2014,6,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial6.html#Martinez-RubiOG14,http://doi.acm.org/10.1145/2744700.2744702 +Johann Christoph Freytag,Privacy in location-aware systems.,2009,1,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial1.html#Freytag09,http://doi.acm.org/10.1145/1567253.1567255 +Wenlu Wang,Dynamic indoor navigation with bayesian filters.,2016,8,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial8.html#WangK16,http://doi.acm.org/10.1145/3100243.3100249 +David M. Mountain,The dimensions of context and its role in mobile information retrieval.,2011,3,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial3.html#Mountain11,http://doi.acm.org/10.1145/2047296.2047311 +Steven Schockaert,Vague regions in Geographic Information Retrieval.,2011,3,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial3.html#Schockaert11,http://doi.acm.org/10.1145/2047296.2047302 +Stephan Winter 0001,Indoor localization and navigation independent of sensor based technologies.,2017,9,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial9.html#WinterTVRK17,http://doi.acm.org/10.1145/3124104.3124109 +Shan-Yun Teng,Toward mining user movement behaviors in indoor environments.,2017,9,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial9.html#TengKC17,http://doi.acm.org/10.1145/3151123.3151127 +Chenggang Lai,Accelerating the calculation of minimum set of viewpoints for maximum coverage over digital elevation model data by hybrid computer architecture and systems.,2016,8,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial8.html#LaiHS16,http://doi.acm.org/10.1145/3100243.3100246 +Ashwin Shashidharan,Computational steering for geosimulations.,2016,8,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial8.html#Shashidharan16,http://doi.acm.org/10.1145/3100243.3100248 +Vlastislav Dohnal,Real-life performance of metric searching.,2010,2,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial2.html#DohnalZ10,http://doi.acm.org/10.1145/1862413.1862421 +Yury Lifshits,Nearest neighbor search: algorithmic perspective.,2010,2,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial2.html#Lifshits10,http://doi.acm.org/10.1145/1862413.1862417 +Christoph Schlieder,Spatial grounding with vague place models.,2011,3,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial3.html#SchliederH11,http://doi.acm.org/10.1145/2047296.2047301 +Moustafa Elhamshary,Towards ubiquitous indoor spatial awareness on a worldwide scale.,2017,9,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial9.html#ElhamsharyY17,http://doi.acm.org/10.1145/3151123.3151129 +Xing Xie 0001,Welcome to SIGSPATIAL China.,2010,2,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial2.html#Xie10a,http://doi.acm.org/10.1145/1773995.1774003 +Blazej Ciepluch,Using OpenStreetMap to deliver location-based environmental information in Ireland.,2009,1,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial1.html#CiepluchMJW09,http://doi.acm.org/10.1145/1645424.1645428 +Imad Afyouni,Gamifying hand physical therapy with intelligent 3D navigation.,2016,8,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial8.html#AfyouniRGQB16,http://doi.acm.org/10.1145/2961028.2961035 +Chi-Yin Chow,Privacy in location-based services: a system architecture perspective.,2009,1,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial1.html#ChowM09,http://doi.acm.org/10.1145/1567253.1567258 +Gopal K. Mulukutla,Deployment of a large-scale soil monitoring geosensor network.,2015,7,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial7.html#MulukutlaGF15,http://doi.acm.org/10.1145/2826686.2826689 +Guoray Cai,Relevance ranking in Geographical Information Retrieval.,2011,3,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial3.html#Cai11,http://doi.acm.org/10.1145/2047296.2047304 +Xing Xie 0001,SIGSPATIAL China 2010 activity report.,2011,3,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial3.html#Xie11,http://doi.acm.org/10.1145/1966478.1966488 +Vladimir Pestov,Intrinsic dimensionality.,2010,2,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial2.html#Pestov10,http://doi.acm.org/10.1145/1862413.1862416 +Hans-Peter Kriegel,Metric spaces in data mining: applications to clustering.,2010,2,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial2.html#KriegelKRS10,http://doi.acm.org/10.1145/1862413.1862423 +Tsz-Yam Lau,Automated artifact-free seafloor surface reconstruction with two-step ODETLAP.,2012,4,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial4.html#LauF12,http://doi.acm.org/10.1145/2429177.2429179 +Aaron San Jose,City-scale mapping of pets using georeferenced images.,2016,8,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial8.html#JoseH16,http://doi.acm.org/10.1145/3100243.3100247 +Frank Stajano,Foot-driven computing: our first glimpse of location privacy issues.,2009,1,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial1.html#Stajano09,http://doi.acm.org/10.1145/1567253.1567259 +Jing Lian,SRC: extracting commute patterns for customized bus service area design.,2017,9,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial9.html#Lian17,http://doi.acm.org/10.1145/3178392.3178398 +Yaron Kanza,Uncertainty in geosocial data: friend or foe?,2016,8,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial8.html#Kanza16,http://doi.acm.org/10.1145/3024087.3024088 +Lars Kulik,Privacy for real-time location-based services.,2009,1,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial1.html#Kulik09,http://doi.acm.org/10.1145/1567253.1567256 +Nodari Sitchinava,Computational geometry in the parallel external memory model.,2012,4,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial4.html#Sitchinava12,http://doi.acm.org/10.1145/2367574.2367578 +Jie Bao,Geo-social media data analytic for user modeling and location-based services.,2015,7,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial7.html#BaoLZY15,http://doi.acm.org/10.1145/2876480.2876484 +Mani Thomas,Mapping of large magnitude discontinuous sea ice motion.,2009,1,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial1.html#ThomasKG09,http://doi.acm.org/10.1145/1517463.1517469 +Stephan Winter 0001,5th ACM SIGSPATIAL International Workshop on Computational Transportation Science.,2013,5,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial5.html#WinterM13,http://doi.acm.org/10.1145/2505403.2505405 +Maria Luisa Damiani,Introduction to this special issue: semantic and symbolic trajectories.,2015,7,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial7.html#DamianiR15,http://doi.acm.org/10.1145/2782759.2782761 +Bilong Shen,Dynamic ridesharing.,2015,7,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial7.html#ShenHZ15,http://doi.acm.org/10.1145/2876480.2876483 +Egemen Tanin,Activities of ACM SIGSPATIAL Australia Chapter in 2011.,2012,4,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial4.html#TaninS12,http://doi.acm.org/10.1145/2189403.2189413 +Xinyue Ye,Integrating geographic activity space and social network space to promote healthy lifestyles.,2016,8,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial8.html#YeL16,http://doi.acm.org/10.1145/2961028.2961033 +Daniel P. Miranke,Metric-space search in bioinformatics.,2010,2,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial2.html#Miranke10,http://doi.acm.org/10.1145/1862413.1862422 +Martin Werner,ACM SIGSPATIAL GIS Cup 2017: range queries under Fréchet distance.,2018,10,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial10.html#WernerO18,http://doi.acm.org/10.1145/3231541.3231549 +Judith Gelernter,Data mining of maps and their automatic region-time-theme classification.,2009,1,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial1.html#Gelernter09,http://doi.acm.org/10.1145/1517463.1517468 +Akihito Sudo,PredictGIS 2017 workshop report held in conjunction with ACM SIGSPATIAL 2017.,2017,9,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial9.html#SudoYS17,http://doi.acm.org/10.1145/3178392.3178411 +Simon E. Overell,The problem of place name ambiguity.,2011,3,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial3.html#Overell11,http://doi.acm.org/10.1145/2047296.2047299 +Demetrios Zeinalipour-Yazti,The anatomy of the anyplace indoor navigation service.,2017,9,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial9.html#Zeinalipour-Yazti17,http://doi.acm.org/10.1145/3151123.3151125 +Tanvir Ahmed 0001,Risk detection and prediction from indoor tracking data.,2017,9,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial9.html#AhmedCLP17,http://doi.acm.org/10.1145/3151123.3151126 +Ricky Jacob,Haptic-GIS: exploring the possibilities.,2010,2,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial2.html#JacobMCW10,http://doi.acm.org/10.1145/1953102.1953105 +Yuhan Sun,SRC: towards a location-based graph database system.,2017,9,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial9.html#Sun17,http://doi.acm.org/10.1145/3178392.3178395 +Hui Zhang 0016,EM-GIS2017 workshop report: the 3rd ACM SIGSPATIAL International Workshop on the Use of GIS in Emergency Management.,2017,9,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial9.html#ZhangTHGLY17,http://doi.acm.org/10.1145/3178392.3178404 +Stephan Winter 0001,Knowledge acquisition about places.,2012,4,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial4.html#WinterJRV12,http://doi.acm.org/10.1145/2429177.2429181 +Jane MacFarlane,Addressing the uncertainties in autonomous driving.,2016,8,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial8.html#MacFarlaneS16,http://doi.acm.org/10.1145/3024087.3024092 +Zhongyi Xie,Slope preserving lossy terrain compression.,2010,2,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial2.html#XieFT10,http://doi.acm.org/10.1145/1953102.1953106 +Jia Yu,SRC: geospatial visual analytics belongs to database systems: the BABYLON approach.,2017,9,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial9.html#Yu17,http://doi.acm.org/10.1145/3178392.3178394 +Wei Wang 0011,Similarity joins as stronger metric operations.,2010,2,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial2.html#Wang10,http://doi.acm.org/10.1145/1862413.1862420 +Ross Purves,Geographic Information Retrieval.,2011,3,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial3.html#PurvesJ11,http://doi.acm.org/10.1145/2047296.2047297 +Monika Sester,6th ACM SIGSPATIAL International Workshop on Computational Transportation Science.,2014,6,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial6.html#SesterMKLS14,http://doi.acm.org/10.1145/2684380.2684383 +Emily Schnebele,Initial validation of non-authoritative data for road assessment.,2013,5,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial5.html#SchnebeleCW13,http://doi.acm.org/10.1145/2544346.2544348 +Shaowen Wang,CyberGIS for data-intensive knowledge discovery.,2014,6,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial6.html#WangHLLPS14,http://doi.acm.org/10.1145/2744700.2744704 +Ahmed R. Mahmood,SRC: tornado: a distributed spatio-textual stream processing system.,2017,9,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial9.html#Mahmood17,http://doi.acm.org/10.1145/3178392.3178397 +Lei Li 0003,Time-dependent route scheduling on road networks.,2018,10,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial10.html#LiKXZ18,http://doi.acm.org/10.1145/3231541.3231545 +Jing Wu 0008,An integrated qualitative and boundary-based formal model for a semantic representation of trajectories.,2015,7,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial7.html#WuCD15,http://doi.acm.org/10.1145/2782759.2782766 +Stéphanie Vanhove,Applications of graph algorithms in GIS.,2010,2,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial2.html#VanhoveF10,http://doi.acm.org/10.1145/1953102.1953108 +Ling Liu 0001,Privacy and location anonymization in location-based services.,2009,1,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial1.html#Liu09,http://doi.acm.org/10.1145/1567253.1567257 +Htoo Htet Aung,Mining multi-object spatial-temporal movement patterns.,2012,4,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial4.html#AungT12,http://doi.acm.org/10.1145/2429177.2429180 +Thomas Mølhave,Using TPIE for processing massive data sets in C++.,2012,4,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial4.html#Molhave12,http://doi.acm.org/10.1145/2367574.2367579 +Jacob Beal,Formal foundations of sensor network applications.,2015,7,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial7.html#BealV15,http://doi.acm.org/10.1145/2826686.2826693 +Kevin Leempoel,Very high resolution digital elevation models (VHR DEMs) and multiscale landscape genomics analysis applied to an alpine plant species.,2011,3,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial3.html#LeempoelSPJ11,http://doi.acm.org/10.1145/2078296.2078299 +Daniel W. Goldberg,HealthGIS 2013 workshop report: the Second ACM SIGSPATIAL International Workshop on the Use of GIS in Public Health.,2014,6,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial6.html#GoldbergHKS14,http://doi.acm.org/10.1145/2684380.2684385 +Nuno Cardoso,Evaluating Geographic Information Retrieval.,2011,3,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial3.html#Cardoso11,http://doi.acm.org/10.1145/2047296.2047307 +Edgar Chávez,Fundamentals of the problem.,2010,2,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial2.html#ChavezN10,http://doi.acm.org/10.1145/1862413.1862415 +Le Gruenwald,Large-scale spatial data processing on GPUs and GPU-accelerated clusters.,2014,6,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial6.html#Gruenwald14,http://doi.acm.org/10.1145/2766196.2766201 +Siva Ravada,Big data spatial analytics for enterprise applications.,2014,6,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial6.html#Ravada14,http://doi.acm.org/10.1145/2744700.2744705 +Christopher Stuetzle,Measuring terrain distances through extracted channel networks.,2011,3,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial3.html#StuetzleFCKCZ11,http://doi.acm.org/10.1145/2078296.2078301 +Andreas Züfle,Introduction to this special issue: urban analytics and mobility (part 1).,2018,10,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial10.html#Zufle18,http://doi.acm.org/10.1145/3231541.3231543 +Mor Naaman,Geographic information from georeferenced social media data.,2011,3,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial3.html#Naaman11,http://doi.acm.org/10.1145/2047296.2047308 +Igo Ramalho Brilhante,Planning sightseeing tours using crowdsensed trajectories.,2015,7,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial7.html#BrilhanteMNPR15,http://doi.acm.org/10.1145/2782759.2782769 +Yaguang Li,A brief overview of machine learning methods for short-term traffic forecasting and future directions.,2018,10,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial10.html#LiS18,http://doi.acm.org/10.1145/3231541.3231544 +Florence Sèdes,(Meta-)data modelling: gathering spatio-temporal data for indoor-outdoor queries.,2017,9,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial9.html#SedesP17,http://doi.acm.org/10.1145/3124104.3124111 +Budhendra L. Bhaduri,Emerging trends in monitoring landscapes and energy infrastructures with big spatial data.,2014,6,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial6.html#BhaduriPVCLK14,http://doi.acm.org/10.1145/2766196.2766202 +Mihai Maruseac,Processing uncertain spatial data resulting from differentially-private sanitization.,2016,8,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial8.html#MaruseacG16,http://doi.acm.org/10.1145/3024087.3024091 +Chi-Yin Chow,Message from the Editor.,2016,8,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial8.html#Chow16,http://portalparts.acm.org/3030000/3024087/fm/frontmatter.pdf?ip=116.49.239.105 +Georg Fuchs,Constructing semantic interpretation of routine and anomalous mobility behaviors from big data.,2015,7,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial7.html#FuchsSHAA15,http://doi.acm.org/10.1145/2782759.2782765 +Rui Zhang,Activities of ACM SIGSPATIAL Australia chapter in 2012.,2013,5,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial5.html#ZhangS13,http://doi.acm.org/10.1145/2505403.2505413 +Goce Trajcevski,Introduction to this Special Issue: Spatio-Temporal Uncertainty.,2016,8,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial8.html#Trajcevski16,http://portalparts.acm.org/3030000/3024087/fm/frontmatter.pdf?ip=116.49.239.105 +Jian Wen,On continuously monitoring the top-k moving objects with relational group and score functions.,2009,1,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial1.html#WenTZ09,http://doi.acm.org/10.1145/1645424.1645426 +Andreas Züfle,Bayesian network movement model.,2016,8,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial8.html#Zufle16,http://doi.acm.org/10.1145/3024087.3024090 +Guangzhong Sun,Highlights from ACM SIGSPATIAL China Chapter in 2013.,2014,6,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial6.html#Sun14,http://doi.acm.org/10.1145/2684380.2684392 +Ralf Hartmut Güting,Parallel SECONDO: scalable query processing in the cloud for non-standard applications.,2014,6,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial6.html#GutingL14,http://doi.acm.org/10.1145/2744700.2744701 +Kun Hu,From farm to fork: how spatial-temporal data can accelerate foodborne illness investigation in a global food supply chain.,2016,8,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial8.html#HuEDK16,http://doi.acm.org/10.1145/2961028.2961031 +Henrik Blunck,Deviation maps for robust and informed indoor positioning services.,2017,9,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial9.html#BlunckPTTV17,http://doi.acm.org/10.1145/3124104.3124110 +Fusheng Wang,High performance spatial queries for spatial big data: from medical imaging to GIS.,2014,6,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial6.html#WangAV14,http://doi.acm.org/10.1145/2766196.2766199 +Ray R. Larson,Ranking approaches for GIR.,2011,3,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial3.html#Larson11,http://doi.acm.org/10.1145/2047296.2047305 +Haowen Lin,SRC: automatic extraction of phrase-level map labels from historical maps.,2017,9,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial9.html#LinC17,http://doi.acm.org/10.1145/3178392.3178400 +Nikos Pelekis,Hermoupolis: a semantic trajectory generator in the data science era.,2015,7,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial7.html#PelekisSTT15,http://doi.acm.org/10.1145/2782759.2782764 +Andi Zang,High definition maps in urban context.,2018,10,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial10.html#ZangCT18,http://doi.acm.org/10.1145/3231541.3231546 +Ke Yi,The priority R-tree.,2012,4,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial4.html#Yi12,http://doi.acm.org/10.1145/2367574.2367576 +Bernd Resch,Fusing human and technical sensor data: concepts and challenges.,2015,7,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial7.html#ReschB15,http://doi.acm.org/10.1145/2826686.2826692 +Simon Scheider,COMP 2013: ACM SIGSPATIAL International Workshop on Computational Models of Place 2013.,2014,6,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial6.html#ScheiderAJVW14,http://doi.acm.org/10.1145/2684380.2684390 +Fangli Ying,A model for progressive transmission of spatial data based on shape complexity.,2010,2,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial2.html#YingMCW10,http://doi.acm.org/10.1145/1953102.1953107 +Rui Zhang,SIGSPATIAL Australia 2010 activity report.,2011,3,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial3.html#Zhang11,http://doi.acm.org/10.1145/1966478.1966487 +Hedi Haddad,A fully GIS-integrated simulation approach for analyzing the spread of epidemics in urban areas.,2016,8,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial8.html#HaddadMT16,http://doi.acm.org/10.1145/2961028.2961034 +Christopher Stuetzle,Evaluating hydrology preservation of simplified terrain representations.,2009,1,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial1.html#StuetzleFC09,http://doi.acm.org/10.1145/1517463.1517470 +Renato Fileto,Semantic enrichment and analysis of movement data: probably it is just starting!,2015,7,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial7.html#FiletoBMK15,http://doi.acm.org/10.1145/2782759.2782763 +Chiaki Mizutani,Analytical framework for polygon-based land use change.,2011,3,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial3.html#MizutaniM11,http://doi.acm.org/10.1145/2078296.2078300 +Ahed Alboody,Enriching the spatial reasoning system RCC8.,2009,1,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial1.html#AlboodyIS09,http://doi.acm.org/10.1145/1517463.1517464 +Reem Y. Ali,Spatial big data for eco-routing services: computational challenges and accomplishments.,2014,6,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial6.html#AliGS14,http://doi.acm.org/10.1145/2744700.2744703 +Mehreteab Aregay,Multiscale modeling approach for hierarchical aligned aggregated small area health data.,2016,8,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial8.html#AregayLFKCW16,http://doi.acm.org/10.1145/2961028.2961032 +Chi-Yin Chow,Mobile data analytics: introduction to this special issue.,2015,7,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial7.html#Chow15a,http://doi.acm.org/10.1145/2876480.2876482 +Guofeng Cao,A geostatistical framework for categorical spatial data modeling.,2011,3,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial3.html#CaoKG11,http://doi.acm.org/10.1145/2078296.2078298 +Steve H. L. Liang,SWE 2012 workshop report: the First International Workshop on Sensor Web Enablement.,2013,5,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial5.html#LiangLX13,http://doi.acm.org/10.1145/2505403.2505411 +Kevin Toohey,Trajectory similarity measures.,2015,7,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial7.html#TooheyD15,http://doi.acm.org/10.1145/2782759.2782767 +Vadeerat Rinsurongkawong,Change analysis in spatial datasets by interestingness comparison.,2009,1,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial1.html#RinsurongkawongE09,http://doi.acm.org/10.1145/1517463.1517467 +Bettina Fazzinga,Using integrity constraints to guide the interpretation of RFID-trajectory data.,2017,9,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial9.html#FazzingaFFP17,http://doi.acm.org/10.1145/3151123.3151128 +Reynold Cheng,Managing uncertainty of large spatial databases.,2016,8,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial8.html#Cheng16,http://doi.acm.org/10.1145/3024087.3024089 +Chi-Yin Chow,Message from the editor.,2015,7,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial7.html#Chow15,http://doi.acm.org/10.1145/2876480.2876481 +Somayeh Dodge,Exploring movement-similarity analysis of moving objects.,2009,1,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial1.html#DodgeWL09,http://doi.acm.org/10.1145/1645424.1645427 +Jia-Dong Zhang,Point-of-interest recommendations in location-based social networks.,2015,7,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial7.html#ZhangC15,http://doi.acm.org/10.1145/2876480.2876486 +Laura Toma,Viewsheds on terrains in external memory.,2012,4,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial4.html#Toma12,http://doi.acm.org/10.1145/2367574.2367577 +Tumasch Reichenbacher,Geographic relevance: different notions of geographies and relevancies.,2011,3,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial3.html#ReichenbacherS11,http://doi.acm.org/10.1145/2047296.2047310 +Ricardo Barros Lourenço,SRC: assessing verticalization effects on urban safety perception.,2017,9,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial9.html#Lourenco17,http://doi.acm.org/10.1145/3178392.3178399 +Matt Duckham,Challenges to using decentralized spatial algorithms in the field: the RISERnet geosensor network case study.,2015,7,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial7.html#DuckhamZT15,http://doi.acm.org/10.1145/2826686.2826690 +Xiaofang Zhou,Welcome to SIGSPATIAL Australia.,2010,2,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial2.html#Zhou10,http://doi.acm.org/10.1145/1773995.1774002 +Guangzhong Sun,Highlights from ACM SIGSPATIAL China chapter in 2014.,2015,7,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial7.html#SunYX15,http://doi.acm.org/10.1145/2782759.2782771 +Chi-Yin Chow,Introduction to this special issue: GIS in public health research.,2016,8,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial8.html#ChowH16,http://doi.acm.org/10.1145/2961028.2961030 +Xing Xie 0001,Highlights from ACM SIGSPATIAL China Chapter in 2011.,2012,4,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial4.html#Xie12,http://doi.acm.org/10.1145/2189403.2189414 +Hicham G. Elmongui,Query optimization for spatio-temporal data stream management systems.,2009,1,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial1.html#Elmongui09,http://doi.acm.org/10.1145/1517463.1517465 +Qingfeng Guan,pRPL: an open-source general-purpose parallel raster processing programming library.,2009,1,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial1.html#Guan09,http://doi.acm.org/10.1145/1517463.1517471 +Sushil K. Prasad,A vision for GPU-accelerated parallel computation on geo-spatial datasets.,2014,6,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial6.html#PrasadMPSASZ14,http://doi.acm.org/10.1145/2766196.2766200 +Asif Iqbal Baba,Cleansing indoor RFID tracking data.,2017,9,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial9.html#BabaLPJ17,http://doi.acm.org/10.1145/3124104.3124108 +You Li,3D oceanographic data compression using 3D-ODETLAP.,2010,2,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial2.html#LiLSFF10,http://doi.acm.org/10.1145/1953102.1953104 +Ugur Demiryurek,The first ACM SIGSPATIAL PhD symposium 2014.,2015,7,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial7.html#DemiryurekS15,http://doi.acm.org/10.1145/2782759.2782774 +Bruno Martins 0001,Geohumanities 2017 workshop report.,2017,9,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial9.html#MartinsM17,http://doi.acm.org/10.1145/3178392.3178406 +Paolo Ciaccia,Approximate and probabilistic methods.,2010,2,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial2.html#CiacciaP10,http://doi.acm.org/10.1145/1862413.1862418 +Benjamin Bustos,Beyond the metric space model.,2010,2,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial2.html#BustosS10,http://doi.acm.org/10.1145/1862413.1862419 +Silvia Nittel,Real-time sensor data streams.,2015,7,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial7.html#Nittel15a,http://doi.acm.org/10.1145/2826686.2826691 +Guoqiong Liao,Probabilistic cleaning over trajectory events of mobile RFID objects.,2017,9,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial9.html#LiaoYZXWL17,http://doi.acm.org/10.1145/3124104.3124107 +Ahmed Eldawy,The ecosystem of SpatialHadoop.,2014,6,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial6.html#EldawyM14,http://doi.acm.org/10.1145/2766196.2766198 +Chi-Yin Chow,Introduction to this special issue: indoor spatial awareness (part 1).,2017,9,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial9.html#Chow17,http://doi.acm.org/10.1145/3124104.3124106 +Lars Arge,I/O-efficient spatial data structures for range queries.,2012,4,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial4.html#ArgeL12,http://doi.acm.org/10.1145/2367574.2367575 +Jochen L. Leidner,Detecting geographical references in the form of place names and associated spatial natural language.,2011,3,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial3.html#LeidnerL11,http://doi.acm.org/10.1145/2047296.2047298 +Vanessa Murdock,Your mileage may vary: on the limits of social media.,2011,3,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial3.html#Murdock11,http://doi.acm.org/10.1145/2047296.2047309 +Suradej Intagorn,A probabilistic approach to mining geospatial knowledge from social annotations.,2012,4,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial4.html#IntagornL12,http://doi.acm.org/10.1145/2429177.2429178 +Johannes Leveling,Challenges for indexing in GIR.,2011,3,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial3.html#Leveling11,http://doi.acm.org/10.1145/2047296.2047303 +Weiwei Duan,SRC: a fully automatic geographic feature recognition system.,2017,9,SIGSPATIAL Special,3,db/journals/sigspatial/sigspatial9.html#DuanC17,http://doi.acm.org/10.1145/3178392.3178396 +Maria Luisa Damiani,Symbolic trajectories and application challenges.,2015,7,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial7.html#DamianiIGV15,http://doi.acm.org/10.1145/2782759.2782768 +Carla Geovana N. Macário,Specification of a framework for semantic annotation of geospatial data on the web.,2009,1,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial1.html#MacarioM09,http://doi.acm.org/10.1145/1517463.1517466 +Davide Buscaldi,Approaches to disambiguating toponyms.,2011,3,SIGSPATIAL Special,2,db/journals/sigspatial/sigspatial3.html#Buscaldi11,http://doi.acm.org/10.1145/2047296.2047300 +Daniel W. Goldberg,HealthGIS 2012 workshop report: the First ACM SIGSPATIAL International Workshop on the Use of GIS in Public Health.,2013,5,SIGSPATIAL Special,1,db/journals/sigspatial/sigspatial5.html#GoldbergBHK13,http://doi.acm.org/10.1145/2505403.2505412 +Siwei Ma,Low Complexity Integer Transform and Adaptive Quantization Optimization.,2006,21,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst21.html#MaG06,https://doi.org/10.1007/s11390-006-0354-8 +Jieyi Zhao,Connectivity-Based Segmentation for GPU-Accelerated Mesh Decompression.,2012,27,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst27.html#ZhaoTT12,https://doi.org/10.1007/s11390-012-1289-x +Zhanyi Hu,Robot Self-Location by Line Correspondences.,2001,16,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst16.html#HuCT01,https://doi.org/10.1007/BF02950415 +Dianxun Shuai,New heuristic distributed parallel algorithms for searching and planning.,1995,10,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst10.html#Shuai95a,https://doi.org/10.1007/BF02943504 +Farrukh Nadeem,An Early Evaluation and Comparison of Three Private Cloud Computing Software Platforms.,2015,30,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst30.html#NadeemQ15,https://doi.org/10.1007/s11390-015-1550-1 +Jie Ma,BCL-3: A High Performance Basic Communication Protocol for Commodity Superserver DAWNING-3000.,2001,16,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst16.html#MaJML01,https://doi.org/10.1007/BF02943236 +Yiwei Jiang,Semi-Online Algorithms for Scheduling with Machine Cost.,2006,21,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst21.html#JiangH06,https://doi.org/10.1007/s11390-006-0984-x +Yuan Ping,Convex Decomposition Based Cluster Labeling Method for Support Vector Clustering.,2012,27,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst27.html#PingTZY12,https://doi.org/10.1007/s11390-012-1232-1 +Xue Wang,Summarizing Large-Scale Database Schema Using Community Detection.,2012,27,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst27.html#WangZW12,https://doi.org/10.1007/s11390-012-1240-1 +Shu-Gao Ma,Effectively Discriminating Fighting Shots in Action Movies.,2011,26,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst26.html#MaW10,https://doi.org/10.1007/s11390-011-9425-6 +Yanhui Xiao,Class-Driven Non-Negative Matrix Factorization for Image Representation.,2013,28,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst28.html#XiaoZZW13,https://doi.org/10.1007/s11390-013-1374-9 +Chun-Lin Xin,Competitive Analysis of Two Special Online Device Replacement Problems.,2008,23,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst23.html#XinMY08,https://doi.org/10.1007/s11390-008-9122-2 +Luo Jianhua,Reduction of Artifacts in Images from MR Truncated Data Using Singularity Spectrum Analysis.,2000,15,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst15.html#JianhuaZ00,https://doi.org/10.1007/BF02948872 +Yuan Zhou,DRMR: Dynamic-Ring-Based Multicast Routing Protocol for Ad Hoc Networks.,2004,19,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst19.html#ZhouLZMH04,https://doi.org/10.1007/BF02973454 +Fanjia Kong,Computing the K -terminal reliability for SONET self-healing rings.,1999,14,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst14.html#KongWZ99,https://doi.org/10.1007/BF02951878 +Ji Wang,A Programming Language Approach to Internet-Based Virtual Computing Environment.,2011,26,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst26.html#WangSW11,https://doi.org/10.1007/s11390-011-1160-5 +Jianwei Xu,SimK: A Large-Scale Parallel Simulation Engine.,2009,24,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst24.html#XuCZCLS09,https://doi.org/10.1007/s11390-009-9294-4 +Guodao Sun,A Survey of Visual Analytics Techniques and Applications: State-of-the-Art Research and Future Challenges.,2013,28,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst28.html#SunWLL13,https://doi.org/10.1007/s11390-013-1383-8 +Jigang Wu,The least basic operations on heap and improved heapsort.,1994,9,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst9.html#WuZ94,https://doi.org/10.1007/BF02939507 +Mingyi Zhang,Some results on default logic.,1994,9,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst9.html#Zhang94a,https://doi.org/10.1007/BF02939508 +Yang Li 0007,Innovative Batik Design with an Interactive Evolutionary Art System.,2009,24,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst24.html#LiHY09,https://doi.org/10.1007/s11390-009-9293-5 +Fei-Yue Wang,Preface.,2009,24,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst24.html#WangSML09,https://doi.org/10.1007/s11390-009-9298-0 +An Qin,Fatman: Building Reliable Archival Storage Based on Low-Cost Volunteer Resources.,2015,30,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst30.html#QinHLYT15,https://doi.org/10.1007/s11390-015-1521-6 +Toshio Kodama,WWW Business Applications Based on the Cellular Model.,2008,23,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst23.html#KodamaKS08,https://doi.org/10.1007/s11390-008-9120-4 +Qi Liu,Illuminating Recommendation by Understanding the Explicit Item Relations.,2018,33,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst33.html#LiuZWLC18,https://doi.org/10.1007/s11390-018-1853-0 +Xiao-Hui Bie,Free Appearance-Editing with Improved Poisson Image Cloning.,2011,26,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst26.html#BieHW11,https://doi.org/10.1007/s11390-011-1197-5 +Chang No Yoon,Applying virtual reality to molecular graphics system.,1996,11,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst11.html#YoonCKP96,https://doi.org/10.1007/BF02947218 +Li Shen,Optimization Strategies Oriented to Loop Characteristics in Software Thread Level Speculation Systems.,2016,31,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst31.html#ShenXW16,https://doi.org/10.1007/s11390-016-1612-z +Chuanwen Li,Aggressive Complex Event Processing with Confidence over Out-of-Order Streams.,2011,26,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst26.html#LiGYH11,https://doi.org/10.1007/s11390-011-1168-x +Xiaolong Zheng,A Survey on Data Dissemination in Wireless Sensor Networks.,2014,29,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst29.html#ZhengW14,https://doi.org/10.1007/s11390-014-1443-8 +Darko Brodic,Extended Approach to Water Flow Algorithm for Text Line Segmentation.,2012,27,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst27.html#Brodic12,https://doi.org/10.1007/s11390-012-1216-1 +Daoyun Xu,Characterization of an Auto-Compatible Default Theory.,2003,18,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst18.html#XuDM03,https://doi.org/10.1007/BF02948910 +Dennis Y. W. Liu,Revocable Ring Signature.,2007,22,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst22.html#LiuLMSW07,https://doi.org/10.1007/s11390-007-9096-5 +Aoying Zhou,Approaches for Scaling DBSCAN Algorithm to Large Spatial Databases.,2000,15,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst15.html#ZhouZCFH00,https://doi.org/10.1007/BF02948834 +Xiaojun Wu,A New Algorithm for Generalized Optimal Discriminant Vectors.,2002,17,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst17.html#WuYWGG02,https://doi.org/10.1007/BF02947310 +Cui-Cui Zhang,Prior-Free Dependent Motion Segmentation Using Helmholtz-Hodge Decomposition Based Object-Motion Oriented Map.,2017,32,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst32.html#ZhangL17,https://doi.org/10.1007/s11390-017-1741-z +Fang Zheng,Center-distance continuous probability models and the distance measure.,1998,13,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst13.html#ZhengWF98,https://doi.org/10.1007/BF02948501 +Najam Nazar,Summarizing Software Artifacts: A Literature Review.,2016,31,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst31.html#NazarHJ16,https://doi.org/10.1007/s11390-016-1671-1 +Jiliang Zhang 0002,Techniques for Design and Implementation of an FPGA-Specific Physical Unclonable Function.,2016,31,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst31.html#ZhangWDLZXSW16,https://doi.org/10.1007/s11390-016-1616-8 +Harald E. Otto,From Concepts to Consistent Object Specifications: Translation of a Domain-Oriented Feature Framework into Practice.,2001,16,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst16.html#Otto01,https://doi.org/10.1007/BF02943200 +Qingzhong Li,Efficient Mining of Association Rules by Reducing the Number of Passes over the Database.,2001,16,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst16.html#QingzhongHZM01,https://doi.org/10.1007/BF02950423 +Yun Zeng,A Novel Variational Image Model: Towards a Unified Approach to Image Editing.,2006,21,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst21.html#ZengCP06,https://doi.org/10.1007/s11390-006-0224-4 +Feng-Yu Li,Augmented Flow Simulation Based on Tight Coupling Between Video Reconstruction and Eulerian Models.,2018,33,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst33.html#LiWQQ18,https://doi.org/10.1007/s11390-018-1830-7 +Jian-Wan Ding,A Component-Based Debugging Approach for Detecting Structural Inconsistencies in Declarative Equation Based Models.,2006,21,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst21.html#DingCZ06,https://doi.org/10.1007/s11390-006-0450-9 +Guoren Wang,Performance Evaluation of a Parallel Cascade Semijoin Algorithm for Computing Path Expressions in Object Database Systems.,2002,17,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst17.html#WangY02,https://doi.org/10.1007/BF02962206 +Wenjie Li,Parallel Switch System with QoS Guarantee for Real-Time Traffic.,2006,21,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst21.html#LiLXL06,https://doi.org/10.1007/s11390-006-1012-x +Baodong Qin,Cryptanalysis of a Type of CRT-Based RSA Algorithms.,2008,23,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst23.html#QinLK08,https://doi.org/10.1007/s11390-008-9123-1 +Bao-Kun Zheng,Scalable and Privacy-Preserving Data Sharing Based on Blockchain.,2018,33,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst33.html#ZhengZSGZLY18,https://doi.org/10.1007/s11390-018-1840-5 +Ke Chen 0001,Speed up training of the recurrent neural network based on constrained optimization techniques.,1996,11,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst11.html#ChenBC96,https://doi.org/10.1007/BF02951621 +,Preface.,2003,18,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst18.html#X03,https://doi.org/10.1007/BF02948914 +Bingshan Wang,Universal abstract consistency class and universal refutation.,1999,14,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst14.html#WangLC99,https://doi.org/10.1007/BF02946524 +Wei Li,Functional-level Fault Simulation with concurrent and parallel mechanisms using object-oriented VLSI model.,1998,13,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst13.html#LiY98,https://doi.org/10.1007/BF02946603 +Qiong Zhang,Acoustic simulation with dynamic mechanisms in virtual reality.,1998,13,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst13.html#ZhangS98,https://doi.org/10.1007/BF02943197 +Javier Garzás,Do Rules and Patterns Affect Design Maintainability?,2009,24,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst24.html#GarzasGP09,https://doi.org/10.1007/s11390-009-9222-7 +Jian-Jun Zhang 0001,PDE Surface Generation with Combined Closed and Non-Closed Form Solutions.,2004,19,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst19.html#ZhangY04,https://doi.org/10.1007/BF02945591 +Yufang Sun,Hanzix and Chinese open system platform.,1997,12,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst12.html#Sun97,https://doi.org/10.1007/BF02948978 +Jun Wang 0039,Feature-Preserving Mesh Denoising via Anisotropic Surface Fitting.,2012,27,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst27.html#WangY12,https://doi.org/10.1007/s11390-012-1214-3 +Xiexiong Chen,Design of multivalued circuits based on an algebra for current-mode CMOS multivalued circuits.,1995,10,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst10.html#ChenM95,https://doi.org/10.1007/BF02943514 +Punam Bedi,A Multi-Threaded Semantic Focused Crawler.,2012,27,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst27.html#BediTBBM12,https://doi.org/10.1007/s11390-012-1299-8 +Luca Aceto,The Complexity of Checking Consistency of Pedigree Information and Related Problems.,2004,19,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst19.html#AcetoHIJK04,https://doi.org/10.1007/BF02944784 +Sriparna Saha 0001,A New Line Symmetry Distance and Its Application to Data Clustering.,2009,24,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst24.html#SahaB09,https://doi.org/10.1007/s11390-009-9244-1 +Zhenchun Huang,IPULOC - Exploring Dynamic Program Locality with the Instruction Processing Unit for Filling Memory Gap.,2002,17,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst17.html#HuangL02,https://doi.org/10.1007/BF02962209 +Sungchan Kim,Modeling in Multi-Resolution and Its Applications.,2006,21,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst21.html#KimLHJ06,https://doi.org/10.1007/s11390-006-0272-9 +Jian Pei,Preface.,2015,30,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst30.html#Pei15,https://doi.org/10.1007/s11390-015-1552-z +Yueh-Min Huang,Inter-Cluster Routing Authentication for Ad Hoc Networks by a Hierarchical Key Scheme.,2006,21,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst21.html#HuangLW06,https://doi.org/10.1007/s11390-006-0997-5 +Yang-Li Wang,Complete Multiple Description Mesh-Based Video Coding Scheme and Its Performance.,2005,20,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst20.html#WangW05,https://doi.org/10.1007/s11390-005-0426-1 +Weibo Chu,Protecting User Privacy in a Multi-Path Information-Centric Network Using Multiple Random-Caches.,2017,32,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst32.html#ChuWJC17,https://doi.org/10.1007/s11390-017-1730-2 +Yaoqing Gao,Parallel execution of prolog on shared-memory multiprocessors.,1993,8,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst8.html#GaoWZSHHL93,https://doi.org/10.1007/BF02939540 +Weiwu Hu,Making Effective Decisions in Computer Architects' Real-World: Lessons and Experiences with Godson-2 Processor Designs.,2008,23,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst23.html#HuW08,https://doi.org/10.1007/s11390-008-9158-3 +Jin-Zhao Yuan,Estimation of Vehicle Pose and Position with Monocular Camera at Urban Road Intersections.,2017,32,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst32.html#YuanCZX17,https://doi.org/10.1007/s11390-017-1790-3 +Yining Chen,Towards Robustness to Speech Rate in Mandarin All-Syllable Recognition.,2003,18,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst18.html#ChenZLL03,https://doi.org/10.1007/BF02945464 +Chen Wang,Chopper: Efficient Algorithm for Tree Mining.,2004,19,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst19.html#WangHWS04,https://doi.org/10.1007/BF02944901 +Yu-Jie Liu,How to Wear Beautifully? Clothing Pair Recommendation.,2018,33,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst33.html#LiuGBWL18,https://doi.org/10.1007/s11390-018-1836-1 +Ruby B. Lee,Single-Cycle Bit Permutations with MOMR Execution.,2005,20,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst20.html#LeeYS05,https://doi.org/10.1007/s11390-005-0577-0 +Junwen Duan,Mining Intention-Related Products on Online Q and A Community.,2015,30,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst30.html#DuanCLD15,https://doi.org/10.1007/s11390-015-1581-7 +,Introduction to the Six Leading Editors.,2014,29,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst29.html#X14a,https://doi.org/10.1007/s11390-013-1407-4 +Nan Wang,Who Blocks Who: Simultaneous Segmentation of Occluded Objects.,2013,28,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst28.html#WangAT13,https://doi.org/10.1007/s11390-013-1385-6 +Yinghua Min,An analytical delay model.,1999,14,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst14.html#MinL99,https://doi.org/10.1007/BF02946516 +Ling Zhang,CALA: A Web Analysis Algorithm Combined with Content Correlation Analysis Method.,2003,18,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst18.html#ZhangMYC03,https://doi.org/10.1007/BF02946659 +Peng Xiao,An Energy-Aware Heuristic Scheduling for Data-Intensive Workflows in Virtualized Datacenters.,2013,28,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst28.html#XiaoHZ13,https://doi.org/10.1007/s11390-013-1390-9 +Ninghui Sun,Dawning Nebulae: A PetaFLOPS Supercomputer with a Heterogeneous Structure.,2011,26,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst26.html#SunXHTXLM11,https://doi.org/10.1007/s11390-011-1138-3 +Dengguo Feng,Progress and Prospect of Some Fundamental Research on Information Security in China.,2006,21,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst21.html#FengW06,https://doi.org/10.1007/s11390-006-0740-2 +Fernando Matos,Provisioning of Inter-Domain QoS-Aware Services.,2015,30,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst30.html#MatosMSM15,https://doi.org/10.1007/s11390-015-1532-3 +Pei-Hsuan Tu,Surface Detail Capturing for Realistic Facial Animation.,2004,19,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst19.html#TuLYLO04,https://doi.org/10.1007/BF02945587 +Jianhua Feng,Efficient Mining of Frequent Closed XML Query Pattern.,2007,22,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst22.html#FengQWZ07,https://doi.org/10.1007/s11390-007-9081-z +Minyi Guo,Preface.,2011,26,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst26.html#GuoSS11,https://doi.org/10.1007/s11390-011-1140-9 +Longxiang Zhao,The catalog management strategy of distributed data base systems.,1994,9,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst9.html#ZhaoQ94,https://doi.org/10.1007/BF02939501 +Mingwei Zhang,Web Service Composition Based on QoS Rules.,2010,25,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst25.html#ZhangZLNZ10,https://doi.org/10.1007/s11390-010-9395-0 +Binlei Cai,Experience Availability: Tail-Latency Oriented Availability in Software-Defined Cloud Computing.,2017,32,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst32.html#CaiZZZL17,https://doi.org/10.1007/s11390-017-1719-x +Markus Hinkelmann,t-Private and t-Secure Auctions.,2008,23,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst23.html#HinkelmannJS08,https://doi.org/10.1007/s11390-008-9174-3 +Soon-Gyu Jeong,Distributed Coordinator Election Scheme for QoS Support and Seamless Connectivity in WPANs.,2009,24,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst24.html#JeongY09,https://doi.org/10.1007/s11390-009-9286-4 +Shiwei Ye,A necessary condition about the optimum partition on a finite set of samples and its application to clustering analysis.,1995,10,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst10.html#YeS95,https://doi.org/10.1007/BF02943512 +Jaeyoung Yang,Activity Recognition Based on RFID Object Usage for Smart Mobile Devices.,2011,26,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst26.html#YangLC11,https://doi.org/10.1007/s11390-011-9430-9 +Hai Zhuge,Knowledge Map: Mathematical Model and Dynamic Behaviors.,2005,20,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst20.html#ZhugeL05,https://doi.org/10.1007/s11390-005-0289-5 +Yuanqing Cheng,TSV Minimization for Circuit - Partitioned 3D SoC Test Wrapper Design.,2013,28,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst28.html#ChengZHL13,https://doi.org/10.1007/s11390-013-1316-6 +Ruhui Ma,Partitioning the Conventional DBT System for Multiprocessors.,2011,26,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst26.html#MaGZYYL11,https://doi.org/10.1007/s11390-011-1148-1 +Jichang Kang,Shared variable oriented parallel precompiler for SPMD model.,1995,10,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst10.html#KangZHY95,https://doi.org/10.1007/BF02948344 +Nan Ding,Histogram-Based Estimation of Distribution Algorithm: A Competent Method for Continuous Optimization.,2008,23,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst23.html#DingZS08,https://doi.org/10.1007/s11390-008-9108-0 +Jian-Min Pang,LFTOP: An LF-Based Approach to Domain-Specific Reasoning.,2005,20,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst20.html#PangCL05,https://doi.org/10.1007/s11390-005-0526-y +Yang Liu,Nondeterministic Probabilistic Petri Net - A New Method to Study Qualitative and Quantitative Behaviors of System.,2013,28,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst28.html#LiuMZML13,https://doi.org/10.1007/s11390-013-1323-7 +Peyman Teymoori,Delay-Constrained Optimized Packet Aggregation in High-Speed Wireless Networks.,2013,28,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst28.html#TeymooriY13,https://doi.org/10.1007/s11390-013-1353-1 +Yohan D. Fougerolle,Radial Supershapes for Solid Modeling.,2006,21,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst21.html#FougerolleGFTA06,https://doi.org/10.1007/s11390-006-0238-y +Bin Wang 0015,Outlier Detection over Sliding Windows for Probabilistic Data Streams.,2010,25,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst25.html#WangYWY10,https://doi.org/10.1007/s11390-010-9332-2 +Tao Jiang 0001,Average-Case Analysis of Algorithms Using Kolmogorov Complexity.,2000,15,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst15.html#JiangLV00,https://doi.org/10.1007/BF02950402 +Ji-Rong Wen,POTENTIAL: A Highly Adaptive Core of Parallel Database System.,2000,15,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst15.html#WenHW00,https://doi.org/10.1007/BF02948835 +Xiaohang Wang,Energy Efficient Run-Time Incremental Mapping for 3-D Networks-on-Chip.,2013,28,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst28.html#WangLYPJH13,https://doi.org/10.1007/s11390-013-1312-x +Yong Yan,An optimal algorithm for solving collision distance between convex polygons in plane.,1993,8,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst8.html#Yan93,https://doi.org/10.1007/BF02939545 +Zongmin Ma,Extending the Relational Model to Deal with Probabilistic Data.,2000,15,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst15.html#MaZM00,https://doi.org/10.1007/BF02948810 +Weiwu Hu,Implementing a 1GHz Four-Issue Out-of-Order Execution Microprocessor in a Standard Cell ASIC Methodology.,2007,22,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst22.html#HuZZYGW07,https://doi.org/10.1007/s11390-007-9000-3 +Tianzi Jiang,Contour matching using wavelet transform and multigrid methods.,1997,12,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst12.html#JiangM97,https://doi.org/10.1007/BF02947208 +Zhang Lei,A Personalized Information Dissemination System Based on How-Net.,2002,17,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst17.html#LeiDS02,https://doi.org/10.1007/BF02960782 +Kiatichai Treerattanapitak,Exponential Fuzzy C-Means for Collaborative Filtering.,2012,27,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst27.html#TreerattanapitakJ12,https://doi.org/10.1007/s11390-012-1244-x +Yingqing Xu,Simulation of waters.,1997,12,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst12.html#XuSQLL97,https://doi.org/10.1007/BF02943173 +Hong Wu,Extending STL with efficient data structures.,1998,13,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst13.html#WuN98,https://doi.org/10.1007/BF02946621 +Hua-Zheng Du,A Monte Carlo Enhanced PSO Algorithm for Optimal QoM in Multi-Channel Wireless Networks.,2013,28,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst28.html#DuXJXZ13,https://doi.org/10.1007/s11390-013-1355-z +Zhifeng Yu,Queue Waiting Time Aware Dynamic Workflow Scheduling in Multicluster Environments.,2010,25,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst25.html#YuS10,https://doi.org/10.1007/s11390-010-9371-8 +Ninghui Sun,Reference implementation of scalable I/O low-level API on Intel Paragon.,1999,14,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst14.html#Sun99,https://doi.org/10.1007/BF02948509 +François Bonnet 0001,Conditions for Set Agreement with an Application to Synchronous Systems.,2009,24,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst24.html#BonnetR09,https://doi.org/10.1007/s11390-009-9234-3 +Wenjing Ma,Highly Optimized Code Generation for Stencil Codes with Computation Reuse for GPUs.,2016,31,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst31.html#MaGL16,https://doi.org/10.1007/s11390-016-1696-5 +Belal Al-Khateeb,Effect of Look-Ahead Depth in Evolutionary Checkers.,2012,27,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst27.html#Al-KhateebK12,https://doi.org/10.1007/s11390-012-1280-6 +Zou Tao,Information Service Model with Mobile Agent Supported.,2000,15,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst15.html#TaoWZ00,https://doi.org/10.1007/BF02948799 +Liang Zhang,Approximation for knapsack problems with multiple constraints.,1999,14,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst14.html#ZhangZ99a,https://doi.org/10.1007/BF02948730 +Pin Liao,Unified Probabilistic Models for Face Recognition from a Single Example Image per Person.,2004,19,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst19.html#LiaoS04,https://doi.org/10.1007/BF02944908 +,Preface.,2017,32,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst32.html#X17,https://doi.org/10.1007/s11390-017-1767-2 +Lina Ni,A Heuristic Algorithm for Task Scheduling Based on Mean Load on Grid.,2006,21,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst21.html#NiZYJ06,https://doi.org/10.1007/s11390-006-0559-x +Duksan Ryu,A Hybrid Instance Selection Using Nearest-Neighbor for Cross-Project Defect Prediction.,2015,30,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst30.html#RyuJB15,https://doi.org/10.1007/s11390-015-1575-5 +Jiawei Han 0001,From Sequential Pattern Mining to Structured Pattern Mining: A Pattern-Growth Approach.,2004,19,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst19.html#HanPY04,https://doi.org/10.1007/BF02944897 +Huaiyu Wan,Discovering Family Groups in Passenger Social Networks.,2015,30,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst30.html#WanWLJZ15,https://doi.org/10.1007/s11390-015-1589-z +Jun-Hai Yong,CIM Algorithm for Approximating Three-Dimensional Polygonal Curves.,2001,16,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst16.html#YongHS01,https://doi.org/10.1007/BF02943239 +Cheol Kim,A Power-Aware Branch Predictor by Accessing the BTB Selectively.,2005,20,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst20.html#KimCJ05,https://doi.org/10.1007/s11390-005-0607-y +Yinghua Min,Why RTL ATPG?,2002,17,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst17.html#Min02,https://doi.org/10.1007/BF02962203 +Aoying Zhou,Generalized Multidimensional Association Rules.,2000,15,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst15.html#ZhouZJT00,https://doi.org/10.1007/BF02948876 +Xiang-Sheng Wu,A New Technique for Digital Image Watermarking.,2005,20,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst20.html#Wu05,https://doi.org/10.1007/s11390-005-0843-1 +Xu-bin Deng,L-Tree Match: A New Data Extraction Model and Algorithm for Huge Text Stream with Noises.,2005,20,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst20.html#DengZ05,https://doi.org/10.1007/s11390-005-0763-0 +Xianzhu Wang,DYNAMEM - A microarchitecture for improving memory disambiguation at run-time.,1996,11,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst11.html#WangLL96,https://doi.org/10.1007/BF02951622 +Yidong Shen,On local stratifiability of logic programs and databases.,1993,8,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst8.html#ShenTC93,https://doi.org/10.1007/BF02939472 +Lu Wang,New Explorations on Cannon's Contributions and Generalized Solutions for Uniform Linear Motion Blur Identification.,2012,27,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst27.html#WangZP12,https://doi.org/10.1007/s11390-012-1215-2 +Bin Liu,Static Scene Illumination Estimation from Videos with Applications.,2017,32,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst32.html#LiuXM17,https://doi.org/10.1007/s11390-017-1734-y +Chuanfeng Chen,Internet Network Resource Information Model.,2002,17,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst17.html#ChenZTL02,https://doi.org/10.1007/BF02960783 +Yimo Du,CSWL: Cross-SSD Wear-Leveling Method in SSD-Based RAID Systems for System Endurance and Performance.,2013,28,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst28.html#DuXLC13,https://doi.org/10.1007/s11390-013-1310-z +Hao-Da Huang,Accelerated Parallel Texture Optimization.,2007,22,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst22.html#HuangTW07,https://doi.org/10.1007/s11390-007-9083-x +Aoying Zhou,A New Classification Method to Overcome.,2002,17,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst17.html#ZhouQQJ02,https://doi.org/10.1007/BF02949821 +Guo Qingping,Optimum Tactics of Parallel Multi-Grid Algorithm with Virtual BoundaryForecast Method Running on a Local Network with the PVM Platform.,2000,15,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst15.html#QingpingPSPJ00,https://doi.org/10.1007/BF02948871 +Ratnakar Dash,Particle Swarm Optimization Based Support Vector Regression for Blind Image Restoration.,2012,27,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst27.html#DashSM12,https://doi.org/10.1007/s11390-012-1279-z +Qiang Zhou 0001,A Yield-Driven Gridless Router.,2007,22,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst22.html#ZhouCLH07,https://doi.org/10.1007/s11390-007-9092-9 +Mei-Ying Bian,A Unified Buffering Management with Set Divisible Cache for PCM Main Memory.,2016,31,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst31.html#BianYKNK16,https://doi.org/10.1007/s11390-016-1617-7 +Nelly Condori-Fernández,On the Estimation of the Functional Size of Software from Requirements Specifications.,2007,22,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst22.html#Condori-FernandezAP07,https://doi.org/10.1007/s11390-007-9050-6 +Xiao-Shan Gao,New Algorithms for the Perspective-Three-Point Problem.,2001,16,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst16.html#GaoC01,https://doi.org/10.1007/BF02943199 +Guofu Zhou,Mapping PUNITY to UniNet.,2003,18,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst18.html#ZhouY03,https://doi.org/10.1007/BF02948908 +Yanpei Liu,Orthogonal drawings of graphs for the automation of VLSI circuit design.,1999,14,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst14.html#Liu99,https://doi.org/10.1007/BF02948786 +Lin Du,The Application of the Comparable Corpora in Chinese-English Cross-Lingual Information Retrieval.,2001,16,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst16.html#LinYLS01,https://doi.org/10.1007/BF02948983 +Dianxun Shuai,Asynchronous heterogeneous mechanism for hyper-distributed hyper-parallel AI processing.,1999,14,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst14.html#Shuai99,https://doi.org/10.1007/BF02948511 +Aijun Ge,Forgeability of Wang-Zhu-Feng-Yau's Attribute-Based Signature with Policy-and-Endorsement Mechanism.,2013,28,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst28.html#GeHCM013,https://doi.org/10.1007/s11390-013-1372-y +Chengyi Hu,Parallel solutions for large-scale general sparse nonlinear systems of equations.,1996,11,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst11.html#Hu96a,https://doi.org/10.1007/BF02943133 +Suke Li,Exploiting Consumer Reviews for Product Feature Ranking.,2012,27,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst27.html#LiGTC12,https://doi.org/10.1007/s11390-012-1250-z +Haibo Chen,Mercury: Combining Performance with Dependability Using Self-Virtualization.,2012,27,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst27.html#ChenZCZY12,https://doi.org/10.1007/s11390-012-1208-1 +Ren-Ren Liu,Some Results on the Minimal Coverings of Precomplete Classes in Partial k-Valued Logic Functions.,2004,19,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst19.html#LiuCCL04,https://doi.org/10.1007/BF02973463 +Qingshi Gao,A New Fuzzy Set Theory Satisfying All Classical Set Formulas.,2009,24,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst24.html#GaoGH09,https://doi.org/10.1007/s11390-009-9250-3 +Chollette C. Chude-Olisah,Fuzzy-Based Dynamic Distributed Queue Scheduling for Packet Switched Networks.,2013,28,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst28.html#Chude-OlisahCBS13,https://doi.org/10.1007/s11390-013-1336-2 +Xianglilan Zhang,Merge-Weighted Dynamic Time Warping for Speech Recognition.,2014,29,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst29.html#ZhangLL14,https://doi.org/10.1007/s11390-014-1491-0 +Yong Li 0005,Checking Temporal Duration Properties of Timed Automata.,2002,17,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst17.html#LiH02,https://doi.org/10.1007/BF02960759 +Chun-Xia Xiao,Multi-Level Partition of Unity Algebraic Point Set Surfaces.,2011,26,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst26.html#Xiao11,https://doi.org/10.1007/s11390-011-9429-2 +Lun-Yao Wang,Low Power State Assignment Algorithm for FSMs Considering Peak Current Optimization.,2013,28,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst28.html#WangCX13,https://doi.org/10.1007/s11390-013-1397-2 +Qiong Huang,Generic Certificateless Encryption Secure Against Malicious-but-Passive KGC Attacks in the Standard Model.,2010,25,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst25.html#HuangW10,https://doi.org/10.1007/s11390-010-9367-4 +Pei-Chann Chang,A Puzzle-Based Genetic Algorithm with Block Mining and Recombination Heuristic for the Traveling Salesman Problem.,2012,27,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst27.html#ChangHZ12,https://doi.org/10.1007/s11390-012-1275-3 +Zhanyi Hu,A new definition of the Hough transform.,1998,13,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst13.html#HuWYM98,https://doi.org/10.1007/BF02948496 +Changbiao Xu,Allocating Network Resources by Weight Between TCP Traffics.,2003,18,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst18.html#XuLY03,https://doi.org/10.1007/BF02948892 +Huaimin Wang,A constructor-based EI-model semantics of EI-CTRS.,1995,10,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst10.html#WangC95,https://doi.org/10.1007/BF02939525 +Qingshi Gao,A unifiedO(logN) and optimal sorting vector algorithm.,1995,10,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst10.html#Gao95a,https://doi.org/10.1007/BF02948343 +Muhammad Hussain,Efficient Simplification Methods for Generating High Quality LODs of 3D Meshes.,2009,24,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst24.html#Hussain09,https://doi.org/10.1007/s11390-009-9249-9 +Hong Jinwei,Supporting Flexible Data Distribution in Software DSMs.,2000,15,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst15.html#JinweiCZ00,https://doi.org/10.1007/BF02950408 +Swen Bin,Outline of Initial Design of the Structured Hypertext Transfer Protocol.,2003,18,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst18.html#Bin03,https://doi.org/10.1007/BF02948898 +KwangJin Park,An Efficient Data Dissemination Scheme for Spatial Query Processing.,2007,22,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst22.html#ParkCH07,https://doi.org/10.1007/s11390-007-9018-6 +Bin Wang 0015,Continually Answering Constraint k - NN Queries in Unstructured P2P Systems.,2008,23,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst23.html#WangYWYCWL08,https://doi.org/10.1007/s11390-008-9151-x +Kai Dong,Complete Bipartite Anonymity for Location Privacy.,2014,29,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst29.html#DongGTL14,https://doi.org/10.1007/s11390-014-1493-y +Yan Pengju,Spontaneous Speech Parsing in Travel Information Inquiring and Booking Systems.,2002,17,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst17.html#PengjuFH02,https://doi.org/10.1007/BF02960785 +Aoying Zhou,Incremental Mining of the Schema of Semistructured Data.,2000,15,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst15.html#ZhouJZ00,https://doi.org/10.1007/BF02948811 +Jing Li,A Dialectal Chinese Speech Recognition Framework.,2006,21,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst21.html#LiZBJ06,https://doi.org/10.1007/s11390-006-0106-9 +Xiaofang Qi,Automated Testing of Web Applications Using Combinatorial Strategies.,2017,32,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst32.html#QiWMW17,https://doi.org/10.1007/s11390-017-1699-x +Xianzhi Wang,A Survey on Expert Recommendation in Community Question Answering.,2018,33,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst33.html#WangHYBD18,https://doi.org/10.1007/s11390-018-1845-0 +Li Yang,Towards restructuring and normalization of types in databases.,1995,10,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst10.html#Yang95,https://doi.org/10.1007/BF02939523 +Yu Zhang,Mining Trust Relationships from Online Social Networks.,2012,27,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst27.html#ZhangY12,https://doi.org/10.1007/s11390-012-1238-8 +Jibao Lai,WNN-Based Network Security Situation Quantitative Prediction Method and Its Optimization.,2008,23,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst23.html#LaiWLLZZ08,https://doi.org/10.1007/s11390-008-9124-0 +Haiming Chen,A Light-Weight Opportunistic Forwarding Protocol with Optimized Preamble Length for Low-Duty-Cycle Wireless Sensor Networks.,2017,32,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst32.html#ChenCZ17,https://doi.org/10.1007/s11390-017-1712-4 +Ronghua Shi,A redundant binary algorithm for RSA.,1996,11,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst11.html#Shi96,https://doi.org/10.1007/BF02948485 +Huadong Ma,Hybrid Broadcast for the Video-on-Demand Service.,2002,17,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst17.html#MaS02,https://doi.org/10.1007/BF02943280 +Zhifang Ma,DKBLM - Deep knowledge based learning methodology.,1993,8,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst8.html#Ma93,https://doi.org/10.1007/BF02939547 +Hongsong Li,PMC: Select Materialized Cells in Data Cubes.,2006,21,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst21.html#LiH06,https://doi.org/10.1007/s11390-006-0297-0 +Fanjia Kong,Computing the SKT reliability of acyclic directed networks using factoring method.,1999,14,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst14.html#KongW99,https://doi.org/10.1007/BF02952488 +Xicheng Liu,Implementation of a Prototype VoIP System.,2000,15,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst15.html#LiuL00,https://doi.org/10.1007/BF02950412 +Grigorios Loukides,An Efficient Clustering Algorithm for k -Anonymisation.,2008,23,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst23.html#LoukidesS08,https://doi.org/10.1007/s11390-008-9121-3 +Shi-Min Hu,Preface.,2013,28,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst28.html#HuTT13,https://doi.org/10.1007/s11390-013-1373-x +Huaimin Wang,A Formal Framework of Multi-Agent Systems with Requirement/Service Cooperative Style.,2000,15,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst15.html#WangW00,https://doi.org/10.1007/BF02948794 +Lei Li 0001,Personalized News Recommendation: A Review and an Experimental Investigation.,2011,26,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst26.html#LiWZL11,https://doi.org/10.1007/s11390-011-0175-2 +Jianwei Yang,Efficient Fingerprint Matching Algorithm for Integrated Circuit Cards.,2004,19,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst19.html#YangLJ04,https://doi.org/10.1007/BF02944752 +Varun Gupta,Package Coupling Measurement in Object-Oriented Software.,2009,24,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst24.html#GuptaC09,https://doi.org/10.1007/s11390-009-9223-6 +Xue-Jun Yang,Managing Data-Objects in Dynamically Reconfigurable Caches.,2010,25,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst25.html#YangWZT10,https://doi.org/10.1007/s11390-010-9320-6 +Dan Feng,Massive Storage Systems.,2006,21,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst21.html#FengJ06,https://doi.org/10.1007/s11390-006-0648-x +Bo Zhang,On memory capacity of the Probabilistic Logic Neuron network.,1993,8,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst8.html#ZhangZ93,https://doi.org/10.1007/BF02939532 +Yuan Jiang 0001,Software Defect Detection with Rocus.,2011,26,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst26.html#JiangLZ11,https://doi.org/10.1007/s11390-011-9439-0 +Mingyi Zhang,Characterizations and algorithms of extensions for CADL and QDL.,1999,14,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst14.html#ZhangZ99,https://doi.org/10.1007/BF02946520 +Zhixing Li,What Are They Talking About? Analyzing Code Reviews in Pull-Based Development Model.,2017,32,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst32.html#LiYYWW17,https://doi.org/10.1007/s11390-017-1783-2 +Guang-Ping Qin,Action Refinement for Real-Time Concurrent Processes with Urgency.,2005,20,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst20.html#QinW05,https://doi.org/10.1007/s11390-005-0514-2 +Wei Li 0006,Fuzzy logic based behavior fusion for navigation of an intelligent mobile robot.,1996,11,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst11.html#LiCMHW96,https://doi.org/10.1007/BF02948482 +Yu Zhao,A simplified model for generating 3D realistic sound in the multimedia and virtual reality systems.,1996,11,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst11.html#ZhaoZXSH96,https://doi.org/10.1007/BF02947213 +Bo Huang 0002,A New Approach to Pointer Analysis for Assignments.,2001,16,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst16.html#BoBLZ01,https://doi.org/10.1007/BF02943202 +Xiaoyong Fang,Predicting RNA Secondary Structure Using Profile Stochastic Context-Free Grammars and Phylogenic Analysis.,2008,23,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst23.html#FangLW08,https://doi.org/10.1007/s11390-008-9154-7 +Fan Bu,A New Multiword Expression Metric and Its Applications.,2011,26,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst26.html#BuZL10,https://doi.org/10.1007/s11390-011-9410-0 +,Preface.,2012,27,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst27.html#X12a,https://doi.org/10.1007/s11390-012-1286-0 +Zhiming Xu,A New Linguistic Decoding Method for Online Handwritten Chinese Character Recognition.,2000,15,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst15.html#ZhimingX00,https://doi.org/10.1007/BF02948842 +Ziqiang He,Another definition of order-sorted algebra.,1998,13,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst13.html#He98,https://doi.org/10.1007/BF02946496 +Yubao Liu,Clustering Text Data Streams.,2008,23,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst23.html#LiuCYF08,https://doi.org/10.1007/s11390-008-9115-1 +Jing'an Yang,A neural paradigm for time-varying motion segmentation.,1999,14,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst14.html#Yang99a,https://doi.org/10.1007/BF02951873 +Alberto Rocha,A Logic Filter for Tumor Detection on Mammograms.,2000,15,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst15.html#RochaFZ00,https://doi.org/10.1007/BF02948847 +Junfeng Zhou,Fast Smallest Lowest Common Ancestor Computation Based on Stable Match.,2013,28,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst28.html#ZhouLCT13,https://doi.org/10.1007/s11390-013-1337-1 +Renyi Xiao,Survey on Anonymity in Unstructured Peer-to-Peer Systems.,2008,23,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst23.html#Xiao08,https://doi.org/10.1007/s11390-008-9162-7 +Chen-Xu Zhang,Modeling Garment Seam from a Single Image.,2018,33,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst33.html#ZhangCWZ18,https://doi.org/10.1007/s11390-018-1831-6 +Jinzhao Wu,Symmetric Structure in Logic Programming.,2004,19,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst19.html#WuF04,https://doi.org/10.1007/BF02973443 +Weifeng Pan,Measuring Structural Quality of Object-Oriented Softwares via Bug Propagation Analysis on Weighted Software Networks.,2010,25,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst25.html#PanLMQZ10,https://doi.org/10.1007/s11390-010-9399-9 +Jason Cong,Overview of Center for Domain-Specific Computing.,2011,26,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst26.html#Cong11,https://doi.org/10.1007/s11390-011-1163-2 +Fang Zheng,A log-index weighted cepstral distance measure for speech recognition.,1997,12,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst12.html#ZhengWF97,https://doi.org/10.1007/BF02951337 +Nong Xiao,SDPG: Spatial Data Processing Grid.,2003,18,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst18.html#XiaoF03,https://doi.org/10.1007/BF02948927 +Xiaofeng Meng,Preface.,2013,28,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst28.html#MengW13,https://doi.org/10.1007/s11390-013-1388-3 +Mingye Liu,Technical decisions on several key problems in VHDL high level synthesis system.,1999,14,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst14.html#LiuZX99,https://doi.org/10.1007/BF02951876 +Kun Zhou,Geometric Signal Compression.,2004,19,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst19.html#ZhouBSP04,https://doi.org/10.1007/BF02945585 +Sheng Li 0003,Chinese Information Processing and Its Prospects.,2006,21,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst21.html#LiZ06,https://doi.org/10.1007/s11390-006-0838-6 +Ru Wang,Physical Implementation of the Eight-Core Godson-3B Microprocessor.,2011,26,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst26.html#WangFYGLXWZWH11,https://doi.org/10.1007/s11390-011-1151-6 +Wu Chen,A Logic-Program-Based Negotiation Mechanism.,2009,24,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst24.html#ChenZW09,https://doi.org/10.1007/s11390-009-9256-x +Ticiana L. Coelho da Silva,Non-Intrusive Elastic Query Processing in the Cloud.,2013,28,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst28.html#SilvaNMSM13,https://doi.org/10.1007/s11390-013-1389-2 +Junzuo Lai,New Constructions for Identity-Based Unidirectional Proxy Re-Encryption.,2010,25,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst25.html#LaiZDLK10,https://doi.org/10.1007/s11390-010-9366-5 +François Ingelrest,Maximizing the Delivery of MPR Broadcasting Under Realistic Physical Layer Assumptions.,2008,23,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst23.html#IngelrestS08,https://doi.org/10.1007/s11390-008-9146-7 +Shuming Chen,YHFT-QDSP: High-Performance Heterogeneous Multi-Core DSP.,2010,25,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst25.html#ChenWLLSSLLLXa10,https://doi.org/10.1007/s11390-010-9318-0 +Xiaoming Wang,Using virtual ATE model to migrate test programs.,1995,10,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst10.html#WangY95,https://doi.org/10.1007/BF02943498 +Rui Li,Assessing Diagnosis Approaches for Wireless Sensor Networks: Concepts and Analysis.,2014,29,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst29.html#LiLLHXWZW14,https://doi.org/10.1007/s11390-014-1476-z +Yongjian Li,Towards a Theory of Bisimulation for the Higher-Order Process Calculi.,2004,19,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst19.html#LiL04,https://doi.org/10.1007/BF02944905 +Erika Rosas,Survey on Simulation for Mobile Ad-Hoc Communication for Disaster Scenarios.,2016,31,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst31.html#RosasHCBMSAMM16,https://doi.org/10.1007/s11390-016-1630-x +Yi Huang,Efficient Time Synchronization Approach for Wireless Communication Systems on GPP-Based Software-Defined Radio Platform.,2013,28,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst28.html#HuangTDZQH13,https://doi.org/10.1007/s11390-013-1344-2 +Juan Jose Cuadrado-Gallego,Software Project Effort Estimation Based on Multiple Parametric Models Generated Through Data Clustering.,2007,22,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst22.html#Cuadrado-GallegoRSGG07,https://doi.org/10.1007/s11390-007-9043-5 +Cun-Chao Tu,Tag Correspondence Model for User Tag Suggestion.,2015,30,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst30.html#TuLS15,https://doi.org/10.1007/s11390-015-1582-6 +Xuandong Li,Checking MSC Specifications for Timing Inconsistency.,2002,17,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst17.html#LiTZ02,https://doi.org/10.1007/BF02949824 +Wenling Wu,Impossible Differential Cryptanalysis of Reduced-Round ARIA and Camellia.,2007,22,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst22.html#WuZF07,https://doi.org/10.1007/s11390-007-9056-0 +Wai-Ho Mak,Visibility-Aware Direct Volume Rendering.,2011,26,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst26.html#MakWCQ11,https://doi.org/10.1007/s11390-011-9428-3 +Chao Zhang,Computational Challenges in Characterization of Bacteria and Bacteria-Host Interactions Based on Genomic Data.,2012,27,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst27.html#ZhangZXX12,https://doi.org/10.1007/s11390-012-1219-y +Jie Yan,Optimizing Parallel S n Sweeps on Unstructured Grids for Multi-Core Clusters.,2013,28,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst28.html#YanTS13,https://doi.org/10.1007/s11390-013-1366-9 +Wei Wang 0009,Dynamic Interval Index Structure in Constraint Database Systems.,2000,15,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst15.html#WangWS00,https://doi.org/10.1007/BF02948836 +Mohamed El-bachir Menai,A Taxonomy of Exact Methods for Partial Max-SAT.,2013,28,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst28.html#MenaiA13,https://doi.org/10.1007/s11390-013-1325-5 +Weiguang Guan,Deformable registration of digital images.,1998,13,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst13.html#GuanXM98,https://doi.org/10.1007/BF02943193 +Oded Zaideman,Geometric Bone Modeling: From Macro to Micro Structures.,2010,25,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst25.html#ZaidemanF10,https://doi.org/10.1007/s11390-010-9350-0 +Biao Qin,2DCMA: An Effective Maintenance Algorithm of Materialized Views in Peer Data Management Systems.,2006,21,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst21.html#QinWD06,https://doi.org/10.1007/s11390-006-0503-0 +Jizan Zhang,Reducing the Upper Bound Delay by Optimizing Bank-to-Core Mapping.,2016,31,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst31.html#ZhangGZ16,https://doi.org/10.1007/s11390-016-1691-x +Feng Lu,NBgossip: An Energy-Efficient Gossip Algorithm for Wireless Sensor Networks.,2008,23,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst23.html#LuCTC08,https://doi.org/10.1007/s11390-008-9144-9 +Fei Xiang,Fuzzy Neural Network Based Traffic Prediction and Congestion Control in High-Speed Networks.,2000,15,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst15.html#XiangXLWG00,https://doi.org/10.1007/BF02948798 +Changjun Jiang,Urban Traffic Information Service Application Grid.,2005,20,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst20.html#JiangZZCMFTZYLZCL05,https://doi.org/10.1007/s11390-005-0015-3 +Jianhua Fan,An overview of data mining and knowledge discovery.,1998,13,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst13.html#FanL98,https://doi.org/10.1007/BF02946624 +Claudia Canali,Improving Scalability of Cloud Monitoring Through PCA-Based Clustering of Virtual Machines.,2014,29,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst29.html#CanaliL14,https://doi.org/10.1007/s11390-013-1410-9 +Nai-Ming Yao,Non-Frontal Facial Expression Recognition Using a Depth-Patch Based Deep Neural Network.,2017,32,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst32.html#YaoCGW17,https://doi.org/10.1007/s11390-017-1792-1 +Alejandro Catalá,TangiWheel: A Widget for Manipulating Collections on Tabletop Displays Supporting Hybrid Input Modality.,2012,27,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst27.html#CatalaGMM12,https://doi.org/10.1007/s11390-012-1266-4 +Song-Liu Guo,Hierarchical Cache Directory for CMP.,2010,25,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst25.html#GuoWXLW10,https://doi.org/10.1007/s11390-010-9321-5 +Zhong Lin,A Rejection Model Based on Multi-Layer Perceptrons for Mandarin Digit Recognition.,2002,17,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst17.html#LinJR02,https://doi.org/10.1007/BF02962212 +Xiaoling Wang,QoS-Aware Composite Services Retrieval.,2006,21,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst21.html#WangHZ06,https://doi.org/10.1007/s11390-006-0547-1 +Peter Szolovits,Possibilities for Healthcare Computing.,2011,26,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst26.html#Szolovits11,https://doi.org/10.1007/s11390-011-1162-3 +Tao Xie 0001,Preface.,2017,32,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst32.html#XieCLWAdM17,https://doi.org/10.1007/s11390-017-1782-3 +Yun-Zhi Zhuge,Robust Video Text Detection with Morphological Filtering Enhanced MSER.,2015,30,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst30.html#ZhugeL15,https://doi.org/10.1007/s11390-015-1528-z +Jian Yu,Novel Cluster Validity Index for FCM Algorithm.,2006,21,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst21.html#YuL06,https://doi.org/10.1007/s11390-006-0137-2 +Huaimin Wang,StarBus+: Distributed Object Middleware Practice for Internet Computing.,2005,20,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst20.html#WangWT05,https://doi.org/10.1007/s11390-005-0542-y +Moonseong Kim,ROAD+: Route Optimization with Additional Destination-Information and Its Mobility Management in Mobile Networks.,2010,25,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst25.html#KimMPC10,https://doi.org/10.1007/s11390-010-9325-1 +Kun Xie,Optimal Relay Assignment and Power Allocation for Cooperative Communications.,2013,28,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst28.html#XieCW13,https://doi.org/10.1007/s11390-013-1335-3 +Jinhui Yu,Image-Based Synthesis of Chinese Landscape Painting.,2003,18,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst18.html#YuLP03,https://doi.org/10.1007/BF02946647 +Giulio Pavesi,An Algorithm for Finding Conserved Secondary Structure Motifs in Unaligned RNA Sequences.,2004,19,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst19.html#PavesiMP04,https://doi.org/10.1007/BF02944781 +Zining Cao,Probabilistic Belief Logic and Its Probabilistic Aumann Semantics.,2003,18,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst18.html#CaoS03,https://doi.org/10.1007/BF02947116 +Xinli Yang,What Security Questions Do Developers Ask? A Large-Scale Study of Stack Overflow Posts.,2016,31,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst31.html#YangLXWS16,https://doi.org/10.1007/s11390-016-1672-0 +Gérard Boudol,Calculi for concurrent processes.,1998,13,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst13.html#Boudol98,https://doi.org/10.1007/BF02946492 +Cuiping Li,Incremental Maintenance of Quotient Cube Based on Galois Lattice..,2004,19,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst19.html#LiTW04,https://doi.org/10.1007/BF02944900 +Dong-Xi Liu,CSchema: A Downgrading Policy Language for XML Access Control.,2007,22,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst22.html#Liu07,https://doi.org/10.1007/s11390-007-9012-z +Dong Wang 0013,Term-Dependent Confidence Normalisation for Out-of-Vocabulary Spoken Term Detection.,2012,27,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst27.html#WangTKF12,https://doi.org/10.1007/s11390-012-1228-x +Zhenyu Wang,χ1* Graph: Rendezvous ordering graph for Ada concurrent programs.,1998,13,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst13.html#Wang98a,https://doi.org/10.1007/BF02946505 +Xiaofeng Chen 0001,Fair Electronic Cash Based on Double Signatur.,2002,17,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst17.html#ChenWW02,https://doi.org/10.1007/BF02960773 +Jian Yu,Solving Inheritance Anomaly with OMNets.,2002,17,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst17.html#YuSY02,https://doi.org/10.1007/BF02949830 +Xuzhou Zhang,Automated String Constraints Solving for Programs Containing String Manipulation Functions.,2017,32,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst32.html#ZhangGWXZ17,https://doi.org/10.1007/s11390-017-1787-y +Jiqing Han,Robust Speech Recognition Method Based on Discriminative Environment Feature Extraction.,2001,16,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst16.html#JiqingG01,https://doi.org/10.1007/BF02948964 +Zhong-Gui Sun,A Two-Step Regularization Framework for Non-Local Means.,2014,29,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst29.html#SunCQ14,https://doi.org/10.1007/s11390-014-1487-9 +Sarbani Roy,Adaptive Execution of Jobs in Computational Grid Environment.,2009,24,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst24.html#RoyM09,https://doi.org/10.1007/s11390-009-9267-7 +Zhike Zi,Robustness Analysis of the IFN-y Induced JAK-STAT Signaling Pathway.,2005,20,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst20.html#ZiS05,https://doi.org/10.1007/s11390-005-0491-5 +Sheng-En Li,Semi-Closed Cube: An Effective Approach to Trading Off Data Cube Size and Query Response Time.,2005,20,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst20.html#LiW05,https://doi.org/10.1007/s11390-005-0367-8 +Guanghui Xu,An Improved Error Handling Method in SNMPv2 Protocol Operations.,2001,16,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst16.html#GuanghuiXX01,https://doi.org/10.1007/BF02948857 +Guang-Hao Ma,Image Smoothing Based on Image Decomposition and Sparse High Frequency Gradient.,2018,33,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst33.html#MaZLZ18,https://doi.org/10.1007/s11390-018-1834-3 +Zuoning Chen,Evolution of Cloud Operating System: From Technology to Ecosystem.,2017,32,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst32.html#ChenCJZWQHWSTSK17,https://doi.org/10.1007/s11390-017-1717-z +Yili Fang,Improving the Quality of Crowdsourced Image Labeling via Label Similarity.,2017,32,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst32.html#FangSCD17,https://doi.org/10.1007/s11390-017-1770-7 +Xiang Gao,System Architecture of Godson-3 Multi-Core Processors.,2010,25,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst25.html#GaoCWTH10,https://doi.org/10.1007/s11390-010-9315-3 +Heng Li,Test Data Sets and Evaluation of Gene Prediction Programs on the Rice Genome.,2005,20,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst20.html#LiLXJFGLXGLLLFXZH05,https://doi.org/10.1007/s11390-005-0446-x +Rong Chen 0001,Bipartite-Oriented Distributed Graph Partitioning for Big Learning.,2015,30,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst30.html#ChenSCZ15,https://doi.org/10.1007/s11390-015-1501-x +Huimin Lin,Predicate andmicro*-Calculus for Mobile Ambients.,2005,20,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst20.html#Lin05,https://doi.org/10.1007/s11390-005-0011-7 +Maojun Zhang,An Orientation Update Message Filtering Algorithm in Collaborative Virtual Environments.,2004,19,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst19.html#ZhangD04,https://doi.org/10.1007/BF02944912 +Yili Gong,VEGA Infrastructure for Resource Discovery in Grids.,2003,18,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst18.html#GongDLX03,https://doi.org/10.1007/BF02948915 +Xinli Yang,High-Impact Bug Report Identification with Imbalanced Learning Strategies.,2017,32,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst32.html#YangLXHS17,https://doi.org/10.1007/s11390-017-1713-3 +Kai Zhao,A Reduction Algorithm Meeting Users' Requirements.,2002,17,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst17.html#ZhaoW02,https://doi.org/10.1007/BF02948826 +Yong Dou,A Unified Co-Processor Architecture for Matrix Decomposition.,2010,25,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst25.html#DouZWJLN10,https://doi.org/10.1007/s11390-010-9372-7 +Jinzhao Wu,Linear Strategy for Boolean Ring Based Theorem Proving.,2000,15,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst15.html#WuL00,https://doi.org/10.1007/BF02948814 +S. H. Lo,Automatic Mesh Generation on a Regular Background Grid.,2002,17,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst17.html#LoJ02,https://doi.org/10.1007/BF02960780 +Jian Liu,Endurable SSD-Based Read Cache for Improving the Performance of Selective Restore from Deduplication Systems.,2018,33,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst33.html#LiuCQL18,https://doi.org/10.1007/s11390-018-1808-5 +Dan Yang,Query Intent Disambiguation of Keyword-Based Semantic Entity Search in Dataspaces.,2013,28,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst28.html#YangSYKN13,https://doi.org/10.1007/s11390-013-1338-0 +Gang Xu 0001,Free-Form Deformation with Rational DMS-Spline Volumes.,2008,23,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst23.html#XuWC08,https://doi.org/10.1007/s11390-008-9182-3 +Yufeng Wang,Characterizing Economic and Social Properties of Trust and Reputation Systems in P2P Environment.,2008,23,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst23.html#WangHS08,https://doi.org/10.1007/s11390-008-9118-y +Xiaobo Peng,Singularity Analysis of Geometric Constraint Systems.,2002,17,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst17.html#PengCZZ02,https://doi.org/10.1007/BF02947309 +Inaki Berenguer,Space-Time Coding and Signal Processing for MIMO Communications.,2003,18,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst18.html#BerenguerW03,https://doi.org/10.1007/BF02945457 +Zaiyue Zhang,The Contiguity in R/M.,2002,17,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst17.html#ZhangS02,https://doi.org/10.1007/BF02943291 +Wen Hu,Edge Video CDN: A Wi-Fi Content Hotspot Solution.,2016,31,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst31.html#HuWMS16,https://doi.org/10.1007/s11390-016-1683-x +Hong Mei,Internetware: An Emerging Software Paradigm for Internet Computing.,2011,26,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst26.html#MeiL11,https://doi.org/10.1007/s11390-011-1159-y +Jian Wang,Multicast address management and connection control based on hierarchical autonomous structure.,1999,14,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst14.html#WangZ99,https://doi.org/10.1007/BF02952489 +Nan Du,Community Detection in Complex Networks.,2008,23,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst23.html#DuWW08,https://doi.org/10.1007/s11390-008-9163-6 +Qi Wang,Improving the Performance and Energy Efficiency of Phase Change Memory Systems.,2015,30,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst30.html#WangLW15,https://doi.org/10.1007/s11390-015-1508-3 +Chun-Tao Hong,Providing Source Code Level Portability Between CPU and GPU with MapCG.,2012,27,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst27.html#HongCCCZL12,https://doi.org/10.1007/s11390-012-1205-4 +Junwei Cao,Formal Verification of Temporal Properties for Reduced Overhead in Grid Scientific Workflows.,2011,26,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst26.html#CaoZXLW11,https://doi.org/10.1007/s11390-011-1198-4 +Chun Liao,A Hybrid Method of Domain Lexicon Construction for Opinion Targets Extraction Using Syntax and Semantics.,2016,31,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst31.html#LiaoFYH16,https://doi.org/10.1007/s11390-016-1649-z +Byounghyun Yoo,Representation of Urban Buildings Using Modified Relief Mapping.,2006,21,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst21.html#YooH06,https://doi.org/10.1007/s11390-006-0204-8 +Xianxian Li,Efficient Non-Repudiation Multicast Source Authentication Schemes.,2002,17,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst17.html#LiH02a,https://doi.org/10.1007/BF02960772 +Qi-Guo Dai,CPL: Detecting Protein Complexes by Propagating Labels on Protein-Protein Interaction Network.,2014,29,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst29.html#DaiGLTW14,https://doi.org/10.1007/s11390-014-1492-z +Wei Peng,AHBP: An Efficient Broadcast Protocol for Mobile Ad Hoc Networks.,2001,16,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst16.html#PengL01,https://doi.org/10.1007/BF02950416 +Peng Li 0021,Improving Web Document Clustering through Employing User-Related Tag Expansion Techniques.,2012,27,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst27.html#LiWJ12,https://doi.org/10.1007/s11390-012-1243-y +Wen Liu,An Efficient Approach of Processing Multiple Continuous Queries.,2016,31,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst31.html#LiuSW16,https://doi.org/10.1007/s11390-016-1693-8 +Keqing He,Semantic Interoperability Aggregation in Service Requirements Refinement.,2010,25,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst25.html#HeWL10,https://doi.org/10.1007/s11390-010-9392-3 +Chao Han,Online Feature Selection of Class Imbalance via PA Algorithm.,2016,31,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst31.html#HanTZGCW16,https://doi.org/10.1007/s11390-016-1656-0 +Junzhong Gu,Modelling enterprises with object-oriented paradigm.,1993,8,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst8.html#Gu93,https://doi.org/10.1007/BF02939534 +Shiyi Xu,The methodology of testability prediction for sequential circuits.,1996,11,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst11.html#XuD96,https://doi.org/10.1007/BF02951616 +Xiao-Yu Du,Captioning Videos Using Large-Scale Image Corpus.,2017,32,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst32.html#DuYYSQT17,https://doi.org/10.1007/s11390-017-1738-7 +Xuandong Li,Verifying Time Petri Nets by Linear Programming.,2001,16,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst16.html#Li01,https://doi.org/10.1007/BF02948851 +Dong Yan,Using Memory in the Right Way to Accelerate Big Data Processing.,2015,30,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst30.html#YanYLZZW15,https://doi.org/10.1007/s11390-015-1502-9 +Zhiqing Shao,Deciding quasi-reducibility using witnessed test sets.,1999,14,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst14.html#ShaoSSY99,https://doi.org/10.1007/BF02946521 +Jungang Xu,A Structure Learning Algorithm for Bayesian Network Using Prior Knowledge.,2015,30,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst30.html#XuZCH15,https://doi.org/10.1007/s11390-015-1556-8 +Shuming Zhou,A New Family of Interconnection Networks of Fixed Degree Three.,2004,19,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst19.html#ZhouX04,https://doi.org/10.1007/BF02944800 +Tam V. Nguyen,Seeing Human Weight from a Single RGB-D Image.,2014,29,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst29.html#NguyenFY14,https://doi.org/10.1007/s11390-014-1467-0 +Xiaodong Wang 0002,Fast multicast on multistage interconnection networks using multi-head worms.,1999,14,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst14.html#WangXZ99,https://doi.org/10.1007/BF02948513 +Yi-Xiao Yin,Prevention from Soft Errors via Architecture Elasticity.,2014,29,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst29.html#YinCGC14,https://doi.org/10.1007/s11390-014-1427-8 +Jie Liang,Computational Cellular Dynamics Based on the Chemical Master Equation: A Challenge for Understanding Complexity.,2009,25,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst25.html#LiangQ09,https://doi.org/10.1007/s11390-010-9312-6 +Bei-Bei Liu,Orientation Field Guided Texture Synthesis.,2013,28,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst28.html#LiuWWT13,https://doi.org/10.1007/s11390-013-1381-x +Xuehong Tao,A practical propositional knowledge base revision algorithm.,1997,12,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst12.html#TaoSM97,https://doi.org/10.1007/BF02951334 +Qingshan Liu 0001,Head Tracking Using Shapes and Adaptive Color Histograms.,2002,17,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst17.html#LiuML02,https://doi.org/10.1007/BF02960777 +Yong-Jin Liu,Multiresolution Free Form Object Modeling with Point Sampled Geometry.,2004,19,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst19.html#LiuTY04,https://doi.org/10.1007/BF02945586 +Xuran Zhao,Temporally Consistent Depth Map Prediction Using Deep Convolutional Neural Network and Spatial-Temporal Conditional Random Field.,2017,32,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst32.html#ZhaoWC17,https://doi.org/10.1007/s11390-017-1735-x +Ning Xu,Thermal-Aware Post Layout Voltage-Island Generation for 3D ICs.,2013,28,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst28.html#XuMLT13,https://doi.org/10.1007/s11390-013-1367-8 +Jie Tang 0001,Preface.,2015,30,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst30.html#TangZ15a,https://doi.org/10.1007/s11390-015-1579-1 +Yangsheng Ji,Transfer Learning via Multi-View Principal Component Analysis.,2011,26,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst26.html#JiCNSD10,https://doi.org/10.1007/s11390-011-9417-6 +Jian Pei,"Book Review on ""Out of Their Minds: The Lives and Discoveries of 15 Great Computer Scientists"".",2005,20,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst20.html#Pei05,https://doi.org/10.1007/s11390-005-0017-1 +Yantai Shu,Provisioning QoS Guarantee by Multipath Routing and Reservation in Ad Hoc Networks.,2004,19,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst19.html#ShuWWYF04,https://doi.org/10.1007/BF02944790 +Wei Jiang,QoS-Aware Automatic Service Composition: A Graph View.,2011,26,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst26.html#JiangWHL11,https://doi.org/10.1007/s11390-011-0183-2 +Jianwu Dang,Communication Between Speech Production and Perception Within the Brain-Observation and Simulation.,2006,21,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst21.html#DangAH06,https://doi.org/10.1007/s11390-006-0095-8 +Schubert Foo,System architectural design for delivering video mail over the World-Wide-Web.,1997,12,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst12.html#FooH97,https://doi.org/10.1007/BF02943156 +Yutao Ma,A Hybrid Set of Complexity Metrics for Large-Scale Object-Oriented Software Systems.,2010,25,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst25.html#MaHLLZ10,https://doi.org/10.1007/s11390-010-9398-x +Wei Li 0022,A logical framework for knowledge base maintenance.,1995,10,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst10.html#Li95a,https://doi.org/10.1007/BF02943487 +Chao Wang 0003,CRAIS: A Crossbar-Based Interconnection Scheme on FPGA for Big Data.,2015,30,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst30.html#WangLZ15,https://doi.org/10.1007/s11390-015-1506-5 +John C. Gallagher,An Improved Evolvable Oscillator and Basis Function Set for Control of an Insect-Scale Flapping-Wing Micro Air Vehicle.,2012,27,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst27.html#GallagherO12,https://doi.org/10.1007/s11390-012-1277-1 +Youngjae Kim 0001,A Temporal Locality-Aware Page-Mapped Flash Translation Layer.,2013,28,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst28.html#KimGU13,https://doi.org/10.1007/s11390-013-1395-4 +Jinkai Zhang,Collaborative Interaction for Videos on Mobile Devices Based on Sketch Gestures.,2013,28,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst28.html#ZhangMLFF13,https://doi.org/10.1007/s11390-013-1379-4 +Zhijian Wang,Validating inductive hypotheses by mode inference.,1993,8,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst8.html#Wang93,https://doi.org/10.1007/BF02939475 +Tianzi Jiang,Geometric primitive extraction by the combination of tabu search and subpixel accuracy.,1999,14,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst14.html#Jiang99,https://doi.org/10.1007/BF02952490 +Hui Jiang 0004,Type System in Programming Languages.,2001,16,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst16.html#HuiDXX01,https://doi.org/10.1007/BF02943207 +Lijun Chang,Context-Sensitive Document Ranking.,2010,25,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst25.html#ChangYQ10,https://doi.org/10.1007/s11390-010-9336-y +Xutao Du,Modeling and Verifying Concurrent Programs with Finite Chu Spaces.,2010,25,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst25.html#DuXZ10,https://doi.org/10.1007/s11390-010-9397-y +Shiyi Xu,Forecasting the Efficiency of Test Generation Algorithms for Combinational Circuits.,2000,15,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst15.html#XuF00,https://doi.org/10.1007/BF02948868 +Hong Mei,A Component-Based Software Configuration Management Model and Its Supporting System.,2002,17,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst17.html#MeiZY02,https://doi.org/10.1007/BF02943283 +Meng Chen,Weighted Co-Training for Cross-Domain Image Sentiment Classification.,2017,32,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst32.html#ChenZYL17,https://doi.org/10.1007/s11390-017-1753-8 +Hang Li,Preface.,2017,32,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst32.html#LiBHZ17,https://doi.org/10.1007/s11390-017-1749-4 +Qingping Tan,A higher-order unification algorithm for inductive types and dependent types.,1997,12,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst12.html#Tan97,https://doi.org/10.1007/BF02948973 +Shugong Zhang,The multiplicity of zeros of algebraic system in eigenvalue method.,1999,14,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst14.html#ZhangLF99,https://doi.org/10.1007/BF02948792 +Xiaocong Fan,Reasoning about concurrent actions in multi-agent systems.,1999,14,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst14.html#FanXHZ99,https://doi.org/10.1007/BF02948746 +Yanci Zhang,Accelerated Backward Warping.,2003,18,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst18.html#ZhangLW03,https://doi.org/10.1007/BF02946650 +Weikang Huang,On GID-testable two-dimensional iterative arrays.,1994,9,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst9.html#HuangL94,https://doi.org/10.1007/BF02939484 +Yinhe Han,RevivePath: Resilient Network-on-Chip Design Through Data Path Salvaging of Router.,2013,28,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst28.html#HanLLLZL13,https://doi.org/10.1007/s11390-013-1396-3 +Shuming Gao,Constraint-Based Virtual Solid Modeling.,2000,15,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst15.html#GaoWP00,https://doi.org/10.1007/BF02951927 +Jia-Xu Liu,Budget-Aware Dynamic Incentive Mechanism in Spatial Crowdsourcing.,2017,32,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst32.html#LiuJLX17,https://doi.org/10.1007/s11390-017-1771-6 +Chen Feng,Indexing Techniques of Distributed Ordered Tables: A Survey and Analysis.,2018,33,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst33.html#FengLL18,https://doi.org/10.1007/s11390-018-1813-8 +Li Li,Towards a Denotational Semantics of Timed RSL Using Duration Calculus.,2001,16,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst16.html#Li01a,https://doi.org/10.1007/BF02948854 +Mingsheng Ying,Institutions of variable truth values: An approach in the ordered style.,1995,10,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst10.html#Ying95a,https://doi.org/10.1007/BF02943494 +Wang Hai,A Study on Wavelet Data Compression of a Real-Time Monitoring System for Large Hydraulic Machines.,2001,16,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst16.html#HaiL01,https://doi.org/10.1007/BF02943208 +Yuanxiang Li,A New Dynamical Evolutionary Algorithm Based on Statistical Mechanics.,2003,18,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst18.html#LiZKM03,https://doi.org/10.1007/BF02948906 +Junfeng Zhou,Related Axis: The Extension to XPath Towards Effective XML Search.,2012,27,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst27.html#ZhouLBM12,https://doi.org/10.1007/s11390-012-1217-0 +Qiliang Yang,Fuzzy Self-Adaptation of Mission-Critical Software Under Uncertainty.,2013,28,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst28.html#YangLTMXS13,https://doi.org/10.1007/s11390-013-1321-9 +Kaile Su,Verification of Authentication Protocols for Epistemic Goals via SAT Compilation.,2006,21,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst21.html#SuCSYLZ06,https://doi.org/10.1007/s11390-006-0932-9 +Bo Li,Fast Adaptive Wavelet for Remote Sensing Image Compression.,2007,22,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst22.html#LiJL07,https://doi.org/10.1007/s11390-007-9086-7 +Xiao Sun 0003,Chinese New Word Identification: A Latent Discriminative Model with Global Features.,2011,26,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst26.html#SunHSR10,https://doi.org/10.1007/s11390-011-9411-z +Jian-Hui Huang,Adaptive Call Admission Control Based on Reward-Penalty Model in Wireless/Mobile Network.,2007,22,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst22.html#HuangQW07,https://doi.org/10.1007/s11390-007-9065-z +Bo Wang,Interactive Inconsistency Fixing in Feature Modeling.,2014,29,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst29.html#WangXHZZM14,https://doi.org/10.1007/s11390-014-1462-5 +Dianxun Shuai,High-order two-dimension cluster competitive activation mechanisms used for performing symbolic logic algorithms of problem solving.,1995,10,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst10.html#Shuai95,https://doi.org/10.1007/BF02948422 +Andrew A. Chien,Viewpoints on Grid Standards.,2005,20,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst20.html#ChienSX05,https://doi.org/10.1007/s11390-005-0016-2 +Xiaodong Li 0001,Preface.,2008,23,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst23.html#LiLY08,https://doi.org/10.1007/s11390-008-9116-0 +Shu Yao,Situated learning of a behavior-based mobile robot path planner.,1995,10,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst10.html#YaoZ95,https://doi.org/10.1007/BF02943505 +Mitrabinda Ray,Source Code Prioritization Using Forward Slicing for Exposing Critical Elements in a Program.,2011,26,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst26.html#RayKM11,https://doi.org/10.1007/s11390-011-9438-1 +,Preface.,2011,26,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst26.html#X11,https://doi.org/10.1007/s11390-011-0174-3 +Guiqing Li,Blending Parametric Patches with Subdivision Surfaces.,2002,17,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst17.html#LiL02,https://doi.org/10.1007/BF02943290 +Sankhayan Choudhury,GDM: A New Graph Based Data Model Using Functional Abstractionx.,2006,21,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst21.html#ChoudhuryCB06,https://doi.org/10.1007/s11390-006-0430-0 +Wenli Cai,Displaying of details in subvoxel accuracy.,1996,11,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst11.html#CaiCS96,https://doi.org/10.1007/BF02947215 +Mohammed Al-Rawi 0001,Practical Fast Computation of Zernike Moments.,2002,17,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst17.html#Al-RawiJ02,https://doi.org/10.1007/BF02962210 +Jun Xu 0001,A Supervised Learning Approach to Search of Definitions.,2006,21,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst21.html#XuCLZH06,https://doi.org/10.1007/s11390-006-0439-4 +Dongrui Fan,Evaluation and Choice of Various Branch Predictors for Low-Power Embedded Processor.,2003,18,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst18.html#FanYGZ03,https://doi.org/10.1007/BF02945473 +Hailong Shi,A Task Execution Framework for Cloud-Assisted Sensor Networks.,2014,29,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst29.html#ShiLQHC14,https://doi.org/10.1007/s11390-014-1424-y +Jun Hu,Personalized Tag Recommendation Using Social Influence.,2012,27,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst27.html#HuWLL12,https://doi.org/10.1007/s11390-012-1241-0 +Yinlong Xu,Optimal Bandwidth Utilization of All-Optical Ring with a Converter of Degree 4.,2002,17,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst17.html#XuCHW02,https://doi.org/10.1007/BF02943281 +Bao-Xia Fan,Physical Implementation of the 1GHz Godson-3 Quad-Core Microprocessor.,2010,25,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst25.html#FanYWWXXLZ10,https://doi.org/10.1007/s11390-010-9316-2 +Hong-Guang Ren,Structure-Based Deadlock Checking of Asynchronous Circuits.,2011,26,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst26.html#RenWE11,https://doi.org/10.1007/s11390-011-1199-3 +Mei Wen,Multiple-Morphs Adaptive Stream Architecture.,2005,20,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst20.html#WenWLZ05,https://doi.org/10.1007/s11390-005-0635-7 +Jianwu Yang,A Semi-Structured Document Model for Text Mining.,2002,17,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst17.html#YangC02,https://doi.org/10.1007/BF02948828 +Jung-Hoon Lee,Next High Performance and Low Power Flash Memory Package Structure.,2007,22,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst22.html#Lee07,https://doi.org/10.1007/s11390-007-9068-9 +Kai Zhang 0006,Hetero-DB: Next Generation High-Performance Database Systems by Best Utilizing Heterogeneous Computing and Storage Resources.,2015,30,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst30.html#ZhangCDHLLWYZ15,https://doi.org/10.1007/s11390-015-1553-y +Peiquan Jin,HAG: An Energy-Proportional Data Storage Scheme for Disk Array Systems.,2015,30,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst30.html#JinXJJY15,https://doi.org/10.1007/s11390-015-1554-x +Juanjuan Zhao,Medical Sign Recognition of Lung Nodules Based on Image Retrieval with Semantic Features and Supervised Hashing.,2017,32,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst32.html#ZhaoPZT17,https://doi.org/10.1007/s11390-017-1736-9 +Jun Ma,An efficient parallel graph edge matching algorithm and its applications.,1999,14,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst14.html#MaM99,https://doi.org/10.1007/BF02946522 +Mingxin Gan,Trinity: Walking on a User-Object-Tag Heterogeneous Network for Personalised Recommendations.,2016,31,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst31.html#GanSJ16,https://doi.org/10.1007/s11390-016-1648-0 +Hai Zhao,Scaling Conditional Random Fields by One-Against-the-Other Decomposition.,2008,23,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst23.html#ZhaoK08,https://doi.org/10.1007/s11390-008-9157-4 +Jianqiang Zhou,Adaptive memory coherence algorithms in DSVM.,1994,9,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst9.html#ZhouXDS94,https://doi.org/10.1007/BF02943583 +Xiaolan Joy Zhang,An Anti-Counterfeiting RFID Privacy Protection Protocol.,2007,22,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst22.html#ZhangK07,https://doi.org/10.1007/s11390-007-9059-x +Yingjie Shi,HEDC++: An Extended Histogram Estimator for Data in the Cloud.,2013,28,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst28.html#ShiMWG13,https://doi.org/10.1007/s11390-013-1392-7 +Yinshui Xia,A Novel Multiple-Valued CMOS Flip-Flop Employing Multiple-Valued Clock.,2005,20,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst20.html#XiaWA05,https://doi.org/10.1007/s11390-005-0237-4 +Bo Zhang,The complexity of recognition in the single-layered PLN network with feedback connections.,1993,8,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst8.html#ZhangZ93a,https://doi.org/10.1007/BF02939538 +Xi Yang,A Unified Measurement Solution of Software Trustworthiness Based on Social-to-Software Framework.,2018,33,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst33.html#YangJLZL18,https://doi.org/10.1007/s11390-018-1843-2 +Jiang Yu,A Scalable Testing Framework for Location-Based Services.,2009,24,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst24.html#YuTMS09,https://doi.org/10.1007/s11390-009-9232-5 +Yuxi Fu,Structures definable in polymorphism.,1998,13,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst13.html#Fu98b,https://doi.org/10.1007/BF02946501 +Tao Liu,SEIP: System for Efficient Image Processing on Distributed Platform.,2015,30,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst30.html#LiuLLWGZQ15,https://doi.org/10.1007/s11390-015-1595-1 +Guang-Yu Gao,Movie Scene Recognition Using Panoramic Frame and Representative Feature Patches.,2014,29,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst29.html#GaoM14,https://doi.org/10.1007/s11390-014-1418-9 +Youjian Zhao,Research on Next-Generation Scalable Routers Implemented with H-Torus Topology.,2008,23,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst23.html#ZhaoYW08,https://doi.org/10.1007/s11390-008-9164-5 +Linke Guo,A Privacy-Preserving Attribute-Based Reputation System in Online Social Networks.,2015,30,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst30.html#GuoZFL15,https://doi.org/10.1007/s11390-015-1547-9 +G. Huet,A crash course in and#955*-calculus.,1998,13,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst13.html#Huet98,https://doi.org/10.1007/BF02946495 +Hua Huang 0001,Edge-Aware Level Set Diffusion and Bilateral Filtering Reconstruction for Image Magnification.,2009,24,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst24.html#HuangZRQ09,https://doi.org/10.1007/s11390-009-9254-z +Zusong Li,Chip Multithreaded Consistency Model.,2008,23,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst23.html#LiHHT08,https://doi.org/10.1007/s11390-008-9132-0 +Lei Fang,Leveraging Large Data with Weak Supervision for Joint Feature and Opinion Word Extraction.,2015,30,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst30.html#FangLH15,https://doi.org/10.1007/s11390-015-1569-3 +Hai Jin 0001,Fault-Tolerant Grid Architecture and Practice.,2003,18,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst18.html#HaiZCSW03,https://doi.org/10.1007/BF02948916 +Xian Xu 0001,Expressing First-Order pi-Calculus in Higher-Order Calculus of Communicating Systems.,2009,24,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst24.html#Xu09,https://doi.org/10.1007/s11390-009-9210-y +Haida Zhang,Efficient Metric All-k-Nearest-Neighbor Search on Datasets Without Any Index.,2016,31,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst31.html#ZhangXCG16,https://doi.org/10.1007/s11390-016-1692-9 +Jun Yu 0002,Fuzzy Diffusion Distance Learning for Cartoon Similarity Estimation.,2011,26,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst26.html#YuS11,https://doi.org/10.1007/s11390-011-9427-4 +Gilad Katz,ConfDTree: A Statistical Method for Improving Decision Trees.,2014,29,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst29.html#KatzSRO14,https://doi.org/10.1007/s11390-014-1438-5 +Xiaolin Zhang,A Rate-Based Flow Control Mechanism for Avoiding Congestion.,2002,17,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst17.html#ZhangWW02,https://doi.org/10.1007/BF02962216 +Shitong Wang,Extract rules by using rough set and knowledge-based NN.,1998,13,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst13.html#WangSG98,https://doi.org/10.1007/BF02943196 +Bo Qin,Short Group Signatures Without Random Oracles.,2007,22,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst22.html#QinWSMWJ07,https://doi.org/10.1007/s11390-007-9102-y +Ge Yu,A Non-Blocking Locking Method and Performance Evaluation on Network of Workstations.,2001,16,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst16.html#YuWZJKM01,https://doi.org/10.1007/BF02948850 +Meng Chen,Mining Object Similarity for Predicting Next Locations.,2016,31,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst31.html#ChenYL16,https://doi.org/10.1007/s11390-016-1654-2 +Su Feng,Mechanizing Weakly Ground Termination Proving of Term Rewriting Systems by Structural and Cover-Set Inductions.,2005,20,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst20.html#Feng05,https://doi.org/10.1007/s11390-005-0496-0 +Zhen Geng,Fast Level-Set-Based Inverse Lithography Algorithm for Process Robustness Improvement and Its Application.,2015,30,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst30.html#GengSYLP15,https://doi.org/10.1007/s11390-015-1549-7 +Fengfeng Pan,dCompaction: Speeding up Compaction of the LSM-Tree via Delayed Compaction.,2017,32,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst32.html#PanYX17,https://doi.org/10.1007/s11390-017-1704-4 +Hongding Wang,An Adaptive Approach to Schema Classification for Data Warehouse Modeling.,2007,22,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst22.html#WangTTTYS07,https://doi.org/10.1007/s11390-007-9032-8 +Huimin Lin,Computing Bisimulations for Finite-Control pi-Calculus.,2000,15,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst15.html#Lin00,https://doi.org/10.1007/BF02951922 +Cheng Bo,SA-MAC: Self-Stabilizing Adaptive MAC Protocol for Wireless Sensor Networks.,2014,29,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst29.html#BoHLWX14,https://doi.org/10.1007/s11390-014-1453-6 +Xiaoli Li,Innovating Web Page Classification Through Reducing Noise.,2002,17,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst17.html#LiS02,https://doi.org/10.1007/BF02949820 +Meng-Jun Qin,Practical Constant-Size Ring Signature.,2018,33,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst33.html#QinZM18,https://doi.org/10.1007/s11390-018-1838-z +Ying Liu,A Family of Stable Multipath Dual Congestion Control Algorithms.,2015,30,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst30.html#LiuLXS15,https://doi.org/10.1007/s11390-015-1598-y +Zhongxuan Liu,Image Magnification Method Using Joint Diffusion.,2004,19,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst19.html#LiuWP04,https://doi.org/10.1007/BF02945597 +Hanqiu Sun,Hand interface in traditional modeling and animation tasks.,1996,11,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst11.html#Sun96,https://doi.org/10.1007/BF02943135 +Zhen-Hua Duan,Erratum to A framed temporal logic programming language.,2004,19,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst19.html#Duan04,https://doi.org/10.1007/BF02973464 +Ji Gao,Agent Cooperation Based Control Integration by Activity-Sharing and Joint Intention.,2002,17,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst17.html#GaoL02,https://doi.org/10.1007/BF02947311 +Xiushan Feng,A Fault-Tolerant Routing Scheme in Dynamic Networks.,2001,16,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst16.html#FengH01,https://doi.org/10.1007/BF02948985 +Wei-Wen Xu,Automatic Generation of Symbolic Model for Parameterized Synchronous Systems.,2004,19,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst19.html#Xu04,https://doi.org/10.1007/BF02973444 +Xianmang He,Semi-Homogenous Generalization: Improving Homogenous Generalization for Privacy Preservation in Cloud Computing.,2016,31,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst31.html#HeWLH16,https://doi.org/10.1007/s11390-016-1687-6 +Yinglei Song,RNA Structural Homology Search with a Succinct Stochastic Grammar Model.,2005,20,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst20.html#SongZLLMC05,https://doi.org/10.1007/s11390-005-0454-x +Maolin Yang,Improved Blocking Time Analysis and Evaluation for the Multiprocessor Priority Ceiling Protocol.,2014,29,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst29.html#YangLLR14,https://doi.org/10.1007/s11390-014-1485-y +Hong-Bin Zhang,Image Authentication Based on Digital Signature and Semi-Fragile Watermarking.,2004,19,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst19.html#ZhangYQ04,https://doi.org/10.1007/BF02973435 +Yuxiang Wang,Partition-Based Online Aggregation with Shared Sampling in the Cloud.,2013,28,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst28.html#WangLSD13,https://doi.org/10.1007/s11390-013-1393-6 +Jing-Lei Wang,CCNoC: Cache-Coherent Network on Chip for Chip Multiprocessors.,2010,25,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst25.html#WangXWLW10,https://doi.org/10.1007/s11390-010-9322-4 +Jianping Song,Pseudo-Cycle-Based Multicast Routing in Wormhole-Routed Networks.,2003,18,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst18.html#SongHX03,https://doi.org/10.1007/BF02945459 +Yidong Shen,Extracting schema from an OEM database.,1998,13,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst13.html#Shen98,https://doi.org/10.1007/BF02946619 +Ling Li 0001,An FFT Performance Model for Optimizing General-Purpose Processor Architecture.,2011,26,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst26.html#LiCLQH11,https://doi.org/10.1007/s11390-011-0186-z +Qiong Huang,Generic Transformation from Weakly to Strongly Unforgeable Signatures.,2008,23,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst23.html#HuangWLZ08,https://doi.org/10.1007/s11390-008-9126-y +Liang Li,An assignment method for IPUs in distributed systems.,1999,14,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst14.html#LiY99,https://doi.org/10.1007/BF02948514 +Ren-ji Tao,Structure of Weakly Invertible Semi-Input-Memory Finite Automata with Delay 2.,2002,17,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst17.html#TaoC02a,https://doi.org/10.1007/BF02960758 +Dongchul Park,Hot Data Identification with Multiple Bloom Filters: Block-Level Decision vs I/O Request-Level Decision.,2018,33,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst33.html#ParkHD18,https://doi.org/10.1007/s11390-018-1809-4 +Jun-Fa Liu,Manifold Constrained Transfer of Facial Geometric Knowledge for 3D Caricature Reconstruction.,2013,28,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst28.html#LiuHCC13,https://doi.org/10.1007/s11390-013-1349-x +Youxi Wu,Length-Changeable Incremental Extreme Learning Machine.,2017,32,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst32.html#WuLJ17,https://doi.org/10.1007/s11390-017-1746-7 +Mingliang Xu,Mechanical Assembly Packing Problem Using Joint Constraints.,2017,32,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst32.html#XuGXLXZ17,https://doi.org/10.1007/s11390-017-1791-2 +Yin Feng,Harmonizing Melody with Meta-Structure of Piano Accompaniment Figure.,2011,26,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst26.html#FengCL11,https://doi.org/10.1007/s11390-011-1200-1 +Mondher Maddouri,Encoding of Primary Structures of Biological Macromolecules Within a Data Mining Perspective.,2004,19,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst19.html#MaddouriE04,https://doi.org/10.1007/BF02944786 +Ewen Denney,Simply-typed underdeterminism.,1998,13,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst13.html#Denney98,https://doi.org/10.1007/BF02946491 +Feng Jinhui,Leaf Movement Simulation.,2001,16,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst16.html#JinhuiCTW01,https://doi.org/10.1007/BF02950424 +Dongmo Zhang,Belief revision by sets of sentences.,1996,11,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst11.html#Zhang96,https://doi.org/10.1007/BF02943527 +Gill Barequet,On 2-Site Voronoi Diagrams Under Geometric Distance Functions.,2013,28,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst28.html#BarequetDEHV13,https://doi.org/10.1007/s11390-013-1328-2 +Dong-nian Cheng,Parallel Algorithm Core: A Novel IPSec Algorithm Engine for Both Exploiting Parallelism and Improving Scalability.,2008,23,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst23.html#ChengHL08,https://doi.org/10.1007/s11390-008-9166-3 +Xiaoping Sun,The Knowledge Grid.,2005,20,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst20.html#SunL05,https://doi.org/10.1007/s11390-005-0574-3 +Sherif Sakr,Efficient Relational Techniques for Processing Graph Queries.,2010,25,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst25.html#SakrA10,https://doi.org/10.1007/s11390-010-9402-5 +Meiming Shen,Optimized parallel execution of declarative programs on distributed memory multiprocessors.,1993,8,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst8.html#ShenTWZW93,https://doi.org/10.1007/BF02939530 +Rong-Hua Li,A Protocol for a Private Set-Operation.,2007,22,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst22.html#LiW07,https://doi.org/10.1007/s11390-007-9098-3 +Guo-Qing Wei,3D Motion estimation and motion fusion by affine region matching.,1993,8,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst8.html#WeiM93,https://doi.org/10.1007/BF02946582 +Zhaohui Wu 0001,Knowledge Base Grid: A Generic Grid Architecture for Semantic Web.,2003,18,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst18.html#WuCX03,https://doi.org/10.1007/BF02948920 +Tian Liu 0001,Some Structural Properties of SAT.,2000,15,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst15.html#Liu00a,https://doi.org/10.1007/BF02950407 +Xin Liu,Hybrid Parallel Bundle Adjustment for 3D Scene Reconstruction with Massive Points.,2012,27,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst27.html#LiuGH12,https://doi.org/10.1007/s11390-012-1303-3 +Yong Cai,An image-based virtual reality prototype system.,1998,13,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst13.html#CaiHWLLS98,https://doi.org/10.1007/BF02948507 +Han-Xin Sun,CASA: A New IFU Architecture for Power-Efficient Instruction Cache and TLB Designs.,2008,23,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst23.html#SunYZTC08,https://doi.org/10.1007/s11390-008-9117-z +Min Zheng,Preparing mathematical equations in a document preparation environment.,1994,9,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst9.html#ZhengL94,https://doi.org/10.1007/BF02939498 +Rajesh Narang,View creation for queries in object oriented databases.,1999,14,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst14.html#NarangS99,https://doi.org/10.1007/BF02948737 +Jue Wang,Analysis on attribute reduction strategies of rough set.,1998,13,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst13.html#WangM98,https://doi.org/10.1007/BF02946606 +Haixun Wang,Clustering by Pattern Similarity.,2008,23,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst23.html#WangP08,https://doi.org/10.1007/s11390-008-9148-5 +Mahshid Rahnamay-Naeini,A Combinational Perspective in Stimulating Cooperation in Mobile Ad Hoc Networks.,2011,26,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst26.html#Rahnamay-NaeiniS11,https://doi.org/10.1007/s11390-011-9432-7 +Xiong Huang,Some undecidable problems on approximability of NP optimization problems.,1996,11,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst11.html#Huang96,https://doi.org/10.1007/BF02943528 +Zhigeng Pan,A New Mesh Simplification Algorithm Based on Triangle Collapses.,2001,16,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst16.html#PanZS01,https://doi.org/10.1007/BF02948853 +Yang Yang,A Hybrid Circular Queue Method for Iterative Stencil Computations on GPUs.,2012,27,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst27.html#YangCFX12,https://doi.org/10.1007/s11390-012-1206-3 +Zhiping Jiang,Communicating Is Crowdsourcing: Wi-Fi Indoor Localization with CSI-Based Speed Estimation.,2014,29,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst29.html#JiangXLTZHZWX14,https://doi.org/10.1007/s11390-014-1452-7 +Jing Jiang,CoreDevRec: Automatic Core Member Recommendation for Contribution Evaluation.,2015,30,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst30.html#JiangHC15,https://doi.org/10.1007/s11390-015-1577-3 +Wenqi Huang,An Algorithm Based on Tabu Search for Satisfiability Problem.,2002,17,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst17.html#HuangZH02,https://doi.org/10.1007/BF02947312 +Zhinong Zhong,Representing Topological Relationships Among Heterogeneous Geometry-Collection Features.,2004,19,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst19.html#ZhongJCW04,https://doi.org/10.1007/BF02944898 +Yingjun Wu,Local Community Detection Using Link Similarity.,2012,27,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst27.html#WuHHC12,https://doi.org/10.1007/s11390-012-1302-4 +Zailiang Chen,Automatic Anterior Lamina Cribrosa Surface Depth Measurement Based on Active Contour and Energy Constraint.,2017,32,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst32.html#ChenPZSWZ17,https://doi.org/10.1007/s11390-017-1795-y +Yawar Bangash,MimiBS: Mimicking Base-Station to Provide Location Privacy Protection in Wireless Sensor Networks.,2017,32,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst32.html#BangashZF17,https://doi.org/10.1007/s11390-017-1777-0 +Yunyao Qu,Design and implementation of a concurrency control mechanism in an object-oriented database system.,1996,11,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst11.html#QuTWS96,https://doi.org/10.1007/BF02948477 +Paola Bonizzoni,Foreword - Special Issue on Bioinformatics.,2004,19,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst19.html#BonizzoniVJ04,https://doi.org/10.1007/BF02944780 +GuoQiang Peng,Mapping between 2-d meshes of the same size.,1997,12,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst12.html#Peng97,https://doi.org/10.1007/BF02943178 +Ying-Han Pang,Two-Factor Cancelable Biometrics Authenticator.,2007,22,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst22.html#PangJL07,https://doi.org/10.1007/s11390-007-9006-x +Minhui Zou,Scan-Based Attack on Stream Ciphers: A Case Study on eSTREAM Finalists.,2014,29,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst29.html#ZouMWS14,https://doi.org/10.1007/s11390-014-1456-3 +Di Wen,Visual Similarity Based Document Layout Analysis.,2006,21,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst21.html#WenD06,https://doi.org/10.1007/s11390-006-0459-0 +Xiaochen Li,Performance Evaluation of Machine Learning Methods in Cultural Modeling.,2009,24,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst24.html#LiMZSW09,https://doi.org/10.1007/s11390-009-9290-8 +Haohong Wang,A new algorithm for two-dimensional line clipping via geometric transformation.,1998,13,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst13.html#WangWC98,https://doi.org/10.1007/BF02948499 +Dianxun Shuai,A New Algebraic Modelling Approach to Distributed Problem-Solving in MAS.,2002,17,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst17.html#ShuaiD02,https://doi.org/10.1007/BF02943288 +Huaguo Liang,A Mixed-Mode BIST Scheme Based on Folding Compression.,2002,17,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst17.html#LiangHW02,https://doi.org/10.1007/BF02962213 +Yong-Dong Zhang,Secure and Incidental Distortion Tolerant Digital Signature for Image Authentication.,2007,22,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst22.html#ZhangTL07,https://doi.org/10.1007/s11390-007-9079-6 +Hao Wang,R aRb transformation of compound finite automata over commutative rings.,1997,12,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst12.html#Wang97,https://doi.org/10.1007/BF02943143 +Zhenchuan Chai,Efficient ID-Based Multi-Decrypter Encryption with Short Ciphertexts.,2007,22,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst22.html#ChaiCZ07,https://doi.org/10.1007/s11390-007-9014-x +Yanbo Han,CAFISE: An Approach to Enabling Adaptive Configuration of Service Grid Applications.,2003,18,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst18.html#HanZLXLWXL03,https://doi.org/10.1007/BF02948923 +Haiming Chen,Function Definition Language FDL and its implementation.,1999,14,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst14.html#Chen99a,https://doi.org/10.1007/BF02948745 +Jia-Rong Liang,Intermittent Fault Diagnosability of Interconnection Networks.,2017,32,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst32.html#LiangFD17,https://doi.org/10.1007/s11390-017-1800-5 +Liu Songyan,Implementation of Java Card Virtual Machine.,2000,15,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst15.html#SongyanMY00,https://doi.org/10.1007/BF02948841 +Xuejun Yang,The TianHe-1A Supercomputer: Its Hardware and Software.,2011,26,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst26.html#YangLLHSS11,https://doi.org/10.1007/s02011-011-1137-8 +Wooseok Ryu,A Reprocessing Model for Complete Execution of RFID Access Operations on Tag Memory.,2012,27,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst27.html#RyuHKY12,https://doi.org/10.1007/s11390-012-1218-z +Liqun Jin,CCD: An integrated C coding and debugging tool.,1993,8,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst8.html#JinCXQ93,https://doi.org/10.1007/BF02939539 +Issam Damaj,Higher-Level Hardware Synthesis of the KASUMI Algorithm.,2007,22,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst22.html#Damaj07,https://doi.org/10.1007/s11390-007-9007-9 +Guodong Zhou,Improving Syntactic Parsing of Chinese with Empty Element Recovery.,2013,28,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst28.html#ZhouL13,https://doi.org/10.1007/s11390-013-1401-x +Sheqin Dong,An Optimum Placement Search Algorithm Based on Extended Corner Block List.,2002,17,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst17.html#DongZHCGC02,https://doi.org/10.1007/BF02960760 +Lejun Fan,Privacy Petri Net and Privacy Leak Software.,2015,30,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst30.html#FanWLCL15,https://doi.org/10.1007/s11390-015-1601-7 +Hong Gao,Transformation list for SGML application.,1995,10,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst10.html#Gao95,https://doi.org/10.1007/BF02948341 +Jose Kolencheril Raphel,Class based contextual logic for DOOD.,1996,11,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst11.html#RaphelHG96,https://doi.org/10.1007/BF02943531 +Wen-tsun Wu,Automated Reasoning and Equation Solving with the Characteristic Set Method.,2006,21,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst21.html#WuG06,https://doi.org/10.1007/s11390-006-0756-7 +Shaolin Chen,Hyperspectral Imagery Denoising Using a Spatial-Spectral Domain Mixing Prior.,2012,27,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst27.html#ChenHP12,https://doi.org/10.1007/s11390-012-1269-1 +Wengang Zhou,Encoding Spatial Context for Large-Scale Partial-Duplicate Web Image Retrieval.,2014,29,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst29.html#ZhouLLT14,https://doi.org/10.1007/s11390-014-1472-3 +Chao-Sheng Lin,VERTAF/Multi-Core: A SysML-Based Application Framework for Multi-Core Embedded Software Development.,2011,26,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst26.html#LinLLCH11,https://doi.org/10.1007/s11390-011-1146-3 +Xin-Hai Xu,PartialRC: A Partial Recomputing Method for Efficient Fault Recovery on GPGPUs.,2012,27,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst27.html#XuYXLL12,https://doi.org/10.1007/s11390-012-1220-5 +Wei Wang,Leakage Current Optimization Techniques During Test Based on Don't Care Bits Assignment.,2007,22,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst22.html#WangHHLZ07,https://doi.org/10.1007/s11390-007-9091-x +Kan Cai,Understanding Performance for Two 802.11 Competing Flows.,2008,23,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst23.html#CaiFCG08,https://doi.org/10.1007/s11390-008-9139-6 +Xiaolong Zhang 0002,Toward Effective Knowledge Acquisition with First-Order Logic Induction.,2002,17,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst17.html#ZhangN02,https://doi.org/10.1007/BF02948825 +Wenling Wu,Pseudorandomness of Camellia-Like Scheme.,2006,21,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst21.html#Wu06,https://doi.org/10.1007/s11390-006-0082-0 +Weiwu Hu,Microarchitecture of the Godson-2 Processor.,2005,20,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst20.html#HuZL05,https://doi.org/10.1007/s11390-005-0243-6 +Lifeng He,Eliminating Redundant Search Space on Backtracking for Forward Chaining Theorem Proving.,2003,18,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst18.html#HeCI03,https://doi.org/10.1007/BF02947117 +Rong-Zhi Qi,A Parallel Genetic Algorithm Based on Spark for Pairwise Test Suite Generation.,2016,31,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst31.html#QiWL16,https://doi.org/10.1007/s11390-016-1635-5 +Shiming He,Channel Aware Opportunistic Routing in Multi-Radio Multi-Channel Wireless Mesh Networks.,2014,29,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst29.html#HeZXQZ14,https://doi.org/10.1007/s11390-014-1444-7 +Zhengming Chen,Automatic Narrow-Deep Feature Recognition for Mould Manufacturing.,2011,26,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst26.html#ChenHL11,https://doi.org/10.1007/s11390-011-1152-5 +Yang Liu 0014,Algebraic Conditions for Classifying the Positional Relationships Between Two Conics and Their Applications.,2004,19,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst19.html#LiuC04,https://doi.org/10.1007/BF02945593 +Tang-Hsun Tu,Unified UDispatch: A User Dispatching Tool for Multicore Systems.,2011,26,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst26.html#TuH11,https://doi.org/10.1007/s11390-011-1141-8 +Jiguo Li,Nonrepudiable Proxy Multi-Signature Scheme.,2003,18,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst18.html#LiCZ03,https://doi.org/10.1007/BF02948911 +Nong Yu,Automatic Target Detection by Optimal Morphological Filters.,2003,18,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst18.html#NongWWL03,https://doi.org/10.1007/BF02946648 +Jin Wei,Feature Preserving Mesh Simplification Using Feature Sensitive Metric.,2010,25,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst25.html#WeiL10,https://doi.org/10.1007/s11390-010-9348-7 +Ting Bai,An Experimental Study of Text Representation Methods for Cross-Site Purchase Preference Prediction Using the Social Text Data.,2017,32,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst32.html#BaiDZYW17,https://doi.org/10.1007/s11390-017-1763-6 +Rui Yamaguchi,Network-Based Predictions and Simulations by Biological State Space Models: Search for Drug Mode of Action.,2009,25,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst25.html#YamaguchiIM09,https://doi.org/10.1007/s11390-010-9311-7 +Muhammad Hussain,Mammogram Enhancement Using Lifting Dyadic Wavelet Transform and Normalized Tsallis Entropy.,2014,29,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst29.html#Hussain14,https://doi.org/10.1007/s11390-014-1489-7 +Yingyu Wan,Efficient Minimum Spanning Tree Algorithms on the Reconfigurable Mesh.,2000,15,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst15.html#WanXGC00,https://doi.org/10.1007/BF02948795 +Shi-Min Hu,Preface.,2015,30,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst30.html#HuK15,https://doi.org/10.1007/s11390-015-1534-1 +Huaifeng Zhang,Customer Activity Sequence Classification for Debt Prevention in Social Security.,2009,24,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst24.html#ZhangZCZB09,https://doi.org/10.1007/s11390-009-9288-2 +Zille Huma,An Ontology-Based Framework for Semi-Automatic Schema Integration.,2005,20,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst20.html#HumaRI05,https://doi.org/10.1007/s11390-005-0788-4 +Zhang Jin-Yu,Quantitative QoS Management Implement Mechanism in IP-DiffServ.,2005,20,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst20.html#Jin-YuLHL05,https://doi.org/10.1007/s11390-005-0831-5 +Kai-Yuan Cai,Software Reliability Experimentation and Control.,2006,21,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst21.html#Cai06,https://doi.org/10.1007/s11390-006-0697-1 +Jiachang Sun,Parallel algorithm design on some distributed systems.,1997,12,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst12.html#SunCCZ97,https://doi.org/10.1007/BF02951328 +Hailong Yao,Crosstalk-Aware Routing Resource Assignment.,2005,20,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst20.html#YaoCZH05,https://doi.org/10.1007/s11390-005-0231-x +Xinming Ye,A distributed algorithm for determining minimal covers of acyclic database schemes.,1994,9,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst9.html#Ye94,https://doi.org/10.1007/BF02939502 +Wei Ding,Digital Image Watermarking Based on Discrete Wavelet Transform.,2002,17,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst17.html#DingYQ02,https://doi.org/10.1007/BF02962205 +Bo Yan,PRIME: A Mass Spectrum Data Mining Tool for De Nova Sequencing and PTMs Identification.,2005,20,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst20.html#YanQMOX05,https://doi.org/10.1007/s11390-005-0483-5 +Zhe Liu 0001,A Synthesis of Multi-Precision Multiplication and Squaring Techniques for 8-Bit Sensor Nodes: State-of-the-Art Research and Future Challenges.,2016,31,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst31.html#0001SK16,https://doi.org/10.1007/s11390-016-1627-5 +Bo Yang 0002,A Heuristic Clustering Algorithm for Mining Communities in Signed Networks.,2007,22,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst22.html#YangL07,https://doi.org/10.1007/s11390-007-9039-1 +Youngbin Seo,Effectiveness Analysis of DVFS and DPM in Mobile Devices.,2012,27,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst27.html#SeoKS12,https://doi.org/10.1007/s11390-012-1264-6 +Xiaoming Deng,A New Protocol for the Detection of Node Replication Attacks in Mobile Wireless Sensor Networks.,2011,26,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst26.html#DengX11,https://doi.org/10.1007/s11390-011-1172-1 +Jie Wu 0001,SmallWorld Model-Based Polylogarithmic Routing Using Mobile Nodes.,2008,23,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst23.html#WuY08,https://doi.org/10.1007/s11390-008-9136-9 +Hai Jin 0001,Facilitating Service Discovery with Semantic Overlay.,2006,21,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst21.html#JinWN06,https://doi.org/10.1007/s11390-006-0582-y +Tzer-Shyong Chen,An Efficient Key Assignment Scheme Based on One-Way Hash Function in a User Hierarchy.,2003,18,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst18.html#ChenC03,https://doi.org/10.1007/BF02948886 +Lin-Er Yang,Neural Parse Combination.,2017,32,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst32.html#YangSCZLLL17,https://doi.org/10.1007/s11390-017-1756-5 +Rafael Geraldeli Rossi,Inductive Model Generation for Text Classification Using a Bipartite Heterogeneous Network.,2014,29,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst29.html#RossiLFR14,https://doi.org/10.1007/s11390-014-1436-7 +Xuejun Yang,SRF Coloring: Stream Register File Allocation via Graph Coloring.,2009,24,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst24.html#YangDWYDZWT09,https://doi.org/10.1007/s11390-009-9211-x +Chongyi Yuan,S- and T-invariants in cyber net systems.,1995,10,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst10.html#Yuan95,https://doi.org/10.1007/BF02943491 +Fang Zheng,HarkMan - A vocabulary-independent keyword spotter for spontaneous Chinese speech.,1999,14,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst14.html#ZhengXMWWF99,https://doi.org/10.1007/BF02952483 +Guofu Wei,Four-Point Wavelets and Their Applications.,2002,17,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst17.html#WeiC02,https://doi.org/10.1007/BF02943287 +Shung Han Cho,Effective Object Identification and Association by Varying Coverage Through RFID Power Control.,2014,29,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst29.html#ChoKH14,https://doi.org/10.1007/s11390-013-1408-3 +Philip Machanick,The Value of a Small Microkernel for Dreamy Memory and the RAMpage Memory Hierarchy.,2005,20,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst20.html#Machanick05,https://doi.org/10.1007/s11390-005-0586-z +Yu-Ling Hsueh,Efficient Location Updates for Continuous Queries over Moving Objects.,2010,25,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst25.html#HsuehZK10,https://doi.org/10.1007/s11390-010-9334-0 +Yunzhan Gong,Deductive fault simulation algorithm based on fault collapsing.,1993,8,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst8.html#GongW93,https://doi.org/10.1007/BF02939481 +Chong Cao,Facial Similarity Learning with Humans in the Loop.,2015,30,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst30.html#CaoA15,https://doi.org/10.1007/s11390-015-1540-3 +Zeqi Lin,Intelligent Development Environment and Software Knowledge Graph.,2017,32,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst32.html#LinXZZLWSY17,https://doi.org/10.1007/s11390-017-1718-y +Renwei Li,An introduction to INCAPS system.,1993,8,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst8.html#LiHZ93,https://doi.org/10.1007/BF02946583 +Qian Wu,Mining Effective Temporal Specifications from Heterogeneous API Data.,2011,26,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst26.html#WuLWM11,https://doi.org/10.1007/s11390-011-1201-0 +Chao Cai,Global-to-Local Approach to Rigorously Developing Distributed System with Exception Handling.,2009,24,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst24.html#CaiQYZ09,https://doi.org/10.1007/s11390-009-9220-9 +Wenwu Zhu 0001,Preface.,2016,31,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst31.html#Zhu16,https://doi.org/10.1007/s11390-016-1682-y +Ying He 0001,Automatic Shape Control of Triangular B-Splines of Arbitrary Topology.,2006,21,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst21.html#HeGQ06,https://doi.org/10.1007/s11390-006-0232-4 +Cungen Cao,A three-stage knowledge acquisition method.,1995,10,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst10.html#CaoL95,https://doi.org/10.1007/BF02943495 +Yongxuan Lai,PEJA: Progressive Energy-Efficient Join Processing for Sensor Networks.,2008,23,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst23.html#LaiCC08,https://doi.org/10.1007/s11390-008-9191-2 +Bin Gu,Ordinal-Class Core Vector Machine.,2010,25,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst25.html#GuWL10,https://doi.org/10.1007/s11390-010-9358-5 +Wenhui Zhang,Combining Static Analysis and Case-Based Search Space Partitioning for Reducing Peak Memory in Model Checking.,2003,18,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst18.html#Zhang03,https://doi.org/10.1007/BF02945465 +Weisong Shi,Where does the time go in software DSMs? - Experiences with JIAJIA.,1999,14,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst14.html#ShiHT99,https://doi.org/10.1007/BF02948508 +Wen-Guang Chen,Preface.,2017,32,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst32.html#Chen17,https://doi.org/10.1007/s11390-017-1701-7 +Matti Pöllä,Negative Selection of Written Language Using Character Multiset Statistics.,2010,25,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst25.html#PollaH10,https://doi.org/10.1007/s11390-010-9403-4 +Zaiyue Zhang,Extending the Cooper Minimal Pair Theorem.,2001,16,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst16.html#Zhang01,https://doi.org/10.1007/BF02948855 +Benjamin W. Wah,Penalty Formulations and Trap-Avoidance Strategies for Solving Hard Satisfiability Problems.,2005,20,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst20.html#WahW05,https://doi.org/10.1007/s11390-005-0002-8 +Aoying Zhou,Effective Discovery of Exception Class Association Rules.,2002,17,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst17.html#ZhouLF02,https://doi.org/10.1007/BF02947308 +Yun Zhang,Efficient Video Cutout by Paint Selection.,2015,30,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst30.html#ZhangTC15,https://doi.org/10.1007/s11390-015-1537-y +Lei Shi 0001,An SPN-Based Integrated Model for Web Prefetching and Caching.,2006,21,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst21.html#ShiHDWG06,https://doi.org/10.1007/s11390-006-0482-1 +Donghong Han,Load Shedding for Window Joins over Streams.,2007,22,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst22.html#HanWXZ07,https://doi.org/10.1007/s11390-007-9024-8 +Weidong Min,A new approach to fully automatic mesh generation.,1995,10,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst10.html#MinTZZW95,https://doi.org/10.1007/BF02943508 +Anwar M. Mirza,Spatially Adaptive Image Restoration Using Fuzzy Punctual Kriging.,2007,22,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst22.html#MirzaCM07,https://doi.org/10.1007/s11390-007-9061-3 +Mohamed Farouk Abdel Hady,Combining Committee-Based Semi-Supervised Learning and Active Learning.,2010,25,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst25.html#HadyS10,https://doi.org/10.1007/s11390-010-9357-6 +Yongqiang Sun,Partial Completion of Equational Theories.,2000,15,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst15.html#SunLL00,https://doi.org/10.1007/BF02948837 +Xiangliang Zhang,Securing Recommender Systems Against Shilling Attacks Using Social-Based Clustering.,2013,28,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst28.html#ZhangLP13,https://doi.org/10.1007/s11390-013-1362-0 +Lihong Zhi,Optimal algorithm for algebraic factoring.,1997,12,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst12.html#Zhi97,https://doi.org/10.1007/BF02943139 +Amaury Aubel,MuscleBuilder: A Modeling Tool for Human Anatomy.,2004,19,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst19.html#AubelT04,https://doi.org/10.1007/BF02945584 +Zheng-Jie Deng,Automatic Cage Building with Quadric Error Metrics.,2011,26,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst26.html#DengLM11,https://doi.org/10.1007/s11390-011-1153-4 +Da Teng,QoS-TEOS: QoS Guaranteed Throughput-Efficiency Optimal Distributed Scheduling in WiMAX Mesh Networks.,2010,25,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst25.html#TengYHH10,https://doi.org/10.1007/s11390-010-9381-6 +Xiong Huang,On k -positive satisfiability problem.,1999,14,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst14.html#HuangL99,https://doi.org/10.1007/BF02948732 +Lei Guo,Exploiting Pre-Trained Network Embeddings for Recommendations in Social Networks.,2018,33,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst33.html#GuoWW18,https://doi.org/10.1007/s11390-018-1849-9 +Xu Tan 0001,A Pipelining Loop Optimization Method for Dataflow Architecture.,2018,33,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst33.html#TanYSXWZLFT18,https://doi.org/10.1007/s11390-017-1748-5 +Yiyun Chen,Head boundedness of nonterminating rewritings.,1995,10,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst10.html#Chen95,https://doi.org/10.1007/BF02943496 +Dongfang Zhou,Optimal Path Embedding in the Exchanged Crossed Cube.,2017,32,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst32.html#ZhouFLCZL17,https://doi.org/10.1007/s11390-017-1729-8 +J. Dinesh Peter,Nonlocal-Means Image Denoising Technique Using Robust M-Estimator.,2010,25,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst25.html#PeterGM10,https://doi.org/10.1007/s11390-010-9351-z +Wu Jigang,An Optimal Online Algorithm for Halfplane Intersection.,2000,15,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst15.html#JigangJC00,https://doi.org/10.1007/BF02948817 +Xiaohu Yan,A Novel Hardware/Software Partitioning Method Based on Position Disturbed Particle Swarm Optimization with Invasive Weed Optimization.,2017,32,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst32.html#YanHC17,https://doi.org/10.1007/s11390-017-1714-2 +Jin Wang,Automatic Image-Based Pencil Sketch Rendering.,2002,17,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst17.html#WangBZPX02,https://doi.org/10.1007/BF02947313 +Enhua Wu,Interleaving Radiosity.,2002,17,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst17.html#WuW02,https://doi.org/10.1007/BF02949819 +Zhaozhi Yang,New Multipole Method for 3-D Capacitance Extraction.,2004,19,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst19.html#YangW04,https://doi.org/10.1007/BF02944756 +Qingshi Gao,A Novel Computer Architecture to Prevent Destruction by Viruses.,2002,17,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst17.html#GaoHLCL02,https://doi.org/10.1007/BF02947303 +Ludek Cienciala,Membrane Automata with Priorities.,2004,19,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst19.html#CiencialaC04,https://doi.org/10.1007/BF02944787 +Liang Fang,A Cost Effective Fault-Tolerant Scheme for RAIDs.,2003,18,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst18.html#FangL03,https://doi.org/10.1007/BF02948889 +Jinyun Xue,A unified approach for developing efficient algorithmic programs.,1997,12,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst12.html#Xue97,https://doi.org/10.1007/BF02943151 +Chuan Shi,A Posteriori Approach for Community Detection.,2011,26,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst26.html#ShiYPCW11,https://doi.org/10.1007/s11390-011-0178-z +Ayana,Recent Advances on Neural Headline Generation.,2017,32,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst32.html#AyanaSLTZLS17,https://doi.org/10.1007/s11390-017-1758-3 +Qiang Yang 0001,Preface.,2012,27,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst27.html#YangTZC12,https://doi.org/10.1007/s11390-012-1234-z +Paola Bonizzoni,The Haplotyping Problem: An Overview of Computational Models and Solutions.,2003,18,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst18.html#BonizzoniVDL03,https://doi.org/10.1007/BF02945456 +Weiqing Tang,An object-oriented model of user interface generation tool.,1994,9,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst9.html#TangWL94,https://doi.org/10.1007/BF02939509 +Yanfang Ma,The Infinite Evolution Mechanism of and#1013*-Bisimilarity.,2013,28,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst28.html#MaZ13,https://doi.org/10.1007/s11390-013-1400-y +Zhiguang Chen,Reorder Write Sequence by Hetero-Buffer to Extend SSD's Lifespan.,2013,28,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst28.html#ChenXLD13,https://doi.org/10.1007/s11390-013-1309-5 +Lei Guo 0008,Social Trust Aware Item Recommendation for Implicit Feedback.,2015,30,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst30.html#GuoMJCX15,https://doi.org/10.1007/s11390-015-1580-8 +Chengwen Xing,Outage Analysis of Opportunistic Cooperative Ad Hoc Networks with Randomly Located Nodes.,2013,28,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst28.html#XingDYMF13,https://doi.org/10.1007/s11390-013-1341-5 +Dong-Ming Yan,A Survey of Blue-Noise Sampling and Its Applications.,2015,30,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst30.html#YanGWZW15,https://doi.org/10.1007/s11390-015-1535-0 +Franz Weitl,Checking Content Consistency of Integrated Web Documents.,2006,21,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst21.html#WeitlF06,https://doi.org/10.1007/s11390-006-0418-9 +Chao Li 0009,Towards Automated Provisioning and Emergency Handling in Renewable Energy Powered Datacenters.,2014,29,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst29.html#LiWHZLLYLQ14,https://doi.org/10.1007/s11390-014-1454-5 +Xu Lin,Study on Translating Chinese into Chinese Sign Language.,2000,15,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst15.html#LinG00,https://doi.org/10.1007/BF02950413 +Richard M. Karp,Understanding Science Through the Computational Lens.,2011,26,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst26.html#Karp11,https://doi.org/10.1007/s11390-011-1157-0 +Beiji Zou,Supervised Vessels Classification Based on Feature Selection.,2017,32,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst32.html#ZouCZCZ17,https://doi.org/10.1007/s11390-017-1796-x +Lan Yao,Sparse Support Vector Machine with L p Penalty for Feature Selection.,2017,32,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst32.html#YaoZLC17,https://doi.org/10.1007/s11390-017-1706-2 +Junlin Zhou,From Popularity to Personality - A Heuristic Music Recommendation Method for Niche Market.,2011,26,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst26.html#ZhouFLS11,https://doi.org/10.1007/s11390-011-0180-5 +Aditya Wagh,Emerging Applications for Cyber Transportation Systems.,2014,29,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst29.html#WaghHQZLSHWXH14,https://doi.org/10.1007/s11390-014-1450-9 +Yonglong Luo,Secure Two-Party Point-Circle Inclusion Problem.,2007,22,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst22.html#LuoHZ07,https://doi.org/10.1007/s11390-007-9011-0 +Renzhen Ye,Collective Representation for Abnormal Event Detection.,2017,32,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst32.html#YeL17,https://doi.org/10.1007/s11390-017-1737-8 +Chen Ding,Performance Metrics and Models for Shared Cache.,2014,29,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst29.html#DingXBLLW14,https://doi.org/10.1007/s11390-014-1460-7 +Xiaoping Du,Maintaining Discovered Frequent Itemsets: Cases for Changeable Database and Support.,2003,18,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst18.html#DuTM03,https://doi.org/10.1007/BF02947125 +Zhihao Wu,Balanced Multi-Label Propagation for Overlapping Community Detection in Social Networks.,2012,27,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst27.html#WuLGWT12,https://doi.org/10.1007/s11390-012-1236-x +Xinqi Bao,A Tensor Neural Network with Layerwise Pretraining: Towards Effective Answer Retrieval.,2016,31,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst31.html#BaoW16,https://doi.org/10.1007/s11390-016-1689-4 +Zhongzhi Shi,RAO logic for multiagent framework.,1999,14,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst14.html#ShiTL99,https://doi.org/10.1007/BF02948742 +Zengping Tian,On the expressive power of F-logic language.,1997,12,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst12.html#TianWQS97,https://doi.org/10.1007/BF02947203 +Wen-Qian Deng,A Modified Fuzzy C-Means Algorithm for Brain MR Image Segmentation and Bias Field Correction.,2016,31,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst31.html#DengLGZ16,https://doi.org/10.1007/s11390-016-1643-5 +Dong Zheng 0001,Multiparty Authentication Services and Key Agreement Protocols with Semi-Trusted Third Party.,2002,17,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst17.html#DongCY02,https://doi.org/10.1007/BF02960765 +Zongwei Lu,Variables Bounding Based Retiming Algorithm.,2002,17,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst17.html#LuLC02,https://doi.org/10.1007/BF02960770 +Yuan Yao,Utilizing Probabilistic Linear Equations in Cube Attacks.,2016,31,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst31.html#YaoZW16,https://doi.org/10.1007/s11390-016-1629-3 +Aoying Zhou,Clustering DTDs: An Interactive Two-Level Approach.,2002,17,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst17.html#ZhouWQ02,https://doi.org/10.1007/BF02960771 +Jian-Liang Liu,SAC: Exploiting Stable Set Model to Enhance CacheFiles.,2014,29,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst29.html#LiuZYGLX14,https://doi.org/10.1007/s11390-014-1431-z +Xiaofeng Meng,Word Segmentation Based on Database Semantics in NChiql.,2000,15,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst15.html#MengLW00,https://doi.org/10.1007/BF02948870 +Wen-Qi Huang,Algorithm Based on Taboo Search and Shifting Bottleneck for Job Shop Scheduling.,2004,19,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst19.html#HuangH04,https://doi.org/10.1007/BF02973438 +Jian Chen,Detecting Android Malware Using Clone Detection.,2015,30,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst30.html#ChenADZ15,https://doi.org/10.1007/s11390-015-1573-7 +Zhiguo Wan,n PAKE+: A Tree-Based Group Password-Authenticated Key Exchange Protocol Using Different Passwords.,2009,24,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst24.html#WanDBPG09,https://doi.org/10.1007/s11390-009-9207-6 +Ai-Wen Jiang,Deep Multimodal Reinforcement Network with Contextually Guided Recurrent Attention for Image Question Answering.,2017,32,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst32.html#JiangLW17,https://doi.org/10.1007/s11390-017-1755-6 +Xueyin Lin,Range information propagation transform.,1998,13,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst13.html#LinCZS98,https://doi.org/10.1007/BF02948502 +Thomas Fang Zheng,Comparison of Different Implementations of MFCC.,2001,16,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst16.html#FangGZ01,https://doi.org/10.1007/BF02943243 +Tong Jing,SSTT: Efficient Local Search for GSI Global Routing.,2003,18,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst18.html#JingHBXX03,https://doi.org/10.1007/BF02947123 +Bing-Qing Shao,A Non-Forced-Write Atomic Commit Protocol for Cluster File Systems.,2014,29,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst29.html#ShaoZZZLX14,https://doi.org/10.1007/s11390-014-1432-y +InSung Kang,Tree-Based Index Overlay in Hybrid Peer-to-Peer Systems.,2010,25,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst25.html#KangCJL10,https://doi.org/10.1007/s11390-010-9326-0 +Yanxia Xu,Discovering Functional Organized Point of Interest Groups for Spatial Keyword Recommendation.,2018,33,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst33.html#XuCXLLZ18,https://doi.org/10.1007/s11390-018-1850-3 +Xianlong Hong,CNB: A Critical-Network-Based Timing Optimization Method for Standard Cell Global Routing.,2003,18,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst18.html#HongJXBJ03,https://doi.org/10.1007/BF02945461 +Ning Wang,Differentially Private Event Histogram Publication on Sequences over Graphs.,2017,32,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst32.html#WangGXLY17,https://doi.org/10.1007/s11390-017-1778-z +Ligang Liu,Polygonal Shape Blending with Topological Evolutions.,2005,20,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst20.html#LiuZGS05,https://doi.org/10.1007/s11390-005-0009-1 +Zeinab Hmedeh,Content-Based Publish/Subscribe System for Web Syndication.,2016,31,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst31.html#HmedehKCMST16,https://doi.org/10.1007/s11390-016-1632-8 +Yici Cai,Priority-Based Routing Resource Assignment Considering Crosstalk.,2006,21,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst21.html#CaiLXZH06,https://doi.org/10.1007/s11390-006-0913-z +Qing-Hua Zheng,New Approach to WLAN Security with Synchronized Pseudo Random.,2004,19,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst19.html#ZhengPW04,https://doi.org/10.1007/BF02973455 +Yong-Zhao Zhan,A New Classifier for Facial Expression Recognition: Fuzzy Buried Markov Model.,2010,25,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst25.html#ZhanCCW10,https://doi.org/10.1007/s11390-010-9353-x +Yueting Zhuang,Video key frame extraction by unsupervised clustering and feedback adjustment.,1999,14,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst14.html#ZhuangRH99,https://doi.org/10.1007/BF02948517 +Hongtao Zhang,A Unified Active Learning Framework for Biomedical Relation Extraction.,2012,27,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst27.html#ZhangHZ12,https://doi.org/10.1007/s11390-012-1306-0 +Xiao-Feng Meng,Preface.,2010,25,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst25.html#MengW10,https://doi.org/10.1007/s11390-010-9331-3 +Hai-Bin Zhang,Symbolic Algorithmic Analysis of Rectangular Hybrid Systems.,2009,24,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst24.html#ZhangD09,https://doi.org/10.1007/s11390-009-9243-2 +Guochen Cai,Mining Semantic Trajectory Patterns from Geo-Tagged Data.,2018,33,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst33.html#CaiLL18,https://doi.org/10.1007/s11390-018-1860-1 +Manwu Xu,An implementation of pure Horn clause logic programming in a reduction system.,1993,8,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst8.html#Xu93,https://doi.org/10.1007/BF02939531 +Lingda Li,Retention Benefit Based Intelligent Cache Replacement.,2014,29,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst29.html#LiLC14,https://doi.org/10.1007/s11390-014-1481-2 +Bin Xu 0001,A Semantic Matchmaker for Ranking Web Services.,2006,21,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst21.html#XuZLY06,https://doi.org/10.1007/s11390-006-0574-y +Dan Hao,Test-Data Generation Guided by Static Defect Detection.,2009,24,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst24.html#HaoZLLS09,https://doi.org/10.1007/s11390-009-9224-5 +Sen-Shan Pan,Construction of 1-Resilient Boolean Functions with Optimal Algebraic Immunity and Good Nonlinearity.,2011,26,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst26.html#PanFZ11,https://doi.org/10.1007/s11390-011-9433-6 +Petter Holme,Understanding and Exploiting Information Spreading and Integrating Technologies.,2011,26,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst26.html#HolmeH11,https://doi.org/10.1007/s11390-011-0182-3 +Yantai Shu,The impact of self-similar traffic on network delay.,1999,14,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst14.html#ShuXJY99,https://doi.org/10.1007/BF02951879 +Mingsheng Ying,Phase semantics for a pure noncommutative linear propositional logic.,1999,14,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst14.html#Ying99,https://doi.org/10.1007/BF02946519 +Yu Huang 0001,Extraction of Spatial-Temporal Features for Vision-Based Gesture Recognition.,2000,15,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst15.html#YuXY00,https://doi.org/10.1007/BF02951928 +Lam Thu Bui,Interleaving Guidance in Evolutionary Multi-Objective Optimization.,2008,23,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst23.html#BuiDAE08,https://doi.org/10.1007/s11390-008-9114-2 +Meihe Xu,A boundary element method for simulation of deformable objects.,1996,11,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst11.html#XuT96a,https://doi.org/10.1007/BF02947217 +Tengjiao Wang,Extracting Local Schema from Semistructured Data Based on Graph-Oriented Semantic Model.,2001,16,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst16.html#WangTYLL01,https://doi.org/10.1007/BF02943240 +Joong-Hyun Rhim,Generation of Discrete Bicubic G1 B-Spline Ship Hullform Surfaces from a Given Curve Network Using Virtual Iso-Parametric Curves.,2006,21,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst21.html#RhimCLK06,https://doi.org/10.1007/s11390-006-0265-8 +Feng Dong,Three-dimensional volume datafield reconstruction from physical model.,1997,12,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst12.html#DongCCS97,https://doi.org/10.1007/BF02948972 +Jean Marc Gallière,Delay Testing Viability of Gate Oxide Short Defects.,2005,20,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst20.html#GalliereRAB05,https://doi.org/10.1007/s11390-005-0195-x +Guoqiang Zhang,Domains via Graphs.,2001,16,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst16.html#ZhangC01,https://doi.org/10.1007/BF02943235 +Kwangjin Park,Efficient Data Access for Location-Dependent Spatial Queries.,2014,29,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst29.html#Park14,https://doi.org/10.1007/s11390-014-1442-9 +Jing Chen,Model Checking Real-Time Value-Passing Systems.,2004,19,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst19.html#ChenC04,https://doi.org/10.1007/BF02944747 +Miaomiao Wang,Middleware for Wireless Sensor Networks: A Survey.,2008,23,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst23.html#WangCLD08,https://doi.org/10.1007/s11390-008-9135-x +Tao Xie 0001,Preface.,2015,30,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst30.html#Xie15,https://doi.org/10.1007/s11390-015-1571-9 +Ying Xu,Preface.,2005,20,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst20.html#XuCW05,https://doi.org/10.1007/s11390-005-0433-2 +Xiao-Li Huang,Cryptanalysis of Achterbahn-Version 1 and -Version 2.,2007,22,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst22.html#HuangW07,https://doi.org/10.1007/s11390-007-9047-1 +Yifa Cai,Experimental studies of artificial conscious systems.,1995,10,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst10.html#Cai95,https://doi.org/10.1007/BF02943503 +Ozgur Sinanoglu,Scan Cell Positioning for Boosting the Compression of Fan-Out Networks.,2009,24,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst24.html#SinanogluASO09,https://doi.org/10.1007/s11390-009-9268-6 +Yu Ji,Modelling Spiking Neural Network from the Architecture Evaluation Perspective.,2016,31,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst31.html#JiZZ16,https://doi.org/10.1007/s11390-016-1611-0 +A. Robin Forrest,Future Trends in Computer Graphics: How Much is Enough?,2003,18,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst18.html#Forrest03,https://doi.org/10.1007/BF02947113 +Jiyong Ma,The supervised learning Gaussian mixture model.,1998,13,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst13.html#MaG98,https://doi.org/10.1007/BF02948506 +Shan Wang,Database Research: Achievements and Challenges.,2006,21,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst21.html#WangDMC06,https://doi.org/10.1007/s11390-006-0823-0 +Hong Chen,Effects of Local-Lag Mechanism on Task Performance in a Desktop CVE System.,2005,20,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst20.html#ChenCC05,https://doi.org/10.1007/s11390-005-0396-3 +Jia Jia 0001,Grading the Severity of Mispronunciations in CAPT Based on Statistical Analysis and Computational Speech Perception.,2014,29,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst29.html#JiaLWZWCM14,https://doi.org/10.1007/s11390-014-1465-2 +Xiaobo Fan,MRST - An Efficient Monitoring Technology of Summarization on Stream Data.,2007,22,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst22.html#FanXLC07,https://doi.org/10.1007/s11390-007-9025-7 +Xiaowei Shen,An Efficient Network-on-Chip Router for Dataflow Architecture.,2017,32,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst32.html#ShenYTWZLZFS17,https://doi.org/10.1007/s11390-017-1703-5 +Wang Youcheng,Approximate Sorting of Packet-Scheduling in High-Speed Networks.,2001,16,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst16.html#YouchengYHZ01,https://doi.org/10.1007/BF02948980 +Yong Xiao,Performance Evaluation of Data Value Prediction Schemes.,2005,20,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst20.html#XiaoZ05,https://doi.org/10.1007/s11390-005-0615-y +Lin Luo,A Motion Compensated Lifting Wavelet Codec for 3D Video Coding.,2003,18,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst18.html#LuoLLZ03,https://doi.org/10.1007/BF02948887 +Kevin Chiew,Multistage Off-Line Permutation Packet Routing on a Mesh: An Approach with Elementary Mathematics.,2009,24,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst24.html#ChiewL09,https://doi.org/10.1007/s11390-009-9203-x +Xin Bi,Efficient Processing of Distributed Twig Queries Based on Node Distribution.,2017,32,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst32.html#BiZW17,https://doi.org/10.1007/s11390-017-1707-1 +Zhang Wensong,LinuxDirector: A Connection Director for Scalable Internet Services.,2000,15,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst15.html#WensongJW00,https://doi.org/10.1007/BF02948838 +Huiqian Li,Exploring Social Annotations with the Application to Web Page Recommendation.,2009,24,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst24.html#LiXZWM09,https://doi.org/10.1007/s11390-009-9292-6 +Zhifeng Xie,Photographic Appearance Enhancement via Detail-Based Dictionary Learning.,2017,32,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst32.html#XieTHDM17,https://doi.org/10.1007/s11390-017-1733-z +Tong Zhang 0003,Intuitionistic logic as the implement of incremental model construction for natural language.,1998,13,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst13.html#Zhang98,https://doi.org/10.1007/BF02946609 +Yi Wu 0002,Pricing Loss Leaders Can be Hard.,2012,27,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst27.html#Wu12,https://doi.org/10.1007/s11390-012-1258-4 +Jiahai Yang,Towards Next Generation Internet Management: CNGI-CERNET2 Experiences.,2009,24,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst24.html#YangZZA09,https://doi.org/10.1007/s11390-009-9239-y +Jingyu Song,Extending Interactive Web Services for Improving Presentation Level Integration in Web Portals.,2006,21,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst21.html#SongWWH06,https://doi.org/10.1007/s11390-006-0620-9 +Wei Wei 0010,Integrated Differentiated Survivability in IP over WDM Networks.,2004,19,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst19.html#WeiZ04,https://doi.org/10.1007/BF02973453 +Zhe Bian,Evaluation for Small Visual Difference Between Conforming Meshes on Strain Field.,2009,24,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst24.html#BianHM09,https://doi.org/10.1007/s11390-009-9198-3 +Jianping Wu,Research on Next-Generation Internet Architecture.,2006,21,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst21.html#WuX06,https://doi.org/10.1007/s11390-006-0723-3 +Jun Zhao 0001,Linguistic Theory Based Contextual Evidence Mining for Statistical Chinese Co-Reference Resolution.,2007,22,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst22.html#ZhaoL07,https://doi.org/10.1007/s11390-007-9076-9 +Xiao-Dong Wang,An Improved HEAPSORT Algorithm with n log n - 0.788928 n Comparisons in the Worst Case.,2007,22,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst22.html#WangW07,https://doi.org/10.1007/s11390-007-9106-7 +Xiaowei Li 0001,High Level Synthesis for Loop-Based BIST.,2000,15,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst15.html#LiC00,https://doi.org/10.1007/BF02948869 +Luke Kien-Weng Tan,Phrase-Level Sentiment Polarity Classification Using Rule-Based Typed Dependencies and Additional Complex Phrases Consideration.,2012,27,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst27.html#TanNTC12,https://doi.org/10.1007/s11390-012-1251-y +Jian-Er Chen,Parameterized Computation and Complexity: A New Approach Dealing with NP-Hardness.,2005,20,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst20.html#Chen05,https://doi.org/10.1007/s11390-005-0003-7 +Jianhua Li,Combining Trigram and Automatic Weight Distribution in Chinese Spelling Error Correction.,2002,17,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst17.html#LiX02,https://doi.org/10.1007/BF02960784 +Kiatichai Treerattanapitak,Possibilistic Exponential Fuzzy Clustering.,2013,28,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst28.html#TreerattanapitakJ13,https://doi.org/10.1007/s11390-013-1331-7 +Utku Kalay,A Comparison Study of Moving Object Index Structures.,2009,24,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst24.html#KalayK09,https://doi.org/10.1007/s11390-009-9283-7 +Huiying Lan,DLPlib: A Library for Deep Learning Processor.,2017,32,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst32.html#LanWZTCWWGC17,https://doi.org/10.1007/s11390-017-1722-2 +Chengliang Tian,Solving Closest Vector Instances Using an Approximate Shortest Independent Vectors Oracle.,2015,30,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst30.html#TianWL15,https://doi.org/10.1007/s11390-015-1604-4 +Junsheng Wu,Element-partition-based methods for visualization of 3D unstructured grid data.,1998,13,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst13.html#WuW98,https://doi.org/10.1007/BF02948500 +Bin Pang 0002,An Admission Control Scheme for End-to-End Statistical QoS Provision in IP Networks.,2003,18,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst18.html#BinSG03,https://doi.org/10.1007/BF02948896 +Zhi-Hua Zhou,Preface.,2010,25,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst25.html#ZhouL10,https://doi.org/10.1007/s11390-010-9354-9 +Ai-Hua Yin,Greedy Randomized Adaptive Search Procedure with Path-Relinking for the Vertex p-Center Problem.,2017,32,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst32.html#YinZDZL17,https://doi.org/10.1007/s11390-017-1802-3 +Yu-Geng Song,Parallel Incremental Frequent Itemset Mining for Large Data.,2017,32,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst32.html#SongCF17,https://doi.org/10.1007/s11390-017-1726-y +Hua Luan,Prefetching J+-Tree: A Cache-Optimized Main Memory Database Index Structure.,2009,24,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst24.html#LuanDW09,https://doi.org/10.1007/s11390-009-9251-2 +Shengke Yu,Reasoning in H -net: A unified approach to intelligent hypermedia systems.,1996,11,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst11.html#Yu96,https://doi.org/10.1007/BF02943524 +Ming Wang,2D-Manifold Boundary Surfaces Extraction from Heterogeneous Object on GPU.,2012,27,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst27.html#WangF12,https://doi.org/10.1007/s11390-012-1270-8 +Liang Xu,Improved Bounded Model Checking for the Universal Fragment of CTL.,2009,24,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst24.html#XuCXZ09,https://doi.org/10.1007/s11390-009-9208-5 +Xiaopeng Zhang 0001,Hair Image Generation Using Connected Texels.,2001,16,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst16.html#XiaopengCW01,https://doi.org/10.1007/BF02948982 +Yu Zhang,Clustering Context-Dependent Opinion Target Words in Chinese Product Reviews.,2015,30,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst30.html#ZhangLX15a,https://doi.org/10.1007/s11390-015-1586-2 +Fanfu Zhou,Optimizations for High Performance Network Virtualization.,2016,31,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst31.html#ZhouMLCQG16,https://doi.org/10.1007/s11390-016-1614-x +Guoren Wang,Declarative XML Update Language Based on a Higher Data Model.,2005,20,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst20.html#WangZ05a,https://doi.org/10.1007/s11390-005-0373-x +Dianxun Shuai,Hyper-distributed hyper-parallel implementation of heuristic search of implicit AND/OR graph.,1997,12,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst12.html#Shuai97a,https://doi.org/10.1007/BF02947205 +Pin Liao,Unified Model in Identity Subspace for Face Recognition.,2004,19,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst19.html#LiaoSCL04,https://doi.org/10.1007/BF02945595 +Xiaodong Meng,A Hint Frequency Based Approach to Enhancing the I/O Performance of Multilevel Cache Storage Systems.,2017,32,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst32.html#MengWGLLYZ17,https://doi.org/10.1007/s11390-017-1724-0 +Loris Nanni,Cluster-Based Nearest-Neighbour Classifier and Its Application on the Lightning Classification.,2008,23,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst23.html#NanniL08,https://doi.org/10.1007/s11390-008-9153-8 +Yuchun Ma,General Floorplans with L/T-Shaped Blocks Using Corner Block List.,2006,21,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst21.html#MaHDCG06,https://doi.org/10.1007/s11390-006-0922-y +Bailin Yang,An Effective Error Resilient Packetization Scheme for Progressive Mesh Transmission over Unreliable Networks.,2008,23,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst23.html#YangLPW08,https://doi.org/10.1007/s11390-008-9195-y +Xiao-Ming Sun,Preface.,2012,27,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst27.html#Sun12,https://doi.org/10.1007/s11390-012-1252-x +Konstantin Melikhov,DBSC-Based Grayscale Line Image Vectorization.,2006,21,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst21.html#MelikhovTQCS06,https://doi.org/10.1007/s11390-006-0244-0 +Santi Martínez,A Secure Elliptic Curve-Based RFID Protocol.,2009,24,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst24.html#MartinezVRMG09,https://doi.org/10.1007/s11390-009-9226-3 +Cai-Yan Jia,Multi-Scaling Sampling: An Adaptive Sampling Method for Discovering Approximate Association Rules.,2005,20,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst20.html#JiaG05,https://doi.org/10.1007/s11390-005-0309-5 +Jian Liu,A switched capacitor harmonic compensation part for switching supplies.,1997,12,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst12.html#LiuCDY97,https://doi.org/10.1007/BF02951339 +Wencheng Wang,Layered Textures for Image-Based Rendering.,2004,19,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst19.html#WangLZW04,https://doi.org/10.1007/BF02945589 +Wenbin Jiang,A method for minimization design of two-level logic networks using multiplexer universal logic modules.,1994,9,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst9.html#Jiang94,https://doi.org/10.1007/BF02939490 +Ning Wang,Real-Time Simulation of Aeolian Sand Movement and Sand Ripple Evolution: A Method Based on the Physics of Blown Sand.,2012,27,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst27.html#WangH12,https://doi.org/10.1007/s11390-012-1212-5 +Wen Gao 0001,A stochastic approach for blurred image restoration and optical flow computation on field image sequence.,1997,12,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst12.html#GaoC97,https://doi.org/10.1007/BF02943171 +Yidong Shen,Diagnostic problem solving using first principles and heuristics.,1996,11,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst11.html#ShenRT96,https://doi.org/10.1007/BF02948481 +Haiming Chen,Pattern Matching Compilation of Functions Defined in Context-Free Languages.,2001,16,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst16.html#ChenD01,https://doi.org/10.1007/BF02950420 +Si-Qing Zheng,Scalable and Practical Nonblocking Switching Networks.,2006,21,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst21.html#ZhengG06,https://doi.org/10.1007/s11390-006-0466-1 +Youli Min,A fault-tolerant and heuristic routing algorithm for faulty hypercubes.,1995,10,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst10.html#MinM95,https://doi.org/10.1007/BF02943511 +Shengzhi Du,Evolutionary Pseudo-Relaxation Learning Algorithm for Bidirectional Associative Memory.,2005,20,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst20.html#DuCY05,https://doi.org/10.1007/s11390-005-0559-2 +Suchakrapani Datt Sharma,Enhanced Userspace and In-Kernel Trace Filtering for Production Systems.,2016,31,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst31.html#SharmaD16,https://doi.org/10.1007/s11390-016-1690-y +Hongzhi Wang,COSSET+: Crowdsourced Missing Value Imputation Optimized by Knowledge Base.,2017,32,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst32.html#WangQSLG17,https://doi.org/10.1007/s11390-017-1768-1 +Charu C. Aggarwal,The Inverse Classification Problem.,2010,25,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst25.html#AggarwalCH10,https://doi.org/10.1007/s11390-010-9337-x +Donggeon Noh,URECA: Efficient Resource Location Middleware for Ubiquitous Environment.,2008,23,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst23.html#NohS08,https://doi.org/10.1007/s11390-008-9186-z +Kedian Mu,Managing Software Requirements Changes Based on Negotiation-Style Revision.,2011,26,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst26.html#MuLJHB11,https://doi.org/10.1007/s11390-011-0187-y +Jingbo Gao,Segmentation of stick text based on sub connected area analysis.,1998,13,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst13.html#GaoLT98,https://doi.org/10.1007/BF02946614 +Peng Chen,A General-Purpose Many-Accelerator Architecture Based on Dataflow Graph Clustering of Applications.,2014,29,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst29.html#ChenZHC14,https://doi.org/10.1007/s11390-014-1426-9 +Jing Xu 0002,A Generic Framework for Anonymous Authentication in Mobile Networks.,2013,28,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst28.html#XuZ13,https://doi.org/10.1007/s11390-013-1371-z +Meirong Li,A Static Greedy and Dynamic Adaptive Thread Spawning Approach for Loop-Level Parallelism.,2014,29,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst29.html#LiZTW14,https://doi.org/10.1007/s11390-014-1482-1 +Yuanbo Guo,Practical Secret Sharing Scheme Realizing Generalized Adversary Structure.,2004,19,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst19.html#GuoM04,https://doi.org/10.1007/BF02944759 +Xing-Qi Huang,A Workflow Process Mining Algorithm Based on Synchro-Net.,2006,21,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst21.html#HuangWZZY06,https://doi.org/10.1007/s11390-006-0066-0 +Yongzhao Zhan,Demand Priority Protocol simulation and evaluation.,1999,14,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst14.html#ZhanSX99,https://doi.org/10.1007/BF02951881 +Pen-Chung Yew,Forword.,2005,20,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst20.html#YewX05,https://doi.org/10.1007/s11390-005-0575-2 +Chao Ni,A Cluster Based Feature Selection Method for Cross-Project Software Defect Prediction.,2017,32,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst32.html#NiLCGCH17,https://doi.org/10.1007/s11390-017-1785-0 +Jigui Sun,The global properties of valid formulas in modal logic K.,1996,11,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst11.html#SunCL96,https://doi.org/10.1007/BF02951625 +Kewen Wang,The least fixpoint transformation for disjunctive logic programs.,1998,13,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst13.html#WangCW98,https://doi.org/10.1007/BF02943187 +Jie Tang 0003,Pinned OS/Services: A Case Study of XML Parsing on Intel SCC.,2013,28,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst28.html#TangTLLGG13,https://doi.org/10.1007/s11390-013-1308-6 +Dianxiang Xu,Towards a declarative semantics of inheritance with exceptions.,1996,11,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst11.html#XuZ96,https://doi.org/10.1007/BF02943522 +Wei Wu,Building case-based preliminary design systems: A Hopfield network approach.,1994,9,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst9.html#WuZS94,https://doi.org/10.1007/BF02943580 +Ning Chen,A Fast Algorithm for Mining Sequential Patterns from Large Databases.,2001,16,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst16.html#NingAZL01,https://doi.org/10.1007/BF02948984 +Yueting Zhuang,OOADS: An object-oriented design model for advertising CAD system.,1996,11,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst11.html#ZhuangPH96,https://doi.org/10.1007/BF02947211 +Yungang Bao,Labeled von Neumann Architecture for Software-Defined Cloud.,2017,32,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst32.html#BaoW17,https://doi.org/10.1007/s11390-017-1716-0 +Matthew Hennessy,Process Calculi for describing distributed systems.,1998,13,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst13.html#Hennessy98,https://doi.org/10.1007/BF02946490 +Songmao Zhang,Weak precedence story parsing grammar.,1995,10,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst10.html#Zhang95,https://doi.org/10.1007/BF02939522 +Wei Li 0006,Real-time collision-free path planning for robots in configuration space.,1994,9,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst9.html#LiZJ94,https://doi.org/10.1007/BF02939485 +Rafael Messias Martins,Multidimensional Projections for Visual Analysis of Social Networks.,2012,27,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst27.html#MartinsAHPLPM12,https://doi.org/10.1007/s11390-012-1265-5 +Hua Lin,A direct approach for finding loop transformation matrices.,1996,11,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst11.html#LinLF96,https://doi.org/10.1007/BF02943132 +Yongcheng Li,A topological implementation for motion planning of a robotic arm.,1993,8,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst8.html#LiZ93,https://doi.org/10.1007/BF02946580 +Li Chen,An Efficient Approach for Solving Optimization over Linear Arithmetic Constraints.,2016,31,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst31.html#ChenWLW16,https://doi.org/10.1007/s11390-016-1675-x +Yihong Wu 0002,Degeneracy from Twisted Cubic Under Two Views.,2010,25,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst25.html#WuLH10,https://doi.org/10.1007/s11390-010-9376-3 +Hongxin Zhang 0001,Bernoulli Embedding Model and Its Application in Texture Mapping.,2006,21,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst21.html#ZhangTZB06,https://doi.org/10.1007/s11390-006-0199-1 +Vasileios Karyotis,Malware-Propagative Mobile Ad Hoc Networks: Asymptotic Behavior Analysis.,2008,23,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst23.html#KaryotisKP08,https://doi.org/10.1007/s11390-008-9141-z +,Preface.,2012,27,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst27.html#X12,https://doi.org/10.1007/s11390-012-1273-5 +Han-Bing Yan,3D Morphing Using Strain Field Interpolation.,2007,22,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst22.html#YanHM07,https://doi.org/10.1007/s11390-007-9020-z +Thomas Fang Zheng,Mandarin Pronunciation Modeling Based on CASS Corpus.,2002,17,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst17.html#FangZFB02,https://doi.org/10.1007/BF02947304 +Shitong Wang,Normalized exponential neural networks.,1998,13,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst13.html#Wang98,https://doi.org/10.1007/BF02946626 +Jicheng Wang,Distributed and Cooperative Information Retrieval on the World Wide Web.,2000,15,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst15.html#WangJXZ00,https://doi.org/10.1007/BF02948844 +Yixin Zhao,From Active to Passive - Progress in Testing Internet Routing Protocols.,2002,17,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst17.html#ZhaoWY02,https://doi.org/10.1007/BF02947305 +Guoping Wang,The Differential Equation Algorithm for General Deformed Swept Volumes.,2000,15,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst15.html#WangXS00,https://doi.org/10.1007/BF02948843 +Adelino Santos,Cooperative hypermedia editing with CoMEdiA.,1993,8,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst8.html#Santos93,https://doi.org/10.1007/BF02939533 +Jingzhou Yang,Real-Time Optimal Reach-Posture Prediction in a New Interactive Virtual Environment.,2006,21,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst21.html#YangMBAK06,https://doi.org/10.1007/s11390-006-0189-3 +Weisong Shi,Secure Application-Aware Service Differentiation in Public Area Wireless Networks.,2005,20,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst20.html#ShiSL05,https://doi.org/10.1007/s11390-005-0676-y +Bixin Li,Model for Slicing JAVA Programs Hierarchically.,2004,19,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst19.html#LiFPZ04,https://doi.org/10.1007/BF02973448 +Hao-Peng Lei,Automatic 3D Shape Co-Segmentation Using Spectral Graph Method.,2013,28,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst28.html#LeiLLS13,https://doi.org/10.1007/s11390-013-1387-4 +Fatemeh Azmandian,Harnessing the Power of GPUs to Speed Up Feature Selection for Outlier Detection.,2014,29,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst29.html#AzmandianYDAK14,https://doi.org/10.1007/s11390-014-1439-4 +Zhi Jin,The structure and semantics of an object-oriented logic programming language: SCKE.,1995,10,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst10.html#Jin95,https://doi.org/10.1007/BF02939524 +Haofeng Zhao,ARMiner: A Data Mining Tool Based on Association Rules.,2002,17,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst17.html#ZhaoZZS02,https://doi.org/10.1007/BF02948827 +Wenting Hou,FaSa: A Fast and Stable Quadratic Placement Algorithm.,2003,18,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst18.html#HouHWC03,https://doi.org/10.1007/BF02948901 +Yuzhong Qu,Denotational semantics of a simple model of Eiffel.,1995,10,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst10.html#QuWX95,https://doi.org/10.1007/BF02943489 +Jing Zhou,FloodNet: Coupling Adaptive Sampling with Energy Aware Routing in a Flood Warning System.,2007,22,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst22.html#ZhouR07,https://doi.org/10.1007/s11390-007-9017-7 +Zhenxue He,A Power and Area Optimization Approach of Mixed Polarity Reed-Muller Expression for Incompletely Specified Boolean Functions.,2017,32,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst32.html#HeXRGHQZZLW17,https://doi.org/10.1007/s11390-017-1723-1 +Shengqiang Li,Autocorrelation Values of New Generalized Cyclotomic Sequences of Order Two and Length pq.,2007,22,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst22.html#LiCFX07,https://doi.org/10.1007/s11390-007-9099-2 +Zhigang Jin,The Impact of Non-Gaussian Distribution Traffic on Network Performance.,2002,17,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst17.html#ZhigangYY02,https://doi.org/10.1007/BF02949831 +Pengyi Hao,Discriminative Histogram Intersection Metric Learning and Its Applications.,2017,32,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst32.html#HaoXLKC17,https://doi.org/10.1007/s11390-017-1740-0 +Shao-Ping Lu,Saliency-Based Fidelity Adaptation Preprocessing for Video Coding.,2011,26,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst26.html#LuZ10,https://doi.org/10.1007/s11390-011-9426-5 +Xuan Qi,Energy Efficient Block-Partitioned Multicore Processors for Parallel Applications.,2011,26,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst26.html#QiZ11,https://doi.org/10.1007/s11390-011-1144-5 +Pengpeng Zhao,A Generative Model Approach for Geo-Social Group Recommendation.,2018,33,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst33.html#ZhaoZLZLXZS18,https://doi.org/10.1007/s11390-018-1852-1 +Changjun Jiang,Behavior Relativity of Petri Nets.,2002,17,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst17.html#JiangWL02,https://doi.org/10.1007/BF02960767 +Zhaohui Zhu,Some Contributions to Nonmonotonic Consequence.,2001,16,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst16.html#ZhuZCW01,https://doi.org/10.1007/BF02948979 +Wen Qu,A Novel Approach Based on Multi-View Content Analysis and Semi-Supervised Enrichment for Movie Recommendation.,2013,28,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst28.html#QuSZFWY13,https://doi.org/10.1007/s11390-013-1376-7 +Hairong Kuang,A partial evaluator for a parallel lambda language.,1997,12,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst12.html#KuangSL97,https://doi.org/10.1007/BF02943176 +Yuhun Jun,Evaluation of Remote-I/O Support for a DSM-Based Computation Offloading Scheme.,2017,32,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst32.html#JunLS17,https://doi.org/10.1007/s11390-017-1775-2 +Raja Gunasekaran,A Distributed Mechanism for Handling of Adaptive/Intelligent Selfish Misbehaviour at MAC Layer in Mobile Ad Hoc Networks.,2009,24,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst24.html#GunasekaranUYSP09,https://doi.org/10.1007/s11390-009-9238-z +Jie Tian 0001,Fingerprint-Based Identity Authentication and Digital Media Protection in Network Environment.,2006,21,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst21.html#TianLY06,https://doi.org/10.1007/s11390-006-0861-7 +Sa'ed Abed,An Abstract Reachability Approach by Combining HOL Induction and Multiway Decision Graphs.,2009,24,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst24.html#AbedMS09,https://doi.org/10.1007/s11390-009-9205-8 +Xiaowei Li 0001,Perface.,2005,20,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst20.html#Li05,https://doi.org/10.1007/s11390-005-0145-7 +Ruihua Song,Learning Query Ambiguity Models by Using Search Logs.,2010,25,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst25.html#SongDHY10,https://doi.org/10.1007/s11390-010-9360-y +Ye-Kui Wang,AVS-M: From Standards to Applications.,2006,21,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst21.html#Wang06,https://doi.org/10.1007/s11390-006-0332-1 +Leonardo Liao,Hierarchical Polytope ARTMAP for Supervised Learning.,2010,25,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst25.html#LiaoWH10,https://doi.org/10.1007/s11390-010-9388-z +Yong Zhou,Constructing isosurfaces from 3D data sets taking account of depth sorting of polyhedra.,1994,9,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst9.html#ZhouT94,https://doi.org/10.1007/BF02939493 +Baowen Xu,Extracting Objects from Ada83 Programs: A Case Study.,2001,16,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst16.html#XuZ01,https://doi.org/10.1007/BF02943242 +Kai Liu,A Novel VLSI Architecture for Real-Time Line-Based Wavelet Transform Using Lifting Scheme.,2007,22,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst22.html#LiuWLW07,https://doi.org/10.1007/s11390-007-9087-6 +Yu Sun 0005,Logical Sentences as the Intent of Concepts.,2005,20,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst20.html#SunSX05,https://doi.org/10.1007/s11390-005-0338-0 +Hong-Ling Wang,Semantic Role Labeling of Chinese Nominal Predicates with Dependency-Driven Constituent Parse Tree Structure.,2013,28,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst28.html#WangZ13,https://doi.org/10.1007/s11390-013-1402-9 +Jie Yang 0002,Illumination Invariant Recognition of Three-Dimensional Texture in Color Images.,2005,20,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst20.html#YangA05,https://doi.org/10.1007/s11390-005-0378-5 +Ying Xu 0001,Computational Challenges in Deciphering Genomic Structures of Bacteria.,2009,25,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst25.html#Xu09a,https://doi.org/10.1007/s11390-010-9305-5 +Yongxi Cheng,Generating Combinations by Three Basic Operations.,2007,22,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst22.html#Cheng07,https://doi.org/10.1007/s11390-007-9094-7 +Liguo Yu,Component Dependency in Object-Oriented Software.,2007,22,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst22.html#YuR07,https://doi.org/10.1007/s11390-007-9058-y +Minzhe Zhao,Report from CSCWID'97.,1998,13,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst13.html#ZhaoL98,https://doi.org/10.1007/BF02946627 +Shizhu Liu,Text Classification Using Sentential Frequent Itemsets.,2007,22,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst22.html#LiuH07,https://doi.org/10.1007/s11390-007-9041-7 +Yi-Fei Chen,Uncertain Distance-Based Range Queries over Uncertain Moving Objects.,2010,25,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst25.html#ChenQL10,https://doi.org/10.1007/s11390-010-9382-5 +Caixia Zhang,A General Sufficient Condition of Four Positive Solutions of the P3P Problem.,2005,20,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst20.html#ZhangH05,https://doi.org/10.1007/s11390-005-0836-0 +Michele Garetto,Sensor Deployment and Relocation: A Unified Scheme.,2008,23,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst23.html#GarettoGCL08,https://doi.org/10.1007/s11390-008-9142-y +Bing Zhou,Metadata Feedback and Utilization for Data Deduplication Across WAN.,2016,31,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst31.html#ZhouW16,https://doi.org/10.1007/s11390-016-1650-6 +Mingwei Xu,A formal approach to protocol performance testing.,1999,14,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst14.html#XuW99,https://doi.org/10.1007/BF02952491 +Mei Li,MemSC: A Scan-Resistant and Compact Cache Replacement Framework for Memory-Based Key-Value Cache Systems.,2017,32,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst32.html#LiZWZ17,https://doi.org/10.1007/s11390-017-1705-3 +Qing Ai,Influences of Gate Operation Errors in the Quantum Counting Algorithm.,2006,21,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst21.html#AiLL06,https://doi.org/10.1007/s11390-006-0927-6 +Ke Chen,A parallel voting scheme for aspect recovery.,1995,10,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst10.html#ChenI95,https://doi.org/10.1007/BF02948335 +,Preface.,2013,28,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst28.html#X13,https://doi.org/10.1007/s11390-013-1340-6 +Wei Li 0022,Operational and Complete Approaches to Belief Revision.,2000,15,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst15.html#WeiL00,https://doi.org/10.1007/BF02948808 +Xinyu Wang 0001,TagCombine: Recommending Tags to Contents in Software Information Sites.,2015,30,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst30.html#WangXL15,https://doi.org/10.1007/s11390-015-1578-2 +Yuyan Chao,Inferring Solids Composed of Linear and Quadratic Surfaces from Incomplete Three Views.,2003,18,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst18.html#ChaoHI03,https://doi.org/10.1007/BF02948903 +Zhiyong Liu,Efficient realization of frequently used bijections on cube-connected cycles.,1995,10,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst10.html#LiuLZ95,https://doi.org/10.1007/BF02943499 +Ming Zhao,A line extraction algorithm for hand drawings.,1995,10,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst10.html#Zhao95,https://doi.org/10.1007/BF02939517 +Dawei Sun 0001,Modeling a Dynamic Data Replication Strategy to Increase System Availability in Cloud Computing Environments.,2012,27,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst27.html#SunCGJW12,https://doi.org/10.1007/s11390-012-1221-4 +Ning Gu,Design and Implementation of an Interoperable Object Platform for Multi-Databases.,2000,15,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst15.html#GuXS00,https://doi.org/10.1007/BF02948812 +Xiangke Liao,High Performance Interconnect Network for Tianhe System.,2015,30,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst30.html#LiaoPWLXXDS15,https://doi.org/10.1007/s11390-015-1520-7 +Huaixi Wang,Attribute-Based Signature with Policy-and-Endorsement Mechanism.,2010,25,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst25.html#WangZFY10,https://doi.org/10.1007/s11390-010-9406-1 +Jianxin Wang,Approximation Algorithm Based on Chain Implication for Constrained Minimum Vertex Covers in Bipartite Graphs.,2008,23,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst23.html#WangXC08,https://doi.org/10.1007/s11390-008-9180-5 +Changle Zhou,Computational Mechanisms for Metaphor in Languages: A Survey.,2007,22,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst22.html#ZhouYH07,https://doi.org/10.1007/s11390-007-9038-2 +Haiqin Wang,Document analysis by crosscount approach.,1998,13,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst13.html#WangD98,https://doi.org/10.1007/BF02946612 +Xin Tong,Hardware assisted fast volume rendering with boundary enhancement.,1998,13,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst13.html#TongT98,https://doi.org/10.1007/BF02948497 +Zhaoxuan Shen,Lower Bound Estimation of Hardware Resources for Scheduling in High-Level Synthesis.,2002,17,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst17.html#ShenC02,https://doi.org/10.1007/BF02960762 +Qingfang Chen,DLJ: A dynamic line-justification algorithm for test generation.,1993,8,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst8.html#ChenW93,https://doi.org/10.1007/BF02946589 +Xiaolong Zhang 0002,An efficient multiple predicate learner.,1998,13,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst13.html#ZhangN98,https://doi.org/10.1007/BF02943195 +Yu Gu 0003,Theoretical Treatment of Target Coverage in Wireless Sensor Networks.,2011,26,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst26.html#GuZJL10,https://doi.org/10.1007/s11390-011-9419-4 +Jianchao Zeng,A form-correcting system of Chinese characters using a model of correcting procedures of calligraphists.,1995,10,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst10.html#ZengHTX95,https://doi.org/10.1007/BF02939519 +Yao Jin,Stretch-Minimizing Volumetric Parameterization.,2015,30,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst30.html#JinQZCTZ15,https://doi.org/10.1007/s11390-015-1545-y +Dong-Yu Zheng,A 485ps 64-Bit Parallel Adder in 0.18mum CMOS.,2007,22,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst22.html#ZhengSLF07,https://doi.org/10.1007/s11390-007-9002-1 +Jingzhou Zhou,A neural network model based on logical operations.,1998,13,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst13.html#Zhou98,https://doi.org/10.1007/BF02948505 +Zhi Jin,SCKE: Combining logic- with object-oriented paradigm.,1993,8,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst8.html#JinH93,https://doi.org/10.1007/BF02946584 +Jian Dai,Context-Based Moving Object Trajectory Uncertainty Reduction and Ranking in Road Network.,2016,31,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst31.html#DaiDX16,https://doi.org/10.1007/s11390-016-1619-5 +Haoran Xie,Community-Aware Resource Profiling for Personalized Search in Folksonomy.,2012,27,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst27.html#XieLC12,https://doi.org/10.1007/s11390-012-1247-7 +Qiaohong Li,A Novel Spatial Pooling Strategy for Image Quality Assessment.,2016,31,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst31.html#LiFX16,https://doi.org/10.1007/s11390-016-1623-9 +Masayuki Hirayama,Analysis of Software Test Item Generation - Comparison Between High Skilled and Low Skilled Engineers.,2005,20,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst20.html#HirayamaMK05,https://doi.org/10.1007/s11390-005-0250-7 +Xishun Zhao,Fixed-Parameter Tractability of Disjunction-Free Default Reasoning.,2003,18,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst18.html#ZhaoD03,https://doi.org/10.1007/BF02946660 +Hong Mei,Development of Software Engineering: A Research Perspective.,2006,21,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst21.html#MeiCY06,https://doi.org/10.1007/s11390-006-0682-8 +Jeff Kramer,A Rigorous Architectural Approach to Adaptive Software Engineering.,2009,24,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst24.html#KramerM09,https://doi.org/10.1007/s11390-009-9216-5 +Hong Tang,Zip: An Algorithm Based on Loser Tree for Common Contacts Searching in Large Graphs.,2015,30,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst30.html#TangMHZCD15,https://doi.org/10.1007/s11390-015-1561-y +Duo Liu,Attack on Digital Multi-Signature Scheme Based on Elliptic Curve Cryptosystem.,2007,22,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst22.html#LiuLD07,https://doi.org/10.1007/s11390-007-9005-y +Weining Qian,Clustering in Very Large Databases Based on Distance and Density.,2003,18,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst18.html#QianGZ03,https://doi.org/10.1007/BF02946652 +Chiou-Yng Lee,Unified Parallel Systolic Multiplier Over GF(2m).,2007,22,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst22.html#LeeCCL07,https://doi.org/10.1007/s11390-007-9003-0 +Huiqun Yu,Completeness of the accumulation calculus.,1998,13,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst13.html#YuSS98,https://doi.org/10.1007/BF02946611 +Yong-Qiang Lv,Trusted Integrated Circuits: The Problem and Challenges.,2014,29,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst29.html#LvZCQ14,https://doi.org/10.1007/s11390-014-1479-9 +Bin Zhang,Modeling Consensus Semantics in Social Tagging Systems.,2011,26,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst26.html#ZhangZG11,https://doi.org/10.1007/s11390-011-0179-y +Yinjin Fu,Application-Aware Client-Side Data Reduction and Encryption of Personal Data in Cloud Backup Services.,2013,28,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst28.html#FuXLL13,https://doi.org/10.1007/s11390-013-1394-5 +Wei Sun 0003,Multi-Volume CAD Modeling for Heterogeneous Object Design and Fabrication.,2000,15,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst15.html#Sun00,https://doi.org/10.1007/BF02951924 +Fengxi Song,Facial Feature Extraction Method Based on Coefficients of Variances.,2007,22,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst22.html#SongZCY07,https://doi.org/10.1007/s11390-007-9070-2 +Wumo Pan,Guidelines for Creating a Rule-Based Knowledge Learning System and Their Application to a Chinese Business Card Layout Analysis.,2001,16,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst16.html#PanW01,https://doi.org/10.1007/BF02948852 +Xinde Li,Combination of Qualitative Information with 2-Tuple Linguistic Representation in DSmT.,2009,24,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst24.html#LiSDD09,https://doi.org/10.1007/s11390-009-9258-8 +Zhongding Jiang,A Super-Resolution Method with EWA - Elliptical Weighted Average.,2003,18,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst18.html#JiangLBM03,https://doi.org/10.1007/BF02945472 +Zhiyong Lai,Simulation and improvement of the processing subsystem of the Manchester dataflow computer.,1995,10,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst10.html#LaiZ95,https://doi.org/10.1007/BF02943513 +Yang Li,A Context-Aware Infrastructure for Supporting Applications with Pen-Based Interaction.,2003,18,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst18.html#LiGDRH03,https://doi.org/10.1007/BF02948904 +Mert Ozkaya,Visual Specification and Analysis of Contract-Based Software Architectures.,2017,32,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst32.html#Ozkaya17,https://doi.org/10.1007/s11390-017-1779-y +Ligang Liu,Preface.,2017,32,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst32.html#LiuX17,https://doi.org/10.1007/s11390-017-1788-x +Jiao Li,Notes on Liveness and Boundedness of Extended Strong Asymmetric Choice Nets II.,2001,16,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst16.html#LiW01,https://doi.org/10.1007/BF02948960 +Dong Xiang,GLOBAL: A design for random testability algorithm.,1994,9,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst9.html#XiangW94,https://doi.org/10.1007/BF02939500 +David Sankoff,Issues in the Reconstruction of Gene Order Evolution.,2009,25,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst25.html#SankoffZMYAWCZ09,https://doi.org/10.1007/s11390-010-9301-9 +Wei-Yi Liu,Fuzzy Association Degree with Delayed Time in Temporal Data Model.,2001,16,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst16.html#LiuLS01,https://doi.org/10.1007/BF02948856 +Yuesheng Qi,Genetic Programming with simple loops.,1999,14,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst14.html#QiWK99,https://doi.org/10.1007/BF02948747 +Chi-Ming Chung,A comparative analysis of different arbitration protocols for multiple-bus multiprocessors.,1996,11,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst11.html#ChungCY96,https://doi.org/10.1007/BF02943137 +Dianxun Shuai,Asynchronous superimposition mechanisms of concurrent competitve waves for hyper-distributed hyper-parallel heuristic problem solving.,1997,12,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst12.html#Shuai97,https://doi.org/10.1007/BF02943152 +Yong-Qin Huang,ArchSim: A System-Level Parallel Simulation Platform for the Architecture Design of High Performance Computer.,2009,24,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst24.html#HuangLXQHGZ09,https://doi.org/10.1007/s11390-009-9281-9 +Baile Shi,Bottom-up evaluation of datalog with negation.,1994,9,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst9.html#ShiZ94,https://doi.org/10.1007/BF02939504 +Jianping Song,An Optimal Multicast Algorithm for Cube-Connected Cycles.,2000,15,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst15.html#SongHY00,https://doi.org/10.1007/BF02948839 +Yong Li,Quantifying the Influence of Websites Based on Online Collective Attention Flow.,2015,30,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst30.html#LiZMW15,https://doi.org/10.1007/s11390-015-1592-4 +Yici Cai,Shielding Area Optimization Under the Solution of Interconnect Crosstalk.,2005,20,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst20.html#CaiZZH05,https://doi.org/10.1007/s11390-005-0901-8 +Qingshan Liu 0001,Kernel-Based Nonlinear Discriminant Analysis for Face Recognition.,2003,18,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst18.html#LiuHLM03,https://doi.org/10.1007/BF02945468 +Xiuli Sun,Operational Semantics and a Consistency Result for Real-Time Concurrent Processes with Action Refinement.,2004,19,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst19.html#SunZJ04,https://doi.org/10.1007/BF02973446 +Grant Dick,Spatially-Structured Sharing Technique for Multimodal Problems.,2008,23,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst23.html#DickW08,https://doi.org/10.1007/s11390-008-9110-6 +Yangjun Chen,On the arc consistency problem.,1999,14,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst14.html#Chen99,https://doi.org/10.1007/BF02948731 +Yu Hu,ACO-Steiner: Ant Colony Optimization Based Rectilinear Steiner Minimal Tree Algorithm.,2006,21,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst21.html#HuJFHHY06,https://doi.org/10.1007/s11390-006-0147-0 +Sumyea Helal,Subgroup Discovery Algorithms: A Survey and Empirical Evaluation.,2016,31,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst31.html#Helal16,https://doi.org/10.1007/s11390-016-1647-1 +Zhi-Hua Zhou,Rule Extraction: Using Neural Networks or for Neural Networks?,2004,19,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst19.html#Zhou04,https://doi.org/10.1007/BF02944803 +Wen Tian,Designing a Top-Level Ontology of Human Beings: A Multi-Perspective Approach.,2002,17,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst17.html#TianGC02,https://doi.org/10.1007/BF02948831 +Xunwei Wu,Design technique of I2L circuits based on multi-valued logic.,1996,11,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst11.html#WuH96,https://doi.org/10.1007/BF02943533 +Leo Van Hove,Metcalfe's Law and Network Quality: An Extension of Zhang et al.,2016,31,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst31.html#Hove16,https://doi.org/10.1007/s11390-016-1615-9 +Joonghyun Ryu,Connolly Surface on an Atomic Structure via Voronoi Diagram of Atoms.,2006,21,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst21.html#RyuPK06,https://doi.org/10.1007/s11390-006-0255-x +Farid Mheir-El-Saadi,An automatic hierarchical delay analysis tool.,1994,9,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst9.html#Mheir-El-SaadiK94,https://doi.org/10.1007/BF02943582 +Elena García Barriocanal,Social Network-Aware Interfaces as Facilitators of Innovation.,2012,27,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst27.html#BarriocanalSA12,https://doi.org/10.1007/s11390-012-1297-x +Che-Wei Chang,Data Transmission with the Battery Utilization Maximization.,2011,26,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst26.html#ChangZYCHKC11,https://doi.org/10.1007/s11390-011-1142-7 +Benjamin Sahelices,Effcient Handling of Lock Hand-off in DSM Multiprocessors with Buffering Coherence Controllers.,2012,27,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst27.html#FernandezDIYL12,https://doi.org/10.1007/s11390-012-1207-2 +Guofu Xie,Interactive Depth-of-Field Rendering with Secondary Rays.,2013,28,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst28.html#XieSW13,https://doi.org/10.1007/s11390-013-1350-4 +Jung-Min Yang,Tolerating Permanent State Transition Faults in Asynchronous Sequential Machines.,2016,31,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst31.html#Yang16,https://doi.org/10.1007/s11390-016-1677-8 +Zichao Xie,SWIP Prediction: Complexity-Effective Indirect-Branch Prediction Using Pointers.,2012,27,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst27.html#XieTHSC12,https://doi.org/10.1007/s11390-012-1262-8 +Xindong Wu,Inductive learning.,1993,8,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst8.html#Wu93,https://doi.org/10.1007/BF02939474 +Jianer Chen,On Unknown Small Subsets and Implicit Measures: New Techniques for Parameterized Algorithms.,2014,29,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst29.html#ChenF14,https://doi.org/10.1007/s11390-014-1474-1 +Pengpeng Chen,Collusion-Proof Result Inference in Crowdsourcing.,2018,33,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst33.html#ChenSFH18,https://doi.org/10.1007/s11390-018-1823-6 +Xinmin Tian,Compiling CIL rewriting language for multiprocessors.,1994,9,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst9.html#TianWZSL94,https://doi.org/10.1007/BF02943577 +Yuxi Fu,Semantics of Constructions (I) - The Traditional Approach.,2001,16,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst16.html#Fu01,https://doi.org/10.1007/BF02948849 +Guohui Li,Concept Framework for Audio Information Retrieval: ARF.,2003,18,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst18.html#LiWZ03,https://doi.org/10.1007/BF02947127 +Erik R. Altman,Preface.,2013,28,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst28.html#AltmanS13,https://doi.org/10.1007/s11390-013-1307-7 +Yong Peng,RSAD: A Robust Distributed Contention-Based Adaptive Mechanism for IEEE 802.11 Wireless LANs.,2005,20,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst20.html#PengCC05,https://doi.org/10.1007/s11390-005-0282-z +Jing Zhou,Enhancing Time Series Clustering by Incorporating Multiple Distance Measures with Semi-Supervised Learning.,2015,30,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst30.html#ZhouZHZ15,https://doi.org/10.1007/s11390-015-1565-7 +Zhengfeng Hou,A topology designing system for a computer network.,1998,13,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst13.html#Hou98,https://doi.org/10.1007/BF02946618 +Li Zhang,Improved FFSBM Algorithm and Its VLSI Architecture for AVS Video Standard.,2006,21,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst21.html#ZhangXW06,https://doi.org/10.1007/s11390-006-0378-0 +Huimin Lin,A Graphical mu-Calculus and Local Model Checking.,2002,17,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst17.html#Lin02,https://doi.org/10.1007/BF02960756 +Ling-Qiang Ran,Geometry Texture Synthesis Based on Laplacian Texture Image.,2010,25,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst25.html#RanM10,https://doi.org/10.1007/s11390-010-9349-6 +Hang Guo,Self-Switching Classification Framework for Titled Documents.,2009,24,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst24.html#GuoZF09,https://doi.org/10.1007/s11390-009-9262-z +Tiegeng Luo,Verifying automata specification of distributed probabilistic real-time systems.,1998,13,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst13.html#LuoCWWGQ98,https://doi.org/10.1007/BF02946502 +Yisong Chen,Greylevel Difference Classification Algorithm in Fractal Image Compression.,2002,17,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst17.html#ChenLSZ02,https://doi.org/10.1007/BF02962217 +Yongnan Liu,Determining the Real Data Completeness of a Relational Dataset.,2016,31,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst31.html#LiLZ16,https://doi.org/10.1007/s11390-016-1659-x +Qingsheng Hu,A distributed algorithm for multi-region problem in BEM.,1999,14,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst14.html#HuWZ99,https://doi.org/10.1007/BF02951875 +Caiming Zhang,Approaches for Constrained Parametric Curve Interpolation.,2003,18,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst18.html#ZhangYW03,https://doi.org/10.1007/BF02947118 +Feng Wu,Preface.,2006,21,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst21.html#WuS06,https://doi.org/10.1007/s11390-006-0305-4 +Wei-Sheng Si,RMAC: A Reliable MAC Protocol Supporting Multicast for Wireless Ad Hoc Networks.,2005,20,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst20.html#SiL05,https://doi.org/10.1007/s11390-005-0702-0 +Feng Ma,A multiscale approach to automatic medical image segmentation using self-organizing map.,1998,13,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst13.html#MaX98,https://doi.org/10.1007/BF02948498 +Jun Teng,A Fast Ambient Occlusion Method for Real-Time Plant Rendering.,2007,22,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst22.html#TengJH07,https://doi.org/10.1007/s11390-007-9104-9 +Xibei Yang,Hierarchical Structures on Multigranulation Spaces.,2012,27,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst27.html#YangQY12,https://doi.org/10.1007/s11390-012-1294-0 +Yueyue Chen,A Survey on Task and Participant Matching in Mobile Crowd Sensing.,2018,33,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst33.html#ChenLGZX18,https://doi.org/10.1007/s11390-018-1855-y +Jian-Hua Gao,Clausal Presentation of Theories in Deduction Modulo.,2013,28,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst28.html#Gao13,https://doi.org/10.1007/s11390-013-1399-0 +Xueqi Cheng,Using DragPushing to Refine Concept Index for Text Categorization.,2006,21,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst21.html#ChengTT06,https://doi.org/10.1007/s11390-006-0592-9 +Chun-Chao Guo,Raw Trajectory Rectification via Scene-Free Splitting and Stitching.,2015,30,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst30.html#GuoHLSC15,https://doi.org/10.1007/s11390-015-1529-y +Yuxi Fu,Semantics of Constructions (II) - The Initial Algebraic Approach.,2001,16,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst16.html#Fu01a,https://doi.org/10.1007/BF02950418 +Yun Li 0001,RWBO(pdw): A Novel Backoff Algorithm for IEEE 802.11 DCF.,2005,20,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst20.html#LiLZY05,https://doi.org/10.1007/s11390-005-0276-x +Weiwu Hu,A framework of memory consistency models.,1998,13,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst13.html#HuST98,https://doi.org/10.1007/BF02946600 +Changjie Tang,The Temporal mechanisms in HBase.,1996,11,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst11.html#TangX96,http://www.springerlink.com/content/f63r123247674462/ +Fang Chen,An approach to intelligent speech production system.,1997,12,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst12.html#ChenY97,https://doi.org/10.1007/BF02951338 +Jishen Zhao,BACH: A Bandwidth-Aware Hybrid Cache Hierarchy Design with Nonvolatile Memories.,2016,31,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst31.html#ZhaoXZ016,https://doi.org/10.1007/s11390-016-1609-7 +Yu Zang,Stroke Style Analysis for Painterly Rendering.,2013,28,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst28.html#Zang0L13,https://doi.org/10.1007/s11390-013-1375-8 +Dongxi Liu,An Attack-Finding Algorithm for Security Protocols.,2002,17,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst17.html#LiuLB02,https://doi.org/10.1007/BF02943285 +Wendy Hui Wang,Privacy-Preserving Data Sharing in Cloud Computing.,2010,25,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst25.html#Wang10,https://doi.org/10.1007/s11390-010-9333-1 +Li Yueping,Relaxation Algorithm of Piecing-Error for Sub-Images.,2001,16,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst16.html#YuepingT01,https://doi.org/10.1007/BF02943205 +Xiaojun Wan 0001,A New Retrieval Model Based on TextTiling for Document Similarity Search.,2005,20,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst20.html#WanP05,https://doi.org/10.1007/s11390-005-0552-9 +Kibum Kim,Assisting Visually Impaired People to Acquire Targets on a Large Wall-Mounted Display.,2014,29,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst29.html#KimR14,https://doi.org/10.1007/s11390-014-1471-4 +Shaobin Huang,Lazy Slicing for State-Space Exploration.,2012,27,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst27.html#HuangHCLZ12,https://doi.org/10.1007/s11390-012-1271-7 +Ian T. Foster,Globus Toolkit Version 4: Software for Service-Oriented Systems.,2006,21,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst21.html#Foster06,https://doi.org/10.1007/s11390-006-0513-y +Anzhen Zhang,CrowdOLA: Online Aggregation on Duplicate Data Powered by Crowdsourcing.,2018,33,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst33.html#ZhangLGCMB18,https://doi.org/10.1007/s11390-018-1824-5 +Li Chen 0019,Allocating Bandwidth in Datacenter Networks: A Survey.,2014,29,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst29.html#ChenLL14,https://doi.org/10.1007/s11390-014-1478-x +Weiyi Liu,A logical design method for relational databases based on generalization and aggregation semantics.,1997,12,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst12.html#LiuY97,https://doi.org/10.1007/BF02948975 +Zhixiong Chen,Pseudo-Randomness of Certain Sequences of k Symbols with Length pq.,2011,26,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst26.html#ChenDW11,https://doi.org/10.1007/s11390-011-9434-5 +Bin Zhang,Diagnosing Traffic Anomalies Using a Two-Phase Model.,2012,27,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst27.html#ZhangYWZ12,https://doi.org/10.1007/s11390-012-1225-0 +Takuma Kawamura,Level-of-Detail Rendering of Large-Scale Irregular Volume Datasets Using Particles.,2010,25,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst25.html#KawamuraSK10,https://doi.org/10.1007/s11390-010-9375-4 +Lei-Gen Cheng,CPA-VoD: Cloud and Peer-Assisted Video on Demand System for Mobile Devices.,2016,31,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst31.html#ChengCJ16,https://doi.org/10.1007/s11390-016-1684-9 +Jing Wu 0004,Improving Shape from Shading with Interactive Tabu Search.,2016,31,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst31.html#WuRSM16,https://doi.org/10.1007/s11390-016-1639-1 +En Wang,A Buffer Scheduling Method Based on Message Priority in Delay Tolerant Networks.,2016,31,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst31.html#WangYWL16,https://doi.org/10.1007/s11390-016-1694-7 +Guang-Ming Tan,Revisiting Multiple Pattern Matching Algorithms for Multi-Core Architecture.,2011,26,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst26.html#TanLBL11,https://doi.org/10.1007/s11390-011-0185-0 +Yin Zhang,Concurrent manipulation of expanded AVL trees.,1998,13,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst13.html#ZhangX98,https://doi.org/10.1007/BF02946622 +Zhuxing Zhao,Path sensitization.,1997,12,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst12.html#ZhaoML97,https://doi.org/10.1007/BF02948977 +Xianghui Xie,Limited Multiple-Writer: An Approach to Dealing with False Sharing in Software DSMs.,2000,15,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst15.html#XieH00,https://doi.org/10.1007/BF02950409 +David Zhang 0001,Online Palmprint Identification System for Civil Applications.,2005,20,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst20.html#ZhangLKW05,https://doi.org/10.1007/s11390-005-0008-2 +Jingyuan Zhao,Improved Linear Cryptanalysis of CAST-256.,2014,29,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst29.html#ZhaoWW14,https://doi.org/10.1007/s11390-014-1496-8 +Zhenyun Peng,Multi-Cue-Based Face and Facial Feature Detection on Video Segments.,2003,18,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst18.html#PengAHLX03,https://doi.org/10.1007/BF02948891 +Jing-Fa Liu,Quasi-Physical Algorithm of an Off-Lattice Model for Protein Folding Problem.,2007,22,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst22.html#LiuH07a,https://doi.org/10.1007/s11390-007-9067-x +Yongxin Tong,Mining Frequent Itemsets in Correlated Uncertain Databases.,2015,30,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst30.html#Tong0S15,https://doi.org/10.1007/s11390-015-1555-9 +Woo-Cheol Kim,CORE: Common Region Extension Based Multiple Protein Structure Alignment for Producing Multiple Solution.,2013,28,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst28.html#KimPW13,https://doi.org/10.1007/s11390-013-1365-x +Pei-Feng Li,Three-Layer Joint Modeling of Chinese Trigger Extraction with Constraints on Trigger and Argument Semantics.,2017,32,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst32.html#LiZ17,https://doi.org/10.1007/s11390-017-1780-5 +Zhenhua Duan,A Framed Temporal Logic Programming Language.,2004,19,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst19.html#DuanK04,https://doi.org/10.1007/BF02944904 +,CONTENTS.,2013,28,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst28.html#X13a,https://doi.org/10.1007/s11390-013-1403-8 +Shiqi Shen,Optimizing Non-Decomposable Evaluation Metrics for Neural Machine Translation.,2017,32,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst32.html#ShenLS17,https://doi.org/10.1007/s11390-017-1760-9 +Hui Li 0005,Social Influence Study in Online Networks: A Three-Level Review.,2015,30,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst30.html#LiCM15,https://doi.org/10.1007/s11390-015-1512-7 +Yun-Cen Huang,Feature-Adaptive Rendering of Loop Subdivision Surfaces on Modern GPUs.,2014,29,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst29.html#HuangFNCY14,https://doi.org/10.1007/s11390-014-1486-x +Michael Q. Zhang,Challenges in Understanding Genome-Wide DNA Methylation.,2009,25,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst25.html#ZhangS09,https://doi.org/10.1007/s11390-010-9302-8 +Muyun Yang,Improvement of Machine Translation Evaluation by Simple Linguistically Motivated Features.,2011,26,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst26.html#YangSZLZZ10,https://doi.org/10.1007/s11390-011-9415-8 +Jin-yi Cai,Progress in Computational Complexity Theory.,2005,20,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst20.html#CaiZ05,https://doi.org/10.1007/s11390-005-0735-4 +Xiaodong Gu,Deep Performance Analysis of Refined Harmonic Bin Packing Algorithm.,2002,17,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst17.html#GuCX02,https://doi.org/10.1007/BF02962214 +Qing Jiang,Two-Type Information Fusion Based IP-to-AS Mapping Table Refining.,2017,32,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst32.html#JiangHH17,https://doi.org/10.1007/s11390-017-1744-9 +Haofeng Zhou,PHC: A Fast Partition and Hierarchy-Based Clustering Algorithm.,2003,18,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst18.html#ZhouYCS03,https://doi.org/10.1007/BF02948913 +Zhong-Zhi Shi,Progress and Challenge of Artificial Intelligence.,2006,21,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst21.html#ShiZ06,https://doi.org/10.1007/s11390-006-0810-5 +Jiliang Zhang 0002,A Survey on Silicon PUFs and Recent Advances in Ring Oscillator PUFs.,2014,29,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst29.html#ZhangQLZ14,https://doi.org/10.1007/s11390-014-1458-1 +Salaheddin Odeh,Building Reusable Remote Labs with Adaptable Client User-Interfaces.,2010,25,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst25.html#Odeh10,https://doi.org/10.1007/s11390-010-9383-4 +Shimin Hu,A subdivision scheme for rational triangular Bézier surfaces.,1996,11,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst11.html#Hu96,https://doi.org/10.1007/BF02943517 +Li-Li Xu,Complete Proof Systems for Amortised Probabilistic Bisimulations.,2016,31,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst31.html#XuL16,https://doi.org/10.1007/s11390-016-1628-4 +Wen Gao 0001,BLOSSOMS: Building Lightweight Optimized Sensor Systems on a Massive Scale.,2005,20,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst20.html#GaoNXCCL05,https://doi.org/10.1007/s11390-005-0012-6 +Kyu-Yeul Lee,A Tracing Algorithm for Surface-Surface Intersections on Surface Boundaries.,2002,17,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst17.html#LeeCK02,https://doi.org/10.1007/BF02960775 +Jizhou Sun,A radiosity solution for curved surface environments.,1997,12,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst12.html#SunG97,https://doi.org/10.1007/BF02943174 +Hong-Jie Dai,New Challenges for Biological Text-Mining in the Next Decade.,2009,25,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst25.html#DaiCTH09,https://doi.org/10.1007/s11390-010-9313-5 +Haishui Xu,Performance of multicast communication on hypercubes.,1993,8,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst8.html#XuLN93,https://doi.org/10.1007/BF02939546 +Chengchun Shu,BEAP: An End-User Agile Programming Paradigm for Business Applications.,2006,21,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst21.html#ShuYL06,https://doi.org/10.1007/s11390-006-0609-4 +Feng Yi,Low-Complexity Tools in AVS Part 7.,2006,21,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst21.html#YiSDY06,https://doi.org/10.1007/s11390-006-0345-9 +Youcef Derbal,A Model of Grid Service Capacity.,2007,22,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst22.html#Derbal07,https://doi.org/10.1007/s11390-007-9074-y +Bangyu Wu,QoS Requirement Generation and Algorithm Selection for Composite Service Based on Reference Vector.,2009,24,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst24.html#WuCXGS09,https://doi.org/10.1007/s11390-009-9230-7 +Bo Zhang,The generation of a sort of fractal graphs.,1995,10,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst10.html#ZhangZC95,https://doi.org/10.1007/BF02948420 +Yisong Chen,Further Improvement on Dynamic Programming for Optimal Bit Allocation.,2003,18,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst18.html#ChenWD03,https://doi.org/10.1007/BF02946658 +Hong-Wei Tang,SR-MAC: A Low Latency MAC Protocol for Multi-Packet Transmissions in Wireless Sensor Networks.,2013,28,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst28.html#TangCLS13,https://doi.org/10.1007/s11390-013-1334-4 +Zhanyi Hu,Performance prediction of the hough transform.,1997,12,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst12.html#HuM97,https://doi.org/10.1007/BF02943144 +Yuping Zhang,An operational approach to belief revision.,1996,11,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst11.html#ZhangL96,https://doi.org/10.1007/BF02943526 +Xianhong Fang,Interprocedural constant range propagation and alias analysis by multiple version method.,1995,10,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst10.html#FangZQ95,https://doi.org/10.1007/BF02948336 +Rong Yang,Some Indices of Alphabet Overlap Graph.,2012,27,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst27.html#YangYZ12,https://doi.org/10.1007/s11390-012-1261-9 +Mohamed Abdel-Kawy Mohamed Ali Soliman,Linearly and Quadratically Separable Classifiers Using Adaptive Approach.,2011,26,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst26.html#SolimanA11,https://doi.org/10.1007/s11390-011-0188-x +Shi Yuntao,Study of General Incomplete Star Interconnection Networks.,2002,17,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst17.html#YuntaoHS02,https://doi.org/10.1007/BF02947314 +Yuhua Zheng,Full or-parallemism and restricted And-parallelism in BTM.,1994,9,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst9.html#ZhengXS94,https://doi.org/10.1007/BF02943584 +Guohua Jin,On the problem of optimizing parallel programs for complex memory hierarchies.,1994,9,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst9.html#JinC94,https://doi.org/10.1007/BF02939483 +Jianhui Li,Run-Time Data-Flow Analysis.,2002,17,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst17.html#LiZWZ02,https://doi.org/10.1007/BF02943284 +Weiwei Sun,On Efficient Aggregate Nearest Neighbor Query Processing in Road Networks.,2015,30,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst30.html#SunCZGJL15,https://doi.org/10.1007/s11390-015-1560-z +Gabriel Falcão Paiva Fernandes,Parallel LDPC Decoding on GPUs Using a Stream-Based Computing Approach.,2009,24,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst24.html#FernandesYSS09,https://doi.org/10.1007/s11390-009-9266-8 +Jie Tang 0001,Preface.,2015,30,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst30.html#TangZ15,https://doi.org/10.1007/s11390-015-1568-4 +Fan Zhang,Enlarging Image by Constrained Least Square Approach with Shape Preserving.,2015,30,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst30.html#ZhangZQZ15,https://doi.org/10.1007/s11390-015-1539-9 +Hao Qin,Variance Analysis and Adaptive Sampling for Indirect Light Path Reuse.,2016,31,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst31.html#QinSYHRZ16,https://doi.org/10.1007/s11390-016-1646-2 +Lixue Xia,Technological Exploration of RRAM Crossbar Array for Matrix-Vector Multiplication.,2016,31,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst31.html#XiaGLTYHYCWY16,https://doi.org/10.1007/s11390-016-1608-8 +Zengyou He,Squeezer: An Efficient Algorithm for Clustering Categorical Data.,2002,17,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst17.html#HeXD02,https://doi.org/10.1007/BF02948829 +Cheng Chen,The Best Answers? Think Twice: Identifying Commercial Campagins in the CQA Forums.,2015,30,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst30.html#ChenWSB15,https://doi.org/10.1007/s11390-015-1562-x +Cheng-Dong Jiang,Double Barrier Coverage in Dense Sensor Networks.,2008,23,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst23.html#JiangC08,https://doi.org/10.1007/s11390-008-9113-3 +Xi-Jin Zhang,Multi-Task Learning for Food Identification and Analysis with Deep Convolutional Neural Networks.,2016,31,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst31.html#ZhangLZ16,https://doi.org/10.1007/s11390-016-1642-6 +Thomas Weise 0001,Evolutionary Optimization: Pitfalls and Booby Traps.,2012,27,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst27.html#WeiseCT12,https://doi.org/10.1007/s11390-012-1274-4 +Chaveevan Pechsiri,Mining Causality for Explanation Knowledge from Text.,2007,22,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst22.html#PechsiriK07,https://doi.org/10.1007/s11390-007-9093-8 +Yuyue Du,Verifying Functions in Online Stock Trading Systems.,2004,19,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst19.html#DuJ04,https://doi.org/10.1007/BF02944798 +Guanqun Gu,Some Issues on Computer Networks: Architecture and Key Technologies.,2006,21,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst21.html#GuL06,https://doi.org/10.1007/s11390-006-0708-2 +Wu Jigang,Power Efficient Sub-Array in Reconfigurable VLSI Meshes.,2005,20,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst20.html#JigangS05,https://doi.org/10.1007/s11390-005-0647-3 +Bing Zhou,A Data Deduplication Framework of Disk Images with Adaptive Block Skipping.,2016,31,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst31.html#ZhouW16b,https://doi.org/10.1007/s11390-016-1665-z +Satoshi Matsuoka,Design and Implementation of NAREGI SuperScheduler Based on the OGSA Architecture.,2006,21,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst21.html#MatsuokaHNIOSN06,https://doi.org/10.1007/s11390-006-0521-y +Guangwen Yang,DSI: Distributed Service Integration for Service Grid.,2003,18,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst18.html#YangSWHL03,https://doi.org/10.1007/BF02948922 +Dian Zhou,Design and Verification of High-Speed VLSI Physical Design.,2005,20,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst20.html#ZhouL05,https://doi.org/10.1007/s11390-005-0147-5 +Linpeng Huang,Implementation of GAMMA on a massively parallel computer.,1997,12,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst12.html#HuangTNS97,https://doi.org/10.1007/BF02943142 +Xu Tan 0001,A Non-Stop Double Buffering Mechanism for Dataflow Architecture.,2018,33,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst33.html#TanSYWFZLZT18,https://doi.org/10.1007/s11390-017-1747-6 +Ozgur Sinanoglu,Efficient RT-Level Fault Diagnosis.,2005,20,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst20.html#SinanogluO05,https://doi.org/10.1007/s11390-005-0166-2 +Yong He,Semi-Online Scheduling with Machine Cost.,2002,17,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst17.html#HeC02,https://doi.org/10.1007/BF02960768 +Murat Ekinci,Human Gait Recognition Based on Kernel PCA Using Projections.,2007,22,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst22.html#EkinciA07,https://doi.org/10.1007/s11390-007-9101-z +Xiyang Liu,An Enhanced Drawing Reproduction Graphical Password Strategy.,2011,26,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst26.html#LiuGWC11,https://doi.org/10.1007/s11390-011-1195-7 +Kai Lu,Untrusted Hardware Causes Double-Fetch Problems in the I/O Memory.,2018,33,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst33.html#LuWLZ18,https://doi.org/10.1007/s11390-018-1842-3 +Camélia Constantin,AS-Index: A Structure for String Search Using n-Grams and Algebraic Signatures.,2016,31,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst31.html#ConstantinMLRS16,https://doi.org/10.1007/s11390-016-1618-6 +Xinyi Huang,Breaking and Repairing Trapdoor-Free Group Signature Schemes from Asiacrypt'2004.,2007,22,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst22.html#HuangSMZ07,https://doi.org/10.1007/s11390-007-9008-8 +Biao Qin,A Hybrid Distributed Optimistic Concurrency Control Method for High-Performance Real-Time Transaction Processing.,2003,18,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst18.html#QinL03,https://doi.org/10.1007/BF02946653 +Ruochen Liu,Clonal Strategy Algorithm Based on the Immune Memory.,2005,20,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst20.html#LiuJD05,https://doi.org/10.1007/s11390-005-0728-3 +Yongxin Tong,Towards Better Understanding of App Functions.,2015,30,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst30.html#TongS015,https://doi.org/10.1007/s11390-015-1588-0 +Lifeng He,I-Satchmore: An Improvement of A-SATCHMORE.,2003,18,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst18.html#HeCNI03,https://doi.org/10.1007/BF02948883 +Youran Lan,A dynamic load balancing mechanism for distributed systems.,1996,11,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst11.html#Lan96,https://doi.org/10.1007/BF02943129 +Yuan Chun,Constraint-Preserving Architecture Transformations: A Graph Rewriting Approach.,2001,16,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst16.html#ChunC01,https://doi.org/10.1007/BF02943244 +Bosheng Zhou,PCBA: A Priority-Based Competitive Broadcasting Algorithm in Mobile Ad Hoc Networks.,2003,18,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst18.html#ZhouWXZ03,https://doi.org/10.1007/BF02947119 +Yali Li,A Novel Similarity Measure to Induce Semantic Classes and Its Application for Language Model Adaptation in a Dialogue System.,2012,27,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst27.html#LiXY12,https://doi.org/10.1007/s11390-012-1233-0 +Yuyan Chao,An Improvement of Herbrand's Theorem and Its Application to Model Generation Theorem Proving.,2007,22,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst22.html#ChaoHNSSI07,https://doi.org/10.1007/s11390-007-9062-2 +Tao Jiang 0001,Some Algorithmic Challenges in Genome-Wide Ortholog Assignment.,2009,25,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst25.html#Jiang09,https://doi.org/10.1007/s11390-010-9304-6 +Xiang-Yang Gong,ERFC: An Enhanced Recursive Flow Classification Algorithm.,2010,25,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst25.html#GongWC10,https://doi.org/10.1007/s11390-010-9380-7 +Tiejun Huang,Basic Considerations on AVS DRM Architecture.,2006,21,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst21.html#HuangL06,https://doi.org/10.1007/s11390-006-0366-4 +Ying Wang 0009,Research on Trust Prediction from a Sociological Perspective.,2015,30,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst30.html#WangWZ15,https://doi.org/10.1007/s11390-015-1564-8 +Yu Zhou,On Participation Constrained Team Formation.,2017,32,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst32.html#ZhouHJS17,https://doi.org/10.1007/s11390-017-1710-6 +Jiajun Zhang,A Substitution-Translation-Restoration Framework for Handling Unknown Words in Statistical Machine Translation.,2013,28,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst28.html#ZhangZZ13,https://doi.org/10.1007/s11390-013-1386-5 +Ke Liu,Preface.,2014,29,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst29.html#LiuL14,https://doi.org/10.1007/s11390-014-1448-3 +Dianxun Shuai,Concurrent competitive wave approach to hyper-distributed hyper-parallel AI processing.,1997,12,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst12.html#Shuai97b,https://doi.org/10.1007/BF02947206 +Sanli Li,Madet - A machine-description table based instruction scheduler in TH-RISC for exploiting instruction level parallelism.,1994,9,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst9.html#LiF94,https://doi.org/10.1007/BF02939496 +Feng Jin,Guided Structure-Aware Review Summarization.,2011,26,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst26.html#JinHZ11,https://doi.org/10.1007/s11390-011-1167-y +Huaping Zhang,Computation on Sentence Semantic Distance for Novelty Detection.,2005,20,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst20.html#ZhangSWB05,https://doi.org/10.1007/s11390-005-0331-7 +Jin Huang 0007,Towards Progressive and Load Balancing Distributed Computation: A Case Study on Skyline Analysis.,2010,25,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst25.html#HuangZCPY10,https://doi.org/10.1007/s11390-010-9335-z +Huadong Ma,Multimedia data modeling based on temporal logic and XYZ System.,1999,14,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst14.html#MaL99,https://doi.org/10.1007/BF02946527 +Tieke He,PTM: A Topic Model for the Inferring of the Penalty.,2018,33,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst33.html#HeLQCL18,https://doi.org/10.1007/s11390-018-1854-z +Hailong Liu,Optimization Techniques for RFID Complex Event Processing.,2009,24,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst24.html#LiuCL09,https://doi.org/10.1007/s11390-009-9255-y +Yinshui Xia,Power Minimization of FPRM Functions Based on Polarity Conversion.,2003,18,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst18.html#XiaWA03,https://doi.org/10.1007/BF02948902 +Guoqing Wu,Requirements Specifications Checking of Embedded Real-Time Software.,2002,17,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst17.html#WuSWC02,https://doi.org/10.1007/BF02949825 +Yong Wu 0001,A Parallel Interval Computation Model for Global Optimization with Automatic Load Balancing.,2012,27,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst27.html#WuK12,https://doi.org/10.1007/s11390-012-1260-x +Lian Li,Fast theorem-proving and Wu's Method.,1999,14,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst14.html#LiW99,https://doi.org/10.1007/BF02948789 +Shengli Pan 0001,Identify Congested Links Based on Enlarged State Space.,2016,31,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst31.html#PanZZQH16,https://doi.org/10.1007/s11390-016-1631-9 +Hamid Mala,Impossible Differential Attacks on 13-Round CLEFIA-128.,2011,26,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst26.html#MalaDS11,https://doi.org/10.1007/s11390-011-1173-0 +Yi Yang,CUDA-NP: Realizing Nested Thread-Level Parallelism in GPGPU Applications.,2015,30,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst30.html#YangLZ15,https://doi.org/10.1007/s11390-015-1500-y +Xiaohui Wei,SCR Algorithm: Saving/Restoring States of File Systems.,2000,15,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst15.html#WeiJ00a,https://doi.org/10.1007/BF02948877 +Zhi-Hong Tao,Direct Model Checking Matrix Algorithm.,2006,21,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst21.html#TaoBW06,https://doi.org/10.1007/s11390-006-0944-5 +Yiqiang Ding,An improvement of GNY logic for the reflection attacks.,1999,14,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst14.html#Ding99,https://doi.org/10.1007/BF02951884 +Xiao-Hua Wang,Neural Network Algorithm for Designing FIR Filters Utilizing Frequency-Response Masking Technique.,2009,24,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst24.html#WangHL09,https://doi.org/10.1007/s11390-009-9237-0 +Weiyi Liu,Fuzzy Functional Dependencies and Bayesian Networks.,2003,18,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst18.html#LiuS03,https://doi.org/10.1007/BF02946651 +Bo Li 0006,A Fast Block-Matching Algorithm Using Smooth Motion Vector Field Adaptive Search Technique.,2003,18,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst18.html#LiLT03,https://doi.org/10.1007/BF02946646 +Ren-ji Tao,FAPKC3: A new finite automaton public key cryptosystem.,1997,12,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst12.html#TaoCC97,https://doi.org/10.1007/BF02943149 +Shuming Gao,Hierarchical geometric constraint model for parametric feature based modeling.,1997,12,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst12.html#GaoP97,https://doi.org/10.1007/BF02948969 +Wei Zhang,Automatic Colorization with Improved Spatial Coherence and Boundary Localization.,2017,32,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst32.html#ZhangFL17,https://doi.org/10.1007/s11390-017-1739-6 +Bin Sheng,Lumiproxy: A Hybrid Representation of Image-Based Models.,2009,24,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst24.html#ShengZWZ09,https://doi.org/10.1007/s11390-009-9247-y +Wei Hu,Reflection and Refraction on Implicit Surfaces.,2006,21,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst21.html#HuQWL06,https://doi.org/10.1007/s11390-006-0166-x +Xianchang Wang,On the relationship between TMS and logic programs.,1994,9,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst9.html#WangCZ94,https://doi.org/10.1007/BF02939505 +Tieyun Qian,Review Authorship Attribution in a Similarity Space.,2015,30,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst30.html#QianLLS15,https://doi.org/10.1007/s11390-015-1513-6 +Xue Zhang 0001,Scoped Bellman-Ford Geographic Routing for Large Dynamic Wireless Sensor Networks.,2008,23,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst23.html#ZhangHLXC08,https://doi.org/10.1007/s11390-008-9197-9 +Jianliang Xu,A Note on Non-Closure Property of Sublogarithmic Space-Bounded 1-Inkdot Alternating Pushdown Automata with Only Existential (Universal) States.,2006,21,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst21.html#XuLY06,https://doi.org/10.1007/s11390-006-0979-7 +Yong Peng,Performance Enhancement and Bandwidth Guarantee in IEEE 802.11 Wireless LANs.,2004,19,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst19.html#PengC04,https://doi.org/10.1007/BF02944792 +Vincent Le Chevalier,Simulation and Visualisation of Functional Landscapes: Effects of the Water Resource Competition Between Plants.,2007,22,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst22.html#ChevalierJMC07,https://doi.org/10.1007/s11390-007-9105-8 +Xiong Lv,RGB-D Hand-Held Object Recognition Based on Heterogeneous Feature Fusion.,2015,30,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst30.html#LvJHW15,https://doi.org/10.1007/s11390-015-1527-0 +Qing Cui,Global Optimization for Advertisement Selection in Sponsored Search.,2015,30,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst30.html#CuiBGL15,https://doi.org/10.1007/s11390-015-1523-4 +Su-Bin Shen,A Conceptual Model of Service Customization and Its Implementation.,2004,19,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst19.html#ShenGZ04,https://doi.org/10.1007/BF02944791 +Cungen Cao,Extracting and Sharing Knowledge from Medical Texts.,2002,17,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst17.html#Cao02,https://doi.org/10.1007/BF02947307 +Saiqa Aleem,Critical Success Factors to Improve the Game Development Process from a Developer's Perspective.,2016,31,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst31.html#AleemCA16,https://doi.org/10.1007/s11390-016-1673-z +Hossein Ajorloo,HBIR: Hypercube-Based Image Retrieval.,2012,27,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst27.html#AjorlooL12,https://doi.org/10.1007/s11390-012-1213-4 +Hong Mei,A Model-Based Approach to Object-Oriented Software Metrics.,2002,17,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst17.html#MeiXY02,https://doi.org/10.1007/BF02960766 +Xiaowei Li 0001,Exploiting Deterministic TPG for Path Delay Testing.,2000,15,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst15.html#LiC00a,https://doi.org/10.1007/BF02950411 +Yong He,A New Approximation Algorithm for Sorting of Signed Permutations.,2003,18,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst18.html#HeC03,https://doi.org/10.1007/BF02946661 +Nour El Houda Bahloul,A Flocking-Based on Demand Routing Protocol for Unmanned Aerial Vehicles.,2018,33,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst33.html#BahloulBAB18,https://doi.org/10.1007/s11390-018-1818-3 +Ruibing Hao,A formal approach to protocol interoperability testing.,1998,13,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst13.html#HaoW98,https://doi.org/10.1007/BF02946617 +Zhufei Chu,Cell Mapping for Nanohybrid Circuit Architecture Using Genetic Algorithm.,2012,27,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst27.html#ChuXW12,https://doi.org/10.1007/s11390-012-1210-7 +Juncheng Huang,A Semantic Searching Scheme in Heterogeneous Unstructured P2P Networks.,2011,26,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst26.html#HuangLW11,https://doi.org/10.1007/s11390-011-1190-z +Jin Ying,Constraint-Based Partial Evaluation for Imperative Languages.,2002,17,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst17.html#YingJ02,https://doi.org/10.1007/BF02949826 +Arianna D'Ulizia,Approximating Geographical Queries.,2009,24,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst24.html#DUliziaFFG09,https://doi.org/10.1007/s11390-009-9284-6 +Florian Diedrich,Approximation Algorithms for 3D Orthogonal Knapsack.,2008,23,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst23.html#DiedrichHJTT08,https://doi.org/10.1007/s11390-008-9170-7 +Yu Wen,Automated Power Control for Virtualized Infrastructures.,2014,29,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst29.html#WenWGM14,https://doi.org/10.1007/s11390-014-1494-x +Chaokun Wang,AbIx: An Approach to Content-Based Approximate Query Processing in Peer-to-Peer Data Systems.,2007,22,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst22.html#WangWSSG07,https://doi.org/10.1007/s11390-007-9035-5 +Thanh Binh Nguyen 0004,Multilevel Threshold Based Image Denoising in Curvelet Domain.,2010,25,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst25.html#BinhK10,https://doi.org/10.1007/s11390-010-9352-y +Fangguo Zhang,Selection of Secure Hyperelliptic Curves of g_2 Based on a Subfield.,2002,17,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst17.html#ZhangZW02,https://doi.org/10.1007/BF02960774 +Tian Fanjiang,Evolving Information Filtering for Personalized Information Service.,2001,16,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst16.html#FanjiangCD01,https://doi.org/10.1007/BF02950421 +Quan Zhou,A Configurable Circuit for Cross-Correlation in Real-Time Image Matching.,2017,32,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst32.html#ZhouYC17,https://doi.org/10.1007/s11390-017-1765-4 +Zheng Gong,TuLP: A Family of Lightweight Message Authentication Codes for Body Sensor Networks.,2014,29,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst29.html#GongHNTZ14,https://doi.org/10.1007/s11390-013-1411-8 +Jiaqi Wang,Kernel Projection Algorithm for Large-Scale SVM Problems.,2002,17,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst17.html#WangTW02,https://doi.org/10.1007/BF02948824 +Joo-Haeng Lee,Geometric Properties of Ribs and Fans of a Bézier Curve.,2006,21,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst21.html#LeeP06,https://doi.org/10.1007/s11390-006-0279-2 +Zichu Qi,Design for Testability Features of Godson-3 Multicore Microprocessor.,2011,26,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst26.html#QiLLH11,https://doi.org/10.1007/s11390-011-9437-2 +Qingshi Gao,Semantic Language and Multi-Language MT Approach Based on SL.,2003,18,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst18.html#GaoHLG03,https://doi.org/10.1007/BF02945475 +Subhashis Majumder,A New Classification of Path-Delay Fault Testability in Terms of Stuck-at Faults.,2004,19,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst19.html#MajumderBAB04,https://doi.org/10.1007/BF02973460 +Xiafen Zhang,Hierarchical Approximate Matching for Retrieval of Chinese Historical Calligraphy Character.,2007,22,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst22.html#ZhangZWW07,https://doi.org/10.1007/s11390-007-9077-8 +Junhao Zheng,An Efficient VLSI Architecture for Motion Compensation of AVS HDTV Decoder.,2006,21,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst21.html#ZhengDZX06,https://doi.org/10.1007/s11390-006-0370-8 +Wen-Yong Zhao,Lighting Estimation of a Convex Lambertian Object Using Redundant Spherical Harmonic Frames.,2013,28,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst28.html#ZhaoCZP13,https://doi.org/10.1007/s11390-013-1347-z +Wenli Cai,Composed scattering model for direct volume rendering.,1996,11,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst11.html#CaiS96,https://doi.org/10.1007/BF02947210 +Qiong Zou,Runtime Engine for Dynamic Profile Guided Stride Prefetching.,2008,23,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst23.html#ZouLZ08,https://doi.org/10.1007/s11390-008-9159-2 +Jehad Al-Dallal,Synthesizing Distributed Protocol Specifications from a UML State Machine Modeled Service Specification.,2012,27,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst27.html#Al-DallalS12,https://doi.org/10.1007/s11390-012-1293-1 +Ming Li 0017,Generating Symbolic Interpolants for Scattered Data with Normal Vectors.,2005,20,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst20.html#LiGC05,https://doi.org/10.1007/s11390-005-0861-z +Yong Guan,Leakage-Aware Modulo Scheduling for Embedded VLIW Processors.,2011,26,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst26.html#GuanX11,https://doi.org/10.1007/s11390-011-1143-6 +Fang Gu,Domain-Specific Ontology of Botany.,2004,19,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst19.html#GuCST04,https://doi.org/10.1007/BF02944802 +Yunfa Hu,Reduction of cycle unification of type Cpg+r.,1998,13,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst13.html#HuB98,https://doi.org/10.1007/BF02946610 +Naijun Zhan,An Intuitive Formal Proof for Deadline Driven Scheduler.,2001,16,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst16.html#Zhan01,https://doi.org/10.1007/BF02950419 +Jun Yin,Type-Aware Question Answering over Knowledge Base with Attention-Based Tree-Structured Neural Networks.,2017,32,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst32.html#YinZL17,https://doi.org/10.1007/s11390-017-1761-8 +Tao Huang 0001,Runtime Monitoring CompositeWeb Services Through Stateful Aspect Extension.,2009,24,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst24.html#HuangWW09,https://doi.org/10.1007/s11390-009-9225-4 +Chengde Zhang,A Novel Web Video Event Mining Framework with the Integration of Correlation and Co-Occurrence Information.,2013,28,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst28.html#ZhangWSP13,https://doi.org/10.1007/s11390-013-1377-6 +Wei Wang 0009,Extracting Frequent Connected Subgraphs from Large Graph Sets.,2004,19,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst19.html#WangYZHS04,https://doi.org/10.1007/BF02973450 +Ge Zhang,Parallel Error Detection for Leading Zero Anticipation.,2006,21,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst21.html#ZhangHQ06,https://doi.org/10.1007/s11390-006-0901-3 +Layuan Li,Studies on algorithms for self-stabilizing communication protocols.,1999,14,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst14.html#LiL99a,https://doi.org/10.1007/BF02951882 +Xiu-Feng Wan,Intrinsic Terminator Prediction and Its Application in Synechococcus sp. WH8102.,2005,20,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst20.html#WanX05,https://doi.org/10.1007/s11390-005-0465-7 +Wei Ding 0001,A traffic partition algorithm for switched LANs and its performance analysis.,1998,13,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst13.html#DingGY98,https://doi.org/10.1007/BF02943194 +Wei Lu,An Efficient Evaluation and Vector Generation Method for Observability-Enhanced Statement Coverage.,2005,20,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst20.html#LuYLL05,https://doi.org/10.1007/s11390-005-0875-6 +Manas Ranjan Kabat,A Heuristic Algorithm for Core Selection in Multicast Routing.,2011,26,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst26.html#KabatPT11,https://doi.org/10.1007/s11390-011-1192-x +Yuefeng Du,Content-Related Repairing of Inconsistencies in Distributed Data.,2016,31,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst31.html#DuSNKY16,https://doi.org/10.1007/s11390-016-1660-4 +Wu Yang 0001,Anomaly Detection in Microblogging via Co-Clustering.,2015,30,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst30.html#YangSWGYD15,https://doi.org/10.1007/s11390-015-1585-3 +Peng Jiang,Private Keyword-Search for Database Systems Against Insider Attacks.,2017,32,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst32.html#JiangMGW17,https://doi.org/10.1007/s11390-017-1745-8 +Yuefei Sui,Two Online Algorithms for the Ambulance Systems.,2001,16,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst16.html#Sui01,https://doi.org/10.1007/BF02950422 +Xundong Liang,Three-dimensional vector field visualization based on tensor decomposition.,1996,11,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst11.html#LiangLL96,https://doi.org/10.1007/BF02947212 +Wei Shen,Combined Cloud: A Mixture of Voluntary Cloud and Reserved Instance Marketplace.,2016,31,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst31.html#ShenDWTN16,https://doi.org/10.1007/s11390-016-1686-7 +Tao Ju,Fixing Geometric Errors on Polygonal Models: A Survey.,2009,24,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst24.html#Ju09,https://doi.org/10.1007/s11390-009-9206-7 +Hua Wei,Fault tolerance of reconfigurable bi-directional double-loop LANs.,1999,14,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst14.html#WeiLY99,https://doi.org/10.1007/BF02948740 +Rong-Fei Cao,A Parallel Markov Cerebrovascular Segmentation Algorithm Based on Statistical Model.,2016,31,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst31.html#CaoWWZL16,https://doi.org/10.1007/s11390-016-1634-6 +Shundong Li,Secure Two-Party Computational Geometry.,2005,20,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst20.html#LiD05,https://doi.org/10.1007/s11390-005-0258-z +Pierre-Louis Curien,Preface.,1998,13,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst13.html#CurienHL98,https://doi.org/10.1007/BF02946487 +Pisai Setthawong,Flood Avoidance Mechanisms for Bridged Resilient Packet Rings.,2008,23,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst23.html#SetthawongT08,https://doi.org/10.1007/s11390-008-9176-1 +Jing Jiang,Understanding Sybil Groups in the Wild.,2015,30,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst30.html#JiangSWZD15,https://doi.org/10.1007/s11390-015-1602-6 +Zhengding Lu,Coordinating Mobile Agents by the XML-Based Tuple Space.,2002,17,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst17.html#LuCL02,https://doi.org/10.1007/BF02960781 +Song Chen 0001,Fast Evaluation of Bounded Slice-Line Grid.,2004,19,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst19.html#ChenHDMCG04,https://doi.org/10.1007/BF02973462 +,Editorial: Moving Forward to Respond to Rapid Changes of Computer Science and Technology.,2014,29,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst29.html#X14,https://doi.org/10.1007/s11390-013-1406-5 +Mingjun Xiao,Leapfrog: Optimal Opportunistic Routing in Probabilistically Contacted Delay Tolerant Networks.,2009,24,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst24.html#XiaoHDLY09,https://doi.org/10.1007/s11390-009-9272-x +Shaoliang Peng,Scalable Base-Station Model-Based Multicast in Wireless Sensor Networks.,2008,23,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst23.html#PengLCPX08,https://doi.org/10.1007/s11390-008-9177-0 +Tian Liu 0001,A Note on Closeness between NP-Hard Sets and C=P.,2000,15,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst15.html#Liu00,https://doi.org/10.1007/BF02948804 +Dianxiang Xu,Aspect-Oriented Modeling and Verification with Finite State Machines.,2009,24,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst24.html#XuAXW09,https://doi.org/10.1007/s11390-009-9269-5 +Lengdong Wu,Survey of Large-Scale Data Management Systems for Big Data Applications.,2015,30,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst30.html#WuYY15,https://doi.org/10.1007/s11390-015-1511-8 +Aiqun Wang,Multiplicative inhibitory velocity detector and multi-velocity motion detection neural network model.,1998,13,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst13.html#WangZ98,https://doi.org/10.1007/BF02946613 +Yi Zhuang 0001,Composite Distance Transformation for Indexing and k -Nearest-Neighbor Searching in High-Dimensional Spaces.,2007,22,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst22.html#ZhuangZW07,https://doi.org/10.1007/s11390-007-9027-5 +Li Zhang,CSLabel: An Approach for Labelling Mobile App Reviews.,2017,32,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst32.html#ZhangHJH17,https://doi.org/10.1007/s11390-017-1784-1 +Zhenqiang Chen,Measuring Class Cohesion Based on Dependence Analysis.,2004,19,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst19.html#ChenXZ04,https://doi.org/10.1007/BF02973449 +Xiaotong Cui,Worst-Case Finish Time Analysis for DAG-Based Applications in the Presence of Transient Faults.,2016,31,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst31.html#CuiWWS16,https://doi.org/10.1007/s11390-016-1626-6 +Yangjun Chen,Graph traversal and top-down evaluation of logic queries.,1998,13,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst13.html#Chen98,https://doi.org/10.1007/BF02946620 +Fei Wu 0001,Multiple Hypergraph Clustering of Web Images by MiningWord2Image Correlations.,2010,25,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst25.html#WuHZ10,https://doi.org/10.1007/s11390-010-9362-9 +Zi-Mao Li,Approximation Algorithm for Bottleneck Steiner Tree Problem in the Euclidean Plane.,2004,19,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst19.html#LiZM04,https://doi.org/10.1007/BF02973441 +Yu-Xin Ma,A Visual Analysis Approach for Community Detection of Multi-Context Mobile Social Networks.,2013,28,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst28.html#MaXPZJQCP13,https://doi.org/10.1007/s11390-013-1378-5 +Warunika Ranaweera,ExquiMo: An Exquisite Corpse Tool for Collaborative 3D Shape Design.,2017,32,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst32.html#RanaweeraCCZ17,https://doi.org/10.1007/s11390-017-1789-9 +Yutao Liu,SplitPass: A Mutually Distrusting Two-Party Password Manager.,2018,33,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst33.html#LiuDXCZL18,https://doi.org/10.1007/s11390-018-1810-y +Ronghua Liang,New Algorithm for 3D Facial Model Reconstruction and Its Application in Virtual Reality.,2004,19,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst19.html#LiangPC04,https://doi.org/10.1007/BF02944751 +Zhiqing Shao,An algebraic characterization of inductive soundness in proof by consistency.,1995,10,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst10.html#ShaoS95,https://doi.org/10.1007/BF02943497 +Lei Ming,Improved Relevance Ranking in WebGather.,2001,16,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst16.html#MingJBX01,https://doi.org/10.1007/BF02948958 +Jie Wang,Agent-Oriented Probabilistic Logic Programming.,2006,21,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst21.html#WangJL06,https://doi.org/10.1007/s11390-006-0412-2 +Hui Wei,Ganglion-Based Balance Design of Multi-Layer Model and Its Watchfulness-Keeping.,2005,20,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst20.html#WeiL05,https://doi.org/10.1007/s11390-005-0567-2 +Jing Zhou,Building a Distributed Infrastructure for Scalable Triple Stores.,2009,24,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst24.html#ZhouHR09,https://doi.org/10.1007/s11390-009-9236-1 +Zhiguo Xiong,CX11: A Chinese language supporting interface for X window environment.,1995,10,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst10.html#XiongXD95,https://doi.org/10.1007/BF02939518 +Awadhesh Kumar Singh,Verifying Mutual Exclusion and Liveness Properties with Split Preconditions.,2004,19,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst19.html#SinghB04,https://doi.org/10.1007/BF02973442 +Zhimin Tang,A maximum time difference pipelined arithmetic unit based on CMOS gate array.,1995,10,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst10.html#TangX95,https://doi.org/10.1007/BF02948419 +Changjie Wang,Secure Web Transaction with Anonymous Mobile Agent over Internet.,2003,18,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst18.html#WangZW03,https://doi.org/10.1007/BF02946654 +Chang-Ji Wang,ID-Based Fair Off-Line Electronic Cash System with Multiple Banks.,2007,22,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst22.html#WangTL07,https://doi.org/10.1007/s11390-007-9055-1 +Chenglin Fan,On Some Proximity Problems of Colored Sets.,2014,29,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst29.html#FanLWZZ14,https://doi.org/10.1007/s11390-014-1475-0 +Yiqun Liu,Memory Efficient Two-Pass 3D FFT Algorithm for Intel® Xeon PhiTM Coprocessor.,2014,29,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst29.html#LiuLZZ14,https://doi.org/10.1007/s11390-014-1484-z +David C. Schwartz,New Generations: Sequencing Machines and Their Computational Challenges.,2009,25,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst25.html#SchwartzW09,https://doi.org/10.1007/s11390-010-9300-x +Shusheng Guo,A New ETL Approach Based on Data Virtualization.,2015,30,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst30.html#GuoYSY15,https://doi.org/10.1007/s11390-015-1524-3 +Yang Liu,Using Computational Intelligence Algorithms to Solve the Coalition Structure Generation Problem in Coalitional Skill Games.,2016,31,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst31.html#LiuZSYJ16,https://doi.org/10.1007/s11390-016-1688-5 +Shangmin Luan,Fast Algorithms for Revision of Some Special Propositional Knowledge Bases.,2003,18,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst18.html#LuanD03,https://doi.org/10.1007/BF02948909 +Jooil Lee,SUBic: A Scalable Unsupervised Framework for Discovering High Quality Biclusters.,2013,28,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst28.html#LeeJL13,https://doi.org/10.1007/s11390-013-1364-y +Jinyun Xue,Formal derivation of graph algorithmic programs using partition-and-recur.,1998,13,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst13.html#Xue98,https://doi.org/10.1007/BF02946498 +Yunlong Liu,Garbage collection in uncoordinated checkpointing algorithms.,1999,14,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst14.html#LiuC99,https://doi.org/10.1007/BF02948512 +Tao Xie 0001,Cooperative Software Testing and Analysis: Advances and Challenges.,2014,29,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst29.html#Xie0XXH14,https://doi.org/10.1007/s11390-014-1461-6 +Ming-Ming Cheng,Intelligent Visual Media Processing: When Graphics Meets Vision.,2017,32,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst32.html#ChengHZR17,https://doi.org/10.1007/s11390-017-1681-7 +Ling Zhang,Relationship Between Support Vector Set and Kernel Functions in SVM.,2002,17,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst17.html#ZhangZ02,https://doi.org/10.1007/BF02948823 +,Edge-Oriented Spatial Interpolation for Error Concealment of Consecutive Blocks.,2007,22,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst22.html#FuX07,https://doi.org/10.1007/s11390-007-9044-4 +Seyed Abolghasem Mirroshandel,Using Syntactic-Based Kernels for Classifying Temporal Relations.,2011,26,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst26.html#MirroshandelGK10,https://doi.org/10.1007/s11390-011-9416-7 +David de Frutos-Escrig,An invitation to friendly testing.,1998,13,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst13.html#Frutos-EscrigDN98,https://doi.org/10.1007/BF02946494 +Hafizur Rahaman,BIST Design for Detecting Multiple Stuck-Open Faults in CMOS Circuits Using Transition Count.,2002,17,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst17.html#RahamanDB02,https://doi.org/10.1007/BF02960763 +Feng Xu 0019,A Trust-Based Approach to Estimating the Confidence of the Software System in Open Environments.,2009,24,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst24.html#XuPL09,https://doi.org/10.1007/s11390-009-9231-6 +Cinzia Bernardeschi,SRAM-Based FPGA Systems for Safety-Critical Applications: A Survey on Design Standards and Proposed Methodologies.,2015,30,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst30.html#BernardeschiCD15,https://doi.org/10.1007/s11390-015-1530-5 +Xue-Hou Tan,Searching a Polygonal Region by a Boundary Searcher.,2009,24,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst24.html#Tan09,https://doi.org/10.1007/s11390-009-9241-4 +Shi-Min Hu,Preface.,2018,33,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst33.html#HuLS18,https://doi.org/10.1007/s11390-018-1828-1 +Jianguo Xu,GUIDS: A graphical user interface development system in UniECAD.,1994,9,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst9.html#XuW94,https://doi.org/10.1007/BF02943581 +Bo Yang 0003,A Secure Scalar Product Protocol Against Malicious Adversaries.,2013,28,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst28.html#YangYY13,https://doi.org/10.1007/s11390-013-1319-3 +Ben Leslie,User-Level Device Drivers: Achieved Performance.,2005,20,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst20.html#LeslieCFGGMPSEH05,https://doi.org/10.1007/s11390-005-0654-4 +Hui Chen,Gradient-Based Approach for Fine Registration of Panorama Images.,2004,19,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst19.html#Chen04,https://doi.org/10.1007/BF02945596 +Gaolin Fang,Incorporating Linguistic Structure into Maximum Entropy Language Models.,2003,18,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst18.html#FangWW03,https://doi.org/10.1007/BF02946662 +Junli Zhao,3D Face Similarity Measure by Fréchet Distances of Geodesics.,2018,33,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst33.html#ZhaoWPDLLWC18,https://doi.org/10.1007/s11390-018-1814-7 +Xin-Yu Ou,Objectness Region Enhancement Networks for Scene Parsing.,2017,32,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst32.html#OuLLLWL17,https://doi.org/10.1007/s11390-017-1751-x +Husheng Liao,An Action Analysis for Combining Partial Evaluation.,2000,15,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst15.html#Liao00,https://doi.org/10.1007/BF02948805 +Yueh-Yi Lai,Transition Texture Synthesis.,2008,23,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst23.html#LaiT08,https://doi.org/10.1007/s11390-008-9130-2 +Deqiang Wang,The twisted-cube connected networks.,1999,14,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst14.html#WangZ99a,https://doi.org/10.1007/BF02946526 +Yuxi Fu,Testing Congruence for Mobile Processes.,2002,17,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst17.html#Fu02,https://doi.org/10.1007/BF02949827 +Jianhua Feng,A Semantic Cache Framework for Secure XML Queries.,2008,23,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst23.html#FengLT08,https://doi.org/10.1007/s11390-008-9187-y +Zujie Ren,HAPS: Supporting Effective and Efficient Full-Text P2P Search with Peer Dynamics.,2010,25,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst25.html#RenCSCBL10,https://doi.org/10.1007/s11390-010-9339-8 +Fei Gao,Efficient Set-Correlation Operator Inside Databases.,2016,31,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst31.html#GaoSCW16,https://doi.org/10.1007/s11390-016-1657-z +Yong-Ji Wang,A Generalized Real-Time Obstacle Avoidance Method Without the Cspace Calculation.,2005,20,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst20.html#WangCTL05,https://doi.org/10.1007/s11390-005-0774-x +Ke Xu 0002,A Non-Collision Hash Trie-Tree Based Fast IP Classification Algorithm.,2002,17,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst17.html#XuWYX02,https://doi.org/10.1007/BF02962215 +Chunhong Pan,Parametric Tracking of Legs by Exploiting Intelligent Edge.,2004,19,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst19.html#PanYM04,https://doi.org/10.1007/BF02945594 +Wenfei Fan,Querying Big Data: Bridging Theory and Practice.,2014,29,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst29.html#FanH14,https://doi.org/10.1007/s11390-014-1473-2 +Ruiqi Lian,Automatic Generation of Interprocedural Data-Flow Analyzers and Optimizers.,2002,17,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst17.html#RuiqiZQ02,https://doi.org/10.1007/BF02960761 +Weiwu Hu,A lock-based cache coherence protocol for scope consistency.,1998,13,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst13.html#HuSTL98,https://doi.org/10.1007/BF02946599 +Jianwen Chen,A Novel MBAFF Scheme of AVS.,2006,21,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst21.html#ChenLH06,https://doi.org/10.1007/s11390-006-0323-2 +Sa'ed Abed,NuMDG: A New Tool for Multiway Decision Graphs Construction.,2011,26,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst26.html#AbedMMT10,https://doi.org/10.1007/s11390-011-9421-x +Wencheng Wang,View Dependent Sequential Point Trees.,2006,21,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst21.html#WangWW06,https://doi.org/10.1007/s11390-006-0181-y +Chenglian Peng,Combining gprof and event-driven monitoring for analyzing distributed programs: a rough view of NCSA mosaic.,1996,11,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst11.html#PengKHDS96,https://doi.org/10.1007/BF02948487 +Bo Yang 0003,Effective Error-Tolerant Keyword Search for Secure Cloud Computing.,2014,29,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst29.html#0003PDX14,https://doi.org/10.1007/s11390-014-1413-1 +Chong-Jia Ni,Automatic Prosodic Break Detection and Feature Analysis.,2012,27,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst27.html#NiZLX12,https://doi.org/10.1007/s11390-012-1295-z +Genjiang Zhu,NUAPC: A parallelizing compiler for C++.,1997,12,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst12.html#ZhuXS97,https://doi.org/10.1007/BF02943177 +Zhiwei Xu,Preface.,2005,20,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst20.html#Xu05,https://doi.org/10.1007/s11390-005-0001-9 +Yuehua Wang,Fault Tolerance and Recovery for Group Communication Services in Distributed Networks.,2012,27,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst27.html#WangZLW12,https://doi.org/10.1007/s11390-012-1224-1 +Jianrong Tan,A unified algorithm for finding the intersection curve of surfaces.,1994,9,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst9.html#TanZP94,https://doi.org/10.1007/BF02939492 +Weiyu Tang,Exploiting loop parallelism with redundant execution.,1997,12,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst12.html#TangSZZ97,https://doi.org/10.1007/BF02951329 +Xiaofeng Tao,GPP-Based Soft Base Station Designing and Optimization.,2013,28,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst28.html#TaoHWHG13,https://doi.org/10.1007/s11390-013-1343-3 +Jinyun Xue,Two new strategies for developing loop invariants and their applications.,1993,8,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst8.html#Xue93,https://doi.org/10.1007/BF02939477 +Xiaomin Hu,Orthogonal Methods Based Ant Colony Search for Solving Continuous Optimization Problems.,2008,23,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst23.html#HuZL08,https://doi.org/10.1007/s11390-008-9111-5 +Huai-Yu Li,Facial Image Attributes Transformation via Conditional Recycle Generative Adversarial Networks.,2018,33,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst33.html#LiDH18,https://doi.org/10.1007/s11390-018-1835-2 +Jiubin Ju,On-line predicting behaviors of jobs in dynamic load balancing.,1996,11,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst11.html#JuXY96,https://doi.org/10.1007/BF02943520 +Chengqing Zong,Preface.,2011,26,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst26.html#ZongU10,https://doi.org/10.1007/s11390-011-9409-6 +Weidong Zheng,A data manager for engineering applications.,1993,8,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst8.html#ZhengLG93,https://doi.org/10.1007/BF02939537 +Jun-Qiang Liu,Publishing Set-Valued Data Against Realistic Adversaries.,2012,27,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst27.html#Liu12,https://doi.org/10.1007/s11390-012-1203-6 +Li Li 0029,On Locating Malicious Code in Piggybacked Android Apps.,2017,32,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst32.html#LiLBKCLT17,https://doi.org/10.1007/s11390-017-1786-z +Pinyan Lu,Worst-Case Nash Equilibria in Restricted Routing.,2012,27,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst27.html#LuY12,https://doi.org/10.1007/s11390-012-1257-5 +Yanli Liu,Pores-Preserving Face Cleaning Based on Improved Empirical Mode Decomposition.,2009,24,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst24.html#LiuXGWDCP09,https://doi.org/10.1007/s11390-009-9245-0 +Adrian Atanasiu,A New Batch Verifying Scheme for Identifying Illegal Signatures.,2013,28,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst28.html#Atanasiu13,https://doi.org/10.1007/s11390-013-1318-4 +Fang Lu,Dynamic I/O-Aware Scheduling for Batch-Mode Applications on Chip Multiprocessor Systems of Cluster Platforms.,2014,29,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst29.html#LuC0LWFY14,https://doi.org/10.1007/s11390-013-1409-2 +Bo Yu,Minimum-Time Aggregation Scheduling in Duty-Cycled Wireless Sensor Networks.,2011,26,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst26.html#YuL11,https://doi.org/10.1007/s11390-011-1193-9 +Li Shen 0002,Fuzzy logic control ASIC chip.,1997,12,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst12.html#Shen97,https://doi.org/10.1007/BF02948976 +Gai-Tai Huang,Chinese Question-Answering System.,2004,19,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst19.html#HuangY04,https://doi.org/10.1007/BF02944749 +Philip Leroux,Performance Characterization of Game Recommendation Algorithms on Online Social Network Sites.,2012,27,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst27.html#LerouxDDT12,https://doi.org/10.1007/s11390-012-1248-6 +Yongyue Zhang,A multi-view face recognition system.,1997,12,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst12.html#ZhangPYX97,https://doi.org/10.1007/BF02943172 +Sheqin Dong,Deterministic VLSI Block Placement Algorithm Using Less Flexibility First Principle.,2003,18,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst18.html#DongHWG03,https://doi.org/10.1007/BF02945462 +Liang Yu,Timing-Sequence Testing of Parallel Programs.,2000,15,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst15.html#YuSZH00,https://doi.org/10.1007/BF02951930 +Guangxin Yang,oodOPT: A Semantics-Based Concurrency Control Framework for Fully-Replicated Architecture.,2001,16,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst16.html#YangS01,https://doi.org/10.1007/BF02943237 +Mo Chen,An Efficient Method for Cleaning Dirty-Events over Uncertain Data in WSNs.,2011,26,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst26.html#ChenYGJW11,https://doi.org/10.1007/s11390-011-1191-y +Ji-Dong Chen,Indexing Future Trajectories of Moving Objects in a Constrained Network.,2007,22,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst22.html#ChenM07,https://doi.org/10.1007/s11390-007-9031-9 +Riadh Robbana,Verification of Duration Systems Using an Approximation Approach.,2003,18,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst18.html#Robbana03,https://doi.org/10.1007/BF02948880 +Wei Hu 0004,Edit Propagation via Edge-Aware Filtering.,2012,27,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst27.html#HuDY12,https://doi.org/10.1007/s11390-012-1267-3 +Xiang Chen 0001,View-Aware Image Object Compositing and Synthesis from Multiple Sources.,2016,31,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst31.html#ChenXYZ16,https://doi.org/10.1007/s11390-016-1640-8 +Yuan Feng,Process Algebra Approach to Reasoning About Concurrent Actions.,2004,19,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst19.html#FengY04,https://doi.org/10.1007/BF02944906 +Wensheng Guo,Complete Boolean Satisfiability Solving Algorithms Based on Local Search.,2013,28,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst28.html#GuoYHS13,https://doi.org/10.1007/s11390-013-1326-4 +GuoQiang Peng,A Causal Model for Diagnostic Reasoning.,2000,15,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst15.html#GuoqiangH00,https://doi.org/10.1007/BF02948816 +Wei Peng,An approach to support IP multicasting in networks with mobile hosts.,1999,14,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst14.html#PengL99,https://doi.org/10.1007/BF02951872 +Mathu Soothana S. Kumar Retna Swami,Optimal Feature Extraction Using Greedy Approach for Random Image Components and Subspace Approach in Face Recognition.,2013,28,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst28.html#SwamiK13,https://doi.org/10.1007/s11390-013-1333-5 +Weiwu Hu,Dynamic Data Prefetching in Home-Based Software DSMs.,2001,16,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst16.html#HuZL01,https://doi.org/10.1007/BF02943201 +Dorde M. Durdevic,Domino Tiling: A New Method of Real-Time Conforming Mesh Construction for Rendering Changeable Height Fields.,2011,26,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst26.html#DurdevicT11,https://doi.org/10.1007/s11390-011-1194-8 +Yangyong Zhu,Techniques of integrating Datalog with PROLOG.,1997,12,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst12.html#ZhuGS97,https://doi.org/10.1007/BF02947204 +Dayou Liu,Necessary conditions of two-level Uncertainty Reasoning Model (URM) and the improvement on it.,1996,11,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst11.html#LiuZ96,https://doi.org/10.1007/BF02943532 +Yu Zhao,Synchronization-Oriented placement and retrieval strategies for delay-sensitive media streams.,1996,11,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst11.html#ZhaoSH96,https://doi.org/10.1007/BF02943530 +Zhigang Zhu,Neural networks for omni-view road image understanding.,1996,11,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst11.html#ZhuX96,https://doi.org/10.1007/BF02951620 +KwangJin Park,Broadcast-Based Spatial Queries.,2005,20,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst20.html#ParkSH05,https://doi.org/10.1007/s11390-005-0811-9 +Fei Tian,Learning Better Word Embedding by Asymmetric Low-Rank Projection of Knowledge Graph.,2016,31,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst31.html#TianGCL16,https://doi.org/10.1007/s11390-016-1651-5 +Zhigeng Pan,DGLa: A distributed graphics language.,1994,9,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst9.html#PanSH94,https://doi.org/10.1007/BF02939491 +Xiaoshan Li,Decidability of mean value calculus.,1999,14,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst14.html#Li99,https://doi.org/10.1007/BF02946525 +Guanghui Wang,Single View Based Measurement on Space Planes.,2004,19,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst19.html#WangHW04,https://doi.org/10.1007/BF02944907 +Maisam Mansub Bassiri,Configuration Reusing in On-Line Task Scheduling for Reconfigurable Computing Systems.,2011,26,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst26.html#BassiriS11,https://doi.org/10.1007/s11390-011-1147-2 +Shung Han Cho,Self Localization Method Using Parallel Projection Model for Mobile Sensor in Navigation Applications.,2009,24,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst24.html#ChoKHC09,https://doi.org/10.1007/s11390-009-9248-x +Bo Yuan,Coverage Optimization for Defect-Tolerance Logic Mapping on Nanoelectronic Crossbar Architectures.,2012,27,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst27.html#YuanL12,https://doi.org/10.1007/s11390-012-1278-0 +Jian Liu,Compact DC-DC converter for pocket micro-controller systems.,1996,11,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst11.html#LiuCZD96,https://doi.org/10.1007/BF02951624 +Wenmin Li,Flexible CP-ABE Based Access Control on Encrypted Data for Mobile Users in Hybrid Cloud System.,2017,32,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst32.html#LiLWZZ17,https://doi.org/10.1007/s11390-017-1776-1 +Jie Wu 0001,A Simple Fault-Tolerant Adaptive and Minimal Routing Approach in 3-D Meshes.,2003,18,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst18.html#Wu03,https://doi.org/10.1007/BF02946645 +Jing Zhu,A Site-Based Proxy Cache.,2003,18,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst18.html#ZhuYHS03,https://doi.org/10.1007/BF02948894 +Ling Zhang,A Quotient Space Approximation Model of Multiresolution Signal Analysis.,2005,20,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst20.html#ZhangZ05,https://doi.org/10.1007/s11390-005-0010-8 +Zheng Cao,An Intra-Server Interconnect Fabric for Heterogeneous Computing.,2014,29,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst29.html#CaoLLLWA14,https://doi.org/10.1007/s11390-014-1483-0 +San-Cheng Peng,Survivability Evaluation in Large-Scale Mobile Ad-Hoc Networks.,2009,24,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst24.html#PengJW09,https://doi.org/10.1007/s11390-009-9260-1 +Jin-Tao Meng,An Energy Efficient Clustering Scheme for Data Aggregation in Wireless Sensor Networks.,2013,28,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst28.html#MengYFW13,https://doi.org/10.1007/s11390-013-1356-y +Qiang Wang,Context-Based 2D-VLC Entropy Coder in AVS Video Coding Standard.,2006,21,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst21.html#WangZG06,https://doi.org/10.1007/s11390-006-0315-2 +Bo Lu,A skeleton-based approach of automatically generating some Chinese typefaces.,1996,11,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst11.html#LuC96,https://doi.org/10.1007/BF02943519 +Fang-Fang Dong,A New Gradient Fidelity Term for Avoiding Staircasing Effect.,2009,24,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst24.html#DongL09,https://doi.org/10.1007/s11390-009-9289-1 +Yue Kou,Combining Local Scoring and Global Aggregation to Rank Entities for Deep Web Queries.,2009,24,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst24.html#KouSYN09,https://doi.org/10.1007/s11390-009-9263-y +Min Liu 0001,An Efficient Handoff Decision Algorithm for Vertical Handoff Between WWAN and WLAN.,2007,22,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst22.html#LiuLG07,https://doi.org/10.1007/s11390-007-9016-8 +Fei Jiang,Microblog Sentiment Analysis with Emoticon Space Model.,2015,30,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst30.html#JiangLLSZZM15,https://doi.org/10.1007/s11390-015-1587-1 +Shan Wang,Searching Databases with Keywords.,2005,20,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst20.html#WangZ05,https://doi.org/10.1007/s11390-005-0006-4 +Gregory M. Nielson,Spherical Parameterization of Marching Cubes IsoSurfaces Based upon Nearest Neighbor Coordinates.,2009,24,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst24.html#NielsonZLH09,https://doi.org/10.1007/s11390-009-9201-z +Sheng-You Lin,A Markov Random Field Model-Based Approach to Natural Image Matting.,2007,22,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst22.html#LinS07,https://doi.org/10.1007/s11390-007-9022-x +Chao Wang,Spectral Animation Compression.,2015,30,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst30.html#WangLGZLD15,https://doi.org/10.1007/s11390-015-1544-z +Zhang Feng,OpenMP on Networks of Workstations for Software DSMs.,2002,17,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst17.html#FengCZ02,https://doi.org/10.1007/BF02949829 +Jun Yao,A Fine-Grained Runtime Power/Performance Optimization Method for Processors with Adaptive Pipeline Depth.,2011,26,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst26.html#YaoMST11,https://doi.org/10.1007/s11390-011-9436-3 +Moonki Jung,Integrated Framework for Vehicle Interior Design Using Digital Human Model.,2009,24,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst24.html#JungCRL09,https://doi.org/10.1007/s11390-009-9287-3 +Naijie Gu,Efficient Indirect All-to-All Personalized Communication on Rings and 2-D Tori.,2001,16,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst16.html#Naijie01,https://doi.org/10.1007/BF02948967 +Qiang Wu,Robust Feature Extraction for Speaker Recognition Based on Constrained Nonnegative Tensor Factorization.,2010,25,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst25.html#WuZS10,https://doi.org/10.1007/s11390-010-9365-6 +Dong-Rui Fan,New Methodologies for Parallel Architecture.,2011,26,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst26.html#FanLL11,https://doi.org/10.1007/s11390-011-1158-z +Qingguang Ji,Study on Strand Space Model Theory.,2003,18,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst18.html#JiQZF03,https://doi.org/10.1007/BF02947115 +Ming-Kuan Liu,Web Caching: A Way to Improve Web QoS.,2004,19,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst19.html#LiuWZ04,https://doi.org/10.1007/BF02944789 +Guojie Li,Preface.,1999,14,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst14.html#LiL99,https://doi.org/10.1007/BF02948784 +Wei Hu 0007,Bootstrapping Object Coreferencing on the Semantic Web.,2011,26,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst26.html#HuQS11,https://doi.org/10.1007/s11390-011-1166-z +Lei Zhao 0001,Resources Snapshot Model for Concurrent Transactions in Multi-Core Processors.,2013,28,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst28.html#ZhaoY13,https://doi.org/10.1007/s11390-013-1315-7 +Min Zhao,Tree Expressions for Information Systems.,2007,22,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst22.html#ZhaoHW07,https://doi.org/10.1007/s11390-007-9037-3 +Kaihuai Qin,Representing quadric surfaces using NURBS surfaces.,1997,12,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst12.html#Qin97a,https://doi.org/10.1007/BF02948971 +Qiang Liu,An Ontology-Based Approach for Semantic Conflict Resolution in Database Integration.,2007,22,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst22.html#LiuHLZ07,https://doi.org/10.1007/s11390-007-9028-4 +Chuang Lin,Research on Network Architecture with Trustworthiness and Controllability.,2006,21,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst21.html#LinP06,https://doi.org/10.1007/s11390-006-0732-2 +Xiaohui Wei,SFT: A Consistent Checkpointing Algorithm with Short Freezing Time.,2000,15,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst15.html#WeiJ00,https://doi.org/10.1007/BF02948801 +Michael Boyles,3DIVE: An Immersive Environment for Interactive Volume Data Exploration.,2003,18,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst18.html#BoylesF03,https://doi.org/10.1007/BF02946649 +Jian Pei,Preface.,2016,31,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst31.html#Pei16,https://doi.org/10.1007/s11390-016-1652-4 +Xiangyu Zhang,Roundtable: Research Opportunities and Challenges for Emerging Software Systems.,2015,30,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst30.html#ZhangZTWZ15,https://doi.org/10.1007/s11390-015-1572-8 +Ren-Jie He,Differential Evolution with Adaptive Mutation and Parameter Control Using Lévy Probability Distribution.,2012,27,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst27.html#HeY12,https://doi.org/10.1007/s11390-012-1283-3 +Jung-Tae Lee,Discovering High-Quality Threaded Discussions in Online Forums.,2014,29,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst29.html#LeeYR14,https://doi.org/10.1007/s11390-014-1446-5 +Xiao-Shan Gao,Automated generation of Kempe linkage and its complexity.,1999,14,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst14.html#GaoZ99,https://doi.org/10.1007/BF02948787 +Yong-Bin Li,Geometry Theorem Proving by Decomposing Polynomial Systems into Strong Regular Sets.,2004,19,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst19.html#LiLX04,https://doi.org/10.1007/BF02973445 +Shimin Hu,A type of triangular ball surface and its properties.,1998,13,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst13.html#HuWS98,https://doi.org/10.1007/BF02946615 +Xiaoqing Zheng,Dynamic Query Optimization Approach for Semantic Database Grid.,2006,21,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst21.html#ZhengCWM06,https://doi.org/10.1007/s11390-006-0597-4 +Juan A. Sánchez,Beacon-Less Geographic Routing in Real Wireless Sensor Networks.,2008,23,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst23.html#SanchezMR08,https://doi.org/10.1007/s11390-008-9145-8 +Chao Yan 0002,Outleir Analysis for Gene Expression Data.,2004,19,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst19.html#YanCS04,https://doi.org/10.1007/BF02944782 +Fu-Guo Zhang,Preventing Recommendation Attack in Trust-Based Recommender Systems.,2011,26,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst26.html#Zhang11a,https://doi.org/10.1007/s11390-011-0181-4 +Huanyu Zhao,H-Trust: A Group Trust Management System for Peer-to-Peer Desktop Grid.,2009,24,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst24.html#ZhaoL09,https://doi.org/10.1007/s11390-009-9275-7 +Seilendria A. Hadiwardoyo,An Intelligent Transportation System Application for Smartphones Based on Vehicle Position Advertising and Route Sharing in Vehicular Ad-Hoc Networks.,2018,33,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst33.html#HadiwardoyoPCCM18,https://doi.org/10.1007/s11390-018-1817-4 +Huijun Li,Architectural Design of a Cloud Robotic System for Upper-Limb Rehabilitation with Multimodal Interaction.,2017,32,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst32.html#LiS17,https://doi.org/10.1007/s11390-017-1720-4 +Kai Huang,Semisupervised Sparse Multilinear Discriminant Analysis.,2014,29,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst29.html#HuangZ14,https://doi.org/10.1007/s11390-014-1490-1 +Keping Long,Quantitative Adaptive RED in Differentiated Service Networks.,2003,18,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst18.html#LongWCC03,https://doi.org/10.1007/BF02948888 +KwangJin Park,Location-Based Data Dissemination for Spatial Queries in Wireless Broadcast Environments.,2010,25,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst25.html#ParkC10,https://doi.org/10.1007/s11390-010-9327-z +Chuang Lin,Stability Analysis of Buffer Priority Scheduling Policies Using Petri Nets.,2003,18,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst18.html#LinX03,https://doi.org/10.1007/BF02948897 +Dongmo Zhang,Default Reasoning and Belief Revision: A Syntax-Independent Approach.,2000,15,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst15.html#ZhangZC00,https://doi.org/10.1007/BF02950406 +Kaihuai Qin,Neural network methods for NURBS curve and surface interpolation.,1997,12,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst12.html#Qin97,https://doi.org/10.1007/BF02943147 +Katerina Asdre,P-Tree Structures and Event Horizon: Efficient Event-Set Implementations.,2006,21,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst21.html#AsdreN06,https://doi.org/10.1007/s11390-006-0019-7 +Mitat Poyraz,Higher-Order Smoothing: A Novel Semantic Smoothing Method for Text Classification.,2014,29,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst29.html#PoyrazKG14,https://doi.org/10.1007/s11390-014-1437-6 +Xite Wang,An Efficient Algorithm for Distributed Outlier Detection in Large Multi-Dimensional Datasets.,2015,30,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst30.html#WangSBNKY15,https://doi.org/10.1007/s11390-015-1596-0 +Sha Hu,Search Result Diversification Based on Query Facets.,2015,30,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst30.html#HuDWW15,https://doi.org/10.1007/s11390-015-1567-5 +Xiao Liang 0002,Texture Repairing by Unified Low Rank Optimization.,2016,31,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst31.html#LiangRZM16,https://doi.org/10.1007/s11390-016-1645-3 +Tao Xie 0001,Preface.,2016,31,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst31.html#Xie16,https://doi.org/10.1007/s11390-016-1667-x +Kangwoo Lee,Guiding Attention by Cooperative Cues.,2008,23,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst23.html#Lee08,https://doi.org/10.1007/s11390-008-9171-6 +Jingjie Liu,A Functional Sensing Model and a Case Study in Household Electricity Usage Sensing.,2014,29,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst29.html#LiuN14,https://doi.org/10.1007/s11390-014-1421-1 +Songde Ma,Segment based camera calibration.,1993,8,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst8.html#MaWH93,https://doi.org/10.1007/BF02946581 +Huiqun Yu,Hybridity in embedded computing systems.,1996,11,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst11.html#YuS96,https://doi.org/10.1007/BF02943525 +Feng Yu,Compressed Data Cube for Approximate OLAP Query Processing.,2002,17,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst17.html#YuW02,https://doi.org/10.1007/BF02948830 +Wen-Guang Chen,Preface.,2018,33,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst33.html#ChenS18,https://doi.org/10.1007/s11390-018-1837-0 +Shihong Xia,A Survey on Human Performance Capture and Animation.,2017,32,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst32.html#XiaGLYC17,https://doi.org/10.1007/s11390-017-1742-y +Ke-Li Cheng,A Linear Approach for Depth and Colour Camera Calibration Using Hybrid Parameters.,2016,31,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst31.html#ChengJTTCZ16,https://doi.org/10.1007/s11390-016-1641-7 +Sebastian Wallner,Micro-Task Processing in Heterogeneous Reconfigurable Systems.,2005,20,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst20.html#Wallner05,https://doi.org/10.1007/s11390-005-0624-x +Gao-Cai Wang,On Fault Tolerance of 3-Dimensional Mesh Networks.,2004,19,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst19.html#WangCW04,https://doi.org/10.1007/BF02944796 +Liu-Xin Zhang,Multiview Visibility Estimation for Image-Based Modeling.,2011,26,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst26.html#ZhangPJ11,https://doi.org/10.1007/s11390-011-1196-6 +Xuhua Liu,Generalized resolution and NC-resolution.,1994,9,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst9.html#LiuS94,https://doi.org/10.1007/BF02939497 +Yantao Jia,Learning to Predict Links by Integrating Structure and Interaction Information in Microblogs.,2015,30,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst30.html#JiaWC15,https://doi.org/10.1007/s11390-015-1563-9 +Jiaye Wang,A Sufficient Condition for a Wire-Frame Representing a Solid Modeling Uniquely.,2001,16,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst16.html#WangHW01,https://doi.org/10.1007/BF02943245 +Shi-Min Hu,Preface.,2016,31,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst31.html#HuLM16,https://doi.org/10.1007/s11390-016-1637-3 +Ai-Bo Song,Discovering User Profiles for Web Personalized Recommendation.,2004,19,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst19.html#SongZL04,https://doi.org/10.1007/BF02944902 +Hongmei Zhang,A Novel Multiresolution Fuzzy Segmentation Method on MR Image.,2003,18,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst18.html#ZhangBYYJ03,https://doi.org/10.1007/BF02947126 +Yihong Gao,Minimizing Resource Cost for Camera Stream Scheduling in Video Data Center.,2017,32,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst32.html#GaoML17,https://doi.org/10.1007/s11390-017-1743-x +K. Robert Lai,Constraint-Based Fuzzy Models for an Environment with Heterogeneous Information-Granules.,2006,21,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst21.html#LaiC06,https://doi.org/10.1007/s11390-006-0401-5 +Shaoliang Peng,Estimation of a Population Size in Large-Scale Wireless Sensor Networks.,2009,24,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst24.html#PengLLPX09,https://doi.org/10.1007/s11390-009-9273-9 +Jun Yao,Distributed Storage Cluster Design for Remote Mirroring Based on Storage Area Network.,2007,22,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst22.html#YaoSZ07,https://doi.org/10.1007/s11390-007-9075-x +Bo Yi,Intuitive minimal abduction in sequent calculi.,1998,13,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst13.html#YiTCC98,https://doi.org/10.1007/BF02943189 +Cheng Cheng,Construction of Feature-Matching Perception in Virtual Assembly.,2003,18,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst18.html#ChengWD03,https://doi.org/10.1007/BF02948881 +Huimin Cui,Landing Stencil Code on Godson-T.,2010,25,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst25.html#CuiWFF10,https://doi.org/10.1007/s11390-010-9373-6 +Tieqing Deng,A new integrated system of logic programming and relational database.,1993,8,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst8.html#DengWW93,https://doi.org/10.1007/BF02946586 +Qin Liu 0001,Effective Query Grouping Strategy in Clouds.,2017,32,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst32.html#LiuGWW17,https://doi.org/10.1007/s11390-017-1797-9 +Xiaofen Lu,Classification- and Regression-Assisted Differential Evolution for Computationally Expensive Problems.,2012,27,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst27.html#LuT12,https://doi.org/10.1007/s11390-012-1282-4 +Fred S. Roberts,The Challenges of Multidisciplinary Education in Computer Science.,2011,26,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst26.html#Roberts11,https://doi.org/10.1007/s11390-011-1164-1 +Zhihong Chong,Efficient Computation of k-Medians over Data Streams Under Memory Constraints.,2006,21,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst21.html#ChongYZLWZ06,https://doi.org/10.1007/s11390-006-0284-5 +Zhuo Li 0003,Delay and Capacity Trade-offs in Mobile Wireless Networks with Infrastructure Support.,2012,27,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst27.html#LiLGLC12,https://doi.org/10.1007/s11390-012-1226-z +Jie Wu 0001,Reliable communication on cube-based multicomputers.,1996,11,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst11.html#Wu96,https://doi.org/10.1007/BF02943130 +Dianxiang Xu,Logical object as a basis of knowledge based systems.,1995,10,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst10.html#XuZ95,https://doi.org/10.1007/BF02948338 +Tianzhu Li,Object identity in database systems.,1995,10,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst10.html#Li95b,https://doi.org/10.1007/BF02943506 +Hui Hui,Sequential back-propagation.,1994,9,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst9.html#HuiLW94,https://doi.org/10.1007/BF02939506 +Ruqian Lu,Towards a Mathematical Theory of Knowledge.,2005,20,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst20.html#Lu05,https://doi.org/10.1007/s11390-005-0751-4 +Giuseppe Lancia,Integer Programming Models for Computational Biology Problems.,2004,19,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst19.html#Lancia04,https://doi.org/10.1007/BF02944785 +Zichao Xie,A General Low-Cost Indirect Branch Prediction Using Target Address Pointers.,2014,29,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst29.html#XieTH14,https://doi.org/10.1007/s11390-014-1480-3 +Fang Zheng,Cooperative Computing Techniques for a Deeply Fused and Heterogeneous Many-Core Processor Architecture.,2015,30,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst30.html#ZhengLLGXX15,https://doi.org/10.1007/s11390-015-1510-9 +Xiang Zhang,Summarizing Vocabularies in the Global Semantic Web.,2009,24,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst24.html#ZhangCGQ09,https://doi.org/10.1007/s11390-009-9212-9 +Chen Wang,A framework of auto-adapting distributed object for mobile computing.,1999,14,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst14.html#WangZZ99,https://doi.org/10.1007/BF02951880 +Yuxi Fu,Relative properties of frame language.,1999,14,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst14.html#Fu99,https://doi.org/10.1007/BF02948734 +Haihua Li,A Review-Based Reputation Evaluation Approach for Web Services.,2009,24,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst24.html#LiDT09,https://doi.org/10.1007/s11390-009-9280-x +Huifeng Sun,JacUOD: A New Similarity Measurement for Collaborative Filtering.,2012,27,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst27.html#SunCYLPCC12,https://doi.org/10.1007/s11390-012-1301-5 +Yan-Hui Ding,2D Correlative-Chain Conditional Random Fields for Semantic Annotation of Web Objects.,2010,25,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst25.html#DingLDP10,https://doi.org/10.1007/s11390-010-9363-8 +Qin Zhang,Dynamic Uncertain Causality Graph for Knowledge Representation and Reasoning: Discrete DAG Cases.,2012,27,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst27.html#Zhang12,https://doi.org/10.1007/s11390-012-1202-7 +Fan Liang,Accelerating Iterative Big Data Computing Through MPI.,2015,30,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst30.html#LiangL15,https://doi.org/10.1007/s11390-015-1522-5 +Ping Hou,Some Representation Theorems for Recovering Contraction Relations.,2005,20,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst20.html#Hou05,https://doi.org/10.1007/s11390-005-0536-9 +Kai-Yuan Cui,Relation Enhanced Neural Model for Type Classification of Entity Mentions with a Fine-Grained Taxonomy.,2017,32,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst32.html#CuiRCLM17,https://doi.org/10.1007/s11390-017-1762-7 +Maoguo Gong,Community Detection in Dynamic Social Networks Based on Multiobjective Immune Algorithm.,2012,27,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst27.html#GongZMJ12,https://doi.org/10.1007/s11390-012-1235-y +Jia Chen,Effective and Efficient Multi-Facet Web Image Annotation.,2012,27,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst27.html#ChenZWJY12,https://doi.org/10.1007/s11390-012-1242-z +Kaihuai Qin,A new local control spline with shape parameters for CAD/CAM.,1993,8,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst8.html#QinS93,https://doi.org/10.1007/BF02939535 +Bin Sheng,MCGIM-Based Model Streaming for Realtime Progressive Rendering.,2011,26,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst26.html#ShengMSW10,https://doi.org/10.1007/s11390-011-9423-8 +Wei Luo,Parameter-Free Search of Time-Series Discord.,2013,28,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst28.html#LuoGW13,https://doi.org/10.1007/s11390-013-1330-8 +Peter M. Haverty,Transcriptional Regulatory Networks Activated by PI3K and ERK Transduced Growth Signals in Human Glioblastoma Cells.,2005,20,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst20.html#HavertyWH05,https://doi.org/10.1007/s11390-005-0439-9 +Ju Qian,Prioritizing Test Cases for Memory Leaks in Android Applications.,2016,31,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst31.html#QianZ16,https://doi.org/10.1007/s11390-016-1670-2 +Abdil Rashid Mohamed,A Wiring-Aware Approach to Minimizing Built-In Self-Test Overhead.,2005,20,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst20.html#MohamedPE05,https://doi.org/10.1007/s11390-005-0216-9 +Yongjun Xu,Leakage Current Estimation of CMOS Circuit with Stack Effect.,2004,19,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst19.html#XuLLLH04,https://doi.org/10.1007/BF02945598 +Weiwu Hu,High Performance General-Purpose Microprocessors: Past and Future.,2006,21,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst21.html#HuHXZ06,https://doi.org/10.1007/s11390-006-0631-6 +Mingdong Zhu,A Framework for Supporting Tree-Like Indexes on the Chord Overlay.,2013,28,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst28.html#ZhuSKNY13,https://doi.org/10.1007/s11390-013-1391-8 +Tao Jiang 0010,Adapting Memory Hierarchies for Emerging Datacenter Interconnects.,2015,30,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst30.html#JiangHDCMTZS15,https://doi.org/10.1007/s11390-015-1507-4 +Guoliang Li,An Effective Semantic Cache for Exploiting XPath Query/View Answerability.,2010,25,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst25.html#LiF10,https://doi.org/10.1007/s11390-010-9328-y +Wei-Qiang Xu,TCP Issues in Mobile Ad Hoc Networks: Challenges and Solutions.,2006,21,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst21.html#XuW06,https://doi.org/10.1007/s11390-006-0072-2 +Jun He 0004,Time Complexity Analysis of an Evolutionary Algorithm for Finding Nearly Maximum Cardinality Matching.,2004,19,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst19.html#HeY04,https://doi.org/10.1007/BF02944746 +Byron Choi,Updating Recursive XML Views of Relations.,2008,23,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst23.html#ChoiCFV08,https://doi.org/10.1007/s11390-008-9150-y +Hsien-Hsi Hsieh,Novel Geometrical Voxelization Approach with Application to Streamlines.,2010,25,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst25.html#HsiehCTS10,https://doi.org/10.1007/s11390-010-9374-5 +Francesc Giné,Cooperating CoScheduling: A Coscheduling Proposal Aimed at Non-Dedicated Heterogeneous NOWs.,2007,22,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst22.html#GineSHHL07,https://doi.org/10.1007/s11390-007-9082-y +Carlo Batini,A Clustering Algorithm for Planning the Integration Process of a Large Number of Conceptual Schemas.,2015,30,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst30.html#BatiniBCDPS15,https://doi.org/10.1007/s11390-015-1514-5 +Jiwen Guan,General algorithms for Barnett's structure in evidential reasoning.,1995,10,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst10.html#GuanB95,https://doi.org/10.1007/BF02943510 +Zhenbao Liu,A Survey on Partial Retrieval of 3D Shapes.,2013,28,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst28.html#LiuBZGHW13,https://doi.org/10.1007/s11390-013-1382-9 +Meilin Shi,Towards a Uniform Cooperative Platform: Cova Approach and Experience.,2003,18,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst18.html#ShiJ03,https://doi.org/10.1007/BF02948924 +Jinhui Shan,Improved Method to Generate Path-Wise Test Data.,2003,18,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst18.html#ShanWQW03,https://doi.org/10.1007/BF02948890 +Guoyong Huang,TSP: A heterogeneous multiprocessor supercomputing system based on i860XP.,1994,9,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst9.html#HuangL94a,https://doi.org/10.1007/BF02939510 +Jianhui Jiang,Fault-Tolerant Systems with Concurrent Error-Locating Capability.,2003,18,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst18.html#JiangMP03,https://doi.org/10.1007/BF02948884 +José Alberto Fernández-Zepeda,A Two-Player Coalition Cooperative Scheme for the Bodyguard Allocation Problem.,2018,33,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst33.html#Fernandez-Zepeda18,https://doi.org/10.1007/s11390-018-1858-8 +Ren-ji Tao,Input-Trees of Finite Automata and Application to Cryptanalysis.,2000,15,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst15.html#TaoC00a,https://doi.org/10.1007/BF02948867 +Xiaofang Zhou,Preface.,2018,33,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst33.html#ZhouY18,https://doi.org/10.1007/s11390-018-1844-1 +Jing Gu,A new parallel-by-cell approach to undistorted data compression based on cellular automaton and genetic algorithm.,1999,14,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst14.html#GuS99,https://doi.org/10.1007/BF02951877 +Yu Jiang,Techniques for Determining the Geographic Location of IP Addresses in ISP Topology Measurement.,2005,20,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst20.html#JiangFHC05,https://doi.org/10.1007/s11390-005-0689-6 +Qing Zhang,On the Modeling of Honest Players in Reputation Systems.,2009,24,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst24.html#ZhangWY09,https://doi.org/10.1007/s11390-009-9271-y +Feilong Tang,Automatic Transaction Compensation for Reliable Grid Applications.,2006,21,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst21.html#TangLH06,https://doi.org/10.1007/s11390-006-0529-3 +Bo Chen,Constructing Maximum Entropy Language Models for Movie Review Subjectivity Analysis.,2008,23,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst23.html#ChenHG08,https://doi.org/10.1007/s11390-008-9125-z +Yu Zhang,System-Enforced Deterministic Streaming for Efficient Pipeline Parallelism.,2015,30,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst30.html#ZhangLC15,https://doi.org/10.1007/s11390-015-1504-7 +Jitender Kumar Chhabra,A Survey of Dynamic Software Metrics.,2010,25,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst25.html#ChhabraG10,https://doi.org/10.1007/s11390-010-9384-3 +Youming Qiao,On Isomorphism Testing of Groups with Normal Hall Subgroups.,2012,27,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst27.html#QiaoNT12,https://doi.org/10.1007/s11390-012-1255-7 +Ruqian Lu,Beyond Knowledge Engineering.,2006,21,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst21.html#LuJ06,https://doi.org/10.1007/s11390-006-0790-5 +Xiaoju Dong,Barbed Congruence of Asymmetry and Mismatch.,2007,22,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst22.html#DongF07,https://doi.org/10.1007/s11390-007-9063-1 +Tao Wang,Improving Retrieval Performance by Region Constraints and Relevance Feedback.,2004,19,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst19.html#WangRS04,https://doi.org/10.1007/BF02944911 +Tao-Yuan Cheng,A Novel Approach to Clustering Merchandise Records.,2007,22,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst22.html#ChengW07,https://doi.org/10.1007/s11390-007-9029-3 +Xiaofeng Meng,Data Extraction from the Web Based on Pre-Defined Schema.,2002,17,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst17.html#MengLWG02,https://doi.org/10.1007/BF02943278 +Yongquan Liang,A multimedia synchronization model based on timed Petri net.,1999,14,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst14.html#LiangS99,https://doi.org/10.1007/BF02948516 +Yici Cai,Modeling and Analysis of Mesh Tree Hybrid Power/Ground Networks with Multiple Voltage Supply in Time Domain.,2005,20,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst20.html#CaiSLH05,https://doi.org/10.1007/s11390-005-0224-9 +Chung-Han Chen,Embedding binary tree in VLSI/WSI processor array.,1996,11,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst11.html#Chen96,https://doi.org/10.1007/BF02943138 +Hong Cheng,A Holistic Approach for Efficient Contour Detection.,2014,29,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst29.html#ChengC14,https://doi.org/10.1007/s11390-014-1488-8 +Seleviawati Tarmizi,Improvement on the Multihop Shareholder Discovery for Threshold Secret Sharing in MANETs.,2011,26,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst26.html#TarmiziVG11,https://doi.org/10.1007/s11390-011-1170-3 +Xiangqian Wu,Wavelet Energy Feature Extraction and Matching for Palmprint Recognition.,2005,20,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst20.html#WuWZ05,https://doi.org/10.1007/s11390-005-0411-8 +Deshuang Huang,"The ""bottleneck"" behaviours in linear feedforward neural network classifiers and their breakthrough.",1999,14,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst14.html#Huang99,https://doi.org/10.1007/BF02952485 +Thandar Thein,Availability Analysis of Application Servers Using Software Rejuvenation and Virtualization.,2009,24,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst24.html#TheinP09,https://doi.org/10.1007/s11390-009-9228-1 +Hong-Da Li,Distributed Oblivious Function Evaluation and Its Applications.,2004,19,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst19.html#LiYFL04,https://doi.org/10.1007/BF02973458 +Gang Luo,Generating conformance tests for nondeterministic protocol machines.,1994,9,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst9.html#Luo94,https://doi.org/10.1007/BF02943576 +Shiyi Xu,On dependability of computing systems.,1999,14,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst14.html#Xu99,https://doi.org/10.1007/BF02946517 +Weiyi Liu,A Fuzzy Approach to Classification of Text Documents.,2003,18,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst18.html#LiuS03a,https://doi.org/10.1007/BF02947124 +Lu Jian,Design rationale for a wide spectrum specification language FGSPEC.,1993,8,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst8.html#JianX93,https://doi.org/10.1007/BF02939476 +Yu Lin,Dynamic Retransmission Control for Reliable Mobile Multicast.,2003,18,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst18.html#LinWWC03,https://doi.org/10.1007/BF02948907 +Liangjun Zang,A Survey of Commonsense Knowledge Acquisition.,2013,28,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst28.html#ZangCCWC13,https://doi.org/10.1007/s11390-013-1369-6 +Zhiwei Xu,A Theorem on Grid Access Control.,2003,18,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst18.html#XuB03,https://doi.org/10.1007/BF02948926 +Shouqin Zhou,Study on Distributed Knowledge Information System for Product Design.,2001,16,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst16.html#ShouqinSWY01,https://doi.org/10.1007/BF02948965 +Lin Chen,A Grid Middleware for Distributed Java Computing with MPI Binding and Process Migration Supports.,2003,18,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst18.html#ChenWL03,https://doi.org/10.1007/BF02948925 +Fuhua (Frank) Cheng,Loop Subdivision Surface Based Progressive Interpolation.,2009,24,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst24.html#ChengFLHWY09,https://doi.org/10.1007/s11390-009-9199-2 +Xiaohu Ma,The automatic generation of Chinese outline font based on stroke extraction.,1995,10,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst10.html#MaPZ95,https://doi.org/10.1007/BF02939521 +Dafang Zhang,Node Grouping in System-Level Fault Diagnosis.,2001,16,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst16.html#DafangGY01,https://doi.org/10.1007/BF02948966 +Ya-Shu Liu,As-Rigid-As-Possible Surface Morphing.,2011,26,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst26.html#LiuYM11,https://doi.org/10.1007/s11390-011-1154-3 +Jianzhong Li,Efficient Aggregation Algorithms on Very Large Compressed Data Warehouses.,2000,15,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst15.html#LiLS00,https://doi.org/10.1007/BF02948809 +Xiaowei Li 0001,A Loop-Based Apparatus for At-Speed Self-Testing.,2001,16,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst16.html#LiC01,https://doi.org/10.1007/BF02943206 +Kai Lu,An Efficient and Flexible Deterministic Framework for Multithreaded Programs.,2015,30,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst30.html#LuZWBC15,https://doi.org/10.1007/s11390-015-1503-8 +Jie Wu,Collaborative Mobile Charging and Coverage.,2014,29,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst29.html#Wu14,https://doi.org/10.1007/s11390-014-1449-2 +Wei Chen 0001,Real-Time Ray Casting Rendering of Volume Clipping in Medical Visualization.,2003,18,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst18.html#ChenHBP03,https://doi.org/10.1007/BF02945470 +Jinho Kim,Preface.,2013,28,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst28.html#KimKPW13,https://doi.org/10.1007/s11390-013-1358-9 +Gang Tu,Scheduling Algorithms Based on Weakly Hard Real-Time Constraints.,2003,18,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst18.html#TuYL03,https://doi.org/10.1007/BF02945471 +Kewen Wang,Closed World Assumption for Disjunctive Reasoning.,2001,16,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst16.html#WangZ01,https://doi.org/10.1007/BF02948986 +Wenyu Li,A Novel Dynamic Adjusting Algorithm for Load Balancing and Handover Co-Optimization in LTE SON.,2013,28,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst28.html#LiZJGZDL13,https://doi.org/10.1007/s11390-013-1345-1 +Yang Xun,Cycle-Based Algorithm Used to Accelerate VHDL Simulation.,2000,15,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst15.html#XunM00,https://doi.org/10.1007/BF02948875 +Xin Wang,A Solution of Data Inconsistencies in Data Integration - Designed for Pervasive Computing Environment.,2010,25,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst25.html#WangHZXC10,https://doi.org/10.1007/s11390-010-9340-2 +Wei Gao 0007,Chameleon Hashes Without Key Exposure Based on Factoring.,2007,22,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst22.html#GaoWX07,https://doi.org/10.1007/s11390-007-9015-9 +Yue Wu,An Elastic Architecture Adaptable to Various Application Scenarios.,2014,29,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst29.html#WuCCGZ14,https://doi.org/10.1007/s11390-014-1425-x +Xu Cheng 0001,Research Progress of UniCore CPUs and PKUnity SoCs.,2010,25,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst25.html#ChengWLYTGLLYF10,https://doi.org/10.1007/s11390-010-9317-1 +ShuiGuang Deng,Trust-Based Personalized Service Recommendation: A Network Perspective.,2014,29,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst29.html#DengHWW14,https://doi.org/10.1007/s11390-014-1412-2 +Haixia Xu,Relationship Between a Non-Malleable Commitment Scheme and a Modified Selective Decommitment Scheme.,2007,22,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst22.html#XuL07,https://doi.org/10.1007/s11390-007-9009-7 +Qi-Jin Ji,Design and Analysis of a Multiscale Active Queue Management Scheme.,2006,21,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst21.html#JiD06,https://doi.org/10.1007/s11390-006-1022-8 +Heemin Park,Online Approach for Spatio-Temporal Trajectory Data Reduction for Portable Devices.,2013,28,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst28.html#ParkLCC13,https://doi.org/10.1007/s11390-013-1360-2 +Chunxiao Lin,Garbage Collector Verification for Proof-Carrying Code.,2007,22,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst22.html#LinCLH07,https://doi.org/10.1007/s11390-007-9049-z +Rui Xue,Algebraic Construction for Zero-Knowledge Sets.,2008,23,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst23.html#XueLL08,https://doi.org/10.1007/s11390-008-9119-x +Minglu Li 0001,Nondeterministic temporal relations in multimedia data.,1997,12,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst12.html#LiSS97,https://doi.org/10.1007/BF02948974 +Joong Hyuk Chang,Effect of Count Estimation in Finding Frequent Itemsets over Online Transactional Data Streams.,2005,20,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst20.html#ChangL05,https://doi.org/10.1007/s11390-005-0007-3 +Xu-Guang Guan,Quasi Delay-Insensitive High Speed Two-Phase Protocol Asynchronous Wrapper for Network on Chips.,2010,25,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst25.html#GuanTY10,https://doi.org/10.1007/s11390-010-9390-5 +Lu Yang,Recent advances in automated theorem proving on inequalities.,1999,14,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst14.html#Yang99,https://doi.org/10.1007/BF02948785 +Fan Wang,Speech Detection in Non-Stationary Noise Based on the 1/f Process.,2002,17,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst17.html#FanFW02,https://doi.org/10.1007/BF02949828 +Xiaoqun Wu,Geometry of Motion for Video Shakiness Detection.,2018,33,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst33.html#WuLCC18,https://doi.org/10.1007/s11390-018-1832-5 +Shengli Liu,Authenticating Tripartite Key Agreement Protocol with Pairings.,2004,19,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst19.html#LiuZC04,https://doi.org/10.1007/BF02944794 +Hong Zheng,Ontology-Based Semantic Cache in AOKB.,2002,17,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst17.html#ZhengLJH02,https://doi.org/10.1007/BF02948832 +Shu Yao,The learning convergence of CMAC in cyclic learning.,1994,9,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst9.html#YaoZ94,https://doi.org/10.1007/BF02943579 +Ying Wang 0001,Reinventing Memory System Design for Many-Accelerator Architecture.,2014,29,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst29.html#WangZHL14,https://doi.org/10.1007/s11390-014-1429-6 +Anna Gutowska,On Desideratum for B2C E-Commerce Reputation Systems.,2009,24,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst24.html#GutowskaSB09,https://doi.org/10.1007/s11390-009-9274-8 +Hoon Park,Modular Timing Constraints for Delay-Insensitive Systems.,2016,31,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst31.html#ParkHRSS16,https://doi.org/10.1007/s11390-016-1613-y +Xunwei Wu,Bounded algebra and current-mode digital circuits.,1999,14,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst14.html#WuP99,https://doi.org/10.1007/BF02951874 +Haibo Tian,A Provable Secure ID-Based Explicit Authenticated Key Agreement Protocol Without Random Oracles.,2008,23,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst23.html#TianSMW08,https://doi.org/10.1007/s11390-008-9178-z +Jun Ma,A Practical Algorithm for the Minimum Rectilinear Steiner Tree.,2000,15,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst15.html#JunYM00,https://doi.org/10.1007/BF02951931 +Chen-Dong Xu,Blending Canal Surfaces Based on PH Curves.,2005,20,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst20.html#XuC05,https://doi.org/10.1007/s11390-005-0389-2 +Da Wang,Design-for-Testability Features and Test Implementation of a Giga Hertz General Purpose Microprocessor.,2008,23,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst23.html#WangHLL08,https://doi.org/10.1007/s11390-008-9193-0 +Dongdai Lin,Object-oriented analysis of ELIMINO.,1999,14,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst14.html#LinL99,https://doi.org/10.1007/BF02948790 +Xian-Yong Fang,A New Method of Manifold Mosaic for Large Displacement Images.,2006,21,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst21.html#FangZPW06,https://doi.org/10.1007/s11390-006-0218-2 +Ji-Ye Zhao,Physical Design Methodology for Godson-2G Microprocessor.,2010,25,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst25.html#ZhaoLHSXXSCW10,https://doi.org/10.1007/s11390-010-9319-z +Xianzhi Liao,Rendezvous facilities in a distributed computer system.,1995,10,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst10.html#LiaoJ95,https://doi.org/10.1007/BF02948427 +Zhouwang Yang,Specification of Initial Shapes for Dynamic Implicit Curve/Surface Reconstruction.,2006,21,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst21.html#YangWDC06,https://doi.org/10.1007/s11390-006-0249-8 +Xin Geng,Image Region Selection and Ensemble for Face Recognition.,2006,21,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst21.html#GengZ06,https://doi.org/10.1007/s11390-006-0116-7 +Sai Tung On,Flash-Optimized B+-Tree.,2010,25,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst25.html#OnHLX10,https://doi.org/10.1007/s11390-010-9341-1 +Ying-Yuan Xiao,Efficient Distributed Skyline Queries for Mobile Applications.,2010,25,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst25.html#XiaoC10,https://doi.org/10.1007/s11390-010-9342-0 +Yiying Zhang,A New Speaker Verification Method with Global Speaker Model and Likelihood Score Normalization.,2000,15,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst15.html#YiyingZZ00,https://doi.org/10.1007/BF02948803 +Chaveevan Pechsiri,Explanation Knowledge Graph Construction Through Causality Extraction from Texts.,2010,25,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst25.html#PechsiriP10,https://doi.org/10.1007/s11390-010-9387-0 +Xuebin Chi,Parallel implementation of linear algebra problems on Dawning-1000.,1998,13,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst13.html#Chi98,https://doi.org/10.1007/BF02946602 +Xiao-Dong Zhang,Preface.,2011,26,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst26.html#Zhang11,https://doi.org/10.1007/s11390-011-1136-5 +Chih-Ho Yu,Determination of horizontal motion through optical flow computations.,1997,12,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst12.html#YuC97,https://doi.org/10.1007/BF02951332 +Liusheng Huang,A Fast Algorithm for Mining Association Rules.,2000,15,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst15.html#HuangHXC00,https://doi.org/10.1007/BF02948845 +Junzhou Luo,CIMS network protocol and its net models.,1997,12,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst12.html#LuoG97,https://doi.org/10.1007/BF02943179 +Yan Zhang 0004,Efficient Execution of Multiple Queries on Deep Memory Hierarchy.,2007,22,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst22.html#ZhangCZ07,https://doi.org/10.1007/s11390-007-9034-6 +Chonggang Wang,An Effective Feedback Control Mechanism for DiffServ Architecture.,2002,17,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst17.html#WangLYC02,https://doi.org/10.1007/BF02943282 +Shuqiang Jiang,Visual Ontology Construction for Digitized Art Image Retrieval.,2005,20,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst20.html#JiangDHHG05,https://doi.org/10.1007/s11390-005-0855-x +Shuo Shang,VID Join: Mapping Trajectories to Points of Interest to Support Location-Based Services.,2015,30,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst30.html#ShangXZLW15,https://doi.org/10.1007/s11390-015-1557-7 +Ehsan Atoofian,A Test Approach for Look-Up Table Based FPGAs.,2006,21,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst21.html#AtoofianN06,https://doi.org/10.1007/s11390-006-0141-6 +Jaehoon Choi,Mining Botnets and Their Evolution Patterns.,2013,28,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst28.html#ChoiKLSJLU13,https://doi.org/10.1007/s11390-013-1361-1 +Jianhua Zhao,Remove Irrelevant Atomic Formulas for Timed Automaton Model Checking.,2006,21,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst21.html#ZhaoLZZ06,https://doi.org/10.1007/s11390-006-0041-9 +Antonio Miguel Mora,Effect of Noisy Fitness in Real-Time Strategy Games Player Behaviour Optimisation Using Evolutionary Algorithms.,2012,27,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst27.html#MoraFGGF12,https://doi.org/10.1007/s11390-012-1281-5 +Zuoquan Lin,Tableau systems for paraconsistency and minimal inconsistency.,1998,13,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst13.html#Lin98,https://doi.org/10.1007/BF02946605 +Gang Wu,System Pi: A Native RDF Repository Based on the Hypergraph Representation for RDF Data Model.,2009,24,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst24.html#WuLHW09,https://doi.org/10.1007/s11390-009-9265-9 +An Liu 0002,Constraints-Aware Scheduling for Transactional Services Composition.,2009,24,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst24.html#LiuLLHX09,https://doi.org/10.1007/s11390-009-9264-x +Xiexiong Chen,The mapping synthesis of ternary functions under fixed polarities.,1993,8,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst8.html#ChenW93a,https://doi.org/10.1007/BF02939543 +Hua Huang,Frontal and Semi-Frontal Facial Caricature Synthesis Using Non-Negative Matrix Factorization.,2010,25,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst25.html#HuangM10,https://doi.org/10.1007/s11390-010-9405-2 +Xiaohui Liang,Light Space Cascaded Shadow Maps Algorithm for Real Time Rendering.,2011,26,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst26.html#LiangMCY10,https://doi.org/10.1007/s11390-011-9424-7 +Li Layuan,A Semantics-Based Approach for Achieving Self Fault-Tolerance of Protocols.,2000,15,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst15.html#LayuanC00,https://doi.org/10.1007/BF02948802 +Xin Xin 0001,When Factorization Meets Heterogeneous Latent Topics: An Interpretable Cross-Site Recommendation Framework.,2015,30,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst30.html#XinLWH15,https://doi.org/10.1007/s11390-015-1570-x +Zhuoran Liu,Exploiting Unlabeled Data for Neural Grammatical Error Detection.,2017,32,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst32.html#LiuL17,https://doi.org/10.1007/s11390-017-1757-4 +Lizhong Dai,Uplink Scheduling for Supporting Real Time Voice Traffic in IEEE 802.16 Backhaul Networks.,2008,23,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst23.html#DaiZ08,https://doi.org/10.1007/s11390-008-9169-0 +Mohamed Maher Ben Ismail,Automatic Fall Detection Using Membership Based Histogram Descriptors.,2017,32,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst32.html#IsmailB17,https://doi.org/10.1007/s11390-017-1725-z +I-Shyan Hwang,Dynamic Fuzzy Controlled RWA Algorithm for IP/GMPLS over WDM Networks.,2005,20,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst20.html#HwangHY05,https://doi.org/10.1007/s11390-005-0717-6 +Junzhou Luo,An Architectural Model for Intelligent Network Management.,2000,15,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst15.html#LuoGX00,https://doi.org/10.1007/BF02948797 +Jue Wang,Reduction Algorithms Based on Discernibility Matrix: The Ordered Attributes Method.,2001,16,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst16.html#WangJ01,https://doi.org/10.1007/BF02943234 +Xian-He Sun,Server-Based Data Push Architecture for Multi-Processor Environments.,2007,22,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst22.html#SunBC07,https://doi.org/10.1007/s11390-007-9090-y +Jun-Feng Tian,Fault Tolerant Algorithm Based on Dynamic and Active Load Balancing for Redundant Services.,2004,19,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst19.html#TianZW04,https://doi.org/10.1007/BF02973437 +Yong He,Preemptive Semi-Online Scheduling with Tightly-Grouped Processing Times.,2004,19,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst19.html#HeJ04,https://doi.org/10.1007/BF02973433 +Yunjun Xia,Theory and practice of the stereo-view on the CRT screen.,1996,11,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst11.html#Xia96,https://doi.org/10.1007/BF02947220 +Liusheng Huang,Coverage and Exposure Paths in Wireless Sensor Networks.,2006,21,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst21.html#HuangXWWL06,https://doi.org/10.1007/s11390-006-0490-1 +Jiang-Zhou He,OpenMDSP: Extending OpenMP to Program Multi-Core DSPs.,2014,29,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst29.html#HeCCZTY14,https://doi.org/10.1007/s11390-014-1433-x +Jin-Woo Kim,EAFoC: Enterprise Architecture Framework Based on Commonality.,2006,21,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst21.html#KimKKSKB06,https://doi.org/10.1007/s11390-006-0952-5 +Xue-Li Liu,EntityManager: Managing Dirty Data Based on Entity Resolution.,2017,32,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst32.html#LiuWLG17,https://doi.org/10.1007/s11390-017-1731-1 +Nadia Magnenat-Thalmann,Automatic Modeling of Virtual Humans and Body Clothing.,2004,19,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst19.html#Magnenat-ThalmannSC04,https://doi.org/10.1007/BF02945583 +Hong Gao,Parallel Data Cube Storage Structure for Range Sum Queries and Dynamic Updates.,2005,20,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst20.html#GaoL05,https://doi.org/10.1007/s11390-005-0345-1 +Changjun Jiang,Net operations (II) - The iterated addition operation of Petri nets.,1995,10,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst10.html#Jiang95,https://doi.org/10.1007/BF02943509 +Weiming Dong,Fast Multi-Operator Image Resizing and Evaluation.,2012,27,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst27.html#DongBZP12,https://doi.org/10.1007/s11390-012-1211-6 +Fatemeh Dorri,Minimizing the Discrepancy Between Source and Target Domains by Learning Adapting Components.,2014,29,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst29.html#DorriG14,https://doi.org/10.1007/s11390-014-1415-z +Weiwu Hu,Out-of-order execution in sequentially consistent shared-memory systems: Theory and experiments.,1998,13,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst13.html#HuX98,https://doi.org/10.1007/BF02946601 +Zhixu Li,Crowd-Guided Entity Matching with Consolidated Textual Data.,2017,32,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst32.html#LiYLLZXZZ17,https://doi.org/10.1007/s11390-017-1769-0 +Ninghui Sun,Dawning-1000 PROOS distributed operating system.,1997,12,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst12.html#SunLLWLZ97,https://doi.org/10.1007/BF02951335 +Yunjun Gao,Efficient k -Nearest-Neighbor Search Algorithms for Historical Moving Object Trajectories.,2007,22,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst22.html#GaoLCCJC07,https://doi.org/10.1007/s11390-007-9030-x +Zhanyi Hu,An inherent probabilistic aspect of the Hough transform.,1999,14,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst14.html#HuYYM99,https://doi.org/10.1007/BF02952486 +Jun Wang,Energy Efficient Backoff Hierarchical Clustering Algorithms for Multi-Hop Wireless Sensor Networks.,2011,26,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst26.html#WangCXC11,https://doi.org/10.1007/s11390-011-9435-4 +Defu Lian,Jointly Recommending Library Books and Predicting Academic Performance: A Mutual Reinforcement Perspective.,2018,33,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst33.html#LianL18,https://doi.org/10.1007/s11390-018-1847-y +George W. Hart,An Algorithm for Constructing 3D Struts.,2009,24,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst24.html#Hart09,https://doi.org/10.1007/s11390-009-9202-y +Xiuli Ma,Efficient Incremental Maintenance of Frequent Patterns with FP-Tree.,2004,19,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst19.html#MaTTY04,https://doi.org/10.1007/BF02973451 +Xianchun Jiang,Prefix code translation by mapping.,1994,9,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst9.html#Jiang94a,https://doi.org/10.1007/BF02939499 +Lei Zhao 0001,Continuous Probabilistic Subspace Skyline Query Processing Using Grid Projections.,2014,29,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst29.html#ZhaoYZ14,https://doi.org/10.1007/s11390-014-1434-9 +Jigang Wu,New Model and Algorithm for Hardware/Software Partitioning.,2008,23,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst23.html#WuSZ08,https://doi.org/10.1007/s11390-008-9160-9 +Yongdong Wu,A Multi-Key Pirate Decoder Against Traitor Tracing Schemes.,2010,25,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst25.html#WuD10,https://doi.org/10.1007/s11390-010-9329-x +Faqiang Sun,CPicker: Leveraging Performance-Equivalent Configurations to Improve Data Center Energy Efficiency.,2018,33,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst33.html#SunYHLH18,https://doi.org/10.1007/s11390-018-1811-x +Keyan Cao,Continuous Outlier Monitoring on Uncertain Data Streams.,2014,29,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst29.html#CaoWHDWS14,https://doi.org/10.1007/s11390-014-1441-x +Cao Weiqun,An Algorithm for LOD by Merging Near Coplanar Faces Based on Gauss Sphere.,2001,16,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst16.html#WeiqunBP01,https://doi.org/10.1007/BF02948963 +Xi-Shun Zhao,Comparison of Semantics of Disjunctive Logic Programs Based on Model-Equivalent Reduction.,2007,22,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst22.html#ZhaoS07,https://doi.org/10.1007/s11390-007-9078-7 +Sunghun Jo,GPU-Driven Scalable Parser for OBJ Models.,2018,33,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst33.html#JoJL18,https://doi.org/10.1007/s11390-018-1827-2 +Qi Cheng,MNP: A class of NP optimization problems.,1997,12,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst12.html#ChengZ97,https://doi.org/10.1007/BF02943150 +Wen-Tao Bao,A High-Performance and Cost-Efficient Interconnection Network for High-Density Servers.,2014,29,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst29.html#BaoFCZ14,https://doi.org/10.1007/s11390-014-1430-0 +Yongsoo Joo,Improving Application Launch Performance on Solid State Drives.,2012,27,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst27.html#JooRPS12,https://doi.org/10.1007/s11390-012-1259-3 +Hongxing Qin,A Gradient-Domain Based Geometry Processing Framework for Point Clouds.,2018,33,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst33.html#QinHWDR18,https://doi.org/10.1007/s11390-018-1861-0 +Zhi-Hong Tao,Bounded Model Checking of CTL.,2007,22,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst22.html#TaoZCW07,https://doi.org/10.1007/s11390-007-9004-z +Jiqiang Lv,Differential Attack on Five Rounds of the SC2000 Block Cipher*.,2011,26,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst26.html#Lv11,https://doi.org/10.1007/s11390-011-1171-2 +Wenwu Zhu 0001,Preface.,2015,30,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst30.html#0001WW15,https://doi.org/10.1007/s11390-015-1590-6 +Ying Zhang,Selected Crosstalk Avoidance Code for Reliable Network-on-Chip.,2009,24,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst24.html#ZhangLL09,https://doi.org/10.1007/s11390-009-9296-2 +Wen-Peng Xu,Skeleton-Sectional Structural Analysis for 3D Printing.,2016,31,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst31.html#XuLL16,https://doi.org/10.1007/s11390-016-1638-2 +Fei Hu,Emphasizing Essential Words for Sentiment Classification Based on Recurrent Neural Networks.,2017,32,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst32.html#HuLZWX17,https://doi.org/10.1007/s11390-017-1759-2 +Menq-Wen Lin,Fuzzy Constraint-Based Agent Negotiation.,2005,20,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst20.html#LinLY05,https://doi.org/10.1007/s11390-005-0319-3 +Hua-Ming Liao,Cache-Based Aggregate Query Shipping: An Efficient Scheme of Distributed OLAP Query Processing.,2008,23,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst23.html#LiaoP08,https://doi.org/10.1007/s11390-008-9190-3 +Jianyang Zeng,Optimal Routing in a Small-World Network.,2006,21,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst21.html#ZengH06,https://doi.org/10.1007/s11390-006-0476-z +Zhou Chong,SPMH: A Solution to the Problem of Malicious Hosts.,2002,17,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst17.html#ChongS02,https://doi.org/10.1007/BF02960764 +Giovanni Iacca,Compact Differential Evolution Light: High Performance Despite Limited Memory Requirement and Modest Computational Overhead.,2012,27,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst27.html#IaccaCN12,https://doi.org/10.1007/s11390-012-1284-2 +Feng Xue,Real-Time Texture Synthesis Using s-Tile Set.,2007,22,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst22.html#XueZJHWW07,https://doi.org/10.1007/s11390-007-9072-0 +Minghui Jiang 0001,Engineering the Divide-and-Conquer Closest Pair Algorithm.,2007,22,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst22.html#JiangG07,https://doi.org/10.1007/s11390-007-9066-y +Enjian Bai,Some Notes on Prime-Square Sequences.,2007,22,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst22.html#BaiL07,https://doi.org/10.1007/s11390-007-9042-6 +Weiwei Xu,Gradient Domain Mesh Deformation - A Survey.,2009,24,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst24.html#XuZ09,https://doi.org/10.1007/s11390-009-9209-4 +Deyi Li,Knowledge representation in KDD based on linguistic atoms.,1997,12,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst12.html#Li97,https://doi.org/10.1007/BF02947201 +Xu-Meng Wang,A Survey of Visual Analytic Pipelines.,2016,31,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst31.html#WangZMXC16,https://doi.org/10.1007/s11390-016-1663-1 +Zhiyi Fang,NONH: A new cache-based coherence protocol for linked list structure DSM system and its performance evaluation.,1996,11,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst11.html#FangJ96,https://doi.org/10.1007/BF02948484 +Zhen Cao,Towards Risk Evaluation of Denial-of-Service Vulnerabilities in Security Protocols.,2010,25,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst25.html#CaoGCHT10,https://doi.org/10.1007/s11390-010-9330-4 +Haitao Wu,IEEE 802.11 Distributed Coordination Function: Enhancement and Analysis.,2003,18,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst18.html#WuLCPL03,https://doi.org/10.1007/BF02947120 +Young-Suk Shin,Facial Expression Recognition of Various Internal States via Manifold Learning.,2009,24,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst24.html#Shin09,https://doi.org/10.1007/s11390-009-9257-9 +Ke Liu,Preface.,2014,29,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst29.html#LiuL14a,https://doi.org/10.1007/s11390-014-1463-4 +Yun Liang 0001,Performance-Centric Optimization for Racetrack Memory Based Register File on GPUs.,2016,31,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst31.html#LiangW16,https://doi.org/10.1007/s11390-016-1610-1 +Jinzhao Wu,CWA Formalizations in Multi-Valued Logics.,2001,16,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst16.html#Wu01,https://doi.org/10.1007/BF02943204 +Weigeng Shi,Analyzing the reliability of degradable networks.,1993,8,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst8.html#ShiS93,https://doi.org/10.1007/BF02946588 +Chittabrata Ghosh,ROPAS: Cross-Layer Cognitive Architecture for Mobile UWB Networks.,2008,23,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst23.html#GhoshXA08,https://doi.org/10.1007/s11390-008-9143-x +Haitao Wu,DCF+: An Enhancement for Reliable Transport Protocol over WLAN.,2003,18,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst18.html#WuC03,https://doi.org/10.1007/BF02948885 +Nikita A. Sakhanenko,Model Failure and Context Switching Using Logic-Based Stochastic Models.,2010,25,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst25.html#SakhanenkoL10,https://doi.org/10.1007/s11390-010-9356-7 +Heitor Silvério Lopes,A Differential Evolution Approach for Protein Folding Using a Lattice Model.,2007,22,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst22.html#LopesB07,https://doi.org/10.1007/s11390-007-9097-4 +Jun-Wu Dong,A Class of Key Predistribution Schemes Based on Orthogonal Arrays.,2008,23,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst23.html#DongPW08,https://doi.org/10.1007/s11390-008-9168-1 +Jaweria Kanwal,Bug Prioritization to Facilitate Bug Report Triage.,2012,27,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst27.html#KanwalM12,https://doi.org/10.1007/s11390-012-1230-3 +Piotr Tomaszewski,Improving Fault Detection in Modified Code - A Study from the Telecommunication Industry.,2007,22,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst22.html#TomaszewskiLG07,https://doi.org/10.1007/s11390-007-9053-3 +Xiaowei Li 0001,Formal Verification Techniques Based on Boolean Satisfiability Problem.,2005,20,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst20.html#LiLS05,https://doi.org/10.1007/s11390-005-0004-6 +Guo-Jie Li,Preface.,2015,30,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst30.html#Li15,https://doi.org/10.1007/s11390-015-1516-3 +How Teo,Texture Pattern Generation Using Clonal Mosaic.,2006,21,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst21.html#TeoW06,https://doi.org/10.1007/s11390-006-0173-y +Tak-Lam Wong,Answering Reachability Queries on Incrementally Updated Graphs by Hierarchical Labeling Schema.,2016,31,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst31.html#Wong16,https://doi.org/10.1007/s11390-016-1633-7 +Yidong Shen,A theory of hybrid diagnosis.,1999,14,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst14.html#Shen99a,https://doi.org/10.1007/BF02948738 +Kyung-Oh Lee,Striping and Scheduling for Large Scale Multimedia Servers.,2004,19,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst19.html#LeePP04,https://doi.org/10.1007/BF02973452 +Xuehou Tan,Searching a Polygonal Region by Two Guards.,2008,23,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst23.html#TanJ08,https://doi.org/10.1007/s11390-008-9179-y +Tianzhu Li,Normalization of class hierarchy in databases.,1996,11,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst11.html#LiXSB96,https://doi.org/10.1007/BF02948479 +Abdelwadood Mesleh,Heart Rate Extraction from Vowel Speech Signals.,2012,27,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst27.html#MeslehSBQ12,https://doi.org/10.1007/s11390-012-1300-6 +Jing Li,Pragma Directed Shared Memory Centric Optimizations on GPUs.,2016,31,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst31.html#LiLWLGFW16,https://doi.org/10.1007/s11390-016-1624-8 +Thomas Fang Zheng,Improving the Syllable-Synchronous Network Search Algorithm for Word Decoding in Continuous Chinese Speech Recognition.,2000,15,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst15.html#FangJZ00,https://doi.org/10.1007/BF02950410 +Xindong Wu,Ubiquitous Mining with Interactive Data Mining Agents.,2009,24,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst24.html#WuZCW09,https://doi.org/10.1007/s11390-009-9291-7 +Meng Bo,DPAL: Deductive Language for Embroidery Pattern Assembling.,2000,15,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst15.html#BoGC00,https://doi.org/10.1007/BF02948846 +Mehdi Azaouzi,An Efficient Two-Phase Model for Computing Influential Nodes in Social Networks Using Social Actions.,2018,33,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst33.html#AzaouziR18,https://doi.org/10.1007/s11390-018-1820-9 +Yurong Cheng,Threshold-Based Shortest Path Query over Large Correlated Uncertain Graphs.,2015,30,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst30.html#ChengYCW15,https://doi.org/10.1007/s11390-015-1559-5 +Irfan Ahmad,Arabic Bank Check Processing: State of the Art.,2013,28,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst28.html#AhmadM13,https://doi.org/10.1007/s11390-013-1332-6 +Sanglu Lu,A model for dynamic adaptive coscheduling.,1999,14,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst14.html#LuZX99,https://doi.org/10.1007/BF02948515 +Rui Zhu 0003,Approximate Continuous Top-k Query over Sliding Window.,2017,32,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst32.html#ZhuWLYW17,https://doi.org/10.1007/s11390-017-1708-0 +Rui-Tao Liu,A Large-Scale Study of Failures on Petascale Supercomputers.,2018,33,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst33.html#LiuC18,https://doi.org/10.1007/s11390-018-1806-7 +Xiaofeng Li,Research on the optimal parallel algorithms of broadcast-class problems.,1998,13,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst13.html#LiSZ98,https://doi.org/10.1007/BF02948504 +Jiamei Cai,The sequence modeling method based on ECC in developing program specifications.,1999,14,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst14.html#Cai99,https://doi.org/10.1007/BF02948736 +Yan Li 0005,MPFFT: An Auto-Tuning FFT Library for OpenCL GPUs.,2013,28,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst28.html#LiZLLJ13,https://doi.org/10.1007/s11390-013-1314-8 +Zhenhua Li 0001,Towards Cost-Effective Cloud Downloading with Tencent Big Data.,2015,30,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst30.html#LiLJZ15,https://doi.org/10.1007/s11390-015-1591-5 +Yurong Cheng,Keyword Query over Error-Tolerant Knowledge Bases.,2016,31,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst31.html#ChengYLCW16,https://doi.org/10.1007/s11390-016-1658-y +Bolei Zhang,Budget Allocation for Maximizing Viral Advertising in Social Networks.,2016,31,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst31.html#ZhangQLTLF16,https://doi.org/10.1007/s11390-016-1661-3 +Xin Liu 0020,Detecting Communities in K-Partite K-Uniform (Hyper)Networks.,2011,26,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst26.html#LiuM11,https://doi.org/10.1007/s11390-011-0177-0 +Seong Woo Kwak,Optimal Checkpoint Placement on Real-Time Tasks with Harmonic Periods.,2012,27,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst27.html#KwakY12,https://doi.org/10.1007/s11390-012-1209-0 +Dun-Ren Che,Accomplishing Deterministic XML Query Optimization.,2005,20,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst20.html#Che05,https://doi.org/10.1007/s11390-005-0357-x +Chao-Hui Shen,Harmonic Field Based Volume Model Construction from Triangle Soup.,2010,25,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst25.html#ShenZLHM10,https://doi.org/10.1007/s11390-010-9345-x +Chenchen Sun,Topological Features Based Entity Disambiguation.,2016,31,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst31.html#SunSKNY16,https://doi.org/10.1007/s11390-016-1679-6 +Manwu Xu,A formal semantics for DAI language NUML.,1995,10,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst10.html#XuLZD95,https://doi.org/10.1007/BF02943490 +Shangmin Luan,An incremental approach to automatic algorithm design.,1999,14,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst14.html#LuanL99,https://doi.org/10.1007/BF02948733 +Yong Li,Formal Reasoning About Lazy-STM Programs.,2010,25,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst25.html#LiZCF10,https://doi.org/10.1007/s11390-010-9369-2 +Kian-Lee Tan,Optimization of multi-join queries in shared-nothing systems.,1995,10,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst10.html#Tan95,https://doi.org/10.1007/BF02948424 +Xin Xu,Hierarchical Clustering of Complex Symbolic Data and Application for Emitter Identification.,2018,33,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst33.html#XuLW18,https://doi.org/10.1007/s11390-018-1857-9 +Yuxi Fu,Reaction graph.,1998,13,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst13.html#Fu98a,https://doi.org/10.1007/BF02946493 +Tianbi Jiang,Retrieving Aerial Scene Images with Learned Deep Image-Sketch Features.,2017,32,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst32.html#JiangXLS17,https://doi.org/10.1007/s11390-017-1754-7 +JunZhou Huang,Phase Correlation Based Iris Image Registration Model.,2005,20,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst20.html#HuangTMW05,https://doi.org/10.1007/s11390-005-0419-0 +Guojie Li,From the Editor-in-Chief.,1995,10,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst10.html#Li95,https://doi.org/10.1007/BF02939516 +Yong Zhao 0004,Rigidity Constraints for Large Mesh Deformation.,2009,24,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst24.html#ZhaoLPB09,https://doi.org/10.1007/s11390-009-9213-8 +Guangming Tan,Improvement of Performance of MegaBlast Algorithm for DNA Sequence Alignment.,2006,21,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst21.html#TanXBFS06,https://doi.org/10.1007/s11390-006-0973-0 +Jipeng Zhou,Fault-Tolerant Wormhole Routing with 2 Virtual Channels in Meshes.,2005,20,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst20.html#Zhou05,https://doi.org/10.1007/s11390-005-0822-6 +Yun Wang,Minimum QOS parameter set in transport layer.,1997,12,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst12.html#WangG97,https://doi.org/10.1007/BF02947209 +Wei Chen,Trip Oriented Search on Activity Trajectory.,2015,30,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst30.html#ChenZXLZZ15,https://doi.org/10.1007/s11390-015-1558-6 +Yaoxue Zhang,SDL-TRAN - An interactive generator for formal description language SDL.,1996,11,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst11.html#ZhangCZL96,https://doi.org/10.1007/BF02943521 +Bo Ren,Visual Simulation of Multiple Fluids in Computer Graphics: A State-of-the-Art Report.,2018,33,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst33.html#RenYLTTL18,https://doi.org/10.1007/s11390-018-1829-0 +Meihe Xu,Surface reconstruction for cross sectional data.,1996,11,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst11.html#XuT96,https://doi.org/10.1007/BF02947214 +Weiming Wang,Analysis and Implementation of an Open Programmable Router Based on Forwarding and Control Element Separation.,2008,23,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst23.html#WangDZ08,https://doi.org/10.1007/s11390-008-9181-4 +Long Wen,Related-Key Impossible Differential Attack on Reduced-Round LBlock.,2014,29,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst29.html#WenWZ14,https://doi.org/10.1007/s11390-014-1419-8 +Shengmin Xu,A New Revocable and Re-Delegable Proxy Signature and Its Application.,2018,33,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst33.html#XuYM18,https://doi.org/10.1007/s11390-018-1825-4 +Jorge Martínez Gil,KnoE: A Web Mining Tool to Validate Previously Discovered Semantic Correspondences.,2012,27,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst27.html#GilM12,https://doi.org/10.1007/s11390-012-1298-9 +Jiubin Ju,Scheduling PVM tasks.,1997,12,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst12.html#JuWY97,https://doi.org/10.1007/BF02951336 +Yu-Ping Shen,NP-Logic Systems and Model-Equivalence Reductions.,2010,25,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst25.html#ShenZ10,https://doi.org/10.1007/s11390-010-9408-z +Shuli Sun,An Efficient Optimization Procedure for Tetrahedral Meshes by Chaos Search Algorithm.,2003,18,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst18.html#SunL03,https://doi.org/10.1007/BF02945469 +Chao Deng,Register Clustering Methodology for Low Power Clock Tree Synthesis.,2015,30,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst30.html#DengCZ15,https://doi.org/10.1007/s11390-015-1531-4 +Giuseppe Lami,An Empirical Study on the Impact of Automation on the Requirements Analysis Process.,2007,22,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst22.html#LamiF07,https://doi.org/10.1007/s11390-007-9045-3 +Xin Peng,Feature-Oriented Nonfunctional Requirement Analysis for Software Product Line.,2009,24,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst24.html#PengLZ09,https://doi.org/10.1007/s11390-009-9227-2 +Xiaokun Wang,Surface Tension Model Based on Implicit Incompressible Smoothed Particle Hydrodynamics for Fluid Simulation.,2017,32,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst32.html#WangBZLY17,https://doi.org/10.1007/s11390-017-1793-0 +François Anton,Exact Computation of the Topology and Geometric Invariants of the Voronoi Diagram of Spheres in 3D.,2013,28,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst28.html#AntonMS13,https://doi.org/10.1007/s11390-013-1327-3 +Hao Lin,A Note on the Single Genotype Resolution Problem.,2004,19,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst19.html#LinZZBL04,https://doi.org/10.1007/BF02944804 +Xiaojing Wang,The intelligent CAI system for chemistry based on automated reasoning.,1999,14,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst14.html#WangZ99b,https://doi.org/10.1007/BF02948791 +Changgui Yang,Advanced geometric modeler with hybrid representation.,1996,11,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst11.html#YangCS96,https://doi.org/10.1007/BF02943516 +Yu Zhang,CHAUS: Scalable VM-Based Channels for Unbounded Streaming.,2017,32,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst32.html#ZhangYCCZ17,https://doi.org/10.1007/s11390-017-1801-4 +Limin Xiao,Exploiting the capabilities of the interconnection network on Dawning-1000.,1999,14,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst14.html#XiaoZ99,https://doi.org/10.1007/BF02952487 +Xinli Huang,Targeted Local Immunization in Scale-Free Peer-to-Peer Networks.,2007,22,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst22.html#HuangZM07,https://doi.org/10.1007/s11390-007-9046-2 +Yanli Liu,A Robust and Fast Non-Local Means Algorithm for Image Denoising.,2008,23,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst23.html#LiuWCGP08,https://doi.org/10.1007/s11390-008-9129-8 +Jian-Yun Liu,Spam Short Messages Detection via Mining Social Networks.,2012,27,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst27.html#LiuZZWYHD12,https://doi.org/10.1007/s11390-012-1239-7 +Rui Yuan,ShadowEth: Private Smart Contract on Public Blockchain.,2018,33,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst33.html#YuanXCZX18,https://doi.org/10.1007/s11390-018-1839-y +Yan Zhu 0010,Provably Secure Role-Based Encryption with Revocation Mechanism.,2011,26,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst26.html#ZhuHAWW11,https://doi.org/10.1007/s11390-011-1169-9 +Amineh Amini,On Density-Based Data Streams Clustering Algorithms: A Survey.,2014,29,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst29.html#AminiTS14,https://doi.org/10.1007/s11390-014-1416-y +Chunxia Zhang,Domain-Specific Formal Ontology of Archaeology and Its Application in Knowledge Acquisition and Analysis.,2004,19,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst19.html#ZhangCGS04,https://doi.org/10.1007/BF02944899 +Guoren Wang,RPE Query Processing and Optimization Techniques for XML Databases.,2004,19,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst19.html#WangSLY04,https://doi.org/10.1007/BF02944801 +Abbas H. Hassin,Printed Arabic Character Recognition Using HMM.,2004,19,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst19.html#HassinTLZ04,https://doi.org/10.1007/BF02944755 +Huawei Wang,Estimating Subdivision Depth of Catmull-Clark Surfaces.,2004,19,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst19.html#Qin04,https://doi.org/10.1007/BF02945592 +Yidong Shen,A fixpoint semantics for stratified databases.,1993,8,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst8.html#Shen93,https://doi.org/10.1007/BF02939473 +Daniel Kunkle,Mining Frequent Generalized Itemsets and Generalized Association Rules Without Redundancy.,2008,23,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst23.html#KunkleZC08,https://doi.org/10.1007/s11390-008-9107-1 +Shaochun Zhong,Processing of uncertainty temporal relations.,1996,11,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst11.html#ZhongL96,https://doi.org/10.1007/BF02943523 +Chengqing Zong,Parsing with dynamic rule selection.,1997,12,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst12.html#ZongCH97,https://doi.org/10.1007/BF02943148 +Limsoon Wong,Protein Interactome Analysis for Countering Pathogen Drug Resistance.,2009,25,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst25.html#WongL09,https://doi.org/10.1007/s11390-010-9310-8 +Chenghong Zhang,A reasoning mechanism for deductive object-oriented databases.,1997,12,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst12.html#ZhangHS97,https://doi.org/10.1007/BF02943153 +David P. Woodruff,A Quadratic Lower Bound for Three-Query Linear Locally Decodable Codes over Any Field.,2012,27,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst27.html#Woodruff12,https://doi.org/10.1007/s11390-012-1254-8 +Jie Yang 0002,A new method for reasoning about action.,1996,11,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst11.html#Yang96,https://doi.org/10.1007/BF02943534 +Shoudan Liang,Genome-Wide Analysis of Epigenetic Modifications.,2009,25,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst25.html#Liang09,https://doi.org/10.1007/s11390-010-9303-7 +Caiming Zhang,Determining Knots by Minimizing Energy.,2006,21,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst21.html#ZhangHC06,https://doi.org/10.1007/s11390-006-0261-z +Yu Zhou,Towards a Formal Semantics for UML/MARTE State Machines Based on Hierarchical Timed Automata.,2013,28,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst28.html#ZhouBR13,https://doi.org/10.1007/s11390-013-1322-8 +Cungen Cao,Expansion nets and expansion processes of elementary net systems.,1995,10,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst10.html#Cao95,https://doi.org/10.1007/BF02943501 +Amichai Painsky,Optimal Set Cover Formulation for Exclusive Row Biclustering of Gene Expression.,2014,29,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst29.html#PainskyR14,https://doi.org/10.1007/s11390-014-1440-y +Jun Ma,Efficient parallel algorithms for some graph theory problems.,1993,8,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst8.html#MaM93,https://doi.org/10.1007/BF02939544 +Andrés Ortiz,Affinity-Based Network Interfaces for Efficient Communication on Multicore Architectures.,2013,28,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst28.html#OrtizODP13,https://doi.org/10.1007/s11390-013-1352-2 +Yingqing Xu,Line-art and its mathematical models.,1998,13,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst13.html#XuHQL98,https://doi.org/10.1007/BF02946616 +Yuan Sun,The modelling of temporal data in the relational database environment.,1995,10,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst10.html#Sun95,https://doi.org/10.1007/BF02948425 +Yongwei Miao,A Multi-Channel Salience Based Detail Exaggeration Technique for 3D Relief Surfaces.,2012,27,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst27.html#MiaoFWP12,https://doi.org/10.1007/s11390-012-1288-y +Simin He,Solving SAT by algorithm transform of Wu's method.,1999,14,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst14.html#HeZ99,https://doi.org/10.1007/BF02948788 +Tapio Pahikkala,On Unsupervised Training of Multi-Class Regularized Least-Squares Classifiers.,2014,29,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst29.html#PahikkalaAGK14,https://doi.org/10.1007/s11390-014-1414-0 +Li Tong,Nonlinear Dimensionality Reduction by Local Orthogonality Preserving Alignment.,2016,31,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst31.html#TongLWWZ16,https://doi.org/10.1007/s11390-016-1644-4 +Feng Jing,An Aided Tool for Enterprise Network Design.,2000,15,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst15.html#JingXBG00,https://doi.org/10.1007/BF02950414 +Xuan Qi,An Interlingua-Based Chinese-English MT System.,2002,17,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst17.html#QiZC02,https://doi.org/10.1007/BF02943286 +Liya Liu,Formal Reasoning About Finite-State Discrete-Time Markov Chains in HOL.,2013,28,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst28.html#LiuHT13,https://doi.org/10.1007/s11390-013-1324-6 +Yu Zhang 0008,RCCtrust: A Combined Trust Model for Electronic Community.,2009,24,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst24.html#ZhangCJSW09,https://doi.org/10.1007/s11390-009-9279-3 +Yang Liu,A Game-Based Approach for PCTL* Stochastic Model Checking with Evidence.,2016,31,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst31.html#LiuLM16,https://doi.org/10.1007/s11390-016-1621-y +Rui Hou,Constructing Edge-Colored Graph for Heterogeneous Networks.,2015,30,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst30.html#HouWCZS15,https://doi.org/10.1007/s11390-015-1551-0 +Wen Zheng,Visual Simulation of Multiple Unmixable Fluids.,2007,22,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst22.html#ZhengYP07,https://doi.org/10.1007/s11390-007-9021-y +Hyeong-Il Kim,k-Nearest Neighbor Query Processing Algorithms for a Query Region in Road Networks.,2013,28,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst28.html#KimC13,https://doi.org/10.1007/s11390-013-1359-8 +Ji-Wei Jin,Integrating Standard Dependency Schemes in QCSP Solvers.,2012,27,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst27.html#JinMZ12,https://doi.org/10.1007/s11390-012-1204-5 +Ai-Hua Wu,Annotation Based Query Answer over Inconsistent Database.,2010,25,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst25.html#WuTW10,https://doi.org/10.1007/s11390-010-9338-9 +Qiang Wang,Learning-Based Tracking of Complex Non-Rigid Motion.,2004,19,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst19.html#WangAX04,https://doi.org/10.1007/BF02944750 +Romain Pacanowski,Volumetric Vector-Based Representation for Indirect Illumination Caching.,2010,25,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst25.html#PacanowskiGSP10,https://doi.org/10.1007/s11390-010-9377-2 +Haojun Ai,Introduction to AVS Audio.,2006,21,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst21.html#AiCH06,https://doi.org/10.1007/s11390-006-0360-x +Fei-Fei Kou,Hashtag Recommendation Based on Multi-Features of Microblogs.,2018,33,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst33.html#KouDYSCLG18,https://doi.org/10.1007/s11390-018-1851-2 +Yuhai Zhao,A Novel Approach to Revealing Positive and Negative Co-Regulated Genes.,2007,22,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst22.html#ZhaoWYX07,https://doi.org/10.1007/s11390-007-9033-7 +,CONTENTS.,2015,30,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst30.html#X15,https://doi.org/10.1007/s11390-015-1605-3 +Tao Liang,Unified Parallel Lattice Structures for Block Time-Recursive Real-Valued Discrete Gabor Transforms.,2003,18,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst18.html#LiangZ03,https://doi.org/10.1007/BF02946655 +Alberto Apostolico,Verbumculus and the Discovery of Unusual Words.,2004,19,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst19.html#ApostolicoGL04,https://doi.org/10.1007/BF02944783 +Deqing Zou,UiLog: Improving Log-Based Fault Diagnosis by Log Analysis.,2016,31,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst31.html#ZouQJ16,https://doi.org/10.1007/s11390-016-1678-7 +Yaoxue Zhang,A knowledge-based specification technique for protocol development.,1993,8,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst8.html#ZhangSS93,https://doi.org/10.1007/BF02939482 +Hongyu Liang,Satisfiability with Index Dependency.,2012,27,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst27.html#LiangH12,https://doi.org/10.1007/s11390-012-1253-9 +Jian Wang,Using timed Petri net to model instruction-level loop scheduling with resource constraints.,1994,9,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst9.html#WangES94,https://doi.org/10.1007/BF02939494 +Carlos Teijeiro,Design and Implementation of an Extended Collectives Library for Unified Parallel C.,2013,28,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst28.html#TeijeiroTTDMMW13,https://doi.org/10.1007/s11390-013-1313-9 +Benjamin Hao,Global register allocation for SIMD multiprocessors.,1996,11,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst11.html#HaoPZ96,https://doi.org/10.1007/BF02943131 +Guodong Li,Distributing and Scheduling Divisible Task on Parallel Communicating Processors.,2002,17,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst17.html#LiZ02,https://doi.org/10.1007/BF02960769 +Sheng Zhong,Preface.,2008,23,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst23.html#ZhongX08,https://doi.org/10.1007/s11390-008-9133-z +Yunfeng Wang,A Formal Software Development Approach Using Refinement Calculus.,2001,16,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst16.html#YunfengJMZZ01,https://doi.org/10.1007/BF02943203 +Yu-Hang Liu,Reevaluating Data Stall Time with the Consideration of Data Access Concurrency.,2015,30,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst30.html#LiuS15,https://doi.org/10.1007/s11390-015-1517-2 +Yueming Lu,Active Network Supports for Mobile IP.,2001,16,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst16.html#LuDBW01,https://doi.org/10.1007/BF02943238 +Li-Jing Wang,A Dataflow-Oriented Programming Interface for Named Data Networking.,2018,33,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst33.html#WangLMW18,https://doi.org/10.1007/s11390-018-1812-9 +Taosong He,Volumetric Virtual Environments.,2000,15,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst15.html#He00,https://doi.org/10.1007/BF02951925 +Heyun Liu,Intention maintenance as conflict resolution upon a means-network.,1995,10,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst10.html#LiuWSW95,https://doi.org/10.1007/BF02943502 +Min Zhang,Survey on Discrete Surface Ricci Flow.,2015,30,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst30.html#ZhangZG0G15,https://doi.org/10.1007/s11390-015-1548-8 +Yu Guo,Certification of Thread Context Switching.,2010,25,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst25.html#GuoJC10,https://doi.org/10.1007/s11390-010-9368-3 +Narjes Hachani,Cooperative Answering of Fuzzy Queries.,2009,24,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst24.html#HachaniHCO09,https://doi.org/10.1007/s11390-009-9252-1 +Mingxuan Yuan,Protect You More Than Blank: Anti-Learning Sensitive User Information in the Social Networks.,2014,29,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst29.html#YuanCYM14,https://doi.org/10.1007/s11390-014-1466-1 +Yu Li,Fiducial Marker Based on Projective Invariant for Augmented Reality.,2007,22,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst22.html#LiWL07,https://doi.org/10.1007/s11390-007-9100-0 +Yangjun Chen,Magic sets revisited.,1997,12,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst12.html#Chen97,https://doi.org/10.1007/BF02943154 +Zhiyuan Chen,Recent Progress on Selected Topics in Database Research - A Report by Nine Young Chinese Researchers Working in the United States.,2003,18,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst18.html#ChenCPTWWYYZ03,https://doi.org/10.1007/BF02947114 +Fu-Li Wu,Method of Direct Texture Synthesis on Arbitrary Surfaces.,2004,19,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst19.html#WuMS04,https://doi.org/10.1007/BF02945590 +Zhi-Wei Xu,Three New Concepts of Future Computer Science.,2011,26,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst26.html#XuT11,https://doi.org/10.1007/s11390-011-1161-4 +Pierre-Louis Curien,Explicit substitutions: A short survey.,1998,13,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst13.html#Curien98,https://doi.org/10.1007/BF02946499 +Mingliang Xu,Crowd Simulation and Its Applications: Recent Advances.,2014,29,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst29.html#XuJJD14,https://doi.org/10.1007/s11390-014-1469-y +Li Shen 0002,VFSim: Concurrent Fault Simulation at Register Transfer Level.,2005,20,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst20.html#Shen05,https://doi.org/10.1007/s11390-005-0175-1 +Zhaokeng Zhao,Automated theorem proving in temporal logic: T-resolution.,1994,9,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst9.html#ZhaoDC94,https://doi.org/10.1007/BF02939486 +Wenjun Wang,The Distributed Workflow Management System - FlowAgent.,2000,15,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst15.html#WangC00,https://doi.org/10.1007/BF02948874 +Min-Hee Jang,Accurate Approximation of the Earth Mover's Distance in Linear Time.,2014,29,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst29.html#JangKFP14,https://doi.org/10.1007/s11390-014-1417-x +Huagen Wan,Direct 3D Painting with a Metaball-Based Paintbrush.,2000,15,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst15.html#WanJB00,https://doi.org/10.1007/BF02951932 +Jianhua Zhao,Checking Timed Automata for Linear Duration Properties.,2000,15,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst15.html#ZhaoH00,https://doi.org/10.1007/BF02950405 +Jun Zhang,CLASCN: Candidate Network Selection for Efficient Top- k Keyword Queries over Databases.,2007,22,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst22.html#ZhangPWN07,https://doi.org/10.1007/s11390-007-9026-6 +Yuxin Ding,Design and Implementation of Java Just-in-Time Compiler.,2000,15,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst15.html#YuxinJH00,https://doi.org/10.1007/BF02948840 +Ling Li,Inflatable Models.,2006,21,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst21.html#LiV06,https://doi.org/10.1007/s11390-006-0154-1 +Yuning Sun,ICTSSE: An object-oriented IC test software supporting environment.,1995,10,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst10.html#SunWS95,https://doi.org/10.1007/BF02948340 +Zhifeng Xie,Multi-Exposure Motion Estimation Based on Deep Convolutional Networks.,2018,33,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst33.html#XieGZZM18,https://doi.org/10.1007/s11390-018-1833-4 +Sibabrata Ray,Reconfigurable optical bus and performance optimization.,1996,11,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst11.html#RayJ96,https://doi.org/10.1007/BF02943136 +Xusheng Xiao,Roundtable: Research Opportunities and Challenges for Large-Scale Software Systems.,2016,31,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst31.html#XiaoLLSPW16,https://doi.org/10.1007/s11390-016-1668-9 +Haiming Chen,Practical Type Checking of Functions Defined on Context-Free Languages.,2004,19,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst19.html#ChenD04,https://doi.org/10.1007/BF02973447 +Osman Hasan,Formally Analyzing Expected Time Complexity of Algorithms Using Theorem Proving.,2010,25,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst25.html#HasanT10,https://doi.org/10.1007/s11390-010-9407-0 +Zhi Han,Incremental Alignment Manifold Learning.,2011,26,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst26.html#HanMXG10,https://doi.org/10.1007/s11390-011-9422-9 +Huai-Yu Wu,Model Transduction for Triangle Meshes.,2010,25,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst25.html#WuPZM10,https://doi.org/10.1007/s11390-010-9347-8 +Swapan Bhattacharya,Code Based Analysis for Object-Oriented Systems.,2006,21,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst21.html#BhattacharyaK06,https://doi.org/10.1007/s11390-006-0965-0 +Sungjin Im,Envy-Free Pricing with General Supply Constraints for Unit Demand Consumers.,2012,27,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst27.html#ImLW12,https://doi.org/10.1007/s11390-012-1256-6 +Kui Fang,C 2-( C 3-) continuous interpolation spline curve and surface.,1998,13,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst13.html#FangTZ98,https://doi.org/10.1007/BF02943192 +Yu Dai,QoS-Driven Self-Healing Web Service Composition Based on Performance Prediction.,2009,24,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst24.html#DaiYZ09,https://doi.org/10.1007/s11390-009-9221-8 +Weisong Shi,Using Confidence Interval to Summarize the Evaluating Results of DSM Systems.,2000,15,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst15.html#ShiTJ00,https://doi.org/10.1007/BF02951929 +Mohammad Tanhaei,A Feature Model Based Framework for Refactoring Software Product Line Architecture.,2016,31,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst31.html#TanhaeiHM16,https://doi.org/10.1007/s11390-016-1674-y +Hui Tian 0001,Random Walk Routing in WSNs with Regular Topologies.,2006,21,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst21.html#TianSM06,https://doi.org/10.1007/s11390-006-0496-8 +Ningchuan Shen,R-calculus for ELP: An operational approach to knowledge base maintenance.,1997,12,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst12.html#ShenL97,https://doi.org/10.1007/BF02943141 +Xuekai Du,LTSS: Load-Adaptive Traffic Steering and Forwarding for Security Services in Multi-Tenant Cloud Datacenters.,2017,32,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst32.html#DuLDWW17,https://doi.org/10.1007/s11390-017-1799-7 +Wei-Lin Li,On Constrained Facility Location Problems.,2008,23,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst23.html#LiZZ08,https://doi.org/10.1007/s11390-008-9172-5 +Sui-Xiang Gao,Decision Tree Complexity of Graph Properties with Dimension at Most 5.,2000,15,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst15.html#GaoL00,https://doi.org/10.1007/BF02950404 +Naihong Wei,A neural network approach to fault diagnosis in analog circuits.,1996,11,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst11.html#WeiYT96,https://doi.org/10.1007/BF02951617 +Kang Li,Robust Visual Tracking Based on Convolutional Features with Illumination and Occlusion Handing.,2018,33,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst33.html#LiHY18,https://doi.org/10.1007/s11390-017-1764-5 +Jie Hao,Word Spotting Based on a posterior Measure of Keyword Confidence.,2002,17,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst17.html#HaoL02,https://doi.org/10.1007/BF02943289 +Keping Long,A Novel Framework for IP DiffServ over Optical Burst Switching Networks.,2004,19,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst19.html#LongLTW04,https://doi.org/10.1007/BF02973459 +Zhanyi Hu,The Number of Independent Kruppa Constraints from N Images.,2006,21,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst21.html#HuWWM06,https://doi.org/10.1007/s11390-006-0209-3 +Yi-Fei Chen,Fuzzy Distance-Based Range Queries over Uncertain Moving Objects.,2012,27,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst27.html#ChenQLL12,https://doi.org/10.1007/s11390-012-1229-9 +Mahsa Chitsaz,Software Agent with Reinforcement Learning Approach for Medical Image Segmentation.,2011,26,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst26.html#ChitsazW11,https://doi.org/10.1007/s11390-011-9431-8 +Ji-Hong Yan,A Constraint Satisfaction Neural Network and Heuristic Combined Approach for Concurrent Activities Scheduling.,2003,18,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst18.html#YanW03,https://doi.org/10.1007/BF02948893 +Xiang-Dong Hu,Design and Application of Instruction Set Simulator on Multi-Core Verification.,2010,25,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst25.html#HuGZGW10,https://doi.org/10.1007/s11390-010-9323-3 +Liang Chen,Integrating mRNA Decay Information into Co-Regulation Study.,2005,20,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst20.html#ChenZ05,https://doi.org/10.1007/s11390-005-0434-1 +Peng Zou,New Meta-Heuristic for Combinatorial Optimization Problems: Intersection Based Scaling.,2004,19,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst19.html#ZouZWCG04,https://doi.org/10.1007/BF02973434 +Chunhua Yang,Fault-Tolerant Scheduling for Real-Time Embedded Control Systems .,2004,19,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst19.html#YangDG04,https://doi.org/10.1007/BF02944797 +Jian Yu,Synthesizing Service Composition Models on the Basis of Temporal Business Rules.,2008,23,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst23.html#YuHHJFM08,https://doi.org/10.1007/s11390-008-9196-x +Xinmin Tian,Granularity analysis for exploiting adaptive parallelism of declarative programs on multiprocessors.,1994,9,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst9.html#TianWSZW94,https://doi.org/10.1007/BF02939495 +Zongtian Liu,Research on decompiling technology.,1994,9,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst9.html#LiuC94,https://doi.org/10.1007/BF02943578 +Weiwei Ni,HilAnchor: Location Privacy Protection in the Presence of Users' Preferences.,2012,27,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst27.html#NiZC12,https://doi.org/10.1007/s11390-012-1231-2 +Wen-Guang Chen,Preface.,2015,30,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst30.html#Chen15,https://doi.org/10.1007/s11390-015-1499-0 +Jianqiang Zhou,An adaptive strategy integrating locking with optimistic concurrency control.,1993,8,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst8.html#ZhouXSZ93,https://doi.org/10.1007/BF02939542 +Chiou-Yng Lee,Low-Complexity Bit-Parallel Multiplier over GF(2m) Using Dual Basis Representation.,2006,21,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst21.html#LeeHJ06,https://doi.org/10.1007/s11390-006-0887-x +Zhi-Hua Zhou,Adapt Bagging to Nearest Neighbor Classifiers.,2005,20,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst20.html#ZhouY05,https://doi.org/10.1007/s11390-005-0005-5 +Ming-Jie Liu,Improved Linear Attacks on the Chinese Block Cipher Standard.,2014,29,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst29.html#LiuC14,https://doi.org/10.1007/s11390-014-1495-9 +Javier Tejada-Cárcamo,Unsupervised WSD by Finding the Predominant Sense Using Context as a Dynamic Thesaurus.,2010,25,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst25.html#Tejada-CarcamoCGH10,https://doi.org/10.1007/s11390-010-9385-2 +Nem Khan Dim,Designing Motion Gesture Interfaces in Mobile Phones for Blind People.,2014,29,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst29.html#DimR14,https://doi.org/10.1007/s11390-014-1470-5 +Fupei Xu,A general architecture model of CPDL Interpreter.,1995,10,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst10.html#XuLJ95,https://doi.org/10.1007/BF02948342 +Kaihuai Qin,Fast ray tracing NURBS surfaces.,1996,11,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst11.html#QinGT96,https://doi.org/10.1007/BF02943518 +Dan Hao,Interactive Fault Localization Using Test Information.,2009,24,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst24.html#HaoZXMS09,https://doi.org/10.1007/s11390-009-9270-z +Guofei Hu,Robust Mesh Smoothing.,2004,19,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst19.html#HuPF04,https://doi.org/10.1007/BF02944753 +Huaiyu Wan,Discovering Typed Communities in Mobile Social Networks.,2012,27,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst27.html#WanLWH12,https://doi.org/10.1007/s11390-012-1237-9 +Xiaofei Xu,Dynamic Organization and Methodology for Agile Virtual Enterprises.,2000,15,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst15.html#XuDQZ00,https://doi.org/10.1007/BF02948873 +Colin Stirling,Playing games and proving properties of concurrent systems.,1998,13,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst13.html#Stirling98,https://doi.org/10.1007/BF02946488 +Yun Wang,Research on protocol migration.,1996,11,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst11.html#WangGD96,https://doi.org/10.1007/BF02951623 +Yiyun Chen,Nonterminating rewritings with head boundedness.,1993,8,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst8.html#Chen93,https://doi.org/10.1007/BF02939479 +Kaihuai Qin,Extrapolating acceleration algorithms for finding B-Spline intersections using recursive subdivision techniques.,1994,9,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst9.html#QinFS94,https://doi.org/10.1007/BF02939488 +Chengqi Zhang,Isomorphic transformations of uncertainties for incorporating EMYCIN-style and PROSPECTOR-style systems into a distributed expert system.,1999,14,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst14.html#ZhangL99,https://doi.org/10.1007/BF02948741 +Lejian Liao,Minimal model semantics for sorted constraint representation.,1995,10,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst10.html#LiaoS95,https://doi.org/10.1007/BF02948339 +Qilong Han,An improved bottom-up method for implementing equational programming language.,1994,9,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst9.html#HanLS94,https://doi.org/10.1007/BF02939487 +Hong-Cheng Huang,Interference-Limited Device-to-Device Multi-User Cooperation Scheme for Optimization of Edge Networking.,2016,31,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst31.html#HuangZZX16,https://doi.org/10.1007/s11390-016-1685-8 +Fengfeng Zhou,Minimizing ADMs on WDM Directed Fiber Trees.,2003,18,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst18.html#ZhouCXG03,https://doi.org/10.1007/BF02945460 +Avraham Trakhtman,Some Aspects of Synchronization of DFA.,2008,23,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst23.html#Trakhtman08,https://doi.org/10.1007/s11390-008-9165-4 +Li-Wei Liu,Learning Structure Models with Context Information for Visual Tracking.,2013,28,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst28.html#LiuA13,https://doi.org/10.1007/s11390-013-1380-y +Jun Bi,An approach to concurrent TTCN test generation.,1999,14,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst14.html#BiW99,https://doi.org/10.1007/BF02951883 +Qingyi Hua,An approach to user interface specification with attribute grammars.,1997,12,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst12.html#Hua97,https://doi.org/10.1007/BF02943146 +He-Fei Ling,PM-DFT: A New Local Invariant Descriptor Towards Image Copy Detection.,2011,26,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst26.html#LingWYZL11,https://doi.org/10.1007/s11390-011-1155-2 +Shengchao Qin,An Algebraic Hardware/Software Partitioning Algorithm.,2002,17,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst17.html#QinHQZ02,https://doi.org/10.1007/BF02947306 +Chaochen Zhou,An overview of Duration Calculus.,1998,13,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst13.html#Zhou98a,https://doi.org/10.1007/BF02946497 +Shuo Shang,Dynamic Shortest Path Monitoring in Spatial Networks.,2016,31,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst31.html#ShangCWGW16,https://doi.org/10.1007/s11390-016-1653-3 +Chong Wang,VFM: Visual Feedback Model for Robust Object Recognition.,2015,30,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst30.html#WangH15,https://doi.org/10.1007/s11390-015-1526-1 +Ying Xu 0001,Preface.,2009,25,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst25.html#XuLJ09,https://doi.org/10.1007/s11390-010-9299-z +Zhigang Yin,A Novel RT-Level Behavioral Description Based ATPG Method.,2003,18,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst18.html#YinMLL03,https://doi.org/10.1007/BF02948900 +Ximing Li,Tuning the Learning Rate for Stochastic Variational Inference.,2016,31,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst31.html#LiO16,https://doi.org/10.1007/s11390-016-1636-4 +Ning Chen,Memorizable Interactive Proof and Zero-Knowledge Proof Systems.,2004,19,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst19.html#ChenR04,https://doi.org/10.1007/BF02973457 +Joonhoon Lee,Goal-Based Automated Code Generation in Self-Adaptive System.,2010,25,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst25.html#LeePYL10,https://doi.org/10.1007/s11390-010-9393-2 +,Contents.,2014,29,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst29.html#X14b,https://doi.org/10.1007/s11390-014-1497-7 +Jin-Tao Meng,Power Adjusting Algorithm: A New Cross-Layer Power Saving Mechanism for Mobile Ad-Hoc Networks.,2013,28,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst28.html#MengYFT13,https://doi.org/10.1007/s11390-013-1311-y +Guoqing Wu,Automated analysis of the SCR-style requirements specifications.,1999,14,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst14.html#WuLYT99,https://doi.org/10.1007/BF02948743 +Yan Li,Self-Adaptive Resource Management for Large-Scale Shared Clusters.,2010,25,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst25.html#LiCSZJCM10,https://doi.org/10.1007/s11390-010-9379-0 +Bin Li,A surface rendering approach in 3D rectilinear datafield.,1998,13,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst13.html#LiLL98,https://doi.org/10.1007/BF02943190 +Yong-You Ma,Realistic Modeling and Animation of Human Body Based on Scanned Data.,2004,19,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst19.html#MaZJ04,https://doi.org/10.1007/BF02944754 +Hong Lin,Program construction by verifying specification.,1998,13,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst13.html#LinC98,https://doi.org/10.1007/BF02946503 +Long Zheng 0001,Energy Efficiency of a Multi-Core Processor by Tag Reduction.,2011,26,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst26.html#ZhengDOJGM11,https://doi.org/10.1007/s11390-011-1149-0 +Yuefei Sui,Bounded recursively enumerable sets and degrees.,1993,8,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst8.html#Sui93,https://doi.org/10.1007/BF02939527 +Fei Xia,A Survey of Phase Change Memory Systems.,2015,30,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst30.html#XiaJXS15,https://doi.org/10.1007/s11390-015-1509-2 +Xian-Chao Zhang,Max-Flow Problem in Undirected Planar Networks with Node Capacities Being in NC.,2004,19,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst19.html#ZhangWC04,https://doi.org/10.1007/BF02973440 +José C. Pereira,An Optimized Divide-and-Conquer Algorithm for the Closest-Pair Problem in the Planar Case.,2012,27,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst27.html#PereiraL12,https://doi.org/10.1007/s11390-012-1272-6 +Cuiping Li,Efficient Incremental Maintenance for Distributive and Non-Distributive Aggregate Functions.,2006,21,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst21.html#LiW06,https://doi.org/10.1007/s11390-006-0052-6 +Zhongdong Qi,Design-Rule-Aware Congestion Model with Explicit Modeling of Vias and Local Pin Access Paths.,2015,30,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst30.html#QiCZ15,https://doi.org/10.1007/s11390-015-1515-4 +Ji Wang,Demand-Driven Memory Leak Detection Based on Flow- and Context-Sensitive Pointer Analysis.,2009,24,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst24.html#WangMDXL09,https://doi.org/10.1007/s11390-009-9229-0 +De-Yi Li,Preface.,2010,25,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst25.html#LiLH10,https://doi.org/10.1007/s11390-010-9391-4 +Fei Wang,Semantic and Structural Analysis of TV Diving Programs.,2004,19,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst19.html#WangLZL04,https://doi.org/10.1007/BF02973456 +Swapan Bhattacharya,CORBA-Based Analysis of Multi Agent Behavior.,2005,20,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst20.html#BhattacharyaBB05,https://doi.org/10.1007/s11390-005-0013-5 +Heng Hu,HSM2: A New Heuristic State Minimization Algorithm for Finite State Machine.,2004,19,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst19.html#HuXB04,https://doi.org/10.1007/BF02945600 +Meirui Xu,A VLSI algorithm for calculating the tree to tree distance.,1993,8,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst8.html#XuL93,https://doi.org/10.1007/BF02946587 +Guodong Zhou,Kernel-based semantic relation detection and classification via enriched parse tree structure.,2011,26,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst26.html#ZhouZ10,https://doi.org/10.1007/s11390-011-9414-9 +Shengli Liu,Forgeability of Wang-Tang-Li's ID-Based Restrictive Partially Blind Signature Scheme.,2008,23,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst23.html#LiuCZ08,https://doi.org/10.1007/s11390-008-9128-9 +Yong-Quan Dong,A Query Interface Matching Approach Based on Extended Evidence Theory for Deep Web.,2010,25,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst25.html#DongLDP10,https://doi.org/10.1007/s11390-010-9343-z +Jie Wu 0001,Fault-Tolerant Tree-Based Multicasting in Mesh Multicomputers.,2001,16,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst16.html#JieX01,https://doi.org/10.1007/BF02948957 +Zhiqiang Lao,A knowledge representation model for video-based animation.,1998,13,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst13.html#LaoP98,https://doi.org/10.1007/BF02943191 +Xin He,Wide Operational Range Processor Power Delivery Design for Both Super-Threshold Voltage and Near-Threshold Voltage Computing.,2016,31,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst31.html#HeYHL16,https://doi.org/10.1007/s11390-016-1625-7 +Guodong Zhou,Learning Noun Phrase Anaphoricity in Coreference Resolution via Label Propagation.,2011,26,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst26.html#ZhouK10,https://doi.org/10.1007/s11390-011-9413-x +Hong Shen 0001,Improved Approximate Detection of Duplicates for Data Streams Over Sliding Windows.,2008,23,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst23.html#ShenZ08,https://doi.org/10.1007/s11390-008-9192-1 +Xishun Zhao,Regular Disjunction-Free Default Theories.,2004,19,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst19.html#Zhao04,https://doi.org/10.1007/BF02944903 +Pengjun Wan,Maximizing Networking Capacity in Multi-Channel Multi-Radio Wireless Networks.,2014,29,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst29.html#WanW14,https://doi.org/10.1007/s11390-014-1477-y +R. Raghavendra,Multimodal Biometric Score Fusion Using Gaussian Mixture Model and Monte Carlo Method.,2010,25,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst25.html#RaghavendraRK10,https://doi.org/10.1007/s11390-010-9364-7 +Jun Song,Modeling distributed multimedia synchronization with DSPN.,1998,13,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst13.html#SongG98,https://doi.org/10.1007/BF02948503 +Liyi Xiao,A New Synchronization Algorithm for VHDL-AMS Simulation.,2002,17,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst17.html#XiaoYL02,https://doi.org/10.1007/BF02949822 +Xumin Nie,Renaming a Set of Non-Horn Clauses.,2000,15,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst15.html#NieG00,https://doi.org/10.1007/BF02950403 +Can Cheng,Developer Role Evolution in Open Source Software Ecosystem: An Explanatory Study on GNOME.,2017,32,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst32.html#ChengLLZL17,https://doi.org/10.1007/s11390-017-1728-9 +Yanping Deng,Existence and uniqueness in shape from shading.,1997,12,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst12.html#DengL97,https://doi.org/10.1007/BF02943145 +Jie Liang,Improved Collision Attack on Hash Function MD5.,2007,22,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst22.html#LiangL07,https://doi.org/10.1007/s11390-007-9010-1 +Xueyan Wang,Spear and Shield: Evolution of Integrated Circuit Camouflaging.,2018,33,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst33.html#WangZCQ18,https://doi.org/10.1007/s11390-018-1807-6 +Zhiyuan Li,Simultaneous Minimization of Capacity and Conflict Misses.,2007,22,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst22.html#Li07,https://doi.org/10.1007/s11390-007-9069-8 +Xiaogang Jin 0001,Geometric Deformations Based on 3D Volume Morphing.,2001,16,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst16.html#JinWP01,https://doi.org/10.1007/BF02948962 +Licheng Chen,MIMS: Towards a Message Interface Based Memory System.,2014,29,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst29.html#ChenCRHCLB14,https://doi.org/10.1007/s11390-014-1428-7 +Yingquan Zhou,A kind of Multistage Interconnection Networks with multiple paths.,1996,11,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst11.html#ZhouM96,https://doi.org/10.1007/BF02948483 +Jin-Qi Zhu,From Interest to Location: Neighbor-Based Friend Recommendation in Social Media.,2015,30,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst30.html#ZhuLM15,https://doi.org/10.1007/s11390-015-1593-3 +Gong-Qing Wu,Web News Extraction via Tag Path Feature Fusion Using DS Theory.,2016,31,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst31.html#WuLLW16,https://doi.org/10.1007/s11390-016-1655-1 +Yongwei Miao,Differentials-Based Segmentation and Parameterization for Point-Sampled Surfaces.,2007,22,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst22.html#MiaoFXPF07,https://doi.org/10.1007/s11390-007-9088-5 +Claudia Canali,A Novel Intermediary Framework for Dynamic Edge Service Composition.,2012,27,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst27.html#CanaliCMSS12,https://doi.org/10.1007/s11390-012-1223-2 +Shu-Tao Xia,A Note on the Stopping Redundancy of Linear Codes.,2006,21,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst21.html#Xia06,https://doi.org/10.1007/s11390-006-0950-7 +Shengyuan Wang,A Pragmatic Behavior Subtyping Relation Based on Both States and Actions.,2001,16,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst16.html#ShengyuanJC01,https://doi.org/10.1007/BF02948959 +Hua Luan,Cache-Conscious Data Cube Computation on a Modern Processor.,2009,24,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst24.html#LuanDW09a,https://doi.org/10.1007/s11390-009-9253-0 +Xin Yao 0001,Recent Advances in Evolutionary Computation.,2006,21,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst21.html#YaoX06,https://doi.org/10.1007/s11390-006-0001-4 +Hao Lang,Query Performance Prediction for Information Retrieval Based on Covering Topic Score.,2008,23,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst23.html#LangWJLDL08,https://doi.org/10.1007/s11390-008-9155-6 +Shangmin Luan,A Programmable Approach to Maintenance of a Finite Knowledge Base.,2003,18,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst18.html#LuanDL03,https://doi.org/10.1007/BF02946657 +Haibo Ye,Infrastructure-Free Floor Localization Through Crowdsourcing.,2015,30,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst30.html#YeGTL15,https://doi.org/10.1007/s11390-015-1597-z +Guohua Jin,Optimizing FORTRAN programs for hierarchical memory parallel processing systems.,1993,8,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst8.html#JinC93,https://doi.org/10.1007/BF02939528 +Yihua Zhu,A General Probability Formula of the Number of Location Areas' Boundaries Crossed by a Mobile Between Two Successive Call Arrivals.,2004,19,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst19.html#ZhuSXGL04,https://doi.org/10.1007/BF02944795 +Jian Zhang,Automatic construction of finite algebras.,1995,10,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst10.html#Zhang95a,https://doi.org/10.1007/BF02943488 +Qing-Liang Lin,Fast Image Correspondence with Global Structure Projection.,2012,27,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst27.html#LinSSXCM12,https://doi.org/10.1007/s11390-012-1304-2 +Hanli Zhao,Structure-Aware Nonlocal Optimization Framework for Image Colorization.,2015,30,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst30.html#ZhaoNLJP15,https://doi.org/10.1007/s11390-015-1538-x +Yingchun Lei,Research on Scheduling Algorithms in Web Cluster Servers.,2003,18,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst18.html#LeiGZL03,https://doi.org/10.1007/BF02945458 +Wei Wang 0003,Hybrid Nanoelectronics: Future of Computer Technology.,2006,21,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst21.html#WangLH06,https://doi.org/10.1007/s11390-006-0871-5 +Xiao-Jun Xu,Reverse Furthest Neighbors Query in Road Networks.,2017,32,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst32.html#XuBYZTGX17,https://doi.org/10.1007/s11390-017-1711-5 +Yinhe Han,Test Resource Partitioning Based on Efficient Response Compaction for Test Time and Tester Channels Reduction.,2005,20,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst20.html#HanLLC05,https://doi.org/10.1007/s11390-005-0201-3 +Yong Liao,End-to-End Utilization Control for Aperiodic Tasks in Distributed Real-Time Systems.,2007,22,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst22.html#LiaoCXZS07,https://doi.org/10.1007/s11390-007-9019-5 +Shijun Wang,Research and design of a fuzzy neural expert system.,1995,10,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst10.html#WangW95,https://doi.org/10.1007/BF02948421 +Zhang-Lin Cheng,Simple Reconstruction of Tree Branches from a Single Range Image.,2007,22,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst22.html#ChengZC07,https://doi.org/10.1007/s11390-007-9095-6 +Rui Xue,New Semantic Model for Authentication Protocols in ASMs.,2004,19,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst19.html#XueF04,https://doi.org/10.1007/BF02944758 +Zhimin Gao,CoC: A Unified Distributed Ledger Based Supply Chain Management System.,2018,33,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst33.html#GaoXCZLS18,https://doi.org/10.1007/s11390-018-1816-5 +Bin Chen,FCV1: A new fast greedy covering algorithm.,1998,13,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst13.html#ChenH98,https://doi.org/10.1007/BF02946625 +Chun-Meng Kang,Adaptive Photon Mapping Based on Gradient.,2016,31,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst31.html#KangWXMS16,https://doi.org/10.1007/s11390-016-1622-x +Xueying Qin,Anti-Aliased Rendering of Water Surface.,2004,19,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst19.html#QinNHNP04,https://doi.org/10.1007/BF02945588 +Zhi-Wei Xu,Usability Issues of Grid System Software.,2006,21,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst21.html#XuZL06,https://doi.org/10.1007/s11390-006-0641-4 +Po Hu,Exploring the Interactions of Storylines from Informative News Events.,2014,29,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst29.html#HuHZ14,https://doi.org/10.1007/s11390-014-1445-6 +Wei Du 0001,An Uncertainty Enhanced Trust Evolution Strategy for e-Science.,2010,25,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst25.html#DuCL10,https://doi.org/10.1007/s11390-010-9401-6 +Daming Zhu,Hardness and Methods to Solve CLIQUE.,2001,16,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst16.html#ZhuLM01,https://doi.org/10.1007/BF02948987 +Shuchang Zhou,Balanced Quantization: An Effective and Efficient Approach to Quantized Neural Networks.,2017,32,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst32.html#ZhouWWHZ17,https://doi.org/10.1007/s11390-017-1750-y +Youngjun Kim,Gallbladder Removal Simulation for Laparoscopic Surgery Training: A Hybrid Modeling Method.,2013,28,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst28.html#KimCKP13,https://doi.org/10.1007/s11390-013-1351-3 +Yimin Ye,Chinese TrueType font support in X window.,1999,14,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst14.html#YeS99,https://doi.org/10.1007/BF02952484 +Long Li,Certifying Concurrent Programs Using Transactional Memory.,2009,24,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst24.html#LiZCL09,https://doi.org/10.1007/s11390-009-9204-9 +Gang Chen,Dependent type system with subtyping (I) type level transitivity elimination.,1998,13,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst13.html#Chen98a,https://doi.org/10.1007/BF02946500 +Ozgur Sinanoglu,Low Cost Scan Test by Test Correlation Utilization.,2007,22,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst22.html#Sinanoglu07,https://doi.org/10.1007/s11390-007-9089-4 +Jian Wang,Trace software pipelining.,1995,10,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst10.html#WangKE95,https://doi.org/10.1007/BF02943507 +Jishun Kuang,IDDT: Fundamentals and Test Generation.,2003,18,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst18.html#KuangYZM03,https://doi.org/10.1007/BF02948899 +Yun Zhang,Multi-Factor Duplicate Question Detection in Stack Overflow.,2015,30,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst30.html#ZhangLXS15,https://doi.org/10.1007/s11390-015-1576-4 +Linpeng Huang,Hierarchical bulk synchronous parallel model and performance optimization.,1999,14,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst14.html#HuangSY99,https://doi.org/10.1007/BF02948510 +Ruofeng Tong,A Hybrid Model for Smoke Simulation.,2002,17,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst17.html#TongD02,https://doi.org/10.1007/BF02943292 +Peiyan Yuan,Impact of Strangers on Opportunistic Routing Performance.,2013,28,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst28.html#YuanMD13,https://doi.org/10.1007/s11390-013-1357-x +Joo Hyuk Jeon,An Efficient and Spam-Robust Proximity Measure Between Communication Entities.,2013,28,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst28.html#JeonSKLPK13,https://doi.org/10.1007/s11390-013-1339-z +Hongzhou Li,Nonuniform lowness and strong nonuniform lowness.,1995,10,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst10.html#LiL95,https://doi.org/10.1007/BF02943492 +Zhao-Xia Wang,QoS Routing Optimization Strategy Using Genetic Algorithm in Optical Fiber Communication Networks.,2004,19,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst19.html#WangCY04,https://doi.org/10.1007/BF02944799 +Songmao Zhang,Story Parsing Grammar.,1994,9,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst9.html#Zhang94,https://doi.org/10.1007/BF02939503 +Jaime Lloret,GBP-WAHSN: A Group-Based Protocol for Large Wireless Ad Hoc and Sensor Networks.,2008,23,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst23.html#LloretGTB08,https://doi.org/10.1007/s11390-008-9147-6 +Hao Wang,Dominant Skyline Query Processing over Multiple Time Series.,2013,28,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst28.html#WangWXN13,https://doi.org/10.1007/s11390-013-1363-z +Yulai Zhao,An Energy-Efficient Instruction Scheduler Design with Two-Level Shelving and Adaptive Banking.,2007,22,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst22.html#ZhaoLTC07,https://doi.org/10.1007/s11390-007-9001-2 +Jizhao Zhu,Modeling the Correlations of Relations for Knowledge Graph Embedding.,2018,33,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst33.html#ZhuJXQC18,https://doi.org/10.1007/s11390-018-1821-8 +Xiaofen Wang,Secure Channel Free ID-Based Searchable Encryption for Peer-to-Peer Group.,2016,31,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst31.html#WangMCZ16,https://doi.org/10.1007/s11390-016-1676-9 +Surendra Byna,Taxonomy of Data Prefetching for Multicore Processors.,2009,24,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst24.html#BynaCS09,https://doi.org/10.1007/s11390-009-9233-4 +Anguo Ma,Accurate and Simplified Prediction of AVF for Delay and Energy Efficient Cache Design.,2011,26,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst26.html#MaCX11,https://doi.org/10.1007/s11390-011-1150-7 +Xuejun Yang,Progress and Challenges in High Performance Computer Technology.,2006,21,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst21.html#YangDH06,https://doi.org/10.1007/s11390-006-0674-8 +Wei Mi,PARBLO: Page-Allocation-Based DRAM Row Buffer Locality Optimization.,2009,24,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst24.html#MiFJCX09,https://doi.org/10.1007/s11390-009-9297-1 +Taghi M. Khoshgoftaar,Improving Software Quality Prediction by Noise Filtering Techniques.,2007,22,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst22.html#KhoshgoftaarR07,https://doi.org/10.1007/s11390-007-9054-2 +Xiansi Tan,An Analytical Framework for Performance of Different Fault Restoration Policies with QoS Constraints in MPLS Networks.,2004,19,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst19.html#TanYOCM04,https://doi.org/10.1007/BF02944793 +Fangmin Song,The expansion postponement in Pure Type Systems.,1997,12,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst12.html#Song97,https://doi.org/10.1007/BF02947207 +Qi Ge,An Improved Algorithm for Finding the Closest Pair of Points.,2006,21,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst21.html#GeWZ06,https://doi.org/10.1007/s11390-006-0027-7 +Ying Chen,A Novel Memory Structure for Embedded Systems: Flexible Sequential and Random Access Memory.,2005,20,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst20.html#ChenRPLB05,https://doi.org/10.1007/s11390-005-0596-x +Seyed Mehdi Tabatabaei,Cognitive Power Management in Wireless Sensor Networks.,2015,30,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst30.html#TabatabaeiHD15,https://doi.org/10.1007/s11390-015-1600-8 +Tun Li,Automatic Circuit Extractor for HDL Description Using Program Slicing.,2004,19,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst19.html#LiGL04,https://doi.org/10.1007/BF02945599 +Ming Li 0001,Can We Determine a Protein Structure Quickly?,2009,25,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst25.html#Li09,https://doi.org/10.1007/s11390-010-9308-2 +Chun-Meng Kang,Coherent Photon Mapping on the Intel MIC Architecture.,2015,30,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst30.html#KangWWXM15,https://doi.org/10.1007/s11390-015-1542-1 +Jeff Huang 0001,Debugging Concurrent Software: Advances and Challenges.,2016,31,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst31.html#HuangZ16,https://doi.org/10.1007/s11390-016-1669-8 +Zhen-Hao Zhang,Active Store Window: Enabling Far Store-Load Forwarding with Scalability and Complexity-Efficiency.,2012,27,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst27.html#ZhangWTYLW12,https://doi.org/10.1007/s11390-012-1263-7 +Xu Sun,Predicting Chinese Abbreviations from Definitions: An Empirical Learning Approach Using Support Vector Regression.,2008,23,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst23.html#SunWW08,https://doi.org/10.1007/s11390-008-9156-5 +Ehab Z. Elfeky,Analyzing the Simple Ranking and Selection Process for Constrained Evolutionary Optimization.,2008,23,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst23.html#ElfekySE08,https://doi.org/10.1007/s11390-008-9109-z +Changxuan Wan,Structural Join and Staircase Join Algorithms of Sibling Relationship.,2007,22,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst22.html#WanL07,https://doi.org/10.1007/s11390-007-9023-9 +Du Lin,A New Indexing Method Based on Word Proximity for Chinese Text Retrieval.,2000,15,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst15.html#LinS00,https://doi.org/10.1007/BF02948815 +Qingyi Hua,A prototypical 3D graphical visualizer for object-oriented systems.,1996,11,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst11.html#HuaBD96,https://doi.org/10.1007/BF02947216 +Jack B. Dennis,Principles to Support Modular Software Construction.,2017,32,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst32.html#Dennis17,https://doi.org/10.1007/s11390-017-1702-6 +Marcelo Armentano,Topology-Based Recommendation of Users in Micro-Blogging Communities.,2012,27,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst27.html#ArmentanoGA12,https://doi.org/10.1007/s11390-012-1249-5 +Gang Huang 0001,Performance Aware Service Pool in Dependable Service Oriented Architecture.,2006,21,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst21.html#HuangZLMC06,https://doi.org/10.1007/s11390-006-0565-z +Hong Zhu,Dynamic Damage Recovery for Web Databases.,2010,25,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst25.html#ZhuFFL10,https://doi.org/10.1007/s11390-010-9344-y +Ying Sai,Analyzing and Mining Ordered Information Tables.,2003,18,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst18.html#SaiY03,https://doi.org/10.1007/BF02945466 +Kaile Su,Constraints on Extensions of a Default Theory.,2001,16,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst16.html#Su01,https://doi.org/10.1007/BF02948981 +Zongmin Ma,Using multivalued logic in relational database containing null value.,1996,11,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst11.html#MaY96,https://doi.org/10.1007/BF02948486 +Peng Du,GPU Accelerated Real-Time Collision Handling in Virtual Disassembly.,2015,30,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst30.html#DuZPW15,https://doi.org/10.1007/s11390-015-1541-2 +Seong Woo Kwak,Checkpoint Management with Double Modular Redundancy Based on the Probability of Task Completion.,2012,27,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst27.html#KwakYY12,https://doi.org/10.1007/s11390-012-1222-3 +Faming Li,Monocular Video Guided Garment Simulation.,2015,30,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst30.html#LiCZLGF15,https://doi.org/10.1007/s11390-015-1543-0 +Shouxin Wang,A Cloud-Based Trust Model for Evaluating Quality of Web Services.,2010,25,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst25.html#WangZWQ10,https://doi.org/10.1007/s11390-010-9394-1 +Feng Wang,Optimizing Linpack Benchmark on GPU-Accelerated Petascale Supercomputer.,2011,26,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst26.html#WangYDCYX11,https://doi.org/10.1007/s11390-011-0184-1 +Gert Jervan,Test Time Minimization for Hybrid BIST of Core-Based Systems.,2006,21,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst21.html#JervanEPUJ06,https://doi.org/10.1007/s11390-006-0907-x +Chengjiang Lin,Strategy and simulation of adaptive RID for distributed dynamic load balancing in parallel systems.,1997,12,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst12.html#LinL97,https://doi.org/10.1007/BF02951330 +Hongyan Liu,A Fast Scalable Classifier Tightly Integrated with RDBMS.,2002,17,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst17.html#LiuLC02,https://doi.org/10.1007/BF02962207 +Amin Nikanjam,Exploiting Bivariate Dependencies to Speedup Structure Learning in Bayesian Optimization Algorithm.,2012,27,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst27.html#NikanjamR12,https://doi.org/10.1007/s11390-012-1285-1 +Xiaohui Wang,Affective Image Colorization.,2012,27,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst27.html#WangJLC12,https://doi.org/10.1007/s11390-012-1290-4 +Zhaopeng Li,A Shape Graph Logic and A Shape System.,2013,28,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst28.html#LiZC13,https://doi.org/10.1007/s11390-013-1398-1 +Qianhong Wu,Extended Methodology of RS Design and Instances Based on GIP.,2005,20,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst20.html#WuQW05,https://doi.org/10.1007/s11390-005-0270-3 +Jianxin Wang,An Effective Randomized QoS Routing Algorithm on Networks with Inaccurate Parameters.,2002,17,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst17.html#WangCC02,https://doi.org/10.1007/BF02949823 +Huixuan Tang,A Coarse-to-Fine Method for Shape Recognition.,2007,22,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst22.html#TangW07,https://doi.org/10.1007/s11390-007-9040-8 +Jun-Ki Min,DICE: An Effective Query Result Cache for Distributed Storage Systems.,2010,25,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst25.html#MinL10,https://doi.org/10.1007/s11390-010-9378-1 +Hock C. Chan,Translational semantics for a conceptual level query language.,1995,10,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst10.html#Chan95,https://doi.org/10.1007/BF02948426 +Xiaoshan He,QoS Guided Min-Min Heuristic for Grid Task Scheduling.,2003,18,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst18.html#HeSL03,https://doi.org/10.1007/BF02948918 +Dongrui Fan,Godson-T: An Efficient Many-Core Architecture for Parallel Program Executions.,2009,24,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst24.html#FanYZZLSYHYLZL09,https://doi.org/10.1007/s11390-009-9295-3 +Wei Li 0022,A comparative study of default reasoning and epistemic processes.,1993,8,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst8.html#Li93,https://doi.org/10.1007/BF02939526 +Cungen Cao,Progress in the Development of National Knowledge Infrastructure.,2002,17,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst17.html#CaoFGGSSTWWZZZZ02,https://doi.org/10.1007/BF02948821 +Najwa Altwaijry,Data Structures in Multi-Objective Evolutionary Algorithms.,2012,27,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst27.html#AltwaijryM12,https://doi.org/10.1007/s11390-012-1296-y +Zhi Jin,Revisiting the Meaning of Requirements.,2006,21,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst21.html#Jin06,https://doi.org/10.1007/s11390-006-0032-x +Rong Wang,Where Do Local Experts Go? Evaluating User Geo-Topical Similarity for Top-N Place Recommendation.,2018,33,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst33.html#WangHC18,https://doi.org/10.1007/s11390-017-1766-3 +Gang Huang 0001,An Access Control Framework for Reflective Middleware.,2008,23,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst23.html#HuangS08,https://doi.org/10.1007/s11390-008-9188-x +Hao Huang,Multicast Protocol for Uni-Directional Networks.,2000,15,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst15.html#HuangCLZ00,https://doi.org/10.1007/BF02948800 +Zhiming Ding,A Transactional Asynchronous Replication Scheme for Mobile Database Systems.,2002,17,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst17.html#DingMW02,https://doi.org/10.1007/BF02943279 +Shin-Ichi Nakano,A New Approach to Graph Recognition and Applications to Distance-Hereditary Graphs.,2009,24,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst24.html#NakanoUU09,https://doi.org/10.1007/s11390-009-9242-3 +Hong-Da Li,Oblivious Polynomial Evaluation.,2004,19,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst19.html#LiJFL04,https://doi.org/10.1007/BF02944757 +Huizhan Yi,Toward the Optimal Configuration of Dynamic Voltage Scaling Points in Real-Time Applications.,2006,21,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst21.html#YiY06,https://doi.org/10.1007/s11390-006-0893-z +Lei Jia,Learning with Uncertain Kernel Matrix Set.,2010,25,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst25.html#JiaLD10,https://doi.org/10.1007/s11390-010-9359-4 +Daoyun Xu,Complexities of Homomorphism and Isomorphism for Definite Logic Programs.,2005,20,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst20.html#XuT05,https://doi.org/10.1007/s11390-005-0758-x +Yixin Zhao,Problems in the Information Dissemination of the Internet Routing.,2003,18,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst18.html#ZhaoYW03,https://doi.org/10.1007/BF02948879 +Youfeng Wu,Hardware-Software Collaborative Techniques for Runtime Profiling and Phase Transition Detection.,2005,20,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst20.html#WuL05,https://doi.org/10.1007/s11390-005-0665-1 +Zongfu Yan,The RTL binding and mapping approach of VHDL High-level synthesis system HLS/BIT.,1996,11,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst11.html#YanL96,https://doi.org/10.1007/BF02951619 +Hao Wen,An Improved Markov Model for IEEE 802.15.4 Slotted CSMA/CA Mechanism.,2009,24,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst24.html#WenLCYHD09,https://doi.org/10.1007/s11390-009-9240-5 +Yinshui Xia,Novel Synthesis and Optimization of Multi-Level Mixed Polarity Reed-Muller Functions.,2005,20,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst20.html#XiaWZYH05,https://doi.org/10.1007/s11390-005-0895-2 +Yang Li,LLMP: Exploiting LLDP for Latency Measurement in Software-Defined Data Center Networks.,2018,33,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst33.html#LiCX18,https://doi.org/10.1007/s11390-018-1819-2 +Suqing Han,Reduct and Attribute Order.,2004,19,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst19.html#HanW04,https://doi.org/10.1007/BF02944745 +Bin Xiao,A Robust and Power-Efficient SoC Implementation in 65 nm.,2013,28,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst28.html#XiaoZGYWF13,https://doi.org/10.1007/s11390-013-1368-7 +Yuanyuan Xu,Multipath Routing of Multiple Description Coded Images in Wireless Networks.,2014,29,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst29.html#XuZY14,https://doi.org/10.1007/s11390-014-1451-8 +Godfrey Winster Sathianesan,Personalized Semantic Based Blog Retrieval.,2012,27,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst27.html#SathianesanS12,https://doi.org/10.1007/s11390-012-1246-8 +Wen-Guang Chen,Preface.,2016,31,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst31.html#ChenL16,https://doi.org/10.1007/s11390-016-1607-9 +Yanchao Zhao,Throughput Optimization in Cognitive Radio Networks Ensembling Physical Layer Measurement.,2015,30,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst30.html#ZhaoWLL15,https://doi.org/10.1007/s11390-015-1599-x +Kaihuai Qin,Physics-Based Loop Surface Modeling.,2002,17,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst17.html#KaihuaiCWL02,https://doi.org/10.1007/BF02960776 +Chong Long,A New Approach for Multi-Document Update Summarization.,2010,25,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst25.html#LongHZL10,https://doi.org/10.1007/s11390-010-9361-x +Qian Wang,A Novel Fine-Grained Method for Vehicle Type Recognition Based on the Locally Enhanced PCANet Neural Network.,2018,33,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst33.html#WangD18,https://doi.org/10.1007/s11390-018-1822-7 +Yong-Liang Yang,Multi-Scale Salient Features for Analyzing 3D Shapes.,2012,27,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst27.html#YangS12,https://doi.org/10.1007/s11390-012-1287-z +Yong Liu,Integrating Scene Parallelism in Camera Auto-Calibration.,2003,18,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst18.html#LiuWT03,https://doi.org/10.1007/BF02945474 +Murat Ekinci,Palmprint Recognition by Applying Wavelet-Based Kernel PCA.,2008,23,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst23.html#EkinciA08,https://doi.org/10.1007/s11390-008-9173-4 +Yong-Xi Gong,Boolean Operations on Conic Polygons.,2009,24,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst24.html#GongLWX09,https://doi.org/10.1007/s11390-009-9246-z +Farnoush Farhadi,An Effective Framework for Fast Expert Mining in Collaboration Networks: A Group-Oriented and Cost-Based Method.,2012,27,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst27.html#FarhadiSHH12,https://doi.org/10.1007/s11390-012-1245-9 +Bin Ma,Challenges in Computational Analysis of Mass Spectrometry Data for Proteomics.,2009,25,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst25.html#Ma09,https://doi.org/10.1007/s11390-010-9309-1 +Nadir Farah,Arabic Word Recognition by Classifiers and Context.,2005,20,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst20.html#FarahSS05,https://doi.org/10.1007/s11390-005-0402-9 +Xinguo Liu,Digital Differential Geometry Processing.,2006,21,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst21.html#LiuBP06,https://doi.org/10.1007/s11390-006-0847-5 +Xin Li,A Geometric Approach for Multi-Degree Spline.,2012,27,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst27.html#LiHL12,https://doi.org/10.1007/s11390-012-1268-2 +Mingsheng Ying,Topology in process calculus (I): Limit behaviour of agents.,1999,14,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst14.html#Ying99a,https://doi.org/10.1007/BF02948735 +Jana Schmidt,Online Induction of Probabilistic Real-Time Automata.,2014,29,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst29.html#SchmidtK14,https://doi.org/10.1007/s11390-014-1435-8 +Hua Li 0001,Robust Non-Frontal Face Alignment with Edge Based Texture.,2005,20,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst20.html#LiYP05,https://doi.org/10.1007/s11390-005-0849-8 +Jun Gu,On optimizing the satisfiability (SAT) problem.,1999,14,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst14.html#GuGD99,https://doi.org/10.1007/BF02952482 +Ji-Bing Gong,iBole: A Hybrid Multi-Layer Architecture for Doctor Recommendation in Medical Social Networks.,2015,30,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst30.html#GongWSP15,https://doi.org/10.1007/s11390-015-1583-5 +Patrick H. S. Brito,Architecting Fault Tolerance with Exception Handling: Verification and Validation.,2009,24,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst24.html#BritoLRM09,https://doi.org/10.1007/s11390-009-9219-2 +Gang Xu 0001,AHT Bézier Curves and NUAH B-Spline Curves.,2007,22,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst22.html#XuW07,https://doi.org/10.1007/s11390-007-9073-z +Yisong Wang,Consistency Property of Finite FC-Normal Logic Programs.,2007,22,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst22.html#WangZS07,https://doi.org/10.1007/s11390-007-9071-1 +Wei-Qing Liu,An Approach to Automatic Performance Prediction for Cloud-Enhanced Mobile Applications with Sparse Data.,2017,32,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst32.html#LiuL17a,https://doi.org/10.1007/s11390-017-1774-3 +Xian Wu,Detecting Marionette Microblog Users for Improved Information Credibility.,2015,30,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst30.html#WuFGFY15,https://doi.org/10.1007/s11390-015-1584-4 +Shoushan Li,Multi-Domain Sentiment Classification with Classifier Combination.,2011,26,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst26.html#LiHZ10,https://doi.org/10.1007/s11390-011-9412-y +Jianqiang Zhou,BSD/I18N - Internationalization of the 4.3BSD UNIX system.,1993,8,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst8.html#ZhouYPT93,https://doi.org/10.1007/BF02939541 +Guoren Wang,Managing Very Large Document Collections Using Semantics.,2003,18,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst18.html#WangLGB03,https://doi.org/10.1007/BF02948912 +Yanjiao Chen,A Reverse Auction Framework for Hybrid Access in Femtocell Network.,2017,32,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst32.html#ChenYZ17,https://doi.org/10.1007/s11390-017-1798-8 +Xin Su 0001,Investigation on Key Technologies in Large-Scale MIMO.,2013,28,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst28.html#SuZRK13,https://doi.org/10.1007/s11390-013-1342-4 +Juan Fang,Exploring Heterogeneous NoC Design Space in Heterogeneous GPU-CPU Architectures.,2015,30,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst30.html#FangLLYS15,https://doi.org/10.1007/s11390-015-1505-6 +Dianxun Shuai,Hyper-Distributed Hyper-Parallel Self-Organizing Dynamic Scheduling Based on Solitary Wave.,2001,16,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst16.html#DianxunJHZ01,https://doi.org/10.1007/BF02948961 +Dilan Görür,Dirichlet Process Gaussian Mixture Models: Choice of the Base Distribution.,2010,25,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst25.html#GorurR10,https://doi.org/10.1007/s11390-010-9355-8 +Mei-Xia Qu,On the Toggling-Branching Recurrence of Computability Logic.,2013,28,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst28.html#QuLZD13,https://doi.org/10.1007/s11390-013-1329-1 +Xiao-Li Yu,Zero-Correlation Linear Cryptanalysis of Reduced-Round SIMON.,2015,30,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst30.html#YuWSZZW15,https://doi.org/10.1007/s11390-015-1603-5 +Xiao-Peng Sun,3D Ear Shape Matching Using Joint α-Entropy.,2015,30,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst30.html#SunLHW15,https://doi.org/10.1007/s11390-015-1546-x +Sinkyu Kim,Smart Proactive Caching Scheme for Fast Authenticated Handoff in Wireless LAN.,2007,22,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst22.html#KimCNHS07,https://doi.org/10.1007/s11390-007-9048-0 +Bo Yang,Interactive and Symbolic Data Dependence Analysis Based on Ranges of Expressions.,2002,17,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst17.html#YangZWZ02,https://doi.org/10.1007/BF02962208 +Hongbin Zhang,Optimal Selection of Reference Set for the Nearest Neighbor Classification by Tabu Search.,2001,16,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst16.html#ZhangS01,https://doi.org/10.1007/BF02950417 +Jason Cong,Better-Than-Worst-Case Design: Progress and Opportunities.,2014,29,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst29.html#CongDKL14,https://doi.org/10.1007/s11390-014-1457-2 +Tzer-Shyong Chen,Digital Multi-Signature Scheme Based on the Elliptic Curve Cryptosystem.,2004,19,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst19.html#ChenHC04,https://doi.org/10.1007/BF02944760 +Xiaofeng Mi,Droplet: A Virtual Brush Model to Simulate Chinese Calligraphy and Painting.,2004,19,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst19.html#MiTD04,https://doi.org/10.1007/BF02944909 +Pyung-Soo Kim,A New FIR Filter for State Estimation and Its Application.,2007,22,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst22.html#KimL07,https://doi.org/10.1007/s11390-007-9085-8 +Liu Bin,Infomarker - A New Internet Information Service System.,2000,15,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst15.html#BinLQAW00,https://doi.org/10.1007/BF02948818 +Lin Cong,Making Slide Shows with Zoomquilts.,2010,25,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst25.html#CongTD10,https://doi.org/10.1007/s11390-010-9346-9 +Mingming Wang,Lightweight and Manageable Digital Evidence Preservation System on Bitcoin.,2018,33,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst33.html#WangWQWLG18,https://doi.org/10.1007/s11390-018-1841-4 +Geng Lin,A Binary Particle Swarm Optimization for the Minimum Weight Dominating Set Problem.,2018,33,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst33.html#LinG18,https://doi.org/10.1007/s11390-017-1781-4 +An Liu 0002,Privacy-Preserving Task Assignment in Spatial Crowdsourcing.,2017,32,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst32.html#LiuLLZZLZ17,https://doi.org/10.1007/s11390-017-1772-5 +Bo-Zhan Su,Security of the SMS4 Block Cipher Against Differential Cryptanalysis.,2011,26,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst26.html#SuWZ10,https://doi.org/10.1007/s11390-011-9420-y +Xing-Zhou Zhang,Tencent and Facebook Data Validate Metcalfe's Law.,2015,30,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst30.html#ZhangLX15,https://doi.org/10.1007/s11390-015-1518-1 +Xiaoyong Li 0003,A Comprehensive and Adaptive Trust Model for Large-Scale P2P Networks.,2009,24,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst24.html#LiG09,https://doi.org/10.1007/s11390-009-9278-4 +Weifeng Lu,Experimental study on strategy of combining SAT algorithms.,1998,13,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst13.html#LuZ98,https://doi.org/10.1007/BF02946504 +Xing Changyu,An Accelerated Incremental Radiosity Algorithm.,2000,15,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst15.html#ChangyuSG00,https://doi.org/10.1007/BF02951926 +Ren-ji Tao,Constructing Finite Automata with Invertibility by Transformation Method.,2000,15,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst15.html#TaoC00,https://doi.org/10.1007/BF02951923 +Aoying Zhou,Data Management in Peer-to-Peer Environment: A Perspective of BestPeer.,2003,18,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst18.html#ZhouQZLXNOT03,https://doi.org/10.1007/BF02948919 +Juan Han,Simplified MMSE Detectors for Turbo Receiver in BICM MIMO Systems.,2013,28,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst28.html#HanTWZT13,https://doi.org/10.1007/s11390-013-1346-0 +Guangsheng Ma,A new method of solving kernels in algebraic decomposition for the synthesis of logic cell array.,1995,10,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst10.html#MaZH95,https://doi.org/10.1007/BF02943515 +Yaoxue Zhang,An End-to-End QoS Control Model for Enhanced Internet.,2000,15,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst15.html#ZhangXG00,https://doi.org/10.1007/BF02948833 +Runyao Duan,Some Issues in Quantum Information Theory.,2006,21,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst21.html#DuanJFY06,https://doi.org/10.1007/s11390-006-0776-3 +Zhongxiao Hao,The Existence Condition of r-Acyclic Database Schemes with MVDs Constraints.,2002,17,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst17.html#HaoY02,https://doi.org/10.1007/BF02943293 +Fangmin Song,A syntactic proof of the conservativity of and#955*χ9* over and#955*2.,1999,14,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst14.html#SongQ99,https://doi.org/10.1007/BF02946518 +Huawei Shen,A Dimensionality Reduction Framework for Detection of Multiscale Structure in Heterogeneous Networks.,2012,27,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst27.html#ShenCWC12,https://doi.org/10.1007/s11390-012-1227-y +Wangning Long,Short-time scaling of variable ordering of OBDDs.,1997,12,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst12.html#LongMYT97,https://doi.org/10.1007/BF02943155 +Xiangke Liao,OpenMC: Towards Simplifying Programming for TianHe Supercomputers.,2014,29,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst29.html#LiaoYTYWWX14,https://doi.org/10.1007/s11390-014-1447-4 +Bo Lu,A Novel Approach Towards Large Scale Cross-Media Retrieval.,2012,27,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst27.html#LuWY12,https://doi.org/10.1007/s11390-012-1292-2 +Genqing Wu,A Method to Build a Super Small but Practically Accurate Language Model for Handheld Devices.,2003,18,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst18.html#WuZ03,https://doi.org/10.1007/BF02945463 +Hui Dai,Multilevel Optimization for Large-Scale Hierarchical FPGA Placement.,2010,25,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst25.html#DaiZB10,https://doi.org/10.1007/s11390-010-9389-y +Jia Li,Proper Reparametrization of Rational Ruled Surface.,2008,23,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst23.html#LiSG08,https://doi.org/10.1007/s11390-008-9131-1 +Suqing Han,Second Attribute Algorithm Based on Tree Expression.,2006,21,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst21.html#HanW06,https://doi.org/10.1007/s11390-006-0383-3 +Xuegang Hu,A Semi-Random Multiple Decision-Tree Algorithm for Mining Data Streams.,2007,22,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst22.html#HuLWW07,https://doi.org/10.1007/s11390-007-9084-9 +Concha Bielza,Parameter Control of Genetic Algorithms by Learning and Simulation of Bayesian Networks - A Case Study for the Optimal Ordering of Tables.,2013,28,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst28.html#BielzaPL13,https://doi.org/10.1007/s11390-013-1370-0 +Yuxi Fu,Constructive sets in computable sets.,1997,12,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst12.html#Fu97,https://doi.org/10.1007/BF02943175 +Feng Zeng,Cost-Sensitive and Load-Balancing Gateway Placement in Wireless Mesh Networks with QoS Constraints.,2009,24,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst24.html#ZengC09,https://doi.org/10.1007/s11390-009-9259-7 +Bin Chen,The minimum feature subset selection problem.,1997,12,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst12.html#ChenHW97,https://doi.org/10.1007/BF02951333 +Dan Feng 0001,I/O Performance of an RAID-10 Style Parallel File System.,2004,19,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst19.html#FengJZ04,https://doi.org/10.1007/BF02973461 +Tom Head,Aqueous Computing: A Survey with an Invitation to Participate.,2002,17,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst17.html#HeadCYG02,https://doi.org/10.1007/BF02960757 +Gao-Li Wang,Collision Attack on the Full Extended MD4 and Pseudo-Preimage Attack on RIPEMD.,2013,28,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst28.html#Wang13,https://doi.org/10.1007/s11390-013-1317-5 +Guoliang Chen 0001,Study on Parallel Computing.,2006,21,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst21.html#ChenSZM06,https://doi.org/10.1007/s11390-006-0665-9 +Hidehiko Zeng,A form evaluation system and its data structure for brush-written Chinese characters.,1995,10,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst10.html#ZengHY95,https://doi.org/10.1007/BF02939520 +Yunmei Dong,An interactive learning algorithm for acquisition of concepts represented as CFL.,1998,13,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst13.html#Dong98,https://doi.org/10.1007/BF02946607 +Zhi-Hua Zhou,Multi-Instance Learning from Supervised View.,2006,21,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst21.html#Zhou06,https://doi.org/10.1007/s11390-006-0800-7 +Shi-Xia Liu,Two Accelerating Techniques for 3D Reconstruction.,2002,17,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst17.html#LiuHS02,https://doi.org/10.1007/BF02947315 +Shusheng Liu,Cryptanalysis of Reduced-Round DASH.,2013,28,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst28.html#LiuGW13,https://doi.org/10.1007/s11390-013-1320-x +Xiao-Min Zhu,Multi-Dimensional Scheduling for Real-Time Tasks on Heterogeneous Clusters.,2009,24,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst24.html#ZhuL09,https://doi.org/10.1007/s11390-009-9235-2 +Heng-Chang Liu,A Near-Optimal Optimization Algorithm for Link Assignment in Wireless Ad-Hoc Networks.,2006,21,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst21.html#LiuZ06,https://doi.org/10.1007/s11390-006-0089-6 +Kilho Shin,A Generalization of Haussler's Convolution Kernel - Mapping Kernel and Its Application to Tree Kernels.,2010,25,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst25.html#ShinK10,https://doi.org/10.1007/s11390-010-9386-1 +Chao Shao,RiMOM-IM: A Novel Iterative Framework for Instance Matching.,2016,31,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst31.html#ShaoHLWCX16,https://doi.org/10.1007/s11390-016-1620-z +Zhong Zhang,Simulation of ATPG neural network and its experimental results.,1995,10,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst10.html#Zhang95b,https://doi.org/10.1007/BF02943500 +Zhou Wang,Dynamic fractal transform with applications to image data compression.,1997,12,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst12.html#WangY97,https://doi.org/10.1007/BF02948970 +Mohamed Maher Ben Ismail,Erratum to: Automatic Fall Detection Using Membership Based Histogram Descriptors.,2018,33,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst33.html#IsmailB18,https://doi.org/10.1007/s11390-018-1815-6 +Tian-Ming Bu,Binary-Coding-Based Ant Colony Optimization and Its Convergence.,2004,19,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst19.html#BuYG04,https://doi.org/10.1007/BF02944748 +Zhenhua Huang,Efficient Optimization of Multiple Subspace Skyline Queries.,2008,23,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst23.html#HuangGSW08,https://doi.org/10.1007/s11390-008-9112-4 +Beiji Zou,3D Filtering by Block Matching and Convolutional Neural Network for Image Denoising.,2018,33,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst33.html#ZouGHOLC18,https://doi.org/10.1007/s11390-018-1859-7 +Jun Huang,An efficient computational method for solving nonlinear matrix equation and its application in queuing analysis.,1996,11,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst11.html#HuangZH96,https://doi.org/10.1007/BF02943134 +Hua Nie,Software-Defined Cluster.,2015,30,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst30.html#NieYL15,https://doi.org/10.1007/s11390-015-1519-0 +Xian Zhang,New Information Distance Measure and Its Application in Question Answering System.,2008,23,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst23.html#ZhangHZL08,https://doi.org/10.1007/s11390-008-9152-9 +Mauricio Hanzich,On/Off-Line Prediction Applied to Job Scheduling on Non-Dedicated NOWs.,2011,26,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst26.html#HanzichHGSL10,https://doi.org/10.1007/s11390-011-9418-5 +Jia Xu 0003,FIMI: A Constant Frugal Incentive Mechanism for Time Window Coverage in Mobile Crowdsensing.,2017,32,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst32.html#XuFYXWL17,https://doi.org/10.1007/s11390-017-1773-4 +Xiaofang Wang,A Resource-Efficient Communication Architecture for Chip Multiprocessors on FPGAs.,2011,26,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst26.html#WangT11,https://doi.org/10.1007/s11390-011-1145-4 +Xavier Bonnaire,WTR: A Reputation Metric for Distributed Hash Tables Based on a Risk and Credibility Factor.,2009,24,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst24.html#BonnaireR09,https://doi.org/10.1007/s11390-009-9276-6 +Yan-Bo Han,A Cloud-Based BPM Architecture with User-End Distribution of Non-Compute-Intensive Activities and Sensitive Data.,2010,25,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst25.html#HanSWL10,https://doi.org/10.1007/s11390-010-9396-z +Thomas Luft,Real-Time Watercolor for Animation.,2006,21,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst21.html#LuftD06,https://doi.org/10.1007/s11390-006-0159-9 +Ying Zhao,Self-Adaptive Clock Synchronization for Computational Grid.,2003,18,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst18.html#ZhaoZHY03,https://doi.org/10.1007/BF02948917 +Zhongxuan Liu,Quaternion Diffusion for Color Image Filtering.,2006,21,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst21.html#LiuLR06,https://doi.org/10.1007/s11390-006-0126-5 +Tieying Liu,An algorithm for determining minimal reduced-coverings of acyclic database schemes.,1996,11,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst11.html#LiuY96,https://doi.org/10.1007/BF02948478 +Unil Yun,Analyzing Sequential Patterns in Retail Databases.,2007,22,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst22.html#Yun07,https://doi.org/10.1007/s11390-007-9036-4 +Mario Garza-Fabre,Comparative Analysis of Different Evaluation Functions for Protein Structure Prediction Under the HP Model.,2013,28,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst28.html#Garza-FabreRP13,https://doi.org/10.1007/s11390-013-1384-7 +Xin-Fu Wang,Performance Comparison of AVS and H.264/AVC Video Coding Standards.,2006,21,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst21.html#WangZ06,https://doi.org/10.1007/s11390-006-0310-7 +Huadong Ma,Specification and Verification of Multimedia Synchronization in Duration Calculus.,2003,18,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst18.html#Ma03,https://doi.org/10.1007/BF02948882 +Lu An Tang,PGG: An Online Pattern Based Approach for Stream Variation Management.,2008,23,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst23.html#TangCLMYZ08,https://doi.org/10.1007/s11390-008-9149-4 +Yin Shi,Accelerated techniques in stem fault simulation.,1996,11,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst11.html#ShiW96,https://doi.org/10.1007/BF02951618 +Donggang Cao,Providing Virtual Cloud for Special Purposes on Demand in JointCloud Computing Environment.,2017,32,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst32.html#CaoASW17,https://doi.org/10.1007/s11390-017-1715-1 +Shi-Min Hu,Preface.,2017,32,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst32.html#HuMY17,https://doi.org/10.1007/s11390-017-1732-0 +Pierre Bourque,Developing Project Duration Models in Software Engineering.,2007,22,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst22.html#BourqueOAF07,https://doi.org/10.1007/s11390-007-9051-5 +Cheng Wang,Super-Resolution Reconstruction of Image Sequence Using Multiple Motion Estimation Fusion.,2004,19,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst19.html#WangW04,https://doi.org/10.1007/BF02944910 +Guo-Wei Wang,Complete Your Mobility: Linking Trajectories Across Heterogeneous Mobility Data Sources.,2018,33,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst33.html#WangZL18,https://doi.org/10.1007/s11390-018-1856-x +Terumine Hayashi,On Test Data Compression Using Selective Don't-Care Identification.,2005,20,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst20.html#HayashiYSKT05,https://doi.org/10.1007/s11390-005-0210-2 +Qingshi Gao,K-Dimensional Optimal Parallel Algorithm for the solution of a general class of recurrence equations.,1995,10,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst10.html#GaoL95,https://doi.org/10.1007/BF02948337 +Juzhong Gu,An object-oriented transaction model.,1993,8,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst8.html#Gu93a,https://doi.org/10.1007/BF02939536 +Jinzhao Wu,Mechanical geometry theorem proving based on groebner bases.,1997,12,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst12.html#Wu97,https://doi.org/10.1007/BF02943140 +Chen-Da Hou,SeaHttp: A Resource-Oriented Protocol to Extend REST Style for Web of Things.,2014,29,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst29.html#HouLQSC14,https://doi.org/10.1007/s11390-014-1423-z +Mingsheng Ying,Putting consistent theories together in institutions.,1995,10,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst10.html#Ying95,https://doi.org/10.1007/BF02943493 +Biao Qin,A Commit Strategy for Distributed Real-Time Transaction.,2003,18,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst18.html#QinLY03,https://doi.org/10.1007/BF02947122 +Shi-Wei Gao,Balancing Frequencies and Fault Detection in the In-Parameter-Order Algorithm.,2015,30,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst30.html#GaoLDCM15,https://doi.org/10.1007/s11390-015-1574-6 +Bo Yang 0002,Force-Based Incremental Algorithm for Mining Community Structure in Dynamic Network.,2006,21,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst21.html#YangL06,https://doi.org/10.1007/s11390-006-0393-1 +Hong Pan,Model Checking Data Consistency for Cache Coherence Protocols.,2006,21,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst21.html#PanLL06,https://doi.org/10.1007/s11390-006-0765-6 +Xiang Bai,Directional Edge Boxes: Exploiting Inner Normal Direction Cues for Effective Object Proposal Generation.,2017,32,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst32.html#BaiZWS17,https://doi.org/10.1007/s11390-017-1752-9 +Ming-Wen Chen,Covering-Based Routing Algorithms for Cyclic Content-Based P/S Overlays.,2010,25,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst25.html#ChenZHL10,https://doi.org/10.1007/s11390-010-9400-7 +Jun Ma,An O(k 2n2) algorithm to find a k -partition in a k -connected graph.,1994,9,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst9.html#MaM94,https://doi.org/10.1007/BF02939489 +Jing Wang 0002,Client-Centric Adaptive Scheduling of Service-Oriented Applications.,2006,21,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst21.html#WangZH06,https://doi.org/10.1007/s11390-006-0537-3 +Zi-Ke Zhang,Tag-Aware Recommender Systems: A State-of-the-Art Survey.,2011,26,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst26.html#ZhangZZ11,https://doi.org/10.1007/s11390-011-0176-1 +Xiaolin Li 0001,Coordinated Workload Scheduling in Hierarchical Sensor Networks for Data Fusion Applications.,2008,23,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst23.html#LiC08,https://doi.org/10.1007/s11390-008-9138-7 +Lin Yue,Multiple Auxiliary Information Based Deep Model for Collaborative Filtering.,2018,33,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst33.html#YueSGFZ18,https://doi.org/10.1007/s11390-018-1848-x +Natasa Jonoska,Trends in Computing with DNA.,2004,19,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst19.html#Jonoska04,https://doi.org/10.1007/BF02944788 +Ya-feng Wu,Approximation Algorithms for Steiner Connected Dominating Set.,2005,20,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst20.html#WuXC05,https://doi.org/10.1007/s11390-005-0713-x +Gui-Lin Yao,A Survey on Pre-Processing in Image Matting.,2017,32,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst32.html#Yao17,https://doi.org/10.1007/s11390-017-1709-z +Wangqiang Wei,Automatic Segmentation of News Items Based on Video and Audio Features.,2002,17,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst17.html#WeiG02,https://doi.org/10.1007/BF02962211 +Cliff Reader,AVS Intellectual Property Rights (IPR) Policy.,2006,21,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst21.html#Reader06,https://doi.org/10.1007/s11390-006-0306-3 +Fan Yun,An Image Retrieval Method Using DCT Features.,2002,17,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst17.html#YunW02,https://doi.org/10.1007/BF02960778 +Donghong Han,Classifying Uncertain and Evolving Data Streams with Distributed Extreme Learning Machine.,2015,30,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst30.html#HanZW15,https://doi.org/10.1007/s11390-015-1566-6 +Hongping Yan,Fast Construction of Plant Architectural Models Based on Substructure Decomposition.,2003,18,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst18.html#YanRPH03,https://doi.org/10.1007/BF02945467 +Sheng Zhang 0001,Service-Oriented Resource Allocation in Clouds: Pursuing Flexibility and Efficiency.,2015,30,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst30.html#ZhangQWL15,https://doi.org/10.1007/s11390-015-1533-2 +Imad Jawhar,QoS Support in TDMA-Based Mobile Ad Hoc Networks.,2005,20,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst20.html#JawharW05,https://doi.org/10.1007/s11390-005-0797-3 +Wei-neng Chen,Scheduling Multi-Mode Projects under Uncertainty to Optimize Cash Flows: A Monte Carlo Ant Colony System Approach.,2012,27,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst27.html#ChenZ12,https://doi.org/10.1007/s11390-012-1276-2 +Haibo Tian,A New Public-Key Encryption Scheme.,2007,22,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst22.html#TianSW07,https://doi.org/10.1007/s11390-007-9013-y +Nan Chen,Adaptive Indexing of Moving Objects with Highly Variable Update Frequencies.,2008,23,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst23.html#ChenSCD08,https://doi.org/10.1007/s11390-008-9185-0 +Jiefan Qiu,EasiSMP: A Resource-Oriented Programming Framework Supporting Runtime Propagation of RESTful Resources.,2014,29,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst29.html#QiuLSHC14,https://doi.org/10.1007/s11390-014-1422-0 +Ruqian Lu,Formal Ontology: Foundation of Domain Knowledge Sharing and Reusing.,2002,17,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst17.html#LuJ02,https://doi.org/10.1007/BF02948822 +Haifeng Xi,An approach to active learning for classifier systems.,1999,14,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst14.html#XiLY99,https://doi.org/10.1007/BF02948739 +Chuanlin Zhang,Bandwidth Reservation Using Velocity and Handoff Statistics for Cellular Networks.,2006,21,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst21.html#ZhangLJ06,https://doi.org/10.1007/s11390-006-1031-7 +Qing Yang 0001,Guest editors' introduction.,1996,11,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst11.html#YangJ96,https://doi.org/10.1007/BF02943128 +Aoying Zhou,Query optimization for Deductive Databases.,1995,10,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst10.html#ZhouS95,https://doi.org/10.1007/BF02948423 +Dongchul Park,A Lookahead Read Cache: Improving Read Performance for Deduplication Backup Storage.,2017,32,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst32.html#ParkFND17,https://doi.org/10.1007/s11390-017-1680-8 +Shiyu Jia,Stable Real-Time Surgical Cutting Simulation of Deformable Objects Embedded with Arbitrary Triangular Meshes.,2017,32,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst32.html#JiaPWZY17,https://doi.org/10.1007/s11390-017-1794-z +Bing Zhou,Improving Metadata Caching Efficiency for Data Deduplication via In-RAM Metadata Utilization.,2016,31,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst31.html#ZhouW16a,https://doi.org/10.1007/s11390-016-1664-0 +Jing Gu,The Faster Higher-Order Cellular Automaton for Hyper-Parallel Undistorted Data Compression.,2000,15,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst15.html#JingD00,https://doi.org/10.1007/BF02948796 +Vaishali P. Sadaphal,Random and Periodic Sleep Schedules for Target Detection in Sensor Networks.,2008,23,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst23.html#SadaphalJ08,https://doi.org/10.1007/s11390-008-9137-8 +Xi-Lin Chen,Preface.,2015,30,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst30.html#Chen15a,https://doi.org/10.1007/s11390-015-1525-2 +Haitao Wu,A Distributed Fair Scheduling Scheme in Wireless LAN.,2003,18,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst18.html#WuLC03,https://doi.org/10.1007/BF02947121 +Hong Liu,A methodology for mapping and partitioning arbitrary n -dimensional nested loops into 2-dimensional VLSI arrays.,1993,8,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst8.html#LiuWZ93,https://doi.org/10.1007/BF02939529 +Hua-Dong Ma,Internet of Things: Objectives and Scientific Challenges.,2011,26,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst26.html#Ma11,https://doi.org/10.1007/s11390-011-1189-5 +Rafiullah Chamlawi,Wavelet Based Image Authentication and Recovery.,2007,22,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst22.html#ChamlawiKI07,https://doi.org/10.1007/s11390-007-9103-x +Zhixiong Chen,Some Notes on Generalized Cyclotomic Sequences of Length pq.,2008,23,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst23.html#ChenL08,https://doi.org/10.1007/s11390-008-9167-2 +Bing Yang,Design and Performance Evaluation of Sequence Partition Algorithms.,2008,23,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst23.html#YangCLZ08,https://doi.org/10.1007/s11390-008-9183-2 +Xiaoqing Wen,Fault Diagnosis of Physical Defects Using Unknown Behavior Model.,2005,20,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst20.html#WenTSK05,https://doi.org/10.1007/s11390-005-0187-x +Linmi Tao,New Color Constancy Model for Machine Vision.,2001,16,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst16.html#TaoX01,https://doi.org/10.1007/BF02943241 +JuHum Kwon,Bridging Real World Semantics to Model World Semantics for Taxonomy Based Knowledge Representation System.,2005,20,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst20.html#KwonSMB05,https://doi.org/10.1007/s11390-005-0296-6 +Wei Wang,Approach to the Correlation Discovery of Chinese Linguistic Parameters Based on Bayesian Method.,2003,18,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst18.html#WangC03,https://doi.org/10.1007/BF02946656 +Pedro Luis Mateo Navarro,A Script-Based Prototyping Framework to Boost Agile-UX Developments.,2016,31,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst31.html#NavarroPR16,https://doi.org/10.1007/s11390-016-1695-6 +Shouhong Ding,A Customized Framework to Recompress Massive Internet Images.,2012,27,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst27.html#DingHXWSM12,https://doi.org/10.1007/s11390-012-1291-3 +Tingting Lin,A New Feistel-Type White-Box Encryption Scheme.,2017,32,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst32.html#LinLXJ17,https://doi.org/10.1007/s11390-017-1727-x +Yong Zhang,Approximation Algorithm for Weighted Weak Vertex Cover.,2004,19,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst19.html#ZhangZ04,https://doi.org/10.1007/BF02973439 +Xindong Wu,Pattern Matching with Flexible Wildcards.,2014,29,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst29.html#WuQX14,https://doi.org/10.1007/s11390-014-1464-3 +Li Jin,PhotoPrev: Unifying Context and Content Cues to Enhance Personal Photo Revisitation.,2015,30,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst30.html#JinLZF15,https://doi.org/10.1007/s11390-015-1536-z +Shi-Ming Guo,HUITWU: An Efficient Algorithm for High-Utility Itemset Mining in Transaction Databases.,2016,31,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst31.html#GuoG16,https://doi.org/10.1007/s11390-016-1662-2 +Sujian Li,Semantic Computation in a Chinese Question-Answering System.,2002,17,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst17.html#LiZXBL02,https://doi.org/10.1007/BF02960786 +Yangjun Chen,Counting and topological order.,1997,12,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst12.html#Chen97a,https://doi.org/10.1007/BF02947202 +Shao Zhiqing,A standard model-theoretic approach to operational semantics of recursive programs.,1993,8,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst8.html#Zhiqing93,https://doi.org/10.1007/BF02939478 +Jian-Hui Jiang,An Error Recoverable Structure Based on Complementary Logic and Alternating-Retry.,2005,20,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst20.html#Jiang05,https://doi.org/10.1007/s11390-005-0885-4 +Yong Xi,Probabilistic Adaptive Anonymous Authentication in Vehicular Networks.,2008,23,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst23.html#XiSSSZ08,https://doi.org/10.1007/s11390-008-9194-z +Xiaobing Feng 0002,Integrating Parallelizing Compilation Technologies for SMP Clusters.,2005,20,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst20.html#FengCWAMSZ05,https://doi.org/10.1007/s11390-005-0014-4 +Xiaolin Zhang,Comparative Study of Two Flow Control Mechanisms in High Speed Networks.,2001,16,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst16.html#ZhangDWZX01,https://doi.org/10.1007/BF02948968 +Xiaopeng Tao,Fast Algorithms of Mining Probability Functional Dependency Rules in Relational Database.,2000,15,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst15.html#TaoZH00,https://doi.org/10.1007/BF02948813 +Jiliang Zhang 0002,Enhancing Security of FPGA-Based Embedded Systems with Combinational Logic Binding.,2017,32,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst32.html#ZhangWWX17,https://doi.org/10.1007/s11390-017-1700-8 +Kenli Li,Optimal Parallel Algorithm for the Knapsack Problem Without Memory Conflicts.,2004,19,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst19.html#LiLL04,https://doi.org/10.1007/BF02973436 +Yuxi Fu,Symmetric ω0*-calculus.,1998,13,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst13.html#Fu98,https://doi.org/10.1007/BF02943188 +Fereshteh Amini,Performance of IEEE 802.15.4 Clusters with Power Management and Key Exchange.,2008,23,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst23.html#AminiKMP08,https://doi.org/10.1007/s11390-008-9140-0 +Chandrajit L. Bajaj,Higher-Order Level-Set Method and Its Application in Biomolecular Surfaces Construction.,2008,23,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst23.html#BajajXZ08,https://doi.org/10.1007/s11390-008-9184-1 +Lei Hu,Implementation of Cryptosystems Based on Tate Pairing.,2005,20,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst20.html#HuDP05,https://doi.org/10.1007/s11390-005-0264-1 +Jinhua Tao,BenchIP: Benchmarking Intelligence Processors.,2018,33,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst33.html#TaoDGLZZXLLTRCL18,https://doi.org/10.1007/s11390-018-1805-8 +Ali Amer Alwan,Improved Integrity Constraints Checking in Distributed Databases by Exploiting Local Checking.,2009,24,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst24.html#AlwanIU09,https://doi.org/10.1007/s11390-009-9261-0 +Sieger van Denneheuvel,A survey of the rule language RL/1.,1993,8,J. Comput. Sci. Technol.,1,db/journals/jcst/jcst8.html#DenneheuvelKHB93,https://doi.org/10.1007/BF02946590 +Bin Ni,Dynamic checking framework for Java Beans semantic constraints.,1999,14,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst14.html#NiF99,https://doi.org/10.1007/BF02948744 +Leon J. Osterweil,Formalisms to Support the Definition of Processes.,2009,24,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst24.html#Osterweil09,https://doi.org/10.1007/s11390-009-9218-3 +Gang Yao,Decomposing a Kind of Weakly Invertible Finite Automata with Delay 2.,2003,18,J. Comput. Sci. Technol.,3,db/journals/jcst/jcst18.html#Yao03,https://doi.org/10.1007/BF02948905 +Yuanchao Xu,Reducing Synchronization Cost for Single-Level Store in Mobile Systems.,2016,31,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst31.html#XuWQLZ16,https://doi.org/10.1007/s11390-016-1666-y +Nam-Sup Park,Effective I/O Scheme Based on RTP for Multimedia Communication Systems.,2006,21,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst21.html#ParkH06,https://doi.org/10.1007/s11390-006-0989-5 +Ren-ji Tao,Structure of Weakly Invertible Semi-Input-Memory Finite Automata with Delay 1.,2002,17,J. Comput. Sci. Technol.,4,db/journals/jcst/jcst17.html#TaoC02,https://doi.org/10.1007/BF02943277 +Yuntao Qian,Sequential Combination Methods for Data Clustering Analysis.,2002,17,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst17.html#QianST02,https://doi.org/10.1007/BF02962204 +Xiaofeng Meng,The processing and improvement of multi-statement queries in Chiql.,1998,13,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst13.html#MengWYLW98,https://doi.org/10.1007/BF02946604 +Wei Wu,A Kernel Approach to Multi-Task Learning with Task-Specific Kernels.,2012,27,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst27.html#WuLHJ12,https://doi.org/10.1007/s11390-012-1305-1 +Jianhua Feng,HCH for Checking Containment of XPath Fragment.,2007,22,J. Comput. Sci. Technol.,5,db/journals/jcst/jcst22.html#FengLZ07,https://doi.org/10.1007/s11390-007-9080-0 +Zhi-Wei Xu,Cloud-Sea Computing Systems: Towards Thousand-Fold Improvement in Performance per Watt for the Coming Zettabyte Era.,2014,29,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst29.html#Xu14,https://doi.org/10.1007/s11390-014-1420-2 +Huaizhong Lin,Optimistic Voting for Managing Replicated Data.,2002,17,J. Comput. Sci. Technol.,6,db/journals/jcst/jcst17.html#LinC02,https://doi.org/10.1007/BF02960779 +Man-Chi Pong,OOMMS: A module management system based on an object-oriented model.,1993,8,J. Comput. Sci. Technol.,2,db/journals/jcst/jcst8.html#PongZXD93,https://doi.org/10.1007/BF02939480 +Karol Krenski,Granular knowledge discovery framework for fire and rescue reporting system.,2015,9,Intelligent Decision Technologies,4,db/journals/idt/idt9.html#KrenskiKSL15,https://doi.org/10.3233/IDT-140231 +Andrew S. Clare,Assessing operator strategies for real-time replanning of multiple unmanned vehicles.,2012,6,Intelligent Decision Technologies,3,db/journals/idt/idt6.html#ClareMC12,https://doi.org/10.3233/IDT-2012-0138 +Jie Du,Dilemmas in knowledge-based evolutionary computation for financial investing.,2013,7,Intelligent Decision Technologies,2,db/journals/idt/idt7.html#DuR13,https://doi.org/10.3233/IDT-130156 +Constantinos Patsakis,Enhancing 2D GUIs with 3D input devices.,2010,4,Intelligent Decision Technologies,3,db/journals/idt/idt4.html#PatsakisA10,https://doi.org/10.3233/IDT-2010-0081 +Martin Stigmar,The modified role of university teachers in ICT-supported flexible learning.,2012,6,Intelligent Decision Technologies,2,db/journals/idt/idt6.html#StigmarKP12,https://doi.org/10.3233/IDT-2012-0128 +Obinna Anya,Building adaptive systems for collaborative e-work: The e-Workbench approach.,2011,5,Intelligent Decision Technologies,1,db/journals/idt/idt5.html#AnyaNT11,https://doi.org/10.3233/IDT-2011-0099 +Manuel Mora,The role of decision-making support systems in IT service management processes.,2014,8,Intelligent Decision Technologies,2,db/journals/idt/idt8.html#MoraPMWG14,https://doi.org/10.3233/IDT-130184 +Hiroshi Mineno,Development of a wireless sensor network for visualizing agricultural knowledge.,2010,4,Intelligent Decision Technologies,4,db/journals/idt/idt4.html#MinenoOMAM10,https://doi.org/10.3233/IDT-2010-0089 +Vasileios Papavasileiou,Evaluating time variations to identify valuable association rules in market basket analysis.,2013,7,Intelligent Decision Technologies,1,db/journals/idt/idt7.html#PapavasileiouT13,https://doi.org/10.3233/IDT-120152 +James P. Bliss,Alert characteristics and identification of avatars on a virtual battlefield.,2012,6,Intelligent Decision Technologies,2,db/journals/idt/idt6.html#BlissLB12,https://doi.org/10.3233/IDT-2012-0131 +Csaba Csáki,Special issue: Various forms of intelligence.,2014,8,Intelligent Decision Technologies,1,db/journals/idt/idt8.html#CsakiP14,https://doi.org/10.3233/IDT-130172 +Efthymios Alepis,Development process of an affective bi-modal Intelligent Tutoring System.,2007,1,Intelligent Decision Technologies,3,db/journals/idt/idt1.html#AlepisVK07,http://content.iospress.com/articles/intelligent-decision-technologies/idt00010 +Mahnane Lamia,Thinking styles in an intelligent and adaptive e-learning hypermedia tool.,2013,7,Intelligent Decision Technologies,4,db/journals/idt/idt7.html#LamiaT13,https://doi.org/10.3233/IDT-130168 +Manash Sarkar,Exploring social network privacy measurement using fuzzy vector commitment.,2016,10,Intelligent Decision Technologies,3,db/journals/idt/idt10.html#SarkarB16,https://doi.org/10.3233/IDT-160256 +Seyed Mohammad Hossein Hasheminejad,ATM management prediction using Artificial Intelligence techniques: A survey.,2017,11,Intelligent Decision Technologies,3,db/journals/idt/idt11.html#HasheminejadR17,https://doi.org/10.3233/IDT-170302 +Tobias Lehmann,Ontology enabled decision support and situational awareness.,2008,2,Intelligent Decision Technologies,1,db/journals/idt/idt2.html#LehmannK08,http://content.iospress.com/articles/intelligent-decision-technologies/idt00021 +Yusri Arshad,Intelligent IT governance decision-making support framework for a developing country's public university.,2014,8,Intelligent Decision Technologies,2,db/journals/idt/idt8.html#ArshadAA14,https://doi.org/10.3233/IDT-130183 +Jonas Repschlaeger,Cloud service management decision support: An application of AHP for provider selection of a cloud-based IT service management system.,2014,8,Intelligent Decision Technologies,2,db/journals/idt/idt8.html#RepschlaegerPZ14,https://doi.org/10.3233/IDT-130181 +T. H. Nguyen,Machine learning algorithms application to road defects classification.,2018,12,Intelligent Decision Technologies,1,db/journals/idt/idt12.html#NguyenNSD18,https://doi.org/10.3233/IDT-170323 +Elena Bernasconi,An integrated approach based on business process modeling and fuzzy logic for risk identification and evaluation in production processes.,2013,7,Intelligent Decision Technologies,2,db/journals/idt/idt7.html#BernasconiFLNP13,https://doi.org/10.3233/IDT-130155 +Amel Grissa-Touzi,About uses an expert system for an intelligent exploitation of the large data set.,2014,8,Intelligent Decision Technologies,3,db/journals/idt/idt8.html#Grissa-TouziS14,https://doi.org/10.3233/IDT-140186 +Ali Chamam,Agent-based algorithms for collaborative price search in electronic commerce: A case study and performance evaluation.,2008,2,Intelligent Decision Technologies,3,db/journals/idt/idt2.html#ChamamPG08,http://content.iospress.com/articles/intelligent-decision-technologies/idt00032 +Yukio Ohsawa,Designing a market for data to enable chance discoveries.,2016,10,Intelligent Decision Technologies,3,db/journals/idt/idt10.html#OhsawaA16,https://doi.org/10.3233/IDT-150248 +Tomas Vantuch,An algorithm for Elliott Waves pattern detection.,2018,12,Intelligent Decision Technologies,1,db/journals/idt/idt12.html#VantuchZV18,https://doi.org/10.3233/IDT-170319 +Jagatheesan Kaliannan,AGC of multi-area interconnected power systems by considering different cost functions and Ant Colony Optimization technique based PID controller.,2017,11,Intelligent Decision Technologies,1,db/journals/idt/idt11.html#KaliannanBDOB17,https://doi.org/10.3233/IDT-160275 +Lukasz Sosnowski,Framework of compound object comparators.,2015,9,Intelligent Decision Technologies,4,db/journals/idt/idt9.html#Sosnowski15,https://doi.org/10.3233/IDT-140229 +Cong Li,A granularity approach to compound real option in multi-stage capital investment project.,2015,9,Intelligent Decision Technologies,4,db/journals/idt/idt9.html#LiWZ15,https://doi.org/10.3233/IDT-140228 +Benameur Ziani,An improved approach for automatic selection of multi-tables indexes in ralational data warehouses using maximal frequent itemsets.,2013,7,Intelligent Decision Technologies,4,db/journals/idt/idt7.html#ZianiO13,https://doi.org/10.3233/IDT-130169 +Hedieh Sajedi,Biometric verification by palmprint using contourlet transform.,2016,10,Intelligent Decision Technologies,4,db/journals/idt/idt10.html#Sajedi16,https://doi.org/10.3233/IDT-160270 +Nikos I. Karacapilidis,A novel framework for augmenting the quality of explanations in recommender systems.,2017,11,Intelligent Decision Technologies,2,db/journals/idt/idt11.html#KaracapilidisMC17,https://doi.org/10.3233/IDT-170287 +Klára Vicsi,Special issue on communicative social signals: Computational and behavioural aspects of human-human and human-machine interaction.,2014,8,Intelligent Decision Technologies,4,db/journals/idt/idt8.html#VicsiE14,https://doi.org/10.3233/IDT-140193 +Huizhen Liu,The optimization of worker's quantity based on cross-utilization in many departments.,2017,11,Intelligent Decision Technologies,1,db/journals/idt/idt11.html#Liu17a,https://doi.org/10.3233/IDT-160274 +Milton Corrêa,Abstract mental descriptions for agent design.,2010,4,Intelligent Decision Technologies,2,db/journals/idt/idt4.html#CorreaC10,https://doi.org/10.3233/IDT-2010-0073 +Chee Peng Lim,Special issue on intelligent knowledge processing and decision making techniques.,2009,3,Intelligent Decision Technologies,2,db/journals/idt/idt3.html#LimSJ09,https://doi.org/10.3233/IDT-2009-0048 +Daniel E. O'Leary,Predictive knowledge management using mirror worlds.,2010,4,Intelligent Decision Technologies,1,db/journals/idt/idt4.html#OLeary10,https://doi.org/10.3233/IDT-2010-0068 +Angela Consoli,Achieving distributed decision-making using BDI and Coo^2 for future Distributed Tactical Decision Aids.,2016,10,Intelligent Decision Technologies,4,db/journals/idt/idt10.html#Consoli16,https://doi.org/10.3233/IDT-160271 +Masoud Rabbani,Using metaheuristic algorithms to solve a dynamic cell formation problem with consideration of intra-cell layout design.,2017,11,Intelligent Decision Technologies,1,db/journals/idt/idt11.html#RabbaniFRK17,https://doi.org/10.3233/IDT-160281 +Yasuo Yamashita,Learning a selection problem of investment projects and capital structure through business game.,2010,4,Intelligent Decision Technologies,2,db/journals/idt/idt4.html#YamashitaTT10,https://doi.org/10.3233/IDT-2010-0076 +Mohammad Khazab,Evaluating pilot situation awareness using multi-agent systems.,2013,7,Intelligent Decision Technologies,4,db/journals/idt/idt7.html#KhazabLKTJTD13,https://doi.org/10.3233/IDT-130166 +Huizhen Liu,The optimization of worker's quantity based on cross-utilization in two departments.,2017,11,Intelligent Decision Technologies,1,db/journals/idt/idt11.html#Liu17,https://doi.org/10.3233/IDT-160273 +Alakananda Bhattacharya,Design of a high speed logic engine for distributed decision support systems.,2007,1,Intelligent Decision Technologies,3,db/journals/idt/idt1.html#BhattacharyaKM07,http://content.iospress.com/articles/intelligent-decision-technologies/idt00012 +S. Mahmoud Taheri,Using fuzzy logistic regression for modeling vague status situations: Application to a dietary pattern study.,2016,10,Intelligent Decision Technologies,2,db/journals/idt/idt10.html#TaheriANES16,https://doi.org/10.3233/IDT-150247 +David A. Schum,Toward cognitive assistants for complex decision making under uncertainty.,2014,8,Intelligent Decision Technologies,3,db/journals/idt/idt8.html#SchumTMB14,https://doi.org/10.3233/IDT-140192 +Bakhta Nachet,An agent-based distributed collaborative decision support system.,2014,8,Intelligent Decision Technologies,1,db/journals/idt/idt8.html#NachetA14,https://doi.org/10.3233/IDT-130174 +Tobias Heinroth,Human-computer interaction in next generation ambient intelligent environments.,2011,5,Intelligent Decision Technologies,1,db/journals/idt/idt5.html#HeinrothKPSBM11,https://doi.org/10.3233/IDT-2011-0096 +Geraldo Braz Junior,Classification of breast tissues using Getis-Ord statistics and support vector machine.,2009,3,Intelligent Decision Technologies,4,db/journals/idt/idt3.html#JuniorPSO09,https://doi.org/10.3233/IDT-2009-0055 +Sreram Balasubramaniyan,Stochastic optimal controller design for medium access constrained networked control systems with unknown dynamics.,2017,11,Intelligent Decision Technologies,3,db/journals/idt/idt11.html#Balasubramaniyan17a,https://doi.org/10.3233/IDT-170293 +ágoston Winkler,Intelligent decision support technologies in public and individual transport.,2017,11,Intelligent Decision Technologies,4,db/journals/idt/idt11.html#WinklerH17,https://doi.org/10.3233/IDT-170307 +George A. Tsihrintzis,Special issue: Knowledge-based Environments and Services in Human-Computer Interaction.,2011,5,Intelligent Decision Technologies,1,db/journals/idt/idt5.html#TsihrintzisV11,https://doi.org/10.3233/IDT-2011-0093 +Cun-Bin Li,Risk decision-making based on Mahalanobis-Taguchi system and grey cumulative prospect theory for enterprise information investment.,2016,10,Intelligent Decision Technologies,1,db/journals/idt/idt10.html#LiYG16,https://doi.org/10.3233/IDT-150236 +Efthymios Alepis,Object oriented architecture for affective multimodal e-learning interfaces.,2010,4,Intelligent Decision Technologies,3,db/journals/idt/idt4.html#AlepisV10,https://doi.org/10.3233/IDT-2010-0078 +Bruno Apolloni,A new goodness-of-fit statistical test.,2007,1,Intelligent Decision Technologies,4,db/journals/idt/idt1.html#ApolloniB07,http://content.iospress.com/articles/intelligent-decision-technologies/idt00017 +Dmitry Zinovev,Semi-supervised learning approaches for predicting semantic characteristics of lung nodules.,2009,3,Intelligent Decision Technologies,4,db/journals/idt/idt3.html#ZinovevVRFA09,https://doi.org/10.3233/IDT-2009-0056 +Maria do Carmo Nicoletti,The influence of search mechanisms in feature subset selection processes.,2008,2,Intelligent Decision Technologies,4,db/journals/idt/idt2.html#NicolettiS08,http://content.iospress.com/articles/intelligent-decision-technologies/idt00040 +Joachim Hasebrook,Infoviz for strategic decision making.,2008,2,Intelligent Decision Technologies,2,db/journals/idt/idt2.html#HasebrookS08,http://content.iospress.com/articles/intelligent-decision-technologies/idt00026 +Arnab Kumar De,A unified approach for fuzzy multiobjective stochastic programming with Cauchy and extreme value distributed fuzzy random variables.,2018,12,Intelligent Decision Technologies,1,db/journals/idt/idt12.html#DeDB18,https://doi.org/10.3233/IDT-170312 +Enoch A-iyeh,Gini index-based digital image complementing in the study of medical images.,2015,9,Intelligent Decision Technologies,2,db/journals/idt/idt9.html#A-iyehP15,https://doi.org/10.3233/IDT-140217 +Xing Liu,Non-linear behavior of supply chains under chaos environment with disruptions: Based on coupled map lattices.,2017,11,Intelligent Decision Technologies,3,db/journals/idt/idt11.html#LiuWXY17,https://doi.org/10.3233/IDT-1700303 +R. M. N. N. Ratnayake,Treatment planning for supracondylar fracture in humerus in children by image processing.,2012,6,Intelligent Decision Technologies,3,db/journals/idt/idt6.html#RatnayakeMTM12,https://doi.org/10.3233/IDT-2012-0137 +Hao Yu 0003,A decision aided system for sustainable waste management.,2015,9,Intelligent Decision Technologies,1,db/journals/idt/idt9.html#YuSYY15,https://doi.org/10.3233/IDT-140203 +Jens Pohl,Intelligent software for ecological building design.,2011,5,Intelligent Decision Technologies,3,db/journals/idt/idt5.html#PohlAP11,https://doi.org/10.3233/IDT-2011-0107 +Yukio Ohsawa,Tangled string for sequence visualization as fruit of ideas in Innovators Marketplace on Data Jackets.,2016,10,Intelligent Decision Technologies,3,db/journals/idt/idt10.html#OhsawaH16,https://doi.org/10.3233/IDT-150251 +Teik-Toe Teoh,Towards a portable intelligent facial expression recognizer.,2009,3,Intelligent Decision Technologies,3,db/journals/idt/idt3.html#TeohNC09,https://doi.org/10.3233/IDT-2009-0062 +Yasmina Hernane,Particle Swarm Optimisation algorithm for multi-agent system with dynamic ray (PSORM).,2016,10,Intelligent Decision Technologies,4,db/journals/idt/idt10.html#HernaneHB16,https://doi.org/10.3233/IDT-160268 +Nektarios Kostaras,Usability evaluation of Augmented Reality systems.,2012,6,Intelligent Decision Technologies,2,db/journals/idt/idt6.html#KostarasX12,https://doi.org/10.3233/IDT-2012-0130 +Maria Brbic,Tuning machine learning algorithms for content-based movie recommendation.,2015,9,Intelligent Decision Technologies,3,db/journals/idt/idt9.html#BrbicZ15,https://doi.org/10.3233/IDT-140219 +Mrutyunjaya Panda,Network intrusion detection system: A machine learning approach.,2011,5,Intelligent Decision Technologies,4,db/journals/idt/idt5.html#PandaADP11,https://doi.org/10.3233/IDT-2011-0117 +Waseem Ahmad,Time series data analysis using Artificial Immune System.,2018,12,Intelligent Decision Technologies,2,db/journals/idt/idt12.html#AhmadN18,https://doi.org/10.3233/IDT-170315 +Monira Aloud,Adaptive GP agent-based trading system under intraday seasonality model.,2017,11,Intelligent Decision Technologies,2,db/journals/idt/idt11.html#Aloud17,https://doi.org/10.3233/IDT-170291 +Nandita Sharma,Evolutionary algorithms using cluster patterns for timetabling.,2013,7,Intelligent Decision Technologies,2,db/journals/idt/idt7.html#SharmaGM13,https://doi.org/10.3233/IDT-130157 +Buddhika Madduma,Image retrieval based on high level concept detection and semantic labelling.,2012,6,Intelligent Decision Technologies,3,db/journals/idt/idt6.html#MaddumaR12,https://doi.org/10.3233/IDT-2012-0135 +Barry G. Silverman,Systems Social Seience: A design inquiry approach for stabilization and reconstruction of social systems.,2010,4,Intelligent Decision Technologies,1,db/journals/idt/idt4.html#Silverman10,https://doi.org/10.3233/IDT-2010-0069 +Erum Haris,Framework of blog data based multi-criteria weighted points of interest graph for trip planning.,2018,12,Intelligent Decision Technologies,1,db/journals/idt/idt12.html#HarisG18,https://doi.org/10.3233/IDT-170321 +Mrutyunjaya Panda,Soft granular computing based classification using hybrid fuzzy-KNN-SVM.,2016,10,Intelligent Decision Technologies,2,db/journals/idt/idt10.html#PandaAT16,https://doi.org/10.3233/IDT-150243 +Abdullah Alqahtani,Knowledge-based life event model for e-government service integration with illustrative examples.,2014,8,Intelligent Decision Technologies,3,db/journals/idt/idt8.html#AlqahtaniLL14,https://doi.org/10.3233/IDT-140188 +Chong Tak Yaw,An ELM based Multi-Agent System and its applications to power generation.,2017,11,Intelligent Decision Technologies,3,db/journals/idt/idt11.html#YawWYYAT17,https://doi.org/10.3233/IDT-170296 +Manolis Tzagarakis,Using semantic types to formalize and augment complex argumentative discourses.,2014,8,Intelligent Decision Technologies,3,db/journals/idt/idt8.html#TzagarakisK14,https://doi.org/10.3233/IDT-140190 +Witold Pedrycz,Granular fuzzy rule-based architectures: Pursuing analysis and design in the framework of granular computing.,2015,9,Intelligent Decision Technologies,4,db/journals/idt/idt9.html#Pedrycz15,https://doi.org/10.3233/IDT-140227 +Susan Farley,Flight rescheduling decisions for minimizing passenger trip delays.,2014,8,Intelligent Decision Technologies,1,db/journals/idt/idt8.html#FarleyBS14,https://doi.org/10.3233/IDT-130175 +Paraskevi S. Lampropoulou,Intelligent mobile content-based retrieval from digital music libraries.,2009,3,Intelligent Decision Technologies,3,db/journals/idt/idt3.html#LampropoulouLT09,https://doi.org/10.3233/IDT-2009-0060 +Kadri Sylejmani,Solving aircraft sequencing problem by using genetic algorithms.,2017,11,Intelligent Decision Technologies,4,db/journals/idt/idt11.html#SylejmaniBD17,https://doi.org/10.3233/IDT-170309 +Ji Qi,Matrix-like visualization based on topic modeling for discovering connections between disjoint disciplines.,2016,10,Intelligent Decision Technologies,3,db/journals/idt/idt10.html#QiO16,https://doi.org/10.3233/IDT-150252 +M. Nesa Sudha,Design of antenna in Wireless Body Area Network (WBAN) for biotelemetry applications.,2016,10,Intelligent Decision Technologies,4,db/journals/idt/idt10.html#SudhaB16,https://doi.org/10.3233/IDT-160263 +Sanjay Chakraborty,Design and implementation of a multivalued quantum circuit for threshold based color image segmentation.,2018,12,Intelligent Decision Technologies,2,db/journals/idt/idt12.html#ChakrabortyMS18,https://doi.org/10.3233/IDT-180331 +Silke Schworm,Does personalization matter? The role of social cues in instructional explanations.,2012,6,Intelligent Decision Technologies,2,db/journals/idt/idt6.html#SchwormS12,https://doi.org/10.3233/IDT-2012-0127 +Kai Neumann,Heart vs. Model.,2008,2,Intelligent Decision Technologies,2,db/journals/idt/idt2.html#Neumann08,http://content.iospress.com/articles/intelligent-decision-technologies/idt00030 +Changbing Li,A novel method to compute Nash equilibrium in non-cooperative n-person games based on differential evolutionary algorithm.,2014,8,Intelligent Decision Technologies,3,db/journals/idt/idt8.html#LiCD14,https://doi.org/10.3233/IDT-140189 +Luís Moniz Pereira,Modelling decision making with probabilistic causation.,2010,4,Intelligent Decision Technologies,2,db/journals/idt/idt4.html#PereiraR10,https://doi.org/10.3233/IDT-2010-0074 +Harshadkumar B. Prajapati,Detection and classification of rice plant diseases.,2017,11,Intelligent Decision Technologies,3,db/journals/idt/idt11.html#PrajapatiSD17,https://doi.org/10.3233/IDT-170301 +Félix Iglesias Vázquez,Holistic smart homes for air quality and thermal comfort.,2013,7,Intelligent Decision Technologies,1,db/journals/idt/idt7.html#VazquezKK13,https://doi.org/10.3233/IDT-120149 +Chong Tak Yaw,An ELM based multi-agent system and its applications to power generation.,2018,12,Intelligent Decision Technologies,2,db/journals/idt/idt12.html#YawWYYAT18,https://doi.org/10.3233/IDT-180325 +Abder-Rahman Ali,Fuzzy C-Means based on Minkowski distance for liver CT image segmentation.,2016,10,Intelligent Decision Technologies,4,db/journals/idt/idt10.html#AliCHH16,https://doi.org/10.3233/IDT-160266 +M. Govindarajan,Comparative study of ensemble classifiers for direct marketing.,2015,9,Intelligent Decision Technologies,2,db/journals/idt/idt9.html#Govindarajan15,https://doi.org/10.3233/IDT-140212 +Farhad Daneshgar,A framework for crisis management in developing countries.,2011,5,Intelligent Decision Technologies,2,db/journals/idt/idt5.html#DaneshgarC11,https://doi.org/10.3233/IDT-2011-0106 +Sumit Goyal,Intelligent Artificial Neural Network computing models for predicting shelf life of processed cheese.,2013,7,Intelligent Decision Technologies,2,db/journals/idt/idt7.html#GoyalG13,https://doi.org/10.3233/IDT-130154 +Y. C. Lin,An optimal vibration control strategy for robust active suspension systems design with actuator delays and uncertainties.,2017,11,Intelligent Decision Technologies,3,db/journals/idt/idt11.html#LinLPB17,https://doi.org/10.3233/IDT-170300 +Maria Virvou,Special Issue on Advances in Recommender Systems.,2015,9,Intelligent Decision Technologies,3,db/journals/idt/idt9.html#VirvouT15,https://doi.org/10.3233/IDT-140224 +Kanji Inoko,Knowledge-based environments for instructors' decision making in chemical process laboratory.,2011,5,Intelligent Decision Technologies,1,db/journals/idt/idt5.html#InokoMK11,https://doi.org/10.3233/IDT-2011-0097 +Berihun M. Negash,Application of artificial neural networks for calibration of a reservoir model.,2018,12,Intelligent Decision Technologies,1,db/journals/idt/idt12.html#NegashVJ18,https://doi.org/10.3233/IDT-170324 +Wei Deng Solvang,Special Issue: CogInfoCom enabled research and applications in engineering.,2015,9,Intelligent Decision Technologies,1,db/journals/idt/idt9.html#SolvangS15,https://doi.org/10.3233/IDT-140200 +Juan Wang,Scalability of evolving networks of trading agents.,2007,1,Intelligent Decision Technologies,4,db/journals/idt/idt1.html#WangW07,http://content.iospress.com/articles/intelligent-decision-technologies/idt00016 +Joni Jämsä,Vehicle in a cognitive network.,2015,9,Intelligent Decision Technologies,1,db/journals/idt/idt9.html#JamsaSL15,https://doi.org/10.3233/IDT-140202 +Vassilis S. Kodogiannis,Special issue: Advances in medical intelligent decision support systems.,2009,3,Intelligent Decision Technologies,4,db/journals/idt/idt3.html#KodogiannisPL09,https://doi.org/10.3233/IDT-2009-0054 +Bernardete Ribeiro,Financial credit risk assessment via learning-based hashing.,2017,11,Intelligent Decision Technologies,2,db/journals/idt/idt11.html#RibeiroC17,https://doi.org/10.3233/IDT-170286 +Barry G. Silverman,An embeddable testbed for insurgent and terrorist agent theories: InsurgiSim.,2008,2,Intelligent Decision Technologies,4,db/journals/idt/idt2.html#SilvermanNKPCB08,http://content.iospress.com/articles/intelligent-decision-technologies/idt00037 +Theresa L. Jefferson,Using geographic information systems to support decision making in disaster response.,2016,10,Intelligent Decision Technologies,2,db/journals/idt/idt10.html#JeffersonJ16,https://doi.org/10.3233/IDT-160255 +Grzegorz Szwoch,Visual object tracking system employing fixed and PTZ cameras.,2011,5,Intelligent Decision Technologies,2,db/journals/idt/idt5.html#SzwochDCSC11,https://doi.org/10.3233/IDT-2011-0105 +Tung Van Pham,Optimal design for a shell-tube heat exchanger of a binary geothermal power plant from economic point of view.,2017,11,Intelligent Decision Technologies,3,db/journals/idt/idt11.html#PhamASL17,https://doi.org/10.3233/IDT-170295 +Tomasz D. Loboda,An agent for versatile intelligence analysis system.,2011,5,Intelligent Decision Technologies,1,db/journals/idt/idt5.html#LobodaBG11,https://doi.org/10.3233/IDT-2011-0095 +Michal Lech,Virtual Whiteboard: A gesture-controlled pen-free tool emulating school whiteboard.,2012,6,Intelligent Decision Technologies,2,db/journals/idt/idt6.html#LechKC12,https://doi.org/10.3233/IDT-2012-0132 +,Guest editorial.,2012,6,Intelligent Decision Technologies,2,db/journals/idt/idt6.html#X12,https://doi.org/10.3233/IDT-2012-0124 +Kanwarpreet Kaur,Measuring the nearness of layered flow graphs: Application to Content Based Image Retrieval.,2016,10,Intelligent Decision Technologies,2,db/journals/idt/idt10.html#KaurRH16,https://doi.org/10.3233/IDT-150246 +Sakari Pieskä,Towards easier human-robot interaction.,2015,9,Intelligent Decision Technologies,1,db/journals/idt/idt9.html#PieskaKS15,https://doi.org/10.3233/IDT-140204 +Djamila Hamdadou,A spatial group decision support system: Coupling negotiation and multicriteria approaches.,2016,10,Intelligent Decision Technologies,2,db/journals/idt/idt10.html#HamdadouB16,https://doi.org/10.3233/IDT-150244 +Nathan J. Leap,A confidence paradigm for classification systems with out-of-library considerations.,2012,6,Intelligent Decision Technologies,1,db/journals/idt/idt6.html#LeapB12,https://doi.org/10.3233/IDT-2012-0119 +He Xu,Web based decision support system for eye movement disorder diagnosis.,2016,10,Intelligent Decision Technologies,1,db/journals/idt/idt10.html#XuXYLA16,https://doi.org/10.3233/IDT-150237 +Kotaro Yatsugi,Insightful slideshow: Automatic composition of personal photograph slideshow using the web.,2010,4,Intelligent Decision Technologies,4,db/journals/idt/idt4.html#YatsugiFU10,https://doi.org/10.3233/IDT-2010-0086 +Toyohide Watanabe,Special issue on the Design of Intelligent Environment.,2010,4,Intelligent Decision Technologies,4,db/journals/idt/idt4.html#WatanabeJ10,https://doi.org/10.3233/IDT-2010-0084 +S. R. Jino Ramson,A case study on different wireless networking technologies for remote health care.,2016,10,Intelligent Decision Technologies,4,db/journals/idt/idt10.html#RamsonM16,https://doi.org/10.3233/IDT-160262 +András Horváth,Computer model for font legibility measurement.,2017,11,Intelligent Decision Technologies,3,db/journals/idt/idt11.html#HorvathD17,https://doi.org/10.3233/IDT-170299 +Pradeep Ray,Fuzzy awareness model for disaster situations.,2009,3,Intelligent Decision Technologies,1,db/journals/idt/idt3.html#RayC09,https://doi.org/10.3233/IDT-2009-0047 +Jie Ouyang,From centralized to distributed decision tree induction using CHAID and fisher's linear discriminant function algorithms.,2011,5,Intelligent Decision Technologies,2,db/journals/idt/idt5.html#OuyangPS11,https://doi.org/10.3233/IDT-2011-0102 +Spiridon C. Denaxas,A GO-driven semantic similarity measure for quantifying the biological relatedness of gene products.,2009,3,Intelligent Decision Technologies,4,db/journals/idt/idt3.html#DenaxasT09,https://doi.org/10.3233/IDT-2009-0059 +Chi-Kong Chan,Belief-based stability in non-transferable utility coalition formation with uncertainty.,2011,5,Intelligent Decision Technologies,2,db/journals/idt/idt5.html#ChanL11,https://doi.org/10.3233/IDT-2011-0103 +Mubarak Alrashoud,Planning for the next software release using adaptive network-based fuzzy inference system.,2017,11,Intelligent Decision Technologies,2,db/journals/idt/idt11.html#AlrashoudA17,https://doi.org/10.3233/IDT-170284 +Luís Cândido Dias,Special issue on intelligent technologies for planning and decision making under uncertainty.,2012,6,Intelligent Decision Technologies,4,db/journals/idt/idt6.html#DiasAI12,https://doi.org/10.3233/IDT-2012-0140 +Maurizio Marchese,An interaction-centric approach to support peer coordination in distributed emergency response management.,2009,3,Intelligent Decision Technologies,1,db/journals/idt/idt3.html#MarcheseVTOMB09,https://doi.org/10.3233/IDT-2009-0044 +Yunna Wu,An almost stochastic dominance based method for stochastic multiple attributes decision making.,2017,11,Intelligent Decision Technologies,2,db/journals/idt/idt11.html#WuXXX17,https://doi.org/10.3233/IDT-170289 +Antonio L. Alfeo,Detecting urban road congestion via parametric adaptation of position-based stigmergy.,2017,11,Intelligent Decision Technologies,4,db/journals/idt/idt11.html#AlfeoCLV17,https://doi.org/10.3233/IDT-170308 +Takeshi Uno,A Stackelberg solution for fuzzy random competitive location problems with demand site uncertainty.,2012,6,Intelligent Decision Technologies,1,db/journals/idt/idt6.html#UnoKK12,https://doi.org/10.3233/IDT-2012-0123 +Samiullah Paracha,Exploring the role of drama and storyboarding in learner-centered scenario generation.,2011,5,Intelligent Decision Technologies,3,db/journals/idt/idt5.html#ParachaY11,https://doi.org/10.3233/IDT-2011-0109 +Hadi Shahraki,Ant colony optimization and decision function estimation.,2017,11,Intelligent Decision Technologies,1,db/journals/idt/idt11.html#ShahrakiZ17,https://doi.org/10.3233/IDT-160278 +Noria Taghezout,An agent-based simulation approach in an IDSS for evaluating performance in flow-shop manufacturing system.,2011,5,Intelligent Decision Technologies,3,db/journals/idt/idt5.html#TaghezoutZ11,https://doi.org/10.3233/IDT-2011-0111 +Michael Schmidt 0001,Dynamic time warping for the recognition of single-stroke input.,2018,12,Intelligent Decision Technologies,2,db/journals/idt/idt12.html#SchmidtW18,https://doi.org/10.3233/IDT-180326 +Binoy B. Nair,Artificial intelligence applications in financial forecasting - a survey and some empirical results.,2015,9,Intelligent Decision Technologies,2,db/journals/idt/idt9.html#NairM15,https://doi.org/10.3233/IDT-140211 +Amel Grissa-Touzi,Intelligent top k query answering using meta-data base.,2016,10,Intelligent Decision Technologies,1,db/journals/idt/idt10.html#Grissa-TouziM16,https://doi.org/10.3233/IDT-150233 +Sakari Pieskä,Enhancing innovation capability with cognitive infocommunications.,2015,9,Intelligent Decision Technologies,1,db/journals/idt/idt9.html#PieskaKL15,https://doi.org/10.3233/IDT-140206 +Hicham Hakam,RFID-based communication in container ports.,2015,9,Intelligent Decision Technologies,1,db/journals/idt/idt9.html#HakamSP15,https://doi.org/10.3233/IDT-140201 +Kheng Kia Khor,A methological framework to remediate the visual of Malaysian shadow play into digital screen.,2018,12,Intelligent Decision Technologies,1,db/journals/idt/idt12.html#Khor18,https://doi.org/10.3233/IDT-170322 +Timothy Ganesan,Multiobjective optimization using particle swarm optimization with non-Gaussian random generators.,2016,10,Intelligent Decision Technologies,2,db/journals/idt/idt10.html#GanesanVE16,https://doi.org/10.3233/IDT-150241 +P. Krishnakumar,Machine learning based tool condition classification using acoustic emission and vibration data in high speed milling process using wavelet features.,2018,12,Intelligent Decision Technologies,2,db/journals/idt/idt12.html#KrishnakumarRR18,https://doi.org/10.3233/IDT-180332 +Imran Rahman,Novel metaheuristic optimization strategies for plug-in hybrid electric vehicles: A holistic review.,2016,10,Intelligent Decision Technologies,2,db/journals/idt/idt10.html#RahmanVSA16,https://doi.org/10.3233/IDT-150245 +Sanchita Ghosh,An evolutionary approach to velocity and traffic sensitive call admission control.,2011,5,Intelligent Decision Technologies,4,db/journals/idt/idt5.html#GhoshK11,https://doi.org/10.3233/IDT-2011-0118 +Kazunori Nishino,An analysis of learning preferences and e-learning suitability for effective e-learning architecture.,2010,4,Intelligent Decision Technologies,4,db/journals/idt/idt4.html#NishinoIMAF10,https://doi.org/10.3233/IDT-2010-0088 +Kym J. Pohl,A translation engine in support of context-level interoperability.,2008,2,Intelligent Decision Technologies,1,db/journals/idt/idt2.html#Pohl08,http://content.iospress.com/articles/intelligent-decision-technologies/idt00024 +Ziyi You,Novel dynamic data aggregation scheme for WSN based intelligent vehicle systems.,2016,10,Intelligent Decision Technologies,2,db/journals/idt/idt10.html#YouCW16,https://doi.org/10.3233/IDT-150242 +Efthimios Bothos,Recommender systems for nudging commuters towards eco-friendly decisions.,2015,9,Intelligent Decision Technologies,3,db/journals/idt/idt9.html#BothosAM15,https://doi.org/10.3233/IDT-140223 +Yuki Watanabe,Effective solution knowledge organization from discussion record.,2010,4,Intelligent Decision Technologies,4,db/journals/idt/idt4.html#WatanabeKW10,https://doi.org/10.3233/IDT-2010-0085 +Ioanna-Ourania Stathopoulou,Appearance-based face detection with artificial neural networks.,2011,5,Intelligent Decision Technologies,2,db/journals/idt/idt5.html#StathopoulouT11,https://doi.org/10.3233/IDT-2011-0100 +Rahul Kala,Modular symbiotic adaptive neuro evolution for high dimensionality classificatory problems.,2011,5,Intelligent Decision Technologies,4,db/journals/idt/idt5.html#KalaST11,https://doi.org/10.3233/IDT-2011-0114 +Alma-Delia Cuevas,Automatic fusion of knowledge stored in ontologies.,2010,4,Intelligent Decision Technologies,1,db/journals/idt/idt4.html#CuevasG10,https://doi.org/10.3233/IDT-2010-0066 +Ke Qin,The entire range of Chaotic pattern recognition properties possessed by the Adachi neural network.,2012,6,Intelligent Decision Technologies,1,db/journals/idt/idt6.html#QinO12,https://doi.org/10.3233/IDT-2012-0120 +Assia Mouloudi,Design process of interactive information systems.,2007,1,Intelligent Decision Technologies,3,db/journals/idt/idt1.html#MouloudiM07,http://content.iospress.com/articles/intelligent-decision-technologies/idt00011 +Habib Hadj Mabrouk,Contribution of learning CHARADE system of rules for the prevention of rail accidents.,2017,11,Intelligent Decision Technologies,4,db/journals/idt/idt11.html#Mabrouk17,https://doi.org/10.3233/IDT-170304 +Bartosz Kunka,Gaze-tracking-based audio-visual correlation analysis employing quality of experience methodology.,2010,4,Intelligent Decision Technologies,3,db/journals/idt/idt4.html#KunkaKKSC10,https://doi.org/10.3233/IDT-2010-0082 +Fabiano Fernandes dos Santos,Improving hierarchical document cluster labels through candidate term selection.,2012,6,Intelligent Decision Technologies,1,db/journals/idt/idt6.html#SantosCR12,https://doi.org/10.3233/IDT-2012-0121 +Marco Cococcioni,One day-ahead forecasting of energy production in solar photovoltaic installations: An empirical study.,2012,6,Intelligent Decision Technologies,3,db/journals/idt/idt6.html#CococcioniDL12,https://doi.org/10.3233/IDT-2012-0136 +Nicholas Ampazis,FALCON: A matrix factorization framework for recommender systems using constrained optimization.,2015,9,Intelligent Decision Technologies,3,db/journals/idt/idt9.html#AmpazisE15,https://doi.org/10.3233/IDT-140218 +Nantia D. Iakovidou,Ranking genes based on kernels.,2009,3,Intelligent Decision Technologies,4,db/journals/idt/idt3.html#IakovidouNM09,https://doi.org/10.3233/IDT-2009-0058 +Katerina Kabassi,Specifying the personalization reasoning mechanism for an intelligent medical e-learning system on Atheromatosis: An empirical study.,2008,2,Intelligent Decision Technologies,3,db/journals/idt/idt2.html#KabassiVTVP08,http://content.iospress.com/articles/intelligent-decision-technologies/idt00035 +Fahad Parvez Mahdi,Face recognition-based real-time system for surveillance.,2017,11,Intelligent Decision Technologies,1,db/journals/idt/idt11.html#MahdiHAMMV17,https://doi.org/10.3233/IDT-160279 +Theodore L. Kottas,Fuzzy cognitive network: A general framework.,2007,1,Intelligent Decision Technologies,4,db/journals/idt/idt1.html#KottasBC07,http://content.iospress.com/articles/intelligent-decision-technologies/idt00015 +Anjali Goyal,Optimizing bug report assignment using multi criteria decision making technique.,2017,11,Intelligent Decision Technologies,3,db/journals/idt/idt11.html#GoyalS17,https://doi.org/10.3233/IDT-170297 +Cory J. Butz,A formal comparison of variable elimination and arc reversal in Bayesian network inference.,2009,3,Intelligent Decision Technologies,3,db/journals/idt/idt3.html#ButzCKL09,https://doi.org/10.3233/IDT-2009-0064 +åsa Ericson,Manufacturing knowledge: Going from production of things to designing value in use.,2015,9,Intelligent Decision Technologies,1,db/journals/idt/idt9.html#EricsonJN15,https://doi.org/10.3233/IDT-140207 +Mohamed Hafidi,Design and evaluation of an adaptive and intelligent tutoring system by expert system.,2013,7,Intelligent Decision Technologies,4,db/journals/idt/idt7.html#HafidiB13,https://doi.org/10.3233/IDT-130167 +Sreram Balasubramaniyan,Stochastic optimal controller design for medium access constrained networked control systems with unknown dynamics.,2017,11,Intelligent Decision Technologies,2,db/journals/idt/idt11.html#Balasubramaniyan17,https://doi.org/10.3233/IDT-170290 +Jinsong Leng,A role-oriented BDI framework for real-time multiagent teaming.,2008,2,Intelligent Decision Technologies,4,db/journals/idt/idt2.html#LengLJ08,http://content.iospress.com/articles/intelligent-decision-technologies/idt00038 +Mikio Hasegawa,Design and implementation of a user-centric access point selection algorithm based on mutually connected neural networks.,2010,4,Intelligent Decision Technologies,4,db/journals/idt/idt4.html#HasegawaTH10,https://doi.org/10.3233/IDT-2010-0090 +Cornelius Borck,Seeing with the screen.,2008,2,Intelligent Decision Technologies,2,db/journals/idt/idt2.html#Borck08,http://content.iospress.com/articles/intelligent-decision-technologies/idt00025 +Luís Moniz Pereira,Evolution prospection in decision making.,2009,3,Intelligent Decision Technologies,3,db/journals/idt/idt3.html#PereiraA09,https://doi.org/10.3233/IDT-2009-0063 +Binoy B. Nair,An intelligent recommender system for stock trading.,2015,9,Intelligent Decision Technologies,3,db/journals/idt/idt9.html#NairM15a,https://doi.org/10.3233/IDT-140220 +Cun-Bin Li,A risky multi-criteria decision-making approach under language environment.,2016,10,Intelligent Decision Technologies,1,db/journals/idt/idt10.html#LiGQF16,https://doi.org/10.3233/IDT-150238 +Manuel Mora,IT Service Management and Engineering: An Intelligent Decision-Making Support Systems Approach.,2014,8,Intelligent Decision Technologies,2,db/journals/idt/idt8.html#MoraGWG14,https://doi.org/10.3233/IDT-130178 +Mary L. Cummings,Human-automated planner collaboration in complex resource allocation decision support systems.,2010,4,Intelligent Decision Technologies,2,db/journals/idt/idt4.html#CummingsB10,https://doi.org/10.3233/IDT-2010-0072 +Jens Pohl,Challenging computer software frontiers and the human resistance to change.,2010,4,Intelligent Decision Technologies,1,db/journals/idt/idt4.html#Pohl10,https://doi.org/10.3233/IDT-2010-0067 +Angeliki Mikeli,A new recommendation technique for interval scaled multi-criteria rating systems incorporating intensity of preferences.,2015,9,Intelligent Decision Technologies,3,db/journals/idt/idt9.html#MikeliAD15,https://doi.org/10.3233/IDT-140222 +Junfeng Tian,Flexible dynamic weight decision scheme.,2015,9,Intelligent Decision Technologies,2,db/journals/idt/idt9.html#TianJWC15,https://doi.org/10.3233/IDT-140214 +Gerhard Wickler,Information-gathering: From sensor data to decision support in three simple steps.,2009,3,Intelligent Decision Technologies,1,db/journals/idt/idt3.html#WicklerP09,https://doi.org/10.3233/IDT-2009-0043 +Stephen W. Carden,Small-sample reinforcement learning: Improving policies using synthetic data.,2017,11,Intelligent Decision Technologies,2,db/journals/idt/idt11.html#CardenL17,https://doi.org/10.3233/IDT-170285 +Hisayoshi Kunimune,Implementation and evaluation of a method for realigning annotations in updated web-based materials.,2010,4,Intelligent Decision Technologies,4,db/journals/idt/idt4.html#KunimuneTF10,https://doi.org/10.3233/IDT-2010-0087 +Hiroshi Sakai,Granules for association rules and decision support in the getRNIA system.,2015,9,Intelligent Decision Technologies,4,db/journals/idt/idt9.html#SakaiWYN15,https://doi.org/10.3233/IDT-140226 +Nandita Sharma,Modeling observer stress: A computational approach.,2015,9,Intelligent Decision Technologies,2,db/journals/idt/idt9.html#SharmaG15,https://doi.org/10.3233/IDT-140216 +Mrutyunjaya Panda,Intelligent data analysis for sustainable smart grids using hybrid classification by genetic algorithm based discretization.,2017,11,Intelligent Decision Technologies,2,db/journals/idt/idt11.html#Panda17,https://doi.org/10.3233/IDT-170283 +Antonio Picariello,A web usage mining algorithm for web personalization.,2008,2,Intelligent Decision Technologies,4,db/journals/idt/idt2.html#PicarielloS08,http://content.iospress.com/articles/intelligent-decision-technologies/idt00039 +Dale Lambert,Ubiquitous command and control.,2007,1,Intelligent Decision Technologies,3,db/journals/idt/idt1.html#LambertS07,http://content.iospress.com/articles/intelligent-decision-technologies/idt00013 +Tanapon Tantisripreecha,LegalEX: An expert system for law firm.,2016,10,Intelligent Decision Technologies,3,db/journals/idt/idt10.html#Tantisripreecha16,https://doi.org/10.3233/IDT-160258 +Anastasios Savvopoulos,User modelling server for adaptive help.,2011,5,Intelligent Decision Technologies,1,db/journals/idt/idt5.html#SavvopoulosV11,https://doi.org/10.3233/IDT-2011-0094 +Elpiniki I. Papageorgiou,A Fuzzy Inference Map approach to cope with uncertainty in modeling medical knowledge and making decisions.,2011,5,Intelligent Decision Technologies,3,db/journals/idt/idt5.html#Papageorgiou11,https://doi.org/10.3233/IDT-2011-0108 +Bernardete Ribeiro,Aggregated local models via subspace clustering.,2015,9,Intelligent Decision Technologies,2,db/journals/idt/idt9.html#RibeiroC15,https://doi.org/10.3233/IDT-140213 +A. Sampath,ECG Morphological Marking using Discrete Wavelet Transform.,2016,10,Intelligent Decision Technologies,4,db/journals/idt/idt10.html#SampathS16,https://doi.org/10.3233/IDT-160264 +Luis G. Martínez,Decision making fuzzy model for software engineering role assignment based on fuzzy logic and big five patterns using RAMSET.,2012,6,Intelligent Decision Technologies,1,db/journals/idt/idt6.html#MartinezCDL12,https://doi.org/10.3233/IDT-2012-0122 +Anne Beer,Extreme events.,2008,2,Intelligent Decision Technologies,2,db/journals/idt/idt2.html#BeerG08,http://content.iospress.com/articles/intelligent-decision-technologies/idt00029 +Dai Hamada,Autonomous decision on team roles for efficient team formation by parameter learning and its evaluation.,2013,7,Intelligent Decision Technologies,3,db/journals/idt/idt7.html#HamadaS13,https://doi.org/10.3233/IDT-130160 +Faisal Abouzaid,Towards a formal analysis of dynamic reconfiguration in WS-BPEL.,2013,7,Intelligent Decision Technologies,3,db/journals/idt/idt7.html#AbouzaidMMQ13,https://doi.org/10.3233/IDT-130164 +Masaya Morita,Agent-based customization of a remote conversation support system.,2013,7,Intelligent Decision Technologies,3,db/journals/idt/idt7.html#MoritaK13,https://doi.org/10.3233/IDT-130161 +Mutlaq B. Alotaibi,An empirical approach to multimodal customer knowledge management.,2010,4,Intelligent Decision Technologies,3,db/journals/idt/idt4.html#AlotaibiR10,https://doi.org/10.3233/IDT-2010-0079 +Dávid Sik,Gamification and driving decision support using the sensors of vehicles and smartphones.,2017,11,Intelligent Decision Technologies,4,db/journals/idt/idt11.html#SikEL17,https://doi.org/10.3233/IDT-170306 +Elisa Boff,Collaborative groups in a medical learning environment.,2010,4,Intelligent Decision Technologies,2,db/journals/idt/idt4.html#BoffFRVC10,https://doi.org/10.3233/IDT-2010-0075 +Ivan Chorbev,SA Tabu Miner: A hybrid heuristic algorithm for rule induction.,2012,6,Intelligent Decision Technologies,4,db/journals/idt/idt6.html#ChorbevJM12,https://doi.org/10.3233/IDT-2012-0142 +Ibtissem Gasmi,Collaborative filtering recommendation based on dynamic changes of user interest.,2015,9,Intelligent Decision Technologies,3,db/journals/idt/idt9.html#GasmiSHA15,https://doi.org/10.3233/IDT-140221 +Ning Chen,Towards tangible benefits of corporate failure prediction with business sector: A comparative study.,2016,10,Intelligent Decision Technologies,4,db/journals/idt/idt10.html#ChenCR16,https://doi.org/10.3233/IDT-160269 +Shogo Kori,Application of search engine focusing on trend-related queries to market of data.,2016,10,Intelligent Decision Technologies,3,db/journals/idt/idt10.html#KoriYZTKIT16,https://doi.org/10.3233/IDT-150250 +Dimitrios Tsolis,OWLearn: An open source e-learning platform supporting adaptivity and personalization.,2012,6,Intelligent Decision Technologies,2,db/journals/idt/idt6.html#TsolisCKPLT12,https://doi.org/10.3233/IDT-2012-0126 +Nikos I. Karacapilidis,On a meaningful exploitation of machine and human reasoning to tackle data-intensive decision making.,2013,7,Intelligent Decision Technologies,3,db/journals/idt/idt7.html#KaracapilidisTC13,https://doi.org/10.3233/IDT-130165 +Iván Palomares,Consensus model for large-scale group decision support in IT services management.,2014,8,Intelligent Decision Technologies,2,db/journals/idt/idt8.html#Palomares14,https://doi.org/10.3233/IDT-130180 +Jeffrey Tweedale,Building a decision making framework using agent teams.,2007,1,Intelligent Decision Technologies,4,db/journals/idt/idt1.html#TweedaleISUJ07,http://content.iospress.com/articles/intelligent-decision-technologies/idt00018 +Fukiko Kobayashi,A study on the view of oral health and oral risk management in Japan: Narrative analysis in combination with text-mining and KJ method.,2016,10,Intelligent Decision Technologies,3,db/journals/idt/idt10.html#KobayashiN16,https://doi.org/10.3233/IDT-150249 +Naoto Mukai,Simulation evaluation for on-demand bus system with electrical vehicles.,2010,4,Intelligent Decision Technologies,4,db/journals/idt/idt4.html#MukaiK10,https://doi.org/10.3233/IDT-2010-0092 +Rasmita Dash,Gene selection and classification of microarray data: A Pareto DE approach.,2017,11,Intelligent Decision Technologies,1,db/journals/idt/idt11.html#DashM17,https://doi.org/10.3233/IDT-160280 +D. Selvathi,FPGA implementation of on-chip ANN for breast cancer diagnosis.,2016,10,Intelligent Decision Technologies,4,db/journals/idt/idt10.html#SelvathiN16,https://doi.org/10.3233/IDT-160261 +Noriyuki Kushiro,Can residents manage energy in a home by knowing their own life events?,2015,9,Intelligent Decision Technologies,4,db/journals/idt/idt9.html#Kushiro15,https://doi.org/10.3233/IDT-140230 +Dionisios N. Sotiropoulos,Artificial immune system-based music recommendation.,2018,12,Intelligent Decision Technologies,2,db/journals/idt/idt12.html#SotiropoulosT18,https://doi.org/10.3233/IDT-180328 +Roy Rada,Intelligent technologies for investing: A review of engineering literature.,2008,2,Intelligent Decision Technologies,3,db/journals/idt/idt2.html#RadaH08,http://content.iospress.com/articles/intelligent-decision-technologies/idt00034 +Anders Håkansson,Communicating the realization process during technology implementation.,2015,9,Intelligent Decision Technologies,1,db/journals/idt/idt9.html#HakanssonNA15,https://doi.org/10.3233/IDT-140205 +Andreas Tolk,Implied ontological representation within the levels of conceptual interoperability model.,2008,2,Intelligent Decision Technologies,1,db/journals/idt/idt2.html#TolkTD08,http://content.iospress.com/articles/intelligent-decision-technologies/idt00020 +Luís Nunes,Communication during learning in heterogeneous teams of learning agents.,2008,2,Intelligent Decision Technologies,3,db/journals/idt/idt2.html#NunesO08,http://content.iospress.com/articles/intelligent-decision-technologies/idt00033 +Dima Alberg,INPRET: The Interval Prediction Tree algorithm for temporal numerical data.,2016,10,Intelligent Decision Technologies,4,db/journals/idt/idt10.html#AlbergL16,https://doi.org/10.3233/IDT-160267 +Demosthenes Akoumianakis,Transformable boundary artifacts for knowledge-based work in cross-organization virtual communities spaces.,2011,5,Intelligent Decision Technologies,1,db/journals/idt/idt5.html#AkoumianakisVVKMPAS11,https://doi.org/10.3233/IDT-2011-0098 +Gellért Sárosi,Automated transcription of conversational Call Center speech - with respect to non-verbal acoustic events.,2014,8,Intelligent Decision Technologies,4,db/journals/idt/idt8.html#SarosiTFM14,https://doi.org/10.3233/IDT-140195 +Flavien Balbo,A transportation decision support system in agent-based environment.,2007,1,Intelligent Decision Technologies,3,db/journals/idt/idt1.html#BalboP07,http://content.iospress.com/articles/intelligent-decision-technologies/idt00009 +Alok R. Prusty,Multi-objective optimality in energy efficient routing for heterogeneous wireless ad hoc sensor network with clustering.,2017,11,Intelligent Decision Technologies,1,db/journals/idt/idt11.html#PrustySN17,https://doi.org/10.3233/IDT-160277 +Okta Nurika,A study of fluctuations and confidence of implementation in genetic algorithm optimized network in data centre.,2018,12,Intelligent Decision Technologies,1,db/journals/idt/idt12.html#NurikaHZJ18,https://doi.org/10.3233/IDT-170320 +Ajit Kumar Rout,Forecasting foreign exchange rates using hybrid functional link RBF neural network and Levenberg-Marquardt learning algorithm.,2016,10,Intelligent Decision Technologies,3,db/journals/idt/idt10.html#RoutD16,https://doi.org/10.3233/IDT-160257 +Levent Yilmaz,Reasoning about conceptual interoperability of simulations using meta-level graph relations.,2008,2,Intelligent Decision Technologies,1,db/journals/idt/idt2.html#Yilmaz08,http://content.iospress.com/articles/intelligent-decision-technologies/idt00022 +Wei-Ling Chen,Life-threatening complication detection during hemodialysis using fractional order info-gap decision-making.,2018,12,Intelligent Decision Technologies,1,db/journals/idt/idt12.html#ChenKYML18,https://doi.org/10.3233/IDT-170314 +Darius Nahavandi,Skeleton-free RULA ergonomic assessment using Kinect sensors.,2017,11,Intelligent Decision Technologies,3,db/journals/idt/idt11.html#NahavandiH17,https://doi.org/10.3233/IDT-170292 +Frederick Hayes-Roth,A rich semantic model of track as a foundation for sharing beliefs regarding dynamic objects and events.,2008,2,Intelligent Decision Technologies,1,db/journals/idt/idt2.html#Hayes-RothB08,http://content.iospress.com/articles/intelligent-decision-technologies/idt00023 +Teruaki Hayashi,Comparison of Conflict Resolution Behavior and scenario generating process in group and individual by handwriting process analysis.,2016,10,Intelligent Decision Technologies,3,db/journals/idt/idt10.html#HayashiO16,https://doi.org/10.3233/IDT-150254 +Bradley J. Rhodes,Automated activity pattern learning and monitoring provide decision support to supervisors of busy environments.,2009,3,Intelligent Decision Technologies,1,db/journals/idt/idt3.html#RhodesBZGSDWS09,https://doi.org/10.3233/IDT-2009-0046 +A. Al-Jarrah,Application of various control schemes on hydraulic actuated automotive cooling systems.,2016,10,Intelligent Decision Technologies,1,db/journals/idt/idt10.html#Al-JarrahAS16,https://doi.org/10.3233/IDT-150235 +Luping Zhang,A multi-agent system to support heuristic-based dynamic manufacturing rescheduling.,2013,7,Intelligent Decision Technologies,3,db/journals/idt/idt7.html#ZhangWF13,https://doi.org/10.3233/IDT-130163 +Chamseddine Zaki,Generic modeling of application and spatiotemporal data: Application to the study of pedestrian behavior.,2011,5,Intelligent Decision Technologies,4,db/journals/idt/idt5.html#ZakiZSMH11,https://doi.org/10.3233/IDT-2011-0113 +Raul Valverde,ITIL-based IT service support process reengineering.,2014,8,Intelligent Decision Technologies,2,db/journals/idt/idt8.html#ValverdeST14,https://doi.org/10.3233/IDT-130182 +Vassilis C. Gerogiannis,Evaluation of project and portfolio Management Information Systems with the use of a hybrid IFS-TOPSIS method.,2013,7,Intelligent Decision Technologies,1,db/journals/idt/idt7.html#GerogiannisFK13,https://doi.org/10.3233/IDT-120153 +Nora Taleb,A method based on OWL schema for detecting changes between Ontology's versions.,2014,8,Intelligent Decision Technologies,1,db/journals/idt/idt8.html#TalebTL14,https://doi.org/10.3233/IDT-130176 +Michael J. Hegedus,A new adaptive sensor fusion localization method for passive acoustic arrays.,2011,5,Intelligent Decision Technologies,4,db/journals/idt/idt5.html#HegedusPM11,https://doi.org/10.3233/IDT-2011-0116 +Christos P. Loizou,Brain white matter lesion classification in multiple sclerosis subjects for the prognosis of future disability.,2013,7,Intelligent Decision Technologies,1,db/journals/idt/idt7.html#LoizouKSPPKP13,https://doi.org/10.3233/IDT-120147 +Thillainathan Logenthiran,Multi-agent system for managing distributed energy storage and electrical vehicles.,2015,9,Intelligent Decision Technologies,2,db/journals/idt/idt9.html#LogenthiranS15,https://doi.org/10.3233/IDT-140215 +Seyed Mojtaba Saif,An adaptive heuristic optimization algorithm based on politics.,2017,11,Intelligent Decision Technologies,1,db/journals/idt/idt11.html#Saif17,https://doi.org/10.3233/IDT-160282 +Maria Virvou,Special issue on Knowledge-based Modes of Human-Computer Interaction.,2010,4,Intelligent Decision Technologies,3,db/journals/idt/idt4.html#VirvouT10,https://doi.org/10.3233/IDT-2010-0077 +Sergey Babenyshev,Logic of discovery and knowledge. Decision algorithm.,2009,3,Intelligent Decision Technologies,2,db/journals/idt/idt3.html#BabenyshevR09,https://doi.org/10.3233/IDT-2009-0052 +Rajashree Dash,DECPNN: A hybrid stock predictor model using Differential Evolution and Chebyshev Polynomial neural network.,2018,12,Intelligent Decision Technologies,1,db/journals/idt/idt12.html#Dash18,https://doi.org/10.3233/IDT-170313 +Ahmed Maalel,Adast: Intelligent support of decision making to improve security analysis. Application to railroad accidents.,2016,10,Intelligent Decision Technologies,1,db/journals/idt/idt10.html#MaalelMG16,https://doi.org/10.3233/IDT-150240 +Stanislav Ondás,Domain-specific language models training methodology for the in-car infotainment.,2017,11,Intelligent Decision Technologies,4,db/journals/idt/idt11.html#OndasG17,https://doi.org/10.3233/IDT-170310 +Abdelmadjid Benmachiche,A dynamic navigation for autonomous mobiles robots.,2016,10,Intelligent Decision Technologies,1,db/journals/idt/idt10.html#BenmachicheBTA16,https://doi.org/10.3233/IDT-150239 +Mohamed Medhat Gaber,An entropy-based approach to enhancing Random Forests.,2013,7,Intelligent Decision Technologies,4,db/journals/idt/idt7.html#GaberA13,https://doi.org/10.3233/IDT-130171 +Kalliopi Tourtoglou,An intelligent recommender system for trainers and trainees in a collaborative learning environment for UML.,2012,6,Intelligent Decision Technologies,2,db/journals/idt/idt6.html#TourtoglouV12,https://doi.org/10.3233/IDT-2012-0125 +Dimitrios Milios,A genetic algorithm approach to global optimization of software cost estimation by analogy.,2013,7,Intelligent Decision Technologies,1,db/journals/idt/idt7.html#MiliosSC13,https://doi.org/10.3233/IDT-120150 +Vassilis S. Kodogiannis,An Intelligent Decision Support System for bacterial clinical isolates in vitro utilising an electronic nose.,2009,3,Intelligent Decision Technologies,4,db/journals/idt/idt3.html#KodogiannisPL09a,https://doi.org/10.3233/IDT-2009-0057 +Riesta Anggarani,A gasoline consumption model based on the harmony search algorithm: Study case of Indonesia.,2012,6,Intelligent Decision Technologies,3,db/journals/idt/idt6.html#AnggaraniW12,https://doi.org/10.3233/IDT-2012-0139 +Koichi Hanaue,Externalization support of key phrase channel in presentation preparation.,2009,3,Intelligent Decision Technologies,2,db/journals/idt/idt3.html#HanaueW09,https://doi.org/10.3233/IDT-2009-0049 +Wendi Niu,A preference-based recommendation method with fuzzy comprehensive evaluation.,2014,8,Intelligent Decision Technologies,3,db/journals/idt/idt8.html#NiuZ14,https://doi.org/10.3233/IDT-140187 +ágoston Török,Towards a cognitive warning system for safer hybrid traffic.,2017,11,Intelligent Decision Technologies,4,db/journals/idt/idt11.html#TorokVPMHCM17,https://doi.org/10.3233/IDT-170305 +Shaofeng Liu,An integrated sustainability analysis approach to support strategic decision making in green supply chain management.,2014,8,Intelligent Decision Technologies,1,db/journals/idt/idt8.html#LiuWL14,https://doi.org/10.3233/IDT-130173 +,Author Index Volume 10 (2016).,2016,10,Intelligent Decision Technologies,4,db/journals/idt/idt10.html#X16,http://content.iospress.com/articles/intelligent-decision-technologies/idt10ai +Yan Yang,A multi-agent system for course timetabling.,2011,5,Intelligent Decision Technologies,2,db/journals/idt/idt5.html#YangP11,https://doi.org/10.3233/IDT-2011-0101 +Vladimir Gorodetsky,Agent-based distributed decision-making in dynamic operational environments.,2009,3,Intelligent Decision Technologies,1,db/journals/idt/idt3.html#GorodetskyKSS09,https://doi.org/10.3233/IDT-2009-0045 +András Beke,Phonetic analysis and automatic prediction of vowel duration in Hungarian spontaneous speech.,2014,8,Intelligent Decision Technologies,4,db/journals/idt/idt8.html#BekeG14,https://doi.org/10.3233/IDT-140198 +Antonio L. Alfeo,Swarm coordination of mini-UAVs for target search using imperfect sensors.,2018,12,Intelligent Decision Technologies,2,db/journals/idt/idt12.html#AlfeoCFLLV18,https://doi.org/10.3233/IDT-170317 +L. S. Jayashree,Application of Fuzzy Cognitive Map for geospatial dengue outbreak risk prediction of tropical regions of Southern India.,2018,12,Intelligent Decision Technologies,2,db/journals/idt/idt12.html#JayashreeDPP18,https://doi.org/10.3233/IDT-180330 +The Anh Han,Context-dependent incremental decision making scrutinizing the intentions of others via Bayesian network model construction.,2013,7,Intelligent Decision Technologies,4,db/journals/idt/idt7.html#HanP13,https://doi.org/10.3233/IDT-130170 +D. Selvathi,MRI brain pattern analysis for detection of Alzheimer's disease using random forest classifier.,2016,10,Intelligent Decision Technologies,4,db/journals/idt/idt10.html#SelvathiE16,https://doi.org/10.3233/IDT-160260 +Constantinos Stylianou,A multi-objective genetic algorithm for intelligent software project scheduling and team staffing.,2013,7,Intelligent Decision Technologies,1,db/journals/idt/idt7.html#StylianouA13,https://doi.org/10.3233/IDT-120151 +Aristomenis S. Lampropoulos,Music genre classification based on ensemble of signals produced by source separation methods.,2010,4,Intelligent Decision Technologies,3,db/journals/idt/idt4.html#LampropoulosLT10,https://doi.org/10.3233/IDT-2010-0083 +Adam Kupryjanow,Improved method for real-time speech stretching.,2012,6,Intelligent Decision Technologies,2,db/journals/idt/idt6.html#KupryjanowC12,https://doi.org/10.3233/IDT-2012-0134 +Dimitris Panagiotou,Knowledge-based interaction in software development.,2011,5,Intelligent Decision Technologies,2,db/journals/idt/idt5.html#PanagiotouPM11,https://doi.org/10.3233/IDT-2011-0104 +Laith Mohammad Abualigah,A hybrid strategy for krill herd algorithm with harmony search algorithm to improve the data clustering.,2018,12,Intelligent Decision Technologies,1,db/journals/idt/idt12.html#AbualigahKH18,https://doi.org/10.3233/IDT-170318 +Yasufumi Takama,Interactive visualization system for monitoring support targeting multiple BBS threads.,2015,9,Intelligent Decision Technologies,4,db/journals/idt/idt9.html#TakamaO15,https://doi.org/10.3233/IDT-140232 +P. Eben Sophia,Contourlet transform based subband normalization for region based medical image compression.,2016,10,Intelligent Decision Technologies,4,db/journals/idt/idt10.html#SophiaA16,https://doi.org/10.3233/IDT-160265 +Ioannis Valavanis,Intelligent identification of biomarkers for the study of obstructive nephropathy.,2013,7,Intelligent Decision Technologies,1,db/journals/idt/idt7.html#ValavanisMC13,https://doi.org/10.3233/IDT-120148 +Cheng-Hsiang Liu,On improving the classification accuracy of extension theory.,2016,10,Intelligent Decision Technologies,1,db/journals/idt/idt10.html#Liu16,https://doi.org/10.3233/IDT-150234 +Nguyen-Thinh Le,A comparison between a communication-based and a data mining-based learning approach for agents.,2013,7,Intelligent Decision Technologies,3,db/journals/idt/idt7.html#LeP13,https://doi.org/10.3233/IDT-130162 +Amit Kumar,Performance analysis of GA-based iterative and non-iterative learning approaches for medical domain data sets.,2017,11,Intelligent Decision Technologies,3,db/journals/idt/idt11.html#KumarS17,https://doi.org/10.3233/IDT-170298 +Hongqiang Jiao,Multi-attribute decision making with dynamic weight allocation.,2014,8,Intelligent Decision Technologies,3,db/journals/idt/idt8.html#JiaoW14,https://doi.org/10.3233/IDT-140191 +Yukio Ohsawa,Intelligent Decision Technologies (IDT) Special issue on Designing a Market for Data to Enable Chance Discoveries.,2015,9,Intelligent Decision Technologies,1,db/journals/idt/idt9.html#OhsawaA15,https://doi.org/10.3233/IDT-140210 +D. Jude Hemanth,Special issue on Decision Support Systems for Medical Applications.,2016,10,Intelligent Decision Technologies,4,db/journals/idt/idt10.html#HemanthB16,https://doi.org/10.3233/IDT-160259 +Klaas Schmidt,Service-oriented framework for building reusable decision processes - in the domain of ITSM.,2014,8,Intelligent Decision Technologies,2,db/journals/idt/idt8.html#SchmidtDG14,https://doi.org/10.3233/IDT-130179 +Tamás Gábor Csapó,Statistical parametric speech synthesis with a novel codebook-based excitation model.,2014,8,Intelligent Decision Technologies,4,db/journals/idt/idt8.html#CsapoN14,https://doi.org/10.3233/IDT-140197 +Sotiris B. Kotsiantis,Locally application of cascade generalization for classification problems.,2008,2,Intelligent Decision Technologies,4,db/journals/idt/idt2.html#Kotsiantis08,http://content.iospress.com/articles/intelligent-decision-technologies/idt00041 +Debasish Majumder,Validation of questionnaires for measuring morningness of students and shift workers in Indian population using intelligent fuzzy system.,2017,11,Intelligent Decision Technologies,3,db/journals/idt/idt11.html#MajumderBSH17,https://doi.org/10.3233/IDT-170294 +Animesh Adhikari,Book Review.,2015,9,Intelligent Decision Technologies,1,db/journals/idt/idt9.html#Adhikari15,https://doi.org/10.3233/IDT-140209 +Miltos Petridis,Temporal model for business process.,2011,5,Intelligent Decision Technologies,4,db/journals/idt/idt5.html#PetridisMK11,https://doi.org/10.3233/IDT-2011-0115 +Stanislaw Stanek,Intelligent computer support for crisis management.,2014,8,Intelligent Decision Technologies,1,db/journals/idt/idt8.html#StanekD14,https://doi.org/10.3233/IDT-130177 +David Sztahó,Speech activity detection and automatic prosodic processing unit segmentation for emotion recognition.,2014,8,Intelligent Decision Technologies,4,db/journals/idt/idt8.html#SztahoV14,https://doi.org/10.3233/IDT-140199 +J. M. Lourenço,Short-term load forecasting using a Gaussian process model: The influence of a derivative term in the input regressor.,2012,6,Intelligent Decision Technologies,4,db/journals/idt/idt6.html#LourencoS12,https://doi.org/10.3233/IDT-2012-0143 +Katerina Kabassi,Analytic Hierarchy Process for website evaluation.,2018,12,Intelligent Decision Technologies,2,db/journals/idt/idt12.html#Kabassi18,https://doi.org/10.3233/IDT-170316 +Matthew Brittain,Simulation of autonomous crowd behaviour on Xbox 360.,2011,5,Intelligent Decision Technologies,3,db/journals/idt/idt5.html#BrittainM11,https://doi.org/10.3233/IDT-2011-0110 +Luis C. Dias,Dealing with uncertainty in Decision Support Systems: Recent trends (2000-2011).,2012,6,Intelligent Decision Technologies,4,db/journals/idt/idt6.html#DiasAI12a,https://doi.org/10.3233/IDT-2012-0141 +Noria Taghezout,Supporting a multicriterion decision making and multi-agent negotiation in manufacturing systems.,2009,3,Intelligent Decision Technologies,3,db/journals/idt/idt3.html#TaghezoutZ09,https://doi.org/10.3233/IDT-2009-0061 +Chaimae El Hatri,Traffic management model for vehicle re-routing and traffic light control based on Multi-Objective Particle Swarm Optimization.,2017,11,Intelligent Decision Technologies,2,db/journals/idt/idt11.html#HatriB17,https://doi.org/10.3233/IDT-170288 +Prasenjit Mukherjee,A comparative analysis of permutation combination based and grammatical rule based knowledge provider system.,2017,11,Intelligent Decision Technologies,1,db/journals/idt/idt11.html#MukherjeeC17,https://doi.org/10.3233/IDT-160276 +Hernando Fernandez-Canque,Machine vision application to the detection of water-borne micro-organisms.,2009,3,Intelligent Decision Technologies,2,db/journals/idt/idt3.html#Fernandez-CanqueHCBS09,https://doi.org/10.3233/IDT-2009-0050 +David Tolpin,Rational value of information estimation for measurement selection.,2012,6,Intelligent Decision Technologies,4,db/journals/idt/idt6.html#TolpinS12,https://doi.org/10.3233/IDT-2012-0145 +Clemens Lango,visuosTM - Strategies and user interface concepts for next generation knowledge work systems.,2008,2,Intelligent Decision Technologies,2,db/journals/idt/idt2.html#Lango08,http://content.iospress.com/articles/intelligent-decision-technologies/idt00027 +Akinori Abe,Abduction dealing with potential values and its datasets towards IMDJ.,2016,10,Intelligent Decision Technologies,3,db/journals/idt/idt10.html#Abe16,https://doi.org/10.3233/IDT-150253 +Stanislav Ondás,SIMONA - the Slovak embodied conversational agent.,2014,8,Intelligent Decision Technologies,4,db/journals/idt/idt8.html#OndasJT14,https://doi.org/10.3233/IDT-140196 +Masatoshi Takamiya,Modeling and estimation of travel behaviors using bayesian network.,2010,4,Intelligent Decision Technologies,4,db/journals/idt/idt4.html#TakamiyaYW10,https://doi.org/10.3233/IDT-2010-0091 +Piotr Odya,Smart Pen - new multimodal computer control tool for graphomotorical therapy.,2010,4,Intelligent Decision Technologies,3,db/journals/idt/idt4.html#OdyaCGG10,https://doi.org/10.3233/IDT-2010-0080 +Katarzyna Kaszuba,A new approach for automatic assessment of a neurological condition employing hand gesture classification.,2012,6,Intelligent Decision Technologies,2,db/journals/idt/idt6.html#KaszubaK12,https://doi.org/10.3233/IDT-2012-0133 +Animesh Biswas,On solving chance constrained programming problems involving uniform distribution with fuzzy parameters.,2013,7,Intelligent Decision Technologies,2,db/journals/idt/idt7.html#BiswasM13,https://doi.org/10.3233/IDT-130158 +Amir Hossein Jadidinejad,Conceptual feature generation for textual information using a conceptual network constructed from Wikipedia.,2016,33,Expert Systems,1,db/journals/es/es33.html#JadidinejadMM16,https://doi.org/10.1111/exsy.12133 +Evaggelos V. Hatzikos,Monitoring water quality through a telematic sensor network and a fuzzy expert system.,2007,24,Expert Systems,3,db/journals/es/es24.html#HatzikosBAV07,https://doi.org/10.1111/j.1468-0394.2007.00426.x +M. S. Hussain,Electromyography signal analysis using wavelet transform and higher order statistics to determine muscle contraction.,2009,26,Expert Systems,1,db/journals/es/es26.html#HussainRMI09,https://doi.org/10.1111/j.1468-0394.2008.00483.x +Li Zhang,Intelligent information processing in human resource management: an implementation case in China.,2006,23,Expert Systems,5,db/journals/es/es23.html#ZhangW06,https://doi.org/10.1111/j.1468-0394.2006.00416.x +Thanh The Van,Content-based image retrieval based on binary signatures cluster graph.,2018,35,Expert Systems,1,db/journals/es/es35.html#VanL18,https://doi.org/10.1111/exsy.12220 +Nazmul H. Siddique,Physics-based search and optimization: Inspirations from nature.,2016,33,Expert Systems,6,db/journals/es/es33.html#SiddiqueA16,https://doi.org/10.1111/exsy.12185 +Emre Gürbüz,A new adaptive support vector machine for diagnosis of diseases.,2014,31,Expert Systems,5,db/journals/es/es31.html#GurbuzK14,https://doi.org/10.1111/exsy.12051 +Rita Cucchiara,A multi-camera vision system for fall detection and alarm generation.,2007,24,Expert Systems,5,db/journals/es/es24.html#CucchiaraPV07,https://doi.org/10.1111/j.1468-0394.2007.00438.x +Li Da Xu,A hybrid system applied to epidemic screening.,2000,17,Expert Systems,2,db/journals/es/es17.html#XuL00,https://doi.org/10.1111/1468-0394.00130 +Elif Derya übeyli,Feature extraction by autoregressive spectral analysis using maximum likelihood estimation: internal carotid arterial Doppler signals.,2008,25,Expert Systems,4,db/journals/es/es25.html#Ubeyli08a,https://doi.org/10.1111/j.1468-0394.2008.00448.x +Konrad Jackowski,Method of classifier selection using the genetic approach.,2010,27,Expert Systems,2,db/journals/es/es27.html#JackowskiW10,https://doi.org/10.1111/j.1468-0394.2010.00513.x +Elif Derya übeyli,Analysis of electrocardiographic changes in partial epileptic patients by combining eigenvector methods and support vector machines.,2009,26,Expert Systems,3,db/journals/es/es26.html#Ubeyli09b,https://doi.org/10.1111/j.1468-0394.2009.00478.x +João Vinagre,Online bagging for recommender systems.,2018,35,Expert Systems,4,db/journals/es/es35.html#VinagreJG18,https://doi.org/10.1111/exsy.12303 +Armagan Cakir,Coordination of intelligent agents in real-time search.,2002,19,Expert Systems,2,db/journals/es/es19.html#CakirP02,https://doi.org/10.1111/1468-0394.00193 +Hong Guo,Feature extraction and dimensionality reduction by genetic programming based on the Fisher criterion.,2008,25,Expert Systems,5,db/journals/es/es25.html#GuoZN08,https://doi.org/10.1111/j.1468-0394.2008.00451.x +Gary P. Moynihan,An expert system for the selection of software design patterns.,2006,23,Expert Systems,1,db/journals/es/es23.html#MoynihanSF06,https://doi.org/10.1111/j.1468-0394.2006.00323.x +Jerald L. Feinstein,Comparing response latency and self-report methods for estimating levels of certainty in knowledge elicitation for rule-based expert systems.,2000,17,Expert Systems,5,db/journals/es/es17.html#Feinstein00,https://doi.org/10.1111/1468-0394.00144 +Suleyman Yildirim,A belief-desire-intention agent architecture for partner selection in peer-to-peer live video streaming applications.,2015,32,Expert Systems,3,db/journals/es/es32.html#YildirimSK15,https://doi.org/10.1111/exsy.12086 +Wojciech Penar,Cost-sensitive methods of constructing hierarchical classifiers.,2010,27,Expert Systems,3,db/journals/es/es27.html#PenarW10,https://doi.org/10.1111/j.1468-0394.2010.00515.x +Damien Cram,A complete chronicle discovery approach: application to activity analysis.,2012,29,Expert Systems,4,db/journals/es/es29.html#CramMM12,https://doi.org/10.1111/j.1468-0394.2011.00591.x +Chih-Ching Yang,Evaluating the performance of banking under risk regulations: a slacks-based Data Envelopment Analysis assessment framework.,2014,31,Expert Systems,2,db/journals/es/es31.html#Yang14,https://doi.org/10.1111/exsy.12020 +Elisabeth A. Strunk,The essential synthesis of problem frames and assurance cases.,2008,25,Expert Systems,1,db/journals/es/es25.html#StrunkK08,https://doi.org/10.1111/j.1468-0394.2008.00452.x +C. D. Hurt,Influence diagrams and multiple experts: a preliminary model.,2010,27,Expert Systems,4,db/journals/es/es27.html#Hurt10,https://doi.org/10.1111/j.1468-0394.2010.00538.x +José Manuel Ferrández,IWINAC 2O13 special section: editorial on intelligent systems for neural disorders and emotional state identification.,2015,32,Expert Systems,6,db/journals/es/es32.html#FerrandezP15,https://doi.org/10.1111/exsy.12118 +María Julia Blas,An ontology to document a quality scheme specification of a software product.,2017,34,Expert Systems,5,db/journals/es/es34.html#BlasGL17,https://doi.org/10.1111/exsy.12213 +Mostafa Sabzekar,Relaxed constraints support vector machine.,2012,29,Expert Systems,5,db/journals/es/es29.html#SabzekarYN12,https://doi.org/10.1111/j.1468-0394.2011.00611.x +Ali Emrouznejad,Data envelopment analysis with classification and regression tree - a case of banking efficiency.,2010,27,Expert Systems,4,db/journals/es/es27.html#EmrouznejadA10,https://doi.org/10.1111/j.1468-0394.2010.00516.x +You-Shyang Chen,A mood- and situation-based model for developing intuitive Pop music recommendation systems.,2016,33,Expert Systems,1,db/journals/es/es33.html#ChenCCL16,https://doi.org/10.1111/exsy.12132 +David Martín,ARDIS: knowledge-based architecture for visual system configuration in dynamic surface inspection.,2011,28,Expert Systems,4,db/journals/es/es28.html#MartinRGG11,https://doi.org/10.1111/j.1468-0394.2011.00596.x +Mustafa Karabulut,A fuzzy self-organizing map algorithm for biological pattern recognition.,2012,29,Expert Systems,1,db/journals/es/es29.html#KarabulutI12,https://doi.org/10.1111/j.1468-0394.2010.00560.x +Rosamaria Morpurgo,I-DSS: an intelligent diagnostic support system.,2001,18,Expert Systems,1,db/journals/es/es18.html#MorpurgoM01,https://doi.org/10.1111/1468-0394.00154 +Renée McCauley,What do successful computer science students know? An integrative analysis using card sort measures and content analysis to evaluate graduating students' knowledge of programming concepts.,2005,22,Expert Systems,3,db/journals/es/es22.html#McCauleyMWHZFSMRA05,https://doi.org/10.1111/j.1468-0394.2005.00306.x +Charlene Xie,A model-driven decision support system for product risk analysis.,2010,27,Expert Systems,5,db/journals/es/es27.html#Xie10,https://doi.org/10.1111/j.1468-0394.2010.00555.x +Emad Al-Shawakfa,The Dialoguer: An Interactive Bilingual Interface to a Network Operating System.,2001,18,Expert Systems,3,db/journals/es/es18.html#Al-ShawakfaE01,https://doi.org/10.1111/1468-0394.00166 +Shey-Huei Sheu,Forecasting the volatility of a combined multi-country stock index using GWMA algorithms.,2018,35,Expert Systems,3,db/journals/es/es35.html#SheuLLTC18,https://doi.org/10.1111/exsy.12248 +Paolo Remagnino,Expert environments: machine intelligence methods for ambient intelligence.,2007,24,Expert Systems,5,db/journals/es/es24.html#RemagninoPFC07,https://doi.org/10.1111/j.1468-0394.2007.00434.x +Brendan D'Cruz,News feature and call for papers.,2002,19,Expert Systems,4,db/journals/es/es19.html#DCruzS02,https://doi.org/10.1111/1468-0394.00209 +Harry K. H. Chow,Design of a case-based logistics strategy system - an integrated approach.,2005,22,Expert Systems,4,db/journals/es/es22.html#ChowCLCL05,https://doi.org/10.1111/j.1468-0394.2005.00309.x +Lucia Rapanotti,Special section on advances and applications of problem orientation.,2013,30,Expert Systems,3,db/journals/es/es30.html#RapanottiZH13,https://doi.org/10.1111/exsy.12036 +Alejandro Rodríguez-Ascaso,Setting accessibility preferences about learning objects within adaptive elearning systems: User experience and organizational aspects.,2017,34,Expert Systems,4,db/journals/es/es34.html#Rodriguez-Ascaso17,https://doi.org/10.1111/exsy.12187 +Vieri Del Bianco,Enhancing problem frames with scenarios and histories in UML-based software development.,2008,25,Expert Systems,1,db/journals/es/es25.html#BiancoL08,https://doi.org/10.1111/j.1468-0394.2008.00455.x +S. N. Mikhaylov,A case study of duplications detection for educational domain thorough ad hoc search and identification NLP-based method.,2017,34,Expert Systems,4,db/journals/es/es34.html#MikhaylovCSP17,https://doi.org/10.1111/exsy.12200 +Avraam Chatzinikolaou,Modelling for an expert system and a parameter validation method.,2002,19,Expert Systems,5,db/journals/es/es19.html#ChatzinikolaouA02,https://doi.org/10.1111/1468-0394.00215 +Jong-Seob Won,Fuzzy torque distribution control for a parallel hybrid vehicle.,2002,19,Expert Systems,1,db/journals/es/es19.html#WonL02,https://doi.org/10.1111/1468-0394.00184 +Shan Feng,Fuzzy modeling of the medical treatment effects of superoxide dismutase.,2006,23,Expert Systems,5,db/journals/es/es23.html#FengLWWYG06,https://doi.org/10.1111/j.1468-0394.2006.00413.x +Sue Gerrard,Women's working wardrobes: a study using card sorts.,2005,22,Expert Systems,3,db/journals/es/es22.html#GerrardD05,https://doi.org/10.1111/j.1468-0394.2005.00301.x +Rajibul Huq,Distributed fuzzy discrete event system for robotic sensory information processing.,2006,23,Expert Systems,5,db/journals/es/es23.html#HuqMG06,https://doi.org/10.1111/j.1468-0394.2006.00409.x +Hui Li 0001,Forecasting business failure using two-stage ensemble of multivariate discriminant analysis and logistic regression.,2013,30,Expert Systems,5,db/journals/es/es30.html#Li0LY13,https://doi.org/10.1111/j.1468-0394.2012.00642.x +Sergiu Ovidiu-Oprea,A long short-term memory based Schaeffer gesture recognition system.,2018,35,Expert Systems,2,db/journals/es/es35.html#Ovidiu-OpreaGOV18,https://doi.org/10.1111/exsy.12247 +Zhongmin Cai,A rough set theory based method for anomaly intrusion detection in computer network systems.,2003,20,Expert Systems,5,db/journals/es/es20.html#CaiGSPS03,https://doi.org/10.1111/1468-0394.00249 +Jon G. Hall,The knowledge engineers' oath.,2012,29,Expert Systems,4,db/journals/es/es29.html#Hall12b,https://doi.org/10.1111/exsy.12001 +Dursun Delen,Analysis of cancer data: a data mining approach.,2009,26,Expert Systems,1,db/journals/es/es26.html#Delen09,https://doi.org/10.1111/j.1468-0394.2008.00480.x +Mario Drobics,Mining clusters and corresponding interpretable descriptions - a three-stage approach.,2002,19,Expert Systems,4,db/journals/es/es19.html#DrobicsBW02,https://doi.org/10.1111/1468-0394.00207 +S. Patra,Fuzzy based fast dynamic programming solution of unit commitment with ramp constraints.,2009,26,Expert Systems,4,db/journals/es/es26.html#PatraGG09,https://doi.org/10.1111/j.1468-0394.2009.00495.x +Bruce Curry,The Kohonen self-organizing map: an application to the study of strategic groups in the UK hotel industry.,2001,18,Expert Systems,1,db/journals/es/es18.html#CurryDPEM01,https://doi.org/10.1111/1468-0394.00152 +Daniel J. Fonseca,A computer-based system for road selection.,2003,20,Expert Systems,3,db/journals/es/es20.html#FonsecaDMC03,https://doi.org/10.1111/1468-0394.00236 +Ewa Straszecka,Combining knowledge from different sources.,2010,27,Expert Systems,1,db/journals/es/es27.html#Straszecka10,https://doi.org/10.1111/j.1468-0394.2009.00507.x +Farhan Hassan Khan,Senti-CS: Building a lexical resource for sentiment analysis using subjective feature selection and normalized Chi-Square-based feature weight generation.,2016,33,Expert Systems,5,db/journals/es/es33.html#KhanQB16,https://doi.org/10.1111/exsy.12161 +U. Rajendra Acharya,Higher order spectra analysis of breast thermograms for the automated identification of breast cancer.,2014,31,Expert Systems,1,db/journals/es/es31.html#AcharyaNSCC14,https://doi.org/10.1111/j.1468-0394.2012.00654.x +Shin-Li Lu,Petroleum demand forecasting for Taiwan using modified fuzzy-grey algorithms.,2016,33,Expert Systems,1,db/journals/es/es33.html#LuT16,https://doi.org/10.1111/exsy.12129 +Peter Wanke,Predicting performance in ASEAN banks: an integrated fuzzy MCDM-neural network approach.,2016,33,Expert Systems,3,db/journals/es/es33.html#WankeABH16,https://doi.org/10.1111/exsy.12144 +Ralph Grove,Internet-based expert systems.,2000,17,Expert Systems,3,db/journals/es/es17.html#Grove00,https://doi.org/10.1111/1468-0394.00135 +Javad Abdi,Application of temporal difference learning rules in short-term traffic flow prediction.,2015,32,Expert Systems,1,db/journals/es/es32.html#AbdiM15,https://doi.org/10.1111/exsy.12055 +Bhavna Orgun,Approaches for semantic interoperability between domain ontologies.,2008,25,Expert Systems,3,db/journals/es/es25.html#OrgunDNJ08,https://doi.org/10.1111/j.1468-0394.2008.00461.x +Antonio Manuel Ortiz,On reactive routing protocols in ZigBee wireless sensor networks.,2014,31,Expert Systems,2,db/journals/es/es31.html#OrtizROCO14,https://doi.org/10.1111/exsy.12018 +W. B. Lee,A fuzzy analytic hierarchy process approach in modular product design.,2001,18,Expert Systems,1,db/journals/es/es18.html#LeeLLT01,https://doi.org/10.1111/1468-0394.00153 +Akin özçift,Forward stage-wise ensemble regression algorithm to improve base regressors prediction ability: an empirical study.,2014,31,Expert Systems,1,db/journals/es/es31.html#Ozcift14,https://doi.org/10.1111/j.1468-0394.2012.00643.x +Xiaoyin Zhang,Evaluation of the benefits of using a backward chaining decision support expert system for local flood forecasting and warning.,2018,35,Expert Systems,4,db/journals/es/es35.html#ZhangMEG18,https://doi.org/10.1111/exsy.12261 +Jiayin Qi,Artificial intelligence applications in the telecommunications industry.,2007,24,Expert Systems,4,db/journals/es/es24.html#QiWLS07,https://doi.org/10.1111/j.1468-0394.2007.00433.x +Stijn Verstichel,An autonomous service-platform to support distributed ontology-based context-aware agents.,2011,28,Expert Systems,5,db/journals/es/es28.html#VerstichelOVTDDD11,https://doi.org/10.1111/j.1468-0394.2011.00587.x +Antony Browne,Connectionist variable binding.,1999,16,Expert Systems,3,db/journals/es/es16.html#BrowneS99,https://doi.org/10.1111/1468-0394.00108 +Miguel Delgado,Memetic evolutionary training for recurrent neural networks: an application to time-series prediction.,2006,23,Expert Systems,2,db/journals/es/es23.html#DelgadoJC06,https://doi.org/10.1111/j.1468-0394.2006.00327.x +H. Wang,The impact of problem size on decision processes: an experimental investigation on very large choice problems with support of decision support systems.,2004,21,Expert Systems,2,db/journals/es/es21.html#WangC04,https://doi.org/10.1111/j.1468-0394.2004.00267.x +Marco Leo,Real-time smart surveillance using motion analysis.,2010,27,Expert Systems,5,db/journals/es/es27.html#LeoSDMD10,https://doi.org/10.1111/j.1468-0394.2010.00545.x +Feng Shan,A programmable agent for knowledge discovery on the Web.,2003,20,Expert Systems,2,db/journals/es/es20.html#ShanJCX03,https://doi.org/10.1111/1468-0394.00228 +Tao Yang 0019,Adaptive local hyperplane algorithm for learning small medical data sets.,2009,26,Expert Systems,4,db/journals/es/es26.html#YangK09,https://doi.org/10.1111/j.1468-0394.2009.00494.x +Xinping Song,Feature selection for support vector machine in financial crisis prediction: a case study in China.,2010,27,Expert Systems,4,db/journals/es/es27.html#SongDHG10,https://doi.org/10.1111/j.1468-0394.2010.00546.x +Silvano Mussi,Diagnostic expert systems: a method for engineering knowledge used in sequential diagnosis.,2000,17,Expert Systems,4,db/journals/es/es17.html#Mussi00,https://doi.org/10.1111/1468-0394.00142 +Bruce Curry,Rough sets: current and future developments.,2003,20,Expert Systems,5,db/journals/es/es20.html#Curry03,https://doi.org/10.1111/1468-0394.00248 +Yan Qiang,Pulmonary nodule diagnosis using dual-modal supervised autoencoder based on extreme learning machine.,2017,34,Expert Systems,6,db/journals/es/es34.html#QiangGZZT17,https://doi.org/10.1111/exsy.12224 +Firat Hardalaç,Examination of static and 50 Hz electric field effects on tissues by using a hybrid genetic algorithm and neural network.,2008,25,Expert Systems,4,db/journals/es/es25.html#HardalacG08,https://doi.org/10.1111/j.1468-0394.2008.00447.x +Mohammad Shahadat Hossain,Belief-rule-based expert systems for evaluation of e-government: a case study.,2015,32,Expert Systems,5,db/journals/es/es32.html#HossainZKC15,https://doi.org/10.1111/exsy.12110 +Shan Feng,Hybrid artificial intelligence approach to urban planning.,1999,16,Expert Systems,4,db/journals/es/es16.html#FengX99,https://doi.org/10.1111/1468-0394.00117 +Ewaryst Rafajlowicz,Classifiers sensitive to external context - theory and applications to video sequences.,2012,29,Expert Systems,1,db/journals/es/es29.html#Rafajlowicz12,https://doi.org/10.1111/j.1468-0394.2010.00564.x +George A. Vouros,Knowledge representation in an activated sludge plant diagnosis system.,2000,17,Expert Systems,5,db/journals/es/es17.html#VourosPL00,https://doi.org/10.1111/1468-0394.00145 +Yisong Chen,Discovering hidden knowledge in data classification via multivariate analysis.,2010,27,Expert Systems,2,db/journals/es/es27.html#ChenILW10,https://doi.org/10.1111/j.1468-0394.2009.00508.x +Cagatay Catal,Unlabelled extra data do not always mean extra performance for semi-supervised fault prediction.,2009,26,Expert Systems,5,db/journals/es/es26.html#CatalD09,https://doi.org/10.1111/j.1468-0394.2009.00509.x +Heba M. Lakany,Understanding intention of movement from electroencephalograms.,2007,24,Expert Systems,5,db/journals/es/es24.html#LakanyC07,https://doi.org/10.1111/j.1468-0394.2007.00435.x +C. K. H. Lee,A cloud-based responsive replenishment system in a franchise business model using a fuzzy logic approach.,2016,33,Expert Systems,1,db/journals/es/es33.html#LeeCHL16,https://doi.org/10.1111/exsy.12117 +Cláudio Rebelo de Sá,Label Ranking Forests.,2017,34,Expert Systems,1,db/journals/es/es34.html#SaSKC17,https://doi.org/10.1111/exsy.12166 +Jon G. Hall,On tangling.,2010,27,Expert Systems,5,db/journals/es/es27.html#Hall10b,https://doi.org/10.1111/j.1468-0394.2010.00559.x +Ewa Pietka,Open architecture computer-aided diagnosis system.,2010,27,Expert Systems,1,db/journals/es/es27.html#PietkaKBS10,https://doi.org/10.1111/j.1468-0394.2009.00524.x +Sung-Sik Hwang,CRAS-CBR: Internal control risk assessment system using case-based reasoning.,2004,21,Expert Systems,1,db/journals/es/es21.html#HwangSH04,https://doi.org/10.1111/j.1468-0394.2004.00260.x +Der-Chiang Li,Acquiring knowledge with limited experience.,2007,24,Expert Systems,3,db/journals/es/es24.html#LiYTFH07,https://doi.org/10.1111/j.1468-0394.2007.00427.x +Sohail S. Chaudhry,A genetic algorithm approach to solving the anti-covering location problem.,2006,23,Expert Systems,5,db/journals/es/es23.html#Chaudhry06,https://doi.org/10.1111/j.1468-0394.2006.00407.x +Michal Choras,Statistical and signal-based network traffic recognition for anomaly detection.,2012,29,Expert Systems,3,db/journals/es/es29.html#ChorasSRH12,https://doi.org/10.1111/j.1468-0394.2010.00576.x +Kyoung-jae Kim,The Extraction of Trading Rules From Stock Market Data Using Rough Sets.,2001,18,Expert Systems,4,db/journals/es/es18.html#KimH01,https://doi.org/10.1111/1468-0394.00174 +Shian-Chang Huang,Combining wavelet-based feature extractions with relevance vector machines for stock index forecasting.,2008,25,Expert Systems,2,db/journals/es/es25.html#HuangW08,https://doi.org/10.1111/j.1468-0394.2008.00443.x +Min-Wei Huang,Data preprocessing issues for incomplete medical datasets.,2016,33,Expert Systems,5,db/journals/es/es33.html#HuangLCKTE16,https://doi.org/10.1111/exsy.12155 +Tebbi Hanane,An Arabic expert system for voice synthesis.,2018,35,Expert Systems,4,db/journals/es/es35.html#HananeMH18,https://doi.org/10.1111/exsy.12284 +Peter Day,Evolution of superFeatures through genetic programming.,2011,28,Expert Systems,2,db/journals/es/es28.html#DayN11,https://doi.org/10.1111/j.1468-0394.2010.00547.x +Ramón Ferreiro García,On fault isolation by neural-networks-based parameter estimation techniques.,2007,24,Expert Systems,1,db/journals/es/es24.html#Garcia07,https://doi.org/10.1111/j.1468-0394.2007.00420.x +Hamdi Melih Saraoglu,A study on non-invasive detection of blood glucose concentration from human palm perspiration by using artificial neural networks.,2010,27,Expert Systems,3,db/journals/es/es27.html#SaraogluK10,https://doi.org/10.1111/j.1468-0394.2010.00523.x +Minoru Asogawa,A connectionist production system which can perform both modus ponens and modus tollens simultaneously.,2000,17,Expert Systems,1,db/journals/es/es17.html#Asogawa00,https://doi.org/10.1111/1468-0394.00123 +Wojciech Jamrozik,Contextual reliability discounting in welding process diagnostic based on DSmT.,2015,32,Expert Systems,2,db/journals/es/es32.html#Jamrozik15,https://doi.org/10.1111/exsy.12077 +Mai Le,A hybrid model for business process event and outcome prediction.,2017,34,Expert Systems,5,db/journals/es/es34.html#LeGN17,https://doi.org/10.1111/exsy.12079 +Violeta Mirchevska,Combining domain knowledge and machine learning for robust fall detection.,2014,31,Expert Systems,2,db/journals/es/es31.html#MirchevskaLG14,https://doi.org/10.1111/exsy.12019 +Catarina Moreira,Learning to rank academic experts in the DBLP dataset.,2015,32,Expert Systems,4,db/journals/es/es32.html#MoreiraCM15,https://doi.org/10.1111/exsy.12062 +Yolanda E.-Martín,Progressive heuristic search for probabilistic planning based on interaction estimates.,2014,31,Expert Systems,5,db/journals/es/es31.html#E-MartinRS14,https://doi.org/10.1111/exsy.12037 +Jonathan Emannoel Ferreira,An approach based on risk to dimensioning virtual organizations.,2018,35,Expert Systems,1,db/journals/es/es35.html#FerreiraF18,https://doi.org/10.1111/exsy.12227 +Christian Severin Sauer,Extracting knowledge from web communities and linked data for case-based reasoning systems.,2014,31,Expert Systems,5,db/journals/es/es31.html#SauerR14,https://doi.org/10.1111/exsy.12034 +Gordon Rugg,Editorial.,1999,16,Expert Systems,1,db/journals/es/es16.html#RuggMA99,https://doi.org/10.1111/1468-0394.00035-i4 +Miladin Stefanovic,Determination of the effectiveness of the realization of enterprise business objectives and improvement strategies in an uncertain environment.,2015,32,Expert Systems,4,db/journals/es/es32.html#StefanovicTAPAS15,https://doi.org/10.1111/exsy.12102 +Lauro Snidaro,Knowledge representation for ambient security.,2007,24,Expert Systems,5,db/journals/es/es24.html#SnidaroF07,https://doi.org/10.1111/j.1468-0394.2007.00437.x +Jacek Mandziuk,Evolutionary-based heuristic generators for checkers and give-away checkers.,2007,24,Expert Systems,4,db/journals/es/es24.html#MandziukKW07,https://doi.org/10.1111/j.1468-0394.2007.00429.x +H. Wang,Design of efficient hybrid neural networks for flexible flow shop scheduling.,2003,20,Expert Systems,4,db/journals/es/es20.html#WangJR03,https://doi.org/10.1111/1468-0394.00245 +Davide Carneiro,Enriching conflict resolution environments with the provision of context information.,2017,34,Expert Systems,5,db/journals/es/es34.html#CarneiroGCNN17,https://doi.org/10.1111/exsy.12049 +Paulo Cortez 0001,Insights from a text mining survey on Expert Systems research from 2000 to 2016.,2018,35,Expert Systems,3,db/journals/es/es35.html#CortezMRKH18,https://doi.org/10.1111/exsy.12280 +Onapa Limwattanapibool,Determination of the appropriate parameters for K-means clustering using selection of region clusters based on density DBSCAN (SRCD-DBSCAN).,2017,34,Expert Systems,3,db/journals/es/es34.html#Limwattanapibool17,https://doi.org/10.1111/exsy.12204 +Ruchika Malhotra,Fault prediction considering threshold effects of object-oriented metrics.,2015,32,Expert Systems,2,db/journals/es/es32.html#MalhotraB15,https://doi.org/10.1111/exsy.12078 +D. A. Manolas,Development of an Expert System Shell Based on Genetic Algorithms for the Selection of the Energy Best Available Technologies and their Optimal Operating Conditions for the Process Industry.,2001,18,Expert Systems,3,db/journals/es/es18.html#ManolasET01,https://doi.org/10.1111/1468-0394.00165 +Cristina Stolojescu-Crisan,WiMAX traffic analysis and base stations classification in terms of LRD.,2013,30,Expert Systems,4,db/journals/es/es30.html#Stolojescu-CrisanIML13,https://doi.org/10.1111/exsy.12026 +Daniel J. Fonseca,A knowledge-based system for the recycling of non-hazardous industrial residuals in civil engineering applications.,2005,22,Expert Systems,1,db/journals/es/es22.html#FonsecaRWM05,https://doi.org/10.1111/j.1468-0394.2005.00288.x +Jon G. Hall,The polychronic economy.,2009,26,Expert Systems,5,db/journals/es/es26.html#Hall09d,https://doi.org/10.1111/j.1468-0394.2009.00535.x +Jon G. Hall,34957+70764=105621.,2009,26,Expert Systems,4,db/journals/es/es26.html#Hall09c,https://doi.org/10.1111/j.1468-0394.2009.00532.x +Paulo Cortez 0001,Multi-scale Internet traffic forecasting using neural networks and time series methods.,2012,29,Expert Systems,2,db/journals/es/es29.html#CortezRRS12,https://doi.org/10.1111/j.1468-0394.2010.00568.x +Mehdi Divsalar,Towards the prediction of business failure via computational intelligence techniques.,2011,28,Expert Systems,3,db/journals/es/es28.html#DivsalarFSBA11,https://doi.org/10.1111/j.1468-0394.2011.00580.x +Palash Dutta,Construction of families of probability boxes and corresponding membership functions at different fractiles.,2017,34,Expert Systems,3,db/journals/es/es34.html#DuttaH17,https://doi.org/10.1111/exsy.12202 +Baldur Kristjánsson,Integration by communication: knowledge exchange in global outsourcing of product software development.,2014,31,Expert Systems,3,db/journals/es/es31.html#KristjanssonHB14,https://doi.org/10.1111/exsy.640 +Unil Yun,Efficient representative pattern mining based on weight and maximality conditions.,2016,33,Expert Systems,5,db/journals/es/es33.html#YunLL16,https://doi.org/10.1111/exsy.12158 +Lynn Ling X. Li,Proposing an architectural framework of a hybrid knowledge-based system for production rescheduling.,1999,16,Expert Systems,4,db/journals/es/es16.html#Li99a,https://doi.org/10.1111/1468-0394.00119 +Elif Derya übeyli,Detection of electrocardiogram beats using a fuzzy similarity index.,2007,24,Expert Systems,2,db/journals/es/es24.html#Ubeyli07a,https://doi.org/10.1111/j.1468-0394.2007.00422.x +Zizette Boufriche-Boufaïda,An actor model for rule-based systems.,1999,16,Expert Systems,1,db/journals/es/es16.html#Boufriche-Boufaida99,https://doi.org/10.1111/1468-0394.00088 +Megha Bhushan,Improving quality of software product line by analysing inconsistencies in feature models using an ontological rule-based approach.,2018,35,Expert Systems,3,db/journals/es/es35.html#BhushanGK18,https://doi.org/10.1111/exsy.12256 +Lihua Zhou,An approach for community detection in social networks based on cooperative games theory.,2016,33,Expert Systems,2,db/journals/es/es33.html#ZhouLL16,https://doi.org/10.1111/exsy.12141 +Malcolm J. Beynon,A prototype store choice and location modelling system using Dempster-Shafer theory.,2002,19,Expert Systems,5,db/journals/es/es19.html#BeynonGM02,https://doi.org/10.1111/1468-0394.00214 +Cristóbal Romero,Association rule mining using genetic programming to provide feedback to instructors from multiple-choice quiz data.,2013,30,Expert Systems,2,db/journals/es/es30.html#RomeroZLV13,https://doi.org/10.1111/j.1468-0394.2012.00627.x +Parham Ghorbanian,An improved procedure for detection of heart arrhythmias with novel pre-processing techniques.,2012,29,Expert Systems,5,db/journals/es/es29.html#GhorbanianJGN12,https://doi.org/10.1111/j.1468-0394.2011.00606.x +Juan Du 0001,A new DEA-based method for fully ranking all decision-making units.,2010,27,Expert Systems,5,db/journals/es/es27.html#DuLYBY10,https://doi.org/10.1111/j.1468-0394.2010.00553.x +Jelena Marincic,Reusing knowledge in embedded systems modelling.,2013,30,Expert Systems,3,db/journals/es/es30.html#MarincicMWL13,https://doi.org/10.1111/j.1468-0394.2012.00631.x +Tariq Tashan,Speaker verification inspired by the physiology of hearing using spiking self-organising map.,2017,34,Expert Systems,5,db/journals/es/es34.html#TashanAN17,https://doi.org/10.1111/exsy.12076 +S. Miruna Joe Amali,Surrogate assisted-hybrid differential evolution algorithm using diversity control.,2015,32,Expert Systems,4,db/journals/es/es32.html#AmaliB15,https://doi.org/10.1111/exsy.12105 +Muhammad Marwan Muhammad Fuad,Aggressive pruning strategy for time series retrieval using a multi-resolution representation based on vector quantization coupled with discrete wavelet transform.,2017,34,Expert Systems,1,db/journals/es/es34.html#Fuad17,https://doi.org/10.1111/exsy.12171 +Jens Bæk Jørgensen,Coloured Petri nets and graphical animation: a proposal for a means to address problem frame concerns.,2008,25,Expert Systems,1,db/journals/es/es25.html#Jorgensen08,https://doi.org/10.1111/j.1468-0394.2008.00454.x +Paulo Cortez 0001,Third special issue on knowledge discovery and business intelligence.,2017,34,Expert Systems,1,db/journals/es/es34.html#CortezS17,https://doi.org/10.1111/exsy.12188 +Di Yao,Learning deep representation for trajectory clustering.,2018,35,Expert Systems,2,db/journals/es/es35.html#YaoZZHWHB18,https://doi.org/10.1111/exsy.12252 +Mourad Adnane,Heartbeats classification using QRS and T waves autoregressive features and RR interval features.,2017,34,Expert Systems,6,db/journals/es/es34.html#AdnaneB17,https://doi.org/10.1111/exsy.12219 +José M. Juárez,T-CARE: temporal case retrieval system.,2011,28,Expert Systems,4,db/journals/es/es28.html#JuarezCPM11,https://doi.org/10.1111/j.1468-0394.2010.00577.x +M. Taboada,New perspectives on the application of expert systems.,2011,28,Expert Systems,4,db/journals/es/es28.html#TaboadaMF11,https://doi.org/10.1111/j.1468-0394.2011.00599.x +Kemal Polat,Comparison of different classifier algorithms for diagnosing macular and optic nerve diseases.,2009,26,Expert Systems,1,db/journals/es/es26.html#PolatKGG09,https://doi.org/10.1111/j.1468-0394.2008.00501.x +Frédéric Fürst,Axiom-based ontology matching.,2009,26,Expert Systems,2,db/journals/es/es26.html#FurstT09,https://doi.org/10.1111/j.1468-0394.2009.00482.x +Jobin Wilson,Clustering short temporal behaviour sequences for customer segmentation using LDA.,2018,35,Expert Systems,3,db/journals/es/es35.html#WilsonCL18,https://doi.org/10.1111/exsy.12250 +Giselle Martine,That site looks 88.46% familiar: quantifying similarity of Web page design.,2005,22,Expert Systems,3,db/journals/es/es22.html#MartineR05,https://doi.org/10.1111/j.1468-0394.2005.00302.x +Hyunchul Ahn,Hybrid genetic algorithms and case-based reasoning systems for customer classification.,2006,23,Expert Systems,3,db/journals/es/es23.html#AhnKH06,https://doi.org/10.1111/j.1468-0394.2006.00329.x +Silvano Mussi,Facilitating the use of multi-attribute utility theory in expert systems: an aid for identifying the right relative importance weights of attributes.,1999,16,Expert Systems,2,db/journals/es/es16.html#Mussi99,https://doi.org/10.1111/1468-0394.00098 +Matteo Mura,Developing a tool for intellectual capital assessment: an individual-level perspective.,2013,30,Expert Systems,5,db/journals/es/es30.html#MuraL13,https://doi.org/10.1111/j.1468-0394.2012.00650.x +Inan Güler,Combined neural network model to compute wavelet coefficients.,2006,23,Expert Systems,3,db/journals/es/es23.html#GulerU06,https://doi.org/10.1111/j.1468-0394.2006.00331.x +Yevgen Biletskiy,Identification and resolution of conflicts during ontological integration using rules.,2010,27,Expert Systems,2,db/journals/es/es27.html#BiletskiyRV10,https://doi.org/10.1111/j.1468-0394.2010.00511.x +Shuchen Li,Exploiting organizer influence and geographical preference for new event recommendation.,2017,34,Expert Systems,2,db/journals/es/es34.html#LiCSS17,https://doi.org/10.1111/exsy.12190 +Hamed Nikdel,Increasing the speed of fuzzy k-nearest neighbours algorithm.,2018,35,Expert Systems,3,db/journals/es/es35.html#NikdelFM18,https://doi.org/10.1111/exsy.12254 +Vijay Kumar Mago,The strongest does not attract all but it does attract the most - evaluating the criminal attractiveness of shopping malls using fuzzy logic.,2014,31,Expert Systems,2,db/journals/es/es31.html#MagoFRD14,https://doi.org/10.1111/exsy.12015 +Antonio S. Cofiño,Evolving modular networks with genetic algorithms: application to nonlinear time series.,2004,21,Expert Systems,4,db/journals/es/es21.html#CofinoGI04,https://doi.org/10.1111/j.1468-0394.2004.00278.x +Adriano Rivolli,Enhancing multilabel classification for food truck recommendation.,2018,35,Expert Systems,4,db/journals/es/es35.html#RivolliSC18,https://doi.org/10.1111/exsy.12304 +Chun-Hsien Chen,A knowledge sorting process for a product design expert system.,1999,16,Expert Systems,3,db/journals/es/es16.html#ChenO99,https://doi.org/10.1111/1468-0394.00106 +Ibrahim Dogan,A reinforcement learning approach to competitive ordering and pricing problem.,2015,32,Expert Systems,1,db/journals/es/es32.html#DoganG15,https://doi.org/10.1111/exsy.12054 +Laura García-Hernández,Facility layout design using a multi-objective interactive genetic algorithm to support the DM.,2015,32,Expert Systems,1,db/journals/es/es32.html#Garcia-Hernandez15,https://doi.org/10.1111/exsy.12064 +Aviv Segev,Integrating computer vision with web-based knowledge for medical diagnostic assistance.,2010,27,Expert Systems,4,db/journals/es/es27.html#Segev10,https://doi.org/10.1111/j.1468-0394.2010.00520.x +Saroj K. Meher,Comparative analysis on the application of neuro-fuzzy models for complex engineered systems: Case study from a landfill and a boiler.,2017,34,Expert Systems,6,db/journals/es/es34.html#MeherBRP17,https://doi.org/10.1111/exsy.12215 +Vahed Qazvinian,Evolutionary coincidence-based ontology mapping extraction.,2008,25,Expert Systems,3,db/journals/es/es25.html#QazvinianAH08,https://doi.org/10.1111/j.1468-0394.2008.00462.x +Emilia I. Barakova,Long-term LEGO therapy with humanoid robot for children with ASD.,2015,32,Expert Systems,6,db/journals/es/es32.html#BarakovaBWLH15,https://doi.org/10.1111/exsy.12098 +Elif Derya übeyli,Automatic diagnosis of diabetes using adaptive neuro-fuzzy inference systems.,2010,27,Expert Systems,4,db/journals/es/es27.html#Ubeyli10,https://doi.org/10.1111/j.1468-0394.2010.00527.x +Adán José García,Rule-based approach for topic maps learning from relational databases.,2015,32,Expert Systems,5,db/journals/es/es32.html#Jose-GarciaLS15,https://doi.org/10.1111/exsy.12113 +Francisco Gomez-Donoso,Automatic Schaeffer's gestures recognition system.,2016,33,Expert Systems,5,db/journals/es/es33.html#Gomez-DonosoCGR16,https://doi.org/10.1111/exsy.12160 +Lucia Rapanotti,EIC Editorial: A time of change.,2006,23,Expert Systems,1,db/journals/es/es23.html#Rapanotti06,https://doi.org/10.1111/j.1468-0394.2006.00320.x +Miguel Oliver,RGB-D assistive technologies for acquired brain injury: description and assessment of user experience.,2015,32,Expert Systems,3,db/journals/es/es32.html#OliverMFGM15,https://doi.org/10.1111/exsy.12096 +Bingzhen Sun,Fuzzy rough set on probabilistic approximation space over two universes and its application to emergency decision-making.,2015,32,Expert Systems,4,db/journals/es/es32.html#SunMC15,https://doi.org/10.1111/exsy.12103 +Salem Ameen,A convolutional neural network to classify American Sign Language fingerspelling from depth and colour images.,2017,34,Expert Systems,3,db/journals/es/es34.html#AmeenV17,https://doi.org/10.1111/exsy.12197 +Hugo Proença,An iris recognition approach through structural pattern analysis methods.,2010,27,Expert Systems,1,db/journals/es/es27.html#Proenca10,https://doi.org/10.1111/j.1468-0394.2009.00534.x +Pelin Görgel,Computer-aided classification of breast masses in mammogram images based on spherical wavelet transform and support vector machines.,2015,32,Expert Systems,1,db/journals/es/es32.html#GorgelSU15,https://doi.org/10.1111/exsy.12073 +Taeho Hong,Integrated approach of cognitive maps and neural networks using qualitative information on the World Wide Web: the KBNMiner.,2004,21,Expert Systems,5,db/journals/es/es21.html#HongH04,https://doi.org/10.1111/j.1468-0394.2004.00282.x +Parag C. Pendharkar,A distributed problem-solving framework for probabilistic software effort estimation.,2012,29,Expert Systems,5,db/journals/es/es29.html#PendharkarR12,https://doi.org/10.1111/j.1468-0394.2011.00607.x +Shashi Dahiya,A feature selection enabled hybrid-bagging algorithm for credit risk evaluation.,2017,34,Expert Systems,6,db/journals/es/es34.html#DahiyaHS17,https://doi.org/10.1111/exsy.12217 +Nafiseh Torkzadeh Mahani,Expert finding by the Dempster-Shafer theory for evidence combination.,2018,35,Expert Systems,1,db/journals/es/es35.html#MahaniDMST18,https://doi.org/10.1111/exsy.12231 +Jianxiang Li,A case of rule-based heuristics for scheduling hot rolling seamless steel tube production.,2006,23,Expert Systems,3,db/journals/es/es23.html#LiLTW06,https://doi.org/10.1111/j.1468-0394.2006.00330.x +Atilla Elçi,Introduction to the special issue on engineering semantic agent systems.,2011,28,Expert Systems,5,db/journals/es/es28.html#ElciKO11,https://doi.org/10.1111/j.1468-0394.2011.00585.x +David F. Barrero,A genetic tango attack against the David-Prasad RFID ultra-lightweight authentication protocol.,2014,31,Expert Systems,1,db/journals/es/es31.html#BarreroCPCR14,https://doi.org/10.1111/j.1468-0394.2012.00652.x +Sally Fincher,Making sense of card sorting data.,2005,22,Expert Systems,3,db/journals/es/es22.html#FincherT05,https://doi.org/10.1111/j.1468-0394.2005.00299.x +Päivi Parviainen,Knowledge-related challenges and solutions in GSD.,2014,31,Expert Systems,3,db/journals/es/es31.html#ParviainenT14,https://doi.org/10.1111/exsy.608 +Ibrahim Türkoglu,A wavelet neural network for the detection of heart valve diseases.,2003,20,Expert Systems,1,db/journals/es/es20.html#TurkogluAI03,https://doi.org/10.1111/1468-0394.00219 +Il-Yeol Song,Big data and data science: what should we teach?,2016,33,Expert Systems,4,db/journals/es/es33.html#SongZ16,https://doi.org/10.1111/exsy.12130 +William W. Melek,A theoretic framework for intelligent expert systems in medical encounter evaluation.,2009,26,Expert Systems,1,db/journals/es/es26.html#MelekS09,https://doi.org/10.1111/j.1468-0394.2008.00481.x +Jon G. Hall,Building the knowledge society begins with breakfast.,2011,28,Expert Systems,4,db/journals/es/es28.html#Hall11a,https://doi.org/10.1111/j.1468-0394.2011.00614.x +Xiao Ming Li,Modeling uncertainties involved with software development with a stochastic Petri net.,2006,23,Expert Systems,5,db/journals/es/es23.html#LiWSL06,https://doi.org/10.1111/j.1468-0394.2006.00411.x +Nwe Ni Tun,A philosophy-driven entity classification and enrichment for ontology mapping.,2011,28,Expert Systems,2,db/journals/es/es28.html#TunDT11,https://doi.org/10.1111/j.1468-0394.2010.00544.x +Luis J. Mena,Extracting new patterns for cardiovascular disease prognosis.,2009,26,Expert Systems,5,db/journals/es/es26.html#MenaGM09,https://doi.org/10.1111/j.1468-0394.2009.00498.x +Mohammad Izadikhah,A new data envelopment analysis method for ranking decision making units: an application in industrial parks.,2015,32,Expert Systems,5,db/journals/es/es32.html#IzadikhahS15,https://doi.org/10.1111/exsy.12112 +Shu-Chu Liu,An Efficient Expert System for Air Compressor Troubleshooting.,2001,18,Expert Systems,4,db/journals/es/es18.html#LiuL01,https://doi.org/10.1111/1468-0394.00175 +Adrián Bresó,Usability and acceptability assessment of an empathic virtual agent to prevent major depression.,2016,33,Expert Systems,4,db/journals/es/es33.html#BresoMBBG16,https://doi.org/10.1111/exsy.12151 +Chrissanthi Angeli,Online expert systems for fault diagnosis in technical processes.,2008,25,Expert Systems,2,db/journals/es/es25.html#Angeli08,https://doi.org/10.1111/j.1468-0394.2008.00442.x +Pablo Bermejo,Adapting the CMIM algorithm for multilabel feature selection. A comparison with existing methods.,2018,35,Expert Systems,1,db/journals/es/es35.html#BermejoGP18,https://doi.org/10.1111/exsy.12230 +Malcolm John Beynon,Investigating the impact of training influence on employee retention in small and medium enterprises: a regression-type classification and ranking believe simplex analysis on sparse data.,2015,32,Expert Systems,1,db/journals/es/es32.html#BeynonJPP15,https://doi.org/10.1111/exsy.12067 +Guo-Fang Qiu,A knowledge processing method for intelligent systems based on inclusion degree.,2003,20,Expert Systems,4,db/journals/es/es20.html#QiuLXZ03,https://doi.org/10.1111/1468-0394.00243 +Trung T. Pham,Some applications of fuzzy logic in rule-based expert systems.,2002,19,Expert Systems,4,db/journals/es/es19.html#PhamC02,https://doi.org/10.1111/1468-0394.00206 +Lucia Rapanotti,2008 changes to the Editorial Board of Expert Systems.,2008,25,Expert Systems,1,db/journals/es/es25.html#Rapanotti08,https://doi.org/10.1111/j.1468-0394.2008.00472.x +Hyunchul Ahn,Global optimization of feature weights and the number of neighbors that combine in a case-based reasoning system.,2006,23,Expert Systems,5,db/journals/es/es23.html#AhnKH06a,https://doi.org/10.1111/j.1468-0394.2006.00410.x +Se-Chul Chun,Data mining technique for medical informatics: detecting gastric cancer using case-based reasoning and single nucleotide polymorphisms.,2008,25,Expert Systems,2,db/journals/es/es25.html#ChunKHPC08,https://doi.org/10.1111/j.1468-0394.2008.00446.x +Sebnem Helvacioglu,A reasoning method for a ship design expert system.,2005,22,Expert Systems,2,db/journals/es/es22.html#HelvaciogluI05,https://doi.org/10.1111/j.1468-0394.2005.00296.x +Deniz Kilinç,Multi-level reranking approach for bug localization.,2016,33,Expert Systems,3,db/journals/es/es33.html#KilincYBA16,https://doi.org/10.1111/exsy.12150 +Donato Impedovo,A multi-resolution multi-classifier system for speaker verification.,2012,29,Expert Systems,5,db/journals/es/es29.html#ImpedovoPP12,https://doi.org/10.1111/j.1468-0394.2011.00603.x +T. A. D. Phibes,The perverse horrors of user-centric design.,2002,19,Expert Systems,5,db/journals/es/es19.html#Phibes02,https://doi.org/10.1111/1468-0394.00216 +Dean Cvetkovic,Preliminary evaluation of electroencephalographic entrainment using thalamocortical modelling.,2009,26,Expert Systems,4,db/journals/es/es26.html#CvetkovicPC09,https://doi.org/10.1111/j.1468-0394.2009.00493.x +Mahdi Mahfouf,The design of supervisory rule-based control in the operating theatre via an anaesthesia simulator.,2002,19,Expert Systems,1,db/journals/es/es19.html#MahfoufAL02,https://doi.org/10.1111/1468-0394.00185 +Jin-Hyung Park,Overview of ship-design expert systems.,2002,19,Expert Systems,3,db/journals/es/es19.html#ParkS02,https://doi.org/10.1111/1468-0394.00199 +Jinn-Yi Yeh,Decomposition and recompilation of mammograms for breast tumour detection.,2018,35,Expert Systems,2,db/journals/es/es35.html#YehC18,https://doi.org/10.1111/exsy.12243 +Kwok-Wing Chau,An expert system on design of liquid-retaining structures with blackboard architecture.,2004,21,Expert Systems,4,db/journals/es/es21.html#ChauA04,https://doi.org/10.1111/j.1468-0394.2004.00276.x +Javier Hernández,Human activity recognition based on kinematic features.,2014,31,Expert Systems,4,db/journals/es/es31.html#HernandezCMP14,https://doi.org/10.1111/exsy.12013 +Patcharin Artameeyanant,Electroencephalography-based feature extraction using complex network for automated epileptic seizure detection.,2017,34,Expert Systems,3,db/journals/es/es34.html#ArtameeyanantSC17,https://doi.org/10.1111/exsy.12211 +Hojat Zamyad,A combined fuzzy logic and artificial neural network approach for non-linear identification of IPMC actuators with hysteresis modification.,2018,35,Expert Systems,4,db/journals/es/es35.html#ZamyadNB18,https://doi.org/10.1111/exsy.12283 +Michela Ponticorvo,An agent-based modelling approach to build up educational digital games for kindergarten and primary schools.,2017,34,Expert Systems,4,db/journals/es/es34.html#PonticorvoFFM17,https://doi.org/10.1111/exsy.12196 +Chien-Chang Chou,Evaluating the quality of airport service using the fuzzy multi-criteria decision-making method: a case study of Taiwanese airports.,2012,29,Expert Systems,3,db/journals/es/es29.html#Chou12,https://doi.org/10.1111/j.1468-0394.2010.00574.x +Jon G. Hall,Computing education that doesn't compute.,2012,29,Expert Systems,3,db/journals/es/es29.html#Hall12a,https://doi.org/10.1111/j.1468-0394.2012.00628.x +Peter H. Morgan,Differential evolution and sparse neural networks.,2008,25,Expert Systems,4,db/journals/es/es25.html#Morgan08,https://doi.org/10.1111/j.1468-0394.2008.00466.x +Young Ae Kim,Strategies for preventing defection based on the mean time to defection and their implementations on a self-organizing map.,2005,22,Expert Systems,5,db/journals/es/es22.html#KimSK05,https://doi.org/10.1111/j.1468-0394.2005.00317.x +Tony A. Plate,Analogy retrieval and processing with distributed vector representations.,2000,17,Expert Systems,1,db/journals/es/es17.html#Plate00,https://doi.org/10.1111/1468-0394.00125 +Weidong Zhu,Determination of evidence correction factors based on the neural network.,2017,34,Expert Systems,2,db/journals/es/es34.html#ZhuXWS17,https://doi.org/10.1111/exsy.12192 +I-Hong Kuo,A hybrid swarm intelligence algorithm for the travelling salesman problem.,2010,27,Expert Systems,3,db/journals/es/es27.html#KuoHKLLCPT10,https://doi.org/10.1111/j.1468-0394.2010.00517.x +Umair Abdullah,Performance evaluation of rule-based expert systems: An example from medical billing domain.,2017,34,Expert Systems,6,db/journals/es/es34.html#AbdullahLZ17,https://doi.org/10.1111/exsy.12218 +Malcolm J. Beynon,Classification and rule induction using rough set theory.,2000,17,Expert Systems,3,db/journals/es/es17.html#BeynonCM00,https://doi.org/10.1111/1468-0394.00136 +Fernando M. Rodríguez,Followee recommendation in Twitter using fuzzy link prediction.,2016,33,Expert Systems,4,db/journals/es/es33.html#RodriguezTG16,https://doi.org/10.1111/exsy.12153 +Félix Fernando González-Navarro,Gene subset selection in microarray data using entropic filtering for cancer classification.,2009,26,Expert Systems,1,db/journals/es/es26.html#Gonzalez-NavarroM09,https://doi.org/10.1111/j.1468-0394.2008.00489.x +Wei-Zhi Wu,Knowledge acquisition in incomplete fuzzy information systems via the rough set approach.,2003,20,Expert Systems,5,db/journals/es/es20.html#WuZL03,https://doi.org/10.1111/1468-0394.00252 +Coral García-Rodríguez,A simulation tool for monitoring elderly who suffer from disorientation in a smart home.,2015,32,Expert Systems,6,db/journals/es/es32.html#Garcia-Rodriguez15,https://doi.org/10.1111/exsy.12107 +Daniel Neagu,Special issue on innovative techniques and applications of artificial intelligence guest editorial.,2017,34,Expert Systems,5,db/journals/es/es34.html#Neagu17,https://doi.org/10.1111/exsy.12234 +Shan Feng,An intelligent agent with layered architecture for operating systems resource management.,2003,20,Expert Systems,4,db/journals/es/es20.html#FengXTY03,https://doi.org/10.1111/1468-0394.00241 +Gordon Rugg,Method fragments.,2000,17,Expert Systems,5,db/journals/es/es17.html#RuggMM00,https://doi.org/10.1111/1468-0394.00147 +N. A. Diamantidis,An interactive tool for knowledge base refinement.,1999,16,Expert Systems,1,db/journals/es/es16.html#DiamantidisG99,https://doi.org/10.1111/1468-0394.00087 +David Griol,Incorporating android conversational agents in m-learning apps.,2017,34,Expert Systems,4,db/journals/es/es34.html#GriolMC17,https://doi.org/10.1111/exsy.12156 +Chun-Ling Chuang,A hybrid neural network approach for credit scoring.,2011,28,Expert Systems,2,db/journals/es/es28.html#ChuangH11,https://doi.org/10.1111/j.1468-0394.2010.00565.x +Yannis Marinakis,Intelligent and nature inspired optimization methods in medicine: the Pap smear cell classification problem.,2009,26,Expert Systems,5,db/journals/es/es26.html#MarinakisMDJB09,https://doi.org/10.1111/j.1468-0394.2009.00506.x +Jon G. Hall,The cult of the (so-called) Expert System.,2012,29,Expert Systems,2,db/journals/es/es29.html#Hall12,https://doi.org/10.1111/j.1468-0394.2012.00617.x +Necaattin Barisçi,Application of an adaptive neuro-fuzzy inference system for classification of Behcet disease using the fast Fourier transform method.,2007,24,Expert Systems,2,db/journals/es/es24.html#BarisciH07,https://doi.org/10.1111/j.1468-0394.2007.00424.x +Siyuan Jing,A Universal neighbourhood rough sets model for knowledge discovering from incomplete heterogeneous data.,2013,30,Expert Systems,1,db/journals/es/es30.html#JingSA13,https://doi.org/10.1111/j.1468-0394.2012.00633.x +Marek Kurzynski,Combining classifiers under probabilistic models: experimental comparative analysis of methods.,2012,29,Expert Systems,4,db/journals/es/es29.html#KurzynskiW12,https://doi.org/10.1111/j.1468-0394.2011.00602.x +Susan Lomax,An empirical comparison of cost-sensitive decision tree induction algorithms.,2011,28,Expert Systems,3,db/journals/es/es28.html#LomaxV11,https://doi.org/10.1111/j.1468-0394.2010.00573.x +Sunil Vadera,Inducing safer oblique trees without costs.,2005,22,Expert Systems,4,db/journals/es/es22.html#Vadera05,https://doi.org/10.1111/j.1468-0394.2005.00311.x +María Victoria Rodellar Biarge,Towards the search of detection in speech-relevant features for stress.,2015,32,Expert Systems,6,db/journals/es/es32.html#BiargePLV15,https://doi.org/10.1111/exsy.12109 +Olivier L. Georgeon,Supporting activity modelling from activity traces.,2012,29,Expert Systems,3,db/journals/es/es29.html#GeorgeonMBMR12,https://doi.org/10.1111/j.1468-0394.2011.00584.x +Lin Wang 0001,A differential evolution algorithm for joint replenishment problem using direct grouping and its application.,2012,29,Expert Systems,5,db/journals/es/es29.html#WangHZ12,https://doi.org/10.1111/j.1468-0394.2011.00594.x +Alina Momot,On application of input data partitioning to Bayesian weighted averaging of biomedical signals.,2012,29,Expert Systems,4,db/journals/es/es29.html#Momot12,https://doi.org/10.1111/j.1468-0394.2011.00597.x +José Humberto Ablanedo-Rosas,A study of the relative efficiency of Chinese ports: a financial ratio-based data envelopment analysis approach.,2010,27,Expert Systems,5,db/journals/es/es27.html#Ablanedo-RosasGZAW10,https://doi.org/10.1111/j.1468-0394.2010.00552.x +Wei-Po Lee,Applying domain knowledge and social information to product analysis and recommendations: an agent-based decision support system.,2004,21,Expert Systems,3,db/journals/es/es21.html#Lee04,https://doi.org/10.1111/j.1468-0394.2004.00270.x +Sung Kwon Han,A new methodology for carbon price forecasting in EU ETS.,2015,32,Expert Systems,2,db/journals/es/es32.html#HanAOK15,https://doi.org/10.1111/exsy.12084 +Jerzy Surma,Case-based approach for supporting strategy decision making.,2015,32,Expert Systems,4,db/journals/es/es32.html#Surma15,https://doi.org/10.1111/exsy.12003 +Michal Wozniak,Computer recognition systems.,2010,27,Expert Systems,1,db/journals/es/es27.html#WozniakU10,https://doi.org/10.1111/j.1468-0394.2009.00536.x +Maciej Smiatacz,SDF classifier revisited.,2012,29,Expert Systems,3,db/journals/es/es29.html#SmiataczM12,https://doi.org/10.1111/j.1468-0394.2011.00589.x +Elizabeth Duncan,Guest Editorial.,2001,18,Expert Systems,4,db/journals/es/es18.html#Duncan01,https://doi.org/10.1111/1468-0394.00171 +Guilan Kong,Applying a belief rule-base inference methodology to a guideline-based clinical decision support system.,2009,26,Expert Systems,5,db/journals/es/es26.html#KongXLY09,https://doi.org/10.1111/j.1468-0394.2009.00500.x +Heidar A. Malki,Short-term electric power load forecasting using feedforward neural networks.,2004,21,Expert Systems,3,db/journals/es/es21.html#MalkiKB04,https://doi.org/10.1111/j.1468-0394.2004.00272.x +Rolf Schwitter,Meaningful web annotations for humans and machines using controlled natural language.,2008,25,Expert Systems,3,db/journals/es/es25.html#SchwitterT08,https://doi.org/10.1111/j.1468-0394.2008.00463.x +Ahmet Mert,Random subspace method with class separability weighting.,2016,33,Expert Systems,3,db/journals/es/es33.html#MertKB16,https://doi.org/10.1111/exsy.12149 +Derek Doran,An integrated method for real time and offline web robot detection.,2016,33,Expert Systems,6,db/journals/es/es33.html#DoranG16,https://doi.org/10.1111/exsy.12184 +María Luciana Roldán,Knowledge representation of the software architecture design process based on situation calculus.,2013,30,Expert Systems,1,db/journals/es/es30.html#RoldanGL13,https://doi.org/10.1111/j.1468-0394.2012.00620.x +Gordon Rugg,AI in the next millennium.,1999,16,Expert Systems,3,db/journals/es/es16.html#RuggM99,https://doi.org/10.1111/1468-0394.00103 +George T. S. Ho,An intelligent information infrastructure to support the streamlining of integrated logistics workflow.,2004,21,Expert Systems,3,db/journals/es/es21.html#HoLIN04,https://doi.org/10.1111/j.1468-0394.2004.00269.x +Elif Derya übeyli,Signal-to-noise ratios for measuring saliency of features extracted by eigenvector methods from ophthalmic arterial Doppler signals.,2008,25,Expert Systems,5,db/journals/es/es25.html#Ubeyli08b,https://doi.org/10.1111/j.1468-0394.2008.00450.x +Inan Güler,An expert system for detection of electrocardiographic changes in patients with partial epilepsy using wavelet-based neural networks.,2005,22,Expert Systems,2,db/journals/es/es22.html#GulerU05,https://doi.org/10.1111/j.1468-0394.2005.00295.x +Mong-Tao Tsai,Experimental evaluations of proportional-integral-derivative type fuzzy controllers with parameter adaptive methods for an active magnetic bearing system.,2011,28,Expert Systems,1,db/journals/es/es28.html#TsaiTC11,https://doi.org/10.1111/j.1468-0394.2010.00530.x +Joanna Polanska,Gaussian mixture decomposition in the analysis of MALDI-TOF spectra.,2012,29,Expert Systems,3,db/journals/es/es29.html#PolanskaPPM12,https://doi.org/10.1111/j.1468-0394.2011.00582.x +Shaukat Wasi,Context-based email classification model.,2016,33,Expert Systems,2,db/journals/es/es33.html#WasiJS16,https://doi.org/10.1111/exsy.12136 +Bingzhen Sun,Dominance-based rough set theory over interval-valued information systems.,2014,31,Expert Systems,2,db/journals/es/es31.html#SunMG14,https://doi.org/10.1111/exsy.12022 +Shang-Ming Zhou,A variational approach to intensity approximation for remote sensing images using dynamic neural networks.,2003,20,Expert Systems,4,db/journals/es/es20.html#ZhouLX03,https://doi.org/10.1111/1468-0394.00240 +Henry C. W. Lau,Monitoring the supply of products in a supply chain environment: a fuzzy neural approach.,2002,19,Expert Systems,4,db/journals/es/es19.html#LauHCW02,https://doi.org/10.1111/1468-0394.00208 +Niyazi Kilic,Colon segmentation and colonic polyp detection using cellular neural networks and three-dimensional template matching.,2009,26,Expert Systems,5,db/journals/es/es26.html#KilicUO09,https://doi.org/10.1111/j.1468-0394.2009.00499.x +Kun Chen 0001,A design for a common-sense knowledge-enhanced decision-support system: Integration of high-frequency market data and real-time news.,2017,34,Expert Systems,3,db/journals/es/es34.html#ChenYP17,https://doi.org/10.1111/exsy.12209 +Mahdi Mahdiloo,Optimal direct mailing modelling based on data envelopment analysis.,2014,31,Expert Systems,2,db/journals/es/es31.html#MahdilooNS14,https://doi.org/10.1111/exsy.12011 +Suphachoke Sonsilphong,A semantic interoperability approach to health-care data: Resolving data-level conflicts.,2016,33,Expert Systems,6,db/journals/es/es33.html#SonsilphongAAP16,https://doi.org/10.1111/exsy.12167 +Jon G. Hall,A singular intelligence.,2009,26,Expert Systems,3,db/journals/es/es26.html#Hall09b,https://doi.org/10.1111/j.1468-0394.2009.00528.x +Hadi Chahkandi Nejad,Gradient-based back-propagation dynamical iterative learning scheme for the neuro-fuzzy inference system.,2016,33,Expert Systems,1,db/journals/es/es33.html#NejadFRK16,https://doi.org/10.1111/exsy.12131 +Kai Stapel,Managing knowledge on communication and information flow in global software projects.,2014,31,Expert Systems,3,db/journals/es/es31.html#StapelS14,https://doi.org/10.1111/exsy.649 +Andrzej Wichert,Associative diagnosis.,2005,22,Expert Systems,1,db/journals/es/es22.html#Wichert05,https://doi.org/10.1111/j.1468-0394.2005.00291.x +Jesus L. Lobo,Identifying recommendation opportunities for computer-supported collaborative environments.,2016,33,Expert Systems,5,db/journals/es/es33.html#LoboSBS16,https://doi.org/10.1111/exsy.12159 +Mahmut Sinecen,Neural network classification of aggregates by means of line laser based 3D acquisition.,2013,30,Expert Systems,4,db/journals/es/es30.html#SinecenTMB13,https://doi.org/10.1111/j.1468-0394.2012.00638.x +I. G. Mitchell,A connectionist inference model for pattern-directed knowledge representation.,2000,17,Expert Systems,2,db/journals/es/es17.html#MitchellB00,https://doi.org/10.1111/1468-0394.00132 +Rossana Damiano,Leveraging social semantic components in executable environments for learning.,2015,32,Expert Systems,2,db/journals/es/es32.html#DamianoGL15,https://doi.org/10.1111/exsy.12044 +Angeles Manjarrés Riesco,Describing generic expertise models as object-oriented analysis patterns: the heuristic multi-attribute decision pattern.,2002,19,Expert Systems,3,db/journals/es/es19.html#RiescoP02,https://doi.org/10.1111/1468-0394.00200 +Fernando Jiménez,Unsupervised feature selection for interpretable classification in behavioral assessment of children.,2017,34,Expert Systems,4,db/journals/es/es34.html#JimenezJMSS17,https://doi.org/10.1111/exsy.12173 +André Magalhães,Contrast set mining in temporal databases.,2015,32,Expert Systems,3,db/journals/es/es32.html#MagalhaesA15,https://doi.org/10.1111/exsy.12080 +Pejman Mehran,Fuzzy machine vision based clip detection.,2013,30,Expert Systems,4,db/journals/es/es30.html#MehranDS13,https://doi.org/10.1111/j.1468-0394.2012.00641.x +Chrissanthi Angeli,A Model-Based Method for an Online Diagnostic Knowledge-Based System.,2001,18,Expert Systems,3,db/journals/es/es18.html#AngeliA01,https://doi.org/10.1111/1468-0394.00167 +Li Li 0006,Agent-based ontology mapping and integration towards interoperability.,2008,25,Expert Systems,3,db/journals/es/es25.html#LiY08,https://doi.org/10.1111/j.1468-0394.2008.00460.x +Kevin Burn,Environment classification using Kohonen self-organizing maps.,2008,25,Expert Systems,2,db/journals/es/es25.html#BurnH08,https://doi.org/10.1111/j.1468-0394.2008.00441.x +Douglas Rodrigues,Meta-heuristic multi- and many-objective optimization techniques for solution of machine learning problems.,2017,34,Expert Systems,6,db/journals/es/es34.html#RodriguesPA17,https://doi.org/10.1111/exsy.12255 +Sérgio Moro,A divide-and-conquer strategy using feature relevance and expert knowledge for enhancing a data mining approach to bank telemarketing.,2018,35,Expert Systems,3,db/journals/es/es35.html#MoroCR18,https://doi.org/10.1111/exsy.12253 +Paula Lago,Contextualized behavior patterns for change reasoning in Ambient Assisted Living: A formal model.,2017,34,Expert Systems,2,db/journals/es/es34.html#LagoJR17,https://doi.org/10.1111/exsy.12189 +Joana Hora,A review of performance criteria to validate simulation models.,2015,32,Expert Systems,5,db/journals/es/es32.html#HoraC15,https://doi.org/10.1111/exsy.12111 +Jon G. Hall,Beachbrains.,2009,26,Expert Systems,2,db/journals/es/es26.html#Hall09a,https://doi.org/10.1111/j.1468-0394.2009.00519.x +Jon G. Hall,Is tangled the new wicked?,2013,30,Expert Systems,2,db/journals/es/es30.html#Hall13a,https://doi.org/10.1111/exsy.12025 +Gordon Rugg,Foreword.,2001,18,Expert Systems,4,db/journals/es/es18.html#RuggM01b,https://doi.org/10.1111/1468-0394.00170 +Chuen-He Liou,Hybrid recommendations for mobile commerce based on mobile phone features.,2012,29,Expert Systems,2,db/journals/es/es29.html#LiouL12,https://doi.org/10.1111/j.1468-0394.2010.00566.x +Saangyong Uhmn,A study on application of single nucleotide polymorphism and machine learning techniques to diagnosis of chronic hepatitis.,2009,26,Expert Systems,1,db/journals/es/es26.html#UhmnKKCCK09,https://doi.org/10.1111/j.1468-0394.2008.00491.x +Bakhtiyor Bahritidinov,Predicting academic success by using context variables and probabilistic classification.,2017,34,Expert Systems,4,db/journals/es/es34.html#BahritidinovS17,https://doi.org/10.1111/exsy.12195 +Candan Gokceoglu,Estimating the uniaxial compressive strength of some clay-bearing rocks selected from Turkey by nonlinear multivariable regression and rule-based fuzzy models.,2009,26,Expert Systems,2,db/journals/es/es26.html#GokceogluSZ09,https://doi.org/10.1111/j.1468-0394.2009.00475.x +Jasna Gamulin,Using Fourier coefficients in time series analysis for student performance prediction in blended learning environments.,2016,33,Expert Systems,2,db/journals/es/es33.html#GamulinGK16,https://doi.org/10.1111/exsy.12142 +Michael Jackson 0001,Problem frames and software engineering.,2008,25,Expert Systems,1,db/journals/es/es25.html#Jackson08,https://doi.org/10.1111/j.1468-0394.2008.00456.x +Delu Wang,Risk prediction of product-harm events using rough sets and multiple classifier fusion: an experimental study of listed companies in China.,2016,33,Expert Systems,3,db/journals/es/es33.html#WangZMSL16,https://doi.org/10.1111/exsy.12148 +Zhi-Hua Hu,Methods for ranking college sports coaches based on data envelopment analysis and PageRank.,2015,32,Expert Systems,6,db/journals/es/es32.html#HuZZZ15,https://doi.org/10.1111/exsy.12108 +Jinn-Yi Yeh,Cascade of genetic algorithm and decision tree for cancer classification on gene expression data.,2010,27,Expert Systems,3,db/journals/es/es27.html#YehW10,https://doi.org/10.1111/j.1468-0394.2010.00522.x +Jeremy Straub,Automating maintenance for a one-way transmitting blackboard system used for autonomous multi-tier control.,2016,33,Expert Systems,6,db/journals/es/es33.html#Straub16,https://doi.org/10.1111/exsy.12162 +Mal-rey Lee,Expert system for nuclear power plant accident diagnosis using a fuzzy inference method.,2002,19,Expert Systems,4,db/journals/es/es19.html#Lee02,https://doi.org/10.1111/1468-0394.00205 +Jae Kyeong Kim,Detecting the change of customer behavior based on decision tree analysis.,2005,22,Expert Systems,4,db/journals/es/es22.html#KimSKK05,https://doi.org/10.1111/j.1468-0394.2005.00310.x +álvaro Rocha,Expert systems: The journal of knowledge engineering special issue on WorldCist'16 - 4th world conference on information systems and technologies.,2018,35,Expert Systems,1,db/journals/es/es35.html#RochaL18,https://doi.org/10.1111/exsy.12260 +Wei Li 0029,CARR: a scalable solution for network packet classification.,2012,29,Expert Systems,1,db/journals/es/es29.html#LiZLGLCWL12,https://doi.org/10.1111/j.1468-0394.2010.00563.x +José Manuel Gascueña,Knowledge modeling through computational agents: application to surveillance systems.,2011,28,Expert Systems,4,db/journals/es/es28.html#GascuenaFLD11,https://doi.org/10.1111/j.1468-0394.2011.00609.x +Elif Derya übeyli,Modified mixture of experts employing eigenvector methods and Lyapunov exponents for analysis of electroencephalogram signals.,2009,26,Expert Systems,4,db/journals/es/es26.html#Ubeyli09c,https://doi.org/10.1111/j.1468-0394.2009.00490.x +Se-Hak Chun,Automated generation of new knowledge to support managerial decision-making: case study in forecasting a stock market.,2004,21,Expert Systems,4,db/journals/es/es21.html#ChunK04,https://doi.org/10.1111/j.1468-0394.2004.00277.x +Frederic T. Stahl,Random Prism: a noise-tolerant alternative to Random Forests.,2014,31,Expert Systems,5,db/journals/es/es31.html#StahlB14,https://doi.org/10.1111/exsy.12032 +Victor Diogho Heuer de Carvalho,Information technology outsourcing relationship integration: a critical success factors study based on ranking problems (P.*) and correlation analysis.,2018,35,Expert Systems,1,db/journals/es/es35.html#CarvalhoPC18,https://doi.org/10.1111/exsy.12198 +Zhi Jin,An experiment for showing some kind of artificial understanding.,2003,20,Expert Systems,2,db/journals/es/es20.html#JinB03,https://doi.org/10.1111/1468-0394.00231 +Zhaowen Li,Knowledge structures in a knowledge base.,2016,33,Expert Systems,6,db/journals/es/es33.html#LiLZX16,https://doi.org/10.1111/exsy.12183 +Angel Arroyo,Adaptive fuzzy knowledge-based systems for control metabots' mobility on virtual environments.,2011,28,Expert Systems,4,db/journals/es/es28.html#ArroyoSC11,https://doi.org/10.1111/j.1468-0394.2011.00595.x +Veysi öztürk,Hybrid expert-fuzzy approach for evaluation of complex systems.,2009,26,Expert Systems,3,db/journals/es/es26.html#Ozturk09,https://doi.org/10.1111/j.1468-0394.2009.00487.x +Sattar Hashemi,Detecting intrusion transactions in databases using data item dependencies and anomaly analysis.,2008,25,Expert Systems,5,db/journals/es/es25.html#HashemiYZK08,https://doi.org/10.1111/j.1468-0394.2008.00467.x +Hassan B. Kazemian,Developments of fuzzy PID controllers.,2005,22,Expert Systems,5,db/journals/es/es22.html#Kazemian05,https://doi.org/10.1111/j.1468-0394.2005.00316.x +Ganesh R. Naik,Signal processing evaluation of myoelectric sensor placement in low-level gestures: sensitivity analysis using independent component analysis.,2014,31,Expert Systems,1,db/journals/es/es31.html#NaikKP14,https://doi.org/10.1111/exsy.12008 +Smaranda Belciug,A hybrid neural network/genetic algorithm applied to breast cancer detection and recurrence.,2013,30,Expert Systems,3,db/journals/es/es30.html#BelciugG13,https://doi.org/10.1111/j.1468-0394.2012.00635.x +Jae Joon Ahn,Lag-ℓ* forecasting and machine-learning algorithms.,2011,28,Expert Systems,3,db/journals/es/es28.html#AhnSOKS11,https://doi.org/10.1111/j.1468-0394.2011.00581.x +Hong-Xing Li,Feature space theory in data mining: transformations between extensions and intensions in knowledge representation.,2003,20,Expert Systems,2,db/journals/es/es20.html#LiXWM03,https://doi.org/10.1111/1468-0394.00226 +Nam Seog Park,Connectionist symbolic rule encoding using a generalized phase-locking mechanism.,2000,17,Expert Systems,1,db/journals/es/es17.html#Park00,https://doi.org/10.1111/1468-0394.00124 +Chi Fai Cheung,An agent-oriented and knowledge-based system for strategic e-procurement.,2004,21,Expert Systems,1,db/journals/es/es21.html#CheungWLL04,https://doi.org/10.1111/j.1468-0394.2004.00259.x +Daniel J. Fonseca,An expert system for lighting energy management in public school facilities.,2006,23,Expert Systems,4,db/journals/es/es23.html#FonsecaBMM06,https://doi.org/10.1111/j.1468-0394.2006.00401.x +Jon G. Hall,Neuronomics: connectionist economics.,2011,28,Expert Systems,1,db/journals/es/es28.html#Hall11,https://doi.org/10.1111/j.1468-0394.2011.00583.x +Mina Jahangiri,Decision-tree-based methods for differential diagnosis of 6*-thalassemia trait from iron deficiency anemia.,2017,34,Expert Systems,3,db/journals/es/es34.html#JahangiriKRSM17,https://doi.org/10.1111/exsy.12201 +Yu-Liang Chi,Learning adaptivity in support of flipped learning: An ontological problem-solving approach.,2018,35,Expert Systems,3,db/journals/es/es35.html#ChiCH18,https://doi.org/10.1111/exsy.12246 +Henry C. W. Lau,Development of an Intelligent Data-Mining System for a Dispersed Manufacturing Network.,2001,18,Expert Systems,4,db/journals/es/es18.html#LauJLL01,https://doi.org/10.1111/1468-0394.00172 +Farrah Farooq,The data warehouse virtualization framework for operational business intelligence.,2013,30,Expert Systems,5,db/journals/es/es30.html#Farooq13,https://doi.org/10.1111/j.1468-0394.2012.00651.x +Amir Hossein Niknamfar,A knowledge-based genetic algorithm for a capacitated fuzzy p-hub centre network under uncertain information.,2018,35,Expert Systems,4,db/journals/es/es35.html#NiknamfarNK18,https://doi.org/10.1111/exsy.12262 +T. A. D. Phibes,On procedures.,2005,22,Expert Systems,1,db/journals/es/es22.html#Phibes05,https://doi.org/10.1111/j.1468-0394.2005.00290.x +Lihua Zhou,Game theory-based influence diagrams.,2013,30,Expert Systems,4,db/journals/es/es30.html#ZhouLL13,https://doi.org/10.1111/j.1468-0394.2012.00639.x +Parag C. Pendharkar,Linear models for cost-sensitive classification.,2015,32,Expert Systems,5,db/journals/es/es32.html#Pendharkar15,https://doi.org/10.1111/exsy.12114 +Pedro Salcedo Lagos,An adaptive hypermedia model based on student's lexicon.,2017,34,Expert Systems,4,db/journals/es/es34.html#LagosPAF17,https://doi.org/10.1111/exsy.12222 +Paul Jones 0002,Temporal support in the identification of e-learning efficacy: an example of object classification in the presence of ignorance.,2007,24,Expert Systems,1,db/journals/es/es24.html#JonesB07,https://doi.org/10.1111/j.1468-0394.2007.00417.x +Mohammad Ali Shafia,Ranking Fuzzy Cognitive Map based scenarios using ELECTRE III: Applied on housing market.,2016,33,Expert Systems,5,db/journals/es/es33.html#ShafiaMT16,https://doi.org/10.1111/exsy.12154 +Elif Derya übeyli,Advances in medical decision support systems.,2009,26,Expert Systems,1,db/journals/es/es26.html#Ubeyli09,https://doi.org/10.1111/j.1468-0394.2008.00503.x +Angel M. Gento,Rough sets and maintenance in a production line.,2003,20,Expert Systems,5,db/journals/es/es20.html#GentoR03,https://doi.org/10.1111/1468-0394.00251 +Blanca Priego,A cellular automata-based filtering approach to multi-temporal image denoising.,2018,35,Expert Systems,2,db/journals/es/es35.html#PriegoPDC18,https://doi.org/10.1111/exsy.12235 +Rambir Singh,Approximated fuzzy logic controlled shunt active power filter for improved power quality.,2013,30,Expert Systems,2,db/journals/es/es30.html#SinghSA13,https://doi.org/10.1111/j.1468-0394.2012.00626.x +Ohbyung Kwon,An association model based reasoning method for individualized service recommender.,2013,30,Expert Systems,1,db/journals/es/es30.html#KwonJ13,https://doi.org/10.1111/j.1468-0394.2012.00621.x +María Luciana Roldán,Operation-based approach for documenting software architecture knowledge.,2016,33,Expert Systems,4,db/journals/es/es33.html#RoldanGL16,https://doi.org/10.1111/exsy.12152 +Maria Taboada,Combining open-source natural language processing tools to parse clinical practice guidelines.,2013,30,Expert Systems,1,db/journals/es/es30.html#TaboadaMHRA13,https://doi.org/10.1111/j.1468-0394.2010.00575.x +R. B. V. Subramanyam,Mining fuzzy quantitative association rules.,2006,23,Expert Systems,4,db/journals/es/es23.html#SubramanyamG06,https://doi.org/10.1111/j.1468-0394.2006.00402.x +Tapabrata Chakraborti,Automated emotion recognition employing a novel modified binary quantum-behaved gravitational search algorithm with differential mutation.,2015,32,Expert Systems,4,db/journals/es/es32.html#ChakrabortiCHK15,https://doi.org/10.1111/exsy.12104 +Muhammad Zubair Asghar,T-SAF: Twitter sentiment analysis framework using a hybrid classification scheme.,2018,35,Expert Systems,1,db/journals/es/es35.html#AsgharKAKK18,https://doi.org/10.1111/exsy.12233 +Xinyu Wang 0001,Deriving problem frames from business process and object analysis models.,2013,30,Expert Systems,3,db/journals/es/es30.html#WangSYWLK13,https://doi.org/10.1111/j.1468-0394.2012.00632.x +Soumi Chakraborty,A dual-tree complex wavelet transform-based approach for recognition of power system transients.,2015,32,Expert Systems,1,db/journals/es/es32.html#ChakrabortyCG15,https://doi.org/10.1111/exsy.12066 +Rafael Magdalena,Qualitative analysis of goat and sheep production data using self-organizing maps.,2009,26,Expert Systems,2,db/journals/es/es26.html#MagdalenaFMSMNM09,https://doi.org/10.1111/j.1468-0394.2009.00477.x +Susan Quinn,Ontological modelling and rule-based reasoning for the provision of personalized patient education.,2017,34,Expert Systems,2,db/journals/es/es34.html#QuinnBN17,https://doi.org/10.1111/exsy.12134 +Jagannath Roy,Evaluation and selection of medical tourism sites: A rough analytic hierarchy process based multi-attributive border approximation area comparison approach.,2018,35,Expert Systems,1,db/journals/es/es35.html#RoyCBK18,https://doi.org/10.1111/exsy.12232 +Rahman Ali,Knowledge-based reasoning and recommendation framework for intelligent decision making.,2018,35,Expert Systems,2,db/journals/es/es35.html#AliASHALK18,https://doi.org/10.1111/exsy.12242 +Zahra Hosseini Pozveh,FNLP-ONT: A feasible ontology for improving NLP tasks in Persian.,2018,35,Expert Systems,4,db/journals/es/es35.html#PozvehMA18,https://doi.org/10.1111/exsy.12282 +Whitney Tabor,Fractal encoding of context-free grammars in connectionist networks.,2000,17,Expert Systems,1,db/journals/es/es17.html#Tabor00,https://doi.org/10.1111/1468-0394.00126 +Sahin Renckes,A new hybrid recommendation algorithm with privacy.,2012,29,Expert Systems,1,db/journals/es/es29.html#RenckesPO12,https://doi.org/10.1111/j.1468-0394.2010.00561.x +Mehdi Bagheri,Multi-expression programming based model for prediction of formation enthalpies of nitro-energetic materials.,2013,30,Expert Systems,1,db/journals/es/es30.html#BagheriGBS13,https://doi.org/10.1111/j.1468-0394.2012.00623.x +álvaro Soria,Architecture-driven assistance for fault-localization tasks.,2015,32,Expert Systems,1,db/journals/es/es32.html#SoriaPC15,https://doi.org/10.1111/exsy.12047 +Hassan B. Kazemian,Study of Learning Fuzzy Controllers.,2001,18,Expert Systems,4,db/journals/es/es18.html#Kazemian01,https://doi.org/10.1111/1468-0394.00173 +Anubhav Ranjan,From process experts to a real-time knowledge-based system.,2002,19,Expert Systems,2,db/journals/es/es19.html#RanjanGMM02,https://doi.org/10.1111/1468-0394.00192 +Rosanne Janssen,Case-based reasoning for predicting the success of therapy.,2015,32,Expert Systems,2,db/journals/es/es32.html#JanssenSA15,https://doi.org/10.1111/exsy.12074 +Mehmet A. Orgun,Introduction to the special issue on advances in ontologies.,2008,25,Expert Systems,3,db/journals/es/es25.html#OrgunM08,https://doi.org/10.1111/j.1468-0394.2008.00465.x +Harun Uguz,A new approach based on a discrete hidden Markov model using the Rocchio algorithm for the diagnosis of heart valve diseases.,2008,25,Expert Systems,5,db/journals/es/es25.html#UguzA08,https://doi.org/10.1111/j.1468-0394.2008.00474.x +Yunus Ziya Arslan,Fuzzy sliding mode control of a finger of a humanoid robot hand.,2009,26,Expert Systems,3,db/journals/es/es26.html#ArslanHY09,https://doi.org/10.1111/j.1468-0394.2009.00488.x +Joon Yeon Choi,MCORE: a context-sensitive recommendation system for the mobile Web.,2007,24,Expert Systems,1,db/journals/es/es24.html#ChoiSK07,https://doi.org/10.1111/j.1468-0394.2007.00419.x +Ying Yang 0009,A methodology for assessing the effect of portfolio management on NPD performance based on Bayesian network scenarios.,2017,34,Expert Systems,2,db/journals/es/es34.html#YangX17,https://doi.org/10.1111/exsy.12186 +Loris Bazzani,Social interactions by visual focus of attention in a three-dimensional environment.,2013,30,Expert Systems,2,db/journals/es/es30.html#BazzaniCTFPMM13,https://doi.org/10.1111/j.1468-0394.2012.00622.x +Malcolm J. Beynon,The application of a fuzzy-rule-based system in an exposition of the antecedents of sedge warbler song flight.,2004,21,Expert Systems,1,db/journals/es/es21.html#BeynonBT04,https://doi.org/10.1111/j.1468-0394.2004.00258.x +Jon G. Hall,Special issue on applications and advances in problem frames.,2008,25,Expert Systems,1,db/journals/es/es25.html#HallRCJ08,https://doi.org/10.1111/j.1468-0394.2008.00473.x +Igor Ibarguren,CT *lt*DT>*: Extending the application of the consolidation methodology even further.,2017,34,Expert Systems,5,db/journals/es/es34.html#IbargurenPMG17,https://doi.org/10.1111/exsy.12212 +Andrew Basden,Knowledge Issues Raised in Modelling Trust in a Public Key Infrastructure.,2001,18,Expert Systems,5,db/journals/es/es18.html#BasdenBC01,https://doi.org/10.1111/1468-0394.00178 +Jae Kwang Lee,A case-based reasoning approach for building a decision model.,2002,19,Expert Systems,3,db/journals/es/es19.html#LeeK02,https://doi.org/10.1111/1468-0394.00198 +Shang-Ming Zhou,Dynamic recurrent neural networks for a hybrid intelligent decision support system for the metallurgical industry.,1999,16,Expert Systems,4,db/journals/es/es16.html#ZhouX99,https://doi.org/10.1111/1468-0394.00115 +Tariq Tashan,Speaker verification using heterogeneous neural network architecture with linear correlation speech activity detection.,2014,31,Expert Systems,5,db/journals/es/es31.html#TashanAN14,https://doi.org/10.1111/exsy.12030 +Tomasz Pelech-Pilichowski,A two-level detector of short-term unique changes in time series based on a similarity method.,2015,32,Expert Systems,4,db/journals/es/es32.html#Pelech-Pilichowski15,https://doi.org/10.1111/exsy.629 +Lynn Ling X. Li,A hybrid knowledge-based system applied to epidemic screening.,1999,16,Expert Systems,4,db/journals/es/es16.html#Li99,https://doi.org/10.1111/1468-0394.00116 +Michael T. Maliappis,A framework of knowledge versioning management.,2004,21,Expert Systems,3,db/journals/es/es21.html#MaliappisS04,https://doi.org/10.1111/j.1468-0394.2004.00271.x +Xujie Jia,Optimization of joint maintenance strategy for safety-critical systems with different reliability degrees.,2011,28,Expert Systems,3,db/journals/es/es28.html#JiaC11,https://doi.org/10.1111/j.1468-0394.2011.00579.x +Sriparna Saha 0002,Fuzzy logic and differential evolution-based hybrid system for gesture recognition using Kinect sensor.,2017,34,Expert Systems,3,db/journals/es/es34.html#SahaKD17,https://doi.org/10.1111/exsy.12210 +D. Jude Hemanth,Fusion of artificial neural networks for learning capability enhancement: Application to medical image classification.,2017,34,Expert Systems,6,db/journals/es/es34.html#HemanthAA17,https://doi.org/10.1111/exsy.12225 +Riza Cenk Erdur,The design of a semantic web compatible content language for agent communication.,2008,25,Expert Systems,3,db/journals/es/es25.html#ErdurS08,https://doi.org/10.1111/j.1468-0394.2008.00457.x +Luca Barzanti,A decision support system for fund raising management based on the Choquet integral methodology.,2012,29,Expert Systems,4,db/journals/es/es29.html#BarzantiG12,https://doi.org/10.1111/j.1468-0394.2011.00601.x +Desheng Dash Wu,Special issue: business decision support systems.,2011,28,Expert Systems,3,db/journals/es/es28.html#WuH11,https://doi.org/10.1111/j.1468-0394.2011.00604.x +Taiseera Hazeem Al Balushi,Eliciting and prioritizing quality requirements supported by ontologies: a case study using the ElicitO framework and tool.,2013,30,Expert Systems,2,db/journals/es/es30.html#BalushiSL13,https://doi.org/10.1111/j.1468-0394.2012.00625.x +José García Rodríguez,"Expert systems: Special issue on ""Machine Learning Methods Neural Networks applied to Vision and Robotics (MLMVR)"".",2018,35,Expert Systems,2,db/journals/es/es35.html#RodriguezEPGLL18,https://doi.org/10.1111/exsy.12258 +Ran M. Bittmann,Decision-making method using a visual approach for cluster analysis problems* indicative classification algorithms and grouping scope.,2007,24,Expert Systems,3,db/journals/es/es24.html#BittmannG07,https://doi.org/10.1111/j.1468-0394.2007.00428.x +Hong Xing Li,Representing diverse mathematical problems using neural networks in hybrid intelligent systems.,1999,16,Expert Systems,4,db/journals/es/es16.html#LiL99,https://doi.org/10.1111/1468-0394.00118 +Wieslaw Chmielnicki,An improved protein fold recognition with support vector machines.,2012,29,Expert Systems,2,db/journals/es/es29.html#ChmielnickiRS12,https://doi.org/10.1111/j.1468-0394.2010.00572.x +David Ming-Huang Chiang,Data mining based storage assignment heuristics for travel distance reduction.,2014,31,Expert Systems,1,db/journals/es/es31.html#ChiangLC14,https://doi.org/10.1111/exsy.12006 +Necdet Süt,Assessment of the performances of multilayer perceptron neural networks in comparison with recurrent neural networks and two statistical methods for diagnosing coronary artery disease.,2007,24,Expert Systems,3,db/journals/es/es24.html#SutS07,https://doi.org/10.1111/j.1468-0394.2007.00425.x +Pragya Dwivedi,e-Learning recommender system for a group of learners based on the unified learner profile approach.,2015,32,Expert Systems,2,db/journals/es/es32.html#DwivediB15,https://doi.org/10.1111/exsy.12061 +Petter Gottschalk,Stages of knowledge management technology in the value shop: the case of police investigation performance.,2006,23,Expert Systems,4,db/journals/es/es23.html#GottschalkH06,https://doi.org/10.1111/j.1468-0394.2006.00400.x +Olga C. Santos,User-centred design and educational data mining support during the recommendations elicitation process in social online learning environments.,2015,32,Expert Systems,2,db/journals/es/es32.html#SantosB15,https://doi.org/10.1111/exsy.12041 +Florin Gorunescu,Competitive/collaborative neural computing system for medical diagnosis in pancreatic cancer detection.,2011,28,Expert Systems,1,db/journals/es/es28.html#GorunescuGSVB11,https://doi.org/10.1111/j.1468-0394.2010.00540.x +ângelo Costa,Advances and trends for the development of ambient-assisted living platforms.,2017,34,Expert Systems,2,db/journals/es/es34.html#CostaJN17,https://doi.org/10.1111/exsy.12163 +S. K. Tso,Development of a fuzzy push delivery scheme for Internet sites.,1999,16,Expert Systems,2,db/journals/es/es16.html#TsoLI99,https://doi.org/10.1111/1468-0394.00099 +Francisco Javier Díaz Pernas,Multiple scale neural architecture for enhancing regions in the colour image segmentation process.,2011,28,Expert Systems,1,db/journals/es/es28.html#Diaz-PernasAMHOB11,https://doi.org/10.1111/j.1468-0394.2010.00543.x +Pedro Terras Crespo,Predicting teamwork results from social network analysis.,2015,32,Expert Systems,2,db/journals/es/es32.html#CrespoA15,https://doi.org/10.1111/exsy.12038 +Erdem Alparslan,Security-level classification for confidential documents by using adaptive neuro-fuzzy inference systems.,2013,30,Expert Systems,3,db/journals/es/es30.html#AlparslanKB13,https://doi.org/10.1111/j.1468-0394.2012.00634.x +Ndedi D. Monekosso,The analysis and performance evaluation of the pheromone-Q-learning algorithm.,2004,21,Expert Systems,2,db/journals/es/es21.html#MonekossoR04,https://doi.org/10.1111/j.1468-0394.2004.00265.x +Stefanie Betz,Knowledge transfer in offshore outsourcing software development projects: an analysis of the challenges and solutions from German clients.,2014,31,Expert Systems,3,db/journals/es/es31.html#BetzOS14,https://doi.org/10.1111/exsy.12005 +Sami J. Habib,A bio-inspired tool for managing resilience in enterprise networks with embedded intelligent formulation.,2018,35,Expert Systems,1,db/journals/es/es35.html#HabibM18,https://doi.org/10.1111/exsy.12208 +Wojciech Ziarko,Acquisition of hierarchy-structured probabilistic decision tables and rules from data.,2003,20,Expert Systems,5,db/journals/es/es20.html#Ziarko03,https://doi.org/10.1111/1468-0394.00255 +Antony Browne,Editorial: Symbol processing in connectionist systems.,2000,17,Expert Systems,1,db/journals/es/es17.html#Browne00,https://doi.org/10.1111/1468-0394.00122 +Subhagata Chattopadhyay,A Case-Based Reasoning system for complex medical diagnosis.,2013,30,Expert Systems,1,db/journals/es/es30.html#ChattopadhyayBRA13,https://doi.org/10.1111/j.1468-0394.2012.00618.x +Carlos Márquez-Vera,Early dropout prediction using data mining: a case study with high school students.,2016,33,Expert Systems,1,db/journals/es/es33.html#Marquez-Vera0RN16,https://doi.org/10.1111/exsy.12135 +Jim Prentzas,Categorizing approaches combining rule-based and case-based reasoning.,2007,24,Expert Systems,2,db/journals/es/es24.html#PrentzasH07,https://doi.org/10.1111/j.1468-0394.2007.00423.x +Aviad Barak,Classification by clustering using an extended saliency measure.,2016,33,Expert Systems,1,db/journals/es/es33.html#BarakG16,https://doi.org/10.1111/exsy.12121 +Chandra S. Amaravadi,Knowledge management for administrative knowledge.,2005,22,Expert Systems,2,db/journals/es/es22.html#Amaravadi05,https://doi.org/10.1111/j.1468-0394.2005.00294.x +Wei Yan 0001,A Web-enabled product definition and customization system for product conceptualization.,2005,22,Expert Systems,5,db/journals/es/es22.html#YanCK05,https://doi.org/10.1111/j.1468-0394.2005.00315.x +Ohbyung Kwon,A relationship-aware methodology for context-aware service selection.,2011,28,Expert Systems,4,db/journals/es/es28.html#KwonL11,https://doi.org/10.1111/j.1468-0394.2010.00548.x +Antonio Fernández-Caballero,Gerontechnologies - Current achievements and future trends.,2017,34,Expert Systems,2,db/journals/es/es34.html#Fernandez-Caballero17,https://doi.org/10.1111/exsy.12203 +Juan José Pantrigo,Heuristic particle filter: applying abstraction techniques to the design of visual tracking algorithms.,2011,28,Expert Systems,1,db/journals/es/es28.html#PantrigoSM11,https://doi.org/10.1111/j.1468-0394.2010.00541.x +Mei Zhang,A rough set approach to knowledge reduction based on inclusion degree and evidence reasoning theory.,2003,20,Expert Systems,5,db/journals/es/es20.html#ZhangXZL03,https://doi.org/10.1111/1468-0394.00254 +Haixian Wang,Semi-supervised classification of facial expression using a mixture of multivariate t distributions.,2011,28,Expert Systems,1,db/journals/es/es28.html#Wang11,https://doi.org/10.1111/j.1468-0394.2010.00539.x +Jianyuan Yan,A model of a decision support system based on case-based reasoning for third-party logistics evaluation.,2003,20,Expert Systems,4,db/journals/es/es20.html#YanCC03,https://doi.org/10.1111/1468-0394.00244 +Silvano Mussi,Providing Websites with capabilities of one-to-one marketing.,2003,20,Expert Systems,1,db/journals/es/es20.html#Mussi03,https://doi.org/10.1111/1468-0394.00220 +Ivan Mistrík,Knowledge engineering in global software development environments.,2014,31,Expert Systems,3,db/journals/es/es31.html#MistrikBRA14,https://doi.org/10.1111/exsy.12060 +Li D. Xu,Editorial.,1999,16,Expert Systems,4,db/journals/es/es16.html#Xu99,https://doi.org/10.1111/1468-0394.00113 +Yong Liu,Variable precision intuitionistic fuzzy rough set model and applications based on conflict distance.,2015,32,Expert Systems,2,db/journals/es/es32.html#LiuLZ15,https://doi.org/10.1111/exsy.12083 +German L. Vazquez,A case-based reasoning approach to derive object-oriented models from software architectures.,2010,27,Expert Systems,4,db/journals/es/es27.html#VazquezPC10,https://doi.org/10.1111/j.1468-0394.2010.00533.x +Wei Yan 0001,A Radial Basis Function Neural Network Multicultural Factors Evaluation Engine For Product Concept Development.,2001,18,Expert Systems,5,db/journals/es/es18.html#YanCK01,https://doi.org/10.1111/1468-0394.00177 +Shuen-Tai Ung,A novel maritime risk assessment model incorporating a fuzzy rule-based approach.,2014,31,Expert Systems,5,db/journals/es/es31.html#Ung14,https://doi.org/10.1111/exsy.12052 +Mehdi Sagheb-Tehrani,The design process of expert systems development: some concerns.,2006,23,Expert Systems,2,db/journals/es/es23.html#Sagheb-Tehrani06,https://doi.org/10.1111/j.1468-0394.2006.00328.x +Héctor Rodríguez,Qualitative bifurcation diagrams.,2014,31,Expert Systems,4,db/journals/es/es31.html#RodriguezFFP14,https://doi.org/10.1111/exsy.12043 +Lon-Chen Hung,Fuzzy sliding-mode control with rule adaptation for nonlinear systems.,2006,23,Expert Systems,4,db/journals/es/es23.html#HungC06,https://doi.org/10.1111/j.1468-0394.2006.00403.x +Cláudia M. V. Silvestre,Feature selection for clustering categorical data with an embedded modelling approach.,2015,32,Expert Systems,3,db/journals/es/es32.html#SilvestreCF15,https://doi.org/10.1111/exsy.12082 +Jay M. Lightfoot,Expert knowledge acquisition and the unwilling expert: a knowledge engineering perspective.,1999,16,Expert Systems,3,db/journals/es/es16.html#Lightfoot99,https://doi.org/10.1111/1468-0394.00104 +Isidoros Perikos,Automatic estimation of exercises' difficulty levels in a tutoring system for teaching the conversion of natural language into first-order logic.,2016,33,Expert Systems,6,db/journals/es/es33.html#PerikosGKH16,https://doi.org/10.1111/exsy.12182 +Ken Maynard,Modeling expert problem solving in a game of chance: a Yahtzee©* case study.,2001,18,Expert Systems,2,db/journals/es/es18.html#MaynardMWNGBKK01,https://doi.org/10.1111/1468-0394.00160 +Peter H. Morgan,Comparing neural network approximations for different functional forms.,1999,16,Expert Systems,2,db/journals/es/es16.html#MorganCB99,https://doi.org/10.1111/1468-0394.00096 +David Soud,A fuzzy approach to active usage parameter control in IEEE 802.11b wireless networks.,2004,21,Expert Systems,5,db/journals/es/es21.html#SoudK04,https://doi.org/10.1111/j.1468-0394.2004.00284.x +Andrzej Wolczowski,Human-machine interface in bioprosthesis control using EMG signal classification.,2010,27,Expert Systems,1,db/journals/es/es27.html#WolczowskiK10,https://doi.org/10.1111/j.1468-0394.2009.00526.x +Sina Zarei Mahmoodabadi,A fast expert system for electrocardiogram arrhythmia detection.,2010,27,Expert Systems,3,db/journals/es/es27.html#MahmoodabadiAABA10,https://doi.org/10.1111/j.1468-0394.2010.00518.x +Dimitris C. Dracopoulos,Genetic programming for the minimum time swing up and balance control acrobot problem.,2017,34,Expert Systems,5,db/journals/es/es34.html#DracopoulosN17,https://doi.org/10.1111/exsy.12115 +Chiew Foong Kwong,An adaptive fuzzy handover triggering approach for Long-Term Evolution network.,2016,33,Expert Systems,1,db/journals/es/es33.html#KwongCTA16,https://doi.org/10.1111/exsy.12120 +Silvano Mussi,User profiling on the Web based on deep knowledge and sequential questioning.,2006,23,Expert Systems,1,db/journals/es/es23.html#Mussi06,https://doi.org/10.1111/j.1468-0394.2006.00322.x +David J. Russomanno,Expressing inter-link constraints in OWL knowledge bases.,2004,21,Expert Systems,4,db/journals/es/es21.html#RussomannoK04,https://doi.org/10.1111/j.1468-0394.2004.00279.x +Paolo Massimo Buscema,Genetic doping algorithm (GenD): theory and applications.,2004,21,Expert Systems,2,db/journals/es/es21.html#Buscema04,https://doi.org/10.1111/j.1468-0394.2004.00264.x +Rung-Ching Chen,Automating construction of a domain ontology using a projective adaptive resonance theory neural network and Bayesian network.,2008,25,Expert Systems,4,db/journals/es/es25.html#ChenC08,https://doi.org/10.1111/j.1468-0394.2008.00476.x +Sohail S. Chaudhry,Solving a class of facility location problems using genetic algorithms.,2003,20,Expert Systems,2,db/journals/es/es20.html#ChaudhryHC03,https://doi.org/10.1111/1468-0394.00229 +Katherine Deibel,Using edit distance to analyze card sorts.,2005,22,Expert Systems,3,db/journals/es/es22.html#DeibelAA05,https://doi.org/10.1111/j.1468-0394.2005.00304.x +Recep Demirci,Fuzzy adaptive anisotropic filter for medical images.,2010,27,Expert Systems,3,db/journals/es/es27.html#Demirci10,https://doi.org/10.1111/j.1468-0394.2010.00525.x +Maysam Orouskhani,Fuzzy adaptive cat swarm algorithm and Borda method for solving dynamic multi-objective problems.,2018,35,Expert Systems,4,db/journals/es/es35.html#OrouskhaniS18,https://doi.org/10.1111/exsy.12286 +Jon G. Hall,1983 and all that.,2009,26,Expert Systems,1,db/journals/es/es26.html#Hall09,https://doi.org/10.1111/j.1468-0394.2009.00514.x +Israel González-Carrasco,Towards a framework for multiple artificial neural network topologies validation by means of statistics.,2014,31,Expert Systems,1,db/journals/es/es31.html#Gonzalez-CarrascoGRCP14,https://doi.org/10.1111/j.1468-0394.2012.00653.x +Jan Géryk,Visual analytics of educational time-dependent data using interactive dynamic visualization.,2017,34,Expert Systems,1,db/journals/es/es34.html#Geryk17,https://doi.org/10.1111/exsy.12175 +Shang-Yu Chen,Assessing the competitiveness of insurance corporations using fuzzy correlation analysis and improved fuzzy modified TOPSIS.,2015,32,Expert Systems,3,db/journals/es/es32.html#ChenL15a,https://doi.org/10.1111/exsy.12099 +Diego álvarez-Estévez,Revisiting the Wang-Mendel algorithm for fuzzy classification.,2018,35,Expert Systems,4,db/journals/es/es35.html#Alvarez-Estevez18,https://doi.org/10.1111/exsy.12268 +Chih-Fong Tsai,Financial decision support using neural networks and support vector machines.,2008,25,Expert Systems,4,db/journals/es/es25.html#Tsai08,https://doi.org/10.1111/j.1468-0394.2008.00449.x +Yoon-Joo Park,New knowledge extraction technique using probability for case-based reasoning: application to medical diagnosis.,2006,23,Expert Systems,1,db/journals/es/es23.html#ParkKC06,https://doi.org/10.1111/j.1468-0394.2006.00321.x +Bo Sun,Scenario-based knowledge representation in case-based reasoning systems.,2003,20,Expert Systems,2,db/journals/es/es20.html#SunXPL03,https://doi.org/10.1111/1468-0394.00230 +Alejandro Maté,The improvement of analytics in massive open online courses by applying data mining techniques.,2016,33,Expert Systems,4,db/journals/es/es33.html#MateGCTL16,https://doi.org/10.1111/exsy.12119 +Elif Derya übeyli,Probabilistic neural networks combined with wavelet coefficients for analysis of electroencephalogram signals.,2009,26,Expert Systems,2,db/journals/es/es26.html#Ubeyli09a,https://doi.org/10.1111/j.1468-0394.2009.00468.x +Se-Hak Chun,Chaotic analysis of predictability versus knowledge discovery techniques: case study of the Polish stock market.,2002,19,Expert Systems,5,db/journals/es/es19.html#ChunKK02,https://doi.org/10.1111/1468-0394.00213 +Antony Browne,Symbol processing - a challenge for neural networks?,1999,16,Expert Systems,2,db/journals/es/es16.html#Browne99,https://doi.org/10.1111/1468-0394.00095 +Sina Zarei Mahmoodabadi,A Novel mCAD for pediatric metabolic brain diseases incorporating DW imaging and MR spectroscopy.,2013,30,Expert Systems,1,db/journals/es/es30.html#MahmoodabadiABKW13,https://doi.org/10.1111/j.1468-0394.2012.00619.x +Ming-Hau Tsai,Modified Smith predictor with a robust disturbance reduction scheme for linear systems with small time delays.,2012,29,Expert Systems,4,db/journals/es/es29.html#TsaiT12,https://doi.org/10.1111/j.1468-0394.2011.00612.x +Baptiste Cable,Using simple scenarios for wheelchair driving assistance.,2013,30,Expert Systems,3,db/journals/es/es30.html#CableLN13,https://doi.org/10.1111/j.1468-0394.2012.00636.x +E. W. T. Ngai,ICADS: Intelligent Car Audio Design System for product planning.,1999,16,Expert Systems,1,db/journals/es/es16.html#NgaiC99,https://doi.org/10.1111/1468-0394.00089 +Seyed Mostafa Fakhrahmad,A proposed expert system for word sense disambiguation: deductive ambiguity resolution based on data mining and forward chaining.,2015,32,Expert Systems,2,db/journals/es/es32.html#FakhrahmadSJ15,https://doi.org/10.1111/exsy.12075 +Yigit Kultur,Hybrid approaches for detecting credit card fraud.,2017,34,Expert Systems,2,db/journals/es/es34.html#KulturC17,https://doi.org/10.1111/exsy.12191 +Gordon Rugg,Editorial.,2002,19,Expert Systems,5,db/journals/es/es19.html#Rugg02,https://doi.org/10.1111/j.1600-0625.1998.tb00301.x-i1 +Keeley A. Crockett,Genetic tuning of fuzzy inference within fuzzy classifier systems.,2006,23,Expert Systems,2,db/journals/es/es23.html#CrockettBFO06,https://doi.org/10.1111/j.1468-0394.2006.00325.x +William P. Wagner,Selection of knowledge acquisition techniques based upon the problem domain characteristics of production and operations management expert systems.,2001,18,Expert Systems,2,db/journals/es/es18.html#WagnerNC01,https://doi.org/10.1111/1468-0394.00159 +Shuang Yang,Neural network ensembles: combining multiple models for enhanced performance using a multistage approach.,2004,21,Expert Systems,5,db/journals/es/es21.html#YangB04,https://doi.org/10.1111/j.1468-0394.2004.00285.x +Paulo Cortez 0001,Knowledge Discovery and Business Intelligence.,2013,30,Expert Systems,4,db/journals/es/es30.html#CortezS13,https://doi.org/10.1111/exsy.12042 +Silvano Mussi,Putting value of information theory into practice: a methodology for building sequential decision support systems.,2004,21,Expert Systems,2,db/journals/es/es21.html#Mussi04,https://doi.org/10.1111/j.1468-0394.2004.00266.x +H. B. Kazemian,Guest Editorial: Fuzzy Control Systems.,2002,19,Expert Systems,1,db/journals/es/es19.html#Kazemian02,https://doi.org/10.1111/1468-0394.00183 +Li Xu,Advances in intelligent information processing.,2006,23,Expert Systems,5,db/journals/es/es23.html#Xu06,https://doi.org/10.1111/j.1468-0394.2006.00405.x +Karan Veer,Analysis and recognition of operations using SEMG from upper arm muscles.,2017,34,Expert Systems,6,db/journals/es/es34.html#VeerV17,https://doi.org/10.1111/exsy.12221 +Bhaskar Chakraborty,Human action recognition using an ensemble of body-part detectors.,2013,30,Expert Systems,2,db/journals/es/es30.html#ChakrabortyBGR13,https://doi.org/10.1111/j.1468-0394.2011.00610.x +Paulo Cortez 0001,Recent advances on knowledge discovery and business intelligence.,2015,32,Expert Systems,3,db/journals/es/es32.html#CortezS15,https://doi.org/10.1111/exsy.12087 +James D. Jones,A different paradigm for expert systems: an introduction to logic programming and related knowledge representation issues.,2006,23,Expert Systems,5,db/journals/es/es23.html#Jones06,https://doi.org/10.1111/j.1468-0394.2006.00415.x +Nishant Gupta,Intelligent heart disease prediction in cloud environment through ensembling.,2017,34,Expert Systems,3,db/journals/es/es34.html#GuptaAMBK17,https://doi.org/10.1111/exsy.12207 +Paolo Massimo Buscema,Feedforward networks in financial predictions: the future that modifies the present.,2000,17,Expert Systems,3,db/journals/es/es17.html#BuscemaS00,https://doi.org/10.1111/1468-0394.00137 +Graciela Brusa,Towards ontological engineering: a process for building a domain ontology from scratch in public administration.,2008,25,Expert Systems,5,db/journals/es/es25.html#BrusaCC08,https://doi.org/10.1111/j.1468-0394.2008.00471.x +Guisheng Zhang,Forecasting financial time series using a methodology based on autoregressive integrated moving average and Taylor expansion.,2016,33,Expert Systems,5,db/journals/es/es33.html#ZhangZF16,https://doi.org/10.1111/exsy.12164 +Elif Derya übeyli,Comparison of different classification algorithms in clinical decision-making.,2007,24,Expert Systems,1,db/journals/es/es24.html#Ubeyli07,https://doi.org/10.1111/j.1468-0394.2007.00418.x +Patrick Reignier,Context-aware environments: from specification to implementation.,2007,24,Expert Systems,5,db/journals/es/es24.html#ReignierBVCM07,https://doi.org/10.1111/j.1468-0394.2007.00436.x +H. B. Kazemian,Guest Editorial: Fuzzy logic applications.,2002,19,Expert Systems,4,db/journals/es/es19.html#Kazemian02a,https://doi.org/10.1111/1468-0394.00203 +Gordon Rugg,Foreword.,1999,16,Expert Systems,2,db/journals/es/es16.html#Rugg99,https://doi.org/10.1111/1468-0394.00094 +Daniel J. Fonseca,A knowledge-based system for preventive maintenance.,2000,17,Expert Systems,5,db/journals/es/es17.html#Fonseca00,https://doi.org/10.1111/1468-0394.00146 +Yuhua Qian,Partial ordering of information granulations: a further investigation.,2012,29,Expert Systems,1,db/journals/es/es29.html#QianDLW12,https://doi.org/10.1111/j.1468-0394.2010.00551.x +Henry C. W. Lau,An intelligent logistics support system for enhancing the airfreight forwarding business.,2004,21,Expert Systems,5,db/journals/es/es21.html#LauCLTC04,https://doi.org/10.1111/j.1468-0394.2004.00283.x +Majid Ghaniee Zarch,Generalization of parity space to fault detection based on Takagi-Sugeno fuzzy models for non-linear dynamic systems.,2018,35,Expert Systems,1,db/journals/es/es35.html#ZarchS18,https://doi.org/10.1111/exsy.12228 +Rayanallur S. Ranganathan,Fuzzy predictive PI control for processes with large time delays.,2002,19,Expert Systems,1,db/journals/es/es19.html#RanganathanMC02,https://doi.org/10.1111/1468-0394.00186 +Lin Feng,Knowledge acquisition in vague objective information systems based on rough sets.,2010,27,Expert Systems,2,db/journals/es/es27.html#FengWL10,https://doi.org/10.1111/j.1468-0394.2010.00512.x +Ali Iskurt,Extraction of media and plaque boundaries in intravascular ultrasound images by level sets and min/max flow.,2010,27,Expert Systems,2,db/journals/es/es27.html#IskurtB10,https://doi.org/10.1111/j.1468-0394.2010.00510.x +Hadi Fanaee-T,Eigenspace method for spatiotemporal hotspot detection.,2015,32,Expert Systems,3,db/journals/es/es32.html#Fanaee-TG15,https://doi.org/10.1111/exsy.12088 +Nuno Cavalheiro Marques,Analysis of a token density metric for concern detection in Matlab sources using UbiSOM.,2018,35,Expert Systems,4,db/journals/es/es35.html#MarquesMS18,https://doi.org/10.1111/exsy.12306 +Bhekisipho Twala,Extracting grey relational systems from incomplete road traffic accidents data: the case of Gauteng Province in South Africa.,2014,31,Expert Systems,3,db/journals/es/es31.html#Twala14,https://doi.org/10.1111/exsy.12035 +Gordon Rugg,Editorial.,2002,19,Expert Systems,1,db/journals/es/es19.html#RuggM02,https://doi.org/10.1111/1468-0394.00035-i2 +Saibal Dutta,An automated hierarchical gait pattern identification tool employing cross-correlation-based feature extraction and recurrent neural network based classification.,2009,26,Expert Systems,2,db/journals/es/es26.html#DuttaCM09,https://doi.org/10.1111/j.1468-0394.2009.00479.x +Chien-Hsing Wu 0001,GDKAT: A goal-driven knowledge acquisition tool for knowledge base development.,2000,17,Expert Systems,2,db/journals/es/es17.html#WuKS00,https://doi.org/10.1111/1468-0394.00131 +Subhagata Chattopadhyay,Neurofuzzy models to automate the grading of old-age depression.,2014,31,Expert Systems,1,db/journals/es/es31.html#Chattopadhyay14,https://doi.org/10.1111/exsy.12000 +Athena Tocatlidou,Reasoning under uncertainty for plant disease diagnosis.,2002,19,Expert Systems,1,db/journals/es/es19.html#TocatlidouPSY02,https://doi.org/10.1111/1468-0394.00188 +Laurent Lefort,An empirical comparison of scalable part-whole ontology engineering patterns.,2008,25,Expert Systems,3,db/journals/es/es25.html#LefortTR08,https://doi.org/10.1111/j.1468-0394.2008.00459.x +Shahriar Afandizadeh Zargari,A computational intelligence-based approach for short-term traffic flow prediction.,2012,29,Expert Systems,2,db/journals/es/es29.html#ZargariSAG12,https://doi.org/10.1111/j.1468-0394.2010.00567.x +Maria Lencastre,Towards aspectual problem frames: an example.,2008,25,Expert Systems,1,db/journals/es/es25.html#LencastreAMC08,https://doi.org/10.1111/j.1468-0394.2008.00453.x +Luís Baía,A comparative study of approaches to forecast the correct trading actions.,2017,34,Expert Systems,1,db/journals/es/es34.html#BaiaT17,https://doi.org/10.1111/exsy.12169 +Alireza Amirteimoori,Data envelopment analysis with discrete-valued inputs and outputs.,2014,31,Expert Systems,4,db/journals/es/es31.html#AmirteimooriK14,https://doi.org/10.1111/exsy.12045 +Paulo Cortez 0001,Fourth special issue on knowledge discovery and business intelligence.,2018,35,Expert Systems,4,db/journals/es/es35.html#CortezS18,https://doi.org/10.1111/exsy.12314 +Timothy V. Fossum,Measuring card sort orthogonality.,2005,22,Expert Systems,3,db/journals/es/es22.html#FossumH05,https://doi.org/10.1111/j.1468-0394.2005.00305.x +Tod A. Sedbrook,Integrating E-Business XML Business Forms and Rule-Based Agent Technologies.,2001,18,Expert Systems,5,db/journals/es/es18.html#Sedbrook01,https://doi.org/10.1111/1468-0394.00179 +Jon G. Hall,Thinking inside the box.,2010,27,Expert Systems,2,db/journals/es/es27.html#Hall10a,https://doi.org/10.1111/j.1468-0394.2010.00556.x +Wen-Hsiang Lai,Exploring the relationship between system development life cycle and knowledge accumulation in Taiwan's IT industry.,2013,30,Expert Systems,2,db/journals/es/es30.html#LaiT13,https://doi.org/10.1111/j.1468-0394.2012.00630.x +Márcia D. B. Oliveira,Visualization of evolving social networks using actor-level and community-level trajectories.,2013,30,Expert Systems,4,db/journals/es/es30.html#OliveiraG13,https://doi.org/10.1111/exsy.12028 +Paula Branco,Resampling with neighbourhood bias on imbalanced domains.,2018,35,Expert Systems,4,db/journals/es/es35.html#BrancoTR18,https://doi.org/10.1111/exsy.12311 +Chris Cornelis,Intuitionistic fuzzy rough sets: at the crossroads of imperfect knowledge.,2003,20,Expert Systems,5,db/journals/es/es20.html#CornelisCK03,https://doi.org/10.1111/1468-0394.00250 +Liang-Chuan Wu,Tracking a benchmark index - using a spreadsheet-based decision support system as the driver.,2013,30,Expert Systems,1,db/journals/es/es30.html#WuW13,https://doi.org/10.1111/j.1468-0394.2012.00624.x +George K. I. Mann,Adaptive hierarchical tuning of fuzzy controllers.,2002,19,Expert Systems,1,db/journals/es/es19.html#MannG02,https://doi.org/10.1111/1468-0394.00187 +Jim Prentzas,Incrementally updating a hybrid rule base based on empirical data.,2007,24,Expert Systems,4,db/journals/es/es24.html#PrentzasH07a,https://doi.org/10.1111/j.1468-0394.2007.00430.x +Nico Schlitter,DenGraph-HO: a density-based hierarchical graph clustering algorithm.,2014,31,Expert Systems,5,db/journals/es/es31.html#SchlitterFL14,https://doi.org/10.1111/exsy.12046 +Hanu Bhardwaj,Eliciting and structuring business indicators in data warehouse requirements engineering.,2016,33,Expert Systems,4,db/journals/es/es33.html#BhardwajP16,https://doi.org/10.1111/exsy.12165 +Mahyar Taghizadeh Nouei,Fuzzy risk assessment of mortality after coronary surgery using combination of adaptive neuro-fuzzy inference system and K-means clustering.,2016,33,Expert Systems,3,db/journals/es/es33.html#NoueiKSG16,https://doi.org/10.1111/exsy.12145 +Lanting Fang,Personalized question recommendation for English grammar learning.,2018,35,Expert Systems,2,db/journals/es/es35.html#FangTHW18,https://doi.org/10.1111/exsy.12244 +Juan Gómez-Romero,Communication in distributed tracking systems: an ontology-based approach to improve cooperation.,2011,28,Expert Systems,4,db/journals/es/es28.html#Gomez-RomeroPGM11,https://doi.org/10.1111/j.1468-0394.2011.00600.x +Zongbin Li,Intelligent systems research in China.,2003,20,Expert Systems,2,db/journals/es/es20.html#LiZ03,https://doi.org/10.1111/1468-0394.00225 +Tingting Mu,Automatic tuning of L2-SVM parameters employing the extended Kalman filter.,2009,26,Expert Systems,2,db/journals/es/es26.html#MuN09,https://doi.org/10.1111/j.1468-0394.2009.00469.x +Vasilios Zarikas,Bayesian network construction using a fuzzy rule based approach for medical decision support.,2015,32,Expert Systems,3,db/journals/es/es32.html#ZarikasPR15,https://doi.org/10.1111/exsy.12089 +Karl Thurnhofer-Hemsi,Panorama construction for PTZ camera surveillance with the neural gas network.,2018,35,Expert Systems,2,db/journals/es/es35.html#Thurnhofer-Hemsi18,https://doi.org/10.1111/exsy.12249 +Daniel Neagu,Special issue on innovative techniques and applications of artificial intelligence.,2014,31,Expert Systems,5,db/journals/es/es31.html#Neagu14,https://doi.org/10.1111/exsy.12048 +David Biggs,Providing developmental feedback to individuals from different ethnic minority groups using expert systems.,2008,25,Expert Systems,2,db/journals/es/es25.html#BiggsS08,https://doi.org/10.1111/j.1468-0394.2008.00440.x +Hakan Altiotançay,Improving the k-nearest neighbour rule: using geometrical neighbourhoods and manifold-based metrics.,2011,28,Expert Systems,4,db/journals/es/es28.html#Altiotancay11,https://doi.org/10.1111/j.1468-0394.2010.00549.x +Sevastianos E. Chatzistergos,Identification of architectural distortions in mammograms using local binary patterns and radial lengths through an exhaustive evaluation framework.,2018,35,Expert Systems,4,db/journals/es/es35.html#ChatzistergosAN18,https://doi.org/10.1111/exsy.12281 +Eriks Sneiders,Automated email answering by text-pattern matching: Performance and error analysis.,2018,35,Expert Systems,1,db/journals/es/es35.html#SneidersSA18,https://doi.org/10.1111/exsy.12251 +Ali Fallah Tehrani,Modified sequential k-means clustering by utilizing response: A case study for fashion products.,2017,34,Expert Systems,6,db/journals/es/es34.html#TehraniA17,https://doi.org/10.1111/exsy.12226 +Luís Torgo,Resampling strategies for regression.,2015,32,Expert Systems,3,db/journals/es/es32.html#TorgoBRP15,https://doi.org/10.1111/exsy.12081 +Hugo Gonçalo Oliveira,Towards the automatic enrichment of a thesaurus with information in dictionaries.,2013,30,Expert Systems,4,db/journals/es/es30.html#OliveiraG13a,https://doi.org/10.1111/exsy.12029 +Francisco J. Fernández-Luque,Ambient assisted living system with capacitive occupancy sensor.,2014,31,Expert Systems,4,db/journals/es/es31.html#Fernandez-LuqueMDZR14,https://doi.org/10.1111/exsy.12021 +Yang Xu,Measurement of enterprise knowledge by state characterization.,2010,27,Expert Systems,5,db/journals/es/es27.html#XuB10,https://doi.org/10.1111/j.1468-0394.2010.00554.x +Ricky W. K. Leung,On a responsive replenishment system: a fuzzy logic approach.,2003,20,Expert Systems,1,db/journals/es/es20.html#LeungLK03,https://doi.org/10.1111/1468-0394.00221 +Ann Blandford,Intelligent interaction design: the role of human-computer interaction research in the design of intelligent systems.,2001,18,Expert Systems,1,db/journals/es/es18.html#Blandford01,https://doi.org/10.1111/1468-0394.00151 +Mu-Chen Chen,Pattern filtering and classification for market basket analysis with profit-based measures.,2012,29,Expert Systems,2,db/journals/es/es29.html#ChenCW12,https://doi.org/10.1111/j.1468-0394.2010.00570.x +Tiffany Ya Tang,Recommender systems in social and online learning environments.,2015,32,Expert Systems,2,db/journals/es/es32.html#TangDR15,https://doi.org/10.1111/exsy.12058 +Rodrigo Cilla,Human action recognition with sparse classification and multiple-view learning.,2014,31,Expert Systems,4,db/journals/es/es31.html#CillaPBM14,https://doi.org/10.1111/exsy.12040 +Andrzej Wichert,Categorial expert systems.,2004,21,Expert Systems,1,db/journals/es/es21.html#Wichert04,https://doi.org/10.1111/j.1468-0394.2004.00261.x +Gordon Rugg,Editorial.,2001,18,Expert Systems,3,db/journals/es/es18.html#RuggM01a,https://doi.org/10.1111/1468-0394.00035-i3 +Mariantonieta Gutierrez Soto,Recent advances in control algorithms for smart structures and machines.,2017,34,Expert Systems,2,db/journals/es/es34.html#SotoA17,https://doi.org/10.1111/exsy.12205 +Chr Angeli,Integrating symbolic and numerical features for fault prediction and diagnosis by an expert system.,1999,16,Expert Systems,4,db/journals/es/es16.html#Angeli99a,https://doi.org/10.1111/1468-0394.00114 +Hannes Holm,Indicators of expert judgement and their significance: an empirical investigation in the area of cyber security.,2014,31,Expert Systems,4,db/journals/es/es31.html#HolmSEH14,https://doi.org/10.1111/exsy.12039 +Edward Tunstel,Rule-based reasoning and neural network perception for safe off-road robot mobility.,2002,19,Expert Systems,4,db/journals/es/es19.html#TunstelHS02,https://doi.org/10.1111/1468-0394.00204 +Piotr Sobolewski,SCR: simulated concept recurrence - a non-supervised tool for dealing with shifting concept.,2017,34,Expert Systems,5,db/journals/es/es34.html#SobolewskiW17,https://doi.org/10.1111/exsy.12059 +Seda Ozmutlu,Neural network applications for automatic new topic identification of FAST and Excite search engine transaction logs.,2011,28,Expert Systems,2,db/journals/es/es28.html#OzmutluOC11,https://doi.org/10.1111/j.1468-0394.2010.00531.x +Kalliopi Dalakleidi,Comparative assessment of statistical and machine learning techniques towards estimating the risk of developing type 2 diabetes and cardiovascular complications.,2017,34,Expert Systems,6,db/journals/es/es34.html#DalakleidiZTN17,https://doi.org/10.1111/exsy.12214 +Yudong Zhang,Fruit classification by biogeography-based optimization and feedforward neural network.,2016,33,Expert Systems,3,db/journals/es/es33.html#ZhangPWJYW16,https://doi.org/10.1111/exsy.12146 +Yi-Chung Chen,Neural skyline filter for accelerating skyline search algorithms.,2015,32,Expert Systems,1,db/journals/es/es32.html#ChenL15,https://doi.org/10.1111/exsy.12065 +Lihua Zhou,Decision-making under uncertainty through extending influence diagrams with interval-valued parameters.,2018,35,Expert Systems,4,db/journals/es/es35.html#ZhouLLR18,https://doi.org/10.1111/exsy.12277 +Chia-Hung Lin,Dissolved gases forecast to enhance oil-immersed transformer fault diagnosis with grey prediction-clustering analysis.,2011,28,Expert Systems,2,db/journals/es/es28.html#LinCH11,https://doi.org/10.1111/j.1468-0394.2010.00542.x +Luca Iocchi,Editorial to the 'pattern recognition and artificial intelligence for human behaviour analysis' special section.,2013,30,Expert Systems,2,db/journals/es/es30.html#IocchiPV13,https://doi.org/10.1111/exsy.12010 +Yahya Forghani,Classification of fuzzy data based on the support vector machines.,2013,30,Expert Systems,5,db/journals/es/es30.html#ForghaniYE13,https://doi.org/10.1111/j.1468-0394.2012.00645.x +Kanliang Wang,A fuzzy aggregation approach to group decision-making based on centroid measurement.,2006,23,Expert Systems,5,db/journals/es/es23.html#WangL06,https://doi.org/10.1111/j.1468-0394.2006.00412.x +D. K. Sreekantha,Expert system design for credit risk evaluation using neuro-fuzzy logic.,2012,29,Expert Systems,1,db/journals/es/es29.html#SreekanthaK12,https://doi.org/10.1111/j.1468-0394.2010.00562.x +Wenjuan Fan,A novel two-stage model for cloud service trustworthiness evaluation.,2014,31,Expert Systems,2,db/journals/es/es31.html#FanYP14,https://doi.org/10.1111/exsy.12017 +Susana Nascimento,Laplacian normalization for deriving thematic fuzzy clusters with an additive spectral approach.,2013,30,Expert Systems,4,db/journals/es/es30.html#NascimentoFM13,https://doi.org/10.1111/exsy.12027 +Francisco García-Sánchez 0001,Applying intelligent agents and semantic web services in eGovernment environments.,2011,28,Expert Systems,5,db/journals/es/es28.html#SanchezSMAVG11,https://doi.org/10.1111/j.1468-0394.2011.00586.x +Mohammad Tavassoli,Developing network data envelopment analysis model for supply chain performance measurement in the presence of zero data.,2015,32,Expert Systems,3,db/journals/es/es32.html#TavassoliSF15,https://doi.org/10.1111/exsy.12097 +Chih-Fong Tsai,Customer segmentation issues and strategies for an automobile dealership with two clustering techniques.,2015,32,Expert Systems,1,db/journals/es/es32.html#TsaiHL15,https://doi.org/10.1111/exsy.12056 +David J. Russomanno,A function-centered framework for reasoning about system failure at multiple levels of abstraction.,1999,16,Expert Systems,3,db/journals/es/es16.html#Russomanno99,https://doi.org/10.1111/1468-0394.00105 +Mustafa Karabulut,Identification of transcription factor binding sites using Gaussian mixture models.,2014,31,Expert Systems,1,db/journals/es/es31.html#KarabulutI14,https://doi.org/10.1111/exsy.12004 +Cheng-Fa Tsai,A new and efficient ant-based heuristic method for solving the traveling salesman problem.,2003,20,Expert Systems,4,db/journals/es/es20.html#TsaiTT03,https://doi.org/10.1111/1468-0394.00242 +Chr Angeli,An online expert system for fault diagnosis in hydraulic systems.,1999,16,Expert Systems,2,db/journals/es/es16.html#Angeli99,https://doi.org/10.1111/1468-0394.00100 +Kyong Joo Oh,An early warning system for detection of financial crisis using financial market volatility.,2006,23,Expert Systems,2,db/journals/es/es23.html#OhKK06,https://doi.org/10.1111/j.1468-0394.2006.00326.x +Juan Rafael Orozco-Arroyave,Spectral and cepstral analyses for Parkinson's disease detection in Spanish vowels and words.,2015,32,Expert Systems,6,db/journals/es/es32.html#Orozco-Arroyave15,https://doi.org/10.1111/exsy.12106 +Sarabjeet Singh Mehta,Detection and delineation of P and T waves in 12-lead electrocardiograms.,2009,26,Expert Systems,1,db/journals/es/es26.html#MehtaLS09,https://doi.org/10.1111/j.1468-0394.2008.00486.x +Saibal Majumder,Uncertainty based genetic algorithm with varying population for random fuzzy maximum flow problem.,2018,35,Expert Systems,4,db/journals/es/es35.html#MajumderSAKP18,https://doi.org/10.1111/exsy.12264 +Ruqian Lu,Automating application software generation.,2003,20,Expert Systems,2,db/journals/es/es20.html#LuJ03,https://doi.org/10.1111/1468-0394.00227 +Cheng-Yi Lin,Application of generally weighted moving average method to tracking signal state space model.,2013,30,Expert Systems,5,db/journals/es/es30.html#LinSHC13,https://doi.org/10.1111/j.1468-0394.2012.00647.x +Jay Liebowitz,Developing a neural network approach for intelligent scheduling in GUESS.,2000,17,Expert Systems,4,db/journals/es/es17.html#LiebowitzRZS00,https://doi.org/10.1111/1468-0394.00140 +Andrzej Kobryn,Processing technique of ratings for ranking of alternatives (PROTERRA).,2018,35,Expert Systems,4,db/journals/es/es35.html#KobrynP18,https://doi.org/10.1111/exsy.12279 +Ashfaqur Rahman,Cluster-based ensemble of classifiers.,2013,30,Expert Systems,3,db/journals/es/es30.html#RahmanV13,https://doi.org/10.1111/j.1468-0394.2012.00637.x +S. Jerritta,Electrocardiogram-based emotion recognition system using empirical mode decomposition and discrete Fourier transform.,2014,31,Expert Systems,2,db/journals/es/es31.html#SMKY14,https://doi.org/10.1111/exsy.12014 +Xian-Min Geng,Analysis and balance survey of discrete input-output systems under random environment.,2018,35,Expert Systems,2,db/journals/es/es35.html#GengLGC18,https://doi.org/10.1111/j.1468-0394.2011.00592.x +Qiaolin Ye,Iterative support vector machine with guaranteed accuracy and run time.,2010,27,Expert Systems,5,db/journals/es/es27.html#YeZYC10,https://doi.org/10.1111/j.1468-0394.2010.00550.x +Vanesa Espín,Nutrition for Elder Care: a nutritional semantic recommender system for the elderly.,2016,33,Expert Systems,2,db/journals/es/es33.html#EspinHN16,https://doi.org/10.1111/exsy.12143 +Agenor Toledo Fleury,An inference model for combustion diagnostics in an experimental oil furnace.,2018,35,Expert Systems,2,db/journals/es/es35.html#FleuryTPM18,https://doi.org/10.1111/exsy.12245 +Brenda Mak,A logic-based approach to rule induction in expert systems.,2003,20,Expert Systems,3,db/journals/es/es20.html#MakB03,https://doi.org/10.1111/1468-0394.00237 +Miguel Rodríguez-Artacho,Intelligence in educational environments.,2017,34,Expert Systems,4,db/journals/es/es34.html#Rodriguez-Artacho17,https://doi.org/10.1111/exsy.12216 +Damjan Kuznar,An intelligent system to monitor refrigeration devices.,2017,34,Expert Systems,5,db/journals/es/es34.html#KuznarPGGL17,https://doi.org/10.1111/exsy.12199 +Federico Castanedo,Learning routines over long-term sensor data using topic models.,2014,31,Expert Systems,4,db/journals/es/es31.html#CastanedoLAK14,https://doi.org/10.1111/exsy.12033 +Abdelrahman Osman Elfaki,A rule-based approach to detect and prevent inconsistency in the domain-engineering process.,2016,33,Expert Systems,1,db/journals/es/es33.html#Elfaki16,https://doi.org/10.1111/exsy.12116 +Dong Ha Kim,An early warning system for financial crisis using a stock market instability index.,2009,26,Expert Systems,3,db/journals/es/es26.html#KimLOK09,https://doi.org/10.1111/j.1468-0394.2009.00485.x +Rafael Martínez-Tomás,Intelligent monitoring for people assistance and safety.,2014,31,Expert Systems,4,db/journals/es/es31.html#Martinez-TomasFF14,https://doi.org/10.1111/exsy.12016 +Silvano Mussi,Sequential decision-theoretic models and expert systems.,2002,19,Expert Systems,2,db/journals/es/es19.html#Mussi02,https://doi.org/10.1111/1468-0394.00195 +Rafael Valencia-García,A knowledge acquisition methodology to ontology construction for information retrieval from medical documents.,2008,25,Expert Systems,3,db/journals/es/es25.html#Valencia-GarciaFRSM08,https://doi.org/10.1111/j.1468-0394.2008.00464.x +Farid Yaghouby,Robust genetic programming-based detection of atrial fibrillation using RR intervals.,2012,29,Expert Systems,2,db/journals/es/es29.html#YaghoubyABY12,https://doi.org/10.1111/j.1468-0394.2010.00571.x +Bekir Karliotak,Differentiating types of muscle movements using a wavelet based fuzzy clustering neural network.,2009,26,Expert Systems,1,db/journals/es/es26.html#KarliotakKK09,https://doi.org/10.1111/j.1468-0394.2008.00496.x +Marcela Vallejo,Neuromuscular disease detection by neural networks and fuzzy entropy on time-frequency analysis of electromyography signals.,2018,35,Expert Systems,4,db/journals/es/es35.html#VallejoGDD18,https://doi.org/10.1111/exsy.12274 +Divya Pandove,Correlation clustering methodologies and their fundamental results.,2018,35,Expert Systems,1,db/journals/es/es35.html#PandoveGR18,https://doi.org/10.1111/exsy.12229 +Yevgeniy Bodyanskiy,An adaptive learning algorithm for a wavelet neural network.,2005,22,Expert Systems,5,db/journals/es/es22.html#BodyanskiyLPV05,https://doi.org/10.1111/j.1468-0394.2005.00314.x +Jim Prentzas,Improving efficiency of merging symbolic rules into integrated rules: splitting methods and mergability criteria.,2015,32,Expert Systems,2,db/journals/es/es32.html#PrentzasH15,https://doi.org/10.1111/exsy.12085 +Iñigo Monedero,Datacab: a geographical-information-system-based expert system for the design of cable networks.,2008,25,Expert Systems,4,db/journals/es/es25.html#MonederoLDL08,https://doi.org/10.1111/j.1468-0394.2008.00445.x +Gabriella Spinelli,Multi-agent collaboration based on enhanced cognitive awareness: an architecture for agents' profiling on the semantic web.,2011,28,Expert Systems,5,db/journals/es/es28.html#SpinelliB11,https://doi.org/10.1111/j.1468-0394.2011.00593.x +Sameh A. Salem,Augmentation of a nearest neighbour clustering algorithm with a partial supervision strategy for biomedical data classification.,2009,26,Expert Systems,1,db/journals/es/es26.html#SalemSN09,https://doi.org/10.1111/j.1468-0394.2008.00502.x +Ugurhan Kutbay,Development of a multiprobe electrical resistivity tomography prototype system and robust underground clustering.,2017,34,Expert Systems,3,db/journals/es/es34.html#KutbayH17,https://doi.org/10.1111/exsy.12206 +Li-Hua Feng,Flood forecasting at the Dadu River in China based on ANN.,2013,30,Expert Systems,5,db/journals/es/es30.html#Feng13,https://doi.org/10.1111/j.1468-0394.2012.00644.x +Masoumeh Rezaei,Using the genetic algorithm to enhance nonnegative matrix factorization initialization.,2014,31,Expert Systems,3,db/journals/es/es31.html#RezaeiB14,https://doi.org/10.1111/exsy.12031 +Nouran M. Radwan,A new expert system for learning management systems evaluation based on neutrosophic sets.,2016,33,Expert Systems,6,db/journals/es/es33.html#RadwanSR16,https://doi.org/10.1111/exsy.12170 +Susan J. Chinn,Extending CLIPS to support temporal representation and reasoning.,1999,16,Expert Systems,2,db/journals/es/es16.html#ChinnM99,https://doi.org/10.1111/1468-0394.00097 +Serkan Balli,Development of a fuzzy decision support framework for complex multi-attribute decision problems: A case study for the selection of skilful basketball players.,2014,31,Expert Systems,1,db/journals/es/es31.html#BalliK14,https://doi.org/10.1111/exsy.12002 +Julián Flores,Knowledge-based system for telecontrol of anaerobic wastewater treatment plants.,2000,17,Expert Systems,2,db/journals/es/es17.html#FloresVD00,https://doi.org/10.1111/1468-0394.00129 +José Manuel Gascueña,Model-to-model and model-to-text: looking for the automation of VigilAgent.,2014,31,Expert Systems,3,db/journals/es/es31.html#GascuenaNFM14,https://doi.org/10.1111/exsy.12023 +Lun-Ping Hung,Discovering patterns of online purchasing behaviour and a new-product-launch strategy.,2012,29,Expert Systems,4,db/journals/es/es29.html#Hung12,https://doi.org/10.1111/j.1468-0394.2011.00613.x +Heather Heathfield,The rise and 'fall' of expert systems in medicine.,1999,16,Expert Systems,3,db/journals/es/es16.html#Heathfield99,https://doi.org/10.1111/1468-0394.00107 +Jon G. Hall,Engineering knowledge engineering.,2012,29,Expert Systems,5,db/journals/es/es29.html#Hall12c,https://doi.org/10.1111/exsy.12007 +Pilar Gómez-Rey,Ordinal regression by a gravitational model in the field of educational data mining.,2016,33,Expert Systems,2,db/journals/es/es33.html#Gomez-ReyFB16,https://doi.org/10.1111/exsy.12138 +Jon G. Hall,Editorial.,2013,30,Expert Systems,1,db/journals/es/es30.html#Hall13,https://doi.org/10.1111/exsy.12012 +Ching-Hsue Cheng,Fuzzy time series model based on weighted association rule for financial market forecasting.,2018,35,Expert Systems,4,db/journals/es/es35.html#ChengC18,https://doi.org/10.1111/exsy.12271 +Nick Z. Zacharis,A metagenetic algorithm for information filtering and collection from the World Wide Web.,2001,18,Expert Systems,2,db/journals/es/es18.html#ZacharisP01,https://doi.org/10.1111/1468-0394.00161 +Pedro Tiple,Ramex-Forum: a tool for displaying and analysing complex sequential patterns of financial products.,2017,34,Expert Systems,1,db/journals/es/es34.html#TipleCM17,https://doi.org/10.1111/exsy.12174 +J. Caleb Goodwin,Ontology integration within a service-oriented architecture for expert system applications using sensor networks.,2009,26,Expert Systems,5,db/journals/es/es26.html#GoodwinR09,https://doi.org/10.1111/j.1468-0394.2009.00505.x +Alkiviadis Tsimpiris,Feature selection for classification of oscillating time series.,2012,29,Expert Systems,5,db/journals/es/es29.html#TsimpirisK12,https://doi.org/10.1111/j.1468-0394.2011.00605.x +I-Ching Hsu,SAaaS: a cloud computing service model using semantic-based agent.,2015,32,Expert Systems,1,db/journals/es/es32.html#HsuC15,https://doi.org/10.1111/exsy.12063 +George T. S. Ho,Providing decision support for replenishment operations using a genetic algorithms based fuzzy system.,2015,32,Expert Systems,1,db/journals/es/es32.html#HoLCLL15,https://doi.org/10.1111/exsy.12053 +Necla Togun,Nonlinear identification of a spark ignition engine torque based on ANFIS with NARX method.,2016,33,Expert Systems,6,db/journals/es/es33.html#TogunB16,https://doi.org/10.1111/exsy.12172 +Gary P. Moynihan,A knowledge-based approach to maintenance project planning.,2002,19,Expert Systems,2,db/journals/es/es19.html#MoynihanBFR02,https://doi.org/10.1111/1468-0394.00194 +Y. T. McIntyre-Bhatty,Neural network analysis and the characteristics of market sentiment in the financial markets.,2000,17,Expert Systems,4,db/journals/es/es17.html#McIntyre-Bhatty00,https://doi.org/10.1111/1468-0394.00141 +Puteri N. E. Nohuddin,Trend mining in social networks: from trend identification to visualization.,2014,31,Expert Systems,5,db/journals/es/es31.html#NohuddinSCCS14,https://doi.org/10.1111/exsy.12024 +Angel Rivas Casado,Multi-agent system for knowledge-based event recognition and composition.,2011,28,Expert Systems,5,db/journals/es/es28.html#CasadoMF11,https://doi.org/10.1111/j.1468-0394.2011.00578.x +Kemal Polat,An improved approach to medical data sets classification: artificial immune recognition system with fuzzy resource allocation mechanism.,2007,24,Expert Systems,4,db/journals/es/es24.html#PolatG07,https://doi.org/10.1111/j.1468-0394.2007.00432.x +Leo Wanner,Getting the environmental information across: from the Web to the user.,2015,32,Expert Systems,3,db/journals/es/es32.html#WannerBBCEHJKKK15,https://doi.org/10.1111/exsy.12100 +Raffaele Filieri,Knowledge sourcing and knowledge reuse in the virtual product prototyping: an exploratory study in a large automotive supplier of R and D.,2015,32,Expert Systems,6,db/journals/es/es32.html#FilieriA15,https://doi.org/10.1111/exsy.12101 +Kenneth McGarry,Recent trends in knowledge and data integration for the life sciences.,2006,23,Expert Systems,5,db/journals/es/es23.html#McGarryGM06,https://doi.org/10.1111/j.1468-0394.2006.00414.x +Luís Cavique,A biobjective feature selection algorithm for large omics datasets.,2018,35,Expert Systems,4,db/journals/es/es35.html#CaviqueMMC18,https://doi.org/10.1111/exsy.12301 +Emilio Corchado,Optimizing the operating conditions in a high precision industrial process using soft computing techniques.,2012,29,Expert Systems,3,db/journals/es/es29.html#CorchadoSCV12,https://doi.org/10.1111/j.1468-0394.2011.00588.x +Marios Meimaris,A query language for multi-version data web archives.,2016,33,Expert Systems,4,db/journals/es/es33.html#MeimarisPVSPA16,https://doi.org/10.1111/exsy.12157 +Wai Ming Wang,Knowledge-based treatment planning for adolescent early intervention of mental healthcare: a hybrid case-based reasoning approach.,2007,24,Expert Systems,4,db/journals/es/es24.html#WangCLK07,https://doi.org/10.1111/j.1468-0394.2007.00431.x +Ping Luo,A heterogeneous computing system for data mining workflows in multi-agent environments.,2006,23,Expert Systems,5,db/journals/es/es23.html#LuoLHHS06,https://doi.org/10.1111/j.1468-0394.2006.00408.x +Y. Y. Yao,Probabilistic approaches to rough sets.,2003,20,Expert Systems,5,db/journals/es/es20.html#Yao03,https://doi.org/10.1111/1468-0394.00253 +Elif Derya übeyli,Implementing wavelet transform/mixture of experts network for analysis of electrocardiogram beats.,2008,25,Expert Systems,2,db/journals/es/es25.html#Ubeyli08,https://doi.org/10.1111/j.1468-0394.2008.00444.x +Vincent Cho,Data mining for selection of insurance sales agents.,2003,20,Expert Systems,3,db/journals/es/es20.html#ChoN03,https://doi.org/10.1111/1468-0394.00235 +Dennis Hooijmaijers,Trust-annotated ontology integration using social modelling.,2008,25,Expert Systems,3,db/journals/es/es25.html#HooijmaijersS08,https://doi.org/10.1111/j.1468-0394.2008.00458.x +Gordon Rugg,The Department of Trade and Industry's Smart Systems for Decision Makers initiative.,1999,16,Expert Systems,3,db/journals/es/es16.html#Rugg99a,https://doi.org/10.1111/1468-0394.00110 +Jim Prentzas,Assessment of life insurance applications: an approach integrating neuro-symbolic rule-based with case-based reasoning.,2016,33,Expert Systems,2,db/journals/es/es33.html#PrentzasH16,https://doi.org/10.1111/exsy.12137 +Henry C. W. Lau,Design and implementation of a process optimizer: a case study on monitoring molding operations.,2005,22,Expert Systems,1,db/journals/es/es22.html#LauLICL05,https://doi.org/10.1111/j.1468-0394.2005.00289.x +Theodore J. Everett,Analyticity Without Synonymy In Simple Comparative Logic.,2002,130,Synthese,2,db/journals/synthese/synthese130.html#Everett02,https://doi.org/10.1023/A:1014402110621 +Nick Huggett,The renormalisation group and effective field theories.,1995,102,Synthese,1,db/journals/synthese/synthese102.html#HuggettW95,https://doi.org/10.1007/BF01063904 +Valentin Goranko,Comparing Semantics of Logics for Multi-Agent Systems.,2004,139,Synthese,2,db/journals/synthese/synthese139.html#GorankoJ04,https://doi.org/10.1023/B:SYNT.0000024915.66183.d1 +Reinhard Blutner,Quantum cognition and bounded rationality.,2016,193,Synthese,10,db/journals/synthese/synthese193.html#BlutnerG16,https://doi.org/10.1007/s11229-015-0928-5 +Marion Vorms,Models of data and theoretical hypotheses: a case-study in classical genetics.,2013,190,Synthese,2,db/journals/synthese/synthese190.html#Vorms13,https://doi.org/10.1007/s11229-012-0147-2 +Jonah N. Schupbach,Is the conjunction fallacy tied to probabilistic confirmation?,2012,184,Synthese,1,db/journals/synthese/synthese184.html#Schupbach12,https://doi.org/10.1007/s11229-009-9698-2 +Alexander Jackson,From relative truth to Finean non-factualism.,2016,193,Synthese,3,db/journals/synthese/synthese193.html#Jackson16,https://doi.org/10.1007/s11229-015-0787-0 +Eros Corazza,On the Alleged Ambiguity of 'Now' and 'Here'.,2004,138,Synthese,2,db/journals/synthese/synthese138.html#Corazza04,https://doi.org/10.1023/B:SYNT.0000013244.65400.a0 +Dennis J. L. G. Schutter,Introducing Transcranial Magnetic Stimulation (TMS) and its Property of Causal Inference in Investigating Brain-Function Relationships.,2004,141,Synthese,2,db/journals/synthese/synthese141.html#SchutterHP04,https://doi.org/10.1023/B:SYNT.0000042951.25087.16 +David Slutsky,Confusion and dependence in uses of history.,2012,184,Synthese,3,db/journals/synthese/synthese184.html#Slutsky12,https://doi.org/10.1007/s11229-010-9785-4 +Markus E. Schlosser,Embodied cognition and temporally extended agency.,2018,195,Synthese,5,db/journals/synthese/synthese195.html#Schlosser18,https://doi.org/10.1007/s11229-017-1320-4 +Chris Heunen,Bohrification of operator algebras and quantum logic.,2012,186,Synthese,3,db/journals/synthese/synthese186.html#HeunenLS12,https://doi.org/10.1007/s11229-011-9918-4 +Fiona Cowie,The Logical Problem of Language Acquisition.,1997,111,Synthese,1,db/journals/synthese/synthese111.html#Cowie97,https://doi.org/10.1023/A%3A1004975305820 +Benjamin G. Rin,Transfinite recursion and computation in the iterative conception of set.,2015,192,Synthese,8,db/journals/synthese/synthese192.html#Rin15,https://doi.org/10.1007/s11229-014-0560-9 +Marcus P. Adams,Empirical evidence and the knowledge-that/knowledge-how distinction.,2009,170,Synthese,1,db/journals/synthese/synthese170.html#Adams09,https://doi.org/10.1007/s11229-008-9349-z +Anthony S. Gillies,New foundations for epistemic change*.,2004,138,Synthese,1,db/journals/synthese/synthese138.html#Gillies04,https://doi.org/10.1023/B:SYNT.0000012202.66263.b2 +Mark Burgin,Scientific problems and questions from a logical point of view.,1994,100,Synthese,1,db/journals/synthese/synthese100.html#BurginK94,https://doi.org/10.1007/BF01063918 +Mathijs de Boer,Two dimensional Standard Deontic Logic [including a detailed analysis of the 1985 Jones-Pörn deontic logic system].,2012,187,Synthese,2,db/journals/synthese/synthese187.html#BoerGPS12,https://doi.org/10.1007/s11229-010-9866-4 +Dennis Dieks,E. W. Beth as a philosopher of physics.,2011,179,Synthese,2,db/journals/synthese/synthese179.html#Dieks11,https://doi.org/10.1007/s11229-010-9782-7 +Ellen Fridland,Automatically minded.,2017,194,Synthese,11,db/journals/synthese/synthese194.html#Fridland17,https://doi.org/10.1007/s11229-014-0617-9 +Grant Ramsey,Driftability.,2013,190,Synthese,17,db/journals/synthese/synthese190.html#Ramsey13,https://doi.org/10.1007/s11229-012-0232-6 +Françoise Longy,"Do we need two notions of natural kind to account for the history of ""jade""?",2018,195,Synthese,4,db/journals/synthese/synthese195.html#Longy18,https://doi.org/10.1007/s11229-016-1213-y +Martin Peterson,Order-Independent Transformative Decision Rules.,2005,147,Synthese,2,db/journals/synthese/synthese147.html#PetersonH05,https://doi.org/10.1007/s11229-005-1351-0 +Mark Moyer,Statues and Lumps: A Strange Coincidence?,2006,148,Synthese,2,db/journals/synthese/synthese148.html#Moyer06,https://doi.org/10.1007/s11229-004-6235-1 +Andrzej Wisniewski,Erotetic Logic And Explanation By Abnormic Hypotheses.,1999,120,Synthese,3,db/journals/synthese/synthese120.html#Wisniewski99,https://doi.org/10.1023/A:1005221910211 +Jesse Hughes,A Semantics for Means-end Relations.,2007,158,Synthese,2,db/journals/synthese/synthese158.html#HughesKZ07,https://doi.org/10.1007/s11229-006-9036-x +Lehrer Keith,Common sense and skepticism: a lecture.,2017,194,Synthese,5,db/journals/synthese/synthese194.html#Keith17,https://doi.org/10.1007/s11229-015-0770-9 +H. M. Cartwright,A Note on Plural Pronouns.,2000,123,Synthese,2,db/journals/synthese/synthese123.html#Cartwright00,https://doi.org/10.1023/A:1005205406576 +Szabolcs Mikulás,The equational theories of representable residuated semigroups.,2015,192,Synthese,7,db/journals/synthese/synthese192.html#Mikulas15,https://doi.org/10.1007/s11229-014-0513-3 +Patrick Reeder,Zeno's arrow and the infinitesimal calculus.,2015,192,Synthese,5,db/journals/synthese/synthese192.html#Reeder15,https://doi.org/10.1007/s11229-014-0620-1 +Daniel M. Hausman,Erratum to: Systems without a graphical causal representation.,2015,192,Synthese,9,db/journals/synthese/synthese192.html#HausmanSW15,https://doi.org/10.1007/s11229-015-0686-4 +John Mumma,Constructive geometrical reasoning and diagrams.,2012,186,Synthese,1,db/journals/synthese/synthese186.html#Mumma12,https://doi.org/10.1007/s11229-011-9981-x +Steven French,(Structural) realism and its representational vehicles.,2017,194,Synthese,9,db/journals/synthese/synthese194.html#French17,https://doi.org/10.1007/s11229-015-0879-x +Philip Ehrlich,From Completeness to Archimedean Completenes.,1997,110,Synthese,1,db/journals/synthese/synthese110.html#Ehrlich97,https://doi.org/10.1023/A%3A1004971123925 +Lina Eriksson,The interference problem for the betting interpretation of degrees of belief.,2013,190,Synthese,5,db/journals/synthese/synthese190.html#ErikssonR13,https://doi.org/10.1007/s11229-012-0187-7 +Ulrike Hahn,A normative framework for argument quality: argumentation schemes with a Bayesian foundation.,2016,193,Synthese,6,db/journals/synthese/synthese193.html#HahnH16,https://doi.org/10.1007/s11229-015-0815-0 +Kurt Sylvan,The illusion of discretion.,2016,193,Synthese,6,db/journals/synthese/synthese193.html#Sylvan16,https://doi.org/10.1007/s11229-015-0796-z +Colin Klein,Dispositional implementation solves the superfluous structure problem.,2008,165,Synthese,1,db/journals/synthese/synthese165.html#Klein08,https://doi.org/10.1007/s11229-007-9244-z +Matt Lutz,The pragmatics of pragmatic encroachment.,2014,191,Synthese,8,db/journals/synthese/synthese191.html#Lutz14,https://doi.org/10.1007/s11229-013-0361-6 +Avram Hiller,Safety and epistemic luck.,2007,158,Synthese,3,db/journals/synthese/synthese158.html#HillerN07,https://doi.org/10.1007/s11229-006-9041-0 +Elaine Landry,How to be a structuralist all the way down.,2011,179,Synthese,3,db/journals/synthese/synthese179.html#Landry11,https://doi.org/10.1007/s11229-009-9691-9 +David Pears,Wittgenstein's criticism of cartesianism.,1996,106,Synthese,1,db/journals/synthese/synthese106.html#Pears96,https://doi.org/10.1007/BF00413613 +J. Kevin O'Regan,What it is like to see: A sensorimotor theory of perceptual experience.,2001,129,Synthese,1,db/journals/synthese/synthese129.html#OReganN01,https://doi.org/10.1023/A:1012699224677 +Jorge M. Escobar,Autopoiesis and Darwinism.,2012,185,Synthese,1,db/journals/synthese/synthese185.html#Escobar12,https://doi.org/10.1007/s11229-011-9875-y +Göran Sundholm,Semantic Values for Natural Deduction Derivations.,2006,148,Synthese,3,db/journals/synthese/synthese148.html#Sundholm06,https://doi.org/10.1007/s11229-004-6298-z +Jake Chandler,Contrastive confirmation: some competing accounts.,2013,190,Synthese,1,db/journals/synthese/synthese190.html#Chandler13,https://doi.org/10.1007/s11229-010-9845-9 +Efraim Wallach,Bayesian representation of a prolonged archaeological debate.,2018,195,Synthese,1,db/journals/synthese/synthese195.html#Wallach18,https://doi.org/10.1007/s11229-016-1224-8 +Fenrong Liu,Logical dynamics of belief change in the community.,2014,191,Synthese,11,db/journals/synthese/synthese191.html#LiuSG14,https://doi.org/10.1007/s11229-014-0432-3 +Jairo José Da Silva,Husserl's phenomenology and Weyl's Predictivism.,1997,110,Synthese,2,db/journals/synthese/synthese110.html#Silva97,https://doi.org/10.1023/A%3A1004937311034 +Theodore J. Everett,A Simple Logic for Comparisons and Vagueness.,2000,123,Synthese,2,db/journals/synthese/synthese123.html#Everett00,https://doi.org/10.1023/A:1005283218535 +Audrey Yap,Logical structuralism and Benacerraf's problem.,2009,171,Synthese,1,db/journals/synthese/synthese171.html#Yap09,https://doi.org/10.1007/s11229-008-9383-x +Franz Dietrich,A Model of Jury Decisions where all Jurors have the same Evidence.,2004,142,Synthese,2,db/journals/synthese/synthese142.html#DietrichL04,https://doi.org/10.1007/s11229-004-1276-z +Peter Simons,The Logic of Location.,2006,150,Synthese,3,db/journals/synthese/synthese150.html#Simons06,https://doi.org/10.1007/s11229-005-5517-6 +Wlodek Rabinowicz,From values to probabilities.,2017,194,Synthese,10,db/journals/synthese/synthese194.html#Rabinowicz17,https://doi.org/10.1007/s11229-015-0693-5 +Gabriel Sandu,Joint action and group action made precise.,1995,105,Synthese,3,db/journals/synthese/synthese105.html#SanduT95,https://doi.org/10.1007/BF01063562 +Gregg De Young,Mathematical diagrams from manuscript to print: examples from the Arabic Euclidean transmission.,2012,186,Synthese,1,db/journals/synthese/synthese186.html#Young12,https://doi.org/10.1007/s11229-012-0070-6 +Rebekka Hufendiek,Affordances and the normativity of emotions.,2017,194,Synthese,11,db/journals/synthese/synthese194.html#Hufendiek17,https://doi.org/10.1007/s11229-016-1144-7 +Stephan Lewandowsky,The 'Alice in Wonderland' mechanics of the rejection of (climate) science: simulating coherence by conspiracism.,2018,195,Synthese,1,db/journals/synthese/synthese195.html#LewandowskyCL18,https://doi.org/10.1007/s11229-016-1198-6 +Brendan Clarke,Modelling mechanisms with causal cycles.,2014,191,Synthese,8,db/journals/synthese/synthese191.html#ClarkeLW14,https://doi.org/10.1007/s11229-013-0360-7 +Joseph S. Alper,Newtonian Supertasks: A Critical Analysis.,1998,114,Synthese,2,db/journals/synthese/synthese114.html#AlperB98,https://doi.org/10.1023/A:1005057130067 +Giovanna Devetag,You better play 7: mutual versus common knowledge of advice in a weak-link experiment.,2013,190,Synthese,8,db/journals/synthese/synthese190.html#DevetagHS13,https://doi.org/10.1007/s11229-012-0177-9 +Esther Oluffa Pedersen,Preface.,2011,179,Synthese,1,db/journals/synthese/synthese179.html#PedersenFBP11,https://doi.org/10.1007/s11229-009-9633-6 +Jon Cogburn,Manifest Invalidity: Neil Tennant's New Argument for Intuitionism.,2003,134,Synthese,3,db/journals/synthese/synthese134.html#Cogburn03,https://doi.org/10.1023/A:1022921622763 +Berit Brogaard,In defense of hearing meanings.,2018,195,Synthese,7,db/journals/synthese/synthese195.html#Brogaard18,https://doi.org/10.1007/s11229-016-1178-x +Gila Sher,In memoriam: Jaakko Hintikka.,2015,192,Synthese,8,db/journals/synthese/synthese192.html#Sher15,https://doi.org/10.1007/s11229-015-0882-2 +Rasmus Grønfeldt Winther,Part-whole science.,2011,178,Synthese,3,db/journals/synthese/synthese178.html#Winther11,https://doi.org/10.1007/s11229-009-9647-0 +Simon Friederich,Philosophical perspectives on ad hoc hypotheses and the Higgs mechanism.,2014,191,Synthese,16,db/journals/synthese/synthese191.html#FriederichHK14,https://doi.org/10.1007/s11229-014-0504-4 +Johanna Seibt,Forms of emergent interaction in General Process Theory.,2009,166,Synthese,3,db/journals/synthese/synthese166.html#Seibt09,https://doi.org/10.1007/s11229-008-9373-z +Claire Ortiz Hill,Reference and Paradox.,2004,138,Synthese,2,db/journals/synthese/synthese138.html#Hill04,https://doi.org/10.1023/B:SYNT.0000013241.59493.1d +Matthew McGrath,Memory and epistemic conservatism.,2007,157,Synthese,1,db/journals/synthese/synthese157.html#McGrath07,https://doi.org/10.1007/s11229-006-0011-3 +Manfred Jaeger,A Logic For Inductive Probabilistic Reasoning.,2005,144,Synthese,2,db/journals/synthese/synthese144.html#Jaeger05,https://doi.org/10.1007/s11229-004-6153-2 +Raymond Dacey,Preface.,2003,135,Synthese,2,db/journals/synthese/synthese135.html#Dacey03,https://doi.org/10.1023/A:1023435022719 +Robert G. Hudson,What's Really at Issue with Novel Predictions?,2007,155,Synthese,1,db/journals/synthese/synthese155.html#Hudson07,https://doi.org/10.1007/s11229-005-6267-1 +Matthias Schirn,Hume's Principle and Axiom V Reconsidered: Critical Reflections on Frege and His Interpreters.,2006,148,Synthese,1,db/journals/synthese/synthese148.html#Schirn06,https://doi.org/10.1007/s11229-004-2829-x +Michael W. Pelczar,The Indispensability of Farbung.,2004,138,Synthese,1,db/journals/synthese/synthese138.html#Pelczar04,https://doi.org/10.1023/B:SYNT.0000012203.59944.c5 +Leendert Huisman,Reflecting on finite additivity.,2015,192,Synthese,6,db/journals/synthese/synthese192.html#Huisman15,https://doi.org/10.1007/s11229-014-0652-6 +Joëlle Proust,Metacognition and metarepresentation: is a self-directed theory of mind a precondition for metacognition?,2007,159,Synthese,2,db/journals/synthese/synthese159.html#Proust07,https://doi.org/10.1007/s11229-007-9208-3 +James F. Woodward,The problem of variable choice.,2016,193,Synthese,4,db/journals/synthese/synthese193.html#Woodward16,https://doi.org/10.1007/s11229-015-0810-5 +André Fuhrmann,Undercutting and the Ramsey test for conditionals.,1994,101,Synthese,2,db/journals/synthese/synthese101.html#FuhrmannL94,https://doi.org/10.1007/BF01064015 +Alex Mintz,Mathematical models of foreign policy decision-making: Compensatory vs. noncompensatory.,1994,100,Synthese,3,db/journals/synthese/synthese100.html#MintzGD94,https://doi.org/10.1007/BF01063911 +James A. Woodbridge,The pathology of validity.,2008,160,Synthese,1,db/journals/synthese/synthese160.html#WoodbridgeA08,https://doi.org/10.1007/s11229-006-9077-1 +Mauricio Suárez,Bohmian dispositions.,2015,192,Synthese,10,db/journals/synthese/synthese192.html#Suarez15,https://doi.org/10.1007/s11229-015-0741-1 +Jacques Dubucs,Feasibility In Logic.,2002,132,Synthese,3,db/journals/synthese/synthese132.html#Dubucs02,https://doi.org/10.1023/A:1020332703930 +Darrell P. Rowbottom,Stance and rationality: a perspective.,2011,178,Synthese,1,db/journals/synthese/synthese178.html#RowbottomB11,https://doi.org/10.1007/s11229-009-9526-8 +Jody Azzouni,Inconsistency in natural languages.,2013,190,Synthese,15,db/journals/synthese/synthese190.html#Azzouni13,https://doi.org/10.1007/s11229-012-0136-5 +L. Moretti,Epistemic transmission and interaction.,2013,190,Synthese,13,db/journals/synthese/synthese190.html#MorettiP13,https://doi.org/10.1007/s11229-013-0289-x +Bob Hale,Real Numbers and Set theory - Extending the Neo-Fregean Programme Beyond Arithmetic.,2005,147,Synthese,1,db/journals/synthese/synthese147.html#Hale05,https://doi.org/10.1007/s11229-004-6205-7 +Lindsay Rettler,In defense of doxastic blame.,2018,195,Synthese,5,db/journals/synthese/synthese195.html#Rettler18,https://doi.org/10.1007/s11229-017-1332-0 +Damien Fennell,Does Roush show that evidence should be probable?,2010,175,Synthese,3,db/journals/synthese/synthese175.html#FennellC10,https://doi.org/10.1007/s11229-009-9510-3 +Matthew McGrath,Defeating pragmatic encroachment?,2018,195,Synthese,7,db/journals/synthese/synthese195.html#McGrath18,https://doi.org/10.1007/s11229-016-1264-0 +Daniele Mundici,Coherence of de Finetti coherence.,2017,194,Synthese,10,db/journals/synthese/synthese194.html#Mundici17,https://doi.org/10.1007/s11229-016-1126-9 +Luciano Floridi,Semantic information and the network theory of account.,2012,184,Synthese,3,db/journals/synthese/synthese184.html#Floridi12,https://doi.org/10.1007/s11229-010-9821-4 +Hajo Greif,What is the extension of the extended mind?,2017,194,Synthese,11,db/journals/synthese/synthese194.html#Greif17,https://doi.org/10.1007/s11229-015-0799-9 +William Boos,Virtual Modality.,2003,136,Synthese,3,db/journals/synthese/synthese136.html#Boos03a,https://doi.org/10.1023/A:1025101329309 +Richard G. Heck,Truth and Disquotation.,2005,142,Synthese,3,db/journals/synthese/synthese142.html#Heck05,https://doi.org/10.1007/s11229-005-3719-6 +Jan Faye,Explanation Explained.,1999,120,Synthese,1,db/journals/synthese/synthese120.html#Faye99,https://doi.org/10.1023/A:1005258504182 +J. Subramanyam,Measurement and the Justification of the Statistical Postulate in Bohm's Causal Interpretation of Quantum Mechanics.,1997,113,Synthese,3,db/journals/synthese/synthese113.html#Subramanyam97,https://doi.org/10.1023/A:1005061321655 +Arnon Keren,Trust and belief: a preemptive reasons account.,2014,191,Synthese,12,db/journals/synthese/synthese191.html#Keren14,https://doi.org/10.1007/s11229-014-0416-3 +T. M. Botham,Plantinga and Favorable Mini-Environments.,2003,135,Synthese,3,db/journals/synthese/synthese135.html#Botham03,https://doi.org/10.1023/A:1023551725580 +Eros Corazza,Situated minimalism versus free enrichment.,2012,184,Synthese,2,db/journals/synthese/synthese184.html#CorazzaD12,https://doi.org/10.1007/s11229-010-9731-5 +Matt Farr,On A- and B-theoretic elements of branching space*.,2012,188,Synthese,1,db/journals/synthese/synthese188.html#Farr12,https://doi.org/10.1007/s11229-011-0046-y +Hanne Andersen,Epistemic dependence in interdisciplinary groups.,2013,190,Synthese,11,db/journals/synthese/synthese190.html#AndersenW13,https://doi.org/10.1007/s11229-012-0172-1 +Matthew Frise,Speaking freely: on free will and the epistemology of testimony.,2014,191,Synthese,7,db/journals/synthese/synthese191.html#Frise14,https://doi.org/10.1007/s11229-013-0350-9 +William Roche,Is there a place in Bayesian confirmation theory for the Reverse Matthew Effect?,2018,195,Synthese,4,db/journals/synthese/synthese195.html#Roche18,https://doi.org/10.1007/s11229-016-1286-7 +Ludwig Fahrbach,Scientific revolutions and the explosion of scientific evidence.,2017,194,Synthese,12,db/journals/synthese/synthese194.html#Fahrbach17,https://doi.org/10.1007/s11229-016-1193-y +Matthias Hild,The Coherence Argument Against Conditionalization.,1998,115,Synthese,2,db/journals/synthese/synthese115.html#Hild98,https://doi.org/10.1023/A:1005082908147 +David M. Armstrong,Four Disputes About Properties.,2005,144,Synthese,3,db/journals/synthese/synthese144.html#Armstrong05,https://doi.org/10.1007/s11229-005-5852-7 +Alva Noë,Experience And The Active Mind.,2001,129,Synthese,1,db/journals/synthese/synthese129.html#Noe01,https://doi.org/10.1023/A:1012695023768 +Wulf Gaertner,Evaluating competing theories via a common language of qualitative verdicts.,2016,193,Synthese,10,db/journals/synthese/synthese193.html#GaertnerW16,https://doi.org/10.1007/s11229-015-0929-4 +Thomas Müller 0007,Funny business in branching space-*: infinite modal correlations.,2008,164,Synthese,1,db/journals/synthese/synthese164.html#MullerBK08,https://doi.org/10.1007/s11229-007-9220-7 +Pendaran Roberts,Parsing the rainbow.,2014,191,Synthese,8,db/journals/synthese/synthese191.html#Roberts14,https://doi.org/10.1007/s11229-013-0368-z +Tian Yu Cao,What is Ontological Synthesis? - A Reply to Simon Saunders.,2003,136,Synthese,1,db/journals/synthese/synthese136.html#Cao03c,https://doi.org/10.1023/A:1024176704341 +Anthony F. Beavers,Noesis and the encyclopedic internet vision.,2011,182,Synthese,2,db/journals/synthese/synthese182.html#Beavers11,https://doi.org/10.1007/s11229-009-9663-0 +Marshall Abrams,What determines biological fitness? The problem of the reference environment.,2009,166,Synthese,1,db/journals/synthese/synthese166.html#Abrams09,https://doi.org/10.1007/s11229-007-9255-9 +Rohit Parikh,Length and Structure of Proofs.,1998,114,Synthese,1,db/journals/synthese/synthese114.html#Parikh98,https://doi.org/10.1023/A:1005050425290 +Edward H. Minar,Feeling at home in language.,1995,102,Synthese,3,db/journals/synthese/synthese102.html#Minar95,https://doi.org/10.1007/BF01064123 +Mitchell Herschbach,Mirroring versus simulation: on the representational function of simulation.,2012,189,Synthese,3,db/journals/synthese/synthese189.html#Herschbach12,https://doi.org/10.1007/s11229-011-9969-6 +Tim Bayne,Narrators and comparators: the architecture of agentive self-awareness.,2007,159,Synthese,3,db/journals/synthese/synthese159.html#BayneP07,https://doi.org/10.1007/s11229-007-9239-9 +Ofer Gal,Nature's drawing: problems and resolutions in the mathematization of motion.,2012,185,Synthese,3,db/journals/synthese/synthese185.html#GalC12,https://doi.org/10.1007/s11229-011-9978-5 +Albert Newen,Defending the liberal-content view of perceptual experience: direct social perception of emotions and person impressions.,2017,194,Synthese,3,db/journals/synthese/synthese194.html#Newen17,https://doi.org/10.1007/s11229-016-1030-3 +Sven Bernecker,Knowing The World By Knowing One's Mind.,2000,123,Synthese,1,db/journals/synthese/synthese123.html#Bernecker00,https://doi.org/10.1023/A:1005239420827 +Harmen Ghijsen,Phenomenalist dogmatist experientialism and the distinctiveness problem.,2014,191,Synthese,7,db/journals/synthese/synthese191.html#Ghijsen14,https://doi.org/10.1007/s11229-013-0348-3 +Iris Loeb,Uniting model theory and the universalist tradition of logic: Carnap's early axiomatics.,2014,191,Synthese,12,db/journals/synthese/synthese191.html#Loeb14a,https://doi.org/10.1007/s11229-014-0425-2 +Brian Epstein,The perils of tweaking: how to use macrodata to set parameters in complex simulation models.,2013,190,Synthese,2,db/journals/synthese/synthese190.html#EpsteinF13,https://doi.org/10.1007/s11229-012-0142-7 +Stefan Buijsman,Accessibility of reformulated mathematical content.,2017,194,Synthese,6,db/journals/synthese/synthese194.html#Buijsman17,https://doi.org/10.1007/s11229-016-1054-8 +Nikolaj Jang Lee Linding Pedersen,Rational trust.,2014,191,Synthese,9,db/journals/synthese/synthese191.html#PedersenAK14,https://doi.org/10.1007/s11229-014-0451-0 +Joel Kenton Press,The scientific use of 'representation' and 'function': avoiding explanatory vacuity.,2008,161,Synthese,1,db/journals/synthese/synthese161.html#Press08,https://doi.org/10.1007/s11229-006-9154-5 +Andrew Russo,Kim's dilemma: why mental causation is not productive.,2016,193,Synthese,7,db/journals/synthese/synthese193.html#Russo16,https://doi.org/10.1007/s11229-015-0837-7 +Lydia Patton,Experiment and theory building.,2012,184,Synthese,3,db/journals/synthese/synthese184.html#Patton12,https://doi.org/10.1007/s11229-010-9772-9 +Kjell Johan Sæbø,How questions and the manner-method distinction.,2016,193,Synthese,10,db/journals/synthese/synthese193.html#Saebo16,https://doi.org/10.1007/s11229-015-0924-9 +Kent Staley,Error-statistical elimination of alternative hypotheses.,2008,163,Synthese,3,db/journals/synthese/synthese163.html#Staley08a,https://doi.org/10.1007/s11229-007-9294-2 +Michael Esfeld,How to account for quantum non-locality: ontic structural realism and the primitive ontology of quantum physics.,2017,194,Synthese,7,db/journals/synthese/synthese194.html#Esfeld17,https://doi.org/10.1007/s11229-014-0549-4 +Susanna Schellenberg,Sameness of Fregean sense.,2012,189,Synthese,1,db/journals/synthese/synthese189.html#Schellenberg12,https://doi.org/10.1007/s11229-012-0098-7 +Peter Pagin,Philosophy of language and mind.,2013,190,Synthese,10,db/journals/synthese/synthese190.html#PaginRA13,https://doi.org/10.1007/s11229-013-0258-4 +William Boos,"Parfaits Miroirs De L'univers"": A 'Virtual' Interpretation of Leibnizian Metaphysics.",2003,136,Synthese,2,db/journals/synthese/synthese136.html#Boos03,https://doi.org/10.1023/A:1024745012471 +Luciano Floridi,On malfunctioning software.,2015,192,Synthese,4,db/journals/synthese/synthese192.html#FloridiFP15,https://doi.org/10.1007/s11229-014-0610-3 +Nikolaj Jang Lee Linding Pedersen,The epistemology of absence-based inference.,2013,190,Synthese,13,db/journals/synthese/synthese190.html#PedersenK13,https://doi.org/10.1007/s11229-013-0255-7 +Kenneth R. Westphal,Does Kant'sMetaphysical Foundations of Natural Science fill a gap in theCritique of Pure Reason?,1995,103,Synthese,1,db/journals/synthese/synthese103.html#Westphal95,https://doi.org/10.1007/BF01063718 +Tommaso Bertolotti,Theoretical considerations on cognitive niche construction.,2017,194,Synthese,12,db/journals/synthese/synthese194.html#BertolottiM17,https://doi.org/10.1007/s11229-016-1165-2 +Erik Myin,Editorial Introduction.,2001,129,Synthese,1,db/journals/synthese/synthese129.html#Myin01,https://doi.org/10.1023/A:1012663122859 +David DeVidi,Tolerance and metalanguages in Carnap'sLogical Syntax of Language.,1995,103,Synthese,1,db/journals/synthese/synthese103.html#DeVidiS95,https://doi.org/10.1007/BF01063720 +Stephen Leeds,Constructive empiricism.,1994,101,Synthese,2,db/journals/synthese/synthese101.html#Leeds94,https://doi.org/10.1007/BF01064017 +Kai Hauser,Objectivity Over Objects: A Case Study In Theory Formation.,2001,128,Synthese,3,db/journals/synthese/synthese128.html#Hauser01,https://doi.org/10.1023/A:1011994619998 +Kateryna Samoilova,Transparency and introspective unification.,2016,193,Synthese,10,db/journals/synthese/synthese193.html#Samoilova16,https://doi.org/10.1007/s11229-015-0936-5 +David E. Taylor,Quine on matters of fact.,2016,193,Synthese,2,db/journals/synthese/synthese193.html#Taylor16,https://doi.org/10.1007/s11229-015-0765-6 +Alessandro Giordani,On the factivity of implicit intersubjective knowledge.,2014,191,Synthese,8,db/journals/synthese/synthese191.html#Giordani14,https://doi.org/10.1007/s11229-013-0381-2 +Fabienne Peter,The procedural epistemic value of deliberation.,2013,190,Synthese,7,db/journals/synthese/synthese190.html#Peter13,https://doi.org/10.1007/s11229-012-0119-6 +Michiru Nagatsu,The limits of unification for theory appraisal: a case of economics and psychology.,2013,190,Synthese,12,db/journals/synthese/synthese190.html#Nagatsu13,https://doi.org/10.1007/s11229-011-9971-z +Xuefeng Wen,Semantic games with chance moves revisited: from IF logic to partial logic.,2013,190,Synthese,9,db/journals/synthese/synthese190.html#WenJ13,https://doi.org/10.1007/s11229-011-9897-5 +Damiano Anselmi,A New Perspective on the Philosophical Implications of Quantum Field Theory.,2003,135,Synthese,3,db/journals/synthese/synthese135.html#Anselmi03,https://doi.org/10.1023/A:1023578026046 +Nico Orlandi,Predictive perceptual systems.,2018,195,Synthese,6,db/journals/synthese/synthese195.html#Orlandi18,https://doi.org/10.1007/s11229-017-1373-4 +Nathan L. King,Perseverance as an intellectual virtue.,2014,191,Synthese,15,db/journals/synthese/synthese191.html#King14,https://doi.org/10.1007/s11229-014-0418-1 +Juan Comesaña,Could there be exactly two things?,2008,162,Synthese,1,db/journals/synthese/synthese162.html#Comesana08,https://doi.org/10.1007/s11229-007-9170-0 +Robert Schwartz,Symbols and thought.,1996,106,Synthese,3,db/journals/synthese/synthese106.html#Schwartz96,https://doi.org/10.1007/BF00413592 +Jacqueline A. Sullivan,The multiplicity of experimental protocols: a challenge to reductionist and non-reductionist models of the unity of neuroscience.,2009,167,Synthese,3,db/journals/synthese/synthese167.html#Sullivan09,https://doi.org/10.1007/s11229-008-9389-4 +J. Robert Thompson,Grades of meaning.,2008,161,Synthese,2,db/journals/synthese/synthese161.html#Thompson08,https://doi.org/10.1007/s11229-007-9161-1 +Krista Lawlor,Reason and the Past: The Role of Rationality in Diachronic Self-Knowledge.,2005,145,Synthese,3,db/journals/synthese/synthese145.html#Lawlor05,https://doi.org/10.1007/s11229-005-6220-3 +Bas C. van Fraassen,On stance and rationality.,2011,178,Synthese,1,db/journals/synthese/synthese178.html#Fraassen11,https://doi.org/10.1007/s11229-009-9520-1 +Julia Tanney,Real rules.,2009,171,Synthese,3,db/journals/synthese/synthese171.html#Tanney09,https://doi.org/10.1007/s11229-008-9326-6 +Guy Longworth,Understanding what was said.,2018,195,Synthese,2,db/journals/synthese/synthese195.html#Longworth18,https://doi.org/10.1007/s11229-016-1243-5 +Richard Montgomery,The indeterminacy of color vision.,1996,106,Synthese,2,db/journals/synthese/synthese106.html#Montgomery96,https://doi.org/10.1007/BF00413699 +Kevin Wallbridge,The peculiar case of Lehrer's lawyer.,2018,195,Synthese,4,db/journals/synthese/synthese195.html#Wallbridge18,https://doi.org/10.1007/s11229-016-1285-8 +Graeme Forbes,Intensional verbs in event semantics.,2010,176,Synthese,2,db/journals/synthese/synthese176.html#Forbes10,https://doi.org/10.1007/s11229-009-9491-2 +Jonas R. Becker Arenhart,Wither away individuals.,2013,190,Synthese,16,db/journals/synthese/synthese190.html#Arenhart13,https://doi.org/10.1007/s11229-012-0204-x +David Rose,Persistence through function preservation.,2015,192,Synthese,1,db/journals/synthese/synthese192.html#Rose15,https://doi.org/10.1007/s11229-014-0555-6 +Jordi Valor Abad,The inclosure scheme and the solution to the paradoxes of self-reference.,2008,160,Synthese,2,db/journals/synthese/synthese160.html#Abad08,https://doi.org/10.1007/s11229-006-9109-x +Sven Ove Hansson,What is Stability?,2003,136,Synthese,2,db/journals/synthese/synthese136.html#HanssonH03,https://doi.org/10.1023/A:1024733424521 +Anjan Chakravartty,The Semantic or Model-Theoretic View of Theories and Scientific Realism.,2001,127,Synthese,3,db/journals/synthese/synthese127.html#Chakravartty01,https://doi.org/10.1023/A:1010359521312 +Boris Culina,Logic of paradoxes in classical set theories.,2013,190,Synthese,3,db/journals/synthese/synthese190.html#Culina13,https://doi.org/10.1007/s11229-011-0047-x +Petr Svarný,Does branching explain flow of time or the other way around?,2015,192,Synthese,7,db/journals/synthese/synthese192.html#Svarny15,https://doi.org/10.1007/s11229-014-0638-4 +Jeffrey R. Tiel,The Dogma Of Kornblith's Naturalism.,1999,120,Synthese,3,db/journals/synthese/synthese120.html#Tiel99,https://doi.org/10.1023/A:1005278624115 +Isaac Levi,Deductive closure.,2012,186,Synthese,2,db/journals/synthese/synthese186.html#Levi12,https://doi.org/10.1007/s11229-011-9996-3 +Brendan Lalor,Intentionality And Qualia.,1999,121,Synthese,3,db/journals/synthese/synthese121.html#Lalor99,https://doi.org/10.1023/A:1005209507485 +Kenny Boyce,In defense of proper functionalism: cognitive science takes on Swampman.,2016,193,Synthese,9,db/journals/synthese/synthese193.html#BoyceM16,https://doi.org/10.1007/s11229-015-0899-6 +Don Ihde,From da Vinci to CAD and beyond.,2009,168,Synthese,3,db/journals/synthese/synthese168.html#Ihde09,https://doi.org/10.1007/s11229-008-9445-0 +Gerhard Schurz,Explanation as Unification.,1999,120,Synthese,1,db/journals/synthese/synthese120.html#Schurz99,https://doi.org/10.1023/A:1005214721929 +Justin Leiber,Language Without Linguistics.,1999,120,Synthese,2,db/journals/synthese/synthese120.html#Leiber99,https://doi.org/10.1023/A:1005211514525 +Donald Bedford,Bell's theorem in an indeterministic universe.,1995,102,Synthese,1,db/journals/synthese/synthese102.html#BedfordS95,https://doi.org/10.1007/BF01063902 +Steven T. Kuhn,Reflections on Ethics and Game Theory.,2004,141,Synthese,1,db/journals/synthese/synthese141.html#Kuhn04,https://doi.org/10.1023/B:SYNT.0000035846.91195.cb +Stephen Hetherington,Knowledge's Boundary Problem.,2006,150,Synthese,1,db/journals/synthese/synthese150.html#Hetherington06,https://doi.org/10.1007/s11229-004-6255-x +Ruth Manor,Solving the Heap.,2006,153,Synthese,2,db/journals/synthese/synthese153.html#Manor06,https://doi.org/10.1007/s11229-005-2535-3 +Frances Egan,Doing cognitive neuroscience: a third way.,2006,153,Synthese,3,db/journals/synthese/synthese153.html#EganM06,https://doi.org/10.1007/s11229-006-9098-9 +Thomas Donaldson,Platitudes in mathematics.,2015,192,Synthese,6,db/journals/synthese/synthese192.html#Donaldson15,https://doi.org/10.1007/s11229-014-0653-5 +Louis M. Guenin,Dialogue Concerning Natural Appropriation.,2003,136,Synthese,3,db/journals/synthese/synthese136.html#Guenin03,https://doi.org/10.1023/A:1025165320946 +Daniel Kolak,Room for a view: on the metaphysical subject of personal identity.,2008,162,Synthese,3,db/journals/synthese/synthese162.html#Kolak08,https://doi.org/10.1007/s11229-007-9252-z +Christopher Gregory Weaver,What could be caused must actually be caused.,2012,184,Synthese,3,db/journals/synthese/synthese184.html#Weaver12,https://doi.org/10.1007/s11229-010-9814-3 +Duncan Pritchard,Defusing epistemic relativism.,2009,166,Synthese,2,db/journals/synthese/synthese166.html#Pritchard09,https://doi.org/10.1007/s11229-007-9278-2 +S. C. Lee,'The friend of my enemy is my enemy': Modeling triadic internation relationships.,1994,100,Synthese,3,db/journals/synthese/synthese100.html#LeeMZ94,https://doi.org/10.1007/BF01063907 +Alexander Paseau,The Open-Endedness of the Set Concept and the Semantics of Set Theory.,2003,135,Synthese,3,db/journals/synthese/synthese135.html#Paseau03,https://doi.org/10.1023/A:1023542621122 +John Basl,A trilemma for teleological individualism.,2017,194,Synthese,4,db/journals/synthese/synthese194.html#Basl17,https://doi.org/10.1007/s11229-017-1316-0 +Peter Mark Ainsworth,Cosmic inflation and the past hypothesis.,2008,162,Synthese,2,db/journals/synthese/synthese162.html#Ainsworth08,https://doi.org/10.1007/s11229-007-9179-4 +Jakob Koscholke,Against relative overlap measures of coherence.,2016,193,Synthese,9,db/journals/synthese/synthese193.html#KoscholkeS16,https://doi.org/10.1007/s11229-015-0887-x +Tom McClelland,Can self-representationalism explain away the apparent irreducibility of consciousness?,2016,193,Synthese,6,db/journals/synthese/synthese193.html#McClelland16,https://doi.org/10.1007/s11229-015-0806-1 +Hiroshi Ohtani,Philosophical pictures about mathematics: Wittgenstein and contradiction.,2018,195,Synthese,5,db/journals/synthese/synthese195.html#Ohtani18,https://doi.org/10.1007/s11229-017-1317-z +Johan van Benthem,The many faces of interpolation.,2008,164,Synthese,3,db/journals/synthese/synthese164.html#Benthem08,https://doi.org/10.1007/s11229-008-9351-5 +David Makinson,Logical questions behind the lottery and preface paradoxes: lossy rules for uncertain inference.,2012,186,Synthese,2,db/journals/synthese/synthese186.html#Makinson12,https://doi.org/10.1007/s11229-011-9997-2 +Gerhard Schurz,Erratum to: Causality as a theoretical concept: explanatory warrant and empirical content of the theory of causal nets.,2016,193,Synthese,4,db/journals/synthese/synthese193.html#SchurzG16a,https://doi.org/10.1007/s11229-016-1019-y +Giacomo Sillari,Rule-following as coordination: a game-theoretic approach.,2013,190,Synthese,5,db/journals/synthese/synthese190.html#Sillari13,https://doi.org/10.1007/s11229-012-0190-z +Samson Abramsky,Big toy models - Representing physical systems as Chu spaces.,2012,186,Synthese,3,db/journals/synthese/synthese186.html#Abramsky12,https://doi.org/10.1007/s11229-011-9912-x +John S. Wilkins,Are creationists rational?,2011,178,Synthese,2,db/journals/synthese/synthese178.html#Wilkins11,https://doi.org/10.1007/s11229-009-9544-6 +Anjan Chakravartty,Informational versus functional theories of scientific representation.,2010,172,Synthese,2,db/journals/synthese/synthese172.html#Chakravartty10,https://doi.org/10.1007/s11229-009-9502-3 +Duncan Pritchard,Wright contra McDowell on perceptual knowledge and scepticism.,2009,171,Synthese,3,db/journals/synthese/synthese171.html#Pritchard09a,https://doi.org/10.1007/s11229-008-9328-4 +Laura Schroeter,Bootstrapping our way to samesaying.,2012,189,Synthese,1,db/journals/synthese/synthese189.html#Schroeter12,https://doi.org/10.1007/s11229-012-0099-6 +João Figueiredo Nobre Cortese,Infinity between mathematics and apologetics: Pascal's notion of infinite distance.,2015,192,Synthese,8,db/journals/synthese/synthese192.html#Cortese15,https://doi.org/10.1007/s11229-014-0599-7 +Andy Clark,Introduction: Reinventing the connectionist challenge.,1994,101,Synthese,3,db/journals/synthese/synthese101.html#Clark94,https://doi.org/10.1007/BF01063892 +Aris Spanos,A frequentist interpretation of probability for model-based inductive inference.,2013,190,Synthese,9,db/journals/synthese/synthese190.html#Spanos13,https://doi.org/10.1007/s11229-011-9892-x +Patrick Todd,On behalf of a mutable future.,2016,193,Synthese,7,db/journals/synthese/synthese193.html#Todd16,https://doi.org/10.1007/s11229-015-0830-1 +Olimpia Lombardi,What is Shannon information?,2016,193,Synthese,7,db/journals/synthese/synthese193.html#LombardiHV16,https://doi.org/10.1007/s11229-015-0824-z +Michela Massimi,From data to phenomena: a Kantian stance.,2011,182,Synthese,1,db/journals/synthese/synthese182.html#Massimi11,https://doi.org/10.1007/s11229-009-9611-z +,Announcements and calls for papers.,1995,104,Synthese,2,db/journals/synthese/synthese104.html#X95a,https://doi.org/10.1007/BF01063876 +Ryan Christensen,McGee on Horwich.,2016,193,Synthese,1,db/journals/synthese/synthese193.html#Christensen16,https://doi.org/10.1007/s11229-015-0753-x +Jay Lombard,Synchrnoic consciousness from a neurological point of view: the philosophical foundations for neuroethics.,2008,162,Synthese,3,db/journals/synthese/synthese162.html#Lombard08,https://doi.org/10.1007/s11229-007-9246-x +Naveen Sundar Govindarajulu,Proof verification and proof discovery for relativity.,2015,192,Synthese,7,db/journals/synthese/synthese192.html#GovindarajauluB15,https://doi.org/10.1007/s11229-014-0424-3 +Arthur Schipper,Aboutness and negative truths: a modest strategy for truthmaker theorists.,2018,195,Synthese,8,db/journals/synthese/synthese195.html#Schipper18,https://doi.org/10.1007/s11229-017-1396-x +Ross Paul Cameron,Truthmakers and necessary connections.,2008,161,Synthese,1,db/journals/synthese/synthese161.html#Cameron08a,https://doi.org/10.1007/s11229-006-9152-7 +Mikkel Gerken,Discursive justification and skepticism.,2012,189,Synthese,2,db/journals/synthese/synthese189.html#Gerken12,https://doi.org/10.1007/s11229-012-0076-0 +Preston J. Werner,Seemings: still dispositions to believe.,2014,191,Synthese,8,db/journals/synthese/synthese191.html#Werner14,https://doi.org/10.1007/s11229-013-0363-4 +Luca Bellotti,Tarski On Logical Notions.,2003,135,Synthese,3,db/journals/synthese/synthese135.html#Bellotti03,https://doi.org/10.1023/A:1023590504284 +Richard Feldman,Modest deontologism in epistemology.,2008,161,Synthese,3,db/journals/synthese/synthese161.html#Feldman08,https://doi.org/10.1007/s11229-006-9088-y +Gabriel Motzkin,Representation.,2002,130,Synthese,2,db/journals/synthese/synthese130.html#Motzkin02,https://doi.org/10.1023/A:1014487229958 +Per F. V. Hasle,Prior's paradigm for the study of time and its methodological motivation.,2016,193,Synthese,11,db/journals/synthese/synthese193.html#HasleO16,https://doi.org/10.1007/s11229-016-1161-6 +Aaron M. Griffith,Erratum to: How negative truths are made true.,2015,192,Synthese,9,db/journals/synthese/synthese192.html#Griffith15a,https://doi.org/10.1007/s11229-014-0623-y +Franco Montagna,Learning to Coordinate* a Recursion Theoretic Perspective.,1999,118,Synthese,3,db/journals/synthese/synthese118.html#MontagnaO99,https://doi.org/10.1023/A:1005182121401 +Marc Lange,laws and their stability.,2005,144,Synthese,3,db/journals/synthese/synthese144.html#Lange05,https://doi.org/10.1007/s11229-005-5874-1 +Shane Maxwell Wilkins,Why paraphrase nihilism fails.,2016,193,Synthese,8,db/journals/synthese/synthese193.html#Wilkins16,https://doi.org/10.1007/s11229-015-0869-z +Erich Kummerfeld,Erratum to: Model change and methodological virtues in scientific inference.,2014,191,Synthese,14,db/journals/synthese/synthese191.html#KummerfeldD14a,https://doi.org/10.1007/s11229-014-0454-x +David Atkinson,Probability as a Theory Dependent Concept.,1999,118,Synthese,3,db/journals/synthese/synthese118.html#AtkinsonP99,https://doi.org/10.1023/A:1005242414754 +Robert Trueman,The Prenective View of propositional content.,2018,195,Synthese,4,db/journals/synthese/synthese195.html#Trueman18,https://doi.org/10.1007/s11229-016-1309-4 +Peter Schroeder-Heister,Validity Concepts in Proof-theoretic Semantics.,2006,148,Synthese,3,db/journals/synthese/synthese148.html#Schroeder-Heister06,https://doi.org/10.1007/s11229-004-6296-1 +Fabio Paglieri,Enthymematic parsimony.,2011,178,Synthese,3,db/journals/synthese/synthese178.html#PaglieriW11,https://doi.org/10.1007/s11229-009-9652-3 +Robert Kowalenko,How (not) to think about idealisation and ceteris paribus -laws.,2009,167,Synthese,1,db/journals/synthese/synthese167.html#Kowalenko09,https://doi.org/10.1007/s11229-008-9310-1 +Kenneth Hobson,Foundational beliefs and the structure of justification.,2008,164,Synthese,1,db/journals/synthese/synthese164.html#Hobson08,https://doi.org/10.1007/s11229-007-9219-0 +William Lane Craig,On Truth Conditions Of Tensed Sentence Types.,1999,120,Synthese,2,db/journals/synthese/synthese120.html#Craig99,https://doi.org/10.1023/A:1005148323481 +Teresa Britton,The Problem of Verisimilitude and Counting Partially Identical Properties.,2004,141,Synthese,1,db/journals/synthese/synthese141.html#Britton04,https://doi.org/10.1023/B:SYNT.0000035848.61535.f8 +J. Adam Carter,Extended cognition and epistemic luck.,2013,190,Synthese,18,db/journals/synthese/synthese190.html#Carter13a,https://doi.org/10.1007/s11229-013-0267-3 +Nikolaj Jang Lee Linding Pedersen,Non-rational action in the face of disagreement: an argument against (strong) non-conformism.,2018,195,Synthese,7,db/journals/synthese/synthese195.html#Pedersen18,https://doi.org/10.1007/s11229-016-1086-0 +David M. Godden,A probabilistic analysis of argument cogency.,2018,195,Synthese,4,db/journals/synthese/synthese195.html#GoddenZ18,https://doi.org/10.1007/s11229-016-1299-2 +Teddy Seidenfeld,A Contrast Between two Decision Rules for use with (Convex) Sets of Probabilities: Δ5*-Maximin Versus E-Admissibilty.,2004,140,Synthese,1,db/journals/synthese/synthese140.html#Seidenfeld04,https://doi.org/10.1023/B:SYNT.0000029942.11359.8d +Peter W. Hanks,How Wittgenstein Defeated Russell's Multiple Relation Theory of Judgment.,2007,154,Synthese,1,db/journals/synthese/synthese154.html#Hanks07,https://doi.org/10.1007/s11229-005-0195-y +Richard Bradley,Revising incomplete attitudes.,2009,171,Synthese,2,db/journals/synthese/synthese171.html#Bradley09,https://doi.org/10.1007/s11229-009-9638-1 +Boaz Miller,What is Hacking's argument for entity realism?,2016,193,Synthese,3,db/journals/synthese/synthese193.html#Miller16a,https://doi.org/10.1007/s11229-015-0789-y +Daniel J. Hicks,A new direction for science and values.,2014,191,Synthese,14,db/journals/synthese/synthese191.html#Hicks14,https://doi.org/10.1007/s11229-014-0447-9 +Elizabeth Potter,Good science and good philosophy of science.,1995,104,Synthese,3,db/journals/synthese/synthese104.html#Potter95,https://doi.org/10.1007/BF01064508 +Randy Wojtowicz,The Metaphysical Expositions of Space and Time.,1997,113,Synthese,1,db/journals/synthese/synthese113.html#Wojtowicz97,https://doi.org/10.1023/A:1005008016234 +Bruce L. Gordon,Maxwell-Boltzmann Statistics And The Metaphysics Of Modality.,2002,133,Synthese,3,db/journals/synthese/synthese133.html#Gordon02,https://doi.org/10.1023/A:1021360805193 +Otávio A. S. Bueno,Is science inconsistent?,2014,191,Synthese,13,db/journals/synthese/synthese191.html#BuenoV14,https://doi.org/10.1007/s11229-014-0463-9 +Jussi Haukioja,Proto-Rigidity.,2006,150,Synthese,2,db/journals/synthese/synthese150.html#Haukioja06,https://doi.org/10.1007/s11229-004-6263-x +Geoffrey S. Holtzman,A neuropsychological challenge to the sentimentalism/rationalism distinction.,2018,195,Synthese,5,db/journals/synthese/synthese195.html#Holtzman18,https://doi.org/10.1007/s11229-017-1344-9 +Simon M. Huttegger,Evolutionary dynamics of Lewis signaling games: signaling systems vs. partial pooling.,2010,172,Synthese,1,db/journals/synthese/synthese172.html#HutteggerSSZ10,https://doi.org/10.1007/s11229-009-9477-0 +Byong-Chul Park,Wittgenstein's Use of the Word 'Aspekt'.,1998,115,Synthese,1,db/journals/synthese/synthese115.html#Park98,https://doi.org/10.1023/A:1005076802418 +Christopher Pincock,Modeling reality.,2011,180,Synthese,1,db/journals/synthese/synthese180.html#Pincock11,https://doi.org/10.1007/s11229-009-9564-2 +Daniel A. Wilkenfeld,Understanding as representation manipulability.,2013,190,Synthese,6,db/journals/synthese/synthese190.html#Wilkenfeld13,https://doi.org/10.1007/s11229-011-0055-x +Michael Friedman,Wissenschaftslogik : The role of logic in the philosophy of science.,2008,164,Synthese,3,db/journals/synthese/synthese164.html#Friedman08,https://doi.org/10.1007/s11229-008-9356-0 +Marc Pauly,Axiomatizing collective judgment sets in a minimal logical language.,2007,158,Synthese,2,db/journals/synthese/synthese158.html#Pauly07,https://doi.org/10.1007/s11229-006-9079-z +José L. Zalabardo,A problem for information theoretic semantics.,1995,105,Synthese,1,db/journals/synthese/synthese105.html#Zalabardo95,https://doi.org/10.1007/BF01064101 +Jan von Plato,Formalization of Hilbert's Geometry of incidence and Parallelism.,1997,110,Synthese,1,db/journals/synthese/synthese110.html#Plato97,https://doi.org/10.1023/A%3A1004959405270 +Arianna Betti,Introduction.,2010,174,Synthese,2,db/journals/synthese/synthese174.html#BettiJ10,https://doi.org/10.1007/s11229-008-9416-5 +William Craig,The road to two theorems of logic.,2008,164,Synthese,3,db/journals/synthese/synthese164.html#Craig08a,https://doi.org/10.1007/s11229-008-9353-3 +Marc Fleurbaey,On Rights in Game Forms.,2000,123,Synthese,3,db/journals/synthese/synthese123.html#FleurbaeyH00,https://doi.org/10.1023/A:1005232419918 +Wendy S. Parker,Computer simulation through an error-statistical lens.,2008,163,Synthese,3,db/journals/synthese/synthese163.html#Parker08,https://doi.org/10.1007/s11229-007-9296-0 +Marc Pauly,On the role of language in social choice theory.,2008,163,Synthese,2,db/journals/synthese/synthese163.html#Pauly08,https://doi.org/10.1007/s11229-007-9200-y +Robert Northcott,Degree of explanation.,2013,190,Synthese,15,db/journals/synthese/synthese190.html#Northcott13a,https://doi.org/10.1007/s11229-012-0124-9 +Arjen Hommersom,Update Semantics of Security Protocols.,2004,142,Synthese,2,db/journals/synthese/synthese142.html#HommersomMV04,https://doi.org/10.1007/s11229-004-2247-0 +Gergely Székely,Logic and relativity theory.,2015,192,Synthese,7,db/journals/synthese/synthese192.html#Szekely15,https://doi.org/10.1007/s11229-014-0622-z +James W. Garson,Cognition without classical architecture.,1994,100,Synthese,2,db/journals/synthese/synthese100.html#Garson94,https://doi.org/10.1007/BF01063812 +Pavel Naumov,Logic of confidence.,2015,192,Synthese,6,db/journals/synthese/synthese192.html#NaumovT15,https://doi.org/10.1007/s11229-014-0655-3 +Jon Pérez Laraudogoitia,Why Dynamical Self-Excitation Is Possible.,1999,119,Synthese,3,db/journals/synthese/synthese119.html#Laraudogoitia99,https://doi.org/10.1023/A:1005241129759 +Jonathan Kvanvig,The incarnation and the knowability paradox.,2010,173,Synthese,1,db/journals/synthese/synthese173.html#Kvanvig10,https://doi.org/10.1007/s11229-009-9678-6 +Georgie Statham,The manipulation of chemical reactions: probing the limits of interventionism.,2017,194,Synthese,12,db/journals/synthese/synthese194.html#Statham17,https://doi.org/10.1007/s11229-016-1170-5 +Gabriele Contessa,Modal truthmakers and two varieties of actualism.,2010,174,Synthese,3,db/journals/synthese/synthese174.html#Contessa10b,https://doi.org/10.1007/s11229-008-9456-x +Hartley Slater,Prior's individuals.,2016,193,Synthese,11,db/journals/synthese/synthese193.html#Slater16,https://doi.org/10.1007/s11229-015-0881-3 +Aldo Rustichini,Decision making and equilibria.,2012,187,Synthese,1,db/journals/synthese/synthese187.html#Rustichini12,https://doi.org/10.1007/s11229-011-0029-z +Martin Thomson-Jones,Missing systems and the face value practice.,2010,172,Synthese,2,db/journals/synthese/synthese172.html#Thomson-Jones10,https://doi.org/10.1007/s11229-009-9507-y +Jan Plaza,Logics of public communications.,2007,158,Synthese,2,db/journals/synthese/synthese158.html#Plaza07,https://doi.org/10.1007/s11229-007-9168-7 +Luca Incurvati,On the concept of finitism.,2015,192,Synthese,8,db/journals/synthese/synthese192.html#Incurvati15,https://doi.org/10.1007/s11229-014-0639-3 +Dov Samet,S5 knowledge without partitions.,2010,172,Synthese,1,db/journals/synthese/synthese172.html#Samet10,https://doi.org/10.1007/s11229-009-9469-0 +Eddy M. Zemac,The World Is Too Much.,1999,120,Synthese,3,db/journals/synthese/synthese120.html#Zemac99,https://doi.org/10.1023/A:1005299706715 +James Blachowicz,Reciprocal Justification in Science and Moral Theory.,1997,110,Synthese,3,db/journals/synthese/synthese110.html#Blachowicz97,https://doi.org/10.1023/A%3A1004997329594 +Scott Normand,Criteria of identity and the hermeneutic goal of ante rem structuralism.,2018,195,Synthese,5,db/journals/synthese/synthese195.html#Normand18,https://doi.org/10.1007/s11229-017-1325-z +Paul Faulkner,On the Rationality of our Response to Testimony.,2002,131,Synthese,3,db/journals/synthese/synthese131.html#Faulkner02,https://doi.org/10.1023/A:1016116728471 +Jamin Asay,A modest defense of manifestationalism.,2015,192,Synthese,1,db/journals/synthese/synthese192.html#AsayB15,https://doi.org/10.1007/s11229-014-0556-5 +Ivahn Smadja,Local axioms in disguise: Hilbert on Minkowski diagrams.,2012,186,Synthese,1,db/journals/synthese/synthese186.html#Smadja12,https://doi.org/10.1007/s11229-011-9984-7 +Eugen Fischer,Wittgenstein's 'Non-Cognitivism' - Explained and Vindicated.,2008,162,Synthese,1,db/journals/synthese/synthese162.html#Fischer08,https://doi.org/10.1007/s11229-007-9172-y +Miguel Hoeltje,Explanation by induction?,2013,190,Synthese,3,db/journals/synthese/synthese190.html#HoeltjeSS13,https://doi.org/10.1007/s11229-011-0045-z +Terence Horgan,A nonclassical framework for cognitive science.,1994,101,Synthese,3,db/journals/synthese/synthese101.html#HorganT94,https://doi.org/10.1007/BF01063893 +Marcel Weber,How objective are biological functions?,2017,194,Synthese,12,db/journals/synthese/synthese194.html#Weber17,https://doi.org/10.1007/s11229-017-1483-z +Ekaterina Svetlova,De-idealization by commentary: the case of financial valuation models.,2013,190,Synthese,2,db/journals/synthese/synthese190.html#Svetlova13,https://doi.org/10.1007/s11229-012-0148-1 +Justin Leiber,OnTuring's Turing Test and why thematter matters.,1995,104,Synthese,1,db/journals/synthese/synthese104.html#Leiber95,https://doi.org/10.1007/BF01063675 +Derek Lam,Is imagination too liberal for modal epistemology?,2018,195,Synthese,5,db/journals/synthese/synthese195.html#Lam18,https://doi.org/10.1007/s11229-017-1329-8 +Abhaya C. Nayak,Belief change as change in epistemic entrenchment.,1996,109,Synthese,2,db/journals/synthese/synthese109.html#NayakNP96,https://doi.org/10.1007/BF00413766 +Peter Zahn,A Normative Model of Classical Reasoning in Higher Order Languages.,2006,148,Synthese,2,db/journals/synthese/synthese148.html#Zahn06,https://doi.org/10.1007/s11229-004-6225-3 +Mikel Aickin,Connecting Dempster-Shafer Belief Functions with Likelihood-based Inference.,2000,123,Synthese,3,db/journals/synthese/synthese123.html#Aickin00,https://doi.org/10.1023/A:1005287422506 +Arif Ahmed,Causal Decision Theory and EPR correlations.,2014,191,Synthese,18,db/journals/synthese/synthese191.html#AhmedC14,https://doi.org/10.1007/s11229-014-0536-9 +Tilman Lichter,Bill Clinton is the first lady of the USA: Making and unmaking analogies.,1995,104,Synthese,2,db/journals/synthese/synthese104.html#Lichter95,https://doi.org/10.1007/BF01063873 +Sven Dupré,Kepler's optics without hypotheses.,2012,185,Synthese,3,db/journals/synthese/synthese185.html#Dupre12,https://doi.org/10.1007/s11229-011-9977-6 +Robert D. Rupert,On the Relationship Between Naturalistic Semantics and Individuation Criteria for Terms in a Language of Thought.,1998,117,Synthese,1,db/journals/synthese/synthese117.html#Rupert98,https://doi.org/10.1023/A:1005077508102 +Gary Hatfield,Review essay: The importance of the history of science for philosophy in general.,1996,106,Synthese,1,db/journals/synthese/synthese106.html#Hatfield96,https://doi.org/10.1007/BF00413617 +Mirja Helena Hartimo,Syntactic reduction in Husserl's early phenomenology of arithmetic.,2016,193,Synthese,3,db/journals/synthese/synthese193.html#HartimoO16,https://doi.org/10.1007/s11229-015-0779-0 +Georg Schiemer,Carnap on logic and rationality.,2017,194,Synthese,1,db/journals/synthese/synthese194.html#Schiemer17,https://doi.org/10.1007/s11229-016-1252-4 +Marco J. Nathan,Mapping the mind: bridge laws and the psycho-neural interface.,2016,193,Synthese,2,db/journals/synthese/synthese193.html#NathanP16,https://doi.org/10.1007/s11229-015-0769-2 +Andrew Peet,Epistemic injustice in utterance interpretation.,2017,194,Synthese,9,db/journals/synthese/synthese194.html#Peet17,https://doi.org/10.1007/s11229-015-0942-7 +Raymond Dacey,Nineteenth Century Britain as a Subtle Commercial Hegemon.,1997,113,Synthese,2,db/journals/synthese/synthese113.html#DaceyM97,https://doi.org/10.1023/A:1005000926712 +Gabriele Contessa,Scientific models and fictional objects.,2010,172,Synthese,2,db/journals/synthese/synthese172.html#Contessa10a,https://doi.org/10.1007/s11229-009-9503-2 +Oswaldo Chateaubriand,Descriptions: Frege and Russell Combined.,2002,130,Synthese,2,db/journals/synthese/synthese130.html#Chateaubriand02,https://doi.org/10.1023/A:1014439314029 +Miles MacLeod,What makes interdisciplinarity difficult? Some consequences of domain specificity in interdisciplinary practice.,2018,195,Synthese,2,db/journals/synthese/synthese195.html#MacLeod18,https://doi.org/10.1007/s11229-016-1236-4 +Vassilios Karakostas,Decoherence in unorthodox formulations of quantum mechanics.,1995,102,Synthese,1,db/journals/synthese/synthese102.html#KarakostasD95,https://doi.org/10.1007/BF01063900 +Fred D'Agostino,Naturalizing the essential tension.,2008,162,Synthese,2,db/journals/synthese/synthese162.html#DAgostino08a,https://doi.org/10.1007/s11229-007-9192-7 +Crispin Wright,Foreword: on becoming a philosopher.,2009,171,Synthese,3,db/journals/synthese/synthese171.html#Wright09,https://doi.org/10.1007/s11229-008-9321-y +Maribel Anacona,On Bourbaki's axiomatic system for set theory.,2014,191,Synthese,17,db/journals/synthese/synthese191.html#AnaconaAP14,https://doi.org/10.1007/s11229-014-0515-1 +Philippe Schlenker,How to eliminate self-reference: a précis.,2007,158,Synthese,1,db/journals/synthese/synthese158.html#Schlenker07,https://doi.org/10.1007/s11229-006-9054-8 +Jens Christian Bjerring,Impossible worlds and logical omniscience: an impossibility result.,2013,190,Synthese,13,db/journals/synthese/synthese190.html#Bjerring13,https://doi.org/10.1007/s11229-011-0038-y +Katie Atkinson,Computational Representation of Practical Argument.,2006,152,Synthese,2,db/journals/synthese/synthese152.html#AtkinsonBM06,https://doi.org/10.1007/s11229-005-3488-2 +Anna Leuschner,Is it appropriate to 'target' inappropriate dissent? on the normative consequences of climate skepticism.,2018,195,Synthese,3,db/journals/synthese/synthese195.html#Leuschner18,https://doi.org/10.1007/s11229-016-1267-x +Alexander Skiles,Is there a dilemma for the truthmaker non-maximalist?,2014,191,Synthese,15,db/journals/synthese/synthese191.html#Skiles14,https://doi.org/10.1007/s11229-014-0485-3 +Francesca Poggiolesi,On constructing a logic for the notion of complete and immediate formal grounding.,2018,195,Synthese,3,db/journals/synthese/synthese195.html#Poggiolesi18,https://doi.org/10.1007/s11229-016-1265-z +Shaughan Lavine,Finite mathematics.,1995,103,Synthese,3,db/journals/synthese/synthese103.html#Lavine95,https://doi.org/10.1007/BF01089734 +Benjamin Bewersdorf,Infinitism and probabilistic justification.,2014,191,Synthese,4,db/journals/synthese/synthese191.html#Bewersdorf14,https://doi.org/10.1007/s11229-013-0367-0 +Nir Fresco,The instructional information processing account of digital computation.,2014,191,Synthese,7,db/journals/synthese/synthese191.html#FrescoW14,https://doi.org/10.1007/s11229-013-0338-5 +Nicholas Asher,Free Choice Permission is Strong Permission.,2005,145,Synthese,3,db/journals/synthese/synthese145.html#AsherB05,https://doi.org/10.1007/s11229-005-6196-z +Simon Burgess 0001,Newcomb's problem and its conditional evidence: a common cause of confusion.,2012,184,Synthese,3,db/journals/synthese/synthese184.html#Burgess12,https://doi.org/10.1007/s11229-010-9816-1 +Thomas Raleigh,Against an inferentialist dogma.,2017,194,Synthese,4,db/journals/synthese/synthese194.html#Raleigh17,https://doi.org/10.1007/s11229-015-1002-z +Robert Knowles,Good weasel hunting.,2015,192,Synthese,10,db/journals/synthese/synthese192.html#KnowlesL15,https://doi.org/10.1007/s11229-015-0711-7 +John Matthewson,The structure of tradeoffs in model building.,2009,170,Synthese,1,db/journals/synthese/synthese170.html#MatthewsonW09,https://doi.org/10.1007/s11229-008-9366-y +Peter Pagin,Tolerance and higher-order vagueness.,2017,194,Synthese,10,db/journals/synthese/synthese194.html#Pagin17,https://doi.org/10.1007/s11229-015-0798-x +Aldo Frigerio,Outline of a general model of measurement.,2010,175,Synthese,2,db/journals/synthese/synthese175.html#FrigerioGM10,https://doi.org/10.1007/s11229-009-9466-3 +Katherine Hawley,Science as a Guide to Metaphysics?,2006,149,Synthese,3,db/journals/synthese/synthese149.html#Hawley06,https://doi.org/10.1007/s11229-005-0569-1 +Iulian D. Toader,A Diagrammatic Reconstruction of Carnap's Quasianalysis.,2004,142,Synthese,1,db/journals/synthese/synthese142.html#Toader04,https://doi.org/10.1023/B:SYNT.0000047711.23748.ca +Patrick Dieveney,Ontological infidelity.,2008,165,Synthese,1,db/journals/synthese/synthese165.html#Dieveney08,https://doi.org/10.1007/s11229-007-9228-z +Gerald Holton,Philipp Frank at Harvard University: His Work and His Influence.,2006,153,Synthese,2,db/journals/synthese/synthese153.html#Holton06,https://doi.org/10.1007/s11229-005-5471-3 +Alexander Rueger,Hierarchies and levels of reality.,2010,176,Synthese,3,db/journals/synthese/synthese176.html#RuegerM10,https://doi.org/10.1007/s11229-009-9572-2 +Stephen Jacobson,Contextualism And Global Doubts About The World.,2001,129,Synthese,3,db/journals/synthese/synthese129.html#Jacobson01,https://doi.org/10.1023/A:1013168627459 +Somogy Varga,The case for mind perception.,2017,194,Synthese,3,db/journals/synthese/synthese194.html#Varga17,https://doi.org/10.1007/s11229-015-0994-8 +Benjamin Lennertz,Probabilistic consistency norms and quantificational credences.,2017,194,Synthese,6,db/journals/synthese/synthese194.html#Lennertz17,https://doi.org/10.1007/s11229-016-1039-7 +Alexandru Baltag,Keep 'hoping' for rationality: a solution to the backward induction paradox.,2009,169,Synthese,2,db/journals/synthese/synthese169.html#BaltagSZ09,https://doi.org/10.1007/s11229-009-9559-z +Christopher Clarke,How to define levels of explanation and evaluate their indispensability.,2017,194,Synthese,6,db/journals/synthese/synthese194.html#Clarke17,https://doi.org/10.1007/s11229-016-1053-9 +Thomas ågotnes,Introduction to the special issue.,2016,193,Synthese,3,db/journals/synthese/synthese193.html#AgotnesBH16,https://doi.org/10.1007/s11229-016-1017-0 +Georg Brun,Interpreting enthymematic arguments using belief revision.,2013,190,Synthese,18,db/journals/synthese/synthese190.html#BrunR13,https://doi.org/10.1007/s11229-013-0248-6 +Rasmus K. Rendsvig,Pluralistic ignorance in the bystander effect: informational dynamics of unresponsive witnesses in situations calling for intervention.,2014,191,Synthese,11,db/journals/synthese/synthese191.html#Rendsvig14,https://doi.org/10.1007/s11229-014-0435-0 +Patricia Rich,Comparing the axiomatic and ecological approaches to rationality: fundamental agreement theorems in SCOP.,2018,195,Synthese,2,db/journals/synthese/synthese195.html#Rich18,https://doi.org/10.1007/s11229-014-0584-1 +Sebastien Richard,Leśniewski on metalogic and definitions.,2018,195,Synthese,6,db/journals/synthese/synthese195.html#Richard18,https://doi.org/10.1007/s11229-017-1343-x +Gregory R. Wheeler,On The Structure of Rational Acceptance: Comments on Hawthorne and Bovens.,2005,144,Synthese,2,db/journals/synthese/synthese144.html#Wheeler05,https://doi.org/10.1007/s11229-005-2722-2 +Mariam Thalos,The Reduction of Causal Processes.,2002,131,Synthese,1,db/journals/synthese/synthese131.html#Thalos02a,https://doi.org/10.1023/A:1015015024056 +Massimiliano Carrara,The fine-grained metaphysics of artifactual and biological functional kinds.,2009,169,Synthese,1,db/journals/synthese/synthese169.html#CarraraV09,https://doi.org/10.1007/s11229-008-9339-1 +Sam Cowling,Ideological parsimony.,2013,190,Synthese,17,db/journals/synthese/synthese190.html#Cowling13,https://doi.org/10.1007/s11229-012-0231-7 +Solomon Feferman,Harmonious logic: Craig's interpolation theorem and its descendants.,2008,164,Synthese,3,db/journals/synthese/synthese164.html#Feferman08,https://doi.org/10.1007/s11229-008-9354-2 +Richard Tieszen,Gödel And The Intuition Of Concepts.,2002,133,Synthese,3,db/journals/synthese/synthese133.html#Tieszen02,https://doi.org/10.1023/A:1021247624209 +Margaret Schmitt,Freedom and (theoretical) reason.,2015,192,Synthese,1,db/journals/synthese/synthese192.html#Schmitt15,https://doi.org/10.1007/s11229-014-0547-6 +Jessica Carter,Structuralism as a philosophy of mathematical practice.,2008,163,Synthese,2,db/journals/synthese/synthese163.html#Carter08,https://doi.org/10.1007/s11229-007-9169-6 +Darrell P. Rowbottom,Stances and paradigms: a reflection.,2011,178,Synthese,1,db/journals/synthese/synthese178.html#Rowbottom11,https://doi.org/10.1007/s11229-009-9524-x +William Demopoulos,Some remarks on the bearing of model theory on the theory of theories.,2008,164,Synthese,3,db/journals/synthese/synthese164.html#Demopoulos08,https://doi.org/10.1007/s11229-008-9355-1 +Alan Hájek,Rationality and indeterminate probabilities.,2012,187,Synthese,1,db/journals/synthese/synthese187.html#HajekS12,https://doi.org/10.1007/s11229-011-0033-3 +Barry Lam,Calibrated probabilities and the epistemology of disagreement.,2013,190,Synthese,6,db/journals/synthese/synthese190.html#Lam13,https://doi.org/10.1007/s11229-011-9881-0 +Jaakko Hintikka,Hilbert vindicated?,1997,110,Synthese,1,db/journals/synthese/synthese110.html#Hintikka97a,https://doi.org/10.1023/A%3A1004915006179 +Michael Hand,Antirealism and universal knowability.,2010,173,Synthese,1,db/journals/synthese/synthese173.html#Hand10,https://doi.org/10.1007/s11229-009-9674-x +Paolo Maffezioli,The Church-Fitch knowability paradox in the light of structural proof theory.,2013,190,Synthese,14,db/journals/synthese/synthese190.html#MaffezioliNN13,https://doi.org/10.1007/s11229-012-0061-7 +Wayne C. Myrvold,What is a wavefunction?,2015,192,Synthese,10,db/journals/synthese/synthese192.html#Myrvold15,https://doi.org/10.1007/s11229-014-0635-7 +Décio Krause,A formal framework for quantum non-individuality.,1995,102,Synthese,1,db/journals/synthese/synthese102.html#KrauseF95,https://doi.org/10.1007/BF01063905 +Boris Hennig,The man without properties.,2017,194,Synthese,6,db/journals/synthese/synthese194.html#Hennig17,https://doi.org/10.1007/s11229-016-1033-0 +John Collins,The limits of conceivability: logical cognitivism and the language faculty.,2009,171,Synthese,1,db/journals/synthese/synthese171.html#Collins09,https://doi.org/10.1007/s11229-008-9391-x +Valerie Gray Hardcastle,Computationalism.,1995,105,Synthese,3,db/journals/synthese/synthese105.html#Hardcastle95,https://doi.org/10.1007/BF01063561 +Gábor Hofer-Szabó,Separate- versus common -common-cause-type derivations of the Bell inequalities.,2008,163,Synthese,2,db/journals/synthese/synthese163.html#Hofer-Szabo08,https://doi.org/10.1007/s11229-007-9198-1 +Mark Zangari,Spectral Representations.,1997,112,Synthese,1,db/journals/synthese/synthese112.html#ZangariC97,https://doi.org/10.1023/A%3A1004964211391 +Steven Weinstein,Superluminal Signaling and Relativity.,2006,148,Synthese,2,db/journals/synthese/synthese148.html#Weinstein06,https://doi.org/10.1007/s11229-004-6231-5 +Anthony Chemero,Object Exploration and a Problem with Reductionism.,2005,147,Synthese,3,db/journals/synthese/synthese147.html#ChemeroH05,https://doi.org/10.1007/s11229-005-8363-7 +John W. Dawson,What Hath Gödel Wrought?,1998,114,Synthese,1,db/journals/synthese/synthese114.html#Dawson98,https://doi.org/10.1023/A:1005046308451 +,Problems of Philosophy.,1997,112,Synthese,1,db/journals/synthese/synthese112.html#X97,https://doi.org/10.1023/A%3A1017124709324 +Jennifer Lackey,Why we don't deserve credit for everything we know.,2007,158,Synthese,3,db/journals/synthese/synthese158.html#Lackey07,https://doi.org/10.1007/s11229-006-9044-x +Andrew Moon,Remembering entails knowing.,2013,190,Synthese,14,db/journals/synthese/synthese190.html#Moon13,https://doi.org/10.1007/s11229-012-0065-3 +Folke Tersman,Are We Lovers of the Good?,2004,138,Synthese,2,db/journals/synthese/synthese138.html#Tersman04,https://doi.org/10.1023/B:SYNT.0000013240.14920.f7 +Francesco Paoli,A Really Fuzzy Approach to the Sorites Paradox.,2003,134,Synthese,3,db/journals/synthese/synthese134.html#Paoli03,https://doi.org/10.1023/A:1022995202767 +William Ramsey,Must cognition be representational?,2017,194,Synthese,11,db/journals/synthese/synthese194.html#Ramsey17,https://doi.org/10.1007/s11229-014-0644-6 +Andrew Buskell,How to be skilful: opportunistic robustness and normative sensitivity.,2015,192,Synthese,5,db/journals/synthese/synthese192.html#Buskell15,https://doi.org/10.1007/s11229-014-0634-8 +Dan López de Sa,Relativizing utterance-truth?,2009,170,Synthese,1,db/journals/synthese/synthese170.html#Sa09,https://doi.org/10.1007/s11229-008-9345-3 +Quentin Smith,Marcus and the new theory of reference: A reply to Scott Soames.,1995,104,Synthese,2,db/journals/synthese/synthese104.html#Smith95a,https://doi.org/10.1007/BF01063871 +Frederik Stjernfelt,Simple animals and complex biology: Von Uexküll's two-fold influence on Cassirer's philosophy.,2011,179,Synthese,1,db/journals/synthese/synthese179.html#Stjernfelt11,https://doi.org/10.1007/s11229-009-9634-5 +Valtteri Lahtinen,Towards a unified framework for decomposability of processes.,2017,194,Synthese,11,db/journals/synthese/synthese194.html#LahtinenS17,https://doi.org/10.1007/s11229-016-1139-4 +Andrea Strollo,A simple notion of validity for alethic pluralism.,2018,195,Synthese,4,db/journals/synthese/synthese195.html#Strollo18,https://doi.org/10.1007/s11229-016-1280-0 +L. Nathan Oaklander,McTaggart's paradox and Smith's tensed theory of time.,1996,107,Synthese,2,db/journals/synthese/synthese107.html#Oaklander96,https://doi.org/10.1007/BF00413606 +Alberto Voltolini,Fiction as a Base of Interpretation Contexts.,2006,153,Synthese,1,db/journals/synthese/synthese153.html#Voltolini06,https://doi.org/10.1007/s11229-006-0001-5 +Mark Rowlands,Arguing about representation.,2017,194,Synthese,11,db/journals/synthese/synthese194.html#Rowlands17,https://doi.org/10.1007/s11229-014-0646-4 +Ken Gemes,Verisimilitude and Content.,2007,154,Synthese,2,db/journals/synthese/synthese154.html#Gemes07a,https://doi.org/10.1007/s11229-005-2565-x +Somogy Varga,Interaction and extended cognition.,2016,193,Synthese,8,db/journals/synthese/synthese193.html#Varga16,https://doi.org/10.1007/s11229-015-0861-7 +Roger Sansom,Asymmetry in the unificationist theory of causal explanation.,2018,195,Synthese,2,db/journals/synthese/synthese195.html#SansomS18,https://doi.org/10.1007/s11229-016-1241-7 +Patrick Suppes,Future development of scientific structures closer to experiments: Response to F.A. Muller.,2011,183,Synthese,1,db/journals/synthese/synthese183.html#Suppes11,https://doi.org/10.1007/s11229-009-9670-1 +John Cantwell,On an alleged counter-example to causal decision theory.,2010,173,Synthese,2,db/journals/synthese/synthese173.html#Cantwell10,https://doi.org/10.1007/s11229-009-9689-3 +Jean-Michel Delhôtel,Relativistic frameworks and the case for (or against) incommensurability.,2018,195,Synthese,4,db/journals/synthese/synthese195.html#Delhotel18,https://doi.org/10.1007/s11229-016-1283-x +Michael Baumgartner,Uncovering deterministic causal structures: a Boolean approach.,2009,170,Synthese,1,db/journals/synthese/synthese170.html#Baumgartner09,https://doi.org/10.1007/s11229-008-9348-0 +Alexander Rueger,Functional reduction and emergence in the physical sciences.,2006,151,Synthese,3,db/journals/synthese/synthese151.html#Rueger06,https://doi.org/10.1007/s11229-006-9027-y +Kevin D. Hoover,The ontological status of shocks and trends in macroeconomics.,2015,192,Synthese,11,db/journals/synthese/synthese192.html#Hoover15,https://doi.org/10.1007/s11229-014-0503-5 +Sylvia Wenmackers,Fair infinite lotteries.,2013,190,Synthese,1,db/journals/synthese/synthese190.html#WenmackersH13,https://doi.org/10.1007/s11229-010-9836-x +Carlo Nicolai,Deflationary truth and the ontology of expressions.,2015,192,Synthese,12,db/journals/synthese/synthese192.html#Nicolai15,https://doi.org/10.1007/s11229-015-0729-x +Rachael Briggs,Truthmaking without necessitation.,2012,189,Synthese,1,db/journals/synthese/synthese189.html#Briggs12,https://doi.org/10.1007/s11229-012-0093-z +Catarina Dutilh Novaes,Roger Swyneshed's Obligationes: A Logical Game of Inference Recognition?,2006,151,Synthese,1,db/journals/synthese/synthese151.html#Novaes06,https://doi.org/10.1007/s11229-004-2248-z +Komarine Romdenh-Romluc,First-person thought and the use of 'I'.,2008,163,Synthese,2,db/journals/synthese/synthese163.html#Romdenh-Romluc08,https://doi.org/10.1007/s11229-007-9194-5 +David H. Wolpert,The lesson of Newcomb's paradox.,2013,190,Synthese,9,db/journals/synthese/synthese190.html#WolpertB13,https://doi.org/10.1007/s11229-011-9899-3 +John D. Greenwood,Solitary social belief.,2017,194,Synthese,6,db/journals/synthese/synthese194.html#Greenwood17,https://doi.org/10.1007/s11229-016-1037-9 +Mirja Helena Hartimo,From geometry to phenomenology.,2008,162,Synthese,2,db/journals/synthese/synthese162.html#Hartimo08,https://doi.org/10.1007/s11229-007-9177-6 +C. M. Asmus,Vagueness and revision sequences.,2013,190,Synthese,6,db/journals/synthese/synthese190.html#Asmus13,https://doi.org/10.1007/s11229-011-0052-0 +Igor Douven,Quantum probabilities and the conjunction principle.,2012,184,Synthese,1,db/journals/synthese/synthese184.html#DouvenU12,https://doi.org/10.1007/s11229-009-9693-7 +Samet Bagce,Reichenbach on the relative a priori and the context of discovery/justification distinction.,2011,181,Synthese,1,db/journals/synthese/synthese181.html#Bagce11,https://doi.org/10.1007/s11229-009-9588-7 +Paolo Galeazzi,Epistemic logic meets epistemic game theory: a comparison between multi-agent Kripke models and type spaces.,2016,193,Synthese,7,db/journals/synthese/synthese193.html#GaleazziL16,https://doi.org/10.1007/s11229-015-0834-x +Kevin Nelson,On background: using two-argument chance.,2009,166,Synthese,1,db/journals/synthese/synthese166.html#Nelson09a,https://doi.org/10.1007/s11229-007-9271-9 +B. Mazur,Conjecture.,1997,111,Synthese,2,db/journals/synthese/synthese111.html#Mazur97,https://doi.org/10.1023/A%3A1004934806305 +Filippo Ferrari,The value of minimalist truth.,2018,195,Synthese,3,db/journals/synthese/synthese195.html#Ferrari18,https://doi.org/10.1007/s11229-016-1207-9 +Colin Allen,Synthese special issue: representing philosophy.,2011,182,Synthese,2,db/journals/synthese/synthese182.html#AllenB11,https://doi.org/10.1007/s11229-009-9664-z +Daniel G. Campos,On the distinction between Peirce's abduction and Lipton's Inference to the best explanation.,2011,180,Synthese,3,db/journals/synthese/synthese180.html#Campos11,https://doi.org/10.1007/s11229-009-9709-3 +Douglas Ehring,Part-Whole Physicalism and Mental Causation.,2003,136,Synthese,3,db/journals/synthese/synthese136.html#Ehring03,https://doi.org/10.1023/A:1025143104108 +F. A. Muller,Deflating skolem.,2005,143,Synthese,3,db/journals/synthese/synthese143.html#Muller05,https://doi.org/10.1007/s11229-005-0800-0 +Claudio de Almeida,Guest editorial.,2012,188,Synthese,2,db/journals/synthese/synthese188.html#AlmeidaH12,https://doi.org/10.1007/s11229-011-9929-1 +Georg Schiemer,Carnap's early metatheory: scope and limits.,2017,194,Synthese,1,db/journals/synthese/synthese194.html#SchiemerZR17,https://doi.org/10.1007/s11229-015-0877-z +Gregor Betz,Petitio principii and circular argumentation as seen from a theory of dialectical structures.,2010,175,Synthese,3,db/journals/synthese/synthese175.html#Betz10,https://doi.org/10.1007/s11229-009-9512-1 +André Fuhrmann,Knowability as potential knowledge.,2014,191,Synthese,7,db/journals/synthese/synthese191.html#Fuhrmann14,https://doi.org/10.1007/s11229-013-0340-y +Andrew Brenner,Mereological nihilism and the special arrangement question.,2015,192,Synthese,5,db/journals/synthese/synthese192.html#Brenner15,https://doi.org/10.1007/s11229-014-0619-7 +Richard Bradley,The kinematics of belief and desire.,2007,156,Synthese,3,db/journals/synthese/synthese156.html#Bradley07,https://doi.org/10.1007/s11229-006-9136-7 +Colin Howson,Does information inform confirmation?,2016,193,Synthese,7,db/journals/synthese/synthese193.html#Howson16,https://doi.org/10.1007/s11229-015-0918-7 +Jakob Hohwy,Functional integration and the mind.,2007,159,Synthese,3,db/journals/synthese/synthese159.html#Hohwy07,https://doi.org/10.1007/s11229-007-9240-3 +Gian-Carlo Rota,The phenomenology of Mathematical Proof.,1997,111,Synthese,2,db/journals/synthese/synthese111.html#Rota97a,https://doi.org/10.1023/A%3A1004974521326 +Dan López de Sa,"The over-generalization problem: predicates rigidly signifying the ""unnatural"".",2008,163,Synthese,2,db/journals/synthese/synthese163.html#Sa08,https://doi.org/10.1007/s11229-007-9211-8 +Erik C. W. Krabbe,That's no argument! The dialectic of non-argumentation.,2015,192,Synthese,4,db/journals/synthese/synthese192.html#KrabbeL15,https://doi.org/10.1007/s11229-014-0609-9 +Isaac Levi,Howard Stein.,2004,140,Synthese,1,db/journals/synthese/synthese140.html#Levi04e,https://doi.org/10.1023/B:SYNT.0000029947.12801.4d +Marco Aiello 0001,Logic for physical space - From antiquity to present days.,2012,186,Synthese,3,db/journals/synthese/synthese186.html#AielloBBG12,https://doi.org/10.1007/s11229-011-9913-9 +Emmanuel J. Genot,The game of inquiry: the interrogative approach to inquiry and belief revision theory.,2009,171,Synthese,2,db/journals/synthese/synthese171.html#Genot09,https://doi.org/10.1007/s11229-009-9639-0 +Verena Wagner,On the analogy of free will and free belief.,2017,194,Synthese,8,db/journals/synthese/synthese194.html#Wagner17a,https://doi.org/10.1007/s11229-015-0851-9 +Martine Nida-Rümelin,The experience property frame work: a misleading paradigm.,2018,195,Synthese,8,db/journals/synthese/synthese195.html#Nida-Rumelin18,https://doi.org/10.1007/s11229-016-1121-1 +Duncan Pritchard,Wittgenstein and the groundlessness of our believing.,2012,189,Synthese,2,db/journals/synthese/synthese189.html#Pritchard12,https://doi.org/10.1007/s11229-011-0057-8 +Howard Stein,The Enterprise of Understanding and the Enterprise of Knowledge.,2004,140,Synthese,1,db/journals/synthese/synthese140.html#Stein04,https://doi.org/10.1023/B:SYNT.0000029946.38831.c9 +Alexander Miller,The Significance of Semantic Realism.,2003,136,Synthese,2,db/journals/synthese/synthese136.html#Miller03,https://doi.org/10.1023/A:1024742007683 +Thomas ågotnes,Logic and intelligent interaction.,2009,169,Synthese,2,db/journals/synthese/synthese169.html#AgotnesBP09,https://doi.org/10.1007/s11229-009-9558-0 +Joshua DiPaolo,Indoctrination anxiety and the etiology of belief.,2016,193,Synthese,10,db/journals/synthese/synthese193.html#DiPaoloS16,https://doi.org/10.1007/s11229-015-0919-6 +Gerhard Schurz,Patterns of abduction.,2008,164,Synthese,2,db/journals/synthese/synthese164.html#Schurz08,https://doi.org/10.1007/s11229-007-9223-4 +Elisabeth A. Lloyd,Objectivity and a comparison of methodological scenario approaches for climate change research.,2014,191,Synthese,10,db/journals/synthese/synthese191.html#LloydS14,https://doi.org/10.1007/s11229-013-0353-6 +Yao-Hua Tan,Is Default Logic a Reinvention of Inductive-Statistical Reasoning?,1997,110,Synthese,3,db/journals/synthese/synthese110.html#Tan97,https://doi.org/10.1023/A%3A1004999920152 +Mehrnoosh Sadrzadeh,Ockham's razor and reasoning about information flow.,2009,167,Synthese,2,db/journals/synthese/synthese167.html#Sadrzadeh09,https://doi.org/10.1007/s11229-008-9414-7 +Hans P. van Ditmarsch,The Secret of My Success.,2006,151,Synthese,2,db/journals/synthese/synthese151.html#DitmarschK06a,https://doi.org/10.1007/s11229-005-3384-9 +Matteo Morganti,Moderately naturalistic metaphysics.,2017,194,Synthese,7,db/journals/synthese/synthese194.html#MorgantiT17,https://doi.org/10.1007/s11229-016-1068-2 +Gordon Cooper,The ontological distinction between units and entities.,2012,187,Synthese,2,db/journals/synthese/synthese187.html#CooperH12,https://doi.org/10.1007/s11229-010-9832-1 +Jon Pérez Laraudogoitia,The inverse spaceship paradox.,2011,178,Synthese,3,db/journals/synthese/synthese178.html#Laraudogoitia11,https://doi.org/10.1007/s11229-009-9649-y +Julian C. Bradfield,Partial-order Boolean games: informational independence in a logic-based model of strategic interaction.,2016,193,Synthese,3,db/journals/synthese/synthese193.html#BradfieldGW16,https://doi.org/10.1007/s11229-015-0991-y +Michael Hannon,The universal core of knowledge.,2015,192,Synthese,3,db/journals/synthese/synthese192.html#Hannon15,https://doi.org/10.1007/s11229-014-0587-y +Reinhard Kahle,Introduction: Proof-theoretic Semantics.,2006,148,Synthese,3,db/journals/synthese/synthese148.html#KahleS06,https://doi.org/10.1007/s11229-004-6292-5 +Berit Brogaard,A Peircean Theory of Decision.,1999,118,Synthese,3,db/journals/synthese/synthese118.html#Brogaard99,https://doi.org/10.1023/A:1005154800638 +Majid Davoody Beni,Structural realist account of the self.,2016,193,Synthese,12,db/journals/synthese/synthese193.html#Beni16,https://doi.org/10.1007/s11229-016-1098-9 +Katalin Balog,Jerry Fodor on non-conceptual content.,2009,170,Synthese,2,db/journals/synthese/synthese170.html#Balog09,https://doi.org/10.1007/s11229-009-9585-x +Tomasz Bigaj,Counterfactuals and Spatiotemporal Events.,2004,142,Synthese,1,db/journals/synthese/synthese142.html#Bigaj04,https://doi.org/10.1023/B:SYNT.0000047707.96275.08 +Benjamin C. Jantzen,Ontology and methodology.,2015,192,Synthese,11,db/journals/synthese/synthese192.html#JantzenMP15,https://doi.org/10.1007/s11229-015-0972-1 +Neil Tennant,Williamson's Woes.,2010,173,Synthese,1,db/journals/synthese/synthese173.html#Tennant10,https://doi.org/10.1007/s11229-009-9673-y +Helena Eilstein,"Prof. Shimony on ""the transient Now"".",1996,107,Synthese,2,db/journals/synthese/synthese107.html#Eilstein96,https://doi.org/10.1007/BF00413607 +Peter W. Ross,The Relativity Of Color.,2000,123,Synthese,1,db/journals/synthese/synthese123.html#Ross00,https://doi.org/10.1023/A:1005265725232 +Mike Stannett,Motion and observation in a single-particle universe.,2015,192,Synthese,7,db/journals/synthese/synthese192.html#Stannett15,https://doi.org/10.1007/s11229-014-0489-z +Christos Douskos,The linguistic argument for intellectualism.,2013,190,Synthese,12,db/journals/synthese/synthese190.html#Douskos13,https://doi.org/10.1007/s11229-011-9972-y +Gila Sher,On the Possibility of a Substantive Theory of Truth.,1998,117,Synthese,1,db/journals/synthese/synthese117.html#Sher98,https://doi.org/10.1023/A:1005068021441 +Raymond Dacey,The S-Shaped Utility Function.,2003,135,Synthese,2,db/journals/synthese/synthese135.html#Dacey03a,https://doi.org/10.1023/A:1023465024536 +Jan M. Broersen,Determining the environment: a modal logic for closed interaction.,2009,169,Synthese,2,db/journals/synthese/synthese169.html#BroersenMMT09,https://doi.org/10.1007/s11229-009-9550-8 +Andrea Kruse,Why doxastic responsibility is not based on direct doxastic control.,2017,194,Synthese,8,db/journals/synthese/synthese194.html#Kruse17,https://doi.org/10.1007/s11229-015-0951-6 +Leon Horsten,The Undecidability of Propositional Adaptive Logic.,2007,158,Synthese,1,db/journals/synthese/synthese158.html#HorstenW07,https://doi.org/10.1007/s11229-006-9049-5 +Annalisa Coliva,Human diagrammatic reasoning and seeing-as.,2012,186,Synthese,1,db/journals/synthese/synthese186.html#Coliva12,https://doi.org/10.1007/s11229-011-9982-9 +Theo Kuipers,A realist partner for Linda: confirming a theoretical hypothesis more than its observational sub-hypothesis.,2012,184,Synthese,1,db/journals/synthese/synthese184.html#Kuipers12,https://doi.org/10.1007/s11229-009-9697-3 +Renate Bartsch,The relationship between connectionist models and a dynamic data-oriented theory of concept formation.,1996,108,Synthese,3,db/journals/synthese/synthese108.html#Bartsch96,https://doi.org/10.1007/BF00413697 +Markus I. Eronen,Robustness and reality.,2015,192,Synthese,12,db/journals/synthese/synthese192.html#Eronen15,https://doi.org/10.1007/s11229-015-0801-6 +Morten Overgaard,Confounding Factors in Contrastive Analysis.,2004,141,Synthese,2,db/journals/synthese/synthese141.html#Overgaard04,https://doi.org/10.1023/B:SYNT.0000043019.64052.e0 +Leon Horsten,The undecidability of propositional adaptive logic.,2009,169,Synthese,1,db/journals/synthese/synthese169.html#HorstenW09,https://doi.org/10.1007/s11229-009-9496-x +Shannon Spaulding,Mirror neurons are not evidence for the Simulation Theory.,2012,189,Synthese,3,db/journals/synthese/synthese189.html#Spaulding12,https://doi.org/10.1007/s11229-012-0086-y +Natasha Alechina,Preference-based belief revision for rule-based agents.,2008,165,Synthese,2,db/journals/synthese/synthese165.html#AlechinaJL08,https://doi.org/10.1007/s11229-008-9364-0 +K. Mcdaniel,Distance and Discrete Space.,2007,155,Synthese,1,db/journals/synthese/synthese155.html#Mcdaniel07,https://doi.org/10.1007/s11229-005-5034-7 +Ruth Weintraub,The Spatiality of the Mental and the Mind-Body Problem.,1998,117,Synthese,3,db/journals/synthese/synthese117.html#Weintraub98,https://doi.org/10.1023/A:1005022524925 +Daniel Aaron Weiskopf,The plurality of concepts.,2009,169,Synthese,1,db/journals/synthese/synthese169.html#Weiskopf09,https://doi.org/10.1007/s11229-008-9340-8 +Richard Creath,The logical and the analytic.,2017,194,Synthese,1,db/journals/synthese/synthese194.html#Creath17,https://doi.org/10.1007/s11229-015-0685-5 +Frederick Eberhardt,A sufficient condition for pooling data.,2008,163,Synthese,3,db/journals/synthese/synthese163.html#Eberhardt08,https://doi.org/10.1007/s11229-007-9293-3 +Mario Castagnino,The global non-entropic arrow of time: from global geometrical asymmetry to local energy flow.,2009,169,Synthese,1,db/journals/synthese/synthese169.html#CastagninoL09,https://doi.org/10.1007/s11229-009-9495-y +Peter Gärdenfors,Theory change as dimensional change: conceptual spaces applied to the dynamics of empirical theories.,2013,190,Synthese,6,db/journals/synthese/synthese190.html#GardenforsZ13,https://doi.org/10.1007/s11229-011-0060-0 +Frank Hindriks,The location problem in social ontology.,2013,190,Synthese,3,db/journals/synthese/synthese190.html#Hindriks13,https://doi.org/10.1007/s11229-011-0036-0 +Leila Haaparanta,On the Possibility of Naturalistic and of Pure Epistemology.,1999,118,Synthese,1,db/journals/synthese/synthese118.html#Haaparanta99,https://doi.org/10.1023/A:1005192826640 +Marcel Quarfood,The Individuality of Species: Some Reflections on the Debate.,1999,120,Synthese,1,db/journals/synthese/synthese120.html#Quarfood99,https://doi.org/10.1023/A:1005262605091 +Moritz Schulz,Epistemic modals and informational consequence.,2010,174,Synthese,3,db/journals/synthese/synthese174.html#Schulz10,https://doi.org/10.1007/s11229-009-9461-8 +Efraim Wallach,Niche construction theory as an explanatory framework for human phenomena.,2016,193,Synthese,8,db/journals/synthese/synthese193.html#Wallach16,https://doi.org/10.1007/s11229-015-0868-0 +E. J. Coffman,Defending Klein on Closure and Skepticism.,2006,151,Synthese,2,db/journals/synthese/synthese151.html#Coffman06,https://doi.org/10.1007/s11229-004-7324-x +Roman Frigg,The philosophy of simulation: hot new issues or same old stew?,2009,169,Synthese,3,db/journals/synthese/synthese169.html#FriggR09,https://doi.org/10.1007/s11229-008-9438-z +Sheldon R. Smith,Elementary classical mechanics and the principle of the Composition of Causes.,2010,173,Synthese,3,db/journals/synthese/synthese173.html#Smith10,https://doi.org/10.1007/s11229-008-9442-3 +Nicolas Espinoza,The small improvement argument.,2008,165,Synthese,1,db/journals/synthese/synthese165.html#Espinoza08,https://doi.org/10.1007/s11229-007-9243-0 +Franz Huber,New foundations for counterfactuals.,2014,191,Synthese,10,db/journals/synthese/synthese191.html#Huber14,https://doi.org/10.1007/s11229-013-0391-0 +Matteo Mossio,What makes biological organisation teleological?,2017,194,Synthese,4,db/journals/synthese/synthese194.html#MossioB17,https://doi.org/10.1007/s11229-014-0594-z +Hanoch Ben-Yami,Introduction to the 2nd Synthese Special Issue: trends in philosophy of language and mind.,2018,195,Synthese,8,db/journals/synthese/synthese195.html#Ben-YamiCW18,https://doi.org/10.1007/s11229-016-1174-1 +Berit Brogaard,Remarks on counterpossibles.,2013,190,Synthese,4,db/journals/synthese/synthese190.html#BrogaardS13,https://doi.org/10.1007/s11229-012-0196-6 +W. Dean,From the Knowability Paradox to the existence of proofs.,2010,176,Synthese,2,db/journals/synthese/synthese176.html#DeanK10,https://doi.org/10.1007/s11229-009-9490-3 +Stephan Leuenberger,What is global supervenience?,2009,170,Synthese,1,db/journals/synthese/synthese170.html#Leuenberger09,https://doi.org/10.1007/s11229-008-9360-4 +Gary Kemp,Truth in Frege's 'law of truth'.,1995,105,Synthese,1,db/journals/synthese/synthese105.html#Kemp95,https://doi.org/10.1007/BF01064102 +John L. Pollock,A resource-bounded agent addresses the newcomb problem.,2010,176,Synthese,1,db/journals/synthese/synthese176.html#Pollock10,https://doi.org/10.1007/s11229-009-9484-1 +Rafal Urbaniak,Challenging Lewis's challenge to the best system account of lawhood.,2018,195,Synthese,4,db/journals/synthese/synthese195.html#UrbaniakL18,https://doi.org/10.1007/s11229-016-1287-6 +J. Britt Holbrook,What is interdisciplinary communication? Reflections on the very idea of disciplinary integration.,2013,190,Synthese,11,db/journals/synthese/synthese190.html#Holbrook13,https://doi.org/10.1007/s11229-012-0179-7 +Isaac Levi,Schick.,2004,140,Synthese,1,db/journals/synthese/synthese140.html#Levi04,https://doi.org/10.1023/B:SYNT.0000029937.49242.4a +Jaakko Hintikka,Comment On Eklund And Kolak.,2002,131,Synthese,3,db/journals/synthese/synthese131.html#Hintikka02,https://doi.org/10.1023/A:1016117912210 +Jenann Ismael,Closed Causal Loops and the Bilking Argument.,2003,136,Synthese,3,db/journals/synthese/synthese136.html#Ismael03,https://doi.org/10.1023/A:1025170026539 +Tomasz Placek,Counterfactuals and Historical Possibility.,2007,154,Synthese,2,db/journals/synthese/synthese154.html#PlacekM07,https://doi.org/10.1007/s11229-005-0617-x +Eli Dresner,A Measurement Theoretic Account of Propositions.,2006,153,Synthese,1,db/journals/synthese/synthese153.html#Dresner06,https://doi.org/10.1007/s11229-004-3383-2 +Tapio Korte,Frege's Begriffsschrift as a lingua characteristica.,2010,174,Synthese,2,db/journals/synthese/synthese174.html#Korte10,https://doi.org/10.1007/s11229-008-9422-7 +Rogier De Langhe,To specialize or to innovate? An internalist account of pluralistic ignorance in economics.,2014,191,Synthese,11,db/journals/synthese/synthese191.html#Langhe14,https://doi.org/10.1007/s11229-014-0436-z +John N. Williams,Propositional knowledge and know-how.,2008,165,Synthese,1,db/journals/synthese/synthese165.html#Williams08,https://doi.org/10.1007/s11229-007-9242-1 +Ian Evans,The problem of the basing relation.,2013,190,Synthese,14,db/journals/synthese/synthese190.html#Evans13,https://doi.org/10.1007/s11229-012-0111-1 +Benedikt Löwe,Data and phenomena in conceptual modelling.,2011,182,Synthese,1,db/journals/synthese/synthese182.html#LoweM11,https://doi.org/10.1007/s11229-009-9621-x +Stephen Hetherington,Elusive epistemological justification.,2010,174,Synthese,3,db/journals/synthese/synthese174.html#Hetherington10,https://doi.org/10.1007/s11229-008-9451-2 +N. Effingham,An unwelcome consequence of the Multiverse Thesis.,2012,184,Synthese,3,db/journals/synthese/synthese184.html#Effingham12,https://doi.org/10.1007/s11229-010-9820-5 +Janez Bregant,Molecular reduction: reality or fiction?,2010,172,Synthese,3,db/journals/synthese/synthese172.html#BregantSC10,https://doi.org/10.1007/s11229-008-9401-z +John Earman,Do the laws of physics forbid the operation of time machines?,2009,169,Synthese,1,db/journals/synthese/synthese169.html#EarmanSW09,https://doi.org/10.1007/s11229-008-9338-2 +Colin Johnston,Tractarian objects and logical categories.,2009,167,Synthese,1,db/journals/synthese/synthese167.html#Johnston09,https://doi.org/10.1007/s11229-008-9307-9 +Peter Vanderschraaf,Covenants and reputations.,2007,157,Synthese,2,db/journals/synthese/synthese157.html#Vanderschraaf07,https://doi.org/10.1007/s11229-006-9147-4 +Mark Newman,Beyond Structural Realism: pluralist criteria for theory evaluation.,2010,174,Synthese,3,db/journals/synthese/synthese174.html#Newman10,https://doi.org/10.1007/s11229-009-9463-6 +Declan Smithies,Ideal rationality and logical omniscience.,2015,192,Synthese,9,db/journals/synthese/synthese192.html#Smithies15,https://doi.org/10.1007/s11229-015-0735-z +Hip Groenewold,Field or print.,1995,102,Synthese,1,db/journals/synthese/synthese102.html#Groenewold95,https://doi.org/10.1007/BF01063899 +Remco Heesen,Academic superstars: competent or lucky?,2017,194,Synthese,11,db/journals/synthese/synthese194.html#Heesen17,https://doi.org/10.1007/s11229-016-1146-5 +Katherine Dunlop,The mathematical form of measurement and the argument for Proposition I in Newton's Principia.,2012,186,Synthese,1,db/journals/synthese/synthese186.html#Dunlop12,https://doi.org/10.1007/s11229-011-9983-8 +Burton Dreben,Hilbert and Set Theory.,1997,110,Synthese,1,db/journals/synthese/synthese110.html#DrebenK97,https://doi.org/10.1023/A%3A1004908225146 +Dimitris Tsementzis,Univalent foundations as structuralist foundations.,2017,194,Synthese,9,db/journals/synthese/synthese194.html#Tsementzis17,https://doi.org/10.1007/s11229-016-1109-x +Marco J. Nathan,Development and natural kinds - Some lessons from biology.,2014,191,Synthese,3,db/journals/synthese/synthese191.html#NathanB14,https://doi.org/10.1007/s11229-013-0290-4 +Jérôme Dokic,Margin for error and the transparency of knowledge.,2009,166,Synthese,1,db/journals/synthese/synthese166.html#DokicE09,https://doi.org/10.1007/s11229-007-9245-y +Maureen Donnelly,Mereological vagueness and existential vagueness.,2009,168,Synthese,1,db/journals/synthese/synthese168.html#Donnelly09,https://doi.org/10.1007/s11229-008-9312-z +Markus Pantsar,An empirically feasible approach to the epistemology of arithmetic.,2014,191,Synthese,17,db/journals/synthese/synthese191.html#Pantsar14,https://doi.org/10.1007/s11229-014-0526-y +Roman Frigg,An assessment of the foundational assumptions in high-resolution climate projections: the case of UKCP09.,2015,192,Synthese,12,db/journals/synthese/synthese192.html#FriggSS15,https://doi.org/10.1007/s11229-015-0739-8 +Igor Douven,Can the skepticism debate be resolved?,2009,168,Synthese,1,db/journals/synthese/synthese168.html#Douven09,https://doi.org/10.1007/s11229-008-9311-0 +Anthony Everett,Qualia and vagueness.,1996,106,Synthese,2,db/journals/synthese/synthese106.html#Everett96,https://doi.org/10.1007/BF00413700 +James W. McAllister,What do patterns in empirical data tell us about the structure of the world?,2011,182,Synthese,1,db/journals/synthese/synthese182.html#McAllister11,https://doi.org/10.1007/s11229-009-9613-x +Cedric Paternotte,Being realistic about common knowledge: a Lewisian approach.,2011,183,Synthese,2,db/journals/synthese/synthese183.html#Paternotte11,https://doi.org/10.1007/s11229-010-9770-y +Gerald Vision,Truly Justified Belief.,2005,146,Synthese,3,db/journals/synthese/synthese146.html#Vision05,https://doi.org/10.1007/s11229-004-6228-0 +Robert Northcott,Verisimilitude: a causal approach.,2013,190,Synthese,9,db/journals/synthese/synthese190.html#Northcott13,https://doi.org/10.1007/s11229-011-9895-7 +Michael Wheeler,Two Threats To Representation.,2001,129,Synthese,2,db/journals/synthese/synthese129.html#Wheeler01,https://doi.org/10.1023/A:1013055424231 +Toby Handfield,Unfinkable dispositions.,2008,160,Synthese,2,db/journals/synthese/synthese160.html#Handfield08,https://doi.org/10.1007/s11229-006-9148-3 +Victoria McGeer,Why neuroscience matters to cognitive neuropsychology.,2007,159,Synthese,3,db/journals/synthese/synthese159.html#McGeer07,https://doi.org/10.1007/s11229-007-9234-1 +Mark McEvoy,Causal tracking reliabilism and the Gettier problem.,2014,191,Synthese,17,db/journals/synthese/synthese191.html#McEvoy14,https://doi.org/10.1007/s11229-014-0523-1 +Josefa Toribio,Visual experience: rich but impenetrable.,2018,195,Synthese,8,db/journals/synthese/synthese195.html#Toribio18,https://doi.org/10.1007/s11229-015-0889-8 +Kai P. Spiekermann,Sort out your neighbourhood.,2009,168,Synthese,2,db/journals/synthese/synthese168.html#Spiekermann09,https://doi.org/10.1007/s11229-008-9424-5 +Koray Karaca,A case study in experimental exploration: exploratory data selection at the Large Hadron Collider.,2017,194,Synthese,2,db/journals/synthese/synthese194.html#Karaca17,https://doi.org/10.1007/s11229-016-1206-x +Mikkel Gerken,Warrant and action.,2011,178,Synthese,3,db/journals/synthese/synthese178.html#Gerken11,https://doi.org/10.1007/s11229-009-9655-0 +Jacques Dubucs,On Bolzano's Alleged Explicativism.,2006,150,Synthese,2,db/journals/synthese/synthese150.html#DubucsL06,https://doi.org/10.1007/s11229-004-6265-8 +Yacin Hamami,Logics of questions.,2015,192,Synthese,6,db/journals/synthese/synthese192.html#HamamiR15,https://doi.org/10.1007/s11229-015-0736-y +Andy Hamilton,Memory and self-consciousness: immunity to error through misidentification.,2009,171,Synthese,3,db/journals/synthese/synthese171.html#Hamilton09,https://doi.org/10.1007/s11229-008-9318-6 +Patrick Greenough,On what it is to be in a quandary.,2009,171,Synthese,3,db/journals/synthese/synthese171.html#Greenough09,https://doi.org/10.1007/s11229-008-9317-7 +Cedric Paternotte,Virtues and vices in scientific practice.,2017,194,Synthese,5,db/journals/synthese/synthese194.html#PaternotteI17,https://doi.org/10.1007/s11229-016-1023-2 +Arthur W. Burks,Peirce's evolutionary pragmatic idealism.,1996,106,Synthese,3,db/journals/synthese/synthese106.html#Burks96,https://doi.org/10.1007/BF00413590 +Alistair M. C. Isaac,Modeling without representation.,2013,190,Synthese,16,db/journals/synthese/synthese190.html#Isaac13,https://doi.org/10.1007/s11229-012-0213-9 +Michael Schippers,Probabilistic measures of coherence: from adequacy constraints towards pluralism.,2014,191,Synthese,16,db/journals/synthese/synthese191.html#Schippers14a,https://doi.org/10.1007/s11229-014-0501-7 +Antony Galton,Operators vs. Arguments: The Ins and Outs of Reification.,2006,150,Synthese,3,db/journals/synthese/synthese150.html#Galton06,https://doi.org/10.1007/s11229-005-5516-7 +Neil Levy,Doxastic Responsibility.,2007,155,Synthese,1,db/journals/synthese/synthese155.html#Levy07a,https://doi.org/10.1007/s11229-005-3983-5 +Sanford C. Goldberg,How lucky can you get?,2007,158,Synthese,3,db/journals/synthese/synthese158.html#Goldberg07,https://doi.org/10.1007/s11229-006-9042-z +Gualtiero Piccinini,Computational explanation in neuroscience.,2006,153,Synthese,3,db/journals/synthese/synthese153.html#Piccinini06,https://doi.org/10.1007/s11229-006-9096-y +Jon Pérez Laraudogoitia,An Infinite System with Gravitation.,2003,135,Synthese,3,db/journals/synthese/synthese135.html#Laraudogoitia03,https://doi.org/10.1023/A:1023521907716 +Jean-Pierre Marquis,Category theory and the foundations of mathematics: Philosophical excavations.,1995,103,Synthese,3,db/journals/synthese/synthese103.html#Marquis95,https://doi.org/10.1007/BF01089735 +Gualtiero Piccinini,"The First Computational Theory of Mind and Brain: A Close Look at Mcculloch and Pitts's ""Logical Calculus of Ideas Immanent in Nervous Activity"".",2004,141,Synthese,2,db/journals/synthese/synthese141.html#Piccinini04,https://doi.org/10.1023/B:SYNT.0000043018.52445.3e +S. Luper,Restorative Rigging and the Safe Indication Account.,2006,153,Synthese,1,db/journals/synthese/synthese153.html#Luper06,https://doi.org/10.1007/s11229-005-6399-3 +Michael P. Lynch,Alethic Functionalism and Our Folk Theory of Truth.,2005,145,Synthese,1,db/journals/synthese/synthese145.html#Lynch05,https://doi.org/10.1007/s11229-004-1771-2 +Alexander Rueger,Risk and diversification in theory choice.,1996,109,Synthese,2,db/journals/synthese/synthese109.html#Rueger96,https://doi.org/10.1007/BF00413769 +Aidan Lyon,Deterministic probability: neither chance nor credence.,2011,182,Synthese,3,db/journals/synthese/synthese182.html#Lyon11,https://doi.org/10.1007/s11229-010-9750-2 +Alexandru Baltag,Logics for Epistemic Programs.,2004,139,Synthese,2,db/journals/synthese/synthese139.html#BaltagM04,https://doi.org/10.1023/B:SYNT.0000024912.56773.5e +Bradley Monton,Supererogatory Superluminality.,2001,127,Synthese,3,db/journals/synthese/synthese127.html#MontonK01,https://doi.org/10.1023/A:1010399110654 +Rachael Briggs,The big bad bug bites anti-realists about chance.,2009,167,Synthese,1,db/journals/synthese/synthese167.html#Briggs09,https://doi.org/10.1007/s11229-007-9290-6 +Ulrich Majer,Husserl and Hilbert on Completeness.,1997,110,Synthese,1,db/journals/synthese/synthese110.html#Majer97,https://doi.org/10.1023/A%3A1004962922108 +Matthieu Fontaine,Towards a semantics for the artifactual theory of fiction and beyond.,2014,191,Synthese,3,db/journals/synthese/synthese191.html#FontaineR14,https://doi.org/10.1007/s11229-013-0287-z +Brigitte Falkenburg,What are the phenomena of physics?,2011,182,Synthese,1,db/journals/synthese/synthese182.html#Falkenburg11,https://doi.org/10.1007/s11229-009-9617-6 +Neil Edward Williams,Static And Dynamic Dispositions.,2005,146,Synthese,3,db/journals/synthese/synthese146.html#Williams05,https://doi.org/10.1007/s11229-004-6212-8 +Robert W. Batterman,"The inconsistency of Physics (with a capital ""P"").",2014,191,Synthese,13,db/journals/synthese/synthese191.html#Batterman14,https://doi.org/10.1007/s11229-014-0468-4 +James Montmarquet,Virtue and voluntarism.,2008,161,Synthese,3,db/journals/synthese/synthese161.html#Montmarquet08,https://doi.org/10.1007/s11229-006-9091-3 +Steven French,The Dissolution of Objects: Between Platonism and Phenomenalism.,2003,136,Synthese,1,db/journals/synthese/synthese136.html#FrenchL03a,https://doi.org/10.1023/A:1024116502524 +Cristina Bicchieri,Self-serving biases and public justifications in trust games.,2013,190,Synthese,5,db/journals/synthese/synthese190.html#BicchieriM13,https://doi.org/10.1007/s11229-012-0192-x +Ken Aizawa,Neuroscience and multiple realization: a reply to Bechtel and Mundale.,2009,167,Synthese,3,db/journals/synthese/synthese167.html#Aizawa09a,https://doi.org/10.1007/s11229-008-9388-5 +Paul Teller,The concept of measurement-precision.,2013,190,Synthese,2,db/journals/synthese/synthese190.html#Teller13,https://doi.org/10.1007/s11229-012-0141-8 +Mauro Dorato,Dynamical versus structural explanations in scientific revolutions.,2017,194,Synthese,7,db/journals/synthese/synthese194.html#Dorato17,https://doi.org/10.1007/s11229-014-0546-7 +Matthias Steup,Belief control and intentionality.,2012,188,Synthese,2,db/journals/synthese/synthese188.html#Steup12,https://doi.org/10.1007/s11229-011-9919-3 +Benjamin Rohrs,Supervaluational propositional content.,2017,194,Synthese,6,db/journals/synthese/synthese194.html#Rohrs17,https://doi.org/10.1007/s11229-016-1051-y +Steven I. Miller,Another View of Translation Manuals and the Study of Science.,1997,113,Synthese,2,db/journals/synthese/synthese113.html#MillerF97,https://doi.org/10.1023/A:1005043512600 +Vincent Conitzer,Can rational choice guide us to correct de se beliefs?,2015,192,Synthese,12,db/journals/synthese/synthese192.html#Conitzer15a,https://doi.org/10.1007/s11229-015-0737-x +C. D. Meyers,Psychological investigations: the private language argument and inferences in contemporary cognitive science.,2009,171,Synthese,1,db/journals/synthese/synthese171.html#MeyersW09,https://doi.org/10.1007/s11229-008-9382-y +Haim Gaifman,Reasoning with Limited Resources and Assigning Probabilities to Arithmetical Statements.,2004,140,Synthese,1,db/journals/synthese/synthese140.html#Gaifman04,https://doi.org/10.1023/B:SYNT.0000029944.99888.a7 +Elske van der Vaart,'Theory of mind' in animals: ways to make progress.,2014,191,Synthese,3,db/journals/synthese/synthese191.html#VaartH14,https://doi.org/10.1007/s11229-012-0170-3 +Karl Schafer,Doxastic planning and epistemic internalism.,2014,191,Synthese,12,db/journals/synthese/synthese191.html#Schafer14,https://doi.org/10.1007/s11229-014-0412-7 +Muhammad Ali Khalidi,Natural kinds as nodes in causal networks.,2018,195,Synthese,4,db/journals/synthese/synthese195.html#Khalidi18,https://doi.org/10.1007/s11229-015-0841-y +Gerhard Schurz,Outline of a theory of scientific understanding.,1994,101,Synthese,1,db/journals/synthese/synthese101.html#SchurzL94,https://doi.org/10.1007/BF01063969 +William I. McLaughlin,Thomson's Lamp is Dysfunctional.,1998,116,Synthese,3,db/journals/synthese/synthese116.html#McLaughlin98,https://doi.org/10.1023/A:1005045200162 +Alberto Mura,Hume's Inductive Logic.,1998,115,Synthese,3,db/journals/synthese/synthese115.html#Mura98,https://doi.org/10.1023/A:1005041012179 +Hao Tang 0003,"It is not a something, but not a nothing either! - McDowell on Wittgenstein.",2014,191,Synthese,3,db/journals/synthese/synthese191.html#Tang14,https://doi.org/10.1007/s11229-013-0291-3 +John Divers,Supervenience for operators.,1996,106,Synthese,1,db/journals/synthese/synthese106.html#Divers96,https://doi.org/10.1007/BF00413616 +Elias Tsakas,Correlated-belief equilibrium.,2016,193,Synthese,3,db/journals/synthese/synthese193.html#Tsakas16,https://doi.org/10.1007/s11229-015-0791-4 +Peter J. Lewis,Credence and self-location.,2010,175,Synthese,3,db/journals/synthese/synthese175.html#Lewis10,https://doi.org/10.1007/s11229-009-9528-6 +Deborah K. Heikes,The Bias Paradox: Why it's Not Just for Feminists Anymore.,2004,138,Synthese,3,db/journals/synthese/synthese138.html#Heikes04,https://doi.org/10.1023/B:SYNT.0000016424.47883.b9 +Robert van Rooij,Introduction.,2010,174,Synthese,1,db/journals/synthese/synthese174.html#Rooij10,https://doi.org/10.1007/s11229-009-9682-x +Philippe De Brabanter,Introduction.,2012,184,Synthese,2,db/journals/synthese/synthese184.html#BrabanterK12,https://doi.org/10.1007/s11229-010-9727-1 +Isaac Levi,Jaakko Hintikka.,2004,140,Synthese,1,db/journals/synthese/synthese140.html#Levi04a,https://doi.org/10.1023/B:SYNT.0000029939.13900.04 +Gerd Gigerenzer,How (far) can rationality be naturalized?,2012,187,Synthese,1,db/journals/synthese/synthese187.html#GigerenzerS12,https://doi.org/10.1007/s11229-011-0030-6 +Cezary Cieslinski,Minimalism and the generalisation problem: on Horwich's second solution.,2018,195,Synthese,3,db/journals/synthese/synthese195.html#Cieslinski18,https://doi.org/10.1007/s11229-016-1227-5 +Ilkka Niiniluoto,Truthlikeness misapplied: A reply to Ernest W. Adams.,1994,101,Synthese,2,db/journals/synthese/synthese101.html#Niiniluoto94,https://doi.org/10.1007/BF01064021 +Catarina Dutilh Novaes,Medieval Obligationes as Logical Games of Consistency Maintenance.,2005,145,Synthese,3,db/journals/synthese/synthese145.html#Novaes05,https://doi.org/10.1007/s11229-005-6197-y +Michael Friedman,Kant on geometry and spatial intuition.,2012,186,Synthese,1,db/journals/synthese/synthese186.html#Friedman12,https://doi.org/10.1007/s11229-012-0066-2 +John Michael,Mindreading as social expertise.,2014,191,Synthese,5,db/journals/synthese/synthese191.html#MichaelCO14,https://doi.org/10.1007/s11229-013-0295-z +Brian Leahy,Two arguments for the etiological theory over the modal theory of biological function.,2017,194,Synthese,4,db/journals/synthese/synthese194.html#LeahyH17,https://doi.org/10.1007/s11229-014-0544-9 +Luca Moretti,Ways in which coherence is confirmation conducive.,2007,157,Synthese,3,db/journals/synthese/synthese157.html#Moretti07,https://doi.org/10.1007/s11229-006-9057-5 +Akihiro Kanamori,Preface.,1997,111,Synthese,2,db/journals/synthese/synthese111.html#Kanamori97,https://doi.org/10.1023/A%3A1004910218600 +Michael Esfeld,Moderate structural realism about space-time.,2008,160,Synthese,1,db/journals/synthese/synthese160.html#EsfeldL08,https://doi.org/10.1007/s11229-006-9076-2 +Dominique Tournès,Diagrams in the theory of differential equations (eighteenth to nineteenth centuries).,2012,186,Synthese,1,db/journals/synthese/synthese186.html#Tournes12,https://doi.org/10.1007/s11229-012-0069-z +Katharina Felka,On the presuppositions of number sentences.,2015,192,Synthese,5,db/journals/synthese/synthese192.html#Felka15,https://doi.org/10.1007/s11229-014-0629-5 +Peter J. Lewis,Why The Pessimistic Induction Is A Fallacy.,2001,129,Synthese,3,db/journals/synthese/synthese129.html#Lewis01,https://doi.org/10.1023/A:1013139410613 +John Neil Martin,The lover of the beautiful and the good: Platonic foundations of aesthetic and moral value.,2008,165,Synthese,1,db/journals/synthese/synthese165.html#Martin08,https://doi.org/10.1007/s11229-007-9231-4 +Joseph Shieber,A partial defense of intuition on naturalist grounds.,2012,187,Synthese,2,db/journals/synthese/synthese187.html#Shieber12,https://doi.org/10.1007/s11229-010-9864-6 +Peter Forrest,In Defence Of The Phase Space Picture.,1999,119,Synthese,3,db/journals/synthese/synthese119.html#Forrest99,https://doi.org/10.1023/A:1005105115011 +Mark Jago,Constructing worlds.,2012,189,Synthese,1,db/journals/synthese/synthese189.html#Jago12,https://doi.org/10.1007/s11229-012-0095-x +Yemima Ben-menahem,Explanation and Description: Wittgenstein on Convention.,1998,115,Synthese,1,db/journals/synthese/synthese115.html#Ben-menahem98,https://doi.org/10.1023/A:1005016201213 +Hannes Leitgeb,New life for Carnap's Aufbau?,2011,180,Synthese,2,db/journals/synthese/synthese180.html#Leitgeb11a,https://doi.org/10.1007/s11229-009-9605-x +David Wallace,In Defence of Naiveté: The Conceptual Status of Lagrangian Quantum Field Theory.,2006,151,Synthese,1,db/journals/synthese/synthese151.html#Wallace06,https://doi.org/10.1007/s11229-004-6248-9 +Martina Plümacher,Philosophical research on cognition.,2011,179,Synthese,1,db/journals/synthese/synthese179.html#Plumacher11,https://doi.org/10.1007/s11229-009-9625-6 +Solomon Marcus,Starting from the scenario Euclid-Bolyai-Einstein.,2015,192,Synthese,7,db/journals/synthese/synthese192.html#Marcus15,https://doi.org/10.1007/s11229-013-0346-5 +Raymond Dacey,Inducing fair trade out of hegemonic trade.,1994,100,Synthese,3,db/journals/synthese/synthese100.html#Dacey94a,https://doi.org/10.1007/BF01063913 +Philipp E. Koralus,Can visual cognitive neuroscience learn anything from the philosophy of language? Ambiguity and the topology of neural network models of multistable perception.,2016,193,Synthese,5,db/journals/synthese/synthese193.html#Koralus16,https://doi.org/10.1007/s11229-014-0518-y +Magdalena Balcerak Jackson,"Introduction to the special issue ""The roles of experience in a priori knowledge"".",2015,192,Synthese,9,db/journals/synthese/synthese192.html#Jackson15,https://doi.org/10.1007/s11229-015-0838-6 +Peter B. M. Vranas,New foundations for imperative logic III: A general definition of argument validity.,2016,193,Synthese,6,db/journals/synthese/synthese193.html#Vranas16,https://doi.org/10.1007/s11229-015-0805-2 +Natasha Alechina,Belief ascription under bounded resources.,2010,173,Synthese,2,db/journals/synthese/synthese173.html#AlechinaL10,https://doi.org/10.1007/s11229-009-9706-6 +Nat Hansen,A slugfest of intuitions: contextualism and experimental design.,2013,190,Synthese,10,db/journals/synthese/synthese190.html#Hansen13,https://doi.org/10.1007/s11229-013-0261-9 +Rik Peels,Does doxastic responsibility entail the ability to believe otherwise?,2013,190,Synthese,17,db/journals/synthese/synthese190.html#Peels13,https://doi.org/10.1007/s11229-012-0217-5 +Michael V. Antony,Davidson's Argument for Monism.,2003,135,Synthese,1,db/journals/synthese/synthese135.html#Antony03,https://doi.org/10.1023/A:1022986117864 +Sunny Y. Auyang,Knowledge in science and engineering.,2009,168,Synthese,3,db/journals/synthese/synthese168.html#Auyang09,https://doi.org/10.1007/s11229-008-9453-0 +C. D. McCoy,Prediction in general relativity.,2017,194,Synthese,2,db/journals/synthese/synthese194.html#McCoy17,https://doi.org/10.1007/s11229-015-0954-3 +Daniel Alroy,Inner light.,1995,104,Synthese,1,db/journals/synthese/synthese104.html#Alroy95,https://doi.org/10.1007/BF01063679 +J. Collins,Proxytypes and Linguistic Nativism.,2006,153,Synthese,1,db/journals/synthese/synthese153.html#Collins06,https://doi.org/10.1007/s11229-005-4063-6 +Manuel Gustavo Isaac,Toward a phenomenological epistemology of mathematical logic.,2018,195,Synthese,2,db/journals/synthese/synthese195.html#Isaac18,https://doi.org/10.1007/s11229-016-1249-z +Paul Noordhof,Environment-Dependent Content and the Virtues of Causal Explanation.,2006,149,Synthese,3,db/journals/synthese/synthese149.html#Noordhof06,https://doi.org/10.1007/s11229-005-0579-z +Thomas D. Bontly,What is an Empirical Analysis of Causation?,2006,151,Synthese,2,db/journals/synthese/synthese151.html#Bontly06,https://doi.org/10.1007/s11229-004-2470-8 +Yacin Hamami,The interrogative model of inquiry meets dynamic epistemic logics.,2015,192,Synthese,6,db/journals/synthese/synthese192.html#Hamami15,https://doi.org/10.1007/s11229-014-0460-z +Jon Pérez Laraudogoitia,Infinity Machines and Creation Ex Nihilo.,1998,115,Synthese,2,db/journals/synthese/synthese115.html#Laraudogoitia98,https://doi.org/10.1023/A:1005095006443 +Erik J. Olsson,Guest editor's introduction.,2007,157,Synthese,3,db/journals/synthese/synthese157.html#Olsson07,https://doi.org/10.1007/s11229-006-9061-9 +Joe Salerno,Introduction to knowability and beyond.,2010,173,Synthese,1,db/journals/synthese/synthese173.html#Salerno10,https://doi.org/10.1007/s11229-009-9680-z +Arezoo Islami,A match not made in heaven: on the applicability of mathematics in physics.,2017,194,Synthese,12,db/journals/synthese/synthese194.html#Islami17,https://doi.org/10.1007/s11229-016-1171-4 +Katrin Schulz,A Pragmatic Solution for the Paradox of Free Choice Permission.,2005,147,Synthese,2,db/journals/synthese/synthese147.html#Schulz05,https://doi.org/10.1007/s11229-005-1353-y +Niko Strobach,An angry young man - A close reading of Arthur Prior's contribution to social ontology.,2016,193,Synthese,11,db/journals/synthese/synthese193.html#Strobach16,https://doi.org/10.1007/s11229-015-0901-3 +Vadim Batitsky,When good theories make bad predictions.,2007,157,Synthese,1,db/journals/synthese/synthese157.html#BatitskyD07,https://doi.org/10.1007/s11229-006-9033-0 +Trent Dougherty,Clarity about concessive knowledge attributions: reply to Dodd.,2011,181,Synthese,3,db/journals/synthese/synthese181.html#DoughertyR11,https://doi.org/10.1007/s11229-010-9713-7 +Tamer Nawar,Aristotelian finitism.,2015,192,Synthese,8,db/journals/synthese/synthese192.html#Nawar15,https://doi.org/10.1007/s11229-015-0827-9 +Sándor Jenei,A classification of certain group-like FLe-chains.,2015,192,Synthese,7,db/journals/synthese/synthese192.html#JeneiM15,https://doi.org/10.1007/s11229-014-0409-2 +Günther Eder,Formal reconstructions of St. Anselm's ontological argument.,2015,192,Synthese,9,db/journals/synthese/synthese192.html#EderR15,https://doi.org/10.1007/s11229-015-0682-8 +Giulia Felappi,Why fuss about these quirks of the vernacular? Propositional attitude sentences in Prior's nachlass.,2016,193,Synthese,11,db/journals/synthese/synthese193.html#Felappi16,https://doi.org/10.1007/s11229-015-0903-1 +Leo K. C. Cheung,The Tractarian Operation N and Expressive Completeness.,2000,123,Synthese,2,db/journals/synthese/synthese123.html#Cheung00,https://doi.org/10.1023/A:1005286219444 +Thomas Breuer,Subjective decoherence in quantum measurements.,1996,107,Synthese,1,db/journals/synthese/synthese107.html#Breuer96,https://doi.org/10.1007/BF00413900 +Ryan Dawson,Wittgenstein on pure and applied mathematics.,2014,191,Synthese,17,db/journals/synthese/synthese191.html#Dawson14,https://doi.org/10.1007/s11229-014-0520-4 +Jonathan Weisberg,Locating IBE in the Bayesian framework.,2009,167,Synthese,1,db/journals/synthese/synthese167.html#Weisberg09,https://doi.org/10.1007/s11229-008-9305-y +Cara Spencer,Belief And The Principle Of Identity.,2001,129,Synthese,3,db/journals/synthese/synthese129.html#Spencer01,https://doi.org/10.1023/A:1013174018923 +Chunghyoung Lee,The staccato roller coaster: a simple physical model of the staccato run.,2013,190,Synthese,3,db/journals/synthese/synthese190.html#Lee13,https://doi.org/10.1007/s11229-011-0049-8 +Sean Crawford,Quantifiers and propositional attitudes: Quine revisited.,2008,160,Synthese,1,db/journals/synthese/synthese160.html#Crawford08,https://doi.org/10.1007/s11229-006-9080-6 +Anthony F. Peressini,Confirming Mathematical Theories: an Ontologically Agnostic Stance.,1999,118,Synthese,2,db/journals/synthese/synthese118.html#Peressini99,https://doi.org/10.1023/A:1005158202218 +Cory D. Wright,On the Functionalization of Pluralist Approaches to Truth.,2005,145,Synthese,1,db/journals/synthese/synthese145.html#Wright05a,https://doi.org/10.1007/s11229-004-5863-9 +Jonathan Lawry,Appropriateness measures: an uncertainty model for vague concepts.,2008,161,Synthese,2,db/journals/synthese/synthese161.html#Lawry08,https://doi.org/10.1007/s11229-007-9158-9 +Kai Draper,Diachronic Dutch Books and Sleeping Beauty.,2008,164,Synthese,2,db/journals/synthese/synthese164.html#DraperP08,https://doi.org/10.1007/s11229-007-9226-1 +Fabio Paglieri,Changing minds: the role of beliefs in cognitive dynamics.,2007,155,Synthese,2,db/journals/synthese/synthese155.html#Paglieri07,https://doi.org/10.1007/s11229-006-9146-5 +Dustin Locke,Implicature and non-local pragmatic encroachment.,2017,194,Synthese,2,db/journals/synthese/synthese194.html#Locke17,https://doi.org/10.1007/s11229-015-0965-0 +Erich H. Reck,Dedekind's Structuralism: An Interpretation and Partial Defense.,2003,137,Synthese,3,db/journals/synthese/synthese137.html#Reck03,https://doi.org/10.1023/B:SYNT.0000004903.11236.91 +Pierre Poirier,Finding a place for elimination in inter-level reductionist activities: Reply to Wimsatt.,2006,151,Synthese,3,db/journals/synthese/synthese151.html#Poirier06,https://doi.org/10.1007/s11229-006-9018-z +Veikko Rantala,Knowledge Representation: Two Kinds Of Emergence.,2001,129,Synthese,2,db/journals/synthese/synthese129.html#Rantala01,https://doi.org/10.1023/A:1013063626048 +James Mattingly,Projectible predicates in analogue and simulated systems.,2009,169,Synthese,3,db/journals/synthese/synthese169.html#MattinglyW09,https://doi.org/10.1007/s11229-008-9433-4 +Jordan Baker,Rejecting Pereboom's empirical objection to agent-causation.,2017,194,Synthese,8,db/journals/synthese/synthese194.html#Baker17,https://doi.org/10.1007/s11229-016-1094-0 +Martin Fischer,Some remarks on restricting the knowability principle.,2013,190,Synthese,1,db/journals/synthese/synthese190.html#Fischer13,https://doi.org/10.1007/s11229-010-9833-0 +Christoph Lehner,What IT Feels like to be in a Superposition. And Why.,1997,110,Synthese,2,db/journals/synthese/synthese110.html#Lehner97,https://doi.org/10.1023/A%3A1004981126055 +Christoph Leutge,Economics in Philosophy of Science: A Dismal Contribution?,2004,140,Synthese,3,db/journals/synthese/synthese140.html#Leutge04,https://doi.org/10.1023/B:SYNT.0000031318.21858.dd +William Mark Goodwin,Coffa's Kant and the evolution of accounts of mathematical necessity.,2010,172,Synthese,3,db/journals/synthese/synthese172.html#Goodwin10,https://doi.org/10.1007/s11229-008-9397-4 +David B. Resnik,Laws and Development.,1997,112,Synthese,1,db/journals/synthese/synthese112.html#Resnik97,https://doi.org/10.1023/A%3A1004968312300 +Mathieu Beirlaen,A logic for the discovery of deterministic causal regularities.,2018,195,Synthese,1,db/journals/synthese/synthese195.html#BeirlaenLP18,https://doi.org/10.1007/s11229-016-1222-x +Ivano Ciardelli,Questions as information types.,2018,195,Synthese,1,db/journals/synthese/synthese195.html#Ciardelli18,https://doi.org/10.1007/s11229-016-1221-y +Manuel de Pinedo,Anomalous Monism: Oscillating between Dogmas.,2006,148,Synthese,1,db/journals/synthese/synthese148.html#Pinedo06,https://doi.org/10.1007/s11229-004-6218-2 +Kepa Korta,The pragmatic circle.,2008,165,Synthese,3,db/journals/synthese/synthese165.html#KortaP08,https://doi.org/10.1007/s11229-007-9188-3 +Luigi Scorzato,On the role of simplicity in science.,2013,190,Synthese,14,db/journals/synthese/synthese190.html#Scorzato13,https://doi.org/10.1007/s11229-012-0101-3 +Daniel M. Kraemer,Natural probabilistic information.,2015,192,Synthese,9,db/journals/synthese/synthese192.html#Kraemer15,https://doi.org/10.1007/s11229-015-0692-6 +Jonathan Wright,Rigged lotteries: a diachronic problem for reducing belief to credence.,2018,195,Synthese,3,db/journals/synthese/synthese195.html#Wright18a,https://doi.org/10.1007/s11229-016-1275-x +Nate Charlow,What we know and what to do.,2013,190,Synthese,12,db/journals/synthese/synthese190.html#Charlow13,https://doi.org/10.1007/s11229-011-9974-9 +Simon J. Evnine,Believing Conjunctions.,1999,118,Synthese,2,db/journals/synthese/synthese118.html#Evnine99,https://doi.org/10.1023/A:1005114419965 +Sam Baron,Metaphysics as fairness.,2016,193,Synthese,7,db/journals/synthese/synthese193.html#Baron16a,https://doi.org/10.1007/s11229-015-0842-x +Newton C. A. da Costa,A formal framework for the study of the notion of undefined particle number in quantum mechanics.,2015,192,Synthese,2,db/journals/synthese/synthese192.html#CostaH15,https://doi.org/10.1007/s11229-014-0583-2 +Wayne Wright,Distracted Drivers and Unattended Experience.,2005,144,Synthese,1,db/journals/synthese/synthese144.html#Wright05,https://doi.org/10.1007/s11229-005-9128-z +Christopher Hitchcock,Beauty and the Bets.,2004,139,Synthese,3,db/journals/synthese/synthese139.html#Hitchcock04,https://doi.org/10.1023/B:SYNT.0000024889.29125.c0 +Michael H. G. Hoffmann,Philosophy of and as interdisciplinarity.,2013,190,Synthese,11,db/journals/synthese/synthese190.html#HoffmannSN13,https://doi.org/10.1007/s11229-012-0214-8 +Bernhard Weiss,Proof and Canonical Proof.,1997,113,Synthese,2,db/journals/synthese/synthese113.html#Weiss97,https://doi.org/10.1023/A:1005067014400 +Robert D. Cousins,The Jeffreys-Lindley paradox and discovery criteria in high energy physics.,2017,194,Synthese,2,db/journals/synthese/synthese194.html#Cousins17,https://doi.org/10.1007/s11229-014-0525-z +Christian Beyer,"Hussearle's Representationalism and the ""hypothesis of the Background"".",1997,112,Synthese,3,db/journals/synthese/synthese112.html#Beyer97,https://doi.org/10.1023/A%3A1004992424269 +Emil Frederik Lundbjerg Moeller,Consuming knowledge claims across contexts.,2015,192,Synthese,12,db/journals/synthese/synthese192.html#Moeller15,https://doi.org/10.1007/s11229-015-0732-2 +Giuseppe Primiero,Majority merging by adaptive counting.,2008,165,Synthese,2,db/journals/synthese/synthese165.html#PrimieroM08,https://doi.org/10.1007/s11229-008-9370-2 +Fabrice Pataut,"Comments on ""Parsimony and inference to the best mathematical explanation"".",2016,193,Synthese,2,db/journals/synthese/synthese193.html#Pataut16,https://doi.org/10.1007/s11229-015-0706-4 +Edwin D. Mares,General information in relevant logic.,2009,167,Synthese,2,db/journals/synthese/synthese167.html#Mares09,https://doi.org/10.1007/s11229-008-9412-9 +Patrick McGivern,Reductive levels and multi-scale structure.,2008,165,Synthese,1,db/journals/synthese/synthese165.html#McGivern08,https://doi.org/10.1007/s11229-007-9232-3 +Charles W. Harvey,Liberal Indoctrination and the Problem of Community.,1997,111,Synthese,1,db/journals/synthese/synthese111.html#Harvey97,https://doi.org/10.1023/A%3A1004949413665 +Victor Pambuccian,Axiomatizations of Hyperbolic Geometry: A Comparison Based on Language and Quantifier Type Complexity.,2002,133,Synthese,3,db/journals/synthese/synthese133.html#Pambuccian02,https://doi.org/10.1023/A:1021294808742 +Poul Lübcke,A Semantic Interpretation of Husserl's Epoché.,1999,118,Synthese,1,db/journals/synthese/synthese118.html#Lubcke99,https://doi.org/10.1023/A:1005101213436 +Albert Solé,Introduction: space-time and the wave function.,2015,192,Synthese,10,db/journals/synthese/synthese192.html#SoleH15,https://doi.org/10.1007/s11229-015-0826-x +Pierre-Hugues Beauchemin,Autopsy of measurements with the ATLAS detector at the LHC.,2017,194,Synthese,2,db/journals/synthese/synthese194.html#Beauchemin17,https://doi.org/10.1007/s11229-015-0944-5 +Peter øhrstrøm,Preface.,2012,188,Synthese,3,db/journals/synthese/synthese188.html#OhrstromHS12,https://doi.org/10.1007/s11229-011-9934-4 +Eric Barnes,Inference to the loveliest explanation.,1995,103,Synthese,2,db/journals/synthese/synthese103.html#Barnes95,https://doi.org/10.1007/BF01090049 +Sandy Berkovski,Reichenbach and Weyl on apriority and mathematical applicability.,2011,181,Synthese,1,db/journals/synthese/synthese181.html#Berkovski11,https://doi.org/10.1007/s11229-009-9591-z +Martin Montminy,The role of context in contextualism.,2013,190,Synthese,12,db/journals/synthese/synthese190.html#Montminy13,https://doi.org/10.1007/s11229-011-9975-8 +Anjan Chakravartty,Reflections on new thinking about scientific realism.,2017,194,Synthese,9,db/journals/synthese/synthese194.html#Chakravartty17a,https://doi.org/10.1007/s11229-017-1514-9 +Ruth Weintraub,On Sharp Boundaries for Vague Terms.,2004,138,Synthese,2,db/journals/synthese/synthese138.html#Weintraub04,https://doi.org/10.1023/B:SYNT.0000013242.20414.43 +Jenann Ismael,How do causes depend on us? The many faces of perspectivalism.,2016,193,Synthese,1,db/journals/synthese/synthese193.html#Ismael16,https://doi.org/10.1007/s11229-015-0757-6 +Stephen Jacobson,Externalism and Action-Guiding Epistemic Norms.,1997,110,Synthese,3,db/journals/synthese/synthese110.html#Jacobson97,https://doi.org/10.1023/A%3A1004945312756 +Sebastian Lutz,Carnap on empirical significance.,2017,194,Synthese,1,db/journals/synthese/synthese194.html#Lutz17,https://doi.org/10.1007/s11229-014-0561-8 +Sven Ove Hansson,Decision theoretic foundations for axioms of rational preference.,1996,109,Synthese,3,db/journals/synthese/synthese109.html#Hansson96,https://doi.org/10.1007/BF00413867 +Nina Gierasimczuk,Bridging learning theory and dynamic epistemic logic.,2009,169,Synthese,2,db/journals/synthese/synthese169.html#Gierasimczuk09,https://doi.org/10.1007/s11229-009-9549-1 +Johan van Benthem,Editorial.,2007,154,Synthese,1,db/journals/synthese/synthese154.html#BenthemHS07,https://doi.org/10.1007/s11229-006-0014-0 +Elizabeth S. Radcliffe,Moral internalism and moral cognitivism in Hume's metaethics.,2006,152,Synthese,3,db/journals/synthese/synthese152.html#Radcliffe06,https://doi.org/10.1007/s11229-006-9003-6 +Olivier Darrigol,The modular structure of physical theories.,2008,162,Synthese,2,db/journals/synthese/synthese162.html#Darrigol08,https://doi.org/10.1007/s11229-007-9181-x +Alexandru Baltag,Probabilistic dynamic belief revision.,2008,165,Synthese,2,db/journals/synthese/synthese165.html#BaltagS08,https://doi.org/10.1007/s11229-008-9369-8 +Mark B. Couch,Mechanisms and constitutive relevance.,2011,183,Synthese,3,db/journals/synthese/synthese183.html#Couch11,https://doi.org/10.1007/s11229-011-9882-z +Jean Paul Van Bendegem,Inconsistency in mathematics and the mathematics of inconsistency.,2014,191,Synthese,13,db/journals/synthese/synthese191.html#Bendegem14,https://doi.org/10.1007/s11229-014-0474-6 +Lucas Mix,Nested explanation in Aristotle and Mayr.,2016,193,Synthese,6,db/journals/synthese/synthese193.html#Mix16,https://doi.org/10.1007/s11229-015-0811-4 +John Halpin,Briggs on antirealist accounts of scientific law.,2013,190,Synthese,16,db/journals/synthese/synthese190.html#Halpin13,https://doi.org/10.1007/s11229-012-0202-z +Patrick Blackburn,Arthur Prior and 'Now'.,2016,193,Synthese,11,db/journals/synthese/synthese193.html#BlackburnJ16,https://doi.org/10.1007/s11229-015-0921-z +Brian Kim,How to expect a surprising exam.,2017,194,Synthese,8,db/journals/synthese/synthese194.html#KimV17,https://doi.org/10.1007/s11229-016-1096-y +Daniel Lassiter,Adjectival vagueness in a Bayesian model of interpretation.,2017,194,Synthese,10,db/journals/synthese/synthese194.html#LassiterG17,https://doi.org/10.1007/s11229-015-0786-1 +Samir Okasha,Darwinian Metaphysics: Species And The Question Of Essentialism.,2002,131,Synthese,2,db/journals/synthese/synthese131.html#Okasha02,https://doi.org/10.1023/A:1015731831011 +John Cantwell,Conditionals in reasoning.,2009,171,Synthese,1,db/journals/synthese/synthese171.html#Cantwell09,https://doi.org/10.1007/s11229-008-9379-6 +A. N. Prior,The logic of obligation and the obligations of the logician.,2012,188,Synthese,3,db/journals/synthese/synthese188.html#Prior12b,https://doi.org/10.1007/s11229-011-9935-3 +William Craig,Elimination problems in logic: a brief history.,2008,164,Synthese,3,db/journals/synthese/synthese164.html#Craig08,https://doi.org/10.1007/s11229-008-9352-4 +Stephan Hartmann,Editorial: Formal epistemology meets experimental philosophy.,2013,190,Synthese,8,db/journals/synthese/synthese190.html#HartmannLM13,https://doi.org/10.1007/s11229-013-0269-1 +Robert Frodeman,Philosophy dedisciplined.,2013,190,Synthese,11,db/journals/synthese/synthese190.html#Frodeman13,https://doi.org/10.1007/s11229-012-0181-0 +Samuel A. Richmond,A simplification of the theory of simplicity.,1996,107,Synthese,3,db/journals/synthese/synthese107.html#Richmond96,https://doi.org/10.1007/BF00413842 +Anders Kraal,The aim of Russell's early logicism: a reinterpretation.,2014,191,Synthese,7,db/journals/synthese/synthese191.html#Kraal14,https://doi.org/10.1007/s11229-013-0342-9 +Axel Gelfert,Strategies of model-building in condensed matter physics: trade-offs as a demarcation criterion between physics and biology?,2013,190,Synthese,2,db/journals/synthese/synthese190.html#Gelfert13,https://doi.org/10.1007/s11229-012-0145-4 +Mathias Risse,What Is Rational About Nash Equilibria?,2000,124,Synthese,3,db/journals/synthese/synthese124.html#Risse00,https://doi.org/10.1023/A:1005259701040 +Andrzej Wisniewski,Inferential erotetic logic meets inquisitive semantics.,2015,192,Synthese,6,db/journals/synthese/synthese192.html#WisniewskiL15,https://doi.org/10.1007/s11229-013-0355-4 +Assaf Sharon,Epistemic closure under deductive inference: what is it and can we afford it?,2013,190,Synthese,14,db/journals/synthese/synthese190.html#SharonS13,https://doi.org/10.1007/s11229-012-0078-y +Alan Hájek,The reference class problem is your problem too.,2007,156,Synthese,3,db/journals/synthese/synthese156.html#Hajek07,https://doi.org/10.1007/s11229-006-9138-5 +Daniel Kostic,The topological realization.,2018,195,Synthese,1,db/journals/synthese/synthese195.html#Kostic18a,https://doi.org/10.1007/s11229-016-1248-0 +Peter Gildenhuys,Classical population genetics and the semantic approach to scientific theories.,2013,190,Synthese,2,db/journals/synthese/synthese190.html#Gildenhuys13,https://doi.org/10.1007/s11229-012-0146-3 +Vassilios Karakostas,Contextual semantics in quantum mechanics from a categorical point of view.,2017,194,Synthese,3,db/journals/synthese/synthese194.html#KarakostasZ17,https://doi.org/10.1007/s11229-015-0970-3 +Carl Gillett,Moving beyond the subset model of realization: The problem of qualitative distinctness in the metaphysics of science.,2010,177,Synthese,2,db/journals/synthese/synthese177.html#Gillett10,https://doi.org/10.1007/s11229-010-9840-1 +Evan Selinger,Towards a reflexive framework for development: technology transfer after the empirical turn.,2009,168,Synthese,3,db/journals/synthese/synthese168.html#Selinger09,https://doi.org/10.1007/s11229-008-9450-3 +Takuya Masuzawa,Erratum to: Iterative information update and stability of strategies.,2011,183,Synthese,2,db/journals/synthese/synthese183.html#MasuzawaH11a,https://doi.org/10.1007/s11229-010-9858-4 +Anthony Bolos,A sensitive virtue epistemology.,2018,195,Synthese,3,db/journals/synthese/synthese195.html#BolosC18,https://doi.org/10.1007/s11229-016-1273-z +Alex Madva,Why implicit attitudes are (probably) not beliefs.,2016,193,Synthese,8,db/journals/synthese/synthese193.html#Madva16,https://doi.org/10.1007/s11229-015-0874-2 +Jonathan Tallant,Against mereological nihilism.,2014,191,Synthese,7,db/journals/synthese/synthese191.html#Tallant14,https://doi.org/10.1007/s11229-013-0343-8 +Joel Pust,Horgan on Sleeping Beauty.,2008,160,Synthese,1,db/journals/synthese/synthese160.html#Pust08,https://doi.org/10.1007/s11229-006-9102-4 +Sara Kier Praëm,Philosophical thought experiments as heuristics for theory discovery.,2015,192,Synthese,9,db/journals/synthese/synthese192.html#PraemS15,https://doi.org/10.1007/s11229-015-0684-6 +Sándor Jenei,Erratum to: A classification of certain group-like FLe-chains.,2016,193,Synthese,1,db/journals/synthese/synthese193.html#JeneiM16,https://doi.org/10.1007/s11229-015-0778-1 +Jaakko Hintikka,Editorial Note.,1998,114,Synthese,1,db/journals/synthese/synthese114.html#Hintikka98,https://doi.org/10.1023/A:1005002526198 +Kelvin J. McQueen,Mass additivity and a priori entailment.,2015,192,Synthese,5,db/journals/synthese/synthese192.html#McQueen15,https://doi.org/10.1007/s11229-014-0627-7 +Dunja Seselja,Epistemic justification in the context of pursuit: a coherentist approach.,2014,191,Synthese,13,db/journals/synthese/synthese191.html#SeseljaS14,https://doi.org/10.1007/s11229-014-0476-4 +Erich Kummerfeld,Model change and reliability in scientific inference.,2014,191,Synthese,12,db/journals/synthese/synthese191.html#KummerfeldD14,https://doi.org/10.1007/s11229-014-0408-3 +Igor Douven,Proper bootstrapping.,2013,190,Synthese,1,db/journals/synthese/synthese190.html#DouvenK13,https://doi.org/10.1007/s11229-012-0115-x +Edmund T. Rolls,Representations In The Brain.,2001,129,Synthese,2,db/journals/synthese/synthese129.html#Rolls01,https://doi.org/10.1023/A:1013059525140 +Robin McKenna,Normative scorekeeping.,2014,191,Synthese,3,db/journals/synthese/synthese191.html#McKenna14,https://doi.org/10.1007/s11229-013-0293-1 +Scott Soames,Revisionism about reference: A reply to Smith.,1995,104,Synthese,2,db/journals/synthese/synthese104.html#Soames95,https://doi.org/10.1007/BF01063870 +Conor McHugh,Self-knowledge and the KK principle.,2010,173,Synthese,3,db/journals/synthese/synthese173.html#McHugh10,https://doi.org/10.1007/s11229-008-9404-9 +Matthew H. Slater,Anchoring in ecosystemic kinds.,2018,195,Synthese,4,db/journals/synthese/synthese195.html#Slater18,https://doi.org/10.1007/s11229-016-1302-y +John Symons,Editorial Note.,2004,138,Synthese,1,db/journals/synthese/synthese138.html#Symons04,https://doi.org/10.1023/B:SYNT.0000012340.55768.ee +David Goforth,Effective choice in all the symmetric 2 and** 2 games.,2012,187,Synthese,2,db/journals/synthese/synthese187.html#GoforthR12,https://doi.org/10.1007/s11229-010-9862-8 +Tim Kenyon,False polarization: debiasing as applied social epistemology.,2014,191,Synthese,11,db/journals/synthese/synthese191.html#Kenyon14,https://doi.org/10.1007/s11229-014-0438-x +W. R. Webster,A Case of Mind/Brain Identity: One Small Bridge for the Explanatory Gap.,2002,131,Synthese,2,db/journals/synthese/synthese131.html#Webster02,https://doi.org/10.1023/A:1015726204005 +Marcello Guarini,Critical notice: BonJour and Sosa on epistemic justification.,2007,159,Synthese,1,db/journals/synthese/synthese159.html#Guarini07,https://doi.org/10.1007/s11229-007-9229-y +Marie Guillot,The limits of selflessness: semantic relativism and the epistemology of de se thoughts.,2013,190,Synthese,10,db/journals/synthese/synthese190.html#Guillot13,https://doi.org/10.1007/s11229-013-0262-8 +Tomoyuki Yamada,Logical dynamics of some speech acts that affect obligations and preferences.,2008,165,Synthese,2,db/journals/synthese/synthese165.html#Yamada08,https://doi.org/10.1007/s11229-008-9368-9 +Markus E. Schlosser,The neuroscientific study of free will: A diagnosis of the controversy.,2014,191,Synthese,2,db/journals/synthese/synthese191.html#Schlosser14,https://doi.org/10.1007/s11229-013-0312-2 +Stefania Centrone,Notes on Mally's deontic logic and the collapse of $${\varvec{Seinsollen}}$$ and $${\varvec{Sein}}$$.,2013,190,Synthese,18,db/journals/synthese/synthese190.html#Centrone13,https://doi.org/10.1007/s11229-013-0251-y +Jeffrey Helzner,On the representation of error.,2012,186,Synthese,2,db/journals/synthese/synthese186.html#Helzner12,https://doi.org/10.1007/s11229-011-0001-y +Michèle Friend,On the epistemological significance of the hungarian project.,2015,192,Synthese,7,db/journals/synthese/synthese192.html#Friend15,https://doi.org/10.1007/s11229-014-0608-x +Athanasios Raftopoulos,Perceptual systems and realism.,2008,164,Synthese,1,db/journals/synthese/synthese164.html#Raftopoulos08,https://doi.org/10.1007/s11229-007-9216-3 +Alyssa Ney,Fundamental physical ontologies and the constraint of empirical coherence: a defense of wave function realism.,2015,192,Synthese,10,db/journals/synthese/synthese192.html#Ney15,https://doi.org/10.1007/s11229-014-0633-9 +Francesca Poggiolesi,Display calculi and other modal calculi: a comparison.,2010,173,Synthese,3,db/journals/synthese/synthese173.html#Poggiolesi10,https://doi.org/10.1007/s11229-008-9425-4 +Gerhard Schurz,Structural correspondence between theories and convergence to truth.,2011,179,Synthese,2,db/journals/synthese/synthese179.html#Schurz11,https://doi.org/10.1007/s11229-010-9784-5 +Stephen Jacobson,Externalism and Action-Guiding Epistemic Norms.,1997,110,Synthese,3,db/journals/synthese/synthese110.html#Jacobson97a,https://doi.org/10.1023/A%3A1004941211847 +George Masterton,What to do with a forecast?,2014,191,Synthese,8,db/journals/synthese/synthese191.html#Masterton14,https://doi.org/10.1007/s11229-013-0384-z +K. Aizawa,The Biochemistry of Memory Consolidation: A Model System for the Philosophy of Mind.,2007,155,Synthese,1,db/journals/synthese/synthese155.html#Aizawa07,https://doi.org/10.1007/s11229-005-2566-9 +Victor Gijsbers,How agency can solve interventionism's problem of circularity.,2014,191,Synthese,8,db/journals/synthese/synthese191.html#GijsbersB14,https://doi.org/10.1007/s11229-013-0366-1 +Seiki Akama,Partial and paraconsistent approaches to future contingents in tense logic.,2016,193,Synthese,11,db/journals/synthese/synthese193.html#AkamaMK16,https://doi.org/10.1007/s11229-015-0905-z +Darrell P. Rowbottom,Aimless science.,2014,191,Synthese,6,db/journals/synthese/synthese191.html#Rowbottom14,https://doi.org/10.1007/s11229-013-0319-8 +Derk Pereboom,Self-understanding in Kant's Transcendental Deduction.,1995,103,Synthese,1,db/journals/synthese/synthese103.html#Pereboom95,https://doi.org/10.1007/BF01063717 +Brian P. McLaughlin,Systematicity redux.,2009,170,Synthese,2,db/journals/synthese/synthese170.html#McLaughlin09,https://doi.org/10.1007/s11229-009-9582-0 +Alessio Plebe,Neural plasticity and concepts ontogeny.,2016,193,Synthese,12,db/journals/synthese/synthese193.html#PlebeM16,https://doi.org/10.1007/s11229-016-1131-z +Kathrin Koslicki,Isolation and Non-Arbitrary Division: Frege's Two Criteria for Counting.,1997,112,Synthese,3,db/journals/synthese/synthese112.html#Koslicki97,https://doi.org/10.1023/A%3A1004903625876 +Daniel D. Hutto,Getting into predictive processing's great guessing game: Bootstrap heaven or hell?,2018,195,Synthese,6,db/journals/synthese/synthese195.html#Hutto18,https://doi.org/10.1007/s11229-017-1385-0 +Gordon Michael Purves,Finding truth in fictions: identifying non-fictions in imaginary cracks.,2013,190,Synthese,2,db/journals/synthese/synthese190.html#Purves13,https://doi.org/10.1007/s11229-012-0144-5 +Wing-Chun Wong,On A Semantic Interpretation Of Kant's Concept Of Number.,1999,121,Synthese,3,db/journals/synthese/synthese121.html#Wong99,https://doi.org/10.1023/A:1005106218147 +Hans van Ditmarsch,Dynamics of lying.,2014,191,Synthese,5,db/journals/synthese/synthese191.html#Ditmarsch14,https://doi.org/10.1007/s11229-013-0275-3 +Patrick Hawley,What justifies that?,2008,160,Synthese,1,db/journals/synthese/synthese160.html#Hawley08,https://doi.org/10.1007/s11229-006-9078-0 +Brice Halimi,Diagrams as sketches.,2012,186,Synthese,1,db/journals/synthese/synthese186.html#Halimi12,https://doi.org/10.1007/s11229-011-9986-5 +Giovanni Merlo,Multiple reference and vague objects.,2017,194,Synthese,7,db/journals/synthese/synthese194.html#Merlo17,https://doi.org/10.1007/s11229-016-1075-3 +Justine Jacot,GIRL special issue introduction.,2018,195,Synthese,2,db/journals/synthese/synthese195.html#JacotP18,https://doi.org/10.1007/s11229-017-1656-9 +Márton Gömöri,Formal statement of the special principle of relativity.,2015,192,Synthese,7,db/journals/synthese/synthese192.html#GomoriS15,https://doi.org/10.1007/s11229-013-0374-1 +Michael N. Keas,Systematizing the theoretical virtues.,2018,195,Synthese,6,db/journals/synthese/synthese195.html#Keas18,https://doi.org/10.1007/s11229-017-1355-6 +Lars Hallnäs,On the Proof-theoretic Foundation of General Definition Theory.,2006,148,Synthese,3,db/journals/synthese/synthese148.html#Hallnas06,https://doi.org/10.1007/s11229-004-6291-6 +Philip Kremer,Indeterminacy of fair infinite lotteries.,2014,191,Synthese,8,db/journals/synthese/synthese191.html#Kremer14,https://doi.org/10.1007/s11229-013-0364-3 +William Jaworski,The logic of how-questions.,2009,166,Synthese,1,db/journals/synthese/synthese166.html#Jaworski09,https://doi.org/10.1007/s11229-007-9269-3 +Franz Dietrich,Reasons for (prior) belief in Bayesian epistemology.,2013,190,Synthese,5,db/journals/synthese/synthese190.html#DietrichL13,https://doi.org/10.1007/s11229-012-0224-6 +Igor Douven,Measuring coherence.,2007,156,Synthese,3,db/journals/synthese/synthese156.html#DouvenM07,https://doi.org/10.1007/s11229-006-9131-z +F. Dizadji-Bahmani,Confirmation and reduction: a Bayesian account.,2011,179,Synthese,2,db/journals/synthese/synthese179.html#Dizadji-BahmaniFH11,https://doi.org/10.1007/s11229-010-9775-6 +Sergei N. Artëmov,Discovering knowability: a semantic analysis.,2013,190,Synthese,16,db/journals/synthese/synthese190.html#ArtemovP13,https://doi.org/10.1007/s11229-012-0168-x +Paul Bartha,The Shooting-Room Paradox and Conditionalizing on Measurably Challenged Sets.,1999,118,Synthese,3,db/journals/synthese/synthese118.html#BarthaH99,https://doi.org/10.1023/A:1005100407551 +Rob Clifton,The definability of objective becoming in Minkowski spacetime.,1995,103,Synthese,3,db/journals/synthese/synthese103.html#CliftonH95,https://doi.org/10.1007/BF01089733 +Charles Parsons,Reason and Intuition.,2000,125,Synthese,3,db/journals/synthese/synthese125.html#Parsons00,https://doi.org/10.1023/A:1005204911291 +David Liggins,Grounding and the indispensability argument.,2016,193,Synthese,2,db/journals/synthese/synthese193.html#Liggins16,https://doi.org/10.1007/s11229-014-0478-2 +Jelle Bruineberg,The anticipating brain is not a scientist: the free-energy principle from an ecological-enactive perspective.,2018,195,Synthese,6,db/journals/synthese/synthese195.html#BruinebergKR18,https://doi.org/10.1007/s11229-016-1239-1 +John Heil,Dispositions.,2005,144,Synthese,3,db/journals/synthese/synthese144.html#Heil05,https://doi.org/10.1007/s11229-005-5864-3 +Gustavo Cevolani,Verisimilitude and belief change for nomic conjunctive theories.,2013,190,Synthese,16,db/journals/synthese/synthese190.html#CevolaniFK13,https://doi.org/10.1007/s11229-012-0165-0 +Christopher Gauker,Zero tolerance for pragmatics.,2008,165,Synthese,3,db/journals/synthese/synthese165.html#Gauker08,https://doi.org/10.1007/s11229-007-9189-2 +David Cunning,Agency And Consciousness.,1999,120,Synthese,2,db/journals/synthese/synthese120.html#Cunning99,https://doi.org/10.1023/A:1005192006642 +Sebastian Lutz,Generalizing empirical adequacy I: multiplicity and approximation.,2014,191,Synthese,14,db/journals/synthese/synthese191.html#Lutz14a,https://doi.org/10.1007/s11229-014-0440-3 +Johan van Benthem,Modelling simultaneous games in dynamic logic.,2008,165,Synthese,2,db/journals/synthese/synthese165.html#BenthemGL08,https://doi.org/10.1007/s11229-008-9390-y +W. R. Webster,Revelation and Transparency in Colour Vision Refuted: A Case Oo Mind/Brain Identity and Another Bridge over the Explanatory Gap.,2002,133,Synthese,3,db/journals/synthese/synthese133.html#Webster02b,https://doi.org/10.1023/A:1021294209237 +Peter Verdée,Adaptive logics using the minimal abnormality strategy are P11\Pi^1_1 -complex.,2009,167,Synthese,1,db/journals/synthese/synthese167.html#Verdee09,https://doi.org/10.1007/s11229-007-9291-5 +Jon Elster,Tool-box or toy-box? Hard obscurantism in economic modeling.,2016,193,Synthese,7,db/journals/synthese/synthese193.html#Elster16,https://doi.org/10.1007/s11229-015-0836-8 +Erich H. Rast,On contextual domain restriction in categorial grammar.,2013,190,Synthese,12,db/journals/synthese/synthese190.html#Rast13,https://doi.org/10.1007/s11229-011-9960-2 +Tim Black,In Defense of Sensitivity.,2007,154,Synthese,1,db/journals/synthese/synthese154.html#BlackM07,https://doi.org/10.1007/s11229-005-8487-9 +Neil Campbell,On Kim's exclusion principle.,2009,169,Synthese,1,db/journals/synthese/synthese169.html#CampbellM09,https://doi.org/10.1007/s11229-008-9337-3 +Douglas Walton,Epistemic and Dialectical Models of Begging the Question.,2006,152,Synthese,2,db/journals/synthese/synthese152.html#Walton06,https://doi.org/10.1007/s11229-005-3984-4 +Katya Tentori,How the conjunction fallacy is tied to probabilistic confirmation: Some remarks on Schupbach (2009).,2012,184,Synthese,1,db/journals/synthese/synthese184.html#TentoriC12,https://doi.org/10.1007/s11229-009-9701-y +Henk W. De Regt,A Contextual Approach to Scientific Understanding.,2005,144,Synthese,1,db/journals/synthese/synthese144.html#RegtD05,https://doi.org/10.1007/s11229-005-5000-4 +Eric R. Scerri,The Case for the Philosophy of Chemistry.,1997,111,Synthese,3,db/journals/synthese/synthese111.html#ScerriM97,https://doi.org/10.1023/A%3A1004949814965 +Steven Gross,Trivalent Semantics and the Vaguely Vague.,2007,156,Synthese,1,db/journals/synthese/synthese156.html#Gross07,https://doi.org/10.1007/s11229-005-4542-9 +Daniel Immerman,Question closure to solve the surprise test.,2017,194,Synthese,11,db/journals/synthese/synthese194.html#Immerman17,https://doi.org/10.1007/s11229-016-1160-7 +Jakob Koscholke,Probabilistic coherence measures: a psychological study of coherence assessment.,2017,194,Synthese,4,db/journals/synthese/synthese194.html#KoscholkeJ17,https://doi.org/10.1007/s11229-015-0996-6 +Marcelo Tsuji,Suppes Predicates for Meta-Ranking Structures.,1997,112,Synthese,2,db/journals/synthese/synthese112.html#Tsuji97,https://doi.org/10.1023/A%3A1004920608415 +Emmanuel J. Genot,Strategies of inquiry - The 'Sherlock Holmes sense of deduction' revisited.,2018,195,Synthese,5,db/journals/synthese/synthese195.html#Genot18,https://doi.org/10.1007/s11229-017-1319-x +Charlie Pelling,Assertion and safety.,2013,190,Synthese,17,db/journals/synthese/synthese190.html#Pelling13,https://doi.org/10.1007/s11229-012-0223-7 +Florian Steinberger,Frege and Carnap on the normativity of logic.,2017,194,Synthese,1,db/journals/synthese/synthese194.html#Steinberger17,https://doi.org/10.1007/s11229-015-0880-4 +Erik Angner,To navigate safely in the vast sea of empirical facts - Ontology and methodology in behavioral economics.,2015,192,Synthese,11,db/journals/synthese/synthese192.html#Angner15,https://doi.org/10.1007/s11229-014-0552-9 +Christoph Kelp,Lotteries and justification.,2017,194,Synthese,4,db/journals/synthese/synthese194.html#Kelp17,https://doi.org/10.1007/s11229-015-0989-5 +Samuli Pöyhönen,Value of cognitive diversity in science.,2017,194,Synthese,11,db/journals/synthese/synthese194.html#Poyhonen17,https://doi.org/10.1007/s11229-016-1147-4 +Erik Weber,Unification And Explanation.,2002,131,Synthese,1,db/journals/synthese/synthese131.html#WeberD02,https://doi.org/10.1023/A:1015005529380 +Krist Vaesen,Modelling the truth of scientific beliefs with cultural evolutionary theory.,2014,191,Synthese,1,db/journals/synthese/synthese191.html#VaesenH14,https://doi.org/10.1007/s11229-013-0257-5 +Conor McHugh,Attitudinal control.,2017,194,Synthese,8,db/journals/synthese/synthese194.html#McHugh17a,https://doi.org/10.1007/s11229-014-0643-7 +Tomasz Bigaj,How to evaluate counterfactuals in the quantum world.,2013,190,Synthese,4,db/journals/synthese/synthese190.html#Bigaj13,https://doi.org/10.1007/s11229-012-0195-7 +Predrag Sustar,"The function debate: between ""cheap tricks"" and evolutionary neutrality.",2014,191,Synthese,12,db/journals/synthese/synthese191.html#SustarB14,https://doi.org/10.1007/s11229-014-0407-4 +Nora Berenstain,The applicability of mathematics to physical modality.,2017,194,Synthese,9,db/journals/synthese/synthese194.html#Berenstain17,https://doi.org/10.1007/s11229-016-1067-3 +Jonathan Bain,Weinberg on QFT: Demonstrative Induction and Underdetermination.,1998,117,Synthese,1,db/journals/synthese/synthese117.html#Bain98,https://doi.org/10.1023/A:1005025424031 +Giuliano Torrengo,The grounding problem and presentist explanations.,2013,190,Synthese,12,db/journals/synthese/synthese190.html#Torrengo13,https://doi.org/10.1007/s11229-011-9955-z +Daniel C. Burnston,Cognitive penetration and the cognition-perception interface.,2017,194,Synthese,9,db/journals/synthese/synthese194.html#Burnston17,https://doi.org/10.1007/s11229-016-1116-y +Richard Johns,Self-organisation in dynamical systems: a limiting result.,2011,181,Synthese,2,db/journals/synthese/synthese181.html#Johns11,https://doi.org/10.1007/s11229-010-9801-8 +Pierre Wagner,Carnapian and Tarskian semantics.,2017,194,Synthese,1,db/journals/synthese/synthese194.html#Wagner17,https://doi.org/10.1007/s11229-015-0853-7 +Andreas Bartels,Chains of meaning: A model for concept formation in contemporary physics theories.,1995,105,Synthese,3,db/journals/synthese/synthese105.html#Bartels95,https://doi.org/10.1007/BF01063563 +Hamid Vahid,Rationalizing beliefs: evidential vs. pragmatic reasons.,2010,176,Synthese,3,db/journals/synthese/synthese176.html#Vahid10,https://doi.org/10.1007/s11229-009-9575-z +Mark Steiner,Mathematical Intuition and Physical Intuition in Wittgenstein's Later Philosophy.,2000,125,Synthese,3,db/journals/synthese/synthese125.html#Steiner00,https://doi.org/10.1023/A:1005118023258 +Attila Molnár,Axiomatizing relativistic dynamics using formal thought experiments.,2015,192,Synthese,7,db/journals/synthese/synthese192.html#MolnarS15,https://doi.org/10.1007/s11229-014-0545-8 +Prasanta S. Bandyoapdhyay,The logic of Simpson's paradox.,2011,181,Synthese,2,db/journals/synthese/synthese181.html#BandyoapdhyayNGBB11,https://doi.org/10.1007/s11229-010-9797-0 +Ralph Wedgwood,Gandalf's solution to the Newcomb problem.,2013,190,Synthese,14,db/journals/synthese/synthese190.html#Wedgwood13,https://doi.org/10.1007/s11229-011-9900-1 +Peter øhrstrøm,Time and knowledge - Some reflections on Prior's analysis of the paradox of the prisoner.,2012,188,Synthese,3,db/journals/synthese/synthese188.html#OhrstromGS12,https://doi.org/10.1007/s11229-011-9948-y +Hugues Bersini,Emergent phenomena belong only to biology.,2012,185,Synthese,2,db/journals/synthese/synthese185.html#Bersini12,https://doi.org/10.1007/s11229-010-9724-4 +Radu J. Bogdan,Inside loops: developmental premises of self-ascriptions.,2007,159,Synthese,2,db/journals/synthese/synthese159.html#Bogdan07a,https://doi.org/10.1007/s11229-007-9206-5 +Peter Marton,Verificationists Versus Realists: The Battle Over Knowability.,2006,151,Synthese,1,db/journals/synthese/synthese151.html#Marton06,https://doi.org/10.1007/s11229-004-6269-4 +J. R. Welch,Vagueness and Inductive Molding.,2007,154,Synthese,1,db/journals/synthese/synthese154.html#Welch07,https://doi.org/10.1007/s11229-005-0196-x +Sven Ove Hansson,Preference-based choice functions: a generalized approach.,2009,171,Synthese,2,db/journals/synthese/synthese171.html#Hansson09a,https://doi.org/10.1007/s11229-009-9650-5 +Brian P. McLaughlin,The allure of connectionism reexamined.,1994,101,Synthese,3,db/journals/synthese/synthese101.html#McLaughlinW94,https://doi.org/10.1007/BF01063895 +Kepa Ruiz-Mirazo,Autonomy in evolution: from minimal to complex life.,2012,185,Synthese,1,db/journals/synthese/synthese185.html#Ruiz-MirazoM12,https://doi.org/10.1007/s11229-011-9874-z +Dale Jacquette,The validity paradox in modal S 5.,1996,109,Synthese,1,db/journals/synthese/synthese109.html#Jacquette96,https://doi.org/10.1007/BF00413822 +Jeroen Smid,Tarski's one and only concept of truth.,2014,191,Synthese,14,db/journals/synthese/synthese191.html#Smid14,https://doi.org/10.1007/s11229-014-0450-1 +Miguel Angel Sebastián,Dreams: an empirical way to settle the discussion between cognitive and non-cognitive theories of consciousness.,2014,191,Synthese,2,db/journals/synthese/synthese191.html#Sebastian14,https://doi.org/10.1007/s11229-013-0385-y +Karen Neander,Functional analysis and the species design.,2017,194,Synthese,4,db/journals/synthese/synthese194.html#Neander17,https://doi.org/10.1007/s11229-015-0940-9 +Adam Bales,Richness and rationality: causal decision theory and the WAR argument.,2018,195,Synthese,1,db/journals/synthese/synthese195.html#Bales18,https://doi.org/10.1007/s11229-016-1214-x +Jonas Rafael Becker Arenhart,The received view on quantum non-individuality: formal and metaphysical analysis.,2017,194,Synthese,4,db/journals/synthese/synthese194.html#Arenhart17,https://doi.org/10.1007/s11229-015-0997-5 +Jaakko Hintikka,The fallacies of the new theory of reference.,1995,104,Synthese,2,db/journals/synthese/synthese104.html#HintikkaS95,https://doi.org/10.1007/BF01063872 +Caroline T. Arruda,Chimps as secret agents.,2016,193,Synthese,7,db/journals/synthese/synthese193.html#ArrudaP16,https://doi.org/10.1007/s11229-015-0835-9 +Albert Casullo,Four challenges to the a priori - a posteriori distinction.,2015,192,Synthese,9,db/journals/synthese/synthese192.html#Casullo15,https://doi.org/10.1007/s11229-013-0341-x +Elliott Sober,An Empirical Critique of Two Versions of the Doomsday Argument - Gott's Line and Leslie's Wedge.,2003,135,Synthese,3,db/journals/synthese/synthese135.html#Sober03,https://doi.org/10.1023/A:1023545820214 +Woosuk Park,Where have all the Californian tense-logicians gone?,2016,193,Synthese,11,db/journals/synthese/synthese193.html#Park16,https://doi.org/10.1007/s11229-015-0896-9 +Mark Textor,Frege's recognition criterion for thoughts and its problems.,2018,195,Synthese,6,db/journals/synthese/synthese195.html#Textor18,https://doi.org/10.1007/s11229-017-1345-8 +E. J. Coffman,Warrant without truth?,2008,162,Synthese,2,db/journals/synthese/synthese162.html#Coffman08,https://doi.org/10.1007/s11229-007-9178-5 +Kent Johnson,Tacit and accessible understanding of language.,2007,156,Synthese,2,db/journals/synthese/synthese156.html#Johnson07,https://doi.org/10.1007/s11229-006-0006-0 +C. B. Martin,On the Need for Properties: The Road to Pythagoreanism and Back.,1997,112,Synthese,2,db/journals/synthese/synthese112.html#Martin97,https://doi.org/10.1023/A%3A1004983524345 +Marcello Guarini,"A Defence Of Connectionism Against The ""Syntactic"" Argument.",2001,128,Synthese,3,db/journals/synthese/synthese128.html#Guarini01,https://doi.org/10.1023/A:1011905917986 +William Harper,Bayesian chance.,2012,186,Synthese,2,db/journals/synthese/synthese186.html#HarperCM12,https://doi.org/10.1007/s11229-011-9994-5 +Katherine Puddifoot,A defence of epistemic responsibility: why laziness and ignorance are bad after all.,2014,191,Synthese,14,db/journals/synthese/synthese191.html#Puddifoot14,https://doi.org/10.1007/s11229-014-0445-y +Ilho Park,Confirmation measures and collaborative belief updating.,2014,191,Synthese,16,db/journals/synthese/synthese191.html#Park14,https://doi.org/10.1007/s11229-014-0507-1 +James H. Fetzer,Evolution and atheism: Has Griffin reconciled science and religion?,2011,178,Synthese,2,db/journals/synthese/synthese178.html#Fetzer11,https://doi.org/10.1007/s11229-009-9546-4 +Mariam Thalos,Nonreductive Physics.,2006,149,Synthese,1,db/journals/synthese/synthese149.html#Thalos06,https://doi.org/10.1007/s11229-004-6251-1 +Paul égré,Vague judgment: a probabilistic account.,2017,194,Synthese,10,db/journals/synthese/synthese194.html#Egre17a,https://doi.org/10.1007/s11229-016-1092-2 +Thomas N. P. A. Brouwer,A paradox of rejection.,2014,191,Synthese,18,db/journals/synthese/synthese191.html#Brouwer14,https://doi.org/10.1007/s11229-014-0541-z +Bence Nanay,Population thinking as trope nominalism.,2010,177,Synthese,1,db/journals/synthese/synthese177.html#Nanay10,https://doi.org/10.1007/s11229-009-9641-6 +Robert Audi,The ethics of belief: doxastic self-control and intellectual virtue.,2008,161,Synthese,3,db/journals/synthese/synthese161.html#Audi08,https://doi.org/10.1007/s11229-006-9092-2 +Jonathan Bain,Category-theoretic structure and radical ontic structural realism.,2013,190,Synthese,9,db/journals/synthese/synthese190.html#Bain13,https://doi.org/10.1007/s11229-011-9896-6 +B. Jack Copeland,What is computation?,1996,108,Synthese,3,db/journals/synthese/synthese108.html#Copeland96,https://doi.org/10.1007/BF00413693 +Isidora Stojanovic,Domain-sensitivity.,2012,184,Synthese,2,db/journals/synthese/synthese184.html#Stojanovic12,https://doi.org/10.1007/s11229-010-9729-z +Henk W. De Regt,Scientific understanding: truth or dare?,2015,192,Synthese,12,db/journals/synthese/synthese192.html#Regt15,https://doi.org/10.1007/s11229-014-0538-7 +Robert Callergård,The Hypothesis Of Ether And Reid's Interpretation Of Newton's First Rule Of Philosophizing.,1999,120,Synthese,1,db/journals/synthese/synthese120.html#Callergard99,https://doi.org/10.1023/A:1005250302365 +Martin Flament Fultot,Modulation: an alternative to instructions and forces.,2017,194,Synthese,3,db/journals/synthese/synthese194.html#Fultot17,https://doi.org/10.1007/s11229-015-0976-x +R. Lanier Anderson,Truth and Objectivity in Perspectivism.,1998,115,Synthese,1,db/journals/synthese/synthese115.html#Anderson98,https://doi.org/10.1023/A:1004984312166 +L. C. De Bruin,The developmental paradox of false belief understanding: a dual-system solution.,2014,191,Synthese,3,db/journals/synthese/synthese191.html#BruinN14,https://doi.org/10.1007/s11229-012-0127-6 +Christoph Kelp,In defence of virtue epistemology.,2011,179,Synthese,3,db/journals/synthese/synthese179.html#Kelp11,https://doi.org/10.1007/s11229-009-9681-y +Jeffry L. Ramsey,Calibrating and constructing models of protein folding.,2007,155,Synthese,3,db/journals/synthese/synthese155.html#Ramsey07,https://doi.org/10.1007/s11229-006-9113-1 +Susan Haack,Prècis of Evidence and Inquiry: Towards Reconstruction in Epistemology.,1997,112,Synthese,1,db/journals/synthese/synthese112.html#Haack97,https://doi.org/10.1023/A%3A1004924514117 +Michael W. Pelczar,The Indexical Character of Names.,1998,114,Synthese,2,db/journals/synthese/synthese114.html#PelczarR98,https://doi.org/10.1023/A:1004992629004 +Erich H. Reck,Structures And Structuralism In Contemporary Philosophy Of Mathematics.,2000,125,Synthese,3,db/journals/synthese/synthese125.html#ReckP00,https://doi.org/10.1023/A:1005203923553 +Avishai Margalit,A metaphor game.,1995,104,Synthese,2,db/journals/synthese/synthese104.html#MargalitG95,https://doi.org/10.1007/BF01063874 +Adam Corner,Normative theories of argumentation: are some norms better than others?,2013,190,Synthese,16,db/journals/synthese/synthese190.html#CornerH13,https://doi.org/10.1007/s11229-012-0211-y +Henrik Hallsten,Deductive Chauvinism.,1999,120,Synthese,1,db/journals/synthese/synthese120.html#Hallsten99,https://doi.org/10.1023/A:1005206520112 +Kit Fine,The possibility of vagueness.,2017,194,Synthese,10,db/journals/synthese/synthese194.html#Fine17,https://doi.org/10.1007/s11229-014-0625-9 +Ulrich Krohs,Functions as based on a concept of general design.,2009,166,Synthese,1,db/journals/synthese/synthese166.html#Krohs09,https://doi.org/10.1007/s11229-007-9258-6 +James F. Woodward,Data and phenomena: a restatement and defense.,2011,182,Synthese,1,db/journals/synthese/synthese182.html#Woodward11,https://doi.org/10.1007/s11229-009-9618-5 +Sheldon Goldstein,Review essay: Bohmian mechanics and the quantum revolution.,1996,107,Synthese,1,db/journals/synthese/synthese107.html#Goldstein96,https://doi.org/10.1007/BF00413904 +Peter Forrest,Is space-time discrete or continuous? - An empirical question.,1995,103,Synthese,3,db/journals/synthese/synthese103.html#Forrest95,https://doi.org/10.1007/BF01089732 +Luc Faucher,What's behind a smile? the return of mechanism: Reply to Schaffner.,2006,151,Synthese,3,db/journals/synthese/synthese151.html#Faucher06,https://doi.org/10.1007/s11229-006-9032-1 +G. Jeroen de Ridder,Epistemic dependence and collective scientific knowledge.,2014,191,Synthese,1,db/journals/synthese/synthese191.html#Ridder14,https://doi.org/10.1007/s11229-013-0283-3 +Tarek Sayed Ahmed,Neat embeddings as adjoint situations.,2015,192,Synthese,7,db/journals/synthese/synthese192.html#Ahmed15,https://doi.org/10.1007/s11229-013-0344-7 +Campbell Brown,The composition of reasons.,2014,191,Synthese,5,db/journals/synthese/synthese191.html#Brown14,https://doi.org/10.1007/s11229-013-0299-8 +Michel Bitbol,Downward causation without foundations.,2012,185,Synthese,2,db/journals/synthese/synthese185.html#Bitbol12,https://doi.org/10.1007/s11229-010-9723-5 +Mark B. Couch,Erratum to: Mechanisms and constitutive relevance.,2012,187,Synthese,2,db/journals/synthese/synthese187.html#Couch12,https://doi.org/10.1007/s11229-012-0080-4 +Guillaume Rochefort-Maranda,On the correct interpretation of p values and the importance of random variables.,2016,193,Synthese,6,db/journals/synthese/synthese193.html#Rochefort-Maranda16,https://doi.org/10.1007/s11229-015-0807-0 +Piotr Kulicki,Completely and partially executable sequences of actions in deontic context.,2015,192,Synthese,4,db/journals/synthese/synthese192.html#KulickiT15,https://doi.org/10.1007/s11229-014-0604-1 +Amartya Sen,Incompleteness and Reasoned Choice.,2004,140,Synthese,1,db/journals/synthese/synthese140.html#Sen04,https://doi.org/10.1023/B:SYNT.0000029940.51537.b3 +Fred D'Agostino,Verballed? Incommensurability 50 years on.,2014,191,Synthese,3,db/journals/synthese/synthese191.html#DAgostino14,https://doi.org/10.1007/s11229-013-0288-y +Joachim Horvath,Conceptual analysis and natural kinds: the case of knowledge.,2016,193,Synthese,1,db/journals/synthese/synthese193.html#Horvath16,https://doi.org/10.1007/s11229-015-0751-z +Kenneth F. Schaffner,Reduction: the Cheshire cat problem and a return to roots.,2006,151,Synthese,3,db/journals/synthese/synthese151.html#Schaffner06,https://doi.org/10.1007/s11229-006-9031-2 +Alessandro Torza,How to Lewis a Kripke-Hintikka.,2013,190,Synthese,4,db/journals/synthese/synthese190.html#Torza13,https://doi.org/10.1007/s11229-012-0201-0 +Dov M. Gabbay,Reactive intuitionistic tableaux.,2011,179,Synthese,2,db/journals/synthese/synthese179.html#Gabbay11,https://doi.org/10.1007/s11229-010-9781-8 +Simon Prosser,Temporal Metaphysics in Z-Land.,2006,149,Synthese,1,db/journals/synthese/synthese149.html#Prosser06,https://doi.org/10.1007/s11229-004-6249-8 +Joshua M. Mozersky,Tense And Temporal Semantics.,2000,124,Synthese,2,db/journals/synthese/synthese124.html#Mozersky00,https://doi.org/10.1023/A:1005268831005 +Ittay Nissan-Rozen,"A triviality result for the ""Desire by Necessity"" thesis.",2015,192,Synthese,8,db/journals/synthese/synthese192.html#Nissan-Rozen15,https://doi.org/10.1007/s11229-015-0666-8 +Daniel Peterson,Qeauty and the books: a response to Lewis's quantum sleeping beauty problem.,2011,181,Synthese,3,db/journals/synthese/synthese181.html#Peterson11,https://doi.org/10.1007/s11229-010-9715-5 +Sam Baron,Feel the flow.,2017,194,Synthese,2,db/journals/synthese/synthese194.html#Baron17,https://doi.org/10.1007/s11229-015-0964-1 +Jennifer Corns,Pain eliminativism: scientific and traditional.,2016,193,Synthese,9,db/journals/synthese/synthese193.html#Corns16,https://doi.org/10.1007/s11229-015-0897-8 +Ahti-Veikko Pietarinen,Two papers on existential graphs by Charles Peirce.,2015,192,Synthese,4,db/journals/synthese/synthese192.html#Pietarinen15a,https://doi.org/10.1007/s11229-014-0498-y +Patrick Maher,Bayesian probability.,2010,172,Synthese,1,db/journals/synthese/synthese172.html#Maher10,https://doi.org/10.1007/s11229-009-9471-6 +Clayton Mitchell Littlejohn,Evidence and armchair access.,2011,179,Synthese,3,db/journals/synthese/synthese179.html#Littlejohn11,https://doi.org/10.1007/s11229-009-9703-9 +Daniele Porello,Ranking judgments in Arrow's setting.,2010,173,Synthese,2,db/journals/synthese/synthese173.html#Porello10,https://doi.org/10.1007/s11229-009-9568-y +Inkeri Koskinen,Where is the epistemic community? On democratisation of science and social accounts of objectivity.,2017,194,Synthese,12,db/journals/synthese/synthese194.html#Koskinen17,https://doi.org/10.1007/s11229-016-1173-2 +Marie Duzí,Transparent quantification into hyperintensional objectual attitudes.,2015,192,Synthese,3,db/journals/synthese/synthese192.html#DuziJ15,https://doi.org/10.1007/s11229-014-0578-z +Colin Johnston,The Unity of a Tractarian Fact.,2007,156,Synthese,2,db/journals/synthese/synthese156.html#Johnston07,https://doi.org/10.1007/s11229-006-0002-4 +James Ladyman,Structural realism versus standard scientific realism: the case of phlogiston and dephlogisticated air.,2011,180,Synthese,2,db/journals/synthese/synthese180.html#Ladyman11a,https://doi.org/10.1007/s11229-009-9607-8 +Reuben Stern,Interventionist decision theory.,2017,194,Synthese,10,db/journals/synthese/synthese194.html#Stern17,https://doi.org/10.1007/s11229-016-1133-x +Marc Alspector-Kelly,Seeing the Unobservable: Van Fraassen and the Limits of Experience.,2004,140,Synthese,3,db/journals/synthese/synthese140.html#Alspector-Kelly04,https://doi.org/10.1023/B:SYNT.0000031323.19904.45 +Alexandru Radulescu,The logic of indexicals.,2015,192,Synthese,6,db/journals/synthese/synthese192.html#Radulescu15,https://doi.org/10.1007/s11229-015-0659-7 +M. P. Lynch,Zombies and the Case of the Phenomenal Pickpocket.,2006,149,Synthese,1,db/journals/synthese/synthese149.html#Lynch06,https://doi.org/10.1007/s11229-004-6241-3 +Mariam Thalos,Explanation is a Genus: An Essay on the Varieties of Scientific Explanation.,2002,130,Synthese,3,db/journals/synthese/synthese130.html#Thalos02,https://doi.org/10.1023/A:1014841517312 +Yair Levy,Does the normative question about rationality rest on a mistake?,2018,195,Synthese,5,db/journals/synthese/synthese195.html#Levy18,https://doi.org/10.1007/s11229-017-1314-2 +Annika Wallin,Is egocentric bias evidence for simulation theory?,2011,178,Synthese,3,db/journals/synthese/synthese178.html#Wallin11,https://doi.org/10.1007/s11229-009-9653-2 +Heather Douglas,Engagement for progress: applied philosophy of science in context.,2010,177,Synthese,3,db/journals/synthese/synthese177.html#Douglas10,https://doi.org/10.1007/s11229-010-9787-2 +Kengo Miyazono,Does functionalism entail extended mind?,2017,194,Synthese,9,db/journals/synthese/synthese194.html#Miyazono17,https://doi.org/10.1007/s11229-015-0971-2 +Napoleon Katsos,The semantics/pragmatics interface from an experimental perspective: the case of scalar implicature.,2008,165,Synthese,3,db/journals/synthese/synthese165.html#Katsos08,https://doi.org/10.1007/s11229-007-9187-4 +Patrick Girard 0004,Paraconsistent dynamics.,2016,193,Synthese,1,db/journals/synthese/synthese193.html#GirardT16,https://doi.org/10.1007/s11229-015-0740-2 +Richard Montgomery,Grades of Explanation in Cognitive Science.,1998,114,Synthese,3,db/journals/synthese/synthese114.html#Montgomery98,https://doi.org/10.1023/A:1005084615487 +Jaakko Hintikka,A Fallacious Fallacy?,2004,140,Synthese,1,db/journals/synthese/synthese140.html#Hintikka04,https://doi.org/10.1023/B:SYNT.0000029938.17953.10 +Isaac Levi,Gaifman.,2004,140,Synthese,1,db/journals/synthese/synthese140.html#Levi04d,https://doi.org/10.1023/B:SYNT.0000029945.01194.28 +Thibaut Giraud,On modal Meinongianism.,2016,193,Synthese,10,db/journals/synthese/synthese193.html#Giraud16,https://doi.org/10.1007/s11229-015-0933-8 +Trevor Hedberg,Epistemic supererogation and its implications.,2014,191,Synthese,15,db/journals/synthese/synthese191.html#Hedberg14,https://doi.org/10.1007/s11229-014-0483-5 +Sven Ove Hansson,From the casino to the jungle - Dealing with uncertainty in technological risk management.,2009,168,Synthese,3,db/journals/synthese/synthese168.html#Hansson09,https://doi.org/10.1007/s11229-008-9444-1 +Kent W. Staley,Introduction.,2008,163,Synthese,3,db/journals/synthese/synthese163.html#Staley08,https://doi.org/10.1007/s11229-007-9302-6 +Andrew Melnyk,Searle's abstract argument against strong AI.,1996,108,Synthese,3,db/journals/synthese/synthese108.html#Melnyk96,https://doi.org/10.1007/BF00413696 +Douglas Walton,Evaluating Practical Reasoning.,2007,157,Synthese,2,db/journals/synthese/synthese157.html#Walton07,https://doi.org/10.1007/s11229-007-9157-x +Rodolfo de Cristofaro,A new formulation of the Principle of Indifference.,2008,163,Synthese,3,db/journals/synthese/synthese163.html#Cristofaro08,https://doi.org/10.1007/s11229-007-9301-7 +Eline Busck Gundersen,Lewis's revised conditional analysis revisited.,2017,194,Synthese,11,db/journals/synthese/synthese194.html#Gundersen17,https://doi.org/10.1007/s11229-016-1151-8 +Barry Stroud,The constraints of Hume's naturalism.,2006,152,Synthese,3,db/journals/synthese/synthese152.html#Stroud06,https://doi.org/10.1007/s11229-006-9009-0 +Neil McDonnell,Transitivity and proportionality in causation.,2018,195,Synthese,3,db/journals/synthese/synthese195.html#McDonnell18,https://doi.org/10.1007/s11229-016-1263-1 +John T. Roberts,Measurability And Physical Laws.,2005,144,Synthese,3,db/journals/synthese/synthese144.html#Roberts05,https://doi.org/10.1007/s11229-005-5875-0 +Sune Holm,Teleological organisation.,2017,194,Synthese,4,db/journals/synthese/synthese194.html#HolmB17,https://doi.org/10.1007/s11229-017-1340-0 +John Turri,On the regress argument for infinitism.,2009,166,Synthese,1,db/journals/synthese/synthese166.html#Turri09,https://doi.org/10.1007/s11229-007-9270-x +Philip Hugly,Quantifying over the reals.,1994,101,Synthese,1,db/journals/synthese/synthese101.html#HuglyS94,https://doi.org/10.1007/BF01063968 +Roger Sansom,Why Evolution is Really Indeterministic.,2003,136,Synthese,2,db/journals/synthese/synthese136.html#Sansom03,https://doi.org/10.1023/A:1024739731042 +Holger Lyre,Is structural underdetermination possible?,2011,180,Synthese,2,db/journals/synthese/synthese180.html#Lyre11,https://doi.org/10.1007/s11229-009-9603-z +Thomas Mormann,Incompatible empirically equivalent theories: A structural explication.,1995,103,Synthese,2,db/journals/synthese/synthese103.html#Mormann95,https://doi.org/10.1007/BF01090048 +Rudolf Carnap,Value concepts (1958).,2017,194,Synthese,1,db/journals/synthese/synthese194.html#Carnap17,https://doi.org/10.1007/s11229-015-0793-2 +Iris Loeb,The role of universal language in the early work of Carnap and Tarski.,2017,194,Synthese,1,db/journals/synthese/synthese194.html#Loeb17,https://doi.org/10.1007/s11229-014-0601-4 +Mark A. Changizi,A Paradigm-Based Solution to the Riddle of Induction.,1998,117,Synthese,3,db/journals/synthese/synthese117.html#ChangiziB98,https://doi.org/10.1023/A:1005029624940 +Peter Brössel,On the role of explanatory and systematic power in scientific reasoning.,2015,192,Synthese,12,db/journals/synthese/synthese192.html#Brossel15,https://doi.org/10.1007/s11229-015-0870-6 +Fermín Fulda,A mechanistic framework for Darwinism or why Fodor's objection fails.,2015,192,Synthese,1,db/journals/synthese/synthese192.html#Fulda15,https://doi.org/10.1007/s11229-014-0557-4 +Matthew E. Moore,Peirce's topical theory of continuity.,2015,192,Synthese,4,db/journals/synthese/synthese192.html#Moore15,https://doi.org/10.1007/s11229-013-0337-6 +John Bickle,Editor's Introduction.,2004,141,Synthese,2,db/journals/synthese/synthese141.html#Bickle04,https://doi.org/10.1023/B:SYNT.0000042950.39098.f6 +Kristin Sharon Shrader-Frechette,Using A Thought Experiment To Clarify A Radiobiological Controversy.,2001,128,Synthese,3,db/journals/synthese/synthese128.html#Shrader-Frechette01,https://doi.org/10.1023/A:1011961527452 +L. Jonathan Cohen,Some steps towards a general theory of relevance.,1994,101,Synthese,2,db/journals/synthese/synthese101.html#Cohen94,https://doi.org/10.1007/BF01064016 +David Barrett,Functional analysis and mechanistic explanation.,2014,191,Synthese,12,db/journals/synthese/synthese191.html#Barrett14,https://doi.org/10.1007/s11229-014-0410-9 +Matteo Colombo,Introduction: objectivity in science.,2017,194,Synthese,12,db/journals/synthese/synthese194.html#ColomboGS17,https://doi.org/10.1007/s11229-017-1582-x +I. D. A. MacIntyre,|N| Cheers For Democracy.,2002,131,Synthese,2,db/journals/synthese/synthese131.html#MacIntyre02,https://doi.org/10.1023/A:1015749211633 +Márta Ujvári,Prior's Fable and the limits of de re possibility.,2012,188,Synthese,3,db/journals/synthese/synthese188.html#Ujvari12,https://doi.org/10.1007/s11229-011-9938-0 +Xuefeng Wen,Judgment aggregation in nonmonotonic logic.,2018,195,Synthese,8,db/journals/synthese/synthese195.html#Wen18,https://doi.org/10.1007/s11229-017-1391-2 +Robert Schwartzkopff,Singular terms revisited.,2016,193,Synthese,3,db/journals/synthese/synthese193.html#Schwartzkopff16,https://doi.org/10.1007/s11229-015-0777-2 +Daniel Malinsky,Intervening on structure.,2018,195,Synthese,5,db/journals/synthese/synthese195.html#Malinsky18,https://doi.org/10.1007/s11229-017-1341-z +William H. Berge,Carnap and translational indeterminacy.,1995,105,Synthese,1,db/journals/synthese/synthese105.html#Berge95,https://doi.org/10.1007/BF01064105 +Joseph Diekemper,The existence of the past.,2014,191,Synthese,6,db/journals/synthese/synthese191.html#Diekemper14,https://doi.org/10.1007/s11229-013-0311-3 +Lukas Skiba,Fictionalism and the incompleteness problem.,2017,194,Synthese,4,db/journals/synthese/synthese194.html#Skiba17,https://doi.org/10.1007/s11229-015-1000-1 +Toby Napoletano,Compositionality as weak supervenience.,2015,192,Synthese,1,db/journals/synthese/synthese192.html#Napoletano15,https://doi.org/10.1007/s11229-014-0562-7 +Kristin Andrews,It's in your nature: a pluralistic folk psychology.,2008,165,Synthese,1,db/journals/synthese/synthese165.html#Andrews08,https://doi.org/10.1007/s11229-007-9230-5 +Andy Clark,Erratum to: What 'Extended Me' knows.,2016,193,Synthese,1,db/journals/synthese/synthese193.html#Clark16,https://doi.org/10.1007/s11229-015-0788-z +Paul Bloomfield,Let's be Realistic about Serious Metaphysics.,2005,144,Synthese,1,db/journals/synthese/synthese144.html#Bloomfield05,https://doi.org/10.1007/s11229-005-9129-y +Alexander Bird,Potency and Modality.,2006,149,Synthese,3,db/journals/synthese/synthese149.html#Bird06,https://doi.org/10.1007/s11229-005-0574-4 +Jessica Carter,Individuation of objects - a problem for structuralism?,2005,143,Synthese,3,db/journals/synthese/synthese143.html#Carter05,https://doi.org/10.1007/s11229-005-0848-x +Michal Arciszewski,Reducing the dauer larva: molecular models of biological phenomena in Caenorhabditis elegans research.,2013,190,Synthese,18,db/journals/synthese/synthese190.html#Arciszewski13,https://doi.org/10.1007/s11229-013-0254-8 +Peter Pagin,Indeterminacy and the analytic/synthetic distinctions: a survey.,2008,164,Synthese,1,db/journals/synthese/synthese164.html#Pagin08,https://doi.org/10.1007/s11229-007-9213-6 +Kenneth Aizawa,Editor's introduction.,2009,167,Synthese,3,db/journals/synthese/synthese167.html#Aizawa09,https://doi.org/10.1007/s11229-008-9384-9 +Gerald J. Postema,Whence avidity? Hume's psychology and the origins of justice.,2006,152,Synthese,3,db/journals/synthese/synthese152.html#Postema06,https://doi.org/10.1007/s11229-006-9004-5 +Andriy Vasylchenko,Interpreting action as an answer.,1994,100,Synthese,1,db/journals/synthese/synthese100.html#Vasylchenko94,https://doi.org/10.1007/BF01063920 +Daniel Gilman,Optimization and simplicity: Computational vision and biological explanation.,1996,107,Synthese,3,db/journals/synthese/synthese107.html#Gilman96,https://doi.org/10.1007/BF00413839 +Namjoong Kim,Sleeping Beauty and shifted Jeffrey conditionalization.,2009,168,Synthese,2,db/journals/synthese/synthese168.html#Kim09,https://doi.org/10.1007/s11229-008-9443-2 +Wiebe van der Hoek,Towards a theory of intention revision.,2007,155,Synthese,2,db/journals/synthese/synthese155.html#HoekJW07,https://doi.org/10.1007/s11229-006-9145-6 +Jie Gao,Rational action without knowledge (and vice versa).,2017,194,Synthese,6,db/journals/synthese/synthese194.html#Gao17,https://doi.org/10.1007/s11229-016-1027-y +Steven French,Remodelling Structural Realism: Quantum Physics and the Metaphysics of Structure.,2003,136,Synthese,1,db/journals/synthese/synthese136.html#FrenchL03,https://doi.org/10.1023/A:1024156116636 +Ian Hacking,Aristotelian Categories And Cognitive Domains.,2001,126,Synthese,3,db/journals/synthese/synthese126.html#Hacking01,https://doi.org/10.1023/A:1005221431872 +J. P. Smit,Developing the incentivized action view of institutional reality.,2014,191,Synthese,8,db/journals/synthese/synthese191.html#SmitBP14,https://doi.org/10.1007/s11229-013-0370-5 +Lu Teng,Is phenomenal force sufficient for immediate perceptual justification?,2018,195,Synthese,2,db/journals/synthese/synthese195.html#Teng18,https://doi.org/10.1007/s11229-016-1233-7 +Matt La Vine,Prior's Thank-Goodness Argument Reconsidered.,2016,193,Synthese,11,db/journals/synthese/synthese193.html#Vine16,https://doi.org/10.1007/s11229-015-0904-0 +George Masterton,Topological variability of collectives and its import for social epistemology.,2014,191,Synthese,11,db/journals/synthese/synthese191.html#Masterton14a,https://doi.org/10.1007/s11229-014-0433-2 +Joshua May,On the very concept of free will.,2014,191,Synthese,12,db/journals/synthese/synthese191.html#May14,https://doi.org/10.1007/s11229-014-0426-1 +Michael E. Levin,Bundling Hume with Kripkenstein.,2007,155,Synthese,1,db/journals/synthese/synthese155.html#Levin07,https://doi.org/10.1007/s11229-005-2420-0 +Julien Boyer,Between proof and truth.,2012,187,Synthese,3,db/journals/synthese/synthese187.html#BoyerS12,https://doi.org/10.1007/s11229-011-9903-y +Gregor Betz,Evaluating dialectical structures with Bayesian methods.,2008,163,Synthese,1,db/journals/synthese/synthese163.html#Betz08,https://doi.org/10.1007/s11229-007-9276-4 +Chris John Daly,Acquaintance and de re Thought.,2007,156,Synthese,1,db/journals/synthese/synthese156.html#Daly07,https://doi.org/10.1007/s11229-005-3985-3 +Dag Prawitz,The epistemic significance of valid inference.,2012,187,Synthese,3,db/journals/synthese/synthese187.html#Prawitz12,https://doi.org/10.1007/s11229-011-9907-7 +Dolf Rami,On the unification argument for the predicate view on proper names.,2014,191,Synthese,5,db/journals/synthese/synthese191.html#Rami14,https://doi.org/10.1007/s11229-013-0296-y +Michael Nelson,Prior and possibly not existing.,2016,193,Synthese,11,db/journals/synthese/synthese193.html#Nelson16,https://doi.org/10.1007/s11229-015-0906-y +D. Benjamin Barros,Negative causation in causal and mechanistic explanation.,2013,190,Synthese,3,db/journals/synthese/synthese190.html#Barros13,https://doi.org/10.1007/s11229-011-0040-4 +Ronald N. Giere,An agent-based conception of models and scientific representation.,2010,172,Synthese,2,db/journals/synthese/synthese172.html#Giere10,https://doi.org/10.1007/s11229-009-9506-z +Louis C. Charland,Feeling and representing: Computational theory and the modularity of affect.,1995,105,Synthese,3,db/journals/synthese/synthese105.html#Charland95,https://doi.org/10.1007/BF01063560 +Paul Faulkner,The practical rationality of trust.,2014,191,Synthese,9,db/journals/synthese/synthese191.html#Faulkner14,https://doi.org/10.1007/s11229-012-0103-1 +Patrick Girard 0004,Prioritised ceteris paribus logic for counterfactual reasoning.,2018,195,Synthese,4,db/journals/synthese/synthese195.html#GirardT18,https://doi.org/10.1007/s11229-016-1296-5 +Victor Pambuccian,"Correction to ""Axiomatizations of Hyperbolic Geometry"".",2005,145,Synthese,3,db/journals/synthese/synthese145.html#Pambuccian05,https://doi.org/10.1007/s11229-004-5405-5 +Malte Willer,New surprises for the Ramsey Test.,2010,176,Synthese,2,db/journals/synthese/synthese176.html#Willer10,https://doi.org/10.1007/s11229-009-9494-z +Josef Perner,Introspection and remembering.,2007,159,Synthese,2,db/journals/synthese/synthese159.html#PernerKS07,https://doi.org/10.1007/s11229-007-9207-4 +Maria Carla Galavotti,On Hans Reichenbach's inductivism.,2011,181,Synthese,1,db/journals/synthese/synthese181.html#Galavotti11,https://doi.org/10.1007/s11229-009-9589-6 +Michael Bertrand,Proper environment and the SEP account of biological function.,2013,190,Synthese,9,db/journals/synthese/synthese190.html#Bertrand13,https://doi.org/10.1007/s11229-011-9889-5 +Adrian Brasoveanu 0001,The grammar of quantification and the fine structure of interpretation contexts.,2013,190,Synthese,15,db/journals/synthese/synthese190.html#Brasoveanu13,https://doi.org/10.1007/s11229-012-0118-7 +Catarina Dutilh Novaes,Reassessing logical hylomorphism and the demarcation of logical constants.,2012,185,Synthese,3,db/journals/synthese/synthese185.html#Novaes12,https://doi.org/10.1007/s11229-010-9825-0 +Ben Phillips,Inscrutability and visual objects.,2017,194,Synthese,8,db/journals/synthese/synthese194.html#Phillips17,https://doi.org/10.1007/s11229-016-1083-3 +Nicholas Bardsley,On collective intentions: collective action in economics and philosophy.,2007,157,Synthese,2,db/journals/synthese/synthese157.html#Bardsley07,https://doi.org/10.1007/s11229-006-9034-z +A. Casullo,Knowledge and modality.,2010,172,Synthese,3,db/journals/synthese/synthese172.html#Casullo10,https://doi.org/10.1007/s11229-008-9396-5 +Luciano Floridi,On the Logical Unsolvability of the Gettier Problem.,2004,142,Synthese,1,db/journals/synthese/synthese142.html#Floridi04,https://doi.org/10.1023/B:SYNT.0000047709.27594.c4 +David Jakobsen,An illusion close to life.,2016,193,Synthese,11,db/journals/synthese/synthese193.html#Jakobsen16,https://doi.org/10.1007/s11229-016-1076-2 +Michael Hughes,Epistemic inconsistency and categorical coherence: a study of probabilistic measures of coherence.,2017,194,Synthese,8,db/journals/synthese/synthese194.html#Hughes17,https://doi.org/10.1007/s11229-016-1105-1 +Carrie Figdor,On the proper domain of psychological predicates.,2017,194,Synthese,11,db/journals/synthese/synthese194.html#Figdor17,https://doi.org/10.1007/s11229-014-0603-2 +E. J. Coffman,Two claims about epistemic propriety.,2011,181,Synthese,3,db/journals/synthese/synthese181.html#Coffman11,https://doi.org/10.1007/s11229-010-9742-2 +Douglas Walton,Argumentation Schemes and Enthymemes.,2005,145,Synthese,3,db/journals/synthese/synthese145.html#WaltonR05,https://doi.org/10.1007/s11229-005-6198-x +Oliver Schulte,Minimal Belief Change and the Pareto Principle.,1999,118,Synthese,3,db/journals/synthese/synthese118.html#Schulte99,https://doi.org/10.1023/A:1005162303126 +Stathis Psillos,On Reichenbach's argument for scientific realism.,2011,181,Synthese,1,db/journals/synthese/synthese181.html#Psillos11b,https://doi.org/10.1007/s11229-009-9594-9 +Cameron Buckner,From encyclopedia to ontology: toward dynamic representation of the discipline of philosophy.,2011,182,Synthese,2,db/journals/synthese/synthese182.html#BucknerNA11,https://doi.org/10.1007/s11229-009-9659-9 +Crispin Wright,Critical study.,1995,103,Synthese,2,db/journals/synthese/synthese103.html#Wright95,https://doi.org/10.1007/BF01090050 +Willem R. de Jong,The Classical Model of Science: a millennia-old model of scientific rationality.,2010,174,Synthese,2,db/journals/synthese/synthese174.html#JongB10,https://doi.org/10.1007/s11229-008-9417-4 +Luc Bovens,The puzzle of the hats.,2010,172,Synthese,1,db/journals/synthese/synthese172.html#BovensR10,https://doi.org/10.1007/s11229-009-9476-1 +Patrick Blackburn,Arthur Prior and Hybrid Logic.,2006,150,Synthese,3,db/journals/synthese/synthese150.html#Blackburn06,https://doi.org/10.1007/s11229-005-5512-y +Johannes Persson,Compartment Causation.,2006,149,Synthese,3,db/journals/synthese/synthese149.html#Persson06,https://doi.org/10.1007/s11229-005-0577-1 +Ilkka Niiniluoto,Optimistic realism about scientific progress.,2017,194,Synthese,9,db/journals/synthese/synthese194.html#Niiniluoto17,https://doi.org/10.1007/s11229-015-0974-z +Shay Allen Logan,The semantics of social constructivism.,2015,192,Synthese,8,db/journals/synthese/synthese192.html#Logan15,https://doi.org/10.1007/s11229-015-0674-8 +Ernest Sosa,On Reflective Knowledge: replies to Battaly and Reed.,2012,188,Synthese,2,db/journals/synthese/synthese188.html#Sosa12,https://doi.org/10.1007/s11229-011-9920-x +Kosta Dosen,Models of Deduction.,2006,148,Synthese,3,db/journals/synthese/synthese148.html#Dosen06,https://doi.org/10.1007/s11229-004-6290-7 +Rachael Briggs,Propositions and same-saying: introduction.,2012,189,Synthese,1,db/journals/synthese/synthese189.html#BriggsJ12,https://doi.org/10.1007/s11229-012-0091-1 +Fred Keijzer,Embedded Cognition and Mental Causation: Setting Empirical Bounds on Metaphysics.,2007,158,Synthese,1,db/journals/synthese/synthese158.html#KeijzerS07,https://doi.org/10.1007/s11229-006-9053-9 +José Díez,General theories of explanation: buyer beware.,2013,190,Synthese,3,db/journals/synthese/synthese190.html#DiezKL13,https://doi.org/10.1007/s11229-011-0020-8 +Ralph Hertwig,The psychology and rationality of decisions from experience.,2012,187,Synthese,1,db/journals/synthese/synthese187.html#Hertwig12,https://doi.org/10.1007/s11229-011-0024-4 +Raimo Tuomela,Collective Acceptance and Collective Social Notions.,1998,117,Synthese,2,db/journals/synthese/synthese117.html#TuomelaB98,https://doi.org/10.1023/A:1005000928559 +Craig French,Perceptual experience and seeing that $$p$$.,2013,190,Synthese,10,db/journals/synthese/synthese190.html#French13a,https://doi.org/10.1007/s11229-013-0259-3 +Stewart Shapiro,The Objectivity of Mathematics.,2007,156,Synthese,2,db/journals/synthese/synthese156.html#Shapiro07,https://doi.org/10.1007/s11229-005-5298-y +A. W. Carus,Carnapian rationality.,2017,194,Synthese,1,db/journals/synthese/synthese194.html#Carus17,https://doi.org/10.1007/s11229-014-0574-3 +Steen Brock,A resolute reading of Cassirer's anthropology.,2011,179,Synthese,1,db/journals/synthese/synthese179.html#Brock11,https://doi.org/10.1007/s11229-009-9626-5 +Clas Weber,Eternalism and Propositional Multitasking: in defence of the Operator Argument.,2012,189,Synthese,1,db/journals/synthese/synthese189.html#Weber12,https://doi.org/10.1007/s11229-012-0092-0 +Gerald Holton,Candor and Integrity in Science.,2005,145,Synthese,2,db/journals/synthese/synthese145.html#Holton05,https://doi.org/10.1007/s11229-005-3749-0 +Bob Hale,Focus restored: Comments on John MacFarlane.,2009,170,Synthese,3,db/journals/synthese/synthese170.html#HaleW09,https://doi.org/10.1007/s11229-007-9261-y +Pendaran Roberts,Relationalism about perceptible properties and the principle of charity.,2016,193,Synthese,9,db/journals/synthese/synthese193.html#RobertsS16,https://doi.org/10.1007/s11229-015-0886-y +Peter Tramel,Haack's foundherentism is a foundationalism.,2008,160,Synthese,2,db/journals/synthese/synthese160.html#Tramel08,https://doi.org/10.1007/s11229-006-9108-y +Christopher S. I. Mccurdy,Humphrey's paradox and the interpretation of inverse conditional propensities.,1996,108,Synthese,1,db/journals/synthese/synthese108.html#Mccurdy96,https://doi.org/10.1007/BF00414007 +Matthew E. Moore,A Cantorian Argument Against Infinitesimals.,2002,133,Synthese,3,db/journals/synthese/synthese133.html#Moore02,https://doi.org/10.1023/A:1021204522829 +Andrea Iacona,Ockhamism without Thin Red Lines.,2014,191,Synthese,12,db/journals/synthese/synthese191.html#Iacona14,https://doi.org/10.1007/s11229-014-0405-6 +Claudio Calosi,Quantum mechanics and Priority Monism.,2014,191,Synthese,5,db/journals/synthese/synthese191.html#Calosi14,https://doi.org/10.1007/s11229-013-0300-6 +Alan H. Goldman,Rules and Moral Reasoning.,1998,117,Synthese,2,db/journals/synthese/synthese117.html#Goldman98,https://doi.org/10.1023/A:1005174804034 +Anthony Robert Booth,All things considered duties to believe.,2012,187,Synthese,2,db/journals/synthese/synthese187.html#Booth12,https://doi.org/10.1007/s11229-010-9857-5 +Sirkku Ikonen,Cassirer's critique of culture - Between the Scylla of Lebensphilosophie and the Charybdis of the Vienna Circle.,2011,179,Synthese,1,db/journals/synthese/synthese179.html#Ikonen11,https://doi.org/10.1007/s11229-009-9635-4 +Magdalena Balcerak Jackson,Conceptual Analysis and Epistemic Progress.,2013,190,Synthese,15,db/journals/synthese/synthese190.html#Jackson13,https://doi.org/10.1007/s11229-012-0120-0 +Jürgen Schröder,Physicalism and strict implication.,2006,151,Synthese,3,db/journals/synthese/synthese151.html#Schroder06,https://doi.org/10.1007/s11229-006-9024-1 +Jørgen Albretsen,Preface.,2016,193,Synthese,11,db/journals/synthese/synthese193.html#AlbretsenHO16,https://doi.org/10.1007/s11229-016-1240-8 +Carole Adam,A logical formalization of the OCC theory of emotions.,2009,168,Synthese,2,db/journals/synthese/synthese168.html#AdamHL09,https://doi.org/10.1007/s11229-009-9460-9 +Almog Meirav,Non-Unique Composition.,2000,124,Synthese,3,db/journals/synthese/synthese124.html#Meirav00,https://doi.org/10.1023/A:1005212811794 +Michael Wreen,Proper Names and the Necessity of Identity Statements.,1998,114,Synthese,2,db/journals/synthese/synthese114.html#Wreen98,https://doi.org/10.1023/A:1005002220981 +Philippe Huneman,Diversifying the picture of explanations in biological sciences: ways of combining topology with mechanisms.,2018,195,Synthese,1,db/journals/synthese/synthese195.html#Huneman18,https://doi.org/10.1007/s11229-015-0808-z +Isabella C. Burger,Merging Inference and Conjecture by Information.,2002,131,Synthese,2,db/journals/synthese/synthese131.html#BurgerH02,https://doi.org/10.1023/A:1015737827562 +Holger Andreas,A modal view of the semantics of theoretical sentences.,2010,174,Synthese,3,db/journals/synthese/synthese174.html#Andreas10,https://doi.org/10.1007/s11229-009-9458-3 +Travis Dumsday,MaxCon extended simples and the dispositionalist ontology of laws.,2017,194,Synthese,5,db/journals/synthese/synthese194.html#Dumsday17,https://doi.org/10.1007/s11229-015-1009-5 +Sara Green,Network analyses in systems biology: new strategies for dealing with biological complexity.,2018,195,Synthese,4,db/journals/synthese/synthese195.html#GreenSSJBB18,https://doi.org/10.1007/s11229-016-1307-6 +Magdalena Kacprzak,A Sat-Based Approach to Unbounded Model Checking for Alternating-Time Temporal Epistemic Logic.,2004,142,Synthese,2,db/journals/synthese/synthese142.html#KacprzakP04,https://doi.org/10.1007/s11229-004-2446-8 +Robin Le Poidevin,A Puzzle Concerning Time Perception.,2004,142,Synthese,1,db/journals/synthese/synthese142.html#Poidevin04,https://doi.org/10.1023/B:SYNT.0000047710.71824.b1 +Carla Bagnoli,Defeaters and practical knowledge.,2018,195,Synthese,7,db/journals/synthese/synthese195.html#Bagnoli18,https://doi.org/10.1007/s11229-016-1095-z +Lisa J. Carlson,Social norms and the traditional deterrence game.,2010,176,Synthese,1,db/journals/synthese/synthese176.html#CarlsonD10,https://doi.org/10.1007/s11229-009-9486-z +C. S. Jenkins,Entitlement and rationality.,2007,157,Synthese,1,db/journals/synthese/synthese157.html#Jenkins07,https://doi.org/10.1007/s11229-006-0012-2 +Steven French,Metaphysical underdetermination: why worry?,2011,180,Synthese,2,db/journals/synthese/synthese180.html#French11,https://doi.org/10.1007/s11229-009-9598-5 +Zuzana Rybaríková,Prior on Aristotle's Logical Squares.,2016,193,Synthese,11,db/journals/synthese/synthese193.html#Rybarikova16,https://doi.org/10.1007/s11229-015-0900-4 +Thibaut Giraud,Constructing formal semantics from an ontological perspective. The case of second-order logics.,2014,191,Synthese,10,db/journals/synthese/synthese191.html#Giraud14,https://doi.org/10.1007/s11229-013-0387-9 +François Récanati,Perceptual concepts: in defence of the indexical model.,2013,190,Synthese,10,db/journals/synthese/synthese190.html#Recanati13,https://doi.org/10.1007/s11229-013-0264-6 +Jaakko Hintikka,Preface.,1996,106,Synthese,1,db/journals/synthese/synthese106.html#HintikkaP96,https://doi.org/10.1007/BF00413610 +Kathrin Glüer,Rules of Meaning and Practical Reasoning.,1998,117,Synthese,2,db/journals/synthese/synthese117.html#GluerP98,https://doi.org/10.1023/A:1005162503125 +Joshua Stuchlik,Epistemological disjunctivism and easy knowledge.,2015,192,Synthese,8,db/journals/synthese/synthese192.html#Stuchlik15,https://doi.org/10.1007/s11229-015-0683-7 +Gregor Hochstetter,Attention in bodily awareness.,2016,193,Synthese,12,db/journals/synthese/synthese193.html#Hochstetter16,https://doi.org/10.1007/s11229-016-1141-x +Diego Marconi,Two-dimensional semantics and the articulation problem.,2005,143,Synthese,3,db/journals/synthese/synthese143.html#Marconi05,https://doi.org/10.1007/s11229-005-7044-x +Erik Myin,Color And The Duplication Assumption.,2001,129,Synthese,1,db/journals/synthese/synthese129.html#Myin01a,https://doi.org/10.1023/A:1012647207838 +Chris Eliasmith,How to build a brain: from function to implementation.,2007,159,Synthese,3,db/journals/synthese/synthese159.html#Eliasmith07,https://doi.org/10.1007/s11229-007-9235-0 +Gerhard Schurz,Zwart and Franssen's impossibility theorem holds for possible-world-accounts but not for consequence-accounts to verisimilitude.,2010,172,Synthese,3,db/journals/synthese/synthese172.html#SchurzW10,https://doi.org/10.1007/s11229-008-9399-2 +Tero Tulenheimo,The two faces of compatibility with justified beliefs.,2016,193,Synthese,1,db/journals/synthese/synthese193.html#Tulenheimo16,https://doi.org/10.1007/s11229-015-0742-0 +K. Brad Wray,Success and truth in the realism/anti-realism debate.,2013,190,Synthese,9,db/journals/synthese/synthese190.html#Wray13,https://doi.org/10.1007/s11229-011-9931-7 +Peter W. Ross,Existence problems in philosophy and science.,2013,190,Synthese,18,db/journals/synthese/synthese190.html#RossT13,https://doi.org/10.1007/s11229-013-0270-8 +Bredo C. Johnsen,Reclaiming Quine's epistemology.,2014,191,Synthese,5,db/journals/synthese/synthese191.html#Johnsen14,https://doi.org/10.1007/s11229-013-0302-4 +Chris Tucker,On what inferentially justifies what: the vices of reliabilism and proper functionalism.,2014,191,Synthese,14,db/journals/synthese/synthese191.html#Tucker14,https://doi.org/10.1007/s11229-014-0446-x +R. Otte,Counterfactuals and Epistemic Probability.,2006,152,Synthese,1,db/journals/synthese/synthese152.html#Otte06,https://doi.org/10.1007/s11229-005-1332-3 +Alexander Rueger,Idealized and perspectival representations: some reasons for making a distinction.,2014,191,Synthese,8,db/journals/synthese/synthese191.html#Rueger14,https://doi.org/10.1007/s11229-013-0371-4 +Yuval Dolev,Is ontology the key to understanding tense?,2018,195,Synthese,4,db/journals/synthese/synthese195.html#Dolev18,https://doi.org/10.1007/s11229-016-1303-x +Víctor M. Verdejo,The systematicity challenge to anti-representational dynamicism.,2015,192,Synthese,3,db/journals/synthese/synthese192.html#Verdejo15,https://doi.org/10.1007/s11229-014-0597-9 +Arvid Båve,Formulating deflationism.,2013,190,Synthese,15,db/journals/synthese/synthese190.html#Bave13,https://doi.org/10.1007/s11229-012-0163-2 +Paul Weirich,Introduction.,2010,176,Synthese,1,db/journals/synthese/synthese176.html#Weirich10,https://doi.org/10.1007/s11229-009-9479-y +Karl Karlander,Sleeping Beauty meets Monday.,2010,174,Synthese,3,db/journals/synthese/synthese174.html#KarlanderS10,https://doi.org/10.1007/s11229-009-9464-5 +Antony Eagle,Mathematics and conceptual analysis.,2008,161,Synthese,1,db/journals/synthese/synthese161.html#Eagle08,https://doi.org/10.1007/s11229-006-9151-8 +David H. Glass,Coherence measures and inference to the best explanation.,2007,157,Synthese,3,db/journals/synthese/synthese157.html#Glass07,https://doi.org/10.1007/s11229-006-9055-7 +Ken Gemes,Irrelevance: Strengthening the Bayesian requirements.,2007,157,Synthese,2,db/journals/synthese/synthese157.html#Gemes07,https://doi.org/10.1007/s11229-006-0009-x +Michael Glanzberg,Minimalism and Paradoxes.,2003,135,Synthese,1,db/journals/synthese/synthese135.html#Glanzberg03,https://doi.org/10.1023/A:1022999315312 +Alexander R. Pruss,Regular probability comparisons imply the Banach-Tarski Paradox.,2014,191,Synthese,15,db/journals/synthese/synthese191.html#Pruss14a,https://doi.org/10.1007/s11229-014-0458-6 +Sören Stenlund,Different senses of finitude: An inquiry into Hilbert's finitism.,2012,185,Synthese,3,db/journals/synthese/synthese185.html#Stenlund12,https://doi.org/10.1007/s11229-010-9823-2 +Lloyd Humberstone,Archetypal Forms of Inference.,2004,141,Synthese,1,db/journals/synthese/synthese141.html#Humberstone04,https://doi.org/10.1023/B:SYNT.0000035850.89516.e1 +Peter Carruthers,Mindreading in adults: evaluating two-systems views.,2017,194,Synthese,3,db/journals/synthese/synthese194.html#Carruthers17,https://doi.org/10.1007/s11229-015-0792-3 +Paul Horwich,Is truth a normative concept?,2018,195,Synthese,3,db/journals/synthese/synthese195.html#Horwich18,https://doi.org/10.1007/s11229-016-1208-8 +Brent G. Kyle,The New and Old Ignorance Puzzles: How badly do we need closure?,2015,192,Synthese,5,db/journals/synthese/synthese192.html#Kyle15,https://doi.org/10.1007/s11229-014-0642-8 +Carol E. Cleland,Life without definitions.,2012,185,Synthese,1,db/journals/synthese/synthese185.html#Cleland12,https://doi.org/10.1007/s11229-011-9879-7 +J. D. Trout,Democracy and scientific expertise: illusions of political and epistemic inclusion.,2013,190,Synthese,7,db/journals/synthese/synthese190.html#Trout13,https://doi.org/10.1007/s11229-012-0226-4 +Paul Weirich,Utility and framing.,2010,176,Synthese,1,db/journals/synthese/synthese176.html#Weirich10a,https://doi.org/10.1007/s11229-009-9485-0 +Michael Rescorla,A theory of computational implementation.,2014,191,Synthese,6,db/journals/synthese/synthese191.html#Rescorla14,https://doi.org/10.1007/s11229-013-0324-y +Horacio L. Arló-Costa,More foundations of the decision sciences: introduction.,2012,187,Synthese,1,db/journals/synthese/synthese187.html#Arlo-CostaH12,https://doi.org/10.1007/s11229-011-0021-7 +Boaz Miller,When is consensus knowledge based? Distinguishing shared knowledge from mere agreement.,2013,190,Synthese,7,db/journals/synthese/synthese190.html#Miller13,https://doi.org/10.1007/s11229-012-0225-5 +Joseph Brent,Pursuing Peirce.,1996,106,Synthese,3,db/journals/synthese/synthese106.html#Brent96,https://doi.org/10.1007/BF00413589 +Eric Winsberg,A tale of two methods.,2009,169,Synthese,3,db/journals/synthese/synthese169.html#Winsberg09,https://doi.org/10.1007/s11229-008-9437-0 +,Announcement.,1994,100,Synthese,1,db/journals/synthese/synthese100.html#X94,https://doi.org/10.1007/BF01063924 +Patrizio Contu,The Justification of the Logical Laws Revisited.,2006,148,Synthese,3,db/journals/synthese/synthese148.html#Contu06,https://doi.org/10.1007/s11229-004-6270-y +Derek Baker,Why transparency undermines economy.,2015,192,Synthese,9,db/journals/synthese/synthese192.html#Baker15,https://doi.org/10.1007/s11229-015-0700-x +Ardnés Rivadulla,The Newtonian Limit of Relativity Theory and the Rationality of Theory Change.,2004,141,Synthese,3,db/journals/synthese/synthese141.html#Rivadulla04,https://doi.org/10.1023/B:SYNT.0000044994.31650.45 +Radu J. Bogdan,Developing Mental Abilities By Representing Intentionality.,2001,129,Synthese,2,db/journals/synthese/synthese129.html#Bogdan01,https://doi.org/10.1023/A:1013051306484 +Marion Ledwig,The No Probabilities For Acts-Principle.,2005,144,Synthese,2,db/journals/synthese/synthese144.html#Ledwig05,https://doi.org/10.1007/s11229-004-2010-6 +Wilfried Sieg,Dedekind's Analysis of Number: Systems and Axioms.,2005,147,Synthese,1,db/journals/synthese/synthese147.html#SiegS05,https://doi.org/10.1007/s11229-004-6300-9 +Wayne Riggs,Why epistemologists are so down on their luck.,2007,158,Synthese,3,db/journals/synthese/synthese158.html#Riggs07,https://doi.org/10.1007/s11229-006-9043-y +Kit Fine,The RealIty of Tense.,2006,150,Synthese,3,db/journals/synthese/synthese150.html#Fine06,https://doi.org/10.1007/s11229-005-5515-8 +Sungho Choi,The Simple Vs. Reformed Conditional Analysis of Dispositions.,2006,148,Synthese,2,db/journals/synthese/synthese148.html#Choi06,https://doi.org/10.1007/s11229-004-6229-z +James Russell,Controlling core knowledge: conditions for the ascription of intentional states to self and others by children.,2007,159,Synthese,2,db/journals/synthese/synthese159.html#Russell07,https://doi.org/10.1007/s11229-007-9203-8 +Olivier Roy,Substantive assumptions in interaction: a logical perspective.,2013,190,Synthese,5,db/journals/synthese/synthese190.html#RoyP13,https://doi.org/10.1007/s11229-012-0191-y +Cédric Dégremont,Exploring the tractability border in epistemic tasks.,2014,191,Synthese,3,db/journals/synthese/synthese191.html#DegremontKS14,https://doi.org/10.1007/s11229-012-0215-7 +Patrick Suppes,Statistical concepts in philosophy of science.,2007,154,Synthese,3,db/journals/synthese/synthese154.html#Suppes07a,https://doi.org/10.1007/s11229-006-9122-0 +Greg Ray,Williamson's Master Argument on Vagueness.,2004,138,Synthese,2,db/journals/synthese/synthese138.html#Ray04,https://doi.org/10.1023/B:SYNT.0000013178.23890.4c +William W. Tait,Proof-theoretic Semantics for Classical Mathematics.,2006,148,Synthese,3,db/journals/synthese/synthese148.html#Tait06,https://doi.org/10.1007/s11229-004-6271-x +Isaac Levi,Contracting From Epistemic Hell is Routine.,2003,135,Synthese,1,db/journals/synthese/synthese135.html#Levi03,https://doi.org/10.1023/A:1022915525935 +Daniel Jeremy Singer,Sleeping beauty should be imprecise.,2014,191,Synthese,14,db/journals/synthese/synthese191.html#Singer14,https://doi.org/10.1007/s11229-014-0429-y +Wolfgang Huemer,Husserl and Haugeland on Constitution.,2003,137,Synthese,3,db/journals/synthese/synthese137.html#Huemer03,https://doi.org/10.1023/B:SYNT.0000004902.07390.18 +Marina Paola Banchetti-Robino,Husserl's Theory of Language as Calculus Ratiocinator.,1997,112,Synthese,3,db/journals/synthese/synthese112.html#Banchetti-Robino97,https://doi.org/10.1023/A%3A1004944525177 +Daniele Molinini,Indispensability and explanation: an overview and introduction.,2016,193,Synthese,2,db/journals/synthese/synthese193.html#MolininiPS16,https://doi.org/10.1007/s11229-015-0998-4 +Edward McClennen,Rational cooperation.,2012,187,Synthese,1,db/journals/synthese/synthese187.html#McClennen12,https://doi.org/10.1007/s11229-011-0032-4 +Trip Glazer,Looking angry and sounding sad: The perceptual analysis of emotional expression.,2017,194,Synthese,9,db/journals/synthese/synthese194.html#Glazer17,https://doi.org/10.1007/s11229-016-1113-1 +James A. Overton,Explain in scientific discourse.,2013,190,Synthese,8,db/journals/synthese/synthese190.html#Overton13,https://doi.org/10.1007/s11229-012-0109-8 +Pär Sundström,Is the mystery an illusion? Papineau on the problem of consciousness.,2008,163,Synthese,2,db/journals/synthese/synthese163.html#Sundstrom08,https://doi.org/10.1007/s11229-007-9193-6 +Brian M. Scott,Technical notes on a theory of simplicity.,1996,109,Synthese,2,db/journals/synthese/synthese109.html#Scott96,https://doi.org/10.1007/BF00413770 +Nick Bostrom,Sleeping Beauty and Self-location: A Hybrid Model.,2007,157,Synthese,1,db/journals/synthese/synthese157.html#Bostrom07,https://doi.org/10.1007/s11229-006-9010-7 +A. Philip Dawid,On individual risk.,2017,194,Synthese,9,db/journals/synthese/synthese194.html#Dawid17b,https://doi.org/10.1007/s11229-015-0953-4 +Mauro Rossi,Simulation theory and interpersonal utility comparisons reconsidered.,2014,191,Synthese,6,db/journals/synthese/synthese191.html#Rossi14,https://doi.org/10.1007/s11229-013-0318-9 +Aris Spanos,Error statistical modeling and inference: Where methodology meets ontology.,2015,192,Synthese,11,db/journals/synthese/synthese192.html#SpanosM15,https://doi.org/10.1007/s11229-015-0744-y +Jesper Kallestrup,Introduction.,2009,171,Synthese,3,db/journals/synthese/synthese171.html#KallestrupP09,https://doi.org/10.1007/s11229-008-9329-3 +Thomas J. Misa,Findings follow framings: navigating the empirical turn.,2009,168,Synthese,3,db/journals/synthese/synthese168.html#Misa09,https://doi.org/10.1007/s11229-008-9447-y +Elijah Millgram,Deliberative coherence.,1996,108,Synthese,1,db/journals/synthese/synthese108.html#MillgramT96,https://doi.org/10.1007/BF00414005 +Rogier De Langhe,Peer disagreement under multiple epistemic systems.,2013,190,Synthese,13,db/journals/synthese/synthese190.html#Langhe13,https://doi.org/10.1007/s11229-012-0149-0 +Nicolas Fillion,On the epistemological analysis of modeling and computational error in the mathematical sciences.,2014,191,Synthese,7,db/journals/synthese/synthese191.html#FillionC14,https://doi.org/10.1007/s11229-013-0339-4 +Jaakko Hintikka,A Revolution in the Foundations of Mathematics?,1997,111,Synthese,2,db/journals/synthese/synthese111.html#Hintikka97b,https://doi.org/10.1023/A%3A1004970403579 +Kent W. Staley,Pragmatic warrant for frequentist statistical practice: the case of high energy physics.,2017,194,Synthese,2,db/journals/synthese/synthese194.html#Staley17,https://doi.org/10.1007/s11229-016-1111-3 +Christoph Kelp,Commodious knowledge.,2017,194,Synthese,5,db/journals/synthese/synthese194.html#KelpS17,https://doi.org/10.1007/s11229-015-0938-3 +Mikio Akagi,Rethinking the problem of cognition.,2018,195,Synthese,8,db/journals/synthese/synthese195.html#Akagi18,https://doi.org/10.1007/s11229-017-1383-2 +Francesco Berto,The world is either digital or analogue.,2014,191,Synthese,3,db/journals/synthese/synthese191.html#BertoT14,https://doi.org/10.1007/s11229-013-0285-1 +Bernhard Lauth,Transtheoretical Structures And Deterministic Models.,2002,130,Synthese,1,db/journals/synthese/synthese130.html#Lauth02,https://doi.org/10.1023/A:1013835511711 +Patrick Suppes,Where do Bayesian priors come from?,2007,156,Synthese,3,db/journals/synthese/synthese156.html#Suppes07,https://doi.org/10.1007/s11229-006-9133-x +Moti Mizrahi,The pessimistic induction: a bad argument gone too far.,2013,190,Synthese,15,db/journals/synthese/synthese190.html#Mizrahi13,https://doi.org/10.1007/s11229-012-0138-3 +Elaine Landry,Shared structure need not be shared set-structure.,2007,158,Synthese,1,db/journals/synthese/synthese158.html#Landry07,https://doi.org/10.1007/s11229-006-9047-7 +Erik J. Wielenberg,How to Be an Alethically Rational Naturalist.,2002,131,Synthese,1,db/journals/synthese/synthese131.html#Wielenberg02,https://doi.org/10.1023/A:1015069614963 +Elisabeth A. Lloyd,Objectivity and the double standard for feminist epistemologies.,1995,104,Synthese,3,db/journals/synthese/synthese104.html#Lloyd95,https://doi.org/10.1007/BF01064505 +Mark A. Bedau,A functional account of degrees of minimal chemical life.,2012,185,Synthese,1,db/journals/synthese/synthese185.html#Bedau12a,https://doi.org/10.1007/s11229-011-9876-x +Carl G. Wagner,The corroboration paradox.,2013,190,Synthese,8,db/journals/synthese/synthese190.html#Wagner13,https://doi.org/10.1007/s11229-012-0106-y +Philippe Huneman,Topological explanations and robustness in biological sciences.,2010,177,Synthese,2,db/journals/synthese/synthese177.html#Huneman10,https://doi.org/10.1007/s11229-010-9842-z +Paul Humphreys,The philosophical novelty of computer simulation methods.,2009,169,Synthese,3,db/journals/synthese/synthese169.html#Humphreys09,https://doi.org/10.1007/s11229-008-9435-2 +Peter Olen,A forgotten strand of reception history: understanding pure semantics.,2017,194,Synthese,1,db/journals/synthese/synthese194.html#Olen17,https://doi.org/10.1007/s11229-015-0678-4 +Adam J. Bowen,Dissolving an epistemological puzzle of time perception.,2013,190,Synthese,17,db/journals/synthese/synthese190.html#Bowen13,https://doi.org/10.1007/s11229-012-0228-2 +Colin Klein,What do predictive coders want?,2018,195,Synthese,6,db/journals/synthese/synthese195.html#Klein18,https://doi.org/10.1007/s11229-016-1250-6 +Stephen Hetherington,The Gettier-illusion: Gettier-partialism and infallibilism.,2012,188,Synthese,2,db/journals/synthese/synthese188.html#Hetherington12,https://doi.org/10.1007/s11229-011-9924-6 +John A. Schuster,Physico-mathematics and the search for causes in Descartes' optics - 1619-1637.,2012,185,Synthese,3,db/journals/synthese/synthese185.html#Schuster12,https://doi.org/10.1007/s11229-011-9979-4 +Mark Balaguer,A platonist epistemology.,1995,103,Synthese,3,db/journals/synthese/synthese103.html#Balaguer95,https://doi.org/10.1007/BF01089731 +Anthony Shiver,Mereological bundle theory and the identity of indiscernibles.,2014,191,Synthese,5,db/journals/synthese/synthese191.html#Shiver14,https://doi.org/10.1007/s11229-013-0298-9 +John Neil Martin,All Brutes are Subhuman: Aristotle and Ockham on Private Negation.,2003,134,Synthese,3,db/journals/synthese/synthese134.html#Martin03,https://doi.org/10.1023/A:1022934709521 +Itzhak Gilboa,On the definition of objective probabilities by empirical similarity.,2010,172,Synthese,1,db/journals/synthese/synthese172.html#GilboaLS10,https://doi.org/10.1007/s11229-009-9473-4 +Thomas Müller 0007,Branching in the landscape of possibilities.,2012,188,Synthese,1,db/journals/synthese/synthese188.html#Muller12,https://doi.org/10.1007/s11229-011-0059-6 +Holger Andreas,New account of empirical claims in structuralism.,2010,176,Synthese,3,db/journals/synthese/synthese176.html#Andreas10a,https://doi.org/10.1007/s11229-009-9561-5 +Jake Chandler,The transmission of support: a Bayesian re-analysis.,2010,176,Synthese,3,db/journals/synthese/synthese176.html#Chandler10,https://doi.org/10.1007/s11229-009-9570-4 +Luca Moretti,When warrant transmits and when it doesn't: towards a general framework.,2013,190,Synthese,13,db/journals/synthese/synthese190.html#MorettiP13a,https://doi.org/10.1007/s11229-011-0018-2 +Sorin Ioan Bangu,Inference to the best explanation and mathematical realism.,2008,160,Synthese,1,db/journals/synthese/synthese160.html#Bangu08,https://doi.org/10.1007/s11229-006-9070-8 +Matti Eklund,Bad company and neo-Fregean philosophy.,2009,170,Synthese,3,db/journals/synthese/synthese170.html#Eklund09,https://doi.org/10.1007/s11229-007-9262-x +Yuval Avnur,An old problem for the new rationalism.,2011,183,Synthese,2,db/journals/synthese/synthese183.html#Avnur11,https://doi.org/10.1007/s11229-010-9759-6 +Johan van Benthem,Editorial.,2008,160,Synthese,1,db/journals/synthese/synthese160.html#BenthemHS08,https://doi.org/10.1007/s11229-007-9274-6 +Lynn Hankinson Nelson,Preface.,1995,104,Synthese,3,db/journals/synthese/synthese104.html#Nelson95,https://doi.org/10.1007/BF01064503 +Luciano Floridi,A defence of informational structural realism.,2008,161,Synthese,2,db/journals/synthese/synthese161.html#Floridi08,https://doi.org/10.1007/s11229-007-9163-z +Pete Mandik,Supervenience and neuroscience.,2011,180,Synthese,3,db/journals/synthese/synthese180.html#Mandik11,https://doi.org/10.1007/s11229-010-9712-8 +Tomoji Shogenji,Can We Trust Our Memories? C. I. Lewis's Coherence Argument.,2004,142,Synthese,1,db/journals/synthese/synthese142.html#Shogenji04,https://doi.org/10.1023/B:SYNT.0000047708.33913.2b +Aneta Markoska-Cubrinovska,"Possible worlds in ""The Craft of Formal Logic"".",2016,193,Synthese,11,db/journals/synthese/synthese193.html#Markoska-Cubrinovska16,https://doi.org/10.1007/s11229-015-0912-0 +Tongdong Bai,Guest editor's words.,2010,175,Synthese,1,db/journals/synthese/synthese175.html#Bai10,https://doi.org/10.1007/s11229-009-9536-6 +Delia Belleri,You can say what you think: vindicating the effability of our thoughts.,2014,191,Synthese,18,db/journals/synthese/synthese191.html#Belleri14,https://doi.org/10.1007/s11229-014-0537-8 +Till Grüne-Yanoff,The explanatory potential of artificial societies.,2009,169,Synthese,3,db/journals/synthese/synthese169.html#Grune-Yanoff09,https://doi.org/10.1007/s11229-008-9429-0 +David Robson,Topological supervenience - A mathematical framework for exploring supervenience.,2016,193,Synthese,9,db/journals/synthese/synthese193.html#Robson16,https://doi.org/10.1007/s11229-015-0891-1 +Robert van Rooy,Evolution of Conventional Meaning and Conversational Principles.,2004,139,Synthese,2,db/journals/synthese/synthese139.html#Rooy04,https://doi.org/10.1023/B:SYNT.0000024904.37199.6c +Jon Pérez Laraudogoitia,A Look at the Staccato Run.,2006,148,Synthese,2,db/journals/synthese/synthese148.html#Laraudogoitia06,https://doi.org/10.1007/s11229-004-6238-y +Roald Hoffmann,What might philosophy of science look like if chemists built it?,2007,155,Synthese,3,db/journals/synthese/synthese155.html#Hoffmann07,https://doi.org/10.1007/s11229-006-9118-9 +Igor Douven,The Formal Epistemology Project.,2013,190,Synthese,1,db/journals/synthese/synthese190.html#Douven13,https://doi.org/10.1007/s11229-012-0178-8 +Lorenz Demey,Agreeing to disagree in probabilistic dynamic epistemic logic.,2014,191,Synthese,3,db/journals/synthese/synthese191.html#Demey14,https://doi.org/10.1007/s11229-013-0280-6 +Andrew Wayne,Emergence and singular limits.,2012,184,Synthese,3,db/journals/synthese/synthese184.html#Wayne12,https://doi.org/10.1007/s11229-010-9817-0 +Arie Rip,Technology as prospective ontology.,2009,168,Synthese,3,db/journals/synthese/synthese168.html#Rip09,https://doi.org/10.1007/s11229-008-9449-9 +Aidan Lyon,Vague Credence.,2017,194,Synthese,10,db/journals/synthese/synthese194.html#Lyon17,https://doi.org/10.1007/s11229-015-0782-5 +Igor Douven,How to account for the oddness of missing-link conditionals.,2017,194,Synthese,5,db/journals/synthese/synthese194.html#Douven17,https://doi.org/10.1007/s11229-015-0756-7 +Joshua D. K. Brown,Chemical atomism: a case study in confirmation and ontology.,2015,192,Synthese,2,db/journals/synthese/synthese192.html#Brown15,https://doi.org/10.1007/s11229-014-0581-4 +Ludwig Fahrbach,How the growth of science ends theory change.,2011,180,Synthese,2,db/journals/synthese/synthese180.html#Fahrbach11,https://doi.org/10.1007/s11229-009-9602-0 +Ronnie Hermens,Speakable in quantum mechanics.,2013,190,Synthese,15,db/journals/synthese/synthese190.html#Hermens13,https://doi.org/10.1007/s11229-012-0158-z +Brian Rabern,Against the identification of assertoric content with compositional value.,2012,189,Synthese,1,db/journals/synthese/synthese189.html#Rabern12,https://doi.org/10.1007/s11229-012-0096-9 +Stéphanie Ruphy,Ontology relativized: Reply to Moulines.,2006,151,Synthese,3,db/journals/synthese/synthese151.html#Ruphy06,https://doi.org/10.1007/s11229-006-9012-5 +Eric Winsberg,Models of Success Versus the Success of Models: Reliability without Truth.,2006,152,Synthese,1,db/journals/synthese/synthese152.html#Winsberg06,https://doi.org/10.1007/s11229-004-5404-6 +Stephen Read,The medieval theory of consequence.,2012,187,Synthese,3,db/journals/synthese/synthese187.html#Read12,https://doi.org/10.1007/s11229-011-9908-6 +Mark Jago,Logical information and epistemic space.,2009,167,Synthese,2,db/journals/synthese/synthese167.html#Jago09,https://doi.org/10.1007/s11229-008-9411-x +Sharon Berry,Default reasonableness and the mathoids.,2013,190,Synthese,17,db/journals/synthese/synthese190.html#Berry13,https://doi.org/10.1007/s11229-012-0219-3 +James Ladyman,The scientistic stance: the empirical and materialist stances reconciled.,2011,178,Synthese,1,db/journals/synthese/synthese178.html#Ladyman11,https://doi.org/10.1007/s11229-009-9513-0 +Alexander Bird,Introduction.,2006,149,Synthese,3,db/journals/synthese/synthese149.html#BirdP06,https://doi.org/10.1007/s11229-005-0568-2 +Alexander Sandgren,Which witch is which? Exotic objects and intentional identity.,2018,195,Synthese,2,db/journals/synthese/synthese195.html#Sandgren18,https://doi.org/10.1007/s11229-016-1237-3 +Jens Harbecke,The role of supervenience and constitution in neuroscientific research.,2014,191,Synthese,5,db/journals/synthese/synthese191.html#Harbecke14,https://doi.org/10.1007/s11229-013-0308-y +Sun-Joo Shin,The forgotten individual: diagrammatic reasoning in mathematics.,2012,186,Synthese,1,db/journals/synthese/synthese186.html#Shin12,https://doi.org/10.1007/s11229-012-0075-1 +Richard Dietz,Comparative concepts.,2013,190,Synthese,1,db/journals/synthese/synthese190.html#Dietz13,https://doi.org/10.1007/s11229-012-0152-5 +Deborah Mayo,The error statistical philosopher as normative naturalist.,2008,163,Synthese,3,db/journals/synthese/synthese163.html#MayoM08,https://doi.org/10.1007/s11229-007-9303-5 +Mario Gómez-Torrente,Logical Truth and Tarskian Logical Truth.,1998,117,Synthese,3,db/journals/synthese/synthese117.html#Gomez-Torrente98,https://doi.org/10.1023/A:1005165824990 +Todd Jones,Do customs compete with conditioning? Turf battles and division of labor in social explanation.,2012,184,Synthese,3,db/journals/synthese/synthese184.html#Jones12,https://doi.org/10.1007/s11229-010-9794-3 +Solomon Feferman,And so on . . . : reasoning with infinite diagrams.,2012,186,Synthese,1,db/journals/synthese/synthese186.html#Feferman12,https://doi.org/10.1007/s11229-011-9985-6 +Christian Wüthrich,A quantum-information-theoretic complement to a general-relativistic implementation of a beyond-Turing computer.,2015,192,Synthese,7,db/journals/synthese/synthese192.html#Wuthrich15,https://doi.org/10.1007/s11229-014-0502-6 +Ronald Loeffler,Demonstrative Reference And Cognitive Significance.,2001,128,Synthese,3,db/journals/synthese/synthese128.html#Loeffler01,https://doi.org/10.1023/A:1011918626632 +Igal Kvart,The Counterfactual Analysis of Cause.,2001,127,Synthese,3,db/journals/synthese/synthese127.html#Kvart01,https://doi.org/10.1023/A:1010398724481 +Mark Colyvan,Idealisations in normative models.,2013,190,Synthese,8,db/journals/synthese/synthese190.html#Colyvan13,https://doi.org/10.1007/s11229-012-0166-z +David M. Williams,Confusion in philosophy: A comment on Williams (1992).,1996,108,Synthese,1,db/journals/synthese/synthese108.html#WilliamsSHS96,https://doi.org/10.1007/BF00414008 +Jeffrey Kane,The Ryō**an-ji axiom for common knowledge on hypergraphs.,2014,191,Synthese,14,db/journals/synthese/synthese191.html#KaneN14,https://doi.org/10.1007/s11229-014-0455-9 +Tracy Lupher,A physical critique of physical causation.,2009,167,Synthese,1,db/journals/synthese/synthese167.html#Lupher09,https://doi.org/10.1007/s11229-007-9289-z +Steven Thomas Seitz,Apollo's oracle: Strategizing for peace.,1994,100,Synthese,3,db/journals/synthese/synthese100.html#Seitz94,https://doi.org/10.1007/BF01063912 +Karl Petersen,Ergodic theorems and the basis of science.,1996,108,Synthese,2,db/journals/synthese/synthese108.html#Petersen96,https://doi.org/10.1007/BF00413496 +Roy T. Cook,Hume's Big Brother: counting concepts and the bad company objection.,2009,170,Synthese,3,db/journals/synthese/synthese170.html#Cook09,https://doi.org/10.1007/s11229-007-9264-8 +Davide Rizza,Arrow's theorem and theory choice.,2014,191,Synthese,8,db/journals/synthese/synthese191.html#Rizza14,https://doi.org/10.1007/s11229-013-0372-3 +Ladislav Kvasz,History of Geometry and the Development of the Form of its Language.,1998,116,Synthese,2,db/journals/synthese/synthese116.html#Kvasz98,https://doi.org/10.1023/A:1005008423734 +D. J. Bradley,Self-location is no problem for conditionalization.,2011,182,Synthese,3,db/journals/synthese/synthese182.html#Bradley11,https://doi.org/10.1007/s11229-010-9748-9 +Matthew William McKeon,A plea for logical objects.,2009,167,Synthese,1,db/journals/synthese/synthese167.html#McKeon09,https://doi.org/10.1007/s11229-008-9308-8 +Pendaran Roberts,An ecumenical response to color contrast cases.,2017,194,Synthese,5,db/journals/synthese/synthese194.html#Roberts17,https://doi.org/10.1007/s11229-016-1016-1 +Mark Textor,A repair of Frege's theory of thoughts.,2009,167,Synthese,1,db/journals/synthese/synthese167.html#Textor09,https://doi.org/10.1007/s11229-008-9304-z +Christopher Shields,The dialectic of life.,2012,185,Synthese,1,db/journals/synthese/synthese185.html#Shields12,https://doi.org/10.1007/s11229-011-9878-8 +Baron Reed,Shelter for the Cognitively Homeless.,2006,148,Synthese,2,db/journals/synthese/synthese148.html#Reed06,https://doi.org/10.1007/s11229-004-6224-4 +Rafael De Clercq,Closer.,2005,146,Synthese,3,db/journals/synthese/synthese146.html#ClercqH05,https://doi.org/10.1007/s11229-004-6219-1 +Andrea Iacona,Rethinking Bivalence.,2005,146,Synthese,3,db/journals/synthese/synthese146.html#Iacona05,https://doi.org/10.1007/s11229-005-6237-7 +Peter Kung,On having no reason: dogmatism and Bayesian confirmation.,2010,177,Synthese,1,db/journals/synthese/synthese177.html#Kung10,https://doi.org/10.1007/s11229-009-9578-9 +Francesco Berto,Conceivability and possibility: some dilemmas for Humeans.,2018,195,Synthese,6,db/journals/synthese/synthese195.html#BertoS18,https://doi.org/10.1007/s11229-017-1346-7 +Blake McAllister,Seemings as sui generis.,2018,195,Synthese,7,db/journals/synthese/synthese195.html#McAllister18,https://doi.org/10.1007/s11229-017-1360-9 +Björn Kralemann,Models as icons: modeling models in the semiotic framework of Peirce's theory of signs.,2013,190,Synthese,16,db/journals/synthese/synthese190.html#KralemannL13,https://doi.org/10.1007/s11229-012-0176-x +I. A. Kieseppä,On the aim of the theory of verisimilitude.,1996,107,Synthese,3,db/journals/synthese/synthese107.html#Kieseppa96,https://doi.org/10.1007/BF00413844 +Andrew McFarland,Causal powers and isomeric chemical kinds.,2018,195,Synthese,4,db/journals/synthese/synthese195.html#McFarland18a,https://doi.org/10.1007/s11229-016-1044-x +Sara L. Uckelman,Prior on an insolubilium of Jean Buridan.,2012,188,Synthese,3,db/journals/synthese/synthese188.html#Uckelman12a,https://doi.org/10.1007/s11229-011-9940-6 +Jeffrey K. McDonough,A Rosa multiflora by Any Other Name: Taxonomic Incommensurability and Scientific Kinds.,2003,136,Synthese,3,db/journals/synthese/synthese136.html#McDonough03,https://doi.org/10.1023/A:1025116814353 +Galit Weidman Sassoon,Measurement theory in linguistics.,2010,174,Synthese,1,db/journals/synthese/synthese174.html#Sassoon10,https://doi.org/10.1007/s11229-009-9687-5 +Glenn Shafer,Review essay.,1995,104,Synthese,1,db/journals/synthese/synthese104.html#Shafer95,https://doi.org/10.1007/BF01063680 +Andy Clark,What 'Extended Me' knows.,2015,192,Synthese,11,db/journals/synthese/synthese192.html#Clark15,https://doi.org/10.1007/s11229-015-0719-z +Richard Routley,Necessary limits to knowledge: unknowable truths.,2010,173,Synthese,1,db/journals/synthese/synthese173.html#Routley10,https://doi.org/10.1007/s11229-009-9679-5 +Darren Bradley,Carnap's epistemological critique of metaphysics.,2018,195,Synthese,5,db/journals/synthese/synthese195.html#Bradley18,https://doi.org/10.1007/s11229-017-1335-x +Andrew Bailey,Supervenience and Physicalism.,1998,117,Synthese,1,db/journals/synthese/synthese117.html#Bailey98,https://doi.org/10.1023/A:1005080908570 +Matt Leonard,What is mereological harmony?,2016,193,Synthese,6,db/journals/synthese/synthese193.html#Leonard16,https://doi.org/10.1007/s11229-015-0822-1 +Andrei Marmor,On convention.,1996,107,Synthese,3,db/journals/synthese/synthese107.html#Marmor96,https://doi.org/10.1007/BF00413841 +Jonathan Tallant,"What is it to ""B"" a relation?",2008,162,Synthese,1,db/journals/synthese/synthese162.html#Tallant08,https://doi.org/10.1007/s11229-007-9173-x +Kelly Trogdon,Revelation and physicalism.,2017,194,Synthese,7,db/journals/synthese/synthese194.html#Trogdon17,https://doi.org/10.1007/s11229-016-1055-7 +Friederike Moltmann,Propositional Attitudes Without Propositions.,2003,135,Synthese,1,db/journals/synthese/synthese135.html#Moltmann03,https://doi.org/10.1023/A:1022945009188 +John Michael Krois,"The priority of ""symbolism"" over language in Cassirer's philosophy.",2011,179,Synthese,1,db/journals/synthese/synthese179.html#Krois11,https://doi.org/10.1007/s11229-009-9636-3 +Jonah N. Schupbach,Must the Scientific Realist be a Rationalist?,2007,154,Synthese,2,db/journals/synthese/synthese154.html#Schupbach07,https://doi.org/10.1007/s11229-005-3490-8 +John N. Williams,The completeness of the pragmatic solution to Moore's paradox in belief: a reply to Chan.,2013,190,Synthese,12,db/journals/synthese/synthese190.html#Williams13,https://doi.org/10.1007/s11229-011-9991-8 +Peter J. Graham,Formulating reductionism about testimonial warrant and the challenge from childhood testimony.,2018,195,Synthese,7,db/journals/synthese/synthese195.html#Graham18,https://doi.org/10.1007/s11229-016-1140-y +Craig Stephen Delancey,Ontology and Teleofunctions: A Defense and Revision of the Systematic Account of Teleological Explanation.,2006,150,Synthese,1,db/journals/synthese/synthese150.html#Delancey06,https://doi.org/10.1007/s11229-004-6257-8 +Axel Mueller,Does Kantian mental content externalism help metaphysical realists?,2011,182,Synthese,3,db/journals/synthese/synthese182.html#Mueller11,https://doi.org/10.1007/s11229-010-9753-z +Gian Aldo Antonelli,What's in a function?,1996,107,Synthese,2,db/journals/synthese/synthese107.html#Antonelli96,https://doi.org/10.1007/BF00413605 +Stephen Leeds,Correspondence truth and scientific realism.,2007,159,Synthese,1,db/journals/synthese/synthese159.html#Leeds07,https://doi.org/10.1007/s11229-006-9064-6 +Anatoliy Ishmuratov,Quest schemes in analytical models of discourse.,1994,100,Synthese,1,db/journals/synthese/synthese100.html#Ishmuratov94,https://doi.org/10.1007/BF01063919 +Richard Dietz,Vagueness and probability: introduction.,2017,194,Synthese,10,db/journals/synthese/synthese194.html#Dietz17,https://doi.org/10.1007/s11229-017-1347-6 +Colin Hamlin,Towards a theory of universes: structure theory and the mathematical universe hypothesis.,2017,194,Synthese,2,db/journals/synthese/synthese194.html#Hamlin17,https://doi.org/10.1007/s11229-015-0959-y +Eduardo N. Giovannini,Bridging the gap between analytic and synthetic geometry: Hilbert's axiomatic approach.,2016,193,Synthese,1,db/journals/synthese/synthese193.html#Giovannini16,https://doi.org/10.1007/s11229-015-0743-z +Martin King,On structural accounts of model-explanations.,2016,193,Synthese,9,db/journals/synthese/synthese193.html#King16,https://doi.org/10.1007/s11229-015-0885-z +David Spurrett,Physicalism as an empirical hypothesis.,2017,194,Synthese,9,db/journals/synthese/synthese194.html#Spurrett17,https://doi.org/10.1007/s11229-015-0986-8 +Rush T. Stewart,Conditional choice with a vacuous second tier.,2016,193,Synthese,1,db/journals/synthese/synthese193.html#Stewart16,https://doi.org/10.1007/s11229-015-0754-9 +David Ripley,Structures and circumstances: two ways to fine-grain propositions.,2012,189,Synthese,1,db/journals/synthese/synthese189.html#Ripley12,https://doi.org/10.1007/s11229-012-0100-4 +Christian Nimtz,Two-Dimensional and Natural Kind Terms.,2004,138,Synthese,1,db/journals/synthese/synthese138.html#Nimtz04,https://doi.org/10.1023/B:SYNT.0000012205.86593.46 +M. J. Cresswell,Prior on the semantics of modal and tense logic.,2016,193,Synthese,11,db/journals/synthese/synthese193.html#Cresswell16,https://doi.org/10.1007/s11229-015-0949-0 +Benjamin Feintzeig,Unitary inequivalence in classical systems.,2016,193,Synthese,9,db/journals/synthese/synthese193.html#Feintzeig16,https://doi.org/10.1007/s11229-015-0875-1 +Christopher Gregory Weaver,A Church-Fitch proof for the universality of causation.,2013,190,Synthese,14,db/journals/synthese/synthese190.html#Weaver13,https://doi.org/10.1007/s11229-012-0079-x +Raymond Martin,What really matters.,2008,162,Synthese,3,db/journals/synthese/synthese162.html#Martin08a,https://doi.org/10.1007/s11229-007-9251-0 +Phil Dowe,A Defense of Backwards in Time Causation Models in Quantum Mechanics.,1997,112,Synthese,2,db/journals/synthese/synthese112.html#Dowe97,https://doi.org/10.1023/A%3A1004932911141 +Hans Johann Glock,Truth in the Tractatus.,2006,148,Synthese,2,db/journals/synthese/synthese148.html#Glock06,https://doi.org/10.1007/s11229-004-6226-2 +Kai Frederick Wehmeier,Frege's permutation argument revisited.,2005,147,Synthese,1,db/journals/synthese/synthese147.html#WehmeierS05,https://doi.org/10.1007/s11229-004-6206-6 +Charlie Pelling,Characterizing hallucination epistemically.,2011,178,Synthese,3,db/journals/synthese/synthese178.html#Pelling11,https://doi.org/10.1007/s11229-009-9651-4 +Alex Levine,Conjoining Mathematical Empiricism with Mathematical Realism: Maddy's Account of Set Perception Revisited.,2005,145,Synthese,3,db/journals/synthese/synthese145.html#Levine05,https://doi.org/10.1007/s11229-005-6202-5 +J. Brian Pitts,Irrelevant conjunction and the ratio measure or historical skepticism.,2013,190,Synthese,12,db/journals/synthese/synthese190.html#Pitts13,https://doi.org/10.1007/s11229-011-9961-1 +Simon D'Alfonso,Belief merging with the aim of truthlikeness.,2016,193,Synthese,7,db/journals/synthese/synthese193.html#DAlfonso16,https://doi.org/10.1007/s11229-015-0825-y +Christian List,The theory of judgment aggregation: an introductory review.,2012,187,Synthese,1,db/journals/synthese/synthese187.html#List12,https://doi.org/10.1007/s11229-011-0025-3 +Stefan Schubert,Coherence reasoning and reliability: a defense of the Shogenji measure.,2012,187,Synthese,2,db/journals/synthese/synthese187.html#Schubert12,https://doi.org/10.1007/s11229-010-9856-6 +Ronald Sandler,Is artefactualness a value-relevant property of living things?,2012,185,Synthese,1,db/journals/synthese/synthese185.html#Sandler12,https://doi.org/10.1007/s11229-011-9877-9 +Noel Hendrickson,Counterfactual reasoning and the problem of selecting antecedent scenarios.,2012,185,Synthese,3,db/journals/synthese/synthese185.html#Hendrickson12,https://doi.org/10.1007/s11229-010-9824-1 +Reese M. Heitner,From a Phono-Logical Point of View: Neutralizing Quine's Argument Against Analyticity.,2006,150,Synthese,1,db/journals/synthese/synthese150.html#Heitner06,https://doi.org/10.1007/s11229-004-6253-z +David Capps,A coherent moral relativism.,2009,166,Synthese,2,db/journals/synthese/synthese166.html#CappsLM09,https://doi.org/10.1007/s11229-007-9279-1 +John Bickle,Has the last decade of challenges to the multiple realization argument provided aid and comfort to psychoneural reductionists?,2010,177,Synthese,2,db/journals/synthese/synthese177.html#Bickle10,https://doi.org/10.1007/s11229-010-9843-y +Robin McKenna,Epistemic contextualism defended.,2015,192,Synthese,2,db/journals/synthese/synthese192.html#McKenna15,https://doi.org/10.1007/s11229-014-0572-5 +David Spector,Margin for error semantics and signal perception.,2013,190,Synthese,15,db/journals/synthese/synthese190.html#Spector13,https://doi.org/10.1007/s11229-012-0155-2 +Stephen Wright,The transmission of knowledge and justification.,2016,193,Synthese,1,db/journals/synthese/synthese193.html#Wright16,https://doi.org/10.1007/s11229-015-0760-y +Ingar Brinck,Representation and self-awareness in intentional agents.,1999,118,Synthese,1,db/journals/synthese/synthese118.html#BrinckG99,https://doi.org/10.1023/A:1005109414345 +Roman Frigg,The philosophy of simulation: hot new issues or same old stew?,2011,180,Synthese,1,db/journals/synthese/synthese180.html#FriggR11,https://doi.org/10.1007/s11229-009-9577-x +Stephen Hetherington,Concessive knowledge-attributions: fallibilism and gradualism.,2013,190,Synthese,14,db/journals/synthese/synthese190.html#Hetherington13,https://doi.org/10.1007/s11229-012-0088-9 +Berit Brogaard,Introduction to Relative Truth.,2009,166,Synthese,2,db/journals/synthese/synthese166.html#Brogaard09,https://doi.org/10.1007/s11229-007-9288-0 +Luca Moretti,Probabilistic Measures of Coherence and the Problem of Belief Individuation.,2007,154,Synthese,1,db/journals/synthese/synthese154.html#MorettiA07,https://doi.org/10.1007/s11229-005-0193-0 +Linton Wang,Epistemic comparative conditionals.,2008,162,Synthese,1,db/journals/synthese/synthese162.html#Wang08,https://doi.org/10.1007/s11229-007-9174-9 +Matthew Kopec,A pluralistic account of epistemic rationality.,2018,195,Synthese,8,db/journals/synthese/synthese195.html#Kopec18,https://doi.org/10.1007/s11229-017-1388-x +Menno Lievers,Two Versions of the Manifestation Argument.,1998,115,Synthese,2,db/journals/synthese/synthese115.html#Lievers98,https://doi.org/10.1023/A:1005056322825 +Jamie Tappenden,Geometry and generality in Frege's philosophy of arithmetic.,1995,102,Synthese,3,db/journals/synthese/synthese102.html#Tappenden95,https://doi.org/10.1007/BF01064120 +Johan E. Gustafsson,A computer simulation of the argument from disagreement.,2012,184,Synthese,3,db/journals/synthese/synthese184.html#GustafssonP12,https://doi.org/10.1007/s11229-010-9822-3 +Douglas N. Walton,Begging the question as a pragmatic fallacy.,1994,100,Synthese,1,db/journals/synthese/synthese100.html#Walton94,https://doi.org/10.1007/BF01063922 +Kristian Camilleri,Toward a constructivist epistemology of thought experiments in science.,2014,191,Synthese,8,db/journals/synthese/synthese191.html#Camilleri14,https://doi.org/10.1007/s11229-013-0358-1 +Igor Douven,The evidential support theory of conditionals.,2008,164,Synthese,1,db/journals/synthese/synthese164.html#Douven08,https://doi.org/10.1007/s11229-007-9214-5 +Nino B. Cocchiarella,Reference in Conceptual Realism.,1998,114,Synthese,2,db/journals/synthese/synthese114.html#Cocchiarella98,https://doi.org/10.1023/A:1005005113229 +Benjamin Bayer,A role for abstractionism in a direct realist foundationalism.,2011,180,Synthese,3,db/journals/synthese/synthese180.html#Bayer11,https://doi.org/10.1007/s11229-009-9707-5 +María Manzano,A note on Visions of Henkin.,2017,194,Synthese,6,db/journals/synthese/synthese194.html#ManzanoA17,https://doi.org/10.1007/s11229-016-1022-3 +Haim Gaifman,Deceptive updating and minimal information methods.,2012,187,Synthese,1,db/journals/synthese/synthese187.html#GaifmanV12,https://doi.org/10.1007/s11229-011-0028-0 +Brad Thompson,Representationalism and the conceivability of inverted spectra.,2008,160,Synthese,2,db/journals/synthese/synthese160.html#Thompson08a,https://doi.org/10.1007/s11229-006-9110-4 +Ladislav Koren,Hinge commitments vis-à-vis the transmission problem.,2015,192,Synthese,8,db/journals/synthese/synthese192.html#Koren15,https://doi.org/10.1007/s11229-015-0664-x +Lisa Gannett,Questions asked and unasked: how by worrying less about the 'really real' philosophers of science might better contribute to debates about genetics and race.,2010,177,Synthese,3,db/journals/synthese/synthese177.html#Gannett10,https://doi.org/10.1007/s11229-010-9788-1 +Alex Malpass,A future for the thin red line.,2012,188,Synthese,1,db/journals/synthese/synthese188.html#MalpassW12,https://doi.org/10.1007/s11229-012-0064-4 +James R. Shaw,De se belief and rational choice.,2013,190,Synthese,3,db/journals/synthese/synthese190.html#Shaw13,https://doi.org/10.1007/s11229-011-0044-0 +Urszula Wybraniec-Skardowska,Logical and Philosophical Ideas in Certain Formal Approaches to Language.,1998,116,Synthese,2,db/journals/synthese/synthese116.html#Wybraniec-Skardowska98,https://doi.org/10.1023/A:1005098325137 +Barry Hartley Slater,Harmonising natural deduction.,2008,163,Synthese,2,db/journals/synthese/synthese163.html#Slater08,https://doi.org/10.1007/s11229-007-9197-2 +Peer F. Bundgaard,The grammar of aesthetic intuition: on Ernst Cassirer's concept of symbolic form in the visual arts.,2011,179,Synthese,1,db/journals/synthese/synthese179.html#Bundgaard11,https://doi.org/10.1007/s11229-009-9631-8 +José L. Zalabardo,One strand in the rule-following considerations.,2009,171,Synthese,3,db/journals/synthese/synthese171.html#Zalabardo09,https://doi.org/10.1007/s11229-008-9323-9 +Min Chen,An analysis of information visualisation.,2013,190,Synthese,16,db/journals/synthese/synthese190.html#ChenF13,https://doi.org/10.1007/s11229-012-0183-y +Till Grüne-Yanoff,Preference change and conservatism: comparing the Bayesian and the AGM models of preference revision.,2013,190,Synthese,14,db/journals/synthese/synthese190.html#Grune-Yanoff13,https://doi.org/10.1007/s11229-010-9863-7 +Davide Grossi,Syntactic awareness in logical dynamics.,2015,192,Synthese,12,db/journals/synthese/synthese192.html#GrossiV15,https://doi.org/10.1007/s11229-015-0733-1 +Tudor M. Baetu,From interventions to mechanistic explanations.,2016,193,Synthese,10,db/journals/synthese/synthese193.html#Baetu16,https://doi.org/10.1007/s11229-015-0930-y +Makmiller Pedroso,On three arguments against categorical structuralism.,2009,170,Synthese,1,db/journals/synthese/synthese170.html#Pedroso09,https://doi.org/10.1007/s11229-008-9346-2 +Kathrin Glüer,Defeating looks.,2018,195,Synthese,7,db/journals/synthese/synthese195.html#Gluer18,https://doi.org/10.1007/s11229-016-1186-x +Richard Dawid,Bayesian perspectives on the discovery of the Higgs particle.,2017,194,Synthese,2,db/journals/synthese/synthese194.html#Dawid17a,https://doi.org/10.1007/s11229-015-0943-6 +James D. Wells,Higgs naturalness and the scalar boson proliferation instability problem.,2017,194,Synthese,2,db/journals/synthese/synthese194.html#Wells17,https://doi.org/10.1007/s11229-014-0618-8 +Marc Moffett,The 37th annual meeting of the Society for Exact Philosophy.,2011,181,Synthese,2,db/journals/synthese/synthese181.html#MoffettR11,https://doi.org/10.1007/s11229-010-9795-2 +Ulrich Meyer 0002,Modal property comprehension.,2013,190,Synthese,4,db/journals/synthese/synthese190.html#Meyer13,https://doi.org/10.1007/s11229-012-0199-3 +Roman Frigg,Editorial.,2009,169,Synthese,3,db/journals/synthese/synthese169.html#FriggHI09,https://doi.org/10.1007/s11229-008-9439-y +Adam Morton,Human bounds: rationality for our species.,2010,176,Synthese,1,db/journals/synthese/synthese176.html#Morton10,https://doi.org/10.1007/s11229-009-9481-4 +øystein Linnebo,Introduction.,2009,170,Synthese,3,db/journals/synthese/synthese170.html#Linnebo09,https://doi.org/10.1007/s11229-007-9267-5 +Flavia Padovani,Relativizing the relativized a priori: Reichenbach's axioms of coordination divided.,2011,181,Synthese,1,db/journals/synthese/synthese181.html#Padovani11,https://doi.org/10.1007/s11229-009-9590-0 +Sam Cowling,Conceivability arguments for haecceitism.,2017,194,Synthese,10,db/journals/synthese/synthese194.html#Cowling17,https://doi.org/10.1007/s11229-016-1136-7 +Jonardon Ganeri,Objectivity And Proof In A Classical Indian Theory Of Number.,2001,129,Synthese,3,db/journals/synthese/synthese129.html#Ganeri01,https://doi.org/10.1023/A:1013144411940 +Raphaël Sandoz,Applying mathematics to empirical sciences: flashback to a puzzling disciplinary interaction.,2018,195,Synthese,2,db/journals/synthese/synthese195.html#Sandoz18,https://doi.org/10.1007/s11229-016-1251-5 +Jon Pérez Laraudogoitia,On Norton's dome.,2013,190,Synthese,14,db/journals/synthese/synthese190.html#Laraudogoitia13a,https://doi.org/10.1007/s11229-012-0105-z +Pierre Grenon,Foundations of an ontology of philosophy.,2011,182,Synthese,2,db/journals/synthese/synthese182.html#GrenonS11,https://doi.org/10.1007/s11229-009-9658-x +Lenny Clapp,On denying presuppositions.,2017,194,Synthese,6,db/journals/synthese/synthese194.html#Clapp17,https://doi.org/10.1007/s11229-016-1026-z +Jaakko Hintikka,Review Article.,2000,124,Synthese,3,db/journals/synthese/synthese124.html#HintikkaB00,https://doi.org/10.1023/A:1005288120487 +Dennis Dieks,Reasoning about the future: Doom and Beauty.,2007,156,Synthese,3,db/journals/synthese/synthese156.html#Dieks07,https://doi.org/10.1007/s11229-006-9132-y +Anthony Brueckner,"On ""Epistemic Permissiveness"".",2012,188,Synthese,2,db/journals/synthese/synthese188.html#BruecknerB12,https://doi.org/10.1007/s11229-011-9921-9 +Patrick Allo,Reasoning about data and information.,2009,167,Synthese,2,db/journals/synthese/synthese167.html#Allo09,https://doi.org/10.1007/s11229-008-9407-6 +T. Allan Hillman,The early Russell on the metaphysics of substance in Leibniz and Bradley.,2008,163,Synthese,2,db/journals/synthese/synthese163.html#Hillman08,https://doi.org/10.1007/s11229-007-9201-x +Anthony Wrigley,Abstracting Propositions.,2006,151,Synthese,2,db/journals/synthese/synthese151.html#Wrigley06,https://doi.org/10.1007/s11229-004-2249-y +Lucia M. Vaina,Inference of object use from pantomimed actions by aphasics and patients with right hemisphere lesions.,1995,104,Synthese,1,db/journals/synthese/synthese104.html#VainaGD95,https://doi.org/10.1007/BF01063674 +Michael Friedman,Carnap on theoretical terms: structuralism without metaphysics.,2011,180,Synthese,2,db/journals/synthese/synthese180.html#Friedman11,https://doi.org/10.1007/s11229-009-9604-y +Ryan Muldoon,Why are there descriptive norms? Because we looked for them.,2014,191,Synthese,18,db/journals/synthese/synthese191.html#MuldoonLH14,https://doi.org/10.1007/s11229-014-0534-y +Thomas W. Polger,Evaluating the evidence for multiple realization.,2009,167,Synthese,3,db/journals/synthese/synthese167.html#Polger09,https://doi.org/10.1007/s11229-008-9386-7 +M. Albert,The propensity theory: a decision-theoretic restatement.,2007,156,Synthese,3,db/journals/synthese/synthese156.html#Albert07,https://doi.org/10.1007/s11229-006-9139-4 +Jonathan Waskan,Explanatory anti-psychologism overturned by lay and scientific case classifications.,2014,191,Synthese,5,db/journals/synthese/synthese191.html#WaskanHHSC14,https://doi.org/10.1007/s11229-013-0304-2 +Joongol Kim,What are numbers?,2013,190,Synthese,6,db/journals/synthese/synthese190.html#Kim13,https://doi.org/10.1007/s11229-011-9883-y +Francien Dechesne,Thompson Transformations for If-Logic.,2006,149,Synthese,2,db/journals/synthese/synthese149.html#Dechesne06,https://doi.org/10.1007/s11229-005-3876-7 +A. C. Paseau,Erratum to: A measure of inferential-role preservation.,2017,194,Synthese,4,db/journals/synthese/synthese194.html#Paseau17,https://doi.org/10.1007/s11229-015-0738-9 +Louis M. Guenin,Introduction.,2005,145,Synthese,2,db/journals/synthese/synthese145.html#Guenin05,https://doi.org/10.1007/s11229-005-3744-5 +Heather Douglas,The Irreducible Complexity of Objectivity.,2004,138,Synthese,3,db/journals/synthese/synthese138.html#Douglas04,https://doi.org/10.1023/B:SYNT.0000016451.18182.91 +Mathias Frisch,Models and scientific representations or: who is afraid of inconsistency?,2014,191,Synthese,13,db/journals/synthese/synthese191.html#Frisch14,https://doi.org/10.1007/s11229-014-0471-9 +M. Bryson Brown,The shape of science.,2014,191,Synthese,13,db/journals/synthese/synthese191.html#Brown14a,https://doi.org/10.1007/s11229-014-0475-5 +Spyridon Orestis Palermos,Knowledge and cognitive integration.,2014,191,Synthese,8,db/journals/synthese/synthese191.html#Palermos14,https://doi.org/10.1007/s11229-013-0383-0 +Charles B. Cross,A Theorem Concerning Syntactical Treatments Of Nonidealized Belief.,2001,129,Synthese,3,db/journals/synthese/synthese129.html#Cross01,https://doi.org/10.1023/A:1013155912920 +Matthias Steup,Doxastic freedom.,2008,161,Synthese,3,db/journals/synthese/synthese161.html#Steup08,https://doi.org/10.1007/s11229-006-9090-4 +Thomas M. Crisp,A dilemma for internalism?,2010,174,Synthese,3,db/journals/synthese/synthese174.html#Crisp10,https://doi.org/10.1007/s11229-009-9457-4 +Keith A. Markus,An incremental approach to causal inference in the behavioral sciences.,2014,191,Synthese,10,db/journals/synthese/synthese191.html#Markus14,https://doi.org/10.1007/s11229-013-0386-x +Joanna K. Malinowska,Cultural neuroscience and the category of race: the case of the other-race effect.,2016,193,Synthese,12,db/journals/synthese/synthese193.html#Malinowska16,https://doi.org/10.1007/s11229-016-1108-y +Hans P. van Ditmarsch,Comments to 'logics of public communications'.,2007,158,Synthese,2,db/journals/synthese/synthese158.html#Ditmarsch07,https://doi.org/10.1007/s11229-007-9167-8 +Heather J. Gert,Family resemblances and criteria.,1995,105,Synthese,2,db/journals/synthese/synthese105.html#Gert95,https://doi.org/10.1007/BF01064217 +John Dilworth,The Double Content of Perception.,2005,146,Synthese,3,db/journals/synthese/synthese146.html#Dilworth05,https://doi.org/10.1007/s11229-004-6209-3 +Johan van Benthem,Introduction.,2011,179,Synthese,2,db/journals/synthese/synthese179.html#BenthemKV11,https://doi.org/10.1007/s11229-010-9774-7 +Eugen Fischer,On the Very Idea of a Theory of Meaning for a Natural Language.,1997,111,Synthese,1,db/journals/synthese/synthese111.html#Fischer97,https://doi.org/10.1023/A%3A1004973407034 +Adam Morton,Hypercomparatives.,1997,111,Synthese,1,db/journals/synthese/synthese111.html#Morton97,https://doi.org/10.1023/A%3A1004933708851 +Newton C. A. da Costa,A modal ontology of properties for quantum mechanics.,2013,190,Synthese,17,db/journals/synthese/synthese190.html#CostaLL13,https://doi.org/10.1007/s11229-012-0218-4 +Sven Ove Hansson,Category-specified Value Statements.,2006,148,Synthese,2,db/journals/synthese/synthese148.html#Hansson06,https://doi.org/10.1007/s11229-004-6236-0 +James Van Cleve,Objectivity without objects: a Priorian program.,2016,193,Synthese,11,db/journals/synthese/synthese193.html#Cleve16,https://doi.org/10.1007/s11229-015-0915-x +Jan Wolenski,Review essay.,1994,101,Synthese,1,db/journals/synthese/synthese101.html#WolenskiS94,https://doi.org/10.1007/BF01063970 +Anthony Sudbery,The logic of the future in quantum theory.,2017,194,Synthese,11,db/journals/synthese/synthese194.html#Sudbery17,https://doi.org/10.1007/s11229-016-1142-9 +Christopher Willard-Kyle,Do great minds really think alike?,2017,194,Synthese,3,db/journals/synthese/synthese194.html#Willard-Kyle17,https://doi.org/10.1007/s11229-015-0984-x +Worth Boone,The cognitive neuroscience revolution.,2016,193,Synthese,5,db/journals/synthese/synthese193.html#BooneP16,https://doi.org/10.1007/s11229-015-0783-4 +Chuang Liu,Laws and Models in a Theory of Idealization.,2004,138,Synthese,3,db/journals/synthese/synthese138.html#Liu04,https://doi.org/10.1023/B:SYNT.0000016425.36070.37 +J. Adam Carter,Knowledge and the value of cognitive ability.,2013,190,Synthese,17,db/journals/synthese/synthese190.html#CarterJR13,https://doi.org/10.1007/s11229-012-0220-x +Karl Tuyls,An Evolutionary Game Theoretic Perspective on Learning in Multi-Agent Systems.,2004,139,Synthese,2,db/journals/synthese/synthese139.html#TuylsNLM04,https://doi.org/10.1023/B:SYNT.0000024908.89191.f1 +Martin Pleitz,Solving Prior's problem with a Priorean tool.,2016,193,Synthese,11,db/journals/synthese/synthese193.html#Pleitz16,https://doi.org/10.1007/s11229-015-0931-x +Ittay Nissan-Rozen,Newcomb meets Gettier.,2017,194,Synthese,12,db/journals/synthese/synthese194.html#Nissan-Rozen17,https://doi.org/10.1007/s11229-016-1169-y +Richmond H. Thomason,The Little Nell Problem: reasonable and resolute maintenance of agent intentions.,2018,195,Synthese,1,db/journals/synthese/synthese195.html#Thomason18,https://doi.org/10.1007/s11229-016-1229-3 +Klemens Kappel,Epistemic expressivism and the argument from motivation.,2014,191,Synthese,7,db/journals/synthese/synthese191.html#KappelM14,https://doi.org/10.1007/s11229-013-0347-4 +Jacqueline A. Sullivan,Reconsidering 'spatial memory' and the Morris water maze.,2010,177,Synthese,2,db/journals/synthese/synthese177.html#Sullivan10a,https://doi.org/10.1007/s11229-010-9849-5 +Isaac Levi,Carol Rovane.,2004,140,Synthese,1,db/journals/synthese/synthese140.html#Levi04f,https://doi.org/10.1023/B:SYNT.0000029949.50644.51 +Ingvar Johansson,Formalizing common sense: an operator-based approach to the Tibbles-Tib problem.,2008,163,Synthese,2,db/journals/synthese/synthese163.html#Johansson08,https://doi.org/10.1007/s11229-007-9199-0 +Kristoffer Ahlström-Vij,The epistemology of inclusiveness.,2013,190,Synthese,7,db/journals/synthese/synthese190.html#Ahlstrom-VijKP13,https://doi.org/10.1007/s11229-013-0265-5 +Wolfgang Schwarz,Lost memories and useless coins: revisiting the absentminded driver.,2015,192,Synthese,9,db/journals/synthese/synthese192.html#Schwarz15,https://doi.org/10.1007/s11229-015-0699-z +Campbell Brown,The best of all possibleworlds.,2005,143,Synthese,3,db/journals/synthese/synthese143.html#BrownN05,https://doi.org/10.1007/s11229-005-7043-y +Minghui Ma,Gamma graph calculi for modal logics.,2018,195,Synthese,8,db/journals/synthese/synthese195.html#MaP18,https://doi.org/10.1007/s11229-017-1390-3 +Lauren Olin,Burge on perception and sensation.,2016,193,Synthese,5,db/journals/synthese/synthese193.html#Olin16,https://doi.org/10.1007/s11229-014-0531-1 +I. L. Humberstone,Intrinsic/extrinsic.,1996,108,Synthese,2,db/journals/synthese/synthese108.html#Humberstone96,https://doi.org/10.1007/BF00413498 +A. R. J. Fisher,On Lewis against magic: a study of method in metaphysics.,2018,195,Synthese,5,db/journals/synthese/synthese195.html#Fisher18,https://doi.org/10.1007/s11229-015-0679-3 +Christian Damböck,"Kuhn's notion of scientific progress: ""Reduction"" between incommensurable theories in a rigid structuralist framework.",2014,191,Synthese,10,db/journals/synthese/synthese191.html#Dambock14,https://doi.org/10.1007/s11229-013-0392-z +Athanassios Tzouvaras,The Order Structure of Continua.,1997,113,Synthese,3,db/journals/synthese/synthese113.html#Tzouvaras97,https://doi.org/10.1023/A:1005094430329 +Christopher Hitchcock,Trumping and contrastive causation.,2011,181,Synthese,2,db/journals/synthese/synthese181.html#Hitchcock11,https://doi.org/10.1007/s11229-010-9799-y +B. Jack Copeland,On Alan Turing's anticipation of connectionism.,1996,108,Synthese,3,db/journals/synthese/synthese108.html#CopelandP96,https://doi.org/10.1007/BF00413694 +Søren Harnow Klausen,Group knowledge: a real-world approach.,2015,192,Synthese,3,db/journals/synthese/synthese192.html#Klausen15,https://doi.org/10.1007/s11229-014-0589-9 +Marc A. Moffett,Introduction: Proceedings of the 36th annual meeting of the Society for Exact Philosophy - Syntax and the Void!,2010,176,Synthese,2,db/journals/synthese/synthese176.html#Moffett10,https://doi.org/10.1007/s11229-009-9488-x +Sebastiano Moruzzi,Trumping assessments and the aristotelian future.,2009,166,Synthese,2,db/journals/synthese/synthese166.html#MoruzziW09,https://doi.org/10.1007/s11229-007-9282-6 +Hamid Vahid,Varieties of Epistemic Conservatism.,2004,141,Synthese,1,db/journals/synthese/synthese141.html#Vahid04,https://doi.org/10.1023/B:SYNT.0000035849.62840.e8 +Stephen Mumford,Laws and Lawlessness.,2005,144,Synthese,3,db/journals/synthese/synthese144.html#Mumford05,https://doi.org/10.1007/s11229-005-5873-2 +Torben Braüner,Preface.,2006,150,Synthese,3,db/journals/synthese/synthese150.html#BraunerHO06,https://doi.org/10.1007/s11229-005-5510-0 +David Atkinson,Probability all the Way Up.,2006,153,Synthese,2,db/journals/synthese/synthese153.html#AtkinsonP06,https://doi.org/10.1007/s11229-005-2723-1 +Matthew A. Benton,Iffy predictions and proper expectations.,2014,191,Synthese,8,db/journals/synthese/synthese191.html#BentonT14,https://doi.org/10.1007/s11229-013-0377-y +Christiane Schmitz-Rigal,Science and Art: physics as a symbolic formation.,2011,179,Synthese,1,db/journals/synthese/synthese179.html#Schmitz-Rigal11,https://doi.org/10.1007/s11229-009-9630-9 +Jon Pérez Laraudogoitia,Two Ways Of Looking At A Newtonian Supertask.,2002,131,Synthese,2,db/journals/synthese/synthese131.html#LaaraudogoitiaB02,https://doi.org/10.1023/A:1015775628393 +Maria van der Schaar,The cognitive act and the first-person perspective: an epistemology for constructive type theory.,2011,180,Synthese,3,db/journals/synthese/synthese180.html#Schaar11,https://doi.org/10.1007/s11229-009-9708-4 +Joseph Ulatowski,Minimalism about truth: special issue introduction.,2018,195,Synthese,3,db/journals/synthese/synthese195.html#UlatowskiW18,https://doi.org/10.1007/s11229-017-1376-1 +Joe Morrison,Just how controversial is evidential holism?,2010,173,Synthese,3,db/journals/synthese/synthese173.html#Morrison10,https://doi.org/10.1007/s11229-008-9440-5 +Minyao Huang,A plea for radical contextualism.,2017,194,Synthese,3,db/journals/synthese/synthese194.html#Huang17,https://doi.org/10.1007/s11229-015-0982-z +A. N. Prior,The fable of the four preachers.,2012,188,Synthese,3,db/journals/synthese/synthese188.html#Prior12c,https://doi.org/10.1007/s11229-011-9937-1 +Gianluigi Oliveri,Mathematics. A Science of Patterns?,1997,112,Synthese,3,db/journals/synthese/synthese112.html#Oliveri97,https://doi.org/10.1023/A%3A1004906107430 +Elmar Geir Unnsteinsson,Compositionality and sandbag semantics.,2014,191,Synthese,14,db/journals/synthese/synthese191.html#Unnsteinsson14,https://doi.org/10.1007/s11229-014-0449-7 +Xiaoli Liu,Gödel's philosophical program and Husserl's phenomenology.,2010,175,Synthese,1,db/journals/synthese/synthese175.html#Liu10,https://doi.org/10.1007/s11229-009-9532-x +Charlotte Werndl,On choosing between deterministic and indeterministic models: underdetermination and indirect evidence.,2013,190,Synthese,12,db/journals/synthese/synthese190.html#Werndl13,https://doi.org/10.1007/s11229-011-9966-9 +Hans Rott,Negative Doxastic Voluntarism and the concept of belief.,2017,194,Synthese,8,db/journals/synthese/synthese194.html#Rott17,https://doi.org/10.1007/s11229-016-1032-1 +Ernst Wolfgang Orth,Ernst Cassirer as cultural scientist.,2011,179,Synthese,1,db/journals/synthese/synthese179.html#Orth11,https://doi.org/10.1007/s11229-009-9627-4 +Jing Zhu,On the principle of intention agglomeration.,2010,175,Synthese,1,db/journals/synthese/synthese175.html#Zhu10,https://doi.org/10.1007/s11229-009-9531-y +Giuseppe Primiero,An epistemic logic for becoming informed.,2009,167,Synthese,2,db/journals/synthese/synthese167.html#Primiero09,https://doi.org/10.1007/s11229-008-9413-8 +Robert M. Gordon,Ascent routines for propositional attitudes.,2007,159,Synthese,2,db/journals/synthese/synthese159.html#Gordon07,https://doi.org/10.1007/s11229-007-9202-9 +Giacomo Bonanno,Logic and the Foundations of the Theory of Games and Decisions: Introduction*.,2005,147,Synthese,2,db/journals/synthese/synthese147.html#Bonanno05,https://doi.org/10.1007/s11229-005-1346-x +Rosanna Keefe,What logical pluralism cannot be.,2014,191,Synthese,7,db/journals/synthese/synthese191.html#Keefe14,https://doi.org/10.1007/s11229-013-0333-x +Bart Hollebrandse,Children's first and second-order false-belief reasoning in a verbal and a low-verbal task.,2014,191,Synthese,3,db/journals/synthese/synthese191.html#HollebrandseHH14,https://doi.org/10.1007/s11229-012-0169-9 +Thomas Benda,An axiomatic foundation of relativistic spacetime.,2015,192,Synthese,7,db/journals/synthese/synthese192.html#Benda15,https://doi.org/10.1007/s11229-013-0345-6 +Joan Weiner,Realismbei Frege: Reply to Burge.,1995,102,Synthese,3,db/journals/synthese/synthese102.html#Weiner95,https://doi.org/10.1007/BF01064121 +Jacob Stegenga,An impossibility theorem for amalgamating evidence.,2013,190,Synthese,12,db/journals/synthese/synthese190.html#Stegenga13,https://doi.org/10.1007/s11229-011-9973-x +Eric R. Scerri,Bibliography on Philosophy of Chemistry.,1997,111,Synthese,3,db/journals/synthese/synthese111.html#Scerri97,https://doi.org/10.1023/A%3A1004958116783 +Guy Axtell,Two for the show: Anti-luck and virtue epistemologies in consonance.,2007,158,Synthese,3,db/journals/synthese/synthese158.html#Axtell07,https://doi.org/10.1007/s11229-006-9045-9 +Frank Hofmann 0001,Epistemic Means and Ends: In Defense of Some Sartwellian Insights.,2005,146,Synthese,3,db/journals/synthese/synthese146.html#000105,https://doi.org/10.1007/s11229-004-6210-x +Peter Kosso,The Epistemology of Spontaneously Broken Symmetries.,2000,122,Synthese,3,db/journals/synthese/synthese122.html#Kosso00,https://doi.org/10.1023/A:1005213321366 +Hanti Lin,On the regress problem of deciding how to decide.,2014,191,Synthese,4,db/journals/synthese/synthese191.html#Lin14,https://doi.org/10.1007/s11229-014-0398-1 +Alex Malpass,Synthese special issue introduction.,2012,188,Synthese,1,db/journals/synthese/synthese188.html#MalpassG12,https://doi.org/10.1007/s11229-012-0123-x +Claudine Verheggen,The Meaningfulness of Meaning Questions.,2000,123,Synthese,2,db/journals/synthese/synthese123.html#Verheggen00,https://doi.org/10.1023/A:1005243504897 +Lawrence Shapiro,Making sense of mirror neurons.,2009,167,Synthese,3,db/journals/synthese/synthese167.html#Shapiro09,https://doi.org/10.1007/s11229-008-9385-8 +John Bickle,Reducing mind to molecular pathways: explicating the reductionism implicit in current cellular and molecular neuroscience.,2006,151,Synthese,3,db/journals/synthese/synthese151.html#Bickle06a,https://doi.org/10.1007/s11229-006-9015-2 +Cressida Gaukroger,Why broad content can't influence behaviour.,2017,194,Synthese,8,db/journals/synthese/synthese194.html#Gaukroger17,https://doi.org/10.1007/s11229-016-1085-1 +Alex Mintz,Framing Effects in International Relations.,2003,135,Synthese,2,db/journals/synthese/synthese135.html#MintzR03,https://doi.org/10.1023/A:1023460923628 +Quentin Smith,"The ""Sentence-Type Version"" of the Tenseless Theory of Time.",1999,119,Synthese,3,db/journals/synthese/synthese119.html#Smith99,https://doi.org/10.1023/A:1005130104563 +A. N. Prior,The paradox of the prisoner in logical form.,2012,188,Synthese,3,db/journals/synthese/synthese188.html#Prior12a,https://doi.org/10.1007/s11229-011-9947-z +Laurence Bonjour,Haack on Justification and Experience.,1997,112,Synthese,1,db/journals/synthese/synthese112.html#Bonjour97,https://doi.org/10.1023/A%3A1004972413209 +Benjamin McMyler,The epistemic significance of address.,2013,190,Synthese,6,db/journals/synthese/synthese190.html#McMyler13,https://doi.org/10.1007/s11229-011-9871-2 +Jeff B. Paris,Common Sense and Maximum Entropy.,1998,117,Synthese,1,db/journals/synthese/synthese117.html#Paris98,https://doi.org/10.1023/A:1005081609010 +Cory Travers Lewis,The generality of scientific models: a measure theoretic approach.,2015,192,Synthese,1,db/journals/synthese/synthese192.html#LewisB15,https://doi.org/10.1007/s11229-014-0567-2 +Peter J. Lewis,The Doomsday Argument and the Simulation Argument.,2013,190,Synthese,18,db/journals/synthese/synthese190.html#Lewis13,https://doi.org/10.1007/s11229-013-0245-9 +S. Barry Cooper,The machine as data: a computational view of emergence and definability.,2015,192,Synthese,7,db/journals/synthese/synthese192.html#Cooper15,https://doi.org/10.1007/s11229-015-0803-4 +Arianna Betti,Lesniewski's characteristica universalis.,2010,174,Synthese,2,db/journals/synthese/synthese174.html#Betti10,https://doi.org/10.1007/s11229-008-9423-6 +Paola Cantù,Aristotle's prohibition rule on kind-crossing and the definition of mathematics as a science of quantities.,2010,174,Synthese,2,db/journals/synthese/synthese174.html#Cantu10,https://doi.org/10.1007/s11229-008-9419-2 +Sahotra Sarkar,The science question in intelligent design.,2011,178,Synthese,2,db/journals/synthese/synthese178.html#Sarkar11,https://doi.org/10.1007/s11229-009-9540-x +Jean Baccelli,Do bets reveal beliefs? - A unified perspective on state-dependent utility issues.,2017,194,Synthese,9,db/journals/synthese/synthese194.html#Baccelli17,https://doi.org/10.1007/s11229-015-0939-2 +Bjørn Jespersen,Introduction.,2015,192,Synthese,3,db/journals/synthese/synthese192.html#JespersenD15,https://doi.org/10.1007/s11229-015-0665-9 +Teresa Marques,Retractions.,2018,195,Synthese,8,db/journals/synthese/synthese195.html#Marques18a,https://doi.org/10.1007/s11229-015-0852-8 +Marco Giovanelli,Talking at cross-purposes: how Einstein and the logical empiricists never agreed on what they were disagreeing about.,2013,190,Synthese,17,db/journals/synthese/synthese190.html#Giovanelli13,https://doi.org/10.1007/s11229-012-0229-1 +Jack M. C. Kwong,Is Open-Mindedness Conducive to Truth?,2017,194,Synthese,5,db/journals/synthese/synthese194.html#Kwong17,https://doi.org/10.1007/s11229-015-1008-6 +H. Orri Stefánsson,Desirability of conditionals.,2016,193,Synthese,6,db/journals/synthese/synthese193.html#Stefansson16,https://doi.org/10.1007/s11229-015-0823-0 +Johan van Benthem,New logical perspectives on physics.,2012,186,Synthese,3,db/journals/synthese/synthese186.html#BenthemS12,https://doi.org/10.1007/s11229-011-9911-y +Jon Pérez Laraudogoitia,Avoiding Infinite Masses.,2007,156,Synthese,1,db/journals/synthese/synthese156.html#Laraudogoitia07,https://doi.org/10.1007/s11229-005-2212-6 +John Turri,On the general argument against internalism.,2009,170,Synthese,1,db/journals/synthese/synthese170.html#Turri09a,https://doi.org/10.1007/s11229-008-9362-2 +Simon Burgess 0001,The Newcomb Problem: An Unqualified Resolution.,2004,138,Synthese,2,db/journals/synthese/synthese138.html#000104,https://doi.org/10.1023/B:SYNT.0000013243.57433.e7 +Dylan Dodd,Belief and certainty.,2017,194,Synthese,11,db/journals/synthese/synthese194.html#Dodd17a,https://doi.org/10.1007/s11229-016-1163-4 +Pietro Galliani,Transition semantics: the dynamics of dependence logic.,2014,191,Synthese,6,db/journals/synthese/synthese191.html#Galliani14,https://doi.org/10.1007/s11229-013-0327-8 +William Boos,"Reflective inquiry and ""The Fate of Reason"".",2014,191,Synthese,18,db/journals/synthese/synthese191.html#Boos14,https://doi.org/10.1007/s11229-014-0533-z +Mauro Dorato,Laws of nature and the reality of the wave function.,2015,192,Synthese,10,db/journals/synthese/synthese192.html#Dorato15,https://doi.org/10.1007/s11229-015-0696-2 +Jure Zovko,Metaphysics as interpretation of conscious life: some remarks on D. Henrich's and D. Kolak's thinking.,2008,162,Synthese,3,db/journals/synthese/synthese162.html#Zovko08,https://doi.org/10.1007/s11229-007-9248-8 +John Bickle,Introduction.,2005,147,Synthese,3,db/journals/synthese/synthese147.html#Bickle05,https://doi.org/10.1007/s11229-005-8362-8 +Hannes Leitgeb,Logic in general philosophy of science: old things and new things.,2011,179,Synthese,2,db/journals/synthese/synthese179.html#Leitgeb11,https://doi.org/10.1007/s11229-010-9776-5 +Gabriele Usberti,Towards a Semantics Based on the Notion of Justification.,2006,148,Synthese,3,db/journals/synthese/synthese148.html#Usberti06,https://doi.org/10.1007/s11229-004-6272-9 +Karolina Krzyzanowska,Belief ascription and the Ramsey test.,2013,190,Synthese,1,db/journals/synthese/synthese190.html#Krzyzanowska13,https://doi.org/10.1007/s11229-012-0160-5 +Elay Shech,Scientific misrepresentation and guides to ontology: the need for representational code and contents.,2015,192,Synthese,11,db/journals/synthese/synthese192.html#Shech15,https://doi.org/10.1007/s11229-014-0506-2 +Luca Tummolini,A convention or (tacit) agreement betwixt us: on reliance and its normative consequences.,2013,190,Synthese,4,db/journals/synthese/synthese190.html#TummoliniACC13,https://doi.org/10.1007/s11229-012-0194-8 +Adam Green,Evaluating distributed cognition.,2014,191,Synthese,1,db/journals/synthese/synthese191.html#Green14,https://doi.org/10.1007/s11229-013-0305-1 +Alexander Sarch,Bealer and the autonomy of philosophy.,2010,172,Synthese,3,db/journals/synthese/synthese172.html#Sarch10,https://doi.org/10.1007/s11229-008-9402-y +Pieter A. M. Seuren,How I remember Evert Beth.,2011,179,Synthese,2,db/journals/synthese/synthese179.html#Seuren11,https://doi.org/10.1007/s11229-010-9777-4 +Robert C. Bishop,Downward causation in fluid convection.,2008,160,Synthese,2,db/journals/synthese/synthese160.html#Bishop08,https://doi.org/10.1007/s11229-006-9112-2 +Peter K. Schotch,Worlds and * - NS and the master argument.,2011,181,Synthese,2,db/journals/synthese/synthese181.html#SchotchP11,https://doi.org/10.1007/s11229-010-9803-6 +Andrés Perea,A one-person doxastic characterization of Nash strategies.,2007,158,Synthese,2,db/journals/synthese/synthese158.html#Perea07,https://doi.org/10.1007/s11229-007-9217-2 +Marcin Milkowski,Explanatory completeness and idealization in large brain simulations: a mechanistic perspective.,2016,193,Synthese,5,db/journals/synthese/synthese193.html#Milkowski16,https://doi.org/10.1007/s11229-015-0731-3 +John Collins,The redundancy of the act.,2018,195,Synthese,8,db/journals/synthese/synthese195.html#Collins18,https://doi.org/10.1007/s11229-017-1382-3 +Louis Narens,A Theory of Belief for Scientific Refutations.,2005,145,Synthese,3,db/journals/synthese/synthese145.html#Narens05,https://doi.org/10.1007/s11229-005-6199-9 +Gerald Hull,Bipolar disorder: horgan on vagueness and incoherence.,2005,143,Synthese,3,db/journals/synthese/synthese143.html#Hull05,https://doi.org/10.1007/s11229-005-5069-9 +Panu Raatikainen,Ramsification and inductive inference.,2012,187,Synthese,2,db/journals/synthese/synthese187.html#Raatikainen12,https://doi.org/10.1007/s11229-010-9861-9 +Jaakko Hintikka,Omitting Data - Ethical or Strategic Problem?,2005,145,Synthese,2,db/journals/synthese/synthese145.html#Hintikka05a,https://doi.org/10.1007/s11229-005-3745-4 +Hans Rott,A Counterexample to Six Fundamental Principles of Belief Formation.,2004,139,Synthese,2,db/journals/synthese/synthese139.html#Rott04,https://doi.org/10.1023/B:SYNT.0000024914.61925.5b +Jouko A. Väänänen,The Craig Interpolation Theorem in abstract model theory.,2008,164,Synthese,3,db/journals/synthese/synthese164.html#Vaananen08,https://doi.org/10.1007/s11229-008-9357-z +James F. Woodward,Mechanisms revisited.,2011,183,Synthese,3,db/journals/synthese/synthese183.html#Woodward11a,https://doi.org/10.1007/s11229-011-9870-3 +Scott Campbell,Randomness and the Justification of Induction.,2004,138,Synthese,1,db/journals/synthese/synthese138.html#CampbellF04,https://doi.org/10.1023/B:SYNT.0000012206.01154.c7 +Matteo Morganti,On the Preferability of Epistemic Structural Realism.,2004,142,Synthese,1,db/journals/synthese/synthese142.html#Morganti04,https://doi.org/10.1023/B:SYNT.0000047712.39407.c3 +Bruce H. Weber,Design and its discontents.,2011,178,Synthese,2,db/journals/synthese/synthese178.html#Weber11,https://doi.org/10.1007/s11229-009-9543-7 +David M. Kaplan,Explanation and description in computational neuroscience.,2011,183,Synthese,3,db/journals/synthese/synthese183.html#Kaplan11,https://doi.org/10.1007/s11229-011-9970-0 +Jelle Gerbrandy,The Surprise Examination in Dynamic Epistemic Logic.,2007,155,Synthese,1,db/journals/synthese/synthese155.html#Gerbrandy07,https://doi.org/10.1007/s11229-005-2211-7 +Joshua Gert,Problems for Moral Twin Earth Arguments.,2006,150,Synthese,2,db/journals/synthese/synthese150.html#Gert06,https://doi.org/10.1007/s11229-004-6262-y +Miklós Ferenczi,Probabilities defined on standard and non-standard cylindric set algebras.,2015,192,Synthese,7,db/journals/synthese/synthese192.html#Ferenczi15,https://doi.org/10.1007/s11229-014-0444-z +D. Marc Kilgour,Uncertainty and the role of the pawn in extended deterrence.,1994,100,Synthese,3,db/journals/synthese/synthese100.html#KilgourZ94,https://doi.org/10.1007/BF01063909 +Kevin McCain,The virtues of epistemic conservatism.,2008,164,Synthese,2,db/journals/synthese/synthese164.html#McCain08,https://doi.org/10.1007/s11229-007-9222-5 +Totte Harinen,Mutual manipulability and causal inbetweenness.,2018,195,Synthese,1,db/journals/synthese/synthese195.html#Harinen18,https://doi.org/10.1007/s11229-014-0564-5 +Leon Horsten,In Defense of Epistemic Arithmetic.,1998,116,Synthese,1,db/journals/synthese/synthese116.html#Horsten98,https://doi.org/10.1023/A:1005016405987 +Casper J. Albers,Trying to Resolve the Two-Envelope Problem.,2005,145,Synthese,1,db/journals/synthese/synthese145.html#AlbersKS05,https://doi.org/10.1007/s11229-004-7665-5 +Tommaso Bertolotti,An epistemological analysis of gossip and gossip-based knowledge.,2014,191,Synthese,17,db/journals/synthese/synthese191.html#BertolottiM14,https://doi.org/10.1007/s11229-014-0514-2 +Erik J. Olsson,Norms of assertion and communication in social networks.,2013,190,Synthese,13,db/journals/synthese/synthese190.html#OlssonV13,https://doi.org/10.1007/s11229-013-0313-1 +Magnus Jiborn,Reconsidering the Foole's Rejoinder: Backward Induction in Indefinitely Iterated Prisoner's Dilemmas.,2003,136,Synthese,2,db/journals/synthese/synthese136.html#JibornR03,https://doi.org/10.1023/A:1024731815957 +Scott Carson,Aristotle On Existential Import And Nonreferring Subjects.,2000,124,Synthese,3,db/journals/synthese/synthese124.html#Carson00,https://doi.org/10.1023/A:1005270116956 +Georg Kreisel,Second Thoughts Around Some of Göde's Writings.,1998,114,Synthese,1,db/journals/synthese/synthese114.html#Kreisel98,https://doi.org/10.1023/A:1005006610269 +E. J. Coffman,Thinking about luck.,2007,158,Synthese,3,db/journals/synthese/synthese158.html#Coffman07,https://doi.org/10.1007/s11229-006-9046-8 +E. C. Banks,The Philosophical Roots of Ernst Mach's Economy of Thought.,2004,139,Synthese,1,db/journals/synthese/synthese139.html#Banks04,https://doi.org/10.1023/B:SYNT.0000021306.66850.a3 +Jonas åkerman,A plea for pragmatics.,2009,170,Synthese,1,db/journals/synthese/synthese170.html#Akerman09,https://doi.org/10.1007/s11229-008-9365-z +Pascale Willemsen,Omissions and expectations: a new approach to the things we failed to do.,2018,195,Synthese,4,db/journals/synthese/synthese195.html#Willemsen18,https://doi.org/10.1007/s11229-016-1284-9 +Darrell P. Rowbottom,Empirical evidence claims are a priori.,2013,190,Synthese,14,db/journals/synthese/synthese190.html#Rowbottom13,https://doi.org/10.1007/s11229-012-0087-x +Stephan Hartmann,Judgment aggregation and the problem of tracking the truth.,2012,187,Synthese,1,db/journals/synthese/synthese187.html#HartmannS12,https://doi.org/10.1007/s11229-011-0031-5 +Tomasz Placek,On individuals in branching histories.,2012,188,Synthese,1,db/journals/synthese/synthese188.html#Placek12,https://doi.org/10.1007/s11229-012-0082-2 +Francesco Pupa,The argument from convention revisited.,2018,195,Synthese,5,db/journals/synthese/synthese195.html#Pupa18,https://doi.org/10.1007/s11229-017-1330-2 +Sune Holm,Teleology and biocentrism.,2017,194,Synthese,4,db/journals/synthese/synthese194.html#Holm17,https://doi.org/10.1007/s11229-016-1300-0 +Nick Zangwill,Good old supervenience: Mental causation on the cheap.,1996,106,Synthese,1,db/journals/synthese/synthese106.html#Zangwill96,https://doi.org/10.1007/BF00413615 +Jaakko Kuorikoski,External representations and scientific understanding.,2015,192,Synthese,12,db/journals/synthese/synthese192.html#KuorikoskiY15,https://doi.org/10.1007/s11229-014-0591-2 +Adam Rieger,Conditionals are material: the positive arguments.,2013,190,Synthese,15,db/journals/synthese/synthese190.html#Rieger13,https://doi.org/10.1007/s11229-012-0134-7 +Christian Ryan Lee,Excluded Knowledge.,2016,193,Synthese,8,db/journals/synthese/synthese193.html#Lee16,https://doi.org/10.1007/s11229-015-0858-2 +Benoni B. Edin,Assigning biological functions: making sense of causal chains.,2008,161,Synthese,2,db/journals/synthese/synthese161.html#Edin08,https://doi.org/10.1007/s11229-007-9160-2 +Luigi Secchi,The main two arguments for probabilism are flawed.,2014,191,Synthese,3,db/journals/synthese/synthese191.html#Secchi14,https://doi.org/10.1007/s11229-013-0286-0 +Chuansheng He,E-type interpretation without E-type pronoun: how Peirce's Graphs capture the uniqueness implication of donkey pronouns in discourse anaphora.,2015,192,Synthese,4,db/journals/synthese/synthese192.html#He15,https://doi.org/10.1007/s11229-013-0325-x +Matti Eklund,Is Hintikka's Logic First-Order?,2002,131,Synthese,3,db/journals/synthese/synthese131.html#EklundK02,https://doi.org/10.1023/A:1016184410627 +Teresa Marques,This is not an instance of (E).,2018,195,Synthese,3,db/journals/synthese/synthese195.html#Marques18,https://doi.org/10.1007/s11229-016-1293-8 +Chris John Daly,The methodology of genuine modal realism.,2008,162,Synthese,1,db/journals/synthese/synthese162.html#Daly08,https://doi.org/10.1007/s11229-007-9176-7 +Russell Marcus,The holistic presumptions of the indispensability argument.,2014,191,Synthese,15,db/journals/synthese/synthese191.html#Marcus14,https://doi.org/10.1007/s11229-014-0481-7 +Christopher J. Austin,Aristotelian essentialism: essence in the age of evolution.,2017,194,Synthese,7,db/journals/synthese/synthese194.html#Austin17,https://doi.org/10.1007/s11229-016-1066-4 +Stephan Krämer,Towards a theory of ground-theoretic content.,2018,195,Synthese,2,db/journals/synthese/synthese195.html#Kramer18,https://doi.org/10.1007/s11229-016-1242-6 +Rohit Parikh,Social Software.,2002,132,Synthese,3,db/journals/synthese/synthese132.html#Parikh02,https://doi.org/10.1023/A:1020391420768 +Andrew Cooper,Two directions for teleology: naturalism and idealism.,2018,195,Synthese,7,db/journals/synthese/synthese195.html#Cooper18,https://doi.org/10.1007/s11229-017-1364-5 +,Announcements.,1995,102,Synthese,3,db/journals/synthese/synthese102.html#X95,https://doi.org/10.1007/BF01064124 +Joseph A. Baltimore,Defending the piggyback principle against Shapiro and Sober's empirical approach.,2010,175,Synthese,2,db/journals/synthese/synthese175.html#Baltimore10,https://doi.org/10.1007/s11229-009-9467-2 +Alexandru Baltag,Quantum logic as a dynamic logic.,2011,179,Synthese,2,db/journals/synthese/synthese179.html#BaltagS11,https://doi.org/10.1007/s11229-010-9783-6 +Peter Milne,Classical harmony: Rules of inference and the meaning of the logical constants.,1994,100,Synthese,1,db/journals/synthese/synthese100.html#Milne94,https://doi.org/10.1007/BF01063921 +Radu Bogdan,Introduction.,2007,159,Synthese,2,db/journals/synthese/synthese159.html#Bogdan07,https://doi.org/10.1007/s11229-007-9210-9 +Joel Michell,Bertrand Russell's 1897 Critique of the Traditional Theory of Measurement.,1997,110,Synthese,2,db/journals/synthese/synthese110.html#Michell97,https://doi.org/10.1023/A%3A1004985226963 +Jeremy Avigad,Mathematical Method and Proof.,2006,153,Synthese,1,db/journals/synthese/synthese153.html#Avigad06,https://doi.org/10.1007/s11229-005-4064-5 +Lee McIntyre,Emergence and reduction in chemistry: ontological or epistemological concepts?,2007,155,Synthese,3,db/journals/synthese/synthese155.html#McIntyre07,https://doi.org/10.1007/s11229-006-9111-3 +Kit Fine,A difficulty for the possible worlds analysis of counterfactuals.,2012,189,Synthese,1,db/journals/synthese/synthese189.html#Fine12,https://doi.org/10.1007/s11229-012-0094-y +Stephan Hartmann,Walter the banker: the conjunction fallacy reconsidered.,2012,184,Synthese,1,db/journals/synthese/synthese184.html#HartmannM12,https://doi.org/10.1007/s11229-009-9694-6 +Brian Skyrms,The core theory of subjunctive conditionals.,2013,190,Synthese,5,db/journals/synthese/synthese190.html#Skyrms13,https://doi.org/10.1007/s11229-012-0193-9 +Frank Cabrera,Can there be a Bayesian explanationism? On the prospects of a productive partnership.,2017,194,Synthese,4,db/journals/synthese/synthese194.html#Cabrera17,https://doi.org/10.1007/s11229-015-0990-z +Michael Schippers,Competing accounts of contrastive coherence.,2016,193,Synthese,10,db/journals/synthese/synthese193.html#Schippers16,https://doi.org/10.1007/s11229-015-0937-4 +Sandra Harding,Strong objectivity: A response to the new objectivity question.,1995,104,Synthese,3,db/journals/synthese/synthese104.html#Harding95,https://doi.org/10.1007/BF01064504 +Sherry Deveaux,The Divine Essence and the Conception of God in Spinoza.,2003,135,Synthese,3,db/journals/synthese/synthese135.html#Deveaux03,https://doi.org/10.1023/A:1023594617953 +Laura Felline,Mechanisms meet structural explanation.,2018,195,Synthese,1,db/journals/synthese/synthese195.html#Felline18,https://doi.org/10.1007/s11229-015-0746-9 +Brian Epstein,Ontological individualism reconsidered.,2009,166,Synthese,1,db/journals/synthese/synthese166.html#Epstein09,https://doi.org/10.1007/s11229-007-9272-8 +Ausonio Marras,Emergence and reduction: Reply to Kim.,2006,151,Synthese,3,db/journals/synthese/synthese151.html#Marras06,https://doi.org/10.1007/s11229-006-9026-z +Judson C. Webb,Hilbert's Formalism and arithmetization of Mathematics.,1997,110,Synthese,1,db/journals/synthese/synthese110.html#Webb97,https://doi.org/10.1023/A%3A1004919107087 +Ward E. Jones,Being moved by a way the world is not.,2011,178,Synthese,1,db/journals/synthese/synthese178.html#Jones11,https://doi.org/10.1007/s11229-009-9522-z +Juha Saatsi,Inconsistency and scientific realism.,2014,191,Synthese,13,db/journals/synthese/synthese191.html#Saatsi14,https://doi.org/10.1007/s11229-014-0466-6 +Isaac Levi,Amartya Sen.,2004,140,Synthese,1,db/journals/synthese/synthese140.html#Levi04b,https://doi.org/10.1023/B:SYNT.0000029941.44120.87 +David James Anderson,Knowledge and conviction.,2012,187,Synthese,2,db/journals/synthese/synthese187.html#Anderson12,https://doi.org/10.1007/s11229-010-9831-2 +Michaelis Michael,"On a ""most telling"" argument for paraconsistent logic.",2016,193,Synthese,10,db/journals/synthese/synthese193.html#Michael16,https://doi.org/10.1007/s11229-015-0935-6 +Robert Klee,Problems With Formal Models Of Epistemic Entrenchment As Applied To Scientific Theories.,2000,122,Synthese,3,db/journals/synthese/synthese122.html#Klee00,https://doi.org/10.1023/A:1005290330684 +Daan Evers,Street on evolution and the normativity of epistemic reasons.,2015,192,Synthese,11,db/journals/synthese/synthese192.html#Evers15,https://doi.org/10.1007/s11229-015-0714-4 +Graham Stevens,Russell's Repsychologising of the Proposition.,2006,151,Synthese,1,db/journals/synthese/synthese151.html#Stevens06,https://doi.org/10.1007/s11229-004-2246-1 +Frank Zenker,Editors' introduction: social dynamics and collective rationality.,2014,191,Synthese,11,db/journals/synthese/synthese191.html#ZenkerP14,https://doi.org/10.1007/s11229-014-0430-5 +Tobias Starzak,Interpretations without justification: a general argument against Morgan's Canon.,2017,194,Synthese,5,db/journals/synthese/synthese194.html#Starzak17,https://doi.org/10.1007/s11229-016-1013-4 +John M. Dukich,Two types of empirical adequacy: a partial structures approach.,2013,190,Synthese,14,db/journals/synthese/synthese190.html#Dukich13,https://doi.org/10.1007/s11229-012-0085-z +Jessica Carter,Categories for the working mathematician: making the impossible possible.,2008,162,Synthese,1,db/journals/synthese/synthese162.html#Carter08a,https://doi.org/10.1007/s11229-007-9166-9 +Fernando Tohmé,Abduction in economics: a conceptual framework and its model.,2013,190,Synthese,18,db/journals/synthese/synthese190.html#TohmeC13,https://doi.org/10.1007/s11229-013-0268-2 +Ulrike Hahn,A Bayesian Approach to Informal Argument Fallacies.,2006,152,Synthese,2,db/journals/synthese/synthese152.html#HahnO06,https://doi.org/10.1007/s11229-005-5233-2 +Colin Howson,Modelling uncertain inference.,2012,186,Synthese,2,db/journals/synthese/synthese186.html#Howson12,https://doi.org/10.1007/s11229-011-9995-4 +Micah Allen,From cognitivism to autopoiesis: towards a computational framework for the embodied mind.,2018,195,Synthese,6,db/journals/synthese/synthese195.html#AllenF18,https://doi.org/10.1007/s11229-016-1288-5 +Sam Baron,Optimisation and mathematical explanation: doing the Lévy Walk.,2014,191,Synthese,3,db/journals/synthese/synthese191.html#Baron14,https://doi.org/10.1007/s11229-013-0284-2 +Dylan Dodd,Evidentialism and skeptical arguments.,2012,189,Synthese,2,db/journals/synthese/synthese189.html#Dodd12,https://doi.org/10.1007/s11229-012-0067-1 +Francis Y. Lin,Chomsky On The 'Ordinary Language' View Of Language.,1999,120,Synthese,2,db/journals/synthese/synthese120.html#Lin99,https://doi.org/10.1023/A:1005088716396 +Roman Frigg,Models and fiction.,2010,172,Synthese,2,db/journals/synthese/synthese172.html#Frigg10,https://doi.org/10.1007/s11229-009-9505-0 +Yongfeng Yuan,Rational evaluation in belief revision.,2015,192,Synthese,7,db/journals/synthese/synthese192.html#YuanJ15,https://doi.org/10.1007/s11229-015-0802-5 +Mario Villalobos,Enactive autonomy in computational systems.,2018,195,Synthese,5,db/journals/synthese/synthese195.html#VillalobosD18,https://doi.org/10.1007/s11229-017-1386-z +Erik J. Olsson,Reliability conducive measures of coherence.,2007,157,Synthese,3,db/journals/synthese/synthese157.html#OlssonS07,https://doi.org/10.1007/s11229-006-9056-6 +Rom Harré,From observability to manipulability: Extending the inductive arguments for realism.,1996,108,Synthese,2,db/journals/synthese/synthese108.html#Harre96,https://doi.org/10.1007/BF00413494 +Eleonora Cresto,Lost in translation: unknowable propositions in probabilistic frameworks.,2017,194,Synthese,10,db/journals/synthese/synthese194.html#Cresto17,https://doi.org/10.1007/s11229-015-0884-0 +Joshua Rasmussen,Building thoughts from dust: a Cantorian puzzle.,2015,192,Synthese,2,db/journals/synthese/synthese192.html#Rasmussen15,https://doi.org/10.1007/s11229-014-0575-2 +Ilho Park,Simultaneous belief updates via successive Jeffrey conditionalization.,2013,190,Synthese,16,db/journals/synthese/synthese190.html#Park13,https://doi.org/10.1007/s11229-012-0207-7 +Douglas I. Campbell,Doxastic desire and Attitudinal Monism.,2018,195,Synthese,3,db/journals/synthese/synthese195.html#Campbell18,https://doi.org/10.1007/s11229-016-1255-1 +Ivano Ciardelli,On the semantics and logic of declaratives and interrogatives.,2015,192,Synthese,6,db/journals/synthese/synthese192.html#CiardelliGR15,https://doi.org/10.1007/s11229-013-0352-7 +Arvid Båve,A deflationary theory of reference.,2009,169,Synthese,1,db/journals/synthese/synthese169.html#Bave09,https://doi.org/10.1007/s11229-008-9336-4 +Jon Williamson,Objective Bayesianism with predicate languages.,2008,163,Synthese,3,db/journals/synthese/synthese163.html#Williamson08,https://doi.org/10.1007/s11229-007-9298-y +Darrell P. Rowbottom,Corroboration and auxiliary hypotheses: Duhem's thesis revisited.,2010,177,Synthese,1,db/journals/synthese/synthese177.html#Rowbottom10,https://doi.org/10.1007/s11229-009-9643-4 +Cédric Dégremont,Dynamics we can believe in: a view from the Amsterdam School on the centenary of Evert Willem Beth.,2011,179,Synthese,2,db/journals/synthese/synthese179.html#DegremontZ11,https://doi.org/10.1007/s11229-010-9779-2 +Eugen Fischer,Philosophical Pictures.,2006,148,Synthese,2,db/journals/synthese/synthese148.html#Fischer06,https://doi.org/10.1007/s11229-005-1007-0 +Reinhard Blutner,Nonmonotonic Inferences and Neural Networks.,2004,142,Synthese,2,db/journals/synthese/synthese142.html#Blutner04,https://doi.org/10.1007/s11229-004-1929-y +John MacFarlane,Nonindexical contextualism.,2009,166,Synthese,2,db/journals/synthese/synthese166.html#MacFarlane09,https://doi.org/10.1007/s11229-007-9286-2 +Ana M. Soto,Emergentism by default: A view from the bench.,2006,151,Synthese,3,db/journals/synthese/synthese151.html#SotoS06,https://doi.org/10.1007/s11229-006-9030-3 +Marco Panza,The twofold role of diagrams in Euclid's plane geometry.,2012,186,Synthese,1,db/journals/synthese/synthese186.html#Panza12,https://doi.org/10.1007/s11229-012-0074-2 +Dionysis Christias,On the proper construal of the manifest-scientific image distinction: Brandom contra Sellars.,2018,195,Synthese,3,db/journals/synthese/synthese195.html#Christias18,https://doi.org/10.1007/s11229-016-1271-1 +Conor Mayo-Wilson,Reliability of testimonial norms in scientific communities.,2014,191,Synthese,1,db/journals/synthese/synthese191.html#Mayo-Wilson14,https://doi.org/10.1007/s11229-013-0320-2 +Matthew Katz,Analog representations and their users.,2016,193,Synthese,3,db/journals/synthese/synthese193.html#Katz16,https://doi.org/10.1007/s11229-015-0774-5 +Ellen Fridland,They've lost control: reflections on skill.,2014,191,Synthese,12,db/journals/synthese/synthese191.html#Fridland14,https://doi.org/10.1007/s11229-014-0411-8 +Timothy Chan,Moore's Paradox is not just another pragmatic paradox.,2010,173,Synthese,3,db/journals/synthese/synthese173.html#Chan10,https://doi.org/10.1007/s11229-008-9403-x +Mikhail Kissine,From contexts to circumstances of evaluation: is the trade-off always innocuous?,2012,184,Synthese,2,db/journals/synthese/synthese184.html#Kissine12,https://doi.org/10.1007/s11229-010-9732-4 +Giorgio Volpe,Cornerstones: You'd better believe them.,2012,189,Synthese,2,db/journals/synthese/synthese189.html#Volpe12,https://doi.org/10.1007/s11229-011-0051-1 +Anthony Robert Booth,On some recent moves in defence of doxastic compatibilism.,2014,191,Synthese,8,db/journals/synthese/synthese191.html#Booth14,https://doi.org/10.1007/s11229-013-0378-x +Jeffrey A. Barrett,On the Nature of Experience in the Bare Theory.,1997,113,Synthese,3,db/journals/synthese/synthese113.html#Barrett97,https://doi.org/10.1023/A:1004983313200 +Nicholas Georgalis,Representation and the First-Person Perspective.,2006,150,Synthese,2,db/journals/synthese/synthese150.html#Georgalis06,https://doi.org/10.1007/s11229-004-6268-5 +Matthew William McKeon,Statements of inference and begging the question.,2017,194,Synthese,6,db/journals/synthese/synthese194.html#McKeon17,https://doi.org/10.1007/s11229-016-1028-x +Juan Comesaña,Unsafe Knowledge.,2005,146,Synthese,3,db/journals/synthese/synthese146.html#Comesana05,https://doi.org/10.1007/s11229-004-6213-7 +Ian Harmon,Evidence for anti-intellectualism about know-how from a sentence recognition task.,2016,193,Synthese,9,db/journals/synthese/synthese193.html#HarmonH16,https://doi.org/10.1007/s11229-015-0894-y +Simon Saunders,"Critical Notice: Tian Yu Cao's ""The Conceptual Development of 20th Century Field Theories"".",2003,136,Synthese,1,db/journals/synthese/synthese136.html#Saunders03,https://doi.org/10.1023/A:1024172603432 +Luc Bovens,Special issue of Synthese on Bayesian Epistemology.,2007,156,Synthese,3,db/journals/synthese/synthese156.html#BovensH07,https://doi.org/10.1007/s11229-006-9130-0 +Anna-Sofia Maurin,Trope theory and the Bradley regress.,2010,175,Synthese,3,db/journals/synthese/synthese175.html#Maurin10,https://doi.org/10.1007/s11229-009-9511-2 +Peter Gärdenfors,Levels of communication and lexical semantics.,2018,195,Synthese,2,db/journals/synthese/synthese195.html#Gardenfors18,https://doi.org/10.1007/s11229-014-0493-3 +Choh Man Teng,When adjunction fails.,2012,186,Synthese,2,db/journals/synthese/synthese186.html#Teng12,https://doi.org/10.1007/s11229-011-0002-x +Robyn Carston,Linguistic communication and the semantics/pragmatics distinction.,2008,165,Synthese,3,db/journals/synthese/synthese165.html#Carston08,https://doi.org/10.1007/s11229-007-9191-8 +Nils-Eric Sahlin,Decision science: from Ramsey to dual process theories.,2010,172,Synthese,1,db/journals/synthese/synthese172.html#SahlinWP10,https://doi.org/10.1007/s11229-009-9472-5 +Berislav Marusic,The Self-Knowledge Gambit.,2013,190,Synthese,12,db/journals/synthese/synthese190.html#Marusic13,https://doi.org/10.1007/s11229-011-9949-x +Albert Newen,What are cognitive processes? An example-based approach.,2017,194,Synthese,11,db/journals/synthese/synthese194.html#Newen17a,https://doi.org/10.1007/s11229-015-0812-3 +Jane McDonnell,Wigner's puzzle and the Pythagorean heuristic.,2017,194,Synthese,8,db/journals/synthese/synthese194.html#McDonnell17,https://doi.org/10.1007/s11229-016-1080-6 +Robert Kirk,How physicalists can avoid reductionism.,1996,108,Synthese,2,db/journals/synthese/synthese108.html#Kirk96,https://doi.org/10.1007/BF00413495 +Michael Hannon,Fallibilism and the value of knowledge.,2014,191,Synthese,6,db/journals/synthese/synthese191.html#Hannon14,https://doi.org/10.1007/s11229-013-0315-z +J. Drake,Doxastic permissiveness and the promise of truth.,2017,194,Synthese,12,db/journals/synthese/synthese194.html#Drake17,https://doi.org/10.1007/s11229-016-1176-z +Vincent Ardourel,A discrete solution for the paradox of Achilles and the tortoise.,2015,192,Synthese,9,db/journals/synthese/synthese192.html#Ardourel15,https://doi.org/10.1007/s11229-015-0688-2 +Tyrus Fisher,Counterlegal dependence and causation's arrows: causal models for backtrackers and counterlegals.,2017,194,Synthese,12,db/journals/synthese/synthese194.html#Fisher17a,https://doi.org/10.1007/s11229-016-1189-7 +Henri Galinon,Naturalizing indispensability: a rejoinder to 'The varieties of indispensability arguments'.,2016,193,Synthese,2,db/journals/synthese/synthese193.html#Galinon16,https://doi.org/10.1007/s11229-015-0978-8 +James W. McAllister,Universal Regularities And Initial Conditions In Newtonian Physics.,1999,120,Synthese,3,db/journals/synthese/synthese120.html#McAllister99,https://doi.org/10.1023/A:1005170007328 +Bernd Buldt,Reflections On Frege And Hilbert.,2005,147,Synthese,1,db/journals/synthese/synthese147.html#BuldtHK05,https://doi.org/10.1007/s11229-004-6203-9 +Eleonora Cresto,Belief and contextual acceptance.,2010,177,Synthese,1,db/journals/synthese/synthese177.html#Cresto10,https://doi.org/10.1007/s11229-009-9637-2 +Thomas Lockhart,Why warrant transmits across epistemological disjunctivist Moorean-style arguments.,2018,195,Synthese,1,db/journals/synthese/synthese195.html#Lockhart18,https://doi.org/10.1007/s11229-016-1218-6 +Urs Luterbacher,International cooperation: The problem of the commons and the special case of the antarctic region.,1994,100,Synthese,3,db/journals/synthese/synthese100.html#Luterbacher94,https://doi.org/10.1007/BF01063910 +Troy Catterson,Changing the subject: on the subject of subjectivity.,2008,162,Synthese,3,db/journals/synthese/synthese162.html#Catterson08a,https://doi.org/10.1007/s11229-007-9250-1 +Pascal Engel,Replies: on norms of belief and knowledge.,2017,194,Synthese,5,db/journals/synthese/synthese194.html#Engel17,https://doi.org/10.1007/s11229-017-1358-3 +Daniel Schoch,A Fuzzy Measure for Explanatory Coherence.,2000,122,Synthese,3,db/journals/synthese/synthese122.html#Schoch00,https://doi.org/10.1023/A:1005230112028 +Andrew Brenner,Science and the special composition question.,2018,195,Synthese,2,db/journals/synthese/synthese195.html#Brenner18,https://doi.org/10.1007/s11229-016-1234-6 +William Robert Webster,Human Zombies are Metaphysically Impossible.,2006,151,Synthese,2,db/journals/synthese/synthese151.html#Webster06,https://doi.org/10.1007/s11229-004-8006-4 +Douglas Walton,Defeasible reasoning and informal fallacies.,2011,179,Synthese,3,db/journals/synthese/synthese179.html#Walton11,https://doi.org/10.1007/s11229-009-9657-y +Shieva Kleinschmidt,Refining Four-Dimensionalism.,2017,194,Synthese,11,db/journals/synthese/synthese194.html#Kleinschmidt17,https://doi.org/10.1007/s11229-016-1164-3 +Gürol Irzik,Hans Reichenbach in Istanbul.,2011,181,Synthese,1,db/journals/synthese/synthese181.html#Irzik11,https://doi.org/10.1007/s11229-009-9592-y +Cameron Buckner,Functional kinds: a skeptical look.,2015,192,Synthese,12,db/journals/synthese/synthese192.html#Buckner15,https://doi.org/10.1007/s11229-014-0606-z +Liam Kofi Bright,Du Bois' democratic defence of the value free ideal.,2018,195,Synthese,5,db/journals/synthese/synthese195.html#Bright18,https://doi.org/10.1007/s11229-017-1333-z +Robert Cummins,Epistemological Strata and the Rules of Right Reason.,2004,141,Synthese,3,db/journals/synthese/synthese141.html#CumminsPR04,https://doi.org/10.1023/B:SYNT.0000044992.91717.aa +Jaakko Hintikka,on Tarski's Assumptions.,2005,142,Synthese,3,db/journals/synthese/synthese142.html#Hintikka05,https://doi.org/10.1007/s11229-005-3720-0 +Paul Weirich,Risk's Place in Decision Rules.,2001,126,Synthese,3,db/journals/synthese/synthese126.html#Weirich01,https://doi.org/10.1023/A:1005240226961 +John Turri,Evidence of factive norms of belief and decision.,2015,192,Synthese,12,db/journals/synthese/synthese192.html#Turri15b,https://doi.org/10.1007/s11229-015-0727-z +Luciano Floridi,Against digital ontology.,2009,168,Synthese,1,db/journals/synthese/synthese168.html#Floridi09a,https://doi.org/10.1007/s11229-008-9334-6 +Herman Cappelen,Believing in Words.,2001,127,Synthese,3,db/journals/synthese/synthese127.html#CappelenD01,https://doi.org/10.1023/A:1010372531110 +Ilie Pârvu,Mein Grundgedanke Ist... The Structural Theory Of Representation As The Metaphysics Of Wittgenstein's Tractatus Logico-Philosophicus.,2001,129,Synthese,2,db/journals/synthese/synthese129.html#Parvu01,https://doi.org/10.1023/A:1013047205576 +T. Parent,"Externalism and ""knowing what"" one thinks.",2015,192,Synthese,5,db/journals/synthese/synthese192.html#Parent15,https://doi.org/10.1007/s11229-014-0624-x +Juha Saatsi,Replacing recipe realism.,2017,194,Synthese,9,db/journals/synthese/synthese194.html#Saatsi17a,https://doi.org/10.1007/s11229-015-0962-3 +Hans van Ditmarsch,Introspective forgetting.,2009,169,Synthese,2,db/journals/synthese/synthese169.html#DitmarschHLM09,https://doi.org/10.1007/s11229-009-9554-4 +Nikolaj Nottelmann,Introduction.,2008,161,Synthese,3,db/journals/synthese/synthese161.html#Nottelmann08,https://doi.org/10.1007/s11229-006-9087-z +Julia Staffel,Measuring the overall incoherence of credence functions.,2015,192,Synthese,5,db/journals/synthese/synthese192.html#Staffel15,https://doi.org/10.1007/s11229-014-0640-x +Darrin W. Belousek,Husserl on Scientific Method and Conceptual Change: A Realist Appraisal.,1998,115,Synthese,1,db/journals/synthese/synthese115.html#Belousek98,https://doi.org/10.1023/A:1005040800466 +Michael Rathjen,Theories and Ordinals in Proof Theory.,2006,148,Synthese,3,db/journals/synthese/synthese148.html#Rathjen06,https://doi.org/10.1007/s11229-004-6297-0 +Tomoji Shogenji,Why does coherence appear truth-conducive?,2007,157,Synthese,3,db/journals/synthese/synthese157.html#Shogenji07,https://doi.org/10.1007/s11229-006-9062-8 +Leah Henderson,The no miracles argument and the base rate fallacy.,2017,194,Synthese,4,db/journals/synthese/synthese194.html#Henderson17,https://doi.org/10.1007/s11229-015-0995-7 +Carolin Antos,Multiverse conceptions in set theory.,2015,192,Synthese,8,db/journals/synthese/synthese192.html#AntosFHT15,https://doi.org/10.1007/s11229-015-0819-9 +C. A. Hooker,Interaction and bio-cognitive order.,2009,166,Synthese,3,db/journals/synthese/synthese166.html#Hooker09,https://doi.org/10.1007/s11229-008-9374-y +Jordan Howard Sobel,Pascalian wagers.,1996,108,Synthese,1,db/journals/synthese/synthese108.html#Sobel96,https://doi.org/10.1007/BF00414004 +Iulian D. Toader,Objectivity and understanding: a new reading of Carnap's Aufbau.,2015,192,Synthese,5,db/journals/synthese/synthese192.html#Toader15,https://doi.org/10.1007/s11229-014-0648-2 +Anthony Brueckner,Reply to Coffman on closure and skepticism.,2008,162,Synthese,2,db/journals/synthese/synthese162.html#Brueckner08,https://doi.org/10.1007/s11229-007-9180-y +Charles Rathkopf,Network representation and complex systems.,2018,195,Synthese,1,db/journals/synthese/synthese195.html#Rathkopf18,https://doi.org/10.1007/s11229-015-0726-0 +Pierre Le Morvan,Epistemic means and ends: a reply to Hofmann.,2008,162,Synthese,2,db/journals/synthese/synthese162.html#Morvan08,https://doi.org/10.1007/s11229-007-9184-7 +Joëlle Proust,A Plea For Mental Acts.,2001,129,Synthese,1,db/journals/synthese/synthese129.html#Proust01,https://doi.org/10.1023/A:1012651308747 +Erhan Demircioglu,Epistemic infinitism and the conditional character of inferential justification.,2018,195,Synthese,5,db/journals/synthese/synthese195.html#Demircioglu18,https://doi.org/10.1007/s11229-017-1529-2 +C. Ulises Moulines,Reply to Ruphy.,2006,151,Synthese,3,db/journals/synthese/synthese151.html#Moulines06a,https://doi.org/10.1007/s11229-006-9013-4 +John L. Pollock,Reasoning defeasibly about probabilities.,2011,181,Synthese,2,db/journals/synthese/synthese181.html#Pollock11,https://doi.org/10.1007/s11229-010-9804-5 +Edwin D. Mares,Relevant logic and the theory of information.,1996,109,Synthese,3,db/journals/synthese/synthese109.html#Mares96,https://doi.org/10.1007/BF00413865 +Samuel Schindler,Explanatory fictions - for real?,2014,191,Synthese,8,db/journals/synthese/synthese191.html#Schindler14,https://doi.org/10.1007/s11229-013-0362-5 +Samuel A. Taylor,Is justification easy or impossible? Getting acquainted with a middle road.,2015,192,Synthese,9,db/journals/synthese/synthese192.html#Taylor15,https://doi.org/10.1007/s11229-015-0697-1 +Francesco Guala,The normativity of Lewis Conventions.,2013,190,Synthese,15,db/journals/synthese/synthese190.html#Guala13,https://doi.org/10.1007/s11229-012-0131-x +Mark Balaguer,Indexical Propositions and De Re Belief Ascriptions.,2005,146,Synthese,3,db/journals/synthese/synthese146.html#Balaguer05,https://doi.org/10.1007/s11229-004-6217-3 +Patrick A. Hellan,Hermeneutical Philosophy and Pragmatism: A Philosophy of Science.,1998,115,Synthese,3,db/journals/synthese/synthese115.html#Hellan98,https://doi.org/10.1023/A:1005032631417 +Cristina Bicchieri,The medium or the message? Communication relevance and richness in trust games.,2010,176,Synthese,1,db/journals/synthese/synthese176.html#BicchieriLC10,https://doi.org/10.1007/s11229-009-9487-y +José M. Musacchio,Why do Qualia and the Mind Seem Nonphysical?,2005,147,Synthese,3,db/journals/synthese/synthese147.html#Musacchio05,https://doi.org/10.1007/s11229-005-8364-6 +Michael Glanzberg,Semantics and truth relative to a world.,2009,166,Synthese,2,db/journals/synthese/synthese166.html#Glanzberg09,https://doi.org/10.1007/s11229-007-9285-3 +Mark Colyvan,The Miracle of Applied Mathematics.,2001,127,Synthese,3,db/journals/synthese/synthese127.html#Colyvan01,https://doi.org/10.1023/A:1010309227321 +Thomas Müller 0007,Against a Minimalist Reading of Bell's Theorem: Lessons from Fine.,2001,128,Synthese,3,db/journals/synthese/synthese128.html#0007P01,https://doi.org/10.1023/A:1011971808127 +Colin Allen,Erratum to: Synthese special issue: representing philosophy.,2011,183,Synthese,2,db/journals/synthese/synthese183.html#AllenB11a,https://doi.org/10.1007/s11229-009-9690-x +Joseph Y. Halpern,Evidence with uncertain likelihoods.,2009,171,Synthese,1,db/journals/synthese/synthese171.html#HalpernP09,https://doi.org/10.1007/s11229-008-9381-z +Matthias Steup,Believing intentionally.,2017,194,Synthese,8,db/journals/synthese/synthese194.html#Steup17,https://doi.org/10.1007/s11229-015-0780-7 +Michael Baumgartner,Exhibiting interpretational and representational validity.,2014,191,Synthese,7,db/journals/synthese/synthese191.html#Baumgartner14,https://doi.org/10.1007/s11229-013-0331-z +Emiliano Lorini,A minimal logic for interactive epistemology.,2016,193,Synthese,3,db/journals/synthese/synthese193.html#Lorini16,https://doi.org/10.1007/s11229-015-0960-5 +Gabriel Segal,Keep making sense.,2009,170,Synthese,2,db/journals/synthese/synthese170.html#Segal09,https://doi.org/10.1007/s11229-009-9583-z +Luisa Damiano,Co-emergences in life and science: a double proposal for biological emergentism.,2012,185,Synthese,2,db/journals/synthese/synthese185.html#Damiano12,https://doi.org/10.1007/s11229-010-9725-3 +Mark Staples,Critical rationalism and engineering: methodology.,2015,192,Synthese,1,db/journals/synthese/synthese192.html#Staples15,https://doi.org/10.1007/s11229-014-0571-6 +Felipe De Brigard,Is memory for remembering? Recollection as a form of episodic hypothetical thinking.,2014,191,Synthese,2,db/journals/synthese/synthese191.html#Brigard14,https://doi.org/10.1007/s11229-013-0247-7 +Thomas William Barrett,Quine's conjecture on many-sorted logic.,2017,194,Synthese,9,db/journals/synthese/synthese194.html#BarrettH17,https://doi.org/10.1007/s11229-016-1107-z +Erte Xiao,Words or deeds? Choosing what to know about others.,2012,187,Synthese,1,db/journals/synthese/synthese187.html#XiaoB12,https://doi.org/10.1007/s11229-011-0026-2 +Isidora Stojanovic,The semantics/pragmatics distinction.,2008,165,Synthese,3,db/journals/synthese/synthese165.html#Stojanovic08,https://doi.org/10.1007/s11229-007-9190-9 +Louis M. Guenin,Intellectual Honesty.,2005,145,Synthese,2,db/journals/synthese/synthese145.html#Guenin05a,https://doi.org/10.1007/s11229-005-3746-3 +Jonathan A. Waskan,Mechanistic explanation at the limit.,2011,183,Synthese,3,db/journals/synthese/synthese183.html#Waskan11,https://doi.org/10.1007/s11229-010-9869-1 +Dirk Schlimm,Against Against Intuitionism.,2005,147,Synthese,1,db/journals/synthese/synthese147.html#Schlimm05,https://doi.org/10.1007/s11229-004-6299-y +Max Kölbel,The evidence for relativism.,2009,166,Synthese,2,db/journals/synthese/synthese166.html#Kolbel09,https://doi.org/10.1007/s11229-007-9281-7 +Susanne Bobzien,In defense of true higher-order vagueness.,2011,180,Synthese,3,db/journals/synthese/synthese180.html#Bobzien11,https://doi.org/10.1007/s11229-009-9704-8 +José Luis Bermúdez,Pitfalls for realistic decision theory: an illustration from sequential choice.,2010,176,Synthese,1,db/journals/synthese/synthese176.html#Bermudez10,https://doi.org/10.1007/s11229-009-9482-3 +Evan Westra,Spontaneous mindreading: a problem for the two-systems account.,2017,194,Synthese,11,db/journals/synthese/synthese194.html#Westra17,https://doi.org/10.1007/s11229-016-1159-0 +Ben White,Metaphysical necessity dualism.,2018,195,Synthese,4,db/journals/synthese/synthese195.html#White18,https://doi.org/10.1007/s11229-016-1308-5 +Bryan Renne,Public and private communication are different: results on relative expressivity.,2008,165,Synthese,2,db/journals/synthese/synthese165.html#Renne08,https://doi.org/10.1007/s11229-008-9395-6 +F. A. Muller,The Implicit Definition of the Set-Concept.,2004,138,Synthese,3,db/journals/synthese/synthese138.html#Muller04,https://doi.org/10.1023/B:SYNT.0000016439.37687.78 +Mark A. Bedau,Introduction to philosophical problems about life.,2012,185,Synthese,1,db/journals/synthese/synthese185.html#Bedau12,https://doi.org/10.1007/s11229-011-9872-1 +Nalini Bhushan,What is a chemical property?,2007,155,Synthese,3,db/journals/synthese/synthese155.html#Bhushan07,https://doi.org/10.1007/s11229-006-9115-z +Peter Olen,Erratum to: A forgotten strand of reception history: understanding pure semantics.,2017,194,Synthese,4,db/journals/synthese/synthese194.html#Olen17a,https://doi.org/10.1007/s11229-015-0725-1 +D. Costantini,The Ehrenfest Fleas: From Model to Theory.,2004,139,Synthese,1,db/journals/synthese/synthese139.html#CostantiniG04,https://doi.org/10.1023/B:SYNT.0000021307.64103.b8 +Dalia Drai,Externalism and Identity.,2003,134,Synthese,3,db/journals/synthese/synthese134.html#Drai03,https://doi.org/10.1023/A:1022915720037 +Stefan Schubert,Is coherence conducive to reliability?,2012,187,Synthese,2,db/journals/synthese/synthese187.html#Schubert12a,https://doi.org/10.1007/s11229-010-9865-5 +Jared Warren,Epistemology versus non-causal realism.,2017,194,Synthese,5,db/journals/synthese/synthese194.html#Warren17,https://doi.org/10.1007/s11229-015-1010-z +Patrick Grim,How simulations fail.,2013,190,Synthese,12,db/journals/synthese/synthese190.html#GrimRRAE13,https://doi.org/10.1007/s11229-011-9976-7 +Solomon Feferman,Mathematical Intuition Vs. Mathematical Monsters.,2000,125,Synthese,3,db/journals/synthese/synthese125.html#Feferman00,https://doi.org/10.1023/A:1005223128130 +Stephen Wright,Does Klein's infinitism offer a response to Agrippa's trilemma?,2013,190,Synthese,6,db/journals/synthese/synthese190.html#Wright13,https://doi.org/10.1007/s11229-011-9884-x +Katrin Schulz,"If you'd wiggled A, then B would've changed - Causality and counterfactual conditionals.",2011,179,Synthese,2,db/journals/synthese/synthese179.html#Schulz11,https://doi.org/10.1007/s11229-010-9780-9 +María Caamaño Alegre,Pragmatic norms in science: making them explicit.,2013,190,Synthese,15,db/journals/synthese/synthese190.html#Alegre13,https://doi.org/10.1007/s11229-012-0150-7 +Peter Vallentyne,Standard Decision Theory Corrected.,2000,122,Synthese,3,db/journals/synthese/synthese122.html#Vallentyne00,https://doi.org/10.1023/A:1005247705806 +Gabriel Uzquiano,Bad company generalized.,2009,170,Synthese,3,db/journals/synthese/synthese170.html#Uzquiano09,https://doi.org/10.1007/s11229-007-9266-6 +William Boos,The Transzendenz of Mathematical 'Experience'.,1998,114,Synthese,1,db/journals/synthese/synthese114.html#Boos98,https://doi.org/10.1023/A:1005085922564 +Brian Kim,The locality and globality of instrumental rationality: the normative significance of preference reversals.,2014,191,Synthese,18,db/journals/synthese/synthese191.html#Kim14,https://doi.org/10.1007/s11229-014-0529-8 +Sara L. Uckelman,The logic of categorematic and syncategorematic infinity.,2015,192,Synthese,8,db/journals/synthese/synthese192.html#Uckelman15,https://doi.org/10.1007/s11229-015-0670-z +Dominic Alford-Duguid,On the explanatory power of hallucination.,2017,194,Synthese,5,db/journals/synthese/synthese194.html#Alford-DuguidA17,https://doi.org/10.1007/s11229-016-1020-5 +Ward E. Jones,Is Scientific Theory-Commitment Doxastic or Practical?,2003,137,Synthese,3,db/journals/synthese/synthese137.html#Jones03,https://doi.org/10.1023/B:SYNT.0000004901.93310.03 +Nathan Ballantyne,Does luck have a place in epistemology?,2014,191,Synthese,7,db/journals/synthese/synthese191.html#Ballantyne14,https://doi.org/10.1007/s11229-013-0334-9 +Thomas Kroedel,Grounding mental causation.,2016,193,Synthese,6,db/journals/synthese/synthese193.html#KroedelS16,https://doi.org/10.1007/s11229-015-0820-3 +Valtteri Arstila,What makes unique hues unique?,2018,195,Synthese,5,db/journals/synthese/synthese195.html#Arstila18,https://doi.org/10.1007/s11229-017-1313-3 +Bryan Renne,Logics of temporal-epistemic actions.,2016,193,Synthese,3,db/journals/synthese/synthese193.html#RenneSY16,https://doi.org/10.1007/s11229-015-0773-6 +Mihai Vacariu,Introduction.,2001,129,Synthese,2,db/journals/synthese/synthese129.html#VacariuRV01,https://doi.org/10.1023/A:1013067728072 +Sven Ove Hansson,Multiple and iterated contraction reduced to single-step single-sentence contraction.,2010,173,Synthese,2,db/journals/synthese/synthese173.html#Hansson10,https://doi.org/10.1007/s11229-009-9688-4 +Femke L. Truijens,Do the numbers speak for themselves? A critical analysis of procedural objectivity in psychotherapeutic efficacy research.,2017,194,Synthese,12,db/journals/synthese/synthese194.html#Truijens17,https://doi.org/10.1007/s11229-016-1188-8 +F. Liu,Advances in belief dynamics: Introduction.,2010,173,Synthese,2,db/journals/synthese/synthese173.html#LiuR10,https://doi.org/10.1007/s11229-009-9710-x +John Collins,Cowie on the Poverty of Stimulus.,2003,136,Synthese,2,db/journals/synthese/synthese136.html#Collins03,https://doi.org/10.1023/A:1024738522031 +Erik Anderson,How General is Generalized Scientific Essentialism?,2005,144,Synthese,3,db/journals/synthese/synthese144.html#Anderson05,https://doi.org/10.1007/s11229-005-5870-5 +Namjoong Kim,A dilemma for the imprecise bayesian.,2016,193,Synthese,6,db/journals/synthese/synthese193.html#Kim16,https://doi.org/10.1007/s11229-015-0800-7 +Leila Haaparanta,Perspectives into analytical philosophy.,1995,105,Synthese,1,db/journals/synthese/synthese105.html#Haaparanta95,https://doi.org/10.1007/BF01064106 +Daniel King,"Two-Dimensional Time: MacBeath's ""Time's Square"" and Special Relativity.",2004,139,Synthese,3,db/journals/synthese/synthese139.html#King04,https://doi.org/10.1023/B:SYNT.0000024890.87641.60 +Andreas Herzig,On the dynamics of institutional agreements.,2009,171,Synthese,2,db/journals/synthese/synthese171.html#HerzigLL09,https://doi.org/10.1007/s11229-009-9645-2 +Theodor Leiber,On the Actual Impact of Deterministic Chaos.,1997,113,Synthese,3,db/journals/synthese/synthese113.html#Leiber97,https://doi.org/10.1023/A:1004944713074 +William Lane Craig,The new B-Theory's tu quoque argument.,1996,107,Synthese,2,db/journals/synthese/synthese107.html#Craig96,https://doi.org/10.1007/BF00413608 +Andrea Sauchelli,Concrete possible worlds and counterfactual conditionals: Lewis versus Williamson on modal knowledge.,2010,176,Synthese,3,db/journals/synthese/synthese176.html#Sauchelli10,https://doi.org/10.1007/s11229-009-9571-3 +Gregory R. Wheeler,Methodological naturalism and epistemic internalism.,2008,163,Synthese,3,db/journals/synthese/synthese163.html#WheelerP08,https://doi.org/10.1007/s11229-007-9300-8 +Sungsu Kim,Supervenience and Causation: A Probabilistic Approach.,2000,122,Synthese,3,db/journals/synthese/synthese122.html#Kim00,https://doi.org/10.1023/A:1005282128866 +Yvon Gauthier,Hilbert and the internal logic of mathematics.,1994,101,Synthese,1,db/journals/synthese/synthese101.html#Gauthier94,https://doi.org/10.1007/BF01063966 +Sun-Joo Shin,Kant's Syntheticity Revisited by Peirce.,1997,113,Synthese,1,db/journals/synthese/synthese113.html#Shin97,https://doi.org/10.1023/A:1005068218051 +Christopher Gregory Weaver,Erratum to: What could be caused must actually be caused.,2011,183,Synthese,2,db/journals/synthese/synthese183.html#Weaver11,https://doi.org/10.1007/s11229-010-9852-x +Michael O'Rourke,Philosophical intervention and cross-disciplinary science: the story of the Toolbox Project.,2013,190,Synthese,11,db/journals/synthese/synthese190.html#ORourkeC13,https://doi.org/10.1007/s11229-012-0175-y +Bryan W. Roberts,How Galileo dropped the ball and Fermat picked it up.,2011,180,Synthese,3,db/journals/synthese/synthese180.html#Roberts11,https://doi.org/10.1007/s11229-009-9705-7 +John Bickle,Concepts Structured Through Reduction: A Structuralist Resource Illuminates The Consolidation - Long-Term Potentiation (Ltp) Link.,2002,130,Synthese,1,db/journals/synthese/synthese130.html#Bickle02,https://doi.org/10.1023/A:1013831410802 +Uljana Feest,What exactly is stabilized when phenomena are stabilized?,2011,182,Synthese,1,db/journals/synthese/synthese182.html#Feest11,https://doi.org/10.1007/s11229-009-9616-7 +Vincent Conitzer,On Stackelberg mixed strategies.,2016,193,Synthese,3,db/journals/synthese/synthese193.html#Conitzer16,https://doi.org/10.1007/s11229-015-0927-6 +Jonathan Schaffer,Necessitarian propositions.,2012,189,Synthese,1,db/journals/synthese/synthese189.html#Schaffer12,https://doi.org/10.1007/s11229-012-0097-8 +Adrian Wüthrich,The Higgs discovery as a diagnostic causal inference.,2017,194,Synthese,2,db/journals/synthese/synthese194.html#Wuthrich17,https://doi.org/10.1007/s11229-015-0941-8 +Jack Ritchie,Structural realism and Davidson.,2008,162,Synthese,1,db/journals/synthese/synthese162.html#Ritchie08,https://doi.org/10.1007/s11229-007-9171-z +Tim Räz,The silent hexagon: explaining comb structures.,2017,194,Synthese,5,db/journals/synthese/synthese194.html#Raz17,https://doi.org/10.1007/s11229-016-1014-3 +Neil Levy,Embodied savoir-faire: knowledge-how requires motor representations.,2017,194,Synthese,2,db/journals/synthese/synthese194.html#Levy17,https://doi.org/10.1007/s11229-015-0956-1 +John Robert Gareth Williams,Gavagai again.,2008,164,Synthese,2,db/journals/synthese/synthese164.html#Williams08a,https://doi.org/10.1007/s11229-007-9224-3 +Catherine Stinson,Mechanisms in psychology: ripping nature at its seams.,2016,193,Synthese,5,db/journals/synthese/synthese193.html#Stinson16,https://doi.org/10.1007/s11229-015-0871-5 +Mark H. Bickhard,Interactivism: introduction to the special issue.,2009,166,Synthese,3,db/journals/synthese/synthese166.html#Bickhard09,https://doi.org/10.1007/s11229-008-9371-1 +Jeffrey A. Barrett,Pure wave mechanics and the very idea of empirical adequacy.,2015,192,Synthese,10,db/journals/synthese/synthese192.html#Barrett15,https://doi.org/10.1007/s11229-015-0698-0 +Gerhard Schurz,Causality as a theoretical concept: explanatory warrant and empirical content of the theory of causal nets.,2016,193,Synthese,4,db/journals/synthese/synthese193.html#SchurzG16,https://doi.org/10.1007/s11229-014-0630-z +Søren Overgaard,The unobservability thesis.,2017,194,Synthese,3,db/journals/synthese/synthese194.html#Overgaard17,https://doi.org/10.1007/s11229-015-0804-3 +Stefano Predelli,The Problem with Token-reflexivity.,2006,148,Synthese,1,db/journals/synthese/synthese148.html#Predelli06,https://doi.org/10.1007/s11229-003-6194-y +Robert E. Pezet,A foundation for presentism.,2017,194,Synthese,5,db/journals/synthese/synthese194.html#Pezet17,https://doi.org/10.1007/s11229-016-1024-1 +Fenrong Liu,Editorial.,2008,165,Synthese,2,db/journals/synthese/synthese165.html#LiuVX08,https://doi.org/10.1007/s11229-008-9405-8 +Bob Coecke,Picturing classical and quantum Bayesian inference.,2012,186,Synthese,3,db/journals/synthese/synthese186.html#CoeckeS12,https://doi.org/10.1007/s11229-011-9917-5 +O. Roy,A dynamic-epistemic hybrid logic for intentions and information changes in strategic games.,2009,171,Synthese,2,db/journals/synthese/synthese171.html#Roy09a,https://doi.org/10.1007/s11229-009-9644-3 +Kristóf Nyíri,Post-Literacy as a Source of Twentieth-Century Philosophy.,2002,130,Synthese,2,db/journals/synthese/synthese130.html#Nyiri02,https://doi.org/10.1023/A:1014438529050 +Heidi E. Grasswick,Scientific and lay communities: earning epistemic trust through knowledge sharing.,2010,177,Synthese,3,db/journals/synthese/synthese177.html#Grasswick10,https://doi.org/10.1007/s11229-010-9789-0 +Maria E. Kronfeldner,Darwinian 'blind' hypothesis formation revisited.,2010,175,Synthese,2,db/journals/synthese/synthese175.html#Kronfeldner10,https://doi.org/10.1007/s11229-009-9498-8 +Aud Sissel Hoel,"Thinking ""difference"" differently: Cassirer versus Derrida on symbolic mediation.",2011,179,Synthese,1,db/journals/synthese/synthese179.html#Hoel11,https://doi.org/10.1007/s11229-009-9629-2 +Conrad Heilmann,How to be fairer.,2017,194,Synthese,9,db/journals/synthese/synthese194.html#HeilmannW17,https://doi.org/10.1007/s11229-015-0967-y +Alexander Dinges,Epistemic contextualism can be stated properly.,2014,191,Synthese,15,db/journals/synthese/synthese191.html#Dinges14,https://doi.org/10.1007/s11229-014-0459-5 +Vera Hoffmann-Kolss,Of brains and planets: on a causal criterion for mind-brain identities.,2016,193,Synthese,4,db/journals/synthese/synthese193.html#Hoffmann-Kolss16,https://doi.org/10.1007/s11229-015-0671-y +Katherine Dunlop,Why Euclid's geometry brooked no doubt: J. H. Lambert on certainty and the existence of models.,2009,167,Synthese,1,db/journals/synthese/synthese167.html#Dunlop09,https://doi.org/10.1007/s11229-007-9277-3 +Mark Siebel,Equivalent testimonies as a touchstone of coherence measures.,2008,161,Synthese,2,db/journals/synthese/synthese161.html#SiebelW08,https://doi.org/10.1007/s11229-006-9155-4 +Denny Borsboom,Functional Thought Experiments.,2002,130,Synthese,3,db/journals/synthese/synthese130.html#BorsboomMH02,https://doi.org/10.1023/A:1014840616403 +Brenda R. J. Jansen,Rule transition on the balance scale task: a case study in belief change.,2007,155,Synthese,2,db/journals/synthese/synthese155.html#JansenRV07,https://doi.org/10.1007/s11229-006-9142-9 +Wei Fang,Holistic modeling: an objection to Weisberg's weighted feature-matching account.,2017,194,Synthese,5,db/journals/synthese/synthese194.html#Fang17,https://doi.org/10.1007/s11229-016-1018-z +Lydia Patton,Methodological realism and modal resourcefulness: out of the web and into the mine.,2015,192,Synthese,11,db/journals/synthese/synthese192.html#Patton15,https://doi.org/10.1007/s11229-015-0917-8 +Eric Dietrich,Consciousness and the Limits of Our Imaginations.,2001,126,Synthese,3,db/journals/synthese/synthese126.html#DietrichG01,https://doi.org/10.1023/A:1005270501025 +Karl J. Friston,Free-energy and the brain.,2007,159,Synthese,3,db/journals/synthese/synthese159.html#FristonS07,https://doi.org/10.1007/s11229-007-9237-y +Christian List,Aggregating Sets of Judgments: Two Impossibility Results Compared1.,2004,140,Synthese,1,db/journals/synthese/synthese140.html#ListP04,https://doi.org/10.1023/B:SYNT.0000029950.50517.59 +Samson Abramsky,From IF to BI.,2009,167,Synthese,2,db/journals/synthese/synthese167.html#AbramskyV09,https://doi.org/10.1007/s11229-008-9415-6 +Michael Baumgartner,Adequate formalization.,2008,164,Synthese,1,db/journals/synthese/synthese164.html#BaumgartnerL08,https://doi.org/10.1007/s11229-007-9218-1 +Joshua M. Mozersky,Smith On Times And Tokens.,2001,129,Synthese,3,db/journals/synthese/synthese129.html#Mozersky01,https://doi.org/10.1023/A:1013135211562 +Wolfgang Spohn,A Brief Comparison Of Pollock's Defeasible Reasoning And Ranking Functions.,2002,131,Synthese,1,db/journals/synthese/synthese131.html#Spohn02,https://doi.org/10.1023/A:1015004212541 +Jean-Yves Béziau,The relativity and universality of logic.,2015,192,Synthese,7,db/journals/synthese/synthese192.html#Beziau15,https://doi.org/10.1007/s11229-014-0419-0 +Timothy Perrine,Undermining truthmaker theory.,2015,192,Synthese,1,db/journals/synthese/synthese192.html#Perrine15,https://doi.org/10.1007/s11229-014-0558-3 +Kareem Khalifa,Is understanding explanatory or objectual?,2013,190,Synthese,6,db/journals/synthese/synthese190.html#Khalifa13,https://doi.org/10.1007/s11229-011-9886-8 +Michael Rathjen,The Constructive Hilbert Program and the Limits of Martin-Löf Type Theory.,2005,147,Synthese,1,db/journals/synthese/synthese147.html#Rathjen05,https://doi.org/10.1007/s11229-004-6208-4 +Joan Pagés,Structural Universals And Formal Relations.,2002,131,Synthese,2,db/journals/synthese/synthese131.html#Pages02,https://doi.org/10.1023/A:1015765414172 +Gerhard Nuffer,What difference might and may make.,2015,192,Synthese,2,db/journals/synthese/synthese192.html#Nuffer15,https://doi.org/10.1007/s11229-014-0576-1 +Kevin J. S. Zollman,Social structure and the effects of conformity.,2010,172,Synthese,3,db/journals/synthese/synthese172.html#Zollman10,https://doi.org/10.1007/s11229-008-9393-8 +Christopher Pincock,How to avoid inconsistent idealizations.,2014,191,Synthese,13,db/journals/synthese/synthese191.html#Pincock14,https://doi.org/10.1007/s11229-014-0467-5 +Ivano Ciardelli,Inquisitive dynamic epistemic logic.,2015,192,Synthese,6,db/journals/synthese/synthese192.html#CiardelliR15,https://doi.org/10.1007/s11229-014-0404-7 +Alisa Bokulich,How scientific models can explain.,2011,180,Synthese,1,db/journals/synthese/synthese180.html#Bokulich11,https://doi.org/10.1007/s11229-009-9565-1 +Reid Buchanan,Natural Doubts: Williams's Diagnosis Of Scepticism.,2002,131,Synthese,1,db/journals/synthese/synthese131.html#Buchanan02,https://doi.org/10.1023/A:1015082729457 +Sebastian Sequoiah-Grayson,A positive information logic for inferential information.,2009,167,Synthese,2,db/journals/synthese/synthese167.html#Sequoiah-Grayson09,https://doi.org/10.1007/s11229-008-9406-7 +Justin Bruner,David Lewis in the lab: experimental results on the emergence of meaning.,2018,195,Synthese,2,db/journals/synthese/synthese195.html#BrunerORH18,https://doi.org/10.1007/s11229-014-0535-x +Weng Hong Tang,Intentionality and partial belief.,2014,191,Synthese,7,db/journals/synthese/synthese191.html#Tang14a,https://doi.org/10.1007/s11229-013-0336-7 +Emiliano Lorini,A logic of intention and attempt.,2008,163,Synthese,1,db/journals/synthese/synthese163.html#LoriniH08,https://doi.org/10.1007/s11229-008-9309-7 +Iris van Rooij,Intractability and the use of heuristics in psychological explanations.,2012,187,Synthese,2,db/journals/synthese/synthese187.html#RooijWW12,https://doi.org/10.1007/s11229-010-9847-7 +Sven Ove Hansson,Maximal and perimaximal contraction.,2013,190,Synthese,16,db/journals/synthese/synthese190.html#Hansson13,https://doi.org/10.1007/s11229-012-0167-y +Aladdin M. Yaqub,Two types of deflationism.,2008,165,Synthese,1,db/journals/synthese/synthese165.html#Yaqub08,https://doi.org/10.1007/s11229-007-9241-2 +Daniel Williams 0003,From symbols to icons: the return of resemblance in the cognitive neuroscience revolution.,2018,195,Synthese,5,db/journals/synthese/synthese195.html#WilliamsC18,https://doi.org/10.1007/s11229-017-1578-6 +Maria van der Schaar,Assertion and grounding: a theory of assertion for constructive type theory.,2011,183,Synthese,2,db/journals/synthese/synthese183.html#Schaar11a,https://doi.org/10.1007/s11229-010-9758-7 +Allan Franklin,The missing piece of the puzzle: the discovery of the Higgs boson.,2017,194,Synthese,2,db/journals/synthese/synthese194.html#Franklin17,https://doi.org/10.1007/s11229-014-0550-y +Daniel D. Hutto,Basic social cognition without mindreading: minding minds without attributing contents.,2017,194,Synthese,3,db/journals/synthese/synthese194.html#Hutto17,https://doi.org/10.1007/s11229-015-0831-0 +Kevin J. Davey,Can good science be logically inconsistent?,2014,191,Synthese,13,db/journals/synthese/synthese191.html#Davey14,https://doi.org/10.1007/s11229-014-0470-x +Raphael van Riel,The content of model-based information.,2015,192,Synthese,12,db/journals/synthese/synthese192.html#Riel15,https://doi.org/10.1007/s11229-015-0728-y +Adrienne Prettyman,Perceptual content is indexed to attention.,2017,194,Synthese,10,db/journals/synthese/synthese194.html#Prettyman17,https://doi.org/10.1007/s11229-016-1125-x +Lyle Zynda,Coherence as an ideal of rationality.,1996,109,Synthese,2,db/journals/synthese/synthese109.html#Zynda96,https://doi.org/10.1007/BF00413767 +Peter Carruthers,The illusion of conscious will.,2007,159,Synthese,2,db/journals/synthese/synthese159.html#Carruthers07,https://doi.org/10.1007/s11229-007-9204-7 +Roger Clarke,The Ravens Paradox is a misnomer.,2010,175,Synthese,3,db/journals/synthese/synthese175.html#Clarke10a,https://doi.org/10.1007/s11229-009-9560-6 +Peter Fritz,A logic for epistemic two-dimensional semantics.,2013,190,Synthese,10,db/journals/synthese/synthese190.html#Fritz13,https://doi.org/10.1007/s11229-013-0260-x +Sandra Lapointe,Erratum.,2006,152,Synthese,1,db/journals/synthese/synthese152.html#Lapointe06,https://doi.org/10.1007/s11229-006-8465-x +Jan Willem Wieland,Responsibility for strategic ignorance.,2017,194,Synthese,11,db/journals/synthese/synthese194.html#Wieland17,https://doi.org/10.1007/s11229-016-1145-6 +Douglas Walton,A dialogue system specification for explanation.,2011,182,Synthese,3,db/journals/synthese/synthese182.html#Walton11a,https://doi.org/10.1007/s11229-010-9745-z +Athanasios Raftopoulos,Ambiguous figures and representationalism.,2011,181,Synthese,3,db/journals/synthese/synthese181.html#Raftopoulos11,https://doi.org/10.1007/s11229-010-9743-1 +Katie Steele,"Distinguishing indeterminate belief from ""risk-averse"" preferences.",2007,158,Synthese,2,db/journals/synthese/synthese158.html#Steele07,https://doi.org/10.1007/s11229-006-9119-8 +Pasquale Frascolla,The Tractatus System of Arithmetic.,1997,112,Synthese,3,db/journals/synthese/synthese112.html#Frascolla97,https://doi.org/10.1023/A%3A1004952810156 +Michael De,Intrinsicality and counterpart theory.,2016,193,Synthese,8,db/journals/synthese/synthese193.html#De16,https://doi.org/10.1007/s11229-015-0847-5 +Fabrizio Cariani,Aggregating with reason(s).,2013,190,Synthese,15,db/journals/synthese/synthese190.html#Cariani13,https://doi.org/10.1007/s11229-012-0133-8 +Benjamin C. Jantzen,No two entities without identity.,2011,181,Synthese,3,db/journals/synthese/synthese181.html#Jantzen11,https://doi.org/10.1007/s11229-010-9717-3 +John Turri,Knowledge and the norm of assertion: a simple test.,2015,192,Synthese,2,db/journals/synthese/synthese192.html#Turri15,https://doi.org/10.1007/s11229-014-0573-4 +Mark Jago,Hyperintensional propositions.,2015,192,Synthese,3,db/journals/synthese/synthese192.html#Jago15,https://doi.org/10.1007/s11229-014-0461-y +Hiroshi Ohtani,Wittgenstein on context and philosophical pictures.,2016,193,Synthese,6,db/journals/synthese/synthese193.html#Ohtani16,https://doi.org/10.1007/s11229-015-0809-y +Mark Sagoff,Are there general causal forces in ecology?,2016,193,Synthese,9,db/journals/synthese/synthese193.html#Sagoff16,https://doi.org/10.1007/s11229-015-0907-x +Tomasz Placek,On infinite EPR-like correlations.,2009,167,Synthese,1,db/journals/synthese/synthese167.html#PlacekW09,https://doi.org/10.1007/s11229-007-9273-7 +Edward Slowik,"Huygens' Center-of-Mass Space-Time Reference Frame: Constructing a Cartesian Dynamics in The Wake of Newton's ""De gravitatione"" Argument.",1997,112,Synthese,2,db/journals/synthese/synthese112.html#Slowik97,https://doi.org/10.1023/A%3A1004980827071 +Raquel Krempel,Wittgenstein on knowledge: a critique.,2015,192,Synthese,3,db/journals/synthese/synthese192.html#Krempel15,https://doi.org/10.1007/s11229-014-0593-0 +Martin Roth,Folk psychology as science.,2013,190,Synthese,17,db/journals/synthese/synthese190.html#Roth13,https://doi.org/10.1007/s11229-012-0240-6 +Décio Krause,Quantum sortal predicates.,2007,154,Synthese,3,db/journals/synthese/synthese154.html#KrauseF07,https://doi.org/10.1007/s11229-006-9127-8 +Sara L. Uckelman,Arthur Prior and medieval logic.,2012,188,Synthese,3,db/journals/synthese/synthese188.html#Uckelman12,https://doi.org/10.1007/s11229-011-9943-3 +Jiji Zhang,The three faces of faithfulness.,2016,193,Synthese,4,db/journals/synthese/synthese193.html#ZhangS16,https://doi.org/10.1007/s11229-015-0673-9 +Paul Hammond,Distinguishing joint actions from collective actions.,2016,193,Synthese,9,db/journals/synthese/synthese193.html#Hammond16,https://doi.org/10.1007/s11229-015-0876-0 +Anthony Corsentino,Predicates in perspective.,2012,187,Synthese,2,db/journals/synthese/synthese187.html#Corsentino12,https://doi.org/10.1007/s11229-010-9859-3 +Joseph S. Alper,What Is A Newtonian System? The Failure Of Energy Conservation And Determinism In Supertasks.,2000,124,Synthese,2,db/journals/synthese/synthese124.html#AlperBEN00,https://doi.org/10.1023/A:1005257429769 +Alex Morgan,Representations gone mental.,2014,191,Synthese,2,db/journals/synthese/synthese191.html#Morgan14,https://doi.org/10.1007/s11229-013-0328-7 +Alessandro Lenci,The Structure of Predication.,1998,114,Synthese,2,db/journals/synthese/synthese114.html#Lenci98,https://doi.org/10.1023/A:1005068021890 +Can Baskent,Some topological properties of paraconsistent models.,2013,190,Synthese,18,db/journals/synthese/synthese190.html#Baskent13,https://doi.org/10.1007/s11229-013-0246-8 +øystein Linnebo,Bad company tamed.,2009,170,Synthese,3,db/journals/synthese/synthese170.html#Linnebo09a,https://doi.org/10.1007/s11229-007-9265-7 +Fred C. Boogerd,Emergence and Its Place in Nature: A Case Study of Biochemical Networks.,2005,145,Synthese,1,db/journals/synthese/synthese145.html#BoogerdBRSW05,https://doi.org/10.1007/s11229-004-4421-9 +Dunja Seselja,Abstract argumentation and explanation applied to scientific debates.,2013,190,Synthese,12,db/journals/synthese/synthese190.html#SeseljaS13,https://doi.org/10.1007/s11229-011-9964-y +Paolo Mancosu,Introduction: Interpolations - Essays in honor of William Craig.,2008,164,Synthese,3,db/journals/synthese/synthese164.html#Mancosu08,https://doi.org/10.1007/s11229-008-9350-6 +Scott Stapleford,Imperfect epistemic duties and the justificational fecundity of evidence.,2013,190,Synthese,18,db/journals/synthese/synthese190.html#Stapleford13,https://doi.org/10.1007/s11229-013-0249-5 +Aaron Z. Zimmerman,Self-Verification and the Content of Thought.,2006,149,Synthese,1,db/journals/synthese/synthese149.html#Zimmerman06,https://doi.org/10.1007/s11229-004-6247-x +Richard Gray 0001,On the Concept of a Sense.,2005,147,Synthese,3,db/journals/synthese/synthese147.html#000105a,https://doi.org/10.1007/s11229-005-1334-1 +Ausonio Marras,On Putnam's Critique of Metaphysical Realism: Mind-Body Identity and Supervenience.,2001,126,Synthese,3,db/journals/synthese/synthese126.html#Marras01,https://doi.org/10.1023/A:1005230727492 +Peter Dennis,Criteria for indefeasible knowledge: John Mcdowell and 'epistemological disjunctivism'.,2014,191,Synthese,17,db/journals/synthese/synthese191.html#Dennis14,https://doi.org/10.1007/s11229-014-0516-0 +Jesús Zamora-Bonilla,The nature of co-authorship: a note on recognition sharing and scientific argumentation.,2014,191,Synthese,1,db/journals/synthese/synthese191.html#Zamora-Bonilla14,https://doi.org/10.1007/s11229-012-0238-0 +Brian Talbot,Why so negative? Evidence aggregation and armchair philosophy.,2014,191,Synthese,16,db/journals/synthese/synthese191.html#Talbot14,https://doi.org/10.1007/s11229-014-0509-z +Stathis Psillos,Living with the abstract: realism and models.,2011,180,Synthese,1,db/journals/synthese/synthese180.html#Psillos11,https://doi.org/10.1007/s11229-009-9563-3 +Rachel Goodman,On the supposed connection between proper names and singular thought.,2018,195,Synthese,1,db/journals/synthese/synthese195.html#Goodman18,https://doi.org/10.1007/s11229-016-1202-1 +A. David Smith,Husserl and externalism.,2008,160,Synthese,3,db/journals/synthese/synthese160.html#Smith08,https://doi.org/10.1007/s11229-006-9082-4 +Peter McLeod,Connectionist Modelling of Word Recognition.,2001,129,Synthese,2,db/journals/synthese/synthese129.html#McLeodP001,https://doi.org/10.1023/A:1013003423323 +Brian Weatherson,Conditionals and indexical relativism.,2009,166,Synthese,2,db/journals/synthese/synthese166.html#Weatherson09,https://doi.org/10.1007/s11229-007-9283-5 +Peter Schulte,Truthmakers: a tale of two explanatory projects.,2011,181,Synthese,3,db/journals/synthese/synthese181.html#Schulte11,https://doi.org/10.1007/s11229-010-9716-4 +Ahti-Veikko Pietarinen,Exploring the beta quadrant.,2015,192,Synthese,4,db/journals/synthese/synthese192.html#Pietarinen15b,https://doi.org/10.1007/s11229-015-0677-5 +Katarzyna Kijania-Placek,Can minimalism about truth embrace polysemy?,2018,195,Synthese,3,db/journals/synthese/synthese195.html#Kijania-Placek18,https://doi.org/10.1007/s11229-016-1228-4 +Peter øhrstrøm,Prior's defence of Hintikka's theorem. A discussion of Prior's 'The logic of obligation and the obligations of the logician'.,2012,188,Synthese,3,db/journals/synthese/synthese188.html#OhrstromZS12,https://doi.org/10.1007/s11229-011-9936-2 +Daniel Steel,Bayesian Confirmation Theory and The Likelihood Principle.,2007,156,Synthese,1,db/journals/synthese/synthese156.html#Steel07,https://doi.org/10.1007/s11229-005-3492-6 +Merlijn Sevenster,On The Computational Consequences of Independence in Propositional Logic.,2006,149,Synthese,2,db/journals/synthese/synthese149.html#Sevenster06,https://doi.org/10.1007/s11229-005-3878-5 +Matthias Egg,Primitive ontology and quantum state in the GRW matter density theory.,2015,192,Synthese,10,db/journals/synthese/synthese192.html#EggE15,https://doi.org/10.1007/s11229-014-0590-3 +Andrew Chignell,Accidentally True Belief and Warrant.,2003,137,Synthese,3,db/journals/synthese/synthese137.html#Chignell03,https://doi.org/10.1023/B:SYNT.0000004906.81978.84 +Conor McHugh,Engel on doxastic correctness.,2017,194,Synthese,5,db/journals/synthese/synthese194.html#McHugh17,https://doi.org/10.1007/s11229-015-0767-4 +Gabriele Contessa,Introduction.,2010,172,Synthese,2,db/journals/synthese/synthese172.html#Contessa10,https://doi.org/10.1007/s11229-009-9501-4 +Daniel M. Johnson 0003,B-theory old and new: on ontological commitment.,2013,190,Synthese,17,db/journals/synthese/synthese190.html#Johnson13,https://doi.org/10.1007/s11229-012-0239-z +Beth Preston,Behaviorism and mentalism: Is there a third alternative?,1994,100,Synthese,2,db/journals/synthese/synthese100.html#Preston94,https://doi.org/10.1007/BF01063809 +Carlo Martini,Experts in science: a view from the trenches.,2014,191,Synthese,1,db/journals/synthese/synthese191.html#Martini14,https://doi.org/10.1007/s11229-013-0321-1 +Jane L. Mcintyre,Strength of mind: Prospects and problems for a Humean account.,2006,152,Synthese,3,db/journals/synthese/synthese152.html#Mcintyre06,https://doi.org/10.1007/s11229-006-9005-4 +Jaakko Hintikka,What is the axiomatic method?,2011,183,Synthese,1,db/journals/synthese/synthese183.html#Hintikka11,https://doi.org/10.1007/s11229-009-9668-8 +Andrew Melnyk,Formulating physicalism: Two suggestions.,1995,105,Synthese,3,db/journals/synthese/synthese105.html#Melnyk95,https://doi.org/10.1007/BF01063564 +Raul Hakli,Does the deduction theorem fail for modal logic?,2012,187,Synthese,3,db/journals/synthese/synthese187.html#HakliN12,https://doi.org/10.1007/s11229-011-9905-9 +Wouter Meijs,On the alleged impossibility of coherence.,2007,157,Synthese,3,db/journals/synthese/synthese157.html#MeijsD07,https://doi.org/10.1007/s11229-006-9060-x +Stephen Clarke,Transcendental realisms in the philosophy of science: on Bhaskar and Cartwright.,2010,173,Synthese,3,db/journals/synthese/synthese173.html#Clarke10,https://doi.org/10.1007/s11229-008-9427-2 +Frederick Maier,Well-founded semantics for defeasible logic.,2010,176,Synthese,2,db/journals/synthese/synthese176.html#MaierN10,https://doi.org/10.1007/s11229-009-9492-1 +Francesco Orilia,Quantum-mechanical Statistics and the Inclusivist Approach to the Nature of Particulars.,2006,148,Synthese,1,db/journals/synthese/synthese148.html#Orilia06,https://doi.org/10.1007/s11229-004-6216-4 +Thomas W. Polger,Mechanisms and explanatory realization relations.,2010,177,Synthese,2,db/journals/synthese/synthese177.html#Polger10,https://doi.org/10.1007/s11229-010-9841-0 +James M. Joyce,Are Newcomb problems really decisions?,2007,156,Synthese,3,db/journals/synthese/synthese156.html#Joyce07,https://doi.org/10.1007/s11229-006-9137-6 +Christopher Pincock,Russell's Influence On Carnap's Aufbau.,2002,131,Synthese,1,db/journals/synthese/synthese131.html#Pincock02,https://doi.org/10.1023/A:1015066427566 +Gerhard Schlosser,Self-re-Production and Functionality.,1998,116,Synthese,3,db/journals/synthese/synthese116.html#Schlosser98,https://doi.org/10.1023/A:1005073307193 +Louis L. Bucciarelli,The epistemic implications of engineering rhetoric.,2009,168,Synthese,3,db/journals/synthese/synthese168.html#Bucciarelli09,https://doi.org/10.1007/s11229-008-9454-z +Sam Baron,Causation in a timeless world.,2014,191,Synthese,12,db/journals/synthese/synthese191.html#BaronM14,https://doi.org/10.1007/s11229-014-0427-0 +John Kulvicki,What is What it's Like? Introducing Perceptual Modes of Presentation.,2007,156,Synthese,2,db/journals/synthese/synthese156.html#Kulvicki07,https://doi.org/10.1007/s11229-006-0003-3 +Jan Albert Van Laar,One-Sided Arguments.,2007,154,Synthese,2,db/journals/synthese/synthese154.html#Laar07,https://doi.org/10.1007/s11229-005-2882-0 +Franz Huber,Why follow the royal rule?,2017,194,Synthese,5,db/journals/synthese/synthese194.html#Huber17,https://doi.org/10.1007/s11229-015-1004-x +Martin Carrier,Underdetermination as an epistemological test tube: expounding hidden values of the scientific community.,2011,180,Synthese,2,db/journals/synthese/synthese180.html#Carrier11,https://doi.org/10.1007/s11229-009-9597-6 +Troy Catterson,Introduction.,2008,162,Synthese,3,db/journals/synthese/synthese162.html#Catterson08,https://doi.org/10.1007/s11229-007-9254-x +Rocco Gangle,The sheet of indication: a diagrammatic semantics for Peirce's EG-alpha.,2015,192,Synthese,4,db/journals/synthese/synthese192.html#GangleC15,https://doi.org/10.1007/s11229-014-0495-1 +Evan Thompson,Representationalism and the phenomenology of mental imagery.,2008,160,Synthese,3,db/journals/synthese/synthese160.html#Thompson08b,https://doi.org/10.1007/s11229-006-9086-0 +Brendan S. Gillon,On the semantics/pragmatics distinction.,2008,165,Synthese,3,db/journals/synthese/synthese165.html#Gillon08,https://doi.org/10.1007/s11229-007-9186-5 +Iris Loeb,Towards transfinite type theory: rereading Tarski's Wahrheitsbegriff.,2014,191,Synthese,10,db/journals/synthese/synthese191.html#Loeb14,https://doi.org/10.1007/s11229-014-0399-0 +Ahti-Veikko Pietarinen,Peirce and diagrams: two contributors to an actual discussion review each other.,2015,192,Synthese,4,db/journals/synthese/synthese192.html#PietarinenS15,https://doi.org/10.1007/s11229-015-0658-8 +Eli Pitcovski,Getting the big picture - A question on composition and photography.,2017,194,Synthese,3,db/journals/synthese/synthese194.html#Pitcovski17,https://doi.org/10.1007/s11229-015-0981-0 +Frederic Schick,A Dilemma for Whom?,2004,140,Synthese,1,db/journals/synthese/synthese140.html#Schick04,https://doi.org/10.1023/B:SYNT.0000029936.77539.27 +Markus I. Eronen,Understanding through modeling: the explanatory power of inadequate representation.,2015,192,Synthese,12,db/journals/synthese/synthese192.html#EronenR15,https://doi.org/10.1007/s11229-015-0973-0 +Alexander Reutlinger,Are causal facts really explanatorily emergent? Ladyman and Ross on higher-level causal facts and renormalization group explanation.,2017,194,Synthese,7,db/journals/synthese/synthese194.html#Reutlinger17,https://doi.org/10.1007/s11229-014-0530-2 +Jani Raerinne,Explanations of exceptions in biology: corrective asymmetry versus autonomy.,2017,194,Synthese,12,db/journals/synthese/synthese194.html#Raerinne17,https://doi.org/10.1007/s11229-016-1195-9 +Stephen Ellis,Multiple Objectives: A Neglected Problem in the Theory of Human Action.,2006,153,Synthese,2,db/journals/synthese/synthese153.html#Ellis06,https://doi.org/10.1007/s11229-005-5751-y +Tim Kraft,Transmission arguments against knowledge closure are still fallacious.,2014,191,Synthese,12,db/journals/synthese/synthese191.html#Kraft14,https://doi.org/10.1007/s11229-014-0403-8 +Jay Newhard,Plain truth and the incoherence of alethic functionalism.,2017,194,Synthese,5,db/journals/synthese/synthese194.html#Newhard17,https://doi.org/10.1007/s11229-015-1006-8 +Luca Moretti,Defeaters in current epistemology: introduction to the special issue.,2018,195,Synthese,7,db/journals/synthese/synthese195.html#MorettiP18,https://doi.org/10.1007/s11229-017-1551-4 +Steven Crowell,Is There A Phenomenological Research Program?,2002,131,Synthese,3,db/journals/synthese/synthese131.html#Crowell02,https://doi.org/10.1023/A:1016117513804 +Paul D. Thorn,On the preference for more specific reference classes.,2017,194,Synthese,6,db/journals/synthese/synthese194.html#Thorn17,https://doi.org/10.1007/s11229-016-1035-y +Paul M. Näger,The causal problem of entanglement.,2016,193,Synthese,4,db/journals/synthese/synthese193.html#Nager16,https://doi.org/10.1007/s11229-015-0668-6 +Achim Stephan,The dual role of 'emergence' in the philosophy of mind and in cognitive science.,2006,151,Synthese,3,db/journals/synthese/synthese151.html#Stephan06,https://doi.org/10.1007/s11229-006-9019-y +William C. Wimsatt,Reductionism and its heuristics: Making methodological reductionism honest.,2006,151,Synthese,3,db/journals/synthese/synthese151.html#Wimsatt06,https://doi.org/10.1007/s11229-006-9017-0 +Ruth E. Kastner,Cramer's Transactional Interpretation and Causal Loop Problems.,2006,150,Synthese,1,db/journals/synthese/synthese150.html#Kastner06,https://doi.org/10.1007/s11229-004-6264-9 +Darragh Byrne,Compositionality and the Manifestation Challenge.,2005,144,Synthese,1,db/journals/synthese/synthese144.html#Byrne05,https://doi.org/10.1007/s11229-005-0384-8 +Charles H. Pence,Is genetic drift a force?,2017,194,Synthese,6,db/journals/synthese/synthese194.html#Pence17,https://doi.org/10.1007/s11229-016-1031-2 +Niall Shanks,Intelligent design in theological perspective.,2011,178,Synthese,2,db/journals/synthese/synthese178.html#ShanksG11,https://doi.org/10.1007/s11229-009-9541-9 +Thor Grünbaum,The feeling of agency hypothesis: a critique.,2015,192,Synthese,10,db/journals/synthese/synthese192.html#Grunbaum15,https://doi.org/10.1007/s11229-015-0704-6 +Jens Christian Bjerring,On the rationality of pluralistic ignorance.,2014,191,Synthese,11,db/journals/synthese/synthese191.html#BjerringHP14,https://doi.org/10.1007/s11229-014-0434-1 +Mathias Risse,Bayesian Group Agents and Two Modes of Aggregation.,2003,135,Synthese,3,db/journals/synthese/synthese135.html#Risse03,https://doi.org/10.1023/A:1023531909371 +Marije Martijn,Proclus on the order of philosophy of nature.,2010,174,Synthese,2,db/journals/synthese/synthese174.html#Martijn10,https://doi.org/10.1007/s11229-008-9418-3 +Guillermo Del Pinal,Prototypes as compositional components of concepts.,2016,193,Synthese,9,db/journals/synthese/synthese193.html#Pinal16,https://doi.org/10.1007/s11229-015-0892-0 +Gábor Hofer-Szabó,A generalized definition of Bell's local causality.,2016,193,Synthese,10,db/journals/synthese/synthese193.html#Hofer-SzaboV16,https://doi.org/10.1007/s11229-015-0925-8 +Zach Weber,Inconsistent boundaries.,2015,192,Synthese,5,db/journals/synthese/synthese192.html#WeberC15,https://doi.org/10.1007/s11229-014-0614-z +Jonathan Ellis,Content externalism and phenomenal character: a new worry about privileged access.,2007,159,Synthese,1,db/journals/synthese/synthese159.html#Ellis07,https://doi.org/10.1007/s11229-006-9067-3 +Sjoerd D. Zwart,An impossibility theorem for verisimilitude.,2007,158,Synthese,1,db/journals/synthese/synthese158.html#ZwartF07,https://doi.org/10.1007/s11229-006-9051-y +Paul Teller,Learning to live with voluntarism.,2011,178,Synthese,1,db/journals/synthese/synthese178.html#Teller11,https://doi.org/10.1007/s11229-009-9517-9 +Huib Looren de Jong,Explicating pluralism: Where the mind to molecule pathway gets off the track - Reply to Bickle.,2006,151,Synthese,3,db/journals/synthese/synthese151.html#Jong06,https://doi.org/10.1007/s11229-006-9016-1 +Vincent Conitzer,A Dutch book against sleeping beauties who are evidential decision theorists.,2015,192,Synthese,9,db/journals/synthese/synthese192.html#Conitzer15,https://doi.org/10.1007/s11229-015-0691-7 +M. Chirimuuta,Minimal models and canonical neural computations: the distinctness of computational explanation in neuroscience.,2014,191,Synthese,2,db/journals/synthese/synthese191.html#Chirimuuta14,https://doi.org/10.1007/s11229-013-0369-y +,Problems of Philosophy Problem #3: One-world Assumption and Frege's Sense-reference Distinction.,1997,112,Synthese,3,db/journals/synthese/synthese112.html#X97b,https://doi.org/10.1023/A%3A1017147208339 +Kai Frederick Wehmeier,Consistent Fragments of Grundgesetze and the Existence of Non-Logical Objects.,1999,121,Synthese,3,db/journals/synthese/synthese121.html#Wehmeier99,https://doi.org/10.1023/A:1005203526185 +William Demopoulos,In Memoriam: Robert E. Butts 1928-1997.,1997,112,Synthese,1,db/journals/synthese/synthese112.html#Demopoulos97,https://doi.org/10.1023/A%3A1004907530863 +Shaun Nichols,Imagination and immortality: thinking of me.,2007,159,Synthese,2,db/journals/synthese/synthese159.html#Nichols07,https://doi.org/10.1007/s11229-007-9205-6 +Daniel M. Hausman,Systems without a graphical causal representation.,2014,191,Synthese,8,db/journals/synthese/synthese191.html#HausmanSW14,https://doi.org/10.1007/s11229-013-0380-3 +Robert Schroer,Can determinable properties earn their keep?,2011,183,Synthese,2,db/journals/synthese/synthese183.html#Schroer11,https://doi.org/10.1007/s11229-010-9767-6 +Cass Weller,Bonjour and Mentalese.,1997,113,Synthese,2,db/journals/synthese/synthese113.html#Weller97,https://doi.org/10.1023/A:1005039428529 +Hajnal Andréka,A logic road from special relativity to general relativity.,2012,186,Synthese,3,db/journals/synthese/synthese186.html#AndrekaMNS12,https://doi.org/10.1007/s11229-011-9914-8 +Joshua Sack,Extending probabilistic dynamic epistemic logic.,2009,169,Synthese,2,db/journals/synthese/synthese169.html#Sack09,https://doi.org/10.1007/s11229-009-9555-3 +Jonathan Bentwich,The duality principle: irreducibility of sub-threshold psychophysical computation to neuronal brain activation.,2006,153,Synthese,3,db/journals/synthese/synthese153.html#Bentwich06,https://doi.org/10.1007/s11229-006-9101-5 +Mark E. Wunderlich,Vector Reliability: A new Approach to Epistemic Justification.,2003,136,Synthese,2,db/journals/synthese/synthese136.html#Wunderlich03,https://doi.org/10.1023/A:1024791403375 +Maria Wikforss,Naming Natural Kinds.,2005,145,Synthese,1,db/journals/synthese/synthese145.html#Wikforss05,https://doi.org/10.1007/s11229-004-7013-9 +Hans P. van Ditmarsch,The Logic of Pit.,2006,149,Synthese,2,db/journals/synthese/synthese149.html#Ditmarsch06,https://doi.org/10.1007/s11229-005-4331-5 +Charles T. Sebens,Killer collapse: empirically probing the philosophically unsatisfactory region of GRW.,2015,192,Synthese,8,db/journals/synthese/synthese192.html#Sebens15,https://doi.org/10.1007/s11229-015-0680-x +Herbert A. Simon,Human and Machine Interpretation of Expressions in Formal Systems.,1998,116,Synthese,3,db/journals/synthese/synthese116.html#SimonE98,https://doi.org/10.1023/A:1005053105533 +Sanford C. Goldberg,Should have known.,2017,194,Synthese,8,db/journals/synthese/synthese194.html#Goldberg17,https://doi.org/10.1007/s11229-015-0662-z +Duncan Pritchard,Anti-luck virtue epistemology and epistemic defeat.,2018,195,Synthese,7,db/journals/synthese/synthese195.html#Pritchard18,https://doi.org/10.1007/s11229-016-1074-4 +Samuel Schindler,The Kuhnian mode of HPS.,2013,190,Synthese,18,db/journals/synthese/synthese190.html#Schindler13,https://doi.org/10.1007/s11229-013-0252-x +Wojciech Krysztofiak,Noemata and their formalization.,1995,105,Synthese,1,db/journals/synthese/synthese105.html#Krysztofiak95,https://doi.org/10.1007/BF01064103 +Jaakko Hintikka,On Göde's Philosophical Assumptions.,1998,114,Synthese,1,db/journals/synthese/synthese114.html#Hintikka98a,https://doi.org/10.1023/A:1005042207543 +Duncan Pritchard,Introduction.,2007,158,Synthese,3,db/journals/synthese/synthese158.html#Pritchard07,https://doi.org/10.1007/s11229-006-9038-8 +Jim Edwards,Anti-realist truth and concepts of superassertibility.,1996,109,Synthese,1,db/journals/synthese/synthese109.html#Edwards96,https://doi.org/10.1007/BF00413824 +David Liebesman,Does vagueness underlie the mass/count distinction?,2016,193,Synthese,1,db/journals/synthese/synthese193.html#Liebesman16,https://doi.org/10.1007/s11229-015-0752-y +K. Brad Wray,The pessimistic induction and the exponential growth of science reassessed.,2013,190,Synthese,18,db/journals/synthese/synthese190.html#Wray13a,https://doi.org/10.1007/s11229-013-0276-2 +Jeremy Howick,The relativity of 'placebos': defending a modified version of Grünbaum's definition.,2017,194,Synthese,4,db/journals/synthese/synthese194.html#Howick17,https://doi.org/10.1007/s11229-015-1001-0 +Sharon Ryan,The epistemic virtues of consistency.,1996,109,Synthese,2,db/journals/synthese/synthese109.html#Ryan96,https://doi.org/10.1007/BF00413765 +Beth Huffer,Actions and outcomes: two aspects of agency.,2007,157,Synthese,2,db/journals/synthese/synthese157.html#Huffer07,https://doi.org/10.1007/s11229-006-9107-z +Ulf Hlobil,Social norms and unthinkable options.,2016,193,Synthese,8,db/journals/synthese/synthese193.html#Hlobil16,https://doi.org/10.1007/s11229-015-0863-5 +Stephen John,Inductive risk and the contexts of communication.,2015,192,Synthese,1,db/journals/synthese/synthese192.html#John15,https://doi.org/10.1007/s11229-014-0554-7 +Karen Frost-Arnold,The cognitive attitude of rational trust.,2014,191,Synthese,9,db/journals/synthese/synthese191.html#Frost-Arnold14,https://doi.org/10.1007/s11229-012-0151-6 +E. J. Lowe,The rationality of metaphysics.,2011,178,Synthese,1,db/journals/synthese/synthese178.html#Lowe11,https://doi.org/10.1007/s11229-009-9514-z +Eric Steinhart,Why Numbers Are Sets.,2002,133,Synthese,3,db/journals/synthese/synthese133.html#Steinhart02,https://doi.org/10.1023/A:1021266519848 +Jon Pérez Laraudogoitia,A simple and interesting classical mechanical supertask.,2017,194,Synthese,2,db/journals/synthese/synthese194.html#Laraudogoitia17,https://doi.org/10.1007/s11229-015-0958-z +Benjamin T. Rancourt,Epistemic relativism and semantic blindness.,2015,192,Synthese,3,db/journals/synthese/synthese192.html#Rancourt15,https://doi.org/10.1007/s11229-014-0611-2 +Hein van den Berg,Kant's conception of proper science.,2011,183,Synthese,1,db/journals/synthese/synthese183.html#Berg11,https://doi.org/10.1007/s11229-009-9665-y +Jairo José Da Silva,Husserl's Two Notions Of Completeness.,2000,125,Synthese,3,db/journals/synthese/synthese125.html#Silva00,https://doi.org/10.1023/A:1005265017902 +Ruth Weintraub,The Lottery: A Paradox Regained And Resolved.,2001,129,Synthese,3,db/journals/synthese/synthese129.html#Weintraub01,https://doi.org/10.1023/A:1013192211031 +Marco Panza,The varieties of indispensability arguments.,2016,193,Synthese,2,db/journals/synthese/synthese193.html#PanzaS16,https://doi.org/10.1007/s11229-015-0977-9 +Panu Raatikainen,More on Putnam and Tarski.,2003,135,Synthese,1,db/journals/synthese/synthese135.html#Raatikainen03,https://doi.org/10.1023/A:1022910022940 +Max P. Urchs,Complementary Explanations.,1999,120,Synthese,1,db/journals/synthese/synthese120.html#Urchs99,https://doi.org/10.1023/A:1005270806908 +Steven Weinstein,Undermind.,1996,106,Synthese,2,db/journals/synthese/synthese106.html#Weinstein96,https://doi.org/10.1007/BF00413702 +William Harper,Papier Mâché Problems in Epistemology: A Defense of Strong Internalism.,1998,116,Synthese,1,db/journals/synthese/synthese116.html#Harper98,https://doi.org/10.1023/A:1005014714579 +Sherrilyn Roush,Testability and Candor - In Memory of Robert Nozick.,2005,145,Synthese,2,db/journals/synthese/synthese145.html#Roush05,https://doi.org/10.1007/s11229-005-3748-1 +Juha Saatsi,Structuralism with and without causation.,2017,194,Synthese,7,db/journals/synthese/synthese194.html#Saatsi17,https://doi.org/10.1007/s11229-014-0595-y +Branden Fitelson,Declarations of independence.,2017,194,Synthese,10,db/journals/synthese/synthese194.html#FitelsonH17,https://doi.org/10.1007/s11229-014-0559-2 +David Atkinson,A relativistic Zeno effect.,2008,160,Synthese,1,db/journals/synthese/synthese160.html#Atkinson08,https://doi.org/10.1007/s11229-006-9071-7 +Luciano Floridi,Logical fallacies as informational shortcuts.,2009,167,Synthese,2,db/journals/synthese/synthese167.html#Floridi09,https://doi.org/10.1007/s11229-008-9410-y +Alan Baker,Parsimony and inference to the best mathematical explanation.,2016,193,Synthese,2,db/journals/synthese/synthese193.html#Baker16,https://doi.org/10.1007/s11229-015-0723-3 +Wai-hung Wong,A normative account of the need for explanation.,2015,192,Synthese,9,db/journals/synthese/synthese192.html#WongY15,https://doi.org/10.1007/s11229-015-0690-8 +Nathan L. King,Erratum to: Perseverance as an intellectual virtue.,2014,191,Synthese,15,db/journals/synthese/synthese191.html#King14a,https://doi.org/10.1007/s11229-014-0511-5 +Richard Bradley,A Representation Theorem for a Decision Theory With Conditionals.,1998,116,Synthese,2,db/journals/synthese/synthese116.html#Bradley98,https://doi.org/10.1023/A:1005030124500 +Patrick Grim,A graphic measure for game-theoretic robustness.,2008,163,Synthese,2,db/journals/synthese/synthese163.html#GrimALRBSE08,https://doi.org/10.1007/s11229-007-9212-7 +Jean-Frédéric de Pasquale,Convolution and modal representations in Thagard and Stewart's neural theory of creativity: a critical analysis.,2016,193,Synthese,5,db/journals/synthese/synthese193.html#PasqualeP16,https://doi.org/10.1007/s11229-015-0934-7 +Deborah C. Smith,Superassertibility and the Equivalence Schema: A Dilemma for Wright's Antirealist.,2007,157,Synthese,1,db/journals/synthese/synthese157.html#Smith07,https://doi.org/10.1007/s11229-006-9037-9 +Jesse Hughes,An artifact is to use: an introduction to instrumental functions.,2009,168,Synthese,1,db/journals/synthese/synthese168.html#Hughes09,https://doi.org/10.1007/s11229-008-9335-5 +Alexander Bird,The metaphysics of natural kinds.,2018,195,Synthese,4,db/journals/synthese/synthese195.html#Bird18,https://doi.org/10.1007/s11229-015-0833-y +Nancy Tuana,Embedding philosophers in the practices of science: bringing humanities to the sciences.,2013,190,Synthese,11,db/journals/synthese/synthese190.html#Tuana13,https://doi.org/10.1007/s11229-012-0171-2 +Szabolcs Mikulás,Complexity of equational theory of relational algebras with standard projection elements.,2015,192,Synthese,7,db/journals/synthese/synthese192.html#MikulasSS15,https://doi.org/10.1007/s11229-015-0689-1 +Jeremy Randel Koons,A Myth resurgent: classical foundationalism and the new Sellarsian critique.,2017,194,Synthese,10,db/journals/synthese/synthese194.html#Koons17,https://doi.org/10.1007/s11229-016-1134-9 +Jaroslav Peregrin,Criteria for logical formalization.,2013,190,Synthese,14,db/journals/synthese/synthese190.html#PeregrinS13,https://doi.org/10.1007/s11229-012-0104-0 +Aaron M. Griffith,How negative truths are made true.,2015,192,Synthese,1,db/journals/synthese/synthese192.html#Griffith15,https://doi.org/10.1007/s11229-014-0570-7 +Travis Norsen,Can the wave function in configuration space be replaced by single-particle wave functions in physical space?,2015,192,Synthese,10,db/journals/synthese/synthese192.html#NorsenMO15,https://doi.org/10.1007/s11229-014-0577-0 +David Ludwig,The objectivity of local knowledge. Lessons from ethnobiology.,2017,194,Synthese,12,db/journals/synthese/synthese194.html#Ludwig17,https://doi.org/10.1007/s11229-016-1210-1 +Charles Chihara,New directions for nominalist philosophers of mathematics.,2010,176,Synthese,2,db/journals/synthese/synthese176.html#Chihara10,https://doi.org/10.1007/s11229-009-9489-9 +Luciano Boi,Theories of Space-Time in Modern Physics.,2004,139,Synthese,3,db/journals/synthese/synthese139.html#Boi04,https://doi.org/10.1023/B:SYNT.0000024888.19304.0f +Max Deutsch,Intentionalism and Intransitivity.,2005,144,Synthese,1,db/journals/synthese/synthese144.html#Deutsch05,https://doi.org/10.1007/s11229-005-1022-1 +William Bechtel,Investigating neural representations: the tale of place cells.,2016,193,Synthese,5,db/journals/synthese/synthese193.html#Bechtel16,https://doi.org/10.1007/s11229-014-0480-8 +Ryan Muldoon,Robustness and idealization in models of cognitive labor.,2011,183,Synthese,2,db/journals/synthese/synthese183.html#MuldoonW11,https://doi.org/10.1007/s11229-010-9757-8 +Cameron Boult,Epistemic normativity and the justification-excuse distinction.,2017,194,Synthese,10,db/journals/synthese/synthese194.html#Boult17,https://doi.org/10.1007/s11229-016-1127-8 +Heather Battaly,Sosa's Reflective Knowledge: How damaging is epistemic circularity?,2012,188,Synthese,2,db/journals/synthese/synthese188.html#Battaly12,https://doi.org/10.1007/s11229-011-9928-2 +Tomoji Shogenji,Coherence of the contents and the transmission of probabilistic support.,2013,190,Synthese,13,db/journals/synthese/synthese190.html#Shogenji13,https://doi.org/10.1007/s11229-011-0003-9 +Geoff Pynn,The Bayesian explanation of transmission failure.,2013,190,Synthese,9,db/journals/synthese/synthese190.html#Pynn13,https://doi.org/10.1007/s11229-011-9890-z +David Atkinson,Confirmation and justification. A commentary on Shogenji's measure.,2012,184,Synthese,1,db/journals/synthese/synthese184.html#Atkinson12,https://doi.org/10.1007/s11229-009-9696-4 +Friedrich Stadler,The road to Experience and Prediction from within: Hans Reichenbach's scientific correspondence from Berlin to Istanbul.,2011,181,Synthese,1,db/journals/synthese/synthese181.html#Stadler11,https://doi.org/10.1007/s11229-009-9595-8 +Tim Fernando,Prior and temporal sequences for natural language.,2016,193,Synthese,11,db/journals/synthese/synthese193.html#Fernando16,https://doi.org/10.1007/s11229-015-0902-2 +William Bechtel,Natural deduction in connectionist systems.,1994,101,Synthese,3,db/journals/synthese/synthese101.html#Bechtel94,https://doi.org/10.1007/BF01063897 +Julia Staffel,Can there be reasoning with degrees of belief?,2013,190,Synthese,16,db/journals/synthese/synthese190.html#Staffel13,https://doi.org/10.1007/s11229-012-0209-5 +Susan Hurley,Perception And Action: Alternative Views.,2001,129,Synthese,1,db/journals/synthese/synthese129.html#Hurley01,https://doi.org/10.1023/A:1012643006930 +Jennifer Mckitrick,Are Dispositions Causally Relevant?,2005,144,Synthese,3,db/journals/synthese/synthese144.html#Mckitrick05a,https://doi.org/10.1007/s11229-005-5868-z +Fenrong Liu,"Von Wright's ""The Logic of Preference"" revisited.",2010,175,Synthese,1,db/journals/synthese/synthese175.html#Liu10a,https://doi.org/10.1007/s11229-009-9530-z +Garrett Thomson,Counting subjects.,2008,162,Synthese,3,db/journals/synthese/synthese162.html#Thomson08,https://doi.org/10.1007/s11229-007-9249-7 +Sanford C. Goldberg,Inclusiveness in the face of anticipated disagreement.,2013,190,Synthese,7,db/journals/synthese/synthese190.html#Goldberg13,https://doi.org/10.1007/s11229-012-0102-2 +Mark Balaguer,Conceptual analysis and x-phi.,2016,193,Synthese,8,db/journals/synthese/synthese193.html#Balaguer16,https://doi.org/10.1007/s11229-015-0848-4 +Thomas ågotnes,Action and Knowledge in Alternating-Time Temporal Logic.,2006,149,Synthese,2,db/journals/synthese/synthese149.html#Agotnes06,https://doi.org/10.1007/s11229-005-3875-8 +John R. Welch,Plausibilistic coherence.,2014,191,Synthese,10,db/journals/synthese/synthese191.html#Welch14,https://doi.org/10.1007/s11229-013-0395-9 +W. R. Webster,Wavelength Theory of Colour Strikes Back: The Return of the Physical.,2002,132,Synthese,3,db/journals/synthese/synthese132.html#Webster02a,https://doi.org/10.1023/A:1020345513372 +Sjur Dyrkolbotn,Propositional discourse logic.,2014,191,Synthese,5,db/journals/synthese/synthese191.html#DyrkolbotnW14,https://doi.org/10.1007/s11229-013-0297-x +Melinda Hogan,What is wrong with an atomistic account of mental representation?,1994,100,Synthese,2,db/journals/synthese/synthese100.html#Hogan94,https://doi.org/10.1007/BF01063813 +José Luis Bermúdez,Nonconceptual Self-Consciousness And Cognitive Science.,2001,129,Synthese,1,db/journals/synthese/synthese129.html#Bermudez01,https://doi.org/10.1023/A:1012603425585 +Johan van Benthem,Editorial.,2006,148,Synthese,1,db/journals/synthese/synthese148.html#BenthemHS06,https://doi.org/10.1007/s11229-005-5892-z +Horacio L. Arló-Costa,Ambiguity aversion: the explanatory power of indeterminate probabilities.,2010,172,Synthese,1,db/journals/synthese/synthese172.html#Arlo-CostaH10a,https://doi.org/10.1007/s11229-009-9475-2 +David K. Henderson,Accounting for macro-level causation.,1994,101,Synthese,2,db/journals/synthese/synthese101.html#Henderson94,https://doi.org/10.1007/BF01064014 +James M. Joyce,Regret and instability in causal decision theory.,2012,187,Synthese,1,db/journals/synthese/synthese187.html#Joyce12,https://doi.org/10.1007/s11229-011-0022-6 +Miranda Fricker,Epistemic justice as a condition of political freedom?,2013,190,Synthese,7,db/journals/synthese/synthese190.html#Fricker13,https://doi.org/10.1007/s11229-012-0227-3 +Panu Raatikainen,Algorithmic Information Theory and Undecidability.,2000,123,Synthese,2,db/journals/synthese/synthese123.html#Raatikainen00,https://doi.org/10.1023/A:1005298819345 +Can Baskent,A Yabloesque paradox in epistemic game theory.,2018,195,Synthese,1,db/journals/synthese/synthese195.html#Baskent18,https://doi.org/10.1007/s11229-016-1231-9 +Richard Campbell,A process-based model for an interactive ontology.,2009,166,Synthese,3,db/journals/synthese/synthese166.html#Campbell09,https://doi.org/10.1007/s11229-008-9372-0 +Matthias Unterhuber,The new Tweety puzzle: arguments against monistic Bayesian approaches in epistemology and cognitive science.,2013,190,Synthese,8,db/journals/synthese/synthese190.html#UnterhuberS13,https://doi.org/10.1007/s11229-012-0159-y +David Watson,Crowdsourced science: sociotechnical epistemology in the e-research paradigm.,2018,195,Synthese,2,db/journals/synthese/synthese195.html#WatsonF18,https://doi.org/10.1007/s11229-016-1238-2 +Andrzej Wisniewski,Erotetic Search Scenarios.,2003,134,Synthese,3,db/journals/synthese/synthese134.html#Wisniewski03,https://doi.org/10.1023/A:1022983325118 +Aron Vallinder,Do computer simulations support the Argument from Disagreement?,2013,190,Synthese,8,db/journals/synthese/synthese190.html#VallinderO13,https://doi.org/10.1007/s11229-012-0107-x +Wolfgang Schwarz,Variations on a Montagovian theme.,2013,190,Synthese,16,db/journals/synthese/synthese190.html#Schwarz13,https://doi.org/10.1007/s11229-012-0173-0 +Tobias Henschen,Ceteris paribus conditions and the interventionist account of causality.,2015,192,Synthese,10,db/journals/synthese/synthese192.html#Henschen15,https://doi.org/10.1007/s11229-015-0703-7 +Keith Simmons,Three questions for minimalism.,2018,195,Synthese,3,db/journals/synthese/synthese195.html#Simmons18,https://doi.org/10.1007/s11229-016-1135-8 +,Problems of Philosophy.,1997,112,Synthese,2,db/journals/synthese/synthese112.html#X97a,https://doi.org/10.1023/A%3A1017190525254 +York Hagmayer,Causal Bayes nets as psychological theories of causal reasoning: evidence from psychological research.,2016,193,Synthese,4,db/journals/synthese/synthese193.html#Hagmayer16,https://doi.org/10.1007/s11229-015-0734-0 +Adam C. Podlaskowski,Infinitism and epistemic normativity.,2011,178,Synthese,3,db/journals/synthese/synthese178.html#PodlaskowskiS11,https://doi.org/10.1007/s11229-009-9654-1 +Paul Hoyningen-Huene,Reconsidering the miracle argument on the supposition of transient underdetermination.,2011,180,Synthese,2,db/journals/synthese/synthese180.html#Hoyningen-Huene11,https://doi.org/10.1007/s11229-009-9600-2 +Ivahn Smadja,Erratum to: Local axioms in disguise: Hilbert on Minkowski diagrams.,2012,186,Synthese,1,db/journals/synthese/synthese186.html#Smadja12a,https://doi.org/10.1007/s11229-011-0039-x +Stefan Lukits,The principle of maximum entropy and a problem in probability kinematics.,2014,191,Synthese,7,db/journals/synthese/synthese191.html#Lukits14,https://doi.org/10.1007/s11229-013-0335-8 +Mark D. Sprevak,Kripke's paradox and the Church-Turing thesis.,2008,160,Synthese,2,db/journals/synthese/synthese160.html#Sprevak08,https://doi.org/10.1007/s11229-006-9120-2 +Kelly Becker,Why reliabilism does not permit easy knowledge.,2013,190,Synthese,17,db/journals/synthese/synthese190.html#Becker13,https://doi.org/10.1007/s11229-012-0222-8 +Kent Staley,Internalist and externalist aspects of justification in scientific inquiry.,2011,182,Synthese,3,db/journals/synthese/synthese182.html#StaleyC11,https://doi.org/10.1007/s11229-010-9754-y +Lars Gundersen,In Defence Of The Conditional Account Of Dispositions.,2002,130,Synthese,3,db/journals/synthese/synthese130.html#Gundersen02,https://doi.org/10.1023/A:1014845625688 +Erik J. Olsson,Avoiding Epistemic Hell: Levi on Pragmatism and Inconsistency.,2003,135,Synthese,1,db/journals/synthese/synthese135.html#Olsson03,https://doi.org/10.1023/A:1022997026026 +Paul Weirich,Collective acts.,2012,187,Synthese,1,db/journals/synthese/synthese187.html#Weirich12,https://doi.org/10.1007/s11229-011-0027-1 +,Editorial note.,1996,106,Synthese,3,db/journals/synthese/synthese106.html#X96,https://doi.org/10.1007/BF00413588 +Sam Baron,The explanatory dispensability of idealizations.,2016,193,Synthese,2,db/journals/synthese/synthese193.html#Baron16,https://doi.org/10.1007/s11229-014-0517-z +Sen Cheng,What is episodic memory if it is a natural kind?,2016,193,Synthese,5,db/journals/synthese/synthese193.html#ChengW16,https://doi.org/10.1007/s11229-014-0628-6 +Michael Fara,Knowability and the capacity to know.,2010,173,Synthese,1,db/journals/synthese/synthese173.html#Fara10,https://doi.org/10.1007/s11229-009-9676-8 +G. P. Baker,Functions In Begriffsschrift.,2003,135,Synthese,3,db/journals/synthese/synthese135.html#BakerH03,https://doi.org/10.1023/A:1023509611120 +Patrick S. Dieveney,Dispensability in the Indispensability Argument.,2007,157,Synthese,1,db/journals/synthese/synthese157.html#Dieveney07,https://doi.org/10.1007/s11229-006-9035-y +Leonardo Bich,Complex emergence and the living organization: an epistemological framework for biology.,2012,185,Synthese,2,db/journals/synthese/synthese185.html#Bich12,https://doi.org/10.1007/s11229-010-9722-6 +Marc Ereshefsky,Darwin's solution to the species problem.,2010,175,Synthese,3,db/journals/synthese/synthese175.html#Ereshefsky10,https://doi.org/10.1007/s11229-009-9538-4 +Duncan Pritchard,Engel on pragmatic encroachment and epistemic value.,2017,194,Synthese,5,db/journals/synthese/synthese194.html#Pritchard17,https://doi.org/10.1007/s11229-015-0755-8 +Jonathan Knowles,Global expressivism and the flight from metaphysics.,2017,194,Synthese,12,db/journals/synthese/synthese194.html#Knowles17,https://doi.org/10.1007/s11229-016-1166-1 +Gerhard Jäger,Language structure: psychological and social constraints.,2007,159,Synthese,1,db/journals/synthese/synthese159.html#JagerR07,https://doi.org/10.1007/s11229-006-9073-5 +Jeremy Allen Byrd,The perfect murder: A philosophical whodunit.,2007,157,Synthese,1,db/journals/synthese/synthese157.html#Byrd07,https://doi.org/10.1007/s11229-006-0004-2 +María Manzano,Visions of Henkin.,2015,192,Synthese,7,db/journals/synthese/synthese192.html#ManzanoA15,https://doi.org/10.1007/s11229-013-0389-7 +Annalisa Coliva,Varieties of failure (of warrant transmission: what else?!).,2012,189,Synthese,2,db/journals/synthese/synthese189.html#Coliva12a,https://doi.org/10.1007/s11229-011-0006-6 +Eran Tal,From data to phenomena and back again: computer-simulated signatures.,2011,182,Synthese,1,db/journals/synthese/synthese182.html#Tal11,https://doi.org/10.1007/s11229-009-9612-y +Douglas Eden Patterson,What is a Correspondence Theory of Truth?,2003,137,Synthese,3,db/journals/synthese/synthese137.html#Patterson03,https://doi.org/10.1023/B:SYNT.0000004905.68653.b3 +Yannis Stephanou,Model Theory and Validity.,2000,123,Synthese,2,db/journals/synthese/synthese123.html#Stephanou00,https://doi.org/10.1023/A:1005217809302 +Toby Meadows,Sets and supersets.,2016,193,Synthese,6,db/journals/synthese/synthese193.html#Meadows16,https://doi.org/10.1007/s11229-015-0818-x +Anjan Chakravartty,A puzzle about voluntarism about rational epistemic stances.,2011,178,Synthese,1,db/journals/synthese/synthese178.html#Chakravartty11,https://doi.org/10.1007/s11229-009-9516-x +Peter Vickers,Understanding the selective realist defence against the PMI.,2017,194,Synthese,9,db/journals/synthese/synthese194.html#Vickers17,https://doi.org/10.1007/s11229-016-1082-4 +Neil Edward Williams,The ungrounded argument is unfounded: a response to Mumford.,2009,170,Synthese,1,db/journals/synthese/synthese170.html#Williams09,https://doi.org/10.1007/s11229-008-9344-4 +Tian Yu Cao,Can We Dissolve Physical Entities into Mathematical Structures?,2003,136,Synthese,1,db/journals/synthese/synthese136.html#Cao03b,https://doi.org/10.1023/A:1024112417545 +Anil Gupta,Intersubstitutivity principles and the generalization function of truth.,2018,195,Synthese,3,db/journals/synthese/synthese195.html#GuptaS18,https://doi.org/10.1007/s11229-017-1318-y +Roger Stanev,Early stopping of RCTs: two potential issues for error statistics.,2015,192,Synthese,4,db/journals/synthese/synthese192.html#Stanev15,https://doi.org/10.1007/s11229-014-0602-3 +Anika Fiebich,Mindreading with ease? Fluency and belief reasoning in 4- to 5-year-olds.,2014,191,Synthese,5,db/journals/synthese/synthese191.html#Fiebich14,https://doi.org/10.1007/s11229-013-0301-5 +Jamin Asay,Epistemicism and the liar.,2015,192,Synthese,3,db/journals/synthese/synthese192.html#Asay15,https://doi.org/10.1007/s11229-014-0596-x +Aránzazu San Ginés,Seeing the language: a diagrammatic approach to natural discourse.,2012,186,Synthese,1,db/journals/synthese/synthese186.html#Gines12,https://doi.org/10.1007/s11229-011-9987-4 +Arvid Båve,Deflationism and the primary truth bearer.,2010,173,Synthese,3,db/journals/synthese/synthese173.html#Bave10,https://doi.org/10.1007/s11229-008-9428-1 +Giuseppe Spolaore,Agency and fictional truth: a formal study on fiction-making.,2015,192,Synthese,5,db/journals/synthese/synthese192.html#Spolaore15,https://doi.org/10.1007/s11229-014-0613-0 +John D. Norton,How the Formal Equivalence of Grue and Green Defeats What is New in the New Riddle of Induction.,2006,150,Synthese,2,db/journals/synthese/synthese150.html#Norton06,https://doi.org/10.1007/s11229-004-6261-z +Peter Schroeder-Heister,The categorical and the hypothetical: a critique of some fundamental assumptions of standard semantics.,2012,187,Synthese,3,db/journals/synthese/synthese187.html#Schroeder-Heister12,https://doi.org/10.1007/s11229-011-9910-z +Thomas Tymoczko,Gödel and the Concept of Meaning in Mathematics.,1998,114,Synthese,1,db/journals/synthese/synthese114.html#Tymoczko98,https://doi.org/10.1023/A:1005090106634 +Alex Rosenberg,Making mechanism interesting.,2018,195,Synthese,1,db/journals/synthese/synthese195.html#Rosenberg18,https://doi.org/10.1007/s11229-015-0713-5 +Ahti-Veikko Pietarinen,Editorial Preface.,2015,192,Synthese,4,db/journals/synthese/synthese192.html#Pietarinen15,https://doi.org/10.1007/s11229-014-0656-2 +Hykel Hosni,Rationality As Conformity.,2005,144,Synthese,2,db/journals/synthese/synthese144.html#HosniP05,https://doi.org/10.1007/s11229-004-4684-1 +Beihai Zhou,Four semantic layers of common nouns.,2010,175,Synthese,1,db/journals/synthese/synthese175.html#ZhouM10,https://doi.org/10.1007/s11229-009-9533-9 +A. K. Flowerree,Agency of belief and intention.,2017,194,Synthese,8,db/journals/synthese/synthese194.html#Flowerree17,https://doi.org/10.1007/s11229-016-1138-5 +Brian Besong,Moral intuitionism and disagreement.,2014,191,Synthese,12,db/journals/synthese/synthese191.html#Besong14,https://doi.org/10.1007/s11229-014-0420-7 +Karen Green,A Pinch of Salt for Frege.,2006,150,Synthese,2,db/journals/synthese/synthese150.html#Green06,https://doi.org/10.1007/s11229-004-6260-0 +Daniel Cownden,The implications of learning across perceptually and strategically distinct situations.,2018,195,Synthese,2,db/journals/synthese/synthese195.html#CowndenES18,https://doi.org/10.1007/s11229-014-0641-9 +Douglas Eden Patterson,Tarski on the Necessity Reading of Convention T.,2006,151,Synthese,1,db/journals/synthese/synthese151.html#Patterson06,https://doi.org/10.1007/s11229-004-6230-6 +Mathieu Marion,Wittgenstein and finitism.,1995,105,Synthese,2,db/journals/synthese/synthese105.html#Marion95,https://doi.org/10.1007/BF01064216 +Steven Horst,Eliminativism and the ambiguity of 'belief'.,1995,104,Synthese,1,db/journals/synthese/synthese104.html#Horst95,https://doi.org/10.1007/BF01063678 +Stephen Mumford,The Ungrounded Argument.,2006,149,Synthese,3,db/journals/synthese/synthese149.html#Mumford06,https://doi.org/10.1007/s11229-005-0570-8 +Francesca Poggiolesi,On defining the notion of complete and immediate formal grounding.,2016,193,Synthese,10,db/journals/synthese/synthese193.html#Poggiolesi16,https://doi.org/10.1007/s11229-015-0923-x +Rom Harré,Resolving the emergence-reduction debate.,2006,151,Synthese,3,db/journals/synthese/synthese151.html#Harre06,https://doi.org/10.1007/s11229-006-9020-5 +Olivier Massin,Complementarity cannot resolve the emergence-reduction debate: Reply to Harré.,2006,151,Synthese,3,db/journals/synthese/synthese151.html#Massin06,https://doi.org/10.1007/s11229-006-9021-4 +Edison Barrios,Simple is not easy.,2016,193,Synthese,7,db/journals/synthese/synthese193.html#Barrios16,https://doi.org/10.1007/s11229-015-0843-9 +Jenann Ismael,Curie's Principle.,1997,110,Synthese,2,db/journals/synthese/synthese110.html#Ismael97,https://doi.org/10.1023/A%3A1004929109216 +Hagit Benbaji,Constitution and the explanatory gap.,2008,161,Synthese,2,db/journals/synthese/synthese161.html#Benbaji08,https://doi.org/10.1007/s11229-007-9162-0 +Stephen Pollard,Mathematical determinacy and the transferability of aboutness.,2007,159,Synthese,1,db/journals/synthese/synthese159.html#Pollard07,https://doi.org/10.1007/s11229-006-9069-1 +Adam Toon,The ontology of theoretical modelling: models as make-believe.,2010,172,Synthese,2,db/journals/synthese/synthese172.html#Toon10,https://doi.org/10.1007/s11229-009-9508-x +Troy Cross,what is a disposition?,2005,144,Synthese,3,db/journals/synthese/synthese144.html#Cross05,https://doi.org/10.1007/s11229-005-5857-2 +Christopher B. Kulp,The pre-theoreticality of moral intuitions.,2014,191,Synthese,15,db/journals/synthese/synthese191.html#Kulp14,https://doi.org/10.1007/s11229-014-0497-z +Daniel A. Wilkenfeld,MUDdy understanding.,2017,194,Synthese,4,db/journals/synthese/synthese194.html#Wilkenfeld17,https://doi.org/10.1007/s11229-015-0992-x +Kim Plunkett,Connectionism Today.,2001,129,Synthese,2,db/journals/synthese/synthese129.html#Plunkett01,https://doi.org/10.1023/A:1013099222414 +Paco Calvo,The philosophy of plant neurobiology: a manifesto.,2016,193,Synthese,5,db/journals/synthese/synthese193.html#Calvo16,https://doi.org/10.1007/s11229-016-1040-1 +Philip Percival,Branching of possible worlds.,2013,190,Synthese,18,db/journals/synthese/synthese190.html#Percival13,https://doi.org/10.1007/s11229-013-0271-7 +Eli Dresner,Measurement Theoretic Semantics And The Semantics Of Necessity.,2002,130,Synthese,3,db/journals/synthese/synthese130.html#Dresner02,https://doi.org/10.1023/A:1014815703989 +Michael Huemer,Weak Bayesian coherentism.,2007,157,Synthese,3,db/journals/synthese/synthese157.html#Huemer07,https://doi.org/10.1007/s11229-006-9059-3 +Hayley Clatterbuck,Drift beyond Wright-Fisher.,2015,192,Synthese,11,db/journals/synthese/synthese192.html#Clatterbuck15,https://doi.org/10.1007/s11229-014-0598-8 +Holly Andersen,The case for regularity in mechanistic causal explanation.,2012,189,Synthese,3,db/journals/synthese/synthese189.html#Andersen12,https://doi.org/10.1007/s11229-011-9965-x +Marcello D'Agostino,The enduring scandal of deduction.,2009,167,Synthese,2,db/journals/synthese/synthese167.html#DAgostinoF09,https://doi.org/10.1007/s11229-008-9409-4 +Andrew McFarland,Introduction for synthese special issue causation in the metaphysics of science: natural kinds.,2018,195,Synthese,4,db/journals/synthese/synthese195.html#McFarland18,https://doi.org/10.1007/s11229-017-1631-5 +Barry Loewer,Why is there anything except physics?,2009,170,Synthese,2,db/journals/synthese/synthese170.html#Loewer09,https://doi.org/10.1007/s11229-009-9580-2 +Tomohiro Hoshi,Dynamic epistemic logic with branching temporal structures.,2009,169,Synthese,2,db/journals/synthese/synthese169.html#HoshiY09,https://doi.org/10.1007/s11229-009-9552-6 +Jordan Howard Sobel,On the significance of conditional probabilities.,1996,109,Synthese,3,db/journals/synthese/synthese109.html#Sobel96a,https://doi.org/10.1007/BF00413864 +Jesper Kallestrup,Bootstrap and rollback: generalizing epistemic circularity.,2012,189,Synthese,2,db/journals/synthese/synthese189.html#Kallestrup12,https://doi.org/10.1007/s11229-011-9990-9 +Mona Simion,Assertion: knowledge is enough.,2016,193,Synthese,10,db/journals/synthese/synthese193.html#Simion16,https://doi.org/10.1007/s11229-015-0914-y +Scott Stapleford,Epistemic versus all things considered requirements.,2015,192,Synthese,6,db/journals/synthese/synthese192.html#Stapleford15,https://doi.org/10.1007/s11229-015-0660-1 +Paolo Gaudiano,Being in the Right Place at the Right Time.,1997,112,Synthese,1,db/journals/synthese/synthese112.html#Gaudiano97,https://doi.org/10.1023/A%3A1005017800922 +Chris Tillman,Reconciling justificatory internalism and content externalism.,2012,187,Synthese,2,db/journals/synthese/synthese187.html#Tillman12,https://doi.org/10.1007/s11229-010-9827-y +Katherine Hawley,Erratum to: Partiality and prejudice in trusting.,2014,191,Synthese,9,db/journals/synthese/synthese191.html#Hawley14a,https://doi.org/10.1007/s11229-014-0453-y +Gary Gates,The price of information.,1996,107,Synthese,3,db/journals/synthese/synthese107.html#Gates96,https://doi.org/10.1007/BF00413840 +Pendaran Roberts,Lay intuitions about epistemic normativity.,2018,195,Synthese,7,db/journals/synthese/synthese195.html#RobertsAS18,https://doi.org/10.1007/s11229-017-1371-6 +Yi Jiang,Studies in analytic philosophy in China.,2010,175,Synthese,1,db/journals/synthese/synthese175.html#JiangB10,https://doi.org/10.1007/s11229-009-9534-8 +Alexandra Zinck,Classifying emotion: a developmental account.,2008,161,Synthese,1,db/journals/synthese/synthese161.html#ZinckN08,https://doi.org/10.1007/s11229-006-9149-2 +Uskali Mäki,Models and the locus of their truth.,2011,180,Synthese,1,db/journals/synthese/synthese180.html#Maki11,https://doi.org/10.1007/s11229-009-9566-0 +Manuel García-Carpintero,De se thoughts and immunity to error through misidentification.,2018,195,Synthese,8,db/journals/synthese/synthese195.html#Garcia-Carpintero18,https://doi.org/10.1007/s11229-015-0817-y +Annalisa Coliva,Self-knowledge and commitments.,2009,171,Synthese,3,db/journals/synthese/synthese171.html#Coliva09,https://doi.org/10.1007/s11229-008-9322-x +Vladimír Svoboda,A Lewisian taxonomy for deontic logic.,2018,195,Synthese,7,db/journals/synthese/synthese195.html#Svoboda18,https://doi.org/10.1007/s11229-017-1370-7 +Horacio L. Arló-Costa,Introduction.,2010,172,Synthese,1,db/journals/synthese/synthese172.html#Arlo-CostaH10,https://doi.org/10.1007/s11229-009-9468-1 +Stephan Kornmesser,A frame-based approach for theoretical concepts.,2016,193,Synthese,1,db/journals/synthese/synthese193.html#Kornmesser16,https://doi.org/10.1007/s11229-015-0750-0 +Robert Deltete,Emerging from imaginary time.,1996,108,Synthese,2,db/journals/synthese/synthese108.html#DelteteG96,https://doi.org/10.1007/BF00413497 +Peter Baumann 0002,Single-case probabilities and the case of Monty Hall: Levy's view.,2008,162,Synthese,2,db/journals/synthese/synthese162.html#Baumann08,https://doi.org/10.1007/s11229-007-9185-6 +David Deutsch,Constructor theory.,2013,190,Synthese,18,db/journals/synthese/synthese190.html#Deutsch13,https://doi.org/10.1007/s11229-013-0279-z +Thomas Kroedel,A simple argument for downward causation.,2015,192,Synthese,3,db/journals/synthese/synthese192.html#Kroedel15,https://doi.org/10.1007/s11229-014-0600-5 +Andrew D. Cling,The Trouble with Infinitism.,2004,138,Synthese,1,db/journals/synthese/synthese138.html#Cling04,https://doi.org/10.1023/B:SYNT.0000012132.60082.0e +Katherine Hawley,Partiality and prejudice in trusting.,2014,191,Synthese,9,db/journals/synthese/synthese191.html#Hawley14,https://doi.org/10.1007/s11229-012-0129-4 +John D. Norton,A material dissolution of the problem of induction.,2014,191,Synthese,4,db/journals/synthese/synthese191.html#Norton14,https://doi.org/10.1007/s11229-013-0356-3 +Joseph Owens,Psychological Explanation and Causal Deviancy.,1998,115,Synthese,2,db/journals/synthese/synthese115.html#Owens98,https://doi.org/10.1023/A:1005036732326 +Carlo Martini,A puzzle about belief updating.,2013,190,Synthese,15,db/journals/synthese/synthese190.html#Martini13,https://doi.org/10.1007/s11229-012-0132-9 +Jonathan Baron,Cognitive biases in moral judgments that affect political behavior.,2010,172,Synthese,1,db/journals/synthese/synthese172.html#Baron10,https://doi.org/10.1007/s11229-009-9478-z +Andrzej Wisniewski,The logic of questions as a theory of erotetic arguments.,1996,109,Synthese,1,db/journals/synthese/synthese109.html#Wisniewski96,https://doi.org/10.1007/BF00413820 +Tian Yu Cao,Appendix: Ontological Relativity and Fundamentality - Is QFT the Fundamental Theory?,2003,136,Synthese,1,db/journals/synthese/synthese136.html#Cao03a,https://doi.org/10.1023/A:1024199931657 +Mack Harrell,Confirmation holism and semantic holism.,1996,109,Synthese,1,db/journals/synthese/synthese109.html#Harrell96,https://doi.org/10.1007/BF00413823 +Ram Neta,Epistemology Factualized: New Contractarian Foundations for Epistemology.,2006,150,Synthese,2,db/journals/synthese/synthese150.html#Neta06,https://doi.org/10.1007/s11229-004-6266-7 +John Michael,Putting unicepts to work: a teleosemantic perspective on the infant mindreading puzzle.,2017,194,Synthese,11,db/journals/synthese/synthese194.html#Michael17,https://doi.org/10.1007/s11229-015-0850-x +Horacio L. Arló-Costa,Two notions of epistemic validity.,1996,109,Synthese,2,db/journals/synthese/synthese109.html#Arlo-CostaL96,https://doi.org/10.1007/BF00413768 +Adrian Bardon,Introduction.,2006,152,Synthese,3,db/journals/synthese/synthese152.html#Bardon06,https://doi.org/10.1007/s11229-006-9006-3 +James H. Fetzer,Editorial preface.,1995,104,Synthese,2,db/journals/synthese/synthese104.html#FetzerH95,https://doi.org/10.1007/BF01063868 +Michael Rescorla,Some epistemological ramifications of the Borel-Kolmogorov paradox.,2015,192,Synthese,3,db/journals/synthese/synthese192.html#Rescorla15,https://doi.org/10.1007/s11229-014-0586-z +Regina A. Rini,How not to test for philosophical expertise.,2015,192,Synthese,2,db/journals/synthese/synthese192.html#Rini15,https://doi.org/10.1007/s11229-014-0579-y +Hao Tang 0003,Wittgenstein and the Dualism of the Inner and the Outer.,2014,191,Synthese,14,db/journals/synthese/synthese191.html#Tang14b,https://doi.org/10.1007/s11229-014-0441-2 +Jiji Zhang,Error probabilities for inference of causal directions.,2008,163,Synthese,3,db/journals/synthese/synthese163.html#Zhang08,https://doi.org/10.1007/s11229-007-9295-1 +Tian Yu Cao,Structural Realism and the Interpretation of Quantum Field Theory.,2003,136,Synthese,1,db/journals/synthese/synthese136.html#Cao03,https://doi.org/10.1023/A:1024139713910 +Benjamin Schnieder,Truth-Making without Truth-Makers.,2006,152,Synthese,1,db/journals/synthese/synthese152.html#Schnieder06,https://doi.org/10.1007/s11229-004-7905-8 +O. Bradley Bassler,The Surveyability of Mathematical Proof: A Historical Perspective.,2006,148,Synthese,1,db/journals/synthese/synthese148.html#Bassler06,https://doi.org/10.1007/s11229-004-6221-7 +G. L. Herstein,Davidson on the Impossibility of Psychophysical Laws.,2005,145,Synthese,1,db/journals/synthese/synthese145.html#Herstein05,https://doi.org/10.1007/s11229-004-5866-6 +Tyrus Fisher,Causal counterfactuals are not interventionist counterfactuals.,2017,194,Synthese,12,db/journals/synthese/synthese194.html#Fisher17,https://doi.org/10.1007/s11229-016-1183-0 +J. Adam Carter,The modal account of luck revisited.,2017,194,Synthese,6,db/journals/synthese/synthese194.html#CarterP17,https://doi.org/10.1007/s11229-016-1047-7 +Gerard R. Renardel de Lavalette,Interpolation in computing science: the semantics of modularization.,2008,164,Synthese,3,db/journals/synthese/synthese164.html#Lavalette08,https://doi.org/10.1007/s11229-008-9358-y +James D. McCawley,Unconfirmed Sightings Of An 'Ordinary Language' Theory Of Language.,1999,120,Synthese,2,db/journals/synthese/synthese120.html#McCawley99,https://doi.org/10.1023/A:1005266531363 +Robert W. Batterman,Idealization and modeling.,2009,169,Synthese,3,db/journals/synthese/synthese169.html#Batterman09,https://doi.org/10.1007/s11229-008-9436-1 +Julian Reiss,In favour of a Millian proposal to reform biomedical research.,2010,177,Synthese,3,db/journals/synthese/synthese177.html#Reiss10,https://doi.org/10.1007/s11229-010-9790-7 +James Kennedy Chase,Voting and vagueness.,2016,193,Synthese,8,db/journals/synthese/synthese193.html#Chase16,https://doi.org/10.1007/s11229-015-0859-1 +Sarah K. Robins,Optogenetics and the mechanism of false memory.,2016,193,Synthese,5,db/journals/synthese/synthese193.html#Robins16,https://doi.org/10.1007/s11229-016-1045-9 +E. Lagerspetz,Predictability and the Growth of Knowledge.,2004,141,Synthese,3,db/journals/synthese/synthese141.html#Lagerspetz04,https://doi.org/10.1023/B:SYNT.0000044953.98134.4d +Cristina Borgoni,Basic self-knowledge and transparency.,2018,195,Synthese,2,db/journals/synthese/synthese195.html#Borgoni18,https://doi.org/10.1007/s11229-016-1235-5 +Paul égré,Knowledge as de re true belief?,2017,194,Synthese,5,db/journals/synthese/synthese194.html#Egre17,https://doi.org/10.1007/s11229-016-1115-z +John Mumma,Diagrams in mathematics: history and philosophy.,2012,186,Synthese,1,db/journals/synthese/synthese186.html#MummaP12,https://doi.org/10.1007/s11229-011-9988-3 +Michael Stöltzner,The variety of explanations in the Higgs sector.,2017,194,Synthese,2,db/journals/synthese/synthese194.html#Stoltzner17,https://doi.org/10.1007/s11229-016-1112-2 +Carolyn Dicey Jennings,The subject of attention.,2012,189,Synthese,3,db/journals/synthese/synthese189.html#Jennings12,https://doi.org/10.1007/s11229-012-0164-1 +Matthew Weiner,How Causal Probabilities Might Fit into Our Objectively Indeterministic World.,2006,149,Synthese,1,db/journals/synthese/synthese149.html#WeinerB06,https://doi.org/10.1007/s11229-004-6240-4 +Adam Leite,Believing one's reasons are good.,2008,161,Synthese,3,db/journals/synthese/synthese161.html#Leite08,https://doi.org/10.1007/s11229-006-9093-1 +Luciano Floridi,Information closure and the sceptical objection.,2014,191,Synthese,6,db/journals/synthese/synthese191.html#Floridi14,https://doi.org/10.1007/s11229-013-0306-0 +K. Brad Wray,Kuhnian Revolutions Revisited.,2007,158,Synthese,1,db/journals/synthese/synthese158.html#Wray07,https://doi.org/10.1007/s11229-006-9050-z +Oswald Schwemmer,Event and form: two themes in the Davos-debate between Martin Heidegger and Ernst Cassirer.,2011,179,Synthese,1,db/journals/synthese/synthese179.html#Schwemmer11,https://doi.org/10.1007/s11229-009-9628-3 +Refeng Tang,Conceptualism and the New Myth of the Given.,2010,175,Synthese,1,db/journals/synthese/synthese175.html#Tang10,https://doi.org/10.1007/s11229-009-9529-5 +Mark Kaplan,In defense of modest probabilism.,2010,176,Synthese,1,db/journals/synthese/synthese176.html#Kaplan10,https://doi.org/10.1007/s11229-009-9483-2 +William Boos,Mathematical quantum theory I: Random ultrafilters as hidden variables.,1996,107,Synthese,1,db/journals/synthese/synthese107.html#Boos96,https://doi.org/10.1007/BF00413903 +Nathan Ballantyne,Luck and interests.,2012,185,Synthese,3,db/journals/synthese/synthese185.html#Ballantyne12,https://doi.org/10.1007/s11229-010-9747-x +Maarten Franssen,Constrained maximization reconsidered - An elaboration and critique of Gauthier's modelling of rational cooperation in a single prisoner's dilemma.,1994,101,Synthese,2,db/journals/synthese/synthese101.html#Franssen94,https://doi.org/10.1007/BF01064019 +Noa Latham,Davidson and kim on Psychophysical Laws.,1999,118,Synthese,2,db/journals/synthese/synthese118.html#Latham99,https://doi.org/10.1023/A:1005052912629 +Frederick M. Kronz,Bohm's Ontological Interpretation and its Relations to Three Formulations of Quantum Mechanics.,1998,117,Synthese,1,db/journals/synthese/synthese117.html#Kronz98,https://doi.org/10.1023/A:1005098623123 +Horacio L. Arló-Costa,Fast and frugal heuristics: rationality and the limits of naturalism.,2013,190,Synthese,5,db/journals/synthese/synthese190.html#Arlo-CostaP13,https://doi.org/10.1007/s11229-012-0188-6 +Paul A. Roth,Mistakes.,2003,136,Synthese,3,db/journals/synthese/synthese136.html#Roth03,https://doi.org/10.1023/A:1025187611264 +Steven D. Hales,Self-deception and belief attribution.,1994,101,Synthese,2,db/journals/synthese/synthese101.html#Hales94,https://doi.org/10.1007/BF01064020 +Annalisa Coliva,Introduction.,2012,189,Synthese,2,db/journals/synthese/synthese189.html#ColivaMV12,https://doi.org/10.1007/s11229-012-0174-z +Marc Lange,Is Jeffrey Conditionalization Defective By Virtue of Being Non-Commutative? Remarks on the Sameness of Sensory Experiences.,2000,123,Synthese,3,db/journals/synthese/synthese123.html#Lange00,https://doi.org/10.1023/A:1005207627094 +Pablo Cobreros,Paraconsistent vagueness: a positive argument.,2011,183,Synthese,2,db/journals/synthese/synthese183.html#Cobreros11,https://doi.org/10.1007/s11229-010-9760-0 +Felipe Romero,Why there isn't inter-level causation in mechanisms.,2015,192,Synthese,11,db/journals/synthese/synthese192.html#Romero15,https://doi.org/10.1007/s11229-015-0718-0 +Hannes Rakoczy,In defense of a developmental dogma: children acquire propositional attitude folk psychology around age 4.,2017,194,Synthese,3,db/journals/synthese/synthese194.html#Rakoczy17,https://doi.org/10.1007/s11229-015-0860-8 +Andrés Páez,Artificial explanations: the epistemological interpretation of explanation in AI.,2009,170,Synthese,1,db/journals/synthese/synthese170.html#Paez09,https://doi.org/10.1007/s11229-008-9361-3 +Bernard Bourgeois,Le XXe Siécle Philosophant: Post-Hégélien?,2002,130,Synthese,2,db/journals/synthese/synthese130.html#Bourgeois02,https://doi.org/10.1023/A:1014491305603 +Stephen Maitzen,The Knower Paradox and Epistemic Closure.,1998,114,Synthese,2,db/journals/synthese/synthese114.html#Maitzen98,https://doi.org/10.1023/A:1005064624642 +Mark Pexton,How dimensional analysis can explain.,2014,191,Synthese,10,db/journals/synthese/synthese191.html#Pexton14,https://doi.org/10.1007/s11229-014-0401-x +Eugene Earnshaw,Group selection and contextual analysis.,2015,192,Synthese,1,db/journals/synthese/synthese192.html#Earnshaw15,https://doi.org/10.1007/s11229-014-0569-0 +David J. Chalmers,Does a rock implement every finite-state automaton?,1996,108,Synthese,3,db/journals/synthese/synthese108.html#Chalmers96,https://doi.org/10.1007/BF00413692 +Gabriel Vacariu,Toward A Very Idea Of Representation.,2001,129,Synthese,2,db/journals/synthese/synthese129.html#VacariuTV01,https://doi.org/10.1023/A:1013019621505 +P. D. Magnus,What's New about the New Induction?,2006,148,Synthese,2,db/journals/synthese/synthese148.html#Magnus06,https://doi.org/10.1007/s11229-004-6223-5 +Itzhak Gilboa,Rationality of belief or: why savage's axioms are neither necessary nor sufficient for rationality.,2012,187,Synthese,1,db/journals/synthese/synthese187.html#GilboaPS12,https://doi.org/10.1007/s11229-011-0034-2 +Philip Atkins,A Russellian account of suspended judgment.,2017,194,Synthese,8,db/journals/synthese/synthese194.html#Atkins17,https://doi.org/10.1007/s11229-016-1089-x +Ross Paul Cameron,Truthmakers and modality.,2008,164,Synthese,2,db/journals/synthese/synthese164.html#Cameron08,https://doi.org/10.1007/s11229-007-9225-2 +Peter W. Evans,Retrocausality at no extra cost.,2015,192,Synthese,4,db/journals/synthese/synthese192.html#Evans15,https://doi.org/10.1007/s11229-014-0605-0 +Wolfgang Spohn,Reversing 30 years of discussion: why causal decision theorists should one-box.,2012,187,Synthese,1,db/journals/synthese/synthese187.html#Spohn12,https://doi.org/10.1007/s11229-011-0023-5 +Letitia Meynell,Imagination and insight: a new acount of the content of thought experiments.,2014,191,Synthese,17,db/journals/synthese/synthese191.html#Meynell14,https://doi.org/10.1007/s11229-014-0519-x +Alexandra Zinke,On exhibiting representational validity.,2015,192,Synthese,4,db/journals/synthese/synthese192.html#Zinke15,https://doi.org/10.1007/s11229-014-0607-y +Kevan Edwards,What concepts do.,2009,170,Synthese,2,db/journals/synthese/synthese170.html#Edwards09,https://doi.org/10.1007/s11229-009-9584-y +Gregory R. Wheeler,Introduction.,2012,186,Synthese,2,db/journals/synthese/synthese186.html#Wheeler12,https://doi.org/10.1007/s11229-011-9993-6 +Nicholas Tebben,Deontology and doxastic control.,2014,191,Synthese,12,db/journals/synthese/synthese191.html#Tebben14,https://doi.org/10.1007/s11229-014-0423-4 +Julien Dutant,Introduction.,2017,194,Synthese,5,db/journals/synthese/synthese194.html#DutantFM17,https://doi.org/10.1007/s11229-017-1352-9 +Mark Colyvan,Problems With the Argument From Fine Tuning.,2005,145,Synthese,3,db/journals/synthese/synthese145.html#ColyvanGP05,https://doi.org/10.1007/s11229-005-6195-0 +Brian Hill,Awareness and equilibrium.,2013,190,Synthese,5,db/journals/synthese/synthese190.html#Hill13,https://doi.org/10.1007/s11229-012-0189-5 +Joel Richeimer,How Philosophy Lost Perceptual Expertise.,2000,124,Synthese,3,db/journals/synthese/synthese124.html#Richeimer00,https://doi.org/10.1023/A:1005247308438 +Igor Douven,Bootstrap Confirmation Made Quantitative.,2006,149,Synthese,1,db/journals/synthese/synthese149.html#DouvenM06,https://doi.org/10.1007/s11229-004-6250-2 +Jesús Navarro,No achievement beyond intention - A new defence of robust virtue epistemology.,2015,192,Synthese,10,db/journals/synthese/synthese192.html#Navarro15,https://doi.org/10.1007/s11229-015-0708-2 +John Greco,Worries about Pritchard's safety.,2007,158,Synthese,3,db/journals/synthese/synthese158.html#Greco07,https://doi.org/10.1007/s11229-006-9040-1 +Jeanne Peijnenburg,Grounds and limits: Reichenbach and foundationalist epistemology.,2011,181,Synthese,1,db/journals/synthese/synthese181.html#PeijnenburgA11,https://doi.org/10.1007/s11229-009-9586-9 +Martin Bunzl,The logic of thought experiments.,1996,106,Synthese,2,db/journals/synthese/synthese106.html#Bunzl96,https://doi.org/10.1007/BF00413701 +Jeff Engelhardt,What we talk about when we talk about content externalism.,2016,193,Synthese,1,db/journals/synthese/synthese193.html#Engelhardt16,https://doi.org/10.1007/s11229-015-0748-7 +Yann Benétreau-Dupin,The Bayesian who knew too much.,2015,192,Synthese,5,db/journals/synthese/synthese192.html#Benetreau-Dupin15,https://doi.org/10.1007/s11229-014-0647-3 +Thomas Macaulay Ferguson,Two paradoxes of semantic information.,2015,192,Synthese,11,db/journals/synthese/synthese192.html#Ferguson15,https://doi.org/10.1007/s11229-015-0717-1 +Heinrich Wansing,Logical Connectives for Constructive Modal Logic.,2006,150,Synthese,3,db/journals/synthese/synthese150.html#Wansing06,https://doi.org/10.1007/s11229-005-5518-5 +Elia Zardini,Context and consequence. An intercontextual substructural logic.,2014,191,Synthese,15,db/journals/synthese/synthese191.html#Zardini14,https://doi.org/10.1007/s11229-014-0490-6 +Lee Mclntyre,The philosophy of chemistry: ten years later.,2007,155,Synthese,3,db/journals/synthese/synthese155.html#Mclntyre07,https://doi.org/10.1007/s11229-006-9114-0 +Cheng-Hung Tsai,Ethical expertise and the articulacy requirement.,2016,193,Synthese,7,db/journals/synthese/synthese193.html#Tsai16,https://doi.org/10.1007/s11229-015-0828-8 +Robert William Fischer,Why it doesn't matter whether the virtues are truth-conducive.,2014,191,Synthese,6,db/journals/synthese/synthese191.html#Fischer14a,https://doi.org/10.1007/s11229-013-0309-x +Annie Kuipers,Editorial.,1995,102,Synthese,3,db/journals/synthese/synthese102.html#KuipersH95,https://doi.org/10.1007/BF01064119 +Alexander Pechenkin,Operationalism as the Philosophy of Soviet Physics: The Philosophical Backgrounds of L. I. Mandelstam and His School.,2000,124,Synthese,3,db/journals/synthese/synthese124.html#Pechenkin00,https://doi.org/10.1023/A:1005248403672 +Milos Kosterec,On the number of types.,2017,194,Synthese,12,db/journals/synthese/synthese194.html#Kosterec17,https://doi.org/10.1007/s11229-016-1190-1 +Simon Friederich,Re-thinking local causality.,2015,192,Synthese,1,db/journals/synthese/synthese192.html#Friederich15,https://doi.org/10.1007/s11229-014-0563-6 +Christoph Jäger,Looking into meta-emotions.,2015,192,Synthese,3,db/journals/synthese/synthese192.html#JagerB15,https://doi.org/10.1007/s11229-014-0588-x +Ruurik Holm,Non-zero probabilities for universal generalizations.,2013,190,Synthese,18,db/journals/synthese/synthese190.html#Holm13,https://doi.org/10.1007/s11229-013-0244-x +Erhan Demircioglu,The given in perceptual experience.,2015,192,Synthese,8,db/journals/synthese/synthese192.html#Demircioglu15,https://doi.org/10.1007/s11229-015-0730-4 +Giovanna D'Agostino,Interpolation in non-classical logics.,2008,164,Synthese,3,db/journals/synthese/synthese164.html#DAgostino08,https://doi.org/10.1007/s11229-008-9359-x +Martin Montminy,Epistemic Contextualism and the Semantics-Pragmatics Distinction.,2007,155,Synthese,1,db/journals/synthese/synthese155.html#Montminy07,https://doi.org/10.1007/s11229-005-2881-1 +Wouter Teepe,Proving Possession of Arbitrary Secrets While not Giving them Away: New Protocols and a Proof in GNY Logic.,2006,149,Synthese,2,db/journals/synthese/synthese149.html#Teepe06,https://doi.org/10.1007/s11229-005-3879-4 +Conal Duddy,Reconciling probability theory and coherentism.,2014,191,Synthese,6,db/journals/synthese/synthese191.html#Duddy14,https://doi.org/10.1007/s11229-013-0310-4 +Robert C. Roberts,Natural epistemic defects and corrective virtues.,2015,192,Synthese,8,db/journals/synthese/synthese192.html#RobertsW15,https://doi.org/10.1007/s11229-015-0669-5 +Fernando R. Velázquez-Quesada,Inference and update.,2009,169,Synthese,2,db/journals/synthese/synthese169.html#Velazquez-Quesada09,https://doi.org/10.1007/s11229-009-9556-2 +Thomas Grundmann,How reliabilism saves the apriori/aposteriori distinction.,2015,192,Synthese,9,db/journals/synthese/synthese192.html#Grundmann15,https://doi.org/10.1007/s11229-014-0422-5 +Isaac Levi,List and Pettit.,2004,140,Synthese,1,db/journals/synthese/synthese140.html#Levi04g,https://doi.org/10.1023/B:SYNT.0000029951.47770.10 +Yongfeng Yuan,Rational metabolic revision based on core beliefs.,2017,194,Synthese,6,db/journals/synthese/synthese194.html#Yuan17,https://doi.org/10.1007/s11229-016-1042-z +Stathis Psillos,Scientific realism: quo vadis? Introduction: new thinking about scientific realism.,2017,194,Synthese,9,db/journals/synthese/synthese194.html#PsillosR17,https://doi.org/10.1007/s11229-017-1493-x +Jon Pérez Laraudogoitia,On The Dynamics Of Alper And Bridger.,2002,131,Synthese,2,db/journals/synthese/synthese131.html#Laraudogoitia02,https://doi.org/10.1023/A:1015705510482 +Andrew Moon,Warrant does entail truth.,2012,184,Synthese,3,db/journals/synthese/synthese184.html#Moon12,https://doi.org/10.1007/s11229-010-9815-2 +Heinrich Wansing,Remarks on the logic of imagination. A step towards understanding doxastic control through imagination.,2017,194,Synthese,8,db/journals/synthese/synthese194.html#Wansing17,https://doi.org/10.1007/s11229-015-0945-4 +Carl F. Craver,When mechanistic models explain.,2006,153,Synthese,3,db/journals/synthese/synthese153.html#Craver06,https://doi.org/10.1007/s11229-006-9097-x +Pamela Hieronymi,Responsibility for believing.,2008,161,Synthese,3,db/journals/synthese/synthese161.html#Hieronymi08,https://doi.org/10.1007/s11229-006-9089-x +Colin Howson,Repelling a Prussian charge with a solution to a paradox of Dubins.,2018,195,Synthese,1,db/journals/synthese/synthese195.html#Howson18,https://doi.org/10.1007/s11229-016-1205-y +Peter J. Graham,The theoretical diagnosis of skepticism.,2007,158,Synthese,1,db/journals/synthese/synthese158.html#Graham07,https://doi.org/10.1007/s11229-006-9048-6 +Feng Ye,What anti-realism in philosophy of mathematics must offer.,2010,175,Synthese,1,db/journals/synthese/synthese175.html#Ye10,https://doi.org/10.1007/s11229-009-9535-7 +Richard Heersmink,Distributed selves: personal identity and extended memory systems.,2017,194,Synthese,8,db/journals/synthese/synthese194.html#Heersmink17,https://doi.org/10.1007/s11229-016-1102-4 +J. van Brakel,Interdiscourse or supervenience relations: The primacy of the manifest image.,1996,106,Synthese,2,db/journals/synthese/synthese106.html#Brakel96,https://doi.org/10.1007/BF00413703 +Frederick Eberhardt,Reliability via synthetic a priori: Reichenbach's doctoral thesis on probability.,2011,181,Synthese,1,db/journals/synthese/synthese181.html#Eberhardt11,https://doi.org/10.1007/s11229-009-9587-8 +Luciano Floridi,What a maker's knowledge could be.,2018,195,Synthese,1,db/journals/synthese/synthese195.html#Floridi18,https://doi.org/10.1007/s11229-016-1232-8 +Kourken Michaelian,In defence of gullibility: the epistemology of testimony and the psychology of deception detection.,2010,176,Synthese,3,db/journals/synthese/synthese176.html#Michaelian10,https://doi.org/10.1007/s11229-009-9573-1 +Marion Vorms,Preface.,2013,190,Synthese,2,db/journals/synthese/synthese190.html#VormsP13,https://doi.org/10.1007/s11229-012-0140-9 +Panu Raatikainen,Simplicity and Incompleteness.,1998,116,Synthese,3,db/journals/synthese/synthese116.html#Raatikainen98,https://doi.org/10.1023/A:1005033725849 +Claire Ortiz Hill,Did Georg Cantor Influence Edmund Husserl?,1997,113,Synthese,1,db/journals/synthese/synthese113.html#Hill97,https://doi.org/10.1023/A:1005099615326 +Amir Horowitz,Turning the zombie on its head.,2009,170,Synthese,1,db/journals/synthese/synthese170.html#Horowitz09,https://doi.org/10.1007/s11229-008-9367-x +James Kennedy Chase,The logic of Quinean revisability.,2012,184,Synthese,3,db/journals/synthese/synthese184.html#Chase12,https://doi.org/10.1007/s11229-010-9819-y +Vladan Djordjevic,Similarity and cotenability.,2013,190,Synthese,4,db/journals/synthese/synthese190.html#Djordjevic13,https://doi.org/10.1007/s11229-012-0198-4 +Selmer Bringsjord,Cognition Is Not Computation: The Argument from Irreversibility.,1997,113,Synthese,2,db/journals/synthese/synthese113.html#BringsjordZ97,https://doi.org/10.1023/A:1005019131238 +Ryan Wasserman,The Future Similarity Objection Revisited.,2006,150,Synthese,1,db/journals/synthese/synthese150.html#Wasserman06,https://doi.org/10.1007/s11229-004-6256-9 +Remy Debes,"Which empathy? Limitations in the mirrored ""understanding"" of emotion.",2010,175,Synthese,2,db/journals/synthese/synthese175.html#Debes10,https://doi.org/10.1007/s11229-009-9499-7 +Brian Huss,Three challenges (and three replies) to the ethics of belief.,2009,168,Synthese,2,db/journals/synthese/synthese168.html#Huss09,https://doi.org/10.1007/s11229-008-9394-7 +Paul Tibbetts,The Concept of Voluntary Motor Control in the Recent Neuroscientific Literature.,2004,141,Synthese,2,db/journals/synthese/synthese141.html#Tibbetts04,https://doi.org/10.1023/B:SYNT.0000043021.33695.99 +Cory Juhl,Objectively reliable subjective probabilities.,1996,109,Synthese,3,db/journals/synthese/synthese109.html#Juhl96,https://doi.org/10.1007/BF00413863 +Don Garrett,Hume's naturalistic theory of representation.,2006,152,Synthese,3,db/journals/synthese/synthese152.html#Garrett06,https://doi.org/10.1007/s11229-006-9007-2 +Sieuwert van Otterloo,Foreword.,2006,149,Synthese,2,db/journals/synthese/synthese149.html#OtterlooWM06,https://doi.org/10.1007/s11229-005-4332-4 +Martin Smith,Intuitionistc probability and the Bayesian objection to dogmatism.,2017,194,Synthese,10,db/journals/synthese/synthese194.html#Smith17b,https://doi.org/10.1007/s11229-016-1120-2 +Ioannis Votsis,Saving the intuitions: polylithic reference.,2011,180,Synthese,2,db/journals/synthese/synthese180.html#Votsis11,https://doi.org/10.1007/s11229-009-9601-1 +Alice Drewery,Essentialism and the Necessity of the Laws of Nature.,2005,144,Synthese,3,db/journals/synthese/synthese144.html#Drewery05,https://doi.org/10.1007/s11229-005-5871-4 +Peter Vallentyne,The Nomic Role Account of Carving Reality At the Joints.,1998,115,Synthese,2,db/journals/synthese/synthese115.html#Vallentyne98,https://doi.org/10.1023/A:1005024818347 +Patrick Cronin,Regularity theories disconfirmed: a revamped argument and a wager.,2017,194,Synthese,12,db/journals/synthese/synthese194.html#Cronin17,https://doi.org/10.1007/s11229-016-1177-y +Maartje E. J. Raijmakers,Children's strategy use when playing strategic games.,2014,191,Synthese,3,db/journals/synthese/synthese191.html#RaijmakersMEC14,https://doi.org/10.1007/s11229-012-0212-x +Alex Levine,Partition epistemology and arguments from analogy.,2009,166,Synthese,3,db/journals/synthese/synthese166.html#Levine09,https://doi.org/10.1007/s11229-008-9376-9 +Max Bialek,Interest relativism in the best system analysis of laws.,2017,194,Synthese,12,db/journals/synthese/synthese194.html#Bialek17,https://doi.org/10.1007/s11229-016-1203-0 +Colin Howson,Logic with numbers.,2007,156,Synthese,3,db/journals/synthese/synthese156.html#Howson07,https://doi.org/10.1007/s11229-006-9135-8 +Pawel Gladziejewski,Predictive coding and representationalism.,2016,193,Synthese,2,db/journals/synthese/synthese193.html#Gladziejewski16,https://doi.org/10.1007/s11229-015-0762-9 +Daniel A. Weiskopf,Models and mechanisms in psychological explanation.,2011,183,Synthese,3,db/journals/synthese/synthese183.html#Weiskopf11,https://doi.org/10.1007/s11229-011-9958-9 +Fredrik Haraldsen,Rigidity and triviality.,2018,195,Synthese,5,db/journals/synthese/synthese195.html#Haraldsen18,https://doi.org/10.1007/s11229-016-1311-x +James Andow,Do non-philosophers think epistemic consequentialism is counterintuitive?,2017,194,Synthese,7,db/journals/synthese/synthese194.html#Andow17,https://doi.org/10.1007/s11229-016-1071-7 +Silvia De Bianchi,"Which explanatory role for mathematics in scientific models? Reply to ""The Explanatory Dispensability of Idealizations"".",2016,193,Synthese,2,db/journals/synthese/synthese193.html#Bianchi16,https://doi.org/10.1007/s11229-015-0795-0 +José V. Hernández-Conde,A case against convexity in conceptual spaces.,2017,194,Synthese,10,db/journals/synthese/synthese194.html#Hernandez-Conde17,https://doi.org/10.1007/s11229-016-1123-z +David Charles McCarty,Problems and riddles: hilbert and the du bois-reymonds.,2005,147,Synthese,1,db/journals/synthese/synthese147.html#McCarty05,https://doi.org/10.1007/s11229-004-6207-5 +Montgomery Link,Wittgenstein and logic.,2009,166,Synthese,1,db/journals/synthese/synthese166.html#Link09,https://doi.org/10.1007/s11229-007-9256-8 +Thomas Mormann,On the mereological structure of complex states of affairs.,2012,187,Synthese,2,db/journals/synthese/synthese187.html#Mormann12,https://doi.org/10.1007/s11229-010-9828-x +Ramiro Caso,Assertion and relative truth.,2014,191,Synthese,6,db/journals/synthese/synthese191.html#Caso14,https://doi.org/10.1007/s11229-013-0329-6 +Eric Hiddleston,Reductionism and the Micro-Macro Mirroring Thesis.,2011,181,Synthese,2,db/journals/synthese/synthese181.html#Hiddleston11,https://doi.org/10.1007/s11229-010-9798-z +Massimiliano Badino,An Application of Information Theory to the Problem of the Scientific Experiment.,2004,140,Synthese,3,db/journals/synthese/synthese140.html#Badino04,https://doi.org/10.1023/B:SYNT.0000031325.69601.af +Shaun Nichols,The essence of mentalistic agents.,2017,194,Synthese,3,db/journals/synthese/synthese194.html#Nichols17,https://doi.org/10.1007/s11229-015-0893-z +Giacomo Bonanno,A Simple Modal Logic for Belief Revision.,2005,147,Synthese,2,db/journals/synthese/synthese147.html#Bonanno05a,https://doi.org/10.1007/s11229-005-1348-8 +Caspar Oesterheld,Formalizing preference utilitarianism in physical world models.,2016,193,Synthese,9,db/journals/synthese/synthese193.html#Oesterheld16,https://doi.org/10.1007/s11229-015-0883-1 +Marie Darrason,Mechanistic and topological explanations in medicine: the case of medical genetics and network medicine.,2018,195,Synthese,1,db/journals/synthese/synthese195.html#Darrason18,https://doi.org/10.1007/s11229-015-0983-y +Adam Toon,Where is the understanding?,2015,192,Synthese,12,db/journals/synthese/synthese192.html#Toon15,https://doi.org/10.1007/s11229-015-0702-8 +Rebecca Schweder,Causal Explanation and Explanatory Selection.,1999,120,Synthese,1,db/journals/synthese/synthese120.html#Schweder99,https://doi.org/10.1023/A:1005266706000 +Janet Levin,Armchair methodology and epistemological naturalism.,2013,190,Synthese,18,db/journals/synthese/synthese190.html#Levin13,https://doi.org/10.1007/s11229-013-0253-9 +Robert C. Richardson,Multiple realization and methodological pluralism.,2009,167,Synthese,3,db/journals/synthese/synthese167.html#Richardson09,https://doi.org/10.1007/s11229-008-9387-6 +Julius Sensat,Reification as dependence on extrinsic information.,1996,109,Synthese,3,db/journals/synthese/synthese109.html#Sensat96,https://doi.org/10.1007/BF00413866 +C. Ulises Moulines,Introduction: Structuralism As A Program For Modelling Theoretical Science.,2002,130,Synthese,1,db/journals/synthese/synthese130.html#Moulines02,https://doi.org/10.1023/A:1013892808077 +Michael Huemer,Epistemic Possibility.,2007,156,Synthese,1,db/journals/synthese/synthese156.html#Huemer07a,https://doi.org/10.1007/s11229-005-4782-8 +Alex Kiefer,Content and misrepresentation in hierarchical generative models.,2018,195,Synthese,6,db/journals/synthese/synthese195.html#KieferH18,https://doi.org/10.1007/s11229-017-1435-7 +Jonathan Fuller,What are chronic diseases?,2018,195,Synthese,7,db/journals/synthese/synthese195.html#Fuller18,https://doi.org/10.1007/s11229-017-1368-1 +Wai-Hung Wong,The skeptical paradox and the indispensability of knowledge-beliefs.,2005,143,Synthese,3,db/journals/synthese/synthese143.html#Wong05,https://doi.org/10.1007/s11229-005-7017-0 +Jim Bogen,'Saving the phenomena' and saving the phenomena.,2011,182,Synthese,1,db/journals/synthese/synthese182.html#Bogen11,https://doi.org/10.1007/s11229-009-9619-4 +Alessandra Carbone,Looking From The Inside And From The Outside.,2000,125,Synthese,3,db/journals/synthese/synthese125.html#CarboneS00,https://doi.org/10.1023/A:1005244027724 +Marij van Strien,Continuity in nature and in mathematics: Boltzmann and Poincaré.,2015,192,Synthese,10,db/journals/synthese/synthese192.html#Strien15,https://doi.org/10.1007/s11229-015-0701-9 +Amir Eshan Karbasizadeh,Revising the concept of lawhood: special sciences and natural kinds.,2008,162,Synthese,1,db/journals/synthese/synthese162.html#Karbasizadeh08,https://doi.org/10.1007/s11229-007-9165-x +Ken Aizawa,Cognition and behavior.,2017,194,Synthese,11,db/journals/synthese/synthese194.html#Aizawa17,https://doi.org/10.1007/s11229-014-0645-5 +Robert Howell,Review essay.,1996,109,Synthese,3,db/journals/synthese/synthese109.html#Howell96,https://doi.org/10.1007/BF00413868 +Sam Baron,A Truthmaker Indispensability Argument.,2013,190,Synthese,12,db/journals/synthese/synthese190.html#Baron13,https://doi.org/10.1007/s11229-011-9989-2 +Abraham Graber,Creating truths by winning arguments: the problem of methodological artifacts in philosophy.,2015,192,Synthese,2,db/journals/synthese/synthese192.html#Graber15,https://doi.org/10.1007/s11229-014-0580-5 +Mark H. Bickhard,The interactivist model.,2009,166,Synthese,3,db/journals/synthese/synthese166.html#Bickhard09a,https://doi.org/10.1007/s11229-008-9375-x +Edwin H.-C. Hung,Projective Explanation: How Theories Explain Empirical Data in Spite of Theory-Data Incommensurability.,2005,145,Synthese,1,db/journals/synthese/synthese145.html#Hung05,https://doi.org/10.1007/s11229-004-0034-6 +,References.,1995,104,Synthese,3,db/journals/synthese/synthese104.html#X95b,https://doi.org/10.1007/BF01064510 +Jane Suilin Lavelle,Contrastive explanation and the many absences problem.,2013,190,Synthese,16,db/journals/synthese/synthese190.html#LavelleBL13,https://doi.org/10.1007/s11229-012-0205-9 +W. Michael Dickson,Determinism and locality in quantum systems.,1996,107,Synthese,1,db/journals/synthese/synthese107.html#Dickson96,https://doi.org/10.1007/BF00413902 +Linton Wang,Comparative syllogism and counterfactual knowledge.,2014,191,Synthese,6,db/journals/synthese/synthese191.html#WangM14,https://doi.org/10.1007/s11229-013-0330-0 +Alexandru Radulescu,The difference between indexicals and demonstratives.,2018,195,Synthese,7,db/journals/synthese/synthese195.html#Radulescu18,https://doi.org/10.1007/s11229-017-1367-2 +Justin T. Tiehen,Disproportional mental causation.,2011,182,Synthese,3,db/journals/synthese/synthese182.html#Tiehen11,https://doi.org/10.1007/s11229-010-9749-8 +Daniel Dohrn,Egan and agents: How evidential decision theory can deal with Egan's dilemma.,2015,192,Synthese,6,db/journals/synthese/synthese192.html#Dohrn15,https://doi.org/10.1007/s11229-015-0661-0 +Hans P. van Ditmarsch,The Secret of My Success.,2006,153,Synthese,2,db/journals/synthese/synthese153.html#DitmarschK06,https://doi.org/10.1007/s11229-006-8493-6 +Ernest W. Adams,Idealization in Applied First-Order Logic.,1998,117,Synthese,3,db/journals/synthese/synthese117.html#Adams98,https://doi.org/10.1023/A:1005090932292 +Matthias Adam,Two Notions of Scientific Justification.,2007,158,Synthese,1,db/journals/synthese/synthese158.html#Adam07,https://doi.org/10.1007/s11229-006-9052-x +Robert T. Pennock,Negotiating boundaries in the definition of life: Wittgensteinian and Darwinian insights on resolving conceptual border conflicts.,2012,185,Synthese,1,db/journals/synthese/synthese185.html#Pennock12,https://doi.org/10.1007/s11229-011-9873-0 +Gregory Bochner,Singular truth-conditions without singular propositions.,2018,195,Synthese,6,db/journals/synthese/synthese195.html#Bochner18,https://doi.org/10.1007/s11229-017-1354-7 +Mark Schlatter,"Walter Pitts and ""A Logical Calculus"".",2008,162,Synthese,2,db/journals/synthese/synthese162.html#SchlatterA08,https://doi.org/10.1007/s11229-007-9182-9 +Joel Smith,What is empathy for?,2017,194,Synthese,3,db/journals/synthese/synthese194.html#Smith17,https://doi.org/10.1007/s11229-015-0771-8 +Alex Worsnip,Narrow-scoping for wide-scopers.,2015,192,Synthese,8,db/journals/synthese/synthese192.html#Worsnip15,https://doi.org/10.1007/s11229-015-0681-9 +J. Adam Carter,Belief without credence.,2016,193,Synthese,8,db/journals/synthese/synthese193.html#CarterJR16,https://doi.org/10.1007/s11229-015-0846-6 +Nancy Tuana,The values of science: Empiricism from a feminist perspective.,1995,104,Synthese,3,db/journals/synthese/synthese104.html#Tuana95,https://doi.org/10.1007/BF01064509 +Susan Haack,Reply to Bonjour.,1997,112,Synthese,1,db/journals/synthese/synthese112.html#Haack97a,https://doi.org/10.1023/A%3A1004920429138 +Sanford Shieh,On the Conceptual Foundations of Anti-Realism.,1998,115,Synthese,1,db/journals/synthese/synthese115.html#Shieh98,https://doi.org/10.1023/A:1005020809621 +Ursula Renz,From philosophy to criticism of myth: Cassirer's concept of myth.,2011,179,Synthese,1,db/journals/synthese/synthese179.html#Renz11,https://doi.org/10.1007/s11229-009-9624-7 +David Palmer,Deterministic Frankfurt cases.,2014,191,Synthese,16,db/journals/synthese/synthese191.html#Palmer14,https://doi.org/10.1007/s11229-014-0500-8 +Tomoji Shogenji,The degree of epistemic justification and the conjunction fallacy.,2012,184,Synthese,1,db/journals/synthese/synthese184.html#Shogenji12,https://doi.org/10.1007/s11229-009-9699-1 +Horacio L. Arló-Costa,Contraction: On the Decision-Theoretical Origins of Minimal Change and Entrenchment.,2006,152,Synthese,1,db/journals/synthese/synthese152.html#Arlo-CostaL06,https://doi.org/10.1007/s11229-005-0351-4 +Ken Levy,Baumann on the Monty Hall problem and single-case probabilities.,2007,158,Synthese,1,db/journals/synthese/synthese158.html#Levy07,https://doi.org/10.1007/s11229-006-9065-5 +Matthew Lockard,Epistemic instrumentalism.,2013,190,Synthese,9,db/journals/synthese/synthese190.html#Lockard13,https://doi.org/10.1007/s11229-011-9932-6 +Robert Bassett,A critique of benchmark theory.,2015,192,Synthese,1,db/journals/synthese/synthese192.html#Bassett15,https://doi.org/10.1007/s11229-014-0566-3 +Robert Pierson,Explanatory warrant for scientific realism.,2008,161,Synthese,2,db/journals/synthese/synthese161.html#PiersonR08,https://doi.org/10.1007/s11229-007-9159-8 +Jack S. Levy,Applications of Prospect Theory to Political Science.,2003,135,Synthese,2,db/journals/synthese/synthese135.html#Levy03,https://doi.org/10.1023/A:1023413007698 +Nicholas J. J. Smith,Undead argument: the truth-functionality objection to fuzzy theories of vagueness.,2017,194,Synthese,10,db/journals/synthese/synthese194.html#Smith17a,https://doi.org/10.1007/s11229-014-0651-7 +Zach Barnett,Conciliationism and merely possible disagreement.,2016,193,Synthese,9,db/journals/synthese/synthese193.html#BarnettL16,https://doi.org/10.1007/s11229-015-0898-7 +Marc Alspector-Kelly,Why safety doesn't save closure.,2011,183,Synthese,2,db/journals/synthese/synthese183.html#Alspector-Kelly11,https://doi.org/10.1007/s11229-010-9755-x +Esther Oluffa Pedersen,Acknowledgements.,2011,179,Synthese,1,db/journals/synthese/synthese179.html#PedersenFBP11a,https://doi.org/10.1007/s11229-009-9632-7 +Timothy Perrine,In defense of non-reductionism in the epistemology of testimony.,2014,191,Synthese,14,db/journals/synthese/synthese191.html#Perrine14,https://doi.org/10.1007/s11229-014-0443-0 +Alice Kyburg,When Vague Sentences Inform: A Model Of Assertability.,2000,124,Synthese,2,db/journals/synthese/synthese124.html#Kyburg00,https://doi.org/10.1023/A:1005200520511 +Anouk Barberousse,About the warrants of computer-based empirical knowledge.,2014,191,Synthese,15,db/journals/synthese/synthese191.html#BarberousseV14,https://doi.org/10.1007/s11229-014-0482-6 +Victor Kumar,'Knowledge' as a natural kind term.,2014,191,Synthese,3,db/journals/synthese/synthese191.html#Kumar14,https://doi.org/10.1007/s11229-013-0281-5 +Daniel C. Burnston,Computational neuroscience and localized neural function.,2016,193,Synthese,12,db/journals/synthese/synthese193.html#Burnston16,https://doi.org/10.1007/s11229-016-1099-8 +C. S. I. Jenkins,The traditional conception of the a priori.,2015,192,Synthese,9,db/journals/synthese/synthese192.html#JenkinsK15,https://doi.org/10.1007/s11229-013-0394-x +Robert Hudson,Saving Pritchard's anti-luck virtue epistemology: the case of Temp.,2014,191,Synthese,5,db/journals/synthese/synthese191.html#Hudson14,https://doi.org/10.1007/s11229-013-0294-0 +Philipp Steinkrüger,Aristotle's assertoric syllogistic and modern relevance logic.,2015,192,Synthese,5,db/journals/synthese/synthese192.html#Steinkruger15,https://doi.org/10.1007/s11229-014-0631-y +Wolfgang Balzer,Methodological Patterns In A Structuralist Setting.,2002,130,Synthese,1,db/journals/synthese/synthese130.html#Balzer02,https://doi.org/10.1023/A:1013871008985 +Rik Peels,Responsible belief and epistemic justification.,2017,194,Synthese,8,db/journals/synthese/synthese194.html#Peels17,https://doi.org/10.1007/s11229-016-1038-8 +Dylan Dodd,Confusion about concessive knowledge attributions.,2010,172,Synthese,3,db/journals/synthese/synthese172.html#Dodd10,https://doi.org/10.1007/s11229-008-9400-0 +Stephan Krämer,A hyperintensional criterion of irrelevance.,2017,194,Synthese,8,db/journals/synthese/synthese194.html#Kramer17,https://doi.org/10.1007/s11229-016-1078-0 +Dennis Whitcomb,One wage of unknowability.,2013,190,Synthese,3,db/journals/synthese/synthese190.html#Whitcomb13,https://doi.org/10.1007/s11229-011-0017-3 +Yuval Avnur,Mere faith and entitlement.,2012,189,Synthese,2,db/journals/synthese/synthese189.html#Avnur12,https://doi.org/10.1007/s11229-011-0053-z +Ralph Wedgwood,Justified inference.,2012,189,Synthese,2,db/journals/synthese/synthese189.html#Wedgwood12,https://doi.org/10.1007/s11229-011-0012-8 +Justin T. Tiehen,A psychofunctionalist argument against nonconceptualism.,2014,191,Synthese,16,db/journals/synthese/synthese191.html#Tiehen14,https://doi.org/10.1007/s11229-014-0505-3 +Johan van Benthem,The logic of empirical theories revisited.,2012,186,Synthese,3,db/journals/synthese/synthese186.html#Benthem12,https://doi.org/10.1007/s11229-011-9916-6 +Hans P. van Ditmarsch,Prolegomena to Dynamic Logic for Belief Revision.,2005,147,Synthese,2,db/journals/synthese/synthese147.html#Ditmarsch05,https://doi.org/10.1007/s11229-005-1349-7 +Daniel M. Johnson 0006,Proper function and defeating experiences.,2011,182,Synthese,3,db/journals/synthese/synthese182.html#Johnson11,https://doi.org/10.1007/s11229-010-9752-0 +Maria van der Schaar,The assertion-candidate and the meaning of mood.,2007,159,Synthese,1,db/journals/synthese/synthese159.html#Schaar07,https://doi.org/10.1007/s11229-006-9068-2 +Kristin Sharon Shrader-Frechette,Conceptual analysis and special-interest science: toxicology and the case of Edward Calabrese.,2010,177,Synthese,3,db/journals/synthese/synthese177.html#Shrader-Frechette10,https://doi.org/10.1007/s11229-010-9792-5 +Gideon Makin,Making sense of 'on denoting'.,1995,102,Synthese,3,db/journals/synthese/synthese102.html#Makin95,https://doi.org/10.1007/BF01064122 +Isaac Levi,Seidenfeld.,2004,140,Synthese,1,db/journals/synthese/synthese140.html#Levi04c,https://doi.org/10.1023/B:SYNT.0000029943.05040.95 +Johannes Persson,The Determinables Of Explanatory Mechanisms.,1999,120,Synthese,1,db/journals/synthese/synthese120.html#Persson99,https://doi.org/10.1023/A:1005210621021 +Thomas Bartz-Beielstein,How experimental algorithmics can benefit from Mayo's extensions to Neyman-Pearson theory of testing.,2008,163,Synthese,3,db/journals/synthese/synthese163.html#Bartz-Beielstein08,https://doi.org/10.1007/s11229-007-9297-z +Fernando Broncano-Berrocal,A robust enough virtue epistemology.,2017,194,Synthese,6,db/journals/synthese/synthese194.html#Broncano-Berrocal17,https://doi.org/10.1007/s11229-016-1043-y +Thomas ågotnes,Quantified coalition logic.,2008,165,Synthese,2,db/journals/synthese/synthese165.html#AgotnesHW08,https://doi.org/10.1007/s11229-008-9363-1 +Hugh Desmond,Symmetry breaking and the emergence of path-dependence.,2017,194,Synthese,10,db/journals/synthese/synthese194.html#Desmond17,https://doi.org/10.1007/s11229-016-1130-0 +Maria Aloni,Knowing whether A or B.,2013,190,Synthese,14,db/journals/synthese/synthese190.html#AloniEJ13,https://doi.org/10.1007/s11229-009-9646-1 +Jose A. Diez,A Program For The Individuation Of Scientific Concepts.,2002,130,Synthese,1,db/journals/synthese/synthese130.html#Diez02,https://doi.org/10.1023/A:1013887521262 +Jeffrey Helzner,Epistemology and economics.,2013,190,Synthese,5,db/journals/synthese/synthese190.html#Helzner13,https://doi.org/10.1007/s11229-012-0185-9 +Robert Kirk,Physicalism and strict implication.,2006,151,Synthese,3,db/journals/synthese/synthese151.html#Kirk06,https://doi.org/10.1007/s11229-006-9023-2 +Gian-Carlo Rota,The phenomenology of Mathematical Beauty.,1997,111,Synthese,2,db/journals/synthese/synthese111.html#Rota97,https://doi.org/10.1023/A%3A1004930722234 +Jonathan Tallant,Intuitions in physics.,2013,190,Synthese,15,db/journals/synthese/synthese190.html#Tallant13a,https://doi.org/10.1007/s11229-012-0113-z +Colin Allen,On (not) defining cognition.,2017,194,Synthese,11,db/journals/synthese/synthese194.html#Allen17,https://doi.org/10.1007/s11229-017-1454-4 +Grigori Mints,Notes on Constructive Negation.,2006,148,Synthese,3,db/journals/synthese/synthese148.html#Mints06,https://doi.org/10.1007/s11229-004-6294-3 +Sylvia Wenmackers,New theory about old evidence - A framework for open-minded Bayesianism.,2016,193,Synthese,4,db/journals/synthese/synthese193.html#WenmackersR16,https://doi.org/10.1007/s11229-014-0632-x +Steven P. James,Hallucinating real things.,2014,191,Synthese,15,db/journals/synthese/synthese191.html#James14,https://doi.org/10.1007/s11229-014-0492-4 +Jacob Busch,Should scientific realists be platonists?,2016,193,Synthese,2,db/journals/synthese/synthese193.html#BuschM16,https://doi.org/10.1007/s11229-015-0676-6 +Jan-Willem Romeijn,Hypotheses and Inductive Predictions.,2004,141,Synthese,3,db/journals/synthese/synthese141.html#Romeijn04,https://doi.org/10.1023/B:SYNT.0000044993.82886.9e +Glenn Branch,Introduction.,2011,178,Synthese,2,db/journals/synthese/synthese178.html#Branch11,https://doi.org/10.1007/s11229-009-9548-2 +Jeffrey Helzner,Rationalizing two-tiered choice functions through conditional choice.,2013,190,Synthese,6,db/journals/synthese/synthese190.html#Helzner13a,https://doi.org/10.1007/s11229-011-0056-9 +Sarah Malanowski,Is episodic memory uniquely human? Evaluating the episodic-like memory research program.,2016,193,Synthese,5,db/journals/synthese/synthese193.html#Malanowski16,https://doi.org/10.1007/s11229-015-0966-z +Paul Gochet,The Dynamic Turn in Twentieth Century Logic.,2002,130,Synthese,2,db/journals/synthese/synthese130.html#Gochet02,https://doi.org/10.1023/A:1014435213120 +Ken Akiba,A defense of indeterminate distinctness.,2014,191,Synthese,15,db/journals/synthese/synthese191.html#Akiba14,https://doi.org/10.1007/s11229-014-0462-x +Xiaoxing Zhang,The paradox of the diffusiveness of power.,2017,194,Synthese,7,db/journals/synthese/synthese194.html#Zhang17,https://doi.org/10.1007/s11229-016-1061-9 +Nikolaj Nottelmann,Against a descriptive vindication of doxastic voluntarism.,2017,194,Synthese,8,db/journals/synthese/synthese194.html#Nottelmann17,https://doi.org/10.1007/s11229-015-0768-3 +David S. Oderberg,Finality revived: powers and intentionality.,2017,194,Synthese,7,db/journals/synthese/synthese194.html#Oderberg17,https://doi.org/10.1007/s11229-016-1057-5 +John F. Horty,Agency and obligation.,1996,108,Synthese,2,db/journals/synthese/synthese108.html#Horty96,https://doi.org/10.1007/BF00413499 +Benjamin C. Jantzen,Discovery without a 'logic' would be a miracle.,2016,193,Synthese,10,db/journals/synthese/synthese193.html#Jantzen16,https://doi.org/10.1007/s11229-015-0926-7 +Hans P. van Ditmarsch,My beliefs about your beliefs: a case study in theory of mind and epistemic logic.,2007,155,Synthese,2,db/journals/synthese/synthese155.html#DitmarschL07,https://doi.org/10.1007/s11229-006-9144-7 +John Bickle,Editor's introduction.,2006,153,Synthese,3,db/journals/synthese/synthese153.html#Bickle06,https://doi.org/10.1007/s11229-006-9094-0 +Edouard Machery,Why I stopped worrying about the definition of life... and why you should as well.,2012,185,Synthese,1,db/journals/synthese/synthese185.html#Machery12,https://doi.org/10.1007/s11229-011-9880-1 +Samuel Alexander,An axiomatic version of Fitch's paradox.,2013,190,Synthese,12,db/journals/synthese/synthese190.html#Alexander13,https://doi.org/10.1007/s11229-011-9954-0 +Bradley Monton,Wave Function Ontology.,2002,130,Synthese,2,db/journals/synthese/synthese130.html#Monton02,https://doi.org/10.1023/A:1014493527177 +Thomas A. C. Reydon,Species in three and four dimensions.,2008,164,Synthese,2,db/journals/synthese/synthese164.html#Reydon08,https://doi.org/10.1007/s11229-007-9221-6 +Mary Leng,What's Wrong With Indispensability?,2002,131,Synthese,3,db/journals/synthese/synthese131.html#Leng02,https://doi.org/10.1023/A:1016141509719 +Pieter E. Vermaas,The design stance and its artefacts.,2013,190,Synthese,6,db/journals/synthese/synthese190.html#VermaasCBG13,https://doi.org/10.1007/s11229-011-9885-9 +Carlos Zednik,Bayesian reverse-engineering considered as a research strategy for cognitive science.,2016,193,Synthese,12,db/journals/synthese/synthese193.html#ZednikJ16,https://doi.org/10.1007/s11229-016-1180-3 +John Bart Wilburn,A Possible Worlds Model of Object Recognition.,1998,116,Synthese,3,db/journals/synthese/synthese116.html#Wilburn98,https://doi.org/10.1023/A:1005066410812 +Markus Pantsar,In search of and#8501*0 : how infinity can be created.,2015,192,Synthese,8,db/journals/synthese/synthese192.html#Pantsar15,https://doi.org/10.1007/s11229-015-0775-4 +Friederike Moltmann,Presuppositions and Quantifier Domains.,2006,149,Synthese,1,db/journals/synthese/synthese149.html#Moltmann06a,https://doi.org/10.1007/s11229-004-6254-y +Denis Buehler,Incomplete understanding of complex numbers Girolamo Cardano: a case study in the acquisition of mathematical concepts.,2014,191,Synthese,17,db/journals/synthese/synthese191.html#Buehler14,https://doi.org/10.1007/s11229-014-0527-x +Lee McIntyre,Davidson And Social Scientific Laws.,1999,120,Synthese,3,db/journals/synthese/synthese120.html#McIntyre99,https://doi.org/10.1023/A:1005238313845 +D. M. Walsh,Bookkeeping or Metaphysics? The Units of Selection Debate.,2004,138,Synthese,3,db/journals/synthese/synthese138.html#Walsh04,https://doi.org/10.1023/B:SYNT.0000016426.73707.92 +Carlo Proietti,Fitch's paradox and ceteris paribus modalities.,2010,173,Synthese,1,db/journals/synthese/synthese173.html#ProiettiS10,https://doi.org/10.1007/s11229-009-9677-7 +Clark Glymour,Actual causation: a stone soup essay.,2010,175,Synthese,2,db/journals/synthese/synthese175.html#GlymourDGERSSTZ10,https://doi.org/10.1007/s11229-009-9497-9 +Anne Baril,Pragmatic encroachment in accounts of epistemic excellence.,2013,190,Synthese,17,db/journals/synthese/synthese190.html#Baril13,https://doi.org/10.1007/s11229-012-0234-4 +Hao Wang,Time in philosophy and in physics: From Kant and Einstein to Gödel.,1995,102,Synthese,2,db/journals/synthese/synthese102.html#Wang95,https://doi.org/10.1007/BF01089801 +Bryan C. Appley,Two new objections to explanationism.,2017,194,Synthese,8,db/journals/synthese/synthese194.html#AppleyS17,https://doi.org/10.1007/s11229-016-1093-1 +Arthur Buchsbaum,A logical expression of reasoning.,2007,154,Synthese,3,db/journals/synthese/synthese154.html#BuchsbaumPP07,https://doi.org/10.1007/s11229-006-9128-7 +Helen Beebee,Does Anything Hold the Universe Together?,2006,149,Synthese,3,db/journals/synthese/synthese149.html#Beebee06,https://doi.org/10.1007/s11229-005-0576-2 +Roman Frigg,Preface.,2011,180,Synthese,1,db/journals/synthese/synthese180.html#FriggHI11,https://doi.org/10.1007/s11229-009-9562-4 +Katarzyna Budzynska,Circularity in ethotic structures.,2013,190,Synthese,15,db/journals/synthese/synthese190.html#Budzynska13,https://doi.org/10.1007/s11229-012-0135-6 +Daniel Kostic,Mechanistic and topological explanations: an introduction.,2018,195,Synthese,1,db/journals/synthese/synthese195.html#Kostic18,https://doi.org/10.1007/s11229-016-1257-z +Duncan Pritchard,Anti-luck epistemology.,2007,158,Synthese,3,db/journals/synthese/synthese158.html#Pritchard07a,https://doi.org/10.1007/s11229-006-9039-7 +Bruce Raymond Long,Information is intrinsically semantic but alethically neutral.,2014,191,Synthese,14,db/journals/synthese/synthese191.html#Long14,https://doi.org/10.1007/s11229-014-0457-7 +Miriam Franchella,Like a bee on a windowpane: Heyting's reflections on solipsism.,1995,105,Synthese,2,db/journals/synthese/synthese105.html#Franchella95,https://doi.org/10.1007/BF01064219 +D. J. Bradley,No Doomsday Argument without Knowledge of Birth Rank: a Defense of Bostrom.,2005,144,Synthese,1,db/journals/synthese/synthese144.html#Bradley05,https://doi.org/10.1007/s11229-005-9131-4 +Matthew Tugby,The problem of retention.,2017,194,Synthese,6,db/journals/synthese/synthese194.html#Tugby17,https://doi.org/10.1007/s11229-016-1036-x +Yasha Rohwer,Lucky understanding without knowledge.,2014,191,Synthese,5,db/journals/synthese/synthese191.html#Rohwer14,https://doi.org/10.1007/s11229-013-0322-0 +Danielle Macbeth,Diagrammatic reasoning in Frege's Begriffsschrift.,2012,186,Synthese,1,db/journals/synthese/synthese186.html#Macbeth12,https://doi.org/10.1007/s11229-012-0068-0 +Steve Petersen,Utilitarian epistemology.,2013,190,Synthese,6,db/journals/synthese/synthese190.html#Petersen13,https://doi.org/10.1007/s11229-011-9887-7 +Jessica Carter,Handling mathematical objects: representations and context.,2013,190,Synthese,17,db/journals/synthese/synthese190.html#Carter13,https://doi.org/10.1007/s11229-012-0241-5 +Gregory R. Wheeler,Erratum to: Introduction.,2012,187,Synthese,2,db/journals/synthese/synthese187.html#Wheeler12a,https://doi.org/10.1007/s11229-012-0139-2 +Ioannis Votsis,Data meet theory: up close and inferentially personal.,2011,182,Synthese,1,db/journals/synthese/synthese182.html#Votsis11a,https://doi.org/10.1007/s11229-009-9614-9 +Wagner de Campos Sanz,On Dummett's verificationist justification procedure.,2016,193,Synthese,8,db/journals/synthese/synthese193.html#SanzO16,https://doi.org/10.1007/s11229-015-0865-3 +Christopher Cowie,In defence of instrumentalism about epistemic normativity.,2014,191,Synthese,16,db/journals/synthese/synthese191.html#Cowie14,https://doi.org/10.1007/s11229-014-0510-6 +J. Adam Carter,Meta-epistemic defeat.,2018,195,Synthese,7,db/journals/synthese/synthese195.html#Carter18,https://doi.org/10.1007/s11229-016-1187-9 +Janice L. Dowell,From Metaphysical to Substantive Naturalism: A Case Study.,2004,138,Synthese,2,db/journals/synthese/synthese138.html#Dowell04,https://doi.org/10.1023/B:SYNT.0000013235.88476.e3 +Erik J. Olsson,Engel vs. Rorty on truth.,2017,194,Synthese,5,db/journals/synthese/synthese194.html#Olsson17,https://doi.org/10.1007/s11229-015-0968-x +Helen De Cruz,Mathematical symbols as epistemic actions.,2013,190,Synthese,1,db/journals/synthese/synthese190.html#CruzS13,https://doi.org/10.1007/s11229-010-9837-9 +Rafal Urbaniak,Platonic thought experiments: how on earth?,2012,187,Synthese,2,db/journals/synthese/synthese187.html#Urbaniak12,https://doi.org/10.1007/s11229-011-0008-4 +Peter Olen,Was Sellars an error theorist?,2016,193,Synthese,7,db/journals/synthese/synthese193.html#OlenT16,https://doi.org/10.1007/s11229-015-0829-7 +Staffan Angere,The defeasible nature of coherentist justification.,2007,157,Synthese,3,db/journals/synthese/synthese157.html#Angere07,https://doi.org/10.1007/s11229-006-9058-4 +Ingvar Johansson,Hume's Surprise and the Logic of Belief Changes.,1998,117,Synthese,2,db/journals/synthese/synthese117.html#Johansson98,https://doi.org/10.1023/A:1005179004942 +Armin W. Schulz,Condorcet and communitarianism: Boghossian's fallacious inference.,2009,166,Synthese,1,db/journals/synthese/synthese166.html#Schulz09,https://doi.org/10.1007/s11229-007-9257-7 +Milena Ivanova,Poincaré's aesthetics of science.,2017,194,Synthese,7,db/journals/synthese/synthese194.html#Ivanova17,https://doi.org/10.1007/s11229-016-1069-1 +J. Adam Carter,A new maneuver against the epistemic relativist.,2014,191,Synthese,8,db/journals/synthese/synthese191.html#CarterG14,https://doi.org/10.1007/s11229-013-0357-2 +Peter Brössel,How to resolve doxastic disagreement.,2014,191,Synthese,11,db/journals/synthese/synthese191.html#BrosselE14,https://doi.org/10.1007/s11229-014-0431-4 +Nicholas DiBella,The qualitative paradox of non-conglomerability.,2018,195,Synthese,3,db/journals/synthese/synthese195.html#DiBella18,https://doi.org/10.1007/s11229-016-1261-3 +Steve Awodey,Carnap and the invariance of logical truth.,2017,194,Synthese,1,db/journals/synthese/synthese194.html#Awodey17,https://doi.org/10.1007/s11229-015-0781-6 +Mario Alai,Resisting the historical objections to realism: Is Doppelt's a viable solution?,2017,194,Synthese,9,db/journals/synthese/synthese194.html#Alai17,https://doi.org/10.1007/s11229-016-1087-z +Scott F. Aikin,Meta-epistemology and the varieties of epistemic infinitism.,2008,163,Synthese,2,db/journals/synthese/synthese163.html#Aikin08,https://doi.org/10.1007/s11229-007-9196-3 +David Ellerman,Quantum mechanics over sets: a pedagogical model with non-commutative finite probability theory as its quantum probability calculus.,2017,194,Synthese,12,db/journals/synthese/synthese194.html#Ellerman17,https://doi.org/10.1007/s11229-016-1175-0 +Manuel Pérez Otero,Purposes of reasoning and (a new vindication of) Moore's proof of an external world.,2013,190,Synthese,18,db/journals/synthese/synthese190.html#Otero13,https://doi.org/10.1007/s11229-013-0256-6 +Daniel Andler,Federalism in science - complementarity vs perspectivism: Reply to Harré.,2006,151,Synthese,3,db/journals/synthese/synthese151.html#Andler06,https://doi.org/10.1007/s11229-006-9022-3 +Mirja Helena Hartimo,Towards completeness: Husserl on theories of manifolds 1890-1901.,2007,156,Synthese,2,db/journals/synthese/synthese156.html#Hartimo07,https://doi.org/10.1007/s11229-006-0008-y +James Hawthorne,For whom the Bell arguments toll.,1995,102,Synthese,1,db/journals/synthese/synthese102.html#HawthorneS95,https://doi.org/10.1007/BF01063901 +Peter Vickers,Theory flexibility and inconsistency in science.,2014,191,Synthese,13,db/journals/synthese/synthese191.html#Vickers14,https://doi.org/10.1007/s11229-014-0464-8 +Jacob Busch,Can the new indispensability argument be saved from Euclidean rescues?,2012,187,Synthese,2,db/journals/synthese/synthese187.html#Busch12,https://doi.org/10.1007/s11229-010-9848-6 +Eric Pacuit,The Logic of Knowledge Based Obligation.,2006,149,Synthese,2,db/journals/synthese/synthese149.html#PacuitPC06,https://doi.org/10.1007/s11229-005-3877-6 +Thomas E. Uebel,Otto Neurath's idealist inheritance.,1995,103,Synthese,1,db/journals/synthese/synthese103.html#Uebel95,https://doi.org/10.1007/BF01063719 +Johan Modée,Observation Sentences And Joint Attention.,2000,124,Synthese,2,db/journals/synthese/synthese124.html#Modee00,https://doi.org/10.1023/A:1005241707530 +Gabriel Catren,On the notions of indiscernibility and indeterminacy in the light of the Galois-Grothendieck theory.,2014,191,Synthese,18,db/journals/synthese/synthese191.html#CatrenP14,https://doi.org/10.1007/s11229-014-0528-9 +Maria Serban,The scope and limits of a mechanistic view of computational explanation.,2015,192,Synthese,10,db/journals/synthese/synthese192.html#Serban15,https://doi.org/10.1007/s11229-015-0709-1 +Sanford C. Goldberg,The Psychology and Epistemology of Self-Knowledge.,1999,118,Synthese,2,db/journals/synthese/synthese118.html#Goldberg99,https://doi.org/10.1023/A:1005110319056 +Arthur Jaffe,Proof and the Evolution of Mathematics.,1997,111,Synthese,2,db/journals/synthese/synthese111.html#Jaffe97,https://doi.org/10.1023/A%3A1004903010713 +Jaegwon Kim,Emergence: Core ideas and issues.,2006,151,Synthese,3,db/journals/synthese/synthese151.html#Kim06,https://doi.org/10.1007/s11229-006-9025-0 +Jeffrey Ketland,Yablo's Paradox and ω*-Inconsistency.,2005,145,Synthese,3,db/journals/synthese/synthese145.html#Ketland05,https://doi.org/10.1007/s11229-005-6201-6 +Wayne C. Myrvold,Epistemic values and the value of learning.,2012,187,Synthese,2,db/journals/synthese/synthese187.html#Myrvold12,https://doi.org/10.1007/s11229-010-9860-x +Arnon Levy,The unity of neuroscience: a flat view.,2016,193,Synthese,12,db/journals/synthese/synthese193.html#Levy16,https://doi.org/10.1007/s11229-016-1256-0 +Jody Azzouni,A new characterization of scientific theories.,2014,191,Synthese,13,db/journals/synthese/synthese191.html#Azzouni14,https://doi.org/10.1007/s11229-014-0469-3 +Dag Prawitz,Meaning Approached Via Proofs.,2006,148,Synthese,3,db/journals/synthese/synthese148.html#Prawitz06,https://doi.org/10.1007/s11229-004-6295-2 +Steve Fuller,Deviant interdisciplinarity as philosophical practice: prolegomena to deep intellectual history.,2013,190,Synthese,11,db/journals/synthese/synthese190.html#Fuller13,https://doi.org/10.1007/s11229-012-0208-6 +Raymond Dacey,Introduction.,1994,100,Synthese,3,db/journals/synthese/synthese100.html#Dacey94,https://doi.org/10.1007/BF01063906 +Eugen Fischer,Philosophical pictures and secondary qualities.,2009,171,Synthese,1,db/journals/synthese/synthese171.html#Fischer09,https://doi.org/10.1007/s11229-008-9380-0 +Ema Sullivan-Bissett,Malfunction defended.,2017,194,Synthese,7,db/journals/synthese/synthese194.html#Sullivan-Bissett17,https://doi.org/10.1007/s11229-016-1062-8 +Gualtiero Piccinini,Integrating psychology and neuroscience: functional analyses as mechanism sketches.,2011,183,Synthese,3,db/journals/synthese/synthese183.html#PiccininiC11,https://doi.org/10.1007/s11229-011-9898-4 +Eros Corazza,Temporal Indexicals And Temporal Terms.,2002,130,Synthese,3,db/journals/synthese/synthese130.html#Corazza02,https://doi.org/10.1023/A:1014891411735 +Jonathan Tallant,Optimus prime: paraphrasing prime number talk.,2013,190,Synthese,12,db/journals/synthese/synthese190.html#Tallant13,https://doi.org/10.1007/s11229-011-9959-8 +P. Bartha,Taking Stock of Infinite Value: Pascal's Wager and Relative Utilities.,2007,154,Synthese,1,db/journals/synthese/synthese154.html#Bartha07,https://doi.org/10.1007/s11229-005-8006-z +Kelly C. Smith,Foiling the Black Knight.,2011,178,Synthese,2,db/journals/synthese/synthese178.html#Smith11,https://doi.org/10.1007/s11229-009-9545-5 +Chase Wrenn,Practical success and the nature of truth.,2011,181,Synthese,3,db/journals/synthese/synthese181.html#Wrenn11,https://doi.org/10.1007/s11229-010-9733-3 +Alexander Bird,Explanation and Laws.,1999,120,Synthese,1,db/journals/synthese/synthese120.html#Bird99,https://doi.org/10.1023/A:1005294018295 +William S. Neilson,Probability Transformations In The Study Of Behavior Toward Risk.,2003,135,Synthese,2,db/journals/synthese/synthese135.html#Neilson03,https://doi.org/10.1023/A:1023408906789 +Ingo Brigandt,The epistemic goal of a concept: accounting for the rationality of semantic change and variation.,2010,177,Synthese,1,db/journals/synthese/synthese177.html#Brigandt10,https://doi.org/10.1007/s11229-009-9623-8 +J. Acacio de Barros,Realism in energy transition processes: an example from Bohmian quantum mechanics.,2007,154,Synthese,3,db/journals/synthese/synthese154.html#BarrosMP07,https://doi.org/10.1007/s11229-006-9123-z +Jean-Pierre Marquis,Mathematical forms and forms of mathematics: leaving the shores of extensional mathematics.,2013,190,Synthese,12,db/journals/synthese/synthese190.html#Marquis13,https://doi.org/10.1007/s11229-011-9962-0 +Michael Rescorla,Predication and cartographic representation.,2009,169,Synthese,1,db/journals/synthese/synthese169.html#Rescorla09,https://doi.org/10.1007/s11229-008-9343-5 +Jack Zupco,What is the Science of the Soul? A Case Study in the Evolution of Late Medieval Natural Philosophy.,1997,110,Synthese,2,db/journals/synthese/synthese110.html#Zupco97,https://doi.org/10.1023/A%3A1004969404080 +Alan Hájek,What Conditional Probability Could Not Be.,2003,137,Synthese,3,db/journals/synthese/synthese137.html#Hajek03,https://doi.org/10.1023/B:SYNT.0000004904.91112.16 +Joshua C. Thurow,The defeater version of Benacerraf's problem for a priori knowledge.,2013,190,Synthese,9,db/journals/synthese/synthese190.html#Thurow13,https://doi.org/10.1007/s11229-011-9894-8 +Oron Shagrir,Why we view the brain as a computer.,2006,153,Synthese,3,db/journals/synthese/synthese153.html#Shagrir06,https://doi.org/10.1007/s11229-006-9099-8 +James Doyle,'Spurious egocentricity' and the first person.,2016,193,Synthese,11,db/journals/synthese/synthese193.html#Doyle16,https://doi.org/10.1007/s11229-015-0948-1 +Rafal Urbaniak,Plural quantifiers: a modal interpretation.,2014,191,Synthese,7,db/journals/synthese/synthese191.html#Urbaniak14,https://doi.org/10.1007/s11229-013-0354-5 +Rogério Passos Severo,Plausible insofar as it is intelligible: Quine on underdetermination.,2008,161,Synthese,1,db/journals/synthese/synthese161.html#Severo08,https://doi.org/10.1007/s11229-006-9150-9 +David Ellerman,Counting distinctions: on the conceptual foundations of Shannon's information theory.,2009,168,Synthese,1,db/journals/synthese/synthese168.html#Ellerman09,https://doi.org/10.1007/s11229-008-9333-7 +Vann McGee,Tarski's Staggering Existential Assumptions.,2005,142,Synthese,3,db/journals/synthese/synthese142.html#McGee05,https://doi.org/10.1007/s11229-005-3721-z +John MacFarlane,Double vision: two questions about the neo-Fregean program.,2009,170,Synthese,3,db/journals/synthese/synthese170.html#MacFarlane09a,https://doi.org/10.1007/s11229-007-9260-z +Alvin M. Saperstein,Mathematical modeling of the effects of 'capability' and 'intent' on the stability of a competitive international system.,1994,100,Synthese,3,db/journals/synthese/synthese100.html#Saperstein94,https://doi.org/10.1007/BF01063908 +Lane DesAutels,Toward a propensity interpretation of stochastic mechanism for the life sciences.,2015,192,Synthese,9,db/journals/synthese/synthese192.html#DesAutels15,https://doi.org/10.1007/s11229-015-0694-4 +Luc Bovens,Democratic Answers to Complex Questions - An Epistemic Perspective.,2006,150,Synthese,1,db/journals/synthese/synthese150.html#BovensR06,https://doi.org/10.1007/s11229-006-0005-1 +Mark Balaguer,Why there are no good arguments for any interesting version of determinism.,2009,168,Synthese,1,db/journals/synthese/synthese168.html#Balaguer09,https://doi.org/10.1007/s11229-009-9459-2 +Dorothy Edgington,Possible knowledge of unknown truth.,2010,173,Synthese,1,db/journals/synthese/synthese173.html#Edgington10,https://doi.org/10.1007/s11229-009-9675-9 +Jan Sprenger,Science without (parametric) models: the case of bootstrap resampling.,2011,180,Synthese,1,db/journals/synthese/synthese180.html#Sprenger11,https://doi.org/10.1007/s11229-009-9567-z +Terry Horgan,Synchronic Bayesian updating and the Sleeping Beauty problem: reply to Pust.,2008,160,Synthese,2,db/journals/synthese/synthese160.html#Horgan08,https://doi.org/10.1007/s11229-006-9121-1 +Jochen Apel,On the meaning and the epistemological relevance of the notion of a scientific phenomenon.,2011,182,Synthese,1,db/journals/synthese/synthese182.html#Apel11,https://doi.org/10.1007/s11229-009-9620-y +Kevin McCain,Explanationist aid for phenomenal conservatism.,2018,195,Synthese,7,db/journals/synthese/synthese195.html#McCain18,https://doi.org/10.1007/s11229-016-1064-6 +Alberto Zanardo,Moment/History Duality in Prior's Logics of Branching-Time.,2006,150,Synthese,3,db/journals/synthese/synthese150.html#Zanardo06,https://doi.org/10.1007/s11229-005-5519-4 +Adonai S. Sant'Anna,Some problems concerning language and physics.,2007,154,Synthese,3,db/journals/synthese/synthese154.html#SantAnnaG07,https://doi.org/10.1007/s11229-006-9129-6 +Michael Rescorla,An interventionist approach to psychological explanation.,2018,195,Synthese,5,db/journals/synthese/synthese195.html#Rescorla18,https://doi.org/10.1007/s11229-017-1553-2 +Markos Valaris,What reasoning might be.,2017,194,Synthese,6,db/journals/synthese/synthese194.html#Valaris17,https://doi.org/10.1007/s11229-016-1034-z +Jessica McGilvray,Constant colors in the head.,1994,100,Synthese,2,db/journals/synthese/synthese100.html#McGilvray94,https://doi.org/10.1007/BF01063810 +Stephen Hetherington,Sceptical possibilities? No worries.,2009,168,Synthese,1,db/journals/synthese/synthese168.html#Hetherington09,https://doi.org/10.1007/s11229-008-9332-8 +Mark Bridger,On The Dynamics Of Perez Lauraudogoitia's Supertask.,1999,119,Synthese,3,db/journals/synthese/synthese119.html#BridgerA99,https://doi.org/10.1023/A:1005222924655 +Michael Poznic,Thin versus thick accounts of scientific representation.,2018,195,Synthese,8,db/journals/synthese/synthese195.html#Poznic18,https://doi.org/10.1007/s11229-017-1374-3 +Sándor Vályi,On the axiomatizability of some first-order spatio-temporal theories.,2015,192,Synthese,7,db/journals/synthese/synthese192.html#Valyi15,https://doi.org/10.1007/s11229-013-0365-2 +Kenneth Boyd,Pragmatic encroachment and epistemically responsible action.,2016,193,Synthese,9,db/journals/synthese/synthese193.html#Boyd16,https://doi.org/10.1007/s11229-015-0878-y +David H. Glass,Inference to the best explanation: does it track truth?,2012,185,Synthese,3,db/journals/synthese/synthese185.html#Glass12,https://doi.org/10.1007/s11229-010-9829-9 +Lilli Alanen,Reconsidering Descartes's notion of the mind-body union.,1996,106,Synthese,1,db/journals/synthese/synthese106.html#Alanen96,https://doi.org/10.1007/BF00413611 +Mathieu Beirlaen,A conditional logic for abduction.,2014,191,Synthese,15,db/journals/synthese/synthese191.html#BeirlaenA14,https://doi.org/10.1007/s11229-014-0496-0 +Luciano Floridi,Introduction.,2009,167,Synthese,2,db/journals/synthese/synthese167.html#FloridiS09,https://doi.org/10.1007/s11229-009-9462-7 +Diego E. Machuca,A neo-Pyrrhonian response to the disagreeing about disagreement argument.,2017,194,Synthese,5,db/journals/synthese/synthese194.html#Machuca17,https://doi.org/10.1007/s11229-015-1012-x +Francisco A. Doria,Informal versus formal mathematics.,2007,154,Synthese,3,db/journals/synthese/synthese154.html#Doria07,https://doi.org/10.1007/s11229-006-9126-9 +Louis M. Guenin,The Set Theoretic Ambit Of Arrow's Theorem.,2001,126,Synthese,3,db/journals/synthese/synthese126.html#Guenin01,https://doi.org/10.1023/A:1005255924462 +Bence Nanay,Replication without replicators.,2011,179,Synthese,3,db/journals/synthese/synthese179.html#Nanay11,https://doi.org/10.1007/s11229-009-9702-x +Daniel Listwa,The Faulty Signal Problem: counterfactual asymmetries in causal decision theory and rational deliberation.,2018,195,Synthese,6,db/journals/synthese/synthese195.html#Listwa18,https://doi.org/10.1007/s11229-017-1348-5 +Carla Fehr,Socially relevant philosophy of science: an introduction.,2010,177,Synthese,3,db/journals/synthese/synthese177.html#FehrP10,https://doi.org/10.1007/s11229-010-9855-7 +Leo K. C. Cheung,The Proofs Of The Grundgedanke In Wittgenstein's Tractatus.,1999,120,Synthese,3,db/journals/synthese/synthese120.html#Cheung99,https://doi.org/10.1023/A:1005209925004 +Richard Feist,Weyl's Appropriation of Husserl's and Poincaré's Thought.,2002,132,Synthese,3,db/journals/synthese/synthese132.html#Feist02,https://doi.org/10.1023/A:1020370823738 +Brendan Larvor,How to think about informal proofs.,2012,187,Synthese,2,db/journals/synthese/synthese187.html#Larvor12,https://doi.org/10.1007/s11229-011-0007-5 +Yuri Balashov,Zero-Value Physical Quantities.,1999,119,Synthese,3,db/journals/synthese/synthese119.html#Balashov99,https://doi.org/10.1023/A:1005177016330 +Patrice Philie,Entitlement as a response to I-II-III scepticism.,2009,171,Synthese,3,db/journals/synthese/synthese171.html#Philie09,https://doi.org/10.1007/s11229-008-9327-5 +Regina E. Fabry,Betwixt and between: the enculturated predictive processing approach to cognition.,2018,195,Synthese,6,db/journals/synthese/synthese195.html#Fabry18,https://doi.org/10.1007/s11229-017-1334-y +Josh Hunt,Indispensability and the problem of compatible explanations - A reply to 'Should scientific realists be platonists?'.,2016,193,Synthese,2,db/journals/synthese/synthese193.html#Hunt16,https://doi.org/10.1007/s11229-015-0667-7 +Max Kistler,Reduction and emergence in the physical sciences: Reply to Rueger.,2006,151,Synthese,3,db/journals/synthese/synthese151.html#Kistler06a,https://doi.org/10.1007/s11229-006-9028-x +Stefan Petkov,Explanatory unification and conceptualization.,2015,192,Synthese,11,db/journals/synthese/synthese192.html#Petkov15,https://doi.org/10.1007/s11229-015-0716-2 +Mark Staples,Critical rationalism and engineering: ontology.,2014,191,Synthese,10,db/journals/synthese/synthese191.html#Staples14,https://doi.org/10.1007/s11229-014-0396-3 +Frederik Stjernfelt,Dicisigns - Peirce's semiotic doctrine of propositions.,2015,192,Synthese,4,db/journals/synthese/synthese192.html#Stjernfelt15,https://doi.org/10.1007/s11229-014-0406-5 +Elliott Sober,Reichenbach's cubical universe and the problem of the external world.,2011,181,Synthese,1,db/journals/synthese/synthese181.html#Sober11,https://doi.org/10.1007/s11229-009-9593-x +Martin Montminy,Two contextualist fallacies.,2010,173,Synthese,3,db/journals/synthese/synthese173.html#Montminy10,https://doi.org/10.1007/s11229-008-9426-3 +,Announcement.,1996,109,Synthese,2,db/journals/synthese/synthese109.html#X96c,https://doi.org/10.1007/BF00413771 +Finnur Dellsén,Realism and the absence of rivals.,2017,194,Synthese,7,db/journals/synthese/synthese194.html#Dellsen17,https://doi.org/10.1007/s11229-016-1059-3 +Daniel A. Wilkenfeld,Functional explaining: a new approach to the philosophy of explanation.,2014,191,Synthese,14,db/journals/synthese/synthese191.html#Wilkenfeld14,https://doi.org/10.1007/s11229-014-0452-z +Rafael De Clercq,On some putative graph-theoretic counterexamples to the Principle of the Identity of Indiscernibles.,2012,187,Synthese,2,db/journals/synthese/synthese187.html#Clercq12,https://doi.org/10.1007/s11229-010-9867-3 +Robert T. Pennock,Can't philosophers tell the difference between science and religion?: Demarcation revisited.,2011,178,Synthese,2,db/journals/synthese/synthese178.html#Pennock11,https://doi.org/10.1007/s11229-009-9547-3 +Steven French,Keeping quiet on the ontology of models.,2010,172,Synthese,2,db/journals/synthese/synthese172.html#French10,https://doi.org/10.1007/s11229-009-9504-1 +Friederike Moltmann,Two kinds of first-person-oriented content.,2012,184,Synthese,2,db/journals/synthese/synthese184.html#Moltmann12,https://doi.org/10.1007/s11229-010-9730-6 +Gregor Betz,Justifying inference to the best explanation as a practical meta-syllogism on dialectical structures.,2013,190,Synthese,16,db/journals/synthese/synthese190.html#Betz13,https://doi.org/10.1007/s11229-012-0210-z +Silvia De Bianchi,Explanation and the dimensionality of space - Kant's argument revisited.,2015,192,Synthese,1,db/journals/synthese/synthese192.html#BianchiW15,https://doi.org/10.1007/s11229-014-0568-1 +Victor Rodych,Wittgenstein on Irrationals and Algorithmic Decidability.,1999,118,Synthese,2,db/journals/synthese/synthese118.html#Rodych99,https://doi.org/10.1023/A:1005191706419 +Alexandru Baltag,The dynamic turn in quantum logic.,2012,186,Synthese,3,db/journals/synthese/synthese186.html#BaltagS12,https://doi.org/10.1007/s11229-011-9915-7 +James R. Beebe,Do bad people know more? Interactions between attributions of knowledge and blame.,2016,193,Synthese,8,db/journals/synthese/synthese193.html#Beebe16,https://doi.org/10.1007/s11229-015-0872-4 +Klemens Kappel,Believing on trust.,2014,191,Synthese,9,db/journals/synthese/synthese191.html#Kappel14,https://doi.org/10.1007/s11229-013-0376-z +J. Finkelstein,Space-Time Counterfactuals.,1999,119,Synthese,3,db/journals/synthese/synthese119.html#Finkelstein99,https://doi.org/10.1023/A:1005286229775 +Wiebe van der Hoek,Editorial.,2004,139,Synthese,2,db/journals/synthese/synthese139.html#Hoek04,https://doi.org/10.1023/B:SYNT.0000024924.26800.e3 +Johan van Benthem,The information in intuitionistic logic.,2009,167,Synthese,2,db/journals/synthese/synthese167.html#Benthem09,https://doi.org/10.1007/s11229-008-9408-5 +Andreas Bartels,Why metrical properties are not powers.,2013,190,Synthese,12,db/journals/synthese/synthese190.html#Bartels13,https://doi.org/10.1007/s11229-011-9951-3 +Boyd Millar,Peacocke's trees.,2010,174,Synthese,3,db/journals/synthese/synthese174.html#Millar10,https://doi.org/10.1007/s11229-009-9465-4 +Jordan Stein,Tharp's theorems of metaphysics and the notion of necessary truth.,2017,194,Synthese,4,db/journals/synthese/synthese194.html#Stein17,https://doi.org/10.1007/s11229-015-0987-7 +Mark L. Taper,Model structure adequacy analysis: selecting models on the basis of their ability to answer scientific questions.,2008,163,Synthese,3,db/journals/synthese/synthese163.html#TaperSS08,https://doi.org/10.1007/s11229-007-9299-x +Andrea Kruse,"Introduction to the special issue ""Doxastic Agency and Epistemic Responsibility"".",2017,194,Synthese,8,db/journals/synthese/synthese194.html#KruseW17,https://doi.org/10.1007/s11229-016-1153-6 +Lynn Hankinson Nelson,A feminist naturalized philosophy of science.,1995,104,Synthese,3,db/journals/synthese/synthese104.html#Nelson95a,https://doi.org/10.1007/BF01064507 +Giacomo Bonanno,A Characterization of von Neumann Games in Terms of Memory.,2004,139,Synthese,2,db/journals/synthese/synthese139.html#Bonanno04,https://doi.org/10.1023/B:SYNT.0000024905.25386.3d +Rockney Jacobsen,Self-Quotation and Self-Knowledge.,1997,110,Synthese,3,db/journals/synthese/synthese110.html#Jacobsen97,https://doi.org/10.1023/A%3A1004905327777 +Anouk Barberousse,Computer simulations as experiments.,2009,169,Synthese,3,db/journals/synthese/synthese169.html#BarberousseFI09,https://doi.org/10.1007/s11229-008-9430-7 +John P. Burgess,On a derivation of the necessity of identity.,2014,191,Synthese,7,db/journals/synthese/synthese191.html#Burgess14,https://doi.org/10.1007/s11229-013-0351-8 +Denis Buehler,The central executive system.,2018,195,Synthese,5,db/journals/synthese/synthese195.html#Buehler18,https://doi.org/10.1007/s11229-017-1589-3 +Benjamin Schnieder,On what we can ensure.,2008,162,Synthese,1,db/journals/synthese/synthese162.html#Schnieder08,https://doi.org/10.1007/s11229-007-9175-8 +Stephan Krämer,Implicit commitment in theory choice.,2014,191,Synthese,10,db/journals/synthese/synthese191.html#Kramer14,https://doi.org/10.1007/s11229-013-0388-8 +Ilpo Halonen,Unification - It's Magnificent But Is It Explanation?,1999,120,Synthese,1,db/journals/synthese/synthese120.html#HalonenH99,https://doi.org/10.1023/A:1005202403274 +Daniel Guevara,"Rebutting formally valid counterexamples to the Humean ""is-ought"" dictum.",2008,164,Synthese,1,db/journals/synthese/synthese164.html#Guevara08,https://doi.org/10.1007/s11229-007-9215-4 +Eugen Fischer,Bogus Mystery about Linguistic Competence.,2003,135,Synthese,1,db/journals/synthese/synthese135.html#Fischer03,https://doi.org/10.1023/A:1022945916989 +T. L. Short,Review essay.,1996,106,Synthese,3,db/journals/synthese/synthese106.html#Short96,https://doi.org/10.1007/BF00413593 +Andrew W. Howat,Constituting assertion: a pragmatist critique of Horwich's 'Truth'.,2018,195,Synthese,3,db/journals/synthese/synthese195.html#Howat18,https://doi.org/10.1007/s11229-016-1196-8 +Dermot Moran,Hilary Putnam And Immanuel Kant: Two 'Internal Realists'?,2000,123,Synthese,1,db/journals/synthese/synthese123.html#Moran00,https://doi.org/10.1023/A:1005273927958 +Julien Boyer,Erratum to: Between proof and truth.,2012,187,Synthese,3,db/journals/synthese/synthese187.html#BoyerS12a,https://doi.org/10.1007/s11229-011-0043-1 +Stephen Steward,Ya shouldn'ta couldn'ta wouldn'ta.,2015,192,Synthese,6,db/journals/synthese/synthese192.html#Steward15,https://doi.org/10.1007/s11229-015-0663-y +Asbjørn Steglich-Petersen,Luck as an epistemic notion.,2010,176,Synthese,3,db/journals/synthese/synthese176.html#Steglich-Petersen10,https://doi.org/10.1007/s11229-009-9569-x +Reinhard Kahle,A Proof-theoretic View of Necessity.,2006,148,Synthese,3,db/journals/synthese/synthese148.html#Kahle06,https://doi.org/10.1007/s11229-004-6293-4 +Zalán Gyenis,Conditioning using conditional expectations: the Borel-Kolmogorov Paradox.,2017,194,Synthese,7,db/journals/synthese/synthese194.html#GyenisHR17,https://doi.org/10.1007/s11229-016-1070-8 +Paul Livingston,Husserl and Schlick on the Logical Form of Experience.,2002,132,Synthese,3,db/journals/synthese/synthese132.html#Livingston02,https://doi.org/10.1023/A:1020378731241 +Dan López de Sa,Lewis vs Lewis on the problem of the many.,2014,191,Synthese,6,db/journals/synthese/synthese191.html#Sa14,https://doi.org/10.1007/s11229-013-0314-0 +Per F. V. Hasle,The problem of predestination: as a prelude to A. N. Prior's tense logic.,2012,188,Synthese,3,db/journals/synthese/synthese188.html#Hasle12,https://doi.org/10.1007/s11229-011-9942-4 +Jaakko Hintikka,Editorial.,1997,112,Synthese,1,db/journals/synthese/synthese112.html#Hintikka97c,https://doi.org/10.1023/A%3A1004972610232 +Daniel Asher Krasner,Smith on Indexicals.,2006,153,Synthese,1,db/journals/synthese/synthese153.html#Krasner06,https://doi.org/10.1007/s11229-005-2724-0 +Christopher Hitchcock,The role of contrast in causal and explanatory claims.,1996,107,Synthese,3,db/journals/synthese/synthese107.html#Hitchcock96,https://doi.org/10.1007/BF00413843 +Paul Ricoeur,The crisis of the Cogito.,1996,106,Synthese,1,db/journals/synthese/synthese106.html#Ricoeur96,https://doi.org/10.1007/BF00413614 +Chris Ovenden,Guidance control and the anti-akrasia chip.,2018,195,Synthese,5,db/journals/synthese/synthese195.html#Ovenden18,https://doi.org/10.1007/s11229-017-1312-4 +Osvaldo Pessoa,Can the Decoherence Approach Help to Solve the Measurement Problem?,1997,113,Synthese,3,db/journals/synthese/synthese113.html#Pessoa97,https://doi.org/10.1023/A:1004994303863 +Glen Hoffmann,Two kinds of a priori infallibility.,2011,181,Synthese,2,db/journals/synthese/synthese181.html#Hoffmann11,https://doi.org/10.1007/s11229-010-9800-9 +Martin L. Jönsson,Shogenji's measure of justification and the inverse conjunction fallacy.,2013,190,Synthese,15,db/journals/synthese/synthese190.html#JonssonA13,https://doi.org/10.1007/s11229-012-0125-8 +Adriane A. Rini,The logic of Logic and the Basis of Ethics.,2016,193,Synthese,11,db/journals/synthese/synthese193.html#Rini16,https://doi.org/10.1007/s11229-015-0946-3 +Akeel Bilgrami,Introduction.,2004,140,Synthese,1,db/journals/synthese/synthese140.html#Bilgrami04,https://doi.org/10.1023/B:SYNT.0000029935.79805.bd +Elisabeth Pacherie,Intentional joint agency: shared intention lite.,2013,190,Synthese,10,db/journals/synthese/synthese190.html#Pacherie13,https://doi.org/10.1007/s11229-013-0263-7 +Marco LiCalzi,Bargaining over a common categorisation.,2016,193,Synthese,3,db/journals/synthese/synthese193.html#LiCalziM16,https://doi.org/10.1007/s11229-015-0790-5 +Newton C. A. da Costa,Suppes Predicates for Space-Time.,1997,112,Synthese,2,db/journals/synthese/synthese112.html#CostaBF97,https://doi.org/10.1023/A%3A1004984927979 +L. A. Paul,Truth conditions of Tensed Sentence Types.,1997,111,Synthese,1,db/journals/synthese/synthese111.html#Paul97,https://doi.org/10.1023/A%3A1004977524781 +Cynthia Macdonald,Externalism and first-person authority.,1995,104,Synthese,1,db/journals/synthese/synthese104.html#Macdonald95,https://doi.org/10.1007/BF01063677 +Jeroen Smid,'Identity' as a mereological term.,2017,194,Synthese,7,db/journals/synthese/synthese194.html#Smid17,https://doi.org/10.1007/s11229-016-1056-6 +Cristiano Castelfranchi,The role of beliefs in goal dynamics: prolegomena to a constructive theory of intentions.,2007,155,Synthese,2,db/journals/synthese/synthese155.html#CastelfranchiP07,https://doi.org/10.1007/s11229-006-9156-3 +Justin M. Dallmann,A normatively adequate credal reductivism.,2014,191,Synthese,10,db/journals/synthese/synthese191.html#Dallmann14,https://doi.org/10.1007/s11229-014-0402-9 +Zanja Yudell,Melia and Saatsi on structural realism.,2010,175,Synthese,2,db/journals/synthese/synthese175.html#Yudell10,https://doi.org/10.1007/s11229-009-9500-5 +Rodrigo Borges,On synchronic dogmatism.,2015,192,Synthese,11,db/journals/synthese/synthese192.html#Borges15,https://doi.org/10.1007/s11229-015-0715-3 +Aron Vallinder,Trust and the value of overconfidence: a Bayesian perspective on social network communication.,2014,191,Synthese,9,db/journals/synthese/synthese191.html#VallinderO14,https://doi.org/10.1007/s11229-013-0375-0 +Sander Beckers,A principled approach to defining actual causation.,2018,195,Synthese,2,db/journals/synthese/synthese195.html#BeckersV18,https://doi.org/10.1007/s11229-016-1247-1 +Raffaella De Rosa,A teleological account of Cartesian sensations?,2007,156,Synthese,2,db/journals/synthese/synthese156.html#Rosa07,https://doi.org/10.1007/s11229-006-0010-4 +John Forge,Reflections On Structuralism And Scientific Explanation.,2002,130,Synthese,1,db/journals/synthese/synthese130.html#Forge02,https://doi.org/10.1023/A:1013879326732 +Daniel Giberman,Moving parts: a new indexical treatment of context-shifting predication.,2016,193,Synthese,1,db/journals/synthese/synthese193.html#Giberman16,https://doi.org/10.1007/s11229-015-0747-8 +Richard Dawid,Many worlds: decoherent or incoherent?,2015,192,Synthese,5,db/journals/synthese/synthese192.html#DawidT15,https://doi.org/10.1007/s11229-014-0650-8 +Fred Adams,Towards closure on closure.,2012,188,Synthese,2,db/journals/synthese/synthese188.html#AdamsBF12,https://doi.org/10.1007/s11229-011-9922-8 +Grant Gillett,Humpty Dumpty and the night of the Triffids: Individualism and rule-following.,1995,105,Synthese,2,db/journals/synthese/synthese105.html#Gillett95,https://doi.org/10.1007/BF01064218 +Sungho Choi,The incompleteness of dispositional predicates.,2008,163,Synthese,2,db/journals/synthese/synthese163.html#Choi08,https://doi.org/10.1007/s11229-007-9195-4 +Nuel Belnap,Newtonian determinism to branching space-* indeterminism in two moves.,2012,188,Synthese,1,db/journals/synthese/synthese188.html#Belnap12,https://doi.org/10.1007/s11229-012-0063-5 +Hugues Bersini,Philosophical and scientific perspectives on emergence.,2012,185,Synthese,2,db/journals/synthese/synthese185.html#BersiniSLB12,https://doi.org/10.1007/s11229-010-9718-2 +Jan Degenaar,Representation-hunger reconsidered.,2014,191,Synthese,15,db/journals/synthese/synthese191.html#DegenaarM14,https://doi.org/10.1007/s11229-014-0484-4 +James A. Marcum,Experimental Series and the Justification of Temin's DNA Provirus Hypothesis.,2007,154,Synthese,2,db/journals/synthese/synthese154.html#Marcum07,https://doi.org/10.1007/s11229-005-1793-4 +Richard Dawid,A philosophical look at the discovery the Higgs boson.,2017,194,Synthese,2,db/journals/synthese/synthese194.html#Dawid17,https://doi.org/10.1007/s11229-016-1246-2 +André Fuhrmann,Erratum to: Knowability as potential knowledge.,2014,191,Synthese,7,db/journals/synthese/synthese191.html#Fuhrmann14a,https://doi.org/10.1007/s11229-013-0359-0 +Ben Caplan,A New Defence of the Modal Existence Requirement.,2007,154,Synthese,2,db/journals/synthese/synthese154.html#Caplan07,https://doi.org/10.1007/s11229-005-3491-7 +Arnold Chien,Scalar implicature and contrastive explanation.,2008,161,Synthese,1,db/journals/synthese/synthese161.html#Chien08,https://doi.org/10.1007/s11229-006-9153-6 +Eric M. Hammer,The truths of logic.,1996,109,Synthese,1,db/journals/synthese/synthese109.html#Hammer96,https://doi.org/10.1007/BF00413821 +K. Brad Wray,Collective Belief And Acceptance.,2001,129,Synthese,3,db/journals/synthese/synthese129.html#Wray01,https://doi.org/10.1023/A:1013148515033 +J. Van Brakel,Chemistry as the Science of the Transformation of Substances.,1997,111,Synthese,3,db/journals/synthese/synthese111.html#Brakel97,https://doi.org/10.1023/A%3A1004953915874 +Christian Damböck,Theory structuralism in a rigid framework.,2012,187,Synthese,2,db/journals/synthese/synthese187.html#Dambock12,https://doi.org/10.1007/s11229-011-0009-3 +Olivier Roy,Intentions and interactive transformations of decision problems.,2009,169,Synthese,2,db/journals/synthese/synthese169.html#Roy09,https://doi.org/10.1007/s11229-009-9553-5 +Kevin Nelson,How and how not to make predictions with temporal Copernicanism.,2009,166,Synthese,1,db/journals/synthese/synthese166.html#Nelson09,https://doi.org/10.1007/s11229-007-9259-5 +Nikolaj Nottelmann,The deontological conception of epistemic justification: a reassessment.,2013,190,Synthese,12,db/journals/synthese/synthese190.html#Nottelmann13,https://doi.org/10.1007/s11229-011-9967-8 +Jonathan Y. Tsou,Putnam's account of apriority and scientific change: its historical and contemporary interest.,2010,176,Synthese,3,db/journals/synthese/synthese176.html#Tsou10,https://doi.org/10.1007/s11229-009-9574-0 +Jon Pérez Laraudogoitia,Zeno and flow of information.,2013,190,Synthese,3,db/journals/synthese/synthese190.html#Laraudogoitia13,https://doi.org/10.1007/s11229-011-0037-z +John Woods,Hintikka on Aristotle's Fallacies.,1997,113,Synthese,2,db/journals/synthese/synthese113.html#WoodsH97,https://doi.org/10.1023/A:1005035327621 +Peter J. Graham,Conveying Information.,2000,123,Synthese,3,db/journals/synthese/synthese123.html#Graham00,https://doi.org/10.1023/A:1005162716568 +Will Fleisher,Virtuous distinctions - New distinctions for reliabilism and responsibilism.,2017,194,Synthese,8,db/journals/synthese/synthese194.html#Fleisher17,https://doi.org/10.1007/s11229-016-1084-2 +Jean-Yves Béziau,New trends in the foundations of science.,2007,154,Synthese,3,db/journals/synthese/synthese154.html#BeziauK07,https://doi.org/10.1007/s11229-006-9140-y +William J. Talbott,A non-probabilist principle of higher-order reasoning.,2016,193,Synthese,10,db/journals/synthese/synthese193.html#Talbott16,https://doi.org/10.1007/s11229-015-0922-y +Mary Tiles,Technology and the possibility of global environmental science.,2009,168,Synthese,3,db/journals/synthese/synthese168.html#Tiles09,https://doi.org/10.1007/s11229-008-9448-x +Alastair Wilson,Everettian quantum mechanics without branching time.,2012,188,Synthese,1,db/journals/synthese/synthese188.html#Wilson12,https://doi.org/10.1007/s11229-011-0048-9 +Barbara Forrest,The non-epistemology of intelligent design: its implications for public policy.,2011,178,Synthese,2,db/journals/synthese/synthese178.html#Forrest11,https://doi.org/10.1007/s11229-009-9539-3 +James W. McAllister,Methodological dilemmas and emotion in science.,2014,191,Synthese,13,db/journals/synthese/synthese191.html#McAllister14,https://doi.org/10.1007/s11229-014-0477-3 +Robert W. Batterman,Theories between theories: Asymptotic limiting intertheoretic relations.,1995,103,Synthese,2,db/journals/synthese/synthese103.html#Batterman95,https://doi.org/10.1007/BF01090047 +Bernhard Weiss,Minimalism deflated: independence without substance.,2009,171,Synthese,3,db/journals/synthese/synthese171.html#Weiss09,https://doi.org/10.1007/s11229-008-9324-8 +Dionysis Christias,Can Sellars' argument for scientific realism be used against his own scientia mensura principle?,2016,193,Synthese,9,db/journals/synthese/synthese193.html#Christias16,https://doi.org/10.1007/s11229-015-0890-2 +,Call for papers.,1996,106,Synthese,3,db/journals/synthese/synthese106.html#X96b,https://doi.org/10.1007/BF00413595 +David R. Morrow,Naturalized metaphilosophy.,2011,182,Synthese,2,db/journals/synthese/synthese182.html#MorrowS11,https://doi.org/10.1007/s11229-009-9662-1 +Fernando Ferreira,Amending Frege's Grundgesetze der Arithmetik.,2005,147,Synthese,1,db/journals/synthese/synthese147.html#Ferreira05,https://doi.org/10.1007/s11229-004-6204-8 +Husain Sarkar,Anti-Realism Against Methodology.,1998,116,Synthese,3,db/journals/synthese/synthese116.html#Sarkar98,https://doi.org/10.1023/A:1005070724228 +Michael J. Fitzgerald,The Medieval Roots of Reliabilist Epistemology: Albert of Saxony's View of Immediate Apprehension.,2003,136,Synthese,3,db/journals/synthese/synthese136.html#Fitzgerald03,https://doi.org/10.1023/A:1025117406833 +Bartosz Wieckowski,Constructive belief reports.,2015,192,Synthese,3,db/journals/synthese/synthese192.html#Wieckowski15,https://doi.org/10.1007/s11229-014-0540-0 +David Danks,Goal-dependence in (scientific) ontology.,2015,192,Synthese,11,db/journals/synthese/synthese192.html#Danks15,https://doi.org/10.1007/s11229-014-0649-1 +Henry Jackman,Convention and Language.,1998,117,Synthese,3,db/journals/synthese/synthese117.html#Jackman98,https://doi.org/10.1023/A:1005134521663 +Boudewijn de Bruin,Common knowledge of payoff uncertainty in games.,2008,163,Synthese,1,db/journals/synthese/synthese163.html#Bruin08,https://doi.org/10.1007/s11229-007-9275-5 +Giacomo Sillari,A Logical Framework for Convention.,2005,147,Synthese,2,db/journals/synthese/synthese147.html#Sillari05,https://doi.org/10.1007/s11229-005-1352-z +John Turri,Selfless assertions: some empirical evidence.,2015,192,Synthese,4,db/journals/synthese/synthese192.html#Turri15a,https://doi.org/10.1007/s11229-014-0621-0 +Tim Crane,Introduction.,2009,170,Synthese,2,db/journals/synthese/synthese170.html#CraneM09,https://doi.org/10.1007/s11229-009-9579-8 +Tomasz Placek,Indeterminism is a modal notion: branching space* and Earman's pruning.,2012,187,Synthese,2,db/journals/synthese/synthese187.html#PlacekB12,https://doi.org/10.1007/s11229-010-9846-8 +Krzysztof R. Apt,Paradoxes in social networks with multiple products.,2016,193,Synthese,3,db/journals/synthese/synthese193.html#AptMS16,https://doi.org/10.1007/s11229-015-0864-4 +Ludwig Fahrbach,Understanding Brute Facts.,2005,145,Synthese,3,db/journals/synthese/synthese145.html#Fahrbach05,https://doi.org/10.1007/s11229-005-6200-7 +Carol Rovane,What is an Agent?,2004,140,Synthese,1,db/journals/synthese/synthese140.html#Rovane04,https://doi.org/10.1023/B:SYNT.0000029948.05384.00 +Richard D. Benham,Chunk and permeate III: the Dirac delta function.,2014,191,Synthese,13,db/journals/synthese/synthese191.html#BenhamMP14,https://doi.org/10.1007/s11229-014-0473-7 +Christoph Kelp,Understanding phenomena.,2015,192,Synthese,12,db/journals/synthese/synthese192.html#Kelp15,https://doi.org/10.1007/s11229-014-0616-x +Ari Maunu,Leibnizian Soft Reduction of Extrinsic Denominations and Relations.,2004,139,Synthese,1,db/journals/synthese/synthese139.html#Maunu04,https://doi.org/10.1023/B:SYNT.0000021310.53938.ad +Michael H. G. Hoffmann,Erratum to: Philosophy of and as interdisciplinarity.,2013,190,Synthese,11,db/journals/synthese/synthese190.html#HoffmannSN13a,https://doi.org/10.1007/s11229-013-0266-4 +W. M. de Muynck,Measurement and the interpretation of quantum mechanics and relativity theory.,1995,102,Synthese,2,db/journals/synthese/synthese102.html#Muynck95,https://doi.org/10.1007/BF01089804 +Jan Heylen,Modal-Epistemic Arithmetic and the problem of quantifying in.,2013,190,Synthese,1,db/journals/synthese/synthese190.html#Heylen13,https://doi.org/10.1007/s11229-012-0154-3 +Craig Harrison,The three arrows of Zeno.,1996,107,Synthese,2,db/journals/synthese/synthese107.html#Harrison96,https://doi.org/10.1007/BF00413609 +Lee McIntyre,Editorial Introduction.,1997,111,Synthese,3,db/journals/synthese/synthese111.html#McIntyreS97,https://doi.org/10.1023/A%3A1004983130895 +Carl Pollard,Agnostic hyperintensional semantics.,2015,192,Synthese,3,db/journals/synthese/synthese192.html#Pollard15,https://doi.org/10.1007/s11229-013-0373-2 +Amos Nathan,Probability Dynamics.,2006,148,Synthese,1,db/journals/synthese/synthese148.html#Nathan06,https://doi.org/10.1007/s11229-005-0197-9 +Gila Sher,Is logic in the mind or in the world?,2011,181,Synthese,2,db/journals/synthese/synthese181.html#Sher11,https://doi.org/10.1007/s11229-010-9796-1 +Stathis Psillos,Choosing the realist framework.,2011,180,Synthese,2,db/journals/synthese/synthese180.html#Psillos11a,https://doi.org/10.1007/s11229-009-9606-9 +John Earman,Two Challenges to the Requirement of Substantive General Covariance.,2006,148,Synthese,2,db/journals/synthese/synthese148.html#Earman06,https://doi.org/10.1007/s11229-004-6239-x +Teddy Seidenfeld,Coherent choice functions under uncertainty.,2010,172,Synthese,1,db/journals/synthese/synthese172.html#SeidenfeldSK10,https://doi.org/10.1007/s11229-009-9470-7 +Toni Kannisto,Kant and Frege on existence.,2018,195,Synthese,8,db/journals/synthese/synthese195.html#Kannisto18,https://doi.org/10.1007/s11229-017-1372-5 +Brandon Towl,Laws and constrained kinds: a lesson from motor neuroscience.,2012,189,Synthese,3,db/journals/synthese/synthese189.html#Towl12,https://doi.org/10.1007/s11229-011-9950-4 +Gabriella Pigozzi,Belief merging and the discursive dilemma: an argument-based account to paradoxes of judgment aggregation.,2006,152,Synthese,2,db/journals/synthese/synthese152.html#Pigozzi06,https://doi.org/10.1007/s11229-006-9063-7 +Kristen Intemann,Are there limits to scientists' obligations to seek and engage dissenters?,2014,191,Synthese,12,db/journals/synthese/synthese191.html#IntemannM14,https://doi.org/10.1007/s11229-014-0414-5 +Anna-Mari Rusanen,On computational explanations.,2016,193,Synthese,12,db/journals/synthese/synthese193.html#RusanenL16,https://doi.org/10.1007/s11229-016-1101-5 +Wayne Riggs,Two problems of easy credit.,2009,169,Synthese,1,db/journals/synthese/synthese169.html#Riggs09,https://doi.org/10.1007/s11229-008-9342-6 +Jeanne Peijnenburg,A case of confusing probability and confirmation.,2012,184,Synthese,1,db/journals/synthese/synthese184.html#Peijnenburg12,https://doi.org/10.1007/s11229-009-9692-8 +Andy Clark,Doing without representing?,1994,101,Synthese,3,db/journals/synthese/synthese101.html#ClarkT94,https://doi.org/10.1007/BF01063896 +Steven D. Hales,Moral relativism and evolutionary psychology.,2009,166,Synthese,2,db/journals/synthese/synthese166.html#Hales09,https://doi.org/10.1007/s11229-007-9287-1 +Thomas Bartelborth,Explanatory Unification.,2002,130,Synthese,1,db/journals/synthese/synthese130.html#Bartelborth02,https://doi.org/10.1023/A:1013827209894 +Michael Blome-Tillmann,Knowledge and implicatures.,2013,190,Synthese,18,db/journals/synthese/synthese190.html#Blome-Tillmann13,https://doi.org/10.1007/s11229-013-0274-4 +Keith Butler,Representation and computation in a deflationary assessment of Connectionist cognitive science.,1995,104,Synthese,1,db/journals/synthese/synthese104.html#Butler95,https://doi.org/10.1007/BF01063676 +Aleta Quinn,Phylogenetic inference to the best explanation and the bad lot argument.,2016,193,Synthese,9,db/journals/synthese/synthese193.html#Quinn16,https://doi.org/10.1007/s11229-015-0908-9 +Kostas Gavroglu,Philosophical Issues in the History of Chemistry.,1997,111,Synthese,3,db/journals/synthese/synthese111.html#Gavroglu97,https://doi.org/10.1023/A%3A1004906132712 +F. A. Muller,Reflections on the revolution at Stanford.,2011,183,Synthese,1,db/journals/synthese/synthese183.html#Muller11a,https://doi.org/10.1007/s11229-009-9669-7 +Karin Verelst,Newton versus Leibniz: intransparency versus inconsistency.,2014,191,Synthese,13,db/journals/synthese/synthese191.html#Verelst14,https://doi.org/10.1007/s11229-014-0465-7 +Rodrigo Moro,On the nature of the conjunction fallacy.,2009,171,Synthese,1,db/journals/synthese/synthese171.html#Moro09,https://doi.org/10.1007/s11229-008-9377-8 +Igor Douven,Testing Inference To The Best Explanation.,2002,130,Synthese,3,db/journals/synthese/synthese130.html#Douven02,https://doi.org/10.1023/A:1014859910339 +Frederick Eberhardt,Green and grue causal variables.,2016,193,Synthese,4,db/journals/synthese/synthese193.html#Eberhardt16,https://doi.org/10.1007/s11229-015-0832-z +Bruno Whittle,Self-referential propositions.,2017,194,Synthese,12,db/journals/synthese/synthese194.html#Whittle17,https://doi.org/10.1007/s11229-016-1191-0 +Robert G. Hudson,Classical Physics and Early quantum Theory: a legitimate Case of Theoretical underdetermination.,1997,110,Synthese,2,db/journals/synthese/synthese110.html#Hudson97,https://doi.org/10.1023/A%3A1004933210125 +Scott Tanona,Decoherence and the Copenhagen cut.,2013,190,Synthese,16,db/journals/synthese/synthese190.html#Tanona13,https://doi.org/10.1007/s11229-012-0216-6 +Melinda Bonnie Fagan,Stem cells and systems models: clashing views of explanation.,2016,193,Synthese,3,db/journals/synthese/synthese193.html#Fagan16,https://doi.org/10.1007/s11229-015-0776-3 +Jennifer Mckitrick,Introduction.,2005,144,Synthese,3,db/journals/synthese/synthese144.html#Mckitrick05,https://doi.org/10.1007/s11229-005-5847-4 +Mike Dacey,Rethinking associations in psychology.,2016,193,Synthese,12,db/journals/synthese/synthese193.html#Dacey16,https://doi.org/10.1007/s11229-016-1167-0 +John Turri,Is knowledge justified true belief?,2012,184,Synthese,3,db/journals/synthese/synthese184.html#Turri12,https://doi.org/10.1007/s11229-010-9773-8 +Abrol Fairweather,Duhem-Quine virtue epistemology.,2012,187,Synthese,2,db/journals/synthese/synthese187.html#Fairweather12,https://doi.org/10.1007/s11229-010-9868-2 +A. Stokke,Intention-sensitive semantics.,2010,175,Synthese,3,db/journals/synthese/synthese175.html#Stokke10,https://doi.org/10.1007/s11229-009-9537-5 +B. H. Slater,Ramsey's Tests.,2004,141,Synthese,3,db/journals/synthese/synthese141.html#Slater04,https://doi.org/10.1023/B:SYNT.0000044995.88380.6a +Marya Schechtman,Diversity in unity: practical unity and personal boundaries.,2008,162,Synthese,3,db/journals/synthese/synthese162.html#Schechtman08,https://doi.org/10.1007/s11229-007-9247-9 +John Cantwell,Conditionals in causal decision theory.,2013,190,Synthese,4,db/journals/synthese/synthese190.html#Cantwell13,https://doi.org/10.1007/s11229-012-0197-5 +Michele Pasin,Ontological requirements for annotation and navigation of philosophical resources.,2011,182,Synthese,2,db/journals/synthese/synthese182.html#PasinM11,https://doi.org/10.1007/s11229-009-9660-3 +Marshall Abrams,Mechanistic probability.,2012,187,Synthese,2,db/journals/synthese/synthese187.html#Abrams12,https://doi.org/10.1007/s11229-010-9830-3 +Albert Casullo,Pollock and Sturgeon on defeaters.,2018,195,Synthese,7,db/journals/synthese/synthese195.html#Casullo18,https://doi.org/10.1007/s11229-016-1073-5 +Dorit Bar-On,Anti-realism and speaker knowledge.,1996,106,Synthese,2,db/journals/synthese/synthese106.html#Bar-On96,https://doi.org/10.1007/BF00413698 +Frederik Herzberg,The dialectics of infinitism and coherentism: inferential justification versus holism and coherence.,2014,191,Synthese,4,db/journals/synthese/synthese191.html#Herzberg14,https://doi.org/10.1007/s11229-013-0273-5 +Alexander R. Pruss,Infinitesimals are too small for countably infinite fair lotteries.,2014,191,Synthese,6,db/journals/synthese/synthese191.html#Pruss14,https://doi.org/10.1007/s11229-013-0307-z +Paul Weirich,The contributors.,2010,176,Synthese,1,db/journals/synthese/synthese176.html#Weirich10b,https://doi.org/10.1007/s11229-009-9480-5 +Sten Lindström,Introduction: The philosophy of logical consequence and inference.,2012,187,Synthese,3,db/journals/synthese/synthese187.html#LindstromPW12,https://doi.org/10.1007/s11229-012-0180-1 +David King,Is the human mind a Turing machine?,1996,108,Synthese,3,db/journals/synthese/synthese108.html#King96,https://doi.org/10.1007/BF00413695 +Stephanie Beardman,A Non-factualist defense of the Reflection principle.,2013,190,Synthese,15,db/journals/synthese/synthese190.html#Beardman13,https://doi.org/10.1007/s11229-012-0114-y +Antoine C. Dussault,A persistence enhancing propensity account of ecological function to explain ecosystem evolution.,2017,194,Synthese,4,db/journals/synthese/synthese194.html#DussaultB17,https://doi.org/10.1007/s11229-016-1065-5 +Fabrizio Cariani,Decision framing in judgment aggregation.,2008,163,Synthese,1,db/journals/synthese/synthese163.html#CarianiPS08,https://doi.org/10.1007/s11229-008-9306-x +Chris Fox,Type-theoretic logic with an operational account of intensionality.,2015,192,Synthese,3,db/journals/synthese/synthese192.html#FoxL15,https://doi.org/10.1007/s11229-013-0390-1 +Roberto Festa,For unto every one that hath shall be given. Matthew properties for incremental confirmation.,2012,184,Synthese,1,db/journals/synthese/synthese184.html#Festa12,https://doi.org/10.1007/s11229-009-9695-5 +John R. Davis,A Reconsideration of Britain as Commercial Hegemon in the Nineteenth Century.,1997,113,Synthese,2,db/journals/synthese/synthese113.html#Davis97,https://doi.org/10.1023/A:1004984710348 +Julian Dodd,Negative truths and truthmaker principles.,2007,156,Synthese,2,db/journals/synthese/synthese156.html#Dodd07,https://doi.org/10.1007/s11229-006-0007-z +Gennaro Chierchia,Clouds and blood. More on vagueness and the mass/count distinction.,2017,194,Synthese,7,db/journals/synthese/synthese194.html#Chierchia17,https://doi.org/10.1007/s11229-016-1063-7 +John Earman,Essential self-adjointness: implications for determinism and the classical-quantum correspondence.,2009,169,Synthese,1,db/journals/synthese/synthese169.html#Earman09,https://doi.org/10.1007/s11229-008-9341-7 +Paula Tavares,Mapping Culture and Compromised Art in the Era of Globalization.,2012,3,IJEP,1,db/journals/ijep/ijep3.html#TavaresFT12,https://doi.org/10.4018/jep.2012010104 +Shumin Su,Twitplomacy: Social Media as a New Platform for Development of Public Diplomacy.,2015,6,IJEP,1,db/journals/ijep/ijep6.html#SuX15,https://doi.org/10.4018/IJEP.2015010102 +Jonathan Bishop,Embodying Trust in the Electoral System: The Role of Delegated Transferable Voting for Increasing Voter Choice and Representation of Small Political Parties in the Digital Age.,2016,7,IJEP,2,db/journals/ijep/ijep7.html#BishopB16,https://doi.org/10.4018/IJEP.2016040103 +Christopher S. Leberknight,A Taxonomy of Censors and Anti-Censors: Part I-Impacts of Internet Censorship.,2012,3,IJEP,2,db/journals/ijep/ijep3.html#LeberknightCW12,https://doi.org/10.4018/jep.2012040104 +B. N. Neelima,Climate Change Information and Media: A Study Among Youth in India.,2018,9,IJEP,1,db/journals/ijep/ijep9.html#Neelima18,https://doi.org/10.4018/IJEP.2018010101 +Christopher S. Leberknight,A Taxonomy of Censors and Anti-Censors Part II: Anti-Censorship Technologies.,2012,3,IJEP,4,db/journals/ijep/ijep3.html#LeberknightCW12a,https://doi.org/10.4018/jep.2012100102 +Janne Berg,Political Participation in the Form of Online Petitions: A Comparison of Formal and Informal Petitioning.,2017,8,IJEP,1,db/journals/ijep/ijep8.html#Berg17,https://doi.org/10.4018/IJEP.2017010102 +Celia Romm Livermore,The Politics of E-Learning: A Theoretical Model.,2014,5,IJEP,2,db/journals/ijep/ijep5.html#LivermoreRR14,https://doi.org/10.4018/ijep.2014040104 +Lucia Vesnic-Alujevic,European Parliament Online: Identifying the European Parliament's 2009 Online Communication Strategy.,2012,3,IJEP,4,db/journals/ijep/ijep3.html#Vesnic-Alujevic12,https://doi.org/10.4018/jep.2012100104 +Azza Abdel-Azim Mohamed Ahmed,The Impact of Internet Connectedness on Voluntary Social Activity in UAE.,2011,2,IJEP,4,db/journals/ijep/ijep2.html#Ahmed11,https://doi.org/10.4018/jep.2011100104 +Daniel P. O'Brien,The Pervasive and the Digital: Immersive Worlds in Blast Theory's 'A Machine to See With' and Dennis Del Favero's 'Scenario'.,2017,8,IJEP,3,db/journals/ijep/ijep8.html#OBrien17a,https://doi.org/10.4018/IJEP.2017070103 +Nikhil Swaroop Kaluvala,Smart Grid.,2013,4,IJEP,2,db/journals/ijep/ijep4.html#KaluvalaF13,https://doi.org/10.4018/jep.2013040103 +Oyewole Adekunle Oladapo,Construction of the Political Other in Citizens' Comments on Politicians' Facebook Pages.,2017,8,IJEP,2,db/journals/ijep/ijep8.html#Oladapo17,https://doi.org/10.4018/IJEP.2017040102 +Christian Stiegler,The Politics of Immersive Storytelling: Virtual Reality and the Logics of Digital Ecosystems.,2017,8,IJEP,3,db/journals/ijep/ijep8.html#Stiegler17,https://doi.org/10.4018/IJEP.2017070101 +Jens Hoff,Election Campaigns on the Internet: How are Voters Affected?,2010,1,IJEP,1,db/journals/ijep/ijep1.html#Hoff10,https://doi.org/10.4018/jep.2010102202 +G. Sakthivel Murugan,Mobile Extension in Enhancing the Livelihood of Farmers in India.,2018,9,IJEP,1,db/journals/ijep/ijep9.html#MuruganARNA18,https://doi.org/10.4018/IJEP.2018010104 +T. Nirmala,Newspaper Framing of Climate Change and Sustainability Issues in India.,2018,9,IJEP,1,db/journals/ijep/ijep9.html#NirmalaA18,https://doi.org/10.4018/IJEP.2018010102 +Frank Makoza,Critical Mass of Women Legislators and Oversight for National ICT Policy of Malawi.,2017,8,IJEP,4,db/journals/ijep/ijep8.html#Makoza17,https://doi.org/10.4018/IJEP.2017100104 +Sunitha Kuppuswamy,A Study on the Environmental Campaigns in Traditional and Social Media.,2018,9,IJEP,1,db/journals/ijep/ijep9.html#Kuppuswamy18,https://doi.org/10.4018/IJEP.2018010103 +Andrew Ward,Social Tyranny and Democratic Governance in the Information Age.,2014,5,IJEP,2,db/journals/ijep/ijep5.html#Ward14,https://doi.org/10.4018/ijep.2014040103 +Mahesh S. Raisinghani,"The Impact of the Internet on Politics: The ""Net Effect"" on Political Campaigns and Elections.",2011,2,IJEP,4,db/journals/ijep/ijep2.html#RaisinghaniW11,https://doi.org/10.4018/jep.2011100103 +J. Paulo Serra,The Visibility of Political Websites during Electoral Campaigns.,2013,4,IJEP,4,db/journals/ijep/ijep4.html#Serra13,https://doi.org/10.4018/ijep.2013100103 +Celia Romm Livermore,Interview with Movie Producer and Director Andrée Rossi Maroso on the Use of the Internet to Support Her Artistic and Political Work.,2012,3,IJEP,2,db/journals/ijep/ijep3.html#Livermore12,http://www.igi-global.com/article/interview-movie-producer-director-andr%C3%A9e/65554 +Celia Romm Livermore,A Tale of Two Cultures: The Political Behavior of CIO's in the US and India.,2013,4,IJEP,2,db/journals/ijep/ijep4.html#LivermoreR13,https://doi.org/10.4018/jep.2013040104 +Nikolaos Koumartzis,Internet Regulation and Online Censorship.,2014,5,IJEP,4,db/journals/ijep/ijep5.html#KoumartzisV14,https://doi.org/10.4018/ijep.2014100104 +Ingrid Bachmann,Profiling Online Political Content Creators: Advancing the Paths to Democracy.,2012,3,IJEP,4,db/journals/ijep/ijep3.html#BachmannCZ12,https://doi.org/10.4018/jep.2012100101 +Rosalía Winocur,Reading Online: Young University Students' Experience with Internet Reading.,2015,6,IJEP,4,db/journals/ijep/ijep6.html#Winocur15,https://doi.org/10.4018/IJEP.2015100104 +Renira Rampazzo Gambarato,Fish Fight: Transmedia Storytelling Strategies for Food Policy Change.,2015,6,IJEP,3,db/journals/ijep/ijep6.html#GambaratoM15,https://doi.org/10.4018/IJEP.2015070104 +Anastasia Kavada,Between Individuality and Collectiveness: Email Lists and Face-to-Face Contact in the Global Justice Movement.,2010,1,IJEP,1,db/journals/ijep/ijep1.html#Kavada10,https://doi.org/10.4018/jep.2010102203 +Itir Akdogan,Media and Participation: A Site of Ideological - Democratic Struggle.,2013,4,IJEP,1,db/journals/ijep/ijep4.html#AkdoganL13,https://doi.org/10.4018/jep.2013010105 +Uta Russmann,Interaction on Instagram?: Glimpses from the 2014 Swedish Elections.,2017,8,IJEP,1,db/journals/ijep/ijep8.html#RussmannS17,https://doi.org/10.4018/IJEP.2017010104 +Shefali Virkar,Trolls Just Want To Have Fun: Electronic Aggression within the Context of e-Participation and Other Online Political Behaviour in the United Kingdom.,2014,5,IJEP,4,db/journals/ijep/ijep5.html#Virkar14,https://doi.org/10.4018/ijep.2014100102 +Celia Romm Livermore,Leaders and Followers in Social Networking Environments: A Conceptual Model.,2014,5,IJEP,3,db/journals/ijep/ijep5.html#LivermoreR14,https://doi.org/10.4018/ijep.2014070103 +Elizabeth Koh,Gender and Anonymity in Virtual Teams: An Exploratory Study.,2011,2,IJEP,1,db/journals/ijep/ijep2.html#KohLL11,https://doi.org/10.4018/jep.2011010101 +Jonathan Bishop,Dealing with Internet Trolling in Political Online Communities: Towards the This Is Why We Can't Have Nice Things Scale.,2014,5,IJEP,4,db/journals/ijep/ijep5.html#Bishop14a,https://doi.org/10.4018/ijep.2014100101 +Roopika Risam,Diasporizing the Digital Humanities: Displacing the Center and Periphery.,2016,7,IJEP,3,db/journals/ijep/ijep7.html#Risam16,https://doi.org/10.4018/IJEP.2016070105 +Celia Romm Livermore,ERP Implementation Across Cultures: A Political Perspective.,2011,2,IJEP,4,db/journals/ijep/ijep2.html#LivermoreR11,https://doi.org/10.4018/jep.2011100102 +Saqib Saeed,Usability Evaluation of Pakistani Security Agencies Websites.,2013,4,IJEP,3,db/journals/ijep/ijep4.html#SaeedMW13,https://doi.org/10.4018/jep.2013070105 +Celia Romm Livermore,When the Virtual and the Real Clash: Power and Politics in a Social Networking Community.,2010,1,IJEP,4,db/journals/ijep/ijep1.html#Livermore10,https://doi.org/10.4018/jep.2010100103 +Bradley E. Wiggins,Navigating an Immersive Narratology: Factors to Explain the Reception of Fake News.,2017,8,IJEP,3,db/journals/ijep/ijep8.html#Wiggins17,https://doi.org/10.4018/IJEP.2017070102 +Yana Breindl,Internet-Based Protest in European Policymaking: The Case of Digital Activism.,2010,1,IJEP,1,db/journals/ijep/ijep1.html#Breindl10,https://doi.org/10.4018/jep.2010102204 +Jonathan Bishop,Digital Teens and the 'Antisocial Network': Prevalence of Troublesome Online Youth Groups and Internet trolling in Great Britain.,2014,5,IJEP,3,db/journals/ijep/ijep5.html#Bishop14,https://doi.org/10.4018/ijep.2014070101 +Joanna Kulesza,Freedom of Expression On-Line: Rights and Responsibilities of Internet Service Providers.,2014,5,IJEP,4,db/journals/ijep/ijep5.html#Kulesza14,https://doi.org/10.4018/ijep.2014100103 +Neil Collins,How Have Irish Parliamentarians Adapted to the Age of Web 2.0?,2017,8,IJEP,4,db/journals/ijep/ijep8.html#CollinsC17,https://doi.org/10.4018/IJEP.2017100102 +Alexander Dhoest,Feeling (Dis)Connected: Diasporic LGBTQs and Digital Media.,2016,7,IJEP,3,db/journals/ijep/ijep7.html#Dhoest16,https://doi.org/10.4018/IJEP.2016070103 +Michael Dahan,The Gaza Strip as Panopticon and Panspectron: The Disciplining and Punishing of a Society.,2013,4,IJEP,3,db/journals/ijep/ijep4.html#Dahan13,https://doi.org/10.4018/jep.2013070104 +Mohammed Nasser Al-Suqri,An Evidence-Based Approach to the Use of Social Media to Promote Political Literacy among Youth in the Sultanate of Oman.,2017,8,IJEP,2,db/journals/ijep/ijep8.html#Al-SuqriAA17,https://doi.org/10.4018/IJEP.2017040103 +Rodrigo Sandoval-Almazán,Using Twitter in Political Campaigns: The Case of the PRI Candidate in Mexico.,2015,6,IJEP,1,db/journals/ijep/ijep6.html#Sandoval-Almazan15,https://doi.org/10.4018/IJEP.2015010101 +Gioel Gioacchino,Playing with Participatory Action Research (PAR): The Role of Digital and Audio-Visual Tools.,2016,7,IJEP,4,db/journals/ijep/ijep7.html#GioacchinoW16,https://doi.org/10.4018/IJEP.2016100102 +Daniel P. O'Brien,Postphenomenological Performance in Interactive Narrative.,2017,8,IJEP,2,db/journals/ijep/ijep8.html#OBrien17,https://doi.org/10.4018/IJEP.2017040104 +S. S. M. Sadrul Huda,E-Government: Expectations Among People in Bangladesh.,2010,1,IJEP,4,db/journals/ijep/ijep1.html#HudaPR10,https://doi.org/10.4018/jep.2010100105 +Yasmin Ibrahim,Interview with Catarina Carneiro de Sousa: Multimedia Artists and Art Educator.,2012,3,IJEP,1,db/journals/ijep/ijep3.html#Ibrahim12a,https://doi.org/10.4018/jep.2012010106 +Alejandra Boni,Grassroots Innovation for Human Development: Exploring the Potential of Participatory Video.,2016,7,IJEP,4,db/journals/ijep/ijep7.html#BoniLFB16,https://doi.org/10.4018/IJEP.2016100103 +Cynthia R. Farina,"Designing an Online Civic Engagement Platform: Balancing ""More"" vs. ""Better"" Participation in Complex Public Policymaking.",2014,5,IJEP,1,db/journals/ijep/ijep5.html#FarinaEHN14,https://doi.org/10.4018/ijep.2014010102 +Yvonne Costin,ICT as an Enabler for Small Firm Growth: The Case of the Mompreneur.,2011,2,IJEP,1,db/journals/ijep/ijep2.html#Costin11,https://doi.org/10.4018/jep.2011010102 +Francis Dalisay,Conflict as a Barrier to Online Political Participation?: A Look at Political Participation in an Era of Web and Mobile Connectivity.,2016,7,IJEP,1,db/journals/ijep/ijep7.html#DalisayKY16,https://doi.org/10.4018/IJEP.2016010103 +Dominic Thomas,Enabling User Participation in Civic Engagement Web Sites.,2010,1,IJEP,3,db/journals/ijep/ijep1.html#Thomas10,https://doi.org/10.4018/jep.2010070103 +Gil Toffell,Untimely Bollywood: Globalization and India's New Media Assemblage.,2012,3,IJEP,1,db/journals/ijep/ijep3.html#Toffell12,https://doi.org/10.4018/jep.2012010105 +Nahed Amin Azab,The Role of the Internet in Shaping the Political Process in Egypt.,2012,3,IJEP,2,db/journals/ijep/ijep3.html#Azab12,https://doi.org/10.4018/jep.2012040103 +Jakob Svensson,Interacting with Whom?: Swedish Parliamentarians on Twitter during the 2014 Elections.,2016,7,IJEP,1,db/journals/ijep/ijep7.html#SvenssonL16,https://doi.org/10.4018/IJEP.2016010101 +Christian Fuchs,Social Networking Sites and Complex Technology Assessment.,2010,1,IJEP,3,db/journals/ijep/ijep1.html#Fuchs10,https://doi.org/10.4018/jep.2010070102 +Badreya Al-Jenaibi,Gender Issues in the Diversity and Practice of Public Relations in the UAE Case Study of P.R. Male Managers and Female P.R. Practitioners.,2011,2,IJEP,3,db/journals/ijep/ijep2.html#Al-Jenaibi11,https://doi.org/10.4018/jep.2011070104 +Jonathan Bishop,Networked: The New Social Operating System.,2013,4,IJEP,2,db/journals/ijep/ijep4.html#Bishop13,https://doi.org/10.4018/jep.2013040106 +Beth Knobel,Samizdat 2.0: The Dymovsky Case and the Use of Streaming Video as a Political Tool in Contemporary Russia.,2012,3,IJEP,1,db/journals/ijep/ijep3.html#KnobelS12,https://doi.org/10.4018/jep.2012010103 +Roxana Radu,E-Participation and Deliberation in the European Union: The Case of Debate Europe.,2014,5,IJEP,2,db/journals/ijep/ijep5.html#Radu14,https://doi.org/10.4018/ijep.2014040101 +Michael S. Bruner,Women Can't Win: Gender Irony and the E-Politics of The Biggest Loser.,2016,7,IJEP,2,db/journals/ijep/ijep7.html#BrunerVC16,https://doi.org/10.4018/IJEP.2016040102 +Carla Malafaia,Civic and Political E-Participation of Young Immigrants: 'Digital Hope' for Inclusion?,2013,4,IJEP,1,db/journals/ijep/ijep4.html#MalafaiaFRNCM13,https://doi.org/10.4018/jep.2013010103 +Anastasia Deligiaouri,Political Discourse in the Media: Cross-Cultural Perspectives.,2012,3,IJEP,2,db/journals/ijep/ijep3.html#Deligiaouri12,https://doi.org/10.4018/jep.2012040105 +Anita Howarth,Hunger Hurts: The Politicization of an Austerity Food Blog.,2015,6,IJEP,3,db/journals/ijep/ijep6.html#Howarth15,https://doi.org/10.4018/ijep.2015070102 +Panagiotis Kitsos,"Privacy in the 21st Century: From the ""Dark Ages"" to ""Enlightenment""?",2013,4,IJEP,3,db/journals/ijep/ijep4.html#KitsosY13,https://doi.org/10.4018/jep.2013070102 +Hamid R. Nemati,The Unintended Consequence: The Symbiotic Relationship between ICT and a National Transition.,2011,2,IJEP,3,db/journals/ijep/ijep2.html#NematiL11,https://doi.org/10.4018/jep.2011070102 +Ulrike Klinger,Measuring Online Deliberation in Local Politics: An Empirical Analysis of the 2011 Zurich City Debate.,2014,5,IJEP,1,db/journals/ijep/ijep5.html#KlingerR14,https://doi.org/10.4018/ijep.2014010104 +Celia Romm Livermore,The Politics of e-Learning: A Play in Four Acts.,2015,6,IJEP,2,db/journals/ijep/ijep6.html#LivermoreRR15,https://doi.org/10.4018/IJEP.2015040103 +Katherine Ognyanova,Careful What You Say: Media Control in Putin's Russia - Implications for Online Content.,2010,1,IJEP,2,db/journals/ijep/ijep1.html#Ognyanova10,https://doi.org/10.4018/jep.2010040101 +Ray Gibney,The Face(book) of Unionism.,2013,4,IJEP,4,db/journals/ijep/ijep4.html#GibneyZM13,https://doi.org/10.4018/ijep.2013100101 +Viktoria Spaiser,Young Immigrants' Internet Political Participation in Germany: Comparing German East Europeans and German Turks.,2013,4,IJEP,1,db/journals/ijep/ijep4.html#Spaiser13,https://doi.org/10.4018/jep.2013010101 +Osnat Akirav,Israeli Representatives' Use of and Attitudes Toward Web Applications.,2017,8,IJEP,4,db/journals/ijep/ijep8.html#Akirav17,https://doi.org/10.4018/IJEP.2017100101 +Hao Xiaoming,The Impact of Online News Consumption on Young People's Political Participation.,2014,5,IJEP,2,db/journals/ijep/ijep5.html#XiaomingNG14,https://doi.org/10.4018/ijep.2014040102 +Kevin Y. Wang,Mapping Web Interactivity: A Comparative Study of Congressional Campaign Websites.,2013,4,IJEP,4,db/journals/ijep/ijep4.html#WangLAK13,https://doi.org/10.4018/ijep.2013100104 +Lorenzo Mosca,From the Streets to the Net? The Political Use of the Internet by Social Movements.,2010,1,IJEP,1,db/journals/ijep/ijep1.html#Mosca10,https://doi.org/10.4018/jep.2010102201 +Karolina Koc-Michalska,Evolving In Step or Poles Apart?: Online Audiences and Networking During Poland and France 2011-12 Election Campaign.,2014,5,IJEP,1,db/journals/ijep/ijep5.html#Koc-MichalskaL14,https://doi.org/10.4018/ijep.2014010103 +Sam Takavarasha,The Effect of Politics on ICT4D: A Case of Econet Wireless's Struggle for a License in Zimbabwe.,2012,3,IJEP,3,db/journals/ijep/ijep3.html#TakavarashaM12,https://doi.org/10.4018/jep.2012070103 +Ognyan Seizov,Communicative and Persuasive Strategies in the Bulgarian Parliamentary Elections 2014.,2015,6,IJEP,2,db/journals/ijep/ijep6.html#Seizov15,https://doi.org/10.4018/IJEP.2015040104 +Einar Braathen,The Role of Politics in Telecentres: Cases from South Africa.,2012,3,IJEP,3,db/journals/ijep/ijep3.html#BraathenAM12,https://doi.org/10.4018/jep.2012070101 +Leslie Jordan Albert,Effects of Perceiver / Target Gender and Social Networking Presence on Web-Based Impression Formation.,2011,2,IJEP,2,db/journals/ijep/ijep2.html#AlbertHV11,https://doi.org/10.4018/jep.2011040104 +Natalie Sappleton,Overcoming the Segregation/Stereotyping Dilemma: Computer Mediated Communication for Business Women and Professionals.,2011,2,IJEP,2,db/journals/ijep/ijep2.html#Sappleton11,https://doi.org/10.4018/jep.2011040102 +Yasmin Ibrahim,The Politics of Watching: Visuality and the New Media Economy.,2012,3,IJEP,1,db/journals/ijep/ijep3.html#Ibrahim12,https://doi.org/10.4018/jep.2012010101 +Nada Korac-Kakabadse,Radio-Frequency Identification and Human Tagging: Newer Coercions.,2010,1,IJEP,2,db/journals/ijep/ijep1.html#Korac-KakabadseKK10,https://doi.org/10.4018/jep.2010040103 +Anastasia Deligiaouri,YouTube Debate: A New Era of Internetized Television Politics?,2010,1,IJEP,2,db/journals/ijep/ijep1.html#DeligiaouriS10,https://doi.org/10.4018/jep.2010040104 +Sunrita Dhar-Bhattacharjee,Gender Segregation and ICT: An Indo-British Comparison.,2011,2,IJEP,1,db/journals/ijep/ijep2.html#Dhar-BhattacharjeeT11,https://doi.org/10.4018/jep.2011010104 +Robert C. MacGregor,The Effect of Gender on Perceived Benefits of and Drivers for ICT Adoption in Australian Medical Practices.,2011,2,IJEP,1,db/journals/ijep/ijep2.html#MacGregorHH11,https://doi.org/10.4018/jep.2011010105 +Jang-Hyun Kim 0001,The Influence of Social Networks on the U.S. Senate Roll-Call Voting.,2010,1,IJEP,4,db/journals/ijep/ijep1.html#KimBK10,https://doi.org/10.4018/jep.2010100102 +Amit S. Rai,Perception and Digital Media in India.,2012,3,IJEP,4,db/journals/ijep/ijep3.html#Rai12,https://doi.org/10.4018/jep.2012100103 +Aimée Vega Montiel,Gender Dimension of ICTs in Latin America.,2015,6,IJEP,4,db/journals/ijep/ijep6.html#Montiel15,https://doi.org/10.4018/IJEP.2015100101 +Ruth A. Guthrie,Support Structures for Women in Information Technology Careers.,2011,2,IJEP,1,db/journals/ijep/ijep2.html#GuthrieSY11,https://doi.org/10.4018/jep.2011010103 +Magnus E. Jonsson,The Challenges for Online Deliberation Research: A Literature Review.,2014,5,IJEP,1,db/journals/ijep/ijep5.html#JonssonA14,https://doi.org/10.4018/ijep.2014010101 +Sara Calvo,Conducting Video Research in the Social and Solidarity Economy: Empowering the Cinderella Economy Towards Social Justice.,2016,7,IJEP,4,db/journals/ijep/ijep7.html#CalvoM16,https://doi.org/10.4018/IJEP.2016100104 +Paul Moody,An 'Amuse-Bouche at Best': 360®6* VR Storytelling in Full Perspective.,2017,8,IJEP,3,db/journals/ijep/ijep8.html#Moody17,https://doi.org/10.4018/IJEP.2017070104 +Theodora Maniou,The Politicization of Selfie Journalism: An Empirical Study to Parliamentary Elections.,2017,8,IJEP,2,db/journals/ijep/ijep8.html#ManiouPV17,https://doi.org/10.4018/IJEP.2017040101 +Urmila Goel,The Indernet: From Internet Portal to the Social Web.,2016,7,IJEP,3,db/journals/ijep/ijep7.html#Goel16,https://doi.org/10.4018/IJEP.2016070101 +M. Naveed Baqir,Army Uniform Is Part Of My Skin: A Critical Discourse Analysis of ICT Growth and Politics in Pakistan.,2011,2,IJEP,3,db/journals/ijep/ijep2.html#Baqir11,https://doi.org/10.4018/jep.2011070103 +Yasmin Ibrahim,Self-Production through the Banal and the Fictive: Self and the Relationship with the Screen.,2016,7,IJEP,2,db/journals/ijep/ijep7.html#Ibrahim16,https://doi.org/10.4018/IJEP.2016040104 +Daniel Barredo Ibáñez,Influence of Social Networks in the Decision to Vote: An Exploratory Survey on the Ecuadorian Electorate.,2015,6,IJEP,4,db/journals/ijep/ijep6.html#IbanezCAS15,https://doi.org/10.4018/IJEP.2015100102 +Koen Leurs,Young Connected Migrants and Non-Normative European Family Life: Exploring Affective Human Right Claims of Young E-Diasporas.,2016,7,IJEP,3,db/journals/ijep/ijep7.html#Leurs16,https://doi.org/10.4018/IJEP.2016070102 +Barbara J. Chambers,Public Opinion on YouTube: A Functional Theory Analysis of the Frames Employed in User Comments Following Sarah Palin's 2008 Acceptance Speech.,2012,3,IJEP,2,db/journals/ijep/ijep3.html#ChambersB12,https://doi.org/10.4018/jep.2012040101 +Charlotte Scarf,Using ICT to Strengthen the Voices of the 'Poor' Without Asking Who Will Listen.,2012,3,IJEP,3,db/journals/ijep/ijep3.html#Scarf12,https://doi.org/10.4018/jep.2012070102 +Morag Kobez,The Illusion of Democracy in Online Consumer Restaurant Reviews.,2016,7,IJEP,1,db/journals/ijep/ijep7.html#Kobez16,https://doi.org/10.4018/IJEP.2016010104 +Yasmin Ibrahim,Food Porn and the Invitation to Gaze: Ephemeral Consumption and the Digital Spectacle.,2015,6,IJEP,3,db/journals/ijep/ijep6.html#Ibrahim15,https://doi.org/10.4018/IJEP.2015070101 +Dianne Rahm,Information and Communication Technology (ICT) for Emergency Services: A Survey of Texas Emergency Services Districts.,2013,4,IJEP,3,db/journals/ijep/ijep4.html#RahmR13,https://doi.org/10.4018/jep.2013070103 +Sasha A. Q. Scott,Mediatized Witnessing and the Ethical Imperative of Capture.,2017,8,IJEP,1,db/journals/ijep/ijep8.html#Scott17,https://doi.org/10.4018/IJEP.2017010101 +Marija Anna Bekafigo,Tweeting Negative: Determinants of Negative Campaigning in the 2011 Gubernatorial Elections.,2015,6,IJEP,1,db/journals/ijep/ijep6.html#BekafigoP15,https://doi.org/10.4018/IJEP.2015010103 +Brian S. Krueger,Opt In or Tune Out: Email Mobilization and Political Participation.,2010,1,IJEP,4,db/journals/ijep/ijep1.html#Krueger10,https://doi.org/10.4018/jep.2010100104 +Gil S. Epstein,Privilege-Seeking Activities in Organizational Politics and Its Effect on More Productive Employees.,2012,3,IJEP,2,db/journals/ijep/ijep3.html#EpsteinH12,https://doi.org/10.4018/jep.2012040102 +Sohail Dahdal,Flow as a Framework to Engage Youth in Participatory Politics on Social Media Platforms.,2017,8,IJEP,4,db/journals/ijep/ijep8.html#Dahdal17,https://doi.org/10.4018/IJEP.2017100103 +Nada Korac-Kakabadse,The Invisible Hand Guiding Technology: Crossing the Boundary of Humanity.,2011,2,IJEP,4,db/journals/ijep/ijep2.html#Korac-KakabadseKKL11,https://doi.org/10.4018/jep.2011100101 +Wairagala Wakabi,When SNS use Doesn't Trigger e-Participation: Case Study of an African Authoritarian Regime.,2015,6,IJEP,2,db/journals/ijep/ijep6.html#WakabiG15,https://doi.org/10.4018/IJEP.2015040102 +Andrea Calderaro,Empirical Analysis of Political Spaces on the Internet: The Role of E-Mailing Lists in the Organization of Alter-Globalization Movements.,2010,1,IJEP,1,db/journals/ijep/ijep1.html#Calderaro10,https://doi.org/10.4018/jep.2010102205 +Daniel E. Geer Jr.,Correlation Is Not Causation.,2011,9,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp9.html#Geer11b,https://doi.org/10.1109/MSP.2011.26 +Richard Ford,The Wrong Stuff?,2004,2,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp2.html#Ford04,https://doi.org/10.1109/MSP.2004.27 +Jonathan Herzog,Applying protocol analysis to security device interfaces.,2006,4,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp4.html#Herzog06,https://doi.org/10.1109/MSP.2006.85 +M. Eric Johnson,Addressing Information Risk in Turbulent Times.,2011,9,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp9.html#JohnsonP11,https://doi.org/10.1109/MSP.2010.116 +Partha P. Pal,Managed Execution Environment as a Moving-Target Defense Infrastructure.,2014,12,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp12.html#PalSPB14,https://doi.org/10.1109/MSP.2013.133 +Juhee Kwon,Protecting Patient Data-The Economic Perspective of Healthcare Security.,2015,13,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp13.html#KwonJ15,https://doi.org/10.1109/MSP.2015.113 +Matt Bishop,Teaching Robust Programming.,2004,2,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp2.html#BishopF04,https://doi.org/10.1109/MSECP.2004.1281247 +Marc Donner,The Girl with No Eyes.,2003,1,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp1.html#Donner03d,https://doi.org/10.1109/MSECP.2003.1219072 +Patrick Traynor,Securing Cellular Infrastructure: Challenges and Opportunities.,2009,7,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp7.html#Traynor09,https://doi.org/10.1109/MSP.2009.103 +Edward W. Felten,Understanding Trusted Computing: Will Its Benefits Outweigh Its Drawbacks?,2003,1,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp1.html#Felten03,https://doi.org/10.1109/MSECP.2003.1203224 +Robert W. Reeder,When the Password Doesn't Work: Secondary Authentication for Websites.,2011,9,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp9.html#ReederS11,https://doi.org/10.1109/MSP.2011.1 +Ian P. Cook,Security Decision Support Challenges in Data Collection and Use.,2010,8,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp8.html#CookP10,https://doi.org/10.1109/MSP.2010.59 +Ivan Arce,Bad Peripherals.,2005,3,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp3.html#Arce05,https://doi.org/10.1109/MSP.2005.6 +David Hwang,Securing Embedded Systems.,2006,4,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp4.html#HwangSTV06,https://doi.org/10.1109/MSP.2006.51 +Albert Gidari,Designing the right wiretap solution: setting standards under CALEA.,2006,4,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp4.html#Gidari06,https://doi.org/10.1109/MSP.2006.62 +Gary McGraw,Silver Bullet Talks with Virgil Gligor.,2009,7,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp7.html#McGraw09b,https://doi.org/10.1109/MSP.2009.106 +Lori M. Kaufman,How Private Is the Internet?,2011,9,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp9.html#Kaufman11,https://doi.org/10.1109/MSP.2011.11 +Kelly Caine,Security and Privacy in Health IT.,2013,11,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp11.html#CaineL13,https://doi.org/10.1109/MSP.2013.149 +Tristan Caulfield,Improving Security Policy Decisions with Models.,2015,13,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp13.html#CaulfieldP15,https://doi.org/10.1109/MSP.2015.97 +Gary McGraw,Silver Bullet Talks with John Savage.,2011,9,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp9.html#McGraw11c,https://doi.org/10.1109/MSP.2011.93 +David Gugelmann,Can Content-Based Data Loss Prevention Solutions Prevent Data Leakage in Web Traffic?,2015,13,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp13.html#GugelmannSLA15,https://doi.org/10.1109/MSP.2015.88 +David Johnston,Overview of IEEE 802.16 Security.,2004,2,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp2.html#JohnstonW04,https://doi.org/10.1109/MSP.2004.20 +Joel B. Predd,Insiders Behaving Badly.,2008,6,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp6.html#PreddPHB08,https://doi.org/10.1109/MSP.2008.87 +Ginés Dólera Tormo,Identity Management-In Privacy We Trust: Bridging the Trust Gap in eHealth Environments.,2013,11,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp11.html#TormoMGP13,https://doi.org/10.1109/MSP.2013.80 +Ghassan Karame,Blockchain Security and Privacy.,2018,16,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp16.html#KarameC18,https://doi.org/10.1109/MSP.2018.3111241 +Chris Eagle,Computer Security Competitions: Expanding Educational Outcomes.,2013,11,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp11.html#Eagle13,https://doi.org/10.1109/MSP.2013.83 +Marc Donner,Hacking the Best-Seller List.,2004,2,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp2.html#Donner04a,https://doi.org/10.1109/MSECP.2004.1281246 +William Suchan,Strengthening the Weakest Link in Digital Protection.,2006,4,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp4.html#SuchanS06,https://doi.org/10.1109/MSP.2006.166 +Ryan Ellis,Regulating Cybersecurity: Institutional Learning or a Lesson in Futility?,2014,12,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp12.html#Ellis14,https://doi.org/10.1109/MSP.2014.124 +Gary McGraw,Silver Bullet Talks with Kelly Lum.,2017,15,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp15.html#McGraw17c,https://doi.org/10.1109/MSP.2017.3151329 +Ting Yu,Two Security Symposia.,2003,1,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp1.html#YuWH03,http://doi.ieeecomputersociety.org/10.1109/MSP.2003.10009 +Annie I. Antón,Financial Privacy Policies and the Need for Standardization.,2004,2,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp2.html#AntonEHSBJ04,https://doi.org/10.1109/MSECP.2004.1281243 +,Letters to the Editor.,2003,1,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp1.html#X03,http://doi.ieeecomputersociety.org/10.1109/MSP.2003.10003 +Fred B. Schneider,Cybersecurity Education in Universities.,2013,11,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp11.html#Schneider13a,https://doi.org/10.1109/MSP.2013.84 +George Danezis,The Economics of Resisting Censorship.,2005,3,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp3.html#DanezisA05,https://doi.org/10.1109/MSP.2005.29 +Jose M. Alcaraz Calero,Toward a Multi-Tenancy Authorization System for Cloud Services.,2010,8,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp8.html#CaleroEKWW10,https://doi.org/10.1109/MSP.2010.194 +Mark A. Gondree,Security through Play.,2013,11,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp11.html#GondreePD13,https://doi.org/10.1109/MSP.2013.69 +Daniel Massey,Guest Editors' Introduction: Securing the Domain Name System.,2009,7,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp7.html#MasseyD09,https://doi.org/10.1109/MSP.2009.121 +Bruce Schneier,Locks and Full Disclosure.,2003,1,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp1.html#Schneier03a,https://doi.org/10.1109/MSECP.2003.1193220 +Jorgen Hansson,Architectural Modeling to Verify Security and Nonfunctional Behavior.,2010,8,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp8.html#HanssonWFMLH10,https://doi.org/10.1109/MSP.2010.30 +Massoud Amin,North America's Electricity Infrastructure: Are We Ready for More Perfect Storms?,2003,1,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp1.html#Amin03,https://doi.org/10.1109/MSECP.2003.1236231 +Joel Reardon,On Secure Data Deletion.,2014,12,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp12.html#ReardonBC14,https://doi.org/10.1109/MSP.2013.159 +Deirdre K. Mulligan,The Enduring Importance of Transparency.,2014,12,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp12.html#Mulligan14,https://doi.org/10.1109/MSP.2014.58 +Daniel E. Geer Jr.,The Problem Statement is the Problem.,2005,3,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp3.html#Geer05,https://doi.org/10.1109/MSP.2005.53 +Yan Shoshitaishvili,Mechanical Phish: Resilient Autonomous Hacking.,2018,16,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp16.html#Shoshitaishvili18,https://doi.org/10.1109/MSP.2018.1870858 +Anna Slomovic,Privacy Issues in Identity Verification.,2014,12,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp12.html#Slomovic14,https://doi.org/10.1109/MSP.2014.52 +Fred B. Schneider,Trusted Computing in Context.,2007,5,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp5.html#Schneider07,https://doi.org/10.1109/MSP.2007.47 +Marc Donner,Cyberassault on Estonia.,2007,5,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp5.html#Donner07,https://doi.org/10.1109/MSP.2007.78 +D. Kevin McGrath,Phishing Infrastructure Fluxes All the Way.,2009,7,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp7.html#McGrathKG09,https://doi.org/10.1109/MSP.2009.130 +Gary McGraw,From the Ground Up: The DIMACS Software Security Workshop.,2003,1,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp1.html#McGraw03,https://doi.org/10.1109/MSECP.2003.1193213 +Robert W. Reeder,152 Simple Steps to Stay Safe Online: Security Advice for Non-Tech-Savvy Users.,2017,15,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp15.html#ReederIC17,https://doi.org/10.1109/MSP.2017.3681050 +Abhilasha Bhargav-Spantzel,Trust Negotiation in Identity Management.,2007,5,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp5.html#Bhargav-SpantzelSB07,https://doi.org/10.1109/MSP.2007.46 +Simson L. Garfinkel,Email-Based Identification and Authentication: An Alternative to PKI?,2003,1,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp1.html#Garfinkel03,https://doi.org/10.1109/MSECP.2003.1253564 +Marco Prandini,Splitting the HTTPS Stream to Attack Secure Web Connections.,2010,8,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp8.html#PrandiniRCC10,https://doi.org/10.1109/MSP.2010.190 +Frederick T. Sheldon,The Insecurity of Wireless Networks.,2012,10,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp10.html#SheldonWYP12,https://doi.org/10.1109/MSP.2012.60 +Laura Amo,Addressing Gender Gaps in Teens' Cybersecurity Engagement and Self-Efficacy.,2016,14,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp14.html#Amo16,https://doi.org/10.1109/MSP.2016.12 +Richard Bejtlich,Directions in Incident Detection and Response.,2011,9,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp9.html#BejtlichSP11,https://doi.org/10.1109/MSP.2011.6 +Hamed Okhravi,Finding Focus in the Blur of Moving-Target Techniques.,2014,12,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp12.html#OkhraviHBS14,https://doi.org/10.1109/MSP.2013.137 +Doug Montgomery,Toward Secure Routing Infrastructures.,2006,4,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp4.html#MontgomeryM06,https://doi.org/10.1109/MSP.2006.135 +Rebecca Balebako,Improving App Privacy: Nudging App Developers to Protect User Privacy.,2014,12,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp12.html#BalebakoC14,https://doi.org/10.1109/MSP.2014.70 +Ezhil Kalaimannan,The Security Development Lifecycle in the Context of Accreditation Policies and Standards.,2017,15,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp15.html#KalaimannanG17,https://doi.org/10.1109/MSP.2017.14 +Qing Li,Mobile Security: A Look Ahead.,2013,11,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp11.html#LiC13,https://doi.org/10.1109/MSP.2013.15 +Bryan Reinicke,The Right to Digital Self-Defense.,2017,15,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp15.html#ReinickeCK17,https://doi.org/10.1109/MSP.2017.3151324 +Richard Ford,How Not to Be Seen.,2007,5,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp5.html#FordA07,https://doi.org/10.1109/MSP.2007.8 +Rahul Telang,Policy Framework for Data Breaches.,2015,13,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp13.html#Telang15,https://doi.org/10.1109/MSP.2015.12 +Chetan Gupta,The Market's Law of Privacy: Case Studies in Privacy and Security Adoption.,2017,15,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp15.html#Gupta17,https://doi.org/10.1109/MSP.2017.57 +Diana Maimut,Authenticated Encryption: Toward Next-Generation Algorithms.,2014,12,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp12.html#MaimutR14,https://doi.org/10.1109/MSP.2014.19 +Onur Aciiçmez,Micro-Architectural Cryptanalysis.,2007,5,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp5.html#AcucmezSK07,https://doi.org/10.1109/MSP.2007.91 +Gary McGraw,Silver Bullet Talks with Annie Antón.,2007,5,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp5.html#McGraw07c,https://doi.org/10.1109/MSP.2007.121 +Gary McGraw,Silver Bullet Talks with Richard Clarke.,2010,8,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp8.html#McGraw10c,https://doi.org/10.1109/MSP.2010.136 +Alessandro Acquisti,Gone in 15 Seconds: The Limits of Privacy Transparency and Control.,2013,11,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp11.html#AcquistiAB13,https://doi.org/10.1109/MSP.2013.86 +Fred B. Schneider,Time Out for Station Identification.,2004,2,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp2.html#Schneider04a,https://doi.org/10.1109/MSP.2004.88 +Vassil Roussev,Hashing and Data Fingerprinting in Digital Forensics.,2009,7,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp7.html#Roussev09,https://doi.org/10.1109/MSP.2009.40 +Simson L. Garfinkel,Guest Editors' Introduction: Data Surveillance.,2006,4,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp4.html#GarfinkelS06,https://doi.org/10.1109/MSP.2006.154 +Davied E. Geer Jr.,Fratricide.,2010,8,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp8.html#Geer10,https://doi.org/10.1109/MSP.2010.97 +Chad Dacus,Designing Cybersecurity into Defense Systems: An Information Economics Approach.,2016,14,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp14.html#DacusY16,https://doi.org/10.1109/MSP.2016.49 +Matt Blaze,Rights Amplification in Master-Keyed Mechanical Locks.,2003,1,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp1.html#Blaze03,https://doi.org/10.1109/MSECP.2003.1193208 +Steven M. Bellovin,Toward a National Cybersecurity Policy.,2018,16,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp16.html#Bellovin18,https://doi.org/10.1109/MSP.2018.2701148 +Budi Arief,Understanding Cybercrime from Its Stakeholders' Perspectives: Part 2-Defenders and Victims.,2015,13,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp13.html#AriefA15,https://doi.org/10.1109/MSP.2015.44 +Wendy M. Grossman,Emergency Ushers in a New Era in British Communications Surveillance.,2014,12,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp12.html#Grossman14,https://doi.org/10.1109/MSP.2014.106 +Gerald A. Marin,Network Security Basics.,2005,3,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp3.html#Marin05,https://doi.org/10.1109/MSP.2005.153 +Roland L. Trope,A Warranty of Cyberworthiness.,2004,2,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp2.html#Trope04,https://doi.org/10.1109/MSECP.2004.1281252 +Harvey Molotch,Everyday Security: Default to Decency.,2013,11,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp11.html#Molotch13,https://doi.org/10.1109/MSP.2013.142 +Bruce Potter,Necessary but Not Sufficient.,2010,8,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp8.html#Potter10a,https://doi.org/10.1109/MSP.2010.157 +Michael Howard,Building More Secure Software with Improved Development Processes.,2004,2,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp2.html#Howard04,https://doi.org/10.1109/MSP.2004.95 +Didier Stevens,Malicious PDF Documents Explained.,2011,9,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp9.html#Stevens11,https://doi.org/10.1109/MSP.2011.14 +Joan Daemen,The First 10 Years of Advanced Encryption.,2010,8,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp8.html#DaemenR10,https://doi.org/10.1109/MSP.2010.193 +Gary McGraw,Silver Bullet Talks with Halvar Flake.,2011,9,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp9.html#McGraw11e,https://doi.org/10.1109/MSP.2011.173 +Alessandro Acquisti,Privacy and Rationality in Individual Decision Making.,2005,3,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp3.html#AcquistiG05,https://doi.org/10.1109/MSP.2005.22 +Amin Kharraz,Protecting against Ransomware: A New Line of Research or Restating Classic Ideas?,2018,16,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp16.html#KharrazRK18,https://doi.org/10.1109/MSP.2018.2701165 +Denis Butin,Hash-Based Signatures: State of Play.,2017,15,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp15.html#Butin17,https://doi.org/10.1109/MSP.2017.3151334 +Rolf Oppliger,Quantitative Risk Analysis in Information Security Management: A Modern Fairy Tale.,2015,13,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp13.html#Oppliger15,https://doi.org/10.1109/MSP.2015.118 +Indrajeet Singh,Twitsper: Tweeting Privately.,2013,11,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp11.html#SinghBMKA13,https://doi.org/10.1109/MSP.2013.3 +Elias Levy,Approaching Zero.,2004,2,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp2.html#Levy04a,https://doi.org/10.1109/MSP.2004.33 +Gary McGraw,Silver Bullet Talks with Paul Kocher.,2011,9,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp9.html#McGraw11,https://doi.org/10.1109/MSP.2011.18 +Nicolas Sklavos,Computer Network Security: Report from MMM-ACNS.,2004,2,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp2.html#SklavosMGK04,https://doi.org/10.1109/MSECP.2004.1264853 +James Figueroa,News Briefs.,2009,7,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp7.html#Figueroa09,https://doi.org/10.1109/MSP.2009.73 +Rosa R. Heckle,Security Dilemma: Healthcare Clinicians at Work.,2011,9,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp9.html#Heckle11,https://doi.org/10.1109/MSP.2011.74 +William Enck,Understanding Android Security.,2009,7,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp7.html#EnckOM09,https://doi.org/10.1109/MSP.2009.26 +Greg Goth,News.,2004,2,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp2.html#Goth04,https://doi.org/10.1109/MSP.2004.79 +Jim Robbins,Managing information privacy: developing a context for security and privacy standards convergence.,2006,4,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp4.html#RobbinsS06,https://doi.org/10.1109/MSP.2006.98 +Anupam Datta,Logical Methods in Security and Privacy.,2010,8,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp8.html#Datta10,https://doi.org/10.1109/MSP.2010.180 +Kenneth G. Paterson,Lost in translation: theory and practice in cryptography.,2006,4,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp4.html#PatersonY06,https://doi.org/10.1109/MSP.2006.74 +Sarah Gordon,Understanding the Adversary: Virus Writers and Beyond.,2006,4,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp4.html#Gordon06,https://doi.org/10.1109/MSP.2006.137 +M. Angela Sasse,The Security-Usability Tradeoff Myth [Guest editors' introduction].,2016,14,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp14.html#SasseS16,https://doi.org/10.1109/MSP.2016.102 +Serge Vaudenay,E-Passport Threats.,2007,5,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp5.html#Vaudenay07,https://doi.org/10.1109/MSP.2007.164 +Kenneth P. Birman,The Monoculture Risk Put into Context.,2009,7,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp7.html#BirmanS09,https://doi.org/10.1109/MSP.2009.24 +Bruce Schneier,The Importance of Security Engineering.,2012,10,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp10.html#Schneier12a,https://doi.org/10.1109/MSP.2012.132 +John DeLong,Aligning the Compasses: A Journey through Compliance and Technology.,2014,12,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp12.html#DeLong14,https://doi.org/10.1109/MSP.2014.62 +Brandi Ortega,News Briefs.,2007,5,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp5.html#Ortega07e,https://doi.org/10.1109/MSP.2007.172 +Anupam Datta,On Adversary Models and Compositional Security.,2011,9,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp9.html#DattaFGJK11,https://doi.org/10.1109/MSP.2010.203 +Seda Gurses,Privacy Engineering: Shaping an Emerging Field of Research and Practice.,2016,14,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp14.html#GursesA16,https://doi.org/10.1109/MSP.2016.37 +Bruce Schneier,The Internet of Things Will Upend Our Industry.,2017,15,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp15.html#Schneier17,https://doi.org/10.1109/MSP.2017.39 +Lucila Ishitani,Masks: Bringing Anonymity and Personalization Together.,2003,1,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp1.html#IshitaniAM03,https://doi.org/10.1109/MSECP.2003.1203218 +Logan O. Mailloux,"Putting the ""Systems"" in Security Engineering: An Examination of NIST Special Publication 800-160.",2016,14,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp14.html#MaillouxMKP16,https://doi.org/10.1109/MSP.2016.77 +Anatoliy Gorbenko,Time-Outing Internet Services.,2013,11,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp11.html#GorbenkoR13,https://doi.org/10.1109/MSP.2013.43 +Cormac Herley,Science of Security: Combining Theory and Measurement to Reflect the Observable.,2018,16,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp16.html#HerleyO18,https://doi.org/10.1109/MSP.2018.1331028 +Erman Ayday,Inference Attacks against Kin Genomic Privacy.,2017,15,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp15.html#AydayH17,https://doi.org/10.1109/MSP.2017.3681052 +Susanne Furman,Basing Cybersecurity Training on User Perceptions.,2012,10,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp10.html#FurmanTCS12,https://doi.org/10.1109/MSP.2011.180 +Eleanor Birrell,Federated Identity Management Systems: A Privacy-Based Characterization.,2013,11,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp11.html#BirrellS13,https://doi.org/10.1109/MSP.2013.114 +Greg Goth,News.,2004,2,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp2.html#GothGA04,https://doi.org/10.1109/MSECP.2004.1264844 +Kjell Jørgen Hole,Toward Anti-fragility: A Malware-Halting Technique.,2015,13,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp13.html#Hole15a,https://doi.org/10.1109/MSP.2015.73 +Atif M. Memon,Colluding Apps: Tomorrow's Mobile Malware Threat.,2015,13,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp13.html#MemonA15,https://doi.org/10.1109/MSP.2015.143 +Steven M. Bellovin,Who Are You?,2017,15,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp15.html#Bellovin17a,https://doi.org/10.1109/MSP.2017.4251120 +Michael Lesk,Micropayments: An Idea Whose Time Has Passed Twice?,2004,2,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp2.html#Lesk04,https://doi.org/10.1109/MSECP.2004.1264856 +Jason Bau,Security Modeling and Analysis.,2011,9,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp9.html#BauM11,https://doi.org/10.1109/MSP.2011.2 +Shari Lawrence Pfleeger,Does Profiling Make Us More Secure?,2012,10,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp10.html#PfleegerRBCCLS12,https://doi.org/10.1109/MSP.2012.95 +Steve Lipner,Lessons from VAX/SVS for High-Assurance VM Systems.,2012,10,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp10.html#LipnerJZ12,https://doi.org/10.1109/MSP.2012.87 +Masooda Bashir,Cybersecurity Competitions: The Human Angle.,2015,13,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp13.html#BashirLGMH15,https://doi.org/10.1109/MSP.2015.100 +Peter G. Neumann,The IEEE Symposium on Security and Privacy Is Moving to San Francisco.,2012,10,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp10.html#NeumannL12,https://doi.org/10.1109/MSP.2012.51 +Marc Donner,Cult Classics.,2004,2,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp2.html#Donner04c,https://doi.org/10.1109/MSP.2004.11 +Mark F. Vilardo,Online Impersonation in Securities Scams.,2004,2,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp2.html#Vilardo04,https://doi.org/10.1109/MSP.2004.19 +Matt Bishop,Achieving Learning Objectives through E-Voting Case Studies.,2007,5,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp5.html#BishopF07,https://doi.org/10.1109/MSP.2007.1 +Ronald Dodge,Technology Education at the US Military Academy.,2005,3,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp3.html#DodgeR05,https://doi.org/10.1109/MSP.2005.52 +Robert K. Cunningham,IEEE SecDev 2016: Prioritizing Secure Development.,2016,14,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp14.html#CunninghamGLSH16,https://doi.org/10.1109/MSP.2016.71 +Janne Merete Hagen,Human Relationships: A Never-Ending Security Education Challenge?,2009,7,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp7.html#Hagen09,https://doi.org/10.1109/MSP.2009.92 +Denis Trcek,Trust Management in the Pervasive Computing Era.,2011,9,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp9.html#Trcek11,https://doi.org/10.1109/MSP.2011.95 +Urs E. Gattiker,EICAR 2005.,2005,3,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp3.html#Gattiker05,https://doi.org/10.1109/MSP.2005.96 +Norberto Nuno Gomes de Andrade,"All the Better to See You with, My Dear: Facial Recognition and Privacy in Online Social Networks.",2013,11,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp11.html#AndradeMM13,https://doi.org/10.1109/MSP.2013.22 +Marco Prandini,Return-Oriented Programming.,2012,10,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp10.html#PrandiniR12,https://doi.org/10.1109/MSP.2012.152 +Michael N. Gagnon,Software Protection through Anti-Debugging.,2007,5,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp5.html#GagnonTG07,https://doi.org/10.1109/MSP.2007.71 +George Cybenko,IEEE Security and Privacy: The Early Years.,2014,12,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp12.html#CybenkoC14,https://doi.org/10.1109/MSP.2014.48 +,Letters to the Editor.,2005,3,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp3.html#X05,https://doi.org/10.1109/MSP.2005.18 +Paul C. Clark,New Pathways in Identity Management.,2010,8,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp8.html#ClarkCFFLI10,https://doi.org/10.1109/MSP.2010.183 +Gary McGraw,Silver Bullet Talks with Wafaa Mamilli.,2018,16,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp16.html#McGraw18,https://doi.org/10.1109/MSP.2018.1331039 +Carl E. Landwehr,Green Computing.,2005,3,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp3.html#Landwehr05a,https://doi.org/10.1109/MSP.2005.148 +Daniel E. Geer Jr.,Learn by Analogy or Die Trying.,2008,6,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp6.html#Geer08,https://doi.org/10.1109/MSP.2008.66 +Erin Egan,Building a better filter how to create a safer Internet and avoid the litigation trap.,2006,4,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp4.html#EganJ06,https://doi.org/10.1109/MSP.2006.59 +Frank L. Greitzer,Combating the Insider Cyber Threat.,2008,6,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp6.html#GreitzerMCACH08,https://doi.org/10.1109/MSP.2008.8 +Christian S. Collberg,Sandmark--A Tool for Software Protection Research.,2003,1,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp1.html#CollbergMH03,https://doi.org/10.1109/MSECP.2003.1219058 +Alexander Kott,The Promises and Challenges of Continuous Monitoring and Risk Scoring.,2013,11,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp11.html#KottA13,https://doi.org/10.1109/MSP.2013.19 +Frank Kargl,Insights on the Security and Dependability of Industrial Control Systems.,2014,12,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp12.html#KarglHKVD14,https://doi.org/10.1109/MSP.2014.120 +Martin R. Sytz,Studying Attacks to Improve Software Defense.,2005,3,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp3.html#Sytz05,https://doi.org/10.1109/MSP.2005.25 +Bruce Berg,An Exploration of the Effects of Sensory Stimuli on the Completion of Security Tasks.,2017,15,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp15.html#BergKKT17,https://doi.org/10.1109/MSP.2017.4251110 +Marc Beunardeau,Fully Homomorphic Encryption: Computations with a Blindfold.,2016,14,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp14.html#BeunardeauCGN16,https://doi.org/10.1109/MSP.2016.8 +Martin R. Stytz,Setting the Standard for Security Literature.,2003,1,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp1.html#Stytz03a,https://doi.org/10.1109/MSECP.2003.1219051 +Christoph Sorge,The Legal Ramifications of Call-Filtering Solutions.,2010,8,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp8.html#SorgeNS10,https://doi.org/10.1109/MSP.2010.54 +David S. Rosenblum,What Anyone Can Know: The Privacy Risks of Social Networking Sites.,2007,5,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp5.html#Rosenblum07,https://doi.org/10.1109/MSP.2007.75 +Rolf Oppliger,Digital Evidence: Dream and Reality.,2003,1,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp1.html#OppligerR03,https://doi.org/10.1109/MSECP.2003.1236234 +Michael Lesk,Copyright Extension: Eldred v. Ashcroft.,2003,1,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp1.html#Lesk03,https://doi.org/10.1109/MSECP.2003.1177000 +Marc Lichtman,A Communications Jamming Taxonomy.,2016,14,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp14.html#LichtmanPASCBR16,https://doi.org/10.1109/MSP.2016.13 +Alan T. Sherman,INSuRE: Collaborating Centers of Academic Excellence Engage Students in Cybersecurity Research.,2017,15,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp15.html#ShermanDCCMOSTV17,https://doi.org/10.1109/MSP.2017.3151327 +Robert Thibadeau,Trusted Computing for Disk Drives and Other Peripherals.,2006,4,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp4.html#Thibadeau06,https://doi.org/10.1109/MSP.2006.136 +Bill G. Horne,Trust Me. Trust Me Not.,2016,14,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp14.html#Horne16,https://doi.org/10.1109/MSP.2016.56 +Cristian Bravo-Lillo,Bridging the Gap in Computer Security Warnings: A Mental Model Approach.,2011,9,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp9.html#Bravo-LilloCDK11,https://doi.org/10.1109/MSP.2010.198 +Chris Jay Hoofnagle,Assessing the Federal Trade Commission's Privacy Assessments.,2016,14,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp14.html#Hoofnagle16,https://doi.org/10.1109/MSP.2016.25 +M. Eric Johnson,Embedding Information Security into the Organization.,2007,5,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp5.html#JohnsonG07,https://doi.org/10.1109/MSP.2007.59 +Michael A. Caloyannides,"Forensics Is So ""Yesterday"".",2009,7,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp7.html#Caloyannides09,https://doi.org/10.1109/MSP.2009.37 +Daniel E. Geer Jr.,Does a Rising Tide Lift All Boats?,2011,9,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp9.html#Geer11,https://doi.org/10.1109/MSP.2011.7 +Eszter Hargittai,New Strategies for Employment? Internet Skills and Online Privacy Practices during People's Job Search.,2013,11,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp11.html#HargittaiL13,https://doi.org/10.1109/MSP.2013.64 +Fred B. Schneider,Technology Scapegoats and Policy Saviors.,2007,5,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp5.html#Schneider07a,https://doi.org/10.1109/MSP.2007.124 +Shari Lawrence Pfleeger,Guest Editors' Introduction.,2012,10,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp10.html#PfleegerIK12,https://doi.org/10.1109/MSP.2012.38 +Carolyn P. Meinel,Cybercrime Treaty Could Chill Research.,2004,2,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp2.html#Meinel04,https://doi.org/10.1109/MSP.2004.40 +Sean Barnum,Roundtable: Reliability of Embedded and Cyber-Physical Systems.,2010,8,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp8.html#BarnumSS10,https://doi.org/10.1109/MSP.2010.162 +Brent Kesler,News Briefs.,2006,4,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp4.html#KeslerDF06,https://doi.org/10.1109/MSP.2006.47 +Zongwei Zhou,Dancing with Giants: Wimpy Kernels for On-Demand I/O Isolation.,2015,13,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp13.html#ZhouYG15,https://doi.org/10.1109/MSP.2015.26 +Gary McGraw,Silver Bullet Talks with Ed Amoroso.,2008,6,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp6.html#McGraw08a,https://doi.org/10.1109/MSP.2008.46 +Marc Donner,Deus Est Machina.,2004,2,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp2.html#Donner04e,https://doi.org/10.1109/MSP.2004.42 +Matt Bishop,Information Assurance Education: A Work In Progress.,2008,6,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp6.html#BishopF08,https://doi.org/10.1109/MSP.2008.123 +Faith M. Heikkila,SecureWorld Expo 2005.,2005,3,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp3.html#Heikkila05,https://doi.org/10.1109/MSP.2005.156 +Eric Goetz,News Briefs.,2005,3,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp3.html#GoetzJK05,https://doi.org/10.1109/MSP.2005.20 +James Figueroa,News Briefs.,2010,8,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp8.html#Figueroa10a,https://doi.org/10.1109/MSP.2010.78 +Grant A. Jacoby,Using Battery Constraints within Mobile Hosts to Improve Network Security.,2006,4,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp4.html#JacobyMD06,https://doi.org/10.1109/MSP.2006.139 +Bruce Schneier,Empathy and Security.,2011,9,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp9.html#Schneier11a,https://doi.org/10.1109/MSP.2011.133 +Lucas Dixon,Network Traffic Obfuscation and Automated Internet Censorship.,2016,14,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp14.html#DixonRS16,https://doi.org/10.1109/MSP.2016.121 +Patrick P. Tsang,When Cryptographers Turn Lead into Gold.,2007,5,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp5.html#Tsang07,https://doi.org/10.1109/MSP.2007.49 +John Harauz,A New Era of Presidential Security: The President and His BlackBerry.,2009,7,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp7.html#HarauzK09,https://doi.org/10.1109/MSP.2009.29 +Francis Andoh-Baidoo,How Internet Security Breaches Harm Market Value.,2010,8,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp8.html#Andoh-BaidooAO10,https://doi.org/10.1109/MSP.2010.37 +Gregory B. White,The Appropriate Use of Force-on-Force Cyberexercises.,2004,2,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp2.html#WhiteC04,https://doi.org/10.1109/MSP.2004.58 +Jeremy Epstein,The Whole Is Less than the Sum of the Parts.,2015,13,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp13.html#Epstein15,https://doi.org/10.1109/MSP.2015.43 +Boudewijn R. Haverkort,The Dependable Systems-of-Systems Design Challenge.,2013,11,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp11.html#Haverkort13,https://doi.org/10.1109/MSP.2013.124 +Massimiliano Albanese,Defending from Stealthy Botnets Using Moving Target Defenses.,2018,16,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp16.html#AlbaneseJV18,https://doi.org/10.1109/MSP.2018.1331034 +Terry Benzel,Selected Papers from the 2017 IEEE Symposium on Security and Privacy.,2018,16,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp16.html#BenzelP18,https://doi.org/10.1109/MSP.2018.1331038 +Dakshi Agrawal,Measuring Anonymity: The Disclosure Attack.,2003,1,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp1.html#AgrawalK03,https://doi.org/10.1109/MSECP.2003.1253565 +Craig Burton,vVote: Verifiable Electronic Voting in Practice.,2016,14,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp14.html#BurtonCS16,https://doi.org/10.1109/MSP.2016.69 +Gary McGraw,Silver Bullet Talks with Lesley Carhart.,2017,15,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp15.html#McGraw17a,https://doi.org/10.1109/MSP.2017.33 +Aditya K. Sood,A Taxonomy of Domain-Generation Algorithms.,2016,14,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp14.html#SoodZ16,https://doi.org/10.1109/MSP.2016.76 +Prabir Bhattacharya,Learning Mobile Security with Labware.,2014,12,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp12.html#BhattacharyaYGQY14,https://doi.org/10.1109/MSP.2014.6 +Marc Donner,Insecurity through Obscurity.,2006,4,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp4.html#Donner06a,https://doi.org/10.1109/MSP.2006.123 +Richard Ford,Malware Shall Greatly Increase ....,2009,7,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp7.html#FordA09,https://doi.org/10.1109/MSP.2009.181 +Wouter C. A. Wijngaards,Securing DNS: Extending DNS Servers with a DNSSEC Validator.,2009,7,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp7.html#WijngaardsO09,https://doi.org/10.1109/MSP.2009.133 +Scott Borg,Economically Complex Cyberattacks.,2005,3,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp3.html#Borg05,https://doi.org/10.1109/MSP.2005.146 +Bruce Schneier,Metadata = Surveillance.,2014,12,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp12.html#Schneier14,https://doi.org/10.1109/MSP.2014.28 +Keye Martin,Secure Communication without Encryption?,2007,5,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp5.html#Martin07,https://doi.org/10.1109/MSP.2007.39 +Crispin Cowan,Software Security for Open-Source Systems.,2003,1,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp1.html#Cowan03,https://doi.org/10.1109/MSECP.2003.1176994 +James Mulvenon,Toward a Cyberconflict Studies Research Agenda.,2005,3,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp3.html#Mulvenon05,https://doi.org/10.1109/MSP.2005.110 +Ramaswamy Chandramouli,Open Issues in Secure DNS Deployment.,2009,7,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp7.html#ChandramouliR09,https://doi.org/10.1109/MSP.2009.129 +Keith Harrison,Anonymous and Distributed Community Cyberincident Detection.,2013,11,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp11.html#HarrisonW13,https://doi.org/10.1109/MSP.2013.24 +Martina Angela Sasse,Helping You Protect You.,2014,12,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp12.html#SassePJCWC14,https://doi.org/10.1109/MSP.2014.4 +Hossein Homaei,Seven Years of Software Vulnerabilities: The Ebb and Flow.,2017,15,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp15.html#HomaeiS17,https://doi.org/10.1109/MSP.2017.15 +Mary Theofanos,Secure and Usable Enterprise Authentication: Lessons from the Field.,2016,14,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp14.html#TheofanosGC16,https://doi.org/10.1109/MSP.2016.96 +William H. Allen,Computer Forensics.,2005,3,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp3.html#Allen05,https://doi.org/10.1109/MSP.2005.95 +Daniel E. Geer Jr.,Hard Data Is Good to Find.,2009,7,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp7.html#GeerC09a,https://doi.org/10.1109/MSP.2009.39 +Gary McGraw,Silver Bullet Talks with Thomas Rid.,2013,11,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp11.html#McGraw13b,https://doi.org/10.1109/MSP.2013.71 +Angelos D. Keromytis,Voice-over-IP Security: Research and Practice.,2010,8,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp8.html#Keromytis10,https://doi.org/10.1109/MSP.2010.87 +Sandra Kay Miller,Legal Battle Looming for Internet Protections Acts.,2003,1,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp1.html#Miller03,https://doi.org/10.1109/MSECP.2003.1176991 +Anton Chuvakin,How to Do Application Logging Right.,2010,8,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp8.html#ChuvakinP10,https://doi.org/10.1109/MSP.2010.127 +Aisling Connolly,Freedom of Encryption.,2018,16,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp16.html#Connolly18,https://doi.org/10.1109/MSP.2018.1331023 +Aanjhan Ranganathan,Are We Really Close? Verifying Proximity in Wireless Systems.,2017,15,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp15.html#RanganathanC17,https://doi.org/10.1109/MSP.2017.56 +John Viega,The State of Embedded-Device Security (Spoiler Alert: It's Bad).,2012,10,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp10.html#ViegaT12,https://doi.org/10.1109/MSP.2012.134 +Linda Dailey Paulson,News Briefs.,2010,8,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp8.html#Paulson10,https://doi.org/10.1109/MSP.2010.102 +John Steven,Adopting an Enterprise Software Security Framework.,2006,4,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp4.html#Steven06,https://doi.org/10.1109/MSP.2006.33 +Sandeep N. Bhatt,The Operational Role of Security Information and Event Management Systems.,2014,12,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp12.html#BhattMZ14,https://doi.org/10.1109/MSP.2014.103 +Marco M. Carvalho,Moving-Target Defenses for Computer Networks.,2014,12,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp12.html#CarvalhoF14,https://doi.org/10.1109/MSP.2014.30 +Joel W. Branch,Autonomic 802.11 Wireless LAN Security Auditing.,2004,2,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp2.html#BranchPDS04,https://doi.org/10.1109/MSP.2004.4 +Jeremy Epstein,Reflecting on Some Past Predictions.,2012,10,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp10.html#Epstein12a,https://doi.org/10.1109/MSP.2012.47 +Michael E. Lesk,Digital Rights Management and Individualized Pricing.,2008,6,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp6.html#Lesk08a,https://doi.org/10.1109/MSP.2008.61 +Shari Lawrence Pfleeger,Everything You Wanted to Know about Privacy (But Were Afraid to Ask).,2006,4,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp4.html#Pfleeger06,https://doi.org/10.1109/MSP.2006.65 +,2003 Annual Index IEEE Security and Privacy Volume 1.,2003,1,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp1.html#X03e,http://doi.ieeecomputersociety.org/10.1109/MSP.2003.10015 +John Viega,Reality Check.,2011,9,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp9.html#Viega11,https://doi.org/10.1109/MSP.2011.17 +Philip Koopman,Integrity in Embedded Control Networks.,2013,11,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp11.html#KoopmanS13,https://doi.org/10.1109/MSP.2013.61 +Hilarie K. Orman,The Morris Worm: A Fifteen-Year Perspective.,2003,1,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp1.html#Orman03,https://doi.org/10.1109/MSECP.2003.1236233 +Steven M. Bellovin,Unconventional Wisdom.,2006,4,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp4.html#Bellovin06,https://doi.org/10.1109/MSP.2006.28 +Lorrie Faith Cranor,P3P: Making Privacy Policies More Useful.,2003,1,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp1.html#Cranor03,https://doi.org/10.1109/MSECP.2003.1253568 +Michael A. Howard,A process for performing security code reviews.,2006,4,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp4.html#Howard06,https://doi.org/10.1109/MSP.2006.84 +Sophie In't Veld,Data Sharing across the Atlantic.,2007,5,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp5.html#Veld07,https://doi.org/10.1109/MSP.2007.79 +Carl E. Landwehr,Cybersecurity and Artificial Intelligence: From Fixing the Plumbing to Smart Water.,2008,6,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp6.html#Landwehr08a,https://doi.org/10.1109/MSP.2008.113 +Barbara Endicott-Popovsky,Ethics and Teaching Information Assurance.,2003,1,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp1.html#Endicott-Popovsky03,https://doi.org/10.1109/MSECP.2003.1219073 +Stuart E. Schechter,Toward Econometric Models of the Security Risk from Remote Attack.,2005,3,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp3.html#Schechter05,https://doi.org/10.1109/MSP.2005.30 +Heather Drinan,News Briefs.,2005,3,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp3.html#DrinanFK05,https://doi.org/10.1109/MSP.2005.154 +Steven M. Bellovin,Jurisdiction and the Internet.,2017,15,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp15.html#Bellovin17,https://doi.org/10.1109/MSP.2017.55 +Walter S. Baer,Cyberinsurance in IT Security Management.,2007,5,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp5.html#BaerP07,https://doi.org/10.1109/MSP.2007.57 +Paul A. Karger,Lessons Learned: Building the Caernarvon High-Assurance Operating System.,2011,9,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp9.html#KargerMPTW11,https://doi.org/10.1109/MSP.2010.169 +Nathanael Paul,A Closer Look at Viruses and Worms.,2005,3,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp3.html#Paul05,https://doi.org/10.1109/MSP.2005.86 +Brian Chess,Software Security in Practice.,2011,9,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp9.html#ChessA11,https://doi.org/10.1109/MSP.2011.40 +Jacob Bellatti,Driving Habits Data: Location Privacy Implications and Solutions.,2017,15,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp15.html#BellattiBLAEDT17,https://doi.org/10.1109/MSP.2017.6 +Deborah A. Frincke,Academic Degrees and Professional Certification.,2004,2,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp2.html#FrinckeB04c,https://doi.org/10.1109/MSP.2004.91 +Bart P. Knijnenburg,Privacy? I Can't Even! Making a Case for User-Tailored Privacy.,2017,15,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp15.html#Knijnenburg17,https://doi.org/10.1109/MSP.2017.3151331 +Omer Tene,Five Freedoms for the Homo Deus.,2018,16,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp16.html#TenePS18,https://doi.org/10.1109/MSP.2018.2701156 +Kjell Jørgen Hole,Risk Assessment of a National Security Infrastructure.,2009,7,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp7.html#HoleKNETM09,https://doi.org/10.1109/MSP.2009.17 +Dawn E. Schrader,Proactively Protecting Against the Singularity: Ethical Decision Making in AI.,2018,16,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp16.html#SchraderG18,https://doi.org/10.1109/MSP.2018.2701169 +Joshua I. James,How Businesses Can Speed Up International Cybercrime Investigation.,2017,15,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp15.html#James17,https://doi.org/10.1109/MSP.2017.40 +Teddy Furon,Tracing Pirated Content on the Internet: Unwinding Ariadne's Thread.,2010,8,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp8.html#FuronD10,https://doi.org/10.1109/MSP.2010.167 +Gregory J. Conti,A Framework for Countering Denial-of-Information Attacks.,2005,3,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp3.html#ContiA05,https://doi.org/10.1109/MSP.2005.140 +Bruce Schneier,Trust in Man/Machine Security Systems.,2013,11,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp11.html#Schneier13a,https://doi.org/10.1109/MSP.2013.128 +George Cybenko,Boiling Frogs?,2003,1,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp1.html#Cybenko03b,http://doi.ieeecomputersociety.org/10.1109/MSP.2003.10005 +Barbara Fichtinger,Driving Secure Software Development Experience in a Diverse Product Environment.,2012,10,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp10.html#FichtingerPP12,https://doi.org/10.1109/MSP.2012.35 +Aggelos Kiayias,An Efficient E2E Verifiable E-voting System without Setup Assumptions.,2017,15,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp15.html#KiayiasZZ17,https://doi.org/10.1109/MSP.2017.71 +Yang Wang,Inclusive Security and Privacy.,2018,16,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp16.html#Wang18,https://doi.org/10.1109/MSP.2018.3111237 +Jared DeMott,Bypassing EMET 4.1.,2015,13,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp13.html#DeMott15,https://doi.org/10.1109/MSP.2015.75 +Gary McGraw,Silver Bullet Talks with Ksenia Dmitrieva-Peguero.,2017,15,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp15.html#McGraw17d,https://doi.org/10.1109/MSP.2017.3681062 +Frederik Zuiderveen Borgesius,Informed Consent: We Can Do Better to Defend Privacy.,2015,13,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp13.html#Borgesius15,https://doi.org/10.1109/MSP.2015.34 +Kevin R. B. Butler,New Security Architectures Based on Emerging Disk Functionality.,2010,8,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp8.html#ButlerMMM10,https://doi.org/10.1109/MSP.2010.90 +Shari Lawrence Pfleeger,A Key to the Castle.,2012,10,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp10.html#Pfleeger12,https://doi.org/10.1109/MSP.2012.64 +Kenneth R. van Wyk,Essential Factors for Successful Software Security Awareness Training.,2006,4,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp4.html#WykS06,https://doi.org/10.1109/MSP.2006.119 +Brian Hay,Live Analysis: Progress and Challenges.,2009,7,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp7.html#HayBN09,https://doi.org/10.1109/MSP.2009.43 +Gary McGraw,Silver Bullet Talks with Fred Schneider.,2009,7,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp7.html#McGraw09d,https://doi.org/10.1109/MSP.2009.166 +Clementina Bruno,Assessing a Potential Cyberattack on the Italian Electric System.,2015,13,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp13.html#BrunoGLP15,https://doi.org/10.1109/MSP.2015.99 +Scott Charney,The Evolution of Online Identity.,2009,7,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp7.html#Charney09,https://doi.org/10.1109/MSP.2009.140 +Shari Lawrence Pfleeger,Canning Spam: Proposed Solutions to Unwanted Email.,2005,3,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp3.html#PfleegerB05,https://doi.org/10.1109/MSP.2005.38 +Eric Rescorla,Is Finding Security Holes a Good Idea?,2005,3,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp3.html#Rescorla05,https://doi.org/10.1109/MSP.2005.17 +Baijian Justin Yang,Try-CybSI: A Platform for Trying Out Cybersecurity.,2016,14,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp14.html#YangK16,https://doi.org/10.1109/MSP.2016.68 +Daniel E. Geer,Attribution.,2017,15,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp15.html#Geer17,https://doi.org/10.1109/MSP.2017.3151333 +James Walden,SAVI: Static-Analysis Vulnerability Indicator.,2012,10,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp10.html#WaldenD12,https://doi.org/10.1109/MSP.2012.1 +Sean W. Smith,Humans in the Loop: Human-Computer Interaction and Security.,2003,1,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp1.html#Smith03a,https://doi.org/10.1109/MSECP.2003.1203228 +Paulo Jorge Esteves Veríssimo,E-biobanking: What Have You Done to My Cell Samples?,2013,11,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp11.html#VerissimoB13,https://doi.org/10.1109/MSP.2013.141 +Lori M. Kaufman,Can Public-Cloud Security Meet Its Unique Challenges?,2010,8,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp8.html#Kaufman10a,https://doi.org/10.1109/MSP.2010.120 +Wil Michiels,Opportunities in White-Box Cryptography.,2010,8,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp8.html#Michiels10,https://doi.org/10.1109/MSP.2010.44 +Michael Lesk,License Creep.,2015,13,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp13.html#Lesk15b,https://doi.org/10.1109/MSP.2015.142 +Daniel E. Geer,Privacy's Paradigm.,2016,14,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp14.html#Geer16a,https://doi.org/10.1109/MSP.2016.73 +Himanshu Khurana,Smart-Grid Security Issues.,2010,8,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp8.html#KhuranaHLF10,https://doi.org/10.1109/MSP.2010.49 +Steven M. Bellovin,The Government and Cybersecurity.,2009,7,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp7.html#Bellovin09,https://doi.org/10.1109/MSP.2009.55 +Gary McGraw,Silver Bullet Talks with Nicole Perlroth.,2017,15,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp15.html#McGraw17e,https://doi.org/10.1109/MSP.2017.4251119 +Gary McGraw,Silver Bullet Talks with Steven Kent.,2010,8,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp8.html#McGraw10b,https://doi.org/10.1109/MSP.2010.104 +Martin R. Stytz,Book Reviews.,2004,2,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp2.html#Stytz04,https://doi.org/10.1109/MSECP.2004.1264847 +Stephen A. Weis,Privacy Enhancing Technologies.,2006,4,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp4.html#Weis06,https://doi.org/10.1109/MSP.2006.130 +Axelle Apvrille,Secure Software Development by Example.,2005,3,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp3.html#ApvrilleP05,https://doi.org/10.1109/MSP.2005.103 +Anton Chuvakin,Logging in the Age of Web Services.,2009,7,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp7.html#ChuvakinP09,https://doi.org/10.1109/MSP.2009.70 +Michael Ian Shamos,Realities of E-voting Security.,2012,10,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp10.html#ShamosY12,https://doi.org/10.1109/MSP.2012.124 +Jeremy Epstein,Phishing Our Employees.,2014,12,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp12.html#Epstein14,https://doi.org/10.1109/MSP.2014.51 +James Alexander,Disinformation: A Taxonomy.,2011,9,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp9.html#AlexanderS11,https://doi.org/10.1109/MSP.2010.141 +Marc Donner,Die Gedanken Sind Frei.,2004,2,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp2.html#Donner04,https://doi.org/10.1109/MSECP.2004.1264854 +John Steven,Threat Modeling Perhaps It's Time.,2010,8,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp8.html#Steven10,https://doi.org/10.1109/MSP.2010.110 +Patrick D. McDaniel,Bloatware Comes to the Smartphone.,2012,10,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp10.html#McDaniel12,https://doi.org/10.1109/MSP.2012.92 +David M. Nicol,Usable Global Network Access Policy for Process Control Systems.,2008,6,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp6.html#NicolSSS08,https://doi.org/10.1109/MSP.2008.159 +Peter G. Capek,Merry Christma: An Early Network Worm.,2003,1,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp1.html#CapekCW03,https://doi.org/10.1109/MSECP.2003.1236232 +Gilles Barthe,High-Assurance Cryptography: Cryptographic Software We Can Trust.,2015,13,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp13.html#Barthe15,https://doi.org/10.1109/MSP.2015.112 +Bruce Potter,High Time for Trusted Computing.,2009,7,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp7.html#Potter09,https://doi.org/10.1109/MSP.2009.156 +Logan O. Mailloux,Performance Evaluations of Quantum Key Distribution System Architectures.,2015,13,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp13.html#MaillouxGHBM15,https://doi.org/10.1109/MSP.2015.11 +Andreas Poller,Electronic Identity Cards for User Authentication - Promise and Practice.,2012,10,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp10.html#PollerWVT12,https://doi.org/10.1109/MSP.2011.148 +Steven M. Bellovin,Information Assurance Technology Forecast 2008.,2008,6,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp6.html#BellovinBBDDEV08,https://doi.org/10.1109/MSP.2008.13 +Brett Stone-Gross,Analysis of a Botnet Takeover.,2011,9,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp9.html#Stone-GrossCGKKV11,https://doi.org/10.1109/MSP.2010.144 +Daniel E. Geer Jr.,An Index of Cybersecurity.,2010,8,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp8.html#Geer10b,https://doi.org/10.1109/MSP.2010.171 +Martin R. Stytz,Protecting Personal Privacy: Hauling Down the Jolly Roger.,2005,3,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp3.html#Stytz05a,https://doi.org/10.1109/MSP.2005.102 +Greg Goth,News.,2003,1,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp1.html#GothA03a,https://doi.org/10.1109/MSECP.2003.1253561 +Earlence Fernandes,Internet of Things Security Research: A Rehash of Old Ideas or New Intellectual Challenges?,2017,15,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp15.html#FernandesREP17,https://doi.org/10.1109/MSP.2017.3151346 +Daniel Bilar,Degradation and Subversion through Subsystem Attacks.,2010,8,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp8.html#Bilar10,https://doi.org/10.1109/MSP.2010.122 +Lee Garber,News Briefs.,2011,9,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp9.html#Garber11e,https://doi.org/10.1109/MSP.2011.169 +Carol Woody,Considering Operational Security Risk during System Development.,2007,5,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp5.html#WoodyA07,https://doi.org/10.1109/MSP.2007.3 +Gary McGraw,Silver Bullet Talks with David Rice.,2011,9,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp9.html#McGraw11a,https://doi.org/10.1109/MSP.2011.38 +Brian Chess,Static Analysis in Motion.,2012,10,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp10.html#ChessBEPRW12,https://doi.org/10.1109/MSP.2012.79 +Douglas Maughan,"Crossing the ""Valley of Death"": Transitioning Cybersecurity Research into Practice.",2013,11,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp11.html#MaughanBLT13,https://doi.org/10.1109/MSP.2013.31 +Chris Valasek,Primitive-Chaining Exploits: A Real-World Example.,2012,10,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp10.html#Valasek12,https://doi.org/10.1109/MSP.2012.105 +Luther Martin,Identity-Based Encryption and Beyond.,2008,6,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp6.html#Martin08,https://doi.org/10.1109/MSP.2008.120 +Robert L. Popp,Countering Terrorism through Information and Privacy Protection Technologies.,2006,4,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp4.html#PoppP06,https://doi.org/10.1109/MSP.2006.147 +Valerio Bellandi,Toward Economic-Aware Risk Assessment on the Cloud.,2015,13,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp13.html#BellandiCDGZ15,https://doi.org/10.1109/MSP.2015.138 +Michael A. Caloyannides,The Cost of Convenience: A Faustian Deal.,2004,2,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp2.html#Caloyannides04a,https://doi.org/10.1109/MSECP.2004.1281255 +Brandi Ortega,News Briefs.,2008,6,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp6.html#Ortega08a,https://doi.org/10.1109/MSP.2008.40 +Matt Bishop,About Penetration Testing.,2007,5,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp5.html#Bishop07,https://doi.org/10.1109/MSP.2007.159 +Sai Teja Peddinti,User Anonymity on Twitter.,2017,15,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp15.html#PeddintiRC17,https://doi.org/10.1109/MSP.2017.74 +Steven M. Bellovin,Military Cybersomethings.,2013,11,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp11.html#Bellovin13,https://doi.org/10.1109/MSP.2013.63 +Camilo H. Viecco,A Life or Death InfoSec Subversion.,2008,6,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp6.html#VieccoC08,https://doi.org/10.1109/MSP.2008.109 +John Linn,Technology and Web User Data Privacy: A Survey of Risks and Countermeasures.,2005,3,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp3.html#Linn05,https://doi.org/10.1109/MSP.2005.27 +Tal Moran,The Phish-Market Protocol: Secure Sharing Between Competitors.,2010,8,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp8.html#MoranM10,https://doi.org/10.1109/MSP.2010.138 +Primal Wijesekera,Dynamically Regulating Mobile Application Permissions.,2018,16,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp16.html#WijesekeraBTREW18,https://doi.org/10.1109/MSP.2018.1331031 +Matt Bishop,Teaching Security Stealthily.,2011,9,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp9.html#Bishop11,https://doi.org/10.1109/MSP.2011.43 +Michael E. Locasto,Bickering In-Depth: Rethinking the Composition of Competing Security Systems.,2009,7,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp7.html#LocastoBS09,https://doi.org/10.1109/MSP.2009.189 +Jay Aikat,Rethinking Security in the Era of Cloud Computing.,2017,15,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp15.html#AikatACJRRSS17,https://doi.org/10.1109/MSP.2017.80 +Simon Byers,Information Leakage Caused by Hidden Data in Published Documents.,2004,2,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp2.html#Byers04,https://doi.org/10.1109/MSECP.2004.1281241 +Patrick Traynor,FinTechSec: Addressing the Security Challenges of Digital Financial Services.,2017,15,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp15.html#TraynorBBR17,https://doi.org/10.1109/MSP.2017.3681060 +Gary McGraw,Silver Bullet Talks with Bob Blakley.,2009,7,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp7.html#McGraw09c,https://doi.org/10.1109/MSP.2009.136 +Brandi Ortega,News Briefs.,2007,5,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp5.html#Ortega07c,https://doi.org/10.1109/MSP.2007.93 +Robert Lyda,Using Entropy Analysis to Find Encrypted and Packed Malware.,2007,5,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp5.html#LydaH07,https://doi.org/10.1109/MSP.2007.48 +Iñaki Goirizelaia,An Optical Scan E-Voting System based on N-Version Programming.,2008,6,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp6.html#GoirizelaiaHUS08,https://doi.org/10.1109/MSP.2008.57 +Thomas Weigold,Remote Client Authentication.,2008,6,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp6.html#WeigoldKB08,https://doi.org/10.1109/MSP.2008.93 +Michael A. Caloyannides,Privacy vs. Information Technology.,2003,1,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp1.html#Caloyannides03,https://doi.org/10.1109/MSECP.2003.1177005 +Neal Krawetz,Anti-Honeypot Technology.,2004,2,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp2.html#Krawetz04,https://doi.org/10.1109/MSECP.2004.1264861 +Ann Cavoukian,Privacy: Front and Center.,2012,10,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp10.html#CavoukianDFHLS12,https://doi.org/10.1109/MSP.2012.123 +Sean Peisert,Designed-in Security for Cyber-Physical Systems.,2014,12,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp12.html#PeisertMNKS14,https://doi.org/10.1109/MSP.2014.90 +Lilian Edwards,"Enslaving the Algorithm: From a ""Right to an Explanation"" to a ""Right to Better Decisions""?",2018,16,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp16.html#EdwardsV18,https://doi.org/10.1109/MSP.2018.2701152 +Benjamin Edelman,Least-Cost Avoiders in Online Fraud and Abuse.,2010,8,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp8.html#Edelman10,https://doi.org/10.1109/MSP.2010.132 +Bruce Schneier,A Taxonomy of Social Networking Data.,2010,8,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp8.html#Schneier10a,https://doi.org/10.1109/MSP.2010.118 +Gary McGraw,Silver Bullet Talks with Jamie Butler.,2016,14,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp14.html#McGraw16a,https://doi.org/10.1109/MSP.2016.38 +Andy Steingruebl,Software Assumptions Lead to Preventable Errors.,2009,7,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp7.html#SteingrueblP09,https://doi.org/10.1109/MSP.2009.107 +Micah Sherr,Signaling Vulnerabilities in Wiretapping Systems.,2005,3,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp3.html#SherrCCB05,https://doi.org/10.1109/MSP.2005.160 +Michael Lesk,The Price of Privacy.,2012,10,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp10.html#Lesk12c,https://doi.org/10.1109/MSP.2012.133 +Kittur S. Shankar,Certifying Open Source-The Linux Experience.,2004,2,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp2.html#ShankarK04,https://doi.org/10.1109/MSP.2004.96 +Gunnar Peterson,Introduction to identity management risk metrics.,2006,4,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp4.html#Peterson06,https://doi.org/10.1109/MSP.2006.94 +Alexander Pretschner,Usage Control Enforcement: Present and Future.,2008,6,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp6.html#PretschnerHSSW08,https://doi.org/10.1109/MSP.2008.101 +Michael A. Caloyannides,Is Privacy Really Constraining Security or Is this a Red Herring?,2004,2,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp2.html#Caloyannides04c,https://doi.org/10.1109/MSP.2004.50 +Matthew Green 0001,The Threat in the Cloud.,2013,11,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp11.html#Green13,https://doi.org/10.1109/MSP.2013.20 +Daniel J. Ryan,Two Views on Security Software Liability: Let the Legal System Decide.,2003,1,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp1.html#Ryan03,https://doi.org/10.1109/MSECP.2003.1176999 +Gary McGraw,Silver Bullet Talks with Gunnar Peterson.,2009,7,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp7.html#McGraw09,https://doi.org/10.1109/MSP.2009.20 +Robert Gellman,Willis Ware's Lasting Contribution to Privacy: Fair Information Practices.,2014,12,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp12.html#Gellman14,https://doi.org/10.1109/MSP.2014.82 +Aurélien Faravelon,Chasing Data in the Intermediation Era: Economy and Security at Stake.,2016,14,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp14.html#FaravelonFG16,https://doi.org/10.1109/MSP.2016.50 +Kjell Jørgen Hole,Lessons from the Norwegian ATM System.,2007,5,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp5.html#HoleMKT07,https://doi.org/10.1109/MSP.2007.168 +Daniel E. Geer Jr.,A Time to Rethink.,2010,8,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp8.html#Geer10a,https://doi.org/10.1109/MSP.2010.119 +Peter Torr,Demystifying the Threat-Modeling Process.,2005,3,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp3.html#Torr05,https://doi.org/10.1109/MSP.2005.119 +Jim Hearn,Moving Forward?,2003,1,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp1.html#Hearn03a,https://doi.org/10.1109/MSECP.2003.1193215 +Bill McCarty,Automated Identity Theft.,2003,1,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp1.html#McCarty03a,https://doi.org/10.1109/MSECP.2003.1236244 +Ian Koss,Authorship Is Continuous: Managing Code Plagiarism.,2013,11,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp11.html#KossF13,https://doi.org/10.1109/MSP.2013.26 +Kirk J. Nahra,HIPAA Security Enforcement Is Here.,2008,6,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp6.html#Nahra08,https://doi.org/10.1109/MSP.2008.143 +Gary McGraw,Silver Bullet Speaks to Avi Rubin.,2006,4,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp4.html#McGraw06,https://doi.org/10.1109/MSP.2006.78 +Thomas A. Berson,Cyberwarfare.,2011,9,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp9.html#BersonD11,https://doi.org/10.1109/MSP.2011.132 +Gary McGraw,Silver Bullet Talks with Jacob West.,2016,14,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp14.html#McGraw16b,https://doi.org/10.1109/MSP.2016.63 +Michael Lesk,The Old Is New Again.,2013,11,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp11.html#Lesk13c,https://doi.org/10.1109/MSP.2013.154 +Sean W. Smith,Pretending that Systems Are Secure.,2005,3,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp3.html#Smith05a,https://doi.org/10.1109/MSP.2005.155 +David Ahmad,The Contemporary Software Security Landscape.,2007,5,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp5.html#Ahmad07,https://doi.org/10.1109/MSP.2007.73 +,Letters to the Editor.,2004,2,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp2.html#X04d,https://doi.org/10.1109/MSP.2004.51 +,Letters to the Editor.,2004,2,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp2.html#X04c,https://doi.org/10.1109/MSP.2004.15 +Daniel E. Geer Jr.,Type II Reverse Engineering [For Good Measure].,2008,6,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp6.html#GeerC08c,https://doi.org/10.1109/MSP.2008.132 +Martin R. Stytz,Book Reviews.,2004,2,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp2.html#Stytz04b,https://doi.org/10.1109/MSECP.2004.1281235 +Herbert H. Thompson,Application Penetration Testing.,2005,3,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp3.html#Thompson05,https://doi.org/10.1109/MSP.2005.3 +Susan Landau 0001,Overview of Cyber Security: A Crisis of Prioritization.,2005,3,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp3.html#LandauSLS05,https://doi.org/10.1109/MSP.2005.76 +Steven M. Bellovin,Seers and Craftspeople.,2007,5,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp5.html#Bellovin07a,https://doi.org/10.1109/MSP.2007.120 +Jim Hearn,Does the Common Criteria Paradigm Have a Future?,2004,2,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp2.html#Hearn04,https://doi.org/10.1109/MSECP.2004.1264857 +Steven M. Bellovin,Identity and Security.,2010,8,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp8.html#Bellovin10,https://doi.org/10.1109/MSP.2010.71 +Sean F. Kane,Virtual Judgment: Legal Implications of Online Gaming.,2009,7,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp7.html#Kane09,https://doi.org/10.1109/MSP.2009.81 +Paula J. Bruening,Data Tagging for New Information Governance Models.,2010,8,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp8.html#BrueningW10,https://doi.org/10.1109/MSP.2010.147 +Michael Lesk,The Clouds Roll By.,2012,10,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp10.html#Lesk12a,https://doi.org/10.1109/MSP.2012.81 +Jim Hearn,What Works?,2003,1,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp1.html#Hearn03d,https://doi.org/10.1109/MSECP.2003.1236240 +Eric Osterweil,Interadministrative Challenges in Managing DNSKEYs.,2009,7,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp7.html#OsterweilZ09,https://doi.org/10.1109/MSP.2009.126 +Daniel E. Geer Jr.,A Doubt of the Benefit.,2009,7,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp7.html#GeerC09b,https://doi.org/10.1109/MSP.2009.57 +Patrick D. McDaniel,Security and Privacy Challenges in the Smart Grid.,2009,7,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp7.html#McDanielM09,https://doi.org/10.1109/MSP.2009.76 +Dave Ahmad,The Confused Deputy and the Domain Hijacker.,2008,6,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp6.html#AhmadA08,https://doi.org/10.1109/MSP.2008.25 +Ying-Dar Lin,Redefining Security Criteria for Networking Devices with Case Studies.,2014,12,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp12.html#LinLT14,https://doi.org/10.1109/MSP.2013.76 +Ivan Arce,A Surprise Party (on Your Computer)?,2007,5,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp5.html#Arce07,https://doi.org/10.1109/MSP.2007.27 +Homa Alemzadeh,Analysis of Safety-Critical Computer Failures in Medical Devices.,2013,11,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp11.html#AlemzadehIKR13,https://doi.org/10.1109/MSP.2013.49 +Jeremy Epstein,Privacy is Context Dependent.,2017,15,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp15.html#Epstein17,https://doi.org/10.1109/MSP.2017.31 +Eugene H. Spafford,Desert Island Books.,2006,4,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp4.html#Spafford06,https://doi.org/10.1109/MSP.2006.150 +Jeff Jianxin Yan,An Investigation of Cheating in Online Games.,2009,7,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp7.html#YanR09,https://doi.org/10.1109/MSP.2009.60 +Aaron Beuhring,Beyond Blacklisting: Cyberdefense in the Era of Advanced Persistent Threats.,2014,12,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp12.html#BeuhringS14,https://doi.org/10.1109/MSP.2014.86 +Dawn N. Jutla,Sociotechnical Architecture for Online Privacy.,2005,3,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp3.html#JutlaB05,https://doi.org/10.1109/MSP.2005.50 +Shay Gueron,Memory Encryption for General-Purpose Processors.,2016,14,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp14.html#Gueron16,https://doi.org/10.1109/MSP.2016.124 +Simson L. Garfinkel,RFID Privacy: An Overview of Problems and Proposed Solutions.,2005,3,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp3.html#GarfinkelJP05,https://doi.org/10.1109/MSP.2005.78 +Carlisle M. Adams,Building Secure Web-Based Environments: Understanding Research Interrelationships through a Construction Metaphor.,2005,3,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp3.html#Adams05,https://doi.org/10.1109/MSP.2005.7 +George Lawton,News Briefs.,2010,8,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp8.html#Lawton10a,https://doi.org/10.1109/MSP.2010.170 +Lidong Chen,Cryptography Standards in Quantum Time: New Wine in an Old Wineskin?,2017,15,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp15.html#Chen17,https://doi.org/10.1109/MSP.2017.3151339 +Vincent Lenders,Gaining an Edge in Cyberspace with Advanced Situational Awareness.,2015,13,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp13.html#LendersTB15,https://doi.org/10.1109/MSP.2015.30 +Bernardo A. Huberman,Valuating Privacy.,2005,3,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp3.html#HubermanAF05,https://doi.org/10.1109/MSP.2005.137 +Daniel E. Geer Jr.,Strong Attractors.,2008,6,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp6.html#GeerC08b,https://doi.org/10.1109/MSP.2008.105 +John Scott-Railton,Security for the High-Risk User: Separate and Unequal.,2016,14,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp14.html#Scott-Railton16,https://doi.org/10.1109/MSP.2016.22 +Rachid El Bansarkhani,PQChain: Strategic Design Decisions for Distributed Ledger Technologies against Future Threats.,2018,16,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp16.html#BansarkhaniGB18,https://doi.org/10.1109/MSP.2018.3111246 +Virgil D. Gligor,Information Assurance Technology Forecast 2005.,2006,4,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp4.html#GligorHKLLM06,https://doi.org/10.1109/MSP.2006.14 +Michael Lesk,What Is Information Worth?,2011,9,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp9.html#Lesk11,https://doi.org/10.1109/MSP.2011.23 +Dirk Balfanz,The Future of Authentication.,2012,10,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp10.html#BalfanzCEJKMMO12,https://doi.org/10.1109/MSP.2012.24 +Edward Ball,Patient Privacy in Electronic Prescription Transfer.,2003,1,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp1.html#BallCM03,https://doi.org/10.1109/MSECP.2003.1193217 +Julie Steinke,Improving Cybersecurity Incident Response Team Effectiveness Using Teams-Based Research.,2015,13,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp13.html#SteinkeBFWTRZDT15,https://doi.org/10.1109/MSP.2015.71 +Jeff Stein,The End of National Security Reporting?,2013,11,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp11.html#Stein13,https://doi.org/10.1109/MSP.2013.100 +Ivan Arce,More Bang For the Bug: An Account of 2003's Attack Trends.,2004,2,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp2.html#Arce04,https://doi.org/10.1109/MSECP.2004.1264858 +John Steven,State of Application Assessment.,2008,6,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp6.html#Steven08,https://doi.org/10.1109/MSP.2008.155 +Sergey Bratus,"Beyond Planted Bugs in ""Trusting Trust"": The Input-Processing Frontier.",2014,12,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp12.html#BratusDLPSS14,https://doi.org/10.1109/MSP.2014.1 +Heather Drinan,News Briefs.,2005,3,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp3.html#DrinanK05,https://doi.org/10.1109/MSP.2005.130 +Mikhail A. Lisovich,Inferring Personal Information from Demand-Response Systems.,2010,8,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp8.html#LisovichMW10,https://doi.org/10.1109/MSP.2010.40 +David McKinney,New Hurdles for Vulnerability Disclosure.,2008,6,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp6.html#McKinney08,https://doi.org/10.1109/MSP.2008.39 +Laszlo Szekeres,Eternal War in Memory.,2014,12,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp12.html#SzekeresPWS14,https://doi.org/10.1109/MSP.2014.44 +Steven M. Bellovin,What Should Crypto Look Like?,2014,12,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp12.html#Bellovin14b,https://doi.org/10.1109/MSP.2014.131 +Qing-Yun Li,The Public Security and Personal Privacy Survey: Biometric Technology in Hong Kong.,2016,14,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp14.html#LiZ16,https://doi.org/10.1109/MSP.2016.88 +Gary McGraw,Silver Bullet Talks with Nate Fick.,2014,12,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp12.html#McGraw14c,https://doi.org/10.1109/MSP.2014.77 +Ahmad-Reza Sadeghi,Games without Frontiers: Whither Information Security and Privacy?,2016,14,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp14.html#Sadeghi16,https://doi.org/10.1109/MSP.2016.16 +Marc Dacier,Security Challenges and Opportunities of Software-Defined Networking.,2017,15,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp15.html#DacierKCKD17,https://doi.org/10.1109/MSP.2017.46 +Edward B. Talbot,Demythifying Cybersecurity.,2010,8,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp8.html#TalbotFB10,https://doi.org/10.1109/MSP.2010.95 +Steven M. Bellovin,Walls and Gates.,2013,11,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp11.html#Bellovin13a,https://doi.org/10.1109/MSP.2013.157 +Michael Lesk,Staffing for Security: Don't Optimize.,2014,12,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp12.html#Lesk14b,https://doi.org/10.1109/MSP.2014.78 +Michael A. Caloyannides,Engineering or Sloganeering? The Counterattack on Privacy.,2003,1,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp1.html#Caloyannides03a,https://doi.org/10.1109/MSECP.2003.1193219 +Nir Kshetri,China's Data Privacy Regulations: A Tricky Tradeoff between ICT's Productive Utilization and Cybercontrol.,2014,12,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp12.html#Kshetri14,https://doi.org/10.1109/MSP.2013.105 +Glenn A. Fink,Defense on the Move: Ant-Based Cyber Defense.,2014,12,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp12.html#FinkHMF14,https://doi.org/10.1109/MSP.2014.21 +Steven M. Bellovin,The Puzzle of Privacy.,2008,6,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp6.html#Bellovin08a,https://doi.org/10.1109/MSP.2008.129 +Václav Matyás Jr.,Toward Reliable User Authentication through Biometrics.,2003,1,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp1.html#MatyasR03,https://doi.org/10.1109/MSECP.2003.1203221 +Gary McGraw,Silver Bullet Talks with Bill Cheswick [Interview].,2008,6,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp6.html#McGraw08d,https://doi.org/10.1109/MSP.2008.127 +Gary McGraw,Silver Bullet Speaks with Ed Felten.,2006,4,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp4.html#Mcgraw06x,https://doi.org/10.1109/MSP.2006.164 +Scott Forbes,Privacy Law Resource for Students and Professionals.,2004,2,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp2.html#Forbes04,https://doi.org/10.1109/MSP.2004.107 +Michael A. Caloyannides,"Digital ""Evidence"" and Reasonable Doubt.",2003,1,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp1.html#Caloyannides03e,https://doi.org/10.1109/MSECP.2003.1266366 +Gary McGraw,Silver Bullet Talks with Elinor Mills.,2011,9,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp9.html#McGraw11d,https://doi.org/10.1109/MSP.2011.140 +Roland L. Trope,Hardening the Target.,2008,6,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp6.html#TropeWA08,https://doi.org/10.1109/MSP.2008.118 +Gary McGraw,Silver Bullet Talks with Steven M. Bellovin and Matthew Green.,2015,13,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp13.html#McGraw15e,https://doi.org/10.1109/MSP.2015.128 +Roger Dingledine,Deploying Low-Latency Anonymity: Design Challenges and Social Factors.,2007,5,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp5.html#DingledineMS07,https://doi.org/10.1109/MSP.2007.108 +Matthew Tischer,The Danger of USB Drives.,2017,15,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp15.html#TischerDBB17,https://doi.org/10.1109/MSP.2017.41 +Stephen Bono,Reducing the Attack Surface in Massively Multiplayer Online Role-Playing Games.,2009,7,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp7.html#BonoCLM09,https://doi.org/10.1109/MSP.2009.75 +Eugene H. Spafford,James P. Anderson: An Information Security Pioneer.,2008,6,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp6.html#Spafford08,https://doi.org/10.1109/MSP.2008.15 +Roland L. Trope,Lessons for laptops from the 18th century.,2006,4,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp4.html#TropeP06,https://doi.org/10.1109/MSP.2006.97 +Jennifer L. Bayuk,Systems Security Engineering.,2011,9,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp9.html#Bayuk11,https://doi.org/10.1109/MSP.2011.41 +Jill Slay,Computer Security Education and Research in Australia.,2006,4,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp4.html#SlayT06,https://doi.org/10.1109/MSP.2006.115 +Susan Landau 0001,Security and Privacy Landscape in Emerging Technologies.,2008,6,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp6.html#Landau08,https://doi.org/10.1109/MSP.2008.95 +Michael R. Grimaila,Maximizing Business Information Security's Educational Value.,2004,2,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp2.html#Grimaila04,https://doi.org/10.1109/MSECP.2004.1264855 +Michael Lesk,The New Front Line: Estonia under Cyberassault.,2007,5,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp5.html#Lesk07a,https://doi.org/10.1109/MSP.2007.98 +O. Sami Saydjari,Launching into the Cyberspace Race: An Interview with Melissa E. Hathaway.,2008,6,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp6.html#Saydjari08,https://doi.org/10.1109/MSP.2008.147 +Peng Shaunghe,Enhancing PC Security with a U-Key.,2006,4,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp4.html#ShaungheZ06,https://doi.org/10.1109/MSP.2006.118 +Salvatore J. Stolfo,Worm and Attack Early Warning.,2004,2,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp2.html#Stolfo04,https://doi.org/10.1109/MSP.2004.28 +Nir Drucker,Faster Secure Cloud Computations with a Trusted Proxy.,2017,15,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp15.html#DruckerGP17,https://doi.org/10.1109/MSP.2017.4251121 +Steven M. Bellovin,Security as a Systems Property.,2009,7,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp7.html#BellovinC09,https://doi.org/10.1109/MSP.2009.134 +Nate Lawson,Side-Channel Attacks on Cryptographic Software.,2009,7,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp7.html#Lawson09,https://doi.org/10.1109/MSP.2009.165 +Michael Howard,Inside the Windows Security Push.,2003,1,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp1.html#HowardL03,https://doi.org/10.1109/MSECP.2003.1176996 +James McGovern,Silver Bullet Talks with Gary McGraw.,2009,7,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp7.html#McGovern09,https://doi.org/10.1109/MSP.2009.79 +George Cybenko,From the Editors: Don't Bring a Knife to a Gunfight.,2004,2,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp2.html#Cybenko04,https://doi.org/10.1109/MSECP.2004.1281233 +Brent Kesler,News Briefs.,2006,4,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp4.html#KeslerD06,https://doi.org/10.1109/MSP.2006.76 +Sean Peisert,Control Systems Security from the Front Lines.,2014,12,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp12.html#PeisertMBDPT14,https://doi.org/10.1109/MSP.2014.112 +Mike Andrews,Guest Editor's Introduction: The State of Web Security.,2006,4,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp4.html#Andrews06,https://doi.org/10.1109/MSP.2006.88 +Lance Spitzner,The Honeynet Project: Trapping the Hackers.,2003,1,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp1.html#Spitzner03,https://doi.org/10.1109/MSECP.2003.1193207 +Gary McGraw,Silver Bullet Talks with Gillian Hayes.,2010,8,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp8.html#McGraw10a,https://doi.org/10.1109/MSP.2010.80 +Cynthia E. Irvine,Guest Editors' Introduction: Engineering Secure Systems.,2011,9,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp9.html#IrvineR11,https://doi.org/10.1109/MSP.2011.10 +Daniel Ragsdale,Information Assurance the West Point Way.,2003,1,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp1.html#RagsdaleWD03,https://doi.org/10.1109/MSECP.2003.1236238 +Mohammed Aamir Ali,Does the Online Card Payment Landscape Unwittingly Facilitate Fraud?,2017,15,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp15.html#AliAEM17,https://doi.org/10.1109/MSP.2017.27 +Hilarie Orman,Mathematics and Physics Build a New Future for Secure Communication [Guest editors' introduction].,2015,13,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp13.html#OrmanP15,https://doi.org/10.1109/MSP.2015.10 +Michael Lesk,Georgia on My Mind.,2012,10,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp10.html#Lesk12b,https://doi.org/10.1109/MSP.2012.97 +Eric Grosse,Authentication at Scale.,2013,11,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp11.html#GrosseU13,https://doi.org/10.1109/MSP.2012.162 +Michael Lesk,South Korea's Way to the Future.,2007,5,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp5.html#Lesk07,https://doi.org/10.1109/MSP.2007.42 +Fariborz Farahmand,Decision and Experienced Utility: Computational Applications in Privacy Decision Making.,2017,15,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp15.html#Farahmand17,https://doi.org/10.1109/MSP.2017.4251104 +Sarah Zatko,Rethinking the Role of Security in Undergraduate Education.,2016,14,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp14.html#Zatko16,https://doi.org/10.1109/MSP.2016.40 +Brad Arkin,Software Penetration Testing.,2005,3,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp3.html#ArkinSM05,https://doi.org/10.1109/MSP.2005.23 +Susan Landau 0001,Making Sense from Snowden: What's Significant in the NSA Surveillance Revelations.,2013,11,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp11.html#Landau13a,https://doi.org/10.1109/MSP.2013.90 +Gary McGraw,Silver Bullet Talks with Jim Manico.,2016,14,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp14.html#McGraw16d,https://doi.org/10.1109/MSP.2016.126 +Rosario Gennaro,Randomness in Cryptography.,2006,4,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp4.html#Gennaro06,https://doi.org/10.1109/MSP.2006.49 +Marc Donner,Post-Apocalypse Now.,2003,1,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp1.html#Donner03a,https://doi.org/10.1109/MSECP.2003.1193211 +Gary McGraw,Silver Bullet Talks with Ralph Langner.,2011,9,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp9.html#McGraw11b,https://doi.org/10.1109/MSP.2011.66 +Gary McGraw,Silver Bullet Talks with the IEEE Center for Secure Design.,2014,12,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp12.html#McGraw14e,https://doi.org/10.1109/MSP.2014.126 +George Cybenko,Why Johnny Can't Evaluate Security Risk.,2006,4,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp4.html#Cybenko06,https://doi.org/10.1109/MSP.2006.30 +Steven M. Bellovin,Security Think.,2011,9,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp9.html#Bellovin11a,https://doi.org/10.1109/MSP.2011.172 +,Letters to the Editors.,2004,2,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp2.html#X04a,http://doi.ieeecomputersociety.org/10.1109/MSP.2004.10000 +Apu Kapadia,A Case (Study) For Usability in Secure Email Communication.,2007,5,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp5.html#Kapadia07,https://doi.org/10.1109/MSP.2007.25 +Steven M. Bellovin,Perceptions and Reality.,2010,8,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp8.html#Bellovin10a,https://doi.org/10.1109/MSP.2010.160 +Iacovos Kirlappos,Security Education against Phishing: A Modest Proposal for a Major Rethink.,2012,10,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp10.html#KirlapposS12,https://doi.org/10.1109/MSP.2011.179 +Brandi Ortega,News Briefs.,2007,5,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp5.html#Ortega07d,https://doi.org/10.1109/MSP.2007.115 +David Ladd,A Software Procurement and Security Primer.,2006,4,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp4.html#Ladd06,https://doi.org/10.1109/MSP.2006.142 +Gary McGraw,Silver Bullet Talks with Bart Preneel.,2015,13,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp13.html#McGraw15d,https://doi.org/10.1109/MSP.2015.101 +Jostein Jensen,Federated Identity Management - We Built It* Why Won't They Come?,2013,11,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp11.html#JensenJ13,https://doi.org/10.1109/MSP.2012.135 +Panayiotis Kotzanikolaou,Data Retention and Privacy in Electronic Communications.,2008,6,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp6.html#Kotzanikolaou08,https://doi.org/10.1109/MSP.2008.114 +Hadi Asghari,Economics of Fighting Botnets: Lessons from a Decade of Mitigation.,2015,13,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp13.html#AsghariEB15,https://doi.org/10.1109/MSP.2015.110 +Jean Paul Degabriele,Provable Security in the Real World.,2011,9,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp9.html#DegabrielePW11,https://doi.org/10.1109/MSP.2010.200 +Michael F. Thompson,Individualizing Cybersecurity Lab Exercises with Labtainers.,2018,16,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp16.html#ThompsonI18,https://doi.org/10.1109/MSP.2018.1870862 +Heather Dewey-Hagborg,Stranger Visions: A Provocation.,2013,11,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp11.html#Dewey-Hagborg13,https://doi.org/10.1109/MSP.2013.152 +Marjory S. Blumenthal,Hide and Seek in the Cloud.,2010,8,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp8.html#Blumenthal10,https://doi.org/10.1109/MSP.2010.70 +Anastasios N. Bikos,LTE/SAE Security Issues on 4G Wireless Networks.,2013,11,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp11.html#BikosS13,https://doi.org/10.1109/MSP.2012.136 +Phillip Rogaway,Practice-Oriented Provable Security and the Social Construction of Cryptography.,2016,14,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp14.html#Rogaway16,https://doi.org/10.1109/MSP.2016.122 +Robin Bloomfield,Open Assurance.,2013,11,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp11.html#Bloomfield13,https://doi.org/10.1109/MSP.2013.119 +Sarah Meiklejohn,Top Ten Obstacles along Distributed Ledgers Path to Adoption.,2018,16,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp16.html#Meiklejohn18,https://doi.org/10.1109/MSP.2018.3111235 +Chip Elliott,Quantum Cryptography.,2004,2,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp2.html#Elliott04,https://doi.org/10.1109/MSP.2004.54 +Scott O. Bradner,The End of End-to-End Security?,2006,4,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp4.html#Bradner06,https://doi.org/10.1109/MSP.2006.54 +Hassan Aljifri,IP Traceback: A New Denial-of-Service Deterrent?,2003,1,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp1.html#Aljifri03,https://doi.org/10.1109/MSECP.2003.1203219 +Daniel E. Geer,Provenance.,2016,14,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp14.html#Geer16,https://doi.org/10.1109/MSP.2016.34 +Jeremy Epstein,Reflections of an NSF Program Officer.,2016,14,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp14.html#Epstein16,https://doi.org/10.1109/MSP.2016.45 +Michael Bailey,The Menlo Report.,2012,10,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp10.html#BaileyDKM12,https://doi.org/10.1109/MSP.2012.52 +Lee Garber,News Briefs.,2011,9,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp9.html#Garber11d,https://doi.org/10.1109/MSP.2011.137 +Michael E. Locasto,A Failure-Based Discipline of Trustworthy Information Systems.,2011,9,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp9.html#LocastoL11,https://doi.org/10.1109/MSP.2011.77 +Aviel D. Rubin,New Research Results for Electronic Voting.,2008,6,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp6.html#RubinJ08,https://doi.org/10.1109/MSP.2008.68 +Greg Goth,News.,2003,1,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp1.html#GothA03,https://doi.org/10.1109/MSECP.2003.1203215 +Gary McGraw,Silver Bullet Talks with Ross Anderson.,2007,5,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp5.html#McGrawA07,https://doi.org/10.1109/MSP.2007.94 +Steven M. Bellovin,Fighting the Last War.,2012,10,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp10.html#Bellovin12,https://doi.org/10.1109/MSP.2012.66 +Daniel E. Geer Jr.,Evidently Evidentiary.,2006,4,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp4.html#Geer06a,https://doi.org/10.1109/MSP.2006.152 +David E. Bakken,Data Obfuscation: Anonymity and Desensitization of Usable Data Sets.,2004,2,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp2.html#BakkenPBFP04,https://doi.org/10.1109/MSP.2004.97 +Shari Lawrence Pfleeger,Spooky Lessons.,2007,5,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp5.html#Pfleeger07,https://doi.org/10.1109/MSP.2007.122 +Franziska Roesner,Designing Application Permission Models that Meet User Expectations.,2017,15,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp15.html#Roesner17,https://doi.org/10.1109/MSP.2017.3 +Alec Yasinsac,Computer Forensics Education.,2003,1,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp1.html#YasinsacEMPS03,https://doi.org/10.1109/MSECP.2003.1219052 +Alec Yasinsac,Help! Is There a Trustworthy-Systems Doctor in the House?,2013,11,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp11.html#YasinsacI13,https://doi.org/10.1109/MSP.2013.10 +Gary McGraw,Silver Bullet Talks with Steve Bellovin.,2013,11,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp11.html#McGraw13a,https://doi.org/10.1109/MSP.2013.41 +Karthikeyan Bhargavan,miTLS: Verifying Protocol Implementations against Real-World Attacks.,2016,14,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp14.html#BhargavanFK16,https://doi.org/10.1109/MSP.2016.123 +Kjell Jørgen Hole,Case Study: Online Banking Security.,2006,4,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp4.html#HoleMT06,https://doi.org/10.1109/MSP.2006.36 +Mathias Lécuyer,Enhancing Selectivity in Big Data.,2018,16,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp16.html#LecuyerSGHS18,https://doi.org/10.1109/MSP.2018.1331036 +Edward Sobiesk,The Cost of Free Web Tools.,2007,5,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp5.html#SobieskC07,https://doi.org/10.1109/MSP.2007.74 +Bruce Schneier,The Zotob Storm.,2005,3,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp3.html#Schneier05a,https://doi.org/10.1109/MSP.2005.163 +Kat Krol,Effortless Privacy Negotiations.,2015,13,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp13.html#KrolP15,https://doi.org/10.1109/MSP.2015.51 +Laurianne McLaughlin,Philip Zimmermann on What's Next after PGP.,2006,4,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp4.html#McLaughlin06,https://doi.org/10.1109/MSP.2006.20 +E. Michael Power,Acting Responsibly with Geospatial Data.,2005,3,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp3.html#PowerT05a,https://doi.org/10.1109/MSP.2005.141 +John D. McLean,Letter to the Editor.,2018,16,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp16.html#McLeanHO18,https://doi.org/10.1109/MSP.2018.2701158 +Dan Boneh,Building a Community of Real-World Cryptographers.,2016,14,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp14.html#BonehPS16,https://doi.org/10.1109/MSP.2016.127 +Tatiana Bradley,Genomic Security (Lest We Forget).,2017,15,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp15.html#BradleyDT17,https://doi.org/10.1109/MSP.2017.3681055 +Yuen-Yan Chan,Teaching for Conceptual Change in Security Awareness.,2008,6,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp6.html#ChanW08,https://doi.org/10.1109/MSP.2008.157 +Altair Olivo Santin,A Three-Ballot-Based Secure Electronic Voting System.,2008,6,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp6.html#SantinCM08,https://doi.org/10.1109/MSP.2008.56 +Herbert H. Thompson,Why Security Testing Is Hard.,2003,1,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp1.html#Thompson03,https://doi.org/10.1109/MSECP.2003.1219078 +David M. Nicol,Modeling and Simulation in Security Evaluation.,2005,3,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp3.html#Nicol05,https://doi.org/10.1109/MSP.2005.129 +Ross J. Anderson,Guest Editors' Introduction: Economics of Information Security.,2005,3,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp3.html#AndersonS05,https://doi.org/10.1109/MSP.2005.14 +,Letters to the Editor.,2009,7,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp7.html#X09,https://doi.org/10.1109/MSP.2009.95 +Daniel E. Geer Jr.,Eisenhower Revisited.,2011,9,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp9.html#Geer11e,https://doi.org/10.1109/MSP.2011.79 +Marc Beunardeau,Cdoe Obofsucaitn: Securing Software from Within.,2016,14,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp14.html#BeunardeauCGN16a,https://doi.org/10.1109/MSP.2016.60 +Marc Donner,From the Editors: A Witty Lesson.,2004,2,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp2.html#Donner04d,https://doi.org/10.1109/MSP.2004.44 +Cynthia E. Irvine,CyberCIEGE: Gaming for Information Assurance.,2005,3,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp3.html#IrvineTA05,https://doi.org/10.1109/MSP.2005.64 +Ivan Arce,The Kernel Craze.,2004,2,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp2.html#Arce04a,https://doi.org/10.1109/MSP.2004.25 +Ryan Calo,Tiny Salespeople: Mediated Transactions and the Internet of Things.,2013,11,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp11.html#Calo13,https://doi.org/10.1109/MSP.2013.127 +Bernd Carsten Stahl,Ethics and Privacy in AI and Big Data: Implementing Responsible Research and Innovation.,2018,16,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp16.html#StahlW18,https://doi.org/10.1109/MSP.2018.2701164 +M. Angela Sasse,Scaring and Bullying People into Security Won't Work.,2015,13,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp13.html#Sasse15,https://doi.org/10.1109/MSP.2015.65 +Gary McGraw,Silver Bullet Talks with Mikko Hypponen [Interview].,2007,5,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp5.html#McGraw07d,https://doi.org/10.1109/MSP.2007.177 +Ryan W. Gardner,Are Patched Machines Really Fixed?,2009,7,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp7.html#GardnerBK09,https://doi.org/10.1109/MSP.2009.116 +Dragos Ruiu,Learning from Information Security History.,2006,4,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp4.html#Ruiu06,https://doi.org/10.1109/MSP.2006.17 +Gunnar Peterson,Don't Trust. And Verify: A Security Architecture Stack for the Cloud.,2010,8,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp8.html#Peterson10,https://doi.org/10.1109/MSP.2010.149 +Gary McGraw,Silver Bullet Talks with Bart Miller.,2014,12,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp12.html#McGraw14d,https://doi.org/10.1109/MSP.2014.100 +George Candea,The Tests-versus-Proofs Conundrum.,2014,12,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp12.html#Candea14,https://doi.org/10.1109/MSP.2014.18 +Gary McGraw,Silver Bullet Talks with Kay Connelly.,2012,10,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp10.html#McGraw12c,https://doi.org/10.1109/MSP.2012.130 +Gary McGraw,Silver Bullet Talks with Giovanni Vigna.,2012,10,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp10.html#McGraw12a,https://doi.org/10.1109/MSP.2012.77 +Stephen A. Weiss,Crypto 2004.,2005,3,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp3.html#Weiss05,https://doi.org/10.1109/MSP.2005.39 +Cliff Wang,Cyber Deception: Overview and the Road Ahead.,2018,16,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp16.html#WangL18,https://doi.org/10.1109/MSP.2018.1870866 +Markus Jakobsson,Web Camouflage: Protecting Your Clients from Browser-Sniffing Attacks.,2007,5,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp5.html#JakobssonS07,https://doi.org/10.1109/MSP.2007.182 +Vashek Matyas,Conflicts between Intrusion Detection and Privacy Mechanisms for Wireless Sensor Networks.,2013,11,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp11.html#MatyasK13,https://doi.org/10.1109/MSP.2013.111 +Johannes A. Buchmann,Postquantum Cryptography - State of the Art.,2017,15,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp15.html#BuchmannLM17,https://doi.org/10.1109/MSP.2017.3151326 +Vanessa Gratzer,Alien vs. Quine.,2007,5,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp5.html#GratzerN07,https://doi.org/10.1109/MSP.2007.28 +Patrick D. McDaniel,Machine Learning in Adversarial Settings.,2016,14,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp14.html#McDanielPC16,https://doi.org/10.1109/MSP.2016.51 +Hamilton A. Turner,Bad Parts: Are Our Manufacturing Systems at Risk of Silent Cyberattacks?,2015,13,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp13.html#TurnerWCWAP15,https://doi.org/10.1109/MSP.2015.60 +James Figueroa,News Briefs.,2009,7,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp7.html#Figueroa09c,https://doi.org/10.1109/MSP.2009.162 +Fabio Massacci,Economic Impacts of Rules- versus Risk-Based Cybersecurity Regulations for Critical Infrastructure Providers.,2016,14,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp14.html#MassacciRCW16,https://doi.org/10.1109/MSP.2016.48 +David W. Archer,Maturity and Performance of Programmable Secure Computation.,2016,14,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp14.html#ArcherBPP16,https://doi.org/10.1109/MSP.2016.97 +Gary McGraw,Silver Bullet Talks with Nick Weaver.,2018,16,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp16.html#McGraw18c,https://doi.org/10.1109/MSP.2018.3111252 +Daniel E. Geer Jr.,Beware the IDs of March.,2008,6,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp6.html#GeerC08a,https://doi.org/10.1109/MSP.2008.27 +Shari Lawrence Pfleeger,Software Everywhere.,2016,14,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp14.html#Pfleeger16,https://doi.org/10.1109/MSP.2016.10 +Melissa Dark,Evaluation Theory and Practice Applied to Cybersecurity Education.,2015,13,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp13.html#DarkM15,https://doi.org/10.1109/MSP.2015.27 +Marc Donner,The Impending Debate.,2006,4,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp4.html#Donner06,https://doi.org/10.1109/MSP.2006.55 +Shane Balfe,Challenges for Trusted Computing.,2008,6,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp6.html#BalfeGMP08,https://doi.org/10.1109/MSP.2008.138 +Gary McGraw,Interview: Silver Bullet Speaks to Marcus Ranum.,2006,4,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp4.html#McGraw06b,https://doi.org/10.1109/MSP.2006.126 +Milan Broz,The TrueCrypt On-Disk Format-An Independent View.,2014,12,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp12.html#BrozM14,https://doi.org/10.1109/MSP.2014.60 +Michael E. Locasto,Helping Students 0wn Their Own Code.,2009,7,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp7.html#Locasto09,https://doi.org/10.1109/MSP.2009.66 +Luiz Felipe Perrone,Could a Caveman Do It? The Surprising Potential of Simple Attacks.,2007,5,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp5.html#Perrone07,https://doi.org/10.1109/MSP.2007.162 +George Cybenko,From the Editor: Sapphire/Slammer Redux.,2003,1,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp1.html#Cybenko03a,http://doi.ieeecomputersociety.org/10.1109/MSP.2003.10002 +Sean Peisert,Closing the Gap on Securing Energy Sector Control Systems [Guest editors' introduction].,2014,12,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp12.html#PeisertM14,https://doi.org/10.1109/MSP.2014.110 +Carl E. Landwehr,Changing the Puzzle Pieces.,2005,3,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp3.html#Landwehr05,https://doi.org/10.1109/MSP.2005.9 +Daniel E. Geer Jr.,Monoculture.,2003,1,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp1.html#GeerAW03,https://doi.org/10.1109/MSECP.2003.1253563 +Marc Donner,The Invisible Computers.,2011,9,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp9.html#Donner11a,https://doi.org/10.1109/MSP.2011.176 +Fred H. Cate,Government Access to Private-Sector Data.,2010,8,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp8.html#Cate10a,https://doi.org/10.1109/MSP.2010.176 +Whitfield Diffie,Chattering about SIGINT.,2006,4,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp4.html#Diffie06,https://doi.org/10.1109/MSP.2006.9 +Michael E. Lesk,Salute the Broadcast Flag.,2005,3,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp3.html#Lesk05,https://doi.org/10.1109/MSP.2005.79 +Amit Levy,Stickler: Defending against Malicious Content Distribution Networks in an Unmodified Browser.,2016,14,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp14.html#LevyCB16,https://doi.org/10.1109/MSP.2016.32 +Angelos Oikonomopoulos,Binary Rejuvenation: Applications and Challenges.,2016,14,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp14.html#OikonomopoulosG16,https://doi.org/10.1109/MSP.2016.20 +Sanjeev Kumar,Microsoft vs. Apple: Resilience against Distributed Denial-of-Service Attacks.,2012,10,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp10.html#KumarS12,https://doi.org/10.1109/MSP.2011.147 +Bill G. Horne,On Computer Security Incident Response Teams.,2014,12,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp12.html#Horne14a,https://doi.org/10.1109/MSP.2014.96 +Sean W. Smith,Never Mind Pearl Harbor-What about a Cyber Love Canal?,2015,13,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp13.html#SmithE15,https://doi.org/10.1109/MSP.2015.37 +Richard S. Swart,Educating Students to Create Trustworthy Systems.,2007,5,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp5.html#SwartE07,https://doi.org/10.1109/MSP.2007.58 +Shari Lawrence Pfleeger,Ramsey Theory: Learning about the Needle in the Haystack.,2013,11,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp11.html#Pfleeger13a,https://doi.org/10.1109/MSP.2013.68 +Irfan Ahmed,Peer Instruction Teaching Methodology for Cybersecurity Education.,2018,16,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp16.html#AhmedR18,https://doi.org/10.1109/MSP.2018.3111242 +Lori M. Kaufman,Data Security in the World of Cloud Computing.,2009,7,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp7.html#Kaufman09,https://doi.org/10.1109/MSP.2009.87 +Bruce Schneier,We Are All Security Consumers.,2003,1,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp1.html#Schneier03,https://doi.org/10.1109/MSECP.2003.1177006 +Tiffani R. Chen,An Organizational Psychology Perspective to Examining Computer Security Incident Response Teams.,2014,12,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp12.html#ChenSZDTG14,https://doi.org/10.1109/MSP.2014.85 +Daniel P. Dern,Privacy Concerns.,2003,1,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp1.html#Dern03,https://doi.org/10.1109/MSECP.2003.1193206 +Suvajit Gupta,Using Attack Graphs to Design Systems.,2007,5,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp5.html#GuptaW07,https://doi.org/10.1109/MSP.2007.100 +Laurianne McLaughlin,Winning the Game of Risk: Neumann's Take on Sound Design.,2005,3,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp3.html#McLaughlin05b,https://doi.org/10.1109/MSP.2005.164 +Wei Yan,Revealing Packed Malware.,2008,6,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp6.html#YanZA08,https://doi.org/10.1109/MSP.2008.126 +Alessandro Acquisti,Complementary Perspectives on Privacy and Security: Economics.,2013,11,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp11.html#Acquisti13,https://doi.org/10.1109/MSP.2013.30 +John Viega,Ten Years of Trustworthy Computing: Lessons Learned.,2011,9,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp9.html#Viega11a,https://doi.org/10.1109/MSP.2011.143 +Dirk Balfanz,In Search of Usable Security: Five Lessons from the Field.,2004,2,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp2.html#BalfanzDGS04,https://doi.org/10.1109/MSP.2004.71 +Danilo Bruschi,Code Normalization for Self-Mutating Malware.,2007,5,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp5.html#BruschiMM07,https://doi.org/10.1109/MSP.2007.31 +Susan Landau 0001,Security and Privacy: Facing Ethical Choices.,2014,12,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp12.html#Landau14b,https://doi.org/10.1109/MSP.2014.75 +J. D. Meier,Web application security engineering.,2006,4,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp4.html#Meier06,https://doi.org/10.1109/MSP.2006.109 +Melissa Dark,Advancing Cybersecurity Education.,2014,12,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp12.html#Dark14,https://doi.org/10.1109/MSP.2014.108 +Tom Kellerman,Cyber-Threat Proliferation: Today's Truly Pervasive Global Epidemic.,2010,8,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp8.html#Kellerman10,https://doi.org/10.1109/MSP.2010.94 +David Naccache,Finding Faults.,2005,3,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp3.html#Naccache05,https://doi.org/10.1109/MSP.2005.122 +Pinny Sheoran,Developing and Sustaining Information Assurance: The Role of Community Colleges (Part 1).,2005,3,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp3.html#SheoranFB05,https://doi.org/10.1109/MSP.2005.145 +David Ahmad,Two Years of Broken Crypto: Debian's Dress Rehearsal for a Global PKI Compromise.,2008,6,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp6.html#Ahmad08,https://doi.org/10.1109/MSP.2008.131 +Aleksander Essex,Detecting the Detectable: Unintended Consequences of Cryptographic Election Verification.,2017,15,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp15.html#Essex17,https://doi.org/10.1109/MSP.2017.69 +Terry Benzel,The IEEE Security and Privacy Symposium Workshops.,2016,14,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp14.html#Benzel16,https://doi.org/10.1109/MSP.2016.29 +Roland L. Trope,By Executive Order: Delivery of Cyber Intelligence Imparts Cyber Responsibilities.,2013,11,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp11.html#TropeH13,https://doi.org/10.1109/MSP.2013.29 +Gary McGraw,Silver Bullet Talks with Neil Daswani.,2012,10,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp10.html#McGraw12,https://doi.org/10.1109/MSP.2012.49 +Bart Coppens,Protecting Your Software Updates.,2013,11,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp11.html#CoppensSB13,https://doi.org/10.1109/MSP.2012.113 +Carl E. Landwehr,Food for Thought: Improving the Market for Assurance.,2007,5,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp5.html#Landwehr07a,https://doi.org/10.1109/MSP.2007.60 +Daniel E. Geer Jr.,Attack Surface Inflation.,2011,9,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp9.html#Geer11d,https://doi.org/10.1109/MSP.2011.78 +Gary McGraw,Silver Bullet Talks with Martin Hellman.,2016,14,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp14.html#McGraw16c,https://doi.org/10.1109/MSP.2016.85 +Micah Altman,A Harm-Reduction Framework for Algorithmic Fairness.,2018,16,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp16.html#AltmanWV18,https://doi.org/10.1109/MSP.2018.2701149 +Alexander Kott,Assessing Mission Impact of Cyberattacks: Toward a Model-Driven Paradigm.,2017,15,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp15.html#KottLL17,https://doi.org/10.1109/MSP.2017.3681068 +Carlos Barreto,Control Systems for the Power Grid and Their Resiliency to Attacks.,2014,12,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp12.html#BarretoGCMQ14,https://doi.org/10.1109/MSP.2014.111 +Deborah C. Peel,Point/Counterpoint.,2013,11,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp11.html#PeelM13,https://doi.org/10.1109/MSP.2013.148 +Bruce Schneier,Artificial Intelligence and the Attack/Defense Balance.,2018,16,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp16.html#Schneier18,https://doi.org/10.1109/MSP.2018.1870857 +Jan-Erik Ekberg,The Untapped Potential of Trusted Execution Environments on Mobile Devices.,2014,12,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp12.html#EkbergKA14,https://doi.org/10.1109/MSP.2014.38 +Nir Kshetri,The Economics of Click Fraud.,2010,8,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp8.html#Kshetri10,https://doi.org/10.1109/MSP.2010.88 +Rohit Tyagi,Packet Inspection for Unauthorized OS Detection in Enterprises.,2015,13,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp13.html#TyagiPMT15,https://doi.org/10.1109/MSP.2015.86 +John Viega,Cloud Security: Not a Problem.,2012,10,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp10.html#Viega12,https://doi.org/10.1109/MSP.2012.93 +Ugo Piazzalunga,Security Strength Measurement for Dongle-Protected Software.,2007,5,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp5.html#PiazzalungaSBJM07,https://doi.org/10.1109/MSP.2007.176 +Terry V. Benzel,Crossing the Great Divide: Transferring Security Technology from Research to the Market.,2013,11,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp11.html#BenzelL13,https://doi.org/10.1109/MSP.2013.33 +Mike Bond,Be Prepared: The EMV Preplay Attack.,2015,13,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp13.html#BondCMSA15,https://doi.org/10.1109/MSP.2015.24 +Janice Y. Tsai,Soups 2006.,2006,4,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp4.html#TsaiE06,https://doi.org/10.1109/MSP.2006.165 +Betsy Masiello,Deconstructing the Privacy Experience.,2009,7,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp7.html#Masiello09,https://doi.org/10.1109/MSP.2009.88 +Daniel E. Geer,Mutual Dependence Demands Mutual Sharing.,2017,15,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp15.html#GeerD17,https://doi.org/10.1109/MSP.2017.17 +Ronda Henning,Predictable Surprises.,2009,7,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp7.html#Henning09,https://doi.org/10.1109/MSP.2009.101 +James Figueroa,News Briefs.,2010,8,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp8.html#Figueroa10,https://doi.org/10.1109/MSP.2010.42 +Linda Dailey Paulson,News Briefs.,2010,8,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp8.html#Paulson10a,https://doi.org/10.1109/MSP.2010.133 +Brandi Ortega,News Briefs.,2007,5,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp5.html#Ortega07,https://doi.org/10.1109/MSP.2007.14 +Kathleen M. Moriarty,Incident Coordination.,2011,9,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp9.html#Moriarty11,https://doi.org/10.1109/MSP.2011.164 +Steven M. Bellovin,Attack Surfaces.,2016,14,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp14.html#Bellovin16,https://doi.org/10.1109/MSP.2016.55 +Travis D. Breaux,What Engineers Should Know about US Security and Privacy Law.,2013,11,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp11.html#BreauxG13,https://doi.org/10.1109/MSP.2013.74 +Robin E. Bloomfield,Safety-Critical Systems: The Next Generation.,2013,11,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp11.html#BloomfieldL13,https://doi.org/10.1109/MSP.2013.95 +Monica T. Whitty,Mass-Marketing Fraud: A Growing Concern.,2015,13,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp13.html#Whitty15,https://doi.org/10.1109/MSP.2015.85 +M. Eric Johnson,Usability Failures and Healthcare Data Hemorrhages.,2011,9,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp9.html#JohnsonW11,https://doi.org/10.1109/MSP.2010.196 +Bruce Schneier,Voting Security and Technology.,2004,2,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp2.html#Schneier04,https://doi.org/10.1109/MSECP.2004.1264863 +Matt Bishop,"A Clinic for ""Secure"" Programming.",2010,8,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp8.html#Bishop10,https://doi.org/10.1109/MSP.2010.62 +Brian Chess,Static Analysis for Security.,2004,2,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp2.html#ChessM04,https://doi.org/10.1109/MSP.2004.111 +Benjamin Alfonsi,Alliance Addresses VoIP Security.,2005,3,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp3.html#Alfonsi05a,https://doi.org/10.1109/MSP.2005.92 +Kara L. Nance,Teach Them When They Aren't Looking: Introducing Security in CS1.,2009,7,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp7.html#Nance09,https://doi.org/10.1109/MSP.2009.139 +Ilias Giechaskiel,When the Crypto in Cryptocurrencies Breaks: Bitcoin Security under Broken Primitives.,2018,16,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp16.html#GiechaskielCR18,https://doi.org/10.1109/MSP.2018.3111253 +Cuong Manh Pham,Building Reliable and Secure Virtual Machines Using Architectural Invariants.,2014,12,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp12.html#PhamECKI14,https://doi.org/10.1109/MSP.2014.87 +Lorrie Faith Cranor,Can Users Control Online Behavioral Advertising Effectively?,2012,10,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp10.html#Cranor12,https://doi.org/10.1109/MSP.2012.32 +Ian Grigg,The Curse of Cryptographic Numerology.,2011,9,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp9.html#GriggG11,https://doi.org/10.1109/MSP.2011.69 +Weihan Goh,Teaching an Old TPM New Tricks: Repurposing for Identity-Based Signatures.,2013,11,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp11.html#GohY13,https://doi.org/10.1109/MSP.2013.53 +David Barrera,Secure Software Installation on Smartphones.,2011,9,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp9.html#BarreraO11,https://doi.org/10.1109/MSP.2010.202 +Diego A. Ortiz-Yepes,A Review of Technical Approaches to Realizing Near-Field Communication Mobile Payments.,2016,14,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp14.html#Ortiz-Yepes16,https://doi.org/10.1109/MSP.2016.75 +Arthur Gervais,Is Bitcoin a Decentralized Currency?,2014,12,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp12.html#GervaisKCC14,https://doi.org/10.1109/MSP.2014.49 +Qian Liu,An In-VM Measuring Framework for Increasing Virtual Machine Security in Clouds.,2010,8,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp8.html#LiuWLL10,https://doi.org/10.1109/MSP.2010.143 +Stelios Sidiroglou,Countering Network Worms Through Automatic Patch Generation.,2005,3,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp3.html#SidiroglouK05,https://doi.org/10.1109/MSP.2005.144 +Raffaello Perrotta,Botnet in the Browser: Understanding Threats Caused by Malicious Browser Extensions.,2018,16,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp16.html#PerrottaH18,https://doi.org/10.1109/MSP.2018.3111249 +William H. Allen,Mixing Wheat with the Chaff: Creating Useful Test Data for IDS Evaluation.,2007,5,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp5.html#Allen07,https://doi.org/10.1109/MSP.2007.92 +Annie I. Antón,HIPAA's Effect on Web Site Privacy Policies.,2007,5,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp5.html#AntonEVJGF07,https://doi.org/10.1109/MSP.2007.7 +Richard E. Smith,A Contemporary Look at Saltzer and Schroeder's 1975 Design Principles.,2012,10,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp10.html#Smith12a,https://doi.org/10.1109/MSP.2012.85 +Deanna D. Caputo,Going Spear Phishing: Exploring Embedded Training and Awareness.,2014,12,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp12.html#CaputoPFJ14,https://doi.org/10.1109/MSP.2013.106 +Elias Levy,Worst-Case Scenario.,2006,4,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp4.html#Levy06,https://doi.org/10.1109/MSP.2006.141 +Michael Lesk,Copyright and Creativity.,2004,2,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp2.html#Lesk04b,https://doi.org/10.1109/MSP.2004.6 +Gary McGraw,Silver Bullet Talks with Per-Olof Persson.,2013,11,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp11.html#McGraw13,https://doi.org/10.1109/MSP.2013.17 +Philip B. Stark,Evidence-Based Elections.,2012,10,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp10.html#StarkW12,https://doi.org/10.1109/MSP.2012.62 +Carl E. Landwehr,Sailing Away!,2010,8,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp8.html#Landwehr10a,https://doi.org/10.1109/MSP.2010.184 +Cynthia E. Irvine,The Value of Capture-the-Flag Exercises in Education: An Interview with Chris Eagle.,2011,9,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp9.html#Irvine11,https://doi.org/10.1109/MSP.2011.177 +Thiago Mattos Rosa,Mitigating XML Injection 0-Day Attacks through Strategy-Based Detection Systems.,2013,11,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp11.html#RosaSM13,https://doi.org/10.1109/MSP.2012.83 +Awais Rashid,Scoping the Cyber Security Body of Knowledge.,2018,16,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp16.html#RashidDCLMLP18,https://doi.org/10.1109/MSP.2018.2701150 +David Evans 0001,Election Security: Perception and Reality.,2004,2,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp2.html#EvansP04,https://doi.org/10.1109/MSECP.2004.1264850 +Justin Troutman,The Virtues of Mature and Minimalist Cryptography.,2008,6,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp6.html#Troutman08,https://doi.org/10.1109/MSP.2008.99 +Mark T. Maybury,Toward the Assured Cyberspace Advantage: Air Force Cyber Vision 2025.,2015,13,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp13.html#Maybury15,https://doi.org/10.1109/MSP.2013.135 +Michael Howard,Managing the Security Wall of Data.,2009,7,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp7.html#Howard09a,https://doi.org/10.1109/MSP.2009.127 +Bret Michael,In Clouds Shall We Trust?,2009,7,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp7.html#Michael09,https://doi.org/10.1109/MSP.2009.124 +Hervé Chabanne,Securing E-passports with Elliptic Curves.,2011,9,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp9.html#ChabanneT11,https://doi.org/10.1109/MSP.2011.37 +Pete Bramhall,User-Centric Identity Management: New Trends in Standardization and Regulation.,2007,5,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp5.html#BramhallHRR07,https://doi.org/10.1109/MSP.2007.99 +Liam M. Mayron,Biometric Authentication on Mobile Devices.,2015,13,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp13.html#Mayron15,https://doi.org/10.1109/MSP.2015.67 +Sean Peisert,The Open Science Cyber Risk Profile: The Rosetta Stone for Open Science and Cybersecurity.,2017,15,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp15.html#PeisertW17,https://doi.org/10.1109/MSP.2017.3681058 +Sashank Narain,The Perils of User Tracking Using Zero-Permission Mobile Apps.,2017,15,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp15.html#NarainVBN17,https://doi.org/10.1109/MSP.2017.25 +Daniel E. Geer,Polarization.,2014,12,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp12.html#Geer14,https://doi.org/10.1109/MSP.2014.9 +Patrick D. McDaniel,Toward a Science of Secure Environments.,2014,12,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp12.html#McDanielRS14,https://doi.org/10.1109/MSP.2014.81 +Christof Fetzer,Building Critical Applications Using Microservices.,2016,14,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp14.html#Fetzer16,https://doi.org/10.1109/MSP.2016.129 +Jungwoo Ryoo,Security Education Using Second Life.,2009,7,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp7.html#RyooTL09,https://doi.org/10.1109/MSP.2009.49 +Frédéric Raynal,Honeypot Forensics Part I: Analyzing the Network.,2004,2,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp2.html#RaynalBBK04,https://doi.org/10.1109/MSP.2004.47 +Jan Peter van Zandwijk,NAND Flash Memory Forensic Analysis and the Growing Challenge of Bit Errors.,2017,15,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp15.html#ZandwijkF17,https://doi.org/10.1109/MSP.2017.4251114 +Fred B. Schneider,Labeling-in Security.,2009,7,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp7.html#Schneider09a,https://doi.org/10.1109/MSP.2009.180 +Corrado Aaron Visaggio,Session Management Vulnerabilities in Today's Web.,2010,8,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp8.html#Visaggio10,https://doi.org/10.1109/MSP.2010.114 +Richard S. Weiss,Cybersecurity Education and Assessment in EDURange.,2017,15,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp15.html#WeissTML17,https://doi.org/10.1109/MSP.2017.54 +Scott L. Andresen,News Briefs.,2003,1,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp1.html#Andresen03a,http://doi.ieeecomputersociety.org/10.1109/MSP.2003.10008 +George Cybenko,Security Alchemy.,2004,2,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp2.html#Cybenko04a,https://doi.org/10.1109/MSP.2004.110 +Charles C. Palmer,Can We Win the Security Game?,2004,2,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp2.html#Palmer04,https://doi.org/10.1109/MSECP.2004.1264842 +,Letters to the Editor.,2004,2,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp2.html#X04f,https://doi.org/10.1109/MSP.2004.76 +Fred B. Schneider,Implementing Trustworthy Services Using Replicated State Machines.,2005,3,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp3.html#SchneiderZ05,https://doi.org/10.1109/MSP.2005.125 +Greg Goth,News: Richard Clarke Talks Cybersecurity and JELL-O.,2004,2,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp2.html#GothA04,https://doi.org/10.1109/MSP.2004.18 +Jeffrey K. MacKie-Mason,Incentive-Centered Design for Security.,2009,7,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp7.html#MacKie-Mason09,https://doi.org/10.1109/MSP.2009.94 +Dan Thomsen,Lost Treasures.,2012,10,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp10.html#ThomsenEN12,https://doi.org/10.1109/MSP.2012.148 +Hui Xu,Assessing the Security Properties of Software Obfuscation.,2016,14,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp14.html#XuL16,https://doi.org/10.1109/MSP.2016.112 +Michael Lesk,Does the Cloud of Surveillance Have a Silver Lining?,2014,12,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp12.html#Lesk14a,https://doi.org/10.1109/MSP.2014.41 +Bernd Grobauer,Understanding Cloud Computing Vulnerabilities.,2011,9,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp9.html#GrobauerWS11,https://doi.org/10.1109/MSP.2010.115 +Carl A. Gunter,Experience-Based Access Management: A Life-Cycle Framework for Identity and Access Management Systems.,2011,9,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp9.html#GunterLM11,https://doi.org/10.1109/MSP.2011.72 +Gary McGraw,Silver Bullet Talks with Bruce Potter.,2018,16,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp16.html#McGraw18b,https://doi.org/10.1109/MSP.2018.2701167 +Peter Gutmann,Security Usability.,2005,3,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp3.html#GutmannG05,https://doi.org/10.1109/MSP.2005.104 +Shari Lawrence Pfleeger,Addressing the Insider Threat.,2009,7,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp7.html#PfleegerS09,https://doi.org/10.1109/MSP.2009.146 +Sameer Pai,Transactional Confidentiality in Sensor Networks.,2008,6,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp6.html#PaiBWMRSM08,https://doi.org/10.1109/MSP.2008.107 +Michael A. Caloyannides,Digital Forensics.,2009,7,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp7.html#CaloyannidesMV09,https://doi.org/10.1109/MSP.2009.34 +Michael Lesk,Privateers in Cyberspace: Aargh!,2013,11,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp11.html#Lesk13,https://doi.org/10.1109/MSP.2013.67 +Marc Donner,Phagocytes in Cyberspace.,2010,8,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp8.html#Donner10a,https://doi.org/10.1109/MSP.2010.161 +Paul Pearce,Toward Continual Measurement of Global Network-Level Censorship.,2018,16,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp16.html#PearceELFP18,https://doi.org/10.1109/MSP.2018.1331018 +Gregory B. White,The CyberPatriot National High School Cyber Defense Competition.,2010,8,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp8.html#WhiteWH10,https://doi.org/10.1109/MSP.2010.166 +Panos Kampanakis,Security Automation and Threat Information-Sharing Options.,2014,12,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp12.html#Kampanakis14,https://doi.org/10.1109/MSP.2014.99 +Anita D'Amico,Building a Bridge across the Transition Chasm.,2013,11,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp11.html#DAmicoOL13,https://doi.org/10.1109/MSP.2012.160 +Kleanthis Dellios,Information Security Compliance over Intelligent Transport Systems: Is IT Possible?,2015,13,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp13.html#DelliosPP15,https://doi.org/10.1109/MSP.2015.59 +Harold Thimbleby,The Healthtech Declaration.,2015,13,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp13.html#ThimblebyK15,https://doi.org/10.1109/MSP.2015.127 +Elias Levy,Worm Propagation and Generic Attacks.,2005,3,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp3.html#Levy05,https://doi.org/10.1109/MSP.2005.57 +Julie J. C. H. Ryan,Performance Metrics for Information Security Risk Management.,2008,6,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp6.html#RyanR08,https://doi.org/10.1109/MSP.2008.125 +Deanna D. Caputo,Barriers to Usable Security? Three Organizational Case Studies.,2016,14,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp14.html#CaputoPSAOD16,https://doi.org/10.1109/MSP.2016.95 +Dianne Solomon,Balancing Privacy and Risk in the E-Messaging World.,2007,5,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp5.html#Solomon07,https://doi.org/10.1109/MSP.2007.105 +Kara L. Nance,Virtual Machine Introspection: Observation or Interference?,2008,6,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp6.html#NanceBH08,https://doi.org/10.1109/MSP.2008.134 +Daniel E. Geer,Personal Data and Government Surveillance.,2014,12,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp12.html#Geer14a,https://doi.org/10.1109/MSP.2014.73 +Anna Lysyanskaya,Authentication without Identification.,2007,5,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp5.html#Lysyanskaya07,https://doi.org/10.1109/MSP.2007.52 +Daniel E. Geer,Children of the Magenta.,2015,13,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp13.html#Geer15b,https://doi.org/10.1109/MSP.2015.91 +Bhushan Jain,Introspections on the Semantic Gap.,2015,13,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp13.html#JainBZPS15,https://doi.org/10.1109/MSP.2015.35 +Paul Syverson,Bake in .onion for Tear-Free and Stronger Website Authentication.,2016,14,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp14.html#SyversonB16,https://doi.org/10.1109/MSP.2016.33 +Ahmad-Reza Sadeghi,Security and Privacy More Crucial than Ever.,2017,15,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp15.html#Sadeghi17,https://doi.org/10.1109/MSP.2017.7 +Gary McGraw,Silver Bullet Talks with Craig Froelich.,2018,16,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp16.html#McGraw18a,https://doi.org/10.1109/MSP.2018.1870860 +Ed Coyne,An RBAC Implementation and Interoperability Standard: The INCITS Cyber Security 1.1 Model.,2008,6,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp6.html#CoyneW08,https://doi.org/10.1109/MSP.2008.2 +Shelby Evans,Risk-based Systems Security Engineering: Stopping Attacks with Intention.,2004,2,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp2.html#EvansHKPW04,https://doi.org/10.1109/MSP.2004.109 +Ivan Arce,An Analysis of the Slapper Worm.,2003,1,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp1.html#ArceL03,https://doi.org/10.1109/MSECP.2003.1177002 +Robert C. Seacord,Secure Coding in C and C++: Of Strings and Integers.,2006,4,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp4.html#Seacord06,https://doi.org/10.1109/MSP.2006.22 +J. Adam Crain,Bolt-On Security Extensions for Industrial Control System Protocols: A Case Study of DNP3 SAv5.,2015,13,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp13.html#CrainB15,https://doi.org/10.1109/MSP.2015.47 +Wenjie Wang,A Contextual Framework for Combating Identity Theft.,2006,4,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp4.html#WangYA06,https://doi.org/10.1109/MSP.2006.31 +Rolf Oppliger,Disillusioning Alice and Bob.,2017,15,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp15.html#Oppliger17,https://doi.org/10.1109/MSP.2017.3681057 +Tina Ladabouche,GenCyber: Inspiring the Next Generation of Cyber Stars.,2016,14,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp14.html#LadaboucheL16,https://doi.org/10.1109/MSP.2016.107 +Stefan Mangard,Keeping Secrets on Low-Cost Chips.,2013,11,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp11.html#Mangard13,https://doi.org/10.1109/MSP.2013.88 +Fred B. Schneider,A Doctrinal Thesis.,2011,9,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp9.html#SchneiderM11,https://doi.org/10.1109/MSP.2011.76 +Sara Sinclair,The TIPPI Point: Toward Trustworthy Interfaces.,2005,3,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp3.html#SinclairS05,https://doi.org/10.1109/MSP.2005.109 +Sean W. Smith,Grand Challenges in Information Security: Process and Output.,2004,2,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp2.html#SmithS04,https://doi.org/10.1109/MSECP.2004.1264859 +Brian D. Snow,Four Ways to Improve Security.,2005,3,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp3.html#Snow05,https://doi.org/10.1109/MSP.2005.66 +Greg Goth,News.,2004,2,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp2.html#GothAA04,https://doi.org/10.1109/MSECP.2004.1281236 +Matt Blaze,Taking Surveillance Out of the Shadows.,2009,7,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp7.html#Blaze09,https://doi.org/10.1109/MSP.2009.138 +Elias Levy,Crossover: Online Pests Plaguing the Offline World.,2003,1,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp1.html#Levy03b,https://doi.org/10.1109/MSECP.2003.1253573 +Michael Lesk,Do the Luddites Ever Win?,2010,8,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp8.html#Lesk10a,https://doi.org/10.1109/MSP.2010.148 +Deanna Caputo,Detecting Insider Theft of Trade Secrets.,2009,7,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp7.html#CaputoMS09,https://doi.org/10.1109/MSP.2009.110 +Michael A. Caloyannides,Online Monitoring: Security or Social Control?,2004,2,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp2.html#Caloyannides04,https://doi.org/10.1109/MSECP.2004.1264862 +Amir Herzberg,Training Johnny to Authenticate (Safely).,2012,10,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp10.html#HerzbergM12,https://doi.org/10.1109/MSP.2011.129 +Alexander Iliev,Protecting Client Privacy with Trusted Computing at the Server.,2005,3,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp3.html#IlievS05,https://doi.org/10.1109/MSP.2005.49 +Gregory J. Conti,Hacking Competitions and Their Untapped Potential for Security Education.,2011,9,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp9.html#ContiBN11,https://doi.org/10.1109/MSP.2011.51 +Ioana Boureanu,Challenges in Distance Bounding.,2015,13,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp13.html#BoureanuV15,https://doi.org/10.1109/MSP.2015.2 +L. Jean Camp,Identity Management's Misaligned Incentives.,2010,8,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp8.html#Camp10,https://doi.org/10.1109/MSP.2010.178 +Jim Blythe,Circumvention of Security: Good Users Do Bad Things.,2013,11,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp11.html#BlytheKS13,https://doi.org/10.1109/MSP.2013.110 +Ann Miller,Trends in Process Control Systems Security.,2005,3,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp3.html#Miller05,https://doi.org/10.1109/MSP.2005.136 +Terry Benzel,An Enduring Symposium for Leading Research in Security and Privacy.,2015,13,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp13.html#Benzel15,https://doi.org/10.1109/MSP.2015.20 +Ka-Ping Yee,Aligning Security and Usability.,2004,2,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp2.html#Yee04,https://doi.org/10.1109/MSP.2004.64 +Thorsten Holz,A Short Visit to the Bot Zoo.,2005,3,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp3.html#Holz05,https://doi.org/10.1109/MSP.2005.58 +Michael A. Caloyannides,The Assault on Logic.,2003,1,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp1.html#Caloyannides03c,https://doi.org/10.1109/MSECP.2003.1219080 +Idoia Aguirre,Improving the Automation of Security Information Management: A Collaborative Approach.,2012,10,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp10.html#AguirreA12,https://doi.org/10.1109/MSP.2011.153 +Piotr Bazydlo,Botnet Fingerprinting: Anomaly Detection in SMTP Conversations.,2017,15,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp15.html#BazydloLK17,https://doi.org/10.1109/MSP.2017.4251116 +Matt Bishop,Teaching Secure Programming.,2005,3,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp3.html#BishopF05a,https://doi.org/10.1109/MSP.2005.133 +Patrick D. McDaniel,Data Provenance and Security.,2011,9,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp9.html#McDaniel11,https://doi.org/10.1109/MSP.2011.27 +Moti Geva,Bandwidth Distributed Denial of Service: Attacks and Defenses.,2014,12,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp12.html#GevaHG14,https://doi.org/10.1109/MSP.2013.55 +Bruce Schneier,The Death of the Security Industry.,2007,5,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp5.html#Schneier07a,https://doi.org/10.1109/MSP.2007.179 +Shari Lawrence Pfleeger,Focus on Policy.,2013,11,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp11.html#Pfleeger13b,https://doi.org/10.1109/MSP.2013.143 +Garrett Jones,NewsBriefs.,2005,3,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp3.html#JonesK05,https://doi.org/10.1109/MSP.2005.75 +Sai Teja Peddinti,Understanding Sensitivity by Analyzing Anonymity [Guest editor's introduction].,2015,13,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp13.html#PeddintiKBS15,https://doi.org/10.1109/MSP.2015.45 +Daniel E. Geer Jr.,Power. Law.,2012,10,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp10.html#Geer12,https://doi.org/10.1109/MSP.2012.19 +Gordon Hughes,Considering New Privacy Laws in Australia.,2008,6,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp6.html#HughesDB08,https://doi.org/10.1109/MSP.2008.60 +Edward Bonver,Security Testing of Internal Tools.,2008,6,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp6.html#Bonver08,https://doi.org/10.1109/MSP.2008.21 +Daniel E. Geer Jr.,Numbers Worth Having.,2012,10,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp10.html#Geer12a,https://doi.org/10.1109/MSP.2012.46 +Daniel E. Geer,You Are What You Eat.,2018,16,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp16.html#Geer18a,https://doi.org/10.1109/MSP.2018.3111250 +Brandi Ortega,News Briefs.,2008,6,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp6.html#Ortega08b,https://doi.org/10.1109/MSP.2008.69 +David OReilly,Availability of Required Data to Support Criminal Investigations Involving Large-Scale IP Address-Sharing Technologies.,2017,15,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp15.html#OReilly17,https://doi.org/10.1109/MSP.2017.3681047 +Lance J. Hoffman,Exploring a National Cybersecurity Exercise for Universities.,2005,3,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp3.html#HoffmanRDR05,https://doi.org/10.1109/MSP.2005.120 +Khaled El Emam,Risk-Based De-Identification of Health Data.,2010,8,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp8.html#Emam10,https://doi.org/10.1109/MSP.2010.103 +Michael Franz,Making Multivariant Programming Practical and Inexpensive.,2018,16,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp16.html#Franz18,https://doi.org/10.1109/MSP.2018.2701161 +Michael Brennan,Academic Impact at the Federal Trade Commission.,2012,10,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp10.html#Brennan12,https://doi.org/10.1109/MSP.2012.139 +Steven J. Murdoch,How Certification Systems Fail: Lessons from the Ware Report.,2012,10,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp10.html#MurdochBA12,https://doi.org/10.1109/MSP.2012.89 +Lee Garber,News Briefs.,2011,9,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp9.html#Garber11b,https://doi.org/10.1109/MSP.2011.60 +Cristina Cifuentes,Transitioning Parfait into a Development Tool.,2012,10,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp10.html#CifuentesKLHV12,https://doi.org/10.1109/MSP.2012.30 +Per Larsen,Security through Diversity: Are We There Yet?,2014,12,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp12.html#LarsenBF14,https://doi.org/10.1109/MSP.2013.129 +Benjamin Stritter,Cleaning up Web 2.0's Security Mess-at Least Partly.,2016,14,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp14.html#StritterFKRUGED16,https://doi.org/10.1109/MSP.2016.31 +David P. Fidler,Was Stuxnet an Act of War? Decoding a Cyberattack.,2011,9,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp9.html#Fidler11,https://doi.org/10.1109/MSP.2011.96 +Nick Nikiforakis,On the Workings and Current Practices of Web-Based Device Fingerprinting.,2014,12,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp12.html#NikiforakisKJKPV14,https://doi.org/10.1109/MSP.2013.160 +Jangbok Kim,Spam Filtering With Dynamically Updated URL Statistics.,2007,5,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp5.html#KimCC07,https://doi.org/10.1109/MSP.2007.95 +Jeremiah Grossman,The State of Website Security.,2012,10,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp10.html#Grossman12,https://doi.org/10.1109/MSP.2012.111 +Markus Brändle,Security for Process Control Systems: An Overview.,2008,6,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp6.html#BrandleN08,https://doi.org/10.1109/MSP.2008.150 +Kirsten Ferguson-Boucher,Cloud Computing: A Records and Information Management Perspective.,2011,9,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp9.html#Ferguson-Boucher11,https://doi.org/10.1109/MSP.2011.159 +Meg Leta Jones,AI and the Ethics of Automating Consent.,2018,16,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp16.html#JonesKE18,https://doi.org/10.1109/MSP.2018.2701155 +E. Michael Power,Averting Security Missteps in Outsourcing.,2005,3,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp3.html#PowerT05,https://doi.org/10.1109/MSP.2005.36 +Mark Curphey,Web application security assessment tools.,2006,4,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp4.html#CurpheyA06,https://doi.org/10.1109/MSP.2006.108 +Marc Donner,War Stories.,2009,7,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp7.html#Donner09a,https://doi.org/10.1109/MSP.2009.83 +Bruce Schneier,Stop Trying to Fix the User.,2016,14,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp14.html#Schneier16a,https://doi.org/10.1109/MSP.2016.101 +Andrew D. McGettrick,Toward Effective Cybersecurity Education.,2013,11,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp11.html#McGettrick13,https://doi.org/10.1109/MSP.2013.155 +Sheila Frankel,Internet Protocol Version 6.,2008,6,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp6.html#FrankelG08,https://doi.org/10.1109/MSP.2008.65 +Robin E. Bloomfield,Resilient to the Unexpected.,2011,9,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp9.html#Bloomfield11,https://doi.org/10.1109/MSP.2011.62 +Brandi Ortega,News Briefs.,2007,5,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp5.html#Ortega07b,https://doi.org/10.1109/MSP.2007.67 +Jose Nazario,Internet Infrastructure Security.,2012,10,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp10.html#NazarioK12,https://doi.org/10.1109/MSP.2012.99 +Bruce Schneier,How the Human Brain Buys Security.,2008,6,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp6.html#Schneier08,https://doi.org/10.1109/MSP.2008.85 +Susan Landau 0001,I'm Pc01002/SpringPeeper/ED288l.6* Who are You?,2008,6,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp6.html#LandauM08,https://doi.org/10.1109/MSP.2008.34 +Omer Tene,Microsoft v. USA: Location of Data and the Law of the Horse.,2016,14,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp14.html#Tene16,https://doi.org/10.1109/MSP.2016.133 +Chaz Lever,Dawn of the Dead Domain: Measuring the Exploitation of Residual Trust in Domains.,2017,15,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp15.html#LeverWNDMA17,https://doi.org/10.1109/MSP.2017.42 +Mark Lindeman,A Gentle Introduction to Risk-Limiting Audits.,2012,10,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp10.html#LindemanS12,https://doi.org/10.1109/MSP.2012.56 +Lillian Røstad,Learning by Failing (and Fixing).,2008,6,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp6.html#RostadTMO08,https://doi.org/10.1109/MSP.2008.89 +Oksana Kulyk,Nothing Comes for Free: How Much Usability Can You Sacrifice for Security?,2017,15,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp15.html#KulykNBV17,https://doi.org/10.1109/MSP.2017.70 +Sean W. Smith,Security and Cognitive Bias: Exploring the Role of the Mind.,2012,10,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp10.html#Smith12,https://doi.org/10.1109/MSP.2012.126 +Angelos D. Keromytis,Randomized Instruction Sets and Runtime Environments Past Research and Future Directions.,2009,7,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp7.html#Keromytis09,https://doi.org/10.1109/MSP.2009.15 +Jeremy Epstein,Are All Types of Internet Voting Unsafe?,2013,11,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp11.html#Epstein13,https://doi.org/10.1109/MSP.2013.57 +Amarnath Gupta,PROFORMA: Proactive Forensics with Message Analytics.,2017,15,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp15.html#GuptaDB17,https://doi.org/10.1109/MSP.2017.4251112 +Adenekan Dedeke,Cybersecurity Framework Adoption: Using Capability Levels for Implementation Tiers and Profiles.,2017,15,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp15.html#Dedeke17,https://doi.org/10.1109/MSP.2017.3681063 +Dan Guido,A Case Study of Intelligence-Driven Defense.,2011,9,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp9.html#Guido11,https://doi.org/10.1109/MSP.2011.158 +Rick Hofstede,Flow-Based Compromise Detection: Lessons Learned.,2018,16,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp16.html#HofstedePSR18,https://doi.org/10.1109/MSP.2018.1331021 +Mark Strembeck,Scenario-Driven Role Engineering.,2010,8,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp8.html#Strembeck10,https://doi.org/10.1109/MSP.2010.46 +Khaled El Emam,Heuristics for De-identifying Health Data.,2008,6,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp6.html#Emam08,https://doi.org/10.1109/MSP.2008.84 +Laree Kiely,Systemic Security Management.,2006,4,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp4.html#KielyB06,https://doi.org/10.1109/MSP.2006.167 +Vincent C. S. Lee,Estimating Potential IT Security Losses: An Alternative Quantitative Approach.,2006,4,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp4.html#LeeS06,https://doi.org/10.1109/MSP.2006.151 +Ivan Arce,Guest Editors' Introduction: Why Attacking Systems Is a Good Idea.,2004,2,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp2.html#ArceM04,https://doi.org/10.1109/MSP.2004.46 +Daniel E. Geer Jr.,Deskilling Digital Security.,2009,7,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp7.html#Geer09a,https://doi.org/10.1109/MSP.2009.151 +William E. Burr,Selecting the Advanced Encryption Standard.,2003,1,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp1.html#Burr03,https://doi.org/10.1109/MSECP.2003.1193210 +Timothy Rosenberg,Taking Networks on the Road: Portable Solutions for Security Educators.,2006,4,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp4.html#RosenbergH06,https://doi.org/10.1109/MSP.2006.25 +Rachna Dhamija,The Seven Flaws of Identity Management: Usability and Security Challenges.,2008,6,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp6.html#DhamijaD08,https://doi.org/10.1109/MSP.2008.49 +Ivo Flammer,Genteel Wearables: Bystander-Centered Design.,2016,14,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp14.html#Flammer16,https://doi.org/10.1109/MSP.2016.91 +Andrew W. Senior,Enabling Video Privacy through Computer Vision.,2005,3,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp3.html#SeniorPHBTECSL05,https://doi.org/10.1109/MSP.2005.65 +Gary McGraw,Guest Editors' Introduction: Securing Online Games: Safeguarding the Future of Software Security.,2009,7,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp7.html#McGrawC09,https://doi.org/10.1109/MSP.2009.65 +Patrick D. McDaniel,Not So Great Expectations: Why Application Markets Haven't Failed Security.,2010,8,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp8.html#McDanielE10,https://doi.org/10.1109/MSP.2010.159 +Joel Weis,Securing Database as a Service: Issues and Compromises.,2011,9,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp9.html#WeisA11,https://doi.org/10.1109/MSP.2011.127 +Ramaswamy Chandramouli,Infrastructure Standards for Smart ID Card Deployment.,2007,5,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp5.html#ChandramouliL07,https://doi.org/10.1109/MSP.2007.34 +Steven M. Bellovin,On the Brittleness of Software and the Infeasibility of Security Metrics.,2006,4,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp4.html#Bellovin06a,https://doi.org/10.1109/MSP.2006.101 +John B. Morris,Who's Watching You Now?,2007,5,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp5.html#MorrisP07,https://doi.org/10.1109/MSP.2007.24 +Robert A. Martin,"The Software Industry's ""Clean Water Act"" Alternative.",2012,10,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp10.html#MartinC12,https://doi.org/10.1109/MSP.2012.3 +Marina Blanton,Improving the Security and Efficiency of Private Genomic Computation Using Server Aid.,2017,15,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp15.html#BlantonB17,https://doi.org/10.1109/MSP.2017.3681056 +Brandi Ortega,News Briefs.,2008,6,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp6.html#Ortega08c,https://doi.org/10.1109/MSP.2008.91 +Bill G. Horne,Umbrellas and Octopuses.,2015,13,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp13.html#Horne15,https://doi.org/10.1109/MSP.2015.18 +Shari Lawrence Pfleeger,Expanding to Meet Readers' Needs.,2014,12,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp12.html#Pfleeger14a,https://doi.org/10.1109/MSP.2014.91 +Fred B. Schneider,Accountability for Perfection.,2009,7,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp7.html#Schneider09,https://doi.org/10.1109/MSP.2009.30 +Fernand Lone Sang,A Tool to Analyze Potential I/O Attacks against PCs.,2014,12,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp12.html#SangND14,https://doi.org/10.1109/MSP.2013.79 +Danny Harnik,Side Channels in Cloud Services: Deduplication in Cloud Storage.,2010,8,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp8.html#HarnikPS10,https://doi.org/10.1109/MSP.2010.187 +Jia Song,The DARPA Cyber Grand Challenge: A Competitor's Perspective.,2015,13,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp13.html#SongA15,https://doi.org/10.1109/MSP.2015.132 +Niels Provos,Hide and Seek: An Introduction to Steganography.,2003,1,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp1.html#ProvosH03,https://doi.org/10.1109/MSECP.2003.1203220 +David Chaum,Secret-Ballot Receipts: True Voter-Verifiable Elections.,2004,2,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp2.html#Chaum04,https://doi.org/10.1109/MSECP.2004.1264852 +Dennis McGrath,Measuring the 4: 11 Effect: The Power Failure and the Internet.,2003,1,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp1.html#McGrath03,https://doi.org/10.1109/MSECP.2003.1236230 +Bojan Zdrnja,Malicious JavaScript Insertion through ARP Poisoning Attacks.,2009,7,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp7.html#Zdrnja09,https://doi.org/10.1109/MSP.2009.72 +Weidong Qiu,iOS Data Recovery Using Low-Level NAND Images.,2013,11,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp11.html#QiuSLL13,https://doi.org/10.1109/MSP.2013.50 +Peter Kuper,The State of Security.,2005,3,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp3.html#Kuper05,https://doi.org/10.1109/MSP.2005.134 +Ricardo Padilha,Confidentiality in the Cloud.,2015,13,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp13.html#PadilhaP15,https://doi.org/10.1109/MSP.2015.4 +Michael Howard,Becoming a Security Expert.,2008,6,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp6.html#Howard08,https://doi.org/10.1109/MSP.2008.3 +Ioannis C. Avramopoulos,Protecting the DNS from Routing Attacks: Two Alternative Anycast Implementations.,2009,7,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp7.html#AvramopoulosS09,https://doi.org/10.1109/MSP.2009.131 +Tara Whalen,Security as if People Mattered.,2011,9,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp9.html#Whalen11,https://doi.org/10.1109/MSP.2011.92 +Chris Rohlf,The Security Challenges of Client-Side Just-in-Time Engines.,2012,10,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp10.html#RohlfI12,https://doi.org/10.1109/MSP.2012.53 +Gary McGraw,Silver Bullet Speaks with John Stewart [Interview].,2007,5,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp5.html#McGraw07,https://doi.org/10.1109/MSP.2007.17 +Daniel Geer,Information Security: Why the Future Belongs to the Quants.,2003,1,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp1.html#GeerHJ03,https://doi.org/10.1109/MSECP.2003.1219053 +Gernot Heiser,It's Time for Trustworthy Systems.,2012,10,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp10.html#HeiserMK12,https://doi.org/10.1109/MSP.2012.41 +Dimitri do B. DeFigueiredo,The Case for Mobile Two-Factor Authentication.,2011,9,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp9.html#DeFigueiredo11,https://doi.org/10.1109/MSP.2011.144 +Hal R. Varian,The Demographics of the Do-Not-Call List.,2005,3,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp3.html#VarianWW05,https://doi.org/10.1109/MSP.2005.28 +Susan Dery,Using Whitelisting to Combat Malware Attacks at Fannie Mae.,2013,11,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp11.html#Dery13,https://doi.org/10.1109/MSP.2013.102 +Steven Cheung,Denial of Service against the Domain Name System.,2006,4,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp4.html#Cheung06,https://doi.org/10.1109/MSP.2006.10 +Rainer Böhme,The Iterated Weakest Link.,2010,8,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp8.html#BohmeM10,https://doi.org/10.1109/MSP.2010.51 +Marc Donner,New Models for Old.,2009,7,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp7.html#Donner09b,https://doi.org/10.1109/MSP.2009.99 +John S. Quarterman,The Ultimate in Instant Gratification.,2003,1,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp1.html#Quarterman03,https://doi.org/10.1109/MSECP.2003.1253569 +Marc Donner,Jennifer Government.,2004,2,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp2.html#Donner04f,https://doi.org/10.1109/MSP.2004.74 +Paul Anderson,Measuring the Value of Static-Analysis Tool Deployments.,2012,10,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp10.html#Anderson12,https://doi.org/10.1109/MSP.2012.4 +Katharine W. Webb,Biometric Security Solutions.,2005,3,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp3.html#Webb05,https://doi.org/10.1109/MSP.2005.117 +Fred Dushin,Handling Multiple Credentials in a Heterogeneous SOA Environment.,2007,5,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp5.html#DushinN07,https://doi.org/10.1109/MSP.2007.110 +Kjell Jørgen Hole,Diversity Reduces the Impact of Malware.,2015,13,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp13.html#Hole15,https://doi.org/10.1109/MSP.2013.48 +Terry C. Vickers Benzel,Crossing the Great Divide: From Research to Market.,2013,11,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp11.html#BenzelORAS13,https://doi.org/10.1109/MSP.2013.32 +Yih-Chun Hu,A Survey of Secure Wireless Ad Hoc Routing.,2004,2,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp2.html#HuP04,https://doi.org/10.1109/MSP.2004.1 +Daniel E. Geer Jr.,Convergence.,2006,4,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp4.html#Geer06,https://doi.org/10.1109/MSP.2006.61 +Mary Frances Theofanos,Guest Editors' Introduction: Shouldn't All Security Be Usable?,2011,9,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp9.html#TheofanosP11,https://doi.org/10.1109/MSP.2011.30 +Wojciech Mazurczyk,Information Hiding as a Challenge for Malware Detection.,2015,13,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp13.html#MazurczykC15,https://doi.org/10.1109/MSP.2015.33 +Greg Goth,News.,2004,2,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp2.html#GothA04a,https://doi.org/10.1109/MSP.2004.106 +James Pettigrew,Making Successful Security Decisions: A Qualitative Evaluation.,2012,10,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp10.html#PettigrewR12,https://doi.org/10.1109/MSP.2011.128 +Steven M. Bellovin,Security and Privacy: Enemies or Allies?,2005,3,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp3.html#Bellovin05,https://doi.org/10.1109/MSP.2005.80 +David Moore 0001,Inside the Slammer Worm.,2003,1,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp1.html#MoorePSSSW03,https://doi.org/10.1109/MSECP.2003.1219056 +Lori M. Kaufman,Can a Trusted Environment Provide Security?.,2010,8,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp8.html#Kaufman10,https://doi.org/10.1109/MSP.2010.33 +Bruce Potter,Wireless Security's Future.,2003,1,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp1.html#Potter03,https://doi.org/10.1109/MSECP.2003.1219074 +Gunnar Peterson,Service-Oriented Security Indications for Use.,2009,7,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp7.html#Peterson09,https://doi.org/10.1109/MSP.2009.50 +Nir Kshetri,"An Opinion on the ""Report on Securing and Growing the Digital Economy"".",2017,15,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp15.html#Kshetri17,https://doi.org/10.1109/MSP.2017.10 +Jian Liu 0012,Toward Fairness of Cryptocurrency Payments.,2018,16,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp16.html#LiuLKA18,https://doi.org/10.1109/MSP.2018.2701163 +John Viega,Giving Back.,2012,10,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp10.html#Viega12a,https://doi.org/10.1109/MSP.2012.146 +Danny Dhillon,Developer-Driven Threat Modeling: Lessons Learned in the Trenches.,2011,9,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp9.html#Dhillon11,https://doi.org/10.1109/MSP.2011.47 +Cormac Herley,When Does Targeting Make Sense for an Attacker?,2013,11,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp11.html#Herley13,https://doi.org/10.1109/MSP.2013.46 +Michael Lesk,Caller ID: Whose Privacy?,2014,12,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp12.html#Lesk14,https://doi.org/10.1109/MSP.2014.20 +Katrine Evans,Where in the World Is My Information?: Giving People Access to Their Data.,2014,12,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp12.html#Evans14,https://doi.org/10.1109/MSP.2014.104 +Matt Bishop,A Human Endeavor: Lessons from Shakespeare and Beyond.,2005,3,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp3.html#BishopF05,https://doi.org/10.1109/MSP.2005.87 +Denise Anthony,Big Brother in the Information Age: Concerns about Government Information Gathering over Time.,2015,13,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp13.html#AnthonySC15,https://doi.org/10.1109/MSP.2015.70 +Rakesh M. Verma,Security Analytics: Essential Data Analytics Knowledge for Cybersecurity Professionals and Students.,2015,13,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp13.html#VermaKMLS15,https://doi.org/10.1109/MSP.2015.121 +Dimitrios Lekkas,Handling and Reporting Security Advisories: A Scorecard Approach.,2005,3,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp3.html#LekkasS05,https://doi.org/10.1109/MSP.2005.98 +Raymond C. Parks,Principles of Cyberwarfare.,2011,9,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp9.html#ParksD11,https://doi.org/10.1109/MSP.2011.138 +Peter Oehlert,Violating Assumptions with Fuzzing.,2005,3,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp3.html#Oehlert05,https://doi.org/10.1109/MSP.2005.55 +Joshua Schiffman,Network-Based Root of Trust for Installation.,2011,9,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp9.html#SchiffmanMJM11,https://doi.org/10.1109/MSP.2011.15 +,Reviewer Thanks.,2004,2,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp2.html#X04,http://doi.ieeecomputersociety.org/10.1109/MSP.2004.10001 +Jim Hearn,Keeping Up Appearances.,2003,1,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp1.html#Hearn03c,https://doi.org/10.1109/MSECP.2003.1219076 +Martina de Gramatica,IT Interdependence and the Economic Fairness of Cybersecurity Regulations for Civil Aviation.,2015,13,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp13.html#GramaticaMSTW15,https://doi.org/10.1109/MSP.2015.98 +Daniel E. Geer Jr.,Digital Endosymbiosis.,2009,7,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp7.html#Geer09,https://doi.org/10.1109/MSP.2009.63 +Anirban Chakrabarti,Grid Computing Security: A Taxonomy.,2008,6,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp6.html#ChakrabartiDS08,https://doi.org/10.1109/MSP.2008.12 +Elias Levy,The Making of a Spam Zombie Army: Dissecting the Sobig Worms.,2003,1,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp1.html#Levy03a,https://doi.org/10.1109/MSECP.2003.1219071 +Nirwan Ansari,Evaluating Electronic Voting Systems Equipped with Voter-Verified Paper Records.,2008,6,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp6.html#AnsariSHZJS08,https://doi.org/10.1109/MSP.2008.62 +Deborah A. Frincke,Back to School.,2004,2,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp2.html#FrinckeB04a,https://doi.org/10.1109/MSP.2004.35 +Gary T. Marx,The Public as Partner? Technology Can Make Us Auxiliaries as Well as Vigilantes.,2013,11,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp11.html#Marx13,https://doi.org/10.1109/MSP.2013.126 +Ivan Arce,Ghost in the Virtual Machine.,2007,5,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp5.html#Arce07a,https://doi.org/10.1109/MSP.2007.83 +Gary McGraw,Silver Bullet Talks with Whitfield Diffie.,2015,13,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp13.html#McGraw15a,https://doi.org/10.1109/MSP.2015.40 +William H. Hawkins,Securing Binary Code.,2017,15,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp15.html#HawkinsHNCD17,https://doi.org/10.1109/MSP.2017.4251105 +Massoud Amin,Guest Editor's Introduction: Infrastructure Security--Reliability and Dependability of Critical Systems.,2005,3,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp3.html#Amin05,https://doi.org/10.1109/MSP.2005.68 +James Figueroa,News Briefs.,2009,7,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp7.html#Figueroa09b,https://doi.org/10.1109/MSP.2009.128 +James X. Dempsey,Guest Editors' Introduction: Lawyers and Technologists--Joined at the Hip?,2006,4,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp4.html#DempseyR06,https://doi.org/10.1109/MSP.2006.67 +Michael E. Locasto,The Hidden Difficulties of Watching and Rebuilding Networks.,2008,6,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp6.html#LocastoS08,https://doi.org/10.1109/MSP.2008.48 +Jeff Jianxin Yan,Password Memorability and Security: Empirical Results.,2004,2,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp2.html#YanBAG04,https://doi.org/10.1109/MSP.2004.81 +Daniel E. Geer,Trading Places.,2018,16,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp16.html#Geer18,https://doi.org/10.1109/MSP.2018.1331041 +Daniel E. Geer,Less Is More: Saving the Internet from Itself.,2015,13,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp13.html#Geer15,https://doi.org/10.1109/MSP.2015.6 +Tuomas Aura,Why you shouldn't study security [security education].,2006,4,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp4.html#Aura06,https://doi.org/10.1109/MSP.2006.82 +David A. Basin,Improving the Security of Cryptographic Protocol Standards.,2015,13,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp13.html#BasinCMRW15,https://doi.org/10.1109/MSP.2013.162 +Bruce Schneier,How Changing Technology Affects Security.,2012,10,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp10.html#Schneier12,https://doi.org/10.1109/MSP.2012.39 +Jonathan Margulies,Garage Door Openers: An Internet of Things Case Study.,2015,13,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp13.html#Margulies15a,https://doi.org/10.1109/MSP.2015.80 +Michel Cukier,Prioritizing Vulnerability Remediation by Determining Attacker-Targeted Vulnerabilities.,2009,7,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp7.html#CukierP09,https://doi.org/10.1109/MSP.2009.13 +Lori M. Kaufman,Thinking Operationally.,2010,8,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp8.html#KaufmanP10,https://doi.org/10.1109/MSP.2010.109 +Deborah A. Frincke,Who Watches the Security Educators?,2003,1,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp1.html#Frincke03,https://doi.org/10.1109/MSECP.2003.1203223 +Pravir Chandra,Putting the tools to work: how to succeed with source code analysis.,2006,4,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp4.html#ChandraCS06,https://doi.org/10.1109/MSP.2006.77 +Steven M. Bellovin,Easy Email Encryption.,2016,14,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp14.html#Bellovin16a,https://doi.org/10.1109/MSP.2016.132 +Lin Chen 0009,Tyranny of the Majority: On the (Im)possibility of Correctness of Smart Contracts.,2018,16,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp16.html#ChenXGLS18,https://doi.org/10.1109/MSP.2018.3111240 +Charles P. Pfleeger,Looking into Software Transparency.,2016,14,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp14.html#Pfleeger16a,https://doi.org/10.1109/MSP.2016.5 +Dave Ahmad,The Rising Threat of Vulnerabilities Due to Integer Errors.,2003,1,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp1.html#Ahmad03,https://doi.org/10.1109/MSECP.2003.1219077 +Sergey Bratus,Why Do Street-Smart People Do Stupid Things Online?,2008,6,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp6.html#BratusMS08,https://doi.org/10.1109/MSP.2008.79 +Michael Lesk,Chicken Little and the Recorded Music Crisis.,2003,1,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp1.html#Lesk03d,https://doi.org/10.1109/MSECP.2003.1236239 +Roland L. Trope,Directors' Digital Fiduciary Duties.,2005,3,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp3.html#Trope05,https://doi.org/10.1109/MSP.2005.11 +Michael Lesk,Reading Over Your Shoulder.,2009,7,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp7.html#Lesk09,https://doi.org/10.1109/MSP.2009.74 +Faith M. Heikkila,Encryption: Security Considerations for Portable Media Devices.,2007,5,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp5.html#Heikkila07,https://doi.org/10.1109/MSP.2007.80 +Peter Blank,Privacy-Aware Restricted Areas for Unmanned Aerial Systems.,2018,16,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp16.html#BlankKS18,https://doi.org/10.1109/MSP.2018.1870868 +Luther Martin,Fitting Square Pegs into Round Holes.,2006,4,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp4.html#Martin06,https://doi.org/10.1109/MSP.2006.120 +John Black,A Security Analysis of the Internet Chess Club.,2006,4,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp4.html#BlackCG06,https://doi.org/10.1109/MSP.2006.2 +Jean-Marc Seigneur,Privacy Recovery with Disposable Email Addresses.,2003,1,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp1.html#SeigneurJ03,https://doi.org/10.1109/MSECP.2003.1253566 +Paul Ohm,Should Sniffing Wi-Fi Be Illegal?,2014,12,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp12.html#Ohm14,https://doi.org/10.1109/MSP.2014.14 +Michael E. Lesk,Should Indexing Be Fair Use? The Battle over Google Book Search.,2006,4,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp4.html#Lesk06,https://doi.org/10.1109/MSP.2006.52 +Diana Maimut,Lightweight Cryptography for RFID Tags.,2012,10,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp10.html#MaimutO12,https://doi.org/10.1109/MSP.2012.43 +Xiaolong Bai,Apple ZeroConf Holes: How Hackers Can Steal iPhone Photos.,2017,15,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp15.html#BaiXZWLLH17,https://doi.org/10.1109/MSP.2017.23 +Gary McGraw,Silver BulletTalks with Eugene Spafford.,2008,6,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp6.html#McGraw08,https://doi.org/10.1109/MSP.2008.22 +Sean Barnum,Knowledge for Software Security.,2005,3,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp3.html#BarnumM05,https://doi.org/10.1109/MSP.2005.45 +Paul A. Karger,I/O for Virtual Machine Monitors: Security and Performance Issues.,2008,6,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp6.html#KargerS08,https://doi.org/10.1109/MSP.2008.119 +Jonathan Margulies,A Developer's Guide to Audit Logging.,2015,13,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp13.html#Margulies15,https://doi.org/10.1109/MSP.2015.50 +Kiron Lebeck,Arya: Operating System Support for Securely Augmenting Reality.,2018,16,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp16.html#LebeckRKR18,https://doi.org/10.1109/MSP.2018.1331020 +Yasemin Acar,How Internet Resources Might Be Helping You Develop Faster but Less Securely.,2017,15,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp15.html#AcarBFKMS17,https://doi.org/10.1109/MSP.2017.24 +Saar Drimer,Failures of Tamper-Proofing in PIN Entry Devices.,2009,7,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp7.html#DrimerMA09,https://doi.org/10.1109/MSP.2009.187 +Charlie Miller,Mobile Attacks and Defense.,2011,9,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp9.html#Miller11,https://doi.org/10.1109/MSP.2011.85 +Rick Wash,Folk Security.,2012,10,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp10.html#Wash12,https://doi.org/10.1109/MSP.2012.144 +Antonio Manuel Fernandez Villamor,Helping Users Deal with Digital Threats: The Online User Supervision Architecture.,2011,9,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp9.html#VillamorG11,https://doi.org/10.1109/MSP.2011.73 +Jeremy Epstein,Security Lessons Learned from Société Générale.,2008,6,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp6.html#Epstein08,https://doi.org/10.1109/MSP.2008.71 +Joshua J. Pauli,Filling Your Cyber Operations Training Toolbox.,2012,10,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp10.html#PauliE12,https://doi.org/10.1109/MSP.2012.117 +Shari Lawrence Pfleeger,Learning from Other Disciplines.,2015,13,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp13.html#Pfleeger15,https://doi.org/10.1109/MSP.2015.81 +Laurianne McLaughlin,From AWK to Google: Peter Weinberger Talks Search.,2005,3,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp3.html#McLaughlin05a,https://doi.org/10.1109/MSP.2005.123 +Hui Jun Wu,Kernel Service Protection for Client Security.,2010,8,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp8.html#Wu10,https://doi.org/10.1109/MSP.2010.112 +Steven M. Bellovin,Clouds from Both Sides.,2011,9,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp9.html#Bellovin11,https://doi.org/10.1109/MSP.2011.48 +Charles P. Pfleeger,Why We Won't Review Books by Hackers.,2006,4,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp4.html#PfleegerP06,https://doi.org/10.1109/MSP.2006.111 +John Viega,Why applying standards to Web services is not enough.,2006,4,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp4.html#ViegaE06,https://doi.org/10.1109/MSP.2006.110 +Thanassis Avgerinos,The Mayhem Cyber Reasoning System.,2018,16,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp16.html#AvgerinosBDGNRW18,https://doi.org/10.1109/MSP.2018.1870873 +Jungwoo Ryoo,Cloud Security Auditing: Challenges and Emerging Approaches.,2014,12,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp12.html#RyooRAK14,https://doi.org/10.1109/MSP.2013.132 +Deborah A. Frincke,Joining the Security Education Community.,2004,2,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp2.html#FrinckeB04b,https://doi.org/10.1109/MSP.2004.75 +Irfan Ahmed,Programmable Logic Controller Forensics.,2017,15,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp15.html#AhmedOSR17,https://doi.org/10.1109/MSP.2017.4251102 +George Cybenko,From the Editors: Privacy Is the Issue.,2003,1,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp1.html#Cybenko03c,https://doi.org/10.1109/MSECP.2003.1253559 +Michael Lesk,Ideas Ahead of Their Time: Digital Time Stamping.,2015,13,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp13.html#Lesk15a,https://doi.org/10.1109/MSP.2015.69 +John R. Michener,Common Permissions in Microsoft Windows Server 2008 and Windows Vista.,2008,6,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp6.html#Michener08,https://doi.org/10.1109/MSP.2008.59 +Alvaro A. Cárdenas,Big Data Analytics for Security.,2013,11,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp11.html#CardenasMR13,https://doi.org/10.1109/MSP.2013.138 +Christian Rechberger,The NIST Cryptographic Workshop on Hash Functions.,2006,4,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp4.html#RechbergerRS06,https://doi.org/10.1109/MSP.2006.26 +Matt Bishop,What Is Computer Security?,2003,1,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp1.html#Bishop03,https://doi.org/10.1109/MSECP.2003.1176998 +Michael Lesk,Reading: From Paper to Pixels.,2011,9,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp9.html#Lesk11b,https://doi.org/10.1109/MSP.2011.87 +Bruce Schneier,IoT Security: What's Plan B?,2017,15,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp15.html#Schneier17a,https://doi.org/10.1109/MSP.2017.3681066 +Marianthi Theoharidou,Common Body of Knowledge for Information Security.,2007,5,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp5.html#TheoharidouG07,https://doi.org/10.1109/MSP.2007.32 +Carl E. Landwehr,New Challenges for the New Year.,2007,5,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp5.html#Landwehr07,https://doi.org/10.1109/MSP.2007.13 +Emiliano De Cristofaro,Some Like It Private: Sharing Confidential Information Based on Oblivious Authorization.,2010,8,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp8.html#CristofaroK10,https://doi.org/10.1109/MSP.2010.91 +Hugh Thompson,The Human Element of Information Security.,2013,11,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp11.html#Thompson13,https://doi.org/10.1109/MSP.2012.161 +Franco Callegati,Man-in-the-Middle Attack to the HTTPS Protocol.,2009,7,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp7.html#CallegatiCR09,https://doi.org/10.1109/MSP.2009.12 +Denise Anthony,Securing Information Technology in Healthcare.,2013,11,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp11.html#AnthonyCCGKMMPSGJ13,https://doi.org/10.1109/MSP.2013.104 +Jonathan D. Pincus,Beyond Stack Smashing: Recent Advances in Exploiting Buffer Overruns.,2004,2,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp2.html#PincusB04,https://doi.org/10.1109/MSP.2004.36 +Jonathan Anderson,Must Social Networking Conflict with Privacy?,2013,11,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp11.html#AndersonS13,https://doi.org/10.1109/MSP.2013.23 +Thomas E. Dube,Hindering Reverse Engineering: Thinking Outside the Box.,2008,6,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp6.html#DubeBRBMBR08,https://doi.org/10.1109/MSP.2008.33 +Tom Kirkham,The Personal Data Store Approach to Personal Data Security.,2013,11,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp11.html#KirkhamWRK13,https://doi.org/10.1109/MSP.2012.137 +Roy A. Maxion,Methodological Foundations: Enabling the Next Generation of Security.,2005,3,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp3.html#MaxionR05,https://doi.org/10.1109/MSP.2005.47 +Richard R. Brooks,Kafka in the academy: a note on ethics in IA education.,2006,4,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp4.html#BrooksV06,https://doi.org/10.1109/MSP.2006.96 +Wenliang Du,SEED: Hands-On Lab Exercises for Computer Security Education.,2011,9,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp9.html#Du11,https://doi.org/10.1109/MSP.2011.139 +Joshua W. Haines,Validation of Sensor Alert Correlators.,2003,1,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp1.html#HainesRTT03,https://doi.org/10.1109/MSECP.2003.1176995 +,Letters to the Editor.,2005,3,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp3.html#X05a,https://doi.org/10.1109/MSP.2005.151 +Shari Lawrence Pfleeger,Enlightened Security: Shedding Light on What Works and Why.,2013,11,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp11.html#Pfleeger13,https://doi.org/10.1109/MSP.2013.7 +Peter Gutmann,When Hashes Collide.,2005,3,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp3.html#GutmannNP05,https://doi.org/10.1109/MSP.2005.84 +Wayne Pauley,Cloud Provider Transparency: An Empirical Evaluation.,2010,8,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp8.html#Pauley10,https://doi.org/10.1109/MSP.2010.140 +Michael Z. Lee,Anon-Pass: Practical Anonymous Subscriptions.,2014,12,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp12.html#LeeDKWW14,https://doi.org/10.1109/MSP.2013.158 +Ivan Arce,The Rise of the Gadgets.,2003,1,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp1.html#Arce03a,https://doi.org/10.1109/MSECP.2003.1236241 +Barbara Endicott-Popovsky,Unintended Consequences: Digital Evidence in Our Legal System.,2012,10,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp10.html#Endicott-PopovskyH12,https://doi.org/10.1109/MSP.2012.54 +Alessandro Acquisti,Nudging Privacy: The Behavioral Economics of Personal Information.,2009,7,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp7.html#Acquisti09,https://doi.org/10.1109/MSP.2009.163 +Ilan Oshri,An Information Security Strategy for Networkable Devices.,2007,5,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp5.html#OshriKH07,https://doi.org/10.1109/MSP.2007.104 +Shari Lawrence Pfleeger,The Eyes Have It: Surveillance and How It Evolved.,2014,12,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp12.html#Pfleeger14,https://doi.org/10.1109/MSP.2014.80 +Fred B. Schneider,Network Neutrality versus Internet Trustworthiness?,2008,6,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp6.html#Schneider08,https://doi.org/10.1109/MSP.2008.90 +Earlence Fernandes,Security Implications of Permission Models in Smart-Home Application Frameworks.,2017,15,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp15.html#FernandesRJP17,https://doi.org/10.1109/MSP.2017.43 +Gordon F. Hughes,Disposal of Disk and Tape Data by Secure Sanitization.,2009,7,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp7.html#HughesCC09,https://doi.org/10.1109/MSP.2009.89 +Yuta Nakashima,Evaluating Protection Capability for Visual Privacy Information.,2016,14,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp14.html#NakashimaIB16,https://doi.org/10.1109/MSP.2016.3 +Daniel E. Geer Jr.,Risk Aversion.,2012,10,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp10.html#Geer12b,https://doi.org/10.1109/MSP.2012.125 +Lance J. Hoffman,Holistically Building the Cybersecurity Workforce.,2012,10,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp10.html#HoffmanBT12,https://doi.org/10.1109/MSP.2011.181 +Paulo Veríssimo,Intrusion-tolerant middleware: the road to automatic security.,2006,4,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp4.html#VerissimoNCPPDSW06,https://doi.org/10.1109/MSP.2006.95 +Brian D. Carrier,Digital Forensics Works.,2009,7,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp7.html#Carrier09,https://doi.org/10.1109/MSP.2009.35 +Brian Chess,Guest editors' introduction: Software Assurance for the Masses.,2012,10,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp10.html#ChessW12,https://doi.org/10.1109/MSP.2012.78 +Sandra Ring,Taking a Lesson from Stealthy Rootkits.,2004,2,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp2.html#RingC04,https://doi.org/10.1109/MSP.2004.57 +Trent Jaeger,Outlook: Cloudy with a Chance of Security Challenges and Improvements.,2010,8,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp8.html#JaegerS10,https://doi.org/10.1109/MSP.2010.45 +Gary McGraw,Silver Bullet Speaks with Dorothy Denning.,2007,5,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp5.html#McGraw07a,https://doi.org/10.1109/MSP.2007.41 +Fred Cohen,The Virtualization Solution.,2010,8,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp8.html#Cohen10a,https://doi.org/10.1109/MSP.2010.108 +Bill McCarty,Botnets: Big and Bigger.,2003,1,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp1.html#McCarty03,https://doi.org/10.1109/MSECP.2003.1219079 +Brandi Ortega,News Briefs.,2006,4,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp4.html#Ortega06,https://doi.org/10.1109/MSP.2006.129 +Don A. Bailey,Moving 2 Mishap: M2M's Impact on Privacy and Safety.,2012,10,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp10.html#Bailey12,https://doi.org/10.1109/MSP.2012.16 +Roland L. Trope,Mettle Fatigue: VW's Single-Point-of-Failure Ethics.,2016,14,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp14.html#TropeR16,https://doi.org/10.1109/MSP.2016.6 +Rita Heimes,Global InfoSec and Breach Standards.,2016,14,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp14.html#Heimes16,https://doi.org/10.1109/MSP.2016.90 +Rolf Oppliger,Providing Certified Mail Services on the Internet.,2007,5,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp5.html#Oppliger07,https://doi.org/10.1109/MSP.2007.15 +Khaled Salah,Using Cloud Computing to Implement a Security Overlay Network.,2013,11,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp11.html#SalahCZAA13,https://doi.org/10.1109/MSP.2012.88 +Christian Cachin,Encrypting Keys Securely.,2010,8,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp8.html#CachinC10,https://doi.org/10.1109/MSP.2010.124 +Lorrie Faith Cranor,A Shortage of Privacy Engineers.,2013,11,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp11.html#CranorS13,https://doi.org/10.1109/MSP.2013.25 +Ninghui Li,A Critique of the ANSI Standard on Role-Based Access Control.,2007,5,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp5.html#LiBB07,https://doi.org/10.1109/MSP.2007.158 +E. Michael Power,Setting Boundaries at Borders: Reconciling Laptop Searches and Privacy.,2007,5,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp5.html#PowerGT07,https://doi.org/10.1109/MSP.2007.40 +Michael A. Caloyannides,Enhancing Security: Not for the Conformist.,2004,2,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp2.html#Caloyannides04e,https://doi.org/10.1109/MSP.2004.98 +Ramaswamy Chandramouli,Challenges in Securing the Domain Name System.,2006,4,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp4.html#ChandramouliR06,https://doi.org/10.1109/MSP.2006.8 +Marc Donner,Charge of the Light Brigade.,2008,6,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp6.html#Donner08,https://doi.org/10.1109/MSP.2008.7 +Marco Carvalho 0001,Security in Mobile Ad Hoc Networks.,2008,6,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp6.html#Carvalho08,https://doi.org/10.1109/MSP.2008.44 +,Security and Privacy Welcomes New Editorial Board Members.,2003,1,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp1.html#X03c,http://doi.ieeecomputersociety.org/10.1109/MSP.2003.10010 +Kjell Jørgen Hole,Open Wireless Networks on University Campuses.,2008,6,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp6.html#HoleNEKHH08,https://doi.org/10.1109/MSP.2008.92 +Salil Prabhakar,Biometric Recognition: Security and Privacy Concerns.,2003,1,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp1.html#PrabhakarPJ03,https://doi.org/10.1109/MSECP.2003.1193209 +O. Sami Saydjari,Multilevel Security: Reprise.,2004,2,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp2.html#Saydjari04,https://doi.org/10.1109/MSP.2004.78 +Gregory J. Conti,Embracing the Kobayashi Maru: Why You Should Teach Your Students to Cheat.,2011,9,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp9.html#ContiC11,https://doi.org/10.1109/MSP.2011.80 +Debi Ashenden,Security Dialogues: Building Better Relationships between Security and Business.,2016,14,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp14.html#AshendenL16,https://doi.org/10.1109/MSP.2016.57 +Tara Whalen,Mobile Devices and Location Privacy: Where Do We Go from Here?,2011,9,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp9.html#Whalen11a,https://doi.org/10.1109/MSP.2011.168 +Anup K. Ghosh,Lost Decade or Golden Era: Computer Security since 9/11.,2012,10,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp10.html#GhoshM12,https://doi.org/10.1109/MSP.2012.12 +Felicia Duran,Building A System For Insider Security.,2009,7,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp7.html#DuranCCDH09,https://doi.org/10.1109/MSP.2009.111 +Cynthia E. Irvine,A Cyberoperations Program.,2013,11,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp11.html#Irvine13,https://doi.org/10.1109/MSP.2013.108 +James L. Wayman,Biometrics in Identity Management Systems.,2008,6,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp6.html#Wayman08,https://doi.org/10.1109/MSP.2008.28 +Gary McGraw,Silver Bullet Talks with Peiter (Mudge) Zatko.,2016,14,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp14.html#McGraw16,https://doi.org/10.1109/MSP.2016.11 +Jean-Sébastien Coron,What Is Cryptography?,2006,4,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp4.html#Coron06,https://doi.org/10.1109/MSP.2006.29 +Michael A. Caloyannides,Keeping Offline Computer Usage Private.,2003,1,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp1.html#Caloyannides03d,https://doi.org/10.1109/MSECP.2003.1236245 +Fernando Alonso-Fernandez,Quality Measures in Biometric Systems.,2012,10,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp10.html#Alonso-FernandezFO12,https://doi.org/10.1109/MSP.2011.178 +Michael A. Caloyannides,Society Cannot Function Without Privacy.,2003,1,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp1.html#Caloyannides03b,https://doi.org/10.1109/MSECP.2003.1203230 +Jean-Pierre Hubaux,Genomic Data Privacy and Security: Where We Stand and Where We Are Heading.,2017,15,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp15.html#HubauxKM17,https://doi.org/10.1109/MSP.2017.3681048 +Robert Fly,Detecting Fraud on Websites.,2011,9,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp9.html#Fly11,https://doi.org/10.1109/MSP.2011.161 +Brad Arkin,Never Waste a Crisis.,2011,9,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp9.html#Arkin11,https://doi.org/10.1109/MSP.2011.58 +David F. Ferraiolo,"RBAC Standard Rationale: Comments on ""A Critique of the ANSI Standard on Role-Based Access Control"".",2007,5,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp5.html#FerraioloKS07,https://doi.org/10.1109/MSP.2007.173 +Martin Ortlieb,The Anthropologist's View on Privacy.,2014,12,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp12.html#Ortlieb14,https://doi.org/10.1109/MSP.2014.57 +Robin E. Bloomfield,Are Things Getting Worse?,2012,10,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp10.html#Bloomfield12,https://doi.org/10.1109/MSP.2012.115 +Michael Lesk,Son of Carterfone: Network Neutrality or Regulation?,2010,8,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp8.html#Lesk10,https://doi.org/10.1109/MSP.2010.105 +Reuben Binns,What Can Political Philosophy Teach Us about Algorithmic Fairness?,2018,16,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp16.html#Binns18,https://doi.org/10.1109/MSP.2018.2701147 +Brandi Ortega,News Briefs.,2008,6,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp6.html#Ortega08,https://doi.org/10.1109/MSP.2008.16 +Cynthia E. Irvine,Teaching Constructive Security.,2003,1,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp1.html#Irvine03,https://doi.org/10.1109/MSECP.2003.1253570 +Kanta Jiwnani,Susceptibility Matrix: A New Aid to Software Auditing.,2004,2,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp2.html#JiwnaniZ04,https://doi.org/10.1109/MSECP.2004.1281240 +Jeffrey K. MacKie-Mason,Can We Afford Privacy from Surveillance?,2014,12,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp12.html#MacKie-Mason14,https://doi.org/10.1109/MSP.2014.88 +Gary McGraw,Online Games and Security.,2007,5,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp5.html#McGrawH07,https://doi.org/10.1109/MSP.2007.116 +Salim Hariri,Impact Analysis of Faults and Attacks in Large-Scale Networks.,2003,1,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp1.html#HaririQDRR03,https://doi.org/10.1109/MSECP.2003.1236235 +Quyen L. Nguyen,A Comparison of Intrusion-Tolerant System Architectures.,2011,9,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp9.html#NguyenS11,https://doi.org/10.1109/MSP.2010.145 +Jeff Yan,CAPTCHA Security: A Case Study.,2009,7,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp7.html#YanA09,https://doi.org/10.1109/MSP.2009.84 +Gary McGraw,Silver Bullet Talks with W. Hord Tipton.,2013,11,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp11.html#McGraw13e,https://doi.org/10.1109/MSP.2013.151 +Bruce Schneier,Guilty Until Proven Innocent?,2003,1,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp1.html#Schneier03b,https://doi.org/10.1109/MSECP.2003.1203231 +John G. Levine,Detecting and Categorizing Kernel-Level Rootkits to Aid Future Detection.,2006,4,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp4.html#LevineGO06,https://doi.org/10.1109/MSP.2006.11 +Paul E. Black,Static Analyzers: Seat Belts for Your Code.,2012,10,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp10.html#Black12,https://doi.org/10.1109/MSP.2012.2 +Justin Troutman,Green Cryptography: Cleaner Engineering through Recycling.,2009,7,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp7.html#TroutmanR09,https://doi.org/10.1109/MSP.2009.91 +Jean-Michel Cioranesco,Communicating Covertly through CPU Monitoring.,2013,11,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp11.html#CioranescoFN13,https://doi.org/10.1109/MSP.2013.140 +M. Eric Johnson,Security through Information Risk Management.,2009,7,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp7.html#JohnsonGP09,https://doi.org/10.1109/MSP.2009.77 +Adrian Hayes,Network Service Authentication Timing Attacks.,2013,11,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp11.html#Hayes13,https://doi.org/10.1109/MSP.2013.39 +,Protecting Consumers' Private Health Information.,2004,2,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp2.html#X04g,https://doi.org/10.1109/MSP.2004.82 +Anne Anderson,Web services policies.,2006,4,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp4.html#Anderson06,https://doi.org/10.1109/MSP.2006.81 +Jonathan P. Caulkins,Optimizing Investments in Security Countermeasures: A Practical Tool for Fixed Budgets.,2007,5,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp5.html#CaulkinsHMO07,https://doi.org/10.1109/MSP.2007.117 +Michael Lesk,Your Memory Is Now a Vendor Service.,2012,10,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp10.html#Lesk12,https://doi.org/10.1109/MSP.2012.26 +Gary McGraw,Silver Bullet Talks with Jon Swartz.,2008,6,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp6.html#McGraw08b,https://doi.org/10.1109/MSP.2008.72 +Matthew Geiger,Scrubbing Stubborn Data: An Evaluation of Counter-Forensic Privacy Tools.,2006,4,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp4.html#GeigerC06,https://doi.org/10.1109/MSP.2006.132 +Yossi Gilad,Off-Path Hacking: The Illusion of Challenge-Response Authentication.,2014,12,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp12.html#GiladHS14,https://doi.org/10.1109/MSP.2013.130 +Bret Michael,Are Governments Up to the Task?,2008,6,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp6.html#Michael08,https://doi.org/10.1109/MSP.2008.137 +John Steven,Metricon 2.0.,2007,5,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp5.html#StevenP07,https://doi.org/10.1109/MSP.2007.171 +John Viega,Guest Editors' Introduction: Mobile Device Security.,2010,8,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp8.html#ViegaM10,https://doi.org/10.1109/MSP.2010.76 +Rohan M. Amin,Detecting Targeted Malicious Email.,2012,10,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp10.html#AminRD12,https://doi.org/10.1109/MSP.2011.154 +Christos Dimitrakakis,Distance-Bounding Protocols: Are You Close Enough?,2015,13,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp13.html#DimitrakakisM15,https://doi.org/10.1109/MSP.2015.87 +Michael Howard,Improving Software Security by Eliminating the CWE Top 25 Vulnerabilities.,2009,7,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp7.html#Howard09,https://doi.org/10.1109/MSP.2009.69 +Alec Yasinsac,The Dynamics of Counting and Recounting Votes.,2008,6,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp6.html#YasinsacB08,https://doi.org/10.1109/MSP.2008.75 +Wojciech Mazurczyk,Recent Advancements in Digital Forensics.,2017,15,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp15.html#MazurczykCW17,https://doi.org/10.1109/MSP.2017.4251106 +Scott D. Applegate,Cybermilitias and Political Hackers: Use of Irregular Forces in Cyberwarfare.,2011,9,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp9.html#Applegate11,https://doi.org/10.1109/MSP.2011.46 +Alec Yasinsac,Centers of Academic Excellence: A Case Study.,2005,3,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp3.html#YasinsacB05,https://doi.org/10.1109/MSP.2005.8 +Denis Verdon,Security policies and the software developer.,2006,4,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp4.html#Verdon06,https://doi.org/10.1109/MSP.2006.103 +Gavin Wylie Manes,Overview of Licensing and Legal Issues for Digital Forensic Investigators.,2009,7,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp7.html#ManesD09,https://doi.org/10.1109/MSP.2009.46 +Roland L. Trope,Immaterial Transfers with Material Consequences.,2006,4,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp4.html#Trope06,https://doi.org/10.1109/MSP.2006.122 +Jelena Mirkovic,Teaching Cybersecurity with DeterLab.,2012,10,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp10.html#MirkovicB12,https://doi.org/10.1109/MSP.2012.23 +Howard E. Shrobe,Suppose We Got a Do-Over: A Revolution for Secure Computing.,2012,10,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp10.html#ShrobeA12,https://doi.org/10.1109/MSP.2012.84 +Jim Hearn,International Participation: The Continuing March Toward Security and Privacy.,2003,1,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp1.html#Hearn03,https://doi.org/10.1109/MSECP.2003.1177001 +Frederik Zuiderveen Borgesius,Behavioral Targeting: A European Legal Perspective.,2013,11,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp11.html#Borgesius13,https://doi.org/10.1109/MSP.2013.5 +Michael Zhivich,The Real Cost of Software Errors.,2009,7,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp7.html#ZhivichC09,https://doi.org/10.1109/MSP.2009.56 +Patricia L. Bellia,The fourth amendment and emerging communications technologies.,2006,4,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp4.html#Bellia06,https://doi.org/10.1109/MSP.2006.80 +James Figueroa,News Briefs.,2009,7,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp7.html#Figueroa09a,https://doi.org/10.1109/MSP.2009.100 +Nancy R. Mead,A Portal for Software Security.,2005,3,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp3.html#MeadM05,https://doi.org/10.1109/MSP.2005.88 +Robert W. Reeder,Soups 2005.,2005,3,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp3.html#ReederA05,https://doi.org/10.1109/MSP.2005.131 +Gary McGraw,Software Security Testing.,2004,2,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp2.html#McGrawP04,https://doi.org/10.1109/MSP.2004.84 +Gary McGraw,Silver Bullet Talks with Adam Shostack.,2008,6,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp6.html#McGraw08c,https://doi.org/10.1109/MSP.2008.104 +Matthew Carpenter,Hiding Virtualization from Attackers and Malware.,2007,5,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp5.html#CarpenterLS07,https://doi.org/10.1109/MSP.2007.63 +Jeroen van de Graaf,Long-Term Threats to Ballot Privacy.,2017,15,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp15.html#Graaf17,https://doi.org/10.1109/MSP.2017.77 +Anup Ghosh,Guest Editors' Introduction: In Cloud Computing We Trust - But Should We?,2010,8,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp8.html#GhoshA10,https://doi.org/10.1109/MSP.2010.177 +Marc Donner,AI Bites Man?,2003,1,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp1.html#Donner03,https://doi.org/10.1109/MSECP.2003.1176997 +Ralph Langner,Stuxnet: Dissecting a Cyberwarfare Weapon.,2011,9,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp9.html#Langner11,https://doi.org/10.1109/MSP.2011.67 +Paul N. Otto,The ChoicePoint Dilemma: How Data Brokers Should Handle the Privacy of Personal Information.,2007,5,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp5.html#OttoAB07,https://doi.org/10.1109/MSP.2007.126 +HongQian Karen Lu,Making Smart Cards Truly Portable.,2010,8,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp8.html#LuA10,https://doi.org/10.1109/MSP.2010.56 +Abdul Razaq,Second-Generation RFID.,2008,6,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp6.html#RazaqLSCY08,https://doi.org/10.1109/MSP.2008.94 +Marco M. Carvalho,Heartbleed 101.,2014,12,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp12.html#CarvalhoDFW14,https://doi.org/10.1109/MSP.2014.66 +Debin Liu,Security Risk Management Using Incentives.,2011,9,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp9.html#LiuLWC11,https://doi.org/10.1109/MSP.2011.99 +Katrina Tsipenyuk,Seven Pernicious Kingdoms: A Taxonomy of Software Security Errors.,2005,3,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp3.html#TsipenyukCM05,https://doi.org/10.1109/MSP.2005.159 +Salvatore J. Stolfo,Measuring Security.,2011,9,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp9.html#StolfoBE11,https://doi.org/10.1109/MSP.2011.56 +Kenneth R. van Wyk,Bridging the Gap between Software Development and Information Security.,2005,3,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp3.html#WykM05,https://doi.org/10.1109/MSP.2005.118 +Bertrand Mathieu,SDRS: A Voice-over-IP Spam Detection and Reaction System.,2008,6,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp6.html#MathieuNS08,https://doi.org/10.1109/MSP.2008.149 +Scott L. Andresen,News Briefs.,2003,1,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp1.html#Andresen03b,http://doi.ieeecomputersociety.org/10.1109/MSP.2003.10011 +Domenico Cotroneo,Fault Injection for Software Certification.,2013,11,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp11.html#CotroneoN13,https://doi.org/10.1109/MSP.2013.54 +Mike Andrews,Computer Security.,2004,2,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp2.html#AndrewsW04,https://doi.org/10.1109/MSP.2004.66 +Liam M. Mayron,Secure Multimedia Communications.,2010,8,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp8.html#Mayron10,https://doi.org/10.1109/MSP.2010.185 +Josh Benaloh,A Vote of Confidence?,2017,15,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp15.html#BenalohRST17,https://doi.org/10.1109/MSP.2017.53 +Annie I. Antón,How Internet Users' Privacy Concerns Have Evolved since 2002.,2010,8,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp8.html#AntonEY10,https://doi.org/10.1109/MSP.2010.38 +Simson L. Garfinkel,Leaking Sensitive Information in Complex Document Files-and How to Prevent It.,2014,12,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp12.html#Garfinkel14,https://doi.org/10.1109/MSP.2013.131 +Simson L. Garfinkel,Operations with Degraded Security.,2011,9,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp9.html#GarfinkelD11,https://doi.org/10.1109/MSP.2011.149 +Ivan Arce,The Weakest Link Revisited.,2003,1,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp1.html#Arce03,https://doi.org/10.1109/MSECP.2003.1193216 +Chuck McParland,Monitoring Security of Networked Control Systems: It's the Physics.,2014,12,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp12.html#McParlandPS14,https://doi.org/10.1109/MSP.2014.122 +Simson L. Garfinkel,New XML-Based Files Implications for Forensics.,2009,7,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp7.html#GarfinkelM09,https://doi.org/10.1109/MSP.2009.44 +Daniel E. Geer Jr.,Progress Is Infectious.,2012,10,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp10.html#GeerL12,https://doi.org/10.1109/MSP.2012.151 +Rafe Sagarin,Bio-hacking: Tapping Life's Code to Deal with Unpredictable Risk.,2013,11,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp11.html#Sagarin13,https://doi.org/10.1109/MSP.2013.82 +Ivan Arce,The Shellcode Generation.,2004,2,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp2.html#Arce04b,https://doi.org/10.1109/MSP.2004.87 +Jeannette M. Wing,A Call to Action: Look Beyond the Horizon.,2003,1,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp1.html#Wing03,https://doi.org/10.1109/MSECP.2003.1253571 +Anh Nguyen-Tuong,Xandra: An Autonomous Cyber Battle System for the Cyber Grand Challenge.,2018,16,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp16.html#Nguyen-TuongMDC18,https://doi.org/10.1109/MSP.2018.1870876 +David McKinney,Vulnerability Bazaar.,2007,5,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp5.html#McKinney07,https://doi.org/10.1109/MSP.2007.180 +Marc Donner,Toward a Security Ontology.,2003,1,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp1.html#Donner03b,http://doi.ieeecomputersociety.org/10.1109/MSP.2003.10004 +Thomas J. Walsh,Challenges in Securing Voice over IP.,2005,3,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp3.html#WalshK05,https://doi.org/10.1109/MSP.2005.62 +Daniel E. Geer Jr.,The End of Black and White.,2007,5,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp5.html#Geer07,https://doi.org/10.1109/MSP.2007.97 +Bill McCarty,The Honeynet Arms Race.,2003,1,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp1.html#McCarty03b,https://doi.org/10.1109/MSECP.2003.1253575 +Jeff Kosseff,A New Legal Framework for Online Anonymity: California's Privacy-Based Approach.,2015,13,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp13.html#Kosseff15,https://doi.org/10.1109/MSP.2015.140 +Apostol T. Vassilev,Personal Brokerage of Web Service Access.,2007,5,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp5.html#VassilevCA07,https://doi.org/10.1109/MSP.2007.118 +Daniel E. Geer,Inviting More Heartbleed.,2014,12,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp12.html#GeerK14,https://doi.org/10.1109/MSP.2014.71 +Jennifer English,MEMS-Assisted Cryptography for CPI Protection.,2007,5,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp5.html#EnglishCGHK07,https://doi.org/10.1109/MSP.2007.90 +Ravishankar K. Iyer,Toward Application-Aware Security and Reliability.,2007,5,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp5.html#IyerKPHHKF07,https://doi.org/10.1109/MSP.2007.23 +Mehmet Sahinoglu,Security Meter: A Practical Decision-Tree Model to Quantify Risk.,2005,3,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp3.html#Sahinoglu05,https://doi.org/10.1109/MSP.2005.81 +Benjamin Price,House Rules: Designing the Scoring Algorithm for Cyber Grand Challenge.,2018,16,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp16.html#PriceZTE18,https://doi.org/10.1109/MSP.2018.1870877 +Chengyun Chu,Introduction to Microsoft .NET Security.,2008,6,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp6.html#Chu08,https://doi.org/10.1109/MSP.2008.146 +Bruce Schneier,Security and Function Creep.,2010,8,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp8.html#Schneier10,https://doi.org/10.1109/MSP.2010.47 +Charles P. Pfleeger,Crypto: Not Just for the Defensive Team.,2010,8,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp8.html#Pfleeger10,https://doi.org/10.1109/MSP.2010.65 +Bruce Schneier,The Speed of Security.,2003,1,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp1.html#Schneier03c,https://doi.org/10.1109/MSECP.2003.1219081 +Ari Juels,Honey Encryption: Encryption beyond the Brute-Force Barrier.,2014,12,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp12.html#JuelsR14,https://doi.org/10.1109/MSP.2014.67 +J. Ryan Kenny,Embedded Software Assurance for Configuring Secure Hardware.,2010,8,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp8.html#KennyR10,https://doi.org/10.1109/MSP.2010.150 +Erin E. Kenneally,Dialing Privacy and Utility: A Proposed Data-Sharing Framework to Advance Internet Research.,2010,8,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp8.html#Kenneallyc10,https://doi.org/10.1109/MSP.2010.57 +Gary McGraw,Silver Bullet Talks with Randy Sabett.,2012,10,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp10.html#McGraw12b,https://doi.org/10.1109/MSP.2012.108 +Bruce Schneier,Nonsecurity Considerations in Security Decisions.,2007,5,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp5.html#Schneier07,https://doi.org/10.1109/MSP.2007.68 +Sanmeet Kaur,Automatic Attack Signature Generation Systems: A Review.,2013,11,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp11.html#KaurS13,https://doi.org/10.1109/MSP.2013.51 +Jim Alves-Foss,The Known Unknowns.,2013,11,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp11.html#Alves-FossO13,https://doi.org/10.1109/MSP.2013.125 +Martina Angela Sasse,Protecting You.,2014,12,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp12.html#SasseP14,https://doi.org/10.1109/MSP.2014.11 +Jan Camenisch,Electronic Identities Need Private Credentials.,2012,10,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp10.html#CamenischLN12,https://doi.org/10.1109/MSP.2012.7 +Bruce Schneier,Security and Compliance.,2004,2,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp2.html#Schneier04a,https://doi.org/10.1109/MSP.2004.22 +Jeffrey K. MacKie-Mason,All Space Will Be Public Space.,2011,9,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp9.html#MacKie-Mason11,https://doi.org/10.1109/MSP.2011.131 +Steven M. Bellovin,Risking Communications Security: Potential Hazards of the Protect America Act.,2008,6,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp6.html#BellovinBDSNR08,https://doi.org/10.1109/MSP.2008.17 +Scott L. Andresen,New Draft to Secure Cyberspace Leaked.,2003,1,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp1.html#Andresen03,http://doi.ieeecomputersociety.org/10.1109/MSP.2003.10001 +Susan Older,Engineering Assurance at the Undergraduate Level.,2012,10,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp10.html#OlderC12,https://doi.org/10.1109/MSP.2012.143 +Lukasz Kufel,Security Event Monitoring in a Distributed Systems Environment.,2013,11,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp11.html#Kufel13,https://doi.org/10.1109/MSP.2012.61 +Portia Pusey,The Outcomes of Cybersecurity Competitions and Implications for Underrepresented Populations.,2016,14,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp14.html#PuseyGP16,https://doi.org/10.1109/MSP.2016.119 +Gary McGraw,Silver Bullet Talks with Matthew Green.,2014,12,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp12.html#McGraw14a,https://doi.org/10.1109/MSP.2014.34 +David Eckhoff,Driving for Big Data? Privacy Concerns in Vehicular Networking.,2014,12,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp12.html#EckhoffS14,https://doi.org/10.1109/MSP.2014.2 +Alysson Neves Bessani,The Crutial Way of Critical Infrastructure Protection.,2008,6,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp6.html#BessaniSCNV08,https://doi.org/10.1109/MSP.2008.158 +Susan Landau 0001,Is It Legal? Is It Right? The Can and Should of Use.,2016,14,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp14.html#Landau16,https://doi.org/10.1109/MSP.2016.105 +Peter McLaughlin,Cross-Border Data Flows and Increased Enforcement.,2008,6,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp6.html#McLaughlin08,https://doi.org/10.1109/MSP.2008.111 +Eric Goetz,News Briefs.,2005,3,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp3.html#GoetzJK05a,https://doi.org/10.1109/MSP.2005.48 +Marc Donner,A Young Geek's Fancy Turns to...Science Fiction?,2005,3,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp3.html#Donner05a,https://doi.org/10.1109/MSP.2005.59 +Lorrie Faith Cranor,Guest Editors' Introduction: Secure or Usable?,2004,2,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp2.html#CranorG04,https://doi.org/10.1109/MSP.2004.69 +Rebecca G. Bace,Pain Management for Entrepreneurs: Working with Venture Capital.,2013,11,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp11.html#Bace13,https://doi.org/10.1109/MSP.2013.93 +Roy Iverson,A Framework to Consider.,2005,3,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp3.html#Iverson05,https://doi.org/10.1109/MSP.2005.31 +Roland L. Trope,A Coherent Strategy for Data Security through Data Governance.,2007,5,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp5.html#TropePPM07,https://doi.org/10.1109/MSP.2007.51 +Wade Trappe,Low-Energy Security: Limits and Opportunities in the Internet of Things.,2015,13,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp13.html#TrappeHM15,https://doi.org/10.1109/MSP.2015.7 +Tina R. Knutson,Building Privacy into Software Products and Services.,2007,5,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp5.html#Knutson07,https://doi.org/10.1109/MSP.2007.55 +Fred H. Cate,A Transatlantic Convergence on Privacy?,2011,9,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp9.html#Cate11,https://doi.org/10.1109/MSP.2011.5 +Martin Libicki,Are RFIDs Coming to Get You?,2005,3,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp3.html#Libicki05,https://doi.org/10.1109/MSP.2005.142 +Jintai Ding,Current State of Multivariate Cryptography.,2017,15,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp15.html#DingP17,https://doi.org/10.1109/MSP.2017.3151328 +Archer L. Batcheller,Building on the Success of Building Security In.,2017,15,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp15.html#BatchellerFCDJL17,https://doi.org/10.1109/MSP.2017.3151336 +Thomas B. Hilburn,Building Security In: A Road to Competency.,2013,11,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp11.html#HilburnM13,https://doi.org/10.1109/MSP.2013.109 +Luther Martin,XTS: A Mode of AES for Encrypting Hard Disks.,2010,8,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp8.html#Martin10,https://doi.org/10.1109/MSP.2010.111 +Sathya Chandran Sundaramurthy,An Anthropological Approach to Studying CSIRTs.,2014,12,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp12.html#SundaramurthyMORW14,https://doi.org/10.1109/MSP.2014.84 +John P. Tomaszewski,Are You Sure You Had a Privacy Incident?,2006,4,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp4.html#Tomaszewski06,https://doi.org/10.1109/MSP.2006.143 +Giannis Tziakouris,Cryptocurrencies - A Forensic Challenge or Opportunity for Law Enforcement? An INTERPOL Perspective.,2018,16,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp16.html#Tziakouris18,https://doi.org/10.1109/MSP.2018.3111243 +Aleksey Kolupaev,CAPTCHAs: Humans vs. Bots.,2008,6,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp6.html#KolupaevO08,https://doi.org/10.1109/MSP.2008.6 +James A. Whittaker,Why Secure Applications are Difficult to Write.,2003,1,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp1.html#Whittaker03,https://doi.org/10.1109/MSECP.2003.1193218 +Martin R. Stytz,The Shape of Crimeware to Come (review of Crimeware: Understanding New Attacks and Defenses by M. Jacobsson and Z. Ramzan) [Book reviews].,2008,6,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp6.html#Stytz08,https://doi.org/10.1109/MSP.2008.130 +Bill G. Horne,Humans in the Loop.,2014,12,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp12.html#Horne14,https://doi.org/10.1109/MSP.2014.5 +Heather Drinan,News Briefs.,2006,4,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp4.html#DrinanFK06,https://doi.org/10.1109/MSP.2006.19 +Kas Clark,A Dutch Approach to Cybersecurity through Participation.,2014,12,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp12.html#ClarkSSH14,https://doi.org/10.1109/MSP.2014.83 +Phillip A. Porras,Privacy-Enabled Global Threat Monitoring.,2006,4,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp4.html#Porras06,https://doi.org/10.1109/MSP.2006.161 +Martin R. Stytz,Caution: This Product Contains Security Code.,2003,1,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp1.html#StytzW03a,https://doi.org/10.1109/MSECP.2003.1236243 +Stefan Mitterhofer,Server-Side Bot Detection in Massively Multiplayer Online Games.,2009,7,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp7.html#MitterhoferKKP09,https://doi.org/10.1109/MSP.2009.78 +Fred Cohen,The Smarter Grid.,2010,8,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp8.html#Cohen10,https://doi.org/10.1109/MSP.2010.52 +Michael Bailey,The Blaster Worm: Then and Now.,2005,3,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp3.html#BaileyCJWN05,https://doi.org/10.1109/MSP.2005.106 +Michael Lesk,Cybersecurity and Economics.,2011,9,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp9.html#Lesk11c,https://doi.org/10.1109/MSP.2011.160 +Carey Heckman,Two Views on Security Software Liability: Using the Right Legal Tools.,2003,1,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp1.html#Heckman03,https://doi.org/10.1109/MSECP.2003.1203443 +Lee Garber,News Briefs.,2011,9,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp9.html#Garber11c,https://doi.org/10.1109/MSP.2011.86 +Ashish Arora,Economics of Software Vulnerability Disclosure.,2005,3,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp3.html#AroraT05,https://doi.org/10.1109/MSP.2005.12 +Martim Carbone,Taming Virtualization.,2008,6,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp6.html#CarboneLZ08,https://doi.org/10.1109/MSP.2008.24 +Jeffrey R. Jones,Estimating Software Vulnerabilities.,2007,5,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp5.html#Jones07,https://doi.org/10.1109/MSP.2007.81 +Daniel E. Geer Jr.,When $80 Billion Is Not Enough.,2011,9,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp9.html#GeerK11,https://doi.org/10.1109/MSP.2011.146 +Aleksander Essex,Hover: Trustworthy Elections with Hash-Only Verification.,2012,10,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp10.html#EssexH12,https://doi.org/10.1109/MSP.2012.63 +,Letters to the Editor.,2004,2,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp2.html#X04b,http://doi.ieeecomputersociety.org/10.1109/MSP.2004.10002 +Jungwoo Ryoo,Architectural Analysis for Security.,2015,13,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp13.html#RyooKA15,https://doi.org/10.1109/MSP.2015.126 +Daniel E. Geer Jr.,A Time for Choosing.,2011,9,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp9.html#Geer11a,https://doi.org/10.1109/MSP.2011.4 +Karen Renaud,Blaming Noncompliance Is Too Convenient: What Really Causes Information Breaches?,2012,10,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp10.html#Renaud12,https://doi.org/10.1109/MSP.2011.157 +Philip L. Campbell,The Denial-of-Service Dance.,2005,3,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp3.html#Campbell05,https://doi.org/10.1109/MSP.2005.162 +Edward Amoroso,A View from the C-Suite.,2013,11,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp11.html#AmorosoT13,https://doi.org/10.1109/MSP.2013.4 +Daniel E. Geer Jr.,Are You Smarter than the TSA? (Hint: No).,2012,10,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp10.html#GeerB12,https://doi.org/10.1109/MSP.2012.91 +George Cybenko,The One-Eyed Man Is King.,2005,3,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp3.html#Cybenko05,https://doi.org/10.1109/MSP.2005.108 +Steven M. Bellovin,By Any Means Possible: How Intelligence Agencies Have Gotten Their Data.,2014,12,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp12.html#Bellovin14a,https://doi.org/10.1109/MSP.2014.63 +Moses Schwartz,Emerging Techniques for Field Device Security.,2014,12,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp12.html#SchwartzMCA14,https://doi.org/10.1109/MSP.2014.114 +éric Levieil,Cryptographic Test Correction.,2008,6,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp6.html#LevieilN08,https://doi.org/10.1109/MSP.2008.30 +William H. Sanders,Quantitative Security Metrics: Unattainable Holy Grail or a Vital Breakthrough within Our Reach?,2014,12,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp12.html#Sanders14,https://doi.org/10.1109/MSP.2014.31 +Alain P. Hiltgen,Secure Internet Banking Authentication.,2006,4,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp4.html#HiltgenKW06,https://doi.org/10.1109/MSP.2006.50 +Daniel E. Geer Jr.,Stand Your Ground.,2012,10,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp10.html#GeerA12,https://doi.org/10.1109/MSP.2012.109 +Michael A. Caloyannides,Speech Privacy Technophobes Need Not Apply.,2004,2,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp2.html#Caloyannides04d,https://doi.org/10.1109/MSP.2004.85 +Brandi Ortega,News Briefs.,2008,6,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp6.html#Ortega08d,https://doi.org/10.1109/MSP.2008.108 +Martin R. Stytz,Software Protection: Security's Last Stand?,2003,1,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp1.html#StytzW03,https://doi.org/10.1109/MSECP.2003.1177004 +Min Cai,Collaborative Internet Worm Containment.,2005,3,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp3.html#CaiHKSC05,https://doi.org/10.1109/MSP.2005.63 +Jonathan Bannet,Hack-a-Vote: Security Issues with Electronic Voting Systems.,2004,2,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp2.html#BannetPRSW04,https://doi.org/10.1109/MSECP.2004.1264851 +Susan Landau 0001,What Was Samsung Thinking?,2015,13,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp13.html#Landau15,https://doi.org/10.1109/MSP.2015.63 +Martin R. Stytz,Under the Black Hat.,2005,3,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp3.html#Stytz05,https://doi.org/10.1109/MSP.2005.83 +Chris Greamo,Sandboxing and Virtualization: Modern Tools for Combating Malware.,2011,9,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp9.html#GreamoG11,https://doi.org/10.1109/MSP.2011.36 +Bruce Schneier,Authentication and Expiration.,2005,3,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp3.html#Schneier05,https://doi.org/10.1109/MSP.2005.4 +Helayne T. Ray,Toward an Automated Attack Model for Red Teams.,2005,3,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp3.html#RayVK05,https://doi.org/10.1109/MSP.2005.111 +Michael E. Lesk,Forum Shopping on the Internet.,2008,6,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp6.html#Lesk08,https://doi.org/10.1109/MSP.2008.10 +Vijay Varadharajan,A Note on Trust-Enhanced Security.,2009,7,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp7.html#Varadharajan09,https://doi.org/10.1109/MSP.2009.59 +Pawel Lubomski,Practical Evaluation of Internet Systems' Security Mechanisms.,2017,15,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp15.html#LubomskiK17,https://doi.org/10.1109/MSP.2017.13 +John G. Levine,Using Honeynets to Protect Large Enterprise Networks.,2004,2,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp2.html#LevineGO04,https://doi.org/10.1109/MSP.2004.115 +Benjamin Alfonsi,FBI's Virtual Case File Living in Limbo.,2005,3,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp3.html#Alfonsi05,https://doi.org/10.1109/MSP.2005.41 +Katrine Evans,Vidal-Hall and Risk Management for Privacy Breaches.,2015,13,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp13.html#Evans15,https://doi.org/10.1109/MSP.2015.94 +Robert J. Campbell,Crime Scene Investigators: The Next Generation.,2003,1,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp1.html#Campbell03,https://doi.org/10.1109/MSECP.2003.1236229 +Brent Kesler,News Briefs.,2006,4,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp4.html#KeslerD06a,https://doi.org/10.1109/MSP.2006.100 +Cynthia E. Irvine,Educating the Systems Security Engineer's Apprentice.,2010,8,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp8.html#IrvineN10,https://doi.org/10.1109/MSP.2010.123 +Oyindamola Oluwatimi,Overview of Mobile Containerization Approaches and Open Research Directions.,2017,15,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp15.html#OluwatimiMB17,https://doi.org/10.1109/MSP.2017.12 +Edward Bonver,Developing and Retaining a Security Testing Mindset.,2008,6,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp6.html#BonverC08,https://doi.org/10.1109/MSP.2008.115 +Asaf Shabtai,Google Android: A Comprehensive Security Assessment.,2010,8,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp8.html#ShabtaiFKEDG10,https://doi.org/10.1109/MSP.2010.2 +Per Larsen,Automatic Software Diversity.,2015,13,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp13.html#LarsenBF15,https://doi.org/10.1109/MSP.2015.23 +Marco Domenico Aime,Dependability in Wireless Networks: Can We Rely on WiFi?,2007,5,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp5.html#AimeCL07,https://doi.org/10.1109/MSP.2007.4 +Michael Franz,Containing the Ultimate Trojan Horse.,2007,5,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp5.html#Franz07,https://doi.org/10.1109/MSP.2007.77 +Bruce Schneier,The Security Value of Muddling Through.,2015,13,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp13.html#Schneier15,https://doi.org/10.1109/MSP.2015.42 +Artemis D. Avgerou,Privacy Awareness Diffusion in Social Networks.,2015,13,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp13.html#AvgerouS15,https://doi.org/10.1109/MSP.2015.136 +Ted S. Phillips,Security Standards for the RFID Market.,2005,3,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp3.html#PhillipsKH05,https://doi.org/10.1109/MSP.2005.157 +Bruce Schneier,The Future of Incident Response.,2014,12,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp12.html#Schneier14a,https://doi.org/10.1109/MSP.2014.102 +Francien Dechesne,Experimenting with Incentives: Security in Pilots for Future Grids.,2014,12,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp12.html#DechesneHP14,https://doi.org/10.1109/MSP.2014.115 +Pamela J. Wisniewski,The Privacy Paradox of Adolescent Online Safety: A Matter of Risk Prevention or Risk Resilience?,2018,16,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp16.html#Wisniewski18,https://doi.org/10.1109/MSP.2018.1870874 +Per Håkon Meland,Mitigating Risk with Cyberinsurance.,2015,13,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp13.html#MelandTS15,https://doi.org/10.1109/MSP.2015.137 +Matt Bishop,Security and Elections.,2012,10,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp10.html#BishopP12,https://doi.org/10.1109/MSP.2012.127 +Martin Gilje Jaatun,Fools Download Where Angels Fear to Tread.,2009,7,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp7.html#JaatunJVHN09,https://doi.org/10.1109/MSP.2009.36 +John Diamant,Resilient Security Architecture: A Complementary Approach to Reducing Vulnerabilities.,2011,9,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp9.html#Diamant11,https://doi.org/10.1109/MSP.2011.88 +Tara Matthews,Security and Privacy Experiences and Practices of Survivors of Intimate Partner Abuse.,2017,15,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp15.html#MatthewsOTSWSMC17,https://doi.org/10.1109/MSP.2017.3681046 +Gary McGraw,Silver Bullet Talks with Becky Bace.,2007,5,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp5.html#McGraw07b,https://doi.org/10.1109/MSP.2007.70 +Gregory J. Conti,Malicious Interfaces and Personalization's Uninviting Future.,2009,7,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp7.html#ContiS09,https://doi.org/10.1109/MSP.2009.71 +Siona Listokin,Does Industry Self-Regulation of Consumer Data Privacy Work?,2017,15,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp15.html#Listokin17,https://doi.org/10.1109/MSP.2017.45 +Pinny Sheoran,Developing and sustaining information assurance: the role of community colleges. Part 2.,2006,4,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp4.html#SheoranFB06,https://doi.org/10.1109/MSP.2006.63 +Sara Renee Savage,Characterizing the Risks and Harms of Linking Genomic Information to Individuals.,2017,15,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp15.html#Savage17,https://doi.org/10.1109/MSP.2017.3681064 +Asaf Shabtai,Securing Android-Powered Mobile Devices Using SELinux.,2010,8,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp8.html#ShabtaiFE10,https://doi.org/10.1109/MSP.2009.144 +Anthony Dessiatnikoff,Potential Attacks on Onboard Aerospace Systems.,2012,10,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp10.html#DessiatnikoffDAN12,https://doi.org/10.1109/MSP.2012.104 +,SandP Welcomes New Editorial Board Members.,2003,1,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp1.html#X03a,http://doi.ieeecomputersociety.org/10.1109/MSP.2003.10007 +David W. Archer,Computing with Data Privacy: Steps toward Realization.,2015,13,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp13.html#ArcherR15,https://doi.org/10.1109/MSP.2015.3 +William E. Burr,Cryptographic Hash Standards: Where Do We Go from Here?,2006,4,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp4.html#Burr06,https://doi.org/10.1109/MSP.2006.37 +Mark H. Chignell,Nonconfidential Patient Types in Emergency Clinical Decision Support.,2013,11,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp11.html#ChignellRKSYS13,https://doi.org/10.1109/MSP.2013.103 +Manjur S. Kolhar,Cloud Data Auditing Techniques with a Focus on Privacy and Security.,2017,15,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp15.html#KolharAE17,https://doi.org/10.1109/MSP.2017.16 +Simson L. Garfinkel,Can We Sniff Wi-Fi?: Implications of Joffe v. Google.,2014,12,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp12.html#GarfinkelM14,https://doi.org/10.1109/MSP.2014.64 +David Evans 0001,Guest Editors' Introduction: The Science of Security.,2011,9,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp9.html#EvansS11,https://doi.org/10.1109/MSP.2011.50 +Edward Amoroso,From the Enterprise Perimeter to a Mobility-Enabled Secure Cloud.,2013,11,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp11.html#Amoroso13,https://doi.org/10.1109/MSP.2013.8 +Lee Garber,News Briefs.,2011,9,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp9.html#Garber11a,https://doi.org/10.1109/MSP.2011.34 +Phillip A. Porras,Directions in Network-Based Security Monitoring.,2009,7,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp7.html#Porras09,https://doi.org/10.1109/MSP.2009.5 +Jeremiah Grossman,Five User-Customizable Web Site Security Features.,2008,6,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp6.html#Grossman08,https://doi.org/10.1109/MSP.2008.141 +Budi Arief,Understanding Cybercrime from Its Stakeholders' Perspectives: Part 1-Attackers.,2015,13,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp13.html#AriefAG15,https://doi.org/10.1109/MSP.2015.19 +Steven M. Bellovin,Going Bright: Wiretapping without Weakening Communications Infrastructure.,2013,11,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp11.html#BellovinBCL13,https://doi.org/10.1109/MSP.2012.138 +Mike Just,Designing and Evaluating Challenge-Question Systems.,2004,2,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp2.html#Just04,https://doi.org/10.1109/MSP.2004.80 +Matt Bishop,Who Owns Your Computer?,2006,4,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp4.html#BishopF06,https://doi.org/10.1109/MSP.2006.56 +Efstratios Gavas,Winning Cybersecurity One Challenge at a Time.,2012,10,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp10.html#GavasMB12,https://doi.org/10.1109/MSP.2012.112 +Sergey Bratus,Avoiding a War on Unauthorized Computation.,2013,11,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp11.html#BratusS13,https://doi.org/10.1109/MSP.2013.27 +Daniel E. Geer,New Measures.,2011,9,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp9.html#Geer11c,https://doi.org/10.1109/MSP.2011.59 +Annie I. Antón,Inside JetBlue's Privacy Policy Violations.,2004,2,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp2.html#AntonHB04,https://doi.org/10.1109/MSP.2004.103 +Marc Donner,International Blues.,2010,8,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp8.html#Donner10,https://doi.org/10.1109/MSP.2010.73 +Balachander Krishnamurthy,Privacy and Online Social Networks: Can Colorless Green Ideas Sleep Furiously?,2013,11,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp11.html#Krishnamurthy13,https://doi.org/10.1109/MSP.2013.66 +Richard Ford,Building a Better Boot Camp.,2010,8,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp8.html#FordF10,https://doi.org/10.1109/MSP.2010.31 +Michael Kerr,Adapting Law Enforcement Frameworks to Address the Ethical Problems of CCTV Product Propagation.,2014,12,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp12.html#KerrS14,https://doi.org/10.1109/MSP.2014.61 +Marc Beunardeau,White-Box Cryptography: Security in an Insecure Environment.,2016,14,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp14.html#BeunardeauCGN16b,https://doi.org/10.1109/MSP.2016.100 +Steven M. Bellovin,What a Real Cybersecurity Bill Should Address.,2015,13,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp13.html#Bellovin15,https://doi.org/10.1109/MSP.2015.52 +Michael Lesk,Copyright Enforcement or Censorship: New Uses for the DMCA?,2003,1,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp1.html#Lesk03a,https://doi.org/10.1109/MSECP.2003.1193214 +Elias Levy,Criminals Become Tech Savvy.,2004,2,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp2.html#Levy04,https://doi.org/10.1109/MSECP.2004.1281250 +Ram Chillarege,Guest Editors' Introduction: Reliability of Embedded and Cyber-Physical Systems.,2010,8,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp8.html#ChillaregeV10,https://doi.org/10.1109/MSP.2010.152 +Gary McGraw,Silver Bullet Speaks with Dan Geer.,2006,4,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp4.html#McGraw06a,https://doi.org/10.1109/MSP.2006.104 +Gary McGraw,Silver Bullet Talks with Wenyuan Xu.,2013,11,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp11.html#McGraw13d,https://doi.org/10.1109/MSP.2013.122 +Jim Hearn,Slow Dancing.,2003,1,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp1.html#Hearn03b,https://doi.org/10.1109/MSECP.2003.1203226 +Herbert Lin,Lifting the Veil on Cyber Offense.,2009,7,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp7.html#Lin09,https://doi.org/10.1109/MSP.2009.96 +Sören Preibusch,The Value of Web Search Privacy.,2015,13,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp13.html#Preibusch15,https://doi.org/10.1109/MSP.2015.109 +Daniel E. Geer Jr.,The 0wned Price Index.,2009,7,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp7.html#GeerC09,https://doi.org/10.1109/MSP.2009.23 +Bruce Schneier,Cryptography Is Harder than It Looks.,2016,14,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp14.html#Schneier16,https://doi.org/10.1109/MSP.2016.7 +Stefano Zanero,Wireless Malware Propagation: A Reality Check.,2009,7,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp7.html#Zanero09,https://doi.org/10.1109/MSP.2009.142 +Emil Simion,The Relevance of Statistical Tests in Cryptography.,2015,13,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp13.html#Simion15,https://doi.org/10.1109/MSP.2015.16 +Patrick Harding,Dynamic Security Assertion Markup Language: Simplifying Single Sign-On.,2008,6,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp6.html#HardingJK08,https://doi.org/10.1109/MSP.2008.31 +Neal Koblitz,A Riddle Wrapped in an Enigma.,2016,14,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp14.html#KoblitzM16,https://doi.org/10.1109/MSP.2016.120 +Sergio Sánchez García,Is Europe Ready for a Pan-European Identity Management System?,2012,10,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp10.html#GarciaOB12,https://doi.org/10.1109/MSP.2012.58 +Terry Benzel,A Strategic Plan for Cybersecurity Research and Development.,2015,13,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp13.html#Benzel15a,https://doi.org/10.1109/MSP.2015.84 +Jaynarayan H. Lala,IT Monoculture Security Risks and Defenses.,2009,7,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp7.html#LalaS09,https://doi.org/10.1109/MSP.2009.11 +George Cybenko,Security Analytics and Measurements.,2012,10,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp10.html#CybenkoL12,https://doi.org/10.1109/MSP.2012.75 +Landon P. Cox,Truth in Crowdsourcing.,2011,9,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp9.html#Cox11,https://doi.org/10.1109/MSP.2011.145 +Steven M. Bellovin,The Major Cyberincident Investigations Board.,2012,10,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp10.html#Bellovin12a,https://doi.org/10.1109/MSP.2012.158 +Richard Guida,Deploying and Using Public Key Technology: Lessons Learned in Real Life.,2004,2,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp2.html#GuidaSBSM04,https://doi.org/10.1109/MSP.2004.41 +Jonathan Margulies,That Certificate You Bought Could Get You Hacked.,2016,14,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp14.html#MarguliesB16,https://doi.org/10.1109/MSP.2016.106 +Nick L. Petroni Jr.,The Dangers of Mitigating Security Design Flaws: A Wireless Case Study.,2003,1,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp1.html#PetroniA03,https://doi.org/10.1109/MSECP.2003.1176993 +David Modic,It's All Over but the Crying: The Emotional and Financial Impact of Internet Fraud.,2015,13,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp13.html#ModicA15,https://doi.org/10.1109/MSP.2015.107 +Massimo Felici,What's New in the Economics of Cybersecurity?: Observational and Empirical Studies.,2015,13,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp13.html#FeliciWBC15,https://doi.org/10.1109/MSP.2015.105 +David J. Chaboya,Network Intrusion Detection: Automated and Manual Methods Prone to Attack and Evasion.,2006,4,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp4.html#ChaboyaRBM06,https://doi.org/10.1109/MSP.2006.159 +Jon Giffin,The Next Malware Battleground: Recovery After Unknown Infection.,2010,8,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp8.html#Giffin10,https://doi.org/10.1109/MSP.2010.107 +Carl E. Landwehr,Drawing the Line.,2010,8,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp8.html#Landwehr10,https://doi.org/10.1109/MSP.2010.35 +Steven M. Bellovin,Security by Checklist.,2008,6,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp6.html#Bellovin08,https://doi.org/10.1109/MSP.2008.43 +Nancy R. Mead,Building a Foundation.,2003,1,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp1.html#Mead03,https://doi.org/10.1109/MSECP.2003.1203217 +Jeremy Epstein,Weakness in Depth: A Voting Machine's Demise.,2015,13,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp13.html#Epstein15a,https://doi.org/10.1109/MSP.2015.46 +Melanie R. Rieback,RFID malware: truth vs. myth.,2006,4,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp4.html#RiebackCT06,https://doi.org/10.1109/MSP.2006.102 +Graham Steel,Automated Proof and Flaw-Finding Tools in Cryptography.,2015,13,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp13.html#Steel15,https://doi.org/10.1109/MSP.2015.22 +Ryan Henry,Blockchain Access Privacy: Challenges and Directions.,2018,16,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp16.html#HenryHK18,https://doi.org/10.1109/MSP.2018.3111245 +Jean-Pierre Hubaux,The Security and Privacy of Smart Vehicles.,2004,2,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp2.html#HubauxCL04,https://doi.org/10.1109/MSP.2004.26 +Gary McGraw,Silver Bullet Talks with Yoshi Kohno.,2014,12,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp12.html#McGraw14b,https://doi.org/10.1109/MSP.2014.55 +Eve Maler,The Venn of Identity: Options and Issues in Federated Identity Management.,2008,6,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp6.html#MalerR08,https://doi.org/10.1109/MSP.2008.50 +Cherita L. Corbett,Countering Intelligent Jamming with Full Protocol Stack Agility.,2014,12,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp12.html#CorbettUCD14,https://doi.org/10.1109/MSP.2013.136 +Javed A. Aslam,The Kerf Toolkit for Intrusion Analysis.,2004,2,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp2.html#AslamBKPTR04,https://doi.org/10.1109/MSP.2004.113 +Robin McKenzie,Use Cases for Identity Management in E-Government.,2008,6,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp6.html#McKenzieCW08,https://doi.org/10.1109/MSP.2008.51 +Elias Levy,Poisoning the Software Supply Chain.,2003,1,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp1.html#Levy03,https://doi.org/10.1109/MSECP.2003.1203227 +Barbara Carminati,Exploring Privacy Issues in Web Services Discovery Agencies.,2005,3,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp3.html#CarminatiFH05,https://doi.org/10.1109/MSP.2005.121 +Bruce Schneier,Detecting Cheaters.,2011,9,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp9.html#Schneier11,https://doi.org/10.1109/MSP.2011.28 +Michael Lesk,Making the Copyright Law Work.,2003,1,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp1.html#Lesk03c,https://doi.org/10.1109/MSECP.2003.1219075 +Martin R. Stytz,The Case for Software Warranties.,2003,1,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp1.html#Stytz03,https://doi.org/10.1109/MSECP.2003.1203229 +William A. Arbaugh,Living with Insecurity.,2011,9,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp9.html#ArbaughF11,https://doi.org/10.1109/MSP.2011.166 +James A. Whittaker,How to Think about Security.,2006,4,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp4.html#WhittakerF06,https://doi.org/10.1109/MSP.2006.39 +David Fraser,The Canadian Response to the USA Patriot Act.,2007,5,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp5.html#Fraser07,https://doi.org/10.1109/MSP.2007.125 +Fred B. Schneider,Least Privilege and More.,2003,1,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp1.html#Schneider03,https://doi.org/10.1109/MSECP.2003.1236236 +Marco Ghiglieri,HbbTV Security and Privacy: Issues and Challenges.,2016,14,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp14.html#GhiglieriW16,https://doi.org/10.1109/MSP.2016.54 +Gary McGraw,Software Security.,2004,2,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp2.html#McGraw04,https://doi.org/10.1109/MSECP.2004.1281254 +Scott Charney,Collective Defense: Applying the Public-Health Model to the Internet.,2012,10,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp10.html#Charney12,https://doi.org/10.1109/MSP.2011.152 +Greg Goth,News.,2003,1,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp1.html#GothM03,https://doi.org/10.1109/MSECP.2003.1236226 +Shari Lawrence Pfleeger,Book Reviews.,2004,2,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp2.html#Pfleeger04,https://doi.org/10.1109/MSP.2004.5 +Timothy Bryant,A Honeybug for Automated Cyber Reasoning Systems.,2018,16,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp16.html#BryantD18,https://doi.org/10.1109/MSP.2018.1870856 +Gary McGraw,Silver Bullet Talks with Matt Bishop.,2008,6,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp6.html#McGraw08e,https://doi.org/10.1109/MSP.2008.153 +Bruce Schneier,Airplane Hackers.,2003,1,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp1.html#Schneier03d,https://doi.org/10.1109/MSECP.2003.1266367 +Luanne Goldrich,Moving Target [Guest editors' introduction].,2014,12,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp12.html#GoldrichL14,https://doi.org/10.1109/MSP.2014.29 +Rachel Rue,Making the Best Use of Cybersecurity Economic Models.,2009,7,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp7.html#RueP09,https://doi.org/10.1109/MSP.2009.98 +Shari Lawrence Pfleeger,Guest Editors' Introduction: Managing Organizational Security.,2007,5,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp5.html#PfleegerTP07,https://doi.org/10.1109/MSP.2007.62 +Carl E. Landwehr,Speaking of Privacy.,2006,4,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp4.html#Landwehr06,https://doi.org/10.1109/MSP.2006.105 +Brian M. Bowen,Designing Host and Network Sensors to Mitigate the Insider Threat.,2009,7,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp7.html#BowenSHKS09,https://doi.org/10.1109/MSP.2009.109 +,Letters to the Editor.,2003,1,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp1.html#X03d,http://doi.ieeecomputersociety.org/10.1109/MSP.2003.10014 +Alen Peacock,Typing Patterns: A Key to User Identification.,2004,2,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp2.html#PeacockKW04,https://doi.org/10.1109/MSP.2004.89 +Feng Hao,Verifiable Classroom Voting in Practice.,2018,16,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp16.html#HaoCRS18,https://doi.org/10.1109/MSP.2018.1331032 +Wolter Pieters,The Navigation Metaphor in Security Economics.,2016,14,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp14.html#PietersBFHPV16,https://doi.org/10.1109/MSP.2016.47 +Gary McGraw,Silver Bullet Talks with Jon Callas.,2014,12,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp12.html#McGraw14,https://doi.org/10.1109/MSP.2014.15 +William A. Arbaugh,Guest Editor's Introduction: Wired on Wireless.,2004,2,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp2.html#Arbaugh04,https://doi.org/10.1109/MSP.2004.14 +Fred H. Cate,The Limits of Notice and Choice.,2010,8,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp8.html#Cate10,https://doi.org/10.1109/MSP.2010.84 +Chris Bonebrake,Attacks on GPS Time Reliability.,2014,12,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp12.html#BonebrakeO14,https://doi.org/10.1109/MSP.2014.40 +Charles P. Pfleeger,Lesson Learned: Security is Inevitable.,2015,13,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp13.html#Pfleeger15c,https://doi.org/10.1109/MSP.2015.119 +Jeffery E. Payne,Regulation and Information Security: Can Y2K Lessons Help Us?,2004,2,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp2.html#Payne04,https://doi.org/10.1109/MSECP.2004.1281248 +Mikhael Felker,Internet War Games: Power of the Masses.,2006,4,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp4.html#Felker06,https://doi.org/10.1109/MSP.2006.44 +Barry E. Mullins,How the Cyber Defense Exercise Shaped an Information-Assurance Curriculum.,2007,5,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp5.html#MullinsLMTB07,https://doi.org/10.1109/MSP.2007.111 +Fred B. Schneider,Here Be Dragons.,2006,4,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp4.html#Schneider06,https://doi.org/10.1109/MSP.2006.68 +L. Jean Camp,Access Denied.,2003,1,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp1.html#Camp03,https://doi.org/10.1109/MSECP.2003.1236242 +Adam Stone,News.,2004,2,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp2.html#StoneAA04,https://doi.org/10.1109/MSP.2004.53 +Susan Landau 0001,Educating Engineers: Teaching Privacy in a World of Open Doors.,2014,12,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp12.html#Landau14a,https://doi.org/10.1109/MSP.2014.43 +Bilal Al Sabbagh,A Socio-technical Framework for Threat Modeling a Software Supply Chain.,2015,13,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp13.html#SabbaghK15,https://doi.org/10.1109/MSP.2015.72 +William H. Allen,How Not to Be Seen II: The Defenders Fight Back.,2007,5,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp5.html#AllenF07,https://doi.org/10.1109/MSP.2007.166 +Marc Donner,Lessons from Electrification for Identification.,2008,6,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp6.html#Donner08a,https://doi.org/10.1109/MSP.2008.38 +Gary McGraw,Silver Bullet Talks with Christofer Hoff.,2010,8,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp8.html#McGraw10,https://doi.org/10.1109/MSP.2010.48 +Giovanni Vigna,The 2010 International Capture the Flag Competition.,2011,9,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp9.html#Vigna11,https://doi.org/10.1109/MSP.2011.21 +Lee Garber,News Briefs.,2011,9,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp9.html#Garber11,https://doi.org/10.1109/MSP.2011.16 +Julien Brouchier,Temperature Attacks.,2009,7,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp7.html#BrouchierKMN09,https://doi.org/10.1109/MSP.2009.54 +Emiliano De Cristofaro,Genomic Privacy and the Rise of a New Research Community.,2014,12,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp12.html#Cristofaro14,https://doi.org/10.1109/MSP.2014.24 +E. Michael Power,Developing a Culture of Privacy: A Case Study.,2007,5,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp5.html#Power07,https://doi.org/10.1109/MSP.2007.163 +Gary McGraw,Silver Bullet Talks with Kate Pearce.,2017,15,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp15.html#McGraw17b,https://doi.org/10.1109/MSP.2017.79 +Todd Bauer,Physical Unclonable Functions: A Primer.,2014,12,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp12.html#BauerH14,https://doi.org/10.1109/MSP.2014.123 +Rubén Trapero,Quantifiably Trusting the Cloud: Putting Metrics to Work.,2016,14,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp14.html#TraperoLS16,https://doi.org/10.1109/MSP.2016.65 +John Lenarcic,The Dinosaur and the Butterfly: A Tale of Computer Ethics.,2003,1,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp1.html#Lenarcic03,https://doi.org/10.1109/MSECP.2003.1236237 +Bradley S. Rubin,Computer Security Education and Research: Handle with Care.,2006,4,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp4.html#RubinC06,https://doi.org/10.1109/MSP.2006.146 +Luca Carettoni,Studying Bluetooth Malware Propagation: The BlueBag Project.,2007,5,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp5.html#CarettoniMZ07,https://doi.org/10.1109/MSP.2007.43 +Massimo Felici,What's New in the Economics of Cybersecurity?,2016,14,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp14.html#FeliciWCB16,https://doi.org/10.1109/MSP.2016.64 +Ivan Arce,The Land of the Blind.,2005,3,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp3.html#Arce05a,https://doi.org/10.1109/MSP.2005.107 +David Elliott,Deterring Strategic Cyberattack.,2011,9,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp9.html#Elliott11,https://doi.org/10.1109/MSP.2011.24 +Lee Hively,Toward Scalable Trustworthy Computing Using the Human-Physiology-Immunity Metaphor.,2011,9,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp9.html#HivelySS11,https://doi.org/10.1109/MSP.2010.142 +Steven M. Bellovin,The Key to the Key.,2015,13,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp13.html#Bellovin15a,https://doi.org/10.1109/MSP.2015.120 +David Chaum,Scantegrity: End-to-End Voter-Verifiable Optical-Scan Voting.,2008,6,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp6.html#ChaumECCPSV08,https://doi.org/10.1109/MSP.2008.70 +Daniel E. Geer,On Abandonment.,2013,11,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp11.html#Geer13a,https://doi.org/10.1109/MSP.2013.92 +Marc Donner,Reading (with) the Enemy.,2009,7,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp7.html#Donner09,https://doi.org/10.1109/MSP.2009.16 +Michael F. Thompson,Effects of a Honeypot on the Cyber Grand Challenge Final Event.,2018,16,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp16.html#Thompson18,https://doi.org/10.1109/MSP.2018.1870870 +Kacper Gradon,Crime Science and the Internet Battlefield: Securing the Analog World from Digital Crime.,2013,11,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp11.html#Gradon13,https://doi.org/10.1109/MSP.2013.112 +Matthew Green 0001,Developers are Not the Enemy!: The Need for Usable Security APIs.,2016,14,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp14.html#GreenS16,https://doi.org/10.1109/MSP.2016.111 +Daniel E. Geer,The Right to Be Unobserved.,2015,13,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp13.html#Geer15a,https://doi.org/10.1109/MSP.2015.76 +Sergey Bratus,What Hackers Learn that the Rest of Us Don't: Notes on Hacker Curriculum.,2007,5,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp5.html#Bratus07,https://doi.org/10.1109/MSP.2007.101 +Adam J. O'Donnell,When Malware Attacks (Anything but Windows).,2008,6,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp6.html#ODonnell08,https://doi.org/10.1109/MSP.2008.78 +Bruce Schneier,Architecture of Privacy.,2009,7,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp7.html#Schneier09,https://doi.org/10.1109/MSP.2009.1 +Merle S. King,Electronic Voting Security 10 Years after the Help America Vote Act.,2012,10,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp10.html#KingH12,https://doi.org/10.1109/MSP.2012.116 +,2004 Annual Index.,2004,2,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp2.html#X04h,https://doi.org/10.1109/MSP.2004.90 +Paul Dunphy,A First Look at Identity Management Schemes on the Blockchain.,2018,16,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp16.html#DunphyP18,https://doi.org/10.1109/MSP.2018.3111247 +Nir Kshetri,The Simple Economics of Cybercrimes.,2006,4,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp4.html#Kshetri06,https://doi.org/10.1109/MSP.2006.27 +Laurianne McLaughlin,News.,2003,1,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp1.html#McLaughlinC03,https://doi.org/10.1109/MSECP.2003.1219049 +Cormac Herley,More Is Not the Answer.,2014,12,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp12.html#Herley14,https://doi.org/10.1109/MSP.2013.134 +Marcus Ranum,Silver Bullet Talks with Gary McGraw.,2016,14,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp14.html#Ranum16,https://doi.org/10.1109/MSP.2016.93 +Hassan Takabi,Security and Privacy Challenges in Cloud Computing Environments.,2010,8,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp8.html#TakabiJA10,https://doi.org/10.1109/MSP.2010.186 +Ricardo Ribalda,A Mobile Biometric System-on-Token System for Signing Digital Transactions.,2010,8,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp8.html#RibaldaRCG10,https://doi.org/10.1109/MSP.2010.1 +Ron Trellue,Process Control System Security: Bootstrapping a Legacy.,2008,6,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp6.html#TrellueP08,https://doi.org/10.1109/MSP.2008.148 +,Bacon Ice Cream: The Best Mix of Proactive and Reactive Security?,2003,1,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp1.html#X03b,http://doi.ieeecomputersociety.org/10.1109/MSP.2003.10006 +Michael Lesk,Safety Risks-Human Error or Mechanical Failure?: Lessons from Railways.,2015,13,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp13.html#Lesk15,https://doi.org/10.1109/MSP.2015.39 +Johan Peeters,Cost-Effective Security.,2007,5,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp5.html#PeetersD07,https://doi.org/10.1109/MSP.2007.56 +Shari Lawrence Pfleeger,Searching for You.,2009,7,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp7.html#Pfleeger09,https://doi.org/10.1109/MSP.2009.48 +Bronwen Matthews,Optimizing Product Improvement Spending with Third-Party Security Consultants.,2012,10,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp10.html#Matthews12,https://doi.org/10.1109/MSP.2012.18 +Vanessa Gratzer,Trust on a Nationwide Scale.,2007,5,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp5.html#GratzerN07a,https://doi.org/10.1109/MSP.2007.127 +Daniel E. Geer Jr.,Security Is a Subset of Reliability.,2008,6,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp6.html#GeerC08d,https://doi.org/10.1109/MSP.2008.151 +Franco Callegati,Frightened by Links.,2009,7,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp7.html#CallegatiR09,https://doi.org/10.1109/MSP.2009.177 +James A. Lewis,Cyberwar Thresholds and Effects.,2011,9,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp9.html#Lewis11,https://doi.org/10.1109/MSP.2011.25 +Josh Kebbel-Wyen,Training an Army of Security Ninjas.,2012,10,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp10.html#Kebbel-Wyen12,https://doi.org/10.1109/MSP.2012.159 +Dinei A. F. Florêncio,Is Everything We Know about Password Stealing Wrong?,2012,10,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp10.html#FlorencioH12,https://doi.org/10.1109/MSP.2012.57 +Brandi Ortega,News Briefs.,2009,7,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp7.html#Ortega09a,https://doi.org/10.1109/MSP.2009.45 +Lorrie Faith Cranor,Better Together: Usability and Security Go Hand in Hand.,2014,12,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp12.html#CranorB14,https://doi.org/10.1109/MSP.2014.109 +Noopur Davis,Processes for Producing Secure Software: Summary of US National Cybersecurity Summit Subgroup Report.,2004,2,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp2.html#DavisHRZM04,https://doi.org/10.1109/MSP.2004.21 +Geraldine MacDonald,Cross-Border Transaction Liability.,2006,4,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp4.html#MacDonald06,https://doi.org/10.1109/MSP.2006.116 +George Lawton,News Briefs.,2010,8,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp8.html#Lawton10,https://doi.org/10.1109/MSP.2010.158 +Gary McGraw,Silver Bullet Talks with Jeremiah Grossman.,2009,7,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp7.html#McGraw09a,https://doi.org/10.1109/MSP.2009.51 +Ashish Popli,ACM Computer and Communication Security Conference.,2004,2,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp2.html#Popli04,https://doi.org/10.1109/MSECP.2004.1281244 +Sean W. Smith,Room at the Bottom: Authenticated Encryption on Slow Legacy Networks.,2011,9,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp9.html#Smith11,https://doi.org/10.1109/MSP.2011.89 +Marc Donner,What's in a Name?,2005,3,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp3.html#Donner05,https://doi.org/10.1109/MSP.2005.56 +Rolf Oppliger,Does Trusted Computing Remedy Computer Security Problems?,2005,3,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp3.html#OppligerR05,https://doi.org/10.1109/MSP.2005.40 +Frank Mabry,Unicode Steganographic Exploits: Maintaining Enterprise Border Security.,2007,5,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp5.html#MabryJF07,https://doi.org/10.1109/MSP.2007.128 +Zahid Akhtar,Biometric Liveness Detection: Challenges and Research Opportunities.,2015,13,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp13.html#AkhtarMF15,https://doi.org/10.1109/MSP.2015.116 +Aaron Portnoy,Walking on Water: A Cheating Case Study.,2009,7,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp7.html#PortnoyR09,https://doi.org/10.1109/MSP.2009.82 +Richard Buckland,The Future of E-voting in Australia.,2012,10,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp10.html#BucklandW12,https://doi.org/10.1109/MSP.2012.59 +Jeremy Epstein,Can We Be Too Careful?,2012,10,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp10.html#Epstein12,https://doi.org/10.1109/MSP.2012.33 +David L. Dill,Guest Editors' Introduction: E-Voting Security.,2004,2,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp2.html#DillR04,https://doi.org/10.1109/MSECP.2004.1264849 +Ronald L. Rivest,When Is an Election Verifiable?,2017,15,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp15.html#RivestS17,https://doi.org/10.1109/MSP.2017.78 +Marit Hansen,Privacy and Identity Management.,2008,6,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp6.html#HansenSC08,https://doi.org/10.1109/MSP.2008.41 +Marco Gruteser,Protecting Privacy in Continuous Location-Tracking Applications.,2004,2,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp2.html#GruteserL04,https://doi.org/10.1109/MSECP.2004.1281242 +Carsten Willems,Toward Automated Dynamic Malware Analysis Using CWSandbox.,2007,5,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp5.html#WillemsHF07,https://doi.org/10.1109/MSP.2007.45 +Steven M. Bellovin,Dr. Strangecode.,2014,12,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp12.html#Bellovin14,https://doi.org/10.1109/MSP.2014.42 +Sara Sinclair,What's Wrong with Access Control in the Real World?,2010,8,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp8.html#SinclairS10,https://doi.org/10.1109/MSP.2010.139 +Daniel E. Geer Jr.,Patch Grief with Proverbs.,2009,7,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp7.html#GeerC09d,https://doi.org/10.1109/MSP.2009.164 +Ronald Perez,Virtualization and Hardware-Based Security.,2008,6,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp6.html#PerezDS08,https://doi.org/10.1109/MSP.2008.135 +David Dittrich,Building an Active Computer Security Ethics Community.,2011,9,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp9.html#DittrichBD11,https://doi.org/10.1109/MSP.2010.199 +,Book Reviews.,2004,2,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp2.html#X04e,https://doi.org/10.1109/MSP.2004.38 +Daniel E. Geer Jr.,Risk Concentration.,2009,7,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp7.html#GeerC09c,https://doi.org/10.1109/MSP.2009.132 +Mark Fabro,No Grid Left Behind.,2010,8,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp8.html#FabroRA10,https://doi.org/10.1109/MSP.2010.43 +Luca Caviglione,The Future of Digital Forensics: Challenges and the Road Ahead.,2017,15,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp15.html#CaviglioneWM17,https://doi.org/10.1109/MSP.2017.4251117 +Anil Somayaji,How to Win and Evolutionary Arms Race.,2004,2,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp2.html#Somayaji04,https://doi.org/10.1109/MSP.2004.100 +Deborah A. Frincke,Guarding the Castle Keep: Teaching with the Fortress Metaphor.,2004,2,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp2.html#FrinckeB04,https://doi.org/10.1109/MSP.2004.13 +Nicolas Sendrier,Code-Based Cryptography: State of the Art and Perspectives.,2017,15,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp15.html#Sendrier17,https://doi.org/10.1109/MSP.2017.3151345 +Fred B. Schneider,Breaking-in Research.,2013,11,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp11.html#Schneider13,https://doi.org/10.1109/MSP.2013.28 +Markus Jakobsson,Why and How to Perform Fraud Experiments.,2008,6,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp6.html#JakobssonFJ08,https://doi.org/10.1109/MSP.2008.52 +Constantinos Kolias,"Learning Internet-of-Things Security ""Hands-On"".",2016,14,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp14.html#KoliasSVBK16,https://doi.org/10.1109/MSP.2016.4 +Fred B. Schneider,It Depends on What You Pay.,2005,3,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp3.html#Schneider05,https://doi.org/10.1109/MSP.2005.72 +Daniel E. Geer Jr.,Identity as Privacy.,2013,11,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp11.html#Geer13,https://doi.org/10.1109/MSP.2013.11 +Abdulghani Ali Ahmed,Real-Time Detection of Intrusive Traffic in QoS Network Domains.,2013,11,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp11.html#AhmedJW13,https://doi.org/10.1109/MSP.2013.52 +Carl E. Landwehr,Revolution through Competition?,2007,5,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp5.html#Landwehr07b,https://doi.org/10.1109/MSP.2007.174 +Richard Chow,The Last Mile for IoT Privacy.,2017,15,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp15.html#Chow17,https://doi.org/10.1109/MSP.2017.4251118 +Kristin Fuglerud,Secure and Inclusive Authentication with a Talking Mobile One-Time-Password Client.,2011,9,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp9.html#FuglerudD11,https://doi.org/10.1109/MSP.2010.204 +Aviv Ron,Analysis and Mitigation of NoSQL Injections.,2016,14,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp14.html#RonSP16,https://doi.org/10.1109/MSP.2016.36 +Shari Lawrence Pfleeger,Lessons Learned by Our Editorial Board.,2015,13,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp13.html#Pfleeger15b,https://doi.org/10.1109/MSP.2015.125 +Philip O'Kane,Obfuscation: The Hidden Malware.,2011,9,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp9.html#OKaneSM11,https://doi.org/10.1109/MSP.2011.98 +Nancy R. Mead,SEHAS 2003: The Future of High-Assurance Systems.,2003,1,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp1.html#Mead03a,http://doi.ieeecomputersociety.org/10.1109/MSP.2003.10013 +Sarah Spiekermann,Critical RFID Privacy-Enhancing Technologies.,2009,7,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp7.html#SpiekermannE09,https://doi.org/10.1109/MSP.2009.31 +Elias Levy,Interface Illusions.,2004,2,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp2.html#Levy04b,https://doi.org/10.1109/MSP.2004.104 +Qun Ni,Privacy-Aware Role-Based Access Control.,2009,7,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp7.html#NiBLC09,https://doi.org/10.1109/MSP.2009.102 +Laurie Williams,"Protection Poker: The New Software Security ""Game""*.",2010,8,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp8.html#WilliamsMS10,https://doi.org/10.1109/MSP.2010.58 +Christos K. Dimitriadis,Improving Mobile Core Network Security with Honeynets.,2007,5,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp5.html#Dimitriadis07,https://doi.org/10.1109/MSP.2007.85 +Paco Hope,Misuse and Abuse Cases: Getting Past the Positive.,2004,2,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp2.html#HopeMA04,https://doi.org/10.1109/MSP.2004.17 +Fred Cohen,Automated Control System Security.,2010,8,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp8.html#Cohen10b,https://doi.org/10.1109/MSP.2010.146 +Lalana Kagal,Preserving Privacy Based on Semantic Policy Tools.,2010,8,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp8.html#KagalP10,https://doi.org/10.1109/MSP.2010.89 +Gary McGraw,Silver Bullet Talks with L. Jean Camp.,2015,13,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp13.html#McGraw15b,https://doi.org/10.1109/MSP.2015.55 +Gary McGraw,Silver Bullet Talks with Gary Warzala.,2013,11,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp11.html#McGraw13c,https://doi.org/10.1109/MSP.2013.98 +Daniel E. Geer Jr.,Complexity Is the Enemy.,2008,6,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp6.html#Geer08a,https://doi.org/10.1109/MSP.2008.139 +Siani Pearson,Securing Information Transfer in Distributed Computing Environments.,2008,6,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp6.html#PearsonMN08,https://doi.org/10.1109/MSP.2008.19 +Thorsten Holz,New Threats and Attacks on the World Wide Web.,2006,4,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp4.html#HolzMR06,https://doi.org/10.1109/MSP.2006.46 +Michael A. Caloyannides,Security or Cosmetology?,2004,2,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp2.html#Caloyannides04b,https://doi.org/10.1109/MSP.2004.23 +William E. Burr,A New Hash Competition.,2008,6,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp6.html#Burr08,https://doi.org/10.1109/MSP.2008.55 +Vijay Varadharajan,Internet Filtering Issues and Challenges.,2010,8,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp8.html#Varadharajan10,https://doi.org/10.1109/MSP.2010.131 +Shuihua Han,Tamper Detection in the EPC Network Using Digital Watermarking.,2011,9,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp9.html#HanLL11,https://doi.org/10.1109/MSP.2011.71 +Adam J. O'Donnell,The Evolutionary Microcosm of Stock Spam.,2007,5,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp5.html#ODonnell07,https://doi.org/10.1109/MSP.2007.22 +Michael Lesk,Incentives to Innovate: Improve the Past or Break with It?,2009,7,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp7.html#Lesk09a,https://doi.org/10.1109/MSP.2009.125 +Steven Cheung,Securing Collaborative Intrusion Detection Systems.,2011,9,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp9.html#Cheung11,https://doi.org/10.1109/MSP.2011.97 +John Paul Dunning,Taming the Blue Beast: A Survey of Bluetooth Based Threats.,2010,8,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp8.html#Dunning10,https://doi.org/10.1109/MSP.2010.3 +Daniel E. Geer Jr.,ICS Update.,2012,10,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp10.html#GeerP12,https://doi.org/10.1109/MSP.2012.69 +Yuen-Yan Chan,Teaching for Conceptual Change in Security Awareness: A Case Study in Higher Education.,2009,7,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp7.html#ChanW09,https://doi.org/10.1109/MSP.2009.22 +Gary McGraw,Silver Bullet Talks with Marie Moe.,2017,15,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp15.html#McGraw17,https://doi.org/10.1109/MSP.2017.8 +Cynthia E. Irvine,Call in the Cyber National Guard!,2010,8,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp8.html#IrvineP10,https://doi.org/10.1109/MSP.2010.32 +Martin R. Stytz,Dynamic software security testing.,2006,4,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp4.html#StytzB06,https://doi.org/10.1109/MSP.2006.64 +Jeffrey Todd McDonald,Integrating Historical Security Jewels in Information Assurance Education.,2012,10,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp10.html#McDonaldA12,https://doi.org/10.1109/MSP.2012.86 +James Figueroa,Shaking Up the Cybersecurity Landscape.,2008,6,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp6.html#FigueroaO08,https://doi.org/10.1109/MSP.2008.152 +Madhusanka Liyanage,Opportunities and Challenges of Software-Defined Mobile Networks in Network Security.,2016,14,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp14.html#LiyanageAYG16,https://doi.org/10.1109/MSP.2016.82 +Brian Randell,Voting Technologies and Trust.,2006,4,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp4.html#RandellR06,https://doi.org/10.1109/MSP.2006.140 +Terry Benzel,Selected Papers from the 2016 IEEE Symposium on Security and Privacy.,2017,15,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp15.html#Benzel17,https://doi.org/10.1109/MSP.2017.28 +Sean W. Smith,A Funny Thing Happened on the Way to the Marketplace.,2003,1,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp1.html#SmithRG03,https://doi.org/10.1109/MSECP.2003.1253574 +György Dán,Challenges in Power System Information Security.,2012,10,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp10.html#DanSEB12,https://doi.org/10.1109/MSP.2011.151 +Benjamin Edelman,Accountable? The Problems and Solutions of Online Ad Optimization.,2014,12,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp12.html#Edelman14,https://doi.org/10.1109/MSP.2014.107 +Gary McGraw,Silver Bullet Talks with Iván Arce.,2010,8,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp8.html#McGraw10e,https://doi.org/10.1109/MSP.2010.188 +Gary McGraw,Silver Bullet Talks with Brian Krebs.,2015,13,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp13.html#McGraw15,https://doi.org/10.1109/MSP.2015.13 +Andrew A. Adams,Possessing Mobile Devices.,2015,13,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp13.html#Adams15,https://doi.org/10.1109/MSP.2015.124 +Carl E. Landwehr,Up Scope.,2008,6,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp6.html#Landwehr08,https://doi.org/10.1109/MSP.2008.76 +Susan Hohenberger,An Overview of ANONIZE: A Large-Scale Anonymous Survey System.,2015,13,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp13.html#HohenbergerMPS15,https://doi.org/10.1109/MSP.2015.21 +George Chamales,The Honeywall CD-ROM.,2004,2,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp2.html#Chamales04,https://doi.org/10.1109/MSECP.2004.1281253 +Jelena Mirkovic,Evaluating Cybersecurity Education Interventions: Three Case Studies.,2015,13,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp13.html#MirkovicDDVD15,https://doi.org/10.1109/MSP.2015.57 +Nir Kshetri,India's Cybersecurity Landscape: The Roles of the Private Sector and Public-Private Partnership.,2015,13,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp13.html#Kshetri15,https://doi.org/10.1109/MSP.2015.61 +David John Leversage,Estimating a System's Mean Time-to-Compromise.,2008,6,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp6.html#LeversageJ08,https://doi.org/10.1109/MSP.2008.9 +Stephen E. McLaughlin,Securing Control Systems from the Inside: A Case for Mediating Physical Behaviors.,2013,11,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp11.html#McLaughlin13,https://doi.org/10.1109/MSP.2013.96 +M. Angela Sasse,Debunking Security-Usability Tradeoff Myths.,2016,14,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp14.html#SasseSHLV16,https://doi.org/10.1109/MSP.2016.110 +Simson L. Garfinkel,Remembrance of Data Passed: A Study of Disk Sanitization Practices.,2003,1,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp1.html#GarfinkelS03,https://doi.org/10.1109/MSECP.2003.1176992 +Daniel E. Geer Jr.,What We Got for Christmas.,2008,6,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp6.html#GeerC08,https://doi.org/10.1109/MSP.2008.26 +Elizabeth A. Nichols,A Metrics Framework to Drive Application Security Improvement.,2007,5,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp5.html#NicholsP07,https://doi.org/10.1109/MSP.2007.26 +Zeljko Obrenovic,Integrating User Customization and Authentication: The Identity Crisis.,2012,10,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp10.html#ObrenovicH12,https://doi.org/10.1109/MSP.2012.119 +Richard Ford,Protecting Me.,2014,12,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp12.html#FordC14,https://doi.org/10.1109/MSP.2014.10 +Gary McGraw,Silver Bullet Talks with Greg Morrisett.,2010,8,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp8.html#McGraw10d,https://doi.org/10.1109/MSP.2010.163 +Len Sassaman,A Patch for Postel's Robustness Principle.,2012,10,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp10.html#SassamanPB12,https://doi.org/10.1109/MSP.2012.31 +Lori L. DeLooze,Providing Web Service Security in a Federated Environment.,2007,5,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp5.html#DeLooze07,https://doi.org/10.1109/MSP.2007.16 +Ross J. Anderson,Software Security: State of the Art.,2007,5,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp5.html#Anderson07,https://doi.org/10.1109/MSP.2007.18 +Celia Paulsen,NICE: Creating a Cybersecurity Workforce and Aware Public.,2012,10,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp10.html#PaulsenMNT12,https://doi.org/10.1109/MSP.2012.73 +Peter Kuper,A Warning to Industry--Fix It or Lose It.,2006,4,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp4.html#Kuper06,https://doi.org/10.1109/MSP.2006.32 +Nancy R. Mead,Building Security In: Preparing for a Software Security Career.,2013,11,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp11.html#MeadH13,https://doi.org/10.1109/MSP.2013.139 +Aaron Tomb,Automated Verification of Real-World Cryptographic Implementations.,2016,14,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp14.html#Tomb16,https://doi.org/10.1109/MSP.2016.125 +Matthew Dunlop,The Blind Man's Bluff Approach to Security Using IPv6.,2012,10,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp10.html#DunlopGUMT12,https://doi.org/10.1109/MSP.2012.28 +Wade H. Baker,Is Information Security Under Control?: Investigating Quality in Information Security Management.,2007,5,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp5.html#BakerW07,https://doi.org/10.1109/MSP.2007.11 +Gary McGraw,Silver Bullet Talks with Katie Moussouris.,2015,13,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp13.html#McGraw15c,https://doi.org/10.1109/MSP.2015.89 +Michael Lesk,Shedding Light on Creativity: The History of Photography.,2004,2,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp2.html#Lesk04a,https://doi.org/10.1109/MSECP.2004.1281249 +Robin Ruefle,Computer Security Incident Response Team Development and Evolution.,2014,12,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp12.html#RuefleDMHMP14,https://doi.org/10.1109/MSP.2014.89 +Robin E. Bloomfield,International Working Group on Assurance Cases (for Security).,2006,4,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp4.html#BloomfieldGMMW06,https://doi.org/10.1109/MSP.2006.73 +Feisal Keblawi,Applying the Common Criteria in Systems Engineering.,2006,4,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp4.html#KeblawiS06,https://doi.org/10.1109/MSP.2006.35 +Cormac Herley,A Research Agenda Acknowledging the Persistence of Passwords.,2012,10,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp10.html#HerleyO12,https://doi.org/10.1109/MSP.2011.150 +Laurianne McLaughlin,Interview: Holistic Security.,2005,3,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp3.html#McLaughlin05,https://doi.org/10.1109/MSP.2005.71 +Eyal Ronen,IoT Goes Nuclear: Creating a Zigbee Chain Reaction.,2018,16,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp16.html#RonenSWO18,https://doi.org/10.1109/MSP.2018.1331033 +Raymond C. Parks,Vulnerability Assessment for Critical Infrastructure Control Systems.,2008,6,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp6.html#ParksR08,https://doi.org/10.1109/MSP.2008.160 +Jim Davis,Teaching Students to Design Secure Systems.,2003,1,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp1.html#DavisD03,https://doi.org/10.1109/MSECP.2003.1193212 +Salvatore J. Stolfo,Privacy-Preserving Sharing of Sensitive Information.,2010,8,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp8.html#StolfoT10,https://doi.org/10.1109/MSP.2010.135 +Wendy Seltzer,Exposing the Flaws of Censorship by Domain Name.,2011,9,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp9.html#Seltzer11,https://doi.org/10.1109/MSP.2011.8 +Fred B. Schneider,From the Editors: The Next Digital Divide.,2004,2,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp2.html#Schneider04,https://doi.org/10.1109/MSECP.2004.1264838 +Bruce Schneier,University Networks and Data Security.,2006,4,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp4.html#Schneier06,https://doi.org/10.1109/MSP.2006.138 +Eric Baize,Developing Secure Products in the Age of Advanced Persistent Threats.,2012,10,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp10.html#Baize12,https://doi.org/10.1109/MSP.2012.65 +Denis Verdon,Risk Analysis in Software Design.,2004,2,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp2.html#VerdonM04,https://doi.org/10.1109/MSP.2004.55 +Eric Grosse,Cloud Computing Roundtable.,2010,8,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp8.html#GrosseHRRS10,https://doi.org/10.1109/MSP.2010.173 +Lynn Margaret Batten,Teaching Digital Forensics to Undergraduate Students.,2008,6,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp6.html#BattenP08,https://doi.org/10.1109/MSP.2008.74 +Peter C. Wayner,The Power of Candy-Coated Bits.,2004,2,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp2.html#Wayner04,https://doi.org/10.1109/MSECP.2004.1281251 +Gary McGraw,Silver Bullet Talks with Howard Schmidt.,2012,10,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp10.html#McGraw12d,https://doi.org/10.1109/MSP.2012.155 +Gunnar Peterson,Defining Misuse within the Development Process.,2006,4,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp4.html#PetersonS06,https://doi.org/10.1109/MSP.2006.149 +Michael Lesk,Bigger Share of a Smaller Pie.,2004,2,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp2.html#Lesk04c,https://doi.org/10.1109/MSP.2004.37 +Andrea M. Matwyshyn,Ethics in Security Vulnerability Research.,2010,8,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp8.html#MatwyshynCKS10,https://doi.org/10.1109/MSP.2010.67 +Brandi Ortega,News.,2006,4,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp4.html#Ortega06a,https://doi.org/10.1109/MSP.2006.160 +Saeed Abu-Nimeh,Proliferation and Detection of Blog Spam.,2010,8,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp8.html#Abu-NimehC10,https://doi.org/10.1109/MSP.2010.113 +O. Sami Saydjari,A Tale of Three Cyber-Defense Workshops.,2009,7,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp7.html#SaydjariI09,https://doi.org/10.1109/MSP.2009.171 +Brandi Ortega,News Briefs.,2007,5,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp5.html#Ortega07a,https://doi.org/10.1109/MSP.2007.38 +Dan Taylor,Adopting a Software Security Improvement Program.,2005,3,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp3.html#TaylorM05,https://doi.org/10.1109/MSP.2005.60 +Patricia Arias Cabarcos,Blended Identity: Pervasive IdM for Continuous Authentication.,2015,13,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp13.html#CabarcosATSL15,https://doi.org/10.1109/MSP.2015.62 +Aditya K. Sood,Targeted Cyberattacks: A Superset of Advanced Persistent Threats.,2013,11,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp11.html#SoodE13,https://doi.org/10.1109/MSP.2012.90 +Sayan Mitra,Verifying Cyber-Physical Interactions in Safety-Critical Systems.,2013,11,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp11.html#MitraWM13,https://doi.org/10.1109/MSP.2013.77 +Michael Meike,Security in Open Source Web Content Management Systems.,2009,7,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp7.html#MeikeSW09,https://doi.org/10.1109/MSP.2009.104 +John Mulholland,The Day the Cryptography Dies.,2017,15,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp15.html#MulhollandMB17,https://doi.org/10.1109/MSP.2017.3151325 +Martin R. Stytz,Considering Defense in Depth for Software Applications.,2004,2,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp2.html#Stytz04a,https://doi.org/10.1109/MSECP.2004.1264860 +Christian Skalka,Programming Languages and Systems Security.,2005,3,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp3.html#Skalka05,https://doi.org/10.1109/MSP.2005.77 +Melissa Dark,Thinking about Cybersecurity.,2015,13,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp13.html#Dark15,https://doi.org/10.1109/MSP.2015.17 +Richard Ford,Malcode Mysteries Revealed.,2005,3,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp3.html#Ford05,https://doi.org/10.1109/MSP.2005.73 +Colleen Shannon,The Spread of the Witty Worm.,2004,2,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp2.html#ShannonM04,https://doi.org/10.1109/MSP.2004.59 +Nicole B. Ellison,Profile as Promise: Honest and Deceptive Signals in Online Dating.,2013,11,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp11.html#EllisonH13,https://doi.org/10.1109/MSP.2013.120 +Shari Lawrence Pfleeger,Why Measuring Security Is Hard.,2010,8,IEEE Security and Privacy,4,db/journals/ieeesp/ieeesp8.html#PfleegerC10,https://doi.org/10.1109/MSP.2010.60 +Peter Mell,Common Vulnerability Scoring System.,2006,4,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp4.html#MellSR06,https://doi.org/10.1109/MSP.2006.145 +Daniel W. Williams,Security through Diversity: Leveraging Virtual Machine Technology.,2009,7,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp7.html#WilliamsHDHKN09,https://doi.org/10.1109/MSP.2009.18 +Timothy Vidas,Changing the Game of Software Security.,2018,16,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp16.html#VidasLOS18,https://doi.org/10.1109/MSP.2018.1870863 +Kjell Jørgen Hole,Toward Risk Assessment of Large-Impact and Rare Events.,2010,8,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp8.html#HoleN10,https://doi.org/10.1109/MSP.2010.55 +Shari Lawrence Pfleeger,I'll Buy That! Cybersecurity in the Internet Marketplace.,2007,5,IEEE Security and Privacy,3,db/journals/ieeesp/ieeesp5.html#PfleegerLW07,https://doi.org/10.1109/MSP.2007.64 +Clark Weissman,Lessons Learned from Building a High-Assurance Crypto Gateway.,2011,9,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp9.html#WeissmanL11,https://doi.org/10.1109/MSP.2010.201 +Carl E. Landwehr,From the Editor: Security Cosmology: Moving from Big Bang to Worlds in Collusion.,2003,1,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp1.html#Landwehr03,http://doi.ieeecomputersociety.org/10.1109/MSP.2003.10012 +Daniel E. Geer Jr.,When Is a Product a Security Product?,2005,3,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp3.html#Geer05a,https://doi.org/10.1109/MSP.2005.138 +Bruce Schneier,IT for Oppression.,2013,11,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp11.html#Schneier13,https://doi.org/10.1109/MSP.2013.36 +Brandi Ortega,Shaking Up the Cybersecurity Landscape.,2009,7,IEEE Security and Privacy,1,db/journals/ieeesp/ieeesp7.html#Ortega09,https://doi.org/10.1109/MSP.2009.19 +Marc Donner,Privacy and the System Life Cycle.,2011,9,IEEE Security and Privacy,2,db/journals/ieeesp/ieeesp9.html#Donner11,https://doi.org/10.1109/MSP.2011.35 +Samuel T. King,Virtualization and Security: Back to the Future.,2008,6,IEEE Security and Privacy,5,db/journals/ieeesp/ieeesp6.html#KingS08,https://doi.org/10.1109/MSP.2008.136 +Saman A. Zonouz,Detecting Industrial Control Malware Using Automated PLC Code Analytics.,2014,12,IEEE Security and Privacy,6,db/journals/ieeesp/ieeesp12.html#ZonouzRM14,https://doi.org/10.1109/MSP.2014.113 +Gary G. Yen,A Multiobjective Particle Swarm Optimizer for Constrained Optimization.,2011,2,IJSIR,1,db/journals/ijsir/ijsir2.html#YenL11,https://doi.org/10.4018/jsir.2011010101 +Zhou Wu,Contour Gradient Optimization.,2013,4,IJSIR,2,db/journals/ijsir/ijsir4.html#WuCCS13,https://doi.org/10.4018/jsir.2013040101 +Maurice Clerc,Beyond Standard Particle Swarm Optimisation.,2010,1,IJSIR,4,db/journals/ijsir/ijsir1.html#Clerc10,https://doi.org/10.4018/jsir.2010100103 +Yuhan Guo,A Clustering Ant Colony Algorithm for the Long-Term Car Pooling Problem.,2012,3,IJSIR,2,db/journals/ijsir/ijsir3.html#GuoGH12,https://doi.org/10.4018/jsir.2012040103 +Xin-She Yang,Diversity and Mechanisms in Swarm Intelligence.,2014,5,IJSIR,2,db/journals/ijsir/ijsir5.html#Yang14,https://doi.org/10.4018/ijsir.2014040101 +Mohamed Elhadi Rahmani,A Novel Bio Inspired Algorithm Based on Echolocation Mechanism of Bats for Seismic States Prediction.,2017,8,IJSIR,3,db/journals/ijsir/ijsir8.html#RahmaniAH17,https://doi.org/10.4018/IJSIR.2017070101 +T. O. Ting,Drilling Optimization via Particle Swarm Optimization.,2012,3,IJSIR,1,db/journals/ijsir/ijsir3.html#TingL12,https://doi.org/10.4018/jsir.2012010103 +R. Rathipriya,A Discrete Artificial Bees Colony Inspired Biclustering Algorithm.,2012,3,IJSIR,1,db/journals/ijsir/ijsir3.html#RathipriyaT12,https://doi.org/10.4018/jsir.2012010102 +Peng-Yeng Yin,A Complementary Cyber Swarm Algorithm.,2011,2,IJSIR,2,db/journals/ijsir/ijsir2.html#YinGLZ11,https://doi.org/10.4018/jsir.2011040102 +Gomaa Zaki El-Far,Adaptive Neuro-Fuzzy Control Approach Based on Particle Swarm Optimization.,2010,1,IJSIR,4,db/journals/ijsir/ijsir1.html#El-Far10,https://doi.org/10.4018/jsir.2010100101 +Ying Tan 0002,Particle Swarm Optimization Algorithms Inspired by Immunity-Clonal Mechanism and Their Applications to Spam Detection.,2010,1,IJSIR,1,db/journals/ijsir/ijsir1.html#Tan10,https://doi.org/10.4018/jsir.2010010104 +Sk Md Ali Bulbul,Adaptive Teaching Learning Based Optimization Applied to Nonlinear Economic Load Dispatch Problem.,2014,5,IJSIR,4,db/journals/ijsir/ijsir5.html#BulbulR14,https://doi.org/10.4018/ijsir.2014100101 +Ji Zhao 0002,Tracking Multiple Optima in Dynamic Environments by Quantum-Behavior Particle Swarm Using Speciation.,2012,3,IJSIR,1,db/journals/ijsir/ijsir3.html#Zhao0P12,https://doi.org/10.4018/jsir.2012010104 +Shuyue Wu,A Quantum Particle Swarm Optimization Algorithm Based on Self-Updating Mechanism.,2018,9,IJSIR,1,db/journals/ijsir/ijsir9.html#Wu18,https://doi.org/10.4018/IJSIR.2018010101 +George M. Cavalcanti-Júnior,On the Analysis of HPSO Improvement by Use of the Volitive Operator of Fish School Search.,2013,4,IJSIR,1,db/journals/ijsir/ijsir4.html#Cavalcanti-JuniorNF13,https://doi.org/10.4018/jsir.2013010103 +Xin-She Yang,Chaos-Enhanced Firefly Algorithm with Automatic Parameter Tuning.,2011,2,IJSIR,4,db/journals/ijsir/ijsir2.html#Yang11,https://doi.org/10.4018/jsir.2011100101 +Sujatha Balaraman,Congestion Management Using Hybrid Particle Swarm Optimization Technique.,2010,1,IJSIR,3,db/journals/ijsir/ijsir1.html#BalaramanK10,https://doi.org/10.4018/jsir.2010070104 +Robert G. Reynolds,Networks Do Matter: The Socially Motivated Design of a 3D Race Controller Using Cultural Algorithms.,2010,1,IJSIR,1,db/journals/ijsir/ijsir1.html#Reynolds10,https://doi.org/10.4018/jsir.2010010102 +Yuhui Shi,Developmental Swarm Intelligence: Developmental Learning Perspective of Swarm Intelligence Algorithms.,2014,5,IJSIR,1,db/journals/ijsir/ijsir5.html#Shi14,https://doi.org/10.4018/ijsir.2014010102 +Kevin M. Passino,Bacterial Foraging Optimization.,2010,1,IJSIR,1,db/journals/ijsir/ijsir1.html#Passino10,https://doi.org/10.4018/jsir.2010010101 +Pandu Ranga Vundavilli,Weighted Average-Based Multi-Objective Optimization of Tube Spinning Process using Non-Traditional Optimization Techniques.,2013,4,IJSIR,3,db/journals/ijsir/ijsir4.html#VundavilliKP13,https://doi.org/10.4018/ijsir.2013070103 +Maurice Clerc,List-Based Optimisers: Experiments and Open Questions.,2013,4,IJSIR,4,db/journals/ijsir/ijsir4.html#Clerc13,https://doi.org/10.4018/ijsir.2013100102 +Santosh Kumar 0006,Hybrid BFO and PSO Swarm Intelligence Approach for Biometric Feature Optimization.,2016,7,IJSIR,2,db/journals/ijsir/ijsir7.html#KumarS16,https://doi.org/10.4018/IJSIR.2016040103 +Shi Cheng,Analytics on Fireworks Algorithm Solving Problems with Shifts in the Decision Space and Objective Space.,2015,6,IJSIR,2,db/journals/ijsir/ijsir6.html#ChengQCSZ15,https://doi.org/10.4018/IJSIR.2015040103 +Tad Gonsalves,Two Diverse Swarm Intelligence Techniques for Supervised Learning.,2015,6,IJSIR,4,db/journals/ijsir/ijsir6.html#Gonsalves15,https://doi.org/10.4018/IJSIR.2015100103 +Xingsi Xue,A Preference-Based Multi-Objective Evolutionary Algorithm for Semiautomatic Sensor Ontology Matching.,2018,9,IJSIR,2,db/journals/ijsir/ijsir9.html#XueC18,https://doi.org/10.4018/IJSIR.2018040101 +Vishwesh Venkatraman,Predicting Multi-Component Protein Assemblies Using an Ant Colony Approach.,2012,3,IJSIR,3,db/journals/ijsir/ijsir3.html#VenkatramanR12,https://doi.org/10.4018/jsir.2012070102 +Qiang Wang,Optimized Base Station Sleeping and Renewable Energy Procurement Scheme Using PSO.,2017,8,IJSIR,1,db/journals/ijsir/ijsir8.html#WangL17,https://doi.org/10.4018/IJSIR.2017010103 +Kamel Zeltni,On the Convergence and Diversity of Pareto Fronts Using Swarm Intelligence Metaheuristics for Constrained Search Space.,2018,9,IJSIR,1,db/journals/ijsir/ijsir9.html#ZeltniMA18,https://doi.org/10.4018/IJSIR.2018010102 +Wen-Fung Leong,Constraint Handling in Particle Swarm Optimization.,2010,1,IJSIR,1,db/journals/ijsir/ijsir1.html#LeongY10,https://doi.org/10.4018/jsir.2010010103 +Chatkaew Jariyatantiwait,5 by 5 Microstrip Antenna Array Design by Multiobjective Differential Evolution based on Fuzzy Performance Feedback.,2016,7,IJSIR,4,db/journals/ijsir/ijsir7.html#Jariyatantiwait16,https://doi.org/10.4018/IJSIR.2016100101 +T. O. Ting,Taguchi-Particle Swarm Optimization for Numerical Optimization.,2010,1,IJSIR,2,db/journals/ijsir/ijsir1.html#TingTL10,https://doi.org/10.4018/jsir.2010040102 +Anil Kumar Ramakuru,Compensation of Voltage Sags with Phase-Jumps through DVR with Minimum VA Rating Using PSO based ANFIS Controller.,2010,1,IJSIR,3,db/journals/ijsir/ijsir1.html#RamakuruKKM10,https://doi.org/10.4018/jsir.2010070102 +Arindam Majumder,Standard Deviation Method Based PSO: An Instigated Approach to Optimize Multi-Objective Manufacturing Process Parameters.,2016,7,IJSIR,2,db/journals/ijsir/ijsir7.html#MajumderM16,https://doi.org/10.4018/IJSIR.2016040102 +K. Vaisakh,Unit Commitment by Evolving Ant Colony Optimization.,2010,1,IJSIR,3,db/journals/ijsir/ijsir1.html#VaisakhS10,https://doi.org/10.4018/jsir.2010070105 +Yan Meng,Distributed Multi-Agent Systems for a Collective Construction Task based on Virtual Swarm Intelligence.,2010,1,IJSIR,2,db/journals/ijsir/ijsir1.html#MengJ10,https://doi.org/10.4018/jsir.2010040104 +Chatkaew Jariyatantiwait,Multiobjective Differential Evolution Based on Fuzzy Performance Feedback.,2014,5,IJSIR,4,db/journals/ijsir/ijsir5.html#Jariyatantiwait14,https://doi.org/10.4018/ijsir.2014100104 +Hongwei Mo,Magnetotactic Bacteria Optimization Algorithm Based On Four Best-Rand Pairwise Schemes.,2014,5,IJSIR,3,db/journals/ijsir/ijsir5.html#MoXLZ14,https://doi.org/10.4018/ijsir.2014070102 +P. K. Nizar Banu,Harmony Search PSO Clustering for Tumor and Cancer Gene Expression Dataset.,2014,5,IJSIR,3,db/journals/ijsir/ijsir5.html#BanuA14,https://doi.org/10.4018/ijsir.2014070101 +Ewerton L. Ferreira,Distribution Systems Reconfiguration for Voltage Stability Maximization by using Artificial Immune Systems.,2017,8,IJSIR,2,db/journals/ijsir/ijsir8.html#FerreiraO17,https://doi.org/10.4018/IJSIR.2017040101 +Prithviraj Dasgupta,Effects of Multi-Robot Team Formations on Distributed Area Coverage.,2011,2,IJSIR,1,db/journals/ijsir/ijsir2.html#DasguptaWC11,https://doi.org/10.4018/IJSIR.2011010111010103 +Yuhui Shi,Multi-Objective Optimization Based on Brain Storm Optimization Algorithm.,2013,4,IJSIR,3,db/journals/ijsir/ijsir4.html#ShiXW13,https://doi.org/10.4018/ijsir.2013070101 +Mohamed Elhadi Rahmani,New Approach Based on Termite's Hill Building for Prediction of Successful Simulations in Climate Models.,2017,8,IJSIR,3,db/journals/ijsir/ijsir8.html#RahmaniAH17a,https://doi.org/10.4018/IJSIR.2017070103 +Shuangxin Wang,Dynamic Particle Swarm Optimization with Any Irregular Initial Small-World Topology.,2015,6,IJSIR,4,db/journals/ijsir/ijsir6.html#WangTYL15,https://doi.org/10.4018/IJSIR.2015100101 +Abubacker Kaja Mohideen,Weaver Ant Colony Optimization-Based Neural Network Learning for Mammogram Classification.,2013,4,IJSIR,3,db/journals/ijsir/ijsir4.html#MohideenT13,https://doi.org/10.4018/ijsir.2013070102 +Xiangdong Che,Monitoring the Vital Signs in a Complex Social System: An Example Using Cultural Algorithms.,2014,5,IJSIR,1,db/journals/ijsir/ijsir5.html#CheSR14,https://doi.org/10.4018/ijsir.2014010103 +Krishna Gopal Dhal,An Improved Cuckoo Search based Optimal Ranged Brightness Preserved Histogram Equalization and Contrast Stretching Method.,2017,8,IJSIR,1,db/journals/ijsir/ijsir8.html#DhalQD17,https://doi.org/10.4018/IJSIR.2017010101 +Jérémy Patrix,Detection of Primitive Collective Behaviours in a Crowd Panic Simulation Based on Multi-Agent Approach.,2012,3,IJSIR,3,db/journals/ijsir/ijsir3.html#PatrixMG12,https://doi.org/10.4018/jsir.2012070104 +Salman Khalili Araghi,Customizing Urban Pattern through an Agent-Based Approach.,2014,5,IJSIR,4,db/journals/ijsir/ijsir5.html#AraghiEHH14,https://doi.org/10.4018/ijsir.2014100103 +Stefan Bornhofen,From Swarm Art Toward Ecosystem Art.,2012,3,IJSIR,3,db/journals/ijsir/ijsir3.html#BornhofenGM12,https://doi.org/10.4018/jsir.2012070101 +Simone A. Ludwig,Parallelization of Enhanced Firework Algorithm using MapReduce.,2015,6,IJSIR,2,db/journals/ijsir/ijsir6.html#LudwigD15,https://doi.org/10.4018/IJSIR.2015040102 +Amine Rahmani,Privacy Preserving Through Fireworks Algorithm Based Model for Image Perturbation in Big Data.,2015,6,IJSIR,3,db/journals/ijsir/ijsir6.html#RahmaniAHRB15,https://doi.org/10.4018/IJSIR.2015070103 +Bishnu Prasad De,Design of Optimal CMOS Inverter for Symmetric Switching Characteristics Using Firefly Algorithm with Wavelet Mutation.,2014,5,IJSIR,2,db/journals/ijsir/ijsir5.html#DeKMG14,https://doi.org/10.4018/ijsir.2014040103 +Cédric Leboucher,A Swarm Intelligence Method Combined to Evolutionary Game Theory Applied to the Resources Allocation Problem.,2012,3,IJSIR,2,db/journals/ijsir/ijsir3.html#LeboucherCSM12,https://doi.org/10.4018/jsir.2012040102 +Hongwei Mo,Image Segmentation Based on Bacterial Foraging and FCM Algorithm.,2011,2,IJSIR,3,db/journals/ijsir/ijsir2.html#MoY11,https://doi.org/10.4018/jsir.2011070102 +Rafael Martí,Scatter Search and Path Relinking : A Tutorial on the Linear Arrangement Problem.,2011,2,IJSIR,2,db/journals/ijsir/ijsir2.html#MartiPDCG11,https://doi.org/10.4018/jsir.2011040101 +Miltiadis Alamaniotis,Application of Fireworks Algorithm in Gamma-Ray Spectrum Fitting for Radioisotope Identification.,2015,6,IJSIR,2,db/journals/ijsir/ijsir6.html#AlamaniotisCT15,https://doi.org/10.4018/IJSIR.2015040105 +Andrei Lihu,De novo Motif Prediction using the Fireworks Algorithm.,2015,6,IJSIR,3,db/journals/ijsir/ijsir6.html#LihuH15,https://doi.org/10.4018/IJSIR.2015070102 +Donatella Giuliani,A Grayscale Segmentation Approach Using the Firefly Algorithm and the Gaussian Mixture Model.,2018,9,IJSIR,1,db/journals/ijsir/ijsir9.html#Giuliani18,https://doi.org/10.4018/IJSIR.2018010103 +Takuya Shindo,Analysis of the Dynamical Characteristics of the Firefly Algorithm.,2017,8,IJSIR,4,db/journals/ijsir/ijsir8.html#ShindoXKJ17,https://doi.org/10.4018/IJSIR.2017100102 +Kevin M. Passino,Honey Bee Swarm Cognition: Decision-Making Performance and Adaptation.,2010,1,IJSIR,2,db/journals/ijsir/ijsir1.html#Passino10a,https://doi.org/10.4018/jsir.2010040105 +Gomaa Zaki El-Far,Design of Robust Approach for Failure Detection in Dynamic Control Systems.,2011,2,IJSIR,1,db/journals/ijsir/ijsir2.html#El-Far11,https://doi.org/10.4018/jsir.2011010102 +Suman Kumar Saha,A Novel Firefly Algorithm for Optimal Linear Phase FIR Filter Design.,2013,4,IJSIR,2,db/journals/ijsir/ijsir4.html#SahaKMG13,https://doi.org/10.4018/jsir.2013040102 +Andreas Janecek,Swarm Intelligence for Non-Negative Matrix Factorization.,2011,2,IJSIR,4,db/journals/ijsir/ijsir2.html#JanecekT11,https://doi.org/10.4018/jsir.2011100102 +Sergey Sakulin,Web Page Interface Optimization Based on Nature-Inspired Algorithms.,2018,9,IJSIR,2,db/journals/ijsir/ijsir9.html#SakulinASS18,https://doi.org/10.4018/IJSIR.2018040103 +M. K. Marichelvam,Performance Comparison of Cuckoo Search Algorithm to Solve the Hybrid Flow Shop Scheduling Benchmark Problems with Makespan Criterion.,2016,7,IJSIR,2,db/journals/ijsir/ijsir7.html#MarichelvamT16,https://doi.org/10.4018/IJSIR.2016040101 +Hadj Ahmed Bouarara,A New Swarm Intelligence Technique of Artificial Haemostasis System for Suspicious Person Detection with Visual Result Mining.,2015,6,IJSIR,4,db/journals/ijsir/ijsir6.html#BouararaHA15,https://doi.org/10.4018/IJSIR.2015100102 +Yuhui Shi,An Optimization Algorithm Based on Brainstorming Process.,2011,2,IJSIR,4,db/journals/ijsir/ijsir2.html#Shi11,https://doi.org/10.4018/IJSIR.2011100103 +Abdeslam Kadrani,Particle Swarm Optimization to Design Ideotypes for Sustainable Fruit Production Systems.,2012,3,IJSIR,2,db/journals/ijsir/ijsir3.html#KadraniSQGL12,https://doi.org/10.4018/jsir.2012040101 +Jing Liu 0006,Minimum Span Frequency Assignment Based on a Multiagent Evolutionary Algorithm.,2011,2,IJSIR,3,db/journals/ijsir/ijsir2.html#LiuLZZL11,https://doi.org/10.4018/jsir.2011070103 +Han Huang,Running-time Analysis of Ant System Algorithms with Upper-bound Comparison.,2017,8,IJSIR,4,db/journals/ijsir/ijsir8.html#HuangWZLH17,https://doi.org/10.4018/IJSIR.2017100101 +Lokesh Kumar Panwar,Binary Fireworks Algorithm Based Thermal Unit Commitment.,2015,6,IJSIR,2,db/journals/ijsir/ijsir6.html#PanwarKK15,https://doi.org/10.4018/IJSIR.2015040104 +Tabitha L. James,Path Relinking with Multi-Start Tabu Search for the Quadratic Assignment Problem.,2011,2,IJSIR,2,db/journals/ijsir/ijsir2.html#JamesR11,https://doi.org/10.4018/jsir.2011040104 +Prashant Upadhyay,Collective Animal Behaviour Based Optimization Algorithm for IIR System Identification Problem.,2014,5,IJSIR,1,db/journals/ijsir/ijsir5.html#UpadhyayKMG14,https://doi.org/10.4018/ijsir.2014010101 +Yijun Yang,City Group Optimization: An Optimizer for Continuous Problems.,2016,7,IJSIR,3,db/journals/ijsir/ijsir7.html#YangD16,https://doi.org/10.4018/IJSIR.2016070101 +Carmelo J. A. Bastos Filho,Multi-Objective Fish School Search.,2015,6,IJSIR,1,db/journals/ijsir/ijsir6.html#FilhoG15,https://doi.org/10.4018/ijsir.2015010102 +Yanmin Liu,An Improved PSO with Small-World Topology and Comprehensive Learning.,2014,5,IJSIR,2,db/journals/ijsir/ijsir5.html#LiuN14,https://doi.org/10.4018/ijsir.2014040102 +Alexandre de Vasconcelos Cardoso,Co-Design System for Template Matching Using Dedicated Co-Processor and Cuckoo Search.,2018,9,IJSIR,1,db/journals/ijsir/ijsir9.html#CardosoTNM18,https://doi.org/10.4018/IJSIR.2018010104 +Robert G. Reynolds,Using Virtual Worlds to Facilitate the Exploration of Ancient Landscapes.,2013,4,IJSIR,2,db/journals/ijsir/ijsir4.html#ReynoldsVCOS13,https://doi.org/10.4018/jsir.2013040103 +Goran Klepac,Customer Profiling in Complex Analytical Environments Using Swarm Intelligence Algorithms.,2016,7,IJSIR,3,db/journals/ijsir/ijsir7.html#Klepac16,https://doi.org/10.4018/IJSIR.2016070103 +Antons Rebguns,A Theoretical Framework for Estimating Swarm Success Probability Using Scouts.,2010,1,IJSIR,4,db/journals/ijsir/ijsir1.html#RebgunsSAK10,https://doi.org/10.4018/jsir.2010100102 +Manjunath Patel Gowdru Chandrashekarappa,Multi-Objective Optimization of Squeeze Casting Process using Evolutionary Algorithms.,2016,7,IJSIR,1,db/journals/ijsir/ijsir7.html#Chandrashekarappa16,https://doi.org/10.4018/IJSIR.2016010103 +Mohammad Majid al-Rifaie,Cognitive Bare Bones Particle Swarm Optimisation with Jumps.,2016,7,IJSIR,1,db/journals/ijsir/ijsir7.html#al-RifaieB16,https://doi.org/10.4018/IJSIR.2016010101 +P. K. Roy,Optimal Power Flow with TCSC and TCPS Modeling using Craziness and Turbulent Crazy Particle Swarm Optimization.,2010,1,IJSIR,3,db/journals/ijsir/ijsir1.html#RoyGT10,https://doi.org/10.4018/jsir.2010070103 +Diogo L. da Silva,Artificial Bee Colony Optimization for Feature Selection of Traffic Sign Recognition.,2017,8,IJSIR,2,db/journals/ijsir/ijsir8.html#SilvaSF17,https://doi.org/10.4018/IJSIR.2017040104 +Li-Minn Ang,Utilizing Social Insect-Based Communities for Routing in Network-based Sensor Systems.,2016,7,IJSIR,4,db/journals/ijsir/ijsir7.html#AngSZ16,https://doi.org/10.4018/IJSIR.2016100103 +Pawel Paduch,How Ants Can Efficiently Solve Generalized Watchman Route Problem.,2011,2,IJSIR,3,db/journals/ijsir/ijsir2.html#PaduchS11,https://doi.org/10.4018/jsir.2011070101 +Cibu K. Varghese,Structural Identification Based on Transient Power Flows using Particle Swarm Optimization.,2012,3,IJSIR,4,db/journals/ijsir/ijsir3.html#VargheseS12,https://doi.org/10.4018/jsir.2012100103 +Kevin M. Passino,Modeling and Cohesiveness Analysis of Midge Swarms.,2013,4,IJSIR,4,db/journals/ijsir/ijsir4.html#Passino13,https://doi.org/10.4018/ijsir.2013100101 +Ibrahim Aljarah,A Scalable MapReduce-enabled Glowworm Swarm Optimization Approach for High Dimensional Multimodal Functions.,2016,7,IJSIR,1,db/journals/ijsir/ijsir7.html#AljarahL16,https://doi.org/10.4018/IJSIR.2016010102 +Hadj Ahmed Bouarara,A Fireworks Algorithm for Modern Web Information Retrieval with Visual Results Mining.,2015,6,IJSIR,3,db/journals/ijsir/ijsir6.html#BouararaHAR15,https://doi.org/10.4018/IJSIR.2015070101 +Hadi Nobahari,A Multi-Objective Gravitational Search Algorithm Based on Non-Dominated Sorting.,2012,3,IJSIR,3,db/journals/ijsir/ijsir3.html#NobahariNS12,https://doi.org/10.4018/jsir.2012070103 +Heting Cao,Supply Chain Inventory Coordination under Uncertain Demand via Combining Monte Carlo Simulation and Fitness Inheritance PSO.,2015,6,IJSIR,1,db/journals/ijsir/ijsir6.html#CaoZ15,https://doi.org/10.4018/ijsir.2015010101 +Xiangyin Zhang,Design of Multi-Criteria PI Controller Using Particle Swarm Optimization for Multiple UAVs Close Formation.,2010,1,IJSIR,2,db/journals/ijsir/ijsir1.html#ZhangDSW10,https://doi.org/10.4018/jsir.2010040101 +William M. Spears,Biases in Particle Swarm Optimization.,2010,1,IJSIR,2,db/journals/ijsir/ijsir1.html#SpearsGS10,https://doi.org/10.4018/IJSIR.2010040103 +Daniel Hein,Reinforcement Learning with Particle Swarm Optimization Policy (PSO-P) in Continuous State and Action Spaces.,2016,7,IJSIR,3,db/journals/ijsir/ijsir7.html#HeinHRU16,https://doi.org/10.4018/IJSIR.2016070102 +T. V. Vijay Kumar,Distributed Query Plan Generation using Particle Swarm Optimization.,2013,4,IJSIR,3,db/journals/ijsir/ijsir4.html#KumarKS13,https://doi.org/10.4018/ijsir.2013070104 +Adamu Murtala Zungeru,Termite-Hill: From Natural to Artificial Termites in Sensor Networks.,2012,3,IJSIR,4,db/journals/ijsir/ijsir3.html#ZungeruAS12,https://doi.org/10.4018/jsir.2012100101 +B. Venkateswara Rao,A Computational Comparison of Swarm Optimization Techniques for Optimal Load Shedding under the presence of Unified Power Flow Controller to Avoid Voltage Instability.,2014,5,IJSIR,4,db/journals/ijsir/ijsir5.html#RaoK14,https://doi.org/10.4018/ijsir.2014100102 +Ying Lin,Optimizing Power Electronic Circuit Design with Uniform Search Range: An Orthogonal Learning Particle Swarm Optimization Approach with Predictive Solution Strategy.,2014,5,IJSIR,3,db/journals/ijsir/ijsir5.html#LinZZ14,https://doi.org/10.4018/ijsir.2014070103 +Wen-jing Gao,Computational Intelligence in Used Products Retrieval and Reproduction.,2013,4,IJSIR,1,db/journals/ijsir/ijsir4.html#GaoXM13,https://doi.org/10.4018/jsir.2013010104 +Nazim Fatès,A Robust Scheme for Aggregating Quasi-Blind Robots in an Active Environment.,2012,3,IJSIR,3,db/journals/ijsir/ijsir3.html#FatesV12,https://doi.org/10.4018/jsir.2012070105 +Hadj Ahmed Bouarara,BHA2: Bio-inspired Algorithm and Automatic Summarisation for Detecting Different Types of Plagiarism.,2017,8,IJSIR,1,db/journals/ijsir/ijsir8.html#BouararaHR17,https://doi.org/10.4018/IJSIR.2017010102 +Sotirios K. Goudos,Particle Swarm Optimization as Applied to Electromagnetic Design Problems.,2018,9,IJSIR,2,db/journals/ijsir/ijsir9.html#GoudosZB18,https://doi.org/10.4018/IJSIR.2018040104 +Yuri Marchetti Tavares,Tracking Patterns with Particle Swarm Optimization and Genetic Algorithms.,2017,8,IJSIR,2,db/journals/ijsir/ijsir8.html#TavaresNM17,https://doi.org/10.4018/IJSIR.2017040103 +Jiarui Zhou,A Local Best Particle Swarm Optimization Based on Crown Jewel Defense Strategy.,2015,6,IJSIR,1,db/journals/ijsir/ijsir6.html#ZhouYLZJ15,https://doi.org/10.4018/ijsir.2015010103 +Shi Cheng,Experimental Study on Boundary Constraints Handling in Particle Swarm Optimization: From Population Diversity Perspective.,2011,2,IJSIR,3,db/journals/ijsir/ijsir2.html#ChengSQ11,https://doi.org/10.4018/jsir.2011070104 +Deepak Dawar,A Differential Evolution Based Multiclass Vehicle Detector and Classifier for Urban Environments.,2017,8,IJSIR,3,db/journals/ijsir/ijsir8.html#DawarL17,https://doi.org/10.4018/IJSIR.2017070102 +Asma Khadhraoui,A New Hybrid Distributed Double Guided Genetic Swarm Algorithm for Optimization and Constraint Reasoning: Case of Max-CSPs.,2012,3,IJSIR,2,db/journals/ijsir/ijsir3.html#KhadhraouiB12,https://doi.org/10.4018/jsir.2012040104 +Ke Ding,Attract-Repulse Fireworks Algorithm and its CUDA Implementation Using Dynamic Parallelism.,2015,6,IJSIR,2,db/journals/ijsir/ijsir6.html#DingT15,https://doi.org/10.4018/IJSIR.2015040101 +Volodymyr Shylo,Path Relinking Scheme for the Max-Cut Problem within Global Equilibrium Search.,2011,2,IJSIR,2,db/journals/ijsir/ijsir2.html#ShyloS11,https://doi.org/10.4018/jsir.2011040103 +Shi Cheng,Population Diversity of Particle Swarm Optimizer Solving Single and Multi-Objective Problems.,2012,3,IJSIR,4,db/journals/ijsir/ijsir3.html#ChengSQ12,https://doi.org/10.4018/jsir.2012100102 +Ying Tan 0002,Introduction to Fireworks Algorithm.,2013,4,IJSIR,4,db/journals/ijsir/ijsir4.html#TanYZD13,https://doi.org/10.4018/ijsir.2013100103 +Komla A. Folly,An Improved Population-Based Incremental Learning Algorithm.,2013,4,IJSIR,1,db/journals/ijsir/ijsir4.html#Folly13,https://doi.org/10.4018/jsir.2013010102 +Mahamed G. H. Omran,An Adaptive Population-based Simplex Method for Continuous Optimization.,2016,7,IJSIR,4,db/journals/ijsir/ijsir7.html#OmranC16,https://doi.org/10.4018/IJSIR.2016100102 +Khoa H. Truong,Hybrid Mean-Variance Mapping Optimization for Non-Convex Economic Dispatch Problems.,2017,8,IJSIR,4,db/journals/ijsir/ijsir8.html#TruongVSV17,https://doi.org/10.4018/IJSIR.2017100103 +Haihuang Huang,Hypercube-Based Crowding Differential Evolution with Neighborhood Mutation for Multimodal Optimization.,2018,9,IJSIR,2,db/journals/ijsir/ijsir9.html#HuangJYX18,https://doi.org/10.4018/IJSIR.2018040102 +Mohammad Ali Abido,Oscillation Damping Enhancement via Coordinated Design of PSS and FACTS-Based Stabilizers in a Multi-Machine Power System Using PSO.,2010,1,IJSIR,3,db/journals/ijsir/ijsir1.html#AbidoB10,https://doi.org/10.4018/jsir.2010070101 +Shi Cheng,A Study of Normalized Population Diversity in Particle Swarm Optimization.,2013,4,IJSIR,1,db/journals/ijsir/ijsir4.html#ChengSQ13,https://doi.org/10.4018/jsir.2013010101 +Ksh. Krishna Devi,Comparison of Design and Content Features of North-Eastern Hill University (NEHU) and Mizoram University (MZU) Websites: A Study.,2016,9,World Digital Libraries,1,db/journals/wdl/wdl9.html#Devi16,https://doi.org/10.18329/09757597/2016/9102 +N. Balakrishnan 0001,Editorial.,2010,3,World Digital Libraries,2,db/journals/wdl/wdl3.html#000110a,https://doi.org/10.3233/WDL-120060 +Faisal Mustafa,A Bibliometric Study on World Digital Libraries: An International Journal.,2015,8,World Digital Libraries,2,db/journals/wdl/wdl8.html#Mustafa15,https://doi.org/10.18329/09757597/2015/8205 +,Forthcoming Events.,2014,7,World Digital Libraries,1,db/journals/wdl/wdl7.html#X14a,https://doi.org/10.3233/WDL-120118 +Michael Seadle,Editorial.,2014,7,World Digital Libraries,1,db/journals/wdl/wdl7.html#Seadle14,https://doi.org/10.3233/WDL-120110 +Michael Seadle,Editorial.,2014,7,World Digital Libraries,2,db/journals/wdl/wdl7.html#Seadle15,https://doi.org/10.3233/WDL-120119 +Monika Gupta,Analysis of WISER Value of National Libraries' Websites in Asia.,2017,10,World Digital Libraries,2,db/journals/wdl/wdl10.html#Gupta17,https://doi.org/10.18329/09757597/2017/10208 +Margam Madhusudhan,Content Evaluation of Indian Institutes of Technology Library Websites in India.,2012,5,World Digital Libraries,2,db/journals/wdl/wdl5.html#Madhusudhan12,https://doi.org/10.3233/WDL-120087 +Monica Sharma,Editorial Board of Digital Library Journals: a social network analysis approach.,2010,3,World Digital Libraries,2,db/journals/wdl/wdl3.html#SharmaU10,https://doi.org/10.3233/WDL-120062 +Mehdi Dadkhah,The Game of Hacking Academic Websites.,2016,9,World Digital Libraries,2,db/journals/wdl/wdl9.html#DadkhahLB16,https://doi.org/10.18329/09757597/2016/9210 +G. H. Hemantha Kumar,India's Contribution to Ranking Web of World Repositories: a case study.,2011,4,World Digital Libraries,2,db/journals/wdl/wdl4.html#KumarSRS11,https://doi.org/10.3233/WDL-120079 +Rohit Chawla,Agent-based web intelligent tutoring system.,2010,3,World Digital Libraries,2,db/journals/wdl/wdl3.html#ChawlaC10,https://doi.org/10.3233/WDL-120064 +Anna Kaushik,Perceptions of Library and Information Science Professionals Towards Massive Open Online Course: A Survey.,2015,8,World Digital Libraries,2,db/journals/wdl/wdl8.html#Kaushik15a,https://doi.org/10.18329/09757597/2015/8203 +Abdullah Abrizah,Piloting an institutional repository at a researchintensive university: strategies for content recruitment and the role of the library.,2010,3,World Digital Libraries,1,db/journals/wdl/wdl3.html#Abrizah10,https://doi.org/10.3233/WDL-120052 +Leila Fernandez,Promoting Open Digital Scholarship: A Canadian Library Perspective.,2012,5,World Digital Libraries,2,db/journals/wdl/wdl5.html#FernandezNS12,https://doi.org/10.3233/WDL-120091 +Cobi Falconer,"Project Naming: what makes it a ""good digital collection""?",2010,3,World Digital Libraries,2,db/journals/wdl/wdl3.html#Falconer10,https://doi.org/10.3233/WDL-120061 +Anderson A. Ferreira,Disambiguating Author Names using Minimum Bibliographic Information.,2014,7,World Digital Libraries,1,db/journals/wdl/wdl7.html#FerreiraGL14,https://doi.org/10.3233/WDL-120115 +Annelise Mark Pejtersen,A work-centred approach to evaluation of a digital library: annotation system for knowledge sharing in collaborative work.,2008,1,World Digital Libraries,1,db/journals/wdl/wdl1.html#PejtersenHA08,https://doi.org/10.3233/WDL-120012 +Chandan Misra,A new framework to preserve Tagore songs.,2010,3,World Digital Libraries,1,db/journals/wdl/wdl3.html#MisraBB10,https://doi.org/10.3233/WDL-120055 +Michael Seadle,Editorial.,2017,10,World Digital Libraries,2,db/journals/wdl/wdl10.html#Seadle17a, +Elena Maceviciute,Education for digital libraries: library management perspective.,2011,4,World Digital Libraries,1,db/journals/wdl/wdl4.html#Maceviciute11,https://doi.org/10.3233/WDL-120074 +Mudasir Khazer,Contribution of SAARC Nations towards World Digital Library (WDL).,2013,6,World Digital Libraries,2,db/journals/wdl/wdl6.html#KhazerSQ13,https://doi.org/10.3233/WDL-120107 +Zahid Ashraf Wani,Open Courseware Repositories: An Analysis of Content Diversity and Visibility.,2014,7,World Digital Libraries,1,db/journals/wdl/wdl7.html#WaniA14,https://doi.org/10.3233/WDL-120113 +,News.,2011,4,World Digital Libraries,1,db/journals/wdl/wdl4.html#X11,https://doi.org/10.3233/WDL-120077 +Plato L. Smith II,Diatomscapes exposé: how faculty and digital librarians collaborate to promote and preserve the passion of research (CP3R) for digital future.,2010,3,World Digital Libraries,1,db/journals/wdl/wdl3.html#Smith10,https://doi.org/10.3233/WDL-120056 +Michael Seadle,Editorial.,2015,8,World Digital Libraries,2,db/journals/wdl/wdl8.html#Seadle15b,http://content.iospress.com/articles/world-digital-libraries-an-international-journal/wdl8200 +Rama Nand Malviya,Usages of On-Line Journals vs. Printed Journals in NCR Libraries.,2012,5,World Digital Libraries,2,db/journals/wdl/wdl5.html#Malviya12,https://doi.org/10.3233/WDL-120088 +Shantanu Ganguly,Digital Information: order or anarchy?,2010,3,World Digital Libraries,1,db/journals/wdl/wdl3.html#Ganguly10a,https://doi.org/10.3233/WDL-120057 +Rabindra Kumar Mahapatra,Information Management in New Millennium: opportunities and challenges for library professionals.,2009,2,World Digital Libraries,1,db/journals/wdl/wdl2.html#Mahapatra09,https://doi.org/10.3233/WDL-120036 +Md Roknuzzaman,A Framework for Knowledge Management Education in Digital Library Learning.,2011,4,World Digital Libraries,2,db/journals/wdl/wdl4.html#RoknuzzamanHA11,https://doi.org/10.3233/WDL-120081 +Parvin S. L. Kureshi,Design and Development of Library Website of Homi Bhabha Centre for Science Education: An Experimental Study.,2017,10,World Digital Libraries,1,db/journals/wdl/wdl10.html#KureshiYP17,https://doi.org/10.18329/09757597/2017/10104 +Md Nasiruddin,Vision 2021 and public libraries: an action plan to allow Bangladesh to go digital.,2011,4,World Digital Libraries,1,db/journals/wdl/wdl4.html#Nasiruddin11,https://doi.org/10.3233/WDL-120073 +Suprabhat Das,Anwesan: A Search Engine for Bengali Literary Works.,2012,5,World Digital Libraries,1,db/journals/wdl/wdl5.html#DasBM12,https://doi.org/10.3233/WDL-120003 +Shantanu Ganguly,Issue editorial.,2010,3,World Digital Libraries,1,db/journals/wdl/wdl3.html#Ganguly10,https://doi.org/10.3233/WDL-120049 +Michael Seadle,Editorial.,2013,6,World Digital Libraries,1,db/journals/wdl/wdl6.html#Seadle13,https://doi.org/10.3233/WDL-120095 +Abhijit Chakrabarti,Growth and Development of Indian Institutional Digital Repositories in OpenDOAR: A Bird's Eye View.,2017,10,World Digital Libraries,2,db/journals/wdl/wdl10.html#Chakrabarti17,https://doi.org/10.18329/09757597/2017/10206 +Zahid Ashraf Wani,Citation Analysis in Open Access World: A Case Study of Health Science Open Access Repositories.,2015,8,World Digital Libraries,1,db/journals/wdl/wdl8.html#WaniS15,https://doi.org/10.18329/09757597/2015/8104 +Michael Seadle,Editorial.,2015,8,World Digital Libraries,1,db/journals/wdl/wdl8.html#Seadle15a, +N. Balakrishnan 0001,Editorial.,2009,2,World Digital Libraries,1,db/journals/wdl/wdl2.html#000109,https://doi.org/10.3233/WDL-120030 +A. Balasubramanian,Recognition-free search in graphics stream of PDF.,2008,1,World Digital Libraries,1,db/journals/wdl/wdl1.html#BalasubramanianJ08,https://doi.org/10.3233/WDL-120016 +Gobinda Chowdhury,Carbon footprint of the knowledge industry and ways to reduce it.,2011,4,World Digital Libraries,1,db/journals/wdl/wdl4.html#ChowdhuryF11,https://doi.org/10.3233/WDL-120071 +Suneel Kumar Bhat,Usage and Attitude of Teacher Educators Towards Educational Technology: A Study.,2016,9,World Digital Libraries,2,db/journals/wdl/wdl9.html#Bhat16,https://doi.org/10.18329/09757597/2016/9207 +Madhu G. Nadig,Text Analytics Applied to Indian Politics.,2017,10,World Digital Libraries,1,db/journals/wdl/wdl10.html#NadigBM17,https://doi.org/10.18329/09757597/2017/10102 +Michael Seadle,Viewpoints on digital library issues.,2008,1,World Digital Libraries,1,db/journals/wdl/wdl1.html#SeadleV08,https://doi.org/10.3233/WDL-120011 +Reinhard Altenhöner,The German National Library and digital preservation: challenges and opportunities.,2010,3,World Digital Libraries,1,db/journals/wdl/wdl3.html#Altenhoner10,https://doi.org/10.3233/WDL-120050 +Heather Brown,Who guards the guards: meeting the challenges of digital preservation.,2009,2,World Digital Libraries,1,db/journals/wdl/wdl2.html#Brown09,https://doi.org/10.3233/WDL-120034 +Md Nasiruddin,E-Resources Practice at Some Leading Private University Libraries in Bangladesh: User Attitude Survey Towards Digital Bangladesh.,2012,5,World Digital Libraries,2,db/journals/wdl/wdl5.html#NasiruddinII12,https://doi.org/10.3233/WDL-120092 +Kim H. Veltman,The Semantic Web: past and future.,2009,2,World Digital Libraries,1,db/journals/wdl/wdl2.html#Veltman09,https://doi.org/10.3233/WDL-120033 +Michael Seadle,Editorial.,2013,6,World Digital Libraries,2,db/journals/wdl/wdl6.html#Seadle13a,https://doi.org/10.3233/WDL-120102 +Anil Kumar,Digital Library Architecture.,2008,1,World Digital Libraries,2,db/journals/wdl/wdl1.html#Kumar08,https://doi.org/10.3233/WDL-120027 +Paojangul Misao,Online Citation Tools: A Comparative Study.,2017,10,World Digital Libraries,2,db/journals/wdl/wdl10.html#MisaoM17,https://doi.org/10.18329/09757597/2017/10209 +Surjeet Mishra,Ontology-based visualization and navigation in an online digital library.,2010,3,World Digital Libraries,1,db/journals/wdl/wdl3.html#MishraG10,https://doi.org/10.3233/WDL-120053 +Jean-Marc Comment,The digital repository of the Swiss Federal Archives: a case study.,2011,4,World Digital Libraries,1,db/journals/wdl/wdl4.html#Comment11,https://doi.org/10.3233/WDL-120075 +N. Balakrishnan 0001,Editorial.,2008,1,World Digital Libraries,2,db/journals/wdl/wdl1.html#000108a,https://doi.org/10.3233/WDL-120020 +Michael Seadle,Editorial.,2016,9,World Digital Libraries,2,db/journals/wdl/wdl9.html#Seadle16a, +Margam Madhusudhan,Evaluation of Indian Institutes of Management Library Websites in India.,2013,6,World Digital Libraries,1,db/journals/wdl/wdl6.html#MadhusudhanA13,https://doi.org/10.3233/WDL-120100 +Debal C. Kar,Digital Library of India: An Initiative for the Preservation and Dissemination of the National Heritage and Rare Books and Manuscripts Collection.,2016,9,World Digital Libraries,1,db/journals/wdl/wdl9.html#Kar16,https://doi.org/10.18329/09757597/2016/9104 +Muhammad Rafiq,Perceptions of South Asian LIS community towards open source software adoption in libraries.,2010,3,World Digital Libraries,2,db/journals/wdl/wdl3.html#RafiqA10,https://doi.org/10.3233/WDL-120063 +Dennis Nicholson,HILT IV: subject interoperability through building and embedding pilot terminology Web services.,2009,2,World Digital Libraries,1,db/journals/wdl/wdl2.html#NicholsonJM09,https://doi.org/10.3233/WDL-120031 +Priti Rani Rathour,Comparison of open source software for digital libraries.,2011,4,World Digital Libraries,1,db/journals/wdl/wdl4.html#RathourS11,https://doi.org/10.3233/WDL-120072 +,Forthcoming Events.,2013,6,World Digital Libraries,2,db/journals/wdl/wdl6.html#X13,https://doi.org/10.3233/WDL-120109 +Gobinda Chowdhury,Viewpoints on digital library issues: A brief overview of the ongoing EU project SHAMAN: Sustaining Heritage Access through Multivalent ArchiviNg.,2008,1,World Digital Libraries,2,db/journals/wdl/wdl1.html#ChowdhuryN08,https://doi.org/10.3233/WDL-120021 +Rakesh Kumar Bhatt,March towards digitization of information resources in India: issues and initiatives.,2008,1,World Digital Libraries,2,db/journals/wdl/wdl1.html#Bhatt08,https://doi.org/10.3233/WDL-120026 +Michael Seadle,Editorial.,2012,5,World Digital Libraries,1,db/journals/wdl/wdl5.html#Seadle12,https://doi.org/10.3233/WDL-120001 +Heike Görzig,Integrating the WPIM Process Model with OAIS Information Packages for Data Management Planning Support for Research Data.,2015,8,World Digital Libraries,2,db/journals/wdl/wdl8.html#GorzigBEVH15,https://doi.org/10.18329/09757597/2015/8201 +Margam Madhusudhan,Use of 3G Services by Research Scholars in Central Universities in India: A Study.,2015,8,World Digital Libraries,1,db/journals/wdl/wdl8.html#Madhusudhan15,https://doi.org/10.18329/09757597/2015/8103 +Mohammad Ishaq Lone,Digital Library of Kashmiri Willow Wicker Items: A Small Step towards Preservation of Culture.,2014,7,World Digital Libraries,2,db/journals/wdl/wdl7.html#LoneW15,https://doi.org/10.3233/WDL-120120 +Binu Chaudhuri,Global e-library services in Novartis Knowledge Center: meeting worldwide information needs at Novartis.,2010,3,World Digital Libraries,2,db/journals/wdl/wdl3.html#ChaudhuriHJ10,https://doi.org/10.3233/WDL-120066 +Eld Zierau,Cross-institutional cooperation on a shared bit repository.,2010,3,World Digital Libraries,1,db/journals/wdl/wdl3.html#ZierauK10,https://doi.org/10.3233/WDL-120051 +Rakesh Kumar Gupta,Free/open source software for library and information management.,2010,3,World Digital Libraries,2,db/journals/wdl/wdl3.html#GuptaL10,https://doi.org/10.3233/WDL-120067 +Shantanu Ganguly,Building Digital Libraries: a how-to-do-it manual (Number 153).,2009,2,World Digital Libraries,2,db/journals/wdl/wdl2.html#Ganguly09,https://doi.org/10.3233/WDL-120045 +Gayatri Doctor,A simulation study for a number of simultaneous users of an institutional knowledge repository system.,2011,4,World Digital Libraries,1,db/journals/wdl/wdl4.html#Doctor11,https://doi.org/10.3233/WDL-120070 +P. K. Bhattacharya,Editorial.,2011,4,World Digital Libraries,2,db/journals/wdl/wdl4.html#Bhattacharya11,https://doi.org/10.3233/WDL-120078 +Margam Madhusudhan,Online Public Access Catalogues of Selected University Libraries in Delhi: An Evaluative Study.,2014,7,World Digital Libraries,1,db/journals/wdl/wdl7.html#MadhusudhanA14,https://doi.org/10.3233/WDL-120112 +Rabishankar Giri,The Effect of Facebook Adoption in an Academic Library.,2014,7,World Digital Libraries,2,db/journals/wdl/wdl7.html#GiriKS15,https://doi.org/10.3233/WDL-120123 +R. K. Bhatt,Imperativeness of e-learning in a digital environment in an organization.,2010,3,World Digital Libraries,2,db/journals/wdl/wdl3.html#Bhatt10,https://doi.org/10.3233/WDL-120068 +Michele Artini,Aggregative Digital Library Systems in the DRIVER Infrastructure.,2009,2,World Digital Libraries,2,db/journals/wdl/wdl2.html#ArtiniCCMMP09,https://doi.org/10.3233/WDL-120042 +Lalitha Poluru,Building image repository of Indian cultural and heritage materials adopting Dublin Core metadata standards.,2009,2,World Digital Libraries,2,db/journals/wdl/wdl2.html#Poluru09,https://doi.org/10.3233/WDL-120043 +,Book Alert.,2014,7,World Digital Libraries,1,db/journals/wdl/wdl7.html#X14,https://doi.org/10.3233/WDL-120116 +Michael Seadle,Editorial.,2017,10,World Digital Libraries,1,db/journals/wdl/wdl10.html#Seadle17, +Dimple Patel,Ontology-based Model for Organizational Knowledge Transactions.,2016,9,World Digital Libraries,2,db/journals/wdl/wdl9.html#PatelT16,https://doi.org/10.18329/09757597/2016/9206 +Heike Görzig,Analysing and Representing Data Management Dimensions in Research and Innovation Actions.,2016,9,World Digital Libraries,1,db/journals/wdl/wdl9.html#GorzigGEVMH16,https://doi.org/10.18329/09757597/2016/9101 +D. Vinay Kumar,URLs Link Rot: Implications for Electronic Publishing.,2015,8,World Digital Libraries,1,db/journals/wdl/wdl8.html#KumarKP15,https://doi.org/10.18329/09757597/2015/8105 +Pradip Das,Promoting Online Databases/Electronic Resources: A Practical Experience.,2013,6,World Digital Libraries,1,db/journals/wdl/wdl6.html#Das13,https://doi.org/10.3233/WDL-120099 +Anil Zafar,Knowledge Management Practices at Goethe Institute Libraries Worldwide.,2013,6,World Digital Libraries,2,db/journals/wdl/wdl6.html#Zafar13,https://doi.org/10.3233/WDL-120104 +S. M. Dhawan,Open Access to Knowledge and Information: scholarly literature and digital initiatives - the South Asian scenario.,2008,1,World Digital Libraries,1,db/journals/wdl/wdl1.html#Dhawan08,https://doi.org/10.3233/WDL-120018 +Feng Luan,A survey of digital preservation strategies.,2010,3,World Digital Libraries,2,db/journals/wdl/wdl3.html#LuanNM10,https://doi.org/10.3233/WDL-120065 +Hasina Afroz,Moving Towards the Next-Generation Library: BRAC University Experience.,2014,7,World Digital Libraries,1,db/journals/wdl/wdl7.html#Afroz14,https://doi.org/10.3233/WDL-120111 +Anna Kaushik,Content Analysis of Political Party Websites in India.,2015,8,World Digital Libraries,1,db/journals/wdl/wdl8.html#Kaushik15,https://doi.org/10.18329/09757597/2015/8102 +Abubakar Mohammed,University Library Websites in Nigeria: An Analysis of Content.,2016,9,World Digital Libraries,2,db/journals/wdl/wdl9.html#MohammedGU16,https://doi.org/10.18329/09757597/2016/9209 +Fayaz Ahmad Lone,Open Access Journals in the Field of Education: An Informative Study.,2014,7,World Digital Libraries,2,db/journals/wdl/wdl7.html#Lone15,https://doi.org/10.3233/WDL-120122 +Gobinda G. Chowdhury,MEDLIS: Model for Evaluation of Digital Libraries and Information Services.,2008,1,World Digital Libraries,1,db/journals/wdl/wdl1.html#ChowdhuryMP08,https://doi.org/10.3233/WDL-120015 +Raj Kumar Bhardwaj,Development of Online Legal Information System for Indian Environment: A Survey of Librarians' Perspective.,2015,8,World Digital Libraries,2,db/journals/wdl/wdl8.html#BhardwajM15,https://doi.org/10.18329/09757597/2015/8202 +Ahmed Taha,E-research: a new genre of digital library services.,2008,1,World Digital Libraries,1,db/journals/wdl/wdl1.html#Taha08,https://doi.org/10.3233/WDL-120013 +,News.,2011,4,World Digital Libraries,2,db/journals/wdl/wdl4.html#X11a,https://doi.org/10.3233/WDL-120084 +M. Singson,Reaffirming Pareto 80/20 rule in Indian Academic Consortia.,2014,7,World Digital Libraries,1,db/journals/wdl/wdl7.html#SingsonH14,https://doi.org/10.3233/WDL-120114 +M. G. Sreekumar,Open Access: the new frontier connecting the learning commons through hassle-free and seamless scholarly communication.,2008,1,World Digital Libraries,1,db/journals/wdl/wdl1.html#Sreekumar08,https://doi.org/10.3233/WDL-120017 +Jean-Marc Comment,Digitizing cultural heritage and history archives.,2008,1,World Digital Libraries,1,db/journals/wdl/wdl1.html#Comment08,https://doi.org/10.3233/WDL-120014 +Balbir Kaur Pandher,Conservation and Preservation of Archives: A Case Study of Punjab Digital Library.,2012,5,World Digital Libraries,1,db/journals/wdl/wdl5.html#Pandher12,https://doi.org/10.3233/WDL-120007 +Ratna Sanyal,DLworm: a system for workflow and repository management for digital libraries.,2008,1,World Digital Libraries,2,db/journals/wdl/wdl1.html#SanyalRGV08,https://doi.org/10.3233/WDL-120024 +Ganesh Ramdas Sanap,Reengineering of College Library Services through Web Technology.,2017,10,World Digital Libraries,1,db/journals/wdl/wdl10.html#Sanap17,https://doi.org/10.18329/09757597/2017/10105 +Eld Zierau,Cross-Institutional Cooperation on a Shared Bit Repository.,2013,6,World Digital Libraries,1,db/journals/wdl/wdl6.html#ZierauK13,https://doi.org/10.3233/WDL-120098 +Rakesh Kumar Bhatt,E-Resources @ UGC-Infonet Digital Library Consortium: a breakthrough.,2009,2,World Digital Libraries,2,db/journals/wdl/wdl2.html#Bhatt09,https://doi.org/10.3233/WDL-120044 +Nirmali Chakraborty,Knowledge Management through Academic Portal: A Case Study of Bodhidroom E-learning Portal.,2013,6,World Digital Libraries,2,db/journals/wdl/wdl6.html#ChakrabortyL13,https://doi.org/10.3233/WDL-120103 +Vijendra Kumar,Role of NISCAIR in Professional Development on Digital Libraries.,2017,10,World Digital Libraries,2,db/journals/wdl/wdl10.html#KumarG17,https://doi.org/10.18329/09757597/2017/10210 +Michael Seadle,Editorial.,2012,5,World Digital Libraries,2,db/journals/wdl/wdl5.html#Seadle12a,https://doi.org/10.3233/WDL-120086 +Jakob Heide Petersen,Information provision to knowledge creation: Danish digital libraries strategy.,2009,2,World Digital Libraries,1,db/journals/wdl/wdl2.html#PetersenT09,https://doi.org/10.3233/WDL-120035 +Carola Carstens,Information search behaviour in the German Education Index.,2011,4,World Digital Libraries,1,db/journals/wdl/wdl4.html#CarstensRW11,https://doi.org/10.3233/WDL-120076 +Ahmed Taha,E-research Support Desk: A New Genre in E-reference Services.,2013,6,World Digital Libraries,2,db/journals/wdl/wdl6.html#Taha13,https://doi.org/10.3233/WDL-120105 +Michael Seadle,Editorial.,2016,9,World Digital Libraries,1,db/journals/wdl/wdl9.html#Seadle16, +N. Balakrishnan 0001,Editorial.,2009,2,World Digital Libraries,2,db/journals/wdl/wdl2.html#000109a,https://doi.org/10.3233/WDL-120039 +,Forthcoming events.,2011,4,World Digital Libraries,2,db/journals/wdl/wdl4.html#X11b,https://doi.org/10.3233/WDL-120085 +Anna Kaushik,Libraries Perception Towards Cloud Computing: A Survey.,2013,6,World Digital Libraries,1,db/journals/wdl/wdl6.html#Kaushik13,https://doi.org/10.3233/WDL-120097 +Md Nasiruddin,Innovative Libraries: Transforming the Lives of the Pavement Dwellers in Dhaka City.,2012,5,World Digital Libraries,2,db/journals/wdl/wdl5.html#Nasiruddin12,https://doi.org/10.3233/WDL-120089 +M. Veeramani,Analysis of Information Technology Application in Academic Libraries in Kuwait.,2011,4,World Digital Libraries,2,db/journals/wdl/wdl4.html#VeeramaniV11,https://doi.org/10.3233/WDL-120080 +Hiranmay Ghosh,Using ontology for building distributed digital libraries with multimedia contents.,2008,1,World Digital Libraries,2,db/journals/wdl/wdl1.html#GhoshHC08,https://doi.org/10.3233/WDL-120022 +Ashraf Amrou,Freelib: a peer-to-peer-based digital library architecture.,2008,1,World Digital Libraries,2,db/journals/wdl/wdl1.html#AmrouMZ08,https://doi.org/10.3233/WDL-120023 +Achintya K. Mandal,An Efficient Approach for E-Content Management and Delivery in Digital Library.,2012,5,World Digital Libraries,1,db/journals/wdl/wdl5.html#MandalR12,https://doi.org/10.3233/WDL-120002 +Anindita Paul,Implementation and Use of Web Analytics for Academic Library Websites.,2013,6,World Digital Libraries,2,db/journals/wdl/wdl6.html#PaulE13,https://doi.org/10.3233/WDL-120106 +Paul Nieuwenhuysen,Improving Information Discovery in Digital Libraries.,2011,4,World Digital Libraries,2,db/journals/wdl/wdl4.html#Nieuwenhuysen11,https://doi.org/10.3233/WDL-120082 +M. Vijayakumar,Use of library services in technological changing environment: a survey.,2009,2,World Digital Libraries,2,db/journals/wdl/wdl2.html#VijayakumarK09,https://doi.org/10.3233/WDL-120041 +Kristiina Hormia-Poutanen,Digital library infrastructure in Finland - political decisions empowering development.,2009,2,World Digital Libraries,1,db/journals/wdl/wdl2.html#Hormia-Poutanen09,https://doi.org/10.3233/WDL-120032 +N. Balakrishnan 0001,Editorial.,2008,1,World Digital Libraries,1,db/journals/wdl/wdl1.html#000108,https://doi.org/10.3233/WDL-120010 +Heather Brown,The Interconnected Web: A Paradigm for Managing Digital Preservation.,2013,6,World Digital Libraries,1,db/journals/wdl/wdl6.html#Brown13,https://doi.org/10.3233/WDL-120096 +Ramadan Elaiess,Designing and Evaluating an Integrated Digital Library System for the National Oil Corporation in Libya.,2012,5,World Digital Libraries,1,db/journals/wdl/wdl5.html#Elaiess12,https://doi.org/10.3233/WDL-120006 +Margam Madhusudhan,Use of Web-based Online Public Access Catalogue by the Foreign Students at the University of Delhi.,2012,5,World Digital Libraries,2,db/journals/wdl/wdl5.html#Madhusudhan12a,https://doi.org/10.3233/WDL-120090 +Abdul Waheed,Collection Management of e-books: A Developing Country Perspective.,2012,5,World Digital Libraries,1,db/journals/wdl/wdl5.html#Waheed12,https://doi.org/10.3233/WDL-120005 +Heather Brown,Convergence and Preservation in the Digital Age.,2016,9,World Digital Libraries,1,db/journals/wdl/wdl9.html#Brown16,https://doi.org/10.18329/09757597/2016/9105 +N. Balakrishnan 0001,Editorial.,2010,3,World Digital Libraries,1,db/journals/wdl/wdl3.html#000110,https://doi.org/10.3233/WDL-120048 +Michael Seadle,Copyright and risk: how to judge what to do.,2008,1,World Digital Libraries,2,db/journals/wdl/wdl1.html#Seadle08,https://doi.org/10.3233/WDL-120025 +Anna Kaushik,Perceptions of LIS Professionals about Data Curation.,2017,10,World Digital Libraries,2,db/journals/wdl/wdl10.html#Kaushik17,https://doi.org/10.18329/09757597/2017/10207 +M. Madhusudhan,Use of Mobile Devices for Improving the Research Work by Research Scholars of the University of Delhi and University of Hyderabad: A Study.,2015,8,World Digital Libraries,2,db/journals/wdl/wdl8.html#Madhusudhan15a,https://doi.org/10.18329/09757597/2015/8204 +Iisakki Kosonen,Using Automatic Calibration with Microscopic Traffic Simulation.,2008,12,JACIII,2,db/journals/jaciii/jaciii12.html#Kosonen08,https://doi.org/10.20965/jaciii.2008.p0106 +Toru Yamaguchi,Safe Mobility System Cooperating with Human in Collaboration with Cyber City.,2004,8,JACIII,4,db/journals/jaciii/jaciii8.html#YamaguchiKJKH04,https://doi.org/10.20965/jaciii.2004.p0403 +Yuyi Shang,An Interactive System with Facial Expression Recognition.,2005,9,JACIII,6,db/journals/jaciii/jaciii9.html#ShangSK05,https://doi.org/10.20965/jaciii.2005.p0637 +Takashi Hasuike,Flexible Route Planning for Sightseeing with Fuzzy Random and Fatigue-Dependent Satisfactions.,2014,18,JACIII,2,db/journals/jaciii/jaciii18.html#HasuikeKTT14,https://doi.org/10.20965/jaciii.2014.p0190 +Tetsuhisa Oda,Editorial: Special Issue on Selected Papers FSS2002.,2003,7,JACIII,1,db/journals/jaciii/jaciii7.html#Oda03,https://doi.org/10.20965/jaciii.2003.p0001 +Benyamin Kusumoputro,Recognizing Odor Mixtures Using Optimized Fuzzy Neural Network Through Genetic Algorithms.,2005,9,JACIII,3,db/journals/jaciii/jaciii9.html#KusumoputroA05,https://doi.org/10.20965/jaciii.2005.p0290 +Alfons Schuster,The Omnipresent Computing Menace to Information Society.,2011,15,JACIII,7,db/journals/jaciii/jaciii15.html#SchusterB11,https://doi.org/10.20965/jaciii.2011.p0786 +Francisco P. Romero,FzMail: Using FIS-CRM for E-mail Classification.,2007,11,JACIII,1,db/journals/jaciii/jaciii11.html#RomeroOG07,https://doi.org/10.20965/jaciii.2007.p0040 +Dongming Li,Research on Cross-Correlative Blur Length Estimation Algorithm in Motion Blur Image.,2016,20,JACIII,1,db/journals/jaciii/jaciii20.html#LiSSZ16,https://doi.org/10.20965/jaciii.2016.p0155 +Tatsuya Higuchi,Fuzzy c-Regression Models for Fuzzy Numbers on a Graph.,2016,20,JACIII,4,db/journals/jaciii/jaciii20.html#HiguchiME16,https://doi.org/10.20965/jaciii.2016.p0521 +Ya-Fen Ye,Robust and Sparse LP-Norm Support Vector Regression.,2017,21,JACIII,6,db/journals/jaciii/jaciii21.html#YeYSLC17,https://doi.org/10.20965/jaciii.2017.p0989 +Ekawit Nantajeewarawat,Expanding Transformation: A Basis for Correctness Verification of Rewriting Rules.,2007,11,JACIII,5,db/journals/jaciii/jaciii11.html#NantajeewarawatAK07,https://doi.org/10.20965/jaciii.2007.p0478 +Saki Kawakubo,How Does High Frequency Risk Hedge Activity Have an Affect on Underlying Market?: Analysis by Artificial Market Model.,2014,18,JACIII,4,db/journals/jaciii/jaciii18.html#KawakuboIY14,https://doi.org/10.20965/jaciii.2014.p0558 +Sadaaki Miyamoto,Metaheuristic Algorithms for Container Loading Problems: Framework and Knowledge Utilization.,2007,11,JACIII,1,db/journals/jaciii/jaciii11.html#MiyamotoEHH07,https://doi.org/10.20965/jaciii.2007.p0051 +Barbara Gonsior,Impacts of Multimodal Feedback on Efficiency of Proactive Information Retrieval from Task-Related HRI.,2012,16,JACIII,2,db/journals/jaciii/jaciii16.html#GonsiorLMSSZBKTWW12,https://doi.org/10.20965/jaciii.2012.p0313 +Tsuyoshi Mizuguchi,Task Allocation in Multistate Systems.,2010,14,JACIII,6,db/journals/jaciii/jaciii14.html#MizuguchiSK10,https://doi.org/10.20965/jaciii.2010.p0574 +DongKyu Sohn,Optimization Method RasID-GA for Numerical Constrained Optimization Problems.,2007,11,JACIII,5,db/journals/jaciii/jaciii11.html#SohnMHH07,https://doi.org/10.20965/jaciii.2007.p0469 +Noritaka Shigei,Effective Multiple Vector Quantization for Image Compression.,2007,11,JACIII,10,db/journals/jaciii/jaciii11.html#ShigeiMMM07,https://doi.org/10.20965/jaciii.2007.p1189 +Norie Kanzaki,New Method to Assist Discrimination of Liver Diseases by Spherical SOM with Mahalanobis Distance.,2012,16,JACIII,1,db/journals/jaciii/jaciii16.html#KanzakiK12,https://doi.org/10.20965/jaciii.2012.p0055 +Gangchen Hua,A Robust Visual-Feature-Extraction Method for Simultaneous Localization and Mapping in Public Outdoor Environment.,2015,19,JACIII,1,db/journals/jaciii/jaciii19.html#HuaH15,https://doi.org/10.20965/jaciii.2015.p0011 +Mokhtar Beldjehem,A Granular Framework for Recognition of Arabic Handwriting.,2009,13,JACIII,5,db/journals/jaciii/jaciii13.html#Beldjehem09,https://doi.org/10.20965/jaciii.2009.p0512 +Abdollah A. Afjeh,Advanced Concept Offshore Wind Turbine Development.,2014,18,JACIII,5,db/journals/jaciii/jaciii18.html#AfjehALNN14,https://doi.org/10.20965/jaciii.2014.p0728 +Yasuo Kudo,A Parallel Computation Method for Heuristic Attribute Reduction Using Reduced Decision Tables.,2013,17,JACIII,3,db/journals/jaciii/jaciii17.html#KudoM13,https://doi.org/10.20965/jaciii.2013.p0371 +Kenichiro Hayashi,Realization of PID Control by Fuzzy Inference and its Application to Hybrid Control.,1999,3,JACIII,6,db/journals/jaciii/jaciii3.html#HayashiOS99a,https://doi.org/10.20965/jaciii.1999.p0491 +Syoji Kobashi,Fuzzy Visual Hull Algorithm for Three-Dimensional Shape Reconstruction of TKA Implants from X-Ray Cone-Beam Images.,2010,14,JACIII,2,db/journals/jaciii/jaciii14.html#KobashiSH10,https://doi.org/10.20965/jaciii.2010.p0122 +Longsheng Wei,Objective Image Quality Assessment Based on Saliency Map.,2016,20,JACIII,2,db/journals/jaciii/jaciii20.html#WeiLWLL16,https://doi.org/10.20965/jaciii.2016.p0205 +Daijin Kim,IRIS Data Classification Using Tolerant Rough Sets1.,2000,4,JACIII,5,db/journals/jaciii/jaciii4.html#KimB00,https://doi.org/10.20965/jaciii.2000.p0327 +Jin-Hua She,Construction of Kinect-Based Measuring and Monitoring System for the Degree of Employee's Fatigue.,2014,18,JACIII,1,db/journals/jaciii/jaciii18.html#SheNIO14,https://doi.org/10.20965/jaciii.2014.p0056 +Katsuhiro Honda,Visualization of Non-Euclidean Relational Data by Robust Linear Fuzzy Clustering Based on FCMdd Framework.,2013,17,JACIII,2,db/journals/jaciii/jaciii17.html#HondaYNI13,https://doi.org/10.20965/jaciii.2013.p0312 +Isamu Okada,Effects of Information Diffusion in Online Word-of-Mouth Communication Among Consumers.,2011,15,JACIII,2,db/journals/jaciii/jaciii15.html#OkadaY11,https://doi.org/10.20965/jaciii.2011.p0198 +Chih-Hung Wu,Fuzzy Control of Target Approaching and Object-Grabbing for a Four-Wheeled Vision-Based Mobile Robot.,2013,17,JACIII,2,db/journals/jaciii/jaciii17.html#WuLW13,https://doi.org/10.20965/jaciii.2013.p0343 +Nguyen Thanh Thuy,Some Preliminary Results on the Stableness of Extended F-rule Systems.,2003,7,JACIII,3,db/journals/jaciii/jaciii7.html#ThuyHY03,https://doi.org/10.20965/jaciii.2003.p0252 +Boris Stilman,Linguistic Geometry: The Age of Maturity.,2010,14,JACIII,6,db/journals/jaciii/jaciii14.html#StilmanYU10,https://doi.org/10.20965/jaciii.2010.p0684 +Dan Jin,Stabilization of Networked Interconnected Systems.,2017,21,JACIII,2,db/journals/jaciii/jaciii21.html#JinYZ17,https://doi.org/10.20965/jaciii.2017.p0251 +Kudret Demirli,GMP Based Fuzzy Reasoning: An Application to Sonar Based Navigation.,2003,7,JACIII,1,db/journals/jaciii/jaciii7.html#DemirliTM03,https://doi.org/10.20965/jaciii.2003.p0053 +Nariaki Nishino,Bounded Rationality on Consumer Purchase Decisions and Product Diffusion Under Network Externalities: A Study Using Agent-Based Simulation and Experiments with Human Subjects.,2011,15,JACIII,2,db/journals/jaciii/jaciii15.html#NishinoOU11,https://doi.org/10.20965/jaciii.2011.p0212 +Katsuya Fujiwara,Using Finger Dexterity in Elderly and Younger People to Detect Cognitive Decline.,2017,21,JACIII,2,db/journals/jaciii/jaciii21.html#FujiwaraFM17,https://doi.org/10.20965/jaciii.2017.p0330 +Wangyong He,Precise Synchronization Control for Biaxial System via a Cross-Iterative PID Neural Networks Control Algorithm.,2017,21,JACIII,2,db/journals/jaciii/jaciii21.html#HeZLP17,https://doi.org/10.20965/jaciii.2017.p0271 +Michael Negnevitsky,Preventing Large-Scale Emergencies in Modern Power Systems: AI Approach.,2014,18,JACIII,5,db/journals/jaciii/jaciii18.html#NegnevitskyTR14,https://doi.org/10.20965/jaciii.2014.p0714 +Hui Zhang,Combining the Global and Partial Information for Distance-Based Time Series Classification and Clustering.,2006,10,JACIII,1,db/journals/jaciii/jaciii10.html#ZhangHLH06,https://doi.org/10.20965/jaciii.2006.p0069 +Robert Kerwin C. Billones,Design and Development of an Artificial Intelligent System for Audio-Visual Cancer Breast Self-Examination.,2016,20,JACIII,1,db/journals/jaciii/jaciii20.html#BillonesDS16,https://doi.org/10.20965/jaciii.2016.p0124 +Labiba Souici-Meslati,A Hybrid Neuro-Symbolic Approach for Arabic Handwritten Word Recognition.,2006,10,JACIII,1,db/journals/jaciii/jaciii10.html#Souici-MeslatiS06,https://doi.org/10.20965/jaciii.2006.p0017 +Chang-Wook Han,Advanced Genetic Algorithms Based on Adaptive Partitioning Method.,2007,11,JACIII,6,db/journals/jaciii/jaciii11.html#HanN07,https://doi.org/10.20965/jaciii.2007.p0677 +Yoshiyuki Yabuuchi,Fuzzy Autocorrelation Model with Confidence Intervals of Fuzzy Random Data.,2014,18,JACIII,2,db/journals/jaciii/jaciii18.html#YabuuchiW14,https://doi.org/10.20965/jaciii.2014.p0197 +Takeshi Inaba,A Genetic-Algorithm-Based Temporal Subtraction for Chest Radiographs.,2009,13,JACIII,3,db/journals/jaciii/jaciii13.html#InabaHSMC09,https://doi.org/10.20965/jaciii.2009.p0289 +Zhentao Liu,A Novel Micro-Pressure Power Generation System Based on Super Capacitor Energy Storage and PI Controller.,2016,20,JACIII,7,db/journals/jaciii/jaciii20.html#LiuWLZZ16,https://doi.org/10.20965/jaciii.2016.p1051 +Gyorgy Persa,CogInfoCom Systems from an Interaction Perspective - A Pilot Application for EtoCom -.,2012,16,JACIII,2,db/journals/jaciii/jaciii16.html#PersaCB12,https://doi.org/10.20965/jaciii.2012.p0297 +László T. Kóczy,Editorial: Complimentary Address.,2017,21,JACIII,1,db/journals/jaciii/jaciii21.html#Koczy17, +Xiaorong Yang,Asymmetric Quantitative Model of Coexceedances and its Applications to the Study of Contagion Mechanism of the Financial Crisis.,2015,19,JACIII,3,db/journals/jaciii/jaciii19.html#YangCH15,https://doi.org/10.20965/jaciii.2015.p0389 +Masahiro Inuiguchi,Improving Rough Set Rule-Based Classification by Supplementary Rules.,2015,19,JACIII,6,db/journals/jaciii/jaciii19.html#InuiguchiW15,https://doi.org/10.20965/jaciii.2015.p0747 +Nipon Theera-Umpon,Leeway Prediction of Oceanic Disastrous Target via Support Vector Regression.,2004,8,JACIII,6,db/journals/jaciii/jaciii8.html#Theera-UmponB04,https://doi.org/10.20965/jaciii.2004.p0606 +Yasushi Kohata,High-Speed Maximum Power Point Tracker for Photovoltaic Systems Using Online Learning Neural Networks.,2010,14,JACIII,6,db/journals/jaciii/jaciii14.html#KohataYK10,https://doi.org/10.20965/jaciii.2010.p0677 +Yuichiro Toda,Evolution Strategy Sampling Consensus for Robust Estimator.,2016,20,JACIII,5,db/journals/jaciii/jaciii20.html#TodaK16,https://doi.org/10.20965/jaciii.2016.p0788 +Saori Kawauchi,Knowledge Expansion Support by Related Search Keyword Generation Based on Wikipedia Category and Pointwise Mutual Information.,2012,16,JACIII,2,db/journals/jaciii/jaciii16.html#KawauchiTN12,https://doi.org/10.20965/jaciii.2012.p0247 +Koichiro Yamauchi 0001,Incremental Learning on a Budget and its Application to Quick Maximum Power Point Tracking of Photovoltaic Systems.,2014,18,JACIII,4,db/journals/jaciii/jaciii18.html#Yamauchi14,https://doi.org/10.20965/jaciii.2014.p0682 +Yasufumi Takama,Concept of Humatronics and its Application to Human-Robot Communication Support Under TV Watching Environment.,2008,12,JACIII,6,db/journals/jaciii/jaciii12.html#TakamaNIMH08,https://doi.org/10.20965/jaciii.2008.p0494 +Ong Sing Goh,Embodied Conversational Agents for H5N1 Pandemic Crisis.,2007,11,JACIII,3,db/journals/jaciii/jaciii11.html#GohFWD07,https://doi.org/10.20965/jaciii.2007.p0282 +Daniel J. Cox,Precision Machining with Micro-Scale Vertical Machining Center.,2006,10,JACIII,2,db/journals/jaciii/jaciii10.html#CoxNPLLHH06,https://doi.org/10.20965/jaciii.2006.p0187 +Keisuke Yamazaki,On the Optimal Hyperparameter Behavior in Bayesian Clustering.,2015,19,JACIII,6,db/journals/jaciii/jaciii19.html#Yamazaki15,https://doi.org/10.20965/jaciii.2015.p0818 +Yutaka Hatakeyama,Detection Algorithm for Real Surveillance Cameras Using Geographic Information.,2008,12,JACIII,1,db/journals/jaciii/jaciii12.html#HatakeyamaMH08,https://doi.org/10.20965/jaciii.2008.p0004 +Yusuke Manabe,Improved Estimation of Embedding Parameters of Nonlinear Time Series by Structural Learning of Neural Network with Fuzzy Regularizer.,2007,11,JACIII,6,db/journals/jaciii/jaciii11.html#ManabeC07,https://doi.org/10.20965/jaciii.2007.p0600 +Yukinobu Hoshino,Effective Use of Learning Knowledge by FEERL.,2003,7,JACIII,1,db/journals/jaciii/jaciii7.html#HoshinoK03,https://doi.org/10.20965/jaciii.2003.p0006 +Xin Li,Determining the Optimal Number of Clusters by an Extended RPCL Algorithm.,1999,3,JACIII,6,db/journals/jaciii/jaciii3.html#LiML99,https://doi.org/10.20965/jaciii.1999.p0467 +Tomohiro Shirakawa,Construction of a Molecular Learning Network.,2013,17,JACIII,6,db/journals/jaciii/jaciii17.html#ShirakawaS13,https://doi.org/10.20965/jaciii.2013.p0913 +Sawako Nakajima,The Possibility and Challenges for Deaf-Blind Individuals to Enjoy Films in Theater.,2017,21,JACIII,2,db/journals/jaciii/jaciii21.html#NakajimaOITMY17,https://doi.org/10.20965/jaciii.2017.p0350 +Fang Wang,Finite-Time Consensus of Double-Integrator Multi-Agent Systems with Time-Varying Directed Topologies.,2016,20,JACIII,2,db/journals/jaciii/jaciii20.html#WangCH16,https://doi.org/10.20965/jaciii.2016.p0254 +Yuto Omae,Feature Selection Algorithm Considering Trial and Individual Differences for Machine Learning of Human Activity Recognition.,2017,21,JACIII,5,db/journals/jaciii/jaciii21.html#OmaeT17,https://doi.org/10.20965/jaciii.2017.p0813 +Satoshi Kurihara,Adaptive Reinforcement Learning Integrating Exploitation-and Exploration-oriented Learning.,1999,3,JACIII,6,db/journals/jaciii/jaciii3.html#KuriharaOS99,https://doi.org/10.20965/jaciii.1999.p0474 +Hiroyuki Hatakeyama,Genetic Network Programming with Actor-Critic.,2007,11,JACIII,1,db/journals/jaciii/jaciii11.html#HatakeyamaMHH07,https://doi.org/10.20965/jaciii.2007.p0079 +Nureize Arbaiy,Multi-Attribute Decision Making in Contractor Selection Under Hybrid Uncertainty.,2011,15,JACIII,4,db/journals/jaciii/jaciii15.html#ArbaiyW11,https://doi.org/10.20965/jaciii.2011.p0465 +Jin Zhou,A Study of Double-Deck Elevator Systems Using Genetic Network Programming with Reinforcement Learning.,2009,13,JACIII,1,db/journals/jaciii/jaciii13.html#ZhouYMSHM09,https://doi.org/10.20965/jaciii.2009.p0035 +Tuan A. Duong,Space Invariant Independent Component Analysis and ENose for Detection of Selective Chemicals in an Unknown Environment.,2007,11,JACIII,10,db/journals/jaciii/jaciii11.html#DuongRD07,https://doi.org/10.20965/jaciii.2007.p1197 +Shingo Nakamura,A Hybrid Learning Strategy for Real Hardware of Swing-Up Pendulum.,2007,11,JACIII,8,db/journals/jaciii/jaciii11.html#NakamuraSH07,https://doi.org/10.20965/jaciii.2007.p0972 +Huu Luat Tran,Design of a MIMO Levitation Controller for Maglev Transportation System.,2017,21,JACIII,4,db/journals/jaciii/jaciii21.html#TranK17,https://doi.org/10.20965/jaciii.2017.p0591 +Furqan Asghar,Simulation Study on Battery State of Charge Estimation Using Kalman Filter.,2016,20,JACIII,6,db/journals/jaciii/jaciii20.html#AsgharTKR16,https://doi.org/10.20965/jaciii.2016.p0861 +Zhihong Peng,Ground Target Tracking and Collision Avoidance for UAV Based Guidance Vector Field.,2015,19,JACIII,2,db/journals/jaciii/jaciii19.html#PengC15,https://doi.org/10.20965/jaciii.2015.p0277 +Amir Hajiloo,Multi-Objective Optimal Fuzzy Fractional-Order PID Controller Design.,2014,18,JACIII,3,db/journals/jaciii/jaciii18.html#HajilooX14,https://doi.org/10.20965/jaciii.2014.p0262 +DongKyu Sohn,Adaptive Random Search with Intensification and Diversification Combined with Genetic Algorithm.,2006,10,JACIII,6,db/journals/jaciii/jaciii10.html#SohnHMHH06,https://doi.org/10.20965/jaciii.2006.p0921 +Takayuki Kawaura,Clinical Nurses' Awareness Structure of Delirium - An Analysis of Spontaneous Utterances in a Group Interview by DEMATEL Method.,2014,18,JACIII,6,db/journals/jaciii/jaciii18.html#KawauraS14,https://doi.org/10.20965/jaciii.2014.p1013 +Jing Hu,Fuzzy Cognitive Research on Factors Influencing Technological Innovation - From Path Dependence Perspective.,2016,20,JACIII,4,db/journals/jaciii/jaciii20.html#HuZW16,https://doi.org/10.20965/jaciii.2016.p0543 +Jeong-Yon Shim,Expert-Knowledge Gating Mechanism in the Hierarchical Modular System.,2004,8,JACIII,4,db/journals/jaciii/jaciii8.html#Shim04,https://doi.org/10.20965/jaciii.2004.p0410 +Kaoru Hirota,Implementation of Fuzzy Legal Expert System FLES.,2000,4,JACIII,6,db/journals/jaciii/jaciii4.html#HirotaXTY00,https://doi.org/10.20965/jaciii.2000.p0421 +Dun-Yong Lu,Interpretable Fuzzy Rules Acquisition of Coupled System Using Interactive Genetic Algorithms.,2007,11,JACIII,5,db/journals/jaciii/jaciii11.html#LuO07,https://doi.org/10.20965/jaciii.2007.p0522 +Liran Li,A Highly Efficient and Reliable Power Scheme Using Improved Push-Pull Forward Converter for Heavy-Duty Train Applications.,2016,20,JACIII,2,db/journals/jaciii/jaciii20.html#LiHLQP16,https://doi.org/10.20965/jaciii.2016.p0342 +Hiroyuki Masuta,An Integrated Perceptual System of Different Perceptual Elements for an Intelligent Robot.,2010,14,JACIII,7,db/journals/jaciii/jaciii14.html#MasutaK10,https://doi.org/10.20965/jaciii.2010.p0770 +Lörinc Márton,Sliding Mode Robot Control with Friction and Payload Estimation.,2004,8,JACIII,5,db/journals/jaciii/jaciii8.html#MartonL04,https://doi.org/10.20965/jaciii.2004.p0553 +Tetsuya Toyota,Visualization of the Internet News Based on Efficient Self-Organizing Map Using Restricted Region Search and Dimensionality Reduction.,2012,16,JACIII,2,db/journals/jaciii/jaciii16.html#ToyotaN12,https://doi.org/10.20965/jaciii.2012.p0219 +Cao Thang,Applying Fuzzy Logic and Neural Network to Rheumatism Treatment in Oriental Medicine.,2007,11,JACIII,1,db/journals/jaciii/jaciii11.html#ThangCHK07,https://doi.org/10.20965/jaciii.2007.p0004 +Xiang Li,Dynamical Model of Walking Transition Considering Nonlinear Friction with Floor.,2016,20,JACIII,6,db/journals/jaciii/jaciii20.html#LiIMMY16,https://doi.org/10.20965/jaciii.2016.p0974 +Kohei Miyata,Proposal of Wearable Multiremote Controller Using Head-Tracking.,2011,15,JACIII,6,db/journals/jaciii/jaciii15.html#MiyataKYS11,https://doi.org/10.20965/jaciii.2011.p0731 +Bin Li,Gain-Scheduled for Aerial Vehicle Autopilot Design Using Fixed-Structure Synthesis.,2018,22,JACIII,3,db/journals/jaciii/jaciii22.html#LiLTY18,https://doi.org/10.20965/jaciii.2018.p0316 +Yuki Matsui,A Model for Generating Facial Expressions Using Virtual Emotion Based on Simple Recurrent Network.,2010,14,JACIII,5,db/journals/jaciii/jaciii14.html#MatsuiKKNI10,https://doi.org/10.20965/jaciii.2010.p0453 +,Prof. Yasufumi Takama: Editorial: Opening Address.,2017,21,JACIII,1,db/journals/jaciii/jaciii21.html#X17, +Masataka Tokumaru,Product-Impression Analysis Using Fuzzy C4.5 Decision Tree.,2009,13,JACIII,6,db/journals/jaciii/jaciii13.html#TokumaruM09,https://doi.org/10.20965/jaciii.2009.p0731 +Takahiro Hayashi,Landscape Image Retrieval with Query by Sketch and Icon.,2007,11,JACIII,1,db/journals/jaciii/jaciii11.html#HayashiIO07,https://doi.org/10.20965/jaciii.2007.p0061 +Zhentao Liu,Concept of Fuzzy Atmosfield for Representing Communication Atmosphere and its Application to Humans-Robots Interaction.,2013,17,JACIII,1,db/journals/jaciii/jaciii17.html#Liu0LCDYH13,https://doi.org/10.20965/jaciii.2013.p0003 +Zakarya Zyada,Fuzzy Sensor Fusion for Humanitarian Demining.,2007,11,JACIII,7,db/journals/jaciii/jaciii11.html#ZyadaKMF07,https://doi.org/10.20965/jaciii.2007.p0735 +Jian Ying Zhang,A Qualitative Model for Service Oriented Computing.,2007,11,JACIII,10,db/journals/jaciii/jaciii11.html#ZhangDK07,https://doi.org/10.20965/jaciii.2007.p1209 +Yosuke Furukawa,Context Dependent Automatic Textile Image Annotation Using Networked Knowledge.,2007,11,JACIII,6,db/journals/jaciii/jaciii11.html#FurukawaKST07,https://doi.org/10.20965/jaciii.2007.p0633 +Hiroshi Takahashi,A Study on Guiding an Attention Direction of a Driver by an Ambient Visual Mark.,2014,18,JACIII,6,db/journals/jaciii/jaciii18.html#Takahashi14,https://doi.org/10.20965/jaciii.2014.p0875 +Masaya Nohmi,A Trust Evaluation of Networks Utilizing Matrix Operations Based on t-norms and t-conorms.,2012,16,JACIII,1,db/journals/jaciii/jaciii16.html#NohmiHO12,https://doi.org/10.20965/jaciii.2012.p0154 +Chi-Hyon Oh,Quantification of Multivariate Categorical Data Considering Typicality of Item.,2007,11,JACIII,1,db/journals/jaciii/jaciii11.html#OhHI07,https://doi.org/10.20965/jaciii.2007.p0035 +Shusaku Nishikawa,Guaranteed Cost Output Feedback Control of Fuzzy Systems via LMI Approach.,2010,14,JACIII,6,db/journals/jaciii/jaciii14.html#NishikawaY10,https://doi.org/10.20965/jaciii.2010.p0567 +Kazuki Sakai,Generation of Bystander Robot Actions Based on Analysis of Relative Probability of Human Actions.,2017,21,JACIII,4,db/journals/jaciii/jaciii21.html#SakaiLYI17,https://doi.org/10.20965/jaciii.2017.p0686 +Masaya Yoshikawa,Dedicated Floorplanning Engine Architecture Based on Genetic Algorithm and Evaluation.,2006,10,JACIII,1,db/journals/jaciii/jaciii10.html#YoshikawaT06,https://doi.org/10.20965/jaciii.2006.p0112 +Masashi Okushima,Multi-Agent Transport Simulation Model for Eco-Commuting Promotion Planning.,2011,15,JACIII,7,db/journals/jaciii/jaciii15.html#OkushimaA11,https://doi.org/10.20965/jaciii.2011.p0911 +Genci Capi,Effect of Genetic Encoding on Evolution of Efficient Neural Controllers.,2008,12,JACIII,4,db/journals/jaciii/jaciii12.html#Capi08,https://doi.org/10.20965/jaciii.2008.p0377 +Takahiko Ishikawa,How to Make Programs from Problem Descriptions in the Equivalent Transformation Paradigm.,2003,7,JACIII,3,db/journals/jaciii/jaciii7.html#IshikawaAM03,https://doi.org/10.20965/jaciii.2003.p0260 +Makito Yamashiro,Clustering Algorithm Based on Probabilistic Dissimilarity.,2009,13,JACIII,4,db/journals/jaciii/jaciii13.html#YamashiroEH09,https://doi.org/10.20965/jaciii.2009.p0429 +George Leu,Modeling and Simulation of Road Traffic Behavior: Artificial Drivers with Personality and Emotions.,2013,17,JACIII,6,db/journals/jaciii/jaciii17.html#LeuCA13,https://doi.org/10.20965/jaciii.2013.p0851 +Péter Baranyi,Inference Algorithm Independent SVD Fuzzy Rule Base Complexity Reduction.,2001,5,JACIII,1,db/journals/jaciii/jaciii5.html#BaranyiYYVM01,https://doi.org/10.20965/jaciii.2001.p0022 +Euntai Kim,Moving Genetic Algorithm Based Fuzzy Modeling.,1999,3,JACIII,4,db/journals/jaciii/jaciii3.html#KimLLK99,https://doi.org/10.20965/jaciii.1999.p0320 +Kazuhiko Kawamoto,Hierarchical Bayesian Modeling for Estimating Shared Hidden States with Application to Tracking.,2009,13,JACIII,2,db/journals/jaciii/jaciii13.html#Kawamoto09,https://doi.org/10.20965/jaciii.2009.p0080 +Kentarou Kurashige,"Proposal of Method ""Motion Space"" to Express Movement of Robot.",2012,16,JACIII,6,db/journals/jaciii/jaciii16.html#KurashigeKK12,https://doi.org/10.20965/jaciii.2012.p0704 +Incheon Paik,Recommendation System Using Weighted TF-IDF and Naive Bayes Classifiers on RSS Contents.,2010,14,JACIII,6,db/journals/jaciii/jaciii14.html#PaikM10,https://doi.org/10.20965/jaciii.2010.p0631 +Wei Liu,Weather Recognition of Street Scene Based on Sparse Deep Neural Networks.,2017,21,JACIII,3,db/journals/jaciii/jaciii21.html#LiuYW17,https://doi.org/10.20965/jaciii.2017.p0403 +Makoto Yasuda,Multi-q Extension of Tsallis Entropy Based Fuzzy c-Means Clustering.,2014,18,JACIII,3,db/journals/jaciii/jaciii18.html#YasudaO14,https://doi.org/10.20965/jaciii.2014.p0289 +Nannan Li,Motion Control of 6-DOF Manipulator Based on EtherCAT.,2018,22,JACIII,4,db/journals/jaciii/jaciii22.html#LiMFZLC18,https://doi.org/10.20965/jaciii.2018.p0415 +Shingo Kawahara,An Adaptive Self-Organizing Algorithm with Virtual Connection.,1998,2,JACIII,6,db/journals/jaciii/jaciii2.html#KawaharaS98,https://doi.org/10.20965/jaciii.1998.p0203 +Yoshiyuki Yabuuchi,Fuzzification Methods and Prediction Accuracy of Fuzzy Autocorrelation Model.,2017,21,JACIII,6,db/journals/jaciii/jaciii21.html#Yabuuchi17,https://doi.org/10.20965/jaciii.2017.p1009 +Takashi Miyata,Natural Language Generation for Legal Expert System and Visualization of Generation Process.,1998,2,JACIII,1,db/journals/jaciii/jaciii2.html#MiyataM98,https://doi.org/10.20965/jaciii.1998.p0026 +Isabel S. Jesus,Application of Fractional Calculus in the Control of Heat Systems.,2007,11,JACIII,9,db/journals/jaciii/jaciii11.html#JesusM07,https://doi.org/10.20965/jaciii.2007.p1086 +Shigeyuki Takahara,An Adaptive Tabu Search (ATS) and Other Metaheuristics for a Class of Optimal Allocation Problems.,1999,3,JACIII,1,db/journals/jaciii/jaciii3.html#TakaharaM99,https://doi.org/10.20965/jaciii.1999.p0021 +Shunichi Hattori,Investigation About Applicability of Personal Values for Recommender System.,2012,16,JACIII,3,db/journals/jaciii/jaciii16.html#HattoriT12,https://doi.org/10.20965/jaciii.2012.p0404 +Mitsuru Iwata,Linguistic Expression Generation Model of Subjective Content in a Picture.,1999,3,JACIII,1,db/journals/jaciii/jaciii3.html#IwataO99,https://doi.org/10.20965/jaciii.1999.p0056 +Fengming Ye,Genetic Network Programming with Rules.,2009,13,JACIII,1,db/journals/jaciii/jaciii13.html#YeYMSH09,https://doi.org/10.20965/jaciii.2009.p0016 +TaeSeok Jin,Position Uncertainty Reduction of Mobile Robot Based on DINDs in Intelligent Space.,2008,12,JACIII,6,db/journals/jaciii/jaciii12.html#JinH08,https://doi.org/10.20965/jaciii.2008.p0488 +Yoshifumi Banno,A Study on Deriving a Method for Chromosome Similarities Suitable for the Search Space.,2002,6,JACIII,3,db/journals/jaciii/jaciii6.html#BannoYKST02,https://doi.org/10.20965/jaciii.2002.p0135 +Yuto Omae,Swimming Style Classification Based on Ensemble Learning and Adaptive Feature Value by Using Inertial Measurement Unit.,2017,21,JACIII,4,db/journals/jaciii/jaciii21.html#OmaeKKSSTANESM17,https://doi.org/10.20965/jaciii.2017.p0616 +Takumi Ichimura,A Proposal of Memory and Prediction Based Genetic Algorithm Using Speciation in Dynamic Multimodal Function Optimization.,2011,15,JACIII,8,db/journals/jaciii/jaciii15.html#IchimuraIHTM11,https://doi.org/10.20965/jaciii.2011.p1082 +Takahiro Takeda,Foot Age Estimation System from Walking Dynamics Based on Fuzzy Logic.,2014,18,JACIII,4,db/journals/jaciii/jaciii18.html#TakedaSKKH14,https://doi.org/10.20965/jaciii.2014.p0489 +Toshihiro Akamatsu,Still Corresponding Points Extraction Using a Moving Monocular Camera with a Motion Sensor.,2015,19,JACIII,2,db/journals/jaciii/jaciii19.html#AkamatsuDH15,https://doi.org/10.20965/jaciii.2015.p0319 +Yasufumi Takama,Design of Context Search Engine Based on Analysis of User's Search Intentions.,2016,20,JACIII,6,db/journals/jaciii/jaciii20.html#TakamaZKYC016,https://doi.org/10.20965/jaciii.2016.p0910 +Hidenori Ishihara,Emotional Robotic System with Psychological Model.,1999,3,JACIII,6,db/journals/jaciii/jaciii3.html#IshiharaF99,https://doi.org/10.20965/jaciii.1999.p0479 +Zhengfa Zhu,PSO-SVR-Based Resource Demand Prediction in Cloud Computing.,2016,20,JACIII,2,db/journals/jaciii/jaciii20.html#ZhuPZZH16,https://doi.org/10.20965/jaciii.2016.p0324 +Keisuke Touma,An Influence of Player's Ballot-Weight Changing in Consultation Algorithm.,2013,17,JACIII,5,db/journals/jaciii/jaciii17.html#ToumaETAY13,https://doi.org/10.20965/jaciii.2013.p0707 +Jianchao Han,An Iterative Approach for Fuzzy Clustering Based on Feature Significance.,2007,11,JACIII,10,db/journals/jaciii/jaciii11.html#HanB07,https://doi.org/10.20965/jaciii.2007.p1204 +Wataru Hashimoto,Comparison and Evaluation of Different Cluster Validity Measures Including Their Kernelization.,2009,13,JACIII,3,db/journals/jaciii/jaciii13.html#HashimotoNM09,https://doi.org/10.20965/jaciii.2009.p0204 +Takehisa Onisawa,Editorial: Applications of Soft Computing to Human-centered Information Systems.,1999,3,JACIII,1,db/journals/jaciii/jaciii3.html#OnisawaM99,https://doi.org/10.20965/jaciii.1999.p0001 +Jianming Xu,Extracting Initial Iterative Control Signal Based on Trajectory Primitives Matching and Combining.,2017,21,JACIII,2,db/journals/jaciii/jaciii21.html#XuKW17,https://doi.org/10.20965/jaciii.2017.p0228 +Yoshiyuki Yabuuchi,Fuzzy Autocorrelation Model with Fuzzy Confidence Intervals and its Evaluation.,2016,20,JACIII,4,db/journals/jaciii/jaciii20.html#YabuuchiKW16,https://doi.org/10.20965/jaciii.2016.p0512 +M. Imad Khan,Knowledge Extraction from a Mixed Transfer Function Artificial Neural Network.,2006,10,JACIII,3,db/journals/jaciii/jaciii10.html#KhanFN06,https://doi.org/10.20965/jaciii.2006.p0295 +Weiwei Du,Semi-Supervised Pattern Classification Utilizing Fuzzy Clustering and Nonlinear Mapping of Data.,2007,11,JACIII,9,db/journals/jaciii/jaciii11.html#DuU07a,https://doi.org/10.20965/jaciii.2007.p1159 +Akira Takagi,Semantic Representation for Understanding Meaning Based on Correspondence Between Meanings.,2006,10,JACIII,6,db/journals/jaciii/jaciii10.html#TakagiAIKK06,https://doi.org/10.20965/jaciii.2006.p0876 +Hyo-Byung Jun,Coevolutionary Algorithms for Realization of Intelligent Systems.,1999,3,JACIII,5,db/journals/jaciii/jaciii3.html#JunS99,https://doi.org/10.20965/jaciii.1999.p0418 +Isao Hayashi,Acquisition of Embodied Knowledge on Gesture Motion by Singular Value Decomposition.,2011,15,JACIII,8,db/journals/jaciii/jaciii15.html#HayashiJW11,https://doi.org/10.20965/jaciii.2011.p1011 +Christophe Collet 0002,CapRe: a Gaze Tracking System in Man-machine Interaction.,1998,2,JACIII,3,db/journals/jaciii/jaciii2.html#ColletFG98,https://doi.org/10.20965/jaciii.1998.p0077 +Takayuki Ito,Utility Revision Mechanism Based on User's Subjective Decision Hierarchy for Multiagent-Based Group Decision Support.,1999,3,JACIII,3,db/journals/jaciii/jaciii3.html#ItoS99,https://doi.org/10.20965/jaciii.1999.p0207 +Feng Liu,Stability and Synchronization Control of Fractional-Order Gene Regulatory Network System with Delay.,2017,21,JACIII,1,db/journals/jaciii/jaciii21.html#LiuZWS17,https://doi.org/10.20965/jaciii.2017.p0148 +Hisashi Toyoshima,Spatiotemporal Brain Activity During Hiragana Word Recognition Task.,2011,15,JACIII,3,db/journals/jaciii/jaciii15.html#ToyoshimaYYO11,https://doi.org/10.20965/jaciii.2011.p0357 +Masanori Ito,Intelligent Control for Container Terminal AGV.,1998,2,JACIII,3,db/journals/jaciii/jaciii2.html#ItoZ98,https://doi.org/10.20965/jaciii.1998.p0072 +Been-Chian Chien,Mining Fuzzy Association Rules on Has-A and Is-A Hierarchical Structures.,2007,11,JACIII,4,db/journals/jaciii/jaciii11.html#ChienZW07,https://doi.org/10.20965/jaciii.2007.p0423 +Jenn-Long Liu,Evolving Particle Swarm Optimization Implemented by a Genetic Algorithm.,2008,12,JACIII,3,db/journals/jaciii/jaciii12.html#Liu08,https://doi.org/10.20965/jaciii.2008.p0284 +Wataru Okamoto,An Inference Method for Fuzzy Quantified Natural Language Propositions Based on New Interpretation of Truth Qualification.,2007,11,JACIII,1,db/journals/jaciii/jaciii11.html#OkamotoTII07,https://doi.org/10.20965/jaciii.2007.p0071 +Yusuke Sato,Characteristics Analysis of Two-Dimensional Configuration Using Modified Box-Count Method.,2005,9,JACIII,3,db/journals/jaciii/jaciii9.html#SatoS05,https://doi.org/10.20965/jaciii.2005.p0337 +Mingxing Fang,A Control System for the Ball Mill Grinding Process Based on Model Predictive Control and Equivalent-Input-Disturbance Approach.,2016,20,JACIII,7,db/journals/jaciii/jaciii20.html#FangZQD16,https://doi.org/10.20965/jaciii.2016.p1152 +Reggie C. Gustilo,Machine Vision Support System for Monitoring Water Quality in a Small Scale Tiger Prawn Aquaculture.,2016,20,JACIII,1,db/journals/jaciii/jaciii20.html#GustiloD16,https://doi.org/10.20965/jaciii.2016.p0111 +Thimaporn Phetkaew,Reordering Adaptive Directed Acyclic Graphs for Multiclass Support Vector Machines.,2003,7,JACIII,3,db/journals/jaciii/jaciii7.html#PhetkaewRK03,https://doi.org/10.20965/jaciii.2003.p0315 +Imre J. Rudas,Editorial: Intelligent Engineering Systems.,2000,4,JACIII,4,db/journals/jaciii/jaciii4.html#Rudas00,https://doi.org/10.20965/jaciii.2000.p0237 +Henriette Steiner,Analysis of Parameters of Gait Cycle in Case of Reumathoid Arthritis (A Case Study).,2014,18,JACIII,3,db/journals/jaciii/jaciii18.html#SteinerK14,https://doi.org/10.20965/jaciii.2014.p0324 +Jizhong Xiao,Intelligent Control of a Miniature Climbing Robot.,2004,8,JACIII,3,db/journals/jaciii/jaciii8.html#XiaoXX04,https://doi.org/10.20965/jaciii.2004.p0260 +Zhiqing Jiang,Key Factors of Emerging Luxury Brand Construction: Empirical Case Study of Korloff.,2016,20,JACIII,4,db/journals/jaciii/jaciii20.html#JiangN16,https://doi.org/10.20965/jaciii.2016.p0607 +Akinari Kurosu,Study on Motion of Sight Line of Communication Robot in Standby State.,2017,21,JACIII,4,db/journals/jaciii/jaciii21.html#KurosuH17,https://doi.org/10.20965/jaciii.2017.p0716 +Yasunori Endo,Non Metric Model Based on Rough Set Representation.,2013,17,JACIII,4,db/journals/jaciii/jaciii17.html#EndoHH13,https://doi.org/10.20965/jaciii.2013.p0540 +Masashi Furukawa,©7*Behavior Composed©8* for Artificial Flying Creature.,2011,15,JACIII,7,db/journals/jaciii/jaciii15.html#FurukawaMOWSY11,https://doi.org/10.20965/jaciii.2011.p0838 +Tomonori Karita,Development of a Communication Aid App with iOS Devices to Support Children/Persons with Speech Disabilities Improvement in Obtaining Positioning Information with iBeacon as Near Field Radio Communication Technology.,2017,21,JACIII,2,db/journals/jaciii/jaciii21.html#Karita17,https://doi.org/10.20965/jaciii.2017.p0371 +Yutaka Hatakeyama,Algorithm for Estimation of Thyroid Gland Size in Ultrasonography Images for Extracting Abnormal Thyroid in Medical Practice.,2012,16,JACIII,1,db/journals/jaciii/jaciii16.html#HatakeyamaKNWO12,https://doi.org/10.20965/jaciii.2012.p0087 +Minoru Mukuda,Reliability Optimization Problems Using Adaptive Hybrid Genetic Algorithms.,2004,8,JACIII,4,db/journals/jaciii/jaciii8.html#MukudaYG04,https://doi.org/10.20965/jaciii.2004.p0437 +Hiroshi Mabuchi,Constraint Solving Specializations for Equality on an Interval-Variable Domain.,2007,11,JACIII,2,db/journals/jaciii/jaciii11.html#MabuchiAMI07,https://doi.org/10.20965/jaciii.2007.p0210 +Nicolas Abboud,The Mutate and Spread Metaheuristic.,1998,2,JACIII,2,db/journals/jaciii/jaciii2.html#AbboudS98,https://doi.org/10.20965/jaciii.1998.p0043 +Ratchakoon Pruengkarn,A Review of Data Mining Techniques and Applications.,2017,21,JACIII,1,db/journals/jaciii/jaciii21.html#PruengkarnWF17,https://doi.org/10.20965/jaciii.2017.p0031 +Hugang Han,Controller Designs for a Class of Polynomial Fuzzy Models.,2015,19,JACIII,6,db/journals/jaciii/jaciii19.html#HanH15,https://doi.org/10.20965/jaciii.2015.p0796 +Jianping Jing,Application of Fuzzy Inference Method in Printing Pressure State Expectation System.,2006,10,JACIII,4,db/journals/jaciii/jaciii10.html#JingTY06,https://doi.org/10.20965/jaciii.2006.p0594 +William A. Dembski,The Search for a Search: Measuring the Information Cost of Higher Level Search.,2010,14,JACIII,5,db/journals/jaciii/jaciii14.html#DembskiM10,https://doi.org/10.20965/jaciii.2010.p0475 +Kiyohiko Uehara,Inference with Governing Schemes for Propagation of Fuzzy Convex Constraints Based on alpha-Cuts.,2009,13,JACIII,3,db/journals/jaciii/jaciii13.html#UeharaKH09a,https://doi.org/10.20965/jaciii.2009.p0321 +Mitsunori Mizumachi,Robust Estimation of Sound Source Direction with Deterministic Background Noise and Stochastic Source Dynamics Models.,2010,14,JACIII,2,db/journals/jaciii/jaciii14.html#MizumachiN10,https://doi.org/10.20965/jaciii.2010.p0208 +Heejin Lee,Tracking Control of Variable Structure Using Fuzzy Variable Boundary Layer.,1999,3,JACIII,4,db/journals/jaciii/jaciii3.html#LeeKLKP99,https://doi.org/10.20965/jaciii.1999.p0332 +Changfan Zhang,Demagnetization Faults Robust Detection Method Based on an Adaptive Sliding Mode Observer for PMSM.,2016,20,JACIII,7,db/journals/jaciii/jaciii20.html#ZhangZHSL16,https://doi.org/10.20965/jaciii.2016.p1127 +László Blázovics,Surrounding Robots - A Discrete Localized Solution for the Intruder Problem -.,2014,18,JACIII,3,db/journals/jaciii/jaciii18.html#BlazovicsLF14,https://doi.org/10.20965/jaciii.2014.p0315 +Keun Chang Kwak,Fuzzy Aggregation Method Using Fisherface and Wavelet Decomposition for Face Recognition.,2004,8,JACIII,4,db/journals/jaciii/jaciii8.html#KwakPGC04,https://doi.org/10.20965/jaciii.2004.p0379 +Kouhei Shimizu,A New Electronic Dictionary with Meaning Description of Case Frame.,2005,9,JACIII,3,db/journals/jaciii/jaciii9.html#ShimizuH05,https://doi.org/10.20965/jaciii.2005.p0304 +Heejin Lee,Tracking Control of Variable Structure System Using Variable Boundary Layer.,2001,5,JACIII,6,db/journals/jaciii/jaciii5.html#Lee01,https://doi.org/10.20965/jaciii.2001.p0338 +Gancho Vachkov,Human-Assisted Fuzzy Image Similarity Analysis Based on Information Compression.,2009,13,JACIII,3,db/journals/jaciii/jaciii13.html#Vachkov09,https://doi.org/10.20965/jaciii.2009.p0255 +Béla Pátkai,Analogy Based Methodology for Complex Adaptive Production Network Modelling.,2005,9,JACIII,4,db/journals/jaciii/jaciii9.html#Patkai05,https://doi.org/10.20965/jaciii.2005.p0399 +László Horváth,Possibilities for Application of Associative Objects with Built-in Intelligence in Engineering Modeling.,2004,8,JACIII,5,db/journals/jaciii/jaciii8.html#HorvathR04,https://doi.org/10.20965/jaciii.2004.p0544 +Wen-Yang Lin,Editorial.,2007,11,JACIII,4,db/journals/jaciii/jaciii11.html#LinHC07,https://doi.org/10.20965/jaciii.2007.p0357 +Hugang Han,Discrete Sliding-Mode Control for a Class of T-S Fuzzy Models with Modeling Error.,2014,18,JACIII,6,db/journals/jaciii/jaciii18.html#HanL14,https://doi.org/10.20965/jaciii.2014.p0908 +DeJian Wang,Analysis of Water Quality of Lake Hachiroko in Japan Using a Fuzzy Multiple Regression Model with ALOS AVNIR-2 Data.,2016,20,JACIII,6,db/journals/jaciii/jaciii20.html#WangKNS16,https://doi.org/10.20965/jaciii.2016.p0992 +Mayuko Miyata,Coalition Formation Based Staffing Strategy Development.,2012,16,JACIII,3,db/journals/jaciii/jaciii16.html#MiyataS12,https://doi.org/10.20965/jaciii.2012.p0430 +Yoshiyuki Matsumoto,Rough Sets Based Prediction Model of Tick-Wise Price Fluctuations.,2011,15,JACIII,4,db/journals/jaciii/jaciii15.html#MatsumotoW11,https://doi.org/10.20965/jaciii.2011.p0449 +Kaoru Shimada,An Evolutionary Method for Associative Contrast Rule Mining from Incomplete Database.,2015,19,JACIII,6,db/journals/jaciii/jaciii19.html#ShimadaH15,https://doi.org/10.20965/jaciii.2015.p0766 +Yukari Yamauchi,Analysis of Symbol Generation and Integration in a Unified Model Based on a Neural Network.,2005,9,JACIII,3,db/journals/jaciii/jaciii9.html#YamauchiT05,https://doi.org/10.20965/jaciii.2005.p0297 +Huan Liu 0002,An Improved Tuning Control Algorithm Based on SVD for FID Signal.,2017,21,JACIII,1,db/journals/jaciii/jaciii21.html#LiuDGGBZ17,https://doi.org/10.20965/jaciii.2017.p0133 +Yasufumi Takama,Personal Values-Based Item Modeling and its Application to Recommendation with Explanation.,2016,20,JACIII,6,db/journals/jaciii/jaciii20.html#TakamaYH16,https://doi.org/10.20965/jaciii.2016.p0867 +Takamasa Iio,Retaining Human-Robots Conversation: Comparing Single Robot to Multiple Robots in a Real Event.,2017,21,JACIII,4,db/journals/jaciii/jaciii21.html#IioYI17,https://doi.org/10.20965/jaciii.2017.p0675 +Hiroshi Takahashi,Vehicle Control Based on Fuzzy Evaluation Knowledge Obtained by Coefficients of the ARMA Model.,1997,1,JACIII,1,db/journals/jaciii/jaciii1.html#Takahashi97,https://doi.org/10.20965/jaciii.1997.p0008 +Katsuhiro Honda,Simultaneous Application of Fuzzy Clustering and Quantification with Incomplete Categorical Data.,2004,8,JACIII,4,db/journals/jaciii/jaciii8.html#HondaNI04,https://doi.org/10.20965/jaciii.2004.p0397 +Jasmin Léveillé,A Probabilistic WKL Rule for Incremental Feature Learning and Pattern Recognition.,2014,18,JACIII,4,db/journals/jaciii/jaciii18.html#LeveilleHF14,https://doi.org/10.20965/jaciii.2014.p0672 +Yoshifumi Kusunoki,Maximum-Margin Model for Nearest Prototype Classifiers.,2018,22,JACIII,4,db/journals/jaciii/jaciii22.html#KusunokiWT18,https://doi.org/10.20965/jaciii.2018.p0565 +Syoji Kobashi,Cerebral Contour Extraction with Particle Method in Neonatal MR Images.,2011,15,JACIII,3,db/journals/jaciii/jaciii15.html#KobashiYWAIKHH11,https://doi.org/10.20965/jaciii.2011.p0362 +Andreas Oikonomou,Interactive Reality System (IRiS): Interactive 3D Video Playback in Multimedia Applications.,2006,10,JACIII,2,db/journals/jaciii/jaciii10.html#OikonomouAGTA06,https://doi.org/10.20965/jaciii.2006.p0145 +Mingxing Fang,Active Structural Control Based on Integration of Γ9*∞ Control and Equivalent-Input-Disturbance Approach.,2016,20,JACIII,2,db/journals/jaciii/jaciii20.html#FangWCDS16,https://doi.org/10.20965/jaciii.2016.p0197 +Reggie C. Gustilo,Neuro-Fuzzy Control Techniques for Optimal Water Quality Index in a Small Scale Tiger Prawn Aquaculture Setup.,2014,18,JACIII,5,db/journals/jaciii/jaciii18.html#GustiloDCL14,https://doi.org/10.20965/jaciii.2014.p0805 +Jorma K. Mattila,Editorial: From Basic Research to Applications.,2005,9,JACIII,5,db/journals/jaciii/jaciii9.html#Mattila05,https://doi.org/10.20965/jaciii.2005.p0497 +Norihiro Kamide,Concept Finding Proofs.,2011,15,JACIII,7,db/journals/jaciii/jaciii15.html#Kamide11,https://doi.org/10.20965/jaciii.2011.p0777 +Tadanari Taniguchi,LUT Controller Design with Piecewise Bilinear Systems Using Estimation of Bounds for Approximation Errors.,2013,17,JACIII,6,db/journals/jaciii/jaciii17.html#TaniguchiES13,https://doi.org/10.20965/jaciii.2013.p0828 +Byung-Jae Choi,Design of a Single-amp*input Adaptive Fuzzy Logic Controller using a Switching Hyperplane.,2000,4,JACIII,5,db/journals/jaciii/jaciii4.html#ChoiKK00,https://doi.org/10.20965/jaciii.2000.p0321 +Lourdes Mattos Brasil,Hybrid Module of the IACVIRTUAL Project.,2006,10,JACIII,4,db/journals/jaciii/jaciii10.html#BrasilRAA06,https://doi.org/10.20965/jaciii.2006.p0472 +Nikola K. Kasabov,Rule Extraction from Fuzzy Neural Networks FuNN: A Method and a Real-World Application.,2001,5,JACIII,4,db/journals/jaciii/jaciii5.html#KasabovKKC01,https://doi.org/10.20965/jaciii.2001.p0193 +Mohammed Faeik Ruzaij,Hybrid Voice Controller for Intelligent Wheelchair and Rehabilitation Robot Using Voice Recognition and Embedded Technologies.,2016,20,JACIII,4,db/journals/jaciii/jaciii20.html#RuzaijNST16,https://doi.org/10.20965/jaciii.2016.p0615 +Yasufumi Takama,Profile Generation for TV Program Recommendation Based on Utterance Analysis.,2009,13,JACIII,2,db/journals/jaciii/jaciii13.html#TakamaM09,https://doi.org/10.20965/jaciii.2009.p0086 +Yuchi Kanzawa,A Maximizing Model of Spherical Bezdek-Type Fuzzy Multi-Medoids Clustering.,2015,19,JACIII,6,db/journals/jaciii/jaciii19.html#Kanzawa15b,https://doi.org/10.20965/jaciii.2015.p0738 +Yu Wang 0023,Global Optimal Routing Algorithm for Traffic Systems with Multiple ODs.,2009,13,JACIII,6,db/journals/jaciii/jaciii13.html#WangMEH09,https://doi.org/10.20965/jaciii.2009.p0704 +Tetsuya Murai,Crisp and Fuzzy Granular Hierarchical Structures Generated from a Free Monoid.,2014,18,JACIII,6,db/journals/jaciii/jaciii18.html#MuraiMIKA14,https://doi.org/10.20965/jaciii.2014.p0929 +Shinji Mochida,Knowledge Mining for Project Management and Execution.,2011,15,JACIII,4,db/journals/jaciii/jaciii15.html#Mochida11,https://doi.org/10.20965/jaciii.2011.p0454 +Jaesung Park,Robust Watermarking Using n-Diagonalization Based on Householder Transform.,2014,18,JACIII,4,db/journals/jaciii/jaciii18.html#ParkSN14,https://doi.org/10.20965/jaciii.2014.p0549 +Yukinobu Hoshino,Wavelet Transform Analysis the Recognizing Brain Activities for Development the Palm-Size and Simplification Near-Infrared Spectroscopy Prototype System by Using Arduino.,2018,22,JACIII,3,db/journals/jaciii/jaciii22.html#HoshinoKT18,https://doi.org/10.20965/jaciii.2018.p0306 +Takeshi Yamamoto,Non-Euclidean Extension of FCMdd-Based Linear Clustering for Relational Data.,2011,15,JACIII,8,db/journals/jaciii/jaciii15.html#YamamotoHNI11,https://doi.org/10.20965/jaciii.2011.p1050 +Hidetoshi Miyao,Stave Extraction for Printed Music Scores Using DP Matching.,2004,8,JACIII,2,db/journals/jaciii/jaciii8.html#MiyaoO04,https://doi.org/10.20965/jaciii.2004.p0208 +Shamshul Bahar Yaakob,A Hybrid Particle Swarm Optimization Approach and its Application to Solving Portfolio Selection Problems.,2011,15,JACIII,4,db/journals/jaciii/jaciii15.html#YaakobW11,https://doi.org/10.20965/jaciii.2011.p0473 +Lulu Wang,A Heterogeneous Ensemble Learning Voting Method for Fatigue Detection in Daily Activities.,2018,22,JACIII,1,db/journals/jaciii/jaciii22.html#WangHHCY18,https://doi.org/10.20965/jaciii.2018.p0088 +Mian Dai,Fuzzy Three-Dimensional Voronoi Diagram and its Application to Geographical Data Analysis.,2012,16,JACIII,2,db/journals/jaciii/jaciii16.html#DaiDH12,https://doi.org/10.20965/jaciii.2012.p0191 +Yasunori Endo,Even-Sized Clustering Based on Optimization and its Variants.,2018,22,JACIII,1,db/journals/jaciii/jaciii22.html#EndoHHK18,https://doi.org/10.20965/jaciii.2018.p0062 +özer Ciftcioglu,Multiresolutional Fusion of Perceptions Applied to Robot Navigation.,2007,11,JACIII,6,db/journals/jaciii/jaciii11.html#CiftciogluBS07,https://doi.org/10.20965/jaciii.2007.p0688 +Kento Morita 0001,Implanted Knee Joint Kinematics Recognition in Digital Radiograph Images Using Particle Filter.,2018,22,JACIII,1,db/journals/jaciii/jaciii22.html#MoritaNIMYK18,https://doi.org/10.20965/jaciii.2018.p0113 +Ryosuke Yamanishi,Effect on EEGs When Listening to Harmony.,2009,13,JACIII,4,db/journals/jaciii/jaciii13.html#YamanishiKKI09,https://doi.org/10.20965/jaciii.2009.p0366 +Tsuneharu Morito,Left Ventricle Wall Motion Analysis Using MRI Tagging.,2005,9,JACIII,4,db/journals/jaciii/jaciii9.html#MoritoKSY05,https://doi.org/10.20965/jaciii.2005.p0361 +Kazuteru Miyazaki,Proposal of the Continuous-Valued Penalty Avoiding Rational Policy Making Algorithm.,2012,16,JACIII,2,db/journals/jaciii/jaciii16.html#Miyazaki12,https://doi.org/10.20965/jaciii.2012.p0183 +Wataru Okamoto,A Generalized Inference Method for Fuzzy Quantified and Truth-Qualified Natural Language Propositions.,2007,11,JACIII,5,db/journals/jaciii/jaciii11.html#OkamotoTIF07,https://doi.org/10.20965/jaciii.2007.p0502 +Yong-Soo Kim,Editorial: Special Issue on Papers Selected in ISIS and SCIS 2003.,2004,8,JACIII,4,db/journals/jaciii/jaciii8.html#KimS04,https://doi.org/10.20965/jaciii.2004.p0349 +Shingo Mabu,A Double-Deck Elevator Systems Controller with Idle Cage Assignment Algorithm Using Genetic Network Programming.,2010,14,JACIII,5,db/journals/jaciii/jaciii14.html#MabuYZEH10,https://doi.org/10.20965/jaciii.2010.p0487 +Shunta Imamura,Characteristic Analysis of Artificial Bee Colony Algorithm with Network-Structure.,2017,21,JACIII,3,db/journals/jaciii/jaciii21.html#ImamuraKFKK17,https://doi.org/10.20965/jaciii.2017.p0496 +Billy Peralta,Improved Object Recognition with Decision Trees Using Subspace Clustering.,2016,20,JACIII,1,db/journals/jaciii/jaciii20.html#PeraltaC16,https://doi.org/10.20965/jaciii.2016.p0041 +Hiroshi Endo,An Attempt to Improve Food/Sound Congruity Using an Electromyogram Pseudo-Chewing Sound Presentation System.,2017,21,JACIII,2,db/journals/jaciii/jaciii21.html#EndoKIF17,https://doi.org/10.20965/jaciii.2017.p0342 +Hengjin Tang,Sequential Regression Models with Pairwise Constraints Using Noise Clusters.,2012,16,JACIII,7,db/journals/jaciii/jaciii16.html#TangM12,https://doi.org/10.20965/jaciii.2012.p0814 +Hikaru Iwazaki,On Network Structure of Stable Strategies in Local Connection Games.,2012,16,JACIII,3,db/journals/jaciii/jaciii16.html#IwazakiUS12,https://doi.org/10.20965/jaciii.2012.p0420 +Yukihiro Hamasuna,Comparison of Semi-Supervised Hierarchical Clustering Using Clusterwise Tolerance.,2012,16,JACIII,7,db/journals/jaciii/jaciii16.html#HamasunaE12,https://doi.org/10.20965/jaciii.2012.p0819 +Annamária R. Várkonyi-Kóczy,Fuzzy Based Brightness Compensation for High Dynamic Range Images.,2006,10,JACIII,4,db/journals/jaciii/jaciii10.html#Varkonyi-KoczyRV06,https://doi.org/10.20965/jaciii.2006.p0549 +Josue Roberto-Lozano,360 Degree Selective Laser Trabeculoplasty in Mexican Population.,2012,16,JACIII,4,db/journals/jaciii/jaciii16.html#Roberto-LozanoKVW12,https://doi.org/10.20965/jaciii.2012.p0540 +Tomohiro Takagi,Image Retrieval using Conceptual Fuzzy Sets.,2000,4,JACIII,6,db/journals/jaciii/jaciii4.html#TakagiKO00,https://doi.org/10.20965/jaciii.2000.p0450 +Chi-Yo Huang,Next Generation Passive Optical Networking Technology Predictions by Using Hybrid MCDM Methods.,2011,15,JACIII,4,db/journals/jaciii/jaciii15.html#HuangCYT11,https://doi.org/10.20965/jaciii.2011.p0400 +Woo-Jin Choi,Implementation of High-Precision Magnetostrictive-Type Liquid Level Measurement System Using Wavelet Transform.,2014,18,JACIII,6,db/journals/jaciii/jaciii18.html#ChoiL14,https://doi.org/10.20965/jaciii.2014.p0888 +Sayed Mohammad Reza Loghmanian,Nonlinear Dynamic System Identification Using Volterra Series: Multi-Objective Optimization Approach.,2012,16,JACIII,4,db/journals/jaciii/jaciii16.html#LoghmanianYK12,https://doi.org/10.20965/jaciii.2012.p0489 +Tamás D. Gedeon,Editorial: Multimedia Information Compression Technologies.,2000,4,JACIII,6,db/journals/jaciii/jaciii4.html#Gedeon00,https://doi.org/10.20965/jaciii.2000.p0401 +Tianyu Li,Fuzzy Association Rule Mining Based Myocardial Ischemia Diagnosis on ECG Signal.,2015,19,JACIII,2,db/journals/jaciii/jaciii19.html#LiDH15,https://doi.org/10.20965/jaciii.2015.p0217 +Hyung Lee-Kwang,Editorial: Fuzzy Logic and Intelligence System.,2000,4,JACIII,5,db/journals/jaciii/jaciii4.html#Lee-KwangL00,https://doi.org/10.20965/jaciii.2000.p0319 +Hyeon Bae,Fault Detection of Induction Motors Using Fourier and Wavelet Analysis.,2004,8,JACIII,4,db/journals/jaciii/jaciii8.html#BaeKKLW04,https://doi.org/10.20965/jaciii.2004.p0431 +Chuan Yue,Enhancing Bidding Strategy Using Genetic Network Programming in Agent-Based Multiple Round English Auction.,2011,15,JACIII,7,db/journals/jaciii/jaciii15.html#YueMH11,https://doi.org/10.20965/jaciii.2011.p0747 +Khoder Melhem,A Unified Framework for Dynamics and Lyapunov Stability of Holonomically Constrained Rigid Bodies.,2005,9,JACIII,4,db/journals/jaciii/jaciii9.html#MelhemLL05,https://doi.org/10.20965/jaciii.2005.p0387 +Amedeo Cesta,Deploying Interactive Mission Planning Tools - Experiences and Lessons Learned.,2011,15,JACIII,8,db/journals/jaciii/jaciii15.html#CestaCFOB11,https://doi.org/10.20965/jaciii.2011.p1149 +Nguyen Trong Kuong,IVUS Tissue Characterization of Coronary Plaque by Classification Restricted Boltzmann Machine.,2017,21,JACIII,1,db/journals/jaciii/jaciii21.html#KuongUS17,https://doi.org/10.20965/jaciii.2017.p0067 +Minako Hosono,Study on Psychological Effect of Cyclic Foot Joint Exercise as a Light Exercise for Sitting Position.,2017,21,JACIII,3,db/journals/jaciii/jaciii21.html#HosonoI17,https://doi.org/10.20965/jaciii.2017.p0581 +Hidetomo Ichihashi,Application of Kernel Trick to Fuzzy c-Means with Regularization by K-L Information.,2004,8,JACIII,6,db/journals/jaciii/jaciii8.html#IchihashiH04,https://doi.org/10.20965/jaciii.2004.p0566 +Yuchi Kanzawa,Power-Regularized Fuzzy Clustering for Spherical Data.,2018,22,JACIII,2,db/journals/jaciii/jaciii22.html#Kanzawa18a,https://doi.org/10.20965/jaciii.2018.p0163 +Indah Agustien Siradjuddin,Particle Filter with Gaussian Weighting for Vehicle Tracking.,2011,15,JACIII,6,db/journals/jaciii/jaciii15.html#SiradjuddinW11,https://doi.org/10.20965/jaciii.2011.p0681 +Masaya Nakata,An Analysis of Rule Deletion Scheme in XCS on Reinforcement Learning Problem.,2017,21,JACIII,5,db/journals/jaciii/jaciii21.html#NakataH17,https://doi.org/10.20965/jaciii.2017.p0876 +Naoyuki Kubota,Joint Attention Between a Human Being and a Partner Robot Based on Computational Intelligence.,2007,11,JACIII,10,db/journals/jaciii/jaciii11.html#KubotaSA07,https://doi.org/10.20965/jaciii.2007.p1274 +Linjie Xin,Adaptive Fast Terminal Sliding Mode Control for a Class of Uncertain Systems with Input Nonlinearity.,2017,21,JACIII,3,db/journals/jaciii/jaciii21.html#XinWLS17,https://doi.org/10.20965/jaciii.2017.p0518 +Hajime Murai,Network Analysis of the Four Gospels and the Catechism of the Catholic Church.,2007,11,JACIII,7,db/journals/jaciii/jaciii11.html#MuraiT07,https://doi.org/10.20965/jaciii.2007.p0772 +Hamid R. Tizhoosh,Opposition-Based Reinforcement Learning.,2006,10,JACIII,4,db/journals/jaciii/jaciii10.html#Tizhoosh06,https://doi.org/10.20965/jaciii.2006.p0578 +Kazuo Kiguchi,Trajectory Planning of Mobile Robots Using DNA Computing.,2004,8,JACIII,3,db/journals/jaciii/jaciii8.html#KiguchiWF04,https://doi.org/10.20965/jaciii.2004.p0295 +Yoichiro Maeda,Multilayered Fuzzy Behavior Control for an Autonomous Mobile Robot with Multiple Omnidirectional Vision System: MOVIS.,2007,11,JACIII,1,db/journals/jaciii/jaciii11.html#MaedaS07,https://doi.org/10.20965/jaciii.2007.p0021 +Kazushi Okamoto,An Evaluation Strategy for Visual Key Image Retrieval on Mobile Devices.,2012,16,JACIII,6,db/journals/jaciii/jaciii16.html#OkamotoKDYH12,https://doi.org/10.20965/jaciii.2012.p0713 +Eri Sato,Toward Natural Communication: Human-Robot Gestural Interaction Using Pointing.,2007,11,JACIII,3,db/journals/jaciii/jaciii11.html#SatoNNY07,https://doi.org/10.20965/jaciii.2007.p0276 +Liubao Deng,Optimistic Value Model of Uncertain Linear Quadratic Optimal Control with Jump.,2016,20,JACIII,2,db/journals/jaciii/jaciii20.html#DengC16,https://doi.org/10.20965/jaciii.2016.p0189 +Masanori Tsujino,Network Approach to Inducing Coordinative Structures of Skillful Movements.,2011,15,JACIII,8,db/journals/jaciii/jaciii15.html#TsujinoFN11,https://doi.org/10.20965/jaciii.2011.p0988 +Eloy Gonzales,Combination of Two Evolutionary Methods for Mining Association Rules in Large and Dense Databases.,2009,13,JACIII,5,db/journals/jaciii/jaciii13.html#GonzalesTMSH09,https://doi.org/10.20965/jaciii.2009.p0561 +Toru Tamaki,Human Limb Extraction Based on Motion Estimation Using Optical Flow and Image Registration.,2004,8,JACIII,2,db/journals/jaciii/jaciii8.html#Tamaki04,https://doi.org/10.20965/jaciii.2004.p0150 +Kentaro Tani,"Construction of Web-Based Speech Game System ""kikimimi"".",2017,21,JACIII,2,db/journals/jaciii/jaciii21.html#TaniSMKNM17,https://doi.org/10.20965/jaciii.2017.p0359 +Anca L. Ralescu,Fuzzy Modeling based Approach to Facial Expressions Understanding.,1997,1,JACIII,1,db/journals/jaciii/jaciii1.html#RalescuH97,https://doi.org/10.20965/jaciii.1997.p0045 +Hisao Ishibuchi,Pattern and Feature Selection by Genetic Algorithms in Nearest Neighbor Classification.,2000,4,JACIII,2,db/journals/jaciii/jaciii4.html#IshibuchiN00,https://doi.org/10.20965/jaciii.2000.p0138 +Shunsuke Tatsumi,Evaluation of an OpenCL-Based FPGA Platform for Particle Filter.,2016,20,JACIII,5,db/journals/jaciii/jaciii20.html#TatsumiHI16,https://doi.org/10.20965/jaciii.2016.p0743 +Kenji Tamura,Development of Ghost Controller for Ms Pac-Man Versus Ghost Team with Grammatical Evolution.,2013,17,JACIII,6,db/journals/jaciii/jaciii17.html#TamuraT13,https://doi.org/10.20965/jaciii.2013.p0904 +Jani Rönkkönen,A Comparison of Differential Evolution and Generalized Generation Gap Model.,2005,9,JACIII,5,db/journals/jaciii/jaciii9.html#RonkkonenKL05,https://doi.org/10.20965/jaciii.2005.p0549 +Chikatoshi Yamada,Inductive Temporal Formula Specifications for System Verification.,2005,9,JACIII,3,db/journals/jaciii/jaciii9.html#YamadaNN05,https://doi.org/10.20965/jaciii.2005.p0321 +Taki Kanda,Statistical Analysis for Human Preference to Colors.,2011,15,JACIII,4,db/journals/jaciii/jaciii15.html#Kanda11,https://doi.org/10.20965/jaciii.2011.p0433 +Hsien-Chang Wang,Applying SIP VoIP to Context-Aware Telephony.,2007,11,JACIII,7,db/journals/jaciii/jaciii11.html#WangCH07,https://doi.org/10.20965/jaciii.2007.p0767 +Martin Leonard Tangel,Multiscale Image Aggregation for Dental Radiograph Segmentation.,2012,16,JACIII,3,db/journals/jaciii/jaciii16.html#TangelFWDH12,https://doi.org/10.20965/jaciii.2012.p0388 +Yukihiro Hamasuna,On Tolerant Fuzzy c -Means Clustering.,2009,13,JACIII,4,db/journals/jaciii/jaciii13.html#HamasunaEM09,https://doi.org/10.20965/jaciii.2009.p0421 +Masoud Mohammadian,Design of Self-Learning Hierarchical Fuzzy Logic for Guidance and Control of Multirobot Systems.,1999,3,JACIII,6,db/journals/jaciii/jaciii3.html#Mohammadian99,https://doi.org/10.20965/jaciii.1999.p0446 +Shihoko Kamisato,Extraction of Motion Characteristics Corresponding to Sensitivity Information Using Dance Movement.,2004,8,JACIII,2,db/journals/jaciii/jaciii8.html#KamisatoOIH04,https://doi.org/10.20965/jaciii.2004.p0168 +Peter Vojtig,Fuzzy Reasoning with Tunable t-Operators.,1998,2,JACIII,4,db/journals/jaciii/jaciii2.html#Vojtig98,https://doi.org/10.20965/jaciii.1998.p0121 +Tomohiro Yoshikawa,Proposal of a New Recommendation System that Addresses 'Personalizability'.,2013,17,JACIII,2,db/journals/jaciii/jaciii17.html#YoshikawaMF13,https://doi.org/10.20965/jaciii.2013.p0167 +Yi Ding,Neural Network Implementation of Image Rendering via Self-Calibration.,2010,14,JACIII,4,db/journals/jaciii/jaciii14.html#DingINHWI10,https://doi.org/10.20965/jaciii.2010.p0344 +Celso Bation,An Inference Algorithm for Electronic System Diagnostics at the Block Diagram Level.,2006,10,JACIII,2,db/journals/jaciii/jaciii10.html#Bation06,https://doi.org/10.20965/jaciii.2006.p0168 +Muhammad R. Widyanto,SONIA-Based Decision Neural Network for Preference Assessment with Incomplete Comparisons.,2005,9,JACIII,6,db/journals/jaciii/jaciii9.html#WidyantoKKH05,https://doi.org/10.20965/jaciii.2005.p0607 +Jagath C. Rajapakse,Neuronal and Hemodynamic Events from fMRI Time-Series.,1998,2,JACIII,6,db/journals/jaciii/jaciii2.html#RajapakseKZC98,https://doi.org/10.20965/jaciii.1998.p0185 +Hiroshi Dan,Finite Element Analysis of Tsunami by Viscous Shallow-Water Equations.,2012,16,JACIII,4,db/journals/jaciii/jaciii16.html#DanK12,https://doi.org/10.20965/jaciii.2012.p0508 +Ryoji Sawa,Knowledge Extraction from Unknown Environment by Artificial-life Approach.,1999,3,JACIII,4,db/journals/jaciii/jaciii3.html#SawaMH99,https://doi.org/10.20965/jaciii.1999.p0215 +Liang Kong,Improving the Prediction of Protein Structural Classfor Low-Similarity Sequences by Incorporating Evolutionaryand Structural Information.,2016,20,JACIII,3,db/journals/jaciii/jaciii20.html#KongKJ16,https://doi.org/10.20965/jaciii.2016.p0402 +Kenichiro Hayashi,Improvement of Control Performance for Low-Dimensional Number of Fuzzy Labeling Using Simplified Inference.,1999,3,JACIII,5,db/journals/jaciii/jaciii3.html#HayashiOS99,https://doi.org/10.20965/jaciii.1999.p0431 +Indra Adji Sulistijono,A Study on Fuzzy Control of Humanoid Soccer Robot EFuRIO for Vision Control System and Walking Movement.,2012,16,JACIII,3,db/journals/jaciii/jaciii16.html#SulistijonoKSSK12,https://doi.org/10.20965/jaciii.2012.p0444 +Takahiro Sakuraba,Design and Experimental Verification of a Wheeled Mobile System with a Spring-Based Regenerative Brake.,2017,21,JACIII,4,db/journals/jaciii/jaciii21.html#SakurabaUSS17,https://doi.org/10.20965/jaciii.2017.p0751 +Kiyoshi Shingu,Analysis of Components of Waterfront Parks by Using Conjoint Analysis Including an Incomplete Answer.,2009,13,JACIII,3,db/journals/jaciii/jaciii13.html#ShinguH09,https://doi.org/10.20965/jaciii.2009.p0217 +Kewei Chen,Vehicles Dispatching Problem for Cooperative Deliveries from Multiple Depots.,2000,4,JACIII,2,db/journals/jaciii/jaciii4.html#ChenTH00,https://doi.org/10.20965/jaciii.2000.p0177 +Kazushi Okamoto,Families of Triangular Norm-Based Kernel Functions and Their Application to Kernel k-Means.,2017,21,JACIII,3,db/journals/jaciii/jaciii21.html#Okamoto17,https://doi.org/10.20965/jaciii.2017.p0534 +Qi Shi,Compensation of Stribeck-Type Nonlinear Friction in Positioning Control Using Equivalent-Input-Disturbance Approach.,2014,18,JACIII,2,db/journals/jaciii/jaciii18.html#ShiOSXIO14,https://doi.org/10.20965/jaciii.2014.p0150 +Rafik Hadfi,Complex Multi-Issue Negotiation Using Utility Hyper-Graphs.,2015,19,JACIII,4,db/journals/jaciii/jaciii19.html#HadfiI15,https://doi.org/10.20965/jaciii.2015.p0514 +Hugang Han,Adaptive Controller for T-S Fuzzy Model with Modeling Error.,2011,15,JACIII,7,db/journals/jaciii/jaciii15.html#Han11,https://doi.org/10.20965/jaciii.2011.p0759 +Janet Pomares Betancourt,Similarity-Based Fuzzy Classification of ECG and Capnogram Signals.,2013,17,JACIII,2,db/journals/jaciii/jaciii17.html#BetancourtFTYSDH13,https://doi.org/10.20965/jaciii.2013.p0302 +Yanyun Yao,Wine Evaluation Modeling Based on Lasso and Support Vector Regression.,2017,21,JACIII,6,db/journals/jaciii/jaciii21.html#YaoXH17,https://doi.org/10.20965/jaciii.2017.p0998 +Kazutaka Shimada,A Combined Method Based on SVM and Online Learning with HOG for Hand Shape Recognition.,2012,16,JACIII,6,db/journals/jaciii/jaciii16.html#ShimadaME12,https://doi.org/10.20965/jaciii.2012.p0687 +Shin'ya Nagasawa,Chanel's Strategy of Communication Tools and Packaging for its Beauty Products.,2011,15,JACIII,4,db/journals/jaciii/jaciii15.html#NagasawaS11,https://doi.org/10.20965/jaciii.2011.p0460 +Manseok Kim,A New Trajectory Generation Scheme for Direction Turning in Biped Walking.,2010,14,JACIII,5,db/journals/jaciii/jaciii14.html#KimKCK10,https://doi.org/10.20965/jaciii.2010.p0550 +Chastine Fatichah,Interest-Based Ordering for Fuzzy Morphology on White Blood Cell Image Segmentation.,2012,16,JACIII,1,db/journals/jaciii/jaciii16.html#FatichahTWDH12,https://doi.org/10.20965/jaciii.2012.p0076 +Min-Soeng Kim,Self-Learning Fuzzy Logic Controller using Q-Learning.,2000,4,JACIII,5,db/journals/jaciii/jaciii4.html#KimHL00,https://doi.org/10.20965/jaciii.2000.p0349 +Renann G. Baldovino,A Hybrid Fuzzy Logic - PLC-Based Controller for Earthquake Simulator System.,2016,20,JACIII,1,db/journals/jaciii/jaciii20.html#BaldovinoD16,https://doi.org/10.20965/jaciii.2016.p0100 +Motoyuki Ohki,Role of Robustness Measure in Rule Induction.,2016,20,JACIII,4,db/journals/jaciii/jaciii20.html#OhkiSI16,https://doi.org/10.20965/jaciii.2016.p0580 +Tetsuji Tani,Hierarchical Control System with Fuzzy Supervisory System and PID Controller and Application to Large-Scale Hydrogen Gas Purity Control.,1999,3,JACIII,2,db/journals/jaciii/jaciii3.html#TaniKM99,https://doi.org/10.20965/jaciii.1999.p0126 +Sheng Du,Intelligent Coordinating Control Between Burn-Through Point and Mixture Bunker Level in an Iron Ore Sintering Process.,2017,21,JACIII,1,db/journals/jaciii/jaciii21.html#DuWCLC17,https://doi.org/10.20965/jaciii.2017.p0139 +Dian-Fu Chang,Analyzing the Functions and Benefits of Using Mobile Facebook as a Supplemental LMS in Higher Education.,2017,21,JACIII,6,db/journals/jaciii/jaciii21.html#ChangHW17,https://doi.org/10.20965/jaciii.2017.p0971 +Taiki Iimura,Decomposition of Limb Movement Based on Muscular Coordination During Human Running.,2011,15,JACIII,8,db/journals/jaciii/jaciii15.html#IimuraIPHM11,https://doi.org/10.20965/jaciii.2011.p0980 +Meng Yuan,Minimax Portfolio Optimization Under Interval Uncertainty.,2015,19,JACIII,5,db/journals/jaciii/jaciii19.html#YuanLWK15,https://doi.org/10.20965/jaciii.2015.p0575 +Jungpil Shin,Ink Diffusion Simulation for 3D Virtual Calligraphy.,2013,17,JACIII,4,db/journals/jaciii/jaciii17.html#ShinM13,https://doi.org/10.20965/jaciii.2013.p0598 +Yasufumi Takama,Investigation on Robot User Interface for Information Access.,2010,14,JACIII,3,db/journals/jaciii/jaciii14.html#TakamaN10,https://doi.org/10.20965/jaciii.2010.p0316 +Yihsin Ho,Data Mining Using Human Motions for Intelligent Systems.,2011,15,JACIII,5,db/journals/jaciii/jaciii15.html#HoSSY11,https://doi.org/10.20965/jaciii.2011.p0573 +Ran Zhang,Influence of the Chinese Government Subsidy Policies on Supply Chain Members' Profits: An Agent-Based Modeling and Simulation Approach.,2016,20,JACIII,4,db/journals/jaciii/jaciii20.html#ZhangL16,https://doi.org/10.20965/jaciii.2016.p0623 +Shahryar Rahnamayan,Automatic Acquisition of Image Filtering and Object Extraction Procedures from Ground-Truth Samples.,2009,13,JACIII,2,db/journals/jaciii/jaciii13.html#RahnamayanTS09,https://doi.org/10.20965/jaciii.2009.p0115 +Tomoya Fukukawa,Vision-Based Mowing Boundary Detection Algorithm for an Autonomous Lawn Mower.,2016,20,JACIII,1,db/journals/jaciii/jaciii20.html#FukukawaSHF16,https://doi.org/10.20965/jaciii.2016.p0049 +Rung-Ching Chen,A Chronic Disease Diet Recommendation System Based on Domain Ontology and Decision Tree.,2017,21,JACIII,3,db/journals/jaciii/jaciii21.html#ChenHT17,https://doi.org/10.20965/jaciii.2017.p0474 +Osamu Hirano,Electricity Demand and Price Analysis in California Using Possibility Regression Model.,2003,7,JACIII,2,db/journals/jaciii/jaciii7.html#HiranoKO03,https://doi.org/10.20965/jaciii.2003.p0147 +Yoshihiro Tamura,Observed Body Clustering for Imitation Based on Value System.,2010,14,JACIII,7,db/journals/jaciii/jaciii14.html#TamuraTA10,https://doi.org/10.20965/jaciii.2010.p0802 +Humberto Bustince Sola,Image Thresholding Computation Using Atanassov's Intuitionistic Fuzzy Sets.,2007,11,JACIII,2,db/journals/jaciii/jaciii11.html#SolaTPO07,https://doi.org/10.20965/jaciii.2007.p0187 +Akira Yanou,Performance Analysis for First-Order Configuration Prediction for Redundant Manipulators Based on Avoidance Manipulability.,2014,18,JACIII,3,db/journals/jaciii/jaciii18.html#YanouHMK14,https://doi.org/10.20965/jaciii.2014.p0443 +Shajulin Benedict,An Evolutionary Hybrid Scheduling Algorithm for Computational Grids.,2008,12,JACIII,5,db/journals/jaciii/jaciii12.html#BenedictSV08,https://doi.org/10.20965/jaciii.2008.p0479 +Kazuhiro Tokunaga,Diagnosis System for Predicting the Centrosome Hyperamplification in Bladder Cancer by Using DNA Microarray Data.,2013,17,JACIII,2,db/journals/jaciii/jaciii17.html#TokunagaKSUM13,https://doi.org/10.20965/jaciii.2013.p0244 +Danuta Rutkowska,Neuro-Fuzzy Systems Approaches.,1999,3,JACIII,3,db/journals/jaciii/jaciii3.html#RutkowskaH99,https://doi.org/10.20965/jaciii.1999.p0177 +Eva Ocelíková,Contribution to Creation of Complex System Macrosituations.,2002,6,JACIII,2,db/journals/jaciii/jaciii6.html#OcelikovaM02,https://doi.org/10.20965/jaciii.2002.p0079 +Tapio Frantti,Cascaded Fuzzy Congestion Controller for TCP/IP Traffic.,2005,9,JACIII,2,db/journals/jaciii/jaciii9.html#Frantti05,https://doi.org/10.20965/jaciii.2005.p0092 +Vitaliy V. Kalashnikov Jr.,Production Competition in Electricity Sector: Social Welfare vs. Managerial Incentives in a Partially Regulated Duopoly.,2017,21,JACIII,6,db/journals/jaciii/jaciii21.html#KalashnikovCK17,https://doi.org/10.20965/jaciii.2017.p1034 +Lijun Sun,Demand Forecasting for Petrol Products in Gas Stations Using Clustering and Decision Tree.,2018,22,JACIII,3,db/journals/jaciii/jaciii22.html#SunXZH18,https://doi.org/10.20965/jaciii.2018.p0387 +Atsushi Wada,Analyzing Strength-Based Classifier System from Reinforcement Learning Perspective.,2009,13,JACIII,6,db/journals/jaciii/jaciii13.html#WadaT09,https://doi.org/10.20965/jaciii.2009.p0631 +Piyasak Jeatrakul,Data Cleaning for Classification Using Misclassification Analysis.,2010,14,JACIII,3,db/journals/jaciii/jaciii14.html#JeatrakulWF10,https://doi.org/10.20965/jaciii.2010.p0297 +Hiroshi Mabuchi,Infinite Computation in the Equivalent Transformation Model.,2007,11,JACIII,2,db/journals/jaciii/jaciii11.html#MabuchiAKM07,https://doi.org/10.20965/jaciii.2007.p0176 +Barna Reskó,Cognitive Vision Inspired Contour and Vertex Detection.,2006,10,JACIII,4,db/journals/jaciii/jaciii10.html#ReskoCB06,https://doi.org/10.20965/jaciii.2006.p0527 +John-Tark Lee,Implementation of Passive Telemetry RF Sensor System Using Unscented Kalman Filter Algorithm.,2010,14,JACIII,5,db/journals/jaciii/jaciii14.html#LeeKL10,https://doi.org/10.20965/jaciii.2010.p0555 +Koji Miyagi,Flowgraph Editor for Legal Articles.,1998,2,JACIII,1,db/journals/jaciii/jaciii2.html#MiyagiMT98,https://doi.org/10.20965/jaciii.1998.p0034 +Fumiko Kano Glückstad,Aligning Mental Representations.,2013,17,JACIII,4,db/journals/jaciii/jaciii17.html#Gluckstad13,https://doi.org/10.20965/jaciii.2013.p0663 +Satoshi Takumi,Agglomerative Hierarchical Clustering Without Reversals on Dendrograms Using Asymmetric Similarity Measures.,2012,16,JACIII,7,db/journals/jaciii/jaciii16.html#TakumiM12,https://doi.org/10.20965/jaciii.2012.p0807 +Atsushi Wada,Is Gradient Descent Update Consistent with Accuracy-Based Learning Classifier System?.,2009,13,JACIII,6,db/journals/jaciii/jaciii13.html#WadaT09a,https://doi.org/10.20965/jaciii.2009.p0640 +Chiaki Watanabe,Intelligent Information Presentation Corresponding to User Request Based on Collaboration Between Text and 2D Charts.,2008,12,JACIII,1,db/journals/jaciii/jaciii12.html#WatanabeK08,https://doi.org/10.20965/jaciii.2008.p0010 +Yuchi Kanzawa,A Maximizing Model of Bezdek-Like Spherical Fuzzy c-Means.,2015,19,JACIII,5,db/journals/jaciii/jaciii19.html#Kanzawa15a,https://doi.org/10.20965/jaciii.2015.p0662 +Hiroshi Shiratsuchi,Effects of Initialization on Rule Extraction in Structural Learning.,2008,12,JACIII,1,db/journals/jaciii/jaciii12.html#ShiratsuchiGIK08,https://doi.org/10.20965/jaciii.2008.p0057 +Xiaolan Zhou,Using Data Mining on Students' Learning Features: A Clustering Approach for Student Classification.,2016,20,JACIII,7,db/journals/jaciii/jaciii20.html#ZhouAZD16,https://doi.org/10.20965/jaciii.2016.p1141 +Aryuanto Soetedjo,An Efficient Algorithm for Traffic Sign Detection.,2006,10,JACIII,3,db/journals/jaciii/jaciii10.html#SoetedjoY06,https://doi.org/10.20965/jaciii.2006.p0409 +Michinori Nakata,A Semantic-Ambiguity-Free Relational Model for Handling Imperfect Information1.,1999,3,JACIII,1,db/journals/jaciii/jaciii3.html#Nakata99,https://doi.org/10.20965/jaciii.1999.p0003 +Yuta Tokumi,Development of a Nutritional Management System for a Healthy Eating Habits Support System.,2013,17,JACIII,2,db/journals/jaciii/jaciii17.html#TokumiHT13,https://doi.org/10.20965/jaciii.2013.p0324 +Mitsuhiro Hayase,Posture Estimation of Human Body Based on Connection Relations of 3D Ellipsoidal Models.,2010,14,JACIII,6,db/journals/jaciii/jaciii14.html#HayaseS10,https://doi.org/10.20965/jaciii.2010.p0638 +Witold Pedrycz,Representation and Propagation of Information Granules in Rule-based Computing.,2000,4,JACIII,1,db/journals/jaciii/jaciii4.html#PedryczV00,https://doi.org/10.20965/jaciii.2000.p0102 +Yoichiro Maeda,Automatic Generation of Musical Tone Row and Rhythm Based on the Twelve-Tone Technique Using Genetic Algorithm.,2010,14,JACIII,3,db/journals/jaciii/jaciii14.html#MaedaK10,https://doi.org/10.20965/jaciii.2010.p0288 +Zhenyuan Xu,PSO-Particle Filter-Based Biometric Measurement for Human Tracking.,2012,16,JACIII,4,db/journals/jaciii/jaciii16.html#XuW12,https://doi.org/10.20965/jaciii.2012.p0533 +Miho Harata,Emotion Generation Model with Growth Functions for Robots.,2013,17,JACIII,2,db/journals/jaciii/jaciii17.html#HarataT13,https://doi.org/10.20965/jaciii.2013.p0335 +Takuto Yanagida,An Assessment Tool for Effective Monitoring of Autonomic Nervous System Activity in Healthy People.,2014,18,JACIII,3,db/journals/jaciii/jaciii18.html#YanagidaONSM14,https://doi.org/10.20965/jaciii.2014.p0297 +Yang Yang,A Cooperative Coevolutionary Stock Trading Model Using Genetic Network Programming-Sarsa.,2012,16,JACIII,5,db/journals/jaciii/jaciii16.html#YangHMH12,https://doi.org/10.20965/jaciii.2012.p0581 +Hajime Nobuhara,Fast Iterative Solving Method of Various Types of Fuzzy Relational Equations and its Application to Image Reconstruction.,2001,5,JACIII,2,db/journals/jaciii/jaciii5.html#NobuharaTH01,https://doi.org/10.20965/jaciii.2001.p0090 +Akio Doi,Tailor-Made Plate Design and Manufacturing System for Treating Bone Fractures in Small Animals.,2013,17,JACIII,4,db/journals/jaciii/jaciii17.html#DoiTSKNO13,https://doi.org/10.20965/jaciii.2013.p0588 +Yosuke Uozumi,Automated Femoral Stem Canal Fill Ratio Evaluation for Bipolar Hip Arthroplasty in 2D X-Ray Image.,2018,22,JACIII,3,db/journals/jaciii/jaciii22.html#UozumiNO18,https://doi.org/10.20965/jaciii.2018.p0333 +Minh Tuan Pham,Feature Extraction with Space Folding Model and its Application to Machine Learning.,2011,15,JACIII,6,db/journals/jaciii/jaciii15.html#PhamYFT11,https://doi.org/10.20965/jaciii.2011.p0662 +Tadashi Kimura,A Fuzzy Inference System for Identifying Tissue Elasticity Using Ultrasound.,2003,7,JACIII,1,db/journals/jaciii/jaciii7.html#KimuraNKKHT03,https://doi.org/10.20965/jaciii.2003.p0031 +Bing Xu,The Determinants of the Textile Index: Linear or Nonlinear.,2015,19,JACIII,3,db/journals/jaciii/jaciii19.html#XuHY15,https://doi.org/10.20965/jaciii.2015.p0335 +Nobuhiko Kondo,RBF Networks Ensemble Construction based on Evolutionary Multi-objective Optimization.,2008,12,JACIII,3,db/journals/jaciii/jaciii12.html#KondoHU08,https://doi.org/10.20965/jaciii.2008.p0297 +Kiyoshi Izumi,Risk Evaluation by Human Trajectory Simulation Based on Real Data.,2011,15,JACIII,2,db/journals/jaciii/jaciii15.html#IzumiNM11,https://doi.org/10.20965/jaciii.2011.p0220 +Satoshi Miura,Evaluation of Hand-Eye Coordination Based on Brain Activity.,2015,19,JACIII,1,db/journals/jaciii/jaciii19.html#MiuraKKSNNYF15,https://doi.org/10.20965/jaciii.2015.p0143 +Shuxin Ding,An Improved Particle Swarm Optimization Deployment for Wireless Sensor Networks.,2014,18,JACIII,2,db/journals/jaciii/jaciii18.html#DingC0X14,https://doi.org/10.20965/jaciii.2014.p0107 +Toshihiko Watanabe,Modeling Approach Based on Modular Fuzzy Model.,2012,16,JACIII,5,db/journals/jaciii/jaciii16.html#WatanabeS12,https://doi.org/10.20965/jaciii.2012.p0653 +Jilai Zhou,Extraction and Classification of the Cultural Relic Model Based on Local Geometric Features.,2016,20,JACIII,6,db/journals/jaciii/jaciii20.html#ZhouZGW16,https://doi.org/10.20965/jaciii.2016.p1013 +Kai Xu,Speed-Sensorless Vector Control Based on ANN MRAS for Induction Motor Drives.,2015,19,JACIII,1,db/journals/jaciii/jaciii19.html#XuL15,https://doi.org/10.20965/jaciii.2015.p0127 +Yicheng Wei,Building a Type-2 Fuzzy Qualitative Regression Model.,2012,16,JACIII,4,db/journals/jaciii/jaciii16.html#WeiW12,https://doi.org/10.20965/jaciii.2012.p0527 +Tohru Irie,Synergetic Stereo Matching Algorithm for Occlusion and Reversal Position.,2003,7,JACIII,2,db/journals/jaciii/jaciii7.html#IrieMI03,https://doi.org/10.20965/jaciii.2003.p0178 +Jesus Adrian Garcia Sanchez,Deep Level Emotion Understanding Using Customized Knowledge for Human-Robot Communication.,2015,19,JACIII,1,db/journals/jaciii/jaciii19.html#SanchezOSDH15,https://doi.org/10.20965/jaciii.2015.p0091 +Guohun Zhu,Evaluating Functional Connectivity in Alcoholics Based on Maximal Weight Matching.,2011,15,JACIII,9,db/journals/jaciii/jaciii15.html#ZhuLW11,https://doi.org/10.20965/jaciii.2011.p1221 +Marin Yasugi,Relationship Between Cerebral Aneurysm Development and Cerebral Artery Shape.,2018,22,JACIII,2,db/journals/jaciii/jaciii22.html#YasugiHNK18,https://doi.org/10.20965/jaciii.2018.p0249 +Do-Yeon Kim,Implementation of an Intelligent System for Identifying Vessels Exhibiting Abnormal Navigation Patterns.,2014,18,JACIII,4,db/journals/jaciii/jaciii18.html#KimJKKK14,https://doi.org/10.20965/jaciii.2014.p0665 +Hassan Rezaei,New Similarity Measures of Intuitionistic Fuzzy Sets.,2007,11,JACIII,2,db/journals/jaciii/jaciii11.html#RezaeiM07,https://doi.org/10.20965/jaciii.2007.p0202 +Boyang Li,Support Vector Machine Classifier with WHM Offset for Unbalanced Data.,2008,12,JACIII,1,db/journals/jaciii/jaciii12.html#LiHH08,https://doi.org/10.20965/jaciii.2008.p0094 +Hirohiko Honda,Efficiency Improvement of Information Acquisition in PC Operation with Auditory Signal.,2012,16,JACIII,1,db/journals/jaciii/jaciii16.html#HondaT12,https://doi.org/10.20965/jaciii.2012.p0124 +Tetsuya Toyota,Analysis and Visualization of Japanese Law Networks Based on Granular Computing -Visual Law: Visualization System of Japanese Law-.,2010,14,JACIII,2,db/journals/jaciii/jaciii14.html#ToyotaN10,https://doi.org/10.20965/jaciii.2010.p0150 +Tsuyoshi Taki,Analysis and Simulation of Group Behavior Using a Dynamic Sphere of Influence.,2005,9,JACIII,2,db/journals/jaciii/jaciii9.html#TakiH05,https://doi.org/10.20965/jaciii.2005.p0159 +Jianqiang Yi,Trajectory Tracking Control of Unconstrained Object Using the SIRMs Dynamically Connected Fuzzy Inference Model.,2000,4,JACIII,4,db/journals/jaciii/jaciii4.html#YiYH00,https://doi.org/10.20965/jaciii.2000.p0302 +László Horváth,Virtual Technology Based Associative Integration of Modeling of Mechanical Parts.,2001,5,JACIII,5,db/journals/jaciii/jaciii5.html#HorvathR01,https://doi.org/10.20965/jaciii.2001.p0269 +Jianqi An,Modeling of High Temperature Gas Flow 3D Distribution in BF Throat Based on the Computational Fluid Dynamics.,2015,19,JACIII,2,db/journals/jaciii/jaciii19.html#AnPC015,https://doi.org/10.20965/jaciii.2015.p0269 +Yonghua Xiong,Third-Party Broker-Based Resource Management in Mobile Computing.,2016,20,JACIII,2,db/journals/jaciii/jaciii20.html#XiongLJY16,https://doi.org/10.20965/jaciii.2016.p0262 +Midori Serizawa,Topic Tracking Based on Identifying Proper Number of the Latent Topics in Documents.,2012,16,JACIII,5,db/journals/jaciii/jaciii16.html#SerizawaK12,https://doi.org/10.20965/jaciii.2012.p0611 +Yasufumi Takama,Topic-based Intelligent Support System for Information Retrieval.,2000,4,JACIII,6,db/journals/jaciii/jaciii4.html#TakamaH00,https://doi.org/10.20965/jaciii.2000.p0457 +Xiaoni Wang,3D Face Recognition Based on Regional Shape Maps.,2018,22,JACIII,1,db/journals/jaciii/jaciii22.html#Wang18,https://doi.org/10.20965/jaciii.2018.p0141 +Ken Nagasaka,Development and Current State of Smart Grids: A Review.,2017,21,JACIII,1,db/journals/jaciii/jaciii21.html#Nagasaka17,https://doi.org/10.20965/jaciii.2017.p0049 +Manabu Nii,Rule Representation for Nursing-Care Process Evaluation Using Decision Tree Techniques.,2014,18,JACIII,6,db/journals/jaciii/jaciii18.html#NiiTMUS14,https://doi.org/10.20965/jaciii.2014.p0918 +Eichi Tamura,Movement Operation Interaction System for Mobility Robot Using Finger-Pointing Recognition.,2017,21,JACIII,4,db/journals/jaciii/jaciii21.html#TamuraYYSY17,https://doi.org/10.20965/jaciii.2017.p0709 +András Róka,Edge Detection Model Based on Involuntary Tremors and Drifts of the Eye.,2007,11,JACIII,6,db/journals/jaciii/jaciii11.html#RokaCRB07,https://doi.org/10.20965/jaciii.2007.p0648 +Ernest Czogala,A Classifier Based on Neuro-Fuzzy Inference System Ernest.,1999,3,JACIII,4,db/journals/jaciii/jaciii3.html#CzogalaLH99,https://doi.org/10.20965/jaciii.1999.p0282 +Takuto Yanagida,A Tool for Visualizing the Behavior of Fuzzy Constraint Satisfaction Solvers.,2010,14,JACIII,5,db/journals/jaciii/jaciii14.html#YanagidaKN10,https://doi.org/10.20965/jaciii.2010.p0425 +Wilfried Elmenreich,Editorial: Special Issue on Computational Cybernetics.,2005,9,JACIII,4,db/journals/jaciii/jaciii9.html#ElmenreichR05,https://doi.org/10.20965/jaciii.2005.p0345 +Takehisa Onisawa,Interactive Logo-Design System with an Impression-Factors Space.,2017,21,JACIII,3,db/journals/jaciii/jaciii21.html#OnisawaY17,https://doi.org/10.20965/jaciii.2017.p0559 +Imre J. Rudas,A Combined Solution of the Inverse Kinematic Task in the Vicinity of the Singularities.,2004,8,JACIII,5,db/journals/jaciii/jaciii8.html#RudasTBSK04,https://doi.org/10.20965/jaciii.2004.p0514 +Leon Reznik,Intelligent Intrusion Detection Based on Genetically Tuned Artificial Neural Networks.,2010,14,JACIII,6,db/journals/jaciii/jaciii14.html#ReznikAW10,https://doi.org/10.20965/jaciii.2010.p0708 +Takanari Tanabata,Interactive Data Mining Tool for Microarray Data Analysis Using Formal Concept Analysis.,2012,16,JACIII,2,db/journals/jaciii/jaciii16.html#TanabataHHN12,https://doi.org/10.20965/jaciii.2012.p0273 +Yuji Yoshida,Risk Analysis of Portfolios Under Uncertainty: Minimizing Average Rates of Falling.,2011,15,JACIII,1,db/journals/jaciii/jaciii15.html#Yoshida11,https://doi.org/10.20965/jaciii.2011.p0056 +Mirko Malekovic,Incorporating Infatuation in Multi-Agent Systems.,2006,10,JACIII,4,db/journals/jaciii/jaciii10.html#MalekovicC06,https://doi.org/10.20965/jaciii.2006.p0517 +Kiyohiko Uehara,Infinite-Level Interpolation for Inference with Sparse Fuzzy Rules: Fundamental Analysis Toward Practical Use.,2013,17,JACIII,1,db/journals/jaciii/jaciii17.html#UeharaH13,https://doi.org/10.20965/jaciii.2013.p0044 +Kaoru Shimada,Genetic Network Programming with Acquisition Mechanisms of Association Rules.,2006,10,JACIII,1,db/journals/jaciii/jaciii10.html#ShimadaHH06,https://doi.org/10.20965/jaciii.2006.p0102 +Keiko Zaima,Conditions to Diffuse Green Management into SMEs and the Role of Knowledge Support: Agent-Based Modeling.,2013,17,JACIII,2,db/journals/jaciii/jaciii17.html#Zaima13,https://doi.org/10.20965/jaciii.2013.p0252 +Yukihiro Hamasuna,Cluster Validity Measures for Network Data.,2018,22,JACIII,4,db/journals/jaciii/jaciii22.html#HamasunaKOE18,https://doi.org/10.20965/jaciii.2018.p0544 +M. Nasir Uddin,Fuzzy Logic Based Speed Control of an IPM Synchronous Motor Drive.,2000,4,JACIII,3,db/journals/jaciii/jaciii4.html#UddinR00,https://doi.org/10.20965/jaciii.2000.p0212 +Sabiha Ould Yahia,Fuzzy Querying of Evolutive Situations: Application to Driving Situations.,2005,9,JACIII,1,db/journals/jaciii/jaciii9.html#YahiaL05,https://doi.org/10.20965/jaciii.2005.p0013 +Toru Yoshida,Analysis of Pareto Solutions Based on Non-Correspondence in Spread Between Objective Space and Design Variable Space.,2015,19,JACIII,5,db/journals/jaciii/jaciii19.html#YoshidaY15,https://doi.org/10.20965/jaciii.2015.p0681 +Eiichi Matsunaga,Using the Characteristic Equation to Estimate the Initial Values for Numerical Forecasts.,2016,20,JACIII,7,db/journals/jaciii/jaciii20.html#MatsunagaO16,https://doi.org/10.20965/jaciii.2016.p1147 +Mika Sato-Ilic,On Dynamic Clustering Models for 3-way Data.,1999,3,JACIII,1,db/journals/jaciii/jaciii3.html#Sato-Ilic99,https://doi.org/10.20965/jaciii.1999.p0028 +Kiyoshi Akama,Formalization of the Equivalent Transformation Computation Model.,2006,10,JACIII,3,db/journals/jaciii/jaciii10.html#AkamaN06,https://doi.org/10.20965/jaciii.2006.p0245 +Fusaomi Nagata,A Workmanlike Orthogonal-Type Robot with a Force Input Device.,2011,15,JACIII,7,db/journals/jaciii/jaciii15.html#NagataMYSIW11,https://doi.org/10.20965/jaciii.2011.p0888 +Hidekazu Furuki,Fractal-Based Analysis for the Energy Consumption Efficiency of Biological Networks.,2013,17,JACIII,6,db/journals/jaciii/jaciii17.html#FurukiSS13,https://doi.org/10.20965/jaciii.2013.p0919 +Jie Ji,Document Analysis System Based on Awareness Learning.,2011,15,JACIII,9,db/journals/jaciii/jaciii15.html#JiCZ11,https://doi.org/10.20965/jaciii.2011.p1230 +Charles Baylis,Efficient Optimization Using Experimental Queries: A Peak-Search Algorithm for Efficient Load-Pull Measurements.,2011,15,JACIII,1,db/journals/jaciii/jaciii15.html#BaylisDLMR11,https://doi.org/10.20965/jaciii.2011.p0013 +Toshio Fukuda,Robotic System based on Computational Intelligence - Evolutionary Generation of Regrasping Motion.,2000,4,JACIII,6,db/journals/jaciii/jaciii4.html#FukudaH00,https://doi.org/10.20965/jaciii.2000.p0437 +Siti Sendari,Fuzzy Genetic Network Programming with Noises for Mobile Robot Navigation.,2011,15,JACIII,7,db/journals/jaciii/jaciii15.html#SendariMTH11,https://doi.org/10.20965/jaciii.2011.p0767 +Keiki Takadama,Editorial: Cutting Edge of Reinforcement Learning and its Hybrid Methods.,2017,21,JACIII,5,db/journals/jaciii/jaciii21.html#TakadamaM17,https://doi.org/10.20965/jaciii.2017.p0833 +József Gáti,Implementation of Course Model Driven Virtual Classroom in Higher Education.,2006,10,JACIII,4,db/journals/jaciii/jaciii10.html#GatiK06,https://doi.org/10.20965/jaciii.2006.p0504 +Samantha Denise F. Hilado,Implementation of Wavelets and Artificial Neural Networks in Colonic Histopathological Classification.,2014,18,JACIII,5,db/journals/jaciii/jaciii18.html#HiladoLGDA14,https://doi.org/10.20965/jaciii.2014.p0792 +Ayumi Kato,Extraction of Food-Related Onomatopoeia from Food Reviews and its Application to Restaurant Search.,2014,18,JACIII,3,db/journals/jaciii/jaciii18.html#KatoFSM14,https://doi.org/10.20965/jaciii.2014.p0418 +Shigueo Nomura,Improved MLP Learning via Orthogonal Bipolar Target Vectors.,2005,9,JACIII,6,db/journals/jaciii/jaciii9.html#NomuraYKKS05,https://doi.org/10.20965/jaciii.2005.p0580 +Yoshitsugu Aoki,New Approach for Antisense Oligonucleotide-Mediated Exon Skipping in Duchenne Muscular Dystrophy.,2012,16,JACIII,4,db/journals/jaciii/jaciii16.html#AokiNT12,https://doi.org/10.20965/jaciii.2012.p0521 +Kazuki Kobayashi,Motion Overlap for a Mobile Robot to Express its Mind.,2007,11,JACIII,8,db/journals/jaciii/jaciii11.html#KobayashiY07,https://doi.org/10.20965/jaciii.2007.p0964 +Yinlai Jiang,Time-Series Data Analysis Using Sliding Window Based SVD for Motion Evaluation.,2017,21,JACIII,7,db/journals/jaciii/jaciii21.html#JiangHWI17,https://doi.org/10.20965/jaciii.2017.p1240 +Junko Ichino,Psychological Effects of Color in Overview+Detail Document Interface.,2010,14,JACIII,7,db/journals/jaciii/jaciii14.html#IchinoTI10,https://doi.org/10.20965/jaciii.2010.p0860 +Jong-Hwan Kim,Humanoid Robot HanSaRam: Recent Progress and Developments.,2004,8,JACIII,1,db/journals/jaciii/jaciii8.html#KimKKPPMRSK04,https://doi.org/10.20965/jaciii.2004.p0045 +Viktor S. Ulyanov,Computational Intelligence with New Physical Controllability Measure for Robust Control Algorithm of Extension- Cableless Robotic Unicycle.,1999,3,JACIII,2,db/journals/jaciii/jaciii3.html#UlyanovYUT99,https://doi.org/10.20965/jaciii.1999.p0136 +Junhong Liu,Approximation by Growing Radial Basis Function Networks Using the Differential-Evolution-Based Algorithm.,2005,9,JACIII,5,db/journals/jaciii/jaciii9.html#LiuL05,https://doi.org/10.20965/jaciii.2005.p0540 +Jin-Mao Wei,Novel Approach to Decision-Tree Construction.,2004,8,JACIII,3,db/journals/jaciii/jaciii8.html#Jin-MaoSM04,https://doi.org/10.20965/jaciii.2004.p0332 +Dumitru Baleanu,About Fractional Calculus of Singular Lagrangians.,2005,9,JACIII,4,db/journals/jaciii/jaciii9.html#Baleanu05,https://doi.org/10.20965/jaciii.2005.p0395 +Mu Li,Stabilization of Optimal Dynamic Quantized System with Packet Loss.,2014,18,JACIII,2,db/journals/jaciii/jaciii18.html#LiD0014,https://doi.org/10.20965/jaciii.2014.p0128 +Yukihiro Hamasuna,Comparison of Cluster Validity Measures Based x-Means.,2016,20,JACIII,5,db/journals/jaciii/jaciii20.html#HamasunaKE16,https://doi.org/10.20965/jaciii.2016.p0845 +Junji Nishino,Hierarchical Fuzzy Intelligent Controller for Gymnastic Bar Actions.,1999,3,JACIII,2,db/journals/jaciii/jaciii3.html#NishinoTSOO99,https://doi.org/10.20965/jaciii.1999.p0106 +Mohamed Slim Masmoudi,Implementation of a Real-Time FPGA-Based Intelligent Parallel Parking System.,2008,12,JACIII,4,db/journals/jaciii/jaciii12.html#MasmoudiTSKMD08,https://doi.org/10.20965/jaciii.2008.p0348 +Jingjing Wang,A 3D Pseudo-Reconstruction from Single ImageBased on Vanishing Point.,2009,13,JACIII,4,db/journals/jaciii/jaciii13.html#WangDTGH09,https://doi.org/10.20965/jaciii.2009.p0393 +Woong Choi,Generation of Character Motion by Using Reactive Motion Capture System with Force Feedback.,2008,12,JACIII,2,db/journals/jaciii/jaciii12.html#ChoiHWHS08,https://doi.org/10.20965/jaciii.2008.p0116 +Afsar Saranli,Rank-Based Multiple Classifier Decision Combination: A Theoretical Study.,2001,5,JACIII,1,db/journals/jaciii/jaciii5.html#SaranliD01,https://doi.org/10.20965/jaciii.2001.p0037 +Takeshi Miura,A Competitive Learning Algorithm with Controlling Maximum Distortion.,2005,9,JACIII,2,db/journals/jaciii/jaciii9.html#MiuraSSN05,https://doi.org/10.20965/jaciii.2005.p0166 +Makoto Fukumoto,An Extended Interactive Evolutionary Computation Using Heart Rate Variability as Fitness Value for Composing Music Chord Progression.,2011,15,JACIII,9,db/journals/jaciii/jaciii15.html#FukumotoNOI11,https://doi.org/10.20965/jaciii.2011.p1329 +Satoshi Nishiguchi,Automatic Video Recording of Lecture's Audience with Activity Analysis and Equalization of Scale for Students Observation.,2004,8,JACIII,2,db/journals/jaciii/jaciii8.html#NishiguchiKKM04,https://doi.org/10.20965/jaciii.2004.p0181 +Isao Hayashi,Optimal Location of Wireless LAN Access Points Using Fuzzy ID3.,2009,13,JACIII,2,db/journals/jaciii/jaciii13.html#HayashiKAMI09,https://doi.org/10.20965/jaciii.2009.p0128 +Ken Yeh,Application of Adaptive Fuzzy Sliding Mode Control for Bridges.,2001,5,JACIII,3,db/journals/jaciii/jaciii5.html#YehC01,https://doi.org/10.20965/jaciii.2001.p0172 +Tomohito Esaki,Fuzzy Clustering Based on Total Uncertainty Degree.,2007,11,JACIII,8,db/journals/jaciii/jaciii11.html#EsakiHT07,https://doi.org/10.20965/jaciii.2007.p0897 +Bhekisipho Twala,When Partly Missing Data Matters in Software Effort Development Prediction.,2017,21,JACIII,5,db/journals/jaciii/jaciii21.html#Twala17,https://doi.org/10.20965/jaciii.2017.p0803 +Amar Khoukhi,Multiagent Architecture Combined with a Multicontract Protocol for FMS Control.,2001,5,JACIII,4,db/journals/jaciii/jaciii5.html#KhoukhiM01,https://doi.org/10.20965/jaciii.2001.p0201 +Akito Fukuda,A Pseudo Data Generation Method and a Two-Stage Quantitation Method for Simultaneous Determination Sensor of Nucleotide Derivatives.,2007,11,JACIII,7,db/journals/jaciii/jaciii11.html#FukudaKMSH07,https://doi.org/10.20965/jaciii.2007.p0751 +Adiljan Yimit,2D Direction Histogram-Based Rényi Entropic Multilevel Thresholding.,2018,22,JACIII,3,db/journals/jaciii/jaciii22.html#YimitH18,https://doi.org/10.20965/jaciii.2018.p0369 +Tadashi Kondo,Multilayered GMDH-Type Neural Network with Radial Basis Functions and its Application to 3-Dimensional Medical Image Recognition of the Liver.,2007,11,JACIII,1,db/journals/jaciii/jaciii11.html#KondoUP07,https://doi.org/10.20965/jaciii.2007.p0096 +Domonkos Tikk,Fuzzy Rule Interpolation and Extrapolation Techniques: Criteria and Evaluation Guidelines.,2011,15,JACIII,3,db/journals/jaciii/jaciii15.html#TikkJKW11,https://doi.org/10.20965/jaciii.2011.p0254 +Yusuke Takahashi,Systemic-Functional Context-Sensitive Text Generation in the Framework of Everyday Language Computing.,2006,10,JACIII,6,db/journals/jaciii/jaciii10.html#TakahashiK06,https://doi.org/10.20965/jaciii.2006.p0791 +Yusuke Tamura,Attentive Deskwork Support System.,2010,14,JACIII,7,db/journals/jaciii/jaciii14.html#TamuraSAO10,https://doi.org/10.20965/jaciii.2010.p0758 +Komei Arasawa,Automatic Baseball Video Tagging Based on Voice Pattern Prioritization and Recursive Model Localization.,2017,21,JACIII,7,db/journals/jaciii/jaciii21.html#ArasawaH17,https://doi.org/10.20965/jaciii.2017.p1262 +Paulo Pinheiro da Silva,How AI-Type Uncertainty Ideas Can Improve Inter-Disciplinary Collaboration and Education: Lessons from a Case Study.,2010,14,JACIII,6,db/journals/jaciii/jaciii14.html#SilvaVKK10,https://doi.org/10.20965/jaciii.2010.p0700 +Olivier Pauplin,Evolutionary Optimisation for Obstacle Detection and Avoidance in Mobile Robotics.,2005,9,JACIII,6,db/journals/jaciii/jaciii9.html#PauplinLLF05,https://doi.org/10.20965/jaciii.2005.p0622 +Shinji Hayashi,Robust Face Detection for Low-Resolution Images.,2006,10,JACIII,1,db/journals/jaciii/jaciii10.html#HayashiH06,https://doi.org/10.20965/jaciii.2006.p0093 +Hirofumi Suzaki,An Extension Approach for Neural Networks by Introducing a Nearest Neighbor Algorithm in Relative Coordinates.,2010,14,JACIII,4,db/journals/jaciii/jaciii14.html#SuzakiK10,https://doi.org/10.20965/jaciii.2010.p0325 +Satoshi Koizumi,Temporal-Hierarchical Emergency-Degree Inference System for Running Vehicles Using Image and Navigation Data.,2000,4,JACIII,1,db/journals/jaciii/jaciii4.html#KoizumiMTTH00,https://doi.org/10.20965/jaciii.2000.p0076 +Vishwanathan Mohan,Studies on an Electronic Analog of a Recurrent Neural Network with Retrieval Phase Weight Adaptations.,2005,9,JACIII,2,db/journals/jaciii/jaciii9.html#MohanJIG05,https://doi.org/10.20965/jaciii.2005.p0127 +Yasuyuki Murai,Distance Field Model Concept for Space Representation.,2007,11,JACIII,10,db/journals/jaciii/jaciii11.html#MuraiATTT07,https://doi.org/10.20965/jaciii.2007.p1241 +Hiroshi Takahashi,Visual Cue in the Peripheral Vision Field for a Driving Support System.,2017,21,JACIII,3,db/journals/jaciii/jaciii21.html#Takahashi17,https://doi.org/10.20965/jaciii.2017.p0543 +Sergei V. Ulyanov,Computational Intelligence for Robust Control Algorithms of Complex Dynamic Systems with Minimum Entropy Production.,1999,3,JACIII,2,db/journals/jaciii/jaciii3.html#UlyanovYUKHP99,https://doi.org/10.20965/jaciii.1999.p0082 +Qingbiao Meng,A Novel Taxi Dispatch System Integrating a Multi-Customer Strategy and Genetic Network Programming.,2010,14,JACIII,5,db/journals/jaciii/jaciii14.html#MengMYH10,https://doi.org/10.20965/jaciii.2010.p0442 +Jason Jianjun Gu,Intelligent Sensor Fusion in Robotic Prosthetic Eye System.,2004,8,JACIII,3,db/journals/jaciii/jaciii8.html#GuMCL04,https://doi.org/10.20965/jaciii.2004.p0313 +Masahiro Inuiguchi,Improving Interval Weight Estimations in Interval AHP by Relaxations.,2017,21,JACIII,7,db/journals/jaciii/jaciii21.html#InuiguchiI17,https://doi.org/10.20965/jaciii.2017.p1135 +Lawrence O. Hall,Generation of Fuzzy Rules from Decision Trees.,1998,2,JACIII,4,db/journals/jaciii/jaciii2.html#HallL98,https://doi.org/10.20965/jaciii.1998.p0128 +Hugang Han,Further Results on T-S Fuzzy Controller Design Subject to Input Constraint.,2008,12,JACIII,2,db/journals/jaciii/jaciii12.html#Han08,https://doi.org/10.20965/jaciii.2008.p0190 +Napat Harnpornchai,Optimal Outpatient Appointment System with Uncertain Parameters Using Adaptive-Penalty Genetic Algorithm.,2015,19,JACIII,5,db/journals/jaciii/jaciii19.html#HarnpornchaiASS15,https://doi.org/10.20965/jaciii.2015.p0585 +Yutaka Hatakeyama,Color Restoration Algorithm Based on Color Instance Under Low Illumination.,2007,11,JACIII,5,db/journals/jaciii/jaciii11.html#HatakeyamaMH07,https://doi.org/10.20965/jaciii.2007.p0445 +Masayasu Atsumi,Saliency-Driven Scene Learning and Recognition Based on Competitively Growing Neural Network Using Temporal Coding.,2005,9,JACIII,3,db/journals/jaciii/jaciii9.html#Atsumi05,https://doi.org/10.20965/jaciii.2005.p0235 +Kaoru Shimada,Alternate Genetic Network Programming with Association Rules Acquisition Mechanisms Between Attribute Families.,2006,10,JACIII,6,db/journals/jaciii/jaciii10.html#ShimadaHH06a,https://doi.org/10.20965/jaciii.2006.p0954 +Jinglu Hu,LimNet-Flexible Learning Network Containing Linear Properties.,1999,3,JACIII,4,db/journals/jaciii/jaciii3.html#HuHK99,https://doi.org/10.20965/jaciii.1999.p0303 +Kazuteru Miyazaki,Reinforcement Learning for Penalty Avoidance in Continuous State Spaces.,2007,11,JACIII,6,db/journals/jaciii/jaciii11.html#MiyazakiK07,https://doi.org/10.20965/jaciii.2007.p0668 +Satoshi Nishimura,CHARM as Activity Model to Share Knowledge and Transmit Procedural Knowledge and its Application to Nursing Guidelines Integration.,2013,17,JACIII,2,db/journals/jaciii/jaciii17.html#NishimuraKSWKHHM13,https://doi.org/10.20965/jaciii.2013.p0208 +Jorge Guerra,Fuzzy Configuration Space for Moving Obstacle Avoidance of Autonomous Mobile Robots.,2006,10,JACIII,1,db/journals/jaciii/jaciii10.html#GuerraNH06,https://doi.org/10.20965/jaciii.2006.p0026 +Alexander Stoytchev,Incorporating Motivation in a Hybrid Robot Architecture.,2004,8,JACIII,3,db/journals/jaciii/jaciii8.html#StoytchevA04,https://doi.org/10.20965/jaciii.2004.p0269 +Paavo Kukkurainen,Level Sets as a Topological Base Applied to Subgroups of a Group of Moebius Transformations.,2005,9,JACIII,5,db/journals/jaciii/jaciii9.html#Kukkurainen05,https://doi.org/10.20965/jaciii.2005.p0511 +Nives Klopw,Human Versus Robotic Shoulder Motion.,2001,5,JACIII,5,db/journals/jaciii/jaciii5.html#KlopwL01,https://doi.org/10.20965/jaciii.2001.p0294 +José António Tenreiro Machado,Implementing Discrete-time Fractional-order Controllers.,2001,5,JACIII,5,db/journals/jaciii/jaciii5.html#Machado01,https://doi.org/10.20965/jaciii.2001.p0279 +Koichi Furukawa,Abductive Reasoning as an Integrating Framework in Skill Acquisition.,2011,15,JACIII,8,db/journals/jaciii/jaciii15.html#FurukawaMK11,https://doi.org/10.20965/jaciii.2011.p0954 +Andrei Doncescu,Analysis of New Aggregation Operators: Mean 3Pi.,2007,11,JACIII,6,db/journals/jaciii/jaciii11.html#DoncescuRIE07,https://doi.org/10.20965/jaciii.2007.p0561 +Hirohiko Honda,Mouse Operation Support for the Physically-Challenged Persons who have Progressive Intractable Diseases.,2012,16,JACIII,1,db/journals/jaciii/jaciii16.html#Honda12,https://doi.org/10.20965/jaciii.2012.p0131 +Kiyohiko Uehara,Multi-Level Interpolation for Inference with Sparse Fuzzy Rules: An Extended Way of Generating Multi-Level Points.,2013,17,JACIII,2,db/journals/jaciii/jaciii17.html#UeharaH13a,https://doi.org/10.20965/jaciii.2013.p0127 +Yasufumi Takama,Interactive Document Clustering System Based on Coordinated Multiple Views.,2016,20,JACIII,1,db/journals/jaciii/jaciii20.html#TakamaT16,https://doi.org/10.20965/jaciii.2016.p0139 +Kazuhito Sawase,Management System for Tagged Image Databases Using Lattice Structures.,2010,14,JACIII,2,db/journals/jaciii/jaciii14.html#SawaseN10,https://doi.org/10.20965/jaciii.2010.p0155 +Songmin Jia,Network Distributed Monitoring System for Home Service Robots Based on RT Middleware.,2007,11,JACIII,7,db/journals/jaciii/jaciii11.html#JiaGT07,https://doi.org/10.20965/jaciii.2007.p0858 +Syoji Kobashi,Fuzzy Image Matching for Pose Recognition of Occluded Knee Implants Using Fluoroscopy Images.,2005,9,JACIII,2,db/journals/jaciii/jaciii9.html#KobashiTSYMKYHK05,https://doi.org/10.20965/jaciii.2005.p0181 +Tao Wu 0007,Researches on Temperature Control Strategy of SMHS-Type 3D Printing Based on Variable Universe Fuzzy Control.,2017,21,JACIII,1,db/journals/jaciii/jaciii21.html#WuTFLH17,https://doi.org/10.20965/jaciii.2017.p0166 +Carlos Iván Chesñevar,Combining Argumentation and Web Search Technology: Towards a Qualitative Approach for Ranking Results.,2005,9,JACIII,1,db/journals/jaciii/jaciii9.html#ChesnevarM05,https://doi.org/10.20965/jaciii.2005.p0053 +Youki Kamiya,An Incremental Neural Network for Online Supervised Learning and Topology Learning.,2007,11,JACIII,1,db/journals/jaciii/jaciii11.html#KamiyaFH07,https://doi.org/10.20965/jaciii.2007.p0087 +Hengjin Tang,Semi-Supervised Sequential Kernel Regression Models with Penalty Functions.,2015,19,JACIII,1,db/journals/jaciii/jaciii19.html#TangME15,https://doi.org/10.20965/jaciii.2015.p0051 +Hwachang Song,Smart Management of HVDC Interface Flow for Jeju Island System with High Penetration of Wind Energy.,2011,15,JACIII,7,db/journals/jaciii/jaciii15.html#SongYJL11,https://doi.org/10.20965/jaciii.2011.p0926 +Wen-an Zhang,Delay Compensation for Teleoperation Systems Based on Communication Disturbance Observers.,2016,20,JACIII,7,db/journals/jaciii/jaciii20.html#ZhangJQY16,https://doi.org/10.20965/jaciii.2016.p1044 +Kwang H. Lee,Three Dimensional Creativity: Three Navigations to Extend our Thoughts.,2013,17,JACIII,2,db/journals/jaciii/jaciii17.html#Lee13,https://doi.org/10.20965/jaciii.2013.p0157 +ádám B. Csapó,The Spiral Discovery Method: An Interpretable Tuning Model for CogInfoCom Channels.,2012,16,JACIII,2,db/journals/jaciii/jaciii16.html#CsapoB12,https://doi.org/10.20965/jaciii.2012.p0358 +Béla Lantos,Some Applications of Soft Computing Methods in System Modeling and Control.,1998,2,JACIII,3,db/journals/jaciii/jaciii2.html#Lantos98,https://doi.org/10.20965/jaciii.1998.p0082 +Aoi Honda,Axiomatization of Shapley Values of Fagle and Kern Type on Set Systems.,2008,12,JACIII,5,db/journals/jaciii/jaciii12.html#HondaO08,https://doi.org/10.20965/jaciii.2008.p0409 +Tomomasa Ohkubo,Design of New Pumping Cavity with Compound Parabolic Concentrator for Solar-Pumped Laser.,2016,20,JACIII,7,db/journals/jaciii/jaciii20.html#Ohkubo16,https://doi.org/10.20965/jaciii.2016.p1065 +Masayuki Honda,System Replacement to a New HIS and Data Warehouse.,2012,16,JACIII,1,db/journals/jaciii/jaciii16.html#HondaM12,https://doi.org/10.20965/jaciii.2012.p0038 +Takuji Watanabe,A New Improved Penalty Avoiding Rational Policy Making Algorithm for Keepaway with Continuous State Spaces.,2009,13,JACIII,6,db/journals/jaciii/jaciii13.html#WatanabeMK09,https://doi.org/10.20965/jaciii.2009.p0675 +Yuichi Yaguchi,Spherical Visualization of Image Data with Clustering.,2013,17,JACIII,4,db/journals/jaciii/jaciii17.html#YaguchiO13,https://doi.org/10.20965/jaciii.2013.p0573 +Kazuyuki Itoh,Mouse Operation Support Application for People Suffering from Neuromuscular Disease with Muscular Depression.,2017,21,JACIII,2,db/journals/jaciii/jaciii21.html#ItohNK17,https://doi.org/10.20965/jaciii.2017.p0301 +Guangxu Li,A Parameterization Based Correspondence Method for PDM Building.,2013,17,JACIII,1,db/journals/jaciii/jaciii17.html#LiKTI13,https://doi.org/10.20965/jaciii.2013.p0018 +Attila L. Bencsik,Kalman-Filter Based Control and Performance Monitoring Systems.,2004,8,JACIII,5,db/journals/jaciii/jaciii8.html#Bencsik04,https://doi.org/10.20965/jaciii.2004.p0535 +Yanyun Yao,Conditional Distribution Prediction of Stock Returns and its Application on Risk Aversion Analysis.,2018,22,JACIII,4,db/journals/jaciii/jaciii22.html#YaoX18,https://doi.org/10.20965/jaciii.2018.p0448 +Jun Rokui,Rapid Discriminative Learning.,2004,8,JACIII,2,db/journals/jaciii/jaciii8.html#Rokui04,https://doi.org/10.20965/jaciii.2004.p0108 +Maki Sakamoto,Communication Support System Between Japanese Patients and Foreign Doctors Using Onomatopoeia to Express Pain Symptoms.,2014,18,JACIII,6,db/journals/jaciii/jaciii18.html#SakamotoUDS14,https://doi.org/10.20965/jaciii.2014.p1020 +Hiroyuki Matsumoto,Towards the Systematization of the Japanese Maritime Traffic Law.,1997,1,JACIII,2,db/journals/jaciii/jaciii1.html#Matsumoto97,https://doi.org/10.20965/jaciii.1997.p0130 +Masahiro Inuiguchi,Structure-Based Attribute Reduction in Variable Precision Rough Set Models.,2006,10,JACIII,5,db/journals/jaciii/jaciii10.html#Inuiguchi06,https://doi.org/10.20965/jaciii.2006.p0657 +Chao Gan,Intelligent Nadaboost-ELM Modeling Method for Formation Drillability Using Well Logging Data.,2016,20,JACIII,7,db/journals/jaciii/jaciii20.html#GanCWCLHW16,https://doi.org/10.20965/jaciii.2016.p1103 +Xinghuo Yu,An Adaptive Penalty Function Method for Constrained Optimization with Evolutionary Programming.,2000,4,JACIII,2,db/journals/jaciii/jaciii4.html#YuW00,https://doi.org/10.20965/jaciii.2000.p0164 +Noel S. Gunay,An Optimized Multi-Output Fuzzy Logic Controller for Real-Time Control.,2008,12,JACIII,4,db/journals/jaciii/jaciii12.html#GunayD08,https://doi.org/10.20965/jaciii.2008.p0370 +Hideaki Orii,Image Completion Considering Local Orientations of Rotated Patterns.,2010,14,JACIII,2,db/journals/jaciii/jaciii14.html#OriiKMI10,https://doi.org/10.20965/jaciii.2010.p0193 +Jirapun Daengdej,Editorial.,2007,11,JACIII,10,db/journals/jaciii/jaciii11.html#DaengdejSNK07,https://doi.org/10.20965/jaciii.2007.p1175 +Tad Gonsalves,Genetic Algorithm for the Optimization of Collaborative Systems.,2007,11,JACIII,7,db/journals/jaciii/jaciii11.html#GonsalvesBI07,https://doi.org/10.20965/jaciii.2007.p0793 +Yoshiaki Sakakura,A Proposal of GA Using Symbiotic Evolutionary Viruses and its Virus Evaluation Techniques.,2004,8,JACIII,4,db/journals/jaciii/jaciii8.html#SakakuraTHK04,https://doi.org/10.20965/jaciii.2004.p0421 +Hyunjang Kong,Efficient Merging for Heterogeneous Domain Ontologies Based on WordNet.,2006,10,JACIII,5,db/journals/jaciii/jaciii10.html#KongHK06,https://doi.org/10.20965/jaciii.2006.p0733 +Katsuko T. Nakahira,Process of Acquiring Musical Performance Skills for Enhanced and#167*Awareness©8* Given by a Multimedia-Based Learning Approach.,2011,15,JACIII,9,db/journals/jaciii/jaciii15.html#NakahiraAF11,https://doi.org/10.20965/jaciii.2011.p1241 +Fei Shang,A Cross-Media Retrieval Algorithm Based on Consistency Preserving of Collaborative Representation.,2018,22,JACIII,2,db/journals/jaciii/jaciii22.html#ShangZSLZ18,https://doi.org/10.20965/jaciii.2018.p0280 +Chongshan Lv,An Improved Otsu's Thresholding Algorithm on Gesture Segmentation.,2017,21,JACIII,2,db/journals/jaciii/jaciii21.html#LvZL17,https://doi.org/10.20965/jaciii.2017.p0247 +Yasuo Kudo,Rough-Set-Based Interrelationship Mining for Incomplete Decision Tables.,2016,20,JACIII,5,db/journals/jaciii/jaciii20.html#KudoM16,https://doi.org/10.20965/jaciii.2016.p0712 +Indra Adji Sulistijono,Visual Perception for a Partner Robot Based on Computational Intelligence.,2005,9,JACIII,6,db/journals/jaciii/jaciii9.html#SulistijonoK05,https://doi.org/10.20965/jaciii.2005.p0654 +Dengfeng Xiao,Research on Carbon-Monoxide Utilization Ratio in the Blast Furnace Based on Kolmogorov Entropy.,2016,20,JACIII,2,db/journals/jaciii/jaciii20.html#XiaoA0H16,https://doi.org/10.20965/jaciii.2016.p0310 +Tadeo Armenta,Controlling Bus Suspension Using an Optimal Fuzzy Controller.,2007,11,JACIII,7,db/journals/jaciii/jaciii11.html#ArmentaS07,https://doi.org/10.20965/jaciii.2007.p0875 +Jie Xue,Discrete Morse Theory Based Dynamic P Systems.,2018,22,JACIII,1,db/journals/jaciii/jaciii22.html#XueLSY18,https://doi.org/10.20965/jaciii.2018.p0104 +Ramón F. Brena,Combining Local and Global Access to Ontologies in a Multiagent System.,2005,9,JACIII,1,db/journals/jaciii/jaciii9.html#BrenaC05,https://doi.org/10.20965/jaciii.2005.p0005 +Guangtong Gu,Housing Market Hedonic Price Study Based on Boosting Regression Tree.,2017,21,JACIII,6,db/journals/jaciii/jaciii21.html#GuX17,https://doi.org/10.20965/jaciii.2017.p1040 +Fan Guo,Motion-Based Depth Estimation for 2D to 3D Video Conversion.,2016,20,JACIII,1,db/journals/jaciii/jaciii20.html#GuoTZ16,https://doi.org/10.20965/jaciii.2016.p0013 +Naoto Yamaguchi,Application of Rough Set-Based Information Analysis to Questionnaire Data.,2014,18,JACIII,6,db/journals/jaciii/jaciii18.html#YamaguchiWNS14,https://doi.org/10.20965/jaciii.2014.p0953 +Wentao Gu,Does CEP Influence Corporate Value? Evidence from Chinese Manufacturing Enterprise.,2017,21,JACIII,6,db/journals/jaciii/jaciii21.html#GuZD17,https://doi.org/10.20965/jaciii.2017.p1102 +Federico Guedea-Elizalde,Building Intelligent Robotics Systems with Distributed Components.,2006,10,JACIII,2,db/journals/jaciii/jaciii10.html#Guedea-ElizaldeSKS06,https://doi.org/10.20965/jaciii.2006.p0173 +Tokuro Matsuo,Q-SEE: Qualitative Simulation Support System in Economic Education.,2006,10,JACIII,3,db/journals/jaciii/jaciii10.html#MatsuoKIS06,https://doi.org/10.20965/jaciii.2006.p0432 +Norikazu Ikoma,Real-Time Face Decorations of Enlarging Eyes and Whitening Skin in Video Based on Face Posture Estimation by Particle Filter.,2013,17,JACIII,3,db/journals/jaciii/jaciii17.html#IkomaZ13,https://doi.org/10.20965/jaciii.2013.p0392 +Jae Hoon Cho,A Variable Step Size Incremental Conductance Direct MPPT Method for Stand-Alone PV Systems.,2012,16,JACIII,7,db/journals/jaciii/jaciii16.html#ChoPHC12,https://doi.org/10.20965/jaciii.2012.p0881 +Keitaro Naruse,Mutual Localization of Multiple Sensor Node Robots.,2011,15,JACIII,9,db/journals/jaciii/jaciii15.html#NaruseFL11,https://doi.org/10.20965/jaciii.2011.p1269 +Xin Yao 0001,Editorial: Simulated Evolution and Learning.,2000,4,JACIII,2,db/journals/jaciii/jaciii4.html#Yao00,https://doi.org/10.20965/jaciii.2000.p0129 +Liang Xiao,Active Learning Based on Manual Skills for Students in Mechatronics Course.,2015,19,JACIII,2,db/journals/jaciii/jaciii19.html#XiaoZSC15,https://doi.org/10.20965/jaciii.2015.p0307 +Takehiro Yamaguchi,Extraction of Community Transition Rules from Data Streams as Large Graph Sequence.,2011,15,JACIII,8,db/journals/jaciii/jaciii15.html#YamaguchiN11,https://doi.org/10.20965/jaciii.2011.p1073 +Takahiro Kobayashi,Application of Cooperative Control to Petroleum Plants Using Fuzzy Supervisory Control and Model Predictive Multi-variable Control.,2001,5,JACIII,6,db/journals/jaciii/jaciii5.html#KobayashiT01,https://doi.org/10.20965/jaciii.2001.p0333 +Saori Kawasaki,Temporal Abstraction for Long-Term Test Changes in the Hepatitis Domain.,2003,7,JACIII,3,db/journals/jaciii/jaciii7.html#KawasakiNH03,https://doi.org/10.20965/jaciii.2003.p0348 +Yuchi Kanzawa,Bezdek-Type Fuzzified Co-Clustering Algorithm.,2015,19,JACIII,6,db/journals/jaciii/jaciii19.html#Kanzawa15c,https://doi.org/10.20965/jaciii.2015.p0852 +Tohgoroh Matsui,Acquiring a Government Bond Trading Strategy Using Reinforcement Learning.,2009,13,JACIII,6,db/journals/jaciii/jaciii13.html#MatsuiGI09,https://doi.org/10.20965/jaciii.2009.p0691 +Eduardo Masato Iyoda,Sigma-Pi Cascade Extended Hybrid Neural Network.,2002,6,JACIII,3,db/journals/jaciii/jaciii6.html#IyodaHZ02,https://doi.org/10.20965/jaciii.2002.p0126 +Max Q.-H. Meng,Editorial: Sampling Research on Advanced Computational Intelligence in Canada.,2000,4,JACIII,3,db/journals/jaciii/jaciii4.html#MengP00,https://doi.org/10.20965/jaciii.2000.p0187 +Angelo R. dela Cruz,Dynamic Rate Allocation Algorithm Using Adaptive LMS End-to-End Distortion Estimation for Video Transmission over Error Prone Network.,2016,20,JACIII,1,db/journals/jaciii/jaciii20.html#CruzVBD16,https://doi.org/10.20965/jaciii.2016.p0106 +Tzung-Pei Hong,A Fuzzy CDS-based Scheduling Algorithm for More Than Two Machine Centers.,2001,5,JACIII,4,db/journals/jaciii/jaciii5.html#HongWW01,https://doi.org/10.20965/jaciii.2001.p0239 +Slim Abdelbari,Non Linear Disturbance Accommodation Fuzzy Control.,2008,12,JACIII,2,db/journals/jaciii/jaciii12.html#AbdelbariE08,https://doi.org/10.20965/jaciii.2008.p0165 +Kohei Inoue,Robust Fuzzy Clustering Based on Similarity between Data.,2004,8,JACIII,2,db/journals/jaciii/jaciii8.html#InoueU04,https://doi.org/10.20965/jaciii.2004.p0115 +Kazumi Nakamatsu,Pipeline Valve Control Based on EVALPSN Safety Verification.,2006,10,JACIII,5,db/journals/jaciii/jaciii10.html#Nakamatsu06,https://doi.org/10.20965/jaciii.2006.p0647 +Takeshi Furuhashi,Editorial: Rule Extraction from Data.,1999,3,JACIII,5,db/journals/jaciii/jaciii3.html#Furuhashi99,https://doi.org/10.20965/jaciii.1999.p0339 +Qiyun Sun,A Novel Animation Method Based on Mesh Decimation.,2018,22,JACIII,2,db/journals/jaciii/jaciii22.html#SunWFC18,https://doi.org/10.20965/jaciii.2018.p0184 +Frank R. Hartman,A Commanding and Visualization Software Suite for Controlling the Mars Rovers and Other Planetary Robots.,2010,14,JACIII,1,db/journals/jaciii/jaciii14.html#HartmanCMWY10,https://doi.org/10.20965/jaciii.2010.p0004 +Takuro Moriyama,Adaptive Control Using an Oscillator Network with Capacitive Couplers.,2011,15,JACIII,6,db/journals/jaciii/jaciii15.html#MoriyamaK11,https://doi.org/10.20965/jaciii.2011.p0632 +Hiroshi Igarashi,Subliminal Calibration for Machine Operation.,2012,16,JACIII,1,db/journals/jaciii/jaciii16.html#Igarashi12,https://doi.org/10.20965/jaciii.2012.p0108 +Fei Yan,Multi-Channel Quantum Image Scrambling.,2016,20,JACIII,1,db/journals/jaciii/jaciii20.html#YanGIJY16,https://doi.org/10.20965/jaciii.2016.p0163 +Kotaro Hirasawa,Computing Higher Order Derivatives in Universal Learning Networks.,1998,2,JACIII,2,db/journals/jaciii/jaciii2.html#HirasawaHOM98,https://doi.org/10.20965/jaciii.1998.p0047 +Zheng Liu,A Searching and Tracking Framework for Multi-Robot Observation of Multiple Moving Targets.,2004,8,JACIII,1,db/journals/jaciii/jaciii8.html#LiuAS04,https://doi.org/10.20965/jaciii.2004.p0014 +Juan Rodriguez Ramirez,Event-Triggered Quantizers for Network Traffic Reduction.,2017,21,JACIII,6,db/journals/jaciii/jaciii21.html#RamirezMS17,https://doi.org/10.20965/jaciii.2017.p1111 +Saeed Bagheri Shouraki,Recursive Fuzzy Modeling Based on Fuzzy Interpolation.,1999,3,JACIII,2,db/journals/jaciii/jaciii3.html#ShourakiH99,https://doi.org/10.20965/jaciii.1999.p0114 +Nuno M. Fonseca Ferreira,Fractional Control of Coordinated Manipulators.,2007,11,JACIII,9,db/journals/jaciii/jaciii11.html#FerreiraM07,https://doi.org/10.20965/jaciii.2007.p1072 +Ali Benafia,From Linguistic to Conceptual: A Framework Based on a Pipeline for Building Ontologies from Texts.,2016,20,JACIII,6,db/journals/jaciii/jaciii20.html#BenafiaMMSB16,https://doi.org/10.20965/jaciii.2016.p0941 +Wei Wang 0147,Adaptive Critic Design with Local Gaussian Process Models.,2016,20,JACIII,7,db/journals/jaciii/jaciii20.html#WangCH16a,https://doi.org/10.20965/jaciii.2016.p1135 +Leon Palafox,4W1H and Particle Swarm Optimization for Human Activity Recognition.,2011,15,JACIII,7,db/journals/jaciii/jaciii15.html#PalafoxH11,https://doi.org/10.20965/jaciii.2011.p0793 +Masanori Tajima,Query Expansion Using Conceptual Fuzzy Sets for Search Engines.,2003,7,JACIII,1,db/journals/jaciii/jaciii7.html#TajimaKTT03,https://doi.org/10.20965/jaciii.2003.p0002 +Yuan Fang,A Switched Extend Kalman-Filter for Visual Servoing Applied in Nonholonomic Robot with the FOV Constraint.,2015,19,JACIII,2,db/journals/jaciii/jaciii19.html#FangZHYW15,https://doi.org/10.20965/jaciii.2015.p0185 +Tomohisa Takata,Performance Analysis of Quantum-Inspired Evolutionary Algorithm.,2011,15,JACIII,8,db/journals/jaciii/jaciii15.html#TakataIM11,https://doi.org/10.20965/jaciii.2011.p1095 +Elmer P. Dadios,Editorial.,2008,12,JACIII,4,db/journals/jaciii/jaciii12.html#Dadios08,https://doi.org/10.20965/jaciii.2008.p0327 +Hiroomi Hikawa,Hardware Feedback Self-Organizing Map and its Application to Mobile Robot Location Identification.,2007,11,JACIII,8,db/journals/jaciii/jaciii11.html#HikawaHH07,https://doi.org/10.20965/jaciii.2007.p0937 +Hamid Seridi,Approximate Reasoning in Supervised Classification Systems.,2006,10,JACIII,4,db/journals/jaciii/jaciii10.html#SeridiAMN06,https://doi.org/10.20965/jaciii.2006.p0586 +Dae Min Kang,Optimizing Friction Stir Welding of Al 6061 Alloy Using Statistical Analysis.,2014,18,JACIII,5,db/journals/jaciii/jaciii18.html#KangPL14,https://doi.org/10.20965/jaciii.2014.p0752 +Toshihiro Kaino,Composite Fuzzy Measure and its Application to Decision-Making.,2004,8,JACIII,3,db/journals/jaciii/jaciii8.html#KainoH04,https://doi.org/10.20965/jaciii.2004.p0252 +Imre J. Rudas,Editorial: Special Issue on Selected Papers INES2000.,2001,5,JACIII,5,db/journals/jaciii/jaciii5.html#RudasZ01,https://doi.org/10.20965/jaciii.2001.p0247 +Kazuyuki Masutomi,An Evolutionary Algorithm for Black-Box Chance-Constrained Function Optimization.,2013,17,JACIII,2,db/journals/jaciii/jaciii17.html#MasutomiNO13,https://doi.org/10.20965/jaciii.2013.p0272 +Richard Aló,Editorial.,2006,10,JACIII,3,db/journals/jaciii/jaciii10.html#AloK06,https://doi.org/10.20965/jaciii.2006.p0243 +Toshiharu Fujita,Mutually Dependent Markov Decision Processes.,2014,18,JACIII,6,db/journals/jaciii/jaciii18.html#FujitaK14,https://doi.org/10.20965/jaciii.2014.p0992 +Suzhen Huang,Mobile Transparent Computing to Enable Ubiquitous Operating Systems and Applications.,2014,18,JACIII,1,db/journals/jaciii/jaciii18.html#HuangWX14,https://doi.org/10.20965/jaciii.2014.p0032 +Dan-Yun Li,Control of a Stand-Alone Wind Energy Conversion Systemvia a Third-Harmonic Injection Indirect Matrix Converter.,2016,20,JACIII,3,db/journals/jaciii/jaciii20.html#LiSLW16,https://doi.org/10.20965/jaciii.2016.p0438 +Tzung-Pei Hong,Dynamically Adjusting Migration Rates for Multi-Population Genetic Algorithms.,2007,11,JACIII,4,db/journals/jaciii/jaciii11.html#HongLLL07,https://doi.org/10.20965/jaciii.2007.p0410 +Md. Monirul Kabir,A Backward Feature Selection by Creating Compact Neural Network Using Coherence Learning and Pruning.,2007,11,JACIII,6,db/journals/jaciii/jaciii11.html#KabirSM07,https://doi.org/10.20965/jaciii.2007.p0570 +Sadaaki Miyamoto,Algorithms of Hard c-Means Clustering Using Kernel Functions in Support Vector Machines.,2003,7,JACIII,1,db/journals/jaciii/jaciii7.html#MiyamotoN03,https://doi.org/10.20965/jaciii.2003.p0019 +Daiki Yamashita,Thermal Unit Scheduling for CO2 Reduction Including Wind Power and Electric Vehicles.,2013,17,JACIII,1,db/journals/jaciii/jaciii17.html#YamashitaYN13,https://doi.org/10.20965/jaciii.2013.p0109 +Yoshihiro Ichikawa,Designing Internal Reward of Reinforcement Learning Agents in Multi-Step Dilemma Problem.,2013,17,JACIII,6,db/journals/jaciii/jaciii17.html#IchikawaT13,https://doi.org/10.20965/jaciii.2013.p0926 +Toshiro Ogita,Improvement of PCA-Based Approximate Nearest Neighbor Search Using Distance Statistics.,2014,18,JACIII,4,db/journals/jaciii/jaciii18.html#OgitaINH14,https://doi.org/10.20965/jaciii.2014.p0658 +Tian Yu,Cooperative Transport by a Swarm Robotic System Based on CMA-NeuroES Approach.,2013,17,JACIII,6,db/journals/jaciii/jaciii17.html#YuYOMG13,https://doi.org/10.20965/jaciii.2013.p0932 +Kanta Tachibana,Self-Organizing Map with Generating and Moving Neurons in Visible Space.,2007,11,JACIII,6,db/journals/jaciii/jaciii11.html#TachibanaF07,https://doi.org/10.20965/jaciii.2007.p0626 +Alessandro Donati,Benefits of Using Innovative Tools for Diagnostics and Planning in ESA Mission Operations.,2011,15,JACIII,8,db/journals/jaciii/jaciii15.html#DonatiHP11,https://doi.org/10.20965/jaciii.2011.p1159 +Mokhtar Beldjehem,A Granular Unified Min-Max Fuzzy-Neuro Framework for Learning Fuzzy Systems.,2009,13,JACIII,5,db/journals/jaciii/jaciii13.html#Beldjehem09a,https://doi.org/10.20965/jaciii.2009.p0520 +Thinh Cao,Rough Set Model in Incomplete Decision Systems.,2017,21,JACIII,7,db/journals/jaciii/jaciii21.html#CaoYUSN17,https://doi.org/10.20965/jaciii.2017.p1221 +Atsushi Shibata,A Neural Network Structure Decomposition Based on Pruning and its Visualization Method.,2013,17,JACIII,3,db/journals/jaciii/jaciii17.html#ShibataLDH13,https://doi.org/10.20965/jaciii.2013.p0443 +Keiko Yamamoto,Visual Analysis of Health Checkup Data Using Multidimensional Scaling.,2012,16,JACIII,1,db/journals/jaciii/jaciii16.html#YamamotoTHK12,https://doi.org/10.20965/jaciii.2012.p0026 +Yu Wang,Pragmatic Factors Influencing Word Choice: An Examination Based on Corpus and the IR Method.,2011,15,JACIII,7,db/journals/jaciii/jaciii15.html#WangSO11,https://doi.org/10.20965/jaciii.2011.p0000 +Eugène C. Ezin,Pyramidal Structure Algorithm for Fingerprint Classification Based on Artificial Neural Networks.,2010,14,JACIII,1,db/journals/jaciii/jaciii14.html#Ezin10,https://doi.org/10.20965/jaciii.2010.p0063 +Yihsin Ho,An Intelligent Human Support System Using Motion Patterns and Environment Information.,2011,15,JACIII,6,db/journals/jaciii/jaciii15.html#HoMSSY11,https://doi.org/10.20965/jaciii.2011.p0723 +Juying Zeng,Nonparametric Optimization of Preference in Technical Efficiency in China.,2015,19,JACIII,3,db/journals/jaciii/jaciii19.html#Zeng15,https://doi.org/10.20965/jaciii.2015.p0430 +Kiril Tenekedjiev,Generic Database for Hybrid Bayesian Pattern Recognition.,2006,10,JACIII,3,db/journals/jaciii/jaciii10.html#TenekedjievKNH06,https://doi.org/10.20965/jaciii.2006.p0419 +Jiajun Lu,Location Detection of Informative Bright Region in Tunnel Scenes Using Lighting and Traffic Lane Cues.,2015,19,JACIII,2,db/journals/jaciii/jaciii19.html#LuDH15,https://doi.org/10.20965/jaciii.2015.p0255 +Ken Kumagai,The Influence of Perceived Rarity and Luxuriousness on Consumers' Brand Attitudes: Observations in Japan.,2016,20,JACIII,4,db/journals/jaciii/jaciii20.html#KumagaiN16,https://doi.org/10.20965/jaciii.2016.p0504 +Barna Reskó,Visual Cortex Inspired Intelligent Contour Detection.,2006,10,JACIII,5,db/journals/jaciii/jaciii10.html#ReskoPRB06,https://doi.org/10.20965/jaciii.2006.p0761 +Thanh Hung Tran,Robust Non-Overshoot Time Responses Using Cascade Sliding Mode-PID Control.,2007,11,JACIII,10,db/journals/jaciii/jaciii11.html#TranHN07,https://doi.org/10.20965/jaciii.2007.p1224 +Sho Yamauchi,Observation of Synchronization Phenomena in Structured Flocking Behavior.,2013,17,JACIII,5,db/journals/jaciii/jaciii17.html#YamauchiKS13,https://doi.org/10.20965/jaciii.2013.p0715 +Lily Lin,Fuzzy Nonlinear Programming for Production Inventory Based on Statistical Data.,2016,20,JACIII,1,db/journals/jaciii/jaciii20.html#LinL16,https://doi.org/10.20965/jaciii.2016.p0005 +Shoji Hirano,An Indiscernibility-Based Clustering Method with Iterative Refinement of Equivalence Relations -Rough Clustering-.,2003,7,JACIII,2,db/journals/jaciii/jaciii7.html#HiranoT03,https://doi.org/10.20965/jaciii.2003.p0169 +Wenjing Cai,Compensation for Input Nonlinearities in Repetitive Control Systems Based on Improved Equivalent-Input-Disturbance Approach.,2016,20,JACIII,1,db/journals/jaciii/jaciii20.html#Cai0SC16,https://doi.org/10.20965/jaciii.2016.p0146 +Jae-Won Jeong,Fingerprint Matching Algorithm Using String-Based MHC Detector Set.,2005,9,JACIII,2,db/journals/jaciii/jaciii9.html#JeongJS05,https://doi.org/10.20965/jaciii.2005.p0175 +Tadanari Taniguchi,Rule Reduction and Robust Control of Generalized Takagi-Sugeno Fuzzy Systems.,2000,4,JACIII,5,db/journals/jaciii/jaciii4.html#TaniguchiT00,https://doi.org/10.20965/jaciii.2000.p0373 +Seiki Akama,Prior's Three-Valued Modal Logic Q and its Possible Applications.,2007,11,JACIII,1,db/journals/jaciii/jaciii11.html#AkamaN07,https://doi.org/10.20965/jaciii.2007.p0105 +Pilar Bachiller,Optimizing and Learning Algorithm for Feed-forward Neural Networks.,2001,5,JACIII,1,db/journals/jaciii/jaciii5.html#BachillerG01,https://doi.org/10.20965/jaciii.2001.p0051 +Peng Li,Extraction of Web Site Evaluation Criteria and Automatic Evaluation.,2010,14,JACIII,4,db/journals/jaciii/jaciii14.html#LiY10,https://doi.org/10.20965/jaciii.2010.p0396 +Koji Murai,Toward New Practical Education Based on Professional Kansei.,2011,15,JACIII,3,db/journals/jaciii/jaciii15.html#MuraiHKFMHS11,https://doi.org/10.20965/jaciii.2011.p0370 +Tsutomu Miyoshi,Neighbor Size of Initial Node Exchange and its Influence for SOM Learning.,2007,11,JACIII,6,db/journals/jaciii/jaciii11.html#Miyoshi07,https://doi.org/10.20965/jaciii.2007.p0620 +József Sziray,A Test Model for Hardware and Software Systems.,2004,8,JACIII,5,db/journals/jaciii/jaciii8.html#Sziray04,https://doi.org/10.20965/jaciii.2004.p0523 +Yinlai Jiang,Directional Intention Identification for Running Control of an Omnidirectional Walker.,2010,14,JACIII,7,db/journals/jaciii/jaciii14.html#JiangWIAF10,https://doi.org/10.20965/jaciii.2010.p0784 +Yukihiro Hamasuna,On a Family of New Sequential Hard Clustering.,2015,19,JACIII,6,db/journals/jaciii/jaciii19.html#HamasunaE15b,https://doi.org/10.20965/jaciii.2015.p0759 +A. Reum Han,Extraction of Developmentally Important Genes from Microarray Data.,2005,9,JACIII,3,db/journals/jaciii/jaciii9.html#HanKRMLL05,https://doi.org/10.20965/jaciii.2005.p0277 +Michael Negnevitsky,Fuzzy Control of Back-Propagation Training.,2000,4,JACIII,6,db/journals/jaciii/jaciii4.html#NegnevitskyR00,https://doi.org/10.20965/jaciii.2000.p0408 +Yuki Hara,Run-Length Encoding Graphic Rules Applied to DNA-Coded Images and Animation Editable by Polymerase Chain Reactions.,2015,19,JACIII,1,db/journals/jaciii/jaciii19.html#HaraK15,https://doi.org/10.20965/jaciii.2015.p0005 +Muhammad Rahmat Widyanto,Various Defuzzification Methods on DNA Similarity Matching Using Fuzzy Inference System.,2010,14,JACIII,3,db/journals/jaciii/jaciii14.html#WidyantoSKN10,https://doi.org/10.20965/jaciii.2010.p0247 +Shihomi Wada,"In What Sense is ""the Prisoner's Dilemma Game"" a Dilemma for a Human or a Programmed Agent?",2007,11,JACIII,7,db/journals/jaciii/jaciii11.html#WadaS07,https://doi.org/10.20965/jaciii.2007.p0833 +Lue-Feng Chen,Adapting Multi-Robot Behavior to Communication Atmosphere in Humans-Robots Interaction Using Fuzzy Production Rule Based Friend-Q Learning.,2013,17,JACIII,2,db/journals/jaciii/jaciii17.html#ChenLDY0H13,https://doi.org/10.20965/jaciii.2013.p0291 +Kazuki Kuribayashi,Development of a System Incorporating a Multifunctional Actuator Using an Intelligent Multifunction Control Method.,2012,16,JACIII,5,db/journals/jaciii/jaciii16.html#KuribayashiY12,https://doi.org/10.20965/jaciii.2012.p0662 +Rodrigo S. Jamisola Jr.,Investigating Task Prioritization and Holistic Coordination Using Relative Jacobian for Combined 3-Arm Cooperating Parallel Manipulators.,2016,20,JACIII,1,db/journals/jaciii/jaciii20.html#JamisolaI16,https://doi.org/10.20965/jaciii.2016.p0117 +Gim Hee Lee,An Integrated Algorithm for Autonomous Navigation of a Mobile Robot in an Unknown Environment.,2008,12,JACIII,4,db/journals/jaciii/jaciii12.html#HeeA08,https://doi.org/10.20965/jaciii.2008.p0328 +Yaoyi Xi,Topic Model Based New Event Detection Within Topics.,2016,20,JACIII,3,db/journals/jaciii/jaciii20.html#XiLT16,https://doi.org/10.20965/jaciii.2016.p0467 +Se-Yul Lee,Design and Analysis of Probe Detection Systems for TCP Networks.,2004,8,JACIII,4,db/journals/jaciii/jaciii8.html#LeeK04,https://doi.org/10.20965/jaciii.2004.p0369 +Hamid Seridi,Approximate Reasoning for Processing Uncertainty.,2001,5,JACIII,2,db/journals/jaciii/jaciii5.html#SeridiA01,https://doi.org/10.20965/jaciii.2001.p0110 +Kazuhiro Ohkura,Generating Cooperative Collective Behavior in Swarm Robotic Systems.,2013,17,JACIII,5,db/journals/jaciii/jaciii17.html#OhkuraYM13,https://doi.org/10.20965/jaciii.2013.p0699 +Masaru Morita,Development of State Estimation Filter Simulator Built on an Integrated GUI Framework.,2016,20,JACIII,5,db/journals/jaciii/jaciii20.html#MoritaN16,https://doi.org/10.20965/jaciii.2016.p0721 +Itaru Takarajima,Design of Nondeterministic Program Termination Based on the Equivalent Transformation Computation Model.,2006,10,JACIII,3,db/journals/jaciii/jaciii10.html#TakarajimaAIM06,https://doi.org/10.20965/jaciii.2006.p0349 +Kosuke Yamamoto,A Proposal of Visualization Method for Interpretable Fuzzy Model on Fusion Axes.,2006,10,JACIII,1,db/journals/jaciii/jaciii10.html#YamamotoYF06,https://doi.org/10.20965/jaciii.2006.p0121 +Chengdong Li,Pruned Fast Learning Fuzzy Approach for Data-Driven Traffic Flow Prediction.,2016,20,JACIII,7,db/journals/jaciii/jaciii20.html#LiLYZ16,https://doi.org/10.20965/jaciii.2016.p1181 +María M. Abad-Grau,Local Representation Neural Networks for Feature Selection.,1999,3,JACIII,4,db/journals/jaciii/jaciii3.html#GrauM99,https://doi.org/10.20965/jaciii.1999.p0326 +Kotaro Maekawa,Multi-Resolution Dijkstra Method Based on Multi-Agent Simulation and its Application to Genetic Algorithm for Classroom Optimization.,2014,18,JACIII,2,db/journals/jaciii/jaciii18.html#MaekawaSN14,https://doi.org/10.20965/jaciii.2014.p0113 +Hirotaka Osawa,Anthropomorphization Framework for Human-Object Communication.,2007,11,JACIII,8,db/journals/jaciii/jaciii11.html#OsawaMI07,https://doi.org/10.20965/jaciii.2007.p1007 +Michiaki Iwazume,Natural Language-Mediated Software Agentification.,2006,10,JACIII,6,db/journals/jaciii/jaciii10.html#IwazumeKS06,https://doi.org/10.20965/jaciii.2006.p0802 +Muhammad Rahmat Widyanto,Human Behavior Classification Using Thinning Algorithm and Support Vector Machine.,2010,14,JACIII,1,db/journals/jaciii/jaciii14.html#WidyantoEH10,https://doi.org/10.20965/jaciii.2010.p0028 +Chikatoshi Yamada,An Efficient Specification for System Verification.,2006,10,JACIII,6,db/journals/jaciii/jaciii10.html#YamadaNN06,https://doi.org/10.20965/jaciii.2006.p0931 +Wlodzislaw Duch,Hybrid Neural-global Minimization Method of Logical Rule Extraction.,1999,3,JACIII,5,db/journals/jaciii/jaciii3.html#DuchAGZ99,https://doi.org/10.20965/jaciii.1999.p0348 +Manabu Kimura,Dependence-Maximization Clustering with Least-Squares Mutual Information.,2011,15,JACIII,7,db/journals/jaciii/jaciii15.html#KimuraS11,https://doi.org/10.20965/jaciii.2011.p0800 +Jun Yoneyama,Robust Output Feedback Guaranteed Cost Control of Uncertain Fuzzy Systems with Immeasurable Premise Variables.,2007,11,JACIII,7,db/journals/jaciii/jaciii11.html#Yoneyama07,https://doi.org/10.20965/jaciii.2007.p0745 +Hidenobu Hashikami,An Algorithm for Recomputing Concepts in Microarray Data Analysis by Biological Lattice.,2013,17,JACIII,5,db/journals/jaciii/jaciii17.html#HashikamiTHHSN13,https://doi.org/10.20965/jaciii.2013.p0761 +Dong Hwa Kim,Intelligent Control of Nonlinear Dynamic Systems Using Immune Fuzzy Fusion.,2003,7,JACIII,3,db/journals/jaciii/jaciii7.html#Kim03,https://doi.org/10.20965/jaciii.2003.p0330 +Sadaaki Miyamoto,Editorial: Recent Methodological Developments in Fuzzy Clustering and Related Topics.,2018,22,JACIII,4,db/journals/jaciii/jaciii22.html#Miyamoto18,https://doi.org/10.20965/jaciii.2018.p0523 +Feng Liu,Stability Analysis and Hopf Bifurcation Control for a Wireless Network Model.,2016,20,JACIII,2,db/journals/jaciii/jaciii20.html#LiuYWLWW16,https://doi.org/10.20965/jaciii.2016.p0212 +Norbert Kopco,ARTMAP Neural Networks for Multispectral Image Classification.,2000,4,JACIII,4,db/journals/jaciii/jaciii4.html#KopcoSK00,https://doi.org/10.20965/jaciii.2000.p0240 +Yuchi Kanzawa,KL-Divergence-Based and Manhattan Distance-Based Semisupervised Entropy-Regularized Fuzzy c-Means.,2011,15,JACIII,8,db/journals/jaciii/jaciii15.html#KanzawaEM11,https://doi.org/10.20965/jaciii.2011.p1057 +Saifudin Razali,An Unscented Rauch-Tung-Striebel Smoother for a Vehicle Localization Problem.,2011,15,JACIII,7,db/journals/jaciii/jaciii15.html#RazaliWMI11,https://doi.org/10.20965/jaciii.2011.p0860 +Masaki Inoue,Intelligent Soft Driving System for a Four-Wheeled Electric Vehicle Eluding Dynamic Obstacles.,2004,8,JACIII,4,db/journals/jaciii/jaciii8.html#InoueY04,https://doi.org/10.20965/jaciii.2004.p0350 +Nobuyuki Ohmori,Noise Reduction in Swallowing Muscle Activity Measurement Based on Mixture Gaussian Distribution Model.,2017,21,JACIII,1,db/journals/jaciii/jaciii21.html#OhmoriMAMKKYK17,https://doi.org/10.20965/jaciii.2017.p0109 +Shyue-Liang Wang,Null Queries with Compound Fuzzy Attributes.,1999,3,JACIII,6,db/journals/jaciii/jaciii3.html#WangT99,https://doi.org/10.20965/jaciii.1999.p0509 +Ryohei Taki,Personal Preference Analysis for Emotional Behavior Response of Autonomous Robot in Interactive Emotion Communication.,2010,14,JACIII,7,db/journals/jaciii/jaciii14.html#TakiMT10,https://doi.org/10.20965/jaciii.2010.p0852 +Takashi Kanai,Legal Reasoning Using Abductive Logic Programming.,1997,1,JACIII,2,db/journals/jaciii/jaciii1.html#KanaiK97,https://doi.org/10.20965/jaciii.1997.p0114 +Weijie Chen,Design of Compensator for Input Dead Zone of Actuator Nonlinearities.,2013,17,JACIII,6,db/journals/jaciii/jaciii17.html#ChenWS13,https://doi.org/10.20965/jaciii.2013.p0805 +Shudai Ishikawa,Multi-Space Competitive DGA for Model Selection and its Application to Localization of Multiple Signal Sources.,2011,15,JACIII,9,db/journals/jaciii/jaciii15.html#IshikawaMKTHY11,https://doi.org/10.20965/jaciii.2011.p1320 +Kiyohiko Uehara,Multi-Level Control of Fuzzy-Constraint Propagation via Evaluations with Linguistic Truth Values in Generalized-Mean-Based Inference.,2016,20,JACIII,2,db/journals/jaciii/jaciii20.html#UeharaH16,https://doi.org/10.20965/jaciii.2016.p0355 +Ján Vascák,Integrated Decision-Making System for Robot Soccer.,2011,15,JACIII,2,db/journals/jaciii/jaciii15.html#VascakH11,https://doi.org/10.20965/jaciii.2011.p0156 +Long Thanh Ngo,An Approach in Designing Hierarchy of Fuzzy Behaviors for Mobile Robot Navigation.,2007,11,JACIII,3,db/journals/jaciii/jaciii11.html#NgoPNH07,https://doi.org/10.20965/jaciii.2007.p0268 +Imre J. Rudas,Editorial: Complimentary Address.,2017,21,JACIII,1,db/journals/jaciii/jaciii21.html#Rudas17, +Takafumi Matsumaru,Calligraphy-Stroke Learning Support System Using Projector and Motion Sensor.,2017,21,JACIII,4,db/journals/jaciii/jaciii21.html#MatsumaruN17,https://doi.org/10.20965/jaciii.2017.p0697 +Tomomi Hashimoto,Editorial: Human-Robot Interaction Systems II.,2017,21,JACIII,4,db/journals/jaciii/jaciii21.html#HashimotoKN17,https://doi.org/10.20965/jaciii.2017.p0659 +Felix Pasila,Neuro-Fuzzy Approaches for Forecasting Electrical Load Using Additional Moving Average Window Data Filter on Takagi-Sugeno Type MISO Networks.,2008,12,JACIII,4,db/journals/jaciii/jaciii12.html#PasilaPT08,https://doi.org/10.20965/jaciii.2008.p0361 +Shohei Usui,Greedy Network Growth Model of Social Network Service.,2014,18,JACIII,4,db/journals/jaciii/jaciii18.html#UsuiTMHM14,https://doi.org/10.20965/jaciii.2014.p0590 +Shunsuke Nakano,Generation System of Attractive Summary of Story.,2008,12,JACIII,1,db/journals/jaciii/jaciii12.html#NakanoO08,https://doi.org/10.20965/jaciii.2008.p0041 +Hidetoshi Tanaka,Multiclassification by Double-Negative Aggregation of SVM Membership.,2005,9,JACIII,6,db/journals/jaciii/jaciii9.html#Tanaka05,https://doi.org/10.20965/jaciii.2005.p0698 +Jing Hu,Risk Evaluation of Strategic Emerging Industries' Technical Standards Alliances: The Ecosystem Perspective.,2015,19,JACIII,5,db/journals/jaciii/jaciii19.html#HuZ15,https://doi.org/10.20965/jaciii.2015.p0601 +Fang Gao,Guaranteed Cost Control of State-Delay System Based on the Equivalent-Input-Disturbance Approach.,2016,20,JACIII,2,db/journals/jaciii/jaciii20.html#Gao0SY16,https://doi.org/10.20965/jaciii.2016.p0246 +Wen-zhan Dai,Approach to Hybrid Flow-Shop Scheduling Problem Based on Self-Guided Genetic Algorithm.,2015,19,JACIII,3,db/journals/jaciii/jaciii19.html#DaiX15a,https://doi.org/10.20965/jaciii.2015.p0365 +Péter Baranyi,Determination of Different Polytopic Models of the Prototypical Aeroelastic Wing Section by TP Model Transformation.,2006,10,JACIII,4,db/journals/jaciii/jaciii10.html#BaranyiPVKY06,https://doi.org/10.20965/jaciii.2006.p0486 +Yi Ding,Relative Magnitude of Gaussian Curvature via Self-Calibration.,2010,14,JACIII,1,db/journals/jaciii/jaciii14.html#DingINNHWI10,https://doi.org/10.20965/jaciii.2010.p0099 +Yuji Yoshida,A Dynamic Risk Allocation of Value-at-Risks with Portfolios.,2012,16,JACIII,7,db/journals/jaciii/jaciii16.html#Yoshida12a,https://doi.org/10.20965/jaciii.2012.p0800 +Qi Lei,Image Clustering Using Active-Constraint Semi-Supervised Affinity Propagation.,2016,20,JACIII,7,db/journals/jaciii/jaciii20.html#LeiLWW16,https://doi.org/10.20965/jaciii.2016.p1035 +Mari Saito,Automatic Metadata Annotation Based on User Preference Evaluation Patterns.,2006,10,JACIII,6,db/journals/jaciii/jaciii10.html#Saito06,https://doi.org/10.20965/jaciii.2006.p0850 +Takahiro Imabeppu,Experimental Study on Pair Swap Strategy in Quantum-Inspired Evolutionary Algorithm.,2009,13,JACIII,2,db/journals/jaciii/jaciii13.html#ImabeppuNO09,https://doi.org/10.20965/jaciii.2009.p0097 +Seihwan Park,Type-2 Fuzzy Hypergraphs Using Type-2 Fuzzy Sets.,2000,4,JACIII,5,db/journals/jaciii/jaciii4.html#ParkL00,https://doi.org/10.20965/jaciii.2000.p0362 +Thiprampai Thamamongood,Cultivation of Synthetic Biology with the iGEM Competition.,2013,17,JACIII,2,db/journals/jaciii/jaciii17.html#ThamamongoodLHAKC13,https://doi.org/10.20965/jaciii.2013.p0161 +Hiroyasu Matsushima,Exemplar Generalization in Reinforcement Learning: Improving Performance with Fewer Exemplars.,2009,13,JACIII,6,db/journals/jaciii/jaciii13.html#MatsushimaHT09,https://doi.org/10.20965/jaciii.2009.p0683 +Yuichi Kobayashi,Division of Iterative-Transportation Based on Local Observation by Multiple Mobile Robots.,2012,16,JACIII,3,db/journals/jaciii/jaciii16.html#KobayashiSG12,https://doi.org/10.20965/jaciii.2012.p0462 +Min Ding,Sliding Mode MPPT Controller for Photovoltaic Systems Under Partial Shading Conditions.,2016,20,JACIII,7,db/journals/jaciii/jaciii20.html#DingTCTWL16,https://doi.org/10.20965/jaciii.2016.p1112 +Keisuke Yamazaki,On Bayesian Clustering with a Structured Gaussian Mixture.,2014,18,JACIII,6,db/journals/jaciii/jaciii18.html#Yamazaki14,https://doi.org/10.20965/jaciii.2014.p1007 +Edit Miletics,Energy-Conservative Algorithm for the Numerical Solution of Initial-Value Hamiltonian System Problems.,2004,8,JACIII,5,db/journals/jaciii/jaciii8.html#Miletics04,https://doi.org/10.20965/jaciii.2004.p0495 +Yasunori Endo,Fuzzy c-Means Clustering for Uncertain Data Using Quadratic Penalty-Vector Regularization.,2011,15,JACIII,1,db/journals/jaciii/jaciii15.html#EndoHHK11,https://doi.org/10.20965/jaciii.2011.p0076 +Ben T. Nohara,Non-network Type Artificial Immune System and its Application to Automated Guided Vehicle (AGV) System.,2000,4,JACIII,1,db/journals/jaciii/jaciii4.html#NoharaT00,https://doi.org/10.20965/jaciii.2000.p0111 +Akira Miyahara,An Intelligent Security Camera System for Kidnapping Detection.,2013,17,JACIII,5,db/journals/jaciii/jaciii17.html#MiyaharaN13,https://doi.org/10.20965/jaciii.2013.p0746 +Rached Dhaouadi,Neural Network-Based Speed Control of A Two-Mass-Model System.,1999,3,JACIII,5,db/journals/jaciii/jaciii3.html#DhaouadiN99,https://doi.org/10.20965/jaciii.1999.p0427 +Shangfeng Zhang,Solving the Dynamic Stochastic General Equilibrium Model with Stochastic Volatility: An Application in China.,2015,19,JACIII,4,db/journals/jaciii/jaciii19.html#ZhangWX15,https://doi.org/10.20965/jaciii.2015.p0508 +M. M. A. Hashem,Stable-Optimum Gain Tuning for Designing Mobile Robot Controllers Using Incest Prevented Evolution.,1998,2,JACIII,5,db/journals/jaciii/jaciii2.html#HashemWI98,https://doi.org/10.20965/jaciii.1998.p0164 +Noboru Takagi,Prototype Development of Image Editing Systems Available for Visually Impaired People and Consideration of Their User Interfaces.,2016,20,JACIII,6,db/journals/jaciii/jaciii20.html#TakagiMM16,https://doi.org/10.20965/jaciii.2016.p0961 +Klára Vicsi,Recognition of Emotions on the Basis of Different Levels of Speech Segments.,2012,16,JACIII,2,db/journals/jaciii/jaciii16.html#VicsiS12,https://doi.org/10.20965/jaciii.2012.p0335 +Gwo-Hshiung Tzeng,Application of Fuzzy Set Theory and DEA Model to Evaluating Production Efficiency for Taipei City Bus Company.,2001,5,JACIII,3,db/journals/jaciii/jaciii5.html#TzengFK01,https://doi.org/10.20965/jaciii.2001.p0128 +Marjan Sedighi Anaraki,Dyadic Curvelet Transform (DClet) for Image Noise Reduction.,2007,11,JACIII,6,db/journals/jaciii/jaciii11.html#AnarakiDNH07,https://doi.org/10.20965/jaciii.2007.p0641 +Makoto Kobayashi,Automatic Pin Counting System for the Blind Bowling.,2017,21,JACIII,1,db/journals/jaciii/jaciii21.html#Kobayashi17,https://doi.org/10.20965/jaciii.2017.p0119 +Imre J. Rudas,Editorial: Intelligent Engineering Systems.,1998,2,JACIII,3,db/journals/jaciii/jaciii2.html#Rudas98,https://doi.org/10.20965/jaciii.1998.p0069 +Kazuhiko Kawamoto,Motion-Based Template Matching for Obstacle Detection.,2004,8,JACIII,5,db/journals/jaciii/jaciii8.html#KawamotoOIKH04,https://doi.org/10.20965/jaciii.2004.p0469 +José Luis García-Lapresta,Favoring Consensus and Penalizing Disagreement in Group Decision Making.,2008,12,JACIII,5,db/journals/jaciii/jaciii12.html#Garcia-Lapresta08,https://doi.org/10.20965/jaciii.2008.p0416 +Junaida Binti Sulaiman,Monthly Maximum Accumulated Precipitation Forecasting Using Local Precipitation Data and Global Climate Modes.,2014,18,JACIII,6,db/journals/jaciii/jaciii18.html#SulaimanDH14,https://doi.org/10.20965/jaciii.2014.p0999 +Likun Cai,Quantitative Analysis Method of EXRBAC Model with N-Dimensional Security Entropy.,2015,19,JACIII,3,db/journals/jaciii/jaciii19.html#CaiDHZL15,https://doi.org/10.20965/jaciii.2015.p0479 +Péter Baranyi,Parallel Distributed Compensation Based Stabilization of A 3-DOF RC Helicopter: A Tensor Product Transformation Based Approach.,2009,13,JACIII,1,db/journals/jaciii/jaciii13.html#BaranyiKT09,https://doi.org/10.20965/jaciii.2009.p0025 +Annamária R. Várkonyi-Kóczy,Anytime System Scheduler for Insufficient Resource Availability.,2004,8,JACIII,5,db/journals/jaciii/jaciii8.html#Varkonyi-KoczyS04,https://doi.org/10.20965/jaciii.2004.p0488 +Satoshi Kurihara,Proposed Traffic Light Control Mechanism Based on Multi-Agent Coordination.,2016,20,JACIII,5,db/journals/jaciii/jaciii20.html#KuriharaOSS16,https://doi.org/10.20965/jaciii.2016.p0803 +Shigeru Kato,Generation of Interesting Story from Picture Information.,2007,11,JACIII,7,db/journals/jaciii/jaciii11.html#KatoO07,https://doi.org/10.20965/jaciii.2007.p0759 +Yukihiro Hamasuna,Two-Stage Clustering Based on Cluster Validity Measures.,2018,22,JACIII,1,db/journals/jaciii/jaciii22.html#HamasunaOE18,https://doi.org/10.20965/jaciii.2018.p0054 +Nguyen Hoang Phuong,Developing Case-based Reasoning System for Medical Consultation Using the Importance of Features.,2002,6,JACIII,1,db/journals/jaciii/jaciii6.html#PhuongTO02,https://doi.org/10.20965/jaciii.2002.p0041 +M. A. H. Akhand,A Minimal Neural Network Ensemble Construction Method: A Constructive Approach.,2007,11,JACIII,6,db/journals/jaciii/jaciii11.html#AkhandM07,https://doi.org/10.20965/jaciii.2007.p0582 +Guilherme N. Ramos,HACO2 Method for Evolving Hyperbox Classifiers with Ant Colony Optimization.,2009,13,JACIII,3,db/journals/jaciii/jaciii13.html#RamosDH09,https://doi.org/10.20965/jaciii.2009.p0338 +Marcelo Godoy Simões,Compensatory Multicriteria Aggregation Algorithm.,1999,3,JACIII,4,db/journals/jaciii/jaciii3.html#Simoes99,https://doi.org/10.20965/jaciii.1999.p0289 +Yosuke Uozumi,A Three-Dimensional Evaluation of EndoButton Displacement Direction After Anterior Cruciate Ligament Reconstruction in CT Image Using Tunnel Axis.,2014,18,JACIII,5,db/journals/jaciii/jaciii18.html#UozumiNNNNHMKK14,https://doi.org/10.20965/jaciii.2014.p0830 +Naomi Yagi,YURAGI Synthesis for Ultrasonic Human Brain Imaging.,2013,17,JACIII,1,db/journals/jaciii/jaciii17.html#YagiOIH13,https://doi.org/10.20965/jaciii.2013.p0074 +Donggyun Kim,Collision Avoidance in Multiple-Ship Situations by Distributed Local Search.,2014,18,JACIII,5,db/journals/jaciii/jaciii18.html#KimHP14,https://doi.org/10.20965/jaciii.2014.p0839 +Bin Chen,Optimal Operation for Supercapacitor Storage System Using Piecewise LQR Voltage Equalization Control.,2016,20,JACIII,2,db/journals/jaciii/jaciii20.html#ChenHZLP16,https://doi.org/10.20965/jaciii.2016.p0317 +Noritaka Shigei,Competitive Learning with Fast Neuron-Insertion.,2005,9,JACIII,6,db/journals/jaciii/jaciii9.html#ShigeiMM05,https://doi.org/10.20965/jaciii.2005.p0590 +Tadahiro Sakai,Development of Tactile-Proprioceptive Display and Effect Evaluation of Local Area Vibration Presentation Method.,2017,21,JACIII,1,db/journals/jaciii/jaciii21.html#SakaiHSSHO17,https://doi.org/10.20965/jaciii.2017.p0087 +Petr Weissar,New Method of Program Selection in Digital TV Receivers and its Evaluation by Users.,2004,8,JACIII,5,db/journals/jaciii/jaciii8.html#WeissarPHF04,https://doi.org/10.20965/jaciii.2004.p0530 +Takemasa Arakawa,Trajectory Generation for Redundant Manipulator using Virus-Evolutionary Genetic Algorithm with Subpopulations.,1997,1,JACIII,2,db/journals/jaciii/jaciii1.html#ArakawaFK97,https://doi.org/10.20965/jaciii.1997.p0155 +Argel A. Bandala,Dynamic Aggregation Method for Target Enclosure Using Smoothed Particle Hydrodynamics Technique - An Implementation in Quadrotor Unmanned Aerial Vehicles (QUAV) Swarm -.,2016,20,JACIII,1,db/journals/jaciii/jaciii20.html#BandalaD16,https://doi.org/10.20965/jaciii.2016.p0084 +Siana Halim,Bayesian Spatial Autoregressive for Reducing Blurring Effect in Image.,2007,11,JACIII,3,db/journals/jaciii/jaciii11.html#Halim07,https://doi.org/10.20965/jaciii.2007.p0308 +Yutaka Hatakeyama,Color Instance-Based Reasoning and its Application to Dynamic Image Restoration Under Low Luminance Conditions.,2004,8,JACIII,6,db/journals/jaciii/jaciii8.html#HatakeyamaKNYH04,https://doi.org/10.20965/jaciii.2004.p0639 +Ho Ngoc Duc,A Recursively Axiomatizable Subsystem of Levesque\'s Logic of Only Knowing.,2003,7,JACIII,3,db/journals/jaciii/jaciii7.html#Duc03,https://doi.org/10.20965/jaciii.2003.p0283 +Masashi Okushima,Fuzzy Traffic Controller in Ramp Metering of Urban Expressway.,2003,7,JACIII,2,db/journals/jaciii/jaciii7.html#OkushimaTA03,https://doi.org/10.20965/jaciii.2003.p0207 +Ravi Kumar Y. B.,Triangular Similarities of Facial Features to Determine: The Relationships Among Family Members.,2018,22,JACIII,3,db/journals/jaciii/jaciii22.html#BN18,https://doi.org/10.20965/jaciii.2018.p0323 +Kohei Ogawa,Exploring the Natural Reaction of Young and Aged Person with Telenoid in a Real World.,2011,15,JACIII,5,db/journals/jaciii/jaciii15.html#OgawaNKBWI11,https://doi.org/10.20965/jaciii.2011.p0592 +Song Qin,Comparison of International Differences in the Volatility of Economic Growth and Non-Performing Loan Ratio: A Statistical Study Based on the Quantile Regression Model.,2017,21,JACIII,6,db/journals/jaciii/jaciii21.html#QinW17,https://doi.org/10.20965/jaciii.2017.p1094 +Hiroyasu Matsushima,Exemplar-Based Learning Classifier System with Dynamic Matching Range for Imbalanced Data.,2017,21,JACIII,5,db/journals/jaciii/jaciii21.html#MatsushimaT17,https://doi.org/10.20965/jaciii.2017.p0868 +Yan Chen 0008,Trading Rules on Stock Markets Using Genetic Network Programming with Sarsa Learning.,2008,12,JACIII,4,db/journals/jaciii/jaciii12.html#ChenMSH08,https://doi.org/10.20965/jaciii.2008.p0383 +Nguyen Hoang Phuong,Fuzzy Modeling for Modifying Standard Prescriptions of Oriental Traditional Medicine.,2003,7,JACIII,3,db/journals/jaciii/jaciii7.html#PhuongSH03,https://doi.org/10.20965/jaciii.2003.p0339 +Takato Tatsumi,Learning Classifier System Based on Mean of Reward.,2017,21,JACIII,5,db/journals/jaciii/jaciii21.html#TatsumiST17,https://doi.org/10.20965/jaciii.2017.p0895 +Tsubasa Matsuo,Dynamic Scheduling Approaches to Wafer Test Scheduling with Unpredictable Error.,2013,17,JACIII,4,db/journals/jaciii/jaciii17.html#MatsuoIM13,https://doi.org/10.20965/jaciii.2013.p0526 +Jinglu Hu,Neurofuzzy Approach to Fault Detection of Nonlinear Systems.,1999,3,JACIII,6,db/journals/jaciii/jaciii3.html#HuHK99a,https://doi.org/10.20965/jaciii.1999.p0524 +Pei-Hua Huang,Learning Quadcopter Maneuvers with Concurrent Methods of Policy Optimization.,2017,21,JACIII,4,db/journals/jaciii/jaciii21.html#HuangH17,https://doi.org/10.20965/jaciii.2017.p0639 +Katsuhiro Honda,A Regularization Approach to Fuzzy Clustering with Nonlinear Membership Weights.,2007,11,JACIII,1,db/journals/jaciii/jaciii11.html#HondaI07,https://doi.org/10.20965/jaciii.2007.p0028 +Péter Ekler,The Usage and Behavior Patterns of Mobile BitTorrent Clients.,2014,18,JACIII,3,db/journals/jaciii/jaciii18.html#EklerC14,https://doi.org/10.20965/jaciii.2014.p0320 +Masato Kotake,Acquisition of Behavioral Patterns Depends on Self-Embodiment Based on Robot Learning Under Multiple Instructors.,2007,11,JACIII,8,db/journals/jaciii/jaciii11.html#KotakeKN07,https://doi.org/10.20965/jaciii.2007.p0989 +Ricardo Sotolongo,Algorithm for Web Service Discovery Based on Information Retrieval Using WordNet and Linear Discriminant Functions.,2008,12,JACIII,2,db/journals/jaciii/jaciii12.html#SotolongoKDH08,https://doi.org/10.20965/jaciii.2008.p0182 +Xinghuo Yu,A Novel Penalty Function Approach to Constrained Optimization Problems with Genetic Algorithms.,1998,2,JACIII,6,db/journals/jaciii/jaciii2.html#YuZWY98,https://doi.org/10.20965/jaciii.1998.p0208 +Hiroshi Murata,Comparative Analysis of Relevance for SVM-Based Interactive Document Retrieval.,2013,17,JACIII,2,db/journals/jaciii/jaciii17.html#MurataOY13,https://doi.org/10.20965/jaciii.2013.p0149 +Atsuhiro Nakamura,Intelligent Powered Wheelchair Assistance in Daily Use.,2010,14,JACIII,3,db/journals/jaciii/jaciii14.html#NakamuraFNY10,https://doi.org/10.20965/jaciii.2010.p0281 +Kiyohiko Uehara,Fuzzy Inference: Its Past and Prospects.,2017,21,JACIII,1,db/journals/jaciii/jaciii21.html#UeharaH17,https://doi.org/10.20965/jaciii.2017.p0013 +József K. Tar,Replacement of Lyapunov Function by Locally Convergent Robust Fixed Point Transformations in Model-Based Control a Brief Summary.,2010,14,JACIII,2,db/journals/jaciii/jaciii14.html#Tar10,https://doi.org/10.20965/jaciii.2010.p0224 +Pasi Luukka,Weighted Similarity Classifier Using Differential Evolution and Genetic Algorithm in Weight Optimization.,2004,8,JACIII,6,db/journals/jaciii/jaciii8.html#LuukkaS04,https://doi.org/10.20965/jaciii.2004.p0591 +Fei Yan,Bloch Sphere-Based Representation for Quantum Emotion Space.,2015,19,JACIII,1,db/journals/jaciii/jaciii19.html#YanILSDH15,https://doi.org/10.20965/jaciii.2015.p0134 +Teruaki Ando,Psychological Effects of a Self-Sufficiency Model Based on Urge System.,2010,14,JACIII,7,db/journals/jaciii/jaciii14.html#AndoK10,https://doi.org/10.20965/jaciii.2010.p0877 +Shun-Chieh Lin,Capturing Evolutional Knowledge Using Time Interval Tracing.,2007,11,JACIII,4,db/journals/jaciii/jaciii11.html#LinTT07,https://doi.org/10.20965/jaciii.2007.p0373 +Karla Taboada,Adaptation and Self-Adaptation Mechanisms in Genetic Network Programming for Mining Association Rules.,2007,11,JACIII,3,db/journals/jaciii/jaciii11.html#TaboadaGSMHH07,https://doi.org/10.20965/jaciii.2007.p0343 +Yosuke Uozumi,Interactive Surgery System with 3D Electromagnetic Motion Tracker for Training Surgeons in Skin Cutting Skills Needed in Total Knee Arthroplasty.,2017,21,JACIII,7,db/journals/jaciii/jaciii21.html#UozumiN17,https://doi.org/10.20965/jaciii.2017.p1180 +Amir Hossein Jafari,Nonlinear Friction Estimation in Elastic Drive Systems Using a Dynamic Neural Network-Based Observer.,2013,17,JACIII,4,db/journals/jaciii/jaciii17.html#JafariDJ13,https://doi.org/10.20965/jaciii.2013.p0637 +Shota Nakashima,Proposal of a Method to Extract Arbitrary FiguresUsing One-Dimensional Histograms.,2009,13,JACIII,4,db/journals/jaciii/jaciii13.html#NakashimaMS09,https://doi.org/10.20965/jaciii.2009.p0380 +Saad Alqithami,Plasticity in Network Organizations.,2014,18,JACIII,4,db/journals/jaciii/jaciii18.html#AlqithamiH14, +Shusaku Nomura,An Application of Rough Set Analysis toa Psycho-Physiological Study - Assessing the Relation Between Psychological Scale and Immunological Biomarker.,2009,13,JACIII,4,db/journals/jaciii/jaciii13.html#NomuraK09,https://doi.org/10.20965/jaciii.2009.p0352 +Bui Cong Cuong,Fuzzy Relation with Thresholds and Applications.,2002,6,JACIII,1,db/journals/jaciii/jaciii6.html#CuongPAY02,https://doi.org/10.20965/jaciii.2002.p0002 +Katsushige Fujimoto,Obtaining Admissible Preference Orders Using Hierarchical Bipolar Sugeno and Choquet Integrals.,2013,17,JACIII,4,db/journals/jaciii/jaciii17.html#FujimotoS13,https://doi.org/10.20965/jaciii.2013.p0493 +Kale Harbick,Planar Spline Trajectory Following for an Autonomous Helicopter.,2004,8,JACIII,3,db/journals/jaciii/jaciii8.html#HarbickMS04,https://doi.org/10.20965/jaciii.2004.p0237 +Kiyohiko Uehara,Fuzzy Inference with Schemes for Guaranteeing Convexity and Symmetricity in Consequences Based on alpha-Cuts.,2009,13,JACIII,2,db/journals/jaciii/jaciii13.html#UeharaKH09,https://doi.org/10.20965/jaciii.2009.p0135 +Huiyu Zhou,Traffic Flow Prediction with Genetic Network Programming (GNP).,2009,13,JACIII,6,db/journals/jaciii/jaciii13.html#ZhouMWSH09,https://doi.org/10.20965/jaciii.2009.p0713 +Nannan Lu,Integrated Rule Mining Based on Fuzzy GNP and Probabilistic Classification for Intrusion Detection.,2011,15,JACIII,5,db/journals/jaciii/jaciii15.html#LuMH11,https://doi.org/10.20965/jaciii.2011.p0495 +Steffen Hölldobler,The Fuzzy Description Logic ALCFH with Hedge Algebras as Concept Modifiers.,2003,7,JACIII,3,db/journals/jaciii/jaciii7.html#HolldoblerST03,https://doi.org/10.20965/jaciii.2003.p0294 +Kiyohiko Uehara,Fuzzy Inference Based on α-Cuts and Generalized Mean: Relations Between the Methods in its Family and their Unified Platform.,2017,21,JACIII,4,db/journals/jaciii/jaciii21.html#UeharaH17b,https://doi.org/10.20965/jaciii.2017.p0597 +Masashi Ito,Text-Style Conversion of Speech Transcript into Web Document for Lecture Archive.,2009,13,JACIII,4,db/journals/jaciii/jaciii13.html#ItoOM09,https://doi.org/10.20965/jaciii.2009.p0499 +Javier Ruiz-del-Solar,Toward a Bioinspired Fusion of Color and Infrared Textural Image Information.,2001,5,JACIII,6,db/journals/jaciii/jaciii5.html#Ruiz-del-SolarS01,https://doi.org/10.20965/jaciii.2001.p0326 +Jingpei Dan,PSO Based Deterministic ESN Models for Stock Price Forecasting.,2015,19,JACIII,2,db/journals/jaciii/jaciii19.html#DanGSFZ15,https://doi.org/10.20965/jaciii.2015.p0312 +David B. Fogel,Assessing the Relevance of Processing Building Blocks in Evolutionary Computation: Experiments with Linear Systems of Equations.,1999,3,JACIII,5,db/journals/jaciii/jaciii3.html#FogelA99,https://doi.org/10.20965/jaciii.1999.p0394 +Seyed H. Haeri (Hossein),Coincidence-Based Scoring of Mappings in Ontology Alignment.,2007,11,JACIII,7,db/journals/jaciii/jaciii11.html#HosseinAQH07,https://doi.org/10.20965/jaciii.2007.p0803 +Yang Yang,Genetic Network Programming-Sarsa with Subroutines for Trading Rules on Stock Markets.,2011,15,JACIII,5,db/journals/jaciii/jaciii15.html#YangMLH11,https://doi.org/10.20965/jaciii.2011.p0488 +Yuchi Kanzawa,q-Divergence-Based Relational Fuzzy c-Means Clustering.,2018,22,JACIII,1,db/journals/jaciii/jaciii22.html#Kanzawa18,https://doi.org/10.20965/jaciii.2018.p0034 +Bin Chen,An Improved TL Buck Converter for Fast-Charging Energy Storage System Using UCs.,2016,20,JACIII,7,db/journals/jaciii/jaciii20.html#ChenHZLW16,https://doi.org/10.20965/jaciii.2016.p1086 +Busaba Phruksaphanrat,Effective Linear Calculational Method for Nonlinear Optimization with a Convex Polyhedral Objective Function and Linear Constraints.,2002,6,JACIII,1,db/journals/jaciii/jaciii6.html#PhruksaphanratO02,https://doi.org/10.20965/jaciii.2002.p0007 +Yasufumi Takama,Web Intelligence and Artificial Intelligence.,2017,21,JACIII,1,db/journals/jaciii/jaciii21.html#Takama17,https://doi.org/10.20965/jaciii.2017.p0025 +Michael C. Nechyba,Learning and Transfer of Human Real-Time Control Strategies.,1997,1,JACIII,2,db/journals/jaciii/jaciii1.html#NechybaX97,https://doi.org/10.20965/jaciii.1997.p0137 +Fang Liu,Robust H∞ Damping Control of Multi-FACTS Devices for Stability Enhancement of Power Systems with Signal's Time Delay.,2015,19,JACIII,2,db/journals/jaciii/jaciii19.html#Liu0LHY15,https://doi.org/10.20965/jaciii.2015.p0239 +János Botzheim,Genetic and Bacterial Programming for B-Spline Neural Networks Design.,2007,11,JACIII,2,db/journals/jaciii/jaciii11.html#BotzheimCKR07,https://doi.org/10.20965/jaciii.2007.p0220 +Laszlo Szeidl,HOSVD Based Canonical Form for Polytopic Models of Dynamic Systems.,2009,13,JACIII,1,db/journals/jaciii/jaciii13.html#SzeidlV09,https://doi.org/10.20965/jaciii.2009.p0052 +Akiko Eriguchi,Label Propagation for Text Classification Using Latent Topics.,2014,18,JACIII,5,db/journals/jaciii/jaciii18.html#EriguchiK14,https://doi.org/10.20965/jaciii.2014.p0818 +Andreas Rauber,Cluster Analysis as a First Step in the Knowledge Discovery Process.,2000,4,JACIII,4,db/journals/jaciii/jaciii4.html#RauberP00,https://doi.org/10.20965/jaciii.2000.p0258 +Kiyohiko Uehara,Inference Based on alpha-Cut and Generalized Mean with Fuzzy Tautological Rules.,2010,14,JACIII,1,db/journals/jaciii/jaciii14.html#UeharaKH10,https://doi.org/10.20965/jaciii.2010.p0076 +Takuto Omiya,Image Labeling by Integration of Local Co-Occurrence Histogram and Global Features.,2014,18,JACIII,4,db/journals/jaciii/jaciii18.html#OmiyaH14,https://doi.org/10.20965/jaciii.2014.p0511 +Tadashi Kondo,Logistic GMDH-Type Neural Network and its Application to Identification of X-Ray Film Characteristic Curve.,2007,11,JACIII,3,db/journals/jaciii/jaciii11.html#KondoU07,https://doi.org/10.20965/jaciii.2007.p0312 +Takehisa Onisawa,Editorial: Special Issue on Selected Papers in SCIS and ISIS 2004 - Number 2.,2005,9,JACIII,3,db/journals/jaciii/jaciii9.html#Onisawa05a,https://doi.org/10.20965/jaciii.2005.p0225 +Wimpie D. Nortje,Results of Bias-variance Tests on Multi-layer Perceptron Neural Networks.,2001,5,JACIII,5,db/journals/jaciii/jaciii5.html#NortjeHHRH01,https://doi.org/10.20965/jaciii.2001.p0300 +Long Thanh Ngo,Extending Fuzzy Directional Relationship and Applying for Mobile Robot Collision Avoidance Behavior.,2006,10,JACIII,4,db/journals/jaciii/jaciii10.html#NgoPNH06,https://doi.org/10.20965/jaciii.2006.p0444 +Takio Kurita,Support Vector Machine and Generalization.,2004,8,JACIII,2,db/journals/jaciii/jaciii8.html#Kurita04,https://doi.org/10.20965/jaciii.2004.p0084 +Ichiro Kobayashi,Toward Everyday Language Computing - Computing from a Viewpoint of Linguistic Theory -.,1997,1,JACIII,1,db/journals/jaciii/jaciii1.html#KobayashiS97,https://doi.org/10.20965/jaciii.1997.p0001 +Jorma K. Mattila,Modifier Logics Based on Graded Modalities.,2003,7,JACIII,2,db/journals/jaciii/jaciii7.html#Mattila03,https://doi.org/10.20965/jaciii.2003.p0072 +Raymond R. Tan,Possibilistic Uncertainty Propagation and Compromise Programming in the Life Cycle Analysis of Alternative Motor Vehicle Fuels.,2004,8,JACIII,1,db/journals/jaciii/jaciii8.html#TanCP04,https://doi.org/10.20965/jaciii.2004.p0023 +Yuki Fushio,Dynamic Shadow Generation System Based on Shape Recognition.,2012,16,JACIII,2,db/journals/jaciii/jaciii16.html#FushioM12,https://doi.org/10.20965/jaciii.2012.p0212 +Takashi Hasuike,Equilibrium Pricing Extending the Mean-Variance Theory Using Weighted Possibilistic Mean of Investor's Subjectivity.,2013,17,JACIII,2,db/journals/jaciii/jaciii17.html#Hasuike13,https://doi.org/10.20965/jaciii.2013.p0237 +Wonjik Kim,Time Series Prediction of Tropical Storm Trajectory Using Self-Organizing Incremental Neural Networks and Error Evaluation.,2018,22,JACIII,4,db/journals/jaciii/jaciii22.html#KimH18,https://doi.org/10.20965/jaciii.2018.p0465 +Gábor Vass,Object Reconfiguration with Dextrous Robot Agents.,2006,10,JACIII,2,db/journals/jaciii/jaciii10.html#VassLP06,https://doi.org/10.20965/jaciii.2006.p0234 +Yusei Tsuboi,Experimentally Constructing Semantic Models Based on DNA Computing.,2006,10,JACIII,1,db/journals/jaciii/jaciii10.html#TsuboiIO06,https://doi.org/10.20965/jaciii.2006.p0077 +Haruhiko Takase,Supporting System for Quiz in Large Class - Automatic Keyword Extraction and Browsing Interface.,2015,19,JACIII,1,db/journals/jaciii/jaciii19.html#TakaseKT15,https://doi.org/10.20965/jaciii.2015.p0152 +Kaoru Hirota,Editorial: Message from Editors-in-Chief.,2017,21,JACIII,1,db/journals/jaciii/jaciii21.html#HirotaF17, +Akira Notsu,"Visualization of Learning Process in ""State and Action"" Space Using Self-Organizing Maps.",2016,20,JACIII,6,db/journals/jaciii/jaciii20.html#NotsuHUH16,https://doi.org/10.20965/jaciii.2016.p0983 +Jirakom Sirisrisakulchai,Portfolio Optimization of Financial Returns Using Fuzzy Approach with NSGA-II Algorithm.,2015,19,JACIII,5,db/journals/jaciii/jaciii19.html#Sirisrisakulchai15,https://doi.org/10.20965/jaciii.2015.p0619 +Fan Guo,Temporal-Spatial Filtering for Enhancement of Low-Light Surveillance Video.,2016,20,JACIII,4,db/journals/jaciii/jaciii20.html#GuoTPZ16,https://doi.org/10.20965/jaciii.2016.p0652 +Yuta Hayakawa,Quantitative Common Sense Estimation System and its Application for Membership Function Generation.,2014,18,JACIII,5,db/journals/jaciii/jaciii18.html#HayakawaH14,https://doi.org/10.20965/jaciii.2014.p0856 +Teruaki Ando,Relationship Between Mechadroid Type C3 and Human Beings Based on Physiognomic Features.,2010,14,JACIII,7,db/journals/jaciii/jaciii14.html#AndoAKTN10,https://doi.org/10.20965/jaciii.2010.p0869 +Ryoji Fukuda,Comparison of Baselines in Extraction of F-Responses.,2013,17,JACIII,4,db/journals/jaciii/jaciii17.html#FukudaHHH13,https://doi.org/10.20965/jaciii.2013.p0535 +Yueh-Tse Li,A Unified Approach to Planning Versatile Motions for an Autonomous Digital Actor.,2008,12,JACIII,3,db/journals/jaciii/jaciii12.html#LiL08,https://doi.org/10.20965/jaciii.2008.p0277 +Yukihiro Hamasuna,On Agglomerative Hierarchical Clustering Using Clusterwise Tolerance Based Pairwise Constraints.,2012,16,JACIII,1,db/journals/jaciii/jaciii16.html#HamasunaEM12,https://doi.org/10.20965/jaciii.2012.p0174 +Johannes K. Chiang,Prototype Design of Decision Supports for GRID Clearinghouse Service Framework.,2008,12,JACIII,6,db/journals/jaciii/jaciii12.html#ChiangC08,https://doi.org/10.20965/jaciii.2008.p0523 +Ryo Inokuchi,Fuzzy c-Means Algorithms Using Kullback-Leibler Divergence and Helliger Distance Based on Multinomial Manifold.,2008,12,JACIII,5,db/journals/jaciii/jaciii12.html#InokuchiM08,https://doi.org/10.20965/jaciii.2008.p0443 +Zhongjie Long,Development of Manual Measurement System with Stereo Markers for Lachman Test.,2016,20,JACIII,3,db/journals/jaciii/jaciii20.html#LongKN16,https://doi.org/10.20965/jaciii.2016.p0385 +Mitsuhiro Hayase,Posture Estimation of a Human Body from Thermal Images of 2D Appearance Models of 3D Ellipsoidal Model.,2009,13,JACIII,3,db/journals/jaciii/jaciii13.html#HayaseS09,https://doi.org/10.20965/jaciii.2009.p0172 +Masayuki Okabe,Active Sampling for Constrained Clustering.,2014,18,JACIII,2,db/journals/jaciii/jaciii18.html#OkabeY14,https://doi.org/10.20965/jaciii.2014.p0232 +Ana de Almeida,An Approach to Collaborative Scheduling Through Group Decision Support.,2006,10,JACIII,4,db/journals/jaciii/jaciii10.html#AlmeidaM06,https://doi.org/10.20965/jaciii.2006.p0479 +Miguel F. M. Lima,Experimental Signal Analysis of Robot Impacts in a Fractional Calculus Perspective.,2007,11,JACIII,9,db/journals/jaciii/jaciii11.html#LimaMC07,https://doi.org/10.20965/jaciii.2007.p1079 +Junzo Watada,Dual Scaling in Data Mining from Text Databases.,2006,10,JACIII,4,db/journals/jaciii/jaciii10.html#WatadaAKH06,https://doi.org/10.20965/jaciii.2006.p0451 +Yasutake Takahashi,Motion Segmentation and Recognition for Imitation Learning and Influence of Bias for Learning Walking Motion of Humanoid Robot Based on Human Demonstrated Motion.,2015,19,JACIII,4,db/journals/jaciii/jaciii19.html#TakahashiHMUM15,https://doi.org/10.20965/jaciii.2015.p0532 +Tetsuhiro Miyahara,Learning of Glycan Motifs Using Genetic Programming and Various Fitness Functions.,2014,18,JACIII,3,db/journals/jaciii/jaciii18.html#MiyaharaK14,https://doi.org/10.20965/jaciii.2014.p0401 +Joe Lorkowski,How Design Quality Improves with Increasing Computational Abilities: General Formulas and Case Study of Aircraft Fuel Efficiency.,2015,19,JACIII,5,db/journals/jaciii/jaciii19.html#LorkowskiKKS15,https://doi.org/10.20965/jaciii.2015.p0581 +Tetsuya Kojima,A Method to Estimate the Multimedia Communication Bands Based upon Multi-Order Markov Model.,2007,11,JACIII,6,db/journals/jaciii/jaciii11.html#KojimaEFA07,https://doi.org/10.20965/jaciii.2007.p0655 +Jianchao Han,Discovering Both Positive and Negative Fuzzy Association Rules in Large Transaction Databases.,2006,10,JACIII,3,db/journals/jaciii/jaciii10.html#HanB06,https://doi.org/10.20965/jaciii.2006.p0287 +Shuichi Ino,A Pilot Study of a Tactile Measurement System Using Lateral Skin Stretch on Foot Plantar Surface.,2017,21,JACIII,1,db/journals/jaciii/jaciii21.html#InoCOOH17,https://doi.org/10.20965/jaciii.2017.p0074 +Madhu Errampalli,Fuzzy Logic Based Lane Change Model for Microscopic Traffic Flow Simulation.,2008,12,JACIII,2,db/journals/jaciii/jaciii12.html#ErrampalliOA08,https://doi.org/10.20965/jaciii.2008.p0172 +Shu Liu,A Study on Computational Efficiency and Plasticity in Baldwinian Learning.,2011,15,JACIII,9,db/journals/jaciii/jaciii15.html#LiuI11,https://doi.org/10.20965/jaciii.2011.p1300 +Balazs Tusor,Human-Machine Cooperation in an iSpace Robot Room.,2012,16,JACIII,6,db/journals/jaciii/jaciii16.html#TusorVKK12,https://doi.org/10.20965/jaciii.2012.p0723 +Kenji Funahashi,Virtual Scissors in a Thin Haptic and Force Feedback Environment.,2009,13,JACIII,3,db/journals/jaciii/jaciii13.html#FunahashiKIT09,https://doi.org/10.20965/jaciii.2009.p0283 +Baijnath Kaushik,Improved Approach for Maximizing Reliability in Fault Tolerant Networks.,2013,17,JACIII,1,db/journals/jaciii/jaciii17.html#KaushikKK13,https://doi.org/10.20965/jaciii.2013.p0027 +Meng Chen,Evaluation of Haptic Interaction in Intercultural Online Negotiation.,2013,17,JACIII,6,db/journals/jaciii/jaciii17.html#ChenON13,https://doi.org/10.20965/jaciii.2013.p0779 +Gérard Lachiver,Application of Fuzzy Control to a Riderless Bicycle.,2000,4,JACIII,3,db/journals/jaciii/jaciii4.html#LachiverB00,https://doi.org/10.20965/jaciii.2000.p0195 +Martin Halvey,Remembering What You Forget in an Online Shopping Context.,2005,9,JACIII,1,db/journals/jaciii/jaciii9.html#HalveyK05,https://doi.org/10.20965/jaciii.2005.p0018 +Yuchi Kanzawa,Relational Fuzzy c-Means and Kernel Fuzzy c-Means Using an Object-Wise 6*-Spread Transformation.,2013,17,JACIII,4,db/journals/jaciii/jaciii17.html#Kanzawa13,https://doi.org/10.20965/jaciii.2013.p0511 +József K. Tar,Geometric Identification and Control of Nonlinear Dynamic Systems Based on Floating Basis Vector Representation.,2006,10,JACIII,4,db/journals/jaciii/jaciii10.html#TarRR06,https://doi.org/10.20965/jaciii.2006.p0542 +Kiyohiko Uehara,Inference for Nonlinear Mapping with Sparse Fuzzy Rules Based on Multi-Level Interpolation.,2011,15,JACIII,3,db/journals/jaciii/jaciii15.html#UeharaSH11,https://doi.org/10.20965/jaciii.2011.p0264 +Backjin Lee,A Sequential Method for Combining Random Utility Model and Fuzzy Inference Model.,2003,7,JACIII,2,db/journals/jaciii/jaciii7.html#LeeFSN03,https://doi.org/10.20965/jaciii.2003.p0200 +Sadaaki Miyamoto,Algorithms for Sequential Extraction of Clusters by Possibilistic Method and Comparison with Mountain Clustering.,2008,12,JACIII,5,db/journals/jaciii/jaciii12.html#MiyamotoKA08,https://doi.org/10.20965/jaciii.2008.p0448 +Hongtao Liao,Generalized Potential Function-Based Cooperative Current-Sharing Control for High-Power Parallel Charging Systems.,2017,21,JACIII,3,db/journals/jaciii/jaciii21.html#LiaoPZHZ17,https://doi.org/10.20965/jaciii.2017.p0387 +Kiyohiko Uehara,Fuzzy Inference Based Connection Admission Control in ATM Networks.,1997,1,JACIII,1,db/journals/jaciii/jaciii1.html#UeharaH97,https://doi.org/10.20965/jaciii.1997.p0014 +Toru Sano,On Estimation of Tangential Force in Railways Brake Systems by Fuzzy Inference.,2015,19,JACIII,5,db/journals/jaciii/jaciii19.html#SanoENH15,https://doi.org/10.20965/jaciii.2015.p0639 +Huijun Yu,Research on Fuzzy PID Pitch-Controlled System Based on SVM.,2016,20,JACIII,2,db/journals/jaciii/jaciii20.html#YuHZ016,https://doi.org/10.20965/jaciii.2016.p0332 +Hiroshi Mabuchi,Integration of Syntactic Analysis and Semantic Interpretation Based on Equivalent Transformation.,2003,7,JACIII,3,db/journals/jaciii/jaciii7.html#MabuchiAIK03,https://doi.org/10.20965/jaciii.2003.p0306 +Cheng-Jian Lin,A Novel Neuro-Fuzzy Inference System with Multi-Level Membership Function for Classification Applications.,2007,11,JACIII,4,db/journals/jaciii/jaciii11.html#LinLC07,https://doi.org/10.20965/jaciii.2007.p0365 +Yuchi Kanzawa,Relational Fuzzy c-Lines Clustering Derived from Kernelization of Fuzzy c-Lines.,2014,18,JACIII,2,db/journals/jaciii/jaciii18.html#Kanzawa14,https://doi.org/10.20965/jaciii.2014.p0175 +Motoki Miura,Estimating Writing Neatness from Online Handwritten Data.,2014,18,JACIII,6,db/journals/jaciii/jaciii18.html#MiuraT14,https://doi.org/10.20965/jaciii.2014.p0946 +Vyacheslav Kalashnikov,Mixed Oligopoly: Analysis of Consistent Equilibria.,2014,18,JACIII,6,db/journals/jaciii/jaciii18.html#KalashnikovBKWH14a,https://doi.org/10.20965/jaciii.2014.p0971 +Yutaro Okamoto,A Study on Computational Time Reduction of Road Obstacle Detection by Parallel Image Processor.,2014,18,JACIII,5,db/journals/jaciii/jaciii18.html#OkamotoPK14,https://doi.org/10.20965/jaciii.2014.p0849 +Toshiyuki Yasuda,Improving the Robustness of Instance-Based Reinforcement Learning Robots by Metalearning.,2011,15,JACIII,8,db/journals/jaciii/jaciii15.html#YasudaAO11,https://doi.org/10.20965/jaciii.2011.p1065 +Ruck Thawonmas,A Novel Parallel Model for Self-Organizing Map and its Efficient Implementation on a Data-Driven Multiprocessor.,2003,7,JACIII,3,db/journals/jaciii/jaciii7.html#ThawonmasIF03,https://doi.org/10.20965/jaciii.2003.p0355 +Ichiro Kobayashi,Editorial.,2006,10,JACIII,6,db/journals/jaciii/jaciii10.html#Kobayashi06,https://doi.org/10.20965/jaciii.2006.p0771 +Ya-Fen Ye,Financial Conditions Index Construction Through Weighted Lp-Norm Support Vector Regression.,2015,19,JACIII,3,db/journals/jaciii/jaciii19.html#YeJSL15,https://doi.org/10.20965/jaciii.2015.p0397 +Shan-Tai Chen,A Data Mining Approach to Rainfall Intensity Classification Using TRMM/TMI Data.,2008,12,JACIII,6,db/journals/jaciii/jaciii12.html#ChenDC08,https://doi.org/10.20965/jaciii.2008.p0516 +Ryosuke Yamanishi,Detection of Affectively Comparable Term Using Hierarchical Knowledge and Blog Snippets.,2014,18,JACIII,2,db/journals/jaciii/jaciii18.html#YamanishiFM14,https://doi.org/10.20965/jaciii.2014.p0166 +Yosuke Watanabe,A Study of Application Cosine Similarity and HOSVD for Questionnaire Data.,2015,19,JACIII,1,db/journals/jaciii/jaciii19.html#WatanabeYF15,https://doi.org/10.20965/jaciii.2015.p0100 +Yuki Orii,Web-Based Intelligent Photograph Management System Enhancing Browsing Experience.,2010,14,JACIII,4,db/journals/jaciii/jaciii14.html#OriiNK10,https://doi.org/10.20965/jaciii.2010.p0390 +Naoyuki Kubota,Human Behavior Measurement Based on Sensor Network and Robot Partners.,2010,14,JACIII,3,db/journals/jaciii/jaciii14.html#KubotaOL10,https://doi.org/10.20965/jaciii.2010.p0309 +Kabsuk Oh,Fuzzy Inference of Time Adjustment in Multimedia Information Acquisition.,1998,2,JACIII,2,db/journals/jaciii/jaciii2.html#OhH98,https://doi.org/10.20965/jaciii.1998.p0062 +Yoshiyuki Yabuuchi,Japanese Economic Analysis by Possibilistic Regression Model Building Through Possibility Maximization.,2012,16,JACIII,5,db/journals/jaciii/jaciii16.html#YabuuchiW12,https://doi.org/10.20965/jaciii.2012.p0576 +Akihiro Yamashita,Similarity Computation Method for Collaborative Filtering Based on Optimization.,2010,14,JACIII,6,db/journals/jaciii/jaciii14.html#YamashitaKS10,https://doi.org/10.20965/jaciii.2010.p0654 +Takashi Hasuike,An Objective Approach for Constructing a Membership Function Based on Fuzzy Harvda-Charvat Entropy and Mathematical Programming.,2016,20,JACIII,4,db/journals/jaciii/jaciii20.html#HasuikeK16,https://doi.org/10.20965/jaciii.2016.p0535 +Yasufumi Takama,Abstract Image Generation Based on Local Similarity Pattern.,2007,11,JACIII,3,db/journals/jaciii/jaciii11.html#TakamaS07,https://doi.org/10.20965/jaciii.2007.p0294 +Rizki Perdana Rangkuti,Utilizing Google Images for Training Classifiers in CRF-Based Semantic Segmentation.,2016,20,JACIII,3,db/journals/jaciii/jaciii20.html#RangkutiDAJ16,https://doi.org/10.20965/jaciii.2016.p0455 +Yuji Yoshida,Weighted Quasi-Arithmetic Means and the Domain Translations.,2012,16,JACIII,1,db/journals/jaciii/jaciii16.html#Yoshida12,https://doi.org/10.20965/jaciii.2012.p0148 +Markus Vincze,On the Design and Structure of Artificial Eyes for Tracking Tasks.,2005,9,JACIII,4,db/journals/jaciii/jaciii9.html#Vincze05,https://doi.org/10.20965/jaciii.2005.p0353 +Vyacheslav Kalashnikov,Analysis of Consistent Equilibria in a Mixed Duopoly.,2014,18,JACIII,6,db/journals/jaciii/jaciii18.html#KalashnikovBKWH14,https://doi.org/10.20965/jaciii.2014.p0962 +Toru Sugimoto,A Proposal of a Language-Based Context-Sensitive Programming System.,2007,11,JACIII,8,db/journals/jaciii/jaciii11.html#SugimotoII07,https://doi.org/10.20965/jaciii.2007.p1015 +Stephen Karungaru,Image Morphing and Warping: Application to Speech Simulation Using a Single Image.,2009,13,JACIII,4,db/journals/jaciii/jaciii13.html#KarungaruAFA09,https://doi.org/10.20965/jaciii.2009.p0441 +Nobuhiko Yamaguchi,Visualizing State of Time-Series Data by Supervised Gaussian Process Dynamical Models.,2015,19,JACIII,5,db/journals/jaciii/jaciii19.html#Yamaguchi15,https://doi.org/10.20965/jaciii.2015.p0688 +Takayuki Shiina,Capacity Expansion Problem by Monte Carlo Sampling Method.,2009,13,JACIII,6,db/journals/jaciii/jaciii13.html#Shiina09,https://doi.org/10.20965/jaciii.2009.p0697 +Yuya Kaneda,A Study on the Effect of Learning Parameters for Inducing Compact SVM.,2013,17,JACIII,4,db/journals/jaciii/jaciii17.html#KanedaZLY13,https://doi.org/10.20965/jaciii.2013.p0552 +Jinglu Hu,RasID - Random Search for Neural Network Training.,1998,2,JACIII,4,db/journals/jaciii/jaciii2.html#HuHM98,https://doi.org/10.20965/jaciii.1998.p0134 +Tsuyoshi Mikami,Spectral Classification of Oral and Nasal Snoring Sounds Using a Support Vector Machine.,2013,17,JACIII,4,db/journals/jaciii/jaciii17.html#MikamiKYYF13,https://doi.org/10.20965/jaciii.2013.p0611 +Makoto Yasuda,Approximate Determination of q-Parameter for FCM with Tsallis Entropy Maximization.,2017,21,JACIII,7,db/journals/jaciii/jaciii21.html#Yasuda17,https://doi.org/10.20965/jaciii.2017.p1152 +Felix Jimenez,Psychological Effects of a Synchronously Reliant Agent on Human Beings.,2013,17,JACIII,3,db/journals/jaciii/jaciii17.html#JimenezAKN13,https://doi.org/10.20965/jaciii.2013.p0433 +Yaohong Kang,Editorial: Special Issue on Selected Papers from ISCIIA'04.,2005,9,JACIII,6,db/journals/jaciii/jaciii9.html#KangZK05,https://doi.org/10.20965/jaciii.2005.p0579 +Yasufumi Takama,Mining Association Rules from TV Watching Log for TV Program Recommendation.,2008,12,JACIII,1,db/journals/jaciii/jaciii12.html#TakamaH08,https://doi.org/10.20965/jaciii.2008.p0026 +Marek Kulbacki,Learning from Examples and Comparing Models of Human Motion.,2004,8,JACIII,5,db/journals/jaciii/jaciii8.html#KulbackiJKS04,https://doi.org/10.20965/jaciii.2004.p0477 +Ken-ichi Sakina,Novel Approach to Determining Camera Motion Parameters.,2006,10,JACIII,2,db/journals/jaciii/jaciii10.html#Sakina06,https://doi.org/10.20965/jaciii.2006.p0150 +Jouni Järvinen,Properties of Rough Approximations.,2005,9,JACIII,5,db/journals/jaciii/jaciii9.html#Jarvinen05,https://doi.org/10.20965/jaciii.2005.p0502 +Wolfram-Manfred Lippe,On the Optimization of Fuzzy-Controllers by Neural Networks.,1999,3,JACIII,3,db/journals/jaciii/jaciii3.html#LippeNT99,https://doi.org/10.20965/jaciii.1999.p0158 +Wen-zhan Dai,Hybrid Genetic Algorithm Based on Chaotic Migration Strategy for Solving Flow Shop Scheduling Problem with Fuzzy Delivery Time.,2015,19,JACIII,3,db/journals/jaciii/jaciii19.html#DaiX15,https://doi.org/10.20965/jaciii.2015.p0359 +Junjie Ma,A Survey of Video-Based Crowd Anomaly Detection in Dense Scenes.,2017,21,JACIII,2,db/journals/jaciii/jaciii21.html#MaDH17,https://doi.org/10.20965/jaciii.2017.p0235 +Naoki Mori,A New Method for Simplifying Algebraic Expressions in Genetic Programming Called Equivalent Decision Simplification.,2009,13,JACIII,3,db/journals/jaciii/jaciii13.html#MoriMHET09,https://doi.org/10.20965/jaciii.2009.p0237 +Kun Zhang,Cooperative Behavior Learning Based on Social Interaction of State Conversion and Reward Exchange Among Multi-Agents.,2011,15,JACIII,5,db/journals/jaciii/jaciii15.html#ZhangMT11a,https://doi.org/10.20965/jaciii.2011.p0606 +Feiyue Ye,Research on Pattern Representation Based on Keyword and Word Embedding in Chinese Entity Relation Extraction.,2018,22,JACIII,4,db/journals/jaciii/jaciii22.html#YeQ18,https://doi.org/10.20965/jaciii.2018.p0475 +Hiroshi Takahashi,A Study on the Change of Operation of Driving Video Game Under Ultrasound Exposure.,2012,16,JACIII,1,db/journals/jaciii/jaciii16.html#TakahashiH12a,https://doi.org/10.20965/jaciii.2012.p0117 +Sadaaki Miyamoto,Formulation of Fuzzy c-Means Clustering Using Calculus of Variations and Twofold Membership Clusters.,2008,12,JACIII,5,db/journals/jaciii/jaciii12.html#Miyamoto08,https://doi.org/10.20965/jaciii.2008.p0454 +Takeshi Nagata,Optimization of Constrained SIRMs Connected Type Fuzzy Inference Model Using Two-Phase Simplex Method.,2018,22,JACIII,2,db/journals/jaciii/jaciii22.html#NagataSI18,https://doi.org/10.20965/jaciii.2018.p0172 +Petr Musílek,Fuzzy Neural Models Based on Some New Fuzzystar Arithmetic Operations.,1999,3,JACIII,4,db/journals/jaciii/jaciii3.html#MusileklG99,https://doi.org/10.20965/jaciii.1999.p0245 +József K. Tar,Comparison of Fractional Robust- and Fixed Point Transformations- Based Adaptive Compensation of\Dynamic Friction.,2007,11,JACIII,9,db/journals/jaciii/jaciii11.html#TarRP07,https://doi.org/10.20965/jaciii.2007.p1062 +Toshihiko Yasuda,Adjustability of Neural Networks with Variant Connection Weights for Obstacle Avoidance in an Intelligent Wheelchair.,2007,11,JACIII,8,db/journals/jaciii/jaciii11.html#YasudaTNT07,https://doi.org/10.20965/jaciii.2007.p0922 +Max Q.-H. Meng,Editorial: Perspectives of Computational Intelligence in Robotics and Automation.,2004,8,JACIII,3,db/journals/jaciii/jaciii8.html#MengZ04,https://doi.org/10.20965/jaciii.2004.p0235 +Yoichi Yamazaki,Fuzzy Inference based Mentality Expression for Eye Robot in Affinity Pleasure-Arousal Space.,2008,12,JACIII,3,db/journals/jaciii/jaciii12.html#YamazakiHDNH08,https://doi.org/10.20965/jaciii.2008.p0304 +Yuchi Kanzawa,Fuzzy Co-Clustering Algorithms Based on Fuzzy Relational Clustering and TIBA Imputation.,2014,18,JACIII,2,db/journals/jaciii/jaciii18.html#Kanzawa14a,https://doi.org/10.20965/jaciii.2014.p0182 +Agus Naba,Power Curve Based-Fuzzy Wind Speed Estimation in Wind Energy Conversion Systems.,2018,22,JACIII,1,db/journals/jaciii/jaciii22.html#NabaN18,https://doi.org/10.20965/jaciii.2018.p0076 +Kazuteru Miyazaki,Proposal of PSwithEFP and its Evaluation in Multi-Agent Reinforcement Learning.,2017,21,JACIII,5,db/journals/jaciii/jaciii21.html#MiyazakiFK17,https://doi.org/10.20965/jaciii.2017.p0930 +Khairul Salleh Mohamed Sahari,3D Elastic Deformable Object Model for Robot Manipulation Purposes.,2014,18,JACIII,3,db/journals/jaciii/jaciii18.html#SahariH14,https://doi.org/10.20965/jaciii.2014.p0375 +Zhongjie Long,Real-Time 3D Visualization and Navigation Using Fiber-Based Endoscopic System for Arthroscopic Surgery.,2016,20,JACIII,5,db/journals/jaciii/jaciii20.html#LongNKK16,https://doi.org/10.20965/jaciii.2016.p0735 +Rongbin Qi,Localization with a Mobile Anchor Using ABC-GA Hybrid Algorithm in Wireless Sensor Networks.,2012,16,JACIII,6,db/journals/jaciii/jaciii16.html#QiLMQ12,https://doi.org/10.20965/jaciii.2012.p0741 +Faen Chen,Fuzzy VRIO and SWOT Analysis of Chery Automobile.,2014,18,JACIII,3,db/journals/jaciii/jaciii18.html#ChenK14,https://doi.org/10.20965/jaciii.2014.p0429 +Seiji Hotta,Arbitrary-Shaped Cluster Separation Using One-Dimensional Data Mapping and Histogram Segmentation.,2007,11,JACIII,9,db/journals/jaciii/jaciii11.html#HottaKM07,https://doi.org/10.20965/jaciii.2007.p1136 +Shunsuke Kobayakawa,Predictor Using an Error-Convergence Neuron Network and its Application to Electrocardiograms.,2011,15,JACIII,1,db/journals/jaciii/jaciii15.html#KobayakawaY11,https://doi.org/10.20965/jaciii.2011.p0021 +Weihua Cao,A Self-Tuning PID Control System Based on Control Performance Assessment.,2016,20,JACIII,2,db/journals/jaciii/jaciii20.html#CaoH0Y16,https://doi.org/10.20965/jaciii.2016.p0271 +Naohiko Kinoshita,Fuzzy c-Means with Quadratic Penalty-Vector Regularization Using Kullback-Leibler Information for Uncertain Data.,2015,19,JACIII,5,db/journals/jaciii/jaciii19.html#KinoshitaEH15,https://doi.org/10.20965/jaciii.2015.p0624 +Noel S. Gunay,Synchronized Dual Camera Vision System for Locating and Identify Highly Dynamic Objects.,2014,18,JACIII,5,db/journals/jaciii/jaciii18.html#GunayDVBL14,https://doi.org/10.20965/jaciii.2014.p0776 +Yan Chen,Generating Trading Rules for Stock Markets Using Robust Genetic Network Programming and Portfolio Beta.,2016,20,JACIII,3,db/journals/jaciii/jaciii20.html#ChenS16,https://doi.org/10.20965/jaciii.2016.p0484 +Steffen Becker,Implementation of Neural Network Models for Parameter Estimation of a PEM-Electrolyzer.,2010,14,JACIII,6,db/journals/jaciii/jaciii14.html#BeckerK10,https://doi.org/10.20965/jaciii.2010.p0735 +Eiichi Inohira,An Optimal Design Method for Artificial Neural Networks by Using the Design of Experiments.,2007,11,JACIII,6,db/journals/jaciii/jaciii11.html#InohiraY07,https://doi.org/10.20965/jaciii.2007.p0593 +Hotaka Takizawa,Plant Recognition by Integrating Color and Range Data Obtained Through Stereo Vision.,2005,9,JACIII,6,db/journals/jaciii/jaciii9.html#TakizawaEMY05,https://doi.org/10.20965/jaciii.2005.p0630 +Yasuo Kudo,A Modal Characterization of Visibility and Focus in Granular Reasoning.,2009,13,JACIII,3,db/journals/jaciii/jaciii13.html#KudoM09,https://doi.org/10.20965/jaciii.2009.p0297 +Kuo-Yuan Kao,Design and Implementation of Combinatorial Game Calculator.,2008,12,JACIII,3,db/journals/jaciii/jaciii12.html#Kao08,https://doi.org/10.20965/jaciii.2008.p0263 +Koichi Yamada,A Human Interface Based on Linguistic Metaphor and Intention Reasoning.,2006,10,JACIII,6,db/journals/jaciii/jaciii10.html#YamadaTU06,https://doi.org/10.20965/jaciii.2006.p0838 +Vicenç Torra,Container Loading for Nonorthogonal Objects: Detecting Collisions.,2008,12,JACIII,5,db/journals/jaciii/jaciii12.html#TorraM08,https://doi.org/10.20965/jaciii.2008.p0422 +Thai Quang Vinh,Decentralized Robust Fuzzy Sliding Mode Control Design of Interconnected Uncertain System.,2002,6,JACIII,1,db/journals/jaciii/jaciii6.html#VinhH02,https://doi.org/10.20965/jaciii.2002.p0056 +Hiroshi Shiratsuchi,Separability Conditions for Multilayer Nets Having Solutions and Convergent Superiority of Bipolar Nets.,2004,8,JACIII,6,db/journals/jaciii/jaciii8.html#ShiratsuchiGIK04a,https://doi.org/10.20965/jaciii.2004.p0627 +Yong Shi,Capital Budgeting with Multiple Criteria and Multiple Decision Makers: A Fuzzy Approach.,2001,5,JACIII,3,db/journals/jaciii/jaciii5.html#ShiKLL01,https://doi.org/10.20965/jaciii.2001.p0139 +Claude St. Jacques,Dynamic Visualization of Information: From Database to Dataspace.,2005,9,JACIII,1,db/journals/jaciii/jaciii9.html#JacquesP05,https://doi.org/10.20965/jaciii.2005.p0031 +Ryota Miyata,Solving the Binding Problem with Separated Extraction of Information by Oscillatory Self-Organizing Maps.,2011,15,JACIII,8,db/journals/jaciii/jaciii15.html#MiyataK11,https://doi.org/10.20965/jaciii.2011.p1123 +Kabir Mamun,Importance of Computational Intelligent in Proteomics.,2014,18,JACIII,4,db/journals/jaciii/jaciii18.html#MamunS14,https://doi.org/10.20965/jaciii.2014.p0469 +Sadaaki Miyamoto,Fuzzy c-Means Clustering Using Kernel Functions in Support Vector Machines.,2003,7,JACIII,1,db/journals/jaciii/jaciii7.html#MiyamotoS03,https://doi.org/10.20965/jaciii.2003.p0025 +Annamária R. Várkonyi-Kóczy,Editorial: Special Issue on Selected Papers WISP'99.,2001,5,JACIII,1,db/journals/jaciii/jaciii5.html#Varkonyi-Koczy01,https://doi.org/10.20965/jaciii.2001.p0001 +Yau-Hwang Kuo,An Adaptive Fuzzy Clustering Technique for Traffic Prediction of Packet-switched Networks.,2001,5,JACIII,3,db/journals/jaciii/jaciii5.html#KuoHC01,https://doi.org/10.20965/jaciii.2001.p0180 +Marly Kiatake,Knowledge Representation of Architectural Design by Using IBIS-FRS System.,2005,9,JACIII,6,db/journals/jaciii/jaciii9.html#KiatakeCP05,https://doi.org/10.20965/jaciii.2005.p0677 +László Horváth,Intelligent Computer Methods for Modeling of Manufacturing Processes and Human Intent.,1998,2,JACIII,3,db/journals/jaciii/jaciii2.html#HorvathR98,https://doi.org/10.20965/jaciii.1998.p0111 +Minami Miyakawa,Archive of Useful Solutions for Directed Mating in Evolutionary Constrained Multiobjective Optimization.,2014,18,JACIII,2,db/journals/jaciii/jaciii18.html#MiyakawaTS14,https://doi.org/10.20965/jaciii.2014.p0221 +Ming-Shin Lu,Supporting the Translation and Authoring of Test Items with Techniques of Natural Language Processing.,2008,12,JACIII,3,db/journals/jaciii/jaciii12.html#LuWLLGC08,https://doi.org/10.20965/jaciii.2008.p0234 +Masato Ikai,User-Friendly Simulator for Open Modeling by Hierarchically Management.,2013,17,JACIII,6,db/journals/jaciii/jaciii17.html#IkaiI13,https://doi.org/10.20965/jaciii.2013.p0862 +Shingo Mabu,A Class Association Rule Based Classifier Using Probability Density Functions for Intrusion Detection Systems.,2015,19,JACIII,4,db/journals/jaciii/jaciii19.html#MabuLH15,https://doi.org/10.20965/jaciii.2015.p0555 +Kiyohiko Uehara,Inference with Fuzzy Rule Interpolation at an Infinite Number of Activating Points.,2015,19,JACIII,1,db/journals/jaciii/jaciii19.html#UeharaH15,https://doi.org/10.20965/jaciii.2015.p0074 +Takeshi Muto,Dual-Hierarchical Control Mechanism of Interpersonal Embodied Interactions in Cooperative Walking.,2011,15,JACIII,5,db/journals/jaciii/jaciii15.html#MutoM11,https://doi.org/10.20965/jaciii.2011.p0534 +Ken Yeh,Self-Tuning Fuzzy Robust Control for Buildings with Sliding Bearing Isolation Under Seismic Excitation.,2005,9,JACIII,2,db/journals/jaciii/jaciii9.html#YehCCL05,https://doi.org/10.20965/jaciii.2005.p0100 +Kanji Tanaka,Multi-Scale Bag-of-Features for Scalable Map Retrieval.,2012,16,JACIII,7,db/journals/jaciii/jaciii16.html#TanakaK12,https://doi.org/10.20965/jaciii.2012.p0793 +Ruck Thawonmas,Haar Wavelets for Online-Game Player Classification with Dynamic Time Warping.,2008,12,JACIII,2,db/journals/jaciii/jaciii12.html#ThawonmasI08,https://doi.org/10.20965/jaciii.2008.p0150 +Motoyuki Ohki,A k-Anonymous Rule Clustering Approach for Data Publishing.,2017,21,JACIII,6,db/journals/jaciii/jaciii21.html#OhkiI17,https://doi.org/10.20965/jaciii.2017.p0980 +Junwei Fan,Computer-Generated Emotional Face Retrieval with P300 Signals of Multiple Subjects.,2016,20,JACIII,6,db/journals/jaciii/jaciii20.html#FanT16,https://doi.org/10.20965/jaciii.2016.p0902 +Kazuteru Miyazaki,Exploitation-Oriented Learning PS-r#.,2009,13,JACIII,6,db/journals/jaciii/jaciii13.html#MiyazakiK09,https://doi.org/10.20965/jaciii.2009.p0624 +Qian Yu,A Mutual-Information-Based Global Matching Method for Chest-Radiography Temporal Subtraction.,2012,16,JACIII,7,db/journals/jaciii/jaciii16.html#YuHNCS12,https://doi.org/10.20965/jaciii.2012.p0841 +Hugang Han,Polynomial Controller Design Using Disturbance Observer.,2015,19,JACIII,3,db/journals/jaciii/jaciii19.html#HanL15,https://doi.org/10.20965/jaciii.2015.p0439 +Zhenguo Yan,A Neural N-Gram Network for Text Classification.,2018,22,JACIII,3,db/journals/jaciii/jaciii22.html#YanW18,https://doi.org/10.20965/jaciii.2018.p0380 +Nguyen Hoang Phuong,Editorial.,2006,10,JACIII,4,db/journals/jaciii/jaciii10.html#Phuong06,https://doi.org/10.20965/jaciii.2006.p0443 +Kohei Otsuka,Platform for Two-Dimensional Cellular Automata Models Implemented by Living Cells of Electrically Controlled Green Paramecia Designed for Transport of Micro-Particles.,2014,18,JACIII,1,db/journals/jaciii/jaciii18.html#OtsukaK14,https://doi.org/10.20965/jaciii.2014.p0003 +Hao Liu,Landmark FN-DBSCAN: An Efficient Density-Based Clustering Algorithm with Fuzzy Neighborhood.,2013,17,JACIII,1,db/journals/jaciii/jaciii17.html#LiuOKS13,https://doi.org/10.20965/jaciii.2013.p0060 +Yoshio Nishikawa,Development of Spiral-Movement Robot to Reduce Anxiety Among Pediatric Patients.,2017,21,JACIII,4,db/journals/jaciii/jaciii21.html#NishikawaKO17,https://doi.org/10.20965/jaciii.2017.p0730 +Yasufumi Takama,Classification of Street Lighting Conditions for a Community-Centric System.,2016,20,JACIII,6,db/journals/jaciii/jaciii20.html#TakamaXYCC16,https://doi.org/10.20965/jaciii.2016.p0875 +Yusuke Tamura,Activeness Improves Cognitive Performance in Human-Machine Interaction.,2013,17,JACIII,3,db/journals/jaciii/jaciii17.html#TamuraEYMKA13,https://doi.org/10.20965/jaciii.2013.p0425 +James J. Buckley,Fuzzy Geometry Database.,1999,3,JACIII,3,db/journals/jaciii/jaciii3.html#BuckleyFH99,https://doi.org/10.20965/jaciii.1999.p0164 +Yoshiyuki Karuno,An Approximation Algorithm with Factor Two for a Repetitive Routing Problem of Grasp-and-Delivery Robots.,2011,15,JACIII,8,db/journals/jaciii/jaciii15.html#KarunoNS11,https://doi.org/10.20965/jaciii.2011.p1103 +Woonyeol Lee,Discovering Expert Traders on Social Trading Services.,2018,22,JACIII,2,db/journals/jaciii/jaciii22.html#LeeM18,https://doi.org/10.20965/jaciii.2018.p0224 +Hiroshi Takahashi,Study on Intelligent Vehicle Control Considering Driver Perception of Driving Environment.,1999,3,JACIII,1,db/journals/jaciii/jaciii3.html#TakahashiK99,https://doi.org/10.20965/jaciii.1999.p0042 +Shun Otake,Basic Study on Assembling of Objective Functions in Many-Objective Optimization Problems.,2010,14,JACIII,6,db/journals/jaciii/jaciii14.html#OtakeYF10,https://doi.org/10.20965/jaciii.2010.p0618 +Wataru Uemura,About Profit Sharing Considering Infatuate Actions.,2009,13,JACIII,6,db/journals/jaciii/jaciii13.html#Uemura09,https://doi.org/10.20965/jaciii.2009.p0615 +Akio Hiramatsu,A Behavioral Decision Model Based on Fuzzy Targets in Decision Making Using Weather Information.,2008,12,JACIII,5,db/journals/jaciii/jaciii12.html#HiramatsuHN08,https://doi.org/10.20965/jaciii.2008.p0435 +Hyung-Jin Kang,An Intelligent Automatic Surveillance System via Fuzzy Rule Base System and Genetic Algorithms.,1998,2,JACIII,5,db/journals/jaciii/jaciii2.html#KangLNKKP98,https://doi.org/10.20965/jaciii.1998.p0151 +Annamária R. Várkonyi-Kóczy,Adaptive Anytime Data Transmission of Non-Stationary Signals.,2010,14,JACIII,3,db/journals/jaciii/jaciii14.html#Varkonyi-Koczy10,https://doi.org/10.20965/jaciii.2010.p0240 +Thai Duy Hien,Intelligent Logo Watermarking Based on Independent Component Analysis.,2004,8,JACIII,4,db/journals/jaciii/jaciii8.html#HienNC04,https://doi.org/10.20965/jaciii.2004.p0390 +Norihiro Kamide,Method for Combining Paraconsistency and Probability in Temporal Reasoning.,2016,20,JACIII,5,db/journals/jaciii/jaciii20.html#KamideK16,https://doi.org/10.20965/jaciii.2016.p0813 +Nazar Elfadil,Machine Learning: Automated Knowledge Acquisition Based on Unsupervised Neural Network and Expert System Paradigms.,2005,9,JACIII,6,db/journals/jaciii/jaciii9.html#Elfadil05,https://doi.org/10.20965/jaciii.2005.p0693 +Kaoru Hirota,Pattern Recognition and Image Understanding based on Fuzzy Technology.,1997,1,JACIII,1,db/journals/jaciii/jaciii1.html#HirotaAN97,https://doi.org/10.20965/jaciii.1997.p0071 +Beverly Rivera,Security Risk Assessment: Towards a Justification for the Security Risk Factor Table Model.,2015,19,JACIII,5,db/journals/jaciii/jaciii19.html#RiveraZK15,https://doi.org/10.20965/jaciii.2015.p0676 +Muhammad Haris,An Efficient Super Resolution Based on Image Dimensionality Reduction Using Accumulative Intensity Gradient.,2014,18,JACIII,4,db/journals/jaciii/jaciii18.html#HarisSWN14,https://doi.org/10.20965/jaciii.2014.p0518 +Gen Niina,Basic Study on the Classification of Time Series Data Using a Frequency Integrated Spherical Hidden Markov Self Organizing Map.,2015,19,JACIII,2,db/journals/jaciii/jaciii19.html#NiinaDM15,https://doi.org/10.20965/jaciii.2015.p0212 +Yuefen Chen,Discrete-Time Uncertain LQ Optimal Control with Indefinite Control Weight Costs.,2016,20,JACIII,4,db/journals/jaciii/jaciii20.html#ChenD16,https://doi.org/10.20965/jaciii.2016.p0633 +Sansanee Auephanwiriyakul,Comparison of Linguistic and Regular Hard C-Means in Postoperative Patient Data.,2004,8,JACIII,6,db/journals/jaciii/jaciii8.html#AuephanwiriyakulT04,https://doi.org/10.20965/jaciii.2004.p0599 +Dat Tran,Fuzzy Observable Markov Models for Pattern Recognition.,2007,11,JACIII,6,db/journals/jaciii/jaciii11.html#TranMS07,https://doi.org/10.20965/jaciii.2007.p0662 +Petar Kormushev,Eligibility Propagation to Speed up Time Hopping for Reinforcement Learning.,2009,13,JACIII,6,db/journals/jaciii/jaciii13.html#KormushevNDH09,https://doi.org/10.20965/jaciii.2009.p0600 +Yoshinobu Adachi,Research on the Sheepdog Problem Using Cellular Automata.,2007,11,JACIII,9,db/journals/jaciii/jaciii11.html#AdachiK07,https://doi.org/10.20965/jaciii.2007.p1099 +Misha Koshelev,Trustees' and Investors' Behavior in the First Two Rounds of a Trust Game: Overview and a (Partial) Explanation Based on Cooperative Game Theory.,2011,15,JACIII,4,db/journals/jaciii/jaciii15.html#Koshelev11,https://doi.org/10.20965/jaciii.2011.p0438 +Katsuhiro Honda,Variable Weighting in PCA-Guided k-Means and its Connection with Information Summarization.,2011,15,JACIII,1,db/journals/jaciii/jaciii15.html#HondaNI11,https://doi.org/10.20965/jaciii.2011.p0083 +Shigeo Sagai,Analyzing the Emergency Restoration Processes of an Electric Power Distribution Network by a Multi-Agent Simulator.,2011,15,JACIII,2,db/journals/jaciii/jaciii15.html#SagaiMT11,https://doi.org/10.20965/jaciii.2011.p0240 +Regis Pinheiro Landim,Online Neofuzzy Neuron Flux Observer for Induction Motor Drives.,2002,6,JACIII,2,db/journals/jaciii/jaciii6.html#LandimNSCM02,https://doi.org/10.20965/jaciii.2002.p0084 +Masaru Tsuchida,Joint Audio-Visual Tracking Based on Dynamically Weighted Linear Combination of Probability State Density.,2004,8,JACIII,2,db/journals/jaciii/jaciii8.html#TsuchidaKMT04,https://doi.org/10.20965/jaciii.2004.p0190 +Kwang-Il Kim,Study on the Analysis of Near-Miss Ship Collisions Using Logistic Regression.,2017,21,JACIII,3,db/journals/jaciii/jaciii21.html#KimJL17,https://doi.org/10.20965/jaciii.2017.p0467 +Yougen Chen,Soft-Target-Based Predictive Fuzzy Control for a Cart-Pendulum System with Dynamic Constraints.,2007,11,JACIII,8,db/journals/jaciii/jaciii11.html#ChenY07,https://doi.org/10.20965/jaciii.2007.p0931 +Jorma K. Mattila,On Lukasiewicz Modifier Logic.,2005,9,JACIII,5,db/journals/jaciii/jaciii9.html#Mattila05a,https://doi.org/10.20965/jaciii.2005.p0506 +Yasuo Kudo,Heuristic Algorithm for Attribute Reduction Based on Classification Ability by Condition Attributes.,2011,15,JACIII,1,db/journals/jaciii/jaciii15.html#KudoM11,https://doi.org/10.20965/jaciii.2011.p0102 +Yasuhisa Hasegawa,Behavior Generation for Mobile Robot Coordinating Simple Behavior.,1999,3,JACIII,3,db/journals/jaciii/jaciii3.html#HasegawaF99,https://doi.org/10.20965/jaciii.1999.p0186 +Zaheeruddin,A Fuzzy Approach for Modelling the Effects of Noise Pollution on Human Performance.,2004,8,JACIII,4,db/journals/jaciii/jaciii8.html#ZaheeruddinJ04,https://doi.org/10.20965/jaciii.2004.p0442 +Nipon Theera-Umpon,Unexploded Ordnance Detection Using Region of Interest in Range Domain of Ground Penetrating Radar.,2007,11,JACIII,10,db/journals/jaciii/jaciii11.html#Theera-Umpon07,https://doi.org/10.20965/jaciii.2007.p1184 +Quang Hiep Vu,Assessment of Electromagnetic Frequency Sounding Problem in a Near Surface Geological Environment.,2013,17,JACIII,4,db/journals/jaciii/jaciii17.html#VuLR13,https://doi.org/10.20965/jaciii.2013.p0604 +Zheru Chi,An Evolutionary Algorithm for Optimizing Handwritten Numeral Templates Represented by Rational B-Spline Surfaces.,1999,3,JACIII,6,db/journals/jaciii/jaciii3.html#ChiLSS99,https://doi.org/10.20965/jaciii.1999.p0462 +Yosuke Uozumi,Fully Automated Determination of Femoral Coordinate System in CT Image Based on Epicondyles.,2015,19,JACIII,3,db/journals/jaciii/jaciii19.html#UozumiNNNAHMKK15,https://doi.org/10.20965/jaciii.2015.p0372 +Yos Sunitiyoso,Dynamic Mode Choice of Commuters in an Agent-Based Simulation Model with Inductive Learning Machines.,2005,9,JACIII,3,db/journals/jaciii/jaciii9.html#SunitiyosoM05,https://doi.org/10.20965/jaciii.2005.p0329 +Takahiro Haneda,Pseudo Online Independent Component Analysis for Dynamical Mixing Using Gradient Optimization.,2009,13,JACIII,3,db/journals/jaciii/jaciii13.html#HanedaD09,https://doi.org/10.20965/jaciii.2009.p0275 +Hideaki Kawano,Structure Extraction from Decorated Characters by Graph Spectral Decomposition and Component Selection Criterion.,2010,14,JACIII,2,db/journals/jaciii/jaciii14.html#KawanoSMOI10,https://doi.org/10.20965/jaciii.2010.p0179 +Naohiko Kinoshita,On Hierarchical Linguistic-Based Clustering.,2015,19,JACIII,6,db/journals/jaciii/jaciii19.html#KinoshitaES15,https://doi.org/10.20965/jaciii.2015.p0900 +Tadashi Kondo,Medical Image Diagnosis of Liver Cancer Using a Neural Network and Artificial Intelligence.,2011,15,JACIII,6,db/journals/jaciii/jaciii15.html#KondoUT11,https://doi.org/10.20965/jaciii.2011.p0714 +Qiang Guo,A Portable Embedded Web Controller Based on LAMP for E-Experiment.,2014,18,JACIII,1,db/journals/jaciii/jaciii18.html#GuoDZ14,https://doi.org/10.20965/jaciii.2014.p0078 +Tatsuo Kamitani,Key Characteristics of Hymns.,2007,11,JACIII,5,db/journals/jaciii/jaciii11.html#KamitaniM07,https://doi.org/10.20965/jaciii.2007.p0464 +Yuto Yasuoka,Simulation of Human Detection System Using BRIEF and Neural Network.,2016,20,JACIII,7,db/journals/jaciii/jaciii20.html#YasuokaSH16,https://doi.org/10.20965/jaciii.2016.p1159 +Shunsuke Doi,Auto-Selection of DPC Codes from Discharge Summaries by Text Mining in Several Hospitals and Analysis of Differences in Discharge Summaries.,2012,16,JACIII,1,db/journals/jaciii/jaciii16.html#DoiSSTFTT12,https://doi.org/10.20965/jaciii.2012.p0048 +Hidehisa Akiyama,Training of Agent Positioning Using Human's Instruction.,2007,11,JACIII,8,db/journals/jaciii/jaciii11.html#AkiyamaKN07,https://doi.org/10.20965/jaciii.2007.p0998 +Katsushige Fujimoto,Some Characterizations of k-Monotonicity Through the Bipolar Möbius Transform in Bi-Capacities.,2005,9,JACIII,5,db/journals/jaciii/jaciii9.html#FujimotoM05,https://doi.org/10.20965/jaciii.2005.p0484 +Dong Hwa Kim,New 2-DOF PID Controller Tuning by Adaptive Neural Fuzzy Inference System for Gas Turbine Control System.,2000,4,JACIII,5,db/journals/jaciii/jaciii4.html#KimJ00,https://doi.org/10.20965/jaciii.2000.p0341 +ádám B. Csapó,Object Categorization Using Biologically Inspired Nodemaps and the HITEC Categorization System.,2009,13,JACIII,5,db/journals/jaciii/jaciii13.html#CsapoRTB09,https://doi.org/10.20965/jaciii.2009.p0573 +Masao Fuketa,A Fast Dynamic Full-Text Search Method Using Efficient Block Management Structure.,2004,8,JACIII,6,db/journals/jaciii/jaciii8.html#FuketaAGA04,https://doi.org/10.20965/jaciii.2004.p0573 +Shyue-Liang Wang,Answering Null Queries by Analogical Reasoning on Similarity-based Fuzzy Relational Databases.,2001,5,JACIII,3,db/journals/jaciii/jaciii5.html#WangHL01,https://doi.org/10.20965/jaciii.2001.p0163 +Lu Yu,Double-Deck Elevator Group Supervisory Control System Using Genetic Network Programming with Ant Colony Optimization with Evaporation.,2007,11,JACIII,9,db/journals/jaciii/jaciii11.html#YuZMHHM07,https://doi.org/10.20965/jaciii.2007.p1149 +Yoshinori Arai,Car Type/Name Recognition System Based on The Concept of Fixation.,1999,3,JACIII,4,db/journals/jaciii/jaciii3.html#AraiH99,https://doi.org/10.20965/jaciii.1999.p0274 +Kiyotaka Izumi,Evolutionary Strategy Using Statistical Information and Its Application to Mobile Robot Control.,1999,3,JACIII,2,db/journals/jaciii/jaciii3.html#IzumiWH99,https://doi.org/10.20965/jaciii.1999.p0075 +Yifeng Cai,Geometric Relation-Based Cognitive Sharing for Flying and Ground Mobile Robot Cooperation.,2016,20,JACIII,6,db/journals/jaciii/jaciii20.html#CaiS16,https://doi.org/10.20965/jaciii.2016.p0919 +Naohiko Kinoshita,On Objective-Based Rough Clustering with Fuzzy-Set Representation.,2015,19,JACIII,5,db/journals/jaciii/jaciii19.html#KinoshitaEO15,https://doi.org/10.20965/jaciii.2015.p0632 +Hiroyasu Inoue,Analyses of Compound Structures of Groups that Produce Intellectual Property.,2011,15,JACIII,2,db/journals/jaciii/jaciii15.html#Inoue11,https://doi.org/10.20965/jaciii.2011.p0180 +Yongkang Tang,Multimodal Gesture Recognition for Mascot Robot System Based on Choquet Integral Using Camera and 3D Accelerometers Fusion.,2011,15,JACIII,5,db/journals/jaciii/jaciii15.html#TangVLMTFLYTDYH11,https://doi.org/10.20965/jaciii.2011.p0563 +Wilfried Elmenreich,Editorial: Special Issue on Computational Cybernetics.,2004,8,JACIII,5,db/journals/jaciii/jaciii8.html#ElmenreichR04,https://doi.org/10.20965/jaciii.2004.p0453 +Worawat Choensawat,Similarity Retrieval of Motion Capture Data Based on Derivative Features.,2012,16,JACIII,1,db/journals/jaciii/jaciii16.html#ChoensawatCH12,https://doi.org/10.20965/jaciii.2012.p0013 +Kazuhisa Takemura,Statistical Image Analysis of Psychological Projective Drawings.,2005,9,JACIII,5,db/journals/jaciii/jaciii9.html#TakemuraTI05,https://doi.org/10.20965/jaciii.2005.p0453 +Yasutake Takahashi,Human Pointing Navigation Interface for Mobile Robot with Spherical Vision System.,2011,15,JACIII,7,db/journals/jaciii/jaciii15.html#TakahashiYHM11,https://doi.org/10.20965/jaciii.2011.p0869 +Tomo Ishikawa,Gait Motion Planning for a Six Legged Robot Based on the Associatron.,2014,18,JACIII,2,db/journals/jaciii/jaciii18.html#IshikawaMIO14,https://doi.org/10.20965/jaciii.2014.p0135 +Yu Ping Liao,App Controllable Intelligent Desk Lamp System.,2015,19,JACIII,2,db/journals/jaciii/jaciii19.html#LiaoLLCW15,https://doi.org/10.20965/jaciii.2015.p0205 +Hisao Ishibuchi,Linguistic Rule Extraction from Numerical Data for High-dimensional Classification Problems.,1999,3,JACIII,5,db/journals/jaciii/jaciii3.html#IshibuchiMN99,https://doi.org/10.20965/jaciii.1999.p0386 +Hugang Han,A Time-Delay-Dependent Approach for a Class of T-S Fuzzy Models with Time Delays and Uncertainties.,2012,16,JACIII,6,db/journals/jaciii/jaciii16.html#HanT12,https://doi.org/10.20965/jaciii.2012.p0748 +Tamás D. Gedeon,Optimal Size Fuzzy Models.,2007,11,JACIII,3,db/journals/jaciii/jaciii11.html#GedeonKZ07,https://doi.org/10.20965/jaciii.2007.p0335 +Katsuhiro Honda,FCM-Type Fuzzy Clustering of Mixed Databases Considering Nominal Variable Quantification.,2007,11,JACIII,2,db/journals/jaciii/jaciii11.html#HondaUI07,https://doi.org/10.20965/jaciii.2007.p0162 +Weiwei Du,Error-Correcting Semi-Supervised Pattern Recognition with Mode Filter on Graphs.,2011,15,JACIII,9,db/journals/jaciii/jaciii15.html#DuU11,https://doi.org/10.20965/jaciii.2011.p1262 +Cheng-San Yang,A Combination of Shuffled Frog-Leaping Algorithm and Genetic Algorithm for Gene Selection.,2008,12,JACIII,3,db/journals/jaciii/jaciii12.html#YangCKY08,https://doi.org/10.20965/jaciii.2008.p0218 +Shunsuke Hamasaki,Evaluation of the Effect of Prime Stimulus on Sense of Agency in Stop Operation of the Object in Circular Motion.,2017,21,JACIII,7,db/journals/jaciii/jaciii21.html#HamasakiAMTYYA17,https://doi.org/10.20965/jaciii.2017.p1161 +Yonghua Wu,WIN Algorithm for Discrete Online TSP.,2011,15,JACIII,9,db/journals/jaciii/jaciii15.html#WuZCQ11,https://doi.org/10.20965/jaciii.2011.p1199 +Agus Zainal Arifin,Decimation-Free Directional Filter Banks for Classification and Numbering on Posterior Dental Radiography Using Mesiodistal Neck Detection.,2014,18,JACIII,4,db/journals/jaciii/jaciii18.html#ArifinYKWHJA14,https://doi.org/10.20965/jaciii.2014.p0649 +Sung-Kwun Oh,Genetically Optimized Multi-Layer Fuzzy Polynomial Neural Networks: Analysis and Design.,2006,10,JACIII,1,db/journals/jaciii/jaciii10.html#OhPP06,https://doi.org/10.20965/jaciii.2006.p0035 +Yoshifumi Kusunoki,Variable Precision Rough Set Model in Information Tables with Missing Values.,2011,15,JACIII,1,db/journals/jaciii/jaciii15.html#KusunokiI11,https://doi.org/10.20965/jaciii.2011.p0110 +Katsuhiro Honda,Noise Rejection in MMMs-Induced Fuzzy Co-Clustering.,2017,21,JACIII,7,db/journals/jaciii/jaciii21.html#HondaYUN17,https://doi.org/10.20965/jaciii.2017.p1144 +Cheng-Gang Bian,ViSe2 - An Agent-Based Expert Consulting System with Efficient Cooperation.,1998,2,JACIII,3,db/journals/jaciii/jaciii2.html#BianCH98,https://doi.org/10.20965/jaciii.1998.p0104 +Anthony V. Robins,Local Learning Algorithms for Sequential Tasks in Neural Networks.,1998,2,JACIII,6,db/journals/jaciii/jaciii2.html#RobinsF98,https://doi.org/10.20965/jaciii.1998.p0221 +Kok Wai Wong,Editorial.,2007,11,JACIII,3,db/journals/jaciii/jaciii11.html#WongGF07,https://doi.org/10.20965/jaciii.2007.p0259 +Hikaru Sasaki,Experimental Study on Behavior Acquisition of Mobile Robot by Deep Q-Network.,2017,21,JACIII,5,db/journals/jaciii/jaciii21.html#SasakiHK17,https://doi.org/10.20965/jaciii.2017.p0840 +Liya Ding,A Model of Hierarchical Knowledge Representation ? Toward Knowware for Intelligent Systems.,2007,11,JACIII,10,db/journals/jaciii/jaciii11.html#Ding07,https://doi.org/10.20965/jaciii.2007.p1232 +Sadaaki Miyamoto,Editorial: Special Issue on Selected Papers from SCIS and ISIS 2002.,2003,7,JACIII,2,db/journals/jaciii/jaciii7.html#MiyamotoY03,https://doi.org/10.20965/jaciii.2003.p0071 +Mu-Chun Su,A Signal-Representation-Based Parser to Extract Text-Based Information from the Web.,2010,14,JACIII,5,db/journals/jaciii/jaciii14.html#SuWHWHLH10,https://doi.org/10.20965/jaciii.2010.p0531 +Go Tanaka,Color Transfer Based on Normalized Cumulative Hue Histograms.,2010,14,JACIII,2,db/journals/jaciii/jaciii14.html#TanakaSU10,https://doi.org/10.20965/jaciii.2010.p0185 +Mark D. Alexiuk,Neural Network Based Power Flow Predictor.,2000,4,JACIII,3,db/journals/jaciii/jaciii4.html#AlexiukPLP00,https://doi.org/10.20965/jaciii.2000.p0200 +Xing Jin,Study of Multirate Sampled Acquisition of Lightning Current Waveform Based on Short-Time Fourier Transform.,2017,21,JACIII,1,db/journals/jaciii/jaciii21.html#JinZZF17,https://doi.org/10.20965/jaciii.2017.p0159 +Hajime Nobuhara,A Fuzzification of Morphological Wavelets Based on Fuzzy Relational Calculus and its Application to Image Compression/Reconstruction.,2004,8,JACIII,4,db/journals/jaciii/jaciii8.html#NobuharaH04,https://doi.org/10.20965/jaciii.2004.p0373 +Ken Hasegawa,Action Selection for Game Play Agents Using Genetic Algorithms in Platform Game Computational Intelligence Competitions.,2013,17,JACIII,2,db/journals/jaciii/jaciii17.html#HasegawaTESNIH13,https://doi.org/10.20965/jaciii.2013.p0201 +Ruck Thawonmas,Editorial.,2008,12,JACIII,2,db/journals/jaciii/jaciii12.html#Thawonmas08,https://doi.org/10.20965/jaciii.2008.p0105 +Hiroshi Sekiya,Dynamic Sense Representation Using Conceptual Fuzzy Sets.,2006,10,JACIII,6,db/journals/jaciii/jaciii10.html#SekiyaKHT06,https://doi.org/10.20965/jaciii.2006.p0859 +Fakhri Karray,Integration of Distributed Robotic Systems.,2004,8,JACIII,1,db/journals/jaciii/jaciii8.html#KarraySGS04,https://doi.org/10.20965/jaciii.2004.p0007 +Youngwan Cho,Fuzzy Modeling by Occupancy Degree and Optimal Partition of Projection Using Rough Set Theory.,1998,2,JACIII,2,db/journals/jaciii/jaciii2.html#ChoLP98,https://doi.org/10.20965/jaciii.1998.p0054 +Michael Negnevitsky,Adaptive Neuro-Fuzzy Synchronization in Isolated Power Systems with High Wind Penetration.,2016,20,JACIII,3,db/journals/jaciii/jaciii20.html#NegnevitskyNG16,https://doi.org/10.20965/jaciii.2016.p0418 +Liberato Camilleri,Bias of Standard Errors in Latent Class Model Applications Using Newton-Raphson and EM Algorithms.,2009,13,JACIII,5,db/journals/jaciii/jaciii13.html#Camilleri09,https://doi.org/10.20965/jaciii.2009.p0537 +Hai An Vu,RTM (Robot Technology Middleware) Based Dynamic Interrupt System for Communication Between Humans and Robots.,2011,15,JACIII,5,db/journals/jaciii/jaciii15.html#VuDH11,https://doi.org/10.20965/jaciii.2011.p0506 +Masahide Minami,Discrimination of Pneumoconiosis X-Ray Images Scanned with a CCD Scanner.,2012,16,JACIII,1,db/journals/jaciii/jaciii16.html#MinamiAN12,https://doi.org/10.20965/jaciii.2012.p0069 +Rolly Intan,Approximate Data Querying in Fuzzy Relational Database.,2002,6,JACIII,1,db/journals/jaciii/jaciii6.html#IntanM02,https://doi.org/10.20965/jaciii.2002.p0033 +Masashi Emoto,Toward a Generalization of Rough Sets Based on Active and Passive Relations.,2006,10,JACIII,6,db/journals/jaciii/jaciii10.html#EmotoIM06,https://doi.org/10.20965/jaciii.2006.p0939 +Kanji Tanaka,Mining Visual Phrases for Visual Robot Localization.,2016,20,JACIII,1,db/journals/jaciii/jaciii20.html#TanakaCA16,https://doi.org/10.20965/jaciii.2016.p0057 +Misaki Kitahashi,Estimating Classroom Situations by Using CNN with Environmental Sound Spectrograms.,2018,22,JACIII,2,db/journals/jaciii/jaciii22.html#KitahashiH18,https://doi.org/10.20965/jaciii.2018.p0242 +Xiaorong Yang,Several Extended CAViaR Models and Their Applications to the VaR Forecasting of the Security Markets.,2016,20,JACIII,4,db/journals/jaciii/jaciii20.html#YangHC16,https://doi.org/10.20965/jaciii.2016.p0590 +Jianqiang Zhao,A Heuristic Algorithm Based on Leadership Strategy: Leader of Dolphin Herd Algorithm (LDHA).,2015,19,JACIII,4,db/journals/jaciii/jaciii19.html#ZhaoGX15,https://doi.org/10.20965/jaciii.2015.p0491 +Xin Liu 0020,An Efficient Algorithm for Optimizing Bipartite Modularity in Bipartite Networks.,2010,14,JACIII,4,db/journals/jaciii/jaciii14.html#LiuM10,https://doi.org/10.20965/jaciii.2010.p0408 +Anthony Little,Improving the Approximation Smoothness of Radial Basis Neural Networks.,2000,4,JACIII,6,db/journals/jaciii/jaciii4.html#LittleR00,https://doi.org/10.20965/jaciii.2000.p0417 +Kanta Tachibana,Visualization of Huge Climate Data with High-Speed Spherical Self-Organizing Map.,2009,13,JACIII,3,db/journals/jaciii/jaciii13.html#TachibanaSSN09,https://doi.org/10.20965/jaciii.2009.p0210 +Kazuaki Yamada,Network Parameter Setting for Reinforcement Learning Approaches Using Neural Networks.,2011,15,JACIII,7,db/journals/jaciii/jaciii15.html#Yamada11,https://doi.org/10.20965/jaciii.2011.p0822 +Kazuteru Miyazaki,Exploitation-Oriented Learning with Deep Learning - Introducing Profit Sharing to a Deep Q-Network -.,2017,21,JACIII,5,db/journals/jaciii/jaciii21.html#Miyazaki17,https://doi.org/10.20965/jaciii.2017.p0849 +Naoyuki Kubota,Editorial.,2007,11,JACIII,6,db/journals/jaciii/jaciii11.html#Kubota07,https://doi.org/10.20965/jaciii.2007.p0535 +Tadafumi Kondo,Fuzzy Clustering Methods for Categorical Multivariate Data Based on q-Divergence.,2018,22,JACIII,4,db/journals/jaciii/jaciii22.html#KondoK18,https://doi.org/10.20965/jaciii.2018.p0524 +Kun Wang,MEP Analysis of Hand Motor Imagery with Bimanual Coordination Under Transcranial Magnetic Stimulation.,2016,20,JACIII,3,db/journals/jaciii/jaciii20.html#WangWZQHLM16,https://doi.org/10.20965/jaciii.2016.p0462 +Toshiyuki Yamashita,Fuzzy Ratings and Crisp Feedback in Fuzzy AHP for Supporting Human Decision Making.,2006,10,JACIII,2,db/journals/jaciii/jaciii10.html#Yamashita06,https://doi.org/10.20965/jaciii.2006.p0219 +Jinseok Woo,Recognition of Indoor Environment by Robot Partner Using Conversation.,2013,17,JACIII,5,db/journals/jaciii/jaciii17.html#WooK13,https://doi.org/10.20965/jaciii.2013.p0753 +Manoj Kanta Mainali,Optimal Route Based on Dynamic Programming for Road Networks.,2008,12,JACIII,6,db/journals/jaciii/jaciii12.html#MainaliSMH08,https://doi.org/10.20965/jaciii.2008.p0546 +Kazuyuki Kojima,Automatic Generation of VHDL for Control Logic of Air Conditioning Using Evolutionary Computation.,2007,11,JACIII,7,db/journals/jaciii/jaciii11.html#KojimaW07,https://doi.org/10.20965/jaciii.2007.p0817 +Ai Nishiba,A Proposal of Genetic Operations for BSIM Parameter Extraction Using Real-Coded Genetic Algorithm.,2011,15,JACIII,8,db/journals/jaciii/jaciii15.html#NishibaKTT11,https://doi.org/10.20965/jaciii.2011.p1131 +Daisuke Katagami,Process Estimation of Word-of-Mouth Information Spread Based on Ad Hoc Communications.,2012,16,JACIII,5,db/journals/jaciii/jaciii16.html#KatagamiTN12,https://doi.org/10.20965/jaciii.2012.p0619 +Masato Shibasaki,A Framework for Nonmonotonic Reasoning with Rule Priorities.,1998,2,JACIII,1,db/journals/jaciii/jaciii2.html#ShibasakiN98,https://doi.org/10.20965/jaciii.1998.p0016 +M. Fakhrul Islam,Improved ANN Based Tap-Changer Controller Using Modified Cascade-Correlation Algorithm.,2005,9,JACIII,3,db/journals/jaciii/jaciii9.html#IslamKL05,https://doi.org/10.20965/jaciii.2005.p0226 +Gergely Kocsis,The Analysis of Portals Considering Mobile Clients.,2014,18,JACIII,3,db/journals/jaciii/jaciii18.html#KocsisEA14,https://doi.org/10.20965/jaciii.2014.p0306 +Yong Hao,Spatial Object Segmentation Using Stereo Images.,2010,14,JACIII,6,db/journals/jaciii/jaciii14.html#HaoHNCI10,https://doi.org/10.20965/jaciii.2010.p0645 +Toru Sugimoto,Programming in Everyday Language: A Case for Email Management.,2006,10,JACIII,6,db/journals/jaciii/jaciii10.html#SugimotoIIS06,https://doi.org/10.20965/jaciii.2006.p0821 +Jari Kortelainen,A Selection Model with Linguistically Expressed Objectives.,2005,9,JACIII,5,db/journals/jaciii/jaciii9.html#Kortelainen05,https://doi.org/10.20965/jaciii.2005.p0498 +Hugang Han,Adaptive Fuzzy Control for a Class of Nonlinear Systems with State Observer.,2006,10,JACIII,2,db/journals/jaciii/jaciii10.html#Han06,https://doi.org/10.20965/jaciii.2006.p0225 +Yoshiyuki Yabuuchi,Fuzzy Robust Regression Model by Possibility Maximization.,2011,15,JACIII,4,db/journals/jaciii/jaciii15.html#YabuuchiW11,https://doi.org/10.20965/jaciii.2011.p0479 +Lu Chen,A Tradeoff-Based Interactive Multi-Objective Optimization Method Driven by Evolutionary Algorithms.,2017,21,JACIII,2,db/journals/jaciii/jaciii21.html#ChenXC17,https://doi.org/10.20965/jaciii.2017.p0284 +Guangtong Gu,Innovation Path of Manufacturing Enterprises and Strategies for Transformation and Upgrading in China.,2017,21,JACIII,6,db/journals/jaciii/jaciii21.html#GuX17a,https://doi.org/10.20965/jaciii.2017.p1048 +Wei Song,Evolutionary Pose Measurement by Stereo Model Matching.,2005,9,JACIII,2,db/journals/jaciii/jaciii9.html#SongMM05,https://doi.org/10.20965/jaciii.2005.p0150 +Aprinaldi Jasa Mantau,Detecting Ellipses in Embryo Images Using Arc Detection Method with Particle Swarm for Blastomere-Quality Measurement System.,2016,20,JACIII,7,db/journals/jaciii/jaciii20.html#MantauBWJ16,https://doi.org/10.20965/jaciii.2016.p1170 +Zhi Zheng,Distributed Cooperation Based Priority Coverage Control Strategy for Mobile Sensors.,2015,19,JACIII,2,db/journals/jaciii/jaciii19.html#ZhengP15,https://doi.org/10.20965/jaciii.2015.p0191 +Yutaka Hatakeyama,Fuzzified Evaluation of Cardiotocography Data for Real Medical Data.,2016,20,JACIII,1,db/journals/jaciii/jaciii20.html#HatakeyamaKNWO16,https://doi.org/10.20965/jaciii.2016.p0033 +Naohiko Kinoshita,On Objective-Based Rough Hard and Fuzzy c-Means Clustering.,2015,19,JACIII,1,db/journals/jaciii/jaciii19.html#KinoshitaE15,https://doi.org/10.20965/jaciii.2015.p0029 +Kazuo Miura,Processing Technical Daily Reports in Offshore Petroleum Engineering - An Experience.,2003,7,JACIII,2,db/journals/jaciii/jaciii7.html#MiuraGMM03,https://doi.org/10.20965/jaciii.2003.p0223 +Dat Tran,Handwriting Recognition Applications for Tablet PCs.,2007,11,JACIII,7,db/journals/jaciii/jaciii11.html#TranMS07a,https://doi.org/10.20965/jaciii.2007.p0787 +Zsombor Paroczi,Augmented Reality Aspects of Object Recognition in Driver Support Systems.,2012,16,JACIII,2,db/journals/jaciii/jaciii16.html#ParocziNGKVSL12,https://doi.org/10.20965/jaciii.2012.p0284 +Takumi Sugiura,Proposal on Drone Control Device with Tactile Display.,2018,22,JACIII,3,db/journals/jaciii/jaciii22.html#SugiuraSN18,https://doi.org/10.20965/jaciii.2018.p0341 +Koichi Yamada,Leaning Causal Models with Conditional Causal Probabilities from Data.,2002,6,JACIII,1,db/journals/jaciii/jaciii6.html#Yamada02,https://doi.org/10.20965/jaciii.2002.p0025 +Yasuyuki Murai,Accelerated Genetic Programming for Intelligent Fuzzy Robots.,2004,8,JACIII,6,db/journals/jaciii/jaciii8.html#MuraiMTTT04,https://doi.org/10.20965/jaciii.2004.p0582 +Naoyoshi Yubazaki,SIRMs (Single Input Rule Modules) Connected Fuzzy Inference Model.,1997,1,JACIII,1,db/journals/jaciii/jaciii1.html#YubazakiYH97,https://doi.org/10.20965/jaciii.1997.p0023 +Sadaaki Miyamoto,A Family of Polymodal Systems and its Application to Generalized Possibility Measures and Multi-Rough Sets.,2006,10,JACIII,5,db/journals/jaciii/jaciii10.html#MiyamotoMK06,https://doi.org/10.20965/jaciii.2006.p0625 +Yangjun Chen,Minimization of XML Tree Pattern Queries in the Presence of Integrity Constraints.,2006,10,JACIII,5,db/journals/jaciii/jaciii10.html#ChenC06a,https://doi.org/10.20965/jaciii.2006.p0744 +Kotaro Hirasawa,Control of Decentralized Systems Based on Nash Equilibrium Concept of Game Theory.,1999,3,JACIII,4,db/journals/jaciii/jaciii3.html#HirasawaHYJE99,https://doi.org/10.20965/jaciii.1999.p0312 +Hyung-Hwan An,Preparation of Cation Exchanger Using Electrospun Polystyrene Nanofiber.,2006,10,JACIII,2,db/journals/jaciii/jaciii10.html#AnS06,https://doi.org/10.20965/jaciii.2006.p0196 +Aditya Sriram,Artificial Neural Networks for Earthquake Anomaly Detection.,2014,18,JACIII,5,db/journals/jaciii/jaciii18.html#SriramRB14,https://doi.org/10.20965/jaciii.2014.p0701 +Jianqiang Yi,A New Fuzzy Controller for Stabilizing Inverted Pendulums Based on Single Input Rule Modules Dynamically Connected Fuzzy Inference Model.,2001,5,JACIII,1,db/journals/jaciii/jaciii5.html#YiYH01,https://doi.org/10.20965/jaciii.2001.p0058 +Yoshiaki Okubo,Attacking Legal Argument by Pointing Out the Incoherence of Interpretation of Statute.,1997,1,JACIII,2,db/journals/jaciii/jaciii1.html#OkuboH97,https://doi.org/10.20965/jaciii.1997.p0104 +Xiang-Yan Zeng,Classification of Remotely Sensed Images Using Independent Component Analysis and Spatial Consistency.,2004,8,JACIII,2,db/journals/jaciii/jaciii8.html#ZengCN04,https://doi.org/10.20965/jaciii.2004.p0216 +Imre J. Rudas,Editorial.,2006,10,JACIII,4,db/journals/jaciii/jaciii10.html#RudasF06,https://doi.org/10.20965/jaciii.2006.p0477 +Xueyan Pan,Construction and Application of Mixed Copula Model.,2018,22,JACIII,4,db/journals/jaciii/jaciii22.html#PanCC18,https://doi.org/10.20965/jaciii.2018.p0457 +Satoshi Hoshino,Interactive Motion Planning for Mobile Robot Navigation in Dynamic Environments.,2017,21,JACIII,4,db/journals/jaciii/jaciii21.html#HoshinoU17,https://doi.org/10.20965/jaciii.2017.p0667 +Kaoru Hirota,Image Compression and Reconstruction based on Fuzzy Relation and Soft Computing Technology.,2004,8,JACIII,1,db/journals/jaciii/jaciii8.html#HirotaNKY04,https://doi.org/10.20965/jaciii.2004.p0072 +Jing Wu,Template-Based Model for Mongolian-Chinese Machine Translation.,2016,20,JACIII,6,db/journals/jaciii/jaciii20.html#WuHBJ16,https://doi.org/10.20965/jaciii.2016.p0893 +Reggie C. Gustilo,Behavioural Response Analysis Using Vision Engineering (BRAVENet).,2017,21,JACIII,2,db/journals/jaciii/jaciii21.html#GustiloD17,https://doi.org/10.20965/jaciii.2017.p0211 +Yuta Hayashi,Healthy Eating Habits Support System Considering User Taste Preferences and Nutritional Balance.,2018,22,JACIII,1,db/journals/jaciii/jaciii22.html#HayashiOTT18,https://doi.org/10.20965/jaciii.2018.p0097 +Hajime Yoshino,Logical Structure of Contract Law System - For Constructing a Knowledge Base of the United Nations Convention on Contracts for the International Sale of Goods -.,1998,2,JACIII,1,db/journals/jaciii/jaciii2.html#Yoshino98,https://doi.org/10.20965/jaciii.1998.p0002 +Nobuhiko Yamaguchi,Constructing Generative Topographic Mapping by Variational Bayes with ARD Hierarchical Prior.,2013,17,JACIII,4,db/journals/jaciii/jaciii17.html#Yamaguchi13,https://doi.org/10.20965/jaciii.2013.p0473 +Yosuke Dendo,An Agent System Using Basic Emotions as Communication Method.,2003,7,JACIII,1,db/journals/jaciii/jaciii7.html#DendoK03,https://doi.org/10.20965/jaciii.2003.p0040 +Zaher Al Aghbari,Effective Image Mining by Representing Color Histograms as Time Series.,2009,13,JACIII,2,db/journals/jaciii/jaciii13.html#Aghbari09,https://doi.org/10.20965/jaciii.2009.p0109 +Yusuke Kubo,Understanding Geographic Attentions of Crowd from Photographing Information.,2013,17,JACIII,6,db/journals/jaciii/jaciii17.html#KuboKSHN13,https://doi.org/10.20965/jaciii.2013.p0890 +Zhong-Da Tian,Coke Oven Flue Temperature Control Based on Improved Implicit Generalized Predictive Control.,2018,22,JACIII,2,db/journals/jaciii/jaciii22.html#TianLW18,https://doi.org/10.20965/jaciii.2018.p0203 +Hiroaki Nakanishi,Extraction of Coordinative Structures of Motions by Segmentation Using Singular Spectrum Transformation.,2011,15,JACIII,8,db/journals/jaciii/jaciii15.html#NakanishiKHSH11,https://doi.org/10.20965/jaciii.2011.p1019 +Yuta Izutsu,A Study on Conversational Content Recognition Method Using Japanese WordNet for Robot-Assisted Therapies.,2012,16,JACIII,1,db/journals/jaciii/jaciii16.html#IzutsuKYSTT12,https://doi.org/10.20965/jaciii.2012.p0062 +Masao Ogino,A Large-Scale Magnetostatic Analysis Using an Iterative Domain Decomposition Method Based on the Minimal Residual Method.,2012,16,JACIII,4,db/journals/jaciii/jaciii16.html#OginoSTBK12,https://doi.org/10.20965/jaciii.2012.p0496 +Ryoichi Hasegawa,Solving Order/Degree Problems by Using EDA-GK with a Novel Sampling Method.,2018,22,JACIII,2,db/journals/jaciii/jaciii22.html#HasegawaH18,https://doi.org/10.20965/jaciii.2018.p0236 +Keisuke Kimura,Effective Method for Wind and Solar Power Grid Systems Based on Recurrent Neural Networks.,2014,18,JACIII,6,db/journals/jaciii/jaciii18.html#KimuraKHJ14,https://doi.org/10.20965/jaciii.2014.p1034 +Hsin-Yuan Chen,Hinfinity Filtering Approach for GSM Navigation Systems.,2008,12,JACIII,3,db/journals/jaciii/jaciii12.html#Chen08,https://doi.org/10.20965/jaciii.2008.p0290 +Mio Suzuki,Musical Expression Generation Reflecting User's Impression by Kansei Space and Fuzzy Rules.,2012,16,JACIII,2,db/journals/jaciii/jaciii16.html#SuzukiO12,https://doi.org/10.20965/jaciii.2012.p0227 +Ruck Thawonmas,Classification of Online Game Players Using Action Transition Probability and Kullback Leibler Entropy.,2007,11,JACIII,3,db/journals/jaciii/jaciii11.html#ThawonmasH07,https://doi.org/10.20965/jaciii.2007.p0319 +Kenichiro Hayashi,Fuzzy Control Using Piecewise Linear Membership Functions Based on Knowledge of Tuning a PID Controller.,2001,5,JACIII,1,db/journals/jaciii/jaciii5.html#HayashiOS01,https://doi.org/10.20965/jaciii.2001.p0071 +ádam Varga,Predictive Control of Harmonic Drive in Automotive Application.,2007,11,JACIII,9,db/journals/jaciii/jaciii11.html#VargaL07,https://doi.org/10.20965/jaciii.2007.p1165 +Andri Mirzal,A Method for Accelerating the HITS Algorithm.,2010,14,JACIII,1,db/journals/jaciii/jaciii14.html#MirzalF10,https://doi.org/10.20965/jaciii.2010.p0089 +Katsuhiro Honda,Fuzzy Co-Clustering Induced by Multinomial Mixture Models.,2015,19,JACIII,6,db/journals/jaciii/jaciii19.html#HondaON15,https://doi.org/10.20965/jaciii.2015.p0717 +Yuchi Kanzawa,Entropy-Regularized Fuzzy Clustering for Non-Euclidean Relational Data and Indefinite Kernel Data.,2012,16,JACIII,7,db/journals/jaciii/jaciii16.html#Kanzawa12,https://doi.org/10.20965/jaciii.2012.p0784 +Michio Sugeno,Spatiotemporal Analysis of Brain Activity During Understanding Honorific Expressions.,2011,15,JACIII,9,db/journals/jaciii/jaciii15.html#SugenoY11,https://doi.org/10.20965/jaciii.2011.p1211 +Junzo Watada,An Affective Approach to Developing Marketing Strategies of Mineral Water.,2012,16,JACIII,4,db/journals/jaciii/jaciii16.html#WatadaYSK12,https://doi.org/10.20965/jaciii.2012.p0514 +Andri Riid,Identification of Numerically Accurate First-Order Takagi-Sugeno Systems with Interpretable Local Models from Data.,2005,9,JACIII,5,db/journals/jaciii/jaciii9.html#RiidR05,https://doi.org/10.20965/jaciii.2005.p0526 +Bolin Liao,Robustness Analyses and Optimal Sampling Gap of Recurrent Neural Network for Dynamic Matrix Pseudoinversion.,2017,21,JACIII,5,db/journals/jaciii/jaciii21.html#LiaoX17,https://doi.org/10.20965/jaciii.2017.p0778 +Anna Esposito,Speech Noise Cancellation Based on a Neuro-Fuzzy System: Further Improvements.,2001,5,JACIII,1,db/journals/jaciii/jaciii5.html#EspositoEG01,https://doi.org/10.20965/jaciii.2001.p0015 +Takaaki Kobayashi,Q-Learning in Continuous State-Action Space with Noisy and Redundant Inputs by Using a Selective Desensitization Neural Network.,2015,19,JACIII,6,db/journals/jaciii/jaciii19.html#KobayashiSM15,https://doi.org/10.20965/jaciii.2015.p0825 +Nikola K. Kasabov,The Application of Hybrid Evolving Connectionist Systems to Image Classification.,2000,4,JACIII,1,db/journals/jaciii/jaciii4.html#KasabovIW00,https://doi.org/10.20965/jaciii.2000.p0057 +James J. Buckley,Fuzzy Difference Equations: The Initial Value Problem.,2001,5,JACIII,6,db/journals/jaciii/jaciii5.html#BuckleyFH01a,https://doi.org/10.20965/jaciii.2001.p0315 +Maslina Zolkepli,Visualizing Fuzzy Relationship in Bibliographic Big Data Using Hybrid Approach Combining Fuzzy c-Means and Newman-Girvan Algorithm.,2014,18,JACIII,6,db/journals/jaciii/jaciii18.html#ZolkepliDH14,https://doi.org/10.20965/jaciii.2014.p0896 +Yutaka Hata,Automated 3D Surface Display for Evaluating Meniscal Tears Aided by Fuzzy Expert System.,2005,9,JACIII,1,db/journals/jaciii/jaciii9.html#HataKKN05,https://doi.org/10.20965/jaciii.2005.p0070 +Yaming Wang,Enhancement of Eyeround Images Based on an Improved Fuzzy Algorithm.,1999,3,JACIII,6,db/journals/jaciii/jaciii3.html#WangWWD99,https://doi.org/10.20965/jaciii.1999.p0441 +Yuji Yoshida,Ordered Weighted Averages on Intervals and the Sub/Super-Additivity.,2013,17,JACIII,4,db/journals/jaciii/jaciii17.html#Yoshida13,https://doi.org/10.20965/jaciii.2013.p0520 +Xiaoni Wang,The Research of the Distributed Resource-Aware K-means Clustering Algorithm.,2015,19,JACIII,3,db/journals/jaciii/jaciii19.html#Wang15,https://doi.org/10.20965/jaciii.2015.p0343 +Yi Li,Joint Spectrum Sensing and Data Transmission Optimization for Energy Efficiency in Cognitive Radio Sensor Networks: A Dynamic Cooperative Method.,2015,19,JACIII,2,db/journals/jaciii/jaciii19.html#LiPJLZ15,https://doi.org/10.20965/jaciii.2015.p0197 +Noboru Matsumoto,Emergence of Learning Rule in Neural Networks Using Genetic Programming Combined with Decision Trees.,1999,3,JACIII,4,db/journals/jaciii/jaciii3.html#MatsumotoMT99,https://doi.org/10.20965/jaciii.1999.p0223 +Jianjun Chen,Mathematical Morphology Based Image Segmentation and Character String Extraction Using Fuzzy Inference.,2015,19,JACIII,4,db/journals/jaciii/jaciii19.html#ChenT15,https://doi.org/10.20965/jaciii.2015.p0544 +Shigeru Kato,Intelligent Automated Guided Vehicle Controller with Reverse Strategy.,2011,15,JACIII,3,db/journals/jaciii/jaciii15.html#KatoW11,https://doi.org/10.20965/jaciii.2011.p0304 +Zhuo-Yun Nie,Asymmetric Prandtl-Ishlinskii Hysteresis Model for Giant Magnetostrictive Actuator.,2016,20,JACIII,2,db/journals/jaciii/jaciii20.html#NieFLGM16,https://doi.org/10.20965/jaciii.2016.p0223 +Kosuke Sekiyama,Distributed Route Guidance Systems with Self-Organized Multi-Layered Vector Fields.,2005,9,JACIII,2,db/journals/jaciii/jaciii9.html#SekiyamaO05,https://doi.org/10.20965/jaciii.2005.p0106 +Md. Tofazzal Hossain,An Evolutionary Negotiation Model Using Genetic Network Programming.,2010,14,JACIII,2,db/journals/jaciii/jaciii14.html#HossainMH10,https://doi.org/10.20965/jaciii.2010.p0215 +Nikola K. Kasabov,The ECOS Framework and the ECO Learning Method for Evolving Connectionist Systems.,1998,2,JACIII,6,db/journals/jaciii/jaciii2.html#Kasabov98,https://doi.org/10.20965/jaciii.1998.p0195 +Kohta Aoki,Behavior Learning and Animation Synthesis of Falling Flat Objects.,2004,8,JACIII,2,db/journals/jaciii/jaciii8.html#AokiHN04,https://doi.org/10.20965/jaciii.2004.p0223 +Ryan Rhay P. Vicerra,Slime Mold Inspired Swarm Robot System for Underwater Wireless Data Communication.,2016,20,JACIII,1,db/journals/jaciii/jaciii20.html#VicerraD16,https://doi.org/10.20965/jaciii.2016.p0092 +Takuro Kojima,Effects of Ecological Inheritance on Coevolution of Cooperative Behaviors and Physically Niche Constructing Behaviors.,2014,18,JACIII,3,db/journals/jaciii/jaciii18.html#KojimaSA14,https://doi.org/10.20965/jaciii.2014.p0391 +Katsuhiro Honda,Partially Exclusive Item Partition in MMMs-Induced Fuzzy Co-Clustering and its Effects in Collaborative Filtering.,2015,19,JACIII,6,db/journals/jaciii/jaciii19.html#HondaNOUN15,https://doi.org/10.20965/jaciii.2015.p0810 +Rolly Intan,Hybrid Probabilistic Models of Fuzzy and Rough Events.,2003,7,JACIII,3,db/journals/jaciii/jaciii7.html#IntanMN03,https://doi.org/10.20965/jaciii.2003.p0322 +Toshiaki Murofushi,"Editorial: ""Heart and Mind"" Evaluation.",2005,9,JACIII,5,db/journals/jaciii/jaciii9.html#Murofushi05,https://doi.org/10.20965/jaciii.2005.p0439 +Mary Ann Calleja,Femtosecond Pulsed Laser Deposition of Graphite on Silicon and Copper Foil.,2014,18,JACIII,5,db/journals/jaciii/jaciii18.html#CallejaAMPG14,https://doi.org/10.20965/jaciii.2014.p0764 +Sataya Takahashi,Kicking Motion Imitation of Inverted-Pendulum Mobile Robot and Development of Body Mapping from Human Demonstrator.,2011,15,JACIII,8,db/journals/jaciii/jaciii15.html#TakahashiTMN11,https://doi.org/10.20965/jaciii.2011.p1030 +Tomohiro Yamaguchi,Multiple-Timescale PIA for Model-Based Reinforcement Learning.,2009,13,JACIII,6,db/journals/jaciii/jaciii13.html#YamaguchiI09,https://doi.org/10.20965/jaciii.2009.p0658 +Takayuki Fujita,Autonomous Environmental Sensing System for Human Activity Monitoring.,2011,15,JACIII,3,db/journals/jaciii/jaciii15.html#FujitaOOHM11,https://doi.org/10.20965/jaciii.2011.p0383 +Ayuko Kamiyanagi,Evaluation of Swallowing Sound Using a Throat Microphone with an AE Sensor in Patients Wearing Palatal Augmentation Prosthesis.,2017,21,JACIII,3,db/journals/jaciii/jaciii21.html#KamiyanagiSCKSI17,https://doi.org/10.20965/jaciii.2017.p0573 +Xiaobo Liu 0001,A MultiBoosting Based Transfer Learning Algorithm.,2015,19,JACIII,3,db/journals/jaciii/jaciii19.html#LiuWCZ15,https://doi.org/10.20965/jaciii.2015.p0381 +Hui Yan,A Hierarchical Experimental Simulation Platform of Coking Production.,2015,19,JACIII,2,db/journals/jaciii/jaciii19.html#YanL015,https://doi.org/10.20965/jaciii.2015.p0232 +Hugang Han,A Design of Observers of Control State and Uncertainty via Transformation of T-S Fuzzy Models.,2018,22,JACIII,2,db/journals/jaciii/jaciii22.html#HanSC18,https://doi.org/10.20965/jaciii.2018.p0194 +Napoleon H. Reyes,Dynamic Color Object Recognition Using Fuzzy Logic.,2004,8,JACIII,1,db/journals/jaciii/jaciii8.html#ReyesD04,https://doi.org/10.20965/jaciii.2004.p0029 +Toshihiro Kaino,Improved Debt Rating Model Using Choquet Integral.,2005,9,JACIII,6,db/journals/jaciii/jaciii9.html#KainoUYH05,https://doi.org/10.20965/jaciii.2005.p0615 +Yasuyuki Murai,Fast Placement Algorithm for Rectilinear Jigsaw Puzzles.,2006,10,JACIII,3,db/journals/jaciii/jaciii10.html#MuraiTTT06,https://doi.org/10.20965/jaciii.2006.p0323 +Fujio Toriumi,Influence of Payoff in Meta-Rewards Game.,2014,18,JACIII,4,db/journals/jaciii/jaciii18.html#ToriumiYO14,https://doi.org/10.20965/jaciii.2014.p0616 +Huiyu Zhou,Time Related Association Rules Mining with Attributes Accumulation Mechanism and its Application to Traffic Prediction.,2008,12,JACIII,5,db/journals/jaciii/jaciii12.html#ZhouWSMH08,https://doi.org/10.20965/jaciii.2008.p0467 +Shuangjiao Fan,A Simulation Research on Inventory Cost of Custom Product Under E-commerce Circumstances.,2015,19,JACIII,3,db/journals/jaciii/jaciii19.html#FanW15,https://doi.org/10.20965/jaciii.2015.p0423 +Chao Xu,Estimation of Position and Intensity of Multi-Light Sources Based on Specular Sphere.,2018,22,JACIII,4,db/journals/jaciii/jaciii22.html#XuLH18,https://doi.org/10.20965/jaciii.2018.p0491 +Thomas Losert,Fault-Tolerant Compensation of the Propagation Delay for Hard Real-Time Systems.,2005,9,JACIII,4,db/journals/jaciii/jaciii9.html#LosertSE05,https://doi.org/10.20965/jaciii.2005.p0346 +Shin-ichi Ohnishi,A Fuzzy Weights Representation for Inner Dependence AHP.,2011,15,JACIII,3,db/journals/jaciii/jaciii15.html#OhnishiYI11,https://doi.org/10.20965/jaciii.2011.p0329 +Soichiro Yokoyama,Priority Rule-Based Construction Procedure Combined with Genetic Algorithm for Flexible Job-Shop Scheduling Problem.,2015,19,JACIII,6,db/journals/jaciii/jaciii19.html#YokoyamaIY15,https://doi.org/10.20965/jaciii.2015.p0892 +Suguru N. Kudoh,Operation of Spatiotemporal Patterns Stored in Living Neuronal Networks Cultured on a Microelectrode Array.,2004,8,JACIII,2,db/journals/jaciii/jaciii8.html#KudohT04,https://doi.org/10.20965/jaciii.2004.p0100 +Hideki Yamagishi,Reinforcement Leaning of Fuzzy Control Rules with Context-Specitic Segmentation of Actions.,2002,6,JACIII,1,db/journals/jaciii/jaciii6.html#YamagishiKHK02,https://doi.org/10.20965/jaciii.2002.p0019 +Jung-Lu Shen,The Cluster-Weighted DEMATEL with ANP Method for Supplier Selection in Food Industry.,2012,16,JACIII,5,db/journals/jaciii/jaciii16.html#ShenLT12,https://doi.org/10.20965/jaciii.2012.p0567 +Farid Bourennani,OGDE3: Opposition-Based Third Generalized Differential Evolution.,2012,16,JACIII,3,db/journals/jaciii/jaciii16.html#BourennaniRN12,https://doi.org/10.20965/jaciii.2012.p0469 +Yasunari Fujimoto,Determinism Measurement in Time Series by Chaotic Approach and Its Applications.,1999,3,JACIII,1,db/journals/jaciii/jaciii3.html#FujimotoI99,https://doi.org/10.20965/jaciii.1999.p0050 +Koki Suzuki,Investigating Effectiveness of an Expression Education Support Robot That Nods and Gives Hints.,2017,21,JACIII,3,db/journals/jaciii/jaciii21.html#SuzukiK17,https://doi.org/10.20965/jaciii.2017.p0483 +Hiroshi Kawakami,A Reinforcement Learning Scheme of Fuzzy Rules with Reduced Conditions.,2000,4,JACIII,2,db/journals/jaciii/jaciii4.html#KawakamiKK00,https://doi.org/10.20965/jaciii.2000.p0146 +Nataliya Kalashnykova,Consistent Conjectural Variations Equilibrium in a Mixed Duopoly.,2011,15,JACIII,4,db/journals/jaciii/jaciii15.html#KalashnykovaBKP11,https://doi.org/10.20965/jaciii.2011.p0425 +Takeshi Miyazaki,Acoustic Analysis of Breathy and Rough Voice Characterizing Elderly Speech.,2010,14,JACIII,2,db/journals/jaciii/jaciii14.html#MiyazakiMN10,https://doi.org/10.20965/jaciii.2010.p0135 +Robert John,Fuzzy Sets of Type-2.,1999,3,JACIII,6,db/journals/jaciii/jaciii3.html#John99,https://doi.org/10.20965/jaciii.1999.p0499 +Takuo Kikuchi,Application of Fuzzy Mathematical Morphology with Adaptive Structuring Elements to Seal Defect Testing.,2002,6,JACIII,1,db/journals/jaciii/jaciii6.html#KikuchiM02,https://doi.org/10.20965/jaciii.2002.p0062 +Yuji Muto,Reduction of Attribute Values for Kansei Representation.,2006,10,JACIII,5,db/journals/jaciii/jaciii10.html#MutoKM06,https://doi.org/10.20965/jaciii.2006.p0666 +Abu Mohammad,An Artificial Intelligence Approach to Develop a Time-Series Prediction Model of the Arc Furnace Resistance.,2010,14,JACIII,6,db/journals/jaciii/jaciii14.html#MohammadHN10,https://doi.org/10.20965/jaciii.2010.p0722 +Kojin Yano,Proposing a Transit Oriented Development Model Through Sensitivity Analysis of the Resident's Utility Function.,2016,20,JACIII,2,db/journals/jaciii/jaciii20.html#YanoHT16,https://doi.org/10.20965/jaciii.2016.p0302 +Elmer P. Dadios,Editorial.,2006,10,JACIII,2,db/journals/jaciii/jaciii10.html#Dadios06,https://doi.org/10.20965/jaciii.2006.p0135 +Feng Liu,Stability and Neimark-Sacker Bifurcation Analysis in a Genetic Network with Delay.,2017,21,JACIII,2,db/journals/jaciii/jaciii21.html#LiuYZS17,https://doi.org/10.20965/jaciii.2017.p0278 +Ilona Jagielska,Using Rough Sets for Practical Feature Selection in a Rough Sets/Neural Network Framework for Knowledge Discovery.,2000,4,JACIII,1,db/journals/jaciii/jaciii4.html#Jagielska00,https://doi.org/10.20965/jaciii.2000.p0031 +Hiroshi Igarashi,Adaptive Cooperation for Multi Agent Systems Based on Human Social Behavior.,2012,16,JACIII,1,db/journals/jaciii/jaciii16.html#IgarashiAT12,https://doi.org/10.20965/jaciii.2012.p0139 +Do Van Nguyen,Rough Set Approach with Imperfect Data Based on Dempster-Shafer Theory.,2014,18,JACIII,3,db/journals/jaciii/jaciii18.html#NguyenYU14,https://doi.org/10.20965/jaciii.2014.p0280 +Shen Furao,A Growing Neural Network for Online Unsupervised Learning.,2004,8,JACIII,2,db/journals/jaciii/jaciii8.html#FuraoH04,https://doi.org/10.20965/jaciii.2004.p0121 +Yasumasa Tamura,Acquisition of Dispatching Rules for Job-Shop Scheduling Problem by Artificial Neural Networks Using PSO.,2013,17,JACIII,5,db/journals/jaciii/jaciii17.html#TamuraYSF13,https://doi.org/10.20965/jaciii.2013.p0731 +Haruhiko Takase,Improve Discontinuous Output Change in SpikeProp.,2014,18,JACIII,3,db/journals/jaciii/jaciii18.html#TakaseKT14,https://doi.org/10.20965/jaciii.2014.p0361 +Chikamune Wada,Study of the Relationship Between Sit-to-Stand Activity and Seat Orientation.,2017,21,JACIII,2,db/journals/jaciii/jaciii21.html#WadaI17,https://doi.org/10.20965/jaciii.2017.p0337 +Tomoki Takada,Automatic Keyword Annotation System Using Newspapers.,2014,18,JACIII,3,db/journals/jaciii/jaciii18.html#TakadaAT14,https://doi.org/10.20965/jaciii.2014.p0340 +Okito Yamashita,Hierarchical Bayesian Model for Diffuse Optical Tomography of the Human Brain: Human Experimental Study.,2014,18,JACIII,6,db/journals/jaciii/jaciii18.html#YamashitaSKAIS14,https://doi.org/10.20965/jaciii.2014.p1026 +Noboru Takagi,An Application of Binary Decision Trees to Pattern Recognition.,2006,10,JACIII,5,db/journals/jaciii/jaciii10.html#Takagi06,https://doi.org/10.20965/jaciii.2006.p0682 +Xiaoxia Chen,Discrete Wavelet Transfer Based BPNN for Calculating Carbon Efficiency of Sintering Process.,2016,20,JACIII,7,db/journals/jaciii/jaciii20.html#ChenSCW16,https://doi.org/10.20965/jaciii.2016.p1070 +Chengqi Zhang,Introduction to the Special Issue on Learning in Intelligent Algorithms and Systems Design.,1999,3,JACIII,6,db/journals/jaciii/jaciii3.html#ZhangGC99,https://doi.org/10.20965/jaciii.1999.p0439 +Md. Atikur Rahman Sarker,Incorporating Renewable Energy Resources in a Smart Grid with Power Line Communication Using Matlab/Simulink.,2013,17,JACIII,1,db/journals/jaciii/jaciii17.html#SarkerUCN13,https://doi.org/10.20965/jaciii.2013.p0103 +Jeongsik Hwang,Kernel Functions Derived from Fuzzy Clustering and Their Application to Kernel Fuzzy c-Means.,2011,15,JACIII,1,db/journals/jaciii/jaciii15.html#HwangM11,https://doi.org/10.20965/jaciii.2011.p0090 +Daisuke Katagami,Behavior Generation and Evaluation of Negotiation Agent Based on Negotiation Dialogue Instances.,2010,14,JACIII,7,db/journals/jaciii/jaciii14.html#KatagamiIN10,https://doi.org/10.20965/jaciii.2010.p0840 +Ken Sugawara,A Study on a Foraging Behavior of Interacting Simple Robots.,2003,7,JACIII,2,db/journals/jaciii/jaciii7.html#SugawaraSW03,https://doi.org/10.20965/jaciii.2003.p0108 +Hyunseok Kim,Taxonomy of Atomic Actions for Home-Service Robots.,2005,9,JACIII,2,db/journals/jaciii/jaciii9.html#KimJH05,https://doi.org/10.20965/jaciii.2005.p0114 +Guangfei Yang,A Genetic Network Programming Based Method to Mine Generalized Association Rules with Ontology.,2008,12,JACIII,1,db/journals/jaciii/jaciii12.html#YangSMHH08,https://doi.org/10.20965/jaciii.2008.p0063 +Bo Sun,Multi-Channel Information Operations on Quantum Images.,2014,18,JACIII,2,db/journals/jaciii/jaciii18.html#SunIYSDAH14,https://doi.org/10.20965/jaciii.2014.p0140 +Yoshiyuki Okada,SIR-Extended Information Diffusion Model of False Rumor and its Prevention Strategy for Twitter.,2014,18,JACIII,4,db/journals/jaciii/jaciii18.html#OkadaISTSKNNK14,https://doi.org/10.20965/jaciii.2014.p0598 +Aoi Honda,Identification of Fuzzy Measures with Distorted Probability Measures.,2005,9,JACIII,5,db/journals/jaciii/jaciii9.html#HondaO05,https://doi.org/10.20965/jaciii.2005.p0467 +Ya-Ling Wu,The Analysis of Consumer Purchasing Behavior on Cosmetics.,2012,16,JACIII,3,db/journals/jaciii/jaciii16.html#WuC12,https://doi.org/10.20965/jaciii.2012.p0425 +Young Eun Song,Spatial Memory for Augmented Personal Working Environments.,2012,16,JACIII,2,db/journals/jaciii/jaciii16.html#SongKNH12,https://doi.org/10.20965/jaciii.2012.p0349 +László Horváth,Intelligent Human-Computer Communication of Engineers at Extended Companies.,2006,10,JACIII,4,db/journals/jaciii/jaciii10.html#HorvathR06,https://doi.org/10.20965/jaciii.2006.p0510 +Hideki Hashizumedag,Emergence of Cross-Generational Migration Behavior in Multiagent Simulation.,2009,13,JACIII,3,db/journals/jaciii/jaciii13.html#HashizumedagMKKI09,https://doi.org/10.20965/jaciii.2009.p0304 +Mike Nachtegael,Modelling Numerical and Spatial Uncertainty in Grayscale Image Capture Using Fuzzy Set Theory.,2009,13,JACIII,5,db/journals/jaciii/jaciii13.html#NachtegaelSMK09,https://doi.org/10.20965/jaciii.2009.p0529 +Ayman Haggag,Access Control and Scalable Encryption Using a Stream Cipher for JPEG 2000 Encoded Images.,2007,11,JACIII,7,db/journals/jaciii/jaciii11.html#HaggagGLY07,https://doi.org/10.20965/jaciii.2007.p0728 +Chenhua Xu,Intelligent Optimization of Cell Voltage for Energy Saving in Process of Electrolytic Aluminum.,2016,20,JACIII,2,db/journals/jaciii/jaciii20.html#XuWLLY16,https://doi.org/10.20965/jaciii.2016.p0231 +Yuchi Kanzawa,On Kernel Fuzzy c-Means for Data with Tolerance Using Explicit Mapping for Kernel Data Analysis.,2012,16,JACIII,1,db/journals/jaciii/jaciii16.html#KanzawaEM12,https://doi.org/10.20965/jaciii.2012.p0162 +Shuang Chang,Optimizing the Arrangement of Post-Disaster Rescue Activities: An Agent-Based Simulation Approach.,2017,21,JACIII,7,db/journals/jaciii/jaciii21.html#ChangIDK17,https://doi.org/10.20965/jaciii.2017.p1202 +Ken Satoh,Statutory Interpretation by Case-Based Reasoning through Abductive Logic Programming.,1997,1,JACIII,2,db/journals/jaciii/jaciii1.html#Satoh97,https://doi.org/10.20965/jaciii.1997.p0094 +Junya Inafune,New Approach Combining Branch and Price with Metaheuristics to Solve Nurse Scheduling Problem.,2017,21,JACIII,7,db/journals/jaciii/jaciii21.html#InafuneWO17,https://doi.org/10.20965/jaciii.2017.p1251 +Takuya Shindo,Switching Angles Optimization of Single Phase PWM DC-AC Inverter by Particle Swarm Optimizations.,2014,18,JACIII,3,db/journals/jaciii/jaciii18.html#ShindoJ14,https://doi.org/10.20965/jaciii.2014.p0435 +Satoshi Takumi,Nearest Prototype and Nearest Neighbor Clustering with Twofold Memberships Based on Inductive Property.,2013,17,JACIII,4,db/journals/jaciii/jaciii17.html#TakumiM13,https://doi.org/10.20965/jaciii.2013.p0504 +Hiroshi Takahashi,A Study on the Possibility of Applying Subliminal Visual Cue for Guiding Subject's Attention.,2012,16,JACIII,1,db/journals/jaciii/jaciii16.html#TakahashiH12,https://doi.org/10.20965/jaciii.2012.p0096 +Takehisa Onisawa,Kansei Information Processing in Multimedia Applying Intelligent Soft Computing Techniques.,2000,4,JACIII,6,db/journals/jaciii/jaciii4.html#Onisawa00,https://doi.org/10.20965/jaciii.2000.p0428 +Akira Sugawara,On Objective-Based Rough c-Regression.,2015,19,JACIII,1,db/journals/jaciii/jaciii19.html#SugawaraEK15,https://doi.org/10.20965/jaciii.2015.p0036 +Gerasimos G. Rigatos,Feed-Forward Neural Networks Based on the Eigenstates of the Quantum Harmonic Oscillator.,2006,10,JACIII,4,db/journals/jaciii/jaciii10.html#Rigatos06,https://doi.org/10.20965/jaciii.2006.p0567 +Hassan Rezaei,New Similarity Measure Between Two Fuzzy Sets.,2006,10,JACIII,6,db/journals/jaciii/jaciii10.html#RezaeiEM06,https://doi.org/10.20965/jaciii.2006.p0946 +Ryuichi Murata,On Fuzzy c-Means for Data with Tolerance.,2006,10,JACIII,5,db/journals/jaciii/jaciii10.html#MurataEHM06,https://doi.org/10.20965/jaciii.2006.p0673 +George J. Vachtsevanos,Mission Planning and Flight Control: Meeting the Challenge with Intelligent Techniques.,1997,1,JACIII,1,db/journals/jaciii/jaciii1.html#VachtsevanosKARSSP97,https://doi.org/10.20965/jaciii.1997.p0062 +Aymen Chaouachi,Neural Network Ensemble-Based Solar Power Generation Short-Term Forecasting.,2010,14,JACIII,1,db/journals/jaciii/jaciii14.html#ChaouachiKN10,https://doi.org/10.20965/jaciii.2010.p0069 +Bo Hu,Fault Diagnosis of Power Distribution Feeders with PV System Using Equivalent-Input-Disturbance Approach.,2013,17,JACIII,2,db/journals/jaciii/jaciii17.html#HuSY13,https://doi.org/10.20965/jaciii.2013.p0283 +M. A. H. Akhand,Hybrid Ensemble Construction with Selected Neural Networks.,2011,15,JACIII,6,db/journals/jaciii/jaciii15.html#AkhandSM11,https://doi.org/10.20965/jaciii.2011.p0652 +Shin-ichi Yoshida,Fuzzy Flip-Flops and their Applications to Fuzzy Memory Element and Circuit Design using FPGA.,2000,4,JACIII,5,db/journals/jaciii/jaciii4.html#YoshidaTH00,https://doi.org/10.20965/jaciii.2000.p0380 +Yakov Frayman,Machine Vision System for Automatic Inspection of Surface Defects in Aluminum Die Casting.,2006,10,JACIII,3,db/journals/jaciii/jaciii10.html#FraymanZN06,https://doi.org/10.20965/jaciii.2006.p0281 +Kosuke Yamamoto,A Proposal of Fuzzy Modeling on Fusion Axes.,2005,9,JACIII,2,db/journals/jaciii/jaciii9.html#YamamotoYF05,https://doi.org/10.20965/jaciii.2005.p0196 +Hidekatsu Koike,Dynamic Interaction of Syntactic and Semantic Analyses Based on the Equivalent Transformation Computation Model.,2006,10,JACIII,3,db/journals/jaciii/jaciii10.html#KoikeAM06,https://doi.org/10.20965/jaciii.2006.p0302 +Yoichi Hayashi,Editorial: Professor Ernest Czogala Memorial Issue Part 2.,1999,3,JACIII,4,db/journals/jaciii/jaciii3.html#Hayashi99a,https://doi.org/10.20965/jaciii.1999.p0213 +Yusuke Tamura,Where Robot Looks Is Not Where Person Thinks Robot Looks.,2017,21,JACIII,4,db/journals/jaciii/jaciii21.html#TamuraAO17,https://doi.org/10.20965/jaciii.2017.p0660 +Kiyoshi Moritaka,Use of Colored Reflectors for Negation or Highlighting of Scanned Color Information on Film-Based CIELAB-Coded Optical Logic Gate Models.,2013,17,JACIII,6,db/journals/jaciii/jaciii17.html#MoritakaK13,https://doi.org/10.20965/jaciii.2013.p0799 +Shinichi Yokota,A Dual-Axis Liquid-Rate Microgyroscope Using Electro-Conjugate Fluid.,2010,14,JACIII,7,db/journals/jaciii/jaciii14.html#YokotaOTE10,https://doi.org/10.20965/jaciii.2010.p0751 +Atsushi Otaki,Toward Strategic Human Skill Development Through Human and Agent Interaction: Improving Negotiation Skill by Interacting with Bargaining Agent.,2010,14,JACIII,7,db/journals/jaciii/jaciii14.html#OtakiHT10,https://doi.org/10.20965/jaciii.2010.p0831 +Atchara Mahaweerawat,MASP - An Enhanced Model of Fault Type Identification in Object-Oriented Software Engineering.,2006,10,JACIII,3,db/journals/jaciii/jaciii10.html#MahaweerawatSLM06,https://doi.org/10.20965/jaciii.2006.p0312 +Son Doan,Improving Text Categorization by Multicriteria Feature Selection.,2005,9,JACIII,5,db/journals/jaciii/jaciii9.html#DoanH05,https://doi.org/10.20965/jaciii.2005.p0570 +Jun Zhang,Color Quantization Based on Hierarchical Frequency Sensitive Competitive Learning.,2010,14,JACIII,4,db/journals/jaciii/jaciii14.html#ZhangH10,https://doi.org/10.20965/jaciii.2010.p0375 +Fan Guo,Retinal Blood Vessel Segmentation Using Extreme Learning Machine.,2017,21,JACIII,7,db/journals/jaciii/jaciii21.html#GuoXZZW17,https://doi.org/10.20965/jaciii.2017.p1280 +Taedong Park,Development of an Automatic Tunneling Algorithm Based on Fuzzy Logic for the Microtunneling System.,2004,8,JACIII,4,db/journals/jaciii/jaciii8.html#ParkNHDB04,https://doi.org/10.20965/jaciii.2004.p0426 +Jeremy Kackley,I3P: A Protocol for Increasing Reliability and Responsiveness in Massively Multiplayer Games.,2008,12,JACIII,2,db/journals/jaciii/jaciii12.html#KackleyGG08,https://doi.org/10.20965/jaciii.2008.p0142 +Seiya Kuroda,Introduction of Fixed Mode States into Online Reinforcement Learning with Penalties and Rewards and its Application to Biped Robot Waist Trajectory Generation.,2012,16,JACIII,6,db/journals/jaciii/jaciii16.html#KurodaMK12,https://doi.org/10.20965/jaciii.2012.p0758 +Shin Wakitani,Design and Implementation of a Data-Oriented Nonlinear PID Controller.,2013,17,JACIII,5,db/journals/jaciii/jaciii17.html#WakitaniNMY13,https://doi.org/10.20965/jaciii.2013.p0690 +Toru Eguchi,Elevator Group Supervisory Control System Using Genetic Network Programming with Functional Localization.,2006,10,JACIII,3,db/journals/jaciii/jaciii10.html#EguchiZEHHM06,https://doi.org/10.20965/jaciii.2006.p0385 +László T. Kóczy,Fuzzy Rule Interpolation by the Conservation of Relative Fuzziness.,2000,4,JACIII,1,db/journals/jaciii/jaciii4.html#KoczyHG00,https://doi.org/10.20965/jaciii.2000.p0095 +Kiyoshi Akama,State-Transition Computation Models and Program Correctness Thereon.,2007,11,JACIII,10,db/journals/jaciii/jaciii11.html#AkamaN07a,https://doi.org/10.20965/jaciii.2007.p1250 +Liran Li,An Adaptive Fast Charging Strategy for LiFePO4 Battery Applied to Heavy-Haul Train ECP Brake System.,2016,20,JACIII,7,db/journals/jaciii/jaciii20.html#LiHGPZ16,https://doi.org/10.20965/jaciii.2016.p1077 +Sigeru Omatu,Neuro-PID Control for Electric Vehicle.,2011,15,JACIII,7,db/journals/jaciii/jaciii15.html#OmatuYF11,https://doi.org/10.20965/jaciii.2011.p0846 +Vitaliy V. Kalashnikov Jr.,Consistent Conjectural Variations Equilibrium in a Semi-Mixed Duopoly.,2017,21,JACIII,7,db/journals/jaciii/jaciii21.html#KalashnikovFKK17,https://doi.org/10.20965/jaciii.2017.p1125 +László Horváth,Emerging Intelligent Technologies in Computer-Aided Engineering.,2000,4,JACIII,4,db/journals/jaciii/jaciii4.html#HorvathR00,https://doi.org/10.20965/jaciii.2000.p0268 +G. K. Park,Editorial.,2008,12,JACIII,6,db/journals/jaciii/jaciii12.html#Park08,https://doi.org/10.20965/jaciii.2008.p0487 +Ryotaro Kamimura,Relative Relaxation and Weighted Information Loss to Simplify and Stabilize Feature Detection.,2009,13,JACIII,4,db/journals/jaciii/jaciii13.html#Kamimura09,https://doi.org/10.20965/jaciii.2009.p0489 +Jung-Hua Wang,Self-Organizing Fusion Neural Networks.,2007,11,JACIII,6,db/journals/jaciii/jaciii11.html#WangTSJ07,https://doi.org/10.20965/jaciii.2007.p0610 +Yonghua Xiong,Design and Implementation of a Prototype Cloud Video Surveillance System.,2014,18,JACIII,1,db/journals/jaciii/jaciii18.html#XiongWHS14,https://doi.org/10.20965/jaciii.2014.p0040 +Takahiro Yamanoi,Micro Robot Control by Use of Electroencephalograms from Right Frontal Area.,2009,13,JACIII,2,db/journals/jaciii/jaciii13.html#YamanoiTYOSS09,https://doi.org/10.20965/jaciii.2009.p0068 +Cao Thang,A Proposed Model of Diagnosis and Prescription in Oriental Medicine Using RBF Neural Networks.,2006,10,JACIII,4,db/journals/jaciii/jaciii10.html#ThangCHKP06,https://doi.org/10.20965/jaciii.2006.p0458 +Kuntjoro Adji Sidarto,Finding All Solutions of Systems of Nonlinear Equations Using Spiral Dynamics Inspired Optimization with Clustering.,2015,19,JACIII,5,db/journals/jaciii/jaciii19.html#SidartoK15,https://doi.org/10.20965/jaciii.2015.p0697 +Yasutake Takahashi,Fuzzy Control for a Kite-Based Tethered Flying Robot.,2015,19,JACIII,3,db/journals/jaciii/jaciii19.html#TakahashiITMN15,https://doi.org/10.20965/jaciii.2015.p0349 +Kanta Tachibana,Uneven Input Space Division and Balance of Generality and Conciseness of Submodels for Hierarchical Fuzzy Modeling.,2000,4,JACIII,2,db/journals/jaciii/jaciii4.html#TachibanaF00,https://doi.org/10.20965/jaciii.2000.p0152 +Hassab Elgawi Osman,Variable Ranking for Online Ensemble Learning.,2009,13,JACIII,3,db/journals/jaciii/jaciii13.html#Osman09a,https://doi.org/10.20965/jaciii.2009.p0331 +Haruki Kawanaka,Soccer Player'fs Pose Recognition by Creative Search for Generating Free Viewpoint Images.,2009,13,JACIII,3,db/journals/jaciii/jaciii13.html#KawanakaMI09,https://doi.org/10.20965/jaciii.2009.p0193 +Kiyohiko Uehara,Multi-Level Control of Fuzzy-Constraint Propagation in Inference Based on α-Cuts and Generalized Mean.,2013,17,JACIII,4,db/journals/jaciii/jaciii17.html#UeharaH13b,https://doi.org/10.20965/jaciii.2013.p0647 +Martin Leonard Tangel,Dental Numbering for Periapical Radiograph Based on Multiple Fuzzy Attribute Approach.,2014,18,JACIII,3,db/journals/jaciii/jaciii18.html#TangelFYBWDH14,https://doi.org/10.20965/jaciii.2014.p0253 +Alex Masuo Kaneko,Development of an Automatic Landmine Detection and Marking System for the Demining Robot Gryphon.,2011,15,JACIII,6,db/journals/jaciii/jaciii15.html#KanekoF11,https://doi.org/10.20965/jaciii.2011.p0737 +Hiroyuki Masuta,Self-Organized Map Based Learning System for Estimating the Specific Task by Simple Instructions.,2013,17,JACIII,3,db/journals/jaciii/jaciii17.html#MasutaTL13,https://doi.org/10.20965/jaciii.2013.p0450 +Masahiko Narita,Verifying the Reliability of Web Services Interactions for the Robot Communication Platform.,2008,12,JACIII,1,db/journals/jaciii/jaciii12.html#NaritaSYIY08,https://doi.org/10.20965/jaciii.2008.p0077 +Francesco Frisone,Self-organization in Cortical Maps and EM-learning.,1998,2,JACIII,6,db/journals/jaciii/jaciii2.html#FrisoneMP98,https://doi.org/10.20965/jaciii.1998.p0178 +Risa Kitajima,Latent Topic Estimation Based on Events in a Document.,2012,16,JACIII,5,db/journals/jaciii/jaciii16.html#KitajimaK12,https://doi.org/10.20965/jaciii.2012.p0603 +Katsushige Fujimoto,On Inheritance of Complementarity in Non-Additive Measures Under Bounded Interactions.,2018,22,JACIII,1,db/journals/jaciii/jaciii22.html#Fujimoto18,https://doi.org/10.20965/jaciii.2018.p0027 +Qian Tian,An Activity Monitor Design Based on Wavelet Analysis and Wireless Sensor Networks.,2007,11,JACIII,3,db/journals/jaciii/jaciii11.html#TianXY07,https://doi.org/10.20965/jaciii.2007.p0261 +Huawei Wang,Determining Extrinsic Parameters for Active Stereovision.,2009,13,JACIII,2,db/journals/jaciii/jaciii13.html#WangX09,https://doi.org/10.20965/jaciii.2009.p0076 +Zhenlei Wang,Research on Non-Performing Loans Ratio's Controlling: Evidence from 13 Commercial Banks.,2017,21,JACIII,6,db/journals/jaciii/jaciii21.html#WangQ17,https://doi.org/10.20965/jaciii.2017.p1079 +Cecília Reis,Computational Intelligence in Circuit Synthesis.,2007,11,JACIII,9,db/journals/jaciii/jaciii11.html#ReisM07,https://doi.org/10.20965/jaciii.2007.p1122 +Tadashi Ohashi,Hierarchical Concept Structures Based Data Retrieval/Mining by Fuzzy Document Ordering System.,2004,8,JACIII,6,db/journals/jaciii/jaciii8.html#OhashiNH04,https://doi.org/10.20965/jaciii.2004.p0633 +Edy Irwansyah,Three-Stage Fuzzy Rule-Based Model for Earthquake Non-Engineered Building House Damage Hazard Determination.,2017,21,JACIII,7,db/journals/jaciii/jaciii21.html#IrwansyahHH17,https://doi.org/10.20965/jaciii.2017.p1298 +Takashi Hasuike,Multiobjective Random Fuzzy Linear Programming Problems Based on the Possibility Maximization Model.,2009,13,JACIII,4,db/journals/jaciii/jaciii13.html#HasuikeKI09,https://doi.org/10.20965/jaciii.2009.p0373 +Bo Sun,An RGB Multi-Channel Representation for Images on Quantum Computers.,2013,17,JACIII,3,db/journals/jaciii/jaciii17.html#SunIYDH13,https://doi.org/10.20965/jaciii.2013.p0404 +Annamária R. Várkonyi-Kóczy,A Universal Autonomous Robot Navigation Method.,2008,12,JACIII,2,db/journals/jaciii/jaciii12.html#Varkonyi-Koczy08a,https://doi.org/10.20965/jaciii.2008.p0206 +Kazuhiko Kawamoto,Voting-Based Approach to Nullspace Search for Correspondence Matching and Shape Recovery.,2006,10,JACIII,1,db/journals/jaciii/jaciii10.html#KawamotoIH06,https://doi.org/10.20965/jaciii.2006.p0011 +Hirosato Seki,On the Monotonicity of Fuzzy Inference Models.,2012,16,JACIII,5,db/journals/jaciii/jaciii16.html#SekiT12,https://doi.org/10.20965/jaciii.2012.p0592 +James J. Buckley,Intelligent Consultant.,2001,5,JACIII,2,db/journals/jaciii/jaciii5.html#BuckleyFH01,https://doi.org/10.20965/jaciii.2001.p0119 +Bing Xu,Asset Structure and Solvency of Insurance Companies in China with Path Identification Model.,2015,19,JACIII,3,db/journals/jaciii/jaciii19.html#XuPY15,https://doi.org/10.20965/jaciii.2015.p0465 +Qian Gao,A Multi-Agent Personalized Query Refinement Approach for Academic Paper Retrieval in Big Data Environment.,2012,16,JACIII,7,db/journals/jaciii/jaciii16.html#GaoC12,https://doi.org/10.20965/jaciii.2012.p0874 +Tuan A. Duong,Real Time Adaptive Color Segmentation for Mars Landing Site Identification.,2003,7,JACIII,3,db/journals/jaciii/jaciii7.html#DuongD03,https://doi.org/10.20965/jaciii.2003.p0289 +Jozef Vojtko,Utilization of Neural Networks for Error Reduction of Elastomagnetic Sensors.,2005,9,JACIII,4,db/journals/jaciii/jaciii9.html#VojtkoKMK05,https://doi.org/10.20965/jaciii.2005.p0372 +Ichiro Kobayashi,A New Communication Method Using Natural Language as a Computer Communication Protocol.,2003,7,JACIII,2,db/journals/jaciii/jaciii7.html#KobayashiSIIOS03,https://doi.org/10.20965/jaciii.2003.p0215 +Tomio Kurokawa,Learning and Technical Market -Effects of In-Sample Data Selection-.,2009,13,JACIII,6,db/journals/jaciii/jaciii13.html#Kurokawa09,https://doi.org/10.20965/jaciii.2009.p0726 +Qiang Shen 0001,Generalisation of Scale and Move Transformation-Based Fuzzy Interpolation.,2011,15,JACIII,3,db/journals/jaciii/jaciii15.html#ShenY11,https://doi.org/10.20965/jaciii.2011.p0288 +Jun Yoneyama,Robust Guaranteed Cost Control of Uncertain Fuzzy Systems Under Sampled-Data Inputs.,2009,13,JACIII,2,db/journals/jaciii/jaciii13.html#Yoneyama09,https://doi.org/10.20965/jaciii.2009.p0150 +Rafael Cabredo,Discovering Emotion-Inducing Music Features Using EEG Signals.,2013,17,JACIII,3,db/journals/jaciii/jaciii17.html#CabredoLIN13,https://doi.org/10.20965/jaciii.2013.p0362 +Dongshik Kang,Fast Neuro-Classification of New and Used Bills Using Spectral Patterns of Acoustic Data.,2000,4,JACIII,1,db/journals/jaciii/jaciii4.html#KangOY00,https://doi.org/10.20965/jaciii.2000.p0012 +Xin-Xin Xu,Research on Continuous Sign Language Sentence Recognition Algorithm Based on Weighted Key-Frame.,2018,22,JACIII,4,db/journals/jaciii/jaciii22.html#XuHH18,https://doi.org/10.20965/jaciii.2018.p0483 +Muhammad Talha,Experimental Evaluation of Cell Balancing Algorithms with Arduino Based Monitoring System.,2016,20,JACIII,6,db/journals/jaciii/jaciii20.html#TalhaAK16,https://doi.org/10.20965/jaciii.2016.p0968 +Kin Fong Lei,Complexity Minimalization of Nonsingleton-based Fuzzy-Neural Network.,2000,4,JACIII,4,db/journals/jaciii/jaciii4.html#LeiBY00,https://doi.org/10.20965/jaciii.2000.p0286 +Bruno Gas,A New Approach To Speech Coding: the Neural Predictive Coding.,2000,4,JACIII,1,db/journals/jaciii/jaciii4.html#GasZC00,https://doi.org/10.20965/jaciii.2000.p0120 +Anthony P. Salvatore,Expert System-Type Approach to Voice Disorders: Scheduling Botulinum Toxin Treatment for Adductor Spasmodic Dysphonia.,2006,10,JACIII,3,db/journals/jaciii/jaciii10.html#SalvatoreBKMCS06,https://doi.org/10.20965/jaciii.2006.p0332 +Jonathan Lee,Editorial: Selected Papers from IFSA'99.,2001,5,JACIII,3,db/journals/jaciii/jaciii5.html#LeeW01,https://doi.org/10.20965/jaciii.2001.p0127 +Ken Nagasaka,A Mechanism Design for Managing Emissions in Energy Supply Sector.,2013,17,JACIII,1,db/journals/jaciii/jaciii17.html#NagasakaTG13,https://doi.org/10.20965/jaciii.2013.p0094 +Kento Uemura,AEGA: A New Real-Coded Genetic AlgorithmTaking Account of Extrapolation.,2016,20,JACIII,3,db/journals/jaciii/jaciii20.html#UemuraO16,https://doi.org/10.20965/jaciii.2016.p0429 +Yukifumi Shigematsu,Temporal Event Association and Output-Dependent Learning: A Proposed Scheme of Neural Molecular Connections.,1999,3,JACIII,4,db/journals/jaciii/jaciii3.html#ShigematsuOIM99,https://doi.org/10.20965/jaciii.1999.p0234 +Hiroshi Sakai,Rough Sets Based Rule Generation from Data with Categorical and Numerical Values.,2008,12,JACIII,5,db/journals/jaciii/jaciii12.html#SakaiKN08,https://doi.org/10.20965/jaciii.2008.p0426 +Yu Shirashige,Chromatic Vision Support System with Color Conversion Constraints.,2013,17,JACIII,2,db/journals/jaciii/jaciii17.html#ShirashigeOKMI13,https://doi.org/10.20965/jaciii.2013.p0176 +Yoshio Nishikawa,High Accurate Discrimination Method of Forearm Motions from Surface Electromyogram and its Condition.,2011,15,JACIII,5,db/journals/jaciii/jaciii15.html#NishikawaKK11,https://doi.org/10.20965/jaciii.2011.p0545 +Ryota Nakatani,A Person Identification Method Using a Top-View Head Image from an Overhead Camera.,2012,16,JACIII,6,db/journals/jaciii/jaciii16.html#NakataniKSE12,https://doi.org/10.20965/jaciii.2012.p0696 +Tetsuya Watanabe,Evaluation of Virtual Tactile Dots on Touchscreens in Map Reading: Perception of Distance and Direction.,2017,21,JACIII,1,db/journals/jaciii/jaciii21.html#WatanabeKY17,https://doi.org/10.20965/jaciii.2017.p0079 +Tatsu Aoki,Implementation of Fixed-Point Control Algorithms Based on the Modified Delta Operator and Form for Intelligent Systems.,2007,11,JACIII,6,db/journals/jaciii/jaciii11.html#Aoki07,https://doi.org/10.20965/jaciii.2007.p0709 +Dong Hwa Kim,Robust Tuning of PID Controller Using Bacterial-Foraging-Based Optimization.,2005,9,JACIII,6,db/journals/jaciii/jaciii9.html#KimC05,https://doi.org/10.20965/jaciii.2005.p0669 +Eiji Nunohiro,Applying Multi-Agent Algorithm to a Class Scheduling System.,2005,9,JACIII,3,db/journals/jaciii/jaciii9.html#NunohiroM05,https://doi.org/10.20965/jaciii.2005.p0314 +Takashi Miyajima,Placement Time Optimization of Chip Mounter by Genetic Algorithms - Search for Optimal Tape Feeder Arrangement -.,1998,2,JACIII,5,db/journals/jaciii/jaciii2.html#MiyajimaK98,https://doi.org/10.20965/jaciii.1998.p0160 +Hiroshi Takenouchi,Tournament Evaluation System Applying Win-Lose Result Presumption Considering Kansei Evaluation by Multiple People.,2012,16,JACIII,3,db/journals/jaciii/jaciii16.html#TakenouchiTM12,https://doi.org/10.20965/jaciii.2012.p0453 +Xiongbo Wan,Robust Stability of Discrete-Time Randomly Switched Delayed Genetic Regulatory Networks with Known Sojourn Probabilities.,2016,20,JACIII,7,db/journals/jaciii/jaciii20.html#WanRA16,https://doi.org/10.20965/jaciii.2016.p1094 +Yohei Kamiya,Distributed Mining of Closed Patterns from Multi-Relational Data.,2015,19,JACIII,6,db/journals/jaciii/jaciii19.html#KamiyaS15,https://doi.org/10.20965/jaciii.2015.p0804 +Toshiko Wakaki,Reasoning about Dynamic Preferences in Circumscriptive Theory by Logic Programming.,1997,1,JACIII,2,db/journals/jaciii/jaciii1.html#WakakiSN97,https://doi.org/10.20965/jaciii.1997.p0121 +Sachiyo Arai,Information Theoretic Approach for Measuring Interaction in Multiagent Domain.,2009,13,JACIII,6,db/journals/jaciii/jaciii13.html#AraiI09,https://doi.org/10.20965/jaciii.2009.p0649 +Vicenç Torra,Editorial.,2008,12,JACIII,5,db/journals/jaciii/jaciii12.html#TorraN08,https://doi.org/10.20965/jaciii.2008.p0408 +Youngsun Sohn,Recognition of Traffic Signs and Korean Texts on Traffic Signs Using Japanese Puzzle.,2008,12,JACIII,6,db/journals/jaciii/jaciii12.html#SohnS08,https://doi.org/10.20965/jaciii.2008.p0509 +Muhammad Azam Zia,Prediction of Rising Venues in Citation Networks.,2017,21,JACIII,4,db/journals/jaciii/jaciii21.html#ZiaZLAS17,https://doi.org/10.20965/jaciii.2017.p0650 +Kouki Doi,Experimental Study on Shapes of Tactile Signs for Distinguishable Identification on Body Soap Containers.,2017,21,JACIII,1,db/journals/jaciii/jaciii21.html#DoiNWFH17,https://doi.org/10.20965/jaciii.2017.p0100 +Jie Zeng,Cooperative Salvo Attack Using Guidance Law of Multiple Missiles.,2015,19,JACIII,2,db/journals/jaciii/jaciii19.html#ZengDX15,https://doi.org/10.20965/jaciii.2015.p0301 +Hrvoje Markovic,Concurrent Societies Based on Genetic Algorithm and Particle Swarm Optimization.,2010,14,JACIII,1,db/journals/jaciii/jaciii14.html#MarkovicDH10,https://doi.org/10.20965/jaciii.2010.p0110 +Kwang-Sub Byun,Co-Evolution of Fuzzy Controller for the Mobile Robot Control.,2004,8,JACIII,4,db/journals/jaciii/jaciii8.html#ByunPS04,https://doi.org/10.20965/jaciii.2004.p0356 +Yuki Shinomiya,A Quantitative Quality Measurement for Codebook in Feature Encoding Strategies.,2017,21,JACIII,7,db/journals/jaciii/jaciii21.html#ShinomiyaH17,https://doi.org/10.20965/jaciii.2017.p1232 +Syafiq Fauzi Kamarulzaman,Substitute Target Learning Based Control System for Control Knowledge Acquisition Within Constrained Environment.,2012,16,JACIII,3,db/journals/jaciii/jaciii16.html#KamarulzamanSY12,https://doi.org/10.20965/jaciii.2012.p0397 +Intan Nurma Yulita,Fuzzy Hidden Markov Models for Indonesian Speech Classification.,2012,16,JACIII,3,db/journals/jaciii/jaciii16.html#YulitaTA12,https://doi.org/10.20965/jaciii.2012.p0381 +Shogo Kawaguchi,A Comparison of Ligament Tensions Between Intra- and Extra-Articular Measurement in Anterior Cruciate Ligament Reconstruction.,2015,19,JACIII,6,db/journals/jaciii/jaciii19.html#KawaguchiNNOAHM15,https://doi.org/10.20965/jaciii.2015.p0778 +Bojan Nemec,Experiments with Force Control of Redundant Robots in Unstructured Environment Using Minimal Null-space Formulation.,2001,5,JACIII,5,db/journals/jaciii/jaciii5.html#NemecZ01,https://doi.org/10.20965/jaciii.2001.p0263 +Hajime Yoshino,Editorial: AI and Law (2).,1998,2,JACIII,1,db/journals/jaciii/jaciii2.html#YoshinoN98,https://doi.org/10.20965/jaciii.1998.p0001 +László A. Jeni,Robust Facial Expression Recognition Using Near Infrared Cameras.,2012,16,JACIII,2,db/journals/jaciii/jaciii16.html#JeniHK12,https://doi.org/10.20965/jaciii.2012.p0341 +Kairong Zhang,Using Attenuation Coefficient Generating Function in Parallel Execution of Neural Networks for Solving SAT.,2005,9,JACIII,2,db/journals/jaciii/jaciii9.html#ZhangN05,https://doi.org/10.20965/jaciii.2005.p0121 +Radu-Emil Precup,Development of Fuzzy Controllers with Dynamics Regarding Stability Conditions and Sensitivity Analysis.,2004,8,JACIII,5,db/journals/jaciii/jaciii8.html#PrecupPK04,https://doi.org/10.20965/jaciii.2004.p0499 +Indra Bin Mohd Zin,Adapting Real Mobile Robots to Complex Environments Using a Pattern Association Network Controller (PAN-C).,2009,13,JACIII,3,db/journals/jaciii/jaciii13.html#ZinAM09,https://doi.org/10.20965/jaciii.2009.p0312 +Cecília Reis,Evolutionary Design of Combinational Logic Circuits.,2004,8,JACIII,5,db/journals/jaciii/jaciii8.html#ReisMC04,https://doi.org/10.20965/jaciii.2004.p0507 +Kei Ohnishi,Evolution and Learning Mediated by Differences in Developmental Timing.,2007,11,JACIII,8,db/journals/jaciii/jaciii11.html#OhnishiUO07,https://doi.org/10.20965/jaciii.2007.p0905 +Yuichi Kobayashi,Learning of Obstacle Avoidance with Redundant Manipulator by Hierarchical SOM.,2011,15,JACIII,5,db/journals/jaciii/jaciii15.html#KobayashiN11,https://doi.org/10.20965/jaciii.2011.p0525 +Shinji Kobayashi,Ruby Implementation of the OpenEHR Specifications.,2012,16,JACIII,1,db/journals/jaciii/jaciii16.html#KobayashiT12,https://doi.org/10.20965/jaciii.2012.p0042 +Hidetomo Sakaino,Tool Operation Recognition Based on Robust Optical Flow and HMM from Short-Time Sequential Image Data.,2004,8,JACIII,2,db/journals/jaciii/jaciii8.html#SakainoYS04,https://doi.org/10.20965/jaciii.2004.p0156 +Tadashi Kondo,Revised GMDH-Type Neural Networks Using AIC or PSS Criterion and Their Application to Medical Image Recognition.,2005,9,JACIII,3,db/journals/jaciii/jaciii9.html#KondoUK05,https://doi.org/10.20965/jaciii.2005.p0257 +Eduardo Masato Iyoda,Translated Multiplicative Neuron: An Extended Multiplicative Neuron that can Translate Decision Surfaces.,2004,8,JACIII,5,db/journals/jaciii/jaciii8.html#IyodaNH04,https://doi.org/10.20965/jaciii.2004.p0460 +Indra Adji Sulistijono,Human Head Tracking Based on Particle Swarm Optimization and Genetic Algorithm.,2007,11,JACIII,6,db/journals/jaciii/jaciii11.html#SulistijonoK07,https://doi.org/10.20965/jaciii.2007.p0681 +Takehisa Onisawa,Editorial: Special Issue on Selected Papers in SCIS and ISIS 2004 - Number 1.,2005,9,JACIII,2,db/journals/jaciii/jaciii9.html#Onisawa05,https://doi.org/10.20965/jaciii.2005.p0091 +Shinji Eto,Realizing Functional Localization Using Genetic Network Programming with Importance Index.,2006,10,JACIII,4,db/journals/jaciii/jaciii10.html#EtoHMHH06,https://doi.org/10.20965/jaciii.2006.p0555 +Cedric Cocaud,Development of an Intelligent Simulator with SLAM Functions for Visual Autonomous Landing on Small Celestial Bodies.,2011,15,JACIII,8,db/journals/jaciii/jaciii15.html#CocaudK11,https://doi.org/10.20965/jaciii.2011.p1167 +Fu Jiang,Distributed Power Allocation for Multiuser Two-Way Relay Networks Using Stackelberg Game.,2014,18,JACIII,1,db/journals/jaciii/jaciii18.html#JiangZPHLL14,https://doi.org/10.20965/jaciii.2014.p0048 +Emi Ozawa,Experimental Study on Physical Burden of Transfer Assistance for Excretion - Comparison Between Transfer-Type Wheelchair and Ordinary Wheelchair -.,2017,21,JACIII,2,db/journals/jaciii/jaciii21.html#OzawaCKMKMKI17,https://doi.org/10.20965/jaciii.2017.p0363 +Dongmin Li,Selection of Logistic Web Services Based on Fuzzy Evaluation on Principal Component of Quality of Service.,2014,18,JACIII,5,db/journals/jaciii/jaciii18.html#LiZ14,https://doi.org/10.20965/jaciii.2014.p0798 +James J. Govindhasamy,Reinforcement Learning for Online Industrial Process Control.,2005,9,JACIII,1,db/journals/jaciii/jaciii9.html#GovindhasamyMIFD05,https://doi.org/10.20965/jaciii.2005.p0023 +Zhongjie Long,Underwater 3D Imaging Using a Fiber-Based Endoscopic System for Arthroscopic Surgery.,2016,20,JACIII,3,db/journals/jaciii/jaciii20.html#LongN16,https://doi.org/10.20965/jaciii.2016.p0448 +M. Shamim Khan,A Methodology for Developing Adaptive Fuzzy Cognitive Maps for Decision Support.,2000,4,JACIII,6,db/journals/jaciii/jaciii4.html#KhanCG00,https://doi.org/10.20965/jaciii.2000.p0403 +Nobutada Fujii,Agent-Based Simulation of Product Diffusion with Network Externality in a Heterogeneous Consumer Network.,2011,15,JACIII,2,db/journals/jaciii/jaciii15.html#FujiiKE11,https://doi.org/10.20965/jaciii.2011.p0173 +Fumiaki Osawa,Unfolding of Massive Laundry and Classification Types by Dual Manipulator.,2007,11,JACIII,5,db/journals/jaciii/jaciii11.html#OsawaSK07,https://doi.org/10.20965/jaciii.2007.p0457 +Yibo Li,Reproducing Polynomial Kernel Extreme Learning Machine.,2017,21,JACIII,5,db/journals/jaciii/jaciii21.html#LiLZTD17,https://doi.org/10.20965/jaciii.2017.p0795 +Yuchi Kanzawa,Semi-Supervised Fuzzy c-Means Algorithm by Revising Dissimilarity Between Data.,2011,15,JACIII,1,db/journals/jaciii/jaciii15.html#KanzawaEM11a,https://doi.org/10.20965/jaciii.2011.p0095 +Kosuke Sekiyama,An Adaptive Muscular Force Generation Mechanism Based on Prior Information of Handling Object.,2009,13,JACIII,3,db/journals/jaciii/jaciii13.html#SekiyamaIFSY09,https://doi.org/10.20965/jaciii.2009.p0222 +Noboru Takagi,Characterization of Multiple-Valued Logic for Dealing with Ambiguity.,2013,17,JACIII,3,db/journals/jaciii/jaciii17.html#Takagi13,https://doi.org/10.20965/jaciii.2013.p0377 +Cong Cheng,Adaptive Nonsingular Terminal Sliding Mode Control of 6-DOF Manipulator with Modified Switch Function.,2016,20,JACIII,2,db/journals/jaciii/jaciii20.html#ChengLCL16,https://doi.org/10.20965/jaciii.2016.p0294 +Tsuyoshi Hori,State Feedback Stabilization in Nonlinear Time-Delay Systems.,2002,6,JACIII,3,db/journals/jaciii/jaciii6.html#HoriT02,https://doi.org/10.20965/jaciii.2002.p0109 +Gesang Nugroho,Helicopter Motion Control Using Model-Based Sliding Mode Controller.,2008,12,JACIII,4,db/journals/jaciii/jaciii12.html#NugrohoT08,https://doi.org/10.20965/jaciii.2008.p0342 +Kuo-Sheng Hung,Improving Ant Colony Optimization Algorithms for Solving Traveling Salesman Problems.,2007,11,JACIII,4,db/journals/jaciii/jaciii11.html#HungSL07,https://doi.org/10.20965/jaciii.2007.p0433 +Shinya Maeda,Detection of Lung Nodules in Thoracic MDCT Images Based on Temporal Changes from Previous and Current Images.,2011,15,JACIII,6,db/journals/jaciii/jaciii15.html#MaedaTKMITIY11,https://doi.org/10.20965/jaciii.2011.p0707 +Ya-Fen Ye,L1-Norm Least Squares Support Vector Regression via the Alternating Direction Method of Multipliers.,2017,21,JACIII,6,db/journals/jaciii/jaciii21.html#YeYJL17,https://doi.org/10.20965/jaciii.2017.p1017 +Julirose Gonzales,Mobile Robot Navigation Using Open Computer Vision with Fuzzy Controller.,2008,12,JACIII,4,db/journals/jaciii/jaciii12.html#GonzalesT08,https://doi.org/10.20965/jaciii.2008.p0336 +Koji Abe,A Method for Recognizing and Separating Trademark Image Outer Frames.,2002,6,JACIII,3,db/journals/jaciii/jaciii6.html#AbeKNK02,https://doi.org/10.20965/jaciii.2002.p0116 +Jie Yang,Multiple Description Based on Fractal.,2015,19,JACIII,3,db/journals/jaciii/jaciii19.html#Yang15,https://doi.org/10.20965/jaciii.2015.p0474 +Michal Ptaszynski,A Method for Detecting Harmful Entries on Informal School Websites Using Morphosemantic Patterns.,2017,21,JACIII,7,db/journals/jaciii/jaciii21.html#PtaszynskiMNKRA17,https://doi.org/10.20965/jaciii.2017.p1189 +Xiuwu Zhang,Research on Innovation Knowledge Spillover Effect of China's High-Tech Industry R and D-Base on Multidimensional Spatial Weight Matrices.,2018,22,JACIII,4,db/journals/jaciii/jaciii22.html#ZhangL18,https://doi.org/10.20965/jaciii.2018.p0437 +Noriaki Suetake,New Error Diffusion Using Fuzzy Threshold Control.,2003,7,JACIII,3,db/journals/jaciii/jaciii7.html#SuetakeH03,https://doi.org/10.20965/jaciii.2003.p0377 +Yoichiro Maeda,Fuzzy Adaptive Search Method for Genetic Programming.,1999,3,JACIII,2,db/journals/jaciii/jaciii3.html#Maeda99,https://doi.org/10.20965/jaciii.1999.p0131 +Masaaki Tanaka,Intelligent Work-Study Support Based on Interactive Web Guide.,2007,11,JACIII,1,db/journals/jaciii/jaciii11.html#TanakaMIOS07,https://doi.org/10.20965/jaciii.2007.p0118 +Ajith Abraham,Special Issue on Web Services Practices.,2006,10,JACIII,5,db/journals/jaciii/jaciii10.html#AbrahamCHH06,https://doi.org/10.20965/jaciii.2006.p0703 +Chiung-Hon Leon Lee,Using Planning and Case-Based Reasoning for Service Composition.,2010,14,JACIII,5,db/journals/jaciii/jaciii14.html#LeeLH10,https://doi.org/10.20965/jaciii.2010.p0540 +Xiaoxu Wang,Exponential-Weighting-Based Maximum Likelihood for Determining Measurement Random Latency Probability in Network Systems.,2016,20,JACIII,7,db/journals/jaciii/jaciii20.html#WangP16,https://doi.org/10.20965/jaciii.2016.p1060 +Junki Sakanoue,Preservation and Application of Acquired Knowledge Using Instance-Based Reinforcement Learning for Multi-Robot Systems.,2011,15,JACIII,8,db/journals/jaciii/jaciii15.html#SakanoueYO11,https://doi.org/10.20965/jaciii.2011.p1109 +Yahachiro Tsukamoto,A Normative Approach to Fuzzy Logic Reasoning Using Residual Implications.,2009,13,JACIII,3,db/journals/jaciii/jaciii13.html#Tsukamoto09,https://doi.org/10.20965/jaciii.2009.p0262 +Orsolya Takács,Information Processing Based on Mixed - Classical and Fuzzy - Data Models.,2001,5,JACIII,1,db/journals/jaciii/jaciii5.html#TakacsV01,https://doi.org/10.20965/jaciii.2001.p0044 +Jenny Brusk,Developing Natural Language Enabled Games in SCXML.,2008,12,JACIII,2,db/journals/jaciii/jaciii12.html#BruskL08,https://doi.org/10.20965/jaciii.2008.p0156 +Howard Li,Multi-Agent Based Control of a Heterogeneous System.,2006,10,JACIII,2,db/journals/jaciii/jaciii10.html#LiKBS06,https://doi.org/10.20965/jaciii.2006.p0161 +Jun Lu,A Powerful Neural Network Method with Digital-contract Hints for Pricing Complex Options.,2003,7,JACIII,2,db/journals/jaciii/jaciii7.html#LuO03,https://doi.org/10.20965/jaciii.2003.p0139 +Yasuhisa Hasegawa,Editorial.,2007,11,JACIII,8,db/journals/jaciii/jaciii11.html#Hasegawa07,https://doi.org/10.20965/jaciii.2007.p0883 +Qiangwei Wang,Human Resource Selection Based on Performance Classification Using Weighted Support Vector Machine.,2009,13,JACIII,4,db/journals/jaciii/jaciii13.html#WangLH09,https://doi.org/10.20965/jaciii.2009.p0407 +Rong Zhou,An MPC Control System for Onboard Ultracapacitors with Maximum Current Constraint.,2017,21,JACIII,2,db/journals/jaciii/jaciii21.html#ZhouHLPS17,https://doi.org/10.20965/jaciii.2017.p0266 +Danyun Li,Hybrid Modulation Strategy for Two-Stage Matrix Converter and its Application in Vector Control of Doubly Fed Induction Generator.,2016,20,JACIII,1,db/journals/jaciii/jaciii20.html#LiSLL16,https://doi.org/10.20965/jaciii.2016.p0171 +Kento Terashima,Acceleration of Reinforcement Learning with Incomplete Prior Information.,2013,17,JACIII,5,db/journals/jaciii/jaciii17.html#TerashimaTM13,https://doi.org/10.20965/jaciii.2013.p0721 +Katsushige Fujimoto,Cardinal-Probabilistic Interaction Indices and their Applications: A Survey.,2003,7,JACIII,2,db/journals/jaciii/jaciii7.html#Fujimoto03,https://doi.org/10.20965/jaciii.2003.p0079 +Masahiro Tanaka,Visualization of Categorical Data by Hybridization of Two Types of Neural Networks.,2000,4,JACIII,1,db/journals/jaciii/jaciii4.html#TanakaF00,https://doi.org/10.20965/jaciii.2000.p0003 +Toshihiko Watanabe,Robust Estimation of Camera Homography by Fuzzy RANSAC Algorithm with Reinforcement Learning.,2015,19,JACIII,6,db/journals/jaciii/jaciii19.html#WatanabeKI15,https://doi.org/10.20965/jaciii.2015.p0833 +Zhong-Hua Pang,Step Output Tracking Controller Design for Networked Control Systems.,2013,17,JACIII,6,db/journals/jaciii/jaciii17.html#PangLZ13,https://doi.org/10.20965/jaciii.2013.p0813 +Xin Yin,Modeling of Wood Aging Caused by Biological Deterioration.,2008,12,JACIII,2,db/journals/jaciii/jaciii12.html#YinFCT08,https://doi.org/10.20965/jaciii.2008.p0125 +Makoto Watanabe,Chain Restaurant Work Scheduling Based on Genetic Algorithm with Fuzzy Logic.,2006,10,JACIII,1,db/journals/jaciii/jaciii10.html#WatanabeNKDH06,https://doi.org/10.20965/jaciii.2006.p0050 +Kwang-Baek Kim,Recognition of Car License Plates Using Morphological Information and SOM Algorithm.,2004,8,JACIII,4,db/journals/jaciii/jaciii8.html#KimK04,https://doi.org/10.20965/jaciii.2004.p0385 +Tiago C. da Fonseca,Definition of an Offshore Petroleum Production System by Using Fuzzy Sets and Utility Functions.,2005,9,JACIII,6,db/journals/jaciii/jaciii9.html#FonsecaMMG05,https://doi.org/10.20965/jaciii.2005.p0684 +Ulrich H. Langanke,Humanoid Knowledge-Based Decision Support Systems (KBDSS) ? Subjective or Objective Data Query.,2009,13,JACIII,1,db/journals/jaciii/jaciii13.html#Langanke09,https://doi.org/10.20965/jaciii.2009.p0010 +I. Burhan Türksen,Theories of Set and Logic with Crisp or Fuzzy Information Granules.,1999,3,JACIII,4,db/journals/jaciii/jaciii3.html#Turksen99,https://doi.org/10.20965/jaciii.1999.p0264 +Masumi Ishikawa,Rule Extraction by Structural Learning with an Immediate Critic.,1999,3,JACIII,5,db/journals/jaciii/jaciii3.html#Ishikawa99,https://doi.org/10.20965/jaciii.1999.p0341 +Wen-Yen Wang,Mining Time-Interval Sequential Patterns with High Utility from Transaction Databases.,2016,20,JACIII,6,db/journals/jaciii/jaciii20.html#WangH16,https://doi.org/10.20965/jaciii.2016.p1018 +Tomohiro Yamaguchi,Obstacle Avoidance for Quadruped Robots Using a Neural Network.,2003,7,JACIII,2,db/journals/jaciii/jaciii7.html#YamaguchiWIK03,https://doi.org/10.20965/jaciii.2003.p0115 +Gerardo L. Augusto,Pipe Sizing of District Cooling Distribution Network Using Implicit Colebrook-White Equation.,2016,20,JACIII,1,db/journals/jaciii/jaciii20.html#AugustoCT16,https://doi.org/10.20965/jaciii.2016.p0076 +Chrissanthi Angeli,On-Line Fault Detection and Compensation of Hydraulic Driven Machines Using Modelling Techniques.,2008,12,JACIII,2,db/journals/jaciii/jaciii12.html#AngeliC08,https://doi.org/10.20965/jaciii.2008.p0111 +Takumi Wakahara,Adaptive Nutrient Water Supply Control of Plant Factory System by Reinforcement Learning.,2011,15,JACIII,7,db/journals/jaciii/jaciii15.html#WakaharaM11,https://doi.org/10.20965/jaciii.2011.p0831 +Kazuyoshi Wada,Social Effects of Robot Therapy in a Care House -Change of Social Network of the Residents for One Year-.,2009,13,JACIII,4,db/journals/jaciii/jaciii13.html#WadaS09,https://doi.org/10.20965/jaciii.2009.p0386 +Chastine Fatichah,Parameter Optimization of Local Fuzzy Patterns Based on Fuzzy Contrast Measure for White Blood Cell Texture Feature Extraction.,2012,16,JACIII,3,db/journals/jaciii/jaciii16.html#FatichahTWDH12a,https://doi.org/10.20965/jaciii.2012.p0412 +Pongtawat Chippimolchai,Semantic Query Optimization: Correctness and Control.,2006,10,JACIII,3,db/journals/jaciii/jaciii10.html#ChippimolchaiAW06,https://doi.org/10.20965/jaciii.2006.p0270 +Hang Tian,Entropy Analysis on Intuitionistic Fuzzy Sets and Interval-Valued Intuitionistic Fuzzy Sets and its Applications in Mode Assessment on Open Communities.,2018,22,JACIII,1,db/journals/jaciii/jaciii22.html#TianLZXCDX18,https://doi.org/10.20965/jaciii.2018.p0147 +Kang Han,Image Crowd Counting Using Convolutional Neural Network and Markov Random Field.,2017,21,JACIII,4,db/journals/jaciii/jaciii21.html#HanWYH17,https://doi.org/10.20965/jaciii.2017.p0632 +Grigorios N. Beligiannis,Evolutionary Nonlinear Multimodel Partitioning Filters.,2001,5,JACIII,1,db/journals/jaciii/jaciii5.html#BeligiannisDL01,https://doi.org/10.20965/jaciii.2001.p0008 +Katsuhide Fujita,Common Testbed Generating Tool Based on XML for Multiple Interdependent Issues Negotiation Problems.,2011,15,JACIII,1,db/journals/jaciii/jaciii15.html#FujitaIK11,https://doi.org/10.20965/jaciii.2011.p0034 +Ranadhir Ghosh,A Fully Automated Breast Cancer Recognition System Using Discrete-Gradient Based Clustering and Multi Category Feature Selection.,2005,9,JACIII,3,db/journals/jaciii/jaciii9.html#GhoshGY05,https://doi.org/10.20965/jaciii.2005.p0244 +Kazushi Okamoto,Content-Based Image Retrieval via Combination of Similarity Measures.,2011,15,JACIII,6,db/journals/jaciii/jaciii15.html#OkamotoDYH11,https://doi.org/10.20965/jaciii.2011.p0687 +Yanni Wang,An Interpretability-Accuracy Tradeoff in Learning Parameters of Intuitionistic Fuzzy Rule-Based Systems.,2016,20,JACIII,5,db/journals/jaciii/jaciii20.html#WangDCP16,https://doi.org/10.20965/jaciii.2016.p0773 +Takuya Sugimoto,A Recommendation System with the Use of Comprehensive Trend Indication Based on Weighted Complete Graph.,2012,16,JACIII,2,db/journals/jaciii/jaciii16.html#SugimotoTN12,https://doi.org/10.20965/jaciii.2012.p0266 +Wangbin Chu,Identity Verification Based on Facial Pose Pool and Bag of Words Model.,2017,21,JACIII,3,db/journals/jaciii/jaciii21.html#ChuG17,https://doi.org/10.20965/jaciii.2017.p0448 +Nigel Ward,Towards a Model of Computer Science Graduate Admissions Decisions.,2006,10,JACIII,3,db/journals/jaciii/jaciii10.html#Ward06,https://doi.org/10.20965/jaciii.2006.p0372 +Jagdish Chandra,A Framework for Robust and Resilient Critical Infrastructure Systems.,2006,10,JACIII,3,db/journals/jaciii/jaciii10.html#Chandra06,https://doi.org/10.20965/jaciii.2006.p0265 +Tomohisa Fujiki,Adaptive Action Selection of Body Expansion Behavior in Multi-Robot System Using Communication.,2007,11,JACIII,2,db/journals/jaciii/jaciii11.html#FujikiKA07,https://doi.org/10.20965/jaciii.2007.p0142 +Konstantinos N. Genikomsakis,Enhancing the Largest Set Rule for Assembly Line Balancing Through the Concept of Bi-Directional Work Relatedness.,2010,14,JACIII,4,db/journals/jaciii/jaciii14.html#GenikomsakisT10,https://doi.org/10.20965/jaciii.2010.p0353 +Shlomo Berkovsky,An Analysis of Group Recommendation Strategies.,2010,14,JACIII,6,db/journals/jaciii/jaciii14.html#BerkovskyF10,https://doi.org/10.20965/jaciii.2010.p0729 +Jie Yang,Stabilization of an Underactuated Ball-and-Beam System Using a Second-Order Sliding Mode Control.,2014,18,JACIII,2,db/journals/jaciii/jaciii18.html#YangWLS14,https://doi.org/10.20965/jaciii.2014.p0121 +Kun Zhang,Group Behavior Learning in Multi-Agent Systems Based on Social Interaction Among Agents.,2011,15,JACIII,7,db/journals/jaciii/jaciii15.html#ZhangMT11,https://doi.org/10.20965/jaciii.2011.p0896 +Hafida Benhidour,Interactive Learning of Verbal Descriptors Meanings for Face Drawing System.,2010,14,JACIII,6,db/journals/jaciii/jaciii14.html#BenhidourO10,https://doi.org/10.20965/jaciii.2010.p0606 +Eiji Nunohiro,Forest and Field Fire Search System Using MODIS Data.,2007,11,JACIII,8,db/journals/jaciii/jaciii11.html#NunohiroKMP07,https://doi.org/10.20965/jaciii.2007.p1043 +Nozomu Kaneko,Application of Paraphrasing to Programming with Linguistic Expressions.,2006,10,JACIII,6,db/journals/jaciii/jaciii10.html#KanekoO06,https://doi.org/10.20965/jaciii.2006.p0830 +Julirose Gonzales,Integrated Eco-Design Tool for Malaysian Automobile Industry.,2010,14,JACIII,1,db/journals/jaciii/jaciii14.html#GonzalesSAT10,https://doi.org/10.20965/jaciii.2010.p0046 +Kanji Tanaka,Unsupervised Part-Based Scene Modeling for Map Matching.,2015,19,JACIII,4,db/journals/jaciii/jaciii19.html#TanakaH15,https://doi.org/10.20965/jaciii.2015.p0523 +Peter Géczy,Fuzzy Rule Acquisition from Trained Artificial Neural Networks.,1999,3,JACIII,5,db/journals/jaciii/jaciii3.html#GeczyU99,https://doi.org/10.20965/jaciii.1999.p0357 +Syoji Kobashi,Eye Position Estimation During Sleep Using Infrared Video in Functional MRI.,2008,12,JACIII,1,db/journals/jaciii/jaciii12.html#KobashiYKMKKMH08,https://doi.org/10.20965/jaciii.2008.p0032 +Annamária R. Várkonyi-Kóczy,State Dependant Anytime Control Methodology for Non-Linear Systems.,2008,12,JACIII,2,db/journals/jaciii/jaciii12.html#Varkonyi-Koczy08,https://doi.org/10.20965/jaciii.2008.p0198 +Annamária R. Várkonyi-Kóczy,Anytime Evaluation of Regression-Type Algorithms.,2001,5,JACIII,1,db/journals/jaciii/jaciii5.html#Varkonyi-KoczyKTB01,https://doi.org/10.20965/jaciii.2001.p0002 +Elmer A. Maravillas,Hybrid Fuzzy Logic Strategy for Soccer Robot Game.,2004,8,JACIII,1,db/journals/jaciii/jaciii8.html#MaravillasRD04,https://doi.org/10.20965/jaciii.2004.p0065 +Péter Baranyi,Improved Fuzzy and Neural Network Algorithms for Word Frequency Prediction in Document Filtering.,1998,2,JACIII,3,db/journals/jaciii/jaciii2.html#BaranyiKG98,https://doi.org/10.20965/jaciii.1998.p0088 +Yasunori Endo,Fuzzy c-Means for Data with Rectangular Maximum Tolerance Range.,2008,12,JACIII,5,db/journals/jaciii/jaciii12.html#EndoHHM08,https://doi.org/10.20965/jaciii.2008.p0461 +Gideon Avigad,Concept-Based Interactive Brainstorming in Engineering Design.,2004,8,JACIII,5,db/journals/jaciii/jaciii8.html#AvigadMB04,https://doi.org/10.20965/jaciii.2004.p0454 +Norikazu Ikoma,Tracking of Multiple Moving Objects in Dynamic Image of Omni-Directional Camera Using PHD Filter.,2008,12,JACIII,1,db/journals/jaciii/jaciii12.html#IkomaYKM08,https://doi.org/10.20965/jaciii.2008.p0016 +Md. Monirul Kabir,Ant Colony Optimization for Feature Selection Involving Effective Local Search.,2011,15,JACIII,6,db/journals/jaciii/jaciii15.html#KabirSM11,https://doi.org/10.20965/jaciii.2011.p0671 +Tiantian Liu,A Stock Trading Strategy Based on Time-Varying Quantile Theory.,2015,19,JACIII,3,db/journals/jaciii/jaciii19.html#LiuQG15,https://doi.org/10.20965/jaciii.2015.p0417 +Noriaki Fujishima,Fingernail Detection System Using Differences of the Distribution of the Nail-Color Pixels.,2013,17,JACIII,5,db/journals/jaciii/jaciii17.html#FujishimaH13,https://doi.org/10.20965/jaciii.2013.p0739 +Yuzhen Li,GML Topology Data Storage Schema Design.,2007,11,JACIII,6,db/journals/jaciii/jaciii11.html#LiLGFHY07,https://doi.org/10.20965/jaciii.2007.p0701 +Noriko Ito,Computational Models of Language Within Context and Context-Sensitive Language Understanding.,2006,10,JACIII,6,db/journals/jaciii/jaciii10.html#ItoSTIS06,https://doi.org/10.20965/jaciii.2006.p0782 +Peter Xiaoping Liu,Intelligent Scaling Control for Internet-Based Teleoperation.,2004,8,JACIII,3,db/journals/jaciii/jaciii8.html#LiuMG04,https://doi.org/10.20965/jaciii.2004.p0275 +Jie Zhou,Chinese Person Name Disambiguation Based on Two-Stage Clustering.,2016,20,JACIII,5,db/journals/jaciii/jaciii20.html#ZhouLT16,https://doi.org/10.20965/jaciii.2016.p0755 +Yoshiyuki Yamashita,Semi-Qualitative Trend Analysis for the Monitoring of Process Control Loops.,2012,16,JACIII,4,db/journals/jaciii/jaciii16.html#Yamashita12,https://doi.org/10.20965/jaciii.2012.p0503 +Daisuke Kitakoshi,Analysis of a Method Improving Reinforcement Learning Agents' Policies.,2003,7,JACIII,3,db/journals/jaciii/jaciii7.html#KitakoshiSK03,https://doi.org/10.20965/jaciii.2003.p0276 +Phuc Quang Le,Efficient Color Transformations on Quantum Images.,2011,15,JACIII,6,db/journals/jaciii/jaciii15.html#LeIDH11,https://doi.org/10.20965/jaciii.2011.p0698 +Hidemi Yamachi,Influence of Field Structure on the Multi-Agent Coverage Algorithm on Unknown Fields.,2013,17,JACIII,6,db/journals/jaciii/jaciii17.html#YamachiTK13,https://doi.org/10.20965/jaciii.2013.p0883 +Jiang Xie,A New Hybrid Method for Parameter Optimization of SVR.,2018,22,JACIII,2,db/journals/jaciii/jaciii22.html#XieSZZ18,https://doi.org/10.20965/jaciii.2018.p0271 +Seiichiro Sakurai,CPF as a Tool for Constructing a Legal Knowledge Base.,1998,2,JACIII,1,db/journals/jaciii/jaciii2.html#Sakurai98,https://doi.org/10.20965/jaciii.1998.p0012 +John Yen,Fuzzy Modeling with Local and Global Objectives.,1999,3,JACIII,5,db/journals/jaciii/jaciii3.html#YenG99,https://doi.org/10.20965/jaciii.1999.p0373 +Takashi Oyabu,Narrowing Algorithm for Indoor-Air Pollutants using Gas Sensor Patterns.,1999,3,JACIII,6,db/journals/jaciii/jaciii3.html#OyabuONK99,https://doi.org/10.20965/jaciii.1999.p0519 +Tomoko Ohya,Analyzing Usage of Indoor Space from Ecological Aspects Based on Constraint-Oriented Fuzzy Sets.,2007,11,JACIII,7,db/journals/jaciii/jaciii11.html#OhyaSSKK07,https://doi.org/10.20965/jaciii.2007.p0867 +Elizabeth Pérez Cortés,On the Impact of Path Redundancy Awareness in Evolutionary P2P Networking.,2013,17,JACIII,6,db/journals/jaciii/jaciii17.html#CortesS13,https://doi.org/10.20965/jaciii.2013.p0872 +Osamu Hasegawa,Editorial: Special Issue on Pattern Recognition.,2004,8,JACIII,2,db/journals/jaciii/jaciii8.html#Hasegawa04,https://doi.org/10.20965/jaciii.2004.p0083 +Junji Maeda,Anisotropic Dynamic-Morphological-Diffusion for Segmentation of Noisy Color Images.,2014,18,JACIII,2,db/journals/jaciii/jaciii18.html#MaedaHSS14,https://doi.org/10.20965/jaciii.2014.p0204 +Shun Hattori,Towards Building Secure Smart Spaces for Information Security in the Physical World.,2007,11,JACIII,8,db/journals/jaciii/jaciii11.html#HattoriT07,https://doi.org/10.20965/jaciii.2007.p1023 +Josep Domingo-Ferrer,Fuzzy Microaggregation for Microdata Protection.,2003,7,JACIII,2,db/journals/jaciii/jaciii7.html#Domingo-FerrerR03,https://doi.org/10.20965/jaciii.2003.p0153 +Ichiro Kobayashi,Everyday-Language Computing Project Overview.,2006,10,JACIII,6,db/journals/jaciii/jaciii10.html#KobayashiSSIIIT06,https://doi.org/10.20965/jaciii.2006.p0773 +Zih-Syuan Wang,Predicting POI Visits in a Heterogeneous Location-Based Social Network.,2016,20,JACIII,6,db/journals/jaciii/jaciii20.html#WangJT16,https://doi.org/10.20965/jaciii.2016.p0882 +Wanhui Wen,A System for the Comprehensive Quantification of Real-Time Heartbeat Activity.,2016,20,JACIII,5,db/journals/jaciii/jaciii20.html#WenZHL16,https://doi.org/10.20965/jaciii.2016.p0765 +Jing Hu,Fuzzy Cognition on Factors Influencing the Co-Branding in Technical Standards Alliance - From Member Selection Perspective.,2017,21,JACIII,6,db/journals/jaciii/jaciii21.html#HuSY17,https://doi.org/10.20965/jaciii.2017.p1065 +Marek Paralic,System Architecture for Support of Knowledge Management.,2000,4,JACIII,4,db/journals/jaciii/jaciii4.html#ParalicSM00,https://doi.org/10.20965/jaciii.2000.p0251 +Zakarya Zyada,Implementing Fuzzy Learning Algorithms in a 6 DOF Hydraulic Parallel Link Manipulator: Control with Actuators' Forces Fuzzy Compensation.,2002,6,JACIII,3,db/journals/jaciii/jaciii6.html#ZyadaHF02,https://doi.org/10.20965/jaciii.2002.p0100 +Xiaowen Hu,Modeling the Effect of Exchange Rate Liberalization on China's Macro Economy.,2017,21,JACIII,5,db/journals/jaciii/jaciii21.html#HuZHA17,https://doi.org/10.20965/jaciii.2017.p0769 +Khaled A. Abuhasel,A Hybrid Particle Swarm Optimization and Neural Network with Fuzzy Membership Function Technique for Epileptic Seizure Classification.,2015,19,JACIII,3,db/journals/jaciii/jaciii19.html#AbuhaselIF15,https://doi.org/10.20965/jaciii.2015.p0447 +Handri Santoso,Discrimination of Sidewalk Surface Condition Based on Image Textures and Meteorological Information.,2007,11,JACIII,5,db/journals/jaciii/jaciii11.html#SantosoN07,https://doi.org/10.20965/jaciii.2007.p0491 +Kazuhiro Hotta,A View-Invariant Face Detection Method Based on Local PCA Cells.,2004,8,JACIII,2,db/journals/jaciii/jaciii8.html#Hotta04,https://doi.org/10.20965/jaciii.2004.p0130 +Kazuma Matsumoto,XCSR Learning from Compressed Data Acquired by Deep Neural Network.,2017,21,JACIII,5,db/journals/jaciii/jaciii21.html#MatsumotoTSKT17,https://doi.org/10.20965/jaciii.2017.p0856 +Dávid Vincze,"Performance Optimization of the Fuzzy Rule Interpolation Method ""FIVE"".",2011,15,JACIII,3,db/journals/jaciii/jaciii15.html#VinczeK11,https://doi.org/10.20965/jaciii.2011.p0313 +Ing-Yi Chen,A BPEL-Based Fault-Handling Architecture for Telecom Operation Support Systems.,2010,14,JACIII,5,db/journals/jaciii/jaciii14.html#ChenNKL10,https://doi.org/10.20965/jaciii.2010.p0523 +Houria Boudouda,Fuzzy-Possibilistic Classification: Resolution of Initialization Problem.,2009,13,JACIII,1,db/journals/jaciii/jaciii13.html#BoudoudaNSA09,https://doi.org/10.20965/jaciii.2009.p0045 +Agus Naba,FCAPS: Fuzzy Controller with Approximated Policy Search Approach.,2006,10,JACIII,1,db/journals/jaciii/jaciii10.html#NabaM06,https://doi.org/10.20965/jaciii.2006.p0084 +Elmer P. Dadios,Neural Network Vision-Guided Mobile Robot for Retrieving Driving-Range Golf Balls.,2006,10,JACIII,2,db/journals/jaciii/jaciii10.html#DadiosHCGRJT06,https://doi.org/10.20965/jaciii.2006.p0181 +Yihe Liu,Cross-Media Retrieval Based on Query Modality and Semi-Supervised Regularization.,2017,21,JACIII,7,db/journals/jaciii/jaciii21.html#LiuZLMWD17,https://doi.org/10.20965/jaciii.2017.p1211 +Shreejana Prajapati,An Approach to Obtain Proper Time for Interruption with Self Initiated Intermission.,2015,19,JACIII,1,db/journals/jaciii/jaciii19.html#PrajapatiYU15,https://doi.org/10.20965/jaciii.2015.p0109 +Sandisiwe N. Ncemane,Mapping Wireless Access Network Traffic to Multiservice Provisioning Platform.,2006,10,JACIII,2,db/journals/jaciii/jaciii10.html#NcemaneCK06, +Masaaki Kanakubo,Strategy Acquisition for Games Based on Simplified Reinforcement Learning Using a Strategy Network.,2005,9,JACIII,2,db/journals/jaciii/jaciii9.html#KanakuboH05,https://doi.org/10.20965/jaciii.2005.p0203 +Tomonori Kawano,Primitive Optical Computing Model with Films: Boolean Conjunction of the Square Matrix-Arrayed Color Codes.,2013,17,JACIII,6,db/journals/jaciii/jaciii17.html#Kawano13,https://doi.org/10.20965/jaciii.2013.p0791 +Ján Vascák,Similarity Relations in Diagnosis Fuzzy Systems.,2000,4,JACIII,4,db/journals/jaciii/jaciii4.html#VascakM00,https://doi.org/10.20965/jaciii.2000.p0246 +Ping-Feng Pai,Forecasting Electric Load by Support Vector Machines with Genetic Algorithms.,2005,9,JACIII,2,db/journals/jaciii/jaciii9.html#PaiHL05,https://doi.org/10.20965/jaciii.2005.p0134 +Yongyue Zhang,Subspace Modeling Method for Burn-Through Point.,2016,20,JACIII,2,db/journals/jaciii/jaciii20.html#ZhangC016,https://doi.org/10.20965/jaciii.2016.p0279 +Daisuke Katagami,Robot Group Adaptation Gestures Based on Utterance Content and Social Position.,2010,14,JACIII,7,db/journals/jaciii/jaciii14.html#KatagamiON10,https://doi.org/10.20965/jaciii.2010.p0813 +Bolin Liao,Novel Complex-Valued Neural Network for Dynamic Complex-Valued Matrix Inversion.,2016,20,JACIII,1,db/journals/jaciii/jaciii20.html#LiaoXJDL16,https://doi.org/10.20965/jaciii.2016.p0132 +Puchit Sariddichainunta,The Improvement of Optimality Test over Possible Reaction Set in Bilevel Linear Optimization with Ambiguous Objective Function of the Follower.,2015,19,JACIII,5,db/journals/jaciii/jaciii19.html#Sariddichainunta15,https://doi.org/10.20965/jaciii.2015.p0645 +M. Skander Hannachi,Emulating Qubits with Fuzzy Logic.,2007,11,JACIII,2,db/journals/jaciii/jaciii11.html#HannachiHH07,https://doi.org/10.20965/jaciii.2007.p0242 +Xianneng Li,Genetic Network Programming with Estimation of Distribution Algorithms for Class Association Rule Mining in Traffic Prediction.,2010,14,JACIII,5,db/journals/jaciii/jaciii14.html#LiMZSH10,https://doi.org/10.20965/jaciii.2010.p0497 +Suvashis Das,Evaluating Instantaneous Psychological Stress from Emotional Composition of a Facial Expression.,2013,17,JACIII,4,db/journals/jaciii/jaciii17.html#DasY13,https://doi.org/10.20965/jaciii.2013.p0480 +Tadashi Ohashi,A Semantic Concept Operation Based on Fuzzy Document Ordering System and its Application to Reuter Database.,2007,11,JACIII,2,db/journals/jaciii/jaciii11.html#OhashiNH07,https://doi.org/10.20965/jaciii.2007.p0149 +Jose Martin Maningo,Smoothed Particle Hydrodynamics Approach to Aggregation of Quadrotor Unmanned Aerial Vehicle Swarm.,2017,21,JACIII,2,db/journals/jaciii/jaciii21.html#ManingoVLSDB17,https://doi.org/10.20965/jaciii.2017.p0181 +Eric Kirkland,An Optical Coordinate Measuring Machine for Nanoscale Dimensional Metrology.,2004,8,JACIII,1,db/journals/jaciii/jaciii8.html#KirklandKL04,https://doi.org/10.20965/jaciii.2004.p0039 +Mihoko Niitsuma,Design of Mutual Interaction Between a User and Smart Electric Wheelchair.,2012,16,JACIII,2,db/journals/jaciii/jaciii16.html#NiitsumaOYI12,https://doi.org/10.20965/jaciii.2012.p0305 +Dong Sun,Position Control of Direct-Drive Robot Manipulators with PMAC Motors Using Enhanced Fuzzy PD Control.,2004,8,JACIII,3,db/journals/jaciii/jaciii8.html#SunSM04,https://doi.org/10.20965/jaciii.2004.p0324 +Tuan D. Pham,Speaker Verification with Fuzzy Fusion and Genetic Optimization.,1999,3,JACIII,6,db/journals/jaciii/jaciii3.html#PhamW99,https://doi.org/10.20965/jaciii.1999.p0451 +Kosuke Kato,Operation Planning of District Heating and Cooling Plants Considering Contract Violation Penalties.,2009,13,JACIII,3,db/journals/jaciii/jaciii13.html#KatoSIU09,https://doi.org/10.20965/jaciii.2009.p0185 +Radim Belohlávek,Fuzzy Concept Lattices Constrained by Hedges.,2007,11,JACIII,6,db/journals/jaciii/jaciii11.html#BelohlavekV07,https://doi.org/10.20965/jaciii.2007.p0536 +Guang Lei Liu,The Design of Central Pattern Generators Based on the Matsuoka Oscillator to Generate Rhythmic Human-Like Movement for Biped Robots.,2007,11,JACIII,8,db/journals/jaciii/jaciii11.html#LiuHWI07,https://doi.org/10.20965/jaciii.2007.p0946 +Yukihiro Hamasuna,On Sequential Cluster Extraction Based on L1-Regularized Possibilistic c-Means.,2015,19,JACIII,5,db/journals/jaciii/jaciii19.html#HamasunaE15a,https://doi.org/10.20965/jaciii.2015.p0655 +Yasufumi Takama,Analyzing Potential of Personal Values-Based User Modeling for Long Tail Item Recommendation.,2018,22,JACIII,4,db/journals/jaciii/jaciii22.html#TakamaCMI18,https://doi.org/10.20965/jaciii.2018.p0506 +Tomohiro Takagi,Conceptual Fuzzy Matching and the Realization of Search Agents.,1999,3,JACIII,4,db/journals/jaciii/jaciii3.html#TakagiKMY99,https://doi.org/10.20965/jaciii.1999.p0255 +Tianyu Li,Distance Measure for Symbolic Approximation Representation with Subsequence Direction for Time Series Data Mining.,2013,17,JACIII,2,db/journals/jaciii/jaciii17.html#LiDH13,https://doi.org/10.20965/jaciii.2013.p0263 +Ichiro Kobayashi,Intelligent Help System that Synchronizes Application Software Operation: Toward Intelligent Tailor-Made Information Provision.,2007,11,JACIII,10,db/journals/jaciii/jaciii11.html#KobayashiT07,https://doi.org/10.20965/jaciii.2007.p1216 +Kien-Ping Chung,A Feature Vector Approach for Inter-Query Learning for Content-Based Image Retrieval.,2007,11,JACIII,3,db/journals/jaciii/jaciii11.html#ChungF07,https://doi.org/10.20965/jaciii.2007.p0289 +Shen Furao,Fractal Image Coding with Simulated Annealing Search.,2005,9,JACIII,1,db/journals/jaciii/jaciii9.html#FuraoH05,https://doi.org/10.20965/jaciii.2005.p0080 +Daisuke Kitakoshi,Cognitive Training System for Dementia Prevention Using Memory Game Based on the Concept of Human-Agent Interaction.,2015,19,JACIII,6,db/journals/jaciii/jaciii19.html#KitakoshiHIS15,https://doi.org/10.20965/jaciii.2015.p0727 +Tetsuyuki Takahama,Constrained Optimization by the alpha Constrained Particle Swarm Optimizer.,2005,9,JACIII,3,db/journals/jaciii/jaciii9.html#TakahamaS05,https://doi.org/10.20965/jaciii.2005.p0282 +Endre Pap,Two-Dimensional Copulas as Important Binary Aggregation Operators.,2006,10,JACIII,4,db/journals/jaciii/jaciii10.html#PapT06,https://doi.org/10.20965/jaciii.2006.p0522 +Tomomi Hashimoto,Proposal of Episodic Memory Retrieval Method on Mood Congruence Effects.,2017,21,JACIII,4,db/journals/jaciii/jaciii21.html#HashimotoMYK17,https://doi.org/10.20965/jaciii.2017.p0722 +Kazuki Kobayashi,Rebo: A Pet-Like Strokable Remote Control.,2012,16,JACIII,7,db/journals/jaciii/jaciii16.html#KobayashiYNS12,https://doi.org/10.20965/jaciii.2012.p0771 +Wei Wei,Comparative Association Rules Mining Using Genetic Network Programming (GNP) with Attributes Accumulation Mechanism and its Application to Traffic Systems.,2008,12,JACIII,4,db/journals/jaciii/jaciii12.html#WeiZSMH08,https://doi.org/10.20965/jaciii.2008.p0393 +Chia-Huang Chen,Identification of Season-Dependent Sightseeing Spots Based on Metadata-Derived Features and Image Processing.,2014,18,JACIII,3,db/journals/jaciii/jaciii18.html#ChenT14,https://doi.org/10.20965/jaciii.2014.p0353 +Pasi Luukka,Stability Issues with Classifier Using Lukasiewicz Similarity and Modified Schweizer and Sklar Equations.,2005,9,JACIII,5,db/journals/jaciii/jaciii9.html#LuukkaS05,https://doi.org/10.20965/jaciii.2005.p0514 +Shigeyasu Kawaji,Evolving Neurofuzzy System by Hybrid Soft Computing Approaches for System Identification.,2001,5,JACIII,4,db/journals/jaciii/jaciii5.html#KawajiC01,https://doi.org/10.20965/jaciii.2001.p0220 +Caili Zhang,Approach to Clustering with Variance-Based XCS.,2017,21,JACIII,5,db/journals/jaciii/jaciii21.html#ZhangTNT17,https://doi.org/10.20965/jaciii.2017.p0885 +Zhong-da Tian,Network Teleoperation Robot System Control Based on Fuzzy Sliding Mode.,2016,20,JACIII,5,db/journals/jaciii/jaciii20.html#TianGG16,https://doi.org/10.20965/jaciii.2016.p0828 +Kiyoshi Izumi,Social and Group Simulation Based on Real Data Analysis.,2011,15,JACIII,2,db/journals/jaciii/jaciii15.html#IzumiTHNN11,https://doi.org/10.20965/jaciii.2011.p0166 +Shun'ichi Tano,Deep Fusion of Computational and Symbolic Intelligent Processing by Symbol Emergence.,2000,4,JACIII,6,db/journals/jaciii/jaciii4.html#Tano00,https://doi.org/10.20965/jaciii.2000.p0443 +Tomoko Ohi,Simulation of Futures and Spot Markets by Using an Agent-Based Multi-Market Model.,2011,15,JACIII,2,db/journals/jaciii/jaciii15.html#OhiHCO11,https://doi.org/10.20965/jaciii.2011.p0204 +Zakiya Alfughi,Multi-Objective Solar Farm Design Based on Parabolic Collectors.,2018,22,JACIII,2,db/journals/jaciii/jaciii22.html#AlfughiRY18,https://doi.org/10.20965/jaciii.2018.p0256 +Julio Fernández Vilas,Optimizing Web Services Performance Using Cache.,2006,10,JACIII,5,db/journals/jaciii/jaciii10.html#VilasAV06,https://doi.org/10.20965/jaciii.2006.p0713 +Hiromitsu Hattori,Massive Multiagent-Based Urban Traffic Simulation with Fine-Grained Behavior Models.,2011,15,JACIII,2,db/journals/jaciii/jaciii15.html#HattoriNY11,https://doi.org/10.20965/jaciii.2011.p0233 +Jianqiang Yi,Editorial.,2009,13,JACIII,2,db/journals/jaciii/jaciii13.html#YiD09,https://doi.org/10.20965/jaciii.2009.p0067 +Hideaki Touyama,Online Control of a Virtual Object with Collaborative SSVEP.,2017,21,JACIII,7,db/journals/jaciii/jaciii21.html#TouyamaS17,https://doi.org/10.20965/jaciii.2017.p1291 +Shino Iwashita,Smart Help for Novice Users Based on Application Software Manuals.,2006,10,JACIII,6,db/journals/jaciii/jaciii10.html#IwashitaIKSS06,https://doi.org/10.20965/jaciii.2006.p0811 +Sam Chau Duong,Nonlinear Active Noise Control via Model-Based Approaches.,2011,15,JACIII,7,db/journals/jaciii/jaciii15.html#DuongKO11,https://doi.org/10.20965/jaciii.2011.p0854 +Koki Kyo,Marginal Model Synthesization Algorithm for Data Envelopment Analysis and its Application.,2015,19,JACIII,6,db/journals/jaciii/jaciii19.html#KyoN15,https://doi.org/10.20965/jaciii.2015.p0880 +Shingo Mabu,Genetic Network Programming for Automatic Program Generation.,2005,9,JACIII,4,db/journals/jaciii/jaciii9.html#MabuHMH05,https://doi.org/10.20965/jaciii.2005.p0430 +Fang Deng,A Threat Assessment Method Based on Hierarchies and Modules.,2014,18,JACIII,1,db/journals/jaciii/jaciii18.html#DengLP014,https://doi.org/10.20965/jaciii.2014.p0093 +Yoshikazu Okajima,Utterance Generation Based on Driving Evaluation for Driving Assistance Robot.,2016,20,JACIII,5,db/journals/jaciii/jaciii20.html#OkajimaMOMKOT16,https://doi.org/10.20965/jaciii.2016.p0836 +Baltazár Frankovic,Approach to Scheduling Problem Solution in Production Systems Using the Multiagent System.,2000,4,JACIII,4,db/journals/jaciii/jaciii4.html#FrankovicLB00,https://doi.org/10.20965/jaciii.2000.p0263 +Adas Gelzinis,Quality Function for Unsupervised Classification and its Use in Graphic Arts.,1999,3,JACIII,6,db/journals/jaciii/jaciii3.html#GelzinisVM99,https://doi.org/10.20965/jaciii.1999.p0532 +Mao Wang,Visual Attention Region Prediction Based on Eye Tracking Using Fuzzy Inference.,2014,18,JACIII,4,db/journals/jaciii/jaciii18.html#WangMT14,https://doi.org/10.20965/jaciii.2014.p0499 +Kosuke Imamura,Knowledge Engineering and Embedded Systems Software: Educational Challenges.,2007,11,JACIII,7,db/journals/jaciii/jaciii11.html#Imamura07,https://doi.org/10.20965/jaciii.2007.p0842 +Yasunori Endo,On Fuzzy Non-Metric Model for Data with Tolerance and its Application to Incomplete Data Clustering.,2016,20,JACIII,4,db/journals/jaciii/jaciii20.html#EndoSKH16,https://doi.org/10.20965/jaciii.2016.p0571 +Bao Rong Chang,A Hybrid System ASVR/NGARCH Tuned by Quantum-Based Minimization to Improve Forecasting Accuracy.,2007,11,JACIII,4,db/journals/jaciii/jaciii11.html#Chang07,https://doi.org/10.20965/jaciii.2007.p0381 +Hugang Han,Adaptive Fuzzy Control for a SISO Nonlinear System.,2003,7,JACIII,2,db/journals/jaciii/jaciii7.html#HanM03,https://doi.org/10.20965/jaciii.2003.p0086 +Yongbo Li,Cold Centering Algorithm on Pipe Based on Laser Measurement.,2017,21,JACIII,3,db/journals/jaciii/jaciii21.html#LiYLLGC17,https://doi.org/10.20965/jaciii.2017.p0397 +Yusuke Irisawa,Strategic Management and Design Innovation in the Long-Standing Company Kyogashi Master ?Suetomi?.,2012,16,JACIII,5,db/journals/jaciii/jaciii16.html#IrisawaN12,https://doi.org/10.20965/jaciii.2012.p0561 +Hazem M. El-Bakry,New Fast Principal Component Analysis for Face Detection.,2007,11,JACIII,2,db/journals/jaciii/jaciii11.html#El-Bakry07,https://doi.org/10.20965/jaciii.2007.p0195 +Kiyohiko Uehara,Multi-Level Control of Fuzzy-Constraint Propagation in Inference with Fuzzy Rule Interpolation at an Infinite Number of Activating Points.,2017,21,JACIII,3,db/journals/jaciii/jaciii21.html#UeharaH17a,https://doi.org/10.20965/jaciii.2017.p0425 +Tomohiro Yoshikawa,Extraction of Evaluation Keywords for Analyzing Product Evaluation in User-Reviews Using Hierarchical Keyword Graph.,2009,13,JACIII,4,db/journals/jaciii/jaciii13.html#YoshikawaUFHI09,https://doi.org/10.20965/jaciii.2009.p0457 +Bao Rong Chang,Applying Intelligent Adaptation to Remote Cloud Datacenter Backup.,2016,20,JACIII,6,db/journals/jaciii/jaciii20.html#ChangTG16,https://doi.org/10.20965/jaciii.2016.p0928 +Guoli Ding,Asymptotic Behavior of Linear Approximations of Pseudo-Boolean Functions.,2007,11,JACIII,4,db/journals/jaciii/jaciii11.html#DingLCC07,https://doi.org/10.20965/jaciii.2007.p0403 +Norikazu Ikoma,Adaptive Touch Panel User Interface by Type-Based Approach Using Particle Filters.,2005,9,JACIII,6,db/journals/jaciii/jaciii9.html#IkomaPHM05,https://doi.org/10.20965/jaciii.2005.p0643 +Jesse S. Jin,Indexing Visual Features Using a Hybrid Neural Network.,2000,4,JACIII,6,db/journals/jaciii/jaciii4.html#JinWG00,https://doi.org/10.20965/jaciii.2000.p0412 +Zhe Yang,Impact Time Control Guidance Law Considering Seeker's Field-of-View Constraint Without Time-to-Go Information.,2016,20,JACIII,3,db/journals/jaciii/jaciii20.html#YangLZ16,https://doi.org/10.20965/jaciii.2016.p0412 +Benoit Vallade,Three Layers Framework Concept for Adjustable Artificial Intelligence.,2015,19,JACIII,6,db/journals/jaciii/jaciii19.html#ValladeDN15,https://doi.org/10.20965/jaciii.2015.p0867 +Weihong Huang,Towards Context-Aware Knowledge Management in e-Enterprises.,2005,9,JACIII,1,db/journals/jaciii/jaciii9.html#Huang05,https://doi.org/10.20965/jaciii.2005.p0039 +Natalia D. Nikolova,Fuzzy Rationality in Quantitative Decision Analysis.,2005,9,JACIII,1,db/journals/jaciii/jaciii9.html#NikolovaSTT05,https://doi.org/10.20965/jaciii.2005.p0065 +Yasuo Kudo,A Theoretical Formulation of Object-Oriented Rough Set Models.,2006,10,JACIII,5,db/journals/jaciii/jaciii10.html#KudoM06,https://doi.org/10.20965/jaciii.2006.p0612 +Huakang Li,Spatial Localization of Concurrent Multiple Sound Sources Using Phase Candidate Histogram.,2011,15,JACIII,9,db/journals/jaciii/jaciii15.html#LiHGZ11,https://doi.org/10.20965/jaciii.2011.p1277 +Ashwin Kothari,Rough Set Approach for Overall Performance Improvement of an Unsupervised ANN-Based Pattern Classifier.,2009,13,JACIII,4,db/journals/jaciii/jaciii13.html#KothariK09,https://doi.org/10.20965/jaciii.2009.p0434 +Yoshiaki Sakakura,Maintenance of Building Blocks in GA Using Symbiotic Evolutionary Viruses.,2005,9,JACIII,4,db/journals/jaciii/jaciii9.html#SakakuraTHK05,https://doi.org/10.20965/jaciii.2005.p0423 +Zahari Taha,Omnidirectional Vision for Mobile Robot Navigation.,2010,14,JACIII,1,db/journals/jaciii/jaciii14.html#TahaCY10,https://doi.org/10.20965/jaciii.2010.p0055 +Seiki Ubukata,Characteristics of Rough Set C-Means Clustering.,2018,22,JACIII,4,db/journals/jaciii/jaciii22.html#UbukataUNH18,https://doi.org/10.20965/jaciii.2018.p0551 +Hiroyuki Moriguchi,Adaptive Kernel Quantile Regression for Anomaly Detection.,2009,13,JACIII,3,db/journals/jaciii/jaciii13.html#MoriguchiTKHOKN09,https://doi.org/10.20965/jaciii.2009.p0230 +Clement N. Nyirenda,A Fuzzy Multiobjective Particle Swarm Optimized TS Fuzzy Logic Congestion Controller for Wireless Local Area Networks.,2011,15,JACIII,1,db/journals/jaciii/jaciii15.html#NyirendaDDNH11,https://doi.org/10.20965/jaciii.2011.p0041 +Nur Maisurah Hassan Basri,Development of a Robotic Boiler Header Inspection Device with Redundant Localization System.,2014,18,JACIII,3,db/journals/jaciii/jaciii18.html#BasriSA14,https://doi.org/10.20965/jaciii.2014.p0451 +Ben Xu,A Cascade Prediction Model of CO/CO2 in the Sintering Process.,2017,21,JACIII,5,db/journals/jaciii/jaciii21.html#XuCWC17,https://doi.org/10.20965/jaciii.2017.p0785 +Kento Tarui,Graph/Knot Theoretical Analysis and Generation \for Impossible Figures.,2007,11,JACIII,10,db/journals/jaciii/jaciii11.html#TaruiDHH07,https://doi.org/10.20965/jaciii.2007.p1262 +Tadanari Taniguchi,Nonlinear Model Following Control via Takagi-Sugeno Fuzzy Model.,1999,3,JACIII,2,db/journals/jaciii/jaciii3.html#TaniguchiT99,https://doi.org/10.20965/jaciii.1999.p0068 +Chien-Cheng Lee,Classification of Liver Disease from CT Images Using a Support Vector Machine.,2007,11,JACIII,4,db/journals/jaciii/jaciii11.html#LeeCC07,https://doi.org/10.20965/jaciii.2007.p0396 +Hoang T. P. Thanh,Stock Market Trend Prediction Based on Text Mining of Corporate Web and Time Series Data.,2014,18,JACIII,1,db/journals/jaciii/jaciii18.html#ThanhM14,https://doi.org/10.20965/jaciii.2014.p0022 +Jianqi An,A Review of Recent Developments in Advanced Computational Intelligence and Intelligent Informatics.,2016,20,JACIII,4,db/journals/jaciii/jaciii20.html#AnC0S16,https://doi.org/10.20965/jaciii.2016.p0497 +Yasuhiro Sudo,Extending Fuzzy Constraint Satisfaction Problems.,2006,10,JACIII,4,db/journals/jaciii/jaciii10.html#SudoKM06,https://doi.org/10.20965/jaciii.2006.p0465 +Daisaku Kimura,Fuzzy Nonlinear Regression Analysis Using Fuzzified Neural Networks for Fault Diagnosis of Chemical Plants.,2011,15,JACIII,3,db/journals/jaciii/jaciii15.html#KimuraNYTY11,https://doi.org/10.20965/jaciii.2011.p0336 +Klent Gomez Abistado,Weather Forecasting Using Artificial Neural Network and Bayesian Network.,2014,18,JACIII,5,db/journals/jaciii/jaciii18.html#AbistadoAM14,https://doi.org/10.20965/jaciii.2014.p0812 +Xinmei Wang,Online Estimation of Image Jacobian Matrix with Time-Delay Compensation.,2016,20,JACIII,2,db/journals/jaciii/jaciii20.html#WangWLWL16,https://doi.org/10.20965/jaciii.2016.p0238 +Ryota Inaishi,Effect of Overconfident Investor Behavior to Stock Market.,2010,14,JACIII,6,db/journals/jaciii/jaciii14.html#InaishiTZK10,https://doi.org/10.20965/jaciii.2010.p0661 +Nuno M. Fonseca Ferreira,Fractional-Order Position/Force Robot Control.,2005,9,JACIII,4,db/journals/jaciii/jaciii9.html#FerreiraMC05,https://doi.org/10.20965/jaciii.2005.p0379 +Hikari Fujii,Intelligent Control of Autonomous Soccer Robots Compensating for Missing Information.,2005,9,JACIII,3,db/journals/jaciii/jaciii9.html#FujiiKY05,https://doi.org/10.20965/jaciii.2005.p0268 +Ronald R. Yager,Fuzzy Temporal Methods for Video Multimedia Information Systems.,1997,1,JACIII,1,db/journals/jaciii/jaciii1.html#Yager97,https://doi.org/10.20965/jaciii.1997.p0037 +Yangjun Chen,Efficient Processing of XML Tree Pattern Queries.,2006,10,JACIII,5,db/journals/jaciii/jaciii10.html#ChenC06,https://doi.org/10.20965/jaciii.2006.p0738 +Seiya Fujinaga,Procedural Knowledge Processing Based on Area Representation Using a Neural Network.,2000,4,JACIII,1,db/journals/jaciii/jaciii4.html#FujinagaH00,https://doi.org/10.20965/jaciii.2000.p0046 +Mohd Hanafi Mat Som,A Development of Force Distribution Measurement System with High Resolution for Total Knee Arthroplasty.,2014,18,JACIII,2,db/journals/jaciii/jaciii18.html#SomNKKTMKK14,https://doi.org/10.20965/jaciii.2014.p0213 +Jin-Shig Kang,Descriptor System Modeling and Control of Lagrange Dynamics with Regional Pole-Placement Constraint.,2004,8,JACIII,4,db/journals/jaciii/jaciii8.html#Kang04,https://doi.org/10.20965/jaciii.2004.p0362 +Jun Ogawa,Estimation of Seaweed Twist Based on Diffusion Kernels in Physical Simulation.,2014,18,JACIII,5,db/journals/jaciii/jaciii18.html#OgawaYF14,https://doi.org/10.20965/jaciii.2014.p0823 +Janet Pomares Betancourt,Segmented Wavelet Decomposition for Capnogram Feature Extraction in Asthma Classification.,2014,18,JACIII,4,db/journals/jaciii/jaciii18.html#BetancourtTYDODH14,https://doi.org/10.20965/jaciii.2014.p0480 +Yutaka Matsushita,Bayesian Network Model that Infers Purchase Probability in an Online Shopping Site.,2013,17,JACIII,2,db/journals/jaciii/jaciii17.html#MatsushitaM13,https://doi.org/10.20965/jaciii.2013.p0221 +Yingxin Liao,Integrated Intelligence Control Based on Fuzzy and AI for Reheating Furnace.,2005,9,JACIII,2,db/journals/jaciii/jaciii9.html#LiaoWHDC05,https://doi.org/10.20965/jaciii.2005.p0211 +Raiye Hailu,Efficient Deal Identification by Constraint Relaxation for Collaborative Decision Making Using Negotiation.,2014,18,JACIII,4,db/journals/jaciii/jaciii18.html#HailuI14,https://doi.org/10.20965/jaciii.2014.p0608 +Toshihiko Watanabe,Camera Modeling for 3D Sensing Using Fuzzy Modeling Concept Based on Stereo Vision.,2015,19,JACIII,1,db/journals/jaciii/jaciii19.html#WatanabeS15,https://doi.org/10.20965/jaciii.2015.p0158 +Hideyuki Sawada,A Robotic Auditory System that Interacts with Musical Sounds and Human Voices.,2007,11,JACIII,10,db/journals/jaciii/jaciii11.html#SawadaT07,https://doi.org/10.20965/jaciii.2007.p1177 +Witold Pedrycz,Computational Intelligence: Retrospection and Future.,2017,21,JACIII,1,db/journals/jaciii/jaciii21.html#Pedrycz17,https://doi.org/10.20965/jaciii.2017.p0009 +Yoshihiro Ueda,Applying AHP to Preference Analysis by Dynamic Judgment-A Study of Adaptation and Identification of Odor.,2001,5,JACIII,4,db/journals/jaciii/jaciii5.html#UedaKKFO01,https://doi.org/10.20965/jaciii.2001.p0213 +Masaomi Kimura,The Method to Analyze Freely Described Data from Questionnaires.,2009,13,JACIII,3,db/journals/jaciii/jaciii13.html#Kimura09,https://doi.org/10.20965/jaciii.2009.p0268 +Michael K. Weir,Extending Learning Feasibility Through Feedforward Sequential Learning.,1998,2,JACIII,6,db/journals/jaciii/jaciii2.html#WeirC98,https://doi.org/10.20965/jaciii.1998.p0228 +Eiichiro Takahagi,Fuzzy Three-valued Switching Functions Using Choquet Integral.,2003,7,JACIII,1,db/journals/jaciii/jaciii7.html#Takahagi03,https://doi.org/10.20965/jaciii.2003.p0047 +Wei Zheng 0004,A Modification of MOEA/D for Solving Multi-Objective Optimization Problems.,2018,22,JACIII,2,db/journals/jaciii/jaciii22.html#ZhengTGJW18,https://doi.org/10.20965/jaciii.2018.p0214 +Kabsuk Oh,Support System for Multimedia Information Data Acquisition Based on Fuzzy Inference with a Fuzzy Shift.,2000,4,JACIII,5,db/journals/jaciii/jaciii4.html#OhH00,https://doi.org/10.20965/jaciii.2000.p0387 +Toshihiro Kaino,Differentiation of the Choquet Integral and Its Application to Long-term Debt Ratings.,2000,4,JACIII,1,db/journals/jaciii/jaciii4.html#KainoH00,https://doi.org/10.20965/jaciii.2000.p0066 +Takato Okudo,Supporting the Exploration of the Learning Goals for a Continuous Learner Toward Creative Learning.,2017,21,JACIII,5,db/journals/jaciii/jaciii21.html#OkudoYMTUT17,https://doi.org/10.20965/jaciii.2017.p0907 +Yoshiaki Taniai,Evaluation of Power-Assist System by Computer Simulation.,2016,20,JACIII,3,db/journals/jaciii/jaciii20.html#TaniaiNTK16,https://doi.org/10.20965/jaciii.2016.p0477 +Yuki Wakuda,Biological Rhythm Based Wearable Sleep State Observer.,2007,11,JACIII,2,db/journals/jaciii/jaciii11.html#WakudaNHAFK07,https://doi.org/10.20965/jaciii.2007.p0232 +Qibao Shu,Fault Tolerant Predictive Control Based on Discrete-Time Sliding Mode Observer for Quadrotor UAV.,2018,22,JACIII,4,db/journals/jaciii/jaciii22.html#ShuYWM18,https://doi.org/10.20965/jaciii.2018.p0498 +Ravil I. Muhamediyev,Integration of Results from Recognition Algorithms Applied to the Uranium Deposits.,2014,18,JACIII,3,db/journals/jaciii/jaciii18.html#MuhamediyevAIKM14,https://doi.org/10.20965/jaciii.2014.p0347 +Takashi Ishimizu,Experimental Study of a Structured Differential Evolution with Mixed Strategies.,2011,15,JACIII,9,db/journals/jaciii/jaciii15.html#IshimizuT11,https://doi.org/10.20965/jaciii.2011.p1310 +Hiroshi Ohtake,Switching Fuzzy Model Construction and Controller Design for Dynamical Systems with Input Nonlinearity.,2008,12,JACIII,6,db/journals/jaciii/jaciii12.html#OhtakeT08,https://doi.org/10.20965/jaciii.2008.p0537 +Zhuang Liu,An Improved Rumor Routing Protocol Based on Optimized Intersection Angle Theory and Localization Technologies in WSN.,2017,21,JACIII,7,db/journals/jaciii/jaciii21.html#LiuFZLZZ17,https://doi.org/10.20965/jaciii.2017.p1172 +Adrienn Buruzs,Fuzzy Cognitive Maps and Bacterial Evolutionary Algorithm Approach to Integrated Waste Management Systems.,2014,18,JACIII,4,db/journals/jaciii/jaciii18.html#BuruzsHK14,https://doi.org/10.20965/jaciii.2014.p0538 +Yasunori Endo,Hard c-Means Using Quadratic Penalty-Vector Regularization for Uncertain Data.,2012,16,JACIII,7,db/journals/jaciii/jaciii16.html#EndoTH12,https://doi.org/10.20965/jaciii.2012.p0831 +Romy Budhi Widodo,Artificial Neural Network Based Step-Length Prediction Using Ultrasonic Sensors from Simulation to Implementation in Shoe-Type Measurement Device.,2017,21,JACIII,2,db/journals/jaciii/jaciii21.html#WidodoW17,https://doi.org/10.20965/jaciii.2017.p0321 +Masashi Emoto,Properties of Interval Truth Values with Certainty Factor.,2003,7,JACIII,2,db/journals/jaciii/jaciii7.html#EmotoM03,https://doi.org/10.20965/jaciii.2003.p0229 +Atsushi Shibata,Neural Network Structure Analysis Based on Hierarchical Force-Directed Graph Drawing for Multi-Task Learning.,2015,19,JACIII,2,db/journals/jaciii/jaciii19.html#ShibataDH15,https://doi.org/10.20965/jaciii.2015.p0225 +Toshihiko Watanabe,An Improvement of Fuzzy Association Rules Mining Algorithm Based on Redundancy of Rules.,2011,15,JACIII,9,db/journals/jaciii/jaciii15.html#Watanabe11,https://doi.org/10.20965/jaciii.2011.p1248 +Azizul Azhar Ramli,An Efficient Solution of Real-Time Fuzzy Regression Analysis to Information Granules Problem.,2012,16,JACIII,2,db/journals/jaciii/jaciii16.html#RamliWP12,https://doi.org/10.20965/jaciii.2012.p0199 +Yange Lv,Measuring the Polarization Degree Based on Optimal Window Median Filtering Algorithm.,2015,19,JACIII,2,db/journals/jaciii/jaciii19.html#LvPZ15,https://doi.org/10.20965/jaciii.2015.p0264 +Yoichi Hayashi,Editorial: Professor Ernest Czogala Memorial Issue Part 1.,1999,3,JACIII,3,db/journals/jaciii/jaciii3.html#Hayashi99,https://doi.org/10.20965/jaciii.1999.p0149 +Kenkichi Ishizuka,Evaluation of Operetta Songs Generation System Based on Impressions of Story Scenes.,2012,16,JACIII,2,db/journals/jaciii/jaciii16.html#IshizukaO12,https://doi.org/10.20965/jaciii.2012.p0256 +Yutaka Matsushita,A Joint-Receipt Conjoint Structure and its Additive Representation.,2007,11,JACIII,8,db/journals/jaciii/jaciii11.html#Matsushita07,https://doi.org/10.20965/jaciii.2007.p0891 +Takeshi Koya,SN Ratio Estimation and Speech Segment Detection of Extracted Signals Through Independent Component Analysis.,2010,14,JACIII,4,db/journals/jaciii/jaciii14.html#KoyaIIHSG10,https://doi.org/10.20965/jaciii.2010.p0364 +Yau-Hwang Kuo,Automatic Extraction of Key Sentences via Word Sense Identification for Chinese Text Summarization.,2007,11,JACIII,4,db/journals/jaciii/jaciii11.html#KuoH07,https://doi.org/10.20965/jaciii.2007.p0416 +Tom Wanyama,A Qualitative Reasoning Model for Tradeoff Analysis in Multiple Objective Decision Making.,2007,11,JACIII,1,db/journals/jaciii/jaciii11.html#WanyamaF07,https://doi.org/10.20965/jaciii.2007.p0011 +Tauseef Aized,Advanced Multiple Product Flexible Manufacturing System Modelling Using Coloured Petri Net.,2007,11,JACIII,6,db/journals/jaciii/jaciii11.html#AizedTH07,https://doi.org/10.20965/jaciii.2007.p0715 +Stephen L. Chin,An Efficient Method for Extracting Fuzzy Classification Rules from High Dimensional Data.,1997,1,JACIII,1,db/journals/jaciii/jaciii1.html#Chin97,https://doi.org/10.20965/jaciii.1997.p0031 +Fangyan Dong,Concept of Neighborhood Degree and its Application to Switching Plural Optimization Methods in Scheduling.,2010,14,JACIII,1,db/journals/jaciii/jaciii14.html#DongCH10,https://doi.org/10.20965/jaciii.2010.p0021 +Kazutaka Umayahara,Fuzzy Clustering for Detecting Linear Structures with Different Dimensions.,1999,3,JACIII,1,db/journals/jaciii/jaciii3.html#UmayaharaNM99,https://doi.org/10.20965/jaciii.1999.p0013 +Hiroshi Takaichi,Expanded and Practical Use of Logistic Equations in Eco-Toxicity Evaluation: Cases of Lethal Metal Toxicity Curves in Green Paramecia with Minimal-Sized Experiments.,2016,20,JACIII,5,db/journals/jaciii/jaciii20.html#TakaichiK16,https://doi.org/10.20965/jaciii.2016.p0681 +Kanji Tanaka,Bag-of-Bounding-Boxes: An Unsupervised Approach for Object-Level View Image Retrieval.,2014,18,JACIII,5,db/journals/jaciii/jaciii18.html#TanakaAI14,https://doi.org/10.20965/jaciii.2014.p0784 +Junki Ito,Editing Robot Motion Using Phonemic Feature of Onomatopoeias.,2013,17,JACIII,2,db/journals/jaciii/jaciii17.html#ItoKNK13,https://doi.org/10.20965/jaciii.2013.p0227 +Dominic B. Solpico,Solar-Powered Field Server and Aerator Development for Lake Palakpakin.,2014,18,JACIII,5,db/journals/jaciii/jaciii18.html#SolpicoLTCGMPT14,https://doi.org/10.20965/jaciii.2014.p0755 +Yue Yang,"Signal Processing on Precursory ""Fingerprint"" Image Pattern Feature of Yushu Earthquake.",2016,20,JACIII,7,db/journals/jaciii/jaciii20.html#YangLZX16,https://doi.org/10.20965/jaciii.2016.p1165 +Hirotaka Takano,Improving the Search Ability of Tabu Search in the Distribution Network Reconfiguration Problem.,2013,17,JACIII,5,db/journals/jaciii/jaciii17.html#TakanoMMY13,https://doi.org/10.20965/jaciii.2013.p0681 +Fujia Yu,Experimental Evaluations of Approaching Hand/Eye-Vergence Visual Servoing.,2011,15,JACIII,7,db/journals/jaciii/jaciii15.html#YuSMYD11,https://doi.org/10.20965/jaciii.2011.p0878 +Jun Pi,A Study of Influence upon Inflation Posed by Volatility of Housing Price.,2016,20,JACIII,4,db/journals/jaciii/jaciii20.html#PiSYJ16,https://doi.org/10.20965/jaciii.2016.p0597 +Chen Ye,Block Sparse Signal Reconstruction Using Block-Sparse Adaptive Filtering Algorithms.,2016,20,JACIII,7,db/journals/jaciii/jaciii20.html#YeGMX16,https://doi.org/10.20965/jaciii.2016.p1119 +József K. Tar,Symplectic Geometry Based Simple Algebraic Possibilities for Developing Adaptive Control for Mechanical Systems.,2001,5,JACIII,5,db/journals/jaciii/jaciii5.html#TarRBT01,https://doi.org/10.20965/jaciii.2001.p0257 +Shan-Tai Chen,Rain-Area Identification Using TRMM/TMI Data by Data Mining Approach.,2008,12,JACIII,3,db/journals/jaciii/jaciii12.html#ChenWCH08,https://doi.org/10.20965/jaciii.2008.p0243 +Yuko Osana,Knowledge Processing System Using Chaotic Associative Memory.,2000,4,JACIII,1,db/journals/jaciii/jaciii4.html#OsanaH00,https://doi.org/10.20965/jaciii.2000.p0039 +Yuchi Kanzawa,Power-Regularized Fuzzy c-Means Clustering with a Fuzzification Parameter Less Than One.,2016,20,JACIII,4,db/journals/jaciii/jaciii20.html#Kanzawa16,https://doi.org/10.20965/jaciii.2016.p0561 +Tienwei Tsai,An Efficient DCT-Based Image Retrieval Approach Using Distance Threshold Pruning.,2008,12,JACIII,3,db/journals/jaciii/jaciii12.html#TsaiCH08,https://doi.org/10.20965/jaciii.2008.p0268 +Jia Zhang,Battlefield Agent Decision-Making Based on Markov Decision Process.,2017,21,JACIII,2,db/journals/jaciii/jaciii21.html#ZhangWDXC17,https://doi.org/10.20965/jaciii.2017.p0221 +Mubeen Aslam,Clustering-Based Cloud Migration Strategies.,2018,22,JACIII,3,db/journals/jaciii/jaciii22.html#AslamRWH18,https://doi.org/10.20965/jaciii.2018.p0295 +Seiki Tokunaga,Design and Evaluation of Consumer-Oriented Reviewing Platform with Receipt Log.,2015,19,JACIII,6,db/journals/jaciii/jaciii19.html#TokunagaOSMN15,https://doi.org/10.20965/jaciii.2015.p0785 +Takuya Akashi,Downsized Evolutionary Video Processing for Lips Tracking and Data Acquisition.,2007,11,JACIII,8,db/journals/jaciii/jaciii11.html#AkashiWTKF07,https://doi.org/10.20965/jaciii.2007.p1030 +Shreejana Prajapati,Productivity Enhancing Interruption-Information Management Chat Interface.,2017,21,JACIII,3,db/journals/jaciii/jaciii21.html#PrajapatiYUS17,https://doi.org/10.20965/jaciii.2017.p0456 +Jun Rokui,Encrypted Color Barcode Using Tree-Structure Joint Stereo Coding.,2017,21,JACIII,3,db/journals/jaciii/jaciii21.html#Rokui17,https://doi.org/10.20965/jaciii.2017.p0417 +Chiung Moon,A Genetic Algorithm for Machines Sequencing Considering Operation Flexibility and AGV Guidepath.,2000,4,JACIII,1,db/journals/jaciii/jaciii4.html#MoonG00,https://doi.org/10.20965/jaciii.2000.p0088 +Fangyan Dong,Solving Truck Delivery Problems Using Integrated Evaluation Criteria Based on Neighborhood Degree and Evolutionary Algorithm.,2004,8,JACIII,3,db/journals/jaciii/jaciii8.html#DongCINH04,https://doi.org/10.20965/jaciii.2004.p0336 +Yusuke Irisawa,Product Innovation of Shinzaburo Hanpu and Regional Characteristic of Kyoto.,2011,15,JACIII,4,db/journals/jaciii/jaciii15.html#IrisawaN11,https://doi.org/10.20965/jaciii.2011.p0418 +Agnieszka Cichocka,Comparison of Traditional 2D and Virtual Patterns Design in 3D.,2009,13,JACIII,5,db/journals/jaciii/jaciii13.html#CichockaB09,https://doi.org/10.20965/jaciii.2009.p0542 +Kiyohiko Uehara,Inference Based on 0*-Cut and Generalized Mean in Representing Fuzzy-Valued Functions.,2010,14,JACIII,6,db/journals/jaciii/jaciii14.html#UeharaKH10b,https://doi.org/10.20965/jaciii.2010.p0581 +Masayuki Okabe,Learning Similarity Matrix from Constraints of Relational Neighbors.,2010,14,JACIII,4,db/journals/jaciii/jaciii14.html#OkabeY10,https://doi.org/10.20965/jaciii.2010.p0402 +Ki-Young Kwon,Autonomous Vehicle Path Tracking Based on Natural Gradient Methods.,2012,16,JACIII,7,db/journals/jaciii/jaciii16.html#KwonJYP12,https://doi.org/10.20965/jaciii.2012.p0888 +Tomohiro Harada,Robustness to Bit Inversion in Registers and Acceleration of Program Evolution in On-Board Computer.,2011,15,JACIII,8,db/journals/jaciii/jaciii15.html#HaradaOIHST11,https://doi.org/10.20965/jaciii.2011.p1175 +Qingzhu Wang,Compressive Sensing of Noisy 3-D Images Based on Threshold Selection.,2018,22,JACIII,1,db/journals/jaciii/jaciii22.html#WangWZ18,https://doi.org/10.20965/jaciii.2018.p0070 +Mitsuharu Hayashi,Application of Modular Network Self-Organization Map to Temporal and Spatial Projection of Wind Speed with Wind Data at Biased Positions.,2018,22,JACIII,1,db/journals/jaciii/jaciii22.html#HayashiN18,https://doi.org/10.20965/jaciii.2018.p0133 +Luong Duc Long,Fuzzy Activity Network Method for Project Scheduling Under Resource Constraints.,2007,11,JACIII,8,db/journals/jaciii/jaciii11.html#LongO07,https://doi.org/10.20965/jaciii.2007.p0914 +Mladen Jovic,Cross-Resolution Image Similarity Modeling.,2007,11,JACIII,3,db/journals/jaciii/jaciii11.html#JovicHH07,https://doi.org/10.20965/jaciii.2007.p0301 +Ricardo Sotolongo,Semantically Enhanced Code Clone Refinement Algorithm Based on Analysis of Multiple Detection Reports.,2011,15,JACIII,3,db/journals/jaciii/jaciii15.html#SotolongoDH11,https://doi.org/10.20965/jaciii.2011.p0322 +Vihren E. Chakarov,Generalized Net Model of Auditory Information Processing.,2007,11,JACIII,5,db/journals/jaciii/jaciii11.html#ChakarovAS07,https://doi.org/10.20965/jaciii.2007.p0452 +Takaki Urai,User Kansei Clothing Image Retrieval System.,2014,18,JACIII,6,db/journals/jaciii/jaciii18.html#UraiT14,https://doi.org/10.20965/jaciii.2014.p1044 +Nozomi Ytow,Rough Set Approximation as Formal Concept.,2006,10,JACIII,5,db/journals/jaciii/jaciii10.html#YtowMM06,https://doi.org/10.20965/jaciii.2006.p0606 +Keiji Kuwabara,Vehicle Appearance Model for Recognition System Considering the Change of Imaging Condition.,2009,13,JACIII,4,db/journals/jaciii/jaciii13.html#KuwabaraYO09,https://doi.org/10.20965/jaciii.2009.p0463 +Theodoros Alexandropoulos,Block-Based Change Detection in the Presence of Ambient Illumination Variations.,2005,9,JACIII,1,db/journals/jaciii/jaciii9.html#AlexandropoulosLK05,https://doi.org/10.20965/jaciii.2005.p0046 +Bin Shen,Hierarchical Semi-Supervised Factorization for Learning the Semantics.,2014,18,JACIII,3,db/journals/jaciii/jaciii18.html#ShenM14,https://doi.org/10.20965/jaciii.2014.p0366 +Hitoshi Yano,Multiobjective Two-Level Fuzzy Random Programming Problems with Simple Recourses and Estimated Pareto Stackelberg Solutions.,2018,22,JACIII,3,db/journals/jaciii/jaciii22.html#Yano18,https://doi.org/10.20965/jaciii.2018.p0359 +Fumito Uwano,Comparison Between Reinforcement Learning Methods with Different Goal Selections in Multi-Agent Cooperation.,2017,21,JACIII,5,db/journals/jaciii/jaciii21.html#UwanoT17,https://doi.org/10.20965/jaciii.2017.p0917 +Wuhui Chen,Interlinking Distributed Services for Workflow-as-a-Service Based on Linked Data.,2013,17,JACIII,4,db/journals/jaciii/jaciii17.html#ChenPT13,https://doi.org/10.20965/jaciii.2013.p0561 +Masato Inoue,Simulation of Developmental Process of Organism and Application to Structural Design.,2005,9,JACIII,2,db/journals/jaciii/jaciii9.html#InoueM05,https://doi.org/10.20965/jaciii.2005.p0142 +Jung Sik Jeong,Risk Assessment Model of Maritime Traffic in Time-Variant CPA Environments in Waterway.,2012,16,JACIII,7,db/journals/jaciii/jaciii16.html#JeongPK12,https://doi.org/10.20965/jaciii.2012.p0866 +Kazuaki Kojima,Evolution of Three Norms of Distributive Justice in an Extended Nash Demand Game.,2014,18,JACIII,3,db/journals/jaciii/jaciii18.html#KojimaA14,https://doi.org/10.20965/jaciii.2014.p0409 +Norikazu Ikoma,Real Time Color Object Tracking on Cell Broadband Engine Using Particle Filters.,2010,14,JACIII,3,db/journals/jaciii/jaciii14.html#IkomaA10,https://doi.org/10.20965/jaciii.2010.p0272 +Chia-Huang Chen,Situation-Oriented Hierarchical Classification for Sightseeing Images Based on Local Color Feature.,2013,17,JACIII,3,db/journals/jaciii/jaciii17.html#ChenT13,https://doi.org/10.20965/jaciii.2013.p0459 +Hideki Fujii,Virtual Social Experiment of Tram Railway Extension Using Multi-Agent-Based Traffic Simulator.,2011,15,JACIII,2,db/journals/jaciii/jaciii15.html#FujiiSY11,https://doi.org/10.20965/jaciii.2011.p0226 +Bui Cong Cuong,Fuzzy Inference Methods Employing T-norm with Threshold and Their Implementation.,2003,7,JACIII,3,db/journals/jaciii/jaciii7.html#CuongPLSY03,https://doi.org/10.20965/jaciii.2003.p0362 +Busara Piriyanont,Model Reference Control for Collision Avoidance of a Human-Operated Quadrotor Helicopter.,2011,15,JACIII,5,db/journals/jaciii/jaciii15.html#PiriyanontUS11,https://doi.org/10.20965/jaciii.2011.p0617 +Yang Hee Yee,Knowledge Based Automated Boundary Detection for Qualifying of LV Function in Low Contrast Angiographic Images.,2000,4,JACIII,2,db/journals/jaciii/jaciii4.html#YeeJOP00,https://doi.org/10.20965/jaciii.2000.p0171 +Furao Shen,An Online Incremental Semi-Supervised Learning Method.,2010,14,JACIII,6,db/journals/jaciii/jaciii14.html#ShenYKH10,https://doi.org/10.20965/jaciii.2010.p0593 +Xiaoxiao Fei,Long-Term Ensemble Learning for Cross-Season Visual Place Classification.,2018,22,JACIII,4,db/journals/jaciii/jaciii22.html#FeiTFT18,https://doi.org/10.20965/jaciii.2018.p0514 +Yoshinori Shigeta,Converting Constraint Handling Rules to Equivalent Transformation Rules.,2006,10,JACIII,3,db/journals/jaciii/jaciii10.html#ShigetaAMK06,https://doi.org/10.20965/jaciii.2006.p0339 +Yumi Umesawa,Development and Evaluation of a Device for Inducing Kinesthetic Illusion of Dual Joint Movements.,2017,21,JACIII,4,db/journals/jaciii/jaciii21.html#UmesawaDF17,https://doi.org/10.20965/jaciii.2017.p0737 +Biliana Alexandrova-Kabadjova,Competition is Bad for Consumers: Analysis of an Artificial Payment Card Market.,2011,15,JACIII,2,db/journals/jaciii/jaciii15.html#Alexandrova-KabadjovaTK11,https://doi.org/10.20965/jaciii.2011.p0188 +Ka Keung Lee,Computational Intelligence for Modeling Human Sensations in Virtual Environments.,2004,8,JACIII,3,db/journals/jaciii/jaciii8.html#LeeX04,https://doi.org/10.20965/jaciii.2004.p0302 +Uthai Phommasak,An Adaptation System in Unknown Environments Using a Mixture Probability Model and Clustering Distributions.,2012,16,JACIII,6,db/journals/jaciii/jaciii16.html#PhommasakKS12,https://doi.org/10.20965/jaciii.2012.p0733 +Myung-Chul Jung,Automatic Web Service Composition Based on Behavior Network.,2006,10,JACIII,5,db/journals/jaciii/jaciii10.html#JungC06,https://doi.org/10.20965/jaciii.2006.p0728 +Jia Zhang,Design and Implementation of Intelligent Event-Driven Human-Computer Interface on Vehicles.,2015,19,JACIII,2,db/journals/jaciii/jaciii19.html#ZhangXD15,https://doi.org/10.20965/jaciii.2015.p0247 +Yoshihito Sano,A GPU-Based Programming Framework for Highly-Scalable Multi-Agent Traffic Simulations.,2014,18,JACIII,4,db/journals/jaciii/jaciii18.html#SanoF14,https://doi.org/10.20965/jaciii.2014.p0581 +Tze Ling Jee,Enhancing a Fuzzy Failure Mode and Effect Analysis Methodology with an Analogical Reasoning Technique.,2011,15,JACIII,9,db/journals/jaciii/jaciii15.html#JeeTN11,https://doi.org/10.20965/jaciii.2011.p1203 +Ahmed M. Elmogy,Auction-Based Consensus Mechanism for Cooperative Tracking in Multi-Sensor Surveillance Systems.,2010,14,JACIII,1,db/journals/jaciii/jaciii14.html#ElmogyKK10,https://doi.org/10.20965/jaciii.2010.p0013 +Kenji Terabayashi,Role of Pre-Operation in Experiencing Differently Sized Hands.,2010,14,JACIII,7,db/journals/jaciii/jaciii14.html#TerabayashiMUO10,https://doi.org/10.20965/jaciii.2010.p0793 +Junpei Tsuji,An Indoor Positioning System Based on Probabilistic Model with ZigBee Sensor Networks.,2010,14,JACIII,6,db/journals/jaciii/jaciii14.html#TsujiKSISK10,https://doi.org/10.20965/jaciii.2010.p0669 +Takeshi Yoshikawa,Finding Communities Using User Preference in Web Structure Mining.,2011,15,JACIII,3,db/journals/jaciii/jaciii15.html#YoshikawaN11,https://doi.org/10.20965/jaciii.2011.p0377 +Takeshi Tateyama,Construction of Semi-Markov Decision Process Models of Continuous State Space Environments Using Growing Cell Structures and Multiagent k-Certainty Exploration Method.,2009,13,JACIII,6,db/journals/jaciii/jaciii13.html#TateyamaKS09,https://doi.org/10.20965/jaciii.2009.p0608 +Marta Takács,g-Calculus-Based Compositional Rule of Inference.,2006,10,JACIII,4,db/journals/jaciii/jaciii10.html#Takacs06,https://doi.org/10.20965/jaciii.2006.p0534 +Yusuke Ikemoto,Evolution of Modular Networks Under Selection for Non-Linearly Denoising.,2016,20,JACIII,5,db/journals/jaciii/jaciii20.html#IkemotoS16,https://doi.org/10.20965/jaciii.2016.p0705 +Hidetoshi Nakayasu,Analysis of Driver Perceptions and Behavior When Driving in an Unfamiliar Traffic Regulation.,2011,15,JACIII,8,db/journals/jaciii/jaciii15.html#NakayasuMKAP11,https://doi.org/10.20965/jaciii.2011.p1039 +Yosuke Uozumi,An Automatic Three-Dimensional Evaluation of Screw Placement After Anterior Cruciate Ligament Reconstruction Using MDCT Images.,2013,17,JACIII,6,db/journals/jaciii/jaciii17.html#UozumiNNAHMKK13,https://doi.org/10.20965/jaciii.2013.p0818 +Tomohisa Yamamoto,A Classification of Postural Sway Patterns During Upright Stance in Healthy Adults and Patients with Parkinson's Disease.,2011,15,JACIII,8,db/journals/jaciii/jaciii15.html#YamamotoSNNTFES11,https://doi.org/10.20965/jaciii.2011.p0997 +Kaoru Hirota,An Application of Fuzzy Theory to the Case-Based Reasoning of the CISG.,1997,1,JACIII,2,db/journals/jaciii/jaciii1.html#HirotaYXZLH97,https://doi.org/10.20965/jaciii.1997.p0086 +Yasufumi Takama,Classification of Informative Reviews Based on Personal Values.,2014,18,JACIII,3,db/journals/jaciii/jaciii18.html#TakamaMH14,https://doi.org/10.20965/jaciii.2014.p0331 +Elyse Marie Glina,Conversation System with State Information.,2010,14,JACIII,6,db/journals/jaciii/jaciii14.html#GlinaK10,https://doi.org/10.20965/jaciii.2010.p0741 +Tomoe Entani,Ranking of DMUs Based on Efficiency Intervals.,2011,15,JACIII,1,db/journals/jaciii/jaciii15.html#Entani11,https://doi.org/10.20965/jaciii.2011.p0063 +Koichiro Morihiro,Reinforcement Learning Scheme for Flocking Behavior Emergence.,2007,11,JACIII,2,db/journals/jaciii/jaciii11.html#MorihiroINTKM07,https://doi.org/10.20965/jaciii.2007.p0155 +Nguyen Hoang Phuong,Editorial: Special Issue Selected Papers VJFUZZY'2001.,2002,6,JACIII,1,db/journals/jaciii/jaciii6.html#PhuongY02,https://doi.org/10.20965/jaciii.2002.p0001 +Makoto Yasuda,Phase Transitions in Fuzzy Clustering Based on Fuzzy Entropy.,2003,7,JACIII,3,db/journals/jaciii/jaciii7.html#YasudaFO03,https://doi.org/10.20965/jaciii.2003.p0370 +Eriko Aiba,Accuracy of Synchrony Judgment and its Relation to the Auditory Brainstem Response: the Difference Between Pianists and Non-Pianists.,2011,15,JACIII,8,db/journals/jaciii/jaciii15.html#AibaKSMTN11,https://doi.org/10.20965/jaciii.2011.p0962 +Zhong-Da Tian,Generalized Predictive PID Control for Main Steam Temperature Based on Improved PSO Algorithm.,2017,21,JACIII,3,db/journals/jaciii/jaciii21.html#TianLW17,https://doi.org/10.20965/jaciii.2017.p0507 +Takahiro Yamanoi,Spatiotemporal Human Brain Activities on Recalling Names of Body Parts.,2013,17,JACIII,3,db/journals/jaciii/jaciii17.html#YamanoiTOOYS13,https://doi.org/10.20965/jaciii.2013.p0386 +Shinya Nagasawa,"Feasibility Study on Marketing Research Using Eye Movement: An Investigation of Image Presentation Using an ""Eye Camera"" and Data Processing.",2005,9,JACIII,5,db/journals/jaciii/jaciii9.html#NagasawaYH05,https://doi.org/10.20965/jaciii.2005.p0440 +Elmer P. Dadios,Genetic Algorithm On Line Controller for the Flexible Inverted Pendulum Problem.,2006,10,JACIII,2,db/journals/jaciii/jaciii10.html#DadiosFW06,https://doi.org/10.20965/jaciii.2006.p0155 +Hiroshi Sakai,Special Issue on Rough Sets and Granular Computing.,2006,10,JACIII,5,db/journals/jaciii/jaciii10.html#SakaiI06,https://doi.org/10.20965/jaciii.2006.p0605 +Qin Qin,Pedestrian Detection Algorithm Based on Improved Convolutional Neural Network.,2017,21,JACIII,5,db/journals/jaciii/jaciii21.html#QinV17,https://doi.org/10.20965/jaciii.2017.p0834 +Mark D. Johnston,Multi-Objective Scheduling for Space Science Missions.,2011,15,JACIII,8,db/journals/jaciii/jaciii15.html#JohnstonG11,https://doi.org/10.20965/jaciii.2011.p1140 +Simon X. Yang,A Biological Inspired Approach to Collision-Free Path Planning and Tracking Control of a Mobile Robot.,2004,8,JACIII,3,db/journals/jaciii/jaciii8.html#YangMYL04,https://doi.org/10.20965/jaciii.2004.p0243 +Haruhiko Kimura,A Speedup Algorithm for Repetition of Hypothetical Reasoning.,2006,10,JACIII,2,db/journals/jaciii/jaciii10.html#KimuraMAO06,https://doi.org/10.20965/jaciii.2006.p0207 +Toshiaki Takano,Merging with Extraction Method for Transfer Learning in Actor-Critic.,2011,15,JACIII,7,db/journals/jaciii/jaciii15.html#TakanoTKT11,https://doi.org/10.20965/jaciii.2011.p0814 +Toru Nakata,Automatic Generation of Expressive Body Movement Based on Cohen-kestenberg Lifelike Motion Stereotypes.,2003,7,JACIII,2,db/journals/jaciii/jaciii7.html#Nakata03,https://doi.org/10.20965/jaciii.2003.p0124 +Kazuhiro Ozawa,Fuzzy Time-Series Model of Electric Power Consumption.,2000,4,JACIII,3,db/journals/jaciii/jaciii4.html#OzawaNN00,https://doi.org/10.20965/jaciii.2000.p0188 +Montri Phothisonothai,Single-Channel Noise Reduction for Multiple Background Noises Using Perceptual Wavelet Packet Transform and Fuzzy Logic.,2004,8,JACIII,6,db/journals/jaciii/jaciii8.html#PhothisonothaiKC04,https://doi.org/10.20965/jaciii.2004.p0613 +Jungpil Shin,An Interactive Map Search System Using Wavelet and Shape Contexts.,2011,15,JACIII,9,db/journals/jaciii/jaciii15.html#ShinL11,https://doi.org/10.20965/jaciii.2011.p1256 +Muhammad Rahmat Widyanto,Fuzzy Relevance Feedback in Image Retrieval for Color Feature Using Query Vector Modification Method.,2010,14,JACIII,1,db/journals/jaciii/jaciii14.html#WidyantoM10,https://doi.org/10.20965/jaciii.2010.p0034 +Hongxing He,Application of Genetic Algorithm and K-Nearest Neighbour Method in Real World Medical Fraud Detection Problem.,2000,4,JACIII,2,db/journals/jaciii/jaciii4.html#HeHGY00,https://doi.org/10.20965/jaciii.2000.p0130 +Seiki Ubukata,Variable Neighborhood Model for Agent Control Introducing Accessibility Relations Between Agents with Linear Temporal Logic.,2014,18,JACIII,6,db/journals/jaciii/jaciii18.html#UbukataMKA14,https://doi.org/10.20965/jaciii.2014.p0937 +Hiroshi Ohtake,Switching Model Construction and Stability Analysis for Nonlinear Systems.,2006,10,JACIII,1,db/journals/jaciii/jaciii10.html#OhtakeT06,https://doi.org/10.20965/jaciii.2006.p0003 +Yuefen Chen,Multi-Dimension Uncertain Linear Quadratic Optimal Control with Cross Term.,2015,19,JACIII,5,db/journals/jaciii/jaciii19.html#ChenL15,https://doi.org/10.20965/jaciii.2015.p0670 +Jong-Moon Ju,A Study on Supplier Evaluation and Selection Method Based on Dependence.,2004,8,JACIII,4,db/journals/jaciii/jaciii8.html#JuH04,https://doi.org/10.20965/jaciii.2004.p0415 +Ernesto Damiani,Dynamic Service Identification in A Distributed Environment.,1999,3,JACIII,5,db/journals/jaciii/jaciii3.html#DamianiF99,https://doi.org/10.20965/jaciii.1999.p0401 +Hiroshi Sakai,An Application of Discernibility Functions to Generating Minimal Rules in Non-Deterministic Information Systems.,2006,10,JACIII,5,db/journals/jaciii/jaciii10.html#SakaiN06,https://doi.org/10.20965/jaciii.2006.p0695 +Hassab Elgawi Osman,Averaging Forest for Online Vision.,2009,13,JACIII,4,db/journals/jaciii/jaciii13.html#Osman09b,https://doi.org/10.20965/jaciii.2009.p0400 +Takeshi Furuhashi,Fuzzy Control Stability Analysis Using a Generalized Fuzzy Petri Net Model.,1999,3,JACIII,2,db/journals/jaciii/jaciii3.html#FuruhashiYPP99,https://doi.org/10.20965/jaciii.1999.p0099 +Euntai Kim,Fuzzy Control of a Direct Current Motor System and Stability Analysis.,1999,3,JACIII,6,db/journals/jaciii/jaciii3.html#KimLK99,https://doi.org/10.20965/jaciii.1999.p0515 +Hewijin Christine Jiau,A Dual Ternary Indexing Approach for Music Retrieval System.,2008,12,JACIII,3,db/journals/jaciii/jaciii12.html#JiauC08,https://doi.org/10.20965/jaciii.2008.p0227 +Victor Parque,Evolving Asset Portfolios by Genetic Relation Algorithm.,2010,14,JACIII,5,db/journals/jaciii/jaciii14.html#ParqueMH10,https://doi.org/10.20965/jaciii.2010.p0464 +Yuiko Koga,Detection of Artery Regions in Lower Extremity Arteries from Non-Enhanced MR Imaging Based on Particle Filter Algorithms.,2013,17,JACIII,2,db/journals/jaciii/jaciii17.html#KogaYKTI13,https://doi.org/10.20965/jaciii.2013.p0318 +Fitra A. Bachtiar,A Neural Network Model of Students' English Abilities Based on Their Affective Factors in Learning.,2012,16,JACIII,3,db/journals/jaciii/jaciii16.html#BachtiarKC12,https://doi.org/10.20965/jaciii.2012.p0375 +Hidenori Sakaniwa,Fuzzy Set Representation of Kansei Texture and its Visualization for Online Shopping.,2015,19,JACIII,2,db/journals/jaciii/jaciii19.html#SakaniwaDH15,https://doi.org/10.20965/jaciii.2015.p0284 +Hajime Yoshino,Editorial: AI and Law.,1997,1,JACIII,2,db/journals/jaciii/jaciii1.html#YoshinoN97,https://doi.org/10.20965/jaciii.1997.p0081 +Hiroshi Shiratsuchi,Studies on Effects of Initialization on Structure Formationand Generalization of Structural Learning with Forgetting.,2004,8,JACIII,6,db/journals/jaciii/jaciii8.html#ShiratsuchiGIK04,https://doi.org/10.20965/jaciii.2004.p0621 +Yutaka Hatakeyama,A Classification Algorithm of Abdominal Ultrasound Images in Medical Practice for Secondary Uses.,2010,14,JACIII,2,db/journals/jaciii/jaciii14.html#HatakeyamaKNWO10,https://doi.org/10.20965/jaciii.2010.p0128 +Handri Santoso,Gender and Age Classification Based on Pattern of Human Motion Using Choquet Integral Agent Networks.,2009,13,JACIII,4,db/journals/jaciii/jaciii13.html#SantosoNN09,https://doi.org/10.20965/jaciii.2009.p0481 +Beiyi Liu,Compressive Sensing-Based Adaptive Sparse Multipath Channel Estimation.,2017,21,JACIII,1,db/journals/jaciii/jaciii21.html#LiuGMX17,https://doi.org/10.20965/jaciii.2017.p0153 +Daiki Kawakami,Projector Camera System Presenting Color Information for the Color Vision Deficient.,2016,20,JACIII,1,db/journals/jaciii/jaciii20.html#KawakamiMKKYA16,https://doi.org/10.20965/jaciii.2016.p0026 +Toshihiro Irie,Response Control of Variable Stiffness Structure Using Electromagnetic Clutch.,2003,7,JACIII,2,db/journals/jaciii/jaciii7.html#IrieSKT03,https://doi.org/10.20965/jaciii.2003.p0101 +Bing Xu,Interest Rate Liberalization and Fiscal Policy in China: A New Keynesian DSGE Model.,2014,18,JACIII,6,db/journals/jaciii/jaciii18.html#XuHHZ14,https://doi.org/10.20965/jaciii.2014.p0985 +Hajime Yoshino,Legal Expert Project.,1997,1,JACIII,2,db/journals/jaciii/jaciii1.html#Yoshino97,https://doi.org/10.20965/jaciii.1997.p0083 +Tsubasa Matsuo,Comparison of Knowledge Acquisition Methods for Dynamic Scheduling of Wafer Test Processes with Unpredictable Testing Errors.,2015,19,JACIII,1,db/journals/jaciii/jaciii19.html#MatsuoIM15,https://doi.org/10.20965/jaciii.2015.p0058 +Yasuyo Hatcho,Time Horizon Generalization in Reinforcement Learning: Generalizing Multiple Q-Tables in Q-Learning Agents.,2009,13,JACIII,6,db/journals/jaciii/jaciii13.html#HatchoHT09,https://doi.org/10.20965/jaciii.2009.p0667 +Yoshiyuki Matsumoto,Analysis of Time-Series Data by Merging Decision Rules.,2017,21,JACIII,6,db/journals/jaciii/jaciii21.html#MatsumotoW17,https://doi.org/10.20965/jaciii.2017.p1026 +Ryosuke Horio,Observer Design for Estimating Support Force Applied by a Human Operator of a Biped Robot.,2017,21,JACIII,4,db/journals/jaciii/jaciii21.html#HorioUS17,https://doi.org/10.20965/jaciii.2017.p0744 +Hiroshi Hashimoto,Traces of Fuzzy Relations Under Dual Operations.,2005,9,JACIII,5,db/journals/jaciii/jaciii9.html#Hashimoto05,https://doi.org/10.20965/jaciii.2005.p0563 +Benhui Chen,Network Administrator Assistance System Based on Fuzzy C-means Analysis.,2009,13,JACIII,2,db/journals/jaciii/jaciii13.html#ChenHDG09,https://doi.org/10.20965/jaciii.2009.p0091 +Hitoshi Yamamoto,Analysis of a Public Good Game Permitted New Entries: a Role of Defectors to Maintain Cooperation.,2014,18,JACIII,4,db/journals/jaciii/jaciii18.html#YamamotoOO14,https://doi.org/10.20965/jaciii.2014.p0624 +Se-Woong Oh,A Study on the Location Analysis Using Spatial Analysis and Ordered Weighted Averaging Operator Weighting Functions.,2008,12,JACIII,6,db/journals/jaciii/jaciii12.html#OhPPS08,https://doi.org/10.20965/jaciii.2008.p0529 +Halpage Chinthaka Nuwandika Premachandra,A Study on Modeling Error Estimation for Mobile Robot Based on Coevolutionary Computation and Image Processing.,2007,11,JACIII,7,db/journals/jaciii/jaciii11.html#PremachandraKYTS07,https://doi.org/10.20965/jaciii.2007.p0825 +Hiroshi Sakai,On Two Apriori-Based Rule Generators: Apriori in Prolog and Apriori in SQL.,2018,22,JACIII,3,db/journals/jaciii/jaciii22.html#SakaiSN18,https://doi.org/10.20965/jaciii.2018.p0394 +Makoto Fujii,A Rule Discovery by Fuzzy Classifier System Utilizing Symbolic Information.,2000,4,JACIII,1,db/journals/jaciii/jaciii4.html#FujiiF00,https://doi.org/10.20965/jaciii.2000.p0024 +Jingjing Wang,Local Character Tensors for 3D Registration Method on Free-View Datasets.,2007,11,JACIII,7,db/journals/jaciii/jaciii11.html#WangDHNH07,https://doi.org/10.20965/jaciii.2007.p0848 +Che-Hung Lin,Fuzzy Inference Based Vehicle to Vehicle Network Connectivity Model to Support Optimization Routing Protocol for Vehicular Ad-Hoc Network (VANET).,2014,18,JACIII,1,db/journals/jaciii/jaciii18.html#LinDH14,https://doi.org/10.20965/jaciii.2014.p0009 +Masayuki Otani,Improving Recovery Capability of Multiple Robots in Different Scale Structure Assembly.,2011,15,JACIII,8,db/journals/jaciii/jaciii15.html#OtaniHST11,https://doi.org/10.20965/jaciii.2011.p1186 +Michiharu Maeda,Parallel Learning Model and Topological Measurement for Self-Organizing Maps.,2007,11,JACIII,3,db/journals/jaciii/jaciii11.html#MaedaMS07,https://doi.org/10.20965/jaciii.2007.p0327 +Bálint Tóth,Optimizing HMM Speech Synthesis for Low-Resource Devices.,2012,16,JACIII,2,db/journals/jaciii/jaciii16.html#TothN12,https://doi.org/10.20965/jaciii.2012.p0327 +Barna Reskó,Cognitive Informatics Model for Non-Overlapped Image Filtering Based on the Optical Aberrations of the Eye.,2009,13,JACIII,1,db/journals/jaciii/jaciii13.html#ReskoAB09,https://doi.org/10.20965/jaciii.2009.p0003 +Chie Akita,Natural Language Questions and Answers for RDF Information Resources.,2010,14,JACIII,4,db/journals/jaciii/jaciii14.html#AkitaMK10,https://doi.org/10.20965/jaciii.2010.p0384 +Manabu Serata,Designing Image Retrieval System with the Concept of Visual Keys.,2006,10,JACIII,2,db/journals/jaciii/jaciii10.html#SerataHH06,https://doi.org/10.20965/jaciii.2006.p0136 +Yasunori Shiono,Drawing Algorithm for Fuzzy Graphs Using the Partition Tree.,2012,16,JACIII,5,db/journals/jaciii/jaciii16.html#ShionoKUT12,https://doi.org/10.20965/jaciii.2012.p0641 +Isamu Kajitani,Issues on Assistive Products from Developments to Social Acceptance: A Literature Review.,2017,21,JACIII,1,db/journals/jaciii/jaciii21.html#Kajitani17,https://doi.org/10.20965/jaciii.2017.p0125 +Shuai Chen,Chaotic Music Generation System Using Music Conductor Gesture.,2013,17,JACIII,2,db/journals/jaciii/jaciii17.html#ChenMT13,https://doi.org/10.20965/jaciii.2013.p0194 +Masaru Teranishi,Neuro-Classification of Currency Fatigue Levels Based on Acoustic Cepstrum Patterns.,2000,4,JACIII,1,db/journals/jaciii/jaciii4.html#TeranishiOK00,https://doi.org/10.20965/jaciii.2000.p0018 +Myung-Geun Chun,A Fuzzy Rule Extraction Method for ANFIS Using CFCM and Fuzzy Equalization.,2000,4,JACIII,5,db/journals/jaciii/jaciii4.html#ChunKRP00,https://doi.org/10.20965/jaciii.2000.p0355 +Teréz Anna Várkonyi,Improved Stabilization for Robust Fixed Point Transformations-Based Controllers.,2013,17,JACIII,3,db/journals/jaciii/jaciii17.html#VarkonyiTR13,https://doi.org/10.20965/jaciii.2013.p0418 +Zhenlei Wang,Analysis of Influence Factors of Non-Performing Loans and Path Based on the Dynamic Control Theory.,2017,21,JACIII,6,db/journals/jaciii/jaciii21.html#WangQ17a,https://doi.org/10.20965/jaciii.2017.p1087 +László Kovács,Compound Distance Function for Similarity Measurement Between Fuzzy Sets.,2011,15,JACIII,3,db/journals/jaciii/jaciii15.html#Kovacs11,https://doi.org/10.20965/jaciii.2011.p0299 +Sun-Moon Jo,An Efficient Authorization Mechanism for Secure XML Sources on the Web.,2006,10,JACIII,5,db/journals/jaciii/jaciii10.html#JoY06,https://doi.org/10.20965/jaciii.2006.p0721 +Yoshiyuki Matsumoto,Knowledge Acquisition from Rough Sets Using Merged Decision Rules.,2018,22,JACIII,3,db/journals/jaciii/jaciii22.html#MatsumotoW18,https://doi.org/10.20965/jaciii.2018.p0404 +Gang Huang,Analysis of Control Method for Magnetic Bearing Systems.,2017,21,JACIII,3,db/journals/jaciii/jaciii21.html#HuangYSCZ17,https://doi.org/10.20965/jaciii.2017.p0527 +Jiun-Yaw Wang,Generalized Predictive Control in Flying Shear Equipment.,2007,11,JACIII,9,db/journals/jaciii/jaciii11.html#WangCS07,https://doi.org/10.20965/jaciii.2007.p1144 +Bing Xu,Coordination of Monetary and Exchange Rate Policy in China: Market Interest Rate Approach.,2015,19,JACIII,3,db/journals/jaciii/jaciii19.html#XuHH15,https://doi.org/10.20965/jaciii.2015.p0456 +Kanako Onishi,Information Enhancement on a Focused Object Using Linked Data.,2012,16,JACIII,1,db/journals/jaciii/jaciii16.html#OnishiK12,https://doi.org/10.20965/jaciii.2012.p0004 +Weiwei Du,Unsupervised and Semi-Supervised Graph-Spectral Algorithms for Robust Extraction of Arbitrarily Shaped Fuzzy Clusters.,2007,11,JACIII,6,db/journals/jaciii/jaciii11.html#DuU07,https://doi.org/10.20965/jaciii.2007.p0554 +Yuanyuan Chen,Anisotropic Sampling Shape of White Matter Microstructure Cannot Cheat Diffusional Kurtosis.,2016,20,JACIII,4,db/journals/jaciii/jaciii20.html#ChenZSLMNQM16,https://doi.org/10.20965/jaciii.2016.p0554 +Yafei Xing,Multi-Order Rules Extraction by Genetic Network Programming with Rule Accumulation and its Application to Stock Trading Problems.,2011,15,JACIII,5,db/journals/jaciii/jaciii15.html#XingMYH11,https://doi.org/10.20965/jaciii.2011.p0515 +Giovanni Pilato,An Innovative Way to Measure the Quality of a Neural Network Without the Use of a Test Set.,2001,5,JACIII,1,db/journals/jaciii/jaciii5.html#PilatoSV01,https://doi.org/10.20965/jaciii.2001.p0031 +Vlaho Kostov,Evaluation of Appropriate Body Placement and Notification Modality of a Wearable Clip-on Notifier Using an Experimental Platform.,2007,11,JACIII,1,db/journals/jaciii/jaciii11.html#KostovNTO07,https://doi.org/10.20965/jaciii.2007.p0111 +Seiichi Ikeda,Kernel Canonical Discriminant Analysis Based on Variable Selection.,2009,13,JACIII,4,db/journals/jaciii/jaciii13.html#IkedaS09,https://doi.org/10.20965/jaciii.2009.p0416 +Lutao Wang,Genetic Network Programming with Rule Accumulation and its Application to Tile-World Problem.,2009,13,JACIII,5,db/journals/jaciii/jaciii13.html#WangMYEFH09,https://doi.org/10.20965/jaciii.2009.p0551 +Kanji Tanaka,Incremental Loop Closure Verification by Guided Sampling.,2017,21,JACIII,1,db/journals/jaciii/jaciii21.html#Tanaka17,https://doi.org/10.20965/jaciii.2017.p0059 +Pintu Chandra Shill,Optimization of Fuzzy Logic Controller for Trajectory Tracking Using Genetic Algorithm.,2011,15,JACIII,6,db/journals/jaciii/jaciii15.html#ShillAAM11,https://doi.org/10.20965/jaciii.2011.p0639 +Shingo Mabu,No Time Limit and Time Limit Model of Multiple Round Dutch Auction Based on Genetic Network Programming.,2011,15,JACIII,1,db/journals/jaciii/jaciii15.html#MabuYYH11,https://doi.org/10.20965/jaciii.2011.p0003 +Xiao Lin,A Linear Least Square with Duffing Chaotic Detection Designed in Micro-Distance Movement Measurement System.,2016,20,JACIII,2,db/journals/jaciii/jaciii20.html#LinDZ16,https://doi.org/10.20965/jaciii.2016.p0287 +Alexandre Medi,A Two-Phase Complete Algorithm for Multi-Objective Distributed Constraint Optimization.,2014,18,JACIII,4,db/journals/jaciii/jaciii18.html#MediOI14,https://doi.org/10.20965/jaciii.2014.p0573 +Jung-Heum Yon,Dynamic Multidimensional Wavelet Neural Network and Its Application.,2000,4,JACIII,5,db/journals/jaciii/jaciii4.html#YonKSJ00,https://doi.org/10.20965/jaciii.2000.p0336 +Dusan Kocur,Microstatistic Multi-User Detection Receiver.,2004,8,JACIII,5,db/journals/jaciii/jaciii8.html#KocurCM04,https://doi.org/10.20965/jaciii.2004.p0482 +Tiechao Wang,Unnormalized Interval Type-2 TSK Fuzzy Logic System Design Based on Convexity and Sample Data.,2011,15,JACIII,3,db/journals/jaciii/jaciii15.html#WangY11,https://doi.org/10.20965/jaciii.2011.p0345 +Hidekazu Suzuki,Generation Method of Quadrupedal Gait Based on Human Feeling for Animal Type Robot.,2011,15,JACIII,5,db/journals/jaciii/jaciii15.html#SuzukiN11,https://doi.org/10.20965/jaciii.2011.p0598 +Hiroki Yamaguchi,A Method for Using Discounted Utterances in Spontaneous Conversation.,2010,14,JACIII,7,db/journals/jaciii/jaciii14.html#YamaguchiON10,https://doi.org/10.20965/jaciii.2010.p0825 +Muhamad Khairul Ali Hassan,An Ultrasound Technique of Bone Thickness Estimation for Pedicle Screw Insertion.,2014,18,JACIII,4,db/journals/jaciii/jaciii18.html#HassanNKMNK14,https://doi.org/10.20965/jaciii.2014.p0529 +Takuya Okano,Adaptation Method of the Exploration Ratio Based on the Orientation of Equilibrium in Multi-Agent Reinforcement Learning Under Non-Stationary Environments.,2017,21,JACIII,5,db/journals/jaciii/jaciii21.html#OkanoN17,https://doi.org/10.20965/jaciii.2017.p0939 +Takanari Tanabata,Interactive Data Mining for Large-Scale Image Databases Based on Formal Concept Analysis.,2010,14,JACIII,3,db/journals/jaciii/jaciii14.html#TanabataSNB10,https://doi.org/10.20965/jaciii.2010.p0303 +Balázs Benyó,Classification of Time Series Using Singular Values and Wavelet Subband Analysis with ANN and SVM Classifiers.,2006,10,JACIII,4,db/journals/jaciii/jaciii10.html#BenyoSP06,https://doi.org/10.20965/jaciii.2006.p0498 +Jiajun Lu,Gradient-Related Non-Photorealistic Rendering for High Dynamic Range Images.,2013,17,JACIII,4,db/journals/jaciii/jaciii17.html#LuDH13,https://doi.org/10.20965/jaciii.2013.p0628 +Kazuhisa Takemura,A Fuzzy Linear Regression Analysis for Fuzzy Input-Output Data Using the Least Squares Method under Linear Constraints and Its Application to Fuzzy Rating Data.,1999,3,JACIII,1,db/journals/jaciii/jaciii3.html#Takemura99,https://doi.org/10.20965/jaciii.1999.p0036 +Yusuke Kubo,Estimation of Locations of Densely Distributed Subjects Using NMF with Nonpixel Information.,2014,18,JACIII,4,db/journals/jaciii/jaciii18.html#KuboKSN14,https://doi.org/10.20965/jaciii.2014.p0632 +Piotr Jedrzejowicz,An Island-Based Evolution Algorithm for Discrete-Continuous Scheduling with Continuous Resource Discretisation.,2005,9,JACIII,4,db/journals/jaciii/jaciii9.html#JedrzejowiczS05,https://doi.org/10.20965/jaciii.2005.p0368 +Cristina P. Dadula,Fuzzy Logic System for Abnormal Audio Event Detection Using Mel Frequency Cepstral Coefficients.,2017,21,JACIII,2,db/journals/jaciii/jaciii21.html#DadulaD17,https://doi.org/10.20965/jaciii.2017.p0205 +Daisuke Wakatsuki,Development of Web-Based Remote Speech-to-Text Interpretation System captiOnline.,2017,21,JACIII,2,db/journals/jaciii/jaciii21.html#WakatsukiKSKNN17,https://doi.org/10.20965/jaciii.2017.p0310 +Yuchi Kanzawa,Hard and Fuzzy c-Means Clustering with Conditionally Positive Definite Kernel.,2012,16,JACIII,7,db/journals/jaciii/jaciii16.html#KanzawaEM12a,https://doi.org/10.20965/jaciii.2012.p0825 +Kenichi Tamura,Spiral Dynamics Inspired Optimization.,2011,15,JACIII,8,db/journals/jaciii/jaciii15.html#TamuraY11,https://doi.org/10.20965/jaciii.2011.p1116 +Webjørn Rekdalsbakken,Feedback Control of an Inverted Pendulum by Use of Artificial Intelligence.,2007,11,JACIII,9,db/journals/jaciii/jaciii11.html#Rekdalsbakken07,https://doi.org/10.20965/jaciii.2007.p1114 +Keon-Myung Lee,Supervised Learning-Based Feature Selection for Mondrian Paintings Style Authentication.,2012,16,JACIII,7,db/journals/jaciii/jaciii16.html#LeeHLHJL12,https://doi.org/10.20965/jaciii.2012.p0894 +Kanlaya Rattanyu,Emotion Recognition Based on ECG Signals for Service Robots in the Intelligent Space During Daily Life.,2011,15,JACIII,5,db/journals/jaciii/jaciii15.html#RattanyuM11,https://doi.org/10.20965/jaciii.2011.p0582 +Shigeki Nagaya,A Proposal of Stock Price Predictor Using Associated Memory.,2011,15,JACIII,2,db/journals/jaciii/jaciii15.html#NagayaZH11,https://doi.org/10.20965/jaciii.2011.p0145 +Rui Zhang,Pseudospectral Real-Time Optimal Energy Control with Safety Constraints for Heavy-Haul Trains.,2017,21,JACIII,2,db/journals/jaciii/jaciii21.html#ZhangPCLH17,https://doi.org/10.20965/jaciii.2017.p0258 +Hiroaki Yamane,Tag Line Generating System Using Information on the Web.,2013,17,JACIII,2,db/journals/jaciii/jaciii17.html#YamaneH13,https://doi.org/10.20965/jaciii.2013.p0185 +Kosuke Fujita,Majority Rule Using Collaborative P300 by Auditory Stimulation.,2017,21,JACIII,7,db/journals/jaciii/jaciii21.html#FujitaT17,https://doi.org/10.20965/jaciii.2017.p1312 +António Ferrolho,Optimization of Genetic Operators for Scheduling Problems.,2007,11,JACIII,9,db/journals/jaciii/jaciii11.html#FerrolhoC07,https://doi.org/10.20965/jaciii.2007.p1092 +Yuchi Kanzawa,Sequential Cluster Extraction Using Power-Regularized Possibilistic c-Means.,2015,19,JACIII,1,db/journals/jaciii/jaciii19.html#Kanzawa15,https://doi.org/10.20965/jaciii.2015.p0067 +Yukihiro Hamasuna,Fuzzy c-Means Clustering for Data with Clusterwise Tolerance Based on L2- and L1-Regularization.,2011,15,JACIII,1,db/journals/jaciii/jaciii15.html#HamasunaEM11,https://doi.org/10.20965/jaciii.2011.p0068 +Dan Ricinschi,Multiagent Strategic Interaction Based on a Game Theoretical Approach to Polarization Reversal in Ferroelectric Capacitors.,2011,15,JACIII,7,db/journals/jaciii/jaciii15.html#RicinschiT11,https://doi.org/10.20965/jaciii.2011.p0806 +Toshinobu Harada,Analysis of Specifications for Web Screen-Design Using Rough Sets.,2006,10,JACIII,5,db/journals/jaciii/jaciii10.html#HaradaT06,https://doi.org/10.20965/jaciii.2006.p0688 +Jie Ji,Applying Naive Bayes Classifier to Document Clustering.,2010,14,JACIII,6,db/journals/jaciii/jaciii14.html#JiZ10,https://doi.org/10.20965/jaciii.2010.p0624 +Kazuhiro Ohnishi,Atmosphere Understanding for Humans Robots Interaction Based on SVR and Fuzzy Set.,2014,18,JACIII,1,db/journals/jaciii/jaciii18.html#OhnishiDH14,https://doi.org/10.20965/jaciii.2014.p0062 +Kazutoshi Kudo,Neurophysiological and Dynamical Control Principles Underlying Variable and Stereotyped Movement Patterns During Motor Skill Acquisition.,2011,15,JACIII,8,db/journals/jaciii/jaciii15.html#KudoMSKFMYN11,https://doi.org/10.20965/jaciii.2011.p0942 +Jun-ichi Imai,Modeling and Analysis of Genetic Algorithms Based on the Viewpoint of Mixture Systems.,2003,7,JACIII,3,db/journals/jaciii/jaciii7.html#ImaiSK03,https://doi.org/10.20965/jaciii.2003.p0268 +Sirin Suprasongsin,Suitable Aggregation Models Based on Risk Preferences for Supplier Selection and Order Allocation Problem.,2018,22,JACIII,1,db/journals/jaciii/jaciii22.html#SuprasongsinYHC18,https://doi.org/10.20965/jaciii.2018.p0005 +Shingo Mabu,An Explicit Memory Scheme of Genetic Network Programming.,2012,16,JACIII,7,db/journals/jaciii/jaciii16.html#MabuYH12,https://doi.org/10.20965/jaciii.2012.p0851 +Jie Huang,A Survey of Recent Progress in the Study of Distributed High-Order Linear Multi-Agent Coordination.,2014,18,JACIII,1,db/journals/jaciii/jaciii18.html#HuangF0DZ14,https://doi.org/10.20965/jaciii.2014.p0083 +Yuehui Chen,Evolving Basis Function Networks for System Identification.,2001,5,JACIII,4,db/journals/jaciii/jaciii5.html#ChenK01,https://doi.org/10.20965/jaciii.2001.p0229 +Nguyen Chi Thanh,A Similarity Rough Set Model for Document Representation and Document Clustering.,2011,15,JACIII,2,db/journals/jaciii/jaciii15.html#ThanhYU11,https://doi.org/10.20965/jaciii.2011.p0125 +Arman Darvish,Optimal Parameter Setting of Active-Contours Using Differential Evolution and Expert-Segmented Sample Image.,2012,16,JACIII,6,db/journals/jaciii/jaciii16.html#DarvishR12,https://doi.org/10.20965/jaciii.2012.p0677 +José Aguilar-Castro,Intelligent Hybrid System: A Reliability-Based Failure Management Application.,2001,5,JACIII,6,db/journals/jaciii/jaciii5.html#Aguilar-CastroCM01,https://doi.org/10.20965/jaciii.2001.p0307 +Naoto Suzuki,A Pareto Optimal Solution Visualization Method Using an Improved Growing Hierarchical Self-Organizing Maps Based on the Batch Learning.,2016,20,JACIII,5,db/journals/jaciii/jaciii20.html#SuzukiOK16,https://doi.org/10.20965/jaciii.2016.p0691 +Yuzo Takahashi,Induction of Cooperative Behavior Through Exchange of Nonverbal Information.,2011,15,JACIII,7,db/journals/jaciii/jaciii15.html#Takahashi11,https://doi.org/10.20965/jaciii.2011.p0904 +Michiharu Maeda,Reduction Models in Competitive Learning Founded on Distortion Standards.,2008,12,JACIII,3,db/journals/jaciii/jaciii12.html#MaedaSMS08,https://doi.org/10.20965/jaciii.2008.p0314 +Kiyohiko Uehara,Suppression Effect of alpha-Cut Based Inference on Consequence Deviations.,2010,14,JACIII,3,db/journals/jaciii/jaciii14.html#UeharaKH10a,https://doi.org/10.20965/jaciii.2010.p0256 +Tetsuya Murai,Fuzzy Multisets in Granular Hierarchical Structures Generated from Free Monoids.,2015,19,JACIII,1,db/journals/jaciii/jaciii19.html#MuraiMIKA15,https://doi.org/10.20965/jaciii.2015.p0043 +Stefano Ferretti,Intelligent Synchronization for Mirrored Game Servers: A Real Case Study.,2008,12,JACIII,2,db/journals/jaciii/jaciii12.html#FerrettiRP08,https://doi.org/10.20965/jaciii.2008.p0132 +Yuji Fujiki,Interactive 3-D Segmentation of the Frontal Lobe in 3.0T IR-FSPGR MR Images Using Fuzzy Rule-Based ACM.,2003,7,JACIII,2,db/journals/jaciii/jaciii7.html#FujikiKMIKHS03,https://doi.org/10.20965/jaciii.2003.p0189 +Yoichi Hayashi,Learning M-of-N Concepts for Medical Diagnosis Using Neural Networks.,2000,4,JACIII,4,db/journals/jaciii/jaciii4.html#HayashiSY00,https://doi.org/10.20965/jaciii.2000.p0294 +Yuki Nakagawa,Relationship Between Human and Robot in Nonverbal Communication.,2017,21,JACIII,1,db/journals/jaciii/jaciii21.html#NakagawaN17,https://doi.org/10.20965/jaciii.2017.p0020 +Liya Ding,Knowledge-Based Approach in Intelligent Handwritten Form Processing.,1999,3,JACIII,3,db/journals/jaciii/jaciii3.html#DingL99,https://doi.org/10.20965/jaciii.1999.p0193 +Nikola K. Kasabov,Editorial: Self-Organization and Adaptation in Intelligent Systems.,1998,2,JACIII,6,db/journals/jaciii/jaciii2.html#KasabovK98,https://doi.org/10.20965/jaciii.1998.p0177 +Xiaoni Wang,Resource-Aware Clustering Based AODVjr Routing Protocol in the Internet of Things.,2013,17,JACIII,4,db/journals/jaciii/jaciii17.html#Wang13,https://doi.org/10.20965/jaciii.2013.p0622 +Ying-Hao Yu,FPGA-Based Relative Distance Estimation for Indoor Robot Control Using Monocular Digital Camera.,2010,14,JACIII,6,db/journals/jaciii/jaciii14.html#YuVKH10,https://doi.org/10.20965/jaciii.2010.p0714 +Kazuo Tanaka,Editorial: Advanced Computational Intelligence in Control Theory and Applications.,1999,3,JACIII,2,db/journals/jaciii/jaciii3.html#Tanaka99,https://doi.org/10.20965/jaciii.1999.p0067 +Simon X. Yang,An Efficient Neural Network Model for Path Planning of Car-like Robots in Dynamic Environment.,2000,4,JACIII,3,db/journals/jaciii/jaciii4.html#YangM00,https://doi.org/10.20965/jaciii.2000.p0220 +Lungisani Ndlovu,Enhanced Service Discovery Model for Wireless Mesh Networks.,2018,22,JACIII,1,db/journals/jaciii/jaciii22.html#NdlovuKL18,https://doi.org/10.20965/jaciii.2018.p0044 +Koike,SIRMs Connected Fuzzy Inference Model Applied to Process Control - Automatic Tuning Using a Genetic Algorithm Carla Cavalcante.,1999,3,JACIII,4,db/journals/jaciii/jaciii3.html#KoikeH99,https://doi.org/10.20965/jaciii.1999.p0299 +Nobuhiko Yamaguchi,Visualizing States of Time-Series Data by Autoregressive Gaussian Process Dynamical Models.,2017,21,JACIII,5,db/journals/jaciii/jaciii21.html#Yamaguchi17,https://doi.org/10.20965/jaciii.2017.p0825 +DongKyu Sohn,A Global Optimization Method RasID-GA for Neural Network Training.,2008,12,JACIII,1,db/journals/jaciii/jaciii12.html#SohnMSHH08,https://doi.org/10.20965/jaciii.2008.p0085 +Xiaowen Hu,Entrepreneurial Marketing and New Venture Performance: The Mediating Effects of Ambidextrous Innovation.,2017,21,JACIII,6,db/journals/jaciii/jaciii21.html#HuZZ17,https://doi.org/10.20965/jaciii.2017.p1073 +Yoshitaka Sakurai,Acquisition of Knowledge for Gymnastic Bar Action by Active Learning Method.,2003,7,JACIII,1,db/journals/jaciii/jaciii7.html#SakuraiHN03,https://doi.org/10.20965/jaciii.2003.p0010 +Hideaki Kawano,Fuzzy-Clustering-Based Discriminant Method of Multiple Quadric Surfaces for Noisy and Sparse Range Data.,2010,14,JACIII,2,db/journals/jaciii/jaciii14.html#KawanoMI10,https://doi.org/10.20965/jaciii.2010.p0160 +Masato Nagayoshi,Reinforcement Learning Approach for Adaptive Negotiation-Rules Acquisition in AGV Transportation Systems.,2017,21,JACIII,5,db/journals/jaciii/jaciii21.html#NagayoshiEST17,https://doi.org/10.20965/jaciii.2017.p0948 +Noriaki Suetake,High-quality Multi-level Error Diffusion Method Employing Fuzzy Inference.,2003,7,JACIII,2,db/journals/jaciii/jaciii7.html#SuetakeT03,https://doi.org/10.20965/jaciii.2003.p0235 +Yongseon Moon,Implementation of Humanoid Robot Arm Based on SERCOS Network.,2008,12,JACIII,6,db/journals/jaciii/jaciii12.html#MoonKSKB08,https://doi.org/10.20965/jaciii.2008.p0503 +Jinhua She,Design of a New Lower-Limb Rehabilitation Machine.,2017,21,JACIII,3,db/journals/jaciii/jaciii21.html#SheWMHWI17,https://doi.org/10.20965/jaciii.2017.p0409 +Hiroyuki Nakamoto,Shape Classification in Continuous Rotation Manipulation by Universal Robot Hand.,2009,13,JACIII,3,db/journals/jaciii/jaciii13.html#NakamotoKISK09,https://doi.org/10.20965/jaciii.2009.p0178 +Son Kuswadi,Adaptive Fuzzy Control of One Linear Actuator Hopping Robot.,2003,7,JACIII,2,db/journals/jaciii/jaciii7.html#KuswadiSN03,https://doi.org/10.20965/jaciii.2003.p0092 +Hyun Myung,Multiple Lagrange Multiplier Method for Constrained Evolutionary Optimization.,2000,4,JACIII,2,db/journals/jaciii/jaciii4.html#MyungK00,https://doi.org/10.20965/jaciii.2000.p0158 +Hajime Nobuhara,Editorial.,2007,11,JACIII,7,db/journals/jaciii/jaciii11.html#Nobuhara07,https://doi.org/10.20965/jaciii.2007.p0727 +Gerard Ely Faelden,Implementation of Swarm Social Foraging Behavior in Unmanned Aerial Vehicle (UAV) Quadrotor Swarm.,2017,21,JACIII,2,db/journals/jaciii/jaciii21.html#FaeldenVLSDB17,https://doi.org/10.20965/jaciii.2017.p0197 +Jonathan Lee,Integrating Process and Work Breakdown Structure with Design Structure Matrix.,2010,14,JACIII,5,db/journals/jaciii/jaciii14.html#LeeDLLHM10,https://doi.org/10.20965/jaciii.2010.p0512 +Rodrigo S. Jamisola Jr.,Experimental Identification of Manipulator Dynamics Through the Minimization of its Natural Oscillations.,2010,14,JACIII,1,db/journals/jaciii/jaciii14.html#JamisolaD10,https://doi.org/10.20965/jaciii.2010.p0039 +Toshihiro Akamatsu,3D Measurement of a Moving Object Using a Moving Camera Attached with a 6-Axis Sensor.,2014,18,JACIII,5,db/journals/jaciii/jaciii18.html#AkamatsuDH14,https://doi.org/10.20965/jaciii.2014.p0736 +Teddy N. Yap Jr.,Generalized Associative Memory Models: Their Memory Capacities and Potential Application.,2004,8,JACIII,1,db/journals/jaciii/jaciii8.html#YapA04,https://doi.org/10.20965/jaciii.2004.p0056 +Eleanor Clark,Turing Test-Based Evaluation of an Experimental System for Generation of Casual English Sentences from Regular English Input.,2013,17,JACIII,3,db/journals/jaciii/jaciii17.html#ClarkA13,https://doi.org/10.20965/jaciii.2013.p0353 +Takeshi Matsui,Particle Swarm Optimization for Jump Height Maximization of a Serial Link Robot.,2007,11,JACIII,8,db/journals/jaciii/jaciii11.html#MatsuiSUKHK07,https://doi.org/10.20965/jaciii.2007.p0956 +Manabu Chikai,Pilot Study on an Acoustic Measurements System of the Swallowing Function Using an Acoustic-Emissions Microphone.,2017,21,JACIII,2,db/journals/jaciii/jaciii21.html#ChikaiKKSESTI17,https://doi.org/10.20965/jaciii.2017.p0293 +Razi Iqbal,Safe Farming: Development of a Prevention System to Mitigate Vertebrates Crop Raiding.,2018,22,JACIII,3,db/journals/jaciii/jaciii22.html#Iqbal18,https://doi.org/10.20965/jaciii.2018.p0351 +Timo Ahola,Case-Based Reasoning in Web Break Sensitivity Evaluation in a Paper Machine.,2005,9,JACIII,5,db/journals/jaciii/jaciii9.html#AholaL05,https://doi.org/10.20965/jaciii.2005.p0556 +Zhaohui Hu,Adaptive Cruise Control Based on Reinforcement Leaning with Shaping Rewards.,2011,15,JACIII,3,db/journals/jaciii/jaciii15.html#HuZ11,https://doi.org/10.20965/jaciii.2011.p0351 +Agus Zainal Arifin,Use of Fuzzy Neural Network in Diagnosing Postmenopausal Women with Osteoporosis Based on Dental Panoramic Radiographs.,2007,11,JACIII,8,db/journals/jaciii/jaciii11.html#ArifinATNOTKT07,https://doi.org/10.20965/jaciii.2007.p1049 +Hassab Elgawi Osman,Random-TD Function Approximator.,2009,13,JACIII,2,db/journals/jaciii/jaciii13.html#Osman09,https://doi.org/10.20965/jaciii.2009.p0155 +Elisabeth Rakus-Andersson,Complex Control Models with Parametric Families of Fuzzy Constrains in Evaluation of Resort Management System.,2014,18,JACIII,3,db/journals/jaciii/jaciii18.html#Rakus-Andersson14,https://doi.org/10.20965/jaciii.2014.p0271 +Hiroshi Gohma,Hospital Navi ? A New Database for Searching Medical Information?,2012,16,JACIII,1,db/journals/jaciii/jaciii16.html#GohmaAHSS12,https://doi.org/10.20965/jaciii.2012.p0033 +Sung-Bae Cho,Application of Choquet Integral to Efficient Aggregation of Neural Networks.,2000,4,JACIII,1,db/journals/jaciii/jaciii4.html#Cho00,https://doi.org/10.20965/jaciii.2000.p0052 +Fujiki Morii,Clustering Based on Multiple Criteria for LVQ and K-Means Algorithm.,2009,13,JACIII,4,db/journals/jaciii/jaciii13.html#MoriiK09,https://doi.org/10.20965/jaciii.2009.p0360 +Mu-Chun Su,Application of SOM-Based Fuzzy Systems in Voltage Security Margin Estimation.,2001,5,JACIII,3,db/journals/jaciii/jaciii5.html#SuLTLC01,https://doi.org/10.20965/jaciii.2001.p0157 +Go Tanaka,Image Enhancement Based on Nonlinear Smoothing and Sharpening for Noisy Images.,2010,14,JACIII,2,db/journals/jaciii/jaciii14.html#TanakaSU10a,https://doi.org/10.20965/jaciii.2010.p0200 +Jianping Jing,Printing Pressure State Inspection System Based on Fuzzy Inference.,2008,12,JACIII,1,db/journals/jaciii/jaciii12.html#JingDHTYH08,https://doi.org/10.20965/jaciii.2008.p0048 +László Horváth,Supporting Lifecycle Management of Product Data by Organized Descriptions and Behavior Definitions of Engineering Objects.,2007,11,JACIII,9,db/journals/jaciii/jaciii11.html#Horvath07,https://doi.org/10.20965/jaciii.2007.p1107 +Tanzila Saba,Neural Approach to Predict Flow Discharge in River Chenab Pakistan.,2016,20,JACIII,5,db/journals/jaciii/jaciii20.html#Saba16,https://doi.org/10.20965/jaciii.2016.p0730 +Tzung-Pei Hong,Fuzzy Flexible-Flow Shops at Two Machine Centers.,1998,2,JACIII,4,db/journals/jaciii/jaciii2.html#HongC98,https://doi.org/10.20965/jaciii.1998.p0142 +James J. Buckley,Solving Fuzzy Problems in Operations Research.,1999,3,JACIII,3,db/journals/jaciii/jaciii3.html#BuckleyFH99a,https://doi.org/10.20965/jaciii.1999.p0171 +Khaled A. Abuhasel,Reappraising the Impact of Environmental Stresses on the Useful Life of Electronic Devices.,2016,20,JACIII,4,db/journals/jaciii/jaciii20.html#AbuhaselIA16,https://doi.org/10.20965/jaciii.2016.p0640 +Satoru Odo,Pointing Device Based on Estimation of Trajectory and Shape of a Human Hand in a Monocular Image Sequence.,2004,8,JACIII,2,db/journals/jaciii/jaciii8.html#OdoH04,https://doi.org/10.20965/jaciii.2004.p0140 +Vicenç Torra,Editorial.,2007,11,JACIII,1,db/journals/jaciii/jaciii11.html#TorraNM07,https://doi.org/10.20965/jaciii.2007.p0003 +Yoshinori Arai,Fuzzy few-Nearest Neighbor Method with a Few Samples for Personal Authentication.,2010,14,JACIII,2,db/journals/jaciii/jaciii14.html#AraiLISHDH10,https://doi.org/10.20965/jaciii.2010.p0167 +Yi-Gon Kim,Design of Diagnosis System for Insulation Degradation by Using Neurofuzzy Model.,2000,4,JACIII,5,db/journals/jaciii/jaciii4.html#KimJB00,https://doi.org/10.20965/jaciii.2000.p0368 +Qi Shi,Motion Control of a Wheeled Inverted Pendulum Using Equivalent-Input-Disturbance Approach.,2015,19,JACIII,2,db/journals/jaciii/jaciii19.html#ShiFSIO15,https://doi.org/10.20965/jaciii.2015.p0293 +László Nádai,Modeling Photon Counting Experiments using Fuzzy Logic Controller.,2002,6,JACIII,2,db/journals/jaciii/jaciii6.html#Nadai02,https://doi.org/10.20965/jaciii.2002.p0072 +Norifumi Watanabe,Neural Network Model for Word Sense Disambiguation Using Up/Down State and Morphoelectrotonic Transform.,2007,11,JACIII,7,db/journals/jaciii/jaciii11.html#WatanabeI07,https://doi.org/10.20965/jaciii.2007.p0780 +Hiroyuki Tsuji,Extracting Objects Using Contour Evolutions in Edge-Based Object Tracking.,2006,10,JACIII,3,db/journals/jaciii/jaciii10.html#TsujiTTN06,https://doi.org/10.20965/jaciii.2006.p0362 +Jinglu Hu,Probabilistic Learning-Network-Based Robust Control Scheme for Nonlinear Systems.,1999,3,JACIII,6,db/journals/jaciii/jaciii3.html#HuHMJM99,https://doi.org/10.20965/jaciii.1999.p0485 +Rodel D. Dosano,A Novel Approach for Determining Distributed Generations Penetration Level Using Least Square Minimization (LSM) Curve Fitting.,2016,20,JACIII,6,db/journals/jaciii/jaciii20.html#DosanoMGCR16,https://doi.org/10.20965/jaciii.2016.p1004 +Masaya Yoshikawa,Hierarchical Parallel Placement Using a Genetic Algorithm for Realizing Low Power Consumption.,2007,11,JACIII,2,db/journals/jaciii/jaciii11.html#YoshikawaT07,https://doi.org/10.20965/jaciii.2007.p0168 +Laila Taher,QoS Constrains Model: Establishing QoS Association for Ontology-Based Web Service Selection Mechanism.,2006,10,JACIII,5,db/journals/jaciii/jaciii10.html#TaherBK06,https://doi.org/10.20965/jaciii.2006.p0705 +Kazuyoshi Wada,Psychological and Social Effects of Robot-assisted Activity in the Elderly Robot-assisted at Health Service Facilities.,2003,7,JACIII,2,db/journals/jaciii/jaciii7.html#WadaSST03,https://doi.org/10.20965/jaciii.2003.p0130 +Kei Kitajima,Fuzzified Even-Sized Clustering Based on Optimization.,2018,22,JACIII,4,db/journals/jaciii/jaciii22.html#KitajimaEH18,https://doi.org/10.20965/jaciii.2018.p0537 +Shunichi Hattori,Recommender System Employing Personal-Value-Based User Model.,2014,18,JACIII,2,db/journals/jaciii/jaciii18.html#HattoriT14,https://doi.org/10.20965/jaciii.2014.p0157 +Tomomi Hashimoto,Development of Foot Gait Simulator for Presenting Environment to Each User.,2011,15,JACIII,5,db/journals/jaciii/jaciii15.html#HashimotoTHAY11,https://doi.org/10.20965/jaciii.2011.p0554 +Wai-keung Fung,Feature Extraction of Robot Sensor Data Using Factor Analysis for Behavior Learning.,2004,8,JACIII,3,db/journals/jaciii/jaciii8.html#FungL04,https://doi.org/10.20965/jaciii.2004.p0284 +Pratit Santiprabhob,Editorial: Special Issue on Selected Papers from InTech'03.,2004,8,JACIII,6,db/journals/jaciii/jaciii8.html#SantiprabhobTA04,https://doi.org/10.20965/jaciii.2004.p0565 +Takeo Ohnishi,Velocity Control Strategy for a Spider-Robot Based on Autonomous Walking Form Transition.,2006,10,JACIII,1,db/journals/jaciii/jaciii10.html#OhnishiA06,https://doi.org/10.20965/jaciii.2006.p0060 +József K. Tar,Simultaneous Optimization of the External Loop Parameters in an Adaptive Control Based on the Co-operation of Uniform Procedures.,2000,4,JACIII,4,db/journals/jaciii/jaciii4.html#TarRMB00,https://doi.org/10.20965/jaciii.2000.p0279 +Luca Szegletes,Applications of Modern HCIs in Adaptive Mobile Learning.,2014,18,JACIII,3,db/journals/jaciii/jaciii18.html#SzegletesF14,https://doi.org/10.20965/jaciii.2014.p0311 +István á. Harmati,Semi-stratified Motion Planning of Multi-agent Manipulation.,2001,5,JACIII,5,db/journals/jaciii/jaciii5.html#HarmatiLP01,https://doi.org/10.20965/jaciii.2001.p0248 +Yaoyi Xi,Topic Evolution Analysis Based on Cluster Topic Model.,2016,20,JACIII,1,db/journals/jaciii/jaciii20.html#XiCLT16,https://doi.org/10.20965/jaciii.2016.p0066 +Barnabás Bede,Max-Product Shepard Approximation Operators.,2006,10,JACIII,4,db/journals/jaciii/jaciii10.html#BedeNFH06,https://doi.org/10.20965/jaciii.2006.p0494 +Jingpei Dan,Mean Local Trend Error and Fuzzy-Inference-Based Multicriteria Evaluation for Supply Chain Demand Forecasting.,2011,15,JACIII,2,db/journals/jaciii/jaciii15.html#DanXDH11,https://doi.org/10.20965/jaciii.2011.p0134 +Yu-Lan Huang,Mobile Game-Based Learning with a Mobile App: Motivational Effects and Learning Performance.,2017,21,JACIII,6,db/journals/jaciii/jaciii21.html#HuangCW17,https://doi.org/10.20965/jaciii.2017.p0963 +Hiroyuki Kambara,Learning Strategy in Time-to-Contact Estimation of Falling Objects.,2011,15,JACIII,8,db/journals/jaciii/jaciii15.html#KambaraOK11,https://doi.org/10.20965/jaciii.2011.p0972 +Hidetoshi Miyao,Printed Japanese Character Recognition Using Multiple Commercial OCRs.,2004,8,JACIII,2,db/journals/jaciii/jaciii8.html#MiyaoNTTH04,https://doi.org/10.20965/jaciii.2004.p0200 +Kazuhiro Tanaka,PHOTMOSPHERE: A System for Amplifying Connection Between Memory and Record.,2013,17,JACIII,4,db/journals/jaciii/jaciii17.html#TanakaM13,https://doi.org/10.20965/jaciii.2013.p0581 +Toshiaki Murofushi,Semiatoms in Choquet Integral Models of Multiattribute Decision Making.,2005,9,JACIII,5,db/journals/jaciii/jaciii9.html#Murofushi05a,https://doi.org/10.20965/jaciii.2005.p0477 +Yan Shi,Self-Tuning for Fuzzy Rule Generation Based upon Fuzzy Singleton-type Reasoning Method.,1999,3,JACIII,3,db/journals/jaciii/jaciii3.html#ShiM99,https://doi.org/10.20965/jaciii.1999.p0200 +Mayuka F. Kawaguchi,An Algebraic Aspect of Correspondences Between Implicational Fragment Logics and Fuzzy Logics.,2015,19,JACIII,6,db/journals/jaciii/jaciii19.html#KawaguchiK15,https://doi.org/10.20965/jaciii.2015.p0861 +Jui-Yu Wu,Real-Coded Genetic Algorithm for Solving Generalized Polynomial Programming Problems.,2007,11,JACIII,4,db/journals/jaciii/jaciii11.html#WuC07,https://doi.org/10.20965/jaciii.2007.p0358 +Hsin-Yuan Chen,Hybrid GPS/GSM Positioning Systems Design with Fuzzy Logic.,2008,12,JACIII,3,db/journals/jaciii/jaciii12.html#ChenL08,https://doi.org/10.20965/jaciii.2008.p0254 +Chi-Yo Huang,Using Hybrid MCDM Methods to Assess Fuel Cell Technology for the Next Generation of Hybrid Power Automobiles.,2011,15,JACIII,4,db/journals/jaciii/jaciii15.html#HuangHT11,https://doi.org/10.20965/jaciii.2011.p0406 +Alexandra M. S. F. Galhano,Kinematic Robustness of Manipulating Systems.,2002,6,JACIII,2,db/journals/jaciii/jaciii6.html#GalhanoM02,https://doi.org/10.20965/jaciii.2002.p0093 +Junzo Watada,Using Brainwaves and Eye Tracking to Determine Attention Levels for Auto-Lighting Systems.,2015,19,JACIII,5,db/journals/jaciii/jaciii19.html#WatadaHK15,https://doi.org/10.20965/jaciii.2015.p0611 +László Horváth,Human Intent Description in Environment Adaptive Product Model Objects.,2005,9,JACIII,4,db/journals/jaciii/jaciii9.html#HorvathR05,https://doi.org/10.20965/jaciii.2005.p0415 +Seiichi Matsushita,A New Framework for Fuzzy Modeling Using Genetic Algorithm.,1999,3,JACIII,5,db/journals/jaciii/jaciii3.html#MatsushitaFT99,https://doi.org/10.20965/jaciii.1999.p0368 +Xiaowen Hu,Understanding the Influence of Interest Rate Liberalization on Economic Structure and Monetary Policy.,2015,19,JACIII,4,db/journals/jaciii/jaciii19.html#HuXZ15,https://doi.org/10.20965/jaciii.2015.p0500 +Worawat Choensawat,Financial Institution Failure Prediction Using Adaptive Neuro-Fuzzy Inference Systems: Evidence from the East Asian Economic Crisis.,2013,17,JACIII,1,db/journals/jaciii/jaciii17.html#ChoensawatP13,https://doi.org/10.20965/jaciii.2013.p0083 +Cheng Chang,Information Presentation Support of Car Robotics Simulator System Based on Humatronics.,2011,15,JACIII,3,db/journals/jaciii/jaciii15.html#ChangOYS11,https://doi.org/10.20965/jaciii.2011.p0389 +Shunsuke Akiguchi,Development of Automatic Pattern Generation System Based on User Impressions.,2010,14,JACIII,7,db/journals/jaciii/jaciii14.html#Akiguchi10,https://doi.org/10.20965/jaciii.2010.p0776 +Yoshiaki Sakakura,Maintaining Individual Diversity by Fuzzy c -Means Selection.,2007,11,JACIII,8,db/journals/jaciii/jaciii11.html#SakakuraTHK07,https://doi.org/10.20965/jaciii.2007.p0884 +Narendra Puppala,Evolving Cooperative Groups Using Shared Memory.,1999,3,JACIII,6,db/journals/jaciii/jaciii3.html#PuppalaS99,https://doi.org/10.20965/jaciii.1999.p0457 +Kalle Saastamoinen,Fuzzy Logic and Differential Evolution Based Expert System for Defining Top Athlete's Aerobic and Anaerobic Thresholds.,2005,9,JACIII,5,db/journals/jaciii/jaciii9.html#SaastamoinenK05,https://doi.org/10.20965/jaciii.2005.p0534 +Hitoshi Yano,Interactive Decision Making for Fuzzy Random Multiobjective Linear Programming Problems with Variance Covariance Matrices Through Fractile Optimization.,2014,18,JACIII,3,db/journals/jaciii/jaciii18.html#Yano14,https://doi.org/10.20965/jaciii.2014.p0383 +Shibin Zhao,Editorial.,2008,12,JACIII,1,db/journals/jaciii/jaciii12.html#ZhaoDY08,https://doi.org/10.20965/jaciii.2008.p0003 +Lue-Feng Chen,Multi-Robot Behavior Adaptation to Humans' Intention in Human-Robot Interaction Using Information-Driven Fuzzy Friend-Q Learning.,2015,19,JACIII,2,db/journals/jaciii/jaciii19.html#ChenL0DH15,https://doi.org/10.20965/jaciii.2015.p0173 +Rafal Rzepka,Common Sense from the Web? Naturalness of Everyday Knowledge Retrieved from WWW.,2006,10,JACIII,6,db/journals/jaciii/jaciii10.html#RzepkaGA06,https://doi.org/10.20965/jaciii.2006.p0868 +Manabu Nii,Improving Classification Performance of Nursing-Care Text Classification System by Using GA-Based Term Selection.,2010,14,JACIII,2,db/journals/jaciii/jaciii14.html#NiiYTUS10,https://doi.org/10.20965/jaciii.2010.p0142 +Pakizar Shamoi,FHSI: Toward More Human-Consistent Color Representation.,2016,20,JACIII,3,db/journals/jaciii/jaciii20.html#ShamoiIK16,https://doi.org/10.20965/jaciii.2016.p0393 +Michiharu Maeda,Adaptive Vector Quantization with Creation and Reduction Grounded in the Equinumber Principle.,2005,9,JACIII,6,db/journals/jaciii/jaciii9.html#MaedaSM05,https://doi.org/10.20965/jaciii.2005.p0599 +Shivendra Kumar,Performance Analysis of Container Unloading Operations at the Port of Suva Using a Simplified Analytical Model (SAM).,2008,12,JACIII,4,db/journals/jaciii/jaciii12.html#KumarV08,https://doi.org/10.20965/jaciii.2008.p0355 +Angel López-Gótnez,Fuzzification of Kolmogorov Theorem.,2001,5,JACIII,2,db/journals/jaciii/jaciii5.html#Lopez-GotnezH01,https://doi.org/10.20965/jaciii.2001.p0099 +Michinori Nakata,Generalizing Possibility-Based Fuzzy Relational Models.,2006,10,JACIII,5,db/journals/jaciii/jaciii10.html#Nakata06,https://doi.org/10.20965/jaciii.2006.p0633 +Shinji Chiba,Estimation of Protein Function Using Optimized Finite State Automaton Based on Accumulated Amino Acid Residue Scores.,2007,11,JACIII,9,db/journals/jaciii/jaciii11.html#ChibaS07,https://doi.org/10.20965/jaciii.2007.p1129 +Konstantinos N. Genikomsakis,Effective Cycle Time: A Real World Balancing Index for Paced Assembly Lines.,2010,14,JACIII,5,db/journals/jaciii/jaciii14.html#GenikomsakisT10a,https://doi.org/10.20965/jaciii.2010.p0431 +Tim Whitfort,Evolutionary and Heuristic Approaches for the Selection of Neural Network Architectures and Parameters1.,1998,2,JACIII,6,db/journals/jaciii/jaciii2.html#WhitfortMCM98,https://doi.org/10.20965/jaciii.1998.p0214 +Yukihiro Hamasuna,On Cluster Extraction from Relational Data Using L1-Regularized Possibilistic Assignment Prototype Algorithm.,2015,19,JACIII,1,db/journals/jaciii/jaciii19.html#HamasunaE15,https://doi.org/10.20965/jaciii.2015.p0023 +Feng Zhou,Formation Control with Event-Triggered Strategy for Multi-Agent Systems.,2014,18,JACIII,1,db/journals/jaciii/jaciii18.html#ZhouHLL14,https://doi.org/10.20965/jaciii.2014.p0071 +Ya-Fen Ye,Wavelet Lp-Norm Support Vector Regression with Feature Selection.,2015,19,JACIII,3,db/journals/jaciii/jaciii19.html#YeSL15,https://doi.org/10.20965/jaciii.2015.p0407 +Dekun Gao,Improvement of Eye Gesture Interface.,2013,17,JACIII,6,db/journals/jaciii/jaciii17.html#GaoIMM13,https://doi.org/10.20965/jaciii.2013.p0843 +Michiro Kondo,Topological Structures of Rough Sets Induced by Equivalence Relations.,2006,10,JACIII,5,db/journals/jaciii/jaciii10.html#KondoD06,https://doi.org/10.20965/jaciii.2006.p0621 +Takahiro Yamanoi,Difference in Areas of the Brain for Fuzzy and Crisp Calculation.,2002,6,JACIII,1,db/journals/jaciii/jaciii6.html#YamanoiSSS02,https://doi.org/10.20965/jaciii.2002.p0051 +Tomoharu Nakashima,Constructing Cost-Sensitive Fuzzy-Rule-Based Systems for Pattern Classification Problems.,2007,11,JACIII,6,db/journals/jaciii/jaciii11.html#NakashimaYISDZ07,https://doi.org/10.20965/jaciii.2007.p0546 +Harsh Saini,Protein Structural Class Prediction via k-Separated Bigrams Using Position Specific Scoring Matrix.,2014,18,JACIII,4,db/journals/jaciii/jaciii18.html#SainiRSLDALBP14,https://doi.org/10.20965/jaciii.2014.p0474 +Chrysostomos D. Stylios,Fuzzy Cognitive Map Approach to Process Control Systems Chrysostomos.,1999,3,JACIII,5,db/journals/jaciii/jaciii3.html#StyliosGG99,https://doi.org/10.20965/jaciii.1999.p0409 +Ryan Rhay P. Vicerra,Swarm Robot System for Underwater Communication Network.,2014,18,JACIII,5,db/journals/jaciii/jaciii18.html#VicerraDBL14,https://doi.org/10.20965/jaciii.2014.p0769 +Mamoru Minami,Avoidance Ability of Redundant Mobile Manipulators During Hand Trajectory Tracking.,2007,11,JACIII,2,db/journals/jaciii/jaciii11.html#MinamiTM07,https://doi.org/10.20965/jaciii.2007.p0135 +Kazuhisa Takemura,Fuzzy Least Squares Regression Analysis for Social Judgment Study.,2005,9,JACIII,5,db/journals/jaciii/jaciii9.html#Takemura05,https://doi.org/10.20965/jaciii.2005.p0461 +Jia Lu,A Histogram Modification Approach for Analysis of Membership Function Relocation in Fuzzy Logic Control.,2006,10,JACIII,6,db/journals/jaciii/jaciii10.html#LuH06,https://doi.org/10.20965/jaciii.2006.p0913 +Kiril Tenekedjiev,Modified Axiomatic Basis of Subjective Probability.,2005,9,JACIII,1,db/journals/jaciii/jaciii9.html#TenekedjievKN05,https://doi.org/10.20965/jaciii.2005.p0061 +Arina Kawano,Performance Comparison of Collaborative Filtering with k-Anonymized Data by Fuzzy k-Member Clustering.,2014,18,JACIII,2,db/journals/jaciii/jaciii18.html#KawanoHNI14,https://doi.org/10.20965/jaciii.2014.p0239 +Béla Pátkai,Editorial.,2007,11,JACIII,9,db/journals/jaciii/jaciii11.html#PatkaiMR07,https://doi.org/10.20965/jaciii.2007.p1061 +Joseph D. Lakey,Divergence-Free Multiwavelets on the Half Plane.,2013,2,Axioms,2,db/journals/axioms/axioms2.html#LakeyN13,https://doi.org/10.3390/axioms2020100 +Gary E. Horne,Summary of Data Farming.,2016,5,Axioms,1,db/journals/axioms/axioms5.html#HorneS16,https://doi.org/10.3390/axioms5010008 +Humberto Bustince,Introduction to Special Issue: New Trends in Fuzzy Set Theory and Related Items.,2018,7,Axioms,2,db/journals/axioms/axioms7.html#BustinceFI18,https://doi.org/10.3390/axioms7020037 +Kevin H. Knuth,Foundations of Inference.,2012,1,Axioms,1,db/journals/axioms/axioms1.html#KnuthS12,https://doi.org/10.3390/axioms1010038 +Miao Jin,Scalable and Fully Distributed Localization in Large-Scale Sensor Networks.,2017,6,Axioms,2,db/journals/axioms/axioms6.html#JinXWG17,https://doi.org/10.3390/axioms6020015 +Igor Protasov,Varieties of Coarse Spaces.,2018,7,Axioms,2,db/journals/axioms/axioms7.html#Protasov18,https://doi.org/10.3390/axioms7020032 +Bryan Hosack,Increasing Personal Value Congruence in Computerized Decision Support Using System Feedback.,2014,3,Axioms,1,db/journals/axioms/axioms3.html#HosackP14,https://doi.org/10.3390/axioms3010084 +Miguel Couceiro,Discrete Integrals Based on Comonotonic Modularity.,2013,2,Axioms,3,db/journals/axioms/axioms2.html#CouceiroM13,https://doi.org/10.3390/axioms2030390 +Seema S. Nair,An Overview of Generalized Gamma Mittag-Leffler Model and Its Applications.,2015,4,Axioms,3,db/journals/axioms/axioms4.html#Nair15,https://doi.org/10.3390/axioms4030365 +Muhammad Akram,Multi-Attribute Decision-Making Method Based on Neutrosophic Soft Rough Information.,2018,7,Axioms,1,db/journals/axioms/axioms7.html#AkramSS18,https://doi.org/10.3390/axioms7010019 +Kalyan Mondal,NN-Harmonic Mean Aggregation Operators-Based MCGDM Strategy in a Neutrosophic Number Environment.,2018,7,Axioms,1,db/journals/axioms/axioms7.html#MondalPGS18,https://doi.org/10.3390/axioms7010012 +Hsien-Chung Wu,Pre-Metric Spaces Along with Different Types of Triangle Inequalities.,2018,7,Axioms,2,db/journals/axioms/axioms7.html#Wu18,https://doi.org/10.3390/axioms7020034 +Simon D. Lentner,Factorization of Graded Traces on Nichols Algebras.,2017,6,Axioms,4,db/journals/axioms/axioms6.html#LentnerL17,https://doi.org/10.3390/axioms6040032 +Luc Florack,Canonical Coordinates for Retino-Cortical Magnification.,2014,3,Axioms,1,db/journals/axioms/axioms3.html#Florack14,https://doi.org/10.3390/axioms3010070 +Gary E. Horne,Data Farming Process and Initial Network Analysis Capabilities.,2016,5,Axioms,1,db/journals/axioms/axioms5.html#HorneM16,https://doi.org/10.3390/axioms5010004 +Thomas Ernst,Convergence Aspects for Generalizations of q-Hypergeometric Functions.,2015,4,Axioms,2,db/journals/axioms/axioms4.html#Ernst15,https://doi.org/10.3390/axioms4020134 +Olivier Brunet,Orthogonality and Dimensionality.,2013,2,Axioms,4,db/journals/axioms/axioms2.html#Brunet13,https://doi.org/10.3390/axioms2040477 +Robert G. Underwood,On the Content Bound for Real Quadratic Field Extensions.,2013,2,Axioms,1,db/journals/axioms/axioms2.html#Underwood13,https://doi.org/10.3390/axioms2010001 +José A. González Campos,A Method for Ordering of LR-Type Fuzzy Numbers: An Important Decision Criteria.,2016,5,Axioms,3,db/journals/axioms/axioms5.html#CamposP16,https://doi.org/10.3390/axioms5030022 +Krzysztof Piasecki,Revision of the Kosiński's Theory of Ordered Fuzzy Numbers.,2018,7,Axioms,1,db/journals/axioms/axioms7.html#Piasecki18,https://doi.org/10.3390/axioms7010016 +Bartosz Zielinski 0002,Weak n-Ary Relational Products in Allegories.,2014,3,Axioms,4,db/journals/axioms/axioms3.html#0002M14,https://doi.org/10.3390/axioms3040342 +Su Xia,Deterministic Greedy Routing with Guaranteed Delivery in 3D Wireless Sensor Networks.,2014,3,Axioms,2,db/journals/axioms/axioms3.html#XiaYWJG14,https://doi.org/10.3390/axioms3020177 +Dilip Kumar,Some Aspects of Extended Kinetic Equation.,2015,4,Axioms,3,db/journals/axioms/axioms4.html#Kumar15,https://doi.org/10.3390/axioms4030412 +Jin Liang,Mild Solutions to the Cauchy Problem for Some Fractional Differential Equations with Delay.,2017,6,Axioms,4,db/journals/axioms/axioms6.html#LiangM17,https://doi.org/10.3390/axioms6040030 +Evgenii Proutorov,Orientation Asymmetric Surface Model for Membranes: Finsler Geometry Modeling.,2017,6,Axioms,2,db/journals/axioms/axioms6.html#ProutorovK17,https://doi.org/10.3390/axioms6020010 +Damian Niwinski,Contribution of Warsaw Logicians to Computational Logic.,2016,5,Axioms,2,db/journals/axioms/axioms5.html#Niwinski16,https://doi.org/10.3390/axioms5020016 +Lydia Außenhofer,Locally Quasi-Convex Compatible Topologies on a Topological Group.,2015,4,Axioms,4,db/journals/axioms/axioms4.html#AussenhoferDP15,https://doi.org/10.3390/axioms4040436 +Yoshihiro Hamaya,Almost Periodic Solutions of Nonlinear Volterra Difference Equations with Unbounded Delay.,2015,4,Axioms,3,db/journals/axioms/axioms4.html#HamayaIS15,https://doi.org/10.3390/axioms4030345 +Kenichi Shimizu,Frobenius-Schur Indicator for Categories with Duality.,2012,1,Axioms,3,db/journals/axioms/axioms1.html#Shimizu12,https://doi.org/10.3390/axioms1030324 +Hacer Ozden,Generalized q-Stirling Numbers and Their Interpolation Functions.,2013,2,Axioms,1,db/journals/axioms/axioms2.html#OzdenCS13,https://doi.org/10.3390/axioms2010010 +Bartosz Zielinski 0002,Modalities for an Allegorical Conceptual Data Model.,2014,3,Axioms,2,db/journals/axioms/axioms3.html#0002MS14,https://doi.org/10.3390/axioms3020260 +John E. Herr,Fourier Series for Singular Measures.,2017,6,Axioms,2,db/journals/axioms/axioms6.html#HerrW17,https://doi.org/10.3390/axioms6020007 +Rui Miguel Saramago,Generalized Yang-Baxter Operators for Dieudonné Modules.,2015,4,Axioms,2,db/journals/axioms/axioms4.html#Saramago15,https://doi.org/10.3390/axioms4020177 +Sergio Manzetti,Mathematical Modeling of Rogue Waves: A Survey of Recent and Emerging Mathematical Methods and Solutions.,2018,7,Axioms,2,db/journals/axioms/axioms7.html#Manzetti18,https://doi.org/10.3390/axioms7020042 +Ram K. Saxena,Computational Solutions of Distributed Order Reaction-Diffusion Systems Associated with Riemann-Liouville Derivatives.,2015,4,Axioms,2,db/journals/axioms/axioms4.html#SaxenaMH15,https://doi.org/10.3390/axioms4020120 +Chandrashekar Adiga,Some Modular Relations Analogues to the Ramanujan's Forty Identities with Its Applications to Partitions.,2013,2,Axioms,1,db/journals/axioms/axioms2.html#AdigaB13,https://doi.org/10.3390/axioms2010020 +Viorel Nitica,Open and Dense Topological Transitivity of Extensions by Non-Compact Fiber of Hyperbolic Systems: A Review.,2015,4,Axioms,1,db/journals/axioms/axioms4.html#NiticaT15,https://doi.org/10.3390/axioms4010084 +Alessandra Aimi,Efficient BEM-Based Algorithm for Pricing Floating Strike Asian Barrier Options (with MATLAB® Code).,2018,7,Axioms,2,db/journals/axioms/axioms7.html#AimiDG18,https://doi.org/10.3390/axioms7020040 +Muhammad Akram,Decision-Making with Bipolar Neutrosophic TOPSIS and Bipolar Neutrosophic ELECTRE-I.,2018,7,Axioms,2,db/journals/axioms/axioms7.html#AkramSS18a,https://doi.org/10.3390/axioms7020033 +Karl Heinrich Hofmann,Pro-Lie Groups: A Survey with Open Problems.,2015,4,Axioms,3,db/journals/axioms/axioms4.html#HofmannM15,https://doi.org/10.3390/axioms4030294 +H. M. Srivastava,A Class of Extended Fractional Derivative Operators and Associated Generating Relations Involving Hypergeometric Functions.,2012,1,Axioms,3,db/journals/axioms/axioms1.html#SrivastavaPC12,https://doi.org/10.3390/axioms1030238 +ömer Kisi,New Definitions about A I -Statistical Convergence with Respect to a Sequence of Modulus Functions and Lacunary Sequences.,2018,7,Axioms,2,db/journals/axioms/axioms7.html#KisiGS18,https://doi.org/10.3390/axioms7020024 +Thomas Ernst,On the q-Analogues of Srivastava's Triple Hypergeometric Functions.,2013,2,Axioms,2,db/journals/axioms/axioms2.html#Ernst13,https://doi.org/10.3390/axioms2020085 +Thomas Ernst,On Elliptic and Hyperbolic Modular Functions and the Corresponding Gudermann Peeta Functions.,2015,4,Axioms,3,db/journals/axioms/axioms4.html#Ernst15a,https://doi.org/10.3390/axioms4030235 +Love Ekenberg,Second-Order Risk Constraints in Decision Analysis.,2014,3,Axioms,1,db/journals/axioms/axioms3.html#EkenbergDLS14,https://doi.org/10.3390/axioms3010031 +Morris W. Hirsch,Fixed Points of Local Actions of Lie Groups on Real and Complex 2-Manifolds.,2015,4,Axioms,3,db/journals/axioms/axioms4.html#Hirsch15,https://doi.org/10.3390/axioms4030313 +Florin F. Nichita,On Transcendental Numbers.,2014,3,Axioms,1,db/journals/axioms/axioms3.html#Nichita14,https://doi.org/10.3390/axioms3010064 +Angel Garrido,The Lvov-Warsaw School and Its Future.,2016,5,Axioms,2,db/journals/axioms/axioms5.html#GarridoY16,https://doi.org/10.3390/axioms5020009 +Galit Shmueli,Wavelet-Based Monitoring for Biosurveillance.,2013,2,Axioms,3,db/journals/axioms/axioms2.html#Shmueli13,https://doi.org/10.3390/axioms2030345 +Serge B. Provost,Closed-Form Representations of the Density Function and Integer Moments of the Sample Correlation Coefficient.,2015,4,Axioms,3,db/journals/axioms/axioms4.html#Provost15,https://doi.org/10.3390/axioms4030268 +Benoît Loisel,Ricci Curvature on Polyhedral Surfaces via Optimal Transportation.,2014,3,Axioms,1,db/journals/axioms/axioms3.html#LoiselR14,https://doi.org/10.3390/axioms3010119 +Ka Chun Lam,Conformal-Based Surface Morphing and Multi-Scale Representation.,2014,3,Axioms,2,db/journals/axioms/axioms3.html#LamWL14,https://doi.org/10.3390/axioms3020222 +Facundo Mémoli,The Gromov-Wasserstein Distance: A Brief Overview.,2014,3,Axioms,3,db/journals/axioms/axioms3.html#Memoli14,https://doi.org/10.3390/axioms3030335 +Gianluca Paolini,No Uncountable Polish Group Can be a Right-Angled Artin Group.,2017,6,Axioms,2,db/journals/axioms/axioms6.html#PaoliniS17,https://doi.org/10.3390/axioms6020013 +Marta Cardin,Quantiles in Abstract Convex Structures.,2018,7,Axioms,2,db/journals/axioms/axioms7.html#Cardin18,https://doi.org/10.3390/axioms7020035 +Edurne Barrenechea Tartas,Using the Choquet Integral in the Fuzzy Reasoning Method of Fuzzy Rule-Based Classification Systems.,2013,2,Axioms,2,db/journals/axioms/axioms2.html#TartasSFPS13,https://doi.org/10.3390/axioms2020208 +Jonathan Smith,Quantum Quasigroups and the Quantum Yang-Baxter Equation.,2016,5,Axioms,4,db/journals/axioms/axioms5.html#Smith16,https://doi.org/10.3390/axioms5040025 +Vincent J. Ervin,On Limiting Behavior of Contaminant Transport Models in Coupled Surface and Groundwater Flows.,2015,4,Axioms,4,db/journals/axioms/axioms4.html#ErvinKLMST15,https://doi.org/10.3390/axioms4040518 +Mohammad Masjed-Jamei,Some Summation Theorems for Generalized Hypergeometric Functions.,2018,7,Axioms,2,db/journals/axioms/axioms7.html#Masjed-JameiK18,https://doi.org/10.3390/axioms7020038 +Melanie Weber 0001,Forman-Ricci Flow for Change Detection in Large Dynamic Data Sets.,2016,5,Axioms,4,db/journals/axioms/axioms5.html#WeberJS16,https://doi.org/10.3390/axioms5040026 +Nicy Sebastian,An Overview of the Pathway Idea and Its Applications in Statistical and Physical Sciences.,2015,4,Axioms,4,db/journals/axioms/axioms4.html#SebastianNJ15,https://doi.org/10.3390/axioms4040530 +Laurent Demaret,Complexity L0-Penalized M-Estimation: Consistency in More Dimensions.,2013,2,Axioms,3,db/journals/axioms/axioms2.html#DemaretFLW13,https://doi.org/10.3390/axioms2030311 +Dikran Dikranjan,Characterized Subgroups of Topological Abelian Groups.,2015,4,Axioms,4,db/journals/axioms/axioms4.html#DikranjanBI15,https://doi.org/10.3390/axioms4040459 +Surapati Pramanik,Cross Entropy Measures of Bipolar and Interval Bipolar Neutrosophic Sets and Their Application for Multi-Attribute Decision-Making.,2018,7,Axioms,2,db/journals/axioms/axioms7.html#PramanikDSY18,https://doi.org/10.3390/axioms7020021 +Michael A. Erskine,Business Decision-Making Using Geospatial Data: A Research Framework and Literature Review.,2014,3,Axioms,1,db/journals/axioms/axioms3.html#ErskineGKS14,https://doi.org/10.3390/axioms3010010 +Michiel Hazewinkel,Hasse-Schmidt Derivations and the Hopf Algebra of Non-Commutative Symmetric Functions.,2012,1,Axioms,2,db/journals/axioms/axioms1.html#Hazewinkel12,https://doi.org/10.3390/axioms1020149 +Marek Magdziak,A Logical Analysis of Existential Dependence and Some Other Ontological Concepts - A Comment to Some Ideas of Eugenia Ginsberg-Blaustein.,2016,5,Axioms,3,db/journals/axioms/axioms5.html#Magdziak16,https://doi.org/10.3390/axioms5030019 +Ram K. Saxena,Fractional Integration and Differentiation of the Generalized Mathieu Series.,2017,6,Axioms,3,db/journals/axioms/axioms6.html#SaxenaP17,https://doi.org/10.3390/axioms6030018 +Yilmaz Simsek,Special Numbers and Polynomials Including Their Generating Functions in Umbral Analysis Methods.,2018,7,Axioms,2,db/journals/axioms/axioms7.html#Simsek18,https://doi.org/10.3390/axioms7020022 +Hari M. Srivastava,"Special Issue: ""q-Series and Related Topics in Special Functions and Analytic Number Theory"" - Foreword.",2013,2,Axioms,3,db/journals/axioms/axioms2.html#Srivastava13,https://doi.org/10.3390/axioms2030435 +Seemon Thomas,On some Integral Representations of Certain G-Functions.,2016,5,Axioms,1,db/journals/axioms/axioms5.html#Thomas16,https://doi.org/10.3390/axioms5010001 +Claire Longo,Change Detection Using Wavelets in Solution Monitoring Data for Nuclear Safeguards.,2013,2,Axioms,2,db/journals/axioms/axioms2.html#LongoBM13,https://doi.org/10.3390/axioms2020271 +Dagmar Markechová,Kullback-Leibler Divergence and Mutual Information of Experiments in the Fuzzy Case.,2017,6,Axioms,1,db/journals/axioms/axioms6.html#Markechova17,https://doi.org/10.3390/axioms6010005 +Taras O. Banakh,Categorically Closed Topological Groups.,2017,6,Axioms,3,db/journals/axioms/axioms6.html#Banakh17,https://doi.org/10.3390/axioms6030023 +Young Bae Jun,Cubic Interval-Valued Intuitionistic Fuzzy Sets and Their Application in BCK/BCI-Algebras.,2018,7,Axioms,1,db/journals/axioms/axioms7.html#JunSK18,https://doi.org/10.3390/axioms7010007 +David Karl Ruch,Nonnegative Scaling Vectors on the Interval.,2013,2,Axioms,3,db/journals/axioms/axioms2.html#RuchF13,https://doi.org/10.3390/axioms2030371 +Shanoja R. Naik,On the q-Laplace Transform and Related Special Functions.,2016,5,Axioms,3,db/journals/axioms/axioms5.html#NaikH16,https://doi.org/10.3390/axioms5030024 +Konstantin V. Zhukovsky,Operational Solution of Non-Integer Ordinary and Evolution-Type Partial Differential Equations.,2016,5,Axioms,4,db/journals/axioms/axioms5.html#ZhukovskyS16,https://doi.org/10.3390/axioms5040029 +Sonja Jäckle,Tsallis Entropy and Generalized Shannon Additivity.,2017,6,Axioms,2,db/journals/axioms/axioms6.html#JackleK17,https://doi.org/10.3390/axioms6020014 +Wei Zeng,Diffeomorphism Spline.,2015,4,Axioms,2,db/journals/axioms/axioms4.html#ZengRS15,https://doi.org/10.3390/axioms4020156 +Hanaa M. Zayed,Subordination Properties for Multivalent Functions Associated with a Generalized Fractional Differintegral Operator.,2018,7,Axioms,2,db/journals/axioms/axioms7.html#ZayedAM18,https://doi.org/10.3390/axioms7020027 +Tahsin Oner,An Independent Set of Axioms of MV-Algebras and Solutions of the Set-Theoretical Yang-Baxter Equation.,2017,6,Axioms,3,db/journals/axioms/axioms6.html#OnerSO17,https://doi.org/10.3390/axioms6030017 +Stan Gudder,A Model for the Universe that Begins to Resemble a Quantum Computer.,2015,4,Axioms,1,db/journals/axioms/axioms4.html#Gudder15,https://doi.org/10.3390/axioms4010102 +Konstantin V. Zhukovsky,Operational Approach and Solutions of Hyperbolic Heat Conduction Equations.,2016,5,Axioms,4,db/journals/axioms/axioms5.html#Zhukovsky16,https://doi.org/10.3390/axioms5040028 +W. W. Comfort,Non-Abelian Pseudocompact Groups.,2016,5,Axioms,1,db/journals/axioms/axioms5.html#ComfortR16,https://doi.org/10.3390/axioms5010002 +Marco Gallegati,Time Scale Analysis of Interest Rate Spreads and Output Using Wavelets.,2013,2,Axioms,2,db/journals/axioms/axioms2.html#GallegatiRS13,https://doi.org/10.3390/axioms2020182 +Vsevolod Gubarev,Universal Enveloping Commutative Rota-Baxter Algebras of Pre- and Post-Commutative Algebras.,2017,6,Axioms,4,db/journals/axioms/axioms6.html#Gubarev17,https://doi.org/10.3390/axioms6040033 +Alon Shtern,Matching the LBO Eigenspace of Non-Rigid Shapes via High Order Statistics.,2014,3,Axioms,3,db/journals/axioms/axioms3.html#ShternK14,https://doi.org/10.3390/axioms3030300 +James D. Malley,POVMs and the Two Theorems of Naimark and Sz.-Nagy.,2015,4,Axioms,3,db/journals/axioms/axioms4.html#MalleyF15,https://doi.org/10.3390/axioms4030400 +Angel Garrido,Another Journal on Mathematical Logic and Mathematical Physics?,2012,1,Axioms,1,db/journals/axioms/axioms1.html#Garrido12,https://doi.org/10.3390/axioms1010001 +Jeffrey R. Schmidt,From Coalgebra to Bialgebra for the Six-Vertex Model: The Star-Triangle Relation as a Necessary Condition for Commuting Transfer Matrices.,2012,1,Axioms,2,db/journals/axioms/axioms1.html#Schmidt12,https://doi.org/10.3390/axioms1020186 +George A. Willis,Computing the Scale of an Endomorphism of a totally Disconnected Locally Compact Group.,2017,6,Axioms,4,db/journals/axioms/axioms6.html#Willis17,https://doi.org/10.3390/axioms6040027 +Constantino Tsallis,Approach of Complexity in Nature: Entropic Nonuniqueness.,2016,5,Axioms,3,db/journals/axioms/axioms5.html#Tsallis16,https://doi.org/10.3390/axioms5030020 +Kai Liu,An Evaluation of ARFIMA (Autoregressive Fractional Integral Moving Average) Programs.,2017,6,Axioms,2,db/journals/axioms/axioms6.html#LiuCZ17,https://doi.org/10.3390/axioms6020016 +Kevin Burrage,On the Analysis of Mixed-Index Time Fractional Differential Equation Systems.,2018,7,Axioms,2,db/journals/axioms/axioms7.html#BurrageBTZ18,https://doi.org/10.3390/axioms7020025 +Pushpa Narayan Rathie,Applications of Skew Models Using Generalized Logistic Distribution.,2016,5,Axioms,2,db/journals/axioms/axioms5.html#RathieSO16,https://doi.org/10.3390/axioms5020010 +M. Khokulan,Discrete Frames on Finite Dimensional Left Quaternion Hilbert Spaces.,2017,6,Axioms,1,db/journals/axioms/axioms6.html#KhokulanTS17,https://doi.org/10.3390/axioms6010003 +Esa Lappi,Tactical Size Unit as Distribution in a Data Farming Environment.,2016,5,Axioms,1,db/journals/axioms/axioms5.html#LappiA16,https://doi.org/10.3390/axioms5010007 +Young Bae Jun,Neutrosophic Positive Implicative N -Ideals in BCK-Algebras.,2018,7,Axioms,1,db/journals/axioms/axioms7.html#JunSSK18,https://doi.org/10.3390/axioms7010003 +Apoorva Khare,The Sum of a Finite Group of Weights of a Hopf Algebra.,2012,1,Axioms,3,db/journals/axioms/axioms1.html#Khare12,https://doi.org/10.3390/axioms1030259 +James D. Malley,Classical Probability and Quantum Outcomes.,2014,3,Axioms,2,db/journals/axioms/axioms3.html#Malley14,https://doi.org/10.3390/axioms3020244 +Raffaele Chiappinelli,"What Do You Mean by ""Nonlinear Eigenvalue Problems""?",2018,7,Axioms,2,db/journals/axioms/axioms7.html#Chiappinelli18,https://doi.org/10.3390/axioms7020039 +Leire Legarreta,Orness For Idempotent Aggregation Functions.,2017,6,Axioms,3,db/journals/axioms/axioms6.html#LegarretaLM17,https://doi.org/10.3390/axioms6030025 +Muhammad Akram,Neutrosophic Soft Rough Graphs with Application.,2018,7,Axioms,1,db/journals/axioms/axioms7.html#AkramMSS18,https://doi.org/10.3390/axioms7010014 +Tahsin Oner,On Solutions to the Set-Theoretical Yang-Baxter Equation in Wajsberg-Algebras.,2018,7,Axioms,1,db/journals/axioms/axioms7.html#OnerK18,https://doi.org/10.3390/axioms7010006 +Tomasz Brzezinski,Bundles over Quantum RealWeighted Projective Spaces.,2012,1,Axioms,2,db/journals/axioms/axioms1.html#BrzezinskiF12,https://doi.org/10.3390/axioms1020201 +Tom Burr,Signal Estimation Using Wavelet Analysis of Solution Monitoring Data for Nuclear Safeguards.,2013,2,Axioms,1,db/journals/axioms/axioms2.html#BurrL13,https://doi.org/10.3390/axioms2010044 +Tohru Morita,Boas' Formula and Sampling Theorem.,2015,4,Axioms,1,db/journals/axioms/axioms4.html#MoritaS15,https://doi.org/10.3390/axioms4010071 +Dan Kucerovský,Cuntz Semigroups of Compact-Type Hopf C*-Algebras.,2017,6,Axioms,1,db/journals/axioms/axioms6.html#Kucerovsky17,https://doi.org/10.3390/axioms6010001 +Saak Gabriyelyan,On T-Characterized Subgroups of Compact Abelian Groups.,2015,4,Axioms,2,db/journals/axioms/axioms4.html#Gabriyelyan15,https://doi.org/10.3390/axioms4020194 +Yilmaz Simsek,Generating Functions for q-Apostol Type Frobenius-Euler Numbers and Polynomials.,2012,1,Axioms,3,db/journals/axioms/axioms1.html#Simsek12,https://doi.org/10.3390/axioms1030395 +Jun Ye 0001,Neutrosophic Number Nonlinear Programming Problems and Their General Solution Methods under Neutrosophic Number Environments.,2018,7,Axioms,1,db/journals/axioms/axioms7.html#YeCL18,https://doi.org/10.3390/axioms7010013 +Sidra Sayed,Rough Neutrosophic Digraphs with Application.,2018,7,Axioms,1,db/journals/axioms/axioms7.html#SayedIAS18,https://doi.org/10.3390/axioms7010005 +Young Bae Jun,Neutrosophic Quadruple BCK/BCI-Algebras.,2018,7,Axioms,2,db/journals/axioms/axioms7.html#JunSSB18,https://doi.org/10.3390/axioms7020041 +Robert W. Johnson,Some Notes on the Use of theWindowed Fourier Transform for Spectral Analysis of Discretely Sampled Data.,2013,2,Axioms,3,db/journals/axioms/axioms2.html#Johnson13,https://doi.org/10.3390/axioms2030286 +Andrzej Wisniewski,An Axiomatic Account of Question Evocation: The Propositional Case.,2016,5,Axioms,2,db/journals/axioms/axioms5.html#Wisniewski16,https://doi.org/10.3390/axioms5020014 +Angel Garrido,Axiomatic of Fuzzy Complex Numbers.,2012,1,Axioms,1,db/journals/axioms/axioms1.html#Garrido12a,https://doi.org/10.3390/axioms1010021 +Xianfeng David Gu,Discrete Geometry - From Theory to Applications: A Case Study.,2016,5,Axioms,4,db/journals/axioms/axioms5.html#GuS16,https://doi.org/10.3390/axioms5040027 +Florin F. Nichita,The Duality between Corings and Ring Extensions.,2012,1,Axioms,2,db/journals/axioms/axioms1.html#NichitaZ12,https://doi.org/10.3390/axioms1020173 +Ann-Eva Christensen,Final Value Problems for Parabolic Differential Equations and Their Well-Posedness.,2018,7,Axioms,2,db/journals/axioms/axioms7.html#ChristensenJ18,https://doi.org/10.3390/axioms7020031 +Jianzhong Wang,Euclidean Algorithm for Extension of Symmetric Laurent Polynomial Matrix and Its Application in Construction of Multiband Symmetric Perfect Reconstruction Filter Bank.,2017,6,Axioms,2,db/journals/axioms/axioms6.html#Wang17,https://doi.org/10.3390/axioms6020009 +Dana Cerná,Sparse Wavelet Representation of Differential Operators with Piecewise Polynomial Coefficients.,2017,6,Axioms,1,db/journals/axioms/axioms6.html#CernaF17,https://doi.org/10.3390/axioms6010004 +Christopher A. Fuchs,The SIC Question: History and State of Play.,2017,6,Axioms,3,db/journals/axioms/axioms6.html#FuchsHS17,https://doi.org/10.3390/axioms6030021 +Nicy Sebastian,Limiting Approach to Generalized Gamma Bessel Model via Fractional Calculus and Its Applications in Various Disciplines.,2015,4,Axioms,3,db/journals/axioms/axioms4.html#Sebastian15,https://doi.org/10.3390/axioms4030385 +Etienne E. Kerre,An Overview of the Fuzzy Axiomatic Systems and Characterizations Proposed at Ghent University.,2016,5,Axioms,2,db/journals/axioms/axioms5.html#KerreDG16,https://doi.org/10.3390/axioms5020017 +Vasile Postolica,On the Equilibria of Generalized Dynamical Systems.,2012,1,Axioms,3,db/journals/axioms/axioms1.html#Postolica12,https://doi.org/10.3390/axioms1030384 +Eli Appleboim,From Normal Surfaces to Normal Curves to Geodesics on Surfaces.,2017,6,Axioms,3,db/journals/axioms/axioms6.html#Appleboim17,https://doi.org/10.3390/axioms6030026 +Ol'ga Sipacheva,Large Sets in Boolean and Non-Boolean Groups and Topology.,2017,6,Axioms,4,db/journals/axioms/axioms6.html#Sipacheva17,https://doi.org/10.3390/axioms6040028 +Florin F. Nichita,Introduction to the Yang-Baxter Equation with Open Problems.,2012,1,Axioms,1,db/journals/axioms/axioms1.html#Nichita12,https://doi.org/10.3390/axioms1010033 +Gandalf Lechner,Modular Nuclearity: A Generally Covariant Perspective.,2016,5,Axioms,1,db/journals/axioms/axioms5.html#LechnerS16,https://doi.org/10.3390/axioms5010005 +Luigi Brugnano,Line Integral Solution of Differential Problems.,2018,7,Axioms,2,db/journals/axioms/axioms7.html#BrugnanoI18,https://doi.org/10.3390/axioms7020036 +Jon Links,Hopf Algebra Symmetries of an Integrable Hamiltonian for Anyonic Pairing.,2012,1,Axioms,2,db/journals/axioms/axioms1.html#Links12,https://doi.org/10.3390/axioms1020226 +Robert G. Underwood,Quasitriangular Structure of Myhill-Nerode Bialgebras.,2012,1,Axioms,2,db/journals/axioms/axioms1.html#Underwood12,https://doi.org/10.3390/axioms1020155 +Ram K. Saxena,Space-Time Fractional Reaction-Diffusion Equations Associated with a Generalized Riemann-Liouville Fractional Derivative.,2014,3,Axioms,3,db/journals/axioms/axioms3.html#SaxenaMH14,https://doi.org/10.3390/axioms3030320 +María Jesús Campión,Assigning Numerical Scores to Linguistic Expressions.,2017,6,Axioms,3,db/journals/axioms/axioms6.html#CampionFGI17,https://doi.org/10.3390/axioms6030019 +ümit Budak,Neutrosophic Hough Transform.,2017,6,Axioms,4,db/journals/axioms/axioms6.html#BudakGSS17,https://doi.org/10.3390/axioms6040035 +Ol'ga Sipacheva,Free Boolean Topological Groups.,2015,4,Axioms,4,db/journals/axioms/axioms4.html#Sipacheva15,https://doi.org/10.3390/axioms4040492 +Pablo Hernández,New Order on Type 2 Fuzzy Numbers.,2017,6,Axioms,3,db/journals/axioms/axioms6.html#HernandezCTG17,https://doi.org/10.3390/axioms6030022 +Joel Lemay,Valued Graphs and the Representation Theory of Lie Algebras.,2012,1,Axioms,2,db/journals/axioms/axioms1.html#Lemay12,https://doi.org/10.3390/axioms1020111 +Juan Carlos Candeal,An Abstract Result on Projective Aggregation Functions.,2018,7,Axioms,1,db/journals/axioms/axioms7.html#Candeal18,https://doi.org/10.3390/axioms7010017 +Louis Worthy Kolitsch,The Cranks for 5-Core Partitions.,2012,1,Axioms,3,db/journals/axioms/axioms1.html#Kolitsch12,https://doi.org/10.3390/axioms1030372 +Manseob Lee,A Type of the Shadowing Properties for Generic View Points.,2018,7,Axioms,1,db/journals/axioms/axioms7.html#Lee18,https://doi.org/10.3390/axioms7010018 +Paul M. Alsing,Topological Signals of Singularities in Ricci Flow.,2017,6,Axioms,3,db/journals/axioms/axioms6.html#AlsingBCJMMN17,https://doi.org/10.3390/axioms6030024 +James D. Malley,Joint Distributions and Quantum Nonlocal Models.,2014,3,Axioms,2,db/journals/axioms/axioms3.html#MalleyF14,https://doi.org/10.3390/axioms3020166 +Teresa González-Arteaga,Managing Interacting Criteria: Application to Environmental Evaluation Practices.,2018,7,Axioms,1,db/journals/axioms/axioms7.html#Gonzalez-Arteaga18,https://doi.org/10.3390/axioms7010004 +Rudolf Gorenflo,On the Fractional Poisson Process and the Discretized Stable Subordinator.,2015,4,Axioms,3,db/journals/axioms/axioms4.html#GorenfloM15,https://doi.org/10.3390/axioms4030321 +Jean-Pierre Gazeau,Positive-Operator Valued Measure (POVM) Quantization.,2015,4,Axioms,1,db/journals/axioms/axioms4.html#GazeauH15,https://doi.org/10.3390/axioms4010001 +Sergey Ajiev,Quantitative Hahn-Banach Theorems and Isometric Extensions forWavelet and Other Banach Spaces.,2013,2,Axioms,2,db/journals/axioms/axioms2.html#Ajiev13,https://doi.org/10.3390/axioms2020224 +Nor Izzati Jaini,A Fuzzy Trade-Off Ranking Method for Multi-Criteria Decision-Making.,2018,7,Axioms,1,db/journals/axioms/axioms7.html#JainiU18,https://doi.org/10.3390/axioms7010001 +Solomon Marcus,On Transcendental Numbers: New Results and a Little History.,2018,7,Axioms,1,db/journals/axioms/axioms7.html#MarcusN18,https://doi.org/10.3390/axioms7010015 +Jun Jiang,Exact Solutions to the Fractional Differential Equations with Mixed Partial Derivatives.,2018,7,Axioms,1,db/journals/axioms/axioms7.html#JiangFL18,https://doi.org/10.3390/axioms7010010 +Carlton-James U. Osakwe,Incentive Compatible Decision Making: Real Options with Adverse Incentives.,2018,7,Axioms,1,db/journals/axioms/axioms7.html#Osakwe18,https://doi.org/10.3390/axioms7010009 +Frédéric Jouhet,New Curious Bilateral q-Series Identities.,2012,1,Axioms,3,db/journals/axioms/axioms1.html#JouhetS12,https://doi.org/10.3390/axioms1030365 +Tohru Morita,Mollification Based onWavelets.,2013,2,Axioms,2,db/journals/axioms/axioms2.html#MoritaS13,https://doi.org/10.3390/axioms2020067 +Marcin Lyczak,The Universe in Leśniewski's Mereology: Some Comments on Sobociński's Reflections.,2016,5,Axioms,3,db/journals/axioms/axioms5.html#LyczakPS16,https://doi.org/10.3390/axioms5030023 +Laura Astola,A Simplified Algorithm for Inverting Higher Order Diffusion Tensors.,2014,3,Axioms,4,db/journals/axioms/axioms3.html#AstolaSHFF14,https://doi.org/10.3390/axioms3040369 +Ahmet Altürk,Construction of Multiwavelets on an Interval.,2013,2,Axioms,2,db/journals/axioms/axioms2.html#AlturkK13,https://doi.org/10.3390/axioms2020122 +Yoshiki Shimomura,A Method for Negotiating Various Customer Requirements for Public Service Design.,2014,3,Axioms,1,db/journals/axioms/axioms3.html#ShimomuraNAK14,https://doi.org/10.3390/axioms3010001 +Hei-Chi Chan,Golden Ratio and a Ramanujan-Type Integral.,2013,2,Axioms,1,db/journals/axioms/axioms2.html#Chan13,https://doi.org/10.3390/axioms2010058 +Rémi Léandre,An Itô Formula for an Accretive Operator.,2012,1,Axioms,1,db/journals/axioms/axioms1.html#Leandre12,https://doi.org/10.3390/axioms1010004 +Sundas Shahzadi,Graphs in an Intuitionistic Fuzzy Soft Environment.,2018,7,Axioms,2,db/journals/axioms/axioms7.html#ShahzadiA18,https://doi.org/10.3390/axioms7020020 +Seok-Zun Song,Quotient Structures of BCK/BCI-Algebras Induced by Quasi-Valuation Maps.,2018,7,Axioms,2,db/journals/axioms/axioms7.html#SongBJ18,https://doi.org/10.3390/axioms7020026 +Ignazio Licata,Bell Length as Mutual Information in Quantum Interference.,2014,3,Axioms,2,db/journals/axioms/axioms3.html#LicataF14,https://doi.org/10.3390/axioms3020153 +Peter G. Casazza,Norm Retrieval and Phase Retrieval by Projections.,2017,6,Axioms,1,db/journals/axioms/axioms6.html#CasazzaGJT17,https://doi.org/10.3390/axioms6010006 +Zengqiang Chen,Toward Measuring Network Aesthetics Based on Symmetry.,2017,6,Axioms,2,db/journals/axioms/axioms6.html#ChenDEMS17,https://doi.org/10.3390/axioms6020012 +Alexander E. Hoffnung,The Hecke Bicategory.,2012,1,Axioms,3,db/journals/axioms/axioms1.html#Hoffnung12,https://doi.org/10.3390/axioms1030291 +Bachuki Mesablishvili,Azumaya Monads and Comonads.,2015,4,Axioms,1,db/journals/axioms/axioms4.html#MesablishviliW15,https://doi.org/10.3390/axioms4010032 +Young Bae Jun,Interval Neutrosophic Sets with Applications in BCK/BCI-Algebra.,2018,7,Axioms,2,db/journals/axioms/axioms7.html#JunKS18,https://doi.org/10.3390/axioms7020023 +María Jesús Campión,A Survey on the Mathematical Foundations of Axiomatic Entropy: Representability and Orderings.,2018,7,Axioms,2,db/journals/axioms/axioms7.html#CampionGIR18,https://doi.org/10.3390/axioms7020029 +Robert Kublikowski,Is Kazimierz Ajdukiewicz's Concept of a Real Definition Still Important?,2016,5,Axioms,3,db/journals/axioms/axioms5.html#Kublikowski16,https://doi.org/10.3390/axioms5030021 +Mehmet Sahin,A Dynamic Ticket Pricing Approach for Soccer Games.,2017,6,Axioms,4,db/journals/axioms/axioms6.html#SahinE17,https://doi.org/10.3390/axioms6040031 +Xin Fan,Characteristic Number: Theory and Its Application to Shape Analysis.,2014,3,Axioms,2,db/journals/axioms/axioms3.html#FanLZZJL14,https://doi.org/10.3390/axioms3020202 +Yuri Luchko,Entropy Production Rate of a One-Dimensional Alpha-Fractional Diffusion Process.,2016,5,Axioms,1,db/journals/axioms/axioms5.html#Luchko16,https://doi.org/10.3390/axioms5010006 +Dhannya P. Joseph,Multivariate Extended Gamma Distribution.,2017,6,Axioms,2,db/journals/axioms/axioms6.html#Joseph17,https://doi.org/10.3390/axioms6020011 +Paolo Bevilacqua,Existence of Order-Preserving Functions for Nontotal Fuzzy Preference Relations under Decisiveness.,2017,6,Axioms,4,db/journals/axioms/axioms6.html#BevilacquaBZ17,https://doi.org/10.3390/axioms6040029 +Mama Foupouagnigni,On Solutions of Holonomic Divided-Difference Equations on Nonuniform Lattices.,2013,2,Axioms,3,db/journals/axioms/axioms2.html#FoupouagnigniKKM13,https://doi.org/10.3390/axioms2030404 +Andreas Kyriakoussis,Continuous Stieltjes-Wigert Limiting Behaviour of a Family of Confluent q-Chu-Vandermonde Distributions.,2014,3,Axioms,2,db/journals/axioms/axioms3.html#KyriakoussisV14,https://doi.org/10.3390/axioms3020140 +Xiaosheng Zhuang,Quincunx Fundamental Refinable Functions in Arbitrary Dimensions.,2017,6,Axioms,3,db/journals/axioms/axioms6.html#Zhuang17,https://doi.org/10.3390/axioms6030020 +Erich-Peter Klement,Discrete Integrals and Axiomatically Defined Functionals.,2012,1,Axioms,1,db/journals/axioms/axioms1.html#KlementM12,https://doi.org/10.3390/axioms1010009 +Ravi P. Agarwal,Lyapunov Functions to Caputo Fractional Neural Networks with Time-Varying Delays.,2018,7,Axioms,2,db/journals/axioms/axioms7.html#AgarwalHO18,https://doi.org/10.3390/axioms7020030 +Christian Servin,Fuzzy Analogues of Sets and Functions Can Be Uniquely Determined from the Corresponding Ordered Category: A Theorem.,2018,7,Axioms,1,db/journals/axioms/axioms7.html#ServinMK18,https://doi.org/10.3390/axioms7010008 +Mikhail Tkachenko,Lindelöf and#931*-Spaces and R-Factorizable Paratopological Groups.,2015,4,Axioms,3,db/journals/axioms/axioms4.html#Tkachenko15,https://doi.org/10.3390/axioms4030254 +Xiaohu Yang,On comonotonic functions of uncertain variables.,2013,12,FO and DM,1,db/journals/fodm/fodm12.html#Yang13,https://doi.org/10.1007/s10700-012-9143-8 +Zhi Pei,Multi-attribute decision making based on a novel IF point operator.,2017,16,FO and DM,4,db/journals/fodm/fodm16.html#Pei17,https://doi.org/10.1007/s10700-016-9255-7 +Le Hoang Son,Measuring analogousness in picture fuzzy sets: from picture distance measures to picture association measures.,2017,16,FO and DM,3,db/journals/fodm/fodm16.html#Son17,https://doi.org/10.1007/s10700-016-9249-5 +Silvia Muzzioli,A comparative assessment of different fuzzy regression methods for volatility forecasting.,2013,12,FO and DM,4,db/journals/fodm/fodm12.html#MuzzioliB13,https://doi.org/10.1007/s10700-013-9161-1 +Pingke Li,A note on solution sets of interval-valued fuzzy relational equations.,2009,8,FO and DM,1,db/journals/fodm/fodm8.html#LiF09,https://doi.org/10.1007/s10700-009-9055-4 +Wenqi Liu,Group decision-making based on heterogeneous preference relations with self-confidence.,2017,16,FO and DM,4,db/journals/fodm/fodm16.html#LiuDCCH17,https://doi.org/10.1007/s10700-016-9254-8 +Bo Li,Uncertain linear systems.,2015,14,FO and DM,2,db/journals/fodm/fodm14.html#LiZ15,https://doi.org/10.1007/s10700-014-9197-x +A. Zarandi Baghini,Redefined fuzzy B-algebras.,2008,7,FO and DM,4,db/journals/fodm/fodm7.html#BaghiniS08,https://doi.org/10.1007/s10700-008-9045-y +Hsiao-Fan Wang,Preference Approach to Fuzzy Linear Inequalities and Optimizations.,2005,4,FO and DM,1,db/journals/fodm/fodm4.html#WangW05,https://doi.org/10.1007/s10700-004-5567-0 +Xiaobin Wang,Random fuzzy EOQ model with imperfect quality items.,2007,6,FO and DM,2,db/journals/fodm/fodm6.html#WangTZ07,https://doi.org/10.1007/s10700-007-9002-1 +Adam Kasperski,The 0-1 knapsack problem with fuzzy data.,2007,6,FO and DM,2,db/journals/fodm/fodm6.html#KasperskiK07,https://doi.org/10.1007/s10700-007-9000-3 +Kai Meng Tay,On the use of fuzzy inference techniques in assessment models: part I - theoretical properties.,2008,7,FO and DM,3,db/journals/fodm/fodm7.html#TayL08,https://doi.org/10.1007/s10700-008-9036-z +Efendi N. Nasibov,A Learning Algorithm for Level Sets Weights in Weighted Level-based Averaging Method.,2005,4,FO and DM,4,db/journals/fodm/fodm4.html#NasibovBM05,https://doi.org/10.1007/s10700-005-3664-3 +Xiaowei Chen,Uncertain stock model with periodic dividends.,2013,12,FO and DM,1,db/journals/fodm/fodm12.html#ChenLR13,https://doi.org/10.1007/s10700-012-9141-x +Yubin Zhong,The design of a controller in Fuzzy Petri net.,2008,7,FO and DM,4,db/journals/fodm/fodm7.html#Zhong08,https://doi.org/10.1007/s10700-008-9047-9 +,Editorial message.,2017,16,FO and DM,4,db/journals/fodm/fodm16.html#X17,https://doi.org/10.1007/s10700-016-9265-5 +Xingfang Zhang,A semantic study of the first-order predicate logic with uncertainty involved.,2014,13,FO and DM,4,db/journals/fodm/fodm13.html#ZhangL14,https://doi.org/10.1007/s10700-014-9184-2 +Xiaoli Wu,Uncertain agency models with multi-dimensional incomplete information based on confidence level.,2014,13,FO and DM,2,db/journals/fodm/fodm13.html#WuZT14,https://doi.org/10.1007/s10700-013-9174-9 +R. Zarei,Some fuzzy stochastic orderings for fuzzy random variables.,2012,11,FO and DM,2,db/journals/fodm/fodm11.html#ZareiARA12,https://doi.org/10.1007/s10700-012-9121-1 +Mohit Kumar,Robust Adaptive Identification of Fuzzy Systems with Uncertain Data.,2004,3,FO and DM,3,db/journals/fodm/fodm3.html#KumarSS04a,https://doi.org/10.1023/B:FODM.0000036863.11629.42 +Ting-Yu Chen,An interactive method for multiple criteria group decision analysis based on interval type-2 fuzzy sets and its application to medical decision making.,2013,12,FO and DM,3,db/journals/fodm/fodm12.html#Chen13,https://doi.org/10.1007/s10700-013-9158-9 +Aparna Mehra,Acceptable optimality in linear fractional programming with fuzzy coefficients.,2007,6,FO and DM,1,db/journals/fodm/fodm6.html#MehraCB07,https://doi.org/10.1007/s10700-006-0021-0 +Ajith Abraham,Preface.,2004,3,FO and DM,2,db/journals/fodm/fodm3.html#AbrahamJ04,https://doi.org/10.1023/B:FODM.0000022047.51821.dd +X. Chen,Existence and uniqueness theorem for uncertain differential equations.,2010,9,FO and DM,1,db/journals/fodm/fodm9.html#ChenL10,https://doi.org/10.1007/s10700-010-9073-2 +Nirmal Kumar Mandal,A displayed inventory model with L-R fuzzy number.,2006,5,FO and DM,3,db/journals/fodm/fodm5.html#MandalR06,https://doi.org/10.1007/s10700-006-0012-1 +Xiaosheng Wang,Quadratic entropy of uncertain sets.,2013,12,FO and DM,1,db/journals/fodm/fodm12.html#WangH13,https://doi.org/10.1007/s10700-012-9140-y +Shu-Ping Wan,An intuitionistic fuzzy programming method for group decision making with interval-valued fuzzy preference relations.,2017,16,FO and DM,3,db/journals/fodm/fodm16.html#WanWXDT17,https://doi.org/10.1007/s10700-016-9250-z +Rui Mu,An uncertain contract model for rural migrant worker's employment problems.,2013,12,FO and DM,1,db/journals/fodm/fodm12.html#MuLT13,https://doi.org/10.1007/s10700-012-9137-6 +Erich-Peter Klement,Universal integrals based on copulas.,2014,13,FO and DM,3,db/journals/fodm/fodm13.html#KlementMSS14,https://doi.org/10.1007/s10700-014-9182-4 +Zeshui Xu,An Approach to Improving Consistency of Fuzzy Preference Matrix.,2003,2,FO and DM,1,db/journals/fodm/fodm2.html#XuD03,https://doi.org/10.1023/A:1022891913097 +Saowanee Lertworasirikul,Fuzzy BCC Model for Data Envelopment Analysis.,2003,2,FO and DM,4,db/journals/fodm/fodm2.html#LertworasirikulFNJ03,https://doi.org/10.1023/B:FODM.0000003953.39947.b4 +Ravi Jain,Innovation in the cluster validating techniques.,2008,7,FO and DM,3,db/journals/fodm/fodm7.html#JainK08,https://doi.org/10.1007/s10700-008-9033-2 +Francisco Herrera,Computing with words and decision making.,2009,8,FO and DM,4,db/journals/fodm/fodm8.html#HerreraHAC09,https://doi.org/10.1007/s10700-009-9069-y +Raman Kumar Goyal,Deriving crisp and consistent priorities for fuzzy AHP-based multicriteria systems using non-linear constrained optimization.,2018,17,FO and DM,2,db/journals/fodm/fodm17.html#GoyalK18,https://doi.org/10.1007/s10700-017-9267-y +Man-Yi Tan,The Further Study of Safety Stock under Uncertain Environment.,2006,5,FO and DM,2,db/journals/fodm/fodm5.html#TanT06,https://doi.org/10.1007/s10700-006-7337-7 +Davide Martinetti,On Arrow-Sen style equivalences between rationality conditions for fuzzy choice functions.,2014,13,FO and DM,4,db/journals/fodm/fodm13.html#MartinettiMDB14,https://doi.org/10.1007/s10700-014-9187-z +Manas Kumar Maiti,Two storage inventory model in a mixed environment.,2007,6,FO and DM,4,db/journals/fodm/fodm6.html#MaitiM07,https://doi.org/10.1007/s10700-007-9020-z +B. Moses Sathyaraj,Multiple UAVs path planning algorithms: a comparative study.,2008,7,FO and DM,3,db/journals/fodm/fodm7.html#SathyarajJFD08,https://doi.org/10.1007/s10700-008-9035-0 +Shao-Yuan Li,On-Line Constrained Predictive Control Algorithm using Multi-Objective Fuzzy-Optimization and a Case Study.,2003,2,FO and DM,2,db/journals/fodm/fodm2.html#LiY03,https://doi.org/10.1023/A:1023495100920 +Baoding Liu,Toward Fuzzy Optimization without Mathematical Ambiguity.,2002,1,FO and DM,1,db/journals/fodm/fodm1.html#Liu02,https://doi.org/10.1023/A:1013771608623 +Rong Gao,Order statistics of uncertain random variables with application to k-out-of-n system.,2017,16,FO and DM,2,db/journals/fodm/fodm16.html#GaoSR17,https://doi.org/10.1007/s10700-016-9245-9 +Vikas Kapoor,Fuzzy Application to the Analytic Hierarchy Process for Robot Selection.,2005,4,FO and DM,3,db/journals/fodm/fodm4.html#KapoorT05,https://doi.org/10.1007/s10700-005-1890-3 +Jaroslav Ramík,Fuzzy Mathematical Programming: A Unified Approach Based On Fuzzy Relations.,2002,1,FO and DM,4,db/journals/fodm/fodm1.html#RamikV02,https://doi.org/10.1023/A:1020978428453 +Hao-Tien Liu,An improved fuzzy time series forecasting method using trapezoidal fuzzy numbers.,2007,6,FO and DM,1,db/journals/fodm/fodm6.html#Liu07,https://doi.org/10.1007/s10700-006-0025-9 +José Manuel Cadenas,Towards a new strategy for solving fuzzy optimization problems.,2009,8,FO and DM,3,db/journals/fodm/fodm8.html#CadenasV09,https://doi.org/10.1007/s10700-009-9062-5 +Hongjian Liu,Almost sure stability for uncertain differential equation.,2014,13,FO and DM,4,db/journals/fodm/fodm13.html#LiuKF14,https://doi.org/10.1007/s10700-014-9188-y +Nureize Arbaiy,A fuzzy regression approach to a hierarchical evaluation model for oil palm fruit grading.,2010,9,FO and DM,1,db/journals/fodm/fodm9.html#ArbaiyW10,https://doi.org/10.1007/s10700-010-9072-3 +Hsien-Chung Wu,Duality theory in fuzzy optimization problems formulated by the Wolfe's primal and dual pair.,2007,6,FO and DM,3,db/journals/fodm/fodm6.html#Wu07,https://doi.org/10.1007/s10700-007-9014-x +Kai Yao,Some stability theorems of uncertain differential equation.,2013,12,FO and DM,1,db/journals/fodm/fodm12.html#YaoGG13,https://doi.org/10.1007/s10700-012-9139-4 +Hsi-Chieh Lee,On the Optimal Three-tier Multimedia Streaming Services.,2003,2,FO and DM,1,db/journals/fodm/fodm2.html#LeeG03,https://doi.org/10.1023/A:1022848114005 +S. K. Gupta,Duality for a class of fuzzy nonlinear optimization problem under generalized convexity.,2014,13,FO and DM,2,db/journals/fodm/fodm13.html#GuptaD14,https://doi.org/10.1007/s10700-013-9176-7 +Meng Wu,On interval portfolio selection problem.,2013,12,FO and DM,3,db/journals/fodm/fodm12.html#WuKXH13,https://doi.org/10.1007/s10700-013-9155-z +Deng-Feng Li,A new methodology for fuzzy multi-attribute group decision making with multi-granularity and non-homogeneous information.,2010,9,FO and DM,1,db/journals/fodm/fodm9.html#Li10,https://doi.org/10.1007/s10700-010-9071-4 +Bing-yuan Cao,Preface.,2008,7,FO and DM,4,db/journals/fodm/fodm7.html#Cao08,https://doi.org/10.1007/s10700-008-9038-x +Bing-Yuan Cao,Power Supply Radius Optimized with Fuzzy Geometric Program in Substation.,2006,5,FO and DM,2,db/journals/fodm/fodm5.html#Cao06a,https://doi.org/10.1007/s10700-006-7331-0 +Rafik A. Aliev,Fuzzy optimality based decision making under imperfect information without utility.,2013,12,FO and DM,4,db/journals/fodm/fodm12.html#AlievPAH13,https://doi.org/10.1007/s10700-013-9160-2 +Shan Yu,Indefinite integrals of generalized intuitionistic multiplicative functions.,2015,14,FO and DM,4,db/journals/fodm/fodm14.html#YuXXL15,https://doi.org/10.1007/s10700-015-9209-5 +Deng-Feng Li,Extension of the LINMAP for multiattribute decision making under Atanassov's intuitionistic fuzzy environment.,2008,7,FO and DM,1,db/journals/fodm/fodm7.html#Li08,https://doi.org/10.1007/s10700-007-9022-x +Ricardo C. Silva,The use of possibility theory in the definition of fuzzy Pareto-optimality.,2011,10,FO and DM,1,db/journals/fodm/fodm10.html#SilvaY11,https://doi.org/10.1007/s10700-010-9092-z +H. Ahmadzade,On the convergence of uncertain random sequences.,2017,16,FO and DM,2,db/journals/fodm/fodm16.html#AhmadzadeSE17,https://doi.org/10.1007/s10700-016-9242-z +C. R. Bector,Matrix Games with Fuzzy Goals and Fuzzy Linear Programming Duality.,2004,3,FO and DM,3,db/journals/fodm/fodm3.html#BectorCV04,https://doi.org/10.1023/B:FODM.0000036866.18909.f1 +Yanbing Gong,A combination approach for obtaining the minimize disparity OWA operator weights.,2011,10,FO and DM,4,db/journals/fodm/fodm10.html#Gong11,https://doi.org/10.1007/s10700-011-9107-4 +Heinrich J. Rommelfanger,The Advantages of Fuzzy Optimization Models in Practical Use.,2004,3,FO and DM,4,db/journals/fodm/fodm3.html#Rommelfanger04,https://doi.org/10.1007/s10700-004-4200-6 +Andrew G. Bronevich,Ranking probability measures by inclusion indices in the case of unknown utility function.,2014,13,FO and DM,1,db/journals/fodm/fodm13.html#BronevichR14,https://doi.org/10.1007/s10700-013-9169-6 +Zhan Su,Probability distribution based weights for weighted arithmetic aggregation operators.,2016,15,FO and DM,2,db/journals/fodm/fodm15.html#SuXL16,https://doi.org/10.1007/s10700-015-9220-x +Augustine O. Esogbue,On Optimal Defuzzification and Learning Algorithms: Theory and Applications.,2003,2,FO and DM,4,db/journals/fodm/fodm2.html#EsogbueS03,https://doi.org/10.1023/B:FODM.0000003950.58491.91 +Jue Wang,On the Parameterized OWA Operators for Fuzzy MCDM Based on Vague Set Theory.,2006,5,FO and DM,1,db/journals/fodm/fodm5.html#WangLZW06,https://doi.org/10.1007/s10700-005-4912-2 +Mingxuan Zhao,The covariance of uncertain variables: definition and calculation formulae.,2018,17,FO and DM,2,db/journals/fodm/fodm17.html#ZhaoLRZ18,https://doi.org/10.1007/s10700-017-9270-3 +Hsien-Chung Wu,Hahn-Banach extension theorems over the space of fuzzy elements.,2010,9,FO and DM,2,db/journals/fodm/fodm9.html#Wu10a,https://doi.org/10.1007/s10700-010-9079-9 +Yassine Djouadi,Possibility-theoretic extension of derivation operators in formal concept analysis over fuzzy lattices.,2011,10,FO and DM,4,db/journals/fodm/fodm10.html#DjouadiP11,https://doi.org/10.1007/s10700-011-9106-5 +Sy-Ming Guu,Minimizing a Linear Objective Function with Fuzzy Relation Equation Constraints.,2002,1,FO and DM,4,db/journals/fodm/fodm1.html#GuuW02,https://doi.org/10.1023/A:1020955112523 +Baoding Liu,Totally ordered uncertain sets.,2018,17,FO and DM,1,db/journals/fodm/fodm17.html#Liu18,https://doi.org/10.1007/s10700-016-9264-6 +Andreas Nürnberger,A Neuro-Fuzzy Approach to Optimize Hierarchical Recurrent Fuzzy Systems.,2002,1,FO and DM,2,db/journals/fodm/fodm1.html#NurnbergerK02,https://doi.org/10.1023/A:1015739303105 +Gleb Beliakov,Aggregation and consensus for preference relations based on fuzzy partial orders.,2017,16,FO and DM,4,db/journals/fodm/fodm16.html#BeliakovJW17,https://doi.org/10.1007/s10700-016-9258-4 +Ignacio Montes,Imprecise stochastic orders and fuzzy rankings.,2017,16,FO and DM,3,db/journals/fodm/fodm16.html#MontesMM17,https://doi.org/10.1007/s10700-016-9251-y +Hong Xia,Feature Selection using Fuzzy Support Vector Machines.,2006,5,FO and DM,2,db/journals/fodm/fodm5.html#XiaH06,https://doi.org/10.1007/s10700-006-7336-8 +Zeshui Xu,On Compatibility of Interval Fuzzy Preference Relations.,2004,3,FO and DM,3,db/journals/fodm/fodm3.html#Xu04,https://doi.org/10.1023/B:FODM.0000036864.33950.1b +Ye Li,Supplier selection using axiomatic fuzzy set and TOPSIS methodology in supply chain management.,2012,11,FO and DM,2,db/journals/fodm/fodm11.html#LiLC12,https://doi.org/10.1007/s10700-012-9117-x +Saroj Kumar Pradhan,Neuro-fuzzy technique for navigation of multiple mobile robots.,2006,5,FO and DM,3,db/journals/fodm/fodm5.html#PradhanPP06,https://doi.org/10.1007/s10700-006-0014-z +Adam Janiak,The minimum spanning tree problem with fuzzy costs.,2008,7,FO and DM,2,db/journals/fodm/fodm7.html#JaniakK08,https://doi.org/10.1007/s10700-008-9030-5 +Tofigh Allahviranloo,Fuzzy linear matrix equation.,2009,8,FO and DM,2,db/journals/fodm/fodm8.html#AllahviranlooMB09,https://doi.org/10.1007/s10700-009-9058-1 +Masahiro Inuiguchi,Preface.,2004,3,FO and DM,4,db/journals/fodm/fodm3.html#Inuiguchi04,https://doi.org/10.1007/s10700-004-4199-8 +Vasile Lupulescu,Fuzzy delay differential equations.,2012,11,FO and DM,1,db/journals/fodm/fodm11.html#LupulescuA12,https://doi.org/10.1007/s10700-011-9112-7 +Ronald R. Yager,On characterizing features of OWA aggregation operators.,2014,13,FO and DM,1,db/journals/fodm/fodm13.html#YagerA14,https://doi.org/10.1007/s10700-013-9167-8 +Carmen De Maio,Linguistic fuzzy consensus model for collaborative development of fuzzy cognitive maps: a case study in software development risks.,2017,16,FO and DM,4,db/journals/fodm/fodm16.html#MaioFLO17,https://doi.org/10.1007/s10700-016-9259-3 +Mohit Kumar,Regularized Adaptation of Fuzzy Inference Systems. Modelling the Opinion of a Medical Expert about Physical Fitness: An Application.,2003,2,FO and DM,4,db/journals/fodm/fodm2.html#KumarSS03a,https://doi.org/10.1023/B:FODM.0000003952.07461.ed +Yu-Hsien Liao,The consistent value for fuzzy games: alternative axiomatizations.,2016,15,FO and DM,2,db/journals/fodm/fodm15.html#Liao16,https://doi.org/10.1007/s10700-015-9218-4 +Zhiguo Zeng,Belief reliability: a new metrics for products' reliability.,2013,12,FO and DM,1,db/journals/fodm/fodm12.html#ZengWK13,https://doi.org/10.1007/s10700-012-9138-5 +Jin Han Park,Fixed points in M-fuzzy metric spaces.,2008,7,FO and DM,4,db/journals/fodm/fodm7.html#ParkPK08,https://doi.org/10.1007/s10700-008-9039-9 +Satoshi Masuya,A fundamental study for partially defined cooperative games.,2016,15,FO and DM,3,db/journals/fodm/fodm15.html#MasuyaI16,https://doi.org/10.1007/s10700-015-9229-1 +Hsien-Chung Wu,Unifying the proper cores and dominance cores of cooperative fuzzy games.,2015,14,FO and DM,3,db/journals/fodm/fodm14.html#Wu15a,https://doi.org/10.1007/s10700-014-9203-3 +Shengju Sang,Price competition of manufacturers in supply chain under a fuzzy decision environment.,2015,14,FO and DM,3,db/journals/fodm/fodm14.html#Sang15,https://doi.org/10.1007/s10700-014-9202-4 +Takashi Hasuike,Robust-based interactive portfolio selection problems with an uncertainty set of returns.,2013,12,FO and DM,3,db/journals/fodm/fodm12.html#HasuikeK13,https://doi.org/10.1007/s10700-013-9157-x +Hsien-Chung Wu,Scalarization of the fuzzy optimization problems.,2006,5,FO and DM,4,db/journals/fodm/fodm5.html#Wu06,https://doi.org/10.1007/s10700-006-0019-7 +Irfan Ertugrul,Interactive fuzzy linear programming and an application sample at a textile firm.,2007,6,FO and DM,1,db/journals/fodm/fodm6.html#ErtugrulT07,https://doi.org/10.1007/s10700-006-0023-y +Mohit Kumar,Robust Solution to Fuzzy Identification Problem with Uncertain Data by Regularization.,2004,3,FO and DM,1,db/journals/fodm/fodm3.html#KumarSS04,https://doi.org/10.1023/B:FODM.0000013072.42941.0d +Yanmin Liu,The chain and substitution rules of interval-valued intuitionistic fuzzy calculus.,2018,17,FO and DM,3,db/journals/fodm/fodm17.html#LiuZX18,https://doi.org/10.1007/s10700-017-9275-y +Mourad Oussalah 0002,On the use of divergence distance in fuzzy clustering.,2008,7,FO and DM,2,db/journals/fodm/fodm7.html#OussalahN08,https://doi.org/10.1007/s10700-008-9028-z +G. M. Jan,Maximum Feasibility Problem for Continuous Linear Inequalities with Applications to Fuzzy Linear Programming.,2003,2,FO and DM,4,db/journals/fodm/fodm2.html#JanSW03,https://doi.org/10.1023/B:FODM.0000003951.40291.b8 +S. S. Appadoo,Application of possibility theory to investment decisions.,2008,7,FO and DM,1,db/journals/fodm/fodm7.html#AppadooBB08,https://doi.org/10.1007/s10700-007-9023-9 +Ronald R. Yager,On the consistency of fuzzy measures in multi-criteria aggregation.,2015,14,FO and DM,2,db/journals/fodm/fodm14.html#YagerA15,https://doi.org/10.1007/s10700-014-9194-0 +Li Zou,A uniform approach of linguistic truth values in sensor evaluation.,2008,7,FO and DM,4,db/journals/fodm/fodm7.html#ZouLWX08,https://doi.org/10.1007/s10700-008-9046-x +Rui-Sheng Wang,On the properties of sequences of fuzzy-valued Choquet integrable functions.,2008,7,FO and DM,4,db/journals/fodm/fodm7.html#WangH08,https://doi.org/10.1007/s10700-008-9040-3 +Jinwu Gao,Uncertainty theory with applications.,2013,12,FO and DM,1,db/journals/fodm/fodm12.html#GaoPL13,https://doi.org/10.1007/s10700-012-9142-9 +Jih-Chang Wang,Likelihood-based assignment methods for multiple criteria decision analysis based on interval-valued intuitionistic fuzzy sets.,2015,14,FO and DM,4,db/journals/fodm/fodm14.html#WangC15,https://doi.org/10.1007/s10700-015-9208-6 +Kai Yao,Conditional uncertain set and conditional membership function.,2018,17,FO and DM,2,db/journals/fodm/fodm17.html#Yao18,https://doi.org/10.1007/s10700-017-9271-2 +Guoli Wang,A novel job search problem in hybrid uncertain environment.,2013,12,FO and DM,3,db/journals/fodm/fodm12.html#WangTZ13,https://doi.org/10.1007/s10700-013-9154-0 +Gia Sirbiladze,Fuzzy identification problem for continuous extremal fuzzy dynamic system.,2010,9,FO and DM,3,db/journals/fodm/fodm9.html#Sirbiladze10,https://doi.org/10.1007/s10700-010-9081-2 +Yong Zhang,A Fuzzy support vector classifier based on Bayesian optimization.,2008,7,FO and DM,1,db/journals/fodm/fodm7.html#ZhangC08,https://doi.org/10.1007/s10700-007-9025-7 +Xingfang Zhang,Delayed renewal process with uncertain interarrival *.,2013,12,FO and DM,1,db/journals/fodm/fodm12.html#ZhangNM13,https://doi.org/10.1007/s10700-012-9144-7 +Zhong-Zhong Jiang,A fuzzy matching model with Hurwicz criteria for one-shot multi-attribute exchanges in E-brokerage.,2015,14,FO and DM,1,db/journals/fodm/fodm14.html#JiangZFC15,https://doi.org/10.1007/s10700-014-9189-x +Xiao Yao,Poincáre recurrence theorem in regular uncertain dynamic system.,2014,13,FO and DM,3,db/journals/fodm/fodm13.html#YaoK14,https://doi.org/10.1007/s10700-014-9180-6 +Shuenn-Ren Chen,On Optimal Forecasting with Soft Computation for Nonlinear Time Series.,2003,2,FO and DM,3,db/journals/fodm/fodm2.html#ChenW03,https://doi.org/10.1023/A:1025090420345 +Kalipada Maity,Numerical Approach of Multi-Objective Optimal Control Problem in Imprecise Environment.,2005,4,FO and DM,4,db/journals/fodm/fodm4.html#MaityM05,https://doi.org/10.1007/s10700-005-3666-1 +Ronald R. Yager,Generalized OWA Aggregation Operators.,2004,3,FO and DM,1,db/journals/fodm/fodm3.html#Yager04,https://doi.org/10.1023/B:FODM.0000013074.68765.97 +Mohit Kumar,A mixture of fuzzy filters applied to the analysis of heartbeat intervals.,2010,9,FO and DM,4,db/journals/fodm/fodm9.html#KumarWSS10,https://doi.org/10.1007/s10700-010-9089-7 +José Manuel Cadenas,Exact and heuristic procedures for solving the fuzzy portfolio selection problem.,2012,11,FO and DM,1,db/journals/fodm/fodm11.html#CadenasCGIL12,https://doi.org/10.1007/s10700-011-9114-5 +Lotfi A. Zadeh,Preface.,2002,1,FO and DM,1,db/journals/fodm/fodm1.html#Zadeh02,https://doi.org/10.1023/A:1013763405898 +Shouyang Wang,On Fuzzy Portfolio Selection Problems.,2002,1,FO and DM,4,db/journals/fodm/fodm1.html#WangZ02,https://doi.org/10.1023/A:1020907229361 +Constance A. Lightner,A Fuzzy Logic Approach to Buffer Management in ATM Networks.,2006,5,FO and DM,1,db/journals/fodm/fodm5.html#Lightner06,https://doi.org/10.1007/s10700-005-4915-z +Shukuan Liu,Stackelberg game models between two competitive retailers in fuzzy decision environment.,2014,13,FO and DM,1,db/journals/fodm/fodm13.html#LiuX14,https://doi.org/10.1007/s10700-013-9165-x +Jian Zhou,On the convergence of some possibilistic clustering algorithms.,2013,12,FO and DM,4,db/journals/fodm/fodm12.html#ZhouCY13,https://doi.org/10.1007/s10700-013-9159-8 +Jian-Zhang Wu,2-order additive fuzzy measure identification method based on diamond pairwise comparison and maximum entropy principle.,2010,9,FO and DM,4,db/journals/fodm/fodm9.html#WuZ10,https://doi.org/10.1007/s10700-010-9086-x +Cheng-Feng Hu,Randomly generating test problems for fuzzy relational equations.,2012,11,FO and DM,1,db/journals/fodm/fodm11.html#HuF12,https://doi.org/10.1007/s10700-011-9115-4 +Baoding Liu,A survey of credibility theory.,2006,5,FO and DM,4,db/journals/fodm/fodm5.html#Liu06a,https://doi.org/10.1007/s10700-006-0016-x +Jian Zhou,Multi-objective optimization in uncertain random environments.,2014,13,FO and DM,4,db/journals/fodm/fodm13.html#ZhouYW14,https://doi.org/10.1007/s10700-014-9183-3 +Ronald R. Yager,Bipolar aggregation using the Uninorms.,2011,10,FO and DM,1,db/journals/fodm/fodm10.html#YagerR11,https://doi.org/10.1007/s10700-010-9096-8 +Masahiro Inuiguchi,Bilevel linear programming with ambiguous objective function of the follower.,2016,15,FO and DM,4,db/journals/fodm/fodm15.html#InuiguchiS16,https://doi.org/10.1007/s10700-016-9231-2 +Hsien-Chung Wu,The optimality conditions for optimization problems with convex constraints and multiple fuzzy-valued objective functions.,2009,8,FO and DM,3,db/journals/fodm/fodm8.html#Wu09a,https://doi.org/10.1007/s10700-009-9061-6 +Hsien-Chung Wu,Proper cores and dominance cores of fuzzy games.,2012,11,FO and DM,1,db/journals/fodm/fodm11.html#Wu12,https://doi.org/10.1007/s10700-011-9116-3 +Chunqiao Tan,Atanassov's intuitionistic fuzzy Quasi-Choquet geometric operators and their applications to multicriteria decision making.,2015,14,FO and DM,2,db/journals/fodm/fodm14.html#TanJCI15,https://doi.org/10.1007/s10700-014-9196-y +Raluca Vernic,Optimal investment with a constraint on ruin for a fuzzy discrete-time insurance risk model.,2016,15,FO and DM,2,db/journals/fodm/fodm15.html#Vernic16,https://doi.org/10.1007/s10700-015-9221-9 +Zeshui Xu,Recent advances in intuitionistic fuzzy information aggregation.,2010,9,FO and DM,4,db/journals/fodm/fodm9.html#XuC10,https://doi.org/10.1007/s10700-010-9090-1 +Meilin Wen,The α-cost minimization model for capacitated facility location-allocation problem with uncertain demands.,2014,13,FO and DM,3,db/journals/fodm/fodm13.html#WenQK14,https://doi.org/10.1007/s10700-014-9179-z +Kaiqi Zou,An new initialization method for fuzzy c-means algorithm.,2008,7,FO and DM,4,db/journals/fodm/fodm7.html#ZouWH08,https://doi.org/10.1007/s10700-008-9048-8 +Masahiro Inuiguchi,Preface.,2005,4,FO and DM,1,db/journals/fodm/fodm4.html#Inuiguchi05,https://doi.org/10.1007/s10700-004-5566-1 +Guangji Zhang,New Kinds of Fuzzy Ideals in BCI-algebras.,2006,5,FO and DM,2,db/journals/fodm/fodm5.html#ZhangZLG06,https://doi.org/10.1007/s10700-006-7335-9 +S. Nanda,A new methodology for crisp equivalent of fuzzy chance constrained programming problem.,2008,7,FO and DM,1,db/journals/fodm/fodm7.html#NandaPD08,https://doi.org/10.1007/s10700-007-9024-8 +Yuan Gao,Uncertain inference control for balancing an inverted pendulum.,2012,11,FO and DM,4,db/journals/fodm/fodm11.html#Gao12,https://doi.org/10.1007/s10700-012-9124-y +Hsiao-Fan Wang,A possibilistic approach to the modeling and resolution of uncertain closed-loop logistics.,2012,11,FO and DM,2,db/journals/fodm/fodm11.html#WangH12,https://doi.org/10.1007/s10700-012-9120-2 +Hoang Viet Long,The existence and uniqueness of fuzzy solutions for hyperbolic partial differential equations.,2014,13,FO and DM,4,db/journals/fodm/fodm13.html#LongSHS14,https://doi.org/10.1007/s10700-014-9186-0 +Xuejie Bai,Semideviations of reduced fuzzy variables: a possibility approach.,2014,13,FO and DM,2,db/journals/fodm/fodm13.html#BaiL14,https://doi.org/10.1007/s10700-013-9175-8 +Hsien-Chung Wu,Duality Theory in Fuzzy Linear Programming Problems with Fuzzy Coefficients.,2003,2,FO and DM,1,db/journals/fodm/fodm2.html#Wu03a,https://doi.org/10.1023/A:1022852314914 +Zahra Mashayekhi,On optimizing a linear objective function subjected to fuzzy relation inequalities.,2009,8,FO and DM,1,db/journals/fodm/fodm8.html#MashayekhiK09,https://doi.org/10.1007/s10700-009-9054-5 +Hua Ke,Solving project scheduling problem with the philosophy of fuzzy random programming.,2012,11,FO and DM,3,db/journals/fodm/fodm11.html#KeMM12,https://doi.org/10.1007/s10700-012-9133-x +Hsiao-Fan Wang,Top-Down Fuzzy Decision Making with Partial Preference Information.,2002,1,FO and DM,2,db/journals/fodm/fodm1.html#WangH02,https://doi.org/10.1023/A:1015731117218 +A. Aggarwal,Application of linear programming with I-fuzzy sets to matrix games with I-fuzzy goals.,2012,11,FO and DM,4,db/journals/fodm/fodm11.html#AggarwalMC12,https://doi.org/10.1007/s10700-012-9123-z +Xueqin Feng,Measurability criteria for fuzzy random vectors.,2006,5,FO and DM,3,db/journals/fodm/fodm5.html#FengL06,https://doi.org/10.1007/s10700-006-0013-0 +Fanyong Meng 0001,Entropy and similarity measure for Atannasov's interval-valued intuitionistic fuzzy sets and their application.,2016,15,FO and DM,1,db/journals/fodm/fodm15.html#0001C16,https://doi.org/10.1007/s10700-015-9215-7 +Chang-Jiang Zhang,Contrast enhancement for image by WNN and GA combining PSNR with information entropy.,2008,7,FO and DM,4,db/journals/fodm/fodm7.html#ZhangH08,https://doi.org/10.1007/s10700-008-9042-1 +Ronald R. Yager,Extending the participatory learning paradigm to include source credibility.,2007,6,FO and DM,2,db/journals/fodm/fodm6.html#Yager07,https://doi.org/10.1007/s10700-007-9007-9 +Dorota Kuchta,Choice of the best alternative in case of a continuous set of states of nature-application of fuzzy numbers.,2007,6,FO and DM,2,db/journals/fodm/fodm6.html#Kuchta07,https://doi.org/10.1007/s10700-007-9001-2 +Morteza Pakdaman,On fuzzy linear projection equation and applications.,2016,15,FO and DM,2,db/journals/fodm/fodm15.html#PakdamanE16,https://doi.org/10.1007/s10700-015-9222-8 +Chee Peng Lim,Guest Editorial: Special issue on advances in computational intelligence paradigms and applications.,2008,7,FO and DM,3,db/journals/fodm/fodm7.html#LimJNB08,https://doi.org/10.1007/s10700-008-9031-4 +Bice Cavallo,Independence and convergence in non-additive settings.,2009,8,FO and DM,1,db/journals/fodm/fodm8.html#CavalloDS09,https://doi.org/10.1007/s10700-009-9050-9 +Jaroslav Ramík,A method for solving fuzzy multicriteria decision problems with dependent criteria.,2010,9,FO and DM,2,db/journals/fodm/fodm9.html#RamikP10,https://doi.org/10.1007/s10700-010-9078-x +Xiaoyu Ji,Multi-dimensional uncertain differential equation: existence and uniqueness of solution.,2015,14,FO and DM,4,db/journals/fodm/fodm14.html#JiZ15,https://doi.org/10.1007/s10700-015-9210-z +Lucio Ippolito,Extended Fuzzy C-Means and Genetic Algorithms to Optimize Power Flow Management in Hybrid Electric Vehicles.,2003,2,FO and DM,4,db/journals/fodm/fodm2.html#IppolitoLS03,https://doi.org/10.1023/B:FODM.0000003954.49357.b3 +Mario Enea,Project Selection by Constrained Fuzzy AHP.,2004,3,FO and DM,1,db/journals/fodm/fodm3.html#EneaP04,https://doi.org/10.1023/B:FODM.0000013071.63614.3d +Irina Georgescu,Ranking fuzzy choice functions by their rationality indicators.,2007,6,FO and DM,4,db/journals/fodm/fodm6.html#Georgescu07,https://doi.org/10.1007/s10700-007-9019-5 +Javad Behnamian,Survey on fuzzy shop scheduling.,2016,15,FO and DM,3,db/journals/fodm/fodm15.html#Behnamian16,https://doi.org/10.1007/s10700-015-9225-5 +Xintong Ge,A necessary condition of optimality for uncertain optimal control problem.,2013,12,FO and DM,1,db/journals/fodm/fodm12.html#GeZ13,https://doi.org/10.1007/s10700-012-9147-4 +Baoding Liu,Inequalities and Convergence Concepts of Fuzzy and Rough Variables.,2003,2,FO and DM,2,db/journals/fodm/fodm2.html#Liu03a,https://doi.org/10.1023/A:1023491000011 +Ricardo C. Silva,Fuzzy costs in quadratic programming problems.,2013,12,FO and DM,3,db/journals/fodm/fodm12.html#SilvaCV13,https://doi.org/10.1007/s10700-013-9153-1 +S. Nanda,A new solution method for fuzzy chance constrained programming problem.,2006,5,FO and DM,4,db/journals/fodm/fodm5.html#NandaPD06,https://doi.org/10.1007/s10700-006-0018-8 +Zeshui Xu,Some similarity measures of intuitionistic fuzzy sets and their applications to multiple attribute decision making.,2007,6,FO and DM,2,db/journals/fodm/fodm6.html#Xu07a,https://doi.org/10.1007/s10700-007-9004-z +Dug Hun Hong,Blackwell type theorem for general T-related and identically distributed fuzzy variables.,2016,15,FO and DM,4,db/journals/fodm/fodm15.html#Hong16,https://doi.org/10.1007/s10700-016-9234-z +Fanyong Meng 0001,The fuzzy core and Shapley function for dynamic fuzzy games on matroids.,2011,10,FO and DM,4,db/journals/fodm/fodm10.html#MengZ11,https://doi.org/10.1007/s10700-011-9111-8 +Pierpaolo D'Urso,Exponential distance-based fuzzy clustering for interval-valued data.,2017,16,FO and DM,1,db/journals/fodm/fodm16.html#DUrsoMGC17,https://doi.org/10.1007/s10700-016-9238-8 +John T. Rickard,Mountain Clustering on Non-Uniform Grids Using P-Trees.,2005,4,FO and DM,2,db/journals/fodm/fodm4.html#RickardYM05,https://doi.org/10.1007/s10700-004-5866-5 +Vidyottama Vijay,Bi-matrix Games with Fuzzy Goals and Fuzzy.,2004,3,FO and DM,4,db/journals/fodm/fodm3.html#VijayCB04,https://doi.org/10.1007/s10700-004-4202-4 +Ronald R. Yager,Heavy OWA Operators.,2002,1,FO and DM,4,db/journals/fodm/fodm1.html#Yager02a,https://doi.org/10.1023/A:1020959313432 +Mahdi Zarghami,A fuzzy-stochastic OWA model for robust multi-criteria decision making.,2008,7,FO and DM,1,db/journals/fodm/fodm7.html#ZarghamiSA08,https://doi.org/10.1007/s10700-007-9021-y +Jinwu Gao,Uncertain bimatrix game with applications.,2013,12,FO and DM,1,db/journals/fodm/fodm12.html#Gao13,https://doi.org/10.1007/s10700-012-9145-6 +Yuanyuan Zhang,Portfolio selection problems with Markowitz's mean-variance framework: a review of literature.,2018,17,FO and DM,2,db/journals/fodm/fodm17.html#ZhangLG18,https://doi.org/10.1007/s10700-017-9266-z +Yan-Kuen Wu,Pareto-optimal solution for multiple objective linear programming problems with fuzzy goals.,2015,14,FO and DM,1,db/journals/fodm/fodm14.html#WuLL15,https://doi.org/10.1007/s10700-014-9192-2 +Jaroslav Ramík,Isomorphisms between fuzzy pairwise comparison matrices.,2015,14,FO and DM,2,db/journals/fodm/fodm14.html#Ramik15,https://doi.org/10.1007/s10700-014-9199-8 +Salvatore Corrente,Handling imprecise evaluations in multiple criteria decision aiding and robust ordinal regression by n-point intervals.,2017,16,FO and DM,2,db/journals/fodm/fodm16.html#CorrenteGS17,https://doi.org/10.1007/s10700-016-9244-x +B. Shekar,A Framework for Evaluating Knowledge-Based Interestingness of Association Rules.,2004,3,FO and DM,2,db/journals/fodm/fodm3.html#ShekarN04,https://doi.org/10.1023/B:FODM.0000022043.43885.55 +Ronald R. Yager,Modeling holistic fuzzy implication using co-copulas.,2006,5,FO and DM,3,db/journals/fodm/fodm5.html#Yager06,https://doi.org/10.1007/s10700-006-0011-2 +Yuhong Sheng,Some results of moments of uncertain variable through inverse uncertainty distribution.,2015,14,FO and DM,1,db/journals/fodm/fodm14.html#ShengK15,https://doi.org/10.1007/s10700-014-9193-1 +Kiril Tenekedjiev,Justification and numerical realization of the uniform method for finding point estimates of interval elicited scaling constants.,2008,7,FO and DM,2,db/journals/fodm/fodm7.html#TenekedjievN08,https://doi.org/10.1007/s10700-008-9027-0 +Jie Lu 0001,A linguistic multi-criteria group decision support system for fabric hand evaluation.,2009,8,FO and DM,4,db/journals/fodm/fodm8.html#LuZZKMZ09,https://doi.org/10.1007/s10700-009-9068-z +Jihui Yang,Monomial geometric programming with fuzzy relation equation constraints.,2007,6,FO and DM,4,db/journals/fodm/fodm6.html#YangC07,https://doi.org/10.1007/s10700-007-9017-7 +Osonde Osoba,Triply fuzzy function approximation for hierarchical Bayesian inference.,2012,11,FO and DM,3,db/journals/fodm/fodm11.html#OsobaMK12,https://doi.org/10.1007/s10700-012-9130-0 +Vania Peneva,Aggregation of fuzzy preference relations to multicriteria decision making.,2007,6,FO and DM,4,db/journals/fodm/fodm6.html#PenevaP07,https://doi.org/10.1007/s10700-007-9018-6 +Antonia Azzini,A fuzzy approach to multimodal biometric continuous authentication.,2008,7,FO and DM,3,db/journals/fodm/fodm7.html#AzziniMSS08,https://doi.org/10.1007/s10700-008-9034-1 +Tasuku Toyonaga,A Crop Planning Problem with Fuzzy Random Profit Coefficients.,2005,4,FO and DM,1,db/journals/fodm/fodm4.html#ToyonagaII05,https://doi.org/10.1007/s10700-004-5570-5 +Shu-Cherng Fang,Message from the Editors.,2002,1,FO and DM,1,db/journals/fodm/fodm1.html#FangN02,https://doi.org/10.1023/A:1013741321827 +Zhihua Chen,Impacts of risk attitude and outside option on compensation contracts under different information structures.,2018,17,FO and DM,1,db/journals/fodm/fodm17.html#ChenLZ18,https://doi.org/10.1007/s10700-016-9263-7 +Shouyu Chen,Variable Fuzzy Sets and its Application in Comprehensive Risk Evaluation for Flood-control Engineering System.,2006,5,FO and DM,2,db/journals/fodm/fodm5.html#ChenG06,https://doi.org/10.1007/s10700-006-7333-y +Armando Blanco,A Fuzzy Valuation-Based Local Search Framework for Combinatorial Problems.,2002,1,FO and DM,2,db/journals/fodm/fodm1.html#BlancoPV02,https://doi.org/10.1023/A:1015783118126 +Carlos Cruz Corona,Extending and relating different approaches for solving fuzzy quadratic problems.,2011,10,FO and DM,3,db/journals/fodm/fodm10.html#CoronaSV11,https://doi.org/10.1007/s10700-011-9104-7 +José Luis García-Lapresta,Linguistic-based voting through centered OWA operators.,2009,8,FO and DM,4,db/journals/fodm/fodm8.html#Garcia-LaprestaM09,https://doi.org/10.1007/s10700-009-9067-0 +Yuanguo Zhu,Stability analysis of fuzzy linear differential equations.,2010,9,FO and DM,2,db/journals/fodm/fodm9.html#Zhu10,https://doi.org/10.1007/s10700-010-9080-3 +Jaroslav Ramík,Strong reciprocity and strong consistency in pairwise comparison matrix with fuzzy elements.,2018,17,FO and DM,3,db/journals/fodm/fodm17.html#Ramik18,https://doi.org/10.1007/s10700-017-9273-0 +Behrouz Kheirfam,The dual simplex method and sensitivity analysis for fuzzy linear programming with symmetric trapezoidal numbers.,2013,12,FO and DM,2,db/journals/fodm/fodm12.html#KheirfamV13,https://doi.org/10.1007/s10700-012-9152-7 +Shunqin Li,Poisson process with fuzzy rates.,2010,9,FO and DM,3,db/journals/fodm/fodm9.html#Li10a,https://doi.org/10.1007/s10700-010-9082-1 +Zeshui Xu,Multi-person multi-attribute decision making models under intuitionistic fuzzy environment.,2007,6,FO and DM,3,db/journals/fodm/fodm6.html#Xu07b,https://doi.org/10.1007/s10700-007-9009-7 +Zeshui Xu,Intuitionistic and interval-valued intutionistic fuzzy preference relations and their measures of similarity for the evaluation of agreement within a group.,2009,8,FO and DM,2,db/journals/fodm/fodm8.html#XuY09,https://doi.org/10.1007/s10700-009-9056-3 +Gisella Facchinetti,Ranking Functions Induced by Weighted Average of Fuzzy Numbers.,2002,1,FO and DM,3,db/journals/fodm/fodm1.html#Facchinetti02,https://doi.org/10.1023/A:1019692914431 +Ronald R. Yager,Aggregation of ordinal information.,2007,6,FO and DM,3,db/journals/fodm/fodm6.html#Yager07a,https://doi.org/10.1007/s10700-007-9008-8 +Xiangfeng Yang,Uncertain partial differential equation with application to heat conduction.,2017,16,FO and DM,3,db/journals/fodm/fodm16.html#YangY17,https://doi.org/10.1007/s10700-016-9253-9 +Huchang Liao,A VIKOR-based method for hesitant fuzzy multi-criteria decision making.,2013,12,FO and DM,4,db/journals/fodm/fodm12.html#LiaoX13,https://doi.org/10.1007/s10700-013-9162-0 +Yawei Li,Fuzzy Pattern Recognition Approach to Construction Contractor Selection.,2005,4,FO and DM,2,db/journals/fodm/fodm4.html#LiCN05,https://doi.org/10.1007/s10700-004-5867-4 +Michio Sugeno,Obituary: Professor Toshiro Terano.,2005,4,FO and DM,4,db/journals/fodm/fodm4.html#SugenoO05,https://doi.org/10.1007/s10700-005-3662-5 +M. R. Safi,A geometric approach for solving fuzzy linear programming problems.,2007,6,FO and DM,4,db/journals/fodm/fodm6.html#SafiMZ07,https://doi.org/10.1007/s10700-007-9016-8 +Masahiro Inuiguchi,Enumeration of All Possibly Optimal Vertices with Possible Optimality Degrees in Linear Programming Problems with a Possibilistic Objective Function.,2004,3,FO and DM,4,db/journals/fodm/fodm3.html#Inuiguchi04a,https://doi.org/10.1007/s10700-004-4201-5 +Deng-Feng Li,Extension principles for interval-valued intuitionistic fuzzy sets and algebraic operations.,2011,10,FO and DM,1,db/journals/fodm/fodm10.html#Li11,https://doi.org/10.1007/s10700-010-9095-9 +Van-Nam Huynh,Decision making under uncertainty with fuzzy targets.,2007,6,FO and DM,3,db/journals/fodm/fodm6.html#HuynhNRH07,https://doi.org/10.1007/s10700-007-9011-0 +Cheng-Feng Hu,Set covering-based surrogate approach for solving sup-T equation constrained optimization problems.,2011,10,FO and DM,2,db/journals/fodm/fodm10.html#HuF11,https://doi.org/10.1007/s10700-011-9099-0 +Kevin Kam Fung Yuen,Combining compound linguistic ordinal scale and cognitive pairwise comparison in the rectified fuzzy TOPSIS method for group decision making.,2014,13,FO and DM,1,db/journals/fodm/fodm13.html#Yuen14,https://doi.org/10.1007/s10700-013-9168-7 +Bogdana Stanojevic,Parametric computation of a fuzzy set solution to a class of fuzzy linear fractional optimization problems.,2016,15,FO and DM,4,db/journals/fodm/fodm15.html#StanojevicS16,https://doi.org/10.1007/s10700-016-9232-1 +Ronald R. Yager,Joint cumulative distribution functions for Dempster-Shafer belief structures using copulas.,2013,12,FO and DM,4,db/journals/fodm/fodm12.html#Yager13,https://doi.org/10.1007/s10700-013-9163-z +Maryam Amir Haeri,Estimation of mutual information by the fuzzy histogram.,2014,13,FO and DM,3,db/journals/fodm/fodm13.html#HaeriE14,https://doi.org/10.1007/s10700-014-9178-0 +Zhou-Jing Wang,Geometric consistency based interval weight elicitation from intuitionistic preference relations using logarithmic least square optimization.,2015,14,FO and DM,3,db/journals/fodm/fodm14.html#Wang15,https://doi.org/10.1007/s10700-014-9205-1 +Meilin Wen,Reliability analysis in uncertain random system.,2016,15,FO and DM,4,db/journals/fodm/fodm15.html#WenK16,https://doi.org/10.1007/s10700-016-9235-y +Pingke Li,On the unique solvability of fuzzy relational equations.,2011,10,FO and DM,2,db/journals/fodm/fodm10.html#LiF11,https://doi.org/10.1007/s10700-011-9100-y +Zeshui Xu,On Method for Uncertain Multiple Attribute Decision Making Problems with Uncertain Multiplicative Preference Information on Alternatives.,2005,4,FO and DM,2,db/journals/fodm/fodm4.html#Xu05,https://doi.org/10.1007/s10700-004-5869-2 +Baoding Liu,Membership functions and operational law of uncertain sets.,2012,11,FO and DM,4,db/journals/fodm/fodm11.html#Liu12,https://doi.org/10.1007/s10700-012-9128-7 +Jin Han Park,Extension of the VIKOR method for group decision making with interval-valued intuitionistic fuzzy information.,2011,10,FO and DM,3,db/journals/fodm/fodm10.html#ParkCK11,https://doi.org/10.1007/s10700-011-9102-9 +Xiaoyu Ji,No-arbitrage theorem for multi-factor uncertain stock model with floating interest rate.,2017,16,FO and DM,2,db/journals/fodm/fodm16.html#JiK17,https://doi.org/10.1007/s10700-016-9246-8 +Yuhan Liu,Uncertain random programming with applications.,2013,12,FO and DM,2,db/journals/fodm/fodm12.html#Liu13,https://doi.org/10.1007/s10700-012-9149-2 +Baoding Liu,Guest Editorial Special Issue for the 9th Bellman Continuum.,2003,2,FO and DM,2,db/journals/fodm/fodm2.html#Liu03,https://doi.org/10.1023/A:1023480515941 +Fanyong Meng 0001,A robust additive consistency-based method for decision making with triangular fuzzy reciprocal preference relations.,2018,17,FO and DM,1,db/journals/fodm/fodm17.html#MengC18,https://doi.org/10.1007/s10700-016-9262-8 +Hsien-Chung Wu,Fuzzy Optimization Problems Based on Ordering Cones.,2003,2,FO and DM,1,db/journals/fodm/fodm2.html#Wu03,https://doi.org/10.1023/A:1022896029935 +José Javier Astrain,Approximate String Matching Using Deformed Fuzzy Automata: A Learning Experience.,2004,3,FO and DM,2,db/journals/fodm/fodm3.html#AstrainGMVF04,https://doi.org/10.1023/B:FODM.0000022042.64558.1d +Farid Aiche,Chance-constrained programming with fuzzy stochastic coefficients.,2013,12,FO and DM,2,db/journals/fodm/fodm12.html#AicheAD13,https://doi.org/10.1007/s10700-012-9151-8 +Issam Dagher,Fuzzy clustering using multiple Gaussian kernels with optimized-parameters.,2018,17,FO and DM,2,db/journals/fodm/fodm17.html#Dagher18,https://doi.org/10.1007/s10700-017-9268-x +Weldon A. Lodwick,Solving Large-Scale Fuzzy and Possibilistic Optimization Problems.,2005,4,FO and DM,4,db/journals/fodm/fodm4.html#LodwickB05,https://doi.org/10.1007/s10700-005-3663-4 +Li Duan,A portfolio selection model using fuzzy returns.,2011,10,FO and DM,2,db/journals/fodm/fodm10.html#DuanS11,https://doi.org/10.1007/s10700-011-9101-x +S. M. Saati,Efficiency Analysis and Ranking of DMUs with Fuzzy Data.,2002,1,FO and DM,3,db/journals/fodm/fodm1.html#SaatiMJ02,https://doi.org/10.1023/A:1019648512614 +Eiichiro Takahagi,A fuzzy measure identification method by diamond pairwise comparisons and fs transformation.,2008,7,FO and DM,3,db/journals/fodm/fodm7.html#Takahagi08,https://doi.org/10.1007/s10700-008-9032-3 +Xiqin Wen,Supplier selection in supplier chain management using Choquet integral-based linguistic operators under fuzzy heterogeneous environment.,2016,15,FO and DM,3,db/journals/fodm/fodm15.html#WenYXYP16,https://doi.org/10.1007/s10700-015-9228-2 +Shunmin Wang,Solution Sets of Interval-Valued Fuzzy Relational Equations.,2003,2,FO and DM,1,db/journals/fodm/fodm2.html#WangFN03,https://doi.org/10.1023/A:1022800330844 +Hsien-Chung Wu,Generalized Extension Principle.,2010,9,FO and DM,1,db/journals/fodm/fodm9.html#Wu10,https://doi.org/10.1007/s10700-010-9075-0 +Surajit Borkotokey,Dynamic resource allocation in fuzzy coalitions: a game theoretic model.,2014,13,FO and DM,2,db/journals/fodm/fodm13.html#BorkotokeyN14,https://doi.org/10.1007/s10700-013-9172-y +Konstantin Avrachenkov,Fuzzy Markov Chains and Decision-Making.,2002,1,FO and DM,2,db/journals/fodm/fodm1.html#AvrachenkovS02,https://doi.org/10.1023/A:1015729400380 +Gleb Beliakov,Learning Weights in the Generalized OWA Operators.,2005,4,FO and DM,2,db/journals/fodm/fodm4.html#Beliakov05,https://doi.org/10.1007/s10700-004-5868-3 +Ronald R. Yager,A measure based approach to the fusion of possibilistic and probabilistic uncertainty.,2011,10,FO and DM,2,db/journals/fodm/fodm10.html#Yager11,https://doi.org/10.1007/s10700-011-9098-1 +Zeshui Xu,An interactive procedure for linguistic multiple attribute decision making with incomplete weight information.,2007,6,FO and DM,1,db/journals/fodm/fodm6.html#Xu07,https://doi.org/10.1007/s10700-006-0022-z +Barbara Gladysz,Fuzzy robust courses scheduling problem.,2007,6,FO and DM,2,db/journals/fodm/fodm6.html#Gladysz07,https://doi.org/10.1007/s10700-007-9003-0 +Hisao Ishibuchi,Comparison of Heuristic Criteria for Fuzzy Rule Selection in Classification Problems.,2004,3,FO and DM,2,db/journals/fodm/fodm3.html#IshibuchiY04,https://doi.org/10.1023/B:FODM.0000022041.98349.12 +Ronald R. Yager,Measure based representation of uncertain information.,2012,11,FO and DM,4,db/journals/fodm/fodm11.html#YagerA12,https://doi.org/10.1007/s10700-012-9127-8 +Yan-Kuen Wu,A Note on Fuzzy Relation Programming Problems with Max-Strict-t-Norm Composition.,2004,3,FO and DM,3,db/journals/fodm/fodm3.html#WuG04,https://doi.org/10.1023/B:FODM.0000036862.45420.ea +José L. Ruiz,Fuzzy cross-efficiency evaluation: a possibility approach.,2017,16,FO and DM,1,db/journals/fodm/fodm16.html#RuizS17,https://doi.org/10.1007/s10700-016-9240-1 +Xin Liu,Disturbing Fuzzy Propositional Logic and its Operators.,2006,5,FO and DM,2,db/journals/fodm/fodm5.html#Liu06,https://doi.org/10.1007/s10700-006-7334-x +Yong-Jun Liu,Fuzzy portfolio selection model with real features and different decision behaviors.,2018,17,FO and DM,3,db/journals/fodm/fodm17.html#LiuZ18,https://doi.org/10.1007/s10700-017-9274-z +Yian-Kui Liu,Fuzzy Random Variables: A Scalar Expected Value Operator.,2003,2,FO and DM,2,db/journals/fodm/fodm2.html#LiuL03,https://doi.org/10.1023/A:1023447217758 +Dug Hun Hong,Blackwell's theorem for fuzzy variables.,2014,13,FO and DM,2,db/journals/fodm/fodm13.html#Hong14,https://doi.org/10.1007/s10700-013-9173-x +Deng-Feng Li,Alfa-cut based linear programming methodology for constrained matrix games with payoffs of trapezoidal fuzzy numbers.,2013,12,FO and DM,2,db/journals/fodm/fodm12.html#LiH13,https://doi.org/10.1007/s10700-012-9148-3 +Jianke Zhang,Relationships between interval-valued vector optimization problems and vector variational inequalities.,2016,15,FO and DM,1,db/journals/fodm/fodm15.html#ZhangZML16,https://doi.org/10.1007/s10700-015-9212-x +Masami Kurano,A Fuzzy Stopping Problem with the Concept.,2004,3,FO and DM,4,db/journals/fodm/fodm3.html#KuranoYNY04,https://doi.org/10.1007/s10700-004-4204-2 +Hajime Nobuhara,Fuzzy Relation Equations for Compression/Decompression Processes of Colour Images in the RGB and YUV Colour Spaces.,2005,4,FO and DM,3,db/journals/fodm/fodm4.html#NobuharaHMPS05,https://doi.org/10.1007/s10700-005-1892-1 +Kevin Kam Fung Yuen,Membership maximization prioritization methods for fuzzy analytic hierarchy process.,2012,11,FO and DM,2,db/journals/fodm/fodm11.html#Yuen12,https://doi.org/10.1007/s10700-012-9119-8 +Emmanuel Valvis,A new linear ordering of fuzzy numbers on subsets of F(\pmb\mathbbR).,2009,8,FO and DM,2,db/journals/fodm/fodm8.html#Valvis09,https://doi.org/10.1007/s10700-009-9057-2 +Hong Mai,"Comment on ""Duality theory in fuzzy linear programming problems with fuzzy coefficients"".",2016,15,FO and DM,3,db/journals/fodm/fodm15.html#MaiCZL16,https://doi.org/10.1007/s10700-015-9224-6 +Baoding Liu,Uncertainty distribution and independence of uncertain processes.,2014,13,FO and DM,3,db/journals/fodm/fodm13.html#Liu14,https://doi.org/10.1007/s10700-014-9181-5 +Kai Yao,Uncertain calculus with renewal process.,2012,11,FO and DM,3,db/journals/fodm/fodm11.html#Yao12,https://doi.org/10.1007/s10700-012-9132-y +Kai Meng Tay,On the use of fuzzy inference techniques in assessment models: part II: industrial applications.,2008,7,FO and DM,3,db/journals/fodm/fodm7.html#TayL08a,https://doi.org/10.1007/s10700-008-9037-y +Waichon Lio,Uncertain data envelopment analysis with imprecisely observed inputs and outputs.,2018,17,FO and DM,3,db/journals/fodm/fodm17.html#LioL18,https://doi.org/10.1007/s10700-017-9276-x +Ruiqing Zhao,Fuzzy random renewal process and renewal reward process.,2007,6,FO and DM,3,db/journals/fodm/fodm6.html#ZhaoTW07,https://doi.org/10.1007/s10700-007-9012-z +Hua Ke,New fuzzy models for time-cost trade-off problem.,2010,9,FO and DM,2,db/journals/fodm/fodm9.html#KeMGX10,https://doi.org/10.1007/s10700-010-9076-z +Michel Grabisch,Subjective Evaluation of Discomfort in Sitting Positions.,2002,1,FO and DM,3,db/journals/fodm/fodm1.html#GrabischDLP02,https://doi.org/10.1023/A:1019640913523 +Ronald R. Yager,Some aspects of intuitionistic fuzzy sets.,2009,8,FO and DM,1,db/journals/fodm/fodm8.html#Yager09,https://doi.org/10.1007/s10700-009-9052-7 +Jeong-Su Han,Feature Set Extraction Algorithm based on Soft Computing Techniques and Its Application to EMG Pattern Classification.,2002,1,FO and DM,3,db/journals/fodm/fodm1.html#HanBB02,https://doi.org/10.1023/A:1019688829453 +Bing-Yuan Cao,Preface.,2006,5,FO and DM,2,db/journals/fodm/fodm5.html#Cao06,https://doi.org/10.1007/s10700-006-7328-8 +S. Rivaz,Using modified maximum regret for finding a necessarily efficient solution in an interval MOLP problem.,2016,15,FO and DM,3,db/journals/fodm/fodm15.html#RivazYH16,https://doi.org/10.1007/s10700-015-9226-4 +Bo Wang,A unit commitment-based fuzzy bilevel electricity trading model under load uncertainty.,2016,15,FO and DM,1,db/journals/fodm/fodm15.html#WangZW16,https://doi.org/10.1007/s10700-015-9216-6 +Baoding Liu,A new definition of independence of uncertain sets.,2013,12,FO and DM,4,db/journals/fodm/fodm12.html#Liu13a,https://doi.org/10.1007/s10700-013-9164-y +YoungSu Yun,Performance Analysis of Adaptive Genetic Algorithms with Fuzzy Logic and Heuristics.,2003,2,FO and DM,2,db/journals/fodm/fodm2.html#YunG03,https://doi.org/10.1023/A:1023499201829 +Shunmin Wang,Errata.,2007,6,FO and DM,3,db/journals/fodm/fodm6.html#WangFN07,https://doi.org/10.1007/s10700-007-9013-y +Ta-Wei Hung,The bi-objective fuzzy c-means cluster analysis for TSK fuzzy system identification.,2007,6,FO and DM,1,db/journals/fodm/fodm6.html#Hung07,https://doi.org/10.1007/s10700-006-0024-x +Antonio di Nola,An Evolutionary Approach to Spatial Fuzzy c-Means Clustering.,2002,1,FO and DM,2,db/journals/fodm/fodm1.html#NolaLS02,https://doi.org/10.1023/A:1015787202197 +Zhiming Zhang,Some discussions on uncertain measure.,2011,10,FO and DM,1,db/journals/fodm/fodm10.html#Zhang11,https://doi.org/10.1007/s10700-010-9091-0 +Bing-yuan Cao,Cluster analysis model with T -fuzzy data.,2008,7,FO and DM,4,db/journals/fodm/fodm7.html#Cao08a,https://doi.org/10.1007/s10700-008-9041-2 +Jiuping Xu,A multi-objective chance-constrained network optimal model with random fuzzy coefficients and its application to logistics distribution center location problem.,2011,10,FO and DM,3,db/journals/fodm/fodm10.html#XuYZ11,https://doi.org/10.1007/s10700-011-9105-6 +Masahiro Inuiguchi,Possibilistic Linear Programming with Fuzzy If-Then Rule Coefficients.,2002,1,FO and DM,1,db/journals/fodm/fodm1.html#InuiguchiT02,https://doi.org/10.1023/A:1013727809532 +Philippe Fortemps,A Graded Quadrivalent Logic for Ordinal Preference Modelling: Loyola-Like Approach.,2002,1,FO and DM,1,db/journals/fodm/fodm1.html#FortempsS02,https://doi.org/10.1023/A:1013731910441 +Jaroslav Ramík,Duality in Fuzzy Linear Programming: Some New Concepts and Results.,2005,4,FO and DM,1,db/journals/fodm/fodm4.html#Ramik05,https://doi.org/10.1007/s10700-004-5568-z +Shunmin Wang,Solution Sets of Interval-Valued Min-S-Norm Fuzzy Relational Equations.,2005,4,FO and DM,4,db/journals/fodm/fodm4.html#WangFN05,https://doi.org/10.1007/s10700-005-3667-0 +Mingzhi Chen,A new equivalent transformation for interval inequality constraints of interval linear programming.,2016,15,FO and DM,2,db/journals/fodm/fodm15.html#ChenWWY16,https://doi.org/10.1007/s10700-015-9219-3 +Dug Hun Hong,Uniform convergence of fuzzy random renewal process.,2010,9,FO and DM,3,db/journals/fodm/fodm9.html#Hong10,https://doi.org/10.1007/s10700-010-9085-y +Jin Peng,Risk metrics of loss function for uncertain system.,2013,12,FO and DM,1,db/journals/fodm/fodm12.html#Peng13,https://doi.org/10.1007/s10700-012-9146-5 +Shu-Cherng Fang,Solving Fuzzy Variational Inequalities.,2002,1,FO and DM,1,db/journals/fodm/fodm1.html#FangH02,https://doi.org/10.1023/A:1013736011349 +Augustine O. Esogbue,Reservoir operations optimization via fuzzy criterion decision processes.,2006,5,FO and DM,3,db/journals/fodm/fodm5.html#EsogbueL06,https://doi.org/10.1007/s10700-006-0015-y +Zeshui Xu,Consensus building with a group of decision makers under the hesitant probabilistic fuzzy environment.,2017,16,FO and DM,4,db/journals/fodm/fodm16.html#XuZ17,https://doi.org/10.1007/s10700-016-9257-5 +Davide Martinetti,On a correspondence between probabilistic and fuzzy choice functions.,2018,17,FO and DM,3,db/journals/fodm/fodm17.html#MartinettiMDB18,https://doi.org/10.1007/s10700-017-9272-1 +Xiao-Li Wu,Optimizing fuzzy portfolio selection problems by parametric quadratic programming.,2012,11,FO and DM,4,db/journals/fodm/fodm11.html#WuL12,https://doi.org/10.1007/s10700-012-9126-9 +Xiumei Zhang,A new method for ranking intuitionistic fuzzy values and its application in multi-attribute decision making.,2012,11,FO and DM,2,db/journals/fodm/fodm11.html#ZhangX12,https://doi.org/10.1007/s10700-012-9118-9 +Shui-Li Chen,χ9* -Convergence theory of filters in Lχ9* -spaces.,2008,7,FO and DM,4,db/journals/fodm/fodm7.html#ChenCZ08,https://doi.org/10.1007/s10700-008-9043-0 +Xiaoxia Huang,A risk index model for portfolio selection with returns subject to experts' estimations.,2012,11,FO and DM,4,db/journals/fodm/fodm11.html#Huang12,https://doi.org/10.1007/s10700-012-9125-x +Salvatore Greco,Generalized bipolar product and sum.,2016,15,FO and DM,1,db/journals/fodm/fodm15.html#GrecoMR16,https://doi.org/10.1007/s10700-015-9217-5 +Hyunseok Shin,Fuzzy Partial State Feedback Control of Discrete Nonlinear Systems with Unknown Time-Delay.,2004,3,FO and DM,1,db/journals/fodm/fodm3.html#ShinCKP04,https://doi.org/10.1023/B:FODM.0000013073.24535.7d +Amin Mansoori,A neural network to solve quadratic programming problems with fuzzy parameters.,2018,17,FO and DM,1,db/journals/fodm/fodm17.html#MansooriEE18,https://doi.org/10.1007/s10700-016-9261-9 +Heng-you Lan,Solving implicit mathematical programs with fuzzy variational inequality constraints based on the method of centres with entropic regularization.,2015,14,FO and DM,4,db/journals/fodm/fodm14.html#LanN15,https://doi.org/10.1007/s10700-015-9207-7 +Masayuki Kageyama,Discrete-time hybrid processes and discounted total expected values.,2011,10,FO and DM,4,db/journals/fodm/fodm10.html#KageyamaYH11,https://doi.org/10.1007/s10700-011-9109-2 +John T. Rickard,A concept geometry for conceptual spaces.,2006,5,FO and DM,4,db/journals/fodm/fodm5.html#Rickard06,https://doi.org/10.1007/s10700-006-0020-1 +Amy H. I. Lee,The construction of a comprehensive model for production strategy evaluation.,2010,9,FO and DM,2,db/journals/fodm/fodm9.html#LeeLWT10,https://doi.org/10.1007/s10700-010-9077-y +Ronald R. Yager,On the Evaluation of Uncertain Courses of Action.,2002,1,FO and DM,1,db/journals/fodm/fodm1.html#Yager02,https://doi.org/10.1023/A:1013715523644 +Kai Yao,Uncertain contour process and its application in stock model with floating interest rate.,2015,14,FO and DM,4,db/journals/fodm/fodm14.html#Yao15a,https://doi.org/10.1007/s10700-015-9211-y +Zeshui Xu,A Direct Approach to Group Decision Making with Uncertain Additive Linguistic Preference Relations.,2006,5,FO and DM,1,db/journals/fodm/fodm5.html#Xu06,https://doi.org/10.1007/s10700-005-4913-1 +Mingfa Zheng,Relations among efficient solutions in uncertain multiobjective programming.,2017,16,FO and DM,3,db/journals/fodm/fodm16.html#ZhengYWL17,https://doi.org/10.1007/s10700-016-9252-x +Yeong-Cheng Liou,Bilevel Decision with Generalized Semi-infinite Optimization for Fuzzy Mappings as Lower Level Problems.,2005,4,FO and DM,1,db/journals/fodm/fodm4.html#LiouWY05,https://doi.org/10.1007/s10700-004-5569-y +Zhi-Yuan Feng,Options pricing with time changed Lévy processes under imprecise information.,2015,14,FO and DM,1,db/journals/fodm/fodm14.html#FengCLJ15,https://doi.org/10.1007/s10700-014-9191-3 +Ronald R. Yager,Criteria satisfaction under measure based uncertainty.,2010,9,FO and DM,3,db/journals/fodm/fodm9.html#Yager10,https://doi.org/10.1007/s10700-010-9084-z +Feng Shen,An automatic ranking approach for multi-criteria group decision making under intuitionistic fuzzy environment.,2015,14,FO and DM,3,db/journals/fodm/fodm14.html#ShenXX15,https://doi.org/10.1007/s10700-014-9201-5 +Yiyao Sun,Mean-reverting stock model with floating interest rate in uncertain environment.,2017,16,FO and DM,2,db/journals/fodm/fodm16.html#SunS17,https://doi.org/10.1007/s10700-016-9247-7 +Rong-Xi Zhou,A portfolio optimization model based on information entropy and fuzzy time series.,2015,14,FO and DM,4,db/journals/fodm/fodm14.html#ZhouYYR15,https://doi.org/10.1007/s10700-015-9206-8 +Deandra Tillman Cassone,Successive Proportional Additive Numeration Using Fuzzy Linguistic Labels (Fuzzy Linguistic SPAN).,2005,4,FO and DM,3,db/journals/fodm/fodm4.html#CassoneB05,https://doi.org/10.1007/s10700-005-1886-z +Burcu Adivar,International disaster relief planning with fuzzy credibility.,2010,9,FO and DM,4,db/journals/fodm/fodm9.html#AdivarM10,https://doi.org/10.1007/s10700-010-9088-8 +Isnaini Rosyida,An uncertain chromatic number of an uncertain graph based on α-cut coloring.,2018,17,FO and DM,1,db/journals/fodm/fodm17.html#RosyidaPCWIS18,https://doi.org/10.1007/s10700-016-9260-x +Jingfeng Tian,Inequalities and mathematical properties of uncertain variables.,2011,10,FO and DM,4,db/journals/fodm/fodm10.html#Tian11,https://doi.org/10.1007/s10700-011-9110-9 +Taifu Li,Hardware Implementation of Fuzzy PID Controllers.,2006,5,FO and DM,2,db/journals/fodm/fodm5.html#LiXZTX06,https://doi.org/10.1007/s10700-006-7330-1 +Jerry M. Mendel,Historical reflections and new positions on perceptual computing.,2009,8,FO and DM,4,db/journals/fodm/fodm8.html#Mendel09,https://doi.org/10.1007/s10700-009-9070-5 +Ting-Yu Chen,IVIF-PROMETHEE outranking methods for multiple criteria decision analysis based on interval-valued intuitionistic fuzzy sets.,2015,14,FO and DM,2,db/journals/fodm/fodm14.html#Chen15,https://doi.org/10.1007/s10700-014-9195-z +Mohit Kumar,Robust Adaptive Fuzzy Identification of Time-Varying Processes with Uncertain Data. Handling Uncertainties in the Physical Fitness Fuzzy Approximation with Real World Medical Data: An Application.,2003,2,FO and DM,3,db/journals/fodm/fodm2.html#KumarSS03,https://doi.org/10.1023/A:1025046621254 +Atanu Sengupta,Solving the Shortest Path Problem with Interval Arcs.,2006,5,FO and DM,1,db/journals/fodm/fodm5.html#SenguptaP06,https://doi.org/10.1007/s10700-005-4916-y +Alejandra Duenas,Multi-objective genetic algorithm for single machine scheduling problem under fuzziness.,2008,7,FO and DM,1,db/journals/fodm/fodm7.html#DuenasP08,https://doi.org/10.1007/s10700-007-9026-6 +Thitipong Jamrus,Multistage production distribution under uncertain demands with integrated discrete particle swarm optimization and extended priority-based hybrid genetic algorithm.,2015,14,FO and DM,3,db/journals/fodm/fodm14.html#JamrusCGS15,https://doi.org/10.1007/s10700-014-9200-6 +Rangasamy Parvathi,Intuitionistic fuzzy linear regression analysis.,2013,12,FO and DM,2,db/journals/fodm/fodm12.html#ParvathiMAA13,https://doi.org/10.1007/s10700-012-9150-9 +Hsien-Chung Wu,Saddle Point Optimality Conditions in Fuzzy Optimization Problems.,2003,2,FO and DM,3,db/journals/fodm/fodm2.html#Wu03b,https://doi.org/10.1023/A:1025098722162 +Fang-Fang Guo,An Algorithm for Solving Optimization Problems with One Linear Objective Function and Finitely Many Constraints of Fuzzy Relation Inequalities.,2006,5,FO and DM,1,db/journals/fodm/fodm5.html#GuoX06,https://doi.org/10.1007/s10700-005-4914-0 +Hsien-Chung Wu,The Karush-Kuhn-Tucker optimality conditions for multi-objective programming problems with fuzzy-valued objective functions.,2009,8,FO and DM,1,db/journals/fodm/fodm8.html#Wu09,https://doi.org/10.1007/s10700-009-9049-2 +Dechao Li,Natural negation of interval-valued t-(co) norms and implications.,2016,15,FO and DM,1,db/journals/fodm/fodm15.html#LiXJ16,https://doi.org/10.1007/s10700-015-9214-8 +Azedine Boulmakoul,An original approach to ranking fuzzy numbers by inclusion index and Bitset Encoding.,2017,16,FO and DM,1,db/journals/fodm/fodm16.html#BoulmakoulLSG17,https://doi.org/10.1007/s10700-016-9237-9 +Xunjie Gou,Exponential operations for intuitionistic fuzzy numbers and interval numbers in multi-attribute decision making.,2017,16,FO and DM,2,db/journals/fodm/fodm16.html#GouX17,https://doi.org/10.1007/s10700-016-9243-y +Pingke Li,On the resolution and optimization of a system of fuzzy relational equations with sup- T composition.,2008,7,FO and DM,2,db/journals/fodm/fodm7.html#LiF08,https://doi.org/10.1007/s10700-008-9029-y +Zeshui Xu,Fuzzy ordered distance measures.,2012,11,FO and DM,1,db/journals/fodm/fodm11.html#Xu12,https://doi.org/10.1007/s10700-011-9113-6 +Juan J. Nieto,Exact solution to the periodic boundary value problem for a first-order linear fuzzy differential equation with impulses.,2011,10,FO and DM,4,db/journals/fodm/fodm10.html#NietoRV11,https://doi.org/10.1007/s10700-011-9108-3 +D.-F. Li,A fuzzy closeness approach to fuzzy multi-attribute decision making.,2007,6,FO and DM,3,db/journals/fodm/fodm6.html#Li07,https://doi.org/10.1007/s10700-007-9010-1 +Tao Hong 0003,Fuzzy interaction regression for short term load forecasting.,2014,13,FO and DM,1,db/journals/fodm/fodm13.html#HongW14,https://doi.org/10.1007/s10700-013-9166-9 +Xiaoxia Huang,Mean-risk model for uncertain portfolio selection.,2011,10,FO and DM,1,db/journals/fodm/fodm10.html#Huang11,https://doi.org/10.1007/s10700-010-9094-x +Kai Yao,Stability in mean for uncertain differential equation.,2015,14,FO and DM,3,db/journals/fodm/fodm14.html#YaoKS15,https://doi.org/10.1007/s10700-014-9204-2 +Hsien-Chung Wu,Duality Theory in Fuzzy Optimization Problems.,2004,3,FO and DM,4,db/journals/fodm/fodm3.html#Wu04,https://doi.org/10.1007/s10700-004-4203-3 +David Ben-Arieh,Linguistic group decision-making: opinion aggregation and measures of consensus.,2006,5,FO and DM,4,db/journals/fodm/fodm5.html#Ben-AriehC06,https://doi.org/10.1007/s10700-006-0017-9 +Zhenghai Ai,Limit properties and derivative operations in the metric space of intuitionistic fuzzy numbers.,2017,16,FO and DM,1,db/journals/fodm/fodm16.html#AiXL17,https://doi.org/10.1007/s10700-016-9239-7 +Sebastián Lozano,Computing fuzzy process efficiency in parallel systems.,2014,13,FO and DM,1,db/journals/fodm/fodm13.html#Lozano14,https://doi.org/10.1007/s10700-013-9170-0 +Xiaoxia Huang,Book Review.,2007,6,FO and DM,1,db/journals/fodm/fodm6.html#Huang07,https://doi.org/10.1007/s10700-006-0026-8 +Vidyut Dey,Genetic algorithm-tuned entropy-based fuzzy C-means algorithm for obtaining distinct and compact clusters.,2011,10,FO and DM,2,db/journals/fodm/fodm10.html#DeyPD11,https://doi.org/10.1007/s10700-011-9097-2 +Ying Liu,The lambda selections of parametric interval-valued fuzzy variables and their numerical characteristics.,2016,15,FO and DM,3,db/journals/fodm/fodm15.html#LiuL16,https://doi.org/10.1007/s10700-015-9227-3 +Md. Abul Bashar,Interval fuzzy preferences in the graph model for conflict resolution.,2018,17,FO and DM,3,db/journals/fodm/fodm17.html#BasharHKO18,https://doi.org/10.1007/s10700-017-9279-7 +Warren E. Hearnes II,Application of a Near-Optimal Reinforcement Learning Controller to a Robotics Problem in Manufacturing: A Hybrid Approach.,2003,2,FO and DM,3,db/journals/fodm/fodm2.html#HearnesE03,https://doi.org/10.1023/A:1025059919437 +Madjid Tavana,A fuzzy opportunity and threat aggregation approach in multicriteria decision analysis.,2010,9,FO and DM,4,db/journals/fodm/fodm9.html#TavanaSP10,https://doi.org/10.1007/s10700-010-9087-9 +Jana Krejcí,A fuzzy extension of Analytic Hierarchy Process based on the constrained fuzzy arithmetic.,2017,16,FO and DM,1,db/journals/fodm/fodm16.html#KrejciPT17,https://doi.org/10.1007/s10700-016-9241-0 +Xiang Li,Foundation of credibilistic logic.,2009,8,FO and DM,1,db/journals/fodm/fodm8.html#LiL09,https://doi.org/10.1007/s10700-009-9053-6 +Yanfei Lan,A bilevel fuzzy principal-agent model for optimal nonlinear taxation problems.,2011,10,FO and DM,3,db/journals/fodm/fodm10.html#LanZT11,https://doi.org/10.1007/s10700-011-9103-8 +Yuji Yoshida,A Discrete-Time American Put Option Model with Fuzziness of Stock Prices.,2005,4,FO and DM,3,db/journals/fodm/fodm4.html#YoshidaYNK05,https://doi.org/10.1007/s10700-005-1889-9 +Zeshui Xu,A Procedure for Decision Making Based on Incomplete Fuzzy Preference Relation.,2005,4,FO and DM,3,db/journals/fodm/fodm4.html#Xu05a,https://doi.org/10.1007/s10700-005-1887-y +Hsien-Chung Wu,Existence and uniqueness for the construction of fuzzy sets from a solidly nested family.,2015,14,FO and DM,1,db/journals/fodm/fodm14.html#Wu15,https://doi.org/10.1007/s10700-014-9190-4 +Hao-Tien Liu,Improved time-variant fuzzy time series forecast.,2009,8,FO and DM,1,db/journals/fodm/fodm8.html#LiuWY09,https://doi.org/10.1007/s10700-009-9051-8 +Susana Díaz,General results on the decomposition of transitive fuzzy relations.,2010,9,FO and DM,1,db/journals/fodm/fodm9.html#DiazBM10,https://doi.org/10.1007/s10700-010-9074-1 +Jaroslav Ramík,Intuitionistic fuzzy linear programming and duality: a level sets approach.,2016,15,FO and DM,4,db/journals/fodm/fodm15.html#RamikV16,https://doi.org/10.1007/s10700-016-9233-0 +Zeshui Xu,An integrated model-based interactive approach to FMAGDM with incomplete preference information.,2010,9,FO and DM,3,db/journals/fodm/fodm9.html#Xu10,https://doi.org/10.1007/s10700-010-9083-0 +Bingru Yang,The Extended Alpha-triple I Algorithm Based on the Generalized Implication Operator.,2006,5,FO and DM,2,db/journals/fodm/fodm5.html#YangXS06,https://doi.org/10.1007/s10700-006-7332-z +Cengiz Kahraman,Optimization of Multilevel Investments Using Dynamic Programming Based on Fuzzy Cash Flows.,2003,2,FO and DM,2,db/journals/fodm/fodm2.html#KahramanRB03,https://doi.org/10.1023/A:1023443116850 +Milan Hladík,Optimal value range in interval linear programming.,2009,8,FO and DM,3,db/journals/fodm/fodm8.html#Hladik09,https://doi.org/10.1007/s10700-009-9060-7 +José Luis García-Lapresta,A consensus reaching process in the context of non-uniform ordered qualitative scales.,2017,16,FO and DM,4,db/journals/fodm/fodm16.html#Garcia-Lapresta17,https://doi.org/10.1007/s10700-016-9256-6 +Zhiqiang Zhang 0003,Valuation of interest rate ceiling and floor in uncertain financial market.,2016,15,FO and DM,2,db/journals/fodm/fodm15.html#ZhangRL16,https://doi.org/10.1007/s10700-015-9223-7 +Pandian Vasant,Application of Fuzzy Linear Programming in Production Planning.,2003,2,FO and DM,3,db/journals/fodm/fodm2.html#Vasant03,https://doi.org/10.1023/A:1025094504415 +Zeshui Xu,Erratum to: Intuitionistic and interval-valued intutionistic fuzzy preference relations and their measures of similarity for the evaluation of agreement within a group and Some similarity measures of intuitionistic fuzzy sets and their applications to multiple attribute decision making.,2012,11,FO and DM,3,db/journals/fodm/fodm11.html#Xu12a,https://doi.org/10.1007/s10700-012-9135-8 +Junzo Watada,Obituary.,2012,11,FO and DM,4,db/journals/fodm/fodm11.html#WatadaTK12,https://doi.org/10.1007/s10700-012-9136-7 +Kai Yao,A no-arbitrage theorem for uncertain stock model.,2015,14,FO and DM,2,db/journals/fodm/fodm14.html#Yao15,https://doi.org/10.1007/s10700-014-9198-9 +Ronald R. Yager,Prioritized OWA aggregation.,2009,8,FO and DM,3,db/journals/fodm/fodm8.html#Yager09a,https://doi.org/10.1007/s10700-009-9063-4 +Julio Brito,Fuzzy optimization for distribution of frozen food with imprecise *.,2012,11,FO and DM,3,db/journals/fodm/fodm11.html#BritoMMV12,https://doi.org/10.1007/s10700-012-9131-z +Jin-Hsien Wang,An approach to aggregation of ordinal information in multi-criteria multi-person decision making using Choquet integral of Fubini type.,2009,8,FO and DM,4,db/journals/fodm/fodm8.html#WangH09,https://doi.org/10.1007/s10700-009-9066-1 +Yurilev Chalco-Cano,The Karush-Kuhn-Tucker optimality conditions for fuzzy optimization problems.,2016,15,FO and DM,1,db/journals/fodm/fodm15.html#Chalco-CanoLGR16,https://doi.org/10.1007/s10700-015-9213-9 +Hideo Tanaka,Foreword.,2004,3,FO and DM,4,db/journals/fodm/fodm3.html#Tanaka04,https://doi.org/10.1007/s10700-004-4198-9 +Xiaoxia Huang,A review of credibilistic portfolio selection.,2009,8,FO and DM,3,db/journals/fodm/fodm8.html#Huang09,https://doi.org/10.1007/s10700-009-9064-3 +Jun Li,A class of possibilistic portfolio selection model with interval coefficients and its application.,2007,6,FO and DM,2,db/journals/fodm/fodm6.html#LiX07,https://doi.org/10.1007/s10700-007-9005-y +Kanthen K. Harikrishnan,Single Machine Batch Scheduling Problem with Resource Dependent Setup and Processing Time in the Presence of Fuzzy Due Date.,2005,4,FO and DM,2,db/journals/fodm/fodm4.html#HarikrishnanI05,https://doi.org/10.1007/s10700-004-5870-9 +Esmaile Khorram,Solving nonlinear multi-objective optimization problems with fuzzy relation inequality constraints regarding Archimedean triangular norm compositions.,2012,11,FO and DM,3,db/journals/fodm/fodm11.html#KhorramEV12,https://doi.org/10.1007/s10700-012-9129-6 +Rafaela Osuna Gómez,Different optimum notions for fuzzy functions and optimality conditions associated.,2018,17,FO and DM,2,db/journals/fodm/fodm17.html#GomezHCG18,https://doi.org/10.1007/s10700-017-9269-9 +Takeshi Itoh,One Machine Scheduling Problem with Fuzzy Random Due-Dates.,2005,4,FO and DM,1,db/journals/fodm/fodm4.html#ItohI05,https://doi.org/10.1007/s10700-004-5571-4 +Manuel Tarrazo,Schopenhauer's Prolegomenon to Fuzziness.,2004,3,FO and DM,3,db/journals/fodm/fodm3.html#Tarrazo04,https://doi.org/10.1023/B:FODM.0000036865.03250.2b +Sk. Md. Abu Nayeem,Shortest Path Problem on a Network with Imprecise Edge Weight.,2005,4,FO and DM,4,db/journals/fodm/fodm4.html#NayeemP05,https://doi.org/10.1007/s10700-005-3665-2 +Witold Pedrycz,Cascade Architectures of Fuzzy Neural Networks.,2004,3,FO and DM,1,db/journals/fodm/fodm3.html#PedryczRH04,https://doi.org/10.1023/B:FODM.0000013070.26870.e6 +Pingke Li,Fuzzy relational equations with min-biimplication composition.,2012,11,FO and DM,2,db/journals/fodm/fodm11.html#LiJ12,https://doi.org/10.1007/s10700-012-9122-0 +Meilin Wen,Sensitivity and stability analysis in fuzzy data envelopment analysis.,2011,10,FO and DM,1,db/journals/fodm/fodm10.html#WenQK11,https://doi.org/10.1007/s10700-010-9093-y +Weihua Xu,Integrated inventory problem under trade credit in fuzzy random environment.,2014,13,FO and DM,3,db/journals/fodm/fodm13.html#Xu14,https://doi.org/10.1007/s10700-014-9177-1 +Vidyottama Vijay,Fuzzy matrix games via a fuzzy relation approach.,2007,6,FO and DM,4,db/journals/fodm/fodm6.html#VijayMCB07,https://doi.org/10.1007/s10700-007-9015-9 +Bingru Yang,Comparison study on different core attributes.,2008,7,FO and DM,4,db/journals/fodm/fodm7.html#YangXSS08,https://doi.org/10.1007/s10700-008-9044-z +Yurilev Chalco-Cano,Optimality conditions of type KKT for optimization problem with interval-valued objective function via generalized derivative.,2013,12,FO and DM,3,db/journals/fodm/fodm12.html#Chalco-CanoLR13,https://doi.org/10.1007/s10700-013-9156-y +Giuseppe Portelli,HoNeY: leveraging the MHP to provide HOme NEtwork interoperabilitY.,2008,4,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc4.html#PortelliMF08,https://doi.org/10.1108/17427370810873129 +Virginia Corvino,Cross-layer scheduling over a heterogeneous opportunistic emergency-deployed wireless network.,2009,5,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc5.html#CorvinoCTV09,https://doi.org/10.1108/17427370910991875 +Mats Neovius,Forming a context-sensitive web of trust by relying on sentimentally like-minded.,2008,4,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc4.html#NeoviusDY08,https://doi.org/10.1108/17427370810873138 +Yuki Yamamoto,Multidimensional sentiment calculation method for Twitter based on emoticons.,2015,11,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc11.html#YamamotoKN15,https://doi.org/10.1108/IJPCC-03-2015-0019 +Adnan Mahmood,An optimized travelling time estimation mechanism for minimizing handover failures and unnecessary handovers from cellular networks to WLANs.,2015,11,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc11.html#MahmoodZO15,https://doi.org/10.1108/IJPCC-06-2014-0034 +Mariam Al Nuaimi,An efficient clustering algorithm for wireless sensor networks.,2015,11,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc11.html#AlnuaimiSNA15,https://doi.org/10.1108/IJPCC-02-2015-0007 +Asmaa Alsumait,Creative and innovative e-learning using interactive storytelling.,2013,9,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc9.html#AlsumaitA13,https://doi.org/10.1108/IJPCC-07-2013-0016 +Majid A. Al-Taee,Mobile-based interpreter of arterial blood gases using knowledge-based expert system.,2013,9,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc9.html#Al-TaeeZAAAH13,https://doi.org/10.1108/IJPCC-07-2013-0017 +Wilson Abel Alberto Torres,Privacy-preserving biometrics authentication systems using fully homomorphic encryption.,2015,11,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc11.html#TorresBS15,https://doi.org/10.1108/IJPCC-02-2015-0012 +Rajesh Prasad,A non-constant weight code approach for fast link assessment in multihop wireless mesh networks.,2009,5,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc5.html#PrasadNW09,https://doi.org/10.1108/17427370910991820 +Ricky Robinson,Resource discovery in modern computing environments.,2007,3,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc3.html#RobinsonIM07,https://doi.org/10.1108/17427370710841909 +Sami J. Habib,Restoring coverage area for WSN through simulated annealing.,2011,7,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc7.html#HabibM11,https://doi.org/10.1108/17427371111173004 +Shuxue Ding,Blind source separation of acoustic signals in realistic environments based on ICA in the time-frequency domain.,2005,1,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc1.html#DingCHW05,https://doi.org/10.1108/17427370580000115 +Xiaolei Zhang,Towards pervasive instant messaging and presence awareness.,2009,5,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc5.html#ZhangLWL09,https://doi.org/10.1108/17427370910950302 +Christoph Ernst,Collaboration and crowdsourcing in emergency management.,2017,13,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc13.html#ErnstMS17,https://doi.org/10.1108/IJPCC-03-2017-0026 +Michele Dominici,Experiences in managing uncertainty and ignorance in a lightly instrumented smart home.,2012,8,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc8.html#DominiciPW12,https://doi.org/10.1108/17427371211262635 +Ahmad M. Kholaif,DRKH: A Power Efficient Encryption Protocol for Wireless Devices.,2006,2,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc2.html#KholaifFEB06,https://doi.org/10.1108/17427370780000162 +Yun Sheng Chung,Performance evaluation of classifier ensembles in terms of diversity and performance of individual systems.,2010,6,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc6.html#ChungHLT10,https://doi.org/10.1108/17427371011097604 +Vlasios Kasapakis,Revisiting design guidelines for pervasive games.,2017,13,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc13.html#KasapakisG17,https://doi.org/10.1108/IJPCC-D-17-00007 +Peng Du,Minimizing transmission time in 802.16-based multi-channel mesh networks.,2009,5,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc5.html#DuWJHL09,https://doi.org/10.1108/17427370910991866 +Chao Sha,An energy-saving strategy based on sleep scheduling and block transmission for wireless multimedia sensor networks.,2010,6,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc6.html#ShaWHS10,https://doi.org/10.1108/17427371011066446 +Huber Flores,Towards Mobile Cloud Applications: offloading Resource-Intensive Tasks to Hybrid Clouds.,2012,8,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc8.html#FloresSP12,https://doi.org/10.1108/17427371211283029 +Tapio Soikkeli,Comparison of context-aware predictive modeling approaches: Semantic place in inferring mobile user behavior.,2015,11,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc11.html#Soikkeli15,https://doi.org/10.1108/IJPCC-01-2015-0003 +Jianhua Ma,Towards a smart world and ubiquitous intelligence: A walkthrough from smart things to smart hyperspaces and UbicKids.,2005,1,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc1.html#MaYAHBT05,https://doi.org/10.1108/17427370580000113 +Artem Katasonov,Content quality assessment and acceptance testing in location-based services.,2006,2,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc2.html#KatasonovVS06,https://doi.org/10.1108/17427370780000138 +Henry Larkin,A framework for programmatically designing user interfaces in JavaScript.,2015,11,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc11.html#Larkin15,https://doi.org/10.1108/IJPCC-03-2015-0014 +Abdelhak Bentaleb,A scalable clustering scheme and its performance evaluation.,2014,10,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc10.html#BentalebHB14,https://doi.org/10.1108/IJPCC-01-2014-0004 +Qinglan Li,Multi-criteria routing in wireless sensor-based pervasive environments.,2005,1,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc1.html#LiBACLS05,https://doi.org/10.1108/17427370580000134 +Ichiro Satoh,A visual framework for deploying and managing context-aware services.,2008,4,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc4.html#Satoh08,https://doi.org/10.1108/17427370810932169 +Daniel Pakkala,Distributed service platform for adaptive mobile services.,2006,2,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc2.html#PakkalaL06,https://doi.org/10.1108/17427370780000148 +Werner Kurschl,User modeling for people with special needs.,2014,10,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc10.html#KurschlABP14,https://doi.org/10.1108/IJPCC-07-2014-0040 +Ingrid Burbey,A survey on predicting personal mobility.,2012,8,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc8.html#BurbeyM12,https://doi.org/10.1108/17427371211221063 +Ema Kusen,A decade of security research in ubiquitous computing: results of a systematic literature review.,2016,12,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc12.html#KusenS16,https://doi.org/10.1108/IJPCC-03-2016-0018 +Rachana Borawake-Satao,Comprehensive survey on effect of mobility over routing issues in wireless multimedia sensor networks.,2016,12,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc12.html#Borawake-SataoP16,https://doi.org/10.1108/IJPCC-01-2016-0001 +Atish Dipakbhai Nayak,Performance analysis and evaluation of secure password persuasive cued click points.,2016,12,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc12.html#NayakB16,https://doi.org/10.1108/IJPCC-07-2016-0040 +Kostas Stefanidis,A context-aware preference database system.,2007,3,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc3.html#StefanidisPV07,https://doi.org/10.1108/17427370710863158 +Satish Narayana Srirama,MWSMF: a mediation framework for mobile hosts and enterprise on cloud.,2011,7,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc7.html#Srirama11,https://doi.org/10.1108/17427371111189656 +Hye Hwan Ahn,Combining next fit of bin packing with deficit round robin for efficient slot scheduling in Bluetooth.,2006,2,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc2.html#AhnYLP06,https://doi.org/10.1108/17427370780000147 +Tarak Chaari,Adaptation in context-aware pervasive information systems: the SECAS project.,2007,3,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc3.html#ChaariLC07,https://doi.org/10.1108/17427370710863130 +Leping Huang,Impact of topology on Bluetooth Scatternet.,2005,1,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc1.html#HuangCSKS05,https://doi.org/10.1108/17427370580000118 +Helmut Hlavacs,Enhancing the position estimates of unmanned aerial vehicles by cooperation.,2014,10,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc10.html#Hlavacs14,https://doi.org/10.1108/IJPCC-06-2014-0037 +Giannis Skevakis,A crowdsourcing framework for the management of mobile multimedia nature observations.,2014,10,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc10.html#SkevakisTTC14,https://doi.org/10.1108/IJPCC-06-2014-0038 +Xiaowei Zhang,The effects of the number of neighbors in multihop wireless networks.,2009,5,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc5.html#ZhangM09,https://doi.org/10.1108/17427370911008875 +Nawaf Alharbe,A study of the application of automatic healthcare tracking and monitoring system in Saudi Arabia.,2014,10,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc10.html#AlharbeA14,https://doi.org/10.1108/IJPCC-03-2014-0026 +Kai Chen 0003,Effective location-guided overlay multicast in mobile ad hoc networks.,2009,5,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc5.html#ChenN09,https://doi.org/10.1108/17427370911008811 +Hajar Mousannif,An energy-efficient scheme for reporting events over WSNs.,2011,7,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc7.html#MousannifMR11,https://doi.org/10.1108/17427371111123685 +Giuseppe Anastasi,An energy-efficient protocol for multimedia streaming in a mobile environment.,2005,1,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc1.html#AnastasiCGPP05,https://doi.org/10.1108/17427370580000133 +Charles B. Owen,Computer literacy through dance: the dancing computer project.,2017,13,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc13.html#OwenDDRLK17,https://doi.org/10.1108/IJPCC-02-2017-0012 +Penghe Chen,A Context Management Framework for Context-Aware Applications in Mobile Spaces.,2012,8,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc8.html#ChenSPXW12,https://doi.org/10.1108/17427371211245382 +Ala I. Al-Fuqaha,An intelligent data fusion technique based on the particle filter to perform precise outdoor localization.,2013,9,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc9.html#Al-FuqahaER13,https://doi.org/10.1108/IJPCC-02-2013-0001 +Marco Picone,Proactive neighbor localization based on distributed geographic table.,2011,7,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc7.html#PiconeAZ11,https://doi.org/10.1108/17427371111173022 +Yuhki Shiraishi,Crowdsourced real-time captioning of sign language by deaf and hard-of-hearing people.,2017,13,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc13.html#ShiraishiZWKM17,https://doi.org/10.1108/IJPCC-02-2017-0014 +Tran Khanh Dang,An OpenLS privacy-aware middleware supporting location-based applications.,2013,9,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc9.html#DangPN13,https://doi.org/10.1108/IJPCC-09-2013-0024 +Luiz Angelo Steffenel,Assessing contention effects of all-to-all communications on clusters and grids.,2008,4,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc4.html#SteffenelMT08,https://doi.org/10.1108/17427370810932187 +Hen-I Yang,A framework for evaluating pervasive systems.,2010,6,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc6.html#YangCAH10,https://doi.org/10.1108/17427371011097631 +Sylva Girtelschmid,On the application of Big Data in future large-scale intelligent Smart City installations.,2014,10,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc10.html#GirtelschmidSKFK14,https://doi.org/10.1108/IJPCC-03-2014-0022 +Zhaohui Wu,Schedulability analysis for fault-tolerant group-based preemptive scheduling.,2005,1,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc1.html#WuYZZ05,https://doi.org/10.1108/17427370580000125 +Sachin Dilip Babar,CMKMS: Cluster-based mobile key management scheme for wireless sensor network.,2014,10,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc10.html#BabarPP14,https://doi.org/10.1108/IJPCC-04-2014-0029 +Yang Xiang 0001,Pervasive computing at tableside: a wireless web-based ordering system.,2007,3,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc3.html#XiangZ07,https://doi.org/10.1108/17427370710841936 +Ryo Izuta,Early gesture recognition method with an accelerometer.,2015,11,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc11.html#IzutaMTT15,https://doi.org/10.1108/IJPCC-03-2015-0016 +Moon-Sang Jeong,Hierarchical mobile network routing: Route optimization and micro-mobility support for NEMO.,2005,1,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc1.html#JeongP05,https://doi.org/10.1108/17427370580000112 +René Mayrhofer,Optimal derotation of shared acceleration time series by determining relative spatial alignment.,2015,11,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc11.html#MayrhoferHF15,https://doi.org/10.1108/IJPCC-08-2015-0031 +Ryohei Sagara,Application development environment for event-driven ubiquitous devices.,2009,5,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc5.html#SagaraKTN09,https://doi.org/10.1108/17427370910976016 +R. Kalindi,Sub-grid based key vector assignment: A key pre-distribution scheme for distributed sensor networks.,2006,2,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc2.html#KalindiKID06,https://doi.org/10.1108/17427370780000139 +Najd A. Al-Mouh,The accessibility and usage of smartphones by Arab-speaking visually impaired people.,2015,11,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc11.html#Al-MouhA15,https://doi.org/10.1108/IJPCC-09-2015-0033 +Ismail Khalil,Editorial.,2014,10,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc10.html#KhalilC14,https://doi.org/10.1108/IJPCC-09-2014-0045 +Svetlana Boudko,Exploring network selection techniques for multicast groups in heterogeneous wireless environments.,2014,10,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc10.html#BoudkoLG14,https://doi.org/10.1108/IJPCC-01-2014-0014 +Weining Qi,Energy efficient CEDAR protocol.,2005,1,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc1.html#QiYYZ05,https://doi.org/10.1108/17427370580000123 +Teng-Tiow Tay,JDGC: An integrated decentralized distributed computing platform for Java program.,2007,3,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc3.html#TayCS07,https://doi.org/10.1108/17427370710847318 +Priyanka Chaurasia,A duration-based online reminder system.,2014,10,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc10.html#ChaurasiaMNS14,https://doi.org/10.1108/IJPCC-07-2014-0042 +Kazuya Murao,Mobile phone user authentication with grip gestures using pressure sensors.,2015,11,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc11.html#MuraoTTITH15,https://doi.org/10.1108/IJPCC-03-2015-0017 +Yahya M. Tashtoush,Geometric sequence based multipath routing protocol for multi-hop ad hoc networks.,2016,12,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc12.html#TashtoushAA16,https://doi.org/10.1108/IJPCC-08-2016-0041 +Roberto Baldoni,Content-based routing in highly dynamic mobile ad hoc networks.,2005,1,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc1.html#BaldoniBQCM05,https://doi.org/10.1108/17427370580000131 +Maria Chantzara,User-sensitive and quality-driven discovery of context information for the successful delivery of context-aware services.,2006,2,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc2.html#ChantzaraA06,https://doi.org/10.1108/17427370780000152 +Kiran Modukari,Autonomous middleware framework for sensor networks.,2005,1,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc1.html#ModukariHCY05,https://doi.org/10.1108/17427370580000136 +Haiying Zhou,SDREAM: A Super-Small Distributed REAL-Time Microkernel Dedicated to Wireless Sensors.,2006,2,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc2.html#ZhouHV06,https://doi.org/10.1108/17427370780000169 +Yusuke Gotoh,A proposition of querying scheme with network Voronoi diagram in bichromatic reverse k-nearest neighbor.,2017,13,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc13.html#GotohO17,https://doi.org/10.1108/IJPCC-01-2017-0009 +Ronan Fox,Collaborative development of trusted mashups.,2011,7,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc7.html#FoxCH11,https://doi.org/10.1108/17427371111173031 +Shih-Feng Hsu,An OSA application server for mobile services.,2007,3,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc3.html#HsuLLY07,https://doi.org/10.1108/17427370710841945 +Shengfei Shi,Energy-efficient adaptive resource management strategy for large-scale mobile ad hoc networks.,2007,3,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc3.html#ShiLWW07,https://doi.org/10.1108/17427370710847273 +Maria Torres Vega,An experimental survey of no-reference video quality assessment methods.,2016,12,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc12.html#VegaSML16,https://doi.org/10.1108/IJPCC-01-2016-0008 +Wolfgang Narzt,Power-saving localization techniques for mobile devices: A comparison between iOS and Android.,2015,11,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc11.html#Narzt15,https://doi.org/10.1108/IJPCC-01-2015-0001 +Giljae Lee,A simple dynamic clustering approach to achieve energy efficiency for wireless sensor networks.,2008,4,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc4.html#LeeKSL08,https://doi.org/10.1108/17427370810890373 +Curt Cramer,Reactive clustering in MANETs.,2006,2,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc2.html#CramerSWZ06,https://doi.org/10.1108/17427370780000143 +Ian Anderson 0002,Exploring GSM data in pervasive environments.,2008,4,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc4.html#AndersonM08,https://doi.org/10.1108/17427370810873075 +Egil C. østhus,ENME: An ENriched MEdia application utilizing context for session mobility in a telecom system.,2009,5,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc5.html#OsthusOK09,https://doi.org/10.1108/17427370910976034 +Yuki Kano,A novel approach to solve a mining work centralization problem in blockchain technologies.,2018,14,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc14.html#KanoN18,https://doi.org/10.1108/IJPCC-D-18-00005 +Ismail Khalil,Editorial preface.,2014,10,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc10.html#Ismail14,https://doi.org/10.1108/IJPCC-07-2014-0043 +Xingdong Shi,Integrated business-process driven design for service-oriented enterprise applications.,2007,3,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc3.html#ShiHLH07,https://doi.org/10.1108/17427370710847309 +Stephanie Winkler,An analysis of tools for online anonymity.,2015,11,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc11.html#WinklerZ15,https://doi.org/10.1108/IJPCC-08-2015-0030 +Tore Fjellheim,Middleware support for mobile applications.,2005,1,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc1.html#FjellheimMD05,https://doi.org/10.1108/17427370580000114 +Tetsuji Takada,MTAPIN: multi-touch key input enhances security of PIN authentication while keeping usability.,2014,10,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc10.html#TakadaK14,https://doi.org/10.1108/IJPCC-07-2014-0041 +I-Shyan Hwang,Performance analysis of multi-criteria CAC for distributed access point selection in WLANs.,2008,3,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc3.html#HwangC08,https://doi.org/10.1108/17427370710856228 +Charlotte Travis,A comparative study of the usability of touch-based and mouse-based interaction.,2014,10,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc10.html#TravisM14,https://doi.org/10.1108/IJPCC-01-2014-0015 +Marcus Handte,Peer-based automatic configuration of pervasive applications.,2005,1,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc1.html#HandteBR05,https://doi.org/10.1108/17427370580000129 +Tom Pfeifer,Pervasive Management.,2006,2,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc2.html#PfeiferWA06,https://doi.org/10.1108/17427370780000151 +Ahmad A. Alzahrani,A survey on internet-enabled physical annotation systems.,2011,7,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc7.html#AlzahraniLL11,https://doi.org/10.1108/17427371111189647 +Zhaohui Wu,An improved method of task context switching in OSEK operating system.,2010,6,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc6.html#WuLYGL10,https://doi.org/10.1108/17427371011066400 +Abraham George,A multi-hop mobility management protocol for heterogeneous wireless networks: OTHER ARTICLE.,2009,5,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc5.html#GeorgeKS09,https://doi.org/10.1108/17427370910976052 +Chuanfeng Lv,k-PCA: a semi-universal encoder for image compression.,2007,3,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc3.html#LvZ07,https://doi.org/10.1108/17427370710847327 +Zhen Cao,FBSR: feedback-based secure routing protocol for wireless sensor networks.,2008,4,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc4.html#CaoHCXZ08,https://doi.org/10.1108/17427370810873110 +Patricia Dockhorn Costa,Designing a configurable services platform for mobile context-aware applications.,2005,1,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc1.html#CostaPS05,https://doi.org/10.1108/17427370580000109 +Anna Maria Al Zubaidi-Polli,Learning from appropriation practices: Towards the next generation of e-participation environments enabling collaborative writing in-situ and ex-situ.,2018,14,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc14.html#Zubaidi-PolliV18,https://doi.org/10.1108/IJPCC-D-18-00007 +Vassilis Kostakos,Inferring social networks from physical interactions: a feasibility study.,2010,6,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc6.html#KostakosK10,https://doi.org/10.1108/17427371011097622 +Jehn-Ruey Jiang,MUREX: A mutable replica control scheme for structured peer-to-peer storage systems.,2009,5,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc5.html#JiangKLL09,https://doi.org/10.1108/17427370910950285 +Helder Pinto,Pervasive location-based systems: The fundamental challenges between vision and reality.,2005,1,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc1.html#PintoJ05,https://doi.org/10.1108/17427370580000108 +Wolfgang Beer,GeoPointer - approaching tangible augmentation of the real world.,2011,7,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc7.html#Beer11,https://doi.org/10.1108/17427371111123694 +Bin Xie 0001,Multi-Hop Cellular IP: A New Approach to Heterogeneous Wireless Networks.,2006,2,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc2.html#XieKCA06,https://doi.org/10.1108/17427370780000167 +Zhijun Wang,Energy-efficient virtual grid aided routing for MANETs.,2010,6,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc6.html#WangLZ10,https://doi.org/10.1108/17427371011084248 +Hajar Mousannif,Big data projects: just jump right in!,2016,12,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc12.html#MousannifSDS16,https://doi.org/10.1108/IJPCC-04-2016-0023 +Michael Hölzl,A password-authenticated secure channel for App to Java Card applet communication.,2015,11,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc11.html#HolzlAMR15,https://doi.org/10.1108/IJPCC-09-2015-0032 +Usman Naeem,Activities of daily life recognition using process representation modelling to support intention analysis.,2015,11,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc11.html#NaeemBAATLM15,https://doi.org/10.1108/IJPCC-01-2015-0002 +David Villa,ASDF: an object oriented service discovery framework for wireless sensor networks.,2008,4,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc4.html#VillaVMRBL08,https://doi.org/10.1108/17427370810932141 +Nai-Luen Lai,Scheduling algorithms and routing structures for efficient convergecast in wireless sensor networks.,2010,6,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc6.html#LaiLK10,https://doi.org/10.1108/17427371011033262 +Tassos Dimitriou,GRAViTy: Geographic Routing around Voids in Sensor Networks.,2006,2,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc2.html#DimitriouK06,https://doi.org/10.1108/17427370780000165 +Wei Li 0030,A reverse channel call admission control scheme based on total received power for CDMA systems supporting integrated voice/data services.,2006,2,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc2.html#LiCA06a,https://doi.org/10.1108/17427370780000145 +Andreas Zimmermann,Creating audio-augmented environments.,2005,1,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc1.html#ZimmermannL05,https://doi.org/10.1108/17427370580000111 +Robin Mueller,Security and privacy of smartphone messaging applications.,2015,11,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc11.html#MuellerSFKW15,https://doi.org/10.1108/IJPCC-04-2015-0020 +Mustafa S. Aljumaily,Towards ubiquitous human gestures recognition using wireless networks.,2017,13,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc13.html#AljumailyA17,https://doi.org/10.1108/IJPCC-D-17-00005 +Ha Yoon Song,Modeling urban mobility with machine learning analysis of public taxi transportation data.,2018,14,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc14.html#SongY18,https://doi.org/10.1108/IJPCC-D-18-00009 +Michael Roland 0001,Managing the life cycle of Java Card applets in other Java virtual machines.,2014,10,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc10.html#RolandLM14,https://doi.org/10.1108/IJPCC-06-2014-0036 +Apostolos Malatras,Deploying pervasive secure knowledge management infrastructures.,2005,1,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc1.html#MalatrasPBGSC05,https://doi.org/10.1108/17427370580000130 +Hassan Sbeyti,Mobile user signature extraction based on user behavioural pattern (MUSEP).,2016,12,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc12.html#SbeytiHF16,https://doi.org/10.1108/IJPCC-05-2016-0025 +Jeffery W. Wilson,Performance characteristics of location-based group membership and data consistency algorithms in mobile ad hoc networks.,2009,5,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc5.html#WilsonC09,https://doi.org/10.1108/17427370911008866 +Jang-Ping Sheu,Logical coordinate assignment for geographic routing in wireless sensor networks.,2008,3,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc3.html#SheuCS08,https://doi.org/10.1108/17427370710856237 +Santi Phithakkitnukoon,ContextAlert: context-aware alert mode for a mobile phone.,2010,6,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc6.html#PhithakkitnukoonD10,https://doi.org/10.1108/17427371011084266 +Javid Taheri,A simulation tool for mobility management experiments.,2009,5,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc5.html#TaheriZ09,https://doi.org/10.1108/17427370910991893 +Imrich Chlamtac,An OSA service capability server for mobile services.,2008,4,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc4.html#ChlamtacLLT08,https://doi.org/10.1108/17427370810911612 +Ren-Song Ko,Component-based ad hoc systems for ubiquitous computing.,2008,4,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc4.html#KoLYM08,https://doi.org/10.1108/17427370810932123 +Takahiro Seino,Mechanically supporting case analysis for verification of distributed systems.,2005,1,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc1.html#SeinoOF05,https://doi.org/10.1108/17427370580000119 +Yohan Chae,Traffic adaptive IEEE 802.15.4 medium access control.,2008,4,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc4.html#ChaeK08,https://doi.org/10.1108/17427370810890382 +Jingshan Huang,Ontology alignment as a basis for mobile service integration and invocation.,2007,3,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc3.html#HuangDHS07,https://doi.org/10.1108/17427370710847282 +Pejman Goudarzi,Quality-centric Soft Admission Control for Video Delivery over Cognitive Radio Networks.,2012,8,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc8.html#Goudarzi12,https://doi.org/10.1108/17427371211283047 +Yue Suo,Baton: a service manager for better sustaining agent coordination in smart spaces.,2009,5,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc5.html#SuoLSX09,https://doi.org/10.1108/17427370910976025 +Shazirawati Mohd Puzi,Towards probabilistic arbitration in sensors integration.,2011,7,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc7.html#PuziSIO11,https://doi.org/10.1108/17427371111189674 +Maria Strimpakou,COMPACT: Middleware for context representation and management in pervasive computing.,2006,2,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc2.html#StrimpakouRPA06,https://doi.org/10.1108/17427370780000153 +Fabien Nimbona,Clustering concept and QoS constraints in dense mobile ad hoc networks.,2006,2,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc2.html#NimbonaPQ06,https://doi.org/10.1108/17427370780000141 +Harshvardhan Jitendra Pandit,A model for contextual data sharing in smartphone applications.,2016,12,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc12.html#PanditO16,https://doi.org/10.1108/IJPCC-06-2016-0030 +Eugen Dedu,Simulation to help calibration of a MEMS sensor network.,2010,6,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc6.html#DeduBB10,https://doi.org/10.1108/17427371011097596 +Eleftheria Katsiri,SCAFOS: linking sensor data to context-aware applications using abstract events.,2007,3,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc3.html#KatsiriBM07,https://doi.org/10.1108/17427370710863112 +Degan Zhang,Approach of context-aware computing with uncertainty for ubiquitous active service.,2005,1,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc1.html#ZhangZCZ05,https://doi.org/10.1108/17427370580000127 +Fatma Achour,Semantic Web service and pervasive information system conceptual adaptation.,2016,12,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc12.html#AchourJG16,https://doi.org/10.1108/IJPCC-12-2015-0040 +Arjan Durresi,Ubiquitous QoS communications using scalable satellite networking.,2010,6,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc6.html#DurresiBKT10,https://doi.org/10.1108/17427371011066428 +Eric Hsiao-Kuang Wu,JRC: jitter-based rate control scheme for wired-wireless hybrid network.,2008,3,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc3.html#WuC08,https://doi.org/10.1108/17427370710856264 +Annette Mossel,SmartCopter: Enabling autonomous flight in indoor environments with a smartphone as on-board processing unit.,2014,10,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc10.html#MosselLKK14,https://doi.org/10.1108/IJPCC-01-2014-0010 +Alberto Rosi,Adaptive pervasive advertisement: scenarios and strategies.,2010,6,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc6.html#RosiCZ10,https://doi.org/10.1108/17427371011084275 +Nawaf Alharbe,Transforming to a smart hospital system: Proposed application in the Medina Maternity and Children's Hospital.,2016,12,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc12.html#AlharbeA16,https://doi.org/10.1108/IJPCC-07-2016-0037 +Christos Grecos,Advances in video networking: standards and applications.,2011,7,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc7.html#GrecosW11,https://doi.org/10.1108/17427371111123676 +Priyanka Chaurasia,A duration-based online reminder system.,2014,10,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc10.html#ChaurasiaMNS14a,https://doi.org/10.1108/IJPCC-10-2013-0029 +Hikaru Inomoto,Design and evaluation of mission-oriented sensing platform with military analogy.,2017,13,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc13.html#InomotoSNM17,https://doi.org/10.1108/IJPCC-01-2017-0007 +Yu-He Gau,A weighted multilateration positioning method for wireless sensor networks.,2008,3,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc3.html#GauCJ08,https://doi.org/10.1108/17427370710856246 +Akio Sashima,Location-aware middle agents in pervasive computing.,2006,2,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc2.html#SashimaIK06,https://doi.org/10.1108/17427370780000149 +Evi Syukur,MHS: a context-enabled regulated framework for pervasive services.,2010,6,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc6.html#SyukurL10,https://doi.org/10.1108/17427371011033280 +R. Kalidini,Sub-grid based key vector assignment: A key pre-distribution scheme for distributed sensor networks.,2006,2,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc2.html#KalidiniKID06,https://doi.org/10.1108/17427370780000150 +Rainhard Dieter Findling,Towards pan shot face unlock: Using biometric face information from different perspectives to unlock mobile devices.,2013,9,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc9.html#FindlingM13,https://doi.org/10.1108/IJPCC-05-2013-0012 +Anneke Soraya Hidayat,An in-depth analysis of strong t-consistency on secret image sharing.,2016,12,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc12.html#HidayatLYY16,https://doi.org/10.1108/IJPCC-01-2016-0006 +Clauirton de Siebra,The hardware and software aspects of energy consumption in the mobile development platform.,2013,9,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc9.html#SiebraCSSM13,https://doi.org/10.1108/IJPCC-04-2013-0007 +Daniel Kraft,Design and evaluation of a security architecture for ad hoc networks.,2009,5,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc5.html#KraftBHPW09,https://doi.org/10.1108/17427370911008848 +Roman Y. Shtykh,Peer-to-peer solution to support group collaboration and information sharing.,2005,1,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc1.html#ShtykhZJ05,https://doi.org/10.1108/17427370580000124 +Víctor Zamudio,Understanding and avoiding interaction-based instability in pervasive computing environments.,2009,5,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc5.html#ZamudioC09,https://doi.org/10.1108/17427370910976043 +Ronald van Eijk,Handling heterogeneity in context aware services.,2005,1,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc1.html#EijkSHPMH05,https://doi.org/10.1108/17427370580000110 +Alberto Rosi,Integrating social sensors and pervasive services: approaches and perspectives.,2013,9,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc9.html#RosiMZ13,https://doi.org/10.1108/IJPCC-09-2013-0022 +Kamel Barka,MONet: A framework for self-adaptive energy-aware middleware for dynamic wireless sensor network.,2017,13,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc13.html#BarkaBG17,https://doi.org/10.1108/IJPCC-D-17-00009 +Simone Spagnol,Synthetic individual binaural audio delivery by pinna image processing.,2014,10,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc10.html#SpagnolGRA14,https://doi.org/10.1108/IJPCC-06-2014-0035 +Jun-Zhao Sun,Policy mechanism and evaluation algorithm for connectivity management adaptability.,2007,3,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc3.html#SunRSJ07,https://doi.org/10.1108/17427370710841927 +Chirihane Gherbi,Using adaptive clustering scheme with load balancing to enhance energy efficiency and reliability in delay tolerant with QoS in large-scale mobile wireless sensor networks.,2016,12,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc12.html#GherbiAB16,https://doi.org/10.1108/IJPCC-10-2015-0035 +Prabal Pratap,Switchable dual band equilateral triangular microstrip patch antenna using pin diode.,2015,11,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc11.html#PratapBK15,https://doi.org/10.1108/IJPCC-09-2014-0046 +Shailja Agnihotri,A survey and comparative analysis of the various routing protocols of Internet of Things.,2017,13,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc13.html#AgnihotriR17,https://doi.org/10.1108/IJPCC-03-2017-0023 +Sébastien Truchat,An adaptive model for reconfigurable autonomous services using profiling.,2006,2,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc2.html#TruchatFDM06,https://doi.org/10.1108/17427370780000154 +Claudia Raibulet,Automatic generation of mobile widgets.,2011,7,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc7.html#RaibuletC11,https://doi.org/10.1108/17427371111146428 +Kyle Dillon Feuz,Heterogeneous transfer learning for activity recognition using heuristic search techniques.,2014,10,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc10.html#FeuzC14,https://doi.org/10.1108/IJPCC-03-2014-0020 +Franco Zambonelli,A survey on nature-inspired metaphors for pervasive service ecosystems.,2011,7,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc7.html#ZambonelliV11,https://doi.org/10.1108/17427371111172997 +Muhammad Awais Azam,Recognising indoor/outdoor activities of low entropy people using Bluetooth proximity and object usage data.,2013,9,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc9.html#AzamLNA13,https://doi.org/10.1108/IJPCC-09-2013-0025 +Muzna Zafar,Modeling human factors influencing herding during evacuation.,2017,13,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc13.html#ZafarZSMF17,https://doi.org/10.1108/IJPCC-03-2017-0024 +Ashish Raniwala,WShare: an instant secure collaboration workspace over ad hoc wireless LAN.,2009,5,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc5.html#RaniwalaZSZC09,https://doi.org/10.1108/17427370911008839 +Jing-Rong Hsieh,Data rate estimation algorithm for IEEE 802.11e HCCA scheduler.,2008,3,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc3.html#HsiehL08,https://doi.org/10.1108/17427370710856219 +Sardar Kashif Ashraf Khan,LOC algorithm: Location-aware opportunistic forwarding by using node's approximate location.,2014,10,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc10.html#KhanLLAAKS14,https://doi.org/10.1108/IJPCC-02-2014-0017 +Elhadi M. Shakshuki,Intelligent learning agent for collaborative virtual workspace.,2010,6,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc6.html#ShakshukiM10,https://doi.org/10.1108/17427371011066383 +Antônio Tadeu A. Gomes,Expanding mobile ad hoc grids with wired grid resources.,2008,4,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc4.html#GomesZBL08,https://doi.org/10.1108/17427370810932132 +Djamel Guessoum,Contextual location prediction using spatio-temporal clustering.,2016,12,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc12.html#GuessoumMT16,https://doi.org/10.1108/IJPCC-05-2016-0027 +Djamel Guessoum,Contextual case-based reasoning applied to a mobile device.,2017,13,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc13.html#GuessoumMT17,https://doi.org/10.1108/IJPCC-11-2016-0056 +Marcin Davies,m: Ciudad: enabling end-user mobile service creation.,2011,7,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc7.html#DaviesCHFND11,https://doi.org/10.1108/17427371111189683 +Harald Wahl,Towards an intelligent integrated language learning environment.,2011,7,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc7.html#WahlWQ11,https://doi.org/10.1108/17427371111173013 +Jian Zhu 0004,SOLE: context-aware sharing of living experiences.,2011,7,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc7.html#ZhuOPW11,https://doi.org/10.1108/17427371111123702 +Yung-Chien Shih,Adaptive attenuation factor model for localization in wireless sensor networks.,2008,4,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc4.html#ShihHCTS08,https://doi.org/10.1108/17427370810911621 +Fulvio Babich,Performance comparison of advanced antenna systems for wireless mesh routers in an outdoor environment.,2009,5,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc5.html#BabichCM09,https://doi.org/10.1108/17427370910991848 +Minori Inoue,TapOnce: a novel authentication method on smartphones.,2018,14,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc14.html#InoueO18,https://doi.org/10.1108/IJPCC-D-18-00006 +Quang-Minh Nguyen,A novel approach for automatic extraction of semantic data about football transfer in sport news.,2015,11,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc11.html#NguyenC15,https://doi.org/10.1108/IJPCC-03-2015-0018 +Khoi-Nguyen Tran,MobiPSE: A scenario-based mobile-application development for end-user developers.,2014,10,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc10.html#TranN14,https://doi.org/10.1108/IJPCC-03-2014-0024 +Kerri Stone,A Survey of Distance-Based Wireless Sensor Network Localization Techniques.,2012,8,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc8.html#StoneC12,https://doi.org/10.1108/17427371211245373 +Vanessa El-Khoury,Fine-granularity semantic video annotation: An approach based on automatic shot level concept detection and object recognition.,2013,9,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc9.html#El-KhouryJBCK13,https://doi.org/10.1108/IJPCC-07-2013-0019 +Teddy Mantoro,Extreme learning machine for user location prediction in mobile environment.,2011,7,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc7.html#MantoroOOAT11,https://doi.org/10.1108/17427371111146446 +Michael Schuricht,Managing multiple speech-enabled applications in a mobile handheld device.,2009,5,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc5.html#SchurichtDHPMM09,https://doi.org/10.1108/17427370910991884 +Andrew Ennis,High-level geospatial information discovery and fusion for geocoded multimedia.,2013,9,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc9.html#EnnisCNIS13,https://doi.org/10.1108/IJPCC-09-2013-0026 +Sharmistha Chatterjee,Design of energy-efficient location-based cloud services using cheap sensors.,2013,9,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc9.html#ChatterjeeNS13,https://doi.org/10.1108/IJPCC-04-2013-0008 +Jungkyu Han,A study on individual mobility patterns based on individuals' familiarity to visited areas.,2016,12,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc12.html#HanY16,https://doi.org/10.1108/IJPCC-01-2016-0010 +George Exarchakos,Network analysis on Skype end-to-end video quality.,2015,11,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc11.html#ExarchakosDML15,https://doi.org/10.1108/IJPCC-08-2014-0044 +Shih-Hao Shen,A cross-layer design for heterogeneous routing in wireless mesh networks.,2008,4,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc4.html#ShenHD08,https://doi.org/10.1108/17427370810873093 +Mehdia Ajana El-Khaddar,A policy-based middleware for context-aware pervasive computing.,2015,11,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc11.html#El-KhaddarCHBEM15,https://doi.org/10.1108/IJPCC-07-2014-0039 +Ailixier Aikebaier,A multi-layered model for scalable group communication with hybrid clocks.,2012,8,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc8.html#AikebaierTTIE12,https://doi.org/10.1108/17427371211221090 +Rachid Saadi,(Dis)trust certification model for large access in a pervasive environment.,2005,1,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc1.html#SaadiPB05,https://doi.org/10.1108/17427370580000132 +Akiko Takahashi,A behavioral characteristics model for a flexible distributed system.,2010,6,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc6.html#TakahashiK10,https://doi.org/10.1108/17427371011066419 +Hung-Chang Hsiao,Peering by exploiting peer heterogeneity.,2005,1,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc1.html#HsiaoKG05,https://doi.org/10.1108/17427370580000116 +Pin Shen Teh,TDAS: a touch dynamics based multi-factor authentication solution for mobile devices.,2016,12,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc12.html#TehZTC16,https://doi.org/10.1108/IJPCC-01-2016-0005 +Antonio Liotta,A survey on networks for smart-metering systems.,2012,8,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc8.html#LiottaGKH12,https://doi.org/10.1108/17427371211221072 +Terry D. May,An RPC Design for Wireless Sensor Networks.,2006,2,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc2.html#MayDDH06,https://doi.org/10.1108/17427370780000168 +Long Niu,WIF4InL: Web-based integration framework for Indoor location.,2016,12,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc12.html#NiuSMN16,https://doi.org/10.1108/IJPCC-01-2016-0009 +Kaoru Hiramatsu,A simple probabilistic analysis of sensor data fluctuations in the real world.,2010,6,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc6.html#HiramatsuHYO10,https://doi.org/10.1108/17427371011066392 +Xuhui Li,A practical approach to specifying and verifying mobile agent algorithms.,2005,1,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc1.html#LiPC05,https://doi.org/10.1108/17427370580000117 +Luigi Barazzetti,High dynamic range photography without a tripod: A linear formulation for image fusion.,2014,10,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc10.html#Barazzetti14,https://doi.org/10.1108/IJPCC-03-2014-0025 +Karl E. Persson,A fault-tolerant distributed formation protocol for Bluetooth scatternets.,2006,2,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc2.html#PerssonM06,https://doi.org/10.1108/17427370780000146 +Yu-Wei Chan,A flexible locality-aware peer-to-peer streaming system.,2010,6,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc6.html#ChanLC10,https://doi.org/10.1108/17427370911033309 +Wenxi Chen,A scalable mobile phone-based system for multiple vital signs monitoring and healthcare.,2005,1,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc1.html#ChenWDCWTT05,https://doi.org/10.1108/17427370580000121 +Charles B. Owen,Integrating the audience into a theatre performance using mobile devices.,2014,10,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc10.html#OwenDR14,https://doi.org/10.1108/IJPCC-01-2014-0013 +Hongyuan Wang,Rule-based context-aware adaptation: a goal-oriented approach.,2012,8,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc8.html#WangMCSH12,https://doi.org/10.1108/17427371211262662 +Arijit Ukil,Lightweight security scheme for IoT applications using CoAP.,2014,10,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc10.html#UkilBBPB14,https://doi.org/10.1108/IJPCC-01-2014-0002 +Cátia Raminhos,A serious game-based solution to prevent bullying.,2016,12,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc12.html#RaminhosCCGCC16,https://doi.org/10.1108/IJPCC-04-2016-0022 +Reinhard Müllner,An energy efficient pedestrian aware Smart Street Lighting system.,2011,7,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc7.html#MullnerR11,https://doi.org/10.1108/17427371111146437 +Miyuki Imada,LooM: An anonymity quantification method in pervasive computing environments.,2008,4,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc4.html#ImadaOYK08,https://doi.org/10.1108/17427370810873147 +Tony O'Donnell,Semantics for the intuitive governance of autonomic user-centered pervasive computing environments.,2006,2,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc2.html#ODonnellLW06,https://doi.org/10.1108/17427370780000353 +Ningning Cheng,A model for context-aware applications.,2008,4,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc4.html#ChengCTLC08,https://doi.org/10.1108/17427370810932178 +Maria Indrawan-Santiago,Guest editorial.,2015,11,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc11.html#Indrawan-Santiago15,https://doi.org/10.1108/IJPCC-04-2015-0021 +Wenwei Xue,Unstructured Queries Based on Mobile User Context.,2012,8,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc8.html#XueD12,https://doi.org/10.1108/17427371211283038 +Nusret Haliti,An approach for speed limit determination for vehicle tracking in case of GID ambiguity and lack of information in navigation maps.,2017,13,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc13.html#HalitiKJ17,https://doi.org/10.1108/IJPCC-02-2017-0020 +Ruiwei Shen,A system for visualizing sound source using augmented reality.,2013,9,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc9.html#ShenTT13,https://doi.org/10.1108/IJPCC-07-2013-0018 +Yoshiharu Asakura,A unified management framework for linux and Java applications on mobile phones.,2005,1,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc1.html#AsakuraONUN05,https://doi.org/10.1108/17427370580000120 +Tadahiko Kumamoto,Proposal of a system for visualizing temporal changes in impressions from tweets.,2015,11,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc11.html#KumamotoWS15,https://doi.org/10.1108/IJPCC-02-2015-0011 +HongLiang Yuan,The subscription-cover-based routeing algorithm in content-based publish/subscribe.,2009,5,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc5.html#YuanGZ09,https://doi.org/10.1108/17427370910950294 +Farhan Siddiqui,An efficient wireless network discovery scheme for heterogeneous access environments.,2008,4,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc4.html#SiddiquiZ08,https://doi.org/10.1108/17427370810873101 +Ulrich Meissen,Resolving knowledge discrepancies in situation-aware systems.,2005,1,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc1.html#MeissenPVW05,https://doi.org/10.1108/17427370580000135 +Jun Li 0022,Toward an agent-based pluggable infrastructure for context-awareness.,2010,6,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc6.html#LiBCTL10,https://doi.org/10.1108/17427371011084257 +Jenhui Chen,Autonomous Clustering and Message Passing Protocol for Energy Efficiency in Wireless Sensor Networks.,2006,2,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc2.html#ChenC06,https://doi.org/10.1108/17427370780000163 +Frank Chiang,A biologically-inspired multi-agent framework for autonomic service management.,2006,2,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc2.html#ChiangBH06,https://doi.org/10.1108/17427370780000155 +Kichan Bae,Autonomous broadcast pruning in wireless ad hoc networks using coverage estimation.,2009,5,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc5.html#BaeY09,https://doi.org/10.1108/17427370911008820 +Lenin Mehedy,Scalable and adaptive context delivery mechanism for context-aware computing.,2008,4,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc4.html#MehedyLZL08,https://doi.org/10.1108/17427370810890265 +Maulin Patel,Energy-efficient capacity-constrained routing in wireless sensor networks.,2006,2,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc2.html#PatelVC06,https://doi.org/10.1108/17427370780000142 +Nancy Ambritta P,Collaborative Mutual Identity Establishment (CMIE) for the future internet.,2015,11,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc11.html#PRM15,https://doi.org/10.1108/IJPCC-04-2015-0024 +Jemal H. Abawajy,Advances in pervasive computing: GUEST EDITORIAL.,2009,5,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc5.html#Abawajy09,https://doi.org/10.1108/17427370910950276 +Ruiwei Shen,A method for controlling crowd flow by changing recommender information on navigation application.,2016,12,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc12.html#ShenTT16,https://doi.org/10.1108/IJPCC-01-2016-0007 +Kwong Yuen Lai,An analytical study of cache invalidation algorithms in mobile environments.,2006,2,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc2.html#LaiTB06,https://doi.org/10.1108/17427370780000137 +James Z. Wang,An efficient method to measure the semantic similarity of ontologies.,2010,6,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc6.html#WangAS10,https://doi.org/10.1108/17427371011033299 +Jianjun Yang,A new channel assignment algorithm for wireless mesh networks.,2009,5,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc5.html#YangF09,https://doi.org/10.1108/17427370910991839 +Damien Brun,A mobile platform for controlling and interacting with a do-it-yourself smart eyewear.,2017,13,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc13.html#BrunFGG17,https://doi.org/10.1108/IJPCC-02-2017-0011 +Jinbao Li,Data caching and query processing in MANETs.,2005,1,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc1.html#LiLTL05,https://doi.org/10.1108/17427370580000122 +Hiroki Takatsuka,KULOCS: unified locating service for efficient development of location-based applications.,2016,12,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc12.html#TakatsukaTSMN16,https://doi.org/10.1108/IJPCC-01-2016-0004 +Dominik Gruntz,MOONACS: a mobile on-/offline NFC-based physical access control system.,2016,12,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc12.html#GruntzAH16,https://doi.org/10.1108/IJPCC-01-2016-0012 +Shuhei Tsuchida,Mimebot: spherical robot visually imitating a rolling sphere.,2017,13,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc13.html#TsuchidaTTT17,https://doi.org/10.1108/IJPCC-01-2017-0006 +Konstantinos Mourtzoukos,Experiences with G2G: a location-aware mobile social networking system.,2011,7,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc7.html#MourtzoukosCE11,https://doi.org/10.1108/17427371111146400 +Chao-Lieh Chen,Energy-proportional routing for lifetime extension of clustering-based wireless sensor networks.,2008,3,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc3.html#ChenLK08,https://doi.org/10.1108/17427370710856255 +Jason B. Forsyth,Tools for Interdisciplinary Design of Pervasive Computing.,2012,8,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc8.html#ForsythM12,https://doi.org/10.1108/17427371211245355 +Xin Hong,Dynamic similarity-based activity detection and recognition within smart homes.,2012,8,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc8.html#HongNMMDW12,https://doi.org/10.1108/17427371211262653 +Abraham Bernstein,A scenario-based approach for direct interruptability prediction on wearable devices.,2007,3,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc3.html#BernsteinVE07,https://doi.org/10.1108/17427370710863149 +Wei Li 0030,A reverse channel call admission control scheme based on total received power for CDMA systems supporting integrated voice/data services.,2006,2,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc2.html#LiCA06,https://doi.org/10.1108/17427370780000140 +Natalia Kryvinska,Enterprise network maintaining mobility - architectural model of services delivery.,2011,7,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc7.html#KryvinskaSCZ11,https://doi.org/10.1108/17427371111146419 +Codé Diop,QoS-aware and Autonomic-oriented Multi-Path TCP extensions for mobile and multimedia applications.,2012,8,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc8.html#DiopDCEG12,https://doi.org/10.1108/17427371211283001 +Mu-Huan Chiang,Zone Repartitioning: A Load-Balancing Mechanism for Data-Centric Storage Systems.,2006,2,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc2.html#ChiangB06,https://doi.org/10.1108/17427370780000161 +Amir Padovitz,Verification of uncertain context based on a theory of context spaces.,2007,3,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc3.html#PadovitzLZB07,https://doi.org/10.1108/17427370710841918 +Marco Mamei,Place recognition and automatic semantic annotation via the Whereabouts diary.,2010,6,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc6.html#Mamei10,https://doi.org/10.1108/17427371011097613 +Tianbo Lu,Towards an analysis of WonGoo performance.,2007,3,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc3.html#LuFSC07,https://doi.org/10.1108/17427370710847291 +Rabab Hayek,PeerSum: a summary service for P2P applications.,2008,4,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc4.html#HayekRVM08,https://doi.org/10.1108/17427370810932150 +Yu Wang 0026,Label Routing Protocol: A New Cross-Layer Protocol for Multi-Hop Ad Hoc Wireless Networks.,2006,2,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc2.html#WangW06,https://doi.org/10.1108/17427370780000166 +Robert Radziszewski,Designing calm and non-intrusive ambient assisted living system for monitoring nighttime wanderings.,2017,13,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc13.html#RadziszewskiNGL17,https://doi.org/10.1108/IJPCC-02-2017-0015 +Sami Habib,Empirical Analysis of Query-Based Data Aggregation within WSN through Monte Carlo Simulation.,2012,8,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc8.html#HabibM12,https://doi.org/10.1108/17427371211283010 +Mohamed Ganna,Enabling autonomous management of distributed pervasive environments.,2006,2,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc2.html#GannaH06,https://doi.org/10.1108/17427370780000156 +Sihem Cherif,A user-aware approach for describing and publishing context aware composite Web service.,2016,12,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc12.html#CherifDA16,https://doi.org/10.1108/IJPCC-01-2016-0011 +Jun Lu,Probabilistic self-scheduling for coverage configuration in wireless ad-hoc sensor networks.,2008,4,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc4.html#LuBS08,https://doi.org/10.1108/17427370810873084 +Roy Friedman,Evaluating failure detection in mobile ad-hoc networks.,2009,5,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc5.html#FriedmanT09,https://doi.org/10.1108/17427370911008857 +Fuyuki Ishikawa,A framework for synthesis of web services and mobile agents.,2005,1,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc1.html#IshikawaTYH05,https://doi.org/10.1108/17427370580000128 +Ayomi Bandara,A pragmatic approach for the semantic description and matching of pervasive resources.,2010,6,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc6.html#BandaraPRGL10,https://doi.org/10.1108/17427371011033271 +Eugene Yujun Fu,Automatic fight detection in surveillance videos.,2017,13,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc13.html#FuLNC17,https://doi.org/10.1108/IJPCC-02-2017-0018 +Ishu Sharma,A survey on ACO based multipath routing algorithms for ad hoc networks.,2017,13,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc13.html#SharmaR17,https://doi.org/10.1108/IJPCC-D-17-00015 +Rachid Kadouche,Novel model for inhabitants prediction in smart houses.,2012,8,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc8.html#KadoucheA12,https://doi.org/10.1108/17427371211262644 +Yusuke Gotoh,A scheduling method for continuous media data broadcasting considering commercial contents.,2012,8,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc8.html#GotohYTK12,https://doi.org/10.1108/17427371211221108 +R. Chellappa Doss,Prediction based location aided routing for mobile ad hoc networks.,2006,2,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc2.html#DossJS06,https://doi.org/10.1108/17427370780000144 +Kok-Leong Ong,Participatory sensing and education: Helping the community mitigate sleep disturbance from traffic noise.,2014,10,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc10.html#OngLK14,https://doi.org/10.1108/IJPCC-04-2014-0030 +Ekaterina Gilman,Perception framework for supporting development of context-aware web services.,2011,7,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc7.html#GilmanSDZR11,https://doi.org/10.1108/17427371111189665 +Haider Boudjemline,Heavyweight extension to the UML class diagram metamodel for modeling context aware systems in ubiquitous computing.,2017,13,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc13.html#BoudjemlineTBK17,https://doi.org/10.1108/IJPCC-02-2017-0016 +Stephan Olariu,Taking VANET to the clouds.,2011,7,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc7.html#OlariuKA11,https://doi.org/10.1108/17427371111123577 +Aisha Aseeri,Achieving protection against man-in-the-middle attack in HB family protocols implemented in RFID tags.,2016,12,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc12.html#AseeriB16,https://doi.org/10.1108/IJPCC-03-2016-0015 +Ka Lun Eddie Law,Ubiquitous content formulations for real-time information communications.,2008,4,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc4.html#LawS08,https://doi.org/10.1108/17427370810873156 +Ronnie Cheung,A fuzzy service adaptation engine for context-aware mobile computing middleware.,2008,4,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc4.html#CheungYCC08,https://doi.org/10.1108/17427370810890256 +Hajer Taktak,A service-oriented application creation process in ubiquitous environments: Travel assistant mobile application.,2017,13,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc13.html#TaktakM17,https://doi.org/10.1108/IJPCC-10-2016-0054 +Hideyuki Takahashi,Gentle supervisory system based on integration of environmental information and social knowledge.,2010,6,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc6.html#TakahashiYITSS10,https://doi.org/10.1108/17427371011066437 +Sushil Kumar 0003,An advanced forwarding routing protocol for urban scenarios in VANETs.,2017,13,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc13.html#KumarV17,https://doi.org/10.1108/IJPCC-D-17-00008 +Jemal H. Abawajy,Human-computer interaction in ubiquitous computing environments.,2009,5,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc5.html#Abawajy09a,https://doi.org/10.1108/17427370910950311 +Yusuke Gotoh,A scheduling method for heterogeneous clients on media data broadcasting.,2013,9,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc9.html#GotohYTK13,https://doi.org/10.1108/IJPCC-04-2013-0009 +Zibouda Aliouat,Energy efficient clustering for wireless sensor networks.,2014,10,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc10.html#AliouatH14,https://doi.org/10.1108/IJPCC-05-2014-0033 +Scott Fowler,Implementing an adaptive TCP fairness while exploiting 802.11e over wireless mesh networks.,2009,5,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc5.html#FowlerEB09,https://doi.org/10.1108/17427370910991857 +Daein Kim,Broadcasting four types of reports to read only transactions in mobile computing environments.,2008,4,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc4.html#KimH08,https://doi.org/10.1108/17427370810890391 +Yu Suzuki,What is your tweet worldview? Mapping the topic structure of tweets on the Wikipedia.,2018,14,Int. J. Pervasive Computing and Communications,1,db/journals/ijpcc/ijpcc14.html#SuzukiON18,https://doi.org/10.1108/IJPCC-D-18-00008 +Ching-Wen Chen,An improved efficient performance design with multiple channels and bandwidth allocation strategy for mobile ad hoc networks.,2008,4,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc4.html#ChenL08,https://doi.org/10.1108/17427370810911630 +Shiow-Fen Hwang,Hierarchical data gathering schemes in wireless sensor networks.,2008,4,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc4.html#HwangLCD08,https://doi.org/10.1108/17427370810911649 +Nacha Chondamrongkul,Model-driven framework to support evolution of mobile applications in multi-cloud environments.,2016,12,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc12.html#Chondamrongkul16,https://doi.org/10.1108/IJPCC-01-2016-0003 +Soo-Young Suk,A speech and character combined recognition engine for mobile devices.,2008,4,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc4.html#SukC08,https://doi.org/10.1108/17427370810890409 +Jehn-Ruey Jiang,A hybrid power-saving protocol by dual-channel and dual-transmission-range clustering for IEEE 802.11-based MANETs.,2008,3,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc3.html#JiangYCH08,https://doi.org/10.1108/17427370710856200 +Xiaoyu Li,A passive method for privacy protection in the perceptual layer of IoTs.,2017,13,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc13.html#LiYH17,https://doi.org/10.1108/IJPCC-03-2017-0025 +Shih-Lin Wu,A Fully Distributed Multi-Channel MAC Protocol for Ad Hoc Networks Based on Location Information.,2006,2,Int. J. Pervasive Computing and Communications,4,db/journals/ijpcc/ijpcc2.html#WuSL06,https://doi.org/10.1108/17427370780000164 +Luyi Li,Ubiquitous Computing in Learning: Toward a Conceptual Framework of Ubiquitous Learning Environment.,2005,1,Int. J. Pervasive Computing and Communications,3,db/journals/ijpcc/ijpcc1.html#LiZOY05,https://doi.org/10.1108/17427370580000126 +Sulaimon A. Bashir,A framework for unsupervised change detection in activity recognition.,2017,13,Int. J. Pervasive Computing and Communications,2,db/journals/ijpcc/ijpcc13.html#BashirPD17,https://doi.org/10.1108/IJPCC-03-2017-0027 +Moshe Leshno,Neural nets in a group decision process.,2003,31,Int. J. Game Theory,3,db/journals/ijgt/ijgt31.html#LeshnoME03,https://doi.org/10.1007/s001820300130 +Doron Sonsino,Geanakoplos and Sebenius model with noise.,1998,27,Int. J. Game Theory,1,db/journals/ijgt/ijgt27.html#Sonsino98,https://doi.org/10.1007/BF01243198 +Igal Milchtaich,Representation of finite games as network congestion games.,2013,42,Int. J. Game Theory,4,db/journals/ijgt/ijgt42.html#Milchtaich13,https://doi.org/10.1007/s00182-012-0363-5 +Itai Arieli,Infinite sequential games with perfect but incomplete information.,2011,40,Int. J. Game Theory,2,db/journals/ijgt/ijgt40.html#ArieliL11,https://doi.org/10.1007/s00182-010-0234-x +özgün Ekici,An equilibrium analysis of the probabilistic serial mechanism.,2016,45,Int. J. Game Theory,3,db/journals/ijgt/ijgt45.html#EkiciK16,https://doi.org/10.1007/s00182-015-0475-9 +Igal Milchtaich,Implementability of correlated and communication equilibrium outcomes in incomplete information games.,2014,43,Int. J. Game Theory,2,db/journals/ijgt/ijgt43.html#Milchtaich14,https://doi.org/10.1007/s00182-013-0381-y +Stergios Athanassoglou,House allocation with fractional endowments.,2011,40,Int. J. Game Theory,3,db/journals/ijgt/ijgt40.html#AthanassoglouS11,https://doi.org/10.1007/s00182-010-0251-9 +Ezra Einy,Common-value all-pay auctions with asymmetric information.,2017,46,Int. J. Game Theory,1,db/journals/ijgt/ijgt46.html#EinyGHOS17,https://doi.org/10.1007/s00182-015-0524-4 +Jonathan Newton,The preferences of Homo Moralis are unstable under evolving assortativity.,2017,46,Int. J. Game Theory,2,db/journals/ijgt/ijgt46.html#Newton17,https://doi.org/10.1007/s00182-016-0548-4 +Sjaak Hurkens,Dynamic matching and bargaining with heterogeneous deadlines.,2015,44,Int. J. Game Theory,3,db/journals/ijgt/ijgt44.html#HurkensV15,https://doi.org/10.1007/s00182-014-0446-6 +Hans Peters,An axiomatic characterization of the Owen-Shapley spatial power index.,2017,46,Int. J. Game Theory,2,db/journals/ijgt/ijgt46.html#PetersZ17,https://doi.org/10.1007/s00182-016-0544-8 +Hannu Salonen,On the existence of Nash equilibria in large games.,2010,39,Int. J. Game Theory,3,db/journals/ijgt/ijgt39.html#Salonen10,https://doi.org/10.1007/s00182-009-0180-7 +Ady Pauzner,Independent mistakes in large games.,2000,29,Int. J. Game Theory,2,db/journals/ijgt/ijgt29.html#Pauzner00,https://doi.org/10.1007/s001820000033 +Elwyn Berlekamp,Entrepreneurial Chess.,2018,47,Int. J. Game Theory,2,db/journals/ijgt/ijgt47.html#BerlekampL18,https://doi.org/10.1007/s00182-017-0580-z +Craig Tennenhouse,Impartial poker nim.,2018,47,Int. J. Game Theory,2,db/journals/ijgt/ijgt47.html#Tennenhouse18,https://doi.org/10.1007/s00182-016-0559-1 +Peter Duersch,When is tit-for-tat unbeatable?,2014,43,Int. J. Game Theory,1,db/journals/ijgt/ijgt43.html#DuerschOS14,https://doi.org/10.1007/s00182-013-0370-1 +Luciano Méndez-Naya,Weak topology and infinite matrix games.,1998,27,Int. J. Game Theory,2,db/journals/ijgt/ijgt27.html#Mendez-Naya98,https://doi.org/10.1007/s001820050068 +Pingzhong Tang,Unit-sphere games.,2017,46,Int. J. Game Theory,4,db/journals/ijgt/ijgt46.html#TangZ17,https://doi.org/10.1007/s00182-017-0565-y +Akihiro Suzuki,Farsighted Stability in an n-Person Prisoner's Dilemma.,2005,33,Int. J. Game Theory,3,db/journals/ijgt/ijgt33.html#SuzukiM05,https://doi.org/10.1007/s00182-005-0209-5 +Abraham Neyman,Equilibria in repeated games of incomplete information: The general symmetric case.,1998,27,Int. J. Game Theory,2,db/journals/ijgt/ijgt27.html#NeymanS98,https://doi.org/10.1007/s001820050066 +Marcin Malawski,Procedural values for cooperative games.,2013,42,Int. J. Game Theory,1,db/journals/ijgt/ijgt42.html#Malawski13,https://doi.org/10.1007/s00182-012-0361-7 +Matthias Messner,Strong and coalition-proof political equilibria under plurality and runoff rule.,2007,35,Int. J. Game Theory,2,db/journals/ijgt/ijgt35.html#MessnerP07,https://doi.org/10.1007/s00182-006-0048-z +Emilio Calvo,The multichoice consistent value.,2000,29,Int. J. Game Theory,2,db/journals/ijgt/ijgt29.html#CalvoGS00,https://doi.org/10.1007/s001820000036 +Adam Meirowitz,Communication and bargaining in the spatial model.,2007,35,Int. J. Game Theory,2,db/journals/ijgt/ijgt35.html#Meirowitz07,https://doi.org/10.1007/s00182-006-0052-3 +Yves Sprumont,Nearly serial sharing methods.,2008,37,Int. J. Game Theory,2,db/journals/ijgt/ijgt37.html#Sprumont08,https://doi.org/10.1007/s00182-008-0119-4 +Ulrich Faigle,Note Computing the nucleolus of min-cost spanning tree games is NP-hard - Computing the nucleolus of min-cost spanning tree games is NP-hard.,1998,27,Int. J. Game Theory,3,db/journals/ijgt/ijgt27.html#FaigleKK98,https://doi.org/10.1007/s001820050083 +Giulio Codognato,On existence of undominated pure strategy Nash equilibria in anonymous nonatomic games: a generalization.,2003,31,Int. J. Game Theory,4,db/journals/ijgt/ijgt31.html#CodognatoG03,https://doi.org/10.1007/s001820300132 +Hans Peters,Preface to the special issue on the occasion of the first Spain Italy Netherlands meeting on Game theory (SING 1).,2007,36,Int. J. Game Theory,2,db/journals/ijgt/ijgt36.html#PetersV07,https://doi.org/10.1007/s00182-007-0107-0 +Yves Breitmoser,Demand commitments in majority bargaining or how formateurs get their way.,2009,38,Int. J. Game Theory,2,db/journals/ijgt/ijgt38.html#Breitmoser09,https://doi.org/10.1007/s00182-008-0144-3 +Isa Emin Hafalir,Core deviation minimizing auctions.,2015,44,Int. J. Game Theory,2,db/journals/ijgt/ijgt44.html#HafalirY15,https://doi.org/10.1007/s00182-014-0433-y +Marilda Sotomayor,A further note on the college admission game.,2012,41,Int. J. Game Theory,1,db/journals/ijgt/ijgt41.html#Sotomayor12,https://doi.org/10.1007/s00182-011-0278-6 +Salvador Barberà,Group strategy-proof social choice functions with binary ranges and arbitrary domains: characterization results.,2012,41,Int. J. Game Theory,4,db/journals/ijgt/ijgt41.html#BarberaBM12,https://doi.org/10.1007/s00182-011-0305-7 +Ryoji Sawa,Mutation rates and equilibrium selection under stochastic evolutionary dynamics.,2012,41,Int. J. Game Theory,3,db/journals/ijgt/ijgt41.html#Sawa12,https://doi.org/10.1007/s00182-011-0299-1 +Marco Mariotti,The Nash rationing problem.,2005,33,Int. J. Game Theory,3,db/journals/ijgt/ijgt33.html#MariottiV05,https://doi.org/10.1007/s00182-005-0205-9 +Dan S. Felsenthal,Ternary voting games.,1997,26,Int. J. Game Theory,3,db/journals/ijgt/ijgt26.html#FelsenthalM97,https://doi.org/10.1007/BF01263275 +Valerio Capraro,Optimal strategies for a game on amenable semigroups.,2013,42,Int. J. Game Theory,4,db/journals/ijgt/ijgt42.html#CapraroM13,https://doi.org/10.1007/s00182-012-0345-7 +Antonio J. Morales,The Walrasian output beats the market.,2012,41,Int. J. Game Theory,1,db/journals/ijgt/ijgt41.html#MoralesF12,https://doi.org/10.1007/s00182-010-0270-6 +Ruqu Wang,Separating equilibria in a continuous-time bargaining model with two-sided uncertainty.,2000,29,Int. J. Game Theory,2,db/journals/ijgt/ijgt29.html#Wang00,https://doi.org/10.1007/s001820000037 +Hans Gersbach,Information acquisition and transparency in committees.,2012,41,Int. J. Game Theory,2,db/journals/ijgt/ijgt41.html#GersbachH12,https://doi.org/10.1007/s00182-011-0295-5 +Nikolai S. Kukushkin,Nash equilibrium in compact-continuous games with a potential.,2011,40,Int. J. Game Theory,2,db/journals/ijgt/ijgt40.html#Kukushkin11a,https://doi.org/10.1007/s00182-010-0261-7 +Marc Meertens,Bargaining sets in exchange economies with indivisibilities and money.,2005,33,Int. J. Game Theory,2,db/journals/ijgt/ijgt33.html#MeertensPR05,https://doi.org/10.1007/s00182-005-0202-z +Srihari Govindan,Maximal stable sets of two-player games.,2002,30,Int. J. Game Theory,4,db/journals/ijgt/ijgt30.html#GovindanW02,https://doi.org/10.1007/s001820200098 +Richard P. McLean,Weighted Aumann-Shapley pricing.,1998,27,Int. J. Game Theory,4,db/journals/ijgt/ijgt27.html#McLeanS98,https://doi.org/10.1007/s001820050087 +Pablo Brañas-Garza,Strategic risk and response time across games.,2017,46,Int. J. Game Theory,2,db/journals/ijgt/ijgt46.html#Branas-GarzaMM17,https://doi.org/10.1007/s00182-016-0541-y +Bram Driesen,A non-cooperative foundation for the continuous Raiffa solution.,2017,46,Int. J. Game Theory,4,db/journals/ijgt/ijgt46.html#DriesenEW17,https://doi.org/10.1007/s00182-017-0567-9 +Toru Hokari,Population monotonic solutions on convex games.,2000,29,Int. J. Game Theory,3,db/journals/ijgt/ijgt29.html#Hokari00a,https://doi.org/10.1007/s001820000043 +Michael Suk-Young Chwe,Rationally constructing the dimensions of the political sphere.,2007,35,Int. J. Game Theory,2,db/journals/ijgt/ijgt35.html#Chwe07,https://doi.org/10.1007/s00182-006-0040-7 +Nizar Allouch,On the non-emptiness of the fuzzy core.,2008,37,Int. J. Game Theory,2,db/journals/ijgt/ijgt37.html#AllouchP08,https://doi.org/10.1007/s00182-007-0105-2 +Antoni Calvó-Armengol,Introduction.,2006,34,Int. J. Game Theory,3,db/journals/ijgt/ijgt34.html#Calvo-ArmengolD06,https://doi.org/10.1007/s00182-006-0028-3 +Massimo Marinacci,Finitely additive and epsilon Nash equilibria.,1997,26,Int. J. Game Theory,3,db/journals/ijgt/ijgt26.html#Marinacci97,https://doi.org/10.1007/BF01263274 +Mehmet Bac,A note on efficient signaling of bargaining power.,2000,29,Int. J. Game Theory,1,db/journals/ijgt/ijgt29.html#Bac00,https://doi.org/10.1007/s001829900024 +Mark Voorneveld,Probabilistic Choice in Games: Properties of Rosenthal's t-Solutions.,2006,34,Int. J. Game Theory,1,db/journals/ijgt/ijgt34.html#Voorneveld06,https://doi.org/10.1007/s00182-005-0003-4 +Gilad Bavly,Uncertainty in the traveler's dilemma.,2017,46,Int. J. Game Theory,1,db/journals/ijgt/ijgt46.html#Bavly17,https://doi.org/10.1007/s00182-015-0508-4 +Ruud Hendrickx,A note on NTU convexity.,2002,31,Int. J. Game Theory,1,db/journals/ijgt/ijgt31.html#HendrickxBT02,https://doi.org/10.1007/s001820200105 +Endre Boros,A nested family of \(\varvec{k}\) -total effective rewards for positional games.,2017,46,Int. J. Game Theory,1,db/journals/ijgt/ijgt46.html#BorosEGM17,https://doi.org/10.1007/s00182-016-0532-z +P. Jean-Jacques Herings,Sequential share bargaining.,2012,41,Int. J. Game Theory,2,db/journals/ijgt/ijgt41.html#HeringsP12,https://doi.org/10.1007/s00182-011-0286-6 +Abraham Neyman,The value of two-person zero-sum repeated games with incomplete information and uncertain duration.,2012,41,Int. J. Game Theory,1,db/journals/ijgt/ijgt41.html#Neyman12,https://doi.org/10.1007/s00182-011-0281-y +Mukul Majumdar,Strategic analysis of influence peddling.,2012,41,Int. J. Game Theory,4,db/journals/ijgt/ijgt41.html#MajumdarY12,https://doi.org/10.1007/s00182-012-0340-z +Eilon Solan,Quitting games - An example.,2003,31,Int. J. Game Theory,3,db/journals/ijgt/ijgt31.html#SolanV03,https://doi.org/10.1007/s001820200125 +Sebastian Bervoets,Gerrymander-proof representative democracies.,2012,41,Int. J. Game Theory,3,db/journals/ijgt/ijgt41.html#BervoetsM12,https://doi.org/10.1007/s00182-011-0298-2 +Nikolai S. Kukushkin,Improvement dynamics in games with strategic complementarities.,2005,33,Int. J. Game Theory,2,db/journals/ijgt/ijgt33.html#KukushkinTY05,https://doi.org/10.1007/s001820400195 +Prasenjit Mondal,On discounted AR-AT semi-Markov games and its complementarity formulations.,2016,45,Int. J. Game Theory,3,db/journals/ijgt/ijgt45.html#MondalSND16,https://doi.org/10.1007/s00182-015-0470-1 +Takaaki Abe,The non-emptiness of the core of a partition function form game.,2017,46,Int. J. Game Theory,3,db/journals/ijgt/ijgt46.html#AbeF17,https://doi.org/10.1007/s00182-016-0554-6 +Heng Liu,Correlation and unmediated cheap talk in repeated games with imperfect monitoring.,2017,46,Int. J. Game Theory,4,db/journals/ijgt/ijgt46.html#Liu17a,https://doi.org/10.1007/s00182-017-0569-7 +Daniel Granot,The reactive bargaining set of some flow games and of superadditive simple games.,1997,26,Int. J. Game Theory,2,db/journals/ijgt/ijgt26.html#GranotGZ97,https://doi.org/10.1007/BF01295849 +Javier Rivas,Friendship selection.,2009,38,Int. J. Game Theory,4,db/journals/ijgt/ijgt38.html#Rivas09,https://doi.org/10.1007/s00182-009-0168-3 +Marco Slikker,Inheritance of properties in communication situations.,2000,29,Int. J. Game Theory,2,db/journals/ijgt/ijgt29.html#Slikker00,https://doi.org/10.1007/s001820000039 +Satoru Takahashi,Perfect foresight dynamics in games with linear incentives and time symmetry.,2008,37,Int. J. Game Theory,1,db/journals/ijgt/ijgt37.html#Takahashi08,https://doi.org/10.1007/s00182-007-0101-6 +Anne Souquière,Approximation and representation of the value for some differential games with asymmetric information.,2010,39,Int. J. Game Theory,4,db/journals/ijgt/ijgt39.html#Souquiere10,https://doi.org/10.1007/s00182-009-0217-y +Heike Hennig-Schmidt,Asymmetric outside options in ultimatum bargaining: a systematic analysis.,2018,47,Int. J. Game Theory,1,db/journals/ijgt/ijgt47.html#Hennig-SchmidtI18,https://doi.org/10.1007/s00182-017-0588-4 +Ronald Stauber,A framework for robustness to ambiguity of higher-order beliefs.,2014,43,Int. J. Game Theory,3,db/journals/ijgt/ijgt43.html#Stauber14,https://doi.org/10.1007/s00182-013-0394-6 +Geoffroy de Clippel,An axiomatization of the inner core.,2003,31,Int. J. Game Theory,4,db/journals/ijgt/ijgt31.html#Clippel03,https://doi.org/10.1007/s001820300139 +Sylvain Béal,Axioms of invariance for TU-games.,2015,44,Int. J. Game Theory,4,db/journals/ijgt/ijgt44.html#BealRS15,https://doi.org/10.1007/s00182-014-0458-2 +Daniel Monte,Incentive constraints in games with bounded memory.,2014,43,Int. J. Game Theory,1,db/journals/ijgt/ijgt43.html#Monte14,https://doi.org/10.1007/s00182-013-0376-8 +Noah D. Stein,Separable and low-rank continuous games.,2008,37,Int. J. Game Theory,4,db/journals/ijgt/ijgt37.html#SteinOP08,https://doi.org/10.1007/s00182-008-0129-2 +Aner Sela,Fictitious play in coordination games.,1999,28,Int. J. Game Theory,2,db/journals/ijgt/ijgt28.html#SelaH99,https://doi.org/10.1007/s001820050012 +Roberto Lucchetti,A new family of regular semivalues and applications.,2011,40,Int. J. Game Theory,4,db/journals/ijgt/ijgt40.html#LucchettiRM11,https://doi.org/10.1007/s00182-010-0263-5 +Yuji Fujinaka,The positive consequence of strategic manipulation in indivisible good allocation.,2009,38,Int. J. Game Theory,3,db/journals/ijgt/ijgt38.html#FujinakaS09,https://doi.org/10.1007/s00182-009-0156-7 +Jens Leth Hougaard,On the set of Lorenz-maximal imputations in the core of a balanced game.,2001,30,Int. J. Game Theory,2,db/journals/ijgt/ijgt30.html#HougaardPT01,https://doi.org/10.1007/s001820100070 +Siqi Pan,Exploding offers and unraveling in two-sided matching markets.,2018,47,Int. J. Game Theory,1,db/journals/ijgt/ijgt47.html#Pan18,https://doi.org/10.1007/s00182-017-0593-7 +Takuya Masuzawa,Strong convexity of NTU games.,2012,41,Int. J. Game Theory,3,db/journals/ijgt/ijgt41.html#Masuzawa12,https://doi.org/10.1007/s00182-012-0330-1 +Mark Voorneveld,Axiomatizations of the Euclidean compromise solution.,2011,40,Int. J. Game Theory,3,db/journals/ijgt/ijgt40.html#VoorneveldNM11,https://doi.org/10.1007/s00182-010-0240-z +John P. Conley,Memetics and voting: how nature may make us public spirited.,2006,35,Int. J. Game Theory,1,db/journals/ijgt/ijgt35.html#ConleyTW06,https://doi.org/10.1007/s00182-006-0045-2 +Michal Król,On the equivalence of quantity competition and supply function competition with sunk costs.,2017,46,Int. J. Game Theory,2,db/journals/ijgt/ijgt46.html#Krol17,https://doi.org/10.1007/s00182-016-0542-x +Ronald Fagin,The hierarchical approach to modeling knowledge and common knowledge.,1999,28,Int. J. Game Theory,3,db/journals/ijgt/ijgt28.html#FaginGHV99,https://doi.org/10.1007/s001820050114 +Juan Carlos Santos,Mixing weighted values of non-atomic games.,1998,27,Int. J. Game Theory,3,db/journals/ijgt/ijgt27.html#SantosZ98,https://doi.org/10.1007/s001820050076 +Ori Haimanko,Approximate robustness of equilibrium to incomplete information.,2016,45,Int. J. Game Theory,4,db/journals/ijgt/ijgt45.html#HaimankoK16,https://doi.org/10.1007/s00182-015-0488-4 +James S. Jordan,Stable sets in majority pillage games.,2015,44,Int. J. Game Theory,2,db/journals/ijgt/ijgt44.html#JordanO15,https://doi.org/10.1007/s00182-014-0440-z +Adam Brandenburger,The power of paradox: some recent developments in interactive epistemology.,2007,35,Int. J. Game Theory,4,db/journals/ijgt/ijgt35.html#Brandenburger07,https://doi.org/10.1007/s00182-006-0061-2 +Jiuqiang Liu,Existence of competitive equilibrium in coalition production economies with a continuum of agents.,2017,46,Int. J. Game Theory,4,db/journals/ijgt/ijgt46.html#Liu17,https://doi.org/10.1007/s00182-016-0563-5 +Klaus Ritzberger,Recall in extensive form games.,1999,28,Int. J. Game Theory,1,db/journals/ijgt/ijgt28.html#Ritzberger99,https://doi.org/10.1007/s001820050099 +Jérôme Renault,3-player repeated games with lack of information on one side.,2001,30,Int. J. Game Theory,2,db/journals/ijgt/ijgt30.html#Renault01,https://doi.org/10.1007/s001820100076 +Taiji Furusawa,Flexibility of disagreement actions in negotiations.,2001,30,Int. J. Game Theory,1,db/journals/ijgt/ijgt30.html#FurusawaW01,https://doi.org/10.1007/s001820100062 +Takuya Masuzawa,Computing the cores of strategic games with punishment-dominance relations.,2008,37,Int. J. Game Theory,2,db/journals/ijgt/ijgt37.html#Masuzawa08,https://doi.org/10.1007/s00182-007-0104-3 +Norman L. Kleinberg,On membership and marginal values.,2013,42,Int. J. Game Theory,2,db/journals/ijgt/ijgt42.html#KleinbergW13,https://doi.org/10.1007/s00182-013-0367-9 +Michele Lombardi 0002,Natural implementation with semi-responsible agents in pure exchange economies.,2017,46,Int. J. Game Theory,4,db/journals/ijgt/ijgt46.html#LombardiY17,https://doi.org/10.1007/s00182-017-0568-8 +Thomas Böhme 0001,Learning of winning strategies for terminal games with linear-size memory.,2009,38,Int. J. Game Theory,2,db/journals/ijgt/ijgt38.html#BohmeGTU09,https://doi.org/10.1007/s00182-008-0142-5 +Michel Benaïm,A two armed bandit type problem.,2003,32,Int. J. Game Theory,1,db/journals/ijgt/ijgt32.html#BenaimA03,https://doi.org/10.1007/s001820300135 +Thomas Quint,A theorem on the number of Nash equilibria in a bimatrix game.,1997,26,Int. J. Game Theory,3,db/journals/ijgt/ijgt26.html#QuintS97,https://doi.org/10.1007/BF01263276 +Tadeusz Radzik,Characterization of optimal strategies in matrix games with convexity properties.,2000,29,Int. J. Game Theory,2,db/journals/ijgt/ijgt29.html#Radzik00,https://doi.org/10.1007/s001820000035 +Sylvain Sorin,On the impact of an event.,1998,27,Int. J. Game Theory,3,db/journals/ijgt/ijgt27.html#Sorin98,https://doi.org/10.1007/s001820050075 +Horst Raff,Cumbersome coordination in repeated games.,2000,29,Int. J. Game Theory,1,db/journals/ijgt/ijgt29.html#RaffS00,https://doi.org/10.1007/s001820050008 +David P. Roberts,Nash equilibria of Cauchy-random zero-sum and coordination matrix games.,2006,34,Int. J. Game Theory,2,db/journals/ijgt/ijgt34.html#Roberts06,https://doi.org/10.1007/s00182-006-0016-7 +Vlad Mares,Comparing first and second price auctions with asymmetric bidders.,2014,43,Int. J. Game Theory,3,db/journals/ijgt/ijgt43.html#MaresS14,https://doi.org/10.1007/s00182-013-0392-8 +L. Hernández-Lamoneda,Dissection of solutions in cooperative game theory using representation techniques.,2007,35,Int. J. Game Theory,3,db/journals/ijgt/ijgt35.html#Hernandez-LamonedaJS07,https://doi.org/10.1007/s00182-006-0036-3 +Nikolai S. Kukushkin,Acyclicity of improvements in finite game forms.,2011,40,Int. J. Game Theory,1,db/journals/ijgt/ijgt40.html#Kukushkin11,https://doi.org/10.1007/s00182-010-0231-0 +Francis Flanagan,Contracts vs. preferences over colleagues in matching.,2015,44,Int. J. Game Theory,1,db/journals/ijgt/ijgt44.html#Flanagan15,https://doi.org/10.1007/s00182-014-0426-x +Jonathan Hamilton,Equilibrium with strategy-dependent trembles.,2005,33,Int. J. Game Theory,4,db/journals/ijgt/ijgt33.html#HamiltonS05,https://doi.org/10.1007/s00182-005-0206-8 +Igal Milchtaich,Crowding games are sequentially solvable.,1998,27,Int. J. Game Theory,4,db/journals/ijgt/ijgt27.html#Milchtaich98,https://doi.org/10.1007/s001820050086 +Youngsub Chun,Equivalence of axioms for bankruptcy problems.,1999,28,Int. J. Game Theory,4,db/journals/ijgt/ijgt28.html#Chun99,https://doi.org/10.1007/s001820050122 +Vic Baston,Search games on a network with travelling and search costs.,2015,44,Int. J. Game Theory,2,db/journals/ijgt/ijgt44.html#BastonK15,https://doi.org/10.1007/s00182-014-0432-z +Christian Trudeau,Linking the Kar and folk solutions through a problem separation property.,2014,43,Int. J. Game Theory,4,db/journals/ijgt/ijgt43.html#Trudeau14,https://doi.org/10.1007/s00182-013-0407-5 +Adib Bagh,Existence of equilibria in constrained discontinuous games.,2016,45,Int. J. Game Theory,4,db/journals/ijgt/ijgt45.html#Bagh16,https://doi.org/10.1007/s00182-015-0480-z +René van den Brink,A polynomial time algorithm for computing the nucleolus for a class of disjunctive games with a permission structure.,2011,40,Int. J. Game Theory,3,db/journals/ijgt/ijgt40.html#BrinkKL11,https://doi.org/10.1007/s00182-010-0257-3 +Jean Derks,Note On the core of a collection of coalitions - On the core of a collection of coalitions.,1998,27,Int. J. Game Theory,3,db/journals/ijgt/ijgt27.html#DerksR98,https://doi.org/10.1007/s001820050084 +Christophe Labreuche,A value for bi-cooperative games.,2008,37,Int. J. Game Theory,3,db/journals/ijgt/ijgt37.html#LabreucheG08,https://doi.org/10.1007/s00182-008-0126-5 +Gustavo Bergantiños,Characterization of monotonic rules in minimum cost spanning tree problems.,2015,44,Int. J. Game Theory,4,db/journals/ijgt/ijgt44.html#BergantinosV15,https://doi.org/10.1007/s00182-014-0456-4 +Jean-François Mertens,Localization of the degree on lower-dimensional sets.,2004,32,Int. J. Game Theory,3,db/journals/ijgt/ijgt32.html#Mertens04,https://doi.org/10.1007/s001820400164 +Diego Aycinena,Informed entry in auctions.,2018,47,Int. J. Game Theory,1,db/journals/ijgt/ijgt47.html#AycinenaBR18,https://doi.org/10.1007/s00182-017-0583-9 +Edward J. Cartwright,On purification of equilibrium in Bayesian games and expost Nash equilibrium.,2009,38,Int. J. Game Theory,1,db/journals/ijgt/ijgt38.html#CartwrightW09,https://doi.org/10.1007/s00182-008-0149-y +Mark B. Cronshaw,Some bounds for Markov chains.,1997,26,Int. J. Game Theory,4,db/journals/ijgt/ijgt26.html#CronshawK97,https://doi.org/10.1007/BF01813892 +Amit K. Biswas,Stability and largeness of core for symmetric games.,2000,29,Int. J. Game Theory,1,db/journals/ijgt/ijgt29.html#BiswasRP00,https://doi.org/10.1007/s001820050002 +Eric Bahel,On the core and bargaining set of a veto game.,2016,45,Int. J. Game Theory,3,db/journals/ijgt/ijgt45.html#Bahel16,https://doi.org/10.1007/s00182-015-0469-7 +Willemien Kets,Learning to be prepared.,2008,37,Int. J. Game Theory,3,db/journals/ijgt/ijgt37.html#KetsV08,https://doi.org/10.1007/s00182-008-0121-x +John Hillas,Independence of inadmissible strategies and best reply stability: a direct proof.,2004,32,Int. J. Game Theory,3,db/journals/ijgt/ijgt32.html#HillasJPV04,https://doi.org/10.1007/s001820400168 +Carlos Alós-Ferrer,Characterizations of perfect recall.,2017,46,Int. J. Game Theory,2,db/journals/ijgt/ijgt46.html#Alos-FerrerR17,https://doi.org/10.1007/s00182-016-0534-x +Nitsan Perach,Incentive compatibility for the stable matching model with an entrance criterion.,2010,39,Int. J. Game Theory,4,db/journals/ijgt/ijgt39.html#PerachR10,https://doi.org/10.1007/s00182-009-0210-5 +George Ehrhardt,Diffusion and growth in an evolving network.,2006,34,Int. J. Game Theory,3,db/journals/ijgt/ijgt34.html#EhrhardtMV06,https://doi.org/10.1007/s00182-006-0025-6 +Elena Yanovskaya,Note On linear consistency of anonymous values for TU-games.,2002,30,Int. J. Game Theory,4,db/journals/ijgt/ijgt30.html#YanovskayaD02,https://doi.org/10.1007/s001820200093 +Katarína Cechlárová,Stability in coalition formation games.,2001,29,Int. J. Game Theory,4,db/journals/ijgt/ijgt29.html#CechlarovaR01,https://doi.org/10.1007/s001820000053 +Bhaskar Dutta,Link formation in cooperative situations.,1998,27,Int. J. Game Theory,2,db/journals/ijgt/ijgt27.html#DuttaNT98,https://doi.org/10.1007/s001820050070 +Jean-François Mertens,The speed of convergence in repeated games with incomplete information on one side.,1998,27,Int. J. Game Theory,3,db/journals/ijgt/ijgt27.html#Mertens98,https://doi.org/10.1007/s001820050077 +Miguel A. Meléndez-Jiménez,A bargaining approach to coordination in networks.,2008,37,Int. J. Game Theory,3,db/journals/ijgt/ijgt37.html#Melendez-Jimenez08,https://doi.org/10.1007/s00182-008-0127-4 +Omer Edhan,Values of nondifferentiable vector measure games.,2013,42,Int. J. Game Theory,4,db/journals/ijgt/ijgt42.html#Edhan13,https://doi.org/10.1007/s00182-012-0348-4 +Peter Sudhölter,The semireactive bargaining set of a cooperative game.,2001,30,Int. J. Game Theory,1,db/journals/ijgt/ijgt30.html#SudholterP01,https://doi.org/10.1007/s001820100068 +Geir B. Asheim,Proper rationalizability in lexicographic beliefs.,2002,30,Int. J. Game Theory,4,db/journals/ijgt/ijgt30.html#Asheim02,https://doi.org/10.1007/s001820200090 +Francesco De Sinopoli,Approval voting: three examples.,2006,35,Int. J. Game Theory,1,db/journals/ijgt/ijgt35.html#SinopoliDL06,https://doi.org/10.1007/s00182-006-0053-2 +Wiebe van der Hoek,Program equilibrium - a program reasoning approach.,2013,42,Int. J. Game Theory,3,db/journals/ijgt/ijgt42.html#HoekWW13,https://doi.org/10.1007/s00182-011-0314-6 +Ron Lavi,Efficiency levels in sequential auctions with dynamic arrivals.,2014,43,Int. J. Game Theory,4,db/journals/ijgt/ijgt43.html#LaviS14,https://doi.org/10.1007/s00182-013-0405-7 +José Canals,Multi-level evolution in population games.,1998,27,Int. J. Game Theory,1,db/journals/ijgt/ijgt27.html#CanalsV98,https://doi.org/10.1007/BF01243192 +Antoni Calvó-Armengol,Pairwise-stability and Nash equilibria in network formation.,2009,38,Int. J. Game Theory,1,db/journals/ijgt/ijgt38.html#Calvo-ArmengolI09,https://doi.org/10.1007/s00182-008-0140-7 +Francesc Llerena,Reduced games and egalitarian solutions.,2016,45,Int. J. Game Theory,4,db/journals/ijgt/ijgt45.html#LlerenaM16,https://doi.org/10.1007/s00182-015-0504-8 +Kentaro Hatsumi,A maximal domain for strategy-proof and no-vetoer rules in the multi-object choice model.,2014,43,Int. J. Game Theory,1,db/journals/ijgt/ijgt43.html#HatsumiBS14,https://doi.org/10.1007/s00182-013-0378-6 +Marcel Dreef,Take-and-guess games.,2008,37,Int. J. Game Theory,1,db/journals/ijgt/ijgt37.html#DreefT08,https://doi.org/10.1007/s00182-007-0097-y +Shiran Rachmilevitch,A characterization of the Kalai-Smorodinsky bargaining solution by disagreement point monotonicity.,2011,40,Int. J. Game Theory,4,db/journals/ijgt/ijgt40.html#Rachmilevitch11a,https://doi.org/10.1007/s00182-010-0260-8 +E. Elisabet Rutström,Home-grown values and incentive compatible auction design.,1998,27,Int. J. Game Theory,3,db/journals/ijgt/ijgt27.html#Rutstrom98,https://doi.org/10.1007/s001820050082 +Thayer Morrill,An alternative characterization of the deferred acceptance algorithm.,2013,42,Int. J. Game Theory,1,db/journals/ijgt/ijgt42.html#Morrill13,https://doi.org/10.1007/s00182-011-0311-9 +Lawrence Diffo Lambo,Comparing influence theories in voting games under locally generated measures of dissatisfaction.,2012,41,Int. J. Game Theory,3,db/journals/ijgt/ijgt41.html#LamboTM12,https://doi.org/10.1007/s00182-012-0342-x +Haruo Imai,A characterization of a limit solution for finite horizon bargaining problems.,2012,41,Int. J. Game Theory,3,db/journals/ijgt/ijgt41.html#ImaiS12,https://doi.org/10.1007/s00182-011-0306-6 +Krishnendu Chatterjee,Stochastic limit-average games are in EXPTIME.,2008,37,Int. J. Game Theory,2,db/journals/ijgt/ijgt37.html#ChatterjeeMH08,https://doi.org/10.1007/s00182-007-0110-5 +Piercesare Secchi,Stay-in-a-set games.,2002,30,Int. J. Game Theory,4,db/journals/ijgt/ijgt30.html#SecchiS02,https://doi.org/10.1007/s001820200092 +Hans Keiding,Correlated equilibria of games with many players.,2000,29,Int. J. Game Theory,3,db/journals/ijgt/ijgt29.html#KeidingP00,https://doi.org/10.1007/s001820000047 +Timothy Van Zandt,A theorem of the maximin and applications to Bayesian zero-sum games.,2011,40,Int. J. Game Theory,2,db/journals/ijgt/ijgt40.html#ZandtZ11,https://doi.org/10.1007/s00182-010-0242-x +René van den Brink,On proper Shapley values for monotone TU-games.,2015,44,Int. J. Game Theory,2,db/journals/ijgt/ijgt44.html#BrinkLZ15,https://doi.org/10.1007/s00182-014-0439-5 +A. J. Vermeulen,Making solutions invariant.,2003,32,Int. J. Game Theory,1,db/journals/ijgt/ijgt32.html#VermeulenJP03,https://doi.org/10.1007/s001820300133 +Jeroen Kuipers,A generalization of the Shapley-Ichiishi result.,2010,39,Int. J. Game Theory,4,db/journals/ijgt/ijgt39.html#KuipersVV10,https://doi.org/10.1007/s00182-010-0239-5 +William H. Sandholm,Almost global convergence to p-dominant equilibrium.,2001,30,Int. J. Game Theory,1,db/journals/ijgt/ijgt30.html#Sandholm01,https://doi.org/10.1007/s001820100067 +Andrés Perea,Proper belief revision and rationalizability in dynamic games.,2006,34,Int. J. Game Theory,4,db/journals/ijgt/ijgt34.html#Perea06,https://doi.org/10.1007/s00182-006-0031-8 +Francisco Javier Arín Aguirre,A monotonic core solution for convex TU games.,2016,45,Int. J. Game Theory,4,db/journals/ijgt/ijgt45.html#AguirreK16,https://doi.org/10.1007/s00182-015-0500-z +Harry Aarts,A marginalistic value for monotonic set games.,1997,26,Int. J. Game Theory,1,db/journals/ijgt/ijgt26.html#AartsHF97,https://doi.org/10.1007/BF01262515 +Thayer Morrill,Network formation under negative degree-based externalities.,2011,40,Int. J. Game Theory,2,db/journals/ijgt/ijgt40.html#Morrill11,https://doi.org/10.1007/s00182-010-0256-4 +Maike Hoffmann,The Shapley value of exact assignment games.,2007,35,Int. J. Game Theory,4,db/journals/ijgt/ijgt35.html#HoffmannS07,https://doi.org/10.1007/s00182-006-0068-8 +Eran Shmaya,The Value of Information Structures in Zero-sum Games with Lack of Information on One Side.,2006,34,Int. J. Game Theory,2,db/journals/ijgt/ijgt34.html#Shmaya06,https://doi.org/10.1007/s00182-006-0018-5 +Leeat Yariv,A note on repeated games with non-monotonie value.,1997,26,Int. J. Game Theory,2,db/journals/ijgt/ijgt26.html#Yariv97,https://doi.org/10.1007/BF01295852 +Marieke Quant,The core cover in relation to the nucleolus and the Weber set.,2005,33,Int. J. Game Theory,4,db/journals/ijgt/ijgt33.html#QuantBRV05,https://doi.org/10.1007/s00182-005-0210-z +Thomas Kittsteiner,Declining valuations in sequential auctions.,2004,33,Int. J. Game Theory,1,db/journals/ijgt/ijgt33.html#KittsteinerNW04,https://doi.org/10.1007/s001820400186 +René van den Brink,Harsanyi power solutions for graph-restricted games.,2011,40,Int. J. Game Theory,1,db/journals/ijgt/ijgt40.html#BrinkLP11,https://doi.org/10.1007/s00182-009-0220-3 +Tracy Xiao Liu,All-pay auctions with endogenous bid timing: an experimental study.,2018,47,Int. J. Game Theory,1,db/journals/ijgt/ijgt47.html#Liu18,https://doi.org/10.1007/s00182-017-0586-6 +Theo S. H. Driessen,Associated consistency and values for TU games.,2010,39,Int. J. Game Theory,3,db/journals/ijgt/ijgt39.html#Driessen10,https://doi.org/10.1007/s00182-010-0222-1 +Peter Sudhölter,The modified nucleolus: Properties and axiomatizations.,1997,26,Int. J. Game Theory,2,db/journals/ijgt/ijgt26.html#Sudholter97,https://doi.org/10.1007/BF01295846 +Peter H. Knudsen,Merging and splitting in cooperative games: some (im)possibility results.,2012,41,Int. J. Game Theory,4,db/journals/ijgt/ijgt41.html#KnudsenO12,https://doi.org/10.1007/s00182-012-0337-7 +Omer Edhan,The conic property for vector measure market games.,2015,44,Int. J. Game Theory,2,db/journals/ijgt/ijgt44.html#Edhan15,https://doi.org/10.1007/s00182-014-0434-x +Michal Ramsza,Stability of pure strategy sampling equilibria.,2005,33,Int. J. Game Theory,4,db/journals/ijgt/ijgt33.html#Ramsza05,https://doi.org/10.1007/s00182-005-0212-x +Will Johnson,The combinatorial game theory of well-tempered scoring games.,2014,43,Int. J. Game Theory,2,db/journals/ijgt/ijgt43.html#Johnson14,https://doi.org/10.1007/s00182-013-0386-6 +Fioravante Patrone,On consistent solutions for strategic games.,1998,27,Int. J. Game Theory,2,db/journals/ijgt/ijgt27.html#PatronePTT98,https://doi.org/10.1007/s001820050065 +Roman Kozhan,Non-additive anonymous games.,2011,40,Int. J. Game Theory,2,db/journals/ijgt/ijgt40.html#Kozhan11,https://doi.org/10.1007/s00182-010-0235-9 +Jesper Roine,Downsian Competition When No Policy is Unbeatable.,2006,34,Int. J. Game Theory,2,db/journals/ijgt/ijgt34.html#Roine06,https://doi.org/10.1007/s00182-006-0020-y +Irit Nowik,The game for the speed of convergence in repeated games of incomplete information.,2003,31,Int. J. Game Theory,2,db/journals/ijgt/ijgt31.html#NowikZ03,https://doi.org/10.1007/s001820200101 +Dieter Balkenborg,Evolutionarily stable sets.,2001,29,Int. J. Game Theory,4,db/journals/ijgt/ijgt29.html#BalkenborgS01,https://doi.org/10.1007/s001820100059 +Pedro Calleja,Aggregate monotonic stable single-valued solutions for cooperative games.,2012,41,Int. J. Game Theory,4,db/journals/ijgt/ijgt41.html#CallejaRT12,https://doi.org/10.1007/s00182-012-0355-5 +Noritsugu Nakanishi,Noncooperative farsighted stable set in an n-player prisoners' dilemma.,2009,38,Int. J. Game Theory,2,db/journals/ijgt/ijgt38.html#Nakanishi09,https://doi.org/10.1007/s00182-009-0152-y +Jens Leth Hougaard,Decreasing serial cost sharing: an axiomatic characterization.,2009,38,Int. J. Game Theory,4,db/journals/ijgt/ijgt38.html#HougaardO09,https://doi.org/10.1007/s00182-009-0165-6 +René van den Brink,An axiomatization of the Shapley value using a fairness property.,2002,30,Int. J. Game Theory,3,db/journals/ijgt/ijgt30.html#Brink02,https://doi.org/10.1007/s001820100079 +Artyom Jelnov,Voting power and proportional representation of voters.,2014,43,Int. J. Game Theory,4,db/journals/ijgt/ijgt43.html#JelnovT14,https://doi.org/10.1007/s00182-013-0400-z +Jean-François Mertens,A value on 'AN.,2003,32,Int. J. Game Theory,1,db/journals/ijgt/ijgt32.html#MertensN03,https://doi.org/10.1007/s001820300147 +Thomas Ferguson,Notes on a stochastic game with information structure.,2003,31,Int. J. Game Theory,2,db/journals/ijgt/ijgt31.html#FergusonSW03,https://doi.org/10.1007/s001820200112 +Kousha Etessami,The computational complexity of evolutionarily stable strategies.,2008,37,Int. J. Game Theory,1,db/journals/ijgt/ijgt37.html#EtessamiL08,https://doi.org/10.1007/s00182-007-0095-0 +Emilio Calvo,A value for mixed action-set games.,2001,30,Int. J. Game Theory,1,db/journals/ijgt/ijgt30.html#CalvoS01,https://doi.org/10.1007/s001820100064 +Yi-Chun Chen,Note on unawareness: Negative Introspection versus AU Introspection (and KU Introspection).,2012,41,Int. J. Game Theory,2,db/journals/ijgt/ijgt41.html#ChenEL12,https://doi.org/10.1007/s00182-011-0287-5 +Amotz Cahn,General procedures leading to correlated equilibria.,2004,33,Int. J. Game Theory,1,db/journals/ijgt/ijgt33.html#Cahn04,https://doi.org/10.1007/s001820400182 +Bezalel Peleg,Constitutional implementation of social choice correspondences.,2005,33,Int. J. Game Theory,3,db/journals/ijgt/ijgt33.html#PelegPS05,https://doi.org/10.1007/s001820400179 +Ilan Eshel,The emergence of kinship behavior in structured populations of unrelated individuals.,1999,28,Int. J. Game Theory,4,db/journals/ijgt/ijgt28.html#EshelSS99,https://doi.org/10.1007/s001820050119 +Tanya Khovanova,P-positions in modular extensions to Nim.,2017,46,Int. J. Game Theory,2,db/journals/ijgt/ijgt46.html#KhovanovaS17,https://doi.org/10.1007/s00182-016-0545-7 +Marina Núñez,The assignment game: the ω4*-value.,2003,31,Int. J. Game Theory,3,db/journals/ijgt/ijgt31.html#NunezR03,https://doi.org/10.1007/s001820300127 +David Pérez-Castrillo,On the manipulability of competitive equilibrium rules in many-to-many buyer-seller markets.,2017,46,Int. J. Game Theory,4,db/journals/ijgt/ijgt46.html#Perez-Castrillo17,https://doi.org/10.1007/s00182-017-0573-y +Sanjeev Goyal,Unequal connections.,2006,34,Int. J. Game Theory,3,db/journals/ijgt/ijgt34.html#GoyalJ06,https://doi.org/10.1007/s00182-006-0023-8 +Yuichi Noguchi,Note on universal conditional consistency.,2009,38,Int. J. Game Theory,2,db/journals/ijgt/ijgt38.html#Noguchi09,https://doi.org/10.1007/s00182-008-0145-2 +Ulrich Berger 0003,Best response dynamics for role games.,2002,30,Int. J. Game Theory,4,db/journals/ijgt/ijgt30.html#Berger02,https://doi.org/10.1007/s001820200096 +Francis C. Chu,On the NP-completeness of finding an optimal strategy in games with common payoffs.,2001,30,Int. J. Game Theory,1,db/journals/ijgt/ijgt30.html#ChuH01,https://doi.org/10.1007/s001820100066 +Johan Stennek,The survival value of assuming others to be rational.,2000,29,Int. J. Game Theory,2,db/journals/ijgt/ijgt29.html#Stennek00,https://doi.org/10.1007/s001820070001 +Yaron Azrieli,On pure conjectural equilibrium with non-manipulable information.,2009,38,Int. J. Game Theory,2,db/journals/ijgt/ijgt38.html#Azrieli09,https://doi.org/10.1007/s00182-008-0146-1 +David H. Wolpert,Trembling hand perfection for mixed quantal/best response equilibria.,2009,38,Int. J. Game Theory,4,db/journals/ijgt/ijgt38.html#Wolpert09,https://doi.org/10.1007/s00182-009-0169-2 +Frank Thuijsman,Perfect information stochastic games and related classes.,1997,26,Int. J. Game Theory,3,db/journals/ijgt/ijgt26.html#ThuijsmanR97,https://doi.org/10.1007/BF01263280 +Arantza Estévez-Fernández,On the core of routing games with revenues.,2009,38,Int. J. Game Theory,2,db/journals/ijgt/ijgt38.html#Estevez-FernandezBMR09,https://doi.org/10.1007/s00182-009-0154-9 +Julien Geitner,Note Equilibrium payoffs in stochastic games of incomplete information: the general symmetric case.,2002,30,Int. J. Game Theory,3,db/journals/ijgt/ijgt30.html#Geitner02,https://doi.org/10.1007/s001820100084 +Moshe Bar Niv (Burnovski),Costless regulation of monopolies with large entry cost: A game theoretic approach.,1999,28,Int. J. Game Theory,1,db/journals/ijgt/ijgt28.html#BurnovskiZ99,https://doi.org/10.1007/s001820050097 +Liad Wagman,False-name-proof voting with costs over two alternatives.,2014,43,Int. J. Game Theory,3,db/journals/ijgt/ijgt43.html#WagmanC14,https://doi.org/10.1007/s00182-013-0397-3 +Anindya Bhattacharya,An existence result for farsighted stable sets of games in characteristic function form.,2011,40,Int. J. Game Theory,2,db/journals/ijgt/ijgt40.html#BhattacharyaB11,https://doi.org/10.1007/s00182-010-0262-6 +Youngsub Chun,Coincidence of cooperative game theoretic solutions in the appointment problem.,2016,45,Int. J. Game Theory,3,db/journals/ijgt/ijgt45.html#ChunPY16,https://doi.org/10.1007/s00182-015-0478-6 +Shmuel Zamir,Letter from the Editor.,2009,38,Int. J. Game Theory,1,db/journals/ijgt/ijgt38.html#Zamir09,https://doi.org/10.1007/s00182-008-0151-4 +Zhiwei Cui,House exchange and residential segregation in networks.,2017,46,Int. J. Game Theory,1,db/journals/ijgt/ijgt46.html#CuiH17,https://doi.org/10.1007/s00182-015-0526-2 +Youngsub Chun,Consistency and monotonicity in sequencing problems.,2011,40,Int. J. Game Theory,1,db/journals/ijgt/ijgt40.html#Chun11,https://doi.org/10.1007/s00182-010-0225-y +Jonathan Chappelon,Two-player Tower of Hanoi.,2018,47,Int. J. Game Theory,2,db/journals/ijgt/ijgt47.html#ChappelonLM18,https://doi.org/10.1007/s00182-017-0608-4 +Ottorino Chillemi,Community repeated interaction and strategic delegation.,2017,46,Int. J. Game Theory,3,db/journals/ijgt/ijgt46.html#ChillemiGR17,https://doi.org/10.1007/s00182-016-0553-7 +Shiran Rachmilevitch,Symmetry and approximate equilibria in games with countably many players.,2016,45,Int. J. Game Theory,3,db/journals/ijgt/ijgt45.html#Rachmilevitch16,https://doi.org/10.1007/s00182-015-0479-5 +Qiang Fu,Contests with endogenous entry.,2015,44,Int. J. Game Theory,2,db/journals/ijgt/ijgt44.html#FuJL15,https://doi.org/10.1007/s00182-014-0435-9 +Conan Mukherjee,Weak group strategy-proof and queue-efficient mechanisms for the queueing problem with multiple machines.,2013,42,Int. J. Game Theory,1,db/journals/ijgt/ijgt42.html#Mukherjee13,https://doi.org/10.1007/s00182-012-0326-x +Gustavo E. Rodriguez,First price auctions: Monotonicity and uniqueness.,2000,29,Int. J. Game Theory,3,db/journals/ijgt/ijgt29.html#Rodriguez00,https://doi.org/10.1007/s001820000049 +Kiho Yoon,The effective minimax value of asynchronously repeated games.,2004,32,Int. J. Game Theory,4,db/journals/ijgt/ijgt32.html#Yoon04,https://doi.org/10.1007/s001820300161 +Jesús Mario Bilbao,Values and potential of games with cooperation structure.,1998,27,Int. J. Game Theory,1,db/journals/ijgt/ijgt27.html#Bilbao98,https://doi.org/10.1007/BF01243199 +Thomas Gall,Surplus efficiency of ex ante investments in matching markets with nontransferabilities.,2017,46,Int. J. Game Theory,1,db/journals/ijgt/ijgt46.html#Gall17,https://doi.org/10.1007/s00182-015-0522-6 +Sigal Leviatan,Consistent values and the core in continuum market games with two types of players.,2003,31,Int. J. Game Theory,3,db/journals/ijgt/ijgt31.html#Leviatan03,https://doi.org/10.1007/s001820200126 +Yasunori Okumura,Spatial competition and collaboration networks.,2012,41,Int. J. Game Theory,3,db/journals/ijgt/ijgt41.html#Okumura12,https://doi.org/10.1007/s00182-011-0297-3 +Dimitri Dubois,Optimization incentive and relative riskiness in experimental stag-hunt games.,2012,41,Int. J. Game Theory,2,db/journals/ijgt/ijgt41.html#DuboisWV12,https://doi.org/10.1007/s00182-011-0290-x +Igal Milchtaich,Network topology and equilibrium existence in weighted network congestion games.,2015,44,Int. J. Game Theory,3,db/journals/ijgt/ijgt44.html#Milchtaich15,https://doi.org/10.1007/s00182-014-0443-9 +Nadav Amir,Uniqueness of optimal strategies in Captain Lotto games.,2018,47,Int. J. Game Theory,1,db/journals/ijgt/ijgt47.html#Amir18,https://doi.org/10.1007/s00182-017-0578-6 +Ievgen Liubarshchuk,The problem of approach in differential-difference games.,2016,45,Int. J. Game Theory,3,db/journals/ijgt/ijgt45.html#LiubarshchukA16,https://doi.org/10.1007/s00182-015-0467-9 +Emilio Calvo,Random marginal and random removal values.,2008,37,Int. J. Game Theory,4,db/journals/ijgt/ijgt37.html#Calvo08,https://doi.org/10.1007/s00182-008-0132-7 +Paul Pezanis-Christou,On the impact of low-balling: Experimental results in asymmetric auctions.,2002,31,Int. J. Game Theory,1,db/journals/ijgt/ijgt31.html#Pezanis-Christou02,https://doi.org/10.1007/s001820200108 +Cesaltina Pacheco Pires,Signaling advertising by multiproduct firms.,2011,40,Int. J. Game Theory,2,db/journals/ijgt/ijgt40.html#PiresC11,https://doi.org/10.1007/s00182-011-0279-5 +Kimmo Eriksson,Stable outcomes of the roommate game with transferable utility.,2001,29,Int. J. Game Theory,4,db/journals/ijgt/ijgt29.html#ErikssonK01,https://doi.org/10.1007/s001820000058 +Ashok P. Maitra,Finitely additive stochastic games with Borel measurable payoffs.,1998,27,Int. J. Game Theory,2,db/journals/ijgt/ijgt27.html#MaitraS98,https://doi.org/10.1007/s001820050071 +Bas van Velzen,Convexity and marginal vectors.,2003,31,Int. J. Game Theory,3,db/journals/ijgt/ijgt31.html#VelzenHN03,https://doi.org/10.1007/s001820200117 +Roger B. Myerson,Population uncertainty and Poisson games.,1998,27,Int. J. Game Theory,3,db/journals/ijgt/ijgt27.html#Myerson98,https://doi.org/10.1007/s001820050079 +Nikolai S. Kukushkin,Congestion games revisited.,2007,36,Int. J. Game Theory,1,db/journals/ijgt/ijgt36.html#Kukushkin07,https://doi.org/10.1007/s00182-007-0090-5 +Mark Voorneveld,An axiomatization of minimal curb sets.,2005,33,Int. J. Game Theory,4,db/journals/ijgt/ijgt33.html#VoorneveldKN05,https://doi.org/10.1007/s00182-005-0208-6 +Rodica Branzei,A Simple Algorithm for the Nucleolus of Airport Profit Games.,2006,34,Int. J. Game Theory,2,db/journals/ijgt/ijgt34.html#BranzeiITZ06,https://doi.org/10.1007/s00182-006-0019-4 +Stephen Finbow,A note on the eternal dominating set problem.,2018,47,Int. J. Game Theory,2,db/journals/ijgt/ijgt47.html#FinbowGMO18,https://doi.org/10.1007/s00182-018-0623-0 +Urban Larsson,Global Fibonacci nim.,2018,47,Int. J. Game Theory,2,db/journals/ijgt/ijgt47.html#LarssonR18,https://doi.org/10.1007/s00182-017-0574-x +Atila Abdulkadiroglu,College admissions with affirmative action.,2005,33,Int. J. Game Theory,4,db/journals/ijgt/ijgt33.html#Abdulkadiroglu05,https://doi.org/10.1007/s00182-005-0215-7 +Franz Dietrich,Where do preferences come from?,2013,42,Int. J. Game Theory,3,db/journals/ijgt/ijgt42.html#DietrichL13,https://doi.org/10.1007/s00182-012-0333-y +Aviezri S. Fraenkel,Special issue on combinatorial game theory.,2018,47,Int. J. Game Theory,2,db/journals/ijgt/ijgt47.html#FraenkelLSS18,https://doi.org/10.1007/s00182-018-0627-9 +M. Utku ünver,On the survival of some unstable two-sided matching mechanisms.,2005,33,Int. J. Game Theory,2,db/journals/ijgt/ijgt33.html#Unver05,https://doi.org/10.1007/s001820400196 +Josep Freixas,On \({\alpha }\) -roughly weighted games.,2014,43,Int. J. Game Theory,3,db/journals/ijgt/ijgt43.html#FreixasK14,https://doi.org/10.1007/s00182-013-0402-x +Marcin Dziubinski,Non-symmetric discrete General Lotto games.,2013,42,Int. J. Game Theory,4,db/journals/ijgt/ijgt42.html#Dziubinski13,https://doi.org/10.1007/s00182-012-0324-z +Anirban Kar,The Shapley value as the maximizer of expected Nash welfare.,2014,43,Int. J. Game Theory,3,db/journals/ijgt/ijgt43.html#KarS14,https://doi.org/10.1007/s00182-013-0398-2 +Endre Boros,Sufficient conditions for the existence of Nash equilibria in bimatrix games in terms of forbidden \(2 \* 2\) subgames.,2016,45,Int. J. Game Theory,4,db/journals/ijgt/ijgt45.html#BorosEGMO16,https://doi.org/10.1007/s00182-015-0513-7 +Kristof Bosmans,Lorenz comparisons of nine rules for the adjudication of conflicting claims.,2011,40,Int. J. Game Theory,4,db/journals/ijgt/ijgt40.html#BosmansL11,https://doi.org/10.1007/s00182-010-0269-z +Akira Nakayama,On some properties of the 9*-core of games with coalition structure.,1999,28,Int. J. Game Theory,2,db/journals/ijgt/ijgt28.html#NakayamaN99,https://doi.org/10.1007/s001820050017 +Parimal Kanti Bag,On sequential and simultaneous contributions under incomplete information.,2011,40,Int. J. Game Theory,1,db/journals/ijgt/ijgt40.html#BagR11,https://doi.org/10.1007/s00182-010-0230-1 +Geir B. Asheim,Majority voting leads to unanimity.,2006,35,Int. J. Game Theory,1,db/journals/ijgt/ijgt35.html#AsheimCN06,https://doi.org/10.1007/s00182-006-0042-5 +Fabrizio Germano,Bounded rationality and correlated equilibria.,2017,46,Int. J. Game Theory,3,db/journals/ijgt/ijgt46.html#GermanoZ17,https://doi.org/10.1007/s00182-016-0547-5 +Krzysztof R. Apt,Coordination games on graphs.,2017,46,Int. J. Game Theory,3,db/journals/ijgt/ijgt46.html#AptKRSS17,https://doi.org/10.1007/s00182-016-0560-8 +Urban Larsson,Grundy values of Fibonacci nim.,2016,45,Int. J. Game Theory,3,db/journals/ijgt/ijgt45.html#LarssonR16,https://doi.org/10.1007/s00182-015-0473-y +Federico Echenique,A short and constructive proof of Tarski's fixed-point theorem.,2005,33,Int. J. Game Theory,2,db/journals/ijgt/ijgt33.html#Echenique05,https://doi.org/10.1007/s001820400192 +Aviad Heifetz,How canonical is the canonical model? A comment on Aumann's interactive epistemology.,1999,28,Int. J. Game Theory,3,db/journals/ijgt/ijgt28.html#Heifetz99,https://doi.org/10.1007/s001820050118 +Ken-Ichi Shimomura,Quasi-Cores in Bargaining sets.,1997,26,Int. J. Game Theory,3,db/journals/ijgt/ijgt26.html#Shimomura97,https://doi.org/10.1007/BF01263272 +Jean-François Caulier,Contractually stable networks.,2013,42,Int. J. Game Theory,2,db/journals/ijgt/ijgt42.html#CaulierMV13,https://doi.org/10.1007/s00182-012-0356-4 +Francis Bloch,Noncooperative formation of coalitions in hedonic games.,2011,40,Int. J. Game Theory,2,db/journals/ijgt/ijgt40.html#BlochD11,https://doi.org/10.1007/s00182-010-0237-7 +V. Yu. Kiselev,On eligibility by the de Borda voting rules.,2008,37,Int. J. Game Theory,2,db/journals/ijgt/ijgt37.html#Kiselev08,https://doi.org/10.1007/s00182-007-0096-z +Zacharias Maniadis,Selective revelation of public information and self-confirming equilibrium.,2014,43,Int. J. Game Theory,4,db/journals/ijgt/ijgt43.html#Maniadis14,https://doi.org/10.1007/s00182-014-0415-0 +Ehud Lehrer,Allocation processes in cooperative games.,2003,31,Int. J. Game Theory,3,db/journals/ijgt/ijgt31.html#Lehrer03a,https://doi.org/10.1007/s001820200123 +Mark Voorneveld,An Axiomatization of Minimal Curb Sets.,2006,34,Int. J. Game Theory,1,db/journals/ijgt/ijgt34.html#VoorneveldKN06,https://doi.org/10.1007/s00182-006-0012-y +Ayala Mashiah-Yaakovi,Periodic stopping games.,2009,38,Int. J. Game Theory,2,db/journals/ijgt/ijgt38.html#Mashiah-Yaakovi09,https://doi.org/10.1007/s00182-008-0143-4 +Stefan Steinerberger,On the number of positions in chess without promotion.,2015,44,Int. J. Game Theory,3,db/journals/ijgt/ijgt44.html#Steinerberger15,https://doi.org/10.1007/s00182-014-0453-7 +Marilda Sotomayor,Reaching the core of the marriage market through a non-revelation matching mechanism.,2003,32,Int. J. Game Theory,2,db/journals/ijgt/ijgt32.html#Sotomayor03,https://doi.org/10.1007/s001820300156 +Jürgen Bracht,Efficiency in the trust game: an experimental study of precommitment.,2008,37,Int. J. Game Theory,1,db/journals/ijgt/ijgt37.html#BrachtF08,https://doi.org/10.1007/s00182-007-0092-3 +A. Garnaev,On the infiltration game.,1997,26,Int. J. Game Theory,2,db/journals/ijgt/ijgt26.html#GarnaevGG97,https://doi.org/10.1007/BF01295850 +Javier Arin,An axiomatic approach to egalitarianism in TU-games.,2008,37,Int. J. Game Theory,4,db/journals/ijgt/ijgt37.html#ArinKV08,https://doi.org/10.1007/s00182-008-0133-6 +Jean Derks,On the core of routing games.,1997,26,Int. J. Game Theory,2,db/journals/ijgt/ijgt26.html#DerksK97,https://doi.org/10.1007/BF01295848 +Antonio Quesada,A conflict between sequential rationality and consistency principles.,2002,31,Int. J. Game Theory,1,db/journals/ijgt/ijgt31.html#Quesada02,https://doi.org/10.1007/s001820200103 +Rabah Amir,Endogenous timing in a mixed duopoly.,2014,43,Int. J. Game Theory,3,db/journals/ijgt/ijgt43.html#AmirF14,https://doi.org/10.1007/s00182-013-0401-y +Parkash Chander,The core of an economy with multilateral environmental externalities.,1997,26,Int. J. Game Theory,3,db/journals/ijgt/ijgt26.html#ChanderT97,https://doi.org/10.1007/BF01263279 +Carsten Helm,On the existence of a cooperative solution for a coalitional game with externalities.,2001,30,Int. J. Game Theory,1,db/journals/ijgt/ijgt30.html#Helm01,https://doi.org/10.1007/s001820100069 +Ezra Einy,The core of a class of non-atomic games which arise in economic applications.,1999,28,Int. J. Game Theory,1,db/journals/ijgt/ijgt28.html#EinyMS99,https://doi.org/10.1007/s001820050094 +Ulrich Faigle,Bases and linear transforms of TU-games and cooperation systems.,2016,45,Int. J. Game Theory,4,db/journals/ijgt/ijgt45.html#FaigleG16,https://doi.org/10.1007/s00182-015-0490-x +Arieh Gavious,Ranking asymmetric auctions.,2014,43,Int. J. Game Theory,2,db/journals/ijgt/ijgt43.html#GaviousM14,https://doi.org/10.1007/s00182-013-0383-9 +Camelia Bejan,Core extensions for non-balanced TU-games.,2009,38,Int. J. Game Theory,1,db/journals/ijgt/ijgt38.html#BejanG09,https://doi.org/10.1007/s00182-008-0135-4 +Zafer Akin,Time inconsistency and learning in bargaining games.,2007,36,Int. J. Game Theory,2,db/journals/ijgt/ijgt36.html#Akin07,https://doi.org/10.1007/s00182-007-0076-3 +James L. Smith,Entry coordination in auctions and social welfare: An experimental investigation.,2002,30,Int. J. Game Theory,3,db/journals/ijgt/ijgt30.html#SmithL02,https://doi.org/10.1007/s001820100083 +Dai Zusai,Tempered best response dynamics.,2018,47,Int. J. Game Theory,1,db/journals/ijgt/ijgt47.html#Zusai18,https://doi.org/10.1007/s00182-017-0575-9 +N. I. Naumova,Nonsymmetric values under Hart-Mass-Colell consistency.,2005,33,Int. J. Game Theory,4,db/journals/ijgt/ijgt33.html#Naumova05,https://doi.org/10.1007/s00182-005-0216-6 +Duygu Yengin,Characterizing the Shapley value in fixed-route traveling salesman problems with appointments.,2012,41,Int. J. Game Theory,2,db/journals/ijgt/ijgt41.html#Yengin12,https://doi.org/10.1007/s00182-011-0285-7 +Carlos Pimienta,On the equivalence between (quasi-)perfect and sequential equilibria.,2014,43,Int. J. Game Theory,2,db/journals/ijgt/ijgt43.html#PimientaS14,https://doi.org/10.1007/s00182-013-0384-8 +Alexander Vasin,The Folk theorem for dominance solutions.,1999,28,Int. J. Game Theory,1,db/journals/ijgt/ijgt28.html#Vasin99,https://doi.org/10.1007/s001820050095 +José Alvaro Rodrigues-Neto,Monotonic models and cycles.,2014,43,Int. J. Game Theory,2,db/journals/ijgt/ijgt43.html#Rodrigues-Neto14,https://doi.org/10.1007/s00182-013-0385-7 +Cesaltina Pacheco Pires,Limit pricing under third-degree price discrimination.,2012,41,Int. J. Game Theory,3,db/journals/ijgt/ijgt41.html#PiresJ12,https://doi.org/10.1007/s00182-011-0310-x +Jian Yang,A link between sequential semi-anonymous nonatomic games and their large finite counterparts.,2017,46,Int. J. Game Theory,2,db/journals/ijgt/ijgt46.html#Yang17a,https://doi.org/10.1007/s00182-016-0539-5 +,Shmuel's introduction.,2012,41,Int. J. Game Theory,4,db/journals/ijgt/ijgt41.html#X12,https://doi.org/10.1007/s00182-012-0359-1 +Erik J. Balder,Comments on purification in continuum games.,2008,37,Int. J. Game Theory,1,db/journals/ijgt/ijgt37.html#Balder08,https://doi.org/10.1007/s00182-007-0094-1 +Azar Abizada,Paths to stability for college admissions with budget constraints.,2017,46,Int. J. Game Theory,3,db/journals/ijgt/ijgt46.html#Abizada17,https://doi.org/10.1007/s00182-016-0564-4 +Siegfried K. Berninghaus,Decentralized versus collective bargaining - An experimental study.,2002,30,Int. J. Game Theory,3,db/journals/ijgt/ijgt30.html#BerninghausGLR02,https://doi.org/10.1007/s001820200089 +Yakov Babichenko,Uncoupled automata and pure Nash equilibria.,2010,39,Int. J. Game Theory,3,db/journals/ijgt/ijgt39.html#Babichenko10,https://doi.org/10.1007/s00182-010-0227-9 +Francesco De Sinopoli,A spatial voting model where proportional rule leads to two-party equilibria.,2007,35,Int. J. Game Theory,2,db/journals/ijgt/ijgt35.html#SinopoliI07,https://doi.org/10.1007/s00182-006-0056-z +Andrés Perea y Monsuwé,Player splitting in extensive form games.,2000,29,Int. J. Game Theory,3,db/journals/ijgt/ijgt29.html#MonsuweJV00,https://doi.org/10.1007/s001820000051 +Stephen Morris,Approximate common knowledge revisited.,1999,28,Int. J. Game Theory,3,db/journals/ijgt/ijgt28.html#Morris99,https://doi.org/10.1007/s001820050116 +Karel Prikry,Measurability of the value of a parametrized game.,2016,45,Int. J. Game Theory,3,db/journals/ijgt/ijgt45.html#PrikryS16,https://doi.org/10.1007/s00182-015-0476-8 +Lucia Buenrostro,Protests and reputation.,2007,35,Int. J. Game Theory,3,db/journals/ijgt/ijgt35.html#BuenrostroDW07,https://doi.org/10.1007/s00182-006-0044-3 +Marilda Sotomayor,Modeling cooperative decision situations: the deviation function form and the equilibrium concept.,2016,45,Int. J. Game Theory,3,db/journals/ijgt/ijgt45.html#Sotomayor16,https://doi.org/10.1007/s00182-015-0486-6 +Hannu Salonen,Equilibria and centrality in link formation games.,2016,45,Int. J. Game Theory,4,db/journals/ijgt/ijgt45.html#Salonen16,https://doi.org/10.1007/s00182-015-0514-6 +Dominik Karos,Stable partitions for games with non-transferable utility and externalities.,2016,45,Int. J. Game Theory,4,db/journals/ijgt/ijgt45.html#Karos16,https://doi.org/10.1007/s00182-015-0487-5 +Anton Stefanescu,Predicting stable configurations of coalitions in cooperative games and exchange economies.,2000,29,Int. J. Game Theory,3,db/journals/ijgt/ijgt29.html#Stefanescu00,https://doi.org/10.1007/s001820000048 +Tobias Harks,Strong equilibria in games with the lexicographical improvement property.,2013,42,Int. J. Game Theory,2,db/journals/ijgt/ijgt42.html#HarksKM13,https://doi.org/10.1007/s00182-012-0322-1 +Gary E. Bolton,Dictator game giving: Rules of fairness versus acts of kindness.,1998,27,Int. J. Game Theory,2,db/journals/ijgt/ijgt27.html#BoltonKZ98,https://doi.org/10.1007/s001820050072 +Ron Holzman,Strong equilibrium in network congestion games: increasing versus decreasing costs.,2015,44,Int. J. Game Theory,3,db/journals/ijgt/ijgt44.html#HolzmanM15,https://doi.org/10.1007/s00182-014-0448-4 +Ching-jen Sun,Dynamic price dispersion in Bertrand-Edgeworth competition.,2017,46,Int. J. Game Theory,1,db/journals/ijgt/ijgt46.html#Sun17,https://doi.org/10.1007/s00182-016-0531-0 +Luisa Carpente,Values for strategic games in which players cooperate.,2005,33,Int. J. Game Theory,3,db/journals/ijgt/ijgt33.html#CarpenteCGN05,https://doi.org/10.1007/s001820400176 +Jean-Pierre Beaud,Sequence of opponents and reduced strategies.,2000,29,Int. J. Game Theory,3,db/journals/ijgt/ijgt29.html#BeaudS00,https://doi.org/10.1007/s001820000045 +Lisa V. Bruttel,Finitely repeated prisoners' dilemma experiments without a commonly known end.,2012,41,Int. J. Game Theory,1,db/journals/ijgt/ijgt41.html#BruttelGK12,https://doi.org/10.1007/s00182-011-0272-z +Francesca Busetto,Cournot-Walras equilibrium as a subgame perfect equilibrium.,2008,37,Int. J. Game Theory,3,db/journals/ijgt/ijgt37.html#BusettoCG08,https://doi.org/10.1007/s00182-008-0123-8 +Amnon Rapoport,Order of play in strategically equivalent games in extensive form.,1997,26,Int. J. Game Theory,1,db/journals/ijgt/ijgt26.html#Rapoport97,https://doi.org/10.1007/BF01262516 +Marco Scarsini,Repeated congestion games with bounded rationality.,2012,41,Int. J. Game Theory,3,db/journals/ijgt/ijgt41.html#ScarsiniT12,https://doi.org/10.1007/s00182-011-0309-3 +Julio González-Díaz,Essential collections for equilibrium concepts.,2012,41,Int. J. Game Theory,3,db/journals/ijgt/ijgt41.html#Gonzalez-DiazBGP12,https://doi.org/10.1007/s00182-011-0301-y +Yan-An Hwang,A dynamic approach to the Shapley value based on associated games.,2005,33,Int. J. Game Theory,4,db/journals/ijgt/ijgt33.html#HwangLH05,https://doi.org/10.1007/s00182-005-0217-5 +Markus Kinateder,Delayed perfect monitoring in repeated games.,2013,42,Int. J. Game Theory,1,db/journals/ijgt/ijgt42.html#Kinateder13,https://doi.org/10.1007/s00182-012-0349-3 +Koji Yokote,Weak addition invariance and axiomatization of the weighted Shapley value.,2015,44,Int. J. Game Theory,2,db/journals/ijgt/ijgt44.html#Yokote15,https://doi.org/10.1007/s00182-014-0429-7 +Yann Bramoullé,Network formation and anti-coordination games.,2004,33,Int. J. Game Theory,1,db/journals/ijgt/ijgt33.html#BramoulleLGV04,https://doi.org/10.1007/s001820400178 +Jean Derks,On extensions of the core and the anticore of transferable utility games.,2014,43,Int. J. Game Theory,1,db/journals/ijgt/ijgt43.html#DerksPS14,https://doi.org/10.1007/s00182-013-0371-0 +Daniel Granot,Characterization sets for the nucleolus.,1998,27,Int. J. Game Theory,3,db/journals/ijgt/ijgt27.html#GranotGZ98,https://doi.org/10.1007/s001820050078 +Toru Hokari,The nucleolus is not aggregate-monotonic on the domain of convex games.,2000,29,Int. J. Game Theory,1,db/journals/ijgt/ijgt29.html#Hokari00,https://doi.org/10.1007/s001829900030 +Yan-An Hwang,Axiomatizations of the core on the universal domain and other natural domains.,2001,29,Int. J. Game Theory,4,db/journals/ijgt/ijgt29.html#HwangS01,https://doi.org/10.1007/s001820100060 +Myeonghwan Cho,Endogenous formation of networks for local public goods.,2010,39,Int. J. Game Theory,4,db/journals/ijgt/ijgt39.html#Cho10,https://doi.org/10.1007/s00182-009-0182-5 +Robert Nau,On the geometry of Nash equilibria and correlated equilibria.,2004,32,Int. J. Game Theory,4,db/journals/ijgt/ijgt32.html#NauCH04,https://doi.org/10.1007/s001820300162 +Jesús Mario Bilbao,The core and the Weber set for bicooperative games.,2007,36,Int. J. Game Theory,2,db/journals/ijgt/ijgt36.html#BilbaoFJL07,https://doi.org/10.1007/s00182-006-0066-x +Michael Fisher 0002,Sterling stirling play.,2018,47,Int. J. Game Theory,2,db/journals/ijgt/ijgt47.html#FisherNS18,https://doi.org/10.1007/s00182-017-0598-2 +Jacques Durieu,Adaptive learning and p-best response sets.,2011,40,Int. J. Game Theory,4,db/journals/ijgt/ijgt40.html#DurieuST11,https://doi.org/10.1007/s00182-010-0266-2 +Younghwan In,On the relevance of alternatives in bargaining: generalized average pay-off solutions.,2008,37,Int. J. Game Theory,2,db/journals/ijgt/ijgt37.html#In08,https://doi.org/10.1007/s00182-007-0112-3 +David McAdams,Monotonicity in asymmetric first-price auctions with affiliation.,2007,35,Int. J. Game Theory,3,db/journals/ijgt/ijgt35.html#McAdams07,https://doi.org/10.1007/s00182-006-0038-1 +Abhimanyu Khan,Coordination under global random interaction and local imitation.,2014,43,Int. J. Game Theory,4,db/journals/ijgt/ijgt43.html#Khan14,https://doi.org/10.1007/s00182-013-0399-1 +Abraham Neyman,Correlated equilibrium and potential games.,1997,26,Int. J. Game Theory,2,db/journals/ijgt/ijgt26.html#Neyman97,https://doi.org/10.1007/BF01295851 +Takuya Iimura,Pure strategy equilibrium in finite weakly unilaterally competitive games.,2016,45,Int. J. Game Theory,3,db/journals/ijgt/ijgt45.html#IimuraW16,https://doi.org/10.1007/s00182-015-0481-y +Ron Peretz,Correlation through bounded recall strategies.,2013,42,Int. J. Game Theory,4,db/journals/ijgt/ijgt42.html#Peretz13,https://doi.org/10.1007/s00182-012-0334-x +Stefano Demichelis,The simple geometry of perfect information games.,2004,32,Int. J. Game Theory,3,db/journals/ijgt/ijgt32.html#DemichelisRS04,https://doi.org/10.1007/s001820400169 +Bettina Klaus,Median Stable Matching for College Admissions.,2006,34,Int. J. Game Theory,1,db/journals/ijgt/ijgt34.html#KlausK06,https://doi.org/10.1007/s00182-006-0009-6 +Giacomo Bonanno,Introduction to the special issue.,2013,42,Int. J. Game Theory,3,db/journals/ijgt/ijgt42.html#BonannoHHL13,https://doi.org/10.1007/s00182-013-0387-5 +Péter Eso,Credible deviations from signaling equilibria.,2009,38,Int. J. Game Theory,3,db/journals/ijgt/ijgt38.html#EsoS09,https://doi.org/10.1007/s00182-009-0161-x +Yves Sprumont,On the game-theoretic structure of public-good economies.,1997,26,Int. J. Game Theory,4,db/journals/ijgt/ijgt26.html#Sprumont97,https://doi.org/10.1007/BF01813885 +David A. Malueg,Equilibrium and revenue in a family of common-value first-price auctions with differential information.,2012,41,Int. J. Game Theory,2,db/journals/ijgt/ijgt41.html#MaluegO12,https://doi.org/10.1007/s00182-011-0282-x +Yaron Azrieli,On some families of cooperative fuzzy games.,2007,36,Int. J. Game Theory,1,db/journals/ijgt/ijgt36.html#AzrieliL07,https://doi.org/10.1007/s00182-007-0093-2 +Takumi Kongo,Difference between the position value and the Myerson value is due to the existence of coalition structures.,2010,39,Int. J. Game Theory,4,db/journals/ijgt/ijgt39.html#Kongo10,https://doi.org/10.1007/s00182-009-0211-4 +Barton L. Lipman,Dedication: In honor of Robert J. Aumann.,1999,28,Int. J. Game Theory,3,db/journals/ijgt/ijgt28.html#Lipman99,https://doi.org/10.1007/s001820050110 +Juan J. Vidal-Puga,Delay in the alternating-offers model of bargaining.,2008,37,Int. J. Game Theory,4,db/journals/ijgt/ijgt37.html#Vidal-Puga08,https://doi.org/10.1007/s00182-008-0128-3 +John Duffy,Does observation of others affect learning in strategic environments? An experimental study.,1999,28,Int. J. Game Theory,1,db/journals/ijgt/ijgt28.html#DuffyF99,https://doi.org/10.1007/s001820050102 +P. Jean-Jacques Herings,Refinements of rationalizability for normal-form games.,1999,28,Int. J. Game Theory,1,db/journals/ijgt/ijgt28.html#HeringsV99,https://doi.org/10.1007/s001820050098 +Javier Hervés-Estévez,On restricted bargaining sets.,2015,44,Int. J. Game Theory,3,db/journals/ijgt/ijgt44.html#Herves-EstevezM15,https://doi.org/10.1007/s00182-014-0447-5 +Shmuel Gal,On the optimality of a simple strategy for searching graphs.,2001,29,Int. J. Game Theory,4,db/journals/ijgt/ijgt29.html#Gal01,https://doi.org/10.1007/s001820000056 +Takashi Ui,Correlated equilibrium and concave games.,2008,37,Int. J. Game Theory,1,db/journals/ijgt/ijgt37.html#Ui08,https://doi.org/10.1007/s00182-007-0098-x +Dolors Berga,On Exiting After Voting.,2006,34,Int. J. Game Theory,1,db/journals/ijgt/ijgt34.html#BergaBMN06,https://doi.org/10.1007/s00182-005-0005-2 +Diethard Pallaschke,A superadditive solution for cephoidal bargaining problems.,2007,35,Int. J. Game Theory,4,db/journals/ijgt/ijgt35.html#PallaschkeR07,https://doi.org/10.1007/s00182-006-0057-y +Guni Orshan,Nonsymmetric variants of the prekernel and the prenucleolus.,2012,41,Int. J. Game Theory,4,db/journals/ijgt/ijgt41.html#OrshanS12,https://doi.org/10.1007/s00182-011-0294-6 +Gérard Hamiache,The Owen value values friendship.,2001,29,Int. J. Game Theory,4,db/journals/ijgt/ijgt29.html#Hamiache01a,https://doi.org/10.1007/s001820000055 +Fan-Chin Kung,Coalition formation with local public goods and group-size effect.,2010,39,Int. J. Game Theory,4,db/journals/ijgt/ijgt39.html#Kung10,https://doi.org/10.1007/s00182-009-0199-9 +Emilio Calvo,Weighted weak semivalues.,2000,29,Int. J. Game Theory,1,db/journals/ijgt/ijgt29.html#CalvoS00,https://doi.org/10.1007/s001820050001 +Licun Xue,Negotiation-proof Nash equilibrium.,2000,29,Int. J. Game Theory,3,db/journals/ijgt/ijgt29.html#Xue00,https://doi.org/10.1007/s001820000044 +Miguel A. Fonseca,Endogenous timing in duopoly: experimental evidence.,2006,34,Int. J. Game Theory,3,db/journals/ijgt/ijgt34.html#FonsecaMN06,https://doi.org/10.1007/s00182-006-0027-4 +Shiran Rachmilevitch,Disagreement point axioms and the egalitarian bargaining solution.,2011,40,Int. J. Game Theory,1,db/journals/ijgt/ijgt40.html#Rachmilevitch11,https://doi.org/10.1007/s00182-010-0229-7 +Ryusuke Shinohara,Coalition-proof equilibria in a voluntary participation game.,2010,39,Int. J. Game Theory,4,db/journals/ijgt/ijgt39.html#Shinohara10,https://doi.org/10.1007/s00182-010-0244-8 +Yossi Feinberg,Mostly calibrated.,2015,44,Int. J. Game Theory,1,db/journals/ijgt/ijgt44.html#FeinbergL15,https://doi.org/10.1007/s00182-014-0423-0 +A. J. J. Talman,An efficient multi-item dynamic auction with budget constrained bidders.,2015,44,Int. J. Game Theory,3,db/journals/ijgt/ijgt44.html#TalmanY15,https://doi.org/10.1007/s00182-014-0454-6 +Pablo Amorós,Picking the winners.,2013,42,Int. J. Game Theory,4,db/journals/ijgt/ijgt42.html#Amoros13,https://doi.org/10.1007/s00182-012-0332-z +Dana C. Ernst,Impartial achievement and avoidance games for generating finite groups.,2018,47,Int. J. Game Theory,2,db/journals/ijgt/ijgt47.html#ErnstS18,https://doi.org/10.1007/s00182-017-0602-x +Ehud Lehrer,ɛ-Consistent equilibrium in repeated games.,1998,27,Int. J. Game Theory,2,db/journals/ijgt/ijgt27.html#LehrerS98,https://doi.org/10.1007/s001820050069 +Vitaly Pruzhansky,On finding curb sets in extensive games.,2003,32,Int. J. Game Theory,2,db/journals/ijgt/ijgt32.html#Pruzhansky03,https://doi.org/10.1007/s001820300146 +Miki Kato,Strategy-proofness versus symmetry in economies with an indivisible good and money.,2015,44,Int. J. Game Theory,1,db/journals/ijgt/ijgt44.html#KatoOT15,https://doi.org/10.1007/s00182-014-0425-y +Christian W. Bach,Utility proportional beliefs.,2014,43,Int. J. Game Theory,4,db/journals/ijgt/ijgt43.html#BachP14,https://doi.org/10.1007/s00182-013-0409-3 +Olga Gorelkina,The expected externality mechanism in a level-k environment.,2018,47,Int. J. Game Theory,1,db/journals/ijgt/ijgt47.html#Gorelkina18,https://doi.org/10.1007/s00182-017-0579-5 +Bo Chen,On the feasible payoff set of two-player repeated games with unequal discounting.,2013,42,Int. J. Game Theory,1,db/journals/ijgt/ijgt42.html#ChenF13,https://doi.org/10.1007/s00182-012-0354-6 +Marina Núñez,A note on the nucleolus and the kernel of the assignment game.,2004,33,Int. J. Game Theory,1,db/journals/ijgt/ijgt33.html#Nunez04,https://doi.org/10.1007/s001820400184 +Yakov Babichenko,How long to Pareto efficiency?,2014,43,Int. J. Game Theory,1,db/journals/ijgt/ijgt43.html#Babichenko14,https://doi.org/10.1007/s00182-013-0365-y +Shinsuke Kambe,Emergence and nonemergence of alternating offers in bilateral bargaining.,2009,38,Int. J. Game Theory,4,db/journals/ijgt/ijgt38.html#Kambe09,https://doi.org/10.1007/s00182-009-0167-4 +Joseph Y. Halpern,Characterizing solution concepts in terms of common knowledge of rationality.,2017,46,Int. J. Game Theory,2,db/journals/ijgt/ijgt46.html#HalpernM17,https://doi.org/10.1007/s00182-016-0535-9 +Joseph M. Abdou,Stability and index of the meet game on a lattice.,2012,41,Int. J. Game Theory,4,db/journals/ijgt/ijgt41.html#Abdou12,https://doi.org/10.1007/s00182-012-0339-5 +Tamás Solymosi,Assignment games with stable core.,2001,30,Int. J. Game Theory,2,db/journals/ijgt/ijgt30.html#SolymosiR01,https://doi.org/10.1007/s001820100072 +Mohamed Belhaj,Endogenous effort in communication networks under strategic complementarity.,2010,39,Int. J. Game Theory,3,db/journals/ijgt/ijgt39.html#BelhajD10,https://doi.org/10.1007/s00182-009-0195-0 +Vitaly Pruzhansky,Some interesting properties of maximin strategies.,2011,40,Int. J. Game Theory,2,db/journals/ijgt/ijgt40.html#Pruzhansky11,https://doi.org/10.1007/s00182-010-0249-3 +Richard Baron,Average tree solutions and the distribution of Harsanyi dividends.,2011,40,Int. J. Game Theory,2,db/journals/ijgt/ijgt40.html#BaronBRS11,https://doi.org/10.1007/s00182-010-0245-7 +Jiuqiang Liu,Existence of Edgeworth and competitive equilibria and fuzzy cores in coalition production economies.,2014,43,Int. J. Game Theory,4,db/journals/ijgt/ijgt43.html#LiuL14,https://doi.org/10.1007/s00182-014-0414-1 +Kevin Hasker,Social norms and choice: a weak folk theorem for repeated matching games.,2007,36,Int. J. Game Theory,1,db/journals/ijgt/ijgt36.html#Hasker07,https://doi.org/10.1007/s00182-007-0078-1 +Ron Siegel,Contests with productive effort.,2014,43,Int. J. Game Theory,3,db/journals/ijgt/ijgt43.html#Siegel14,https://doi.org/10.1007/s00182-013-0393-7 +Kim Allan Andersen,Computing the NTU-Shapley value of NTU-games defined by multiple objective linear programs.,1999,28,Int. J. Game Theory,4,db/journals/ijgt/ijgt28.html#AndersenL99,https://doi.org/10.1007/s001820050127 +Paolo Cubiotti,Existence of nash equilibria for generalized games without upper semicontinuity.,1997,26,Int. J. Game Theory,2,db/journals/ijgt/ijgt26.html#Cubiotti97,https://doi.org/10.1007/BF01295855 +Haifeng Fu,Pure-strategy Nash equilibria in large games: characterization and existence.,2016,45,Int. J. Game Theory,3,db/journals/ijgt/ijgt45.html#FuXZ16,https://doi.org/10.1007/s00182-015-0477-7 +Ron Holzman,The comparability of the classical and the Mas-Colell bargaining sets.,2001,29,Int. J. Game Theory,4,db/journals/ijgt/ijgt29.html#Holzman01,https://doi.org/10.1007/s001820000057 +Marilda Sotomayor,A labor market with heterogeneous firms and workers.,2003,31,Int. J. Game Theory,2,db/journals/ijgt/ijgt31.html#Sotomayor03a,https://doi.org/10.1007/s001820200116 +Theo S. H. Driessen,A note on the inclusion of the kernel in the core of the bilateral assignment game.,1998,27,Int. J. Game Theory,2,db/journals/ijgt/ijgt27.html#Driessen98,https://doi.org/10.1007/s001820050073 +Bettina Klaus,Fair and efficient student placement with couples.,2007,36,Int. J. Game Theory,2,db/journals/ijgt/ijgt36.html#KlausK07,https://doi.org/10.1007/s00182-006-0059-9 +Bernard De Meyer,On the strategic origin of Brownian motion in finance.,2003,31,Int. J. Game Theory,2,db/journals/ijgt/ijgt31.html#MeyerS03,https://doi.org/10.1007/s001820200120 +Frédéric Palomino,Convergence of aspirations and (partial) cooperation in the prisoner's dilemma.,1999,28,Int. J. Game Theory,4,db/journals/ijgt/ijgt28.html#PalominoV99,https://doi.org/10.1007/s001820050120 +Peter Duersch,Pure strategy equilibria in symmetric two-player zero-sum games.,2012,41,Int. J. Game Theory,3,db/journals/ijgt/ijgt41.html#DuerschOS12,https://doi.org/10.1007/s00182-011-0302-x +Hans Peters,Bezalel Peleg: a bibliography.,2012,41,Int. J. Game Theory,4,db/journals/ijgt/ijgt41.html#PetersS12,https://doi.org/10.1007/s00182-012-0358-2 +Stef Tijs,Additive stable solutions on perfect cones of cooperative games.,2003,31,Int. J. Game Theory,3,db/journals/ijgt/ijgt31.html#TijsB03,https://doi.org/10.1007/s001820200119 +Gary E. Bolton,How do coalitions get built? Evidence from an extensive form coalition game with and without communication.,2012,41,Int. J. Game Theory,3,db/journals/ijgt/ijgt41.html#BoltonB12,https://doi.org/10.1007/s00182-011-0307-5 +Shinji Ohseto,Strategy-proof and efficient allocation of an indivisible good on finitely restricted preference domains.,2000,29,Int. J. Game Theory,3,db/journals/ijgt/ijgt29.html#Ohseto00,https://doi.org/10.1007/s001820000046 +Lei Li,The covering values for acyclic digraph games.,2011,40,Int. J. Game Theory,4,db/journals/ijgt/ijgt40.html#LiL11,https://doi.org/10.1007/s00182-010-0264-4 +Frank Schuhmacher,Proper rationalizability and backward induction.,1999,28,Int. J. Game Theory,4,db/journals/ijgt/ijgt28.html#Schuhmacher99,https://doi.org/10.1007/s001820050128 +René van den Brink,Constrained core solutions for totally positive games with ordered players.,2014,43,Int. J. Game Theory,2,db/journals/ijgt/ijgt43.html#BrinkLV14,https://doi.org/10.1007/s00182-013-0382-x +Marco Ottaviani,Naive audience and communication bias.,2006,35,Int. J. Game Theory,1,db/journals/ijgt/ijgt35.html#OttavianiS06,https://doi.org/10.1007/s00182-006-0054-1 +Javier Arin,Egalitarian solutions in the core.,2001,30,Int. J. Game Theory,2,db/journals/ijgt/ijgt30.html#ArinI01,https://doi.org/10.1007/s001820100073 +Gleb A. Koshevoy,Equilibria for Pooling Situations.,2006,34,Int. J. Game Theory,1,db/journals/ijgt/ijgt34.html#KoshevoyTM06,https://doi.org/10.1007/s00182-006-0008-7 +Alberto Bressan,Semi-cooperative strategies for differential games.,2004,32,Int. J. Game Theory,4,db/journals/ijgt/ijgt32.html#BressanS04,https://doi.org/10.1007/s001820400180 +Dmitry Shapiro,The role of utility interdependence in public good experiments.,2009,38,Int. J. Game Theory,1,db/journals/ijgt/ijgt38.html#Shapiro09,https://doi.org/10.1007/s00182-008-0141-6 +Elisabeth Schulte,Preselection and expert advice.,2017,46,Int. J. Game Theory,3,db/journals/ijgt/ijgt46.html#SchulteF17,https://doi.org/10.1007/s00182-016-0551-9 +Jérôme Renault,Repeated proximity games.,1998,27,Int. J. Game Theory,4,db/journals/ijgt/ijgt27.html#RenaultT98,https://doi.org/10.1007/s001820050089 +Giora Slutzki,Ranking participants in generalized tournaments.,2005,33,Int. J. Game Theory,2,db/journals/ijgt/ijgt33.html#SlutzkiV05,https://doi.org/10.1007/s00182-005-0197-5 +Yasuhiro Shirata,The evolution of fairness under an assortative matching rule in the ultimatum game.,2012,41,Int. J. Game Theory,1,db/journals/ijgt/ijgt41.html#Shirata12,https://doi.org/10.1007/s00182-011-0271-0 +Fabrizio Germano,On some geometry and equivalence classes of normal form games.,2006,34,Int. J. Game Theory,4,db/journals/ijgt/ijgt34.html#Germano06,https://doi.org/10.1007/s00182-006-0033-6 +Elisenda Molina,The least square nucleolus is a general nucleolus.,2000,29,Int. J. Game Theory,1,db/journals/ijgt/ijgt29.html#MolinaT00,https://doi.org/10.1007/s001829900028 +Lukás Adam,The intermediate set and limiting superdifferential for coalitional games: between the core and the Weber set.,2017,46,Int. J. Game Theory,4,db/journals/ijgt/ijgt46.html#AdamK17,https://doi.org/10.1007/s00182-016-0557-3 +Inés Macho-Stadler,Sequential Formation of Coalitions Through Bilateral Agreements in a Cournot Setting.,2006,34,Int. J. Game Theory,2,db/journals/ijgt/ijgt34.html#Macho-StadlerPP06,https://doi.org/10.1007/s00182-006-0017-6 +Anna B. Khmelnitskaya,Shapley value for constant-sum games.,2003,32,Int. J. Game Theory,2,db/journals/ijgt/ijgt32.html#Khmelnitskaya03,https://doi.org/10.1007/s001820300154 +Kenneth Clark,When are Nash equilibria self-enforcing? An experimental analysis.,2001,29,Int. J. Game Theory,4,db/journals/ijgt/ijgt29.html#ClarkKS01,https://doi.org/10.1007/s001820000054 +Chih Chang,Some results related to the Harsanyi-Shapley solution.,2001,30,Int. J. Game Theory,2,db/journals/ijgt/ijgt30.html#ChangH01,https://doi.org/10.1007/s001820100077 +Jean-Michel Coulomb,Stochastic games without perfect monitoring.,2003,32,Int. J. Game Theory,1,db/journals/ijgt/ijgt32.html#Coulomb03,https://doi.org/10.1007/s001820300151 +Chih Chang,A non-cooperative interpretation of the kernel.,2017,46,Int. J. Game Theory,1,db/journals/ijgt/ijgt46.html#ChangH17,https://doi.org/10.1007/s00182-016-0529-7 +Rafael Hortala-Vallve,Pure strategy Nash equilibria in non-zero sum colonel Blotto games.,2012,41,Int. J. Game Theory,2,db/journals/ijgt/ijgt41.html#Hortala-VallveL12,https://doi.org/10.1007/s00182-011-0288-4 +Rainer Buckdahn,Differential games with asymmetric information and without Isaacs' condition.,2016,45,Int. J. Game Theory,4,db/journals/ijgt/ijgt45.html#BuckdahnQRX16,https://doi.org/10.1007/s00182-015-0482-x +Josep M. Izquierdo,A simple procedure to obtain the extreme core allocations of an assignment market.,2007,36,Int. J. Game Theory,1,db/journals/ijgt/ijgt36.html#IzquierdoNR07,https://doi.org/10.1007/s00182-007-0091-4 +Akira Okada,The stationary equilibrium of three-person coalitional bargaining games with random proposers: a classification.,2014,43,Int. J. Game Theory,4,db/journals/ijgt/ijgt43.html#Okada14,https://doi.org/10.1007/s00182-014-0413-2 +Eric Bahel,The implications of the ranking axiom for discrete cost sharing methods.,2011,40,Int. J. Game Theory,3,db/journals/ijgt/ijgt40.html#Bahel11,https://doi.org/10.1007/s00182-010-0255-5 +Ani Dasgupta,On implementation via demand commitment games.,1998,27,Int. J. Game Theory,2,db/journals/ijgt/ijgt27.html#DasguptaC98,https://doi.org/10.1007/s001820050064 +Jesús Getán,A note: characterizations of convex games by means of population monotonic allocation schemes.,2014,43,Int. J. Game Theory,4,db/journals/ijgt/ijgt43.html#GetanMR14,https://doi.org/10.1007/s00182-013-0408-4 +Alison Watts,Formation of segregated and integrated groups.,2007,35,Int. J. Game Theory,4,db/journals/ijgt/ijgt35.html#Watts07,https://doi.org/10.1007/s00182-006-0064-z +Takashi Hayashi 0001,Nash implementation of competitive equilibria in the job-matching market.,2009,38,Int. J. Game Theory,4,db/journals/ijgt/ijgt38.html#HayashiS09,https://doi.org/10.1007/s00182-009-0163-8 +John Duggan,Repeated Downsian electoral competition.,2006,35,Int. J. Game Theory,1,db/journals/ijgt/ijgt35.html#DugganF06,https://doi.org/10.1007/s00182-006-0046-1 +Sinan Ertemel,Proportional rules for state contingent claims.,2018,47,Int. J. Game Theory,1,db/journals/ijgt/ijgt47.html#ErtemelK18,https://doi.org/10.1007/s00182-017-0585-7 +Yuan Ju,Efficiency and compromise: a bid-offer-counteroffer mechanism with two players.,2013,42,Int. J. Game Theory,2,db/journals/ijgt/ijgt42.html#Ju13,https://doi.org/10.1007/s00182-012-0336-8 +Gérard Hamiache,Associated consistency and Shapley value.,2001,30,Int. J. Game Theory,2,db/journals/ijgt/ijgt30.html#Hamiache01,https://doi.org/10.1007/s001820100080 +J. R. G. van Gellekom,Prosperity properties of TU-games.,1999,28,Int. J. Game Theory,2,db/journals/ijgt/ijgt28.html#GellekomPR99,https://doi.org/10.1007/s001820050106 +Vladislav Kargin,On coordination games with quantum correlations.,2008,37,Int. J. Game Theory,2,db/journals/ijgt/ijgt37.html#Kargin08,https://doi.org/10.1007/s00182-007-0106-1 +Antonio Jiménez-Martínez,Information acquisition interactions in two-player quadratic games.,2014,43,Int. J. Game Theory,2,db/journals/ijgt/ijgt43.html#Jimenez-Martinez14,https://doi.org/10.1007/s00182-013-0389-3 +Patrick Hummel,Incentivizing advertiser networks to submit multiple bids.,2016,45,Int. J. Game Theory,4,db/journals/ijgt/ijgt45.html#HummelMV16,https://doi.org/10.1007/s00182-015-0501-y +Eric Bahel,A discrete cost sharing model with technological cooperation.,2013,42,Int. J. Game Theory,2,db/journals/ijgt/ijgt42.html#BahelT13,https://doi.org/10.1007/s00182-012-0320-3 +Sergio Currarini,Information sharing networks in linear quadratic games.,2015,44,Int. J. Game Theory,3,db/journals/ijgt/ijgt44.html#CurrariniF15,https://doi.org/10.1007/s00182-014-0450-x +Mikel álvarez-Mozos,From hierarchies to levels: new solutions for games with hierarchical structure.,2017,46,Int. J. Game Theory,4,db/journals/ijgt/ijgt46.html#Alvarez-MozosBL17,https://doi.org/10.1007/s00182-017-0572-z +Yonghui Zhou,Essential stability in games with infinitely many pure strategies.,2007,35,Int. J. Game Theory,4,db/journals/ijgt/ijgt35.html#ZhouYX07,https://doi.org/10.1007/s00182-006-0063-0 +Richard Baron,Control costs and potential functions for spatial games.,2003,31,Int. J. Game Theory,4,db/journals/ijgt/ijgt31.html#BaronDHS03,https://doi.org/10.1007/s001820300138 +Christopher P. Chambers,Multi-utilitarianism in two-agent quasilinear social choice.,2005,33,Int. J. Game Theory,3,db/journals/ijgt/ijgt33.html#Chambers05,https://doi.org/10.1007/s00182-005-0201-0 +Marilda Sotomayor,The pareto-stability concept is a natural solution concept for discrete matching markets with indifferences.,2011,40,Int. J. Game Theory,3,db/journals/ijgt/ijgt40.html#Sotomayor11,https://doi.org/10.1007/s00182-010-0259-1 +Artyom Jelnov,Erratum to: Voting power and proportional representation of voters.,2015,44,Int. J. Game Theory,4,db/journals/ijgt/ijgt44.html#JelnovT15,https://doi.org/10.1007/s00182-015-0483-9 +Giacomo Bonanno,How to make sense of the common prior assumption under incomplete information.,1999,28,Int. J. Game Theory,3,db/journals/ijgt/ijgt28.html#BonannoN99,https://doi.org/10.1007/s001820050117 +Stéphane Gonzalez,Optimal deterrence of cooperation.,2018,47,Int. J. Game Theory,1,db/journals/ijgt/ijgt47.html#GonzalezL18,https://doi.org/10.1007/s00182-017-0584-8 +Wenbo Yang,Aubin cores and bargaining sets for convex cooperative fuzzy games.,2011,40,Int. J. Game Theory,3,db/journals/ijgt/ijgt40.html#YangLL11,https://doi.org/10.1007/s00182-010-0250-x +M. Ali Khan,The Dvoretzky-Wald-Wolfowitz theorem and purification in atomless finite-action games.,2006,34,Int. J. Game Theory,1,db/journals/ijgt/ijgt34.html#KhanRS06,https://doi.org/10.1007/s00182-005-0004-3 +Xingwei Hu,An Asymmetric Shapley-Shubik Power Index.,2006,34,Int. J. Game Theory,2,db/journals/ijgt/ijgt34.html#Hu06,https://doi.org/10.1007/s00182-006-0011-z +Takuya Masuzawa,Punishment strategies make the a-coalitional game ordinally convex and balanced.,2004,32,Int. J. Game Theory,4,db/journals/ijgt/ijgt32.html#Masuzawa04,https://doi.org/10.1007/s001820400171 +Javier Arin,The nucleolus and kernel of veto-rich transferable utility games.,1997,26,Int. J. Game Theory,1,db/journals/ijgt/ijgt26.html#ArinF97,https://doi.org/10.1007/BF01262513 +János Flesch,On refinements of subgame perfect \(\epsilon \) -equilibrium.,2016,45,Int. J. Game Theory,3,db/journals/ijgt/ijgt45.html#FleschP16,https://doi.org/10.1007/s00182-015-0468-8 +Takashi Shimizu,Cheap talk with an exit option: a model of exit and voice.,2017,46,Int. J. Game Theory,4,db/journals/ijgt/ijgt46.html#Shimizu17,https://doi.org/10.1007/s00182-017-0571-0 +Lars Ehlers,"Corrigendum to ""Resource-monotonicity for house allocation problems"".",2011,40,Int. J. Game Theory,2,db/journals/ijgt/ijgt40.html#EhlersK11,https://doi.org/10.1007/s00182-010-0238-6 +Qizhi Fang,On computational complexity of membership test in flow games and linear production games.,2002,31,Int. J. Game Theory,1,db/journals/ijgt/ijgt31.html#FangZCD02,https://doi.org/10.1007/s001820200106 +Cy Maor,Cooperation under incomplete information on the discount factors.,2015,44,Int. J. Game Theory,2,db/journals/ijgt/ijgt44.html#MaorS15,https://doi.org/10.1007/s00182-014-0431-0 +Michel Le Breton,Stability and fairness in models with a multiple membership.,2013,42,Int. J. Game Theory,3,db/journals/ijgt/ijgt42.html#BretonMSW13,https://doi.org/10.1007/s00182-011-0304-8 +Srihari Govindan,An equivalent definition of stable Equilibria.,2004,32,Int. J. Game Theory,3,db/journals/ijgt/ijgt32.html#GovindanM04,https://doi.org/10.1007/s001820400165 +Wojciech Polowczuk,Pure Nash equilibria in finite two-person non-zero-sum games.,2003,32,Int. J. Game Theory,2,db/journals/ijgt/ijgt32.html#Polowczuk03,https://doi.org/10.1007/s001820300155 +Dario Bauso,Robust dynamic cooperative games.,2009,38,Int. J. Game Theory,1,db/journals/ijgt/ijgt38.html#BausoT09,https://doi.org/10.1007/s00182-008-0138-1 +Neil A. McKay,Misère-play Hackenbush Sprigs.,2016,45,Int. J. Game Theory,3,db/journals/ijgt/ijgt45.html#McKayMN16,https://doi.org/10.1007/s00182-015-0484-8 +Ro'i Zultan,Timing of messages and the Aumann conjecture: a multiple-selves approach.,2013,42,Int. J. Game Theory,4,db/journals/ijgt/ijgt42.html#Zultan13,https://doi.org/10.1007/s00182-012-0323-0 +Kali P. Rath,Stationary and nonstationary strategies in Hotelling's model of spatial competition with repeated pricing decisions.,1998,27,Int. J. Game Theory,4,db/journals/ijgt/ijgt27.html#Rath98,https://doi.org/10.1007/s001820050088 +Michihiro Kandori,Less is more: an observability paradox in repeated games.,2006,34,Int. J. Game Theory,4,db/journals/ijgt/ijgt34.html#KandoriO06,https://doi.org/10.1007/s00182-006-0032-7 +Chih Chang,Closedness under Hart-Mas Colell reduction.,2002,30,Int. J. Game Theory,3,db/journals/ijgt/ijgt30.html#ChangH02,https://doi.org/10.1007/s001820100082 +Heinrich H. Nax,Evolutionary dynamics and equitable core selection in assignment games.,2015,44,Int. J. Game Theory,4,db/journals/ijgt/ijgt44.html#NaxP15,https://doi.org/10.1007/s00182-014-0459-1 +Julio González-Díaz,Understanding the coincidence of allocation rules: symmetry and orthogonality in TU-games.,2014,43,Int. J. Game Theory,4,db/journals/ijgt/ijgt43.html#Gonzalez-DiazS14,https://doi.org/10.1007/s00182-013-0406-6 +Yukihiko Funaki,The core of an economy with a common pool resource: A partition function form approach.,1999,28,Int. J. Game Theory,2,db/journals/ijgt/ijgt28.html#FunakiY99,https://doi.org/10.1007/s001820050010 +Emre Dogan,Absence-proofness: Group stability beyond the core.,2016,45,Int. J. Game Theory,3,db/journals/ijgt/ijgt45.html#Dogan16,https://doi.org/10.1007/s00182-015-0472-z +Giulia Cesari,Generalized additive games.,2017,46,Int. J. Game Theory,4,db/journals/ijgt/ijgt46.html#CesariLM17,https://doi.org/10.1007/s00182-016-0561-7 +Marilda Sotomayor,Adjusting prices in the multiple-partners assignment game.,2009,38,Int. J. Game Theory,4,db/journals/ijgt/ijgt38.html#Sotomayor09,https://doi.org/10.1007/s00182-009-0171-8 +Victor K. Domansky,Repeated games with asymmetric information and random price fluctuations at finance markets.,2007,36,Int. J. Game Theory,2,db/journals/ijgt/ijgt36.html#Domansky07,https://doi.org/10.1007/s00182-007-0071-8 +M. Ali Khan,Existence of pure-strategy equilibria in Bayesian games: a sharpened necessity result.,2017,46,Int. J. Game Theory,1,db/journals/ijgt/ijgt46.html#KhanZ17,https://doi.org/10.1007/s00182-016-0528-8 +Jean-François Mertens,Ordinality in non cooperative games.,2004,32,Int. J. Game Theory,3,db/journals/ijgt/ijgt32.html#Mertens04a,https://doi.org/10.1007/s001820400166 +Yujiro Kawasaki,One-to-many non-cooperative matching games.,2013,42,Int. J. Game Theory,2,db/journals/ijgt/ijgt42.html#Kawasaki13,https://doi.org/10.1007/s00182-013-0369-7 +Dunia López-Pintado,Contagion and coordination in random networks.,2006,34,Int. J. Game Theory,3,db/journals/ijgt/ijgt34.html#Lopez-Pintado06,https://doi.org/10.1007/s00182-006-0026-5 +Yusuke Hino,An improved algorithm for detecting potential games.,2011,40,Int. J. Game Theory,1,db/journals/ijgt/ijgt40.html#Hino11,https://doi.org/10.1007/s00182-010-0233-y +Younghwan In,A Note on Multi-Issue Bargaining with a Finite Set of Alternatives.,2006,34,Int. J. Game Theory,1,db/journals/ijgt/ijgt34.html#In06,https://doi.org/10.1007/s00182-005-0001-6 +János Flesch,Cyclic Markov equilibria in stochastic games.,1997,26,Int. J. Game Theory,3,db/journals/ijgt/ijgt26.html#FleschTV97,https://doi.org/10.1007/BF01263273 +János Flesch,Stochastic games on a product state space: the periodic case.,2009,38,Int. J. Game Theory,2,db/journals/ijgt/ijgt38.html#FleschSV09,https://doi.org/10.1007/s00182-009-0153-x +Katarína Cechlárová,Computational complexity of stable partitions with B-preferences.,2003,31,Int. J. Game Theory,3,db/journals/ijgt/ijgt31.html#CechlarovaH03,https://doi.org/10.1007/s001820200124 +Camelia Bejan,Axiomatizing core extensions.,2012,41,Int. J. Game Theory,4,db/journals/ijgt/ijgt41.html#BejanG12,https://doi.org/10.1007/s00182-011-0316-4 +Jacqueline Morgan,Lower semicontinuity for approximate social Nash equilibria.,2003,31,Int. J. Game Theory,4,db/journals/ijgt/ijgt31.html#MorganR03,https://doi.org/10.1007/s001820300134 +Olivier Bochet,Implementation of the Walrasian correspondence: the boundary problem.,2007,36,Int. J. Game Theory,2,db/journals/ijgt/ijgt36.html#Bochet07,https://doi.org/10.1007/s00182-007-0103-4 +Kei Kawakami,Posterior renegotiation-proofness in a two-person decision problem.,2016,45,Int. J. Game Theory,4,db/journals/ijgt/ijgt45.html#Kawakami16,https://doi.org/10.1007/s00182-015-0491-9 +Javier Arin,Monotonic core solutions: beyond Young's theorem.,2013,42,Int. J. Game Theory,2,db/journals/ijgt/ijgt42.html#Arin13,https://doi.org/10.1007/s00182-013-0368-8 +Toru Hokari,Population monotonicity and consistency in convex games: Some logical relations.,2003,31,Int. J. Game Theory,4,db/journals/ijgt/ijgt31.html#HokariG03,https://doi.org/10.1007/s001820300141 +Noah D. Stein,Structure of extreme correlated equilibria: a zero-sum example and its implications.,2011,40,Int. J. Game Theory,4,db/journals/ijgt/ijgt40.html#SteinOP11,https://doi.org/10.1007/s00182-010-0267-1 +Jason Teutsch,A savings paradox for integer-valued gambling strategies.,2014,43,Int. J. Game Theory,1,db/journals/ijgt/ijgt43.html#Teutsch14,https://doi.org/10.1007/s00182-013-0377-7 +Sergiu Ungureanu,Dynamic contracting under permanent and transitory private information.,2017,46,Int. J. Game Theory,3,db/journals/ijgt/ijgt46.html#Ungureanu17,https://doi.org/10.1007/s00182-016-0552-8 +Péter Biró,Computing solutions for matching games.,2012,41,Int. J. Game Theory,1,db/journals/ijgt/ijgt41.html#BiroKP12,https://doi.org/10.1007/s00182-011-0273-y +Stephen Ching,"Strategy-proofness and ""median voters"".",1997,26,Int. J. Game Theory,4,db/journals/ijgt/ijgt26.html#Ching97,https://doi.org/10.1007/BF01813886 +Kamal Jain,Extendability and von Neuman-Morgenstern stability of the core.,2010,39,Int. J. Game Theory,4,db/journals/ijgt/ijgt39.html#JainV10,https://doi.org/10.1007/s00182-010-0223-0 +Ana Meca-Martínez,Strong equilibria in claim games corresponding to convex games.,1998,27,Int. J. Game Theory,2,db/journals/ijgt/ijgt27.html#Meca-MartinezSGT98,https://doi.org/10.1007/s001820050067 +Judith Timmer,On three Shapley-like solutions for cooperative games with random payoffs.,2004,32,Int. J. Game Theory,4,db/journals/ijgt/ijgt32.html#TimmerBT04,https://doi.org/10.1007/s001820400181 +Conor Mayo-Wilson,Wisdom of crowds versus groupthink: learning in groups and in isolation.,2013,42,Int. J. Game Theory,3,db/journals/ijgt/ijgt42.html#Mayo-WilsonZD13,https://doi.org/10.1007/s00182-012-0329-7 +Eilon Solan,Characterization of correlated equilibria in stochastic games.,2001,30,Int. J. Game Theory,2,db/journals/ijgt/ijgt30.html#Solan01,https://doi.org/10.1007/s001820100078 +R. Pablo Arribillaga,Axiomatizing core extensions on NTU games.,2016,45,Int. J. Game Theory,3,db/journals/ijgt/ijgt45.html#Arribillaga16,https://doi.org/10.1007/s00182-015-0471-0 +Klaus Kultti,Minimum norm solutions for cooperative games.,2007,35,Int. J. Game Theory,4,db/journals/ijgt/ijgt35.html#KulttiS07,https://doi.org/10.1007/s00182-007-0070-9 +Tasos Kalandrakis,On participation games with complete information.,2007,35,Int. J. Game Theory,3,db/journals/ijgt/ijgt35.html#Kalandrakis07,https://doi.org/10.1007/s00182-006-0049-y +Cuihong Fan,Licensing a common value innovation when signaling strength may backfire.,2014,43,Int. J. Game Theory,1,db/journals/ijgt/ijgt43.html#FanJW14,https://doi.org/10.1007/s00182-013-0391-9 +Hans-Peter Battenberg,On saddlepoints of two-person zero-sum games with applications to data verification tests.,1998,27,Int. J. Game Theory,4,db/journals/ijgt/ijgt27.html#BattenbergF98,https://doi.org/10.1007/s001820050090 +Kyle Hyndman,Repeated bargaining with reference-dependent preferences.,2011,40,Int. J. Game Theory,3,db/journals/ijgt/ijgt40.html#Hyndman11,https://doi.org/10.1007/s00182-010-0253-7 +Takaaki Abe,Consistency and the core in games with externalities.,2018,47,Int. J. Game Theory,1,db/journals/ijgt/ijgt47.html#Abe18,https://doi.org/10.1007/s00182-017-0581-y +Ulrich Faigle,On the complexity of testing membership in the core of min-cost spanning tree games.,1997,26,Int. J. Game Theory,3,db/journals/ijgt/ijgt26.html#FaigleKFH97,https://doi.org/10.1007/BF01263277 +Urban Larsson,Games with guaranteed scores and waiting moves.,2018,47,Int. J. Game Theory,2,db/journals/ijgt/ijgt47.html#LarssonNS18,https://doi.org/10.1007/s00182-017-0590-x +Edward M. Bolger,A consistent value for games with n players and r alternatives.,2000,29,Int. J. Game Theory,1,db/journals/ijgt/ijgt29.html#Bolger00,https://doi.org/10.1007/s001820050007 +Maurice Koster,Sharing the cost of a network: core and core allocations.,2002,30,Int. J. Game Theory,4,db/journals/ijgt/ijgt30.html#KosterMST02,https://doi.org/10.1007/s001820200099 +Huibin Yan,Noncooperative selection of the core.,2003,31,Int. J. Game Theory,4,db/journals/ijgt/ijgt31.html#Yan03,https://doi.org/10.1007/s001820300137 +Robert J. Aumann,My scientific first-born.,2012,41,Int. J. Game Theory,4,db/journals/ijgt/ijgt41.html#Aumann12,https://doi.org/10.1007/s00182-012-0357-3 +Wonki Jo Cho,Stability and the immediate acceptance rule when school priorities are weak.,2017,46,Int. J. Game Theory,4,db/journals/ijgt/ijgt46.html#ChoD17,https://doi.org/10.1007/s00182-016-0562-6 +Guillermo Owen,"A simple ""market value"" bargaining model for weighted voting games: characterization and limit theorems.",2006,35,Int. J. Game Theory,1,db/journals/ijgt/ijgt35.html#OwenLFGR06,https://doi.org/10.1007/s00182-006-0055-0 +Andrés Perea,Stochastic dominance equilibria in two-person noncooperative games.,2006,34,Int. J. Game Theory,4,db/journals/ijgt/ijgt34.html#PereaPSV06,https://doi.org/10.1007/s00182-006-0035-4 +Nobusumi Sagara,A new class of convex games on χ3*-algebras and the optimal partitioning of measurable spaces.,2011,40,Int. J. Game Theory,3,db/journals/ijgt/ijgt40.html#SagaraV11,https://doi.org/10.1007/s00182-010-0258-2 +Jean Derks,The selectope for cooperative games.,2000,29,Int. J. Game Theory,1,db/journals/ijgt/ijgt29.html#DerksHP00,https://doi.org/10.1007/s001820050003 +M. Josune Albizuri,An axiomatization of the modified Banzhaf Coleman index.,2001,30,Int. J. Game Theory,2,db/journals/ijgt/ijgt30.html#Albizuri01,https://doi.org/10.1007/s001820100071 +Michael A. Jones,The effect of punishment duration of trigger strategies and quasifinite continuation probabilities for Prisoners' Dilemmas.,1999,28,Int. J. Game Theory,4,db/journals/ijgt/ijgt28.html#Jones99,https://doi.org/10.1007/s001820050124 +Parkash Chander,The gamma-core and coalition formation.,2007,35,Int. J. Game Theory,4,db/journals/ijgt/ijgt35.html#Chander07,https://doi.org/10.1007/s00182-006-0067-9 +Emiliya Lazarova,Paths to stability in two-sided matching under uncertainty.,2017,46,Int. J. Game Theory,1,db/journals/ijgt/ijgt46.html#LazarovaD17,https://doi.org/10.1007/s00182-015-0519-1 +Jiuqiang Liu,Coincidence of the Mas-Colell bargaining set and the set of competitive equilibria in a continuum coalition production economy.,2016,45,Int. J. Game Theory,4,db/journals/ijgt/ijgt45.html#LiuZ16,https://doi.org/10.1007/s00182-015-0511-9 +Ezra Einy,Continuity of the value and optimal strategies when common priors change.,2012,41,Int. J. Game Theory,4,db/journals/ijgt/ijgt41.html#EinyHT12,https://doi.org/10.1007/s00182-010-0248-4 +Eilon Solan,Correlated equilibrium payoffs and public signalling in absorbing games.,2002,31,Int. J. Game Theory,1,db/journals/ijgt/ijgt31.html#SolanV02,https://doi.org/10.1007/s001820200109 +Timothy Feddersen,The calculus of ethical voting.,2006,35,Int. J. Game Theory,1,db/journals/ijgt/ijgt35.html#FeddersenS06,https://doi.org/10.1007/s00182-006-0047-0 +Piercesare Secchi,N-Person stochastic games with upper semi-continuous payoffs.,2002,30,Int. J. Game Theory,4,db/journals/ijgt/ijgt30.html#SecchiS02a,https://doi.org/10.1007/s001820200091 +Russell Golman,Why learning doesn't add up: equilibrium selection with a composition of learning rules.,2011,40,Int. J. Game Theory,4,db/journals/ijgt/ijgt40.html#Golman11,https://doi.org/10.1007/s00182-010-0265-3 +Juan J. Vidal-Puga,Bargaining with commitments.,2004,33,Int. J. Game Theory,1,db/journals/ijgt/ijgt33.html#Vidal-Puga04,https://doi.org/10.1007/s001820400190 +Alvaro Sandroni,The reproducible properties of correct forecasts.,2003,32,Int. J. Game Theory,1,db/journals/ijgt/ijgt32.html#Sandroni03,https://doi.org/10.1007/s001820300153 +Massimo Marinacci,Stable cores of large games.,2005,33,Int. J. Game Theory,2,db/journals/ijgt/ijgt33.html#MarinacciM05,https://doi.org/10.1007/s001820400191 +Edward J. Cartwright,On equilibrium in pure strategies in games with many players.,2009,38,Int. J. Game Theory,1,db/journals/ijgt/ijgt38.html#CartwrightW09a,https://doi.org/10.1007/s00182-008-0150-5 +Jonathan Shalev,Loss aversion equilibrium.,2000,29,Int. J. Game Theory,2,db/journals/ijgt/ijgt29.html#Shalev00,https://doi.org/10.1007/s001820000038 +Martin Brandenburg,Algebraic games - playing with groups and rings.,2018,47,Int. J. Game Theory,2,db/journals/ijgt/ijgt47.html#Brandenburg18,https://doi.org/10.1007/s00182-017-0577-7 +Tadeusz Radzik,Poor convexity and Nash equilibria in games.,2014,43,Int. J. Game Theory,1,db/journals/ijgt/ijgt43.html#Radzik14,https://doi.org/10.1007/s00182-013-0379-5 +Lukasz Balbus,Time consistent Markov policies in dynamic economies with quasi-hyperbolic consumers.,2015,44,Int. J. Game Theory,1,db/journals/ijgt/ijgt44.html#BalbusRW15,https://doi.org/10.1007/s00182-014-0420-3 +Gert-Jan Otten,The MC-value for monotonic NTU-games.,1998,27,Int. J. Game Theory,1,db/journals/ijgt/ijgt27.html#OttenBPT98,https://doi.org/10.1007/BF01243193 +Hao Sun,Semi-marginalistic Values for Set Games.,2006,34,Int. J. Game Theory,2,db/journals/ijgt/ijgt34.html#SunD06,https://doi.org/10.1007/s00182-006-0014-9 +Helga Habis,Stochastic bankruptcy games.,2013,42,Int. J. Game Theory,4,db/journals/ijgt/ijgt42.html#HabisH13,https://doi.org/10.1007/s00182-012-0350-x +David Housman,Note Core and monotonic allocation methods - Core and monotonic allocation methods.,1998,27,Int. J. Game Theory,4,db/journals/ijgt/ijgt27.html#HousmanC98,https://doi.org/10.1007/s001820050093 +Antonio Jiménez-Martínez,A model of interim information sharing under incomplete information.,2006,34,Int. J. Game Theory,3,db/journals/ijgt/ijgt34.html#Jimenez-Martinez06,https://doi.org/10.1007/s00182-006-0021-x +Ton Storcken,Effectivity functions and simple games.,1997,26,Int. J. Game Theory,2,db/journals/ijgt/ijgt26.html#Storcken97,https://doi.org/10.1007/BF01295853 +Aviad Heifetz,On the outcome equivalence of backward induction and extensive form rationalizability.,2015,44,Int. J. Game Theory,1,db/journals/ijgt/ijgt44.html#HeifetzP15,https://doi.org/10.1007/s00182-014-0418-x +Arnold Polanski,Dynamic multilateral markets.,2015,44,Int. J. Game Theory,4,db/journals/ijgt/ijgt44.html#PolanskiL15,https://doi.org/10.1007/s00182-014-0455-5 +Akira Yamada,Triple implementation by sharing mechanisms in production economies with unequal labor skills.,2007,36,Int. J. Game Theory,1,db/journals/ijgt/ijgt36.html#YamadaY07,https://doi.org/10.1007/s00182-007-0072-7 +Isa Emin Hafalir,Stability of marriage with externalities.,2008,37,Int. J. Game Theory,3,db/journals/ijgt/ijgt37.html#Hafalir08,https://doi.org/10.1007/s00182-008-0122-9 +Ori Gurel-Gurevich,Pursuit-Evasion Games with incomplete information in discrete time.,2009,38,Int. J. Game Theory,3,db/journals/ijgt/ijgt38.html#Gurel-Gurevich09,https://doi.org/10.1007/s00182-009-0158-5 +Miguel A. Hinojosa,Inequality averse multi-utilitarian bargaining solutions.,2008,37,Int. J. Game Theory,4,db/journals/ijgt/ijgt37.html#HinojosaMZ08,https://doi.org/10.1007/s00182-008-0137-2 +Joachim Rosenmüller,A characterization of vNM-stable sets for linear production games.,2000,29,Int. J. Game Theory,1,db/journals/ijgt/ijgt29.html#RosenmullerS00,https://doi.org/10.1007/s001820050004 +Ross Cressman,Dynamic stability in symmetric extensive form games.,1997,26,Int. J. Game Theory,4,db/journals/ijgt/ijgt26.html#Cressman97,https://doi.org/10.1007/BF01813889 +Indrajit Ray,Coarse correlated equilibria in linear duopoly games.,2013,42,Int. J. Game Theory,2,db/journals/ijgt/ijgt42.html#RayG13,https://doi.org/10.1007/s00182-012-0360-8 +Alex Fink,LIM is not slim.,2014,43,Int. J. Game Theory,2,db/journals/ijgt/ijgt43.html#FinkFS14,https://doi.org/10.1007/s00182-013-0380-z +Diane J. Reyniers,Relative impatience determines preference between contract bargaining and repeated bargaining.,2000,29,Int. J. Game Theory,2,db/journals/ijgt/ijgt29.html#Reyniers00,https://doi.org/10.1007/s001820000032 +Dieter Balkenborg,The refined best-response correspondence in normal form games.,2015,44,Int. J. Game Theory,1,db/journals/ijgt/ijgt44.html#BalkenborgHK15,https://doi.org/10.1007/s00182-014-0424-z +Ulrich Faigle,On the computation of the nucleolus of a cooperative game.,2001,30,Int. J. Game Theory,1,db/journals/ijgt/ijgt30.html#FaigleKK01,https://doi.org/10.1007/s001820100065 +Fedor Sandomirskiy,Repeated games of incomplete information with large sets of states.,2014,43,Int. J. Game Theory,4,db/journals/ijgt/ijgt43.html#Sandomirskiy14,https://doi.org/10.1007/s00182-013-0404-8 +Daniel Granot,Voting for voters: the unanimity case.,2003,31,Int. J. Game Theory,2,db/journals/ijgt/ijgt31.html#GranotMS03,https://doi.org/10.1007/s001820200100 +Tasos Kalandrakis,Minimum winning coalitions and endogenous status quo.,2010,39,Int. J. Game Theory,4,db/journals/ijgt/ijgt39.html#Kalandrakis10,https://doi.org/10.1007/s00182-009-0202-5 +Guilherme Carmona,A Strong Anti-Folk Theorem.,2006,34,Int. J. Game Theory,1,db/journals/ijgt/ijgt34.html#Carmona06,https://doi.org/10.1007/s00182-006-0010-0 +Stéphane Gonzalez,Preserving coalitional rationality for non-balanced games.,2015,44,Int. J. Game Theory,3,db/journals/ijgt/ijgt44.html#GonzalezG15,https://doi.org/10.1007/s00182-014-0451-9 +Dale O. Stahl,Evidence based rules and learning in symmetric normal-form games.,1999,28,Int. J. Game Theory,1,db/journals/ijgt/ijgt28.html#Stahl99,https://doi.org/10.1007/s001820050101 +Guilherme Carmona,On the existence of equilibria in discontinuous games: three counterexamples.,2005,33,Int. J. Game Theory,2,db/journals/ijgt/ijgt33.html#Carmona05,https://doi.org/10.1007/s001820400187 +Georgios C. Chasparis,Nonconvergence to saddle boundary points under perturbed reinforcement learning.,2015,44,Int. J. Game Theory,3,db/journals/ijgt/ijgt44.html#ChasparisSR15,https://doi.org/10.1007/s00182-014-0449-3 +Emilio Calvo,Dynamics and axiomatics of the equal area bargaining solution.,2000,29,Int. J. Game Theory,1,db/journals/ijgt/ijgt29.html#CalvoP00,https://doi.org/10.1007/s001820050006 +Marco Slikker,A characterization of the position value.,2005,33,Int. J. Game Theory,4,db/journals/ijgt/ijgt33.html#Slikker05,https://doi.org/10.1007/s00182-005-0211-y +Ulrich Kamecke,Dominance or maximin: How to solve an English auction.,1998,27,Int. J. Game Theory,3,db/journals/ijgt/ijgt27.html#Kamecke98,https://doi.org/10.1007/s001820050081 +Michael Trost,Epistemic characterizations of iterated deletion of inferior strategy profiles in preference-based type spaces.,2013,42,Int. J. Game Theory,3,db/journals/ijgt/ijgt42.html#Trost13,https://doi.org/10.1007/s00182-011-0315-5 +Katsuhiko Aiba,Waiting * in evolutionary dynamics with time-decreasing noise.,2015,44,Int. J. Game Theory,2,db/journals/ijgt/ijgt44.html#Aiba15,https://doi.org/10.1007/s00182-014-0442-x +Dinah Rosenberg,The MaxMin value of stochastic games with imperfect monitoring.,2003,32,Int. J. Game Theory,1,db/journals/ijgt/ijgt32.html#RosenbergSV03,https://doi.org/10.1007/s001820300150 +Jingang Zhao,The existence of TU α-core in normal form games.,1999,28,Int. J. Game Theory,1,db/journals/ijgt/ijgt28.html#Zhao99,https://doi.org/10.1007/s001820050096 +Naoki Kojima,Mechanism design to the budget constrained buyer: a canonical mechanism approach.,2014,43,Int. J. Game Theory,3,db/journals/ijgt/ijgt43.html#Kojima14,https://doi.org/10.1007/s00182-013-0403-9 +Kfir Eliaz,Sending information to interactive receivers playing a generalized prisoners' dilemma.,2014,43,Int. J. Game Theory,2,db/journals/ijgt/ijgt43.html#EliazS14,https://doi.org/10.1007/s00182-013-0374-x +Maria Saez-Marti,On the asymptotic convergence to mixed equilibria in 2*2 asymmetric games.,1997,26,Int. J. Game Theory,4,db/journals/ijgt/ijgt26.html#Saez-Marti97,https://doi.org/10.1007/BF01813890 +Robert Samuel Simon,The generation of formulas held in common knowledge.,2001,30,Int. J. Game Theory,1,db/journals/ijgt/ijgt30.html#Simon01,https://doi.org/10.1007/s001820100061 +Naoki Watanabe,Stable profit sharing in a patent licensing game: general bargaining outcomes.,2008,37,Int. J. Game Theory,4,db/journals/ijgt/ijgt37.html#WatanabeM08,https://doi.org/10.1007/s00182-008-0130-9 +Ehud Lehrer,Approachability in infinite dimensional spaces.,2003,31,Int. J. Game Theory,2,db/journals/ijgt/ijgt31.html#Lehrer03,https://doi.org/10.1007/s001820200115 +Josep M. Izquierdo,A characterization of convex games by means of bargaining sets.,2008,37,Int. J. Game Theory,3,db/journals/ijgt/ijgt37.html#IzquierdoR08,https://doi.org/10.1007/s00182-008-0120-y +Oriol Carbonell-Nicolau,On equilibrium refinements in supermodular games.,2015,44,Int. J. Game Theory,4,db/journals/ijgt/ijgt44.html#Carbonell-Nicolau15,https://doi.org/10.1007/s00182-014-0457-3 +John M. Rulnick,Convex covers of symmetric games.,1997,26,Int. J. Game Theory,4,db/journals/ijgt/ijgt26.html#RulnickS97,https://doi.org/10.1007/BF01813891 +M. Josune Albizuri,On the serial cost sharing rule.,2003,31,Int. J. Game Theory,3,db/journals/ijgt/ijgt31.html#AlbizuriSZ03,https://doi.org/10.1007/s001820300129 +D. T. Allemang,Generalized genus sequences for misère octal games.,2002,30,Int. J. Game Theory,4,db/journals/ijgt/ijgt30.html#Allemang02,https://doi.org/10.1007/s001820200097 +Hans Gersbach,The money-burning refinement: With an application to a political signalling game.,2004,33,Int. J. Game Theory,1,db/journals/ijgt/ijgt33.html#Gersbach04,https://doi.org/10.1007/s001820400185 +María Gómez-Rúa,Merge-proofness in minimum cost spanning tree problems.,2011,40,Int. J. Game Theory,2,db/journals/ijgt/ijgt40.html#Gomez-RuaV11,https://doi.org/10.1007/s00182-010-0243-9 +Wen An Liu,Multi-player Last Nim with Passes.,2018,47,Int. J. Game Theory,2,db/journals/ijgt/ijgt47.html#LiuY18,https://doi.org/10.1007/s00182-017-0606-6 +Abraham Neyman,Existence of optimal strategies in Markov games with incomplete information.,2008,37,Int. J. Game Theory,4,db/journals/ijgt/ijgt37.html#Neyman08,https://doi.org/10.1007/s00182-008-0134-5 +Claudia Keser,Strategic behavior of experienced subjects in a common pool resource game.,1999,28,Int. J. Game Theory,2,db/journals/ijgt/ijgt28.html#KeserG99,https://doi.org/10.1007/s001820050108 +Koji Takamiya,The consistency principle and an axiomatization of the α-core.,2001,30,Int. J. Game Theory,2,db/journals/ijgt/ijgt30.html#Takamiya01,https://doi.org/10.1007/s001820100074 +Daniel Carvalho,A cognitive hierarchy model of behavior in the action commitment game.,2014,43,Int. J. Game Theory,3,db/journals/ijgt/ijgt43.html#CarvalhoS14,https://doi.org/10.1007/s00182-013-0395-5 +Tristan Tomala,Pure equilibria of repeated games with public observation.,1998,27,Int. J. Game Theory,1,db/journals/ijgt/ijgt27.html#Tomala98,https://doi.org/10.1007/BF01243197 +Alan Guo,Algorithms for lattice games.,2013,42,Int. J. Game Theory,4,db/journals/ijgt/ijgt42.html#GuoM13,https://doi.org/10.1007/s00182-012-0319-9 +Jaeok Park,Competitive equilibrium and singleton cores in generalized matching problems.,2017,46,Int. J. Game Theory,2,db/journals/ijgt/ijgt46.html#Park17,https://doi.org/10.1007/s00182-016-0543-9 +Elaine Bennett,A demand adjustment process.,1997,26,Int. J. Game Theory,4,db/journals/ijgt/ijgt26.html#BennettMZ97,https://doi.org/10.1007/BF01813883 +Ching-jen Sun,A note on the dynamics of incentive contracts.,2011,40,Int. J. Game Theory,3,db/journals/ijgt/ijgt40.html#Sun11,https://doi.org/10.1007/s00182-010-0254-6 +Abraham Neyman,Two-person repeated games with finite automata.,2000,29,Int. J. Game Theory,3,db/journals/ijgt/ijgt29.html#NeymanO00,https://doi.org/10.1007/s001820000040 +Reinoud Joosten,Games with frequency-dependent stage payoffs.,2003,31,Int. J. Game Theory,4,db/journals/ijgt/ijgt31.html#JoostenBW03,https://doi.org/10.1007/s001820300143 +Matthias Blonski,Prisoners' other Dilemma.,2015,44,Int. J. Game Theory,1,db/journals/ijgt/ijgt44.html#BlonskiS15,https://doi.org/10.1007/s00182-014-0419-9 +Ana Mauleon,Dominance invariant one-to-one matching problems.,2014,43,Int. J. Game Theory,4,db/journals/ijgt/ijgt43.html#MauleonMVV14,https://doi.org/10.1007/s00182-014-0411-4 +Joachim Rosenmüller,Convex vNM-stable sets for linear production games.,2010,39,Int. J. Game Theory,3,db/journals/ijgt/ijgt39.html#RosenmullerS10,https://doi.org/10.1007/s00182-009-0173-6 +Ayala Mashiah-Yaakovi,Subgame perfect equilibria in stopping games.,2014,43,Int. J. Game Theory,1,db/journals/ijgt/ijgt43.html#Mashiah-Yaakovi14,https://doi.org/10.1007/s00182-013-0375-9 +Katerina Sherstyuk,Multisided matching games with complementarities.,1999,28,Int. J. Game Theory,4,db/journals/ijgt/ijgt28.html#Sherstyuk99,https://doi.org/10.1007/s001820050121 +Giacomo Bonanno,AGM-consistency and perfect Bayesian equilibrium. Part II: from PBE to sequential equilibrium.,2016,45,Int. J. Game Theory,4,db/journals/ijgt/ijgt45.html#Bonanno16,https://doi.org/10.1007/s00182-015-0506-6 +Alvaro Sandroni,The speed of rational learning.,1999,28,Int. J. Game Theory,2,db/journals/ijgt/ijgt28.html#SandroniS99,https://doi.org/10.1007/s182-1999-8371-x +Ulrich Kamecke,Rotations: Matching schemes that efficiently preserve the best reply structure of a one shot game.,1997,26,Int. J. Game Theory,3,db/journals/ijgt/ijgt26.html#Kamecke97,https://doi.org/10.1007/BF01263281 +R. Mark Isaac,An experimental test of alternative models of bidding in ascending auctions.,2005,33,Int. J. Game Theory,2,db/journals/ijgt/ijgt33.html#IsaacSZ05,https://doi.org/10.1007/s00182-005-0203-y +Eun Jeong Heo,The extended serial correspondence on a rich preference domain.,2014,43,Int. J. Game Theory,2,db/journals/ijgt/ijgt43.html#Heo14,https://doi.org/10.1007/s00182-013-0388-4 +Taiji Furusawa,Bargaining with stochastic disagreement payoffs.,2003,31,Int. J. Game Theory,4,db/journals/ijgt/ijgt31.html#FurusawaW03,https://doi.org/10.1007/s001820300140 +Ali Hameed,Roughly weighted hierarchical simple games.,2015,44,Int. J. Game Theory,2,db/journals/ijgt/ijgt44.html#HameedS15,https://doi.org/10.1007/s00182-014-0430-1 +Christian Ewerhart,Rationality and the definition of consistent pairs.,1998,27,Int. J. Game Theory,1,db/journals/ijgt/ijgt27.html#Ewerhart98,https://doi.org/10.1007/BF01243194 +F. Javier Martínez-de-Albéniz,An intersection theorem in TU cooperative game theory.,2004,33,Int. J. Game Theory,1,db/journals/ijgt/ijgt33.html#Martinez-de-AlbenizR04,https://doi.org/10.1007/s001820400188 +Marek Hudík,A preference change or a perception change? A comment on Dietrich and List.,2015,44,Int. J. Game Theory,2,db/journals/ijgt/ijgt44.html#Hudik15,https://doi.org/10.1007/s00182-014-0436-8 +Enriqueta Aragonès,Government formation in a two dimensional policy space.,2007,35,Int. J. Game Theory,2,db/journals/ijgt/ijgt35.html#Aragones07,https://doi.org/10.1007/s00182-006-0039-0 +Marilda Sotomayor,The lattice structure of the set of stable outcomes of the multiple partners assignment game.,1999,28,Int. J. Game Theory,4,db/journals/ijgt/ijgt28.html#Sotomayor99,https://doi.org/10.1007/s001820050126 +Balázs Sziklai,How to identify experts in a community?,2018,47,Int. J. Game Theory,1,db/journals/ijgt/ijgt47.html#Sziklai18,https://doi.org/10.1007/s00182-017-0582-x +Gadi Fibich,Large auctions with risk-averse bidders.,2010,39,Int. J. Game Theory,3,db/journals/ijgt/ijgt39.html#FibichG10,https://doi.org/10.1007/s00182-009-0181-6 +Lior Goldberg,Rulesets for Beatty games.,2018,47,Int. J. Game Theory,2,db/journals/ijgt/ijgt47.html#GoldbergF18,https://doi.org/10.1007/s00182-017-0594-6 +Vikram Manjunath,Efficient and strategy-proof social choice when preferences are single-dipped.,2014,43,Int. J. Game Theory,3,db/journals/ijgt/ijgt43.html#Manjunath14,https://doi.org/10.1007/s00182-013-0396-4 +Jean Derks,Weighted nucleoli.,1999,28,Int. J. Game Theory,2,db/journals/ijgt/ijgt28.html#DerksH99,https://doi.org/10.1007/s001820050011 +Dimitrios Xefteris,Simple centrifugal incentives in spatial competition.,2017,46,Int. J. Game Theory,2,db/journals/ijgt/ijgt46.html#XefterisLB17,https://doi.org/10.1007/s00182-016-0540-z +Carles Rafels,On the Cores of cooperative games and the stability of the Weber set.,1997,26,Int. J. Game Theory,4,db/journals/ijgt/ijgt26.html#RafelsT97,https://doi.org/10.1007/BF01813887 +Marina Núñez,Buyer-seller exactness in the assignment game.,2003,31,Int. J. Game Theory,3,db/journals/ijgt/ijgt31.html#NunezR03a,https://doi.org/10.1007/s001820300128 +P. Jean-Jacques Herings,The Weak Sequential Core for Two-Period Economies.,2006,34,Int. J. Game Theory,1,db/journals/ijgt/ijgt34.html#HeringsPP06,https://doi.org/10.1007/s00182-005-0007-0 +Mehmet Karakaya,Hedonic coalition formation games with variable populations: core characterizations and (im)possibilities.,2017,46,Int. J. Game Theory,2,db/journals/ijgt/ijgt46.html#KarakayaK17,https://doi.org/10.1007/s00182-016-0533-y +Maciej Bukowski,Evolutionary and asymptotic stability in symmetric multi-player games.,2004,33,Int. J. Game Theory,1,db/journals/ijgt/ijgt33.html#BukowskiM04,https://doi.org/10.1007/s001820400183 +Wojciech Olszewski,Perfect folk theorems. Does public randomization matter?,1998,27,Int. J. Game Theory,1,db/journals/ijgt/ijgt27.html#Olszewski98,https://doi.org/10.1007/BF01243200 +Andrzej S. Nowak,On a new class of nonzero-sum discounted stochastic games having stationary Nash equilibrium points.,2003,32,Int. J. Game Theory,1,db/journals/ijgt/ijgt32.html#Nowak03,https://doi.org/10.1007/s001820200118 +Martin Hoefer,Strategic cooperation in cost sharing games.,2013,42,Int. J. Game Theory,1,db/journals/ijgt/ijgt42.html#Hoefer13,https://doi.org/10.1007/s00182-011-0312-8 +Boyu Zhang,Equilibrium selection via replicator dynamics in \(2 \* 2\) coordination games.,2015,44,Int. J. Game Theory,2,db/journals/ijgt/ijgt44.html#ZhangH15,https://doi.org/10.1007/s00182-014-0437-7 +Paul W. Goldberg,On the approximation performance of fictitious play in finite games.,2013,42,Int. J. Game Theory,4,db/journals/ijgt/ijgt42.html#GoldbergSSV13,https://doi.org/10.1007/s00182-012-0362-6 +T. E. S. Raghavan,The modiclus and core stability.,2005,33,Int. J. Game Theory,4,db/journals/ijgt/ijgt33.html#RaghavanS05,https://doi.org/10.1007/s00182-005-0207-7 +Robert J. Aumann,Interactive epistemology I: Knowledge.,1999,28,Int. J. Game Theory,3,db/journals/ijgt/ijgt28.html#Aumann99,https://doi.org/10.1007/s001820050111 +Péter Eso,Disagreement and evidence production in strategic information transmission.,2013,42,Int. J. Game Theory,1,db/journals/ijgt/ijgt42.html#EsoG13,https://doi.org/10.1007/s00182-012-0344-8 +M. Remzi Sanver,One-way monotonicity as a form of strategy-proofness.,2009,38,Int. J. Game Theory,4,db/journals/ijgt/ijgt38.html#SanverZ09,https://doi.org/10.1007/s00182-009-0170-9 +M. Bumin Yenmez,Incentive compatible market design with applications.,2015,44,Int. J. Game Theory,3,db/journals/ijgt/ijgt44.html#Yenmez15,https://doi.org/10.1007/s00182-014-0444-8 +José Carlos R. Alcantud,Nash equilibria for non-binary choice rules.,2007,35,Int. J. Game Theory,3,db/journals/ijgt/ijgt35.html#AlcantudA07,https://doi.org/10.1007/s00182-006-0060-3 +Jacob Engwerda,On the sensitivity matrix of the Nash bargaining solution.,2008,37,Int. J. Game Theory,2,db/journals/ijgt/ijgt37.html#EngwerdaD08,https://doi.org/10.1007/s00182-007-0113-2 +Arantza Estévez-Fernández,Project games.,2007,36,Int. J. Game Theory,2,db/journals/ijgt/ijgt36.html#Estevez-FernandezBH07,https://doi.org/10.1007/s00182-006-0058-x +David Housman,Linear and symmetric allocation methods for partially defined cooperative games.,2002,30,Int. J. Game Theory,3,db/journals/ijgt/ijgt30.html#Housman02,https://doi.org/10.1007/s001820100086 +Ruth Martínez,On group strategy-proof mechanisms for a many-to-one matching model.,2004,33,Int. J. Game Theory,1,db/journals/ijgt/ijgt33.html#MartinezMNO04,https://doi.org/10.1007/s001820400189 +Tomohiko Kawamori,A note on selection of proposers in coalitional bargaining.,2008,37,Int. J. Game Theory,4,db/journals/ijgt/ijgt37.html#Kawamori08,https://doi.org/10.1007/s00182-008-0131-8 +Thomas S. Ferguson,Games with finite resources.,2000,29,Int. J. Game Theory,2,db/journals/ijgt/ijgt29.html#FergusonM00,https://doi.org/10.1007/s001820050009 +Maxim Ivanov,Dynamic learning and strategic communication.,2016,45,Int. J. Game Theory,3,db/journals/ijgt/ijgt45.html#Ivanov16,https://doi.org/10.1007/s00182-015-0474-x +Liad Wagman,Choosing fair lotteries to defeat the competition.,2012,41,Int. J. Game Theory,1,db/journals/ijgt/ijgt41.html#WagmanC12,https://doi.org/10.1007/s00182-011-0275-9 +Francesca Busetto,Asymptotic equivalence between Cournot-Nash and Walras equilibria in exchange economies with atoms and an atomless part.,2017,46,Int. J. Game Theory,4,db/journals/ijgt/ijgt46.html#BusettoCG17,https://doi.org/10.1007/s00182-017-0566-x +Luis Hernández-Lamoneda,Rankings and values for team games.,2010,39,Int. J. Game Theory,3,db/journals/ijgt/ijgt39.html#Hernandez-LamonedaS10,https://doi.org/10.1007/s00182-009-0178-1 +Amit Pazgal,Satisficing leads to cooperation in mutual interests games.,1997,26,Int. J. Game Theory,4,db/journals/ijgt/ijgt26.html#Pazgal97,https://doi.org/10.1007/BF01813884 +Xiaoshu Xu,Auctions with synergy and resale.,2012,41,Int. J. Game Theory,2,db/journals/ijgt/ijgt41.html#XuLY12,https://doi.org/10.1007/s00182-011-0292-8 +Maxwell Pak,Generalized reinforcement learning in perfect-information games.,2016,45,Int. J. Game Theory,4,db/journals/ijgt/ijgt45.html#PakX16,https://doi.org/10.1007/s00182-015-0499-1 +Ashok P. Maitra,Borel stay-in-a-set games.,2003,32,Int. J. Game Theory,1,db/journals/ijgt/ijgt32.html#MaitraS03,https://doi.org/10.1007/s001820300148 +Farhad Hüsseinov,Existence of the core in a heterogeneous divisible commodity exchange economy.,2008,37,Int. J. Game Theory,3,db/journals/ijgt/ijgt37.html#Husseinov08,https://doi.org/10.1007/s00182-008-0124-7 +Yoshio Kamijo,Axiomatization of the Shapley value using the balanced cycle contributions property.,2010,39,Int. J. Game Theory,4,db/journals/ijgt/ijgt39.html#KamijoK10,https://doi.org/10.1007/s00182-009-0187-0 +Jeroen Kuipers,A dynamic approach to cartel formation.,2008,37,Int. J. Game Theory,3,db/journals/ijgt/ijgt37.html#KuipersO08,https://doi.org/10.1007/s00182-008-0125-6 +Jean-François Laslier,A reinforcement learning process in extensive form games.,2005,33,Int. J. Game Theory,2,db/journals/ijgt/ijgt33.html#LaslierW05,https://doi.org/10.1007/s001820400194 +Sylvain Béal,Compensations in the Shapley value and the compensation solutions for graph games.,2012,41,Int. J. Game Theory,1,db/journals/ijgt/ijgt41.html#BealRS12,https://doi.org/10.1007/s00182-011-0277-7 +Steve Alpern,Analysis and design of selection committees: a game theoretic secretary problem.,2009,38,Int. J. Game Theory,3,db/journals/ijgt/ijgt38.html#AlpernG09,https://doi.org/10.1007/s00182-009-0159-4 +Benedikt Löwe,Playing with mixed strategies on infinite sets.,2002,31,Int. J. Game Theory,1,db/journals/ijgt/ijgt31.html#Lowe02,https://doi.org/10.1007/s001820200111 +Robert Samuel Simon,The difference between common knowledge of formulas and sets.,1999,28,Int. J. Game Theory,3,db/journals/ijgt/ijgt28.html#Simon99,https://doi.org/10.1007/s001820050115 +Sjaak Hurkens,Evolutionary insights on the willingness to communicate.,2003,31,Int. J. Game Theory,4,db/journals/ijgt/ijgt31.html#HurkensS03,https://doi.org/10.1007/s001820300136 +Yan-An Hwang,An NTU value under complement reduced game.,2009,38,Int. J. Game Theory,3,db/journals/ijgt/ijgt38.html#Hwang09,https://doi.org/10.1007/s00182-009-0155-8 +Stefan Napel,Inferior players in simple games.,2001,30,Int. J. Game Theory,2,db/journals/ijgt/ijgt30.html#NapelW01,https://doi.org/10.1007/s001820100075 +Walter O. Krawec,Analyzing n-player impartial games.,2012,41,Int. J. Game Theory,2,db/journals/ijgt/ijgt41.html#Krawec12,https://doi.org/10.1007/s00182-011-0289-3 +Gadi Fibich,All-pay auctions with risk-averse players.,2006,34,Int. J. Game Theory,4,db/journals/ijgt/ijgt34.html#FibichGS06,https://doi.org/10.1007/s00182-006-0034-5 +János Flesch,Loss of skills in coordination games.,2011,40,Int. J. Game Theory,4,db/journals/ijgt/ijgt40.html#FleschSV11,https://doi.org/10.1007/s00182-010-0268-0 +Rida Laraki,The splitting game and applications.,2002,30,Int. J. Game Theory,3,db/journals/ijgt/ijgt30.html#Laraki02,https://doi.org/10.1007/s001820100085 +Onur Kesten,Coalitional strategy-proofness and resource monotonicity for house allocation problems.,2009,38,Int. J. Game Theory,1,db/journals/ijgt/ijgt38.html#Kesten09,https://doi.org/10.1007/s00182-008-0136-3 +Dinah Rosenberg,Duality and markovian strategies.,1998,27,Int. J. Game Theory,4,db/journals/ijgt/ijgt27.html#Rosenberg98,https://doi.org/10.1007/s001820050091 +Srihari Govindan,Symmetry and p-Stability.,2004,32,Int. J. Game Theory,3,db/journals/ijgt/ijgt32.html#GovindanSS04,https://doi.org/10.1007/s001820400167 +Patrick Hummel,Reserve prices in repeated auctions.,2018,47,Int. J. Game Theory,1,db/journals/ijgt/ijgt47.html#Hummel18,https://doi.org/10.1007/s00182-017-0587-5 +Marina Núñez,The Böhm-Bawerk horse market: a cooperative analysis.,2005,33,Int. J. Game Theory,3,db/journals/ijgt/ijgt33.html#NunezR05,https://doi.org/10.1007/s00182-005-0199-3 +Laurent Lamy,Core-selecting package auctions: a comment on revenue-monotonicity.,2010,39,Int. J. Game Theory,3,db/journals/ijgt/ijgt39.html#Lamy10,https://doi.org/10.1007/s00182-009-0188-z +Michel Grabisch,An axiomatic approach to the concept of interaction among players in cooperative games.,1999,28,Int. J. Game Theory,4,db/journals/ijgt/ijgt28.html#GrabischR99,https://doi.org/10.1007/s001820050125 +Maria Vittoria Levati,"Imperfect recall and time inconsistencies: an experimental test of the absentminded driver ""paradox"".",2014,43,Int. J. Game Theory,1,db/journals/ijgt/ijgt43.html#LevatiUZ14,https://doi.org/10.1007/s00182-013-0373-y +Abhimanyu Khan,Cognitive hierarchies in adaptive play.,2014,43,Int. J. Game Theory,4,db/journals/ijgt/ijgt43.html#KhanP14,https://doi.org/10.1007/s00182-014-0410-5 +Koji Yokote,Weighted values and the core in NTU games.,2017,46,Int. J. Game Theory,3,db/journals/ijgt/ijgt46.html#Yokote17,https://doi.org/10.1007/s00182-016-0550-x +Josep M. Izquierdo,A characterization of convex TU games by means of the Mas-Colell bargaining set (à la Shimomura).,2012,41,Int. J. Game Theory,2,db/journals/ijgt/ijgt41.html#IzquierdoR12,https://doi.org/10.1007/s00182-011-0291-9 +César Martinelli,Rational ignorance and voting behavior.,2007,35,Int. J. Game Theory,3,db/journals/ijgt/ijgt35.html#Martinelli07,https://doi.org/10.1007/s00182-006-0051-4 +Manuel Abellanas,Weak equilibrium in a spatial model.,2011,40,Int. J. Game Theory,3,db/journals/ijgt/ijgt40.html#AbellanasLRL11,https://doi.org/10.1007/s00182-010-0241-y +Nikolai S. Kukushkin,The single crossing conditions for incomplete preferences.,2015,44,Int. J. Game Theory,1,db/journals/ijgt/ijgt44.html#Kukushkin15,https://doi.org/10.1007/s00182-014-0427-9 +Yuichi Yamamoto,The use of public randomization in discounted repeated games.,2010,39,Int. J. Game Theory,3,db/journals/ijgt/ijgt39.html#Yamamoto10,https://doi.org/10.1007/s00182-009-0219-9 +Martin W. Cripps,Common learning with intertemporal dependence.,2013,42,Int. J. Game Theory,1,db/journals/ijgt/ijgt42.html#CrippsEMS13,https://doi.org/10.1007/s00182-011-0313-7 +Ming Li 0024,Information collection in bargaining.,2009,38,Int. J. Game Theory,4,db/journals/ijgt/ijgt38.html#Li09,https://doi.org/10.1007/s00182-009-0166-5 +Yakar Kannai,Paths leading to the Nash set for nonsmooth games.,1998,27,Int. J. Game Theory,3,db/journals/ijgt/ijgt27.html#KannaiT98,https://doi.org/10.1007/s001820050080 +Youngsub Chun,On the convergence of the random arrival rule in large claims problems.,2007,36,Int. J. Game Theory,2,db/journals/ijgt/ijgt36.html#ChunL07,https://doi.org/10.1007/s00182-007-0075-4 +John Hillas,On the finiteness of stable sets.,1997,26,Int. J. Game Theory,2,db/journals/ijgt/ijgt26.html#HillasVJ97,https://doi.org/10.1007/BF01295856 +Paul Dorbec,Ice sliding games.,2018,47,Int. J. Game Theory,2,db/journals/ijgt/ijgt47.html#DorbecDFMPS18,https://doi.org/10.1007/s00182-017-0607-5 +Srihari Govindan,Perfect equilibrium and lexicographic beliefs.,2003,31,Int. J. Game Theory,2,db/journals/ijgt/ijgt31.html#GovindanK03,https://doi.org/10.1007/s001820200113 +Steffen Huck,Stability of the Cournot process - experimental evidence.,2002,31,Int. J. Game Theory,1,db/journals/ijgt/ijgt31.html#HuckNO02,https://doi.org/10.1007/s001820200110 +Rainer Buckdahn,Value function of differential games without Isaacs conditions. An approach with nonanticipative mixed strategies.,2013,42,Int. J. Game Theory,4,db/journals/ijgt/ijgt42.html#BuckdahnLQ13,https://doi.org/10.1007/s00182-012-0351-9 +Burkhard C. Schipper,Awareness-dependent subjective expected utility.,2013,42,Int. J. Game Theory,3,db/journals/ijgt/ijgt42.html#Schipper13,https://doi.org/10.1007/s00182-012-0321-2 +Burkhard C. Schipper,Submodularity and the evolution of Walrasian behavior.,2004,32,Int. J. Game Theory,4,db/journals/ijgt/ijgt32.html#Schipper04,https://doi.org/10.1007/s001820400170 +Massimiliano Amarante,Cores of non-atomic market games.,2006,34,Int. J. Game Theory,3,db/journals/ijgt/ijgt34.html#AmaranteMMM06,https://doi.org/10.1007/s00182-006-0029-2 +Andrzej S. Nowak,An alternative characterization of the weighted Banzhaf value.,2000,29,Int. J. Game Theory,1,db/journals/ijgt/ijgt29.html#NowakR00,https://doi.org/10.1007/s001829900027 +Simon Mackenzie,Pillage games with multiple stable sets.,2015,44,Int. J. Game Theory,4,db/journals/ijgt/ijgt44.html#MackenzieKR15,https://doi.org/10.1007/s00182-015-0462-1 +Manfred Kerber,A Ramsey bound on stable sets in Jordan pillage games.,2011,40,Int. J. Game Theory,3,db/journals/ijgt/ijgt40.html#KerberR11,https://doi.org/10.1007/s00182-010-0247-5 +Aviad Heifetz,All in good time.,2007,35,Int. J. Game Theory,4,db/journals/ijgt/ijgt35.html#HeifetzP07,https://doi.org/10.1007/s00182-006-0065-y +Tatiana Gvozdeva,"Three hierarchies of simple games parameterized by ""resource"" parameters.",2013,42,Int. J. Game Theory,1,db/journals/ijgt/ijgt42.html#GvozdevaHS13,https://doi.org/10.1007/s00182-011-0308-4 +Guillaume Haeringer,Decentralized job matching.,2011,40,Int. J. Game Theory,1,db/journals/ijgt/ijgt40.html#HaeringerW11,https://doi.org/10.1007/s00182-009-0218-x +Olivier Gossner,Repeated communication through the mechanism and.,2001,30,Int. J. Game Theory,1,db/journals/ijgt/ijgt30.html#GossnerV01,https://doi.org/10.1007/s001820100063 +Pascal Billand,Strict Nash networks and partner heterogeneity.,2011,40,Int. J. Game Theory,3,db/journals/ijgt/ijgt40.html#BillandBS11,https://doi.org/10.1007/s00182-010-0252-8 +Ayse Canan Yazici,Probabilistic stable rules and Nash equilibrium in two-sided matching problems.,2017,46,Int. J. Game Theory,1,db/journals/ijgt/ijgt46.html#Yazici17,https://doi.org/10.1007/s00182-015-0525-3 +Sylvain Sorin,Preface.,2003,32,Int. J. Game Theory,1,db/journals/ijgt/ijgt32.html#Sorin03,https://doi.org/10.1007/s001820300157 +Ilan Adler,The equivalence of linear programs and zero-sum games.,2013,42,Int. J. Game Theory,1,db/journals/ijgt/ijgt42.html#Adler13,https://doi.org/10.1007/s00182-012-0328-8 +Volker Hahn,On the drawbacks of large committees.,2017,46,Int. J. Game Theory,2,db/journals/ijgt/ijgt46.html#Hahn17,https://doi.org/10.1007/s00182-016-0546-6 +Zhe Yang,Essential stability of \(\alpha \) -core.,2017,46,Int. J. Game Theory,1,db/journals/ijgt/ijgt46.html#Yang17,https://doi.org/10.1007/s00182-015-0515-5 +Flip Klijn,Characterizations of a multi-choice value.,1999,28,Int. J. Game Theory,4,db/journals/ijgt/ijgt28.html#KlijnSZ99,https://doi.org/10.1007/s001820050123 +Jingang Zhao,A cooperative analysis of covert collusion in oligopolistic industries.,1997,26,Int. J. Game Theory,2,db/journals/ijgt/ijgt26.html#Zhao97,https://doi.org/10.1007/BF01295854 +Ziv Hellman,Almost common priors.,2013,42,Int. J. Game Theory,2,db/journals/ijgt/ijgt42.html#Hellman13,https://doi.org/10.1007/s00182-012-0347-5 +Klaus Kultti,Multilateral non-cooperative bargaining in a general utility space.,2010,39,Int. J. Game Theory,4,db/journals/ijgt/ijgt39.html#KulttiV10,https://doi.org/10.1007/s00182-009-0212-3 +Dan Kovenock,All-pay 2*2 Hex: a multibattle contest with complementarities.,2015,44,Int. J. Game Theory,3,db/journals/ijgt/ijgt44.html#KovenockSW15,https://doi.org/10.1007/s00182-014-0445-7 +David Blackwell,The prediction of sequences.,2003,31,Int. J. Game Theory,2,db/journals/ijgt/ijgt31.html#Blackwell03,https://doi.org/10.1007/s001820200114 +Julio González-Díaz,Matching and price competition: beyond symmetric linear costs.,2013,42,Int. J. Game Theory,4,db/journals/ijgt/ijgt42.html#Gonzalez-DiazS13,https://doi.org/10.1007/s00182-012-0325-y +Leandro Chaves Rêgo,Generalized solution concepts in games with possibly unaware players.,2012,41,Int. J. Game Theory,1,db/journals/ijgt/ijgt41.html#RegoH12,https://doi.org/10.1007/s00182-011-0276-8 +Mathias Staudigl,Co-evolutionary dynamics and Bayesian interaction games.,2013,42,Int. J. Game Theory,1,db/journals/ijgt/ijgt42.html#Staudigl13,https://doi.org/10.1007/s00182-012-0331-0 +Federico Quartieri,Coalition-proofness in a class of games with strategic substitutes.,2015,44,Int. J. Game Theory,4,db/journals/ijgt/ijgt44.html#QuartieriS15,https://doi.org/10.1007/s00182-014-0452-8 +Piernicola Bettiol,Zero-sum state constrained differential games: existence of value for Bolza problem.,2006,34,Int. J. Game Theory,4,db/journals/ijgt/ijgt34.html#BettiolCQ06,https://doi.org/10.1007/s00182-006-0030-9 +Annick Laruelle,Power indices and the veil of ignorance.,2003,31,Int. J. Game Theory,3,db/journals/ijgt/ijgt31.html#LaruelleV03,https://doi.org/10.1007/s001820200121 +Marcin Dziubinski,Location game on disjoint line segments.,2011,40,Int. J. Game Theory,2,db/journals/ijgt/ijgt40.html#Dziubinski11,https://doi.org/10.1007/s00182-010-0236-8 +Ori Haimanko,Marginal cost price rule for homogeneous cost functions.,2002,31,Int. J. Game Theory,1,db/journals/ijgt/ijgt31.html#Haimanko02,https://doi.org/10.1007/s001820200104 +Joss Sánchez-Pérez,A decomposition for the space of games with externalities.,2017,46,Int. J. Game Theory,1,db/journals/ijgt/ijgt46.html#Sanchez-Perez17,https://doi.org/10.1007/s00182-016-0530-1 +Hong Hu,An epistemic analysis of the Harsanyi transformation.,2002,30,Int. J. Game Theory,4,db/journals/ijgt/ijgt30.html#HuS02,https://doi.org/10.1007/s001820200095 +Flavio M. Menezes,Coasian dynamics in repeated English auctions.,2009,38,Int. J. Game Theory,3,db/journals/ijgt/ijgt38.html#MenezesR09,https://doi.org/10.1007/s00182-009-0164-7 +Bret J. Benesh,A q-player impartial avoidance game for generating finite groups.,2018,47,Int. J. Game Theory,2,db/journals/ijgt/ijgt47.html#BeneshG18,https://doi.org/10.1007/s00182-018-0624-z +Noritsugu Nakanishi,On the existence and efficiency of the von Neumann-Morgenstern stable set in a n-player prisoners' dilemma.,2001,30,Int. J. Game Theory,2,db/journals/ijgt/ijgt30.html#Nakanishi01,https://doi.org/10.1007/s001820100081 +Giacomo Bonanno,AGM-consistency and perfect Bayesian equilibrium. Part I: definition and properties.,2013,42,Int. J. Game Theory,3,db/journals/ijgt/ijgt42.html#Bonanno13,https://doi.org/10.1007/s00182-011-0296-4 +Michele Lombardi 0002,Uncovered bargaining solutions.,2009,38,Int. J. Game Theory,4,db/journals/ijgt/ijgt38.html#LombardiM09,https://doi.org/10.1007/s00182-009-0172-7 +Valeska Groenert,Trimmed equilibrium.,2013,42,Int. J. Game Theory,1,db/journals/ijgt/ijgt42.html#Groenert13,https://doi.org/10.1007/s00182-011-0317-3 +Robert J. Aumann,Interactive epistemology II: Probability.,1999,28,Int. J. Game Theory,3,db/journals/ijgt/ijgt28.html#Aumann99a,https://doi.org/10.1007/s001820050112 +Andrzej S. Nowak,On an axiomatization of the banzhaf value without the additivity axiom.,1997,26,Int. J. Game Theory,1,db/journals/ijgt/ijgt26.html#Nowak97,https://doi.org/10.1007/BF01262517 +János Flesch,Non-existence of subgame-perfect \(\varepsilon \) -equilibrium in perfect information games with infinite horizon.,2014,43,Int. J. Game Theory,4,db/journals/ijgt/ijgt43.html#FleschKMSSSV14,https://doi.org/10.1007/s00182-014-0412-3 +René van den Brink,Axiomatizations of Banzhaf permission values for games with a permission structure.,2010,39,Int. J. Game Theory,3,db/journals/ijgt/ijgt39.html#Brink10,https://doi.org/10.1007/s00182-009-0221-2 +Yevgenia Apartsin,The core and the bargaining set in glove-market games.,2003,32,Int. J. Game Theory,2,db/journals/ijgt/ijgt32.html#ApartsinH03,https://doi.org/10.1007/s001820300145 +Mário R. Páscoa,Nash equilibrium and the law of large numbers.,1998,27,Int. J. Game Theory,1,db/journals/ijgt/ijgt27.html#Pascoa98,https://doi.org/10.1007/BF01243196 +Andrei Gomberg,Endogenous platforms: the case of many parties.,2007,35,Int. J. Game Theory,2,db/journals/ijgt/ijgt35.html#GombergMO07,https://doi.org/10.1007/s00182-006-0041-6 +Tim Hellmann,On the existence and uniqueness of pairwise stable networks.,2013,42,Int. J. Game Theory,1,db/journals/ijgt/ijgt42.html#Hellmann13,https://doi.org/10.1007/s00182-012-0335-9 +Paola Manzini,Stakeholder bargaining games.,2006,34,Int. J. Game Theory,1,db/journals/ijgt/ijgt34.html#ManziniP06,https://doi.org/10.1007/s00182-005-0006-1 +Patrick Hummel,Hybrid mechanisms for Vickrey-Clarke-Groves and generalized second-price bids.,2018,47,Int. J. Game Theory,1,db/journals/ijgt/ijgt47.html#Hummel18a,https://doi.org/10.1007/s00182-017-0591-9 +Francis Bloch,Definitions of equilibrium in network formation games.,2006,34,Int. J. Game Theory,3,db/journals/ijgt/ijgt34.html#BlochJ06,https://doi.org/10.1007/s00182-006-0022-9 +Bruno Bassan,Positive value of information in games.,2003,32,Int. J. Game Theory,1,db/journals/ijgt/ijgt32.html#BassanGSZ03,https://doi.org/10.1007/s001820300142 +Endre Boros,A polynomial algorithm for a two parameter extension of Wythoff NIM based on the Perron-Frobenius theory.,2013,42,Int. J. Game Theory,4,db/journals/ijgt/ijgt42.html#BorosGO13,https://doi.org/10.1007/s00182-012-0338-6 +Yan-An Hwang,On the core: complement-reduced game and max-reduced game.,2013,42,Int. J. Game Theory,2,db/journals/ijgt/ijgt42.html#Hwang13,https://doi.org/10.1007/s00182-013-0372-z +Carmelo Rodríguez-álvarez,Strategy-proof coalition formation.,2009,38,Int. J. Game Theory,3,db/journals/ijgt/ijgt38.html#Rodriguez-Alvarez09,https://doi.org/10.1007/s00182-009-0162-9 +éric Duchêne,Building Nim.,2016,45,Int. J. Game Theory,4,db/journals/ijgt/ijgt45.html#DucheneDHL16,https://doi.org/10.1007/s00182-015-0489-3 +Sergiu Hart,An axiomatization of the consistent non-transferable utility value.,2005,33,Int. J. Game Theory,3,db/journals/ijgt/ijgt33.html#Hart05,https://doi.org/10.1007/s00182-005-0204-x +Brit Grosskopf,Foregone with the Wind: Indirect Payoff Information and its Implications for Choice.,2006,34,Int. J. Game Theory,2,db/journals/ijgt/ijgt34.html#GrosskopfEY06,https://doi.org/10.1007/s00182-006-0015-8 +Daniel Granot,Spanning network games.,1998,27,Int. J. Game Theory,4,db/journals/ijgt/ijgt27.html#GranotM98,https://doi.org/10.1007/s001820050085 +Eric J. Friedman,Paths and consistency in additive cost sharing.,2004,32,Int. J. Game Theory,4,db/journals/ijgt/ijgt32.html#Friedman04,https://doi.org/10.1007/s001820400173 +Sascha Kurz,On Dedekind's problem for complete simple games.,2013,42,Int. J. Game Theory,2,db/journals/ijgt/ijgt42.html#KurzT13,https://doi.org/10.1007/s00182-012-0327-9 +Chih Chang,The Harsanyi-Shapley solution and independence of irrelevant expansions.,2003,32,Int. J. Game Theory,2,db/journals/ijgt/ijgt32.html#ChangH03,https://doi.org/10.1007/s001820300158 +Pierre Cardaliaguet,Existence and uniqueness of a Nash equilibrium feedback for a simple nonzero-sum differential game.,2003,32,Int. J. Game Theory,1,db/journals/ijgt/ijgt32.html#CardaliaguetP03,https://doi.org/10.1007/s001820300152 +Rabah Amir,Symmetric versus asymmetric equilibria in symmetric supermodular games.,2008,37,Int. J. Game Theory,3,db/journals/ijgt/ijgt37.html#AmirJK08,https://doi.org/10.1007/s00182-008-0118-5 +Antoni Calvó-Armengol,On bargaining partner selection when communication is restricted.,2002,30,Int. J. Game Theory,4,db/journals/ijgt/ijgt30.html#Calvo-Armengol02,https://doi.org/10.1007/s001820200094 +Edward Cartwright,Efficiency in a forced contribution threshold public good game.,2017,46,Int. J. Game Theory,4,db/journals/ijgt/ijgt46.html#CartwrightS17,https://doi.org/10.1007/s00182-017-0570-1 +Emilio Calvo,Replication invariance on NTU games.,2001,29,Int. J. Game Theory,4,db/journals/ijgt/ijgt29.html#CalvoGZ01,https://doi.org/10.1007/s001820000050 +Biung-Ghi Ju,Progressive and merging-proof taxation.,2011,40,Int. J. Game Theory,1,db/journals/ijgt/ijgt40.html#JuM11,https://doi.org/10.1007/s00182-010-0228-8 +Mitsunobu Miyake,On the incentive properties of multi-item auctions.,1998,27,Int. J. Game Theory,1,db/journals/ijgt/ijgt27.html#Miyake98,https://doi.org/10.1007/BF01243191 +YunTong Wang,Simple random order methods to share costs.,2003,32,Int. J. Game Theory,2,db/journals/ijgt/ijgt32.html#Wang03,https://doi.org/10.1007/s001820300160 +Bradley J. Ruffle,First-mover advantage in best-of series: an experimental comparison of role-assignment rules.,2016,45,Int. J. Game Theory,4,db/journals/ijgt/ijgt45.html#RuffleV16,https://doi.org/10.1007/s00182-015-0493-7 +Inbar Aricha,Information elicitation and sequential mechanisms.,2013,42,Int. J. Game Theory,4,db/journals/ijgt/ijgt42.html#ArichaS13,https://doi.org/10.1007/s00182-012-0346-6 +Klaus Kultti,Iterated dominance in quasisupermodular games with strict single crossing property.,1998,27,Int. J. Game Theory,2,db/journals/ijgt/ijgt27.html#KulttiS98,https://doi.org/10.1007/s001820050074 +Gustavo Bergantiños,The optimistic TU game in minimum cost spanning tree problems.,2007,36,Int. J. Game Theory,2,db/journals/ijgt/ijgt36.html#BergantinosV07,https://doi.org/10.1007/s00182-006-0069-7 +Leticia Lorenzo,A characterization of Kruskal sharing rules for minimum cost spanning tree problems.,2009,38,Int. J. Game Theory,1,db/journals/ijgt/ijgt38.html#LorenzoL09,https://doi.org/10.1007/s00182-008-0147-0 +Vladimir A. Karamychev,Optimal signaling with cheap talk and money burning.,2017,46,Int. J. Game Theory,3,db/journals/ijgt/ijgt46.html#KaramychevV17,https://doi.org/10.1007/s00182-016-0558-2 +Urban Larsson,Wythoff partizan subtraction.,2018,47,Int. J. Game Theory,2,db/journals/ijgt/ijgt47.html#LarssonMNS18,https://doi.org/10.1007/s00182-018-0613-2 +Philippe Bich,Existence of pure Nash equilibria in discontinuous and non quasiconcave games.,2009,38,Int. J. Game Theory,3,db/journals/ijgt/ijgt38.html#Philippe09,https://doi.org/10.1007/s00182-009-0160-y +Robert W. Rosenthal,Hide and seek in Arizona.,2003,32,Int. J. Game Theory,2,db/journals/ijgt/ijgt32.html#RosenthalSW03,https://doi.org/10.1007/s001820300159 +Moshe Dror,Dynamic realization games in newsvendor inventory centralization.,2008,37,Int. J. Game Theory,1,db/journals/ijgt/ijgt37.html#DrorGMP08,https://doi.org/10.1007/s00182-007-0102-5 +Clara Ponsati,Multiple-issue bargaining and axiomatic solutions.,1997,26,Int. J. Game Theory,4,db/journals/ijgt/ijgt26.html#PonsatiW97,https://doi.org/10.1007/BF01813888 +Gérard Hamiache,A mean value for games with communication structures.,2004,32,Int. J. Game Theory,4,db/journals/ijgt/ijgt32.html#Hamiache04,https://doi.org/10.1007/s001820400175 +Ilan Kremer,Flow auctions.,2017,46,Int. J. Game Theory,3,db/journals/ijgt/ijgt46.html#KremerWW17,https://doi.org/10.1007/s00182-016-0549-3 +Manabu Toda,Monotonicity and Consistency in Matching Markets.,2006,34,Int. J. Game Theory,1,db/journals/ijgt/ijgt34.html#Toda06,https://doi.org/10.1007/s00182-005-0002-5 +Jin Zhang,Farsighted free trade networks.,2013,42,Int. J. Game Theory,2,db/journals/ijgt/ijgt42.html#ZhangXZ13,https://doi.org/10.1007/s00182-013-0366-x +Francesc Llerena,Convex decomposition of games and axiomatizations of the core and the D-core.,2007,35,Int. J. Game Theory,4,db/journals/ijgt/ijgt35.html#LlerenaR07,https://doi.org/10.1007/s00182-006-0062-1 +Péter Biró,Analysis of stochastic matching markets.,2013,42,Int. J. Game Theory,4,db/journals/ijgt/ijgt42.html#BiroN13,https://doi.org/10.1007/s00182-012-0352-8 +Licun Xue,Bidding and sequential coalition formation with externalities.,2012,41,Int. J. Game Theory,1,db/journals/ijgt/ijgt41.html#XueZ12,https://doi.org/10.1007/s00182-011-0274-x +Josep Freixas,On ordinal equivalence of the Shapley and Banzhaf values for cooperative games.,2010,39,Int. J. Game Theory,4,db/journals/ijgt/ijgt39.html#Freixas10,https://doi.org/10.1007/s00182-009-0179-0 +Douglas D. Davis,Equilibrium cooperation in two-stage games: Experimental evidence.,1999,28,Int. J. Game Theory,1,db/journals/ijgt/ijgt28.html#DavisH99,https://doi.org/10.1007/s001820050100 +Alex Gershkov,When queueing is better than push and shove.,2010,39,Int. J. Game Theory,3,db/journals/ijgt/ijgt39.html#GershkovS10,https://doi.org/10.1007/s00182-009-0198-x +Luisa Carpente,The truncated core for games with upper bounds.,2010,39,Int. J. Game Theory,4,db/journals/ijgt/ijgt39.html#CarpenteCGN10,https://doi.org/10.1007/s00182-009-0205-2 +Soumendu Sarkar,Mechanism design for land acquisition.,2017,46,Int. J. Game Theory,3,db/journals/ijgt/ijgt46.html#Sarkar17,https://doi.org/10.1007/s00182-016-0556-4 +Koji Takamiya,Coalitional unanimity versus strategy-proofness in coalition formation problems.,2013,42,Int. J. Game Theory,1,db/journals/ijgt/ijgt42.html#Takamiya13,https://doi.org/10.1007/s00182-012-0318-x +Josep M. Izquierdo,The core and the steady bargaining set for convex games.,2018,47,Int. J. Game Theory,1,db/journals/ijgt/ijgt47.html#IzquierdoR18,https://doi.org/10.1007/s00182-017-0576-8 +Antonio J. Morales,Absolutely expedient imitative behavior.,2003,31,Int. J. Game Theory,4,db/journals/ijgt/ijgt31.html#Morales03,https://doi.org/10.1007/s001820300131 +Gagan Ghosh,Non-existence of equilibria in simultaneous auctions with a common budget-constraint.,2015,44,Int. J. Game Theory,2,db/journals/ijgt/ijgt44.html#Ghosh15,https://doi.org/10.1007/s00182-014-0428-8 +Alexander Zimper,A fixed point characterization of the dominance-solvability of lattice games with strategic substitutes.,2007,36,Int. J. Game Theory,1,db/journals/ijgt/ijgt36.html#Zimper07,https://doi.org/10.1007/s00182-007-0073-6 +Julio González-Díaz,A natural selection from the core of a TU game: the core-center.,2007,36,Int. J. Game Theory,1,db/journals/ijgt/ijgt36.html#Gonzalez-DiazS07,https://doi.org/10.1007/s00182-007-0074-5 +Siegfried K. Berninghaus,Satisficing search versus aspiration adaptation in sales competition: experimental evidence.,2011,40,Int. J. Game Theory,1,db/journals/ijgt/ijgt40.html#BerninghausGLQ11,https://doi.org/10.1007/s00182-010-0232-z +Tadashi Sekiguchi,Multimarket contact under demand fluctuations.,2015,44,Int. J. Game Theory,4,db/journals/ijgt/ijgt44.html#Sekiguchi15,https://doi.org/10.1007/s00182-015-0464-z +Ziv Hellman,Countable spaces and common priors.,2014,43,Int. J. Game Theory,1,db/journals/ijgt/ijgt43.html#Hellman14,https://doi.org/10.1007/s00182-013-0390-x +Jeroen Kuipers,Minimum cost forest games.,1997,26,Int. J. Game Theory,3,db/journals/ijgt/ijgt26.html#Kuipers97,https://doi.org/10.1007/BF01263278 +Lars Ehlers,Resource-monotonicity for house allocation problems.,2004,32,Int. J. Game Theory,4,db/journals/ijgt/ijgt32.html#EhlersK04,https://doi.org/10.1007/s001820400177 +Ori Haimanko,Value theory without symmetry.,2000,29,Int. J. Game Theory,3,db/journals/ijgt/ijgt29.html#Haimanko00,https://doi.org/10.1007/s001820000052 +Hans-Theo Normann,The impact of the termination rule on cooperation in a prisoner's dilemma experiment.,2012,41,Int. J. Game Theory,3,db/journals/ijgt/ijgt41.html#NormannW12,https://doi.org/10.1007/s00182-012-0341-y +Rodica Branzei,Strongly essential coalitions and the nucleolus of peer group games.,2005,33,Int. J. Game Theory,3,db/journals/ijgt/ijgt33.html#BranzeiST05,https://doi.org/10.1007/s00182-005-0213-9 +Karl Jandoc,Self-enforcing coalitions with power accumulation.,2017,46,Int. J. Game Theory,2,db/journals/ijgt/ijgt46.html#JandocJ17,https://doi.org/10.1007/s00182-016-0538-6 +Piercesare Secchi,On the existence of good stationary strategies for nonleavable stochastic games.,1998,27,Int. J. Game Theory,1,db/journals/ijgt/ijgt27.html#Secchi98,https://doi.org/10.1007/BF01243195 +Seok-ju Cho,A folk theorem for the one-dimensional spatial bargaining model.,2015,44,Int. J. Game Theory,4,db/journals/ijgt/ijgt44.html#ChoD15,https://doi.org/10.1007/s00182-014-0460-8 +Esteban F. Klor,The welfare effects of public opinion polls.,2007,35,Int. J. Game Theory,3,db/journals/ijgt/ijgt35.html#KlorW07,https://doi.org/10.1007/s00182-006-0050-5 +Tamás Solymosi,The bargaining set of four-person balanced games.,2002,31,Int. J. Game Theory,1,db/journals/ijgt/ijgt31.html#Solymosi02,https://doi.org/10.1007/s001820200102 +Shota Fujishima,The emergence of cooperation through leadership.,2015,44,Int. J. Game Theory,1,db/journals/ijgt/ijgt44.html#Fujishima15,https://doi.org/10.1007/s00182-014-0417-y +Olivier Tercieux,A characterization of stochastically stable networks.,2006,34,Int. J. Game Theory,3,db/journals/ijgt/ijgt34.html#TercieuxV06,https://doi.org/10.1007/s00182-006-0024-7 +Joseph Y. Halpern,Hypothetical knowledge and counterfactual reasoning.,1999,28,Int. J. Game Theory,3,db/journals/ijgt/ijgt28.html#Halpern99,https://doi.org/10.1007/s001820050113 +Elena Yanovskaya,Consistent and covariant solutions for TU games.,2004,32,Int. J. Game Theory,4,db/journals/ijgt/ijgt32.html#Yanovskaya04,https://doi.org/10.1007/s001820400172 +Jerry R. Green,Compensatory transfers in two-player decision problems.,2005,33,Int. J. Game Theory,2,db/journals/ijgt/ijgt33.html#Green05,https://doi.org/10.1007/s00182-005-0200-1 +Francesc Llerena,An axiomatization of the nucleolus of assignment markets.,2015,44,Int. J. Game Theory,1,db/journals/ijgt/ijgt44.html#LlerenaNR15,https://doi.org/10.1007/s00182-014-0416-z +Juan Carlos Cesco,Fundamental cycles of pre-imputations in non-balanced TU-games.,2003,32,Int. J. Game Theory,2,db/journals/ijgt/ijgt32.html#Cesco03,https://doi.org/10.1007/s001820300149 +Jiangchuan Liu,Peer-to-peer as an infrastructure service.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#LiuXXMS14,https://doi.org/10.1007/s12083-014-0252-8 +Bijan Raahemi,Exploiting unlabeled data to improve peer-to-peer traffic classification using incremental tri-training method.,2009,2,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna2.html#RaahemiZL09,https://doi.org/10.1007/s12083-008-0022-6 +Yingwu Zhu,An efficient and scalable framework for content-based publish/subscribe systems.,2008,1,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna1.html#ZhuS08,https://doi.org/10.1007/s12083-007-0001-3 +Jungpil Shin,Writer identification using intra-stroke and inter-stroke information for security enhancements in P2P systems.,2018,11,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna11.html#ShinLKM18,https://doi.org/10.1007/s12083-017-0606-0 +Qiang Li,Analysis of user's behavior and resource characteristics for private trackers.,2015,8,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna8.html#LiQGZ15,https://doi.org/10.1007/s12083-014-0266-2 +Dheerendra Mishra,A secure and efficient ECC-based user anonymity-preserving session initiation authentication protocol using smart card.,2016,9,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna9.html#MishraDM16,https://doi.org/10.1007/s12083-014-0321-z +Shuhua Wu,Practical authentication scheme for SIP.,2013,6,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna6.html#WuPK13,https://doi.org/10.1007/s12083-012-0129-7 +Tallat M. Shafaat,Dealing with network partitions in structured overlay networks.,2009,2,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna2.html#ShafaatGH09,https://doi.org/10.1007/s12083-009-0037-7 +Yipin Sun,Mix-zones optimal deployment for protecting location privacy in VANET.,2015,8,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna8.html#SunZZSS15,https://doi.org/10.1007/s12083-014-0269-z +Haider Abbas,Guest editorial: Secure cloud computing for mobile health services.,2016,9,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna9.html#AbbasUMC16,https://doi.org/10.1007/s12083-016-0451-6 +Zied Trifa,A novel replication technique to attenuate churn effects.,2016,9,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna9.html#TrifaK16,https://doi.org/10.1007/s12083-015-0340-4 +Laura Ricci,Large scale distributed cooperative environments on clouds and P2P.,2016,9,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna9.html#RicciIP16,https://doi.org/10.1007/s12083-016-0447-2 +Saru Kumari,An improved smart card based authentication scheme for session initiation protocol.,2017,10,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna10.html#KumariCWLFK17,https://doi.org/10.1007/s12083-015-0409-0 +Francisco Henrique,Characterizing peers communities and dynamics in a P2P live streaming system.,2016,9,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna9.html#HenriqueSV16,https://doi.org/10.1007/s12083-014-0307-x +Zhipu Xie,An evolvable and transparent data as a service framework for multisource data integration and fusion.,2018,11,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna11.html#XieLQDH18,https://doi.org/10.1007/s12083-017-0555-7 +Ilias Chatzidrossos,Delay and playout probability trade-off in mesh-based peer-to-peer streaming with delayed buffer map updates.,2010,3,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna3.html#ChatzidrossosDF10,https://doi.org/10.1007/s12083-009-0049-3 +H. M. N. Dilum Bandara,Collaborative applications over peer-to-peer systems-challenges and solutions.,2013,6,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna6.html#BandaraJ13,https://doi.org/10.1007/s12083-012-0157-3 +Hyun Yoo,Mining-based lifecare recommendation using peer-to-peer dataset and adaptive decision feedback.,2018,11,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna11.html#YooC18,https://doi.org/10.1007/s12083-017-0620-2 +Abdulkader Benchi,A P2P tuple space implementation for disconnected MANETs.,2015,8,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna8.html#BenchiLG15,https://doi.org/10.1007/s12083-013-0224-4 +Na Ruan,A novel broadcast authentication protocol for internet of vehicles.,2017,10,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna10.html#RuanLL17,https://doi.org/10.1007/s12083-016-0493-9 +Zhiyuan Li,An adaptive secure communication framework for mobile peer-to-peer environments using Bayesian games.,2016,9,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna9.html#LiLCB16,https://doi.org/10.1007/s12083-015-0376-5 +Yingfan L. Du,Connected sensor cover and related problems.,2017,10,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna10.html#DuW17,https://doi.org/10.1007/s12083-016-0442-7 +Hai-Jiang Xie,A lightweight identity authentication method by exploiting network covert channel.,2015,8,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna8.html#XieZ15,https://doi.org/10.1007/s12083-014-0287-x +Chengzhe Lai,SEIP: Secure and seamless IP communications for group-oriented machine to machine communications.,2018,11,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna11.html#LaiGLZ18,https://doi.org/10.1007/s12083-017-0568-2 +Chong Lou,Energy-efficient routing over coordinated sleep scheduling in wireless ad hoc networks.,2016,9,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna9.html#LouZ16,https://doi.org/10.1007/s12083-015-0345-z +Kwantae Cho,Low-priced and efficient replica detection framework for wireless sensor networks.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#ChoL14,https://doi.org/10.1007/s12083-012-0180-4 +Kalliopi Tzantzara,Gender differences in digital music distribution methods.,2010,3,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna3.html#TzantzaraE10,https://doi.org/10.1007/s12083-009-0056-4 +S.-H. Gary Chan,Guest Editorial: Special Issue on P2P Cloud Systems.,2015,8,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna8.html#ChanWCW15,https://doi.org/10.1007/s12083-014-0296-9 +Omid Mir,Efficient anonymous authentication with key agreement protocol for wireless medical sensor networks.,2017,10,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna10.html#MirMK17,https://doi.org/10.1007/s12083-015-0408-1 +Stefano Ferretti,Self-healing protocols for connectivity maintenance in unstructured overlays.,2016,9,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna9.html#Ferretti16,https://doi.org/10.1007/s12083-015-0384-5 +,Editor's note: Special Issue on Mobile Ad-hoc and Sensor Networks.,2017,10,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna10.html#X17,https://doi.org/10.1007/s12083-017-0600-6 +Shijie Sun,Device-to-device resource allocation in LTE-advanced networks by hybrid particle swarm optimization and genetic algorithm.,2016,9,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna9.html#SunKSS16,https://doi.org/10.1007/s12083-015-0424-1 +Kamalika Das,Multi-objective optimization based privacy preserving distributed data mining in Peer-to-Peer networks.,2011,4,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna4.html#DasBK11,https://doi.org/10.1007/s12083-010-0075-1 +Bojan Marinkovic,Analyzing the exhaustiveness of the Synapse protocol.,2015,8,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna8.html#MarinkovicCOGLM15,https://doi.org/10.1007/s12083-014-0293-z +Majed Alhaisoni,Characterization of signaling and traffic in Joost.,2009,2,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna2.html#AlhaisoniL09,https://doi.org/10.1007/s12083-008-0015-5 +Sujoy Basu,NodeWiz: Fault-tolerant grid information service.,2009,2,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna2.html#BasuCBBSL09,https://doi.org/10.1007/s12083-009-0030-1 +Tim Jacobs,Stochastic analysis of a churn-tolerant structured peer-to-peer scheme.,2013,6,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna6.html#JacobsP13,https://doi.org/10.1007/s12083-012-0124-z +B. Firdaus Begam,Optimized peer to peer QSPR prediction of enthalpy of formation using outlier detection and subset selection.,2018,11,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna11.html#BegamKC18,https://doi.org/10.1007/s12083-018-0650-4 +Hamideh Babaei,The impact of mobility models on the performance of P2P content discovery protocols over mobile ad hoc networks.,2014,7,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna7.html#BabaeiFBR14,https://doi.org/10.1007/s12083-012-0184-0 +Ye Liu,Cross-layer cooperative multichannel medium access for internet of things.,2018,11,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna11.html#LiuFLYW18,https://doi.org/10.1007/s12083-017-0548-6 +Joon-Sang Park,Securing one-way hash chain based incentive mechanism for vehicular ad hoc networks.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#ParkB14,https://doi.org/10.1007/s12083-012-0178-y +Eunhye Kim,A novel fairness-aware parallel download scheme.,2016,9,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna9.html#KimKPK16,https://doi.org/10.1007/s12083-014-0310-2 +Dan Zhao 0002,LSC2: An extended link state protocol with centralized control.,2015,8,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna8.html#ZhaoWHL15,https://doi.org/10.1007/s12083-013-0226-2 +Arezou Soltani Panah,A dynamic coalition formation game for search efficient adaptive overlay construction in unstructured peer-to-peer networks.,2014,7,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna7.html#PanahK14,https://doi.org/10.1007/s12083-012-0185-z +Odysseas Papapetrou,Efficient model sharing for scalable collaborative classification.,2015,8,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna8.html#PapapetrouSS15,https://doi.org/10.1007/s12083-014-0259-1 +Zhu Ren,Energy management for event capture in rechargeable sensor network with limited capacitor size.,2015,8,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna8.html#RenC15,https://doi.org/10.1007/s12083-013-0238-y +Seok-Jae Moon,Information retrieval system using the keyword concept net of the P2P service-based in the mobile cloud environment.,2015,8,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna8.html#MoonY15,https://doi.org/10.1007/s12083-014-0265-3 +Weidong Liu 0001,Enhancing tit-for-tat for incentive in BitTorrent networks.,2010,3,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna3.html#LiuPLCS10,https://doi.org/10.1007/s12083-009-0043-9 +YunJae Jang,Development and application of internet of things educational tool based on peer to peer network.,2018,11,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna11.html#JangKL18,https://doi.org/10.1007/s12083-017-0608-y +Kapsu Kim,Estimating unreliable objects and system reliability in P2P networks.,2015,8,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna8.html#KimHCO15,https://doi.org/10.1007/s12083-014-0257-3 +Manaf Zghaibeh,Revisiting free riding and the Tit-for-Tat in BitTorrent: A measurement study.,2008,1,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna1.html#ZghaibehH08,https://doi.org/10.1007/s12083-008-0013-7 +Zejun Xu,Delivering mobile social content with selective agent and relay nodes in content centric networks.,2017,10,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna10.html#XuSXQYLFH17,https://doi.org/10.1007/s12083-016-0432-9 +Anfeng Liu,On mitigating hotspots to maximize network lifetime in multi-hop wireless sensor network with guaranteed transport delay and reliability.,2014,7,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna7.html#LiuZZCC14,https://doi.org/10.1007/s12083-012-0130-1 +Dario Rossi,ModelNet-TE: An emulation tool for the study of P2P and traffic engineering interaction dynamics.,2013,6,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna6.html#RossiVSL13,https://doi.org/10.1007/s12083-012-0134-x +Neeraj Kumar 0001,Distributed context aware collaborative filtering approach for P2P service selection and recovery in wireless mesh networks.,2012,5,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna5.html#KumarCL12,https://doi.org/10.1007/s12083-012-0156-4 +Jingyu Wang,On the collaborations of multiple selfish overlays using multi-path resources.,2015,8,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna8.html#WangLLW15,https://doi.org/10.1007/s12083-013-0245-z +Marcus Autenrieth,PaderMAC: Energy-efficient machine to machine communication for cyber-physical systems.,2014,7,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna7.html#AutenriethF14,https://doi.org/10.1007/s12083-013-0241-3 +Dan Huang,Pre-allocation based flash crowd mitigation algorithm for large-scale content delivery system.,2015,8,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna8.html#HuangZZCH15,https://doi.org/10.1007/s12083-014-0272-4 +Deger Cenk Erdil,Simulating peer-to-peer cloud resource scheduling.,2012,5,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna5.html#Erdil12,https://doi.org/10.1007/s12083-011-0112-8 +Hyun-Jong Cha,A node management scheme for stable P2P service in mobile ad-hoc networks.,2016,9,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna9.html#ChaYK16,https://doi.org/10.1007/s12083-015-0392-5 +Aditya Ganjam,On-demand waypoints for live P2P video broadcasting.,2010,3,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna3.html#GanjamRSZZ10,https://doi.org/10.1007/s12083-009-0059-1 +Konstantinos Deltouzos,Liquidstream II - Scalable P2P overlay optimization with adaptive minimal server assistance for stable and efficient video on demand.,2015,8,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna8.html#DeltouzosGED15,https://doi.org/10.1007/s12083-013-0230-6 +Zhihong Rao,Tor anonymous traffic identification based on gravitational clustering.,2018,11,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna11.html#RaoNZL18,https://doi.org/10.1007/s12083-017-0566-4 +Michele Amoretti,An autonomic approach for P2P/cloud collaborative environments.,2016,9,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna9.html#AmorettiGZ16,https://doi.org/10.1007/s12083-015-0367-6 +Nahid Amirazodi,An adaptive algorithm for super-peer selection considering peer's capacity in mobile peer-to-peer networks based on learning automata.,2018,11,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna11.html#AmirazodiSM18,https://doi.org/10.1007/s12083-016-0503-y +Mohammad Shojafar,An efficient and distributed file search in unstructured peer-to-peer networks.,2015,8,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna8.html#ShojafarADAPA15,https://doi.org/10.1007/s12083-013-0236-0 +Qiyi Han,A topological potential weighted community-based recommendation trust model for P2P networks.,2015,8,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna8.html#HanWRWL15,https://doi.org/10.1007/s12083-014-0288-9 +Zhenfei Wang,Energy balancing RPL protocol with multipath for wireless sensor networks.,2018,11,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna11.html#WangZZW18,https://doi.org/10.1007/s12083-017-0585-1 +Soobok Shin,An effective authentication mechanism for ubiquitous collaboration in heterogeneous computing environment.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#ShinSYK14,https://doi.org/10.1007/s12083-013-0220-8 +Amr Alasaad,Modelling and performance analysis of content sharing and distribution in community networks with infrastructure support.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#AlasaadGL14,https://doi.org/10.1007/s12083-012-0167-1 +Xiaoxia Liu,Efficient privacy-preserving online medical primary diagnosis scheme on naive bayesian classification.,2018,11,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna11.html#LiuZLL18,https://doi.org/10.1007/s12083-016-0506-8 +Andong Liu,Nash-optimization distributed model predictive control for multi mobile robots formation.,2017,10,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna10.html#LiuZZT17,https://doi.org/10.1007/s12083-016-0479-7 +Qing-Chao Cai,A multi-faced measurement study on a large private BitTorrent community.,2015,8,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna8.html#CaiL15,https://doi.org/10.1007/s12083-013-0207-5 +Praveen Lalwani,CRWO: Clustering and routing in wireless sensor networks using optics inspired optimization.,2017,10,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna10.html#LalwaniBK17,https://doi.org/10.1007/s12083-016-0531-7 +Zhen Hong,A tree-based topology construction algorithm with probability distribution and competition in the same layer for wireless sensor network.,2017,10,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna10.html#HongWLW17,https://doi.org/10.1007/s12083-016-0514-8 +Min Song 0002,Special issue on information dissemination and new services in P2P systems.,2011,4,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna4.html#SongSJP11,https://doi.org/10.1007/s12083-010-0095-x +Sachula Meng,Joint optimization of wireless bandwidth and computing resource in cloudlet-based mobile cloud computing environment.,2018,11,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna11.html#MengWMS18,https://doi.org/10.1007/s12083-017-0544-x +Haibin Zhang,Fault diagnosis of body sensor networks using hidden Markov model.,2017,10,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna10.html#ZhangLLL17,https://doi.org/10.1007/s12083-016-0464-1 +XinDi Ma,AGENT: an adaptive geo-indistinguishable mechanism for continuous location-based service.,2018,11,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna11.html#MaMLJG18,https://doi.org/10.1007/s12083-017-0545-9 +Artur Olszak,HyCube: A distributed hash table based on a variable metric.,2017,10,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna10.html#Olszak17,https://doi.org/10.1007/s12083-016-0455-2 +Nima Sarshar,SUPNET: An end-to-end solution to scalable unstructured P2P networking.,2008,1,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna1.html#SarsharR08,https://doi.org/10.1007/s12083-008-0010-x +Jian Zhao,Locality-aware streaming in hybrid P2P-cloud CDN systems.,2015,8,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna8.html#ZhaoWL15,https://doi.org/10.1007/s12083-013-0233-3 +Mohammad Sabzinejad Farash,Security analysis and enhancements of an improved authentication for session initiation protocol with provable security.,2016,9,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna9.html#Farash16,https://doi.org/10.1007/s12083-014-0315-x +Dhafer Ben Arbia,ORACE-Net: A novel multi-hop body-to-body routing protocol for public safety networks.,2017,10,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna10.html#ArbiaAAH17,https://doi.org/10.1007/s12083-016-0513-9 +Ming Rong,GMaker: A video recommendation module for peer-assisted VoD.,2014,7,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna7.html#RongXZW14,https://doi.org/10.1007/s12083-012-0176-0 +Yingguang Li,Exploiting community feedback for information retrieval in DHT networks.,2011,4,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna4.html#LiST11,https://doi.org/10.1007/s12083-010-0068-0 +Mischa Schmidt,Experiences with large-scale operational trials of ALTO-enhanced P2P filesharing in an intra-ISP scenario.,2013,6,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna6.html#SchmidtSNGCEJKPG13,https://doi.org/10.1007/s12083-012-0133-y +Zhixin Liu,Chance-constraint optimization of power control in cognitive radio networks.,2016,9,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna9.html#LiuWXYG16,https://doi.org/10.1007/s12083-014-0325-8 +Zhongnan Zhang,Events detection and community partition based on probabilistic snapshot for evolutionary social network.,2017,10,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna10.html#ZhangHQG17,https://doi.org/10.1007/s12083-016-0427-6 +Leila Mechtri,An optimized intrusion response system for MANET: - An attack-severity aware approach.,2018,11,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna11.html#MechtriTG18,https://doi.org/10.1007/s12083-017-0573-5 +Hwan-Seok Yang,A study on hybrid trust evaluation model for identifying malicious behavior in mobile P2P.,2016,9,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna9.html#YangS16,https://doi.org/10.1007/s12083-015-0411-6 +Cheriet Mohammed El Amine,The implementation of indoor localization based on an experimental study of RSSI using a wireless sensor network.,2016,9,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna9.html#AmineMB16,https://doi.org/10.1007/s12083-015-0372-9 +Jin Li,On peer-to-peer (P2P) content delivery.,2008,1,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna1.html#Li08,https://doi.org/10.1007/s12083-007-0003-1 +Tao Wang,Adaptive Flow Rate Control for Network Utility Maximization Subject to QoS Constraints in Wireless Multi-hop Networks.,2018,11,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna11.html#WangYZLH18,https://doi.org/10.1007/s12083-017-0594-0 +Ren-Junn Hwang,The optimal split method of large integer multiplication for smart low-end devices on P2P ubiquitous networks.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#HwangH14,https://doi.org/10.1007/s12083-012-0189-8 +Barbara Guidi,DiDuSoNet: A P2P architecture for distributed Dunbar-based social networks.,2016,9,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna9.html#GuidiASGR16,https://doi.org/10.1007/s12083-015-0366-7 +Md. Sazzadur Rahman,iDispatcher: A unified platform for secure planet-scale information dissemination.,2013,6,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna6.html#RahmanYMFEF13,https://doi.org/10.1007/s12083-012-0128-8 +Qi Jiang 0001,An efficient two-factor user authentication scheme with unlinkability for wireless sensor networks.,2015,8,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna8.html#JiangMLT15,https://doi.org/10.1007/s12083-014-0285-z +Hua Li,Relay selection for peer-to-peer cooperative OFDMA with channel distribution uncertainty.,2015,8,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna8.html#LiHCGH15,https://doi.org/10.1007/s12083-014-0300-4 +Xianfu Meng,A free rider aware topological construction strategy for search in unstructured P2P networks.,2016,9,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna9.html#MengJ16,https://doi.org/10.1007/s12083-014-0318-7 +Surendar Chandra,Implications of the file names and user requested queries on Gnutella performance.,2012,5,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna5.html#ChandraA12,https://doi.org/10.1007/s12083-011-0104-8 +Nitin Sharma 0007,Social fairness and channel loading effects in peer-to-peer connected networks.,2018,11,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna11.html#SharmaD18,https://doi.org/10.1007/s12083-017-0543-y +Sina Keshvadi,Recommend top-k most downloaded files in the chord-based P2P file-sharing system.,2017,10,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna10.html#KeshvadiRR17,https://doi.org/10.1007/s12083-015-0420-5 +Abbas Bradai,An efficient playout smoothing mechanism for layered streaming in P2P networks.,2014,7,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna7.html#BradaiALA14,https://doi.org/10.1007/s12083-012-0170-6 +Sun-Moon Jo,Convergence P2P context awareness.,2016,9,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna9.html#JoKH16,https://doi.org/10.1007/s12083-015-0419-y +Qiong Pu,Secure verifier-based three-party password-authenticated key exchange.,2013,6,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna6.html#PuWWF13,https://doi.org/10.1007/s12083-012-0125-y +Wei Huang,The performance and locality tradeoff in bittorrent-like file sharing systems.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#HuangWLL14,https://doi.org/10.1007/s12083-012-0190-2 +Ho-Kyung Yang,mVoIP for P2P service based authentication system using AA authentication server.,2016,9,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna9.html#YangCK16,https://doi.org/10.1007/s12083-015-0394-3 +Maozhen Li,Automatically wrapping legacy software into services: A grid case study.,2008,1,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna1.html#LiYQA08,https://doi.org/10.1007/s12083-008-0011-9 +Xin Cong,An efficient server bandwidth costs decreased mechanism towards mobile devices in cloud-assisted P2P-VoD system.,2014,7,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna7.html#CongSSY14,https://doi.org/10.1007/s12083-012-0193-z +Vijay Sahota,A grouped P2P network for scalable grid information services.,2009,2,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna2.html#SahotaLBA09,https://doi.org/10.1007/s12083-008-0016-4 +Fei Chen 0010,Distribution-aware cache replication for cooperative road side units in VANETs.,2018,11,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna11.html#ChenZZWCLL18,https://doi.org/10.1007/s12083-017-0582-4 +Yao-Ren Lee,Low-complexity time synchronization for energy-constrained wireless sensor networks: Dual-Clock delayed-message approach.,2017,10,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna10.html#LeeC17,https://doi.org/10.1007/s12083-016-0437-4 +Hoda Mashayekhi,L-overlay: A layered data management scheme for peer-to-peer computing.,2014,7,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna7.html#MashayekhiH14,https://doi.org/10.1007/s12083-013-0199-1 +Haomiao Yang,An efficient privacy-preserving authentication scheme with adaptive key evolution in remote health monitoring system.,2015,8,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna8.html#YangKM15,https://doi.org/10.1007/s12083-014-0299-6 +Sarunas Girdzijauskas,Fuzzynet: Ringless routing in a ring-like structured overlay.,2011,4,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna4.html#GirdzijauskasGDDA11,https://doi.org/10.1007/s12083-010-0081-3 +Antonio Delgado Peris,Evaluation of alternatives for the broadcast operation in Kademlia under churn.,2016,9,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna9.html#PerisHH16,https://doi.org/10.1007/s12083-015-0338-y +Yuanguo Bi,Neighboring vehicle-assisted fast handoff for vehicular fog communications.,2018,11,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna11.html#Bi18,https://doi.org/10.1007/s12083-017-0570-8 +Jian Wang 0028,A verifiable hierarchical circular shift cipher scheme for P2P chunk exchanges.,2015,8,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna8.html#WangHXY15,https://doi.org/10.1007/s12083-013-0225-3 +Sun-Moon Jo,Convergence P2P cloud computing.,2018,11,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna11.html#JoH18,https://doi.org/10.1007/s12083-018-0661-1 +Chithra Selvaraj,Peer profile based trust model for P2P systems using genetic algorithm.,2012,5,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna5.html#SelvarajA12,https://doi.org/10.1007/s12083-011-0111-9 +GuoZhong Li,Effects of social media usage on country image and purchase intention from social P2P network perspective.,2016,9,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna9.html#LiPP16,https://doi.org/10.1007/s12083-015-0379-2 +Jun Wu 0001,Securing distributed storage for Social Internet of Things using regenerating code and Blom key agreement.,2015,8,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna8.html#WuDOLZ15,https://doi.org/10.1007/s12083-014-0286-y +Danny Bickson,Peer-to-peer secure multi-party numerical computation facing malicious adversaries.,2010,3,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna3.html#BicksonRDP10,https://doi.org/10.1007/s12083-009-0051-9 +Yang Wang,Minimizing mobile sensor movements to form a line K-coverage.,2017,10,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna10.html#WangWGWC17,https://doi.org/10.1007/s12083-016-0469-9 +Xintao Hong,An adaptive resource allocation model in anti-money laundering system.,2017,10,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna10.html#HongLGL17,https://doi.org/10.1007/s12083-016-0430-y +Leila Sharifi,A popularity-based query scheme in P2P networks using adaptive gossip sampling.,2013,6,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna6.html#SharifiK13,https://doi.org/10.1007/s12083-012-0135-9 +Yongning Tang,Probabilistic and reactive fault diagnosis for dynamic overlay networks.,2011,4,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna4.html#TangCX11,https://doi.org/10.1007/s12083-010-0100-4 +Xu-Rui Gao,Using multi-features to recommend friends on location-based social networks.,2017,10,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna10.html#GaoLW17,https://doi.org/10.1007/s12083-016-0489-5 +Hilal Jan,Dependability and reliability analysis of intra cluster routing technique.,2015,8,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna8.html#JanPMAJK15,https://doi.org/10.1007/s12083-014-0311-1 +Daniel Schlosser,Mastering selfishness and heterogeneity in mobile P2P content distribution networks with multiple source download in cellular networks.,2009,2,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna2.html#SchlosserH09,https://doi.org/10.1007/s12083-009-0034-x +Jingyu Zhang,Optimizing power consumption of mobile devices for video streaming over 4G LTE networks.,2018,11,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna11.html#ZhangWQYCG18,https://doi.org/10.1007/s12083-017-0580-6 +Narges Mohammadi Sarband,Quality enhancement of video on demand implementation in peer-to-peer networks by optimum chunk length in the BitTorrent.,2017,10,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna10.html#SarbandKN17,https://doi.org/10.1007/s12083-016-0467-y +Meiyu Huang,A semi-supervised privacy-preserving clustering algorithm for healthcare.,2016,9,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna9.html#HuangCCLRJ16,https://doi.org/10.1007/s12083-015-0356-9 +Ajmery Sultana,An overview of medium access control strategies for opportunistic spectrum access in cognitive radio networks.,2017,10,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna10.html#SultanaFZ17,https://doi.org/10.1007/s12083-016-0465-0 +Fu Xiao,Utility-aware data transmission scheme for delay tolerant networks.,2016,9,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna9.html#XiaoXJSW16,https://doi.org/10.1007/s12083-015-0354-y +Nadir Shah,A cross-layer approach for partition detection at overlay layer for structured P2P in MANETs.,2016,9,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna9.html#ShahANQ16,https://doi.org/10.1007/s12083-015-0341-3 +Gunhee Lee,An approach to mitigate DoS attack based on routing misbehavior in wireless ad hoc networks.,2015,8,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna8.html#LeeKKOK15,https://doi.org/10.1007/s12083-013-0215-5 +Nazanin Magharei,Incorporating contribution-awareness into mesh-based Peer-to-Peer streaming systems.,2011,4,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna4.html#MaghareiRG11,https://doi.org/10.1007/s12083-010-0078-y +Meng Zhang 0001,iGridMedia: The system to provide low delay peer-to-peer live streaming service over internet.,2010,3,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna3.html#ZhangSFY10,https://doi.org/10.1007/s12083-009-0050-x +Tingting Yang,Perceiving who and when to leverage data delivery for maritime networks: An optimal stopping view.,2016,9,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna9.html#YangYFD16,https://doi.org/10.1007/s12083-015-0373-8 +Juan Pedro Muñoz-Gea,Optimizing content placement in a peer-assisted VoD architecture.,2013,6,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna6.html#Munoz-GeaMM13,https://doi.org/10.1007/s12083-012-0174-2 +Cai Kang,Survey of search and optimization of P2P networks.,2011,4,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna4.html#Kang11,https://doi.org/10.1007/s12083-010-0082-2 +Subhrangsu Mandal,Distributed deterministic 1-2 skip list for peer-to-peer system.,2015,8,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna8.html#MandalCK15,https://doi.org/10.1007/s12083-013-0222-6 +Haiyang Wang,Measurement and enhancement of BitTorrent-based video file swarming.,2010,3,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna3.html#WangLX10,https://doi.org/10.1007/s12083-010-0076-0 +Youngseok Lee 0001,RFID-based sensing system for context information management using P2P network architecture.,2018,11,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna11.html#LeeC18,https://doi.org/10.1007/s12083-018-0636-2 +Zhiguang Chen,An SSD-based accelerator for directory parsing in storage systems containing massive files.,2013,6,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna6.html#ChenXL13,https://doi.org/10.1007/s12083-013-0209-3 +Weidong Yang,An optimal query strategy for protecting location privacy in location-based services.,2016,9,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna9.html#YangHSLL16,https://doi.org/10.1007/s12083-015-0328-0 +Radu Prodan,Operation analysis of massively multiplayer online games on unreliable resources.,2016,9,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna9.html#ProdanI16,https://doi.org/10.1007/s12083-015-0383-6 +Jie Cui 0004,Data aggregation with end-to-end confidentiality and integrity for large-scale wireless sensor networks.,2018,11,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna11.html#CuiSZXL18,https://doi.org/10.1007/s12083-017-0581-5 +Tianzhang Xing,Treasures status monitoring based on dynamic link-sensing.,2017,10,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna10.html#XingXXHJZF17,https://doi.org/10.1007/s12083-016-0508-6 +,Editor's note: Special Issue on Security and Privacy for Big Data Storage in the Cloud.,2018,11,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna11.html#X18a,https://doi.org/10.1007/s12083-017-0601-5 +Thomas Repantis,Adaptive component composition and load balancing for distributed stream processing applications.,2009,2,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna2.html#RepantisDK09,https://doi.org/10.1007/s12083-008-0020-8 +Priyanka Jaiswal,An authenticated group key transfer protocol using elliptic curve cryptography.,2017,10,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna10.html#JaiswalT17,https://doi.org/10.1007/s12083-016-0434-7 +Jacob Chakareski,Cost and profit driven cloud-P2P interaction.,2015,8,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna8.html#Chakareski15,https://doi.org/10.1007/s12083-013-0235-1 +Zehao Sun,SOS: Real-time and accurate physical assault detection using smartphone.,2017,10,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna10.html#SunTHZGSH17,https://doi.org/10.1007/s12083-016-0428-5 +Yingwu Zhu,Towards bandwidth-efficient keyword continuous query processing over DHTs.,2016,9,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna9.html#Zhu16,https://doi.org/10.1007/s12083-014-0319-6 +Hidayat Febiansyah,Peer-assisted adaptation in periodic broadcasting of videos for heterogeneous clients.,2013,6,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna6.html#FebiansyahKK13,https://doi.org/10.1007/s12083-012-0164-4 +Jianming Lv,Towards an immunity based distributed algorithm to detect harmful files shared in P2P networks.,2015,8,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna8.html#LvYZ15,https://doi.org/10.1007/s12083-013-0221-7 +Yan Zhang 0013,A novel cooperative caching algorithm for massive P2P caches.,2013,6,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna6.html#ZhangZLWC13,https://doi.org/10.1007/s12083-013-0211-9 +Abdulbaset Gaddah,Subscriber mobility management for a P2P publish/subscribe overlay in mobile tactical networks.,2009,2,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna2.html#GaddahLK09,https://doi.org/10.1007/s12083-009-0038-6 +Amit Kumar Gupta,CTMR-collaborative time-stamp based multicast routing for delay tolerant networks in post disaster scenario.,2018,11,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna11.html#GuptaMBMS18,https://doi.org/10.1007/s12083-016-0533-5 +Weidong Qiu,Protecting lightweight block cipher implementation in mobile big data computing - A GPU-based approach.,2018,11,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna11.html#QiuLGXTL18,https://doi.org/10.1007/s12083-016-0481-0 +Dongchao Ma,A research on dynamic allocation of network resources based on P2P traffic planning.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#MaWCYM14,https://doi.org/10.1007/s12083-012-0163-5 +Chunqi Tian,A D-S evidence theory based fuzzy trust model in file-sharing P2P networks.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#TianY14,https://doi.org/10.1007/s12083-012-0153-7 +Bin Xu 0014,Self-adaptive bat algorithm for large scale cloud manufacturing service composition.,2018,11,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna11.html#XuQHLSX18,https://doi.org/10.1007/s12083-017-0588-y +Amir Reza Razavi,An open digital environment to support business ecosystems.,2009,2,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna2.html#RazaviMK09,https://doi.org/10.1007/s12083-009-0039-5 +Paolo Veglia,Performance evaluation of P2P-TV diffusion algorithms under realistic settings.,2013,6,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna6.html#VegliaR13,https://doi.org/10.1007/s12083-012-0126-x +Behrooz Shafiee Sarjaz,Securing BitTorrent using a new reputation-based trust management system.,2013,6,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna6.html#SarjazA13,https://doi.org/10.1007/s12083-012-0141-y +Chow-Sing Lin,UR-aware: Streaming videos over BitTorrent with balanced playback urgency and rareness distribution.,2016,9,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna9.html#LinL16,https://doi.org/10.1007/s12083-015-0399-y +Chun-Wei Lin,Peer-to-peer usage analysis in dynamic databases.,2015,8,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna8.html#LinGHPC15,https://doi.org/10.1007/s12083-014-0290-2 +Xin Liu,Attack resilient P2P dissemination of RSS feed.,2011,4,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna4.html#LiuD11,https://doi.org/10.1007/s12083-010-0085-z +Jun Lei,An experimental analysis of Joost peer-to-peer VoD service.,2010,3,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna3.html#LeiSF10,http://www.springerlink.com/content/3554516178x80p1v/ +Christos Doulkeridis,Efficient search based on content similarity over self-organizing P2P networks.,2010,3,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna3.html#DoulkeridisVNKV10,https://doi.org/10.1007/s12083-009-0058-2 +KyuHwan Lee,Performance evaluation for delay time estimation in IEEE 802.16m sleep mode.,2015,8,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna8.html#LeeCM15,https://doi.org/10.1007/s12083-014-0262-6 +Zhi Li,Prediction based indoor fire escaping routing with wireless sensor network.,2017,10,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna10.html#LiZSF17,https://doi.org/10.1007/s12083-016-0520-x +Bo Zhang,Overlay construction for mobile peer-to-peer video broadcasting - Approaches and comparisons.,2016,9,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna9.html#ZhangC16,https://doi.org/10.1007/s12083-015-0388-1 +Loubna Mekouar,A contribution-based service differentiation scheme for peer-to-peer systems.,2009,2,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna2.html#MekouarIB09,https://doi.org/10.1007/s12083-008-0026-2 +Jongwoo Hong,Novel power control and collision resolution schemes for device-to-device discovery.,2016,9,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna9.html#HongPC16,https://doi.org/10.1007/s12083-015-0375-6 +Zeeshan Siddiqui,Cryptanalysis and improvement of 'a secure authentication scheme for telecare medical information system' with nonce verification.,2016,9,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna9.html#SiddiquiAKA16,https://doi.org/10.1007/s12083-015-0364-9 +Sadiq Almuairfi,Anonymous proximity mobile payment (APMP).,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#AlmuairfiVCP14,https://doi.org/10.1007/s12083-012-0183-1 +Mehdi Mani,P2P IP Telephony over wireless ad-hoc networks - A smart approach on super node admission.,2012,5,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna5.html#ManiSCF12,https://doi.org/10.1007/s12083-012-0144-8 +Qiongjie Yao,Training deep neural network on multiple GPUs with a model averaging method.,2018,11,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna11.html#YaoLJ18,https://doi.org/10.1007/s12083-017-0574-4 +Xia Feng,A method for defensing against multi-source Sybil attacks in VANET.,2017,10,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna10.html#FengLCT17,https://doi.org/10.1007/s12083-016-0431-x +Jianxin Li,Context-aware trust negotiation in peer-to-peer service collaborations.,2009,2,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna2.html#LiZHX09,https://doi.org/10.1007/s12083-009-0029-7 +Xu Wu,A distributed trust management model for mobile P2P networks.,2012,5,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna5.html#Wu12,https://doi.org/10.1007/s12083-011-0103-9 +Sandeep A. Thorat,Uncertainty analysis framework for trust based routing in MANET.,2017,10,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna10.html#ThoratK17,https://doi.org/10.1007/s12083-016-0510-z +Wenjun Xu,Underlaid-D2D-assisted cooperative multicast based on social networks.,2016,9,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna9.html#XuLXL16,https://doi.org/10.1007/s12083-015-0348-9 +Joo-Chang Kim,Mining health-risk factors using PHR similarity in a hybrid P2P network.,2018,11,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna11.html#KimC18,https://doi.org/10.1007/s12083-018-0631-7 +Hermine Hovhannisyan,Whispers in the cloud storage: A novel cross-user deduplication-based covert channel design.,2018,11,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna11.html#HovhannisyanQLY18,https://doi.org/10.1007/s12083-016-0483-y +Jessie Hui Wang,A study on key strategies in P2P file sharing systems and ISPs' P2P traffic management.,2011,4,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna4.html#WangWYA11,https://doi.org/10.1007/s12083-010-0098-7 +Yong-Ho Kim,Extracting real IP address used to connect to P2P messenger using ARIT agent.,2015,8,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna8.html#KimS15,https://doi.org/10.1007/s12083-014-0275-1 +Yixian Yang,General Theory of security and a study of hacker's behavior in big data era.,2018,11,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna11.html#YangNLPRQ18,https://doi.org/10.1007/s12083-016-0517-5 +Kyung-Yong Chung,P2P cloud network services for IoT based disaster situations information.,2016,9,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna9.html#ChungP16,https://doi.org/10.1007/s12083-015-0386-3 +Shu-Chiung Lin,A novel method of mining network flow to detect P2P botnets.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#LinCC14,https://doi.org/10.1007/s12083-012-0195-x +Ruchir Gupta,Reputation based probabilistic resource allocation for avoiding free riding and formation of common interest groups in unstructured P2P networks.,2016,9,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna9.html#GuptaSS16,https://doi.org/10.1007/s12083-015-0389-0 +Young-June Choi,Guest editorial: Special issue on device-to-device service and network management for beyond 4G mobile networks.,2016,9,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna9.html#ChoiML16,https://doi.org/10.1007/s12083-016-0448-1 +Yinbin Miao,DOAS: Efficient data owner authorized search over encrypted cloud data.,2018,11,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna11.html#MiaoMLLZW18,https://doi.org/10.1007/s12083-016-0523-7 +Dmitry G. Korzun,Hierarchical architectures in structured peer-to-peer overlay networks.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#KorzunG14,https://doi.org/10.1007/s12083-013-0200-z +Gi Seok Park,A novel hybrid P2P and cloud storage system for retrievability and privacy enhancement.,2016,9,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna9.html#ParkS16,https://doi.org/10.1007/s12083-015-0337-z +Daniel Kraft,Difficulty control for blockchain-based consensus systems.,2016,9,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna9.html#Kraft16,https://doi.org/10.1007/s12083-015-0347-x +Jennifer S. Raj,A dynamic overlay approach for mobility maintenance in personal communication networks.,2014,7,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna7.html#RajH14,https://doi.org/10.1007/s12083-012-0186-y +Gang Wang,Resource allocation for M2M-enabled cellular network using Nash bargaining game theory.,2018,11,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna11.html#WangL18,https://doi.org/10.1007/s12083-016-0477-9 +Ke Xu 0002,Exploring the policy selection of the P2P VoD system: A simulation-based research.,2015,8,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna8.html#XuLMZC15,https://doi.org/10.1007/s12083-014-0268-0 +Pouya Bisadi,A fault tolerant peer-to-peer spatial data structure.,2017,10,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna10.html#BisadiMN17,https://doi.org/10.1007/s12083-016-0436-5 +Xiaoming Wang 0001,A novel approach for inhibiting misinformation propagation in human mobile opportunistic networks.,2017,10,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna10.html#WangLZZLC17,https://doi.org/10.1007/s12083-016-0438-3 +Seokhoon Kim,Efficient peer-to-peer context awareness data forwarding scheme in emergency situations.,2016,9,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna9.html#KimS16,https://doi.org/10.1007/s12083-015-0401-8 +Yanrong Lu,A secure and efficient mutual authentication scheme for session initiation protocol.,2016,9,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna9.html#LuLPY16,https://doi.org/10.1007/s12083-015-0363-x +Mohamed Amine Rguibi,The impact of hesitation on passive worm spreading in P2P networks.,2018,11,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna11.html#RguibiM18,https://doi.org/10.1007/s12083-016-0538-0 +Yan Li,PSON: A scalable P2P file sharing system with efficient complex query support.,2011,4,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna4.html#LiALCC11,https://doi.org/10.1007/s12083-010-0089-8 +Le Chen,PDAFT: A privacy-preserving data aggregation scheme with fault tolerance for smart grid communications.,2015,8,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna8.html#ChenLC15,https://doi.org/10.1007/s12083-014-0255-5 +Anna Satsiou,Trust-based exchange of services to motivate cooperation in P2P networks.,2011,4,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna4.html#SatsiouT11,https://doi.org/10.1007/s12083-010-0069-z +Khedija Arour,Learning model for efficient query routing in P2P information retrieval systems.,2015,8,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna8.html#ArourY15,https://doi.org/10.1007/s12083-014-0282-2 +Zhenhua Duan,Two-layer hybrid peer-to-peer networks.,2017,10,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna10.html#DuanTZWZDW17,https://doi.org/10.1007/s12083-016-0460-5 +Tian Song,File-aware P2P traffic classification: An aid to network management.,2013,6,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna6.html#SongZ13,https://doi.org/10.1007/s12083-012-0172-4 +Alireza Montazeri,An incentive scheduling mechanism for peer-to-peer video streaming.,2012,5,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna5.html#MontazeriAG12,https://doi.org/10.1007/s12083-011-0121-7 +Jaime Lloret,Providing security and fault tolerance in P2P connections between clouds for mHealth services.,2016,9,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna9.html#LloretSJP16,https://doi.org/10.1007/s12083-015-0378-3 +Junjie Yang,Privacy-aware electricity scheduling for home energy management system.,2018,11,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna11.html#YangHW18,https://doi.org/10.1007/s12083-016-0492-x +Ansar-Ul-Haque Yasar,Evaluation framework for adaptive context-aware routing in large scale mobile peer-to-peer systems.,2011,4,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna4.html#YasarPB11,https://doi.org/10.1007/s12083-010-0090-2 +Tri Gia Nguyen,A novel energy-efficient clustering protocol with area coverage awareness for wireless sensor networks.,2017,10,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna10.html#NguyenSNP17,https://doi.org/10.1007/s12083-016-0524-6 +Shah Asaduzzaman,CliqueStream: Creating an efficient and resilient transport overlay for peer-to-peer live streaming using a clustered DHT.,2010,3,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna3.html#AsaduzzamanQB10,https://doi.org/10.1007/s12083-009-0052-8 +Michael Kleis,A decentralised service composition approach for peer-to-peer video delivery.,2010,3,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna3.html#KleisRECS10,https://doi.org/10.1007/s12083-009-0057-3 +Jinbiao Xu,I-Swifter: Improving chunked network coding for peer-to-peer content distribution.,2012,5,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna5.html#XuWZL12,https://doi.org/10.1007/s12083-011-0105-7 +Sun-Hyun Kim,Delay-tolerant sensing data delivery for IoT network by using signal strength information.,2018,11,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna11.html#KimH18,https://doi.org/10.1007/s12083-016-0536-2 +Mullur Pushpalatha,Applicability of sub graph centrality to improve data accessibility among peers in MANETs.,2014,7,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna7.html#PushpalathaRV14,https://doi.org/10.1007/s12083-012-0187-x +Xianfu Meng,Research on the implicit feedback mechanism in peer-to-peer trust models.,2017,10,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna10.html#MengML17,https://doi.org/10.1007/s12083-016-0478-8 +Xiao Liu 0007,An incentive game based evolutionary model for crowd sensing networks.,2016,9,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna9.html#LiuOLC16,https://doi.org/10.1007/s12083-015-0342-2 +Kun Lu 0003,Modeling altruism agents: Incentive mechanism in autonomous networks with other-regarding preference.,2017,10,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna10.html#LuWXWL17,https://doi.org/10.1007/s12083-016-0470-3 +Hieu V. Nguyen,Optimization of resource allocation for underlay device-to-device communications in cellular networks.,2016,9,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna9.html#NguyenDNSS16,https://doi.org/10.1007/s12083-015-0357-8 +Jun Zhou,Secure and efficient fine-grained multiple file sharing in cloud-assisted crowd sensing networks.,2016,9,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna9.html#ZhouCD16,https://doi.org/10.1007/s12083-016-0449-0 +Mohammad Alishahi,Multi-class routing protocol using virtualization and SDN-enabled architecture for smart grid.,2018,11,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna11.html#AlishahiMP18,https://doi.org/10.1007/s12083-016-0537-1 +Xiaofei Liao,Guest editorial: Special issue on big data networking.,2018,11,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna11.html#LiaoGZW18,https://doi.org/10.1007/s12083-018-0634-4 +Eliya Buyukkaya,A survey of peer-to-peer overlay approaches for networked virtual environments.,2015,8,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna8.html#BuyukkayaAS15,https://doi.org/10.1007/s12083-013-0231-5 +Ssu-Hsuan Lu,A scalable P2P overlay based on arrangement graph with minimized overhead.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#LuLLC14,https://doi.org/10.1007/s12083-013-0229-z +Huanlin Liu,A trust-based P2P resource search method integrating with Q-learning for future Internet.,2015,8,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna8.html#LiuCCC15,https://doi.org/10.1007/s12083-014-0279-x +Hyesung Ji,Mining students activities from a computer supported collaborative learning system based on peer to peer network.,2016,9,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna9.html#JiPJL16,https://doi.org/10.1007/s12083-015-0397-0 +Muhammad Yasin,A granular approach for user-centric network analysis to identify digital evidence.,2015,8,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna8.html#YasinQKKS15,https://doi.org/10.1007/s12083-014-0250-x +B. S. Jyothi,SyMon: A practical approach to defend large structured P2P systems against Sybil Attack.,2011,4,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna4.html#JyothiJ11,https://doi.org/10.1007/s12083-010-0084-0 +Daniel Antonio Garcia Manzato,Incentive mechanism for the CoopNet network.,2008,1,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna1.html#ManzatoF08,https://doi.org/10.1007/s12083-007-0004-0 +Bong-Hyun Kim,Development of disaster prevention solution in extremely dangerous industrial environment based on P2P sensor network.,2018,11,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna11.html#KimK18b,https://doi.org/10.1007/s12083-017-0611-3 +Zhuangbin Chen,Distributed duty cycle control for delay improvement in wireless sensor networks.,2017,10,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna10.html#ChenLLCL17,https://doi.org/10.1007/s12083-016-0501-0 +Ramazan Savas Aygün,A conceptual model for data management and distribution in peer-to-peer systems.,2010,3,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna3.html#AygunMACB10,https://doi.org/10.1007/s12083-009-0061-7 +Hyun Mi Jung,A security monitoring method for malicious P2P event detection.,2016,9,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna9.html#JungHMP16,https://doi.org/10.1007/s12083-015-0369-4 +Hongzi Zhu,Guest editorial: fog computing on wheels.,2018,11,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna11.html#ZhuLDC18,https://doi.org/10.1007/s12083-017-0599-8 +Suguo Du,An attack-and-defence game for security assessment in vehicular ad hoc networks.,2014,7,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna7.html#DuLDZ14,https://doi.org/10.1007/s12083-012-0127-9 +Seokhoon Kim,QoS-aware data forwarding architecture for multimedia streaming services in hybrid peer-to-peer networks.,2015,8,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna8.html#Kim15,https://doi.org/10.1007/s12083-014-0256-4 +Ashok Kumar Das,A secure and robust temporal credential-based three-factor user authentication scheme for wireless sensor networks.,2016,9,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna9.html#Das16,https://doi.org/10.1007/s12083-014-0324-9 +Mianxiong Dong,Guest editorial: Special issue on crowd sensing networks.,2016,9,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna9.html#DongHCK16,https://doi.org/10.1007/s12083-016-0452-5 +Fan Wu 0003,An improved and provably secure three-factor user authentication scheme for wireless sensor networks.,2018,11,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna11.html#WuXKL18,https://doi.org/10.1007/s12083-016-0485-9 +Mohammad Zulhasnine,Towards an effective integration of cellular users to the structured Peer-to-Peer network.,2012,5,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna5.html#ZulhasnineHS12,https://doi.org/10.1007/s12083-011-0109-3 +Pu Yang,Optimal fault-tolerant control for UAV systems with time delay and uncertainties over wireless network.,2017,10,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna10.html#YangPLG17,https://doi.org/10.1007/s12083-016-0527-3 +Felix Musau,Group formation with neighbor similarity trust in P2P E-commerce.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#MusauWA14,https://doi.org/10.1007/s12083-011-0116-4 +Haiyong Bao,A lightweight data aggregation scheme achieving privacy preservation and data integrity with differential privacy and fault tolerance.,2017,10,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna10.html#BaoL17,https://doi.org/10.1007/s12083-015-0410-7 +Elth Ogston,Peer sampling with improved accuracy.,2009,2,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna2.html#OgstonJ09,https://doi.org/10.1007/s12083-008-0017-3 +Abdul-Rahman Mawlood-Yunis,From P2P to reliable semantic P2P systems.,2010,3,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna3.html#Mawlood-YunisWS10,https://doi.org/10.1007/s12083-009-0066-2 +Zhen Huang,A social network approach to trust management in VANETs.,2014,7,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna7.html#HuangRCSN14,https://doi.org/10.1007/s12083-012-0136-8 +Fabien Mathieu,Self-stabilization in preference-based systems.,2008,1,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna1.html#Mathieu08,https://doi.org/10.1007/s12083-008-0009-3 +Praveenkumar Khethavath,Towards an efficient distributed cloud computing architecture.,2017,10,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna10.html#KhethavathTC17,https://doi.org/10.1007/s12083-016-0468-x +Kai Fan,Secure ultra-lightweight RFID mutual authentication protocol based on transparent computing for IoV.,2018,11,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna11.html#FanWJLY18,https://doi.org/10.1007/s12083-017-0553-9 +Lu Liu 0001,Editorial: Special issue on dependable peer-to-peer systems.,2010,3,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna3.html#LiuX10,https://doi.org/10.1007/s12083-009-0065-3 +Hyeong-Seok Kim,Development of local area alert system against particulate matters and ultraviolet rays based on open IoT platform with P2P.,2018,11,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna11.html#KimOL18,https://doi.org/10.1007/s12083-017-0592-2 +Valerio Arnaboldi,Information diffusion in distributed OSN: The impact of trusted relationships.,2016,9,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna9.html#ArnaboldiGPC16,https://doi.org/10.1007/s12083-015-0395-2 +Yi Zheng,Adaptive resource scheduling mechanism in P2P file sharing system.,2016,9,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna9.html#ZhengLYG16,https://doi.org/10.1007/s12083-015-0381-8 +Gang Li,A traffic congestion aware vehicle-to-vehicle communication framework based on Voronoi diagram and information granularity.,2018,11,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna11.html#LiHD18,https://doi.org/10.1007/s12083-016-0491-y +Moulay Driss Mechaoui,MiCa: Lightweight and mobile collaboration across a collaborative editing service in the cloud.,2016,9,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna9.html#MechaouiGI16,https://doi.org/10.1007/s12083-016-0439-2 +Ramzi A. Haraty,Data damage assessment and recovery algorithm from malicious attacks in healthcare data sharing systems.,2016,9,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna9.html#HaratyZM16,https://doi.org/10.1007/s12083-015-0361-z +Chunxi Li,Peer startup process and initial offset placement in peer-to-peer (P2P) live streaming systems.,2015,8,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna8.html#LiCZLC15,https://doi.org/10.1007/s12083-013-0223-5 +Weicai Zhong,Classifying peer-to-peer applications using imbalanced concept-adapting very fast decision tree on IP data stream.,2013,6,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna6.html#ZhongRL13,https://doi.org/10.1007/s12083-012-0147-5 +Hangki Joh,A hybrid Wi-Fi P2P with bluetooth low energy for optimizing smart device's communication property.,2015,8,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna8.html#JohR15,https://doi.org/10.1007/s12083-014-0276-0 +Varun Kumar Sharma,Adaptive congestion control scheme in mobile ad-hoc networks.,2017,10,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna10.html#SharmaK17,https://doi.org/10.1007/s12083-016-0507-7 +Sk. Md. Mizanur Rahman,Privacy preserving secure data exchange in mobile P2P cloud healthcare environment.,2016,9,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna9.html#RahmanMHAHA16,https://doi.org/10.1007/s12083-015-0334-2 +Zoran Kotevski,Hybrid fluid modeling approach for performance analysis of P2P live video streaming systems.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#KotevskiM14,https://doi.org/10.1007/s12083-013-0205-7 +Nilesh Padhariya,Top-k query processing in mobile-P2P networks using economic incentive schemes.,2016,9,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna9.html#PadhariyaMM16,https://doi.org/10.1007/s12083-015-0391-6 +Zhixin Liu,A robust power control scheme for femtocell networks with probability constraint of channel gains.,2018,11,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna11.html#LiuLGC18,https://doi.org/10.1007/s12083-016-0486-8 +Nabila Chergui,Scalability-aware mechanism based on workload prediction in ultra-peer networks.,2018,11,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna11.html#CherguiKC18,https://doi.org/10.1007/s12083-017-0542-z +Cheol-Joo Chae,Enhanced secure device authentication algorithm in P2P-based smart farm system.,2018,11,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna11.html#ChaeC18,https://doi.org/10.1007/s12083-018-0635-3 +Mohammad Al Mojamed,Design and evaluation of a peer-to-peer MANET crosslayer approach: OneHopOverlay4MANET.,2017,10,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna10.html#MojamedK17,https://doi.org/10.1007/s12083-015-0413-4 +Jehn-Ruey Jiang,Immersive voice communication for massively multiplayer online games.,2016,9,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna9.html#JiangWFW16,https://doi.org/10.1007/s12083-014-0312-0 +Hyoung-Jai Kim,Implementation of young children English education system by AR type based on P2P network service model.,2018,11,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna11.html#KimK18a,https://doi.org/10.1007/s12083-017-0612-2 +Mohammad Mursalin Akon,SPACE: A lightweight collaborative caching for clusters.,2010,3,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna3.html#AkonISS10,https://doi.org/10.1007/s12083-009-0047-5 +Fangzhou Zhu,Probabilistic nearest neighbor queries of uncertain data via wireless data broadcast.,2013,6,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna6.html#ZhuLLZZ13,https://doi.org/10.1007/s12083-013-0210-x +Lechan Yang,Distributed correlation model mining from remote sensing big data based on gene expression programming.,2018,11,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna11.html#YangQ18,https://doi.org/10.1007/s12083-017-0589-x +Kubilay Demir,Robust QoS-aware communication in the smart distribution grid.,2017,10,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna10.html#DemirGS17,https://doi.org/10.1007/s12083-015-0418-z +Guanling Lee,An efficient search mechanism for supporting partial filename queries in structured peer-to-peer overlay.,2012,5,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna5.html#LeePCH12,https://doi.org/10.1007/s12083-012-0139-5 +Tai T. Do,PatchPeer: A scalable video-on-demand streaming system in hybrid wireless mobile peer-to-peer networks.,2009,2,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna2.html#DoHJL09,https://doi.org/10.1007/s12083-008-0027-1 +Seokhoon Kim,Efficient data-forwarding method in delay-tolerant P2P networking for IoT services.,2018,11,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna11.html#KimK18,https://doi.org/10.1007/s12083-017-0614-0 +Yoji Yamato,Kademlia based routing on locator-ID separated networks for new generation networks.,2013,6,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna6.html#YamatoOMA13,https://doi.org/10.1007/s12083-012-0166-2 +Huaiqing Lin,Multifactor hierarchical fuzzy trust evaluation on peer-to-peer networks.,2011,4,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna4.html#LinLH11,https://doi.org/10.1007/s12083-010-0096-9 +Keqin Li,On the expected file download time of the random time-based switching algorithm in P2P networks.,2014,7,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna7.html#Li14,https://doi.org/10.1007/s12083-012-0188-9 +Nima Jafari Navimipour,Erratum to: A comprehensive study of the resource discovery techniques in Peer-to-Peer networks.,2016,9,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna9.html#NavimipourM16,https://doi.org/10.1007/s12083-015-0335-1 +Yayuan Tang,A block-level caching optimization method for mobile transparent computing.,2018,11,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna11.html#TangGT18,https://doi.org/10.1007/s12083-017-0554-8 +Yourong Chen,Node localization algorithm of wireless sensor networks with mobile beacon node.,2017,10,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna10.html#ChenLCR17,https://doi.org/10.1007/s12083-016-0522-8 +Xiaolong Li,OPNET-based modeling and simulation of mobile Zigbee sensor networks.,2016,9,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna9.html#LiPCYZ16,https://doi.org/10.1007/s12083-015-0349-8 +Ajay Kumar Yadav,QMRPRNS: Design of QoS multicast routing protocol using reliable node selection scheme for MANETs.,2017,10,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna10.html#YadavT17,https://doi.org/10.1007/s12083-016-0441-8 +Xiaoheng Deng,A reliable QoS-aware routing scheme for neighbor area network in smart grid.,2016,9,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna9.html#DengHLLCC16,https://doi.org/10.1007/s12083-015-0331-5 +Cándido Caballero-Gil,Merging sub-networks in VANETs by using the IEEE 802.11xx protocols.,2015,8,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna8.html#Caballero-GilCM15,https://doi.org/10.1007/s12083-014-0313-z +Xin Sun 0002,On the feasibility of exploiting P2P systems to launch DDoS attacks.,2010,3,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna3.html#SunTR10,https://doi.org/10.1007/s12083-009-0046-6 +Bingshuang Liu,Improving lookup reliability in Kad.,2015,8,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna8.html#LiuWZLZ15,https://doi.org/10.1007/s12083-013-0240-4 +Jan Sacha,Decentralising a service-oriented architecture.,2010,3,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna3.html#SachaBDCMDH10,https://doi.org/10.1007/s12083-009-0062-6 +Peng Qin,Taking a free ride for routing topology inference in peer-to-peer networks.,2016,9,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna9.html#QinDXWH16,https://doi.org/10.1007/s12083-015-0380-9 +Hangki Joh,The internet of everything based on energy efficient P2P transmission technology with Bluetooth low energy.,2016,9,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna9.html#JohYR16,https://doi.org/10.1007/s12083-015-0377-4 +Tingting Yang,A multi-vessels cooperation scheduling for networked maritime fog-ran architecture leveraging SDN.,2018,11,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna11.html#YangCWZSD18,https://doi.org/10.1007/s12083-017-0569-1 +Amol Jaikar,Cost and performance effective data center selection system for scientific federated cloud.,2015,8,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna8.html#JaikarN15,https://doi.org/10.1007/s12083-014-0261-7 +Mohammad Mursalin Akon,An inexpensive unstructured platform for wireless mobile peer-to-peer networks.,2008,1,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna1.html#AkonSNSZ08,https://doi.org/10.1007/s12083-007-0007-x +Ting Lu,Fog computing enabling geographic routing for urban area vehicular network.,2018,11,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna11.html#LuCL18,https://doi.org/10.1007/s12083-017-0560-x +Jungsoo Han,Distributed hybrid P2P networking systems.,2015,8,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna8.html#Han15,https://doi.org/10.1007/s12083-014-0298-7 +Bo-Chun Wang,A comprehensive study of the use of advertisements as incentives in P2P streaming systems.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#WangCG14,https://doi.org/10.1007/s12083-012-0155-5 +Daishi Kato,A scalable interest-oriented peer-to-peer pub/sub network.,2011,4,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna4.html#KatoEKYM11,https://doi.org/10.1007/s12083-010-0073-3 +Tingting Yang,EAPSG: Efficient authentication protocol for secure group communications in maritime wideband communication networks.,2015,8,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna8.html#YangLLJ15,https://doi.org/10.1007/s12083-014-0251-9 +,Editor's Note: Special issue on Technologies and Theories in P2P Converged Ubiquitous Networks.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#X14,https://doi.org/10.1007/s12083-014-0291-1 +M. Milton Joe,Novel authentication procedures for preventing unauthorized access in social networks.,2017,10,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna10.html#JoeR17,https://doi.org/10.1007/s12083-016-0426-7 +Huige Wang,A new randomized message-locked encryption in the standard model.,2018,11,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna11.html#WangCLYW18,https://doi.org/10.1007/s12083-016-0488-6 +Lidong Han,An efficient and secure three-factor based authenticated key exchange scheme using elliptic curve cryptosystems.,2018,11,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna11.html#HanTWL18,https://doi.org/10.1007/s12083-016-0499-3 +Bin Huang,BufferBank: A distributed cache infrastructure for peer-to-peer application.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#HuangSCMZ14,https://doi.org/10.1007/s12083-012-0165-3 +Ahmad Jafarabadi,A stochastic epidemiological model for the propagation of active worms considering the dynamicity of network topology.,2015,8,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna8.html#JafarabadiA15,https://doi.org/10.1007/s12083-014-0306-y +Qichao Xu,Analytical model with a novel selfishness division of mobile nodes to participate cooperation.,2016,9,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna9.html#XuSHFXG16,https://doi.org/10.1007/s12083-015-0330-6 +Jun Li 0001,mSSL: A framework for trusted and incentivized peer-to-peer data sharing between distrusted and selfish clients.,2011,4,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna4.html#Li11,https://doi.org/10.1007/s12083-010-0087-x +Sho Nanao,Effect of node churn on frame interval for peer-to-peer video streaming with data-block synchronization mechanism.,2012,5,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna5.html#NanaoMKT12,https://doi.org/10.1007/s12083-011-0120-8 +Andrew Roczniak,Improving robustness of P2P applications in mobile environments.,2009,2,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna2.html#RoczniakE09,https://doi.org/10.1007/s12083-009-0032-z +Marco Biazzini,p2poem: Function optimization in P2P networks.,2013,6,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna6.html#BiazziniM13,https://doi.org/10.1007/s12083-012-0152-8 +Ofer Hermoni,Rendezvous tunnel for anonymous publishing.,2015,8,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna8.html#HermoniGFD15,https://doi.org/10.1007/s12083-014-0254-6 +Zhijie Ma,Optimizing bandwidth allocation for heterogeneous traffic in IoT.,2017,10,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna10.html#MaZH17,https://doi.org/10.1007/s12083-016-0535-3 +Ruben Torres,Characterization of community based-P2P systems and implications for traffic localization.,2013,6,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna6.html#TorresMMR13,https://doi.org/10.1007/s12083-012-0132-z +Peter Kersch,DHT routing analysis in a logarithmically transformed space.,2008,1,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna1.html#KerschS08,https://doi.org/10.1007/s12083-007-0002-2 +Wenbin Yu,Privacy-preserving design for emergency response scheduling system in medical social networks.,2017,10,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna10.html#YuLCYG17,https://doi.org/10.1007/s12083-016-0429-4 +Masahiro Sasabe,User selfishness vs. file availability in P2P file-sharing systems: Evolutionary game theoretic approach.,2010,3,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna3.html#SasabeWM10,https://doi.org/10.1007/s12083-009-0045-7 +Lichun Li,DS2: A DHT-based substrate for distributed services.,2013,6,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna6.html#LiXWW13,https://doi.org/10.1007/s12083-013-0228-0 +Soobok Shin,An efficient secure authentication scheme with user anonymity for roaming user in ubiquitous networks.,2015,8,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna8.html#ShinYK15,https://doi.org/10.1007/s12083-013-0218-2 +Jingguo Ge,Performance improvement for source mobility in named data networking based on global-local FIB updates.,2016,9,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna9.html#GeWWTE16,https://doi.org/10.1007/s12083-015-0353-z +Ngoc-Tu Nguyen 0003,Untraceable biometric-based three-party authenticated key exchange for dynamic systems.,2018,11,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna11.html#NguyenC18,https://doi.org/10.1007/s12083-017-0584-2 +Hao Luan,Adaptive topology formation for peer-to-peer video streaming.,2010,3,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna3.html#LuanKHT10,https://doi.org/10.1007/s12083-009-0048-4 +Maria Efthymiopoulou,Scalable playback rate control in P2P live streaming systems.,2016,9,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna9.html#EfthymiopoulouE16,https://doi.org/10.1007/s12083-015-0403-6 +Shibin Wang,A trigger-based pseudonym exchange scheme for location privacy preserving in VANETs.,2018,11,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna11.html#WangYGG18,https://doi.org/10.1007/s12083-017-0557-5 +Ghofrane Fersi,CLEVER: Cluster-based Energy-aware Virtual Ring Routing in randomly deployed wireless sensor networks.,2016,9,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna9.html#FersiLJ16,https://doi.org/10.1007/s12083-015-0360-0 +Zhu Ren,Multi-event Detection with Rechargeable Sensors.,2017,10,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna10.html#RenXDJ17,https://doi.org/10.1007/s12083-016-0521-9 +Hela Mliki,Modelling and evaluation of QCN using coloured petri nets.,2018,11,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna11.html#MlikiCK18,https://doi.org/10.1007/s12083-017-0547-7 +Shehzad Ashraf Chaudhry,An improved and provably secure privacy preserving authentication protocol for SIP.,2017,10,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna10.html#ChaudhryNSFH17,https://doi.org/10.1007/s12083-015-0400-9 +Preetha Thulasiraman,Applying location estimation for reliable routing in tactical unmanned ground vehicle networks.,2017,10,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna10.html#ThulasiramanCB17,https://doi.org/10.1007/s12083-016-0463-2 +Yazhou Yuan,Dynamic power allocation based on second-order control system in two-tier femtocell networks.,2018,11,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna11.html#YuanLWG18,https://doi.org/10.1007/s12083-017-0610-4 +Kaimin Wei,Congestion control in social-based sensor networks: A social network perspective.,2016,9,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna9.html#WeiGLZX16,https://doi.org/10.1007/s12083-015-0352-0 +GilSang Yoo,Implementation of convergence P2P information retrieval system from captured video frames.,2018,11,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna11.html#YooKH18,https://doi.org/10.1007/s12083-017-0596-y +Michele Amoretti,P2P-PL: A pattern language to design efficient and robust peer-to-peer systems.,2018,11,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna11.html#AmorettiZ18,https://doi.org/10.1007/s12083-017-0551-y +Xianfu Meng,sureTrust: a super peer-aware trust model for 2-level P2P networks.,2018,11,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna11.html#Meng18,https://doi.org/10.1007/s12083-017-0577-1 +Mouna Allani,Chams: Churn-aware overlay construction for media streaming.,2012,5,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna5.html#AllaniGP12,https://doi.org/10.1007/s12083-012-0161-7 +Xiaowei Chen,Improving sustainability of BitTorrent darknets.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#ChenCL14,https://doi.org/10.1007/s12083-012-0149-3 +Christof Leng,Large scale arbitrary search with rendezvous search systems.,2015,8,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna8.html#Leng15,https://doi.org/10.1007/s12083-014-0247-5 +Anirban Mondal,An economic incentive model for encouraging peer collaboration in mobile-P2P networks with support for constraint queries.,2009,2,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna2.html#MondalMK09,https://doi.org/10.1007/s12083-009-0035-9 +Jung-Taek Seo,A study on memory dump analysis based on digital forensic tools.,2015,8,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna8.html#SeoLS15,https://doi.org/10.1007/s12083-013-0217-3 +Yusuo Hu,SocialTrust: Enabling long-term social cooperation in peer-to-peer services.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#HuWZW14,https://doi.org/10.1007/s12083-013-0198-2 +Mohammed Hawa,File size models for shared content over the BitTorrent Peer-to-Peer network.,2012,5,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna5.html#HawaRA12,https://doi.org/10.1007/s12083-011-0122-6 +Hao Hu,PTRS: A privacy-preserving trust-based relay selection scheme in VANETs.,2017,10,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna10.html#HuLHZ17,https://doi.org/10.1007/s12083-016-0473-0 +Hanna Kavalionak,Integrating peer-to-peer and cloud computing for massively multiuser online games.,2015,8,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna8.html#KavalionakCRMC15,https://doi.org/10.1007/s12083-013-0232-4 +Yungho Choi,Router architecture evaluation for security network.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#ChoiKAP14,https://doi.org/10.1007/s12083-012-0181-3 +Linchen Yu,Integrated buffering schemes for P2P VoD services.,2011,4,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna4.html#YuLJJ11,https://doi.org/10.1007/s12083-010-0094-y +Shanshan Ge,FGDA: Fine-grained data analysis in privacy-preserving smart grid communications.,2018,11,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna11.html#GeZLC18,https://doi.org/10.1007/s12083-017-0618-9 +Tingting Yang,Resource allocation in cooperative cognitive radio networks towards secure communications for maritime big data systems.,2018,11,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna11.html#YangFYDGL18,https://doi.org/10.1007/s12083-016-0482-z +Bing Li 0004,Investigation of a large-scale P2P VoD overlay network by measurements.,2012,5,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna5.html#LiMJZ12,https://doi.org/10.1007/s12083-012-0131-0 +Fu Xiao,An energy-efficient data transmission protocol for mobile crowd sensing.,2017,10,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna10.html#XiaoJXSW17,https://doi.org/10.1007/s12083-016-0497-5 +Yen-Wen Chen,A channel-hopping scheme for continuous rendezvous and data delivery in cognitive radio network.,2016,9,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna9.html#ChenLW16,https://doi.org/10.1007/s12083-014-0308-9 +Leonidas Lymberopoulos,PLATON: Peer-to-Peer load adjusting tree overlay networks.,2012,5,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna5.html#LymberopoulosPGPM12,https://doi.org/10.1007/s12083-011-0114-6 +Georgios Exarchakos,A peer-to-peer system for on-demand sharing of capacity across network applications.,2012,5,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna5.html#ExarchakosA12,https://doi.org/10.1007/s12083-011-0108-4 +Danny Bickson,A unifying framework of rating users and data items in peer-to-peer and social networks.,2008,1,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna1.html#BicksonM08,https://doi.org/10.1007/s12083-008-0008-4 +Yongmin Zhang,Guest editorial: Distributed control and optimization of wireless networks.,2017,10,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna10.html#ZhangMZTL17,https://doi.org/10.1007/s12083-016-0541-5 +Sahar M. Ghanem,VITAL: Structured and clustered super-peer network for similarity search.,2015,8,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna8.html#GhanemIO15,https://doi.org/10.1007/s12083-014-0304-0 +Seung-Bo Park,Annotation alignment method on P2P-TV system.,2015,8,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna8.html#ParkC15,https://doi.org/10.1007/s12083-014-0264-4 +Illsoo Sohn,Distributed scheduling using belief propagation for internet-of-things (IoT) networks.,2018,11,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna11.html#SohnYL18,https://doi.org/10.1007/s12083-016-0516-6 +Yoon-Su Jeong,Fast Fourier transform based efficient data processing technique for big data processing speed enhancement in P2P computing environment.,2018,11,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna11.html#JeongS18,https://doi.org/10.1007/s12083-018-0652-2 +Christian Hübsch,Distributed WiFi detection and integration in dense urban mobile Peer-to-Peer networks.,2012,5,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna5.html#HubschWH12,https://doi.org/10.1007/s12083-012-0159-1 +Hang Tu,An improved authentication protocol for session initiation protocol using smart card.,2015,8,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna8.html#TuKCR15,https://doi.org/10.1007/s12083-014-0248-4 +Jinbo Xiong,A full lifecycle privacy protection scheme for sensitive data in cloud computing.,2015,8,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna8.html#XiongLMLYC15,https://doi.org/10.1007/s12083-014-0295-x +Andrei V. Gurtov,Cyclic ranking in single-resource peer-to-peer exchange.,2018,11,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna11.html#GurtovKK18,https://doi.org/10.1007/s12083-017-0578-0 +Ruo Mo,EOABS: expressive outsourced attribute-based signature.,2018,11,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna11.html#MoMLL18,https://doi.org/10.1007/s12083-017-0626-9 +Yu-Hsin Cheng,A novel method for delivering multimedia e-advertisement data base on use multi-path and multi-seed peer-to-peer-like approach.,2014,7,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna7.html#ChengC14,https://doi.org/10.1007/s12083-012-0175-1 +Kai Fan,Secure and private key management scheme in big data networking.,2018,11,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna11.html#FanLSLY18,https://doi.org/10.1007/s12083-017-0579-z +Shakeel Ahmad,Peer-to-peer live video streaming with rateless codes for massively multiplayer online games.,2018,11,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna11.html#AhmadBBDHKPS18,https://doi.org/10.1007/s12083-016-0495-7 +Hongwei Li,Guest editorial: Security and privacy of P2P networks in emerging smart city.,2015,8,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna8.html#LiZC15,https://doi.org/10.1007/s12083-015-0393-4 +Hossein Mohammadi Nejad,Improving the reliability of wireless data communication in Smart Grid NAN.,2017,10,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna10.html#NejadMK17,https://doi.org/10.1007/s12083-016-0462-3 +Xinxin Liu,A description logic-based policy compliance checker for trust negotiation.,2016,9,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna9.html#LiuTC16,https://doi.org/10.1007/s12083-015-0343-1 +Xianfu Meng,A traffic-efficient message forwarding approach in unstructured P2P networks.,2016,9,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna9.html#MengL16,https://doi.org/10.1007/s12083-015-0326-2 +Huan Zhou 0002,Maximum data delivery probability-oriented routing protocol in opportunistic mobile networks.,2017,10,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna10.html#ZhouTJXFL17,https://doi.org/10.1007/s12083-016-0512-x +Maria Luisa Merani,An IP-TV P2P streaming system that improves the viewing quality and confines the startup delay of regular audience.,2016,9,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna9.html#MeraniNB16,https://doi.org/10.1007/s12083-014-0323-x +Wenjun Zhang,Infrastructure deployment and optimization of fog network based on MicroDC and LRPON integration.,2017,10,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna10.html#Zhang0YZ17,https://doi.org/10.1007/s12083-016-0476-x +Wei-Jen Wang,VQ-based algorithms extended to non-embedded watermarking for multimedia ownership prevention systems.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#WangHYW14,https://doi.org/10.1007/s12083-012-0191-1 +Evangelos Pournaras,Peer-to-peer aggregation for dynamic adjustments in power demand.,2015,8,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna8.html#PournarasWB15,https://doi.org/10.1007/s12083-013-0246-y +Tao Qin,CUFTI: Methods for core users finding and traffic identification in P2P systems.,2016,9,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna9.html#QinWZZ16,https://doi.org/10.1007/s12083-015-0350-2 +Pierre K. Y. Lai,Modeling the initial stage of a file sharing process on a BitTorrent network.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#LaiCHY14,https://doi.org/10.1007/s12083-011-0118-2 +Jiaze Wang,A resource allocation model based on double-sided combinational auctions for transparent computing.,2018,11,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna11.html#WangLYZ18,https://doi.org/10.1007/s12083-017-0556-6 +Maria Luisa Merani,Peer-to-peer systems for video delivery.,2010,3,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna3.html#Merani10,http://www.springerlink.com/content/k83k394p5l2n67r0/ +Dario Rossi,Black-box analysis of Internet P2P applications.,2011,4,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna4.html#RossiSV11,https://doi.org/10.1007/s12083-010-0072-4 +Alessandro Duminuco,Hierarchical codes: A flexible trade-off for erasure codes in peer-to-peer storage systems.,2010,3,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna3.html#DuminucoB10,https://doi.org/10.1007/s12083-009-0044-8 +Zhi Yang,Understanding the performance of offline download in real p2p networks.,2015,8,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna8.html#YangXCXD15,https://doi.org/10.1007/s12083-014-0305-z +Ming He,Securing network coding against pollution attacks in P2P converged ubiquitous networks.,2015,8,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna8.html#HeGCWDL15,https://doi.org/10.1007/s12083-013-0216-4 +Mohammed Hawa,On enhancing reputation management using Peer-to-Peer interaction history.,2013,6,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna6.html#HawaAK13,https://doi.org/10.1007/s12083-012-0142-x +Le Chen,MuDA: Multifunctional data aggregation in privacy-preserving smart grid communications.,2015,8,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna8.html#ChenLCAL15,https://doi.org/10.1007/s12083-014-0292-0 +Qiyi Han,Rumor spreading in interdependent social networks.,2018,11,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna11.html#HanWM18,https://doi.org/10.1007/s12083-017-0616-y +Tarachand Amgoth,Coverage hole detection and restoration algorithm for wireless sensor networks.,2017,10,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna10.html#AmgothJ17,https://doi.org/10.1007/s12083-015-0407-2 +Sajal K. Das,Popularity-based caching for IPTV services over P2P networks.,2017,10,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna10.html#DasNR17,https://doi.org/10.1007/s12083-015-0414-3 +Yinbin Miao,VCSE: Verifiable conjunctive keywords search over encrypted data without secure-channel.,2017,10,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna10.html#MiaoMWLWL17,https://doi.org/10.1007/s12083-016-0458-z +Xiaoheng Deng,Finding overlapping communities based on Markov chain and link clustering.,2017,10,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna10.html#DengLDO17,https://doi.org/10.1007/s12083-016-0457-0 +Neeraj Kumar 0001,An intelligent RFID-enabled authentication scheme for healthcare applications in vehicular mobile cloud.,2016,9,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna9.html#KumarKMI16,https://doi.org/10.1007/s12083-015-0332-4 +Chuan Zhu,A honeycomb structure based data gathering scheme with a mobile sink for wireless sensor networks.,2017,10,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna10.html#ZhuHZ17,https://doi.org/10.1007/s12083-016-0496-6 +Jiayi Liu,Resource allocation in underprovisioned multioverlay peer-to-peer live video sharing services.,2015,8,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna8.html#LiuABHS15,https://doi.org/10.1007/s12083-014-0260-8 +U. Venkanna,TEA-CBRP: Distributed cluster head election in MANET by using AHP.,2016,9,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna9.html#VenkannaV16,https://doi.org/10.1007/s12083-014-0320-0 +Jingjing Guo,Trust-based service composition and selection in service oriented architecture.,2018,11,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna11.html#GuoMGLZZ18,https://doi.org/10.1007/s12083-017-0593-1 +Zhipeng Ouyang,Diverse community: Demand differentiation in P2P live streaming.,2011,4,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna4.html#OuyangXR11,https://doi.org/10.1007/s12083-010-0088-9 +Ioannis Pogkas,Adaptive neighborhood selection in peer-to-peer networks based on content similarity and reputation.,2009,2,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna2.html#PogkasKCD09,https://doi.org/10.1007/s12083-008-0018-2 +Sourav Dhar,Cognitive vertical handover engine for vehicular communication.,2013,6,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna6.html#DharRB13,https://doi.org/10.1007/s12083-012-0171-5 +Chuan Lin,Research on bottleneck-delay in internet based on IP united mapping.,2017,10,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna10.html#LinBZC17,https://doi.org/10.1007/s12083-016-0474-z +Jonghan Lee,VoIP-aware network attack detection based on statistics and behavior of SIP traffic.,2015,8,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna8.html#LeeCLK15,https://doi.org/10.1007/s12083-014-0289-8 +Hongwei Li,Practical blacklist-based anonymous authentication scheme for mobile crowd sensing.,2016,9,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna9.html#LiJYLZ16,https://doi.org/10.1007/s12083-015-0329-z +Xiaomei Zhang,Fault-aware flow control and multi-path routing in VANETs.,2015,8,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna8.html#ZhangDX0L15,https://doi.org/10.1007/s12083-014-0302-2 +Li Li,Editorial: Special issue on mobile P2P networking and computing.,2009,2,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna2.html#LiCT09,https://doi.org/10.1007/s12083-009-0040-z +Abdelwahab Boualouache,TAPCS: Traffic-aware pseudonym changing strategy for VANETs.,2017,10,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna10.html#BoualouacheM17,https://doi.org/10.1007/s12083-016-0461-4 +Spiridoula V. Margariti,On probabilistic flooding search over unstructured peer-to-peer networks.,2015,8,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna8.html#MargaritiD15,https://doi.org/10.1007/s12083-014-0267-1 +Dimitrios Damopoulos,Exposing mobile malware from the inside (or what is your mobile app really doing?).,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#DamopoulosKGP14,https://doi.org/10.1007/s12083-012-0179-x +José Vicente Aguirre,Darkcube: A k-Hypercube based P2P VoIP protocol.,2017,10,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna10.html#AguirreAZ17,https://doi.org/10.1007/s12083-015-0415-2 +Jongsu Park,Network processor architecture with flow-based dynamic bandwidth control for efficient QoS provisioning.,2015,8,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna8.html#ParkL15,https://doi.org/10.1007/s12083-013-0227-1 +Woo-Sik Bae,Designing and verifying a P2P service security protocol in M2M environment.,2016,9,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna9.html#Bae16,https://doi.org/10.1007/s12083-015-0396-1 +Weichao Ding,DFA-VMP: An efficient and secure virtual machine placement strategy under cloud environment.,2018,11,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna11.html#DingGLCRLW18,https://doi.org/10.1007/s12083-016-0502-z +Xin Liu,On the collaboration of different peer-to-peer traffic management schemas.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#LiuWZ14,https://doi.org/10.1007/s12083-012-0168-0 +Dongqing Xu,A provably secure anonymous mutual authentication scheme with key agreement for SIP using ECC.,2018,11,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna11.html#XuZCM18,https://doi.org/10.1007/s12083-017-0583-3 +Minhui Xue,Characterizing user behaviors in location-based find-and-flirt services: Anonymity and demographics - A WeChat Case Study.,2017,10,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna10.html#XueYRQ17,https://doi.org/10.1007/s12083-016-0444-5 +Tarciana Silva,A flexible DHT-based directory service for information management.,2015,8,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna8.html#SilvaKFS15,https://doi.org/10.1007/s12083-014-0277-z +Jin He,NetSecCC: A scalable and fault-tolerant architecture for cloud computing security.,2016,9,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna9.html#HeDOFW16,https://doi.org/10.1007/s12083-014-0314-y +Xianghan Zheng,A survey on peer-to-peer SIP based communication systems.,2010,3,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna3.html#ZhengO10,http://www.springerlink.com/content/7853k6177321743h/ +Santosh Kumar Das,IE2M: Design of intellectual energy efficient multicast routing protocol for ad-hoc network.,2017,10,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna10.html#DasYT17,https://doi.org/10.1007/s12083-016-0532-6 +Yi-Nan Guo,A novel knowledge-guided evolutionary scheduling strategy for energy-efficient connected coverage optimization in WSNs.,2017,10,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna10.html#GuoCLGX17,https://doi.org/10.1007/s12083-016-0518-4 +Kübra Kalkan,Key distribution scheme for peer-to-peer communication in mobile underwater wireless sensor networks.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#KalkanL14,https://doi.org/10.1007/s12083-012-0182-2 +Xiaotong Wu,A scalable and automatic mechanism for resource allocation in self-organizing cloud.,2016,9,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna9.html#WuLDGY16,https://doi.org/10.1007/s12083-014-0309-8 +Xin Cong,SBDP: Bandwidth prediction mechanism towards server demands in P2P-VoD system.,2015,8,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna8.html#CongSSYZ15,https://doi.org/10.1007/s12083-014-0273-3 +Yi-Hong Tan,Organisation and management of shared documents in super-peer networks based semantic hierarchical cluster trees.,2012,5,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna5.html#TanLL12,https://doi.org/10.1007/s12083-012-0123-0 +Luca Maria Aiello,An identity-based approach to secure P2P applications with Likir.,2011,4,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna4.html#AielloMRS11,https://doi.org/10.1007/s12083-010-0099-6 +Linchen Yu,Key frame extraction scheme based on sliding window and features.,2018,11,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna11.html#YuCCC18,https://doi.org/10.1007/s12083-017-0567-3 +Kitae Jeong,Security analysis of block cipher Piccolo suitable for wireless sensor networks.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#Jeong14,https://doi.org/10.1007/s12083-012-0196-9 +Bo Zhang,Peer-to-peer error recovery for wireless video broadcasting.,2015,8,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna8.html#ZhangCC15,https://doi.org/10.1007/s12083-014-0297-8 +Peiyan Yuan,OPPO: An optimal copy allocation scheme in mobile opportunistic networks.,2018,11,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna11.html#YuanW18,https://doi.org/10.1007/s12083-016-0472-1 +Gulustan Dogan,MultiProTru: A kalman filtering based trust architecture for two-hop wireless sensor networks.,2017,10,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna10.html#DoganA17,https://doi.org/10.1007/s12083-016-0446-3 +Yujue Wang,Ownership-hidden group-oriented proofs of storage from pre-homomorphic signatures.,2018,11,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna11.html#WangWQCHL18,https://doi.org/10.1007/s12083-016-0530-8 +Wanru Xu,Connection is power: Near optimal advertisement infrastructure placement for vehicular fogs.,2018,11,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna11.html#XuYJ18,https://doi.org/10.1007/s12083-017-0571-7 +,Editor's Note: Special issue on advanced P2P security and privacy.,2015,8,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna8.html#X15,https://doi.org/10.1007/s12083-015-0358-7 +Liping Zhang 0003,A lightweight privacy preserving authenticated key agreement protocol for SIP-based VoIP.,2016,9,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna9.html#ZhangTZ16,https://doi.org/10.1007/s12083-014-0317-8 +Chao Liang,Enabling broadcast of user-generated live video without servers.,2012,5,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna5.html#LiangL12,https://doi.org/10.1007/s12083-011-0102-x +Heng He,An efficient ECC-based mechanism for securing network coding-based P2P content distribution.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#HeLXX14,https://doi.org/10.1007/s12083-013-0239-x +Oscar Escalante,Sparse structures for searching and broadcasting algorithms over internet graphs and peer-to-peer computing systems.,2011,4,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna4.html#EscalantePSS11,https://doi.org/10.1007/s12083-010-0077-z +Wei-Ming Chen,Backup routing firewall mechanism in P2P environment.,2014,7,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna7.html#ChenCCCC14,https://doi.org/10.1007/s12083-012-0145-7 +Hezhe Wang,NWBBMP: a novel weight-based buffer management policy for DTN routing protocols.,2018,11,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna11.html#WangWFL18,https://doi.org/10.1007/s12083-017-0597-x +Qichao Xu,Analysis to reveal evolution and topological features of a real mobile social network.,2017,10,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna10.html#XuSXFH17,https://doi.org/10.1007/s12083-016-0494-8 +Chao Sha,A type of energy-efficient data gathering method based on single sink moving along fixed points.,2018,11,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna11.html#ShaQLQW18,https://doi.org/10.1007/s12083-016-0534-4 +Diego Suarez Touceda,Decentralized certification scheme for secure admission in on-the-fly peer-to-peer systems.,2012,5,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna5.html#ToucedaCS12,https://doi.org/10.1007/s12083-011-0113-7 +San-Min Liu,Active learning for P2P traffic identification.,2015,8,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna8.html#LiuS15,https://doi.org/10.1007/s12083-014-0281-3 +Adán G. Medrano-Chávez,A performance comparison of Chord and Kademlia DHTs in high churn scenarios.,2015,8,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna8.html#Medrano-ChavezC15,https://doi.org/10.1007/s12083-014-0294-y +Aanchal,Green computing for wireless sensor networks: Optimization and Huffman coding approach.,2017,10,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna10.html#AanchalKKA17,https://doi.org/10.1007/s12083-016-0511-y +Qiang Wang,Popularity-aware prefetch in P2P range caching.,2010,3,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna3.html#WangDO10,https://doi.org/10.1007/s12083-009-0054-6 +Shengke Zeng,Concurrently deniable ring authentication and its application to LBS in VANETs.,2017,10,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna10.html#ZengCTH17,https://doi.org/10.1007/s12083-016-0433-8 +Nima Jafari Navimipour,A comprehensive study of the resource discovery techniques in Peer-to-Peer networks.,2015,8,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna8.html#NavimipourM15,https://doi.org/10.1007/s12083-014-0271-5 +Jun-Li Kuo,Advanced bootstrap and adjusted bandwidth for content distribution in peer-to-peer live streaming.,2015,8,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna8.html#KuoSHC15,https://doi.org/10.1007/s12083-014-0263-5 +Hongling Jiang,Detecting P2P botnets by discovering flow dependency in CandC traffic.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#JiangS14,https://doi.org/10.1007/s12083-012-0150-x +Dmitry G. Korzun,"Survey on hierarchical routing schemes in ""flat"" distributed hash tables.",2011,4,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna4.html#KorzunG11,https://doi.org/10.1007/s12083-010-0093-z +Michele Amoretti,Measuring the complexity of adaptive peer-to-peer systems.,2016,9,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna9.html#AmorettiG16,https://doi.org/10.1007/s12083-015-0385-4 +Le Chang,Optimizing BitTorrent-like peer-to-peer systems in the presence of network address translation devices.,2011,4,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna4.html#ChangLWP11,https://doi.org/10.1007/s12083-010-0083-1 +Cheol-Joo Chae,A privacy data leakage prevention method in P2P networks.,2016,9,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna9.html#ChaeSCKC16,https://doi.org/10.1007/s12083-015-0371-x +Nouha Oualha,Verifying remote data integrity in peer-to-peer data storage: A comprehensive survey of protocols.,2012,5,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna5.html#OualhaLR12,https://doi.org/10.1007/s12083-011-0117-3 +Donghyeok Lee,De-identification of metering data for smart grid personal security in intelligent CCTV-based P2P cloud computing environment.,2018,11,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna11.html#LeePKJ18,https://doi.org/10.1007/s12083-018-0637-1 +Radhika Vinod,Performance-driven calibration of ERGO.,2010,3,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna3.html#VinodEA10,https://doi.org/10.1007/s12083-009-0042-x +Max Bhatia,Identifying P2P traffic: A survey.,2017,10,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna10.html#BhatiaR17,https://doi.org/10.1007/s12083-016-0471-2 +Yingguang Li,XCube: Processing XPath queries in a hypercube overlay network.,2009,2,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna2.html#LiOT09,https://doi.org/10.1007/s12083-008-0025-3 +Maede Ashouri-Talouki,An efficient privacy-preserving P2P protocol for computing maximum value in the presence of active adversaries.,2018,11,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna11.html#Ashouri-Talouki18,https://doi.org/10.1007/s12083-016-0490-z +Fu-Hau Hsu,Image reversibility in data embedding on the basis of blocking-predictions.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#HsuWYW14,https://doi.org/10.1007/s12083-013-0212-8 +Maozhen Li,Facilitating resource discovery in grid environments with peer-to-peer structured tuple spaces.,2009,2,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna2.html#LiQ09,https://doi.org/10.1007/s12083-009-0036-8 +Kshitiz Verma,Energy-optimal collaborative file distribution in wired networks.,2017,10,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna10.html#VermaRARAZG17,https://doi.org/10.1007/s12083-016-0453-4 +Lu Liu 0001,Efficient and scalable search on scale-free P2P networks.,2009,2,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna2.html#LiuXRTW09,https://doi.org/10.1007/s12083-008-0023-5 +Ching-Sheng Wang,P2P-based mobile navigation system with location service.,2015,8,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna8.html#WangCD15,https://doi.org/10.1007/s12083-013-0204-8 +Thejaswini M,Duration of stay based weighted scheduling framework for mobile phone sensor data collection in opportunistic crowd sensing.,2016,9,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna9.html#MRD16,https://doi.org/10.1007/s12083-015-0382-7 +Joy Iong-Zong Chen,Algorithms for promoting anonymity of BS and for prolonging network lifetime of WSN.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#ChenL14,https://doi.org/10.1007/s12083-012-0194-y +SungHyun Yun,The biometric signature delegation scheme to balance the load of digital signing in hybrid P2P networks.,2015,8,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna8.html#YunLC15,https://doi.org/10.1007/s12083-014-0278-y +Wail Mardini,Adaptive RSSI-based localization scheme for wireless sensor networks.,2016,9,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna9.html#MardiniKAE16,https://doi.org/10.1007/s12083-015-0370-y +Shihabur Rahman Chowdhury,A taxonomy of decentralized online social networks.,2015,8,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna8.html#ChowdhuryRSD15,https://doi.org/10.1007/s12083-014-0258-2 +Nikolaos Efthymiopoulos,LiquidStream - network dependent dynamic P2P live streaming.,2011,4,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna4.html#EfthymiopoulosCDK11,https://doi.org/10.1007/s12083-010-0092-0 +Yongjun Ren,Efficient data integrity auditing for storage security in mobile health cloud.,2016,9,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna9.html#RenSZWC16,https://doi.org/10.1007/s12083-015-0346-y +Hoill Jung,P2P context awareness based sensibility design recommendation using color and bio-signal analysis.,2016,9,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna9.html#JungC16,https://doi.org/10.1007/s12083-015-0398-z +Pascal Felber,Pulp: An adaptive gossip-based dissemination protocol for multi-source message streams.,2012,5,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna5.html#FelberKLRV12,https://doi.org/10.1007/s12083-011-0110-x +Mi Wen,EAPA: An efficient authentication protocol against pollution attack for smart grid.,2015,8,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna8.html#WenLBL15,https://doi.org/10.1007/s12083-014-0283-1 +Seungmin Rho,An efficient peer-to-peer and distributed scheduling for cloud and grid computing.,2015,8,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna8.html#RhoCKL15,https://doi.org/10.1007/s12083-014-0270-6 +Zhixin Liu,Outage performance improvement with cooperative relaying in cognitive radio networks.,2017,10,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna10.html#LiuYFG17,https://doi.org/10.1007/s12083-015-0417-0 +Chow-Sing Lin,Dynamic peer buffer adjustment to improve service availability on peer-to-peer on-demand streaming networks.,2014,7,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna7.html#LinY14,https://doi.org/10.1007/s12083-012-0138-6 +Jian Wang 0003,Computational data privacy in wireless networks.,2017,10,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna10.html#WangWLDO17,https://doi.org/10.1007/s12083-016-0435-6 +Haikuo Shen,A noncontact positioning measuring system based on distributed wireless networks.,2017,10,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna10.html#ShenZN17,https://doi.org/10.1007/s12083-016-0525-5 +Hao Hu,TPSQ: Trust-based platoon service query via vehicular communications.,2017,10,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna10.html#HuLZ17,https://doi.org/10.1007/s12083-015-0425-0 +Razib Iqbal,DAg-stream: Distributed video adaptation for overlay streaming to heterogeneous devices.,2009,2,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna2.html#IqbalS09,https://doi.org/10.1007/s12083-009-0031-0 +Si-Jung Kim,Key exchange process of PIM-SM-based for Multiple Group Communication in P2P.,2015,8,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna8.html#KimK15,https://doi.org/10.1007/s12083-014-0274-2 +Harisankar Haridas,CAPS: A cloud-assisted approach to handle spikes in peer-to-peer web search.,2016,9,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna9.html#HaridasD16,https://doi.org/10.1007/s12083-014-0322-y +Peng Yang,An ISP-friendly inter-overlay coordination framework for multiple coexisting P2P systems.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#YangX14,https://doi.org/10.1007/s12083-013-0201-y +Guruprasad Khataniar,Avoidance of churn rate through temporal centralization in Chord.,2011,4,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna4.html#KhataniarG11,https://doi.org/10.1007/s12083-010-0080-4 +Gabriela Gheorghe,Security and privacy issues in P2P streaming systems: A survey.,2011,4,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna4.html#GheorgheCM11,https://doi.org/10.1007/s12083-010-0070-6 +Wei Wang 0056,VD-PSO: An efficient mobile sink routing algorithm in wireless sensor networks.,2017,10,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna10.html#0056SWHGWXC17,https://doi.org/10.1007/s12083-016-0504-x +Kai Fan,An ultra-lightweight RFID authentication scheme for mobile commerce.,2017,10,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna10.html#FanGGLSY17,https://doi.org/10.1007/s12083-016-0443-6 +Rui Santos Cruz,A P2P streaming architecture supporting scalable media.,2015,8,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna8.html#CruzN15,https://doi.org/10.1007/s12083-014-0284-0 +Yeonsu Jung,Multi-hop data forwarding method for crowd sensing networks.,2016,9,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna9.html#JungB16,https://doi.org/10.1007/s12083-015-0333-3 +Venkatasamy Sureshkumar,A robust mutual authentication scheme for session initiation protocol with key establishment.,2018,11,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna11.html#SureshkumarAR18,https://doi.org/10.1007/s12083-017-0595-z +Rong Ma,Serial number based encryption and its application for mobile social networks.,2017,10,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna10.html#MaC17,https://doi.org/10.1007/s12083-016-0445-4 +Chunhsien Sung,Copyright infringement and users of P2P networks in multimedia applications: The case of the U.S. Copyright regime.,2014,7,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna7.html#SungH14,https://doi.org/10.1007/s12083-012-0160-8 +Do-Yun Kim,Cooperative device discovery for multi-interface self-organizing networks.,2016,9,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna9.html#KimC16,https://doi.org/10.1007/s12083-015-0359-6 +Thibault Cholez,Detection and mitigation of localized attacks in a widely deployed P2P network.,2013,6,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna6.html#CholezCFD13,https://doi.org/10.1007/s12083-012-0137-7 +Chao Hu,EUE principle of resource scheduling for live streaming systems underlying CDN-P2P hybrid architecture.,2012,5,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna5.html#HuCXX12,https://doi.org/10.1007/s12083-012-0140-z +Xingyan Zhang,Adaptive flow scheduling for modular datacenter networks.,2017,10,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna10.html#Zhang17,https://doi.org/10.1007/s12083-016-0466-z +Ennan Zhai,Sorcery: Overcoming deceptive votes in P2P content sharing systems.,2011,4,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna4.html#ZhaiSQC11,https://doi.org/10.1007/s12083-010-0074-2 +Huseyin Guler,Task allocation in volunteer computing networks under monetary budget constraints.,2015,8,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna8.html#GulerCO15,https://doi.org/10.1007/s12083-014-0301-3 +Tongxiang Wang,Efficient multi-tasks scheduling algorithm in mobile cloud computing with time constraints.,2018,11,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna11.html#WangWTF18,https://doi.org/10.1007/s12083-017-0561-9 +Aditya Kurve,Optimizing cluster formation in super-peer networks via local incentive design.,2015,8,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna8.html#KurveG0K15,https://doi.org/10.1007/s12083-013-0206-6 +Minoo Kargar Bideh,Adaptive content-and-deadline aware chunk scheduling in mesh-based P2P video streaming.,2016,9,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna9.html#BidehAS16,https://doi.org/10.1007/s12083-015-0355-x +Nadir Shah,MANET adaptive structured P2P overlay.,2012,5,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna5.html#ShahQW12,https://doi.org/10.1007/s12083-011-0115-5 +Kun Lu 0003,An Eigentrust dynamic evolutionary model in P2P file-sharing systems.,2016,9,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna9.html#LuWL16,https://doi.org/10.1007/s12083-015-0416-1 +Jiachao Chen,Energy-efficient content distribution via mobile users cooperations in cellular networks.,2017,10,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna10.html#ChenWQPZ17,https://doi.org/10.1007/s12083-016-0519-3 +Jia Wu,Sensor communication area and node extend routing algorithm in opportunistic networks.,2018,11,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna11.html#WuC18,https://doi.org/10.1007/s12083-016-0526-4 +Sheng-Wei Wang,General packet induced queueing schemes for reducing packet delays in ADSL routers with peer-to-peer file sharing applications.,2014,7,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna7.html#WangC14,https://doi.org/10.1007/s12083-013-0197-3 +Muhammad Salman Raheel,Achieving maximum utilization of peer's upload capacity in p2p networks using SVC.,2017,10,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna10.html#RaheelRR17,https://doi.org/10.1007/s12083-015-0406-3 +Vineet Nagrath,Peer to peer trade in HTM5 meta model for agent oriented cloud robotic systems.,2016,9,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna9.html#NagrathMMSM16,https://doi.org/10.1007/s12083-015-0339-x +Yong Liu,A survey on peer-to-peer video streaming systems.,2008,1,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna1.html#LiuGL08,https://doi.org/10.1007/s12083-007-0006-y +Durgesh Rani Kumari,Ad-hoc limited scale-free models for unstructured peer-to-peer networks.,2011,4,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna4.html#KumariGY11,https://doi.org/10.1007/s12083-010-0067-1 +Yong Zhou 0006,Opportunistic cooperation in wireless ad hoc networks with interference correlation.,2017,10,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna10.html#ZhouZ17,https://doi.org/10.1007/s12083-015-0422-3 +Dimitrios K. Vassilakis,An analysis of peer-to-peer networks with altruistic peers.,2009,2,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna2.html#VassilakisV09,https://doi.org/10.1007/s12083-008-0024-4 +Wenbo Shi,On the security of a certificateless online/offline signcryption for Internet of Things.,2015,8,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna8.html#ShiKGCC15,https://doi.org/10.1007/s12083-014-0249-3 +Yinbin Miao,VMKDO: Verifiable multi-keyword search over encrypted cloud data for dynamic data-owner.,2018,11,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna11.html#MiaoMLLSW18,https://doi.org/10.1007/s12083-016-0487-7 +Chao Ma,Uncoordinated coexisting IEEE 802.15.4 networks for machine to machine communications.,2014,7,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna7.html#MaHCT14,https://doi.org/10.1007/s12083-012-0154-6 +Qian Zhang,Cost-effective capacity migration of Peer-to-Peer social media to clouds.,2013,6,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna6.html#ZhangLW13,https://doi.org/10.1007/s12083-012-0148-4 +Chih-Lin Hu,Downloading trace study for BitTorrent P2P performance measurement and analysis.,2012,5,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna5.html#HuL12,https://doi.org/10.1007/s12083-012-0146-6 +Yeqi Lu,Tag-based personalized image ranking in event browsing.,2013,6,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna6.html#LuSG13,https://doi.org/10.1007/s12083-013-0214-6 +Gang Yu,Attribute-based signcryption with hybrid access policy.,2017,10,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna10.html#YuC17,https://doi.org/10.1007/s12083-015-0423-2 +Shree Garg,Scalable P2P bot detection system based on network data stream.,2016,9,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna9.html#GargPS16,https://doi.org/10.1007/s12083-016-0440-9 +Chun-Ta Li,Towards secure authenticating of cache in the reader for RFID-based IoT systems.,2018,11,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna11.html#LiLWC18,https://doi.org/10.1007/s12083-017-0564-6 +Yung-Joon Jung,A real-time responsiveness measurement method of linux-based mobile systems for P2P cloud systems.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#JungLKLC14,https://doi.org/10.1007/s12083-013-0219-1 +Fotis Loukos,Reputation based friend-to-friend networks.,2009,2,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna2.html#LoukosK09,https://doi.org/10.1007/s12083-008-0019-1 +Xiao Liu,Big program code dissemination scheme for emergency software-define wireless sensor networks.,2018,11,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna11.html#LiuLZL18,https://doi.org/10.1007/s12083-017-0565-5 +Guangsheng Feng,Optimizing broadcast duration for layered video streams in cellular networks.,2017,10,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna10.html#FengLZWLL17,https://doi.org/10.1007/s12083-016-0498-4 +Theerasak Thapngam,Distributed Denial of Service (DDoS) detection by traffic pattern analysis.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#ThapngamYZM14,https://doi.org/10.1007/s12083-012-0173-3 +Moritz Steiner,Evaluating and improving the content access in KAD.,2010,3,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna3.html#SteinerCB10,https://doi.org/10.1007/s12083-009-0053-7 +Rohit Verma,A dynamic web service registry framework for mobile environments.,2018,11,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna11.html#VermaS18,https://doi.org/10.1007/s12083-016-0540-6 +Alireza Naghizadeh,C-trust: A trust management system to improve fairness on circular P2P networks.,2016,9,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna9.html#NaghizadehRMHA16,https://doi.org/10.1007/s12083-015-0402-7 +Wenlong Chen,On storage partitioning of internet routing tables: A P2P-based enhancement for scalable routers.,2015,8,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna8.html#ChenLW15,https://doi.org/10.1007/s12083-014-0303-1 +Yung-Ting Chuang,Protecting against malicious and selective forwarding attacks for P2P search and retrieval system.,2017,10,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna10.html#Chuang17,https://doi.org/10.1007/s12083-016-0500-1 +Yang Zong-chang,Modeling and forecasting of daily online-user movement in instant messaging based on the elliptic-orbit model: A case study for China.,2016,9,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna9.html#Zong-chang16,https://doi.org/10.1007/s12083-015-0336-0 +Roberto Canonico,Experimental evaluation of peer-to-peer applications.,2013,6,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna6.html#CanonicoCD13,https://doi.org/10.1007/s12083-012-0177-z +Bo Li 0001,Peer-to-peer in big data management.,2013,6,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna6.html#0001L13,https://doi.org/10.1007/s12083-013-0243-1 +Imre Kelényi,Modeling resource constrained BitTorrent proxies for energy efficient mobile content sharing.,2012,5,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna5.html#KelenyiNLL12,https://doi.org/10.1007/s12083-011-0107-5 +Yu-Yi Chen,A design of IPTV conditional access mechanism based on P2P network.,2014,7,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna7.html#Chen14,https://doi.org/10.1007/s12083-012-0158-2 +Fei Chen 0010,Migrating big video data to cloud: a peer-assisted approach for VoD.,2018,11,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna11.html#ChenLLLXH18,https://doi.org/10.1007/s12083-017-0575-3 +Daniel R. Karrels,Structured P2P technologies for distributed command and control.,2009,2,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna2.html#KarrelsPM09,https://doi.org/10.1007/s12083-009-0033-y +Ahmed Ibrahim Mohammed Saleh,An Adaptive hybrid routing strategy (AHRS) for mobile ad hoc networks.,2018,11,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna11.html#SalehAH18,https://doi.org/10.1007/s12083-017-0558-4 +Joohee Kim,Stereo-based region of interest generation for real-time pedestrian detection.,2015,8,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna8.html#KimM15,https://doi.org/10.1007/s12083-013-0234-2 +Kitae Jeong,Weakness of lightweight block ciphers mCrypton and LED against biclique cryptanalysis.,2015,8,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna8.html#JeongKLSHL15,https://doi.org/10.1007/s12083-013-0208-4 +Fan Wu 0003,A new and secure authentication scheme for wireless sensor networks with formal proof.,2017,10,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna10.html#WuXKL17,https://doi.org/10.1007/s12083-015-0404-5 +Jiahao Zhang,Towards fast and lightweight spam account detection in mobile social networks through fog computing.,2018,11,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna11.html#ZhangLWFG18,https://doi.org/10.1007/s12083-017-0559-3 +Shadi Ibrahim,Handling partitioning skew in MapReduce using LEEN.,2013,6,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna6.html#IbrahimJLHAW13,https://doi.org/10.1007/s12083-013-0213-7 +Salah Noori Saleh,Semi-Fluid content distribution model for fast data dissemination in heterogeneous overlay networks.,2014,7,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna7.html#SalehFRS14,https://doi.org/10.1007/s12083-012-0192-0 +Zaher Al Aghbari,Dynamic storage and access load balancing for answering range queries in peer-to-peer networks.,2011,4,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna4.html#AghbariKM11,https://doi.org/10.1007/s12083-010-0097-8 +Mema Roussopoulos,Stealth modification versus nuisance attacks in the LOCKSS peer-to-peer digital preservation system.,2010,3,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna3.html#RoussopoulosB10,https://doi.org/10.1007/s12083-009-0055-5 +Fangai Liu,A hierarchical HRRP(k) network and its application.,2015,8,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna8.html#LiuLX15,https://doi.org/10.1007/s12083-014-0253-7 +Jong Tak Kim,P2P-based u-health cluster service model for silver generation in PBR platform.,2016,9,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna9.html#KimPK16,https://doi.org/10.1007/s12083-015-0387-2 +Ping He,Tree-based data retrieval algorithm for multi-item request with deadline in wireless networks.,2016,9,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna9.html#HeSL16,https://doi.org/10.1007/s12083-014-0316-9 +Yuan Ren,Robust beamforming and artificial noise design in interference networks with wireless information and power transfer.,2017,10,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna10.html#RenGL17,https://doi.org/10.1007/s12083-016-0509-5 +Thong Huynh,Simultaneous mobility of data sources and content requesters in content-centric networking.,2017,10,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna10.html#HuynhPLH17,https://doi.org/10.1007/s12083-015-0405-4 +Stéphane Caron,P2P storage systems: Study of different placement policies.,2014,7,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna7.html#CaronGMMP14,https://doi.org/10.1007/s12083-013-0203-9 +JunWeon Yoon,Evaluation of P2P and cloud computing as platform for exhaustive key search on block ciphers.,2018,11,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna11.html#YoonHCPKY18,https://doi.org/10.1007/s12083-018-0641-5 +Fengyong Li,Efficient steganographer detection over social networks with sampling reconstruction.,2018,11,Peer-to-Peer Networking and Applications,5,db/journals/ppna/ppna11.html#LiWLR18,https://doi.org/10.1007/s12083-017-0603-3 +Guangqian Xie,Energy-efficient routing for mobile data collectors in wireless sensor networks with obstacles.,2017,10,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna10.html#XieODPL17,https://doi.org/10.1007/s12083-016-0529-1 +Qinghe Du,Interference-constrained routing over P2P-share enabled multi-hop D2D networks.,2017,10,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna10.html#DuLXSSR17,https://doi.org/10.1007/s12083-016-0539-z +Elnaz Mojahedi,Modeling the propagation of topology-aware P2P worms considering temporal parameters.,2015,8,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna8.html#MojahediA15,https://doi.org/10.1007/s12083-013-0242-2 +Fraser Cadger,Towards a location and mobility-aware routing protocol for improving multimedia streaming performance in MANETs.,2015,8,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna8.html#CadgerCSM15,https://doi.org/10.1007/s12083-014-0280-4 +Lingwei Xu,Joint TAS and power allocation for D2D cooperative networks.,2017,10,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna10.html#XuZG17,https://doi.org/10.1007/s12083-016-0454-3 +Kshirasagar Naik,Special issue on protocols and applications for wireless and mobile peer-to-peer networks.,2012,5,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna5.html#Naik12,https://doi.org/10.1007/s12083-011-0119-1 +Di Wu 0007,Identity privacy-based reliable routing method in VANETs.,2014,7,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna7.html#WuWSLZ14,https://doi.org/10.1007/s12083-012-0143-9 +Geeta Sharma,Identity based secure authentication scheme based on quantum key distribution for cloud computing.,2018,11,Peer-to-Peer Networking and Applications,2,db/journals/ppna/ppna11.html#SharmaK18,https://doi.org/10.1007/s12083-016-0528-2 +Mohammad A. Khan,MobiStore: A system for efficient mobile P2P data sharing.,2017,10,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna10.html#KhanYZB17,https://doi.org/10.1007/s12083-016-0450-7 +S. Rajkumar,Reliable multistage interconnection network design.,2016,9,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna9.html#RajkumarG16,https://doi.org/10.1007/s12083-015-0368-5 +Yanjun Li,Goodput optimization via dynamic frame length and charging time adaptation for backscatter communication.,2017,10,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna10.html#LiFYSCZ17,https://doi.org/10.1007/s12083-016-0480-1 +Adnan Ahmed,Energy-aware and secure routing with trust for disaster response wireless sensor network.,2017,10,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna10.html#AhmedBCKH17,https://doi.org/10.1007/s12083-015-0421-4 +Yuezhi Zhou,A case for software-defined code scheduling based on transparent computing.,2018,11,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna11.html#ZhouTZLZ18,https://doi.org/10.1007/s12083-017-0552-x +Yunzhao Li,Reward only is not enough: Evaluating and improving the fairness policy of the P2P file sharing network eMule/eDonkey.,2012,5,Peer-to-Peer Networking and Applications,1,db/journals/ppna/ppna5.html#LiGS12,https://doi.org/10.1007/s12083-011-0106-6 +Deger Cenk Erdil,Gossiping protocols for hybrid grid resource scheduling.,2009,2,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna2.html#ErdilL09,https://doi.org/10.1007/s12083-009-0028-8 +Jiannong Cao,Guest editorial: special issue on transparent computing.,2018,11,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna11.html#CaoCMR18,https://doi.org/10.1007/s12083-017-0617-x +Yu Zhang,The IoT electric business model: Using blockchain technology for the internet of things.,2017,10,Peer-to-Peer Networking and Applications,4,db/journals/ppna/ppna10.html#ZhangW17,https://doi.org/10.1007/s12083-016-0456-1 +Qiyi Han,Self-nominating trust model based on hierarchical fuzzy systems for peer-to-peer networks.,2016,9,Peer-to-Peer Networking and Applications,6,db/journals/ppna/ppna9.html#HanWFWR16,https://doi.org/10.1007/s12083-015-0365-8 +Xiufang Shi,A novel mobile target localization algorithm via HMM-based channel sight condition identification.,2017,10,Peer-to-Peer Networking and Applications,3,db/journals/ppna/ppna10.html#ShiCYY17,https://doi.org/10.1007/s12083-016-0484-x +Raúl Rengel,Supervised Coursework as a Way of Improving Motivation in the Learning of Digital Electronics.,2012,55,IEEE Trans. Education,4,db/journals/te/te55.html#RengelMV12,https://doi.org/10.1109/TE.2012.2194293 +Juvenal Rodríguez-Reséndiz,Adjustable Speed Drive Project for Teaching a Servo Systems Course Laboratory.,2011,54,IEEE Trans. Education,4,db/journals/te/te54.html#Rodriguez-ResendizRR11,https://doi.org/10.1109/TE.2011.2106213 +Salvador Ros,Using Virtualization and Automatic Evaluation: Adapting Network Services Management Courses to the EHEA.,2012,55,IEEE Trans. Education,2,db/journals/te/te55.html#RosRHCP12,https://doi.org/10.1109/TE.2011.2160544 +Teri Reed Rhoads,Student attitudes toward statistics before and after a computer-integrated introductory statistics course.,2000,43,IEEE Trans. Education,2,db/journals/te/te43.html#RhoadsH00,https://doi.org/10.1109/13.848071 +Sumit Dutta,A Web Service and Interface for Remote Electronic Device Characterization.,2011,54,IEEE Trans. Education,4,db/journals/te/te54.html#DuttaPEP11,https://doi.org/10.1109/TE.2011.2105488 +Chris R. Smaill,The implementation and evaluation of OASIS: a web-based learning and assessment tool for large classes.,2005,48,IEEE Trans. Education,4,db/journals/te/te48.html#Smaill05,https://doi.org/10.1109/TE.2005.852590 +Karen A. Panetta,2016 IEEE Educational Activities Board Awards.,2017,60,IEEE Trans. Education,1,db/journals/te/te60.html#PanettaSCSBROMB17,https://doi.org/10.1109/TE.2016.2637478 +özgür Yilmaz,A Mixed Learning Approach in Mechatronics Education.,2011,54,IEEE Trans. Education,2,db/journals/te/te54.html#YilmazT11,https://doi.org/10.1109/TE.2010.2053932 +Florian Kulmer,The Magnitude Response Learning Tool for DSP Education: A Case Study.,2016,59,IEEE Trans. Education,4,db/journals/te/te59.html#KulmerWG16,https://doi.org/10.1109/TE.2016.2546226 +Victor Wacham A. Mbarika,Identification of factors that lead to perceived learning improvements for female students.,2003,46,IEEE Trans. Education,1,db/journals/te/te46.html#MbarikaSR03,https://doi.org/10.1109/TE.2002.804407 +Jerry S. Branson,A simplistic printed circuit board fabrication process for course projects.,2000,43,IEEE Trans. Education,3,db/journals/te/te43.html#BransonNE00,https://doi.org/10.1109/13.865197 +Alexander Abramovitz,An Approach to Average Modeling and Simulation of Switch-Mode Systems.,2011,54,IEEE Trans. Education,3,db/journals/te/te54.html#Abramovitz11,https://doi.org/10.1109/TE.2011.2146784 +David Braun,Teaching Sustainability Analysis in Electrical Engineering Lab Courses.,2010,53,IEEE Trans. Education,2,db/journals/te/te53.html#Braun10,https://doi.org/10.1109/TE.2009.2013940 +Ludo Weyten,Validation of Symbolic Expressions in Circuit Analysis E-Learning.,2011,54,IEEE Trans. Education,4,db/journals/te/te54.html#WeytenRCB11,https://doi.org/10.1109/TE.2010.2090882 +Imran A. Zualkernan,Learning Styles of Computer Programming Students: A Middle Eastern and American Comparison.,2006,49,IEEE Trans. Education,4,db/journals/te/te49.html#ZualkernanAQ06,https://doi.org/10.1109/TE.2006.882366 +Polycarp I. Muoka,DSP-Based Hands-On Laboratory Experiments for Photovoltaic Power Systems.,2015,58,IEEE Trans. Education,1,db/journals/te/te58.html#MuokaHGN15,https://doi.org/10.1109/TE.2014.2323937 +Bruce G. Colpitts,Teaching transmission lines: a project of measurement and simulation.,2002,45,IEEE Trans. Education,3,db/journals/te/te45.html#Colpitts02,https://doi.org/10.1109/TE.2002.1024617 +José Sánchez 0002,A Java/Matlab-based environment for remote control system laboratories: illustrated with an inverted pendulum.,2004,47,IEEE Trans. Education,3,db/journals/te/te47.html#SanchezDPM04,https://doi.org/10.1109/TE.2004.825525 +Maria Teresa Baldassarre,Cloud Computing for Education: A Systematic Mapping Study.,2018,61,IEEE Trans. Education,3,db/journals/te/te61.html#BaldassarreCDGV18,https://doi.org/10.1109/TE.2018.2796558 +Ying Tang,Vertical Integration of System-on-Chip Concepts in the Digital Design Curriculum.,2011,54,IEEE Trans. Education,2,db/journals/te/te54.html#TangHRC11,https://doi.org/10.1109/TE.2010.2050773 +Felipe Mateos,Improving laboratory training for automation and process control courses with a specifically designed testing software application.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#MateosLGE01,https://doi.org/10.1109/13.925869 +Nourdine Aliane,A Matlab/Simulink-Based Interactive Module for Servo Systems Learning.,2010,53,IEEE Trans. Education,2,db/journals/te/te53.html#Aliane10,https://doi.org/10.1109/TE.2009.2014468 +Sabih Güzelgöz,A Wireless Communications Systems Laboratory Course.,2010,53,IEEE Trans. Education,4,db/journals/te/te53.html#GuzelgozA10,https://doi.org/10.1109/TE.2009.2032166 +Antonio J. López-Martín,Teaching random signals and noise: an experimental approach.,2004,47,IEEE Trans. Education,2,db/journals/te/te47.html#Lopez-Martin04,https://doi.org/10.1109/TE.2004.824838 +Geet Parekh,Identifying Core Concepts of Cybersecurity: Results of Two Delphi Processes.,2018,61,IEEE Trans. Education,1,db/journals/te/te61.html#ParekhDHOPSS18,https://doi.org/10.1109/TE.2017.2715174 +Sung C. Hu,A wholesome ECE education.,2003,46,IEEE Trans. Education,4,db/journals/te/te46.html#Hu03,https://doi.org/10.1109/TE.2003.818753 +Herzl Aharoni,"An alternative approach for the determination of the ""OFF-ON"" turnover process in four-layer semiconductor devices.",2000,43,IEEE Trans. Education,4,db/journals/te/te43.html#AharoniL00,https://doi.org/10.1109/13.883354 +Andrew D. McGettrick,Computer engineering curriculum in the new millennium.,2003,46,IEEE Trans. Education,4,db/journals/te/te46.html#McGettrickTSS03,https://doi.org/10.1109/TE.2003.818755 +Stephan Hussmann,Crazy Car Race Contest: Multicourse Design Curricula in Embedded System Design.,2007,50,IEEE Trans. Education,1,db/journals/te/te50.html#HussmannJ07,https://doi.org/10.1109/TE.2006.888906 +Hewijin Christine Jiau,Enhancing Self-Motivation in Learning Programming Using Game-Based Simulation and Metrics.,2009,52,IEEE Trans. Education,4,db/journals/te/te52.html#JiauCS09,https://doi.org/10.1109/TE.2008.2010983 +Markeya S. Peteranetz,Helping Engineering Students Learn in Introductory Computer Science (CS1) Using Computational Creativity Exercises (CCEs).,2018,61,IEEE Trans. Education,3,db/journals/te/te61.html#PeteranetzFSS18,https://doi.org/10.1109/TE.2018.2804350 +Tanja Karp,Generation NXT: Building Young Engineers With LEGOs.,2010,53,IEEE Trans. Education,1,db/journals/te/te53.html#KarpGLMB10,https://doi.org/10.1109/TE.2009.2024410 +Jesús González 0001,The Use of Video-Gaming Devices as a Motivation for Learning Embedded Systems Programming.,2013,56,IEEE Trans. Education,2,db/journals/te/te56.html#GonzalezPDGRP13,https://doi.org/10.1109/TE.2012.2208194 +George Hassapis,An interactive electronic book approach for teaching computer implementation of industrial control systems.,2003,46,IEEE Trans. Education,1,db/journals/te/te46.html#Hassapis03,https://doi.org/10.1109/TE.2002.808227 +Denise Consonni,A modern approach to teaching basic experimental electricity and electronics.,2001,44,IEEE Trans. Education,1,db/journals/te/te44.html#ConsonniS01,https://doi.org/10.1109/13.912704 +Emilio Soria-Olivas,A novel approach to introducing adaptive filters based on the LMS algorithm and its variants.,2004,47,IEEE Trans. Education,1,db/journals/te/te47.html#Soria-OlivasCCMCM04,https://doi.org/10.1109/TE.2003.822632 +Orit Hazzan,Electricity in the Palms of Her Hands - The Perception of Electrical Engineering by Outstanding Female High School Pupils.,2005,48,IEEE Trans. Education,3,db/journals/te/te48.html#HazzanLT05,https://doi.org/10.1109/TE.2005.849728 +Leonardo Palma,Use of web-based materials to teach electric circuit theory.,2005,48,IEEE Trans. Education,4,db/journals/te/te48.html#PalmaMEH05,https://doi.org/10.1109/TE.2005.850711 +Gordana Jovanovic-Dolecek,MATLAB-Based Program for Teaching Autocorrelation Function and Noise Concepts.,2012,55,IEEE Trans. Education,3,db/journals/te/te55.html#Jovanovic-Dolecek12,https://doi.org/10.1109/TE.2011.2176736 +Ibrahim Chamas,Automated PSpice simulation as an effective design tool in teaching power electronics.,2004,47,IEEE Trans. Education,3,db/journals/te/te47.html#ChamasN04,https://doi.org/10.1109/TE.2004.825509 +José-Jesús Fernández,Educational issues on number representation and arithmetic in computers: an undergraduate laboratory.,2003,46,IEEE Trans. Education,4,db/journals/te/te46.html#FernandezGG03,https://doi.org/10.1109/TE.2003.815237 +Mario Simoni,Using Tablet PCs and Interactive Software in IC Design Courses to Improve Learning.,2011,54,IEEE Trans. Education,2,db/journals/te/te54.html#Simoni11,https://doi.org/10.1109/TE.2011.2105873 +Farhad Shahnia,Motivating Power System Protection Course Students by Practical and Computer-Based Activities.,2016,59,IEEE Trans. Education,2,db/journals/te/te59.html#ShahniaMY16,https://doi.org/10.1109/TE.2015.2448611 +Lorena Garcia,2017 IEEE Educational Activities Board Awards.,2018,61,IEEE Trans. Education,1,db/journals/te/te61.html#GarciaSMMFBMSLR18,https://doi.org/10.1109/TE.2017.2783546 +Javier Martínez-Román,Electrical Machines Laminations Magnetic Properties: A Virtual Instrument Laboratory.,2015,58,IEEE Trans. Education,3,db/journals/te/te58.html#Martinez-RomanP15,https://doi.org/10.1109/TE.2014.2348536 +Yu-Tzu Lin,Tracking Students' Cognitive Processes During Program Debugging - An Eye-Movement Approach.,2016,59,IEEE Trans. Education,3,db/journals/te/te59.html#LinWHLYC16,https://doi.org/10.1109/TE.2015.2487341 +Michalis Nik Xenos,Introduction of Synchronous Peer Collaboration Activities in a Distance Learning Course.,2009,52,IEEE Trans. Education,3,db/journals/te/te52.html#XenosASM09,https://doi.org/10.1109/TE.2008.928212 +Christopher P. Lee 0001,The Design of NetSecLab: A Small Competition-Based Network Security Lab.,2011,54,IEEE Trans. Education,1,db/journals/te/te54.html#LeeUFC11,https://doi.org/10.1109/TE.2010.2048215 +Inmaculada Plaza,Continuous Improvement in Electronic Engineering Education.,2007,50,IEEE Trans. Education,3,db/journals/te/te50.html#PlazaM07,https://doi.org/10.1109/TE.2007.901981 +Edward A. Billard,Introducing software engineering developments to a classical operating systems course.,2005,48,IEEE Trans. Education,1,db/journals/te/te48.html#Billard05,https://doi.org/10.1109/TE.2004.837049 +José Maria Giron-Sierra,A simple device and a project for the nonlinear control systems laboratory.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#Giron-Sierra01,https://doi.org/10.1109/13.925817 +Andrew B. Williams,The qualitative impact of using LEGO MINDSTORMS robots to teach computer engineering.,2003,46,IEEE Trans. Education,1,db/journals/te/te46.html#Williams03,https://doi.org/10.1109/TE.2002.808260 +Chien-Chou Shih,Learning Embedded Software Design in an Open 3A Multiuser Laboratory.,2011,54,IEEE Trans. Education,2,db/journals/te/te54.html#ShihH11,https://doi.org/10.1109/TE.2010.2053206 +Perfecto Reguera-Acevedo,Case-Based Reasoning and System Identification for Control Engineering Learning.,2008,51,IEEE Trans. Education,2,db/journals/te/te51.html#AcevedoMDV08,https://doi.org/10.1109/TE.2007.909361 +Bernardo Cuenca Grau,How to teach basic quantum mechanics to computer scientists and electrical engineers.,2004,47,IEEE Trans. Education,2,db/journals/te/te47.html#Grau04,https://doi.org/10.1109/TE.2004.825215 +Shuhui Li,Restructuring an electric Machinery course with an integrative approach and computer-assisted teaching methodology.,2006,49,IEEE Trans. Education,1,db/journals/te/te49.html#LiC06,https://doi.org/10.1109/TE.2005.852594 +Tanuj Saxena,Microcircuit Modeling and Simulation Beyond Ohm's Law.,2011,54,IEEE Trans. Education,1,db/journals/te/te54.html#SaxenaCTA11,https://doi.org/10.1109/TE.2010.2041932 +Susan B. Nolen,Affordances of Virtual and Physical Laboratory Projects for Instructional Design: Impacts on Student Engagement.,2018,61,IEEE Trans. Education,3,db/journals/te/te61.html#NolenK18,https://doi.org/10.1109/TE.2018.2791445 +Jeffrey Laut,Bioinspiring an Interest in STEM.,2015,58,IEEE Trans. Education,1,db/journals/te/te58.html#LautBP15,https://doi.org/10.1109/TE.2014.2324533 +Elena Trotskovsky,Students' Achievements and Misunderstandings When Solving Problems Using Electronics Models - A Case Study.,2015,58,IEEE Trans. Education,2,db/journals/te/te58.html#TrotskovskySW15,https://doi.org/10.1109/TE.2014.2331918 +Ralph M. Ford,Java applets for microelectronics education.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#FordBK01,https://doi.org/10.1109/13.925847 +Bin Shyan Jong,Learning Log Explorer in E-Learning Diagnosis.,2007,50,IEEE Trans. Education,3,db/journals/te/te50.html#JongCW07,https://doi.org/10.1109/TE.2007.900023 +Jacob L. Cybulski,Learning systems design with UML and patterns.,2000,43,IEEE Trans. Education,4,db/journals/te/te43.html#CybulskiL00,https://doi.org/10.1109/13.883344 +Jozsef Katona,A Brain-Computer Interface Project Applied in Computer Engineering.,2016,59,IEEE Trans. Education,4,db/journals/te/te59.html#KatonaK16,https://doi.org/10.1109/TE.2016.2558163 +Liangliang Zhang,Dissemination of the Phasor Method in Electrical Engineering in China.,2014,57,IEEE Trans. Education,1,db/journals/te/te57.html#ZhangL14,https://doi.org/10.1109/TE.2013.2262686 +Robert M. O'Connell,Simple recursive processes for determining Laplace and Z transforms of the zero-input responses of linear time-invariant systems.,2002,45,IEEE Trans. Education,2,db/journals/te/te45.html#OConnell02,https://doi.org/10.1109/TE.2002.1013882 +Raquel Cedazo,Ciclope: FOSS for Developing and Managing Educational Web Laboratories.,2007,50,IEEE Trans. Education,4,db/journals/te/te50.html#CedazoLSS07,https://doi.org/10.1109/TE.2007.907268 +Richard J. Mitchell 0001,Engaging Robots: Innovative Outreach for Attracting Cybernetics Students.,2010,53,IEEE Trans. Education,1,db/journals/te/te53.html#MitchellWBGW10,https://doi.org/10.1109/TE.2009.2024932 +Biswendu Chatterjee,A Modular Approach for Teaching Partial Discharge Phenomenon Through Experiment.,2011,54,IEEE Trans. Education,3,db/journals/te/te54.html#ChatterjeeDC11,https://doi.org/10.1109/TE.2010.2063432 +Sebastian Barney,Improving Students With Rubric-Based Self-Assessment and Oral Feedback.,2012,55,IEEE Trans. Education,3,db/journals/te/te55.html#BarneyKPUJ12,https://doi.org/10.1109/TE.2011.2172981 +Thomas J. Cavicchi,Minimum return difference as a compensator design tool.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#Cavicchi01,https://doi.org/10.1109/13.925809 +Boris Delibasic,White-Box or Black-Box Decision Tree Algorithms: Which to Use in Education?,2013,56,IEEE Trans. Education,3,db/journals/te/te56.html#DelibasicVJS13,https://doi.org/10.1109/TE.2012.2217342 +Maria Isabel García,p88110: A Graphical Simulator for Computer Architecture and Organization Courses.,2009,52,IEEE Trans. Education,2,db/journals/te/te52.html#GarciaRPG09,https://doi.org/10.1109/TE.2008.927690 +Chalmers F. Sechrist,Partnerships take the lead: a deans summit on education for a technological world.,2002,45,IEEE Trans. Education,2,db/journals/te/te45.html#SechristBFGGS02,https://doi.org/10.1109/TE.2002.1013875 +Fulvio Corno,Training Engineers for the Ambient Intelligence Challenge.,2017,60,IEEE Trans. Education,1,db/journals/te/te60.html#CornoR17,https://doi.org/10.1109/TE.2016.2608785 +Peter M. Jansson,Creating an Agile ECE Learning Environment Through Engineering Clinics.,2010,53,IEEE Trans. Education,3,db/journals/te/te53.html#JanssonRSM10,https://doi.org/10.1109/TE.2009.2027431 +Sancho Salcedo-Sanz,Teaching Advanced Features of Evolutionary Algorithms Using Japanese Puzzles.,2007,50,IEEE Trans. Education,2,db/journals/te/te50.html#Salcedo-SanzPOPY07,https://doi.org/10.1109/TE.2007.893170 +Ilias Verginis,Enhancing Learning in Introductory Computer Science Courses Through SCALE: An Empirical Study.,2011,54,IEEE Trans. Education,1,db/journals/te/te54.html#VerginisGGBG11,https://doi.org/10.1109/TE.2010.2040477 +Zoe Doulgeri,A web telerobotic system to teach industrial robot path planning and control.,2006,49,IEEE Trans. Education,2,db/journals/te/te49.html#DoulgeriM06,https://doi.org/10.1109/TE.2006.873975 +Colin Neil Jones,A Cost-Effective Atomic Force Microscope for Undergraduate Control Laboratories.,2010,53,IEEE Trans. Education,2,db/journals/te/te53.html#JonesG10,https://doi.org/10.1109/TE.2009.2021390 +P. Mohana Shankar,Project-based instruction in wireless communications at the junior level.,2000,43,IEEE Trans. Education,3,db/journals/te/te43.html#ShankarE00,https://doi.org/10.1109/13.865195 +Jeffrey E. Froyd,Editorial: A New Direction for the IEEE Transactions on Education: Part II. Increasing the Relevance of Your Manuscript.,2014,57,IEEE Trans. Education,1,db/journals/te/te57.html#Froyd14,https://doi.org/10.1109/TE.2013.2294911 +Donald T. Comer,A new amplifier circuit with both practical and tutorial value.,2000,43,IEEE Trans. Education,1,db/journals/te/te43.html#ComerC00,https://doi.org/10.1109/13.825736 +Rafael Vidal Aroca,Increasing Students' Interest With Low-Cost CellBots.,2013,56,IEEE Trans. Education,1,db/journals/te/te56.html#ArocaGTSBCG13,https://doi.org/10.1109/TE.2012.2214782 +Paolo Maggi,A Grid-Powered Framework to Support Courses on Distributed Programming.,2007,50,IEEE Trans. Education,1,db/journals/te/te50.html#MaggiS07,https://doi.org/10.1109/TE.2006.879806 +Wayne T. Padgett,Low-frequency wireless communications System-infrared laboratory experiments.,2006,49,IEEE Trans. Education,1,db/journals/te/te49.html#PadgettBF06,https://doi.org/10.1109/TE.2005.856150 +Kao-Shing Hwang,Rapid Prototyping Platform for Robotics Applications.,2011,54,IEEE Trans. Education,2,db/journals/te/te54.html#HwangHSC11,https://doi.org/10.1109/TE.2010.2049359 +Marcelo C. M. Teixeira,A method for plotting the complementary root locus using the root-locus (positive gain) rules.,2004,47,IEEE Trans. Education,3,db/journals/te/te47.html#TeixeiraAM04,https://doi.org/10.1109/TE.2004.825068 +Barbara Oakley,Guest Editorial: A Practical Approach to Understanding - and Applying! - the Scholarship of Application.,2014,57,IEEE Trans. Education,2,db/journals/te/te57.html#OakleyF14,https://doi.org/10.1109/TE.2014.2313036 +Katarina Pazur Anicic,Preparing ICT Graduates for Real-World Challenges: Results of a Meta-Analysis.,2017,60,IEEE Trans. Education,3,db/journals/te/te60.html#AnicicDA17,https://doi.org/10.1109/TE.2016.2633959 +Flora P. McMartin,Scenario assignments as assessment tools for undergraduate engineering education.,2000,43,IEEE Trans. Education,2,db/journals/te/te43.html#McMartinMY00,https://doi.org/10.1109/13.848061 +Elvis Wai Chung Leung,An Experimental Study of a Personalized Learning Environment Through Open-Source Software Tools.,2007,50,IEEE Trans. Education,4,db/journals/te/te50.html#LeungL07,https://doi.org/10.1109/TE.2007.904571 +Glen Gibb,NetFPGA - An Open Platform for Teaching How to Build Gigabit-Rate Network Switches and Routers.,2008,51,IEEE Trans. Education,3,db/journals/te/te51.html#GibbLNHM08,https://doi.org/10.1109/TE.2008.919664 +Zarko Stanisavljevic,SDLDS - System for Digital Logic Design and Simulation.,2013,56,IEEE Trans. Education,2,db/journals/te/te56.html#StanisavljevicPND13,https://doi.org/10.1109/TE.2012.2211598 +Chi Chung Ko,Development of a web-based laboratory for control experiments on a coupled tank apparatus.,2001,44,IEEE Trans. Education,1,db/journals/te/te44.html#KoCCZT01,https://doi.org/10.1109/13.912713 +Meena Rambocas,Teaching Business Management to Engineers: The Impact of Interactive Lectures.,2017,60,IEEE Trans. Education,3,db/journals/te/te60.html#RambocasS17,https://doi.org/10.1109/TE.2016.2637327 +Huey-Ing Liu,QoL guaranteed adaptation and personalization in E-learning systems.,2005,48,IEEE Trans. Education,4,db/journals/te/te48.html#LiuY05,https://doi.org/10.1109/TE.2005.858398 +Alon Kuperman,Virtual torque and inertia loading of controlled electric drive.,2005,48,IEEE Trans. Education,1,db/journals/te/te48.html#KupermanR05,https://doi.org/10.1109/TE.2004.832881 +M. Abul Masrur,Assumption or Fact? Line-to-Neutral Voltage Expression in an Unbalanced 3-Phase Circuit During Inverter Switching.,2009,52,IEEE Trans. Education,2,db/journals/te/te52.html#Masrur09,https://doi.org/10.1109/TE.2008.925762 +Luisa M. Regueras,Design of a Competitive and Collaborative Learning Strategy in a Communication Networks Course.,2011,54,IEEE Trans. Education,2,db/journals/te/te54.html#ReguerasVVC11,https://doi.org/10.1109/TE.2010.2053933 +John Sarik,A Laboratory-Based Course in Display Technology.,2011,54,IEEE Trans. Education,2,db/journals/te/te54.html#SarikAK11,https://doi.org/10.1109/TE.2010.2055242 +William Gerard Hurley,PWM control of a magnetic suspension system.,2004,47,IEEE Trans. Education,2,db/journals/te/te47.html#HurleyHW04,https://doi.org/10.1109/TE.2004.827831 +Anastasios Drosopoulos,Planning and Development of Lab Training Activities for Powerline Communications.,2010,53,IEEE Trans. Education,3,db/journals/te/te53.html#DrosopoulosH10,https://doi.org/10.1109/TE.2009.2025136 +Alexander Abramovitz,"Corrections to ""An Approach to Average Modeling and Simulation of Switch-Mode Systems"".",2011,54,IEEE Trans. Education,3,db/journals/te/te54.html#Abramovitz11a,https://doi.org/10.1109/TE.2011.2160811 +Ken Ferens,Impact Assessment of a Microprocessor Animation on Student Learning and Motivation in Computer Engineering.,2007,50,IEEE Trans. Education,2,db/journals/te/te50.html#FerensFI07,https://doi.org/10.1109/TE.2007.893172 +Lawrence Hmurcik,Using the Fourier series in a circuits or DSP laboratory.,2000,43,IEEE Trans. Education,1,db/journals/te/te43.html#HmurcikHMHC00,https://doi.org/10.1109/13.825741 +Maryam Jalali,A Low-Cost Hands-On Laboratory to Introduce Lithography Concepts.,2012,55,IEEE Trans. Education,4,db/journals/te/te55.html#JalaliMKLC12,https://doi.org/10.1109/TE.2012.2192442 +Javier García Zubía,Empirical Analysis of the Use of the VISIR Remote Lab in Teaching Analog Electronics.,2017,60,IEEE Trans. Education,2,db/journals/te/te60.html#ZubiaCRHOGGG17,https://doi.org/10.1109/TE.2016.2608790 +Antonio García Dopico,Automatic management of laboratory work in mass computer engineering courses.,2005,48,IEEE Trans. Education,1,db/journals/te/te48.html#DopicoRRP05,https://doi.org/10.1109/TE.2004.832874 +David J. Comer,Teaching MOS integrated circuit amplifier design to undergraduates.,2001,44,IEEE Trans. Education,3,db/journals/te/te44.html#ComerC01,https://doi.org/10.1109/13.940993 +Ned Kock,Using complex IT in specific domains: developing and assessing a course for nonmajors.,2002,45,IEEE Trans. Education,1,db/journals/te/te45.html#KockAS02,https://doi.org/10.1109/13.983221 +Jong-Hyuk Lee,Pipelined CPU Design With FPGA in Teaching Computer Architecture.,2012,55,IEEE Trans. Education,3,db/journals/te/te55.html#LeeLYS12,https://doi.org/10.1109/TE.2011.2175227 +Khaled Nigim,Using MathCad in understanding the induction motor characteristics.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#NigimD01,https://doi.org/10.1109/13.925826 +R. Alan Cheville,The light applications in science and engineering research collaborative undergraduate laboratory for teaching (LASER CULT)-relevant experiential learning in photonics.,2005,48,IEEE Trans. Education,2,db/journals/te/te48.html#ChevilleMB05,https://doi.org/10.1109/TE.2004.842919 +Alexander Behrens,MATLAB Meets LEGO Mindstorms - A Freshman Introduction Course Into Practical Engineering.,2010,53,IEEE Trans. Education,2,db/journals/te/te53.html#BehrensASNSBHTNHA10,https://doi.org/10.1109/TE.2009.2017272 +Paul Phamduy,An Interactive Robotic Fish Exhibit for Designed Settings in Informal Science Learning.,2017,60,IEEE Trans. Education,4,db/journals/te/te60.html#PhamduyLMP17,https://doi.org/10.1109/TE.2017.2695173 +Walter Daems,PeopleMover: an example of interdisciplinary project-based education in electrical engineering.,2003,46,IEEE Trans. Education,1,db/journals/te/te46.html#DaemsSVGSM03,https://doi.org/10.1109/TE.2002.808229 +Ming-Huei Chen,High-Frequency Wireless Communications System: 2.45-GHz Front-End Circuit and System Integration.,2010,53,IEEE Trans. Education,4,db/journals/te/te53.html#ChenHTCL10,https://doi.org/10.1109/TE.2009.2038897 +Boon Kuan Chung,An experiment on the layout and grounding of power distribution wires in a printed circuit board.,2001,44,IEEE Trans. Education,4,db/journals/te/te44.html#Chung01,https://doi.org/10.1109/13.965778 +T. Grandon Gill,"Learning C++ ""Submarine Style"": a case study.",2005,48,IEEE Trans. Education,1,db/journals/te/te48.html#Gill05,https://doi.org/10.1109/TE.2004.837044 +Georgina Cosma,Towards a Definition of Source-Code Plagiarism.,2008,51,IEEE Trans. Education,2,db/journals/te/te51.html#CosmaJ08,https://doi.org/10.1109/TE.2007.906776 +Luigi Vanfretti,Evaluating Constructive Alignment Theory Implementation in a Power Systems Analysis Course Through Repertory Grids.,2013,56,IEEE Trans. Education,4,db/journals/te/te56.html#VanfrettiF13,https://doi.org/10.1109/TE.2013.2255876 +Todd D. Murphey,Teaching Rigid Body Mechanics Using Student-Created Virtual Environments.,2008,51,IEEE Trans. Education,1,db/journals/te/te51.html#Murphey08,https://doi.org/10.1109/TE.2007.900019 +Mario J. Durán,Understanding Power Electronics and Electrical Machines in Multidisciplinary Wind Energy Conversion System Courses.,2013,56,IEEE Trans. Education,2,db/journals/te/te56.html#DuranBPGFG13,https://doi.org/10.1109/TE.2012.2207119 +Laio Oriel Seman,Agent-Based Simulation of Learning Dissemination in a Project-Based Learning Context Considering the Human Aspects.,2018,61,IEEE Trans. Education,2,db/journals/te/te61.html#SemanHB18,https://doi.org/10.1109/TE.2017.2754987 +Zeynep Dogmus,ReAct!: An Interactive Educational Tool for AI Planning for Robotics.,2015,58,IEEE Trans. Education,1,db/journals/te/te58.html#DogmusEP15,https://doi.org/10.1109/TE.2014.2318678 +Randal T. Abler,Distributed Engineering Education: Evolution of the Telecollaboration Stations for Individualized Distance Learning.,2005,48,IEEE Trans. Education,3,db/journals/te/te48.html#AblerW05,https://doi.org/10.1109/TE.2005.849757 +Irina Munteanu,Symbolic computation with Maple V for undergraduate electromagnetics.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#MunteanuI01,https://doi.org/10.1109/13.925873 +José García,Web-based system for managing a telematics laboratory network.,2004,47,IEEE Trans. Education,2,db/journals/te/te47.html#GarciaA04,https://doi.org/10.1109/TE.2004.825526 +Thomas W. Matthews,An autonomous race car design competition.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#MatthewsS01,https://doi.org/10.1109/13.925871 +S. Djenic,Blended Learning of Programming in the Internet Age.,2011,54,IEEE Trans. Education,2,db/journals/te/te54.html#DjenicKM11,https://doi.org/10.1109/TE.2010.2050066 +V. V. Bapeswara Rao,A sequential technique for active network analysis.,2000,43,IEEE Trans. Education,1,db/journals/te/te43.html#Rao00,https://doi.org/10.1109/13.825744 +M. Rocío Martínez-Torres,A Digital Signal Processing Teaching Methodology Using Concept-Mapping Techniques.,2005,48,IEEE Trans. Education,3,db/journals/te/te48.html#Martinez-TorresBMV05,https://doi.org/10.1109/TE.2005.849737 +Sathiamoorthy Manoharan,Personalized Assessment as a Means to Mitigate Plagiarism.,2017,60,IEEE Trans. Education,2,db/journals/te/te60.html#Manoharan17,https://doi.org/10.1109/TE.2016.2604210 +Peter S. Excell,Experiments in the use of multiple-choice examinations for electromagnetics-related topics.,2000,43,IEEE Trans. Education,3,db/journals/te/te43.html#Excell00,https://doi.org/10.1109/13.865196 +Juing-Huei Su,Learning feedback controller design of switching converters via MATLAB/SIMULINK.,2002,45,IEEE Trans. Education,4,db/journals/te/te45.html#SuCW02,https://doi.org/10.1109/TE.2002.803403 +Antonio Barella,JGOMAS: New Approach to AI Teaching.,2009,52,IEEE Trans. Education,2,db/journals/te/te52.html#BarellaVC09,https://doi.org/10.1109/TE.2008.925764 +Brian P. Butz,An intelligent tutoring system for circuit analysis.,2006,49,IEEE Trans. Education,2,db/journals/te/te49.html#ButzDM06,https://doi.org/10.1109/TE.2006.872407 +Bina Ramamurthy,GridFoRCE: A Comprehensive Resource Kit for Teaching Grid Computing.,2007,50,IEEE Trans. Education,1,db/journals/te/te50.html#Ramamurthy07,https://doi.org/10.1109/TE.2006.886452 +Reena Dahle,3-D Printing as an Effective Educational Tool for MEMS Design and Fabrication.,2016,59,IEEE Trans. Education,3,db/journals/te/te59.html#DahleR16,https://doi.org/10.1109/TE.2016.2515071 +Ricardo Quislant,Teaching the Cache Memory System Using a Reconfigurable Approach.,2008,51,IEEE Trans. Education,3,db/journals/te/te51.html#QuislantHPBZ08,https://doi.org/10.1109/TE.2008.916767 +David J. Cappelleri,The Robotic Decathlon: Project-Based Learning Labs and Curriculum Design for an Introductory Robotics Course.,2013,56,IEEE Trans. Education,1,db/journals/te/te56.html#CappelleriV13,https://doi.org/10.1109/TE.2012.2215329 +José Luis Fernández Alemán,Effects of Response-Driven Feedback in Computer Science Learning.,2011,54,IEEE Trans. Education,3,db/journals/te/te54.html#AlemanPJ11,https://doi.org/10.1109/TE.2010.2087761 +Sandeep Purao,Setting the Pace: Experiments With Keller's PSI.,2017,60,IEEE Trans. Education,2,db/journals/te/te60.html#PuraoSNL17,https://doi.org/10.1109/TE.2016.2588460 +David W. Parent,Improvements to a Microelectronic Design and Fabrication Course.,2005,48,IEEE Trans. Education,3,db/journals/te/te48.html#ParentBDGYA05,https://doi.org/10.1109/TE.2005.849761 +George Nagy,Classification and Evaluation of Examples for Teaching Probability to Electrical Engineering Students.,2008,51,IEEE Trans. Education,4,db/journals/te/te51.html#NagyS08,https://doi.org/10.1109/TE.2007.914942 +Nick Z. Zacharis,Measuring the Effects of Virtual Pair Programming in an Introductory Programming Java Course.,2011,54,IEEE Trans. Education,1,db/journals/te/te54.html#Zacharis11,https://doi.org/10.1109/TE.2010.2048328 +F. Boray Tek,Implicit Theories and Self-Efficacy in an Introductory Programming Course.,2018,61,IEEE Trans. Education,3,db/journals/te/te61.html#TekBD18,https://doi.org/10.1109/TE.2017.2789183 +Victor M. Becerra,Solving optimal control problems with state constraints using nonlinear programming and simulation tools.,2004,47,IEEE Trans. Education,3,db/journals/te/te47.html#Becerra04,https://doi.org/10.1109/TE.2004.825925 +Adriano Camps,A radar course at undergraduate level: an approach to systems engineering.,2003,46,IEEE Trans. Education,4,db/journals/te/te46.html#Camps03,https://doi.org/10.1109/TE.2003.816065 +Joanne Ingham,Data warehousing: a tool for the outcomes assessment process.,2000,43,IEEE Trans. Education,2,db/journals/te/te43.html#Ingham00,https://doi.org/10.1109/13.848064 +Nigel Linge,Problem-based learning as an effective tool for teaching computer network design.,2006,49,IEEE Trans. Education,1,db/journals/te/te49.html#LingeP06,https://doi.org/10.1109/TE.2005.852600 +Juan Guerrero-Martínez,BioLab: An Educational Tool for Signal Processing Training in Biomedical Engineering.,2007,50,IEEE Trans. Education,1,db/journals/te/te50.html#Guerrero-MartinezBSM07,https://doi.org/10.1109/TE.2006.886463 +Kenneth G. Ricks,A case for the VMEbus architecture in embedded systems education.,2006,49,IEEE Trans. Education,3,db/journals/te/te49.html#RicksJ06,https://doi.org/10.1109/TE.2006.879242 +Antonio Jose Lozano-Guerrero,A Radionavigation Systems Course.,2015,58,IEEE Trans. Education,2,db/journals/te/te58.html#Lozano-Guerrero15,https://doi.org/10.1109/TE.2014.2334559 +Savas Sahin,Microcontroller-Based Robotics and SCADA Experiments.,2013,56,IEEE Trans. Education,4,db/journals/te/te56.html#SahinI13,https://doi.org/10.1109/TE.2013.2248062 +Mansour Ojaghi,Performance Analysis of Saturated Induction Motors by Virtual Tests.,2012,55,IEEE Trans. Education,3,db/journals/te/te55.html#OjaghiFKR12,https://doi.org/10.1109/TE.2011.2179046 +James McLaughlin,Deglorifying the Maximum Power Transfer Theorem and Factors in Impedance Selection.,2007,50,IEEE Trans. Education,3,db/journals/te/te50.html#McLaughlinK07,https://doi.org/10.1109/TE.2007.900030 +Nikolaus Correll,A One-Year Introductory Robotics Curriculum for Computer Science Upperclassmen.,2013,56,IEEE Trans. Education,1,db/journals/te/te56.html#CorrellWC13,https://doi.org/10.1109/TE.2012.2220774 +Samara L. Firebaugh,The RoboCup Nanogram League: An Opportunity for Problem-Based Undergraduate Education in Microsystems.,2008,51,IEEE Trans. Education,3,db/journals/te/te51.html#FirebaughP08,https://doi.org/10.1109/TE.2008.919699 +Dong Jin Lim,A laboratory course in real-time software for the control of dynamic systems.,2006,49,IEEE Trans. Education,3,db/journals/te/te49.html#Lim06,https://doi.org/10.1109/TE.2006.879243 +William E. Dillon,Performance theory based outcome measurement in engineering education and training.,2000,43,IEEE Trans. Education,2,db/journals/te/te43.html#DillonKEV00,https://doi.org/10.1109/13.848059 +Igone Vélez,A Course to Train Digital Hardware Designers for Industry.,2007,50,IEEE Trans. Education,3,db/journals/te/te50.html#VelezS07,https://doi.org/10.1109/TE.2007.900027 +Shaphan R. Jernigan,Implementing a Remote Laboratory Experience Into a Joint Engineering Degree Program: Aerodynamic Levitation of a Beach Ball.,2009,52,IEEE Trans. Education,2,db/journals/te/te52.html#JerniganFB09,https://doi.org/10.1109/TE.2008.924217 +Wael M. Halalu,Research-oriented junior/senior design projects: an analog circuit design example.,2004,47,IEEE Trans. Education,1,db/journals/te/te47.html#HalaluE04,https://doi.org/10.1109/TE.2003.818273 +Warren E. Dixon,A MATLAB-based control systems laboratory experience for undergraduate students: toward standardization and shared resources.,2002,45,IEEE Trans. Education,3,db/journals/te/te45.html#DixonDCQ02,https://doi.org/10.1109/TE.2002.1024613 +J. ángel Velázquez-Iturbide,Recursion Removal as an Instructional Method to Enhance the Understanding of Recursion Tracing.,2016,59,IEEE Trans. Education,3,db/journals/te/te59.html#Velazquez-Iturbide16,https://doi.org/10.1109/TE.2015.2468682 +David Adrian Sanders,Inferring Learning Style From the Way Students Interact With a Computer User Interface and the WWW.,2010,53,IEEE Trans. Education,4,db/journals/te/te53.html#SandersB10,https://doi.org/10.1109/TE.2009.2038611 +Eric Ras,Experience Management Wikis for Reflective Practice in Software Capstone Projects.,2007,50,IEEE Trans. Education,4,db/journals/te/te50.html#RasCDR07,https://doi.org/10.1109/TE.2007.904580 +Susan M. Lord,Multi-Institution Study of Student Demographics and Outcomes in Electrical and Computer Engineering in the USA.,2015,58,IEEE Trans. Education,3,db/journals/te/te58.html#LordLO15,https://doi.org/10.1109/TE.2014.2344622 +Ezzat G. Bakhoum,"Comment on ""Implementation of a Web-Based Educational Tool for Digital Signal Processing Teaching Using the Technological Acceptance Model"".",2006,49,IEEE Trans. Education,4,db/journals/te/te49.html#Bakhoum06,https://doi.org/10.1109/TE.2006.886954 +Tariq S. Durrani,2003 IEEE Educational Activities Board Awards.,2004,47,IEEE Trans. Education,2,db/journals/te/te47.html#Durrani04,https://doi.org/10.1109/TE.2004.827682 +Tina A. Hudson,Teaching mixed-signal integrated circuit design to undergraduates.,2006,49,IEEE Trans. Education,1,db/journals/te/te49.html#HudsonDL06,https://doi.org/10.1109/TE.2005.853072 +Ruoxin Jiang,A simple and accurate method for calculating the low frequency common-mode gain in a MOS differential amplifier with a current-mirror load.,2000,43,IEEE Trans. Education,3,db/journals/te/te43.html#JiangTM00,https://doi.org/10.1109/13.865215 +Irwin S. Goldberg,A systematic method for the analytical evaluation of convolution integrals.,2002,45,IEEE Trans. Education,1,db/journals/te/te45.html#GoldbergBR02,https://doi.org/10.1109/13.983223 +John D. Lynch,Teaching Digital System Timing: A Comprehensive Approach.,2008,51,IEEE Trans. Education,3,db/journals/te/te51.html#Lynch08,https://doi.org/10.1109/TE.2008.916763 +Anthony J. Marchese,The competitive assessment laboratory: introducing engineering design via consumer product benchmarking.,2003,46,IEEE Trans. Education,1,db/journals/te/te46.html#MarcheseRHSN03,https://doi.org/10.1109/TE.2002.808216 +Zhilbert Tafa,Effects of Interdisciplinary Education on Technology-Driven Application Design.,2011,54,IEEE Trans. Education,3,db/journals/te/te54.html#TafaRMM11,https://doi.org/10.1109/TE.2010.2080359 +Sulaiman A. Al-Yahya,A Successful Experience of ABET Accreditation of an Electrical Engineering Program.,2013,56,IEEE Trans. Education,2,db/journals/te/te56.html#Al-YahyaA13,https://doi.org/10.1109/TE.2012.2206112 +Ibrahim Albluwi,A Closer Look at the Differences Between Graders in Introductory Computer Science Exams.,2018,61,IEEE Trans. Education,3,db/journals/te/te61.html#Albluwi18,https://doi.org/10.1109/TE.2018.2805706 +Hadi Aliakbarian,Implementation of a Project-Based Telecommunications Engineering Design Course.,2014,57,IEEE Trans. Education,1,db/journals/te/te57.html#AliakbarianSFXLNVS14,https://doi.org/10.1109/TE.2013.2262800 +Michel Elizabeth Holder,A modified Karnaugh map technique.,2005,48,IEEE Trans. Education,1,db/journals/te/te48.html#Holder05,https://doi.org/10.1109/TE.2004.832879 +George Bebis,Review of computer vision education.,2003,46,IEEE Trans. Education,1,db/journals/te/te46.html#BebisES03,https://doi.org/10.1109/TE.2002.808280 +Külli Kori,Factors That Influence Students' Motivation to Start and to Continue Studying Information Technology in Estonia.,2016,59,IEEE Trans. Education,4,db/journals/te/te59.html#KoriPATP16,https://doi.org/10.1109/TE.2016.2528889 +Panayiotis S. Shiakolas,Magnetic levitation hardware-in-the-loop and MATLAB-based experiments for reinforcement of neural network control concepts.,2004,47,IEEE Trans. Education,1,db/journals/te/te47.html#ShiakolasSPF04,https://doi.org/10.1109/TE.2003.817616 +Alejandra Martínez-Monés,Multiple Case Studies to Enhance Project-Based Learning in a Computer Architecture Course.,2005,48,IEEE Trans. Education,3,db/journals/te/te48.html#Martinez-MonesGDJRV05,https://doi.org/10.1109/TE.2005.849754 +Pedro J. Muñoz Merino,Motivation and Emotions in Competition Systems for Education: An Empirical Study.,2014,57,IEEE Trans. Education,3,db/journals/te/te57.html#MerinoMOK14,https://doi.org/10.1109/TE.2013.2297318 +Natasa Hoic-Bozic,Recommender System and Web 2.0 Tools to Enhance a Blended Learning Model.,2016,59,IEEE Trans. Education,1,db/journals/te/te59.html#Hoic-BozicDM16,https://doi.org/10.1109/TE.2015.2427116 +Marco Winzker,Teaching Embedded System Concepts for Technological Literacy.,2011,54,IEEE Trans. Education,2,db/journals/te/te54.html#WinzkerS11,https://doi.org/10.1109/TE.2010.2102762 +Jake Rowan Byrne,An IoT and Wearable Technology Hackathon for Promoting Careers in Computer Science.,2017,60,IEEE Trans. Education,1,db/journals/te/te60.html#ByrneOS17,https://doi.org/10.1109/TE.2016.2626252 +Olaf Hallan Graven,A Consideration of the Use of Plagiarism Tools for Automated Student Assessment.,2008,51,IEEE Trans. Education,2,db/journals/te/te51.html#GravenM08,https://doi.org/10.1109/TE.2007.914940 +Marco Anisetti,Learning Computer Networking on Open Paravirtual Laboratories.,2007,50,IEEE Trans. Education,4,db/journals/te/te50.html#AnisettiBCCDFHR07,https://doi.org/10.1109/TE.2007.904584 +Charles Snow,Network EducationWare: an open-source web-based system for synchronous distance education.,2005,48,IEEE Trans. Education,4,db/journals/te/te48.html#SnowPM05,https://doi.org/10.1109/TE.2005.854577 +Richard S. Nichols,1999 Educational Activities Board Awards.,2000,43,IEEE Trans. Education,2,db/journals/te/te43.html#Nichols00,https://doi.org/10.1109/TE.2000.848056 +James O. Hamblen,Using a Low-Cost SoC Computer and a Commercial RTOS in an Embedded Systems Design Course.,2008,51,IEEE Trans. Education,3,db/journals/te/te51.html#Hamblen08,https://doi.org/10.1109/TE.2008.919662 +Huai-Yi Chen,Implementation of a Low-Cost Automated LED Photometer for Enzymatic Reaction Detection to Teach Basic Bioelectronics Technologies in Vocational High Schools.,2016,59,IEEE Trans. Education,3,db/journals/te/te59.html#ChenNYCCL16,https://doi.org/10.1109/TE.2015.2503337 +Mark J. T. Smith,Guest Editorial Should Biology Be Required in Electrical Engineering and Computer Engineering Curricula?,2005,48,IEEE Trans. Education,3,db/journals/te/te48.html#SmithWZ05,https://doi.org/10.1109/TE.2005.853406 +Christopher M. Twigg,Incorporating Large-Scale FPAAs Into Analog Design and Test Courses.,2008,51,IEEE Trans. Education,3,db/journals/te/te51.html#TwiggH08,https://doi.org/10.1109/TE.2008.916762 +Mehrdad Moallem,A laboratory testbed for embedded computer control.,2004,47,IEEE Trans. Education,3,db/journals/te/te47.html#Moallem04,https://doi.org/10.1109/TE.2004.825054 +Luís Bica Oliveira,Undergraduate Electronics Projects Based on the Design of an Optical Wireless Audio Transmission System.,2017,60,IEEE Trans. Education,2,db/journals/te/te60.html#OliveiraPOSPG17,https://doi.org/10.1109/TE.2016.2590999 +Zhaohui Ye,An Innovative Method of Teaching Electronic System Design With PSoC.,2012,55,IEEE Trans. Education,3,db/journals/te/te55.html#YeH12,https://doi.org/10.1109/TE.2011.2181994 +Yen-Chu Hung,The Effect of Problem-Solving Instruction on Computer Engineering Majors' Performance in Verilog Programming.,2008,51,IEEE Trans. Education,1,db/journals/te/te51.html#Hung08,https://doi.org/10.1109/TE.2007.906912 +Alher Mauricio Hernandez,Learning Respiratory System Function in BME Studies by Means of a Virtual Laboratory: RespiLab.,2008,51,IEEE Trans. Education,1,db/journals/te/te51.html#HernandezMC08,https://doi.org/10.1109/TE.2007.893355 +Eric H. Allen,Interactive object-oriented simulation of interconnected power systems using SIMULINK.,2001,44,IEEE Trans. Education,1,db/journals/te/te44.html#AllenLYCI01,https://doi.org/10.1109/13.912714 +Chandan Bhunia,A low-cost PC-based virtual oscilloscope.,2004,47,IEEE Trans. Education,2,db/journals/te/te47.html#BhuniaGKHP04,https://doi.org/10.1109/TE.2004.825527 +Pebertli Nils Alho Barata,Consolidating Learning in Power Systems: Virtual Reality Applied to the Study of the Operation of Electric Power Transformers.,2015,58,IEEE Trans. Education,4,db/journals/te/te58.html#BarataFN15,https://doi.org/10.1109/TE.2015.2393842 +Hsuan-Hung Chen,The Design and Effect of a Scaffolded Concept Mapping Strategy on Learning Performance in an Undergraduate Database Course.,2013,56,IEEE Trans. Education,3,db/journals/te/te56.html#ChenCC13,https://doi.org/10.1109/TE.2012.2217747 +John A. Robinson,A software system for laboratory experiments in image processing.,2000,43,IEEE Trans. Education,4,db/journals/te/te43.html#Robinson00,https://doi.org/10.1109/13.883358 +Josep Mas,Understanding Optical Trapping Phenomena: A Simulation for Undergraduates.,2011,54,IEEE Trans. Education,1,db/journals/te/te54.html#MasFCJC11,https://doi.org/10.1109/TE.2010.2047107 +Jessica Masters,Educational Applets for active learning in properties of electronic materials.,2005,48,IEEE Trans. Education,1,db/journals/te/te48.html#MastersMS05,https://doi.org/10.1109/TE.2004.832882 +Octavio Ortiz,Innovative Mobile Robot Method: Improving the Learning of Programming Languages in Engineering Degrees.,2017,60,IEEE Trans. Education,2,db/journals/te/te60.html#OrtizPAH17,https://doi.org/10.1109/TE.2016.2608779 +Carol Hulls,Interactive online tutorial assistance for a first programming course.,2005,48,IEEE Trans. Education,4,db/journals/te/te48.html#HullsNKPB05,https://doi.org/10.1109/TE.2005.858400 +Radu-Emil Precup,Experiment-Based Teaching in Advanced Control Engineering.,2011,54,IEEE Trans. Education,3,db/journals/te/te54.html#PrecupPRPDT11,https://doi.org/10.1109/TE.2010.2058575 +Niklas Lavesson,Learning Machine Learning: A Case Study.,2010,53,IEEE Trans. Education,4,db/journals/te/te53.html#Lavesson10,https://doi.org/10.1109/TE.2009.2038992 +Angelo Tartaglia,An automatic evaluation system for technical education at the University level.,2002,45,IEEE Trans. Education,3,db/journals/te/te45.html#TartagliaT02,https://doi.org/10.1109/TE.2002.1024620 +Nikola Bednar,An Organic Electronics Laboratory Course for Graduate Students in Electrical Engineering.,2013,56,IEEE Trans. Education,3,db/journals/te/te56.html#BednarS13,https://doi.org/10.1109/TE.2012.2216527 +Piotr Debiec,Effective Learner-Centered Approach for Teaching an Introductory Digital Systems Course.,2018,61,IEEE Trans. Education,1,db/journals/te/te61.html#Debiec18,https://doi.org/10.1109/TE.2017.2729498 +Necdet Sinan Ozbek,An Interactive Computer-Aided Instructional Strategy and Assessment Methods for System Identification and Adaptive Control Laboratory.,2015,58,IEEE Trans. Education,4,db/journals/te/te58.html#OzbekE15,https://doi.org/10.1109/TE.2015.2412512 +Chris R. Smaill,An Investigation Into the Understanding and Skills of First-Year Electrical Engineering Students.,2012,55,IEEE Trans. Education,1,db/journals/te/te55.html#SmaillRGP12,https://doi.org/10.1109/TE.2011.2114663 +Euzeli Cipriano dos Santos,Power Block Geometry Applied to the Building of Power Electronics Converters.,2013,56,IEEE Trans. Education,2,db/journals/te/te56.html#SantosS13,https://doi.org/10.1109/TE.2012.2208114 +Donald Heer,Enhancing the freshman and sophomore ECE student experience using a platform for learning™*.,2003,46,IEEE Trans. Education,4,db/journals/te/te46.html#HeerTTF03,https://doi.org/10.1109/TE.2003.818752 +Inmaculada Plaza,From Companies to Universities: Application of R and D and I Concepts in Higher Education Teaching.,2013,56,IEEE Trans. Education,3,db/journals/te/te56.html#PlazaIMR13,https://doi.org/10.1109/TE.2012.2218247 +Jau-Ji Jou,Application of SPICE simulation to study WDM and SCM systems using EDFAs with chirping.,2002,45,IEEE Trans. Education,3,db/journals/te/te45.html#JouL02,https://doi.org/10.1109/TE.2002.1024616 +Roger L. Traylor,Using an integrated platform for learning™* to reinvent engineering education.,2003,46,IEEE Trans. Education,4,db/journals/te/te46.html#TraylorHF03,https://doi.org/10.1109/TE.2003.818749 +Dale W. Callahan,Looking for engineering students? Go home.,2004,47,IEEE Trans. Education,4,db/journals/te/te47.html#CallahanC04,https://doi.org/10.1109/TE.2004.834918 +Fintan Culwin,A Longitudinal Study of Non original Content in Final-Year Computing Undergraduate Projects.,2008,51,IEEE Trans. Education,2,db/journals/te/te51.html#Culwin08,https://doi.org/10.1109/TE.2007.910350 +Baiyun Chen,Elevating Learner Achievement Using Formative Electronic Lab Assessments in the Engineering Laboratory: A Viable Alternative to Weekly Lab Reports.,2018,61,IEEE Trans. Education,1,db/journals/te/te61.html#ChenDSH18,https://doi.org/10.1109/TE.2017.2706667 +Judith Wilson,Starting Early: Increasing Elementary (K-8) Student Science Achievement With Retired Scientists and Engineers.,2010,53,IEEE Trans. Education,1,db/journals/te/te53.html#WilsonKH10,https://doi.org/10.1109/TE.2009.2022546 +Smriti Srivastava,A Laboratory Testbed for Embedded Fuzzy Control.,2011,54,IEEE Trans. Education,1,db/journals/te/te54.html#SrivastavaSBK11,https://doi.org/10.1109/TE.2010.2041004 +Athanasis Karoulis,Formally assessing an instructional tool: a controlled experiment in software engineering.,2005,48,IEEE Trans. Education,1,db/journals/te/te48.html#KaroulisSAP05,https://doi.org/10.1109/TE.2004.837047 +Jia-Sheng Heh,Providing Students Hints and Detecting Mistakes Made by Students in a Virtual Experiment Environment.,2008,51,IEEE Trans. Education,1,db/journals/te/te51.html#HehCLC08,https://doi.org/10.1109/TE.2007.901977 +Peter G. LoPresti,An Electrical Engineering Summer Academy for Middle School and High School Students.,2010,53,IEEE Trans. Education,1,db/journals/te/te53.html#LoPrestiMK10,https://doi.org/10.1109/TE.2009.2022400 +Tanja Zseby,Teaching Network Security With IP Darkspace Data.,2016,59,IEEE Trans. Education,1,db/journals/te/te59.html#ZsebyVKC16,https://doi.org/10.1109/TE.2015.2417512 +Saffet Ayasun,Voltage Stability Toolbox for Power System Education and Research.,2006,49,IEEE Trans. Education,4,db/journals/te/te49.html#AyasunNK06,https://doi.org/10.1109/TE.2006.879798 +Matthew N. O. Sadiku,Deficiencies in the way scattering parameters are taught.,2003,46,IEEE Trans. Education,3,db/journals/te/te46.html#Sadiku03,https://doi.org/10.1109/TE.2003.815233 +M. Barbara Silver-Thorn,A rehabilitation engineering course for biomedical engineers.,2002,45,IEEE Trans. Education,4,db/journals/te/te45.html#Silver-Thorn02,https://doi.org/10.1109/TE.2002.803402 +David Santos-Martin,Problem-Based Learning in Wind Energy Using Virtual and Real Setups.,2012,55,IEEE Trans. Education,1,db/journals/te/te55.html#Santos-MartinACA12,https://doi.org/10.1109/TE.2011.2151195 +J. S. Yuan,Teaching digital noise and noise margin issues in engineering education.,2005,48,IEEE Trans. Education,1,db/journals/te/te48.html#YuanY05,https://doi.org/10.1109/TE.2004.837042 +Jacinto M. Jimenez,A New Approach for Teaching Power Electronics Converter Experiments.,2005,48,IEEE Trans. Education,3,db/journals/te/te48.html#JimenezSJVR05,https://doi.org/10.1109/TE.2005.852598 +Seth T. Hamman,Teaching Game Theory to Improve Adversarial Thinking in Cybersecurity Students.,2017,60,IEEE Trans. Education,3,db/journals/te/te60.html#HammanHMCM17,https://doi.org/10.1109/TE.2016.2636125 +Mihaela Elena Radu,Integrating Extensive Functional Verification Into Digital Design Education.,2008,51,IEEE Trans. Education,3,db/journals/te/te51.html#RaduS08,https://doi.org/10.1109/TE.2008.919692 +J. ángel Velázquez-Iturbide,Evaluating the Effect of Program Visualization on Student Motivation.,2017,60,IEEE Trans. Education,3,db/journals/te/te60.html#Velazquez-Iturbide17,https://doi.org/10.1109/TE.2017.2648781 +Michael Georgiopoulos,A Sustainable Model for Integrating Current Topics in Machine Learning Research Into the Undergraduate Curriculum.,2009,52,IEEE Trans. Education,4,db/journals/te/te52.html#GeorgiopoulosDGWMGKSSA09,https://doi.org/10.1109/TE.2008.930511 +Ramon Lawrence,Teaching data structures using competitive games.,2004,47,IEEE Trans. Education,4,db/journals/te/te47.html#Lawrence04,https://doi.org/10.1109/TE.2004.825053 +Jirka Roubal,Linearization: Students Forget the Operating Point.,2010,53,IEEE Trans. Education,3,db/journals/te/te53.html#RoubalHS10,https://doi.org/10.1109/TE.2009.2026427 +Robert B. Darling,I-V maps [educational circuit simulation].,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#Darling01,https://doi.org/10.1109/13.925844 +Rocío García Robles,An eLearning Standard Approach for Supporting PBL in Computer Engineering.,2009,52,IEEE Trans. Education,3,db/journals/te/te52.html#RoblesRDL09,https://doi.org/10.1109/TE.2008.928220 +Ivica Boticki,Exploring the Educational Benefits of Introducing Aspect-Oriented Programming Into a Programming Course.,2013,56,IEEE Trans. Education,2,db/journals/te/te56.html#BotickiKM13,https://doi.org/10.1109/TE.2012.2209119 +Mihai P. Dinca,Design of a PID Controller for a PCR Micro Reactor.,2009,52,IEEE Trans. Education,1,db/journals/te/te52.html#DincaGG09,https://doi.org/10.1109/TE.2008.919811 +Barbara A. Oakley,Best Practices Involving Teamwork in the Classroom: Results From a Survey of 6435 Engineering Student Respondents.,2007,50,IEEE Trans. Education,3,db/journals/te/te50.html#OakleyHKF07,https://doi.org/10.1109/TE.2007.901982 +David A. Conner,Guest Editorial Passing the Baton.,2007,50,IEEE Trans. Education,3,db/journals/te/te50.html#Conner07,https://doi.org/10.1109/TE.2007.904058 +KeunWoo Han,The Impact of a Peer-Learning Agent Based on Pair Programming in a Programming Course.,2010,53,IEEE Trans. Education,2,db/journals/te/te53.html#HanLL10,https://doi.org/10.1109/TE.2009.2019121 +Guttorm Sindre,Experimental Validation of the Learning Effect for a Pedagogical Game on Computer Fundamentals.,2009,52,IEEE Trans. Education,1,db/journals/te/te52.html#SindreNJ09,https://doi.org/10.1109/TE.2007.914944 +Robert J. Albright,Discovering the effects of feedback on control systems: informative and interesting numerical exercises.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#AlbrightH01,https://doi.org/10.1109/13.925802 +Eva Besada-Portas,Remote Control Laboratory Using EJS Applets and TwinCAT Programmable Logic Controllers.,2013,56,IEEE Trans. Education,2,db/journals/te/te56.html#Besada-PortasOTC13,https://doi.org/10.1109/TE.2012.2204754 +Daniel Rodríguez 0001,e-Learning in Project Management Using Simulation Models: A Case Study Based on the Replication of an Experiment.,2006,49,IEEE Trans. Education,4,db/journals/te/te49.html#RodriguezSCP06,https://doi.org/10.1109/TE.2006.882367 +Da-peng Tan,Intelligent Computer-Aided Instruction Modeling and a Method to Optimize Study Strategies for Parallel Robot Instruction.,2013,56,IEEE Trans. Education,3,db/journals/te/te56.html#TanJJ13,https://doi.org/10.1109/TE.2012.2212707 +Manuel Arias Pérez de Azpeitia,The Master's Thesis: An Opportunity for Fostering Presentation Skills.,2014,57,IEEE Trans. Education,1,db/journals/te/te57.html#AzpeitiaPRMVFL14,https://doi.org/10.1109/TE.2013.2267094 +Shu-Hsuan Chang,A Simulation-Based LED Design Project in Photonics Instruction Based on Industry-University Collaboration.,2011,54,IEEE Trans. Education,4,db/journals/te/te54.html#ChangCKS11,https://doi.org/10.1109/TE.2010.2098877 +Ivan G. Guardiola,Using University-Funded Research Projects to Teach System Design Processes and Tools.,2013,56,IEEE Trans. Education,4,db/journals/te/te56.html#GuardiolaDC13,https://doi.org/10.1109/TE.2013.2240388 +Max O. Smith,Long Term Effects of Pair Programming.,2018,61,IEEE Trans. Education,3,db/journals/te/te61.html#SmithGD18,https://doi.org/10.1109/TE.2017.2773024 +Jose-Luis Poza-Luján,Assessing the Impact of Continuous Evaluation Strategies: Tradeoff Between Student Performance and Instructor Effort.,2016,59,IEEE Trans. Education,1,db/journals/te/te59.html#Poza-LujanCPC16,https://doi.org/10.1109/TE.2015.2418740 +Miltiadis D. Lytras,Guest Editorial Open-Source Software for Engineering Education: Pedagogical Strategies That Leverage Open-Source Tools.,2007,50,IEEE Trans. Education,4,db/journals/te/te50.html#LytrasS07,https://doi.org/10.1109/TE.2007.910212 +Chad G. Rose,Reflection on System Dynamics Principles Improves Student Performance in Haptic Paddle Labs.,2018,61,IEEE Trans. Education,3,db/journals/te/te61.html#RoseMCO18,https://doi.org/10.1109/TE.2018.2804327 +Andrea M. Goncher,Insights Into Students' Conceptual Understanding Using Textual Analysis: A Case Study in Signal Processing.,2016,59,IEEE Trans. Education,3,db/journals/te/te59.html#GoncherJB16,https://doi.org/10.1109/TE.2016.2515563 +Marcelo C. M. Teixeira,On lag controllers: design and implementation.,2002,45,IEEE Trans. Education,3,db/journals/te/te45.html#TeixeiraA02,https://doi.org/10.1109/TE.2002.1024622 +Juan Antonio Morente,A New Experiment-Based Way to Introduce Fourier Transform and Time Domain-Frequency Domain Duality.,2013,56,IEEE Trans. Education,4,db/journals/te/te56.html#MorenteSTFMP13,https://doi.org/10.1109/TE.2013.2246164 +Hua-Li Jian,On Students' Strategy-Preferences for Managing Difficult Course Work.,2008,51,IEEE Trans. Education,2,db/journals/te/te51.html#JianSHCL08,https://doi.org/10.1109/TE.2007.906278 +Alfredo del Río,Learning microcontrollers with a CAI oriented multi-micro simulation environment.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#RioRM01,https://doi.org/10.1109/13.925846 +Joyce B. Main,The Underrepresentation of Women in Computing Fields: A Synthesis of Literature Using a Life Course Perspective.,2017,60,IEEE Trans. Education,4,db/journals/te/te60.html#MainS17,https://doi.org/10.1109/TE.2017.2704060 +Renata A. Revelo Alonso,Self-Efficacy as a Long-Term Outcome of a General Education Course on Digital Technologies.,2017,60,IEEE Trans. Education,3,db/journals/te/te60.html#AlonsoSLL17,https://doi.org/10.1109/TE.2016.2635624 +Franc Gider,Implementation of a Multidisciplinary Professional Skills Course at an Electrical Engineering School.,2012,55,IEEE Trans. Education,3,db/journals/te/te55.html#GiderLKM12,https://doi.org/10.1109/TE.2011.2174238 +Uwe Meyer-Bäse,An Undergraduate Course and Laboratory in Digital Signal Processing With Field Programmable Gate Arrays.,2010,53,IEEE Trans. Education,4,db/journals/te/te53.html#Meyer-BaseVMPP10,https://doi.org/10.1109/TE.2009.2039216 +Jeff Lang,Implementing CS1 with embedded instructional research design in laboratories.,2006,49,IEEE Trans. Education,1,db/journals/te/te49.html#LangNSS06,https://doi.org/10.1109/TE.2005.863435 +Bruno Warin,Multi-Role Project (MRP): A New Project-Based Learning Method for STEM.,2016,59,IEEE Trans. Education,2,db/journals/te/te59.html#WarinTKH16,https://doi.org/10.1109/TE.2015.2462809 +Ahmed Yamani,Use of a spreadsheet program in electromagnetics.,2001,44,IEEE Trans. Education,3,db/journals/te/te44.html#YamaniK01,https://doi.org/10.1109/13.941003 +Woei-Kae Chen,Teaching Object-Oriented Programming Laboratory With Computer Game Programming.,2007,50,IEEE Trans. Education,3,db/journals/te/te50.html#ChenC07,https://doi.org/10.1109/TE.2007.900026 +Jeff Frolik,Wireless sensor systems: an approach for a multiuniversity design course.,2002,45,IEEE Trans. Education,2,db/journals/te/te45.html#FrolikW02,https://doi.org/10.1109/TE.2002.1013877 +Yair Linn,An Ultra Low Cost Wireless Communications Laboratory for Education and Research.,2012,55,IEEE Trans. Education,2,db/journals/te/te55.html#Linn12,https://doi.org/10.1109/TE.2011.2158318 +Roberto Petry Homrich,Helicoidal single-layer cylindrical coil self-inductance evaluation: a didactic method.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#HomrichRP01,https://doi.org/10.1109/13.925853 +George E. Chatzarakis,Nodal Analysis Optimization Based on the Use of Virtual Current Sources: A Powerful New Pedagogical Method.,2009,52,IEEE Trans. Education,1,db/journals/te/te52.html#Chatzarakis09,https://doi.org/10.1109/TE.2008.921459 +José Nelson Amaral,Teaching digital design to computing science students in a single academic term.,2005,48,IEEE Trans. Education,1,db/journals/te/te48.html#AmaralBM05,https://doi.org/10.1109/TE.2004.837048 +David Cropley,Guest editorial a case for compulsory teaching accreditation of engineering faculty.,2003,46,IEEE Trans. Education,4,db/journals/te/te46.html#Cropley03,https://doi.org/10.1109/TE.2003.819952 +Muhittin Yilmaz,Hands-On Summer Camp to Attract K-12 Students to Engineering Fields.,2010,53,IEEE Trans. Education,1,db/journals/te/te53.html#YilmazRCC10,https://doi.org/10.1109/TE.2009.2026366 +Sergio L. Toral Marín,Implementation of a web-based educational tool for digital signal processing teaching using the technological acceptance model.,2005,48,IEEE Trans. Education,4,db/journals/te/te48.html#MarinBMVM05,https://doi.org/10.1109/TE.2005.853074 +Fernando Martínez,Using PBL to Improve Educational Outcomes and Student Satisfaction in the Teaching of DC/DC and DC/AC Converters.,2017,60,IEEE Trans. Education,3,db/journals/te/te60.html#MartinezHPR17,https://doi.org/10.1109/TE.2016.2643623 +María Blanca Ibáñez,Augmented Reality-Based Simulators as Discovery Learning Tools: An Empirical Study.,2015,58,IEEE Trans. Education,3,db/journals/te/te58.html#IbanezSVK15,https://doi.org/10.1109/TE.2014.2379712 +Jannick P. Rolland,The art of back-of-the-envelope paraxial raytracing.,2001,44,IEEE Trans. Education,4,db/journals/te/te44.html#RollandSG01,https://doi.org/10.1109/13.965785 +Hugo Calleja,An approach to amplifier frequency compensation.,2003,46,IEEE Trans. Education,1,db/journals/te/te46.html#Calleja03,https://doi.org/10.1109/TE.2002.804405 +Daniela Chudá,The Issue of (Software) Plagiarism: A Student View.,2012,55,IEEE Trans. Education,1,db/journals/te/te55.html#ChudaNKH12,https://doi.org/10.1109/TE.2011.2112768 +Miguel A. Solano,X-band Gunn diode oscillator for a multiple-frequency continuous-wave radar for educational purposes.,2002,45,IEEE Trans. Education,4,db/journals/te/te45.html#SolanoIZP02,https://doi.org/10.1109/TE.2002.804391 +Miroslav Kulich,SyRoTek - Distance Teaching of Mobile Robotics.,2013,56,IEEE Trans. Education,1,db/journals/te/te56.html#KulichCKKFP13,https://doi.org/10.1109/TE.2012.2224867 +Kimberly E. Newman,An introductory digital design course using a low-cost autonomous robot.,2002,45,IEEE Trans. Education,3,db/journals/te/te45.html#NewmanHH02,https://doi.org/10.1109/TE.2002.1024623 +Joseph L. A. Hughes,2005 IEEE Education Society Awards and Frontiers in Education Conference Awards.,2006,49,IEEE Trans. Education,2,db/journals/te/te49.html#Hughes06,https://doi.org/10.1109/TE.2006.874976 +David A. Conner,"Editor-in-Chief's Reply - Comments on ""Undergraduate education"" editorial appearing in November 2002 issue.",2003,46,IEEE Trans. Education,1,db/journals/te/te46.html#Conner03a,https://doi.org/10.1109/TE.2003.809617 +Hsinchun Chen,Using Open Web APIs in Teaching Web Mining.,2009,52,IEEE Trans. Education,4,db/journals/te/te52.html#ChenLCHT09,https://doi.org/10.1109/TE.2008.930509 +Rodrigo Valle,Electromagnetic Levitation of a Disc.,2012,55,IEEE Trans. Education,2,db/journals/te/te55.html#ValleNAS12,https://doi.org/10.1109/TE.2011.2167975 +Ton-Tai Pan,Mechatronic experiments course design: a myoelectric controlled partial-hand prosthesis project.,2004,47,IEEE Trans. Education,3,db/journals/te/te47.html#PanFCCJ04,https://doi.org/10.1109/TE.2004.825528 +Luis E. Anido-Rifón,Internet-based learning by doing.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#Anido-RifonNI01,https://doi.org/10.1109/13.925839 +Ronaldo Tadêu Pena,A new undergraduate degree in control engineering.,2001,44,IEEE Trans. Education,4,db/journals/te/te44.html#PenaJF01,https://doi.org/10.1109/13.965790 +Thomas F. Schubert,Exploring Three-Phase Systems and Synchronous Motors: A Low-Voltage and Low-Cost Experiment at the Sophomore Level.,2011,54,IEEE Trans. Education,1,db/journals/te/te54.html#SchubertJK11,https://doi.org/10.1109/TE.2010.2043844 +Pedro Pablo Garrido Abenza,VisualJVM: A Visual Tool for Teaching Java Technology.,2008,51,IEEE Trans. Education,1,db/journals/te/te51.html#AbenzaOL08,https://doi.org/10.1109/TE.2007.906601 +R. Joe Stanley,A web-shareable real-world imaging problem for enhancing an image-processing curriculum.,2004,47,IEEE Trans. Education,2,db/journals/te/te47.html#StanleyWGM04,https://doi.org/10.1109/TE.2004.825214 +J. Michael Tarn,Mobile technology as a learning object and an exploration tool in an IS curriculum: an innovative instruction of wireless network security.,2006,49,IEEE Trans. Education,2,db/journals/te/te49.html#TarnC06,https://doi.org/10.1109/TE.2006.873979 +Vijay V. Vaidyanathan,RFID Student Educational Experiences at the UNT College of Engineering: A Sequential Approach to Creating a Project-Based RFID Course.,2009,52,IEEE Trans. Education,3,db/journals/te/te52.html#VaidyanathanVKWR09,https://doi.org/10.1109/TE.2008.930093 +Rafael Oliveira Chaves,Experimental Evaluation of a Serious Game for Teaching Software Process Modeling.,2015,58,IEEE Trans. Education,4,db/journals/te/te58.html#ChavesWFOSF15,https://doi.org/10.1109/TE.2015.2411573 +Chien Chou,Constructing a computer-assisted testing and evaluation system on the World Wide Web-the CATES experience.,2000,43,IEEE Trans. Education,3,db/journals/te/te43.html#Chou00,https://doi.org/10.1109/13.865199 +Yeon Kim,Effect of Combined Use of Flipped Learning and Inquiry-Based Learning on a System Modeling and Control Course.,2018,61,IEEE Trans. Education,2,db/journals/te/te61.html#KimA18,https://doi.org/10.1109/TE.2017.2774194 +David V. Kerns,IEEE education society awards and frontiers in education conference awards.,2003,46,IEEE Trans. Education,2,db/journals/te/te46.html#Kerns03a,https://doi.org/10.1109/TE.2003.811035 +Luiz Lebensztajn,Teaching electromagnetic fields and FEM for undergraduate students.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#LebensztajnSRC01,https://doi.org/10.1109/13.925862 +Alex Davidovic,Learning benefits of structural example-based adaptive tutoring systems.,2003,46,IEEE Trans. Education,2,db/journals/te/te46.html#DavidovicWT03,https://doi.org/10.1109/TE.2002.808240 +Gamze Ozogul,Technological Literacy Learning With Cumulative and Stepwise Integration of Equations Into Electrical Circuit Diagrams.,2012,55,IEEE Trans. Education,4,db/journals/te/te55.html#OzogulJMR12,https://doi.org/10.1109/TE.2012.2190072 +Antonio Carpeno,The Key Factors of an Active Learning Method in a Microprocessors Course.,2011,54,IEEE Trans. Education,2,db/journals/te/te54.html#CarpenoACH11,https://doi.org/10.1109/TE.2010.2048753 +Michael J. Safoutin,A design attribute framework for course planning and learning assessment.,2000,43,IEEE Trans. Education,2,db/journals/te/te43.html#SafoutinAARKF00,https://doi.org/10.1109/13.848072 +Tina A. Hudson,Guest Editorial Microelectronic Systems Education.,2011,54,IEEE Trans. Education,2,db/journals/te/te54.html#Hudson11,https://doi.org/10.1109/TE.2011.2131270 +Manavaalan Gunasekaran,Low-Cost Undergraduate Control Systems Experiments Using Microcontroller-Based Control of a DC Motor.,2012,55,IEEE Trans. Education,4,db/journals/te/te55.html#GunasekaranP12,https://doi.org/10.1109/TE.2012.2192441 +Philippe M. Beaudoin,Characterizing a Thermoelectric Module as Part of a Semiconductor Course Laboratory.,2008,51,IEEE Trans. Education,2,db/journals/te/te51.html#BeaudoinAB08,https://doi.org/10.1109/TE.2007.910362 +Yi Zhu,Enhancing Learning Effectiveness in Digital Design Courses Through the Use of Programmable Logic Boards.,2009,52,IEEE Trans. Education,1,db/journals/te/te52.html#ZhuWC09,https://doi.org/10.1109/TE.2008.921796 +Shlomo Waks,Engineering curriculum versus industry needs-a case study.,2000,43,IEEE Trans. Education,3,db/journals/te/te43.html#WaksF00,https://doi.org/10.1109/13.865213 +Brian M. Slator,Teaching computer science with virtual worlds.,2004,47,IEEE Trans. Education,2,db/journals/te/te47.html#SlatorHV04,https://doi.org/10.1109/TE.2004.825513 +Erik A. McShane,An improved approach to application-specific power electronics education. Curriculum development.,2001,44,IEEE Trans. Education,3,db/journals/te/te44.html#McShaneTS01,https://doi.org/10.1109/13.941001 +Muhammad Rashid,Holistic Development of Computer Engineering Curricula Using Y-Chart Methodology.,2014,57,IEEE Trans. Education,3,db/journals/te/te57.html#RashidT14,https://doi.org/10.1109/TE.2014.2304930 +Hermes Giberti,Motor-Reducer Sizing Through a MATLAB-Based Graphical Technique.,2012,55,IEEE Trans. Education,4,db/journals/te/te55.html#GibertiC12,https://doi.org/10.1109/TE.2012.2197752 +Baquer Mazhari,On the Estimation of Frequency Response in Amplifiers Using Miller's Theorem.,2005,48,IEEE Trans. Education,3,db/journals/te/te48.html#Mazhari05a,https://doi.org/10.1109/TE.2005.853070 +Juan D. Ortega-Alvarez,Exploring Undergraduate Students' Computational Modeling Abilities and Conceptual Understanding of Electric Circuits.,2018,61,IEEE Trans. Education,3,db/journals/te/te61.html#Ortega-AlvarezS18,https://doi.org/10.1109/TE.2018.2822245 +Kent Davey,Computing forces on conductors in the presence of dielectric materials.,2002,45,IEEE Trans. Education,1,db/journals/te/te45.html#DaveyK02,https://doi.org/10.1109/13.983227 +Luis R. J. Costa,Applying the Problem-Based Learning Approach to Teach Elementary Circuit Analysis.,2007,50,IEEE Trans. Education,1,db/journals/te/te50.html#CostaHL07,https://doi.org/10.1109/TE.2006.886455 +Dimitris Kanellopoulos,Using Web-Based Teaching Interventions in Computer Science Courses.,2007,50,IEEE Trans. Education,4,db/journals/te/te50.html#KanellopoulosSLT07,https://doi.org/10.1109/TE.2007.906906 +Susan M. Lord,Optoelectronics experiments for first-year engineering students.,2001,44,IEEE Trans. Education,1,db/journals/te/te44.html#Lord01,https://doi.org/10.1109/13.912705 +David A. Conner,"Comments on ""Undergraduate Education"" Editorial Appearing in November 2002 Issue [and reply].",2003,46,IEEE Trans. Education,1,db/journals/te/te46.html#Conner03,https://doi.org/10.1109/TE.2003.809459 +Qing Cao,Efficient Ways to Learn Weather Radar Polarimetry.,2012,55,IEEE Trans. Education,1,db/journals/te/te55.html#CaoYZ12,https://doi.org/10.1109/TE.2011.2118211 +Le Xu,Cloud-Based Virtual Laboratory for Network Security Education.,2014,57,IEEE Trans. Education,3,db/journals/te/te57.html#XuHT14,https://doi.org/10.1109/TE.2013.2282285 +Kenneth G. Ricks,An Embedded Systems Curriculum Based on the IEEE/ACM Model Curriculum.,2008,51,IEEE Trans. Education,2,db/journals/te/te51.html#RicksJS08,https://doi.org/10.1109/TE.2007.909359 +Ronald D. Williams,Teaching computer design using virtual prototyping.,2003,46,IEEE Trans. Education,2,db/journals/te/te46.html#WilliamsKA03,https://doi.org/10.1109/TE.2002.808278 +James F. Hoburg,Applications of magnetic field management in teaching electromagnetics.,2000,43,IEEE Trans. Education,2,db/journals/te/te43.html#HoburgOF00,https://doi.org/10.1109/13.848077 +Jordi-Roger Riba Ruiz,A Computer Model for Teaching the Dynamic Behavior of AC Contactors.,2010,53,IEEE Trans. Education,2,db/journals/te/te53.html#RuizER10,https://doi.org/10.1109/TE.2009.2014153 +Martín Llamas Nistal,Generating OER by Recording Lectures: A Case Study.,2014,57,IEEE Trans. Education,4,db/journals/te/te57.html#NistalM14,https://doi.org/10.1109/TE.2014.2336630 +Selwyn Piramuthu,Knowledge-based web-enabled agents and intelligent tutoring systems.,2005,48,IEEE Trans. Education,4,db/journals/te/te48.html#Piramuthu05,https://doi.org/10.1109/TE.2005.854574 +Monica Farrow,Experiences With Online Programming Examinations.,2008,51,IEEE Trans. Education,2,db/journals/te/te51.html#FarrowK08,https://doi.org/10.1109/TE.2007.908070 +Edward J. Rothwell,Using transport equations in the teaching of electromagnetics.,2004,47,IEEE Trans. Education,3,db/journals/te/te47.html#Rothwell04,https://doi.org/10.1109/TE.2004.825057 +M. Alper Selver,Design and Configuration of a Medical Imaging Systems Computer Laboratory Syllabus.,2016,59,IEEE Trans. Education,2,db/journals/te/te59.html#Selver16,https://doi.org/10.1109/TE.2015.2460694 +Gao-Wei Chang,A grating-based spectral filtering project in photonics instrumentation.,2006,49,IEEE Trans. Education,1,db/journals/te/te49.html#ChangYLC06,https://doi.org/10.1109/TE.2005.863436 +Maria Arcelina Marques,How Remote Labs Impact on Course Outcomes: Various Practices Using VISIR.,2014,57,IEEE Trans. Education,3,db/journals/te/te57.html#MarquesVCFARG14,https://doi.org/10.1109/TE.2013.2284156 +Maira Marques,Enhancing the Student Learning Experience in Software Engineering Project Courses.,2018,61,IEEE Trans. Education,1,db/journals/te/te61.html#MarquesOBG18,https://doi.org/10.1109/TE.2017.2742989 +Jean-Samuel Chenard,A Laboratory Setup and Teaching Methodology for Wireless and Mobile Embedded Systems.,2008,51,IEEE Trans. Education,3,db/journals/te/te51.html#ChenardZP08,https://doi.org/10.1109/TE.2008.919690 +Gary L. Dempsey,Electrical and computer engineering curriculum assessment via senior miniproject.,2003,46,IEEE Trans. Education,3,db/journals/te/te46.html#DempseyAHI03,https://doi.org/10.1109/TE.2003.811037 +David M. Drury,The unification of the Lorentz and Coulomb gauges of electromagnetic theory.,2000,43,IEEE Trans. Education,1,db/journals/te/te43.html#Drury00,https://doi.org/10.1109/13.825743 +Carlos Sánchez-Azqueta,Using the Wiimote to Learn MEMS in a Physics Degree Program.,2016,59,IEEE Trans. Education,3,db/journals/te/te59.html#Sanchez-Azqueta16,https://doi.org/10.1109/TE.2015.2472639 +Clemens Kerer,ShareMe: Running a Distributed Systems Lab for 600 Students With Three Faculty Members.,2005,48,IEEE Trans. Education,3,db/journals/te/te48.html#KererRGKKP05,https://doi.org/10.1109/TE.2005.849740 +George MacBride,Engineering the Future: Embedding Engineering Permanently Across the School-University Interface.,2010,53,IEEE Trans. Education,1,db/journals/te/te53.html#MacBrideHHSEMBS10,https://doi.org/10.1109/TE.2009.2025368 +Francesco Pinciroli,The educational offer in Medical Informatics and Telemedicine at the Engineering Faculty of the Politecnico di Milano.,2003,46,IEEE Trans. Education,3,db/journals/te/te46.html#PinciroliMT03,https://doi.org/10.1109/TE.2003.815235 +Coia Ferrater-Simón,A Remote Laboratory Platform for Electrical Drive Control Using Programmable Logic Controllers.,2009,52,IEEE Trans. Education,3,db/journals/te/te52.html#Ferrater-SimonMGLBV09,https://doi.org/10.1109/TE.2008.930095 +Wei-Fan Chen,Effect of web-browsing interfaces in web-based instruction: a quantitative study.,2005,48,IEEE Trans. Education,4,db/journals/te/te48.html#Chen05,https://doi.org/10.1109/TE.2005.856148 +Pedro Sánchez,Web-based activities around a digital model railroad platform.,2003,46,IEEE Trans. Education,2,db/journals/te/te46.html#SanchezAIFP03,https://doi.org/10.1109/TE.2003.811040 +Artice M. Davis,A simple way of obtaining the reduced Jordan form of a state equation.,2004,47,IEEE Trans. Education,4,db/journals/te/te47.html#Davis04,https://doi.org/10.1109/TE.2004.825919 +Sergio Gallardo,Addressing Learner Satisfaction Outcomes in Electronic Instrumentation and Measurement Laboratory Course Organization.,2007,50,IEEE Trans. Education,2,db/journals/te/te50.html#GallardoBTMD07,https://doi.org/10.1109/TE.2007.893173 +Rod Blaine Foist,An FPGA Design Project: Creating a PowerPC Subsystem Plus User Logic.,2008,51,IEEE Trans. Education,3,db/journals/te/te51.html#FoistGIT08,https://doi.org/10.1109/TE.2007.912411 +Edmundo Tovar,Building Common Spaces in Engineering Education: A Review From ICECE05.,2007,50,IEEE Trans. Education,1,db/journals/te/te50.html#TovarC07,https://doi.org/10.1109/TE.2006.888908 +Kasra Barkeshli,Electromagnetic scattering from thin strips. II. Numerical solution for strips of arbitrary size.,2004,47,IEEE Trans. Education,1,db/journals/te/te47.html#BarkeshliV04a,https://doi.org/10.1109/TE.2003.818275 +Ronald R. DeLyser,A sophomore capstone course in measurement and automated data acquisition.,2004,47,IEEE Trans. Education,4,db/journals/te/te47.html#DeLyserQRA04,https://doi.org/10.1109/TE.2004.825539 +Christian Lundquist,Insights From Implementing a System for Peer Review.,2013,56,IEEE Trans. Education,3,db/journals/te/te56.html#LundquistSGG13,https://doi.org/10.1109/TE.2012.2211876 +Kayode Peter Ayodele,An iLab for Teaching Advanced Logic Concepts With Hardware Descriptive Languages.,2015,58,IEEE Trans. Education,4,db/journals/te/te58.html#AyodeleIK15,https://doi.org/10.1109/TE.2015.2395996 +Francisco Sergi Sellschopp,An automated system for frequency response analysis with application to an undergraduate laboratory of electrical machines.,2004,47,IEEE Trans. Education,1,db/journals/te/te47.html#SellschoppL04,https://doi.org/10.1109/TE.2003.817621 +Daniel J. Moore,Curriculum for an engineering renaissance.,2003,46,IEEE Trans. Education,4,db/journals/te/te46.html#MooreV03,https://doi.org/10.1109/TE.2003.818754 +Assim Sagahyroon,From AHPL to VHDL: a course in hardware description languages.,2000,43,IEEE Trans. Education,4,db/journals/te/te43.html#Sagahyroon00,https://doi.org/10.1109/13.883357 +Hongwei Zhu 0002,Teaching OOP With Financial Literacy.,2011,54,IEEE Trans. Education,2,db/journals/te/te54.html#Zhu11,https://doi.org/10.1109/TE.2010.2052461 +Eric Pardede,Redesigning the Assessment of an Entrepreneurship Course in an Information Technology Degree Program: Embedding Assessment for Learning Practices.,2012,55,IEEE Trans. Education,4,db/journals/te/te55.html#PardedeL12,https://doi.org/10.1109/TE.2012.2199757 +Maria-Dolores Cano,Students' Involvement in Continuous Assessment Methodologies: A Case Study for a Distributed Information Systems Course.,2011,54,IEEE Trans. Education,3,db/journals/te/te54.html#Cano11,https://doi.org/10.1109/TE.2010.2073708 +Diego Marcos-Jorquera,An Interdisciplinary Practical for Multimedia Engineering Students.,2017,60,IEEE Trans. Education,1,db/journals/te/te60.html#Marcos-Jorquera17,https://doi.org/10.1109/TE.2016.2566606 +Gil Alterovitz,Bioinformatics and Proteomics: An Engineering Problem Solving-Based Approach.,2007,50,IEEE Trans. Education,1,db/journals/te/te50.html#AlterovitzR07,https://doi.org/10.1109/TE.2006.886454 +Morten H. Knudsen,Experimental modeling of dynamic systems: an educational approach.,2006,49,IEEE Trans. Education,1,db/journals/te/te49.html#Knudsen06,https://doi.org/10.1109/TE.2005.853071 +Tim Dallas,The 18 mm Laboratory: Teaching MEMS Development With the SUMMiT Foundry Process.,2012,55,IEEE Trans. Education,4,db/journals/te/te55.html#DallasBG12,https://doi.org/10.1109/TE.2012.2195182 +Rashina Hoda,Socio-Cultural Challenges in Global Software Engineering Education.,2017,60,IEEE Trans. Education,3,db/journals/te/te60.html#HodaBSY17,https://doi.org/10.1109/TE.2016.2624742 +Raquel Dormido,Development of a Web-Based Control Laboratory for Automation Technicians: The Three-Tank System.,2008,51,IEEE Trans. Education,1,db/journals/te/te51.html#DormidoVDSDFED08,https://doi.org/10.1109/TE.2007.893356 +George Scheets,Changing a standard telecommunications laboratory to a same-time-different-place virtual laboratory format: techniques utilized and lessons learned.,2005,48,IEEE Trans. Education,4,db/journals/te/te48.html#ScheetsWS05,https://doi.org/10.1109/TE.2005.850717 +Linda E. M. Brackenbury,System-on-Chip Design and Implementation.,2010,53,IEEE Trans. Education,2,db/journals/te/te53.html#BrackenburyPP10,https://doi.org/10.1109/TE.2009.2014858 +Gao-Wei Chang,A Progressive Design Approach to Enhance Project-Based Learning in Applied Electronics Through an Optoelectronic Sensing Project.,2008,51,IEEE Trans. Education,2,db/journals/te/te51.html#ChangYPLC08,https://doi.org/10.1109/TE.2007.907321 +Tomás Martínez-Marín,State-Space Formulation for Circuit Analysis.,2010,53,IEEE Trans. Education,3,db/journals/te/te53.html#Martinez-Marin10,https://doi.org/10.1109/TE.2009.2030884 +Marcos B. R. Vallim,Practicing engineering in a freshman introductory course.,2006,49,IEEE Trans. Education,1,db/journals/te/te49.html#VallimFC06,https://doi.org/10.1109/TE.2005.856157 +Thomas F. Stafford,Understanding motivations for Internet use in distance education.,2005,48,IEEE Trans. Education,2,db/journals/te/te48.html#Stafford05,https://doi.org/10.1109/TE.2004.842904 +Ricard Horta-Bernus,Modification of the Perrine-Baum Diagram to Improve the Calculation of High-Voltage Transmission Lines.,2013,56,IEEE Trans. Education,3,db/journals/te/te56.html#Horta-BernusR13,https://doi.org/10.1109/TE.2012.2215861 +John E. Mahan,Bringing an emphasis on technical writing to a freshman course in electrical engineering.,2000,43,IEEE Trans. Education,1,db/journals/te/te43.html#MahanJLP00,https://doi.org/10.1109/13.825738 +Jesús Manuel Gómez de Gabriel,Mobile Robot Lab Project to Introduce Engineering Students to Fault Diagnosis in Mechatronic Systems.,2015,58,IEEE Trans. Education,3,db/journals/te/te58.html#GabrielMFG15,https://doi.org/10.1109/TE.2014.2358551 +Barbara A. Karanian,Guest Editorial 21st Century Trends That Influence Constructing Creative Classroom Environments.,2004,47,IEEE Trans. Education,2,db/journals/te/te47.html#KaranianC04,https://doi.org/10.1109/TE.2004.827212 +José M. Sebastián,Remote-access education based on image acquisition and processing through the Internet.,2003,46,IEEE Trans. Education,1,db/journals/te/te46.html#SebastianGS03,https://doi.org/10.1109/TE.2002.808237 +O. Pearl Brereton,Student group working across universities: a case study in software engineering.,2000,43,IEEE Trans. Education,4,db/journals/te/te43.html#BreretonLBBDLMY00,https://doi.org/10.1109/13.883348 +D. L. Evans,ECE curriculum in 2013 and beyond: vision for a metropolitan public research university.,2003,46,IEEE Trans. Education,4,db/journals/te/te46.html#EvansGR03,https://doi.org/10.1109/TE.2003.818750 +Mark A. Eddings,A Hands-On Freshman Survey Course to Steer Undergraduates Into Microsystems Coursework and Research.,2009,52,IEEE Trans. Education,3,db/journals/te/te52.html#EddingsSH09,https://doi.org/10.1109/TE.2008.928216 +Richard F. Vaz,ECE as a pre-professional undergraduate program.,2003,46,IEEE Trans. Education,4,db/journals/te/te46.html#VazO03,https://doi.org/10.1109/TE.2003.818751 +Suhash C. Dutta Roy,Some Little-Known Facts About Transmission Lines and Some New Results.,2010,53,IEEE Trans. Education,4,db/journals/te/te53.html#Roy10,https://doi.org/10.1109/TE.2009.2033040 +Rafael A. S. Ribeiro,Remote Spectroscopy in the Visible Using Fibers on the Optical Internet Network.,2010,53,IEEE Trans. Education,4,db/journals/te/te53.html#RibeiroOZ10,https://doi.org/10.1109/TE.2009.2038578 +Rafael Kelly,Learning PID structures in an introductory course of automatic control.,2001,44,IEEE Trans. Education,4,db/journals/te/te44.html#KellyM01,https://doi.org/10.1109/13.965786 +Gregory S. Mason,Comparing the Effectiveness of an Inverted Classroom to a Traditional Classroom in an Upper-Division Engineering Course.,2013,56,IEEE Trans. Education,4,db/journals/te/te56.html#MasonSC13,https://doi.org/10.1109/TE.2013.2249066 +Tsong Yueh Chen,Experience with teaching black-box testing in a computer science/software engineering curriculum.,2004,47,IEEE Trans. Education,1,db/journals/te/te47.html#ChenP04,https://doi.org/10.1109/TE.2003.817617 +Thaddeus A. Roppel,An interdisciplinary laboratory sequence in electrical and computer engineering: curriculum design and assessment results.,2000,43,IEEE Trans. Education,2,db/journals/te/te43.html#RoppelHWH00,https://doi.org/10.1109/13.848066 +Marcos Vicente Moreira,Fair and Square Computation of Inverse $ {\cal Z}$-Transforms of Rational Functions.,2012,55,IEEE Trans. Education,2,db/journals/te/te55.html#MoreiraB12,https://doi.org/10.1109/TE.2011.2171185 +Charles B. Fleddermann,Engineering ethics cases for electrical and computer engineering students.,2000,43,IEEE Trans. Education,3,db/journals/te/te43.html#Fleddermann00,https://doi.org/10.1109/13.865202 +Shreepad Karmalkar,Introducing the Device Modeling Procedure to Electrical Engineering Students.,2007,50,IEEE Trans. Education,2,db/journals/te/te50.html#Karmalkar07,https://doi.org/10.1109/TE.2007.893174 +Rong-Guey Ho,Design and evaluation of an XML-based platform-independent computerized adaptive testing system.,2005,48,IEEE Trans. Education,2,db/journals/te/te48.html#HoY05,https://doi.org/10.1109/TE.2004.837035 +Ignacio Cabrera,Blending Communities and Team-Based Learning in a Programming Course.,2017,60,IEEE Trans. Education,4,db/journals/te/te60.html#CabreraVC17,https://doi.org/10.1109/TE.2017.2698467 +Thomas J. Cavicchi,Simplified method for analytical evaluation of convolution integrals.,2002,45,IEEE Trans. Education,2,db/journals/te/te45.html#Cavicchi02,https://doi.org/10.1109/TE.2002.1013878 +Marion O. Hagler,Guest editorial.,2001,44,IEEE Trans. Education,4,db/journals/te/te44.html#Hagler01,https://doi.org/10.1109/TE.2001.965775 +Said Hadjerrouit,Learner-centered web-based instruction in software engineering.,2005,48,IEEE Trans. Education,1,db/journals/te/te48.html#Hadjerrouit05,https://doi.org/10.1109/TE.2004.832871 +Mladen Bozanic,A Survey of Current Trends in Master's Programs in Microelectronics.,2018,61,IEEE Trans. Education,2,db/journals/te/te61.html#BozanicS18,https://doi.org/10.1109/TE.2017.2778697 +Maria Grigoriadou,A web-based educational environment for teaching the computer cache memory.,2006,49,IEEE Trans. Education,1,db/journals/te/te49.html#GrigoriadouKG06,https://doi.org/10.1109/TE.2005.863431 +Evangelos Sakkopoulos,Adaptive mobile web services facilitate communication and learning Internet technologies.,2006,49,IEEE Trans. Education,2,db/journals/te/te49.html#SakkopoulosLT06,https://doi.org/10.1109/TE.2006.873985 +Chang-Seok Shin,Optimizing the Gaussian excitation function in the finite difference time domain method.,2002,45,IEEE Trans. Education,1,db/journals/te/te45.html#ShinN02,https://doi.org/10.1109/13.983216 +Sven Nordebo,On the use of Remes multiple exchange algorithm for linear-phase FIR filters with general specifications.,2000,43,IEEE Trans. Education,4,db/journals/te/te43.html#NordeboCD00,https://doi.org/10.1109/13.883359 +Robert M. O'Connell,Adapting Team-Based Learning for Application in the Basic Electric Circuit Theory Sequence.,2015,58,IEEE Trans. Education,2,db/journals/te/te58.html#OConnell15,https://doi.org/10.1109/TE.2014.2329650 +Woon-Seng Gan,Rapid prototyping system for teaching real-time digital signal processing.,2000,43,IEEE Trans. Education,1,db/journals/te/te43.html#GanCGT00,https://doi.org/10.1109/13.825735 +Jane Magill,Chips for Everyone: A Multifaceted Approach in Electrical Engineering Outreach.,2010,53,IEEE Trans. Education,1,db/journals/te/te53.html#MagillR10,https://doi.org/10.1109/TE.2009.2025267 +Mahesh B. Patil,A new public-domain simulator for power electronic circuits.,2002,45,IEEE Trans. Education,1,db/journals/te/te45.html#PatilDJC02,https://doi.org/10.1109/13.983225 +Jorge Francés,Educational Software for Interference and Optical Diffraction Analysis in Fresnel and Fraunhofer Regions Based on MATLAB GUIs and the FDTD Method.,2012,55,IEEE Trans. Education,1,db/journals/te/te55.html#FrancesPBFNB12,https://doi.org/10.1109/TE.2011.2150750 +Mariano Garduño-Aparicio,A Multidisciplinary Industrial Robot Approach for Teaching Mechatronics-Related Courses.,2018,61,IEEE Trans. Education,1,db/journals/te/te61.html#Garduno-Aparicio18,https://doi.org/10.1109/TE.2017.2741446 +Marcelo C. M. Teixeira,Proportional Controllers: Direct Method for Stability Analysis and MATLAB Implementation.,2007,50,IEEE Trans. Education,1,db/journals/te/te50.html#TeixeiraAC07,https://doi.org/10.1109/TE.2006.888903 +Slavko Kocijancic,Online experiments in physics and technology teaching.,2002,45,IEEE Trans. Education,1,db/journals/te/te45.html#Kocijancic02,https://doi.org/10.1109/13.983218 +Steven C. Gustafson,Bayesian Threshold Estimation.,2009,52,IEEE Trans. Education,3,db/journals/te/te52.html#GustafsonCLPS09,https://doi.org/10.1109/TE.2008.930092 +Guillermo H. Rodríguez,Measuring the Impact of Agile Coaching on Students' Performance.,2016,59,IEEE Trans. Education,3,db/journals/te/te59.html#RodriguezSC16,https://doi.org/10.1109/TE.2015.2506624 +James S. Collofello,University/industry collaboration in developing a simulation-based software project management training course.,2000,43,IEEE Trans. Education,4,db/journals/te/te43.html#Collofello00,https://doi.org/10.1109/13.883347 +Hélène Dubois,Teaching hardware/software system codesign using CAD tools: a case study in image synthesis.,2000,43,IEEE Trans. Education,3,db/journals/te/te43.html#DuboisSCP00,https://doi.org/10.1109/13.865201 +Kai Shing Yeung,A universal design chart for linear time-invariant continuous-time and discrete-time compensators.,2000,43,IEEE Trans. Education,3,db/journals/te/te43.html#YeungL00,https://doi.org/10.1109/13.865206 +Glenn W. Cox,Predicting Computer Science Ph.D. Completion: A Case Study.,2009,52,IEEE Trans. Education,1,db/journals/te/te52.html#CoxHEW09,https://doi.org/10.1109/TE.2008.921458 +Chris R. Smaill,The Implementation and Evaluation of a University-Based Outreach Laboratory Program in Electrical Engineering.,2010,53,IEEE Trans. Education,1,db/journals/te/te53.html#Smaill10,https://doi.org/10.1109/TE.2009.2022323 +David A. de Wolf,Ampère's Law for a Linear Uniform Cylindrical Current.,2007,50,IEEE Trans. Education,3,db/journals/te/te50.html#Wolf07,https://doi.org/10.1109/TE.2007.901980 +Jana Reisslein,Computer-Based Instruction on Multimedia Networking Fundamentals: Equational Versus Graphical Representation.,2005,48,IEEE Trans. Education,3,db/journals/te/te48.html#ReissleinSR05,https://doi.org/10.1109/TE.2005.849744 +Ali El-Hajj,Antenna array design using spreadsheets.,2003,46,IEEE Trans. Education,3,db/journals/te/te46.html#El-HajjKA03,https://doi.org/10.1109/TE.2003.813518 +Zafer Aydogmus,A Web-Based Remote Access Laboratory Using SCADA.,2009,52,IEEE Trans. Education,1,db/journals/te/te52.html#AydogmusA09,https://doi.org/10.1109/TE.2008.921445 +Jovan Djordjevic,Flexible web-based educational system for teaching computer architecture and organization.,2005,48,IEEE Trans. Education,2,db/journals/te/te48.html#DjordjevicNM05,https://doi.org/10.1109/TE.2004.842918 +Amelie Chevalier,A Three-Year Feedback Study of a Remote Laboratory Used in Control Engineering Studies.,2017,60,IEEE Trans. Education,2,db/journals/te/te60.html#ChevalierCIK17,https://doi.org/10.1109/TE.2016.2605080 +Tyson S. Hall,A Framework for Teaching Real-Time Digital Signal Processing With Field-Programmable Gate Arrays.,2005,48,IEEE Trans. Education,3,db/journals/te/te48.html#HallA05,https://doi.org/10.1109/TE.2005.853069 +Rebecca M. Reck,Common Learning Objectives for Undergraduate Control Systems Laboratories.,2017,60,IEEE Trans. Education,4,db/journals/te/te60.html#Reck17,https://doi.org/10.1109/TE.2017.2681624 +Cristina Losada,An Experience of CACSD for Networked Control Systems: From Mechatronic Platform Identification to Control Implementation.,2016,59,IEEE Trans. Education,4,db/journals/te/te59.html#LosadaESGBRR16,https://doi.org/10.1109/TE.2016.2550586 +Chih-Kuan Lee,"Correction to ""Establishing a K-12 Nanotechnology Program for Teacher Professional Development"".",2007,50,IEEE Trans. Education,2,db/journals/te/te50.html#LeeWLH07,https://doi.org/10.1109/TE.2007.893113 +Rocael Hernández,Creating and Deploying Effective eLearning Experiences Using .LRN.,2007,50,IEEE Trans. Education,4,db/journals/te/te50.html#HernandezPK07,https://doi.org/10.1109/TE.2007.906895 +Arif A. Anwar,Student project allocation using integer programming.,2003,46,IEEE Trans. Education,3,db/journals/te/te46.html#AnwarB03,https://doi.org/10.1109/TE.2003.811038 +Savas Sahin,Microcontroller-Based Experimental Setup and Experiments for SCADA Education.,2010,53,IEEE Trans. Education,3,db/journals/te/te53.html#SahinOI10,https://doi.org/10.1109/TE.2009.2026739 +Mikael Berndtsson,Analyzing course configurations for teaching object-oriented modeling and design.,2005,48,IEEE Trans. Education,2,db/journals/te/te48.html#Berndtsson05,https://doi.org/10.1109/TE.2004.842891 +Yang Zhao,A practical approach to EMC education at the undergraduate level.,2004,47,IEEE Trans. Education,4,db/journals/te/te47.html#ZhaoS04,https://doi.org/10.1109/TE.2004.825544 +Kasra Barkeshli,Electromagnetic scattering from thin strips. I. Analytical solutions for wide and narrow strips.,2004,47,IEEE Trans. Education,1,db/journals/te/te47.html#BarkeshliV04,https://doi.org/10.1109/TE.2003.818274 +Javier Ruiz-del-Solar,Robotics courses for children as a motivation tool: the Chilean experience.,2004,47,IEEE Trans. Education,4,db/journals/te/te47.html#Ruiz-del-SolarA04,https://doi.org/10.1109/TE.2004.825063 +Victor E. DeBrunner,The telecomputing laboratory: a multipurpose laboratory.,2001,44,IEEE Trans. Education,4,db/journals/te/te44.html#DeBrunnerDRK01,https://doi.org/10.1109/13.965776 +Donald L. Skaar,Using the superposition method to formulate the state variable matrix for linear networks.,2001,44,IEEE Trans. Education,4,db/journals/te/te44.html#Skaar01,https://doi.org/10.1109/13.965777 +Edurne Larraza-Mendiluze,Game-Console-Based Projects for Learning the Computer Input/Output Subsystem.,2013,56,IEEE Trans. Education,4,db/journals/te/te56.html#Larraza-MendiluzeGMMRALS13,https://doi.org/10.1109/TE.2013.2255877 +Wei-Jen Lee,A physical laboratory for protective relay education.,2002,45,IEEE Trans. Education,2,db/journals/te/te45.html#LeeGLD02,https://doi.org/10.1109/TE.2002.1013885 +José Luis Rodríguez-Marrero,Simplified analysis of feedback amplifiers.,2005,48,IEEE Trans. Education,1,db/journals/te/te48.html#Rodriguez-Marrero05,https://doi.org/10.1109/TE.2004.832878 +Joaquín Cerdá-Boluda,An active methodology for teaching electronic systems design.,2006,49,IEEE Trans. Education,3,db/journals/te/te49.html#Cerda-BoludaPTGC06,https://doi.org/10.1109/TE.2006.879247 +James O. Hamblen,An Embedded Systems Laboratory to Support Rapid Prototyping of Robotics and the Internet of Things.,2013,56,IEEE Trans. Education,1,db/journals/te/te56.html#HamblenB13,https://doi.org/10.1109/TE.2012.2227320 +Faruque Ahamed,An educational digital communications project using FPGAs to implement a BPSK detector.,2005,48,IEEE Trans. Education,1,db/journals/te/te48.html#AhamedS05,https://doi.org/10.1109/TE.2004.837036 +Clara M. Ionescu,A Remote Laboratory as an Innovative Educational Tool for Practicing Control Engineering Concepts.,2013,56,IEEE Trans. Education,4,db/journals/te/te56.html#IonescuFCDK13,https://doi.org/10.1109/TE.2013.2249516 +Renee M. Clark,Scaffolding to Support Problem-Solving Performance in a Bioengineering Lab - A Case Study.,2018,61,IEEE Trans. Education,2,db/journals/te/te61.html#ClarkM18,https://doi.org/10.1109/TE.2017.2755601 +France Belanger,Are Computing Students Different? An Analysis of Coping Strategies and Emotional Intelligence.,2007,50,IEEE Trans. Education,3,db/journals/te/te50.html#BelangerLKSH07,https://doi.org/10.1109/TE.2007.900029 +Salvador Ros,UNED OER Experience: From OCW to Open UNED.,2014,57,IEEE Trans. Education,4,db/journals/te/te57.html#RosHRRVO14,https://doi.org/10.1109/TE.2014.2331216 +Kumar Yelamarthi,A Flipped First-Year Digital Circuits Course for Engineering and Technology Students.,2015,58,IEEE Trans. Education,3,db/journals/te/te58.html#YelamarthiD15,https://doi.org/10.1109/TE.2014.2356174 +John V. Ringwood,Computer-aided learning in artificial neural networks.,2002,45,IEEE Trans. Education,4,db/journals/te/te45.html#RingwoodG02,https://doi.org/10.1109/TE.2002.804401 +Kok Kiong Tan,Development of a mobile spreadsheet-based PID control simulation system.,2006,49,IEEE Trans. Education,2,db/journals/te/te49.html#TanG06,https://doi.org/10.1109/TE.2006.873965 +Fernando Martínez,Project-Based Learning and Rubrics in the Teaching of Power Supplies and Photovoltaic Electricity.,2011,54,IEEE Trans. Education,1,db/journals/te/te54.html#MartinezHP11,https://doi.org/10.1109/TE.2010.2044506 +Mark J. Paulik,A competition-motivated capstone design course: the result of a fifteen-year evolution.,2001,44,IEEE Trans. Education,1,db/journals/te/te44.html#PaulikK01,https://doi.org/10.1109/13.912712 +Juan P. Oliver,Lab at Home: Hardware Kits for a Digital Design Lab.,2009,52,IEEE Trans. Education,1,db/journals/te/te52.html#OliverH09,https://doi.org/10.1109/TE.2008.917191 +David Samper Carnicer,Teaching Camera Calibration by a Constructivist Methodology.,2010,53,IEEE Trans. Education,4,db/journals/te/te53.html#SamperSPA10,https://doi.org/10.1109/TE.2009.2039574 +Francisco Rosales,Detection of Plagiarism in Programming Assignments.,2008,51,IEEE Trans. Education,2,db/journals/te/te51.html#RosalesDRPMN08,https://doi.org/10.1109/TE.2007.906778 +Presentacion Rivera-Reyes,Students' Task Interpretation and Conceptual Understanding in an Electronics Laboratory.,2017,60,IEEE Trans. Education,4,db/journals/te/te60.html#Rivera-ReyesLP17,https://doi.org/10.1109/TE.2017.2689723 +Pablo F. Miaja,A Switching-Mode Power Supply Design Tool to Improve Learning in a Power Electronics Course.,2011,54,IEEE Trans. Education,1,db/journals/te/te54.html#MiajaLARRH11,https://doi.org/10.1109/TE.2010.2046490 +Cristian Domnisoru,Using MATHCAD in teaching power engineering.,2005,48,IEEE Trans. Education,1,db/journals/te/te48.html#Domnisoru05,https://doi.org/10.1109/TE.2004.837043 +Zhiping Zhou,From classrooms to the real engineering world: the training program in the Microelectronics Research Center at Georgia Tech.,2004,47,IEEE Trans. Education,1,db/journals/te/te47.html#Zhou04,https://doi.org/10.1109/TE.2003.822262 +M. Cristina Rodriguez-Sánchez,An Embedded Systems Course for Engineering Students Using Open-Source Platforms in Wireless Scenarios.,2016,59,IEEE Trans. Education,4,db/journals/te/te59.html#Rodriguez-Sanchez16,https://doi.org/10.1109/TE.2016.2526676 +Gayatri Prabhu,Simulation of flat fading using MATLAB for classroom instruction.,2002,45,IEEE Trans. Education,1,db/journals/te/te45.html#PrabhuS02,https://doi.org/10.1109/13.983217 +Ahmet Bugra Koku,An Internet-assisted experimental environment suitable for the reinforcement of undergraduate teaching of advanced control techniques.,2001,44,IEEE Trans. Education,1,db/journals/te/te44.html#KokuK01,https://doi.org/10.1109/13.912706 +Allen Nussbaum,"Comments on ""The art of back-of-the envelope ray tracing"" [and reply].",2002,45,IEEE Trans. Education,2,db/journals/te/te45.html#Nussbaum02,https://doi.org/10.1109/TE.2002.1013888 +Randal T. Abler,University methodology for internetworking principles and design projects.,2003,46,IEEE Trans. Education,2,db/journals/te/te46.html#AblerOR03,https://doi.org/10.1109/TE.2002.808239 +Mohammed S. Z. Khan,NASWAVE-a program for display of standing waves on network analyzers.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#KhanSK01,https://doi.org/10.1109/13.925819 +Shu-Ching Yang,Information display interface in hypermedia design.,2000,43,IEEE Trans. Education,3,db/journals/te/te43.html#Yang00,https://doi.org/10.1109/13.865204 +Trinidad Sansaloni,FFT Spectrum Analyzer Project for Teaching Digital Signal Processing With FPGA Devices.,2007,50,IEEE Trans. Education,3,db/journals/te/te50.html#SansaloniPTATV07,https://doi.org/10.1109/TE.2007.900025 +Florence Sagnard,Educational graphical interfaces to learn about radiation and propagation of electromagnetic waves.,2004,47,IEEE Trans. Education,3,db/journals/te/te47.html#Sagnard04,https://doi.org/10.1109/TE.2004.825531 +F. J. García,Software modeling techniques for a first course in software engineering: a workshop-based approach.,2004,47,IEEE Trans. Education,2,db/journals/te/te47.html#GarciaM04,https://doi.org/10.1109/TE.2004.824839 +Akash Kumar 0001,Project-Based Learning in Embedded Systems Education Using an FPGA Platform.,2013,56,IEEE Trans. Education,4,db/journals/te/te56.html#KumarFP13,https://doi.org/10.1109/TE.2013.2246568 +José Andrés Santisteban,Vector control methods for induction machines: an overview.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#SantistebanS01,https://doi.org/10.1109/13.925828 +Ercüment Karakas,The Effects of Computer-Assisted Learning in Teaching Permanent Magnet Synchronous Motors.,2008,51,IEEE Trans. Education,4,db/journals/te/te51.html#KarakasT08,https://doi.org/10.1109/TE.2007.912546 +Alexander Abramovitz,Teaching Behavioral Modeling and Simulation Techniques for Power Electronics Courses.,2011,54,IEEE Trans. Education,4,db/journals/te/te54.html#Abramovitz11b,https://doi.org/10.1109/TE.2010.2076380 +Frank A. Cassara,Wireless communications laboratory.,2006,49,IEEE Trans. Education,1,db/journals/te/te49.html#Cassara06,https://doi.org/10.1109/TE.2005.863428 +Ali Mehrizi-Sani,Everyday Electrical Engineering: A One-Week Summer Academy Course for High School Students.,2012,55,IEEE Trans. Education,4,db/journals/te/te55.html#Mehrizi-Sani12,https://doi.org/10.1109/TE.2012.2190606 +Jeffrey E. Froyd,Editorial: A New Direction for the IEEE Transactions on Education: Part I. Developing Shared Understanding of the Scholarship of Application.,2013,56,IEEE Trans. Education,4,db/journals/te/te56.html#Froyd13,https://doi.org/10.1109/TE.2013.2283533 +Francisco Jurado 0002,Experiences with fuzzy logic and neural networks in a control course.,2002,45,IEEE Trans. Education,2,db/journals/te/te45.html#JuradoCC02,https://doi.org/10.1109/TE.2002.1013881 +Edward A. Clancy,Assessment of a case study laboratory to increase awareness of ethical issues in engineering.,2005,48,IEEE Trans. Education,2,db/journals/te/te48.html#ClancyQM05,https://doi.org/10.1109/TE.2004.842900 +Chetan S. Mandayam Nayaka,High-frequency transistor amplifier analysis.,2006,49,IEEE Trans. Education,1,db/journals/te/te49.html#Nayaka06,https://doi.org/10.1109/TE.2005.856151 +Basilio Pueo,A Pedagogical Software for the Analysis of Loudspeaker Systems.,2009,52,IEEE Trans. Education,2,db/journals/te/te52.html#PueoREL09,https://doi.org/10.1109/TE.2008.925768 +Tiago José Goulart,Automated system for measuring electrical three-phase power components.,2001,44,IEEE Trans. Education,4,db/journals/te/te44.html#GoulartC01,https://doi.org/10.1109/13.965781 +María S. Pérez,Are web self-assessment tools useful for training?,2005,48,IEEE Trans. Education,4,db/journals/te/te48.html#PerezHSR05,https://doi.org/10.1109/TE.2005.853073 +Sally A. McInerny,Basic vibration signal processing for bearing fault detection.,2003,46,IEEE Trans. Education,1,db/journals/te/te46.html#McInernyD03,https://doi.org/10.1109/TE.2002.808234 +Pilar Martínez Jiménez,Tutorial and simulation electrooptic and acoustooptic software as innovative methodology to improve the quality of electronic and computer engineering formation.,2006,49,IEEE Trans. Education,2,db/journals/te/te49.html#JimenezMPMBUF06,https://doi.org/10.1109/TE.2006.873987 +Elias Todorovich,"Correction to ""Introducing Programmable Logic to Undergraduate Engineering Students in a Digital Electronics Course"".",2012,55,IEEE Trans. Education,2,db/journals/te/te55.html#TodorovichMV12a,https://doi.org/10.1109/TE.2012.2189613 +Raymond T. Yeh,Educating future software engineers.,2002,45,IEEE Trans. Education,1,db/journals/te/te45.html#Yeh02,https://doi.org/10.1109/TE.2002.983211 +Birgit Vogel-Heuser,Evaluation of a UML-Based Versus an IEC 61131-3-Based Software Engineering Approach for Teaching PLC Programming.,2013,56,IEEE Trans. Education,3,db/journals/te/te56.html#Vogel-HeuserOBSJS13,https://doi.org/10.1109/TE.2012.2226035 +Panayiotis S. Shiakolas,Development of a real-time digital control system with a hardware-in-the-loop magnetic levitation device for reinforcement of controls education.,2003,46,IEEE Trans. Education,1,db/journals/te/te46.html#ShiakolasP03,https://doi.org/10.1109/TE.2002.808268 +Daniel Carmona Morales,Educational Tool for Optimal Controller Tuning Using Evolutionary Strategies.,2012,55,IEEE Trans. Education,1,db/journals/te/te55.html#MoralesJVM12,https://doi.org/10.1109/TE.2011.2116791 +Daniel J. Pack,Fire-fighting mobile robotics and interdisciplinary design-comparative perspectives.,2004,47,IEEE Trans. Education,3,db/journals/te/te47.html#PackAAV04,https://doi.org/10.1109/TE.2004.825547 +Konstantinos Antonis,Evaluation of the Effectiveness of a Web-Based Learning Design for Adult Computer Science Courses.,2011,54,IEEE Trans. Education,3,db/journals/te/te54.html#AntonisDPS11,https://doi.org/10.1109/TE.2010.2060263 +Pablo Zumel,Step-By-Step Design of an FPGA-Based Digital Compensator for DC/DC Converters Oriented to an Introductory Course.,2011,54,IEEE Trans. Education,4,db/journals/te/te54.html#ZumelFSLB11,https://doi.org/10.1109/TE.2010.2100397 +Teresa Larkin-Hein,Research on learning style: applications in the physics and engineering classrooms.,2001,44,IEEE Trans. Education,3,db/journals/te/te44.html#Larkin-HeinB01,https://doi.org/10.1109/13.941000 +Michael A. Jensen,System-level microwave design: radar-based laboratory projects.,2000,43,IEEE Trans. Education,4,db/journals/te/te43.html#JensenAC00,https://doi.org/10.1109/13.883351 +Nevena Ackovska,OER Approach for Specific Student Groups in Hardware-Based Courses.,2014,57,IEEE Trans. Education,4,db/journals/te/te57.html#AckovskaR14,https://doi.org/10.1109/TE.2014.2327007 +Habib-ur Rehman,An Integrated Approach for Strategic Development of Engineering Curricula: Focus on Students' Design Skills.,2009,52,IEEE Trans. Education,4,db/journals/te/te52.html#RehmanSA09,https://doi.org/10.1109/TE.2008.930508 +Jerry S. Busby,An evaluation of an instructional system for engineering task estimation.,2000,43,IEEE Trans. Education,1,db/journals/te/te43.html#BusbyPSH00,https://doi.org/10.1109/13.825737 +Richard B. Brown,A microprocessor design project in an introductory VLSI course.,2000,43,IEEE Trans. Education,3,db/journals/te/te43.html#BrownLCD00,https://doi.org/10.1109/13.865214 +Christopher M. Kellett,A Project-Based Learning Approach to Programmable Logic Design and Computer Architecture.,2012,55,IEEE Trans. Education,3,db/journals/te/te55.html#Kellett12,https://doi.org/10.1109/TE.2011.2179301 +Maja Atanasijevic-Kunc,Remote Multivariable Control Design Using a Competition Game.,2011,54,IEEE Trans. Education,1,db/journals/te/te54.html#Atanasijevic-KuncLKPK11,https://doi.org/10.1109/TE.2010.2046489 +Davinia Hernández Leo,Free- and Open-Source Software for a Course on Network Management: Authoring and Enactment of Scripts Based on Collaborative Learning Strategies.,2007,50,IEEE Trans. Education,4,db/journals/te/te50.html#LeoBAGVJD07,https://doi.org/10.1109/TE.2007.904589 +Michael Duarte,An Intelligent Universal Virtual Laboratory (UVL).,2008,51,IEEE Trans. Education,1,db/journals/te/te51.html#DuarteBMM08,https://doi.org/10.1109/TE.2006.888902 +Roman Kuc,Teaching introductory autonomous robotics with JavaScript simulations and actual robots.,2004,47,IEEE Trans. Education,1,db/journals/te/te47.html#KucJK04,https://doi.org/10.1109/TE.2003.817619 +Ashwin Mohan,Professional Skills in the Engineering Curriculum.,2010,53,IEEE Trans. Education,4,db/journals/te/te53.html#MohanMJLN10,https://doi.org/10.1109/TE.2009.2033041 +Robert W. Ives,A Multidisciplinary Approach to Biometrics.,2005,48,IEEE Trans. Education,3,db/journals/te/te48.html#IvesDEW05,https://doi.org/10.1109/TE.2005.849750 +Thomas J. Cavicchi,Experimentation and Analysis: SigLab/MATLAB Data Acquisition Experiments for Signals and Systems.,2005,48,IEEE Trans. Education,3,db/journals/te/te48.html#Cavicchi05,https://doi.org/10.1109/TE.2005.852595 +Ann E. Kelley Sobel,Emphasizing formal analysis in a software engineering curriculum.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#Sobel01,https://doi.org/10.1109/TE.2001.925876 +Ahmet Bindal,An undergraduate system-on-chip (SoC) course for computer engineering students.,2005,48,IEEE Trans. Education,2,db/journals/te/te48.html#BindalMAR05,https://doi.org/10.1109/TE.2004.842911 +Ignacio Aedo,Assessing the utility of an interactive electronic book for learning the Pascal programming language.,2000,43,IEEE Trans. Education,4,db/journals/te/te43.html#AedoDFMB00,https://doi.org/10.1109/13.883350 +Ney Laert Vilar Calazans,Integrating the teaching of computer organization and architecture with digital hardware design early in undergraduate courses.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#CalazansM01,https://doi.org/10.1109/13.925805 +Ikhlas Abdel-Qader,Real-time digital signal processing in the undergraduate curriculum.,2003,46,IEEE Trans. Education,1,db/journals/te/te46.html#Abdel-QaderBMP03,https://doi.org/10.1109/TE.2002.808273 +Pedro J. Muñoz Merino,Enhancement of Student Learning Through the Use of a Hinting Computer e-Learning System and Comparison With Human Teachers.,2011,54,IEEE Trans. Education,1,db/journals/te/te54.html#MerinoKO11,https://doi.org/10.1109/TE.2010.2045001 +Anthony S. Ruocco,Experiences in threading UML throughout a computer science program.,2003,46,IEEE Trans. Education,2,db/journals/te/te46.html#Ruocco03,https://doi.org/10.1109/TE.2002.808263 +D. C. Agrawal,Light bulb exponent-rules for the classroom.,2000,43,IEEE Trans. Education,3,db/journals/te/te43.html#AgrawalM00,https://doi.org/10.1109/13.865198 +Bruce A. Eisenstein,2005 IEEE Educational Activities Board Awards.,2006,49,IEEE Trans. Education,2,db/journals/te/te49.html#Eisenstein06,https://doi.org/10.1109/TE.2006.874501 +Saket Srivastava,Integrating a Nanologic Knowledge Module Into an Undergraduate Logic Design Course.,2008,51,IEEE Trans. Education,3,db/journals/te/te51.html#SrivastavaB08,https://doi.org/10.1109/TE.2008.919660 +Anthony A. Renshaw,An assessment of on-line engineering design problem presentation strategies.,2000,43,IEEE Trans. Education,2,db/journals/te/te43.html#RenshawRZPMF00,https://doi.org/10.1109/13.848058 +Francisco Ortin,Design Patterns for Teaching Type Checking in a Compiler Construction Course.,2007,50,IEEE Trans. Education,3,db/journals/te/te50.html#OrtinPL07,https://doi.org/10.1109/TE.2007.901983 +John E. Mitchell 0002,Problem-Based Learning in Communication Systems: Student Perceptions and Achievement.,2010,53,IEEE Trans. Education,4,db/journals/te/te53.html#MitchellCS10,https://doi.org/10.1109/TE.2009.2036158 +J. B. Temes,Teaching electromagnetic waves to electrical engineering students: an abridged approach.,2003,46,IEEE Trans. Education,2,db/journals/te/te46.html#Temes03,https://doi.org/10.1109/TE.2002.808275 +Brian L. F. Daku,Development of an interactive CDROM-based tutorial for teaching MATLAB.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#DakuJ01,https://doi.org/10.1109/13.925843 +Christopher W. Trueman,Interactive transmission line computer program for undergraduate teaching.,2000,43,IEEE Trans. Education,1,db/journals/te/te43.html#Trueman00,https://doi.org/10.1109/13.825733 +Frederick C. Berry,The future of electrical and computer engineering education.,2003,46,IEEE Trans. Education,4,db/journals/te/te46.html#BerryDS03,https://doi.org/10.1109/TE.2003.818757 +Carmen C. Mayorga Martinez,A pH Sensor Based on a Stainless Steel Electrode Electrodeposited With Iridium Oxide.,2009,52,IEEE Trans. Education,1,db/journals/te/te52.html#MartinezMF09,https://doi.org/10.1109/TE.2008.921451 +Igor Davidovich Rudinskiy,Fuzzy Knowledge Evaluation Model as a Methodological Basis for Automation of Pedagogical Testing.,2007,50,IEEE Trans. Education,1,db/journals/te/te50.html#Rudinskiy07,https://doi.org/10.1109/TE.2006.888904 +Vladan Devedzic,Teaching Agile Software Development: A Case Study.,2011,54,IEEE Trans. Education,2,db/journals/te/te54.html#DevedzicM11,https://doi.org/10.1109/TE.2010.2052104 +Eniko T. Enikov,Mechatronic Aeropendulum: Demonstration of Linear and Nonlinear Feedback Control Principles With MATLAB/Simulink Real-Time Windows Target.,2012,55,IEEE Trans. Education,4,db/journals/te/te55.html#EnikovC12,https://doi.org/10.1109/TE.2012.2195496 +Rafael Queiroz Gonçalves,An Instructional Feedback Technique for Teaching Project Management Tools Aligned With PMBOK.,2018,61,IEEE Trans. Education,2,db/journals/te/te61.html#GoncalvesWHZ18,https://doi.org/10.1109/TE.2017.2774766 +Jana Reisslein,Color Coding of Circuit Quantities in Introductory Circuit Analysis Instruction.,2015,58,IEEE Trans. Education,1,db/journals/te/te58.html#ReissleinJR15,https://doi.org/10.1109/TE.2014.2312674 +Félix Buendía,Webgene OS: A Generative and Web-Based Learning Architecture to Teach Operating Systems in Undergraduate Courses.,2006,49,IEEE Trans. Education,4,db/journals/te/te49.html#BuendiaC06,https://doi.org/10.1109/TE.2006.882368 +Greg Mason,A handheld data acquisition system for use in an undergraduate data acquisition course.,2002,45,IEEE Trans. Education,4,db/journals/te/te45.html#Mason02,https://doi.org/10.1109/TE.2002.804402 +Qinran Hu,A Smart Home Test Bed for Undergraduate Education to Bridge the Curriculum Gap From Traditional Power Systems to Modernized Smart Grids.,2015,58,IEEE Trans. Education,1,db/journals/te/te58.html#HuLC15,https://doi.org/10.1109/TE.2014.2321529 +Jack McGourty,Using multisource feedback in the classroom: a computer-based approach.,2000,43,IEEE Trans. Education,2,db/journals/te/te43.html#McGourty00,https://doi.org/10.1109/13.848062 +Gregory K. W. K. Chung,The impact of a simulation-based learning design project on student learning.,2001,44,IEEE Trans. Education,4,db/journals/te/te44.html#ChungHB01,https://doi.org/10.1109/13.965789 +Francesco Corsi,An approach to the analysis of the CMOS differential stage with active load and single-ended output.,2003,46,IEEE Trans. Education,3,db/journals/te/te46.html#CorsiM03,https://doi.org/10.1109/TE.2003.813517 +Weili Cui,Realization of a Comprehensive Multidisciplinary Microfabrication Education Program at Binghamton University.,2015,58,IEEE Trans. Education,1,db/journals/te/te58.html#CuiJKMWW15,https://doi.org/10.1109/TE.2014.2319054 +Michael L. Jacobson,Introducing design skills at the freshman level: structured design experience.,2006,49,IEEE Trans. Education,2,db/journals/te/te49.html#JacobsonSR06,https://doi.org/10.1109/TE.2006.872403 +Gloria J. Kim,Perspective on Flipping Circuits I.,2014,57,IEEE Trans. Education,3,db/journals/te/te57.html#KimPSL14,https://doi.org/10.1109/TE.2014.2298218 +Lei Jing,A Spiral Step-by-Step Educational Method for Cultivating Competent Embedded System Engineers to Meet Industry Demands.,2011,54,IEEE Trans. Education,3,db/journals/te/te54.html#JingCWZ11,https://doi.org/10.1109/TE.2010.2058576 +Natalia Esteban-Sánchez,Evaluation of a Didactic Method for the Active Learning of Greedy Algorithms.,2014,57,IEEE Trans. Education,2,db/journals/te/te57.html#Esteban-SanchezPV14,https://doi.org/10.1109/TE.2013.2275154 +Atila Ertas,Transformation of higher education: the transdisciplinary approach in engineering.,2003,46,IEEE Trans. Education,2,db/journals/te/te46.html#ErtasMRT03,https://doi.org/10.1109/TE.2002.808232 +Jean-Marc Thiriet,Toward a Pan-European virtual university in electrical and information engineering.,2002,45,IEEE Trans. Education,2,db/journals/te/te45.html#ThirietRLHMS02,https://doi.org/10.1109/TE.2002.1013880 +Félix R. Quintela,A General Approach to Kirchhoff's Laws.,2009,52,IEEE Trans. Education,2,db/journals/te/te52.html#QuintelaRMR09,https://doi.org/10.1109/TE.2008.928189 +Svetlana Mansmann,Decision Support System for Managing Educational Capacity Utilization.,2007,50,IEEE Trans. Education,2,db/journals/te/te50.html#MansmannS07,https://doi.org/10.1109/TE.2007.893175 +Shin-Shing Shin,Concept Maps as Instructional Tools for Improving Learning of Phase Transitions in Object-Oriented Analysis and Design.,2016,59,IEEE Trans. Education,1,db/journals/te/te59.html#Shin16,https://doi.org/10.1109/TE.2015.2418176 +Monson H. Hayes,Distance learning across the Atlantic.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#HayesM01,https://doi.org/10.1109/13.925851 +Jae Wook Jeon,A microprocessor course: designing and implementing personal microcomputers.,2000,43,IEEE Trans. Education,4,db/journals/te/te43.html#Jeon00,https://doi.org/10.1109/13.883353 +Catalin Buiu,Hybrid Educational Strategy for a Laboratory Course on Cognitive Robotics.,2008,51,IEEE Trans. Education,1,db/journals/te/te51.html#Buiu08,https://doi.org/10.1109/TE.2007.906605 +Antoine Nonclercq,Problem-Based Learning in Instrumentation: Synergism of Real and Virtual Modular Acquisition Chains.,2010,53,IEEE Trans. Education,2,db/journals/te/te53.html#NonclercqBCLMR10,https://doi.org/10.1109/TE.2009.2013716 +Larry Shirland,Collaborative teaching of integrated product development: a case study.,2000,43,IEEE Trans. Education,3,db/journals/te/te43.html#ShirlandM00,https://doi.org/10.1109/13.865212 +Mubarak Shah,Mentoring undergraduates in computer vision research.,2001,44,IEEE Trans. Education,3,db/journals/te/te44.html#ShahB01,https://doi.org/10.1109/13.940996 +Sasha Nikolic,Decoding Student Satisfaction: How to Manage and Improve the Laboratory Experience.,2015,58,IEEE Trans. Education,3,db/journals/te/te58.html#NikolicRVRS15,https://doi.org/10.1109/TE.2014.2346474 +Geir Hovland,Evaluation of an Online Inverted Pendulum Control Experiment.,2008,51,IEEE Trans. Education,1,db/journals/te/te51.html#Hovland08,https://doi.org/10.1109/TE.2007.906612 +Cristina Fernandez,Description and Assessment of Activities Oriented to Enhance a First Course on Power Electronics.,2011,54,IEEE Trans. Education,4,db/journals/te/te54.html#FernandezZSLB11,https://doi.org/10.1109/TE.2010.2089458 +Rosanna Yuen-Yan Chan,Engineering Outreach: A Successful Initiative With Gifted Students in Science and Technology in Hong Kong.,2010,53,IEEE Trans. Education,1,db/journals/te/te53.html#ChanHDCCCKLWLL10,https://doi.org/10.1109/TE.2009.2030178 +Gwo-Jen Hwang,A tabu search approach to generating test sheets for multiple assessment criteria.,2006,49,IEEE Trans. Education,1,db/journals/te/te49.html#HwangYY06,https://doi.org/10.1109/TE.2002.858405 +Jinn-Tsong Tsai,Learning Intelligent Genetic Algorithms Using Japanese Nonograms.,2012,55,IEEE Trans. Education,2,db/journals/te/te55.html#TsaiCF12,https://doi.org/10.1109/TE.2011.2158214 +Natasa Hoic-Bozic,A Blended Learning Approach to Course Design and Implementation.,2009,52,IEEE Trans. Education,1,db/journals/te/te52.html#Hoic-BozicMB09,https://doi.org/10.1109/TE.2007.914945 +Robert M. Nelson,MES - a web-based design tool for microwave engineering.,2006,49,IEEE Trans. Education,1,db/journals/te/te49.html#NelsonI06,https://doi.org/10.1109/TE.2005.856154 +Olatz Arbelaitz,Analysis of Introducing Active Learning Methodologies in a Basic Computer Architecture Course.,2015,58,IEEE Trans. Education,2,db/journals/te/te58.html#ArbelaitzMM15,https://doi.org/10.1109/TE.2014.2332448 +Yoonsoo Kim,Control Systems Lab Using a LEGO Mindstorms NXT Motor System.,2011,54,IEEE Trans. Education,3,db/journals/te/te54.html#Kim11,https://doi.org/10.1109/TE.2010.2076284 +Jaana Holvikivi,Logical Reasoning Ability in Engineering Students: A Case Study.,2007,50,IEEE Trans. Education,4,db/journals/te/te50.html#Holvikivi07,https://doi.org/10.1109/TE.2007.906600 +Mathieu Lavallée,Performing Systematic Literature Reviews With Novices: An Iterative Approach.,2014,57,IEEE Trans. Education,3,db/journals/te/te57.html#LavalleeRM14,https://doi.org/10.1109/TE.2013.2292570 +Mark H. Somerville,The Olin curriculum: thinking toward the future.,2005,48,IEEE Trans. Education,1,db/journals/te/te48.html#SomervilleABBCDDHKKMMMPPSSSSSSTVZ05,https://doi.org/10.1109/TE.2004.842905 +Christos Ttofis,FPGA-Based Laboratory Assignments for NoC-Based Manycore Systems.,2012,55,IEEE Trans. Education,2,db/journals/te/te55.html#TtofisTM12,https://doi.org/10.1109/TE.2011.2159795 +Jennifer Turns,Concept maps for engineering education: a cognitively motivated tool supporting varied assessment functions.,2000,43,IEEE Trans. Education,2,db/journals/te/te43.html#TurnsAA00,https://doi.org/10.1109/13.848069 +Muhammad Taher Abuelma'atti,Applications of SPICE simulation software to the study of reliability and availability in electrical engineering education.,2002,45,IEEE Trans. Education,3,db/journals/te/te45.html#AbuelmaattiQ02,https://doi.org/10.1109/TE.2002.1024612 +Juan Albino Méndez,Implementing Motivational Features in Reactive Blended Learning: Application to an Introductory Control Engineering Course.,2011,54,IEEE Trans. Education,4,db/journals/te/te54.html#MendezG11,https://doi.org/10.1109/TE.2010.2102028 +Aaron M. Kyle,Bioinstrumentation: A Project-Based Engineering Course.,2016,59,IEEE Trans. Education,1,db/journals/te/te59.html#KyleJBD16,https://doi.org/10.1109/TE.2015.2445313 +Bin Shyan Jong,Effects of Anonymity in Group Discussion on Peer Interaction and Learning Achievement.,2013,56,IEEE Trans. Education,3,db/journals/te/te56.html#JongLHL13,https://doi.org/10.1109/TE.2012.2217379 +Gregor Verbic,A Project-Based Cooperative Approach to Teaching Sustainable Energy Systems.,2017,60,IEEE Trans. Education,3,db/journals/te/te60.html#VerbicKC17,https://doi.org/10.1109/TE.2016.2639444 +Grzegorz Cielniak,Integrating Mobile Robotics and Vision With Undergraduate Computer Science.,2013,56,IEEE Trans. Education,1,db/journals/te/te56.html#CielniakBD13,https://doi.org/10.1109/TE.2012.2213822 +Mehmet Dal,Teaching Electric Drives Control Course: Incorporation of Active Learning Into the Classroom.,2013,56,IEEE Trans. Education,4,db/journals/te/te56.html#Dal13,https://doi.org/10.1109/TE.2013.2256424 +Denise Consonni,Signals in Communication Engineering History.,2010,53,IEEE Trans. Education,4,db/journals/te/te53.html#ConsonniS10,https://doi.org/10.1109/TE.2009.2038789 +Malcolm John Joyce,The Fender Stratocaster Electric Guitar: A Case Study for Both Nontransferable and Transferable Skills Learning in a Generalist Electronic Engineering Cohort.,2010,53,IEEE Trans. Education,3,db/journals/te/te53.html#Joyce10,https://doi.org/10.1109/TE.2009.2025369 +Oriol Gomis-Bellmunt,A distance PLC programming course employing a remote laboratory based on a flexible manufacturing cell.,2006,49,IEEE Trans. Education,2,db/journals/te/te49.html#Gomis-BellmuntMGSS06,https://doi.org/10.1109/TE.2006.873982 +Costin Miron,The CMOS differential stage with active load intuitively demonstrates the unequal split of the differential input Voltage.,2006,49,IEEE Trans. Education,1,db/journals/te/te49.html#MironS06,https://doi.org/10.1109/TE.2005.858407 +Laurel D. Riek,Embodied Computation: An Active-Learning Approach to Mobile Robotics Education.,2013,56,IEEE Trans. Education,1,db/journals/te/te56.html#Riek13,https://doi.org/10.1109/TE.2012.2221716 +Stefano Salvatori,On the SCTC-OCTC Method for the Analysis and Design of Circuits.,2009,52,IEEE Trans. Education,3,db/journals/te/te52.html#SalvatoriC09,https://doi.org/10.1109/TE.2008.928218 +José Antonio Marinho Brandão Faria,A pedagogical example of the application of transmission-line theory to study conductor grounding effects.,2004,47,IEEE Trans. Education,1,db/journals/te/te47.html#Faria04,https://doi.org/10.1109/TE.2003.822634 +Antonio Luchetta,SAPWIN-a symbolic simulator as a support in electrical engineering education.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#LuchettaMR01,https://doi.org/10.1109/13.925868 +Francisco Javier Ferrero Martín,An Electronic Instrumentation Design Project for Computer Engineering Students.,2005,48,IEEE Trans. Education,3,db/journals/te/te48.html#MartinRAPVV05,https://doi.org/10.1109/TE.2005.849752 +Luisa M. Regueras,Effects of Competitive E-Learning Tools on Higher Education Students: A Case Study.,2009,52,IEEE Trans. Education,2,db/journals/te/te52.html#ReguerasVMPCV09,https://doi.org/10.1109/TE.2008.928198 +Bridget Benson,Integrating Embedded Computing Systems Into High School and Early Undergraduate Education.,2011,54,IEEE Trans. Education,2,db/journals/te/te54.html#BensonAKKG11,https://doi.org/10.1109/TE.2010.2078819 +Seyed Ali Shirsavar,Three-phase machines and drives-equipment for a laboratory-based course.,2006,49,IEEE Trans. Education,3,db/journals/te/te49.html#ShirsavarPR06,https://doi.org/10.1109/TE.2006.879266 +Gerasimos K. Pagiatakis,Teaching telecommunications to electronics technical engineers: an integral course on telecommunication systems.,2005,48,IEEE Trans. Education,2,db/journals/te/te48.html#Pagiatakis05,https://doi.org/10.1109/TE.2004.837037 +Michael N. Geselowitz,Guest editorial: the educational activities of the IEEE history center.,2002,45,IEEE Trans. Education,3,db/journals/te/te45.html#GeselowitzSL02,https://doi.org/10.1109/TE.2002.1024611 +Suzanne W. Dietrich,Developing Advanced Courses for Undergraduates: A Case Study in Databases.,2008,51,IEEE Trans. Education,1,db/journals/te/te51.html#DietrichUH08,https://doi.org/10.1109/TE.2007.907322 +Manuel Castro,Examples of distance learning projects in the European Community.,2001,44,IEEE Trans. Education,4,db/journals/te/te44.html#CastroLPCMYCPD01,https://doi.org/10.1109/13.965791 +Leif Uhsadel,Teaching HW/SW Co-Design With a Public Key Cryptography Application.,2013,56,IEEE Trans. Education,4,db/journals/te/te56.html#UhsadelUDKBVD13,https://doi.org/10.1109/TE.2013.2257785 +Javier Macías Guarasa,A project-based learning approach to design electronic systems curricula.,2006,49,IEEE Trans. Education,3,db/journals/te/te49.html#GuarasaMSAN06,https://doi.org/10.1109/TE.2006.879784 +Jessica Y. Guevara-Cedeño,Experimental Economics for Teaching the Functioning of Electricity Markets.,2012,55,IEEE Trans. Education,4,db/journals/te/te55.html#Guevara-CedenoPU12,https://doi.org/10.1109/TE.2012.2189886 +Konstantinos A. Gotsis,A test lab for the performance analysis of TCP over ethernet LAN on windows operating system.,2005,48,IEEE Trans. Education,2,db/journals/te/te48.html#GotsisGS05,https://doi.org/10.1109/TE.2004.842897 +Andre Morelato,A computer tool for helping engineering students in their learning of electrical energy basics.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#Morelato01,https://doi.org/10.1109/13.925872 +Jimmie J. Cathey,A MATLAB-based graphical technique for amortization study of adjustable speed drives.,2002,45,IEEE Trans. Education,2,db/journals/te/te45.html#Cathey02,https://doi.org/10.1109/TE.2002.1013884 +Bin Shyan Jong,Using Game-Based Cooperative Learning to Improve Learning Motivation: A Study of Online Game Use in an Operating Systems Course.,2013,56,IEEE Trans. Education,2,db/journals/te/te56.html#JongLHLL13,https://doi.org/10.1109/TE.2012.2207959 +Vilma A. Oliveira,Robust controllers enhanced with design and implementation processes.,2006,49,IEEE Trans. Education,3,db/journals/te/te49.html#OliveiraTS06,https://doi.org/10.1109/TE.2006.879263 +José García,Active Methodologies in a Queueing Systems Course for Telecommunication Engineering Studies.,2010,53,IEEE Trans. Education,3,db/journals/te/te53.html#GarciaH10,https://doi.org/10.1109/TE.2009.2026365 +Carlos Faria,Experiential Learning of Robotics Fundamentals Based on a Case Study of Robot-Assisted Stereotactic Neurosurgery.,2016,59,IEEE Trans. Education,2,db/journals/te/te59.html#FariaVMERMB16,https://doi.org/10.1109/TE.2015.2456176 +Riadh W. Y. Habash,Engaging High School and Engineering Students: A Multifaceted Outreach Program Based on a Mechatronics Platform.,2010,53,IEEE Trans. Education,1,db/journals/te/te53.html#HabashS10,https://doi.org/10.1109/TE.2009.2025659 +Fuensanta Medina-Domínguez,Reverse Engineering and Software Products Reuse to Teach Collaborative Web Portals: A Case Study With Final-Year Computer Science Students.,2010,53,IEEE Trans. Education,4,db/journals/te/te53.html#Medina-DominguezSMS10,https://doi.org/10.1109/TE.2009.2037313 +Edward J. Rothwell,Automatic Error Analysis Using Intervals.,2012,55,IEEE Trans. Education,1,db/journals/te/te55.html#RothwellC12,https://doi.org/10.1109/TE.2011.2109722 +Federico Milano,An Open Source Power System Virtual Laboratory: The PSAT Case and Experience.,2008,51,IEEE Trans. Education,1,db/journals/te/te51.html#MilanoVM08,https://doi.org/10.1109/TE.2007.893354 +Gustavo Vejarano,A Constructivist Simulation-Based Methodology for Teaching Mobile Communications.,2008,51,IEEE Trans. Education,4,db/journals/te/te51.html#VejaranoG08,https://doi.org/10.1109/TE.2007.914941 +Ohad Barzilay,A Multidimensional Software Engineering Course.,2009,52,IEEE Trans. Education,3,db/journals/te/te52.html#BarzilayHY09,https://doi.org/10.1109/TE.2008.930094 +Maja Pantic,Teaching Introductory Artificial Intelligence Using a Simple Agent Framework.,2005,48,IEEE Trans. Education,3,db/journals/te/te48.html#PanticZG05,https://doi.org/10.1109/TE.2004.842906 +Andrea Forte,Motivation and nonmajors in computer science: identifying discrete audiences for introductory courses.,2005,48,IEEE Trans. Education,2,db/journals/te/te48.html#ForteG05,https://doi.org/10.1109/TE.2004.842924 +Haniph A. Latchman,Learning on demand-a hybrid synchronous/asynchronous approach.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#LatchmanSGK01,https://doi.org/10.1109/13.925861 +Despina Tsompanoudi,Evaluating the Effects of Scripted Distributed Pair Programming on Student Performance and Participation.,2016,59,IEEE Trans. Education,1,db/journals/te/te59.html#TsompanoudiSX16,https://doi.org/10.1109/TE.2015.2419192 +Chris J. Harrison,An initial object-oriented programming language (IOPL) and its implementation.,2005,48,IEEE Trans. Education,1,db/journals/te/te48.html#HarrisonSE05,https://doi.org/10.1109/TE.2004.832883 +Qinghua Zeng,Improving Aerospace Engineering Students' Achievements by an Open Aero Control Experiment Apparatus.,2014,57,IEEE Trans. Education,4,db/journals/te/te57.html#ZengZHD14,https://doi.org/10.1109/TE.2014.2326835 +T. Clausen,Guest Editorial Undergraduate Engineering Education Challenged by The Bologna Declaration.,2005,48,IEEE Trans. Education,2,db/journals/te/te48.html#Clausen05,https://doi.org/10.1109/TE.2005.846045 +James P. Becker,Using Antenna Arrays to Motivate the Study of Sinusoids.,2010,53,IEEE Trans. Education,2,db/journals/te/te53.html#Becker10,https://doi.org/10.1109/TE.2008.2011543 +Boris I. Kruk,Dynamic Training Elements in a Circuit Theory Course to Implement a Self-Directed Learning Process.,2009,52,IEEE Trans. Education,3,db/journals/te/te52.html#KroukZ09,https://doi.org/10.1109/TE.2008.930091 +H. C. Ratz,Extreme values from skewed distributions [mathematics education].,2000,43,IEEE Trans. Education,4,db/journals/te/te43.html#Ratz00,https://doi.org/10.1109/13.883349 +J. A. Maroto,Evaluation of the Lorentz law by using a Barlow wheel.,2000,43,IEEE Trans. Education,3,db/journals/te/te43.html#MarotoDN00,https://doi.org/10.1109/13.865207 +David J. Comer,Operation of analog MOS circuits in the weak or moderate inversion region.,2004,47,IEEE Trans. Education,4,db/journals/te/te47.html#ComerC04,https://doi.org/10.1109/TE.2004.825537 +Tarik Ozkul,Teaching fieldbus standards to computer engineering students.,2005,48,IEEE Trans. Education,1,db/journals/te/te48.html#Ozkul05,https://doi.org/10.1109/TE.2004.832877 +Jana Reisslein,Investigating the Presentation and Format of Instructional Prompts in an Electrical Circuit Analysis Computer-Based Learning Environment.,2005,48,IEEE Trans. Education,3,db/journals/te/te48.html#ReissleinASR05,https://doi.org/10.1109/TE.2005.852602 +Hsin-Yu Liu,A Course in Simulation and Demonstration of Humanoid Robot Motion.,2011,54,IEEE Trans. Education,2,db/journals/te/te54.html#LiuWW11,https://doi.org/10.1109/TE.2010.2051157 +Euan Lindsay,Effects of laboratory access modes upon learning outcomes.,2005,48,IEEE Trans. Education,4,db/journals/te/te48.html#LindsayG05,https://doi.org/10.1109/TE.2005.852591 +Raúl José Martín-Palma,Determination of the optical constants of a semiconductor thin film employing the matrix method.,2000,43,IEEE Trans. Education,1,db/journals/te/te43.html#Martin-PalmaMM00,https://doi.org/10.1109/13.825742 +Milos Cvetanovic,ADVICE - Educational System for Teaching Database Courses.,2011,54,IEEE Trans. Education,3,db/journals/te/te54.html#CvetanovicRBB11,https://doi.org/10.1109/TE.2010.2063431 +Sergio L. Toral Marín,Modeling Learner Satisfaction in an Electronic Instrumentation and Measurement Course Using Structural Equation Models.,2009,52,IEEE Trans. Education,1,db/journals/te/te52.html#MarinBMGD09,https://doi.org/10.1109/TE.2008.924215 +Kok Kiong Tan,Bridging Physics to Electronics - An Outreach Effort.,2010,53,IEEE Trans. Education,1,db/journals/te/te53.html#TanTNTYL10,https://doi.org/10.1109/TE.2009.2021850 +Tatsuya Kikuchi,Developing an educational simulation program for the PM stepping motor.,2002,45,IEEE Trans. Education,1,db/journals/te/te45.html#KikuchiKF02,https://doi.org/10.1109/13.983224 +Houcine Hassan,Innovative methodology to improve the quality of electronic engineering formation through teaching industrial computer engineering.,2004,47,IEEE Trans. Education,4,db/journals/te/te47.html#HassanMDPA04,https://doi.org/10.1109/TE.2004.825541 +Linda Price,The Role of Gender in Students' Ratings of Teaching Quality in Computer Science and Environmental Engineering.,2017,60,IEEE Trans. Education,4,db/journals/te/te60.html#PriceSBR17,https://doi.org/10.1109/TE.2017.2696904 +Melissa A. Broeckelman-Post,Faculty and Student Classroom Influences on Academic Dishonesty.,2008,51,IEEE Trans. Education,2,db/journals/te/te51.html#Broeckelman-Post08,https://doi.org/10.1109/TE.2007.910428 +Angel Gomez-Sacristan,Virtual Laboratory for QoS Study in Next-Generation Networks With Metro Ethernet Access.,2016,59,IEEE Trans. Education,3,db/journals/te/te59.html#Gomez-Sacristan16,https://doi.org/10.1109/TE.2015.2498120 +Erlind G. Royer,Assessment for electrical engineering programs-processes implemented at the United States Air Force Academy.,2000,43,IEEE Trans. Education,2,db/journals/te/te43.html#RoyerWP00,https://doi.org/10.1109/13.848068 +Peter M. Chen,An automated feedback system for computer organization projects.,2004,47,IEEE Trans. Education,2,db/journals/te/te47.html#Chen04,https://doi.org/10.1109/TE.2004.825220 +Karl A. Smith,Guest editorial: Continuing to build engineering education research capabilities.,2006,49,IEEE Trans. Education,1,db/journals/te/te49.html#Smith06,https://doi.org/10.1109/TE.2006.864984 +Aditya Anupam,Particle in a Box: An Experiential Environment for Learning Introductory Quantum Mechanics.,2018,61,IEEE Trans. Education,1,db/journals/te/te61.html#AnupamGNJ18,https://doi.org/10.1109/TE.2017.2727442 +Jesus Rooney Rivera-Guillen,An Open-Access Educational Tool for Teaching Motion Dynamics in Multi-Axis Servomotor Control.,2012,55,IEEE Trans. Education,2,db/journals/te/te55.html#Rivera-GuillenRROG12,https://doi.org/10.1109/TE.2011.2162106 +Kimberley W. Eccleston,Teaching microwave amplifier design at the undergraduate level.,2004,47,IEEE Trans. Education,1,db/journals/te/te47.html#Eccleston04,https://doi.org/10.1109/TE.2003.822635 +Michele Bristow,A Control Systems Concept Inventory Test Design and Assessment.,2012,55,IEEE Trans. Education,2,db/journals/te/te55.html#BristowEHJOWS12,https://doi.org/10.1109/TE.2011.2160946 +Viljan Mahnic,A Capstone Course on Agile Software Development Using Scrum.,2012,55,IEEE Trans. Education,1,db/journals/te/te55.html#Mahnic12,https://doi.org/10.1109/TE.2011.2142311 +Tina A. Hudson,Guest Editorial/Microelectronic Systems Education.,2008,51,IEEE Trans. Education,3,db/journals/te/te51.html#Hudson08,https://doi.org/10.1109/TE.2008.921791 +David V. Kerns,Guest editorial IEEE education society.,2003,46,IEEE Trans. Education,1,db/journals/te/te46.html#Kerns03,https://doi.org/10.1109/TE.2002.808281 +Goran Stojanovic,Important Role of the Hall Effect Measurement System in a Modified Course of Materials in Electrical Engineering.,2009,52,IEEE Trans. Education,3,db/journals/te/te52.html#StojanovicSZ09,https://doi.org/10.1109/TE.2008.928206 +Songxin Tan,Hybrid Problem-Based Learning in Digital Image Processing: A Case Study.,2018,61,IEEE Trans. Education,2,db/journals/te/te61.html#TanS18,https://doi.org/10.1109/TE.2017.2766155 +Eric Van Duzer,Methods to improve the validity and sensitivity of a self/peer assessment instrument.,2000,43,IEEE Trans. Education,2,db/journals/te/te43.html#DuzerM00,https://doi.org/10.1109/13.848067 +Ramon Costa-Castelló,Demonstration of the internal model principle by digital repetitive control of an educational laboratory plant.,2005,48,IEEE Trans. Education,1,db/journals/te/te48.html#Costa-CastelloNG05,https://doi.org/10.1109/TE.2004.832873 +J. Reiman,Guest Editorial: The Stepford Administrators.,2005,48,IEEE Trans. Education,1,db/journals/te/te48.html#Reiman05,https://doi.org/10.1109/TE.2004.843116 +Betsy M. Aller,WeBAL: a web-based assessment library to enhance teaching and learning in engineering.,2005,48,IEEE Trans. Education,4,db/journals/te/te48.html#AllerKTARP05,https://doi.org/10.1109/TE.2005.858390 +Daniel Russo 0003,An Undergraduate Nanotechnology Engineering Laboratory Course on Atomic Force Microscopy.,2011,54,IEEE Trans. Education,3,db/journals/te/te54.html#RussoFH11,https://doi.org/10.1109/TE.2010.2066566 +Suhash C. Dutta Roy,"Comments on ""Fair and Square Computation of Inverse Z-Transforms of Rational Functions"".",2015,58,IEEE Trans. Education,1,db/journals/te/te58.html#Roy15,https://doi.org/10.1109/TE.2014.2318680 +Saffet Ayasun,Induction motor tests using MATLAB/Simulink and their integration into undergraduate electric machinery courses.,2005,48,IEEE Trans. Education,1,db/journals/te/te48.html#AyasunN05,https://doi.org/10.1109/TE.2004.832885 +Pilar Molina-Gaudó,Perception and Intention in Relation to Engineering: A Gendered Study Based on a One-Day Outreach Activity.,2010,53,IEEE Trans. Education,1,db/journals/te/te53.html#Molina-GaudoBVC10,https://doi.org/10.1109/TE.2009.2023910 +Stanislaw P. Maj,State Model Diagrams as a Pedagogical Tool - An International Evaluation.,2007,50,IEEE Trans. Education,3,db/journals/te/te50.html#MajV07,https://doi.org/10.1109/TE.2007.900028 +Frede Blaabjerg,An industry-university collaboration in power electronics and drives.,2000,43,IEEE Trans. Education,1,db/journals/te/te43.html#BlaabergKPTT00,https://doi.org/10.1109/13.825740 +Stevan Stankovski,Using a Didactic Manipulator in Mechatronics and Industrial Engineering Courses.,2010,53,IEEE Trans. Education,4,db/journals/te/te53.html#StankovskiTSOS10,https://doi.org/10.1109/TE.2009.2036002 +Erkan Mese,Project-oriented adjustable speed motor drive course for undergraduate curricula.,2006,49,IEEE Trans. Education,2,db/journals/te/te49.html#Mese06,https://doi.org/10.1109/TE.2006.872405 +Moritz Harteneck,Adaptive signal processing JAVA applet.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#HarteneckS01,https://doi.org/10.1109/13.925850 +Jerry Yeargan,The integration of ABET and CSAB.,2002,45,IEEE Trans. Education,2,db/journals/te/te45.html#Yeargan02,https://doi.org/10.1109/TE.2002.1013874 +Roy Rada,Patterns in student-student commenting.,2002,45,IEEE Trans. Education,3,db/journals/te/te45.html#RadaH02,https://doi.org/10.1109/TE.2002.1024619 +Vasanth Krishnamoorthy,Using Intelligent Tutors to Teach Students How APIs Are Used for Software Engineering in Practice.,2013,56,IEEE Trans. Education,3,db/journals/te/te56.html#KrishnamoorthyAS13,https://doi.org/10.1109/TE.2013.2238543 +Francesco Colace,Ontology for E-Learning: A Bayesian Approach.,2010,53,IEEE Trans. Education,2,db/journals/te/te53.html#ColaceS10,https://doi.org/10.1109/TE.2009.2012537 +Gabriela Silva-Maceda,More Time or Better Tools? A Large-Scale Retrospective Comparison of Pedagogical Approaches to Teach Programming.,2016,59,IEEE Trans. Education,4,db/journals/te/te59.html#Silva-MacedaAC16,https://doi.org/10.1109/TE.2016.2535207 +Matthew W. Dunnigan,Enhancing state-space control teaching with a computer-based assignment.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#Dunnigan01,https://doi.org/10.1109/13.925812 +DaiYoung Kwon,Algorithmic Bricks: A Tangible Robot Programming Tool for Elementary School Students.,2012,55,IEEE Trans. Education,4,db/journals/te/te55.html#KwonKSL12,https://doi.org/10.1109/TE.2012.2190071 +Francisco Javier Maseda,A Training Tool and Methodology to Allow Concurrent Multidisciplinary Experimental Projects in Engineering Education.,2012,55,IEEE Trans. Education,3,db/journals/te/te55.html#MasedaMM12,https://doi.org/10.1109/TE.2011.2178097 +Muhittin Yilmaz,Design-Oriented Enhanced Robotics Curriculum.,2013,56,IEEE Trans. Education,1,db/journals/te/te56.html#YilmazOYN13,https://doi.org/10.1109/TE.2012.2220775 +Martin Höst,Support for Different Roles in Software Engineering Master's Thesis Projects.,2010,53,IEEE Trans. Education,2,db/journals/te/te53.html#HostFL10,https://doi.org/10.1109/TE.2009.2016106 +John A. Nestor,Experience With the CADAPPLETS Project.,2008,51,IEEE Trans. Education,3,db/journals/te/te51.html#Nestor08,https://doi.org/10.1109/TE.2008.919650 +Orit Hazzan,Can a one-day conference change female high school students' perception of electrical engineering?,2006,49,IEEE Trans. Education,3,db/journals/te/te49.html#HazzanTK06,https://doi.org/10.1109/TE.2006.879245 +James P. Becker,Project Circuits in a Basic Electric Circuits Course.,2014,57,IEEE Trans. Education,2,db/journals/te/te57.html#BeckerPR14,https://doi.org/10.1109/TE.2013.2273311 +Nergiz Ercil Cagiltay,Requirements for Remote RF Laboratory Applications: An Educators' Perspective.,2009,52,IEEE Trans. Education,1,db/journals/te/te52.html#CagiltayAOKAR09,https://doi.org/10.1109/TE.2008.919806 +Javier Jiménez-Leube,Networked implementation of an electrical measurement laboratory for first course engineering studies.,2001,44,IEEE Trans. Education,4,db/journals/te/te44.html#Jimenez-LeubeAGS01,https://doi.org/10.1109/13.965787 +Massimiliano de Magistris,A MATLAB-based virtual laboratory for teaching introductory quasi-stationary electromagnetics.,2005,48,IEEE Trans. Education,1,db/journals/te/te48.html#Magistris05,https://doi.org/10.1109/TE.2004.832872 +Jeffrey V. Nickerson,Teaching the integration of information systems technologies.,2006,49,IEEE Trans. Education,2,db/journals/te/te49.html#Nickerson06,https://doi.org/10.1109/TE.2006.873966 +Vahid Garousi,Applying Peer Reviews in Software Engineering Education: An Experiment and Lessons Learned.,2010,53,IEEE Trans. Education,2,db/journals/te/te53.html#Garousi10,https://doi.org/10.1109/TE.2008.2010994 +Dale R. Thompson,Teaching RFID Information Systems Security.,2014,57,IEEE Trans. Education,1,db/journals/te/te57.html#ThompsonDD14,https://doi.org/10.1109/TE.2013.2264289 +Brock J. LaMeres,Comparing Online to Face-to-Face Delivery of Undergraduate Digital Circuits Content.,2014,57,IEEE Trans. Education,2,db/journals/te/te57.html#LaMeresP14,https://doi.org/10.1109/TE.2013.2277031 +Andrew Lewis Fitch,An Analog Computer for Electronic Engineering Education.,2011,54,IEEE Trans. Education,4,db/journals/te/te54.html#FitchIL11,https://doi.org/10.1109/TE.2010.2090350 +Edurne Larraza-Mendiluze,Approaches and Tools Used to Teach the Computer Input/Output Subsystem: A Survey.,2015,58,IEEE Trans. Education,1,db/journals/te/te58.html#Larraza-MendiluzeG15,https://doi.org/10.1109/TE.2014.2310711 +Fernando Alonso,How Blended Learning Reduces Underachievement in Higher Education: An Experience in Teaching Computer Sciences.,2011,54,IEEE Trans. Education,3,db/journals/te/te54.html#AlonsoMMV11,https://doi.org/10.1109/TE.2010.2083665 +Jungkuk Kim,An Ill-Structured PBL-Based Microprocessor Course Without Formal Laboratory.,2012,55,IEEE Trans. Education,1,db/journals/te/te55.html#Kim12,https://doi.org/10.1109/TE.2011.2156797 +Peter S. Rha,Simulation and visualization of the Viterbi decoder using a spreadsheet.,2003,46,IEEE Trans. Education,3,db/journals/te/te46.html#Rha03,https://doi.org/10.1109/TE.2003.814589 +David A. Conner,Editorial: Guidelines for Authors.,2004,47,IEEE Trans. Education,1,db/journals/te/te47.html#ConnerC04,https://doi.org/10.1109/TE.2004.824079 +Dong Jin Lim,An undergraduate laboratory course in real-time dynamic control.,2005,48,IEEE Trans. Education,1,db/journals/te/te48.html#Lim05,https://doi.org/10.1109/TE.2004.837059 +Sami Barmada,Didactic Considerations on Magnetic Circuits Excited by Permanent Magnets.,2009,52,IEEE Trans. Education,4,db/journals/te/te52.html#BarmadaRS09,https://doi.org/10.1109/TE.2008.930793 +Gina C. Adam,Micro- and Macroscale Ideas of Current Among Upper-Division Electrical Engineering Students.,2017,60,IEEE Trans. Education,3,db/journals/te/te60.html#AdamHLK17,https://doi.org/10.1109/TE.2016.2628345 +Wei-Fan Chen,Assessing Virtual Laboratories in a Digital-Filter Design Course: An Experimental Study.,2008,51,IEEE Trans. Education,1,db/journals/te/te51.html#ChenWS08,https://doi.org/10.1109/TE.2007.893353 +Sérgio L. M. Berleze,Skin and proximity effects in nonmagnetic conductors.,2003,46,IEEE Trans. Education,3,db/journals/te/te46.html#BerlezeR03,https://doi.org/10.1109/TE.2003.814591 +David J. Lilja,Teaching computer systems performance analysis.,2001,44,IEEE Trans. Education,1,db/journals/te/te44.html#Lilja01,https://doi.org/10.1109/13.912708 +Luis E. Anido-Rifón,An update on the SimulNet educational platform. Towards standards-driven E-learning.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#Anido-RifonNRSRI01,https://doi.org/10.1109/13.925841 +Nasser Hosseinzadeh,Application of Project-Based Learning (PBL) to the Teaching of Electrical Power Systems Engineering.,2012,55,IEEE Trans. Education,4,db/journals/te/te55.html#HosseinzadehH12,https://doi.org/10.1109/TE.2012.2191588 +Kartik Prasad Basu,Experimental investigation into operation under single-phasing condition of a three-phase induction motor connected across a zigzag transformer.,2004,47,IEEE Trans. Education,3,db/journals/te/te47.html#BasuM04,https://doi.org/10.1109/TE.2004.825535 +Chyi-Shyong Lee,A Project-Based Laboratory for Learning Embedded System Design With Industry Support.,2010,53,IEEE Trans. Education,2,db/journals/te/te53.html#LeeSLCL10,https://doi.org/10.1109/TE.2008.2010990 +Nil H. Kilicay-Ergin,An Online Graduate Requirements Engineering Course.,2013,56,IEEE Trans. Education,2,db/journals/te/te56.html#Kilicay-ErginL13,https://doi.org/10.1109/TE.2012.2208461 +Mary Besterfield-Sacre,Defining the outcomes: a framework for EC-2000.,2000,43,IEEE Trans. Education,2,db/journals/te/te43.html#Besterfield-SacreSWAMMOR00,https://doi.org/10.1109/13.848060 +Kelvin Sung,Game-Themed Programming Assignment Modules: A Pathway for Gradual Integration of Gaming Context Into Existing Introductory Programming Courses.,2011,54,IEEE Trans. Education,3,db/journals/te/te54.html#SungHAPGN11,https://doi.org/10.1109/TE.2010.2064315 +Elias Todorovich,Introducing Programmable Logic to Undergraduate Engineering Students in a Digital Electronics Course.,2012,55,IEEE Trans. Education,2,db/journals/te/te55.html#TodorovichMV12,https://doi.org/10.1109/TE.2011.2169065 +Soo Eun Chae,Determinants of Differential Item Functioning in an Elementary Mathematics Test With Accommodations.,2012,55,IEEE Trans. Education,2,db/journals/te/te55.html#ChaeKH12,https://doi.org/10.1109/TE.2011.2170991 +Michel Elizabeth Holder,Thevenin's Theorem and a Black Box.,2009,52,IEEE Trans. Education,4,db/journals/te/te52.html#Holder09,https://doi.org/10.1109/TE.2008.2010985 +Richard H. Selfridge,Free-Space Optical Link as a Model Undergraduate Design Project.,2007,50,IEEE Trans. Education,3,db/journals/te/te50.html#SelfridgeSH07,https://doi.org/10.1109/TE.2007.900024 +M. Brian Blake,A student-enacted simulation approach to software engineering education.,2003,46,IEEE Trans. Education,1,db/journals/te/te46.html#Blake03,https://doi.org/10.1109/TE.2002.808255 +Kevin Scoles,A new course evaluation process.,2000,43,IEEE Trans. Education,2,db/journals/te/te43.html#ScolesBG00,https://doi.org/10.1109/13.848063 +Ezgi Taslidere,Wireless Sensor Networks - A Hands-On Modular Experiments Platform for Enhanced Pedagogical Learning.,2011,54,IEEE Trans. Education,1,db/journals/te/te54.html#TaslidereCR11,https://doi.org/10.1109/TE.2010.2041235 +Simone C. dos Santos,PBL-SEE: An Authentic Assessment Model for PBL-Based Software Engineering Education.,2017,60,IEEE Trans. Education,2,db/journals/te/te60.html#Santos17,https://doi.org/10.1109/TE.2016.2604227 +Paul Record,Teaching the Art of Fault Diagnosis in Electronics by a Virtual Learning Environment.,2005,48,IEEE Trans. Education,3,db/journals/te/te48.html#Record05,https://doi.org/10.1109/TE.2004.842907 +Giovanni Tartarini,Consolidating the Electromagnetic Education of Graduate Students Through an Integrated Course.,2013,56,IEEE Trans. Education,4,db/journals/te/te56.html#TartariniBFDM13,https://doi.org/10.1109/TE.2013.2247762 +Juan José Olarte Larrea,Student and Staff Perceptions of Key Aspects of Computer Science Engineering Capstone Projects.,2016,59,IEEE Trans. Education,1,db/journals/te/te59.html#LarreaDEI16,https://doi.org/10.1109/TE.2015.2427118 +Paul S. Hong,DSP for practicing engineers: a case study in Internet course delivery.,2004,47,IEEE Trans. Education,3,db/journals/te/te47.html#HongAWJBHSE04,https://doi.org/10.1109/TE.2004.825571 +Shaoshan Liu,RHE: A JVM Courseware.,2011,54,IEEE Trans. Education,1,db/journals/te/te54.html#LiuTDLG11,https://doi.org/10.1109/TE.2010.2047946 +Charles B. Fleddermann,Revista Iberoamericana de Tecnologías del/da Aprendizaje/Aprendizagem (IEEE-RITA) A Latin-American Learning Technologies Journal.,2007,50,IEEE Trans. Education,4,db/journals/te/te50.html#FleddermannNC07,https://doi.org/10.1109/TE.2007.910705 +David S. Ochs,Teaching Sustainable Energy and Power Electronics to Engineering Students in a Laboratory Environment Using Industry-Standard Tools.,2015,58,IEEE Trans. Education,3,db/journals/te/te58.html#OchsM15,https://doi.org/10.1109/TE.2014.2348539 +Bruce D. Wedlock,"Correction to ""PWM Control of a Magnetic Suspension System"".",2004,47,IEEE Trans. Education,4,db/journals/te/te47.html#WedlockH04,https://doi.org/10.1109/TE.2004.837344 +Francisco J. Ponce,Educational software tool based on a geographical information system (GIS) for radio wave propagation analysis.,2001,44,IEEE Trans. Education,4,db/journals/te/te44.html#PoncePJC01,https://doi.org/10.1109/13.965784 +David Poe,Component-Based Approach for Educating Students in Bioinformatics.,2009,52,IEEE Trans. Education,1,db/journals/te/te52.html#PoeVHS09,https://doi.org/10.1109/TE.2007.914943 +Maribel García Arenas,Using Student Conferences to Increase Participation in the Classroom: A Case Study.,2012,55,IEEE Trans. Education,4,db/journals/te/te55.html#ArenasCVG12,https://doi.org/10.1109/TE.2012.2188030 +Michael N. Kalochristianakis,The Greek School Network: A Paradigm of Successful Educational Services Based on the Dynamics of Open-Source Technology.,2007,50,IEEE Trans. Education,4,db/journals/te/te50.html#KalochristianakisPVX07,https://doi.org/10.1109/TE.2007.904574 +Goran Martinovic,Undergraduate teaching of real-time scheduling algorithms by developed software tool.,2003,46,IEEE Trans. Education,1,db/journals/te/te46.html#MartinovicBH03,https://doi.org/10.1109/TE.2002.808225 +Charles B. Fleddermann,Revista Iberoamericana de Tecnologías del/da Aprendizaje/Aprendizagem (IEEE-RITA) A Latin-American Learning Technologies Journal.,2010,53,IEEE Trans. Education,2,db/journals/te/te53.html#FleddermannNC10,https://doi.org/10.1109/TE.2010.2048734 +José Felipe Haffner,Computer-assisted evaluation of undergraduate courses in frequency-domain techniques for system control.,2006,49,IEEE Trans. Education,2,db/journals/te/te49.html#HaffnerPC06,https://doi.org/10.1109/TE.2006.872406 +Susan M. Lord,Trajectories of Electrical Engineering and Computer Engineering Students by Race and Gender.,2011,54,IEEE Trans. Education,4,db/journals/te/te54.html#LordLO11,https://doi.org/10.1109/TE.2010.2100398 +Wen-Jye Shyr,Integrating Laboratory Activity Into a Junior High School Classroom.,2010,53,IEEE Trans. Education,1,db/journals/te/te53.html#Shyr10,https://doi.org/10.1109/TE.2009.2022547 +Mike Joy,Source Code Plagiarism - A Student Perspective.,2011,54,IEEE Trans. Education,1,db/journals/te/te54.html#JoyCYS11,https://doi.org/10.1109/TE.2010.2046664 +Luciano Boquete,Practical laboratory project in telemedicine: Supervision of electrocardiograms by mobile telephony.,2005,48,IEEE Trans. Education,2,db/journals/te/te48.html#BoqueteMBAM05,https://doi.org/10.1109/TE.2004.842892 +Zishu He,Potential for Incorrect Solutions of Continuous-Time LTI System Problems When Using Eigenfunctions.,2008,51,IEEE Trans. Education,2,db/journals/te/te51.html#HeXL08,https://doi.org/10.1109/TE.2007.910364 +Christelle Vézien,Conceiving an easy-to-understand and automated polarimeter: application to a study of collagen.,2005,48,IEEE Trans. Education,4,db/journals/te/te48.html#VezienCFG05,https://doi.org/10.1109/TE.2005.849734 +Nicholas L. Carroll,E-Portfolios for Developing Transferable Skills in a Freshman Engineering Course.,2007,50,IEEE Trans. Education,4,db/journals/te/te50.html#CarrollMC07,https://doi.org/10.1109/TE.2007.907554 +Nissim Sabag,Methodology of Change Assimilation in Technology Education - A Case Study.,2012,55,IEEE Trans. Education,2,db/journals/te/te55.html#SabagD12,https://doi.org/10.1109/TE.2011.2159796 +Arthur C. Graesser,AutoTutor: an intelligent tutoring system with mixed-initiative dialogue.,2005,48,IEEE Trans. Education,4,db/journals/te/te48.html#GraesserCHO05,https://doi.org/10.1109/TE.2005.856149 +Alain Wegmann,Theory and practice behind the course designing enterprisewide IT systems.,2004,47,IEEE Trans. Education,4,db/journals/te/te47.html#Wegmann04,https://doi.org/10.1109/TE.2004.825059 +Eshaa M. Alkhalifa,Sequential Programming Instruction and Gender Differences.,2008,51,IEEE Trans. Education,4,db/journals/te/te51.html#Alkhalifa08,https://doi.org/10.1109/TE.2007.912465 +Scott C. Smith,Integrating Asynchronous Digital Design Into the Computer Engineering Curriculum.,2010,53,IEEE Trans. Education,3,db/journals/te/te53.html#SmithAD10,https://doi.org/10.1109/TE.2009.2021391 +Michael James Scott,Enhancing Practice and Achievement in Introductory Programming With a Robot Olympics.,2015,58,IEEE Trans. Education,4,db/journals/te/te58.html#ScottCLSTSG15,https://doi.org/10.1109/TE.2014.2382567 +Marjan Mernik,An educational tool for teaching compiler construction.,2003,46,IEEE Trans. Education,1,db/journals/te/te46.html#MernikZ03,https://doi.org/10.1109/TE.2002.808277 +Arthur James Swart,Evaluation of Final Examination Papers in Engineering: A Case Study Using Bloom's Taxonomy.,2010,53,IEEE Trans. Education,2,db/journals/te/te53.html#Swart10,https://doi.org/10.1109/TE.2009.2014221 +Amir M. Sodagar,Implantable Biomedical Microsystems: A New Graduate Course in Biomedical Circuits and Systems.,2014,57,IEEE Trans. Education,1,db/journals/te/te57.html#Sodagar14,https://doi.org/10.1109/TE.2013.2264815 +G. F. Paskusz,"Comments on ""Transient analysis of energy equation of dynamical systems"".",2000,43,IEEE Trans. Education,2,db/journals/te/te43.html#Paskusz00,https://doi.org/10.1109/13.848080 +Yi Guo,A Case Study on a Capsule Robot in the Gastrointestinal Tract to Teach Robot Programming and Navigation.,2014,57,IEEE Trans. Education,2,db/journals/te/te57.html#GuoZRM14,https://doi.org/10.1109/TE.2013.2281025 +Sergio L. Toral Marín,Authors' Reply.,2006,49,IEEE Trans. Education,4,db/journals/te/te49.html#MarinBMVM06,https://doi.org/10.1109/TE.2006.886972 +Wei-Hsin Liao,Generalized Simulation Model for a Switched-Mode Power Supply Design Course Using MATLAB/SIMULINK.,2012,55,IEEE Trans. Education,1,db/journals/te/te55.html#LiaoWL12,https://doi.org/10.1109/TE.2011.2115243 +Geoffrey L. Herman,Flip-Flops in Students' Conceptions of State.,2012,55,IEEE Trans. Education,1,db/journals/te/te55.html#HermanZL12,https://doi.org/10.1109/TE.2011.2140372 +Chris A. Mattmann,A Middleware Platform for Providing Mobile and Embedded Computing Instruction to Software Engineering Students.,2012,55,IEEE Trans. Education,3,db/journals/te/te55.html#MattmannMMEB12,https://doi.org/10.1109/TE.2012.2182998 +Thomas G. Cleaver,Student Online Assessment Behaviors.,2005,48,IEEE Trans. Education,3,db/journals/te/te48.html#CleaverE05,https://doi.org/10.1109/TE.2004.842886 +Mario Muñoz Organero,Student Behavior and Interaction Patterns With an LMS as Motivation Predictors in E-Learning Settings.,2010,53,IEEE Trans. Education,3,db/journals/te/te53.html#OrganeroMK10,https://doi.org/10.1109/TE.2009.2027433 +Jeff Frolik,A low-cost wireless platform for first-year interdisciplinary projects.,2006,49,IEEE Trans. Education,1,db/journals/te/te49.html#FrolikF06,https://doi.org/10.1109/TE.2005.858389 +Ian K. Craig,Introducing HIV/AIDS education into the electrical engineering curriculum at the University of Pretoria.,2004,47,IEEE Trans. Education,1,db/journals/te/te47.html#CraigXV04,https://doi.org/10.1109/TE.2003.817620 +Marsette Vona,Teaching Robotics Software With the Open Hardware Mobile Manipulator.,2013,56,IEEE Trans. Education,1,db/journals/te/te56.html#VonaN13,https://doi.org/10.1109/TE.2012.2218657 +Stephen Marshall Goodnick,Guest editorial a vision for ece education in 2013 and beyond.,2003,46,IEEE Trans. Education,4,db/journals/te/te46.html#Goodnick03,https://doi.org/10.1109/TE.2003.818758 +David W. Parent,Improvements to an Electrical Engineering Skill Audit Exam to Improve Student Mastery of Core EE Concepts.,2011,54,IEEE Trans. Education,2,db/journals/te/te54.html#Parent11,https://doi.org/10.1109/TE.2010.2042451 +Cornelia Connolly,Programming Anxiety Amongst Computing Students - A Key in the Retention Debate?,2009,52,IEEE Trans. Education,1,db/journals/te/te52.html#ConnollyMM09,https://doi.org/10.1109/TE.2008.917193 +Peter Idowu,In search of a perfect power engineering program.,2004,47,IEEE Trans. Education,3,db/journals/te/te47.html#Idowu04,https://doi.org/10.1109/TE.2004.825511 +José Luis Fernández Alemán,Automated Assessment in a Programming Tools Course.,2011,54,IEEE Trans. Education,4,db/journals/te/te54.html#Aleman11,https://doi.org/10.1109/TE.2010.2098442 +Bruno Andò,Stand-alone laboratory sessions in sensors and signal processing.,2004,47,IEEE Trans. Education,1,db/journals/te/te47.html#AndoGP04,https://doi.org/10.1109/TE.2003.818276 +Andrea Bonarini,Robotics and Design: An Interdisciplinary Crash Course.,2013,56,IEEE Trans. Education,1,db/journals/te/te56.html#BonariniR13,https://doi.org/10.1109/TE.2012.2222409 +Sasha Nikolic,Improving the Laboratory Learning Experience: A Process to Train and Manage Teaching Assistants.,2015,58,IEEE Trans. Education,2,db/journals/te/te58.html#NikolicVRSR15,https://doi.org/10.1109/TE.2014.2335712 +Dirk Niggemeyer,Use of a field programmable gate array for education in manufacturing test and automatic test equipment.,2001,44,IEEE Trans. Education,3,db/journals/te/te44.html#NiggemeyerSR01,https://doi.org/10.1109/13.940994 +Lena Max,Power Electronics Design Laboratory Exercise for Final-Year M.Sc. Students.,2009,52,IEEE Trans. Education,4,db/journals/te/te52.html#MaxTUK09,https://doi.org/10.1109/TE.2008.930513 +Carina Savander-Ranne,An Alternative Teaching Method for Electrical Engineering Courses.,2008,51,IEEE Trans. Education,4,db/journals/te/te51.html#Savander-RanneLK08,https://doi.org/10.1109/TE.2007.912500 +Oenardi Lawanto,The Use of Enhanced Guided Notes in an Electric Circuit Class: An Exploratory Study.,2012,55,IEEE Trans. Education,1,db/journals/te/te55.html#Lawanto12,https://doi.org/10.1109/TE.2011.2109959 +Andreas Spanias,Interactive online undergraduate laboratories using J-DSP.,2005,48,IEEE Trans. Education,4,db/journals/te/te48.html#SpaniasA05,https://doi.org/10.1109/TE.2005.854569 +Tomás de Jesús Mateo Sanguino,WiFiSiM: An Educational Tool for the Study and Design of Wireless Networks.,2013,56,IEEE Trans. Education,2,db/journals/te/te56.html#SanguinoLH13,https://doi.org/10.1109/TE.2012.2201157 +Takashi Kenjo,Developing educational software for mechatronics simulation.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#KenjoKK01,https://doi.org/10.1109/13.925857 +Justin M. Foley,Investigating Student Motivation and Performance in Electrical Engineering and Its Subdisciplines.,2016,59,IEEE Trans. Education,4,db/journals/te/te59.html#FoleyDLP16,https://doi.org/10.1109/TE.2016.2523449 +Ping-Han Cheng,5E Mobile Inquiry Learning Approach for Enhancing Learning Motivation and Scientific Inquiry Ability of University Students.,2016,59,IEEE Trans. Education,2,db/journals/te/te59.html#ChengYCK16,https://doi.org/10.1109/TE.2015.2467352 +Davide Patti,Supporting Undergraduate Computer Architecture Students Using a Visual MIPS64 CPU Simulator.,2012,55,IEEE Trans. Education,3,db/journals/te/te55.html#PattiSPFC12,https://doi.org/10.1109/TE.2011.2180530 +Mark J. W. Lee,Enhancing Project-Based Learning Through Student and Industry Engagement in a Video-Augmented 3-D Virtual Trade Fair.,2016,59,IEEE Trans. Education,4,db/journals/te/te59.html#LeeNVRLG16,https://doi.org/10.1109/TE.2016.2546230 +Miguel Hernando,Ten Years of Cybertech: The Educational Benefits of Bullfighting Robotics.,2011,54,IEEE Trans. Education,4,db/journals/te/te54.html#HernandoGNR11,https://doi.org/10.1109/TE.2010.2095014 +Jeffrey E. Froyd,"Editor-in-Chief's Introduction to ""Development of a Taxonomy of Keywords for Engineering Education Research"".",2015,58,IEEE Trans. Education,4,db/journals/te/te58.html#Froyd15,https://doi.org/10.1109/TE.2015.2479275 +Jose Luis Martin Nunez,From Higher Education to Open Education: Challenges in the Transformation of an Online Traditional Course.,2017,60,IEEE Trans. Education,2,db/journals/te/te60.html#NunezCG17,https://doi.org/10.1109/TE.2016.2607693 +Mohamed Khalifa,Web-based learning: effects on learning process and outcome.,2002,45,IEEE Trans. Education,4,db/journals/te/te45.html#KhalifaL02,https://doi.org/10.1109/TE.2002.804395 +Liwei Lin,Curriculum development in microelectromechanical systems in mechanical engineering.,2001,44,IEEE Trans. Education,1,db/journals/te/te44.html#Lin01,https://doi.org/10.1109/13.912711 +Renee M. Clark,A Case Study of Post-Workshop Use of Simple Active Learning in an Introductory Computing Sequence.,2018,61,IEEE Trans. Education,3,db/journals/te/te61.html#ClarkD18,https://doi.org/10.1109/TE.2018.2808274 +R. Reilly,Guest Editorial Web-Based Instruction: Doing Things Better and Doing Better Things.,2005,48,IEEE Trans. Education,4,db/journals/te/te48.html#Reilly05,https://doi.org/10.1109/TE.2005.859218 +Santiago Bogarra Rodriguez,Lessons Learned in the Use of WIRIS Quizzes to Upgrade Moodle to Solve Electrical Circuits.,2012,55,IEEE Trans. Education,3,db/journals/te/te55.html#RodriguezFPGS12,https://doi.org/10.1109/TE.2011.2181381 +Suzanne W. Dietrich,An Animated Introduction to Relational Databases for Many Majors.,2015,58,IEEE Trans. Education,2,db/journals/te/te58.html#DietrichGBC15,https://doi.org/10.1109/TE.2014.2326834 +Helmut Hoyer,A multiuser virtual-reality environment for a tele-operated laboratory.,2004,47,IEEE Trans. Education,1,db/journals/te/te47.html#HoyerJRB04,https://doi.org/10.1109/TE.2003.822263 +Euan Lindsay,The Impact of Audiovisual Feedback on the Learning Outcomes of a Remote and Virtual Laboratory Class.,2009,52,IEEE Trans. Education,4,db/journals/te/te52.html#LindsayG09,https://doi.org/10.1109/TE.2008.930510 +Zaher Dawy,A Wireless Communications Laboratory on Cellular Network Planning.,2010,53,IEEE Trans. Education,4,db/journals/te/te53.html#DawyHYA10,https://doi.org/10.1109/TE.2009.2039935 +Ivan Stojmenovic,Recursive algorithms in computer science courses: Fibonacci numbers and binomial coefficients.,2000,43,IEEE Trans. Education,3,db/journals/te/te43.html#Stojmenovic00,https://doi.org/10.1109/13.865200 +Jeffrey E. Froyd,Structured Abstracts for the IEEE Transactions on Education.,2018,61,IEEE Trans. Education,3,db/journals/te/te61.html#Froyd18,https://doi.org/10.1109/TE.2018.2846498 +Martín Llamas Nistal,Simulators over the network.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#NistalAI01,https://doi.org/10.1109/13.925866 +Heidi J. C. Ellis,An Assessment of a Self-Directed Learning Approach in a Graduate Web Application Design and Development Course.,2007,50,IEEE Trans. Education,1,db/journals/te/te50.html#Ellis07,https://doi.org/10.1109/TE.2006.888907 +Tanya L. Crenshaw,Using Robots and Contract Learning to Teach Cyber-Physical Systems to Undergraduates.,2013,56,IEEE Trans. Education,1,db/journals/te/te56.html#Crenshaw13,https://doi.org/10.1109/TE.2012.2217967 +Jean-Luc Beuchat,Von Neumann's 29-state cellular automaton: a hardware implementation.,2000,43,IEEE Trans. Education,3,db/journals/te/te43.html#BeuchatH00,https://doi.org/10.1109/13.865205 +Kevin W. Bowyer,Themes for improved teaching of image computation.,2000,43,IEEE Trans. Education,2,db/journals/te/te43.html#BowyerSS00,https://doi.org/10.1109/13.848076 +L. Satish,Amplitude Frequency Response Measurement: A Simple Technique.,2010,53,IEEE Trans. Education,3,db/journals/te/te53.html#SatishV10,https://doi.org/10.1109/TE.2009.2023082 +Tanja Zseby,A Network Steganography Lab on Detecting TCP/IP Covert Channels.,2016,59,IEEE Trans. Education,3,db/journals/te/te59.html#ZsebyVBFA16,https://doi.org/10.1109/TE.2016.2520400 +Nico Beute,Avoiding Plagiarism in Contexts of Development and Change.,2008,51,IEEE Trans. Education,2,db/journals/te/te51.html#BeuteAW08,https://doi.org/10.1109/TE.2007.912407 +Nikola Guid,SURFMOD: teaching tool for parametric curve and surface methods in CAGD based on comparison and analysis.,2006,49,IEEE Trans. Education,2,db/journals/te/te49.html#GuidKS06,https://doi.org/10.1109/TE.2006.873981 +A. M. Eydgahi,Complementary root locus revisited.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#EydgahiG01,https://doi.org/10.1109/13.925815 +Ulrich Klein,Contact potential differences measurement: short history and experimental setup for classroom demonstration.,2003,46,IEEE Trans. Education,3,db/journals/te/te46.html#KleinVA03,https://doi.org/10.1109/TE.2003.813896 +Hsiu-Ping Yueh,Student Evaluation of Teaching Effectiveness of a Nationwide Innovative Education Program on Image Display Technology.,2012,55,IEEE Trans. Education,3,db/journals/te/te55.html#YuehCCLW12,https://doi.org/10.1109/TE.2011.2178121 +Mancia Anguita,Software Optimization for Improving Student Motivation in a Computer Architecture Course.,2007,50,IEEE Trans. Education,4,db/journals/te/te50.html#AnguitaF07,https://doi.org/10.1109/TE.2007.906603 +Lorenzo Moreno,Use of Constructivism and Collaborative Teaching in an ILP Processors Course.,2007,50,IEEE Trans. Education,2,db/journals/te/te50.html#MorenoGCGS07,https://doi.org/10.1109/TE.2006.886461 +Tilman Wolf,Assessing Student Learning in a Virtual Laboratory Environment.,2010,53,IEEE Trans. Education,2,db/journals/te/te53.html#Wolf10,https://doi.org/10.1109/TE.2008.2012114 +Jaka Svajger,Discovering electricity by computer-based experiments.,2003,46,IEEE Trans. Education,4,db/journals/te/te46.html#SvajgerV03,https://doi.org/10.1109/TE.2003.817615 +Edith Milena Jimenez Jojoa,Tool for Experimenting With Concepts of Mobile Robotics as Applied to Children's Education.,2010,53,IEEE Trans. Education,1,db/journals/te/te53.html#JojoaBC10,https://doi.org/10.1109/TE.2009.2024689 +Jiann S. Yuan,Teaching asynchronous design in digital integrated circuits.,2004,47,IEEE Trans. Education,3,db/journals/te/te47.html#YuanK04,https://doi.org/10.1109/TE.2004.825923 +Mario Muñoz Organero,Sending Learning Pills to Mobile Devices in Class to Enhance Student Performance and Motivation in Network Services Configuration Courses.,2012,55,IEEE Trans. Education,1,db/journals/te/te55.html#OrganeroMK12,https://doi.org/10.1109/TE.2011.2131652 +Jorge Bergasa-Suso,Intelligent browser-based systems to assist Internet users.,2005,48,IEEE Trans. Education,4,db/journals/te/te48.html#Bergasa-SusoST05,https://doi.org/10.1109/TE.2005.854570 +Ayman S. Abdel-Khalik,A Senior Project-Based Multiphase Motor Drive System Development.,2016,59,IEEE Trans. Education,4,db/journals/te/te59.html#Abdel-KhalikMA16,https://doi.org/10.1109/TE.2016.2555288 +John Hu,Industry-Oriented Laboratory Development for Mixed-Signal IC Test Education.,2010,53,IEEE Trans. Education,4,db/journals/te/te53.html#HuHYSRI10,https://doi.org/10.1109/TE.2010.2040738 +Marco Casini,The automatic control telelab: a user-friendly interface for distance learning.,2003,46,IEEE Trans. Education,2,db/journals/te/te46.html#CasiniPV03,https://doi.org/10.1109/TE.2002.808224 +Carlos A. Castro,A lecture on autotransformers for power engineering students.,2003,46,IEEE Trans. Education,3,db/journals/te/te46.html#CastroM03,https://doi.org/10.1109/TE.2003.814592 +Konstantina Chrysafiadi,Dynamically Personalized E-Training in Computer Programming and the Language C.,2013,56,IEEE Trans. Education,4,db/journals/te/te56.html#ChrysafiadiV13,https://doi.org/10.1109/TE.2013.2243914 +David A. Conner,Editorial politics and engineers who teach.,2003,46,IEEE Trans. Education,3,db/journals/te/te46.html#Conner03b,https://doi.org/10.1109/TE.2003.816222 +Bryan Hart,The Wien network: an introduction using a graphical calculator.,2001,44,IEEE Trans. Education,1,db/journals/te/te44.html#Hart01,https://doi.org/10.1109/13.912715 +Behnam Momeni,Improving a Computer Networks Course Using the Partov Simulation Engine.,2012,55,IEEE Trans. Education,3,db/journals/te/te55.html#MomeniK12,https://doi.org/10.1109/TE.2012.2183597 +Jerry Schumacher,Educating leaders in information assurance.,2002,45,IEEE Trans. Education,2,db/journals/te/te45.html#SchumacherW02,https://doi.org/10.1109/TE.2002.1013887 +Sezgin Kaçar,A Web-Based Educational Interface for an Analog Communication Course Based on MATLAB Builder NE With WebFigures.,2013,56,IEEE Trans. Education,3,db/journals/te/te56.html#KacarB13,https://doi.org/10.1109/TE.2012.2236329 +Shin-Shing Shin,A Study on the Difficulties of Learning Phase Transition in Object-Oriented Analysis and Design From the Viewpoint of Semantic Distance.,2015,58,IEEE Trans. Education,2,db/journals/te/te58.html#Shin15,https://doi.org/10.1109/TE.2014.2334556 +Roberto Kawakami Harrop Galvão,A simple technique for identifying a linearized model for a didactic magnetic levitation system.,2003,46,IEEE Trans. Education,1,db/journals/te/te46.html#GalvaoYAM03,https://doi.org/10.1109/TE.2002.804403 +Jian Ma,Fuzzy set approach to the assessment of student-centered learning.,2000,43,IEEE Trans. Education,2,db/journals/te/te43.html#MaZ00,https://doi.org/10.1109/13.848079 +Richard M. Crowder,A Project-Based Biologically-Inspired Robotics Module.,2013,56,IEEE Trans. Education,1,db/journals/te/te56.html#CrowderZ13,https://doi.org/10.1109/TE.2012.2215862 +Vassilios Petridis,ACES: an interactive software platform for self-instruction and self-evaluation in automatic control systems.,2003,46,IEEE Trans. Education,1,db/journals/te/te46.html#PetridisKK03,https://doi.org/10.1109/TE.2002.808266 +Jeffrey E. Froyd,Estimates of Use of Research-Based Instructional Strategies in Core Electrical or Computer Engineering Courses.,2013,56,IEEE Trans. Education,4,db/journals/te/te56.html#FroydBCHP13,https://doi.org/10.1109/TE.2013.2244602 +Ricky T. Castles,Design and Implementation of a Mechatronics Learning Module in a Large First-Semester Engineering Course.,2010,53,IEEE Trans. Education,3,db/journals/te/te53.html#CastlesZLK10,https://doi.org/10.1109/TE.2009.2027333 +J. W. Bruce,Cooperative and progressive design experience for embedded systems.,2004,47,IEEE Trans. Education,1,db/journals/te/te47.html#BruceHR04,https://doi.org/10.1109/TE.2003.817618 +Hemanshu Roy Pota,A new derivation of the law of the junctions.,2004,47,IEEE Trans. Education,4,db/journals/te/te47.html#Pota04,https://doi.org/10.1109/TE.2004.832884 +Joshua M. Williams,Versatile hardware and software tools for educating students in power electronics.,2004,47,IEEE Trans. Education,4,db/journals/te/te47.html#WilliamsCBWKTP04,https://doi.org/10.1109/TE.2004.825552 +Richard H. McCuen,The Plagiarism Decision Process: The Role of Pressure and Rationalization.,2008,51,IEEE Trans. Education,2,db/journals/te/te51.html#McCuen08,https://doi.org/10.1109/TE.2007.904601 +Diane T. Rover,Reflections on Teaching and Learning in an Advanced Undergraduate Course in Embedded Systems.,2008,51,IEEE Trans. Education,3,db/journals/te/te51.html#RoverMZSH08,https://doi.org/10.1109/TE.2008.921792 +Antonio J. López-Martín,Attracting Prospective Engineering Students in the Emerging European Space for Higher Education.,2010,53,IEEE Trans. Education,1,db/journals/te/te53.html#Lopez-Martin10,https://doi.org/10.1109/TE.2009.2023083 +Gao-Wei Chang,Teaching photonics laboratory using remote-control web technologies.,2005,48,IEEE Trans. Education,4,db/journals/te/te48.html#ChangYCP05,https://doi.org/10.1109/TE.2005.850716 +Angel Abusleme,A low-cost altitude control system for the Kadet Senior radio-controlled airplane.,2003,46,IEEE Trans. Education,1,db/journals/te/te46.html#AbuslemeCG03,https://doi.org/10.1109/TE.2002.804413 +David A. Conner,The Transactions' Editorship.,2006,49,IEEE Trans. Education,1,db/journals/te/te49.html#Conner06,https://doi.org/10.1109/TE.2006.865174 +Gwo-Jen Hwang,A test-sheet-generating algorithm for multiple assessment requirements.,2003,46,IEEE Trans. Education,3,db/journals/te/te46.html#Hwang03,https://doi.org/10.1109/TE.2003.813516 +Ozcan Ozturk 0001,Multicore Education Through Simulation.,2011,54,IEEE Trans. Education,2,db/journals/te/te54.html#Ozturk11,https://doi.org/10.1109/TE.2010.2102027 +Adam W. Hoover,Computer vision in undergraduate education: modern embedded computing.,2003,46,IEEE Trans. Education,2,db/journals/te/te46.html#Hoover03,https://doi.org/10.1109/TE.2002.808264 +Jason A. Day,Evaluating a Web Lecture Intervention in a Human-Computer Interaction Course.,2006,49,IEEE Trans. Education,4,db/journals/te/te49.html#DayF06,https://doi.org/10.1109/TE.2006.879792 +John W. Pierre,A One-Credit Hands-On Introductory Course in Electrical and Computer Engineering Using a Variety of Topic Modules.,2009,52,IEEE Trans. Education,2,db/journals/te/te52.html#PierreTAWUKWBCH09,https://doi.org/10.1109/TE.2008.928185 +Cynthia J. Finelli,Development of a Taxonomy of Keywords for Engineering Education Research.,2015,58,IEEE Trans. Education,4,db/journals/te/te58.html#FinelliBR15,https://doi.org/10.1002/jee.20101 +Edmundo Tovar Caro,Guest Editorial: Open Educational Resources in Engineering Education: Various Perspectives Opening the Education of Engineers.,2014,57,IEEE Trans. Education,4,db/journals/te/te57.html#CaroP14,https://doi.org/10.1109/TE.2014.2359257 +Isidro Calvo,A Multidisciplinary PBL Approach for Teaching Industrial Informatics and Robotics in Engineering.,2018,61,IEEE Trans. Education,1,db/journals/te/te61.html#CalvoCQB18,https://doi.org/10.1109/TE.2017.2721907 +Malay Trivedi,An improved approach to application-specific power electronics education-switch characterization and modeling.,2002,45,IEEE Trans. Education,1,db/journals/te/te45.html#TrivediMVMAAS02,https://doi.org/10.1109/13.983222 +M. Brian Blake,Integrating large-scale group projects and software engineering approaches for early computer science courses.,2005,48,IEEE Trans. Education,1,db/journals/te/te48.html#Blake05,https://doi.org/10.1109/TE.2004.832875 +Christopher W. Trueman,Animating transmission-line transients with BOUNCE.,2003,46,IEEE Trans. Education,1,db/journals/te/te46.html#Trueman03,https://doi.org/10.1109/TE.2002.808256 +Arturo Gil,Implementation and Assessment of a Virtual Laboratory of Parallel Robots Developed for Engineering Students.,2014,57,IEEE Trans. Education,2,db/journals/te/te57.html#GilPRM14,https://doi.org/10.1109/TE.2013.2276951 +Randal T. Abler,Georgia tech information security center hands-on network security laboratory.,2006,49,IEEE Trans. Education,1,db/journals/te/te49.html#AblerCGO06,https://doi.org/10.1109/TE.2005.858403 +George Fikioris,Analytical studies supplementing the Smith chart.,2004,47,IEEE Trans. Education,2,db/journals/te/te47.html#Fikioris04,https://doi.org/10.1109/TE.2004.825512 +Pedro J. Navarro,Industrial-Like Vehicle Platforms for Postgraduate Laboratory Courses on Robotics.,2013,56,IEEE Trans. Education,1,db/journals/te/te56.html#NavarroFS13,https://doi.org/10.1109/TE.2012.2213090 +Johanna Leppävirta,Complex Problem Exercises in Developing Engineering Students' Conceptual and Procedural Knowledge of Electromagnetics.,2011,54,IEEE Trans. Education,1,db/journals/te/te54.html#LeppavirtaKS11,https://doi.org/10.1109/TE.2010.2043531 +Isabelle Huynen,Short-term project on microwave passive planar circuits: an educational approach.,2000,43,IEEE Trans. Education,2,db/journals/te/te43.html#HuynenPVV00,https://doi.org/10.1109/13.848078 +Ramiro Jordan,Technology education challenges and solutions in Latin America.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#JordanPASRGF01,https://doi.org/10.1109/13.925854 +Jesse D. Adams,Effective technology transfer to the undergraduate and graduate classroom as a result of a novel Ph.D. Program.,2004,47,IEEE Trans. Education,2,db/journals/te/te47.html#AdamsRL04a,https://doi.org/10.1109/TE.2004.825216 +Lorenzo Salas-Morera,An Assessment of the ECTS in Software Engineering: A Teaching Experience.,2009,52,IEEE Trans. Education,1,db/journals/te/te52.html#Salas-MoreraBSJ09,https://doi.org/10.1109/TE.2008.921801 +Arturo Sanchez,Improving the Teaching of Discrete-Event Control Systems Using a LEGO Manufacturing Prototype.,2012,55,IEEE Trans. Education,3,db/journals/te/te55.html#SanchezB12,https://doi.org/10.1109/TE.2011.2173688 +Qingshan Xu,A Multiple-Sessions Interactive Computer-Based Learning Tool for Ability Cultivation in Circuit Simulation.,2011,54,IEEE Trans. Education,1,db/journals/te/te54.html#XuLTI11,https://doi.org/10.1109/TE.2010.2043435 +Ying-Hong Liao,An educational genetic algorithms learning tool.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#LiaoS01,https://doi.org/10.1109/13.925863 +David A. Conner,"Errata to ""August 2001 editorial"".",2001,44,IEEE Trans. Education,4,db/journals/te/te44.html#ConnerC01,https://doi.org/10.1109/TE.2001.965792 +Kathryn E. Merrick,An Empirical Evaluation of Puzzle-Based Learning as an Interest Approach for Teaching Introductory Computer Science.,2010,53,IEEE Trans. Education,4,db/journals/te/te53.html#Merrick10,https://doi.org/10.1109/TE.2009.2039217 +Deepika Sangam,Conceptual Gaps in Circuits Textbooks: A Comparative Study.,2015,58,IEEE Trans. Education,3,db/journals/te/te58.html#SangamJ15,https://doi.org/10.1109/TE.2014.2358575 +Dale W. Callahan,Development of an information engineering and management program.,2003,46,IEEE Trans. Education,1,db/journals/te/te46.html#CallahanP03,https://doi.org/10.1109/TE.2002.808261 +Minhong Wang,A Web-Based Learning System for Software Test Professionals.,2011,54,IEEE Trans. Education,2,db/journals/te/te54.html#WangJSRL11,https://doi.org/10.1109/TE.2010.2051546 +Albert Guissard,On the surface field integral equations.,2003,46,IEEE Trans. Education,4,db/journals/te/te46.html#Guissard03,https://doi.org/10.1109/TE.2003.815234 +Yung-Pin Cheng,Awk-Linux: A Lightweight Operating Systems Courseware.,2008,51,IEEE Trans. Education,4,db/journals/te/te51.html#ChengL08,https://doi.org/10.1109/TE.2007.912571 +Henrique Mohallem Paiva,Simulation of dynamic systems with output saturation.,2004,47,IEEE Trans. Education,3,db/journals/te/te47.html#PaivaG04,https://doi.org/10.1109/TE.2004.825533 +Nektarios Kostaras,Evaluating Usability in a Distance Digital Systems Laboratory Class.,2011,54,IEEE Trans. Education,2,db/journals/te/te54.html#KostarasXS11,https://doi.org/10.1109/TE.2010.2054096 +Okyay Kaynak,Guest Editorial Plagiarism.,2008,51,IEEE Trans. Education,2,db/journals/te/te51.html#KaynakBK08,https://doi.org/10.1109/TE.2008.921789 +Carlos A. Canesin,Simulation Tools for Power Electronics Courses Based on Java Technologies.,2010,53,IEEE Trans. Education,4,db/journals/te/te53.html#CanesinGS10,https://doi.org/10.1109/TE.2009.2036157 +Tatsuya Kikuchi,Remote laboratory for a brushless DC motor.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#KikuchiKF01,https://doi.org/10.1109/13.925859 +Kok Kiong Tan,Internet-based monitoring of distributed control systems-An undergraduate experiment.,2002,45,IEEE Trans. Education,2,db/journals/te/te45.html#TanLS02,https://doi.org/10.1109/TE.2002.1013876 +Ronald H. Rockland,Reducing the information overload: a method on helping students research engineering topics using the Internet.,2000,43,IEEE Trans. Education,4,db/journals/te/te43.html#Rockland00,https://doi.org/10.1109/13.883352 +Amy W. Apon,Cluster computing in the classroom and integration with computing curricula 2001.,2004,47,IEEE Trans. Education,2,db/journals/te/te47.html#AponMBJ04,https://doi.org/10.1109/TE.2004.824842 +Im Young Jung,Enhanced Security for Online Exams Using Group Cryptography.,2009,52,IEEE Trans. Education,3,db/journals/te/te52.html#JungY09,https://doi.org/10.1109/TE.2008.928909 +Hsiung-Cheng Lin,An Internet-based graphical programming tool for teaching power system harmonic measurement.,2006,49,IEEE Trans. Education,3,db/journals/te/te49.html#Lin06,https://doi.org/10.1109/TE.2006.879239 +Keith F. Conner,The future of wireless communications.,2002,45,IEEE Trans. Education,1,db/journals/te/te45.html#Conner02a,https://doi.org/10.1109/TE.2002.983213 +Saeid Nooshabadi,Modernization of teaching in embedded systems design - an international collaborative project.,2006,49,IEEE Trans. Education,2,db/journals/te/te49.html#NooshabadiG06,https://doi.org/10.1109/TE.2006.872402 +Subrata Karmakar,Virtual-Instrument-Based Online Monitoring System for Hands-On Laboratory Experiment of Partial Discharges.,2017,60,IEEE Trans. Education,1,db/journals/te/te60.html#Karmakar17,https://doi.org/10.1109/TE.2016.2586754 +Mustafa Murat Inceoglu,Establishing a K-12 Circuit Design Program.,2010,53,IEEE Trans. Education,1,db/journals/te/te53.html#Inceoglu10,https://doi.org/10.1109/TE.2009.2027997 +Ali Emadi,Interprofessional projects in advanced automotive power systems: an integrated education and research multidisciplinary approach.,2004,47,IEEE Trans. Education,3,db/journals/te/te47.html#EmadiJ04,https://doi.org/10.1109/TE.2004.825529 +Piotr Debiec,Teaching Discrete and Programmable Logic Design Techniques Using a Single Laboratory Board.,2011,54,IEEE Trans. Education,4,db/journals/te/te54.html#DebiecB11,https://doi.org/10.1109/TE.2011.2106131 +Sumit Ghosh,Integrating design into undergraduate honors theses in a computer engineering program: an experiment.,2000,43,IEEE Trans. Education,2,db/journals/te/te43.html#Ghosh00,https://doi.org/10.1109/13.848074 +Ana Isabel González-Tablas Ferreres,EVAWEB: A Web-Based Assessment System to Learn X.509/PKIX-Based Digital Signatures.,2007,50,IEEE Trans. Education,2,db/journals/te/te50.html#FerreresWAG07,https://doi.org/10.1109/TE.2007.893171 +Suzana Uran,Virtual Laboratory for Creative Control Design Experiments.,2008,51,IEEE Trans. Education,1,db/journals/te/te51.html#UranJ08,https://doi.org/10.1109/TE.2007.906599 +Ahmed Toumi,An aid for teaching doubly fed synchronous machines based on the circle diagram.,2002,45,IEEE Trans. Education,2,db/journals/te/te45.html#Toumi02,https://doi.org/10.1109/TE.2002.1013883 +Manuel Pasamontes,Learning Switching Control: A Tank Level-Control Exercise.,2012,55,IEEE Trans. Education,2,db/journals/te/te55.html#PasamontesAGB12,https://doi.org/10.1109/TE.2011.2162239 +David Davenport,Experience using a project-based approach in an introductory programming course.,2000,43,IEEE Trans. Education,4,db/journals/te/te43.html#Davenport00,https://doi.org/10.1109/13.883356 +Denis Gillet,Collaborative web-based experimentation in flexible engineering education.,2005,48,IEEE Trans. Education,4,db/journals/te/te48.html#GilletNR05,https://doi.org/10.1109/TE.2005.852592 +Seung Han Kim,Introduction for Freshmen to Embedded Systems Using LEGO Mindstorms.,2009,52,IEEE Trans. Education,1,db/journals/te/te52.html#KimJ09,https://doi.org/10.1109/TE.2008.919809 +Nurul I. Sarkar,Teaching computer networking fundamentals using practical laboratory exercises.,2006,49,IEEE Trans. Education,2,db/journals/te/te49.html#Sarkar06,https://doi.org/10.1109/TE.2006.873967 +Prateek Shekhar,After the Workshop: A Case Study of Post-Workshop Implementation of Active Learning in an Electrical Engineering Course.,2017,60,IEEE Trans. Education,1,db/journals/te/te60.html#ShekharB17,https://doi.org/10.1109/TE.2016.2562611 +Branislav M. Notaros,Geometrical Approach to Vector Analysis in Electromagnetics Education.,2013,56,IEEE Trans. Education,3,db/journals/te/te56.html#Notaros13,https://doi.org/10.1109/TE.2012.2227745 +Wei Zhan,Experiential Learning of Digital Communication Using LabVIEW.,2014,57,IEEE Trans. Education,1,db/journals/te/te57.html#ZhanPM14,https://doi.org/10.1109/TE.2013.2264059 +Abdulhadi Shoufan,Toward Modeling the Intrinsic Complexity of Test Problems.,2017,60,IEEE Trans. Education,2,db/journals/te/te60.html#Shoufan17,https://doi.org/10.1109/TE.2016.2611666 +Subhan Khan,Teaching Tool for a Control Systems Laboratory Using a Quadrotor as a Plant in MATLAB.,2017,60,IEEE Trans. Education,4,db/journals/te/te60.html#KhanJHA17,https://doi.org/10.1109/TE.2017.2653762 +Habib Hamam,Web-Based Engine for Program Curriculum Designers.,2009,52,IEEE Trans. Education,4,db/journals/te/te52.html#HamamL09,https://doi.org/10.1109/TE.2008.2010988 +Catalin Buiu,Design and Evaluation of an Integrated Online Motion Control Training Package.,2009,52,IEEE Trans. Education,3,db/journals/te/te52.html#Buiu09,https://doi.org/10.1109/TE.2008.930090 +Pearl Brereton,A Study of Computing Undergraduates Undertaking a Systematic Literature Review.,2011,54,IEEE Trans. Education,4,db/journals/te/te54.html#Brereton11,https://doi.org/10.1109/TE.2010.2090662 +Ralph K. Cavin III,A semiconductor industry perspective on future directions in ECE education.,2003,46,IEEE Trans. Education,4,db/journals/te/te46.html#CavinJW03,https://doi.org/10.1109/TE.2003.818756 +Nurul I. Sarkar,Teaching wireless communication and networking fundamentals using Wi-Fi projects.,2006,49,IEEE Trans. Education,1,db/journals/te/te49.html#SarkarC06,https://doi.org/10.1109/TE.2005.858387 +Miroslav N. Velev,Integrating formal verification into an advanced computer architecture course.,2005,48,IEEE Trans. Education,2,db/journals/te/te48.html#Velev05,https://doi.org/10.1109/TE.2004.832880 +José O. Cadenas,Virtualization for Cost-Effective Teaching of Assembly Language Programming.,2015,58,IEEE Trans. Education,4,db/journals/te/te58.html#CadenasSHGL15,https://doi.org/10.1109/TE.2015.2405895 +Kuo-En Chang,Web_Soc: a Socratic-dialectic-based collaborative tutoring system on the World Wide Web.,2003,46,IEEE Trans. Education,1,db/journals/te/te46.html#ChangSWD03,https://doi.org/10.1109/TE.2002.808276 +Dipti Srinivasan,Efficient Fuzzy Evolutionary Algorithm-Based Approach for Solving the Student Project Allocation Problem.,2008,51,IEEE Trans. Education,4,db/journals/te/te51.html#SrinivasanR08,https://doi.org/10.1109/TE.2007.912537 +Jonah Z. Lavi,Engineering of computer-based systems-a proposed curriculum for a degree program at bachelor level.,2004,47,IEEE Trans. Education,2,db/journals/te/te47.html#LaviDMG04,https://doi.org/10.1109/TE.2004.825225 +Costas S. Tzafestas,Virtual and remote robotic laboratory: comparative experimental evaluation.,2006,49,IEEE Trans. Education,3,db/journals/te/te49.html#TzafestasPA06,https://doi.org/10.1109/TE.2006.879255 +Behrooz Vahidi,Using PSpice in teaching impulse Voltage testing of power transformers to senior undergraduate students.,2005,48,IEEE Trans. Education,2,db/journals/te/te48.html#VahidiB05,https://doi.org/10.1109/TE.2004.842902 +Mark J. W. Lee,Guest Editorial Special Issue on Maker Learning in Computer Science and Engineering Education.,2017,60,IEEE Trans. Education,1,db/journals/te/te60.html#Lee17,https://doi.org/10.1109/TE.2016.2637738 +Pilar Martínez Jiménez,OPEE: An Outreach Project for Engineering Education.,2010,53,IEEE Trans. Education,1,db/journals/te/te53.html#JimenezSPCM10,https://doi.org/10.1109/TE.2009.2024931 +James H. Andrews,Experiences with a software maintenance project course.,2000,43,IEEE Trans. Education,4,db/journals/te/te43.html#AndrewsL00,https://doi.org/10.1109/13.883346 +Keng Siau,Guest Editorial Mobile Technology in Education.,2006,49,IEEE Trans. Education,2,db/journals/te/te49.html#SiauN06,https://doi.org/10.1109/TE.2006.875792 +Sergio Bermejo,Cooperative electronic learning in virtual laboratories through forums.,2005,48,IEEE Trans. Education,1,db/journals/te/te48.html#Bermejo05,https://doi.org/10.1109/TE.2004.837045 +Tyson S. Hall,System-on-a-programmable-chip development platforms in the classroom.,2004,47,IEEE Trans. Education,4,db/journals/te/te47.html#HallH04,https://doi.org/10.1109/TE.2004.825926 +Woochun Jun,An evaluation model for Web-based instruction.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#JunG01,https://doi.org/10.1109/13.925856 +Chia-Jeng Tseng,Digital System Design Using Microarchitectural Modeling.,2008,51,IEEE Trans. Education,1,db/journals/te/te51.html#Tseng08,https://doi.org/10.1109/TE.2007.906604 +Yung-Pin Cheng,A Constrained and Guided Approach for Managing Software Engineering Course Projects.,2010,53,IEEE Trans. Education,3,db/journals/te/te53.html#ChengL10,https://doi.org/10.1109/TE.2009.2026738 +Peter O'Shea,The Biggest Loser Competition.,2008,51,IEEE Trans. Education,1,db/journals/te/te51.html#OSheaB08,https://doi.org/10.1109/TE.2007.906614 +Roger Gassert,Physical Student-Robot Interaction With the ETHZ Haptic Paddle.,2013,56,IEEE Trans. Education,1,db/journals/te/te56.html#GassertMLPTVZL13,https://doi.org/10.1109/TE.2012.2219310 +Francesco Corsi,On impedance evaluation in feedback circuits.,2002,45,IEEE Trans. Education,4,db/journals/te/te45.html#CorsiMM02,https://doi.org/10.1109/TE.2002.804400 +Jae-Kwoun Shim,The Effects of a Robot Game Environment on Computer Programming Education for Elementary School Students.,2017,60,IEEE Trans. Education,2,db/journals/te/te60.html#ShimKL17,https://doi.org/10.1109/TE.2016.2622227 +S. C. Dutta Roy,A simple derivation of the spectral transformations for IIR filters.,2005,48,IEEE Trans. Education,2,db/journals/te/te48.html#Roy05,https://doi.org/10.1109/TE.2004.842913 +Andreas Gampe,An Assessment of Remote Laboratory Experiments in Radio Communication.,2014,57,IEEE Trans. Education,1,db/journals/te/te57.html#GampeMPA14,https://doi.org/10.1109/TE.2013.2262685 +Clayton R. Paul,Areas of Electrical and Computer Engineering Education That Require Increased Emphasis.,2009,52,IEEE Trans. Education,1,db/journals/te/te52.html#Paul09,https://doi.org/10.1109/TE.2008.921438 +Diego G. Lamar,Experiences in the Application of Project-Based Learning in a Switching-Mode Power Supplies Course.,2012,55,IEEE Trans. Education,1,db/journals/te/te55.html#LamarMARRVHS12,https://doi.org/10.1109/TE.2011.2120612 +M. Watheq El-Kharashi,Understanding and implementing computer network protocols through a lab project.,2002,45,IEEE Trans. Education,3,db/journals/te/te45.html#El-KharashiDMS02,https://doi.org/10.1109/TE.2002.1024621 +M. B. Patil,A new public-domain program for mixed-signal simulation.,2002,45,IEEE Trans. Education,2,db/journals/te/te45.html#Patil02,https://doi.org/10.1109/TE.2002.1013886 +Janet Liebenberg,The Relevance of Software Development Education for Students.,2015,58,IEEE Trans. Education,4,db/journals/te/te58.html#LiebenbergHM15,https://doi.org/10.1109/TE.2014.2381599 +Milo D. Koretsky,Enhancement of Student Learning in Experimental Design Using a Virtual Laboratory.,2008,51,IEEE Trans. Education,1,db/journals/te/te51.html#KoretskyABK08,https://doi.org/10.1109/TE.2007.906894 +Rui Hong Chu,Project-Based Lab Teaching for Power Electronics and Drives.,2008,51,IEEE Trans. Education,1,db/journals/te/te51.html#ChuLS08,https://doi.org/10.1109/TE.2007.906607 +María A. Trenas,Use of a New Moodle Module for Improving the Teaching of a Basic Course on Computer Architecture.,2011,54,IEEE Trans. Education,2,db/journals/te/te54.html#TrenasRGRC11,https://doi.org/10.1109/TE.2010.2048570 +Behrooz Parhami,Motivating Computer Engineering Freshmen Through Mathematical and Logical Puzzles.,2009,52,IEEE Trans. Education,3,db/journals/te/te52.html#Parhami09,https://doi.org/10.1109/TE.2008.930087 +Eduardo Montero,Student Engagement in a Structured Problem-Based Approach to Learning: A First-Year Electronic Engineering Study Module on Heat Transfer.,2009,52,IEEE Trans. Education,2,db/journals/te/te52.html#MonteroG09,https://doi.org/10.1109/TE.2008.924219 +Han-Pang Huang,Java-based distance learning environment for electronic instruments.,2003,46,IEEE Trans. Education,1,db/journals/te/te46.html#HuangL03,https://doi.org/10.1109/TE.2002.808271 +Andreas Zendler,Marrying Content and Process in Computer Science Education.,2011,54,IEEE Trans. Education,3,db/journals/te/te54.html#ZendlerSK11,https://doi.org/10.1109/TE.2010.2062184 +María Dolores Redel-Macías,Noise and Vibration Risk Prevention Virtual Web for Ubiquitous Training.,2015,58,IEEE Trans. Education,4,db/journals/te/te58.html#Redel-MaciasCVP15,https://doi.org/10.1109/TE.2015.2415769 +Seul Jung,Experiences in Developing an Experimental Robotics Course Program for Undergraduate Education.,2013,56,IEEE Trans. Education,1,db/journals/te/te56.html#Jung13,https://doi.org/10.1109/TE.2012.2213601 +Charles H. Hacker,Interactive teaching of elementary digital logic design with WinLogiLab.,2004,47,IEEE Trans. Education,2,db/journals/te/te47.html#HackerS04,https://doi.org/10.1109/TE.2004.824843 +Charles B. Fleddermann,Guest Editorial Accepting the Baton.,2007,50,IEEE Trans. Education,4,db/journals/te/te50.html#Fleddermann07,https://doi.org/10.1109/TE.2007.910216 +Alejandra J. Magana,Characterizing Engineering Learners' Preferences for Active and Passive Learning Methods.,2018,61,IEEE Trans. Education,1,db/journals/te/te61.html#MaganaVB18,https://doi.org/10.1109/TE.2017.2740203 +K. L. Chan,Statistical analysis of final year project marks in the computer engineering undergraduate program.,2001,44,IEEE Trans. Education,3,db/journals/te/te44.html#Chan01,https://doi.org/10.1109/13.940997 +Wei-Tek Tsai,Collaborative Learning Using Wiki Web Sites for Computer Science Undergraduate Education: A Case Study.,2011,54,IEEE Trans. Education,1,db/journals/te/te54.html#TsaiLEC11,https://doi.org/10.1109/TE.2010.2046491 +Mario Muñoz Organero,Analyzing Convergence in e-Learning Resource Filtering Based on ACO Techniques: A Case Study With Telecommunication Engineering Students.,2010,53,IEEE Trans. Education,4,db/journals/te/te53.html#OrganeroRMK10,https://doi.org/10.1109/TE.2009.2032168 +Iain Skinner,Embedding Academic Literacy Support Within the Electrical Engineering Curriculum: A Case Study.,2009,52,IEEE Trans. Education,4,db/journals/te/te52.html#SkinnerM09,https://doi.org/10.1109/TE.2008.930795 +Woon-Seng Gan,Teaching DSP software development: from design to fixed-point implementations.,2006,49,IEEE Trans. Education,1,db/journals/te/te49.html#GanK06,https://doi.org/10.1109/TE.2005.863425 +Karol Aniserowicz,Comparison of different numerical methods for solving boundary-value problems in electromagnetics.,2004,47,IEEE Trans. Education,2,db/journals/te/te47.html#Aniserowicz04,https://doi.org/10.1109/TE.2004.825222 +Eric Zhi-Feng Liu,Web-based peer review: the learner as both adapter and reviewer.,2001,44,IEEE Trans. Education,3,db/journals/te/te44.html#LiuLCY01,https://doi.org/10.1109/13.940995 +Charlie Daly,An automated learning system for Java programming.,2004,47,IEEE Trans. Education,1,db/journals/te/te47.html#DalyH04,https://doi.org/10.1109/TE.2003.816064 +Elena Gaudioso,Enhancing E-Learning Through Teacher Support: Two Experiences.,2009,52,IEEE Trans. Education,1,db/journals/te/te52.html#GaudiosoHM09,https://doi.org/10.1109/TE.2008.919810 +Haibin Duan,Interactive Learning Environment for Bio-Inspired Optimization Algorithms for UAV Path Planning.,2015,58,IEEE Trans. Education,4,db/journals/te/te58.html#DuanLSZS15,https://doi.org/10.1109/TE.2015.2402196 +Bee Yen Toh,Understanding and measuring circular polarization.,2003,46,IEEE Trans. Education,3,db/journals/te/te46.html#TohCF03,https://doi.org/10.1109/TE.2003.813519 +Paolo Rocchi,Guest Editorial Informatics and Electronics Education: Some Remarks.,2016,59,IEEE Trans. Education,3,db/journals/te/te59.html#Rocchi16,https://doi.org/10.1109/TE.2016.2528891 +Baquer Mazhari,An improved interpretation of depletion approximation in p-n-junctions.,2005,48,IEEE Trans. Education,1,db/journals/te/te48.html#MazhariM05,https://doi.org/10.1109/TE.2004.832876 +Les Dawes,"Joint Editors' Introduction to the Special Report ""Development of a Taxonomy of Keywords for Engineering Education Research"".",2015,58,IEEE Trans. Education,4,db/journals/te/te58.html#DawesFGIL15,https://doi.org/10.1002/jee.20099 +Chunting Mi,Continuing education in power electronics.,2005,48,IEEE Trans. Education,1,db/journals/te/te48.html#MiSC05,https://doi.org/10.1109/TE.2004.837038 +Deniz Gurkan,Remote Laboratories for Optical Circuits.,2008,51,IEEE Trans. Education,1,db/journals/te/te51.html#GurkanMB08,https://doi.org/10.1109/TE.2007.900018 +Dorota M. Huizinga,Four implementations of disconnected operation: a framework for a capstone project in operating systems.,2002,45,IEEE Trans. Education,1,db/journals/te/te45.html#Huizinga02,https://doi.org/10.1109/13.983226 +Kenneth V. Cartwright,Further results related to power supply design and analysis in the undergraduate curriculum.,2001,44,IEEE Trans. Education,3,db/journals/te/te44.html#Cartwright01,https://doi.org/10.1109/13.940998 +Shui-Chun Lin,Development of a Self-Balancing Human Transportation Vehicle for the Teaching of Feedback Control.,2009,52,IEEE Trans. Education,1,db/journals/te/te52.html#LinT09,https://doi.org/10.1109/TE.2008.921799 +Alberto Leva,A hands-on experimental laboratory for undergraduate courses in automatic control.,2003,46,IEEE Trans. Education,2,db/journals/te/te46.html#Leva03,https://doi.org/10.1109/TE.2002.808223 +William L. Brown,Reconciling Spice results and hand calculations: unexpected problems.,2000,43,IEEE Trans. Education,1,db/journals/te/te43.html#BrownS00,https://doi.org/10.1109/13.825739 +Tina A. Hudson,Using Behavioral Analysis to Improve Student Confidence With Analog Circuits.,2008,51,IEEE Trans. Education,3,db/journals/te/te51.html#HudsonGS08,https://doi.org/10.1109/TE.2008.919688 +Seyed Ali Shirsavar,Teaching practical design of switch-mode power supplies.,2004,47,IEEE Trans. Education,4,db/journals/te/te47.html#Shirsavar04,https://doi.org/10.1109/TE.2004.825066 +Mani Vaidyanathan,Electronics From the Bottom Up: Strategies for Teaching Nanoelectronics at the Undergraduate Level.,2011,54,IEEE Trans. Education,1,db/journals/te/te54.html#Vaidyanathan11,https://doi.org/10.1109/TE.2010.2043845 +Michael James Scott,On the Domain-Specificity of Mindsets: The Relationship Between Aptitude Beliefs and Programming Practice.,2014,57,IEEE Trans. Education,3,db/journals/te/te57.html#ScottG14,https://doi.org/10.1109/TE.2013.2288700 +Huaping Liu,Learning and Understanding System Stability Using Illustrative Dynamic Texture Examples.,2014,57,IEEE Trans. Education,1,db/journals/te/te57.html#LiuXZS14,https://doi.org/10.1109/TE.2013.2262684 +J. P. Van't Hof,An undergraduate laboratory in magnetic recording fundamentals.,2001,44,IEEE Trans. Education,3,db/journals/te/te44.html#HofBWZ01,https://doi.org/10.1109/13.940992 +S. K. Ramesh,"Erratum to ""2013 IEEE Educational Activities Board Awards"".",2014,57,IEEE Trans. Education,3,db/journals/te/te57.html#Ramesh14,https://doi.org/10.1109/TE.2014.2324691 +Marjan Rupnik,The use of equivalent electronic circuits in simulating physiological processes.,2001,44,IEEE Trans. Education,4,db/journals/te/te44.html#RupnikRK01,https://doi.org/10.1109/13.965788 +Zvi Shiller,A Bottom-Up Approach to Teaching Robotics and Mechatronics to Mechanical Engineers.,2013,56,IEEE Trans. Education,1,db/journals/te/te56.html#Shiller13,https://doi.org/10.1109/TE.2012.2226176 +Ronald J. Pieper,Comprehensive Analytical Approach to Predicting Freeze-Out and Exhaustion for Uniform Single-Impurity Semiconductors in Equilibrium.,2005,48,IEEE Trans. Education,3,db/journals/te/te48.html#PieperM05,https://doi.org/10.1109/TE.2005.849732 +Russell L. Pimmel,A practical approach for converting group assignments into team projects.,2003,46,IEEE Trans. Education,2,db/journals/te/te46.html#Pimmel03,https://doi.org/10.1109/TE.2003.808913 +Pablo de Cristóforis,A Behavior-Based Approach for Educational Robotics Activities.,2013,56,IEEE Trans. Education,1,db/journals/te/te56.html#CristoforisPNFPP13,https://doi.org/10.1109/TE.2012.2220359 +Rob Faux,Impact of preprogramming course curriculum on learning in the first programming course.,2006,49,IEEE Trans. Education,1,db/journals/te/te49.html#Faux06,https://doi.org/10.1109/TE.2005.852593 +Markeya S. Peteranetz,Computational Creativity Exercises: An Avenue for Promoting Learning in Computer Science.,2017,60,IEEE Trans. Education,4,db/journals/te/te60.html#PeteranetzFSS17,https://doi.org/10.1109/TE.2017.2705152 +Edwin C. Jones,2001 IEEE educational activities board awards.,2002,45,IEEE Trans. Education,2,db/journals/te/te45.html#Jones02,https://doi.org/10.1109/TE.2002.1013873 +Sandeep Anand,Unique Power Electronics and Drives Experimental Bench (PEDEB) to Facilitate Learning and Research.,2012,55,IEEE Trans. Education,4,db/journals/te/te55.html#AnandFF12,https://doi.org/10.1109/TE.2012.2200681 +Roman Kuc,Teaching the nonscience major: EE101-The digital information age.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#Kuc01,https://doi.org/10.1109/13.925823 +Dante Del Corso,A teacher friendly environment to foster learner-centered customization in the development of interactive educational packages.,2005,48,IEEE Trans. Education,4,db/journals/te/te48.html#CorsoOM05,https://doi.org/10.1109/TE.2005.850709 +Sue Fitzgerald,Debugging From the Student Perspective.,2010,53,IEEE Trans. Education,3,db/journals/te/te53.html#FitzgeraldMHMSZ10,https://doi.org/10.1109/TE.2009.2025266 +Amar Bentounsi,Computer-Aided Teaching Using MATLAB/Simulink for Enhancing an IM Course With Laboratory Tests.,2011,54,IEEE Trans. Education,3,db/journals/te/te54.html#BentounsiDBBA11,https://doi.org/10.1109/TE.2010.2085046 +James A. McCart,A Technological Tool to Detect Plagiarized Projects in Microsoft Access.,2008,51,IEEE Trans. Education,2,db/journals/te/te51.html#McCartJ08,https://doi.org/10.1109/TE.2007.906312 +Cem Kaner,A Cautionary Note on Checking Software Engineering Papers for Plagiarism.,2008,51,IEEE Trans. Education,2,db/journals/te/te51.html#KanerF08,https://doi.org/10.1109/TE.2007.909351 +Cynthia M. Furse,Laboratory project in wireless FSK receiver design.,2004,47,IEEE Trans. Education,1,db/journals/te/te47.html#FurseWJ04,https://doi.org/10.1109/TE.2003.816066 +Andrés Julián Saavedra Montes,How to Motivate Students to Work in the Laboratory: A New Approach for an Electrical Machines Laboratory.,2010,53,IEEE Trans. Education,3,db/journals/te/te53.html#MontesCR10,https://doi.org/10.1109/TE.2009.2030790 +Hiroyasu Mitsui,Use of Student Experiments for Teaching Embedded Software Development Including HW/SW Co-Design.,2009,52,IEEE Trans. Education,3,db/journals/te/te52.html#MitsuiKK09,https://doi.org/10.1109/TE.2008.930096 +Leen-Kiat Soh,Guest Editorial Special Issue on Computing in Engineering.,2018,61,IEEE Trans. Education,3,db/journals/te/te61.html#SohC18,https://doi.org/10.1109/TE.2018.2828958 +J. C. Basilio,Design of PI and PID controllers with transient performance specification.,2002,45,IEEE Trans. Education,4,db/journals/te/te45.html#BasilioM02,https://doi.org/10.1109/TE.2002.804399 +Paul H. Lewis,A proposed z-plane criterion to expedite transient-performance analyses.,2000,43,IEEE Trans. Education,3,db/journals/te/te43.html#Lewis00,https://doi.org/10.1109/13.865209 +Artice M. Davis,Some fundamental topics in introductory circuit analysis: a critique.,2000,43,IEEE Trans. Education,3,db/journals/te/te43.html#Davis00,https://doi.org/10.1109/13.865210 +Wei-Fan Chen,"Correction to ""Assessing Virtual Laboratories in a Digital-Filter Design Course: An Experimental Study"".",2008,51,IEEE Trans. Education,2,db/journals/te/te51.html#ChenWS08a,https://doi.org/10.1109/TE.2008.922762 +Alexander Abramovitz,A Practical Approach for Analysis of Input and Output Impedances of Feedback Amplifiers.,2009,52,IEEE Trans. Education,1,db/journals/te/te52.html#Abramovitz09,https://doi.org/10.1109/TE.2008.921800 +Claude Vibet,Phase plane analysis of first-order system with transport lag.,2001,44,IEEE Trans. Education,3,db/journals/te/te44.html#Vibet01,https://doi.org/10.1109/13.941002 +Tariq S. Durrani,2004 IEEE Educational Activities Board Awards.,2005,48,IEEE Trans. Education,3,db/journals/te/te48.html#Durrani05,https://doi.org/10.1109/TE.2005.847428 +David A. Conner,February 2002 editorial.,2002,45,IEEE Trans. Education,1,db/journals/te/te45.html#Conner02,https://doi.org/10.1109/TE.2002.983210 +Juan Touriño,A Grid Portal for an Undergraduate Parallel Programming Course.,2005,48,IEEE Trans. Education,3,db/journals/te/te48.html#TourinoMTA05,https://doi.org/10.1109/TE.2004.842888 +Riadh W. Y. Habash,"Mechatronics Learning Studio: From ""Play and Learn"" to Industry-Inspired Green Energy Applications.",2011,54,IEEE Trans. Education,4,db/journals/te/te54.html#HabashSN11,https://doi.org/10.1109/TE.2011.2107555 +Unai Hernández-Jayo,Addressing Electronic Communications System Learning Through a Radar-Based Active Learning Project.,2015,58,IEEE Trans. Education,4,db/journals/te/te58.html#Hernandez-JayoL15,https://doi.org/10.1109/TE.2015.2399859 +Nasser Giacaman,Bridging Theory and Practice in Programming Lectures With Active Classroom Programmer.,2018,61,IEEE Trans. Education,3,db/journals/te/te61.html#GiacamanR18,https://doi.org/10.1109/TE.2018.2819969 +Milka M. Potrebic,Understanding Computation of Impulse Response in Microwave Software Tools.,2010,53,IEEE Trans. Education,4,db/journals/te/te53.html#PotrebicTP10,https://doi.org/10.1109/TE.2009.2032335 +Sanghun Choi,An Educational Laboratory for Digital Control and Rapid Prototyping of Power Electronic Circuits.,2012,55,IEEE Trans. Education,2,db/journals/te/te55.html#ChoiS12,https://doi.org/10.1109/TE.2011.2169066 +Ayman I. Kayssi,The average capacitor current method for delay calculation in MOS circuits.,2004,47,IEEE Trans. Education,3,db/journals/te/te47.html#Kayssi04,https://doi.org/10.1109/TE.2004.825219 +Thomas F. Schubert,Exploring the Basic Principles of Electric Motors and Generators With a Low-Cost Sophomore-Level Experiment.,2009,52,IEEE Trans. Education,1,db/journals/te/te52.html#SchubertJK09,https://doi.org/10.1109/TE.2008.917195 +Edward J. Rothwell,The Transmission Line as a Simple Example for Introducing Integral Equations to Undergraduates.,2009,52,IEEE Trans. Education,4,db/journals/te/te52.html#Rothwell09,https://doi.org/10.1109/TE.2008.930507 +Kathleen E. Wage,The Signals and Systems Concept Inventory.,2005,48,IEEE Trans. Education,3,db/journals/te/te48.html#WageBWW05,https://doi.org/10.1109/TE.2005.849746 +José Luis Fernández Alemán,Effects of Using Requirements Catalogs on Effectiveness and Productivity of Requirements Specification in a Software Project Management Course.,2016,59,IEEE Trans. Education,2,db/journals/te/te59.html#AlemanCMRTI16,https://doi.org/10.1109/TE.2015.2454472 +Ludo Weyten,Web-Based Trainer for Electrical Circuit Analysis.,2009,52,IEEE Trans. Education,1,db/journals/te/te52.html#WeytenRM09,https://doi.org/10.1109/TE.2008.924213 +Brendan Tangney,Pedagogy and Processes for a Computer Programming Outreach Workshop - The Bridge to College Model.,2010,53,IEEE Trans. Education,1,db/journals/te/te53.html#TangneyOCBL10,https://doi.org/10.1109/TE.2009.2023210 +Danijel Dankovic,An Electromechanical Approach to a Printed Circuit Board Design Course.,2013,56,IEEE Trans. Education,4,db/journals/te/te56.html#DankovicVPP13,https://doi.org/10.1109/TE.2013.2257784 +José Manuel Rodríguez Ascariz,Transforming PC Power Supplies Into Smart Car Battery Conditioners.,2011,54,IEEE Trans. Education,3,db/journals/te/te54.html#AscarizB11,https://doi.org/10.1109/TE.2010.2059704 +Sami Barmada,"Comments on ""Deficiencies in the way scattering parameters are Taught"".",2006,49,IEEE Trans. Education,1,db/journals/te/te49.html#Barmada06,https://doi.org/10.1109/TE.2005.858402 +Wail A. Mousa,Experiences of a Multidisciplinary Course on Geo-Signal Processing From a DSP Perspective Offered in Electrical Engineering at King Fahd University of Petroleum and Minerals.,2012,55,IEEE Trans. Education,3,db/journals/te/te55.html#Mousa12,https://doi.org/10.1109/TE.2011.2180529 +Jun Okamaoto Jr.,Modular microprocessor kit for undergraduate laboratory on industrial automation.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#OkamaotoAS01,https://doi.org/10.1109/13.925875 +Miguel Pinto,Localization of Mobile Robots Using an Extended Kalman Filter in a LEGO NXT.,2012,55,IEEE Trans. Education,1,db/journals/te/te55.html#PintoMM12,https://doi.org/10.1109/TE.2011.2155066 +Jesús M. Gómez de Gabriel,Using LEGO NXT Mobile Robots With LabVIEW for Undergraduate Courses on Mechatronics.,2011,54,IEEE Trans. Education,1,db/journals/te/te54.html#GabrielMFG11,https://doi.org/10.1109/TE.2010.2043359 +Vicki P. Rainey,Beyond technology-renaissance engineers.,2002,45,IEEE Trans. Education,1,db/journals/te/te45.html#Rainey02,https://doi.org/10.1109/TE.2002.983212 +Almudena Ruiz-Iniesta,A Semantically Enriched Context-Aware OER Recommendation Strategy and Its Application to a Computer Science OER Repository.,2014,57,IEEE Trans. Education,4,db/journals/te/te57.html#Ruiz-IniestaJG14,https://doi.org/10.1109/TE.2014.2309554 +Juan Bisquert,The role of instrumentation in the process of modeling real capacitors.,2000,43,IEEE Trans. Education,4,db/journals/te/te43.html#BisquertGF00,https://doi.org/10.1109/13.883355 +Jana Reisslein,Circuits Kit K-12 Outreach: Impact of Circuit Element Representation and Student Gender.,2013,56,IEEE Trans. Education,3,db/journals/te/te56.html#ReissleinOJBHR13,https://doi.org/10.1109/TE.2012.2222410 +Amy M. Johnson,Introductory Circuit Analysis Learning From Abstract and Contextualized Circuit Representations: Effects of Diagram Labels.,2014,57,IEEE Trans. Education,3,db/journals/te/te57.html#JohnsonBOR14,https://doi.org/10.1109/TE.2013.2284258 +Geoffrey C. Orsak,Guest editorial K-12: engineering's new frontier.,2003,46,IEEE Trans. Education,2,db/journals/te/te46.html#Orsak03,https://doi.org/10.1109/TE.2003.812593 +Billy V. Koen,"Creating a sense of ""Presence"" in a web-based PSI course: the search for Mark Hopkins' log in a digital world.",2005,48,IEEE Trans. Education,4,db/journals/te/te48.html#Koen05,https://doi.org/10.1109/TE.2005.850712 +David Wahlgren Parent,Introducing TCAD Tools in a Graduate Level Device Physics Course.,2008,51,IEEE Trans. Education,3,db/journals/te/te51.html#ParentR08,https://doi.org/10.1109/TE.2008.916765 +Federica Battisti,Teaching Multimedia Data Protection Through an International Online Competition.,2011,54,IEEE Trans. Education,3,db/journals/te/te54.html#BattistiBCN11,https://doi.org/10.1109/TE.2010.2061850 +Abdülkadir Erden,The multidisciplinary international virtual design studio (MIVDS).,2000,43,IEEE Trans. Education,3,db/journals/te/te43.html#ErdenEEBTN00,https://doi.org/10.1109/13.865203 +Elsa de Klerk,A laboratory experiment to teach closed-loop system identification.,2004,47,IEEE Trans. Education,2,db/journals/te/te47.html#KlerkC04,https://doi.org/10.1109/TE.2004.825524 +Syed Mahfuzul Aziz,Effective Teaching of the Physical Design of Integrated Circuits Using Educational Tools.,2010,53,IEEE Trans. Education,4,db/journals/te/te53.html#AzizSD10,https://doi.org/10.1109/TE.2009.2031842 +Patrick Schaumont,A Senior-Level Course in Hardware-Software Codesign.,2008,51,IEEE Trans. Education,3,db/journals/te/te51.html#Schaumont08,https://doi.org/10.1109/TE.2007.910434 +Beatriz Barros,Virtual Collaborative Experimentation: An Approach Combining Remote and Local Labs.,2008,51,IEEE Trans. Education,2,db/journals/te/te51.html#BarrosRV08,https://doi.org/10.1109/TE.2007.908071 +Chung-Yang Chen,Effects of the Meetings-Flow Approach on Quality Teamwork in the Training of Software Capstone Projects.,2014,57,IEEE Trans. Education,3,db/journals/te/te57.html#ChenHC14,https://doi.org/10.1109/TE.2014.2305918 +K. Sridharan,A course on web languages and web-based applications.,2004,47,IEEE Trans. Education,2,db/journals/te/te47.html#Sridharan04,https://doi.org/10.1109/TE.2004.825228 +Lorraine Staehr,Using the defining issues test for evaluating computer ethics teaching.,2003,46,IEEE Trans. Education,2,db/journals/te/te46.html#StaehrB03,https://doi.org/10.1109/TE.2002.808274 +Pamela T. Bhatti,A Cochlear Implant Signal Processing Lab: Exploration of a Problem-Based Learning Exercise.,2011,54,IEEE Trans. Education,4,db/journals/te/te54.html#BhattiM11,https://doi.org/10.1109/TE.2010.2103317 +Sudhir P. Mudur,A methodical assessment of integrative model-based E-course development.,2005,48,IEEE Trans. Education,4,db/journals/te/te48.html#MudurGR05,https://doi.org/10.1109/TE.2005.850714 +Travis E. Doom,Crossing the interdisciplinary barrier: a baccalaureate computer science option in bioinformatics.,2003,46,IEEE Trans. Education,3,db/journals/te/te46.html#DoomRKG03,https://doi.org/10.1109/TE.2003.814593 +Rida S. Assaad,A Graphical Approach to Teaching Amplifier Design at the Undergraduate Level.,2009,52,IEEE Trans. Education,1,db/journals/te/te52.html#AssaadS09,https://doi.org/10.1109/TE.2008.917190 +Homin Kwon,Experiments With Sensor Motes and Java-DSP.,2009,52,IEEE Trans. Education,2,db/journals/te/te52.html#KwonBAS09,https://doi.org/10.1109/TE.2008.927691 +Bosko Nikolic,A Survey and Evaluation of Simulators Suitable for Teaching Courses in Computer Architecture and Organization.,2009,52,IEEE Trans. Education,4,db/journals/te/te52.html#NikolicRDM09,https://doi.org/10.1109/TE.2008.930097 +Eliane G. Guimarães,REAL: a virtual laboratory for mobile robot experiments.,2003,46,IEEE Trans. Education,1,db/journals/te/te46.html#GuimaraesMPRCBM03,https://doi.org/10.1109/TE.2002.804404 +Adrian A. Hopgood,Keeping a Distance-Education Course Current Through eLearning and Contextual Assessment.,2007,50,IEEE Trans. Education,1,db/journals/te/te50.html#HopgoodH07,https://doi.org/10.1109/TE.2006.888905 +Rafael Magdalena,A Teaching Laboratory in Analog Electronics: Changes to Address the Bologna Requirements.,2008,51,IEEE Trans. Education,4,db/journals/te/te51.html#MagdalenaSMRM08,https://doi.org/10.1109/TE.2007.912553 +Luis M. Vaquero,EduCloud: PaaS versus IaaS Cloud Usage for an Advanced Computer Science Course.,2011,54,IEEE Trans. Education,4,db/journals/te/te54.html#Vaquero11,https://doi.org/10.1109/TE.2010.2100097 +Catherine K. Skokan,ABET 2000 Challenges in Curricular Compression: Fluids and Circuits - A Pilot 2+1+1 Approach.,2005,48,IEEE Trans. Education,3,db/journals/te/te48.html#SkokanSDG05,https://doi.org/10.1109/TE.2005.852597 +Nancy D. Griffeth,An Undergraduate Research Experience Studying Ras and Ras Mutants.,2016,59,IEEE Trans. Education,2,db/journals/te/te59.html#GriffethBAABBCF16,https://doi.org/10.1109/TE.2015.2450683 +Phillip C. Wankat,Guest Editorial: Cross-Fertilization of Engineering Education Research and Development.,2011,54,IEEE Trans. Education,4,db/journals/te/te54.html#Wankat11,https://doi.org/10.1109/TE.2011.2165757 +Chuanxue Wen,Design of a Microlecture Mobile Learning System Based on Smartphone and Web Platforms.,2015,58,IEEE Trans. Education,3,db/journals/te/te58.html#WenZ15,https://doi.org/10.1109/TE.2014.2363627 +David A. Conner,Editorial: Undergraduate education.,2002,45,IEEE Trans. Education,4,db/journals/te/te45.html#Conner02b,https://doi.org/10.1109/TE.2002.804390 +Archana Mantri,Design and Evaluation of a PBL-Based Course in Analog Electronics.,2008,51,IEEE Trans. Education,4,db/journals/te/te51.html#MantriDGC08,https://doi.org/10.1109/TE.2007.912525 +Douglas L. Spencer,Root loci design using Dickson's technique.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#SpencerPP01,https://doi.org/10.1109/13.925830 +Sunny S. J. Lin,Web based peer assessment: attitude and achievement.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#LinLY01,https://doi.org/10.1109/13.925865 +Gil Alterovitz,"Erratum to ""Bioinformatics and Proteomics: An Engineering Problem Solving-Based Approach"".",2007,50,IEEE Trans. Education,2,db/journals/te/te50.html#AlterovitzR07a,https://doi.org/10.1109/TE.2007.893470 +Mihaela Elena Radu,The Impact of Providing Unlimited Access to Programmable Boards in Digital Design Education.,2011,54,IEEE Trans. Education,2,db/journals/te/te54.html#RaduCDHS11,https://doi.org/10.1109/TE.2009.2037735 +Lorenzo Ntogramatzidis,A Novel Instructional Approach to the Design of Standard Controllers: Using Inversion Formulae.,2014,57,IEEE Trans. Education,1,db/journals/te/te57.html#NtogramatzidisZC14,https://doi.org/10.1109/TE.2013.2266326 +R. C. Woods,Noise effects in avalanche photodiodes.,2000,43,IEEE Trans. Education,3,db/journals/te/te43.html#Woods00,https://doi.org/10.1109/13.865208 +Rob Reilly,Guest Editorial Virtual Laboratories: Enhancing Deep Learning in Model-Based Knowledge Domains.,2008,51,IEEE Trans. Education,1,db/journals/te/te51.html#Reilly08,https://doi.org/10.1109/TE.2008.916030 +Keng Siau,Use of a classroom response system to enhance classroom interactivity.,2006,49,IEEE Trans. Education,3,db/journals/te/te49.html#SiauSN06,https://doi.org/10.1109/TE.2006.879802 +Leonel Sousa,A Lab Project on the Design and Implementation of Programmable and Configurable Embedded Systems.,2013,56,IEEE Trans. Education,3,db/journals/te/te56.html#SousaAG13,https://doi.org/10.1109/TE.2012.2222411 +Peter R. Wilson,Innovative Teaching of IC Design and Manufacture Using the Superchip Platform.,2010,53,IEEE Trans. Education,2,db/journals/te/te53.html#WilsonWMS10,https://doi.org/10.1109/TE.2009.2017271 +Juan Touriño,Guest Editorial Grid Education and Grid-Based Technologies Applied to Education: Ongoing Activities.,2007,50,IEEE Trans. Education,1,db/journals/te/te50.html#Tourino07,https://doi.org/10.1109/TE.2006.886437 +Javier Ruiz-del-Solar,Robotics-Centered Outreach Activities: An Integrated Approach.,2010,53,IEEE Trans. Education,1,db/journals/te/te53.html#Ruiz-del-Solar10,https://doi.org/10.1109/TE.2009.2022946 +José M. Grima Palop,Virtual work bench for electronic instrumentation teaching.,2000,43,IEEE Trans. Education,1,db/journals/te/te43.html#PalopT00,https://doi.org/10.1109/13.825734 +R. C. Woods,Iterative processing algorithm to detect biases in assessments.,2003,46,IEEE Trans. Education,1,db/journals/te/te46.html#Woods03,https://doi.org/10.1109/TE.2002.808258 +Primoz Podrzaj,An enhanced mechanical system for studying the basics of control system dynamics.,2005,48,IEEE Trans. Education,1,db/journals/te/te48.html#PodrzajRK05,https://doi.org/10.1109/TE.2004.825928 +João Carlos Basilio,State-space parameter identification in a second control laboratory.,2004,47,IEEE Trans. Education,2,db/journals/te/te47.html#BasilioM04,https://doi.org/10.1109/TE.2004.824846 +Thomas F. Schubert,A Short Study on the Validity of Miller's Theorem Applied to Transistor Amplifier High-Frequency Performance.,2009,52,IEEE Trans. Education,1,db/journals/te/te52.html#SchubertK09,https://doi.org/10.1109/TE.2008.919808 +Phillip B. Chilson,Hands-On Learning Modules for Interdisciplinary Environments: An Example With a Focus on Weather Radar Applications.,2012,55,IEEE Trans. Education,2,db/journals/te/te55.html#ChilsonY12,https://doi.org/10.1109/TE.2011.2164796 +Julio Sahuquillo,Spim-Cache: A Pedagogical Tool for Teaching Cache Memories Through Code-Based Exercises.,2007,50,IEEE Trans. Education,3,db/journals/te/te50.html#SahuquilloTPP07,https://doi.org/10.1109/TE.2007.900021 +Shyamala C. Sivakumar,A web-based remote interactive laboratory for Internetworking education.,2005,48,IEEE Trans. Education,4,db/journals/te/te48.html#SivakumarRAA05,https://doi.org/10.1109/TE.2005.858393 +José A. Macías,Enhancing Project-Based Learning in Software Engineering Lab Teaching Through an E-Portfolio Approach.,2012,55,IEEE Trans. Education,4,db/journals/te/te55.html#Macias12,https://doi.org/10.1109/TE.2012.2191787 +Wenbin Luo,"A Comment on ""Transient Analysis of Energy Equation of Dynamic Systems"".",2005,48,IEEE Trans. Education,3,db/journals/te/te48.html#Luo05,https://doi.org/10.1109/TE.2005.849759 +Yeong-Jun Kim,Smartphone Response System Using Twitter to Enable Effective Interaction and Improve Engagement in Large Classrooms.,2015,58,IEEE Trans. Education,2,db/journals/te/te58.html#KimJJLKJ15,https://doi.org/10.1109/TE.2014.2329651 +M. Ali Akcayol,An educational tool for fuzzy logic-controlled BDCM.,2002,45,IEEE Trans. Education,1,db/journals/te/te45.html#AkcayolCE02,https://doi.org/10.1109/13.983219 +Fei-Yue Wang,The exact and unique solution for phase-lead and phase-lag compensation.,2003,46,IEEE Trans. Education,2,db/journals/te/te46.html#Wang03,https://doi.org/10.1109/TE.2002.808279 +Euan W. Dempster,A tool for supporting the teaching of parallel database systems.,2005,48,IEEE Trans. Education,2,db/journals/te/te48.html#DempsterWBT05,https://doi.org/10.1109/TE.2004.842895 +Yen-Chu Hung,Combining Self-Explaining With Computer Architecture Diagrams to Enhance the Learning of Assembly Language Programming.,2012,55,IEEE Trans. Education,4,db/journals/te/te55.html#Hung12,https://doi.org/10.1109/TE.2012.2196517 +David Gerónimo,Traffic Sign Recognition for Computer Vision Project-Based Learning.,2013,56,IEEE Trans. Education,3,db/journals/te/te56.html#GeronimoSLB13,https://doi.org/10.1109/TE.2013.2239997 +Carme Ferran,Design of Optical Systems With Extended Depth of Field: An Educational Approach to Wavefront Coding Techniques.,2012,55,IEEE Trans. Education,2,db/journals/te/te55.html#FerranBC12,https://doi.org/10.1109/TE.2011.2169414 +Carmen Lacave,A Preliminary Instrument for Measuring Students' Subjective Perceptions of Difficulties in Learning Recursion.,2018,61,IEEE Trans. Education,2,db/journals/te/te61.html#LacaveMR18,https://doi.org/10.1109/TE.2017.2758346 +Archie L. Holmes,The Effect of Reworking Exam Problems on Problem-Solving Performance in a Circuit Analysis Course: An Exploratory Study.,2014,57,IEEE Trans. Education,2,db/journals/te/te57.html#Holmes14,https://doi.org/10.1109/TE.2013.2278818 +Daniel M. Litynski,IEEE Education Society Awards and Frontiers in Education Conference Awards.,2005,48,IEEE Trans. Education,3,db/journals/te/te48.html#Litynski05,https://doi.org/10.1109/TE.2005.853083 +Mikaya L. D. Lumori,Engaging Students in Applied Electromagnetics at the University of San Diego.,2010,53,IEEE Trans. Education,3,db/journals/te/te53.html#LumoriK10,https://doi.org/10.1109/TE.2009.2026636 +Juan Ignacio Godino-Llorente,Design for All in the Context of the Information Society: Integration of a Specialist Course in a Generalist M.Sc. Program in Electrical and Electronics Engineering.,2012,55,IEEE Trans. Education,1,db/journals/te/te55.html#Godino-LlorenteFSOS12,https://doi.org/10.1109/TE.2011.2143714 +Andreas A. Veglis,Teaching performance evaluation of multiprocessor architectures with Mathcad and MathConnex.,2002,45,IEEE Trans. Education,3,db/journals/te/te45.html#VeglisBP02,https://doi.org/10.1109/TE.2002.1024615 +Cynthia J. Finelli,An instrument for assessing the effectiveness of the circuits curriculum in an electrical engineering program.,2000,43,IEEE Trans. Education,2,db/journals/te/te43.html#FinelliW00,https://doi.org/10.1109/13.848065 +Timothy S. Sullivan,Innovations in Nanoscience Education at Kenyon College.,2008,51,IEEE Trans. Education,2,db/journals/te/te51.html#SullivanGKKPSST08,https://doi.org/10.1109/TE.2007.907320 +Diego Fernández Slezak,Hands-On Experience in HPC With Secondary School Students.,2010,53,IEEE Trans. Education,1,db/journals/te/te53.html#SlezakTMM10,https://doi.org/10.1109/TE.2009.2025491 +Marcelo C. M. Teixeira,Signal-flow graphs: direct method of reduction and MATLAB implementation.,2001,44,IEEE Trans. Education,2,db/journals/te/te44.html#TeixeiraMA01,https://doi.org/10.1109/13.925833 +Taskin Padir,Guest Editorial Special Issue on Robotics Education.,2013,56,IEEE Trans. Education,1,db/journals/te/te56.html#PadirC13,https://doi.org/10.1109/TE.2012.2235631 +Geoffrey L. Herman,Students' Misconceptions About Medium-Scale Integrated Circuits.,2011,54,IEEE Trans. Education,4,db/journals/te/te54.html#HermanLZ11,https://doi.org/10.1109/TE.2011.2104361 +Ricardo Valdivia,Modeling a Collaborative Answer Negotiation Activity Using IMS-Based Learning Design.,2009,52,IEEE Trans. Education,3,db/journals/te/te52.html#ValdiviaNO09,https://doi.org/10.1109/TE.2008.930089 +Nitin Swamy,Internet-based educational control systems lab using NetMeeting.,2002,45,IEEE Trans. Education,2,db/journals/te/te45.html#SwamyKL02,https://doi.org/10.1109/TE.2002.1013879 +Charles F. Bunting,VECTOR: A Hands-On Approach That Makes Electromagnetics Relevant to Students.,2009,52,IEEE Trans. Education,3,db/journals/te/te52.html#BuntingC09,https://doi.org/10.1109/TE.2008.928910 +Sandro Neves Soares,TandD-Bench - Innovative Combined Support for Education and Research in Computer Architecture and Embedded Systems.,2011,54,IEEE Trans. Education,4,db/journals/te/te54.html#SoaresW11,https://doi.org/10.1109/TE.2011.2107911 +Houcine Hassan,A Multidisciplinary PBL Robot Control Project in Automation and Electronic Engineering.,2015,58,IEEE Trans. Education,3,db/journals/te/te58.html#HassanDMPCA15,https://doi.org/10.1109/TE.2014.2348538 +Keivan Navi,How to Teach Residue Number System to Computer Scientists and Engineers.,2011,54,IEEE Trans. Education,1,db/journals/te/te54.html#NaviME11,https://doi.org/10.1109/TE.2010.2048329 +Iztok Humar,Integrated component web-based interactive learning systems for engineering.,2005,48,IEEE Trans. Education,4,db/journals/te/te48.html#HumarSBH05,https://doi.org/10.1109/TE.2005.858396 +Ram M. Narayanan,Overview of a course on electronic instrumentation design for senior undergraduate and graduate students.,2002,45,IEEE Trans. Education,4,db/journals/te/te45.html#Narayanan02,https://doi.org/10.1109/TE.2002.804394 +Jiann S. Yuan,Teaching low-power electronic design in electrical and computer engineering.,2005,48,IEEE Trans. Education,1,db/journals/te/te48.html#YuanD05,https://doi.org/10.1109/TE.2004.837039 +Michael W. Varney,Building Young Engineers: TASEM for Third Graders in Woodcreek Magnet Elementary School.,2012,55,IEEE Trans. Education,1,db/journals/te/te55.html#VarneyJAG12,https://doi.org/10.1109/TE.2011.2131143 +Kuo-En Chang,A programming learning system for beginners-a completion strategy approach.,2000,43,IEEE Trans. Education,2,db/journals/te/te43.html#ChangCCH00,https://doi.org/10.1109/13.848075 +Jorge E. Pérez,Development of Procedures to Assess Problem-Solving Competence in Computing Engineering.,2017,60,IEEE Trans. Education,1,db/journals/te/te60.html#PerezGGMP17,https://doi.org/10.1109/TE.2016.2582736 +Arthur E. Paton,What industry needs from universities for engineering continuing education.,2002,45,IEEE Trans. Education,1,db/journals/te/te45.html#Paton02,https://doi.org/10.1109/TE.2002.983214 +Jonathan G. Campbell,DataLab-J: a signal and image processing laboratory for teaching and research.,2001,44,IEEE Trans. Education,4,db/journals/te/te44.html#CampbellMK01,https://doi.org/10.1109/13.965780 +Chih-Kuan Lee,Establishing a K-12 nanotechnology program for teacher professional development.,2006,49,IEEE Trans. Education,1,db/journals/te/te49.html#LeeWLH06,https://doi.org/10.1109/TE.2005.863429 +Yulei Zhang,A Large-Scale Blended and Flipped Class: Class Design and Investigation of Factors Influencing Students' Intention to Learn.,2016,59,IEEE Trans. Education,4,db/journals/te/te59.html#ZhangDA16,https://doi.org/10.1109/TE.2016.2535205 +Woon-Seng Gan,Teaching and learning the hows and whys of real-time digital signal processing.,2002,45,IEEE Trans. Education,4,db/journals/te/te45.html#Gan02,https://doi.org/10.1109/TE.2002.804393 +Linda M. Head,Real-world design as a one-semester undergraduate project: example of a robust and low-cost solar lantern.,2002,45,IEEE Trans. Education,4,db/journals/te/te45.html#HeadCR02,https://doi.org/10.1109/TE.2002.804396 +Luigi Vanfretti,Facilitating Constructive Alignment in Power Systems Engineering Education Using Free and Open-Source Software.,2012,55,IEEE Trans. Education,3,db/journals/te/te55.html#VanfrettiM12,https://doi.org/10.1109/TE.2011.2172211 +José Manuel Andújar,Augmented Reality for the Improvement of Remote Laboratories: An Augmented Remote Laboratory.,2011,54,IEEE Trans. Education,3,db/journals/te/te54.html#AndujarMM11,https://doi.org/10.1109/TE.2010.2085047 +Tatsuya Kikuchi,DVTS-based remote laboratory across the Pacific over the gigabit network.,2004,47,IEEE Trans. Education,1,db/journals/te/te47.html#KikuchiFFNTKH04,https://doi.org/10.1109/TE.2003.816067 +David Broman,The Company Approach to Software Engineering Project Courses.,2012,55,IEEE Trans. Education,4,db/journals/te/te55.html#BromanSB12,https://doi.org/10.1109/TE.2012.2187208 +C. Palanichamy,A visual package for educating preparatory transmission line series compensation.,2005,48,IEEE Trans. Education,1,db/journals/te/te48.html#PalanichamyB05,https://doi.org/10.1109/TE.2004.825061 +Asier Marzo,Personalizing Sample Databases With Facebook Information to Increase Intrinsic Motivation.,2017,60,IEEE Trans. Education,1,db/journals/te/te60.html#MarzoABL17,https://doi.org/10.1109/TE.2016.2576424 +Xoán C. Pardo,Teaching Digital Systems in the Context of the New European Higher Education Area: A Practical Experience.,2009,52,IEEE Trans. Education,4,db/journals/te/te52.html#PardoMSR09,https://doi.org/10.1109/TE.2008.930512 +Winfred K. N. Anakwa,Development and control of a prototype pneumatic active suspension system.,2002,45,IEEE Trans. Education,1,db/journals/te/te45.html#AnakwaTJBGARSGC02,https://doi.org/10.1109/13.983220 +Raghu Raman,The VLAB OER Experience: Modeling Potential-Adopter Student Acceptance.,2014,57,IEEE Trans. Education,4,db/journals/te/te57.html#RamanANDB14,https://doi.org/10.1109/TE.2013.2294152 +Baquer Mazhari,Amplifier analysis: a tradeoff perspective.,2005,48,IEEE Trans. Education,1,db/journals/te/te48.html#Mazhari05,https://doi.org/10.1109/TE.2004.837058 +Martín Llamas Nistal,Use of E-Learning Functionalities and Standards: The Spanish Case.,2011,54,IEEE Trans. Education,4,db/journals/te/te54.html#NistalRC11,https://doi.org/10.1109/TE.2010.2090154 +Jason Wells,Using Video Tutorials as a Carrot-and-Stick Approach to Learning.,2012,55,IEEE Trans. Education,4,db/journals/te/te55.html#WellsBS12,https://doi.org/10.1109/TE.2012.2187451 +Ioannis T. Christou,Grid-Based Virtual Laboratory Experiments for a Graduate Course on Sensor Networks.,2007,50,IEEE Trans. Education,1,db/journals/te/te50.html#ChristouETK07,https://doi.org/10.1109/TE.2006.886447 +Hsin-Hsiung Huang,A Contest-Oriented Project for Learning Intelligent Mobile Robots.,2013,56,IEEE Trans. Education,1,db/journals/te/te56.html#HuangSL13,https://doi.org/10.1109/TE.2012.2215328 +Benjamin T. Hazen,Factors That Influence Dissemination in Engineering Education.,2012,55,IEEE Trans. Education,3,db/journals/te/te55.html#HazenWS12,https://doi.org/10.1109/TE.2011.2179655 +Julian M. Allwood,The structured development of simulation-based learning tools with an example for the Taguchi method.,2001,44,IEEE Trans. Education,4,db/journals/te/te44.html#AllwoodCL01,https://doi.org/10.1109/13.965783 +Heng Ngee Mok,Student Usage Patterns and Perceptions for Differentiated Lab Exercises in an Undergraduate Programming Course.,2012,55,IEEE Trans. Education,2,db/journals/te/te55.html#Mok12,https://doi.org/10.1109/TE.2011.2162070 +Jan C. Olivier,Teaching the theory of estimation and detection via a GSM radio interface Simulation.,2006,49,IEEE Trans. Education,1,db/journals/te/te49.html#OlivierKM06,https://doi.org/10.1109/TE.2005.856153 +Graham C. Goodwin,Emulation-Based Virtual Laboratories: A Low-Cost Alternative to Physical Experiments in Control Engineering Education.,2011,54,IEEE Trans. Education,1,db/journals/te/te54.html#GoodwinMSVW11,https://doi.org/10.1109/TE.2010.2043434 +Nergiz Ercil Cagiltay,Seven Principles of Instructional Content Design for a Remote Laboratory: A Case Study on ERRL.,2011,54,IEEE Trans. Education,2,db/journals/te/te54.html#CagiltayAAKA11,https://doi.org/10.1109/TE.2010.2058115 +Frank Teusink,A characterization of stable models using a non-monotonic operator.,1994,1,Meth. of Logic in CS,4,db/journals/mlcs/mlcs1.html#Teusink94,http://dl.acm.org/citation.cfm?id=206284 +Sara Porat,Fairness in term rewriting systems.,1994,1,Meth. of Logic in CS,2,db/journals/mlcs/mlcs1.html#PoratF94,http://dl.acm.org/citation.cfm?id=200762 +Stefania Costantini,Metalevel Negation and Non-Monotonic Reasoning.,1994,1,Meth. of Logic in CS,1,db/journals/mlcs/mlcs1.html#CostantiniL94, +Erich Grädel,Definability on finite structures and the existence of one-way functions.,1994,1,Meth. of Logic in CS,3,db/journals/mlcs/mlcs1.html#Gradel94,http://dl.acm.org/citation.cfm?id=207305 +James F. Peters III,Real-time linear logic.,1994,1,Meth. of Logic in CS,4,db/journals/mlcs/mlcs1.html#Peters94,http://dl.acm.org/citation.cfm?id=206280 +John N. Crossley,A logical calculus for polynomial-time realizability.,1994,1,Meth. of Logic in CS,3,db/journals/mlcs/mlcs1.html#CrossleyMS94,http://dl.acm.org/citation.cfm?id=207303 +Marek A. Suchenek,Preservation properties in deductive databases.,1994,1,Meth. of Logic in CS,3,db/journals/mlcs/mlcs1.html#Suchenek94,http://dl.acm.org/citation.cfm?id=207307 +V. S. Lakshmanan,On Three-Valued Autoepistemic Reasoning and the Semantics of Logic Programs.,1994,1,Meth. of Logic in CS,1,db/journals/mlcs/mlcs1.html#Lakshmanan94, +L. Thorne McCarty,The Case for Explicit Exceptions.,1994,1,Meth. of Logic in CS,1,db/journals/mlcs/mlcs1.html#McCartyC94, +Shie-Jue Lee,Use of replace rules in theorem proving.,1994,1,Meth. of Logic in CS,2,db/journals/mlcs/mlcs1.html#LeeP94,http://dl.acm.org/citation.cfm?id=200764 +Liz Sonenberg,A Preferred Model Semantics for Inheritance Networks.,1994,1,Meth. of Logic in CS,1,db/journals/mlcs/mlcs1.html#SonenbergT94, +Jianhua Chen,A refined semantics for disjunctive logic programs.,1994,1,Meth. of Logic in CS,4,db/journals/mlcs/mlcs1.html#Chen94a,http://dl.acm.org/citation.cfm?id=206286 +François Fages,Consistency of Clark's completion and existence of stable models.,1994,1,Meth. of Logic in CS,1,db/journals/mlcs/mlcs1.html#Fages94, +Khaled Bsaïes,Transformation of generate and test logic programs.,1994,1,Meth. of Logic in CS,3,db/journals/mlcs/mlcs1.html#BsaiesAQ94,http://dl.acm.org/citation.cfm?id=207310 +Jianhua Chen,On the relationship between circumscription and well-founded semantics of logic programs.,1994,1,Meth. of Logic in CS,3,db/journals/mlcs/mlcs1.html#Chen94,http://dl.acm.org/citation.cfm?id=207308 +Anil Nerode,Introduction.,1994,1,Meth. of Logic in CS,1,db/journals/mlcs/mlcs1.html#NerodeMS94, +Fosca Giannotti,Declarative Semantics for Pruning Operators in Logic Programming.,1994,1,Meth. of Logic in CS,1,db/journals/mlcs/mlcs1.html#GiannottiPZ94, +Gerald E. Peterson,Constrained term-rewriting induction with applications.,1994,1,Meth. of Logic in CS,4,db/journals/mlcs/mlcs1.html#Peterson94,http://dl.acm.org/citation.cfm?id=206282 +Djamel Bouchaffra,Mapping Dynamic Bayesian Networks to Alpha -Shapes: Application to Human Faces Identification Across Ages.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn23.html#Bouchaffra12,https://doi.org/10.1109/TNNLS.2012.2200261 +Mario Porrmann,A massively parallel architecture for self-organizing feature maps.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#PorrmannWR03,https://doi.org/10.1109/TNN.2003.816368 +Yuanhong Li,Classifiability-based omnivariate decision trees.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#LiDK05,https://doi.org/10.1109/TNN.2005.852864 +Yongduan Song,Neuroadaptive Control With Given Performance Specifications for MIMO Strict-Feedback Systems Under Nonsmooth Actuation and Output Constraints.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#SongZ18,https://doi.org/10.1109/TNNLS.2017.2766123 +Yahui Li,Robust and adaptive backstepping control for nonlinear systems using RBF neural networks.,2004,15,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn15.html#LiQZK04,https://doi.org/10.1109/TNN.2004.826215 +Mark Rosenblum,An improved radial basis function network for visual autonomous road following.,1996,7,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn7.html#RosenblumD96,https://doi.org/10.1109/72.536308 +Shie-Jue Lee,An ART-based construction of RBF networks.,2002,13,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn13.html#LeeH02,https://doi.org/10.1109/TNN.2002.804308 +Leszek Rutkowski,Flexible neuro-fuzzy systems.,2003,14,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn14.html#RutkowskiC03,https://doi.org/10.1109/TNN.2003.811698 +Jooyoung Park,An optimization-based design procedure for asymmetric bidirectional associative memories.,2001,12,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn12.html#ParkKP01,https://doi.org/10.1109/72.896808 +Xianli Pan,Safe Screening Rules for Accelerating Twin Support Vector Machine Classification.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#PanYXW18,https://doi.org/10.1109/TNNLS.2017.2688182 +Bingbing Ni,Learning Semantic-Aligned Action Representation.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#NiLY18,https://doi.org/10.1109/TNNLS.2017.2731775 +Min Han,Laplacian Echo State Network for Multivariate Time Series Prediction.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn29.html#HanX18,https://doi.org/10.1109/TNNLS.2016.2574963 +Shaobo Lin,Is Extreme Learning Machine Feasible? A Theoretical Assessment (Part II).,2015,26,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn26.html#LinLFX15,https://doi.org/10.1109/TNNLS.2014.2336665 +R. Jacob Vogelstein,Dynamically Reconfigurable Silicon Array of Spiking Neurons With Conductance-Based Synapses.,2007,18,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn18.html#VogelsteinMVC07,https://doi.org/10.1109/TNN.2006.883007 +Zhigang Zeng,Multistability of Two Kinds of Recurrent Neural Networks With Activation Functions Symmetrical About the Origin on the Phase Plane.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn24.html#ZengZ13,https://doi.org/10.1109/TNNLS.2013.2262638 +Huaguang Zhang,A Comprehensive Review of Stability Analysis of Continuous-Time Recurrent Neural Networks.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn25.html#ZhangWL14,https://doi.org/10.1109/TNNLS.2014.2317880 +Tingting Yu,Stability Analysis of Genetic Regulatory Networks With Switching Parameters and Time Delays.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#YuLZZZW18,https://doi.org/10.1109/TNNLS.2016.2636185 +Rong-Jong Wai,Fuzzy-Neural-Network Inherited Sliding-Mode Control for Robot Manipulator Including Actuator Dynamics.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn24.html#WaiM13,https://doi.org/10.1109/TNNLS.2012.2228230 +Kusnadi,Hierarchical graph visualization using neural networks.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#KusnadiCC97,https://doi.org/10.1109/72.572116 +Zhengguang Wu,Dissipativity Analysis for Discrete-Time Stochastic Neural Networks With Time-Varying Delays.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn24.html#WuSSC13,https://doi.org/10.1109/TNNLS.2012.2232938 +Onur C. Hamsici,Multiple Ordinal Regression by Maximizing the Sum of Margins.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn27.html#HamsiciM16,https://doi.org/10.1109/TNNLS.2015.2477321 +Quan-Yong Fan,Quantization-Based Adaptive Actor-Critic Tracking Control With Tracking Error Constraints.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#FanYY18,https://doi.org/10.1109/TNNLS.2017.2651104 +Anand Subramaniam,Low-Temperature Fabrication of Spiking Soma Circuits Using Nanocrystalline-Silicon TFTs.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn24.html#SubramaniamCSCV13,https://doi.org/10.1109/TNNLS.2013.2256926 +Ron Sun,A neural network model of causality.,1994,5,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn5.html#Sun94,https://doi.org/10.1109/72.298230 +Jian Yang 0003,Sparse Representation Classifier Steered Discriminative Projection With Applications to Face Recognition.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn24.html#YangCZXY13,https://doi.org/10.1109/TNNLS.2013.2249088 +Mete Ozay,Machine Learning Methods for Attack Detection in the Smart Grid.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn27.html#OzayEVKP16,https://doi.org/10.1109/TNNLS.2015.2404803 +Rui Li,Synchronization Design of Boolean Networks Via the Semi-Tensor Product Method.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn24.html#LiYC13,https://doi.org/10.1109/TNNLS.2013.2248092 +Siu-Yeung Cho,Neural computation approach for developing a 3D shape reconstruction model.,2001,12,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn12.html#ChoC01,https://doi.org/10.1109/72.950148 +Guoyin Wang,TMLNN: triple-valued or multiple-valued logic neural network.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#WangS98a,https://doi.org/10.1109/72.728355 +Xiaoyu Wang,Convergence Study in Extended Kalman Filter-Based Training of Recurrent Neural Networks.,2011,22,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn22.html#WangH11,https://doi.org/10.1109/TNN.2011.2109737 +Jin Zhou,Identifying the Topology of a Coupled FitzHugh-Nagumo Neurobiological Network via a Pinning Mechanism.,2009,20,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn20.html#ZhouYLSL09,https://doi.org/10.1109/TNN.2009.2029102 +Licheng Jiao,Multiwavelet neural network and its approximation properties.,2001,12,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn12.html#JiaoPF01,https://doi.org/10.1109/72.950135 +Jisheng Dai,On the SVMpath Singularity.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn24.html#DaiCMZX13,https://doi.org/10.1109/TNNLS.2013.2262180 +Xiaodi Li,LMI approach for stationary oscillation of interval neural networks with discrete and distributed time-varying delays under impulsive perturbations.,2010,21,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn21.html#LiS10a,https://doi.org/10.1109/TNN.2010.2061865 +Soumitra Das,Noisy recurrent neural networks: the continuous-time case.,1998,9,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn9.html#DasO98,https://doi.org/10.1109/72.712164 +Yunyan Duan,Learning With Auxiliary Less-Noisy Labels.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn28.html#DuanW17,https://doi.org/10.1109/TNNLS.2016.2546956 +Samrat Dutta,Near-Optimal Controller for Nonlinear Continuous-Time Systems With Unknown Dynamics Using Policy Iteration.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn27.html#DuttaPB16,https://doi.org/10.1109/TNNLS.2015.2451535 +Yong He 0003,New Delay-Dependent Stability Criteria for Neural Networks With Time-Varying Delay.,2007,18,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn18.html#HeLR07,https://doi.org/10.1109/TNN.2006.888373 +Krzysztof Mossakowski,Learning Without Human Expertise: A Case Study of the Double Dummy Bridge Problem.,2009,20,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn20.html#MossakowskiM09,https://doi.org/10.1109/TNN.2008.2005526 +M. P. Walsh,Augmented Hopfield network for mixed-integer programming.,1999,10,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn10.html#WalshFO99,https://doi.org/10.1109/72.750578 +Wenjun Xiong,Quantized Iterative Learning Consensus Tracking of Digital Networks With Limited Information Communication.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn28.html#XiongYCG17,https://doi.org/10.1109/TNNLS.2016.2532351 +Johan A. K. Suykens,Training multilayer perceptron classifiers based on a modified support vector method.,1999,10,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn10.html#SuykensV99,https://doi.org/10.1109/72.774254 +Bertrand Lebichot,Semisupervised Classification Through the Bag-of-Paths Group Betweenness.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn25.html#LebichotKFS14,https://doi.org/10.1109/TNNLS.2013.2290281 +Krzysztof J. Cios,A machine learning method for generation of a neural network architecture: a continuous ID3 algorithm.,1992,3,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn3.html#CiosN92,https://doi.org/10.1109/72.125869 +Witold Pedrycz,Conditional fuzzy clustering in the design of radial basis function neural networks.,1998,9,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn9.html#Pedrycz98,https://doi.org/10.1109/72.701174 +Vicente Zarzoso,A contrast function for independent component analysis without permutation ambiguity.,2010,21,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn21.html#ZarzosoCP10,https://doi.org/10.1109/TNN.2010.2045128 +José del R. Millán,A local neural classifier for the recognition of EEG patterns associated to mental tasks.,2002,13,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn13.html#MillanMFCVHB02,https://doi.org/10.1109/TNN.2002.1000132 +José R. Dorronsoro,Neural fraud detection in credit card operations.,1997,8,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn8.html#DorronsoroGSC97,https://doi.org/10.1109/72.595879 +Tetsuya Hoya,Simultaneous Pattern Classification and Multidomain Association Using Self-Structuring Kernel Memory Networks.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#HoyaW07,https://doi.org/10.1109/TNN.2006.889940 +Xinyi Le,Neurodynamics-Based Robust Pole Assignment for High-Order Descriptor Systems.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn26.html#LeW15,https://doi.org/10.1109/TNNLS.2015.2461553 +Long Cheng 0001,Recurrent Neural Network for Non-Smooth Convex Optimization Problems With Application to the Identification of Genetic Regulatory Networks.,2011,22,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn22.html#ChengHLTZW11,https://doi.org/10.1109/TNN.2011.2109735 +Chow Yin Lai,Data-Based Identification and Control of Nonlinear Systems via Piecewise Affine Approximation.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#LaiXL11,https://doi.org/10.1109/TNN.2011.2175946 +Yen-Jen Oyang,Data classification with radial basis function networks based on a novel kernel density estimation algorithm.,2005,16,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn16.html#OyangHOCC05,https://doi.org/10.1109/TNN.2004.836229 +Hee-Heon Song,A self-organizing neural tree for large-set pattern classification.,1998,9,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn9.html#SongL98,https://doi.org/10.1109/72.668880 +Ruichu Cai,Sophisticated Merging Over Random Partitions: A Scalable and Robust Causal Discovery Approach.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#CaiZHW18,https://doi.org/10.1109/TNNLS.2017.2734804 +Fangyue Chen,Universal Perceptron and DNA-Like Learning Algorithm for Binary Neural Networks: LSBF and PBF Implementations.,2009,20,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn20.html#ChenCHXH09,https://doi.org/10.1109/TNN.2009.2028886 +Steve Lawrence,On the distribution of performance from multiple neural-network trials.,1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#LawrenceBTG97,https://doi.org/10.1109/72.641472 +Changzhong Wang,Feature Selection Based on Neighborhood Discrimination Index.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#WangHWCQD18,https://doi.org/10.1109/TNNLS.2017.2710422 +Bahare Kiumarsi,Actor-Critic-Based Optimal Tracking for Partially Unknown Nonlinear Discrete-Time Systems.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn26.html#KiumarsiL15,https://doi.org/10.1109/TNNLS.2014.2358227 +Thomas Martinetz,SoftDoubleMaxMinOver: Perceptron-Like Training of Support Vector Machines.,2009,20,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn20.html#MartinetzLS09,https://doi.org/10.1109/TNN.2009.2016717 +Lilly Spirkovska,Coarse-coded higher-order neural networks for PSRI object recognition.,1993,4,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn4.html#SpirkovskaR93,https://doi.org/10.1109/72.207615 +Li Niu 0002,An Exemplar-Based Multi-View Domain Generalization Framework for Visual Recognition.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn29.html#NiuLXC18,https://doi.org/10.1109/TNNLS.2016.2615469 +Xiaoming Liang,Phase-Noise-Induced Resonance in Arrays of Coupled Excitable Neural Models.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn24.html#LiangZ13,https://doi.org/10.1109/TNNLS.2013.2254126 +C. S. Leung,Encoding method for bidirectional associative memory using projection on convex sets.,1993,4,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn4.html#Leung93,https://doi.org/10.1109/72.248465 +Eu Jin Teoh,Estimating the Number of Hidden Neurons in a Feedforward Network Using the Singular Value Decomposition.,2006,17,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn17.html#TeohTX06,https://doi.org/10.1109/TNN.2006.880582 +Francesco Gianfelici,RBF-Based Technique for Statistical Demodulation of Pathological Tremor.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn24.html#Gianfelici13,https://doi.org/10.1109/TNNLS.2013.2263288 +Hassan A. Kingravi,Reproducing Kernel Hilbert Space Approach for the Online Update of Radial Bases in Neuro-Adaptive Control.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn23.html#KingraviCVJ12,https://doi.org/10.1109/TNNLS.2012.2198889 +Zhao Lu,Multiscale Support Vector Learning With Projection Operator Wavelet Kernel for Nonlinear Dynamical System Identification.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn28.html#LuSB17,https://doi.org/10.1109/TNNLS.2015.2513902 +Murillo Guimarães Carneiro,Organizational Data Classification Based on the Importance Concept of Complex Networks.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#CarneiroZ18,https://doi.org/10.1109/TNNLS.2017.2726082 +Jun Zhang 0017,Spatiochromatic Context Modeling for Color Saliency Analysis.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn27.html#ZhangWZLW16,https://doi.org/10.1109/TNNLS.2015.2464316 +Fernando Fernández,Local Feature Weighting in Nearest Prototype Classification.,2008,19,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn19.html#FernandezI08,https://doi.org/10.1109/TNN.2007.902955 +Jay A. Farrell,On performance evaluation in online approximation for control.,1998,9,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn9.html#Farrell98,https://doi.org/10.1109/72.712180 +Pei-Yi Hao,Pair-v-SVR: A Novel and Efficient Pairing nu-Support Vector Regression Algorithm.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn28.html#Hao17,https://doi.org/10.1109/TNNLS.2016.2598182 +Xinsong Yang,Adaptive lag synchronization for competitive neural networks with mixed delays and uncertain hybrid perturbations.,2010,21,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn21.html#YangCLR10,https://doi.org/10.1109/TNN.2010.2068560 +Jason Horn,Spurious Valleys in the Error Surface of Recurrent Networks - Analysis and Avoidance.,2009,20,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn20.html#HornJH09,https://doi.org/10.1109/TNN.2008.2012257 +Rui Xu 0001,Survey of clustering algorithms.,2005,16,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn16.html#XuW05,https://doi.org/10.1109/TNN.2005.845141 +Son N. Tran,Deep Logic Networks: Inserting and Extracting Knowledge From Deep Belief Networks.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn29.html#TranG18,https://doi.org/10.1109/TNNLS.2016.2603784 +Frans Coetzee,On a natural homotopy between linear and nonlinear single-layer networks.,1996,7,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn7.html#CoetzeeS96,https://doi.org/10.1109/72.485634 +George D. Magoulas,Globally convergent algorithms with local learning rates.,2002,13,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn13.html#MagoulasPV02,https://doi.org/10.1109/TNN.2002.1000148 +Ning Wang 0002,Generalized Single-Hidden Layer Feedforward Networks for Regression Problems.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn26.html#WangEH15,https://doi.org/10.1109/TNNLS.2014.2334366 +Wei-Chi Ku,Weaknesses and drawbacks of a password authentication scheme using neural networks for multiserver architecture.,2005,16,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn16.html#Ku05,https://doi.org/10.1109/TNN.2005.849781 +Yi-Fei Pu,Fractional Hopfield Neural Networks: Fractional Dynamic Associative Recurrent Neural Networks.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn28.html#PuYZ17,https://doi.org/10.1109/TNNLS.2016.2582512 +Marco Gori,Optimal convergence of on-line backpropagation.,1996,7,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn7.html#GoriM96,https://doi.org/10.1109/72.478415 +Mahmood R. Azimi-Sadjadi,Recursive dynamic node creation in multilayer neural networks.,1993,4,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn4.html#Azimi-SadjadiST93,https://doi.org/10.1109/72.207612 +Hamidreza Modares,Adaptive Optimal Control of Unknown Constrained-Input Systems Using Policy Iteration and Neural Networks.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn24.html#ModaresLS13,https://doi.org/10.1109/TNNLS.2013.2276571 +Mohamad H. Hassoun,Exact associative neural memory dynamics utilizing Boolean matrices.,1991,2,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn2.html#HassounW91,https://doi.org/10.1109/72.88163 +Konstantinos Blekas,A spatially constrained mixture model for image segmentation.,2005,16,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn16.html#BlekasLGL05,https://doi.org/10.1109/TNN.2004.841773 +Robert L. Fry,Observer-participant models of neural processing.,1995,6,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn6.html#Fry95,https://doi.org/10.1109/72.392254 +Mauro Forti,Global exponential stability and global convergence in finite time of delayed neural networks with infinite gain.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#FortiNP05,https://doi.org/10.1109/TNN.2005.852862 +Corneliu A. Marinov,Performance analysis for a K-winners-take-all analog neural network: basic theory.,2003,14,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn14.html#MarinovC03,https://doi.org/10.1109/TNN.2003.813833 +Shuyuan Yang,Learning Low-Rank Decomposition for Pan-Sharpening With Spatial-Spectral Offsets.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#YangZW18,https://doi.org/10.1109/TNNLS.2017.2736011 +Xiaolin Hu,Solving the Assignment Problem Using Continuous-Time and Discrete-Time Improved Dual Networks.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn23.html#HuW12,https://doi.org/10.1109/TNNLS.2012.2187798 +Claude Comtat,Approximate reconstruction of PET data with a self-organizing neural network.,1995,6,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn6.html#ComtatM95,https://doi.org/10.1109/72.377988 +Mario Luca Fravolini,Design of a Neural Network Adaptive Controller via a Constrained Invariant Ellipsoids Technique.,2011,22,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn22.html#FravoliniC11,https://doi.org/10.1109/TNN.2011.2111385 +Rémi Gribonval,From projection pursuit and CART to adaptive discriminant analysis?,2005,16,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn16.html#Gribonval05,https://doi.org/10.1109/TNN.2005.844900 +Karin Haese,Self-organizing feature maps with self-adjusting learning parameters.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#Haese98,https://doi.org/10.1109/72.728376 +James T. Lo,Adaptive multilayer perceptrons with long- and short-term memories.,2002,13,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn13.html#LoB02,https://doi.org/10.1109/72.977262 +Piotr Ciskowski,Context-dependent neural nets-structures and learning.,2004,15,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn15.html#CiskowskiR04,https://doi.org/10.1109/TNN.2004.837839 +Bai-Ling Zhang,Performance analysis of the bidirectional associative memory and an improved model from the matched-filtering viewpoint.,1993,4,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn4.html#ZhangXK93,https://doi.org/10.1109/72.248463 +Hervé Bourlard,Continuous speech recognition by connectionist statistical methods.,1993,4,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn4.html#BourlardM93,https://doi.org/10.1109/72.286885 +Chaofeng Li,Blind Image Quality Assessment Using a General Regression Neural Network.,2011,22,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn22.html#LiBW11,https://doi.org/10.1109/TNN.2011.2120620 +Jianhua Zhao,Fast ML Estimation for the Mixture of Factor Analyzers via an ECM Algorithm.,2008,19,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn19.html#ZhaoY08,https://doi.org/10.1109/TNN.2008.2003467 +Chen-Chia Chuang,The annealing robust backpropagation (ARBP) learning algorithm.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn11.html#ChuangSH00,https://doi.org/10.1109/72.870040 +C. Lee Giles,Constructive learning of recurrent neural networks: limitations of recurrent cascade correlation and a simple solution.,1995,6,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn6.html#Giles0SCLG95,https://doi.org/10.1109/72.392247 +Dimitris Tzikas,Sparse Bayesian Modeling With Adaptive Kernel Learning.,2009,20,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn20.html#TzikasLG09,https://doi.org/10.1109/TNN.2009.2014060 +Peter Tiño,Financial volatility trading using recurrent neural networks.,2001,12,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn12.html#TinoSD01,https://doi.org/10.1109/72.935096 +James Tin-Yau Kwok,The pre-image problem in kernel methods.,2004,15,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn15.html#KwokT04,https://doi.org/10.1109/TNN.2004.837781 +Masaaki Tsujitani,Neural discriminant analysis.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn11.html#TsujitaniK00,https://doi.org/10.1109/72.883460 +Haris E. Psillakis,Projection-Based Adaptive Neurocontrol With Switching Logic Deadzone Tuning.,2009,20,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn20.html#Psillakis09a,https://doi.org/10.1109/TNN.2009.2028736 +Inês Domingues,Max-Ordinal Learning.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn25.html#DominguesC14,https://doi.org/10.1109/TNNLS.2013.2287381 +Yasuo Matsuyama,Harmonic competition: a self-organizing multiple criteria optimization.,1996,7,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn7.html#Matsuyama96,https://doi.org/10.1109/72.501723 +Yen-Hao Tseng,Three-dimensional object representation and invariant recognition using continuous distance transform neural networks.,1997,8,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn8.html#TsengHS97,https://doi.org/10.1109/72.554198 +Hiroomi Hikawa,A new digital pulse-mode neuron with adjustable activation function.,2003,14,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn14.html#Hikawa03,https://doi.org/10.1109/TNN.2002.804312 +Gavin J. Gibson,A combinatorial approach to understanding perceptron capabilities.,1993,4,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn4.html#Gibson93,https://doi.org/10.1109/72.286894 +Qing Hui,A Stochastic Mean Field Model for an Excitatory and Inhibitory Synaptic Drive Cortical Neuronal Network.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn25.html#HuiHBH14,https://doi.org/10.1109/TNNLS.2013.2281065 +Yanzhi Wu,Adaptive Antisynchronization of Multilayer Reaction-Diffusion Neural Networks.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#WuLHF18,https://doi.org/10.1109/TNNLS.2017.2647811 +Naira Hovakimyan,Adaptive Dynamic Inversion via Time-Scale Separation.,2008,19,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn19.html#HovakimyanLC08,https://doi.org/10.1109/TNN.2008.2001221 +Sarangapani Jagannathan,Neural-Network-Based State Feedback Control of a Nonlinear Discrete-Time System in Nonstrict Feedback Form.,2008,19,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn19.html#JagannathanH08,https://doi.org/10.1109/TNN.2008.2003295 +Fabio L. Traversa,Memory Models of Adaptive Behavior.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn24.html#TraversaPV13,https://doi.org/10.1109/TNNLS.2013.2261545 +Bai Zhang,Nonlinear System Modeling With Random Matrices: Echo State Networks Revisited.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn23.html#ZhangMW12,https://doi.org/10.1109/TNNLS.2011.2178562 +Xiaolin Hu,An Improved Dual Neural Network for Solving a Class of Quadratic Programming Problems and Its k-Winners-Take-All Application.,2008,19,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn19.html#HuW08,https://doi.org/10.1109/TNN.2008.2003287 +Nikolaos Ampazis,Two highly efficient second-order algorithms for training feedforward networks.,2002,13,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn13.html#AmpazisP02,https://doi.org/10.1109/TNN.2002.1031939 +C. Mahendra,Multiuser Receiver for DS-CDMA Signals in Multipath Channels: An Enhanced Multisurface Method.,2006,17,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn17.html#MahendraP06,https://doi.org/10.1109/TNN.2006.881048 +Chao Yu,Emotional Multiagent Reinforcement Learning in Spatial Social Dilemmas.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn26.html#YuZRT15,https://doi.org/10.1109/TNNLS.2015.2403394 +Jianquan Lu,Exponential Synchronization of Linearly Coupled Neural Networks With Impulsive Disturbances.,2011,22,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn22.html#LuHCK11,https://doi.org/10.1109/TNN.2010.2101081 +Hong-Bing Zeng,Complete Delay-Decomposing Approach to Asymptotic Stability for Neural Networks With Time-Varying Delays.,2011,22,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn22.html#ZengHWZ11,https://doi.org/10.1109/TNN.2011.2111383 +P. V. S. Ponnapalli,A formal selection and pruning algorithm for feedforward artificial neural network optimization.,1999,10,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn10.html#PonnapalliHT99,https://doi.org/10.1109/72.774273 +Bernhard Schölkopf,Input space versus feature space in kernel-based methods.,1999,10,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn10.html#ScholkopfMBKMRS99,https://doi.org/10.1109/72.788641 +Chun-Shin Lin,Selection of learning parameters for CMAC-based adaptive critic learning.,1995,6,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn6.html#LinK95,https://doi.org/10.1109/72.377969 +Takuya Konishi,Variational Bayesian Inference Algorithms for Infinite Relational Model of Network Data.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn26.html#KonishiKWI15,https://doi.org/10.1109/TNNLS.2014.2362012 +Xinjiang Lu,Robust Least-Squares Support Vector Machine With Minimization of Mean and Variance of Modeling Error.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#LuLZH18,https://doi.org/10.1109/TNNLS.2017.2709805 +William D. Penny,Generalization in multi-layer networks of Sigma-pi units.,1995,6,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn6.html#PennyS95,https://doi.org/10.1109/72.363490 +Scott C. Newton,Adaptive fuzzy leader clustering of complex data sets in pattern recognition.,1992,3,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn3.html#NewtonPM92,https://doi.org/10.1109/72.159068 +C. Y. Lee,Characteristics of the Hopfield associative memory utilizing isomorphism relations.,1994,5,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn5.html#LeeWL94,https://doi.org/10.1109/72.286932 +Steven R. Young,On the Impact of Approximate Computation in an Analog DeSTIN Architecture.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn25.html#YoungLHA14,https://doi.org/10.1109/TNNLS.2013.2283730 +Ramaswamy Savitha,Projection-Based Fast Learning Fully Complex-Valued Relaxation Neural Network.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn24.html#SavithaSS13,https://doi.org/10.1109/TNNLS.2012.2235460 +Jiahu Qin,Coordination of Multiagents Interacting Under Independent Position and Velocity Topologies.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn24.html#QinY13,https://doi.org/10.1109/TNNLS.2013.2261090 +Eduardo Ros,Real-time computing platform for spiking neurons (RT-spike).,2006,17,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn17.html#RosOACA06,https://doi.org/10.1109/TNN.2006.875980 +Vasant Dhar,A comparison of nonlinear methods for predicting earnings surprises and returns.,2001,12,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn12.html#DharC01,https://doi.org/10.1109/72.935099 +Yunong Zhang,A recurrent neural network for solving Sylvester equation with time-varying coefficients.,2002,13,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn13.html#ZhangJW02,https://doi.org/10.1109/TNN.2002.1031938 +Wenbin Cai,Batch Mode Active Learning for Regression With Expected Model Change.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn28.html#CaiZZ17,https://doi.org/10.1109/TNNLS.2016.2542184 +Ryan J. Kier,Design and implementation of multipattern generators in analog VLSI.,2006,17,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn17.html#KierABH06,https://doi.org/10.1109/TNN.2006.875983 +Bin Gu,Feasibility and Finite Convergence Analysis for Accurate On-Line $\nu$-Support Vector Machine.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn24.html#GuS13,https://doi.org/10.1109/TNNLS.2013.2250300 +Sunil Bharitkar,The hysteretic Hopfield neural network.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn11.html#BharitkarM00,https://doi.org/10.1109/72.857769 +Ying Lu 0007,Discriminative Transfer Learning Using Similarities and Dissimilarities.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#LuCSDW18,https://doi.org/10.1109/TNNLS.2017.2705760 +Hassan Hajji,Statistical analysis of network traffic for adaptive faults detection.,2005,16,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn16.html#Hajji05,https://doi.org/10.1109/TNN.2005.853414 +Xingguo Chen,Online Selective Kernel-Based Temporal Difference Learning.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn24.html#Chen0W13,https://doi.org/10.1109/TNNLS.2013.2270561 +María José Pérez-Ilzarbe,New Discrete-Time Recurrent Neural Network Proposal for Quadratic Optimization With General Linear Constraints.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn24.html#Perez-Ilzarbe13,https://doi.org/10.1109/TNNLS.2012.2223484 +Bo Gao,Equilibria and Their Bifurcations in a Recurrent Neural Network Involving Iterates of a Transcendental Function.,2008,19,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn19.html#GaoZ08,https://doi.org/10.1109/TNN.2007.912321 +Fabio Aiolli,Learning Nonsparse Kernels by Self-Organizing Maps for Structured Data.,2009,20,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn20.html#AiolliMHS09,https://doi.org/10.1109/TNN.2009.2033473 +Matthias Rolf,Efficient Exploratory Learning of Inverse Kinematics on a Bionic Elephant Trunk.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn25.html#RolfS14,https://doi.org/10.1109/TNNLS.2013.2287890 +Zeke S. H. Chan,Fast neural network ensemble learning via negative-correlation data correction.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#ChanK05,https://doi.org/10.1109/TNN.2005.852859 +Gerald G. Pechanek,Digital neural emulators using tree accumulation and communication structures.,1992,3,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn3.html#PechanekVD92,https://doi.org/10.1109/72.165595 +Jinling Wang,SpikeTemp: An Enhanced Rank-Order-Based Learning Approach for Spiking Neural Networks With Adaptive Structure.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn28.html#WangBMM17,https://doi.org/10.1109/TNNLS.2015.2501322 +Liying Zhu,Aggregation Analysis for Competitive Multiagent Systems With Saddle Points via Switching Strategies.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#ZhuX18,https://doi.org/10.1109/TNNLS.2017.2710238 +Necati Aras,A Kohonen-like decomposition method for the Euclidean traveling salesman problem-KNIES_DECOMPOSE.,2003,14,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn14.html#ArasAO03,https://doi.org/10.1109/TNN.2003.811562 +Yufei Tang,Adaptive Modulation for DFIG and STATCOM With High-Voltage Direct Current Transmission.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn27.html#TangHNWH16,https://doi.org/10.1109/TNNLS.2015.2504035 +Arnulf B. A. Graf,Classification in a normalized feature space using support vector machines.,2003,14,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn14.html#GrafSB03,https://doi.org/10.1109/TNN.2003.811708 +Sidney S. Fels,Glove-Talk: a neural network interface between a data-glove and a speech synthesizer.,1993,4,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn4.html#FelsH93,https://doi.org/10.1109/72.182690 +Wenwu Yu,Stability and Hopf Bifurcation of a General Delayed Recurrent Neural Network.,2008,19,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn19.html#YuCC08,https://doi.org/10.1109/TNN.2007.912589 +Ki H. Chon,Comparative nonlinear modeling of renal autoregulation in rats: Volterra approach versus artificial neural networks.,1998,9,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn9.html#ChonHMM98,https://doi.org/10.1109/72.668884 +Miroslaw Galicki,Learning continuous trajectories in recurrent neural networks with time-dependent weights.,1999,10,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn10.html#GalickiLW99,https://doi.org/10.1109/72.774210 +F.-Y. Wang,Adaptive Dynamic Programming for Finite-Horizon Optimal Control of Discrete-Time Nonlinear Systems With varepsilon-Error Bound.,2011,22,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn22.html#WangJLW11,https://doi.org/10.1109/TNN.2010.2076370 +Volker Nissen,Solving the quadratic assignment problem with clues from nature.,1994,5,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn5.html#Nissen94,https://doi.org/10.1109/72.265961 +Chao Zhang,Binary Higher Order Neural Networks for Realizing Boolean Functions.,2011,22,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn22.html#ZhangYW11,https://doi.org/10.1109/TNN.2011.2114367 +Christos N. Houmkozlis,Fairness Guarantees in a Neural Network Adaptive Congestion Control Framework.,2009,20,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn20.html#HoumkozlisR09,https://doi.org/10.1109/TNN.2009.2013463 +Pando G. Georgiev,Sparse component analysis and blind source separation of underdetermined mixtures.,2005,16,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn16.html#GeorgievTC05,https://doi.org/10.1109/TNN.2005.849840 +Li Niu 0002,Visual Recognition by Learning From Web Data via Weakly Supervised Domain Generalization.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn28.html#NiuLXC17,https://doi.org/10.1109/TNNLS.2016.2557349 +Vinay Deolalikar,Mapping Boolean functions with neural networks having binary weights and zero thresholds.,2001,12,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn12.html#Deolalikar01,https://doi.org/10.1109/72.925568 +Erik Berglund,The parameterless self-organizing map algorithm.,2006,17,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn17.html#BerglundS06,https://doi.org/10.1109/TNN.2006.871720 +Anupam Joshi,On the problem of correspondence in range data and some inelastic uses for elastic nets.,1995,6,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn6.html#JoshiL95,https://doi.org/10.1109/72.377976 +Predrag S. Stanimirovic,Recurrent Neural Network for Computing the Drazin Inverse.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn26.html#StanimirovicZW15,https://doi.org/10.1109/TNNLS.2015.2397551 +Badong Chen,Quantized Kernel Recursive Least Squares Algorithm.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn24.html#ChenZZP13,https://doi.org/10.1109/TNNLS.2013.2258936 +David C. J. Naylor,Backpropagation in linear arrays-a performance analysis and optimization.,1995,6,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn6.html#NaylorJM95,https://doi.org/10.1109/72.377965 +Jialu Du,Adaptive Robust Output Feedback Control for a Marine Dynamic Positioning System Based on a High-Gain Observer.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn26.html#DuHLC15,https://doi.org/10.1109/TNNLS.2015.2396044 +Vignesh Narayanan,Event-Triggered Distributed Approximate Optimal State and Output Control of Affine Nonlinear Interconnected Systems.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#NarayananJ18,https://doi.org/10.1109/TNNLS.2017.2693205 +Ramamohan Paturi,Discrete Neural Computation: A Theoretical Foundation [Book Review].,1996,7,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn7.html#Paturi96,https://doi.org/10.1109/TNN.1996.485688 +Yi Xiao,Objective Function and Learning Algorithm for the General Node Fault Situation.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn27.html#XiaoFLS16,https://doi.org/10.1109/TNNLS.2015.2427331 +Samy Bengio,Taking on the curse of dimensionality in joint distributions using neural networks.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn11.html#BengioB00,https://doi.org/10.1109/72.846725 +Pei-Yih Ting,Diffusion network architectures for implementation of Gibbs samplers with applications to assignment problems.,1994,5,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn5.html#TingI94,https://doi.org/10.1109/72.298232 +Alain Rakotomamonjy,ellp-ellq Penalty for Sparse Linear and Sparse Multiple Kernel Multitask Learning.,2011,22,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn22.html#RakotomamonjyFGC11,https://doi.org/10.1109/TNN.2011.2157521 +Zhaoxu Yu,Adaptive Neural Output Feedback Control for Nonstrict-Feedback Stochastic Nonlinear Systems With Unknown Backlash-Like Hysteresis and Unknown Control Directions.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#YuLYL18,https://doi.org/10.1109/TNNLS.2017.2669088 +Gérard Bloch,Neural intelligent control for a steel plant.,1997,8,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn8.html#BlochSEF97,https://doi.org/10.1109/72.595889 +Shigeo Sakaue,Reduction of required precision bits for back-propagation applied to pattern recognition.,1993,4,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn4.html#SakaueKYMS93,https://doi.org/10.1109/72.207614 +Giovanna Castellano,An iterative pruning algorithm for feedforward neural networks.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#CastellanoFP97,https://doi.org/10.1109/72.572092 +Angelo Frosini,A neural network-based model for paper currency recognition and verification.,1996,7,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn7.html#FrosiniGP96,https://doi.org/10.1109/72.548175 +Son Lam Phung,A Pyramidal Neural Network For Visual Pattern Recognition.,2007,18,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn18.html#PhungB07,https://doi.org/10.1109/TNN.2006.884677 +Xue-Bin Liang,A recurrent neural network for nonlinear continuously differentiable optimization over a compact convex subset.,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#Liang01a,https://doi.org/10.1109/72.963784 +Wei Bian,Minimizing Nearest Neighbor Classification Error for Nonparametric Dimension Reduction.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn25.html#BianZMBT14,https://doi.org/10.1109/TNNLS.2013.2294547 +Lipo Wang,Heteroassociations of spatio-temporal sequences with the bidirectional associative memory.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn11.html#Wang00,https://doi.org/10.1109/72.883484 +Dong Yue,Delay-Distribution-Dependent Exponential Stability Criteria for Discrete-Time Recurrent Neural Networks With Stochastic Delay.,2008,19,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn19.html#YueZTP08,https://doi.org/10.1109/TNN.2008.2000166 +Lachlan L. H. Andrew,"Comments on ""On a novel unsupervised competitive learning algorithm for scalar quantization"".",1996,7,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn7.html#Andrew96,https://doi.org/10.1109/72.478412 +Yang Yu 0001,Reusable Reinforcement Learning via Shallow Trails.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#YuCDZ18,https://doi.org/10.1109/TNNLS.2018.2803729 +Jiang Li,Feature Selection Using a Piecewise Linear Network.,2006,17,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn17.html#LiMNY06,https://doi.org/10.1109/TNN.2006.877531 +George K. Knopf,A multipurpose neural processor for machine vision systems.,1993,4,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn4.html#KnopfG93,https://doi.org/10.1109/72.248454 +Zhang Yi 0001,Estimate of exponential convergence rate and exponential stability for neural networks.,1999,10,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn10.html#YiHF99,https://doi.org/10.1109/72.809094 +Yong-Li Xu,Least Square Regularized Regression in Sum Space.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn24.html#XuCLL13,https://doi.org/10.1109/TNNLS.2013.2242091 +Harris Drucker,Support vector machines for spam categorization.,1999,10,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn10.html#DruckerWV99,https://doi.org/10.1109/72.788645 +DucDung Nguyen,A bottom-up method for simplifying support vector solutions.,2006,17,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn17.html#NguyenH06,https://doi.org/10.1109/TNN.2006.873287 +Virginio Cantoni,Neural recognition in a pyramidal structure.,2002,13,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn13.html#CantoniP02,https://doi.org/10.1109/72.991433 +Jongkil Park,Hierarchical Address Event Routing for Reconfigurable Large-Scale Neuromorphic Systems.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn28.html#ParkYJMC17,https://doi.org/10.1109/TNNLS.2016.2572164 +Sung-Bae Cho,Neural-network classifiers for recognizing totally unconstrained handwritten numerals.,1997,8,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn8.html#Cho97,https://doi.org/10.1109/72.554190 +Sandro Ridella,Representation and generalization properties of class-entropy networks.,1999,10,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn10.html#RidellaRZ99,https://doi.org/10.1109/72.737491 +KangWoo Lee,Cue-guided search: a computational model of selective attention.,2005,16,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn16.html#LeeBF05,https://doi.org/10.1109/TNN.2005.851787 +Xing-Bao Gao,A novel neural network for nonlinear convex programming.,2004,15,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn15.html#Gao04,https://doi.org/10.1109/TNN.2004.824425 +Zhuo Wang 0003,Finite-Time State Estimation for Coupled Markovian Neural Networks With Sensor Nonlinearities.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn28.html#WangXLP17,https://doi.org/10.1109/TNNLS.2015.2490168 +Mu Li,Large-Scale Nyström Kernel Matrix Approximation Using Randomized SVD.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn26.html#LiBKL15,https://doi.org/10.1109/TNNLS.2014.2359798 +Ana Toledo Moreo,Improvement of the neighborhood based Levenberg-Marquardt algorithm by local adaptation of the learning coefficient.,2005,16,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn16.html#MoreoPIL05,https://doi.org/10.1109/TNN.2005.849849 +Xiaobing Pei,Concept Factorization With Adaptive Neighbors for Document Clustering.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn29.html#PeiCG18,https://doi.org/10.1109/TNNLS.2016.2626311 +Sau Wai Tung,SaFIN: A Self-Adaptive Fuzzy Inference Network.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#TungQG11,https://doi.org/10.1109/TNN.2011.2167720 +Hyuck M. Kwon,Neural network applications for jamming state information generator.,1994,5,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn5.html#KwonS94,https://doi.org/10.1109/72.317735 +Dongshu Wang,Synchronization Criteria for Discontinuous Neural Networks With Mixed Delays via Functional Differential Inclusions.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#WangHT18,https://doi.org/10.1109/TNNLS.2017.2688327 +Yang Liu 0007,Hybrid Manifold Embedding.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn25.html#LiuLCH14,https://doi.org/10.1109/TNNLS.2014.2305760 +Alireza Khotanzad,Recognition and pose estimation of unoccluded three-dimensional objects from a two-dimensional perspective view by banks of neural networks.,1996,7,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn7.html#KhotanzadL96,https://doi.org/10.1109/72.508933 +Xin-Yu Wu,A high-performance neural network for solving linear and quadratic programming problems.,1996,7,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn7.html#WuXLC96,https://doi.org/10.1109/72.501722 +Huisheng Zhang,Boundedness and Convergence of Online Gradient Method With Penalty for Feedforward Neural Networks.,2009,20,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn20.html#ZhangWLY09,https://doi.org/10.1109/TNN.2009.2020848 +Philipp Häfliger,Adaptive WTA With an Analog VLSI Neuromorphic Learning Chip.,2007,18,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn18.html#Hafliger07,https://doi.org/10.1109/TNN.2006.884676 +Min Wang 0003,Dynamic Learning From Neural Control for Strict-Feedback Systems With Guaranteed Predefined Performance.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn27.html#WangWSL16,https://doi.org/10.1109/TNNLS.2015.2496622 +Mohammed Falah Mohammed,An Enhanced Fuzzy Min-Max Neural Network for Pattern Classification.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn26.html#MohammedL15,https://doi.org/10.1109/TNNLS.2014.2315214 +Shahab Mehraeen,Decentralized Dynamic Surface Control of Large-Scale Interconnected Systems in Strict-Feedback Form Using Neural Networks With Asymptotic Stabilization.,2011,22,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn22.html#MehraeenJC11,https://doi.org/10.1109/TNN.2011.2140381 +Lu Dong,Event-Triggered Adaptive Dynamic Programming for Continuous-Time Systems With Control Constraints.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn28.html#DongZSH17a,https://doi.org/10.1109/TNNLS.2016.2586303 +Juntao Fei,Adaptive Sliding Mode Control of Dynamic Systems Using Double Loop Recurrent Neural Network Structure.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#FeiL18,https://doi.org/10.1109/TNNLS.2017.2672998 +Isaac E. Lagaris,Neural-network methods for boundary value problems with irregular boundaries.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn11.html#LagarisLP00,https://doi.org/10.1109/72.870037 +Liang-Hwa Chen,An adaptive learning algorithm for principal component analysis.,1995,6,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn6.html#ChenC95b,https://doi.org/10.1109/72.410369 +Jacques M. Bahi,"Corrections to ""Basins of Attraction in Fully Asynchronous Discrete-Time Discrete-State Dynamic Networks"" [Mar 06 397-408].",2009,20,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn20.html#BahiC09,https://doi.org/10.1109/TNN.2009.2027016 +Abd-Krim Seghouane,The AIC Criterion and Symmetrizing the Kullback-Leibler Divergence.,2007,18,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn18.html#SeghouaneA07,https://doi.org/10.1109/TNN.2006.882813 +Krzysztof Ciesielski,Synthesis of feedforward networks in supremum error bound.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn11.html#CiesielskiSC00,https://doi.org/10.1109/72.883398 +Bin Gu,Structural Minimax Probability Machine.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn28.html#GuSS17,https://doi.org/10.1109/TNNLS.2016.2544779 +Rosangela Follmann,Phase Oscillatory Network and Visual Pattern Recognition.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn26.html#FollmannMRP15,https://doi.org/10.1109/TNNLS.2014.2345572 +Pierre Baldi,Learning in linear neural networks: a survey.,1995,6,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn6.html#BaldiH95,https://doi.org/10.1109/72.392248 +Dan Zhang 0007,Maximum Margin Multiple Instance Clustering With Applications to Image and Text Clustering.,2011,22,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn22.html#ZhangWSL11,https://doi.org/10.1109/TNN.2011.2109011 +Yong Xu 0003,Asynchronous Dissipative State Estimation for Stochastic Complex Networks With Quantized Jumping Coupling and Uncertain Measurements.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn28.html#XuLPXX17,https://doi.org/10.1109/TNNLS.2015.2503772 +Raymond S. T. Lee,Tropical cyclone identification and tracking system using integrated neural oscillatory elastic graph matching and hybrid RBF network track mining techniques.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn11.html#LeeL00,https://doi.org/10.1109/72.846739 +Weiling Cai,A multiobjective simultaneous learning framework for clustering and classification.,2010,21,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn21.html#CaiCZ10,https://doi.org/10.1109/TNN.2009.2034741 +Yuli Chen,A New Automatic Parameter Setting Method of a Simplified PCNN for Image Segmentation.,2011,22,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn22.html#ChenPMA11,https://doi.org/10.1109/TNN.2011.2128880 +Lipo Wang,On chaotic simulated annealing.,1998,9,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn9.html#WangS98,https://doi.org/10.1109/72.701185 +Rajan Rakkiyappan,Synchronization of Neural Networks With Control Packet Loss and Time-Varying Delay via Stochastic Sampled-Data Controller.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn26.html#RakkiyappanDC15,https://doi.org/10.1109/TNNLS.2015.2425881 +Avraham A. Melkman,Identifying a Probabilistic Boolean Threshold Network From Samples.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#MelkmanCCA18,https://doi.org/10.1109/TNNLS.2017.2648039 +Neil W. Townsend,Estimations of error bounds for neural-network function approximators.,1999,10,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn10.html#TownsendT99,https://doi.org/10.1109/72.750542 +Zhihua Zhang,Semiparametric Regression Using Student t Processes.,2007,18,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn18.html#ZhangWC07,https://doi.org/10.1109/TNN.2007.899736 +Pratik Prabhanjan Brahma,Reinforced Robust Principal Component Pursuit.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#BrahmaSLLW18,https://doi.org/10.1109/TNNLS.2017.2671849 +Zhizhong Han,Mesh Convolutional Restricted Boltzmann Machines for Unsupervised Learning of Features With Structure Preservation on 3-D Meshes.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn28.html#HanLHVBC17,https://doi.org/10.1109/TNNLS.2016.2582532 +Bruno Apolloni,Sub-symbolically managing pieces of symbolical functions for sorting.,1999,10,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn10.html#ApolloniZ99,https://doi.org/10.1109/72.788650 +Yang-Yin Lin,Simplified Interval Type-2 Fuzzy Neural Networks.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn25.html#LinLCL14,https://doi.org/10.1109/TNNLS.2013.2284603 +Yongli Song,Inphase and Antiphase Synchronization in a Delay-Coupled System With Applications to a Delay-Coupled FitzHugh-Nagumo System.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn23.html#SongX12,https://doi.org/10.1109/TNNLS.2012.2209459 +Wu-Hua Chen,A new method for complete stability analysis of cellular neural networks with time delay.,2010,21,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn21.html#ChenZ10a,https://doi.org/10.1109/TNN.2010.2048925 +Wenzhi Gao,Neural network control of a class of nonlinear systems with actuator saturation.,2006,17,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn17.html#GaoS06,https://doi.org/10.1109/TNN.2005.863416 +Sung-Bae Cho,Multiple network fusion using fuzzy logic.,1995,6,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn6.html#ChoK95,https://doi.org/10.1109/72.363487 +Huabin Chen,Exponential Synchronization for Markovian Stochastic Coupled Neural Networks of Neutral-Type via Adaptive Feedback Control.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn28.html#ChenSL17,https://doi.org/10.1109/TNNLS.2016.2546962 +Guodong Zhang,Exponential Stabilization of Memristor-based Chaotic Neural Networks with Time-Varying Delays via Intermittent Control.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn26.html#ZhangS15,https://doi.org/10.1109/TNNLS.2014.2345125 +Qin Zhang 0007,Dynamic Uncertain Causality Graph for Knowledge Representation and Reasoning: Utilization of Statistical Data and Domain Knowledge in Complex Cases.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#ZhangY18,https://doi.org/10.1109/TNNLS.2017.2673243 +Ailong Wu,Exponential Stabilization of Memristive Neural Networks With Time Delays.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn23.html#WuZ12,https://doi.org/10.1109/TNNLS.2012.2219554 +Vladimir Cherkassky,Multiple model regression estimation.,2005,16,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn16.html#CherkasskyM05,https://doi.org/10.1109/TNN.2005.849836 +Souhaib Ben Taieb,A Bias and Variance Analysis for Multistep-Ahead Time Series Forecasting.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn27.html#TaiebA16,https://doi.org/10.1109/TNNLS.2015.2411629 +Stefen Hui,Robust stability analysis of adaptation algorithms for single perceptron.,1991,2,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn2.html#HuiZ91,https://doi.org/10.1109/72.80346 +V. Chandrasekaran,Spatio-temporal feature maps using gated neuronal architecture.,1995,6,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn6.html#ChandrasekaranPC95,https://doi.org/10.1109/72.410356 +Patrick Sheridan,Feature Extraction Using Memristor Networks.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn27.html#SheridanDL16,https://doi.org/10.1109/TNNLS.2015.2482220 +Xuesong Zhang,Online Feature Transformation Learning for Cross-Domain Object Category Recognition.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#ZhangZWP18,https://doi.org/10.1109/TNNLS.2017.2705113 +Ludmila I. Kuncheva,PCA Feature Extraction for Change Detection in Multidimensional Unlabeled Data.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn25.html#KunchevaF14,https://doi.org/10.1109/TNNLS.2013.2248094 +Mingxuan Sun,Neural AILC for Error Tracking Against Arbitrary Initial Shifts.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#SunWCZ18,https://doi.org/10.1109/TNNLS.2017.2698507 +Yan-Qing Zhang,Compensatory neurofuzzy systems with fast learning algorithms.,1998,9,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn9.html#ZhangK98,https://doi.org/10.1109/72.655032 +Inmaculada Mora-Jiménez,A universal learning rule that minimizes well-formed cost functions.,2005,16,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn16.html#Mora-JimenezC05,https://doi.org/10.1109/TNN.2005.849839 +J. A. Anderson,Talking Nets: An Oral History Of Neural Networks.,1998,9,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn9.html#AndersonR98,https://doi.org/10.1109/TNN.1998.712193 +James V. Hansen,Neural networks and traditional time series methods: a synergistic combination in state economic forecasts.,1997,8,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn8.html#HansenN97,https://doi.org/10.1109/72.595884 +Jun Li 0027,Sparseness Analysis in the Pretraining of Deep Neural Networks.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn28.html#LiZLYYZ17,https://doi.org/10.1109/TNNLS.2016.2541681 +Ali Heydari,Stability Analysis of Optimal Adaptive Control Under Value Iteration Using a Stabilizing Initial Policy.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#Heydari18b,https://doi.org/10.1109/TNNLS.2017.2755501 +Steve Lawrence,Face recognition: a convolutional neural-network approach.,1997,8,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn8.html#LawrenceGTB97,https://doi.org/10.1109/72.554195 +Rui Araújo,Prune-Able Fuzzy ART Neural Architecture for Robot Map Learning and Navigation in Dynamic Environments.,2006,17,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn17.html#Araujo06,https://doi.org/10.1109/TNN.2006.877534 +Marcelo M. Lamego,Adaptive structures with algebraic loops.,2001,12,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn12.html#Lamego01,https://doi.org/10.1109/72.896794 +Danchi Jiang,On-line learning of dynamical systems in the presence of model mismatch and disturbances.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn11.html#JiangW00,https://doi.org/10.1109/72.883420 +Xianchao Zhang,Constrained Clustering With Nonnegative Matrix Factorization.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn27.html#ZhangZLL16,https://doi.org/10.1109/TNNLS.2015.2448653 +Jaakko Peltonen,Discriminative components of data.,2005,16,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn16.html#PeltonenK05,https://doi.org/10.1109/TNN.2004.836194 +Konstantinos I. Diamantaras,Multilayer neural networks for reduced-rank approximation.,1994,5,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn5.html#DiamantarasK94,https://doi.org/10.1109/72.317721 +Shyamala C. Sivakumar,Online stabilization of block-diagonal recurrent neural networks.,1999,10,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn10.html#SivakumarRP99,https://doi.org/10.1109/72.737503 +Michael I. Miller,Representing and computing regular languages on massively parallel networks.,1991,2,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn2.html#MillerRSO91,https://doi.org/10.1109/72.80291 +K. Patan,Stability Analysis and the Stabilization of a Class of Discrete-Time Dynamic Neural Networks.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#Patan07,https://doi.org/10.1109/TNN.2007.891199 +Leonardo Maria Reyneri,Implementation issues of neuro-fuzzy hardware: going toward HW/SW codesign.,2003,14,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn14.html#Reyneri03,https://doi.org/10.1109/TNN.2002.806955 +Milos Krejnik,Reproducing Kernel Hilbert Spaces With Odd Kernels in Price Prediction.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn23.html#KrejnikT12,https://doi.org/10.1109/TNNLS.2012.2207739 +Qingshan Liu 0002,A Collective Neurodynamic Approach to Distributed Constrained Optimization.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn28.html#LiuYW17,https://doi.org/10.1109/TNNLS.2016.2549566 +Heriberto Jose Delgado,A novel neural network for the synthesis of antennas and microwave devices.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#DelgadoTH05,https://doi.org/10.1109/TNN.2005.852973 +Nakwan Kim,Several Extensions in Methods for Adaptive Output Feedback Control.,2007,18,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn18.html#KimC07,https://doi.org/10.1109/TNN.2006.885120 +Alexander A. Frolov,Comparison of Seven Methods for Boolean Factor Analysis and Their Evaluation by Information Gain.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn27.html#FrolovHP16,https://doi.org/10.1109/TNNLS.2015.2412686 +Le Van Hien,On Global Dissipativity of Nonautonomous Neural Networks With Multiple Proportional Delays.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn29.html#HienST18,https://doi.org/10.1109/TNNLS.2016.2614998 +Luis Weruaga,Sparse Multivariate Gaussian Mixture Regression.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn26.html#WeruagaV15,https://doi.org/10.1109/TNNLS.2014.2334596 +Zijia Lin,End-to-End Feature-Aware Label Space Encoding for Multilabel Classification With Many Classes.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#LinDHS18,https://doi.org/10.1109/TNNLS.2017.2691545 +Zi-Qin Wang,LMS learning algorithms: misconceptions and new results on converence.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn11.html#WangMS00,https://doi.org/10.1109/72.822509 +Jianjun Ni,Bioinspired Neural Network for Real-Time Cooperative Hunting by Multirobots in Unknown Environments.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#NiY11,https://doi.org/10.1109/TNN.2011.2169808 +Yi Zheng,Reduction of breast biopsies with a modified self-organizing map.,1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#ZhengGG97,https://doi.org/10.1109/72.641462 +José de Jesús Rubio,Uniformly Stable Backpropagation Algorithm to Train a Feedforward Neural Network.,2011,22,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn22.html#RubioAP11,https://doi.org/10.1109/TNN.2010.2098481 +Ming Shao,Cross-Modality Feature Learning Through Generic Hierarchical Hyperlingual-Words.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn28.html#ShaoF17,https://doi.org/10.1109/TNNLS.2016.2517014 +Kostyantyn Y. Volyanskyy,Pressure- and Work-Limited Neuroadaptive Control for Mechanical Ventilation of Critical Care Patients.,2011,22,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn22.html#VolyanskyyHB11,https://doi.org/10.1109/TNN.2011.2109963 +D. D. Nguyen,Condensed Vector Machines: Learning Fast Machine for Large Data.,2010,21,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn21.html#NguyenMTH10,https://doi.org/10.1109/TNN.2010.2079947 +Alexander Bauer 0001,Efficient Exact Inference With Loss Augmented Objective in Structured Learning.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn28.html#BauerNM17,https://doi.org/10.1109/TNNLS.2016.2598721 +Frank J. Smieja,The pandemonium system of reflective agents.,1996,7,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn7.html#Smieja96,https://doi.org/10.1109/72.478395 +Jianchang Mao,Artificial neural networks for feature extraction and multivariate data projection.,1995,6,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn6.html#MaoJ95,https://doi.org/10.1109/72.363467 +Jia Wang 0007,Multivariate Cryptography Based on Clipped Hopfield Neural Network.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn29.html#WangCS18,https://doi.org/10.1109/TNNLS.2016.2626466 +Jan Faigl,Approximate solution of the multiple watchman routes problem with restricted visibility range.,2010,21,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn21.html#Faigl10,https://doi.org/10.1109/TNN.2010.2070518 +Jen-Tzung Chien,Bayesian Recurrent Neural Network for Language Modeling.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn27.html#ChienK16,https://doi.org/10.1109/TNNLS.2015.2499302 +Poh Lian Choong,Entropy maximization networks: an application to breast cancer prognosis.,1996,7,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn7.html#ChoongdDS96,https://doi.org/10.1109/72.501716 +Sheng Chen 0001,Support vector machine multiuser receiver for DS-CDMA signals in multipath channels.,2001,12,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn12.html#ChenSH01,https://doi.org/10.1109/72.925563 +Michael J. Healy,A neural architecture for pattern sequence verification through inferencing.,1993,4,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn4.html#HealyCS93,https://doi.org/10.1109/72.182691 +Balaje T. Thumati,A model-based fault-detection and prediction scheme for nonlinear multivariable discrete-time systems with asymptotic stability guarantees.,2010,21,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn21.html#ThumatiJ10,https://doi.org/10.1109/TNN.2009.2037498 +Asriel U. Levin,Control of nonlinear dynamical systems using neural networks: controllability and stabilization.,1993,4,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn4.html#LevinN93,https://doi.org/10.1109/72.207608 +Eduardo Jose Bayro-Corrochano,Geometric neural computing.,2001,12,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn12.html#Bayro-Corrochano01,https://doi.org/10.1109/72.950128 +Xiuwen Liu,Range image segmentation using a relaxation oscillator network.,1999,10,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn10.html#LiuW99,https://doi.org/10.1109/72.761713 +Xia Hong 0001,Generalized neurofuzzy network modeling algorithms using Bezier-Bernstein polynomial functions and additive decomposition.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn11.html#HongH00,https://doi.org/10.1109/72.857770 +Toshihiko Yamasaki,Analog soft-pattern-matching classifier using floating-gate MOS technology.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#YamasakiS03,https://doi.org/10.1109/TNN.2003.816031 +Masayuki Karasuyama,Nonlinear Regularization Path for Quadratic Loss Support Vector Machines.,2011,22,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn22.html#KarasuyamaT11,https://doi.org/10.1109/TNN.2011.2164265 +Peter Shih,Reinforcement-Learning-Based Dual-Control Methodology for Complex Nonlinear Discrete-Time Systems With Application to Spark Engine EGR Operation.,2008,19,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn19.html#ShihKJD08,https://doi.org/10.1109/TNN.2008.2000452 +Jinpeng Yu,Neural Network-Based Adaptive Dynamic Surface Control for Permanent Magnet Synchronous Motors.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn26.html#YuSDCL15,https://doi.org/10.1109/TNNLS.2014.2316289 +Michael L. Mumford,The Mod 2 Neurocomputer system design.,1992,3,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn3.html#MumfordAK92,https://doi.org/10.1109/72.129415 +Min Xiao,Hopf Bifurcation of an (n+1) -Neuron Bidirectional Associative Memory Neural Network Model With Delays.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn24.html#XiaoZC13,https://doi.org/10.1109/TNNLS.2012.2224123 +Sung Jin Yoo,Adaptive Output Feedback Control of Flexible-Joint Robots Using Neural Networks: Dynamic Surface Design Approach.,2008,19,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn19.html#YooPC08a,https://doi.org/10.1109/TNN.2008.2001266 +Xun Liang,An effective method of pruning support vector machine classifiers.,2010,21,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn21.html#Liang10,https://doi.org/10.1109/TNN.2009.2033677 +Junwei Han,Guest Editorial Special Section on Visual Saliency Computing and Learning.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn27.html#HanSVHX16,https://doi.org/10.1109/TNNLS.2016.2522738 +Damminda Alahakoon,Dynamic self-organizing maps with controlled growth for knowledge discovery.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn11.html#AlahakoonHS00,https://doi.org/10.1109/72.846732 +Tetsuya Hishiki,A Novel Rotate-and-Fire Digital Spiking Neuron and its Neuron-Like Bifurcations and Responses.,2011,22,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn22.html#HishikiT11,https://doi.org/10.1109/TNN.2011.2116802 +Lixian Zhang,Synchronization and State Estimation of a Class of Hierarchical Hybrid Neural Networks With Time-Varying Delays.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn27.html#ZhangZZ16,https://doi.org/10.1109/TNNLS.2015.2412676 +Yocheved Dotan,Multimodality exploration by an unsupervised projection pursuit neural network.,1998,9,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn9.html#DotanI98,https://doi.org/10.1109/72.668888 +Lorenzo Livi,One-Class Classifiers Based on Entropic Spanning Graphs.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn28.html#LiviA17,https://doi.org/10.1109/TNNLS.2016.2608983 +Kailing Guo,GoDec+: Fast and Robust Low-Rank Matrix Decomposition Based on Maximum Correntropy.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#GuoLXXT18,https://doi.org/10.1109/TNNLS.2016.2643286 +Yingwei Zhang,Modeling and Monitoring of Dynamic Processes.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn23.html#ZhangCLY12,https://doi.org/10.1109/TNNLS.2011.2179669 +Marie Cottrell,Neural modeling for time series: A statistical stepwise method for weight elimination.,1995,6,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn6.html#CottrellGGMM95,https://doi.org/10.1109/72.471372 +Praisan Padungweang,A Discrimination Analysis for Unsupervised Feature Selection via Optic Diffraction Principle.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn23.html#PadungweangLS12,https://doi.org/10.1109/TNNLS.2012.2208269 +Ernst M. Kussul,Permutation Coding Technique for Image Recognition Systems.,2006,17,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn17.html#KussulBWMM06,https://doi.org/10.1109/TNN.2006.880676 +Hongmei He,An Improved Neural Network Model for the Two-Page Crossing Number Problem.,2006,17,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn17.html#HeSM06,https://doi.org/10.1109/TNN.2006.881486 +Sunan Huang 0001,Fault Detection and Diagnosis Based on Modeling and Estimation Methods.,2009,20,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn20.html#HuangT09,https://doi.org/10.1109/TNN.2009.2015078 +Luigi P. Cordella,A method for improving classification reliability of multilayer perceptrons.,1995,6,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn6.html#CordellaSTV95,https://doi.org/10.1109/72.410358 +Toru Aonishi,Extension of dynamic link matching by introducing local linear maps.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn11.html#AonishiK00,https://doi.org/10.1109/72.846754 +Ruizhuo Song,Adaptive Dynamic Programming for a Class of Complex-Valued Nonlinear Systems.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn25.html#SongXZS14,https://doi.org/10.1109/TNNLS.2014.2306201 +Bing Wang,Co-Operative Coevolutionary Neural Networks for Mining Functional Association Rules.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn28.html#WangMA17,https://doi.org/10.1109/TNNLS.2016.2536104 +Hahn-Ming Lee,A self-organizing HCMAC neural-network classifier.,2003,14,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn14.html#LeeCL03,https://doi.org/10.1109/TNN.2002.806607 +Yoshua Bengio,Experiments on the application of IOHMMs to model financial returns series.,2001,12,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn12.html#BengioLD01,https://doi.org/10.1109/72.896800 +Jin Young Choi,Nonlinear adaptive control using networks of piecewise linear approximators.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn11.html#ChoiF00,https://doi.org/10.1109/72.839009 +Mohamad H. Hassoun,Adaptive Ho-Kashyap rules for perceptron training.,1992,3,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn3.html#HassounS92,https://doi.org/10.1109/72.105417 +Gongde Guo,Cluster Validation Method for Determining the Number of Clusters in Categorical Sequences.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn28.html#GuoCYJ17,https://doi.org/10.1109/TNNLS.2016.2608354 +Yung-Keun Kwon,A Hybrid Neurogenetic Approach for Stock Forecasting.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#KwonM07,https://doi.org/10.1109/TNN.2007.891629 +Liqiang Nie,Modeling Disease Progression via Multisource Multitask Learners: A Case Study With Alzheimer's Disease.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn28.html#NieZMSCL17,https://doi.org/10.1109/TNNLS.2016.2520964 +Wen Yu 0001,Recurrent Neural Networks Training With Stable Bounding Ellipsoid Algorithm.,2009,20,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn20.html#YuR09,https://doi.org/10.1109/TNN.2009.2015079 +Wen Yao,Concurrent Subspace Width Optimization Method for RBF Neural Network Modeling.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn23.html#YaoCZT12,https://doi.org/10.1109/TNNLS.2011.2178560 +Boris Igelnik,A net with complex weights.,2001,12,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn12.html#IgelnikTL01,https://doi.org/10.1109/72.914521 +Wei Huang 0008,Hybrid Fuzzy Wavelet Neural Networks Architecture Based on Polynomial Neural Networks and Fuzzy Set/Relation Inference-Based Wavelet Neurons.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#HuangOP18,https://doi.org/10.1109/TNNLS.2017.2729589 +Peter Williams,A Geometrical Method to Improve Performance of the Support Vector Machine.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#WilliamsLFW07,https://doi.org/10.1109/TNN.2007.891625 +Josiane Zerubia,Mean field annealing using compound Gauss-Markov random fields for edge detection and image estimation.,1993,4,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn4.html#ZerubiaC93,https://doi.org/10.1109/72.238324 +Danilo Vasconcellos Vargas,Spectrum-Diverse Neuroevolution With Unified Neural Models.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn28.html#VargasM17,https://doi.org/10.1109/TNNLS.2016.2551748 +Rajesh N. Davé,Adaptive fuzzy c-shells clustering and detection of ellipses.,1992,3,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn3.html#DaveB92,https://doi.org/10.1109/72.159055 +David E. Thompson,Neighborhood sequential and random training techniques for CMAC.,1995,6,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn6.html#ThompsonK95,https://doi.org/10.1109/72.363437 +Antonio Peñalver Benavent,Entropy-Based Incremental Variational Bayes Learning of Gaussian Mixtures.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn23.html#PenalverE12,https://doi.org/10.1109/TNNLS.2011.2177670 +Manjeevan Seera,Fault Detection and Diagnosis of Induction Motors Using Motor Current Signature Analysis and a Hybrid FMM-CART Model.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn23.html#SeeraLIS12,https://doi.org/10.1109/TNNLS.2011.2178443 +Stefan Knerr,Handwritten digit recognition by neural networks with single-layer training.,1992,3,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn3.html#KnerrPD92,https://doi.org/10.1109/72.165597 +Hao Quan,Incorporating Wind Power Forecast Uncertainties Into Stochastic Unit Commitment Using Neural Network-Based Prediction Intervals.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn26.html#QuanSK15,https://doi.org/10.1109/TNNLS.2014.2376696 +Francisco Ortega-Zamorano,Efficient Implementation of the Backpropagation Algorithm in FPGAs and Microcontrollers.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn27.html#Ortega-Zamorano16,https://doi.org/10.1109/TNNLS.2015.2460991 +Esa Alhoniemi,Compact Modeling of Data Using Independent Variable Group Analysis.,2007,18,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn18.html#AlhoniemiHLSWV07,https://doi.org/10.1109/TNN.2007.900809 +Zhen Wang 0002,Twin Support Vector Machine for Clustering.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn26.html#WangSBD15,https://doi.org/10.1109/TNNLS.2014.2379930 +Sheng Chen 0001,A clustering technique for digital communications channel equalization using radial basis function networks.,1993,4,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn4.html#0001MG93,https://doi.org/10.1109/72.238312 +Wen Yu 0001,Some new results on system identification with dynamic neural networks.,2001,12,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn12.html#YuL01,https://doi.org/10.1109/72.914535 +Marcílio Carlos Pereira de Souto,Equivalence between RAM-based neural networks and probabilistic automata.,2005,16,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn16.html#SoutoLO05,https://doi.org/10.1109/TNN.2005.849838 +Marcos Eduardo Valle,A Robust Subspace Projection Autoassociative Memory Based on the M-Estimation Method.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn25.html#Valle14,https://doi.org/10.1109/TNNLS.2013.2284818 +Weishui Wan,Implementing online natural gradient learning: problems and solutions.,2006,17,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn17.html#Wan06,https://doi.org/10.1109/TNN.2005.863406 +Yong Zhang,A Digital Liquid State Machine With Biologically Inspired Learning and Its Application to Speech Recognition.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn26.html#ZhangLJC15,https://doi.org/10.1109/TNNLS.2015.2388544 +Eric Chalmers,Learning to Predict Consequences as a Method of Knowledge Transfer in Reinforcement Learning.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#ChalmersCRLG18,https://doi.org/10.1109/TNNLS.2017.2690910 +Nageswara S. V. Rao,Learning algorithms for feedforward networks based on finite samples.,1996,7,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn7.html#RaoPMOI96,https://doi.org/10.1109/72.508936 +Mark N. Gibbs,Variational Gaussian process classifiers.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn11.html#GibbsM00,https://doi.org/10.1109/72.883477 +Muhammad Naeem,On the Role of Astroglial Syncytia in Self-Repairing Spiking Neural Networks.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn26.html#NaeemMHWM15,https://doi.org/10.1109/TNNLS.2014.2382334 +Avimanyu Sahoo,Adaptive Neural Network-Based Event-Triggered Control of Single-Input Single-Output Nonlinear Discrete-Time Systems.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn27.html#SahooXJ16,https://doi.org/10.1109/TNNLS.2015.2472290 +Murad Abu-Khalaf,Neurodynamic Programmingand Zero-Sum Games for Constrained Control Systems.,2008,19,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn19.html#Abu-KhalafLH08,https://doi.org/10.1109/TNN.2008.2000204 +Junhaeng Lee,Real-Time Gesture Interface Based on Event-Driven Processing From Stereo Silicon Retinas.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn25.html#LeeDPPSRK14,https://doi.org/10.1109/TNNLS.2014.2308551 +Pantelis Bouboulis,Complex Support Vector Machines for Regression and Quaternary Classification.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn26.html#BouboulisTME15,https://doi.org/10.1109/TNNLS.2014.2336679 +Khashayar Pakdaman,Asymptotic behavior of irreducible excitatory networks of analog graded-response neurons.,1999,10,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn10.html#PakdamanMG99,https://doi.org/10.1109/72.809082 +Jianyong Sun,Canonical Correlation Analysis on Data With Censoring and Error Information.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn24.html#SunK13,https://doi.org/10.1109/TNNLS.2013.2262949 +Yu-jhih Wu,A supervised learning neural network coprocessor for soft-decision maximum-likelihood decoding.,1995,6,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn6.html#WuCH95,https://doi.org/10.1109/72.392260 +Jie Cheng,Real-Time Vector Quantization and Clustering Based on Ordinary Differential Equations.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#ChengSZC11,https://doi.org/10.1109/TNN.2011.2172627 +Tongliang Liu,Large-Cone Nonnegative Matrix Factorization.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn28.html#LiuGT17,https://doi.org/10.1109/TNNLS.2016.2574748 +Chunhua Shen,Scalable large-margin Mahalanobis distance metric learning.,2010,21,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn21.html#ShenKW10,https://doi.org/10.1109/TNN.2010.2052630 +Keisuke Yamazaki,Singularities in complete bipartite graph-type Boltzmann machines and upper bounds of stochastic complexities.,2005,16,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn16.html#YamazakiW05,https://doi.org/10.1109/TNN.2004.841792 +Adriaan G. Tijsseling,Sequential information processing using time-delay connections in ontogenic CALM networks.,2005,16,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn16.html#Tijsseling05,https://doi.org/10.1109/TNN.2004.839355 +Mohamad H. Hassoun,Mathematical Perspectives on Neural Networks [Books in Brief].,1996,7,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn7.html#Hassoun96g,https://doi.org/10.1109/TNN.1996.548192 +Isaac Triguero,IPADE: Iterative Prototype Adjustment for Nearest Neighbor Classification.,2010,21,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn21.html#TrigueroGH10,https://doi.org/10.1109/TNN.2010.2087415 +Yong-Duan Song,Dealing With the Issues Crucially Related to the Functionality and Reliability of NN-Associated Control for Nonlinear Uncertain Systems.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn28.html#SongHJ17,https://doi.org/10.1109/TNNLS.2016.2598616 +Canh Hao Nguyen,Latent Feature Kernels for Link Prediction on Sparse Graphs.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn23.html#NguyenM12,https://doi.org/10.1109/TNNLS.2012.2215337 +Avimanyu Sahoo,Approximate Optimal Control of Affine Nonlinear Continuous-Time Systems Using Event-Sampled Neurodynamic Programming.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn28.html#SahooXJ17,https://doi.org/10.1109/TNNLS.2016.2539366 +Liang Hu,Dynamic State Estimation of Power Systems With Quantization Effects: A Recursive Filter Approach.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn27.html#HuWL16,https://doi.org/10.1109/TNNLS.2014.2381853 +Ke-Kun Huang,Learning Kernel Extended Dictionary for Face Recognition.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn28.html#HuangDRL17,https://doi.org/10.1109/TNNLS.2016.2522431 +Yun Xie,Analysis of the effects of quantization in multilayer neural networks using a statistical model.,1992,3,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn3.html#XieJ92,https://doi.org/10.1109/72.125876 +Silvia Ghilezan,Separating Points by Parallel Hyperplanes - Characterization Problem.,2007,18,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn18.html#GhilezanPZ07,https://doi.org/10.1109/TNN.2007.891678 +Leszek Rutkowski,Adaptive probabilistic neural networks for pattern classification in time-varying environment.,2004,15,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn15.html#Rutkowski04a,https://doi.org/10.1109/TNN.2004.828757 +Samuel Rota Bulò,Randomized Prediction Games for Adversarial Machine Learning.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn28.html#BuloBPPR17,https://doi.org/10.1109/TNNLS.2016.2593488 +Kay Chen Tan,New dynamical optimal learning for linear multilayer FNN.,2004,15,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn15.html#TanT04,https://doi.org/10.1109/TNN.2004.830801 +Monica Bianchini,Processing directed acyclic graphs with recursive neural networks.,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#BianchiniGS01,https://doi.org/10.1109/72.963781 +Chedsada Chinrungrueng,Optimal adaptive k-means algorithm with dynamic adjustment of learning rate.,1995,6,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn6.html#ChinrungruengS95,https://doi.org/10.1109/72.363440 +Rudy Setiono,Recursive Neural Network Rule Extraction for Data With Mixed Attributes.,2008,19,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn19.html#SetionoBM08,https://doi.org/10.1109/TNN.2007.908641 +Ji-Chien Lee,VLSI neuroprocessors for video motion detection.,1993,4,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn4.html#LeeSFC93,https://doi.org/10.1109/72.207607 +Marko Robnik-Sikonja,Data Generators for Learning Systems Based on RBF Networks.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn27.html#Robnik-Sikonja16,https://doi.org/10.1109/TNNLS.2015.2429711 +Weilong Hou,Blind Image Quality Assessment via Deep Learning.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn26.html#HouGTL15,https://doi.org/10.1109/TNNLS.2014.2336852 +Dov Ingman,Maximum entropy signal reconstruction with neural networks.,1992,3,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn3.html#IngmanM92,https://doi.org/10.1109/72.125860 +De-Shuang Huang,A constructive approach for finding arbitrary roots of polynomials by neural networks.,2004,15,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn15.html#Huang04,https://doi.org/10.1109/TNN.2004.824424 +Feng Cai,Generalized SMO Algorithm for SVM-Based Multitask Learning.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn23.html#CaiC12,https://doi.org/10.1109/TNNLS.2012.2187307 +Artemis K. Kostarigka,Adaptive Dynamic Output Feedback Neural Network Control of Uncertain MIMO Nonlinear Systems With Prescribed Performance.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn23.html#KostarigkaR12,https://doi.org/10.1109/TNNLS.2011.2178448 +Alexandros Iosifidis,On the Optimal Class Representation in Linear Discriminant Analysis.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn24.html#IosifidisTP13,https://doi.org/10.1109/TNNLS.2013.2258937 +David A. Durfee,Comparison of floating gate neural network memory cells in standard VLSI CMOS technology.,1992,3,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn3.html#DurfeeS92,https://doi.org/10.1109/72.129407 +Yang Liu 0040,Normalization and Solvability of Dynamic-Algebraic Boolean Networks.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#LiuCLL18,https://doi.org/10.1109/TNNLS.2017.2715060 +Guilherme De A. Barreto,Identification and control of dynamical systems using the self-organizing map.,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#BarretoA04,https://doi.org/10.1109/TNN.2004.832825 +Lester Ingber,Optimization of trading physics models of markets.,2001,12,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn12.html#IngberM01,https://doi.org/10.1109/72.935091 +V. T. Sunil Elanayar,Radial basis function neural network for approximation and estimation of nonlinear stochastic dynamic systems.,1994,5,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn5.html#ElanayarS94,https://doi.org/10.1109/72.298229 +Eric B. Baum,Neural net algorithms that learn in polynomial time from examples and queries.,1991,2,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn2.html#Baum91,https://doi.org/10.1109/72.80287 +Ailong Wu,Lagrange Stability of Memristive Neural Networks With Discrete and Distributed Delays.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn25.html#WuZ14,https://doi.org/10.1109/TNNLS.2013.2280458 +William Holderbaum,Application of Neural Network to Hybrid Systems With Binary Inputs.,2007,18,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn18.html#Holderbaum07,https://doi.org/10.1109/TNN.2007.899181 +Youshen Xia,A general methodology for designing globally convergent optimization neural networks.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#XiaW98,https://doi.org/10.1109/72.728383 +Sami Bannour,Principal component extraction using recursive least squares learning.,1995,6,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn6.html#BannourA95,https://doi.org/10.1109/72.363480 +Marcin Witczak,Toward the training of feed-forward neural networks with the D-optimum input sequence.,2006,17,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn17.html#Witczak06,https://doi.org/10.1109/TNN.2006.871704 +Anna Szymkowiak-Have,Clustering via kernel decomposition.,2006,17,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn17.html#Szymkowiak-HaveGL06,https://doi.org/10.1109/TNN.2005.860840 +Hui Xue,Structural Regularized Support Vector Machine: A Framework for Structural Large Margin Classifier.,2011,22,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn22.html#XueCY11,https://doi.org/10.1109/TNN.2011.2108315 +Ying Wu 0001,Nonstationary color tracking for vision-based human-computer interaction.,2002,13,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn13.html#WuH02,https://doi.org/10.1109/TNN.2002.1021895 +Vivien Rossi,Bayesian multioutput feedforward neural networks comparison: a conjugate prior approach.,2006,17,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn17.html#RossiV06,https://doi.org/10.1109/TNN.2005.860883 +Xiaofang Hu,A Memristive Multilayer Cellular Neural Network With Applications to Image Processing.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn28.html#HuFDL17,https://doi.org/10.1109/TNNLS.2016.2552640 +Derrick Takeshi Mirikitani,Recursive Bayesian recurrent neural networks for time-series modeling.,2010,21,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn21.html#MirikitaniN10,https://doi.org/10.1109/TNN.2009.2036174 +Xing-Bao Gao,Stability and Convergence Analysis for a Class of Neural Networks.,2011,22,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn22.html#GaoL11,https://doi.org/10.1109/TNN.2011.2167760 +Huaguang Zhang,Synchronization Analysis and Design of Coupled Boolean Networks Based on Periodic Switching Sequences.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn27.html#ZhangTWH16,https://doi.org/10.1109/TNNLS.2015.2499446 +Jen-Dong Yuh,A multilevel neural network for A/D conversion.,1993,4,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn4.html#YuhN93,https://doi.org/10.1109/72.217190 +Yoshikazu Washizawa,Mahalanobis Distance on Extended Grassmann Manifolds for Variational Pattern Analysis.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn25.html#WashizawaH14,https://doi.org/10.1109/TNNLS.2014.2301178 +Vanessa Gómez-Verdejo,A Dynamically Adjusted Mixed Emphasis Method for Building Boosting Ensembles.,2008,19,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn19.html#Gomez-VerdejoAF08,https://doi.org/10.1109/TNN.2007.902723 +Eugene M. Izhikevich,Which model to use for cortical spiking neurons?,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#Izhikevich04,https://doi.org/10.1109/TNN.2004.832719 +Thomas L. Hemminger,Detection and classification of underwater acoustic transients using neural networks.,1994,5,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn5.html#HemmingerP94,https://doi.org/10.1109/72.317723 +Xiaolin Hu,Solving Generally Constrained Generalized Linear Variational Inequalities Using the General Projection Neural Networks.,2007,18,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn18.html#HuW07,https://doi.org/10.1109/TNN.2007.899753 +Ling Zhang,A geometrical representation of McCulloch-Pitts neural model and its applications.,1999,10,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn10.html#ZhangZ99,https://doi.org/10.1109/72.774263 +Anastasios Delopoulos,Invariant image classification using triple-correlation-based neural networks.,1994,5,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn5.html#DelopoulosTK94,https://doi.org/10.1109/72.286911 +Yuguang Fang,Dynamic analysis of a general class of winner-take-all competitive neural networks.,2010,21,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn21.html#FangCK10,https://doi.org/10.1109/TNN.2010.2041671 +Jang-Hyun Park,Direct adaptive controller for nonaffine nonlinear systems using self-structuring neural networks.,2005,16,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn16.html#ParkHKSP05,https://doi.org/10.1109/TNN.2004.841786 +Yang Gao,Dimensionality Reduction for Hyperspectral Data Based on Class-Aware Tensor Neighborhood Graph and Patch Alignment.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn26.html#GaoWCW15,https://doi.org/10.1109/TNNLS.2014.2339222 +Junxiu Liu,SPANNER: A Self-Repairing Spiking Neural Network Hardware Architecture.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#LiuHMMW18,https://doi.org/10.1109/TNNLS.2017.2673021 +Jovisa D. Zunic,On encoding and enumerating threshold functions.,2004,15,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn15.html#Zunic04,https://doi.org/10.1109/TNN.2004.824419 +Liying Ma,Application of adaptive constructive neural networks to image compression.,2002,13,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn13.html#MaK02,https://doi.org/10.1109/TNN.2002.1031943 +Kendrick Amezquita S.,Dynamic Surface Control for a Class of Nonlinear Feedback Linearizable Systems With Actuator Failures.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn28.html#SYBC17,https://doi.org/10.1109/TNNLS.2016.2572205 +Chenguang Yang,Neural Network-Based Motion Control of an Underactuated Wheeled Inverted Pendulum Model.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn25.html#YangLCX14,https://doi.org/10.1109/TNNLS.2014.2302475 +Chia-Yiu Maa,A two-phase optimization neural network.,1992,3,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn3.html#MaaS92a,https://doi.org/10.1109/72.165602 +Clive Cheong Took,Maintaining the Integrity of Sources in Complex Learning Systems: Intraference and the Correlation Preserving Transform.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn26.html#TookDM15,https://doi.org/10.1109/TNNLS.2014.2316175 +Krishna Kummamuru,Voronoi networks and their probability of misclassification.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn11.html#KummamuruTR00,https://doi.org/10.1109/72.883447 +Francesco Lampariello,Efficient training of RBF neural networks for pattern recognition.,2001,12,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn12.html#LamparielloS01,https://doi.org/10.1109/72.950152 +Anmin Zhu,A Neural Network Approach to Dynamic Task Assignment of Multirobots.,2006,17,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn17.html#ZhuY06,https://doi.org/10.1109/TNN.2006.875994 +Donq-Liang Lee,Improving the capacity of complex-valued neural networks with a modified gradient descent learning rule.,2001,12,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn12.html#Lee01,https://doi.org/10.1109/72.914540 +Jiabei Zeng,Dimensionality Reduction in Multiple Ordinal Regression.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#ZengLLXC18,https://doi.org/10.1109/TNNLS.2017.2752003 +Pratik Prabhanjan Brahma,Why Deep Learning Works: A Manifold Disentanglement Perspective.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn27.html#BrahmaWS16,https://doi.org/10.1109/TNNLS.2015.2496947 +Marco Gori,Inductive inference from noisy examples using the hybrid finite state filter.,1998,9,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn9.html#GoriMMS98,https://doi.org/10.1109/72.668898 +Manjeevan Seera,Power Quality Analysis Using a Hybrid Model of the Fuzzy Min-Max Neural Network and Clustering Tree.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn27.html#SeeraLLS16,https://doi.org/10.1109/TNNLS.2015.2502955 +Andreas König 0001,Interactive visualization and analysis of hierarchical neural projections for data mining.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn11.html#Konig00,https://doi.org/10.1109/72.846733 +Quan Guo,High-Order Measurements for Residual Classifiers.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn28.html#GuoZY17,https://doi.org/10.1109/TNNLS.2016.2515128 +Zongcheng Liu,Adaptive Neural Control for a Class of Pure-Feedback Nonlinear Systems via Dynamic Surface Technique.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn27.html#LiuDXLC16,https://doi.org/10.1109/TNNLS.2015.2462127 +Markus Rupp,Supervised learning of perceptron and output feedback dynamic networks: a feedback analysis via the small gain theorem.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#RuppS97,https://doi.org/10.1109/72.572100 +Huaguang Zhang,Synchronization for Coupled Neural Networks With Interval Delay: A Novel Augmented Lyapunov-Krasovskii Functional Method.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn24.html#ZhangGCL13,https://doi.org/10.1109/TNNLS.2012.2225444 +Weimin Liu,Voiced-speech representation by an analog silicon model of the auditory periphery.,1992,3,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn3.html#LiuAG92,https://doi.org/10.1109/72.129420 +Junyi Wang,Sampled-Data Synchronization of Markovian Coupled Neural Networks With Mode Delays Based on Mode-Dependent LKF.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn28.html#WangZWL17,https://doi.org/10.1109/TNNLS.2016.2599263 +Damitha K. Ranaweera,Effect of probabilistic inputs on neural network-based electric load forecasting.,1996,7,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn7.html#RanaweeraKF96,https://doi.org/10.1109/72.548183 +Bruce A. Whitehead,Evolving space-filling curves to distribute radial basis functions over an input space.,1994,5,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn5.html#WhiteheadC94,https://doi.org/10.1109/72.265957 +Yeou-Fang Wang,On multiple training for bidirectional associative memory.,1990,1,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn1.html#WangCM90a,https://doi.org/10.1109/72.80253 +S. Ben-Yacoub,Fusion of face and speech data for person identity verification.,1999,10,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn10.html#Ben-YacoubAM99,https://doi.org/10.1109/72.788647 +Octavian Stan,A local linearized least squares algorithm for training feedforward neural networks.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn11.html#StanK00,https://doi.org/10.1109/72.839017 +W. Chang,Empirical results of using back-propagation neural networks to separate single echoes from multiple echoes.,1993,4,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn4.html#ChangBC93,https://doi.org/10.1109/72.286895 +Yoshihiko Horio,Neuron-synapse IC chip-set for large-scale chaotic neural networks.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#HorioAY03,https://doi.org/10.1109/TNN.2003.816349 +Yuan-Xin Li,Model-Based Adaptive Event-Triggered Control of Strict-Feedback Nonlinear Systems.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#LiY18a,https://doi.org/10.1109/TNNLS.2017.2650238 +Sandro Ridella,K-winner machines for pattern classification.,2001,12,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn12.html#RidellaRZ01,https://doi.org/10.1109/72.914531 +Joaquin Sitte,Characterization of Analog Local Cluster Neural Network Hardware for Control.,2007,18,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn18.html#SitteZR07,https://doi.org/10.1109/TNN.2007.899518 +James C. Bezdek,Numerical convergence and interpretation of the fuzzy c-shells clustering algorithm.,1992,3,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn3.html#BezdekH92,https://doi.org/10.1109/72.159067 +Chris M. Roadknight,Modeling complex environmental data.,1997,8,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn8.html#RoadknightBMP97,https://doi.org/10.1109/72.595883 +Wei Wu,Deterministic convergence of an online gradient method for BP neural networks.,2005,16,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn16.html#WuFLX05,https://doi.org/10.1109/TNN.2005.844903 +Anastasios D. Doulamis,An adaptable neural-network model for recursive nonlinear traffic prediction and modeling of MPEG video sources.,2003,14,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn14.html#DoulamisDK03,https://doi.org/10.1109/TNN.2002.806645 +Günhan Dündar,Authors' Reply.,1998,9,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn9.html#DundarR98,https://doi.org/10.1109/TNN.1998.701187 +Hans Christian Andersen,Single net indirect learning architecture.,1994,5,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn5.html#AndersenTT94,https://doi.org/10.1109/72.329701 +Dong-Chul Park,An adaptively trained neural network.,1991,2,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn2.html#ParkEM91,https://doi.org/10.1109/72.97910 +Emrah Ergul,Clustering Through Hybrid Network Architecture With Support Vectors.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn28.html#ErgulAAE17,https://doi.org/10.1109/TNNLS.2016.2542059 +Q. Li,Study of a Fast Discriminative Training Algorithm for Pattern Recognition.,2006,17,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn17.html#LiJ06,https://doi.org/10.1109/TNN.2006.875992 +R. C. Lacher,Back-propagation learning in expert networks.,1992,3,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn3.html#LacherHK92,https://doi.org/10.1109/72.105418 +Suttipan Limanond,Neural network-based control design: an LMI approach.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#LimanondS98,https://doi.org/10.1109/72.728392 +Ting-Li Chien,Stability and Almost Disturbance Decoupling Analysis of Nonlinear System Subject to Feedback Linearization and Feedforward Neural Network Controller.,2008,19,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn19.html#ChienCHL08,https://doi.org/10.1109/TNN.2008.2000207 +Yoonsuck Choe,The role of temporal parameters in a thalamocortical model of analogy.,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#Choe04,https://doi.org/10.1109/TNN.2004.832728 +Yi-Jen Wang,Runge-Kutta neural network for identification of dynamical systems in high accuracy.,1998,9,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn9.html#WangL98,https://doi.org/10.1109/72.661124 +Jar-Shone Ker,Hardware implementation of CMAC neural network with reduced storage requirement.,1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#KerKWL97,https://doi.org/10.1109/72.641476 +Satish Kumar,Memory annihilation of structured maps in bidirectional associative memories.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn11.html#Kumar00,https://doi.org/10.1109/72.857783 +Huaguang Zhang,LQR-Based Optimal Distributed Cooperative Design for Linear Discrete-Time Multiagent Systems.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn28.html#ZhangFLL17,https://doi.org/10.1109/TNNLS.2015.2490072 +Yao Chen 0003,Convergence Rate for Discrete-Time Multiagent Systems With Time-Varying Delays and General Coupling Coefficients.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn27.html#ChenHLL16,https://doi.org/10.1109/TNNLS.2015.2473690 +R. Wang,Phase Synchronization Motion and Neural Coding in Dynamic Transmission of Neural Information.,2011,22,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn22.html#WangZQC11,https://doi.org/10.1109/TNN.2011.2119377 +Mojtaba Nayyeri,Universal Approximation by Using the Correntropy Objective Function.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#NayyeriYMR18,https://doi.org/10.1109/TNNLS.2017.2753725 +Hong-Jie Xing,Two-Phase Construction of Multilayer Perceptrons Using Information Theory.,2009,20,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn20.html#XingH09,https://doi.org/10.1109/TNN.2008.2005604 +Teuvo Kohonen,Self organization of a massive document collection.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn11.html#KohonenKLSHPS00,https://doi.org/10.1109/72.846729 +Young C. Yoon,LIF and Simplified SRM Neurons Encode Signals Into Spikes via a Form of Asynchronous Pulse Sigma-Delta Modulation.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn28.html#Yoon17,https://doi.org/10.1109/TNNLS.2016.2526029 +Chang-Yuan Cheng,Multistability for Delayed Neural Networks via Sequential Contracting.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn26.html#ChengLST15,https://doi.org/10.1109/TNNLS.2015.2404801 +Takayuki Yamada,Neural network controller using autotuning method for nonlinear functions.,1992,3,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn3.html#YamadaY92,https://doi.org/10.1109/72.143373 +Nikolai S. Rubanov,The layer-wise method and the backpropagation hybrid approach to learning a feedforward neural network.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn11.html#Rubanov00,https://doi.org/10.1109/72.839001 +Constantinos Constantinopoulos,Unsupervised Learning of Gaussian Mixtures Based on Variational Component Splitting.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#ConstantinopoulosL07,https://doi.org/10.1109/TNN.2006.891114 +Kumpati S. Narendra,Gradient methods for the optimization of dynamical systems containing neural networks.,1991,2,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn2.html#NarendraP91,https://doi.org/10.1109/72.80336 +Vladimir Cherkassky,Model complexity control for regression using VC generalization bounds.,1999,10,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn10.html#CherkasskySMV99,https://doi.org/10.1109/72.788648 +Xing-Bao Gao,A New Projection-Based Neural Network for Constrained Variational Inequalities.,2009,20,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn20.html#GaoL09,https://doi.org/10.1109/TNN.2008.2006263 +Jian Hou,Feature Combination and the kNN Framework in Object Classification.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn27.html#HouGXQ16,https://doi.org/10.1109/TNNLS.2015.2461552 +Sylvain Lespinats,DD-HDS: A Method for Visualization and Exploration of High-Dimensional Data.,2007,18,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn18.html#LespinatsVGF07,https://doi.org/10.1109/TNN.2007.891682 +Nicolaos B. Karayiannis,On the construction and training of reformulated radial basis function neural networks.,2003,14,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn14.html#KarayiannisR03a,https://doi.org/10.1109/TNN.2003.813841 +Dongyue Chen,Spatio-Temporal Adaptation in the Unsupervised Development of Networked Visual Neurons.,2009,20,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn20.html#ChenZW09,https://doi.org/10.1109/TNN.2009.2015082 +Amir Dembo,Model-free distributed learning.,1990,1,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn1.html#DemboK90,https://doi.org/10.1109/72.80205 +Michael Kuperstein 0002,Neural controller for adaptive movements with unforeseen payloads.,1990,1,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn1.html#0002W90,https://doi.org/10.1109/72.80213 +Robert H. Kewley,Data strip mining for the virtual design of pharmaceuticals with neural networks.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn11.html#KewleyEB00,https://doi.org/10.1109/72.846738 +Feiping Nie,Spectral Embedded Clustering: A Framework for In-Sample and Out-of-Sample Spectral Clustering.,2011,22,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn22.html#NieZTXZ11,https://doi.org/10.1109/TNN.2011.2162000 +Yurong Liu,Partial-Nodes-Based State Estimation for Complex Networks With Unbounded Distributed Delays.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#LiuWYA18,https://doi.org/10.1109/TNNLS.2017.2740400 +Davide Anguita,A Deep Connection Between the Vapnik-Chervonenkis Entropy and the Rademacher Complexity.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn25.html#AnguitaGOR14,https://doi.org/10.1109/TNNLS.2014.2307359 +Sangwoo Moon,Hybrid Dimensionality Reduction Method Based on Support Vector Machine and Independent Component Analysis.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn23.html#MoonQ12,https://doi.org/10.1109/TNNLS.2012.2189581 +Koichiro Yamauchi 0001,Incremental learning methods with retrieving of interfered patterns.,1999,10,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn10.html#YamauchiYI99,https://doi.org/10.1109/72.809080 +Frank C. Hoppensteadt,Pattern recognition via synchronization in phase-locked loop neural networks.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn11.html#HoppensteadtI00,https://doi.org/10.1109/72.846744 +Arvind Srinivasan,Hopfield/ART-1 neural network-based fault detection and isolation.,1994,5,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn5.html#SrinivasanB94,https://doi.org/10.1109/72.329685 +Renquan Lu,Synchronization of General Chaotic Neural Networks With Nonuniform Sampling and Packet Missing: A Switched System Approach.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn29.html#LuSSWL18,https://doi.org/10.1109/TNNLS.2016.2636163 +Simone G. O. Fiori,Riemannian-Gradient-Based Learning on the Complex Matrix-Hypersphere.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#Fiori11a,https://doi.org/10.1109/TNN.2011.2168537 +Giacomo Capizzi,Innovative Second-Generation Wavelets Construction With Recurrent Neural Networks for Solar Radiation Forecasting.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn23.html#CapizziNB12,https://doi.org/10.1109/TNNLS.2012.2216546 +Yuval Tassa,Least Squares Solutions of the HJB Equation With Neural Network Value-Function Approximators.,2007,18,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn18.html#TassaE07,https://doi.org/10.1109/TNN.2007.899249 +Deming Yuan,Randomized Gradient-Free Method for Multiagent Optimization Over Time-Varying Networks.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn26.html#YuanH15,https://doi.org/10.1109/TNNLS.2014.2336806 +Sungzoon Cho,Reliable roll force prediction in cold mill using multiple neural networks.,1997,8,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn8.html#ChoCY97,https://doi.org/10.1109/72.595885 +Michael A. H. Dempster,Computational learning techniques for intraday FX trading using popular technical indicators.,2001,12,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn12.html#DempsterPRT01,https://doi.org/10.1109/72.935088 +Vanessa Gómez-Verdejo,Support Vector Machines With Constraints for Sparsity in the Primal Parameters.,2011,22,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn22.html#Gomez-VerdejoMALM11,https://doi.org/10.1109/TNN.2011.2148727 +Congyan Lang,Dual Low-Rank Pursuit: Learning Salient Features for Saliency Detection.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn27.html#LangFFWY16,https://doi.org/10.1109/TNNLS.2015.2513393 +Shigeo Sato,Implementation of a new neurochip using stochastic logic.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#SatoNAKN03,https://doi.org/10.1109/TNN.2003.816341 +Yong He 0003,Stability Analysis for Neural Networks With Time-Varying Interval Delay.,2007,18,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn18.html#HeLRW07,https://doi.org/10.1109/TNN.2007.903147 +Rafael B. Fierro,Control of a nonholonomic mobile robot using neural networks.,1998,9,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn9.html#FierroL98,https://doi.org/10.1109/72.701173 +Rui Zhang 0017,Regularized Class-Specific Subspace Classifier.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn28.html#ZhangNL17,https://doi.org/10.1109/TNNLS.2016.2598744 +Srimanta Pal,A multilayer self-organizing model for convex-hull computation.,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#PalDP01,https://doi.org/10.1109/72.963770 +Hamed Rezaee,Adaptive Consensus Control of Nonlinear Multiagent Systems With Unknown Control Directions Under Stochastic Topologies.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#RezaeeA18,https://doi.org/10.1109/TNNLS.2017.2730821 +Jian-Bo Yang,Feature Selection for MLP Neural Network: The Use of Random Permutation of Probabilistic Outputs.,2009,20,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn20.html#YangSOL09,https://doi.org/10.1109/TNN.2009.2032543 +C. L. Philip Chen,A New Learning Algorithm for a Fully Connected Neuro-Fuzzy Inference System.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn25.html#ChenWWC14,https://doi.org/10.1109/TNNLS.2014.2306915 +Derong Liu,Editorial A Successful Change From TNN to TNNLS and a Very Successful Year.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn24.html#LiuAABBCEFGHHLLMSVWXX13,https://doi.org/10.1109/TNNLS.2012.2232773 +Ya-Jun Qu,Generalized Constraint Neural Network Regression Model Subject to Linear Priors.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#QuH11,https://doi.org/10.1109/TNN.2011.2167348 +Stephen P. DeWeerth,A simple neuron servo.,1991,2,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn2.html#DeWeerthNMA91,https://doi.org/10.1109/72.80335 +Jing-Dong Hwang,Stability analysis of neural-network interconnected systems.,2003,14,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn14.html#HwangH03,https://doi.org/10.1109/TNN.2002.806643 +Chuanhou Gao,Data-Driven Modeling Based on Volterra Series for Multidimensional Blast Furnace System.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#GaoJLCS11,https://doi.org/10.1109/TNN.2011.2175945 +Tomohisa Hayakawa,Neural network adaptive control for nonlinear nonnegative dynamical systems.,2005,16,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn16.html#HayakawaHHC05,https://doi.org/10.1109/TNN.2004.841791 +Nikolaos Gkalelis,Mixture Subclass Discriminant Analysis Link to Restricted Gaussian Model and Other Generalizations.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn24.html#GkalelisMKS13,https://doi.org/10.1109/TNNLS.2012.2216545 +Emilio Soria-Olivas,BELM: Bayesian Extreme Learning Machine.,2011,22,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn22.html#Soria-OlivasGMVMMS11,https://doi.org/10.1109/TNN.2010.2103956 +Yujian Li,Multiconlitron: A General Piecewise Linear Classifier.,2011,22,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn22.html#LiLYFL11,https://doi.org/10.1109/TNN.2010.2094624 +A. Steven Younger,Fixed-weight on-line learning.,1999,10,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn10.html#YoungerCC99,https://doi.org/10.1109/72.750553 +Najwa Sara Merchawi,A probabilistic model for the fault tolerance of multilayer perceptrons.,1996,7,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn7.html#MerchawiKD96,https://doi.org/10.1109/72.478405 +Hua Yang,Exponential stability and oscillation of Hopfield graded response neural network.,1994,5,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn5.html#YangD94,https://doi.org/10.1109/72.317724 +Carolina Chang,Using sensor habituation in mobile robots to reduce oscillatory movements in narrow corridors.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#Chang05,https://doi.org/10.1109/TNN.2005.853714 +Kenji Nagata,Exchange Monte Carlo Sampling From Bayesian Posterior for Singular Learning Machines.,2008,19,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn19.html#NagataW08,https://doi.org/10.1109/TNN.2008.2000202 +John A. Lansner,An analog CMOS chip set for neural networks with arbitrary topologies.,1993,4,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn4.html#LansnerL93,https://doi.org/10.1109/72.217186 +Zeeman Z. Zhang,Structure and properties of generalized adaptive neural filters for signal enhancement.,1996,7,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn7.html#ZhangA96,https://doi.org/10.1109/72.508929 +Christian Schittenkopf,Risk-neutral density extraction from option prices: improved pricing with mixture density networks.,2001,12,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn12.html#SchittenkopfD01,https://doi.org/10.1109/72.935085 +Mohammed Mestari,An analog neural network implementation in fixed time of adjustable-order statistic filters and applications.,2004,15,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn15.html#Mestari04,https://doi.org/10.1109/TNN.2003.820656 +Bilal Piot,Bridging the Gap Between Imitation Learning and Inverse Reinforcement Learning.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn28.html#PiotGP17,https://doi.org/10.1109/TNNLS.2016.2543000 +Marco Gori,Comments on local minima free conditions in multilayer perceptrons.,1998,9,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn9.html#GoriT98,https://doi.org/10.1109/72.712191 +Yue Fu,Neural-Network-Based Nonlinear Adaptive Dynamical Decoupling Control.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#FuC07,https://doi.org/10.1109/TNN.2007.891588 +Youshen Xia,A new neural network for solving linear and quadratic programming problems.,1996,7,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn7.html#Xia96a,https://doi.org/10.1109/72.548188 +Nikolay V. Manyakov,Decoding Stimulus-Reward Pairing From Local Field Potentials Recorded From Monkey Visual Cortex.,2010,21,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn21.html#ManyakovVH10,https://doi.org/10.1109/TNN.2010.2078834 +Zuowei Cai,Finite-Time Stabilization of Delayed Memristive Neural Networks: Discontinuous State-Feedback and Adaptive Control Approach.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#CaiH18,https://doi.org/10.1109/TNNLS.2017.2651023 +Ziting Chen,Adaptive Neural Control of Uncertain MIMO Nonlinear Systems With State and Input Constraints.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn28.html#ChenLC17,https://doi.org/10.1109/TNNLS.2016.2538779 +Fabrizio Angiulli,Scaling up support vector machines using nearest neighbor condensation.,2010,21,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn21.html#AngiulliA10,https://doi.org/10.1109/TNN.2009.2039227 +Devis Tuia,Explicit Recursive and Adaptive Filtering in Reproducing Kernel Hilbert Spaces.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn25.html#TuiaMRMC14,https://doi.org/10.1109/TNNLS.2013.2293871 +Haifeng Liu,Local Coordinate Concept Factorization for Image Representation.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn25.html#LiuYYWL14,https://doi.org/10.1109/TNNLS.2013.2286093 +Liang Jin,Equilibrium capacity of analog feedback neural networks.,1996,7,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn7.html#JinG96,https://doi.org/10.1109/72.501736 +Yves Grandvalet,Anisotropic noise injection for input variables relevance determination.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn11.html#Grandvalet00,https://doi.org/10.1109/72.883393 +Efraín Mayhua-López,Real AdaBoost With Gate Controlled Fusion.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn23.html#Mayhua-LopezGF12,https://doi.org/10.1109/TNNLS.2012.2219318 +Mahdi Jalili,Enhancing Synchronizability of Diffusively Coupled Dynamical Networks: A Survey.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn24.html#Jalili13,https://doi.org/10.1109/TNNLS.2013.2250998 +Huai-Ning Wu,Adaptive Neural Control Design for Nonlinear Distributed Parameter Systems With Persistent Bounded Disturbances.,2009,20,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn20.html#WuL09,https://doi.org/10.1109/TNN.2009.2028887 +Adrian Horzyk,Integration of Semantic and Episodic Memories.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn28.html#HorzykSG17,https://doi.org/10.1109/TNNLS.2017.2728203 +Ryad Benosman,Asynchronous Event-Based Hebbian Epipolar Geometry.,2011,22,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn22.html#BenosmanIRP11,https://doi.org/10.1109/TNN.2011.2167239 +Michael J. Healy,Guaranteed two-pass convergence for supervised and inferential learning.,1998,9,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn9.html#HealyC98,https://doi.org/10.1109/72.655041 +Frans Coetzee,On the uniqueness of weights in single-layer perceptrons.,1996,7,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn7.html#CoetzeeS96a,https://doi.org/10.1109/72.485635 +Max Mignotte,MDS-Based Multiresolution Nonlinear Dimensionality Reduction Model for Color Image Segmentation.,2011,22,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn22.html#Mignotte11,https://doi.org/10.1109/TNN.2010.2101614 +Ponnuthurai N. Suganthan,Hopfield network with constraint parameter adaptation for overlapped shape recognition.,1999,10,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn10.html#SuganthanTM99,https://doi.org/10.1109/72.750576 +Ron Shonkwiler,Separating the vertices of N-cubes by hyperplanes and its application to artificial neural networks.,1993,4,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn4.html#Shonkwiler93,https://doi.org/10.1109/72.207621 +Xian-Ming Zhang,Global Asymptotic Stability for a Class of Generalized Neural Networks With Interval Time-Varying Delays.,2011,22,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn22.html#ZhangH11,https://doi.org/10.1109/TNN.2011.2147331 +Hongbin Sun 0002,Automatic Learning of Fine Operating Rules for Online Power System Security Control.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn27.html#SunZWWJGZW16,https://doi.org/10.1109/TNNLS.2015.2390621 +Yingduo Han,Artificial neural networks controlled fast valving in a power generation plant.,1997,8,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn8.html#HanXWCT97,https://doi.org/10.1109/72.557689 +Lasse Holmström,Neural and statistical classifiers-taxonomy and two case studies.,1997,8,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn8.html#HolmstromKLO97,https://doi.org/10.1109/72.554187 +Simeon A. Bamford,Large developing receptive fields using a distributed and locally reprogrammable address-event receiver.,2010,21,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn21.html#BamfordMW10,https://doi.org/10.1109/TNN.2009.2036912 +Liefeng Bo,Training Hard-Margin Support Vector Machines Using Greedy Stagewise Algorithm.,2008,19,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn19.html#BoWJ08,https://doi.org/10.1109/TNN.2008.2000576 +Marcos Eduardo Valle,A Class of Sparsely Connected Autoassociative Morphological Memories for Large Color Images.,2009,20,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn20.html#Valle09,https://doi.org/10.1109/TNN.2009.2020849 +Anuradha M. Annaswamy,Theta-adaptive neural networks: a new approach to parameter estimation.,1996,7,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn7.html#AnnaswamyY96,https://doi.org/10.1109/72.508934 +Daniel S. Yeung,MLPNN Training via a Multiobjective Optimization of Training Error and Stochastic Sensitivity.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn27.html#YeungLNC16,https://doi.org/10.1109/TNNLS.2015.2431251 +Jinde Cao,Exponential Stability of Discrete-Time Genetic Regulatory Networks With Delays.,2008,19,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn19.html#CaoR08,https://doi.org/10.1109/TNN.2007.911748 +Shuai Li 0002,A Novel Recurrent Neural Network for Manipulator Control With Improved Noise Tolerance.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#LiWR18,https://doi.org/10.1109/TNNLS.2017.2672989 +Jinling Liang,State Estimation for Coupled Uncertain Stochastic Networks With Missing Measurements and Time-Varying Delays: The Discrete-Time Case.,2009,20,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn20.html#LiangWL09,https://doi.org/10.1109/TNN.2009.2013240 +Wei Xue,Learning a Coupled Linearized Method in Online Setting.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn28.html#XueZ17,https://doi.org/10.1109/TNNLS.2016.2514413 +Jenq-Neng Hwang,The cascade-correlation learning: a projection pursuit learning perspective.,1996,7,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn7.html#HwangYLJ96,https://doi.org/10.1109/72.485631 +Chunlin Chen,Fidelity-Based Probabilistic Q-Learning for Control of Quantum Systems.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn25.html#ChenDLCT14,https://doi.org/10.1109/TNNLS.2013.2283574 +Witold Pedrycz,OR/AND neurons and the development of interpretable logic models.,2006,17,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn17.html#PedryczRL06,https://doi.org/10.1109/TNN.2006.873285 +Qinglai Wei,Infinite Horizon Self-Learning Optimal Control of Nonaffine Discrete-Time Nonlinear Systems.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn26.html#WeiLY15,https://doi.org/10.1109/TNNLS.2015.2401334 +Paulo J. G. Lisboa,Partial Logistic Artificial Neural Network for Competing Risks Regularized With Automatic Relevance Determination.,2009,20,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn20.html#LisboaEJAAETABB09,https://doi.org/10.1109/TNN.2009.2023654 +Nicolaos B. Karayiannis,Soft learning vector quantization and clustering algorithms based on ordered weighted aggregation operators.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn11.html#Karayiannis00,https://doi.org/10.1109/72.870042 +Jiun-Hung Chen,Fuzzy kernel perceptron.,2002,13,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn13.html#ChenC02,https://doi.org/10.1109/TNN.2002.804311 +Zongben Xu,Some efficient strategies for improving the eigenstructure method in synthesis of feedback neural networks.,1996,7,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn7.html#XuHK96,https://doi.org/10.1109/72.478410 +Yaniv Benbenisti,Fixed bit-rate image compression using a parallel-structure multilayer neural network.,1999,10,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn10.html#BenbenistiKMS99,https://doi.org/10.1109/72.788655 +Oh-Min Kwon,Stability for Neural Networks With Time-Varying Delays via Some New Approaches.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn24.html#KwonPLPC13,https://doi.org/10.1109/TNNLS.2012.2224883 +Dongbin Zhao,Special Issue on Deep Reinforcement Learning and Adaptive Dynamic Programming.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#ZhaoLLPS18,https://doi.org/10.1109/TNNLS.2018.2818878 +P. P. Raghu,Supervised texture classification using a probabilistic neural network and constraint satisfaction model.,1998,9,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn9.html#RaghuY98,https://doi.org/10.1109/72.668893 +Sri Garimella,Factor Analysis of Auto-Associative Neural Networks With Application in Speaker Verification.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn24.html#GarimellaH13,https://doi.org/10.1109/TNNLS.2012.2236652 +Santanu Ghorai,Discriminant analysis for fast multiclass data classification through regularized kernel function approximation.,2010,21,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn21.html#GhoraiMD10,https://doi.org/10.1109/TNN.2010.2046646 +Sujing Wang,Sparse Tensor Discriminant Color Space for Face Verification.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn23.html#WangYSPSZ12,https://doi.org/10.1109/TNNLS.2012.2191620 +Xinxing Xu,Distance Metric Learning Using Privileged Information for Face Verification and Person Re-Identification.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn26.html#XuLX15,https://doi.org/10.1109/TNNLS.2015.2405574 +Sung Jin Yoo,Adaptive Neural Control for a Class of Strict-Feedback Nonlinear Systems With State Time Delays.,2009,20,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn20.html#YooPC09,https://doi.org/10.1109/TNN.2009.2022159 +Jose G. Moreno-Torres,Study on the Impact of Partition-Induced Dataset Shift on k -Fold Cross-Validation.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn23.html#Moreno-TorresSH12,https://doi.org/10.1109/TNNLS.2012.2199516 +Eric A. Rying,Focused local learning with wavelet neural networks.,2002,13,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn13.html#RyingBL02,https://doi.org/10.1109/72.991417 +Vahram Stepanyan,Asymptotic Tracking of Uncertain Systems With Continuous Control Using Adaptive Bounding.,2009,20,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn20.html#StepanyanK09,https://doi.org/10.1109/TNN.2009.2023214 +Tze-Yui Ho,Efficient Relighting of RBF-Based Illumination Adjustable Images.,2009,20,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn20.html#HoLLW09,https://doi.org/10.1109/TNN.2009.2032765 +Meiqin Liu,Delayed Standard Neural Network Models for Control Systems.,2007,18,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn18.html#Liu07,https://doi.org/10.1109/TNN.2007.894084 +Emad W. Saad,Query-based learning for aerospace applications.,2003,14,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn14.html#SaadCVW03,https://doi.org/10.1109/TNN.2003.820826 +Daizhan Cheng,Evolutionarily Stable Strategy of Networked Evolutionary Games.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn25.html#ChengXQ14,https://doi.org/10.1109/TNNLS.2013.2293149 +Bruce D. Calvert,Another K-winners-take-all analog neural network.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn11.html#CalvertM00,https://doi.org/10.1109/72.857764 +Jin-Liang Wang,Analysis and Control of Output Synchronization in Directed and Undirected Complex Dynamical Networks.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#WangWHRWZ18,https://doi.org/10.1109/TNNLS.2017.2726158 +Xing-Bao Gao,A Novel Neural Network for Generally Constrained Variational Inequalities.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn28.html#GaoL17,https://doi.org/10.1109/TNNLS.2016.2570257 +Xavier Lagorce,Asynchronous Event-Based Multikernel Algorithm for High-Speed Visual Features Tracking.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn26.html#LagorceMIFB15,https://doi.org/10.1109/TNNLS.2014.2352401 +Wen-Jing Li,Hopfield neural networks for affine invariant matching.,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#LiL01,https://doi.org/10.1109/72.963776 +Wen-June Wang,A modified bidirectional decoding strategy based on the BAM structure.,1993,4,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn4.html#WangL93,https://doi.org/10.1109/72.238325 +Lixian Zhang,Energy-to-Peak State Estimation for Markov Jump RNNs With Time-Varying Delays via Nonsynchronous Filter With Nonstationary Mode Transitions.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn26.html#ZhangZZ15,https://doi.org/10.1109/TNNLS.2014.2382093 +Griff L. Bilbro,Mean field annealing: a formalism for constructing GNC-like algorithms.,1992,3,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn3.html#BilbroSGG92,https://doi.org/10.1109/72.105426 +Mark D. Hanes,Acoustic-to-phonetic mapping using recurrent neural networks.,1994,5,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn5.html#HanesAK94,https://doi.org/10.1109/72.298235 +Manuel Fernández Delgado,Direct Parallel Perceptrons (DPPs): Fast Analytical Calculation of the Parallel Perceptrons Weights With Margin Control for Classification Tasks.,2011,22,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn22.html#DelgadoRCA11,https://doi.org/10.1109/TNN.2011.2169086 +Abd-Krim Seghouane,Model Selection Criteria for Image Restoration.,2009,20,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn20.html#Seghouane09,https://doi.org/10.1109/TNN.2009.2024146 +Sang-Hoon Oh,"Corrections to ""a new error function at hidden layers for fast training of multilayer perceptrons"".",1999,10,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn10.html#OhL99a,https://doi.org/10.1109/TNN.1999.809102 +Alicia Guerrero-Curieses,Local estimation of posterior class probabilities to minimize classification errors.,2004,15,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn15.html#Guerrero-CuriesesCAF04,https://doi.org/10.1109/TNN.2004.824421 +Jack S. N. Jean,Weight smoothing to improve network generalization.,1994,5,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn5.html#JeanW94,https://doi.org/10.1109/72.317727 +Nobuo Funabiki,A gradual neural-network approach for frequency assignment in satellite communication systems.,1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#FunabikiN97a,https://doi.org/10.1109/72.641459 +Daqing Guo,Self-sustained irregular activity in 2-D small-world networks of excitatory and inhibitory neurons.,2010,21,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn21.html#GuoL10,https://doi.org/10.1109/TNN.2010.2044419 +Aristeidis Diplaros,A Spatially Constrained Generative Model and an EM Algorithm for Image Segmentation.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#DiplarosVG07,https://doi.org/10.1109/TNN.2007.891190 +Min Wang,Enhanced FMAM based on empirical kernel map.,2005,16,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn16.html#WangC05,https://doi.org/10.1109/TNN.2005.847839 +Vasilis Z. Marmarelis,Volterra models and three-layer perceptrons.,1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#MarmarelisZ97,https://doi.org/10.1109/72.641465 +Chunhua Feng,Stability analysis of bidirectional associative memory networks with time delays.,2003,14,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn14.html#FengP03,https://doi.org/10.1109/TNN.2003.820829 +Derong Liu 0001,A self-learning call admission control scheme for CDMA cellular networks.,2005,16,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn16.html#LiuZZ05,https://doi.org/10.1109/TNN.2005.853408 +Eyal Kolman,Are artificial neural networks white boxes?,2005,16,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn16.html#KolmanM05,https://doi.org/10.1109/TNN.2005.849843 +Silvia Ferrari,A Constrained Optimization Approach to Preserving Prior Knowledge During Incremental Training.,2008,19,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn19.html#FerrariJ08,https://doi.org/10.1109/TNN.2007.915108 +Piotr Antonik,Online Training of an Opto-Electronic Reservoir Computer Applied to Real-Time Channel Equalization.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn28.html#AntonikDHSHM17,https://doi.org/10.1109/TNNLS.2016.2598655 +Sheng Uei Guan,Reduced Pattern Training Based on Task Decomposition Using Pattern Distributor.,2007,18,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn18.html#GuanBN07,https://doi.org/10.1109/TNN.2007.899711 +Chalapathy Neti,Maximally fault tolerant neural networks.,1992,3,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn3.html#NetiSY92,https://doi.org/10.1109/72.105414 +Mayer Aladjem,Recursive training of neural networks for classification.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn11.html#Aladjem00,https://doi.org/10.1109/72.839018 +Huaguang Zhang,Optimal Guaranteed Cost Sliding Mode Control for Constrained-Input Nonlinear Systems With Matched and Unmatched Disturbances.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#ZhangQXC18,https://doi.org/10.1109/TNNLS.2018.2791419 +Gerhard X. Ritter,Lattice algebra approach to single-neuron computation.,2003,14,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn14.html#RitterU03,https://doi.org/10.1109/TNN.2003.809427 +Roman Ilin,Unsupervised Learning of Categorical Data With Competing Models.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn23.html#Ilin12,https://doi.org/10.1109/TNNLS.2012.2213266 +Isabelle Rivals,Nonlinear internal model control using neural networks: application to processes with delay and design issues.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn11.html#RivalsP00,https://doi.org/10.1109/72.822512 +Bin Xu 0003,Global Neural Dynamic Surface Tracking Control of Strict-Feedback Systems With Application to Hypersonic Flight Vehicle.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn26.html#XuYP15,https://doi.org/10.1109/TNNLS.2015.2456972 +Isaac Chairez,Wavelet Differential Neural Network Observer.,2009,20,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn20.html#Chairez09,https://doi.org/10.1109/TNN.2009.2024203 +Ju-Ferr Yang,Winner-take-all neural networks using the highest threshold.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn11.html#YangC00,https://doi.org/10.1109/72.822521 +Nojun Kwak,Nonlinear Projection Trick in Kernel Methods: An Alternative to the Kernel Trick.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn24.html#Kwak13,https://doi.org/10.1109/TNNLS.2013.2272292 +Athanasios V. Vasilakos,ANASA-a stochastic reinforcement algorithm for real-valued neural computation.,1996,7,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn7.html#VasilakosL96,https://doi.org/10.1109/72.508927 +J. R. Noriega,A direct adaptive neural-network control for unknown nonlinear systems and its application.,1998,9,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn9.html#NoriegaW98,https://doi.org/10.1109/72.655026 +Seul Jung,Neural Network Control for Position Tracking of a Two-Axis Inverted Pendulum System: Experimental Studies.,2007,18,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn18.html#JungCH07,https://doi.org/10.1109/TNN.2007.899128 +Gary G. Yen,Eigenstructure bidirectional associative memory: an effective synthesis procedure.,1995,6,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn6.html#Yen95,https://doi.org/10.1109/72.410378 +Philip Heng Wai Leong,A low-power VLSI arrhythmia classifier.,1995,6,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn6.html#LeongJ95,https://doi.org/10.1109/72.471380 +Alvaro A. Cruz-Cabrara,Reinforcement and backpropagation training for an optical neural network using self-lensing effects.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn11.html#Cruz-CabraraYCBSS00,https://doi.org/10.1109/72.883476 +William J. Wolfe,Harmonic analysis of homogeneous networks.,1995,6,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn6.html#WolfeRCAR95,https://doi.org/10.1109/72.471371 +Mathukumalli Vidyasagar,Location and stability of the high-gain equilibria of nonlinear neural networks.,1993,4,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn4.html#Vidyasagar93,https://doi.org/10.1109/72.238320 +Francisco X. Albizuri,The high-order Boltzmann machine: learned distribution and topology.,1995,6,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn6.html#AlbizuriDGTG95,https://doi.org/10.1109/72.377984 +Bin Hu,Dynamic Analysis of Hybrid Impulsive Delayed Neural Networks With Uncertainties.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#HuGQC18,https://doi.org/10.1109/TNNLS.2017.2764003 +Rudy Setiono,Neural-network feature selector.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#SetionoL97,https://doi.org/10.1109/72.572104 +Yong Gao,"Comments on ""Theoretical analysis of evolutionary algorithms with an infinite population size in continuous space. I. Basic properties of selection and mutation"" [and reply].",1998,9,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn9.html#GaoQP98,https://doi.org/10.1109/72.661129 +Gregory Ditzler,A Bootstrap Based Neyman-Pearson Test for Identifying Variable Importance.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn26.html#DitzlerPR15,https://doi.org/10.1109/TNNLS.2014.2320415 +Jie Gui,Supervised Discrete Hashing With Relaxation.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn29.html#GuiLSTT18,https://doi.org/10.1109/TNNLS.2016.2636870 +Chi-Sing Leung,Two regularizers for recursive least squared algorithms in feedforward multilayered neural networks.,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#LeungTC01,https://doi.org/10.1109/72.963768 +Tianheng Song,Kernel-Based Least Squares Temporal Difference With Gradient Correction.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn27.html#SongLCH16,https://doi.org/10.1109/TNNLS.2015.2424233 +Panos J. Antsaklis,Neural networks for control systems.,1990,1,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn1.html#Antsaklis90,https://doi.org/10.1109/72.80237 +Cristiano Cervellera,Distribution-Preserving Stratified Sampling for Learning Problems.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#CervelleraM18,https://doi.org/10.1109/TNNLS.2017.2706964 +Tomohisa Hayakawa,Passivity-based neural network adaptive output feedback control for nonlinear nonnegative dynamical systems.,2005,16,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn16.html#HayakawaHBH05,https://doi.org/10.1109/TNN.2004.841782 +Shigang Yue,Collision detection in complex dynamic scenes using an LGMD-based visual neural network with feature enhancement.,2006,17,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn17.html#YueR06,https://doi.org/10.1109/TNN.2006.873286 +Jen-Tzung Chien,Hierarchical Theme and Topic Modeling.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn27.html#Chien16,https://doi.org/10.1109/TNNLS.2015.2414658 +Nhamo Mtetwa,Precision constrained stochastic resonance in a feedforward neural network.,2005,16,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn16.html#MtetwaS05,https://doi.org/10.1109/TNN.2004.836195 +Thomas Blumensath,Directional Clustering Through Matrix Factorization.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn27.html#Blumensath16,https://doi.org/10.1109/TNNLS.2015.2505060 +Li-Xin Li,A Fast Algorithm for Nonnegative Matrix Factorization and Its Convergence.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn25.html#LiWZW14,https://doi.org/10.1109/TNNLS.2013.2296627 +Hidehiro Nakano,Grouping synchronization in a pulse-coupled network of chaotic spiking oscillators.,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#NakanoS04,https://doi.org/10.1109/TNN.2004.832807 +T. Asai,Analog integrated circuits for the Lotka-Volterra competitive neural networks.,1999,10,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn10.html#AsaiOY99,https://doi.org/10.1109/72.788661 +Xiaozhao Zhao,A Confident Information First Principle for Parameter Reduction and Model Selection of Boltzmann Machines.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#ZhaoHSL18,https://doi.org/10.1109/TNNLS.2017.2664100 +Li-Xin Wang,Cumulant-based parameter estimation using structured networks.,1991,2,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn2.html#WangM91,https://doi.org/10.1109/72.80292 +Xiwei Liu,Global Exponential Stability for Complex-Valued Recurrent Neural Networks With Asynchronous Time Delays.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn27.html#LiuC16,https://doi.org/10.1109/TNNLS.2015.2415496 +Ya Li,On Better Exploring and Exploiting Task Relationships in Multitask Learning: Joint Model and Feature Learning.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#LiTLT18,https://doi.org/10.1109/TNNLS.2017.2690683 +Yanjun Zhang,Adaptive Neural Network Based Control of Noncanonical Nonlinear Systems.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn27.html#ZhangTC16,https://doi.org/10.1109/TNNLS.2015.2461001 +Zhigang Zeng,Multistability of Neural Networks With Time-Varying Delays and Concave-Convex Characteristics.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn23.html#ZengZ12,https://doi.org/10.1109/TNNLS.2011.2179311 +Enno Littmann,Adaptive color segmentation-a comparison of neural and statistical methods.,1997,8,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn8.html#LittmannR97,https://doi.org/10.1109/72.554203 +Allan Kardec Barros,Estimation of speech embedded in a reverberant and noisy environment by independent component analysis and wavelets.,2002,13,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn13.html#BarrosRIO02,https://doi.org/10.1109/TNN.2002.1021889 +Mark French,A performance analysis of two approximate adaptive designs.,2005,16,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn16.html#French05,https://doi.org/10.1109/TNN.2005.844861 +Yan Meng,Modeling Activity-Dependent Plasticity in BCM Spiking Neural Networks With Application to Human Behavior Recognition.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#MengJY11,https://doi.org/10.1109/TNN.2011.2171044 +Camillo Gentile,An improved Voronoi-diagram-based neural net for pattern classification.,2001,12,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn12.html#GentileS01,https://doi.org/10.1109/72.950151 +Jin Tian,Learning Subspace-Based RBFNN Using Coevolutionary Algorithm for Complex Classification Tasks.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn27.html#TianLCF16,https://doi.org/10.1109/TNNLS.2015.2411615 +Guo-Xing Wen,Optimized Backstepping for Tracking Control of Strict-Feedback Systems.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#WenGT18,https://doi.org/10.1109/TNNLS.2018.2803726 +Luming Zhang,Learning a Probabilistic Topology Discovering Model for Scene Categorization.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn26.html#ZhangJXZL15,https://doi.org/10.1109/TNNLS.2014.2347398 +Mircea-Bogdan Radac,Application of IFT and SPSA to Servo System Control.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#RadacPPP11,https://doi.org/10.1109/TNN.2011.2173804 +Jacek Kowalski,0.8 and#956*m CMOS implementation of weighted-order statistic image filter based on cellular neural network architecture.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#Kowalski03,https://doi.org/10.1109/TNN.2003.816384 +Shlomo Geva,Adaptive nearest neighbor pattern classification.,1991,2,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn2.html#GevaS91,https://doi.org/10.1109/72.80344 +Yue Deng,Deep Direct Reinforcement Learning for Financial Signal Representation and Trading.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn28.html#DengBKRD17,https://doi.org/10.1109/TNNLS.2016.2522401 +Vassilis Vassiliades,Multiagent Reinforcement Learning: Spiking and Nonspiking Agents in the Iterated Prisoner's Dilemma.,2011,22,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn22.html#VassiliadesCC11,https://doi.org/10.1109/TNN.2011.2111384 +Tongliang Liu,On the Performance of Manhattan Nonnegative Matrix Factorization.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn27.html#LiuT16,https://doi.org/10.1109/TNNLS.2015.2458986 +Delu Zeng,Coarse-to-fine boundary location with a SOM-like method.,2010,21,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn21.html#ZengZX10,https://doi.org/10.1109/TNN.2009.2039493 +Jürgen Schmidhuber,Sequential neural text compression.,1996,7,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn7.html#SchmidhuberH96,https://doi.org/10.1109/72.478398 +A. Ravishankar Rao,Unsupervised Segmentation With Dynamical Units.,2008,19,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn19.html#RaoCPK08,https://doi.org/10.1109/TNN.2007.905852 +Peter Sussner,Gray-scale morphological associative memories.,2006,17,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn17.html#SussnerV06,https://doi.org/10.1109/TNN.2006.873280 +Roy L. Streit,Maximum likelihood training of probabilistic neural networks.,1994,5,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn5.html#StreitL94,https://doi.org/10.1109/72.317728 +Boris Igelnik,Kolmogorov's spline network.,2003,14,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn14.html#IgelnikP03,https://doi.org/10.1109/TNN.2003.813830 +Jiahua Luo,Sparse Bayesian Extreme Learning Machine for Multi-classification.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn25.html#LuoVW14,https://doi.org/10.1109/TNNLS.2013.2281839 +Seiichi Ozawa,Incremental Learning of Chunk Data for Online Pattern Classification Systems.,2008,19,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn19.html#OzawaPK08,https://doi.org/10.1109/TNN.2007.2000059 +Ye Ren,A Novel Empirical Mode Decomposition With Support Vector Regression for Wind Speed Forecasting.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn27.html#RenSS16,https://doi.org/10.1109/TNNLS.2014.2351391 +Alexander G. Parlos,Guest Editorial Introduction to the Special Issue on Adaptive Learning Systems in Communication Networks.,2005,16,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn16.html#ParlosJPBAC05,https://doi.org/10.1109/TNN.2005.857081 +Shih-Chii Liu,Temporal coding in a silicon network of integrate-and-fire neurons.,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#LiuD04,https://doi.org/10.1109/TNN.2004.832725 +David P. Helmbold,Relative loss bounds for single neurons.,1999,10,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn10.html#HelmboldKW99,https://doi.org/10.1109/72.809075 +David R. Lovell,Comments on 'Optimal training of thresholded linear correlation classifiers' [with reply].,1993,4,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn4.html#LovellTDH93,https://doi.org/10.1109/72.207625 +Dan Zhang 0001,Asynchronous State Estimation for Discrete-Time Switched Complex Networks With Communication Constraints.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#ZhangWSLY18,https://doi.org/10.1109/TNNLS.2017.2678681 +Christoph Hametner,Nonlinear Identification With Local Model Networks Using GTLS Techniques and Equality Constraints.,2011,22,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn22.html#HametnerJ11,https://doi.org/10.1109/TNN.2011.2159309 +Olvi L. Mangasarian,Nonlinear Knowledge-Based Classification.,2008,19,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn19.html#MangasarianW08,https://doi.org/10.1109/TNN.2008.2005188 +Shu Fang,Learning Discriminative Subspaces on Random Contrasts for Image Saliency Analysis.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn28.html#FangLTHC17,https://doi.org/10.1109/TNNLS.2016.2522440 +Edmondo Trentin,Robust combination of neural networks and hidden Markov models for speech recognition.,2003,14,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn14.html#TrentinG03,https://doi.org/10.1109/TNN.2003.820838 +Eduardo Rodriguez-Martinez,Automatic induction of projection pursuit indices.,2010,21,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn21.html#Rodriguez-MartinezGMR10,https://doi.org/10.1109/TNN.2010.2051161 +Hsin Chen,Real-time simulation of biologically realistic stochastic neurons in VLSI.,2010,21,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn21.html#ChenSBR10,https://doi.org/10.1109/TNN.2010.2049028 +Yu Kang,Cluster Synchronization for Interacting Clusters of Nonidentical Nodes via Intermittent Pinning Control.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#KangQMGZ18,https://doi.org/10.1109/TNNLS.2017.2669078 +Puyin Liu,Efficient learning algorithms for three-layer regular feedforward fuzzy neural networks.,2004,15,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn15.html#LiuL04,https://doi.org/10.1109/TNN.2004.824250 +Leon Wenliang Zhong,Efficient Sparse Modeling With Automatic Feature Grouping.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn23.html#ZhongK12,https://doi.org/10.1109/TNNLS.2012.2200262 +Shahram Hosseini,Maximum likelihood neural approximation in presence of additive colored noise.,2002,13,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn13.html#HosseiniJ02,https://doi.org/10.1109/72.977285 +Dimitry Gorinevsky,On the persistency of excitation in radial basis function network identification of nonlinear systems.,1995,6,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn6.html#Gorinevsky95,https://doi.org/10.1109/72.410365 +Jiexiong Tang,Extreme Learning Machine for Multilayer Perceptron.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn27.html#TangDH16,https://doi.org/10.1109/TNNLS.2015.2424995 +Donq-Liang Lee,Neighbor-layer updating in MBDS for the recall of pure bipolar patterns in gray-scale noise.,1995,6,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn6.html#LeeW95,https://doi.org/10.1109/72.471361 +Zechao Li,Robust Structured Nonnegative Matrix Factorization for Image Representation.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#LiTH18,https://doi.org/10.1109/TNNLS.2017.2691725 +Keem Siah Yap,A Hybrid ART-GRNN Online Learning Neural Network With a varepsilon -Insensitive Loss Function.,2008,19,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn19.html#YapLA08,https://doi.org/10.1109/TNN.2008.2000992 +Mingming Sun,Similarity preserving principal curve: an optimal 1-D feature extractor for data representation.,2010,21,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn21.html#SunYLY10,https://doi.org/10.1109/TNN.2010.2048577 +Hubert Cecotti,Single-Trial Classification of Event-Related Potentials in Rapid Serial Visual Presentation Tasks Using Supervised Spatial Filtering.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn25.html#CecottiEG14,https://doi.org/10.1109/TNNLS.2014.2302898 +Ashok Patel,Stochastic Resonance in Continuous and Spiking Neuron Models With Levy Noise.,2008,19,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn19.html#PatelK08,https://doi.org/10.1109/TNN.2008.2005610 +Hujun Yin,ViSOM - a novel method for multivariate data projection and structure visualization.,2002,13,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn13.html#Yin02,https://doi.org/10.1109/72.977314 +Tao Li,Delay-Slope-Dependent Stability Results of Recurrent Neural Networks.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#LiZL11,https://doi.org/10.1109/TNN.2011.2169425 +Reza Davtalab,Multi-Level Fuzzy Min-Max Neural Network Classifier.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn25.html#DavtalabDM14,https://doi.org/10.1109/TNNLS.2013.2275937 +Hui Peng 0001,A parameter optimization method for radial basis function type models.,2003,14,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn14.html#PengOHT03,https://doi.org/10.1109/TNN.2003.809395 +Li-Chiu Chang,Reinforced Two-Step-Ahead Weight Adjustment Technique for Online Training of Recurrent Neural Networks.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn23.html#ChangCC12,https://doi.org/10.1109/TNNLS.2012.2200695 +Jiancheng Sun,Analysis of the distance between two classes for tuning SVM hyperparameters.,2010,21,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn21.html#SunZLZ10,https://doi.org/10.1109/TNN.2009.2036999 +Guang-Bin Huang,Classification ability of single hidden layer feedforward neural networks.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn11.html#HuangCB00,https://doi.org/10.1109/72.846750 +William A. Fisher,A programmable analog neural network processor.,1991,2,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn2.html#FisherFS91,https://doi.org/10.1109/72.80332 +Luiz Henrique Alves Monteiro,Global and partial synchronism in phase-locked loop networks.,2003,14,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn14.html#MonteiroCCOP03,https://doi.org/10.1109/TNN.2003.820441 +Reza Khosrowabadi,ERNN: A Biologically Inspired Feedforward Neural Network to Discriminate Emotion From EEG Signal.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn25.html#KhosrowabadiQAW14,https://doi.org/10.1109/TNNLS.2013.2280271 +Wenjie Dong,Tracking Control for Nonaffine Systems: A Self-Organizing Approximation Approach.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn23.html#DongZCF12,https://doi.org/10.1109/TNNLS.2011.2178509 +Georgios Papadopoulos 0001,Confidence estimation methods for neural networks: a practical comparison.,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#PapadopoulosEM01,https://doi.org/10.1109/72.963764 +Xiao-Jian Li,Adaptive Fault-Tolerant Synchronization Control of a Class of Complex Dynamical Networks With General Input Distribution Matrices and Actuator Faults.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn28.html#LiY17a,https://doi.org/10.1109/TNNLS.2015.2507183 +Jongsoo Choi,Decision feedback recurrent neural equalization with fast convergence rate.,2005,16,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn16.html#ChoiBY05,https://doi.org/10.1109/TNN.2005.845142 +Pengsheng Zheng,Learning Associative Memories by Error Backpropagation.,2011,22,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn22.html#ZhengZT11,https://doi.org/10.1109/TNN.2010.2099239 +Jifei Yu,A Unified Learning Framework for Single Image Super-Resolution.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn25.html#YuGTLZ14,https://doi.org/10.1109/TNNLS.2013.2281313 +Huicheng Zheng,Fast-Learning Adaptive-Subspace Self-Organizing Map: An Application to Saliency-Based Invariant Image Feature Construction.,2008,19,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn19.html#ZhengLL08,https://doi.org/10.1109/TNN.2007.911741 +Fangfei Li,Single-Input Pinning Controller Design for Reachability of Boolean Networks.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#LiYK18,https://doi.org/10.1109/TNNLS.2017.2705109 +Guibiao Xu,Robust C-Loss Kernel Classifiers.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn29.html#XuHP18,https://doi.org/10.1109/TNNLS.2016.2637351 +Kei Kobayashi,Information criteria for support vector machines.,2006,17,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn17.html#KobayashiK06,https://doi.org/10.1109/TNN.2006.873276 +Yoram Baram,Memorizing binary vector sequences by a sparsely encoded network.,1994,5,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn5.html#Baram94,https://doi.org/10.1109/72.329695 +Gamze Erten,Analog VLSI implementation for stereo correspondence between 2-D images.,1996,7,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn7.html#ErtenG96,https://doi.org/10.1109/72.485630 +A. Taleb,Against the convergence of the minor component analysis neurons.,1999,10,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn10.html#TalebC99,https://doi.org/10.1109/72.737511 +Ruichu Cai,Understanding Social Causalities Behind Human Action Sequences.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn28.html#CaiZHW17,https://doi.org/10.1109/TNNLS.2016.2556724 +Jiaming Zhu,Sufficient Condition for the Existence of the Compact Set in the RBF Neural Network Control.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#ZhuCZYY18,https://doi.org/10.1109/TNNLS.2017.2707244 +André Stuhlsatz,Feature Extraction With Deep Neural Networks by a Generalized Discriminant Analysis.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn23.html#StuhlsatzLZ12,https://doi.org/10.1109/TNNLS.2012.2183645 +Shaofu Yang,A Collaborative Neurodynamic Approach to Multiple-Objective Distributed Optimization.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#YangLW18,https://doi.org/10.1109/TNNLS.2017.2652478 +Wei Zhang 0072,The Application of Visual Saliency Models in Objective Image Quality Assessment: A Statistical Evaluation.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn27.html#ZhangBWCL16,https://doi.org/10.1109/TNNLS.2015.2461603 +Cristiano Cervellera,Lattice point sets for deterministic learning and approximate optimization problems.,2010,21,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn21.html#Cervellera10,https://doi.org/10.1109/TNN.2010.2041360 +Ah-Hwee Tan,Cascade ARTMAP: integrating neural computation and symbolic knowledge processing.,1997,8,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn8.html#Tan97,https://doi.org/10.1109/72.557661 +José Antonio Pérez-Carrasco,Fast vision through frameless event-based sensing and convolutional processing: application to texture recognition.,2010,21,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn21.html#Perez-CarrascoASCSL10,https://doi.org/10.1109/TNN.2009.2039943 +Xinbo Gao,Universal Blind Image Quality Assessment Metrics Via Natural Scene Statistics and Multiple Kernel Learning.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn24.html#GaoGTL13,https://doi.org/10.1109/TNNLS.2013.2271356 +Shantanu Chakrabartty,Noise-Shaping Gradient Descent-Based Online Adaptation Algorithms for Digital Calibration of Analog Circuits.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn24.html#ChakrabarttySA13,https://doi.org/10.1109/TNNLS.2012.2236572 +Abhijeet V. Nandedkar,A Granular Reflex Fuzzy Min-Max Neural Network for Classification.,2009,20,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn20.html#NandedkarB09,https://doi.org/10.1109/TNN.2009.2016419 +Zekeriya Uykan,Clustering-based algorithms for single-hidden-layer sigmoid perceptron.,2003,14,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn14.html#Uykan03,https://doi.org/10.1109/TNN.2003.813532 +Junbin Gao,Relevance units latent variable model and nonlinear dimensionality reduction.,2010,21,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn21.html#GaoZT10,https://doi.org/10.1109/TNN.2009.2034964 +Paul Kang-Hoh Phua,Parallel nonlinear optimization techniques for training neural networks.,2003,14,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn14.html#PhuaM03,https://doi.org/10.1109/TNN.2003.820670 +Gabriel Gómez-Pérez,Perceptual adaptive insensitivity for support vector machine image coding.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#Gomez-PerezCGM05,https://doi.org/10.1109/TNN.2005.857954 +Stefan C. Kremer,On the computational power of Elman-style recurrent networks.,1995,6,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn6.html#Kremer95,https://doi.org/10.1109/72.392262 +Jonathan E. Fieldsend,Pareto evolutionary neural networks.,2005,16,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn16.html#FieldsendS05,https://doi.org/10.1109/TNN.2004.841794 +Haibo He,Editorial IEEE Transactions on Neural Networks and Learning Systems 2016 and Beyond.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn27.html#HeCCCEdLMNOPSSS16,https://doi.org/10.1109/TNNLS.2015.2504864 +Richard S. Sutton,Reinforcement Learning: An Introduction.,1998,9,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn9.html#SuttonB98,https://doi.org/10.1109/TNN.1998.712192 +Bo Liu 0002,Nesting One-Against-One Algorithm Based on SVMs for Pattern Classification.,2008,19,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn19.html#LiuHT08,https://doi.org/10.1109/TNN.2008.2003298 +Mauro Tucci,Adaptive FIR neural model for centroid learning in self-organizing maps.,2010,21,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn21.html#TucciR10,https://doi.org/10.1109/TNN.2010.2046180 +Yohei Nakada,Improving on Deterministic Approximate Bayesian Inferences for Mixture Distributions.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn27.html#Nakada16,https://doi.org/10.1109/TNNLS.2015.2477361 +Yongping Pan,Peaking-Free Output-Feedback Adaptive Neural Control Under a Nonseparation Principle.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn26.html#PanSY15,https://doi.org/10.1109/TNNLS.2015.2403712 +Bao-Liang Lu,Inverting feedforward neural networks using linear and nonlinear programming.,1999,10,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn10.html#LuKN99,https://doi.org/10.1109/72.809074 +Yuh-Jye Lee,Reduced Support Vector Machines: A Statistical Theory.,2007,18,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn18.html#LeeH07,https://doi.org/10.1109/TNN.2006.883722 +Masayoshi Shimono,Design and analysis of a nonequilibrium cross-coupled network with a detectable similarity measure.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn11.html#ShimonoY00,https://doi.org/10.1109/72.822510 +Yi Shen,An Improved Algebraic Criterion for Global Exponential Stability of Recurrent Neural Networks With Time-Varying Delays.,2008,19,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn19.html#ShenW08,https://doi.org/10.1109/TNN.2007.911751 +B. Pincibono,Random Signals and Systems.,2009,20,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn20.html#Pincibono09,https://doi.org/10.1109/TNN.2009.2016005 +Tianping Chen,Global convergence of delayed dynamical systems.,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#Chen01a,https://doi.org/10.1109/72.963793 +Evaldo Araújo de Oliveira,Performance of the Bayesian Online Algorithm for the Perceptron.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#OliveiraA07,https://doi.org/10.1109/TNN.2007.891189 +Phill Rowcliffe,Training Spiking Neuronal Networks With Applications in Engineering Tasks.,2008,19,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn19.html#RowcliffeF08,https://doi.org/10.1109/TNN.2008.2000999 +Danil V. Prokhorov,A convolutional learning system for object classification in 3-D lidar data.,2010,21,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn21.html#Prokhorov10,https://doi.org/10.1109/TNN.2010.2044802 +Liang Jin,Absolute stability conditions for discrete-time recurrent neural networks.,1994,5,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn5.html#JinNG94,https://doi.org/10.1109/72.329693 +Stephen F. Brown,On the use of artificial neural networks for the analysis of survival data.,1997,8,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn8.html#BrownBM97,https://doi.org/10.1109/72.623209 +Vladimir Cherkassky,The Nature Of Statistical Learning Theory.,1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#Cherkassky97,https://doi.org/10.1109/TNN.1997.641482 +Chengde Zheng,On Stabilization of Stochastic Cohen-Grossberg Neural Networks With Mode-Dependent Mixed Time-Delays and Markovian Switching.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn24.html#ZhengSZW13,https://doi.org/10.1109/TNNLS.2013.2244613 +Renzo Perfetti,Sensitivity of equilibrium points in continuous-time Hopfield's network.,1995,6,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn6.html#Perfetti95,https://doi.org/10.1109/72.363488 +Constantinos S. Pattichis,Genetics-based machine learning for the assessment of certain neuromuscular disorders.,1996,7,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn7.html#PattichisS96,https://doi.org/10.1109/72.485678 +Liefeng Bo,Working Set Selection Using Functional Gain for LS-SVM.,2007,18,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn18.html#BoJW07,https://doi.org/10.1109/TNN.2007.899715 +Sabri Boutemedjet,Predictive Approach for User Long-Term Needs in Content-Based Image Suggestion.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn23.html#BoutemedjetZ12,https://doi.org/10.1109/TNNLS.2012.2199765 +Chin-Chi Teng,Automated learning for reducing the configuration of a feedforward neural network.,1996,7,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn7.html#TengW96,https://doi.org/10.1109/72.536305 +José Manuel Benítez,Are artificial neural networks black boxes?,1997,8,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn8.html#BenitezCR97,https://doi.org/10.1109/72.623216 +Hongwei Zhang,A Load-Balancing Self-Organizing Incremental Neural Network.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn25.html#ZhangXH14,https://doi.org/10.1109/TNNLS.2013.2287884 +Zhijun Fu,Nonlinear Systems Identification and Control Via Dynamic Multitime Scales Neural Networks.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn24.html#FuXHL13,https://doi.org/10.1109/TNNLS.2013.2265604 +Mikko Lehtokangas,Modified cascade-correlation learning for classification.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn11.html#Lehtokangas00,https://doi.org/10.1109/72.846749 +Terry Windeatt,Ensemble Pruning Using Spectral Coefficients.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn24.html#WindeattZ13,https://doi.org/10.1109/TNNLS.2013.2239659 +Alexander G. Parlos,An accelerated learning algorithm for multilayer perceptron networks.,1994,5,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn5.html#ParlosFAMT94,https://doi.org/10.1109/72.286921 +Housheng Su,Observer-Based Discrete-Time Nonnegative Edge Synchronization of Networked Systems.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn28.html#SuWC17,https://doi.org/10.1109/TNNLS.2017.2728061 +Pengyu Hong,Real-time speech-driven face animation with expressions using neural networks.,2002,13,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn13.html#HongWH02,https://doi.org/10.1109/TNN.2002.1021892 +Antonello Rizzi,Adaptive resolution min-max classifiers.,2002,13,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn13.html#RizziPM02,https://doi.org/10.1109/72.991426 +Nicolaos B. Karayiannis,Growing radial basis neural networks: merging supervised and unsupervised learning with network growth techniques.,1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#KarayiannisM97,https://doi.org/10.1109/72.641471 +Farkhondeh Kiaee,Relevance Vector Machine for Survival Analysis.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn27.html#KiaeeSM16,https://doi.org/10.1109/TNNLS.2015.2420611 +Canh Hao Nguyen,Discriminative Graph Embedding for Label Propagation.,2011,22,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn22.html#NguyenM11,https://doi.org/10.1109/TNN.2011.2160873 +Konstantinos I. Diamantaras,Neural classifiers using one-time updating.,1998,9,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn9.html#DiamantarasS98,https://doi.org/10.1109/72.668885 +Zekeriya Uykan,Analysis of augmented-input-Layer RBFNN.,2005,16,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn16.html#UykanK05,https://doi.org/10.1109/TNN.2004.841796 +Yongqing Yang,Solving Quadratic Programming Problems by Delayed Projection Neural Network.,2006,17,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn17.html#YangC06,https://doi.org/10.1109/TNN.2006.880579 +Liang Jin,Globally asymptotical stability of discrete-time analog neural networks.,1996,7,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn7.html#JinG96a,https://doi.org/10.1109/72.508944 +Niceto R. Luque,Cerebellar Input Configuration Toward Object Model Abstraction in Manipulation Tasks.,2011,22,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn22.html#LuqueGCCR11,https://doi.org/10.1109/TNN.2011.2156809 +Avisek Lahiri,Forward Stagewise Additive Model for Collaborative Multiview Boosting.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn29.html#LahiriPB18,https://doi.org/10.1109/TNNLS.2016.2623219 +Guoxu Zhou,Group Component Analysis for Multiblock Data: Common and Individual Feature Extraction.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn27.html#ZhouCZM16,https://doi.org/10.1109/TNNLS.2015.2487364 +Dahir H. Dini,Class of Widely Linear Complex Kalman Filters.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn23.html#DiniM12,https://doi.org/10.1109/TNNLS.2012.2189893 +Kun Zhan,New Spiking Cortical Model for Invariant Texture Retrieval and Image Processing.,2009,20,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn20.html#ZhanZM09,https://doi.org/10.1109/TNN.2009.2030585 +Kadir Liano,Robust error measure for supervised neural network learning with outliers.,1996,7,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn7.html#Liano96,https://doi.org/10.1109/72.478411 +W. C. Chu,Vector quantization of neural networks.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#ChuB98,https://doi.org/10.1109/72.728372 +Raghu Krishnapuram,The fuzzy c spherical shells algorithm: A new approach.,1992,3,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn3.html#KrishnapuramNF92,https://doi.org/10.1109/72.159056 +Chularat Khunasaraphan,Weight shifting techniques for self-recovery neural networks.,1994,5,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn5.html#KhunasaraphanVL94,https://doi.org/10.1109/72.298234 +Bo Shen,H∞ State Estimation for Complex Networks With Uncertain Inner Coupling and Incomplete Measurements.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn24.html#ShenWDS13,https://doi.org/10.1109/TNNLS.2013.2271357 +Kuo-Kai Shyu,Implementation of Pipelined FastICA on FPGA for Real-Time Blind Source Separation.,2008,19,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn19.html#ShyuLWL08,https://doi.org/10.1109/TNN.2007.915115 +Y. Wang,Spectral Clustering on Multiple Manifolds.,2011,22,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn22.html#WangJWZ11,https://doi.org/10.1109/TNN.2011.2147798 +Chiman Kwan,Robust neural-network control of rigid-link electrically driven robots.,1998,9,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn9.html#KwanLD98,https://doi.org/10.1109/72.701172 +Bo Liu 0009,Consensus in Networks of Multiagents With Cooperation and Competition Via Stochastically Switching Topologies.,2008,19,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn19.html#LiuC08,https://doi.org/10.1109/TNN.2008.2004404 +Adrian G. Bors,Median radial basis function neural network.,1996,7,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn7.html#BorsP96,https://doi.org/10.1109/72.548164 +Hakan Cevikalp,Local Classifier Weighting by Quadratic Programming.,2008,19,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn19.html#CevikalpP08,https://doi.org/10.1109/TNN.2008.2005301 +Sidney S. Fels,Glove-talk II - a neural-network interface which maps gestures to parallel formant speech synthesizer controls.,1997,8,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn8.html#FelsH97,https://doi.org/10.1109/72.623199 +Yali Li,A Boosting Approach to Exploit Instance Correlations for Multi-Instance Classification.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn27.html#LiWTD16,https://doi.org/10.1109/TNNLS.2015.2497318 +Yina Han,On the Impact of Regularization Variation on Localized Multiple Kernel Learning.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#HanYYM18a,https://doi.org/10.1109/TNNLS.2017.2688365 +Badrinath Roysam,Hierarchically structured unit-simplex transformations for parallel distributed optimization problems.,1992,3,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn3.html#RoysamB92,https://doi.org/10.1109/72.105423 +Y. J. Cao,A note on stability of analog neural networks with time delays.,1996,7,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn7.html#CaoW96,https://doi.org/10.1109/72.548184 +Yang Tang,Distributed Synchronization of Coupled Neural Networks via Randomly Occurring Control.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn24.html#TangW13,https://doi.org/10.1109/TNNLS.2012.2236355 +Mark W. Goudreau,First-order versus second-order single-layer recurrent neural networks.,1994,5,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn5.html#GoudreauGCC94,https://doi.org/10.1109/72.286928 +Anil K. Jain 0001,Guest Editorial Special Issue on Artificial Neural Networks and Statistical Pattern Recognition.,1997,8,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn8.html#JainM97,https://doi.org/10.1109/TNN.1997.554186 +James Tin-Yau Kwok,Moderating the outputs of support vector machine classifiers.,1999,10,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn10.html#Kwok99,https://doi.org/10.1109/72.788642 +Chi-Kwong Chan,The convergence properties of a clipped Hopfield network and its application in the design of keystream generator.,2001,12,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn12.html#ChanC01,https://doi.org/10.1109/72.914528 +Hiroshi Tsukimoto,Extracting rules from trained neural networks.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn11.html#Tsukimoto00,https://doi.org/10.1109/72.839008 +Haibo He,Incremental Learning From Stream Data.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#HeCLX11,https://doi.org/10.1109/TNN.2011.2171713 +Kartick Subramanian,A Metacognitive Complex-Valued Interval Type-2 Fuzzy Inference System.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn25.html#SubramanianRS14,https://doi.org/10.1109/TNNLS.2014.2321420 +Qi Li,Principal feature classification.,1997,8,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn8.html#LiT97,https://doi.org/10.1109/72.554200 +Christodoulos Keliris,An Integrated Learning and Filtering Approach for Fault Diagnosis of a Class of Nonlinear Dynamical Systems.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn28.html#KelirisPP17,https://doi.org/10.1109/TNNLS.2015.2504418 +Wenming Zheng,L1-Norm Kernel Discriminant Analysis Via Bayes Error Bound Optimization for Robust Feature Extraction.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn25.html#ZhengLW14,https://doi.org/10.1109/TNNLS.2013.2281428 +N. K. Bose,Neural network design using Voronoi diagrams.,1993,4,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn4.html#BoseG93,https://doi.org/10.1109/72.248455 +Alireza Khotanzad,Combination of artificial neural-network forecasters for prediction of natural gas consumption.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn11.html#KhotanzadEL00,https://doi.org/10.1109/72.839015 +Yu Kong,Probabilistic Low-Rank Multitask Learning.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn29.html#KongSLF18,https://doi.org/10.1109/TNNLS.2016.2641160 +Bratati Banerjee,String Tightening as a Self-Organizing Phenomenon.,2007,18,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn18.html#Banerjee07,https://doi.org/10.1109/TNN.2007.891192 +G. Peter Zhang,Quarterly Time-Series Forecasting With Neural Networks.,2007,18,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn18.html#ZhangK07,https://doi.org/10.1109/TNN.2007.896859 +Avimanyu Sahoo,Neural Network-Based Event-Triggered State Feedback Control of Nonlinear Continuous-Time Systems.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn27.html#SahooXJ16a,https://doi.org/10.1109/TNNLS.2015.2416259 +Eleftheria Athanasopoulou,Probabilistic approaches to fault detection in networked discrete event systems.,2005,16,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn16.html#AthanasopoulouH05,https://doi.org/10.1109/TNN.2005.853430 +Roseli A. Francelin Romero,Qualitative analysis and synthesis of recurrent neural networks [Book Review].,2003,14,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn14.html#RomeroG03,https://doi.org/10.1109/TNN.2003.821787 +Xian-Ming Zhang,State Estimation for Static Neural Networks With Time-Varying Delays Based on an Improved Reciprocally Convex Inequality.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#ZhangH18,https://doi.org/10.1109/TNNLS.2017.2661862 +E. C. Malthouse,Limitations of nonlinear PCA as performed with generic neural networks.,1998,9,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn9.html#Malthouse98,https://doi.org/10.1109/72.655038 +Satoshi Nakamura 0001,Statistical multimodal integration for audio-visual speech processing.,2002,13,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn13.html#Nakamura02,https://doi.org/10.1109/TNN.2002.1021886 +Bao-Gang Hu,What Are the Differences Between Bayesian Classifiers and Mutual-Information Classifiers?,2014,25,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn25.html#Hu14,https://doi.org/10.1109/TNNLS.2013.2274799 +Leda Villalobos,Learning capability assessment and feature space optimization for higher-order neural networks.,1995,6,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn6.html#VillalobosM95,https://doi.org/10.1109/72.363427 +Haruhisa Takahashi,A tight bound on concept learning.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#TakahashiG98,https://doi.org/10.1109/72.728362 +Deepak Shukla,Multiple neural-network-based adaptive controller using orthonormal activation function neural networks.,1999,10,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn10.html#ShuklaDP99,https://doi.org/10.1109/72.809095 +Renzo Perfetti,Optimization neural network for solving flow problems.,1995,6,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn6.html#Perfetti95b,https://doi.org/10.1109/72.410376 +Chandra Sekhar Perumalla,Storage Free Smart Energy Management for Frequency Control in a Diesel-PV-Fuel Cell-Based Hybrid AC Microgrid.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn27.html#PerumallaM16,https://doi.org/10.1109/TNNLS.2015.2428611 +Teresa Serrano-Gotarredona,A Low-Power Current Mode Fuzzy-ART Cell.,2006,17,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn17.html#Serrano-GotarredonaL06,https://doi.org/10.1109/TNN.2006.883725 +Rüdiger W. Brause,Noise suppressing sensor encoding and neural signal orthonormalization.,1998,9,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn9.html#BrauseR98,https://doi.org/10.1109/72.701175 +Piotr Berman,A note on the complexity of reliability in neural networks.,1992,3,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn3.html#BermanPS92,https://doi.org/10.1109/72.165601 +Shuzhi Sam Ge,Semiglobal ISpS Disturbance Attenuation With Output Tracking via Direct Adaptive Design.,2007,18,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn18.html#GeH07,https://doi.org/10.1109/TNN.2007.899159 +Yong Xu 0003,Robust Estimation for Neural Networks With Randomly Occurring Distributed Delays and Markovian Jump Coupling.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#XuLSTX18,https://doi.org/10.1109/TNNLS.2016.2636325 +Zhouhua Peng,Distributed Neural Network Control for Adaptive Synchronization of Uncertain Dynamical Multiagent Systems.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn25.html#PengWZS14,https://doi.org/10.1109/TNNLS.2013.2293499 +Yuguang Yan,Online Heterogeneous Transfer by Hedge Ensemble of Offline and Online Decisions.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#YanWTNMT18,https://doi.org/10.1109/TNNLS.2017.2751102 +Pitoyo Hartono,Learning-Regulated Context Relevant Topographical Map.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn26.html#HartonoHT15,https://doi.org/10.1109/TNNLS.2014.2379275 +Radu Dogaru,The simplicial neural cell and its mixed-signal circuit implementation: an efficient neural-network architecture for intelligent signal processing in portable multimedia applications.,2002,13,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn13.html#DogaruJCG02,https://doi.org/10.1109/TNN.2002.1021899 +Shereen Fouad,Incorporating Privileged Information Through Metric Learning.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn24.html#FouadTRS13,https://doi.org/10.1109/TNNLS.2013.2251470 +Rubin Wang,Energy Function and Energy Evolution on Neuronal Populations.,2008,19,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn19.html#WangZC08,https://doi.org/10.1109/TNN.2007.914177 +Heekuck Oh,Adaptation of the relaxation method for learning in bidirectional associative memory.,1994,5,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn5.html#OhK94,https://doi.org/10.1109/72.298227 +Olivier Chapelle,Support vector machines for histogram-based image classification.,1999,10,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn10.html#ChapelleHV99,https://doi.org/10.1109/72.788646 +Dimitrios Charalampidis,Classification of noisy signals using fuzzy ARTMAP neural networks.,2001,12,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn12.html#CharalampidisKG01,https://doi.org/10.1109/72.950132 +Chi-Sing Leung,RBF Networks Under the Concurrent Fault Situation.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn23.html#LeungS12,https://doi.org/10.1109/TNNLS.2012.2196054 +Yan-Qing Zhang,Granular neural networks for numerical-linguistic data fusion and knowledge discovery.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn11.html#ZhangFGK00,https://doi.org/10.1109/72.846737 +Alaeddin Malek,Solving Multiextremal Problems by Using Recurrent Neural Networks.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#MalekH18,https://doi.org/10.1109/TNNLS.2017.2676046 +Tao Song,A Modified Probabilistic Neural Network for Partial Volume Segmentation in Brain MR Image.,2007,18,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn18.html#SongJLH07,https://doi.org/10.1109/TNN.2007.891635 +Jen-Lun Yuan,Neural-network design for small training sets of high dimension.,1998,9,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn9.html#YuanF98,https://doi.org/10.1109/72.661122 +Xiurui Xie,Efficient Training of Supervised Spiking Neural Network via Accurate Synaptic-Efficiency Adjustment Method.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn28.html#XieQ0K17,https://doi.org/10.1109/TNNLS.2016.2541339 +Yuping He,A charge-based on-chip adaptation Kohonen neural network.,1993,4,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn4.html#HeC93,https://doi.org/10.1109/72.217189 +Marian Stewart Bartlett,Face recognition by independent component analysis.,2002,13,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn13.html#BartlettMS02,https://doi.org/10.1109/TNN.2002.804287 +Pedro Antonio Gutiérrez,Logistic Regression by Means of Evolutionary Radial Basis Function Neural Networks.,2011,22,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn22.html#GutierrezHM11,https://doi.org/10.1109/TNN.2010.2093537 +Toshimichi Saito,Chaos and fractals from a forced artificial neural cell.,1993,4,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn4.html#SaitoO93,https://doi.org/10.1109/72.182694 +Güner Arslan,A unified neural-network-based speaker localization technique.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn11.html#ArslanS00,https://doi.org/10.1109/72.857779 +Derek Monner,Recurrent Neural Collective Classification.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn24.html#MonnerR13,https://doi.org/10.1109/TNNLS.2013.2270376 +Elias B. Kosmatopoulos,High-order neural network structures for identification of dynamical systems.,1995,6,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn6.html#KosmatopoulosPCI95,https://doi.org/10.1109/72.363477 +Chen Gong 0002,Label Propagation via Teaching-to-Learn and Learning-to-Teach.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn28.html#GongTLLY17,https://doi.org/10.1109/TNNLS.2016.2514360 +Juan Ignacio Mulero Martínez,An Improved Dynamic Neurocontroller Based on Christoffel Symbols.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#Martinez07,https://doi.org/10.1109/TNN.2007.894070 +Xing He 0001,A Recurrent Neural Network for Solving Bilevel Linear Programming Problem.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn25.html#HeLHLH14,https://doi.org/10.1109/TNNLS.2013.2280905 +Quan-Yong Fan,Adaptive Actor-Critic Design-Based Integral Sliding-Mode Control for Partially Unknown Nonlinear Systems With Input Disturbances.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn27.html#FanY16,https://doi.org/10.1109/TNNLS.2015.2472974 +Otman A. Basir,Connectionist-based Dempster-Shafer evidential reasoning for data fusion.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#BasirKZ05,https://doi.org/10.1109/TNN.2005.853337 +Haris E. Psillakis,NN-Based Adaptive Tracking Control of Uncertain Nonlinear Systems Disturbed by Unknown Covariance Noise.,2007,18,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn18.html#PsillakisA07,https://doi.org/10.1109/TNN.2007.901274 +Luigi Raffo,Analog VLSI circuits as physical structures for perception in early visual tasks.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#RaffoSBB98,https://doi.org/10.1109/72.728397 +Xinzhi Liu,Pinning Impulsive Synchronization of Reaction-Diffusion Neural Networks With Time-Varying Delays.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn28.html#LiuZX17,https://doi.org/10.1109/TNNLS.2016.2518479 +Chaojie Li,Distributed Optimal Consensus Over Resource Allocation Network and Its Application to Dynamical Economic Dispatch.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#LiYHH18,https://doi.org/10.1109/TNNLS.2017.2691760 +Zidong Wang,Stability analysis for stochastic Cohen-Grossberg neural networks with mixed time delays.,2006,17,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn17.html#WangLLL06,https://doi.org/10.1109/TNN.2006.872355 +James C. Bezdek,A note on self-organizing semantic maps.,1995,6,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn6.html#BezdekP95,https://doi.org/10.1109/72.410347 +Matthieu Geist,Algorithmic Survey of Parametric Value Function Approximation.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn24.html#GeistP13,https://doi.org/10.1109/TNNLS.2013.2247418 +Andreas Weingessel,Local PCA algorithms.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn11.html#WeingesselH00,https://doi.org/10.1109/72.883408 +Zhenyuan Guo,Passivity and Passification of Memristor-Based Recurrent Neural Networks With Time-Varying Delays.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn25.html#GuoWY14a,https://doi.org/10.1109/TNNLS.2014.2305440 +Xudong Zhao,Intelligent Tracking Control for a Class of Uncertain High-Order Nonlinear Systems.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn27.html#ZhaoSZZ16,https://doi.org/10.1109/TNNLS.2015.2460236 +Steven S. Watkins,Execution of a remote sensing application on a custom neurocomputer.,1995,6,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn6.html#WatkinsCTL95,https://doi.org/10.1109/72.471359 +Kumpati S. Narendra,Adaptive control using neural networks and approximate models.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#NarendraM97,https://doi.org/10.1109/72.572089 +Nasser M. Nasrabadi,Hopfield network for stereo vision correspondence.,1992,3,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn3.html#NasrabadiC92,https://doi.org/10.1109/72.105413 +Anthony V. Sebald,Minimax design of neural net controllers for highly uncertain plants.,1994,5,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn5.html#SebaldS94,https://doi.org/10.1109/72.265962 +Yeou-Fang Wang,Two coding strategies for bidirectional associative memory.,1990,1,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn1.html#WangCM90,https://doi.org/10.1109/72.80207 +Yongfeng Miao,"Comments on ""Principal component extraction using recursive least squares learning"".",1996,7,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn7.html#Miao96,https://doi.org/10.1109/72.508950 +Z. Wang,LMI-Based Approach for Global Asymptotic Stability Analysis of Recurrent Neural Networks with Various Delays and Structures.,2011,22,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn22.html#WangZJ11,https://doi.org/10.1109/TNN.2011.2131679 +Anthony Zaknich,Characterization of aluminum hydroxide particles from the Bayer process using neural network and Bayesian classifiers.,1997,8,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn8.html#Zaknich97,https://doi.org/10.1109/72.595890 +Cyrus Jahanchahi,A Class of Quaternion Kalman Filters.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn25.html#JahanchahiM14,https://doi.org/10.1109/TNNLS.2013.2277540 +Dzmitry Maliuk,An Experimentation Platform for On-Chip Integration of Analog Neural Networks: A Pathway to Trusted and Robust Analog/RF ICs.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn26.html#MaliukM15,https://doi.org/10.1109/TNNLS.2014.2354406 +Dong Shen,Data-Driven Learning Control for Stochastic Nonlinear Systems: Multiple Communication Constraints and Limited Storage.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#Shen18,https://doi.org/10.1109/TNNLS.2017.2696040 +Emad A. El-Sebakhy,Iterative Least Squares Functional Networks Classifier.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#El-SebakhyHF07,https://doi.org/10.1109/TNN.2007.891632 +Elias B. Kosmatopoulos,Control of unknown nonlinear systems with efficient transient performance using concurrent exploitation and exploration.,2010,21,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn21.html#Kosmatopoulos10,https://doi.org/10.1109/TNN.2010.2050211 +Fumiaki Takeda,High speed paper currency recognition by neural networks.,1995,6,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn6.html#TakedaO95,https://doi.org/10.1109/72.363448 +Monica Bianchini,On the problem of local minima in recurrent neural networks.,1994,5,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn5.html#BianchiniGM94,https://doi.org/10.1109/72.279182 +Bin Tian,Comparison of two different PNN training approaches for satellite cloud data classification.,2001,12,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn12.html#TianA01,https://doi.org/10.1109/72.896807 +Bin Wang,ELITE: Ensemble of Optimal Input-Pruned Neural Networks Using TRUST-TECH.,2011,22,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn22.html#WangC11,https://doi.org/10.1109/TNN.2010.2087354 +Cemal Okan Sakar,Discriminative Feature Extraction by a Neural Implementation of Canonical Correlation Analysis.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn28.html#SakarK17,https://doi.org/10.1109/TNNLS.2015.2504724 +Hong Zeng,Optimizing Single-Trial EEG Classification by Stationary Matrix Logistic Regression in Brain-Computer Interface.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn27.html#ZengS16,https://doi.org/10.1109/TNNLS.2015.2475618 +Percy P. C. Yip,Combinatorial optimization with use of guided evolutionary simulated annealing.,1995,6,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn6.html#YipP95,https://doi.org/10.1109/72.363466 +Masoud Faraki,Large-Scale Metric Learning: A Voyage From Shallow to Deep.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#FarakiHP18,https://doi.org/10.1109/TNNLS.2017.2761773 +Wei Chu,An improved conjugate gradient scheme to the solution of least squares SVM.,2005,16,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn16.html#ChuOK05,https://doi.org/10.1109/TNN.2004.841785 +Katherine L. Cameron,Minimizing the Effect of Process Mismatch in a Neuromorphic System Using Spike-Timing-Dependent Adaptation.,2008,19,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn19.html#CameronM08,https://doi.org/10.1109/TNN.2007.914192 +Shih-Hau Fang,Indoor Location System Based on Discriminant-Adaptive Neural Network in IEEE 802.11 Environments.,2008,19,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn19.html#FangL08,https://doi.org/10.1109/TNN.2008.2005494 +Mietek A. Brdys,Dynamic neural controllers for induction motor.,1999,10,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn10.html#BrdysK99,https://doi.org/10.1109/72.750564 +Akira Hirose,Guest Editorial Special Issue on Complex- and Hypercomplex-Valued Neural Networks.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn25.html#HiroseAM14,https://doi.org/10.1109/TNNLS.2014.2341871 +S. Gavin Smyth,Designing multilayer perceptrons from nearest-neighbor systems.,1992,3,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn3.html#Smyth92,https://doi.org/10.1109/72.125875 +Kao-Shing Hwang,Policy Improvement by a Model-Free Dyna Architecture.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn24.html#HwangL13,https://doi.org/10.1109/TNNLS.2013.2244100 +Vijayan K. Asari,Training of a feedforward multiple-valued neural network by error backpropagation with a multilevel threshold function.,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#Asari01,https://doi.org/10.1109/72.963789 +Wai Keung Wong,Deep Learning Regularized Fisher Mappings.,2011,22,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn22.html#WongS11,https://doi.org/10.1109/TNN.2011.2162429 +Siamak Mehrkanoon,Regularized Semipaired Kernel CCA for Domain Adaptation.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#MehrkanoonS18,https://doi.org/10.1109/TNNLS.2017.2728719 +Farid Oveisi,Tree-Structured Feature Extraction Using Mutual Information.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn23.html#OveisiOEP12,https://doi.org/10.1109/TNNLS.2011.2178447 +Derong Liu,A new synthesis approach for feedback neural networks based on the perceptron training algorithm.,1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#LiuL97,https://doi.org/10.1109/72.641469 +Seungjin Lee 0001,24-GOPS 4.5-mm2 Digital Cellular Neural Network for Rapid Visual Attention in an Object-Recognition SoC.,2011,22,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn22.html#LeeKKKY11,https://doi.org/10.1109/TNN.2010.2085443 +Kun Ding,In Defense of Locality-Sensitive Hashing.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn29.html#DingHFXP18,https://doi.org/10.1109/TNNLS.2016.2615085 +Haihong Zhang,Bayesian Learning for Spatial Filtering in an EEG-Based Brain-Computer Interface.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn24.html#ZhangYG13,https://doi.org/10.1109/TNNLS.2013.2249087 +Wenlian Lu,On Attracting Basins of Multiple Equilibria of a Class of Cellular Neural Networks.,2011,22,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn22.html#LuWC11,https://doi.org/10.1109/TNN.2010.2102048 +Naiyang Guan,Online Nonnegative Matrix Factorization With Robust Stochastic Approximation.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn23.html#GuanTLY12,https://doi.org/10.1109/TNNLS.2012.2197827 +David Masip,Shared Feature Extraction for Nearest Neighbor Face Recognition.,2008,19,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn19.html#MasipV08,https://doi.org/10.1109/TNN.2007.911742 +Yang-Yin Lin,Identification and Prediction of Dynamic Systems Using an Interactively Recurrent Self-Evolving Fuzzy Neural Network.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn24.html#LinCL13,https://doi.org/10.1109/TNNLS.2012.2231436 +Nikhil R. Pal,Generalized clustering networks and Kohonen's self-organizing scheme.,1993,4,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn4.html#PalBT93,https://doi.org/10.1109/72.238310 +David Horn,Dynamic proximity of spatio-temporal sequences.,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#HornDQ04,https://doi.org/10.1109/TNN.2004.832809 +Alessio Micheli,Neural Network for Graphs: A Contextual Constructive Approach.,2009,20,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn20.html#Micheli09,https://doi.org/10.1109/TNN.2008.2010350 +Shahab Mehraeen,Decentralized Optimal Control of a Class of Interconnected Nonlinear Discrete-Time Systems by Using Online Hamilton-Jacobi-Bellman Formulation.,2011,22,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn22.html#MehraeenJ11,https://doi.org/10.1109/TNN.2011.2160968 +Hung-Yi Hsieh,VLSI Implementation of a Bio-Inspired Olfactory Spiking Neural Network.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn23.html#HsiehT12,https://doi.org/10.1109/TNNLS.2012.2195329 +Matthew J. Hausknecht,Machine Learning Capabilities of a Simulated Cerebellum.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn28.html#HausknechtLMS17,https://doi.org/10.1109/TNNLS.2015.2512838 +C. Lee Giles,Pruning recurrent neural networks for improved generalization performance.,1994,5,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn5.html#GilesO94,https://doi.org/10.1109/72.317740 +Daewon Lee,Equilibrium-Based Support Vector Machine for Semisupervised Classification.,2007,18,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn18.html#LeeL07,https://doi.org/10.1109/TNN.2006.889495 +Xiao-Hu Yu,Dynamic learning rate optimization of the backpropagation algorithm.,1995,6,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn6.html#YuCC95,https://doi.org/10.1109/72.377972 +Ava Bargi,AdOn HDP-HMM: An Adaptive Online Model for Segmentation and Classification of Sequential Data.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#BargiXP18,https://doi.org/10.1109/TNNLS.2017.2742058 +Dominik R. Dersch,Asymptotic level density in topological feature maps.,1995,6,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn6.html#DerschT95,https://doi.org/10.1109/72.363433 +Chao Ge,New Delay-Dependent Stability Criteria for Neural Networks With Time-Varying Delay Using Delay-Decomposition Approach.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn25.html#GeHG14,https://doi.org/10.1109/TNNLS.2013.2285564 +Ronay Ak,Two Machine Learning Approaches for Short-Term Wind Speed Time-Series Prediction.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn27.html#AkFZ16,https://doi.org/10.1109/TNNLS.2015.2418739 +Joongho Choi,A programmable analog VLSI neural network processor for communication receivers.,1993,4,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn4.html#ChoiBS93,https://doi.org/10.1109/72.217191 +Ming Shao,Collaborative Random Faces-Guided Encoders for Pose-Invariant Face Representation Learning.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#ShaoZF18,https://doi.org/10.1109/TNNLS.2017.2648122 +Wenbing Zhang,Exponential Synchronization of Coupled Switched Neural Networks With Mode-Dependent Impulsive Effects.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn24.html#ZhangTMD13,https://doi.org/10.1109/TNNLS.2013.2257842 +Sheng Chen 0001,Comparative Performance of Complex-Valued B-Spline and Polynomial Models Applied to Iterative Frequency-Domain Decision Feedback Equalization of Hammerstein Channels.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn28.html#ChenHKAH17,https://doi.org/10.1109/TNNLS.2016.2609001 +Rachid Behdad,Artificial Electrical Morris-Lecar Neuron.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn26.html#BehdadBDNB15,https://doi.org/10.1109/TNNLS.2014.2360072 +Chi-Sing Leung,Stability and statistical properties of second-order bidirectional associative memory.,1997,8,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn8.html#LeungCL97,https://doi.org/10.1109/72.557664 +Djamel Bouchaffra,Conformation-based hidden Markov models: application to human face identification.,2010,21,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn21.html#Bouchaffra10,https://doi.org/10.1109/TNN.2009.2039875 +Seong-Gon Kong,Adaptive fuzzy systems for backing up a truck-and-trailer.,1992,3,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn3.html#KongK92,https://doi.org/10.1109/72.125862 +Youping Zhang,Stable neural controller design for unknown nonlinear systems using backstepping.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn11.html#ZhangPJ00,https://doi.org/10.1109/72.883443 +Franco Scarselli,The Graph Neural Network Model.,2009,20,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn20.html#ScarselliGTHM09,https://doi.org/10.1109/TNN.2008.2005605 +Xiuyu Zhang,Adaptive Neural Network Dynamic Surface Control for a Class of Time-Delay Nonlinear Systems With Hysteresis Inputs and Dynamic Uncertainties.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn26.html#ZhangSLMW15,https://doi.org/10.1109/TNNLS.2015.2397935 +Minoru Fukumi,A new back-propagation algorithm with coupled neuron.,1991,2,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn2.html#FukumiO91,https://doi.org/10.1109/72.134292 +Ferdinand Peper,A categorizing associative memory using an adaptive classifier and sparse coding.,1996,7,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn7.html#PeperS96,https://doi.org/10.1109/72.501724 +Enrique F. Castillo,Functional networks with applications: a neural-based paradigm [Book Review].,1999,10,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn10.html#CastilloCGP99,https://doi.org/10.1109/TNN.1999.774280 +Rong-Jong Wai,Backstepping wavelet neural network control for indirect field-oriented induction motor drive.,2004,15,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn15.html#WaiC04,https://doi.org/10.1109/TNN.2004.824411 +H. Zhang,Global Asymptotic Stability of Delayed Cellular Neural Networks.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#ZhangW07,https://doi.org/10.1109/TNN.2007.891628 +Bo Liu 0009,Pinning Consensus in Networks of Multiagents via a Single Impulsive Controller.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn24.html#LiuLC13,https://doi.org/10.1109/TNNLS.2013.2247059 +Alessandro Sperduti,Stability properties of labeling recursive auto-associative memory.,1995,6,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn6.html#Sperduti95,https://doi.org/10.1109/72.471363 +Keun-Rong Hsieh,A neural network model which combines unsupervised and supervised learning.,1993,4,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn4.html#HsiehC93,https://doi.org/10.1109/72.207624 +Piero P. Bonissone,Welcome to the IEEE Neural Networks Society.,2002,13,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn13.html#Bonissone02,https://doi.org/10.1109/TNN.2002.1031935 +Shenglan Liu,Manifold Warp Segmentation of Human Action.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#LiuFLQWW18,https://doi.org/10.1109/TNNLS.2017.2672971 +Xiaolong Ma,Global Reinforcement Learning in Neural Networks.,2007,18,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn18.html#MaL07,https://doi.org/10.1109/TNN.2006.888376 +Hsin-Chia Fu,User adaptive handwriting recognition by self-growing probabilistic decision-based neural networks.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn11.html#FuCXP00,https://doi.org/10.1109/72.883451 +Rong-Jong Wai,Adaptive Fuzzy-Neural-Network Control for Maglev Transportation System.,2008,19,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn19.html#WaiL08,https://doi.org/10.1109/TNN.2007.900814 +Chih-Jen Lin,A formal analysis of stopping criteria of decomposition methods for support vector machines.,2002,13,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn13.html#Lin02c,https://doi.org/10.1109/TNN.2002.1031937 +Baranidharan Raman,Processing of chemical sensor arrays with a biologically inspired model of olfactory coding.,2006,17,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn17.html#RamanSGG06,https://doi.org/10.1109/TNN.2006.875975 +Rahul Singh,Self-organizing maps for the skeletonization of sparse shapes.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn11.html#SinghCP00,https://doi.org/10.1109/72.822527 +Ke Zhi Mao,Neuron selection for RBF neural network classifier based on data structure preserving criterion.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#MaoH05,https://doi.org/10.1109/TNN.2005.853575 +Sakrapee Paisitkriangkrai,RandomBoost: Simplified Multiclass Boosting Through Randomization.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn25.html#PaisitkriangkraiSSH14,https://doi.org/10.1109/TNNLS.2013.2281214 +Nick K. Treadgold,Exploring constructive cascade networks.,1999,10,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn10.html#TreadgoldG99,https://doi.org/10.1109/72.809079 +Haruo Kobayashi,Two-dimensional spatio-temporal dynamics of analog image processing neural networks.,1995,6,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn6.html#KobayashiMS95,https://doi.org/10.1109/72.410359 +Xiaolin Huang,Classification With Truncated $\ell _{1}$ Distance Kernel.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#HuangSWHM18,https://doi.org/10.1109/TNNLS.2017.2668610 +Rami Rom,Adaptive Cardiac Resynchronization Therapy Device Based on Spiking Neurons Architecture and Reinforcement Learning Scheme.,2007,18,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn18.html#RomEGLRBGH07,https://doi.org/10.1109/TNN.2006.890806 +Derong Liu,A Neural Network Method for Detection of Obstructive Sleep Apnea and Narcolepsy Based on Pupil Size and EEG.,2008,19,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn19.html#LiuPL08,https://doi.org/10.1109/TNN.2007.908634 +Jing Peng,LDA/SVM driven nearest neighbor classification.,2003,14,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn14.html#PengHD03,https://doi.org/10.1109/TNN.2003.813835 +Hong-Gui Han,Nonlinear Model Predictive Control Based on a Self-Organizing Recurrent Neural Network.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn27.html#HanZHQ16,https://doi.org/10.1109/TNNLS.2015.2465174 +Tao Li,Further Results on Delay-Dependent Stability Criteria of Neural Networks With Time-Varying Delays.,2008,19,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn19.html#LiGSL08,https://doi.org/10.1109/TNN.2007.914162 +Kaibing Zhang,Single Image Super-Resolution With Multiscale Similarity Learning.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn24.html#ZhangGTL13,https://doi.org/10.1109/TNNLS.2013.2262001 +Chip-Hong Chang,New adaptive color quantization method based on self-organizing maps.,2005,16,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn16.html#ChangXXS05,https://doi.org/10.1109/TNN.2004.836543 +Qiang Yu 0005,A Spiking Neural Network System for Robust Sequence Recognition.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn27.html#YuYTTL16,https://doi.org/10.1109/TNNLS.2015.2416771 +Fathi M. A. Salam,A real-time experiment using a 50-neuron CMOS analog silicon chip with on-chip digital learning.,1991,2,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn2.html#SalamW91,https://doi.org/10.1109/72.88166 +F. Flentge,Locally Weighted Interpolating Growing Neural Gas.,2006,17,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn17.html#Flentge06,https://doi.org/10.1109/TNN.2006.879771 +Zuyuan Yang,Projection-Pursuit-Based Method for Blind Separation of Nonnegative Sources.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn24.html#YangXRX13,https://doi.org/10.1109/TNNLS.2012.2224124 +Lok-Won Kim,DeepX: Deep Learning Accelerator for Restricted Boltzmann Machine Artificial Neural Networks.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#Kim18,https://doi.org/10.1109/TNNLS.2017.2665555 +Qinmin Yang,Universal Neural Network Control of MIMO Uncertain Nonlinear Systems.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn23.html#YangYS12,https://doi.org/10.1109/TNNLS.2012.2197219 +Hong Jia,A New Distance Metric for Unsupervised Learning of Categorical Data.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn27.html#JiaCL16,https://doi.org/10.1109/TNNLS.2015.2436432 +Gert Cauwenberghs,Analysis and verification of an analog VLSI incremental outer-product learning system.,1992,3,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn3.html#CauwenberghsNY92,https://doi.org/10.1109/72.129421 +Leonardo Enzo Brito da Silva,An Information-Theoretic-Cluster Visualization for Self-Organizing Maps.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#SilvaW18,https://doi.org/10.1109/TNNLS.2017.2699674 +Qing Song 0001,Robust Initialization of a Jordan Network With Recurrent Constrained Learning.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#Song11,https://doi.org/10.1109/TNN.2011.2168423 +Tsuyoshi Kato,Robust Label Propagation on Multiple Networks.,2009,20,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn20.html#KatoKS09,https://doi.org/10.1109/TNN.2008.2003354 +Huaping Liu,Robust Exemplar Extraction Using Structured Sparse Coding.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn26.html#LiuLS15,https://doi.org/10.1109/TNNLS.2014.2357036 +Seiichi Ozawa,A Multitask Learning Model for Online Pattern Recognition.,2009,20,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn20.html#OzawaRR09,https://doi.org/10.1109/TNN.2008.2007961 +Hua-Liang Wei,Lattice Dynamical Wavelet Neural Networks Implemented Using Particle Swarm Optimization for Spatio-Temporal System Identification.,2009,20,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn20.html#WeiBZG09,https://doi.org/10.1109/TNN.2008.2009639 +Zhishun Wang,Constrained Least Absolute Deviation Neural Networks.,2008,19,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn19.html#WangP08,https://doi.org/10.1109/TNN.2007.905840 +Yang Liu 0040,Stability Analysis of Quaternion-Valued Neural Networks: Decomposition and Direct Approaches.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#LiuZLLC18,https://doi.org/10.1109/TNNLS.2017.2755697 +Mohammed Mestari,Solving Nonlinear Equality Constrained Multiobjective Optimization Problems Using Neural Networks.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn26.html#MestariBSK15,https://doi.org/10.1109/TNNLS.2015.2388511 +Tansu Alpcan,An Information-Based Learning Approach to Dual Control.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn26.html#AlpcanS15,https://doi.org/10.1109/TNNLS.2015.2392122 +Laurent Gatet,Comparison Between Analog and Digital Neural Network Implementations for Range-Finding Applications.,2009,20,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn20.html#GatetTB09,https://doi.org/10.1109/TNN.2008.2009120 +Mauro Forti,Convergence of Neural Networks for Programming Problems via a Nonsmooth Lojasiewicz Inequality.,2006,17,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn17.html#FortiNQ06,https://doi.org/10.1109/TNN.2006.879775 +A. de Medeiros Brito,An Adaptive Learning Approach for 3-D Surface Reconstruction From Point Clouds.,2008,19,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn19.html#BritoNMG08,https://doi.org/10.1109/TNN.2008.2000390 +Marco Saerens,Building cost functions minimizing to some summary statistics.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn11.html#Saerens00,https://doi.org/10.1109/72.883416 +Nikhil R. Pal,Two efficient connectionist schemes for structure preserving dimensionality reduction.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#PalE98,https://doi.org/10.1109/72.728358 +Hongli Dong,Variance-Constrained State Estimation for Complex Networks With Randomly Varying Topologies.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#DongHWR18,https://doi.org/10.1109/TNNLS.2017.2700331 +Mehrtash Tafazzoli Harandi,Sparse Coding on Symmetric Positive Definite Manifolds Using Bregman Divergences.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn27.html#HarandiHLS16,https://doi.org/10.1109/TNNLS.2014.2387383 +Jiahu Qin,Exponential Synchronization of Complex Networks of Linear Systems and Nonlinear Oscillators: A Unified Analysis.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn26.html#QinGZ15,https://doi.org/10.1109/TNNLS.2014.2316245 +Stefano Ferrari,A hierarchical RBF online learning algorithm for real-time 3-D scanner.,2010,21,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn21.html#FerrariBPB10,https://doi.org/10.1109/TNN.2009.2036438 +Bernabé Linares-Barranco,A CMOS analog adaptive BAM with on-chip learning and weight refreshing.,1993,4,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn4.html#Linares-BarrancoSRH93,https://doi.org/10.1109/72.217187 +Ioan Buciu,Nonnegative Matrix Factorization in Polynomial Feature Space.,2008,19,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn19.html#BuciuNP08,https://doi.org/10.1109/TNN.2008.2000162 +Wouter Caarls,Parallel Online Temporal Difference Learning for Motor Control.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn27.html#CaarlsS16,https://doi.org/10.1109/TNNLS.2015.2442233 +Mark A. Girolami,The topographic organization and visualization of binary data using multivariate-Bernoulli latent variable models.,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#Girolami01,https://doi.org/10.1109/72.963773 +Wenlian Lu,Synchronization in Networks of Linearly Coupled Dynamical Systems via Event-Triggered Diffusions.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn26.html#LuHC15,https://doi.org/10.1109/TNNLS.2015.2402691 +Da-Zheng Feng,Neural network learning algorithms for tracking minor subspace in high-dimensional data stream.,2005,16,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn16.html#FengZJ05,https://doi.org/10.1109/TNN.2005.844854 +Taek Mu Kwon,A multilayered perceptron approach to prediction of the SEC's investigation targets.,1996,7,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn7.html#KwonF96,https://doi.org/10.1109/72.536321 +Debarghya Ghoshdastidar,Learning With Jensen-Tsallis Kernels.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn27.html#GhoshdastidarAD16,https://doi.org/10.1109/TNNLS.2016.2550578 +Seong-Whan Lee,A new recurrent neural-network architecture for visual pattern recognition.,1997,8,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn8.html#LeeS97,https://doi.org/10.1109/72.557671 +Kwang Y. Lee,Author's Reply And Revision For Time-varying Weights.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#Lee97,https://doi.org/10.1109/TNN.1997.572121 +Boaz Vigdor,The Bayesian ARTMAP.,2007,18,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn18.html#VigdorL07,https://doi.org/10.1109/TNN.2007.900234 +Leimin Wang,Adaptive Synchronization of Memristor-Based Neural Networks with Time-Varying Delays.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn26.html#WangSYZ15,https://doi.org/10.1109/TNNLS.2014.2361776 +Ali A. Ghorbani,Incremental communication for multilayer neural networks: error analysis.,1998,9,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn9.html#GhorbaniB98,https://doi.org/10.1109/72.655031 +Emilio Soria-Olivas,A low-complexity fuzzy activation function for artificial neural networks.,2003,14,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn14.html#Soria-OlivasMCSCG03,https://doi.org/10.1109/TNN.2003.820444 +Shijie Xiao,Robust Kernel Low-Rank Representation.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn27.html#XiaoTXD16,https://doi.org/10.1109/TNNLS.2015.2472284 +Frank W. Jr. Adams,A parallel network for visual cognition.,1992,3,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn3.html#AdamsNRS92,https://doi.org/10.1109/72.165593 +M. Erkan Savran,On the design of dynamic associative neural memories.,1994,5,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn5.html#SavranM94,https://doi.org/10.1109/72.286920 +Yohei Nakada,Online Bayesian Learning With Natural Sequential Prior Distribution.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn25.html#NakadaWM14,https://doi.org/10.1109/TNNLS.2013.2250999 +Weiyong Yan,Global analysis of Oja's flow for neural networks.,1994,5,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn5.html#YanHM94,https://doi.org/10.1109/72.317720 +Michael C. Mozer,Predicting subscriber dissatisfaction and improving retention in the wireless telecommunications industry.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn11.html#MozerWGJK00,https://doi.org/10.1109/72.846740 +Hamse Y. Mussa,Memory-efficient fully coupled filtering approach for observational model building.,2010,21,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn21.html#MussaG10,https://doi.org/10.1109/TNN.2010.2041067 +Zhen Ni,GrDHP: A General Utility Function Representation for Dual Heuristic Dynamic Programming.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn26.html#NiHZXP15,https://doi.org/10.1109/TNNLS.2014.2329942 +Daizhan Cheng,State-space analysis of Boolean networks.,2010,21,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn21.html#ChengQ10,https://doi.org/10.1109/TNN.2009.2039802 +Hongtao Lu,Global Exponential Stability of Multitime Scale Competitive Neural Networks With Nonsmooth Functions.,2006,17,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn17.html#LuA06,https://doi.org/10.1109/TNN.2006.875995 +Jordi Cosp,Synchronization of nonlinear electronic oscillators for neural computation.,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#CospMAVV04,https://doi.org/10.1109/TNN.2004.832808 +Deng Jianping,Nonlinear magnetic storage channel equalization using minimal resource allocation network (MRAN).,2001,12,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn12.html#JianpingSS01,https://doi.org/10.1109/72.896809 +Wenwu He,A Note on the Unification of Adaptive Online Learning.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn28.html#HeKZL17,https://doi.org/10.1109/TNNLS.2016.2527053 +Sabri Arik,An analysis of global asymptotic stability of delayed cellular neural networks.,2002,13,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn13.html#Arik02,https://doi.org/10.1109/TNN.2002.1031957 +Tommy W. S. Chow,Estimating optimal feature subsets using efficient estimation of high-dimensional mutual information.,2005,16,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn16.html#ChowH05,https://doi.org/10.1109/TNN.2004.841414 +Wang Song,"Comments on ""A self-organizing network for hyperellipsoidal clustering (HEC)"" [and reply].",1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#SongXMJPW97,https://doi.org/10.1109/72.641479 +Vinay Chande,On neural networks for analog to digital conversion.,1995,6,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn6.html#ChandeP95,https://doi.org/10.1109/72.410371 +Changsheng Li,Max-Margin-Based Discriminative Feature Learning.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn27.html#LiLDWZY16,https://doi.org/10.1109/TNNLS.2016.2520099 +Zied Malouche,Adaptive unsupervised extraction of one component of a linear mixture with a single neuron.,1998,9,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn9.html#MaloucheM98,https://doi.org/10.1109/72.655034 +Olga Isupova,Learning Methods for Dynamic Topic Modeling in Automated Behavior Analysis.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#IsupovaKM18,https://doi.org/10.1109/TNNLS.2017.2735364 +Stephen I. Gallant,Perceptron-based learning algorithms.,1990,1,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn1.html#Gallant90,https://doi.org/10.1109/72.80230 +Tianping Chen,Global mu -Synchronization of Linearly Coupled Unbounded Time-Varying Delayed Neural Networks With Unbounded Delayed Coupling.,2008,19,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn19.html#ChenWZ08,https://doi.org/10.1109/TNN.2008.2001773 +Sheng-Sung Yang,Sensitivity Analysis of the Split-Complex Valued Multilayer Perceptron Due to the Errors of the i.i.d. Inputs and Weights.,2007,18,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn18.html#YangHS07,https://doi.org/10.1109/TNN.2007.894038 +Claus Nebauer,Evaluation of convolutional neural networks for visual recognition.,1998,9,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn9.html#Nebauer98,https://doi.org/10.1109/72.701181 +Davide Anguita,In-Sample and Out-of-Sample Model Selection and Error Estimation for Support Vector Machines.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn23.html#AnguitaGOR12,https://doi.org/10.1109/TNNLS.2012.2202401 +Haim Bar,Competition and cooperation in neuronal processing.,2003,14,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn14.html#BarMA03,https://doi.org/10.1109/TNN.2003.813822 +Igor N. Aizenberg,Periodic Activation Function and a Modified Learning Algorithm for the Multivalued Neuron.,2010,21,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn21.html#Aizenberg10,https://doi.org/10.1109/TNN.2010.2082561 +Xuhui Fan,Dynamic Infinite Mixed-Membership Stochastic Blockmodel.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn26.html#FanCX15,https://doi.org/10.1109/TNNLS.2014.2369374 +Mohamad H. Hassoun,Artificial Neural Networks for Modelling and Control of Nonlinear Systems [Book Reviews].,1996,7,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn7.html#Hassoun96e,https://doi.org/10.1109/TNN.1996.536329 +Guoqing Chao,Alternative Multiview Maximum Entropy Discrimination.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn27.html#ChaoS16,https://doi.org/10.1109/TNNLS.2015.2442256 +Toshihiko Shimizu,Robust Sensorimotor Representation to Physical Interaction Changes in Humanoid Motion Learning.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn26.html#ShimizuSIIM15,https://doi.org/10.1109/TNNLS.2014.2333092 +Bobby R. Hunt,Synthesis of a nonrecurrent associative memory model based on a nonlinear transformation in the spectral domain.,1993,4,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn4.html#HuntNKVG93,https://doi.org/10.1109/72.248464 +Alexander A. Frolov,Recurrent-Neural-Network-Based Boolean Factor Analysis and Its Application to Word Clustering.,2009,20,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn20.html#FrolovHP09,https://doi.org/10.1109/TNN.2009.2016090 +Boris Igelnik,Stochastic choice of basis functions in adaptive function approximation and the functional-link net.,1995,6,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn6.html#IgelnikP95,https://doi.org/10.1109/72.471375 +Michael J. Mendenhall,Relevance-Based Feature Extraction for Hyperspectral Images.,2008,19,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn19.html#MendenhallM08,https://doi.org/10.1109/TNN.2007.914156 +Vicente Ruiz de Angulo,On-line learning with minimal degradation in feedforward networks.,1995,6,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn6.html#AnguloT95,https://doi.org/10.1109/72.377971 +Lipo Wang,Discrete-time convergence theory and updating rules for neural networks with energy functions.,1997,8,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn8.html#Wang97,https://doi.org/10.1109/72.557700 +Yuanyuan Zhao,Self-Organizing Approximation-Based Control for Higher Order Systems.,2007,18,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn18.html#ZhaoF07,https://doi.org/10.1109/TNN.2007.899217 +John Wawrzynek,The design of a neuro-microprocessor.,1993,4,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn4.html#WawrzynekAM93,https://doi.org/10.1109/72.217180 +Aristides S. Galanopoulos,Codeword distribution for frequency sensitive competitive learning with one-dimensional input data.,1996,7,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn7.html#GalanopoulosA96,https://doi.org/10.1109/72.501731 +Michael E. Mavroforakis,A geometric approach to Support Vector Machine (SVM) classification.,2006,17,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn17.html#MavroforakisT06,https://doi.org/10.1109/TNN.2006.873281 +Zhimin Wang,Robust Curve Clustering Based on a Multivariate t -Distribution Model.,2010,21,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn21.html#WangSSS10,https://doi.org/10.1109/TNN.2010.2079946 +Cong Wang,Rapid Detection of Small Oscillation Faults via Deterministic Learning.,2011,22,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn22.html#WangC11a,https://doi.org/10.1109/TNN.2011.2159622 +Zidong Wang,State estimation for delayed neural networks.,2005,16,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn16.html#WangHL05,https://doi.org/10.1109/TNN.2004.841813 +Xiaofeng Zhu,Robust Joint Graph Sparse Coding for Unsupervised Spectral Feature Selection.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn28.html#ZhuLZJW17,https://doi.org/10.1109/TNNLS.2016.2521602 +Robert Hecht-Nielsen,Self-Organizing Maps [Book Reviews].,1996,7,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn7.html#Hecht-Nielsen96,https://doi.org/10.1109/TNN.1996.548190 +Xin Xu 0001,Hierarchical Approximate Policy Iteration With Binary-Tree State Space Decomposition.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#XuLYH11,https://doi.org/10.1109/TNN.2011.2168422 +Jorma Laaksonen,PicSOM-self-organizing image retrieval with MPEG-7 content descriptors.,2002,13,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn13.html#LaaksonenKO02,https://doi.org/10.1109/TNN.2002.1021885 +Ming Sun 0003,Hysteretic Noisy Chaotic Neural Networks for Resource Allocation in OFDMA System.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn29.html#SunLXB18,https://doi.org/10.1109/TNNLS.2016.2618898 +Qing Tao,A novel continuous-time neural network for realizing associative memory.,2001,12,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn12.html#TaoFQ01,https://doi.org/10.1109/72.914536 +Roberto Fierimonte,Fully Decentralized Semi-supervised Learning via Privacy-preserving Matrix Completion.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn28.html#FierimonteSUP17,https://doi.org/10.1109/TNNLS.2016.2597444 +Wei Liu 0001,Analysis and Online Realization of the CCA Approach for Blind Source Separation.,2007,18,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn18.html#LiuMC07,https://doi.org/10.1109/TNN.2007.894017 +Mohammad Mahvash,Synaptic Variability in a Cortical Neuromorphic Circuit.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn24.html#MahvashP13,https://doi.org/10.1109/TNNLS.2012.2231879 +Luping Zhou,Feature selection with redundancy-constrained class separability.,2010,21,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn21.html#ZhouWS10,https://doi.org/10.1109/TNN.2010.2044189 +Naira Hovakimyan,Adaptive output feedback control of uncertain nonlinear systems using single-hidden-layer neural networks.,2002,13,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn13.html#HovakimyanNCK02,https://doi.org/10.1109/TNN.2002.804289 +Patrick A. Shoemaker,A note on least-squares learning procedures and classification by neural network models.,1991,2,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn2.html#Shoemaker91,https://doi.org/10.1109/72.80304 +Shuai Li,Selective Positive-Negative Feedback Produces the Winner-Take-All Competition in Recurrent Neural Networks.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn24.html#LiLL13,https://doi.org/10.1109/TNNLS.2012.2230451 +Ivan Jordanov,Neural Network Learning With Global Heuristic Search.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#JordanovG07,https://doi.org/10.1109/TNN.2007.891633 +Xichuan Zhou,DANoC: An Efficient Algorithm and Hardware Codesign of Deep Neural Networks on Chip.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#ZhouLTHLZ18,https://doi.org/10.1109/TNNLS.2017.2717442 +Igor N. Aizenberg,MLMVN With Soft Margins Learning.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn25.html#Aizenberg14,https://doi.org/10.1109/TNNLS.2014.2301802 +John O. Moody,The dependence identification neural network construction algorithm.,1996,7,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn7.html#MoodyA96,https://doi.org/10.1109/72.478388 +Jianfeng Feng,Training integrate-and-fire neurons with the Informax principle II.,2003,14,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn14.html#FengSBW03,https://doi.org/10.1109/TNN.2003.809419 +Lin Zhao 0001,A Novel Chaotic Neural Network With the Ability to Characterize Local Features and Its Application.,2009,20,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn20.html#ZhaoSCX09,https://doi.org/10.1109/TNN.2009.2015943 +Zheng Zhang 0006,Discriminative Block-Diagonal Representation Learning for Image Recognition.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#ZhangXSY18,https://doi.org/10.1109/TNNLS.2017.2712801 +Z. Yuan,Convergence of Nonautonomous Cohen-Grossberg-Type Neural Networks With Variable Delays.,2008,19,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn19.html#YuanHHL08,https://doi.org/10.1109/TNN.2007.903154 +Daniel W. C. Ho,Adaptive neural control for a class of nonlinearly parametric time-delay systems.,2005,16,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn16.html#HoLN05,https://doi.org/10.1109/TNN.2005.844907 +Changchun Hua,Robust Output Feedback Tracking Control for Time-Delay Nonlinear Systems Using Neural Network.,2007,18,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn18.html#HuaGS07,https://doi.org/10.1109/TNN.2006.888368 +Satoshi Matsuda,Optimal Hopfield network for combinatorial optimization with linear cost function.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#Matsuda98,https://doi.org/10.1109/72.728382 +Bo Tang 0011,A Parametric Classification Rule Based on the Exponentially Embedded Family.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn26.html#TangHDK15,https://doi.org/10.1109/TNNLS.2014.2383692 +Charalampos P. Bechlioulis,A Priori Guaranteed Evolution Within the Neural Network Approximation Set and Robustness Expansion via Prescribed Performance Control.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn23.html#BechlioulisR12,https://doi.org/10.1109/TNNLS.2012.2186152 +Chi-Sing Leung,A Fault-Tolerant Regularizer for RBF Networks.,2008,19,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn19.html#LeungS08,https://doi.org/10.1109/TNN.2007.912320 +Zhanshan Wang,Robust Stability of Cohen-Grossberg Neural Networks via State Transmission Matrix.,2009,20,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn20.html#WangZY09,https://doi.org/10.1109/TNN.2008.2009119 +Yunong Zhang,Global exponential stability of recurrent neural networks for synthesizing linear feedback control systems via pole assignment.,2002,13,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn13.html#ZhangW02,https://doi.org/10.1109/TNN.2002.1000129 +Valeri Mladenov,Design of two-dimensional recursive filters by using neural networks.,2001,12,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn12.html#MladenovM01,https://doi.org/10.1109/72.925560 +Sheng Chen 0001,"Errata to ""The relevance vector machine technique for channel equalization application"".",2002,13,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn13.html#ChenGH02,https://doi.org/10.1109/TNN.2002.1021902 +Yinyin Liu,Optimized Approximation Algorithm in Neural Networks Without Overfitting.,2008,19,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn19.html#LiuSZ08,https://doi.org/10.1109/TNN.2007.915114 +Rodrigo C. de Lamare,Space-Time Adaptive Decision Feedback Neural Receivers With Data Selection for High-Data-Rate Users in DS-CDMA Systems.,2008,19,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn19.html#LamareN08,https://doi.org/10.1109/TNN.2008.2003286 +Q. Gan,A complex valued radial basis function network for equalization of fast time varying channels.,1999,10,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn10.html#GanSSS99,https://doi.org/10.1109/72.774271 +Mao Ye 0001,A Class of Self-Stabilizing MCA Learning Algorithms.,2006,17,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn17.html#YeFL06,https://doi.org/10.1109/TNN.2006.880979 +Yaser S. Abu-Mostafa,Introduction to the special issue on neural networks in financial engineering.,2001,12,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn12.html#Abu-MostafaAMW01,https://doi.org/10.1109/TNN.2001.935079 +Xiaofeng Liao,Asymptotic Stability of a Class of Neutral Delay Neuron System in a Critical Case.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn26.html#LiaoH15,https://doi.org/10.1109/TNNLS.2015.2469148 +Arthur Nádas,Binary classification by stochastic neural nets.,1995,6,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn6.html#Nadas95,https://doi.org/10.1109/72.363484 +Jean M. Steppe,Integrated feature architecture selection.,1996,7,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn7.html#SteppeBR96,https://doi.org/10.1109/72.508942 +Jaroslaw Michalkiewicz,Modified Kolmogorov's Neural Network in the Identification of Hammerstein and Wiener Systems.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn23.html#Michalkiewicz12,https://doi.org/10.1109/TNNLS.2011.2178322 +Stéphane Gazut,Towards the Optimal Design of Numerical Experiments.,2008,19,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn19.html#GazutMDO08,https://doi.org/10.1109/TNN.2007.915111 +Gordon Lightbody,Nonlinear control structures based on embedded neural system models.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#LightbodyI97,https://doi.org/10.1109/72.572095 +Chun-Wei Seah,Transductive Ordinal Regression.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn23.html#SeahTO12,https://doi.org/10.1109/TNNLS.2012.2198240 +Sheng-Fu Liang,Model-based synthesis of plucked string instruments by using a class of scattering recurrent networks.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn11.html#LiangSL00,https://doi.org/10.1109/72.822519 +Yiguang Liu,On the Almost Periodic Solution of Cellular Neural Networks With Distributed Delays.,2007,18,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn18.html#LiuYC07,https://doi.org/10.1109/TNN.2006.885441 +D. A. Panagiotopoulos,Planning with a functional neural network architecture.,1999,10,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn10.html#PanagiotopoulosNS99,https://doi.org/10.1109/72.737498 +Xiaoyu Zhang 0002,Bidirectional Active Learning: A Two-Way Exploration Into Unlabeled and Labeled Data Set.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn26.html#ZhangWY15,https://doi.org/10.1109/TNNLS.2015.2401595 +Jin Zhang,Extracting Representative Information to Enhance Flexible Data Queries.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn23.html#ZhangCT12,https://doi.org/10.1109/TNNLS.2012.2193415 +S. Huh,Linear Discriminant Analysis for Signatures.,2010,21,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn21.html#HuhL10,https://doi.org/10.1109/TNN.2010.2090047 +Kyriakos Voutsas,A Biologically Inspired Spiking Neural Network for Sound Source Lateralization.,2007,18,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn18.html#VoutsasA07,https://doi.org/10.1109/TNN.2007.899623 +Ronald G. Spencer,Bipolar spectral associative memories.,2001,12,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn12.html#Spencer01,https://doi.org/10.1109/72.925551 +Ehsan Hosseini-Asl,Deep Learning of Part-Based Representation of Data Using Sparse Autoencoders With Nonnegativity Constraints.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn27.html#Hosseini-AslZN16,https://doi.org/10.1109/TNNLS.2015.2479223 +H. Zhang,Stability Analysis of Markovian Jumping Stochastic Cohen-Grossberg Neural Networks With Mixed Time Delays.,2008,19,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn19.html#ZhangW08,https://doi.org/10.1109/TNN.2007.910738 +Behzad Talaei,Output Feedback-Based Boundary Control of Uncertain Coupled Semilinear Parabolic PDE Using Neurodynamic Programming.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#TalaeiJS18a,https://doi.org/10.1109/TNNLS.2017.2669941 +Ying Liu 0020,Firing Rate Propagation Through Neuronal-Astrocytic Network.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn24.html#LiuL13,https://doi.org/10.1109/TNNLS.2013.2245678 +Victor L. Berardi,An empirical investigation of bias and variance in time series forecasting: modeling considerations and error evaluation.,2003,14,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn14.html#BerardiZ03,https://doi.org/10.1109/TNN.2003.810601 +Charlotte Yuk-Fan Ho,Global Convergence and Limit Cycle Behavior of Weights of Perceptron.,2008,19,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn19.html#HoLLN08,https://doi.org/10.1109/TNN.2007.914187 +Nicol N. Schraudolph,"Correction to ""Gradient-Based Manipulation of Nonparametric Entropy Estimates"" [Jul 04 828-837].",2007,18,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn18.html#Schraudolph07,https://doi.org/10.1109/TNN.2007.893149 +Yoshikazu Washizawa,Blind extraction of global signal from multi-channel noisy observations.,2010,21,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn21.html#WashizawaYTC10,https://doi.org/10.1109/TNN.2010.2052828 +Jia Liu,Structure Learning for Deep Neural Networks Based on Multiobjective Optimization.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#LiuGMWL18,https://doi.org/10.1109/TNNLS.2017.2695223 +Lixin Duan,Domain Adaptation From Multiple Sources: A Domain-Dependent Regularization Approach.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn23.html#DuanXT12,https://doi.org/10.1109/TNNLS.2011.2178556 +Michael P. Davenport,Multilevel category structure in the ART-2 network.,2004,15,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn15.html#DavenportT04,https://doi.org/10.1109/TNN.2003.820827 +Chong Jin Ong,An improved algorithm for the solution of the regularization path of support vector machine.,2010,21,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn21.html#OngSY10,https://doi.org/10.1109/TNN.2009.2039000 +Hsien-Leing Tsai,Entropy-based generation of supervised neural networks for classification of structured patterns.,2004,15,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn15.html#TsaiL04,https://doi.org/10.1109/TNN.2004.824253 +Chao-Chee Ku,Diagonal recurrent neural networks for dynamic systems control.,1995,6,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn6.html#KuL95,https://doi.org/10.1109/72.363441 +Hesham Mostafa,Supervised Learning Based on Temporal Coding in Spiking Neural Networks.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#Mostafa18,https://doi.org/10.1109/TNNLS.2017.2726060 +En-Liang Hu,Scalable Nonparametric Low-Rank Kernel Learning Using Block Coordinate Descent.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn26.html#HuK15,https://doi.org/10.1109/TNNLS.2014.2361159 +Savas Sahin,Online Learning ARMA Controllers With Guaranteed Closed-Loop Stability.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn27.html#SahinG16,https://doi.org/10.1109/TNNLS.2015.2480764 +Hui-Liang Jin,Oscillatory neural networks for robotic yo-yo control.,2003,14,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn14.html#JinZ03,https://doi.org/10.1109/TNN.2002.806952 +Yoshihiro Hayakawa,Design of the inverse function delayed neural network for solving combinatorial optimization problems.,2010,21,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn21.html#HayakawaN10,https://doi.org/10.1109/TNN.2009.2035618 +Tianping Chen,Approximation capability in C(R®5*n) by multilayer feedforward networks and related problems.,1995,6,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn6.html#ChenCL95,https://doi.org/10.1109/72.363453 +Rui Zhang,Global Convergence of Online BP Training With Dynamic Learning Rate.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn23.html#ZhangXHW12,https://doi.org/10.1109/TNNLS.2011.2178315 +Martin Andre Agnes Fiers,Nanophotonic Reservoir Computing With Photonic Crystal Cavities to Generate Periodic Patterns.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn25.html#FiersVWVSDB14,https://doi.org/10.1109/TNNLS.2013.2274670 +Douglas A. G. Vieira,The Q -Norm Complexity Measure and the Minimum Gradient Method: A Novel Approach to the Machine Learning Structural Risk Minimization Problem.,2008,19,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn19.html#VieiraTPVC08,https://doi.org/10.1109/TNN.2008.2000442 +Dragan Obradovic,On-line training of recurrent neural networks with continuous topology adaptation.,1996,7,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn7.html#Obradovic96,https://doi.org/10.1109/72.478408 +Shawn P. Day,Continuous-time temporal back-propagation with adaptable time delays.,1993,4,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn4.html#DayD93,https://doi.org/10.1109/72.207622 +H. Schiff,A hardware implementation of a biological neural system for target localization.,1994,5,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn5.html#SchiffBCF94,https://doi.org/10.1109/72.286907 +Alberto Antonietti,Model-Driven Analysis of Eyeblink Classical Conditioning Reveals the Underlying Structure of Cerebellar Plasticity and Neuronal Activity.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn28.html#AntoniettiCDP17,https://doi.org/10.1109/TNNLS.2016.2598190 +Denis Kleyko,Holographic Graph Neuron: A Bioinspired Architecture for Pattern Processing.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn28.html#KleykoOSKS17,https://doi.org/10.1109/TNNLS.2016.2535338 +Giovanni Costantini,Associative memory design for 256 gray-level images using a multilayer neural network.,2006,17,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn17.html#CostantiniCP06,https://doi.org/10.1109/TNN.2005.863465 +Hongwei Sun,Sparse Representation in Kernel Machines.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn26.html#SunW15,https://doi.org/10.1109/TNNLS.2014.2375209 +Qiang Yu 0005,Rapid Feedforward Computation by Temporal Encoding and Learning With Spiking Neurons.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn24.html#YuTTL13,https://doi.org/10.1109/TNNLS.2013.2245677 +Olcay Taner Yildiz,Omnivariate decision trees.,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#YildizA01,https://doi.org/10.1109/72.963795 +Andrea Baraldi,Constructive feedforward ART clustering networks. I.,2002,13,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn13.html#BaraldiA02,https://doi.org/10.1109/TNN.2002.1000130 +Yunwen Lei,Generalization Performance of Radial Basis Function Networks.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn26.html#LeiDZ15,https://doi.org/10.1109/TNNLS.2014.2320280 +Nicolaos B. Karayiannis,Accelerating the training of feedforward neural networks using generalized Hebbian rules for initializing the internal representations.,1996,7,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn7.html#Karayiannis96,https://doi.org/10.1109/72.485677 +V. E. Maiorov,Approximation bounds for smooth functions in C(Rd) by neural and mixture networks.,1998,9,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn9.html#MaiorovM98,https://doi.org/10.1109/72.712173 +Michael R. W. Dawson,Simple Artificial Neural Networks That Match Probability and Exploit and Explore When Confronting a Multiarmed Bandit.,2009,20,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn20.html#DawsonDSK09,https://doi.org/10.1109/TNN.2009.2025588 +Giovanni Costantini,Neural associative memory storing gray-coded gray-scale images.,2003,14,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn14.html#CostantiniCP03,https://doi.org/10.1109/TNN.2003.810596 +Xinsong Yang,Synchronization of Markovian Coupled Neural Networks With Nonidentical Node-Delays and Random Coupling Strengths.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn23.html#YangCL12,https://doi.org/10.1109/TNNLS.2011.2177671 +Yuichi Motai,Kernel Association for Classification and Prediction: A Survey.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn26.html#Motai15,https://doi.org/10.1109/TNNLS.2014.2333664 +Eugene Lavretsky,On the geometric convergence of neural approximations.,2002,13,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn13.html#Lavretsky02,https://doi.org/10.1109/72.991414 +Samuel W. K. Chan,Symbolic connectionism in natural language disambiguation.,1998,9,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn9.html#ChanF98,https://doi.org/10.1109/72.712149 +Chih-Hung Chang,Deep and Shallow Architecture of Multilayer Neural Networks.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn26.html#Chang15,https://doi.org/10.1109/TNNLS.2014.2387439 +Hua Huang 0001,Super-Resolution Method for Face Recognition Using Nonlinear Mappings on Coherent Features.,2011,22,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn22.html#HuangH11,https://doi.org/10.1109/TNN.2010.2089470 +Chia-Feng Juang,An Interval Type-2 Neural Fuzzy Chip With On-Chip Incremental Learning Ability for Time-Varying Data Sequence Prediction and System Control.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn25.html#JuangC14,https://doi.org/10.1109/TNNLS.2013.2253799 +Markus Höhfeld,Learning with limited numerical precision using the cascade-correlation algorithm.,1992,3,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn3.html#HohfeldF92,https://doi.org/10.1109/72.143374 +Mauro Brunato,A Telescopic Binary Learning Machine for Training Neural Networks.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn28.html#BrunatoB17,https://doi.org/10.1109/TNNLS.2016.2537300 +Bin Gao 0003,Variational Regularized 2-D Nonnegative Matrix Factorization.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn23.html#GaoWD12,https://doi.org/10.1109/TNNLS.2012.2187925 +Luming Zhang,Image Categorization by Learning a Propagated Graphlet Path.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn27.html#ZhangHGJDL16,https://doi.org/10.1109/TNNLS.2015.2444417 +Zhaowen Xu,Global $H_\infty $ Pinning Synchronization of Complex Networks With Sampled-Data Communications.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#XuSSWH18,https://doi.org/10.1109/TNNLS.2017.2673960 +Ah-Hwee Tan,Integrating Temporal Difference Methods and Self-Organizing Neural Networks for Reinforcement Learning With Delayed Evaluative Feedback.,2008,19,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn19.html#TanLX08,https://doi.org/10.1109/TNN.2007.905839 +Xiaobing Pei,Joint Sparse Representation and Embedding Propagation Learning: A Framework for Graph-Based Semisupervised Learning.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn28.html#PeiCG17,https://doi.org/10.1109/TNNLS.2016.2609434 +ángel Navia-Vázquez,Weighted least squares training of support vector classifiers leading to compact and adaptive schemes.,2001,12,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn12.html#Navia-VazquezPAF01,https://doi.org/10.1109/72.950134 +Akira Hirose,Developmental Learning With Behavioral Mode Tuning by Carrier-Frequency Modulation in Coherent Neural Networks.,2006,17,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn17.html#HiroseAH06,https://doi.org/10.1109/TNN.2006.880361 +Luigi Grippo,Convergent on-line algorithms for supervised learning in neural networks.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn11.html#Grippo00,https://doi.org/10.1109/72.883426 +Cesare Alippi,Just-In-Time Classifiers for Recurrent Concepts.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn24.html#AlippiBR13,https://doi.org/10.1109/TNNLS.2013.2239309 +Stefano Battilotti,Robust output feedback control of nonlinear stochastic systems using neural networks.,2003,14,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn14.html#BattilottiS03,https://doi.org/10.1109/TNN.2002.806609 +Hyun Myung,Time-varying two-phase optimization and its application to neural-network learning.,1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#MyungK97,https://doi.org/10.1109/72.641452 +Zhigang Ma,Joint Attributes and Event Analysis for Multimedia Event Detection.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#MaCXSH18,https://doi.org/10.1109/TNNLS.2017.2709308 +Chi-Yuan Yeh,Data-Based System Modeling Using a Type-2 Fuzzy Neural Network With a Hybrid Learning Algorithm.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#YehJL11,https://doi.org/10.1109/TNN.2011.2170095 +Sanqing Hu,Shortcomings/Limitations of Blockwise Granger Causality and Advances of Blockwise New Causality.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn27.html#HuJZKC16,https://doi.org/10.1109/TNNLS.2015.2497681 +Deyuan Meng,Deterministic Convergence for Learning Control Systems Over Iteration-Dependent Tracking Intervals.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#MengZ18,https://doi.org/10.1109/TNNLS.2017.2734843 +Deniz Erdogmus,Generalized information potential criterion for adaptive system training.,2002,13,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn13.html#ErdogmusP02,https://doi.org/10.1109/TNN.2002.1031936 +Songwu Lu,Robust nonlinear system identification using neural-network models.,1998,9,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn9.html#LuB98,https://doi.org/10.1109/72.668883 +Jiancheng Lv,Determination of the Number of Principal Directions in a Biologically Plausible PCA Model.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#LvYT07,https://doi.org/10.1109/TNN.2007.891193 +Jyh-Ching Juang,Stability analysis of Hopfield-type neural networks.,1999,10,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn10.html#Juang99,https://doi.org/10.1109/72.809081 +Ning Li,Lag Synchronization of Memristor-Based Coupled Neural Networks via ω*-Measure.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn27.html#LiC16,https://doi.org/10.1109/TNNLS.2015.2480784 +Chih-Min Lin,Self-Organizing CMAC Control for a Class of MIMO Uncertain Nonlinear Systems.,2009,20,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn20.html#LinC09a,https://doi.org/10.1109/TNN.2009.2013852 +Aydogan Savran,Multifeedback-Layer Neural Network.,2007,18,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn18.html#Savran07,https://doi.org/10.1109/TNN.2006.885439 +James Tin-Yau Kwok,The evidence framework applied to support vector machines.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn11.html#Kwok00,https://doi.org/10.1109/72.870047 +Jesús Cid-Sueiro,Cost functions to estimate a posteriori probabilities in multiclass problems.,1999,10,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn10.html#Cid-SueiroAUF99,https://doi.org/10.1109/72.761724 +Sunan Huang 0001,A decentralized control of interconnected systems using neural networks.,2002,13,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn13.html#HuangTL02,https://doi.org/10.1109/TNN.2002.804230 +Alma Y. Alanis,Real-Time Recurrent Neural State Estimation.,2011,22,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn22.html#AlanisSLC11,https://doi.org/10.1109/TNN.2010.2103322 +I. G. Ali,Design quality and robustness with neural networks.,1999,10,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn10.html#AliC99,https://doi.org/10.1109/72.809098 +Yash Shrivastava,Guaranteed convergence in a class of Hopfield networks.,1992,3,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn3.html#ShrivastavaDR92,https://doi.org/10.1109/72.165596 +Yun-Chung Chu,Bounds of the incremental gain for discrete-time recurrent neural networks.,2002,13,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn13.html#Chu02,https://doi.org/10.1109/TNN.2002.1031941 +Ron Meir,On the optimality of neural-network approximation using incremental algorithms.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn11.html#MeirM00,https://doi.org/10.1109/72.839004 +Jiali Yu,Continuous attractors of Lotka-Volterra recurrent neural networks with infinite neurons.,2010,21,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn21.html#YuYZ10,https://doi.org/10.1109/TNN.2010.2067224 +Keem Siah Yap,Improved GART Neural Network Model for Pattern Classification and Rule Extraction With Application to Power Systems.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#YapLA11,https://doi.org/10.1109/TNN.2011.2173502 +Shen-Shyang Ho,Manifold Learning for Multivariate Variable-Length Sequences With an Application to Similarity Search.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn27.html#HoDR16,https://doi.org/10.1109/TNNLS.2015.2399102 +S. Gaerth Pierce,Evaluation of Neural Network Robust Reliability Using Information-Gap Theory.,2006,17,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn17.html#PierceBWM06,https://doi.org/10.1109/TNN.2006.880363 +Erkki Oja,The FastICA Algorithm Revisited: Convergence Analysis.,2006,17,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn17.html#OjaY06,https://doi.org/10.1109/TNN.2006.880980 +P.-Y. L'Esperance,Model of an Excitatory Synapse Based on Stochastic Processes.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn24.html#LEsperanceL13,https://doi.org/10.1109/TNNLS.2013.2260559 +Srinivasa V. Chakravarthy,Scale-based clustering using the radial basis function network.,1996,7,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn7.html#ChakravarthyG96,https://doi.org/10.1109/72.536318 +Terry Windeatt,Accuracy/Diversity and Ensemble MLP Classifier Design.,2006,17,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn17.html#Windeatt06,https://doi.org/10.1109/TNN.2006.875979 +Lan Zou,Analysis of Continuous Attractors for 2-D Linear Threshold Neural Networks.,2009,20,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn20.html#ZouTTZ09,https://doi.org/10.1109/TNN.2008.2009535 +Cesare Alippi,A Cognitive Fault Diagnosis System for Distributed Sensor Networks.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn24.html#AlippiNR13,https://doi.org/10.1109/TNNLS.2013.2253491 +Manuel Fernández Delgado,MART: a multichannel ART-based neural network.,1998,9,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn9.html#DelgadoB98,https://doi.org/10.1109/72.655035 +Ganesh K. Venayagamoorthy,Implementation of adaptive critic-based neurocontrollers for turbogenerators in a multimachine power system.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#VenayagamoorthyHW03,https://doi.org/10.1109/TNN.2003.816054 +Chaitanya Tumuluri,An evidential extension of the MRII training algorithm for detecting erroneous MADALINE responses.,1995,6,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn6.html#TumuluriV95,https://doi.org/10.1109/72.392250 +Bukhari Che Ujang,Quaternion-Valued Nonlinear Adaptive Filtering.,2011,22,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn22.html#UjangTM11,https://doi.org/10.1109/TNN.2011.2157358 +Yi Shen,Robustness Analysis of Global Exponential Stability of Recurrent Neural Networks in the Presence of Time Delays and Random Disturbances.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn23.html#ShenW12,https://doi.org/10.1109/TNNLS.2011.2178326 +Jianping Zhou,Robust Exponential Stability of Uncertain Stochastic Neural Networks With Distributed Delays and Reaction-Diffusions.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn23.html#ZhouXZZS12,https://doi.org/10.1109/TNNLS.2012.2203360 +Vu Ngoc Phat,Exponential stabilization of neural networks with various activation functions and mixed time-varying delays.,2010,21,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn21.html#PhatT10,https://doi.org/10.1109/TNN.2010.2049118 +Yakout Mansour,Dynamic security contingency screening and ranking using neural networks.,1997,8,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn8.html#MansourVE97,https://doi.org/10.1109/72.595894 +Heejin Lim,Extrapolative Delay Compensation Through Facilitating Synapses and Its Relation to the Flash-Lag Effect.,2008,19,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn19.html#LimC08,https://doi.org/10.1109/TNN.2008.2001002 +Ruibin Feng,Properties and Performance of Imperfect Dual Neural Network-Based k WTA Networks.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn26.html#FengLSX15,https://doi.org/10.1109/TNNLS.2014.2358851 +Jing Yuan,Collision identification between convex polyhedra using neural networks.,1995,6,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn6.html#Yuan95,https://doi.org/10.1109/72.471366 +Gopathy Purushothaman,Quantum neural networks (QNNs): inherently fuzzy feedforward neural networks.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#PurushothamanK97,https://doi.org/10.1109/72.572106 +Daewon Lee,Constructing Sparse Kernel Machines Using Attractors.,2009,20,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn20.html#LeeJL09,https://doi.org/10.1109/TNN.2009.2014059 +Quan Quan,A New Continuous-Time Equality-Constrained Optimization to Avoid Singularity.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn27.html#QuanC16,https://doi.org/10.1109/TNNLS.2015.2476348 +Manuel Graña Romay,Image Understanding Applications of Lattice Autoassociative Memories.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn27.html#RomayC16,https://doi.org/10.1109/TNNLS.2015.2461451 +Jinn-Wen Wu,Cellular Neural Field and Its Convergence Analysis.,2006,17,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn17.html#WuL06,https://doi.org/10.1109/TNN.2006.881058 +Chen Gong 0002,Fick's Law Assisted Propagation for Semisupervised Learning.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn26.html#GongTF015,https://doi.org/10.1109/TNNLS.2014.2376963 +Xiwei Liu,Synchronization of Nonlinear Coupled Networks via Aperiodically Intermittent Pinning Control.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn26.html#LiuC15,https://doi.org/10.1109/TNNLS.2014.2311838 +Günhan Dündar,The effects of quantization on multilayer neural networks.,1995,6,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn6.html#DundarR95,https://doi.org/10.1109/72.471364 +Roberto Tagliaferri,Automated labeling for unsupervised neural networks: a hierarchical approach.,1999,10,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn10.html#TagliaferriCG99,https://doi.org/10.1109/72.737509 +Xiaochun Cao,Saliency-Aware Nonparametric Foreground Annotation Based on Weakly Labeled Data.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn27.html#CaoZFGT16,https://doi.org/10.1109/TNNLS.2015.2488637 +Derong Liu,Editorial: The Blossoming of the IEEE Transactions on Neural Networks.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#Liu11,https://doi.org/10.1109/TNN.2011.2176769 +Guanyu Lai,Adaptive Position/Attitude Tracking Control of Aerial Robot With Unknown Inertial Matrix Based on a New Robust Neural Identifier.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn27.html#LaiLZC16,https://doi.org/10.1109/TNNLS.2015.2406812 +Woon Jeung Park,Pattern Classification With Class Probability Output Network.,2009,20,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn20.html#ParkK09,https://doi.org/10.1109/TNN.2009.2029103 +Harold J. Levy,A feedforward artificial neural network based on quantum effect vector-matrix multipliers.,1993,4,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn4.html#LevyM93,https://doi.org/10.1109/72.217184 +Adam Kowalczyk,Developing higher-order networks with empirically selected units.,1994,5,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn5.html#KowalczykF94,https://doi.org/10.1109/72.317722 +Seng Poh Lim,Cube Kohonen Self-Organizing Map (CKSOM) Model With New Equations in Organizing Unstructured Data.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn24.html#LimH13,https://doi.org/10.1109/TNNLS.2013.2259259 +Renzo Perfetti,Existence of binary invariant sets in feedback neural networks with application to synthesis.,1993,4,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn4.html#Perfetti93,https://doi.org/10.1109/72.182709 +Han-Xiong Li,An approximate internal model-based neural control for unknown nonlinear discrete processes.,2006,17,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn17.html#LiD06,https://doi.org/10.1109/TNN.2006.873277 +Zhuo Meng,Visualization and self-organization of multidimensional data through equalized orthogonal mapping.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn11.html#MengP00,https://doi.org/10.1109/72.857784 +Sheng Chen 0001,Combined genetic algorithm optimization and regularized orthogonal least squares learning for radial basis function networks.,1999,10,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn10.html#ChenWL99,https://doi.org/10.1109/72.788663 +De-Shuang Huang,Zeroing polynomials using modified constrained neural network approach.,2005,16,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn16.html#HuangILC05,https://doi.org/10.1109/TNN.2005.844912 +Ali Rodan,Minimum Complexity Echo State Network.,2011,22,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn22.html#RodanT11,https://doi.org/10.1109/TNN.2010.2089641 +Pak Cheung Edgar An,A global gradient-noise covariance expression for stationary real Gaussian inputs.,1995,6,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn6.html#AnB095,https://doi.org/10.1109/72.471354 +Yan Liu,The Stability of Stochastic Coupled Systems With Time-Varying Coupling and General Topology Structure.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#LiuLF18,https://doi.org/10.1109/TNNLS.2017.2757767 +Yisen Wang,A Novel Consistent Random Forest Framework: Bernoulli Random Forests.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#WangXTWZ18,https://doi.org/10.1109/TNNLS.2017.2729778 +Mengyang Yu,Binary Set Embedding for Cross-Modal Retrieval.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn28.html#YuLS17,https://doi.org/10.1109/TNNLS.2016.2609463 +Ronghu Chi,Enhanced Data-Driven Optimal Terminal ILC Using Current Iteration Control Knowledge.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn26.html#ChiHJWC15,https://doi.org/10.1109/TNNLS.2015.2461022 +Michael Syskind Pedersen,Two-Microphone Separation of Speech Mixtures.,2008,19,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn19.html#PedersenWLK08,https://doi.org/10.1109/TNN.2007.911740 +Raymond Pavloski,The self-trapping attractor neural network-part II: properties of a sparsely connected model storing multiple memories.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#PavloskiK05,https://doi.org/10.1109/TNN.2005.852969 +Lili Zhou,Cluster Synchronization on Multiple Nonlinearly Coupled Dynamical Subnetworks of Complex Networks With Nonidentical Nodes.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn28.html#ZhouWDZ17,https://doi.org/10.1109/TNNLS.2016.2547463 +Huilin Xiong,Branching competitive learning Network: A novel self-creating model.,2004,15,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn15.html#XiongSAK04,https://doi.org/10.1109/TNN.2004.824248 +Anastasios D. Doulamis,On-line retrainable neural networks: improving the performance of neural networks in image analysis problems.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn11.html#DoulamisDK00,https://doi.org/10.1109/72.822517 +Chunlei Peng,Multiple Representations-Based Face Sketch-Photo Synthesis.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn27.html#PengGWTLL16,https://doi.org/10.1109/TNNLS.2015.2464681 +Apostolos-Paul Nicholas Refenes,Neural networks in financial engineering: a study in methodology.,1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#RefenesBB97,https://doi.org/10.1109/72.641449 +Goutam Chakraborty,A novel normalization technique for unsupervised learning in ANN.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn11.html#ChakrabortyC00,https://doi.org/10.1109/72.822529 +Jialue Fan,Human tracking using convolutional neural networks.,2010,21,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn21.html#FanXWG10,https://doi.org/10.1109/TNN.2010.2066286 +Yang Gao 0002,An intelligent adaptive control scheme for postsurgical blood pressure regulation.,2005,16,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn16.html#GaoE05,https://doi.org/10.1109/TNN.2004.841798 +Immanuel M. Bomze,Approximating the maximum weight clique using replicator dynamics.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn11.html#BomzePS00,https://doi.org/10.1109/72.883403 +Shawn Mikula,Correlated inhibitory and excitatory inputs to the coincidence detector: analytical solution.,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#MikulaN04,https://doi.org/10.1109/TNN.2004.832708 +Lijuan Cao,Parallel sequential minimal optimization for the training of support vector machines.,2006,17,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn17.html#CaoKOZPFL06,https://doi.org/10.1109/TNN.2006.875989 +Shyam Prasad Adhikari,Memristor Bridge Synapse-Based Neural Network and Its Learning.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn23.html#AdhikariYKC12,https://doi.org/10.1109/TNNLS.2012.2204770 +Robert Coop,Ensemble Learning in Fixed Expansion Layer Networks for Mitigating Catastrophic Forgetting.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn24.html#CoopMA13,https://doi.org/10.1109/TNNLS.2013.2264952 +Mahmoud K. Habib,Neuron type processor modeling using a timed Petri net.,1990,1,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn1.html#HabibN90,https://doi.org/10.1109/72.80264 +Rogelio Palomera-Garcia,Information processing with fuzzy logic-Piero Bonissone.,1994,5,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn5.html#Palomera-Garcia94,https://doi.org/10.1109/72.298238 +Jennie Si,Analysis and synthesis of a class of discrete-time neural networks with multilevel threshold neurons.,1995,6,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn6.html#SiM95,https://doi.org/10.1109/72.363445 +Ali Heydari,Optimal Switching of DC-DC Power Converters Using Approximate Dynamic Programming.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn29.html#Heydari18,https://doi.org/10.1109/TNNLS.2016.2635586 +Sushmita Mitra,Knowledge-based fuzzy MLP for classification and rule generation.,1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#MitraDP97,https://doi.org/10.1109/72.641457 +Narayan Srinivasa,A Robust and Scalable Neuromorphic Communication System by Combining Synaptic Time Multiplexing and MIMO-OFDM.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn25.html#SrinivasaZG14,https://doi.org/10.1109/TNNLS.2013.2280126 +Nannan Wang,Transductive Face Sketch-Photo Synthesis.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn24.html#WangTGLL13,https://doi.org/10.1109/TNNLS.2013.2258174 +Wu-Hua Chen,Improved Delay-Dependent Asymptotic Stability Criteria for Delayed Neural Networks.,2008,19,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn19.html#ChenZ08,https://doi.org/10.1109/TNN.2008.2006904 +Paolo Ienne,Modified self-organizing feature map algorithms for efficient digital hardware implementation.,1997,8,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn8.html#IenneTV97,https://doi.org/10.1109/72.557669 +Xingang Fu,Training Recurrent Neural Networks With the Levenberg-Marquardt Algorithm for Optimal Control of a Grid-Connected Converter.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn26.html#FuLFWA15,https://doi.org/10.1109/TNNLS.2014.2361267 +Yan-Jun Liu,Neural Network Control-Based Adaptive Learning Design for Nonlinear Systems With Full-State Constraints.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn27.html#LiuLTC16,https://doi.org/10.1109/TNNLS.2015.2508926 +Boudour Ammar,Existence and Uniqueness of Pseudo Almost-Periodic Solutions of Recurrent Neural Networks With Time-Varying Coefficients and Mixed Delays.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn23.html#AmmarCA12,https://doi.org/10.1109/TNNLS.2011.2178444 +Binbin Pan,A Novel Framework for Learning Geometry-Aware Kernels.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn27.html#PanCXC16,https://doi.org/10.1109/TNNLS.2015.2429682 +Xiao-Ping Zhang,Thresholding neural network for adaptive noise reduction.,2001,12,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn12.html#Zhang01,https://doi.org/10.1109/72.925559 +Michele Milano,Self-organizing nets for optimization.,2004,15,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn15.html#MilanoKS04,https://doi.org/10.1109/TNN.2004.826132 +Derui Ding,H∞ State Estimation for Discrete-Time Complex Networks With Randomly Occurring Sensor Saturations and Randomly Varying Sensor Delays.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn23.html#DingWSS12,https://doi.org/10.1109/TNNLS.2012.2187926 +Thiago F. Covoes,Competitive Learning With Pairwise Constraints.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn24.html#CovoesHG13,https://doi.org/10.1109/TNNLS.2012.2227064 +Jesús Cid-Sueiro,On the structure of strict sense Bayesian cost functions and its applications.,2001,12,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn12.html#Cid-SueiroF01,https://doi.org/10.1109/72.925549 +Snehasis Mukhopadhyay,Disturbance rejection in nonlinear systems using neural networks.,1993,4,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn4.html#MukhopadhyayN93,https://doi.org/10.1109/72.182696 +Junhong Nie,A dynamic channel assignment policy through Q-learning.,1999,10,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn10.html#NieH99,https://doi.org/10.1109/72.809089 +Faa-Jeng Lin,Robust Dynamic Sliding-Mode Control Using Adaptive RENN for Magnetic Levitation System.,2009,20,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn20.html#LinCS09,https://doi.org/10.1109/TNN.2009.2014228 +Chi-Sing Leung,Transmission of vector quantized data over a noisy channel.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#LeungC97,https://doi.org/10.1109/72.572097 +Donald F. Specht,A general regression neural network.,1991,2,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn2.html#Specht91,https://doi.org/10.1109/72.97934 +Jesús González 0001,A new clustering technique for function approximation.,2002,13,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn13.html#GonzalezROP02,https://doi.org/10.1109/72.977289 +Jing Liu 0006,"Comments on ""The 1993 DIMACS graph coloring Challenge"" and ""Energy function-based approaches to graph Coloring"".",2006,17,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn17.html#LiuZJ06,https://doi.org/10.1109/TNN.2005.860887 +Haibo Bao,Exponential Synchronization of Coupled Stochastic Memristor-Based Neural Networks With Time-Varying Probabilistic Delay Coupling and Impulsive Delay.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn27.html#BaoPC16,https://doi.org/10.1109/TNNLS.2015.2475737 +Rabindra K. Mishra,NFDTD concept.,2005,16,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn16.html#MishraH05,https://doi.org/10.1109/TNN.2004.841799 +Chengan Guo,A Neurodynamic Optimization Method for Recovery of Compressive Sensed Signals With Globally Converged Solution Approximating to l0 Minimization.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn26.html#GuoY15,https://doi.org/10.1109/TNNLS.2014.2341654 +Jean Pierre Delmas,Asymptotic distributions associated to Oja's learning equation for neural networks.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#DelmasC98,https://doi.org/10.1109/72.728373 +Chuan-Kai Lin,An adaptive H∞ controller design for bank-to-turn missiles using ridge Gaussian neural networks.,2004,15,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn15.html#LinW04,https://doi.org/10.1109/TNN.2004.824418 +Fei Wang 0001,Linear time maximum margin clustering.,2010,21,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn21.html#WangZZ10,https://doi.org/10.1109/TNN.2009.2036998 +Haixian Wang,Locality-Preserved Maximum Information Projection.,2008,19,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn19.html#WangCHZ08,https://doi.org/10.1109/TNN.2007.910733 +Ray-I Chang,Unsupervised query-based learning of neural networks using selective-attention and self-regulation.,1997,8,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn8.html#ChangH97,https://doi.org/10.1109/72.557657 +Kevin I.-J. Ho,Convergence and objective functions of some fault/noise-injection-based online learning algorithms for RBF networks.,2010,21,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn21.html#HoLS10,https://doi.org/10.1109/TNN.2010.2046179 +Jacek M. Zurada,Editorial - year 2002: submission options streamlined.,2002,13,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn13.html#Zurada02,https://doi.org/10.1109/TNN.2002.977257 +Zesheng Chen,Spatial-temporal modeling of malware propagation in networks.,2005,16,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn16.html#ChenJ05,https://doi.org/10.1109/TNN.2005.853425 +Joon-Ku Im,Tangent Hyperplane Kernel Principal Component Analysis for Denoising.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn23.html#ImAR12,https://doi.org/10.1109/TNNLS.2012.2185950 +Yanhui Xiao,Kernel Reconstruction ICA for Sparse Representation.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn26.html#XiaoZZWW15,https://doi.org/10.1109/TNNLS.2014.2334711 +Li-Min Fu,Discrete probability estimation for classification using certainty-factor-based neural networks.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn11.html#Fu00,https://doi.org/10.1109/72.839011 +Nan Zheng,Online Supervised Learning for Hardware-Based Multilayer Spiking Neural Networks Through the Modulation of Weight-Dependent Spike-Timing-Dependent Plasticity.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#ZhengM18,https://doi.org/10.1109/TNNLS.2017.2761335 +John J. Shynk,Performance surfaces of a single-layer perceptron.,1990,1,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn1.html#Shynk90,https://doi.org/10.1109/72.80252 +Tianshui Chen,DISC: Deep Image Saliency Computing via Progressive Representation Learning.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn27.html#ChenLLLL16,https://doi.org/10.1109/TNNLS.2015.2506664 +Hongliang Li,Manifold Regularized Reinforcement Learning.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#LiLW18,https://doi.org/10.1109/TNNLS.2017.2650943 +William J. Wolfe,K-winner networks.,1991,2,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn2.html#WolfeMARGBWDA91,https://doi.org/10.1109/72.80342 +Azadeh Soltani,Confabulation-Inspired Association Rule Mining for Rare and Frequent Itemsets.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn25.html#SoltaniA14,https://doi.org/10.1109/TNNLS.2014.2303137 +Wei Bian,Constrained Empirical Risk Minimization Framework for Distance Metric Learning.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn23.html#BianT12,https://doi.org/10.1109/TNNLS.2012.2198075 +K. Chen,Feedforward Neural Network Methodology.,2001,12,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn12.html#ChenKKH01b,https://doi.org/10.1109/TNN.2001.925573 +Xiaozhao Fang,Regularized Label Relaxation Linear Regression.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#FangXLLWF18,https://doi.org/10.1109/TNNLS.2017.2648880 +Arindam Banerjee,Frequency-sensitive competitive learning for scalable balanced clustering on high-dimensional hyperspheres.,2004,15,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn15.html#BanerjeeG04,https://doi.org/10.1109/TNN.2004.824416 +Hong-Gui Han,Adaptive Computation Algorithm for RBF Neural Network.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn23.html#HanQ12,https://doi.org/10.1109/TNNLS.2011.2178559 +Vikas Sindhwani,Feature selection in MLPs and SVMs based on maximum output information.,2004,15,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn15.html#SindhwaniRDEPN04,https://doi.org/10.1109/TNN.2004.828772 +Zhicong Qiu,A Maximum Entropy Framework for Semisupervised and Active Learning With Unknown and Label-Scarce Classes.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn28.html#QiuMK17,https://doi.org/10.1109/TNNLS.2016.2514401 +Sandro Ridella,Circular backpropagation networks for classification.,1997,8,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn8.html#RidellaRZ97,https://doi.org/10.1109/72.554194 +Giovanni Costantini,Quasi-Lagrangian Neural Network for Convex Quadratic Optimization.,2008,19,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn19.html#CostantiniPT08,https://doi.org/10.1109/TNN.2008.2001183 +Gregor P. J. Schmitz,ANN-DT: an algorithm for extraction of decision trees from artificial neural networks.,1999,10,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn10.html#SchmitzAG99,https://doi.org/10.1109/72.809084 +B. Fei,Binary tree of SVM: a new fast multiclass training and classification algorithm.,2006,17,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn17.html#FeiL06,https://doi.org/10.1109/TNN.2006.872343 +Gao Huang,Robust Support Vector Regression for Uncertain Input and Output Data.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn23.html#HuangSWY12,https://doi.org/10.1109/TNNLS.2012.2212456 +Yi-Fei Pu,Fractional Extreme Value Adaptive Training Method: Fractional Steepest Descent Approach.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn26.html#PuZZZHS15,https://doi.org/10.1109/TNNLS.2013.2286175 +Zhi-Hong Guan,Impulsive Multiconsensus of Second-Order Multiagent Networks Using Sampled Position Data.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn26.html#GuanHLHF15,https://doi.org/10.1109/TNNLS.2015.2389531 +Mauro Forti,Some extensions of a new method to analyze complete stability of neural networks.,2002,13,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn13.html#Forti02,https://doi.org/10.1109/TNN.2002.1031956 +Jung H. Kim,The geometrical learning of binary neural networks.,1995,6,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn6.html#KimP95,https://doi.org/10.1109/72.363432 +Jim Y. F. Yam,Extended least squares based algorithm for training feedforward networks.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#YamC97,https://doi.org/10.1109/72.572119 +Huaicheng Yan,Event-Triggered Asynchronous Guaranteed Cost Control for Markov Jump Discrete-Time Neural Networks With Distributed Delay and Channel Fading.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#YanZYZP18,https://doi.org/10.1109/TNNLS.2017.2732240 +Shaoyun Chen,State-based SHOSLIF for indoor visual navigation.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn11.html#ChenW00,https://doi.org/10.1109/72.883430 +Ke Chen 0001,Weight adaptation and oscillatory correlation for image segmentation.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn11.html#ChenWL00,https://doi.org/10.1109/72.870043 +Hanjiang Lai,FSMRank: Feature Selection Algorithm for Learning to Rank.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn24.html#LaiPTY13,https://doi.org/10.1109/TNNLS.2013.2247628 +Wentao Guo,Policy Approximation in Policy Iteration Approximate Dynamic Programming for Discrete-Time Nonlinear Systems.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#GuoSLM18,https://doi.org/10.1109/TNNLS.2017.2702566 +Eyal Kolman,Knowledge Extraction From Neural Networks Using the All-Permutations Fuzzy Rule Base: The LED Display Recognition Problem.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#KolmanM07,https://doi.org/10.1109/TNN.2007.891686 +Jianming Lian,Self-Organizing Radial Basis Function Network for Real-Time Approximation of Continuous-Time Dynamical Systems.,2008,19,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn19.html#LianLSZ08,https://doi.org/10.1109/TNN.2007.909842 +Bogdan M. Wilamowski,Neural Network Learning Without Backpropagation.,2010,21,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn21.html#WilamowskiY10a,https://doi.org/10.1109/TNN.2010.2073482 +Reza Nekovei,Back-propagation network and its configuration for blood vessel detection in angiograms.,1995,6,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn6.html#NekoveiS95,https://doi.org/10.1109/72.363449 +S. Himavathi,Feedforward Neural Network Implementation in FPGA Using Layer Multiplexing for Effective Resource Utilization.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#HimavathiAM07,https://doi.org/10.1109/TNN.2007.891626 +Zhenzhen Liu,A Fast and Scalable Recurrent Neural Network Based on Stochastic Meta Descent.,2008,19,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn19.html#LiuE08,https://doi.org/10.1109/TNN.2008.2000838 +Chin-Teng Lin,An Interval Type-2 Neural Fuzzy System for Online System Identification and Feature Elimination.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn26.html#LinPWLL15,https://doi.org/10.1109/TNNLS.2014.2346537 +LiMin Fu,Learning capacity and sample complexity on expert networks.,1996,7,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn7.html#Fu96,https://doi.org/10.1109/72.548180 +Dan Wang,A neural network-based approximation method for discrete-time nonlinear servomechanism problem.,2001,12,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn12.html#WangH01,https://doi.org/10.1109/72.925561 +Kostyantyn Y. Volyanskyy,A New Neuroadaptive Control Architecture for Nonlinear Uncertain Dynamical Systems: Beyond sigma- and e-Modifications.,2009,20,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn20.html#VolyanskyyHC09,https://doi.org/10.1109/TNN.2009.2030748 +Katherine L. Cameron,Spike timing dependent plasticity (STDP) can ameliorate process variations in neuromorphic VLSI.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#CameronBMR05,https://doi.org/10.1109/TNN.2005.852238 +Chi-Sing Leung,A Regularizer Approach for RBF Networks Under the Concurrent Weight Failure Situation.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn28.html#LeungWF17,https://doi.org/10.1109/TNNLS.2016.2536172 +Wei Yee Goh,Predicting drug dissolution profiles with an ensemble of boosted neural networks: a time series approach.,2003,14,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn14.html#GohLP03,https://doi.org/10.1109/TNN.2003.809420 +Chun-Fei Hsu,Wavelet Adaptive Backstepping Control for a Class of Nonlinear Systems.,2006,17,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn17.html#HsuLL06,https://doi.org/10.1109/TNN.2006.878122 +Chieh-Neng Young,One-Class-at-a-Time Removal Sequence Planning Method for Multiclass Classification Problems.,2006,17,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn17.html#YoungYPN06,https://doi.org/10.1109/TNN.2006.879768 +Davide Anguita,Improved neural network for SVM learning.,2002,13,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn13.html#AnguitaB02,https://doi.org/10.1109/TNN.2002.1031958 +Biao Luo,Model-Free Optimal Tracking Control via Critic-Only Q-Learning.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn27.html#LuoLHW16,https://doi.org/10.1109/TNNLS.2016.2585520 +Minoru Fukumi,Rotation-invariant neural pattern recognition system with application to coin recognition.,1992,3,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn3.html#FukumiOTK92,https://doi.org/10.1109/72.125868 +Naoki Masuyama,Quantum-Inspired Multidirectional Associative Memory With a Self-Convergent Iterative Learning.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#MasuyamaLSK18,https://doi.org/10.1109/TNNLS.2017.2653114 +Yong Luo,Multiview Vector-Valued Manifold Regularization for Multilabel Image Classification.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn24.html#LuoTXXLW13,https://doi.org/10.1109/TNNLS.2013.2238682 +Chee Siong Teh,Monitoring the Formation of Kernel-Based Topographic Maps in a Hybrid SOM-kMER Model.,2006,17,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn17.html#TehL06,https://doi.org/10.1109/TNN.2006.877536 +Shu-Kay Ng,Using the EM algorithm to train neural networks: misconceptions and a new algorithm for multiclass classification.,2004,15,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn15.html#NgM04,https://doi.org/10.1109/TNN.2004.826217 +Dinani Gomes Amorim,Polytope ARTMAP: Pattern Classification Without Vigilance Based on General Geometry Categories.,2007,18,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn18.html#AmorimDA07,https://doi.org/10.1109/TNN.2007.894036 +Lutz Leistritz,Training trajectories by continuous recurrent multilayer networks.,2002,13,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn13.html#LeistritzGWK02,https://doi.org/10.1109/72.991415 +Samer A. Abdallah,Unsupervised analysis of polyphonic music by sparse coding.,2006,17,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn17.html#AbdallahP06,https://doi.org/10.1109/TNN.2005.861031 +David B. Fogel,An introduction to simulated evolutionary optimization.,1994,5,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn5.html#Fogel94,https://doi.org/10.1109/72.265956 +Tiantian Xie,Fast and Efficient Second-Order Method for Training Radial Basis Function Networks.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn23.html#XieYHRW12,https://doi.org/10.1109/TNNLS.2012.2185059 +Di You,Multiobjective Optimization for Model Selection in Kernel Methods in Regression.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn25.html#YouBM14,https://doi.org/10.1109/TNNLS.2013.2297686 +Md. Monirul Islam,A constructive algorithm for training cooperative neural network ensembles.,2003,14,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn14.html#IslamYM03,https://doi.org/10.1109/TNN.2003.813832 +Zhiquan Qi,Successive Overrelaxation for Laplacian Support Vector Machine.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn26.html#QiTS15,https://doi.org/10.1109/TNNLS.2014.2320738 +Sitian Qin,A Two-Layer Recurrent Neural Network for Nonsmooth Convex Optimization Problems.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn26.html#QinX15,https://doi.org/10.1109/TNNLS.2014.2334364 +Irwin W. Sandberg,"Comments on ""Classification ability of single hidden layer feedforward neural networks"".",2001,12,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn12.html#Sandberg01,https://doi.org/10.1109/72.925569 +Friedrich Leisch,Cross-validation with active pattern selection for neural-network classifiers.,1998,9,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn9.html#LeischJH98,https://doi.org/10.1109/72.655027 +Yong Fang,Blind equalization of a noisy channel by linear neural network.,1999,10,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn10.html#FangC99,https://doi.org/10.1109/72.774261 +Zidong Wang,Global synchronization for discrete-time stochastic complex networks with randomly occurred nonlinearities and mixed time delays.,2010,21,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn21.html#WangWL10,https://doi.org/10.1109/TNN.2009.2033599 +Yumao Lu,Distributed Parallel Support Vector Machines in Strongly Connected Networks.,2008,19,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn19.html#LuRV08,https://doi.org/10.1109/TNN.2007.2000061 +Neil E. Cotter,The Stone-Weierstrass theorem and its application to neural networks.,1990,1,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn1.html#Cotter90,https://doi.org/10.1109/72.80265 +Xiang Cao,Multi-AUV Target Search Based on Bioinspired Neurodynamics Model in 3-D Underwater Environments.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn27.html#CaoZY16,https://doi.org/10.1109/TNNLS.2015.2482501 +Vicente Ruiz de Angulo,Speeding up the learning of robot kinematics through function decomposition.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#AnguloT05,https://doi.org/10.1109/TNN.2005.852970 +Hongwei Chen,Synchronization of Arbitrarily Switched Boolean Networks.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn28.html#ChenLHC17,https://doi.org/10.1109/TNNLS.2015.2497708 +Kun Song,Rank-k 2-D Multinomial Logistic Regression for Matrix Data Classification.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#SongNHL18,https://doi.org/10.1109/TNNLS.2017.2731999 +Zhengming Ding,Robust Multiview Data Analysis Through Collective Low-Rank Subspace.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#DingF18,https://doi.org/10.1109/TNNLS.2017.2690970 +Naveed Akhtar,Nonparametric Coupled Bayesian Dictionary and Classifier Learning for Hyperspectral Classification.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#AkhtarM18,https://doi.org/10.1109/TNNLS.2017.2742528 +James T. Kwok,Linear dependency between andepsi* and the input noise in andepsi*-support vector regression.,2003,14,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn14.html#KwokT03,https://doi.org/10.1109/TNN.2003.810604 +Mike Cannon,Selecting a restoration technique to minimize OCR error.,2003,14,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn14.html#CannonFHS03,https://doi.org/10.1109/TNN.2003.811711 +Grigorios Tzortzis,The Global Kernel k -Means Algorithm for Clustering in Feature Space.,2009,20,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn20.html#TzortzisL09,https://doi.org/10.1109/TNN.2009.2019722 +Xin Xu,Kernel-Based Least Squares Policy Iteration for Reinforcement Learning.,2007,18,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn18.html#XuHL07,https://doi.org/10.1109/TNN.2007.899161 +Fabio Lorenzo Traversa,Universal Memcomputing Machines.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn26.html#TraversaV15,https://doi.org/10.1109/TNNLS.2015.2391182 +M. Kubat,Decision trees can initialize radial-basis function networks.,1998,9,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn9.html#Kubat98,https://doi.org/10.1109/72.712154 +Eric K. C. Tsang,Disparity Estimation by Pooling Evidence From Energy Neurons.,2009,20,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn20.html#TsangS09,https://doi.org/10.1109/TNN.2009.2030370 +Junzhi Yu,A Survey on CPG-Inspired Control Models and System Implementation.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn25.html#YuTCZ14,https://doi.org/10.1109/TNNLS.2013.2280596 +William J. Wolfe,Inhibitory grids and the assignment problem.,1993,4,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn4.html#WolfeMBMRMOAA93,https://doi.org/10.1109/72.207619 +W. A. Wright,Bayesian approach to neural-network modeling with input uncertainty.,1999,10,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn10.html#Wright99,https://doi.org/10.1109/72.809073 +Cheolhwan Oh,Large-scale pattern storage and retrieval using generalized brain-state-in-a-box neural networks.,2010,21,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn21.html#OhZ10,https://doi.org/10.1109/TNN.2010.2040291 +Qiming Zhao,Neural Network-Based Finite-Horizon Optimal Control of Uncertain Affine Nonlinear Discrete-Time Systems.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn26.html#ZhaoXJ15,https://doi.org/10.1109/TNNLS.2014.2315646 +Malik Magdon-Ismail,Density estimation and random variate generation using multilayer networks.,2002,13,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn13.html#Magdon-IsmailA02,https://doi.org/10.1109/TNN.2002.1000120 +Ning Wang 0002,Adaptive Approximation-Based Regulation Control for a Class of Uncertain Nonlinear Systems Without Feedback Linearizability.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#WangSHZE18,https://doi.org/10.1109/TNNLS.2017.2738918 +Tai-Ning Yang,Fuzzy auto-associative neural networks for principal component extraction of noisy data.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn11.html#YangW00a,https://doi.org/10.1109/72.846752 +Enliang Hu,Semisupervised Kernel Matrix Learning by Kernel Propagation.,2010,21,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn21.html#HuCZY10,https://doi.org/10.1109/TNN.2010.2076301 +Xiaoqiang Lu,Sparse Coding From a Bayesian Perspective.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn24.html#LuWY13,https://doi.org/10.1109/TNNLS.2013.2245914 +Yujin Zhu,Boundary-Eliminated Pseudoinverse Linear Discriminant for Imbalanced Problems.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#ZhuWZG18,https://doi.org/10.1109/TNNLS.2017.2676239 +Yuanming Zhu,Dual RBFNNs-Based Model-Free Adaptive Control With Aspen HYSYS Simulation.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn28.html#ZhuHQD17,https://doi.org/10.1109/TNNLS.2016.2522098 +Zhenfang Hu,Sparse Principal Component Analysis via Rotation and Truncation.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn27.html#HuPWW16,https://doi.org/10.1109/TNNLS.2015.2427451 +John D. Matyjas,Fast converging minimum probability of error neural network receivers for DS-CDMA communications.,2004,15,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn15.html#MatyjasPBM04,https://doi.org/10.1109/TNN.2004.824409 +Yong-Zai Lu,Development and application of an integrated neural system for an HDCL.,1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#LuM97,https://doi.org/10.1109/72.641456 +John B. Hampshire II,A novel objective function for improved phoneme recognition using time-delay neural networks.,1990,1,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn1.html#HampshireW90,https://doi.org/10.1109/72.80233 +Hsin-Chia Fu,Divide-and-conquer learning and modular perceptron networks.,2001,12,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn12.html#FuLCP01,https://doi.org/10.1109/72.914522 +Abdul Wahab,Driving Profile Modeling and Recognition Based on Soft Computing Approach.,2009,20,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn20.html#WahabQTT09,https://doi.org/10.1109/TNN.2008.2007906 +Tianping Chen,Approximations of continuous functionals by neural networks with application to dynamic systems.,1993,4,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn4.html#ChenC93,https://doi.org/10.1109/72.286886 +Yan-Jun Liu,Adaptive Neural Output Feedback Tracking Control for a Class of Uncertain Discrete-Time Nonlinear Systems.,2011,22,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn22.html#LiuCWT11,https://doi.org/10.1109/TNN.2011.2146788 +David R. Musicant,Active set support vector regression.,2004,15,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn15.html#MusicantF04,https://doi.org/10.1109/TNN.2004.824259 +Linshan Wang,"Comments on ""Robust stability for interval Hopfield neural networks with time delay"" by X.F. Liao.",2002,13,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn13.html#Wang02,https://doi.org/10.1109/72.977321 +Yoshikazu Kondo,Functional abilities of a stochastic logic neural network.,1992,3,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn3.html#KondoS92,https://doi.org/10.1109/72.129416 +Dipti Deodhare,Synthesis of fault-tolerant feedforward neural networks using minimax optimization.,1998,9,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn9.html#DeodhareVK98,https://doi.org/10.1109/72.712162 +Pietro Burrascano,Learning vector quantization for the probabilistic neural network.,1991,2,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn2.html#Burrascano91a,https://doi.org/10.1109/72.88165 +Derong Liu 0001,Error Bounds of Adaptive Dynamic Programming Algorithms for Solving Undiscounted Optimal Control Problems.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn26.html#LiuLW15,https://doi.org/10.1109/TNNLS.2015.2402203 +Chunjie Zhang,Structured Weak Semantic Space Construction for Visual Categorization.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#ZhangCT18,https://doi.org/10.1109/TNNLS.2017.2728060 +Yongping Pan,Biomimetic Hybrid Feedback Feedforward Neural-Network Learning Control.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn28.html#PanY17,https://doi.org/10.1109/TNNLS.2016.2527501 +Xueyi Zhao,Scalable Linear Visual Feature Learning via Online Parallel Nonnegative Matrix Factorization.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn27.html#ZhaoLZSZGL16,https://doi.org/10.1109/TNNLS.2015.2499273 +S. Trenn,Multilayer Perceptrons: Approximation Order and Necessary Number of Hidden Units.,2008,19,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn19.html#Trenn08,https://doi.org/10.1109/TNN.2007.912306 +Abdolreza Joghataie,Simulating Dynamic Plastic Continuous Neural Networks by Finite Elements.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn25.html#JoghataieT14,https://doi.org/10.1109/TNNLS.2013.2294315 +Sangbong Park,"Comments on ""A training rule which guarantees finite-region stability for a class of closed-loop neural-network control systems"" [with reply].",1997,8,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn8.html#ParkPKF97,https://doi.org/10.1109/72.623225 +Hou Chunhai,Stability analysis for neural dynamics with time-varying delays.,1998,9,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn9.html#ChunhaiJ98,https://doi.org/10.1109/72.655044 +Mohammad Fazle Azeem,Generalization of adaptive neuro-fuzzy inference systems.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn11.html#AzeemHA00,https://doi.org/10.1109/72.883438 +Yaser S. Abu-Mostafa,Financial model calibration using consistency hints.,2001,12,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn12.html#Abu-Mostafa01,https://doi.org/10.1109/72.935092 +Konstantinos Koutroumbas,Qualitative analysis of the parallel and asynchronous modes of the Hamming network.,1994,5,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn5.html#KoutroumbasK94,https://doi.org/10.1109/72.286910 +Subramania I. Sudharsanan,Equilibrium characterization of dynamical neural networks and a systematic synthesis procedure for associative memories.,1991,2,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn2.html#SudharsananS91,https://doi.org/10.1109/72.134288 +Shu Yang,Bilinear Analysis for Kernel Selection and Nonlinear Feature Extraction.,2007,18,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn18.html#YangYZT07,https://doi.org/10.1109/TNN.2007.894042 +Nuri Denizcan Vanli,Sequential Nonlinear Learning for Distributed Multiagent Systems via Extreme Learning Machines.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn28.html#VanliSDK17,https://doi.org/10.1109/TNNLS.2016.2536649 +Sylvain Chartier,NDRAM: nonlinear dynamic recurrent associative memory for learning bipolar and nonbipolar correlated patterns.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#ChartierP05,https://doi.org/10.1109/TNN.2005.852861 +Deming N. Zhou,A neural network approach to job-shop scheduling.,1991,2,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn2.html#ZhouCBO91,https://doi.org/10.1109/72.80311 +S. R. Jones,Learning in linear systolic neural network engines: analysis and implementation.,1994,5,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn5.html#JonesSH94,https://doi.org/10.1109/72.298228 +Behzad Talaei,Boundary Control of Linear Uncertain 1-D Parabolic PDE Using Approximate Dynamic Programming.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#TalaeiJS18,https://doi.org/10.1109/TNNLS.2017.2669944 +Tjaart van der Walt,Process modeling with the regression network.,1995,6,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn6.html#WaltBD95,https://doi.org/10.1109/72.363447 +Momchil Milev,Analog implementation of ANN with inherent quadratic nonlinearity of the synapses.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#MilevH03,https://doi.org/10.1109/TNN.2003.816369 +Antti Airola,Fast Kronecker Product Kernel Methods via Generalized Vec Trick.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#AirolaP18,https://doi.org/10.1109/TNNLS.2017.2727545 +Grigorios Tzortzis,Multiple View Clustering Using a Weighted Combination of Exemplar-Based Mixture Models.,2010,21,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn21.html#TzortzisL10,https://doi.org/10.1109/TNN.2010.2081999 +Thomas Hanselmann,Continuous-Time Adaptive Critics.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#HanselmannNZ07,https://doi.org/10.1109/TNN.2006.889499 +Yong Xu 0001,A New Discriminative Sparse Representation Method for Robust Face Recognition via l2 Regularization.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn28.html#XuZYYZ17,https://doi.org/10.1109/TNNLS.2016.2580572 +Shubhra Sankar Ray,A Granular Self-Organizing Map for Clustering and Gene Selection in Microarray Data.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn27.html#RayGP16,https://doi.org/10.1109/TNNLS.2015.2460994 +Guoxu Zhou,Online Blind Source Separation Using Incremental Nonnegative Matrix Factorization With Volume Constraint.,2011,22,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn22.html#ZhouYXY11a,https://doi.org/10.1109/TNN.2011.2109396 +Youshen Xia,Nonlinear spatial-temporal prediction based on optimal fusion.,2006,17,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn17.html#XiaL06,https://doi.org/10.1109/TNN.2006.875985 +J. P. F. Sum,Analysis for a class of winner-take-all model.,1999,10,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn10.html#SumLTYKC99,https://doi.org/10.1109/72.737494 +Reinhard Eckhorn,Neural mechanisms of scene segmentation: recordings from the visual cortex suggest basic circuits for linking field models.,1999,10,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn10.html#Eckhorn99,https://doi.org/10.1109/72.761705 +Nicola Massari,A CMOS image sensor with programmable pixel-level analog processing.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#MassariGGSS05,https://doi.org/10.1109/TNN.2005.854369 +Srikanth Thirumalai,Parallel distributed detection of feature trajectories in multiple discontinuous motion image sequences.,1996,7,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn7.html#ThirumalaiA96,https://doi.org/10.1109/72.501718 +Jer-Guang Hsieh,Preliminary Study on Wilcoxon Learning Machines.,2008,19,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn19.html#HsiehLJ08,https://doi.org/10.1109/TNN.2007.904035 +Francesco Palmieri,Inhibitory synapses in neural networks with sigmoidal nonlinearities.,1999,10,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn10.html#PalmieriCD99,https://doi.org/10.1109/72.761723 +Thomas Martinetz,'Neural-gas' network for vector quantization and its application to time-series prediction.,1993,4,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn4.html#MartinetzBS93,https://doi.org/10.1109/72.238311 +Qin Zhang 0007,Dynamic Uncertain Causality Graph for Knowledge Representation and Probabilistic Reasoning: Directed Cyclic Graph and Joint Probability Distribution.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn26.html#Zhang15,https://doi.org/10.1109/TNNLS.2015.2402162 +Bin Zou 0002,Generalization Performance of Fisher Linear Discriminant Based on Markov Sampling.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn24.html#ZouLXLT13,https://doi.org/10.1109/TNNLS.2012.2230406 +Angelo Alessandri,Design of Asymptotic Estimators: An Approach Based on Neural Networks and Nonlinear Programming.,2007,18,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn18.html#AlessandriCS07,https://doi.org/10.1109/TNN.2006.883015 +Saswati Sarkar,Back pressure based multicast scheduling for fair bandwidth allocation.,2005,16,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn16.html#SarkarT05,https://doi.org/10.1109/TNN.2005.853422 +Xinxing Xu,Soft Margin Multiple Kernel Learning.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn24.html#XuTX13,https://doi.org/10.1109/TNNLS.2012.2237183 +Chenguang Yang,Output Feedback NN Control for Two Classes of Discrete-Time Systems With Unknown Control Directions in a Unified Approach.,2008,19,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn19.html#YangGXCL08,https://doi.org/10.1109/TNN.2008.2003290 +Andrea Baraldi,"Errata to ""Model Transitions in Descending FLVQ"".",1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#BaraldiBPPS98a,https://doi.org/10.1109/TNN.1998.728405 +Wei Bi,Mandatory Leaf Node Prediction in Hierarchical Multilabel Classification.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn25.html#BiK14,https://doi.org/10.1109/TNNLS.2014.2309437 +Yingquan Wu,An efficient learning algorithm for associative memories.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn11.html#WuB00,https://doi.org/10.1109/72.870039 +Sarunas Raudys,Multicategory nets of single-layer perceptrons: complexity and sample-size issues.,2010,21,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn21.html#RaudysKZ10,https://doi.org/10.1109/TNN.2010.2042173 +Shi-Xiong Zhang,Optimized Discriminative Kernel for SVM Scoring and Its Application to Speaker Verification.,2011,22,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn22.html#ZhangM11,https://doi.org/10.1109/TNN.2010.2090893 +Tatt Hee Oong,Adaptive Evolutionary Artificial Neural Networks for Pattern Classification.,2011,22,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn22.html#OongI11,https://doi.org/10.1109/TNN.2011.2169426 +Fa Zhu,On Selecting Effective Patterns for Fast Support Vector Regression Training.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#ZhuGXYT18,https://doi.org/10.1109/TNNLS.2017.2734812 +Sumit Bam Shrestha,Robustness to Training Disturbances in SpikeProp Learning.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#ShresthaS18,https://doi.org/10.1109/TNNLS.2017.2713125 +Xiaofeng Qi,Authors' Reply.,1998,9,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn9.html#QiP98,https://doi.org/10.1109/TNN.1998.661130 +Chunjie Zhang,Object Categorization Using Class-Specific Representations.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#ZhangCLLT18,https://doi.org/10.1109/TNNLS.2017.2757497 +Steven Young,CARVE-a constructive algorithm for real-valued examples.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#YoungD98,https://doi.org/10.1109/72.728361 +Xing-Bao Gao,A new one-layer neural network for linear and quadratic programming.,2010,21,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn21.html#GaoL10,https://doi.org/10.1109/TNN.2010.2045129 +Weinan Gao,Learning-Based Adaptive Optimal Tracking Control of Strict-Feedback Nonlinear Systems.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#GaoJ18,https://doi.org/10.1109/TNNLS.2017.2761718 +D. J. H. Wilson,RBF principal manifolds for process monitoring.,1999,10,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn10.html#WilsonIL99,https://doi.org/10.1109/72.809087 +Badong Chen,Mean-square convergence analysis of ADALINE training with minimum error entropy criterion.,2010,21,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn21.html#ChenZH10,https://doi.org/10.1109/TNN.2010.2050212 +Xin Luo 0001,Generating Highly Accurate Predictions for Missing QoS Data via Aggregating Nonnegative Latent Factor Models.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn27.html#LuoZXZAA16,https://doi.org/10.1109/TNNLS.2015.2412037 +Juha Karhunen,A class of neural networks for independent component analysis.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#KarhunenOWVJ97,https://doi.org/10.1109/72.572090 +Sreeram V. B. Aiyer,A theoretical investigation into the performance of the Hopfield model.,1990,1,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn1.html#AiyerNF90,https://doi.org/10.1109/72.80232 +Majeed M. Hayat,Shot-noise-limited performance of optical neural networks.,1996,7,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn7.html#HayatSG96,https://doi.org/10.1109/72.501727 +Chaomin Luo,A Bioinspired Neural Network for Real-Time Concurrent Map Building and Complete Coverage Robot Navigation in Unknown Environments.,2008,19,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn19.html#LuoY08,https://doi.org/10.1109/TNN.2008.2000394 +Nicolaos B. Karayiannis,Fuzzy algorithms for learning vector quantization.,1996,7,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn7.html#KarayiannisP96,https://doi.org/10.1109/72.536314 +Ghasem Ahmadi,Designing and Implementation of Stable Sinusoidal Rough-Neural Identifier.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn28.html#AhmadiT17,https://doi.org/10.1109/TNNLS.2016.2551303 +Zhihui Lai,Sparse Approximation to the Eigensubspace for Discrimination.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn23.html#LaiWJYX12,https://doi.org/10.1109/TNNLS.2012.2217154 +Sheng Zhang 0006,Recursive Adaptive Sparse Exponential Functional Link Neural Network for Nonlinear AEC in Impulsive Noise Environment.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#ZhangZ18,https://doi.org/10.1109/TNNLS.2017.2761259 +Mauro Di Marco,New Conditions for Global Asymptotic Stability of Memristor Neural Networks.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#MarcoFP18,https://doi.org/10.1109/TNNLS.2017.2688404 +Hao Zhang 0035,Synchronization of Coupled Reaction-Diffusion Neural Networks With Directed Topology via an Adaptive Approach.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#ZhangSZ18,https://doi.org/10.1109/TNNLS.2017.2672781 +Ali Borji,Reconciling Saliency and Object Center-Bias Hypotheses in Explaining Free-Viewing Fixations.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn27.html#BorjiT16,https://doi.org/10.1109/TNNLS.2015.2480683 +Silvia Ferrari,Multiobjective Algebraic Synthesis of Neural Control Systems by Implicit Model Following.,2009,20,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn20.html#Ferrari09,https://doi.org/10.1109/TNN.2008.2008332 +Lei Liu 0006,Neural-Network-Based Robust Optimal Tracking Control for MIMO Discrete-Time Systems With Unknown Uncertainty Using Adaptive Critic Design.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#LiuWZ18,https://doi.org/10.1109/TNNLS.2017.2660070 +Eric Aislan Antonelo,On Learning Navigation Behaviors for Small Mobile Robots With Reservoir Computing Architectures.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn26.html#AntoneloS15,https://doi.org/10.1109/TNNLS.2014.2323247 +J. Sim,FCMAC-Yager: A Novel Yager-Inference-Scheme-Based Fuzzy CMAC.,2006,17,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn17.html#SimTQ06,https://doi.org/10.1109/TNN.2006.880362 +Rui Zhang 0017,Self-Weighted Supervised Discriminative Feature Selection.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#ZhangNL18,https://doi.org/10.1109/TNNLS.2017.2740341 +Roshan Gopalakrishnan,Triplet Spike Time-Dependent Plasticity in a Floating-Gate Synapse.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn28.html#GopalakrishnanB17,https://doi.org/10.1109/TNNLS.2015.2506740 +Wlodzislaw Duch,Robot Brains. Circuits and Systems for Conscious Machines (P. Haikonen* 2007) [Book review].,2008,19,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn19.html#Duch08,https://doi.org/10.1109/TNN.2008.924005 +Daniele Casali,Associative Memory Design Using Support Vector Machines.,2006,17,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn17.html#CasaliCPR06,https://doi.org/10.1109/TNN.2006.877539 +Haiping Lu,Uncorrelated Multilinear Principal Component Analysis for Unsupervised Multilinear Subspace Learning.,2009,20,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn20.html#LuPV09a,https://doi.org/10.1109/TNN.2009.2031144 +Ding Zhai,Adaptive Reliable H∞ Static Output Feedback Control Against Markovian Jumping Sensor Failures.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn29.html#ZhaiAYZ18,https://doi.org/10.1109/TNNLS.2016.2639290 +Leimin Wang,Finite-Time Stabilizability and Instabilizability of Delayed Memristive Neural Networks With Nonlinear Discontinuous Controller.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn26.html#WangS15,https://doi.org/10.1109/TNNLS.2015.2460239 +Shuyuan Yang,Deep Sparse Tensor Filtering Network for Synthetic Aperture Radar Images Classification.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#YangWFLL18,https://doi.org/10.1109/TNNLS.2017.2688466 +José Carlos Príncipe,Guest Editorial Special Issue on Information Theoretic Learning.,2004,15,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn15.html#PrincipeOXCE04,https://doi.org/10.1109/TNN.2004.833368 +Bruce A. Whitehead,Genetic evolution of radial basis function coverage using orthogonal niches.,1996,7,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn7.html#Whitehead96,https://doi.org/10.1109/72.548182 +Luigi Grippo,Decomposition Techniques for Multilayer Perceptron Training.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn27.html#GrippoMS16,https://doi.org/10.1109/TNNLS.2015.2475621 +Leonardo Rigutini,SortNet: Learning to Rank by a Neural Preference Function.,2011,22,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn22.html#RigutiniPMS11,https://doi.org/10.1109/TNN.2011.2160875 +Zhipeng Ren,Self-Paced Prioritized Curriculum Learning With Coverage Penalty in Deep Reinforcement Learning.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#RenDLC18,https://doi.org/10.1109/TNNLS.2018.2790981 +Terence D. Sanger,Optimal unsupervised motor learning for dimensionality reduction of nonlinear control systems.,1994,5,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn5.html#Sanger94,https://doi.org/10.1109/72.329694 +Daniel Soudry,Memristor-Based Multilayer Neural Networks With Online Gradient Descent Training.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn26.html#SoudryCGKK15,https://doi.org/10.1109/TNNLS.2014.2383395 +David Xu,Symmetric Predictive Estimator for Biologically Plausible Neural Learning.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#XuCSO18,https://doi.org/10.1109/TNNLS.2017.2756859 +Isabelle Rivals,Neural-network construction and selection in nonlinear modeling.,2003,14,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn14.html#RivalsP03,https://doi.org/10.1109/TNN.2003.811356 +Manuel A. Sánchez-Montañés,A new information processing measure for adaptive complex systems.,2004,15,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn15.html#Sanchez-MontanesC04,https://doi.org/10.1109/TNN.2004.828768 +Xia Hong 0001,Sparse Density Estimation on the Multinomial Manifold.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn26.html#HongG0Z15,https://doi.org/10.1109/TNNLS.2015.2389273 +Kumpati S. Narendra,Identification and control of dynamical systems using neural networks.,1990,1,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn1.html#NarendraP90,https://doi.org/10.1109/72.80202 +Qi Mao,Efficient Multitemplate Learning for Structured Prediction.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn24.html#MaoT13,https://doi.org/10.1109/TNNLS.2012.2228228 +Jean-Pierre Martens,An equalized error backpropagation algorithm for the on-line training of multilayer perceptrons.,2002,13,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn13.html#MartensW02,https://doi.org/10.1109/TNN.2002.1000122 +Felix A. Gers,LSTM recurrent networks learn simple context-free and context-sensitive languages.,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#GersS01,https://doi.org/10.1109/72.963769 +Ding Zhai,Adaptive Fault-Tolerant Control for Nonlinear Systems With Multiple Sensor Faults and Unknown Control Directions.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#ZhaiALZ18,https://doi.org/10.1109/TNNLS.2017.2766283 +Alexander P. Turner,Artificial Epigenetic Networks: Automatic Decomposition of Dynamical Control Tasks Using Topological Self-Modification.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn28.html#TurnerCSTL17,https://doi.org/10.1109/TNNLS.2015.2497142 +Robert J. T. Morris,Neural network control of communications systems.,1994,5,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn5.html#MorrisS94,https://doi.org/10.1109/72.298233 +Tianping Chen,Stability of asymmetric Hopfield networks.,2001,12,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn12.html#ChenA01,https://doi.org/10.1109/72.896806 +Canh Hao Nguyen,Selecting Graph Cut Solutions via Global Graph Similarity.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn25.html#NguyenWM14,https://doi.org/10.1109/TNNLS.2013.2292975 +Mingli Song,Granular Neural Networks: Concepts and Development Schemes.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn24.html#SongP13,https://doi.org/10.1109/TNNLS.2013.2237787 +Bart Kosko,Stochastic competitive learning.,1991,2,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn2.html#Kosko91,https://doi.org/10.1109/72.134289 +Francesco Palmieri,Anti-Hebbian learning in topologically constrained linear networks: a tutorial.,1993,4,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn4.html#PalmieriZC93,https://doi.org/10.1109/72.248453 +Renata Lúcia Mendonça Ernesto do Rego,Growing self-reconstruction maps.,2010,21,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn21.html#RegoAN10,https://doi.org/10.1109/TNN.2009.2035312 +Antonio Giaquinto,PSO-Based Cloning Template Design for CNN Associative Memories.,2009,20,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn20.html#GiaquintoF09,https://doi.org/10.1109/TNN.2009.2031870 +Witold Pedrycz,Neural-network front ends in unsupervised learning.,1997,8,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn8.html#PedryczW97,https://doi.org/10.1109/72.557690 +Gonzalo Carvajal,Analysis and Compensation of the Effects of Analog VLSI Arithmetic on the LMS Algorithm.,2011,22,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn22.html#CarvajalFSV11,https://doi.org/10.1109/TNN.2011.2136358 +Hao Xu 0002,Finite-Horizon Near-Optimal Output Feedback Neural Network Control of Quantized Nonlinear Discrete-Time Systems With Input Constraint.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn26.html#XuZJ15,https://doi.org/10.1109/TNNLS.2015.2409301 +Xiangyu Kong,On the discrete-time dynamics of a class of self-stabilizing MCA extraction algorithms.,2010,21,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn21.html#KongHH10,https://doi.org/10.1109/TNN.2009.2036725 +John Yannis Goulermas,An Instance-Based Algorithm With Auxiliary Similarity Information for the Estimation of Gait Kinematics From Wearable Sensors.,2008,19,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn19.html#GoulermasFNLZKTTH08,https://doi.org/10.1109/TNN.2008.2000808 +Patrick K. Simpson,Fuzzy min-max neural networks. I. Classification.,1992,3,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn3.html#Simpson92,https://doi.org/10.1109/72.159066 +Sebastian Weng,Learning lateral interactions for feature binding and sensory segmentation from prototypic basis interactions.,2006,17,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn17.html#WengWSR06,https://doi.org/10.1109/TNN.2006.873295 +William E. Faller,Real-time prediction of unsteady aerodynamics: Application for aircraft control and manoeuvrability enhancement.,1995,6,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn6.html#FallerS95,https://doi.org/10.1109/72.471362 +Zuyuan Yang,A Convex Geometry-Based Blind Source Separation Method for Separating Nonnegative Sources.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn26.html#YangXRX15,https://doi.org/10.1109/TNNLS.2014.2350026 +Guo Dong,Color clustering and learning for image segmentation based on neural networks.,2005,16,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn16.html#DongX05,https://doi.org/10.1109/TNN.2005.849822 +Jonathan Blake Vance,Neural Network Controller Development and Implementation for Spark Ignition Engines With High EGR Levels.,2007,18,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn18.html#VanceSKJD07,https://doi.org/10.1109/TNN.2007.899199 +Ali Heydari,Feedback Solution to Optimal Switching Problems With Switching Cost.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn27.html#Heydari16,https://doi.org/10.1109/TNNLS.2015.2388672 +Junzhi Yu,CPG Network Optimization for a Biomimetic Robotic Fish via PSO.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn27.html#YuWWT16,https://doi.org/10.1109/TNNLS.2015.2459913 +Wei-Chang Yeh,A Squeezed Artificial Neural Network for the Symbolic Network Reliability Functions of Binary-State Networks.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn28.html#Yeh17,https://doi.org/10.1109/TNNLS.2016.2598562 +Wael A. Farag,A genetic-based neuro-fuzzy approach for modeling and control of dynamical systems.,1998,9,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn9.html#FaragQL98,https://doi.org/10.1109/72.712150 +Alessandro Sperduti,Supervised neural networks for the classification of structures.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#SperdutiS97,https://doi.org/10.1109/72.572108 +Xiangyu Kong,A Unified Self-Stabilizing Neural Network Algorithm for Principal and Minor Components Extraction.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn23.html#KongHMH12,https://doi.org/10.1109/TNNLS.2011.2178564 +Guang-Bin Huang,"Reply to ""Comments on ""The Extreme Learning Machine"""".",2008,19,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn19.html#Huang08,https://doi.org/10.1109/TNN.2008.2002275 +Qiang Liu,Data-Based Hybrid Tension Estimation and Fault Diagnosis of Cold Rolling Continuous Annealing Processes.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#LiuCWQ11,https://doi.org/10.1109/TNN.2011.2167686 +Zhihong Man,An adaptive tracking controller using neural networks for a class of nonlinear systems.,1998,9,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn9.html#ZhihongWP98,https://doi.org/10.1109/72.712168 +Yoshiji Fujimoto,Massively parallel architectures for large scale neural network simulations.,1992,3,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn3.html#FujimotoFA92,https://doi.org/10.1109/72.165590 +Chen-Xiong Zhang,Mapping and hierarchical self-organizing neural networks for VLSI placement.,1997,8,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn8.html#ZhangM97,https://doi.org/10.1109/72.557668 +Zhihong Man,Robust Single-Hidden Layer Feedforward Network-Based Pattern Classifier.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn23.html#ManLWCK12,https://doi.org/10.1109/TNNLS.2012.2218616 +Zhengshan Dong,Homotopy Methods Based on l0-Norm for Compressed Sensing.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#DongZ18,https://doi.org/10.1109/TNNLS.2017.2658953 +Xiaolin Huang,Solution Path for Pin-SVM Classifiers With Positive and Negative ω4* Values.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn28.html#HuangSS17,https://doi.org/10.1109/TNNLS.2016.2547324 +Yuan Cao,SOMKE: Kernel Density Estimation Over Data Streams by Sequences of Self-Organizing Maps.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn23.html#CaoHM12,https://doi.org/10.1109/TNNLS.2012.2201167 +J. Liang,Robust Synchronization of an Array of Coupled Stochastic Discrete-Time Delayed Neural Networks.,2008,19,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn19.html#LiangWLL08,https://doi.org/10.1109/TNN.2008.2003250 +Michael A. Sartori,A simple method to derive bounds on the size and to train multilayer neural networks.,1991,2,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn2.html#SartoriA91,https://doi.org/10.1109/72.88168 +Gianluca Monaci,Learning Bimodal Structure in Audio-Visual Data.,2009,20,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn20.html#MonaciVS09,https://doi.org/10.1109/TNN.2009.2032182 +Jian Cheng Lv,Non-Divergence of Stochastic Discrete Time Algorithms for PCA Neural Networks.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn26.html#LvYL15,https://doi.org/10.1109/TNNLS.2014.2312421 +Eric Sakk,The Effect of Target Vector Selection on the Invariance of Classifier Performance Measures.,2009,20,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn20.html#SakkSMC09,https://doi.org/10.1109/TNN.2008.2011809 +Yong He 0003,Delay-dependent state estimation for delayed neural networks.,2006,17,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn17.html#HeWWL06,https://doi.org/10.1109/TNN.2006.875969 +Li-Bing Wu,Adaptive Output Neural Network Control for a Class of Stochastic Nonlinear Systems With Dead-Zone Nonlinearities.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn28.html#WuY17,https://doi.org/10.1109/TNNLS.2015.2503004 +Bhaskar DasGupta,On the complexity of training neural networks with continuous activation functions.,1995,6,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn6.html#DasGuptaSS95,https://doi.org/10.1109/72.471360 +Tharmarajah Kugarajah,Multidimensional wavelet frames.,1995,6,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn6.html#KugarajahZ95,https://doi.org/10.1109/72.471353 +Rajeev Kumar,Multiobjective genetic algorithm partitioning for hierarchical learning of high-dimensional pattern spaces: a learning-follows-decomposition strategy.,1998,9,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn9.html#KumarR98,https://doi.org/10.1109/72.712155 +Alain Rakotomamonjy,DC Proximal Newton for Nonconvex Optimization Problems.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn27.html#RakotomamonjyFG16,https://doi.org/10.1109/TNNLS.2015.2418224 +Chao Zhang,Generalization Bounds of ERM-Based Learning Processes for Continuous-Time Markov Chains.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn23.html#ZhangT12,https://doi.org/10.1109/TNNLS.2012.2217987 +Te-Won Lee,Advances in independent component analysis [Book Review].,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#Lee01b,https://doi.org/10.1109/TNN.2001.963796 +Nicolas Mauduit,Lneuro 1.0: a piece of hardware LEGO for building neural network systems.,1992,3,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn3.html#MauduitDGS92,https://doi.org/10.1109/72.129414 +Pierre Baldi,How delays affect neural dynamics and learning.,1994,5,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn5.html#BaldiA94,https://doi.org/10.1109/72.298231 +Xiang-Yan Zeng,SMO-based pruning methods for sparse least squares support vector machines.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#ZengC05,https://doi.org/10.1109/TNN.2005.852239 +Hideki Kakeya,Selective retrieval of memory and concept sequences through neuro-windows.,1999,10,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn10.html#KakeyaO99,https://doi.org/10.1109/72.737505 +Alireza Khotanzad,Stereopsis by constraint learning feed-forward neural networks.,1993,4,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn4.html#KhotanzadBL93,https://doi.org/10.1109/72.207620 +Wei He 0001,Adaptive Boundary Iterative Learning Control for an Euler-Bernoulli Beam System With Input Constraint.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#HeMHL18,https://doi.org/10.1109/TNNLS.2017.2673865 +Wenchao Meng,Adaptive Neural Control of Nonlinear MIMO Systems With Time-Varying Output Constraints.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn26.html#MengYS15,https://doi.org/10.1109/TNNLS.2014.2333878 +Frank Z. Brill,Fast generic selection of features for neural network classifiers.,1992,3,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn3.html#BrillBM92,https://doi.org/10.1109/72.125874 +Ming Zhang,Face recognition using artificial neural network group-based adaptive tolerance (GAT) trees.,1996,7,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn7.html#ZhangF96,https://doi.org/10.1109/72.501715 +N. Tengtrairat,Single-Channel Blind Separation Using Pseudo-Stereo Mixture and Complex 2-D Histogram.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn24.html#TengtrairatGWD13,https://doi.org/10.1109/TNNLS.2013.2258680 +Tetsuya Asai,A MOS circuit for a nonmonotonic neural network with excellent retrieval capabilities.,1996,7,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn7.html#AsaiYF96,https://doi.org/10.1109/72.478402 +Guoxu Zhou,Accelerated Canonical Polyadic Decomposition Using Mode Reduction.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn24.html#ZhouCX13,https://doi.org/10.1109/TNNLS.2013.2271507 +Alan B. Tickle,The truth will come to light: directions and challenges in extracting the knowledge embedded within trained artificial neural networks.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#TickleAGD98,https://doi.org/10.1109/72.728352 +Gábor Orosz,Learning of Spatio-Temporal Codes in a Coupled Oscillator System.,2009,20,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn20.html#OroszAT09,https://doi.org/10.1109/TNN.2009.2016658 +Vassilios Petridis,A hybrid neural-genetic multimodel parameter estimation algorithm.,1998,9,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn9.html#PetridisPK98,https://doi.org/10.1109/72.712158 +Martin J. Pearson,Implementing Spiking Neural Networks for Real-Time Signal-Processing and Control Applications: A Model-Validated FPGA Approach.,2007,18,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn18.html#PearsonPMGMGN07,https://doi.org/10.1109/TNN.2007.891203 +Lei Luo,Robust Image Regression Based on the Extended Matrix Variate Power Exponential Distribution of Dependent Noise.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn28.html#LuoYQTL17,https://doi.org/10.1109/TNNLS.2016.2573644 +Massimiliano Bracco,Digital implementation of hierarchical vector quantization.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#BraccoRZ03,https://doi.org/10.1109/TNN.2003.816355 +Ling Jian,Budget Online Learning Algorithm for Least Squares SVM.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn28.html#JianSLLL17,https://doi.org/10.1109/TNNLS.2016.2574332 +Sitian Qin,A One-Layer Recurrent Neural Network for Constrained Complex-Variable Convex Optimization.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn29.html#QinFSWX18,https://doi.org/10.1109/TNNLS.2016.2635676 +Zhiguang Feng,On Extended Dissipativity of Discrete-Time Neural Networks With Time Delay.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn26.html#FengZ15,https://doi.org/10.1109/TNNLS.2015.2399421 +Pablo Zegers,Trajectory generation and modulation using dynamic neural networks.,2003,14,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn14.html#ZegersS03,https://doi.org/10.1109/TNN.2003.810603 +Kiichi Urahama,K-winners-take-all circuit with O(N) complexity.,1995,6,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn6.html#UrahamaN95,https://doi.org/10.1109/72.377986 +Kadim Tasdemir,Exploiting Data Topology in Visualization and Clustering of Self-Organizing Maps.,2009,20,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn20.html#TasdemirM09,https://doi.org/10.1109/TNN.2008.2005409 +Ryan Mukai,Adaptive acquisition and tracking for deep space array feed antennas.,2002,13,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn13.html#MukaiVAJ02,https://doi.org/10.1109/TNN.2002.1031946 +Andreas Weingessel,Adaptive combination of PCA and VQ networks.,1997,8,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn8.html#WeingesselBHL97,https://doi.org/10.1109/72.623222 +LiMin Fu,Incremental backpropagation learning networks.,1996,7,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn7.html#FuHP96,https://doi.org/10.1109/72.501732 +Lloyd W. Massengill,An analog neural hardware implementation using charge-injection multipliers and neutron-specific gain control.,1992,3,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn3.html#MassengillM92,https://doi.org/10.1109/72.129408 +Haiquan Zhao,Low-Complexity Nonlinear Adaptive Filter Based on a Pipelined Bilinear Recurrent Neural Network.,2011,22,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn22.html#ZhaoZH11,https://doi.org/10.1109/TNN.2011.2161330 +Rongjian Liu,Delayed Feedback Control for Stabilization of Boolean Control Networks With State Delay.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#LiuLLCW18,https://doi.org/10.1109/TNNLS.2017.2659386 +Dominik Brugger,Automatic Cluster Detection in Kohonen's SOM.,2008,19,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn19.html#BruggerBR08,https://doi.org/10.1109/TNN.2007.909556 +Yagyensh C. Pati,Analysis and synthesis of feedforward neural networks using discrete affine wavelet transformations.,1993,4,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn4.html#PatiK93,https://doi.org/10.1109/72.182697 +Yifan Fu,Tensor LRR and Sparse Coding-Based Subspace Clustering.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn27.html#FuGTLH16,https://doi.org/10.1109/TNNLS.2016.2553155 +Robert D. Stewart,Region growing with pulse-coupled neural networks: an alternative to seeded region growing.,2002,13,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn13.html#StewartFO02,https://doi.org/10.1109/TNN.2002.804229 +Yan-Ming Zhang,MTC: A Fast and Robust Graph-Based Transductive Learning Method.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn26.html#ZhangHGL15,https://doi.org/10.1109/TNNLS.2014.2363679 +C. Amerijckx,Image compression by self-organized Kohonen map.,1998,9,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn9.html#AmerijckxVTL98,https://doi.org/10.1109/72.668891 +Thiago Christiano Silva,Stochastic Competitive Learning in Complex Networks.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn23.html#SilvaZ12,https://doi.org/10.1109/TNNLS.2011.2181866 +Paul Benedict Watta,A coupled gradient network approach for static and temporal mixed-integer optimization.,1996,7,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn7.html#WattaH96,https://doi.org/10.1109/72.501717 +Dong-Liang Lee,New stability conditions for Hopfield networks in partial simultaneous update mode.,1999,10,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn10.html#Lee99,https://doi.org/10.1109/72.774276 +Ammar O. Hoori,Multicolumn RBF Network.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#HooriM18,https://doi.org/10.1109/TNNLS.2017.2650865 +Ray-I Chang,VLSI circuit placement with rectilinear modules using three-layer force-directed self-organizing maps.,1997,8,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn8.html#ChangH97a,https://doi.org/10.1109/72.623207 +Esteban J. Palomo,The Growing Hierarchical Neural Gas Self-Organizing Neural Network.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn28.html#PalomoL17,https://doi.org/10.1109/TNNLS.2016.2570124 +Fangfei Li,Pinning Control Design for the Stabilization of Boolean Networks.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn27.html#Li16,https://doi.org/10.1109/TNNLS.2015.2449274 +Tao Li 0011,Combined Convex Technique on Delay-Dependent Stability for Delayed Neural Networks.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn24.html#LiWSF13,https://doi.org/10.1109/TNNLS.2013.2256796 +Sunan Huang 0001,Nonlinear adaptive control of interconnected systems using neural networks.,2006,17,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn17.html#HuangTL06,https://doi.org/10.1109/TNN.2005.857948 +Dominique Martinez,Nonlinear blind source separation using kernels.,2003,14,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn14.html#MartinezB03,https://doi.org/10.1109/TNN.2002.806624 +Seth Wolpert,Silicon models of lateral inhibition.,1993,4,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn4.html#WolpertM93,https://doi.org/10.1109/72.286890 +Meiqin Liu,H∞ Output Tracking Control of Discrete-Time Nonlinear Systems via Standard Neural Network Models.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn25.html#LiuZCS14,https://doi.org/10.1109/TNNLS.2013.2295846 +Christian Wöhler,An adaptable time-delay neural-network algorithm for image sequence analysis.,1999,10,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn10.html#WohlerA99,https://doi.org/10.1109/72.809100 +Qi Kang,A Distance-Based Weighted Undersampling Scheme for Support Vector Machines and its Application to Imbalanced Classification.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#KangSZWWW18,https://doi.org/10.1109/TNNLS.2017.2755595 +Nico Weymaere,On the initialization and optimization of multilayer perceptrons.,1994,5,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn5.html#WeymaereM94,https://doi.org/10.1109/72.317726 +Zhihui Lai,Approximate Orthogonal Sparse Embedding for Dimensionality Reduction.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn27.html#LaiWXYZ16,https://doi.org/10.1109/TNNLS.2015.2422994 +Ahmed M. Allam,On the Improvement of Neural Cryptography Using Erroneous Transmitted Information With Error Prediction.,2010,21,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn21.html#AllamA10,https://doi.org/10.1109/TNN.2010.2079948 +Masaki Kobayashi,Symmetric Complex-Valued Hopfield Neural Networks.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn28.html#Kobayashi17,https://doi.org/10.1109/TNNLS.2016.2518672 +Hong-Xing Li,The equivalence between fuzzy logic systems and feedforward neural networks.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn11.html#LiC00,https://doi.org/10.1109/72.839006 +Zhijun Li,Contact-Force Distribution Optimization and Control for Quadruped Robots Using Both Gradient and Adaptive Neural Networks.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn25.html#LiGL14,https://doi.org/10.1109/TNNLS.2013.2293500 +Seiji Kameda,An analog silicon retina with multichip configuration.,2006,17,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn17.html#KamedaY06,https://doi.org/10.1109/TNN.2005.860867 +Jing Liu 0001,Partially Shared Latent Factor Learning With Multiview Data.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn26.html#LiuJLZL15,https://doi.org/10.1109/TNNLS.2014.2335234 +Siegfried Ergezinger,An accelerated learning algorithm for multilayer perceptrons: optimization layer by layer.,1995,6,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn6.html#ErgezingerT95,https://doi.org/10.1109/72.363452 +Chong Wang 0002,Variational Bayesian Approach to Canonical Correlation Analysis.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#Wang07,https://doi.org/10.1109/TNN.2007.891186 +Teresa Serrano-Gotarredona,Log-domain implementation of complex dynamics reaction-diffusion neural networks.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#Serrano-GotarredonaL03,https://doi.org/10.1109/TNN.2003.816374 +Danil V. Prokhorov,Training Recurrent Neurocontrollers for Real-Time Applications.,2007,18,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn18.html#Prokhorov07a,https://doi.org/10.1109/TNN.2007.899521 +Marek K. Solak,Temporal and spatial stability in translation invariant linear resistive networks.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#Solak97,https://doi.org/10.1109/72.572109 +Shanmugam Lakshmanan,Synchronization of an Inertial Neural Network With Time-Varying Delays and Its Application to Secure Communication.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn29.html#LakshmananPLRBN18,https://doi.org/10.1109/TNNLS.2016.2619345 +Donald L. Birx,A complex mapping network for phase sensitive classification.,1993,4,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn4.html#BirxP93,https://doi.org/10.1109/72.182703 +Lijun Long,Switched-Observer-Based Adaptive Neural Control of MIMO Switched Nonlinear Systems With Unknown Control Gains.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn28.html#LongZ17,https://doi.org/10.1109/TNNLS.2016.2521425 +Jia Wu,Multiple Structure-View Learning for Graph Classification.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#WuPZZY18,https://doi.org/10.1109/TNNLS.2017.2703832 +Yoshua Bengio,Learning long-term dependencies with gradient descent is difficult.,1994,5,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn5.html#BengioSF94,https://doi.org/10.1109/72.279181 +Jiali Yu,Representations of Continuous Attractors of Recurrent Neural Networks.,2009,20,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn20.html#YuYZ09,https://doi.org/10.1109/TNN.2008.2010771 +João B. O. Souza Filho,Improving KPCA Online Extraction by Orthonormalization in the Feature Space.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#FilhoD18,https://doi.org/10.1109/TNNLS.2017.2660441 +Jianjun Ma,Adaptive NN Control of a Class of Nonlinear Systems With Asymmetric Saturation Actuators.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn26.html#MaGZH15,https://doi.org/10.1109/TNNLS.2014.2344019 +Gopalasamy Athithan,On the problem of spurious patterns in neural associative memory models.,1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#AthithanD97,https://doi.org/10.1109/72.641470 +M. H. Choueiki,Training data development with the D-optimality criterion.,1999,10,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn10.html#ChoueikiM99,https://doi.org/10.1109/72.737493 +Marina Skurichina,k-nearest neighbors directed noise injection in multilayer perceptron training.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn11.html#SkurichinaRD00,https://doi.org/10.1109/72.839019 +Sander M. Bohte,Unsupervised clustering with spiking neurons by sparse temporal coding and multilayer RBF networks.,2002,13,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn13.html#BohtePK02,https://doi.org/10.1109/72.991428 +Yong He 0003,An improved global asymptotic stability criterion for delayed cellular neural networks.,2006,17,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn17.html#HeWS06,https://doi.org/10.1109/TNN.2005.860874 +Si Wu,Dynamic overload control for distributed call processors using the neural network method.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#WuW98,https://doi.org/10.1109/72.728389 +Joo Heon Shin,Recognition of Partially Occluded and Rotated Images With a Network of Spiking Neurons.,2010,21,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn21.html#ShinSSSRMKC10,https://doi.org/10.1109/TNN.2010.2050600 +Jun Xu 0005,Absolute Exponential Stability of Recurrent Neural Networks With Generalized Activation Function.,2008,19,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn19.html#XuCST08,https://doi.org/10.1109/TNN.2007.2000060 +Yan-Jun Liu,Adaptive NN Controller Design for a Class of Nonlinear MIMO Discrete-Time Systems.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn26.html#LiuTTC15,https://doi.org/10.1109/TNNLS.2014.2330336 +Xuhui Bu,Adaptive Iterative Learning Control for Linear Systems With Binary-Valued Observations.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn29.html#BuH18,https://doi.org/10.1109/TNNLS.2016.2616885 +Jyh-Shing Roger Jang,Functional equivalence between radial basis function networks and fuzzy inference systems.,1993,4,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn4.html#JangS93,https://doi.org/10.1109/72.182710 +Etienne Barnard,Optimization for training neural nets.,1992,3,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn3.html#Barnard92,https://doi.org/10.1109/72.125864 +Badong Chen,Insights Into the Robustness of Minimum Error Entropy Estimation.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn29.html#ChenXXZP18,https://doi.org/10.1109/TNNLS.2016.2636160 +Qing Song 0001,Robust backpropagation training algorithm for multilayered neural tracking controller.,1999,10,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn10.html#SongXS99,https://doi.org/10.1109/72.788652 +Haiping Lu,Uncorrelated Multilinear Discriminant Analysis With Regularization and Aggregation for Tensor Object Recognition.,2009,20,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn20.html#LuPV09,https://doi.org/10.1109/TNN.2008.2004625 +Wei Zhu 0004,Event-Based Impulsive Control of Continuous-Time Dynamic Systems and Its Application to Synchronization of Memristive Neural Networks.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#ZhuWLF18,https://doi.org/10.1109/TNNLS.2017.2731865 +Shun-ichi Amari,Asymptotic statistical theory of overtraining and cross-validation.,1997,8,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn8.html#AmariMMFY97,https://doi.org/10.1109/72.623200 +Lu Xu 0002,Self-organizing potential field network: a new optimization algorithm.,2010,21,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn21.html#XuC10,https://doi.org/10.1109/TNN.2010.2047264 +Deyuan Meng,Tracking Algorithms for Multiagent Systems.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn24.html#MengJDY13,https://doi.org/10.1109/TNNLS.2013.2262234 +Pietro Burrascano,A norm selection criterion for the generalized delta rule.,1991,2,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn2.html#Burrascano91,https://doi.org/10.1109/72.80298 +Bin Gu,Incremental Support Vector Learning for Ordinal Regression.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn26.html#GuSTRL15,https://doi.org/10.1109/TNNLS.2014.2342533 +Giovanni Da San Martino,Tree-Based Kernel for Graphs With Continuous Attributes.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#MartinoNS18,https://doi.org/10.1109/TNNLS.2017.2705694 +Jian Xun Peng,A Hybrid Forward Algorithm for RBF Neural Network Construction.,2006,17,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn17.html#PengLH06,https://doi.org/10.1109/TNN.2006.880860 +John Sum,Effect of Input Noise and Output Node Stochastic on Wang's kWTA.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn24.html#SumLH13,https://doi.org/10.1109/TNNLS.2013.2257182 +James T. Graham,Opportunistic Behavior in Motivated Learning Agents.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn26.html#GrahamSJ15,https://doi.org/10.1109/TNNLS.2014.2354400 +Viswanath Ramamurti,Structurally adaptive modular networks for nonstationary environments.,1999,10,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn10.html#RamamurtiG99,https://doi.org/10.1109/72.737501 +Ezequiel López-Rubio,Probabilistic self-organizing maps for continuous data.,2010,21,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn21.html#Lopez-Rubio10,https://doi.org/10.1109/TNN.2010.2060208 +Filipe Araújo,A neural network for shortest path computation.,2001,12,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn12.html#AraujoRR01,https://doi.org/10.1109/72.950136 +Peter Tiño,Extracting finite-state representations from recurrent neural networks trained on chaotic symbolic sequences.,1999,10,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn10.html#TinoK99,https://doi.org/10.1109/72.750555 +Stamatios V. Kartalopoulos,An associative RAM-based CAM and its application to broadband communications systems.,1998,9,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn9.html#Kartalopoulos98,https://doi.org/10.1109/72.712186 +Jin-Liang Wang,Passivity and Output Synchronization of Complex Dynamical Networks With Fixed and Adaptive Coupling Strength.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn29.html#WangWHRW18,https://doi.org/10.1109/TNNLS.2016.2627083 +Cheolwoo You,Nonlinear blind equalization schemes using complex-valued multilayer feedforward neural networks.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#YouH98,https://doi.org/10.1109/72.728394 +Shin'ichi Tamura,Capabilities of a four-layered feedforward neural network: four layers versus three.,1997,8,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn8.html#TamuraT97,https://doi.org/10.1109/72.557662 +Thomas Parisini,Neural networks for feedback feedforward nonlinear control systems.,1994,5,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn5.html#ParisiniZ94,https://doi.org/10.1109/72.286914 +Yee Leung,A high-performance feedback neural network for solving convex nonlinear programming problems.,2003,14,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn14.html#LeungCG03,https://doi.org/10.1109/TNN.2003.820852 +Faa-Jeng Lin,Hybrid supervisory control using recurrent fuzzy neural network for tracking periodic inputs.,2001,12,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn12.html#LinWH01,https://doi.org/10.1109/72.896797 +Zhijun Li,Missile Guidance Law Based on Robust Model Predictive Control Using Neural-Network Optimization.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn26.html#LiXSDFH15,https://doi.org/10.1109/TNNLS.2014.2345734 +Zi-Jun Jia,Barrier Function-Based Neural Adaptive Control With Locally Weighted Learning and Finite Neuron Self-Growing Strategy.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn28.html#JiaS17,https://doi.org/10.1109/TNNLS.2016.2551294 +Qingfu Zhang,A class of learning algorithms for principal component analysis and minor component analysis.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn11.html#ZhangL00,https://doi.org/10.1109/72.822522 +Minho Lee,A robust neural controller for underwater robot manipulators.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn11.html#LeeC00,https://doi.org/10.1109/72.883478 +Loris Nanni,Evolved Feature Weighting for Random Subspace Classifier.,2008,19,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn19.html#NanniL08,https://doi.org/10.1109/TNN.2007.910737 +Chin-Teng Lin,EEG-Based Learning System for Online Motion Sickness Level Estimation in a Dynamic Vehicle Environment.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn24.html#LinTK13,https://doi.org/10.1109/TNNLS.2013.2275003 +Qian Zhao 0002,L1-Norm Low-Rank Matrix Factorization by Variational Bayesian Method.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn26.html#ZhaoMXZY15,https://doi.org/10.1109/TNNLS.2014.2387376 +Marios M. Polycarpou,Editorial: A New Era for the IEEE Transactions on Neural Networks.,2008,19,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn19.html#Polycarpou08,https://doi.org/10.1109/TNN.2007.915293 +Jeng-Tze Huang,Differentiation-Free Multiswitching Neuroadaptive Control of Strict-Feedback Systems.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#HuangP18,https://doi.org/10.1109/TNNLS.2017.2651903 +Filipe Alves Neto Verri,Network Unfolding Map by Vertex-Edge Dynamics Modeling.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn29.html#VerriUZ18,https://doi.org/10.1109/TNNLS.2016.2626341 +Tricha Anjali,New MPLS network management techniques based on adaptive learning.,2005,16,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn16.html#AnjaliSO05,https://doi.org/10.1109/TNN.2005.853428 +Abbas Khosravi,Comprehensive Review of Neural Network-Based Prediction Intervals and New Advances.,2011,22,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn22.html#KhosraviNCA11a,https://doi.org/10.1109/TNN.2011.2162110 +Giuseppe De Nicolao,Regularization networks: fast weight calculation via Kalman filtering.,2001,12,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn12.html#NicolaoF01,https://doi.org/10.1109/72.914520 +ShuiGuang Deng,On Deep Learning for Trust-Aware Recommendations in Social Networks.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn28.html#DengHXWW17,https://doi.org/10.1109/TNNLS.2016.2514368 +Mehmet Fatih Amasyali,Cline: A New Decision-Tree Family.,2008,19,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn19.html#AmasyaliE08,https://doi.org/10.1109/TNN.2007.910729 +Zhengguang Wu,Exponential Stabilization for Sampled-Data Neural-Network-Based Control Systems.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn25.html#WuSSC14,https://doi.org/10.1109/TNNLS.2014.2306202 +Francesco Palmieri,Self-association and Hebbian learning in linear neural networks.,1995,6,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn6.html#PalmieriZ95,https://doi.org/10.1109/72.410360 +Adam Krzyzak,Radial basis function networks and complexity regularization in function learning.,1998,9,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn9.html#KrzyzakL98,https://doi.org/10.1109/72.661120 +Chun-Hsien Tsai,Neuro-sliding mode control with its applications to seesaw systems.,2004,15,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn15.html#TsaiCY04,https://doi.org/10.1109/TNN.2003.811560 +Andrea Dal Pozzolo,Credit Card Fraud Detection: A Realistic Modeling and a Novel Learning Strategy.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#PozzoloBCAB18,https://doi.org/10.1109/TNNLS.2017.2736643 +Leimin Wang,Finite-Time Stabilization and Adaptive Control of Memristor-Based Delayed Neural Networks.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn28.html#WangSZ17,https://doi.org/10.1109/TNNLS.2016.2598598 +Chan Wai Ting,A Novel Blood Glucose Regulation Using TSK0-FCMAC: A Fuzzy CMAC Based on the Zero-Ordered TSK Fuzzy Inference Scheme.,2009,20,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn20.html#TingQ09,https://doi.org/10.1109/TNN.2008.2011735 +Biao Luo,Adaptive Constrained Optimal Control Design for Data-Based Nonlinear Discrete-Time Systems With Critic-Only Structure.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#LuoLW18,https://doi.org/10.1109/TNNLS.2017.2751018 +Hongbong Kim,Object recognition of one-DOF tools by a back-propagation neural net.,1995,6,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn6.html#KimN95,https://doi.org/10.1109/72.363483 +Siu-Yeung Cho,Learning parametric specular reflectance model by radial basis function network.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn11.html#ChoC00,https://doi.org/10.1109/72.883483 +Mohan Krishna Ranganathan,Neural and fuzzy computation techniques for playout delay adaptation in VoIP networks.,2005,16,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn16.html#RanganathanK05,https://doi.org/10.1109/TNN.2005.853418 +Danil V. Prokhorov,Adaptive critic designs.,1997,8,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn8.html#ProkhorovW97,https://doi.org/10.1109/72.623201 +S. Sathiya Keerthi,A fast iterative nearest point algorithm for support vector machine classifier design.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn11.html#KeerthiSBM00,https://doi.org/10.1109/72.822516 +DeLiang Wang,The time dimension for scene analysis.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#Wang05a,https://doi.org/10.1109/TNN.2005.852235 +Ling Shao 0001,Feature Learning for Image Classification Via Multiobjective Genetic Programming.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn25.html#ShaoLL14,https://doi.org/10.1109/TNNLS.2013.2293418 +Barak A. Pearlmutter,Comments on 'Dynamic programming approach to optimal weight selection in multilayer neural networks' [with reply].,1992,3,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn3.html#PearlmutterS92,https://doi.org/10.1109/72.165609 +Feifei Yang,Pattern-Based NN Control of a Class of Uncertain Nonlinear Systems.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#YangW18,https://doi.org/10.1109/TNNLS.2017.2655503 +Chandra Shekhar Dhir,Discriminant Independent Component Analysis.,2011,22,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn22.html#DhirL11,https://doi.org/10.1109/TNN.2011.2122266 +Rolf Carlson,The upper bound neural network and a class of consistent labeling problems.,1995,6,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn6.html#Carlson95,https://doi.org/10.1109/72.410357 +Jie Lian,Passivity of Switched Recurrent Neural Networks With Time-Varying Delays.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn26.html#LianW15,https://doi.org/10.1109/TNNLS.2014.2379920 +Bernabé Linares-Barranco,Guest editorial - Special issue on neural networks hardware implementations.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#Linares-BarrancoAIS03,https://doi.org/10.1109/TNN.2003.819420 +Nicolas Boëly,New Approach for the Identification and Validation of a Nonlinear F/A-18 Model by Use of Neural Networks.,2010,21,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn21.html#BoelyB10,https://doi.org/10.1109/TNN.2010.2071398 +Whitney Tabor,Learning exponential state-growth languages by hill climbing.,2003,14,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn14.html#Tabor03,https://doi.org/10.1109/TNN.2003.809421 +Chih-Jen Lin,On the Convergence of Multiplicative Update Algorithms for Nonnegative Matrix Factorization.,2007,18,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn18.html#Lin07,https://doi.org/10.1109/TNN.2007.895831 +Jayaraman J. Thiagarajan,Learning Stable Multilevel Dictionaries for Sparse Representations.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn26.html#ThiagarajanRS15,https://doi.org/10.1109/TNNLS.2014.2361052 +Bartosz Boguslawski,Twin Neurons for Efficient Real-World Data Distribution in Networks of Neural Cliques: Applications in Power Management in Electronic Circuits.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn27.html#BoguslawskiGSH16,https://doi.org/10.1109/TNNLS.2015.2480545 +Xiaofeng Chen 0009,Stability Analysis of Continuous-Time and Discrete-Time Quaternion-Valued Neural Networks With Linear Threshold Neurons.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#ChenSLZL18,https://doi.org/10.1109/TNNLS.2017.2704286 +George E. Fulcher,A polynomial network for predicting temperature distributions.,1994,5,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn5.html#FulcherB94,https://doi.org/10.1109/72.286909 +Cristian Filici,On a Neural Approximator to ODEs.,2008,19,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn19.html#Filici08,https://doi.org/10.1109/TNN.2007.915109 +Sheng Wan,Parameter Incremental Learning Algorithm for Neural Networks.,2006,17,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn17.html#WanB06,https://doi.org/10.1109/TNN.2006.880581 +Xiaogang Deng,Nonlinear Process Fault Diagnosis Based on Serial Principal Component Analysis.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn29.html#DengTCH18,https://doi.org/10.1109/TNNLS.2016.2635111 +Yanyi Rao,Characterization of Linearly Separable Boolean Functions: A Graph-Theoretic Perspective.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn28.html#RaoZ17,https://doi.org/10.1109/TNNLS.2016.2542205 +Zuyuan Yang,Nonnegative Blind Source Separation by Sparse Component Analysis Based on Determinant Measure.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn23.html#YangXXDR12,https://doi.org/10.1109/TNNLS.2012.2208476 +Yili Xia,Performance Bounds of Quaternion Estimators.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn26.html#XiaJNM15,https://doi.org/10.1109/TNNLS.2015.2388782 +Jin Liu 0004,A CMOS feedforward neural-network chip with on-chip parallel learning for oscillation cancellation.,2002,13,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn13.html#LiuBH02,https://doi.org/10.1109/TNN.2002.1031948 +Mauro Di Marco,Nonsmooth Neural Network for Convex Time-Dependent Constraint Satisfaction Problems.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn27.html#MarcoFNP16,https://doi.org/10.1109/TNNLS.2015.2404773 +Okko Johannes Räsänen,Sequence Prediction With Sparse Distributed Hyperdimensional Coding Applied to the Analysis of Mobile Phone Use Patterns.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn27.html#RasanenS16,https://doi.org/10.1109/TNNLS.2015.2462721 +Edward S. Plumer,Optimal control of terminal processes using neural networks.,1996,7,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn7.html#Plumer96,https://doi.org/10.1109/72.485676 +Arjpolson Pukrittayakamee,Practical Training Framework for Fitting a Function and Its Derivatives.,2011,22,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn22.html#PukrittayakameeHRBK11,https://doi.org/10.1109/TNN.2011.2128344 +Seho Oh,Dispersive propagation skew effects in iterative neural networks.,1991,2,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn2.html#OhM91,https://doi.org/10.1109/72.80305 +Hong Pan,Efficient Object Recognition Using Boundary Representation and Wavelet Neural Network.,2008,19,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn19.html#PanX08,https://doi.org/10.1109/TNN.2008.2006331 +Botla Ganesh,Modeling of Batch Processes Using Explicitly Time-Dependent Artificial Neural Networks.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn25.html#GaneshKR14,https://doi.org/10.1109/TNNLS.2013.2285242 +Yun-Seog Yeun,The Group Latent Variable Approach to Probit Binary Classifications.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn25.html#YeunK14,https://doi.org/10.1109/TNNLS.2013.2285784 +Chin-Teng Lin,Neural-network-based adaptive hybrid-reflectance model for 3-D surface reconstruction.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#LinCL05,https://doi.org/10.1109/TNN.2005.853333 +Zhaohong Deng,Knowledge-Leverage-Based TSK Fuzzy System Modeling.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn24.html#DengJCCW13,https://doi.org/10.1109/TNNLS.2013.2253617 +E. A. de Oliveira,The Rosenblatt Bayesian Algorithm Learning in a Nonstationary Environment.,2007,18,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn18.html#Oliveira07,https://doi.org/10.1109/TNN.2006.889943 +Kan Xie,Rate of Convergence of the FOCUSS Algorithm.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn28.html#XieHCF17,https://doi.org/10.1109/TNNLS.2016.2532358 +Ana Isabel González,An analysis of the GLVQ algorithm.,1995,6,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn6.html#GonzalezGD95,https://doi.org/10.1109/72.392266 +Shengping Zhang,A Biologically Inspired Appearance Model for Robust Visual Tracking.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn28.html#ZhangLYZTL17,https://doi.org/10.1109/TNNLS.2016.2586194 +Wenming Zheng,A rank-one update algorithm for fast solving kernel Foley-Sammon optimal discriminant vectors.,2010,21,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn21.html#ZhengLT10,https://doi.org/10.1109/TNN.2009.2037149 +Guoqi Li,Model-Based Online Learning With Kernels.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn24.html#LiWLZYM13,https://doi.org/10.1109/TNNLS.2012.2229293 +Chuan-Ke Zhang,Delay-Dependent Stability Criteria for Generalized Neural Networks With Two Delay Components.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn25.html#ZhangHJWW14,https://doi.org/10.1109/TNNLS.2013.2284968 +Chih-Min Lin,RCMAC Hybrid Control for MIMO Uncertain Nonlinear Systems Using Sliding-Mode Technology.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#LinCC07,https://doi.org/10.1109/TNN.2007.891198 +Xi Peng 0001,Connections Between Nuclear-Norm and Frobenius-Norm-Based Representations.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn29.html#PengLYT18,https://doi.org/10.1109/TNNLS.2016.2608834 +George Kesidis,Analog optimization with Wong's stochastic neural network.,1995,6,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn6.html#Kesidis95,https://doi.org/10.1109/72.363429 +Imen Hammami,Kohonen's Map Approach for the Belief Mass Modeling.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn27.html#HammamiMHD16,https://doi.org/10.1109/TNNLS.2015.2480772 +Wei Zhang,Synchronization of Memristor-Based Coupling Recurrent Neural Networks With Time-Varying Delays and Impulses.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn26.html#ZhangLHH15,https://doi.org/10.1109/TNNLS.2015.2435794 +Isaac Meilijson,A single-iteration threshold Hamming network.,1995,6,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn6.html#MeilijsonRS95,https://doi.org/10.1109/72.363428 +Louiza Sellami,An inverse Hollis-Paulos artificial neural network.,1998,9,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn9.html#SellamiN98,https://doi.org/10.1109/72.712175 +Wei-Chang Yeh,New Parameter-Free Simplified Swarm Optimization for Artificial Neural Network Training and its Application in the Prediction of Time Series.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn24.html#Yeh13,https://doi.org/10.1109/TNNLS.2012.2232678 +Ying Song,New Chaotic PSO-Based Neural Network Predictive Control for Nonlinear Process.,2007,18,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn18.html#SongCY07,https://doi.org/10.1109/TNN.2006.890809 +Kenji Fukumizu,Statistical active learning in multilayer perceptrons.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn11.html#Fukumizu00,https://doi.org/10.1109/72.822506 +Yongliang Yang,Leader-Follower Output Synchronization of Linear Heterogeneous Systems With Active Leader Using Reinforcement Learning.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#YangMWY18,https://doi.org/10.1109/TNNLS.2018.2803059 +Jill P. Card,Dynamic neural control for a plasma etch process.,1997,8,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn8.html#CardSK97,https://doi.org/10.1109/72.595886 +Boaz Vigdor,Accurate and Fast Off and Online Fuzzy ARTMAP-Based Image Classification With Application to Genetic Abnormality Diagnosis.,2006,17,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn17.html#VigdorL06,https://doi.org/10.1109/TNN.2006.877532 +Chong-Ho Choi,Constructive neural networks with piecewise interpolation capabilities for function approximations.,1994,5,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn5.html#ChoiC94,https://doi.org/10.1109/72.329691 +Shaojun Wang,Learning mixture models with the regularized latent maximum entropy principle.,2004,15,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn15.html#WangSPZ04,https://doi.org/10.1109/TNN.2004.828755 +Wenming Zheng,Facial expression recognition using kernel canonical correlation analysis (KCCA).,2006,17,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn17.html#ZhengZZZ06,https://doi.org/10.1109/TNN.2005.860849 +Jean-Pierre Vila,Bayesian nonlinear model selection and neural networks: a conjugate prior approach.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn11.html#VilaWN00,https://doi.org/10.1109/72.838999 +Ruizhuo Song,Off-Policy Integral Reinforcement Learning Method to Solve Nonlinear Continuous-Time Multiplayer Nonzero-Sum Games.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn28.html#SongLW17,https://doi.org/10.1109/TNNLS.2016.2582849 +Simone G. O. Fiori,A theory for learning based on rigid bodies dynamics.,2002,13,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn13.html#Fiori02,https://doi.org/10.1109/TNN.2002.1000121 +Hong-Gui Han,Real-Time Model Predictive Control Using a Self-Organizing Neural Network.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn24.html#HanWQ13,https://doi.org/10.1109/TNNLS.2013.2261574 +Bin Tian,Temporal updating scheme for probabilistic neural network with application to satellite cloud classification.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn11.html#TianAHR00,https://doi.org/10.1109/72.857771 +Konstantinos I. Diamantaras,Optimal linear compression under unreliable representation and robust PCA neural models.,1999,10,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn10.html#DiamantarasHS99,https://doi.org/10.1109/72.788657 +Vaibhav Gandhi,Quantum Neural Network-Based EEG Filtering for a Brain-Computer Interface.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn25.html#GandhiPCBM14,https://doi.org/10.1109/TNNLS.2013.2274436 +Toshio Tsuji,A recurrent log-linearized Gaussian mixture network.,2003,14,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn14.html#TsujiBFK03,https://doi.org/10.1109/TNN.2003.809403 +Hans-Georg Zimmermann,Multi-agent modeling of multiple FX-markets by neural networks.,2001,12,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn12.html#ZimmermannNG01,https://doi.org/10.1109/72.935087 +Yimin Yang,Progressive Learning Machine: A New Approach for General Hybrid System Approximation.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn26.html#YangWWLL15,https://doi.org/10.1109/TNNLS.2014.2357683 +Xue Mei,Robust Multitask Multiview Tracking in Videos.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn26.html#MeiHPT15,https://doi.org/10.1109/TNNLS.2015.2399233 +Francesco Dinuzzo,Analysis of Fixed-Point and Coordinate Descent Algorithms for Regularized Kernel Methods.,2011,22,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn22.html#Dinuzzo11,https://doi.org/10.1109/TNN.2011.2164096 +Frédéric Mustière,Speech Enhancement Based on Nonlinear Models Using Particle Filters.,2009,20,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn20.html#MustiereBB09,https://doi.org/10.1109/TNN.2009.2033367 +Thanh Minh Nguyen,An extension of the standard mixture model for image segmentation.,2010,21,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn21.html#NguyenWA10,https://doi.org/10.1109/TNN.2010.2054109 +Teong Chee Chuah,Robust adaptive spread-spectrum receiver with neural net preprocessing in non-Gaussian noise.,2001,12,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn12.html#ChuahSH01,https://doi.org/10.1109/72.925557 +Tharam S. Dillon,Guest Editorial Everyday Applications Of Neural Networks.,1997,8,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn8.html#DillonAM97,https://doi.org/10.1109/TNN.1997.595877 +Kai Zhang 0001,Scaling Up Graph-Based Semisupervised Learning via Prototype Vector Machines.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn26.html#ZhangLKVP15,https://doi.org/10.1109/TNNLS.2014.2315526 +L. Wang,Effects of noise in training patterns on the memory capacity of the fully connected binary Hopfield neural network: mean-field theory and simulations.,1998,9,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn9.html#Wang98,https://doi.org/10.1109/72.701182 +Adil Omari,Feature Combiners With Gate-Generated Weights for Classification.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn24.html#OmariF13,https://doi.org/10.1109/TNNLS.2012.2223232 +Jason R. Stack,Kernel-Matching Pursuits With Arbitrary Loss Functions.,2009,20,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn20.html#StackDLC09,https://doi.org/10.1109/TNN.2008.2008337 +Jui-Cheng Yen,A new k-groups neural network.,2002,13,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn13.html#Yen02,https://doi.org/10.1109/TNN.2002.1031949 +Miguel Lázaro-Gredilla,Marginalized neural network mixtures for large-scale regression.,2010,21,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn21.html#Lazaro-GredillaF10,https://doi.org/10.1109/TNN.2010.2049859 +Bin Xu 0003,Reinforcement Learning Output Feedback NN Control Using Deterministic Learning Technique.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn25.html#XuYS14,https://doi.org/10.1109/TNNLS.2013.2292704 +Ting Chen,Artificial neural networks for 3-D motion analysis-Part II: Nonrigid motion.,1995,6,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn6.html#ChenLC95a,https://doi.org/10.1109/72.471368 +Weisheng Chen,Adaptive tracking for periodically time-varying and nonlinearly parameterized systems using multilayer neural networks.,2010,21,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn21.html#ChenJ10,https://doi.org/10.1109/TNN.2009.2038999 +Bukhari Che Ujang,Adaptive Convex Combination Approach for the Identification of Improper Quaternion Processes.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn25.html#UjangJTM14,https://doi.org/10.1109/TNNLS.2013.2248165 +Kurtis D. Cantley,Neural Learning Circuits Utilizing Nano-Crystalline Silicon Transistors and Memristors.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn23.html#CantleySSCV12,https://doi.org/10.1109/TNNLS.2012.2184801 +Adria Bofill-i-Petit,Synchrony detection and amplification by silicon neurons with STDP synapses.,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#Bofill-i-PetitM04,https://doi.org/10.1109/TNN.2004.832842 +Snorre Aunet,Real-time reconfigurable linear threshold elements implemented in floating-gate CMOS.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#AunetBS03,https://doi.org/10.1109/TNN.2003.816351 +Soroush Javidi,Fast Independent Component Analysis Algorithm for Quaternion Valued Signals.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#JavidiTM11,https://doi.org/10.1109/TNN.2011.2171362 +Miguel S. B. Almeida,Separation of Synchronous Sources Through Phase Locked Matrix Factorization.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn25.html#AlmeidaVB14,https://doi.org/10.1109/TNNLS.2013.2297791 +Marwan A. Jabri,Weight perturbation: an optimal architecture and learning technique for analog VLSI feedforward and recurrent multilayer networks.,1992,3,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn3.html#JabriF92,https://doi.org/10.1109/72.105429 +DeLiang Wang,Incremental learning of complex temporal patterns.,1996,7,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn7.html#WangY96,https://doi.org/10.1109/72.548174 +Yujuan Wang,Fraction Dynamic-Surface-Based Neuroadaptive Finite-Time Containment Control of Multiagent Systems in Nonaffine Pure-Feedback Form.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn28.html#WangS17,https://doi.org/10.1109/TNNLS.2015.2511005 +Ah Chung Tsoi,Locally recurrent globally feedforward networks: a critical review of architectures.,1994,5,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn5.html#TsoiB94,https://doi.org/10.1109/72.279187 +Guodong Guo,Learning similarity measure for natural image retrieval with relevance feedback.,2002,13,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn13.html#GuoJMZ02,https://doi.org/10.1109/TNN.2002.1021882 +Zhaoshui He,Symmetric Nonnegative Matrix Factorization: Algorithms and Applications to Probabilistic Clustering.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#HeXZZC11,https://doi.org/10.1109/TNN.2011.2172457 +Shuzhi Sam Ge,Neural-network control of nonaffine nonlinear system with zero dynamics by state and output feedback.,2003,14,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn14.html#GeZ03,https://doi.org/10.1109/TNN.2003.813823 +Nirwan Ansari,Traffic management of a satellite communication network using stochastic optimization.,1996,7,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn7.html#AnsariAB96,https://doi.org/10.1109/72.501729 +Luca Geretti,The Correspondence Between Deterministic and Stochastic Digital Neurons: Analysis and Methodology.,2008,19,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn19.html#GerettiA08,https://doi.org/10.1109/TNN.2008.2001775 +Chong Zhang 0003,Multiobjective Deep Belief Networks Ensemble for Remaining Useful Life Estimation in Prognostics.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn28.html#ZhangLQT17,https://doi.org/10.1109/TNNLS.2016.2582798 +Kai Keng Ang,Stock Trading Using RSPOP: A Novel Rough Set-Based Neuro-Fuzzy Approach.,2006,17,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn17.html#AngQ06,https://doi.org/10.1109/TNN.2006.875996 +Shaoning Pang,Face membership authentication using SVM classification tree generated by membership-based LLE data partition.,2005,16,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn16.html#PangKB05,https://doi.org/10.1109/TNN.2004.841776 +Ren Zheng,Stability of Analytic Neural Networks With Event-Triggered Synaptic Feedbacks.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn27.html#ZhengYLC16,https://doi.org/10.1109/TNNLS.2015.2488903 +Lipo Wang,On competitive learning.,1997,8,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn8.html#Wang97b,https://doi.org/10.1109/72.623224 +Simone G. O. Fiori,Nonsymmetric PDF estimation by artificial neurons: application to statistical characterization of reinforced composites.,2003,14,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn14.html#Fiori03,https://doi.org/10.1109/TNN.2003.813825 +Xin Luo 0001,A Nonnegative Latent Factor Model for Large-Scale Sparse Matrices in Recommender Systems via Alternating Direction Method.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn27.html#LuoZLYXZ16,https://doi.org/10.1109/TNNLS.2015.2415257 +Stuart W. Perry,Weight assignment for adaptive image restoration by neural networks.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn11.html#PerryG00,https://doi.org/10.1109/72.822518 +Katheryn Margaret Adeney,"Errata to ""on the use of separable volterra networks to model discrete-time volterra systems"".",2001,12,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn12.html#AdeneyK01a,https://doi.org/10.1109/TNN.2001.914541 +Jinde Cao,Exponential stability and periodic oscillatory solution in BAM networks with delays.,2002,13,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn13.html#CaoW02,https://doi.org/10.1109/72.991431 +Ilya Gluhovsky,Multinomial Least Angle Regression.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn23.html#Gluhovsky12,https://doi.org/10.1109/TNNLS.2011.2178480 +Wenzhangzhi Guo,Hair Segmentation Using Heuristically-Trained Neural Networks.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn29.html#GuoA18,https://doi.org/10.1109/TNNLS.2016.2614653 +Mohamed A. Khabou,Automatic target detection using entropy optimized shared-weight neural networks.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn11.html#KhabouG00,https://doi.org/10.1109/72.822520 +Meng Joo Er,Face recognition with radial basis function (RBF) neural networks.,2002,13,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn13.html#ErWLT02,https://doi.org/10.1109/TNN.2002.1000134 +Shaun W. Ryan,Improving the performance of Kanerva's associate memory.,1995,6,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn6.html#RyanA95,https://doi.org/10.1109/72.363443 +Mikael Bodén,Improved access to sequential motifs: a note on the architectural bias of recurrent networks.,2005,16,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn16.html#BodenH05,https://doi.org/10.1109/TNN.2005.844086 +Andrea Baraldi,Constructive feedforward ART clustering networks. II.,2002,13,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn13.html#BaraldiA02a,https://doi.org/10.1109/TNN.2002.1000131 +Wei-Chung Lin,A hierarchical multiple-view approach to three-dimensional object recognition.,1991,2,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn2.html#LinLTL91,https://doi.org/10.1109/72.80293 +Claudia Nölker,Visual recognition of continuous hand postures.,2002,13,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn13.html#NolkerR02,https://doi.org/10.1109/TNN.2002.1021898 +John Nassour,Qualitative Adaptive Reward Learning With Success Failure Maps: Applied to Humanoid Robot Walking.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn24.html#NassourHOC13,https://doi.org/10.1109/TNNLS.2012.2224370 +Azar Khurshid,A temporal-analysis-based pitch estimation system for noisy speech with a comparative study of performance of recent systems.,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#KhurshidD04,https://doi.org/10.1109/TNN.2004.832818 +Thomas Parisini,Neural approximations for infinite-horizon optimal control of nonlinear stochastic systems.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#ParisiniZ98,https://doi.org/10.1109/72.728390 +Rafik Braham,The design of a neural network with a biologically motivated architecture.,1990,1,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn1.html#BrahamH90,https://doi.org/10.1109/72.80250 +Xiao-Jian Li,Neural-Network-Based Adaptive Decentralized Fault-Tolerant Control for a Class of Interconnected Nonlinear Systems.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn29.html#LiY18,https://doi.org/10.1109/TNNLS.2016.2616906 +Dimitrios Bouzas,Graph Embedded Nonparametric Mutual Information for Supervised Dimensionality Reduction.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn26.html#BouzasAT15,https://doi.org/10.1109/TNNLS.2014.2329240 +Cristiano Cervellera,Deterministic Learning for Maximum-Likelihood Estimation Through Neural Networks.,2008,19,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn19.html#CervelleraMM08,https://doi.org/10.1109/TNN.2008.2000577 +Henrik Jacobsson,Improving procedures for evaluation of connectionist context-free language predictors.,2003,14,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn14.html#JacobssonZ03,https://doi.org/10.1109/TNN.2003.813837 +James Tin-Yau Kwok,Use of bias term in projection pursuit learning improves approximation and convergence properties.,1996,7,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn7.html#KwokY96,https://doi.org/10.1109/72.536312 +Fok Hing Chi Tivive,Efficient training algorithms for a class of shunting inhibitory convolutional neural networks.,2005,16,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn16.html#TiviveB05,https://doi.org/10.1109/TNN.2005.845144 +M. W. Roth,Survey of neural network technology for automatic target recognition.,1990,1,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn1.html#Roth90,https://doi.org/10.1109/72.80203 +Wengui Yang,Global Exponential Stability of Impulsive Fuzzy High-Order BAM Neural Networks With Continuously Distributed Delays.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#YangYC18,https://doi.org/10.1109/TNNLS.2017.2736581 +N. K. Roy,Polymer property prediction and optimization using neural networks.,2006,17,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn17.html#RoyPL06,https://doi.org/10.1109/TNN.2006.875981 +Sotirios P. Chatzis,Nonparametric Mixtures of Gaussian Processes With Power-Law Behavior.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn23.html#ChatzisD12,https://doi.org/10.1109/TNNLS.2012.2217986 +Wei Qiao 0001,Fault-Tolerant Indirect Adaptive Neurocontrol for a Static Synchronous Series Compensator in a Power Network With Missing Sensor Measurements.,2008,19,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn19.html#QiaoHV08,https://doi.org/10.1109/TNN.2008.2000164 +Paolo Campolucci,On-line learning algorithms for locally recurrent neural networks.,1999,10,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn10.html#CampolucciUPR99,https://doi.org/10.1109/72.750549 +Davide Anguita,Feed-Forward Support Vector Machine Without Multipliers.,2006,17,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn17.html#AnguitaPRS06,https://doi.org/10.1109/TNN.2006.877537 +David S. Chen,A robust backpropagation learning algorithm for function approximation.,1994,5,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn5.html#ChenJ94,https://doi.org/10.1109/72.286917 +Alan F. Murray,Enhanced MLP performance and fault tolerance resulting from synaptic weight noise during training.,1994,5,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn5.html#MurrayE94,https://doi.org/10.1109/72.317730 +Xiao-Jian Li,Graph Theory-Based Pinning Synchronization of Stochastic Complex Dynamical Networks.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn28.html#LiY17,https://doi.org/10.1109/TNNLS.2016.2515080 +John Robert McDonnell,Evolving recurrent perceptrons for time-series modeling.,1994,5,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn5.html#McdonnellW94,https://doi.org/10.1109/72.265958 +Miaolong Yuan,Real-Time Keypoint Recognition Using Restricted Boltzmann Machine.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn25.html#YuanTL14,https://doi.org/10.1109/TNNLS.2014.2303478 +Derek Harter,Chaotic neurodynamics for autonomous agents.,2005,16,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn16.html#HarterK05,https://doi.org/10.1109/TNN.2005.845086 +Colin Sauze,Artificial Endocrine Controller for Power Management in Robotic Systems.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn24.html#SauzeN13,https://doi.org/10.1109/TNNLS.2013.2271094 +Da-Zheng Feng,A cross-associative neural network for SVD of non-squared data matrix in signal processing.,2001,12,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn12.html#FengBZ01,https://doi.org/10.1109/72.950149 +Mahmood R. Azimi-Sadjadi,An Adaptable Connectionist Text-Retrieval System With Relevance Feedback.,2007,18,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn18.html#Azimi-SadjadiSSS07,https://doi.org/10.1109/TNN.2007.895912 +Guillermo L. Grinblat,Solving Nonstationary Classification Problems With Coupled Support Vector Machines.,2011,22,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn22.html#GrinblatUCG11,https://doi.org/10.1109/TNN.2010.2083684 +Ricardo Santiago-Mozos,Extended Input Space Support Vector Machine.,2011,22,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn22.html#Santiago-MozosPA11,https://doi.org/10.1109/TNN.2010.2090668 +Jiali Yu,Parameter as a Switch Between Dynamical States of a Network in Population Decoding.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn28.html#YuMY17,https://doi.org/10.1109/TNNLS.2015.2485263 +Dan Zhang 0001,Estimator Design for Discrete-Time Switched Neural Networks With Asynchronous Switching and Time-Varying Delay.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn23.html#ZhangYWO12,https://doi.org/10.1109/TNNLS.2012.2186824 +M. S. Iyer,A method to determine the required number of neural-network training repetitions.,1999,10,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn10.html#IyerR99,https://doi.org/10.1109/72.750573 +Sarangapani Jagannathan,Discrete-time CMAC NN control of feedback linearizable nonlinear systems under a persistence of excitation.,1999,10,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn10.html#Jagannathan99,https://doi.org/10.1109/72.737499 +D. Coue,A four-quadrant subthreshold mode multiplier for analog neural-network applications.,1996,7,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn7.html#CoueW96,https://doi.org/10.1109/72.536315 +C. L. Philip Chen,Broad Learning System: An Effective and Efficient Incremental Learning System Without the Need for Deep Architecture.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn29.html#ChenL18,https://doi.org/10.1109/TNNLS.2017.2716952 +Shutao Li,Fusing images with different focuses using support vector machines.,2004,15,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn15.html#LiKTW04,https://doi.org/10.1109/TNN.2004.837780 +Kotaro Terabayashi,Ultrawideband Direction-of-Arrival Estimation Using Complex-Valued Spatiotemporal Neural Networks.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn25.html#TerabayashiNH14,https://doi.org/10.1109/TNNLS.2014.2313869 +Davide Anguita,Worst case analysis of weight inaccuracy effects in multilayer perceptrons.,1999,10,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn10.html#AnguitaRR99,https://doi.org/10.1109/72.750571 +Bo Xie 0002,Toward the Optimization of Normalized Graph Laplacian.,2011,22,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn22.html#XieWT11,https://doi.org/10.1109/TNN.2011.2107919 +Engsiong Chng,Gradient radial basis function networks for nonlinear and nonstationary time series prediction.,1996,7,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn7.html#ChngCM96,https://doi.org/10.1109/72.478403 +Debarka Sengupta,A Scoring Scheme for Online Feature Selection: Simulating Model Performance Without Retraining.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn28.html#SenguptaBS17,https://doi.org/10.1109/TNNLS.2016.2514270 +Yingzhong Shi,An Improved TA-SVM Method Without Matrix Inversion and Its Fast Implementation for Nonstationary Datasets.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn26.html#ShiCW15,https://doi.org/10.1109/TNNLS.2014.2359954 +Pingzhou Liu,Discrete-Time Analogs for a Class of Continuous-Time Recurrent Neural Networks.,2007,18,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn18.html#LiuH07,https://doi.org/10.1109/TNN.2007.891593 +Guo-Qing Wei,Learning shape from shading by a multilayer network.,1996,7,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn7.html#WeiH96,https://doi.org/10.1109/72.508940 +Chua-Chin Wang,An analysis of high-capacity discrete exponential BAM.,1995,6,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn6.html#WangD95,https://doi.org/10.1109/72.363485 +Fuchun Sun,Stable neural-network-based adaptive control for sampled-data nonlinear systems.,1998,9,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn9.html#SunSW98,https://doi.org/10.1109/72.712170 +Gangshan Jing,Consensus of Multiagent Systems With Distance-Dependent Communication Networks.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn28.html#JingZW17,https://doi.org/10.1109/TNNLS.2016.2598355 +Rohitash Chandra,Competition and Collaboration in Cooperative Coevolution of Elman Recurrent Neural Networks for Time-Series Prediction.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn26.html#Chandra15,https://doi.org/10.1109/TNNLS.2015.2404823 +Hien Duy Nguyen,Asymptotic Normality of the Maximum Pseudolikelihood Estimator for Fully Visible Boltzmann Machines.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn27.html#NguyenW16,https://doi.org/10.1109/TNNLS.2015.2425898 +Simone Scardapane,Online Sequential Extreme Learning Machine With Kernels.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn26.html#ScardapaneCSU15,https://doi.org/10.1109/TNNLS.2014.2382094 +Zhanshan Wang,Global asymptotic stability of reaction-diffusion Cohen-Grossberg neural networks with continuously distributed delays.,2010,21,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn21.html#WangZ10,https://doi.org/10.1109/TNN.2009.2033910 +Robert B. Allen,Learning of stable states in stochastic asymmetric networks.,1990,1,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn1.html#AllenA90,https://doi.org/10.1109/72.80235 +Martin M. S. Lee,An efficient method for computing leave-one-out error in support vector machines with Gaussian kernels.,2004,15,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn15.html#LeeKOD04,https://doi.org/10.1109/TNN.2004.824266 +Sinno Jialin Pan,Domain Adaptation via Transfer Component Analysis.,2011,22,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn22.html#PanTKY11,https://doi.org/10.1109/TNN.2010.2091281 +Alex Alexandridis,Radial Basis Function Network Training Using a Nonsymmetric Partition of the Input Space and Particle Swarm Optimization.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn24.html#AlexandridisCS13,https://doi.org/10.1109/TNNLS.2012.2227794 +Zhen Hu,Dependent Online Kernel Learning With Constant Number of Random Fourier Features.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn26.html#HuLZ15,https://doi.org/10.1109/TNNLS.2014.2387313 +K. Chen,Neural and Adaptive Systems: Fundamentals Through Simulations.,2001,12,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn12.html#ChenKKH01c,https://doi.org/10.1109/TNN.2001.925574 +Pravin Chandra,Feedforward sigmoidal networks - equicontinuity and fault-tolerance properties.,2004,15,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn15.html#ChandraS04,https://doi.org/10.1109/TNN.2004.831198 +Marzuki Khalid,Temperature regulation with neural networks and alternative control schemes.,1995,6,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn6.html#KhalidOY95,https://doi.org/10.1109/72.377964 +Isaac E. Lagaris,Artificial neural networks for solving ordinary and partial differential equations.,1998,9,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn9.html#LagarisLF98,https://doi.org/10.1109/72.712178 +Terry Troudet,Neuromorphic learning of continuous-valued mappings from noise-corrupted data.,1991,2,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn2.html#TroudetM91,https://doi.org/10.1109/72.80340 +Jen-Tzung Chien,Nonstationary Source Separation Using Sequential and Variational Bayesian Learning.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn24.html#ChienH13,https://doi.org/10.1109/TNNLS.2013.2242090 +Shigeki Miyake,A neural network approach to a Bayesian statistical decision problem.,1991,2,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn2.html#MiyakeK91,https://doi.org/10.1109/72.134293 +Nizar Bouguila,Count Data Modeling and Classification Using Finite Mixtures of Distributions.,2011,22,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn22.html#Bouguila11,https://doi.org/10.1109/TNN.2010.2091428 +Alexander A. Frolov,Boolean Factor Analysis by Attractor Neural Network.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#FrolovHMP07,https://doi.org/10.1109/TNN.2007.891664 +Davide Bacciu,Compositional Generative Mapping for Tree-Structured Data - Part I: Bottom-Up Probabilistic Modeling of Trees.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn23.html#BacciuMS12,https://doi.org/10.1109/TNNLS.2012.2222044 +Kai Zhao 0004,Prescribed Performance Control of Uncertain Euler-Lagrange Systems Subject to Full-State Constraints.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#ZhaoSMH18,https://doi.org/10.1109/TNNLS.2017.2727223 +Hongbo Zhou,A Scalable Projective Scaling Algorithm for lp Loss With Convex Penalizations.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn26.html#ZhouC15,https://doi.org/10.1109/TNNLS.2014.2314129 +Angel Jiménez-Fernandez,A Binaural Neuromorphic Auditory Sensor for FPGA: A Spike Signal Processing Approach.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn28.html#Jimenez-Fernandez17,https://doi.org/10.1109/TNNLS.2016.2583223 +Alfredo Vellido,Selective smoothing of the generative topographic mapping.,2003,14,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn14.html#VellidoEL03,https://doi.org/10.1109/TNN.2003.813834 +Tomohisa Hayakawa,Neural Network Adaptive Control for a Class of Nonlinear Uncertain Dynamical Systems With Asymptotic Stability Guarantees.,2008,19,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn19.html#HayakawaHH08,https://doi.org/10.1109/TNN.2007.902704 +Stephen A. Billings,Sparse Model Identification Using a Forward Orthogonal Regression Algorithm Aided by Mutual Information.,2007,18,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn18.html#BillingsW07,https://doi.org/10.1109/TNN.2006.886356 +Wlodzislaw Duch,Challenges for Computational Intelligence.,2009,20,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn20.html#DuchM09,https://doi.org/10.1109/TNN.2009.2015975 +Richard T. Freeman,Web content management by self-organization.,2005,16,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn16.html#FreemanY05,https://doi.org/10.1109/TNN.2005.853415 +Francisco Fernández-Navarro,Ordinal Neural Networks Without Iterative Tuning.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn25.html#Fernandez-NavarroRC14,https://doi.org/10.1109/TNNLS.2014.2304976 +Ran He,Information Theoretic Subspace Clustering.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn27.html#HeWSZL16,https://doi.org/10.1109/TNNLS.2015.2500600 +Isaac J. Sledge,Guided Policy Exploration for Markov Decision Processes Using an Uncertainty-Based Value-of-Information Criterion.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#SledgeEP18,https://doi.org/10.1109/TNNLS.2018.2812709 +Dean K. McNeill,Refractory pulse counting Processes in stochastic neural computers.,2005,16,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn16.html#McNeillC05,https://doi.org/10.1109/TNN.2005.844089 +Xiaoqin Zeng,Sensitivity analysis of multilayer perceptron to input and weight perturbations.,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#ZengY01,https://doi.org/10.1109/72.963772 +Boris Igelnik,The ensemble approach to neural-network learning and generalization.,1999,10,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn10.html#IgelnikPLS99,https://doi.org/10.1109/72.737490 +Richard Reeve,An analysis of neural models for walking control.,2005,16,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn16.html#ReeveH05,https://doi.org/10.1109/TNN.2005.844901 +Dusan Stosic,QRNN: q -Generalized Random Neural Network.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn28.html#StosicSZLS17,https://doi.org/10.1109/TNNLS.2015.2513365 +Chi-Chien Lee,Color image processing in a cellular neural-network environment.,1996,7,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn7.html#LeeG96,https://doi.org/10.1109/72.536306 +Riccardo Bellazzi,How to improve fuzzy-neural system modeling by means of qualitative simulation.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn11.html#BellazziGI00,https://doi.org/10.1109/72.822528 +Wei Liu 0041,Cooperative Adaptive Output Regulation for Second-Order Nonlinear Multiagent Systems With Jointly Connected Switching Networks.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn29.html#LiuH18,https://doi.org/10.1109/TNNLS.2016.2636930 +Hao Xu 0002,Neural Network-Based Finite Horizon Stochastic Optimal Control Design for Nonlinear Networked Control Systems.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn26.html#XuJ15,https://doi.org/10.1109/TNNLS.2014.2315622 +Yuanyuan Zhao,Locally Weighted Online Approximation-Based Control for Nonaffine Systems.,2007,18,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn18.html#ZhaoF07a,https://doi.org/10.1109/TNN.2007.895908 +Helge J. Ritter,Asymptotic level density for a class of vector quantization processes.,1991,2,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn2.html#Ritter91,https://doi.org/10.1109/72.80310 +Martin Bouchard,Improved training of neural networks for the nonlinear active control of sound and vibration.,1999,10,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn10.html#BouchardPD99,https://doi.org/10.1109/72.750568 +Vivek Yadav,Robust/Optimal Temperature Profile Control of a High-Speed Aerospace Vehicle Using Neural Networks.,2007,18,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn18.html#YadavPB07,https://doi.org/10.1109/TNN.2007.899229 +Simon X. Yang,Real-time collision-free motion planning of a mobile robot using a Neural Dynamics-based approach.,2003,14,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn14.html#YangM03,https://doi.org/10.1109/TNN.2003.820618 +Yasar Becerikli,Trajectory priming with dynamic fuzzy networks in nonlinear optimal control.,2004,15,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn15.html#BecerikliOK04,https://doi.org/10.1109/TNN.2004.824422 +Nobuo Funabiki,A gradual neural-network algorithm for jointly time-slot/code assignment problems in packet radio networks.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#FunabikiK98,https://doi.org/10.1109/72.728402 +C. M. Kwan,Robust backstepping control of induction motors using neural networks.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn11.html#KwanL00,https://doi.org/10.1109/72.870049 +Feihu Huang,Joint Estimation of Multiple Conditional Gaussian Graphical Models.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#HuangCH18,https://doi.org/10.1109/TNNLS.2017.2710090 +Yinan Yu,CLAss-Specific Subspace Kernel Representations and Adaptive Margin Slack Minimization for Large Scale Classification.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn29.html#YuDMK18,https://doi.org/10.1109/TNNLS.2016.2619399 +Xu Shen,Continuous Dropout.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#ShenTLXT18,https://doi.org/10.1109/TNNLS.2017.2750679 +Gonzalo Pajares,A Hopfield Neural Network for Image Change Detection.,2006,17,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn17.html#Pajares06,https://doi.org/10.1109/TNN.2006.875978 +Scott D. Snyder,Active control of vibration using a neural network.,1995,6,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn6.html#SnyderT95,https://doi.org/10.1109/72.392246 +A. Le Gall,Extended Hopfield models for combinatorial optimization.,1999,10,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn10.html#GallZ99,https://doi.org/10.1109/72.737495 +Young Moon Park,An optimal tracking neuro-controller for nonlinear dynamic systems.,1996,7,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn7.html#ParkCL96,https://doi.org/10.1109/72.536307 +Norikazu Takahashi,Global Convergence of Decomposition Learning Methods for Support Vector Machines.,2006,17,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn17.html#TakahashiN06,https://doi.org/10.1109/TNN.2006.880584 +Fujin Zhong,Discriminant Locality Preserving Projections Based on L1-Norm Maximization.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn25.html#ZhongZL14,https://doi.org/10.1109/TNNLS.2014.2303798 +Michael B. Leahy Jr.,Neural network payload estimation for adaptive robot control.,1991,2,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn2.html#LeahyJR91,https://doi.org/10.1109/72.80294 +Kris De Brabanter,Approximate Confidence and Prediction Intervals for Least Squares Support Vector Regression.,2011,22,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn22.html#BrabanterBSM11,https://doi.org/10.1109/TNN.2010.2087769 +Hui Li 0020,A Preference-Based Multiobjective Evolutionary Approach for Sparse Optimization.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#LiZDX18,https://doi.org/10.1109/TNNLS.2017.2677973 +Deliang Wang,Guest Editorial Special Issue on Temporal Coding for Neural Information Processing.,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#WangFKLM04,https://doi.org/10.1109/TNN.2004.836470 +Xiatian Zhu,Constrained Clustering With Imperfect Oracles.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn27.html#ZhuLG16,https://doi.org/10.1109/TNNLS.2014.2387425 +Julio Aracena,Positive and negative circuits in discrete neural networks.,2004,15,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn15.html#AracenaDC04,https://doi.org/10.1109/TNN.2003.821555 +Luigi Fortuna,A comparison between HMLP and HRBF for attitude control.,2001,12,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn12.html#FortunaMX01,https://doi.org/10.1109/72.914526 +Jie Mei,Distributed Containment Control for Multiple Unknown Second-Order Nonlinear Systems With Application to Networked Lagrangian Systems.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn26.html#Mei0LM15,https://doi.org/10.1109/TNNLS.2014.2359955 +Erdogan çesmeli,Texture segmentation using Gaussian-Markov random fields and neural oscillator networks.,2001,12,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn12.html#CesmeliW01,https://doi.org/10.1109/72.914533 +Peter A. Cariani,Temporal codes and computations for sensory representation and scene analysis.,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#Cariani04,https://doi.org/10.1109/TNN.2004.833305 +Nikita Barabanov,Stability analysis of discrete-time recurrent neural networks.,2002,13,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn13.html#BarabanovP02,https://doi.org/10.1109/72.991416 +Junfeng Zhang,Synchronization Control of Neural Networks With State-Dependent Coefficient Matrices.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn27.html#ZhangZH16,https://doi.org/10.1109/TNNLS.2015.2465136 +Ligang Wu,Stability and Synchronization of Discrete-Time Neural Networks With Switching Parameters and Time-Varying Delays.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn24.html#WuFL13,https://doi.org/10.1109/TNNLS.2013.2271046 +Liyang Wang,Energy-Efficient SVM Learning Control System for Biped Walking Robots.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn24.html#WangLCZLC13,https://doi.org/10.1109/TNNLS.2013.2242486 +Abdesselam Bouzerdoum,Neural network for quadratic optimization with bound constraints.,1993,4,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn4.html#BouzerdoumP93,https://doi.org/10.1109/72.207617 +Xing-Bao Gao,A novel neural network for variational inequalities with linear and nonlinear constraints.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#GaoLQ05,https://doi.org/10.1109/TNN.2005.852974 +Xibin Zhao,Beyond Pairwise Matching: Person Reidentification via High-Order Relevance Learning.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#ZhaoWZDGS18,https://doi.org/10.1109/TNNLS.2017.2736640 +Anand Rangarajan 0001,A Lagrangian relaxation network for graph matching.,1996,7,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn7.html#RangarajanM96,https://doi.org/10.1109/72.548165 +Michel Mandjes,Load characterization and anomaly detection for voice over IP traffic.,2005,16,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn16.html#MandjesSS05,https://doi.org/10.1109/TNN.2005.853427 +Jian Wang,A Novel Pruning Algorithm for Smoothing Feedforward Neural Networks Based on Group Lasso Method.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#WangXYZ18,https://doi.org/10.1109/TNNLS.2017.2748585 +Cristiano Cervellera,Deterministic design for neural network learning: an approach based on discrepancy.,2004,15,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn15.html#CervelleraM04,https://doi.org/10.1109/TNN.2004.824413 +Nikolaos Passalis,Dimensionality Reduction Using Similarity-Induced Embeddings.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#PassalisT18,https://doi.org/10.1109/TNNLS.2017.2728818 +Dongsheng Guo,Zhang Neural Network for Online Solution of Time-Varying Linear Matrix Inequality Aided With an Equality Conversion.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn25.html#GuoZ14,https://doi.org/10.1109/TNNLS.2013.2275011 +Xiaoheng Jiang,Cascaded Subpatch Networks for Effective CNNs.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#JiangPSL18,https://doi.org/10.1109/TNNLS.2017.2689098 +Chenping Hou,Discriminative Embedded Clustering: A Framework for Grouping High-Dimensional Data.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn26.html#HouNYT15,https://doi.org/10.1109/TNNLS.2014.2337335 +Christopher M. Bishop,Curvature-driven smoothing: a learning algorithm for feedforward networks.,1993,4,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn4.html#Bishop93,https://doi.org/10.1109/72.248466 +Alain Pétrowski,Performance analysis of a pipelined backpropagation parallel algorithm.,1993,4,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn4.html#PetrowskiDG93,https://doi.org/10.1109/72.286892 +Alessandro Bortoletti,A new class of quasi-Newtonian methods for optimal learning in MLP-networks.,2003,14,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn14.html#BortolettiFFZ03,https://doi.org/10.1109/TNN.2003.809425 +Seán F. McLoone,A hybrid linear/nonlinear training algorithm for feedforward neural networks.,1998,9,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn9.html#McLooneBIL98,https://doi.org/10.1109/72.701180 +Huaguang Zhang,Sampled-Data Synchronization Analysis of Markovian Neural Networks With Generally Incomplete Transition Rates.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn28.html#ZhangWWL17,https://doi.org/10.1109/TNNLS.2015.2507790 +Jun Wang 0002,Analysis and design of primal-dual assignment networks.,1998,9,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn9.html#WangX98,https://doi.org/10.1109/72.655040 +Nan-Ying Liang,A Fast and Accurate Online Sequential Learning Algorithm for Feedforward Networks.,2006,17,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn17.html#LiangHSS06,https://doi.org/10.1109/TNN.2006.880583 +R. Kamimura,Cooperative information maximization with Gaussian activation functions for self-organizing maps.,2006,17,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn17.html#Kamimura06,https://doi.org/10.1109/TNN.2006.875984 +Ze'ew Roth,Multidimensional density shaping by sigmoids.,1996,7,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn7.html#RothB96,https://doi.org/10.1109/72.536322 +Dongyue Chen,Scale-Invariant Amplitude Spectrum Modulation for Visual Saliency Detection.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn23.html#ChenC12,https://doi.org/10.1109/TNNLS.2012.2198888 +Niklas Lüdtke,A mixture model for population codes of Gabor filters.,2003,14,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn14.html#LudtkeW03,https://doi.org/10.1109/TNN.2003.813838 +Vassilios Petridis,Modular neural networks for MAP classification of time series and the partition algorithm.,1996,7,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn7.html#PetridisK96,https://doi.org/10.1109/72.478393 +Tommy W. S. Chow,Performance enhancement using nonlinear preprocessing.,1996,7,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn7.html#ChowL96,https://doi.org/10.1109/72.508947 +De-Shuang Huang,A Constructive Hybrid Structure Optimization Methodology for Radial Basis Probabilistic Neural Networks.,2008,19,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn19.html#HuangD08,https://doi.org/10.1109/TNN.2008.2004370 +Tae H. Lee,Extended Dissipative Analysis for Neural Networks With Time-Varying Delays.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn25.html#LeePPKL14,https://doi.org/10.1109/TNNLS.2013.2296514 +Mehmet Gönen,Multiclass Posterior Probability Support Vector Machines.,2008,19,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn19.html#GonenTA08,https://doi.org/10.1109/TNN.2007.903157 +Paolo Guarneri,A Neural-Network-Based Model for the Dynamic Simulation of the Tire/Suspension System While Traversing Road Irregularities.,2008,19,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn19.html#GuarneriRG08,https://doi.org/10.1109/TNN.2008.2000806 +Agustín Gajate,A transductive neuro-fuzzy controller: application to a drilling process.,2010,21,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn21.html#GajateHVA10,https://doi.org/10.1109/TNN.2010.2050602 +Taskin Koçak,Design and implementation of a random neural network routing engine.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#KocakST03,https://doi.org/10.1109/TNN.2003.816366 +Wei-Tao Zhang,Adaptive Quasi-Newton Algorithm for Source Extraction via CCA Approach.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn25.html#ZhangLF14,https://doi.org/10.1109/TNNLS.2013.2280285 +Bernard Delyon,Accuracy analysis for wavelet approximations.,1995,6,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn6.html#DelyonJB95,https://doi.org/10.1109/72.363469 +Faa-Jeng Lin,Adaptive wavelet neural network control with hysteresis estimation for piezo-positioning mechanism.,2006,17,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn17.html#LinSH06,https://doi.org/10.1109/TNN.2005.863473 +Rudrasis Chakraborty,Feature Selection Using a Neural Framework With Controlled Redundancy.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn26.html#ChakrabortyP15,https://doi.org/10.1109/TNNLS.2014.2308902 +Cheng Xiang 0001,Geometrical interpretation and architecture selection of MLP.,2005,16,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn16.html#XiangDL05,https://doi.org/10.1109/TNN.2004.836197 +Rafael Serrano-Gotarredona,On Real-Time AER 2-D Convolutions Hardware for Neuromorphic Spike-Based Cortical Processing.,2008,19,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn19.html#Serrano-GotarredonaSASPLLJC08,https://doi.org/10.1109/TNN.2008.2000163 +Chu Kiong Loo,Novel direct and self-regulating approaches to determine optimum growing multi-experts network structure.,2004,15,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn15.html#LooRR04,https://doi.org/10.1109/TNN.2004.837779 +Xi Miao,Detection of mines and minelike targets using principal component and neural-network methods.,1998,9,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn9.html#MiaoATDW98,https://doi.org/10.1109/72.668887 +Jianfeng Feng,The generalization error of the symmetric and scaled support vector machines.,2001,12,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn12.html#FengW01,https://doi.org/10.1109/72.950155 +Chanchal Chatterjee,On self-organizing algorithms and networks for class-separability features.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#ChatterjeeR97,https://doi.org/10.1109/72.572105 +Hamid R. Berenji,Learning and tuning fuzzy logic controllers through reinforcements.,1992,3,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn3.html#BerenjiK92,https://doi.org/10.1109/72.159061 +Bailing Zhang,Multiresolution forecasting for futures trading using wavelet decompositions.,2001,12,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn12.html#ZhangCJDF01,https://doi.org/10.1109/72.935090 +Susanne Still,Neuromorphic walking gait control.,2006,17,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn17.html#StillHD06,https://doi.org/10.1109/TNN.2005.863454 +Leonardo V. Ferreira,Solving systems of linear equations via gradient systems with discontinuous righthand sides: application to LS-SVM.,2005,16,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn16.html#FerreiraKB05,https://doi.org/10.1109/TNN.2005.844091 +Donald L. Gray,A training algorithm for binary feedforward neural networks.,1992,3,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn3.html#GrayM92,https://doi.org/10.1109/72.125859 +Haiquan Zhao,Adaptively Combined FIR and Functional Link Artificial Neural Network Equalizer for Nonlinear Communication Channel.,2009,20,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn20.html#ZhaoZ09,https://doi.org/10.1109/TNN.2008.2011481 +Alex Alexandridis,A Fast and Efficient Method for Training Categorical Radial Basis Function Networks.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn28.html#AlexandridisCGS17,https://doi.org/10.1109/TNNLS.2016.2598722 +Maoguo Gong,Change Detection in Synthetic Aperture Radar Images Based on Deep Neural Networks.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn27.html#GongZLMJ16,https://doi.org/10.1109/TNNLS.2015.2435783 +Mau-Hsiang Shih,Operator Control of Interneural Computing Machines.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn24.html#ShihT13,https://doi.org/10.1109/TNNLS.2013.2271258 +Maryhelen Stevenson,Sensitivity of feedforward neural networks to weight errors.,1990,1,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn1.html#StevensonWW90,https://doi.org/10.1109/72.80206 +Laxmidhar Behera,"Corrections to ""On Adaptive Learning Rate That Guarantees Convergence in Feedforward Networks"" [Sep 06 1116-1125].",2008,19,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn19.html#BeheraKP08,https://doi.org/10.1109/TNN.2008.925640 +Sylvain Chartier,BAM Learning of Nonlinearly Separable Tasks by Using an Asymmetrical Output Function and Reinforcement Learning.,2009,20,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn20.html#ChartierBA09,https://doi.org/10.1109/TNN.2009.2023120 +Huaguang Zhang,Adaptive Synchronization Between Two Different Chaotic Neural Networks With Time Delay.,2007,18,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn18.html#ZhangXWZ07,https://doi.org/10.1109/TNN.2007.902958 +Petr Tichavský,A Hybrid Technique for Blind Separation of Non-Gaussian and Time-Correlated Sources Using a Multicomponent Approach.,2008,19,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn19.html#TichavskyKYGD08,https://doi.org/10.1109/TNN.2007.908648 +Dubravko Culibrk,Neural Network Approach to Background Modeling for Video Object Segmentation.,2007,18,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn18.html#CulibrkMSKF07,https://doi.org/10.1109/TNN.2007.896861 +Amir Adler,Linear-Time Subspace Clustering via Bipartite Graph Modeling.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn26.html#AdlerEH15,https://doi.org/10.1109/TNNLS.2014.2374631 +C. S. Berger,Recursive single-layer nets for output error dynamic models.,1995,6,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn6.html#Berger95,https://doi.org/10.1109/72.363491 +Zhishan Guo,A Neurodynamic Approach for Real-Time Scheduling via Maximizing Piecewise Linear Utility.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn27.html#GuoB16,https://doi.org/10.1109/TNNLS.2015.2466612 +Raymond S. T. Lee,A transient-chaotic autoassociative network (TCAN) based on Lee oscillators.,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#Lee04,https://doi.org/10.1109/TNN.2004.832729 +Bin Tian,A study of cloud classification with neural networks using spectral and textural features.,1999,10,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn10.html#TianSAHR99,https://doi.org/10.1109/72.737500 +Etienne Barnard,Performance and generalization of the classification figure of merit criterion function.,1991,2,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn2.html#Barnard91,https://doi.org/10.1109/72.80345 +Ying Zhao,Implementing projection pursuit learning.,1996,7,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn7.html#ZhaoA96,https://doi.org/10.1109/72.485672 +Jun Liu 0003,Generalized low-rank approximations of matrices revisited.,2010,21,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn21.html#LiuCZT10,https://doi.org/10.1109/TNN.2010.2040290 +Henrik Schiøler,Neural network for estimating conditional distributions.,1997,8,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn8.html#SchiolerK97,https://doi.org/10.1109/72.623203 +Sankar K. Pal,Unsupervised feature evaluation: a neuro-fuzzy approach.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn11.html#PalDB00,https://doi.org/10.1109/72.839007 +Marios M. Polycarpou,Learning and convergence analysis of neural-type structured networks.,1992,3,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn3.html#PolycarpouI92,https://doi.org/10.1109/72.105416 +Chunhua Feng,On some necessary and sufficient conditions for a recurrent neural network model with time delays to generate oscillations.,2010,21,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn21.html#FengPO10,https://doi.org/10.1109/TNN.2010.2047512 +Tim A. Hely,A new approach to Kanerva's sparse distributed memory.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#HelyWH97,https://doi.org/10.1109/72.572115 +Bo Liu 0009,Consensus in Continuous-Time Multiagent Systems Under Discontinuous Nonlinear Protocols.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn26.html#LiuLC15,https://doi.org/10.1109/TNNLS.2014.2314699 +Shlomo Geva,A constructive method for multivariate function approximation by multilayer perceptrons.,1992,3,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn3.html#GevaS92,https://doi.org/10.1109/72.143376 +Fernando Ornelas-Tellez,Discrete-Time Neural Inverse Optimal Control for Nonlinear Systems via Passivation.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn23.html#Ornelas-TellezSL12,https://doi.org/10.1109/TNNLS.2012.2200501 +D. Martinez,Neural tree density estimation for novelty detection.,1998,9,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn9.html#Martinez98,https://doi.org/10.1109/72.661127 +Hanzhong Gu,Towards more practical average bounds on supervised learning.,1996,7,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn7.html#GuT96,https://doi.org/10.1109/72.508938 +Tao Cheng,Fixed-Final-Time-Constrained Optimal Control of Nonlinear Systems Using Neural Network HJB Approach.,2007,18,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn18.html#ChengLA07,https://doi.org/10.1109/TNN.2007.905848 +Daniel S. Clouse,Time-delay neural networks: representation and induction of finite-state machines.,1997,8,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn8.html#ClouseGHC97,https://doi.org/10.1109/72.623208 +Derong Liu 0001,Motif discoveries in unaligned molecular sequences using self-organizing neural networks.,2006,17,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn17.html#LiuXDZ06,https://doi.org/10.1109/TNN.2006.875987 +Huai-Ning Wu,A Galerkin/Neural-Network-Based Design of Guaranteed Cost Control for Nonlinear Distributed Parameter Systems.,2008,19,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn19.html#WuL08,https://doi.org/10.1109/TNN.2007.912592 +Anastasios D. Doulamis,An efficient fully unsupervised video object segmentation scheme using an adaptive neural-network classifier architecture.,2003,14,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn14.html#DoulamisDNK03,https://doi.org/10.1109/TNN.2003.810605 +Chiung-Yao Fang,Automatic change detection of driving environments in a vision-based driver assistance system.,2003,14,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn14.html#FangCF03,https://doi.org/10.1109/TNN.2003.811353 +Francisco Charte,LI-MLC: A Label Inference Methodology for Addressing High Dimensionality in the Label Space for Multilabel Classification.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn25.html#CharteRJH14,https://doi.org/10.1109/TNNLS.2013.2296501 +Tingwen Huang,Robust Exponential Stability of Uncertain Delayed Neural Networks With Stochastic Perturbation and Impulse Effects.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn23.html#HuangLDS12,https://doi.org/10.1109/TNNLS.2012.2192135 +Cong Wang 0007,Learning From ISS-Modular Adaptive NN Control of Nonlinear Strict-Feedback Systems.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn23.html#WangWLH12,https://doi.org/10.1109/TNNLS.2012.2205702 +Fang Wang,Quantized Attention-Gated Kernel Reinforcement Learning for Brain-Machine Interface Decoding.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn28.html#WangWXLLZZZP17,https://doi.org/10.1109/TNNLS.2015.2493079 +Yang Liu 0004,Tensor Distance Based Multilinear Locality-Preserved Maximum Information Embedding.,2010,21,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn21.html#LiuLC10a,https://doi.org/10.1109/TNN.2010.2066574 +Tiago Pinto,Adaptive Portfolio Optimization for Multiple Electricity Markets Participation.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn27.html#PintoMSSVPFP16,https://doi.org/10.1109/TNNLS.2015.2461491 +Jianchang Mao,Authors' Reply.,1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#MaoJ97,https://doi.org/10.1109/TNN.1997.641480 +Ning Wang 0002,Parsimonious Extreme Learning Machine Using Recursive Orthogonal Least Squares.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn25.html#WangEH14,https://doi.org/10.1109/TNNLS.2013.2296048 +Yi-Hung Liu,Fast support vector data descriptions for novelty detection.,2010,21,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn21.html#LiuLC10,https://doi.org/10.1109/TNN.2010.2053853 +Hubert Y. Chan 0001,On neural networks that design neural associative memories.,1997,8,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn8.html#ChanZ97,https://doi.org/10.1109/72.557674 +Kai Labusch,Simple Method for High-Performance Digit Recognition Based on Sparse Coding.,2008,19,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn19.html#LabuschBM08,https://doi.org/10.1109/TNN.2008.2005830 +Xiao-Zheng Jin,Adaptive Pinning Control of Deteriorated Nonlinear Coupling Networks With Circuit Realization.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn23.html#JinYC12,https://doi.org/10.1109/TNNLS.2012.2202246 +Shafayat Abrar,Recursive least-squares backpropagation algorithm for stop-and-go decision-directed blind equalization.,2002,13,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn13.html#AbrarZB02,https://doi.org/10.1109/TNN.2002.804282 +Bo Zhao,Feedforward Categorization on AER Motion Events Using Cortex-Like Features in a Spiking Neural Network.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn26.html#ZhaoDCLT15,https://doi.org/10.1109/TNNLS.2014.2362542 +Liangli Zhen,Underdetermined Blind Source Separation Using Sparse Coding.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn28.html#ZhenPYXC17,https://doi.org/10.1109/TNNLS.2016.2610960 +Chulhee Lee,Decision boundary feature extraction for neural networks.,1997,8,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn8.html#LeeL97,https://doi.org/10.1109/72.554193 +Le An,Person Re-identification by Multi-hypergraph Fusion.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn28.html#AnCYL17,https://doi.org/10.1109/TNNLS.2016.2602082 +Slavisa Sarafijanovic,An artificial immune system approach with secondary response for misbehavior detection in mobile ad hoc networks.,2005,16,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn16.html#SarafijanovicB05,https://doi.org/10.1109/TNN.2005.853419 +Xiaofeng Liao,Asymptotic stability criteria for a two-neuron network with different time delays.,2003,14,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn14.html#LiaoWW03,https://doi.org/10.1109/TNN.2002.806623 +Robert M. Sanner,Gaussian networks for direct adaptive control.,1992,3,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn3.html#SannerS92,https://doi.org/10.1109/72.165588 +Chih-Jen Lin,"Errata to ""On the convergence of the decomposition method for support vector machines"".",2002,13,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn13.html#Lin02a,https://doi.org/10.1109/TNN.2002.1021903 +Luka Teslic,Nonlinear System Identification by Gustafson-Kessel Fuzzy Clustering and Supervised Local Model Network Learning for the Drug Absorption Spectra Process.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#TeslicHNS11,https://doi.org/10.1109/TNN.2011.2170093 +Haihong Zhang,Gabor wavelet associative memory for face recognition.,2005,16,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn16.html#ZhangZHT05,https://doi.org/10.1109/TNN.2004.841811 +Zhaohui Wu,Guest Editorial Learning in Neuromorphic Systems and Cyborg Intelligence.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn28.html#WuBTL17,https://doi.org/10.1109/TNNLS.2017.2650599 +Yue-Hu Luo,Lp approximation of Sigma-Pi neural networks.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn11.html#LuoS00,https://doi.org/10.1109/72.883481 +Amir F. Atiya,How initial conditions affect generalization performance in large networks.,1997,8,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn8.html#AtiyaJ97,https://doi.org/10.1109/72.557701 +Xinzhi Liu,Impulsive Stabilization of High-Order Hopfield-Type Neural Networks With Time-Varying Delays.,2008,19,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn19.html#LiuW08,https://doi.org/10.1109/TNN.2007.902725 +Francesco Dinuzzo,Client-Server Multitask Learning From Distributed Datasets.,2011,22,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn22.html#DinuzzoPN11,https://doi.org/10.1109/TNN.2010.2095882 +Yunyun Wang,Safety-Aware Semi-Supervised Classification.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn24.html#WangC13,https://doi.org/10.1109/TNNLS.2013.2263512 +Huaguang Zhang,Optimal Output Regulation for Heterogeneous Multiagent Systems via Adaptive Dynamic Programming.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn28.html#ZhangLWF17,https://doi.org/10.1109/TNNLS.2015.2499757 +Kei-Keung Hung,An extended ASLD trading system to enhance portfolio management.,2003,14,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn14.html#HungCX03,https://doi.org/10.1109/TNN.2003.809423 +Bolin Liao,Taylor O(h3) Discretization of ZNN Models for Dynamic Equality-Constrained Quadratic Programming With Application to Manipulators.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn27.html#LiaoZJ16,https://doi.org/10.1109/TNNLS.2015.2435014 +Yoshihiro Nakamura,Nonparametric Density Estimation Based on Self-Organizing Incremental Neural Network for Large Noisy Data.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn28.html#NakamuraH17,https://doi.org/10.1109/TNNLS.2015.2489225 +Xuelong Li,SCE: A Manifold Regularized Set-Covering Method for Data Partitioning.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#LiLDT18,https://doi.org/10.1109/TNNLS.2017.2682179 +O. Adetona,Robust adaptive control of nonaffine nonlinear plants with small input signal changes.,2004,15,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn15.html#AdetonaSK04,https://doi.org/10.1109/TNN.2004.824423 +M. Iatrou,Modeling of nonlinear nonstationary dynamic systems with a novel class of artificial neural networks.,1999,10,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn10.html#IatrouBM99,https://doi.org/10.1109/72.750563 +Isabella Cattinelli,A Novel Approach to the Problem of Non-uniqueness of the Solution in Hierarchical Clustering.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn24.html#CattinelliVPB13,https://doi.org/10.1109/TNNLS.2013.2247058 +Haibo Du,Distributed Finite-Time Cooperative Control of Multiple High-Order Nonholonomic Mobile Robots.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn28.html#DuWCHJ17,https://doi.org/10.1109/TNNLS.2016.2610140 +Nikola Gradojevic,Option Pricing With Modular Neural Networks.,2009,20,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn20.html#GradojevicGK09,https://doi.org/10.1109/TNN.2008.2011130 +Marie Cottrell,"Comments about ""Analysis of the convergence properties of topology preserving neural networks"".",1995,6,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn6.html#CottrellFP95,https://doi.org/10.1109/72.377992 +Georg Pölzlbauer,Decision Manifolds - A Supervised Learning Algorithm Based on Self-Organization.,2008,19,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn19.html#PolzlbauerLR08,https://doi.org/10.1109/TNN.2008.2000449 +Fabio Aiolli,An Efficient Topological Distance-Based Tree Kernel.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn26.html#AiolliMS15,https://doi.org/10.1109/TNNLS.2014.2329331 +Gouhei Tanaka,Complex-Valued Multistate Associative Memory With Nonlinear Multilevel Functions for Gray-Level Image Reconstruction.,2009,20,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn20.html#TanakaA09,https://doi.org/10.1109/TNN.2009.2025500 +Binbin Pan,Out-of-Sample Extensions for Non-Parametric Kernel Methods.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn28.html#PanCCXL17,https://doi.org/10.1109/TNNLS.2015.2512277 +Min Qi,Trend Time-Series Modeling and Forecasting With Neural Networks.,2008,19,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn19.html#QiZ08,https://doi.org/10.1109/TNN.2007.912308 +Mahmood R. Azimi-Sadjadi,Temporal updating scheme for probabilistic neural network with application to satellite cloud classification - further results.,2001,12,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn12.html#Azimi-SadjadiGHR01,https://doi.org/10.1109/72.950147 +Jinde Cao,Global Asymptotical Stability of Recurrent Neural Networks With Multiple Discrete Delays and Distributed Delays.,2006,17,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn17.html#CaoYL06,https://doi.org/10.1109/TNN.2006.881488 +Yutaka Maeda,FPGA implementation of a pulse density neural network with learning ability using simultaneous perturbation.,2003,14,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn14.html#MaedaT03,https://doi.org/10.1109/TNN.2003.811357 +Hiroki Kusumoto,O(log2M) Self-Organizing Map Algorithm Without Learning of Neighborhood Vectors.,2006,17,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn17.html#KusumotoT06,https://doi.org/10.1109/TNN.2006.882370 +Evaldo Araújo de Oliveira,Inference from aging information.,2010,21,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn21.html#OliveiraC10,https://doi.org/10.1109/TNN.2010.2046422 +Luis González Abril,A Note on the Bias in SVMs for Multiclassification.,2008,19,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn19.html#AbrilAVO08,https://doi.org/10.1109/TNN.2007.914138 +Kumpati S. Narendra,Associative learning in random environments using neural networks.,1991,2,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn2.html#NarendraM91,https://doi.org/10.1109/72.80288 +Juha Vesanto,Clustering of the self-organizing map.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn11.html#VesantoA00,https://doi.org/10.1109/72.846731 +Jian Hou,Feature Combination via Clustering.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#HouGL18,https://doi.org/10.1109/TNNLS.2016.2645883 +Alexandre X. Carvalho,Mixtures-of-experts of autoregressive time series: asymptotic normality and model specification.,2005,16,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn16.html#CarvalhoT05,https://doi.org/10.1109/TNN.2004.839356 +Dianhui Wang,A Robust Elicitation Algorithm for Discovering DNA Motifs Using Fuzzy Self-Organizing Maps.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn24.html#WangT13,https://doi.org/10.1109/TNNLS.2013.2275733 +Wing Yee Sit,Managing Category Proliferation in Fuzzy ARTMAP Caused by Overlapping Classes.,2009,20,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn20.html#SitMN09,https://doi.org/10.1109/TNN.2009.2022477 +Suviseshamuthu Easter Selvan,Descent Algorithms on Oblique Manifold for Source-Adaptive ICA Contrast.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn23.html#SelvanAGQCLA12,https://doi.org/10.1109/TNNLS.2012.2218060 +Jianqiang Hu,Hierarchical Cooperative Control for Multiagent Systems With Switching Directed Topologies.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn26.html#HuC15,https://doi.org/10.1109/TNNLS.2014.2386858 +Yiguang Liu,k-NS: A Classifier by the Distance to the Nearest Subspace.,2011,22,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn22.html#LiuGLY11,https://doi.org/10.1109/TNN.2011.2153210 +Carlos Cabrelli,"A constructive algorithm to solve ""convex recursive deletion"" (CoRD) classification problems via two-layer perceptron networks.",2000,11,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn11.html#CabrelliMS00,https://doi.org/10.1109/72.846753 +Fang-Xiang Wu,Delay-Independent Stability of Genetic Regulatory Networks.,2011,22,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn22.html#Wu11,https://doi.org/10.1109/TNN.2011.2165556 +Chih-Jen Lin,Asymptotic convergence of an SMO algorithm without any assumptions.,2002,13,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn13.html#Lin02,https://doi.org/10.1109/72.977319 +Günter Rudolph,Convergence analysis of canonical genetic algorithms.,1994,5,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn5.html#Rudolph94,https://doi.org/10.1109/72.265964 +Ridong Zhang,Decoupled ARX and RBF Neural Network Modeling Using PCA and GA Optimization for Nonlinear Distributed Parameter Systems.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn29.html#ZhangTLJ18,https://doi.org/10.1109/TNNLS.2016.2631481 +Youshen Xia,Global exponential stability of recurrent neural networks for solving optimization and related problems.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn11.html#XiaW00,https://doi.org/10.1109/72.857782 +Chung-Chian Hsu,Visualized Analysis of Mixed Numeric and Categorical Data Via Extended Self-Organizing Map.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn23.html#HsuL12,https://doi.org/10.1109/TNNLS.2011.2178323 +Aluizio F. R. Araújo,Context in temporal sequence processing: a self-organizing approach and its application to robotics.,2002,13,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn13.html#AraujoB02,https://doi.org/10.1109/72.977268 +Raed Abu Zitar,Neurocontrollers trained with rules extracted by a genetic assisted reinforcement learning system.,1995,6,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn6.html#ZitarH95,https://doi.org/10.1109/72.392249 +Dany Merhej,Embedding Prior Knowledge Within Compressed Sensing by Neural Networks.,2011,22,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn22.html#MerhejDKP11,https://doi.org/10.1109/TNN.2011.2164810 +Zohar Halbe,Regularized Mixture Density Estimation With an Analytical Setting of Shrinkage Intensities.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn24.html#HalbeBA13,https://doi.org/10.1109/TNNLS.2012.2234477 +Leonardo Maria Reyneri,Unification of neural and wavelet networks and fuzzy systems.,1999,10,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn10.html#Reyneri99,https://doi.org/10.1109/72.774224 +Dan Simon,Fault-tolerant training for optimal interpolative nets.,1995,6,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn6.html#SimonE95,https://doi.org/10.1109/72.471356 +Hanlin Goh,Learning Deep Hierarchical Visual Feature Coding.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn25.html#GohTCL14,https://doi.org/10.1109/TNNLS.2014.2307532 +B. Gas,Self-Organizing MultiLayer Perceptron.,2010,21,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn21.html#Gas10,https://doi.org/10.1109/TNN.2010.2072790 +Sushmita Mitra,Neuro-fuzzy rule generation: survey in soft computing framework.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn11.html#MitraH00,https://doi.org/10.1109/72.846746 +Chiman Wong,Kernel-Based Multilayer Extreme Learning Machines for Representation Learning.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn29.html#WongVWC18,https://doi.org/10.1109/TNNLS.2016.2636834 +Chaoxu Mu,Air-Breathing Hypersonic Vehicle Tracking Control Based on Adaptive Dynamic Programming.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn28.html#MuNSH17,https://doi.org/10.1109/TNNLS.2016.2516948 +Lei Zhang 0005,Selectable and Unselectable Sets of Neurons in Recurrent Neural Networks With Saturated Piecewise Linear Transfer Function.,2011,22,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn22.html#ZhangY11,https://doi.org/10.1109/TNN.2011.2132762 +Jie Zhang 0005,Recurrent neuro-fuzzy networks for nonlinear process modeling.,1999,10,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn10.html#ZhangM99,https://doi.org/10.1109/72.750562 +Bruno Apolloni,A general framework for learning rules from data.,2004,15,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn15.html#ApolloniEMOPT04,https://doi.org/10.1109/TNN.2004.836249 +Haibo He,Growth and Success - Looking Forward to 2018 and Beyond.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn29.html#He18,https://doi.org/10.1109/TNNLS.2017.2780338 +Mingjian Zhang,Sequential Blind Identification of Underdetermined Mixtures Using a Novel Deflation Scheme.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn24.html#ZhangYW13,https://doi.org/10.1109/TNNLS.2013.2257841 +Hoon Kang,Multilayer associative neural networks (MANN's): storage capacity versus perfect recall.,1994,5,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn5.html#Kang94,https://doi.org/10.1109/72.317732 +Phillip Howard,Distinct Variation Pattern Discovery Using Alternating Nonlinear Principal Component Analysis.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn29.html#HowardAR18,https://doi.org/10.1109/TNNLS.2016.2616145 +Yonggwan Won,Morphological shared-weight networks with applications to automatic target recognition.,1997,8,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn8.html#WonGC97,https://doi.org/10.1109/72.623220 +Sandro Ridella,Circular backpropagation networks embed vector quantization.,1999,10,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn10.html#RidellaRZ99a,https://doi.org/10.1109/72.774275 +Dharmendra S. Modha,A learning law for density estimation.,1994,5,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn5.html#ModhaF94,https://doi.org/10.1109/72.286931 +Ka Fai Cedric Yiu,Nonlinear system modeling via knot-optimizing B-spline networks.,2001,12,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn12.html#YiuWTT01,https://doi.org/10.1109/72.950131 +S. Chakrabarti,Robust radar target classifier using artificial neural networks.,1995,6,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn6.html#ChakrabartiBT95,https://doi.org/10.1109/72.377982 +Zhenfeng Chen,Adaptive Neural Control of MIMO Nonlinear Systems With a Block-Triangular Pure-Feedback Control Structure.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn25.html#ChenGZL14,https://doi.org/10.1109/TNNLS.2014.2302856 +G. Zhou,Advanced neural-network training algorithm with reduced complexity based on Jacobian deficiency.,1998,9,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn9.html#ZhouS98,https://doi.org/10.1109/72.668886 +M. A. L. Thathachar,Global Boltzmann perceptron network for online learning of conditional distributions.,1999,10,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn10.html#ThathacharA99,https://doi.org/10.1109/72.788649 +Frédéric Maire,On the convergence of validity interval analysis.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn11.html#Maire00,https://doi.org/10.1109/72.846751 +Kevin Stanley McFall,Artificial Neural Network Method for Solution of Boundary Value Problems With Exact Satisfaction of Arbitrary Boundary Conditions.,2009,20,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn20.html#McFallM09,https://doi.org/10.1109/TNN.2009.2020735 +Yajun Zhang,A Nonlinear Control Method Based on ANFIS and Multiple Models for a Class of SISO Nonlinear Systems and Its Application.,2011,22,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn22.html#ZhangCW11,https://doi.org/10.1109/TNN.2011.2166561 +Jun Wang 0002,Analysis and design of a k-winners-take-all model with a single state variable and the heaviside step activation function.,2010,21,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn21.html#Wang10,https://doi.org/10.1109/TNN.2010.2052631 +Hongbin Du,Adaptive neural network control for a class of low-triangular-structured nonlinear systems.,2006,17,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn17.html#DuSY06,https://doi.org/10.1109/TNN.2005.863403 +Stefanos Zafeiriou,Regularized Kernel Discriminant Analysis With a Robust Kernel for Face Recognition and Verification.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn23.html#ZafeiriouTPS12,https://doi.org/10.1109/TNNLS.2011.2182058 +Leszek Rutkowski,"Errata to ""Flexible neuro-fuzzy systems"".",2003,14,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn14.html#RutkowskiC03a,https://doi.org/10.1109/TNN.2003.815956 +Issam Dagher,An ordering algorithm for pattern presentation in fuzzy ARTMAP that tends to improve generalization performance.,1999,10,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn10.html#DagherGHB99,https://doi.org/10.1109/72.774217 +Yajun Zhang,Self-splitting competitive learning: a new on-line clustering paradigm.,2002,13,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn13.html#ZhangL02,https://doi.org/10.1109/72.991422 +Xue-Bin Liang,Qualitative analysis of a recurrent neural network for nonlinear continuously differentiable convex minimization over a nonempty closed convex subset.,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#Liang01b,https://doi.org/10.1109/72.963790 +Jianming Lian,Variable Neural Adaptive Robust Control: A Switched System Approach.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn26.html#LianHZ15,https://doi.org/10.1109/TNNLS.2014.2327853 +Heggere S. Ranganath,Object detection using pulse coupled neural networks.,1999,10,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn10.html#RanganathK99,https://doi.org/10.1109/72.761720 +Tatsuya Yokota,A Quadratically Constrained MAP Classifier Using the Mixture of Gaussians Models as a Weight Function.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn24.html#YokotaY13,https://doi.org/10.1109/TNNLS.2013.2252925 +John A. Hertz,Nonlinear backpropagation: doing backpropagation without derivatives of the activation function.,1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#HertzKLL97,https://doi.org/10.1109/72.641455 +Wenliang Zhong,Incorporating the loss function into discriminative clustering of structured outputs.,2010,21,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn21.html#ZhongPKT10,https://doi.org/10.1109/TNN.2010.2064177 +Anne Johannet,Specification and implementation of a digital Hopfield-type associative memory with on-chip training.,1992,3,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn3.html#JohannetPDGW92,https://doi.org/10.1109/72.143369 +Junping Zhang,Prime Discriminant Simplicial Complex.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn24.html#ZhangXL13,https://doi.org/10.1109/TNNLS.2012.2223825 +Paolo Frasconi,A general framework for adaptive processing of data structures.,1998,9,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn9.html#FrasconiGS98,https://doi.org/10.1109/72.712151 +Da-Zheng Feng,A neural network learning for adaptively extracting cross-correlation features between two high-dimensional data streams.,2004,15,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn15.html#FengZB04,https://doi.org/10.1109/TNN.2004.838523 +Dimitri P. Bertsekas,Value and Policy Iterations in Optimal Control and Adaptive Dynamic Programming.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn28.html#Bertsekas17,https://doi.org/10.1109/TNNLS.2015.2503980 +A. Singh,DCT-Yager FNN: A Novel Yager-Based Fuzzy Neural Network With the Discrete Clustering Technique.,2008,19,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn19.html#SinghQC08,https://doi.org/10.1109/TNN.2007.911709 +Ahmad Fuad Rezaur Rahman,A multiexpert framework for character recognition: a novel application of Clifford networks.,2001,12,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn12.html#RahmanHF01,https://doi.org/10.1109/72.896799 +Yu Zhang 0006,Semisupervised Generalized Discriminant Analysis.,2011,22,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn22.html#ZhangY11a,https://doi.org/10.1109/TNN.2011.2156808 +Hao Quan,Short-Term Load and Wind Power Forecasting Using Neural Network-Based Prediction Intervals.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn25.html#QuanSK14,https://doi.org/10.1109/TNNLS.2013.2276053 +Bo Shen,Event-Triggered State Estimation for Discrete-Time Multidelayed Neural Networks With Stochastic Parameters and Incomplete Measurements.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn28.html#ShenWQ17,https://doi.org/10.1109/TNNLS.2016.2516030 +Ivor Wai-Hung Tsang,Generalized Core Vector Machines.,2006,17,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn17.html#TsangKZ06,https://doi.org/10.1109/TNN.2006.878123 +Sevcan Yilmaz,Fuzzy wavelet neural network models for prediction and identification of dynamical systems.,2010,21,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn21.html#YilmazO10,https://doi.org/10.1109/TNN.2010.2066285 +Xia Hong 0001,A Kernel-Based Two-Class Classifier for Imbalanced Data Sets.,2007,18,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn18.html#HongCH07,https://doi.org/10.1109/TNN.2006.882812 +Olvi L. Mangasarian,Successive overrelaxation for support vector machines.,1999,10,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn10.html#MangasarianM99,https://doi.org/10.1109/72.788643 +Ashok V. Krishnamoorthy,A scalable optoelectronic neural system using free-space optical interconnects.,1992,3,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn3.html#KrishnamoorthyYE92,https://doi.org/10.1109/72.129413 +Mahdad Nouri Shirazi,The capacity of associative memories with malfunctioning neurons.,1993,4,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn4.html#ShiraziM93,https://doi.org/10.1109/72.238317 +Hualiang Li,A Class of Complex ICA Algorithms Based on the Kurtosis Cost Function.,2008,19,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn19.html#LiA08,https://doi.org/10.1109/TNN.2007.908636 +Sergio Decherchi,Import Vector Domain Description: A Kernel Logistic One-Class Learning Algorithm.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn28.html#DecherchiR17,https://doi.org/10.1109/TNNLS.2016.2547220 +Mustafa K. Mehmet Ali,Neural networks for shortest path computation and routing in computer networks.,1993,4,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn4.html#AliK93,https://doi.org/10.1109/72.286889 +Liang Zhao 0001,A network of dynamically coupled chaotic maps for scene segmentation.,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#ZhaoM01,https://doi.org/10.1109/72.963774 +Jinde Cao,Stability and Hopf Bifurcation in a Simplified BAM Neural Network With Two Time Delays.,2007,18,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn18.html#CaoX07,https://doi.org/10.1109/TNN.2006.886358 +Lu Dong,Adaptive Event-Triggered Control Based on Heuristic Dynamic Programming for Nonlinear Discrete-Time Systems.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn28.html#DongZSH17,https://doi.org/10.1109/TNNLS.2016.2541020 +Qinghua Zhang,Using wavelet network in nonparametric estimation.,1997,8,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn8.html#Zhang97,https://doi.org/10.1109/72.557660 +Fanlong Zhang,Nuclear Norm-Based 2-DPCA for Extracting Features From Images.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn26.html#ZhangYQX15,https://doi.org/10.1109/TNNLS.2014.2376530 +Wirt Atmar,Notes on the simulation of evolution.,1994,5,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn5.html#Atmar94,https://doi.org/10.1109/72.265967 +Sheng-Uei Guan,Parallel growing and training of neural networks using output parallelism.,2002,13,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn13.html#GuanL02,https://doi.org/10.1109/TNN.2002.1000123 +Teck-Hou Teng,Self-Organizing Neural Networks Integrating Domain Knowledge and Reinforcement Learning.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn26.html#TengTZ15,https://doi.org/10.1109/TNNLS.2014.2327636 +Yoshua Bengio,Global optimization of a neural network-hidden Markov model hybrid.,1992,3,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn3.html#BengioMFK92,https://doi.org/10.1109/72.125866 +Carlos M. Alaíz,Convex Formulation for Kernel PCA and Its Use in Semisupervised Learning.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#AlaizFS18,https://doi.org/10.1109/TNNLS.2017.2709838 +Azzedine Zerguine,Multilayer perceptron-based DFE with lattice structure.,2001,12,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn12.html#ZerguineSB01,https://doi.org/10.1109/72.925556 +Davide Bacciu,Compositional Generative Mapping for Tree-Structured Data - Part II: Topographic Projection Model.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn24.html#BacciuMS13,https://doi.org/10.1109/TNNLS.2012.2228226 +Suviseshamuthu Easter Selvan,Nonsmooth ICA Contrast Minimization Using a Riemannian Nelder-Mead Method.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn26.html#Selvan15,https://doi.org/10.1109/TNNLS.2014.2311036 +Masaki Kobayashi,Singularities of Three-Layered Complex-Valued Neural Networks With Split Activation Function.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#Kobayashi18b,https://doi.org/10.1109/TNNLS.2017.2688322 +Ali Heydari,Optimal Triggering of Networked Control Systems.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#Heydari18a,https://doi.org/10.1109/TNNLS.2017.2711486 +Zbynek Koldovský,Efficient Variant of Algorithm FastICA for Independent Component Analysis Attaining the Cramér-Rao Lower Bound.,2006,17,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn17.html#KoldovskyTO06,https://doi.org/10.1109/TNN.2006.875991 +Tansu Alpcan,Randomized algorithms for stability and robustness analysis of high-speed communication networks.,2005,16,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn16.html#AlpcanBT05,https://doi.org/10.1109/TNN.2005.853412 +Jan Chorowski,Extracting Rules From Neural Networks as Decision Diagrams.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#ChorowskiZ11,https://doi.org/10.1109/TNN.2011.2106163 +Xinzhi Liu,Exponential stability of impulsive high-order Hopfield-type neural networks with time-varying delays.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#LiuTX05,https://doi.org/10.1109/TNN.2005.857949 +Houduo Qi,Deriving sufficient conditions for global asymptotic stability of delayed neural networks via nonsmooth analysis-II.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#QiQY05,https://doi.org/10.1109/TNN.2005.852975 +Michael Heiss,Multiplication-free radial basis function network.,1996,7,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn7.html#HeissK96,https://doi.org/10.1109/72.548173 +J. Begin,Categorization in unsupervised neural networks: the Eidos model.,1996,7,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn7.html#BeginP96,https://doi.org/10.1109/72.478399 +Behzad Talaei,Boundary Control of 2-D Burgers' PDE: An Adaptive Dynamic Programming Approach.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#TalaeiJS18b,https://doi.org/10.1109/TNNLS.2017.2736786 +Cheng Lian,Landslide Displacement Prediction With Uncertainty Based on Neural Networks With Random Hidden Weights.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn27.html#LianZYTC16,https://doi.org/10.1109/TNNLS.2015.2512283 +Raj K. Aggarwal,A novel approach to fault diagnosis in multicircuit transmission lines using fuzzy ARTmap neural networks.,1999,10,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn10.html#AggarwalXJLB99,https://doi.org/10.1109/72.788660 +Kexin Liu,Design of Distributed Observers in the Presence of Arbitrarily Large Communication Delays.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#LiuLL18,https://doi.org/10.1109/TNNLS.2017.2762421 +Chanchal Chatterjee,On relative convergence properties of principal component analysis algorithms.,1998,9,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn9.html#ChatterjeeRC98,https://doi.org/10.1109/72.661126 +Shyan-Shiou Chen,Chaotic Simulated Annealing by a Neural Network With a Variable Delay: Design and Application.,2011,22,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn22.html#Chen11,https://doi.org/10.1109/TNN.2011.2163080 +David Bryan Mundie,Weight decay and resolution effects in feedforward artificial neural networks.,1991,2,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn2.html#MundieM91,https://doi.org/10.1109/72.80308 +Olivier Nerrand,Training recurrent neural networks: why and how? An illustration in dynamical process modeling.,1994,5,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn5.html#NerrandRUPD94,https://doi.org/10.1109/72.279183 +Bhargav Y. Vyas,Improved Fault Classification in Series Compensated Transmission Line: Comparative Evaluation of Chebyshev Neural Network Training Algorithms.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn27.html#VyasDM16,https://doi.org/10.1109/TNNLS.2014.2360879 +Gregory Shakhnarovich,Nearest-Neighbor Methods in Learning and Vision.,2008,19,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn19.html#ShakhnarovichDI08,https://doi.org/10.1109/TNN.2008.917504 +Xiaolin Hu,Design of recurrent neural networks for solving constrained least absolute deviation problems.,2010,21,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn21.html#HuSZ10,https://doi.org/10.1109/TNN.2010.2048123 +Danil V. Prokhorov,Training Recurrent Neurocontrollers for Robustness With Derivative-Free Kalman Filter.,2006,17,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn17.html#Prokhorov06,https://doi.org/10.1109/TNN.2006.880580 +Christian Mazza,Neural-net inference and content addressable memory.,1997,8,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn8.html#Mazza97,https://doi.org/10.1109/72.554197 +Zongben Xu,L1/2 Regularization: A Thresholding Representation Theory and a Fast Solver.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn23.html#XuCXZ12,https://doi.org/10.1109/TNNLS.2012.2197412 +Terence D. Sanger,A tree-structured adaptive network for function approximation in high-dimensional spaces.,1991,2,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn2.html#Sanger91,https://doi.org/10.1109/72.80339 +Robert C. Williamson,Existence and uniqueness results for neural network approximations.,1995,6,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn6.html#WilliamsonH95,https://doi.org/10.1109/72.363455 +Stuart N. Wrigley,A computational model of auditory selective attention.,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#WrigleyB04,https://doi.org/10.1109/TNN.2004.832710 +Tohru Nitta,Resolution of Singularities Introduced by Hierarchical Structure in Deep Neural Networks.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn28.html#Nitta17,https://doi.org/10.1109/TNNLS.2016.2580741 +Hui Zhang 0015,Incorporating Mean Template Into Finite Mixture Model for Image Segmentation.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn24.html#ZhangWN13,https://doi.org/10.1109/TNNLS.2012.2228227 +Amir B. Geva,ScaleNet-multiscale neural-network architecture for time series prediction.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#Geva98,https://doi.org/10.1109/72.728396 +Abraham Schultz,A discrete dynamics model for synchronization of pulse-coupled oscillators.,1998,9,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn9.html#SchultzW98,https://doi.org/10.1109/72.655029 +Hamid Soleimani,Digital Implementation of a Biological Astrocyte Model and Its Application.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn26.html#SoleimaniBAA15,https://doi.org/10.1109/TNNLS.2014.2311839 +Chunling Yang,Study on modeling of multispectral emissivity and optimization algorithm.,2006,17,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn17.html#YangYZZ06,https://doi.org/10.1109/TNN.2005.860837 +Zekeriya Uykan,Fast-Convergent Double-Sigmoid Hopfield Neural Network as Applied to Optimization Problems.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn24.html#Uykan13,https://doi.org/10.1109/TNNLS.2013.2244099 +Jianchao Fan,A Collective Neurodynamic Optimization Approach to Nonnegative Matrix Factorization.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn28.html#FanW17,https://doi.org/10.1109/TNNLS.2016.2582381 +Qing Tao,Stochastic Learning via Optimizing the Variational Inequalities.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn25.html#TaoGCW14,https://doi.org/10.1109/TNNLS.2013.2294741 +Ki Young Lee,Density-Induced Support Vector Data Description.,2007,18,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn18.html#LeeKLL07,https://doi.org/10.1109/TNN.2006.884673 +Zhengguang Wu,Improved delay-dependent stability condition of discrete recurrent neural networks with time-varying delays.,2010,21,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn21.html#WuSCZ10,https://doi.org/10.1109/TNN.2010.2042172 +Renzo Perfetti,Recurrent Correlation Associative Memories: A Feature Space Perspective.,2008,19,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn19.html#PerfettiR08,https://doi.org/10.1109/TNN.2007.909528 +Zeng-Guang Hou,A Recurrent Neural Network for Hierarchical Control of Interconnected Dynamic Systems.,2007,18,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn18.html#HouGNTC07,https://doi.org/10.1109/TNN.2006.885040 +Mohua Banerjee,Rough fuzzy MLP: knowledge encoding and classification.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#BanerjeeMP98,https://doi.org/10.1109/72.728363 +Takashi Matsubara,An Asynchronous Recurrent Network of Cellular Automaton-Based Neurons and Its Reproduction of Spiking Neural Network Activities.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn27.html#MatsubaraT16,https://doi.org/10.1109/TNNLS.2015.2425893 +Huaguang Zhang,Robust Stability Analysis for Interval Cohen-Grossberg Neural Networks With Unknown Time-Varying Delays.,2008,19,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn19.html#ZhangWL08a,https://doi.org/10.1109/TNN.2008.2006337 +Robert C. Grande,Online Regression for Data With Changepoints Using Gaussian Processes and Reusable Models.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn28.html#GrandeWCFH17,https://doi.org/10.1109/TNNLS.2016.2574565 +Kenneth J. Hunt,Extending the functional equivalence of radial basis function networks and fuzzy inference systems.,1996,7,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn7.html#HuntHM96,https://doi.org/10.1109/72.501735 +Feifei Qi,RSTFC: A Novel Algorithm for Spatio-Temporal Filtering and Classification of Single-Trial EEG.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn26.html#QiLW15,https://doi.org/10.1109/TNNLS.2015.2402694 +Stephen P. Luttrell,Code vector density in topographic mappings: Scalar case.,1991,2,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn2.html#Luttrell91,https://doi.org/10.1109/72.88162 +Li-Hua Li,A remote password authentication scheme for multiserver architecture using neural networks.,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#LiLH01,https://doi.org/10.1109/72.963786 +Sintiani Dewi Teddy,PSECMAC: A Novel Self-Organizing Multiresolution Associative Memory Architecture.,2008,19,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn19.html#TeddyQL08,https://doi.org/10.1109/TNN.2007.912300 +J. L. Johnson,Guest Editorial Overview Of Pulse Coupled Neural Network (PCNN) Special Issue.,1999,10,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn10.html#JohnsonPO99,https://doi.org/10.1109/TNN.1999.761704 +Xianxia Zhang,SVR Learning-Based Spatiotemporal Fuzzy Logic Controller for Nonlinear Spatially Distributed Dynamic Systems.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn24.html#ZhangJLL13,https://doi.org/10.1109/TNNLS.2013.2258356 +Ronald A. Iltis,Computing association probabilities using parallel Boltzmann machines.,1993,4,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn4.html#IltisT93,https://doi.org/10.1109/72.207610 +Volker Roth 0001,The generalized LASSO.,2004,15,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn15.html#Roth04,https://doi.org/10.1109/TNN.2003.809398 +Chin-Teng Lin,Controlling chaos by GA-based reinforcement learning neural network.,1999,10,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn10.html#LinJ99,https://doi.org/10.1109/72.774236 +Gabriel Lera,Neighborhood based Levenberg-Marquardt algorithm for neural network training.,2002,13,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn13.html#LeraP02,https://doi.org/10.1109/TNN.2002.1031951 +Arash Miranian,Developing a Local Least-Squares Support Vector Machines-Based Neuro-Fuzzy Model for Nonlinear and Chaotic Time Series Prediction.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn24.html#MiranianA13,https://doi.org/10.1109/TNNLS.2012.2227148 +Donald C. Wunsch II,An optoelectronic implementation of the adaptive resonance neural network.,1993,4,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn4.html#WunschCCMF93,https://doi.org/10.1109/72.238321 +Shuzhi Sam Ge,Adaptive neural control of uncertain MIMO nonlinear systems.,2004,15,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn15.html#GeW04,https://doi.org/10.1109/TNN.2004.826130 +Wentao Fan,Online Learning of Hierarchical Pitman-Yor Process Mixture of Generalized Dirichlet Distributions With Feature Selection.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn28.html#FanSB17,https://doi.org/10.1109/TNNLS.2016.2574500 +Qiaolin Ye,Can the Virtual Labels Obtained by Traditional LP Approaches Be Well Encoded in WLR?,2016,27,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn27.html#YeYYZ16,https://doi.org/10.1109/TNNLS.2015.2499311 +Mou Chen,Dynamic Surface Control Using Neural Networks for a Class of Uncertain Nonlinear Systems With Input Saturation.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn26.html#ChenTJ15,https://doi.org/10.1109/TNNLS.2014.2360933 +Cesare Alippi,A Self-Building and Cluster-Based Cognitive Fault Diagnosis System for Sensor Networks.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn25.html#AlippiRT14,https://doi.org/10.1109/TNNLS.2014.2303651 +Lu Xu 0002,Topology-Based Clustering Using Polar Self-Organizing Map.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn26.html#XuCM15,https://doi.org/10.1109/TNNLS.2014.2326427 +Shuzhi Sam Ge,Direct adaptive NN control of a class of nonlinear systems.,2002,13,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn13.html#GeW02,https://doi.org/10.1109/72.977306 +Chunjie Zhang,Image-Specific Classification With Local and Global Discriminations.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#ZhangCLT18,https://doi.org/10.1109/TNNLS.2017.2748952 +Bingsheng He,A neural network model for monotone linear asymmetric variational inequalities.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn11.html#HeY00,https://doi.org/10.1109/72.822505 +Ali Heydari,Finite-Horizon Control-Constrained Nonlinear Optimal Control Using Single Network Adaptive Critics.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn24.html#HeydariB13,https://doi.org/10.1109/TNNLS.2012.2227339 +Juan Ignacio Mulero Martínez,Robust GRBF Static Neurocontroller With Switch Logic for Control of Robot Manipulators.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn23.html#Martinez12,https://doi.org/10.1109/TNNLS.2012.2196053 +Frank L. Lewis,Neural net robot controller with guaranteed tracking performance.,1995,6,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn6.html#LewisLY95,https://doi.org/10.1109/72.377975 +Yuan-Xin Li,Event-Based Adaptive NN Tracking Control of Nonlinear Discrete-Time Systems.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#LiY18b,https://doi.org/10.1109/TNNLS.2017.2765683 +Jianxiong Zhang,Estimating the Ultimate Bound and Positively Invariant Set for a Class of Hopfield Networks.,2011,22,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn22.html#ZhangTZ11,https://doi.org/10.1109/TNN.2011.2166275 +Aroor Dinesh Dileep,GMM-Based Intermediate Matching Kernel for Classification of Varying Length Patterns of Long Duration Speech Using Support Vector Machines.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn25.html#DileepS14,https://doi.org/10.1109/TNNLS.2013.2293512 +Wei Lu,Approach and applications of constrained ICA.,2005,16,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn16.html#LuR05,https://doi.org/10.1109/TNN.2004.836795 +Sandro Ridella,Empirical measure of multiclass generalization performance: the K-winner machine case.,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#RidellaZ01,https://doi.org/10.1109/72.963791 +Alexander Ilin,Nonlinear dynamical factor analysis for state change detection.,2004,15,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn15.html#IlinVO04,https://doi.org/10.1109/TNN.2004.826129 +Huanqing Wang,Adaptive Neural Output-Feedback Control for a Class of Nonlower Triangular Nonlinear Systems With Unmodeled Dynamics.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#WangLLW18,https://doi.org/10.1109/TNNLS.2017.2716947 +Ruxandra L. Costea,New Accurate and Flexible Design Procedure for a Stable KWTA Continuous Time Network.,2011,22,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn22.html#CosteaM11,https://doi.org/10.1109/TNN.2011.2154340 +Guoxu Zhou,Minimum-Volume-Constrained Nonnegative Matrix Factorization: Enhanced Ability of Learning Parts.,2011,22,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn22.html#ZhouXYYH11,https://doi.org/10.1109/TNN.2011.2164621 +Rajesh Parekh,Constructive neural-network learning algorithms for pattern classification.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn11.html#ParekhYH00,https://doi.org/10.1109/72.839013 +Guang-Bin Huang,Real-time learning capability of neural networks.,2006,17,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn17.html#HuangZS06,https://doi.org/10.1109/TNN.2006.875974 +Ke Chen 0001,Learning Speaker-Specific Characteristics With a Deep Neural Architecture.,2011,22,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn22.html#ChenS11,https://doi.org/10.1109/TNN.2011.2167240 +Tomo Munehisa,Cooperative updating in the Hopfield model.,2001,12,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn12.html#MunehisaKY01,https://doi.org/10.1109/72.950153 +Umut Ozertem,RKHS Bayes Discriminant: A Subspace Constrained Nonlinear Feature Projection for Signal Detection.,2009,20,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn20.html#OzertemE09,https://doi.org/10.1109/TNN.2009.2021473 +Anthony N. Michel,Analysis and synthesis of a class of discrete-time neural networks described on hypercubes.,1991,2,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn2.html#MichelSY91,https://doi.org/10.1109/72.80289 +A. P. Almeida,Digitally programmable analog building blocks for the implementation of artificial neural networks.,1996,7,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn7.html#AlmeidaF96,https://doi.org/10.1109/72.485684 +Youshen Xia,Neural data fusion algorithms based on a linearly constrained least square method.,2002,13,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn13.html#XiaLB02,https://doi.org/10.1109/72.991418 +Garrett T. Kenyon,Stimulus-specific oscillations in a retinal model.,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#KenyonTTGSM04,https://doi.org/10.1109/TNN.2004.832722 +Michael Stiber,Responses to transients in living and simulated neurons.,1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#StiberIS97,https://doi.org/10.1109/72.641461 +Jin Xu 0002,Probe Machine.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn27.html#Xu16,https://doi.org/10.1109/TNNLS.2016.2555845 +Rong Long Wang,A Hopfield network learning method for bipartite subgraph problem.,2004,15,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn15.html#WangTC04,https://doi.org/10.1109/TNN.2004.836234 +Jun Wang 0002,Primal and dual assignment networks.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#Wang97a,https://doi.org/10.1109/72.572114 +Steve W. Piche,Steepest descent algorithms for neural network controllers and filters.,1994,5,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn5.html#Piche94,https://doi.org/10.1109/72.279185 +Thiago Christiano Silva,Network-Based Stochastic Semisupervised Learning.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn23.html#SilvaZ12a,https://doi.org/10.1109/TNNLS.2011.2181413 +Jun Li 0010,Simple Exponential Family PCA.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn24.html#0010T13,https://doi.org/10.1109/TNNLS.2012.2234134 +Namjin Kim,DSP-based hierarchical neural network modulation signal classification.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#KimKYT03,https://doi.org/10.1109/TNN.2003.816037 +Xing-Bao Gao,A neural network for a class of convex quadratic minimax problems with constraints.,2004,15,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn15.html#GaoLX04,https://doi.org/10.1109/TNN.2004.824405 +Huisheng Zhang,Is a Complex-Valued Stepsize Advantageous in Complex-Valued Gradient Learning Algorithms?,2016,27,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn27.html#ZhangM16,https://doi.org/10.1109/TNNLS.2015.2494361 +Zhihui Lai,Sparse Alignment for Robust Tensor Learning.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn25.html#LaiWXZS14,https://doi.org/10.1109/TNNLS.2013.2295717 +Chunmei Zhang,Graph Theory-Based Approach for Stability Analysis of Stochastic Coupled Systems With Lévy Noise on Networks.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn26.html#ZhangLW15,https://doi.org/10.1109/TNNLS.2014.2352217 +Yu Liu,Sliding-Mode Control Design for Nonlinear Systems Using Probability Density Function Shaping.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn25.html#LiuWH14,https://doi.org/10.1109/TNNLS.2013.2275531 +Danilo P. Mandic,On the choice of parameters of the cost function in nested modular RNN's.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn11.html#MandicC00,https://doi.org/10.1109/72.839003 +Shi-Lu Dai,Dynamic Learning From Adaptive Neural Network Control of a Class of Nonaffine Nonlinear Systems.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn25.html#DaiWW14,https://doi.org/10.1109/TNNLS.2013.2257843 +Mang-Hui Wang,Extension neural network-type 2 and its applications.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#Wang05,https://doi.org/10.1109/TNN.2005.853334 +Min Wang 0003,Learning From Adaptive Neural Dynamic Surface Control of Strict-Feedback Systems.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn26.html#WangW15,https://doi.org/10.1109/TNNLS.2014.2335749 +Irina Rish,Adaptive diagnosis in distributed systems.,2005,16,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn16.html#RishBMOBGH05,https://doi.org/10.1109/TNN.2005.853423 +Scott Thomas Acton,Generalized deterministic annealing.,1996,7,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn7.html#ActonB96,https://doi.org/10.1109/72.501726 +Nasser Mehrtash,Synaptic plasticity in spiking neural networks (SP2INN): a system approach.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#MehrtashJHSLK03,https://doi.org/10.1109/TNN.2003.816060 +Peter J. Angeline,An evolutionary algorithm that constructs recurrent neural networks.,1994,5,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn5.html#AngelineSP94,https://doi.org/10.1109/72.265960 +Amine Bermak,A compact 3D VLSI classifier using bagging threshold network ensembles.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#BermakM03,https://doi.org/10.1109/TNN.2003.816362 +Christian Keber,Evolutionary computation and the vega risk of American put options.,2001,12,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn12.html#KeberS01,https://doi.org/10.1109/72.935084 +Chengjun Liu,Independent component analysis of Gabor features for face recognition.,2003,14,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn14.html#LiuW03,https://doi.org/10.1109/TNN.2003.813829 +Robert Rae,Recognition of human head orientation based on artificial neural networks.,1998,9,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn9.html#RaeR98,https://doi.org/10.1109/72.661121 +Jing Zhang 0015,Improving Crowdsourced Label Quality Using Noise Correction.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#ZhangSLW18,https://doi.org/10.1109/TNNLS.2017.2677468 +Jin-Liang Wang,Passivity and Stability Analysis of Reaction-Diffusion Neural Networks With Dirichlet Boundary Conditions.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#WangWG11,https://doi.org/10.1109/TNN.2011.2170096 +Abdelouahid Lyhyaoui,Sample selection via clustering to construct support vector-like classifiers.,1999,10,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn10.html#LyhyaouiMMVSF99,https://doi.org/10.1109/72.809092 +Dingwen Zhang,Cosaliency Detection Based on Intrasaliency Prior Transfer and Deep Intersaliency Mining.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn27.html#ZhangHHS16,https://doi.org/10.1109/TNNLS.2015.2495161 +Gang Chen 0014,Cooperative Tracking Control of Nonlinear Multiagent Systems Using Self-Structuring Neural Networks.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn25.html#ChenS14,https://doi.org/10.1109/TNNLS.2013.2293507 +Monica Bianchini,Theoretical properties of recursive neural networks with linear neurons.,2001,12,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn12.html#BianchiniG01,https://doi.org/10.1109/72.950127 +Zhenkun Huang,Multiperiodicity of periodically oscillated discrete-time neural networks with transient excitatory self-connections and sigmoidal nonlinearities.,2010,21,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn21.html#HuangWF10,https://doi.org/10.1109/TNN.2010.2067225 +Andries Petrus Engelbrecht,A new pruning heuristic based on variance analysis of sensitivity information.,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#Engelbrecht01,https://doi.org/10.1109/72.963775 +Jian Xun Peng,A New Jacobian Matrix for Optimal Learning of Single-Layer Neural Networks.,2008,19,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn19.html#PengLI08,https://doi.org/10.1109/TNN.2007.903150 +Alessio Micheli,Contextual processing of structured data by recursive cascade correlation.,2004,15,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn15.html#MicheliSS04,https://doi.org/10.1109/TNN.2004.837783 +Jayaram Raghuram,Instance-Level Constraint-Based Semisupervised Learning With Imposed Space-Partitioning.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn25.html#Raghuram0K14,https://doi.org/10.1109/TNNLS.2013.2294459 +Hasan Ferdowsi,An Online Outlier Identification and Removal Scheme for Improving Fault Detection Performance.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn25.html#FerdowsiJZ14,https://doi.org/10.1109/TNNLS.2013.2283456 +Bailing Zhang,Handwritten digit recognition by adaptive-subspace self-organizing map (ASSOM).,1999,10,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn10.html#ZhangFYJ99,https://doi.org/10.1109/72.774267 +Hanqi Wang,Identifying Objective and Subjective Words via Topic Modeling.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn29.html#WangWLYLLZ18,https://doi.org/10.1109/TNNLS.2016.2626379 +S. C. Tong,Adaptive Neural Network Decentralized Backstepping Output-Feedback Control for Nonlinear Large-Scale Systems With Time Delays.,2011,22,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn22.html#TongLZ11,https://doi.org/10.1109/TNN.2011.2146274 +Marco Gori,Encoding nondeterministic fuzzy tree automata into recursive neural networks.,2004,15,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn15.html#GoriP04,https://doi.org/10.1109/TNN.2004.837585 +Brion K. Dolenko,Tolerance to analog hardware of on-chip learning in backpropagation networks.,1995,6,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn6.html#DolenkoC95,https://doi.org/10.1109/72.410349 +Sasikanth Pagadrai,Smart-Grid Backbone Network Real-Time Delay Reduction via Integer Programming.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn27.html#PagadraiYV16,https://doi.org/10.1109/TNNLS.2015.2422699 +Alioune Ngom,STRIP - a strip-based neural-network growth algorithm for learning multiple-valued functions.,2001,12,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn12.html#NgomSM01,https://doi.org/10.1109/72.914519 +Nicolas Chapados,Cost functions and model combination for VaR-based asset allocation using neural networks.,2001,12,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn12.html#ChapadosB01,https://doi.org/10.1109/72.935098 +Sabri Arik,Global asymptotic stability analysis of bidirectional associative memory neural networks with time delays.,2005,16,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn16.html#Arik05,https://doi.org/10.1109/TNN.2005.844910 +Patrick Le Callet,A Convolutional Neural Network Approach for Objective Video Quality Assessment.,2006,17,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn17.html#CalletVB06,https://doi.org/10.1109/TNN.2006.879766 +Nicolás García-Pedrajas,A Proposal for Local k Values for k-Nearest Neighbor Rule.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn28.html#Garcia-Pedrajas17,https://doi.org/10.1109/TNNLS.2015.2506821 +Bong-Jun Yang,Adaptive Control of a Class of Nonaffine Systems Using Neural Networks.,2007,18,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn18.html#YangC07,https://doi.org/10.1109/TNN.2007.899253 +Shengli Xie,Time-Frequency Approach to Underdetermined Blind Source Separation.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn23.html#XieYYZX12,https://doi.org/10.1109/TNNLS.2011.2177475 +Gregory Ditzler,A Sequential Learning Approach for Scaling Up Filter-Based Feature Subset Selection.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#DitzlerPR18,https://doi.org/10.1109/TNNLS.2017.2697407 +Hai-Tao Zhang,Consensus Acceleration in a Class of Predictive Networks.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn25.html#ZhangC14,https://doi.org/10.1109/TNNLS.2013.2294674 +Kui Yu,Markov Blanket Feature Selection Using Representative Sets.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn28.html#YuWDMW17,https://doi.org/10.1109/TNNLS.2016.2602365 +Masakazu Yagi,An image representation algorithm compatible with neural-associative-processor-based hardware recognition systems.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#YagiS03,https://doi.org/10.1109/TNN.2003.819038 +José C. Príncipe,An analysis of the gamma memory in dynamic neural networks.,1994,5,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn5.html#PrincipeKC94,https://doi.org/10.1109/72.279195 +Shangjiang Guo,Stability analysis of Cohen-Grossberg neural networks.,2006,17,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn17.html#GuoH06,https://doi.org/10.1109/TNN.2005.860845 +Nuri Denizcan Vanli,A Unified Approach to Universal Prediction: Generalized Upper and Lower Bounds.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn26.html#VanliK15,https://doi.org/10.1109/TNNLS.2014.2317552 +Tao Liu 0011,A Discrete-Time Recurrent Neural Network for Solving Rank-Deficient Matrix Equations With an Application to Output Regulation of Linear Systems.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#LiuH18a,https://doi.org/10.1109/TNNLS.2017.2690663 +Gavin C. Cawley,Sparse bayesian kernel survival analysis for modeling the growth domain of microbial pathogens.,2006,17,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn17.html#CawleyTJP06,https://doi.org/10.1109/TNN.2005.863452 +Saichon Jaiyen,A very fast neural learning for classification using only new incoming datum.,2010,21,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn21.html#JaiyenLP10,https://doi.org/10.1109/TNN.2009.2037148 +Yurong Liu,Stability and Synchronization of Discrete-Time Markovian Jumping Neural Networks With Mixed Mode-Dependent Time Delays.,2009,20,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn20.html#LiuWLL09,https://doi.org/10.1109/TNN.2009.2016210 +Makito Oku,Pseudo-Orthogonalization of Memory Patterns for Associative Memory.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn24.html#OkuMA13,https://doi.org/10.1109/TNNLS.2013.2268542 +Jenni Raitoharju,Training Radial Basis Function Neural Networks for Classification via Class-Specific Clustering.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn27.html#RaitoharjuKG16,https://doi.org/10.1109/TNNLS.2015.2497286 +Xiao-Tong Yuan,Efficient ω7*2 Kernel Linearization via Random Feature Maps.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn27.html#YuanWDL16,https://doi.org/10.1109/TNNLS.2015.2476659 +Gangsheng Wang,Searching for optimal frame patterns in an integrated TDMA communication system using mean field annealing.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#WangA98,https://doi.org/10.1109/72.728379 +Houduo Qi,Deriving sufficient conditions for global asymptotic stability of delayed neural networks via nonsmooth analysis.,2004,15,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn15.html#QiQ04,https://doi.org/10.1109/TNN.2003.820836 +Chaojie Li,A Generalized Hopfield Network for Nonsmooth Constrained Convex Optimization: Lie Derivative Approach.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn27.html#LiYHCH16,https://doi.org/10.1109/TNNLS.2015.2496658 +Quanxin Zhu,Stability Analysis of Markovian Jump Stochastic BAM Neural Networks With Impulse Control and Mixed Time Delays.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn23.html#ZhuC12,https://doi.org/10.1109/TNNLS.2011.2182659 +Ricardo Gutierrez-Osuna,Habituation in the KIII olfactory model with chemical sensor arrays.,2003,14,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn14.html#Gutierrez-OsunaG03,https://doi.org/10.1109/TNN.2003.820438 +Chih-Chung Yang,Landmine detection and classification with complex-valued hybrid neural network using scattering parameters dataset.,2005,16,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn16.html#YangB05,https://doi.org/10.1109/TNN.2005.844906 +Taghi M. Khoshgoftaar,Application of neural networks to software quality modeling of a very large telecommunications system.,1997,8,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn8.html#KhoshgoftaarAHA97,https://doi.org/10.1109/72.595888 +Kirill Minkovich,Programming Time-Multiplexed Reconfigurable Hardware Using a Scalable Neuromorphic Compiler.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn23.html#MinkovichSCCN12,https://doi.org/10.1109/TNNLS.2012.2191795 +David Wedge,On global-local artificial neural networks for function approximation.,2006,17,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn17.html#WedgeIMMB06,https://doi.org/10.1109/TNN.2006.875972 +María José Pérez-Ilzarbe,Convergence analysis of a discrete-time recurrent neural network to perform quadratic real optimization with bound constraints.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#Perez-Ilzarbe98,https://doi.org/10.1109/72.728385 +Duncan A. J. Blythe,Feature Extraction for Change-Point Detection Using Stationary Subspace Analysis.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn23.html#BlytheBMM12,https://doi.org/10.1109/TNNLS.2012.2185811 +Wu-Hua Chen,Robust stability analysis for stochastic neural networks with time-varying delay.,2010,21,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn21.html#ChenZ10,https://doi.org/10.1109/TNN.2009.2040000 +Vu Anh Nguyen,Neural Network Structure for Spatio-Temporal Long-Term Memory.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn23.html#NguyenSGJ12,https://doi.org/10.1109/TNNLS.2012.2191419 +Collin Wang,A skeleton and neural network-based approach for identifying cosmetic surface flaws.,1995,6,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn6.html#WangCKL95,https://doi.org/10.1109/72.410362 +Hung-Yi Hsieh,Hardware Friendly Probabilistic Spiking Neural Network With Long-Term and Short-Term Plasticity.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn24.html#HsiehT13,https://doi.org/10.1109/TNNLS.2013.2271644 +Yuanqing Li,Blind extraction of singularly mixed source signals.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn11.html#LiWZ00,https://doi.org/10.1109/72.883467 +Naiyang Guan,Non-Negative Patch Alignment Framework.,2011,22,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn22.html#GuanTLY11,https://doi.org/10.1109/TNN.2011.2157359 +Shirish K. Shevade,Improvements to the SMO algorithm for SVM regression.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn11.html#ShevadeKBM00,https://doi.org/10.1109/72.870050 +Moumen T. El-Melegy,Random Sampler M-Estimator Algorithm With Sequential Probability Ratio Test for Robust Function Approximation Via Feed-Forward Neural Networks.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn24.html#El-Melegy13,https://doi.org/10.1109/TNNLS.2013.2251001 +Enrique Romero,Comparing Support Vector Machines and Feedforward Neural Networks With Similar Hidden-Layer Weights.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#RomeroT07,https://doi.org/10.1109/TNN.2007.891656 +Charles W. Anderson,Robust Reinforcement Learning Control Using Integral Quadratic Constraints for Recurrent Neural Networks.,2007,18,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn18.html#AndersonYBKBH07,https://doi.org/10.1109/TNN.2007.899520 +Marcelo C. M. Teixeira,Analog neural nonderivative optimizers.,1998,9,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn9.html#TeixeiraZ98,https://doi.org/10.1109/72.701176 +Eric A. Wan,Neural network classification: a Bayesian interpretation.,1990,1,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn1.html#Wan90,https://doi.org/10.1109/72.80269 +Arun Jagota,Approximating maximum clique with a Hopfield network.,1995,6,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn6.html#Jagota95,https://doi.org/10.1109/72.377977 +Carver Mead,Analog VLSI model of binaural hearing.,1991,2,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn2.html#MeadAL91,https://doi.org/10.1109/72.80333 +Jinhui Chen,Matrix Variate Distribution-Induced Sparse Representation for Robust Image Classification.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn26.html#ChenYLQX15,https://doi.org/10.1109/TNNLS.2014.2377477 +Javed I. Khan,Characteristics of multidimensional holographic associative memory in retrieval with dynamically localizable attention.,1998,9,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn9.html#Khan98,https://doi.org/10.1109/72.668882 +Narges Armanfard,Logistic Localized Modeling of the Sample Space for Feature Selection and Classification.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#ArmanfardRK18,https://doi.org/10.1109/TNNLS.2017.2676101 +Johan A. K. Suykens,A support vector machine formulation to PCA analysis and its kernel version.,2003,14,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn14.html#SuykensGVM03,https://doi.org/10.1109/TNN.2003.809414 +Zhijun Yang,Neuromorphic Control of Stepping Pattern Generation: A Dynamic Model With Analog Circuit Implementation.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn23.html#YangCLWM12,https://doi.org/10.1109/TNNLS.2011.2177859 +Zhigang Zeng,Multistability of recurrent neural networks with time-varying delays and the piecewise linear activation function.,2010,21,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn21.html#ZengHZ10,https://doi.org/10.1109/TNN.2010.2054106 +Ali Heydari,Optimal Switching and Control of Nonlinear Switching Systems Using Approximate Dynamic Programming.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn25.html#HeydariB14,https://doi.org/10.1109/TNNLS.2013.2288067 +Siamak Mehrkanoon,Approximate Solutions to Ordinary Differential Equations Using Least Squares Support Vector Machines.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn23.html#MehrkanoonFS12,https://doi.org/10.1109/TNNLS.2012.2202126 +Abhijeet V. Nandedkar,A Fuzzy Min-Max Neural Network Classifier With Compensatory Neuron Architecture.,2007,18,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn18.html#NandedkarB07,https://doi.org/10.1109/TNN.2006.882811 +Lutz Leistritz,Initial state training procedure improves dynamic recurrent networks with time-dependent weights.,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#LeistritzGWK01,https://doi.org/10.1109/72.963788 +Kai Sun,Design and Application of a Variable Selection Method for Multilayer Perceptron Neural Network With LASSO.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn28.html#SunHWJ17,https://doi.org/10.1109/TNNLS.2016.2542866 +Bonifacio Martín-del-Brío,A dot product neuron for hardware implementation of competitive networks.,1996,7,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn7.html#Martin-del-Brio96,https://doi.org/10.1109/72.485687 +Yunong Zhang,Common Nature of Learning Between Back-Propagation and Hopfield-Type Neural Networks for Generalized Matrix Inversion With Simplified Models.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn24.html#ZhangGL13,https://doi.org/10.1109/TNNLS.2013.2238555 +Dezhong Peng,A Globally Convergent MC Algorithm With an Adaptive Learning Rate.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn23.html#PengYXZ12,https://doi.org/10.1109/TNNLS.2011.2179310 +Cheng-Lin Liu,Discriminative learning quadratic discriminant function for handwriting recognition.,2004,15,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn15.html#LiuSF04,https://doi.org/10.1109/TNN.2004.824263 +Zhongyang Fei,Exponential Synchronization of Networked Chaotic Delayed Neural Network by a Hybrid Event Trigger Scheme.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#FeiGG18,https://doi.org/10.1109/TNNLS.2017.2700321 +Narine Manukyan,Data-Driven Cluster Reinforcement and Visualization in Sparsely-Matched Self-Organizing Maps.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn23.html#ManukyanER12,https://doi.org/10.1109/TNNLS.2012.2190768 +Maoguo Gong,A Multiobjective Sparse Feature Learning Model for Deep Neural Networks.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn26.html#GongLLCS15,https://doi.org/10.1109/TNNLS.2015.2469673 +Narayan Srinivasa,SOIM: a self-organizing invertible map with applications in active vision.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#SrinivasaS97,https://doi.org/10.1109/72.572111 +B. Ph. Van Milligen,"Comments on ""Accelerated learning algorithm for multilayer perceptrons: optimization layer by layer"".",1998,9,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn9.html#MilligenTJC98,https://doi.org/10.1109/72.661128 +V. V. Phansalkar,Analysis of the back-propagation algorithm with momentum.,1994,5,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn5.html#PhansalkarS94,https://doi.org/10.1109/72.286925 +Chun-Wei Seah,Transfer Ordinal Label Learning.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn24.html#SeahTO13,https://doi.org/10.1109/TNNLS.2013.2268541 +Sang Wan Lee,Representation of a fisher criterion function in a kernel feature space.,2010,21,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn21.html#LeeB10,https://doi.org/10.1109/TNN.2009.2036846 +Haijian Sun,A neurocomputational model of figure-ground discrimination and target tracking.,1999,10,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn10.html#SunLG99,https://doi.org/10.1109/72.774238 +Hongwei Chen,Synchronization for the Realization-Dependent Probabilistic Boolean Networks.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#ChenLLQ18,https://doi.org/10.1109/TNNLS.2017.2647989 +Jin-Young Choi,Sensitivity analysis of multilayer perceptron with differentiable activation functions.,1992,3,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn3.html#ChoiC92,https://doi.org/10.1109/72.105422 +Anke Meyer-Bäse,Local and Global Stability Analysis of an Unsupervised Competitive Neural Network.,2008,19,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn19.html#Meyer-BaseT08,https://doi.org/10.1109/TNN.2007.908626 +Donq-Liang Lee,Pattern sequence recognition using a time-varying Hopfield network.,2002,13,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn13.html#Lee02,https://doi.org/10.1109/72.991419 +Paul Rogister,Asynchronous Event-Based Binocular Stereo Matching.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn23.html#RogisterBILD12,https://doi.org/10.1109/TNNLS.2011.2180025 +Zhen Ni,Adaptive Learning in Tracking Control Based on the Dual Critic Network Design.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn24.html#NiHW13,https://doi.org/10.1109/TNNLS.2013.2247627 +Dror Salée,High-capacity Hebbian storage by sparse sampling.,1995,6,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn6.html#SaleeB95,https://doi.org/10.1109/72.363470 +Akira Hirose,Predictive self-organizing map for vector quantization of migratory signals and its application to mobile communications.,2003,14,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn14.html#HiroseN03a,https://doi.org/10.1109/TNN.2003.820834 +Thuan Q. Huynh,Symbolic Representation of Recurrent Neural Network Dynamics.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn23.html#HuynhR12,https://doi.org/10.1109/TNNLS.2012.2210242 +Gregory L. Plett,Adaptive inverse control of linear and nonlinear systems using dynamic neural networks.,2003,14,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn14.html#Plett03,https://doi.org/10.1109/TNN.2003.809412 +Tadeusz Kaczorek,Adaptation algorithms for 2-D feedforward neural networks.,1995,6,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn6.html#Kaczorek95,https://doi.org/10.1109/72.363494 +Zhengming Ding,Incomplete Multisource Transfer Learning.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn29.html#DingSF18,https://doi.org/10.1109/TNNLS.2016.2618765 +John V. Arthur,Synchrony in Silicon: The Gamma Rhythm.,2007,18,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn18.html#ArthurB07,https://doi.org/10.1109/TNN.2007.900238 +Hua Deng,Feedback-Linearization-Based Neural Adaptive Control for Unknown Nonaffine Nonlinear Discrete-Time Systems.,2008,19,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn19.html#DengLW08,https://doi.org/10.1109/TNN.2008.2000804 +Marcus Johnson,Approximate N -Player Nonzero-Sum Game Solution for an Uncertain Continuous Nonlinear System.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn26.html#JohnsonKBD15,https://doi.org/10.1109/TNNLS.2014.2350835 +Danchi Jiang,A recurrent neural network for real-time semidefinite programming.,1999,10,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn10.html#JiangW99,https://doi.org/10.1109/72.737496 +Long Cheng 0001,Neural-network-based adaptive leader-following control for multiagent systems with uncertainties.,2010,21,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn21.html#ChengHTLZ10,https://doi.org/10.1109/TNN.2010.2050601 +Michael R. Buehner,A tighter bound for the echo state property.,2006,17,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn17.html#BuehnerY06,https://doi.org/10.1109/TNN.2006.872357 +Yanwei Pang,Convolution in Convolution for Network in Network.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#PangSJL18,https://doi.org/10.1109/TNNLS.2017.2676130 +Sin-Horng Chen,Modular recurrent neural networks for Mandarin syllable recognition.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#ChenL98,https://doi.org/10.1109/72.728393 +Yan-Wu Wang,Synchronization of Continuous Dynamical Networks With Discrete-Time Communications.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#WangXWG11,https://doi.org/10.1109/TNN.2011.2171501 +Yong Xiang 0001,Novel Z-Domain Precoding Method for Blind Separation of Spatially Correlated Signals.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn24.html#XiangPXG13,https://doi.org/10.1109/TNNLS.2012.2224671 +Li Liu 0004,Sequential Compact Code Learning for Unsupervised Image Hashing.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn27.html#LiuS16,https://doi.org/10.1109/TNNLS.2015.2495345 +J. Fu,Adaptive Learning and Control for MIMO System Based on Adaptive Dynamic Programming.,2011,22,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn22.html#FuHZ11,https://doi.org/10.1109/TNN.2011.2147797 +Junping Zhang,Principal Curve Algorithms for Partitioning High-Dimensional Data Spaces.,2011,22,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn22.html#ZhangWKW11,https://doi.org/10.1109/TNN.2010.2100408 +Tim Schönauer,NeuroPipe-Chip: A digital neuro-processor for spiking neural networks.,2002,13,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn13.html#SchonauerAMK02,https://doi.org/10.1109/72.977304 +Hubert Harrer,An analog implementation of discrete-time cellular neural networks.,1992,3,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn3.html#HarrerNS92,https://doi.org/10.1109/72.129419 +Andreas Rauber,The growing hierarchical self-organizing map: exploratory analysis of high-dimensional data.,2002,13,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn13.html#RauberMD02,https://doi.org/10.1109/TNN.2002.804221 +Guang-Bin Huang,"Comments on ""Approximation capability in C(Rn) by multilayer feedforward networks and related problems"".",1998,9,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn9.html#HuangB98a,https://doi.org/10.1109/72.701184 +Tzi-Dar Chiueh,Multivalued associative memories based on recurrent networks.,1993,4,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn4.html#ChiuehT93,https://doi.org/10.1109/72.207604 +Oluseyi Olurotimi,Recurrent neural network training with feedforward complexity.,1994,5,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn5.html#Olurotimi94,https://doi.org/10.1109/72.279184 +Zhiqiang Zuo,A new method for stability analysis of recurrent neural networks with interval time-varying delay.,2010,21,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn21.html#ZuoYW10,https://doi.org/10.1109/TNN.2009.2037893 +Ke Chen 0001,"Correction to ""A Modified HME Architecture for Text-Dependent Speaker Identification"".",1997,8,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn8.html#ChenXC97,https://doi.org/10.1109/TNN.1997.557704 +Haiping Lu,MPCA: Multilinear Principal Component Analysis of Tensor Objects.,2008,19,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn19.html#LuPV08,https://doi.org/10.1109/TNN.2007.901277 +Deniz Erdogmus,Linear-least-squares initialization of multilayer perceptrons through backpropagation of the desired response.,2005,16,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn16.html#ErdogmusFPAC05,https://doi.org/10.1109/TNN.2004.841777 +Xuemei Ren,Identification of Nonlinear Systems With Unknown Time Delay Based on Time-Delay Neural Networks.,2007,18,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn18.html#RenR07,https://doi.org/10.1109/TNN.2007.899702 +Tadashi Nakano,Self-organizing network services with evolutionary adaptation.,2005,16,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn16.html#NakanoS05,https://doi.org/10.1109/TNN.2005.853421 +Sangbong Park,A neuro-genetic controller for nonminimum phase systems.,1995,6,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn6.html#ParkPP95,https://doi.org/10.1109/72.410379 +Young-Chul Kim 0001,Architecture and statistical model of a pulse-mode digital multilayer neural network.,1995,6,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn6.html#KimS95,https://doi.org/10.1109/72.410355 +Marko V. Jankovic,A new simple ∞OH neuron model as a biologically plausible principal component analyzer.,2003,14,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn14.html#Jankovic03,https://doi.org/10.1109/TNN.2003.813836 +Yajun Zhang,A Novel Estimation Algorithm Based on Data and Low-Order Models for Virtual Unmodeled Dynamics.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn25.html#ZhangCSCW14,https://doi.org/10.1109/TNNLS.2014.2306002 +Rangachari Anand,An improved algorithm for neural network classification of imbalanced training sets.,1993,4,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn4.html#AnandMMR93,https://doi.org/10.1109/72.286891 +Eugene M. Izhikevich,Simple model of spiking neurons.,2003,14,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn14.html#Izhikevich03,https://doi.org/10.1109/TNN.2003.820440 +Gloria Galán Marín,Design and analysis of maximum Hopfield networks.,2001,12,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn12.html#MarinM01,https://doi.org/10.1109/72.914527 +Junyu Xuan,Doubly Nonparametric Sparse Nonnegative Matrix Factorization Based on Dependent Indian Buffet Processes.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#XuanLZXL18,https://doi.org/10.1109/TNNLS.2017.2676817 +Ramaswamy Palaniappan,VEP optimal channel selection using genetic algorithm for neural network classification of alcoholics.,2002,13,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn13.html#PalaniappanRO02,https://doi.org/10.1109/72.991435 +Hanlin Goh,Fuzzy Associative Conjuncted Maps Network.,2009,20,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn20.html#GohLQ09,https://doi.org/10.1109/TNN.2009.2023213 +Antoni Morro,A Stochastic Spiking Neural Network for Virtual Screening.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#MorroCOAGBR18,https://doi.org/10.1109/TNNLS.2017.2657601 +Carlotta Domeniconi,Large margin nearest neighbor classifiers.,2005,16,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn16.html#DomeniconiGP05,https://doi.org/10.1109/TNN.2005.849821 +Philip M. Long,On the sample complexity of PAC learning half-spaces against the uniform distribution.,1995,6,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn6.html#Long95,https://doi.org/10.1109/72.471352 +Hideaki Hayashi,A Recurrent Probabilistic Neural Network with Dimensionality Reduction Based on Time-series Discriminant Component Analysis.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn26.html#HayashiSSKT15,https://doi.org/10.1109/TNNLS.2015.2400448 +Zenglin Xu,Discriminative semi-supervised feature selection via manifold regularization.,2010,21,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn21.html#XuKLJ10,https://doi.org/10.1109/TNN.2010.2047114 +Rafael de Jesús Navas-Gonzalez,Neuro-fuzzy chip to handle complex tasks with analog performance.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#Navas-GonzalezVR03,https://doi.org/10.1109/TNN.2003.816379 +Reinhard Eckhorn,Different types of signal coupling in the visual cortex related to neural mechanisms of associative Processing and perception.,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#EckhornGBGAS04,https://doi.org/10.1109/TNN.2004.833130 +Tzyy-Chyang Lu,Quantum-Based Algorithm for Optimizing Artificial Neural Networks.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn24.html#LuYJ13,https://doi.org/10.1109/TNNLS.2013.2249089 +Peng Shi 0001,Neural Network-Based Passive Filtering for Delayed Neutral-Type Semi-Markovian Jump Systems.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn28.html#ShiLWL17,https://doi.org/10.1109/TNNLS.2016.2573853 +Claudio Turchetti,Representation of Nonlinear Random Transformations by Non-Gaussian Stochastic Neural Networks.,2008,19,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn19.html#TurchettiCPB08,https://doi.org/10.1109/TNN.2007.2000055 +Nader Sadegh,A nodal link perceptron network with applications to control of a nonholonomic system.,1995,6,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn6.html#Sadegh95,https://doi.org/10.1109/72.471358 +Yanling Wei 0001,Improved Stability and Stabilization Results for Stochastic Synchronization of Continuous-Time Semi-Markovian Jump Neural Networks With Time-Varying Delay.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#WeiPKTJ18,https://doi.org/10.1109/TNNLS.2017.2696582 +Weiming Hu,A hierarchical self-organizing approach for learning the patterns of motion trajectories.,2004,15,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn15.html#HuXT04,https://doi.org/10.1109/TNN.2003.820668 +Zhang Yi 0001,Permitted and Forbidden Sets in Discrete-Time Linear Threshold Recurrent Neural Networks.,2009,20,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn20.html#Yi0YT09,https://doi.org/10.1109/TNN.2009.2014373 +Giuseppe Martinelli,Cascade neural network for binary mapping.,1993,4,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn4.html#MartinelliMB93,https://doi.org/10.1109/72.182707 +Jian Yang 0014,Weighted Rule Based Adaptive Algorithm for Simultaneously Extracting Generalized Eigenvectors.,2011,22,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn22.html#YangZX11,https://doi.org/10.1109/TNN.2011.2113354 +Jing Yang,Effective Neural Network Ensemble Approach for Improving Generalization Performance.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn24.html#YangZZW13,https://doi.org/10.1109/TNNLS.2013.2246578 +Bor-Shyh Lin,Higher-Order-Statistics-Based Radial Basis Function Networks for Signal Enhancement.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#LinCL07,https://doi.org/10.1109/TNN.2007.891185 +Frank L. Lewis,Guest Editorial Special Issue on Neural Networks for Feedback Control Systems.,2007,18,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn18.html#LewisHPPW07,https://doi.org/10.1109/TNN.2007.902966 +Xiaolin Huang,Hinging Hyperplanes for Time-Series Segmentation.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn24.html#HuangMS13,https://doi.org/10.1109/TNNLS.2013.2254720 +Jason M. Kinser,Foveation by a pulse-coupled neural network.,1999,10,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn10.html#Kinser99,https://doi.org/10.1109/72.761721 +Tohru Nitta,Hyperbolic Gradient Operator and Hyperbolic Back-Propagation Learning Algorithms.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#NittaK18,https://doi.org/10.1109/TNNLS.2017.2677446 +Nicolaos B. Karayiannis,Soft learning vector quantization and clustering algorithms based on non-Euclidean norms: multinorm algorithms.,2003,14,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn14.html#KarayiannisR03,https://doi.org/10.1109/TNN.2002.806951 +Jung-Wook Park,Indirect adaptive control for synchronous Generator: comparison of MLP/RBF neural networks approach with Lyapunov stability analysis.,2004,15,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn15.html#ParkHV04,https://doi.org/10.1109/TNN.2004.824260 +Wenbing Zhang,Stochastic Stability of Delayed Neural Networks With Local Impulsive Effects.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn26.html#ZhangTWM15,https://doi.org/10.1109/TNNLS.2014.2380451 +Chanchal Chatterjee,Algorithms for accelerated convergence of adaptive PCA.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn11.html#ChatterjeeKR00,https://doi.org/10.1109/72.839005 +Ernesto Rios-Patron,"On the ""Identification and control of dynamical systems using neural networks"".",1997,8,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn8.html#Rios-PatronB97,https://doi.org/10.1109/TNN.1997.557703 +Shichao Zhang,Efficient kNN Classification With Different Numbers of Nearest Neighbors.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#ZhangLZZW18,https://doi.org/10.1109/TNNLS.2017.2673241 +Juan Carlos Fernández Caballero,Sensitivity versus accuracy in multiclass problems using memetic Pareto evolutionary neural networks.,2010,21,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn21.html#CaballeroMHG10,https://doi.org/10.1109/TNN.2010.2041468 +Parham Aram,Spatiotemporal System Identification With Continuous Spatial Maps and Sparse Estimation.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn26.html#AramKA15,https://doi.org/10.1109/TNNLS.2015.2392563 +Minnan Luo,Adaptive Unsupervised Feature Selection With Structure Regularization.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#LuoNCYHZ18,https://doi.org/10.1109/TNNLS.2017.2650978 +Baoguang Shi,Face Alignment With Deep Regression.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn29.html#ShiBLW18,https://doi.org/10.1109/TNNLS.2016.2618340 +Aidong Adam Ding,Neural-network prediction with noisy predictors.,1999,10,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn10.html#Ding99,https://doi.org/10.1109/72.788658 +Weisheng Chen,Globally Stable Adaptive Backstepping Neural Network Control for Uncertain Strict-Feedback Systems With Tracking Accuracy Known a Priori.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn26.html#ChenGWG15,https://doi.org/10.1109/TNNLS.2014.2357451 +Tim Waegeman,Feedback Control by Online Learning an Inverse Model.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn23.html#WaegemanWS12,https://doi.org/10.1109/TNNLS.2012.2208655 +Rushikesh Kamalapurkar,Model-Based Reinforcement Learning for Infinite-Horizon Approximate Optimal Tracking.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn28.html#KamalapurkarAWD17,https://doi.org/10.1109/TNNLS.2015.2511658 +Fopefolu O. Folowosele,Silicon Modeling of the Mihalaş-Niebur Neuron.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#FolowoseleHE11,https://doi.org/10.1109/TNN.2011.2167020 +Biao Luo,Data-Driven H∞ Control for Nonlinear Distributed Parameter Systems.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn26.html#LuoHWY15,https://doi.org/10.1109/TNNLS.2015.2461023 +Vincent Gripon,Sparse Neural Networks With Large Learning Diversity.,2011,22,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn22.html#GriponB11,https://doi.org/10.1109/TNN.2011.2146789 +Vwani P. Roychowdhury,Classification of linearly nonseparable patterns by linear threshold elements.,1995,6,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn6.html#RoychowdhurySK95,https://doi.org/10.1109/72.363468 +Avimanyu Sahoo,Near Optimal Event-Triggered Control of Nonlinear Discrete-Time Systems Using Neurodynamic Programming.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn27.html#SahooXJ16b,https://doi.org/10.1109/TNNLS.2015.2453320 +Jennie Si,Online learning control by association and reinforcement.,2001,12,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn12.html#SiW01,https://doi.org/10.1109/72.914523 +Youshen Xia,A Novel Recurrent Neural Network for Solving Nonlinear Optimization Problems With Inequality Constraints.,2008,19,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn19.html#XiaFW08,https://doi.org/10.1109/TNN.2008.2000273 +Yu Su 0009,Classifiability-Based Discriminatory Projection Pursuit.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#SuSCG11,https://doi.org/10.1109/TNN.2011.2170220 +Vittorio Maniezzo,Genetic evolution of the topology and weight distribution of neural networks.,1994,5,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn5.html#Maniezzo94,https://doi.org/10.1109/72.265959 +John E. Moody,Learning to trade via direct reinforcement.,2001,12,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn12.html#MoodyS01,https://doi.org/10.1109/72.935097 +Jianchang Mao,A self-organizing network for hyperellipsoidal clustering (HEC).,1996,7,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn7.html#MaoJ96,https://doi.org/10.1109/72.478389 +Martin D. Emmerson,Determining and improving the fault tolerance of multilayer perceptrons in a pattern-recognition application.,1993,4,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn4.html#EmmersonD93,https://doi.org/10.1109/72.248456 +Bipin Kumar Tripathi,On Efficient Learning Machine With Root-Power Mean Neuron in Complex Domain.,2011,22,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn22.html#TripathiK11,https://doi.org/10.1109/TNN.2011.2115251 +Qingshan Liu 0002,A Projection Neural Network for Constrained Quadratic Minimax Optimization.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn26.html#LiuW15,https://doi.org/10.1109/TNNLS.2015.2425301 +Luis A. Diago,Neuro-Fuzzy Quantification of Personal Perceptions of Facial Images Based on a Limited Data Set.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#DiagoKHK11,https://doi.org/10.1109/TNN.2011.2176349 +Xiao Liang,Dynamical Behavior of Delayed Reaction-Diffusion Hopfield Neural Networks Driven by Infinite Dimensional Wiener Processes.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn27.html#LiangWWW16,https://doi.org/10.1109/TNNLS.2015.2460117 +Bang W. Lee,Paralleled hardware annealing for optimal solutions on electronic neural networks.,1993,4,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn4.html#LeeS93,https://doi.org/10.1109/72.238314 +M. Meneganti,Fuzzy neural networks for classification and detection of anomalies.,1998,9,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn9.html#MenegantiST98,https://doi.org/10.1109/72.712157 +Peter J. Edwards,Minimizing risk using prediction uncertainty in neural network estimation fusion and its application to papermaking.,2002,13,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn13.html#EdwardsPRHM02,https://doi.org/10.1109/TNN.2002.1000137 +Zhao-Rong Lai,A Peak Price Tracking-Based Learning System for Portfolio Selection.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#LaiDRH18,https://doi.org/10.1109/TNNLS.2017.2705658 +Yang Tang,Pinning Distributed Synchronization of Stochastic Dynamical Networks: A Mixed Optimization Approach.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn25.html#TangGLK14,https://doi.org/10.1109/TNNLS.2013.2295966 +Dong-Chul Park,Centroid neural network for unsupervised competitive learning.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn11.html#Park00,https://doi.org/10.1109/72.839021 +Vladimir Cherkassky,Practical Conditions for Effectiveness of the Universum Learning.,2011,22,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn22.html#CherkasskyDD11,https://doi.org/10.1109/TNN.2011.2157522 +Vladimir Vapnik,An overview of statistical learning theory.,1999,10,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn10.html#Vapnik99,https://doi.org/10.1109/72.788640 +Robi Polikar,Guest Editorial Learning in Nonstationary and Evolving Environments.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn25.html#PolikarA14,https://doi.org/10.1109/TNNLS.2013.2283547 +Ding Wang 0001,On Mixed Data and Event Driven Design for Adaptive-Critic-Based Nonlinear H∞ Control.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#WangMLM18,https://doi.org/10.1109/TNNLS.2016.2642128 +Sangdoo Yun,Action-Driven Visual Object Tracking With Deep Reinforcement Learning.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#YunCYYC18,https://doi.org/10.1109/TNNLS.2018.2801826 +Howard C. Card,Doubly stochastic Poisson processes in artificial neural learning.,1998,9,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn9.html#Card98,https://doi.org/10.1109/72.655046 +Yiu-fai Isaac Wong,Learning convergence in the cerebellar model articulation controller.,1992,3,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn3.html#WongS92,https://doi.org/10.1109/72.105424 +Dong-Chul Park,Weighted centroid neural network for edge preserving image compression.,2001,12,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn12.html#ParkW01,https://doi.org/10.1109/72.950142 +Nan Wang,Enhanced Logical Stochastic Resonance in Synthetic Genetic Networks.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn27.html#WangS16,https://doi.org/10.1109/TNNLS.2015.2495155 +Furqan Aziz,Backtrackless Walks on a Graph.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn24.html#AzizWH13,https://doi.org/10.1109/TNNLS.2013.2248093 +Yitian Xu,A Novel Twin Support-Vector Machine With Pinball Loss.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn28.html#XuYP17,https://doi.org/10.1109/TNNLS.2015.2513006 +Jacek M. Zurada,Editorial IEEE Transactions on Neural Networks: Editorial Report and Passing the Baton Jacek M. Zurada (left) and Marios M. Polycarpou.,2004,15,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn15.html#ZuradaP04,https://doi.org/10.1109/TNN.2004.823678 +Jung-Hua Wang,Two-stage clustering via neural networks.,2003,14,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn14.html#WangRL03,https://doi.org/10.1109/TNN.2003.811354 +H. Daniel Patiño,Neural networks for advanced control of robot manipulators.,2002,13,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn13.html#PatinoCK02,https://doi.org/10.1109/72.991420 +Qingtian Zhang,Comparison of and#8467*1-Norm SVR and Sparse Coding Algorithms for Linear Regression.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn26.html#ZhangHZ15,https://doi.org/10.1109/TNNLS.2014.2377245 +Stefano Ferrari,Reducing and Filtering Point Clouds With Enhanced Vector Quantization.,2007,18,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn18.html#FerrariFPB07,https://doi.org/10.1109/TNN.2006.886854 +Yan Xu,Assessing Short-Term Voltage Stability of Electric Power Systems by a Hierarchical Intelligent System.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn27.html#XuZZDWYW16,https://doi.org/10.1109/TNNLS.2015.2441706 +Kamyar Rohani,Neural subnet design by direct polynomial mapping.,1992,3,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn3.html#RohaniCM92,https://doi.org/10.1109/72.165606 +Geoffrey E. Hinton,Modeling the manifolds of images of handwritten digits.,1997,8,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn8.html#HintonDR97,https://doi.org/10.1109/72.554192 +Pedro ángel Castillo Valdivieso,Statistical analysis of the parameters of a neuro-genetic algorithm.,2002,13,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn13.html#ValdiviesoGPRR02,https://doi.org/10.1109/TNN.2002.804281 +Xue-Bin Liang,Effect of transmission delay on the rate of convergence of a class of nonlinear contractive dynamical systems.,2002,13,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn13.html#Liang02,https://doi.org/10.1109/72.977316 +Sei-Wang Chen,"Corrections to ""SO Dynamic Deformation for Building of 3-D Models"".",1996,7,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn7.html#ChenSC96a,https://doi.org/10.1109/TNN.1996.536326 +Xiantong Zhen,Multitarget Sparse Latent Regression.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#ZhenYZNBLL18,https://doi.org/10.1109/TNNLS.2017.2651068 +John Lazzaro,Silicon auditory processors as computer peripherals.,1993,4,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn4.html#LazzaroWMSG93,https://doi.org/10.1109/72.217193 +Lipo Wang,Oscillatory and chaotic dynamics in neural networks under varying operating conditions.,1996,7,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn7.html#Wang96,https://doi.org/10.1109/72.548166 +Jing Peng,Multiview Boosting With Information Propagation for Classification.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn29.html#PengASP18,https://doi.org/10.1109/TNNLS.2016.2637881 +Ming-Wei Chang,Analysis of switching dynamics with competing support vector machines.,2004,15,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn15.html#ChangLW04,https://doi.org/10.1109/TNN.2004.824270 +Peter Andras,High-Dimensional Function Approximation With Neural Networks for Large Volumes of Data.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn29.html#Andras18,https://doi.org/10.1109/TNNLS.2017.2651985 +Nader Sadegh,A perceptron network for functional identification and control of nonlinear systems.,1993,4,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn4.html#Sadegh93,https://doi.org/10.1109/72.286893 +Derong Liu,Farewell Editorial: Smooth Transition of IEEE TNNLS.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn26.html#Liu15a,https://doi.org/10.1109/TNNLS.2015.2497821 +Renquan Lu,Dissipativity-Based Resilient Filtering of Periodic Markovian Jump Neural Networks With Quantized Measurements.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#LuTSSWX18,https://doi.org/10.1109/TNNLS.2017.2688582 +Chung-Kwan Shin,A hybrid approach of neural network and memory-based learning to data mining.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn11.html#ShinYKP00,https://doi.org/10.1109/72.846735 +Aidong Adam Ding,Backpropagation of pseudo-errors: neural networks that are adaptive to heterogeneous noise.,2003,14,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn14.html#DingH03,https://doi.org/10.1109/TNN.2003.809428 +Caigen Zhou,A New Local Bipolar Autoassociative Memory Based on External Inputs of Discrete Recurrent Neural Networks With Time Delay.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn28.html#ZhouZLZ17,https://doi.org/10.1109/TNNLS.2016.2575925 +Paulito P. Palmes,Mutation-based genetic neural network.,2005,16,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn16.html#PalmesHU05,https://doi.org/10.1109/TNN.2005.844858 +Fangyue Chen,Universal Perceptron and DNA-Like Learning Algorithm for Binary Neural Networks: Non-LSBF Implementation.,2009,20,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn20.html#ChenCHHX09,https://doi.org/10.1109/TNN.2009.2023122 +Maciej Kusy,Application of Reinforcement Learning Algorithms for the Adaptive Computation of the Smoothing Parameter for Probabilistic Neural Network.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn26.html#KusyZ15,https://doi.org/10.1109/TNNLS.2014.2376703 +Zhigang Zeng,Guest Editorial Special Issue on Neurodynamic Systems for Optimization and Applications.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn27.html#ZengCCXH16,https://doi.org/10.1109/TNNLS.2016.2515458 +Ke Chen 0001,Perceiving geometric patterns: from spirals to inside-outside relations.,2001,12,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn12.html#ChenW01,https://doi.org/10.1109/72.950138 +A. F. Rocha,A neural net for extracting knowledge from natural language data bases.,1992,3,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn3.html#RochaGTMK92,https://doi.org/10.1109/72.159072 +Nicolaos B. Karayiannis,Training Reformulated Radial Basis Function Neural Networks Capable of Identifying Uncertainty in Data Classification.,2006,17,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn17.html#KarayiannisX06,https://doi.org/10.1109/TNN.2006.877538 +Xi-Lin Li,Preconditioned Stochastic Gradient Descent.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#Li18,https://doi.org/10.1109/TNNLS.2017.2672978 +Derong Liu,Editorial: the IEEE transactions on neural networks 2010 and beyond.,2010,21,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn21.html#Liu10,https://doi.org/10.1109/TNN.2009.2038645 +Huaqing Li 0001,Second-Order Global Consensus in Multiagent Networks With Random Directional Link Failure.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn26.html#LiLH0L15,https://doi.org/10.1109/TNNLS.2014.2320274 +Lijuan Cao,Support vector machine with adaptive parameters in financial time series forecasting.,2003,14,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn14.html#CaoT03,https://doi.org/10.1109/TNN.2003.820556 +Bin Tian,"Errata To ""A Study Of Cloud Classification With Neural Networks Using Spectral And Textural Features"".",1999,10,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn10.html#TianSAHR99a,https://doi.org/10.1109/TNN.1999.761731 +Ryan Elwell,Incremental Learning of Concept Drift in Nonstationary Environments.,2011,22,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn22.html#ElwellP11,https://doi.org/10.1109/TNN.2011.2160459 +Ping Guo,Cluster number selection for a small set of samples using the Bayesian Ying-Yang model.,2002,13,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn13.html#GuoCL02,https://doi.org/10.1109/TNN.2002.1000144 +Elwin de Weerdt,Neural Network Output Optimization Using Interval Analysis.,2009,20,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn20.html#WeerdtCM09,https://doi.org/10.1109/TNN.2008.2011267 +Ivan Salgado,Adaptive Unknown Input Estimation by Sliding Modes and Differential Neural Network Observer.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#SalgadoC18,https://doi.org/10.1109/TNNLS.2017.2730847 +Michael Fairbank,Clipping in Neurocontrol by Adaptive Dynamic Programming.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn25.html#FairbankPA14,https://doi.org/10.1109/TNNLS.2014.2297991 +Guopeng Zhang,Sequential Labeling With Structural SVM Under Nondecomposable Losses.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#ZhangPB18,https://doi.org/10.1109/TNNLS.2017.2757504 +Yasuhiro Ota,Analog implementation of pulse-coupled neural networks.,1999,10,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn10.html#OtaW99,https://doi.org/10.1109/72.761710 +Amir F. Atiya,An analog feedback associative memory.,1993,4,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn4.html#AtiyaA93,https://doi.org/10.1109/72.182701 +Pak Cheung Edgar An,On the convergence rate performance of the normalized least-mean-square adaptation.,1997,8,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn8.html#AnBH97,https://doi.org/10.1109/72.623223 +Mahmood R. Azimi-Sadjadi,Underwater target classification in changing environments using an adaptive feature mapping.,2002,13,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn13.html#Azimi-SadjadiYJD02,https://doi.org/10.1109/TNN.2002.1031942 +Ruoxia Li,Finite-Time Stability Analysis for Markovian Jump Memristive Neural Networks With Partly Unknown Transition Probabilities.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn28.html#LiC17,https://doi.org/10.1109/TNNLS.2016.2609148 +Fabian Mörchen,Analysis of speedup as function of block size and cluster size for parallel feed-forward neural networks on a Beowulf cluster.,2004,15,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn15.html#Morchen04,https://doi.org/10.1109/TNN.2004.824264 +Marios Kyperountas,Weighted Piecewise LDA for Solving the Small Sample Size Problem in Face Verification.,2007,18,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn18.html#KyperountasTP07,https://doi.org/10.1109/TNN.2006.885038 +Manabu Torii,Stability of steepest descent with momentum for quadratic functions.,2002,13,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn13.html#ToriiH02,https://doi.org/10.1109/TNN.2002.1000143 +Chengjun Liu,ICA Color Space for Pattern Recognition.,2009,20,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn20.html#LiuY09,https://doi.org/10.1109/TNN.2008.2005495 +Amir Hesam Salavati,Nonbinary Associative Memory With Exponential Pattern Retrieval Capacity and Iterative Learning.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn25.html#SalavatiKS14,https://doi.org/10.1109/TNNLS.2013.2277608 +Minlong Lin,Dynamic Sampling Approach to Training Neural Networks for Multiclass Imbalance Classification.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn24.html#LinTY13,https://doi.org/10.1109/TNNLS.2012.2228231 +Junjie Hu,Online Nonlinear AUC Maximization for Imbalanced Data Sets.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#HuYLKS18,https://doi.org/10.1109/TNNLS.2016.2610465 +Qinglai Wei,Discrete-Time Stable Generalized Self-Learning Optimal Control With Approximation Errors.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#WeiLS18,https://doi.org/10.1109/TNNLS.2017.2661865 +Tetsuya Hoya,Heuristic pattern correction scheme using adaptively trained generalized regression neural networks.,2001,12,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn12.html#HoyaC01,https://doi.org/10.1109/72.896798 +Garrick Orchard,Fast Neuromimetic Object Recognition Using FPGA Outperforms GPU Implementations.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn24.html#OrchardMVE13,https://doi.org/10.1109/TNNLS.2013.2253563 +Chengan Guo,Temporal difference learning applied to sequential detection.,1997,8,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn8.html#GuoK97,https://doi.org/10.1109/72.557666 +Jooyoung Park,Design of GBSB neural associative memories using semidefinite programming.,1999,10,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn10.html#ParkCP99,https://doi.org/10.1109/72.774268 +Sjoerd van den Dries,Neural-Fitted TD-Leaf Learning for Playing Othello With Structured Neural Networks.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn23.html#DriesW12,https://doi.org/10.1109/TNNLS.2012.2210559 +Bin Xu 0003,Online Recorded Data-Based Composite Neural Control of Strict-Feedback Systems With Application to Hypersonic Flight Dynamics.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#XuYSPCS18,https://doi.org/10.1109/TNNLS.2017.2743784 +Junhong Lin,Online Learning Algorithms Can Converge Comparably Fast as Batch Learning.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#LinZ18,https://doi.org/10.1109/TNNLS.2017.2677970 +Matteo Martincigh,A new architecture for digital stochastic pulse-mode neurons based on the voting circuit.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#MartincighA05,https://doi.org/10.1109/TNN.2005.852972 +Chitra Panchapakesan,Effects of moving the center's in an RBF network.,2002,13,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn13.html#PanchapakesanPRM02,https://doi.org/10.1109/TNN.2002.804286 +José Luis Aznarte,Equivalences between neural-autoregressive time series models and fuzzy systems.,2010,21,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn21.html#AznarteB10,https://doi.org/10.1109/TNN.2010.2060209 +Liu Yang,Learning Transferred Weights From Co-Occurrence Data for Heterogeneous Transfer Learning.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn27.html#YangJYN16,https://doi.org/10.1109/TNNLS.2015.2472457 +Tianping Chen,Universal approximation to nonlinear operators by neural networks with arbitrary activation functions and its application to dynamical systems.,1995,6,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn6.html#ChenC95a,https://doi.org/10.1109/72.392253 +Ling Guan,A network of networks processing model for image regularization.,1997,8,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn8.html#GuanAS97,https://doi.org/10.1109/72.554202 +Xiaoyang Liu,Finite-Time Consensus of Multiagent Systems With a Switching Protocol.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn27.html#LiuLYC16,https://doi.org/10.1109/TNNLS.2015.2425933 +Jie Lian,Observer Design for Switched Recurrent Neural Networks: An Average Dwell Time Approach.,2011,22,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn22.html#LianFS11,https://doi.org/10.1109/TNN.2011.2162111 +Romain Modeste Nguimdo,Simultaneous Computation of Two Independent Tasks Using Reservoir Computing Based on a Single Photonic Nonlinear Node With Optical Feedback.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn26.html#NguimdoVDS15,https://doi.org/10.1109/TNNLS.2015.2404346 +Nicolaos B. Karayiannis,Repairs to GLVQ: a new family of competitive learning schemes.,1996,7,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn7.html#KarayiannisBPHP96,https://doi.org/10.1109/72.536304 +Ziye Zhang,Global Stability Criterion for Delayed Complex-Valued Recurrent Neural Networks.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn25.html#ZhangLC14,https://doi.org/10.1109/TNNLS.2013.2288943 +Luiz Pessoa,Complex cell prototype representation for face recognition.,1999,10,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn10.html#PressoaL99,https://doi.org/10.1109/72.809099 +Gintaras V. Puskorius,Neurocontrol of nonlinear dynamical systems with Kalman filter trained recurrent networks.,1994,5,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn5.html#PuskoriusF94,https://doi.org/10.1109/72.279191 +Robert J. Schilling,Approximation of nonlinear systems with radial basis function neural networks.,2001,12,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn12.html#SchillingCA01,https://doi.org/10.1109/72.896792 +Xue-Bin Liang,On the analysis of a recurrent neural network for solving nonlinear monotone variational inequality problems.,2002,13,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn13.html#Liang02a,https://doi.org/10.1109/72.991434 +Manli Zhu,Pruning Noisy Bases in Discriminant Analysis.,2008,19,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn19.html#ZhuM08,https://doi.org/10.1109/TNN.2007.904040 +Yen-Hung Chen,Neurocomputing with time delay analysis for solving convex quadratic programming problems.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn11.html#ChenF00,https://doi.org/10.1109/72.822526 +Christoph Bergmeir,Time Series Modeling and Forecasting Using Memetic Algorithms for Regime-Switching Models.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn23.html#BergmeirTMAB12,https://doi.org/10.1109/TNNLS.2012.2216898 +Marian B. Gorzalczany,Generalized Self-Organizing Maps for Automatic Determination of the Number of Clusters and Their Multiprototypes in Cluster Analysis.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#GorzalczanyR18,https://doi.org/10.1109/TNNLS.2017.2704779 +Urs A. Müller,Fast neural net simulation with a DSP processor array.,1995,6,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn6.html#MullerGG95,https://doi.org/10.1109/72.363436 +Jianquan Lu,Synchronization Control for Nonlinear Stochastic Dynamical Networks: Pinning Impulsive Strategy.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn23.html#LuKCMH12,https://doi.org/10.1109/TNNLS.2011.2179312 +Chun-Sung Ferng,Multilabel Classification Using Error-Correcting Codes of Hard or Soft Bits.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn24.html#FerngL13,https://doi.org/10.1109/TNNLS.2013.2269615 +Chunhua Shen,Efficient Dual Approach to Distance Metric Learning.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn25.html#ShenKLWH14,https://doi.org/10.1109/TNNLS.2013.2275170 +Yue Fu,Self-Tuning Control With a Filter and a Neural Compensator for a Class of Nonlinear Systems.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn24.html#FuC13,https://doi.org/10.1109/TNNLS.2013.2238638 +Feihu Huang,Joint Learning of Multiple Sparse Matrix Gaussian Graphical Models.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn26.html#HuangC15,https://doi.org/10.1109/TNNLS.2014.2384201 +Shih-Lin Hung,A parallel genetic/neural network learning algorithm for MIMD shared memory machines.,1994,5,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn5.html#HungA94,https://doi.org/10.1109/72.329686 +Xuemei Ding,Novelty Detection Using Level Set Methods.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn26.html#DingLBM15,https://doi.org/10.1109/TNNLS.2014.2320293 +Qing Tao,Posterior probability support vector Machines for unbalanced data.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#TaoWWW05,https://doi.org/10.1109/TNN.2005.857955 +Marcos Eduardo Valle,On the Dynamics of Hopfield Neural Networks on Unit Quaternions.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#ValleC18,https://doi.org/10.1109/TNNLS.2017.2691462 +Wassim M. Haddad,Neural Network Adaptive Output Feedback Control for Intensive Care Unit Sedation and Intraoperative Anesthesia.,2007,18,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn18.html#HaddadBHH07,https://doi.org/10.1109/TNN.2007.899164 +Lei Wang 0001,A Kernel-Induced Space Selection Approach to Model Selection in KLDA.,2008,19,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn19.html#WangCXZ08,https://doi.org/10.1109/TNN.2008.2005140 +Sintiani Dewi Teddy,Hierarchically Clustered Adaptive Quantization CMAC and Its Learning Convergence.,2007,18,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn18.html#TeddyLQ07,https://doi.org/10.1109/TNN.2007.900810 +Qinglai Wei,Discrete-Time Local Value Iteration Adaptive Dynamic Programming: Admissibility and Termination Analysis.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn28.html#WeiLL17,https://doi.org/10.1109/TNNLS.2016.2593743 +Huseyin Ozkan,A Deterministic Analysis of an Online Convex Mixture of Experts Algorithm.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn26.html#OzkanDTK15,https://doi.org/10.1109/TNNLS.2014.2346832 +Patrik Eklund,Neural fuzzy logic programming.,1992,3,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn3.html#EklundK92,https://doi.org/10.1109/72.159071 +Jens Kalkkuhl,FEM-based neural-network approach to nonlinear modeling with application to longitudinal vehicle dynamics control.,1999,10,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn10.html#KalkkuhlHF99,https://doi.org/10.1109/72.774241 +Aristides S. Galanopoulos,Diffusion approximation of frequency sensitive competitive learning.,1997,8,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn8.html#GalanopoulosMA97,https://doi.org/10.1109/72.623204 +Jianjia Zhang,Learning Discriminative Stein Kernel for SPD Matrices and Its Applications.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn27.html#ZhangWZL16,https://doi.org/10.1109/TNNLS.2015.2435154 +Simone G. O. Fiori,Learning by natural gradient on noncompact matrix-type pseudo-Riemannian manifolds.,2010,21,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn21.html#Fiori10,https://doi.org/10.1109/TNN.2010.2043445 +Sung Jin Yoo,"Comments on ""Adaptive Neural Control for a Class of Nonlinearly Parametric Time-Delay Systems"".",2008,19,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn19.html#YooPC08,https://doi.org/10.1109/TNN.2008.2002331 +Natalija Vlajic,Vector quantization of images using modified adaptive resonance algorithm for hierarchical clustering.,2001,12,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn12.html#VlajicC01,https://doi.org/10.1109/72.950143 +He Huang 0001,Robust State Estimation for Uncertain Neural Networks With Time-Varying Delay.,2008,19,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn19.html#HuangFC08,https://doi.org/10.1109/TNN.2008.2000206 +Rafael V. Borges,Learning and Representing Temporal Knowledge in Recurrent Networks.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#BorgesGL11,https://doi.org/10.1109/TNN.2011.2170180 +Shengyu Nan,Density-Dependent Quantized Least Squares Support Vector Machine for Large Data Sets.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn28.html#NanSCLT17,https://doi.org/10.1109/TNNLS.2015.2504382 +Zhirong Yang,Linear and nonlinear projective nonnegative matrix factorization.,2010,21,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn21.html#YangO10,https://doi.org/10.1109/TNN.2010.2041361 +Yang Li 0010,Time-Varying System Identification Using an Ultra-Orthogonal Forward Regression and Multiwavelet Basis Functions With Applications to EEG.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#LiCGHYW18,https://doi.org/10.1109/TNNLS.2017.2709910 +Mircea-Bogdan Radac,Model-Free Primitive-Based Iterative Learning Control Approach to Trajectory Tracking of MIMO Systems With Experimental Validation.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn26.html#RadacPP15,https://doi.org/10.1109/TNNLS.2015.2460258 +Yuguang Fang,Stability analysis of dynamical neural networks.,1996,7,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn7.html#FangK96,https://doi.org/10.1109/72.508941 +Wei He 0001,Adaptive Fuzzy Neural Network Control for a Constrained Robot Using Impedance Learning.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#HeD18,https://doi.org/10.1109/TNNLS.2017.2665581 +Mao Ye,Global convergence analysis of a discrete time nonnegative ICA algorithm.,2006,17,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn17.html#Ye06,https://doi.org/10.1109/TNN.2005.860854 +Susan M. Courtney,A multistage neural network for color constancy and color induction.,1995,6,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn6.html#CourtneyFB95,https://doi.org/10.1109/72.392259 +Sukumar Mishra,Neural-network-based adaptive UPFC for improving transient stability performance of power system.,2006,17,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn17.html#Mishra06,https://doi.org/10.1109/TNN.2006.871706 +Michael G. Lysenko,Predicting neutron diffusion eigenvalues with a query-based adaptive neural architecture.,1999,10,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn10.html#LysenkoWM99,https://doi.org/10.1109/72.774221 +Yi Cao,Adaptive Hidden Markov Model With Anomaly States for Price Manipulation Detection.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn26.html#CaoLCBM15,https://doi.org/10.1109/TNNLS.2014.2315042 +Jenq-Neng Hwang,Regression modeling in back-propagation and projection pursuit learning.,1994,5,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn5.html#HwangLMMS94,https://doi.org/10.1109/72.286906 +Shuiwang Ji,Generalized Linear Discriminant Analysis: A Unified Framework and Efficient Model Selection.,2008,19,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn19.html#JiY08,https://doi.org/10.1109/TNN.2008.2002078 +Mikael Bodén,On learning context-free and context-sensitive languages.,2002,13,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn13.html#BodenW02,https://doi.org/10.1109/72.991436 +Xutao Li,MR-NTD: Manifold Regularization Nonnegative Tucker Decomposition for Tensor Data Dimension Reduction and Representation.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn28.html#LiNCYW17,https://doi.org/10.1109/TNNLS.2016.2545400 +Paolo Frasconi,Computational capabilities of local-feedback recurrent networks acting as finite-state machines.,1996,7,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn7.html#FrasconiG96,https://doi.org/10.1109/72.548181 +Donq-Liang Lee,Designing asymmetric Hopfield-type associative memory with higher order hamming stability.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#LeeC05,https://doi.org/10.1109/TNN.2005.852863 +Arun T. Vemuri,Neural-network-based robust fault diagnosis in robotic systems.,1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#VemuriP97,https://doi.org/10.1109/72.641464 +Tim de Bruin,Railway Track Circuit Fault Diagnosis Using Recurrent Neural Networks.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn28.html#BruinVB17,https://doi.org/10.1109/TNNLS.2016.2551940 +Juyang Weng,Incremental Hierarchical Discriminant Regression.,2007,18,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn18.html#WengH07,https://doi.org/10.1109/TNN.2006.889942 +Sarwar Tapan,A Further Study on Mining DNA Motifs Using Fuzzy Self-Organizing Maps.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn27.html#TapanW16,https://doi.org/10.1109/TNNLS.2015.2435155 +Yuli Chen,Region-Based Object Recognition by Color Segmentation Using a Simplified PCNN.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn26.html#ChenMKP15,https://doi.org/10.1109/TNNLS.2014.2351418 +Benjamin J. Hellstrom,Knapsack packing networks.,1992,3,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn3.html#HellstromK92,https://doi.org/10.1109/72.125871 +Xiaodong Gu,Image shadow removal using pulse coupled neural network.,2005,16,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn16.html#GuYZ05,https://doi.org/10.1109/TNN.2005.844902 +Jianhua Zhao,Two-Stage Regularized Linear Discriminant Analysis for 2-D Data.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn26.html#ZhaoSZ15,https://doi.org/10.1109/TNNLS.2014.2350993 +Wu-Hua Chen,Impulsive Stabilization and Impulsive Synchronization of Discrete-Time Delayed Neural Networks.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn26.html#ChenLZ15,https://doi.org/10.1109/TNNLS.2014.2322499 +Torbjørn Eltoft,A new neural network for cluster-detection-and-labeling.,1998,9,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn9.html#Eltoftd98,https://doi.org/10.1109/72.712183 +Baohua Li,Approximate robust policy iteration using multilayer perceptron neural networks for discounted infinite-horizon Markov decision processes with uncertain correlated transition matrices.,2010,21,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn21.html#LiS10,https://doi.org/10.1109/TNN.2010.2050334 +Huaping Liu,Extreme Trust Region Policy Optimization for Active Object Recognition.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#LiuWS18,https://doi.org/10.1109/TNNLS.2017.2785233 +Grigorios Skolidis,Semisupervised Multitask Learning With Gaussian Processes.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn24.html#SkolidisS13,https://doi.org/10.1109/TNNLS.2013.2272403 +Zheng Zeng,Discrete recurrent neural networks for grammatical inference.,1994,5,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn5.html#ZengGS94,https://doi.org/10.1109/72.279194 +Johan A. K. Suykens,Data Visualization and Dimensionality Reduction Using Kernel Maps With a Reference Point.,2008,19,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn19.html#Suykens08,https://doi.org/10.1109/TNN.2008.2000807 +David Nodland,Neural Network-Based Optimal Adaptive Output Feedback Control of a Helicopter UAV.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn24.html#NodlandZJ13,https://doi.org/10.1109/TNNLS.2013.2251747 +Po-Lung Tien,A New Discrete-Time Multi-Constrained K-Winner-Take-All Recurrent Network and Its Application to Prioritized Scheduling.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn28.html#Tien17,https://doi.org/10.1109/TNNLS.2016.2600410 +Jouko Lampinen,Distortion tolerant pattern recognition based on self-organizing feature extraction.,1995,6,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn6.html#LampinenO95,https://doi.org/10.1109/72.377961 +Marcelo C. Medeiros,A hybrid linear-neural model for time series forecasting.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn11.html#MedeirosV00,https://doi.org/10.1109/72.883463 +Walter E. Lillo,Synthesis of Brain-State-in-a-Box (BSB) based associative memories.,1994,5,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn5.html#LilloMHZ94,https://doi.org/10.1109/72.317725 +Gregor Gregorcic,Local Model Network Identification With Gaussian Processes.,2007,18,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn18.html#GregorcicL07,https://doi.org/10.1109/TNN.2007.895825 +Honggui Han,A Direct Self-Constructing Neural Controller Design for a Class of Nonlinear Systems.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn26.html#HanZQF15,https://doi.org/10.1109/TNNLS.2015.2401395 +Peter Andras,Function Approximation Using Combined Unsupervised and Supervised Learning.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn25.html#Andras14,https://doi.org/10.1109/TNNLS.2013.2276044 +Rudy Setiono,Use of a quasi-Newton method in a feedforward neural network construction algorithm.,1995,6,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn6.html#SetionoH95,https://doi.org/10.1109/72.363426 +Jacques de Villiers,Backpropagation neural nets with one and two hidden layers.,1993,4,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn4.html#VilliersB93,https://doi.org/10.1109/72.182704 +Zhi Liu 0001,Adaptive Neural Control for a Class of Nonlinear Time-Varying Delay Systems With Unknown Hysteresis.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn25.html#LiuLZCC14,https://doi.org/10.1109/TNNLS.2014.2305717 +Elizabeth C. Behrman,On the Correction of Anomalous Phase Oscillation in Entanglement Witnesses Using Quantum Neural Networks.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn25.html#BehrmanBSB14,https://doi.org/10.1109/TNNLS.2013.2281938 +Yoshikazu Washizawa,Adaptive Subset Kernel Principal Component Analysis for Time-Varying Patterns.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn23.html#Washizawa12,https://doi.org/10.1109/TNNLS.2012.2214234 +Qinmin Yang,Robust Integral of Neural Network and Error Sign Control of MIMO Nonlinear Systems.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn26.html#YangJS15,https://doi.org/10.1109/TNNLS.2015.2470175 +Vikramjit Mitra,Lidar detection of underwater objects using a neuro-SVM-based architecture.,2006,17,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn17.html#MitraWB06,https://doi.org/10.1109/TNN.2006.873279 +Léa Laporte,Nonconvex Regularizations for Feature Selection in Ranking With Sparse SVM.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn25.html#LaporteFCDM14,https://doi.org/10.1109/TNNLS.2013.2286696 +Yili Xia,Quaternion-Valued Echo State Networks.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn26.html#XiaJM15,https://doi.org/10.1109/TNNLS.2014.2320715 +Patrik Floréen,Worst-case convergence * for Hopfield memories.,1991,2,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn2.html#Floreen91a,https://doi.org/10.1109/72.134291 +Yongming Li 0002,Adaptive Neural Networks Decentralized FTC Design for Nonstrict-Feedback Nonlinear Interconnected Large-Scale Systems Against Actuator Faults.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn28.html#LiT17,https://doi.org/10.1109/TNNLS.2016.2598580 +Oscar Fontenla-Romero,Adaptive pattern recognition in the analysis of cardiotocographic records.,2001,12,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn12.html#Fontenla-RomeroAG01,https://doi.org/10.1109/72.950146 +D.-L. Lee,Improvements of Complex-Valued Hopfield Associative Memory by Using Generalized Projection Rules.,2006,17,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn17.html#Lee06,https://doi.org/10.1109/TNN.2006.878786 +Yang Wang 0023,Unsupervised Metric Fusion Over Multiview Data by Graph Random Walk-Based Cross-View Diffusion.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn28.html#WangZWLZ17,https://doi.org/10.1109/TNNLS.2015.2498149 +Johan Bjurgert,On Adaptive Boosting for System Identification.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#BjurgertVR18,https://doi.org/10.1109/TNNLS.2017.2754319 +Konstantin Y. Volyanskyy,A Q-modification neuroadaptive control architecture for discrete-time systems.,2010,21,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn21.html#VolyanskyyH10,https://doi.org/10.1109/TNN.2010.2047869 +Shingo Murata,Learning to Perceive the World as Probabilistic or Deterministic via Interaction With Others: A Neuro-Robotics Experiment.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn28.html#MurataYAOST17,https://doi.org/10.1109/TNNLS.2015.2492140 +Xian-Ming Zhang,Global Asymptotic Stability for Delayed Neural Networks Using an Integral Inequality Based on Nonorthogonal Polynomials.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#ZhangLHHW18,https://doi.org/10.1109/TNNLS.2017.2750708 +Kate A. Smith,Neural techniques for combinatorial optimization with applications.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#SmithPK98,https://doi.org/10.1109/72.728380 +Khashayar Pakdaman,A note on convergence under dynamical thresholds with delays.,1998,9,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn9.html#PakdamanM98,https://doi.org/10.1109/72.655047 +Alexandros Iosifidis,View-Invariant Action Recognition Based on Artificial Neural Networks.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn23.html#IosifidisTP12,https://doi.org/10.1109/TNNLS.2011.2181865 +Christian Lehmann,A generic systolic array building block for neural networks with on-chip learning.,1993,4,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn4.html#LehmannVB93,https://doi.org/10.1109/72.217181 +Yongliang Yang,Hamiltonian-Driven Adaptive Dynamic Programming for Continuous Nonlinear Dynamical Systems.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn28.html#YangWY17,https://doi.org/10.1109/TNNLS.2017.2654324 +Xiaoming Liang,Enhancing Weak Signal Transmission Through a Feedforward Network.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn23.html#LiangZL12,https://doi.org/10.1109/TNNLS.2012.2204772 +Mu-Chun Su,A new model of self-organizing neural networks and its application in data projection.,2001,12,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn12.html#SuC01,https://doi.org/10.1109/72.896805 +Ding-Xin He,Multisynchronization of Coupled Heterogeneous Genetic Oscillator Networks via Partial Impulsive Control.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn29.html#HeLGHL18,https://doi.org/10.1109/TNNLS.2016.2619907 +Stephen B. Furber,Sparse Distributed Memory Using Rank-Order Neural Codes.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#FurberBBCMS07,https://doi.org/10.1109/TNN.2006.890804 +Wei Wu,Global Synchronization Criteria of Linearly Coupled Neural Network Systems With Time-Varying Coupling.,2008,19,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn19.html#WuC08,https://doi.org/10.1109/TNN.2007.908639 +Shih-Sian Cheng,Model-Based Clustering by Probabilistic Self-Organizing Maps.,2009,20,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn20.html#ChengFW09,https://doi.org/10.1109/TNN.2009.2013708 +Qiguang Miao,RBoost: Label Noise-Robust Boosting Algorithm Based on a Nonconvex Loss Function and the Numerically Stable Base Learners.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn27.html#MiaoCXGLS16,https://doi.org/10.1109/TNNLS.2015.2475750 +Simone G. O. Fiori,Fast fixed-point neural blind-deconvolution algorithm.,2004,15,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn15.html#Fiori04,https://doi.org/10.1109/TNN.2004.824258 +Guang-Bin Huang,A generalized growing and pruning RBF (GGAP-RBF) neural network for function approximation.,2005,16,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn16.html#HuangSS05,https://doi.org/10.1109/TNN.2004.836241 +Yong Xu,Generalized RLS approach to the training of neural networks.,2006,17,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn17.html#XuWL06,https://doi.org/10.1109/TNN.2005.860857 +Zhongsheng Hou,Data-Driven Model-Free Adaptive Control for a Class of MIMO Nonlinear Discrete-Time Systems.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#HouJ11,https://doi.org/10.1109/TNN.2011.2176141 +Su Lee Goh,Stochastic Gradient-Adaptive Complex-Valued Nonlinear Neural Adaptive Filters With a Gradient-Adaptive Step Size.,2007,18,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn18.html#GohM07,https://doi.org/10.1109/TNN.2007.895828 +Chenping Hou,Semisupervised Learning Using Negative Labels.,2011,22,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn22.html#HouNWZW11,https://doi.org/10.1109/TNN.2010.2099237 +Francesco Bellocchio,Hierarchical Approach for Multiscale Support Vector Regression.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn23.html#BellocchioFPB12,https://doi.org/10.1109/TNNLS.2012.2205018 +Xue-Bin Liang,Global exponential stability of neural networks with globally Lipschitz continuous activations and its application to linear variational inequality problem.,2001,12,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn12.html#LiangS01,https://doi.org/10.1109/72.914529 +Jari Häkkinen,Local routing algorithms based on Potts neural networks.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn11.html#HakkinenLPS00,https://doi.org/10.1109/72.857776 +John Seiffertt,Backpropagation and ordered derivatives in the time scales calculus.,2010,21,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn21.html#SeifferttW10,https://doi.org/10.1109/TNN.2010.2050332 +Kadim Tasdemir,Graph based representations of density distribution and distances for self-organizing maps.,2010,21,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn21.html#Tasdemir10,https://doi.org/10.1109/TNN.2010.2040200 +Li Zhang 0004,Hidden space support vector machines.,2004,15,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn15.html#ZhangZJ04,https://doi.org/10.1109/TNN.2004.831161 +Chunjie Zhang,Fine-Grained Image Classification via Low-Rank Sparse Coding With General and Class-Specific Codebooks.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn28.html#ZhangLLLHT17,https://doi.org/10.1109/TNNLS.2016.2545112 +Mauro Di Marco,Limit Set Dichotomy and Multistability for a Class of Cooperative Neural Networks With Delays.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn23.html#MarcoFGP12,https://doi.org/10.1109/TNNLS.2012.2205703 +Chia-Feng Juang,Hierarchical Singleton-Type Recurrent Neural Fuzzy Networks for Noisy Speech Recognition.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#JuangCL07,https://doi.org/10.1109/TNN.2007.891194 +Xiao-Hu Yu,On the local minima free condition of backpropagation learning.,1995,6,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn6.html#YuC95,https://doi.org/10.1109/72.410380 +Huilin Xiong,Learning the Conformal Transformation Kernel for Image Recognition.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn28.html#XiongYYSY17,https://doi.org/10.1109/TNNLS.2015.2504538 +Bahram Nabet,"Comments on ""Silicon models of lateral inhibition"" [with reply].",1995,6,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn6.html#NabetPDWM95,https://doi.org/10.1109/72.471351 +Xiaohua Zhang,Identification of Boolean Networks Using Premined Network Topology Information.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn28.html#ZhangHZ17,https://doi.org/10.1109/TNNLS.2016.2514841 +Yan-Jun Liu,A Unified Approach to Adaptive Neural Control for Nonlinear Discrete-Time Systems With Nonlinear Dead-Zone Input.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn27.html#LiuGTC16,https://doi.org/10.1109/TNNLS.2015.2471262 +Jian Wang 0010,Convergence of Cyclic and Almost-Cyclic Learning With Momentum for Feedforward Neural Networks.,2011,22,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn22.html#WangYW11,https://doi.org/10.1109/TNN.2011.2159992 +Jun Liu 0003,"Comments on ""Efficient and Robust Feature Extraction by Maximum Margin Criterion"".",2007,18,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn18.html#LiuCTZ07,https://doi.org/10.1109/TNN.2007.900813 +Boo-Ho Yang,Progressive learning and its application to robot impedance learning.,1996,7,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn7.html#YangA96,https://doi.org/10.1109/72.508937 +Qing Song 0001,Robust Adaptive Gradient-Descent Training Algorithm for Recurrent Neural Networks in Discrete Time Domain.,2008,19,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn19.html#SongWS08,https://doi.org/10.1109/TNN.2008.2001923 +Travis Dierks,Online Optimal Control of Affine Nonlinear Discrete-Time Systems With Unknown Internal Dynamics by Using Time-Based Policy Update.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn23.html#DierksJ12,https://doi.org/10.1109/TNNLS.2012.2196708 +Paul Watta,Recurrent neural nets as dynamical Boolean systems with application to associative memory.,1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#WattaWH97,https://doi.org/10.1109/72.641450 +Jianxin Wu,Linear Regression-Based Efficient SVM Learning for Large-Scale Classification.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn26.html#WuY15,https://doi.org/10.1109/TNNLS.2014.2382123 +Subhrajit Roy,Learning Spike Time Codes Through Morphological Learning With Binary Synapses.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn27.html#RoySHWB16,https://doi.org/10.1109/TNNLS.2015.2447011 +Yousen Xia,Neural network for solving extended linear programming problems.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#Xia97,https://doi.org/10.1109/72.572118 +Wangli He,Exponential synchronization of hybrid coupled networks with delayed coupling.,2010,21,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn21.html#HeC10,https://doi.org/10.1109/TNN.2009.2039803 +Koldo Basterretxea,An Experimental Study on Nonlinear Function Computation for Neural/Fuzzy Hardware Design.,2007,18,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn18.html#BasterretxeaTCB07,https://doi.org/10.1109/TNN.2006.884680 +Hanyong Shao,Delay-Dependent Stability for Recurrent Neural Networks With Time-Varying Delays.,2008,19,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn19.html#Shao08,https://doi.org/10.1109/TNN.2008.2001265 +Matthew S. Melton,The TInMANN VLSI chip.,1992,3,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn3.html#MeltonPRB92,https://doi.org/10.1109/72.129410 +Jayanta Basak,A connectionist model for category perception: theory and implementation.,1993,4,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn4.html#BasakMCM93,https://doi.org/10.1109/72.207613 +Shihui Ying,Manifold Preserving: An Intrinsic Approach for Semisupervised Distance Metric Learning.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#YingWSPPQ18,https://doi.org/10.1109/TNNLS.2017.2691005 +Cristiano Cervellera,Local Linear Regression for Function Learning: An Analysis Based on Sample Discrepancy.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn25.html#CervelleraM14,https://doi.org/10.1109/TNNLS.2014.2305193 +Charles C. Hsu,Chaotic neuron models and their VLSI circuit implementations.,1996,7,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn7.html#HsuGZS96,https://doi.org/10.1109/72.548163 +Xiaohong Chen,Semiparametric ARX neural-network models with an application to forecasting inflation.,2001,12,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn12.html#ChenRS01,https://doi.org/10.1109/72.935081 +Mahnaz Arvaneh,Optimizing Spatial Filters by Minimizing Within-Class Dissimilarities in Electroencephalogram-Based Brain-Computer Interface.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn24.html#ArvanehGAQ13,https://doi.org/10.1109/TNNLS.2013.2239310 +Shuo Zhang 0002,LMI Conditions for Global Stability of Fractional-Order Neural Networks.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn28.html#ZhangYY17,https://doi.org/10.1109/TNNLS.2016.2574842 +Raghvendra Mall,Very Sparse LSSVM Reductions for Large-Scale Data.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn26.html#MallS15,https://doi.org/10.1109/TNNLS.2014.2333879 +Xin Xu 0001,Online Learning Control Using Adaptive Critic Designs With Sparse Kernel Machines.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn24.html#XuHLH13,https://doi.org/10.1109/TNNLS.2012.2236354 +Min Chee Choy,Neural Networks for Continuous Online Learning and Control.,2006,17,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn17.html#ChoySC06,https://doi.org/10.1109/TNN.2006.881710 +Chih-Jen Lin,"Errata to ""A comparison of methods for multiclass support vector machines"".",2002,13,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn13.html#Lin02b,https://doi.org/10.1109/TNN.2002.1021904 +Soheil Shams,Implementing regularly structured neural networks on the DREAM machine.,1995,6,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn6.html#ShamsG95,https://doi.org/10.1109/72.363476 +Dalong Li,Blind Image Deconvolution Through Support Vector Regression.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#LiMS07,https://doi.org/10.1109/TNN.2007.891622 +Jussi Pakkanen,The evolving tree-analysis and applications.,2006,17,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn17.html#PakkanenIO06,https://doi.org/10.1109/TNN.2006.873294 +Seung-Mook Baek,Hessian matrix estimation in hybrid systems based on an embedded FFNN.,2010,21,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn21.html#BaekP10,https://doi.org/10.1109/TNN.2010.2042728 +João P. Ferreira,SVR Versus Neural-Fuzzy Network Controllers for the Sagittal Balance of a Biped Robot.,2009,20,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn20.html#FerreiraCC09,https://doi.org/10.1109/TNN.2009.2032183 +Grigorios Skolidis,Bayesian Multitask Classification With Gaussian Process Priors.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#SkolidisS11,https://doi.org/10.1109/TNN.2011.2168568 +Chih-Min Lin,Adaptive filter design using recurrent cerebellar model articulation controller.,2010,21,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn21.html#LinCY10,https://doi.org/10.1109/TNN.2010.2050700 +Xiaoyan Mu,A Weighted Voting Model of Associative Memory.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#MuWH07,https://doi.org/10.1109/TNN.2007.891196 +Rainer Stiefelhagen,Modeling focus of attention for meeting indexing based on multiple cues.,2002,13,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn13.html#StiefelhagenYW02,https://doi.org/10.1109/TNN.2002.1021893 +Kazuki Nakada,An analog CMOS central pattern generator for interlimb coordination in quadruped locomotion.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#NakadaAA03,https://doi.org/10.1109/TNN.2003.816381 +Sang-Hoon Oh,A new error function at hidden layers for past training of multilayer perceptrons.,1999,10,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn10.html#OhL99,https://doi.org/10.1109/72.774272 +Cesare Alippi,Just-in-Time Adaptive Classifiers - Part I: Detecting Nonstationary Changes.,2008,19,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn19.html#AlippiR08,https://doi.org/10.1109/TNN.2008.2000082 +Long Zhang 0006,Two-Stage Orthogonal Least Squares Methods for Neural Network Construction.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn26.html#ZhangLBI15,https://doi.org/10.1109/TNNLS.2014.2346399 +Suwat Kuntanapreeda,Authors' Reply.,1997,8,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn8.html#KuntanapreedaF97,https://doi.org/10.1109/TNN.1997.623226 +Don R. Hush,Efficient algorithms for function approximation with piecewise linear sigmoidal networks.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#HushH98,https://doi.org/10.1109/72.728357 +Lei Zhang 0005,Multiperiodicity and Attractivity of Delayed Recurrent Neural Networks With Unsaturating Piecewise Linear Transfer Functions.,2008,19,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn19.html#ZhangYY08,https://doi.org/10.1109/TNN.2007.904015 +Erol Gelenbe,Function approximation with spiked random networks.,1999,10,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn10.html#GelenbeML99,https://doi.org/10.1109/72.737488 +Bin Zhao,Block-Quantized Support Vector Ordinal Regression.,2009,20,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn20.html#ZhaoWZ09,https://doi.org/10.1109/TNN.2009.2017533 +Ran He,Two-Stage Nonnegative Sparse Representation for Large-Scale Face Recognition.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn24.html#HeZHK13,https://doi.org/10.1109/TNNLS.2012.2226471 +David R. Lovell,An evaluation of the neocognitron.,1997,8,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn8.html#LovellDT97,https://doi.org/10.1109/72.623211 +Randa Herzallah,A Bayesian Perspective on Stochastic Neurocontrol.,2008,19,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn19.html#HerzallahL08,https://doi.org/10.1109/TNN.2007.915107 +Hiroshi Narazaki,A connectionist approach for rule-based inference using an improved relaxation method.,1992,3,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn3.html#NarazakiR92,https://doi.org/10.1109/72.159062 +Qingshan Liu 0002,A novel recurrent neural network with one neuron and finite-time convergence for k-winners-take-all operation.,2010,21,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn21.html#LiuDC10,https://doi.org/10.1109/TNN.2010.2050781 +Hong Chen 0004,Semisupervised Multicategory Classification With Imperfect Model.,2009,20,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn20.html#ChenL09,https://doi.org/10.1109/TNN.2009.2027320 +Henry Leung,Prediction of noisy chaotic time series using an optimal radial basis function neural network.,2001,12,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn12.html#LeungLW01,https://doi.org/10.1109/72.950144 +Ruizhuo Song,Multiple Actor-Critic Structures for Continuous-Time Optimal Control Using Input-Output Data.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn26.html#SongLWZJL15,https://doi.org/10.1109/TNNLS.2015.2399020 +Christian Endisch,"Comments on ""Backpropagation Algorithms for a Broad Class of Dynamic Networks"".",2009,20,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn20.html#EndischSHS09,https://doi.org/10.1109/TNN.2009.2013243 +Marcos Eduardo Valle,Complex-Valued Recurrent Correlation Neural Networks.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn25.html#Valle14a,https://doi.org/10.1109/TNNLS.2014.2341013 +Xi Peng 0001,A Unified Framework for Representation-Based Subspace Clustering of Out-of-Sample and Large-Scale Data.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn27.html#PengTZYX16,https://doi.org/10.1109/TNNLS.2015.2490080 +Zoi-Heleni Michalopoulou,Performance evaluation of multilayer perceptrons in signal detection and classification.,1995,6,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn6.html#MichalopoulouNA95,https://doi.org/10.1109/72.363473 +Luis A. Camuñas-Mesa,Event-Driven Stereo Visual Tracking Algorithm to Solve Object Occlusion.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#Camunas-MesaSIB18,https://doi.org/10.1109/TNNLS.2017.2759326 +Carlos Alzate,Kernel Component Analysis Using an Epsilon-Insensitive Robust Loss Function.,2008,19,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn19.html#AlzateS08,https://doi.org/10.1109/TNN.2008.2000443 +Min Han,A Dynamic Feedforward Neural Network Based on Gaussian Particle Swarm Optimization and its Application for Predictive Control.,2011,22,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn22.html#HanFW11,https://doi.org/10.1109/TNN.2011.2162341 +John J. Wade,SWAT: A Spiking Neural Network Training Algorithm for Classification Problems.,2010,21,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn21.html#WadeMSS10,https://doi.org/10.1109/TNN.2010.2074212 +Roshan Gopalakrishnan,On the Non-STDP Behavior and Its Remedy in a Floating-Gate Synapse.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn26.html#GopalakrishnanB15,https://doi.org/10.1109/TNNLS.2015.2388633 +Bing Chen 0001,Neural Observer and Adaptive Neural Control Design for a Class of Nonlinear Systems.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#ChenZLL18,https://doi.org/10.1109/TNNLS.2017.2760903 +Artemis K. Kostarigka,Adaptive Neural Network Tracking Control With Disturbance Attenuation for Multiple-Input Nonlinear Systems.,2009,20,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn20.html#KostarigkaR09,https://doi.org/10.1109/TNN.2008.2005598 +Chih-Chung Chang,The analysis of decomposition methods for support vector machines.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn11.html#ChangHL00,https://doi.org/10.1109/72.857780 +Berthold Ruf,Self-organization of spiking neurons using action potential timing.,1998,9,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn9.html#RufS98,https://doi.org/10.1109/72.668899 +Chuangxia Huang,Convergence Dynamics of Stochastic Cohen-Grossberg Neural Networks With Unbounded Distributed Delays.,2011,22,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn22.html#HuangC11,https://doi.org/10.1109/TNN.2011.2109012 +Kyunbyoung Ko,RBF multiuser detector with channel estimation capability in a synchronous MC-CDMA system.,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#KoCKH01,https://doi.org/10.1109/72.963794 +Yongduan Song,Smooth Neuroadaptive PI Tracking Control of Nonlinear Systems With Unknown and Nonsmooth Actuation Characteristics.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn28.html#SongGH17,https://doi.org/10.1109/TNNLS.2016.2575078 +Xuejing Li,Lower Bounds on the Proportion of Leaders Needed for Expected Consensus of 3-D Flocks.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn28.html#LiWLD17,https://doi.org/10.1109/TNNLS.2016.2598576 +Donald M. Hummels,Adaptive detection of small sinusoidal signals in non-Gaussian noise using an RBF neural network.,1995,6,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn6.html#HummelsAM95,https://doi.org/10.1109/72.363435 +Zizhu Fan,Modified Principal Component Analysis: An Integration of Multiple Similarity Subspace Models.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn25.html#FanXZYTLZ14,https://doi.org/10.1109/TNNLS.2013.2294492 +Lei Zhang 0038,Evolutionary Cost-Sensitive Extreme Learning Machine.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn28.html#ZhangZ17,https://doi.org/10.1109/TNNLS.2016.2607757 +Shing Chiang Tan,Evolutionary Fuzzy ARTMAP Neural Networks for Classification of Semiconductor Defects.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn26.html#TanWIK15,https://doi.org/10.1109/TNNLS.2014.2329097 +Wen-Liang Hwang,Constrained Null Space Component Analysis for Semiblind Source Separation Problem.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn29.html#HwangLH18,https://doi.org/10.1109/TNNLS.2016.2628400 +Cheng-Jian Lin,"Corrections to ""Reinforcement Learning for an ART-Based Fuzzy Adaptive Learning Control Network"".",1996,7,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn7.html#LinL96a,https://doi.org/10.1109/TNN.1996.536327 +Hanwen Ning,Identification of Nonlinear Spatiotemporal Dynamical Systems With Nonuniform Observations Using Reproducing-Kernel-Based Integral Least Square Regulation.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn27.html#NingQJ16,https://doi.org/10.1109/TNNLS.2015.2473686 +Girish Chowdhary,Bayesian Nonparametric Adaptive Control Using Gaussian Processes.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn26.html#ChowdharyKHV15,https://doi.org/10.1109/TNNLS.2014.2319052 +Bilge Karaçali,Fast minimization of structural risk by nearest neighbor rule.,2003,14,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn14.html#KaracaliK03,https://doi.org/10.1109/TNN.2002.804315 +Giduthuri Sateesh Babu,Sequential Projection-Based Metacognitive Learning in a Radial Basis Function Network for Classification Problems.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn24.html#BabuS13,https://doi.org/10.1109/TNNLS.2012.2226748 +Zhanshan Wang,Stability of Recurrent Neural Networks With Time-Varying Delay via Flexible Terminal Method.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn28.html#WangDSZ17,https://doi.org/10.1109/TNNLS.2016.2578309 +James Tin-Yau Kwok,Objective functions for training new hidden units in constructive neural networks.,1997,8,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn8.html#KwokY97a,https://doi.org/10.1109/72.623214 +Huai-Ning Wu,Finite-Horizon Approximate Optimal Guaranteed Cost Control of Uncertain Nonlinear Systems With Application to Mars Entry Guidance.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn26.html#WuL015,https://doi.org/10.1109/TNNLS.2014.2346233 +Zhanshan Wang,Exponential Stability and Stabilization of Delayed Memristive Neural Networks Based on Quadratic Convex Combination Method.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn27.html#WangDHZ16,https://doi.org/10.1109/TNNLS.2015.2485259 +István Szatmári,Morphology and autowave metric on CNN applied to bubble-debris classification.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn11.html#SzatmariSRKRC00,https://doi.org/10.1109/72.883456 +Zhichen Li,Improved Stability Analysis for Delayed Neural Networks.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#LiBHYM18,https://doi.org/10.1109/TNNLS.2017.2743262 +Jerzy B. Lont,Analog CMOS implementation of a multilayer perceptron with nonlinear synapses.,1992,3,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn3.html#LontG92,https://doi.org/10.1109/72.129418 +Suan W. Tsay,VLSI implementation of ART1 memories.,1991,2,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn2.html#TsayN91,https://doi.org/10.1109/72.80330 +James W. Watterson,An optimum multilayer perceptron neural receiver for signal detection.,1990,1,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn1.html#Watterson90,https://doi.org/10.1109/72.80267 +Jekanthan Thangavelautham,Tackling Learning Intractability Through Topological Organization and Regulation of Cortical Networks.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn23.html#ThangavelauthamD12,https://doi.org/10.1109/TNNLS.2011.2178311 +Ping Sun,Sparse approximation through boosting for learning large scale kernel machines.,2010,21,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn21.html#SunY10,https://doi.org/10.1109/TNN.2010.2044244 +Felipe A. Tobar,Multikernel Least Mean Square Algorithm.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn25.html#TobarKM14,https://doi.org/10.1109/TNNLS.2013.2272594 +Edward M. Corwin,An iterative method for training multilayer networks with threshold functions.,1994,5,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn5.html#CorwinLO94,https://doi.org/10.1109/72.286926 +Xiao Liu,Learning to Track Multiple Targets.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn26.html#LiuTSZBC15,https://doi.org/10.1109/TNNLS.2014.2333751 +Kai Zhang 0001,Simplifying mixture models through function approximation.,2010,21,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn21.html#ZhangK10,https://doi.org/10.1109/TNN.2010.2040835 +Yu-Ting Liu,Brain Dynamics in Predicting Driving Fatigue Using a Recurrent Self-Evolving Fuzzy Neural Network.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn27.html#LiuLWCL16,https://doi.org/10.1109/TNNLS.2015.2496330 +Guido Herrmann,Performance-Oriented Antiwindup for a Class of Linear Control Systems With Augmented Neural Network Controller.,2007,18,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn18.html#HerrmannTP07,https://doi.org/10.1109/TNN.2006.885037 +Yunlong Yu,Transductive Zero-Shot Learning With Adaptive Structural Embedding.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#YuJGP18,https://doi.org/10.1109/TNNLS.2017.2753852 +Huaguang Zhang,Novel weighting-delay-based stability criteria for recurrent neural networks with time-varying delay.,2010,21,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn21.html#ZhangLHW10,https://doi.org/10.1109/TNN.2009.2034742 +Nian Liu,Learning to Predict Eye Fixations via Multiresolution Convolutional Neural Networks.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn29.html#LiuHLL18,https://doi.org/10.1109/TNNLS.2016.2628878 +Juan Huo,Adaptive Visual and Auditory Map Alignment in Barn Owl Superior Colliculus and Its Neuromorphic Implementation.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn23.html#HuoMW12,https://doi.org/10.1109/TNNLS.2012.2204771 +Sushmita Mitra,Data mining in soft computing framework: a survey.,2002,13,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn13.html#MitraPM02,https://doi.org/10.1109/72.977258 +Van Luong Le,Reduced-Size Kernel Models for Nonlinear Hybrid System Identification.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#LeBL11,https://doi.org/10.1109/TNN.2011.2171361 +Chung-Ming Kuan,A recurrent Newton algorithm and its convergence properties.,1995,6,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn6.html#Kuan95,https://doi.org/10.1109/72.377987 +Wenjun Xiong,Consensus Analysis of Multiagent Networks via Aggregated and Pinning Approaches.,2011,22,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn22.html#XiongHW11,https://doi.org/10.1109/TNN.2011.2157938 +Masaaki Tsujitani,Analysis of Survival Data Having Time-Dependent Covariates.,2009,20,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn20.html#TsujitaniS09,https://doi.org/10.1109/TNN.2008.2008328 +Takashi Matsumoto,Spatial versus temporal stability issues in image processing neuro chips.,1992,3,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn3.html#MatsumotoKT92,https://doi.org/10.1109/72.143370 +Zhihui Lai,Multilinear Sparse Principal Component Analysis.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn25.html#LaiXCYZ14,https://doi.org/10.1109/TNNLS.2013.2297381 +Frank M. Candocia,Super-resolution of images based on local correlations.,1999,10,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn10.html#CandociaP99,https://doi.org/10.1109/72.750566 +Gerald E. Peterson,Using Taguchi's method of experimental design to control errors in layered perceptrons.,1995,6,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn6.html#PetersonCAB95,https://doi.org/10.1109/72.392257 +Eid Emary,Experienced Gray Wolf Optimization Through Reinforcement Learning and Neural Networks.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn29.html#EmaryZG18,https://doi.org/10.1109/TNNLS.2016.2634548 +Wenrui Hu,The Twist Tensor Nuclear Norm for Video Completion.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn28.html#HuTZXY17,https://doi.org/10.1109/TNNLS.2016.2611525 +Bahare Kiumarsi,Optimal and Autonomous Control Using Reinforcement Learning: A Survey.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#KiumarsiVML18,https://doi.org/10.1109/TNNLS.2017.2773458 +Haris E. Psillakis,Sampled-Data Adaptive NN Tracking Control ofUncertainNonlinear Systems.,2009,20,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn20.html#Psillakis09,https://doi.org/10.1109/TNN.2008.2006981 +Nicola Guglielmi,Highly constrained neural networks for industrial quality control.,1996,7,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn7.html#GuglielmiGB96,https://doi.org/10.1109/72.478406 +O. Adetona,A new method for the control of discrete nonlinear dynamic systems using neural networks.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn11.html#AdetonaGK00,https://doi.org/10.1109/72.822514 +Maurice W. Benson,Asynchronous self-organizing maps.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn11.html#BensonH00,https://doi.org/10.1109/72.883433 +Antony Browne,Automatic Relevance Determination for Identifying Thalamic Regions Implicated in Schizophrenia.,2008,19,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn19.html#BrowneJVFD08,https://doi.org/10.1109/TNN.2008.2000203 +Abraham Schultz,Collective recall via the brain-state-in-a-box network.,1993,4,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn4.html#Schultz93,https://doi.org/10.1109/72.238313 +Yoshua Bengio,Input-output HMMs for sequence processing.,1996,7,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn7.html#BengioF96,https://doi.org/10.1109/72.536317 +Georg Thimm,High-order and multilayer perceptron initialization.,1997,8,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn8.html#ThimmF97,https://doi.org/10.1109/72.557673 +Ning Chen,Learning Harmonium Models With Infinite Latent Features.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn25.html#ChenZSZ14,https://doi.org/10.1109/TNNLS.2013.2276398 +Yanwei Pang,Learning Regularized LDA by Clustering.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn25.html#PangWY14,https://doi.org/10.1109/TNNLS.2014.2306844 +Gregory Ditzler,Extensions to Online Feature Selection Using Bagging and Boosting.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#DitzlerLRRP18,https://doi.org/10.1109/TNNLS.2017.2746107 +Christopher Sentelle,A Simple Method for Solving the SVM Regularization Path for Semidefinite Kernels.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn27.html#SentelleAG16,https://doi.org/10.1109/TNNLS.2015.2427333 +Donald F. Specht,Probabilistic neural networks and the polynomial Adaline as complementary techniques for classification.,1990,1,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn1.html#Specht90,https://doi.org/10.1109/72.80210 +Xiu-Shen Wei,Scalable Algorithms for Multi-Instance Learning.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn28.html#WeiWZ17,https://doi.org/10.1109/TNNLS.2016.2519102 +Philip J. Vance,Bioinspired Approach to Modeling Retinal Ganglion Cells Using System Identification Techniques.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#VanceDKCMGL18,https://doi.org/10.1109/TNNLS.2017.2690139 +Jonghan Shin,Dynamic range and sensitivity adaptation in a silicon spiking neuron.,1999,10,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn10.html#ShinK99,https://doi.org/10.1109/72.788662 +Jean Chamberlain Chedjou,A Universal Concept Based on Cellular Neural Networks for Ultrafast and Flexible Solving of Differential Equations.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn26.html#ChedjouK15,https://doi.org/10.1109/TNNLS.2014.2323218 +Takashi Matsubara,Asynchronous Cellular Automaton-Based Neuron: Theoretical Analysis and On-FPGA Learning.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn24.html#MatsubaraT13,https://doi.org/10.1109/TNNLS.2012.2230643 +Kyriakos G. Vamvoudakis,Asymptotically Stable Adaptive-Optimal Control Algorithm With Saturating Actuators and Relaxed Persistence of Excitation.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn27.html#VamvoudakisMH16,https://doi.org/10.1109/TNNLS.2015.2487972 +Atsushi Hiramatsu,ATM communications network control by neural networks.,1990,1,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn1.html#Hiramatsu90,https://doi.org/10.1109/72.80211 +Yoan Shin,Ridge polynomial networks.,1995,6,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn6.html#ShinG95,https://doi.org/10.1109/72.377967 +Sung Jin Yoo,Distributed Consensus Tracking for Multiple Uncertain Nonlinear Strict-Feedback Systems Under a Directed Graph.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn24.html#Yoo13,https://doi.org/10.1109/TNNLS.2013.2238554 +Jaroslaw Piersa,Theoretical Model for Mesoscopic-Level Scale-Free Self-Organization of Functional Brain Networks.,2010,21,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn21.html#PiersaPS10,https://doi.org/10.1109/TNN.2010.2066989 +Khaled Masmoudi,Frames for Exact Inversion of the Rank Order Coder.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn23.html#MasmoudiAK12,https://doi.org/10.1109/TNNLS.2011.2179557 +Zhi Xiao,Robust and Efficient Boosting Method Using the Conditional Risk.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#XiaoLZD18,https://doi.org/10.1109/TNNLS.2017.2711028 +Jacek M. Zurada,Sufficient condition for convergence of a relaxation algorithm in actual single-layer neural networks.,1990,1,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn1.html#ZuradaS90,https://doi.org/10.1109/72.80268 +Weirong Liu 0001,Distributed Economic Dispatch in Microgrids Based on Cooperative Reinforcement Learning.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#LiuZLPH18,https://doi.org/10.1109/TNNLS.2018.2801880 +Athanasios Papaioannou,Principal Component Analysis With Complex Kernel: The Widely Linear Model.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn25.html#PapaioannouZ14,https://doi.org/10.1109/TNNLS.2013.2285783 +Fan Yang,Implementation of an RBF neural network on embedded systems: real-time face tracking and identity verification.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#YangP03,https://doi.org/10.1109/TNN.2003.816035 +Ashfaqur Rahman,Novel Layered Clustering-Based Approach for Generating Ensemble of Classifiers.,2011,22,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn22.html#RahmanV11,https://doi.org/10.1109/TNN.2011.2118765 +Wenming Zheng,Foley-Sammon optimal discriminant vectors using kernel approach.,2005,16,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn16.html#ZhengZZ05,https://doi.org/10.1109/TNN.2004.836239 +Jia Liu,A Deep Convolutional Coupling Network for Change Detection Based on Heterogeneous Optical and Radar Images.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn29.html#LiuGQZ18,https://doi.org/10.1109/TNNLS.2016.2636227 +Mingqing Hu,Building Sparse Multiple-Kernel SVM Classifiers.,2009,20,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn20.html#HuCK09,https://doi.org/10.1109/TNN.2009.2014229 +Guodong Zhang,New Algebraic Criteria for Synchronization Stability of Chaotic Memristive Neural Networks With Time-Varying Delays.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn24.html#ZhangS13,https://doi.org/10.1109/TNNLS.2013.2264106 +Russell Reed,Pruning algorithms-a survey.,1993,4,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn4.html#Reed93,https://doi.org/10.1109/72.248452 +Mingkui Tan,Minimax Sparse Logistic Regression for Very High-Dimensional Feature Selection.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn24.html#TanTW13,https://doi.org/10.1109/TNNLS.2013.2263427 +Zhengguang Wu,Passivity Analysis for Discrete-Time Stochastic Markovian Jump Neural Networks With Mixed Time Delays.,2011,22,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn22.html#WuSSC11,https://doi.org/10.1109/TNN.2011.2163203 +Huanhuan Chen,Efficient Probabilistic Classification Vector Machine With Incremental Basis Function Selection.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn25.html#ChenTY14,https://doi.org/10.1109/TNNLS.2013.2275077 +Alexander G. Parlos,Fuzzy logic and neural networks: clips from the field.,1994,5,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn5.html#Parlos94,https://doi.org/10.1109/72.298237 +Jing Na,Adaptive Control for Nonlinear Pure-Feedback Systems With High-Order Sliding Mode Observer.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn24.html#NaRZ13,https://doi.org/10.1109/TNNLS.2012.2225845 +Luca Bravi,An Optimization-Based Method for Feature Ranking in Nonlinear Regression Problems.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn28.html#BraviPS17,https://doi.org/10.1109/TNNLS.2015.2504957 +Daniel S. Yeung,Localized Generalization Error Model and Its Application to Architecture Selection for Radial Basis Function Neural Network.,2007,18,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn18.html#YeungNWTW07,https://doi.org/10.1109/TNN.2007.894058 +Franck Dufrenois,Formulating Robust Linear Regression Estimation as a One-Class LDA Criterion: Discriminative Hat Matrix.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn24.html#DufrenoisN13,https://doi.org/10.1109/TNNLS.2012.2228229 +Simone G. O. Fiori,Extended Hamiltonian Learning on Riemannian Manifolds: Numerical Aspects.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn23.html#Fiori12,https://doi.org/10.1109/TNNLS.2011.2178561 +Yi Zheng,The effect of concave and convex weight adjustments on self-organizing maps.,1996,7,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn7.html#ZhengG96,https://doi.org/10.1109/72.478394 +Keun Chang Kwak,Face Recognition Using an Enhanced Independent Component Analysis Approach.,2007,18,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn18.html#KwakP07,https://doi.org/10.1109/TNN.2006.885436 +Qing Tao,Improving Sparsity and Scalability in Regularized Nonconvex Truncated-Loss Learning Problems.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#TaoWC18,https://doi.org/10.1109/TNNLS.2017.2705429 +Zhao Zhang 0001,Robust Adaptive Embedded Label Propagation With Weight Learning for Inductive Classification.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#ZhangLJQZY18,https://doi.org/10.1109/TNNLS.2017.2727526 +Javier Fernández de Cañete,An input-output based robust stabilization criterion for neural-network control of nonlinear systems.,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#CaneteBGG01,https://doi.org/10.1109/72.963785 +Roy Batruni,A multilayer neural network with piecewise-linear structure and back-propagation learning.,1991,2,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn2.html#Batruni91,https://doi.org/10.1109/72.97915 +Yongqiao Wang,Robust Novelty Detection via Worst Case CVaR Minimization.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn26.html#WangDW15,https://doi.org/10.1109/TNNLS.2014.2378270 +Jan Chorowski,Learning Understandable Neural Networks With Nonnegative Weight Constraints.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn26.html#ChorowskiZ15,https://doi.org/10.1109/TNNLS.2014.2310059 +Xiaobing Nie,Multistability and Instability of Neural Networks With Discontinuous Nonmonotonic Piecewise Linear Activation Functions.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn26.html#NieZ15,https://doi.org/10.1109/TNNLS.2015.2458978 +Thomas K. Paul,Study of the Convergence Behavior of the Complex Kernel Least Mean Square Algorithm.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn24.html#PaulO13,https://doi.org/10.1109/TNNLS.2013.2256367 +Lijun Zhang,Controllability and Observability of Boolean Control Networks With Time-Variant Delays in States.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn24.html#ZhangZ13,https://doi.org/10.1109/TNNLS.2013.2246187 +Shuang Li 0008,Prediction Reweighting for Domain Adaptation.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn28.html#LiSH17,https://doi.org/10.1109/TNNLS.2016.2538282 +Junping Zhang,Quantitative Analysis of Nonlinear Embedding.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#ZhangWHZ11,https://doi.org/10.1109/TNN.2011.2171991 +Phillip D. Stroud,Learning and adaptation in an airborne laser fire controller.,1997,8,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn8.html#Stroud97,https://doi.org/10.1109/72.623210 +Andrew Chi-Sing Leung,On the selection of weight decay parameter for faulty networks.,2010,21,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn21.html#LeungWS10,https://doi.org/10.1109/TNN.2010.2049580 +Bogdan Gabrys,General fuzzy min-max neural network for clustering and classification.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn11.html#GabrysB00,https://doi.org/10.1109/72.846747 +Yuyao He,Chaotic simulated annealing with decaying chaotic noise.,2002,13,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn13.html#He02,https://doi.org/10.1109/TNN.2002.804314 +Miguel S. B. Almeida,Source Separation and Clustering of Phase-Locked Subspaces.,2011,22,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn22.html#AlmeidaSBV11,https://doi.org/10.1109/TNN.2011.2161674 +Sheng Li 0001,Self-Taught Low-Rank Coding for Visual Learning.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn29.html#LiLF18,https://doi.org/10.1109/TNNLS.2016.2633275 +Adnan Kavak,Using adaline neural network for performance improvement of smart antennas in TDD wireless communications.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#KavakYE05,https://doi.org/10.1109/TNN.2005.857947 +Yuning Yang,Robust Low-Rank Tensor Recovery With Regularized Redescending M-Estimator.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn27.html#YangFS16,https://doi.org/10.1109/TNNLS.2015.2465178 +Chengyu Cao,Novel L1 Neural Network Adaptive Control Architecture With Guaranteed Transient Performance.,2007,18,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn18.html#CaoH07,https://doi.org/10.1109/TNN.2007.899197 +Zhenwei Shi,Blind Source Extraction Using Generalized Autocorrelations.,2007,18,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn18.html#ShiZ07,https://doi.org/10.1109/TNN.2007.895823 +Kaan Gokcesu,Online Density Estimation of Nonstationary Sources Using Exponential Family of Distributions.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#GokcesuK18,https://doi.org/10.1109/TNNLS.2017.2740003 +Xue-Bin Liang,A complete proof of global exponential convergence of a neural network for quadratic optimization with bound constraints.,2001,12,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn12.html#Liang01,https://doi.org/10.1109/72.925567 +Nicolaos B. Karayiannis,Reformulated radial basis neural networks trained by gradient descent.,1999,10,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn10.html#Karayiannis99,https://doi.org/10.1109/72.761725 +R. P. Jagadeesh Chandra Bose,Dealing With Concept Drifts in Process Mining.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn25.html#BoseAZP14,https://doi.org/10.1109/TNNLS.2013.2278313 +Marco Baglietto,Distributed-information neural control: the case of dynamic routing in traffic networks.,2001,12,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn12.html#BagliettoPZ01,https://doi.org/10.1109/72.925553 +Christian Eitzinger,A new approach to perceptron training.,2003,14,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn14.html#EitzingerP03,https://doi.org/10.1109/TNN.2002.806631 +Tzi-Dar Chiueh,Recurrent correlation associative memories.,1991,2,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn2.html#ChiuehG91,https://doi.org/10.1109/72.80338 +Sung Jin Yoo,Connectivity-Preserving Consensus Tracking of Uncertain Nonlinear Strict-Feedback Multiagent Systems: An Error Transformation Approach.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#Yoo18,https://doi.org/10.1109/TNNLS.2017.2764495 +James Tin-Yau Kwok,Constructive algorithms for structure learning in feedforward neural networks for regression problems.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#KwokY97,https://doi.org/10.1109/72.572102 +James T. Kwok,A Class of Single-Class Minimax Probability Machines for Novelty Detection.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#KwokTZ07,https://doi.org/10.1109/TNN.2007.891191 +Haiqin Yang,Efficient Sparse Generalized Multiple Kernel Learning.,2011,22,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn22.html#YangXYKL11,https://doi.org/10.1109/TNN.2010.2103571 +Lan-Da Van,Energy-Efficient FastICA Implementation for Biomedical Signal Separation.,2011,22,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn22.html#VanWC11,https://doi.org/10.1109/TNN.2011.2166979 +Kazuo Tanaka,An approach to stability criteria of neural-network control systems.,1996,7,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn7.html#Tanaka96,https://doi.org/10.1109/72.501721 +Qing Sun,Implementation Study of an Analog Spiking Neural Network for Assisting Cardiac Delay Prediction in a Cardiac Resynchronization Therapy Device.,2011,22,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn22.html#SunSMHD11,https://doi.org/10.1109/TNN.2011.2125986 +David Braendler,Deterministic bit-stream digital neurons.,2002,13,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn13.html#BraendlerHO02,https://doi.org/10.1109/TNN.2002.804284 +Elisabetta Chicca,A VLSI recurrent network of integrate-and-fire neurons connected by plastic synapses with long-term memory.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#ChiccaBDDSCFG03,https://doi.org/10.1109/TNN.2003.816367 +Jianqi Wang,A temporally adaptive classifier for multispectral imagery.,2004,15,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn15.html#WangAR04,https://doi.org/10.1109/TNN.2003.820622 +Anthony J. Robinson,An application of recurrent nets to phone probability estimation.,1994,5,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn5.html#Robinson94,https://doi.org/10.1109/72.279192 +Man-Wai Mak,Estimation of elliptical basis function parameters by the EM algorithm with application to speaker verification.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn11.html#MakK00,https://doi.org/10.1109/72.857775 +Nojun Kwak,Input feature selection for classification problems.,2002,13,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn13.html#KwakC02,https://doi.org/10.1109/72.977291 +Dongbing Gu,Distributed EM Algorithm for Gaussian Mixtures in Sensor Networks.,2008,19,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn19.html#Gu08,https://doi.org/10.1109/TNN.2008.915110 +James M. Keller,Evidence aggregation networks for fuzzy logic inference.,1992,3,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn3.html#KellerKR92,https://doi.org/10.1109/72.159064 +Ke Gu,Learning a No-Reference Quality Assessment Model of Enhanced Images With Big Data.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#GuTQL18,https://doi.org/10.1109/TNNLS.2017.2649101 +Khurram Waheed,Blind information-theoretic multiuser detection algorithms for DS-CDMA and WCDMA downlink systems.,2005,16,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn16.html#WaheedS05,https://doi.org/10.1109/TNN.2005.849848 +Ning Jin,Wavelet Basis Function Neural Networks for Sequential Learning.,2008,19,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn19.html#JinL08,https://doi.org/10.1109/TNN.2007.911749 +K. Gopalsamy,Convergence under dynamical thresholds with delays.,1997,8,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn8.html#GopalsamyL97,https://doi.org/10.1109/72.557672 +Krzysztof J. Cios,Data Mining Methods for Knowledge Discovery.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#CiosPS98,https://doi.org/10.1109/TNN.1998.728406 +P. S. Sastry,Memory neuron networks for identification and control of dynamical systems.,1994,5,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn5.html#SastrySU94,https://doi.org/10.1109/72.279193 +Sridhar Seshagiri,Output feedback control of nonlinear systems using RBF neural networks.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn11.html#SeshagiriK00,https://doi.org/10.1109/72.822511 +Olga Zoidi,Multiplicative Update Rules for Concurrent Nonnegative Matrix Factorization and Maximum Margin Classification.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn24.html#ZoidiTP13,https://doi.org/10.1109/TNNLS.2012.2235461 +Xinyang Li,A Unified Fisher's Ratio Learning Method for Spatial Filter Optimization.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn28.html#LiGZA17,https://doi.org/10.1109/TNNLS.2016.2601084 +Mehmet Kerem Müezzinoglu,An energy function-based design method for discrete hopfield associative memory with attractive fixed points.,2005,16,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn16.html#MuezzinogluGZ05,https://doi.org/10.1109/TNN.2004.841775 +Sheng Chen 0001,Complex-Valued B-Spline Neural Networks for Modeling and Inverting Hammerstein Systems.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn25.html#0001HGH14,https://doi.org/10.1109/TNNLS.2014.2298535 +Lin Xiao,Zhang Neural Network Versus Gradient Neural Network for Solving Time-Varying Linear Inequalities.,2011,22,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn22.html#XiaoZ11,https://doi.org/10.1109/TNN.2011.2163318 +Jilie Zhang,Distributed Optimal Consensus Control for Nonlinear Multiagent System With Unknown Dynamic.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#ZhangZF18,https://doi.org/10.1109/TNNLS.2017.2728622 +Nick K. Treadgold,Simulated annealing and weight decay in adaptive learning: the SARPROP algorithm.,1998,9,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn9.html#TreadgoldG98,https://doi.org/10.1109/72.701179 +Bin Gu,Regularization Path for ν-Support Vector Classification.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn23.html#GuWZY12,https://doi.org/10.1109/TNNLS.2012.2183644 +Max Welling,Probabilistic sequential independent components analysis.,2004,15,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn15.html#WellingZH04,https://doi.org/10.1109/TNN.2004.828765 +Huanhuan Chen,Regularized Negative Correlation Learning for Neural Network Ensembles.,2009,20,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn20.html#ChenY09,https://doi.org/10.1109/TNN.2009.2034144 +Dan Zhang 0001,"Corrections to: ""Estimator Design for Discrete-Time Switched Neural Networks With Asynchronous Switching and Time-Varying Delay"".",2013,24,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn24.html#ZhangYWO13,https://doi.org/10.1109/TNNLS.2013.2262112 +Satyendra Bhama,Single layer neural networks for linear system identification using gradient descent technique.,1993,4,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn4.html#BhamaS93,https://doi.org/10.1109/72.248467 +Sam-Kit Sin,An evolution-oriented learning algorithm for the optimal interpolative net.,1992,3,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn3.html#Sind92,https://doi.org/10.1109/72.125873 +Pei Gao,Nonlinear signal separation for multinonlinearity constrained mixing model.,2006,17,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn17.html#GaoWD06,https://doi.org/10.1109/TNN.2006.873288 +Vasso Reppa,Adaptive Approximation for Multiple Sensor Fault Detection and Isolation of Nonlinear Uncertain Systems.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn25.html#ReppaPP14,https://doi.org/10.1109/TNNLS.2013.2250301 +Fei Cheng,Facial expression recognition in JAFFE dataset based on Gaussian process classification.,2010,21,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn21.html#ChengYX10,https://doi.org/10.1109/TNN.2010.2064176 +Vladimir Cherkassky,Comparison of adaptive methods for function estimation from samples.,1996,7,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn7.html#CherkasskyGM96,https://doi.org/10.1109/72.508939 +Raúl Santos-Rodríguez,Cost-Sensitive Sequences of Bregman Divergences.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn23.html#Santos-RodriguezC12,https://doi.org/10.1109/TNNLS.2012.2219067 +Xing He 0001,Bogdanov-Takens Singularity in Tri-Neuron Network With Time Delay.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn24.html#HeLHL13,https://doi.org/10.1109/TNNLS.2013.2238681 +Zhuo Wang 0003,Data-Based Controllability and Observability Analysis of Linear Discrete-Time Systems.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#WangL11,https://doi.org/10.1109/TNN.2011.2170219 +Nitish D. Patel,Neural Network Implementation Using Bit Streams.,2007,18,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn18.html#PatelNC07,https://doi.org/10.1109/TNN.2007.895822 +Juwei Lu,Face recognition using kernel direct discriminant analysis algorithms.,2003,14,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn14.html#LuPV03,https://doi.org/10.1109/TNN.2002.806629 +Ali A. Ghorbani,Incremental communication for multilayer neural networks.,1995,6,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn6.html#GhorbaniB95,https://doi.org/10.1109/72.471370 +Yong Xiang,Blind separation of mutually correlated sources using precoders.,2010,21,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn21.html#XiangNN10,https://doi.org/10.1109/TNN.2009.2034518 +Maria Bortman,A Growing and Pruning Method for Radial Basis Function Networks.,2009,20,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn20.html#BortmanA09,https://doi.org/10.1109/TNN.2009.2019270 +Whye Loon Tung,GenSoFNN: a generic self-organizing fuzzy neural network.,2002,13,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn13.html#TungQ02,https://doi.org/10.1109/TNN.2002.1031940 +Stefano Ferrari,Multiscale approximation with hierarchical radial basis functions networks.,2004,15,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn15.html#FerrariMB04,https://doi.org/10.1109/TNN.2003.811355 +Fangfei Li,Observability of Boolean Control Networks With State Time Delays.,2011,22,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn22.html#LiSW11,https://doi.org/10.1109/TNN.2011.2126594 +Leonardo Franco,The influence of oppositely classified examples on the generalization complexity of Boolean functions.,2006,17,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn17.html#FrancoA06,https://doi.org/10.1109/TNN.2006.872352 +Axel Doering,Structure optimization of neural networks with the A*-algorithm.,1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#DoeringGW97,https://doi.org/10.1109/72.641466 +Jordi Cosp,Scene segmentation using neuromorphic oscillatory networks.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#CospM03,https://doi.org/10.1109/TNN.2003.816364 +Le Nguyen Binh,A neural-network contention controller for packet switching networks.,1995,6,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn6.html#BinhC95,https://doi.org/10.1109/72.471367 +Wen Yu 0001,Neural Feedback Passivity of Unknown Nonlinear Systems via Sliding Mode Technique.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn26.html#Yu15,https://doi.org/10.1109/TNNLS.2014.2345632 +Massoud Momeni,An analog VLSI chip emulating polarization vision of octopus retina.,2006,17,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn17.html#MomeniT06,https://doi.org/10.1109/TNN.2005.860865 +Xuelong Li,Patch Alignment Manifold Matting.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#LiLDT18a,https://doi.org/10.1109/TNNLS.2017.2727140 +David E. van den Bout,Graph partitioning using annealed neural networks.,1990,1,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn1.html#BoutM90,https://doi.org/10.1109/72.80231 +Xiaohui Huang,Extensions of Kmeans-Type Algorithms: A New Clustering Framework by Integrating Intracluster Compactness and Intercluster Separation.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn25.html#HuangYZ14,https://doi.org/10.1109/TNNLS.2013.2293795 +Marco Loog,Semi-Supervised Nearest Mean Classification Through a Constrained Log-Likelihood.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn26.html#LoogJ15,https://doi.org/10.1109/TNNLS.2014.2329567 +Mehmed M. Kantardzic,Visualization of neural-network gaps based on error analysis.,1999,10,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn10.html#KantardzicAE99,https://doi.org/10.1109/72.750572 +Sheng-lan Liu,Scatter Balance: An Angle-Based Supervised Dimensionality Reduction.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn26.html#LiuFQ15,https://doi.org/10.1109/TNNLS.2014.2314698 +Amir F. Atiya,New results on recurrent network training: unifying the algorithms and accelerating convergence.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn11.html#AtiyaP00,https://doi.org/10.1109/72.846741 +Kasper Winther Jørgensen,Model Selection for Gaussian Kernel PCA Denoising.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn23.html#JorgensenH12,https://doi.org/10.1109/TNNLS.2011.2178325 +Lin Wang,Improving Neural-Network Classifiers Using Nearest Neighbor Partitioning.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn28.html#WangYCZO17,https://doi.org/10.1109/TNNLS.2016.2580570 +Q. Tao,Recursive Support Vector Machines for Dimensionality Reduction.,2008,19,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn19.html#TaoCW08,https://doi.org/10.1109/TNN.2007.908267 +Yue Wen,A New Powered Lower Limb Prosthesis Control Framework Based on Adaptive Dynamic Programming.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn28.html#WenSGHH17,https://doi.org/10.1109/TNNLS.2016.2584559 +Yanshan Xiao,A Maximum Margin Approach for Semisupervised Ordinal Regression Clustering.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn27.html#XiaoLH16,https://doi.org/10.1109/TNNLS.2015.2434960 +Ugur Yuzgec,Dynamic Neural-Network-Based Model-Predictive Control of an Industrial Baker's Yeast Drying Process.,2008,19,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn19.html#YuzgecBT08,https://doi.org/10.1109/TNN.2008.2000205 +Yunyun Wang,New Semi-Supervised Classification Method Based on Modified Cluster Assumption.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn23.html#WangCZ12,https://doi.org/10.1109/TNNLS.2012.2186825 +Rahul Kumar Agarwal,Application of LMS-Based NN Structure for Power Quality Enhancement in a Distribution Network Under Abnormal Conditions.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#AgarwalHS18,https://doi.org/10.1109/TNNLS.2017.2677961 +Z. Fan,Local Linear Discriminant Analysis Framework Using Sample Neighbors.,2011,22,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn22.html#FanXZ11,https://doi.org/10.1109/TNN.2011.2152852 +Chao Du,Learning Deep Generative Models With Doubly Stochastic Gradient MCMC.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#DuZZ18,https://doi.org/10.1109/TNNLS.2017.2688499 +Hui Wei,Learning and Representing Object Shape Through an Array of Orientation Columns.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn25.html#WeiLD14,https://doi.org/10.1109/TNNLS.2013.2293178 +Adam Krzyzak,Nonparametric estimation and classification using radial basis function nets and empirical risk minimization.,1996,7,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn7.html#KrzyzakLL96,https://doi.org/10.1109/72.485681 +Jenn-Chyou Bor,Analog electronic cochlea design using multiplexing switched-capacitor circuits.,1996,7,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn7.html#BorW96,https://doi.org/10.1109/72.478400 +Di Wang,Online Support Vector Machine Based on Convex Hull Vertices Selection.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn24.html#WangQZW13,https://doi.org/10.1109/TNNLS.2013.2238556 +Guy Wallis,Stability criteria for unsupervised temporal association networks.,2005,16,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn16.html#Wallis05,https://doi.org/10.1109/TNN.2004.841795 +Russell W. Duren,Real-Time Neural Network Inversion on the SRC-6e Reconfigurable Computer.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#DurenMRT07,https://doi.org/10.1109/TNN.2007.891679 +Saad Mohamad,A Bi-Criteria Active Learning Algorithm for Dynamic Data Streams.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn29.html#MohamadBM18,https://doi.org/10.1109/TNNLS.2016.2614393 +Wei Zuo,Adaptive-Fourier-Neural-Network-Based Control for a Class of Uncertain Nonlinear Systems.,2008,19,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn19.html#ZuoC08,https://doi.org/10.1109/TNN.2008.2001003 +Li-Ying Hao,Integral Sliding Mode Fault-Tolerant Control for Uncertain Linear Systems Over Networks With Signals Quantization.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn28.html#HaoPY17,https://doi.org/10.1109/TNNLS.2016.2574905 +Dimitris C. Psichogios,SVD-NET: an algorithm that automatically selects network structure.,1994,5,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn5.html#PsichogiosU94,https://doi.org/10.1109/72.286929 +Youshen Xia,A recurrent neural network for solving nonlinear convex programs subject to linear constraints.,2005,16,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn16.html#XiaW05,https://doi.org/10.1109/TNN.2004.841779 +Yan-Jun Liu,Reinforcement Learning Design-Based Adaptive Tracking Control With Less Learning Parameters for Nonlinear Discrete-Time MIMO Systems.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn26.html#LiuTTCL15,https://doi.org/10.1109/TNNLS.2014.2360724 +Yujuan Wang,Distributed Adaptive Finite-Time Approach for Formation-Containment Control of Networked Nonlinear Systems Under Directed Topology.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#WangSR18,https://doi.org/10.1109/TNNLS.2017.2714187 +Tommaso Mannucci,Safe Exploration Algorithms for Reinforcement Learning Controllers.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#MannucciKVC18,https://doi.org/10.1109/TNNLS.2017.2654539 +Stan Z. Li,Face recognition using the nearest feature line method.,1999,10,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn10.html#LiL99,https://doi.org/10.1109/72.750575 +Stephen L. Adler,Algorithmic aspects of a neuron for coherent wave synapse realizations.,1996,7,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn7.html#AdlerBW96,https://doi.org/10.1109/72.536319 +Harris Drucker,Improving generalization performance using double backpropagation.,1992,3,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn3.html#DruckerL92,https://doi.org/10.1109/72.165600 +Bas J. de Kruif,Pruning error minimization in least squares support vector machines.,2003,14,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn14.html#KruifV03,https://doi.org/10.1109/TNN.2003.810597 +Hans-Ulrich Bauer,Growing a hypercubical output space in a self-organizing feature map.,1997,8,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn8.html#BauerV97,https://doi.org/10.1109/72.557659 +Guillermo Zatorre-Navarro,Analysis and Simulation of a Mixed-Mode Neuron Architecture for Sensor Conditioning.,2006,17,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn17.html#Zatorre-NavarroMC06,https://doi.org/10.1109/TNN.2006.877535 +Koji Tsuda,Subspace information criterion for nonquadratic regularizers-Model selection for sparse regressors.,2002,13,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn13.html#TsudaSM02,https://doi.org/10.1109/72.977272 +W.-T. Zhang,Iterative Algorithm for Joint Zero Diagonalization With Application in Blind Source Separation.,2011,22,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn22.html#ZhangL11,https://doi.org/10.1109/TNN.2011.2146275 +Yue Deng,Low-Rank Structure Learning via Nonconvex Heuristic Recovery.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn24.html#DengDLZH13,https://doi.org/10.1109/TNNLS.2012.2235082 +Sanbo Ding,Dissipativity Analysis for Stochastic Memristive Neural Networks With Time-Varying Delays: A Discrete-Time Case.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn29.html#DingWZ18,https://doi.org/10.1109/TNNLS.2016.2631624 +Miguel Lázaro-Gredilla,A Gaussian Process Model for Data Association and a Semidefinite Programming Solution.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn25.html#Lazaro-GredillaV14,https://doi.org/10.1109/TNNLS.2014.2300701 +Cheol-Taek Kim,Training Two-Layered Feedforward Networks With Variable Projection Method.,2008,19,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn19.html#KimL08,https://doi.org/10.1109/TNN.2007.911739 +Xiaowei Zhang 0002,Sparse Uncorrelated Linear Discriminant Analysis for Undersampled Problems.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn27.html#ZhangCT16,https://doi.org/10.1109/TNNLS.2015.2448637 +Klaus-Robert Müller,An introduction to kernel-based learning algorithms.,2001,12,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn12.html#MullerMRTS01,https://doi.org/10.1109/72.914517 +Zhi-Hong Mao,Dynamics of Winner-Take-All Competition in Recurrent Neural Networks With Lateral Inhibition.,2007,18,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn18.html#MaoM07,https://doi.org/10.1109/TNN.2006.883724 +Huseyin Ozkan,Data Imputation Through the Identification of Local Anomalies.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn26.html#OzkanPK15,https://doi.org/10.1109/TNNLS.2014.2382606 +Haihua Liu,Computational Model Based on Neural Network of Visual Cortex for Human Action Recognition.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#LiuSTZ18,https://doi.org/10.1109/TNNLS.2017.2669522 +Charalampos P. Bechlioulis,Neuro-Adaptive Force/Position Control With Prescribed Performance and Guaranteed Contact Maintenance.,2010,21,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn21.html#BechlioulisDR10,https://doi.org/10.1109/TNN.2010.2076302 +Daniel S. Yeung,Using function approximation to analyze the sensitivity of MLP with antisymmetric squashing activation function.,2002,13,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn13.html#YeungS02,https://doi.org/10.1109/72.977266 +Mustafa Kuzuoglu,Infinite-dimensional multilayer perceptrons.,1996,7,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn7.html#KuzuogluL96,https://doi.org/10.1109/72.508932 +Ethem Alpaydin,Local linear perceptrons for classification.,1996,7,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn7.html#AlpaydinJ96,https://doi.org/10.1109/72.501737 +Luis Munoz-Gonzalez,Divisive Gaussian Processes for Nonstationary Regression.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn25.html#Munoz-GonzalezLF14,https://doi.org/10.1109/TNNLS.2014.2301951 +Jagesh V. Shah,Linear independence of internal representations in multilayer perceptrons.,1999,10,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn10.html#ShahP99,https://doi.org/10.1109/72.737489 +Kenneth E. Hild II,An Expectation-Maximization Method for Spatio-Temporal Blind Source Separation Using an AR-MOG Source Model.,2008,19,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn19.html#HildAN08,https://doi.org/10.1109/TNN.2007.914154 +Huiying Liu,Improving Visual Saliency Computing With Emotion Intensity.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn27.html#LiuXWRB16,https://doi.org/10.1109/TNNLS.2016.2553579 +Russell Enns,Helicopter trimming and tracking control using direct neural dynamic programming.,2003,14,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn14.html#EnnsS03,https://doi.org/10.1109/TNN.2003.813839 +C. Shunmuga Velayutham,Asymmetric subsethood-product fuzzy neural inference system (ASuPFuNIS).,2005,16,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn16.html#VelayuthamK05,https://doi.org/10.1109/TNN.2004.836202 +Huajin Tang,A discrete-time neural network for optimization problems with hybrid constraints.,2010,21,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn21.html#TangLY10,https://doi.org/10.1109/TNN.2010.2049368 +Rui Zhang,Universal Approximation of Extreme Learning Machine With Adaptive Growth of Hidden Nodes.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn23.html#ZhangLHX12,https://doi.org/10.1109/TNNLS.2011.2178124 +Qing Song 0001,On the weight convergence of Elman networks.,2010,21,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn21.html#Song10,https://doi.org/10.1109/TNN.2009.2039226 +Dipti Srinivasan,"Guest Editorial Special Issue on ""Neural Networks and Learning Systems Applications in Smart Grid"".",2016,27,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn27.html#SrinivasanV16,https://doi.org/10.1109/TNNLS.2016.2545560 +Qingfu Zhang,A class of learning algorithms for principal component analysis and minor component analysis.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn11.html#ZhangL00a,https://doi.org/10.1109/72.839022 +Ju Hong Ge,Computation of synchronized periodic solution in a BAM network with two delays.,2010,21,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn21.html#GeX10,https://doi.org/10.1109/TNN.2009.2038911 +Chih-Wei Hsu,A comparison of methods for multiclass support vector machines.,2002,13,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn13.html#HsuL02,https://doi.org/10.1109/72.991427 +Mark Rosenblum,Human expression recognition from motion using a radial basis function network architecture.,1996,7,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn7.html#RosenblumYD96,https://doi.org/10.1109/72.536309 +Ning-Shou Xu,A novel high-order associative memory system via discrete Taylor series.,2003,14,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn14.html#XuBZ03,https://doi.org/10.1109/TNN.2003.811700 +Peter F. McGuire,Eigenpaxels and a neural-network approach to image classification.,2001,12,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn12.html#McGuireD01,https://doi.org/10.1109/72.925566 +Si-Zhao Qin,Comparison of four neural net learning methods for dynamic system identification.,1992,3,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn3.html#QinSM92,https://doi.org/10.1109/72.105425 +Jie Pan,Multisource Transfer Double DQN Based on Actor Learning.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#PanWCY18,https://doi.org/10.1109/TNNLS.2018.2806087 +Heinrich Niemann,Neural network adaptive image coding.,1993,4,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn4.html#NiemannW93,https://doi.org/10.1109/72.238316 +David Zhang 0001,A fuzzy clustering neural networks (FCNs) system design methodology.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn11.html#ZhangP00,https://doi.org/10.1109/72.870048 +Andreas Brandstetter,Radial Basis Function Networks GPU-Based Implementation.,2008,19,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn19.html#BrandstetterA08,https://doi.org/10.1109/TNN.2008.2003284 +Meiqin Liu,Exponential H∞ Synchronization and State Estimation for Chaotic Systems Via a Unified Model.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn24.html#LiuZFZS13,https://doi.org/10.1109/TNNLS.2013.2251000 +Huaguang Zhang,Global Asymptotic Stability of Recurrent Neural Networks With Multiple Time-Varying Delays.,2008,19,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn19.html#ZhangWL08,https://doi.org/10.1109/TNN.2007.912319 +J. Basak,Blind separation of uniformly distributed signals: a general approach.,1999,10,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn10.html#BasakA99,https://doi.org/10.1109/72.788656 +G. L. Wang,Support Vector Networks in Adaptive Friction Compensation.,2007,18,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn18.html#WangLB07,https://doi.org/10.1109/TNN.2007.899148 +H. John Caulfield,Finding the shortest path in the shortest time using PCNN's.,1999,10,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn10.html#CaulfieldK99,https://doi.org/10.1109/72.761718 +Lasse Holmström,Using additive noise in back-propagation training.,1992,3,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn3.html#HolmstromK92,https://doi.org/10.1109/72.105415 +Nikoletta K. Bassiou,Online PLSA: Batch Updating Techniques Including Out-of-Vocabulary Words.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn25.html#BassiouK14,https://doi.org/10.1109/TNNLS.2014.2299806 +Eduardo Bayro-Corrochano,Geometric Bioinspired Networks for Recognition of 2-D and 3-D Low-Level Structures and Transformations.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn27.html#Bayro-Corrochano16,https://doi.org/10.1109/TNNLS.2015.2464252 +Chao Zhang,Structure of Indicator Function Classes With Finite Vapnik-Chervonenkis Dimensions.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn24.html#ZhangT13,https://doi.org/10.1109/TNNLS.2013.2251746 +Cheng-Chin Chiang,Using multithreshold quadratic sigmoidal neurons to improve classification capability of multilayer perceptrons.,1994,5,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn5.html#ChiangF94,https://doi.org/10.1109/72.286930 +Akira Hirose,Generalization Characteristics of Complex-Valued Feedforward Neural Networks in Relation to Signal Coherence.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn23.html#HiroseY12,https://doi.org/10.1109/TNNLS.2012.2183613 +Ivor Wai-Hung Tsang,Large-Scale Maximum Margin Discriminant Analysis Using Core Vector Machines.,2008,19,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn19.html#TsangKK08,https://doi.org/10.1109/TNN.2007.911746 +Randa Herzallah,Distribution Modeling of Nonlinear Inverse Controllers Under a Bayesian Framework.,2007,18,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn18.html#HerzallahL07,https://doi.org/10.1109/TNN.2006.883721 +Kadri Hacioglu,An improved recurrent neural network for M-PAM symbol detection.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#Hacioglu97,https://doi.org/10.1109/72.572113 +Min Xiao,Undamped Oscillations Generated by Hopf Bifurcations in Fractional-Order Recurrent Neural Networks With Caputo Derivative.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn26.html#XiaoZJC15,https://doi.org/10.1109/TNNLS.2015.2425734 +Guofa Sun,Modified Neural Dynamic Surface Approach to Output Feedback of MIMO Nonlinear Systems.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn26.html#SunLR15,https://doi.org/10.1109/TNNLS.2014.2312001 +Stefen Hui,The Widrow-Hoff algorithm for McCulloch-Pitts type neurons.,1994,5,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn5.html#HuiZ94,https://doi.org/10.1109/72.329689 +Yongming Li 0002,Adaptive Neural Networks Prescribed Performance Control Design for Switched Interconnected Uncertain Nonlinear Systems.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#LiT18,https://doi.org/10.1109/TNNLS.2017.2712698 +Ke Zhi Mao,Probabilistic neural-network structure determination for pattern classification.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn11.html#MaoTS00,https://doi.org/10.1109/72.857781 +Richard P. Brent,Fast training algorithms for multilayer neural nets.,1991,2,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn2.html#Brent91,https://doi.org/10.1109/72.97911 +Stefan C. Kremer,"Comments on ""Constructive learning of recurrent neural networks: limitations of recurrent cascade correlation and a simple solution"".",1996,7,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn7.html#Kremer96,https://doi.org/10.1109/72.508949 +Jenq-Neng Hwang,Query-based learning applied to partially trained multilayer perceptrons.,1991,2,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn2.html#HwangCOM91,https://doi.org/10.1109/72.80299 +Chin-Teng Lin,A 3-D surface reconstruction approach based on postnonlinear ICA model.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#LinCL05a,https://doi.org/10.1109/TNN.2005.857950 +João Ranhel,Neural Assembly Computing.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn23.html#Ranhel12,https://doi.org/10.1109/TNNLS.2012.2190421 +Mark Mackenzie,Asymmetric kernel regression.,2004,15,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn15.html#MackenzieT04a,https://doi.org/10.1109/TNN.2004.824414 +Iulian B. Ciocoiu,Analog decoding using a gradient-type neural network.,1996,7,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn7.html#Ciocoiu96,https://doi.org/10.1109/72.508946 +Malcolm I. Heywood,A framework for improved training of Sigma-Pi networks.,1995,6,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn6.html#HeywoodN95,https://doi.org/10.1109/72.392251 +Derong Liu,TNNLS Call for Reviewers and Special Issues.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn26.html#Liu15,https://doi.org/10.1109/TNNLS.2014.2375591 +Ashish Ghosh,Modeling of component failure in neural networks for robustness evaluation: an application to object extraction.,1995,6,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn6.html#GhoshPP95,https://doi.org/10.1109/72.377970 +Itshak Lapidot,Unsupervised speaker recognition based on competition between self-organizing maps.,2002,13,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn13.html#LapidotGC02,https://doi.org/10.1109/TNN.2002.1021888 +Sitian Qin,A Neurodynamic Optimization Approach to Bilevel Quadratic Programming.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn28.html#QinLW17,https://doi.org/10.1109/TNNLS.2016.2595489 +Steven Van Vaerenbergh,Kernel Recursive Least-Squares Tracker for Time-Varying Regression.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn23.html#VaerenberghLS12,https://doi.org/10.1109/TNNLS.2012.2200500 +Jae Young Lee,Integral Reinforcement Learning for Continuous-Time Input-Affine Nonlinear Systems With Simultaneous Invariant Explorations.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn26.html#LeePC15,https://doi.org/10.1109/TNNLS.2014.2328590 +H. Hikawa,Frequency-based multilayer neural network with on-chip learning and enhanced neuron characteristics.,1999,10,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn10.html#Hikawa99,https://doi.org/10.1109/72.761711 +Aapo Hyvärinen,Blind source separation by nonstationarity of variance: a cumulant-based approach.,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#Hyvarinen01,https://doi.org/10.1109/72.963782 +Minyoung Kim,Efficient Kernel Sparse Coding Via First-Order Smooth Optimization.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn25.html#Kim14,https://doi.org/10.1109/TNNLS.2013.2294059 +Min Meng 0003,Stability and Guaranteed Cost Analysis of Time-Triggered Boolean Networks.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#MengLFC18,https://doi.org/10.1109/TNNLS.2017.2737649 +Sotirios P. Chatzis,Maximum Entropy Discrimination Poisson Regression for Software Reliability Modeling.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn26.html#ChatzisA15,https://doi.org/10.1109/TNNLS.2015.2391171 +Zhanyu Ma,Decorrelation of Neutral Vector Variables: Theory and Applications.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn29.html#MaXLTYG18,https://doi.org/10.1109/TNNLS.2016.2616445 +Shan Ouyang,Robust recursive least squares learning algorithm for principal component analysis.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn11.html#OuyangBL00,https://doi.org/10.1109/72.822524 +Sukhan Lee,Unconstrained handwritten numeral recognition based on radial basis competitive and cooperative networks with spatio-temporal feature representation.,1996,7,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn7.html#LeeP96,https://doi.org/10.1109/72.485680 +Beibei Ren,Adaptive Neural Control for a Class of Nonlinear Systems With Uncertain Hysteresis Inputs and Time-Varying State Delays.,2009,20,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn20.html#RenGLS09,https://doi.org/10.1109/TNN.2009.2016959 +Hsin Chen,Continuous-valued probabilistic behavior in a VLSI generative model.,2006,17,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn17.html#ChenFM06,https://doi.org/10.1109/TNN.2006.873278 +Changchun Hua,Synchronization of Chaotic Lur'e Systems With Time Delays Using Sampled-Data Control.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn26.html#HuaGG15,https://doi.org/10.1109/TNNLS.2014.2334702 +Akshay Kumar Maan,A Survey of Memristive Threshold Logic Circuits.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn28.html#MaanJJ17,https://doi.org/10.1109/TNNLS.2016.2547842 +Jingjing Tang,Multiview Privileged Support Vector Machines.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#TangTZL18,https://doi.org/10.1109/TNNLS.2017.2728139 +Riccardo Rizzo,A comparison between habituation and conscience mechanism in self-organizing maps.,2006,17,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn17.html#RizzoC06,https://doi.org/10.1109/TNN.2006.872354 +Cheng Deng,Similarity Constraints-Based Structured Output Regression Machine: An Approach to Image Super-Resolution.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn27.html#DengXZTGL16,https://doi.org/10.1109/TNNLS.2015.2468069 +Thiago Christiano Silva,Network-Based High Level Data Classification.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn23.html#SilvaZ12b,https://doi.org/10.1109/TNNLS.2012.2195027 +Lotfi Ben Romdhane,A softmin-based neural model for causal reasoning.,2006,17,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn17.html#Romdhane06,https://doi.org/10.1109/TNN.2006.872350 +Dezhong Peng,Dynamics of Generalized PCA and MCA Learning Algorithms.,2007,18,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn18.html#PengY07,https://doi.org/10.1109/TNN.2007.895821 +Petra Schneider,Regularization in matrix relevance learning.,2010,21,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn21.html#SchneiderBSHVB10,https://doi.org/10.1109/TNN.2010.2042729 +Yakov Z. Tsypkin,Neural networks for identification of nonlinear systems under random piecewise polynomial disturbances.,1999,10,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn10.html#TsypkinMAWL99,https://doi.org/10.1109/72.750559 +Gerardo Noriega,A Neural Model for Compensation of Sensory Abnormalities in Autism Through Feedback From a Measure of Global Perception.,2008,19,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn19.html#Noriega08,https://doi.org/10.1109/TNN.2008.2000447 +William E. Weideman,Comparisons of a neural network and a nearest-neighbor classifier via the numeric handprint recognition problem.,1995,6,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn6.html#WeidemanMYG95,https://doi.org/10.1109/72.471357 +Yuhu Cheng,Random Forest Classifier for Zero-Shot Learning Based on Relative Attribute.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#ChengQWY18,https://doi.org/10.1109/TNNLS.2017.2677441 +Binfan Liu,The best approximation to C2 functions and its error bounds using regular-center Gaussian networks.,1994,5,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn5.html#LiuS94,https://doi.org/10.1109/72.317739 +Simon G. Fabri,Dynamic structure neural networks for stable adaptive control of nonlinear systems.,1996,7,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn7.html#FabriK96,https://doi.org/10.1109/72.536311 +Maurício Figueiredo,Design of fuzzy systems using neurofuzzy networks.,1999,10,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn10.html#FigueiredoG99,https://doi.org/10.1109/72.774229 +George Kechriotis,Hopfield neural network implementation of the optimal CDMA multiuser detector.,1996,7,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn7.html#KechriotisM96,https://doi.org/10.1109/72.478397 +Seán F. McLoone,Fast parallel off-line training of multilayer perceptrons.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#McLooneI97,https://doi.org/10.1109/72.572103 +Frank Hung-Fat Leung,Tuning of the structure and parameters of a neural network using an improved genetic algorithm.,2003,14,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn14.html#LeungLLT03,https://doi.org/10.1109/TNN.2002.804317 +Kan Li,The Kernel Adaptive Autoregressive-Moving-Average Algorithm.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn27.html#LiP16,https://doi.org/10.1109/TNNLS.2015.2418323 +Jacques M. Bahi,Stability of fully asynchronous discrete-time discrete-state dynamic networks.,2002,13,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn13.html#BahiC02,https://doi.org/10.1109/TNN.2002.805751 +Lijun Long,Adaptive Output-Feedback Neural Control of Switched Uncertain Nonlinear Systems With Average Dwell Time.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn26.html#LongZ15,https://doi.org/10.1109/TNNLS.2014.2341242 +Sunan Huang 0001,Further results on adaptive control for a class of nonlinear systems using neural networks.,2003,14,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn14.html#HuangTL03,https://doi.org/10.1109/TNN.2003.811712 +F. Xabier Albizuri,Structure of the high-order Boltzmann machine from independence maps.,1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#AlbizuriDGL97,https://doi.org/10.1109/72.641458 +Jiun-Chi Jan,High-order MS CMAC neural network.,2001,12,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn12.html#JanH01,https://doi.org/10.1109/72.925562 +Francisco Javier González-Serrano,Generalizing CMAC architecture and training.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#Gonzalez-SerranoFA98,https://doi.org/10.1109/72.728400 +Min Wang,Approximation-Based Adaptive Tracking Control of Pure-Feedback Nonlinear Systems With Multiple Unknown Time-Varying Delays.,2010,21,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn21.html#WangGH10,https://doi.org/10.1109/TNN.2010.2073719 +Ramesh R. Sarukkai,Supervised self-coding in multilayered feedforward networks.,1996,7,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn7.html#Sarukkai96,https://doi.org/10.1109/72.536313 +Yongjun Deng,"Comments on ""Complex-bilinear recurrent neural network for equalization of a digital Satellite Channel"".",2006,17,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn17.html#DengY06,https://doi.org/10.1109/TNN.2005.860863 +Hau-San Wong,A neural learning approach for adaptive image restoration using a fuzzy model-based network architecture.,2001,12,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn12.html#WongG01,https://doi.org/10.1109/72.925555 +Shaoshuai Mou,A New Criterion of Delay-Dependent Asymptotic Stability for Hopfield Neural Networks With Time Delay.,2008,19,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn19.html#MouGLQ08,https://doi.org/10.1109/TNN.2007.912593 +Sungho Jo,Random neural networks with state-dependent firing neurons.,2005,16,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn16.html#JoYM05,https://doi.org/10.1109/TNN.2005.849829 +Fabio Massimo Frattale Mascioli,A constructive algorithm for binary neural networks: the oil-spot algorithm.,1995,6,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn6.html#MascioliM95,https://doi.org/10.1109/72.377991 +Long-Kai Huang,Online Hashing.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#HuangYZ18,https://doi.org/10.1109/TNNLS.2017.2689242 +Teresa Serrano-Gotarredona,An ART1 microchip and its use in multi-ART1 systems.,1997,8,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn8.html#Serrano-GotarredonaL97,https://doi.org/10.1109/72.623219 +Jian-Xin Xu 0001,Nonlinear Adaptive Wavelet Control Using Constructive Wavelet Networks.,2007,18,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn18.html#XuT07,https://doi.org/10.1109/TNN.2006.886759 +Udaya Bhaskar Rongala,Neuromorphic Artificial Touch for Categorization of Naturalistic Textures.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn28.html#RongalaMO17,https://doi.org/10.1109/TNNLS.2015.2472477 +Jungsik Lee,A practical radial basis function equalizer.,1999,10,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn10.html#LeeBT99,https://doi.org/10.1109/72.750577 +Yang Yi 0001,Adaptive Statistic Tracking Control Based on Two-Step Neural Networks With Time Delays.,2009,20,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn20.html#YiGW09,https://doi.org/10.1109/TNN.2008.2008329 +Thomas Dowrick,Silicon-Based Dynamic Synapse With Depressing Response.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn23.html#DowrickHM12,https://doi.org/10.1109/TNNLS.2012.2211035 +Ricardo Carmona-Galán,A bio-inspired two-layer mixed-signal flexible programmable chip for early vision.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#Carmona-GalanJDERRPR03,https://doi.org/10.1109/TNN.2003.816377 +Yu-Jun Zheng 0001,Airline Passenger Profiling Based on Fuzzy Deep Machine Learning.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn28.html#ZhengSSC17,https://doi.org/10.1109/TNNLS.2016.2609437 +Yuanheng Zhu,Iterative Adaptive Dynamic Programming for Solving Unknown Nonlinear Zero-Sum Game Based on Online Data.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn28.html#ZhuZL17,https://doi.org/10.1109/TNNLS.2016.2561300 +Pau-Choo Chung,Reliability characteristics of quadratic Hebbian-type associative memories in optical and electronic network implementations.,1995,6,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn6.html#ChungK95,https://doi.org/10.1109/72.363471 +Gianluca Borgese,FPGA-Based Distributed Computing Microarchitecture for Complex Physical Dynamics Investigation.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn24.html#BorgesePPB13,https://doi.org/10.1109/TNNLS.2013.2252924 +Wu-Hua Chen,Impulsive Synchronization of Reaction-Diffusion Neural Networks With Mixed Delays and Its Application to Image Encryption.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn27.html#ChenLZ16,https://doi.org/10.1109/TNNLS.2015.2512849 +Akira Hirose,Behavior control of coherent-type neural networks by carrier-frequency modulation.,1996,7,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn7.html#HiroseE96,https://doi.org/10.1109/72.508945 +Deming Yuan,Zeroth-Order Method for Distributed Optimization With Approximate Projections.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn27.html#YuanHX16,https://doi.org/10.1109/TNNLS.2015.2480419 +Sheng Chen 0001,Kernel Classifier Construction Using Orthogonal Forward Selection and Boosting With Fisher Ratio Class Separability Measure.,2006,17,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn17.html#ChenWHH06,https://doi.org/10.1109/TNN.2006.881487 +José M. Leiva-Murillo,Maximization of Mutual Information for Supervised Linear Feature Extraction.,2007,18,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn18.html#Leiva-MurilloA07,https://doi.org/10.1109/TNN.2007.891630 +Liang Zhao 0001,Pixel clustering by adaptive pixel moving and chaotic synchronization.,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#ZhaoCL04,https://doi.org/10.1109/TNN.2004.832726 +Witold Pedrycz,Heterogeneous fuzzy logic networks: fundamentals and development studies.,2004,15,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn15.html#Pedrycz04,https://doi.org/10.1109/TNN.2004.837785 +Francesco Bagattini,Lagrangean-Based Combinatorial Optimization for Large-Scale S3VMs.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#BagattiniCS18,https://doi.org/10.1109/TNNLS.2017.2766704 +Simon R. Jones,Toward a digital neuromorphic pitch extraction system.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn11.html#JonesMLT00,https://doi.org/10.1109/72.857777 +Vahram Stepanyan,Robust Adaptive Observer Design for Uncertain Systems With Bounded Disturbances.,2007,18,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn18.html#StepanyanH07,https://doi.org/10.1109/TNN.2007.895837 +George Chryssolouris,Confidence interval prediction for neural network models.,1996,7,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn7.html#ChryssolourisLR96,https://doi.org/10.1109/72.478409 +David Reverter Valeiras,An Asynchronous Neuromorphic Event-Driven Visual Part-Based Shape Tracking.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn26.html#ValeirasLCBIB15,https://doi.org/10.1109/TNNLS.2015.2401834 +Hongtao Lu,"Comments on ""A generalized LMI-based approach to the global asymptotic stability of delayed cellular neural networks"".",2005,16,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn16.html#Lu05,https://doi.org/10.1109/TNN.2005.844094 +Ding Wang 0001,Neural Network Learning and Robust Stabilization of Nonlinear Systems With Dynamic Uncertainties.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#WangLMZ18,https://doi.org/10.1109/TNNLS.2017.2749641 +Yuan-Hai Shao,Improvements on Twin Support Vector Machines.,2011,22,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn22.html#ShaoZWD11,https://doi.org/10.1109/TNN.2011.2130540 +Wentao Fan,Online Learning of a Dirichlet Process Mixture of Beta-Liouville Distributions Via Variational Inference.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn24.html#FanB13,https://doi.org/10.1109/TNNLS.2013.2268461 +Michalis K. Titsias,Shared kernel models for class conditional density estimation.,2001,12,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn12.html#TitsiasL01,https://doi.org/10.1109/72.950129 +Hugues Bersini,A simplification of the backpropagation-through-time algorithm for optimal neurocontrol.,1997,8,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn8.html#BersiniG97,https://doi.org/10.1109/72.557698 +Eng-Yeow Cheu,ARPOP: An Appetitive Reward-Based Pseudo-Outer-Product Neural Fuzzy Inference System Inspired From the Operant Conditioning of Feeding Behavior in Aplysia.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn23.html#CheuQN12,https://doi.org/10.1109/TNNLS.2011.2178529 +Ming Chen,Incremental communication for adaptive resonance theory networks.,2005,16,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn16.html#ChenGB05,https://doi.org/10.1109/TNN.2004.839357 +Stefan Ulbrich,General Robot Kinematics Decomposition Without Intermediate Markers.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn23.html#UlbrichAATD12,https://doi.org/10.1109/TNNLS.2012.2183886 +Lawrence O. Hall,A comparison of neural network and fuzzy clustering techniques in segmenting magnetic resonance images of the brain.,1992,3,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn3.html#HallBCVSB92,https://doi.org/10.1109/72.159057 +Leonard G. C. Hamey,"Comments on ""Can backpropagation error surface not have local minima?"".",1994,5,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn5.html#Hamey94,https://doi.org/10.1109/72.317738 +Jiann-Ming Wu,Independent component analysis using Potts models.,2001,12,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn12.html#WuC01,https://doi.org/10.1109/72.914518 +John N. Tsitsiklis,Regression methods for pricing complex American-style options.,2001,12,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn12.html#TsitsiklisR01,https://doi.org/10.1109/72.935083 +Chen Liu 0003,Closed-Loop Modulation of the Pathological Disorders of the Basal Ganglia Network.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn28.html#LiuWLLDYWFL17,https://doi.org/10.1109/TNNLS.2015.2508599 +Mo Chen,An Assessment of Qualitative Performance of Machine Learning Architectures: Modular Feedback Networks.,2008,19,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn19.html#ChenGM08,https://doi.org/10.1109/TNN.2007.902728 +Nicolò Cesa-Bianchi,Worst-case quadratic loss bounds for prediction using linear functions and gradient descent.,1996,7,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn7.html#Cesa-BianchiLW96,https://doi.org/10.1109/72.501719 +Leonid I. Perlovsky,Vague-to-Crisp Neural Mechanism of Perception.,2009,20,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn20.html#Perlovsky09,https://doi.org/10.1109/TNN.2009.2025501 +Shih-Chii Liu,Silicon synaptic adaptation mechanisms for homeostasis and contrast gain control.,2002,13,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn13.html#LiuM02,https://doi.org/10.1109/TNN.2002.804224 +Nikolay Y. Nikolaev,Learning polynomial feedforward neural networks by genetic programming and backpropagation.,2003,14,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn14.html#NikolaevI03,https://doi.org/10.1109/TNN.2003.809405 +Danmei Chen,Behavior-constrained support vector machines for fMRI data analysis.,2010,21,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn21.html#ChenLKW10,https://doi.org/10.1109/TNN.2010.2060353 +Luis A. Vázquez,Real-Time Decentralized Neural Control via Backstepping for a Robotic Arm Powered by Industrial Servomotors.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn29.html#VazquezJCS18,https://doi.org/10.1109/TNNLS.2016.2628038 +Jian Yang 0003,Color Image Discriminant Models and Algorithms for Face Recognition.,2008,19,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn19.html#YangL08,https://doi.org/10.1109/TNN.2008.2003187 +Daniel W. C. Ho,"Reply to ""Comments on ""Adaptive Neural Control for a Class of Nonlinearly Parametric Time-Delay Systems"""".",2008,19,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn19.html#HoLN08,https://doi.org/10.1109/TNN.2008.2002332 +Zhigang Zeng,Improved conditions for global exponential stability of recurrent neural networks with time-varying delays.,2006,17,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn17.html#ZengW06,https://doi.org/10.1109/TNN.2006.873283 +Kate A. Smith,An argument for abandoning the travelling salesman problem as a neural-network benchmark.,1996,7,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn7.html#Smith96,https://doi.org/10.1109/72.548187 +Chun-Shin Lin,Learning convergence of CMAC technique.,1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#LinC97,https://doi.org/10.1109/72.641451 +Orlando De Jesus,Backpropagation Algorithms for a Broad Class of Dynamic Networks.,2007,18,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn18.html#JesusH07,https://doi.org/10.1109/TNN.2006.882371 +Yaman Aksu,Margin-maximizing feature elimination methods for linear and nonlinear kernel-based discriminant functions.,2010,21,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn21.html#AksuMKY10,https://doi.org/10.1109/TNN.2010.2041069 +Bolin Liao,Different Complex ZFs Leading to Different Complex ZNN Models for Time-Varying Complex Generalized Inverse Matrices.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn25.html#LiaoZ14,https://doi.org/10.1109/TNNLS.2013.2271779 +Yin Sheng,Delay-Dependent Global Exponential Stability for Delayed Recurrent Neural Networks.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn28.html#ShengSZ17,https://doi.org/10.1109/TNNLS.2016.2608879 +Hong-Gui Han,An Adaptive-PSO-Based Self-Organizing RBF Neural Network.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn29.html#HanLHQ18,https://doi.org/10.1109/TNNLS.2016.2616413 +Gonzalo Safont,Probabilistic Distance for Mixtures of Independent Component Analyzers.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#SafontSVGV18,https://doi.org/10.1109/TNNLS.2017.2663843 +Dong-Chul Park,Complex-bilinear recurrent neural network for equalization of a digital satellite channel.,2002,13,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn13.html#ParkJ02,https://doi.org/10.1109/TNN.2002.1000135 +Kefeng Ning,Two Efficient Twin ELM Methods With Prediction Interval.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn26.html#NingLDWW15,https://doi.org/10.1109/TNNLS.2014.2362555 +Yongsheng Ding,Global Nonlinear Kernel Prediction for Large Data Set With a Particle Swarm-Optimized Interval Support Vector Regression.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn26.html#DingCPH15,https://doi.org/10.1109/TNNLS.2015.2426182 +Tieshan Li,Output-Feedback Adaptive Neural Control for Stochastic Nonlinear Time-Varying Delay Systems With Unknown Control Directions.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn26.html#LiLWC15,https://doi.org/10.1109/TNNLS.2014.2334638 +Huaguang Zhang,Stability Analysis for Neural Networks With Time-Varying Delay Based on Quadratic Convex Combination.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn24.html#ZhangYLZ13,https://doi.org/10.1109/TNNLS.2012.2236571 +Shuning Wang,Configuration of Continuous Piecewise-Linear Neural Networks.,2008,19,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn19.html#WangHJ08,https://doi.org/10.1109/TNN.2008.2000451 +R. Rakkiyappan,Existence and Uniform Stability Analysis of Fractional-Order Complex-Valued Neural Networks With Time Delays.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn26.html#RakkiyappanCV15,https://doi.org/10.1109/TNNLS.2014.2311099 +Sundaram Suresh,A Sequential Learning Algorithm for Complex-Valued Self-Regulating Resource Allocation Network-CSRAN.,2011,22,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn22.html#SureshSS11,https://doi.org/10.1109/TNN.2011.2144618 +Zhenzhong Chu,Observer-Based Adaptive Neural Network Trajectory Tracking Control for Remotely Operated Vehicle.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn28.html#ChuZY17,https://doi.org/10.1109/TNNLS.2016.2544786 +Ruohan Yang,Distributed Event-Triggered Adaptive Control for Cooperative Output Regulation of Heterogeneous Multiagent Systems Under Switching Topology.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#YangZFY18,https://doi.org/10.1109/TNNLS.2017.2762343 +Yun Yang 0003,Hybrid Sampling-Based Clustering Ensemble With Global and Local Constitutions.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn27.html#YangJ16,https://doi.org/10.1109/TNNLS.2015.2430821 +Marco Muselli,On convergence properties of pocket algorithm.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#Muselli97,https://doi.org/10.1109/72.572101 +Michael J. Healy,Acquiring rule sets as a product of learning in a logical neural architecture.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#HealyC97,https://doi.org/10.1109/72.572088 +Gianandrea Cocchi,Subband neural networks prediction for on-line audio signal recovery.,2002,13,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn13.html#CocchiU02,https://doi.org/10.1109/TNN.2002.1021887 +Mohamad H. Hassoun,Neural Adaptive Control Technology [Books in Brief].,1996,7,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn7.html#Hassoun96f,https://doi.org/10.1109/TNN.1996.548191 +Zhijun Zhang 0003,Neural-Dynamic-Method-Based Dual-Arm CMG Scheme With Time-Varying Constraints Applied to Humanoid Robots.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn26.html#ZhangLZLL15,https://doi.org/10.1109/TNNLS.2015.2469147 +Benny B. Nasution,A Hierarchical Graph Neuron Scheme for Real-Time Pattern Recognition.,2008,19,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn19.html#NasutionK08,https://doi.org/10.1109/TNN.2007.905857 +Gerardo Loreto,Stable neurovisual servoing for robot manipulators.,2006,17,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn17.html#LoretoG06,https://doi.org/10.1109/TNN.2006.875993 +Lingfei Zhi,Weighted Least-Squares Approach for Identification of a Reduced-Order Adaptive Neuronal Model.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn23.html#ZhiCMB12,https://doi.org/10.1109/TNNLS.2012.2187539 +Seth Wolpert,A neuromime in VLSI.,1996,7,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn7.html#WolpertM96,https://doi.org/10.1109/72.485633 +Shang-Liang Chen,Orthogonal least squares learning algorithm for radial basis function networks.,1991,2,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn2.html#ChenCG91,https://doi.org/10.1109/72.80341 +Scott Weaver,Using localizing learning to improve supervised learning algorithms.,2001,12,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn12.html#WeaverBP01,https://doi.org/10.1109/72.950133 +Claudia Diamantini,Quantizing for minimum average misclassification risk.,1998,9,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn9.html#DiamantiniS98,https://doi.org/10.1109/72.655039 +Christian Napoli,Cooperative Strategy for Optimal Management of Smart Grids by Wavelet RNNs and Cloud Computing.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn27.html#NapoliPTT16,https://doi.org/10.1109/TNNLS.2015.2480709 +Chunyang Sheng,Prediction Intervals for a Noisy Nonlinear Time Series Based on a Bootstrapping Reservoir Computing Network Ensemble.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn24.html#ShengZWL13,https://doi.org/10.1109/TNNLS.2013.2250299 +Xiangnan Zhong,A Theoretical Foundation of Goal Representation Heuristic Dynamic Programming.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn27.html#ZhongNH16,https://doi.org/10.1109/TNNLS.2015.2490698 +Keith Rudd,A Constrained Backpropagation Approach for the Adaptive Solution of Partial Differential Equations.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn25.html#RuddMF14,https://doi.org/10.1109/TNNLS.2013.2277601 +Zheng Rong Yang,Bio-basis function neural network for prediction of protease cleavage sites in proteins.,2005,16,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn16.html#YangT05,https://doi.org/10.1109/TNN.2004.836196 +Guanyu Lai,Asymmetric Actuator Backlash Compensation in Quantized Adaptive Control of Uncertain Networked Nonlinear Systems.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn28.html#LaiLZCX17,https://doi.org/10.1109/TNNLS.2015.2506267 +Kazunori Iwata,Extending the Peak Bandwidth of Parameters for Softmax Selection in Reinforcement Learning.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn28.html#Iwata17,https://doi.org/10.1109/TNNLS.2016.2558295 +Xing Wu,A Hybrid Constructive Algorithm for Single-Layer Feedforward Networks Learning.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn26.html#WuRW15,https://doi.org/10.1109/TNNLS.2014.2350957 +Clifford Sze-Tsan Choy,A class of competitive learning models which avoids neuron underutilization problem.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#ChoyS98,https://doi.org/10.1109/72.728374 +Chuan-Ke Zhang,Stability Analysis for Delayed Neural Networks Considering Both Conservativeness and Complexity.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn27.html#ZhangHJW16,https://doi.org/10.1109/TNNLS.2015.2449898 +Hans Henrik Thodberg,A review of Bayesian neural networks with an application to near infrared spectroscopy.,1996,7,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn7.html#Thodberg96,https://doi.org/10.1109/72.478392 +Gilles Labonté,On solving systems of linear inequalities with artificial neural networks.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#Labonte97,https://doi.org/10.1109/72.572098 +Nikos A. Vlassis,Efficient source adaptivity in independent component analysis.,2001,12,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn12.html#VlassisM01,https://doi.org/10.1109/72.925558 +Ludmila I. Kuncheva,Presupervised and post-supervised prototype classifier design.,1999,10,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn10.html#KunchevaB99,https://doi.org/10.1109/72.788653 +Paul Watta,Pattern Recognition And Neural Networks [Book Reviews].,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#WattaS97,https://doi.org/10.1109/TNN.1997.572122 +Jianyong Wang,Recurrent Neural Networks With Auxiliary Memory Units.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#WangZGY18,https://doi.org/10.1109/TNNLS.2017.2677968 +He Huang 0001,Further Result on Guaranteed H∞ Performance State Estimation of Delayed Static Neural Networks.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn26.html#HuangHC15,https://doi.org/10.1109/TNNLS.2014.2334511 +Bo Zhang,Programming based learning algorithms of neural networks with self-feedback connections.,1995,6,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn6.html#ZhangZW95,https://doi.org/10.1109/72.377985 +Yuxi Hou,Complexity-Reduced Scheme for Feature Extraction With Linear Discriminant Analysis.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn23.html#HouSMP12,https://doi.org/10.1109/TNNLS.2012.2194793 +Pedro J. Zufiria,On the discrete-time dynamics of the basic Hebbian neural network node.,2002,13,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn13.html#Zufiria02,https://doi.org/10.1109/TNN.2002.805752 +Alma Y. Alanis,Discrete-Time Adaptive Backstepping Nonlinear Control via High-Order Neural Networks.,2007,18,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn18.html#AlanisSL07,https://doi.org/10.1109/TNN.2007.899170 +Krzysztof Patan,"Corrigendum to ""Stability Analysis and the Stabilization of a Class of Discrete-Time Dynamic Neural Networks"".",2009,20,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn20.html#PatanP09,https://doi.org/10.1109/TNN.2008.2010937 +Chiara Brighenti,Auto-Regressive Processes Explained by Self-Organized Maps. Application to the Detection of Abnormal Behavior in Industrial Processes.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#BrighentiS11,https://doi.org/10.1109/TNN.2011.2169810 +Sheng-Sung Yang,Analysis of the Initial Values in Split-Complex Backpropagation Algorithm.,2008,19,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn19.html#YangSH08,https://doi.org/10.1109/TNN.2008.2000805 +Sapthotharan K. Nair,Data storage channel equalization using neural networks.,1997,8,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn8.html#NairM97,https://doi.org/10.1109/72.623206 +Eleonora Bilotta,Speeding Up Cellular Neural Network Processing Ability by Embodying Memristors.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn28.html#BilottaPV17,https://doi.org/10.1109/TNNLS.2015.2511818 +Russell C. Eberhart,Neural networks for engineering in medicine and biology.,1990,1,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn1.html#EberhartM90,https://doi.org/10.1109/72.80270 +Seong-Gon Kong,Differential competitive learning for centroid estimation and phoneme recognition.,1991,2,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn2.html#KongK91,https://doi.org/10.1109/72.80297 +Xian-Ming Zhang,New Lyapunov-Krasovskii Functionals for Global Asymptotic Stability of Delayed Neural Networks.,2009,20,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn20.html#ZhangH09,https://doi.org/10.1109/TNN.2009.2014160 +Bingfu Zhang,Dynamical system for computing the eigenvectors associated with the largest eigenvalue of a positive definite matrix.,1995,6,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn6.html#ZhangB95,https://doi.org/10.1109/72.377989 +Huaguang Zhang,Finite-Horizon H∞ Tracking Control for Unknown Nonlinear Systems With Saturating Actuators.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#ZhangCLJ18,https://doi.org/10.1109/TNNLS.2017.2669099 +Dongbin Zhao,MEC - A Near-Optimal Online Reinforcement Learning Algorithm for Continuous Deterministic Systems.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn26.html#ZhaoZ15,https://doi.org/10.1109/TNNLS.2014.2371046 +Tao Li 0011,Delay-derivative-dependent stability for delayed neural networks with unbound distributed delay.,2010,21,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn21.html#LiSFW10,https://doi.org/10.1109/TNN.2010.2051455 +Lorenzo Livi,Determination of the Edge of Criticality in Echo State Networks Through Fisher Information Maximization.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn29.html#LiviBA18,https://doi.org/10.1109/TNNLS.2016.2644268 +Qingfu Zhang,Energy function for the one-unit Oja algorithm.,1995,6,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn6.html#ZhangL95,https://doi.org/10.1109/72.410377 +Sel Brian Colak,Neural network using longitudinal modes of an injection laser with external feedback.,1996,7,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn7.html#ColakSL96,https://doi.org/10.1109/72.548167 +Ming Sun 0003,Novel hysteretic noisy chaotic neural network for broadcast scheduling problems in packet radio networks.,2010,21,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn21.html#SunZCXDW10,https://doi.org/10.1109/TNN.2010.2059041 +Yiu-ming Cheung,A Cooperative Learning-Based Clustering Approach to Lip Segmentation Without Knowing Segment Number.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn28.html#CheungLPC17,https://doi.org/10.1109/TNNLS.2015.2501547 +Xue-Bin Liang,A recurrent neural network for nonlinear optimization with a continuously differentiable objective function and bound constraints.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn11.html#LiangW00,https://doi.org/10.1109/72.883412 +George Nagy,Neural networks-then and now.,1991,2,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn2.html#Nagy91,https://doi.org/10.1109/72.80343 +Juwei Lu,Face recognition using LDA-based algorithms.,2003,14,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn14.html#LuPV03a,https://doi.org/10.1109/TNN.2002.806647 +Pierre Demartines,Curvilinear component analysis: a self-organizing neural network for nonlinear mapping of data sets.,1997,8,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn8.html#DemartinesH97,https://doi.org/10.1109/72.554199 +Martin A. Kraaijveld,A nonlinear projection method based on Kohonen's topology preserving maps.,1995,6,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn6.html#KraaijveldMJ95,https://doi.org/10.1109/72.377962 +Zhang Yi 0001,Multistability of discrete-time recurrent neural networks with unsaturating piecewise linear activation functions.,2004,15,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn15.html#YiT04,https://doi.org/10.1109/TNN.2004.824272 +Jianyong Sun,Simultaneous Bayesian Clustering and Feature Selection Through Student's t Mixtures Model.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#SunZKL18,https://doi.org/10.1109/TNNLS.2016.2619061 +Piyush C. Ojha,Enumeration of linear threshold functions from the lattice of hyperplane intersections.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn11.html#Ojha00,https://doi.org/10.1109/72.857765 +Teh-Lu Liao,Global stability for cellular neural networks with time delay.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn11.html#LiaoW00,https://doi.org/10.1109/72.883480 +Franck Dufrenois,A One-Class Kernel Fisher Criterion for Outlier Detection.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn26.html#Dufrenois15,https://doi.org/10.1109/TNNLS.2014.2329534 +Snorre Aunet,"Erratum to ""real-time reconfigurable linear threshold elements implemented in floating-gate CMOS"".",2003,14,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn14.html#AunetBS03a,https://doi.org/10.1109/TNN.2003.822842 +Chinchuan Chiu,Energy function analysis of dynamic programming neural networks.,1991,2,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn2.html#ChiuMS91,https://doi.org/10.1109/72.88161 +Yih-Guang Leu,Observer-based direct adaptive fuzzy-neural control for nonaffine nonlinear systems.,2005,16,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn16.html#LeuWL05,https://doi.org/10.1109/TNN.2005.849824 +Chih-Min Lin,Neural-network hybrid control for antilock braking systems.,2003,14,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn14.html#LinH03,https://doi.org/10.1109/TNN.2002.806950 +Sun-Yuan Kung,Decision-based neural networks with signal/image classification applications.,1995,6,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn6.html#KungT95,https://doi.org/10.1109/72.363439 +Jianting Cao,A robust approach to independent component analysis of signals with high-level noise measurements.,2003,14,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn14.html#CaoMACT03,https://doi.org/10.1109/TNN.2002.806648 +Mukul V. Shirvaikar,A neural network filter to detect small targets in high clutter backgrounds.,1995,6,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn6.html#ShirvaikarT95,https://doi.org/10.1109/72.363430 +Mike Livesey,Clamping in Boltzmann machines.,1991,2,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn2.html#Livesey91,https://doi.org/10.1109/72.80301 +Donghui Li,Comparison of different classification algorithms for underwater target discrimination.,2004,15,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn15.html#LiAR04,https://doi.org/10.1109/TNN.2003.820621 +Derong Liu,Editorial TNNLS Special Issues and Editorial Board Changes.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn25.html#Liu14,https://doi.org/10.1109/TNNLS.2013.2292722 +C. L. Philip Chen,Adaptive Consensus Control for a Class of Nonlinear Multiagent Time-Delay Systems Using Neural Networks.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn25.html#ChenWLW14,https://doi.org/10.1109/TNNLS.2014.2302477 +C. L. Philip Chen,A rapid supervised learning neural network for function interpolation and approximation.,1996,7,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn7.html#Chen96,https://doi.org/10.1109/72.536316 +Irwin King,Book Reviews.,2003,14,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn14.html#KingRD03,https://doi.org/10.1109/TNN.2003.814962 +Zhenyuan Guo,Global Exponential Synchronization of Multiple Memristive Neural Networks With Time Delay via Nonlinear Coupling.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn26.html#GuoYW15,https://doi.org/10.1109/TNNLS.2014.2354432 +Wei Bian,Smoothing Neural Network for Constrained Non-Lipschitz Optimization With Applications.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn23.html#BianC12,https://doi.org/10.1109/TNNLS.2011.2181867 +Bin Gu,A Robust Regularization Path Algorithm for ν-Support Vector Classification.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn28.html#GuS17,https://doi.org/10.1109/TNNLS.2016.2527796 +Tianping Chen,Λ4*-Stability of Nonlinear Positive Systems With Unbounded Time-Varying Delays.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn28.html#ChenL17,https://doi.org/10.1109/TNNLS.2016.2533392 +Jay A. Farrell,Stability and approximator convergence in nonparametric nonlinear adaptive control.,1998,9,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn9.html#Farrell98a,https://doi.org/10.1109/72.712182 +Evert C. Mos,Optical neuron by use of a laser diode with injection seeding and external optical feedback.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn11.html#MosHHBSW00,https://doi.org/10.1109/72.857778 +Qing-Long Han,Optimal Communication Network-Based H∞ Quantized Control With Packet Dropouts for a Class of Discrete-Time Neural Networks With Distributed Time Delay.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn27.html#HanLY16,https://doi.org/10.1109/TNNLS.2015.2411290 +Li Niu 0002,Action and Event Recognition in Videos by Learning From Heterogeneous Web Sources.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn28.html#NiuXCDX17,https://doi.org/10.1109/TNNLS.2016.2518700 +Yi Cao,Detecting Wash Trade in Financial Market Using Digraphs and Dynamic Programming.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn27.html#CaoLCBM16,https://doi.org/10.1109/TNNLS.2015.2480959 +Ling Shao 0001,Transfer Learning for Visual Categorization: A Survey.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn26.html#ShaoZL15,https://doi.org/10.1109/TNNLS.2014.2330900 +Paolo Campigotto,Active Learning of Pareto Fronts.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn25.html#CampigottoPB14,https://doi.org/10.1109/TNNLS.2013.2275918 +Fausto Acernese,Neural networks for blind-source separation of Stromboli explosion quakes.,2003,14,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn14.html#AcerneseCMRFT03,https://doi.org/10.1109/TNN.2002.806649 +Enric Junqué de Fortuny,Active Learning-Based Pedagogical Rule Extraction.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn26.html#FortunyM15,https://doi.org/10.1109/TNNLS.2015.2389037 +Ohad Asor,On the Additive Properties of the Fat-Shattering Dimension.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn25.html#AsorDK14,https://doi.org/10.1109/TNNLS.2014.2327065 +Haofan Yang,Optimized Structure of the Traffic Flow Forecasting Model With a Deep Learning Approach.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn28.html#YangDC17,https://doi.org/10.1109/TNNLS.2016.2574840 +Patrik Floréen,The convergence of Hamming memory networks.,1991,2,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn2.html#Floreen91,https://doi.org/10.1109/72.88164 +Eugenio Culurciello,A comparative study of access topologies for chip-level address-event communication channels.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#CulurcielloA03,https://doi.org/10.1109/TNN.2003.816385 +Bo Zhou,Boundedness and Complete Stability of Complex-Valued Neural Networks With Time Delay.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn24.html#ZhouS13,https://doi.org/10.1109/TNNLS.2013.2247626 +Paul H. Eaton,"Neurocontroller alternatives for ""fuzzy"" ball-and-beam systems with nonuniform nonlinear friction.",2000,11,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn11.html#EatonPW00,https://doi.org/10.1109/72.839012 +Zheng Rong Yang,An unsupervised probabilistic net for health inequalities analysis.,2003,14,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn14.html#YangH03,https://doi.org/10.1109/TNN.2002.806956 +Patrick Thiran,Quantization effects in digitally behaving circuit implementations of Kohonen networks.,1994,5,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn5.html#ThiranPHH94,https://doi.org/10.1109/72.286915 +Adnan Khashman,A Modified Backpropagation Learning Algorithm With Added Emotional Coefficients.,2008,19,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn19.html#Khashman08,https://doi.org/10.1109/TNN.2008.2002913 +Giuseppe Patanè,Fully automatic clustering system.,2002,13,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn13.html#PataneR02,https://doi.org/10.1109/TNN.2002.804226 +Ramasamy Saravanakumar,Stability of Markovian Jump Generalized Neural Networks With Interval Time-Varying Delays.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn28.html#SaravanakumarAA17,https://doi.org/10.1109/TNNLS.2016.2552491 +Michael R. W. Dawson,Equilibria of Perceptrons for Simple Contingency Problems.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn23.html#DawsonD12,https://doi.org/10.1109/TNNLS.2012.2199766 +Bogdan M. Wilamowski,Improved computation for Levenberg-Marquardt training.,2010,21,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn21.html#WilamowskiY10,https://doi.org/10.1109/TNN.2010.2045657 +David A. Elizondo,The linear separability problem: some testing methods.,2006,17,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn17.html#Elizondo06,https://doi.org/10.1109/TNN.2005.860871 +Donglian Qi,Exponential H INFINITY synchronization of general discrete-time chaotic neural networks with or without time delays.,2010,21,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn21.html#QiLQZ10,https://doi.org/10.1109/TNN.2010.2050904 +Marco Muselli,On sequential construction of binary neural networks.,1995,6,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn6.html#Muselli95,https://doi.org/10.1109/72.377973 +Monica Bianchini,Learning without local minima in radial basis function networks.,1995,6,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn6.html#BianchiniFG95a,https://doi.org/10.1109/72.377979 +Kuo Chun Lee,A parallel improvement algorithm for the bipartite subgraph problem.,1992,3,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn3.html#LeeFT92,https://doi.org/10.1109/72.105427 +Chih-Hsiu Wei,The multisynapse neural network and its application to fuzzy clustering.,2002,13,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn13.html#WeiF02,https://doi.org/10.1109/TNN.2002.1000127 +Hakan Cevikalp,Discriminative Common Vector Method With Kernels.,2006,17,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn17.html#CevikalpNW06,https://doi.org/10.1109/TNN.2006.881485 +Pai-Hsuen Chen,A study on SMO-type decomposition methods for support vector machines.,2006,17,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn17.html#ChenFL06,https://doi.org/10.1109/TNN.2006.875973 +Michael J. Skocik,On the Capabilities and Computational Costs of Neuron Models.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn25.html#SkocikL14,https://doi.org/10.1109/TNNLS.2013.2294016 +Enric Farguell,Boltzmann Machines Reduction by High-Order Decimation.,2008,19,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn19.html#FarguellMG08,https://doi.org/10.1109/TNN.2008.2003249 +Jing Chen,Local Coordinates Alignment With Global Preservation for Dimensionality Reduction.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn24.html#ChenML13,https://doi.org/10.1109/TNNLS.2012.2225844 +Dennis W. Ruck,The multilayer perceptron as an approximation to a Bayes optimal discriminant function.,1990,1,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn1.html#RuckRKOS90,https://doi.org/10.1109/72.80266 +Shanmugam Lakshmanan,Dynamical Analysis of the Hindmarsh-Rose Neuron With Time Delays.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn28.html#LakshmananLNPB17,https://doi.org/10.1109/TNNLS.2016.2557845 +Xin Chen 0021,Deep Manifold Learning Combined With Convolutional Neural Networks for Action Recognition.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#ChenWLXW18,https://doi.org/10.1109/TNNLS.2017.2740318 +Bin Zou 0002,k-Times Markov Sampling for SVMC.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#ZouXLTXY18,https://doi.org/10.1109/TNNLS.2016.2609441 +Mehmet Kerem Müezzinoglu,A Boolean Hebb rule for binary associative memory design.,2004,15,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn15.html#MuezzinogluG04,https://doi.org/10.1109/TNN.2003.820669 +Yves Crama,Detection of spurious states of neural networks.,1991,2,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn2.html#CramaHJ91,https://doi.org/10.1109/72.80307 +Yan-Jun Liu,Neural Approximation-Based Adaptive Control for a Class of Nonlinear Nonstrict Feedback Discrete-Time Systems.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn28.html#LiuLTC17,https://doi.org/10.1109/TNNLS.2016.2531089 +Robert E. Jenkins,A simplified neural network solution through problem decomposition: the case of the truck backer-upper.,1993,4,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn4.html#JenkinsY93,https://doi.org/10.1109/72.238326 +Nicolaos B. Karayiannis,A methodology for constructing fuzzy algorithms for learning vector quantization.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#Karayiannis97,https://doi.org/10.1109/72.572091 +Mohammad Hossein Rafiei,A New Neural Dynamic Classification Algorithm.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn28.html#RafieiA17,https://doi.org/10.1109/TNNLS.2017.2682102 +Chen Liu 0003,Modeling and Analysis of Beta Oscillations in the Basal Ganglia.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#LiuWLFL18,https://doi.org/10.1109/TNNLS.2017.2688426 +Janusz A. Starzyk,Self-organizing learning array.,2005,16,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn16.html#StarzykZL05,https://doi.org/10.1109/TNN.2004.842362 +Nico Görnitz,Transductive Regression for Data With Latent Dependence Structure.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#GornitzLVMN18,https://doi.org/10.1109/TNNLS.2017.2700429 +Gang Li,Quality Relevant Data-Driven Modeling and Monitoring of Multivariate Dynamic Processes: The Dynamic T-PLS Approach.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#LiLQZ11,https://doi.org/10.1109/TNN.2011.2165853 +Terry Windeatt,Embedded Feature Ranking for Ensemble MLP Classifiers.,2011,22,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn22.html#WindeattDS11,https://doi.org/10.1109/TNN.2011.2138158 +Alberto Ruiz,Nonlinear kernel-based statistical pattern analysis.,2001,12,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn12.html#RuizL01,https://doi.org/10.1109/72.896793 +Satish Kumar,Alien attractors and memory annihilation of structured sets in Hopfield networks.,1996,7,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn7.html#KumarSP96,https://doi.org/10.1109/72.536324 +Michael G. Paulin,Dynamics and the single spike.,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#PaulinHA04,https://doi.org/10.1109/TNN.2004.832814 +Jiancheng Lv,Global Convergence of GHA Learning Algorithm With Nonzero-Approaching Adaptive Learning Rates.,2007,18,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn18.html#LvYT07a,https://doi.org/10.1109/TNN.2007.895824 +Kirill Minkovich,HRLSim: A High Performance Spiking Neural Network Simulator for GPGPU Clusters.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn25.html#MinkovichTONCS14,https://doi.org/10.1109/TNNLS.2013.2276056 +Dries Geebelen,Reducing the Number of Support Vectors of SVM Classifiers Using the Smoothed Separable Case Approximation.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn23.html#GeebelenSV12,https://doi.org/10.1109/TNNLS.2012.2186314 +Hidehiro Nakano,Basic dynamics from a pulse-coupled network of autonomous integrate-and-fire chaotic circuits.,2002,13,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn13.html#NakanoS02,https://doi.org/10.1109/72.977276 +Hao Shen,Local Convergence Analysis of FastICA and Related Algorithms.,2008,19,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn19.html#ShenKH08,https://doi.org/10.1109/TNN.2007.915117 +Rudy Setiono,Extracting M-of-N rules from trained neural networks.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn11.html#Setiono00,https://doi.org/10.1109/72.839020 +Brijesh Verma,Fast training of multilayer perceptrons.,1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#Verma97,https://doi.org/10.1109/72.641454 +Chi Keong Goh,Hybrid Multiobjective Evolutionary Design for Artificial Neural Networks.,2008,19,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn19.html#GohTT08,https://doi.org/10.1109/TNN.2008.2000444 +Qingyao Wu,ML-TREE: A Tree-Structure-Based Approach to Multilabel Learning.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn26.html#WuYZCH15,https://doi.org/10.1109/TNNLS.2014.2315296 +Satoshi Yamada,Reinforcement learning to train a cooperative network with both discrete and continuous output neurons.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#YamadaNS98,https://doi.org/10.1109/72.728399 +Zhengguang Wu,Stability and Dissipativity Analysis of Static Neural Networks With Time Delay.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn23.html#WuLSC12,https://doi.org/10.1109/TNNLS.2011.2178563 +Xia Liu,Is Extreme Learning Machine Feasible? A Theoretical Assessment (Part I).,2015,26,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn26.html#LiuLFX15,https://doi.org/10.1109/TNNLS.2014.2335212 +Jinna Li,Off-Policy Reinforcement Learning for Synchronization in Multiagent Graphical Games.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn28.html#LiMCLX17,https://doi.org/10.1109/TNNLS.2016.2609500 +Yonghui Xia,Lag Synchronization of Unknown Chaotic Delayed Yang-Yang-Type Fuzzy Neural Networks With Noise Perturbation Based on Adaptive Control and Parameter Identification.,2009,20,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn20.html#XiaYH09,https://doi.org/10.1109/TNN.2009.2016842 +Burcu Erkmen,Conic section function neural network circuitry for offline signature recognition.,2010,21,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn21.html#ErkmenKVY10,https://doi.org/10.1109/TNN.2010.2040751 +Wenjun Xiong,Synchronization of Hierarchical Time-Varying Neural Networks Based on Asynchronous and Intermittent Sampled-Data Control.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn28.html#XiongPCZ17,https://doi.org/10.1109/TNNLS.2016.2607236 +Amir F. Atiya,Packet Loss Rate Prediction Using the Sparse Basis Prediction Model.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#AtiyaYCK07,https://doi.org/10.1109/TNN.2007.891681 +Juan Ignacio Arribas,A model selection algorithm for a posteriori probability estimation with neural networks.,2005,16,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn16.html#ArribasC05,https://doi.org/10.1109/TNN.2005.849826 +Y. Matsuyama,Multiple descent cost competition: restorable self-organization and multimedia information processing.,1998,9,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn9.html#Matsuyama98,https://doi.org/10.1109/72.655033 +Deliang Fan,Hierarchical Temporal Memory Based on Spin-Neurons and Resistive Memory for Energy-Efficient Brain-Inspired Computing.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn27.html#FanSSR16,https://doi.org/10.1109/TNNLS.2015.2462731 +Hao Xu 0002,Stochastic Optimal Controller Design for Uncertain Nonlinear Networked Control System via Neuro Dynamic Programming.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn24.html#XuJ13,https://doi.org/10.1109/TNNLS.2012.2234133 +Farzaneh Abdollahi,A stable neural network-based observer with application to flexible-joint manipulators.,2006,17,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn17.html#AbdollahiTP06,https://doi.org/10.1109/TNN.2005.863458 +Gail A. Carpenter,A fuzzy ARTMAP nonparametric probability estimator for nonstationary pattern recognition problems.,1995,6,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn6.html#CarpenterGR95,https://doi.org/10.1109/72.471374 +Jürgen Van Gorp,Learning neural networks with noisy inputs using the errors-in-variables approach.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn11.html#GorpSP00,https://doi.org/10.1109/72.839010 +Angelo Bernardini,Optimal decision boundaries for M-QAM signal formats using neural classifiers.,1998,9,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn9.html#BernardiniF98,https://doi.org/10.1109/72.661119 +Chih-Min Lin,Missile guidance law design using adaptive cerebellar model articulation controller.,2005,16,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn16.html#LinP05,https://doi.org/10.1109/TNN.2004.839358 +Chung-Ming Kuan,Convergence of learning algorithms with constant learning rates.,1991,2,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn2.html#KuanH91,https://doi.org/10.1109/72.134285 +Ko-Jen Hsiao,Multicriteria Similarity-Based Anomaly Detection Using Pareto Depth Analysis.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn27.html#Hsiao0CH16,https://doi.org/10.1109/TNNLS.2015.2466686 +Deyuan Meng,Finite-Time Consensus for Multiagent Systems With Cooperative and Antagonistic Interactions.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn27.html#MengJD16,https://doi.org/10.1109/TNNLS.2015.2424225 +Alessandro Mortara,A communication architecture tailored for analog VLSI artificial neural networks: intrinsic performance and limitations.,1994,5,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn5.html#MortaraV94,https://doi.org/10.1109/72.286916 +Decai Li,Chaotic Time Series Prediction Based on a Novel Robust Echo State Network.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn23.html#LiHW12,https://doi.org/10.1109/TNNLS.2012.2188414 +Xiaofeng Qi,Theoretical analysis of evolutionary algorithms with an infinite population size in continuous space. Part I: Basic properties of selection and mutation.,1994,5,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn5.html#QiP94,https://doi.org/10.1109/72.265965 +Fayao Liu,Structured Learning of Tree Potentials in CRF for Image Segmentation.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#LiuLQS18,https://doi.org/10.1109/TNNLS.2017.2690453 +Eyal Kolman,A New Approach to Knowledge-Based Design of Recurrent Neural Networks.,2008,19,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn19.html#KolmanM08,https://doi.org/10.1109/TNN.2008.2000393 +Yuanqing Li,Two conditions for equivalence of 0-norm solution and 1-norm solution in sparse representation.,2010,21,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn21.html#LiA10,https://doi.org/10.1109/TNN.2010.2049370 +Young-Keun Kim,Adaptive learning method in self-organizing map for edge preserving vector quantization.,1995,6,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn6.html#KimR95,https://doi.org/10.1109/72.363425 +Shouling He,A neural approach for control of nonlinear systems with feedback linearization.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#HeRU98,https://doi.org/10.1109/72.728391 +Huaguang Zhang,Optimal Tracking Control for a Class of Nonlinear Discrete-Time Systems With Time Delays Based on Heuristic Dynamic Programming.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#ZhangSWZ11,https://doi.org/10.1109/TNN.2011.2172628 +George Rigas,Hierarchical Similarity Transformations Between Gaussian Mixtures.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn24.html#RigasNGF13,https://doi.org/10.1109/TNNLS.2013.2267803 +Janusz A. Starzyk,Spatio-Temporal Memories for Machine Learning: A Long-Term Memory Organization.,2009,20,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn20.html#StarzykH09,https://doi.org/10.1109/TNN.2009.2012854 +Pablo González,Multiclass Support Vector Machines With Example-Dependent Costs Applied to Plankton Biomass Estimation.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn24.html#GonzalezABDGNLC13,https://doi.org/10.1109/TNNLS.2013.2271535 +Eduard Säckinger,Application of the ANNA neural network chip to high-speed character recognition.,1992,3,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn3.html#SackingerBBLJ92,https://doi.org/10.1109/72.129422 +Yoshua Bengio,Adaptive Importance Sampling to Accelerate Training of a Neural Probabilistic Language Model.,2008,19,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn19.html#BengioS08,https://doi.org/10.1109/TNN.2007.912312 +Rongni Yang,Exponential stability on stochastic neural networks with discrete interval and distributed delays.,2010,21,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn21.html#YangZS10,https://doi.org/10.1109/TNN.2009.2036610 +Bart Baesens,Guest Editorial White Box Nonlinear Prediction Models.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#BaesensMSZ11,https://doi.org/10.1109/TNN.2011.2177735 +Ian Phillip Morns,Analog design of a new neural network for optical character recognition.,1999,10,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn10.html#MornsD99,https://doi.org/10.1109/72.774269 +Hatem A. Fayed,A Novel Template Reduction Approach for the K -Nearest Neighbor Method.,2009,20,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn20.html#FayedA09,https://doi.org/10.1109/TNN.2009.2018547 +Taghi M. Khoshgoftaar,Supervised neural network modeling: an empirical investigation into learning from imbalanced data with labeling errors.,2010,21,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn21.html#KhoshgoftaarHN10,https://doi.org/10.1109/TNN.2010.2042730 +Stefano Melacci,Unsupervised Learning by Minimal Entropy Encoding.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn23.html#MelacciG12,https://doi.org/10.1109/TNNLS.2012.2216899 +Faqiang Wang,A Kernel Classification Framework for Metric Learning.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn26.html#WangZ0MZ15,https://doi.org/10.1109/TNNLS.2014.2361142 +Oswaldo Ludwig,Novel maximum-margin training algorithms for supervised neural networks.,2010,21,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn21.html#LudwigN10,https://doi.org/10.1109/TNN.2010.2046423 +Chengwei Wu,Observer-Based Adaptive Fault-Tolerant Tracking Control of Nonlinear Nonstrict-Feedback Systems.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#WuLXW18,https://doi.org/10.1109/TNNLS.2017.2712619 +Jianquan Lu,Pinning Stabilization of Linearly Coupled Stochastic Neural Networks via Minimum Number of Controllers.,2009,20,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn20.html#LuHW09,https://doi.org/10.1109/TNN.2009.2027810 +Huseyin A. Inan,Convolutive Bounded Component Analysis Algorithms for Independent and Dependent Source Separation.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn26.html#InanE15,https://doi.org/10.1109/TNNLS.2014.2320817 +Xiaoyong Zeng,A Regularized SNPOM for Stable Parameter Estimation of RBF-AR(X) Model.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#ZengPZ18,https://doi.org/10.1109/TNNLS.2016.2641475 +Ahana Gangopadhyay,Extended Polynomial Growth Transforms for Design and Training of Generalized Support Vector Machines.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#GangopadhyayCC18,https://doi.org/10.1109/TNNLS.2017.2690434 +Yue Joseph Wang,Probabilistic principal component subspaces: a hierarchical finite mixture model for data visualization.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn11.html#WangLFK00,https://doi.org/10.1109/72.846734 +Sheng Li 0001,Learning Robust and Discriminative Subspace With Low-Rank Constraints.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn27.html#LiF16,https://doi.org/10.1109/TNNLS.2015.2464090 +Yu Lin,A fuzzy-based approach to remove clock skew and reset from one-way delay measurement.,2005,16,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn16.html#LinWKCL05,https://doi.org/10.1109/TNN.2005.853413 +John Sum,Convergence Analyses on On-Line Weight Noise Injection-Based Training Algorithms for MLPs.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn23.html#SumLH12a,https://doi.org/10.1109/TNNLS.2012.2210243 +Yoan Miche,OP-ELM: optimally pruned extreme learning machine.,2010,21,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn21.html#MicheSBSJL10,https://doi.org/10.1109/TNN.2009.2036259 +Ling Shao 0001,Learning Deep and Wide: A Spectral Method for Learning Deep Networks.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn25.html#ShaoWL14,https://doi.org/10.1109/TNNLS.2014.2308519 +Yunhao Yuan,Multiset Canonical Correlations Using Globality Preserving Projections With Applications to Feature Extraction and Recognition.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn25.html#YuanS14,https://doi.org/10.1109/TNNLS.2013.2288062 +Sang-Hoon Oh,Sensitivity analysis of single hidden-layer neural networks with threshold functions.,1995,6,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn6.html#OhL95,https://doi.org/10.1109/72.392264 +Gavin C. Cawley,An Empirical Evaluation of the Fuzzy Kernel Perceptron.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#Cawley07,https://doi.org/10.1109/TNN.2007.891624 +Homayoun Yousefi'zadeh,Dynamic neural-based buffer management for queuing systems with self-similar characteristics.,2005,16,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn16.html#YousefizadehJ05,https://doi.org/10.1109/TNN.2005.853417 +Vimal Singh,A generalized LMI-based approach to the global asymptotic stability of delayed cellular neural networks.,2004,15,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn15.html#Singh04,https://doi.org/10.1109/TNN.2003.820616 +Zhengguang Wu,Sampled-Data Synchronization of Chaotic Lur'e Systems With Time Delays.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn24.html#WuSSC13a,https://doi.org/10.1109/TNNLS.2012.2236356 +Franck Dufrenois,Bounded Influence Support Vector Regression for Robust Single-Model Estimation.,2009,20,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn20.html#DufrenoisCH09,https://doi.org/10.1109/TNN.2009.2024202 +Weisheng Chen,Consensus-Based Distributed Cooperative Learning From Closed-Loop Neural Control Systems.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn26.html#ChenHZ15,https://doi.org/10.1109/TNNLS.2014.2315535 +Chih-Jen Lin,On the convergence of the decomposition method for support vector machines.,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#Lin01,https://doi.org/10.1109/72.963765 +Marko Jankovic,Modulated Hebb-Oja learning Rule-a method for principal subspace analysis.,2006,17,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn17.html#JankovicO06,https://doi.org/10.1109/TNN.2005.863455 +Bendix Schneider,Using Digital Masks to Enhance the Bandwidth Tolerance and Improve the Performance of On-Chip Reservoir Computing Systems.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn27.html#SchneiderDB16,https://doi.org/10.1109/TNNLS.2015.2498763 +Zhiguang Feng,Stability and Dissipativity Analysis of Distributed Delay Cellular Neural Networks.,2011,22,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn22.html#FengL11,https://doi.org/10.1109/TNN.2011.2128341 +C. Citterio,Function approximation-fast-convergence neural approach based on spectral analysis.,1999,10,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn10.html#CitterioPPR99,https://doi.org/10.1109/72.774207 +Ben Niu 0003,Adaptive Backstepping-Based Neural Tracking Control for MIMO Nonlinear Switched Systems Subject to Input Delays.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#NiuL18,https://doi.org/10.1109/TNNLS.2017.2690465 +Ramazan Gencay,Model Risk for European-Style Stock Index Options.,2007,18,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn18.html#GencayG07,https://doi.org/10.1109/TNN.2006.883005 +José Antonio Villacorta-Atienza,Neural Network Architecture for Cognitive Navigation in Dynamic Environments.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn24.html#Villacorta-AtienzaM13,https://doi.org/10.1109/TNNLS.2013.2271645 +Gyu Moon,VLSI implementation of synaptic weighting and summing in pulse coded neural-type cells.,1992,3,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn3.html#MoonZN92,https://doi.org/10.1109/72.129412 +Tom Auld,Bayesian Neural Networks for Internet Traffic Classification.,2007,18,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn18.html#AuldMG07,https://doi.org/10.1109/TNN.2006.883010 +Guoxu Zhou,Mixing Matrix Estimation From Sparse Mixtures With Unknown Number of Sources.,2011,22,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn22.html#ZhouYXY11,https://doi.org/10.1109/TNN.2010.2091427 +Rory G. Mulvaney,Generalized haar DWT and transformations between decision trees and neural networks.,2006,17,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn17.html#MulvaneyP06,https://doi.org/10.1109/TNN.2005.860830 +B. Srinivasan,Back propagation through adjoints for the identification of nonlinear dynamic systems using recurrent neural models.,1994,5,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn5.html#SrinivasanPR94,https://doi.org/10.1109/72.279186 +Manvan A. Jabri,Predicting the number of contacts and dimensions of full-custom integrated circuit blocks using neural network techniques.,1992,3,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn3.html#JabriL92,https://doi.org/10.1109/72.105428 +Richard E. Nordgren,An analytical comparison of a neural network and a model-based adaptive controller.,1993,4,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn4.html#NordgrenM93,https://doi.org/10.1109/72.238322 +Yalda Mohsenzadeh,Gaussian Kernel Width Optimization for Sparse Bayesian Learning.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn26.html#MohsenzadehS15,https://doi.org/10.1109/TNNLS.2014.2321134 +Antti Honkela,Variational learning and bits-back coding: an information-theoretic view to Bayesian learning.,2004,15,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn15.html#HonkelaV04,https://doi.org/10.1109/TNN.2004.828762 +Scott Weaver,An analytical framework for local feedforward networks.,1998,9,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn9.html#WeaverBP98,https://doi.org/10.1109/72.668889 +Zhenwei Liu,Novel Stability Analysis for Recurrent Neural Networks With Multiple Delays via Line Integral-Type L-K Functional.,2010,21,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn21.html#LiuZZ10,https://doi.org/10.1109/TNN.2010.2054107 +Kadim Tasdemir,Topology-Based Hierarchical Clustering of Self-Organizing Maps.,2011,22,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn22.html#TasdemirMT11,https://doi.org/10.1109/TNN.2011.2107527 +Shida Liu,Data-Driven Modeling for UGI Gasification Processes via an Enhanced Genetic BP Neural Network With Link Switches.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn27.html#LiuHY16,https://doi.org/10.1109/TNNLS.2015.2491325 +Franco Scarselli,Computational Capabilities of Graph Neural Networks.,2009,20,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn20.html#ScarselliGTHM09a,https://doi.org/10.1109/TNN.2008.2005141 +Damon A. Miller,A dynamical system perspective of structural learning with forgetting.,1998,9,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn9.html#MillerZ98,https://doi.org/10.1109/72.668892 +Prashanta Kumar Patra,File access prediction using neural networks.,2010,21,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn21.html#PatraSMS10,https://doi.org/10.1109/TNN.2010.2043683 +Monica Bianchini,Recursive processing of cyclic graphs.,2006,17,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn17.html#BianchiniGSS06,https://doi.org/10.1109/TNN.2005.860873 +Terence Kwok,A noisy self-organizing neural network with bifurcation dynamics for combinatorial optimization.,2004,15,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn15.html#KwokS04,https://doi.org/10.1109/TNN.2002.806621 +José Roberto Castilho Piqueira,Computing with phase locked loops: choosing gains and delays.,2003,14,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn14.html#PiqueiraOM03,https://doi.org/10.1109/TNN.2002.806633 +Roberto Battiti,Training neural nets with the reactive tabu search.,1995,6,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn6.html#BattitiT95,https://doi.org/10.1109/72.410361 +Chung-Yu Wu,CMOS current-mode neural associative memory design with on-chip learning.,1996,7,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn7.html#WuL96,https://doi.org/10.1109/72.478401 +Peiman G. Maghami,Design of neural networks for fast convergence and accuracy: dynamics and control.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn11.html#MaghamiS00,https://doi.org/10.1109/72.822515 +Mauro Di Marco,Global Robust Stability Criteria for Interval Delayed Full-Range Cellular Neural Networks.,2011,22,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn22.html#MarcoGP11,https://doi.org/10.1109/TNN.2011.2110661 +Garrett E. Katz,Using Directional Fibers to Locate Fixed Points of Recurrent Neural Networks.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#KatzR18,https://doi.org/10.1109/TNNLS.2017.2733544 +H. S. Ng,Analog and digital FPGA implementation of BRIN for optimization problems.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#NgL03,https://doi.org/10.1109/TNN.2003.816375 +Howard C. Card,Gaussian activation functions using Markov chains.,2002,13,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn13.html#CardM02,https://doi.org/10.1109/TNN.2002.804285 +Chun-Liang Lin,Control of perturbed systems using neural networks.,1998,9,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn9.html#Lin98,https://doi.org/10.1109/72.712189 +Xuyang Lou,Delay-Dependent Criteria for Global Robust Periodicity of Uncertain Switched Recurrent Neural Networks With Time-Varying Delay.,2008,19,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn19.html#LouC08,https://doi.org/10.1109/TNN.2007.910734 +Sheng Ma,Fast training of recurrent networks based on the EM algorithm.,1998,9,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn9.html#MaJ98,https://doi.org/10.1109/72.655025 +Wuneng Zhou,Mode and Delay-Dependent Adaptive Exponential Synchronization in pth Moment for Stochastic Delayed Neural Networks With Markovian Switching.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn23.html#ZhouTGJS12,https://doi.org/10.1109/TNNLS.2011.2179556 +Qing Ma,Adaptive associative memories capable of pattern segmentation.,1996,7,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn7.html#Ma96,https://doi.org/10.1109/72.548171 +Yuhu Wu,Policy Iteration Algorithm for Optimal Control of Stochastic Logical Dynamical Systems.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#WuS18,https://doi.org/10.1109/TNNLS.2017.2661863 +Ravi Kothari,Learning from labeled and unlabeled data using a minimal number of queries.,2003,14,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn14.html#KothariJ03,https://doi.org/10.1109/TNN.2003.820446 +Dhananjay S. Phatak,Connectivity and performance tradeoffs in the cascade correlation learning architecture.,1994,5,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn5.html#PhatakK94,https://doi.org/10.1109/72.329690 +Chih-Lyang Hwang,Recurrent-Neural-Network-Based Multivariable Adaptive Control for a Class of Nonlinear Dynamic Systems With Time-Varying Delay.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn27.html#HwangJ16,https://doi.org/10.1109/TNNLS.2015.2442437 +Cheng-Jian Lin,Reinforcement learning for an ART-based fuzzy adaptive learning control network.,1996,7,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn7.html#LinL96,https://doi.org/10.1109/72.501728 +ángel Navia-Vázquez,Distributed support vector machines.,2006,17,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn17.html#Navia-VazquezGPN06,https://doi.org/10.1109/TNN.2006.875968 +David DeMers,Canonical parameterization of excess motor degrees of freedom with self-organizing maps.,1996,7,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn7.html#DeMersK96,https://doi.org/10.1109/72.478391 +Marco Russo,Crossover enhancements in GEFREX.,2005,16,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn16.html#Russo05,https://doi.org/10.1109/TNN.2005.849841 +Ying Tan,Nonlinear blind source separation using a radial basis function network.,2001,12,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn12.html#TanWZ01,https://doi.org/10.1109/72.896801 +Masayuki Karasuyama,Multiple Graph Label Propagation by Sparse Integration.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn24.html#KarasuyamaM13,https://doi.org/10.1109/TNNLS.2013.2271327 +Liuwei Zhou,Adaptive Exponential Synchronization of Multislave Time-Delayed Recurrent Neural Networks With Lévy Noise and Regime Switching.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn28.html#ZhouZWZS17,https://doi.org/10.1109/TNNLS.2016.2609439 +Dongdong Zheng,Identification and Control for Singularly Perturbed Systems Using Multitime-Scale Neural Networks.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn28.html#ZhengXRN17,https://doi.org/10.1109/TNNLS.2015.2508738 +Nikolaos Gianniotis,Visualization of Tree-Structured Data Through Generative Topographic Mapping.,2008,19,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn19.html#GianniotisT08,https://doi.org/10.1109/TNN.2008.2001000 +Huaguang Zhang,Data-Core-Based Fuzzy Min-Max Neural Network for Pattern Classification.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#ZhangLMW11,https://doi.org/10.1109/TNN.2011.2175748 +Junfei Qiao,Growing Echo-State Network With Multiple Subreservoirs.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn28.html#QiaoLHL17,https://doi.org/10.1109/TNNLS.2016.2514275 +Qingfeng Liu,A Novel Locally Linear KNN Method With Applications to Visual Recognition.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn28.html#LiuL17,https://doi.org/10.1109/TNNLS.2016.2572204 +Marcello Pelillo,Guest Editorial Special Section on Learning in Non-(geo)metric Spaces.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn27.html#PelilloHLM16,https://doi.org/10.1109/TNNLS.2016.2522770 +Oyebade K. Oyedotun,Prototype-Incorporated Emotional Neural Network.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#OyedotunK18,https://doi.org/10.1109/TNNLS.2017.2730179 +Bernabé Linares-Barranco,Compact low-power calibration mini-DACs for neural arrays with programmable weights.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#Linares-BarrancoSS03,https://doi.org/10.1109/TNN.2003.816370 +Kondalsamy Gopalsamy,Delay-independent stability in bidirectional associative memory networks.,1994,5,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn5.html#GopalsamyH94,https://doi.org/10.1109/72.329700 +Shengzhi Du,Sensitivity to noise in bidirectional associative memory (BAM).,2005,16,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn16.html#DuCYZ05,https://doi.org/10.1109/TNN.2005.849832 +Bo Liu 0009,Generalized Halanay Inequalities and Their Applications to Neural Networks With Unbounded Time-Varying Delays.,2011,22,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn22.html#LiuLC11,https://doi.org/10.1109/TNN.2011.2160987 +Xiaowei Feng,A Novel Unified and Self-Stabilizing Algorithm for Generalized Eigenpairs Extraction.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn28.html#FengKMS17,https://doi.org/10.1109/TNNLS.2016.2614130 +Jun Wang 0002,A Lagrangian network for kinematic control of redundant robot manipulators.,1999,10,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn10.html#WangHJ99,https://doi.org/10.1109/72.788651 +Guang-Bin Huang,Fast Modular network implementation for support vector machines.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#HuangMSH05,https://doi.org/10.1109/TNN.2005.857952 +Jin Young Choi,Adaptive observer backstepping control using neural networks.,2001,12,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn12.html#ChoiF01,https://doi.org/10.1109/72.950139 +S. Easter Selvan,Accurate Estimation of ICA Weight Matrix by Implicit Constraint Imposition Using Lie Group.,2009,20,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn20.html#SelvanMXS09,https://doi.org/10.1109/TNN.2009.2027017 +Ronay Ak,An Interval-Valued Neural Network Approach for Uncertainty Quantification in Short-Term Wind Speed Prediction.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn26.html#AkVZ15,https://doi.org/10.1109/TNNLS.2015.2396933 +Xin Geng,Individual Stable Space: An Approach to Face Recognition Under Uncontrolled Conditions.,2008,19,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn19.html#GengZS08,https://doi.org/10.1109/TNN.2008.2000275 +Bruce A. Whitehead,Cooperative-competitive genetic evolution of radial basis function centers and widths for time series prediction.,1996,7,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn7.html#WhiteheadC96,https://doi.org/10.1109/72.508930 +Katerine Díaz-Chito,Incremental Generalized Discriminative Common Vectors for Image Classification.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn26.html#Diaz-ChitoFV15,https://doi.org/10.1109/TNNLS.2014.2356856 +Xia Hong 0001,A robust nonlinear identification algorithm using PRESS statistic and forward regression.,2003,14,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn14.html#HongSW03,https://doi.org/10.1109/TNN.2003.809422 +Milind R. Naphade,Extracting semantics from audio-visual content: the final frontier in multimedia retrieval.,2002,13,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn13.html#NaphadeH02,https://doi.org/10.1109/TNN.2002.1021881 +Jyh-Shing Roger Jang,Author's Reply.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#Jang98,https://doi.org/10.1109/TNN.1998.728404 +George M. Georgiou,The Field of Values of a Matrix and Neural Networks.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn25.html#Georgiou14,https://doi.org/10.1109/TNNLS.2013.2293287 +Alessandro Mortara,A 12-transistor PFM demodulator for analog neural networks communication.,1995,6,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn6.html#MortaraV95,https://doi.org/10.1109/72.410373 +Xiwei Liu,Synchronization of Linearly Coupled Networks With Delays via Aperiodically Intermittent Pinning Control.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn26.html#LiuC15a,https://doi.org/10.1109/TNNLS.2014.2383174 +Shaofu Yang,Global Synchronization of Multiple Recurrent Neural Networks With Time Delays via Impulsive Interactions.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn28.html#YangGW17,https://doi.org/10.1109/TNNLS.2016.2549703 +Masaki Kawamura,Dynamics of selective recall in an associative memory model with one-to-many associations.,1999,10,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn10.html#KawamuraOH99,https://doi.org/10.1109/72.761729 +Ligang Wu,Exponential stability analysis for delayed neural networks with switching parameters: average dwell time approach.,2010,21,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn21.html#WuFZ10,https://doi.org/10.1109/TNN.2010.2056383 +Yangtao Wang,K-MEAP: Multiple Exemplars Affinity Propagation With Specified K Clusters.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn27.html#WangC16,https://doi.org/10.1109/TNNLS.2015.2495268 +Shukai Duan,Impulsive Effects and Stability Analysis on Memristive Neural Networks With Variable Delays.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn28.html#DuanWWHL17,https://doi.org/10.1109/TNNLS.2015.2497319 +Chao Chen,Optimization of a Multilayer Neural Network by Using Minimal Redundancy Maximal Relevance-Partial Mutual Information Clustering With Least Square Regression.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn26.html#ChenY15,https://doi.org/10.1109/TNNLS.2014.2334599 +Youshen Xia,A new neural network for solving linear programming problems and its application.,1996,7,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn7.html#Xia96,https://doi.org/10.1109/72.485686 +Shuai Li 0002,Kinematic Control of Redundant Manipulators Using Neural Networks.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn28.html#LiZJ17,https://doi.org/10.1109/TNNLS.2016.2574363 +Youshen Xia,Discrete-Time Neural Network for Fast Solving Large Linear L1 Estimation Problems and its Application to Image Restoration.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn23.html#XiaSZ12,https://doi.org/10.1109/TNNLS.2012.2184800 +Ping Zhou 0003,Data-Driven Robust M-LS-SVR-Based NARX Modeling for Estimation and Control of Molten Iron Quality Indices in Blast Furnace Ironmaking.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#ZhouGWC18,https://doi.org/10.1109/TNNLS.2017.2749412 +Jaroslav Stark,A neural network to compute the Hutchinson metric in fractal image processing.,1991,2,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn2.html#Stark91,https://doi.org/10.1109/72.80303 +Ramin Pashaie,Self-Organization in a Parametrically Coupled Logistic Map Network: A Model for Information Processing in the Visual Cortex.,2009,20,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn20.html#PashaieF09,https://doi.org/10.1109/TNN.2008.2010703 +Christian Mayr,Gabor-Like Image Filtering Using a Neural Microcircuit.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#MayrHS07,https://doi.org/10.1109/TNN.2007.891687 +Dongdong Chen,Graph Regularized Restricted Boltzmann Machine.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#ChenLY18,https://doi.org/10.1109/TNNLS.2017.2692773 +Chanchal Chatterjee,Self-organizing algorithms for generalized eigen-decomposition.,1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#ChatterjeeRRZ97,https://doi.org/10.1109/72.641473 +Partha Pratim Kanjilal,On the application of orthogonal transformation for the design and analysis of feedforward networks.,1995,6,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn6.html#KanjilalB95,https://doi.org/10.1109/72.410351 +Jin-Yan Li,"Comments on ""Stochastic choice of basis functions in adaptive function approximation and the functional-link net"" [and reply].",1997,8,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn8.html#LiCIP97,https://doi.org/10.1109/72.557702 +V. Gimenez-Martinez,A modified Hopfield auto-associative memory with improved capacity.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn11.html#Gimenez-Martinez00,https://doi.org/10.1109/72.857768 +Michael Heiss,Error-minimizing dead zone for basis function networks.,1996,7,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn7.html#Heiss96,https://doi.org/10.1109/72.548178 +Azalia Mirhoseini,RankMap: A Framework for Distributed Learning From Dense Data Sets.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#MirhoseiniDSBK18,https://doi.org/10.1109/TNNLS.2016.2631581 +M. H. Hassoun,Books in Brief.,1999,10,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn10.html#Hassoun99,https://doi.org/10.1109/TNN.1999.750579 +Seiji Miyoshi,Storage capacity diverges with synaptic efficiency in an associative memory model with synaptic delay and pruning.,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#MiyoshiO04,https://doi.org/10.1109/TNN.2004.832711 +Qing Song 0001,Robust Neural Network Tracking Controller Using Simultaneous Perturbation Stochastic Approximation.,2008,19,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn19.html#SongSSN08,https://doi.org/10.1109/TNN.2007.912315 +Ralf Möller 0002,Coupled principal component analysis.,2004,15,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn15.html#MollerK04,https://doi.org/10.1109/TNN.2003.820439 +Domingos Savio Pereira Salazar,Continuous Dynamical Combination of Short and Long-Term Forecasts for Nonstationary Time Series.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn25.html#SalazarAA14,https://doi.org/10.1109/TNNLS.2013.2273574 +Youshen Xia,A Bi-Projection Neural Network for Solving Constrained Quadratic Optimization Problems.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn27.html#Xia016,https://doi.org/10.1109/TNNLS.2015.2500618 +Amir Sarajedini,Conditional probability density function estimation with sigmoidal neural networks.,1999,10,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn10.html#SarajediniHC99,https://doi.org/10.1109/72.750544 +Baoyun Wang,A transiently chaotic neural-network implementation of the CDMA multiuser detector.,1999,10,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn10.html#WangNH99,https://doi.org/10.1109/72.788665 +Martin Bohner,Brain state in a convex body.,1995,6,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn6.html#BohnerH95,https://doi.org/10.1109/72.410350 +Shin-ichi Horikawa,On fuzzy modeling using fuzzy neural networks with the back-propagation algorithm.,1992,3,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn3.html#HorikawaFU92,https://doi.org/10.1109/72.159069 +Miguel C. Soriano,Delay-Based Reservoir Computing: Noise Effects in a Combined Analog and Digital Implementation.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn26.html#SorianoOKADPS15,https://doi.org/10.1109/TNNLS.2014.2311855 +Whye Loon Tung,eFSM: a novel online neural-fuzzy semantic memory model.,2010,21,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn21.html#TungQ10,https://doi.org/10.1109/TNN.2009.2035116 +Xiaolin Hu,A New Recurrent Neural Network for Solving Convex Quadratic Programming Problems With an Application to the k -Winners-Take-All Problem.,2009,20,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn20.html#HuZ09,https://doi.org/10.1109/TNN.2008.2011266 +Huanqing Wang,Robust Adaptive Neural Tracking Control for a Class of Stochastic Nonlinear Interconnected Systems.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn27.html#WangLL16,https://doi.org/10.1109/TNNLS.2015.2412035 +James Donald,An adaptive neural processing node.,1993,4,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn4.html#DonaldA93,https://doi.org/10.1109/72.217183 +Ezequiel López-Rubio,Improving the Quality of Self-Organizing Maps by Self-Intersection Avoidance.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn24.html#Lopez-Rubio13,https://doi.org/10.1109/TNNLS.2013.2254127 +Ke Chen 0001,A modified HME architecture for text-dependent speaker identification.,1996,7,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn7.html#ChenXC96,https://doi.org/10.1109/72.536325 +Weiwei Shi 0003,Improving CNN Performance Accuracies With Min-Max Objective.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#ShiGTWZ18,https://doi.org/10.1109/TNNLS.2017.2705682 +Wray L. Buntine,Computing second derivatives in feed-forward networks: a review.,1994,5,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn5.html#BuntineW94,https://doi.org/10.1109/72.286919 +Vicente Zarzoso,Robust independent component analysis by iterative maximization of the kurtosis contrast with algebraic optimal step size.,2010,21,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn21.html#ZarzosoC10,https://doi.org/10.1109/TNN.2009.2035920 +Yun Chen,Stability and L2 Performance Analysis of Stochastic Delayed Neural Networks.,2011,22,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn22.html#ChenZ11,https://doi.org/10.1109/TNN.2011.2163319 +Maciej Jaworski,New Splitting Criteria for Decision Trees in Stationary Data Streams.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#JaworskiDR18,https://doi.org/10.1109/TNNLS.2017.2698204 +Guoning Hu,Monaural speech segregation based on pitch tracking and amplitude modulation.,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#HuW04,https://doi.org/10.1109/TNN.2004.832812 +S. Guarnieri,Multilayer feedforward networks with adaptive spline activation function.,1999,10,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn10.html#GuarnieriPU99,https://doi.org/10.1109/72.761726 +Heidar A. Talebi,A Recurrent Neural-Network-Based Sensor and Actuator Fault Detection and Isolation for Nonlinear Systems With Application to the Satellite's Attitude Control Subsystem.,2009,20,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn20.html#TalebiKT09,https://doi.org/10.1109/TNN.2008.2004373 +Victor Boyarshinov,Efficient Optimal Linear Boosting of a Pair of Classifiers.,2007,18,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn18.html#BoyarshinovM07,https://doi.org/10.1109/TNN.2006.881707 +Daouren Akhmetov,"Errata to ""fuzzy-neural network with general parameter adaptation for modeling of nonlinear time-series"".",2001,12,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn12.html#AkhmetovDO01a,https://doi.org/10.1109/TNN.2001.914542 +Paolo Arena,Learning Anticipation via Spiking Networks: Application to Navigation Control.,2009,20,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn20.html#ArenaFFP09,https://doi.org/10.1109/TNN.2008.2005134 +Masaki Kobayashi,Decomposition of Rotor Hopfield Neural Networks Using Complex Numbers.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#Kobayashi18a,https://doi.org/10.1109/TNNLS.2017.2657781 +Andrew R. Webb,Shape-adaptive radial basis functions.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#WebbS98,https://doi.org/10.1109/72.728359 +Lorenzo Livi,Entropic One-Class Classifiers.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn26.html#LiviSP15,https://doi.org/10.1109/TNNLS.2015.2418332 +Jan Faigl,Autonomous Data Collection Using a Self-Organizing Map.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#FaiglH18,https://doi.org/10.1109/TNNLS.2017.2678482 +Sheng Chen 0001,The relevance vector machine technique for channel equalization application.,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#ChenGH01,https://doi.org/10.1109/72.963792 +Norikazu Takahashi,Rigorous proof of termination of SMO algorithm for support vector Machines.,2005,16,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn16.html#TakahashiN05,https://doi.org/10.1109/TNN.2005.844857 +Yu Jiang 0003,Approximate Dynamic Programming for Optimal Stationary Control With Control-Dependent Noise.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#JiangJ11,https://doi.org/10.1109/TNN.2011.2165729 +Xia Hong 0001,Nonlinear model structure design and construction using orthogonal least squares and D-optimality design.,2002,13,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn13.html#HongH02,https://doi.org/10.1109/TNN.2002.1031959 +Xinge You,Robust Nonnegative Patch Alignment for Dimensionality Reduction.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn26.html#YouOCLZT15,https://doi.org/10.1109/TNNLS.2015.2393886 +Ezequiel López-Rubio,Growing Hierarchical Probabilistic Self-Organizing Graphs.,2011,22,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn22.html#Lopez-RubioP11,https://doi.org/10.1109/TNN.2011.2138159 +J. L. Johnson,PCNN models and applications.,1999,10,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn10.html#JohnsonP99,https://doi.org/10.1109/72.761706 +S. Sathiya Keerthi,Efficient tuning of SVM hyperparameters using radius/margin bound and iterative algorithms.,2002,13,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn13.html#Keerthi02,https://doi.org/10.1109/TNN.2002.1031955 +Xiaofeng Liao,Exponential Convergence Estimates for a Single Neuron System of Neutral-Type.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn25.html#LiaoLH14,https://doi.org/10.1109/TNNLS.2013.2290698 +Eduard Säckinger,A board system for high-speed image analysis and neural networks.,1996,7,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn7.html#SackingerG96,https://doi.org/10.1109/72.478407 +Yuanmei Wang,Vector-entropy optimization-based neural-network approach to image reconstruction from projections.,1997,8,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn8.html#WangW97,https://doi.org/10.1109/72.623202 +K. P. Venugopal,Improving the dynamic response of neural network controllers using velocity reference feedback.,1993,4,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn4.html#VenugopalS93,https://doi.org/10.1109/72.207623 +Alfred Jean Philippe Lauret,A node pruning algorithm based on a Fourier amplitude sensitivity test method.,2006,17,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn17.html#LauretFM06,https://doi.org/10.1109/TNN.2006.871707 +Hansenclever de F. Bassani,Dimension Selective Self-Organizing Maps With Time-Varying Structure for Subspace and Projected Clustering.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn26.html#BassaniA15,https://doi.org/10.1109/TNNLS.2014.2315571 +Chenliang Wang,Distributed Adaptive Containment Control for a Class of Nonlinear Multiagent Systems With Input Quantization.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#WangWHWZ18,https://doi.org/10.1109/TNNLS.2017.2696966 +John Sum,Yet another algorithm which can generate topography map.,1997,8,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn8.html#SumLCX97,https://doi.org/10.1109/72.623221 +Jörg A. Walter,Implementation of self-organizing neural networks for visuo-motor control of an industrial robot.,1993,4,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn4.html#WalterS93,https://doi.org/10.1109/72.182698 +Youshen Xia,A general projection neural network for solving monotone variational inequalities and related optimization problems.,2004,15,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn15.html#XiaW04,https://doi.org/10.1109/TNN.2004.824252 +Scott D. G. Smith,A deployed engineering design retrieval system using neural networks.,1997,8,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn8.html#SmithEAC97,https://doi.org/10.1109/72.595882 +Thuan Q. Huynh,Guiding Hidden Layer Representations for Improved Rule Extraction From Neural Networks.,2011,22,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn22.html#HuynhR11,https://doi.org/10.1109/TNN.2010.2094205 +Xinyi Le,Robust Pole Assignment for Synthesizing Feedback Control Systems Using Recurrent Neural Networks.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn25.html#LeW14,https://doi.org/10.1109/TNNLS.2013.2275732 +Sotirios P. Chatzis,The infinite hidden Markov random field model.,2010,21,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn21.html#ChatzisT10,https://doi.org/10.1109/TNN.2010.2046910 +Dan Wang,Neural network-based adaptive dynamic surface control for a class of uncertain nonlinear systems in strict-feedback form.,2005,16,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn16.html#WangH05,https://doi.org/10.1109/TNN.2004.839354 +Yuanqing Li,Equivalence Probability and Sparsity of Two Sparse Solutions in Sparse Representation.,2008,19,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn19.html#LiCAXG08,https://doi.org/10.1109/TNN.2008.2003980 +Alvin Wen-Yu Su,A class of physical modeling recurrent networks for analysis/synthesis of plucked string instruments.,2002,13,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn13.html#SuL02,https://doi.org/10.1109/TNN.2002.1031945 +John Sum,On-Line Node Fault Injection Training Algorithm for MLP Networks: Objective Function and Convergence Analysis.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn23.html#SumLH12,https://doi.org/10.1109/TNNLS.2011.2178477 +Raymond L. Watrous,Speaker normalization and adaptation using second-order connectionist networks.,1993,4,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn4.html#Watrous93,https://doi.org/10.1109/72.182692 +X. Liang,"Comments on ""Diagonal recurrent neural networks for dynamic systems control"". Reproof of theorems 2 and 4 [and reply].",1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#LiangL97,https://doi.org/10.1109/72.572120 +Bing Chen 0001,Observer-Based Adaptive Neural Network Control for Nonlinear Systems in Nonstrict-Feedback Form.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn27.html#ChenZL16,https://doi.org/10.1109/TNNLS.2015.2412121 +Fathi M. A. Salam,A new feedback neural network with supervised learning.,1991,2,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn2.html#SalamB91,https://doi.org/10.1109/72.80309 +Huaguang Zhang,Neural-Network-Based Near-Optimal Control for a Class of Discrete-Time Affine Nonlinear Systems With Control Constraints.,2009,20,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn20.html#ZhangLL09,https://doi.org/10.1109/TNN.2009.2027233 +Cong Wang 0007,Learning from neural control.,2006,17,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn17.html#WangH06,https://doi.org/10.1109/TNN.2005.860843 +Yi Shen,Noise-Induced Stabilization of the Recurrent Neural Networks With Mixed Time-Varying Delays and Markovian-Switching Parameters.,2007,18,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn18.html#ShenW07,https://doi.org/10.1109/TNN.2007.903159 +Pan Zhou,Integrated Low-Rank-Based Discriminative Feature Learning for Recognition.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn27.html#ZhouLZ16,https://doi.org/10.1109/TNNLS.2015.2436951 +Eduardo Rodriguez-Martinez,Automated Induction of Heterogeneous Proximity Measures for Supervised Spectral Embedding.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn24.html#Rodriguez-MartinezMJG13,https://doi.org/10.1109/TNNLS.2013.2261613 +Rong Yu,QoS Differential Scheduling in Cognitive-Radio-Based Smart Grid Networks: An Adaptive Dynamic Programming Approach.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn27.html#YuZXZZ16,https://doi.org/10.1109/TNNLS.2015.2411673 +Yingwei Lu,Performance evaluation of a sequential minimal radial basis function (RBF) neural network learning algorithm.,1998,9,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn9.html#YingweiSS98,https://doi.org/10.1109/72.661125 +Henry Leung,Signal detection using the radial basis function coupled map lattice.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn11.html#LeungHD00,https://doi.org/10.1109/72.870045 +Zhenyuan Guo,Attractivity Analysis of Memristor-Based Cellular Neural Networks With Time-Varying Delays.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn25.html#GuoWY14,https://doi.org/10.1109/TNNLS.2013.2280556 +Abbas Khosravi,Constructing Optimal Prediction Intervals by Using Neural Networks and Bootstrap Method.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn26.html#KhosraviNSK15,https://doi.org/10.1109/TNNLS.2014.2354418 +Kai Zhang 0001,Maximum Margin Clustering Made Practical.,2009,20,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn20.html#ZhangTK09,https://doi.org/10.1109/TNN.2008.2010620 +Malik Magdon-Ismail,The equivalent martingale measure: an introduction to pricing using expectations.,2001,12,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn12.html#Magdon-Ismail01,https://doi.org/10.1109/72.935082 +Witold Pedrycz,Fuzzy neural networks with reference neurons as pattern classifiers.,1992,3,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn3.html#Pedrycz92,https://doi.org/10.1109/72.159065 +Ruibin Feng,Lagrange Programming Neural Network for Nondifferentiable Optimization Problems in Sparse Approximation.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn28.html#FengLCZ17,https://doi.org/10.1109/TNNLS.2016.2575860 +Hongwei Hu,Manifold Regularized Correlation Object Tracking.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#HuMSS18,https://doi.org/10.1109/TNNLS.2017.2688448 +Djamel Bouchaffra,Nonlinear Topological Component Analysis: Application to Age-Invariant Face Recognition.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn26.html#Bouchaffra15,https://doi.org/10.1109/TNNLS.2014.2341634 +Peng Wang 0015,Fast and Robust Object Detection Using Asymmetric Totally Corrective Boosting.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn23.html#WangSBZ12,https://doi.org/10.1109/TNNLS.2011.2178324 +Mahardhika Pratama,PANFIS: A Novel Incremental Learning Machine.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn25.html#PratamaAAL14,https://doi.org/10.1109/TNNLS.2013.2271933 +Vassilis G. Kaburlasos,Lattice Computing Extension of the FAM Neural Classifier for Human Facial Expression Recognition.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn24.html#KaburlasosPP13,https://doi.org/10.1109/TNNLS.2012.2237038 +Michael Fairbank,An Equivalence Between Adaptive Dynamic Programming With a Critic and Backpropagation Through Time.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn24.html#FairbankAP13,https://doi.org/10.1109/TNNLS.2013.2271778 +Fei Wang 0001,Semisupervised Learning Based on Generalized Point Charge Models.,2008,19,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn19.html#WangZ08,https://doi.org/10.1109/TNN.2008.2000165 +Can Wang 0004,Coupled Attribute Similarity Learning on Categorical Data.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn26.html#WangDZCC15,https://doi.org/10.1109/TNNLS.2014.2325872 +Adrian-Mihail Stoica,LINFINITY Analysis and State-Feedback Control of Hopfield Networks.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn24.html#StoicaY13,https://doi.org/10.1109/TNNLS.2013.2257844 +Janusz A. Starzyk,Dynamic probability estimator for machine learning.,2004,15,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn15.html#StarzykW04,https://doi.org/10.1109/TNN.2004.824254 +Sied Mehdi Fakhraie,Scalable closed-boundary analog neural networks.,2004,15,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn15.html#FakhraieFS04,https://doi.org/10.1109/TNN.2004.824415 +Orly Yadid-Pecht,A biologically-inspired improved MAXNET.,1995,6,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn6.html#Yadid-PechtG95,https://doi.org/10.1109/72.377981 +Ruxandra L. Costea,A Consistent Model for Lazzaro Winner-Take-All Circuit With Invariant Subthreshold Behavior.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn27.html#CosteaM16,https://doi.org/10.1109/TNNLS.2015.2489862 +Jacob M. J. Murre,Transputers and neural networks: an analysis of implementation constraints and performance.,1993,4,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn4.html#Murre93,https://doi.org/10.1109/72.207616 +Eleni Vasilaki,Temporal album.,2003,14,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn14.html#VasilakiFB03,https://doi.org/10.1109/TNN.2003.809641 +Sherif Hashem,Improving model accuracy using optimal linear combinations of trained neural networks.,1995,6,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn6.html#HashemS95,https://doi.org/10.1109/72.377990 +Zhengguang Wu,Sampled-Data Exponential Synchronization of Complex Dynamical Networks With Time-Varying Coupling Delay.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn24.html#WuSSC13b,https://doi.org/10.1109/TNNLS.2013.2253122 +Kam-Chuen Jim,An analysis of noise in recurrent neural networks: convergence and generalization.,1996,7,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn7.html#JimGH96,https://doi.org/10.1109/72.548170 +Sooyong Choi,A negentropy minimization approach to adaptive equalization for digital communication systems.,2004,15,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn15.html#ChoiL04,https://doi.org/10.1109/TNN.2004.828758 +Beibei Ren,Adaptive neural control for output feedback nonlinear systems using a barrier Lyapunov function.,2010,21,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn21.html#RenGTL10,https://doi.org/10.1109/TNN.2010.2047115 +Rafal Dlugosz,Realization of the conscience mechanism in CMOS implementation of winner-takes-all self-organizing neural networks.,2010,21,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn21.html#DlugoszTPW10,https://doi.org/10.1109/TNN.2010.2046497 +Alberto Faro,Evaluation of the Traffic Parameters in a Metropolitan Area by Fusing Visual Perceptions and CNN Processing of Webcam Images.,2008,19,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn19.html#FaroGS08,https://doi.org/10.1109/TNN.2008.2000392 +Qikun Shen,Novel Neural Control for a Class of Uncertain Pure-Feedback Systems.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn25.html#ShenSZL14,https://doi.org/10.1109/TNNLS.2013.2280728 +Yiannis S. Boutalis,A New Neuro-FDS Definition for Indirect Adaptive Control of Unknown Nonlinear Systems Using a Method of Parameter Hopping.,2009,20,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn20.html#BoutalisTC09,https://doi.org/10.1109/TNN.2008.2010772 +Marco Gori,On the implementation of frontier-to-root tree automata in recursive neural networks.,1999,10,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn10.html#GoriKS99,https://doi.org/10.1109/72.809076 +Tony J. Allen,Practical optoelectronic neural network realizations based on the fault tolerance of the backpropagation algorithm.,1996,7,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn7.html#AllenHCO96,https://doi.org/10.1109/72.485682 +Pierre Comon,Ultimate performance of QEM classifiers.,1996,7,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn7.html#ComonB96,https://doi.org/10.1109/72.548185 +Mohamad H. Hassoun,Books in Brief-Book Reviews.,1996,7,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn7.html#Hassoun96a,https://doi.org/10.1109/TNN.1996.478414 +Dit-Yan Yeung,A Kernel Approach for Semisupervised Metric Learning.,2007,18,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn18.html#YeungC07,https://doi.org/10.1109/TNN.2006.883723 +Zheng Yan 0001,Robust Model Predictive Control of Nonlinear Systems With Unmodeled Dynamics and Bounded Uncertainties Based on Neural Networks.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn25.html#YanW14,https://doi.org/10.1109/TNNLS.2013.2275948 +Shannon R. Campbell,Synchronization and desynchronization in a network of locally coupled Wilson-Cowan oscillators.,1996,7,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn7.html#CampbellW96,https://doi.org/10.1109/72.501714 +Paolo Gastaldo,Objective quality assessment of MPEG-2 video streams by using CBP neural networks.,2002,13,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn13.html#GastaldoRZ02,https://doi.org/10.1109/TNN.2002.1021894 +Christos Kyrkou,Embedded Hardware-Efficient Real-Time Classification With Cascade Support Vector Machines.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn27.html#KyrkouBTP16,https://doi.org/10.1109/TNNLS.2015.2428738 +Glenn E. Johnson,Mimic nets.,1993,4,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn4.html#Johnson93,https://doi.org/10.1109/72.248458 +Enrique Romero,Performing Feature Selection With Multilayer Perceptrons.,2008,19,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn19.html#RomeroS08,https://doi.org/10.1109/TNN.2007.909535 +Xiaoqin Zeng,Computation of Adalines' sensitivity to weight perturbation.,2006,17,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn17.html#ZengWZ06,https://doi.org/10.1109/TNN.2005.863418 +Natalie Clark,Smart adaptive optic systems using spatial light modulators.,1999,10,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn10.html#ClarkBR99,https://doi.org/10.1109/72.761717 +Yiqian Cui,Development of Quantum Local Potential Function Networks Based on Quantum Assimilation and Subspace Division.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn29.html#CuiSW18,https://doi.org/10.1109/TNNLS.2016.2614840 +Karthikeyan Rajagopal,Neural Network-Based Solutions for Stochastic Optimal Control Using Path Integrals.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn28.html#RajagopalBB17,https://doi.org/10.1109/TNNLS.2016.2544787 +Jonathan S. Kane,POPART: partial optical implementation of adaptive resonance theory 2.,1993,4,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn4.html#KaneP93,https://doi.org/10.1109/72.238323 +Chunhua Shen,Boosting through optimization of margin distributions.,2010,21,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn21.html#ShenL10,https://doi.org/10.1109/TNN.2010.2040484 +Yingquan Wu,A feedforward bidirectional associative memory.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn11.html#WuP00,https://doi.org/10.1109/72.857767 +Yu Jiang 0003,Robust Adaptive Dynamic Programming With an Application to Power Systems.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn24.html#JiangJ13,https://doi.org/10.1109/TNNLS.2013.2249668 +James A. Leonard,Using radial basis functions to approximate a function and its error bounds.,1992,3,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn3.html#LeonardKU92,https://doi.org/10.1109/72.143377 +Sheng Chen 0001,Symmetric RBF Classifier for Nonlinear Detection in Multiple-Antenna-Aided Systems.,2008,19,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn19.html#ChenWHH08,https://doi.org/10.1109/TNN.2007.911745 +Heinz Mathis,Blind separation of signals with mixed kurtosis signs using threshold activation functions.,2001,12,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn12.html#MathisHJ01,https://doi.org/10.1109/72.925565 +Jerome T. Connor,Recurrent neural networks and robust time series prediction.,1994,5,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn5.html#ConnorMA94,https://doi.org/10.1109/72.279188 +Lin Xu,Shrinkage Degree in L2-Rescale Boosting for Regression.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn28.html#XuLWX17,https://doi.org/10.1109/TNNLS.2016.2560224 +Christopher Lyn Farrow,Scalar equations for synchronous Boolean networks with biological applications.,2004,15,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn15.html#FarrowHMR04,https://doi.org/10.1109/TNN.2004.824262 +Granger G. Sutton III,Effects of normalization constraints on competitive learning.,1994,5,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn5.html#SuttonR94,https://doi.org/10.1109/72.286924 +Veronica Bloom,Exterior-Point Method for Support Vector Machines.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn25.html#BloomGKW14,https://doi.org/10.1109/TNNLS.2013.2288101 +Yupeng Qiao,Partition-Based Solutions of Static Logical Networks With Applications.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#QiaoQC18,https://doi.org/10.1109/TNNLS.2017.2669972 +Sanqing Hu,Absolute exponential stability of a class of continuous-time recurrent neural networks.,2003,14,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn14.html#HuW03,https://doi.org/10.1109/TNN.2002.806954 +Masaki Kobayashi,Hyperbolic Hopfield Neural Networks.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn24.html#Kobayashi13,https://doi.org/10.1109/TNNLS.2012.2230450 +Amir Alush,Hierarchical Image Segmentation Using Correlation Clustering.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn27.html#AlushG16,https://doi.org/10.1109/TNNLS.2015.2505181 +Ivo Bukovsky,An Approach to Stable Gradient-Descent Adaptation of Higher Order Neural Units.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn28.html#BukovskyH17,https://doi.org/10.1109/TNNLS.2016.2572310 +Marco Gori,Constraint Verification With Kernel Machines.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn24.html#GoriM13,https://doi.org/10.1109/TNNLS.2013.2241787 +Steven Van Vaerenbergh,A spectral clustering approach to underdetermined postnonlinear blind source separation of sparse sources.,2006,17,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn17.html#VaerenberghS06,https://doi.org/10.1109/TNN.2006.872358 +Ramon A. Felix,Reproducing chaos by variable structure recurrent neural networks.,2004,15,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn15.html#FelixSC04,https://doi.org/10.1109/TNN.2004.836236 +Renzo Perfetti,A synthesis procedure for brain-state-in-a-box neural networks.,1995,6,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn6.html#Perfetti95a,https://doi.org/10.1109/72.410352 +Yu Zhang 0009,Sparse Bayesian Classification of EEG for Brain-Computer Interface.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn27.html#ZhangZJZWC16,https://doi.org/10.1109/TNNLS.2015.2476656 +Shiliang Sun,Semisupervised Support Vector Machines With Tangent Space Intrinsic Manifold Regularization.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn27.html#SunX16,https://doi.org/10.1109/TNNLS.2015.2461009 +Wentao Fan,Variational Learning for Finite Dirichlet Mixture Models and Applications.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn23.html#FanBZ12,https://doi.org/10.1109/TNNLS.2012.2190298 +Furui Liu,Causal Inference on Multidimensional Data Using Free Probability Theory.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#LiuC18,https://doi.org/10.1109/TNNLS.2017.2716539 +Qingsong Zhu,Targeting Accurate Object Extraction From an Image: A Comprehensive Study of Natural Image Matting.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn26.html#ZhuSLW15,https://doi.org/10.1109/TNNLS.2014.2369426 +Adam Papadimitropoulos,Fault Detection in Mechanical Systems With Friction Phenomena: An Online Neural Approximation Approach.,2007,18,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn18.html#PapadimitropoulosRP07,https://doi.org/10.1109/TNN.2007.899182 +Meng Yang,Robust Kernel Representation With Statistical Local Features for Face Recognition.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn24.html#YangZSZ13,https://doi.org/10.1109/TNNLS.2013.2245340 +Jin-Liang Wang,Pinning Control Strategies for Synchronization of Linearly Coupled Neural Networks With Reaction-Diffusion Terms.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn27.html#WangWHR16,https://doi.org/10.1109/TNNLS.2015.2423853 +Pablo Alberto Dalbem de Castro,Learning Ensembles of Neural Networks by Means of a Bayesian Artificial Immune System.,2011,22,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn22.html#CastroZ11,https://doi.org/10.1109/TNN.2010.2096823 +Jun Li 0013,Neural Network Approaches for Noisy Language Modeling.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn24.html#0013OKA13,https://doi.org/10.1109/TNNLS.2013.2263557 +Huai-Ning Wu,Neural Network Based Online Simultaneous Policy Update Algorithm for Solving the HJI Equation in Nonlinear H∞ Control.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn23.html#WuL12,https://doi.org/10.1109/TNNLS.2012.2217349 +Dechao Chen,Robust Zeroing Neural-Dynamics and Its Time-Varying Disturbances Suppression Model Applied to Mobile Robot Manipulators.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#ChenZ18,https://doi.org/10.1109/TNNLS.2017.2764529 +Rudy Setiono,Extraction of rules from artificial neural networks for nonlinear regression.,2002,13,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn13.html#SetionoLZ02,https://doi.org/10.1109/TNN.2002.1000125 +Debrup Chakraborty,Selecting Useful Groups of Features in a Connectionist Framework.,2008,19,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn19.html#ChakrabortyP08,https://doi.org/10.1109/TNN.2007.910730 +Andrew R. Webb,Functional approximation by feed-forward networks: a least-squares approach to generalization.,1994,5,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn5.html#Webb94,https://doi.org/10.1109/72.286908 +Eduardo de Azevedo Botter,A neural network with asymmetric basis functions for feature extraction of ECG P waves.,2001,12,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn12.html#BotterNY01,https://doi.org/10.1109/72.950154 +T. Sigitani,Image interpolation for progressive transmission by using radial basis function networks.,1999,10,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn10.html#SigitaniIM99,https://doi.org/10.1109/72.750567 +Daniel J. Simon,Distributed fault tolerance in optimal interpolative nets.,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#Simon01,https://doi.org/10.1109/72.963771 +Kazunori Iwata,A statistical property of multiagent learning based on Markov decision process.,2006,17,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn17.html#IwataIS06,https://doi.org/10.1109/TNN.2006.875990 +Koichi Kobayashi,Design of Probabilistic Boolean Networks Based on Network Structure and Steady-State Probabilities.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn28.html#KobayashiH17,https://doi.org/10.1109/TNNLS.2016.2572063 +Konstantinos Bousmalis,Infinite Hidden Conditional Random Fields for Human Behavior Analysis.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn24.html#BousmalisZMP13,https://doi.org/10.1109/TNNLS.2012.2224882 +Natan Peterfreund,Second-order bounds on the domain of attraction and the rate of convergence of nonlinear dynamical systems and neural networks.,1994,5,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn5.html#PeterfreundB94,https://doi.org/10.1109/72.298225 +Ajay M. Patrikar,Approximating Gaussian Mixture Model or Radial Basis Function Network With Multilayer Perceptron.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn24.html#Patrikar13,https://doi.org/10.1109/TNNLS.2013.2249086 +Xinyi Le,A Two-Time-Scale Neurodynamic Approach to Constrained Minimax Optimization.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn28.html#LeW17,https://doi.org/10.1109/TNNLS.2016.2538288 +Tianyou Chai,Data-Based Virtual Unmodeled Dynamics Driven Multivariable Nonlinear Adaptive Switching Control.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#ChaiZWSS11,https://doi.org/10.1109/TNN.2011.2167685 +Yi Huang,Semi-Supervised Dimension Reduction Using Trace Ratio Criterion.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn23.html#HuangXN12,https://doi.org/10.1109/TNNLS.2011.2178037 +Yoshikazu Washizawa,Feature extraction using constrained approximation and suppression.,2010,21,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn21.html#Washizawa10,https://doi.org/10.1109/TNN.2009.2034852 +Changchun Hua,Decentralized Output Feedback Adaptive NN Tracking Control for Time-Delay Stochastic Nonlinear Systems With Prescribed Performance.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn26.html#HuaZG15,https://doi.org/10.1109/TNNLS.2015.2392946 +Terence A. Etchells,Orthogonal search-based rule extraction (OSRE) for trained neural networks: a practical and efficient approach.,2006,17,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn17.html#EtchellsL06,https://doi.org/10.1109/TNN.2005.863472 +Daouren Akhmetov,Fuzzy neural network with general parameter adaptation for modeling of nonlinear time-series.,2001,12,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn12.html#AkhmetovDO01,https://doi.org/10.1109/72.896803 +Xinghuo Yu,A general backpropagation algorithm for feedforward neural networks learning.,2002,13,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn13.html#YuEK02,https://doi.org/10.1109/72.977323 +Qingshan Liu 0002,One-Layer Continuous-and Discrete-Time Projection Neural Networks for Solving Variational Inequalities and Related Optimization Problems.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn25.html#LiuH014,https://doi.org/10.1109/TNNLS.2013.2292893 +Qingshan Liu 0002,A One-Layer Recurrent Neural Network With a Discontinuous Hard-Limiting Activation Function for Quadratic Programming.,2008,19,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn19.html#LiuW08a,https://doi.org/10.1109/TNN.2007.910736 +Xiaojie Li,An Efficient Representation-Based Method for Boundary Point and Outlier Detection.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn29.html#LiLY18,https://doi.org/10.1109/TNNLS.2016.2614896 +Brian A. White,The digi-neocognitron: a digital neocognitron neural network model for VLSI.,1992,3,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn3.html#WhiteE92,https://doi.org/10.1109/72.105419 +Khalid A. Al-Mashouq,The use of neural nets to combine equalization with decoding for severe intersymbol interference channels.,1994,5,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn5.html#Al-MashouqR94,https://doi.org/10.1109/72.329696 +David C. Hendry,IP core implementation of a self-organizing neural network.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#HendryDL03,https://doi.org/10.1109/TNN.2003.816353 +DeLiang L. Wang,Separation of speech from interfering sounds based on oscillatory correlation.,1999,10,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn10.html#WangB99,https://doi.org/10.1109/72.761727 +Zhao Zhang 0001,Jointly Learning Structured Analysis Discriminative Dictionary and Analysis Multiclass Classifier.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#ZhangJQZLZY18,https://doi.org/10.1109/TNNLS.2017.2740224 +Kasra Esfandiari,Adaptive Control of Uncertain Nonaffine Nonlinear Systems With Input Saturation Using Neural Networks.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn26.html#EsfandiariAT15,https://doi.org/10.1109/TNNLS.2014.2378991 +Leonid I. Perlovsky,Neural Networks for Improved Tracking.,2007,18,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn18.html#PerlovskyD07,https://doi.org/10.1109/TNN.2007.903143 +Mehmet Kerem Müezzinoglu,A new design method for the complex-valued multistate Hopfield associative memory.,2003,14,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn14.html#MuezzinogluGZ03,https://doi.org/10.1109/TNN.2003.813844 +Francisco Fernández-Navarro,Negative Correlation Ensemble Learning for Ordinal Regression.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn24.html#Fernandez-NavarroGHY13,https://doi.org/10.1109/TNNLS.2013.2268279 +Gail A. Carpenter,ART-EMAP: A neural network architecture for object recognition by evidence accumulation.,1995,6,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn6.html#CarpenterR95,https://doi.org/10.1109/72.392245 +Stephan Liwicki,Efficient Online Subspace Learning With an Indefinite Kernel for Visual Tracking and Recognition.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn23.html#LiwickiZTP12,https://doi.org/10.1109/TNNLS.2012.2208654 +Zi-Fa Han,Augmented Lagrange Programming Neural Network for Localization Using Time-Difference-of-Arrival Measurements.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#HanLSC18,https://doi.org/10.1109/TNNLS.2017.2731325 +LiMin Fu,A neural-network model for learning domain rules based on its activation function characteristics.,1998,9,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn9.html#Fu98a,https://doi.org/10.1109/72.712152 +Lizhong Wu,From members to teams to committee-a robust approach to gestural and multimodal recognition.,2002,13,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn13.html#WuOC02,https://doi.org/10.1109/TNN.2002.1021897 +Masataka Watanabe,A network of coincidence detector neurons with periodic and chaotic dynamics.,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#WatanabeA04,https://doi.org/10.1109/TNN.2004.834797 +Vassilios Petridis,Fuzzy lattice neural network (FLNN): a hybrid model for learning.,1998,9,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn9.html#PetridisK98,https://doi.org/10.1109/72.712161 +Mark A. Girolami,A common neural-network model for unsupervised exploratory data analysis and independent component analysis.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#GirolamiCA98,https://doi.org/10.1109/72.728398 +Tae H. Lee,Stability Analysis of Neural Networks With Time-Varying Delay by Constructing Novel Lyapunov Functionals.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#LeeTP18,https://doi.org/10.1109/TNNLS.2017.2760979 +Jinn-Tsong Tsai,Tuning the structure and parameters of a neural network by using hybrid Taguchi-genetic algorithm.,2006,17,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn17.html#TsaiCL06,https://doi.org/10.1109/TNN.2005.860885 +Antony W. Savich,The Impact of Arithmetic Representation on Implementing MLP-BP on FPGAs: A Study.,2007,18,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn18.html#SavichMA07,https://doi.org/10.1109/TNN.2006.883002 +Heidar A. Malki,Using the Karhunen-Loe've transformation in the back-propagation training algorithm.,1991,2,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn2.html#MalkiM91,https://doi.org/10.1109/72.80306 +Stefano Lucidi,A Convergent Hybrid Decomposition Algorithm Model for SVM Training.,2009,20,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn20.html#LucidiPRS09,https://doi.org/10.1109/TNN.2009.2020908 +Jonathan Robinson,Combining support vector machine learning with the discrete cosine transform in image compression.,2003,14,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn14.html#RobinsonK03,https://doi.org/10.1109/TNN.2003.813842 +Hamid Reza Mahdiani,Relaxed Fault-Tolerant Hardware Implementation of Neural Networks in the Presence of Multiple Transient Errors.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn23.html#MahdianiFL12,https://doi.org/10.1109/TNNLS.2012.2199517 +Pablo A. Estévez,Normalized Mutual Information Feature Selection.,2009,20,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn20.html#EstevezTPZ09,https://doi.org/10.1109/TNN.2008.2005601 +François Bertrand Akoa,Combining DC Algorithms (DCAs) and Decomposition Techniques for the Training of Nonpositive-Semidefinite Kernels.,2008,19,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn19.html#Akoa08,https://doi.org/10.1109/TNN.2008.2003299 +Hans-Ulrich Bauer,Quantifying the neighborhood preservation of self-organizing feature maps.,1992,3,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn3.html#BauerP92,https://doi.org/10.1109/72.143371 +Yicong Meng,Adaptive Gain Control for Spike-Based Map Communication in a Neuromorphic Vision System.,2008,19,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn19.html#MengS08,https://doi.org/10.1109/TNN.2007.915113 +Minyoung Kim,Mixtures of Conditional Random Fields for Improved Structured Output Prediction.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn28.html#Kim17,https://doi.org/10.1109/TNNLS.2016.2521875 +Haibo He,IMORL: Incremental Multiple-Object Recognition and Localization.,2008,19,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn19.html#HeC08,https://doi.org/10.1109/TNN.2008.2001774 +Juan Luis Castro,Interpretation of artificial neural networks by means of fuzzy rules.,2002,13,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn13.html#CastroMB02,https://doi.org/10.1109/72.977279 +Clifford Clausen,Quad-Q-learning.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn11.html#ClausenW00,https://doi.org/10.1109/72.839000 +Tianrui Chen,Rapid Oscillation Fault Detection and Isolation for Distributed Systems via Deterministic Learning.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn25.html#ChenWH14,https://doi.org/10.1109/TNNLS.2013.2289910 +Yunlong Feng,Robust Gradient Learning With Applications.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn27.html#FengYS16,https://doi.org/10.1109/TNNLS.2015.2425215 +Guang-Bin Huang,Upper bounds on the number of hidden neurons in feedforward networks with arbitrary bounded nonlinear activation functions.,1998,9,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn9.html#HuangB98,https://doi.org/10.1109/72.655045 +Mark Plutowski,Selecting concise training sets from clean data.,1993,4,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn4.html#PlutowskiW93,https://doi.org/10.1109/72.207618 +Peter L. Bartlett,Using random weights to train multilayer networks of hard-limiting units.,1992,3,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn3.html#BarlettD92,https://doi.org/10.1109/72.125861 +Jeng-Tze Huang,Global Tracking Control of Strict-Feedback Systems Using Neural Networks.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn23.html#Huang12,https://doi.org/10.1109/TNNLS.2012.2213305 +Ping Luo,Learning Compositional Shape Models of Multiple Distance Metrics by Information Projection.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn27.html#LuoLL16,https://doi.org/10.1109/TNNLS.2015.2440430 +Lu Xu 0003,Analysis of Boundedness and Convergence of Online Gradient Method for Two-Layer Feedforward Neural Networks.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn24.html#XuCHLF13,https://doi.org/10.1109/TNNLS.2013.2257845 +De-Shuang Huang,A New Constrained Independent Component Analysis Method.,2007,18,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn18.html#HuangM07,https://doi.org/10.1109/TNN.2007.895910 +Sitao Wu,PRSOM: a new visualization method by hybridizing multidimensional scaling and self-organizing map.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#WuC05,https://doi.org/10.1109/TNN.2005.853574 +Mariel Alfaro-Ponce,Adaptive Identifier for Uncertain Complex Nonlinear Systems Based on Continuous Neural Networks.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn25.html#Alfaro-PonceCC14,https://doi.org/10.1109/TNNLS.2013.2275959 +Markos Papadonikolakis,Novel Cascade FPGA Accelerator for Support Vector Machines Classification.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn23.html#PapadonikolakisB12,https://doi.org/10.1109/TNNLS.2012.2196446 +Rodrigo G. F. Soares,Semisupervised Classification With Cluster Regularization.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn23.html#SoaresCY12,https://doi.org/10.1109/TNNLS.2012.2214488 +Ezequiel López-Rubio,Probabilistic PCA Self-Organizing Maps.,2009,20,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn20.html#Lopez-RubioOL09,https://doi.org/10.1109/TNN.2009.2025888 +Chuanyi Ji,Combinations of weak classifiers.,1997,8,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn8.html#JiM97,https://doi.org/10.1109/72.554189 +Qing Song 0001,Robust Recurrent Kernel Online Learning.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn28.html#SongXFW17,https://doi.org/10.1109/TNNLS.2016.2518223 +Kan Xie,Convergence Analysis of the FOCUSS Algorithm.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn26.html#XieHC15,https://doi.org/10.1109/TNNLS.2014.2323985 +Tohid Sardarmehni,Suboptimal Scheduling in Switched Systems With Continuous-Time Dynamics: A Least Squares Approach.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#SardarmehniH18,https://doi.org/10.1109/TNNLS.2017.2758374 +Siu-Yeung Cho,Shape recovery from shading by a new neural-based reflectance model.,1999,10,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn10.html#ChoC99,https://doi.org/10.1109/72.809101 +Zhang Yi 0001,Convergence analysis of a deterministic discrete time system of Oja's PCA learning algorithm.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#YiYLT05,https://doi.org/10.1109/TNN.2005.852236 +Evan W. Steeg,Comments on 'Parallel algorithms for finding a near-maximum independent set of a circle graph' [with reply].,1991,2,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn2.html#SteegTL91,https://doi.org/10.1109/72.80347 +Thomas Martinetz,Three-dimensional neural net for learning visuomotor coordination of a robot arm.,1990,1,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn1.html#MartinetzRS90,https://doi.org/10.1109/72.80212 +Ze Tang,Impulsive Effects on Quasi-Synchronization of Neural Networks With Parameter Mismatches and Time-Varying Delay.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#TangPF18,https://doi.org/10.1109/TNNLS.2017.2651024 +Sotirios P. Chatzis,Echo State Gaussian Process.,2011,22,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn22.html#ChatzisD11,https://doi.org/10.1109/TNN.2011.2162109 +Mathias M. Adankon,Semisupervised Least Squares Support Vector Machine.,2009,20,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn20.html#AdankonCB09,https://doi.org/10.1109/TNN.2009.2031143 +Olcay Taner Yildiz,VC-Dimension of Univariate Decision Trees.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn26.html#Yildiz15,https://doi.org/10.1109/TNNLS.2014.2385837 +Vinay Deolalikar,A two-layer paradigm capable of forming arbitrary decision regions in input space.,2002,13,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn13.html#Deolalikar02,https://doi.org/10.1109/72.977261 +Alex Weissensteiner,A Q -Learning Approach to Derive Optimal Consumption and Investment Strategies.,2009,20,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn20.html#Weissensteiner09,https://doi.org/10.1109/TNN.2009.2020850 +Chen Huang,Discriminative Sparse Neighbor Approximation for Imbalanced Learning.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#HuangLT18,https://doi.org/10.1109/TNNLS.2017.2671845 +Andrew C. McCormick,Real-time classification of rotating shaft loading conditions using artificial neural networks.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#McCormickN97,https://doi.org/10.1109/72.572110 +Constantinos Constantinopoulos,An incremental training method for the probabilistic RBF network.,2006,17,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn17.html#ConstantinopoulosL06,https://doi.org/10.1109/TNN.2006.875982 +Qi Zhou,Observer-Based Adaptive Neural Network Control for Nonlinear Stochastic Systems With Time Delay.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn24.html#ZhouSXL13,https://doi.org/10.1109/TNNLS.2012.2223824 +Ji-Nan Lin,Canonical piecewise-linear networks.,1995,6,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn6.html#LinU95,https://doi.org/10.1109/72.363451 +Haik Manukian,Memcomputing Numerical Inversion With Self-Organizing Logic Gates.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#ManukianTV18,https://doi.org/10.1109/TNNLS.2017.2697386 +Sanqing Hu,Causality Analysis of Neural Connectivity: Critical Examination of Existing Methods and Advances of New Methods.,2011,22,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn22.html#HuDWDL11,https://doi.org/10.1109/TNN.2011.2123917 +Norikazu Takahashi,Global Convergence of SMO Algorithm for Support Vector Regression.,2008,19,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn19.html#TakahashiGN08,https://doi.org/10.1109/TNN.2007.915116 +Daniel Paul Barrett,Driving Under the Influence (of Language).,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#BarrettBYS18,https://doi.org/10.1109/TNNLS.2017.2693278 +Stefanos Zafeiriou,Discriminant Nonnegative Tensor Factorization Algorithms.,2009,20,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn20.html#Zafeiriou09,https://doi.org/10.1109/TNN.2008.2005293 +Z. Chen,Generalized Hamilton-Jacobi-Bellman Formulation -Based Neural Network Control of Affine Nonlinear Discrete-Time Systems.,2008,19,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn19.html#ChenJ08,https://doi.org/10.1109/TNN.2007.900227 +Davide Mattera,Simple and robust methods for support vector expansions.,1999,10,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn10.html#MatteraPH99,https://doi.org/10.1109/72.788644 +Takeshi Yamakawa,A fuzzy inference engine in nonlinear analog mode and its application to a fuzzy logic control.,1993,4,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn4.html#Yamakawa93,https://doi.org/10.1109/72.217192 +Xiaofeng Qi,Theoretical analysis of evolutionary algorithms with an infinite population size in continuous space. Part II: Analysis of the diversification role of crossover.,1994,5,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn5.html#QiP94a,https://doi.org/10.1109/72.265966 +Takashi Kohno,A MOSFET-based model of a class 2 nerve membrane.,2005,16,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn16.html#KohnoA05,https://doi.org/10.1109/TNN.2005.844855 +Khan M. Iftekharuddin,Transformation Invariant On-Line Target Recognition.,2011,22,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn22.html#Iftekharuddin11,https://doi.org/10.1109/TNN.2011.2132737 +Yuhua Qian,Space Structure and Clustering of Categorical Data.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn27.html#QianLLLD16,https://doi.org/10.1109/TNNLS.2015.2451151 +Gwang Hoon Park,Neural-net computing for interpretation of semiconductor film optical ellipsometry parameters.,1996,7,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn7.html#ParkPIEL96,https://doi.org/10.1109/72.508926 +Robert Laganière,Gradual perception of structure from motion: a neural approach.,1995,6,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn6.html#LaganiereC95,https://doi.org/10.1109/72.377978 +Alan F. Murray,Synaptic weight noise during multilayer perceptron training: fault tolerance and training improvements.,1993,4,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn4.html#MurrayE93,https://doi.org/10.1109/72.238328 +Xin Jin,Classification of freeway traffic patterns for incident detection using constructive probabilistic neural networks.,2001,12,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn12.html#JinSC01,https://doi.org/10.1109/72.950145 +Laxmidhar Behera,On Adaptive Learning Rate That Guarantees Convergence in Feedforward Networks.,2006,17,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn17.html#BeheraKP06,https://doi.org/10.1109/TNN.2006.878121 +R. B. Chinman,Prediction limit estimation for neural network models.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#ChinmanD98,https://doi.org/10.1109/72.728401 +Ming Zhang,Neuron-adaptive higher order neural-network models for automated financial data modeling.,2002,13,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn13.html#ZhangXF02,https://doi.org/10.1109/72.977302 +S. M. Rezaul Hasan,A parallel processing VLSI BAM engine.,1997,8,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn8.html#HasanN97,https://doi.org/10.1109/72.557697 +Michele Marchesi,Fast neural networks without multipliers.,1993,4,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn4.html#MarchesiOPU93,https://doi.org/10.1109/72.182695 +Zhouyu Fu,Learning Sparse Kernel Classifiers for Multi-Instance Classification.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn24.html#FuLTZ13,https://doi.org/10.1109/TNNLS.2013.2254721 +Wei-Shi Zheng,Penalized preimage learning in kernel principal component analysis.,2010,21,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn21.html#ZhengLY10,https://doi.org/10.1109/TNN.2009.2039647 +Danil V. Prokhorov,"Corrections To ""Adaptive Critic Designs"".",1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#ProkhorovW97a,https://doi.org/10.1109/TNN.1997.641481 +Roberto Latorre,Signature Neural Networks: Definition and Application to Multidimensional Sorting Problems.,2011,22,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn22.html#LatorreOV11,https://doi.org/10.1109/TNN.2010.2060495 +Youlu Xing,Perception Evolution Network Based on Cognition Deepening Model - Adapting to the Emergence of New Sensory Receptor.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn27.html#XingSZ16,https://doi.org/10.1109/TNNLS.2015.2416353 +Chen Gong 0002,Deformed Graph Laplacian for Semisupervised Learning.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn26.html#GongLTFT015,https://doi.org/10.1109/TNNLS.2014.2376936 +Alessandro De Gloria,Efficient implementation of the Boltzmann machine algorithm.,1993,4,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn4.html#GloriaFO93,https://doi.org/10.1109/72.182711 +Hongjian Liu,Event-Triggered H∞ State Estimation for Delayed Stochastic Memristive Neural Networks With Missing Measurements: The Discrete Time Case.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#LiuWSL18,https://doi.org/10.1109/TNNLS.2017.2728639 +Shaobo Lin,Learning Capability of Relaxed Greedy Algorithms.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn24.html#LinRSX13,https://doi.org/10.1109/TNNLS.2013.2265397 +Dorel M. Sala,Solving graph algorithms with networks of spiking neurons.,1999,10,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn10.html#SalaC99,https://doi.org/10.1109/72.774270 +Anand Gopalan,A new wide range Euclidean distance circuit for neural network hardware implementations.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#GopalanT03,https://doi.org/10.1109/TNN.2003.816034 +Zhen Ni,Model-Free Dual Heuristic Dynamic Programming.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn26.html#NiHZP15,https://doi.org/10.1109/TNNLS.2015.2424971 +James N. K. Liu,Fuzzy neural networks for machine maintenance in mass transit railway system.,1997,8,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn8.html#LiuS97,https://doi.org/10.1109/72.595893 +Li Sheng 0002,Event-Based H∞ State Estimation for Time-Varying Stochastic Dynamical Networks With State- and Disturbance-Dependent Noises.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn28.html#ShengWZA17,https://doi.org/10.1109/TNNLS.2016.2580601 +Lei Wang,A Graph-Embedding Approach to Hierarchical Visual Word Mergence.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn28.html#WangLZ17,https://doi.org/10.1109/TNNLS.2015.2509062 +Chen Xia,Bottom-Up Visual Saliency Estimation With Deep Autoencoder-Based Sparse Reconstruction.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn27.html#XiaQS16,https://doi.org/10.1109/TNNLS.2015.2512898 +Suwat Kuntanapreeda,A training rule which guarantees finite-region stability for a class of closed-loop neural-network control systems.,1996,7,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn7.html#KuntanapreedaF96,https://doi.org/10.1109/72.501730 +Giorgio Gnecco,Learning With Mixed Hard/Soft Pointwise Constraints.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn26.html#GneccoGMS15,https://doi.org/10.1109/TNNLS.2014.2361866 +Tony A. Plate,Holographic reduced representations.,1995,6,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn6.html#Plate95,https://doi.org/10.1109/72.377968 +Donq-Liang Lee,Relaxation of the stability condition of the complex-valued neural networks.,2001,12,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn12.html#Lee01a,https://doi.org/10.1109/72.950156 +Kai Zhao 0004,Neuroadaptive Fault-Tolerant Control of Nonlinear Systems Under Output Constraints and Actuation Faults.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn29.html#ZhaoSS18,https://doi.org/10.1109/TNNLS.2016.2619914 +Xuelong Li,Person Reidentification Based on Elastic Projections.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#LiLL18,https://doi.org/10.1109/TNNLS.2016.2602855 +Xia Hong 0001,A fast identification algorithm for box-cox transformation based radial basis function neural network.,2006,17,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn17.html#Hong06,https://doi.org/10.1109/TNN.2006.875986 +Zhigang Liu,Multiwavelet Packet Entropy and its Application in Transmission Line Fault Recognition and Classification.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn25.html#LiuHZZ14,https://doi.org/10.1109/TNNLS.2014.2303086 +Pradeep Ramuhalli,Finite-element neural networks for solving differential equations.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#RamuhalliUU05,https://doi.org/10.1109/TNN.2005.857945 +Shiping Wen,Synchronization of Switched Neural Networks With Communication Delays via the Event-Triggered Control.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn28.html#WenZCH17,https://doi.org/10.1109/TNNLS.2016.2580609 +Josep Freixas,The Greatest Allowed Relative Error in Weights and Threshold of Strict Separating Systems.,2008,19,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn19.html#FreixasM08,https://doi.org/10.1109/TNN.2007.912573 +Aluizio F. R. Araújo,Self-Organizing Map With Time-Varying Structure to Plan and Control Artificial Locomotion.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn26.html#AraujoS15,https://doi.org/10.1109/TNNLS.2014.2345662 +Wei Shiung Liew,Classifying Stress From Heart Rate Variability Using Salivary Biomarkers as Reference.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn27.html#LiewSLLK16,https://doi.org/10.1109/TNNLS.2015.2468721 +Zhishan Guo,A One-Layer Recurrent Neural Network for Pseudoconvex Optimization Subject to Linear Equality Constraints.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#GuoLW11,https://doi.org/10.1109/TNN.2011.2169682 +Vladimir Nedeljkovic,A novel multilayer neural networks training algorithm that minimizes the probability of classification error.,1993,4,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn4.html#Nedeljkovic93,https://doi.org/10.1109/72.238319 +Junichiro Hirayama,Markov and Semi-Markov Switching of Source Appearances for Nonstationary Independent Component Analysis.,2007,18,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn18.html#HirayamaMI07,https://doi.org/10.1109/TNN.2007.895829 +Kaizhu Huang,Maxi-Min Margin Machine: Learning Large Margin Classifiers Locally and Globally.,2008,19,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn19.html#HuangYKL08,https://doi.org/10.1109/TNN.2007.905855 +Chao Shi,A Novel Error-Compensation Control for a Class of High-Order Nonlinear Systems With Input Delay.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#ShiLDC18,https://doi.org/10.1109/TNNLS.2017.2751256 +Wei Luo,Convolutional Sparse Autoencoders for Image Classification.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#LuoLYXZ18,https://doi.org/10.1109/TNNLS.2017.2712793 +Lipo Wang,A General Wrapper Approach to Selection of Class-Dependent Features.,2008,19,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn19.html#WangZC08a,https://doi.org/10.1109/TNN.2008.2000395 +Jun Zhao 0004,Hybrid Neural Prediction and Optimized Adjustment for Coke Oven Gas System in Steel Industry.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn23.html#ZhaoLWPC12,https://doi.org/10.1109/TNNLS.2011.2179309 +Jaehun Lee,Novel Range-Free Localization Based on Multidimensional Support Vector Regression Trained in the Primal Space.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn24.html#LeeCK13,https://doi.org/10.1109/TNNLS.2013.2250996 +Rui Li 0007,Observability of Automata Networks: Fixed and Switching Cases.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#LiHW18,https://doi.org/10.1109/TNNLS.2017.2651053 +Chun-fu Lin,Fuzzy support vector machines.,2002,13,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn13.html#LinW02,https://doi.org/10.1109/72.991432 +Weiyao Lan,Neural-Network-Based Approximate Output Regulation of Discrete-Time Nonlinear Systems.,2007,18,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn18.html#LanH07,https://doi.org/10.1109/TNN.2007.899212 +Bruce Denby,Fast triggering in high-energy physics experiments using hardware neural networks.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#DenbyGGKPW03,https://doi.org/10.1109/TNN.2003.816903 +Hideki Kakeya,Fast combinatorial optimization with parallel digital computers.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn11.html#KakeyaO00,https://doi.org/10.1109/72.883436 +John Sum,On the Kalman filtering method in neural network training and pruning.,1999,10,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn10.html#SumLYK99,https://doi.org/10.1109/72.737502 +Jin Zhang,Output feedback control of a class of discrete MIMO nonlinear systems with triangular form inputs.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#ZhangGL05,https://doi.org/10.1109/TNN.2005.852242 +Sunil K. Sinha,Classification of underground pipe scanned images using feature extraction and neuro-fuzzy algorithm.,2002,13,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn13.html#SinhaK02,https://doi.org/10.1109/72.991425 +Jun Wang 0002,Analysis and design of an analog sorting network.,1995,6,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn6.html#Wang95a,https://doi.org/10.1109/72.392258 +Assem Kaylani,An adaptive multiobjective approach to evolving ART architectures.,2010,21,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn21.html#KaylaniGMASZ10,https://doi.org/10.1109/TNN.2009.2037813 +Bart Baesens,Neural Networks and Learning Systems Come Together.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn23.html#BaesensBCDILMRSSTWYZL12,https://doi.org/10.1109/TNNLS.2011.2180851 +Luca Scardovi,Active State Estimation for Nonlinear Systems: A Neural Approximation Approach.,2007,18,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn18.html#ScardoviBP07,https://doi.org/10.1109/TNN.2007.899251 +Francesco A. N. Palmieri,A Comparison of Algorithms for Learning Hidden Variables in Bayesian Factor Graphs in Reduced Normal Form.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn27.html#Palmieri16,https://doi.org/10.1109/TNNLS.2015.2477379 +Ruixue Han,Propagation of Collective Temporal Regularity in Noisy Hierarchical Networks.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn28.html#HanWMDQYW17,https://doi.org/10.1109/TNNLS.2015.2502993 +Lazhar Labiod,A Unified Framework for Data Visualization and Coclustering.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn26.html#LabiodN15,https://doi.org/10.1109/TNNLS.2014.2359918 +Nirwan Ansari,A new method to optimize the satellite broadcasting schedules using the mean field annealing of a Hopfield neural network.,1995,6,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn6.html#AnsariHY95,https://doi.org/10.1109/72.363481 +Delin Chu,Incremental Linear Discriminant Analysis: A Fast Algorithm and Comparisons.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn26.html#ChuLNW15,https://doi.org/10.1109/TNNLS.2015.2391201 +Sin Chun Ng,Magnified gradient function with deterministic weight modification in adaptive learning.,2004,15,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn15.html#NgCL04,https://doi.org/10.1109/TNN.2004.836237 +Mathieu Ramona,Multiclass Feature Selection With Kernel Gram-Matrix-Based Criteria.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn23.html#RamonaRD12,https://doi.org/10.1109/TNNLS.2012.2201748 +Robin D. Morris,Fast probabilistic self-structuring of generalized single-layer networks.,1996,7,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn7.html#MorrisG96,https://doi.org/10.1109/72.508931 +Chung-Chian Hsu,Generalizing self-organizing map for categorical data.,2006,17,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn17.html#Hsu06,https://doi.org/10.1109/TNN.2005.863415 +J. R. Tower,The transversal imager: a photonic neurochip with programmable synaptic weights.,1995,6,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn6.html#TowerF95,https://doi.org/10.1109/72.363431 +Raffaele Parisi,A generalized learning paradigm exploiting the structure of feedforward neural networks.,1996,7,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn7.html#ParisiCOR96,https://doi.org/10.1109/72.548172 +Yukinori Suzuki,Self-organizing QRS-wave recognition in ECG using neural networks.,1995,6,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn6.html#Suzuki95,https://doi.org/10.1109/72.471381 +Roland Badeau,Stability Analysis of Multiplicative Update Algorithms and Application to Nonnegative Matrix Factorization.,2010,21,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn21.html#BadeauBV10,https://doi.org/10.1109/TNN.2010.2076831 +Changsheng Li,A Self-Paced Regularization Framework for Multilabel Learning.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#LiWYZLZ18,https://doi.org/10.1109/TNNLS.2017.2697767 +Kian Hong Quah,MCES: A Novel Monte Carlo Evaluative Selection Approach for Objective Feature Selections.,2007,18,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn18.html#QuahQ07,https://doi.org/10.1109/TNN.2006.887555 +Chaohua Wu,A Novel Algorithm for Learning Sparse Spatio-Spectral Patterns for Event-Related Potentials.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn28.html#WuLWG17,https://doi.org/10.1109/TNNLS.2015.2496284 +Wei Lin 0003,Large Memory Capacity in Chaotic Artificial Neural Networks: A View of the Anti-Integrable Limit.,2009,20,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn20.html#LinC09,https://doi.org/10.1109/TNN.2009.2024148 +Su-Ling Lee,Neural networks for routing of communication networks with unreliable components.,1993,4,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn4.html#LeeC93,https://doi.org/10.1109/72.248462 +Xiaobing Nie,Multistability of Second-Order Competitive Neural Networks With Nondecreasing Saturated Activation Functions.,2011,22,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn22.html#NieC11,https://doi.org/10.1109/TNN.2011.2164934 +Amir F. Atiya,A comparison between neural-network forecasting techniques-case study: river flow forecasting.,1999,10,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn10.html#AtiyaESE99,https://doi.org/10.1109/72.750569 +Peng Ren 0001,Graph Characterization via Ihara Coefficients.,2011,22,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn22.html#RenWH11,https://doi.org/10.1109/TNN.2010.2091969 +Rastko R. Selmic,Neural-network approximation of piecewise continuous functions: application to friction compensation.,2002,13,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn13.html#SelmicL02,https://doi.org/10.1109/TNN.2002.1000141 +Walter E. Lillo,On solving constrained optimization problems with neural networks: a penalty method approach.,1993,4,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn4.html#LilloLHZ93,https://doi.org/10.1109/72.286888 +James Ting-Ho Lo,Synthetic approach to optimal filtering.,1994,5,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn5.html#Lo94,https://doi.org/10.1109/72.317731 +Wei Zuo,Fourier-Neural-Network-Based Learning Control for a Class of Nonlinear Systems With Flexible Components.,2009,20,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn20.html#ZuoZC09,https://doi.org/10.1109/TNN.2008.2006496 +Wojciech Samek,Evaluating the Visualization of What a Deep Neural Network Has Learned.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn28.html#SamekBMLM17,https://doi.org/10.1109/TNNLS.2016.2599820 +Michael Schmitt 0001,On the sample complexity of learning for networks of spiking neurons with nonlinear synaptic interactions.,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#Schmitt04,https://doi.org/10.1109/TNN.2004.832810 +Hiroomi Hikawa,A digital hardware pulse-mode neuron with piecewise linear activation function.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#Hikawa03a,https://doi.org/10.1109/TNN.2003.816058 +Mahmood R. Azimi-Sadjadi,Underwater target classification using wavelet packets and neural networks.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn11.html#Azimi-SadjadiYHD00,https://doi.org/10.1109/72.846748 +Michael Fairbank,Simple and Fast Calculation of the Second-Order Gradients for Globalized Dual Heuristic Dynamic Programming in Neural Networks.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn23.html#FairbankAP12,https://doi.org/10.1109/TNNLS.2012.2205268 +Temujin Gautama,Batch map extensions of the kernel-based maximum entropy learning rule.,2006,17,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn17.html#GautamaH06,https://doi.org/10.1109/TNN.2006.871722 +Burkhard Lenze,Improving Leung's bidirectional learning rule for associative memories.,2001,12,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn12.html#Lenze01,https://doi.org/10.1109/72.950150 +Shubao Liu,A Simplified Dual Neural Network for Quadratic Programming With Its KWTA Application.,2006,17,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn17.html#LiuW06,https://doi.org/10.1109/TNN.2006.881046 +Sanqing Hu,Comparison Analysis: Granger Causality and New Causality and Their Applications to Motor Imagery.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn27.html#HuWZKCK16,https://doi.org/10.1109/TNNLS.2015.2441137 +Shen Yin,An Adaptive NN-Based Approach for Fault-Tolerant Control of Nonlinear Time-Varying Delay Systems With Unmodeled Dynamics.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn28.html#YinYGQK17,https://doi.org/10.1109/TNNLS.2016.2558195 +Elias B. Kosmatopoulos,Large Scale Nonlinear Control System Fine-Tuning Through Learning.,2009,20,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn20.html#KosmatopoulosK09,https://doi.org/10.1109/TNN.2009.2014061 +George Kechriotis,Using recurrent neural networks for adaptive communication channel equalization.,1994,5,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn5.html#KechriotisZM94,https://doi.org/10.1109/72.279190 +Tianben Ding,Fading Channel Prediction Based on Combination of Complex-Valued Neural Networks and Chirp Z-Transform.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn25.html#DingH14,https://doi.org/10.1109/TNNLS.2014.2306420 +Hui Wei,Compact Image Representation Model Based on Both nCRF and Reverse Control Mechanisms.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn23.html#WeiWL12,https://doi.org/10.1109/TNNLS.2011.2178472 +Sergio Antonio Cruces-Alvarez,An iterative inversion approach to blind source separation.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn11.html#Cruces-AlvarezCC00,https://doi.org/10.1109/72.883471 +William J. Wolfe,Orthogonal projections applied to the assignment problem.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#WolfeU97,https://doi.org/10.1109/72.572112 +Michelangelo Diligenti,Learning in Variable-Dimensional Spaces.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn27.html#DiligentiGS16,https://doi.org/10.1109/TNNLS.2015.2497275 +Vir V. Phoha,"Corrections to ""Image Recovery and Segmentation Using Competitive Learning in a Layered Network.",1996,7,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn7.html#PhohaO96a,https://doi.org/10.1109/TNN.1996.548189 +Victor M. Becerra,An efficient parameterization of dynamic neural networks for nonlinear system identification.,2005,16,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn16.html#BecerraGNH05,https://doi.org/10.1109/TNN.2005.849844 +Zhang Yi,Foundations of implementing the competitive layer model by Lotka-Volterra recurrent neural networks.,2010,21,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn21.html#Yi10,https://doi.org/10.1109/TNN.2009.2039758 +Yuexian Hou,Nonlinear Dimensionality Reduction by Locally Linear Inlaying.,2009,20,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn20.html#HouZXZL09,https://doi.org/10.1109/TNN.2008.2005582 +Marco Russo,Distributed fuzzy learning using the MULTISOFT machine.,2001,12,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn12.html#Russo01,https://doi.org/10.1109/72.925552 +Mikko Lehtokangas,Fast initialization for cascade-correlation learning.,1999,10,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn10.html#Lehtokangas99,https://doi.org/10.1109/72.750570 +Bo Yu,Pulse-coupled neural networks for contour and motion matchings.,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#YuZ04,https://doi.org/10.1109/TNN.2004.832830 +Laurent Perrinet,Coding static natural images using spiking event *: do neurons Cooperate?,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#PerrinetST04,https://doi.org/10.1109/TNN.2004.833303 +Krzysztof Cpalka,A New Method for Design and Reduction of Neuro-Fuzzy Classification Systems.,2009,20,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn20.html#Cpalka09,https://doi.org/10.1109/TNN.2009.2012425 +Roberto Battiti,Using mutual information for selecting features in supervised neural net learning.,1994,5,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn5.html#Battiti94,https://doi.org/10.1109/72.298224 +Yun Wei,Learning Geotemporal Nonstationary Failure and Recovery of Power Distribution.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn25.html#WeiJGCOM14,https://doi.org/10.1109/TNNLS.2013.2271853 +Davood Golmohammadi,Supplier Selection Based on a Neural Network Model Using Genetic Algorithm.,2009,20,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn20.html#GolmohammadiCVK09,https://doi.org/10.1109/TNN.2009.2027321 +M. Daniel Tom,A neural computation model with short-term memory.,1995,6,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn6.html#TomT95,https://doi.org/10.1109/72.363474 +Wentao Guo,Online Supplementary ADP Learning Controller Design and Application to Power System Frequency Control With Large-Scale Wind Energy Integration.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn27.html#GuoLSHHM16,https://doi.org/10.1109/TNNLS.2015.2431734 +Qiuwen Chen,AnRAD: A Neuromorphic Anomaly Detection Framework for Massive Concurrent Data Streams.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#ChenLWBLQ18,https://doi.org/10.1109/TNNLS.2017.2676110 +Stamatis Vassiliadis,Elementary function generators for neural-network emulators.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn11.html#VassiliadisZD00,https://doi.org/10.1109/72.883475 +Chuandong Li,Stabilizing Effects of Impulses in Discrete-Time Delayed Neural Networks.,2011,22,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn22.html#LiWFL11,https://doi.org/10.1109/TNN.2010.2100084 +Bart Kosko,Unsupervised learning in noise.,1990,1,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn1.html#Kosko90,https://doi.org/10.1109/72.80204 +Seokyong Moon,Robust speech recognition based on joint model and feature space optimization of hidden Markov models.,1997,8,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn8.html#MoonH97,https://doi.org/10.1109/72.557656 +Xi Yang,Shape-Constrained Sparse and Low-Rank Decomposition for Auroral Substorm Detection.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn27.html#YangGTLHL16,https://doi.org/10.1109/TNNLS.2015.2411613 +Juan Ignacio Mulero Martínez,Best Approximation of Gaussian Neural Networks With Nodes Uniformly Spaced.,2008,19,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn19.html#Martinez08,https://doi.org/10.1109/TNN.2007.905851 +Di-Hua Zhai,Multilateral Telecoordinated Control of Multiple Robots With Uncertain Kinematics.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#ZhaiX18,https://doi.org/10.1109/TNNLS.2017.2705115 +Lodewyk F. A. Wessels,Avoiding false local minima by proper initialization of connections.,1992,3,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn3.html#WesselsB92,https://doi.org/10.1109/72.165592 +Laxmidhar Behera,On adaptive trajectory tracking of a robot manipulator using inversion of its neural emulator.,1996,7,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn7.html#BeheraGC96,https://doi.org/10.1109/72.548168 +Mohamad H. Hassoun,Guest Editorial Neural Networks Council Awards.,1996,7,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn7.html#Hassoun96,https://doi.org/10.1109/TNN.1996.478387 +Etienne Barnard,Comments on 'Bayes statistical behavior and valid generalization of pattern classifying neural networks' [with reply].,1992,3,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn3.html#BarnardKM92,https://doi.org/10.1109/72.165607 +Yoshiyasu Takefuji,Parallel algorithms for finding a near-maximum independent set of a circle graph.,1990,1,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn1.html#TakefujiCLH90,https://doi.org/10.1109/72.80251 +Piotr A. Kowalski,Sensitivity Analysis for Probabilistic Neural Network Structure Reduction.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#KowalskiK18,https://doi.org/10.1109/TNNLS.2017.2688482 +Stan Z. Li,Improving convergence and solution quality of Hopfield-type neural networks with augmented Lagrange multipliers.,1996,7,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn7.html#Li96,https://doi.org/10.1109/72.548179 +Marios M. Polycarpou,Editorial: Renewal for the IEEE Transactions on Neural Networks.,2009,20,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn20.html#Polycarpou09,https://doi.org/10.1109/TNN.2009.2037774 +Christoph Rasche,Neuromorphic Excitable Maps for Visual Processing.,2007,18,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn18.html#Rasche07,https://doi.org/10.1109/TNN.2006.884679 +Jonathan S. Kane,A smart pixel-based feedforward neural network.,1998,9,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn9.html#Kane98,https://doi.org/10.1109/72.655037 +Mou Chen,Robust adaptive neural network control for a class of uncertain MIMO nonlinear systems with input nonlinearities.,2010,21,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn21.html#ChenGH10,https://doi.org/10.1109/TNN.2010.2042611 +Shuisheng Zhou,Sparse LSSVM in Primal Using Cholesky Factorization for Large-Scale Problems.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn27.html#Zhou16,https://doi.org/10.1109/TNNLS.2015.2424684 +Chia-Yiu Maa,Linear and quadratic programming neural network analysis.,1992,3,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn3.html#MaaS92,https://doi.org/10.1109/72.143372 +Lan Zou,Nontrivial Global Attractors in 2-D Multistable Attractor Neural Networks.,2009,20,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn20.html#ZouTTZ09a,https://doi.org/10.1109/TNN.2009.2032269 +Amir F. Atiya,Sparse basis selection: new results and application to adaptive prediction of video source traffic.,2005,16,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn16.html#AtiyaAP05,https://doi.org/10.1109/TNN.2005.853426 +Stephen A. Billings,A new class of wavelet networks for nonlinear system identification.,2005,16,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn16.html#BillingsW05,https://doi.org/10.1109/TNN.2005.849842 +Konstantinos Slavakis,Adaptive Multiregression in Reproducing Kernel Hilbert Spaces: The Multiaccess MIMO Channel Case.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn23.html#SlavakisBT12,https://doi.org/10.1109/TNNLS.2011.2178321 +Lei Xu 0001,Robust principal component analysis by self-organizing rules based on statistical physics approach.,1995,6,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn6.html#XuY95,https://doi.org/10.1109/72.363442 +Wu Yilei,A Normalized Adaptive Training of Recurrent Neural Networks With Augmented Error Gradient.,2008,19,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn19.html#YileiQS08,https://doi.org/10.1109/TNN.2007.908647 +Jian-Bo Yang,Determination of Global Minima of Some Common Validation Functions in Support Vector Machine.,2011,22,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn22.html#YangO11,https://doi.org/10.1109/TNN.2011.2106219 +John A. Barnden,Temporal winner-take-all networks: a time-based mechanism for fast selection in neural networks.,1993,4,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn4.html#BarndenS93,https://doi.org/10.1109/72.248461 +David Applebaum,Extending Stochastic Resonance for Neuron Models to General Lévy Noise.,2009,20,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn20.html#Applebaum09,https://doi.org/10.1109/TNN.2009.2033183 +Marcelo C. Medeiros,A flexible coefficient smooth transition time series model.,2005,16,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn16.html#MedeirosV05,https://doi.org/10.1109/TNN.2004.836246 +Li Feng Zhang,A Correlation-Test-Based Validation Procedure for Identified Neural Networks.,2009,20,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn20.html#ZhangZL09,https://doi.org/10.1109/TNN.2008.2003223 +Takao Watanabe,A single 1.5-V digital chip for a 106 synapse neural network.,1993,4,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn4.html#WatanabeKASI93,https://doi.org/10.1109/72.217179 +Renquan Lu,Synchronization on Complex Networks of Networks.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn25.html#LuYLX14,https://doi.org/10.1109/TNNLS.2014.2305443 +Kazuhiro Shimonomura,Wide-Dynamic-Range APS-Based Silicon Retina With Brightness Constancy.,2011,22,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn22.html#ShimonomuraKIY11,https://doi.org/10.1109/TNN.2011.2161591 +Dilip Sarkar,Randomness in generalization ability: a source to improve it.,1996,7,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn7.html#Sarkar96,https://doi.org/10.1109/72.501725 +John Shawe-Taylor,Symmetries and discriminability in feedforward network architectures.,1993,4,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn4.html#Shawe-Taylor93,https://doi.org/10.1109/72.248459 +Hiro-Fumi Yanai,Auto-associative memory with two-stage dynamics of nonmonotonic neurons.,1996,7,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn7.html#YanaiA96,https://doi.org/10.1109/72.508925 +Lei Liu 0008,pth Moment Exponential Input-to-State Stability of Delayed Recurrent Neural Networks With Markovian Switching via Vector Lyapunov Function.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#LiuCQ18,https://doi.org/10.1109/TNNLS.2017.2713824 +Pin Lim,Multimodal Degradation Prognostics Based on Switching Kalman Filter Ensemble.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn28.html#LimGTD17,https://doi.org/10.1109/TNNLS.2015.2504389 +Hans G. C. Tråvén,A neural network approach to statistical pattern classification by 'semiparametric' estimation of probability density functions.,1991,2,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn2.html#Traven91,https://doi.org/10.1109/72.97913 +Dapeng Tao,Manifold Ranking-Based Matrix Factorization for Saliency Detection.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn27.html#TaoCSL16,https://doi.org/10.1109/TNNLS.2015.2461554 +Richard B. McLain,Direct adaptive control of partially known nonlinear systems.,1999,10,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn10.html#McLainHP99,https://doi.org/10.1109/72.761730 +Cheng Hu 0005,Exponential Synchronization of Complex Networks With Finite Distributed Delays Coupling.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#HuYJT11,https://doi.org/10.1109/TNN.2011.2167759 +Licheng Jiao,Fast Sparse Approximation for Least Squares Support Vector Machine.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#JiaoBW07,https://doi.org/10.1109/TNN.2006.889500 +Jian-Xin Xu 0001,Adaptive Learning Control for Finite Interval Tracking Based on Constructive Function Approximation and Wavelet.,2011,22,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn22.html#XuY11,https://doi.org/10.1109/TNN.2011.2132143 +Kunihiko Fukushima,Handwritten alphanumeric character recognition by the neocognitron.,1991,2,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn2.html#FukushimaW91,https://doi.org/10.1109/72.97912 +Qiang Gan 0001,A hybrid learning scheme combining EM and MASMOD algorithms for fuzzy local linearization modeling.,2001,12,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn12.html#GanH01,https://doi.org/10.1109/72.896795 +Jen-Huo Wang,An Adaptable Continuous Restricted Boltzmann Machine in VLSI for Fusing the Sensory Data of an Electronic Nose.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn28.html#WangTC17,https://doi.org/10.1109/TNNLS.2016.2517078 +Antoniya Georgieva,Intelligent Visual Recognition and Classification of Cork Tiles With Neural Networks.,2009,20,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn20.html#GeorgievaJ09,https://doi.org/10.1109/TNN.2008.2011903 +Kewei Tang,Structure-Constrained Low-Rank Representation.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn25.html#TangLSZ14,https://doi.org/10.1109/TNNLS.2014.2306063 +Songchuan Zhang,A Complex-Valued Projection Neural Network for Constrained Optimization of Real Functions in Complex Variables.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn26.html#ZhangX015,https://doi.org/10.1109/TNNLS.2015.2441697 +Alan F. Murray,Pulse-stream VLSI neural networks mixing analog and digital techniques.,1991,2,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn2.html#MurrayCT91,https://doi.org/10.1109/72.80329 +Leonardo Franco,Generalization properties of modular networks: implementing the parity function.,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#FrancoC01,https://doi.org/10.1109/72.963767 +Tingting Chen,Privacy-Preserving Backpropagation Neural Network Learning.,2009,20,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn20.html#ChenZ09,https://doi.org/10.1109/TNN.2009.2026902 +Sean B. Holden,Generalization and PAC learning: some new results for the class of generalized single-layer networks.,1995,6,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn6.html#HoldenR95,https://doi.org/10.1109/72.363472 +Kai Zhang 0001,Clustered Nyström method for large scale manifold learning and dimension reduction.,2010,21,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn21.html#ZhangK10a,https://doi.org/10.1109/TNN.2010.2064786 +K. Nishiyama,H∞-learning of layered neural networks.,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#NishiyamaS01,https://doi.org/10.1109/72.963763 +Jin Zhou,Uncertain Data Clustering in Distributed Peer-to-Peer Networks.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#ZhouCCWL18,https://doi.org/10.1109/TNNLS.2017.2677093 +Mohamad H. Hassoun,Solving Problems in Environmental Engineering and Geosciences with Artificial Neural Networks [Books.,1996,7,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn7.html#Hassoun96c,https://doi.org/10.1109/TNN.1996.508952 +Yuanyuan Liu,Generalized Higher Order Orthogonal Iteration for Tensor Learning and Decomposition.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn27.html#LiuSFCC16,https://doi.org/10.1109/TNNLS.2015.2496858 +Frédéric Vrins,A Minimum-Range Approach to Blind Extraction of Bounded Sources.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#VrinsLV07,https://doi.org/10.1109/TNN.2006.889941 +Junying Zhang,A Minimum Resource Neural Network Framework for Solving Multiconstraint Shortest Path Problems.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn25.html#ZhangZH14,https://doi.org/10.1109/TNNLS.2013.2293775 +Rashad Sharaf,Sensor Integration for Satellite-Based Vehicular Navigation Using Neural Networks.,2007,18,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn18.html#SharafN07,https://doi.org/10.1109/TNN.2006.890811 +Qingshan Liu 0001,Reversed Spectral Hashing.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#LiuLLYWL18,https://doi.org/10.1109/TNNLS.2017.2696053 +Volker Tresp,Neural-network models for the blood glucose metabolism of a diabetic.,1999,10,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn10.html#TrespBM99,https://doi.org/10.1109/72.788659 +Takanori Shibata,Hierarchical intelligent control for robotic motion.,1994,5,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn5.html#ShibataF94,https://doi.org/10.1109/72.317733 +Yan Pan,A Divide-and-Conquer Method for Scalable Robust Multitask Learning.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn26.html#PanXYL15,https://doi.org/10.1109/TNNLS.2015.2406759 +Anthony Kuh,"Comments on ""Pruning Error Minimization in Least Squares Support Vector Machines"".",2007,18,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn18.html#KuhW07,https://doi.org/10.1109/TNN.2007.891590 +Guanghui Wen,Pinning Synchronization of Directed Networks With Switching Topologies: A Multiple Lyapunov Functions Approach.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn26.html#WenYHCY15,https://doi.org/10.1109/TNNLS.2015.2443064 +Zongben Xu,When Does Online BP Training Converge?,2009,20,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn20.html#Xu0J09,https://doi.org/10.1109/TNN.2009.2025946 +Wuneng Zhou,Stability Analysis and Application for Delayed Neural Networks Driven by Fractional Brownian Noise.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#ZhouZYZT18,https://doi.org/10.1109/TNNLS.2017.2674692 +Shuguang Ding,A Fast Algorithm of Convex Hull Vertices Selection for Online Classification.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#DingNQZ18,https://doi.org/10.1109/TNNLS.2017.2648038 +Gregory L. Heileman,A dynamical adaptive resonance architecture.,1994,5,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn5.html#HeilemanGA94,https://doi.org/10.1109/72.329684 +Yin Zhao,Control of Large-Scale Boolean Networks via Network Aggregation.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn27.html#ZhaoGC16,https://doi.org/10.1109/TNNLS.2015.2442593 +Cong Li,Pareto-Path Multitask Multiple Kernel Learning.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn26.html#LiGA15,https://doi.org/10.1109/TNNLS.2014.2309939 +Juwei Lu,Ensemble-based discriminant learning with boosting for face recognition.,2006,17,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn17.html#LuPVL06,https://doi.org/10.1109/TNN.2005.860853 +Emma Izquierdo-Verdiguier,Optimized Kernel Entropy Components.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn28.html#Izquierdo-Verdiguier17,https://doi.org/10.1109/TNNLS.2016.2530403 +Sinan Altug,"A ""mutual update"" training algorithm for fuzzy adaptive logic control/decision network (FALCON).",1999,10,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn10.html#AltugTC99,https://doi.org/10.1109/72.737508 +Zhihong Man,A New Adaptive Backpropagation Algorithm Based on Lyapunov Stability Theory for Neural Networks.,2006,17,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn17.html#ManWLY06,https://doi.org/10.1109/TNN.2006.880360 +Xin Xu 0001,Manifold-Based Reinforcement Learning via Locally Linear Reconstruction.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn28.html#XuHZH17,https://doi.org/10.1109/TNNLS.2015.2505084 +Eric Bax,Partition-based and sharp uniform error bounds.,1999,10,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn10.html#Bax99,https://doi.org/10.1109/72.809077 +Li-Min Fu,The application of certainty factors to neural computing for rule discovery.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn11.html#FuS00,https://doi.org/10.1109/72.846736 +Bo Shen,Bounded Hinfty Synchronization and State Estimation for Discrete Time-Varying Stochastic Complex Networks Over a Finite Horizon.,2011,22,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn22.html#ShenWL11,https://doi.org/10.1109/TNN.2010.2090669 +Zhouyu Fu,Mixing Linear SVMs for Nonlinear Classification.,2010,21,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn21.html#FuRZ10,https://doi.org/10.1109/TNN.2010.2080319 +Stanislaw Jankowski,Complex-valued multistate neural associative memory.,1996,7,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn7.html#JankowskiLZ96,https://doi.org/10.1109/72.548176 +Xin-Ge Liu,Global Exponential Stability of Bidirectional Associative Memory Neural Networks With Time Delays.,2008,19,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn19.html#LiuMWT08,https://doi.org/10.1109/TNN.2007.908633 +María Pérez-Ortiz,Oversampling the Minority Class in the Feature Space.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn27.html#Perez-OrtizGTH16,https://doi.org/10.1109/TNNLS.2015.2461436 +Vassilis P. Plagianakos,Deterministic nonmonotone strategies for effective training of multilayer perceptrons.,2002,13,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn13.html#PlagianakosMV02,https://doi.org/10.1109/TNN.2002.804225 +Wang Wei Lee,CONE: Convex-Optimized-Synaptic Efficacies for Temporally Precise Spike Mapping.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn28.html#LeeKT17,https://doi.org/10.1109/TNNLS.2015.2509479 +Riccardo Boscolo,Independent component analysis based on nonparametric density estimation.,2004,15,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn15.html#BoscoloPR04,https://doi.org/10.1109/TNN.2003.820667 +Igor N. Aizenberg,Blur Identification by Multilayer Neural Network Based on Multivalued Neurons.,2008,19,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn19.html#AizenbergPZA08,https://doi.org/10.1109/TNN.2007.914158 +Dong Shen,Iterative Learning Control With Unknown Control Direction: A Novel Data-Based Approach.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#ShenH11,https://doi.org/10.1109/TNN.2011.2175947 +Etienne Barnard,Backpropagation uses prior information efficiently.,1993,4,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn4.html#BarnardB93,https://doi.org/10.1109/72.248457 +Sergios Theodoridis,Pattern Recognition.,2008,19,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn19.html#TheodoridisK08,https://doi.org/10.1109/TNN.2008.929642 +Haibo He,SSC: A Classifier Combination Method Based on Signal Strength.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn23.html#HeC12,https://doi.org/10.1109/TNNLS.2012.2198227 +Martin T. Hill,All fiber-optic neural network using coupled SOA based ring lasers.,2002,13,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn13.html#HillFWKD02,https://doi.org/10.1109/TNN.2002.804222 +Hwee Choo Liaw,Robust Neural Network Motion Tracking Control of Piezoelectric Actuation Systems for Micro/Nanomanipulation.,2009,20,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn20.html#LiawSS09,https://doi.org/10.1109/TNN.2008.2004406 +Sylvain Chartier,A bidirectional heteroassociative memory for binary and grey-level patterns.,2006,17,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn17.html#ChartierB06a,https://doi.org/10.1109/TNN.2005.863420 +Gou-Jen Wang,A fast multilayer neural-network training algorithm based on the layer-by-layer optimizing procedures.,1996,7,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn7.html#WangC96,https://doi.org/10.1109/72.501734 +Xinwang Liu,Global and Local Structure Preservation for Feature Selection.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn25.html#LiuWZYL14,https://doi.org/10.1109/TNNLS.2013.2287275 +Yanshan Xiao,Multiple-Instance Ordinal Regression.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#XiaoLH18,https://doi.org/10.1109/TNNLS.2017.2766164 +Ke Qin,Adachi-Like Chaotic Neural Networks Requiring Linear-Time Computations by Enforcing a Tree-Shaped Topology.,2009,20,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn20.html#QinO09,https://doi.org/10.1109/TNN.2009.2030582 +Hong Qu,Real-Time Robot Path Planning Based on a Modified Pulse-Coupled Neural Network Model.,2009,20,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn20.html#QuYWY09,https://doi.org/10.1109/TNN.2009.2029858 +Jauwairia Nasir,User Preference-Based Dual-Memory Neural Model With Memory Consolidation Approach.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#NasirYKK18,https://doi.org/10.1109/TNNLS.2017.2691260 +Jagath C. Rajapakse,Adaptive blind signal and image processing: learning algorithms and applications [Book Review].,2003,14,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn14.html#Rajapakse03,https://doi.org/10.1109/TNN.2003.821788 +Hiroyuki Torikai,Synchronization phenomena in pulse-coupled networks driven by spike-train inputs.,2004,15,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn15.html#TorikaiS04,https://doi.org/10.1109/TNN.2004.824403 +Qinglai Wei,Adaptive Dynamic Programming for Discrete-Time Zero-Sum Games.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#WeiLLS18,https://doi.org/10.1109/TNNLS.2016.2638863 +Oh Jun Kwon,"Comments on ""The effects of quantization on multilayer neural networks"" [and reply].",1998,9,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn9.html#KwonBDR98,https://doi.org/10.1109/72.701186 +Huamin Wang,Exponential Stability of Complex-Valued Memristive Recurrent Neural Networks.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn28.html#WangDHWL17,https://doi.org/10.1109/TNNLS.2015.2513001 +J. Barry Gomm,Selecting radial basis function network centers with recursive orthogonal least squares training.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn11.html#GommY00,https://doi.org/10.1109/72.839002 +Yiu-ming Cheung,Rival-Model Penalized Self-Organizing Map.,2007,18,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn18.html#CheungL07,https://doi.org/10.1109/TNN.2006.885039 +Giacomo Indiveri,A VLSI array of low-power spiking neurons and bistable synapses with spike-timing dependent plasticity.,2006,17,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn17.html#IndiveriCD06,https://doi.org/10.1109/TNN.2005.860850 +Debrup Chakraborty,A novel training scheme for multilayered perceptrons to realize proper generalization and incremental learning.,2003,14,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn14.html#ChakrabortyP03,https://doi.org/10.1109/TNN.2002.806953 +Stelios D. Bekiros,Sign Prediction and Volatility Dynamics With Hybrid Neurofuzzy Approaches.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#Bekiros11,https://doi.org/10.1109/TNN.2011.2169497 +Renato De Leone,A successive overrelaxation backpropagation algorithm for neural-network training.,1998,9,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn9.html#LeoneCM98,https://doi.org/10.1109/72.668881 +Aurele Balavoine,"Correction to ""Convergence and Rate Analysis of Neural Networks for Sparse Approximation"".",2014,25,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn25.html#BalavoineRR14,https://doi.org/10.1109/TNNLS.2013.2292700 +Qi Wang 0009,Salient Band Selection for Hyperspectral Image Classification via Manifold Ranking.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn27.html#WangLY16,https://doi.org/10.1109/TNNLS.2015.2477537 +Xiaolin Hu,Solving Pseudomonotone Variational Inequalities and Pseudoconvex Optimization Problems Using the Projection Neural Network.,2006,17,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn17.html#HuW06,https://doi.org/10.1109/TNN.2006.879774 +Nicol N. Schraudolph,Gradient-based manipulation of nonparametric entropy estimates.,2004,15,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn15.html#Schraudolph04,https://doi.org/10.1109/TNN.2004.828766 +Antonio J. Montalvo,Toward a general-purpose analog VLSI neural network with on-chip learning.,1997,8,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn8.html#MontalvoGP97,https://doi.org/10.1109/72.557695 +Jyh-Shing Roger Jang,Self-learning fuzzy controllers based on temporal backpropagation.,1992,3,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn3.html#Jang92,https://doi.org/10.1109/72.159060 +Rahul Kumar Sevakula,Assessing Generalization Ability of Majority Vote Point Classifiers.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn28.html#SevakulaV17,https://doi.org/10.1109/TNNLS.2016.2609466 +Cheng-Wei Li,Estimating Sensorimotor Mapping From Stimuli to Behaviors to Infer C. elegans Movements by Neural Transmission Ability Through Connectome Databases.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn27.html#LiLC16,https://doi.org/10.1109/TNNLS.2015.2475395 +Kuan-Ming Lin,A study on reduced support vector machines.,2003,14,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn14.html#LinL03,https://doi.org/10.1109/TNN.2003.820828 +Stavros Ntalampiras,Fault Identification in Distributed Sensor Networks Based on Universal Probabilistic Modeling.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn26.html#Ntalampiras15,https://doi.org/10.1109/TNNLS.2014.2362015 +Dong Wang 0015,Bayesian Neighborhood Component Analysis.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#WangT18,https://doi.org/10.1109/TNNLS.2017.2712823 +Lei Zou 0003,State Estimation for Discrete-Time Dynamical Networks With Time-Varying Delays and Stochastic Disturbances Under the Round-Robin Protocol.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn28.html#ZouWGL17,https://doi.org/10.1109/TNNLS.2016.2524621 +Zhijun Li,Neural-Adaptive Control of Single-Master-Multiple-Slaves Teleoperation for Coordinated Multiple Mobile Manipulators With Time-Varying Communication Delays and Input Uncertainties.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn24.html#LiS13a,https://doi.org/10.1109/TNNLS.2013.2258681 +Sumio Watanabe,"Errata to ""learning efficiency of redundant neural networks in bayesian estimation"".",2002,13,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn13.html#Watanabe02,https://doi.org/10.1109/TNN.2002.977325 +Marco Gori,On the closure of the set of functions that can be realized by a given multilayer perceptron.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#GoriST98,https://doi.org/10.1109/72.728354 +Ayanendu Paul,Adaptive power control for wireless networks using multiple controllers and switching.,2005,16,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn16.html#PaulASM05,https://doi.org/10.1109/TNN.2005.853420 +Chengzhi Zhao,Dynamic Channel Assignment for Large-Scale Cellular Networks Using Noisy Chaotic Neural Network.,2011,22,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn22.html#ZhaoG11,https://doi.org/10.1109/TNN.2010.2091653 +Qi Mao,Generalized Multiple Kernel Learning With Data-Dependent Priors.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn26.html#MaoTGW15,https://doi.org/10.1109/TNNLS.2014.2334137 +Laurens Bliek,Online Optimization With Costly and Noisy Measurements Using Random Fourier Expansions.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn29.html#BliekVVW18,https://doi.org/10.1109/TNNLS.2016.2615134 +Puya Afshar,Data-Based Robust Multiobjective Optimization of Interconnected Processes: Energy Efficiency Case Study in Papermaking.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#AfsharBMW11,https://doi.org/10.1109/TNN.2011.2174444 +Cheng Hu 0005,Impulsive control and synchronization for delayed neural networks with reaction-diffusion terms.,2010,21,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn21.html#HuJT10,https://doi.org/10.1109/TNN.2009.2034318 +Gerhard X. Ritter,Morphological associative memories.,1998,9,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn9.html#RitterSS98,https://doi.org/10.1109/72.661123 +Duy Nguyen-Tuong,Online Kernel-Based Learning for Task-Space Tracking Robot Control.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn23.html#Nguyen-TuongP12,https://doi.org/10.1109/TNNLS.2012.2201261 +Chen Wang,Optimal Critic Learning for Robot Control in Time-Varying Environments.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn26.html#WangLGL15,https://doi.org/10.1109/TNNLS.2014.2378812 +Ruxin Wang,Multiclass Learning With Partially Corrupted Labels.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#WangLT18,https://doi.org/10.1109/TNNLS.2017.2699783 +Emre Kiciman,Detecting application-level failures in component-based Internet services.,2005,16,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn16.html#KicimanF05,https://doi.org/10.1109/TNN.2005.853411 +Antonio Peñalver Benavent,Learning Gaussian Mixture Models With Entropy-Based Criteria.,2009,20,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn20.html#BenaventRS09,https://doi.org/10.1109/TNN.2009.2030190 +Qingshan Liu 0002,A delayed neural network for solving linear projection equations and its analysis.,2005,16,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn16.html#LiuCX05,https://doi.org/10.1109/TNN.2005.849834 +Kristiaan Pelckmans,A Convex Approach to Validation-Based Learning of the Regularization Constant.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#PelckmansSM07,https://doi.org/10.1109/TNN.2007.891187 +Shengli Xie,Fair Energy Scheduling for Vehicle-to-Grid Networks Using Adaptive Dynamic Programming.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn27.html#XieZXYZ16,https://doi.org/10.1109/TNNLS.2016.2526615 +Stanislaw H. Zak,Solving linear programming problems with neural networks: a comparative study.,1995,6,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn6.html#ZakUH95,https://doi.org/10.1109/72.363446 +Sylvain Chartier,A sequential dynamic heteroassociative memory for multistep pattern recognition and one-to-many association.,2006,17,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn17.html#ChartierB06,https://doi.org/10.1109/TNN.2005.860855 +Marco Saerens,Design of a perceptron-like algorithm based on system identification techniques.,1995,6,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn6.html#Saerens95,https://doi.org/10.1109/72.363489 +Zhengcai Cao,Robust Neuro-Optimal Control of Underactuated Snake Robots With Experience Replay.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn29.html#CaoXHZ18,https://doi.org/10.1109/TNNLS.2017.2768820 +Xiaojun Chang,Semisupervised Feature Analysis by Mining Correlations Among Multiple Tasks.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn28.html#ChangY17,https://doi.org/10.1109/TNNLS.2016.2582746 +David Hsu,Competitive learning with floating-gate circuits.,2002,13,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn13.html#HsuFD02,https://doi.org/10.1109/TNN.2002.1000139 +Luoqing Li,Learning With Coefficient-Based Regularized Regression on Markov Resampling.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#LiLZWTH18,https://doi.org/10.1109/TNNLS.2017.2757140 +Richard J. Duro,Discrete-time backpropagation for training synaptic delay-based artificial neural networks.,1999,10,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn10.html#DuroR99,https://doi.org/10.1109/72.774220 +Jie Xu 0006,The Generalization Ability of Online SVM Classification Based on Markov Sampling.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn26.html#XuTZXLL15,https://doi.org/10.1109/TNNLS.2014.2361026 +Ryo Saegusa,Developmental Perception of the Self and Action.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn25.html#SaegusaMSN14,https://doi.org/10.1109/TNNLS.2013.2271793 +Valeriu Beiu,VLSI implementations of threshold logic-a comprehensive survey.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#BeiuQA03,https://doi.org/10.1109/TNN.2003.816365 +Bipul Luitel,Decentralized Asynchronous Learning in Cellular Neural Networks.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn23.html#LuitelV12,https://doi.org/10.1109/TNNLS.2012.2216900 +Johnny Wei-Hsun Kao,Blind multiuser detector for chaos-based CDMA using support vector machine.,2010,21,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn21.html#KaoBK10,https://doi.org/10.1109/TNN.2010.2048758 +Kristof Vandoorne,Parallel Reservoir Computing Using Optical Amplifiers.,2011,22,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn22.html#VandoorneDVSB11,https://doi.org/10.1109/TNN.2011.2161771 +Seniha Esen Yuksel,Twenty Years of Mixture of Experts.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn23.html#YukselWG12,https://doi.org/10.1109/TNNLS.2012.2200299 +Gert Cauwenberghs,An analog VLSI recurrent neural network learning a continuous-time trajectory.,1996,7,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn7.html#Cauwenberghs96,https://doi.org/10.1109/72.485671 +Long Cheng 0001,A Delayed Projection Neural Network for Solving Linear Variational Inequalities.,2009,20,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn20.html#ChengHT09,https://doi.org/10.1109/TNN.2009.2012517 +Shichang Sun,Substructural Regularization With Data-Sensitive Granularity for Sequence Transfer Learning.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#SunLMCY18,https://doi.org/10.1109/TNNLS.2016.2638321 +Zhiwei Shi,Support Vector Echo-State Machine for Chaotic Time-Series Prediction.,2007,18,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn18.html#ShiH07,https://doi.org/10.1109/TNN.2006.885113 +Filipe Aires,"The ""weight smoothing"" regularization of MLP for Jacobian stabilization.",1999,10,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn10.html#AiresSCS99,https://doi.org/10.1109/72.809096 +Xun Liang,Pruning Support Vector Machines Without Altering Performances.,2008,19,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn19.html#LiangCG08,https://doi.org/10.1109/TNN.2008.2002696 +Lu Xu 0003,Robust Blind Learning Algorithm for Nonlinear Equalization Using Input Decision Information.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn26.html#XuHG15,https://doi.org/10.1109/TNNLS.2015.2399499 +Payman Arabshahi,Fundamentals of Artificial Neural Networks [Book Reviews].,1996,7,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn7.html#Arabshahi96,https://doi.org/10.1109/TNN.1996.501738 +Lazaros Zafeiriou,Probabilistic Slow Features for Behavior Analysis.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn27.html#ZafeiriouNZNP16,https://doi.org/10.1109/TNNLS.2015.2435653 +Klaus Greff,LSTM: A Search Space Odyssey.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn28.html#GreffSKSS17,https://doi.org/10.1109/TNNLS.2016.2582924 +Marc M. Van Hulle,Density-based clustering with topographic maps.,1999,10,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn10.html#Hulle99,https://doi.org/10.1109/72.737510 +Wei Jiang,Block-Based Neural Networks for Personalized ECG Signal Classification.,2007,18,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn18.html#JiangK07,https://doi.org/10.1109/TNN.2007.900239 +Marcos Angel Gonzalez-Olvera,Black-box identification of a class of nonlinear systems by a recurrent neurofuzzy network.,2010,21,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn21.html#Gonzalez-OlveraT10,https://doi.org/10.1109/TNN.2010.2041068 +Stefen Hui,Dynamical analysis of the brain-state-in-a-box (BSB) neural models.,1992,3,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn3.html#HuiZ92,https://doi.org/10.1109/72.105420 +Paul Lajbcygier,Improving option pricing with the product constrained hybrid neural network.,2004,15,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn15.html#Lajbcygier04,https://doi.org/10.1109/TNN.2004.824265 +Waldemar Swiercz,A new synaptic plasticity rule for networks of spiking neurons.,2006,17,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn17.html#SwierczCSKAS06,https://doi.org/10.1109/TNN.2005.860834 +Sajad Saeedi G.,Neural Network-Based Multiple Robot Simultaneous Localization and Mapping.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#SaeediGPTL11,https://doi.org/10.1109/TNN.2011.2176541 +Stefan C. Kremer,Identification of a specific limitation on local-feedback recurrent networks acting as Mealy-Moore machines.,1999,10,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn10.html#Kremer99,https://doi.org/10.1109/72.750574 +Lingfeng Wang,MSDLSR: Margin Scalable Discriminative Least Squares Regression for Multicategory Classification.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn27.html#WangZP16,https://doi.org/10.1109/TNNLS.2015.2477826 +Guillaume Colin,Neural Control of Fast Nonlinear Systems- Application to a Turbocharged SI Engine With VCT.,2007,18,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn18.html#ColinCBC07,https://doi.org/10.1109/TNN.2007.899221 +Xiaoran Jiang,Storing Sequences in Binary Tournament-Based Neural Networks.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn27.html#JiangGBR16,https://doi.org/10.1109/TNNLS.2015.2431319 +Carolina Varon,Noise Level Estimation for Model Selection in Kernel PCA Denoising.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn26.html#VaronAS15,https://doi.org/10.1109/TNNLS.2015.2388696 +Phill Rowcliffe,Spiking perceptrons.,2006,17,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn17.html#RowcliffeFB06,https://doi.org/10.1109/TNN.2006.873274 +Yong Luo,Heterogeneous Multitask Metric Learning Across Multiple Domains.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#LuoWT18,https://doi.org/10.1109/TNNLS.2017.2750321 +Zhijun Yang,A neuromorphic depth-from-motion vision model with STDP adaptation.,2006,17,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn17.html#YangMWCB06,https://doi.org/10.1109/TNN.2006.871711 +Philippe Kerlirzin,Theoretical investigation of the robustness of multilayer perceptrons: analysis of the linear case and extension to nonlinear networks.,1995,6,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn6.html#KerlirzinR95,https://doi.org/10.1109/72.377963 +Monica Bianchini,On the Complexity of Neural Network Classifiers: A Comparison Between Shallow and Deep Architectures.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn25.html#BianchiniS14,https://doi.org/10.1109/TNNLS.2013.2293637 +Eduardo D. Sontag,Feedback stabilization using two-hidden-layer nets.,1992,3,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn3.html#Sontag92,https://doi.org/10.1109/72.165599 +Zhixia Ding,Robust Finite-Time Stabilization of Fractional-Order Neural Networks With Discontinuous and Continuous Activation Functions Under Uncertainty.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#DingZW18,https://doi.org/10.1109/TNNLS.2017.2675442 +Alexander B. Trunov,Automated fault diagnosis in nonlinear multivariable systems using a learning methodology.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn11.html#TrunovP00,https://doi.org/10.1109/72.822513 +Rudrayya C. Garigipati,Mirror Inverse Operations in Linear Nearest Neighbors Using Dynamic Learning Algorithm.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn27.html#GarigipatiK16,https://doi.org/10.1109/TNNLS.2015.2399399 +Akira Hirose,Analog recurrent decision circuit with high signal-voltage symmetry and delay-time equality to improve continuous-time convergence performance.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#HiroseN03,https://doi.org/10.1109/TNN.2003.816372 +Eric Fock,Global Sensitivity Analysis Approach for Input Selection and System Identification Purposes - A New Framework for Feedforward Neural Networks.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn25.html#Fock14,https://doi.org/10.1109/TNNLS.2013.2294437 +Dapeng Tao,Ensemble Manifold Rank Preserving for Acceleration-Based Human Activity Recognition.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn27.html#TaoJYX16,https://doi.org/10.1109/TNNLS.2014.2357794 +Zhe Sun,Cutting plane method for continuously constrained kernel-based regression.,2010,21,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn21.html#SunZWJ10,https://doi.org/10.1109/TNN.2009.2035804 +Andrew D. Back,Selecting inputs for modeling using normalized higher order statistics and independent component analysis.,2001,12,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn12.html#BackT01,https://doi.org/10.1109/72.925564 +Licheng Wang,Finite-Time State Estimation for Recurrent Delayed Neural Networks With Component-Based Event-Triggering Protocol.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#WangWWA18,https://doi.org/10.1109/TNNLS.2016.2635080 +Jianhua Zhao,Bilinear Probabilistic Principal Component Analysis.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn23.html#ZhaoYK12,https://doi.org/10.1109/TNNLS.2012.2183006 +Tsung-Jung Liu,A ParaBoost Method to Image Quality Assessment.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn28.html#LiuLLLK17,https://doi.org/10.1109/TNNLS.2015.2500268 +Youmin Zhang 0001,A fast U-D factorization-based learning algorithm with applications to nonlinear system modeling and identification.,1999,10,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn10.html#ZhangL99,https://doi.org/10.1109/72.774266 +Manel Martínez-Ramón,Support Vector Machines for Nonlinear Kernel ARMA System Identification.,2006,17,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn17.html#Martinez-RamonRCMNSF06,https://doi.org/10.1109/TNN.2006.879767 +Nathan Szanto,Event-Sampled Direct Adaptive NN Output- and State-Feedback Control of Uncertain Strict-Feedback System.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#SzantoNJ18,https://doi.org/10.1109/TNNLS.2017.2678922 +Mau-Hsiang Shih,Decirculation Process in Neural Network Dynamics.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn23.html#ShihT12,https://doi.org/10.1109/TNNLS.2012.2212455 +Haijun Jiang,Existence and global exponential stability of almost periodic solution for cellular neural networks with variable coefficients and time-varying delays.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#JiangZT05,https://doi.org/10.1109/TNN.2005.857951 +Ata Kabán,Fractional Norm Regularization: Learning With Very Few Relevant Features.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn24.html#Kaban13,https://doi.org/10.1109/TNNLS.2013.2247417 +Haibin Duan,Echo State Networks With Orthogonal Pigeon-Inspired Optimization for Image Restoration.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn27.html#DuanW16,https://doi.org/10.1109/TNNLS.2015.2479117 +Marc M. Van Hulle,On a novel unsupervised competitive learning algorithm for scalar quantization.,1994,5,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn5.html#HulleM94,https://doi.org/10.1109/72.286923 +M. A. L. Thathachar,Learning the global maximum with parameterized learning automata.,1995,6,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn6.html#ThathacharP95,https://doi.org/10.1109/72.363475 +Randy P. Broussard,Physiologically motivated image fusion for object detection using a pulse coupled neural network.,1999,10,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn10.html#BroussardROT99,https://doi.org/10.1109/72.761712 +Catherine Z. W. Hassell Sweatman,Two algorithms for neural-network design and training with application to channel equalization.,1998,9,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn9.html#SweatmanMG98,https://doi.org/10.1109/72.668895 +Yangqing Jia,Trace Ratio Problem Revisited.,2009,20,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn20.html#JiaNZ09,https://doi.org/10.1109/TNN.2009.2015760 +Ján Dolinský,Analysis and Modeling of Naturalness in Handwritten Characters.,2009,20,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn20.html#DolinskyT09,https://doi.org/10.1109/TNN.2009.2026174 +Ling Zhang,Generating and coding of fractal graphs by neural network and mathematical morphology methods.,1996,7,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn7.html#ZhangZC96,https://doi.org/10.1109/72.485675 +Tatt Hee Oong,Feature-Based Ordering Algorithm for Data Presentation of Fuzzy ARTMAP Ensembles.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn25.html#OongI14,https://doi.org/10.1109/TNNLS.2013.2280579 +Alexander Semyon Sherstinsky,On the efficiency of the orthogonal least squares training method for radial basis function networks.,1996,7,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn7.html#SherstinskyP96,https://doi.org/10.1109/72.478404 +Kazushi Ikeda,Effects of kernel function on Nu support vector machines in extreme cases.,2006,17,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn17.html#Ikeda06,https://doi.org/10.1109/TNN.2005.860832 +Guang-Bin Huang,Learning capability and storage capacity of two-hidden-layer feedforward networks.,2003,14,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn14.html#Huang03,https://doi.org/10.1109/TNN.2003.809401 +Ye Zhao,Robust Stability Criterion for Discrete-Time Uncertain Markovian Jumping Neural Networks With Defective Statistics of Modes Transitions.,2011,22,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn22.html#ZhaoZSG11,https://doi.org/10.1109/TNN.2010.2093151 +Lingfeng Wang,Groupwise Retargeted Least-Squares Regression.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#WangP18,https://doi.org/10.1109/TNNLS.2017.2651169 +Terry Windeatt,Minimising Added Classification Error Using Walsh Coefficients.,2011,22,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn22.html#WindeattZ11,https://doi.org/10.1109/TNN.2011.2159513 +Jen-Tzung Chien,Tensor-Factorized Neural Networks.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#ChienB18,https://doi.org/10.1109/TNNLS.2017.2690379 +Xiantong Zhen,Descriptor Learning via Supervised Manifold Regularization for Multioutput Regression.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn28.html#ZhenYIBCL17,https://doi.org/10.1109/TNNLS.2016.2573260 +Daizhan Cheng,Input-State Approach to Boolean Networks.,2009,20,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn20.html#Cheng09,https://doi.org/10.1109/TNN.2008.2011359 +Jiahu Qin,Containment Control for Second-Order Multiagent Systems Communicating Over Heterogeneous Networks.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn28.html#QinZGMF17,https://doi.org/10.1109/TNNLS.2016.2574830 +Xuesong Zhang,3-D Laser-Based Multiclass and Multiview Object Detection in Cluttered Indoor Scenes.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn28.html#ZhangZHW17,https://doi.org/10.1109/TNNLS.2015.2496195 +Takashi Kanamaru,An analysis of globally connected active rotators with excitatory and inhibitory connections having different time constants using the nonlinear Fokker-Planck equations.,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#KanamaruS04,https://doi.org/10.1109/TNN.2004.832715 +Derong Liu 0001,Decentralized Stabilization for a Class of Continuous-Time Nonlinear Interconnected Systems Using Online Learning Optimal Control Approach.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn25.html#LiuWL14,https://doi.org/10.1109/TNNLS.2013.2280013 +Thomas Lindblad,Inherent features of wavelets and pulse coupled networks.,1999,10,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn10.html#LindbladK99,https://doi.org/10.1109/72.761719 +Luca Consolini,A Gauss-Newton Method for the Synthesis of Periodic Outputs With Central Pattern Generators.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn25.html#ConsoliniL14,https://doi.org/10.1109/TNNLS.2013.2288260 +Jin-Ping Chen,Modified Multivalued Neuron With Periodic Tolerant Activation Function.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn25.html#ChenL14,https://doi.org/10.1109/TNNLS.2013.2276012 +Jin-Quan Huang,Neural-network predictive control for nonlinear dynamic systems with time-delay.,2003,14,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn14.html#HuangL03,https://doi.org/10.1109/TNN.2003.809424 +Yun-Chung Chu,A neural-network method for the nonlinear servomechanism problem.,1999,10,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn10.html#ChuH99,https://doi.org/10.1109/72.809086 +Yeou-Fang Wang,Guaranteed recall of all training pairs for bidirectional associative memory.,1991,2,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn2.html#WangCM91,https://doi.org/10.1109/72.97933 +Zheng Yan 0001,A Collective Neurodynamic Approach to Constrained Global Optimization.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn28.html#YanFW17,https://doi.org/10.1109/TNNLS.2016.2524619 +Masaki Kobayashi,Exceptional reducibility of complex-valued neural networks.,2010,21,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn21.html#Kobayashi10,https://doi.org/10.1109/TNN.2010.2048040 +Tianping Chen,Robust global exponential stability of Cohen-Grossberg neural networks with time delays.,2004,15,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn15.html#ChenR04,https://doi.org/10.1109/TNN.2003.822974 +Qingshan Liu 0002,Finite-Time Convergent Recurrent Neural Network With a Hard-Limiting Activation Function for Constrained Optimization With Piecewise-Linear Objective Functions.,2011,22,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn22.html#LiuW11,https://doi.org/10.1109/TNN.2011.2104979 +Yu Zhao 0001,Neural Network Control of Multifingered Robot Hands Using Visual Feedback.,2009,20,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn20.html#0001C09,https://doi.org/10.1109/TNN.2008.2012127 +Marc Robinson,Multi-aspect target discrimination using hidden Markov models and neural networks.,2005,16,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn16.html#RobinsonAS05,https://doi.org/10.1109/TNN.2004.841805 +Heng Guo 0002,Classification trees with neural network feature extraction.,1992,3,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn3.html#GuoG92,https://doi.org/10.1109/72.165594 +P. S. Linsay,Fast numerical integration of relaxation oscillator networks based on singular limit solutions.,1998,9,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn9.html#LinsayW98,https://doi.org/10.1109/72.668894 +Xinlei Yi,Pull-Based Distributed Event-Triggered Consensus for Multiagent Systems With Directed Topologies.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn28.html#YiLC17,https://doi.org/10.1109/TNNLS.2015.2498303 +Huaguang Zhang,Data-Driven Robust Approximate Optimal Tracking Control for Unknown General Nonlinear Systems Using Adaptive Dynamic Programming Method.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#ZhangCZL11,https://doi.org/10.1109/TNN.2011.2168538 +Eiji Mizutani,Multi-illuminant color reproduction for electronic cameras via CANFIS neuro-fuzzy modular network device characterization.,2002,13,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn13.html#MizutaniN02,https://doi.org/10.1109/TNN.2002.1021900 +William Byrne,Alternating minimization and Boltzmann machine learning.,1992,3,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn3.html#Byrne92,https://doi.org/10.1109/72.143375 +Xiaoou Tang,A spatial-temporal approach for video caption detection and recognition.,2002,13,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn13.html#TangGLZ02,https://doi.org/10.1109/TNN.2002.1021896 +Arto Klami,Group Factor Analysis.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn26.html#KlamiVLK15,https://doi.org/10.1109/TNNLS.2014.2376974 +Xuemei Ren,Identification of Extended Hammerstein Systems Using Dynamic Self-Optimizing Neural Networks.,2011,22,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn22.html#RenL11,https://doi.org/10.1109/TNN.2011.2154339 +Barak A. Pearlmutter,Gradient calculations for dynamic recurrent neural networks: a survey.,1995,6,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn6.html#Pearlmutter95,https://doi.org/10.1109/72.410363 +Aysegul Dundar,Embedded Streaming Deep Neural Networks Accelerator With Applications.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn28.html#DundarJMC17,https://doi.org/10.1109/TNNLS.2016.2545298 +Zhidong Deng,Collective Behavior of a Small-World Recurrent Neural System With Scale-Free Distribution.,2007,18,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn18.html#DengZ07,https://doi.org/10.1109/TNN.2007.894082 +Bo Fan 0005,Robust ADP Design for Continuous-Time Nonlinear Systems With Output Constraints.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#FanYTS18,https://doi.org/10.1109/TNNLS.2018.2806347 +Wanli Zhang,Finite-Time Synchronization of Discontinuous Neural Networks With Delays and Mismatched Parameters.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#ZhangYXFL18,https://doi.org/10.1109/TNNLS.2017.2740431 +Narayan Srinivasa,Self-Organizing Spiking Neural Model for Learning Fault-Tolerant Spatio-Motor Transformations.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn23.html#SrinivasaC12,https://doi.org/10.1109/TNNLS.2012.2207738 +Abbas Khosravi,Lower Upper Bound Estimation Method for Construction of Neural Network-Based Prediction Intervals.,2011,22,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn22.html#KhosraviNCA11,https://doi.org/10.1109/TNN.2010.2096824 +Lei Meng,Adaptive Scaling of Cluster Boundaries for Large-Scale Social Media Data Clustering.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn27.html#MengTW16,https://doi.org/10.1109/TNNLS.2015.2498625 +Stuart Townley,Existence and learning of oscillations in recurrent neural networks.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn11.html#TownleyIWMROP00,https://doi.org/10.1109/72.822523 +Naimin Zhang,Convergence of gradient method with momentum for two-Layer feedforward neural networks.,2006,17,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn17.html#ZhangWZ06,https://doi.org/10.1109/TNN.2005.863460 +Jiamei Deng,Minimum Data Requirement for Neural Networks Based on Power Spectral Density Analysis.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn23.html#DengMS12,https://doi.org/10.1109/TNNLS.2012.2183887 +Raymond Pavloski,The self-trapping attractor neural network. I. Analysis of a simple 1-D model.,2003,14,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn14.html#PavloskiK03,https://doi.org/10.1109/TNN.2002.806608 +Nicolás García-Pedrajas,COVNET: a cooperative coevolutionary model for evolving artificial neural networks.,2003,14,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn14.html#Garcia-PedrajasHM03,https://doi.org/10.1109/TNN.2003.810618 +Shibing Zhou,Method for Determining the Optimal Number of Clusters Based on Agglomerative Hierarchical Clustering.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn28.html#ZhouXL17,https://doi.org/10.1109/TNNLS.2016.2608001 +Yu Zhao 0001,Stability Analysis of Discrete-Time Recurrent Neural Networks With Stochastic Delay.,2009,20,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn20.html#0001GL009,https://doi.org/10.1109/TNN.2009.2023379 +Katheryn Margaret Adeney,On the use of separable Volterra networks to model discrete-time Volterra systems.,2001,12,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn12.html#AdeneyK01,https://doi.org/10.1109/72.896810 +Peng Liu,Multistability of Recurrent Neural Networks With Nonmonotonic Activation Functions and Unbounded Time-Varying Delays.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#LiuZW18,https://doi.org/10.1109/TNNLS.2017.2710299 +Athanasios Kehagias,Predictive modular neural networks for unsupervised segmentation of switching time series: the data allocation problem.,2002,13,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn13.html#KehagiasP02,https://doi.org/10.1109/TNN.2002.804288 +Yutaka Maeda,Learning rules for neuro-controller via simultaneous perturbation.,1997,8,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn8.html#MaedaF97,https://doi.org/10.1109/72.623213 +Sukhan Lee,Inverse mapping of continuous functions using local and global information.,1994,5,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn5.html#LeeK94,https://doi.org/10.1109/72.286912 +Xin Yao 0001,A new evolutionary system for evolving artificial neural networks.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#YaoL97,https://doi.org/10.1109/72.572107 +Ida G. Sprinkhuizen-Kuyper,A local minimum for the 2-3-1 XOR network.,1999,10,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn10.html#Sprinkhuizen-KuyperB99,https://doi.org/10.1109/72.774274 +Ming Sun 0003,Noise-Tuning-Based Hysteretic Noisy Chaotic Neural Network for Broadcast Scheduling Problem in Wireless Multihop Networks.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn23.html#SunXDG12,https://doi.org/10.1109/TNNLS.2012.2218126 +Samuel Kaski,Bankruptcy analysis with self-organizing maps in learning metrics.,2001,12,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn12.html#KaskiSP01,https://doi.org/10.1109/72.935102 +Reddi Kamesh,Novel Formulation of Adaptive MPC as EKF Using ANN Model: Multiproduct Semibatch Polymerization Reactor Case Study.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn28.html#KameshR17,https://doi.org/10.1109/TNNLS.2016.2614878 +Xiaozhao Fang,Robust Latent Subspace Learning for Image Classification.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#FangTLHXW18,https://doi.org/10.1109/TNNLS.2017.2693221 +Yicong Zhou,Generalization Performance of Regularized Ranking With Multiscale Kernels.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn27.html#ZhouCLP16,https://doi.org/10.1109/TNNLS.2015.2434887 +Jie Zhong,Synchronization in an Array of Output-Coupled Boolean Networks With Time Delay.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn25.html#ZhongLLC14,https://doi.org/10.1109/TNNLS.2014.2305722 +Mingxing Duan,A Parallel Multiclassification Algorithm for Big Data Using an Extreme Learning Machine.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#DuanLLL18,https://doi.org/10.1109/TNNLS.2017.2654357 +Arash Gharehbaghi,A Deep Machine Learning Method for Classifying Cyclic Time Series of Biological Signals Using Time-Growing Neural Network.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#GharehbaghiL18,https://doi.org/10.1109/TNNLS.2017.2754294 +Zhenkun Huang,Synchronizing Neural Networks With Proportional Delays Based on a Class of q-Type Allowable Time Scales.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#HuangBCW18,https://doi.org/10.1109/TNNLS.2017.2729588 +Razvan Andonie,Fuzzy ARTMAP with input relevances.,2006,17,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn17.html#AndonieS06,https://doi.org/10.1109/TNN.2006.875988 +Tony Van Gestel,Financial time series prediction using least squares support vector machines within the evidence framework.,2001,12,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn12.html#GestelSBLLVMV01,https://doi.org/10.1109/72.935093 +Hideyuki Takagi,Neural networks designed on approximate reasoning architecture and their applications.,1992,3,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn3.html#TakagiSKK92,https://doi.org/10.1109/72.159063 +João Bártolo Gomes,Mining Recurring Concepts in a Dynamic Feature Space.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn25.html#GomesGSR14,https://doi.org/10.1109/TNNLS.2013.2271915 +Sang-Hoon Oh,Effect of nonlinear transformations on correlation between weighted sums in multilayer perceptrons.,1994,5,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn5.html#OhL94,https://doi.org/10.1109/72.286927 +Fei Gao 0006,Learning to Rank for Blind Image Quality Assessment.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn26.html#GaoTGL15,https://doi.org/10.1109/TNNLS.2014.2377181 +S. Zhang,Second-order neural nets for constrained optimization.,1992,3,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn3.html#ZhangZZ92,https://doi.org/10.1109/72.165605 +Haifeng Li,Efficient and robust feature extraction by maximum margin criterion.,2006,17,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn17.html#LiJZ06,https://doi.org/10.1109/TNN.2005.860852 +Chao Zhang,Discretized-Vapnik-Chervonenkis Dimension for Analyzing Complexity of Real Function Classes.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn23.html#ZhangBTL12,https://doi.org/10.1109/TNNLS.2012.2204773 +K. Z. Mao,Fast orthogonal forward selection algorithm for feature subset selection.,2002,13,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn13.html#Mao02a,https://doi.org/10.1109/TNN.2002.1031954 +T. Wang,Weighted learning of bidirectional associative memories by global minimization.,1992,3,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn3.html#WangZX92,https://doi.org/10.1109/72.165603 +Xiaoyang Liu,A Switching Approach to Designing Finite-Time Synchronization Controllers of Coupled Neural Networks.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn27.html#LiuSC16,https://doi.org/10.1109/TNNLS.2015.2448549 +Gail A. Carpenter,Fuzzy ARTMAP: A neural network architecture for incremental supervised learning of analog multidimensional maps.,1992,3,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn3.html#CarpenterGMRR92,https://doi.org/10.1109/72.159059 +Sabri Arik,New Criteria for Global Robust Stability of Delayed Neural Networks With Norm-Bounded Uncertainties.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn25.html#Arik14,https://doi.org/10.1109/TNNLS.2013.2287279 +Zhenbing Liu,A Novel Geometric Approach to Binary Classification Based on Scaled Convex Hulls.,2009,20,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn20.html#LiuLPW09,https://doi.org/10.1109/TNN.2009.2022399 +Yunong Zhang,A dual neural network for redundancy resolution of kinematically redundant manipulators subject to joint limits and joint velocity limits.,2003,14,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn14.html#ZhangWX03,https://doi.org/10.1109/TNN.2003.810607 +Tong Wang 0003,A Combined Adaptive Neural Network and Nonlinear Model Predictive Control for Multirate Networked Industrial Process Control.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn27.html#WangGQ16,https://doi.org/10.1109/TNNLS.2015.2411671 +Teresa Bernarda Ludermir,An Optimization Methodology for Neural Network Weights and Architectures.,2006,17,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn17.html#LudermirYZ06,https://doi.org/10.1109/TNN.2006.881047 +Hong-Sen Yan,An Approach to Estimating Product Design Time Based on Fuzzy nu-Support Vector Machine.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#YanX07,https://doi.org/10.1109/TNN.2007.894080 +Junli Liang,Decentralized Dimensionality Reduction for Distributed Tensor Data Across Sensor Networks.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn27.html#LiangYCZ16,https://doi.org/10.1109/TNNLS.2015.2469100 +Snorre Aunet,Real-Time Reconfigurable Subthreshold CMOS Perceptron.,2008,19,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn19.html#AunetONB08,https://doi.org/10.1109/TNN.2007.912572 +Rajan Rakkiyappan,Passivity and Passification of Memristor-Based Recurrent Neural Networks With Additive Time-Varying Delays.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn26.html#RakkiyappanCC15,https://doi.org/10.1109/TNNLS.2014.2365059 +Sarangapani Jagannathan,Control of a class of nonlinear discrete-time systems using multilayer neural networks.,2001,12,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn12.html#Jagannathan01,https://doi.org/10.1109/72.950140 +Erol Gelenbe,Learning in the multiple class random neural network.,2002,13,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn13.html#GelenbeH02,https://doi.org/10.1109/TNN.2002.804228 +Mu-Chun Su,Fast self-organizing feature map algorithm.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn11.html#SuC00,https://doi.org/10.1109/72.846743 +Chua-Chin Wang,The decision-making properties of discrete multiple exponential bidirectional associative memories.,1995,6,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn6.html#WangL95,https://doi.org/10.1109/72.392261 +Masaki Kobayashi,Stability of Rotor Hopfield Neural Networks With Synchronous Mode.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn29.html#Kobayashi18,https://doi.org/10.1109/TNNLS.2016.2635140 +Sergio Decherchi,Using unsupervised analysis to constrain generalization bounds for support vector classifiers.,2010,21,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn21.html#DecherchiRZGA10,https://doi.org/10.1109/TNN.2009.2038695 +Hong Tao,Effective Discriminative Feature Selection With Nontrivial Solution.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn27.html#TaoHNJY16,https://doi.org/10.1109/TNNLS.2015.2424721 +Alexander F. Russell,Optimization Methods for Spiking Neurons and Networks.,2010,21,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn21.html#RussellODMNTE10,https://doi.org/10.1109/TNN.2010.2083685 +Daizhan Cheng,Model Construction of Boolean Network via Observed Data.,2011,22,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn22.html#ChengQL11,https://doi.org/10.1109/TNN.2011.2106512 +Alexander Bauer 0001,Accurate Maximum-Margin Training for Parsing With Context-Free Grammars.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn28.html#BauerBM17,https://doi.org/10.1109/TNNLS.2015.2497149 +Kazuhiro Shimonomura,A multichip aVLSI system emulating orientation selectivity of primary visual cortical cells.,2005,16,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn16.html#ShimonomuraY05,https://doi.org/10.1109/TNN.2005.849845 +Wai-Chi Fang,A VLSI neural processor for image data compression using self-organization networks.,1992,3,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn3.html#FangSCC92,https://doi.org/10.1109/72.129423 +Niall H. Anderson,Beyond the binary Boltzmann machine.,1995,6,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn6.html#AndersonT95,https://doi.org/10.1109/72.410364 +Basabdatta Sen Bhattacharya,Biologically inspired means for rank-order encoding images: a quantitative analysis.,2010,21,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn21.html#BhattacharyaF10,https://doi.org/10.1109/TNN.2010.2048339 +Tetsuya Asai,A subthreshold MOS neuron circuit based on the Volterra system.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#AsaiKA03,https://doi.org/10.1109/TNN.2003.816357 +Sven Behnke,Competitive neural trees for pattern classification.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#BehnkeK98,https://doi.org/10.1109/72.728387 +Sung Hwan Won,Identification of finite state automata with a class of recurrent neural networks.,2010,21,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn21.html#WonSLP10,https://doi.org/10.1109/TNN.2010.2059040 +Sohan Seth,Assessing Granger Non-Causality Using Nonparametric Measure of Conditional Independence.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn23.html#SethP12,https://doi.org/10.1109/TNNLS.2011.2178327 +Pierre Blanchart,A Nonlinear Semantic-Preserving Projection Approach to Visualize Multivariate Periodical Time Series.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn25.html#BlanchartD14,https://doi.org/10.1109/TNNLS.2013.2285928 +Roman Genov,"Kerneltron: support vector ""machine"" in silicon.",2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#GenovC03,https://doi.org/10.1109/TNN.2003.816345 +Christoph Rasche,Forward- and backpropagation in a silicon dendrite.,2001,12,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn12.html#RascheD01,https://doi.org/10.1109/72.914532 +Jin-Liang Wang,Passivity of Directed and Undirected Complex Dynamical Networks With Adaptive Coupling Weights.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn28.html#WangWHRW17,https://doi.org/10.1109/TNNLS.2016.2558502 +Haibo He,Editorial: A Successful Year and Looking Forward to 2017 and Beyond.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn28.html#HeHFHHKKLLMMPQR17,https://doi.org/10.1109/TNNLS.2016.2636698 +Masayuki Karasuyama,Multiple incremental decremental learning of support vector machines.,2010,21,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn21.html#KarasuyamaT10,https://doi.org/10.1109/TNN.2010.2048039 +Wei Chu,Bayesian support vector regression using a unified loss function.,2004,15,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn15.html#ChuKO04,https://doi.org/10.1109/TNN.2003.820830 +Chunhua Yang,An optimal power-dispatching system using neural networks for the electrochemical process of zinc depending on varying prices of electricity.,2002,13,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn13.html#YangDGL02,https://doi.org/10.1109/72.977311 +An-Min Zou,Neural Network-Based Distributed Attitude Coordination Control for Spacecraft Formation Flying With Input Saturation.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn23.html#ZouK12,https://doi.org/10.1109/TNNLS.2012.2196710 +David B. Fogel,An information criterion for optimal neural network selection.,1991,2,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn2.html#Fogel91,https://doi.org/10.1109/72.134286 +Stergios Papadimitriou,Ischemia detection with a self-organizing map supplemented by supervised learning.,2001,12,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn12.html#PapadimitriouMVB01,https://doi.org/10.1109/72.925554 +Zheng Rong Yang,A novel radial basis function neural network for discriminant analysis.,2006,17,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn17.html#Yang06,https://doi.org/10.1109/TNN.2006.873282 +Mohamad H. Hassoun,Neural Fuzzy Systems: A Neuro-Fuzzy Synergism to Intelligent Systems [Book review].,1996,7,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn7.html#Hassoun96d,https://doi.org/10.1109/TNN.1996.536328 +Jun Li 0010,Exponential Family Factors for Bayesian Factor Analysis.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn24.html#0010T13a,https://doi.org/10.1109/TNNLS.2013.2245341 +Tsungnan Lin,Learning long-term dependencies in NARX recurrent neural networks.,1996,7,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn7.html#LinHTG96,https://doi.org/10.1109/72.548162 +Christopher C. Holmes,Bayesian wavelet networks for nonparametric regression.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn11.html#HolmesM00,https://doi.org/10.1109/72.822507 +Jianming Lu,A Method of Face Recognition Based on Fuzzy c-Means Clustering and Associated Sub-NNs.,2007,18,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn18.html#LuYY07,https://doi.org/10.1109/TNN.2006.884678 +Isabelle Rivals,No free lunch with the sandwich [sandwich estimator].,2003,14,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn14.html#RivalsP03a,https://doi.org/10.1109/TNN.2003.820671 +Yee Leung,Neural networks for convex hull computation.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#LeungZX97,https://doi.org/10.1109/72.572099 +Jonathan Ortigosa-Hernández,Semisupervised Multiclass Classification Problems With Scarcity of Labeled Data: A Theoretical Study.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn27.html#Ortigosa-Hernandez16,https://doi.org/10.1109/TNNLS.2015.2498525 +Clifford Lau,In memoriam: walter j. karplus.,2002,13,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn13.html#Lau02,https://doi.org/10.1109/TNN.2002.977255 +Dan Shen,Encoding strategy for maximum noise tolerance bidirectional associative memory.,2005,16,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn16.html#ShenC05,https://doi.org/10.1109/TNN.2004.841793 +Guang-Bin Huang,Universal approximation using incremental constructive feedforward networks with random hidden nodes.,2006,17,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn17.html#HuangCS06,https://doi.org/10.1109/TNN.2006.875977 +Tianping Zhang,Adaptive Neural Network Tracking Control of MIMO Nonlinear Systems With Unknown Dead Zones and Control Directions.,2009,20,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn20.html#ZhangG09,https://doi.org/10.1109/TNN.2008.2010349 +Sintiani Dewi Teddy,PSECMAC intelligent insulin schedule for diabetic blood glucose management under nonmeal announcement.,2010,21,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn21.html#TeddyQLC10,https://doi.org/10.1109/TNN.2009.2036726 +Eder Santana,Exploiting Spatio-Temporal Structure With Recurrent Winner-Take-All Networks.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#SantanaEZP18,https://doi.org/10.1109/TNNLS.2017.2735903 +Cesare Alippi,Just-in-Time Adaptive Classifiers - Part II: Designing the Classifier.,2008,19,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn19.html#AlippiR08a,https://doi.org/10.1109/TNN.2008.2003998 +Alexander Bauer 0001,Efficient Algorithms for Exact Inference in Sequence Labeling SVMs.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn25.html#BauerGBMK14,https://doi.org/10.1109/TNNLS.2013.2281761 +Sei-Wang Chen,SO dynamic deformation for building of 3-D models.,1996,7,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn7.html#ChenSC96,https://doi.org/10.1109/72.485673 +Joongho Chang,Cork quality classification system using a unified image processing and fuzzy-neural network methodology.,1997,8,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn8.html#ChangHVGDS97,https://doi.org/10.1109/72.595897 +Thomas H. Hildebrandt,Optimal training of thresholded linear correlation classifiers.,1991,2,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn2.html#Hildebrandt91,https://doi.org/10.1109/72.97935 +José L. Marroquín,Measure fields for function approximation.,1995,6,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn6.html#Marroquin95,https://doi.org/10.1109/72.410353 +Shijie Xiao,Automatic Face Naming by Learning Discriminative Affinity Matrices From Weakly Labeled Images.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn26.html#XiaoXW15,https://doi.org/10.1109/TNNLS.2014.2386307 +Jiann-Ming Wu,Multilayer Potts Perceptrons With Levenberg-Marquardt Learning.,2008,19,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn19.html#Wu08,https://doi.org/10.1109/TNN.2008.2003271 +Danil V. Prokhorov,Intelligent Control Systems Using Computational Intelligence [book review].,2007,18,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn18.html#Prokhorov07,https://doi.org/10.1109/TNN.2007.893089 +Yilu Zhang,Auditory learning: a developmental method.,2005,16,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn16.html#ZhangWH05,https://doi.org/10.1109/TNN.2005.845217 +Kaibing Zhang,Coarse-to-Fine Learning for Single-Image Super-Resolution.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn28.html#ZhangTGLL17,https://doi.org/10.1109/TNNLS.2015.2511069 +Kim W. C. Ku,Adding learning to cellular genetic algorithms for training recurrent neural networks.,1999,10,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn10.html#KuMS99,https://doi.org/10.1109/72.750546 +Yongping Pan,Adaptive Neural PD Control With Semiglobal Asymptotic Stabilization Guarantee.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn25.html#PanYE14,https://doi.org/10.1109/TNNLS.2014.2308571 +Harold Soh,Spatio-Temporal Learning With the Online Finite and Infinite Echo-State Gaussian Processes.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn26.html#SohD15,https://doi.org/10.1109/TNNLS.2014.2316291 +Yajuan Liu,Nonfragile Exponential Synchronization of Delayed Complex Dynamical Networks With Memory Sampled-Data Control.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn29.html#LiuGPL18,https://doi.org/10.1109/TNNLS.2016.2614709 +Eric Mjolsness,Multiscale optimization in neural nets.,1991,2,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn2.html#MjolsnessGM91,https://doi.org/10.1109/72.80337 +Weisheng Chen,"Comments on ""Discrete-Time Adaptive Backstepping Nonlinear Control via High-Order Neural Networks"".",2009,20,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn20.html#Chen09,https://doi.org/10.1109/TNN.2009.2016757 +Haihong Zhang,Optimum Spatio-Spectral Filtering Network for Brain-Computer Interface.,2011,22,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn22.html#ZhangCAGW11,https://doi.org/10.1109/TNN.2010.2084099 +Oscar Fontenla-Romero,LANN-SVD: A Non-Iterative SVD-Based Learning Algorithm for One-Layer Neural Networks.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#Fontenla-Romero18,https://doi.org/10.1109/TNNLS.2017.2738118 +Zhanshan Wang,Optimal Fault-Tolerant Control for Discrete-Time Nonlinear Strict-Feedback Systems Based on Adaptive Critic Design.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#WangLWZ18,https://doi.org/10.1109/TNNLS.2018.2810138 +Tao Fang,Stability of Complex-Valued Recurrent Neural Networks With Time-Delays.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn25.html#FangS14,https://doi.org/10.1109/TNNLS.2013.2294638 +Yuanqing Li,Blind estimation of channel parameters and source components for EEG signals: a sparse factorization approach.,2006,17,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn17.html#LiCA06,https://doi.org/10.1109/TNN.2005.863424 +Chang Nian Zhang,Logic operations based on single neuron rational model.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn11.html#ZhangZW00,https://doi.org/10.1109/72.846745 +Jorge López Lázaro,Simple Proof of Convergence of the SMO Algorithm for Different SVM Variants.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn23.html#LazaroD12,https://doi.org/10.1109/TNNLS.2012.2195198 +Terence Kwok,A unified framework for chaotic neural-network approaches to combinatorial optimization.,1999,10,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn10.html#KwokS99,https://doi.org/10.1109/72.774279 +Cristiano Cervellera,Learning With Kernel Smoothing Models and Low-Discrepancy Sampling.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn24.html#CervelleraM13,https://doi.org/10.1109/TNNLS.2012.2236353 +Huanqing Wang,Adaptive Neural Tracking Control for a Class of Nonstrict-Feedback Stochastic Nonlinear Systems With Unknown Backlash-Like Hysteresis.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn25.html#WangCLLL14,https://doi.org/10.1109/TNNLS.2013.2283879 +Shih-Chia Huang,Highly Accurate Moving Object Detection in Variable Bit Rate Video-Based Traffic Monitoring Systems.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn24.html#HuangC13,https://doi.org/10.1109/TNNLS.2013.2270314 +Sapthotharan K. Nair,A theoretical study of linear and nonlinear equalization in nonlinear magnetic storage channels.,1997,8,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn8.html#NairM97a,https://doi.org/10.1109/72.623212 +Chia-Hsiang Lin,Detection of Sources in Non-Negative Blind Source Separation by Minimum Description Length Criterion.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#LinCCMW18,https://doi.org/10.1109/TNNLS.2017.2749279 +Fuchun Sun,Neural network-based adaptive controller design of robotic manipulators with an observer.,2001,12,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn12.html#SunSW01,https://doi.org/10.1109/72.896796 +Joon S. Lim,Finding Features for Real-Time Premature Ventricular Contraction Detection Using a Fuzzy Neural Network System.,2009,20,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn20.html#Lim09,https://doi.org/10.1109/TNN.2008.2012031 +Ivor Wai-Hung Tsang,Efficient hyperkernel learning using second-order cone programming.,2006,17,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn17.html#TsangK06,https://doi.org/10.1109/TNN.2005.860848 +Hanseok Ko,Dynamical behavior of autoassociative memory performing novelty filtering for signal enhancement.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn11.html#KoJ00,https://doi.org/10.1109/72.870046 +S. Sathiya Keerthi,A Fast Tracking Algorithm for Generalized LARS/LASSO.,2007,18,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn18.html#KeerthiS07,https://doi.org/10.1109/TNN.2007.900229 +Sel B. Colak,Vector mapping with a nonlinear electronic layer for distributed neural networks.,1995,6,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn6.html#Colak95,https://doi.org/10.1109/72.410367 +Atsushi Miyamoto,Variational Inference With ARD Prior for NIRS Diffuse Optical Tomography.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn26.html#MiyamotoWIS15,https://doi.org/10.1109/TNNLS.2014.2328576 +Xun Liang,Hyperellipsoidal Statistical Classifications in a Reproducing Kernel Hilbert Space.,2011,22,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn22.html#LiangN11,https://doi.org/10.1109/TNN.2011.2130539 +Jian-Bo Yang,Feature Selection Using Probabilistic Prediction of Support Vector Regression.,2011,22,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn22.html#YangO11a,https://doi.org/10.1109/TNN.2011.2128342 +Alex Leng Phuan Tay,The Hierarchical Fast Learning Artificial Neural Network (HieFLANN) - An Autonomous Platform for Hierarchical Neural Network Construction.,2007,18,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn18.html#TayZWX07,https://doi.org/10.1109/TNN.2007.900231 +L.-X. Wang,A neural detector for seismic reflectivity sequences.,1992,3,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn3.html#Wang92,https://doi.org/10.1109/72.125877 +Vassilios Petridis,On the properties of the feedforward method: A simple training law for on-chip learning.,1995,6,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn6.html#PetridisP95,https://doi.org/10.1109/72.471355 +Yun Li,FREL: A Stable Feature Selection Algorithm.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn26.html#LiSZHC15,https://doi.org/10.1109/TNNLS.2014.2341627 +L. P. Wang,"Comments on ""The Extreme Learning Machine"".",2008,19,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn19.html#WangW08,https://doi.org/10.1109/TNN.2008.2002273 +Rui Li,Complete Synchronization of Boolean Networks.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn23.html#LiC12,https://doi.org/10.1109/TNNLS.2012.2190094 +Hongmei He,Linguistic Decision Making for Robot Route Learning.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn25.html#HeMCG14,https://doi.org/10.1109/TNNLS.2013.2258037 +Dominique Béroule,An instance of coincidence detection architecture relying on temporal coding.,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#Beroule04,https://doi.org/10.1109/TNN.2004.833137 +Dimitrios A. Pados,New nonleast-squares neural network learning algorithms for hypothesis testing.,1995,6,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn6.html#PadosP95,https://doi.org/10.1109/72.377966 +Mu-Song Chen,Conventional modeling of the multilayer perceptron using polynomial basis functions.,1993,4,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn4.html#ChenM93,https://doi.org/10.1109/72.182712 +Liqing Zhang,Self-adaptive blind source separation based on activation functions adaptation.,2004,15,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn15.html#ZhangCA04,https://doi.org/10.1109/TNN.2004.824420 +Paisarn Muneesawang,Automatic machine interactions for content-based image retrieval using a self-organizing tree map architecture.,2002,13,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn13.html#MuneesawangG02,https://doi.org/10.1109/TNN.2002.1021883 +Yoshiyasu Takefuji,A parallel algorithm for tiling problems.,1990,1,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn1.html#TakefujiL90,https://doi.org/10.1109/72.80215 +Qingshan Liu 0001,Face recognition using kernel scatter-difference-based discriminant analysis.,2006,17,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn17.html#LiuTLM06,https://doi.org/10.1109/TNN.2006.875970 +Young-Chul Kim 0001,Random noise effects in pulse-mode digital multilayer neural networks.,1995,6,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn6.html#0001S95,https://doi.org/10.1109/72.363434 +Konstantina Papagiannaki,Long-term forecasting of Internet backbone traffic.,2005,16,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn16.html#PapagiannakiTZD05,https://doi.org/10.1109/TNN.2005.853437 +John G. Elias,Switched-capacitor neuromorphs with wide-range variable dynamics.,1995,6,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn6.html#EliasN95,https://doi.org/10.1109/72.471382 +Nicolás García-Pedrajas,Constructing Ensembles of Classifiers by Means of Weighted Instance Selection.,2009,20,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn20.html#Garcia-Pedrajas09,https://doi.org/10.1109/TNN.2008.2005496 +Pau-Choo Chung,Characteristics of Hebbian-type associative memories having faulty interconnections.,1992,3,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn3.html#ChungK92,https://doi.org/10.1109/72.165598 +David Burshtein,Long-term attraction in higher order neural networks.,1998,9,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn9.html#Burshtein98,https://doi.org/10.1109/72.655028 +Markus Hagenbuchner,A self-organizing map for adaptive processing of structured data.,2003,14,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn14.html#HagenbuchnerST03,https://doi.org/10.1109/TNN.2003.810735 +Debrup Chakraborty,A neuro-fuzzy scheme for simultaneous feature selection and fuzzy rule-based classification.,2004,15,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn15.html#ChakrabortyP04,https://doi.org/10.1109/TNN.2003.820557 +Subhrajit Roy,An Online Unsupervised Structural Plasticity Algorithm for Spiking Neural Networks.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn28.html#RoyB17,https://doi.org/10.1109/TNNLS.2016.2582517 +John Yannis Goulermas,Density-Driven Generalized Regression Neural Networks (DD-GRNN) for Function Approximation.,2007,18,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn18.html#GoulermasLZC07,https://doi.org/10.1109/TNN.2007.902730 +Aapo Hyvärinen,Fast and robust fixed-point algorithms for independent component analysis.,1999,10,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn10.html#Hyvarinen99,https://doi.org/10.1109/72.761722 +Shuai Li,Distributed Recurrent Neural Networks for Cooperative Control of Manipulators: A Game-Theoretic Perspective.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn28.html#LiHLR17,https://doi.org/10.1109/TNNLS.2016.2516565 +Jun Li 0010,Deep Neural Network for Structural Prediction and Lane Detection in Traffic Scene.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn28.html#LiMPT17,https://doi.org/10.1109/TNNLS.2016.2522428 +Qiangfu Zhao,Evolutionary learning of nearest-neighbor MLP.,1996,7,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn7.html#ZhaoH96,https://doi.org/10.1109/72.501733 +Peter J. Edwards,The application of neural networks to the papermaking industry.,1999,10,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn10.html#EdwardsMPWBS99,https://doi.org/10.1109/72.809090 +Peng Shi 0001,Mixed H-Infinity and Passive Filtering for Discrete Fuzzy Neural Networks With Stochastic Jumps and Time Delays.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn27.html#0001ZCA16,https://doi.org/10.1109/TNNLS.2015.2425962 +Alok Kanti Deb,SVM-Based Tree-Type Neural Networks as a Critic in Adaptive Critic Designs for Control.,2007,18,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn18.html#DebJGC07,https://doi.org/10.1109/TNN.2007.899255 +Panayiota Poirazi,Classification capacity of a modular neural network implementing neurally inspired architecture and training rules.,2004,15,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn15.html#PoiraziNPS04,https://doi.org/10.1109/TNN.2004.826225 +Oluseyi Olurotimi,Noisy recurrent neural networks: the discrete-time case.,1998,9,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn9.html#OlurotimiD98,https://doi.org/10.1109/72.712165 +Huaguang Zhang,Stability Analysis of Neural Networks With Two Delay Components Based on Dynamic Delay Interval Method.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn28.html#ZhangSW17,https://doi.org/10.1109/TNNLS.2015.2503749 +Charalampos Tsitouras,Neural networks with multidimensional transfer functions.,2002,13,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn13.html#Tsitouras02,https://doi.org/10.1109/72.977309 +Xingyi Zhang,On the Universality of Axon P Systems.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn26.html#ZhangPP15,https://doi.org/10.1109/TNNLS.2015.2396940 +Lin Chen,Laplacian Embedded Regression for Scalable Manifold Regularization.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn23.html#ChenTX12,https://doi.org/10.1109/TNNLS.2012.2190420 +Sambu Seo,Soft nearest prototype classification.,2003,14,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn14.html#SeoBO03,https://doi.org/10.1109/TNN.2003.809407 +Miguel Angel Mayosky,Direct adaptive control of wind energy conversion systems using Gaussian networks.,1999,10,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn10.html#MayoskyC99,https://doi.org/10.1109/72.774245 +Cristiano Leite Castro,Novel Cost-Sensitive Approach to Improve the Multilayer Perceptron Performance on Imbalanced Data.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn24.html#CastroB13,https://doi.org/10.1109/TNNLS.2013.2246188 +Ting Chen,Artificial neural networks for 3-D motion analysis. I. Rigid motion.,1995,6,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn6.html#ChenLC95,https://doi.org/10.1109/72.471369 +Xiangnan Zhong,Optimal Control for Unknown Discrete-Time Nonlinear Markov Jump Systems Using Adaptive Dynamic Programming.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn25.html#ZhongHZW14,https://doi.org/10.1109/TNNLS.2014.2305841 +Srimanta Pal,Neurocomputing Model for Computation of an Approximate Convex Hull of a Set of Points and Spheres.,2007,18,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn18.html#PalH07,https://doi.org/10.1109/TNN.2007.891201 +Yan-Wu Wang,Impulsive Multisynchronization of Coupled Multistable Neural Networks With Time-Varying Delay.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn28.html#WangYXZ17,https://doi.org/10.1109/TNNLS.2016.2544788 +Fei Wang 0001,Unsupervised Large Margin Discriminative Projection.,2011,22,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn22.html#WangZZ11,https://doi.org/10.1109/TNN.2011.2161772 +Isaac Chairez,Adaptive Neural Network Nonparametric Identifier With Normalized Learning Laws.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn28.html#Chairez17,https://doi.org/10.1109/TNNLS.2015.2505090 +Ron Sun,Autonomous learning of sequential tasks: experiments and analyses.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#SunP98,https://doi.org/10.1109/72.728364 +Moises E. Robinson,A modular CMOS design of a Hamming network.,1992,3,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn3.html#RobinsonYS92,https://doi.org/10.1109/72.129417 +Yan-Jun Liu,Adaptive Neural Output Feedback Controller Design With Reduced-Order Observer for a Class of Uncertain Nonlinear SISO Systems.,2011,22,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn22.html#LiuTWLC11,https://doi.org/10.1109/TNN.2011.2159865 +Zhongsheng Hou,Lazy-Learning-Based Data-Driven Model-Free Adaptive Predictive Control for a Class of Discrete-Time Nonlinear Systems.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn28.html#HouLT17,https://doi.org/10.1109/TNNLS.2016.2561702 +Alexander S. Poznyak,Nonlinear adaptive trajectory tracking using dynamic neural networks.,1999,10,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn10.html#PoznyakYSP99,https://doi.org/10.1109/72.809085 +Jeongho Cho,Modeling and inverse controller design for an unmanned aerial vehicle based on the self-organizing map.,2006,17,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn17.html#ChoPEM06,https://doi.org/10.1109/TNN.2005.863422 +Huajin Tang,Dynamics analysis and analog associative memory of networks with LT neurons.,2006,17,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn17.html#TangTT06,https://doi.org/10.1109/TNN.2005.863457 +Yili Xia,An Augmented Echo State Network for Nonlinear Adaptive Filtering of Complex Noncircular Signals.,2011,22,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn22.html#XiaJHPM11,https://doi.org/10.1109/TNN.2010.2085444 +Mark Mackenzie,Gaussian filters and filter synthesis using a Hermite/Laguerre neural network.,2004,15,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn15.html#MackenzieT04,https://doi.org/10.1109/TNN.2003.820558 +Anoop Cherian,Riemannian Dictionary Learning and Sparse Coding for Positive Definite Matrices.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn28.html#CherianS17,https://doi.org/10.1109/TNNLS.2016.2601307 +Tianping Chen,"Some queries on ""Comments on 'Approximation capability in C(R®5*n) by multilayer feedforward networks and related problems'"".",2001,12,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn12.html#Chen01,https://doi.org/10.1109/72.950157 +Haijun Zhang,Textual and Visual Content-Based Anti-Phishing: A Bayesian Approach.,2011,22,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn22.html#ZhangLCL11,https://doi.org/10.1109/TNN.2011.2161999 +Andrzej Lozowski,Signal Processing with temporal sequences in olfactory systems.,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#LozowskiLZ04,https://doi.org/10.1109/TNN.2004.832730 +Robert L. Coultrip,A CMOS binary pattern classifier based on Parzen's method.,1998,9,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn9.html#Coultrip98,https://doi.org/10.1109/72.655024 +Hujun Yin,Self-organizing mixture networks for probability density estimation.,2001,12,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn12.html#YinA01,https://doi.org/10.1109/72.914534 +Yahong Han,Semisupervised Feature Selection via Spline Regression for Video Semantic Recognition.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn26.html#HanYYMSZ15,https://doi.org/10.1109/TNNLS.2014.2314123 +Yong-Feng Gao,Observer-Based Adaptive NN Control for a Class of Uncertain Nonlinear Systems With Nonsymmetric Input Saturation.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn28.html#GaoSWW17,https://doi.org/10.1109/TNNLS.2016.2529843 +Zhaohong Deng,T2FELA: Type-2 Fuzzy Extreme Learning Algorithm for Fast Training of Interval Type-2 TSK Fuzzy Logic System.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn25.html#DengCCW14,https://doi.org/10.1109/TNNLS.2013.2280171 +Zhengguang Wu,Exponential Synchronization of Neural Networks With Discrete and Distributed Delays Under Time-Varying Sampling.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn23.html#WuSSC12,https://doi.org/10.1109/TNNLS.2012.2202687 +Chi-Sing Leung,On the regularization of forgetting recursive least square.,1999,10,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn10.html#LeungYSK99,https://doi.org/10.1109/72.809093 +Xiaoyang Liu,Discontinuous Observers Design for Finite-Time Consensus of Multiagent Systems With External Disturbances.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn28.html#LiuHCX17,https://doi.org/10.1109/TNNLS.2016.2599199 +Sarangapani Jagannathan,gripper.,2004,15,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn15.html#JagannathanG04,https://doi.org/10.1109/TNN.2004.824407 +Xindi Cai,Training Winner-Take-All Simultaneous Recurrent Neural Networks.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#CaiPW07,https://doi.org/10.1109/TNN.2007.891685 +Satoshi Matsuda,Theoretical limitations of a Hopfield network for crossbar switching.,2001,12,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn12.html#Matsuda01,https://doi.org/10.1109/72.925550 +Oluseyi Farotimi,A general weight matrix formulation using optimal control.,1991,2,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn2.html#FarotimiDK91,https://doi.org/10.1109/72.97914 +Quanxin Zhu,Robust exponential stability of Markovian jump impulsive stochastic Cohen-Grossberg neural networks with mixed time delays.,2010,21,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn21.html#ZhuC10,https://doi.org/10.1109/TNN.2010.2054108 +Yimin Yang,Bidirectional Extreme Learning Machine for Regression Problem and Its Learning Effectiveness.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn23.html#YangWY12,https://doi.org/10.1109/TNNLS.2012.2202289 +Stephen P. Luttrell,Derivation of a class of training algorithms.,1990,1,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn1.html#Luttrell90,https://doi.org/10.1109/72.80234 +Osamu Fujita,Trial-and-error correlation learning.,1993,4,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn4.html#Fujita93,https://doi.org/10.1109/72.238327 +Hanyong Shao,New Delay-Dependent Stability Criteria for Neural Networks With Two Additive Time-Varying Delay Components.,2011,22,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn22.html#ShaoH11,https://doi.org/10.1109/TNN.2011.2114366 +Sheng Lin,Neural-network control of mobile manipulators.,2001,12,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn12.html#LinG01,https://doi.org/10.1109/72.950141 +D. E. Johnson,Neural network implementation using a single MOST per synapse.,1995,6,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn6.html#JohnsonME95,https://doi.org/10.1109/72.392265 +Angelo Alessandri,Moving-Horizon State Estimation for Nonlinear Systems Using Neural Networks.,2011,22,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn22.html#AlessandriBBG11,https://doi.org/10.1109/TNN.2011.2116803 +Aleksandr Y. Aravkin,The Connection Between Bayesian Estimation of a Gaussian Random Field and RKHS.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn26.html#AravkinBBP15,https://doi.org/10.1109/TNNLS.2014.2337939 +N. Scott Cardell,Symmetry constraints for feedforward network models of gradient systems.,1995,6,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn6.html#CardellJL95,https://doi.org/10.1109/72.410368 +Youshen Xia,A Generalized Least Absolute Deviation Method for Parameter Estimation of Autoregressive Signals.,2008,19,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn19.html#XiaK08,https://doi.org/10.1109/TNN.2007.902962 +Friedrich T. Sommer,Bayesian retrieval in associative memories with storage errors.,1998,9,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn9.html#SommerD98,https://doi.org/10.1109/72.701183 +Sanya Mitaim,Adaptive stochastic resonance in noisy neurons based on mutual information.,2004,15,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn15.html#MitaimK04,https://doi.org/10.1109/TNN.2004.826218 +Meiqin Liu,H∞ State Estimation for Discrete-Time Delayed Systems of the Neural Network Type With Multiple Missing Measurements.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn26.html#LiuC15b,https://doi.org/10.1109/TNNLS.2015.2399331 +Gang Wang 0004,A New Solution Path Algorithm in Support Vector Regression.,2008,19,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn19.html#WangYL08,https://doi.org/10.1109/TNN.2008.2002077 +Yoshiaki Ichikawa,Neural network application for direct feedback controllers.,1992,3,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn3.html#IchikawaS92,https://doi.org/10.1109/72.125863 +Jason M. Kinser,Implementation of pulse-coupled neural networks in a CNAPS environment.,1999,10,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn10.html#KinserL99,https://doi.org/10.1109/72.761715 +Zhiquan Qi,Adaboost-LLP: A Boosting Method for Learning With Label Proportions.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#QiMTNSZ18,https://doi.org/10.1109/TNNLS.2017.2727065 +S. Das,Elements Of Artificial Neural Networks [Book Reviews].,1998,9,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn9.html#Das98,https://doi.org/10.1109/TNN.1998.655048 +Harilaos G. Sandalidis,Borrowing channel assignment strategies based on heuristic techniques for cellular systems.,1999,10,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn10.html#SandalidisSR99,https://doi.org/10.1109/72.737504 +C. Song,Novel heterostructure device for electronic pulse-mode neural circuits.,1994,5,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn5.html#SongR94,https://doi.org/10.1109/72.298236 +DeLiang Wang,Emergent synchrony in locally coupled neural oscillators.,1995,6,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn6.html#Wang95,https://doi.org/10.1109/72.392256 +Janusz A. Starzyk,Anticipation-Based Temporal Sequences Learning in Hierarchical Structure.,2007,18,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn18.html#StarzykH07,https://doi.org/10.1109/TNN.2006.884681 +Frank L. Lewis,Multilayer neural-net robot controller with guaranteed tracking performance.,1996,7,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn7.html#LewisYL96,https://doi.org/10.1109/72.485674 +Stefanos Zafeiriou,Exploiting discriminant information in nonnegative matrix factorization with application to frontal face verification.,2006,17,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn17.html#ZafeiriouTBP06,https://doi.org/10.1109/TNN.2006.873291 +Yee Leung,A new gradient-based neural network for solving linear and quadratic programming problems.,2001,12,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn12.html#LeungCJGL01,https://doi.org/10.1109/72.950137 +Yi Xiao,Analysis on the Convergence Time of Dual Neural Network-Based WTA.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn23.html#XiaoLLSH12,https://doi.org/10.1109/TNNLS.2012.2186315 +Xia Hong 0001,Nonlinear model structure detection using optimum experimental design and orthogonal least squares.,2001,12,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn12.html#HongH01,https://doi.org/10.1109/72.914539 +Eunwoo Kim,Efficient l1-Norm-Based Low-Rank Matrix Approximations for Large-Scale Problems Using Alternating Rectified Gradient Method.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn26.html#KimLCKO15,https://doi.org/10.1109/TNNLS.2014.2312535 +Julie A. Wall,Spiking Neural Network Model of Sound Localization Using the Interaural Intensity Difference.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn23.html#WallMMM12,https://doi.org/10.1109/TNNLS.2011.2178317 +Kumar Chellapilla,Evolving neural networks to play checkers without relying on expert knowledge.,1999,10,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn10.html#ChellapillaF99,https://doi.org/10.1109/72.809083 +Shuzhi Sam Ge,Robust adaptive neural control for a class of perturbed strict feedback nonlinear systems.,2002,13,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn13.html#GeW02a,https://doi.org/10.1109/TNN.2002.804306 +K. Gopalsamy,Time delays and stimulus-dependent pattern formation in periodic environments in isolated neurons.,2002,13,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn13.html#GopalsamyS02,https://doi.org/10.1109/TNN.2002.1000124 +Gerald Frank,An accelerator for neural networks with pulse-coded model neurons.,1999,10,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn10.html#FrankHJS99,https://doi.org/10.1109/72.761709 +Rick L. Jenison,A comparison of the von Mises and Gaussian basis functions for approximating spherical acoustic scatter.,1995,6,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn6.html#JenisonF95,https://doi.org/10.1109/72.410375 +Chong Wang 0002,Links between PPCA and subspace methods for complete Gaussian density estimation.,2006,17,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn17.html#WangW06,https://doi.org/10.1109/TNN.2006.871718 +Ponnuthurai Nagaratnam Suganthan,Shape indexing using self-organizing maps.,2002,13,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn13.html#Suganthan02,https://doi.org/10.1109/TNN.2002.1021884 +Xia Hong 0001,A Forward-Constrained Regression Algorithm for Sparse Kernel Density Estimation.,2008,19,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn19.html#HongCH08,https://doi.org/10.1109/TNN.2007.908645 +Erzsébet Merényi,"Explicit Magnification Control of Self-Organizing Maps for ""Forbidden"" Data.",2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#MerenyiJV07,https://doi.org/10.1109/TNN.2007.895833 +Scott C. Douglas,Self-stabilized gradient algorithms for blind source separation with orthogonality constraints.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn11.html#Douglas00,https://doi.org/10.1109/72.883482 +Guorui Feng,Error Minimized Extreme Learning Machine With Growth of Hidden Nodes and Incremental Learning.,2009,20,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn20.html#FengHLG09,https://doi.org/10.1109/TNN.2009.2024147 +Long Jin,Integration-Enhanced Zhang Neural Network for Real-Time-Varying Matrix Inversion in the Presence of Various Kinds of Noises.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn27.html#JinZL16,https://doi.org/10.1109/TNNLS.2015.2497715 +Qingshan Liu 0002,L1-Minimization Algorithms for Sparse Signal Reconstruction Based on a Projection Neural Network.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn27.html#LiuW16,https://doi.org/10.1109/TNNLS.2015.2481006 +Tolga Ergen,Efficient Online Learning Algorithms Based on LSTM Neural Networks.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#ErgenK18,https://doi.org/10.1109/TNNLS.2017.2741598 +Seiji Kameda,An analog VLSI chip emulating sustained and transient response channels of the vertebrate retina.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#KamedaY03,https://doi.org/10.1109/TNN.2003.816343 +Martin T. Hagan,Training feedforward networks with the Marquardt algorithm.,1994,5,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn5.html#HaganM94,https://doi.org/10.1109/72.329697 +Yi-Hung Liu,Face Recognition Using Total Margin-Based Adaptive Fuzzy Support Vector Machines.,2007,18,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn18.html#LiuC07,https://doi.org/10.1109/TNN.2006.883013 +Yanwu Zhang,CGHA for principal component extraction in the complex domain.,1997,8,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn8.html#ZhangM97a,https://doi.org/10.1109/72.623205 +Tingfang Wu,Spiking Neural P Systems With Polarizations.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#WuPZP18,https://doi.org/10.1109/TNNLS.2017.2726119 +Kazuho Watanabe,Variational Bayesian Mixture Model on a Subspace of Exponential Family Distributions.,2009,20,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn20.html#WatanabeAOO09,https://doi.org/10.1109/TNN.2009.2029694 +Francisco Naveros,A Spiking Neural Simulator Integrating Event-Driven and Time-Driven Computation Schemes Using Parallel CPU-GPU Co-Processing: A Case Study.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn26.html#NaverosLGCAR15,https://doi.org/10.1109/TNNLS.2014.2345844 +Máté Lengyel,Theta-modulated feedforward network generates rate and phase coded firing in the entorhino-hippocampal system.,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#LengyelE04,https://doi.org/10.1109/TNN.2004.833304 +Alexander G. Parlos,An algorithmic approach to adaptive state filtering using recurrent neural networks.,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#ParlosMA01,https://doi.org/10.1109/72.963777 +Tomasz Talaska,Analog Programmable Distance Calculation Circuit for Winner Takes All Neural Network Realized in the CMOS Technology.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn27.html#TalaskaKDP16,https://doi.org/10.1109/TNNLS.2015.2434847 +Filippo Maria Bianchi,Investigating Echo-State Networks Dynamics by Means of Recurrence Analysis.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn29.html#BianchiLA18,https://doi.org/10.1109/TNNLS.2016.2630802 +Hiroomi Hikawa,Improved Learning Performance of Hardware Self-Organizing Map Using a Novel Neighborhood Function.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn26.html#HikawaM15,https://doi.org/10.1109/TNNLS.2015.2398932 +Kazunori Iwata,A new criterion using information gain for action selection strategy in reinforcement learning.,2004,15,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn15.html#IwataIS04,https://doi.org/10.1109/TNN.2004.828760 +Hongmei He,A Neural Network Model to Minimize the Connected Dominating Set for Self-Configuration of Wireless Sensor Networks.,2009,20,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn20.html#HeZM09,https://doi.org/10.1109/TNN.2009.2015088 +Qiaolin Ye,L1-Norm Distance Minimization-Based Fast Robust Twin Support Vector k-Plane Clustering.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#YeZLYGYY18,https://doi.org/10.1109/TNNLS.2017.2749428 +Long Zhang 0006,A New Discrete-Continuous Algorithm for Radial Basis Function Networks Construction.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn24.html#ZhangLHI13,https://doi.org/10.1109/TNNLS.2013.2264292 +Tsong-Chih Hsu,k-winners-take-all neural net with and#920*(1) time complexity.,1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#HsuW97,https://doi.org/10.1109/72.641477 +Sihan Xiong,Bayesian Nonparametric Regression Modeling of Panel Data for Sequential Classification.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#XiongFR18,https://doi.org/10.1109/TNNLS.2017.2752005 +Jin-Ling Lin,A Simple Scheme for Formation Control Based on Weighted Behavior Learning.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn25.html#LinHW14,https://doi.org/10.1109/TNNLS.2013.2285123 +Claudio Turchetti,On the approximation of stochastic processes by approximate identity neural networks.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#TurchettiCCO98,https://doi.org/10.1109/72.728353 +Daniel Le Ly,High-Performance Reconfigurable Hardware Architecture for Restricted Boltzmann Machines.,2010,21,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn21.html#LyC10,https://doi.org/10.1109/TNN.2010.2073481 +Giansalvo Cirrincione,The MCA EXIN neuron for the minor component analysis.,2002,13,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn13.html#CirrincioneCHH02,https://doi.org/10.1109/72.977295 +Nico Görnitz,Support Vector Data Descriptions and k-Means Clustering: One Class?,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#GornitzLMKN18,https://doi.org/10.1109/TNNLS.2017.2737941 +Wenbing Zhang,Sampled-Data Consensus of Linear Multi-agent Systems With Packet Losses.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn28.html#ZhangTHK17,https://doi.org/10.1109/TNNLS.2016.2598243 +Peter W. Protzel,Performance and fault-tolerance of neural networks for optimization.,1993,4,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn4.html#ProtzelPA93,https://doi.org/10.1109/72.238315 +David He,Data Mining Based Full Ceramic Bearing Fault Diagnostic System Using AE Sensors.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#HeLZZ11,https://doi.org/10.1109/TNN.2011.2169087 +Haibin Sun,Neural Network-Based DOBC for a Class of Nonlinear Systems With Unmatched Disturbances.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn28.html#SunG17,https://doi.org/10.1109/TNNLS.2015.2511450 +Ferdinand Peper,A symmetric linear neural network that learns principal components and their variances.,1996,7,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn7.html#PeperN96,https://doi.org/10.1109/72.508948 +Ryad Benosman,Event-Based Visual Flow.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn25.html#BenosmanCLIB14,https://doi.org/10.1109/TNNLS.2013.2273537 +Ganesh K. Venayagamoorthy,Comparison of heuristic dynamic programming and dual heuristic programming adaptive critics for neurocontrol of a turbogenerator.,2002,13,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn13.html#VenayagamoorthyHW02,https://doi.org/10.1109/TNN.2002.1000146 +Yi Wang 0019,Avoiding Congestion in Cluster Consensus of the Second-Order Nonlinear Multiagent Systems.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#WangMC18,https://doi.org/10.1109/TNNLS.2017.2726354 +Yang Liu 0040,Feedback Controller Design for the Synchronization of Boolean Control Networks.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn27.html#LiuSLL16,https://doi.org/10.1109/TNNLS.2015.2461012 +Shih-Chi Huang,Bounds on the number of hidden neurons in multilayer perceptrons.,1991,2,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn2.html#HuangH91,https://doi.org/10.1109/72.80290 +Blake LeBaron,A bootstrap evaluation of the effect of data splitting on financial time series.,1998,9,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn9.html#LeBaronW98,https://doi.org/10.1109/72.655043 +Ronald G. Benson,UV-activated conductances allow for multiple time scale learning.,1993,4,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn4.html#BensonK93,https://doi.org/10.1109/72.217185 +Ricardo José Machado,Learning in the combinatorial neural model.,1998,9,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn9.html#MachadoBN98,https://doi.org/10.1109/72.712156 +Medhat A. Moussa,Combining expert neural networks using reinforcement feedback for learning primitive grasping behavior.,2004,15,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn15.html#Moussa04,https://doi.org/10.1109/TNN.2004.824412 +Andreas G. Andreou,Current-mode subthreshold MOS circuits for analog VLSI neural systems.,1991,2,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn2.html#AndreouBPPJS91,https://doi.org/10.1109/72.80331 +Lan Wang,Capture interspeaker information with a neural network for speaker identification.,2002,13,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn13.html#WangCC02,https://doi.org/10.1109/72.991429 +Huajin Tang,A columnar competitive model for solving combinatorial optimization problems.,2004,15,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn15.html#TangTY04,https://doi.org/10.1109/TNN.2004.836244 +Michael Lemmon 0001,Competitive learning with generalized winner-take-all activation.,1992,3,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn3.html#LemmonK92,https://doi.org/10.1109/72.125858 +Pantelis Bouboulis,Adaptive Learning in Complex Reproducing Kernel Hilbert Spaces Employing Wirtinger's Subgradients.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn23.html#BouboulisST12,https://doi.org/10.1109/TNNLS.2011.2179810 +Zhengming Li,A Locality-Constrained and Label Embedding Dictionary Learning Algorithm for Image Classification.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn28.html#LiLXYZ17,https://doi.org/10.1109/TNNLS.2015.2508025 +Boshan Chen,Global exponential periodicity of a class of recurrent neural networks with oscillating parameters and time-varying delays.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#ChenW05,https://doi.org/10.1109/TNN.2005.857953 +Danilo P. Mandic,Toward an optimal PRNN-based nonlinear predictor.,1999,10,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn10.html#MandicC99,https://doi.org/10.1109/72.809088 +Chun-Hsien Chen,A neural-network architecture for syntax analysis.,1999,10,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn10.html#ChenH99,https://doi.org/10.1109/72.737497 +Yuanshi Zheng,Consensus of Hybrid Multi-Agent Systems.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#ZhengMW18,https://doi.org/10.1109/TNNLS.2017.2651402 +Chun-Liang Lin,A neural network for linear matrix inequality problems.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn11.html#LinLH00,https://doi.org/10.1109/72.870041 +Ming-Jung Seow,Recurrent neural network as a linear attractor for pattern association.,2006,17,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn17.html#SeowA06,https://doi.org/10.1109/TNN.2005.860869 +Jinling Liang,Distributed State Estimation for Discrete-Time Sensor Networks With Randomly Varying Nonlinearities and Missing Measurements.,2011,22,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn22.html#LiangWL11,https://doi.org/10.1109/TNN.2011.2105501 +Changsheng Li,Ordinal Distance Metric Learning for Image Ranking.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn26.html#LiLLL15,https://doi.org/10.1109/TNNLS.2014.2339100 +Andrea Passerini,New results on error correcting output codes of kernel machines.,2004,15,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn15.html#PasseriniPF04,https://doi.org/10.1109/TNN.2003.820841 +Chih-Min Lin,Adaptive Filter Design Using Type-2 Fuzzy Cerebellar Model Articulation Controller.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn27.html#LinYCHZ16,https://doi.org/10.1109/TNNLS.2015.2491305 +Muzhou Hou,Constructive approximation to multivariate function by decay RBF neural network.,2010,21,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn21.html#HouH10,https://doi.org/10.1109/TNN.2010.2055888 +Li Bu,A pdf-Free Change Detection Test Based on Density Difference Estimation.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn29.html#BuAZ18,https://doi.org/10.1109/TNNLS.2016.2619909 +Rong-Jong Wai,Backstepping Fuzzy-Neural-Network Control Design for Hybrid Maglev Transportation System.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn26.html#WaiYL15,https://doi.org/10.1109/TNNLS.2014.2314718 +Qiangfu Zhao,Stable online evolutionary learning of NN-MLP.,1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#Zhao97,https://doi.org/10.1109/72.641460 +Xi Peng 0001,Bag of Events: An Efficient Probability-Based Feature Extraction Method for AER Image Sensors.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn28.html#PengZYTY17,https://doi.org/10.1109/TNNLS.2016.2536741 +Aurele Balavoine,Convergence and Rate Analysis of Neural Networks for Sparse Approximation.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn23.html#BalavoineRR12,https://doi.org/10.1109/TNNLS.2012.2202400 +Zhi Liu 0001,Adaptive Neural Output Feedback Control of Output-Constrained Nonlinear Systems With Unknown Output Nonlinearity.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn26.html#LiuLZC15,https://doi.org/10.1109/TNNLS.2015.2420661 +Umut Ozertem,Continuously Differentiable Sample-Spacing Entropy Estimation.,2008,19,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn19.html#OzertemUE08,https://doi.org/10.1109/TNN.2008.2006167 +Sandeep Paul,Subsethood-product fuzzy neural inference system (SuPFuNIS).,2002,13,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn13.html#PaulK02,https://doi.org/10.1109/TNN.2002.1000126 +Manish Narwaria,Objective image quality assessment based on support vector regression.,2010,21,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn21.html#NarwariaL10,https://doi.org/10.1109/TNN.2010.2040192 +Simone G. O. Fiori,Formulation and integration of learning differential equations on the stiefel manifold.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#Fiori05,https://doi.org/10.1109/TNN.2005.852860 +Xibin Cao,Neural-Network-Based Adaptive Backstepping Control With Application to Spacecraft Attitude Regulation.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#CaoSLL18,https://doi.org/10.1109/TNNLS.2017.2756993 +George Bebis,Using self-organizing maps to learn geometric hash functions for model-based object recognition.,1998,9,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn9.html#BebisGL98,https://doi.org/10.1109/72.668897 +Tien-Ren Tsao,A Lie group approach to a neural system for three-dimensional interpretation of visual motion.,1991,2,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn2.html#TsaoSLC91,https://doi.org/10.1109/72.80302 +Q. Henry Wu,A neural network regulator for turbogenerators.,1992,3,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn3.html#WuHI92,https://doi.org/10.1109/72.105421 +Yajun Zhang,Nonlinear Decoupling Control With ANFIS-Based Unmodeled Dynamics Compensation for a Class of Complex Industrial Processes.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#ZhangCWWC18,https://doi.org/10.1109/TNNLS.2017.2691905 +Rong-Jong Wai,Adaptive hybrid control for linear piezoelectric ceramic motor drive using diagonal recurrent CMAC network.,2004,15,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn15.html#WaiLP04,https://doi.org/10.1109/TNN.2004.837784 +DaeEun Kim,Neural network mechanism for the orientation behavior of sand scorpions towards prey.,2006,17,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn17.html#Kim06,https://doi.org/10.1109/TNN.2006.875971 +Dongming Xu,Dynamical analysis of neural oscillators in an olfactory cortex model.,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#XuP04,https://doi.org/10.1109/TNN.2004.832815 +Gian Paolo Drago,Statistically controlled activation weight initialization (SCAWI).,1992,3,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn3.html#DragoR92,https://doi.org/10.1109/72.143378 +Xiaobo Shen 0001,Multilabel Prediction via Cross-View Search.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#ShenLTSO18,https://doi.org/10.1109/TNNLS.2017.2763967 +Xinsong Yang,Exponential Synchronization of Memristive Neural Networks With Delays: Interval Matrix Method.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn28.html#YangCL17,https://doi.org/10.1109/TNNLS.2016.2561298 +Thomas K. Paul,A Kernel Adaptive Algorithm for Quaternion-Valued Inputs.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn26.html#PaulO15,https://doi.org/10.1109/TNNLS.2014.2383912 +Ying Wan,Quantized Synchronization of Chaotic Neural Networks With Scheduled Output Feedback Control.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn28.html#WanCW17,https://doi.org/10.1109/TNNLS.2016.2598730 +Huaqing Li 0001,High-Performance Consensus Control in Networked Systems With Limited Bandwidth Communication and Time-Varying Directed Topologies.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn28.html#LiCHD17,https://doi.org/10.1109/TNNLS.2016.2519894 +H. C. Anderson,"Comments on ""Functional equivalence between radial basis function networks and fuzzy inference systems"" [and reply].",1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#AndersonLWJ98,https://doi.org/10.1109/72.728403 +Bailing Zhang,Face recognition by applying wavelet subband representation and kernel associative memory.,2004,15,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn15.html#ZhangZG04,https://doi.org/10.1109/TNN.2003.820673 +Angelo Alessandri,Optimization-based learning with bounded error for feedforward neural networks.,2002,13,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn13.html#AlessandriSM02,https://doi.org/10.1109/72.991413 +Hoang Xuan Huan,Efficient Algorithm for Training Interpolation RBF Networks With Equally Spaced Nodes.,2011,22,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn22.html#HuanHH11,https://doi.org/10.1109/TNN.2011.2120619 +Shang-Hung Lin,Face recognition/detection by probabilistic decision-based neural network.,1997,8,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn8.html#LinKL97,https://doi.org/10.1109/72.554196 +Sheng Chen 0005,RAMOBoost: ranked minority oversampling in boosting.,2010,21,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn21.html#ChenHG10,https://doi.org/10.1109/TNN.2010.2066988 +Xinjun Peng,Geometric Algorithms to Large Margin Classifier Based on Affine Hulls.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn23.html#PengW12,https://doi.org/10.1109/TNNLS.2011.2179120 +Yi Shen,Almost Sure Exponential Stability of Recurrent Neural Networks With Markovian Switching.,2009,20,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn20.html#ShenW09,https://doi.org/10.1109/TNN.2009.2015085 +Jayanta Basak,Hough transform network: learning conoidal structures in a connectionist framework.,2002,13,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn13.html#BasakD02,https://doi.org/10.1109/72.991423 +Xue-Bin Liang,Equivalence between local exponential stability of the unique equilibrium point and global stability for Hopfield-type neural networks with two neurons.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn11.html#Liang00,https://doi.org/10.1109/72.870051 +Vincent Canals,A New Stochastic Computing Methodology for Efficient Neural Network Implementation.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn27.html#CanalsMOAR16,https://doi.org/10.1109/TNNLS.2015.2413754 +Jian Yu,"Comments on ""The multisynapse neural network and its application to fuzzy Clustering"".",2005,16,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn16.html#YuH05,https://doi.org/10.1109/TNN.2005.844852 +Lili Wang 0001,Multistability of Neural Networks With Mexican-Hat-Type Activation Functions.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn23.html#WangC12,https://doi.org/10.1109/TNNLS.2012.2210732 +Hong Jia,Subspace Clustering of Categorical and Numerical Data With an Unknown Number of Clusters.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#JiaC18,https://doi.org/10.1109/TNNLS.2017.2728138 +Ahmet Karakasoglu,Identification and decentralized adaptive control using dynamical neural networks with application to robotic manipulators.,1993,4,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn4.html#KarakasogluSS93,https://doi.org/10.1109/72.286887 +Jan Dimon Bendtsen,Robust quasi-LPV control based on neural state-space models.,2002,13,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn13.html#BendtsenT02,https://doi.org/10.1109/72.991421 +Shuiming Zhong,Sensitivity-Based Adaptive Learning Rules for Binary Feedforward Neural Networks.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn23.html#ZhongZWH12,https://doi.org/10.1109/TNNLS.2011.2177860 +Jinliang Ding,Offline Modeling for Product Quality Prediction of Mineral Processing Using Modeling Error PDF Shaping and Entropy Minimization.,2011,22,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn22.html#DingCW11,https://doi.org/10.1109/TNN.2010.2102362 +Weifeng Liu 0001,An Information Theoretic Approach of Designing Sparse Kernel Adaptive Filters.,2009,20,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn20.html#LiuPP09,https://doi.org/10.1109/TNN.2009.2033676 +Young R. Park,Predicting sun spots using a layered perceptron neural network.,1996,7,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn7.html#ParkMC96,https://doi.org/10.1109/72.485683 +Teruyoshi Washizawa,Application of Hopfield network to saccades.,1993,4,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn4.html#Washizawa93,https://doi.org/10.1109/72.286896 +Roman Ilin,Beyond Feedforward Models Trained by Backpropagation: A Practical Training Tool for a More Efficient Universal Approximator.,2008,19,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn19.html#IlinKW08,https://doi.org/10.1109/TNN.2008.2000396 +Trevor G. Clarkson,Generalization in probabilistic RAM nets.,1993,4,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn4.html#ClarksonGTG93,https://doi.org/10.1109/72.207603 +Shannon R. Campbell,Synchronization rates in classes of relaxation oscillators.,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#CampbellWJ04,https://doi.org/10.1109/TNN.2004.833134 +Salvatore Cavalieri,Neural networks for process scheduling in real-time communication systems.,1996,7,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn7.html#CavalieriM96,https://doi.org/10.1109/72.536320 +Ganesh Kumar Venayagamoorthy,Dynamic Energy Management System for a Smart Microgrid.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn27.html#Venayagamoorthy16,https://doi.org/10.1109/TNNLS.2016.2514358 +Sabato Marco Siniscalchi,Adaptation to New Microphones Using Artificial Neural Networks With Trainable Activation Functions.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn28.html#SiniscalchiS17,https://doi.org/10.1109/TNNLS.2016.2550532 +Kunling Geng,Methodology of Recurrent Laguerre-Volterra Network for Modeling Nonlinear Dynamic Systems.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn28.html#GengM17,https://doi.org/10.1109/TNNLS.2016.2581141 +Shuzhi Sam Ge,Adaptive Predictive Control Using Neural Network for a Class of Pure-Feedback Systems in Discrete Time.,2008,19,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn19.html#GeYL08,https://doi.org/10.1109/TNN.2008.2000446 +Wladyslaw Kaminski,Kernel orthonormalization in radial basis function neural networks.,1997,8,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn8.html#KaminskiS97,https://doi.org/10.1109/72.623218 +Meng Joo Er,High-speed face recognition based on discrete cosine transform and RBF neural networks.,2005,16,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn16.html#ErCW05,https://doi.org/10.1109/TNN.2005.844909 +Shaosheng Zhou,Exponential andepsiv*-regulation for multi-input nonlinear systems using neural networks.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#ZhouLFH05,https://doi.org/10.1109/TNN.2005.853335 +Timothy Hancock,Boosted Network Classifiers for Local Feature Selection.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn23.html#HancockM12,https://doi.org/10.1109/TNNLS.2012.2214057 +Annabella Astorino,The Proximal Trajectory Algorithm in SVM Cross Validation.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn27.html#AstorinoF16,https://doi.org/10.1109/TNNLS.2015.2430935 +Yunpeng Wang,Optimal Formation of Multirobot Systems Based on a Recurrent Neural Network.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn27.html#WangCHYT16,https://doi.org/10.1109/TNNLS.2015.2464314 +Etienne Barnard,A model for nonpolynomial decrease in error rate with increasing sample size.,1994,5,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn5.html#Barnard94,https://doi.org/10.1109/72.329698 +Dong-Chul Park,Centroid Neural Network With a Divergence Measure for GPDF Data Clustering.,2008,19,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn19.html#ParkKC08,https://doi.org/10.1109/TNN.2007.2000051 +Chuan Wang,Training neural networks with additive noise in the desired signal.,1999,10,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn10.html#WangP99,https://doi.org/10.1109/72.809097 +Clemente Rodríguez Lafuente,A modular neural network approach to fault diagnosis.,1996,7,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn7.html#LafuenteRMLMP96,https://doi.org/10.1109/72.485636 +Amir F. Atiya,Bankruptcy prediction for credit risk using neural networks: A survey and new results.,2001,12,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn12.html#Atiya01,https://doi.org/10.1109/72.935101 +Arthur Filippidis,Degree of familiarity ART2 in knowledge-based landmine detection.,1999,10,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn10.html#FilippidisJL99,https://doi.org/10.1109/72.737506 +Hongyi Li 0001,New Passivity Analysis for Neural Networks With Discrete and Distributed Delays.,2010,21,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn21.html#LiGS10,https://doi.org/10.1109/TNN.2010.2059039 +Luis Weruaga,Tikhonov training of the CMAC neural network.,2006,17,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn17.html#WeruagaK06,https://doi.org/10.1109/TNN.2006.872348 +Alistair Shilton,Incremental training of support vector machines.,2005,16,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn16.html#ShiltonPRT05,https://doi.org/10.1109/TNN.2004.836201 +Pingzhou Liu,On stability of recurrent neural networks-an approach from volterra integro-differential equations.,2006,17,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn17.html#LiuH06,https://doi.org/10.1109/TNN.2005.860859 +Zhirong Yang,Unified Development of Multiplicative Algorithms for Linear and Quadratic Nonnegative Matrix Factorization.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#YangO11b,https://doi.org/10.1109/TNN.2011.2170094 +Benedito Dias Baptista F. Filho,A new approach to artificial neural networks.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#FilhoCS98,https://doi.org/10.1109/72.728360 +Liying Ma,Constructive feedforward neural networks using Hermite polynomial activation functions.,2005,16,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn16.html#MaK05,https://doi.org/10.1109/TNN.2005.851786 +Harkirat S. Sahambi,A neural-network appearance-based 3-D object recognition using independent component analysis.,2003,14,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn14.html#SahambiK03,https://doi.org/10.1109/TNN.2002.806949 +S. Bharitkar,Microcode optimization with neural networks.,1999,10,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn10.html#BharitkarTT99,https://doi.org/10.1109/72.761728 +Jacques M. Bahi,Basins of attraction in fully asynchronous discrete-time discrete-state dynamic networks.,2006,17,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn17.html#BahiC06,https://doi.org/10.1109/TNN.2005.863413 +Jin Xu,Semisupervised Feature Selection Based on Relevance and Redundancy Criteria.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn28.html#XuTHM17,https://doi.org/10.1109/TNNLS.2016.2562670 +Michael D. Muhlbaier,Learn++.NC: Combining Ensemble of Classifiers With Dynamically Weighted Consult-and-Vote for Efficient Incremental Learning of New Classes.,2009,20,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn20.html#MuhlbaierTP09,https://doi.org/10.1109/TNN.2008.2008326 +Jim Y. F. Yam,Feedforward networks training speed enhancement by optimal initialization of the synaptic coefficients.,2001,12,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn12.html#YamC01,https://doi.org/10.1109/72.914538 +Zekeriya Uykan,Analysis of input-output clustering for determining centers of RBFN.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn11.html#UykanGCK00,https://doi.org/10.1109/72.857766 +Jon Atli Benediktsson,Parallel consensual neural networks.,1997,8,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn8.html#BenediktssonSES97,https://doi.org/10.1109/72.554191 +Jayanta Basak,A connectionist model for corner detection in binary and gray images.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn11.html#BasakM00,https://doi.org/10.1109/72.870044 +Mark D. Plumbley,Algorithms for nonnegative independent component analysis.,2003,14,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn14.html#Plumbley03,https://doi.org/10.1109/TNN.2003.810616 +Cristiano Cervellera,Low-Discrepancy Points for Deterministic Assignment of Hidden Weights in Extreme Learning Machines.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn27.html#CervelleraM16,https://doi.org/10.1109/TNNLS.2015.2424999 +Karl B. Dyer,COMPOSE: A Semisupervised Learning Framework for Initially Labeled Nonstationary Streaming Data.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn25.html#DyerCP14,https://doi.org/10.1109/TNNLS.2013.2277712 +Jia Wang,Event-Triggered Generalized Dissipativity Filtering for Neural Networks With Time-Varying Delays.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn27.html#WangZH16,https://doi.org/10.1109/TNNLS.2015.2411734 +Sabeur Abid,A fast feedforward training algorithm using a modified form of the standard backpropagation algorithm.,2001,12,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn12.html#AbidFN01,https://doi.org/10.1109/72.914537 +Damiano Varagnolo,Finding Potential Support Vectors in Separable Classification Problems.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn24.html#VaragnoloFDSP13,https://doi.org/10.1109/TNNLS.2013.2264731 +Jin Hu,Global Stability of Complex-Valued Recurrent Neural Networks With Time-Delays.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn23.html#HuW12a,https://doi.org/10.1109/TNNLS.2012.2195028 +D. A. Hoskins,Iterative inversion of neural networks and its application to adaptive control.,1992,3,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn3.html#HoskinsHV92,https://doi.org/10.1109/72.125870 +W. Dong,Gaussian Classifier-Based Evolutionary Strategy for Multimodal Optimization.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn25.html#DongZ14,https://doi.org/10.1109/TNNLS.2014.2298402 +Cong Li,Multitask Classification Hypothesis Space With Improved Generalization Bounds.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn26.html#LiGA15a,https://doi.org/10.1109/TNNLS.2014.2347054 +Chang-Min Kim,FPGA implementation of ICA algorithm for blind signal separation and adaptive noise canceling.,2003,14,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn14.html#KimPKCL03,https://doi.org/10.1109/TNN.2003.818381 +Hong Cao,A Parsimonious Mixture of Gaussian Trees Model for Oversampling in Imbalanced and Multimodal Time-Series Classification.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn25.html#CaoTP14,https://doi.org/10.1109/TNNLS.2014.2308321 +Marc M. Van Hulle,"Topographic map formation by maximizing unconditional entropy: a plausible strategy for ""online"" unsupervised competitive learning and nonparametric density estimation.",1996,7,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn7.html#Hulle96,https://doi.org/10.1109/72.536323 +Naira Hovakimyan,Coordinated decentralized adaptive output feedback control of interconnected systems.,2005,16,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn16.html#HovakimyanLYC05,https://doi.org/10.1109/TNN.2004.836198 +Ngai Hang Chan,A comparison of linear and nonlinear statistical techniques in performance attribution.,2001,12,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn12.html#ChanG01,https://doi.org/10.1109/72.935100 +Shai Abramson,Training a network with ternary weights using the CHIR algorithm.,1993,4,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn4.html#AbramsonSM93,https://doi.org/10.1109/72.286901 +Zuyuan Yang,Adaptive Method for Nonsmooth Nonnegative Matrix Factorization.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn28.html#YangXXL17,https://doi.org/10.1109/TNNLS.2016.2517096 +Dimitris G. Triantafyllidis,A finite-element mesh generator based on growing neural networks.,2002,13,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn13.html#TriantafyllidisL02,https://doi.org/10.1109/TNN.2002.804223 +Hong Qiao,Nonlinear measures: a new approach to exponential stability analysis for Hopfield-type neural networks.,2001,12,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn12.html#QiaoPX01,https://doi.org/10.1109/72.914530 +Bing-Yu Sun,Feature fusion using locally linear embedding for classification.,2010,21,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn21.html#SunZLM10,https://doi.org/10.1109/TNN.2009.2036363 +Ling Guan,Guest editorial special issue on intelligent multimedia processing.,2002,13,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn13.html#GuanAKLP02,https://doi.org/10.1109/TNN.2002.1021880 +Wangli He,Synchronization Error Estimation and Controller Design for Delayed Lur'e Systems With Parameter Mismatches.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn23.html#HeQHC12,https://doi.org/10.1109/TNNLS.2012.2205941 +Huilin Xiong,Optimizing the kernel in the empirical feature space.,2005,16,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn16.html#XiongSA05,https://doi.org/10.1109/TNN.2004.841784 +Steve W. Piche,The selection of weight accuracies for Madalines.,1995,6,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn6.html#Piche95,https://doi.org/10.1109/72.363478 +Lianfang Cai,Monitoring Nonlinear and Non-Gaussian Processes Using Gaussian Mixture Model-Based Weighted Kernel Independent Component Analysis.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn28.html#CaiTC17,https://doi.org/10.1109/TNNLS.2015.2505086 +Yan-Wu Wang,Global Synchronization of Complex Dynamical Networks Through Digital Communication With Limited Data Rate.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn26.html#WangBXW15,https://doi.org/10.1109/TNNLS.2014.2387443 +Chia-Feng Juang,A recurrent self-organizing neural fuzzy inference network.,1999,10,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn10.html#JuangL99,https://doi.org/10.1109/72.774232 +Yuan Yuan 0001,Scene Recognition by Manifold Regularized Deep Learning Architecture.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn26.html#YuanML15,https://doi.org/10.1109/TNNLS.2014.2359471 +Xiaofeng Liao,Robust stability for interval Hopfield neural networks with time delay.,1998,9,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn9.html#LiaoY98,https://doi.org/10.1109/72.712187 +Esther Levin,Hidden control neural architecture modeling of nonlinear time varying systems and its applications.,1993,4,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn4.html#Levin93,https://doi.org/10.1109/72.182700 +Saman Razavi,A New Formulation for Feedforward Neural Networks.,2011,22,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn22.html#RazaviT11,https://doi.org/10.1109/TNN.2011.2163169 +Hao Wang,ADMM-Based Algorithm for Training Fault Tolerant RBF Networks and Selecting Centers.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#WangFHL18,https://doi.org/10.1109/TNNLS.2017.2731319 +Chunlin Chen,Quantum Ensemble Classification: A Sampling-Based Learning Control Approach.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn28.html#ChenDQPR17,https://doi.org/10.1109/TNNLS.2016.2540719 +Marcin Budka,Density-Preserving Sampling: Robust and Efficient Alternative to Cross-Validation for Error Estimation.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn24.html#BudkaG13,https://doi.org/10.1109/TNNLS.2012.2222925 +Nicolaos B. Karayiannis,An axiomatic approach to soft learning vector quantization and clustering.,1999,10,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn10.html#Karayiannis99a,https://doi.org/10.1109/72.788654 +Irene Kotsia,Novel Multiclass Classifiers Based on the Minimization of the Within-Class Variance.,2009,20,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn20.html#KotsiaPZ09,https://doi.org/10.1109/TNN.2008.2004376 +Eric Vatikiotis-Bateson,Speaking mode variability in multimodal speech production.,2002,13,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn13.html#Vatikiotis-BatesonY02,https://doi.org/10.1109/TNN.2002.1021890 +Mufti Mahmud,Applications of Deep Learning and Reinforcement Learning to Biological Data.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#MahmudKHV18,https://doi.org/10.1109/TNNLS.2018.2790388 +Olcay Taner Yildiz,Tree Ensembles on the Induced Discrete Space.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn27.html#Yildiz16,https://doi.org/10.1109/TNNLS.2015.2430277 +Rodney A. Morejon,Advanced search algorithms for information-theoretic learning with kernel-based estimators.,2004,15,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn15.html#MorejonP04,https://doi.org/10.1109/TNN.2004.828769 +Francisco Fernández-Navarro,Global Sensitivity Estimates for Neural Network Classifiers.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn28.html#Fernandez-Navarro17,https://doi.org/10.1109/TNNLS.2016.2598657 +Yujuan Han,Cluster Consensus in Discrete-Time Networks of Multiagents With Inter-Cluster Nonidentical Inputs.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn24.html#HanLC13,https://doi.org/10.1109/TNNLS.2013.2237786 +Martin Bouchard,New recursive-least-squares algorithms for nonlinear active control of sound and vibration using neural networks.,2001,12,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn12.html#Bouchard01,https://doi.org/10.1109/72.896802 +Xiwei Liu,Cluster Synchronization in Directed Networks Via Intermittent Pinning Control.,2011,22,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn22.html#LiuC11,https://doi.org/10.1109/TNN.2011.2139224 +Sheng-Sung Yang,Computing and Analyzing the Sensitivity of MLP Due to the Errors of the i.i.d. Inputs and Weights Based on CLT.,2010,21,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn21.html#YangHS10,https://doi.org/10.1109/TNN.2010.2077681 +Asim Roy,A neural-network learning theory and a polynomial time RBF algorithm.,1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#RoyGM97,https://doi.org/10.1109/72.641453 +Jie Gui,Feature Selection Based on Structured Sparsity: A Comprehensive Study.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn28.html#GuiSJTT17,https://doi.org/10.1109/TNNLS.2016.2551724 +Leszek Rutkowski,A New Method for Data Stream Mining Based on the Misclassification Error.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn26.html#RutkowskiJPD15,https://doi.org/10.1109/TNNLS.2014.2333557 +Teong Chee Chuah,Robust CDMA multiuser detection using a neural-network approach.,2002,13,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn13.html#ChuahSH02,https://doi.org/10.1109/TNN.2002.804310 +Martin Brown,"Comments on ""Learning convergence in the cerebellar model articulation controller"".",1995,6,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn6.html#BrownH95,https://doi.org/10.1109/72.392267 +Simon Haykin,Classification of radar clutter using neural networks.,1991,2,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn2.html#HaykinD91,https://doi.org/10.1109/72.97936 +Ramani S. Pilla,Aitken-based acceleration methods for assessing convergence of multilayer neural networks.,2001,12,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn12.html#PillaKL01,https://doi.org/10.1109/72.950130 +Temujin Gautama,A phase-based approach to the estimation of the optical flow field using spatial filtering.,2002,13,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn13.html#GautamaH02,https://doi.org/10.1109/TNN.2002.1031944 +Yuntong Wen,Neural Networks-Based Adaptive Control for Nonlinear Time-Varying Delays Systems With Unknown Control Direction.,2011,22,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn22.html#WenR11,https://doi.org/10.1109/TNN.2011.2165222 +Davide Bacciu,Competitive Repetition Suppression (CoRe) Clustering: A Biologically Inspired Learning Model With Application to Robust Clustering.,2008,19,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn19.html#BacciuS08,https://doi.org/10.1109/TNN.2008.2004407 +Zhigang Zeng,Multiperiodicity of Discrete-Time Delayed Neural Networks Evoked by Periodic External Inputs.,2006,17,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn17.html#ZengW06a,https://doi.org/10.1109/TNN.2006.877533 +Weizhong Yan,Toward Automatic Time-Series Forecasting Using Neural Networks.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn23.html#Yan12,https://doi.org/10.1109/TNNLS.2012.2198074 +Qichao Zhang,Event-Based Robust Control for Uncertain Nonlinear Systems Using Adaptive Dynamic Programming.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn29.html#ZhangZW18,https://doi.org/10.1109/TNNLS.2016.2614002 +Dimitris A. Karras,An efficient constrained training algorithm for feedforward networks.,1995,6,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn6.html#KarrasP95,https://doi.org/10.1109/72.471365 +K. E. Graves,Uncertainty Estimation Using Fuzzy Measures for Multiclass Classification.,2007,18,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn18.html#GravesN07,https://doi.org/10.1109/TNN.2006.883012 +Silvia Ferrari,Smooth function approximation using neural networks.,2005,16,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn16.html#FerrariS05,https://doi.org/10.1109/TNN.2004.836233 +Fumio Kanaya,Bayes statistical behavior and valid generalization of pattern classifying neural networks.,1991,2,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn2.html#KanayaM91,https://doi.org/10.1109/72.88169 +Deng Jianping,Communication channel equalization using complex-valued minimal radial basis function neural networks.,2002,13,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn13.html#JianpingSS02,https://doi.org/10.1109/TNN.2002.1000133 +Yajun Zhang,An Alternating Identification Algorithm for a Class of Nonlinear Dynamical Systems.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn28.html#ZhangCW17,https://doi.org/10.1109/TNNLS.2016.2547968 +Asim Roy,Iterative generation of higher-order nets in polynomial time using linear programming.,1997,8,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn8.html#RoyM97,https://doi.org/10.1109/72.557694 +Thanh Minh Nguyen,Asymmetric Mixture Model With Simultaneous Feature Selection and Model Detection.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn26.html#NguyenWZ15,https://doi.org/10.1109/TNNLS.2014.2314239 +Baoyong Zhang,Stability Analysis of Distributed Delay Neural Networks Based on Relaxed Lyapunov-Krasovskii Functionals.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn26.html#ZhangLX15,https://doi.org/10.1109/TNNLS.2014.2347290 +Rajesh M. Kandadai,A knowledge-base generating hierarchical fuzzy-neural controller.,1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#KandadaiT97,https://doi.org/10.1109/72.641474 +Shiping Wen,Lag Synchronization of Switched Neural Networks via Neural Activation Function and Applications in Image Encryption.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn26.html#WenZHMY15,https://doi.org/10.1109/TNNLS.2014.2387355 +Sheng Yuong Wong,On Equivalence of FIS and ELM for Interpretable Rule-Based Knowledge Representation.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn26.html#WongYYTC15,https://doi.org/10.1109/TNNLS.2014.2341655 +Dongbing Gu,Spatial Gaussian Process Regression With Mobile Sensor Networks.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn23.html#GuH12,https://doi.org/10.1109/TNNLS.2012.2200694 +Mohamad H. Hassoun,Neural Networks in Bioprocessing and Chemical Engineering [Books in Brief].,1996,7,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn7.html#Hassoun96b,https://doi.org/10.1109/TNN.1996.508951 +Ho-Sung Park,Granular Neural Networks and Their Development Through Context-Based Clustering and Adjustable Dimensionality of Receptive Fields.,2009,20,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn20.html#ParkPO09,https://doi.org/10.1109/TNN.2009.2027319 +Xia Hong 0001,Modeling of Complex-Valued Wiener Systems Using B-Spline Neural Network.,2011,22,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn22.html#HongC11,https://doi.org/10.1109/TNN.2011.2119328 +Leslie S. Smith,Robust sound onset detection using leaky integrate-and-fire neurons with depressing synapses.,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#SmithF04,https://doi.org/10.1109/TNN.2004.832831 +Andrea Di Blas,Energy function-based approaches to graph coloring.,2002,13,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn13.html#BlasJH02,https://doi.org/10.1109/72.977273 +Jean-François Connolly,A Multiscale Scheme for Approximating the Quantron's Discriminating Function.,2009,20,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn20.html#ConnollyL09,https://doi.org/10.1109/TNN.2009.2022979 +Ruibin Feng,Robustness Analysis on Dual Neural Network-based k WTA With Input Noise.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#FengLS18,https://doi.org/10.1109/TNNLS.2016.2645602 +An-Min Zou,Quaternion-based adaptive output feedback attitude control of spacecraft using Chebyshev neural networks.,2010,21,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn21.html#ZouKH10,https://doi.org/10.1109/TNN.2010.2050333 +Olvi L. Mangasarian,Nonlinear Knowledge in Kernel Approximation.,2007,18,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn18.html#MangasarianW07,https://doi.org/10.1109/TNN.2006.886354 +Qinghua Zhang,Wavelet networks.,1992,3,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn3.html#ZhangB92,https://doi.org/10.1109/72.165591 +Yue-Jiao Gong,Learning Multimodal Parameters: A Bare-Bones Niching Differential Evolution Approach.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#GongZZ18,https://doi.org/10.1109/TNNLS.2017.2708712 +Nizar Bouguila,A Dirichlet process mixture of generalized Dirichlet distributions for proportional data modeling.,2010,21,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn21.html#BouguilaZ10,https://doi.org/10.1109/TNN.2009.2034851 +Jonathan S. Kane,Optoelectronic winner-take-all VLSI shunting neural network.,1995,6,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn6.html#KaneK95,https://doi.org/10.1109/72.410372 +Monica Bianchini,Learning in multilayered networks used as autoassociators.,1995,6,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn6.html#BianchiniFG95,https://doi.org/10.1109/72.363492 +Nobuo Funabiki,A binary Hopfield neural-network approach for satellite broadcast scheduling problems.,1997,8,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn8.html#FunabikiN97,https://doi.org/10.1109/72.557699 +Manoel Fernando Tenorio,Self-organizing network for optimum supervised learning.,1990,1,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn1.html#TenorioL90,https://doi.org/10.1109/72.80209 +Zhe Wang 0002,Pattern Representation in Feature Extraction and Classifier Design: Matrix Versus Vector.,2008,19,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn19.html#WangCLZ08,https://doi.org/10.1109/TNN.2007.911744 +Siu-Yeung Cho,An improved algorithm for learning long-term dependency problems in adaptive processing of data structures.,2003,14,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn14.html#ChoCST03,https://doi.org/10.1109/TNN.2003.813831 +Yu Jiang 0003,Optimal Codesign of Nonlinear Control Systems Based on a Modified Policy Iteration Method.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn26.html#JiangWBJ15,https://doi.org/10.1109/TNNLS.2014.2382338 +Alexander G. Parlos,Application of the recurrent multilayer perceptron in modeling complex process dynamics.,1994,5,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn5.html#ParlosCA94,https://doi.org/10.1109/72.279189 +Phillip A. Regalia,Monotonic convergence of fixed-point algorithms for ICA.,2003,14,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn14.html#RegaliaK03,https://doi.org/10.1109/TNN.2003.813843 +Pingnan Shi,OSNet: a neural network implementation of order statistic filters.,1993,4,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn4.html#ShiW93,https://doi.org/10.1109/72.207611 +Xian Zhang,State Estimation for Delayed Genetic Regulatory Networks With Reaction-Diffusion Terms.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn29.html#ZhangHWW18,https://doi.org/10.1109/TNNLS.2016.2618899 +Marco Baglietto,Neural approximation of open-loop feedback rate control in satellite networks.,2005,16,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn16.html#BagliettoDMM05,https://doi.org/10.1109/TNN.2005.853424 +P. Saratchandran,Dynamic programming approach to optimal weight selection in multilayer neural networks.,1991,2,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn2.html#Saratchandran91,https://doi.org/10.1109/72.88167 +Kurt Hornik,Guest Editorial How to Submit Letters.,1996,7,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn7.html#Hornik96,https://doi.org/10.1109/TNN.1996.536303 +Sanggil Kang,Partially connected feedforward neural networks structured by input types.,2005,16,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn16.html#KangI05,https://doi.org/10.1109/TNN.2004.839353 +Fa-Long Luo,A minor subspace analysis algorithm.,1997,8,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn8.html#LuoU97,https://doi.org/10.1109/72.623215 +Jayanta Basak,X-tron: an incremental connectionist model for category perception.,1995,6,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn6.html#BasakP95,https://doi.org/10.1109/72.410354 +Minoru Fukumi,Rotation-invariant neural pattern recognition system estimating a rotation angle.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#FukumiON97,https://doi.org/10.1109/72.572096 +Ferdinand Peper,A noise suppressing distance measure for competitive learning neural networks.,1993,4,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn4.html#PeperSN93,https://doi.org/10.1109/72.182708 +T. Frank,Comparative analysis of fuzzy ART and ART-2A network clustering performance.,1998,9,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn9.html#FrankKK98,https://doi.org/10.1109/72.668896 +Doo-Il Choi,Self-creating and organizing neural networks.,1994,5,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn5.html#ChoiP94,https://doi.org/10.1109/72.298226 +Cong Wang 0007,Deterministic Learning and Rapid Dynamical Pattern Recognition.,2007,18,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn18.html#WangH07,https://doi.org/10.1109/TNN.2006.889496 +Alessandro De Gloria,An asynchronous distributed architecture model for the Boltzmann machine control mechanism.,1996,7,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn7.html#GloriaO96,https://doi.org/10.1109/72.548186 +Rafal Dlugosz,Parallel Programmable Asynchronous Neighborhood Mechanism for Kohonen SOM Implemented in CMOS Technology.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#DlugoszKPS11,https://doi.org/10.1109/TNN.2011.2169809 +Manjeevan Seera,Online Motor Fault Detection and Diagnosis Using a Hybrid FMM-CART Model.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn25.html#SeeraL14,https://doi.org/10.1109/TNNLS.2013.2280280 +Francesco Camastra,Image Processing: Principles and Applications [book review].,2007,18,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn18.html#Camastra07,https://doi.org/10.1109/TNN.2007.893088 +Rami N. Mahdi,Reduced HyperBF Networks: Regularization by Explicit Complexity Reduction and Scaled Rprop-Based Training.,2011,22,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn22.html#MahdiR11,https://doi.org/10.1109/TNN.2011.2109736 +Fernando Pérez-Cruz,Empirical risk minimization for support vector classifiers.,2003,14,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn14.html#Perez-CruzNFA03,https://doi.org/10.1109/TNN.2003.809399 +Etienne Barnard,Invariance and neural nets.,1991,2,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn2.html#BarnardC91,https://doi.org/10.1109/72.134287 +Gary G. Yen,Ranked Centroid Projection: A Data Visualization Approach With Self-Organizing Maps.,2008,19,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn19.html#YenW08,https://doi.org/10.1109/TNN.2007.905858 +Sergio Cruces,The Minimum Risk Principle That Underlies the Criteria of Bounded Component Analysis.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn26.html#CrucesD15,https://doi.org/10.1109/TNNLS.2014.2329318 +Shuning Wang,A neural network of smooth hinge functions.,2010,21,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn21.html#WangHY10,https://doi.org/10.1109/TNN.2010.2053383 +Gnaneswaran Nagamani,An Improved Result on Dissipativity and Passivity Analysis of Markovian Jump Stochastic Neural Networks With Two Delay Components.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn28.html#NagamaniRZ17,https://doi.org/10.1109/TNNLS.2016.2608360 +Aurelio Uncini,Blind signal processing by complex domain adaptive spline neural networks.,2003,14,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn14.html#UnciniP03,https://doi.org/10.1109/TNN.2003.809411 +Andrzej Cichocki,Simplified neural networks for solving linear least squares and total least squares problems in real time.,1994,5,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn5.html#CichockiU94,https://doi.org/10.1109/72.329687 +Puneet Singla,Direction-Dependent Learning Approach for Radial Basis Function Networks.,2007,18,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn18.html#SinglaSJ07,https://doi.org/10.1109/TNN.2006.881805 +Xianchao Xie,Matrix-Variate Factor Analysis and Its Applications.,2008,19,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn19.html#XieYKH08,https://doi.org/10.1109/TNN.2008.2004963 +M. P. Barbarosou,A Nonfeasible Gradient Projection Recurrent Neural Network for Equality-Constrained Optimization Problems.,2008,19,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn19.html#BarbarosouM08,https://doi.org/10.1109/TNN.2008.2000993 +Maryhelen Stevenson,The effects of limited-precision weights on the threshold Adaline.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#Stevenson97,https://doi.org/10.1109/72.572094 +Sumio Watanabe,Probabilistic design of layered neural networks based on their unified framework.,1995,6,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn6.html#WatanabeF95,https://doi.org/10.1109/72.377974 +Tianping Chen,Global andmicro*-Stability of Delayed Neural Networks With Unbounded Time-Varying Delays.,2007,18,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn18.html#ChenW07,https://doi.org/10.1109/TNN.2007.902716 +Jayanta Basak,PsyCOP-a psychologically motivated connectionist system for object perception.,1995,6,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn6.html#BasakP95a,https://doi.org/10.1109/72.471373 +Mike Novey,Complex ICA by Negentropy Maximization.,2008,19,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn19.html#NoveyA08,https://doi.org/10.1109/TNN.2007.911747 +Javan Tan,A BCM theory of meta-plasticity for online self-reorganizing fuzzy-associative learning.,2010,21,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn21.html#TanQ10,https://doi.org/10.1109/TNN.2010.2046747 +Izzet Cem Göknar,Neural CMOS-Integrated Circuit and Its Application to Data Classification.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn23.html#GoknarYMD12,https://doi.org/10.1109/TNNLS.2012.2188541 +Cong Li,A Unifying Framework for Typical Multitask Multiple Kernel Learning Problems.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn25.html#LiGA14,https://doi.org/10.1109/TNNLS.2013.2291772 +Jay J. Williams,An HMM-based speech-to-video synthesizer.,2002,13,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn13.html#WilliamsK02,https://doi.org/10.1109/TNN.2002.1021891 +Jianbo Liu,Topology Preservation and Cooperative Learning in Identification of Multiple Model Systems.,2008,19,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn19.html#LiuD08,https://doi.org/10.1109/TNN.2008.2003285 +Jinxing Li,Shared Autoencoder Gaussian Process Latent Variable Model for Visual Classification.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#LiZZ18,https://doi.org/10.1109/TNNLS.2017.2761401 +Florent Cousseau,Dynamics of Learning in Multilayer Perceptrons Near Singularities.,2008,19,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn19.html#CousseauOA08,https://doi.org/10.1109/TNN.2008.2000391 +Enrique Romero Merino,Neighborhood-Based Stopping Criterion for Contrastive Divergence.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#MerinoCP18,https://doi.org/10.1109/TNNLS.2017.2697455 +Jianwei Liu,Online Learning Algorithm Based on Adaptive Control Theory.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#LiuZKL18,https://doi.org/10.1109/TNNLS.2017.2688413 +Hui Gao 0003,Backstepping Design of Adaptive Neural Fault-Tolerant Control for MIMO Nonlinear Systems.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn28.html#GaoSW17,https://doi.org/10.1109/TNNLS.2016.2599009 +Juan Luis Castro Peña,SEPARATE: a machine learning method based on semi-global partitions.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn11.html#PenaCM00,https://doi.org/10.1109/72.846742 +Xiaohui Liu,Design of a Data-Driven Predictive Controller for Start-up Process of AMT Vehicles.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#LiuCWG11,https://doi.org/10.1109/TNN.2011.2167630 +Huaguang Zhang,Mode-Dependent Stochastic Synchronization for Markovian Coupled Neural Networks With Time-Varying Mode-Delays.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn26.html#ZhangWWL15,https://doi.org/10.1109/TNNLS.2014.2387885 +Hamidreza Modares,H∞ Tracking Control of Completely Unknown Continuous-Time Systems via Off-Policy Reinforcement Learning.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn26.html#ModaresLJ15,https://doi.org/10.1109/TNNLS.2015.2441749 +Rakesh Chalasani,Context Dependent Encoding Using Convolutional Dynamic Networks.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn26.html#ChalasaniP15,https://doi.org/10.1109/TNNLS.2014.2360060 +Sang-Woo Moon,Block-based neural networks.,2001,12,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn12.html#MoonK01,https://doi.org/10.1109/72.914525 +Rangachari Anand,Efficient classification for multiclass problems using modular neural networks.,1995,6,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn6.html#AnandMMR95,https://doi.org/10.1109/72.363444 +Chiapin Wang,A Cross-Layer Adaptation Scheme for Improving IEEE 802.11e QoS by Learning.,2006,17,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn17.html#WangLL06,https://doi.org/10.1109/TNN.2006.883014 +Travis Dierks,Output feedback control of a quadrotor UAV using neural networks.,2010,21,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn21.html#DierksJ10,https://doi.org/10.1109/TNN.2009.2034145 +Bo-Hao Chen,Haze Removal Using Radial Basis Function Networks for Visibility Restoration Applications.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#ChenHLK18,https://doi.org/10.1109/TNNLS.2017.2741975 +Chun-Shin Lin,CMAC-based adaptive critic self-learning control.,1991,2,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn2.html#LinK91,https://doi.org/10.1109/72.134290 +Robert Jenssen,Mean Vector Component Analysis for Visualization and Clustering of Nonnegative Data.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn24.html#Jenssen13,https://doi.org/10.1109/TNNLS.2013.2262774 +Guodong Guo,Content-based audio classification and retrieval by support vector machines.,2003,14,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn14.html#GuoL03,https://doi.org/10.1109/TNN.2002.806626 +Lingji Chen,Identification and control of a nonlinear discrete-time system based on its linearization: a unified framework.,2004,15,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn15.html#ChenN04,https://doi.org/10.1109/TNN.2004.826206 +F. Maire,A partial order for the M-of-N rule-extraction algorithm.,1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#Maire97,https://doi.org/10.1109/72.641475 +Tetsuya Hoya,On the capability of accommodating new classes within probabilistic neural networks.,2003,14,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn14.html#Hoya03,https://doi.org/10.1109/TNN.2003.809417 +Hao Shen,Extended Dissipative State Estimation for Markov Jump Neural Networks With Unreliable Links.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn28.html#ShenZZP17,https://doi.org/10.1109/TNNLS.2015.2511196 +Zhen Ni,Goal Representation Heuristic Dynamic Programming on Maze Navigation.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn24.html#NiHWX13,https://doi.org/10.1109/TNNLS.2013.2271454 +Antonio Jesús Torralba Silgado,Two digital circuits for a fully parallel stochastic neural network.,1995,6,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn6.html#SilgadoRIF95,https://doi.org/10.1109/72.410370 +Valero Laparra,Iterative Gaussianization: From ICA to Random Rotations.,2011,22,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn22.html#LaparraCM11,https://doi.org/10.1109/TNN.2011.2106511 +Shizhi Chen,Discriminative Hierarchical K-Means Tree for Large-Scale Image Classification.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn26.html#ChenYT15,https://doi.org/10.1109/TNNLS.2014.2366476 +Pinaki Roy Chowdhury,Dynamic tunneling technique for efficient training of multilayer perceptrons.,1999,10,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn10.html#RoychowdhurySC99,https://doi.org/10.1109/72.737492 +Renzo Perfetti,Analog neural network for support vector machine learning.,2006,17,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn17.html#PerfettiR06,https://doi.org/10.1109/TNN.2006.875967 +Gian Luca Foresti,Generalized neural trees for pattern classification.,2002,13,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn13.html#ForestiM02,https://doi.org/10.1109/TNN.2002.804290 +Jinmiao Chen,Segmented-Memory Recurrent Neural Networks.,2009,20,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn20.html#ChenC09,https://doi.org/10.1109/TNN.2009.2022980 +M. Prakash,Growing subspace pattern recognition methods and their neural-network models.,1997,8,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn8.html#PrakashM97,https://doi.org/10.1109/72.554201 +Howard C. Card,Compound binomial processes in neural integration.,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#Card01,https://doi.org/10.1109/72.963787 +Badong Chen,Quantized Kernel Least Mean Square Algorithm.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn23.html#ChenZZP12,https://doi.org/10.1109/TNNLS.2011.2178446 +Aurel A. Lazar,Video Time Encoding Machines.,2011,22,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn22.html#LazarP11,https://doi.org/10.1109/TNN.2010.2103323 +Damien Macq,Analog implementation of a Kohonen map with on-chip learning.,1993,4,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn4.html#MacqVJL93,https://doi.org/10.1109/72.217188 +Kishan G. Mehrotra,Bounds on the number of samples needed for neural learning.,1991,2,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn2.html#MehrotraMR91,https://doi.org/10.1109/72.97932 +Te-Won Lee,Independent component analysis: theory and applications [Book Review].,1999,10,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn10.html#Lee99a,https://doi.org/10.1109/TNN.1999.774415 +Lin Zhao 0003,Learning a Tracking and Estimation Integrated Graphical Model for Human Pose Tracking.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn26.html#ZhaoGTL15,https://doi.org/10.1109/TNNLS.2015.2411287 +Youji Iiguni,A nonlinear regulator design in the presence of system uncertainties using multilayered neural network.,1991,2,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn2.html#IiguniST91,https://doi.org/10.1109/72.88160 +Yingchao Xiao,Hyperparameter Selection for Gaussian Process One-Class Classification.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn26.html#XiaoWX15,https://doi.org/10.1109/TNNLS.2014.2363457 +Janusz A. Starzyk,Associative Learning in Hierarchical Self-Organizing Learning Arrays.,2006,17,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn17.html#StarzykZL06,https://doi.org/10.1109/TNN.2006.883008 +DeLiang Wang,Locally excitatory globally inhibitory oscillator networks.,1995,6,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn6.html#WangT95,https://doi.org/10.1109/72.363423 +Christopher Sentelle,Efficient Revised Simplex Method for SVM Training.,2011,22,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn22.html#SentelleAG11,https://doi.org/10.1109/TNN.2011.2165081 +Carlos Santa Cruz,A nonlinear discriminant algorithm for feature extraction and data classification.,1998,9,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn9.html#CruzD98,https://doi.org/10.1109/72.728388 +Evriclea Voudouri-Maniati,A neural-network approach to nonparametric and robust classification procedures.,1997,8,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn8.html#Voudouri-ManiatiKK97,https://doi.org/10.1109/72.557667 +Derong Liu 0001,Policy Iteration Adaptive Dynamic Programming Algorithm for Discrete-Time Nonlinear Systems.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn25.html#LiuW14,https://doi.org/10.1109/TNNLS.2013.2281663 +Merih Yildiz,A CMOS Classifier Circuit Using Neural Networks With Novel Architecture.,2007,18,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn18.html#YildizMG07,https://doi.org/10.1109/TNN.2007.902961 +Long Jin,Discrete-Time Zhang Neural Network for Online Time-Varying Nonlinear Optimization With Application to Manipulator Motion Generation.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn26.html#JinZ15,https://doi.org/10.1109/TNNLS.2014.2342260 +Puya Ghasemi Afshar,An ILC-Based Adaptive Control for General Stochastic Systems With Strictly Decreasing Entropy.,2009,20,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn20.html#AfsharWC09,https://doi.org/10.1109/TNN.2008.2010351 +Stephen J. Payne,Automated classification and analysis of the calcium response of single T lymphocytes using a neural network approach.,2005,16,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn16.html#PayneAHY05,https://doi.org/10.1109/TNN.2005.849820 +Chunling Dong,Assessing the Influence of an Individual Event in Complex Fault Spreading Network Based on Dynamic Uncertain Causality Graph.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn27.html#DongZZ16,https://doi.org/10.1109/TNNLS.2016.2547339 +Olivier F. Manette,Temporal Processing in primate motor control: relation between cortical and EMG activity.,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#ManetteM04,https://doi.org/10.1109/TNN.2004.833127 +Chih-Lyang Hwang,A reinforcement discrete neuro-adaptive control for unknown piezoelectric actuator systems with dominant hysteresis.,2003,14,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn14.html#HwangJ03,https://doi.org/10.1109/TNN.2002.806610 +Luke B. Godfrey,Neural Decomposition of Time-Series Data for Effective Generalization.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#GodfreyG18,https://doi.org/10.1109/TNNLS.2017.2709324 +Thomas Villmann,Topology preservation in self-organizing feature maps: exact definition and measurement.,1997,8,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn8.html#VillmannDHM97,https://doi.org/10.1109/72.557663 +Deyuan Meng,Data-Driven Control for Relative Degree Systems via Iterative Learning.,2011,22,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn22.html#MengJDY11,https://doi.org/10.1109/TNN.2011.2174378 +Chen-Chia Chuang,Robust support vector regression networks for function approximation with outliers.,2002,13,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn13.html#ChuangSJH02,https://doi.org/10.1109/TNN.2002.804227 +Robert C. Frye,Back-propagation learning and nonidealities in analog neural network hardware.,1991,2,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn2.html#FryeRW91,https://doi.org/10.1109/72.80296 +Jie Luo 0001,Principal independent component analysis.,1999,10,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn10.html#LuoHLL99,https://doi.org/10.1109/72.774259 +Cesare Alippi,Hierarchical Change-Detection Tests.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn28.html#AlippiBR17,https://doi.org/10.1109/TNNLS.2015.2512714 +Yuri V. Andreyev,Information processing using dynamical chaos: neural networks implementation.,1996,7,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn7.html#AndreyevBDK96,https://doi.org/10.1109/72.485632 +Raghu Krishnapuram,Implementation of parallel thinning algorithms using recurrent neural networks.,1993,4,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn4.html#KrishnapuramC93,https://doi.org/10.1109/72.182705 +Yue Fu,Robust Adaptive Dynamic Programming of Two-Player Zero-Sum Games for Continuous-Time Linear Systems.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn26.html#FuFC15,https://doi.org/10.1109/TNNLS.2015.2461452 +Manas Kumar Jena,Data-Mining-Based Intelligent Differential Relaying for Transmission Lines Including UPFC and Wind Farms.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn27.html#JenaS16,https://doi.org/10.1109/TNNLS.2015.2404775 +Xinghu Zhang,The min-max function differentiation and training of fuzzy neural networks.,1996,7,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn7.html#ZhangHTW96,https://doi.org/10.1109/72.536310 +Shayok Chakraborty,Adaptive Batch Mode Active Learning.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn26.html#ChakrabortyBP15,https://doi.org/10.1109/TNNLS.2014.2356470 +Xing-Bao Gao,Exponential stability of globally projected dynamic systems.,2003,14,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn14.html#Gao03,https://doi.org/10.1109/TNN.2003.809409 +Tingting Mu,Adaptive Data Embedding Framework for Multiclass Classification.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn23.html#MuJWG12,https://doi.org/10.1109/TNNLS.2012.2200693 +Yee Leung,Degree of population diversity - a perspective on premature convergence in genetic algorithms and its Markov chain analysis.,1997,8,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn8.html#LeungGX97,https://doi.org/10.1109/72.623217 +Ioannis Psorakis,Multiclass relevance vector machines: sparsity and accuracy.,2010,21,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn21.html#PsorakisDG10,https://doi.org/10.1109/TNN.2010.2064787 +Sumio Watanabe,Learning efficiency of redundant neural networks in Bayesian estimation.,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#Watanabe01,https://doi.org/10.1109/72.963783 +Feng-Sheng Tsai,Adaptive Tracking Control for Robots With an Interneural Computing Scheme.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#TsaiHS18,https://doi.org/10.1109/TNNLS.2017.2647819 +Qinglai Wei,Data-Driven Zero-Sum Neuro-Optimal Control for a Class of Continuous-Time Unknown Nonlinear Systems With Disturbance Using ADP.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn27.html#WeiSY16,https://doi.org/10.1109/TNNLS.2015.2464080 +Coe F. Miles,The microcircuit associative memory: a biologically motivated memory architecture.,1994,5,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn5.html#MilesR94,https://doi.org/10.1109/72.286913 +Noboru Murata,Network information criterion-determining the number of hidden units for an artificial neural network model.,1994,5,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn5.html#MurataYA94,https://doi.org/10.1109/72.329683 +Daniel Lopez-Echeverria,Variable Sampling Approach to Mitigate Instability in Networked Control Systems With Delays.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn23.html#Lopez-EcheverriaM12,https://doi.org/10.1109/TNNLS.2011.2178445 +Shun-Feng Su,On the dynamical modeling with neural fuzzy networks.,2002,13,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn13.html#SuY02,https://doi.org/10.1109/TNN.2002.804313 +Defeng Wang,Weighted Mahalanobis Distance Kernels for Support Vector Machines.,2007,18,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn18.html#WangYT07,https://doi.org/10.1109/TNN.2007.895909 +Wenjun Xia,A Nearest Neighbor Classifier Employing Critical Boundary Vectors for Efficient On-Chip Template Reduction.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn27.html#XiaMS16,https://doi.org/10.1109/TNNLS.2015.2437901 +Yuefeng Ma,Fast-Solving Quasi-Optimal LS-S3VM Based on an Extended Candidate Set.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#MaLKLZZ18,https://doi.org/10.1109/TNNLS.2017.2660499 +Peter Tiño,Markovian architectural bias of recurrent neural networks.,2004,15,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn15.html#TinoCB04,https://doi.org/10.1109/TNN.2003.820839 +Russell C. Eberhart,Standardization of neural network terminology.,1990,1,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn1.html#Eberhart90,https://doi.org/10.1109/72.80238 +Michimasa Kitahara,Projection Rule for Rotor Hopfield Neural Networks.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn25.html#KitaharaK14,https://doi.org/10.1109/TNNLS.2013.2292706 +Dino Ienco,A Semisupervised Approach to the Detection and Characterization of Outliers in Categorical Data.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn28.html#IencoPM17,https://doi.org/10.1109/TNNLS.2016.2526063 +Ehud D. Karnin,A simple procedure for pruning back-propagation trained neural networks.,1990,1,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn1.html#Karnin90,https://doi.org/10.1109/72.80236 +Andrew H. Gee,Limitations of neural networks for solving traveling salesman problems.,1995,6,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn6.html#GeeP95,https://doi.org/10.1109/72.363424 +Xiaojun Chang,Compound Rank-k Projections for Bilinear Analysis.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn27.html#ChangNWYZZ16,https://doi.org/10.1109/TNNLS.2015.2441735 +Yu Nishitani,Supervised Learning Using Spike-Timing-Dependent Plasticity of Memristive Synapses.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn26.html#NishitaniKU15,https://doi.org/10.1109/TNNLS.2015.2399491 +Ekaterina Vassilieva,Learning Pattern Recognition Through Quasi-Synchronization of Phase Oscillators.,2011,22,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn22.html#VassilievaPBS11,https://doi.org/10.1109/TNN.2010.2086476 +Chun-Fei Hsu,Self-Organizing Adaptive Fuzzy Neural Control for a Class of Nonlinear Systems.,2007,18,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn18.html#Hsu07,https://doi.org/10.1109/TNN.2007.899178 +Hao Yu,An Incremental Design of Radial Basis Function Networks.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn25.html#YuRXBW14,https://doi.org/10.1109/TNNLS.2013.2295813 +Omar Arif,Kernel Map Compression for Speeding the Execution of Kernel-Based Methods.,2011,22,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn22.html#ArifV11,https://doi.org/10.1109/TNN.2011.2127485 +Dariusz Brzezinski,Reacting to Different Types of Concept Drift: The Accuracy Updated Ensemble Algorithm.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn25.html#BrzezinskiS14,https://doi.org/10.1109/TNNLS.2013.2251352 +Pengsheng Zheng,Threshold Complex-Valued Neural Associative Memory.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn25.html#Zheng14,https://doi.org/10.1109/TNNLS.2013.2280573 +Diego Vidaurre,A Quick Assessment of Topology Preservation for SOM Structures.,2007,18,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn18.html#VidaurreM07,https://doi.org/10.1109/TNN.2007.895820 +Xia Hong 0001,A-Optimality Orthogonal Forward Regression Algorithm Using Branch and Bound.,2008,19,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn19.html#HongCH08a,https://doi.org/10.1109/TNN.2008.2003251 +Gang Chen 0014,Terminal Sliding Mode-Based Consensus Tracking Control for Networked Uncertain Mechanical Systems on Digraphs.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn29.html#ChenSG18,https://doi.org/10.1109/TNNLS.2016.2636323 +Sarangapani Jagannathan,Multilayer discrete-time neural-net controller with guaranteed performance.,1996,7,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn7.html#JagannathanL96,https://doi.org/10.1109/72.478396 +Hong Li,Error Analysis for Matrix Elastic-Net Regularization Algorithms.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn23.html#LiCL12,https://doi.org/10.1109/TNNLS.2012.2188906 +Yoshihiro Yamamoto,A new supervised learning algorithm for multilayered and interconnected neural networks.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn11.html#YamamotoN00,https://doi.org/10.1109/72.822508 +Johan A. K. Suykens,Robust local stability of multilayer recurrent neural networks.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn11.html#SuykensMV00,https://doi.org/10.1109/72.822525 +Manh Cong Phan,Error Surface of Recurrent Neural Networks.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn24.html#PhanH13,https://doi.org/10.1109/TNNLS.2013.2258470 +Babajide O. Ayinde,Deep Learning of Constrained Autoencoders for Enhanced Understanding of Data.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#AyindeZ18,https://doi.org/10.1109/TNNLS.2017.2747861 +V. Chandrasekaran,Topology constraint free fuzzy gated neural networks for pattern recognition.,1998,9,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn9.html#ChandrasekaranL98,https://doi.org/10.1109/72.668890 +Jianyong Sun,A fast algorithm for robust mixtures in the presence of measurement errors.,2010,21,IEEE Trans. Neural Networks,8,db/journals/tnn/tnn21.html#SunK10,https://doi.org/10.1109/TNN.2010.2048219 +Zhenbao Liu,Human-Centered Saliency Detection.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn27.html#LiuWB16,https://doi.org/10.1109/TNNLS.2015.2495148 +Xiaoling Wang,Observer-Based Robust Coordinated Control of Multiagent Systems With Input Saturation.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#WangSCW18,https://doi.org/10.1109/TNNLS.2017.2690322 +K. Z. Mao,RBF neural network center selection based on Fisher ratio class separability measure.,2002,13,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn13.html#Mao02,https://doi.org/10.1109/TNN.2002.1031953 +Andrzej W. Przybyszewski,Basic Difference Between Brain and Computer: Integration of Asynchronous Processes Implemented as Hardware Model of the Retina.,2007,18,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn18.html#PrzybyszewskiLGW07,https://doi.org/10.1109/TNN.2006.882814 +Ming Jiang,Learning to Predict Sequences of Human Visual Fixations.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn27.html#JiangBRXGZ16,https://doi.org/10.1109/TNNLS.2015.2496306 +Erdogan çesmeli,Motion segmentation based on motion/brightness integration and oscillatory correlation.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn11.html#CesmeliW00,https://doi.org/10.1109/72.857773 +Yiguang Liu,L1-Norm Low-Rank Matrix Decomposition by Neural Networks and Mollifiers.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn27.html#LiuYWLY16,https://doi.org/10.1109/TNNLS.2015.2496964 +Xiang Li,Chaotifying linear Elman networks.,2002,13,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn13.html#LiCCY02,https://doi.org/10.1109/TNN.2002.1031950 +Peerapon Siripongwutikorn,Fuzzy-based adaptive bandwidth control for loss guarantees.,2005,16,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn16.html#SiripongwutikornBT05,https://doi.org/10.1109/TNN.2005.853429 +Sa Hyun Bang,Optimal solutions for cellular neural networks by paralleled hardware annealing.,1996,7,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn7.html#BangSW96,https://doi.org/10.1109/72.485679 +Chengde Zheng,An augmented LKF approach involving derivative information of both state and delay.,2010,21,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn21.html#ZhengZW10,https://doi.org/10.1109/TNN.2010.2048434 +Mahesh S. Iyer,Dynamic re-optimization of a fed-batch fermentor using adaptive critic designs.,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#IyerW01,https://doi.org/10.1109/72.963778 +Richard C. Wilson 0001,A study of pattern recovery in recurrent correlation associative memories.,2003,14,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn14.html#WilsonH03,https://doi.org/10.1109/TNN.2003.811559 +Nicolaos B. Karayiannis,Soft learning vector quantization and clustering algorithms based on non-Euclidean norms: single-norm algorithms.,2005,16,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn16.html#KarayiannisR05,https://doi.org/10.1109/TNN.2004.841778 +Shengxiang Yang,Constraint satisfaction adaptive neural network and heuristics combined approaches for generalized job-shop scheduling.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn11.html#YangW00,https://doi.org/10.1109/72.839016 +Bang W. Lee,Modified Hopfield neural networks for retrieving the optimal solution.,1991,2,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn2.html#LeeS91,https://doi.org/10.1109/72.80300 +F. Shiratani,Deterministic annealing techniques for a discrete-time neural-network updating in a block-sequential mode.,1998,9,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn9.html#ShirataniY98,https://doi.org/10.1109/72.668878 +Hongtao Lu,Global exponential convergence of Cohen-Grossberg neural networks with time delays.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#LuSC05,https://doi.org/10.1109/TNN.2005.853336 +Guoxu Zhou,Nonorthogonal Approximate Joint Diagonalization With Well-Conditioned Diagonalizers.,2009,20,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn20.html#ZhouXYZ09,https://doi.org/10.1109/TNN.2009.2030586 +Liping Jing,Dictionary Learning-Based Subspace Structure Identification in Spectral Clustering.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn24.html#JingNZ13,https://doi.org/10.1109/TNNLS.2013.2253123 +Zhanshan Wang,Stability Criteria for Recurrent Neural Networks With Time-Varying Delay Based on Secondary Delay Partitioning Method.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn26.html#WangLSZ15,https://doi.org/10.1109/TNNLS.2014.2387434 +Jang-Hyun Park,Adaptive Neural Control for Strict-Feedback Nonlinear Systems Without Backstepping.,2009,20,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn20.html#ParkKM09,https://doi.org/10.1109/TNN.2009.2020982 +Changchun Hua,Output Feedback Stabilization for Time-Delay Nonlinear Interconnected Systems Using Neural Networks.,2008,19,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn19.html#HuaG08,https://doi.org/10.1109/TNN.2007.912318 +Lech Szymanski,Deep Networks are Effective Encoders of Periodicity.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn25.html#SzymanskiM14,https://doi.org/10.1109/TNNLS.2013.2296046 +M. K. Sudareshan,Recurrent neural-network training by a learning automaton approach for trajectory learning and control system design.,1998,9,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn9.html#SudareshanC98,https://doi.org/10.1109/72.668879 +Sanjay I. Mistry,Indirect control of a class of nonlinear dynamic systems.,1996,7,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn7.html#MistryCN96,https://doi.org/10.1109/72.508943 +Huanhuan Chen,Learning in the Model Space for Cognitive Fault Diagnosis.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn25.html#ChenTRY14,https://doi.org/10.1109/TNNLS.2013.2256797 +Jack L. Meador,Programmable impulse neural circuits.,1991,2,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn2.html#MeadorWCNC91,https://doi.org/10.1109/72.80295 +Wanqi Yang,MRM-Lasso: A Sparse Multiview Feature Selection Method via Low-Rank Analysis.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn26.html#YangGSC15,https://doi.org/10.1109/TNNLS.2015.2396937 +Constantinos Panagiotakopoulos,The Margitron: A Generalized Perceptron With Margin.,2011,22,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn22.html#PanagiotakopoulosT11,https://doi.org/10.1109/TNN.2010.2099238 +Wei Bian,Subgradient-Based Neural Networks for Nonsmooth Nonconvex Optimization Problems.,2009,20,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn20.html#BianX09,https://doi.org/10.1109/TNN.2009.2016340 +Jinling Liang,Robust Synchronization for 2-D Discrete-Time Coupled Dynamical Networks.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn23.html#LiangWLL12,https://doi.org/10.1109/TNNLS.2012.2193414 +Manuel A. Sánchez-Montañés,Learning sensory maps with real-world stimuli in real time using a biophysically realistic learning rule.,2002,13,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn13.html#Sanchez-MontanesKV02,https://doi.org/10.1109/TNN.2002.1000128 +M. Di Martino,"Exploring and comparing the best ""direct methods"" for the efficient training of MLP-networks.",1996,7,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn7.html#MartinoFP96,https://doi.org/10.1109/72.548177 +H. Yoshino,Kernel Wiener Filter and Its Application to Pattern Recognition.,2010,21,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn21.html#YoshinoDWY10,https://doi.org/10.1109/TNN.2010.2059042 +Angelo Alessandri,Feedback Optimal Control of Distributed Parameter Systems by Using Finite-Dimensional Approximation Schemes.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn23.html#AlessandriGZ12,https://doi.org/10.1109/TNNLS.2012.2192748 +Quanmin Zhu,Stable adaptive neurocontrol for nonlinear discrete-time systems.,2004,15,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn15.html#ZhuG04,https://doi.org/10.1109/TNN.2004.826131 +Jui-Cheng Yen,A new k-winners-take-all neural network and its array architecture.,1998,9,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn9.html#YenGC98,https://doi.org/10.1109/72.712163 +Yutaka Maeda,Simultaneous perturbation learning rule for recurrent neural networks and its FPGA implementation.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#MaedaW05,https://doi.org/10.1109/TNN.2005.852237 +Wenbing Zhang,Synchronization of Stochastic Dynamical Networks Under Impulsive Control With Time Delays.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn25.html#ZhangTMF14,https://doi.org/10.1109/TNNLS.2013.2294727 +Eduardo Gómez-Sánchez,λ6*ARTMAP: use of mutual information for category reduction in Fuzzy ARTMAP.,2002,13,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn13.html#Gomez-SanchezDIC02,https://doi.org/10.1109/72.977271 +Tianping Chen,Global convergence of Oja's subspace algorithm for principal component extraction.,1998,9,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn9.html#ChenHY98,https://doi.org/10.1109/72.655030 +Sidney S. Fels,Glove-TalkII-a neural-network interface which maps gestures to parallel formant speech synthesizer controls.,1998,9,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn9.html#FelsH98,https://doi.org/10.1109/72.655042 +Lili Wang 0001,Multistability and New Attraction Basins of Almost-Periodic Solutions of Delayed Neural Networks.,2009,20,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn20.html#WangLC09,https://doi.org/10.1109/TNN.2009.2027121 +David Angeli,Convergence in Networks With Counterclockwise Neural Dynamics.,2009,20,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn20.html#Angeli09,https://doi.org/10.1109/TNN.2009.2013341 +Haijun Zhang,Organizing Books and Authors by Multilayer SOM.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn27.html#ZhangCW16,https://doi.org/10.1109/TNNLS.2015.2496281 +Mathias M. Adankon,Semisupervised Learning Using Bayesian Interpretation: Application to LS-SVM.,2011,22,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn22.html#AdankonCB11,https://doi.org/10.1109/TNN.2011.2105888 +Vir V. Phoha,Image recovery and segmentation using competitive learning in a layered network.,1996,7,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn7.html#PhohaO96,https://doi.org/10.1109/72.508928 +Jui-Cheng Yen,A new winners-take-all architecture in artificial neural networks.,1994,5,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn5.html#YenCC94,https://doi.org/10.1109/72.317736 +Abouzar Taherkhani,DL-ReSuMe: A Delay Learning-Based Remote Supervised Method for Spiking Neurons.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn26.html#TaherkhaniBLM15,https://doi.org/10.1109/TNNLS.2015.2404938 +Xiang-Wei He,A competitive associative memory model and its dynamics.,1995,6,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn6.html#HeKX95,https://doi.org/10.1109/72.392255 +Sheng Chen 0001,Symmetric Complex-Valued RBF Receiver for Multiple-Antenna-Aided Wireless Systems.,2008,19,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn19.html#ChenHT08,https://doi.org/10.1109/TNN.2008.2000582 +Konstantinos Nikolaidis,Spectral Graph Optimization for Instance Reduction.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn23.html#NikolaidisRGW12,https://doi.org/10.1109/TNNLS.2012.2198832 +Salman Hameed Khan,Cost-Sensitive Learning of Deep Feature Representations From Imbalanced Data.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#KhanHBST18,https://doi.org/10.1109/TNNLS.2017.2732482 +Andrew W. Moore,A real-time neural system for color constancy.,1991,2,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn2.html#MooreAG91,https://doi.org/10.1109/72.80334 +Alioune Ngom,On the number of multilinear partitions and the computing capacity of multiple-valued multiple-threshold perceptrons.,2003,14,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn14.html#NgomSZ03,https://doi.org/10.1109/TNN.2003.810598 +Yangquan Chen,Learning feedforward control using a Dilated B-spline network: frequency Domain Analysis and design.,2004,15,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn15.html#ChenMB04,https://doi.org/10.1109/TNN.2004.824268 +Johannes Partzsch,Analyzing the Scaling of Connectivity in Neuromorphic Hardware and in Models of Neural Networks.,2011,22,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn22.html#PartzschS11,https://doi.org/10.1109/TNN.2011.2134109 +Sitao Wu,Self-Organizing and Self-Evolving Neurons: A New Neural Network for Optimization.,2007,18,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn18.html#WuC07,https://doi.org/10.1109/TNN.2006.887556 +Dhananjay S. Phatak,Complete and partial fault tolerance of feedforward neural nets.,1995,6,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn6.html#PhatakK95,https://doi.org/10.1109/72.363479 +Leszek Rutkowski,Generalized regression neural networks in time-varying environment.,2004,15,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn15.html#Rutkowski04,https://doi.org/10.1109/TNN.2004.826127 +Indre Zliobaite,Active Learning With Drifting Streaming Data.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn25.html#ZliobaiteBPH14,https://doi.org/10.1109/TNNLS.2012.2236570 +Erich Fuchs,Processing Short-Term and Long-Term Information With a Combination of Polynomial Approximation Techniques and Time-Delay Neural Networks.,2009,20,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn20.html#FuchsGRS09,https://doi.org/10.1109/TNN.2009.2024679 +Siamak Mehrkanoon,Multiclass Semisupervised Learning Based Upon Kernel Spectral Clustering.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn26.html#MehrkanoonAMLS15,https://doi.org/10.1109/TNNLS.2014.2322377 +Magdy M. A. Salama,Determination of neural-network topology for partial discharge pulse pattern recognition.,2002,13,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn13.html#SalamaB02,https://doi.org/10.1109/72.991430 +Lucia Maddalena,Stopped Object Detection by Learning Foreground Model in Videos.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn24.html#MaddalenaP13,https://doi.org/10.1109/TNNLS.2013.2242092 +Lian Yan,General statistical inference for discrete and mixed spaces by an approximate application of the maximum entropy principle.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn11.html#YanM00,https://doi.org/10.1109/72.846727 +Vijay Manikandan Janakiraman,Identification of the Dynamic Operating Envelope of HCCI Engines Using Class Imbalance Learning.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn26.html#JanakiramanNSA15,https://doi.org/10.1109/TNNLS.2014.2311466 +Xu Yang 0004,An Algorithm for Finding the Most Similar Given Sized Subgraphs in Two Weighted Graphs.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn29.html#YangQL18,https://doi.org/10.1109/TNNLS.2017.2712794 +Kevin Ho,Objective Functions of Online Weight Noise Injection Training Algorithms for MLPs.,2011,22,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn22.html#HoLS11,https://doi.org/10.1109/TNN.2010.2095881 +Josey Mathew,Classification of Imbalanced Data by Oversampling in Kernel Space of Support Vector Machines.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#MathewPLL18,https://doi.org/10.1109/TNNLS.2017.2751612 +Bin Hu,A Rotational Motion Perception Neural Network Based on Asymmetric Spatiotemporal Visual Information Processing.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn28.html#HuYZ17,https://doi.org/10.1109/TNNLS.2016.2592969 +Jiann-Ming Wu,Function approximation using generalized adalines.,2006,17,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn17.html#WuLH06,https://doi.org/10.1109/TNN.2006.873284 +Benoît Frénay,Classification in the Presence of Label Noise: A Survey.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn25.html#FrenayV14,https://doi.org/10.1109/TNNLS.2013.2292894 +Pierre-Francois Marteau,On Recursive Edit Distance Kernels With Application to Time Series Classification.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn26.html#MarteauG15,https://doi.org/10.1109/TNNLS.2014.2333876 +Qibin Zhao,Bayesian Robust Tensor Factorization for Incomplete Multiway Data.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn27.html#ZhaoZZCA16,https://doi.org/10.1109/TNNLS.2015.2423694 +Patryk Deptula,Approximate Dynamic Programming: Combining Regional and Local State Following Approximations.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn29.html#DeptulaRKD18,https://doi.org/10.1109/TNNLS.2018.2808102 +Ailong Wu,Global Mittag-Leffler Stabilization of Fractional-Order Memristive Neural Networks.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn28.html#WuZ17,https://doi.org/10.1109/TNNLS.2015.2506738 +Arash Mohammadi 0001,Improper Complex-Valued Bhattacharyya Distance.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn27.html#0001P16,https://doi.org/10.1109/TNNLS.2015.2436064 +Zhouhua Peng,Predictor-Based Neural Dynamic Surface Control for Uncertain Nonlinear Systems in Strict-Feedback Form.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn28.html#PengWW17,https://doi.org/10.1109/TNNLS.2016.2577342 +Jari Kangas,Variants of self-organizing maps.,1990,1,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn1.html#KangasKL90,https://doi.org/10.1109/72.80208 +Anke Meyer-Bäse,Global exponential stability of competitive neural networks with different time scales.,2003,14,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn14.html#Meyer-BasePC03,https://doi.org/10.1109/TNN.2003.810594 +Simone G. O. Fiori,Extended Hamiltonian Learning on Riemannian Manifolds: Theoretical Aspects.,2011,22,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn22.html#Fiori11,https://doi.org/10.1109/TNN.2011.2109395 +Bin Gu,A Solution Path Algorithm for General Parametric Quadratic Programming Problem.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn29.html#GuS18,https://doi.org/10.1109/TNNLS.2017.2771456 +Jar-Ferr Yang,A general mean-based iterative winner-take-all neural network.,1995,6,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn6.html#YangCWL95,https://doi.org/10.1109/72.363454 +Biao Luo,Adaptive Optimal Control of Highly Dissipative Nonlinear Spatially Distributed Processes With Neuro-Dynamic Programming.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn26.html#LuoWL15,https://doi.org/10.1109/TNNLS.2014.2320744 +Jin-Liang Wang,Novel Adaptive Strategies for Synchronization of Linearly Coupled Neural Networks With Reaction-Diffusion Terms.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn25.html#WangWG14,https://doi.org/10.1109/TNNLS.2013.2276086 +Yunong Zhang,Design and analysis of a general recurrent neural network model for time-varying matrix inversion.,2005,16,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn16.html#ZhangG05,https://doi.org/10.1109/TNN.2005.857946 +Gregory L. Plett,Mine detection using scattering parameters.,1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#PlettDT97,https://doi.org/10.1109/72.641468 +Mark D. Plumbley,"A ""nonnegative PCA"" algorithm for independent component analysis.",2004,15,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn15.html#PlumbleyO04,https://doi.org/10.1109/TNN.2003.820672 +Liang Jin,Stable dynamic backpropagation learning in recurrent neural networks.,1999,10,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn10.html#JinG99,https://doi.org/10.1109/72.809078 +Yanwei Pang,Ranking Graph Embedding for Learning to Rerank.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn24.html#PangJJL13,https://doi.org/10.1109/TNNLS.2013.2253798 +Xun-Lin Zhu,New Delay-Dependent Stability Results for Neural Networks With Time-Varying Delay.,2008,19,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn19.html#ZhuY08,https://doi.org/10.1109/TNN.2008.2002436 +Hua Deng,On the new method for the control of discrete nonlinear dynamic systems using neural networks.,2006,17,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn17.html#DengL06,https://doi.org/10.1109/TNN.2006.871723 +Miao Hu,Memristor Crossbar-Based Neuromorphic Computing System: A Case Study.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn25.html#HuLCWRL14,https://doi.org/10.1109/TNNLS.2013.2296777 +Mengqi Xue,Model Approximation for Switched Genetic Regulatory Networks.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#XueTWQ18,https://doi.org/10.1109/TNNLS.2017.2721448 +Bao-Liang Lu,Task decomposition and module combination based on class relations: a modular neural network for pattern classification.,1999,10,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn10.html#LuI99,https://doi.org/10.1109/72.788664 +Alejandro Linares-Barranco,On algorithmic rate-coded AER generation.,2006,17,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn17.html#Linares-BarrancoJLB06,https://doi.org/10.1109/TNN.2006.872253 +Dongshu Wang,Dissipativity and Synchronization of Generalized BAM Neural Networks With Multivariate Discontinuous Activations.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn29.html#WangHT18a,https://doi.org/10.1109/TNNLS.2017.2741349 +Huanhuan Chen,Probabilistic Classification Vector Machines.,2009,20,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn20.html#ChenTY09,https://doi.org/10.1109/TNN.2009.2014161 +Hazem M. Abbas,Performance of the Alex AVX-2 MIMD architecture in learning the NetTalk database.,2004,15,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn15.html#Abbas04,https://doi.org/10.1109/TNN.2004.824274 +Ezz I. El-Masry,Implementations of artificial neural networks using current-mode pulse width modulation technique.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#El-MasryYY97,https://doi.org/10.1109/72.572093 +Ponnuthurai N. Suganthan,Hierarchical overlapped SOM's for pattern classification.,1999,10,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn10.html#Suganthan99,https://doi.org/10.1109/72.737507 +Vicente Ruiz de Angulo,Self-calibration of a space robot.,1997,8,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn8.html#AnguloT97,https://doi.org/10.1109/72.595895 +John McElroy,Generalized Encoding and Decoding Operators for Lattice-Based Associative Memories.,2009,20,IEEE Trans. Neural Networks,10,db/journals/tnn/tnn20.html#McElroyG09,https://doi.org/10.1109/TNN.2009.2028424 +Zheng Yan 0001,Nonlinear Model Predictive Control Based on Collective Neurodynamic Optimization.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn26.html#YanW15,https://doi.org/10.1109/TNNLS.2014.2387862 +G. Kuntimad,Perfect image segmentation using pulse coupled neural networks.,1999,10,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn10.html#KuntimadR99,https://doi.org/10.1109/72.761716 +Robert J. Cimikowski,A neural-network algorithm for a graph layout problem.,1996,7,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn7.html#CimikowskiS96,https://doi.org/10.1109/72.485670 +Giacomo Indiveri,A neuromorphic VLSI device for implementing 2D selective attention systems.,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#Indiveri01,https://doi.org/10.1109/72.963780 +Sang-Hoon Oh,Improving the error backpropagation algorithm with a modified error function.,1997,8,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn8.html#Oh97,https://doi.org/10.1109/72.572117 +K. Chen,Supervised and Unsupervised Pattern Recognition: Feature Extraction and Computational Intelligence [Book Review].,2001,12,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn12.html#ChenKKH01,https://doi.org/10.1109/TNN.2001.925570 +Rohit Lotlikar,Bayes-optimality motivated linear and multilayered perceptron-based dimensionality reduction.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn11.html#LotlikarK00,https://doi.org/10.1109/72.839014 +Sotirios P. Chatzis,A Latent Manifold Markovian Dynamics Gaussian Process.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,1,db/journals/tnn/tnn26.html#ChatzisK15,https://doi.org/10.1109/TNNLS.2014.2311073 +Shiming Xiang,Discriminative Least Squares Regression for Multiclass Classification and Feature Selection.,2012,23,IEEE Trans. Neural Netw. Learning Syst.,11,db/journals/tnn/tnn23.html#XiangNMPZ12,https://doi.org/10.1109/TNNLS.2012.2212721 +Xuhui Bu,Data-Driven Multiagent Systems Consensus Tracking Using Model Free Adaptive Control.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn29.html#BuHZ18,https://doi.org/10.1109/TNNLS.2017.2673020 +Zaiyue Yang,Adaptive Neural Control of Nonaffine Systems With Unknown Control Coefficient and Nonsmooth Actuator Nonlinearities.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,8,db/journals/tnn/tnn26.html#YangYS15,https://doi.org/10.1109/TNNLS.2014.2354533 +LiMin Fu,Learning in certainty-factor-based multilayer neural networks for classification.,1998,9,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn9.html#Fu98,https://doi.org/10.1109/72.655036 +Qianqian Wang,Robust DLPP With Nongreedy and#8467*1-Norm Minimization and Maximization.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn29.html#WangGXGW18,https://doi.org/10.1109/TNNLS.2016.2636130 +Andrea Baraldi,Model transitions in descending FLVQ.,1998,9,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn9.html#BaraldiBPPS98,https://doi.org/10.1109/72.712148 +George A. Rovithakis,Robust redesign of a neural network controller in the presence of unmodeled dynamics.,2004,15,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn15.html#Rovithakis04,https://doi.org/10.1109/TNN.2004.837782 +Xiao-Hu Yu,Can backpropagation error surface not have local minima.,1992,3,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn3.html#Yu92,https://doi.org/10.1109/72.165604 +Akihito Sudo,Associative Memory for Online Learning in Noisy Environments Using Self-Organizing Incremental Neural Network.,2009,20,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn20.html#SudoSH09,https://doi.org/10.1109/TNN.2009.2014374 +Li Cheng,Semi-supervised Domain Adaptation on Manifolds.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn25.html#ChengP14,https://doi.org/10.1109/TNNLS.2014.2308325 +Trevor G. Clarkson,The pRAM: an adaptive VLSI chip.,1993,4,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn4.html#ClarksonNG93,https://doi.org/10.1109/72.217182 +Apostolos-Paul Nicholas Refenes,Forecasting volatility with neural regression: A contribution to model adequacy.,2001,12,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn12.html#RefenesH01,https://doi.org/10.1109/72.935095 +Qingshan Liu 0002,A One-Layer Projection Neural Network for Nonsmooth Optimization Subject to Linear Equalities and Bound Constraints.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn24.html#Liu013,https://doi.org/10.1109/TNNLS.2013.2244908 +Veronika Cheplygina,Dissimilarity-Based Ensembles for Multiple Instance Learning.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn27.html#CheplyginaTL16,https://doi.org/10.1109/TNNLS.2015.2424254 +Amit Bhaya,Existence and stability of a unique equilibrium in continuous-valued discrete-time asynchronous Hopfield neural networks.,1996,7,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn7.html#BhayaKK96,https://doi.org/10.1109/72.501720 +Xu-Yao Zhang,Retargeted Least Squares Regression Algorithm.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn26.html#ZhangWXL15,https://doi.org/10.1109/TNNLS.2014.2371492 +Julie Carreau,A Hybrid Pareto Mixture for Conditional Asymmetric Fat-Tailed Distributions.,2009,20,IEEE Trans. Neural Networks,7,db/journals/tnn/tnn20.html#CarreauB09,https://doi.org/10.1109/TNN.2009.2016339 +Shun-ichi Amari,Information geometry of Boltzmann machines.,1992,3,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn3.html#AmariKN92,https://doi.org/10.1109/72.125867 +Hanwen Ning,Online Identification of Nonlinear Spatiotemporal Systems Using Kernel Learning Approach.,2011,22,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn22.html#NingJC11,https://doi.org/10.1109/TNN.2011.2161331 +Youshen Xia,Neural network for solving linear programming problems with bounded variables.,1995,6,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn6.html#XiaW95,https://doi.org/10.1109/72.363493 +Xiao Ming Gao,Power prediction in mobile communication systems using an optimal neural-network structure.,1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#GaoGTO97,https://doi.org/10.1109/72.641467 +Feipeng Da,Decentralized sliding mode adaptive controller design based on fuzzy neural networks for interconnected uncertain nonlinear systems.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn11.html#Da00,https://doi.org/10.1109/72.883479 +Wenjun Xiong,Saturated Finite Interval Iterative Learning for Tracking of Dynamic Systems With HNN-Structural Output.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn27.html#XiongHY16,https://doi.org/10.1109/TNNLS.2015.2448716 +Hennie Daniels,Monotone and partially monotone neural networks.,2010,21,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn21.html#DanielsV10,https://doi.org/10.1109/TNN.2010.2044803 +X.-W. Yu,"Corrections to ""On the Local Minima Free Condition of the Backpropagation Learning"".",1996,7,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn7.html#YuC96,https://doi.org/10.1109/TNN.1996.478413 +Mark A. Girolami,Mercer kernel-based clustering in feature space.,2002,13,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn13.html#Girolami02,https://doi.org/10.1109/TNN.2002.1000150 +Lipo Wang,A gradual noisy chaotic neural network for solving the broadcast scheduling problem in packet radio networks.,2006,17,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn17.html#WangS06,https://doi.org/10.1109/TNN.2006.875976 +Xiaofu Zhang,Temporally sequenced intelligent block-matching and motion-segmentation using locally coupled networks.,2004,15,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn15.html#ZhangM04,https://doi.org/10.1109/TNN.2004.832817 +Nan Xie,Blind equalization using a predictive radial basis function neural network.,2005,16,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn16.html#XieL05,https://doi.org/10.1109/TNN.2005.845145 +Pierre Baldi,Gradient descent learning algorithm overview: a general dynamical systems perspective.,1995,6,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn6.html#Baldi95,https://doi.org/10.1109/72.363438 +Yue Fu,Online Solution of Two-Player Zero-Sum Games for Continuous-Time Nonlinear Systems With Completely Unknown Dynamics.,2016,27,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn27.html#FuC16,https://doi.org/10.1109/TNNLS.2015.2496299 +Guilherme De A. Barreto,Condition monitoring of 3G cellular networks through competitive neural models.,2005,16,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn16.html#BarretoMSFA05,https://doi.org/10.1109/TNN.2005.853416 +Zhen-Ping Lo,Analysis of the convergence properties of topology preserving neural networks.,1993,4,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn4.html#LoYB93,https://doi.org/10.1109/72.207609 +Fabrizio Costa,Ambiguity resolution analysis in incremental parsing of natural language.,2005,16,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn16.html#CostaFLSS05,https://doi.org/10.1109/TNN.2005.849837 +Marco Saerens,Any reasonable cost function can be used for a posteriori probability approximation.,2002,13,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn13.html#SaerensLD02,https://doi.org/10.1109/TNN.2002.1031952 +Yongqiang Cao,Dynamics of projective adaptive resonance theory model: the foundation of PART algorithm.,2004,15,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn15.html#CaoW04,https://doi.org/10.1109/TNN.2004.824261 +Tommy W. S. Chow,Multilayer SOM With Tree-Structured Data for Efficient Document Retrieval and Plagiarism Detection.,2009,20,IEEE Trans. Neural Networks,9,db/journals/tnn/tnn20.html#ChowR09,https://doi.org/10.1109/TNN.2009.2023394 +Yina Han,Localized Multiple Kernel Learning With Dynamical Clustering and Matrix Regularization.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,2,db/journals/tnn/tnn29.html#HanYYM18,https://doi.org/10.1109/TNNLS.2016.2635151 +Theo Sabisch,Identification of complex shapes using a self organizing neural system.,2000,11,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn11.html#SabischFB00,https://doi.org/10.1109/72.857772 +Jiali Yu,Dynamics Analysis of a Population Decoding Model.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn24.html#YuTL13,https://doi.org/10.1109/TNNLS.2012.2236684 +Giovanni Simone,RBFNN-based hole identification system in conducting plates.,2001,12,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn12.html#SimoneM01,https://doi.org/10.1109/72.963779 +Sarunas Raudys,Portfolio of Automated Trading Systems: Complexity and Learning Set Size Issues.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn24.html#Raudys13,https://doi.org/10.1109/TNNLS.2012.2230405 +Chunyan Xu,An Ordered-Patch-Based Image Classification Approach on the Image Grassmannian Manifold.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn25.html#XuWGCTL14,https://doi.org/10.1109/TNNLS.2013.2280752 +Qi-He Shan,Global Asymptotic Stability and Stabilization of Neural Networks With General Noise.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn29.html#ShanZWZ18,https://doi.org/10.1109/TNNLS.2016.2637567 +Michiel Hermans,Optoelectronic Systems Trained With Backpropagation Through Time.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn26.html#HermansDB15,https://doi.org/10.1109/TNNLS.2014.2344002 +Simone Santini,The self-organizing field [Kohonen maps].,1996,7,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn7.html#Santini96,https://doi.org/10.1109/72.548169 +Yueying Wang,A New Result on H∞ State Estimation of Delayed Static Neural Networks.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,12,db/journals/tnn/tnn28.html#WangXZD17,https://doi.org/10.1109/TNNLS.2016.2598840 +Ping Zhong 0001,Jointly Learning the Hybrid CRF and MLR Model for Simultaneous Denoising and Classification of Hyperspectral Imagery.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,7,db/journals/tnn/tnn25.html#ZhongW14,https://doi.org/10.1109/TNNLS.2013.2293061 +Achilles Theodorakopoulos,A Simplified Adaptive Neural Network Prescribed Performance Controller for Uncertain MIMO Feedback Linearizable Systems.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn26.html#Theodorakopoulos15,https://doi.org/10.1109/TNNLS.2014.2320305 +Alireza Khotanzad,ANNSTLF-a neural-network-based electric load forecasting system.,1997,8,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn8.html#KhotanzadALADM97,https://doi.org/10.1109/72.595881 +Ji He,Modified ART 2A growing network capable of generating a fixed number of nodes.,2004,15,IEEE Trans. Neural Networks,3,db/journals/tnn/tnn15.html#HeTT04,https://doi.org/10.1109/TNN.2004.826220 +Songyan Huang,Complex-Valued Filtering Based on the Minimization of Complex-Error Entropy.,2013,24,IEEE Trans. Neural Netw. Learning Syst.,5,db/journals/tnn/tnn24.html#HuangLL13,https://doi.org/10.1109/TNNLS.2013.2241788 +Jun Li 0010,A Distributed Approach Toward Discriminative Distance Metric Learning.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,9,db/journals/tnn/tnn26.html#0010LRRT15,https://doi.org/10.1109/TNNLS.2014.2377211 +Marc M. Van Hulle,Entropy-based kernel mixture modeling for topographic map formation.,2004,15,IEEE Trans. Neural Networks,4,db/journals/tnn/tnn15.html#Hulle04,https://doi.org/10.1109/TNN.2004.828763 +Wenjie Pei,Multivariate Time-Series Classification Using the Hidden-Unit Logistic Model.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,4,db/journals/tnn/tnn29.html#PeiDTM18,https://doi.org/10.1109/TNNLS.2017.2651018 +Guoshen Yu,Visual Grouping by Neural Oscillator Networks.,2009,20,IEEE Trans. Neural Networks,12,db/journals/tnn/tnn20.html#YuS09,https://doi.org/10.1109/TNN.2009.2031678 +Ziyin Wang,Robustly Fitting and Forecasting Dynamical Data With Electromagnetically Coupled Artificial Neural Network: A Data Compression Method.,2017,28,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn28.html#WangLCW17,https://doi.org/10.1109/TNNLS.2015.2508931 +Zhengqiu Zhang,Novel LMI-Based Condition on Global Asymptotic Stability for a Class of Cohen-Grossberg BAM Networks With Extended Activation Functions.,2014,25,IEEE Trans. Neural Netw. Learning Syst.,6,db/journals/tnn/tnn25.html#ZhangCZ14,https://doi.org/10.1109/TNNLS.2013.2289855 +Dit-Yan Yeung,On reducing learning time in context-dependent mappings.,1993,4,IEEE Trans. Neural Networks,1,db/journals/tnn/tnn4.html#YeungB93,https://doi.org/10.1109/72.182693 +Daniel Sbarbaro,Analysis of Artificial Neural Networks for Pattern-Based Adaptive Control.,2006,17,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn17.html#SbarbaroJ06,https://doi.org/10.1109/TNN.2006.879762 +Michael E. Mavroforakis,A Geometric Nearest Point Algorithm for the Efficient Solution of the SVM Classification Task.,2007,18,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn18.html#MavroforakisST07,https://doi.org/10.1109/TNN.2007.900237 +Bryan W. Stiles,Complete memory structures for approximating nonlinear discrete-time mappings.,1997,8,IEEE Trans. Neural Networks,6,db/journals/tnn/tnn8.html#StilesSG97,https://doi.org/10.1109/72.641463 +Songlin Hu,Stabilization of Neural-Network-Based Control Systems via Event-Triggered Control With Nonperiodic Sampled Data.,2018,29,IEEE Trans. Neural Netw. Learning Syst.,3,db/journals/tnn/tnn29.html#HuYXMY18,https://doi.org/10.1109/TNNLS.2016.2636875 +Wing-Cheong Wong,R-POPTVR: A Novel Reinforcement-Based POPTVR Fuzzy Neural Network for Pattern Classification.,2009,20,IEEE Trans. Neural Networks,11,db/journals/tnn/tnn20.html#WongCQ09,https://doi.org/10.1109/TNN.2009.2029857 +Taek Mu Kwon,Contrast enhancement for backpropagation.,1996,7,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn7.html#KwonC96,https://doi.org/10.1109/72.485685 +Hassan Zargarzadeh,Optimal Control of Nonlinear Continuous-Time Systems in Strict-Feedback Form.,2015,26,IEEE Trans. Neural Netw. Learning Syst.,10,db/journals/tnn/tnn26.html#ZargarzadehDJ15,https://doi.org/10.1109/TNNLS.2015.2441712 +Paul W. Hollis,A neural network learning algorithm tailored for VLSI implementation.,1994,5,IEEE Trans. Neural Networks,5,db/journals/tnn/tnn5.html#HollisP94,https://doi.org/10.1109/72.317729 +Neil E. Cotter,A pulsed neural network capable of universal approximation.,1992,3,IEEE Trans. Neural Networks,2,db/journals/tnn/tnn3.html#CotterM92,https://doi.org/10.1109/72.125872 +Christine Satchell,Ethnomethodology at Work.,2011,1,IJPOP,2,db/journals/ijpop/ijpop1.html#Satchell11,https://doi.org/10.4018/ijpop.2011070104 +Renate Motschnig,Inclusion of Users with Special Needs in the Human-Centered Design of a Web-Portal.,2017,6,IJPOP,1,db/journals/ijpop/ijpop6.html#MotschnigH17,https://doi.org/10.4018/IJPOP.2017010101 +Sarah E. Schultz,Modeling the Interplay Between Knowledge and Affective Engagement in Students.,2014,3,IJPOP,2,db/journals/ijpop/ijpop3.html#SchultzA14,https://doi.org/10.4018/IJPOP.2014070103 +Konrad Wieland,Towards an Understanding of Requirements for Model Versioning Support.,2011,1,IJPOP,2,db/journals/ijpop/ijpop1.html#WielandFKSW11,https://doi.org/10.4018/ijpop.2011070101 +Connor Graham,Probes as a People-Oriented Method.,2011,1,IJPOP,1,db/journals/ijpop/ijpop1.html#GrahamR11,https://doi.org/10.4018/ijpop.2011010102 +Ma. Mercedes T. Rodrigo,Understanding Wheel Spinning in the Context of Affective Factors.,2014,3,IJPOP,2,db/journals/ijpop/ijpop3.html#RodrigoB14,https://doi.org/10.4018/IJPOP.2014070104 +Rodney Arambewela,Use of ICT and Student Learning in Higher Education: Challenges and Responses.,2012,2,IJPOP,2,db/journals/ijpop/ijpop2.html#ArambewelaKK12,https://doi.org/10.4018/ijpop.2012070103 +Steve Goschnick,App Review: ScratchJr (Scratch Junior).,2015,4,IJPOP,1,db/journals/ijpop/ijpop4.html#Goschnick15,https://doi.org/10.4018/IJPOP.2015010104 +Andy Luse,High School Introductory Programming on Raspberry Pi Made from Scratch.,2017,6,IJPOP,2,db/journals/ijpop/ijpop6.html#LuseH17,https://doi.org/10.4018/IJPOP.2017070103 +Chun Kwong Han,Knowledge Super Corridors in Southeast Asia: Seeing and Doing from a Critical Lens.,2012,2,IJPOP,2,db/journals/ijpop/ijpop2.html#Han12,https://doi.org/10.4018/ijpop.2012070101 +Alyson Gamble,Wolfram Language for Teaching Computational Thinking to K-12 Learners.,2017,6,IJPOP,1,db/journals/ijpop/ijpop6.html#Gamble17,https://doi.org/10.4018/IJPOP.2017010103 +Xiao Liu,Natural Shell: An Assistant for End-User Scripting.,2016,5,IJPOP,1,db/journals/ijpop/ijpop5.html#LiuJWW16,https://doi.org/10.4018/IJPOP.2016010101 +Leonie Rowan,A Meta-Problem Behind the Diverse Perspectives on the Underrepresentation of Girls in Information and Computing Technology Subjects.,2012,2,IJPOP,2,db/journals/ijpop/ijpop2.html#Rowan12,https://doi.org/10.4018/ijpop.2012070102 +Robert Costello,End User Perspective of e-Learning using LMS-Like Systems.,2017,6,IJPOP,1,db/journals/ijpop/ijpop6.html#Costello17,https://doi.org/10.4018/IJPOP.2017010102 +Jeni Paay,The Benefit of Ambiguity in Understanding Goals in Requirements Modelling.,2011,1,IJPOP,2,db/journals/ijpop/ijpop1.html#PaayPSVH11,https://doi.org/10.4018/ijpop.2011070102 +Jiming Liu 0001,People-Oriented Web: Vision and Themes.,2011,1,IJPOP,1,db/journals/ijpop/ijpop1.html#Liu11,https://doi.org/10.4018/ijpop.2011010103 +Amanda Banks Gatenby,Developing Critical Understanding of Computing With the Raspberry Pi.,2017,6,IJPOP,2,db/journals/ijpop/ijpop6.html#Gatenby17,https://doi.org/10.4018/IJPOP.2017070101 +Alex W. Stedmon,Developing Speech Input for Virtual Applications: A Human Factors Perspective.,2011,1,IJPOP,2,db/journals/ijpop/ijpop1.html#StedmonHK11,https://doi.org/10.4018/ijpop.2011070103 +Mengmeng Zhao,Local Area Network (LAN)-Based Digital Signage Solution Using Raspberry Pi.,2017,6,IJPOP,2,db/journals/ijpop/ijpop6.html#Zhao17,https://doi.org/10.4018/IJPOP.2017070102 +Shouki A. Ebad,An Empirical Comparison of Java and C# Programs in Following Naming Conventions.,2016,5,IJPOP,1,db/journals/ijpop/ijpop5.html#EbadM16,https://doi.org/10.4018/IJPOP.2016010103 +Steve Goschnick,Modelling Human Activity in People-Oriented Programming with Metamodels.,2015,4,IJPOP,2,db/journals/ijpop/ijpop4.html#GoschnickSS15,https://doi.org/10.4018/IJPOP.2015070101 +James Marshall,Agent-Based Modelling of Emotional Goals in Digital Media Design Projects.,2014,3,IJPOP,1,db/journals/ijpop/ijpop3.html#Marshall14,https://doi.org/10.4018/ijpop.2014010103 +Chun Kwong Han,Softly Speaking: National Transformation in a Developing Country.,2012,2,IJPOP,2,db/journals/ijpop/ijpop2.html#Han12a,https://doi.org/10.4018/ijpop.2012070104 +Maheswaree Kissoon Curumsing,Viewpoint Modelling with Emotions: A Case Study.,2015,4,IJPOP,2,db/journals/ijpop/ijpop4.html#CurumsingLMSV15,https://doi.org/10.4018/IJPOP.2015070102 +Steve Goschnick,Evolving a Social Networking Platform into a Smart Personalised Learning Environment (PLE) or the Other Way Around: Your Choice?,2014,3,IJPOP,2,db/journals/ijpop/ijpop3.html#Goschnick14,https://doi.org/10.4018/IJPOP.2014070101 +Christopher Scaffidi,Beyond Solo End-User Programming: A Scientific Basis for Supporting Reuse.,2012,2,IJPOP,1,db/journals/ijpop/ijpop2.html#Scaffidi12,https://doi.org/10.4018/ijpop.2012010101 +Judith Good,Learners at the Wheel: Novice Programming Environments Come of Age.,2011,1,IJPOP,1,db/journals/ijpop/ijpop1.html#Good11,https://doi.org/10.4018/ijpop.2011010101 +Georg Weichhart,Traceable Pedagogical Design Rationales for Personalized Learning Technologies: An Interoperable System-to-System Approach.,2014,3,IJPOP,2,db/journals/ijpop/ijpop3.html#WeichhartS14,https://doi.org/10.4018/IJPOP.2014070102 +Fredy Cuenca,Hasselt: Rapid Prototyping of Multimodal Interactions with Composite Event-Driven Programming.,2016,5,IJPOP,1,db/journals/ijpop/ijpop5.html#CuencaBLC16,https://doi.org/10.4018/IJPOP.2016010102 +Maheswaree Kissoon Curumsing,Designing an Evaluation Tool to Measure Emotional Goals.,2014,3,IJPOP,1,db/journals/ijpop/ijpop3.html#CurumsingPV14,https://doi.org/10.4018/ijpop.2014010102 +Antonio Rizzo,UDOO App Inventor: Introducing Novices to the Internet of Things.,2015,4,IJPOP,1,db/journals/ijpop/ijpop4.html#RizzoMEB15,https://doi.org/10.4018/IJPOP.2015010103 +Steve Goschnick,Automating the TANDEM Design Method in End-User Programming Environments.,2012,2,IJPOP,1,db/journals/ijpop/ijpop2.html#Goschnick12,https://doi.org/10.4018/ijpop.2012010102 +Jaime Gutierrez 0001,Recovering zeroes of hyperelliptic curves over finite fields.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#000115,http://doi.acm.org/10.1145/2815111.2815140 +Konstantin Ziegler,Abstracts of recent doctoral dissertations in computer algebra.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#Ziegler15,http://doi.acm.org/10.1145/2815111.2815165 +Mark J. Encarnación,ISSAC '97 Poster Abstracts.,1997,31,ACM SIGSAM Bulletin,3,db/journals/cca/cca31.html#Encarnacion97,http://doi.acm.org/10.1145/271130.570098 +Arnold Knopfmacher,Distinct degree factorizations for polynomials over a finite field.,1997,31,ACM SIGSAM Bulletin,3,db/journals/cca/cca31.html#Knopfmacher97,http://doi.acm.org/10.1145/271130.271193 +Franz Winkler,SYMSAC'86 Abstracts.,1986,20,ACM SIGSAM Bulletin,4,db/journals/cca/cca20.html#Winkler86a,http://doi.acm.org/10.1145/14956.1095555 +E. García Barroso,Polar invariants and topology.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#Barroso99,http://doi.acm.org/10.1145/347127.347217 +D. Wang,A program for computing the Liapunov functions and Liapunov constants in scratchpad II.,1989,23,ACM SIGSAM Bulletin,4,db/journals/cca/cca23.html#Wang89,http://doi.acm.org/10.1145/70927.70930 +Iyad Ajwa,East coast computer algebra day 2005: poster abstracts.,2005,39,ACM SIGSAM Bulletin,1,db/journals/cca/cca39.html#Ajwa05,http://doi.acm.org/10.1145/1080368.1080372 +Wei Li,Nonexistence of degree bounds of various bases for ideals of polynomials over the integers.,1992,26,ACM SIGSAM Bulletin,1,db/journals/cca/cca26.html#Li92,http://doi.acm.org/10.1145/134342.134344 +Stephen M. Watt,Examples of MathML.,1999,33,ACM SIGSAM Bulletin,1,db/journals/cca/cca33.html#WattL99,http://doi.acm.org/10.1145/329984.329985 +Bruce W. Char,Developing the Soliton Explorer: A problem solving environment for soliton surface investigation.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#CharHHPR99,http://doi.acm.org/10.1145/347127.347409 +Scott McCallum,Factors of iterated resultants and discriminants.,1997,31,ACM SIGSAM Bulletin,3,db/journals/cca/cca31.html#McCallum97,http://doi.acm.org/10.1145/271130.271186 +Wolfgang Trinks,Comments from number theory on computer algebra.,1984,18,ACM SIGSAM Bulletin,2,db/journals/cca/cca18.html#Trinks84,http://doi.acm.org/10.1145/1089369.1089379 +Howard Cheng,Space-efficient evaluation of hypergeometric series.,2005,39,ACM SIGSAM Bulletin,2,db/journals/cca/cca39.html#ChengGKZ05,http://doi.acm.org/10.1145/1101884.1101886 +Michael McGettrick,Online Gröbner Basis [OGB].,2004,38,ACM SIGSAM Bulletin,1,db/journals/cca/cca38.html#McGettrick04,http://doi.acm.org/10.1145/980175.980183 +Paul S. Wang,Abstracts.,1979,13,ACM SIGSAM Bulletin,1,db/journals/cca/cca13.html#Wang79,http://doi.acm.org/10.1145/1088282.1088283 +Tateaki Sasaki,An approach to singularity from the extended Hensel construction.,2005,39,ACM SIGSAM Bulletin,3,db/journals/cca/cca39.html#SasakiIK05,http://doi.acm.org/10.1145/1113439.1113454 +Tamás Legendi,Cellular hardware and symbolic computation.,1984,18,ACM SIGSAM Bulletin,2,db/journals/cca/cca18.html#Legendi84,http://doi.acm.org/10.1145/1089369.1089386 +Yasushi Umeda,Computing determinants of rational functions.,2006,40,ACM Comm. Computer Algebra,1,db/journals/cca/cca40.html#UmedaS06,http://doi.acm.org/10.1145/1151446.1151448 +J. Smit,NETFORM and code optimizer manual.,1981,15,ACM SIGSAM Bulletin,4,db/journals/cca/cca15.html#SmitHH81,http://doi.acm.org/10.1145/1089270.1089275 +Carlos E. Arreche,Computing differential Galois groups of parameterized second-order linear differential equations.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Arreche15,http://doi.acm.org/10.1145/2768577.2768612 +Daniel Lazard,Problem 7 and systems of algebraic equations.,1980,14,ACM SIGSAM Bulletin,2,db/journals/cca/cca14.html#Lazard80,http://doi.acm.org/10.1145/1089220.1089224 +Gene Cooperman,The TOP-C parallel model and symbolic algebra.,2004,38,ACM SIGSAM Bulletin,1,db/journals/cca/cca38.html#Cooperman04,http://doi.acm.org/10.1145/980175.980181 +Robert M. Corless,Message from the Editor.,1996,30,ACM SIGSAM Bulletin,1,db/journals/cca/cca30.html#Corless96,http://doi.acm.org/10.1145/231191.570104 +David Jensen,Brill-Noether theory for metric graphs.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#Jensen15,http://doi.acm.org/10.1145/2815111.2815151 +Jacques Calmet,Computer recognition of divergences in Feynman diagrams.,1974,8,ACM SIGSAM Bulletin,3,db/journals/cca/cca8.html#Calmet74,http://doi.acm.org/10.1145/1086837.1086849 +Majid Gazor,Z2-equivariant standard bases for submodules associated with Z2-equivariant singularities.,2016,50,ACM Comm. Computer Algebra,4,db/journals/cca/cca50.html#GazorK16,http://doi.acm.org/10.1145/3055282.3055293 +Malcolm A. H. MacCallum,Comments on the performance of algebra systems in general relativity and a recent paper by Nielsen and Pedersen.,1989,23,ACM SIGSAM Bulletin,2,db/journals/cca/cca23.html#MacCallum89,http://doi.acm.org/10.1145/70936.70939 +Emanuel Sperner,On a combinatorial theorem of Macaulay and its applications to the theory of polynomial ideals.,2008,42,ACM Comm. Computer Algebra,4,db/journals/cca/cca42.html#Sperner08,http://doi.acm.org/10.1145/1504341.1504343 +Stephen M. Watt,Algebraic generalization.,2005,39,ACM SIGSAM Bulletin,3,db/journals/cca/cca39.html#Watt05,http://doi.acm.org/10.1145/1113439.1113452 +Arthur C. Norman,Solutions to problem 8.,1975,9,ACM SIGSAM Bulletin,1,db/journals/cca/cca9.html#Norman75,http://doi.acm.org/10.1145/1088295.1088296 +Veronika Pillwein,An efficient procedure deciding positivity for a class of holonomic functions.,2015,49,ACM Comm. Computer Algebra,3,db/journals/cca/cca49.html#PillweinS15,http://doi.acm.org/10.1145/2850449.2850458 +Heinz Lüneburg,Write a book!,1984,18,ACM SIGSAM Bulletin,2,db/journals/cca/cca18.html#Luneburg84,http://doi.acm.org/10.1145/1089369.1089387 +François Lemaire,The RegularChains library in MAPLE.,2005,39,ACM SIGSAM Bulletin,3,db/journals/cca/cca39.html#LemaireMX05,http://doi.acm.org/10.1145/1113439.1113456 +J. A. van Hulzen,A solution to SIGSAM problem #8.,1976,10,ACM SIGSAM Bulletin,2,db/journals/cca/cca10.html#Hulzen76,http://doi.acm.org/10.1145/1093397.1093402 +,Abstracts of recent doctoral dissertations in computer algebra.,2017,51,ACM Comm. Computer Algebra,2,db/journals/cca/cca51.html#X17,http://doi.acm.org/10.1145/3151131.3151135 +Jacques Calmet,A knowledge-based system for computer algebra.,1987,21,ACM SIGSAM Bulletin,1,db/journals/cca/cca21.html#CalmetL87,http://doi.acm.org/10.1145/24559.24560 +Guillaume Chèze,Absolute factoring of bidegree bivariate polynomials.,2008,42,ACM Comm. Computer Algebra,3,db/journals/cca/cca42.html#ChezeEGW08,http://doi.acm.org/10.1145/1504347.1504362 +Richard J. Fateman,A lisp-language Mathematica-to-lisp translator.,1990,24,ACM SIGSAM Bulletin,2,db/journals/cca/cca24.html#Fateman90,http://doi.acm.org/10.1145/1089419.1089421 +Marshall Law,Computing characteristic polynomials of matrices of structured polynomials.,2016,50,ACM Comm. Computer Algebra,4,db/journals/cca/cca50.html#LawM16,http://doi.acm.org/10.1145/3055282.3055297 +Mark Heiligman,On computing the Weierstrass points of a plane algebraic curve.,1998,32,ACM SIGSAM Bulletin,2,db/journals/cca/cca32.html#HeiligmanV98,http://doi.acm.org/10.1145/297049.570089 +Diane M. K. Willcock,Tlisp: a concurrent Lisp for the transputers.,1992,26,ACM SIGSAM Bulletin,4,db/journals/cca/cca26.html#Willcock92,http://doi.acm.org/10.1145/147105.147111 +Hoon Hong,Programming in PACLIB.,1992,26,ACM SIGSAM Bulletin,4,db/journals/cca/cca26.html#HongS92,http://doi.acm.org/10.1145/147105.147108 +Tateaki Sasaki,Polynomial remainder sequence and approximate GCD.,1997,31,ACM SIGSAM Bulletin,3,db/journals/cca/cca31.html#SasakiS97,http://doi.acm.org/10.1145/271130.271131 +Gene Cooperman,Overcoming the memory wall in symbolic algebra: a faster permutation multiplication.,2002,36,ACM SIGSAM Bulletin,4,db/journals/cca/cca36.html#CoopermanM02,http://doi.acm.org/10.1145/641239.641241 +Richard J. Fateman,Symbolic execution and NaNs: diagnostic tools for tracking scientific computation.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#Fateman99,http://doi.acm.org/10.1145/347127.347439 +Knut Bahr,Tuning an algebraic manipulation system through measurements.,1974,8,ACM SIGSAM Bulletin,3,db/journals/cca/cca8.html#BahrS74,http://doi.acm.org/10.1145/1086837.1086840 +Erika ábrahám,Satisfiability checking and symbolic computation.,2016,50,ACM Comm. Computer Algebra,4,db/journals/cca/cca50.html#AbrahamA0BBBCDE16,http://doi.acm.org/10.1145/3055282.3055285 +A. I. Shirshov,Certain algorithmic problems for Lie algebras.,1999,33,ACM SIGSAM Bulletin,2,db/journals/cca/cca33.html#Shirshov99,http://doi.acm.org/10.1145/334714.334715 +Austin Lobo,Formal Review of Articles in the BULLETIN.,1996,30,ACM SIGSAM Bulletin,3,db/journals/cca/cca30.html#Lobo96,http://doi.acm.org/10.1145/240065.570107 +,EUROSAM'79 conference proceedings.,1979,13,ACM SIGSAM Bulletin,4,db/journals/cca/cca13.html#X79,http://doi.acm.org/10.1145/1089176.1089177 +Richard J. Fateman,Partitioning of algebraic subexpressions in computer algebra systems: an alternative to matching with an application to symbolic integration.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#Fateman15,http://doi.acm.org/10.1145/2815111.2815112 +Cassidy Gentle,Computing greatest common divisors of polynomial matrices.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#Gentle99,http://doi.acm.org/10.1145/347127.347445 +Jaap Smit,Introduction to NETFORM.,1974,8,ACM SIGSAM Bulletin,2,db/journals/cca/cca8.html#Smit74,http://doi.acm.org/10.1145/1086830.1086835 +Olaf Bachmann,A demonstration of exchanging mathematical expressions using MP.,1997,31,ACM SIGSAM Bulletin,3,db/journals/cca/cca31.html#BachmannG97,http://doi.acm.org/10.1145/271130.271203 +James H. Griesmer,A FORMAT statement in SCRATCHPAD.,1975,9,ACM SIGSAM Bulletin,3,db/journals/cca/cca9.html#GriesmerJY75a,http://doi.acm.org/10.1145/1088309.1088317 +Franz Winkler,Report on DISCO '90.,1990,24,ACM SIGSAM Bulletin,3,db/journals/cca/cca24.html#Winkler90,http://doi.acm.org/10.1145/101104.1095229 +Christoph Koutschan,Multi-parameter laser modes in paraxial optics.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#KoutschanSS15,http://doi.acm.org/10.1145/2768577.2768646 +Wolfgang Küchlin,Some reduction strategies for algebraic term rewriting.,1982,16,ACM SIGSAM Bulletin,4,db/journals/cca/cca16.html#Kuchlin82,http://doi.acm.org/10.1145/1089310.1089315 +J. Denbigh Starkey,A solution to Kiang's problem #6.,1974,8,ACM SIGSAM Bulletin,1,db/journals/cca/cca8.html#Starkey74,http://doi.acm.org/10.1145/1086823.1086824 +Billy G. Claybrook,Factorization of Multivariate Polynomials over the integers.,1976,10,ACM SIGSAM Bulletin,1,db/journals/cca/cca10.html#Claybrook76,http://doi.acm.org/10.1145/1093390.1093394 +Zhendong Wan,ECCAD 2006 poster abstracts.,2006,40,ACM Comm. Computer Algebra,1,db/journals/cca/cca40.html#Wan06,http://doi.acm.org/10.1145/1151446.1151450 +Kosaku Nagasaka,Towards more accurate separation bounds of empirical polynomials.,2004,38,ACM SIGSAM Bulletin,4,db/journals/cca/cca38.html#Nagasaka04,http://doi.acm.org/10.1145/1060328.1060330 +Parisa Alvandi,Computing limits with the regularchains and powerseries libraries: from rational functions to Zariski closure.,2016,50,ACM Comm. Computer Algebra,3,db/journals/cca/cca50.html#AlvandiKM16,http://doi.acm.org/10.1145/3015306.3015311 +Richard D. Jenks,The SCRATCHPAD language.,1974,8,ACM SIGSAM Bulletin,2,db/journals/cca/cca8.html#Jenks74,http://doi.acm.org/10.1145/1086830.1086834 +Emil J. Volcheck,Technical report column.,1997,31,ACM SIGSAM Bulletin,1,db/journals/cca/cca31.html#Volcheck97,http://doi.acm.org/10.1145/251586.251591 +Julio Rubio,Abstracts of the Seventh Spanish Meeting on Computer Algebra and Applications: EACA-2001.,2001,35,ACM SIGSAM Bulletin,4,db/journals/cca/cca35.html#Rubio01,http://doi.acm.org/10.1145/509520.509524 +Matu-Tarow Noda,Abstracts of Japanese Computer Algebra Meeting in Kyoto.,1997,31,ACM SIGSAM Bulletin,3,db/journals/cca/cca31.html#Noda97,http://doi.acm.org/10.1145/271130.570099 +Ignacio Ojeda Martínez de Castilla,Index of nilpotency of binomial ideals.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#CastillaS99,http://doi.acm.org/10.1145/347127.360386 +Franz Winkler,Abstracts of papers that appeared in the Journal of Symbolic Computation.,1987,21,ACM SIGSAM Bulletin,1,db/journals/cca/cca21.html#Winkler87,http://doi.acm.org/10.1145/24559.1095561 +Omar León Sánchez,An upper bound for the order of a differential algebraic variety.,2017,51,ACM Comm. Computer Algebra,1,db/journals/cca/cca51.html#Sanchez17,http://doi.acm.org/10.1145/3096730.3096736 +Lars Kastner,Toric geometry in polymake.,2017,51,ACM Comm. Computer Algebra,3,db/journals/cca/cca51.html#KastnerLPW17,http://doi.acm.org/10.1145/3177795.3177800 +Shuichi Moritsugu,A note on the preconditioning for factorization of homogeneous polynomials.,1989,23,ACM SIGSAM Bulletin,1,db/journals/cca/cca23.html#MoritsuguG89,http://doi.acm.org/10.1145/66062.66063 +Gora Adj,Computing discrete logarithms using Joux's algorithm.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#AdjMOR15,http://doi.acm.org/10.1145/2815111.2815154 +Parisa Alvandi,Real limit points of quasi-componenets of regular chains.,2016,50,ACM Comm. Computer Algebra,4,db/journals/cca/cca50.html#AlvandiM16,http://doi.acm.org/10.1145/3055282.3055286 +Fei Wang,Finding maximum rank moment matrices by facial reduction on primal form and Douglas-Rachford iteration.,2017,51,ACM Comm. Computer Algebra,1,db/journals/cca/cca51.html#WangRW17,http://doi.acm.org/10.1145/3096730.3096740 +Pedro A. García-Sánchez,Gröbner and involutive bases for zero-dimensional ideals.,1995,29,ACM SIGSAM Bulletin,2,db/journals/cca/cca29.html#Garcia-Sanchez95,http://doi.acm.org/10.1145/202489.202492 +Bernhard Wall,On the computation of syzygies.,1989,23,ACM SIGSAM Bulletin,4,db/journals/cca/cca23.html#Wall89,http://doi.acm.org/10.1145/70927.70928 +David Joyner,Conjectural permutation decoding of some AG codes.,2005,39,ACM SIGSAM Bulletin,1,db/journals/cca/cca39.html#Joyner05,http://doi.acm.org/10.1145/1080368.1080374 +Albrecht Beutelspacher,Symbolic incidence geometry proposal for doing geometry with a computer (Part 1 of 2).,1993,27,ACM SIGSAM Bulletin,2,db/journals/cca/cca27.html#BeutelspacherU93,http://doi.acm.org/10.1145/165474.165480 +Michio Sakakihara,Symbolic Newton method for two-parameter eigenvalue problem.,1997,31,ACM SIGSAM Bulletin,3,db/journals/cca/cca31.html#SakakiharaN97,http://doi.acm.org/10.1145/271130.271191 +Zdenêk Kalina,Running REDUCE and lisp/360 interactively under a time sharing option.,1982,16,ACM SIGSAM Bulletin,2,db/journals/cca/cca16.html#Kalina82,http://doi.acm.org/10.1145/1089292.1089294 +Steven T. Dougherty,Codes over rings of order 16.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#DoughertySS15,http://doi.acm.org/10.1145/2768577.2768587 +Richard P. Brent,Analysis of the binary Euclidean algorithm.,1976,10,ACM SIGSAM Bulletin,2,db/journals/cca/cca10.html#Brent76,http://doi.acm.org/10.1145/1093397.1093399 +B. F. Caviness,A note on algebraic independence of logarithmic and exponential constants.,1978,12,ACM SIGSAM Bulletin,2,db/journals/cca/cca12.html#CavinessP78,http://doi.acm.org/10.1145/1088261.1088265 +H. Strubbe,Presentation of the SCHOONSCHIP system.,1974,8,ACM SIGSAM Bulletin,3,db/journals/cca/cca8.html#Strubbe74,http://doi.acm.org/10.1145/1086837.1086845 +James H. Griesmer,Symbolic mathematical computation: a survey.,1976,10,ACM SIGSAM Bulletin,2,db/journals/cca/cca10.html#Griesmer76,http://doi.acm.org/10.1145/1093397.1093405 +Erwin Engeler,Goals and design considerations for a mathematical laboratory.,1987,21,ACM SIGSAM Bulletin,3,db/journals/cca/cca21.html#Engeler87,http://doi.acm.org/10.1145/29309.29310 +Robert H. Lewis,Using Fermat to solve large polynomial and matrix problems.,2004,38,ACM SIGSAM Bulletin,1,db/journals/cca/cca38.html#Lewis04,http://doi.acm.org/10.1145/980175.980188 +Mike Dewar,OpenMath: an overview.,2000,34,ACM SIGSAM Bulletin,2,db/journals/cca/cca34.html#Dewar00,http://doi.acm.org/10.1145/362001.362008 +James H. Griesmer,A solution to problem #4: the lie transform.,1974,8,ACM SIGSAM Bulletin,4,db/journals/cca/cca8.html#GriesmerJ74,http://doi.acm.org/10.1145/1088288.1088290 +Jacques Calmet,Synthesizing recurrence relations I: analysis of the problems.,1983,17,ACM SIGSAM Bulletin,2,db/journals/cca/cca17.html#CalmetC83,http://doi.acm.org/10.1145/1089330.1089334 +Claudia Fassino,A robust monomial quotient basis for approximate points.,2006,40,ACM Comm. Computer Algebra,2,db/journals/cca/cca40.html#Fassino06,http://doi.acm.org/10.1145/1182553.1182563 +Robert M. Corless,The Turing factorization of a rectangular matrix.,1997,31,ACM SIGSAM Bulletin,3,db/journals/cca/cca31.html#CorlessJ97,http://doi.acm.org/10.1145/271130.271135 +André Heck,Report on the HISC workshop.,1994,28,ACM SIGSAM Bulletin,1,db/journals/cca/cca28.html#Heck94,http://doi.acm.org/10.1145/182130.182131 +Fritz Schwarz,Monomial orderings and Gröbner bases.,1991,25,ACM SIGSAM Bulletin,1,db/journals/cca/cca25.html#Schwarz91,http://doi.acm.org/10.1145/122525.122526 +David D. Shochat,Experience with the muSIMP/muMATH-80 symbolic mathematics system.,1982,16,ACM SIGSAM Bulletin,3,db/journals/cca/cca16.html#Shochat82,http://doi.acm.org/10.1145/1089302.1089306 +Maria Teresa Iglesias,Computing epistasis through Walsh transforms.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#IglesiasVV99,http://doi.acm.org/10.1145/347127.347243 +Gérard P. Huet,The future of symbolic computation: mathematics versus languages.,1984,18,ACM SIGSAM Bulletin,2,db/journals/cca/cca18.html#Huet84,http://doi.acm.org/10.1145/1089369.1089370 +,Symbolic computation research in Italy.,1991,25,ACM SIGSAM Bulletin,3,db/journals/cca/cca25.html#X91,http://doi.acm.org/10.1145/122514.122519 +Arthur D. Hall III,ALTRAN solution to problem #8.,1975,9,ACM SIGSAM Bulletin,4,db/journals/cca/cca9.html#Hall75,http://doi.acm.org/10.1145/1088322.1088328 +Richard D. Jenks,On the design of a mode-based symbolic system.,1977,11,ACM SIGSAM Bulletin,1,db/journals/cca/cca11.html#Jenks77,http://doi.acm.org/10.1145/1088233.1088237 +Stephen M. Watt,Message from the Chair.,1996,30,ACM SIGSAM Bulletin,1,db/journals/cca/cca30.html#Watt96,http://doi.acm.org/10.1145/231191.570103 +John Abbott,CoCoA-5.2.2 and CoCoALib.,2017,51,ACM Comm. Computer Algebra,3,db/journals/cca/cca51.html#AbbottB17,http://doi.acm.org/10.1145/3177795.3177801 +George Labahn,Dynamical systems and scaling invariants.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Labahn15,http://doi.acm.org/10.1145/2768577.2768621 +Fritz Schwarz,Decomposing and solving quasilinear second-order differential equations.,2016,50,ACM Comm. Computer Algebra,3,db/journals/cca/cca50.html#Schwarz16,http://doi.acm.org/10.1145/3015306.3015307 +Ben J. A. Hulshof,Some reduce facilities for pretty printing subscripts and formal derivatives.,1983,17,ACM SIGSAM Bulletin,1,db/journals/cca/cca17.html#HulshofH83,http://doi.acm.org/10.1145/1089320.1089323 +J. Rafael Sendra,Optimal reparameterization of polynomial algebraic curves.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#SendraV99,http://doi.acm.org/10.1145/347127.347322 +Alexander Levin,Method of generalized characteristic sets and multivariate dimension polynomials of differential field extensions with a group action.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Levin15a,http://doi.acm.org/10.1145/2768577.2768647 +Eberhard Schrüfer,An implementation of the exterior calculus in REDUCE: a status report.,1982,16,ACM SIGSAM Bulletin,4,db/journals/cca/cca16.html#Schrufer82,http://doi.acm.org/10.1145/1089310.1089317 +Lim Yohanes Stefanus,De Boor-Fix dual functionals for transformation from polynomial basis to convolution basis.,2008,42,ACM Comm. Computer Algebra,3,db/journals/cca/cca42.html#Stefanus08,http://doi.acm.org/10.1145/1504347.1504360 +Attilio Colagrossi,Computing real zeros of polynomials with parametric coefficients.,1983,17,ACM SIGSAM Bulletin,1,db/journals/cca/cca17.html#ColagrossiM83,http://doi.acm.org/10.1145/1089320.1089322 +Aude Maignan,Real solving of ill-conditioned sine-polynomials equations.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#Maignan99,http://doi.acm.org/10.1145/347127.347263 +Antonio Montes,Basic algorithms for specialization in Gröbner bases.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#Montes99,http://doi.acm.org/10.1145/347127.347311 +Amy Ksir,Automorphisms of tropical curves and Berkovich analytic curves and their skeletons.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#Ksir15,http://doi.acm.org/10.1145/2815111.2815152 +Eamonn A. O'Brien,Providing electronic access to group descriptions.,1991,25,ACM SIGSAM Bulletin,1,db/journals/cca/cca25.html#OBrien91,http://doi.acm.org/10.1145/122525.122532 +Franz Winkler,Abstracts: Sixth RIMS Conference on Formula Manipulation and its Application to Mathematical Study.,1987,21,ACM SIGSAM Bulletin,2,db/journals/cca/cca21.html#Winkler87c,http://doi.acm.org/10.1145/24554.1095564 +óscar García-Morchón,HIMMO: a collusion-resistant identity-based scheme for symmetric key generation.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Garcia-MorchonR15,http://doi.acm.org/10.1145/2768577.2768601 +B. F. Caviness,More on computing roots of integers.,1975,9,ACM SIGSAM Bulletin,3,db/journals/cca/cca9.html#Caviness75,http://doi.acm.org/10.1145/1088309.1088315 +Felice Manganiello,Network coding via skew polynomials.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Manganiello15,http://doi.acm.org/10.1145/2768577.2768588 +Dongming Wang,A toolkit for manipulating indefinite summations with application to neural networks.,1991,25,ACM SIGSAM Bulletin,3,db/journals/cca/cca25.html#Wang91,http://doi.acm.org/10.1145/122514.122517 +Clemens G. Raab,Rewrite rules for nested integrals.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Raab15,http://doi.acm.org/10.1145/2768577.2768650 +Yosuke Sato,Parallel computation of boolean gröbner bases.,2000,34,ACM SIGSAM Bulletin,1,db/journals/cca/cca34.html#Sato00,http://doi.acm.org/10.1145/373500.373509 +Doron Zeilberger,A maple program for proving hypergeometric identities.,1991,25,ACM SIGSAM Bulletin,3,db/journals/cca/cca25.html#Zeilberger91,http://doi.acm.org/10.1145/122514.122515 +Alexander Levin,Generalized Gröbner bases and dimension polynomials of modules over some finitely generated noncommutative algebras.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Levin15,http://doi.acm.org/10.1145/2768577.2768625 +Timothy F. Havel,Proposal for a geometric algebra software package.,1989,23,ACM SIGSAM Bulletin,1,db/journals/cca/cca23.html#HavelSW89,http://doi.acm.org/10.1145/66062.66064 +James H. Davenport,On the parallel Risch algorithm (III): use of tangents.,1982,16,ACM SIGSAM Bulletin,3,db/journals/cca/cca16.html#Davenport82a,http://doi.acm.org/10.1145/1089302.1089303 +Masaaki Kanno,Solution of the algebraic riccati equation using the sum of roots.,2008,42,ACM Comm. Computer Algebra,3,db/journals/cca/cca42.html#KannoYA08,http://doi.acm.org/10.1145/1504347.1504359 +Werner Antweiler,A TEX-REDUCED-Interface.,1989,23,ACM SIGSAM Bulletin,2,db/journals/cca/cca23.html#AntweilerSW89,http://doi.acm.org/10.1145/70936.70940 +Greg Butler,An analysis of Atkinson's algorithm.,1992,26,ACM SIGSAM Bulletin,2,db/journals/cca/cca26.html#Butler92,http://doi.acm.org/10.1145/130933.130935 +Takahiro Sado,Pseudo-parallel execution of modular computation.,1996,30,ACM SIGSAM Bulletin,1,db/journals/cca/cca30.html#SadoHS96,http://doi.acm.org/10.1145/231191.231192 +Paul S. Wang,Abstracts.,1978,12,ACM SIGSAM Bulletin,2,db/journals/cca/cca12.html#Wang78b,http://doi.acm.org/10.1145/1088261.1088264 +Stéphane Launois,Endomorphisms of quantum generalized Weyl algebras.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Launois15,http://doi.acm.org/10.1145/2768577.2768639 +Daiju Inaba,Visualization of extended Hensel factors.,2006,40,ACM Comm. Computer Algebra,2,db/journals/cca/cca40.html#InabaOS06,http://doi.acm.org/10.1145/1182553.1182559 +Stanly Steinberg,Mathematics and symbol manipulation.,1982,16,ACM SIGSAM Bulletin,3,db/journals/cca/cca16.html#Steinberg82,http://doi.acm.org/10.1145/1089302.1089305 +Eunice Y. S. Chan,Fibonacci-mandelbrot polynomials and matrices.,2016,50,ACM Comm. Computer Algebra,4,db/journals/cca/cca50.html#ChanC16,http://doi.acm.org/10.1145/3055282.3055288 +,Chairman's column.,1983,17,ACM SIGSAM Bulletin,2,db/journals/cca/cca17.html#X83,http://doi.acm.org/10.1145/1089330.1089331 +Vladimir P. Gerdt,Minimal involutive bases.,1997,31,ACM SIGSAM Bulletin,3,db/journals/cca/cca31.html#GerdtB97,http://doi.acm.org/10.1145/271130.271198 +Oleg Golubitsky,Construction of rankings on partial derivatives.,2006,40,ACM Comm. Computer Algebra,2,db/journals/cca/cca40.html#Golubitsky06,http://doi.acm.org/10.1145/1182553.1182557 +Robert M. Corless,Graphing elementary Riemann surfaces.,1998,32,ACM SIGSAM Bulletin,1,db/journals/cca/cca32.html#CorlessJ98,http://doi.acm.org/10.1145/294833.294839 +Holger W. Gollan,The 2-modular representation of J1 in the principal block.,1991,25,ACM SIGSAM Bulletin,1,db/journals/cca/cca25.html#Gollan91,http://doi.acm.org/10.1145/122525.122529 +F. Teixeira de Queiroz,Advanced tests for algorithms of differentiation.,1978,12,ACM SIGSAM Bulletin,4,db/journals/cca/cca12.html#Queiroz78,http://doi.acm.org/10.1145/1088276.1088279 +Kenny Hunt,Refiner: a problem solving environment for ODE/DAE simulations.,1997,31,ACM SIGSAM Bulletin,3,db/journals/cca/cca31.html#HuntC97,http://doi.acm.org/10.1145/271130.271197 +E. V. Krishnamurthy,Functional programming with combinators for symbolic computation.,1984,18,ACM SIGSAM Bulletin,2,db/journals/cca/cca18.html#Krishnamurthy84,http://doi.acm.org/10.1145/1089369.1089380 +Rüdiger Gebauer,"Note on ""solution of a general system of equations"".",1984,18,ACM SIGSAM Bulletin,3,db/journals/cca/cca18.html#GebauerK84,http://doi.acm.org/10.1145/1089389.1089391 +J. T. Schwartz,What programmers should know.,1975,9,ACM SIGSAM Bulletin,3,db/journals/cca/cca9.html#Schwartz75,http://doi.acm.org/10.1145/1088309.1088318 +Ankita Bakshi,On a class of difference set pairs.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#BakshiA15,http://doi.acm.org/10.1145/2768577.2768595 +Tateaki Sasaki,A theorem for separating close roots of a polynomial and its derivatives.,2004,38,ACM SIGSAM Bulletin,3,db/journals/cca/cca38.html#Sasaki04,http://doi.acm.org/10.1145/1040034.1040039 +Stephen P. Braham,NAOMI one: North American OpenMath Initiative goes online.,1998,32,ACM SIGSAM Bulletin,2,db/journals/cca/cca32.html#Braham98,http://doi.acm.org/10.1145/297049.297063 +Maximilian Jaroschek,Radicals of ore polynomials.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Jaroschek15,http://doi.acm.org/10.1145/2768577.2768617 +Alan Katz,Issues in defining an equations representation standard.,1987,21,ACM SIGSAM Bulletin,2,db/journals/cca/cca21.html#Katz87,http://doi.acm.org/10.1145/24554.24558 +Annick Dhooge,MATCONT: a Matlab package for numerical bifurcation analysis of ODEs.,2004,38,ACM SIGSAM Bulletin,1,db/journals/cca/cca38.html#DhoogeGK04,http://doi.acm.org/10.1145/980175.980184 +Marc Moreno Maza,Doing algebraic geometry with the RegularChains library.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#Maza15,http://doi.acm.org/10.1145/2815111.2815129 +Barry M. Trager,Good reduction of plane curves.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#Trager15,http://doi.acm.org/10.1145/2815111.2815144 +Stuart I. Feldman,An application of symbolic computation to crystal physics.,1975,9,ACM SIGSAM Bulletin,2,db/journals/cca/cca9.html#Feldman75,http://doi.acm.org/10.1145/1088301.1088307 +Teresa Krick,Arithmetic Nullstellensätze.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#KrickPS99,http://doi.acm.org/10.1145/347127.347253 +Maurice Mignotte,Tests for polynomials.,1980,14,ACM SIGSAM Bulletin,1,db/journals/cca/cca14.html#Mignotte80,http://doi.acm.org/10.1145/1089212.1089217 +Alkiviadis G. Akritas,On the Budan-Fourier controversy.,1981,15,ACM SIGSAM Bulletin,1,db/journals/cca/cca15.html#Akritas81,http://doi.acm.org/10.1145/1089242.1089243 +John Perry 0001,The skeletons you find when you order your ideal's closet.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#000115a,http://doi.acm.org/10.1145/2815111.2815159 +Nabil Bennenni,Construction of codes for DNA computing by the greedy algorithm.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#BennenniGG15,http://doi.acm.org/10.1145/2768577.2768583 +M. Kolár,Multivariate quotient by power-series division.,1992,26,ACM SIGSAM Bulletin,3,db/journals/cca/cca26.html#KolarS92,http://doi.acm.org/10.1145/141897.141907 +María José González-López,Gröbner bases specialization through Hilbert functions: the homogeneous case.,2000,34,ACM SIGSAM Bulletin,1,db/journals/cca/cca34.html#LopezGTZ00,http://doi.acm.org/10.1145/373500.373501 +H. Ian Cohen,A perturbation calculation in general relativity.,1974,8,ACM SIGSAM Bulletin,3,db/journals/cca/cca8.html#Cohen74,http://doi.acm.org/10.1145/1086837.1086851 +Horst Günter Zimmer,Factorization of polynomials according to a method of Zassenhaus'.,1976,10,ACM SIGSAM Bulletin,4,db/journals/cca/cca10.html#Zimmer76,http://doi.acm.org/10.1145/1088222.1088228 +Joel Moses,MACSYMA - the fifth year.,1974,8,ACM SIGSAM Bulletin,3,db/journals/cca/cca8.html#Moses74,http://doi.acm.org/10.1145/1086837.1086857 +Waldemar Hebisch,Integration in terms of exponential integrals and incomplete gamma functions.,2015,49,ACM Comm. Computer Algebra,3,db/journals/cca/cca49.html#Hebisch15,http://doi.acm.org/10.1145/2850449.2850460 +Matu-Tarow Noda,Algebraic methods for computing a generalized inverse.,1997,31,ACM SIGSAM Bulletin,3,db/journals/cca/cca31.html#NodaMS97,http://doi.acm.org/10.1145/271130.271204 +Howard Cheng,Space-efficient evaluation of hypergeometric series.,2005,39,ACM SIGSAM Bulletin,3,db/journals/cca/cca39.html#ChengGKZ05a,http://doi.acm.org/10.1145/1113439.1113445 +David R. Stoutemyer,PICOMATH-80™*: an even smaller computer algebra package.,1980,14,ACM SIGSAM Bulletin,3,db/journals/cca/cca14.html#Stoutemyer80,http://doi.acm.org/10.1145/1089230.1089231 +Shuichi Moritsugu,Geometry theorem proving by Gröbner bases: using ideal decompositions.,2008,42,ACM Comm. Computer Algebra,3,db/journals/cca/cca42.html#MoritsuguA08,http://doi.acm.org/10.1145/1504347.1504366 +Richard J. Fateman,Comments on SMP.,1985,19,ACM SIGSAM Bulletin,3,db/journals/cca/cca19.html#Fateman85a,http://doi.acm.org/10.1145/1089411.1089412 +Kosaku Nagasaka,Seeking better algorithms for approximate GCD.,2017,51,ACM Comm. Computer Algebra,1,db/journals/cca/cca51.html#Nagasaka17,http://doi.acm.org/10.1145/3096730.3096733 +Rüdiger Loos,Abstracts.,1977,11,ACM SIGSAM Bulletin,1,db/journals/cca/cca11.html#Loos77,http://doi.acm.org/10.1145/1088233.1088234 +Isabel Bermejo,Abstracts of the fifth Spanish meeting on computer algebra and applications EACA-99.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#Bermejo99,http://doi.acm.org/10.1145/347127.347132 +Leili Rafiee Sevyeri,Linearization of a specific family of Bézout matrices.,2017,51,ACM Comm. Computer Algebra,1,db/journals/cca/cca51.html#SevyeriC17,http://doi.acm.org/10.1145/3096730.3096735 +Hirokazu Murao,2W-aray algorithm for extended problem of integer GCD.,2000,34,ACM SIGSAM Bulletin,1,db/journals/cca/cca34.html#Murao00,http://doi.acm.org/10.1145/373500.373508 +Alex Buchel,Review of D-Branes by Clifford V. Johnson. Cambridge University Press 2002.,2003,37,ACM SIGSAM Bulletin,4,db/journals/cca/cca37.html#Buchel03,http://doi.acm.org/10.1145/968708.968715 +John Abbott,A report on OpenMath: a protocol for the exchange of mathematical information.,1996,30,ACM SIGSAM Bulletin,1,db/journals/cca/cca30.html#AbbottDS96,http://doi.acm.org/10.1145/231191.231194 +Fujio Kako,"Proposal of ""effective floating-point number"" for approximate algebraic computation.",1997,31,ACM SIGSAM Bulletin,3,db/journals/cca/cca31.html#KakoS97,http://doi.acm.org/10.1145/271130.271136 +Eduardo Cattani,The search for rational A-hypergeometric functions.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#CattaniDS99,http://doi.acm.org/10.1145/347127.347197 +Robert M. Corless,An elementary solution of a minimax problem arising in algorithms for automatic mesh selection.,2000,34,ACM SIGSAM Bulletin,4,db/journals/cca/cca34.html#Corless00a,http://doi.acm.org/10.1145/377626.377633 +Elisabetta Fortuna,Square-free decomposition in finite characteristic: an application to Jordon Form computation.,1999,33,ACM SIGSAM Bulletin,4,db/journals/cca/cca33.html#FortunaG99,http://doi.acm.org/10.1145/500457.500460 +Rüdiger Loos,Problem #10: the cattle problem of Archimedes.,1975,9,ACM SIGSAM Bulletin,3,db/journals/cca/cca9.html#Loos75,http://doi.acm.org/10.1145/1088309.1088313 +Xavier Dousson,Effective homology of a classifying space.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#Dousson99,http://doi.acm.org/10.1145/347127.347130 +Irene Marquez Corbella,Error-correcting pairs: a new approach to code-based cryptography.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#CorbellaP15,http://doi.acm.org/10.1145/2768577.2768606 +F. Gaeta,New non recursive formulas for irreducible representations of GL(Cm+1) and systems of equations for the symmetric powers Symn P m.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#Gaeta99,http://doi.acm.org/10.1145/347127.347212 +Jed Marti,Standard LISP report.,1980,14,ACM SIGSAM Bulletin,1,db/journals/cca/cca14.html#MartiHGG80,http://doi.acm.org/10.1145/1089212.1089218 +Martin R. Albrecht,Algebraic algorithms for LWE problems.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#AlbrechtCFFP15,http://doi.acm.org/10.1145/2815111.2815158 +Navaratna S. Rajaram,Random oscillations arising in the MACSYMA implementation of Khachian-type algorithms in linear programming.,1980,14,ACM SIGSAM Bulletin,2,db/journals/cca/cca14.html#Rajaram80,http://doi.acm.org/10.1145/1089220.1089226 +Mhenni Benghorbal,The nth derivative.,2002,36,ACM SIGSAM Bulletin,1,db/journals/cca/cca36.html#BenghorbalC02,http://doi.acm.org/10.1145/565145.565149 +André Ronveaux,Polynomial solution of recurrence relation and differential equation.,1988,22,ACM SIGSAM Bulletin,4,db/journals/cca/cca22.html#RonveauxT88,http://doi.acm.org/10.1145/54151.54152 +Laurent Poinsot,Differential (Lie) algebras from a functorial point of view.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Poinsot15,http://doi.acm.org/10.1145/2768577.2768634 +James Freitag,Bounding the size of a finite differential algebraic variety.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Freitag15,http://doi.acm.org/10.1145/2768577.2768614 +Xiao-Shan Gao,2D and 3D generalized Stewart Platforms.,2005,39,ACM SIGSAM Bulletin,3,db/journals/cca/cca39.html#GaoZ05,http://doi.acm.org/10.1145/1113439.1113451 +Albrecht Beutelspacher,Symbolic incidence geometry proposal for doing geometry with a computer (Part 2 of 2).,1993,27,ACM SIGSAM Bulletin,3,db/journals/cca/cca27.html#BeutelspacherU93a,http://doi.acm.org/10.1145/170906.170908 +Richard J. Fateman,Speed and data structures in computer algebra systems.,1989,23,ACM SIGSAM Bulletin,2,db/journals/cca/cca23.html#FatemanP89,http://doi.acm.org/10.1145/70936.70937 +Robert M. Corless,A comparison of three computer algebra systems for the solution of a problem in hydrodynamic lubrication.,1988,22,ACM SIGSAM Bulletin,2,db/journals/cca/cca22.html#Corless88,http://doi.acm.org/10.1145/43876.43881 +Tetsuo Ida,In memoriam: Professor Eiichi Goto.,2005,39,ACM SIGSAM Bulletin,3,db/journals/cca/cca39.html#Ida05,http://doi.acm.org/10.1145/1113439.1113440 +Changbo Chen,The ConstructibleSetTools and ParametricSystemTools modules of the RegularChains library in Maple.,2008,42,ACM Comm. Computer Algebra,3,db/journals/cca/cca42.html#ChenMLPLX08,http://doi.acm.org/10.1145/1504347.1504378 +Mark Giesbrecht,East Coast Computer Algebra Day.,2000,34,ACM SIGSAM Bulletin,3,db/journals/cca/cca34.html#Giesbrecht00,http://doi.acm.org/10.1145/377604.569765 +S. I. Tertychniy,GRGEC: computer algebra system for applications to gravity theory.,1997,31,ACM SIGSAM Bulletin,1,db/journals/cca/cca31.html#TertychniyO97,http://doi.acm.org/10.1145/251586.251588 +Wolfgang Gröbner,On elimination theory.,1998,32,ACM SIGSAM Bulletin,2,db/journals/cca/cca32.html#Grobner98,http://doi.acm.org/10.1145/297049.297071 +Gerhard J. A. Schneider,Representation theory in CAYLEY: tools and algorithms.,1991,25,ACM SIGSAM Bulletin,1,db/journals/cca/cca25.html#Schneider91,http://doi.acm.org/10.1145/122525.122534 +Ioannis Z. Emiris,Computing a rational in between.,2008,42,ACM Comm. Computer Algebra,3,db/journals/cca/cca42.html#EmirisMT08,http://doi.acm.org/10.1145/1504347.1504367 +Lawrence A. Weber,Problem #11 solved in REDUCE: a case study in program translation.,1979,13,ACM SIGSAM Bulletin,4,db/journals/cca/cca13.html#WeberR79,http://doi.acm.org/10.1145/1089176.1089180 +Jin-San Cheng,Intrinsic topological representation of real algebraic surfaces.,2005,39,ACM SIGSAM Bulletin,3,db/journals/cca/cca39.html#ChengG005,http://doi.acm.org/10.1145/1113439.1113444 +Ilias S. Kotsireas,Exact implicitization of polynomial curves and surfaces.,2003,37,ACM SIGSAM Bulletin,3,db/journals/cca/cca37.html#KotsireasLV03,http://doi.acm.org/10.1145/990353.990364 +Andrew H. Gleibman,SAMPLE: new programming technology and AI language.,1992,26,ACM SIGSAM Bulletin,3,db/journals/cca/cca26.html#Gleibman92,http://doi.acm.org/10.1145/141897.141908 +Heinz H. Bauschke,Symbolic computation of Fenchel conjugates.,2006,40,ACM Comm. Computer Algebra,1,db/journals/cca/cca40.html#BauschkeM06,http://doi.acm.org/10.1145/1151446.1151453 +Iuliana Ciocanea Teodorescu,The module isomorphism problem for finite rings and related results.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Teodorescu15,http://doi.acm.org/10.1145/2768577.2768585 +A. A. Kytmanov,On finding residue integrals for a class of systems of non-algebraic equations.,2015,49,ACM Comm. Computer Algebra,3,db/journals/cca/cca49.html#KytmanovKM15,http://doi.acm.org/10.1145/2850449.2850454 +George E. Collins,Quantifier elimination for real closed fields by cylindrical algebraic decomposition-preliminary report.,1974,8,ACM SIGSAM Bulletin,3,db/journals/cca/cca8.html#Collins74,http://doi.acm.org/10.1145/1086837.1086852 +Moulay A. Barkatou,A direct algorithm for computing k-simple forms of first-order linear differential systems.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Barkatou15,http://doi.acm.org/10.1145/2768577.2768613 +Roman Maeder,Solving boundary-value problems with perturbations.,1987,21,ACM SIGSAM Bulletin,3,db/journals/cca/cca21.html#Maeder87a,http://doi.acm.org/10.1145/29309.29313 +Werner Krandick,Towards collaboration across display diversity.,2006,40,ACM Comm. Computer Algebra,2,db/journals/cca/cca40.html#KrandickPW06,http://doi.acm.org/10.1145/1182553.1182562 +Tony Shaska,Minimal models for superelliptic curves over their minimal field of definition.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#Shaska15a,http://doi.acm.org/10.1145/2815111.2815145 +Manfred Göbel,Using Buchbergers algorithm in invariant theory.,1993,27,ACM SIGSAM Bulletin,4,db/journals/cca/cca27.html#Gobel93,http://doi.acm.org/10.1145/182125.182127 +Yue Ren,Computing tropical varieties using Newton's polygon method.,2017,51,ACM Comm. Computer Algebra,3,db/journals/cca/cca51.html#Ren17,http://doi.acm.org/10.1145/3177795.3177797 +A. Ya. Rodionov,Work with non-commutative variables in the reduce-2 system for analytical calculations.,1984,18,ACM SIGSAM Bulletin,3,db/journals/cca/cca18.html#Rodionov84,http://doi.acm.org/10.1145/1089389.1089394 +John W. Gray,The symbolic computation laboratory at UIUC.,1987,21,ACM SIGSAM Bulletin,3,db/journals/cca/cca21.html#Gray87,http://doi.acm.org/10.1145/29309.29311 +J. Rafael Sendra,Hankel matrices and computer algebra.,1990,24,ACM SIGSAM Bulletin,3,db/journals/cca/cca24.html#Sendra90,http://doi.acm.org/10.1145/101104.101107 +Valerie Piehl,Genetic algorithms for the extended GCD problem (work in progress).,1997,31,ACM SIGSAM Bulletin,3,db/journals/cca/cca31.html#PiehlST97,http://doi.acm.org/10.1145/271130.271187 +James H. Griesmer,The state of symbolic computation.,1979,13,ACM SIGSAM Bulletin,3,db/journals/cca/cca13.html#Griesmer79,http://doi.acm.org/10.1145/1089170.1089174 +Andreas Strotmann,OpenMath: compositionality achieved at last.,2000,34,ACM SIGSAM Bulletin,2,db/journals/cca/cca34.html#StrotmannK00,http://doi.acm.org/10.1145/362001.362024 +Keith O. Geddes,Generating numerical ODE formulas via a symbolic calculus of divided differences.,1999,33,ACM SIGSAM Bulletin,2,db/journals/cca/cca33.html#Geddes99,http://doi.acm.org/10.1145/334714.334717 +Roman Maeder,A collection of projects for the mathematical laboratory.,1987,21,ACM SIGSAM Bulletin,3,db/journals/cca/cca21.html#Maeder87,http://doi.acm.org/10.1145/29309.29312 +Dinesh Manocha,Solving algebraic systems using matrix computations.,1996,30,ACM SIGSAM Bulletin,4,db/journals/cca/cca30.html#ManochaK96,http://doi.acm.org/10.1145/242961.242965 +Nicolas M. Thiéry,Algebraic invariants of graphs* a study based on computer exploration.,2000,34,ACM SIGSAM Bulletin,3,db/journals/cca/cca34.html#Thiery00a,http://doi.acm.org/10.1145/377604.377612 +M. Lejeune Jalabert,On the ubiquity of Newton polyhedra.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#Jalabert99,http://doi.acm.org/10.1145/347127.347135 +Evans Doe Ocansey,Representation of hypergeometric products in difference rings.,2016,50,ACM Comm. Computer Algebra,4,db/journals/cca/cca50.html#OcanseyS16,http://doi.acm.org/10.1145/3055282.3055290 +Rao F. H. Khan,A comparison of symbolic solution of radioactive decay chains using Mathematica.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#KhanA99,http://doi.acm.org/10.1145/347127.347336 +Jennifer Paulhus,Decomposing Jacobian varieties.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#Paulhus15,http://doi.acm.org/10.1145/2815111.2815150 +Miguel A. Abánades,Development of automatic reasoning tools in GeoGebra.,2016,50,ACM Comm. Computer Algebra,3,db/journals/cca/cca50.html#AbanadesBKRS16,http://doi.acm.org/10.1145/3015306.3015309 +Suzy S. Maddah,On the formal reduction of singularly-perturbed linear differential systems.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Maddah15a,http://doi.acm.org/10.1145/2768577.2768638 +Annalisa Bossi,Identifiability of compartmental models: algorithms to solve an actual problem by means of symbolic calculus.,1980,14,ACM SIGSAM Bulletin,4,db/journals/cca/cca14.html#BossiCCR80,http://doi.acm.org/10.1145/1089235.1089239 +G. Tim Hagen,Tim Hagen: a simple problem.,1977,11,ACM SIGSAM Bulletin,2,db/journals/cca/cca11.html#Hagen77,http://doi.acm.org/10.1145/1088240.1088245 +Robert M. Corless,Well ... it isn't quite that simple.,1992,26,ACM SIGSAM Bulletin,3,db/journals/cca/cca26.html#CorlessJ92,http://doi.acm.org/10.1145/141897.141901 +Nicolas M. Thiéry,algebraic invariants of graphs: a computer aided study.,2000,34,ACM SIGSAM Bulletin,1,db/journals/cca/cca34.html#Thiery00,http://doi.acm.org/10.1145/373500.373511 +Robert M. Corless,Open problems in computer algebra.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#Corless99,http://doi.acm.org/10.1145/347127.347202 +Daiju Inaba,Factorization of multivariate polynomials by extended Hensel construction.,2005,39,ACM SIGSAM Bulletin,1,db/journals/cca/cca39.html#Inaba05,http://doi.acm.org/10.1145/1080368.1080370 +Johannes Middeke,Denominator bounds for higher order systems of linear recurrence equations.,2016,50,ACM Comm. Computer Algebra,4,db/journals/cca/cca50.html#MiddekeS16,http://doi.acm.org/10.1145/3055282.3055298 +Masayuki Noro,Implementation of prime decomposition of polynomial ideals over small finite fields.,2003,37,ACM SIGSAM Bulletin,3,db/journals/cca/cca37.html#NoroY03,http://doi.acm.org/10.1145/990353.990366 +Ekaterina Shemyakova,Approximate factorization of linear partial differential operators: full system of invariants for order three.,2006,40,ACM Comm. Computer Algebra,2,db/journals/cca/cca40.html#ShemyakovaW06,http://doi.acm.org/10.1145/1182553.1182555 +Aarno Hohti,Computational algebra with APL.,1988,22,ACM SIGSAM Bulletin,1,db/journals/cca/cca22.html#Hohti88,http://doi.acm.org/10.1145/43882.43884 +Mhenni M. Benghorbal,Unified formulas for arbitrary order symbolic derivatives and anti-derivatives of the power-inverse hyperbolic class 1.,2008,42,ACM Comm. Computer Algebra,3,db/journals/cca/cca42.html#Benghorbal08,http://doi.acm.org/10.1145/1504347.1504364 +David Y. Y. Yun,A p-adic division with remainder algorithm.,1974,8,ACM SIGSAM Bulletin,4,db/journals/cca/cca8.html#Yun74,http://doi.acm.org/10.1145/1088288.1088293 +Patrice Geary Tiffany,Effectively melding computer algebra systems into the calculus curriculum.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#Tiffany15,http://doi.acm.org/10.1145/2815111.2815117 +Alfonso Miola,The use of symbolic computation in solving free boundary problems by the Ritz-Galerkin method.,1974,8,ACM SIGSAM Bulletin,3,db/journals/cca/cca8.html#Miola74,http://doi.acm.org/10.1145/1086837.1086856 +W. S. Brown,On computing with factored rational expressions.,1974,8,ACM SIGSAM Bulletin,3,db/journals/cca/cca8.html#Brown74,http://doi.acm.org/10.1145/1086837.1086842 +P. D. Pearce,The application of algebraic optimisation techniques to algebraic mode programs for reduce.,1981,15,ACM SIGSAM Bulletin,4,db/journals/cca/cca15.html#PearceH81,http://doi.acm.org/10.1145/1089270.1089274 +Stephen P. Glasby,Extensions of groups defined by power-commutator presentations.,1991,25,ACM SIGSAM Bulletin,1,db/journals/cca/cca25.html#Glasby91,http://doi.acm.org/10.1145/122525.122528 +Elena Varbanova,CAS in the context of methodology of mathematics education.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#Varbanova15,http://doi.acm.org/10.1145/2815111.2815114 +Shutaro Inoue,Computation of inverses in residue class rings with parameters.,2008,42,ACM Comm. Computer Algebra,3,db/journals/cca/cca42.html#InoueMSS08,http://doi.acm.org/10.1145/1504347.1504357 +Sungsoon Kim,Standard monomials for temperley-lieb algebras.,2016,50,ACM Comm. Computer Algebra,4,db/journals/cca/cca50.html#KimL16,http://doi.acm.org/10.1145/3055282.3055296 +James H. Davenport,Fast reduce: the trade-off between efficiency and generality.,1982,16,ACM SIGSAM Bulletin,1,db/journals/cca/cca16.html#Davenport82,http://doi.acm.org/10.1145/1089297.1089298 +David R. Stoutemyer,Automatic simplification for the absolute-value function and its relatives.,1976,10,ACM SIGSAM Bulletin,4,db/journals/cca/cca10.html#Stoutemyer76,http://doi.acm.org/10.1145/1088222.1088230 +Timothy S. Norfolk,Symbolic computation of residues at poles and essential singularities.,1982,16,ACM SIGSAM Bulletin,1,db/journals/cca/cca16.html#Norfolk82,http://doi.acm.org/10.1145/1089297.1089300 +Jonathan M. Borwein,Searching symbolically for Ape'ry-like formulae for values of the Riemann zeta function.,1996,30,ACM SIGSAM Bulletin,2,db/journals/cca/cca30.html#BorweinB96,http://doi.acm.org/10.1145/235699.235700 +Dennis S. Arnon,Automatic analysis of real algebraic curves.,1981,15,ACM SIGSAM Bulletin,4,db/journals/cca/cca15.html#Arnon81,http://doi.acm.org/10.1145/1089270.1089271 +Burkhard Zimmermann,A Sister Celine type algorithm for definite summation and integration.,2003,37,ACM SIGSAM Bulletin,3,db/journals/cca/cca37.html#Zimmermann03,http://doi.acm.org/10.1145/990353.990369 +Matthew Tamayo,Algebraic full homomorphic encryption and resisting Gröbner basis cryptanalysis.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#Tamayo15,http://doi.acm.org/10.1145/2815111.2815160 +Franz Winkler,International Workshop on Computing Tools for Research and Development in Sciences and Engineering.,1987,21,ACM SIGSAM Bulletin,4,db/journals/cca/cca21.html#Winkler87e,http://doi.acm.org/10.1145/36330.1094983 +Manfred Hollenhorst,The design of digital filters using REDUCE.,1992,26,ACM SIGSAM Bulletin,1,db/journals/cca/cca26.html#Hollenhorst92,http://doi.acm.org/10.1145/134342.134346 +Daniel Lazard,Solving systems of algebraic equations.,2001,35,ACM SIGSAM Bulletin,3,db/journals/cca/cca35.html#Lazard01,http://doi.acm.org/10.1145/569746.569750 +Paul Gordan,A new proof of Hilbert's theorem on homogeneous functions.,1998,32,ACM SIGSAM Bulletin,2,db/journals/cca/cca32.html#Gordan98,http://doi.acm.org/10.1145/297049.297072 +Jaime Gutierrez 0001,Subfields in pure transcendental extensions.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#0001R99,http://doi.acm.org/10.1145/347127.347226 +Akiyuki Katayama,A new idea on the interval-symbol method with correct zero rewriting for reducing exact computations.,2016,50,ACM Comm. Computer Algebra,4,db/journals/cca/cca50.html#KatayamaS16,http://doi.acm.org/10.1145/3055282.3055295 +Yngve Sundblad,Symbolic mathematical systems now and in the future.,1974,8,ACM SIGSAM Bulletin,3,db/journals/cca/cca8.html#Sundblad74,http://doi.acm.org/10.1145/1086837.1086838 +W. Böqe,Remarks about the application of decision-methods of elementary Real Algebra.,1976,10,ACM SIGSAM Bulletin,1,db/journals/cca/cca10.html#Boqe76,http://doi.acm.org/10.1145/1093390.1093392 +Bruno Buchberger,General polynomial reduction with TH 9 OREM 8 functors: applications to integro-differential operators and polynomials.,2008,42,ACM Comm. Computer Algebra,3,db/journals/cca/cca42.html#BuchbergerRRT08,http://doi.acm.org/10.1145/1504347.1504355 +Jed Marti,REDUCE 2 for CP/M.,1983,17,ACM SIGSAM Bulletin,1,db/journals/cca/cca17.html#MartiF83,http://doi.acm.org/10.1145/1089320.1089325 +Relinde Jurrius,The extended and generalized rank weight enumerator of a code.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#JurriusP15,http://doi.acm.org/10.1145/2768577.2768605 +James H. Davenport,MODLISP.,1981,15,ACM SIGSAM Bulletin,1,db/journals/cca/cca15.html#DavenportJ81,http://doi.acm.org/10.1145/1089242.1089244 +Christoph Koutschan,Motion polynomials and planar linkages.,2016,50,ACM Comm. Computer Algebra,3,db/journals/cca/cca50.html#Koutschan16,http://doi.acm.org/10.1145/3015306.3015315 +John P. Fitch,Double by single length division.,1975,9,ACM SIGSAM Bulletin,2,db/journals/cca/cca9.html#FitchN75,http://doi.acm.org/10.1145/1088301.1088303 +Heinz Kredel,Admissible term orderings used in computer algebra systems.,1988,22,ACM SIGSAM Bulletin,1,db/journals/cca/cca22.html#Kredel88,http://doi.acm.org/10.1145/43882.43887 +Wei Zhu,The computations and applications based on comprehensive Groebner system.,2015,49,ACM Comm. Computer Algebra,3,db/journals/cca/cca49.html#Zhu15,http://doi.acm.org/10.1145/2850449.2850467 +Alkiviadis G. Akritas,A note on a paper by M. Mignotte.,1987,21,ACM SIGSAM Bulletin,4,db/journals/cca/cca21.html#Akritas87,http://doi.acm.org/10.1145/36330.36335 +Carl Ponder,Parallelism and algorithms for algebraic manipulation: current work.,1988,22,ACM SIGSAM Bulletin,3,db/journals/cca/cca22.html#Ponder88,http://doi.acm.org/10.1145/49456.49457 +Wayne Eberly,Black box linear algebra: extending wiedemann's analysis of a sparse matrix preconditioner for computations over small fields.,2016,50,ACM Comm. Computer Algebra,4,db/journals/cca/cca50.html#Eberly16,http://doi.acm.org/10.1145/3055282.3055291 +Sergey Paramonov 0002,Undecidability of the uniqueness testing problem for analytic solutions of PLDE with boundary conditions.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Paramonov15,http://doi.acm.org/10.1145/2768577.2768629 +Viatcheslav A. Ilyin,Fast algorithm for calculation of Dirac's gamma-matrices traces.,1989,23,ACM SIGSAM Bulletin,4,db/journals/cca/cca23.html#IlyinKRT89,http://doi.acm.org/10.1145/70927.70929 +Thomas Wolf,The package CRACK for solving large overdetermined systems.,2005,39,ACM SIGSAM Bulletin,3,db/journals/cca/cca39.html#Wolf05,http://doi.acm.org/10.1145/1113439.1113455 +Jörn Müller-Quade,Computing the Intersection of finitely generated fields.,1998,32,ACM SIGSAM Bulletin,2,db/journals/cca/cca32.html#Muller-QuadeB98,http://doi.acm.org/10.1145/297049.570092 +Jean Della Dora,Resolvent and rational canonical forms of matrices.,1996,30,ACM SIGSAM Bulletin,3,db/journals/cca/cca30.html#DoraJ96,http://doi.acm.org/10.1145/240065.240068 +Gerhard Jank,Conformal mapping using Bergman's method and the MAPLE system.,1991,25,ACM SIGSAM Bulletin,2,db/journals/cca/cca25.html#JankT91,http://doi.acm.org/10.1145/122520.122522 +William Y. Sit,East Coast Computer Algebra day: ECCAD 2002 poster and demonstration abstracts.,2002,36,ACM SIGSAM Bulletin,3,db/journals/cca/cca36.html#Sit02,http://doi.acm.org/10.1145/603273.603275 +Jonathan Tot,Spinning double pendulum: equilibria and bifurcations.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#Tot15,http://doi.acm.org/10.1145/2815111.2815137 +Alkiviadis G. Akritas,A remark on the proposed syllabus for an AMS short course on computer algebra.,1980,14,ACM SIGSAM Bulletin,2,db/journals/cca/cca14.html#Akritas80,http://doi.acm.org/10.1145/1089220.1089223 +David J. Jeffrey,RUBI and integration as term re-writing: integrals containing tangent.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#JeffreyRH15,http://doi.acm.org/10.1145/2768577.2768649 +Bo Phillips,Some new almost difference sets via finite fields.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#PhillipsR15,http://doi.acm.org/10.1145/2768577.2768608 +Aleksandr Mylläri,On the visualization of the DNA sequence and its nucleotide content.,2005,39,ACM SIGSAM Bulletin,4,db/journals/cca/cca39.html#MyllariSP05,http://doi.acm.org/10.1145/1140378.1140385 +Jukka Korpela,Some problems connected with ambiguous expressions.,1977,11,ACM SIGSAM Bulletin,3,db/journals/cca/cca11.html#Korpela77,http://doi.acm.org/10.1145/1088248.1088250 +Felix Ulmer,Note on Kovacic's algorithm.,1995,29,ACM SIGSAM Bulletin,2,db/journals/cca/cca29.html#UlmerW95,http://doi.acm.org/10.1145/202489.202490 +Erich Kaltofen,Jenks prize 2015 award citation.,2015,49,ACM Comm. Computer Algebra,4,db/journals/cca/cca49.html#Kaltofen15,http://doi.acm.org/10.1145/2893803.2893804 +Bruce W. Char,Symbolic computation tools in scientific problem solving environments.,1997,31,ACM SIGSAM Bulletin,3,db/journals/cca/cca31.html#CharHJLPVCMH97,http://doi.acm.org/10.1145/271130.271207 +,Automatic derivation and implementation of signal processing algorithms.,2001,35,ACM SIGSAM Bulletin,2,db/journals/cca/cca35.html#Pages01,http://doi.acm.org/10.1145/511988.511990 +Andrew D. Hall Jr.,Factored rational expressions in ALTRAN.,1974,8,ACM SIGSAM Bulletin,3,db/journals/cca/cca8.html#Hall74,http://doi.acm.org/10.1145/1086837.1086843 +Carlos D'Andrea,The rees algebra of some monomial parametrizations.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#DAndrea15,http://doi.acm.org/10.1145/2815111.2815126 +Olaf Bonorden,Factoring a binary polynomial of degree over one million.,2001,35,ACM SIGSAM Bulletin,1,db/journals/cca/cca35.html#BonordenGGM01,http://doi.acm.org/10.1145/504331.504333 +Isabel Bermejo,On Castelnuovo-Mumford regularity of codimension two monomial varieties.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#BermejoGM99,http://doi.acm.org/10.1145/347127.347148 +Daniel Lichtblau,The hazards of symbolic definite integration (a continuing saga).,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Lichtblau15,http://doi.acm.org/10.1145/2768577.2768652 +Emil J. Volcheck,Technical report column.,1997,31,ACM SIGSAM Bulletin,4,db/journals/cca/cca31.html#Volcheck97b,http://doi.acm.org/10.1145/274888.570095 +Alexander P. Kryukov,An antitranslator of the RLISP language.,1984,18,ACM SIGSAM Bulletin,3,db/journals/cca/cca18.html#Kryukov84,http://doi.acm.org/10.1145/1089389.1089393 +Erich Kaltofen,Polynomial reduction from multivariate to bivariate integral polynomial factorization.,1982,16,ACM SIGSAM Bulletin,4,db/journals/cca/cca16.html#Kaltofen82,http://doi.acm.org/10.1145/1089310.1089311 +Serguei P. Tsarev,Factorization of linear partial differential operators and Darboux integrability of nonlinear PDEs.,1998,32,ACM SIGSAM Bulletin,4,db/journals/cca/cca32.html#Tsarev98,http://doi.acm.org/10.1145/307733.307740 +Nuh Aydin,Computer algebra challenges for constructing skew cyclic codes.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Aydin15,http://doi.acm.org/10.1145/2768577.2768581 +Evangelos A. Coutsias,Bricard flexible octahedra and the canonical cyclohexane.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#Coutsias15,http://doi.acm.org/10.1145/2815111.2815135 +Renbao Zhong,An algorithm for avoiding complex numbers in rational function integration.,1982,16,ACM SIGSAM Bulletin,3,db/journals/cca/cca16.html#Zhong82,http://doi.acm.org/10.1145/1089302.1089308 +Barton L. Willis,An extensible differential equation solver.,2001,35,ACM SIGSAM Bulletin,1,db/journals/cca/cca35.html#Willis01,http://doi.acm.org/10.1145/504331.504332 +Arthur C. Norman,Testing word-sized numbers for primality.,1979,13,ACM SIGSAM Bulletin,4,db/journals/cca/cca13.html#Norman79,http://doi.acm.org/10.1145/1089176.1089179 +Howard Cheng,Computing polynomial LCM and GCD in lagrange basis.,2008,42,ACM Comm. Computer Algebra,3,db/journals/cca/cca42.html#ChengLZ08,http://doi.acm.org/10.1145/1504347.1504353 +S. Kamal Abdali,Spreadsheet computations in computer algebra.,1992,26,ACM SIGSAM Bulletin,2,db/journals/cca/cca26.html#AbdaliCS92,http://doi.acm.org/10.1145/130933.130936 +Sergei A. Abramov,"The conference ""computer algebra"" in Moscow.",2016,50,ACM Comm. Computer Algebra,2,db/journals/cca/cca50.html#AbramovS16,http://doi.acm.org/10.1145/2992274.2992276 +H. James Gawlik,Comments on the open letter from Fateman to Veltman.,1979,13,ACM SIGSAM Bulletin,1,db/journals/cca/cca13.html#Gawlik79,http://doi.acm.org/10.1145/1088282.1088284 +Richard J. Fateman,Memory cache and lisp: faster list processing via automatically rearranging memory.,2003,37,ACM SIGSAM Bulletin,4,db/journals/cca/cca37.html#Fateman03a,http://doi.acm.org/10.1145/968708.968711 +Jean C. Piquette,Special function integration.,1989,23,ACM SIGSAM Bulletin,2,db/journals/cca/cca23.html#Piquette89,http://doi.acm.org/10.1145/70936.70938 +Jean-Michel Nataf,Algorithm of simplification of nonlinear equations systems.,1992,26,ACM SIGSAM Bulletin,3,db/journals/cca/cca26.html#Nataf92,http://doi.acm.org/10.1145/141897.141905 +William F. Keigher,Differential equations and Hurwitz series.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#KeigherS15,http://doi.acm.org/10.1145/2768577.2768640 +Richard Zippel,The future of computer algebra.,1984,18,ACM SIGSAM Bulletin,2,db/journals/cca/cca18.html#Zippel84,http://doi.acm.org/10.1145/1089369.1089371 +Federico Galetto,An algorithm for determining actions of semisimple Lie groups on free resolutions.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#Galetto15,http://doi.acm.org/10.1145/2815111.2815148 +Daniel Zwillinger,Completing the L-th power in Z[x].,1984,18,ACM SIGSAM Bulletin,3,db/journals/cca/cca18.html#Zwillinger84,http://doi.acm.org/10.1145/1089389.1089395 +P. van den Heuvel,Some simple pretty-print facilities for REDUCE.,1987,21,ACM SIGSAM Bulletin,1,db/journals/cca/cca21.html#HeuvelHH87,http://doi.acm.org/10.1145/24559.24561 +Xin Li 0009,The modpn library: bringing fast polynomial arithmetic into MAPLE.,2008,42,ACM Comm. Computer Algebra,3,db/journals/cca/cca42.html#0009MRS08,http://doi.acm.org/10.1145/1504347.1504374 +David Barton,Algebraic manipulation in Cambridge.,1974,8,ACM SIGSAM Bulletin,1,db/journals/cca/cca8.html#BartonF74,http://doi.acm.org/10.1145/1086823.1086827 +Mike D. Atkinson,Saving space in coset enumeration.,1981,15,ACM SIGSAM Bulletin,4,db/journals/cca/cca15.html#Atkinson81,http://doi.acm.org/10.1145/1089270.1089273 +Jean-Louis Roch,Computer algebra on MIMD machine.,1989,23,ACM SIGSAM Bulletin,1,db/journals/cca/cca23.html#RochSSV89,http://doi.acm.org/10.1145/66062.66065 +Xiao-Shan Gao,Wen-Tsun Wu: His Life and Legacy.,2017,51,ACM Comm. Computer Algebra,2,db/journals/cca/cca51.html#Gao17,http://doi.acm.org/10.1145/3151131.3151136 +Maki Iwami,Extension of expansion base algorithm for multivariate analytic factorization including the case of singular leading coefficient.,2005,39,ACM SIGSAM Bulletin,4,db/journals/cca/cca39.html#Iwami05,http://doi.acm.org/10.1145/1140378.1140383 +John P. Fitch,Course notes.,1975,9,ACM SIGSAM Bulletin,3,db/journals/cca/cca9.html#Fitch75,http://doi.acm.org/10.1145/1088309.1088310 +Hans J. Stetter,Matrix eigenproblems are at the heart of polynomial system solving.,1996,30,ACM SIGSAM Bulletin,4,db/journals/cca/cca30.html#Stetter96,http://doi.acm.org/10.1145/242961.242966 +Robert H. C. Moir,Unwinding paths on the Riemann sphere for continuous integrals of rational functions.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#MoirCJ15,http://doi.acm.org/10.1145/2768577.2768654 +Guanli Huang,On the termination of algorithm for computing relative Gröbner bases.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#HuangZ15,http://doi.acm.org/10.1145/2768577.2768632 +Antonio Montes,Abstracts of the Sixth Spanish Meeting on Computer Algebra and Applications: EACA-2000.,2001,35,ACM SIGSAM Bulletin,4,db/journals/cca/cca35.html#Montes01,http://doi.acm.org/10.1145/509520.509523 +Dongming Wang,Unmixed and prime decomposition of radicals of polynomial ideals.,1998,32,ACM SIGSAM Bulletin,4,db/journals/cca/cca32.html#Wang98,http://doi.acm.org/10.1145/307733.307734 +David Clark,Modules for Maple.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#ClarkM99,http://doi.acm.org/10.1145/347127.347435 +Dominik Gruntz,Introduction to Gauss.,1994,28,ACM SIGSAM Bulletin,2,db/journals/cca/cca28.html#GruntzM94,http://doi.acm.org/10.1145/190694.190695 +Robert Sandling,A group ring package for Cayley.,1991,25,ACM SIGSAM Bulletin,1,db/journals/cca/cca25.html#Sandling91,http://doi.acm.org/10.1145/122525.128674 +Wayne C. Schou,The risch algorithms of MACSYMA and SENAC.,1989,23,ACM SIGSAM Bulletin,3,db/journals/cca/cca23.html#SchouB89,http://doi.acm.org/10.1145/74646.74649 +Mariana Durcheva,Some applications of idempotent semirings in public key cryptography.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Durcheva15,http://doi.acm.org/10.1145/2768577.2768600 +Bruno Buchberger,Computer algebra symbolic and algebraic computation.,1982,16,ACM SIGSAM Bulletin,4,db/journals/cca/cca16.html#BuchbergerCLA82,http://doi.acm.org/10.1145/1089310.1089312 +Ruyong Feng,Polynomial solutions for first order ODEs with constant coefficients.,2003,37,ACM SIGSAM Bulletin,3,db/journals/cca/cca37.html#FengG03,http://doi.acm.org/10.1145/990353.990360 +Yasumasa Kanada,"LISP-based ""big-float"" system is not slow.",1981,15,ACM SIGSAM Bulletin,2,db/journals/cca/cca15.html#KanadaS81,http://doi.acm.org/10.1145/1089257.1089260 +Juan Gerardo Alcázar,Iterative computation of the convex hull of a rational plane curve.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#AlcazarHCD15,http://doi.acm.org/10.1145/2815111.2815125 +Charles M. Patton,A representation of branch-cut information.,1996,30,ACM SIGSAM Bulletin,2,db/journals/cca/cca30.html#Patton96,http://doi.acm.org/10.1145/235699.235703 +Josef Schicho,The parameterization problem for algebraic surfaces.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#Schicho99,http://doi.acm.org/10.1145/347127.347137 +John Cannon,A bibliography of Cayley citations.,1991,25,ACM SIGSAM Bulletin,1,db/journals/cca/cca25.html#Cannon91,http://doi.acm.org/10.1145/122525.122536 +Kosaku Nagasaka,Approximate polynomial GCD over integers.,2008,42,ACM Comm. Computer Algebra,3,db/journals/cca/cca42.html#Nagasaka08,http://doi.acm.org/10.1145/1504347.1504351 +Ambedkar Dukkipati,On Gröbner bases over rings and residue class polynomial rings with torsion.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#DukkipatiPFD15,http://doi.acm.org/10.1145/2815111.2815155 +William Y. Sit,Some comments on term-ordering in Gröbner basis computations.,1989,23,ACM SIGSAM Bulletin,2,db/journals/cca/cca23.html#Sit89,http://doi.acm.org/10.1145/70936.70941 +Dongyue Chen,Symbol manipulation and formula manipulation.,1983,17,ACM SIGSAM Bulletin,2,db/journals/cca/cca17.html#Chen83,http://doi.acm.org/10.1145/1089330.1089335 +Peter B. Borwein,Irreducible polynomials and barker sequences.,2007,41,ACM Comm. Computer Algebra,4,db/journals/cca/cca41.html#BorweinKM07,http://doi.acm.org/10.1145/1358183.1358185 +Bruno Buchberger,A theoretical basis for the reduction of polynomials to canonical forms.,1976,10,ACM SIGSAM Bulletin,3,db/journals/cca/cca10.html#Buchberger76,http://doi.acm.org/10.1145/1088216.1088219 +Alexandru T. Balaban,Numerical and non-numerical methods in chemistry: present and future.,1984,18,ACM SIGSAM Bulletin,2,db/journals/cca/cca18.html#Balaban84,http://doi.acm.org/10.1145/1089369.1089384 +Knut Bahr,Solution to problem 8.,1975,9,ACM SIGSAM Bulletin,2,db/journals/cca/cca9.html#Bahr75a,http://doi.acm.org/10.1145/1088301.1088302 +Ludovic Meunier,MAD: a flexible system for authoring mathematical documents.,2003,37,ACM SIGSAM Bulletin,3,db/journals/cca/cca37.html#Meunier03,http://doi.acm.org/10.1145/990353.990365 +Christoph Kollreider,An improved algorithmic construction of Gröbner-bases for polynomial ideals.,1978,12,ACM SIGSAM Bulletin,2,db/journals/cca/cca12.html#KollreiderB78,http://doi.acm.org/10.1145/1088261.1088267 +Matu-Tarow Noda,Abstracts of Japanese computer algebra meeting in Kyoto.,1996,30,ACM SIGSAM Bulletin,2,db/journals/cca/cca30.html#Noda96,http://doi.acm.org/10.1145/235699.243285 +Susan Landau 0001,Finding maximal subfields.,1993,27,ACM SIGSAM Bulletin,3,db/journals/cca/cca27.html#000193,http://doi.acm.org/10.1145/170906.170907 +Emil J. Volcheck,Technical Report Column.,1996,30,ACM SIGSAM Bulletin,3,db/journals/cca/cca30.html#Volcheck96,http://doi.acm.org/10.1145/240065.570111 +Tateaki Sasaki,Convergence domain of series expansions of multivariate algebraic functions.,2008,42,ACM Comm. Computer Algebra,3,db/journals/cca/cca42.html#SasakiI08,http://doi.acm.org/10.1145/1504347.1504352 +José L. Bueso,When is a finitely generated algebra of Poincaré-Birkhoff-Witt type?,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#BuesoGL99,http://doi.acm.org/10.1145/347127.347152 +Albert Heinle,Some steps to improve software information.,2017,51,ACM Comm. Computer Algebra,1,db/journals/cca/cca51.html#HeinleKS17,http://doi.acm.org/10.1145/3096730.3096731 +Xiao-Shan Gao,A characteristic set method for equation solving over finite fields.,2008,42,ACM Comm. Computer Algebra,3,db/journals/cca/cca42.html#GaoH08,http://doi.acm.org/10.1145/1504347.1504361 +Martin Weimann,Computing gonal maps of algebraic curves.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#Weimann15,http://doi.acm.org/10.1145/2815111.2815132 +Alyson A. Reeves,The worst order in not always the lexicographic order.,1991,25,ACM SIGSAM Bulletin,4,db/journals/cca/cca25.html#Reeves91,http://doi.acm.org/10.1145/122508.122512 +Stephen C. Johnson,A note on abnormal polynomial remainder sequences.,1975,9,ACM SIGSAM Bulletin,3,db/journals/cca/cca9.html#Johnson75,http://doi.acm.org/10.1145/1088309.1088319 +Emma Previato,Differential algebraic aspect of orthogonal polynomials and modular forms.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Previato15a,http://doi.acm.org/10.1145/2768577.2768637 +Alin Bostan,Solving structured linear systems of large displacement rank.,2006,40,ACM Comm. Computer Algebra,2,db/journals/cca/cca40.html#BostanJS06,http://doi.acm.org/10.1145/1182553.1182558 +David R. Stoutemyer,A TI-92 solution to the ISSAC '97 challenge problem 1.,1998,32,ACM SIGSAM Bulletin,1,db/journals/cca/cca32.html#Stoutemyer98,http://doi.acm.org/10.1145/294833.570094 +A. Voros,Symbol calculus by symbolic computation and semi-classical expansions.,1980,14,ACM SIGSAM Bulletin,3,db/journals/cca/cca14.html#Voros80,http://doi.acm.org/10.1145/1089230.1089232 +Nadya Belov,Mobile mathematics communication.,2005,39,ACM SIGSAM Bulletin,3,db/journals/cca/cca39.html#BelovKKS05,http://doi.acm.org/10.1145/1113439.1113459 +Katsusuke Nabeshima,PGB: a package for computing parametric Gröbner and related objects.,2007,41,ACM Comm. Computer Algebra,3,db/journals/cca/cca41.html#Nabeshima07,http://doi.acm.org/10.1145/1358190.1358198 +G. Belovari,Complex analysis in symbolic computing of some definite integrals.,1983,17,ACM SIGSAM Bulletin,2,db/journals/cca/cca17.html#Belovari83,http://doi.acm.org/10.1145/1089330.1089332 +Ahmed Cherchem,Exponents of skew polynomials.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#CherchemL15,http://doi.acm.org/10.1145/2768577.2768584 +B. David Saunders,A survey of available systems.,1980,14,ACM SIGSAM Bulletin,4,db/journals/cca/cca14.html#Saunders80,http://doi.acm.org/10.1145/1089235.1089237 +Changbo Chen,The basic polynomial algebra subprograms.,2016,50,ACM Comm. Computer Algebra,3,db/journals/cca/cca50.html#ChenCMMM0X16,http://doi.acm.org/10.1145/3015306.3015312 +Paul S. Wang,Abstracts.,1978,12,ACM SIGSAM Bulletin,2,db/journals/cca/cca12.html#Wang78,http://doi.acm.org/10.1145/1088261.1088262 +Ronald E. Prather,The relation of Lorenzen calculus to formal language theory.,1990,24,ACM SIGSAM Bulletin,2,db/journals/cca/cca24.html#Prather90,http://doi.acm.org/10.1145/1089419.1089420 +M. Lauer,Reference count overflow.,1976,10,ACM SIGSAM Bulletin,2,db/journals/cca/cca10.html#LauerS76,http://doi.acm.org/10.1145/1093397.1093404 +Terry Flaherty,Symbolic manipulation in an extended andlgr*-calculus.,1988,22,ACM SIGSAM Bulletin,1,db/journals/cca/cca22.html#Flaherty88,http://doi.acm.org/10.1145/43882.43885 +Edgar Martínez-Moro,Multivariable codes in principal ideal polynomial quotient rings.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Martinez-MoroPR15,http://doi.acm.org/10.1145/2768577.2768589 +Horst Günter Zimmer,Three examples of S-integral points of elliptic curves over Q.,1997,31,ACM SIGSAM Bulletin,2,db/journals/cca/cca31.html#Zimmer97,http://doi.acm.org/10.1145/261320.261326 +Alfonsa García,Using technology in mathematical courses: some possibilities.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#GarciaGRRV15,http://doi.acm.org/10.1145/2815111.2815116 +Alberto Arri,The F5 criterion revised.,2008,42,ACM Comm. Computer Algebra,3,db/journals/cca/cca42.html#Arri08,http://doi.acm.org/10.1145/1504347.1504372 +Xavier Dahan,On the complexity of the D5 principle.,2005,39,ACM SIGSAM Bulletin,3,db/journals/cca/cca39.html#DahanSMWX05,http://doi.acm.org/10.1145/1113439.1113457 +Philippe Flajolet,The SIGSAM challenges: symbolic asymptotics in practice.,1997,31,ACM SIGSAM Bulletin,4,db/journals/cca/cca31.html#FlajoletS97,http://doi.acm.org/10.1145/274888.274890 +Efi Fogel,The computational geometry algorithms library CGAL.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#FogelT15,http://doi.acm.org/10.1145/2768577.2768579 +Hubert Caprasse,"Description of an extension of the Matrix package of : 20Reduce"".",1986,20,ACM SIGSAM Bulletin,4,db/journals/cca/cca20.html#Caprasse86a,http://doi.acm.org/10.1145/14956.14957 +W. Lassner,Report on a national computer algebra workshop in Leipzig.,1984,18,ACM SIGSAM Bulletin,3,db/journals/cca/cca18.html#Lassner84,http://doi.acm.org/10.1145/1089389.1089397 +J. A. van Hulzen,The symbolic-numeric interface.,1984,18,ACM SIGSAM Bulletin,2,db/journals/cca/cca18.html#Hulzen84,http://doi.acm.org/10.1145/1089369.1089383 +Sardar Anisul Haque,CUMODP: a CUDA library for modular polynomial computation.,2017,51,ACM Comm. Computer Algebra,3,db/journals/cca/cca51.html#HaqueLMMMP17,http://doi.acm.org/10.1145/3177795.3177799 +Jonathan M. Borwein,Mathematical publication on the Web.,1998,32,ACM SIGSAM Bulletin,1,db/journals/cca/cca32.html#Borwein98,http://doi.acm.org/10.1145/294833.294836 +Jean C. Pigquette,Table of special function integrals.,1990,24,ACM SIGSAM Bulletin,4,db/journals/cca/cca24.html#Pigquette90,http://doi.acm.org/10.1145/101108.101109 +William Stein,SAGE: system for algebra and geometry experimentation.,2005,39,ACM SIGSAM Bulletin,2,db/journals/cca/cca39.html#SteinJ05,http://doi.acm.org/10.1145/1101884.1101889 +Rüdiger Loos,1977 MACSYMA users' conference.,1977,11,ACM SIGSAM Bulletin,2,db/journals/cca/cca11.html#Loos77b,http://doi.acm.org/10.1145/1088240.1088243 +Manuel González Sarabia,An overview on algebraic invariants and the main parameters of some parameterized codes.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Sarabia15,http://doi.acm.org/10.1145/2768577.2768602 +Thomas G. Berry,On Coates algorithm.,1983,17,ACM SIGSAM Bulletin,2,db/journals/cca/cca17.html#Berry83,http://doi.acm.org/10.1145/1089330.1089333 +John Michael McNamee,A comparison of methods for accurate summation.,2004,38,ACM SIGSAM Bulletin,1,db/journals/cca/cca38.html#McNamee04,http://doi.acm.org/10.1145/980175.980177 +Shuhong Gao,Irreducible decomposition of monomial ideals.,2005,39,ACM SIGSAM Bulletin,3,db/journals/cca/cca39.html#GaoZ05a,http://doi.acm.org/10.1145/1113439.1113458 +Ilias S. Kotsireas,ANTS VI: algorithmic number theory symposium poster abstracts.,2004,38,ACM SIGSAM Bulletin,3,db/journals/cca/cca38.html#KotsireasV04,http://doi.acm.org/10.1145/1040034.1040041 +Tyler Kelly,An algorithm for computing Picard ranks of certain K3 surfaces.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#Kelly15,http://doi.acm.org/10.1145/2815111.2815147 +Jürg Nievergelt,Computing with geometric objects.,1984,18,ACM SIGSAM Bulletin,2,db/journals/cca/cca18.html#Nievergelt84,http://doi.acm.org/10.1145/1089369.1089377 +,Macsyma solutions to the ISSAC '97 challenge problems.,1998,32,ACM SIGSAM Bulletin,1,db/journals/cca/cca32.html#X98,http://doi.acm.org/10.1145/294833.570093 +Wolfgang Trinks,On improving approximate results of Buchberger's algorithm by Newton's method.,1984,18,ACM SIGSAM Bulletin,3,db/journals/cca/cca18.html#Trinks84a,http://doi.acm.org/10.1145/1089389.1089392 +Paul S. Wang,P-adic reconstruction of rational numbers.,1982,16,ACM SIGSAM Bulletin,2,db/journals/cca/cca16.html#WangGD82,http://doi.acm.org/10.1145/1089292.1089293 +Lars Langemyr,Converting SAC-2 code to lisp.,1986,20,ACM SIGSAM Bulletin,4,db/journals/cca/cca20.html#Langemyr86,http://doi.acm.org/10.1145/14956.14958 +Franz Winkler,AAECC-3 Abstracts.,1986,20,ACM SIGSAM Bulletin,3,db/journals/cca/cca20.html#Winkler86,http://doi.acm.org/10.1145/14959.1095554 +Robert M. Corless,Gröbner bases and matrix eigenproblems.,1996,30,ACM SIGSAM Bulletin,4,db/journals/cca/cca30.html#Corless96d,http://doi.acm.org/10.1145/242961.242968 +H. James Gawlik,The further development of MIRA.,1977,11,ACM SIGSAM Bulletin,2,db/journals/cca/cca11.html#Gawlik77,http://doi.acm.org/10.1145/1088240.1088246 +James C. Frauenthal,Change in applied mathematics is revolutionary.,1980,14,ACM SIGSAM Bulletin,2,db/journals/cca/cca14.html#Frauenthal80,http://doi.acm.org/10.1145/1089220.1089222 +Julio Rubio,A program computing the homology groups of loops spaces.,1991,25,ACM SIGSAM Bulletin,4,db/journals/cca/cca25.html#RubioS91,http://doi.acm.org/10.1145/122508.122513 +Martin Helmer,Algorithms to compute chern-schwartz-macpherson and segre classes and the euler characteristic.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#Helmer15,http://doi.acm.org/10.1145/2815111.2815134 +Alice Medvedev,Dimensions of difference-algebraic groups.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Medvedev15,http://doi.acm.org/10.1145/2768577.2768628 +B. David Saunders,Abstracts.,1981,15,ACM SIGSAM Bulletin,2,db/journals/cca/cca15.html#Saunders81,http://doi.acm.org/10.1145/1089257.1089258 +Renato P. dos Santos,On the design of an expert help system for computer algebra systems.,1990,24,ACM SIGSAM Bulletin,4,db/journals/cca/cca24.html#SantosR90,http://doi.acm.org/10.1145/101108.101110 +Bruno Grenet,Lacunaryx: computing bounded-degree factors of lacunary polynomials.,2015,49,ACM Comm. Computer Algebra,4,db/journals/cca/cca49.html#Grenet15,http://doi.acm.org/10.1145/2893803.2893807 +Gilles Labonté,Report on a program for solving polynomial equations in non-commuting variables.,1987,21,ACM SIGSAM Bulletin,2,db/journals/cca/cca21.html#Labonte87,http://doi.acm.org/10.1145/24554.24555 +Paul S. Wang,Factoring larger multivariate polynomials.,1976,10,ACM SIGSAM Bulletin,4,db/journals/cca/cca10.html#Wang76a,http://doi.acm.org/10.1145/1088222.1088227 +Manfred Minimair,Collaborative computer algebra systems.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#Minimair15,http://doi.acm.org/10.1145/2815111.2815136 +Andreas Weber,Computing radical expressions for roots of unity.,1996,30,ACM SIGSAM Bulletin,3,db/journals/cca/cca30.html#Weber96,http://doi.acm.org/10.1145/240065.240070 +Lev M. Berkovich,Factorization of self-conjugated and reducible linear differential operators.,2006,40,ACM Comm. Computer Algebra,2,db/journals/cca/cca40.html#Berkovich06,http://doi.acm.org/10.1145/1182553.1182556 +Ryan McCleeary,A lazy approach to adaptive exact real arithmetic using floating-point operations.,2015,49,ACM Comm. Computer Algebra,3,db/journals/cca/cca49.html#McCleearyBS15,http://doi.acm.org/10.1145/2850449.2850456 +M. Trott,Mathematica solutions to the ISSAC system challenge 1997.,1997,31,ACM SIGSAM Bulletin,4,db/journals/cca/cca31.html#Trott97,http://doi.acm.org/10.1145/274888.274889 +Malihe Aliasgari,Binomial ideal associated to a lattice and its label code.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#AliasgariP015,http://doi.acm.org/10.1145/2768577.2768593 +Tateaki Sasaki,On integer-to-rational conversion algorithm.,1992,26,ACM SIGSAM Bulletin,2,db/journals/cca/cca26.html#SasakiS92,http://doi.acm.org/10.1145/130933.130938 +James H. Davenport,A small OpenMath type system.,2000,34,ACM SIGSAM Bulletin,2,db/journals/cca/cca34.html#Davenport00a,http://doi.acm.org/10.1145/362001.362014 +Christian Schulzky,Resistance scaling and random walk dimensions for finitely ramified Sierpinski carpets.,2000,34,ACM SIGSAM Bulletin,3,db/journals/cca/cca34.html#SchulzkyF000,http://doi.acm.org/10.1145/377604.377608 +Michael Xue,Prove inequalities by solving maximum/minimum problems using a computer algebra system.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#Xue15,http://doi.acm.org/10.1145/2815111.2815120 +Pasqualina Conti,Hermite canonical form and Smith canonical form of a matrix over a principal ideal domain.,1990,24,ACM SIGSAM Bulletin,3,db/journals/cca/cca24.html#Conti90,http://doi.acm.org/10.1145/101104.101105 +Juan M. de Olazábal,Unified method for determining canonical forms of a matrix.,1999,33,ACM SIGSAM Bulletin,1,db/journals/cca/cca33.html#Olazabal99,http://doi.acm.org/10.1145/329984.329987 +George Labahn,Rational invariants of finite abelian groups.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Labahn15a,http://doi.acm.org/10.1145/2768577.2768641 +Aude Maignan,Fleshing out the generalized Lambert W function.,2016,50,ACM Comm. Computer Algebra,2,db/journals/cca/cca50.html#MaignanS16,http://doi.acm.org/10.1145/2992274.2992275 +Donald E. Knuth,Son of seminumerical algorithms.,1975,9,ACM SIGSAM Bulletin,4,db/journals/cca/cca9.html#Knuth75,http://doi.acm.org/10.1145/1088322.1088323 +Rainer Steinwandt,On computing a separating transcendence basis.,2000,34,ACM SIGSAM Bulletin,4,db/journals/cca/cca34.html#Steinwandt00,http://doi.acm.org/10.1145/377626.377632 +Michael C. Slattery,Character degrees on p-groups: a case study.,1991,25,ACM SIGSAM Bulletin,1,db/journals/cca/cca25.html#Slattery91,http://doi.acm.org/10.1145/122525.122535 +Greg Fee,Gauss-Legendre quadrature.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#Fee99,http://doi.acm.org/10.1145/347127.347443 +Robert M. Corless,The unwinding number.,1996,30,ACM SIGSAM Bulletin,2,db/journals/cca/cca30.html#CorlessJ96,http://doi.acm.org/10.1145/235699.235705 +Fujio Kako,Abstracts of Japanese computer algebra meeting in Kyoto.,1998,32,ACM SIGSAM Bulletin,1,db/journals/cca/cca32.html#Kako98,http://doi.acm.org/10.1145/294833.294841 +Robert M. Corless,According to Abramowitz and Stegun or arccoth needn't be uncouth.,2000,34,ACM SIGSAM Bulletin,2,db/journals/cca/cca34.html#CorlessJWD00,http://doi.acm.org/10.1145/362001.362023 +Dorothea A. Klip,Different polynomial representations and their interaction in the portable algebra system PORT-ALG.,1974,8,ACM SIGSAM Bulletin,3,db/journals/cca/cca8.html#Klip74,http://doi.acm.org/10.1145/1086837.1086848 +Richard J. Fateman,Eleven proofs of sin2x+cos2x = 1.,1985,19,ACM SIGSAM Bulletin,2,db/journals/cca/cca19.html#Fateman85,http://doi.acm.org/10.1145/1089402.1089406 +Ferdinando Mora,The interplay between commutative algebra and computer algebra.,1984,18,ACM SIGSAM Bulletin,2,db/journals/cca/cca18.html#MoraR84,http://doi.acm.org/10.1145/1089369.1089375 +Paul S. Wang,An efficient squarefree decomposition algorithm.,1977,11,ACM SIGSAM Bulletin,2,db/journals/cca/cca11.html#Wang77,http://doi.acm.org/10.1145/1088240.1088242 +Bican Xia,DISCOVERER: a tool for solving semi-algebraic systems.,2007,41,ACM Comm. Computer Algebra,3,db/journals/cca/cca41.html#Xia07,http://doi.acm.org/10.1145/1358190.1358197 +Kadijeh Bagheri,A new non-associative cryptosystem based on NTOW public key cryptosystem and octonions algebra.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Bagheri015,http://doi.acm.org/10.1145/2768577.2768582 +Bruno Salvy,Efficient programming in Maple: a case study.,1993,27,ACM SIGSAM Bulletin,2,db/journals/cca/cca27.html#Salvy93,http://doi.acm.org/10.1145/165474.165477 +Alfonso Miola,Computational aspects of Hensel-type univariate polynomial greatest common divisor algorithms.,1974,8,ACM SIGSAM Bulletin,3,db/journals/cca/cca8.html#MiolaY74,http://doi.acm.org/10.1145/1086837.1086844 +Bogdan A. Popov,Optimal starting approximation and iterative algorithm for inverse error function.,2000,34,ACM SIGSAM Bulletin,1,db/journals/cca/cca34.html#Popov00,http://doi.acm.org/10.1145/373500.373510 +Richard J. Fateman,Symbolic and algebraic computer programming systems.,1981,15,ACM SIGSAM Bulletin,1,db/journals/cca/cca15.html#Fateman81,http://doi.acm.org/10.1145/1089242.1089245 +Joris van der Hoeven,GNU TeXmacs.,2004,38,ACM SIGSAM Bulletin,1,db/journals/cca/cca38.html#Hoeven04,http://doi.acm.org/10.1145/980175.980186 +Kevin T. Rowney,Finite field manipulations in Macsyma.,1989,23,ACM SIGSAM Bulletin,1,db/journals/cca/cca23.html#RowneyS89,http://doi.acm.org/10.1145/66062.66067 +George E. Collins,Quantifier Elimination for Real Closed Fields by Cylindrical Algebraic Decomposition: a synopsis.,1976,10,ACM SIGSAM Bulletin,1,db/journals/cca/cca10.html#Collins76,http://doi.acm.org/10.1145/1093390.1093393 +Carl Ponder,Applications of hashing in algebraic manipulation (an annotated bibliography).,1987,21,ACM SIGSAM Bulletin,4,db/journals/cca/cca21.html#Ponder87,http://doi.acm.org/10.1145/36330.36333 +Mark Giesbrecht,On factoring differential and difference operators in n variables.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#GiesbrechtHL15,http://doi.acm.org/10.1145/2768577.2768645 +Gerhard Grams,Special generators and relations for some orthogonal and symplectic groups over GF(2).,1991,25,ACM SIGSAM Bulletin,1,db/journals/cca/cca25.html#Grams91,http://doi.acm.org/10.1145/122525.125025 +François Lemaire,New development and application of integration of differential fractions.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Lemaire15,http://doi.acm.org/10.1145/2768577.2768623 +A. P. Kryukov,Interactive REDUCE.,1985,19,ACM SIGSAM Bulletin,3,db/journals/cca/cca19.html#KryukovR85a,http://doi.acm.org/10.1145/1089411.1089416 +Mike F. Newman,The Wielandt length of some 3-groups.,1991,25,ACM SIGSAM Bulletin,1,db/journals/cca/cca25.html#NewmanO91,http://doi.acm.org/10.1145/122525.122531 +Wenqin Zhou,Symbolic computation techniques for solving large expression problems from mathematics and engineering.,2007,41,ACM Comm. Computer Algebra,4,db/journals/cca/cca41.html#Zhou07,http://doi.acm.org/10.1145/1358183.1358188 +Germán A. G. Combariza,A few conjectures about the multiple zeta values.,2018,52,ACM Comm. Computer Algebra,1,db/journals/cca/cca52.html#Combariza18,http://doi.acm.org/10.1145/3243034.3243036 +Sergei A. Abramov,"The second conference ""Computer Algebra"" in Moscow.",2017,51,ACM Comm. Computer Algebra,4,db/journals/cca/cca51.html#AbramovRS17,http://doi.acm.org/10.1145/3199652.3199653 +Nirmal K. Bose,Symbolic and algebraic computations in multidimensional systems theory.,1984,18,ACM SIGSAM Bulletin,2,db/journals/cca/cca18.html#Bose84,http://doi.acm.org/10.1145/1089369.1089385 +Dieter W. Ebner,GOEDEL: A computer language for symbolic algebraic calculations - an introduction by examples.,1986,20,ACM SIGSAM Bulletin,3,db/journals/cca/cca20.html#Ebner86,http://doi.acm.org/10.1145/14959.14960 +Richard J. Fateman,Commentary on: solving symbolic equations with PRESS.,1988,22,ACM SIGSAM Bulletin,2,db/journals/cca/cca22.html#FatemanBOS88,http://doi.acm.org/10.1145/43876.43879 +Max Engeli,An enhanced SYMBAL system.,1975,9,ACM SIGSAM Bulletin,4,db/journals/cca/cca9.html#Engeli75,http://doi.acm.org/10.1145/1088322.1088326 +Xavier Hernández,Using Schubert to enumerate conics in P3.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#HernandezM99,http://doi.acm.org/10.1145/347127.347236 +Richard J. Fateman,Comparing the speed of programs for sparse polynomial multiplication.,2003,37,ACM SIGSAM Bulletin,1,db/journals/cca/cca37.html#Fateman03,http://doi.acm.org/10.1145/844076.844080 +Edgardo S. Cheb-Terrab,The search for and classification of integrable Abel ODE classes.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#Cheb-TerrabKR99,http://doi.acm.org/10.1145/347127.347419 +Tateaki Sasaki,Enhancing the extended hensel construction by using Gröbner basis.,2017,51,ACM Comm. Computer Algebra,1,db/journals/cca/cca51.html#SasakiI17,http://doi.acm.org/10.1145/3096730.3096737 +Michael Wibmer,A Jordan-Hölder theorem for difference algebraic groups.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Wibmer15,http://doi.acm.org/10.1145/2768577.2768631 +Kevin A. Broughan,Some symbolic computing links to the NAG numeric library.,1991,25,ACM SIGSAM Bulletin,3,db/journals/cca/cca25.html#BroughanKRRD91,http://doi.acm.org/10.1145/122514.122518 +Gianna Cioni,Using minicomputers for algebraic computations.,1976,10,ACM SIGSAM Bulletin,4,db/journals/cca/cca10.html#CioniM76,http://doi.acm.org/10.1145/1088222.1088231 +Emil J. Volcheck,Technical Report Column.,1997,31,ACM SIGSAM Bulletin,2,db/journals/cca/cca31.html#Volcheck97a,http://doi.acm.org/10.1145/261320.570100 +William H. Rowan,Efficient polynomial substitutions of a sparse argument.,1981,15,ACM SIGSAM Bulletin,3,db/journals/cca/cca15.html#Rowan81,http://doi.acm.org/10.1145/1089263.1089266 +Luciana Bordoni,An application of reduce to industrial mechanics.,1981,15,ACM SIGSAM Bulletin,2,db/journals/cca/cca15.html#BordoniC81,http://doi.acm.org/10.1145/1089257.1089259 +William S. Page,AXIOM: open source computer algebra system.,2007,41,ACM Comm. Computer Algebra,3,db/journals/cca/cca41.html#Page07,http://doi.acm.org/10.1145/1358190.1358206 +Billy G. Claybrook,"Extended abstract of ""a new approach to the symbolic factorization of multivariate polynomials"".",1976,10,ACM SIGSAM Bulletin,2,db/journals/cca/cca10.html#Claybrook76a,http://doi.acm.org/10.1145/1093397.1093398 +Georgy P. Egorychev,Enumeration in the Chevalley algebras.,2001,35,ACM SIGSAM Bulletin,2,db/journals/cca/cca35.html#EgorychevL01,http://doi.acm.org/10.1145/511988.511991 +Michael B. Monagan,Fermat benchmarks for rational expressionals in maple.,2016,50,ACM Comm. Computer Algebra,4,db/journals/cca/cca50.html#MonaganP16,http://doi.acm.org/10.1145/3055282.3055299 +Dai Numahata,An algorithm for symbolic-numeric sparse interpolation of multivariate polynomials whose degree bounds are unknown.,2017,51,ACM Comm. Computer Algebra,1,db/journals/cca/cca51.html#NumahataS17,http://doi.acm.org/10.1145/3096730.3096734 +J. A. Campbell,Automatic programming in LISP.,1975,9,ACM SIGSAM Bulletin,2,db/journals/cca/cca9.html#Campbell75,http://doi.acm.org/10.1145/1088301.1088305 +Elias P. Tsigaridas,SLV: a software for real root isolation.,2016,50,ACM Comm. Computer Algebra,3,db/journals/cca/cca50.html#Tsigaridas16,http://doi.acm.org/10.1145/3015306.3015317 +Benno Fuchssteiner,Modified gauss algorithm for matrices with symbolic entries.,2008,42,ACM Comm. Computer Algebra,3,db/journals/cca/cca42.html#Fuchssteiner08,http://doi.acm.org/10.1145/1504347.1504349 +Arjen K. Lenstra,Lattices and factorization of polynomials.,1981,15,ACM SIGSAM Bulletin,3,db/journals/cca/cca15.html#Lenstra81,http://doi.acm.org/10.1145/1089263.1089265 +Sergei A. Abramov,A note on the number of division steps in the Euclidean algorithm.,2000,34,ACM SIGSAM Bulletin,4,db/journals/cca/cca34.html#Abramov00,http://doi.acm.org/10.1145/377626.377629 +Alfonso Miola,The conversion of Hensel codes to their rational equivalents: or how to solve the Gregory's open problem.,1982,16,ACM SIGSAM Bulletin,4,db/journals/cca/cca16.html#Miola82,http://doi.acm.org/10.1145/1089310.1089316 +James H. Davenport,Integration in finite terms.,1984,18,ACM SIGSAM Bulletin,2,db/journals/cca/cca18.html#Davenport84,http://doi.acm.org/10.1145/1089369.1089378 +Victor Pan,Polynomial root-finding with matrix eigen-solving.,2005,39,ACM SIGSAM Bulletin,3,db/journals/cca/cca39.html#Pan05,http://doi.acm.org/10.1145/1113439.1113448 +William Leler,An interactive graphical interface for REDUCE.,1985,19,ACM SIGSAM Bulletin,3,db/journals/cca/cca19.html#LelerS85,http://doi.acm.org/10.1145/1089411.1089414 +Joshua Holden,Distribution of the error in estimated numbers of fixed points of the discrete logarithm.,2004,38,ACM SIGSAM Bulletin,4,db/journals/cca/cca38.html#Holden04,http://doi.acm.org/10.1145/1060328.1060329 +Rüdiger G. K. Loos,The algorithm description language ALDES (report).,1976,10,ACM SIGSAM Bulletin,1,db/journals/cca/cca10.html#Loos76,http://doi.acm.org/10.1145/1093390.1093395 +Vilmar Trevisan,Recognition of Hurwitz polynomials.,1990,24,ACM SIGSAM Bulletin,4,db/journals/cca/cca24.html#Trevisan90,http://doi.acm.org/10.1145/101108.101111 +Gabriela Jeronimo,Effective differential Lüroth theorem.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Jeronimo15,http://doi.acm.org/10.1145/2768577.2768618 +Kenneth L. Manders,The impact of complexity theory on algorithms for sparse polynomials.,1977,11,ACM SIGSAM Bulletin,1,db/journals/cca/cca11.html#Manders77,http://doi.acm.org/10.1145/1088233.1088236 +Hale F. Trotter,Statistics on factoring polynomials mod p and p-adically.,1982,16,ACM SIGSAM Bulletin,3,db/journals/cca/cca16.html#Trotter82,http://doi.acm.org/10.1145/1089302.1089307 +Paul S. Wang,The EEZ-GCD algorithm.,1980,14,ACM SIGSAM Bulletin,2,db/journals/cca/cca14.html#Wang80b,http://doi.acm.org/10.1145/1089220.1089228 +Ivan Morel,From an LLL-reduced basis to another.,2008,42,ACM Comm. Computer Algebra,3,db/journals/cca/cca42.html#MorelSV08,http://doi.acm.org/10.1145/1504347.1504358 +David De Wit,Automatic construction of an R Matrix.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#Wit99,http://doi.acm.org/10.1145/347127.347437 +Paul S. Wang,Titles and abstracts: mathematical symbolic manipulation on the computer.,1980,14,ACM SIGSAM Bulletin,2,db/journals/cca/cca14.html#Wang80a,http://doi.acm.org/10.1145/1089220.1089221 +George E. Collins,The Jacobi symbol algorithm.,1982,16,ACM SIGSAM Bulletin,1,db/journals/cca/cca16.html#CollinsL82,http://doi.acm.org/10.1145/1089297.1089299 +Zhuojun Liu,Height as a coefficient bound for univariate polynomial factors.,1994,28,ACM SIGSAM Bulletin,2,db/journals/cca/cca28.html#LiuW94,http://doi.acm.org/10.1145/190694.190696 +Robert T. Moenck,Is a linked list the best storage structure for an algebra system?,1978,12,ACM SIGSAM Bulletin,3,db/journals/cca/cca12.html#Moenck78,http://doi.acm.org/10.1145/1088269.1088273 +Bodo Renschuch,Contributions to constructive polynomial ideal theory XXIII: forgotten works of Leningrad mathematician N. M. Gjunter on polynomial ideal theory.,2003,37,ACM SIGSAM Bulletin,2,db/journals/cca/cca37.html#RenschuchRRA03,http://doi.acm.org/10.1145/944567.944569 +Rui-Juan Jing,The polyhedra library in maple.,2017,51,ACM Comm. Computer Algebra,3,db/journals/cca/cca51.html#JingM17,http://doi.acm.org/10.1145/3177795.3177798 +Arthur Norman,Towards a REDUCE solution to SIGSAM problem 7.,1978,12,ACM SIGSAM Bulletin,4,db/journals/cca/cca12.html#Norman78,http://doi.acm.org/10.1145/1088276.1088278 +Christopher W. Brown,QEPCAD B: a program for computing with semi-algebraic sets using CADs.,2003,37,ACM SIGSAM Bulletin,4,db/journals/cca/cca37.html#Brown03,http://doi.acm.org/10.1145/968708.968710 +Ned Anderson,MACSYMA experiments with a modified Khachian-type algorithm in linear programming.,1980,14,ACM SIGSAM Bulletin,1,db/journals/cca/cca14.html#AndersonW80,http://doi.acm.org/10.1145/1089212.1089214 +Evelyne Hubert,Rational and replacement invariants of a group action.,2005,39,ACM SIGSAM Bulletin,3,db/journals/cca/cca39.html#HubertK05,http://doi.acm.org/10.1145/1113439.1113447 +Takeshi Osoekawa,Hensel fan.,2006,40,ACM Comm. Computer Algebra,2,db/journals/cca/cca40.html#OsoekawaS06,http://doi.acm.org/10.1145/1182553.1182561 +James N. Hanson,Some data conversions for managing the internal and output form of formac constants.,1976,10,ACM SIGSAM Bulletin,2,db/journals/cca/cca10.html#HansonR76,http://doi.acm.org/10.1145/1093397.1093403 +Silvana Ilie,Abstracts of the 2015 east coast computer algebra day.,2016,50,ACM Comm. Computer Algebra,1,db/journals/cca/cca50.html#IlieS16,http://doi.acm.org/10.1145/2930964.2930969 +B. David Saunders,Algebra made mechanical.,1981,15,ACM SIGSAM Bulletin,3,db/journals/cca/cca15.html#Saunders81a,http://doi.acm.org/10.1145/1089263.1089267 +Yusuf Baris Tuncer,Abstracts of recent doctoral dissertations in computer algebra.,2017,51,ACM Comm. Computer Algebra,3,db/journals/cca/cca51.html#Tuncer17,http://doi.acm.org/10.1145/3177795.3177802 +Jie Zhou,The computations and applications based on comprehensive Groebner system.,2015,49,ACM Comm. Computer Algebra,3,db/journals/cca/cca49.html#Zhou15,http://doi.acm.org/10.1145/2850449.2850466 +Irina A. Kogan,Differential algebra of invariants and invariant variational calculus.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Kogan15,http://doi.acm.org/10.1145/2768577.2768620 +Shuichi Moritsugu,On the power series solution of a system of algebraic equations.,1987,21,ACM SIGSAM Bulletin,4,db/journals/cca/cca21.html#Moritsugu87,http://doi.acm.org/10.1145/36330.36334 +Robert M. Corless,What is a solution of an ODE?,1993,27,ACM SIGSAM Bulletin,4,db/journals/cca/cca27.html#Corless93,http://doi.acm.org/10.1145/182125.182129 +C. J. Smith,Implementation of a package of tools for manipulation of sums.,1984,18,ACM SIGSAM Bulletin,1,db/journals/cca/cca18.html#Smith84,http://doi.acm.org/10.1145/1089348.1089351 +,Report of the workshop on environments for computational mathematics.,1987,21,ACM SIGSAM Bulletin,4,db/journals/cca/cca21.html#X87a,http://doi.acm.org/10.1145/36330.36337 +Adrian Dumitrescu,On a query algorithm for a divisibility problem.,2007,41,ACM Comm. Computer Algebra,4,db/journals/cca/cca41.html#DumitrescuX07,http://doi.acm.org/10.1145/1358183.1358186 +Emil J. Volcheck,Parallel symbolic computing workshop.,1998,32,ACM SIGSAM Bulletin,4,db/journals/cca/cca32.html#Volcheck98,http://doi.acm.org/10.1145/307733.307741 +Michael P. Barnett,Some simple ways to construct and to use formulas mechanically.,1991,25,ACM SIGSAM Bulletin,2,db/journals/cca/cca25.html#Barnett91,http://doi.acm.org/10.1145/122520.122524 +Ioannis Z. Emiris,Book Review: Polynomial and Matrix Computations Volume 1: Fundamental Algorithms by D. Bini and V. Pan.,1996,30,ACM SIGSAM Bulletin,3,db/journals/cca/cca30.html#EmirisG96,http://doi.acm.org/10.1145/240065.570109 +Manuel Kauers,Computing limits of sequences.,2003,37,ACM SIGSAM Bulletin,3,db/journals/cca/cca37.html#Kauers03,http://doi.acm.org/10.1145/990353.990362 +Harrison Tsai,Weyl closure of a D-ideal.,2000,34,ACM SIGSAM Bulletin,1,db/journals/cca/cca34.html#Tsai00,http://doi.acm.org/10.1145/373500.373512 +A. Whitman Groves,Sparse polynomials in FLINT.,2016,50,ACM Comm. Computer Algebra,3,db/journals/cca/cca50.html#GrovesR16,http://doi.acm.org/10.1145/3015306.3015314 +Florian Heiderich,Towards a non-commutative picard-vessiot theory.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Heiderich15,http://doi.acm.org/10.1145/2768577.2768616 +Ferrell S. Wheeler,Bell polynomials.,1987,21,ACM SIGSAM Bulletin,3,db/journals/cca/cca21.html#Wheeler87,http://doi.acm.org/10.1145/29309.29317 +Tianjiao Wu,On optimization problems.,2003,37,ACM SIGSAM Bulletin,3,db/journals/cca/cca37.html#Wu03,http://doi.acm.org/10.1145/990353.990368 +Fritz Schwarz,ALLTYPES in the web.,2008,42,ACM Comm. Computer Algebra,3,db/journals/cca/cca42.html#Schwarz08,http://doi.acm.org/10.1145/1504347.1504379 +Robert H. Lewis,Comparison of polynomial-oriented computer algebra systems.,1999,33,ACM SIGSAM Bulletin,4,db/journals/cca/cca33.html#LewisW99,http://doi.acm.org/10.1145/500457.500459 +David R. Stoutemyer,Computer symbolic math and education: a radical proposal.,1979,13,ACM SIGSAM Bulletin,3,db/journals/cca/cca13.html#Stoutemyer79,http://doi.acm.org/10.1145/1089170.1089173 +Yang Zhang,Gelfand-Kirillov dimension of differential difference algebras.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#ZhangZ15,http://doi.acm.org/10.1145/2768577.2768642 +Masaaki Kanno,Validated numerical methods for systems and control engineering.,2003,37,ACM SIGSAM Bulletin,3,db/journals/cca/cca37.html#KannoS03,http://doi.acm.org/10.1145/990353.990361 +Tanush Shaska,Computational algebra and algebraic curves.,2003,37,ACM SIGSAM Bulletin,4,db/journals/cca/cca37.html#Shaska03,http://doi.acm.org/10.1145/968708.968713 +Gary L. Ebert,Some comments on the modular approach to Gröbner-bases.,1983,17,ACM SIGSAM Bulletin,2,db/journals/cca/cca17.html#Ebert83,http://doi.acm.org/10.1145/1089330.1089336 +Oliver Knill,The rotation group of Rubik's cube.,1987,21,ACM SIGSAM Bulletin,3,db/journals/cca/cca21.html#KnillM87,http://doi.acm.org/10.1145/29309.29316 +Tatsuyoshi Hamada,KNOPPIX/Math: a live system for enjoying mathematics with computer.,2008,42,ACM Comm. Computer Algebra,3,db/journals/cca/cca42.html#Hamadaa08,http://doi.acm.org/10.1145/1504347.1504375 +Woon Cheung Chan,A novel symbolic ordinary differential equation solver.,1981,15,ACM SIGSAM Bulletin,3,db/journals/cca/cca15.html#Chan81,http://doi.acm.org/10.1145/1089263.1089264 +Wolfram Koepf,REDUCE package for the indefinite and definite summation.,1995,29,ACM SIGSAM Bulletin,1,db/journals/cca/cca29.html#Koepf95,http://doi.acm.org/10.1145/216685.216687 +Clifton Williamson Jr.,Taylor series solutions of explicit ODE's in a strongly typed algebra system.,1984,18,ACM SIGSAM Bulletin,1,db/journals/cca/cca18.html#Williamson84,http://doi.acm.org/10.1145/1089348.1089352 +Michael G. Epitropakis,Root finding and approximation approaches through neural networks.,2005,39,ACM SIGSAM Bulletin,4,db/journals/cca/cca39.html#EpitropakisV05,http://doi.acm.org/10.1145/1140378.1140382 +Antonio Montes,Solving the load flow problem using Gröbner basis.,1995,29,ACM SIGSAM Bulletin,1,db/journals/cca/cca29.html#MontesC95,http://doi.acm.org/10.1145/216685.216686 +Viktor Levandovskyy,Using computer algebra system SINGULAR: PLURAL for computations in noncommutative polynomial algebras.,2003,37,ACM SIGSAM Bulletin,3,db/journals/cca/cca37.html#LevandovskyyS03,http://doi.acm.org/10.1145/990353.990363 +Carolyn J. Smith,Procedures for polynomial and rational function recognition.,1984,18,ACM SIGSAM Bulletin,3,db/journals/cca/cca18.html#Smith84a,http://doi.acm.org/10.1145/1089389.1089390 +Rüdiger Loos,Group theoretical computations in mathematical crystallography.,1976,10,ACM SIGSAM Bulletin,4,db/journals/cca/cca10.html#LoosN76,http://doi.acm.org/10.1145/1088222.1088223 +Stéphane Fèvre,Completeness of a rewrite system for proving geometric theorems using Clifford algebra.,1998,32,ACM SIGSAM Bulletin,2,db/journals/cca/cca32.html#Fevre98,http://doi.acm.org/10.1145/297049.297065 +D. Mordukhai-Boltovskoi,A general investigation of integration in finite form of differential equations of the first order article 1.,1981,15,ACM SIGSAM Bulletin,2,db/journals/cca/cca15.html#Mordukhai-Boltovskoi81,http://doi.acm.org/10.1145/1089257.1089261 +Kohshi Okumura,An application of Groebner bases to the classification of nonlinear circuits.,1997,31,ACM SIGSAM Bulletin,3,db/journals/cca/cca31.html#Okumura97,http://doi.acm.org/10.1145/271130.274462 +Dorothea A. Klip,A comparative study of algorithms for sparse polynomial multiplication.,1978,12,ACM SIGSAM Bulletin,3,db/journals/cca/cca12.html#Klip78,http://doi.acm.org/10.1145/1088269.1088272 +Yue Liu,Research on Gröbner basis of the defining ideal of polynomial ring in quaternionic variables.,2015,49,ACM Comm. Computer Algebra,3,db/journals/cca/cca49.html#Liu15,http://doi.acm.org/10.1145/2850449.2850464 +Margherita Barile,On equations defining monomial varieties.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#BarileMT99,http://doi.acm.org/10.1145/347127.347146 +Kelly Roach,Solving integrals with the quantum computer algebra system.,2008,42,ACM Comm. Computer Algebra,3,db/journals/cca/cca42.html#Roach08,http://doi.acm.org/10.1145/1504347.1504371 +Andreas Dolzmann,REDLOG: computer algebra meets computer logic.,1997,31,ACM SIGSAM Bulletin,2,db/journals/cca/cca31.html#Dolzmann097,http://doi.acm.org/10.1145/261320.261324 +J. A. van Hulzen,Computational problems in producing taylor coefficients for the rotating disk problem.,1980,14,ACM SIGSAM Bulletin,2,db/journals/cca/cca14.html#Hulzen80,http://doi.acm.org/10.1145/1089220.1089227 +Elena C. Laskari,Transformations of two cryptographic problems in terms of matrices.,2005,39,ACM SIGSAM Bulletin,4,db/journals/cca/cca39.html#LaskariMTV05,http://doi.acm.org/10.1145/1140378.1140384 +Hitoshi Yanami,SyNRAC: a maple toolbox for solving real algebraic constraints.,2007,41,ACM Comm. Computer Algebra,3,db/journals/cca/cca41.html#YanamiA07,http://doi.acm.org/10.1145/1358190.1358205 +Clemens Ballarin,Solving parametric linear systems: an experiment with constraint algebraic programming.,2004,38,ACM SIGSAM Bulletin,2,db/journals/cca/cca38.html#BallarinK04,http://doi.acm.org/10.1145/1041791.1041793 +James H. Griesmer,A taxonomy for algebraic computation.,1978,12,ACM SIGSAM Bulletin,3,db/journals/cca/cca12.html#GriesmerJY78,http://doi.acm.org/10.1145/1088269.1088274 +S. Yu. Slavyanov,Antiquantization of deformed Heun class equations as a tool for symbolic generation of Painlevé equations.,2017,51,ACM Comm. Computer Algebra,1,db/journals/cca/cca51.html#SlavyanovS17,http://doi.acm.org/10.1145/3096730.3096738 +Rabbe Fogelholm,Standard LISP for the VAX: a provisional implementation.,1982,16,ACM SIGSAM Bulletin,4,db/journals/cca/cca16.html#FogelholmF82,http://doi.acm.org/10.1145/1089310.1089314 +Annette Maier,Parameterized differential equations and patching.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Maier15,http://doi.acm.org/10.1145/2768577.2768627 +Werner Krandick,New bounds for the Descartes method.,2005,39,ACM SIGSAM Bulletin,3,db/journals/cca/cca39.html#KrandickM05,http://doi.acm.org/10.1145/1113439.1113453 +Richard J. Fateman,My view of the future of symbolic and algebraic computation.,1984,18,ACM SIGSAM Bulletin,2,db/journals/cca/cca18.html#Fateman84,http://doi.acm.org/10.1145/1089369.1089373 +Hiroshi Kai,Hybrid computation of bivariate rational interpolation.,2000,34,ACM SIGSAM Bulletin,1,db/journals/cca/cca34.html#KaiN00,http://doi.acm.org/10.1145/373500.373505 +Jeffrey P. Golden,Differentiation of unknown functions in MACSYMA.,1985,19,ACM SIGSAM Bulletin,2,db/journals/cca/cca19.html#Golden85,http://doi.acm.org/10.1145/1089402.1089405 +,A pre-editor for CAMAL.,1975,9,ACM SIGSAM Bulletin,3,db/journals/cca/cca9.html#X75,http://doi.acm.org/10.1145/1088309.1088320 +Roman Pearce,A maple library for high performance sparse polynomial arithmetic.,2007,41,ACM Comm. Computer Algebra,3,db/journals/cca/cca41.html#PearceM07,http://doi.acm.org/10.1145/1358190.1358203 +Atanas Popov,Symbolic computation of potential energy functions.,1998,32,ACM SIGSAM Bulletin,2,db/journals/cca/cca32.html#Popov98,http://doi.acm.org/10.1145/297049.297057 +Lubjana Beshaj,Heights on hyperelliptic and superelliptic curves.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#Beshaj15,http://doi.acm.org/10.1145/2815111.2815142 +Richard J. Fateman,TEX output from MACSYMA-like systems.,1987,21,ACM SIGSAM Bulletin,4,db/journals/cca/cca21.html#Fateman87,http://doi.acm.org/10.1145/36330.36331 +Stephen C. Johnson,Sparse polynomial arithmetic.,1974,8,ACM SIGSAM Bulletin,3,db/journals/cca/cca8.html#Johnson74,http://doi.acm.org/10.1145/1086837.1086847 +Shuichi Moritsugu,A note on the numerical evaluation of arctangent function.,1989,23,ACM SIGSAM Bulletin,3,db/journals/cca/cca23.html#MoritsuguM89,http://doi.acm.org/10.1145/74646.74647 +Kosaku Nagasaka,SNAP package for Mathematica.,2007,41,ACM Comm. Computer Algebra,3,db/journals/cca/cca41.html#Nagasaka07,http://doi.acm.org/10.1145/1358190.1358199 +Olaf Bachmann,MPCR: an efficient and flexible chains of recurrences server.,1997,31,ACM SIGSAM Bulletin,1,db/journals/cca/cca31.html#Bachmann97,http://doi.acm.org/10.1145/251586.251589 +W. Morven Gentleman,Experience with truncated power series.,1974,8,ACM SIGSAM Bulletin,3,db/journals/cca/cca8.html#Gentleman74,http://doi.acm.org/10.1145/1086837.1086846 +Henry Kanoui,Some aspects of symbolic integration via predicate logic programming.,1976,10,ACM SIGSAM Bulletin,4,db/journals/cca/cca10.html#Kanoui76,http://doi.acm.org/10.1145/1088222.1088226 +Gérard Duchamp,Harmonic sums and polylogarithms at negative multi-indices.,2015,49,ACM Comm. Computer Algebra,3,db/journals/cca/cca49.html#DuchampMN15,http://doi.acm.org/10.1145/2850449.2850452 +Arthur D. Hall III,ALTRAN programs for SIGSAM problem #6.,1974,8,ACM SIGSAM Bulletin,2,db/journals/cca/cca8.html#HallJ74,http://doi.acm.org/10.1145/1086830.1086831 +Olga Caprotti,JAVA Phrasebooks for computer algebra and automated deduction.,2000,34,ACM SIGSAM Bulletin,2,db/journals/cca/cca34.html#CaprottiCR00,http://doi.acm.org/10.1145/362001.362019 +Norbert Kajler,Some human interaction issues in computer algebra.,1994,28,ACM SIGSAM Bulletin,1,db/journals/cca/cca28.html#KajlerS94,http://doi.acm.org/10.1145/182130.182133 +Bernadette Bouchon-Meunier,From interval computations to modal mathematics: applications and computational complexity.,1998,32,ACM SIGSAM Bulletin,2,db/journals/cca/cca32.html#Bouchon-Meunier98,http://doi.acm.org/10.1145/297049.297053 +Antonio Montes,Numerical conditioning of a system of algebraic equations with a finite number of solutions using Gröbner bases.,1993,27,ACM SIGSAM Bulletin,1,db/journals/cca/cca27.html#Montes93,http://doi.acm.org/10.1145/152379.152387 +Arthur C. Norman,A comparison of the Vaxima and Reduce factorization packages.,1983,17,ACM SIGSAM Bulletin,1,db/journals/cca/cca17.html#NormanW83,http://doi.acm.org/10.1145/1089320.1089326 +Van Chiên Bui,Computation tool for the q-deformed quasi-shuffle algebras and representations of structure of MZVs.,2015,49,ACM Comm. Computer Algebra,4,db/journals/cca/cca49.html#BuiDM15,http://doi.acm.org/10.1145/2893803.2893806 +A. P. Kryukov,Dynamic-debugging system for the REDUCE programs.,1985,19,ACM SIGSAM Bulletin,2,db/journals/cca/cca19.html#KryukovR85,http://doi.acm.org/10.1145/1089402.1089409 +Rüdiger G. K. Loos,Toward a formal implementation of computer algebra.,1974,8,ACM SIGSAM Bulletin,3,db/journals/cca/cca8.html#Loos74,http://doi.acm.org/10.1145/1086837.1086839 +John A. Abbott,A remark on factorisation.,1985,19,ACM SIGSAM Bulletin,2,db/journals/cca/cca19.html#AbbottBD85,http://doi.acm.org/10.1145/1089402.1089408 +Luis Alvarez Sobreviela,A reduce-based OpenMath and#8596* MathML translator.,2000,34,ACM SIGSAM Bulletin,2,db/journals/cca/cca34.html#Sobreviela00,http://doi.acm.org/10.1145/362001.362018 +Zhonggang Zeng,ApaTools: a software toolbox for approximate polynomial algebra.,2008,42,ACM Comm. Computer Algebra,3,db/journals/cca/cca42.html#Zeng08,http://doi.acm.org/10.1145/1504347.1504376 +Ehrenfried Walter von Tschirnhaus,A method for removing all intermediate terms from a given equation.,2003,37,ACM SIGSAM Bulletin,1,db/journals/cca/cca37.html#TschirnhausG03,http://doi.acm.org/10.1145/844076.844078 +Paul S. Wang,SIAM 1978 national meeting: invited lectures.,1978,12,ACM SIGSAM Bulletin,3,db/journals/cca/cca12.html#Wang78c,http://doi.acm.org/10.1145/1088269.1088270 +Robert M. Corless,Approximate computation of pseudovarieties.,2003,37,ACM SIGSAM Bulletin,3,db/journals/cca/cca37.html#CorlessKW03,http://doi.acm.org/10.1145/990353.990359 +Michael P. Barnett,Computer algebra in the life sciences.,2002,36,ACM SIGSAM Bulletin,4,db/journals/cca/cca36.html#Barnett02,http://doi.acm.org/10.1145/641239.641242 +Laurent Bernardin,A review of symbolic solvers.,1996,30,ACM SIGSAM Bulletin,1,db/journals/cca/cca30.html#Bernardin96,http://doi.acm.org/10.1145/231191.231193 +Pierre Verbaeten,Computing real zeros of polynomials with SAC-1.,1975,9,ACM SIGSAM Bulletin,2,db/journals/cca/cca9.html#Verbaeten75,http://doi.acm.org/10.1145/1088301.1088304 +Fabrizio Caruso,Interpolation in symbolic summation.,2003,37,ACM SIGSAM Bulletin,3,db/journals/cca/cca37.html#Caruso03,http://doi.acm.org/10.1145/990353.990357 +John P. Fitch,Problem #8: random walk.,1974,8,ACM SIGSAM Bulletin,4,db/journals/cca/cca8.html#Fitch74,http://doi.acm.org/10.1145/1088288.1088289 +Vasily Shapeev,Application of CAS to constructing schemes of superhigh order of accuracy for heat conduction equation.,2005,39,ACM SIGSAM Bulletin,4,db/journals/cca/cca39.html#Shapeev05,http://doi.acm.org/10.1145/1140378.1140387 +Manuel Kauers,Workshop on symbolic combinatorics and algorithmic differential algebra.,2016,50,ACM Comm. Computer Algebra,1,db/journals/cca/cca50.html#KauersPR16,http://doi.acm.org/10.1145/2930964.2930968 +Stephen C. Johnson,Problem #7.,1974,8,ACM SIGSAM Bulletin,1,db/journals/cca/cca8.html#JohnsonG74,http://doi.acm.org/10.1145/1086823.1086825 +Wolmer V. Vasconcelos,Bounds in the computation of the integral closure.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#Vasconcelos99,http://doi.acm.org/10.1145/347127.347140 +Arthur C. Norman,The SCRATCHPAD power series package.,1975,9,ACM SIGSAM Bulletin,1,db/journals/cca/cca9.html#Norman75a,http://doi.acm.org/10.1145/1088295.1088298 +Ken Rimey,Problem section (rotating fluids): a system of polynomial equations and a solution by an unusual method.,1984,18,ACM SIGSAM Bulletin,1,db/journals/cca/cca18.html#Rimey84,http://doi.acm.org/10.1145/1089348.1089353 +Gregory V. Bard,Plaintext recovery for one-time pads used twice.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#BardM15,http://doi.acm.org/10.1145/2768577.2768596 +Michio Sakakihara,Iterative blow-up time approximation for initial value problems.,1997,31,ACM SIGSAM Bulletin,3,db/journals/cca/cca31.html#Sakakihara97,http://doi.acm.org/10.1145/271130.271189 +S. Alasdair Buchanan,Some theoretical problems when solving systems of polynomial equations using Gröbner bases.,1991,25,ACM SIGSAM Bulletin,2,db/journals/cca/cca25.html#Buchanan91,http://doi.acm.org/10.1145/122520.122523 +George E. Collins,SAC-1 solution of problem #7.,1974,8,ACM SIGSAM Bulletin,2,db/journals/cca/cca8.html#CollinsMR74,http://doi.acm.org/10.1145/1086830.1086833 +Robert H. Lewis,Application of Dixon resultant to maximization of the likelihood function of Gaussian mixture distribution.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#LewisPA15,http://doi.acm.org/10.1145/2815111.2815138 +Jukka Korpela,General characteristics of the ANALITIK language.,1976,10,ACM SIGSAM Bulletin,3,db/journals/cca/cca10.html#Korpela76,http://doi.acm.org/10.1145/1088216.1088220 +Jean-Charles Faugère,Sparse Gröbner bases: algorithms and complexity.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#FaugereSS15,http://doi.acm.org/10.1145/2815111.2815157 +Carlos Andradas,Convex polytopes over ordered fields.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#AndradasV99,http://doi.acm.org/10.1145/347127.347144 +Jeffrey M. Dambacher,The golden rule of complementary feedback.,2001,35,ACM SIGSAM Bulletin,4,db/journals/cca/cca35.html#DambacherR01,http://doi.acm.org/10.1145/509520.509522 +David S. Wise,Representing matrices as quadtrees for parallel processors: extended abstract.,1984,18,ACM SIGSAM Bulletin,3,db/journals/cca/cca18.html#Wise84,http://doi.acm.org/10.1145/1089389.1089398 +Dongil Lee,Standard monomials for the Weyl group F4.,2015,49,ACM Comm. Computer Algebra,3,db/journals/cca/cca49.html#Lee15,http://doi.acm.org/10.1145/2850449.2850453 +Birger Nielsen,A note on Einstein metrics - a simple application of a symbolic algebra system.,1988,22,ACM SIGSAM Bulletin,1,db/journals/cca/cca22.html#NielsenP88,http://doi.acm.org/10.1145/43882.43883 +ágnes Szántó,Symbolic-numeric computation and applications: list of abstracts.,2006,40,ACM Comm. Computer Algebra,1,db/journals/cca/cca40.html#SzantoVZ06,http://doi.acm.org/10.1145/1151446.1151451 +Franz Winkler,Abstracts: J-SIGSAM Japanese Special Interest Group on Symbolic and Algebraic Computation and Report of the Last Seasonal Meeting.,1987,21,ACM SIGSAM Bulletin,2,db/journals/cca/cca21.html#Winkler87b,http://doi.acm.org/10.1145/24554.1095563 +Richard D. Jenks,SCRATCHPAD/360: reflections on a language design.,1979,13,ACM SIGSAM Bulletin,1,db/journals/cca/cca13.html#Jenks79,http://doi.acm.org/10.1145/1088282.1088285 +Massimo Caboara,On the Hilbert quasi-polynomials for non-standard graded rings.,2015,49,ACM Comm. Computer Algebra,3,db/journals/cca/cca49.html#CaboaraM15,http://doi.acm.org/10.1145/2850449.2850461 +Helmut Kempelmann,Recursive algorithm for the fast calculation of the limit of derivatives at points of indeterminateness.,1981,15,ACM SIGSAM Bulletin,4,db/journals/cca/cca15.html#Kempelmann81,http://doi.acm.org/10.1145/1089270.1089272 +Kris Dockx,Character tables and commutativity of normal subgroups.,1991,25,ACM SIGSAM Bulletin,1,db/journals/cca/cca25.html#DockxI91,http://doi.acm.org/10.1145/122525.122527 +Arthur D. Chtcherba,On the relationship between the Dixon-based resultant construction and the supports of polynomial systems.,2003,37,ACM SIGSAM Bulletin,3,db/journals/cca/cca37.html#ChtcherbaK03,http://doi.acm.org/10.1145/990353.990358 +Hubert Caprasse,A new use of operators in the algebraic mode of REDUCE.,1985,19,ACM SIGSAM Bulletin,3,db/journals/cca/cca19.html#CaprasseH85,http://doi.acm.org/10.1145/1089411.1089417 +Ziming Li,Computation with hyperexponential functions.,2005,39,ACM SIGSAM Bulletin,3,db/journals/cca/cca39.html#LiZ05,http://doi.acm.org/10.1145/1113439.1113446 +Ilias S. Kotsireas,Homotopies and polynomial system solving I: basic principles.,2001,35,ACM SIGSAM Bulletin,1,db/journals/cca/cca35.html#Kotsireas01,http://doi.acm.org/10.1145/504331.504334 +Michael B. Monagan,von zur Gathen's factorization challenge.,1993,27,ACM SIGSAM Bulletin,2,db/journals/cca/cca27.html#Monagan93,http://doi.acm.org/10.1145/165474.165478 +Markus Lange-Hegermann,Counting solutions of differential equations.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Lange-Hegermann15,http://doi.acm.org/10.1145/2768577.2768622 +Tuncer I. ören,A forum for the synergy of ACM special interest groups.,1984,18,ACM SIGSAM Bulletin,3,db/journals/cca/cca18.html#Oren84,http://doi.acm.org/10.1145/1089389.1089400 +Giuliano Casale,An application of exact linear algebra to capacity planning models.,2008,42,ACM Comm. Computer Algebra,4,db/journals/cca/cca42.html#Casale08,http://doi.acm.org/10.1145/1504341.1504345 +,Formal power series.,1987,21,ACM SIGSAM Bulletin,3,db/journals/cca/cca21.html#X87,http://doi.acm.org/10.1145/29309.29315 +Yue Ren,Computing tropical varieties over fields with valuation using classical standard basis techniques.,2015,49,ACM Comm. Computer Algebra,4,db/journals/cca/cca49.html#Ren15,http://doi.acm.org/10.1145/2893803.2893809 +Tateaki Sasaki,A formula for separating small roots of a polynomial.,2002,36,ACM SIGSAM Bulletin,3,db/journals/cca/cca36.html#SasakiT02,http://doi.acm.org/10.1145/603273.603277 +Yinghong Li,Theories and algorithms for difference and differential Chow form.,2015,49,ACM Comm. Computer Algebra,3,db/journals/cca/cca49.html#Li15,http://doi.acm.org/10.1145/2850449.2850465 +Patrick C. McGeer,A discussion and implementation of Brown's REX simplification algorithm.,1984,18,ACM SIGSAM Bulletin,1,db/journals/cca/cca18.html#McGeer84,http://doi.acm.org/10.1145/1089348.1089350 +S. Kamal Abdali,Abstracts of computer algebra papers from 1984 national meeting of American Chemical Society.,1984,18,ACM SIGSAM Bulletin,3,db/journals/cca/cca18.html#Abdali84,http://doi.acm.org/10.1145/1089389.1089399 +Mark Giesbrecht,Certifying inconsistency of sparse linear systems.,1997,31,ACM SIGSAM Bulletin,3,db/journals/cca/cca31.html#GiesbrechtLS97,http://doi.acm.org/10.1145/271130.271194 +J. A. Campbell,Compact storage for computations involving partitions.,1976,10,ACM SIGSAM Bulletin,4,db/journals/cca/cca10.html#Campbell76,http://doi.acm.org/10.1145/1088222.1088229 +Ziming Li,Simplifying skew fractions modulo differential and difference relations.,2008,42,ACM Comm. Computer Algebra,3,db/journals/cca/cca42.html#LiOW08,http://doi.acm.org/10.1145/1504347.1504369 +Neil Soiffer,MathML: a proposal for representing mathematics in HTML.,1997,31,ACM SIGSAM Bulletin,3,db/journals/cca/cca31.html#Soiffer97,http://doi.acm.org/10.1145/271130.271199 +Yao Sun,On implementing signature-based Gröbner basis algorithms using linear algebraic routines from M4RI.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#SunLW15,http://doi.acm.org/10.1145/2815111.2815161 +William Kahan,Problem #9: an ellipse problem.,1975,9,ACM SIGSAM Bulletin,3,db/journals/cca/cca9.html#Kahan75,http://doi.acm.org/10.1145/1088309.1088312 +Hamza Moufek,McEliece cryptosystem based on punctured convolutional codes and the pseudo-random generators.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#MoufekG15,http://doi.acm.org/10.1145/2768577.2768607 +Michael Kohlhase,OMDoc: an infrastructure for OpenMath content dictionary information.,2000,34,ACM SIGSAM Bulletin,2,db/journals/cca/cca34.html#Kohlhase00,http://doi.acm.org/10.1145/362001.362021 +Juan D. Velez,Limits of quotients of polynomial functions in three variables.,2017,51,ACM Comm. Computer Algebra,2,db/journals/cca/cca51.html#VelezHC17,http://doi.acm.org/10.1145/3151131.3151132 +Aleksandr Mylläri,Stability of expanding homographic configurations: 3D case.,2005,39,ACM SIGSAM Bulletin,4,db/journals/cca/cca39.html#Myllari05,http://doi.acm.org/10.1145/1140378.1140386 +Gert-Martin Greuel,SINGULAR: a computer algebra system for polynomial computations.,2008,42,ACM Comm. Computer Algebra,3,db/journals/cca/cca42.html#GreuelPS08,http://doi.acm.org/10.1145/1504347.1504377 +Michael B. Monagan,Using sparse interpolation to solve multivariate diophantine equations.,2015,49,ACM Comm. Computer Algebra,3,db/journals/cca/cca49.html#MonaganT15,http://doi.acm.org/10.1145/2850449.2850459 +Gregory Butler,Towards a deductive database for small simple groups.,1991,25,ACM SIGSAM Bulletin,4,db/journals/cca/cca25.html#ButlerI91,http://doi.acm.org/10.1145/122508.122511 +Andrew Chi-Chih Yao,Analysis of the subtractive algorithm for greatest common divisors.,1976,10,ACM SIGSAM Bulletin,2,db/journals/cca/cca10.html#YaoK76,http://doi.acm.org/10.1145/1093397.1093401 +Christoph Adami,Book Review: Modeling Nature with Cellular Automata using Mathenmtica by Richard Gaylord and Kazume Nishidate.,1996,30,ACM SIGSAM Bulletin,3,db/journals/cca/cca30.html#Adami96,http://doi.acm.org/10.1145/240065.570110 +Fritz Schwarz,ALLTYPES in the web.,2007,41,ACM Comm. Computer Algebra,3,db/journals/cca/cca41.html#Schwarz07,http://doi.acm.org/10.1145/1358190.1358202 +Akshay Degwekar,Extending construction X for quantum error-correcting codes.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#DegwekarGG15,http://doi.acm.org/10.1145/2768577.2768598 +David R. Stoutemyer,Useful computations need useful numbers.,2007,41,ACM Comm. Computer Algebra,3,db/journals/cca/cca41.html#Stoutemyer07,http://doi.acm.org/10.1145/1358190.1358192 +Olga Caprotti,International symposium on symbolic and algebraic computation poster abstracts 2003.,2003,37,ACM SIGSAM Bulletin,3,db/journals/cca/cca37.html#Caprotti03a,http://doi.acm.org/10.1145/990353.990355 +Knut A. Bahr,Toward a revision of FORMAC.,1974,8,ACM SIGSAM Bulletin,1,db/journals/cca/cca8.html#Bahr74,http://doi.acm.org/10.1145/1086823.1086828 +Fernando San Segundo,Offsets from the perspective of computational algebraic geometry.,2005,39,ACM SIGSAM Bulletin,3,db/journals/cca/cca39.html#SegundoSS05,http://doi.acm.org/10.1145/1113439.1113449 +Carlos D'Andrea,Bezoutian formulas à la Macaulay for the multivariate resultant.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#DAndreaD99,http://doi.acm.org/10.1145/347127.347205 +Arjen K. Lenstra,Factorization of polynomials.,1984,18,ACM SIGSAM Bulletin,2,db/journals/cca/cca18.html#Lenstra84,http://doi.acm.org/10.1145/1089369.1089376 +Paul S. Wang,Seminar on Introduction to Symbolic and Algebraic Manipulation.,1978,12,ACM SIGSAM Bulletin,2,db/journals/cca/cca12.html#Wang78a,http://doi.acm.org/10.1145/1088261.1088263 +J. A. van Hulzen,An expression analysis package for REDUCE.,1982,16,ACM SIGSAM Bulletin,4,db/journals/cca/cca16.html#HulzenH82,http://doi.acm.org/10.1145/1089310.1089318 +Clément Pernet,LU based algorithms for characteristic polynomial over a finite field.,2003,37,ACM SIGSAM Bulletin,3,db/journals/cca/cca37.html#PernetW03,http://doi.acm.org/10.1145/990353.990367 +Hiroshi Kai,Hybrid computation of Cauchy-type singular integral equations.,1998,32,ACM SIGSAM Bulletin,2,db/journals/cca/cca32.html#KaiN98,http://doi.acm.org/10.1145/297049.570090 +Jan Verschelde,Polynomial homotopy continuation on GPUs.,2015,49,ACM Comm. Computer Algebra,4,db/journals/cca/cca49.html#VerscheldeY15,http://doi.acm.org/10.1145/2893803.2893810 +V. Mitrofanov,Standalone MCR-based numerical engine.,1997,31,ACM SIGSAM Bulletin,3,db/journals/cca/cca31.html#MitrofanovZ97,http://doi.acm.org/10.1145/271130.271208 +Peter Raulefs,A short survey on the state of the art in matching and unification problems.,1979,13,ACM SIGSAM Bulletin,2,db/journals/cca/cca13.html#RaulefsSSU79,http://doi.acm.org/10.1145/1089208.1089210 +Franz Winkler,"Seventh RIMS Conference on ""Formula Manipulation and its Application to Mathematical Study"".",1988,22,ACM SIGSAM Bulletin,4,db/journals/cca/cca22.html#Winkler88c,http://doi.acm.org/10.1145/54151.1095028 +Christopher Essex,Numerical monsters.,2000,34,ACM SIGSAM Bulletin,4,db/journals/cca/cca34.html#EssexDS00,http://doi.acm.org/10.1145/377626.377635 +Juan Ignacio García-García,Commutative ideal extensions of abelian groups.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#Garcia-GarciaGR99,http://doi.acm.org/10.1145/347127.347219 +C. Shor,On the q-Weierstrass weights of branch points of superelliptic curves.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#Shor15,http://doi.acm.org/10.1145/2815111.2815143 +Robert M. Corless,Cofactor iteration.,1996,30,ACM SIGSAM Bulletin,1,db/journals/cca/cca30.html#Corless96a,http://doi.acm.org/10.1145/231191.231197 +Nainn-Ping Ke,Symbolic and algebraic computation in robust stability analysis.,2000,34,ACM SIGSAM Bulletin,1,db/journals/cca/cca34.html#Ke00,http://doi.acm.org/10.1145/373500.373506 +,Abstracts of recent doctoral dissertations in computer algebra.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#X15,http://doi.acm.org/10.1145/2768577.2791243 +Kevin McIsaac,Pattern matching algebraic identities.,1985,19,ACM SIGSAM Bulletin,2,db/journals/cca/cca19.html#McIsaac85,http://doi.acm.org/10.1145/1089402.1089403 +Richard J. Fateman,Parsing TEX into mathematics.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#FatemanC99,http://doi.acm.org/10.1145/347127.347441 +Joachim von zur Gathen,A polynomial factorization challenge.,1992,26,ACM SIGSAM Bulletin,2,db/journals/cca/cca26.html#Gathen92,http://doi.acm.org/10.1145/130933.130939 +Wolfgang Küchlin,Public key encryption.,1987,21,ACM SIGSAM Bulletin,3,db/journals/cca/cca21.html#Kuchlin87,http://doi.acm.org/10.1145/29309.29320 +Thomas Wolf,On solving large systems of polynomial equations appearing In discrete differential geometry.,2008,42,ACM Comm. Computer Algebra,3,db/journals/cca/cca42.html#Wolf08,http://doi.acm.org/10.1145/1504347.1504354 +D. Binger,Optimization on networks.,1987,21,ACM SIGSAM Bulletin,3,db/journals/cca/cca21.html#Binger87a,http://doi.acm.org/10.1145/29309.29318 +Andrey V. Banshchikov,Analysis of dynamics of large-dimensional mechanical systems by the tools of computer algebra.,2008,42,ACM Comm. Computer Algebra,3,db/journals/cca/cca42.html#Banshchikov08,http://doi.acm.org/10.1145/1504347.1504370 +Carl Ponder,Parallel processors and systems for algebraic manipulation: current work.,1988,22,ACM SIGSAM Bulletin,3,db/journals/cca/cca22.html#Ponder88a,http://doi.acm.org/10.1145/49456.49458 +Grégoire Lecerf,A short survey on Kantorovich: like theorems for Newton's method.,2016,50,ACM Comm. Computer Algebra,1,db/journals/cca/cca50.html#LecerfS16,http://doi.acm.org/10.1145/2930964.2930965 +Heike Faßbender,Constructing symmetric structure-preserving strong linearizations.,2016,50,ACM Comm. Computer Algebra,4,db/journals/cca/cca50.html#FassbenderPS16,http://doi.acm.org/10.1145/3055282.3055292 +Andreas Maurischat,Non-free iterative differential modules.,2016,50,ACM Comm. Computer Algebra,4,db/journals/cca/cca50.html#Maurischat16,http://doi.acm.org/10.1145/3055282.3055283 +Michael Rothstein,A structure theorem for exponential and primitive functions a preliminary report.,1976,10,ACM SIGSAM Bulletin,4,db/journals/cca/cca10.html#RothsteinC76,http://doi.acm.org/10.1145/1088222.1088225 +Christian Heckler,Parallelism in MuPAD.,1997,31,ACM SIGSAM Bulletin,3,db/journals/cca/cca31.html#HecklerKMSZ97,http://doi.acm.org/10.1145/271130.271201 +Tak W. Yan,A rational function arithmetic and simplification system in common Lisp.,1991,25,ACM SIGSAM Bulletin,4,db/journals/cca/cca25.html#Yan91,http://doi.acm.org/10.1145/122508.122510 +William M. Farmer,MKM: a new interdisciplinary field of research.,2004,38,ACM SIGSAM Bulletin,2,db/journals/cca/cca38.html#Farmer04,http://doi.acm.org/10.1145/1041791.1041795 +Paul S. Wang,Factoring multivariate polynomials over algebraic number fields in MACSYMA.,1975,9,ACM SIGSAM Bulletin,3,db/journals/cca/cca9.html#Wang75,http://doi.acm.org/10.1145/1088309.1088316 +Juan Gerardo Alcázar,Symmetry detection of rational space curves.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#AlcazarHM15,http://doi.acm.org/10.1145/2815111.2815122 +Manfred Minimair,MR: Macaulay Resultant package for Maple.,2004,38,ACM SIGSAM Bulletin,1,db/journals/cca/cca38.html#Minimair04,http://doi.acm.org/10.1145/980175.980187 +Richard Zippel,A MACSYMA solution to problem 8.,1975,9,ACM SIGSAM Bulletin,1,db/journals/cca/cca9.html#Zippel75,http://doi.acm.org/10.1145/1088295.1088297 +John Abbott,CoCoA: computations in commutative algebra.,2007,41,ACM Comm. Computer Algebra,3,db/journals/cca/cca41.html#AbbottBCR07,http://doi.acm.org/10.1145/1358190.1358204 +James H. Davenport,On writing OpenMath content dictionaries.,2000,34,ACM SIGSAM Bulletin,2,db/journals/cca/cca34.html#Davenport00,http://doi.acm.org/10.1145/362001.362012 +Natalia Dück,The degree compatible Gröbner fan for linear codes.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#DuckCM15,http://doi.acm.org/10.1145/2768577.2768599 +Greg Reid,Geometric completion of differential systems using numeric-symbolic continuation.,2002,36,ACM SIGSAM Bulletin,2,db/journals/cca/cca36.html#ReidSV02,http://doi.acm.org/10.1145/581316.581317 +Robert M. Corless,Southern Ontario Numerical Analysis Day.,2000,34,ACM SIGSAM Bulletin,3,db/journals/cca/cca34.html#Corless00,http://doi.acm.org/10.1145/377604.569766 +Matthew England,Report on the 40th International Symposium on Symbolic and Algebraic Computation.,2015,49,ACM Comm. Computer Algebra,3,db/journals/cca/cca49.html#England15,http://doi.acm.org/10.1145/2850449.2850450 +Stuart I. Feldman,A brief description of Altran.,1975,9,ACM SIGSAM Bulletin,4,db/journals/cca/cca9.html#Feldman75a,http://doi.acm.org/10.1145/1088322.1088325 +Takuya Hirata,A symbolic equation modeler for electric circuits.,2015,49,ACM Comm. Computer Algebra,3,db/journals/cca/cca49.html#HirataYH15,http://doi.acm.org/10.1145/2850449.2850455 +Franz Winkler,The Church-Rosser property in computer algebra and special theorem proving: an investigation of critical-pair/completion algorithms (Ph.D. thesis).,1984,18,ACM SIGSAM Bulletin,3,db/journals/cca/cca18.html#Winkler84,http://doi.acm.org/10.1145/1089389.1089396 +Wen-shin Lee,Milestones in Computer Algebra (MICA 2016): a workshop celebrating the research of Erick Kaltofen.,2017,51,ACM Comm. Computer Algebra,2,db/journals/cca/cca51.html#Lee17,http://doi.acm.org/10.1145/3151131.3151133 +Hiroshi Kai,Cauchy principal value integral using hybrid integral.,1997,31,ACM SIGSAM Bulletin,3,db/journals/cca/cca31.html#KaiN97,http://doi.acm.org/10.1145/271130.271192 +James H. Davenport,Anatomy of an integral.,1979,13,ACM SIGSAM Bulletin,4,db/journals/cca/cca13.html#Davenport79,http://doi.acm.org/10.1145/1089176.1089178 +David R. Stoutemyer,Multivariate partial fraction expansion.,2008,42,ACM Comm. Computer Algebra,4,db/journals/cca/cca42.html#Stoutemyer08,http://doi.acm.org/10.1145/1504341.1504346 +James Hufford,Some results on finite fields.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Hufford15,http://doi.acm.org/10.1145/2768577.2768603 +Maurice Mignotte,Factorization of univariate polynomials: a statistical study.,1980,14,ACM SIGSAM Bulletin,4,db/journals/cca/cca14.html#Mignotte80a,http://doi.acm.org/10.1145/1089235.1089240 +Gordon F. Royle,Constructing the vertex-transitive graphs on 24 vertices.,1991,25,ACM SIGSAM Bulletin,1,db/journals/cca/cca25.html#Royle91,http://doi.acm.org/10.1145/122525.122533 +Martine Ceberio,Greedy algorithms for optimizing multivariate Horner schemes.,2004,38,ACM SIGSAM Bulletin,1,db/journals/cca/cca38.html#CeberioK04,http://doi.acm.org/10.1145/980175.980179 +Xiao-Shan Gao,Wen-Tsun Wu's academic career.,2006,40,ACM Comm. Computer Algebra,2,db/journals/cca/cca40.html#Gao06,http://doi.acm.org/10.1145/1182553.1182567 +Emma Previato,Evaluation codes and weierstrass semigroups.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Previato15,http://doi.acm.org/10.1145/2768577.2768609 +Richard J. Fateman,Is a LISP machine different from a fortran machine?,1978,12,ACM SIGSAM Bulletin,3,db/journals/cca/cca12.html#Fateman78,http://doi.acm.org/10.1145/1088269.1088271 +Bert Jüttler,C1 spline implicitization of planar curves.,2003,37,ACM SIGSAM Bulletin,3,db/journals/cca/cca37.html#JuttlerSS03,http://doi.acm.org/10.1145/990353.990356 +D. Dane Quinn,Book Review: Topics in Nonlinear Dynamics with Computer Algebra by Richard H. Rand.,1997,31,ACM SIGSAM Bulletin,1,db/journals/cca/cca31.html#Quinn97,http://doi.acm.org/10.1145/251586.570102 +Rüdiger Loos,Amthor's solution of Archimedes' cattle problem.,1977,11,ACM SIGSAM Bulletin,1,db/journals/cca/cca11.html#Loos77a,http://doi.acm.org/10.1145/1088233.1088235 +Tateaki Sasaki,Cancellation errors in multivariate resultant computation with floating-point numbers.,1998,32,ACM SIGSAM Bulletin,4,db/journals/cca/cca32.html#SasakiS98,http://doi.acm.org/10.1145/307733.307738 +Jarl Jensen,On the formulation and solution of shell problems by means of computerized algebraic manipulation.,1979,13,ACM SIGSAM Bulletin,2,db/journals/cca/cca13.html#Jensen79,http://doi.acm.org/10.1145/1089208.1089209 +Bruno Buchberger,Should Students Learn Integration Rules?,1990,24,ACM SIGSAM Bulletin,1,db/journals/cca/cca24.html#Buchberger90,http://doi.acm.org/10.1145/382276.1095228 +José Joaquín Bernal,A notion of multivariate BCH bounds and codes.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#BernalSB15,http://doi.acm.org/10.1145/2768577.2768597 +Robert M. Corless,Report on the SNAP minisymposium at SIAM '98.,1998,32,ACM SIGSAM Bulletin,2,db/journals/cca/cca32.html#CorlessW98,http://doi.acm.org/10.1145/297049.297068 +Murray R. Bremner,Jordan algebras arising from intermolecular recombination.,2005,39,ACM SIGSAM Bulletin,4,db/journals/cca/cca39.html#Bremner05,http://doi.acm.org/10.1145/1140378.1140380 +S. Kamal Abdali,Abstracts.,1984,18,ACM SIGSAM Bulletin,1,db/journals/cca/cca18.html#AbdaliB84,http://doi.acm.org/10.1145/1089348.1089349 +Andrew Toon,Investigating complex data and dynamics via computer algebra.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#Toon15,http://doi.acm.org/10.1145/2815111.2815119 +David Joyner,A Maple package for the decomposition of certain tensor products and restrictions of representations using crystal graphs.,1998,32,ACM SIGSAM Bulletin,2,db/journals/cca/cca32.html#JoynerM98,http://doi.acm.org/10.1145/297049.297059 +Minvydas Ragulskis,The generalized multiplicative operator of differentiation for the construction of analytic solitary solutions to nonlinear differential equations.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Ragulskis15,http://doi.acm.org/10.1145/2768577.2768643 +Olga Caprotti,International symposium on symbolic and algebraic computation poster abstracts 2003.,2003,37,ACM SIGSAM Bulletin,3,db/journals/cca/cca37.html#Caprotti03,http://doi.acm.org/10.1145/1093528.1093529 +Rosemary Carroll Farley,Student undergraduate research projects in linear algebra using a computer algebra system.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#Farley15,http://doi.acm.org/10.1145/2815111.2815118 +Erhard Aichinger,Sonata: a GAP tool for nearring computations.,2016,50,ACM Comm. Computer Algebra,3,db/journals/cca/cca50.html#AichingerY16,http://doi.acm.org/10.1145/3015306.3015310 +Barbara L. Gates,Gentran: an automatic code generation facility for REDUCE.,1985,19,ACM SIGSAM Bulletin,3,db/journals/cca/cca19.html#Gates85,http://doi.acm.org/10.1145/1089411.1089415 +Maurice Mignotte,Inequalities about factors of integer polynomials.,1987,21,ACM SIGSAM Bulletin,4,db/journals/cca/cca21.html#Mignotte87,http://doi.acm.org/10.1145/36330.36336 +Regina Llopis de Trias,A new generation of symbolic and algebraic computation systems.,1984,18,ACM SIGSAM Bulletin,2,db/journals/cca/cca18.html#Trias84,http://doi.acm.org/10.1145/1089369.1089374 +Jed Marti,REDUCE as a lisp benchmark.,1985,19,ACM SIGSAM Bulletin,3,db/journals/cca/cca19.html#MartiH85,http://doi.acm.org/10.1145/1089411.1089413 +Xiao-Shan Gao,Binomial difference ideal and toric difference variety.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Gao15,http://doi.acm.org/10.1145/2768577.2768615 +Paul S. Wang,Implications of symbolic computation for the teaching of mathematics.,1976,10,ACM SIGSAM Bulletin,3,db/journals/cca/cca10.html#Wang76,http://doi.acm.org/10.1145/1088216.1088218 +Nisse Husberg,ANALITIK: principal features of the language and its implementation.,1974,8,ACM SIGSAM Bulletin,3,db/journals/cca/cca8.html#HusbergS74,http://doi.acm.org/10.1145/1086837.1086841 +Stef Graillat,A note on a nearest polynomial with a given root.,2005,39,ACM SIGSAM Bulletin,2,db/journals/cca/cca39.html#Graillat05,http://doi.acm.org/10.1145/1101884.1101887 +Tateaki Sasaki,Approximate algebraic computation: practice and problems.,1997,31,ACM SIGSAM Bulletin,3,db/journals/cca/cca31.html#SasakiSTOK97,http://doi.acm.org/10.1145/271130.271184 +Horst Günter Zimmer,Algorithms in algebraic number theory.,1984,18,ACM SIGSAM Bulletin,2,db/journals/cca/cca18.html#Zimmer84,http://doi.acm.org/10.1145/1089369.1089381 +Steven T. Dougherty,Codes over local rings of order 16 and their gray maps.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#DoughertyS15,http://doi.acm.org/10.1145/2768577.2768586 +Fritz Schwarz,Efficient factorization of linear ODE's.,1994,28,ACM SIGSAM Bulletin,1,db/journals/cca/cca28.html#Schwarz94,http://doi.acm.org/10.1145/182130.182132 +Fritz Schwarz,A reduce package for series analysis by Hadamard's Theorem and QD schemes.,1983,17,ACM SIGSAM Bulletin,1,db/journals/cca/cca17.html#Schwarz83,http://doi.acm.org/10.1145/1089320.1089328 +George Nakos,Fraction-free algorithms for linear and polynomial equations.,1997,31,ACM SIGSAM Bulletin,3,db/journals/cca/cca31.html#NakosTW97,http://doi.acm.org/10.1145/271130.271133 +John Abbott,CoCoA: a laboratory for computations in commutative algebra.,2004,38,ACM SIGSAM Bulletin,1,db/journals/cca/cca38.html#Abbott04,http://doi.acm.org/10.1145/980175.980182 +Anton Leykin,Polynomial homotopy continuation in Macaulay2.,2016,50,ACM Comm. Computer Algebra,3,db/journals/cca/cca50.html#Leykin16,http://doi.acm.org/10.1145/3015306.3015316 +Gilles Villard,Block solution of sparse linear systems over GF (q): the singular case.,1998,32,ACM SIGSAM Bulletin,4,db/journals/cca/cca32.html#Villard98,http://doi.acm.org/10.1145/307733.307737 +William Kahan,Symbolic computation of divided differences.,1999,33,ACM SIGSAM Bulletin,2,db/journals/cca/cca33.html#KahanF99,http://doi.acm.org/10.1145/334714.334716 +Gregory Butler,An improvement to the centralizer algorithm for permutation groups.,1985,19,ACM SIGSAM Bulletin,2,db/journals/cca/cca19.html#Butler85,http://doi.acm.org/10.1145/1089402.1089404 +Siegfried M. Rump,Real root isolation for algebraic polynomials.,1977,11,ACM SIGSAM Bulletin,2,db/journals/cca/cca11.html#Rump77,http://doi.acm.org/10.1145/1088240.1088241 +John P. Fitch,A simple method of taking nth roots of integers.,1974,8,ACM SIGSAM Bulletin,4,db/journals/cca/cca8.html#Fitch74b,http://doi.acm.org/10.1145/1088288.1088292 +Joachim Neubüser,Some remarks on a proposed taxonomy for algebraic computation.,1980,14,ACM SIGSAM Bulletin,1,db/journals/cca/cca14.html#Neubuser80,http://doi.acm.org/10.1145/1089212.1089216 +Siamack Bondari,The McCrimmon radical for identities of degree 3.,1997,31,ACM SIGSAM Bulletin,1,db/journals/cca/cca31.html#BondariH97,http://doi.acm.org/10.1145/251586.251587 +Mario Fioravanti,Computing the topology of an arrangement of parametric or implicit algebraic curves in the Lagrange basis.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#FioravantiGC15,http://doi.acm.org/10.1145/2815111.2815127 +Tateaki Sasaki,Memories on Professor Matu-tarow Noda.,2016,50,ACM Comm. Computer Algebra,2,db/journals/cca/cca50.html#SasakiK16,http://doi.acm.org/10.1145/2992274.2992277 +Michael B. Monagan,Fast parallel multi-point evaluation of sparse polynomials.,2017,51,ACM Comm. Computer Algebra,1,db/journals/cca/cca51.html#MonaganW17,http://doi.acm.org/10.1145/3096730.3096732 +K. T. Arasu,Stickelberger's congruences and perfect sequence constructions.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Arasu15,http://doi.acm.org/10.1145/2768577.2768594 +Hélène Prieto,Mathematica as an OpenMath application.,2000,34,ACM SIGSAM Bulletin,2,db/journals/cca/cca34.html#PrietoDP00,http://doi.acm.org/10.1145/362001.362016 +Massimo Caboara,Group actions on gröbner bases of saturated zero-dimensional binomial ideals.,2008,42,ACM Comm. Computer Algebra,3,db/journals/cca/cca42.html#CaboaraC08,http://doi.acm.org/10.1145/1504347.1504356 +Michael P. Barnett,Symbolic computation of integrals by recurrence.,2003,37,ACM SIGSAM Bulletin,2,db/journals/cca/cca37.html#Barnett03,http://doi.acm.org/10.1145/944567.944571 +Yosuke Sato,Set constraint solver - Gröbner bases for non-numerical domains.,1997,31,ACM SIGSAM Bulletin,3,db/journals/cca/cca31.html#Sato97,http://doi.acm.org/10.1145/271130.271196 +Florian Bundschuh,Global data flow analysis in Aldes.,1983,17,ACM SIGSAM Bulletin,1,db/journals/cca/cca17.html#Bundschuh83,http://doi.acm.org/10.1145/1089320.1089321 +Ilias S. Kotsireas,WWCA 2006 abstracts.,2006,40,ACM Comm. Computer Algebra,2,db/journals/cca/cca40.html#KotsireasZ06,http://doi.acm.org/10.1145/1182553.1182565 +Agustín Marcelo,Radicals of primary submodules.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#MarceloMR99,http://doi.acm.org/10.1145/347127.347310 +Laurent Bernardin,A Java framework for massively distributed symbolic computing.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#Bernardin99,http://doi.acm.org/10.1145/347127.347401 +Peter Ullrich,Closed-form formulas for projecting constructible sets in the theory of algebraically closed fields.,2006,40,ACM Comm. Computer Algebra,2,db/journals/cca/cca40.html#Ullrich06,http://doi.acm.org/10.1145/1182553.1182560 +Ha Q. Le,Computing the minimal telescoper for sums of hypergeometric terms.,2001,35,ACM SIGSAM Bulletin,3,db/journals/cca/cca35.html#Le01,http://doi.acm.org/10.1145/569746.569748 +Michael J. Wester,IMACS Applications of Computer Algebra Conference 1999: summary.,1999,33,ACM SIGSAM Bulletin,2,db/journals/cca/cca33.html#WesterR99,http://doi.acm.org/10.1145/334714.570086 +M. Rochon,Solution to SIGSAM problem no. 5 using schoonschip.,1975,9,ACM SIGSAM Bulletin,4,db/journals/cca/cca9.html#RochonS75,http://doi.acm.org/10.1145/1088322.1088327 +A. M. Ostrowski,On the significance of the theory of convex polyhedra for formal algebra.,1999,33,ACM SIGSAM Bulletin,1,db/journals/cca/cca33.html#Ostrowski99,http://doi.acm.org/10.1145/329984.329986 +Lourdes Juan,On the integration of algebraic functions: computing the logarithmic part.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Juan15,http://doi.acm.org/10.1145/2768577.2768619 +Francis Sergeraert,Constructive algebraic topology.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#Sergeraert99,http://doi.acm.org/10.1145/347127.347138 +Suzy S. Maddah,Formal solutions of completely integrable Pfaffian systems with normal crossings.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Maddah15,http://doi.acm.org/10.1145/2768577.2768626 +Lubjana Beshaj,On Jacobians of curves with superelliptic components.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#BeshajSS15,http://doi.acm.org/10.1145/2815111.2815124 +Robert H. Lewis,Comparison of polynomial-oriented computer algebra systems.,2000,34,ACM SIGSAM Bulletin,1,db/journals/cca/cca34.html#Lewis00,http://doi.acm.org/10.1145/373500.373507 +Albert D. Rich,Function evaluation on branch cuts.,1996,30,ACM SIGSAM Bulletin,2,db/journals/cca/cca30.html#RichJ96,http://doi.acm.org/10.1145/235699.235704 +David J. Jeffrey,Not seeing the roots for the branches: multivalued functions in computer algebra.,2004,38,ACM SIGSAM Bulletin,3,db/journals/cca/cca38.html#JeffreyN04,http://doi.acm.org/10.1145/1040034.1040036 +Dennis Weeks,Formal representations for algebraic numbers.,1974,8,ACM SIGSAM Bulletin,3,db/journals/cca/cca8.html#Weeks74,http://doi.acm.org/10.1145/1086837.1086853 +Changbo Chen,On the representation of constructible sets.,2008,42,ACM Comm. Computer Algebra,3,db/journals/cca/cca42.html#ChenLMPX08,http://doi.acm.org/10.1145/1504347.1504368 +Lewis M. Norton,A note about Laplace transform tables for computer use.,1980,14,ACM SIGSAM Bulletin,2,db/journals/cca/cca14.html#Norton80,http://doi.acm.org/10.1145/1089220.1089225 +Albert Heinle,The SDEval benchmarking toolkit.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#HeinleL15,http://doi.acm.org/10.1145/2768577.2768578 +Franz Winkler,Abstracts of papers in the Journal of Symbolic Computation.,1987,21,ACM SIGSAM Bulletin,4,db/journals/cca/cca21.html#Winkler87d,http://doi.acm.org/10.1145/36330.1094982 +Yacine Bouzidi,Computing separating linear forms for bivariate systems.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#Bouzidi15,http://doi.acm.org/10.1145/2815111.2815123 +Pierre Verbaeten,The automatic construction of pure recurrence relations.,1974,8,ACM SIGSAM Bulletin,3,db/journals/cca/cca8.html#Verbaeten74,http://doi.acm.org/10.1145/1086837.1086854 +Graham H. Campbell,Symbolic integration of expressions involving unspecified functions.,1988,22,ACM SIGSAM Bulletin,1,db/journals/cca/cca22.html#Campbell88,http://doi.acm.org/10.1145/43882.43886 +Paul S. Wang,Titles and abstracts: mathematical symbolic manipulation on the computer and applications.,1980,14,ACM SIGSAM Bulletin,1,db/journals/cca/cca14.html#Wang80,http://doi.acm.org/10.1145/1089212.1089213 +Jean-Pierre Dedieu,Stewart varieties: a direct algebraic model for Stewart platforms.,1990,24,ACM SIGSAM Bulletin,4,db/journals/cca/cca24.html#DedieuN90,http://doi.acm.org/10.1145/101108.101113 +Christopher Manon,Horospherical contraction and Hamiltonian functions on an algebraic group.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#Manon15,http://doi.acm.org/10.1145/2815111.2815149 +David R. Stoutemyer,AskConstants proposes concise non-floats close to floats.,2017,51,ACM Comm. Computer Algebra,1,db/journals/cca/cca51.html#Stoutemyer17,http://doi.acm.org/10.1145/3096730.3096739 +Jeffrey Shallit,A binary algorithm for the Jacobi symbol.,1993,27,ACM SIGSAM Bulletin,1,db/journals/cca/cca27.html#ShallitS93,http://doi.acm.org/10.1145/152379.152384 +P. D. Pearce,Data structures and execution * of Algebraic mode programs for REDUCE.,1983,17,ACM SIGSAM Bulletin,1,db/journals/cca/cca17.html#PearceH83,http://doi.acm.org/10.1145/1089320.1089327 +Mark Giesbrecht,Parametric linear systems: the two parameter case.,1997,31,ACM SIGSAM Bulletin,3,db/journals/cca/cca31.html#GiesbrechtS97,http://doi.acm.org/10.1145/271130.271195 +Michael P. Barnett,Using partial fraction formulas to sum some slowly convergent series analytically for molecular integral calculations.,1989,23,ACM SIGSAM Bulletin,3,db/journals/cca/cca23.html#Barnett89,http://doi.acm.org/10.1145/74646.74648 +Philippe Gimenez,Abstracts of the eighth Spanish meeting on computer algebra and applications: EACA-2002.,2003,37,ACM SIGSAM Bulletin,1,db/journals/cca/cca37.html#Gimenez03,http://doi.acm.org/10.1145/844076.844082 +Steven J. Harrington,A symbolic limit evaluation program in REDUCE.,1979,13,ACM SIGSAM Bulletin,1,db/journals/cca/cca13.html#Harrington79,http://doi.acm.org/10.1145/1088282.1088286 +Annie A. M. Cuyt,Sparse multivariate polynomial interpolation via the quotient-difference algorithm.,2008,42,ACM Comm. Computer Algebra,3,db/journals/cca/cca42.html#CuytL08,http://doi.acm.org/10.1145/1504347.1504363 +Juan Félix San-Juan,Solving problems symbolically by using Poisson Series Processors.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#San-JuanASG99,http://doi.acm.org/10.1145/347127.347317 +Luca De Feo,Deterministic root finding in finite fields.,2015,49,ACM Comm. Computer Algebra,3,db/journals/cca/cca49.html#FeoPQ15,http://doi.acm.org/10.1145/2850449.2850457 +Richard D. Jenks,Problem #11: generation of Runge-Kutta equations.,1976,10,ACM SIGSAM Bulletin,1,db/journals/cca/cca10.html#Jenks76,http://doi.acm.org/10.1145/1093390.1093391 +Alkiviadis G. Akritas,"A complete list of references for the paper: ""a remark on the proposed syllabus for an AMS short course on computer algebra"".",1980,14,ACM SIGSAM Bulletin,3,db/journals/cca/cca14.html#Akritas80a,http://doi.acm.org/10.1145/1089230.1089233 +Nicole Sutherland,A demonstration of computing galois groups of polynomials in magma.,2017,51,ACM Comm. Computer Algebra,3,db/journals/cca/cca51.html#Sutherland17,http://doi.acm.org/10.1145/3177795.3177796 +Hans Zassenhaus,Position statement for EUROCAL 85: the efficiency of mathematical models.,1984,18,ACM SIGSAM Bulletin,2,db/journals/cca/cca18.html#Zassenhaus84,http://doi.acm.org/10.1145/1089369.1089372 +Bruno Buchberger,Some properties of Gröbner-bases for polynomial ideals.,1976,10,ACM SIGSAM Bulletin,4,db/journals/cca/cca10.html#Buchberger76a,http://doi.acm.org/10.1145/1088222.1088224 +Bruce W. Char,Report on the 7th annual maple workshop.,1990,24,ACM SIGSAM Bulletin,1,db/journals/cca/cca24.html#Char90,http://doi.acm.org/10.1145/382276.382277 +Helmer Aslaksen,Multiple-valued complex functions and computer algebra.,1996,30,ACM SIGSAM Bulletin,2,db/journals/cca/cca30.html#Aslaksen96,http://doi.acm.org/10.1145/235699.235702 +G. Fleitas Morales,Algorithms to compute the eigenvalues of a p-adic matrix.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#Morales99,http://doi.acm.org/10.1145/347127.347208 +John Abbott,What is new in CoCoALib and CoCoA-5?,2015,49,ACM Comm. Computer Algebra,4,db/journals/cca/cca49.html#AbbottB15,http://doi.acm.org/10.1145/2893803.2893805 +Richard J. Fateman,Final problem set excerpts.,1976,10,ACM SIGSAM Bulletin,3,db/journals/cca/cca10.html#Fateman76,http://doi.acm.org/10.1145/1088216.1088217 +Edward W. Ng,Symbolic integration of a class of algebraic functions.,1974,8,ACM SIGSAM Bulletin,3,db/journals/cca/cca8.html#Ng74,http://doi.acm.org/10.1145/1086837.1086855 +Yves Bertot,CtCoq: an environment for mathematical reasoning.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#Group99,http://doi.acm.org/10.1145/347127.347405 +Fei Wang,Proof of a series solution for euler's trinomial equation.,2016,50,ACM Comm. Computer Algebra,4,db/journals/cca/cca50.html#Wang16,http://doi.acm.org/10.1145/3055282.3055284 +Tomás Recio,Computing Weil's descente variety.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#Recio99,http://doi.acm.org/10.1145/347127.347136 +Bruno Salvy,Examples of automatic asymptotic expansions.,1991,25,ACM SIGSAM Bulletin,2,db/journals/cca/cca25.html#Salvy91,http://doi.acm.org/10.1145/122520.122521 +Grete Hermann,The question of finitely many steps in polynomial ideal theory.,1998,32,ACM SIGSAM Bulletin,3,db/journals/cca/cca32.html#Hermann98,http://doi.acm.org/10.1145/307339.307342 +Luis álvarez,On some real problems in computer vision which yield to algebraic system of equations.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#AlvarezS99,http://doi.acm.org/10.1145/347127.347143 +Omar León Sánchez,Parametrized logarithmic equations and their Galois theory.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Sanchez15,http://doi.acm.org/10.1145/2768577.2768624 +Franz Winkler,Abstracts of papers in the Journal of Symbolic Computation.,1988,22,ACM SIGSAM Bulletin,3,db/journals/cca/cca22.html#Winkler88a,http://doi.acm.org/10.1145/49456.1094988 +John P. Fitch,A solution of problem #3 using CAMAL.,1974,8,ACM SIGSAM Bulletin,4,db/journals/cca/cca8.html#Fitch74a,http://doi.acm.org/10.1145/1088288.1088291 +Kenneth Weber,An experiment in high-precision arithmetic on shared memory multiprocessors.,1990,24,ACM SIGSAM Bulletin,2,db/journals/cca/cca24.html#Weber90,http://doi.acm.org/10.1145/1089419.1089422 +Maurice Mignotte,On the separation of the roots of a polynomial (extended abstract).,1976,10,ACM SIGSAM Bulletin,2,db/journals/cca/cca10.html#Mignotte76,http://doi.acm.org/10.1145/1093397.1093400 +Gavin Harrison,Probabilistic analysis of block wiedemann for leading invariant factors.,2016,50,ACM Comm. Computer Algebra,4,db/journals/cca/cca50.html#HarrisonJS16,http://doi.acm.org/10.1145/3055282.3055294 +Bruno Buchberger,Computer algebra: the end of mathematics?,2002,36,ACM SIGSAM Bulletin,1,db/journals/cca/cca36.html#Buchberger02,http://doi.acm.org/10.1145/565145.565147 +Markus Maurer,LiDIA - a library for computational number theory.,1997,31,ACM SIGSAM Bulletin,3,db/journals/cca/cca31.html#MaurerPW97,http://doi.acm.org/10.1145/271130.271206 +R. William Gosper Jr.,The solutions of yey2= x and yey = x.,1998,32,ACM SIGSAM Bulletin,1,db/journals/cca/cca32.html#Gosper98,http://doi.acm.org/10.1145/294833.294837 +Volker Weispfenning,Admissible orders and linear forms.,1987,21,ACM SIGSAM Bulletin,2,db/journals/cca/cca21.html#Weispfenning87,http://doi.acm.org/10.1145/24554.24557 +Takanori Yasuda,A multivariate quadratic challenge toward post-quantum generation cryptography.,2015,49,ACM Comm. Computer Algebra,3,db/journals/cca/cca49.html#YasudaDHTS15,http://doi.acm.org/10.1145/2850449.2850462 +Zhonggang Zeng,A Matlab package computing polynomial roots and multiplicities.,2004,38,ACM SIGSAM Bulletin,1,db/journals/cca/cca38.html#Zeng04,http://doi.acm.org/10.1145/980175.980189 +Knut Bahr,Utilizing the FORMAC novelties.,1975,9,ACM SIGSAM Bulletin,1,db/journals/cca/cca9.html#Bahr75,http://doi.acm.org/10.1145/1088295.1088299 +Patrizia M. Gianni,Symbolic and algebraic computation research in Italy.,1987,21,ACM SIGSAM Bulletin,2,db/journals/cca/cca21.html#GianniMM87,http://doi.acm.org/10.1145/24554.24556 +B. F. Caviness,A note on the complexity of algebraic differentiation.,1977,11,ACM SIGSAM Bulletin,3,db/journals/cca/cca11.html#CavinessE77,http://doi.acm.org/10.1145/1088248.1088249 +J. A. van Hulzen,Special purpose differentiation algorithms.,1975,9,ACM SIGSAM Bulletin,2,db/journals/cca/cca9.html#Hulzen75,http://doi.acm.org/10.1145/1088301.1088306 +Laureano Lambán,Simplicial sets in the EAT system.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#LambanPR99,http://doi.acm.org/10.1145/347127.347259 +George M. Tzoumas,Apollonius circle conflict.,2005,39,ACM SIGSAM Bulletin,4,db/journals/cca/cca39.html#TzoumasE05,http://doi.acm.org/10.1145/1140378.1140388 +Andreas Sorgatz,Dynamic modules: software integration in MuPAD.,1997,31,ACM SIGSAM Bulletin,3,db/journals/cca/cca31.html#Sorgatz97,http://doi.acm.org/10.1145/271130.271200 +Ryoya Fukasaku,CGSQE/SyNRAC: a real quantifier elimination package based on the computation of comprehensive Gröbner systems.,2016,50,ACM Comm. Computer Algebra,3,db/journals/cca/cca50.html#FukasakuIS16,http://doi.acm.org/10.1145/3015306.3015313 +Richard J. Fateman,Solution to problem #7 using MACSYMA.,1974,8,ACM SIGSAM Bulletin,2,db/journals/cca/cca8.html#FatemanMW74,http://doi.acm.org/10.1145/1086830.1086832 +M. Clarkson,MACSYMS's inverse Laplace transform.,1989,23,ACM SIGSAM Bulletin,1,db/journals/cca/cca23.html#Clarkson89,http://doi.acm.org/10.1145/66062.66066 +Joos Heintz,An efficient quantifier elimination algorithm for algebraically closed fields of any characteristic.,1975,9,ACM SIGSAM Bulletin,4,db/journals/cca/cca9.html#HeintzW75,http://doi.acm.org/10.1145/1088322.1088324 +Volker Weispfenning,Deciding linear-exponential problems.,2000,34,ACM SIGSAM Bulletin,1,db/journals/cca/cca34.html#Weispfenning00,http://doi.acm.org/10.1145/373500.373513 +Christian Eder,A survey on signature-based Gröbner basis computations.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#EderF15,http://doi.acm.org/10.1145/2815111.2815156 +Dahira Dali,Local stability of cubic differential systems.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#DaliM15,http://doi.acm.org/10.1145/2768577.2768636 +Paul Gordan,Invariants of binary forms.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#Gordan99,http://doi.acm.org/10.1145/347127.347446 +Alkiviadis G. Akritas,A short note on a new method for polynomial real root isolation.,1978,12,ACM SIGSAM Bulletin,4,db/journals/cca/cca12.html#Akritas78,http://doi.acm.org/10.1145/1088276.1088277 +Gaston H. Gonnet,Examples of Maple applied to problems from the American Mathematical Monthly.,1988,22,ACM SIGSAM Bulletin,2,db/journals/cca/cca22.html#Gonnet88,http://doi.acm.org/10.1145/43876.43877 +Peter E. Glotov,On the greatest common right divisor of Ore polynomials with polynomial coefficients which depend on a parameter.,1998,32,ACM SIGSAM Bulletin,2,db/journals/cca/cca32.html#Glotov98,http://doi.acm.org/10.1145/297049.570088 +Leo Bachmair,A simplified proof of the characterization theorem for Gröbner-bases.,1980,14,ACM SIGSAM Bulletin,4,db/journals/cca/cca14.html#BachmairB80,http://doi.acm.org/10.1145/1089235.1089238 +Sonia L. Rueda,An approximate algorithm to parametrize algebraic curves.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#RuedaSS15,http://doi.acm.org/10.1145/2815111.2815130 +Sonia L. Rueda,Differential elimination by differential specialization of Sylvester style matrices.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Rueda15,http://doi.acm.org/10.1145/2768577.2768635 +Nelson H. F. Beebe,Bibliography archives.,1998,32,ACM SIGSAM Bulletin,1,db/journals/cca/cca32.html#Beebe98,http://doi.acm.org/10.1145/294833.294835 +Henry G. Baker,Sparse polynomials and linear logic.,1993,27,ACM SIGSAM Bulletin,4,db/journals/cca/cca27.html#Baker93,http://doi.acm.org/10.1145/182125.182128 +James H. Griesmer,A SCRATCHPAD solution to problem #7.,1975,9,ACM SIGSAM Bulletin,3,db/journals/cca/cca9.html#GriesmerJY75,http://doi.acm.org/10.1145/1088309.1088314 +Ronald Peikert,Automated theorem proving: the resolution method.,1987,21,ACM SIGSAM Bulletin,3,db/journals/cca/cca21.html#Peikert87,http://doi.acm.org/10.1145/29309.29319 +Ekaterina Shemyakova,Symbolic-algebraic methods for linear partial differential operators.,2007,41,ACM Comm. Computer Algebra,3,db/journals/cca/cca41.html#Shemyakova07,http://doi.acm.org/10.1145/1358190.1358194 +Richard G. Carter,Efficient detection of hessian matrix sparsity pattern.,2016,50,ACM Comm. Computer Algebra,4,db/journals/cca/cca50.html#CarterHS16,http://doi.acm.org/10.1145/3055282.3055287 +Akira Suzuki,Implementation of CGS and CGB on Risa/Asir and other computer algebra systems using Suzuki-Sato algorithm.,2007,41,ACM Comm. Computer Algebra,3,db/journals/cca/cca41.html#SuzukiS07,http://doi.acm.org/10.1145/1358190.1358200 +Richard J. Fateman,A simple display package for polynomials and rational functions in common Lisp.,1991,25,ACM SIGSAM Bulletin,4,db/journals/cca/cca25.html#FatemanL91,http://doi.acm.org/10.1145/122508.122509 +Cetin Cetinkaya,Book Reviews.,1997,31,ACM SIGSAM Bulletin,1,db/journals/cca/cca31.html#Cetinkaya97,http://doi.acm.org/10.1145/251586.570101 +Astrid Franz,Using computer algebra methods to determine the chemical dimension of finitely ramified Sierpinski carpets.,2002,36,ACM SIGSAM Bulletin,2,db/journals/cca/cca36.html#FranzS002,http://doi.acm.org/10.1145/581316.581318 +James H. Davenport,What do we want from a high-level language?,1982,16,ACM SIGSAM Bulletin,4,db/journals/cca/cca16.html#Davenport82b,http://doi.acm.org/10.1145/1089310.1089313 +Malihe Aliasgari,A Johnson-type bound for group codes and lattices.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Aliasgari0P15,http://doi.acm.org/10.1145/2768577.2768592 +Richard J. Fateman,Speeding up Lisp-based symbolic mathematics.,1996,30,ACM SIGSAM Bulletin,1,db/journals/cca/cca30.html#FatemanH96,http://doi.acm.org/10.1145/231191.231195 +Robert M. Corless,The bohemian eigenvalue project.,2016,50,ACM Comm. Computer Algebra,4,db/journals/cca/cca50.html#CorlessT16,http://doi.acm.org/10.1145/3055282.3055289 +Bernard Lacolle,Spinor analysis and symbolic computation of partition functions.,1992,26,ACM SIGSAM Bulletin,4,db/journals/cca/cca26.html#Lacolle92,http://doi.acm.org/10.1145/147105.147110 +Jim Purtilo,On implementing arbitrary precision arithmetic in NIL: an exercise in data abstraction.,1980,14,ACM SIGSAM Bulletin,1,db/journals/cca/cca14.html#Purtilo80,http://doi.acm.org/10.1145/1089212.1089215 +Ferruccio Orecchia,Implicitization of a general union of parametric varieties.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#Orecchia99,http://doi.acm.org/10.1145/347127.347314 +Andy Novocin,Factoring univariate polynomials over the rationals.,2008,42,ACM Comm. Computer Algebra,3,db/journals/cca/cca42.html#NovocinH08,http://doi.acm.org/10.1145/1504347.1504365 +H. Michael Möller,Good non-zeros of polynomials.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#Moller99,http://doi.acm.org/10.1145/347127.347131 +D. Binger,Burnside's theorem.,1987,21,ACM SIGSAM Bulletin,3,db/journals/cca/cca21.html#Binger87,http://doi.acm.org/10.1145/29309.29314 +Giuseppe Mazzarella,Improved simplification of odd and even functions in REDUCE.,1985,19,ACM SIGSAM Bulletin,2,db/journals/cca/cca19.html#Mazzarella85,http://doi.acm.org/10.1145/1089402.1089407 +S. Yu. Slavyanov,Database of the special functions of mathematical physics.,1999,33,ACM SIGSAM Bulletin,1,db/journals/cca/cca33.html#SlavyanovPLY99,http://doi.acm.org/10.1145/329984.329988 +Göktürk üçoluk,A proposal for extensions to reduce.,1982,16,ACM SIGSAM Bulletin,2,db/journals/cca/cca16.html#UcolukHK82,http://doi.acm.org/10.1145/1089292.1089295 +Julien Roques,Galois groups of difference equations on elliptic curves.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#Roques15,http://doi.acm.org/10.1145/2768577.2768630 +Jon L. White,LISP/370: a short technical description of the implementation.,1978,12,ACM SIGSAM Bulletin,4,db/journals/cca/cca12.html#White78,http://doi.acm.org/10.1145/1088276.1088280 +David Joyner,GUAVA: an error-correcting codes package.,2005,39,ACM SIGSAM Bulletin,2,db/journals/cca/cca39.html#Joyner05a,http://doi.acm.org/10.1145/1101884.1101890 +Kevin G. Hare,Rapid computation of Bernoulli and related numbers.,2000,34,ACM SIGSAM Bulletin,1,db/journals/cca/cca34.html#Hare00,http://doi.acm.org/10.1145/373500.373504 +Ivan I. Shevchenko,Algorithms of numeric deduction of analytical expressions.,1993,27,ACM SIGSAM Bulletin,1,db/journals/cca/cca27.html#ShevchenkoV93,http://doi.acm.org/10.1145/152379.152380 +Viviane Baladi,A program for computing Puiseux expansions.,1990,24,ACM SIGSAM Bulletin,4,db/journals/cca/cca24.html#BaladiG90,http://doi.acm.org/10.1145/101108.101112 +Ioannis Z. Emiris,Research workshop on algebraic representations in computer-aided design for complex shapes.,2015,49,ACM Comm. Computer Algebra,4,db/journals/cca/cca49.html#Emiris15,http://doi.acm.org/10.1145/2893803.2893811 +Daniel Lichtblau,East coast copmuter algebra day 2017.,2017,51,ACM Comm. Computer Algebra,2,db/journals/cca/cca51.html#Lichtblau17,http://doi.acm.org/10.1145/3151131.3151134 +Francis J. Wright,Interactive mathematics via the Web using MathML.,2000,34,ACM SIGSAM Bulletin,2,db/journals/cca/cca34.html#Wright00,http://doi.acm.org/10.1145/362001.362022 +Achim Hornecker,CloudMath: mathematical collaboration within the cloud.,2015,49,ACM Comm. Computer Algebra,4,db/journals/cca/cca49.html#Hornecker15,http://doi.acm.org/10.1145/2893803.2893808 +F. Leon Pritchard,On initial value problems for ordinary differential-algebraic equations.,1998,32,ACM SIGSAM Bulletin,2,db/journals/cca/cca32.html#PritchardS98,http://doi.acm.org/10.1145/297049.570091 +Ruth Shtokhamer,Attempts in local simplification of non nested radicals.,1977,11,ACM SIGSAM Bulletin,1,db/journals/cca/cca11.html#Shtokhamer77,http://doi.acm.org/10.1145/1088233.1088238 +Justo Peralta,Graded codes by G-sets.,1999,33,ACM SIGSAM Bulletin,3,db/journals/cca/cca33.html#PeraltaT99,http://doi.acm.org/10.1145/347127.347316 +Robert-Michel di Scala,SYPAC: a pascal based computer algebra system for micro-computers.,1982,16,ACM SIGSAM Bulletin,3,db/journals/cca/cca16.html#Scala82,http://doi.acm.org/10.1145/1089302.1089304 +Markus Lauer,A solution to Kahan's problem (SIGSAM problem no. 9).,1977,11,ACM SIGSAM Bulletin,2,db/journals/cca/cca11.html#Lauer77,http://doi.acm.org/10.1145/1088240.1088244 +Ana Lucila Sandoval Orozco,Optimum shortened cyclic codes for multiple burst-error correction.,2015,49,ACM Comm. Computer Algebra,1,db/journals/cca/cca49.html#OrozcoGB15,http://doi.acm.org/10.1145/2768577.2768610 +Richard J. Fateman,Why computer algebra systems some* can't solve simple equations.,1996,30,ACM SIGSAM Bulletin,2,db/journals/cca/cca30.html#Fateman96,http://doi.acm.org/10.1145/235699.235701 +Brent Gregory,Analysis of the binary complexity of asymptotically fast algorithms for linear system solving.,1988,22,ACM SIGSAM Bulletin,2,db/journals/cca/cca22.html#GregoryK88,http://doi.acm.org/10.1145/43876.43880 +Inge Frick,A non-numerical computation involving sums of many products of finite rotation matrices for spin 3/2.,1974,8,ACM SIGSAM Bulletin,3,db/journals/cca/cca8.html#Frick74,http://doi.acm.org/10.1145/1086837.1086850 +Lingchuan Meng,Abstracts of recent doctoral dissertations in computer algebra.,2016,50,ACM Comm. Computer Algebra,1,db/journals/cca/cca50.html#Meng16,http://doi.acm.org/10.1145/2930964.2930970 +Eberhard Schrüfer,"A comment on ""A note on Einstein metrics"".",1988,22,ACM SIGSAM Bulletin,3,db/journals/cca/cca22.html#Schrufer88,http://doi.acm.org/10.1145/49456.49459 +Christopher W. Brown,QEPCAD B: a system for computing with semi-algebraic sets via cylindrical algebraic decomposition.,2004,38,ACM SIGSAM Bulletin,1,db/journals/cca/cca38.html#Brown04,http://doi.acm.org/10.1145/980175.980185 +Arrigo Triulzi,OpenMath support under CSL-hosted REDUCE.,2000,34,ACM SIGSAM Bulletin,2,db/journals/cca/cca34.html#Triulzi00,http://doi.acm.org/10.1145/362001.362017 +Wolfgang Bibel,Logic and algebraic computation.,1984,18,ACM SIGSAM Bulletin,2,db/journals/cca/cca18.html#Bibel84,http://doi.acm.org/10.1145/1089369.1089382 +Niels Lubbes,Circles on surfaces.,2015,49,ACM Comm. Computer Algebra,2,db/journals/cca/cca49.html#Lubbes15,http://doi.acm.org/10.1145/2815111.2815128 +Toni Kasper,Integration in finite terms: the liouville theory.,1980,14,ACM SIGSAM Bulletin,4,db/journals/cca/cca14.html#Kasper80,http://doi.acm.org/10.1145/1089235.1089236 +Birkett Huber,Computing gröbner fans of toric ideals.,2000,34,ACM SIGSAM Bulletin,1,db/journals/cca/cca34.html#Huber00,http://doi.acm.org/10.1145/373500.373503 +Alfonso Miola,Report on previous activities at AAECC.,1988,22,ACM SIGSAM Bulletin,1,db/journals/cca/cca22.html#Miola88,http://doi.acm.org/10.1145/43882.43888 +Robert F. Smith,CASM (Central's Assembly SiMulator): The Advantages of Using a Simulator to Teach Assembly Language.,1992,3,Computer Science Education,1,db/journals/csedu/csedu3.html#Smith92,https://doi.org/10.1080/0899340920030106 +Alan Zaring,CCL: A Subject Language for Compiler Projects.,2001,11,Computer Science Education,2,db/journals/csedu/csedu11.html#Zaring01,https://doi.org/10.1076/csed.11.2.135.3839 +Angela Carbone,Computer science and IT teachers' conceptions of successful and unsuccessful teaching: A phenomenographic study.,2007,17,Computer Science Education,4,db/journals/csedu/csedu17.html#CarboneMF07,https://doi.org/10.1080/08993400701706586 +Raj Tewari,A Framework for Incorporating Object-Oriented Software Engineering in the Undergraduate Curriculum.,1993,4,Computer Science Education,1,db/journals/csedu/csedu4.html#TewariF93,https://doi.org/10.1080/0899340930040106 +Richard G. Epstein,Introducing Object-Orientedness into a Breadth-First Introductory Curriculum.,1993,4,Computer Science Education,1,db/journals/csedu/csedu4.html#EpsteinT93,https://doi.org/10.1080/0899340930040105 +Jürgen Börstler,Editorial: Learning and Teaching Object Technology.,2003,13,Computer Science Education,4,db/journals/csedu/csedu13.html#BorstlerS03,https://doi.org/10.1076/csed.13.4.243.17494 +Mark Zarb,Breaking the communication barrier: guidelines to aid communication within pair programming.,2015,25,Computer Science Education,2,db/journals/csedu/csedu25.html#ZarbH15,https://doi.org/10.1080/08993408.2015.1033125 +John Fulcher,Experience With Teaching a Graduate Neural Networks Course.,1992,3,Computer Science Education,3,db/journals/csedu/csedu3.html#Fulcher92a,https://doi.org/10.1080/0899340920030308 +Susan Bridges,A Placement Examination in Computer Science.,1996,7,Computer Science Education,1,db/journals/csedu/csedu7.html#BridgesMB96,https://doi.org/10.1080/0899340960070102 +Margot Postema,Tool Support for Teaching the Personal Software Process.,2000,10,Computer Science Education,2,db/journals/csedu/csedu10.html#PostemaDMC00,https://doi.org/10.1076/0899-3408(200008)10:2*1-C*FT179 +Neomi Liberman,Regressed experts as a new state in teachers' professional development: lessons from Computer Science teachers' adjustments to substantial changes in the curriculum.,2012,22,Computer Science Education,3,db/journals/csedu/csedu22.html#LibermanKB12,https://doi.org/10.1080/08993408.2012.721663 +John Fulcher,What are our Options for Teaching Parallel Architectures in a Laboratory Context?.,1992,3,Computer Science Education,1,db/journals/csedu/csedu3.html#Fulcher92,https://doi.org/10.1080/0899340920030102 +Lauren E. Margulieux,Employing subgoals in computer programming education.,2016,26,Computer Science Education,1,db/journals/csedu/csedu26.html#MargulieuxCG16,https://doi.org/10.1080/08993408.2016.1144429 +Patrick Costello,Analysis of a Recursive Algorithm for Computing Binomial Coefficients.,1990,1,Computer Science Education,4,db/journals/csedu/csedu1.html#Costello90,https://doi.org/10.1080/0899340900010405 +J. Mark Pullen,The Network Workbench and Constructivism: Learning Protocols by Programming.,2001,11,Computer Science Education,3,db/journals/csedu/csedu11.html#Pullen01,https://doi.org/10.1076/csed.11.3.189.3836 +Linda Mannila,What about a simple language? Analyzing the difficulties in learning to program.,2006,16,Computer Science Education,3,db/journals/csedu/csedu16.html#MannilaPS06,https://doi.org/10.1080/08993400600912384 +Alison Hull,Motivational and metacognitive feedback in SQL-Tutor.,2015,25,Computer Science Education,2,db/journals/csedu/csedu25.html#HullB15,https://doi.org/10.1080/08993408.2015.1033143 +Henning Christiansen 0001,Teaching Computer Languages and Elementary Theory for Mixed Audiences at University Level.,2004,14,Computer Science Education,3,db/journals/csedu/csedu14.html#Christiansen04,https://doi.org/10.1080/0899340042000302727 +Stephen W. Clyde,Design-n-Code Fests as Capstone Projects for an Object-Oriented Software Development Course.,2003,13,Computer Science Education,4,db/journals/csedu/csedu13.html#ClydeC03,https://doi.org/10.1076/csed.13.4.289.17495 +Donald T. Ferris,Book Review.,1992,3,Computer Science Education,3,db/journals/csedu/csedu3.html#Ferris92,https://doi.org/10.1080/0899340920030310 +Katrina Falkner,"Supporting and structuring ""contributing student pedagogy"" in Computer Science curricula.",2012,22,Computer Science Education,4,db/journals/csedu/csedu22.html#FalknerF12,https://doi.org/10.1080/08993408.2012.727713 +Michael Kölling,The BlueJ System and its Pedagogy.,2003,13,Computer Science Education,4,db/journals/csedu/csedu13.html#KollingQPR03,https://doi.org/10.1076/csed.13.4.249.17496 +Gongzhu Hu,A Simulated Hardware for an Operating System Course Project.,1994,5,Computer Science Education,1,db/journals/csedu/csedu5.html#Hu94,https://doi.org/10.1080/0899340940050104 +Terence Charlton,Using Facebook to improve communication in undergraduate software development teams.,2009,19,Computer Science Education,4,db/journals/csedu/csedu19.html#CharltonDD09,https://doi.org/10.1080/08993400903384935 +Ahmad H. Nasri,Developing a Hypermedia System for Computer Systems Education.,1995,6,Computer Science Education,1,db/journals/csedu/csedu6.html#Nasri95,https://doi.org/10.1080/0899340950060103 +Salla Willman,On study habits on an introductory course on programming.,2015,25,Computer Science Education,3,db/journals/csedu/csedu25.html#WillmanLKRLS15,https://doi.org/10.1080/08993408.2015.1073829 +David A. Scanlan,Variables and Cognitive Factors Predicting Intermediate-Level Programming Success: A Preliminary Study.,1990,1,Computer Science Education,4,db/journals/csedu/csedu1.html#Scanlan90,https://doi.org/10.1080/0899340900010407 +James F. Barlak,Successfully Teaching Relational Database Concepts to Computer Literacy Students: The Spreadsheet Metaphor.,1995,6,Computer Science Education,2,db/journals/csedu/csedu6.html#BarlakS95,https://doi.org/10.1080/0899340950060204 +David Alan Grier,Integrating Computer Science with Statistical Analysis.,1991,2,Computer Science Education,1,db/journals/csedu/csedu2.html#Grier91,https://doi.org/10.1080/0899340910020103 +Michael Barnett 0001,Dysfunctional Programming: Teaching Programming Using Formal Methods to Noncomputer Science Majors.,1994,5,Computer Science Education,1,db/journals/csedu/csedu5.html#BarnettW94,https://doi.org/10.1080/0899340940050108 +Tapio Salakoski,Editorial comments.,2006,16,Computer Science Education,3,db/journals/csedu/csedu16.html#Salakoski06,https://doi.org/10.1080/08993400600911725 +John D. McGregor,Book Review.,1990,1,Computer Science Education,3,db/journals/csedu/csedu1.html#McGregor90,https://doi.org/10.1080/0899340900010309 +Sally Hamouda,A basic recursion concept inventory.,2017,27,Computer Science Education,2,db/journals/csedu/csedu27.html#HamoudaEEES17,https://doi.org/10.1080/08993408.2017.1414728 +Betty L. Hickman,Computer Literacy: The Next Generation.,1995,6,Computer Science Education,1,db/journals/csedu/csedu6.html#HickmanC95,https://doi.org/10.1080/0899340950060104 +Debora Maria Coelho Nascimento,Open source projects in software engineering education: a mapping study.,2015,25,Computer Science Education,1,db/journals/csedu/csedu25.html#NascimentoBC15,https://doi.org/10.1080/08993408.2015.1033159 +Douglas D. Grant,Object-Orientation and Ada: Towards Ada 9X in a Computer Science/Software Engineering Degree.,1993,4,Computer Science Education,1,db/journals/csedu/csedu4.html#Grant93,https://doi.org/10.1080/0899340930040110 +Hossein Saiedian,Mathematics of Computing.,1992,3,Computer Science Education,3,db/journals/csedu/csedu3.html#Saiedian92,https://doi.org/10.1080/0899340920030302 +Richard J. Whiddett,Teaching Information Systems Management Skills: Using Integrated Projects and Case Studies.,2000,10,Computer Science Education,2,db/journals/csedu/csedu10.html#WhiddettJH00,https://doi.org/10.1076/0899-3408(200008)10:2*1-C*FT165 +Allison S. Liu,The role of physicality in rich programming environments.,2013,23,Computer Science Education,4,db/journals/csedu/csedu23.html#LiuSFS13,https://doi.org/10.1080/08993408.2013.847165 +George Struble,Most Effective Lab Exercises.,1990,1,Computer Science Education,3,db/journals/csedu/csedu1.html#Struble90,https://doi.org/10.1080/0899340900010308 +Kiumi Akingbehin,A Capstone Design Course Based on Computing Curricula 1991.,1994,5,Computer Science Education,2,db/journals/csedu/csedu5.html#AkingbehinMT94,https://doi.org/10.1080/0899340940050207 +Lynne Fowler,CASE Tools: Constructivism and its Application to Learning and Usability of Software Engineering Tools.,2001,11,Computer Science Education,3,db/journals/csedu/csedu11.html#FowlerAA01,https://doi.org/10.1076/csed.11.3.261.3835 +Nancy Ide,Interdisciplinary Majors Involving Computer Science.,1991,2,Computer Science Education,2,db/journals/csedu/csedu2.html#IdeH91,https://doi.org/10.1080/0899340910020204 +Dale Skrien,Learning Appreciation for Design Patterns by Doing it the Hard Way First.,2003,13,Computer Science Education,4,db/journals/csedu/csedu13.html#Skrien03,https://doi.org/10.1076/csed.13.4.305.17491 +Allen B. Tucker,Developing the Breadth-First Curriculum: Results of a Three-Year Experiment.,1998,8,Computer Science Education,1,db/journals/csedu/csedu8.html#TuckerBCKU98,https://doi.org/10.1076/csed.8.1.27.3826 +Michal Armoni,Reversing: a fundamental idea in computer science.,2008,18,Computer Science Education,3,db/journals/csedu/csedu18.html#ArmoniG08,https://doi.org/10.1080/08993400802332670 +Bruce R. Maxim,Experiences With an Open Systems Computing Laboratory.,1996,7,Computer Science Education,2,db/journals/csedu/csedu7.html#MaximEMYTA96,https://doi.org/10.1080/0899340960070209 +Geoffrey L. Herman,How do students misunderstand number representations?,2011,21,Computer Science Education,3,db/journals/csedu/csedu21.html#HermanZL11,https://doi.org/10.1080/08993408.2011.611712 +Larry Hughes,Teaching Tools for CS1 and CS2.,1995,6,Computer Science Education,1,db/journals/csedu/csedu6.html#Hughes95,https://doi.org/10.1080/0899340950060101 +Ven Yu Sien,An investigation of difficulties experienced by students developing unified modelling language (UML) class and sequence diagrams.,2011,21,Computer Science Education,4,db/journals/csedu/csedu21.html#Sien11,https://doi.org/10.1080/08993408.2011.630127 +Matthias Felleisen,The TeachScheme! Project: Computing and Programming for Every Student.,2004,14,Computer Science Education,1,db/journals/csedu/csedu14.html#FelleisenFFK04,https://doi.org/10.1076/csed.14.1.55.23499 +Andreas Schäfer,From boring to scoring - a collaborative serious game for learning and practicing mathematical logic for computer science education.,2013,23,Computer Science Education,2,db/journals/csedu/csedu23.html#SchaferHLSBZ13,https://doi.org/10.1080/08993408.2013.778040 +Judith Sims-Knight,Teaching Object-Oriented Design Without Programming: A Progress Report.,1993,4,Computer Science Education,1,db/journals/csedu/csedu4.html#Sims-KnightU93,https://doi.org/10.1080/0899340930040113 +Ilona Box,Toward an understanding of the variation in approaches to analysis and design.,2009,19,Computer Science Education,2,db/journals/csedu/csedu19.html#Box09,https://doi.org/10.1080/08993400902909674 +Stuart Hansen,Graph Magic: A Visual Graph Package for Students.,2003,13,Computer Science Education,1,db/journals/csedu/csedu13.html#HansenTPM03,https://doi.org/10.1076/csed.13.1.53.13541 +Martyn Clark,A Personal Theory of Teaching Computing Through Final Year Projects.,1999,9,Computer Science Education,3,db/journals/csedu/csedu9.html#ClarkB99,https://doi.org/10.1076/csed.9.3.200.3801 +Mary Beth Rosson,Introduction to Special Issue: The OOPSLA'92 Educators' Symposium.,1993,4,Computer Science Education,1,db/journals/csedu/csedu4.html#RossonH93,https://doi.org/10.1080/0899340930040101 +Judy Kay,A Microworld for Developing Learning Design Strategies.,1992,3,Computer Science Education,2,db/journals/csedu/csedu3.html#KayT92,https://doi.org/10.1080/0899340920030203 +Mordechai Ben-Ari,Computer Science Education in High School.,2004,14,Computer Science Education,1,db/journals/csedu/csedu14.html#Ben-Ari04,https://doi.org/10.1076/csed.14.1.1.23498 +Tesfa Haile,Analysis of Testing Procedure Used by Students as It Relates to Software Engineering.,1991,2,Computer Science Education,3,db/journals/csedu/csedu2.html#Haile91,https://doi.org/10.1080/0899340910020307 +H. Chad Lane,Teaching the tacit knowledge of programming to noviceswith natural language tutoring.,2005,15,Computer Science Education,3,db/journals/csedu/csedu15.html#LaneV05,https://doi.org/10.1080/08993400500224286 +Ibrahim çetin,Learning sorting algorithms through visualization construction.,2016,26,Computer Science Education,1,db/journals/csedu/csedu26.html#CetinA16,https://doi.org/10.1080/08993408.2016.1160664 +Andreas Zendler,Process as content in computer science education: empirical determination of central processes.,2008,18,Computer Science Education,4,db/journals/csedu/csedu18.html#ZendlerSK08,https://doi.org/10.1080/08993400802390553 +Peter Chalk,Webworlds - Web-Based Modeling Environments for Learning Software Engineering.,2000,10,Computer Science Education,1,db/journals/csedu/csedu10.html#Chalk00,https://doi.org/10.1076/0899-3408(200004)10:1*1-P*FT039 +Michal Armoni,Reductive thinking in computer science.,2006,16,Computer Science Education,4,db/journals/csedu/csedu16.html#ArmoniGH06,https://doi.org/10.1080/08993400600937845 +Jyoti Bhardwaj,In search of self-efficacy: development of a new instrument for first year Computer Science students.,2017,27,Computer Science Education,2,db/journals/csedu/csedu27.html#Bhardwaj17,https://doi.org/10.1080/08993408.2017.1355522 +Laurie Williams,In Support of Pair Programming in the Introductory Computer Science Course.,2002,12,Computer Science Education,3,db/journals/csedu/csedu12.html#WilliamsWYFM02,https://doi.org/10.1076/csed.12.3.197.8618 +Raja R. A. Issa,Changes in Attitude/Anxiety of Educators Towards Computers.,1990,1,Computer Science Education,4,db/journals/csedu/csedu1.html#IssaL90,https://doi.org/10.1080/0899340900010406 +Kenneth G. Schweller,The Block Pile: A Concrete Example of an Abstract Data Type.,1991,2,Computer Science Education,1,db/journals/csedu/csedu2.html#Schweller91,https://doi.org/10.1080/0899340910020108 +Steven A. Demurjian,The (Non)Importance of a Programming Language in a Software Engineering Course.,1992,3,Computer Science Education,1,db/journals/csedu/csedu3.html#DemurjianPBEN92,https://doi.org/10.1080/0899340920030104 +Jordi Cabot,The MDE Diploma: first international postgraduate specialization in model-driven engineering.,2011,21,Computer Science Education,4,db/journals/csedu/csedu21.html#CabotT11,https://doi.org/10.1080/08993408.2011.630131 +Ville Karavirta,On the use of resubmissions in automatic assessment systems.,2006,16,Computer Science Education,3,db/journals/csedu/csedu16.html#KaravirtaKM06,https://doi.org/10.1080/08993400600912426 +Janet Carter,What are the important gender-related issues in computing at present?,2010,20,Computer Science Education,4,db/journals/csedu/csedu20.html#Carter10,https://doi.org/10.1080/08993408.2010.527683 +Heather Pon-Barry,Expanding capacity and promoting inclusion in introductory computer science: a focus on near-peer mentor preparation and code review.,2017,27,Computer Science Education,1,db/journals/csedu/csedu27.html#Pon-BarryPJ17,https://doi.org/10.1080/08993408.2017.1333270 +Judith Gal-Ezer,Teaching Algorithm Efficiency at CS1 Level: A Different Approach.,2004,14,Computer Science Education,3,db/journals/csedu/csedu14.html#Gal-EzerVZ04,https://doi.org/10.1080/0899340042000302736 +Craig S. Miller,Relating Theory to Actual Results in Computer Science and Human-Computer Interaction.,2003,13,Computer Science Education,3,db/journals/csedu/csedu13.html#Miller03,https://doi.org/10.1076/csed.13.3.227.14944 +Paul J. Jalics,A Profile of Undergraduate Computer Science Curricula.,1995,6,Computer Science Education,2,db/journals/csedu/csedu6.html#JalicsG95,https://doi.org/10.1080/0899340950060205 +Ronald A. Mann,Maintaining Suitable Standards of Scholarship.,1991,2,Computer Science Education,3,db/journals/csedu/csedu2.html#Mann91,https://doi.org/10.1080/0899340910020310 +Jamie Payton,The effects of integrating service learning into computer science: an inter-institutional longitudinal study.,2015,25,Computer Science Education,3,db/journals/csedu/csedu25.html#PaytonBBRZ15,https://doi.org/10.1080/08993408.2015.1086536 +John Derrick,Teaching Communication Protocols.,2000,10,Computer Science Education,3,db/journals/csedu/csedu10.html#DerrickF00,https://doi.org/10.1076/0899-3408(200012)10:3*1-S*FT195 +Mikko Apiola,New perspectives on the pedagogy of programming in a developing country context.,2012,22,Computer Science Education,3,db/journals/csedu/csedu22.html#ApiolaT12,https://doi.org/10.1080/08993408.2012.726871 +Fritz H. Grupe,Computer Acquisitions in Higher Education: Managing a Symbiotic Relationship.,1991,2,Computer Science Education,3,db/journals/csedu/csedu2.html#GrupeS91,https://doi.org/10.1080/0899340910020304 +Elsa Mentz,The effect of incorporating cooperative learning principles in pair programming for student teachers.,2008,18,Computer Science Education,4,db/journals/csedu/csedu18.html#MentzWG08,https://doi.org/10.1080/08993400802461396 +Martin Osborne,Computing Curricula 1991 and the Case for Object-Oriented Methodology.,1993,4,Computer Science Education,1,db/journals/csedu/csedu4.html#Osborne93,https://doi.org/10.1080/0899340930040104 +Fadi P. Deek,A Survey and Critical Analysis of Tools for Learning Programming.,1998,8,Computer Science Education,2,db/journals/csedu/csedu8.html#DeekM98,https://doi.org/10.1076/csed.8.2.130.3820 +Michael C. Hughes,String formatting considered harmful for novice programmers.,2010,20,Computer Science Education,3,db/journals/csedu/csedu20.html#HughesJR10,https://doi.org/10.1080/08993408.2010.507335 +Päivi Kinnunen,Phenomenography and grounded theory as research methods in computing education research field.,2012,22,Computer Science Education,2,db/journals/csedu/csedu22.html#KinnunenS12a,https://doi.org/10.1080/08993408.2012.692928 +Hossein Saiedian,A Multi-Purpose Simulation Project for Engaging Students and Teaching Object Concepts.,1998,8,Computer Science Education,1,db/journals/csedu/csedu8.html#Saiedian98,https://doi.org/10.1076/csed.8.1.64.3825 +Susan Bergin,Predicting introductory programming performance: A multi-institutional multivariate study.,2006,16,Computer Science Education,4,db/journals/csedu/csedu16.html#BerginR06,https://doi.org/10.1080/08993400600997096 +Laura M. Leventhal,Two for One: Squeezing Human-Computer Interaction and Software Engineering into a Core Computer Science Course.,2003,13,Computer Science Education,3,db/journals/csedu/csedu13.html#LeventhalB03,https://doi.org/10.1076/csed.13.3.177.14946 +Jens Bennedsen,Categorizing Pedagogical patterns by teaching activities and Pedagogical values.,2006,16,Computer Science Education,2,db/journals/csedu/csedu16.html#BennedsenE06,https://doi.org/10.1080/08993400600768091 +Lori Postner,What resources do CS1 students use and how do they use them?,2005,15,Computer Science Education,3,db/journals/csedu/csedu15.html#PostnerS05,https://doi.org/10.1080/08993400500224252 +Laura Marie Leventhal,Breaking with Tradition: Using Rapid Prototyping In The Software Engineering Course.,1991,2,Computer Science Education,3,db/journals/csedu/csedu2.html#LeventhalM91,https://doi.org/10.1080/0899340910020309 +John W. McCormick,Model Railroading and Computer Fundamentals.,2007,17,Computer Science Education,2,db/journals/csedu/csedu17.html#McCormick07,https://doi.org/10.1080/08993400601165644 +Keith Barker,Laboratory Experiences in Computer Science and Engineering.,1988,1,Computer Science Education,1,db/journals/csedu/csedu1.html#BarkerSS88,https://doi.org/10.1080/0899340880010102 +åsa Cajander,On valuing peers: theories of learning and intercultural competence.,2012,22,Computer Science Education,4,db/journals/csedu/csedu22.html#CajanderDM12,https://doi.org/10.1080/08993408.2012.727710 +Michael de Raadt,A Review of Australasian Investigations into Problem Solving and the Novice Programmer.,2007,17,Computer Science Education,3,db/journals/csedu/csedu17.html#Raadt07,https://doi.org/10.1080/08993400701538104 +Sarah Drummond,Evaluating Groupware Support for Software Engineering Students.,2001,11,Computer Science Education,1,db/journals/csedu/csedu11.html#DrummondBR01,https://doi.org/10.1076/csed.11.1.33.3843 +Lionel E. Deimel,Software Engineering for the Liberal Arts Environment.,1992,3,Computer Science Education,2,db/journals/csedu/csedu3.html#DeimelP92,https://doi.org/10.1080/0899340920030205 +Susan M. Merritt,An Expanded Taxonomy of Sorting Algorithms.,1994,5,Computer Science Education,1,db/journals/csedu/csedu5.html#Merritt94,https://doi.org/10.1080/0899340940050107 +John W. Hamblen,Computer Manpower: Through 1984-1985.,1989,1,Computer Science Education,2,db/journals/csedu/csedu1.html#Hamblen89,https://doi.org/10.1080/0899340890010202 +Stephan K. Chalup,The machine intelligence Hex project.,2005,15,Computer Science Education,4,db/journals/csedu/csedu15.html#ChalupMR05,https://doi.org/10.1080/08993400500222066 +Ronit Ben-Bassat Levy,Adapting and merging methodologies in doctoral research.,2009,19,Computer Science Education,2,db/journals/csedu/csedu19.html#LevyB09,https://doi.org/10.1080/08993400902937550 +Miguel-ángel Sicilia,Strategies for teaching object-oriented concepts with Java.,2006,16,Computer Science Education,1,db/journals/csedu/csedu16.html#Sicilia06,https://doi.org/10.1080/08993400500344431 +John Fulcher,CSE Special Australasian Issue - Guest Editorial.,2000,10,Computer Science Education,2,db/journals/csedu/csedu10.html#FulcherC00,https://doi.org/10.1076/0899-3408(200008)10:2*1-C*FT107 +Connor Hughes,Towards a Framework for Characterising Concurrent Comprehension.,2005,15,Computer Science Education,1,db/journals/csedu/csedu15.html#HughesBEOa05,https://doi.org/10.1080/08993400500056522 +Jürgen Börstler,Experience with Work-Product Oriented Software Development Projects.,2001,11,Computer Science Education,2,db/journals/csedu/csedu11.html#Borstler01,https://doi.org/10.1076/csed.11.2.111.3840 +Elizabeth Burd,Building project management communities: exploring the contribution of patterns supported by web 2.0 technologies.,2009,19,Computer Science Education,4,db/journals/csedu/csedu19.html#BurdHAJ09,https://doi.org/10.1080/08993400903384901 +Hossein Saiedian,Integrating CASE Technology into Software Engineering Education.,1994,5,Computer Science Education,2,db/journals/csedu/csedu5.html#Saiedian94,https://doi.org/10.1080/0899340940050205 +G. Michael Schneider,Using Parallel Merge Sort to Teach Fundamental Concepts in Distributed Parallelism.,1999,9,Computer Science Education,2,db/journals/csedu/csedu9.html#Schneider99,https://doi.org/10.1076/csed.9.2.148.3810 +Ching-Kuang Shene,Multithreaded Programming Can Strengthen an Operating Systems Course.,2002,12,Computer Science Education,4,db/journals/csedu/csedu12.html#Shene02,https://doi.org/10.1076/csed.12.4.275.8624 +Sally Fincher,Editorial.,2002,12,Computer Science Education,4,db/journals/csedu/csedu12.html#FincherM02,https://doi.org/10.1076/csed.12.4.253.8623 +Ola Berge,Comprehensive Object-Oriented Learning - An Introduction.,2003,13,Computer Science Education,4,db/journals/csedu/csedu13.html#BergeFGHK03,https://doi.org/10.1076/csed.13.4.331.17490 +Tony Greening,Editorial.,2001,11,Computer Science Education,3,db/journals/csedu/csedu11.html#GreeningK01,https://doi.org/10.1076/csed.11.3.167.3834 +Ibrahim çetin,Visualization: a tool for enhancing students' concept images of basic object-oriented concepts.,2013,23,Computer Science Education,1,db/journals/csedu/csedu23.html#Cetin13,https://doi.org/10.1080/08993408.2012.760903 +Jens Bennedsen,The dissemination of pedagogical patterns.,2006,16,Computer Science Education,2,db/journals/csedu/csedu16.html#Bennedsen06,https://doi.org/10.1080/08993400600733590 +Matti Tedre,Three traditions of computing: what educators should know.,2008,18,Computer Science Education,3,db/journals/csedu/csedu18.html#TedreS08,https://doi.org/10.1080/08993400802332332 +Gregory F. Bachelis,A Novel Approach to Introducing Parallel Algorithms in Undergraduate Computer Science Courses.,1992,3,Computer Science Education,1,db/journals/csedu/csedu3.html#BachelisJMS92,https://doi.org/10.1080/0899340920030103 +Orest Pilskalns,An entrepreneurial approach to project-based courses.,2009,19,Computer Science Education,3,db/journals/csedu/csedu19.html#Pilskalns09,https://doi.org/10.1080/08993400903255234 +Keith Barker,Editorial.,1998,8,Computer Science Education,1,db/journals/csedu/csedu8.html#Barker98,https://doi.org/10.1076/csed.8.1.1.3823 +Peter J. Clarke,Dr. Robert B. France - contributions to model-driven engineering and software engineering education.,2018,28,Computer Science Education,1,db/journals/csedu/csedu28.html#ClarkeC18,https://doi.org/10.1080/08993408.2018.1493811 +Larry Hughes,The S-Machine: An Alternative Approach to Teaching Assembler Programming.,1995,6,Computer Science Education,2,db/journals/csedu/csedu6.html#Hughes95a,https://doi.org/10.1080/0899340950060202 +Gregory W. Hislop,Integrating Agile Practices into Software Engineering Courses.,2002,12,Computer Science Education,3,db/journals/csedu/csedu12.html#HislopLNMMW02,https://doi.org/10.1076/csed.12.3.169.8619 +Vicki L. Almstrum,Special Issue on Import/Export Relationships to Computer Science Education Research.,2004,14,Computer Science Education,4,db/journals/csedu/csedu14.html#AlmstrumHG04,https://doi.org/10.1080/0899340042000333697 +Symeon Retalis,Eliciting design patterns for e-learning systems.,2006,16,Computer Science Education,2,db/journals/csedu/csedu16.html#RetalisGD06,https://doi.org/10.1080/08993400600773323 +Ian H. Witten,Teaching Professional Skills for the Computer Science Researcher.,1992,3,Computer Science Education,2,db/journals/csedu/csedu3.html#Witten92,https://doi.org/10.1080/0899340920030206 +Cynthia Taylor,Computer science concept inventories: past and future.,2014,24,Computer Science Education,4,db/journals/csedu/csedu24.html#TaylorZPWLC14,https://doi.org/10.1080/08993408.2014.970779 +Seth James Nielson,PLAYGROUND: preparing students for the cyber battleground.,2017,26,Computer Science Education,4,db/journals/csedu/csedu26.html#Nielson17,https://doi.org/10.1080/08993408.2016.1271526 +Fadi P. Deek,Status of Computer Science Education in Secondary Schools: One State's Perspective.,1999,9,Computer Science Education,2,db/journals/csedu/csedu9.html#DeekK99,https://doi.org/10.1076/csed.9.2.89.3808 +Anthony V. Robins,Learning edge momentum: a new account of outcomes in CS1.,2010,20,Computer Science Education,1,db/journals/csedu/csedu20.html#Robins10,https://doi.org/10.1080/08993401003612167 +J. Philip East,Applying Software Design Methodology to Instructional Design.,2004,14,Computer Science Education,4,db/journals/csedu/csedu14.html#East04,https://doi.org/10.1080/0899340042000303438 +Michèlle Friend,Middle school girls' envisioned future in computing.,2015,25,Computer Science Education,2,db/journals/csedu/csedu25.html#Friend15,https://doi.org/10.1080/08993408.2015.1033128 +Anthony Scime,Globalized computing education: Europe and the United States.,2008,18,Computer Science Education,1,db/journals/csedu/csedu18.html#Scime08,https://doi.org/10.1080/08993400701869491 +Jan van der Veen,Using Workflow for Projects in Higher Education.,2000,10,Computer Science Education,3,db/journals/csedu/csedu10.html#VeenJC00,https://doi.org/10.1076/0899-3408(200012)10:3*1-S*FT283 +Reem Al-Mahmood,Approaches to the Implementation of Generic Graduate Attributes in Australian ICT Undergraduate Education.,2007,17,Computer Science Education,3,db/journals/csedu/csedu17.html#Al-MahmoodG07,https://doi.org/10.1080/08993400701538054 +Catherine Lang,Outreach programmes to attract girls into computing: how the best laid plans can some* fail.,2015,25,Computer Science Education,3,db/journals/csedu/csedu25.html#LangFCF15,https://doi.org/10.1080/08993408.2015.1067008 +Gayle J. Yaverbaum,A Normative Approach to Computer Education: University and Government Cooperate in an Effort to Develop Curriculum.,1988,1,Computer Science Education,1,db/journals/csedu/csedu1.html#YaverbaumNN88,https://doi.org/10.1080/0899340880010106 +Adrian A. de Freitas,Classroom Live: a software-assisted gamification tool.,2013,23,Computer Science Education,2,db/journals/csedu/csedu23.html#FreitasF13,https://doi.org/10.1080/08993408.2013.780449 +Philip Machanick,A social construction approach to computer science education.,2007,17,Computer Science Education,1,db/journals/csedu/csedu17.html#Machanick07,https://doi.org/10.1080/08993400600971067 +Yifat Ben-David Kolikant,Establishing Computer Science Professional Norms Among High-School Students.,2004,14,Computer Science Education,1,db/journals/csedu/csedu14.html#KolikantP04,https://doi.org/10.1076/csed.14.1.21.23497 +George Struble,Most Effective Lab Exercises.,1989,1,Computer Science Education,2,db/journals/csedu/csedu1.html#Struble89,https://doi.org/10.1080/0899340890010208 +Josh D. Tenenberg,Knowing what I know: An investigation of undergraduate knowledge and self-knowledge of data structures.,2005,15,Computer Science Education,4,db/journals/csedu/csedu15.html#TenenbergM05,https://doi.org/10.1080/08993400500307677 +Judy Robertson,The influence of a game-making project on male and female learners' attitudes to computing.,2013,23,Computer Science Education,1,db/journals/csedu/csedu23.html#Robertson13,https://doi.org/10.1080/08993408.2013.774155 +Justus H. Piater,Planning readings: a comparative exploration of basic algorithms.,2009,19,Computer Science Education,3,db/journals/csedu/csedu19.html#Piater09,https://doi.org/10.1080/08993400903255226 +John Minor Ross,C Programming Textbooks: Selection Considerations.,1994,5,Computer Science Education,1,db/journals/csedu/csedu5.html#RossH94,https://doi.org/10.1080/0899340940050103 +Frank A. Cioch,Teaching Software Design Using Both Functional and Object-Oriented Decomposition.,1990,1,Computer Science Education,3,db/journals/csedu/csedu1.html#Cioch90,https://doi.org/10.1080/0899340900010304 +James A. Foster,(In)Formal Methods: Teaching Program Derivation Via the Moore Method.,1995,6,Computer Science Education,1,db/journals/csedu/csedu6.html#FosterBHS95,https://doi.org/10.1080/0899340950060105 +Jim E. Greer,A Comparison of Instructional Treatments for Introducing Recursion.,1989,1,Computer Science Education,2,db/journals/csedu/csedu1.html#Greer89,https://doi.org/10.1080/0899340890010204 +Mike Clancy,Models and Areas for CS Education Research.,2001,11,Computer Science Education,4,db/journals/csedu/csedu11.html#ClancySGFD01,https://doi.org/10.1076/csed.11.4.323.3827 +Raina Mason,Mindstorms robots and the application of cognitive load theory in introductory programming.,2013,23,Computer Science Education,4,db/journals/csedu/csedu23.html#MasonC13,https://doi.org/10.1080/08993408.2013.847152 +Robert B. Heckendorn,Building a Beowulf: Leveraging Research and Department Needs for Student Enrichment via Project Based Learning.,2002,12,Computer Science Education,4,db/journals/csedu/csedu12.html#Heckendorn02,https://doi.org/10.1076/csed.12.4.255.8620 +Dae-Kyoo Kim,Opinions on computing education in Korean K-12 system: higher education perspective.,2015,25,Computer Science Education,4,db/journals/csedu/csedu25.html#KimJLDM15a,https://doi.org/10.1080/08993408.2016.1140409 +Nathaniel Titterton,Experiences with lab-centric instruction.,2010,20,Computer Science Education,2,db/journals/csedu/csedu20.html#TittertonLC10,https://doi.org/10.1080/08993408.2010.486256 +Alberto Sampaio,Improving computing courses from the points of view of students and teachers: a review and an empirical study.,2012,22,Computer Science Education,2,db/journals/csedu/csedu22.html#SampaioS12,https://doi.org/10.1080/08993408.2012.692920 +Stephen Cummins,Investigating shareable feedback tags for programming assignments.,2011,21,Computer Science Education,1,db/journals/csedu/csedu21.html#CumminsBH11,https://doi.org/10.1080/08993408.2011.557584 +Andrew Luxton-Reilly,Constructive evaluation: a pedagogy of student-contributed assessment.,2010,20,Computer Science Education,2,db/journals/csedu/csedu20.html#Luxton-ReillyD10,https://doi.org/10.1080/08993408.2010.486275 +Orni Meerbaum-Salant,Learning computer science concepts with Scratch.,2013,23,Computer Science Education,3,db/journals/csedu/csedu23.html#Meerbaum-SalantAB13,https://doi.org/10.1080/08993408.2013.832022 +Thomas Lancaster,A Comparison of Source Code Plagiarism Detection Engines.,2004,14,Computer Science Education,2,db/journals/csedu/csedu14.html#LancasterC04,https://doi.org/10.1080/08993400412331363843 +James McDonald,Why Is Software Project Management Difficult? And What That Implies for Teaching Software Project Management.,2001,11,Computer Science Education,1,db/journals/csedu/csedu11.html#McDonald01,https://doi.org/10.1076/csed.11.1.55.3845 +Curtis Sollohub,Programming Templates: Professional Programmer Knowledge Needed By the Novice.,1991,2,Computer Science Education,3,db/journals/csedu/csedu2.html#Sollohub91,https://doi.org/10.1080/0899340910020306 +Ahmad Taherkhani,Categorizing variations of student-implemented sorting algorithms.,2012,22,Computer Science Education,2,db/journals/csedu/csedu22.html#TaherkhaniKM12,https://doi.org/10.1080/08993408.2012.692917 +Rayford B. Vaughn,Teaching Industrial Practices in an Undergraduate Software Engineering Course.,2001,11,Computer Science Education,1,db/journals/csedu/csedu11.html#Vaughn01,https://doi.org/10.1076/csed.11.1.21.3844 +Andrew Luxton-Reilly,A systematic review of tools that support peer assessment.,2009,19,Computer Science Education,4,db/journals/csedu/csedu19.html#Luxton-Reilly09,https://doi.org/10.1080/08993400903384844 +Jonas Boustedt,Students' understanding of the concept of interface in a situated context.,2009,19,Computer Science Education,1,db/journals/csedu/csedu19.html#Boustedt09,https://doi.org/10.1080/08993400902819980 +David Kotz,A Data-Parallel Programming Library for Education (DAPPLE).,1995,6,Computer Science Education,2,db/journals/csedu/csedu6.html#Kotz95,https://doi.org/10.1080/0899340950060203 +Rosalee Wolfe,Curricular Considerations for Supporting Careers in Computer Graphics.,2003,13,Computer Science Education,1,db/journals/csedu/csedu13.html#WolfeLMFSCO03,https://doi.org/10.1076/csed.13.1.31.13539 +Judith Gal-Ezer,Teaching Software Designing Skills.,2000,10,Computer Science Education,1,db/journals/csedu/csedu10.html#Gal-EzerZ00,https://doi.org/10.1076/0899-3408(200004)10:1*1-P*FT025 +Wilf R. LaLonde,Making Object-Oriented Concepts Play a Central Role in Academic Curricula.,1993,4,Computer Science Education,1,db/journals/csedu/csedu4.html#LaLonde93,https://doi.org/10.1080/0899340930040103 +John T. Gorgone,Computing Sciences Accreditation: A Cooperative Effort in CIS.,1989,1,Computer Science Education,2,db/journals/csedu/csedu1.html#GorgoneM89,https://doi.org/10.1080/0899340890010203 +William A. Wulf,Computer Science and Software Engineering: Splitting is the Wrong Solution.,1992,3,Computer Science Education,2,db/journals/csedu/csedu3.html#Wulf92,https://doi.org/10.1080/0899340920030204 +Suzanne W. Dietrich,An Educational Tool for Formal Relational Database Query Languages.,1993,4,Computer Science Education,2,db/journals/csedu/csedu4.html#Dietrich93,https://doi.org/10.1080/0899340930040201 +James D. Kiper,Language Choice for CS1 and CS2: Experiences from Two Universities.,1996,7,Computer Science Education,1,db/journals/csedu/csedu7.html#KiperA96,https://doi.org/10.1080/0899340960070103 +Neena Thota,Holistic approach to learning and teaching introductory object-oriented programming.,2010,20,Computer Science Education,2,db/journals/csedu/csedu20.html#ThotaW10,https://doi.org/10.1080/08993408.2010.486260 +Esko Nuutila,PBL and Computer Programming - The Seven Steps Method with Adaptations.,2005,15,Computer Science Education,2,db/journals/csedu/csedu15.html#NuutilaTM05,https://doi.org/10.1080/08993400500150788 +Carsten Schulte,Koli Calling 2009 and 2010.,2012,22,Computer Science Education,2,db/journals/csedu/csedu22.html#SchulteS12,https://doi.org/10.1080/08993408.2012.692909 +Roli Varma,Why so few women enroll in computing? Gender and ethnic differences in students' perception.,2010,20,Computer Science Education,4,db/journals/csedu/csedu20.html#Varma10,https://doi.org/10.1080/08993408.2010.527697 +Patricia T. Montague,A Correctness Proof for Binary Search.,1991,2,Computer Science Education,1,db/journals/csedu/csedu2.html#Montague91,https://doi.org/10.1080/0899340910020106 +Thomas F. Hain,Senior Design Project Course: A Case Study.,1992,3,Computer Science Education,2,db/journals/csedu/csedu3.html#HainJ92,https://doi.org/10.1080/0899340920030207 +Matt Bower,Discourse analysis of teaching computing online.,2009,19,Computer Science Education,2,db/journals/csedu/csedu19.html#Bower09,https://doi.org/10.1080/08993400902909500 +Peter J. Denning,Transformational Events.,2006,16,Computer Science Education,2,db/journals/csedu/csedu16.html#DenningH06,https://doi.org/10.1080/08993400600768158 +May C. Abboud,Problem Solving and Program Design: A Pedagogical Approach.,1994,5,Computer Science Education,1,db/journals/csedu/csedu5.html#Abboud94,https://doi.org/10.1080/0899340940050105 +Kathleen J. Lehman,Women planning to major in computer science: Who are they and what makes them unique?,2017,26,Computer Science Education,4,db/journals/csedu/csedu26.html#LehmanSZ17,https://doi.org/10.1080/08993408.2016.1271536 +Laura Marie Leventhal,Beyond Just a Job: Expectations of Computer Science Students.,1989,1,Computer Science Education,2,db/journals/csedu/csedu1.html#LeventhalC89,https://doi.org/10.1080/0899340890010205 +Stephen J. Hartley,More Experience with MINIX in an Operating Systems Lab.,1993,4,Computer Science Education,2,db/journals/csedu/csedu4.html#Hartley93,https://doi.org/10.1080/0899340930040203 +Carl E. Wieman,Editorial for special issue on concept inventories in computing.,2014,24,Computer Science Education,4,db/journals/csedu/csedu24.html#Wieman14,https://doi.org/10.1080/08993408.2014.970780 +Christian Wagenknecht,Teaching Nondeterministic and Universal Automata Using SCHEME.,1998,8,Computer Science Education,3,db/journals/csedu/csedu8.html#WagenknechtF98,https://doi.org/10.1076/csed.8.3.197.7089 +Hossein Saiedian,Practical Software Engineering Education.,2001,11,Computer Science Education,1,db/journals/csedu/csedu11.html#Saiedian01,https://doi.org/10.1076/csed.11.1.3.3842 +George Struble,Most Effective Lab Exercises.,1988,1,Computer Science Education,1,db/journals/csedu/csedu1.html#Struble88,https://doi.org/10.1080/0899340880010108 +Dean Sanders,Writing Activities Can Improve Learning in Computer Science Courses.,1991,2,Computer Science Education,2,db/journals/csedu/csedu2.html#Sanders91,https://doi.org/10.1080/0899340910020207 +Tom Whaley,A Case Study in ADT Implementation Verification.,1992,3,Computer Science Education,2,db/journals/csedu/csedu3.html#Whaley92,https://doi.org/10.1080/0899340920030208 +Karen P. Walker,Obstacles to Learning a Second Programming Language: An Empirical Study.,1996,7,Computer Science Education,1,db/journals/csedu/csedu7.html#WalkerS96,https://doi.org/10.1080/0899340960070101 +Claude Jard,An Educational Case Study in Protocol Verification and Distributed Observation.,2000,10,Computer Science Education,3,db/journals/csedu/csedu10.html#JardJ00,https://doi.org/10.1076/0899-3408(200012)10:3*1-S*FT203 +Rajesh P. Srivastava,A Microcomputer Interfacing Course for Computer Science Majors.,1991,2,Computer Science Education,1,db/journals/csedu/csedu2.html#Srivastava91,https://doi.org/10.1080/0899340910020105 +Pete Thomas,The effective use of a simple wiki to support collaborative learning activities.,2009,19,Computer Science Education,4,db/journals/csedu/csedu19.html#ThomasKM09,https://doi.org/10.1080/08993400903384943 +Paul Denny,A case study of multi-institutional contributing-student pedagogy.,2012,22,Computer Science Education,4,db/journals/csedu/csedu22.html#DennyCLT12,https://doi.org/10.1080/08993408.2012.727712 +Peter Kugel,Improving Learning Without Improving Teaching.,1989,1,Computer Science Education,2,db/journals/csedu/csedu1.html#Kugel89,https://doi.org/10.1080/0899340890010206 +Jeff Parker,Laboratories in the Computer Science Curriculum.,1990,1,Computer Science Education,3,db/journals/csedu/csedu1.html#ParkerCKMS90,https://doi.org/10.1080/0899340900010303 +Laurie A. Williams,"Experiments with Industry's ""Pair-Programming"" Model in the Computer Science Classroom.",2001,11,Computer Science Education,1,db/journals/csedu/csedu11.html#WilliamsK01,https://doi.org/10.1076/csed.11.1.7.3846 +Noa Ragonis,A long-term investigation of the comprehension of OOP concepts by novices.,2005,15,Computer Science Education,3,db/journals/csedu/csedu15.html#RagonisB05,https://doi.org/10.1080/08993400500224310 +Mats Daniels,Reflections on International Projects in Undergraduate CS Education.,1999,9,Computer Science Education,3,db/journals/csedu/csedu9.html#DanielsBP99,https://doi.org/10.1076/csed.9.3.256.3803 +Jorma Sajaniemi,An Experiment on Using Roles of Variables in Teaching Introductory Programming.,2005,15,Computer Science Education,1,db/journals/csedu/csedu15.html#SajaniemiK05,https://doi.org/10.1080/08993400500056563 +Hossein Saiedian,Organizing and Managing Software Engineering Team Projects.,1996,7,Computer Science Education,1,db/journals/csedu/csedu7.html#Saiedian96,https://doi.org/10.1080/0899340960070107 +Roy Andersson,eXtreme teaching: A framework for continuous improvement.,2006,16,Computer Science Education,3,db/journals/csedu/csedu16.html#AnderssonB06,https://doi.org/10.1080/08993400600912335 +Judith L. Gersting,The Other Two Rs in the Discrete Mathematics Course.,1990,1,Computer Science Education,4,db/journals/csedu/csedu1.html#Gersting90,https://doi.org/10.1080/0899340900010403 +Pekka Kilpeläinen,Do all roads lead to Rome? (Or reductions for dummy travelers).,2010,20,Computer Science Education,3,db/journals/csedu/csedu20.html#Kilpelainen10,https://doi.org/10.1080/08993408.2010.501226 +Francisco Moreno-Seco,Learning Compiler Design as a Research Activity.,1996,7,Computer Science Education,1,db/journals/csedu/csedu7.html#Moreno-SecoF96,https://doi.org/10.1080/0899340960070105 +Janet Liebenberg,Pair programming and secondary school girls' enjoyment of programming and the subject Information Technology (IT).,2012,22,Computer Science Education,3,db/journals/csedu/csedu22.html#LiebenbergMB12,https://doi.org/10.1080/08993408.2012.713180 +Allen B. Tucker,A Breadth-First Introductory Curriculum in Computing.,1991,2,Computer Science Education,3,db/journals/csedu/csedu2.html#TuckerG91,https://doi.org/10.1080/0899340910020308 +Larry Hughes,An Applied Approach to Teaching the Fundamentals of Operating Systems.,2000,10,Computer Science Education,1,db/journals/csedu/csedu10.html#Hughes00,https://doi.org/10.1076/0899-3408(200004)10:1*1-P*FT001 +Keith Miller,Integrating Computer Ethics into the Computer Science Curriculum.,1988,1,Computer Science Education,1,db/journals/csedu/csedu1.html#Miller88,https://doi.org/10.1080/0899340880010104 +Stephen J. Hartley,An Operating Systems Laboratory Based on the SR (Synchronizing Resources) Programming Language.,1992,3,Computer Science Education,3,db/journals/csedu/csedu3.html#Hartley92,https://doi.org/10.1080/0899340920030305 +J. Morgan Morris,Evaluation of Educational Animations: Taxonomy and Recommendations.,1992,3,Computer Science Education,3,db/journals/csedu/csedu3.html#Morris92,https://doi.org/10.1080/0899340920030304 +Edward Brown,A Framework for Student Projects in Computer Networks.,2000,10,Computer Science Education,3,db/journals/csedu/csedu10.html#BrownB00,https://doi.org/10.1076/0899-3408(200012)10:3*1-S*FT267 +Carl W. Turner,Robots in the AI Classroom: What Smart Machines Can Teach Smart Students.,1996,7,Computer Science Education,2,db/journals/csedu/csedu7.html#TurnerFDSH96,https://doi.org/10.1080/0899340960070204 +Philip Hanna,Building professionalism and employability skills: embedding employer engagement within first-year computing modules.,2015,25,Computer Science Education,3,db/journals/csedu/csedu25.html#HannaAKAMCH15,https://doi.org/10.1080/08993408.2015.1085626 +Charles P. Howerton,The Impact of Pre-College Computer Exposure on Student Achievement in Introductory Computer Programming Courses.,1988,1,Computer Science Education,1,db/journals/csedu/csedu1.html#Howerton88,https://doi.org/10.1080/0899340880010107 +Christian Holmboe,Conceptualization and Labelling as Cognitive Challenges for Students of Data Modelling.,2005,15,Computer Science Education,2,db/journals/csedu/csedu15.html#Holmboe05,https://doi.org/10.1080/08993400500150796 +James E. Tomayko,A Comparison of Pair Programming to Inspections for Software Defect Reduction.,2002,12,Computer Science Education,3,db/journals/csedu/csedu12.html#Tomayko02,https://doi.org/10.1076/csed.12.3.213.8614 +Scott A. Wallace,Games and machine learning: a powerful combination in an artificial intelligence course.,2010,20,Computer Science Education,1,db/journals/csedu/csedu20.html#WallaceMR10,https://doi.org/10.1080/08993400903525099 +Paul A. Bailes,Discovering Functional Programming Through Imperative Languages.,1992,3,Computer Science Education,2,db/journals/csedu/csedu3.html#Bailes92,https://doi.org/10.1080/0899340920030202 +Billy E. Gillett,Undergraduate Research Experiences in Parallel Processing.,1991,2,Computer Science Education,1,db/journals/csedu/csedu2.html#GillettP91,https://doi.org/10.1080/0899340910020107 +Geoffrey L. Herman,Designing contributing student pedagogies to promote students' intrinsic motivation to learn.,2012,22,Computer Science Education,4,db/journals/csedu/csedu22.html#Herman12,https://doi.org/10.1080/08993408.2012.727711 +Peter A. Gloor,A Visualization System for Correctness Proofs of Graph Algorithms.,1992,3,Computer Science Education,3,db/journals/csedu/csedu3.html#GloorJMM92,https://doi.org/10.1080/0899340920030309 +Arnulf Mester,Animation of Protocols and Distributed Algorithms.,2000,10,Computer Science Education,3,db/journals/csedu/csedu10.html#MesterK00,https://doi.org/10.1076/0899-3408(200012)10:3*1-S*FT243 +Jerud J. Mead,VMOE: A Virtual Machine Operating Environment for the Computer Systems Curriculum.,1989,1,Computer Science Education,2,db/journals/csedu/csedu1.html#Mead89,https://doi.org/10.1080/0899340890010207 +Sally Fincher,Editorial/Introduction.,1999,9,Computer Science Education,3,db/journals/csedu/csedu9.html#Fincher99,https://doi.org/10.1076/csed.9.3.181.3800 +Dave Feinberg,A simple and affordable TTL processor for the classroom.,2007,17,Computer Science Education,2,db/journals/csedu/csedu17.html#Feinberg07,https://doi.org/10.1080/08993400601165412 +Peter McDonald,Design and Evaluation of an Algorithm Animation of State Space Search Methods.,2002,12,Computer Science Education,4,db/journals/csedu/csedu12.html#McDonaldC02,https://doi.org/10.1076/csed.12.4.301.8622 +Cecile Yehezkel,The contribution of visualization to learning computer architecture.,2007,17,Computer Science Education,2,db/journals/csedu/csedu17.html#YehezkelBD07,https://doi.org/10.1080/08993400601165545 +William J. Collins,How Good Sorts Go Bad.,1992,3,Computer Science Education,3,db/journals/csedu/csedu3.html#CollinsM92,https://doi.org/10.1080/0899340920030306 +David Clark,Fast Tracking the Learning of How to Use Neural Networks as Classifiers.,2000,10,Computer Science Education,2,db/journals/csedu/csedu10.html#Clark00,https://doi.org/10.1076/0899-3408(200008)10:2*1-C*FT129 +Geoffrey L. Herman,A psychometric evaluation of the digital logic concept inventory.,2014,24,Computer Science Education,4,db/journals/csedu/csedu24.html#HermanZL14,https://doi.org/10.1080/08993408.2014.970781 +Ken Abernethy,Some Applications from Software Testing for a Discrete Structures Course.,1991,2,Computer Science Education,1,db/journals/csedu/csedu2.html#Abernethy91,https://doi.org/10.1080/0899340910020102 +Larry J. Crockett,Inductive Explorations With Class 2 Systems.,1994,5,Computer Science Education,2,db/journals/csedu/csedu5.html#Crockett94,https://doi.org/10.1080/0899340940050203 +Robert McCartney,Introduction To Robotics In Computer Science And Engineering Education.,1996,7,Computer Science Education,2,db/journals/csedu/csedu7.html#McCartney96,https://doi.org/10.1080/0899340960070201 +Martin Gogolla,Teaching modeling in computer science as an ecosystem: a provocative analogy.,2018,28,Computer Science Education,1,db/journals/csedu/csedu28.html#GogollaS18,https://doi.org/10.1080/08993408.2018.1463634 +Mark Claypool,Dragonfly: strengthening programming skills by building a game engine from scratch.,2013,23,Computer Science Education,2,db/journals/csedu/csedu23.html#Claypool13,https://doi.org/10.1080/08993408.2013.781840 +Quintin I. Cutts,An evaluation of a professional learning network for computer science teachers.,2017,27,Computer Science Education,1,db/journals/csedu/csedu27.html#CuttsRDO17,https://doi.org/10.1080/08993408.2017.1315958 +Dianne Hagan,Industrial Experience Projects: A Balance of Process and Product.,1999,9,Computer Science Education,3,db/journals/csedu/csedu9.html#HaganTC99,https://doi.org/10.1076/csed.9.3.215.3799 +Jean J. Ryoo,It takes a village: supporting inquiry- and equity-oriented computer science pedagogy through a professional learning community.,2015,25,Computer Science Education,4,db/journals/csedu/csedu25.html#RyooGM15a,https://doi.org/10.1080/08993408.2015.1130952 +Päivi Kinnunen,My program is ok - am I? Computing freshmen's experiences of doing programming assignments.,2012,22,Computer Science Education,1,db/journals/csedu/csedu22.html#KinnunenS12,https://doi.org/10.1080/08993408.2012.655091 +Edward J. Fisher,Simulating System Mean-Time-to-Failure on a Personal Computer.,1991,2,Computer Science Education,3,db/journals/csedu/csedu2.html#FisherHS91,https://doi.org/10.1080/0899340910020303 +Vikram Subramaniam,An Expert System to Place Incoming Students in Mathematics and Computer Science Classes.,1994,5,Computer Science Education,2,db/journals/csedu/csedu5.html#SubramaniamSW94,https://doi.org/10.1080/0899340940050202 +Hareton K. N. Leung,Evaluating the Effectiveness of e-Learning.,2003,13,Computer Science Education,2,db/journals/csedu/csedu13.html#Leung03,https://doi.org/10.1076/csed.13.2.123.14201 +Ronald A. Mann,Getting More From the Missionary/Cannibal Problem.,1992,3,Computer Science Education,3,db/journals/csedu/csedu3.html#Mann92,https://doi.org/10.1080/0899340920030307 +Catherine Lang,Happenstance and compromise: a gendered analysis of students' computing degree course selection.,2010,20,Computer Science Education,4,db/journals/csedu/csedu20.html#Lang10,https://doi.org/10.1080/08993408.2010.527699 +Joseph Bergin,The Object-Oriented Course in Data Abstraction.,1993,4,Computer Science Education,1,db/journals/csedu/csedu4.html#Bergin93,https://doi.org/10.1080/0899340930040107 +S. C. Fok,A Practical A.I. Development Module for a Robotics Course.,1996,7,Computer Science Education,2,db/journals/csedu/csedu7.html#FokTO96,https://doi.org/10.1080/0899340960070206 +M. Finke,Aerial Robotics in Computer Science Education.,1996,7,Computer Science Education,2,db/journals/csedu/csedu7.html#FinkeHSW96,https://doi.org/10.1080/0899340960070208 +Kristy Elizabeth Boyer,Investigating the role of student motivation in computer science education through one-on-one tutoring.,2009,19,Computer Science Education,2,db/journals/csedu/csedu19.html#BoyerPWVL09,https://doi.org/10.1080/08993400902937584 +Ilana Lavy,Coping with abstraction in object orientation with a special focus on interface classes.,2009,19,Computer Science Education,3,db/journals/csedu/csedu19.html#LavyRK09,https://doi.org/10.1080/08993400903255218 +Janet Finlay,Special issue on Web-based technologies for social learning in computer science education.,2009,19,Computer Science Education,4,db/journals/csedu/csedu19.html#Finlay09,https://doi.org/10.1080/08993400903384810 +Judy Kay,Problem-Based Learning for Foundation Computer Science Courses.,2000,10,Computer Science Education,2,db/journals/csedu/csedu10.html#KayBFGHKC00,https://doi.org/10.1076/0899-3408(200008)10:2*1-C*FT109 +Robert L. Scot Drysdale,Computer Science in Liberal Arts Colleges.,1988,1,Computer Science Education,1,db/journals/csedu/csedu1.html#DrysdaleKT88,https://doi.org/10.1080/0899340880010103 +Brent Auernheimer,Using the Aslan Formal Specification Language in Undergraduate Software Engineering Courses.,1991,2,Computer Science Education,2,db/journals/csedu/csedu2.html#AuernheimerS91,https://doi.org/10.1080/0899340910020201 +Marian Petre,Editorial.,2005,15,Computer Science Education,1,db/journals/csedu/csedu15.html#PetreG05,https://doi.org/10.1080/08993400500056472 +Regina Baron Brunner,Ethics and Values: Their Place in Computer Labs and Classrooms.,1991,2,Computer Science Education,2,db/journals/csedu/csedu2.html#Brunner91,https://doi.org/10.1080/0899340910020203 +,Editorial.,2004,14,Computer Science Education,2,db/journals/csedu/csedu14.html#X04,https://doi.org/10.1080/08993400412331363813 +Bill Z. Manaris,Implementations of the CC**01 human - computer interaction guidelines using Bloom's taxonomy.,2007,17,Computer Science Education,1,db/journals/csedu/csedu17.html#ManarisWKSSLBWSS07,https://doi.org/10.1080/08993400601069820 +Bill Z. Manaris,Editorial - Human-Computer Interaction.,2003,13,Computer Science Education,3,db/journals/csedu/csedu13.html#Manaris03,https://doi.org/10.1076/csed.13.3.173.14948 +Orit Hazzan,How Students Attempt to Reduce Abstraction in the Learning of Mathematics and in the Learning of Computer Science.,2003,13,Computer Science Education,2,db/journals/csedu/csedu13.html#Hazzan03,https://doi.org/10.1076/csed.13.2.95.14202 +Larry Hughes,Special issue on teaching hardware - software fundamentals.,2007,17,Computer Science Education,2,db/journals/csedu/csedu17.html#Hughes07,https://doi.org/10.1080/08993400601165164 +Dalit Levy,Insights and Conflicts in Discussing Recursion: A Case Study.,2001,11,Computer Science Education,4,db/journals/csedu/csedu11.html#Levy01,https://doi.org/10.1076/csed.11.4.305.3829 +Mark J. Van Gorp,An Empirical Evaluation of Using Constructive Classroom Activities to Teach Introductory Programming.,2001,11,Computer Science Education,3,db/journals/csedu/csedu11.html#GorpG01,https://doi.org/10.1076/csed.11.3.247.3837 +Yuk Fai Cheong,Motivation and Academic Help-Seeking in High School Computer Science.,2004,14,Computer Science Education,1,db/journals/csedu/csedu14.html#CheongPO04,https://doi.org/10.1076/csed.14.1.3.23501 +David Ginat,On Novice Loop Boundaries and Range Conceptions.,2004,14,Computer Science Education,3,db/journals/csedu/csedu14.html#Ginat04,https://doi.org/10.1080/0899340042000302709 +Helen M. Edwards,"Report on the CSEET '99 Workshop: ""Establishing a Distance Education Program"".",2000,10,Computer Science Education,1,db/journals/csedu/csedu10.html#EdwardsTHAO00,https://doi.org/10.1076/0899-3408(200004)10:1*1-P*FT057 +Stavros N. Demetriadis,Peer review-based scripted collaboration to support domain-specific and domain-general knowledge acquisition in computer science.,2011,21,Computer Science Education,1,db/journals/csedu/csedu21.html#DemetriadisEHF11,https://doi.org/10.1080/08993408.2010.539069 +Juha Sorva,Students' ways of experiencing visual program simulation.,2013,23,Computer Science Education,3,db/journals/csedu/csedu23.html#SorvaLM13,https://doi.org/10.1080/08993408.2013.807962 +Joanna Wolfe,Why the Rhetoric of CS Programming Assignments Matters.,2004,14,Computer Science Education,2,db/journals/csedu/csedu14.html#Wolfe04,https://doi.org/10.1080/08993400412331363833 +David H. Johnson,Using Extreme Programming in the Software Design Course.,2002,12,Computer Science Education,3,db/journals/csedu/csedu12.html#JohnsonC02,https://doi.org/10.1076/csed.12.3.223.8616 +Loli Burgueño,Teaching UML and OCL models and their validation to software engineering students: an experience report.,2018,28,Computer Science Education,1,db/journals/csedu/csedu28.html#BurguenoVG18,https://doi.org/10.1080/08993408.2018.1462000 +Jonathan Crellin,Virtual worlds in computing education.,2009,19,Computer Science Education,4,db/journals/csedu/csedu19.html#CrellinDCC09,https://doi.org/10.1080/08993400903384950 +Matthew C. Jadud,A First Look at Novice Compilation Behaviour Using BlueJ.,2005,15,Computer Science Education,1,db/journals/csedu/csedu15.html#Jadud05,https://doi.org/10.1080/08993400500056530 +Yifat Ben-David Kolikant,Innovative teaching in computer science: what does it mean and why do we need it?,2010,20,Computer Science Education,2,db/journals/csedu/csedu20.html#Kolikant10,https://doi.org/10.1080/08993408.2010.486239 +Craig E. Wills,Studying the Use of Peer Learning in the Introductory Computer Science Curriculum.,1999,9,Computer Science Education,2,db/journals/csedu/csedu9.html#WillsDMN99,https://doi.org/10.1076/csed.9.2.71.3811 +Laurie Williams,Agile Software Development.,2002,12,Computer Science Education,3,db/journals/csedu/csedu12.html#WilliamsT02,https://doi.org/10.1076/csed.12.3.167.8613 +Koki Abe,A Microcomputer Laboratory--From Fundamentals to Interrupts and Queues.,1991,2,Computer Science Education,1,db/journals/csedu/csedu2.html#AbeNW91,https://doi.org/10.1080/0899340910020104 +Yolanda Jacobs Reimer,Teaching HCI Design With the Studio Approach.,2003,13,Computer Science Education,3,db/journals/csedu/csedu13.html#ReimerD03,https://doi.org/10.1076/csed.13.3.191.14945 +Patricia Johann,Lumberjack Summer Camp: A Cross-Institutional Undergraduate Research Experience in Computer Science.,2001,11,Computer Science Education,4,db/journals/csedu/csedu11.html#JohannT01,https://doi.org/10.1076/csed.11.4.279.3830 +Laurie Honour Werth,Integrating Software Engineering into Introductory Computer Science Courses.,1998,8,Computer Science Education,1,db/journals/csedu/csedu8.html#Werth98,https://doi.org/10.1076/csed.8.1.2.3822 +Trudy Howles,A study of attrition and the use of student learning communities in the computer science introductory programming sequence.,2009,19,Computer Science Education,1,db/journals/csedu/csedu19.html#Howles09,https://doi.org/10.1080/08993400902809312 +John M. Clement,A Call for Action (Research): Applying Science Education Research to Computer Science Instruction.,2004,14,Computer Science Education,4,db/journals/csedu/csedu14.html#Clement04,https://doi.org/10.1080/0899340042000303474 +Jane Gradwohl Nash,Assessing knowledge change in computer science.,2006,16,Computer Science Education,1,db/journals/csedu/csedu16.html#NashBS06,https://doi.org/10.1080/08993400500430362 +Paul Chernett,SPREAD: A Distributed Simulation Toolkit.,1998,8,Computer Science Education,3,db/journals/csedu/csedu8.html#ChernettCCD98,https://doi.org/10.1076/csed.8.3.228.7090 +Zhongxiu Liu,Understanding problem solving behavior of 6-8 graders in a debugging game.,2017,27,Computer Science Education,1,db/journals/csedu/csedu27.html#LiuZHB17,https://doi.org/10.1080/08993408.2017.1308651 +Scott Grissom,N Version Testing in the Undergraduate Curriculum.,1999,9,Computer Science Education,1,db/journals/csedu/csedu9.html#GrissomM99,https://doi.org/10.1076/csed.9.1.1.3816 +Stephen H. Edwards,An Analysis of a Course-Oriented Electronic Mailing List.,1999,9,Computer Science Education,1,db/journals/csedu/csedu9.html#EdwardsS99,https://doi.org/10.1076/csed.9.1.8.3813 +Roymieco Carter,Teaching Visual Design Principles for Computer Science Students.,2003,13,Computer Science Education,1,db/journals/csedu/csedu13.html#Carter03,https://doi.org/10.1076/csed.13.1.67.13538 +Claudia Ott,Illustrating performance indicators and course characteristics to support students' self-regulated learning in CS1.,2015,25,Computer Science Education,2,db/journals/csedu/csedu25.html#OttRHS15,https://doi.org/10.1080/08993408.2015.1033129 +Jorma Sajaniemi,Roles of variables in three programming paradigms.,2006,16,Computer Science Education,4,db/journals/csedu/csedu16.html#SajaniemiBBGK06,https://doi.org/10.1080/08993400600874584 +Dean Sanders,Extreme Programming: The Student View.,2002,12,Computer Science Education,3,db/journals/csedu/csedu12.html#Sanders02,https://doi.org/10.1076/csed.12.3.235.8615 +Bill Janeway,The Use of Simulators in Teaching Computer Science.,1991,2,Computer Science Education,2,db/journals/csedu/csedu2.html#Janeway91,https://doi.org/10.1080/0899340910020205 +Jeremy Straub,Assessment of examinations in computer science doctoral education.,2014,24,Computer Science Education,1,db/journals/csedu/csedu24.html#Straub14,https://doi.org/10.1080/08993408.2014.890792 +Fadi P. Deek,The Software Process: A Parallel Approach through Problem Solving and Program Development.,1999,9,Computer Science Education,1,db/journals/csedu/csedu9.html#Deek99,https://doi.org/10.1076/csed.9.1.43.3812 +Helen Parker,"Keeping Our Customers Happy: Myths and Management Issues in ""Client-Led"" Student Software Projects.",1999,9,Computer Science Education,3,db/journals/csedu/csedu9.html#ParkerHB99,https://doi.org/10.1076/csed.9.3.230.3806 +Bruria Haberman,Pedagogical patterns: A means for communication within the CS teaching community of practice.,2006,16,Computer Science Education,2,db/journals/csedu/csedu16.html#Haberman06,https://doi.org/10.1080/08993400600786994 +George Kantor,Robotics for High School Students in a University Enviroment.,1996,7,Computer Science Education,2,db/journals/csedu/csedu7.html#KantorMNT96,https://doi.org/10.1080/0899340960070210 +Satu Alaoutinen,Evaluating the effect of learning style and student background on self-assessment accuracy.,2012,22,Computer Science Education,2,db/journals/csedu/csedu22.html#Alaoutinen12,https://doi.org/10.1080/08993408.2012.692924 +Joan Krone,Trees as Inductive Structures.,1993,4,Computer Science Education,2,db/journals/csedu/csedu4.html#Krone93,https://doi.org/10.1080/0899340930040204 +Bedir Tekinerdogan,Experiences in teaching a graduate course on model-driven software development.,2011,21,Computer Science Education,4,db/journals/csedu/csedu21.html#Tekinerdogan11,https://doi.org/10.1080/08993408.2011.630129 +Beth Simon,Common sense computing (episode 4): debugging.,2008,18,Computer Science Education,2,db/journals/csedu/csedu18.html#SimonBCLMS08,https://doi.org/10.1080/08993400802114698 +Sally Hamouda,Crib sheets and exam performance in a data structures course.,2016,26,Computer Science Education,1,db/journals/csedu/csedu26.html#HamoudaS16,https://doi.org/10.1080/08993408.2016.1140427 +Benjamin D. Haytock,Teaching Computer Science Within Mathematics Departments.,1990,1,Computer Science Education,3,db/journals/csedu/csedu1.html#HaytockKS90,https://doi.org/10.1080/0899340900010302 +Chaya Gurwitz,Teaching Linked Lists: Influence of Language on Instruction.,1999,9,Computer Science Education,1,db/journals/csedu/csedu9.html#Gurwitz99,https://doi.org/10.1076/csed.9.1.36.3814 +Shirley Booth,Learning Computer Science and Engineering in Context.,2001,11,Computer Science Education,3,db/journals/csedu/csedu11.html#Booth01,https://doi.org/10.1076/csed.11.3.169.3832 +Alan Jones,Experiences of Profile-Based Group Composition.,1999,9,Computer Science Education,3,db/journals/csedu/csedu9.html#Jones99,https://doi.org/10.1076/csed.9.3.242.3805 +Christian Holmboe,A Wittgenstein Approach to the Learning of OO-modeling.,2004,14,Computer Science Education,4,db/journals/csedu/csedu14.html#Holmboe04,https://doi.org/10.1080/0899340042000303447 +Sami Surakka,Need Assessment of Computer Science and Engineering Graduates.,2005,15,Computer Science Education,2,db/journals/csedu/csedu15.html#SurakkaM05,https://doi.org/10.1080/08993400500150762 +Helen Sharp,Evolving Pedagogical Patterns: The Work of the Pedagogical Patterns Project.,2003,13,Computer Science Education,4,db/journals/csedu/csedu13.html#SharpME03,https://doi.org/10.1076/csed.13.4.315.17493 +Shuchi Grover,Designing for deeper learning in a blended computer science course for middle school students.,2015,25,Computer Science Education,2,db/journals/csedu/csedu25.html#GroverPC15,https://doi.org/10.1080/08993408.2015.1033142 +Donald Joyce,Academic Integrity and Plagiarism: Australasian perspectives.,2007,17,Computer Science Education,3,db/journals/csedu/csedu17.html#Joyce07,https://doi.org/10.1080/08993400701538062 +Robert McCartney,Small Robot Projects: Before You Start.,1998,8,Computer Science Education,1,db/journals/csedu/csedu8.html#McCartneyS98,https://doi.org/10.1076/csed.8.1.56.3821 +Phillip John McKerrow,Teaching Introductory Programming in Modula-2.,1992,3,Computer Science Education,1,db/journals/csedu/csedu3.html#McKerrow92,https://doi.org/10.1080/0899340920030107 +Craig E. Wills,Experience With Peer Learning in an Introductory Computer Science Course.,1994,5,Computer Science Education,2,db/journals/csedu/csedu5.html#WillsF94,https://doi.org/10.1080/0899340940050204 +Michal Armoni,Non-determinism: An abstract concept in computer science studies.,2007,17,Computer Science Education,4,db/journals/csedu/csedu17.html#ArmoniG07,https://doi.org/10.1080/08993400701442885 +Vic Callaghan,A Network-Centric Approach to Computer Science Education and Research Based on Robotics.,1998,8,Computer Science Education,2,db/journals/csedu/csedu8.html#CallaghanC98,https://doi.org/10.1076/csed.8.2.100.3817 +Pablo Sánchez,Are models easier to understand than code? An empirical study on comprehension of entity-relationship (ER) models vs. structured query language (SQL) code.,2011,21,Computer Science Education,4,db/journals/csedu/csedu21.html#SanchezZDN11,https://doi.org/10.1080/08993408.2011.630128 +Stamos T. Karamouzis,Computer Science Education Overseas: The Case of Greece.,1991,2,Computer Science Education,3,db/journals/csedu/csedu2.html#Karamouzis91,https://doi.org/10.1080/0899340910020305 +Brian Dorn,Empirical validation and application of the computing attitudes survey.,2015,25,Computer Science Education,1,db/journals/csedu/csedu25.html#DornT15,https://doi.org/10.1080/08993408.2015.1014142 +Mordechai Ben-Ari,Situated Learning in Computer Science Education.,2004,14,Computer Science Education,2,db/journals/csedu/csedu14.html#Ben-Ari04a,https://doi.org/10.1080/08993400412331363823 +Kirsti Ala-Mutka,A Survey of Automated Assessment Approaches for Programming Assignments.,2005,15,Computer Science Education,2,db/journals/csedu/csedu15.html#Ala-Mutka05,https://doi.org/10.1080/08993400500150747 +Anthony V. Robins,Learning and Teaching Programming: A Review and Discussion.,2003,13,Computer Science Education,2,db/journals/csedu/csedu13.html#RobinsRR03,https://doi.org/10.1076/csed.13.2.137.14200 +Timothy Daryl Stanley,From Archi Torture to architecture: Undergraduate students design and implement computers using the Multimedia Logic emulator.,2007,17,Computer Science Education,2,db/journals/csedu/csedu17.html#StanleyWPBFFC07,https://doi.org/10.1080/08993400601165735 +Mark Moll,Software for project-based learning of robot motion planning.,2013,23,Computer Science Education,4,db/journals/csedu/csedu23.html#MollBK13,https://doi.org/10.1080/08993408.2013.847167 +Maria L. Gini,Designing and Building Autonomous Minirobots.,1996,7,Computer Science Education,2,db/journals/csedu/csedu7.html#Gini96,https://doi.org/10.1080/0899340960070207 +Yeslam Al-Saggaf,Improving skill development: an exploratory study comparing a philosophical and an applied ethical analysis technique.,2012,22,Computer Science Education,3,db/journals/csedu/csedu22.html#Al-SaggafB12,https://doi.org/10.1080/08993408.2012.721073 +Sally Fincher,Editorial.,2001,11,Computer Science Education,4,db/journals/csedu/csedu11.html#FincherM01,https://doi.org/10.1076/csed.11.4.273.3828 +Christopher Connelly,Home Study Software: Complementary Systems for Computer Science Courses.,1996,7,Computer Science Education,1,db/journals/csedu/csedu7.html#ConnellyBPW96,https://doi.org/10.1080/0899340960070104 +Shuhaida Mohamed Shuhidan,Instructor perspectives of multiple-choice questions in summative assessment for novice programmers.,2010,20,Computer Science Education,3,db/journals/csedu/csedu20.html#ShuhidanHD10,https://doi.org/10.1080/08993408.2010.509097 +Raymond Lister,Computer Science Education.,2008,18,Computer Science Education,2,db/journals/csedu/csedu18.html#Lister08,https://doi.org/10.1080/08993400802172449 +Stan Kurkovsky,Mobile game development: improving student engagement and motivation in introductory computing courses.,2013,23,Computer Science Education,2,db/journals/csedu/csedu23.html#Kurkovsky13,https://doi.org/10.1080/08993408.2013.777236 +Gail Miles,One Approach for Teaching Software Engineering Across the Undergraduate Computer Science Curriculum.,1988,1,Computer Science Education,1,db/journals/csedu/csedu1.html#Miles88,https://doi.org/10.1080/0899340880010105 +Ann-Marie Lancaster,Potential Contributions of Cooperative Education to the Retention of Women in Computer Science.,1994,5,Computer Science Education,1,db/journals/csedu/csedu5.html#LancasterS94,https://doi.org/10.1080/0899340940050106 +Ahmad H. Nasri,Computer Graphics in Simulating the Functioning of a Simple Computer.,1991,2,Computer Science Education,2,db/journals/csedu/csedu2.html#Nasri91,https://doi.org/10.1080/0899340910020206 +Ghinwa Jalloul,Links: A Framework for Object-Oriented Software Engineering.,2000,10,Computer Science Education,1,db/journals/csedu/csedu10.html#Jalloul00,https://doi.org/10.1076/0899-3408(200004)10:1*1-P*FT075 +Renée McCauley,Teaching and learning recursive programming: a review of the research literature.,2015,25,Computer Science Education,1,db/journals/csedu/csedu25.html#McCauleyGFM15,https://doi.org/10.1080/08993408.2015.1033205 +Roli Varma,Gender differences in factors influencing students towards computing.,2009,19,Computer Science Education,1,db/journals/csedu/csedu19.html#Varma09,https://doi.org/10.1080/08993400902819006 +Ching-Kuang Shene,CSE Graphics and Visualization.,2003,13,Computer Science Education,1,db/journals/csedu/csedu13.html#SheneL03,https://doi.org/10.1076/csed.13.1.1.13542 +Allen B. Tucker,Enrollments and Staffing in College Computer Science Programs: A Growth Perspective for 1996-2000.,1999,9,Computer Science Education,1,db/journals/csedu/csedu9.html#Tucker99,https://doi.org/10.1076/csed.9.1.23.3815 +Larry Hughes,Teaching Data Communications to Computer Science Students.,1990,1,Computer Science Education,3,db/journals/csedu/csedu1.html#Hughes90,https://doi.org/10.1080/0899340900010305 +Lecia Jane Barker,Making Visible the Behaviors that Influence Learning Environment: A Qualitative Exploration of Computer Science Classrooms.,2004,14,Computer Science Education,2,db/journals/csedu/csedu14.html#BarkerG04,https://doi.org/10.1080/08993400412331363853 +Behrooz Parhami,A puzzle-based seminar for computer engineering freshmen.,2008,18,Computer Science Education,4,db/journals/csedu/csedu18.html#Parhami08,https://doi.org/10.1080/08993400802594089 +George Struble,Most Effective Lab Exercises.,1990,1,Computer Science Education,4,db/journals/csedu/csedu1.html#Struble90a,https://doi.org/10.1080/0899340900010410 +Wendy Doubé,Gender and stereotypes in motivation to study computer programming for careers in multimedia.,2012,22,Computer Science Education,1,db/journals/csedu/csedu22.html#DoubeL12,https://doi.org/10.1080/08993408.2012.666038 +James K. Archibald,A course in real-time embedded software.,2007,17,Computer Science Education,2,db/journals/csedu/csedu17.html#ArchibaldF07,https://doi.org/10.1080/08993400601165347 +William J. Collins,An Object-Oriented CS2 Course.,1993,4,Computer Science Education,1,db/journals/csedu/csedu4.html#Collins93,https://doi.org/10.1080/0899340930040108 +John D. McGregor,Book Review.,1991,2,Computer Science Education,2,db/journals/csedu/csedu2.html#McGregor91,https://doi.org/10.1080/0899340910020208 +Donald J. Bagert,Software Engineering as a Professional Discipline.,2001,11,Computer Science Education,1,db/journals/csedu/csedu11.html#BagertM01,https://doi.org/10.1076/csed.11.1.73.3841 +John Dalbey,The Software Engineering Apprentice.,1998,8,Computer Science Education,1,db/journals/csedu/csedu8.html#Dalbey98,https://doi.org/10.1076/csed.8.1.16.3824 +Orna Muller,Supporting abstraction processes in problem solving through pattern-oriented instruction.,2008,18,Computer Science Education,3,db/journals/csedu/csedu18.html#MullerH08,https://doi.org/10.1080/08993400802332548 +Nell B. Dale,A Classification of Data Types.,1992,3,Computer Science Education,3,db/journals/csedu/csedu3.html#DaleW92,https://doi.org/10.1080/0899340920030303 +Philip R. Ventura Jr.,Identifying predictors of success for an objects-first CS1.,2005,15,Computer Science Education,3,db/journals/csedu/csedu15.html#Ventura05,https://doi.org/10.1080/08993400500224419 +Barry W. Boehm,Balancing Plan-Driven and Agile Methods in Software Engineering Project Courses.,2002,12,Computer Science Education,3,db/journals/csedu/csedu12.html#BoehmPB02,https://doi.org/10.1076/csed.12.3.187.8617 +Tony Koppi,Towards a gender inclusive information and communications technology curriculum: a perspective from graduates in the workforce.,2010,20,Computer Science Education,4,db/journals/csedu/csedu20.html#KoppiSNEB10,https://doi.org/10.1080/08993408.2010.527686 +Jonas Boustedt,Students' different understandings of class diagrams.,2012,22,Computer Science Education,1,db/journals/csedu/csedu22.html#Boustedt12,https://doi.org/10.1080/08993408.2012.665210 +Otto Seppälä,Observations on student misconceptions - A case study of the Build - Heap Algorithm.,2006,16,Computer Science Education,3,db/journals/csedu/csedu16.html#SeppalaMK06,https://doi.org/10.1080/08993400600913523 +Brian Hanks,Pair programming in education: a literature review.,2011,21,Computer Science Education,2,db/journals/csedu/csedu21.html#HanksFMMZ11,https://doi.org/10.1080/08993408.2011.579808 +Judith Gal-Ezer,Curriculum and Course Syllabi for a High-School CS Program.,1999,9,Computer Science Education,2,db/journals/csedu/csedu9.html#Gal-EzerH99,https://doi.org/10.1076/csed.9.2.114.3807 +Simon Lynch,Multi-agent Systems Design for Novices.,2005,15,Computer Science Education,1,db/journals/csedu/csedu15.html#LynchR05,https://doi.org/10.1080/08993400500056548 +Michael F. Bosco,Teaching Software Engineering by Reverse Engineering.,1991,2,Computer Science Education,2,db/journals/csedu/csedu2.html#Bosco91,https://doi.org/10.1080/0899340910020202 +Sally Fincher,Special issue on CSE Pedagogic patterns.,2006,16,Computer Science Education,2,db/journals/csedu/csedu16.html#Fincher06,https://doi.org/10.1080/08993400600768059 +John Hamer,Contributing student pedagogy.,2012,22,Computer Science Education,4,db/journals/csedu/csedu22.html#HamerSPL12,https://doi.org/10.1080/08993408.2012.727709 +Wolfgang Kellerer,Experiences with Evaluation of SDL-Based Protocol Engineering in Education.,2000,10,Computer Science Education,3,db/journals/csedu/csedu10.html#KellererAI00,https://doi.org/10.1076/0899-3408(200012)10:3*1-S*FT225 +Rolf Pfeifer,Teaching Powerful Ideas With Autonomous Mobile Robots.,1996,7,Computer Science Education,2,db/journals/csedu/csedu7.html#Pfeifer96,https://doi.org/10.1080/0899340960070203 +Carol Spradling,A comprehensive survey on the status of social and professional issues in United States undergraduate computer science programs and recommendations.,2009,19,Computer Science Education,3,db/journals/csedu/csedu19.html#SpradlingSA09,https://doi.org/10.1080/08993400903255184 +Ilya Levin,Controlware for Learning Using Mobile Robots.,1998,8,Computer Science Education,3,db/journals/csedu/csedu8.html#LevinL98,https://doi.org/10.1076/csed.8.3.181.7091 +Aman Yadav,Expanding computer science education in schools: understanding teacher experiences and challenges.,2017,26,Computer Science Education,4,db/journals/csedu/csedu26.html#YadavGHS17,https://doi.org/10.1080/08993408.2016.1257418 +William J. Collins,The Use of Turbo Vision in a Course on Object-Oriented Programming.,1992,3,Computer Science Education,1,db/journals/csedu/csedu3.html#CollinsG92,https://doi.org/10.1080/0899340920030105 +Jan Vahrenhold,Developing and validating test items for first-year computer science courses.,2014,24,Computer Science Education,4,db/journals/csedu/csedu24.html#VahrenholdP14,https://doi.org/10.1080/08993408.2014.970782 +Michael Derntl,Essential use cases for pedagogical patterns.,2006,16,Computer Science Education,2,db/journals/csedu/csedu16.html#DerntlB06,https://doi.org/10.1080/08993400600768182 +Jelena Godjevac,Clarifying Ideas on Fuzzy Logic by Using Mobile Robots.,1996,7,Computer Science Education,2,db/journals/csedu/csedu7.html#Godjevac96,https://doi.org/10.1080/0899340960070202 +David Mioduser,Cognitive-Conceptual Model for Integrating Robotics and Control Into the Curriculum.,1996,7,Computer Science Education,2,db/journals/csedu/csedu7.html#MioduserL96,https://doi.org/10.1080/0899340960070205 +Nicolás Bonet,Influence of programming style in transformation bad smells: mining of ETL repositories.,2018,28,Computer Science Education,1,db/journals/csedu/csedu28.html#BonetGCCW18,https://doi.org/10.1080/08993408.2018.1472950 +Alan W. Biermann,A Simple Methodology for Studying Program Time Complexity.,1990,1,Computer Science Education,4,db/journals/csedu/csedu1.html#Biermann90,https://doi.org/10.1080/0899340900010402 +Matt Bower,Online Computer Science Education in Australasia.,2007,17,Computer Science Education,3,db/journals/csedu/csedu17.html#Bower07,https://doi.org/10.1080/08993400701538146 +Judith L. Gersting,Computer Science Distance Education Experience in Hawaii.,2000,10,Computer Science Education,1,db/journals/csedu/csedu10.html#Gersting00,https://doi.org/10.1076/0899-3408(200004)10:1*1-P*FT095 +Peter Capon,Maximizing Learning Outcomes of Computer Science Projects.,1999,9,Computer Science Education,3,db/journals/csedu/csedu9.html#Capon99,https://doi.org/10.1076/csed.9.3.184.3804 +Sally Fincher,Editorial.,2003,13,Computer Science Education,2,db/journals/csedu/csedu13.html#FincherM03,https://doi.org/10.1076/csed.13.2.93.14203 +Yael Dubinsky,A framework for teaching software development methods.,2005,15,Computer Science Education,4,db/journals/csedu/csedu15.html#DubinskyH05,https://doi.org/10.1080/08993400500298538 +Jodi Tutty,Teaching in the current higher education environment: perceptions of IT academics.,2008,18,Computer Science Education,3,db/journals/csedu/csedu18.html#TuttySA08,https://doi.org/10.1080/08993400802332423 +Cathleen A. Norris,Classroom Attrition in Computer Science.,1990,1,Computer Science Education,4,db/journals/csedu/csedu1.html#NorrisPK90,https://doi.org/10.1080/0899340900010404 +Ian O'Neill,In praise of use cases - a paean with a software accompaniment.,2018,28,Computer Science Education,1,db/journals/csedu/csedu28.html#ONeill18,https://doi.org/10.1080/08993408.2018.1472949 +Mahesh H. Dodani,Practical Object-Oriented Software Engineering Education.,1993,4,Computer Science Education,1,db/journals/csedu/csedu4.html#Dodani93,https://doi.org/10.1080/0899340930040109 +Mark Lattanzi,Teaching the Object-Oriented Paradigm and Software Reuse: Notes from an Empirical Study.,1996,7,Computer Science Education,1,db/journals/csedu/csedu7.html#LattanziH96,https://doi.org/10.1080/0899340960070106 +Steven A. Wolfman,Concept Inventories.,2014,24,Computer Science Education,4,db/journals/csedu/csedu24.html#Wolfman14,https://doi.org/10.1080/08993408.2014.971595 +David M. West,Object-Oriented Concepts for Professional Software Developers.,1993,4,Computer Science Education,1,db/journals/csedu/csedu4.html#West93,https://doi.org/10.1080/0899340930040112 +Katharine M. Paine,Project Development Approach to Technical Writing in the Computer Science Classroom: A Template for Management.,1994,5,Computer Science Education,2,db/journals/csedu/csedu5.html#PaineT94,https://doi.org/10.1080/0899340940050201 +David Coppit,Implementing large projects in software engineering courses.,2006,16,Computer Science Education,1,db/journals/csedu/csedu16.html#Coppit06,https://doi.org/10.1080/08993400600600443 +Justus J. Randolph,A comparison of the methodological quality of articles in computer science education journals and conference proceedings.,2007,17,Computer Science Education,4,db/journals/csedu/csedu17.html#RandolphJBS07,https://doi.org/10.1080/08993400701483517 +David Ginat,Early Algorithm Efficiency with Design Patterns.,2001,11,Computer Science Education,2,db/journals/csedu/csedu11.html#Ginat01,https://doi.org/10.1076/csed.11.2.89.3838 +Arne J. Berre,Teaching modelling for requirements engineering and model-driven software development courses.,2018,28,Computer Science Education,1,db/journals/csedu/csedu28.html#BerreHMA18,https://doi.org/10.1080/08993408.2018.1479090 +Deborah Hix,Teaching a Course in Human-Computer Interaction.,1990,1,Computer Science Education,3,db/journals/csedu/csedu1.html#Hix90,https://doi.org/10.1080/0899340900010306 +Martina Seidl,Software modeling in education.,2011,21,Computer Science Education,4,db/journals/csedu/csedu21.html#SeidlC11,https://doi.org/10.1080/08993408.2011.630132 +Judy Sheard,Student engagement in first year of an ICT degree: staff and student perceptions.,2010,20,Computer Science Education,1,db/journals/csedu/csedu20.html#SheardCH10,https://doi.org/10.1080/08993400903484396 +Raina Mason,Applying cognitive load theory to the redesign of a conventional database systems course.,2016,26,Computer Science Education,1,db/journals/csedu/csedu26.html#MasonSC16,https://doi.org/10.1080/08993408.2016.1160597 +Richard Gluga,Mastering cognitive development theory in computer science education.,2013,23,Computer Science Education,1,db/journals/csedu/csedu23.html#GlugaKLSK13,https://doi.org/10.1080/08993408.2013.768830 +Simon,A Classification of Recent Australasian Computing Education Publications.,2007,17,Computer Science Education,3,db/journals/csedu/csedu17.html#Simon07,https://doi.org/10.1080/08993400701538021 +Monica McGill,Demographics of undergraduates studying games in the United States: a comparison of computer science students and the general population.,2013,23,Computer Science Education,2,db/journals/csedu/csedu23.html#McGillSD13,https://doi.org/10.1080/08993408.2013.769319 +Richard G. Epstein,A Liberal Arts Software Engineering Course.,1991,2,Computer Science Education,3,db/journals/csedu/csedu2.html#Epstein91,https://doi.org/10.1080/0899340910020302 +Jens Bennedsen,Persistence of elementary programming skills.,2012,22,Computer Science Education,2,db/journals/csedu/csedu22.html#BennedsenC12,https://doi.org/10.1080/08993408.2012.692911 +Josh D. Tenenberg,Out of our minds: a review of sociocultural cognition theory.,2014,24,Computer Science Education,1,db/journals/csedu/csedu24.html#TenenbergK14,https://doi.org/10.1080/08993408.2013.869396 +Muhsin Menekse,Computer science teacher professional development in the United States: a review of studies published between 2004 and 2014.,2015,25,Computer Science Education,4,db/journals/csedu/csedu25.html#Menekse15a,https://doi.org/10.1080/08993408.2015.1111645 +W. James Bradley,A Course in Social and Ethical Issues in Computing.,1995,6,Computer Science Education,2,db/journals/csedu/csedu6.html#Bradley95,https://doi.org/10.1080/0899340950060201 +Alessio Gaspar,Self-perceived and observable self-direction in an online asynchronous programming course using peer learning forums.,2009,19,Computer Science Education,4,db/journals/csedu/csedu19.html#GasparLBA09,https://doi.org/10.1080/08993400903384869 +Stephen Cooper,Using Animated 3D Graphics to Prepare Novices for CS1.,2003,13,Computer Science Education,1,db/journals/csedu/csedu13.html#CooperDP03,https://doi.org/10.1076/csed.13.1.3.13540 +Peter J. Clarke,Teaching modeling: a software perspective.,2018,28,Computer Science Education,1,db/journals/csedu/csedu28.html#ClarkeP18,https://doi.org/10.1080/08993408.2018.1486535 +Kathryn E. Sanders,Collected Wisdom: Assessment Tools for Computer Science Programs.,2004,14,Computer Science Education,3,db/journals/csedu/csedu14.html#SandersM04,https://doi.org/10.1080/0899340042000302718 +Colleen M. Lewis,Is pair programming more effective than other forms of collaboration for young students?,2011,21,Computer Science Education,2,db/journals/csedu/csedu21.html#Lewis11,https://doi.org/10.1080/08993408.2011.579805 +Errol Thompson,The nature of an object-oriented program: How do practitioners understand the nature of what they are creating?,2011,21,Computer Science Education,3,db/journals/csedu/csedu21.html#ThompsonK11,https://doi.org/10.1080/08993408.2011.607010 +Regina Baron Brunner,Creative Computer Science Teaching Techniques.,1991,2,Computer Science Education,3,db/journals/csedu/csedu2.html#Brunner91a,https://doi.org/10.1080/0899340910020301 +Hossein Saiedian,Planning for Software Maintenance Education Within a Computee Science Framework.,1994,5,Computer Science Education,1,db/journals/csedu/csedu5.html#SaiedianH94,https://doi.org/10.1080/0899340940050101 +Carsten Schulte,Thinking in Objects and their Collaboration: Introducing Object-Oriented Technology.,2003,13,Computer Science Education,4,db/journals/csedu/csedu13.html#SchulteMNS03,https://doi.org/10.1076/csed.13.4.269.17492 +Catherine Lang,Twenty-first Century Australian Women and IT: Exercising the power of choice.,2007,17,Computer Science Education,3,db/journals/csedu/csedu17.html#Lang07,https://doi.org/10.1080/08993400701538120 +Thomas H. Spencer,Solving Divide and Conquer Recurrences.,1994,5,Computer Science Education,1,db/journals/csedu/csedu5.html#Spencer94,https://doi.org/10.1080/0899340940050102 +Christelle Scharff,Thinking Through Computing: The Power of Learning Communities.,2004,14,Computer Science Education,4,db/journals/csedu/csedu14.html#ScharffB04,https://doi.org/10.1080/0899340042000303456 +Jennifer S. Kay,Robotics in computer science education.,2013,23,Computer Science Education,4,db/journals/csedu/csedu23.html#KayL13,https://doi.org/10.1080/08993408.2013.856614 +Teresa A. Dahlberg,Applying service learning to computer science: attracting and engaging under-represented students.,2010,20,Computer Science Education,3,db/journals/csedu/csedu20.html#DahlbergBBB10,https://doi.org/10.1080/08993408.2010.492164 +Tesfaye Bayu Bati,A blended learning approach for teaching computer programming: design for large classes in Sub-Saharan Africa.,2014,24,Computer Science Education,1,db/journals/csedu/csedu24.html#BatiGB14,https://doi.org/10.1080/08993408.2014.897850 +Toni Downes,Factors that influence students' plans to take computing and information technology subjects in senior secondary school.,2011,21,Computer Science Education,2,db/journals/csedu/csedu21.html#DownesL11,https://doi.org/10.1080/08993408.2011.579811 +Gerrit C. van der Veer,A Plea for a Poor Man's HCI Component in Software Engineering and Computer Science Curricula* After all: The Human-Computer Interface is the System.,2003,13,Computer Science Education,3,db/journals/csedu/csedu13.html#VeerV03,https://doi.org/10.1076/csed.13.3.207.14947 +Linda M. Northrop,Finding an Educational Perspective for Object-Oriented Development.,1993,4,Computer Science Education,1,db/journals/csedu/csedu4.html#Northrop93,https://doi.org/10.1080/0899340930040102 +David S. Touretzky,Robotics for computer scientists: what's the big idea?,2013,23,Computer Science Education,4,db/journals/csedu/csedu23.html#Touretzky13,https://doi.org/10.1080/08993408.2013.847226 +Janet Rountree,Elaborating on threshold concepts.,2013,23,Computer Science Education,3,db/journals/csedu/csedu23.html#RountreeRR13,https://doi.org/10.1080/08993408.2013.834748 +G. Michael Schneider,Undergraduate Computer Science Enrollment Trends in Liberal Arts Colleges.,1993,4,Computer Science Education,2,db/journals/csedu/csedu4.html#Schneider93,https://doi.org/10.1080/0899340930040202 +Bruria Haberman,How Learning Logic Programming Affects Recursion Comprehension.,2004,14,Computer Science Education,1,db/journals/csedu/csedu14.html#Haberman04,https://doi.org/10.1076/csed.14.1.37.23500 +Elizabeth A. Davis,Learning to Use Parentheses and Quotes in LISP.,1995,6,Computer Science Education,1,db/journals/csedu/csedu6.html#DavisLC95,https://doi.org/10.1080/0899340950060102 +Yifat Ben-David Kolikant,Gardeners and Cinema Tickets: High School Students' Preconceptions of Concurrency.,2001,11,Computer Science Education,3,db/journals/csedu/csedu11.html#Kolikant01,https://doi.org/10.1076/csed.11.3.221.3831 +John W. Hamblen,Teaching Note.,1990,1,Computer Science Education,4,db/journals/csedu/csedu1.html#Hamblen90,https://doi.org/10.1080/0899340900010409 +Gerard T. McKee,Interactive Robotics Using the Internet.,1996,7,Computer Science Education,2,db/journals/csedu/csedu7.html#McKeeB96,https://doi.org/10.1080/0899340960070211 +Katrina Falkner,A review of Computer Science resources for learning and teaching with K-12 computing curricula: an Australian case study.,2015,25,Computer Science Education,4,db/journals/csedu/csedu25.html#FalknerV15a,https://doi.org/10.1080/08993408.2016.1140410 +Renée McCauley,Debugging: a review of the literature from an educational perspective.,2008,18,Computer Science Education,2,db/journals/csedu/csedu18.html#McCauleyFLMSTZ08,https://doi.org/10.1080/08993400802114581 +Paul Gruba,A Constructivist Approach to Communication Skills Instruction in Computer Science.,2001,11,Computer Science Education,3,db/journals/csedu/csedu11.html#GrubaS01,https://doi.org/10.1076/csed.11.3.203.3833 +Robert F. Dugan Jr.,A survey of computer science capstone course literature.,2011,21,Computer Science Education,3,db/journals/csedu/csedu21.html#Dugan11,https://doi.org/10.1080/08993408.2011.606118 +Hermann Hüni,Teaching OO Software Engineering by Example: The Games Factory.,1993,4,Computer Science Education,1,db/journals/csedu/csedu4.html#HuniM93,https://doi.org/10.1080/0899340930040111 +Linxiao Ma,Investigating and improving the models of programming concepts held by novice programmers.,2011,21,Computer Science Education,1,db/journals/csedu/csedu21.html#MaFRW11,https://doi.org/10.1080/08993408.2011.554722 +Anthony V. Robins,The ongoing challenges of computer science education research.,2015,25,Computer Science Education,2,db/journals/csedu/csedu25.html#Robins15,https://doi.org/10.1080/08993408.2015.1034350 +H. Levent Akin,Introduction to autonomous mobile robotics using Lego Mindstorms NXT.,2013,23,Computer Science Education,4,db/journals/csedu/csedu23.html#AkinMM13,https://doi.org/10.1080/08993408.2013.838066 +Jeroen Keppens,Concept map assessment for teaching computer programming.,2008,18,Computer Science Education,1,db/journals/csedu/csedu18.html#KeppensH08,https://doi.org/10.1080/08993400701864880 +Sue Fitzgerald,Special issue on doctoral research in computer science education.,2005,15,Computer Science Education,3,db/journals/csedu/csedu15.html#FitzgeraldG05,https://doi.org/10.1080/08993400500224245 +Alexandra Gasparinatou,Supporting students' learning in the domain of computer science.,2011,21,Computer Science Education,1,db/journals/csedu/csedu21.html#GasparinatouG11,https://doi.org/10.1080/08993408.2010.509909 +John McGregor,Book ReviewElliott Soloway and Sitharama Iyengar. Empirical Studies of Programming.,1988,1,Computer Science Education,1,db/journals/csedu/csedu1.html#McGregor88,https://doi.org/10.1080/0899340880010109 +Kanishka Bhaduri,A Scalable Local Algorithm for Distributed Multivariate Regression.,2008,1,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm1.html#BhaduriK08,https://doi.org/10.1002/sam.10009 +Corrado Loglisci,Leveraging temporal autocorrelation of historical data for improving accuracy in network regression.,2017,10,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm10.html#LoglisciM17,https://doi.org/10.1002/sam.11336 +Jianjun Xie,Prediction of transfers to tertiary care and hospital mortality: A gradient boosting decision tree approach.,2010,3,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm3.html#XieC10,https://doi.org/10.1002/sam.10079 +Daniel Peña,Nearest-neighbors medians clustering.,2012,5,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm5.html#PenaVZ12,https://doi.org/10.1002/sam.11149 +Amy Wagaman,Graph construction and random graph generation for modeling protein structures.,2013,6,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm6.html#Wagaman13a,https://doi.org/10.1002/sam.11203 +Bilson J. L. Campana,A compression-based distance measure for texture.,2010,3,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm3.html#CampanaK10,https://doi.org/10.1002/sam.10093 +Francesco Gullo,Minimizing the variance of cluster mixture models for clustering uncertain objects.,2013,6,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm6.html#GulloPT13,https://doi.org/10.1002/sam.11170 +Hossein Hassani,A review of data mining applications in crime.,2016,9,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm9.html#HassaniHSG16,https://doi.org/10.1002/sam.11312 +Anna Fowler,On two-way Bayesian agglomerative clustering of gene expression data.,2012,5,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm5.html#FowlerH12,https://doi.org/10.1002/sam.11162 +Alexandre Plastino,A hybrid data mining metaheuristic for the p-median problem.,2011,4,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm4.html#PlastinoFMFS11,https://doi.org/10.1002/sam.10116 +Lynne Billard,In this issue.,2011,4,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm4.html#Billard11,https://doi.org/10.1002/sam.10117 +Kanishka Bhaduri,Distributed Decision-Tree Induction in Peer-to-Peer Systems.,2008,1,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm1.html#BhaduriWGK08,https://doi.org/10.1002/sam.10006 +Wenning Feng,Spatial regression and estimation of disease risks: A clustering-based approach.,2016,9,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm9.html#FengLMZ16,https://doi.org/10.1002/sam.11314 +Edward J. Wegman,Special issue of statistical analysis and data mining.,2012,5,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm5.html#Wegman12,https://doi.org/10.1002/sam.11151 +Maruti Kumar Mudunuru,Sequential geophysical and flow inversion to characterize fracture networks in subsurface systems.,2017,10,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm10.html#MudunuruKMC17,https://doi.org/10.1002/sam.11356 +Axel Gandy,Special Issue on Astrostatistics.,2013,6,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm6.html#GandyT13,https://doi.org/10.1002/sam.11182 +Krishna Kummamuru,Unsupervised segmentation of conversational transcripts.,2009,2,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm2.html#KummamuruPRS09,https://doi.org/10.1002/sam.10043 +Evangelos E. Papalexakis,Turbo-SMT: Parallel coupled sparse matrix-Tensor factorizations and applications.,2016,9,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm9.html#PapalexakisMSFT16,https://doi.org/10.1002/sam.11315 +Douglas Steinley,Clusterwise p* models for social network analysis.,2011,4,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm4.html#SteinleyBW11,https://doi.org/10.1002/sam.10139 +Andrew G. Salinger,Dimension reduction in magnetohydrodynamics power generation models: Dimensional analysis and active subspaces.,2017,10,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm10.html#SalingerCSW17,https://doi.org/10.1002/sam.11355 +Fulvia Pennoni,Latent Markov and growth mixture models for ordinal individual responses with covariates: A comparison.,2017,10,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm10.html#PennoniR17,https://doi.org/10.1002/sam.11335 +Linkan Bian,Stochastic methodology for prognostics under continuously varying environmental profiles.,2013,6,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm6.html#BianG13,https://doi.org/10.1002/sam.11154 +Krishna Rajan,Materials Informatics.,2009,1,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm1.html#RajanM09,https://doi.org/10.1002/sam.10022 +Dongryeol Lee,A distributed kernel summation framework for general-dimension machine learning.,2014,7,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm7.html#LeeSVG14,https://doi.org/10.1002/sam.11207 +Esther Galbrun,From black and white to full color: extending redescription mining outside the Boolean world.,2012,5,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm5.html#GalbrunM12,https://doi.org/10.1002/sam.11145 +Stephanie Aerts,Cellwise robust regularized discriminant analysis.,2017,10,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm10.html#AertsW17,https://doi.org/10.1002/sam.11365 +Richard Emilion,Unsupervised classification and analysis of objects described by nonparametric probability distributions.,2012,5,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm5.html#Emilion12,https://doi.org/10.1002/sam.11160 +Michael E. Houle,The Relevant-Set Correlation Model for Data Clustering.,2008,1,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm1.html#Houle08,https://doi.org/10.1002/sam.10013 +Jennifer G. Dy,Editorial to the Special Issue of Selected Papers of SDM 2013.,2014,7,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm7.html#DyZ14,https://doi.org/10.1002/sam.11238 +Ryan R. Curtin,Dual-tree fast exact max-kernel search.,2014,7,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm7.html#CurtinR14,https://doi.org/10.1002/sam.11218 +Nathalie Villa-Vialaneix,Beyond multidimensional data in model visualization: High-dimensional and complex nonnumeric data.,2015,8,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm8.html#Villa-Vialaneix15,https://doi.org/10.1002/sam.11274 +Anna J. Blackstock,Clustering based on periodicity in high-throughput time course data.,2011,4,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm4.html#BlackstockMPJY11,https://doi.org/10.1002/sam.10137 +Bertrand S. Clarke,Special Issue on Statistical Learning.,2013,6,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm6.html#Clarke13,https://doi.org/10.1002/sam.11201 +Veera Sundararaghavan,A statistical learning approach for the design of polycrystalline materials.,2009,1,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm1.html#SundararaghavanZ09,https://doi.org/10.1002/sam.10017 +David Beaudoin,Biased penalty calls in the National Hockey League.,2016,9,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm9.html#BeaudoinSS16,https://doi.org/10.1002/sam.11320 +Varun Chandola,A scalable gaussian process analysis algorithm for biomass monitoring.,2011,4,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm4.html#ChandolaV11,https://doi.org/10.1002/sam.10129 +Yuting Ma,Feature subspace learning based on local point processes patterns.,2018,11,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm11.html#MaDZ18,https://doi.org/10.1002/sam.11368 +Srinivasan Parthasarathy 0001,Guest editorial.,2008,1,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm1.html#ParthasarathyL08,https://doi.org/10.1002/sam.10002 +Luke Miratrix,Conducting sparse feature selection on arbitrarily long phrases in text corpora with a focus on interpretability.,2016,9,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm9.html#MiratrixA16,https://doi.org/10.1002/sam.11323 +Jennifer Clarke,Prequential analysis of complex data with adaptive model reselection.,2009,2,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm2.html#ClarkeC09,https://doi.org/10.1002/sam.10052 +Julian Faraway,Modeling lightcurves for improved classification of astronomical objects.,2016,9,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm9.html#FarawayMSWWZ16,https://doi.org/10.1002/sam.11305 +Yuexiao Dong,A note on sliced inverse regression with missing predictors.,2012,5,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm5.html#DongZ12,https://doi.org/10.1002/sam.10132 +Peifeng Yin,It takes two to tango: Exploring social tie development with both online and offline interactions.,2016,9,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm9.html#YinHLL16,https://doi.org/10.1002/sam.11265 +Georg M. Goerg,Testing for white noise against locally stationary alternatives.,2012,5,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm5.html#Goerg12,https://doi.org/10.1002/sam.11157 +Monique Noirhomme-Fraiture,Far beyond the classical data models: symbolic data analysis.,2011,4,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm4.html#Noirhomme-FraitureB11,https://doi.org/10.1002/sam.10112 +Carey E. Priebe,Quantitative Horizon Scanning for Mitigating Technological Surprise: Detecting the Potential for Collaboration at the Interface.,2012,5,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm5.html#PriebeSMB12,https://doi.org/10.1002/sam.11143 +Sean L. Barnes,Great expectations: An analysis of major league baseball free agent performance.,2016,9,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm9.html#BarnesB16,https://doi.org/10.1002/sam.11311 +Ting Chen,An Input Variable Selection Method for the Artificial Neural Network of Shear Stiffness of Worsted Fabrics.,2009,1,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm1.html#ChenZCL09,https://doi.org/10.1002/sam.10020 +Jimeng Sun,Less is More: Sparse Graph Mining with Compact Matrix Decomposition.,2008,1,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm1.html#SunXZF08,https://doi.org/10.1002/sam.102 +Ashok N. Srivastava,Special issue on the best papers of the Conference on Intelligent Data Understanding (CIDU 2010).,2011,4,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm4.html#SrivastavaC11,https://doi.org/10.1002/sam.10131 +Ryan Nora,Ensemble simulations of inertial confinement fusion implosions.,2017,10,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm10.html#NoraPSFB17,https://doi.org/10.1002/sam.11344 +Innar Liiv,Seriation and matrix reordering methods: An historical overview.,2010,3,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm3.html#Liiv10,https://doi.org/10.1002/sam.10071 +Tianwei Yu,AAPL: assessing association between p-value lists.,2013,6,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm6.html#YuZS13,https://doi.org/10.1002/sam.11180 +Eugene Demidenko,The next-generation K-means algorithm.,2018,11,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm11.html#Demidenko18,https://doi.org/10.1002/sam.11379 +Katherine M. Simonson,A statistical approach to combining multisource information in one-class classifiers.,2017,10,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm10.html#SimonsonWHLB17,https://doi.org/10.1002/sam.11342 +Joseph S. Verducci,Chemogenomic insights into biological systems.,2009,2,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm2.html#Verducci09,https://doi.org/10.1002/sam.10050 +Ruggero G. Pensa,Co-clustering numerical data under user-defined constraints.,2010,3,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm3.html#PensaBCA10,https://doi.org/10.1002/sam.10064 +Chandrika Kamath,Using data mining to enable integration of wind resources on the power grid.,2012,5,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm5.html#KamathF12,https://doi.org/10.1002/sam.11164 +Olvi L. Mangasarian,Proximal Knowledge-based Classification.,2009,1,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm1.html#MangasarianWF09,https://doi.org/10.1002/sam.10019 +Nuno Castro,Significant motifs in time series.,2012,5,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm5.html#CastroA12,https://doi.org/10.1002/sam.11134 +Chandan K. Reddy,Modeling local nonlinear correlations using subspace principal curves.,2010,3,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm3.html#ReddyA10,https://doi.org/10.1002/sam.10086 +Montserrat Fuentes,Trellis display for modeling data from designed experiments.,2011,4,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm4.html#FuentesXC11,https://doi.org/10.1002/sam.10102 +Boris Cule,MARBLES: Mining association rules buried in long event sequences.,2014,7,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm7.html#CuleTG14,https://doi.org/10.1002/sam.11199 +Hoyt A. Koepke,On the limits of clustering in high dimensions via cost functions.,2011,4,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm4.html#KoepkeC11,https://doi.org/10.1002/sam.10095 +Joseph S. Verducci,Prize Winning Papers on Statistical Learning and Data Mining.,2012,5,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm5.html#Verducci12a,https://doi.org/10.1002/sam.11175 +Catherine Hurley,"Discussion of ""visualizing statistical models: Removing the blindfold"".",2015,8,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm8.html#Hurley15,https://doi.org/10.1002/sam.11273 +Shunsuke Hirose,Latent variable mining with its applications to anomalous behavior detection.,2009,2,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm2.html#HiroseY09,https://doi.org/10.1002/sam.10032 +Michael J. Kane,Scatter matrix concordance as a diagnostic for regressions on subsets of data.,2016,9,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm9.html#KaneLTU16,https://doi.org/10.1002/sam.11283 +Danai Koutra,Summarizing and understanding large graphs.,2015,8,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm8.html#KoutraKVF15,https://doi.org/10.1002/sam.11267 +Bhupesh Shetty,Analysis of monday night football viewership.,2016,9,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm9.html#ShettyOG16,https://doi.org/10.1002/sam.11317 +Liang Ge,On handling negative transfer and imbalanced distributions in multiple source transfer learning.,2014,7,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm7.html#GeGNLZ14,https://doi.org/10.1002/sam.11217 +Faris Alqadah,A novel framework for detecting maximally banded matrices in binary data.,2010,3,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm3.html#AlqadahBJ10,https://doi.org/10.1002/sam.10089 +William S. Cleveland,Divide and recombine (D and R): Data science for large complex data.,2014,7,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm7.html#ClevelandH14,https://doi.org/10.1002/sam.11242 +Lu Wang 0004,Clustering over-dispersed data with mixed feature types.,2018,11,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm11.html#WangZD18,https://doi.org/10.1002/sam.11369 +Ashok N. Srivastava,Special Issue on CIDU '11.,2013,6,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm6.html#SrivastavaC13,https://doi.org/10.1002/sam.11194 +Scott R. Broderick,Data mining density of states spectra for crystal structure classification: An inverse problem approach.,2009,1,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm1.html#BroderickAR09,https://doi.org/10.1002/sam.10026 +Necip Doganaksoy,Data Mining: A Gateway to Better Data Gathering.,2009,1,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm1.html#DoganaksoyH09,https://doi.org/10.1002/sam.10015 +Pietro Giorgio Lovaglio,Skills in demand for ICT and statistical occupations: Evidence from web-based job vacancies.,2018,11,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm11.html#LovaglioCMM18,https://doi.org/10.1002/sam.11372 +Yitao Duan,How to deal with malicious users in privacy-preserving distributed data mining.,2009,2,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm2.html#DuanC09,https://doi.org/10.1002/sam.10029 +Ji Meng Loh,Spatial detection of anomalous cellular network events.,2014,7,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm7.html#Loh14,https://doi.org/10.1002/sam.11229 +Volodymyr Melnykov,Efficient estimation in model-based clustering of Gaussian regression time series.,2012,5,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm5.html#Melnykov12,https://doi.org/10.1002/sam.11138 +Brian McWilliams,Sparse partial least squares regression for on-line variable selection with multivariate data streams.,2010,3,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm3.html#McWilliamsM10,https://doi.org/10.1002/sam.10074 +Giuliana Pallotta,Context-aided analysis of community evolution in networks.,2017,10,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm10.html#PallottaKCN17,https://doi.org/10.1002/sam.11354 +Marisa Thoma,Discriminative frequent subgraph mining with optimality guarantees.,2010,3,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm3.html#ThomaCGHKSSYYB10,https://doi.org/10.1002/sam.10084 +Vineet Chaoji,ORIGAMI: A Novel and Effective Approach for Mining Representative Orthogonal Graph Patterns.,2008,1,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm1.html#ChaojiHSBZ08,https://doi.org/10.1002/sam.10004 +Zhuang Wang,Online training on a budget of support vector machines using twin prototypes.,2010,3,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm3.html#WangV10,https://doi.org/10.1002/sam.10075 +Kerby Shedden,Gene expression associations with the growth inhibitory effects of small molecules on live cells: Specificity of effects and uniformity of mechanisms.,2009,2,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm2.html#SheddenYR09,https://doi.org/10.1002/sam.10049 +James Theiler,Selecting the selector: Comparison of update rules for discrete global optimization.,2017,10,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm10.html#TheilerZ17,https://doi.org/10.1002/sam.11343 +Giancarlo Ragozini,Archetypal analysis for data-driven prototype identification.,2017,10,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm10.html#RagoziniPD17,https://doi.org/10.1002/sam.11325 +Vipin Kumar,Summary Report of SDM 2008 Panel: Perspectives on Research Directions and Trends for the Data Mining Research Community.,2008,1,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm1.html#Kumar08,https://doi.org/10.1002/sam.10011 +Arthur Zimek,A survey on unsupervised outlier detection in high-dimensional numerical data.,2012,5,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm5.html#ZimekSK12,https://doi.org/10.1002/sam.11161 +Adam Petrie,The snake for visualizing and for counting clusters in multivariate data.,2010,3,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm3.html#PetrieW10,https://doi.org/10.1002/sam.10076 +Alexander D. Bolton,APT malware static trace analysis through bigrams and graph edit distance.,2017,10,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm10.html#BoltonA17,https://doi.org/10.1002/sam.11346 +Sónia Dias,Linear regression model with histogram-valued variables.,2015,8,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm8.html#DiasB15,https://doi.org/10.1002/sam.11260 +Steven L. Scott,Carpe Datum! Comment on 'data science: An action plan for expanding the technical areas of the field of statistics'.,2014,7,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm7.html#Scott14,https://doi.org/10.1002/sam.11243 +Hemant Ishwaran,Random survival forests for high-dimensional data.,2011,4,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm4.html#IshwaranKCM11,https://doi.org/10.1002/sam.10103 +Ryohei Fujimaki,Mining abnormal patterns from heterogeneous time-series with irrelevant features for fault event detection.,2009,2,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm2.html#FujimakiNTSY09,https://doi.org/10.1002/sam.10030 +Bruce Bugbee,Prediction and characterization of application power use in a high-performance computing environment.,2017,10,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm10.html#BugbeePEEGP17,https://doi.org/10.1002/sam.11339 +Emilie Purvine,Comparative study of clustering techniques for real-time dynamic model reduction.,2017,10,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm10.html#PurvineSHHLLW17,https://doi.org/10.1002/sam.11352 +Javier Arroyo,Smoothing methods for histogram-valued time series: an application to value-at-risk.,2011,4,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm4.html#ArroyoGMR11,https://doi.org/10.1002/sam.10114 +Bin Li 0008,A nonparametric test of independence between 2 variables.,2017,10,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm10.html#LiY17,https://doi.org/10.1002/sam.11363 +Edgard M. Maboudou-Tchao,Tests for mean vectors in high dimension.,2013,6,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm6.html#Maboudou-TchaoS13,https://doi.org/10.1002/sam.11209 +Charu C. Aggarwal,On supervised mining of dynamic content-based networks.,2012,5,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm5.html#AggarwalL12,https://doi.org/10.1002/sam.10140 +Josef Scheiber,SPREAD - exploiting chemical features that cause differential activity behavior.,2009,2,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm2.html#ScheiberJBMMSCWUDG09,https://doi.org/10.1002/sam.10036 +Adrian E. Raftery,Use and communication of probabilistic forecasts.,2016,9,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm9.html#Raftery16,https://doi.org/10.1002/sam.11302 +Fuzhen Zhuang,Exploiting associations between word clusters and document classes for cross-domain text categorization.,2011,4,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm4.html#ZhuangLXHXS11,https://doi.org/10.1002/sam.10099 +Anita Monika Thieler,Periodicity detection in irregularly sampled light curves by robust regression and outlier detection.,2013,6,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm6.html#ThielerBFR13,https://doi.org/10.1002/sam.11178 +Shuo Chen,A novel support vector classifier for longitudinal high-dimensional data and its application to neuroimaging data.,2011,4,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm4.html#ChenB11,https://doi.org/10.1002/sam.10141 +Bibudh Lahiri,Space-efficient tracking of persistent items in a massive data stream.,2014,7,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm7.html#LahiriTC14,https://doi.org/10.1002/sam.11214 +Stefano Andreon,Measurement errors and scaling relations in astrophysics: a review.,2013,6,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm6.html#AndreonH13,https://doi.org/10.1002/sam.11173 +Kelvin Sim,Mining maximal quasi-bicliques: Novel algorithm and applications in the stock market and protein networks.,2009,2,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm2.html#SimLGL09,https://doi.org/10.1002/sam.10051 +Amy McGovern,Using spatiotemporal relational random forests to improve our understanding of severe weather processes.,2011,4,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm4.html#McGovernGTBBW11,https://doi.org/10.1002/sam.10128 +Souptik Datta,A communication efficient probabilistic algorithm for mining frequent itemsets from a peer-to-peer network.,2009,2,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm2.html#DattaK09,https://doi.org/10.1002/sam.10033 +Gaurav Pandey,Association Rules Network: Definition and Applications.,2009,1,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm1.html#PandeyCPAD09,https://doi.org/10.1002/sam.10027 +Rikiya Takahashi,Sequential minimal optimization in convex clustering repetitions.,2012,5,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm5.html#Takahashi12,https://doi.org/10.1002/sam.10146 +Yongli Zhang,Model selection procedure for high-dimensional data.,2010,3,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm3.html#ZhangS10,https://doi.org/10.1002/sam.10088 +Paola Cerchiello,A Bayesian h-index: How to measure research impact.,2016,9,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm9.html#CerchielloG16,https://doi.org/10.1002/sam.11326 +Amy Braverman,A likelihood-based comparison of temporal models for physical processes.,2011,4,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm4.html#BravermanCT11,https://doi.org/10.1002/sam.10113 +Laura Dabbish,Construction of association networks from communication in teams working on complex projects.,2011,4,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm4.html#DabbishTDH11,https://doi.org/10.1002/sam.10135 +Vladimir Ouzienko,A decoupled exponential random graph model for prediction of structure and attributes in temporal social networks.,2011,4,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm4.html#OuzienkoGO11,https://doi.org/10.1002/sam.10130 +Rafael Izbicki,Learning with many experts: Model selection and sparsity.,2013,6,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm6.html#IzbickiS13,https://doi.org/10.1002/sam.11206 +Jennifer Nguyen,Content-boosted matrix factorization techniques for recommender systems.,2013,6,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm6.html#NguyenZ13,https://doi.org/10.1002/sam.11184 +Elke Achtert,Global Correlation Clustering Based on the Hough Transform.,2008,1,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm1.html#AchtertBDKZ08,https://doi.org/10.1002/sam.10012 +Mia Hubert,Fast robust SUR with economical and actuarial applications.,2017,10,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm10.html#HubertVY17,https://doi.org/10.1002/sam.11313 +Kamalika Das,Sparse inverse kernel Gaussian Process regression.,2013,6,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm6.html#DasS13,https://doi.org/10.1002/sam.11189 +Claire Monteleoni,Tracking climate models.,2011,4,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm4.html#MonteleoniSSA11,https://doi.org/10.1002/sam.10126 +Jaya Kawale,A graph-based approach to find teleconnections in climate data.,2013,6,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm6.html#KawaleLKSSKGSS13,https://doi.org/10.1002/sam.11181 +Ashin Mukherjee,Reduced rank ridge regression and its kernel extensions.,2011,4,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm4.html#MukherjeeZ11,https://doi.org/10.1002/sam.10138 +Qiyi Lu,Sparse Fisher's linear discriminant analysis for partially labeled data.,2018,11,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm11.html#LuQ18,https://doi.org/10.1002/sam.11367 +William S. Cleveland,Data science: An action plan for expanding the technical areas of the field of statistics.,2014,7,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm7.html#Cleveland14,https://doi.org/10.1002/sam.11239 +Markus Ojala,Randomization methods for assessing data analysis results on real-valued matrices.,2009,2,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm2.html#OjalaVKHM09,https://doi.org/10.1002/sam.10042 +Richard LeSar,Materials informatics: An emerging technology for materials development.,2009,1,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm1.html#LeSar09,https://doi.org/10.1002/sam.10034 +Zhiliang Ma,Fusion and inference from multiple data sources in a commensurate space.,2012,5,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm5.html#MaMP12,https://doi.org/10.1002/sam.11142 +David C. Stenning,Morphological feature extraction for statistical learning with applications to solar image data.,2013,6,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm6.html#StenningLDKSY13,https://doi.org/10.1002/sam.11200 +Zach Shahn,Predicting health outcomes from high-dimensional longitudinal health histories using relational random forests.,2015,8,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm8.html#ShahnRM15,https://doi.org/10.1002/sam.11268 +Francesco Giordano,Clustering complex time-series databases by using periodic components.,2017,10,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm10.html#GiordanoRP17,https://doi.org/10.1002/sam.11341 +Nicola Loperfido,Some remarks on the R2 for clustering.,2018,11,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm11.html#LoperfidoT18,https://doi.org/10.1002/sam.11378 +Tonio Di Battista,Functional confidence bands for lichen biodiversity profiles: A case study in Tuscany region (central Italy).,2017,10,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm10.html#BattistaF17,https://doi.org/10.1002/sam.11334 +Hoyt A. Koepke,A Bayesian criterion for cluster stability.,2013,6,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm6.html#KoepkeC13,https://doi.org/10.1002/sam.11176 +Yijun Sun,Feature extraction through local learning.,2009,2,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm2.html#SunW09,https://doi.org/10.1002/sam.10028 +Chang Xu,Bayesian kernel machine models for testing genetic pathway effects in prostate cancer prognosis.,2017,10,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm10.html#XuC17,https://doi.org/10.1002/sam.11349 +Courtney D. Corley,Thought leaders during crises in massive social networks.,2012,5,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm5.html#CorleyFR12,https://doi.org/10.1002/sam.11147 +Joseph S. Verducci,Introduction to the special issue on best papers from the SLDM competition.,2011,4,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm4.html#VerducciO11,https://doi.org/10.1002/sam.10147 +Irene Epifanio,h-plots for displaying nonmetric dissimilarity matrices.,2013,6,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm6.html#Epifanio13,https://doi.org/10.1002/sam.11177 +Theodoros Rekatsinas,Forecasting rare disease outbreaks from open source indicators.,2017,10,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm10.html#RekatsinasGMNBG17,https://doi.org/10.1002/sam.11337 +Xin Gao,Application of model selection technique in chemogenomic data analysis.,2009,2,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm2.html#GaoLH09,https://doi.org/10.1002/sam.10048 +Yue Han,A variance reduction framework for stable feature selection.,2012,5,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm5.html#HanY12,https://doi.org/10.1002/sam.11152 +Jia Li 0001,Advancing science and technology with big data analytics.,2018,11,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm11.html#Li18,https://doi.org/10.1002/sam.11375 +Riley Franks,Robustness properties of a sequential test for vaccine safety in the presence of misspecification.,2014,7,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm7.html#FranksSALHGWKBM14,https://doi.org/10.1002/sam.11234 +Nafees Anwar,Measurement of data complexity for classification problems with unbalanced data.,2014,7,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm7.html#AnwarJG14,https://doi.org/10.1002/sam.11228 +Zubin Abraham,Contour regression: A distribution-regularized regression framework for climate modeling.,2014,7,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm7.html#AbrahamTPWZL14,https://doi.org/10.1002/sam.11222 +Charu C. Aggarwal,A framework for clustering massive graph streams.,2010,3,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm3.html#AggarwalZY10,https://doi.org/10.1002/sam.10090 +Jeongyoun Ahn,A resampling approach for interval-valued data regression.,2012,5,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm5.html#AhnPPJ12,https://doi.org/10.1002/sam.11150 +Mahmudur Rahman,To catch a fake: Curbing deceptive Yelp ratings and venues.,2015,8,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm8.html#RahmanCBC15,https://doi.org/10.1002/sam.11264 +Lucas Vendramin,Relative clustering validity criteria: A comparative overview.,2010,3,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm3.html#VendraminCH10,https://doi.org/10.1002/sam.10080 +Kyu Ha Lee,Survival prediction and variable selection with simultaneous shrinkage and grouping priors.,2015,8,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm8.html#LeeCS15,https://doi.org/10.1002/sam.11266 +Hao Wu,Sparse estimation of multivariate Poisson log-normal models from count data.,2018,11,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm11.html#WuDR18,https://doi.org/10.1002/sam.11370 +Mu Qiao,Distance-based mixture modeling for classification via hypothetical local mapping.,2016,9,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm9.html#QiaoL16,https://doi.org/10.1002/sam.11285 +Xin Jin 0001,A general framework for efficient clustering of large datasets based on activity detection.,2011,4,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm4.html#JinKHCY11,https://doi.org/10.1002/sam.10097 +Xianshu Zhu,Peer-to-peer distributed text classifier learning in PADMINI.,2012,5,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm5.html#ZhuMDAKB12,https://doi.org/10.1002/sam.11155 +Jingrui He,Coselection of features and instances for unsupervised rare category analysis.,2010,3,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm3.html#HeC10,https://doi.org/10.1002/sam.10091 +Zhiyu Liang,Eigen-analysis of nonlinear PCA with polynomial kernels.,2013,6,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm6.html#LiangL13,https://doi.org/10.1002/sam.11211 +Zhanpan Zhang,Biclustering scatter plots using data depth measures.,2013,6,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm6.html#ZhangCJB13,https://doi.org/10.1002/sam.11166 +Jia Li,Agglomerative connectivity constrained clustering for image segmentation.,2011,4,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm4.html#Li11,https://doi.org/10.1002/sam.10109 +Santu Rana,A predictive framework for modeling healthcare data with evolving clinical interventions.,2015,8,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm8.html#RanaGPV15,https://doi.org/10.1002/sam.11262 +Joseph S. Verducci,In this issue.,2011,4,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm4.html#Verducci11,https://doi.org/10.1002/sam.10108 +Samiran Ghosh,Feature import vector machine: A general classifier with flexible feature selection.,2015,8,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm8.html#GhoshW15,https://doi.org/10.1002/sam.11259 +Chandrika Kamath,Application-Driven Data Analysis.,2009,1,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm1.html#Kamath09,https://doi.org/10.1002/sam.10023 +Joseph S. Verducci,Introduction to Volume 5 Issue 2.,2012,5,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm5.html#Verducci12,https://doi.org/10.1002/sam.11139 +Robert A. Stine,Making room for the modeler in data mining.,2012,5,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm5.html#Stine12,https://doi.org/10.1002/sam.10145 +Arnold Goodman,Brief History of the Interface of Computing and Statistics which Preceded Data Mining's Birth.,2008,1,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm1.html#Goodman08,https://doi.org/10.1002/sam.101 +Michael Mentges,Development of a high throughput environment for the optimization of process parameters for the solvothermal synthesis of isomerization catalysts.,2009,1,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm1.html#MentgesRM09,https://doi.org/10.1002/sam.10039 +Khaled Alotaibi,Nonmetric multidimensional scaling: A perturbation model for privacy-preserving data clustering.,2014,7,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm7.html#AlotaibiRI14,https://doi.org/10.1002/sam.11225 +Joel Brooks,Using machine learning to draw inferences from pass location data in soccer.,2016,9,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm9.html#BrooksKG16,https://doi.org/10.1002/sam.11318 +Tianwei Yu,Nonlinear variable selection with continuous outcome: A fully nonparametric incremental forward stagewise approach.,2018,11,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm11.html#Yu18,https://doi.org/10.1002/sam.11381 +Abel Rodríguez,Modeling the dynamics of social networks using Bayesian hierarchical blockmodels.,2012,5,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm5.html#Rodriguez12,https://doi.org/10.1002/sam.10150 +Mu Qiao,Two-way Gaussian mixture models for high dimensional classification.,2010,3,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm3.html#QiaoL10,https://doi.org/10.1002/sam.10082 +Lise Bellanger,Discrimination of psychotropic drugs over-consumers using a threshold exceedance based approach.,2013,6,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm6.html#BellangerVPJS13,https://doi.org/10.1002/sam.11165 +Jun Yang 0003,Harmonium Models for Video Classification.,2008,1,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm1.html#YangYLX08,https://doi.org/10.1002/sam.103 +Lynne Billard,Brief overview of symbolic data and analytic issues.,2011,4,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm4.html#Billard11a,https://doi.org/10.1002/sam.10115 +Anthony M. D'Amato,Retrospective-cost-based adaptive model refinement for the ionosphere and thermosphere.,2011,4,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm4.html#DAmatoRB11,https://doi.org/10.1002/sam.10127 +Laurent El Ghaoui,Understanding large text corpora via sparse machine learning.,2013,6,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm6.html#GhaouiPLDSB13,https://doi.org/10.1002/sam.11187 +Hongjun Wang,Bayesian cluster ensembles.,2011,4,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm4.html#WangSB11,https://doi.org/10.1002/sam.10098 +David A. Shaw,Regression on manifolds using data-dependent regularization with applications in computer vision.,2013,6,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm6.html#ShawC13,https://doi.org/10.1002/sam.11190 +Joseph S. Verducci,In This Issue.,2010,3,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm3.html#Verducci10a,https://doi.org/10.1002/sam.10072 +Livio Fenga,A wavelet threshold denoising procedure for multimodel predictions: An application to economic time series.,2017,10,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm10.html#Fenga17,https://doi.org/10.1002/sam.11351 +Paolo Frumento,The fragility of standard inferential approaches in principal stratification models relative to direct likelihood approaches.,2016,9,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm9.html#FrumentoMPR16,https://doi.org/10.1002/sam.11299 +Seo Young Park,Multicategory composite least squares classifiers.,2010,3,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm3.html#ParkLLS10,https://doi.org/10.1002/sam.10081 +Amy Wagaman,Efficient k-NN graph construction for graphs on variables.,2013,6,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm6.html#Wagaman13,https://doi.org/10.1002/sam.11186 +Christopher Minas,Distance-Based Analysis of Variance: Approximate Inference.,2014,7,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm7.html#MinasM14,https://doi.org/10.1002/sam.11227 +Hadley Wickham,Visualizing statistical models: Removing the blindfold.,2015,8,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm8.html#WickhamCH15,https://doi.org/10.1002/sam.11271 +Jerry Scripps,Constrained overlapping clusters: minimizing the negative effects of bridge-nodes.,2010,3,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm3.html#ScrippsT10,https://doi.org/10.1002/sam.10066 +Arnold Goodman,Erratum: Emerging Topics and Challenges for Statistical Analysis and Data Mining.,2011,4,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm4.html#Goodman11a,https://doi.org/10.1002/sam.10121 +Stratos Mansalis,An evaluation of data stream clustering algorithms.,2018,11,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm11.html#MansalisNPT18,https://doi.org/10.1002/sam.11380 +Karsten Steinhaeuser,Complex networks as a unified framework for descriptive analysis and predictive modeling in climate science.,2011,4,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm4.html#SteinhaeuserCG11,https://doi.org/10.1002/sam.10100 +Guanhua Chen,Composite large margin classifiers with latent subclasses for heterogeneous biomedical data.,2016,9,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm9.html#ChenLSK16,https://doi.org/10.1002/sam.11300 +Paola Zuccolotto,Symbolic missing data imputation in principal component analysis.,2011,4,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm4.html#Zuccolotto11,https://doi.org/10.1002/sam.10101 +Adelaide Freitas,Improving the performance of the iterative signature algorithm for the identification of relevant patterns.,2011,4,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm4.html#FreitasAPOMS11,https://doi.org/10.1002/sam.10104 +Bradley C. Turnbull,Iterative selection using orthogonal regression techniques.,2013,6,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm6.html#TurnbullGZ13,https://doi.org/10.1002/sam.11212 +Peter J. Haas,Discovering and Exploiting Statistical Properties for Query Optimization in Relational Databases: A Survey.,2009,1,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm1.html#HaasILM09,https://doi.org/10.1002/sam.10016 +Hongbo Deng,Exploring and inferring user-user pseudo-friendship for sentiment analysis with heterogeneous networks.,2014,7,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm7.html#DengHLJWL14,https://doi.org/10.1002/sam.11223 +Arnold Goodman,Emerging topics and challenges for statistical analysis and data mining.,2011,4,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm4.html#Goodman11,https://doi.org/10.1002/sam.10107 +S. Stanley Young,Assessing geographic heterogeneity and variable importance in an air pollution data set.,2013,6,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm6.html#YoungX13,https://doi.org/10.1002/sam.11202 +Dongmin Kim,Fast Projection-Based Methods for the Least Squares Nonnegative Matrix Approximation Problem.,2008,1,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm1.html#KimSD08,https://doi.org/10.1002/sam.104 +Yoshinobu Kawahara,Sequential change-point detection based on direct density-ratio estimation.,2012,5,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm5.html#KawaharaS12,https://doi.org/10.1002/sam.10124 +Lasse Holmström,Posterior singular spectrum analysis.,2013,6,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm6.html#HolmstromL13,https://doi.org/10.1002/sam.11195 +David A. Johannsen,Betti numbers of graphs with an application to anomaly detection.,2012,5,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm5.html#JohannsenM12,https://doi.org/10.1002/sam.11141 +Manabu Ichino,The quantile method for symbolic principal component analysis.,2011,4,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm4.html#Ichino11,https://doi.org/10.1002/sam.10111 +Qiwei Li,A Bayesian mixture model for clustering and selection of feature occurrence rates under mean constraints.,2017,10,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm10.html#LiGRBV17,https://doi.org/10.1002/sam.11350 +Laura Parisi,Dynamic hierarchical models for monetary transmission.,2017,10,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm10.html#Parisi17,https://doi.org/10.1002/sam.11338 +Tong Tong Wu,Nonlinear vertex discriminant analysis with reproducing kernels.,2012,5,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm5.html#WuW12,https://doi.org/10.1002/sam.11137 +Genevera I. Allen,"Comments on ""visualizing statistical models"": Visualizing modern statistical methods for Big Data.",2015,8,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm8.html#AllenCH15,https://doi.org/10.1002/sam.11272 +David Parkinson,Bayesian model averaging in astrophysics: a review.,2013,6,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm6.html#ParkinsonL13,https://doi.org/10.1002/sam.11179 +Nathan M. Stein,Combining computer models to account for mass loss in stellar evolution.,2013,6,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm6.html#SteinDHDJJ13,https://doi.org/10.1002/sam.11172 +Christoforos Anagnostopoulos,Online linear and quadratic discriminant analysis with adaptive forgetting for streaming classification.,2012,5,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm5.html#AnagnostopoulosTAPH12,https://doi.org/10.1002/sam.10151 +Yushi Liu,Review of statistical analyses in drug discovery and chemogenomics.,2009,2,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm2.html#LiuV09,https://doi.org/10.1002/sam.10041 +Xiangxin Zhu,Predicting simulation parameters of biological systems using a Gaussian process model.,2012,5,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm5.html#ZhuWJL12,https://doi.org/10.1002/sam.11163 +C. Seshadhri,Wedge sampling for computing clustering coefficients and triangle counts on large graphs.,2014,7,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm7.html#SeshadhriPK14,https://doi.org/10.1002/sam.11224 +Yu Cheng 0001,Legislative prediction with dual uncertainty minimization from heterogeneous information.,2017,10,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm10.html#ChengALC17,https://doi.org/10.1002/sam.11309 +Cong Liu,Two tales of variable selection for high dimensional regression: Screening and model building.,2014,7,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm7.html#LiuSL14,https://doi.org/10.1002/sam.11219 +Basheer Hawwash,Mining and tracking evolving web user trends from large web server logs.,2010,3,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm3.html#HawwashN10,https://doi.org/10.1002/sam.10069 +Murad Badarna,Fast and accurate detection of changes in data streams.,2014,7,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm7.html#BadarnaW14,https://doi.org/10.1002/sam.11216 +Brian McWilliams,Multi-view predictive partitioning in high dimensions.,2012,5,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm5.html#McWilliamsM12,https://doi.org/10.1002/sam.11144 +Binghui Liu,Nonlinear joint latent variable models and integrative tumor subtype discovery.,2016,9,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm9.html#LiuSP16,https://doi.org/10.1002/sam.11306 +Haym Hirsh,Data Mining Research: Current Status and Future Opportunities.,2008,1,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm1.html#Hirsh08,https://doi.org/10.1002/sam.10003 +Kamalika Das,Distributed anomaly detection using 1-class SVM for vertically partitioned data.,2011,4,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm4.html#DasBV11,https://doi.org/10.1002/sam.10125 +Seoung Bum Kim,Controlling the False Discovery Rate for Feature Selection in High-resolution NMR Spectra.,2008,1,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm1.html#KimCPZJ08,https://doi.org/10.1002/sam.10005 +Edoardo M. Airoldi,Confidence sets for network structure.,2011,4,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm4.html#AiroldiCW11,https://doi.org/10.1002/sam.10136 +Patrick K. Kimes,Large-margin classification with multiple decision rules.,2016,9,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm9.html#KimesHMLI16,https://doi.org/10.1002/sam.11304 +Marc Henrion,CASOS: a subspace method for anomaly detection in high dimensional astronomical databases.,2013,6,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm6.html#HenrionHGM13,https://doi.org/10.1002/sam.11167 +Martin Vogt,Predicting the similarity search performance of fingerprints and their combination with molecular property descriptors using probabilistic and information theoretic modeling.,2009,2,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm2.html#VogtNB09,https://doi.org/10.1002/sam.10035 +Duo Zhang 0001,MiTexCube: MicroTextCluster Cube for online analysis of text cells and its applications.,2013,6,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm6.html#ZhangZH13,https://doi.org/10.1002/sam.11159 +Michele Coscia,A classification for community discovery methods in complex networks.,2011,4,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm4.html#CosciaGP11,https://doi.org/10.1002/sam.10133 +Junshui Ma,Generating hypotheses about molecular structure-activity relationships (SARs) by solving an optimization problem.,2009,2,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm2.html#MaTLSSS09,https://doi.org/10.1002/sam.10040 +Ajit C. Tamhane,A parametric mixture model for clustering multivariate binary data.,2010,3,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm3.html#TamhaneQA10,https://doi.org/10.1002/sam.10063 +Hoang Thanh Lam,Mining Compressing Sequential Patterns.,2014,7,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm7.html#LamMFC14,https://doi.org/10.1002/sam.11192 +Krishna Rajan,Principal component analysis and dimensional analysis as materials informatics tools to reduce dimensionality in materials science and engineering.,2009,1,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm1.html#RajanSM09,https://doi.org/10.1002/sam.10031 +Yushi Liu,Time course analysis of microarray data for the pathway of reproductive development in female rainbow trout.,2009,2,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm2.html#LiuVSHNCSH09,https://doi.org/10.1002/sam.10047 +Wei-Chen Chen,Model-based clustering of regression time series data via APECM - an AECM algorithm sung to an even faster beat.,2011,4,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm4.html#ChenM11,https://doi.org/10.1002/sam.10143 +Cornelius Arndt,Predicting the future performance of soccer players.,2016,9,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm9.html#ArndtB16,https://doi.org/10.1002/sam.11321 +Jian Zhang 0004,Gaussian process learning for cyber-attack early warning.,2010,3,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm3.html#ZhangPU10,https://doi.org/10.1002/sam.10065 +Shuichi Kawano,Semi-supervised logistic discrimination via labeled data and unlabeled data from different sampling distributions.,2013,6,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm6.html#Kawano13,https://doi.org/10.1002/sam.11204 +Diane Oyen,Order priors for Bayesian network discovery with an application to malware phylogeny.,2017,10,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm10.html#OyenASA17,https://doi.org/10.1002/sam.11364 +Prateek Jain 0002,Simultaneous Unsupervised Learning of Disparate Clusterings.,2008,1,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm1.html#JainMD08,https://doi.org/10.1002/sam.10007 +H. K. D. H. Bhadeshia,Neural Networks and Information in Materials Science.,2009,1,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm1.html#Bhadeshia09,https://doi.org/10.1002/sam.10018 +Joseph S. Verducci,In this Issue.,2010,3,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm3.html#Verducci10c,https://doi.org/10.1002/sam.10083 +Jeongyoun Ahn,A stable hyperparameter selection for the Gaussian RBF kernel for discrimination.,2010,3,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm3.html#Ahn10,https://doi.org/10.1002/sam.10073 +Andrea Mercatanti,Improving inference of Gaussian mixtures using auxiliary variables.,2015,8,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm8.html#MercatantiLM15,https://doi.org/10.1002/sam.11256 +Richard D. De Veaux,Big data and the missing links.,2016,9,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm9.html#VeauxHS16,https://doi.org/10.1002/sam.11303 +Edwin Diday,Principal component analysis for bar charts and metabins tables.,2013,6,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm6.html#Diday13,https://doi.org/10.1002/sam.11188 +Vladimir Vapnik,Constructive setting for problems of density ratio estimation.,2015,8,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm8.html#VapnikBI15,https://doi.org/10.1002/sam.11263 +Jean-Eudes J. Dazard,Cross-validation and peeling strategies for survival bump hunting using recursive peeling methods.,2016,9,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm9.html#DazardCLR16,https://doi.org/10.1002/sam.11301 +Michael J. Kane,Cleveland's action plan and the development of data science over the last 12 years.,2014,7,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm7.html#Kane14,https://doi.org/10.1002/sam.11244 +Yiping Yuan,Maximum Likelihood Estimation Over Directed Acyclic Gaussian Graphs.,2012,5,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm5.html#YuanSP12,https://doi.org/10.1002/sam.11168 +Xiaoxiao Shi,GBC: Gradient boosting consensus model for heterogeneous data.,2014,7,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm7.html#ShiPGY14,https://doi.org/10.1002/sam.11193 +Prasad Patil,"Discussion of ""visualizing statistical models: Removing the blindfold"".",2015,8,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm8.html#PatilL15,https://doi.org/10.1002/sam.11275 +David Banks,Introduction.,2013,6,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm6.html#BanksS13,https://doi.org/10.1002/sam.11213 +Zhen Hu,Clustering algorithm based on mutual K-nearest neighbor relationships.,2012,5,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm5.html#HuB12,https://doi.org/10.1002/sam.10149 +David H. Collins,Panning for gold: Enhancing the precision of sensitivity test data.,2017,10,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm10.html#CollinsWH17,https://doi.org/10.1002/sam.11345 +Vandana Pursnani Janeja,Discovery of anomalous spatio-temporal windows using discretized spatio-temporal scan statistics.,2011,4,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm4.html#JanejaGMP11,https://doi.org/10.1002/sam.10122 +Chen Chen 0022,On the eigen-functions of dynamic graphs: Fast tracking and attribution algorithms.,2017,10,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm10.html#ChenT17,https://doi.org/10.1002/sam.11310 +Marianthi Markatou,A pattern discovery framework for adverse event evaluation and inference in spontaneous reporting systems.,2014,7,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm7.html#MarkatouB14,https://doi.org/10.1002/sam.11233 +Shubhabrata Datta,Extraction of knowledge from high strength steel data using soft computing techniques - an overview.,2009,1,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm1.html#Datta09,https://doi.org/10.1002/sam.10024 +Paul G. Constantine,Time-dependent global sensitivity analysis with active subspaces for a lithium ion battery model.,2017,10,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm10.html#ConstantineD17,https://doi.org/10.1002/sam.11347 +Ting Yuan,A coordinate descent algorithm for sparse positive definite matrix estimation.,2013,6,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm6.html#YuanW13,https://doi.org/10.1002/sam.11185 +Qingzhao Yu,Model guided adaptive design and analysis in computer experiment.,2012,5,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm5.html#YuLFP12,https://doi.org/10.1002/sam.11156 +Yuting Ma,Boosted sparse nonlinear distance metric learning.,2016,9,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm9.html#MaZ16,https://doi.org/10.1002/sam.11307 +Sugnet Gardner-Lubbe,Biplot methodology in exploratory analysis of microarray data.,2009,2,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm2.html#Gardner-LubbeRMSP09,https://doi.org/10.1002/sam.10038 +Albrecht Zimmermann,Basketball predictions in the NCAAB and NBA: Similarities and differences.,2016,9,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm9.html#Zimmermann16,https://doi.org/10.1002/sam.11319 +Kary Myers,Discussion of 'data science: An action plan for expanding the technical areas of the field of statistics'.,2014,7,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm7.html#MyersW14,https://doi.org/10.1002/sam.11245 +Kay I. Penny,Mining trauma injury data with imputed values.,2009,2,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm2.html#PennyC09,https://doi.org/10.1002/sam.10044 +Xiaoli Z. Fern,Cluster Ensemble Selection.,2008,1,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm1.html#FernL08,https://doi.org/10.1002/sam.10008 +Geng Li,Effective graph classification based on topological and label attributes.,2012,5,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm5.html#LiSYZ12,https://doi.org/10.1002/sam.11153 +Ahlame Douzal Chouakria,Principal component analysis for interval-valued observations.,2011,4,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm4.html#ChouakriaBD11,https://doi.org/10.1002/sam.10118 +Ali Ahmadian Ramaki,A systematic review on intrusion detection based on the Hidden Markov Model.,2018,11,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm11.html#RamakiRJ18,https://doi.org/10.1002/sam.11377 +Malik Magdon-Ismail,A permutation approach to validation.,2010,3,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm3.html#Magdon-IsmailM10,https://doi.org/10.1002/sam.10096 +Ola Caster,Large-scale regression-based pattern discovery: The example of screening the WHO global drug safety database.,2010,3,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm3.html#CasterNMB10,https://doi.org/10.1002/sam.10078 +Hien D. Nguyen,Whole-volume clustering of time series data from zebrafish brain calcium images via mixture modeling.,2018,11,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm11.html#NguyenUMVLHRJ18,https://doi.org/10.1002/sam.11366 +Jon R. Kettenring,A Perspective on Cluster Analysis.,2008,1,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm1.html#Kettenring08,https://doi.org/10.1002/sam.10001 +Chris Clifton,Special issue on the best papers of SDM'11.,2012,5,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm5.html#CliftonW12,https://doi.org/10.1002/sam.11136 +Kenneth K. Lopiano,Fair treatment comparisons in observational research.,2014,7,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm7.html#LopianoOY14,https://doi.org/10.1002/sam.11235 +Tian Siva Tian,Data reduction in classification: A simulated annealing based projection method.,2010,3,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm3.html#TianWJ10,https://doi.org/10.1002/sam.10087 +Micheal R. Frey,Flow field forecasting for univariate time series.,2013,6,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm6.html#FreyC13,https://doi.org/10.1002/sam.11191 +Chris Fraley,Least Angle Regression and LASSO for Large Datasets.,2009,1,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm1.html#FraleyH09,https://doi.org/10.1002/sam.10021 +Arnold Goodman,Data Analysis in the 21st Century.,2008,1,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm1.html#GoodmanKK08,https://doi.org/10.1002/sam.10000 +Georg M. Goerg,A nonparametric frequency domain EM algorithm for time series classification with applications to spike sorting and macro-economics.,2011,4,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm4.html#Goerg11,https://doi.org/10.1002/sam.10144 +Mansurul Bhuiyan,Interactive knowledge discovery from hidden data through sampling of frequent patterns.,2016,9,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm9.html#BhuiyanH16,https://doi.org/10.1002/sam.11322 +Stacey J. Winham,A weighted random forests approach to improve predictive performance.,2013,6,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm6.html#WinhamFB13,https://doi.org/10.1002/sam.11196 +Cameron A. MacKenzie,A Bayesian beta kernel model for binary classification and online learning problems.,2014,7,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm7.html#MacKenzieTB14,https://doi.org/10.1002/sam.11241 +Genevera I. Allen,Regularized partial least squares with an application to NMR spectroscopy.,2013,6,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm6.html#AllenPVM13,https://doi.org/10.1002/sam.11169 +Ferit Akova,A machine-learning approach to detecting unknown bacterial serovars.,2010,3,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm3.html#AkovaDDHBRR10,https://doi.org/10.1002/sam.10085 +Jacopo Soriano,Text mining in computational advertising.,2013,6,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm6.html#SorianoAB13,https://doi.org/10.1002/sam.11197 +Hanghang Tong,Fast Monitoring Proximity and Centrality on Time-evolving Bipartite Graphs.,2008,1,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm1.html#TongPYF08,https://doi.org/10.1002/sam.10014 +Eleanor J. Gardiner,Turbo similarity searching: Effect of fingerprint and dataset on virtual-screening performance.,2009,2,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm2.html#GardinerGHHHMPW09,https://doi.org/10.1002/sam.10037 +Ya-Ju Fan,Detecting ramp events in wind energy generation using affinity evaluation on weather data.,2016,9,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm9.html#FanK16,https://doi.org/10.1002/sam.11308 +Sami Mecheri,The serve impact in tennis: First large-scale study of big Hawk-Eye data.,2016,9,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm9.html#MecheriRMKB16,https://doi.org/10.1002/sam.11316 +David Madigan,Editorial.,2014,7,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm7.html#Madigan14,https://doi.org/10.1002/sam.11257 +Joseph S. Verducci,In this issue.,2010,3,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm3.html#Verducci10d,https://doi.org/10.1002/sam.10092 +Douglas Steinley,Introduction: special issue of statistical analysis and data mining on networks.,2011,4,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm4.html#SteinleyW11,https://doi.org/10.1002/sam.10134 +Ruixin Guo,Bayesian adaptive nearest neighbor.,2010,3,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm3.html#GuoC10,https://doi.org/10.1002/sam.10067 +Ben Tan,Multi-transfer: Transfer learning with multiple views and multiple sources.,2014,7,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm7.html#TanZX014,https://doi.org/10.1002/sam.11226 +Dimitrios Giannakis,Nonlinear Laplacian spectral analysis: capturing intermittent and low-frequency spatiotemporal patterns in high-dimensional data.,2013,6,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm6.html#GiannakisM13,https://doi.org/10.1002/sam.11171 +James Goodnight,The forecast for predictive analytics: hot and getting hotter.,2011,4,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm4.html#Goodnight11,https://doi.org/10.1002/sam.10106 +Houtao Deng,SMT: Sparse multivariate tree.,2014,7,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm7.html#DengBR14,https://doi.org/10.1002/sam.11208 +Charu C. Aggarwal,A framework for dynamic link prediction in heterogeneous networks.,2014,7,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm7.html#AggarwalXY14,https://doi.org/10.1002/sam.11198 +Jose-Miguel Yamal,Prediction using hierarchical data: Applications for automated detection of cervical cancer.,2015,8,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm8.html#YamalGAFMCC15,https://doi.org/10.1002/sam.11261 +Paolo Giudici,CLADAG 2015 special issue: Selected papers on classification and data analysis.,2017,10,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm10.html#GiudiciGMR17,https://doi.org/10.1002/sam.11340 +Anthony Lee,Forest resampling for distributed sequential Monte Carlo.,2016,9,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm9.html#LeeW16,https://doi.org/10.1002/sam.11280 +Jian Zou,Bayesian methodology for the analysis of spatial-temporal surveillance data.,2012,5,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm5.html#ZouKBHDLV12,https://doi.org/10.1002/sam.10142 +Johanna Muñoz,Building cancer prognosis systems with survival function clusters.,2018,11,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm11.html#MunozM18,https://doi.org/10.1002/sam.11373 +Wonyul Lee,Multiple Response Regression for Gaussian Mixture Models with Known Labels.,2012,5,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm5.html#LeeDSHL12,https://doi.org/10.1002/sam.11158 +Bart Goethals,Special issue on the best papers of SDM'10.,2010,3,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm3.html#GoethalsP10,https://doi.org/10.1002/sam.10094 +Joseph S. Verducci,New Era of SAM.,2010,3,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm3.html#Verducci10,https://doi.org/10.1002/sam.10068 +Mohammed J. Zaki,Special Issue on the Best Papers of SDM'08.,2008,1,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm1.html#ZakiW08,https://doi.org/10.1002/sam.10010 +Srinath Sampath,Detecting the end of agreement between two long ranked lists.,2013,6,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm6.html#SampathV13,https://doi.org/10.1002/sam.11205 +Jennifer C. Nelson,Integrating database knowledge and epidemiological design to improve the implementation of data mining methods that evaluate vaccine safety in large healthcare databases.,2014,7,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm7.html#NelsonSYPBFLMWXJ14,https://doi.org/10.1002/sam.11232 +Tanay Kumar Saha,FS3: A sampling based method for top-k frequent subgraph mining.,2015,8,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm8.html#SahaH15,https://doi.org/10.1002/sam.11277 +David R. Thompson,Semi-supervised Eigenbasis novelty detection.,2013,6,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm6.html#ThompsonMRW13,https://doi.org/10.1002/sam.11148 +Tian Siva Tian,Two-way regularization for MEG source reconstruction via multilevel coordinate descent.,2013,6,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm6.html#TianHS13,https://doi.org/10.1002/sam.11210 +Yolanda Hagar,Survival analysis with electronic health record data: Experiments with chronic kidney disease.,2014,7,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm7.html#HagarAPCDE14,https://doi.org/10.1002/sam.11236 +Alan J. Izenman,Local spatial biclustering and prediction of urban juvenile delinquency and recidivism.,2011,4,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm4.html#IzenmanHMJO11,https://doi.org/10.1002/sam.10123 +Hadley Wickham,Authors' response to discussants.,2015,8,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm8.html#WickhamCH15a,https://doi.org/10.1002/sam.11276 +Joseph S. Verducci,In this issue.,2010,3,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm3.html#Verducci10b,https://doi.org/10.1002/sam.10077 +Maria Rosaria D'Esposito,Interval Archetypes: A New Tool for Interval Data Analysis.,2012,5,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm5.html#DEspositoPR12,https://doi.org/10.1002/sam.11140 +Sun Makosso-Kallyth,Principal axes analysis of symbolic histogram variables.,2016,9,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm9.html#Makosso-Kallyth16,https://doi.org/10.1002/sam.11270 +Leanna House,Bayesian visual analytics: BaVA.,2015,8,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm8.html#HouseLH15,https://doi.org/10.1002/sam.11253 +Yulan Liang,Sequential support vector regression with embedded entropy for SNP selection and disease classification.,2011,4,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm4.html#LiangK11,https://doi.org/10.1002/sam.10110 +Thomas Brendan Murphy,Statistical thinking and practice.,2016,9,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm9.html#Murphy16,https://doi.org/10.1002/sam.11333 +Erin Austin,Penalized regression and risk prediction in genome-wide association studies.,2013,6,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm6.html#AustinPS13,https://doi.org/10.1002/sam.11183 +Fei Tang,Random forest missing data algorithms.,2017,10,Statistical Analysis and Data Mining,6,db/journals/sadm/sadm10.html#TangI17,https://doi.org/10.1002/sam.11348 +Carène Larmat,Joining statistics and geophysics for assessment and uncertainty quantification of three-dimensional seismic Earth models.,2017,10,Statistical Analysis and Data Mining,5,db/journals/sadm/sadm10.html#LarmatMHA17,https://doi.org/10.1002/sam.11353 +Simona Korenjak-Cerne,Clustering large data sets described with discrete distributions and its application on TIMSS data set.,2011,4,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm4.html#Korenjak-CerneBP11,https://doi.org/10.1002/sam.10105 +Sara Javanmardi,Modeling user reputation in wikis.,2010,3,Statistical Analysis and Data Mining,2,db/journals/sadm/sadm3.html#JavanmardiLB10,https://doi.org/10.1002/sam.10070 +Munikumar R. Doddareddy,Chemogenomics: Looking at biology through the lens of chemistry.,2009,2,Statistical Analysis and Data Mining,3,db/journals/sadm/sadm2.html#DoddareddyWHPCIEJB09,https://doi.org/10.1002/sam.10046 +Fei Wang 0001,Composite distance metric integration by leveraging multiple experts' inputs and its application in patient similarity assessment.,2012,5,Statistical Analysis and Data Mining,1,db/journals/sadm/sadm5.html#0001SE12,https://doi.org/10.1002/sam.11135 +Goo Jun,Spatially adaptive semi-supervised learning with Gaussian processes for hyperspectral data analysis.,2011,4,Statistical Analysis and Data Mining,4,db/journals/sadm/sadm4.html#JunG11,https://doi.org/10.1002/sam.10119 +Kevin Crowston,Introduction to ACM Transactions on Social Computing.,2018,1,ACM Trans. Social Computing,1,db/journals/tsoco/tsoco1.html#Crowston18,http://doi.acm.org/10.1145/3181713 +Kiran Garimella,Quantifying Controversy on Social Media.,2018,1,ACM Trans. Social Computing,1,db/journals/tsoco/tsoco1.html#GarimellaMGM18,http://doi.acm.org/10.1145/3140565 +Weichen Liu,ConsensUs: Supporting Multi-Criteria Group Decisions by Visualizing Points of Disagreement.,2018,1,ACM Trans. Social Computing,1,db/journals/tsoco/tsoco1.html#LiuXBYD18,http://doi.acm.org/10.1145/3159649 +Heinz Schmitz,Online Sequencing of Non-Decomposable Macrotasks in Expert Crowdsourcing.,2018,1,ACM Trans. Social Computing,1,db/journals/tsoco/tsoco1.html#SchmitzL18,http://doi.acm.org/10.1145/3140459 +Peter Tolmie,Microblog Analysis as a Program of Work.,2018,1,ACM Trans. Social Computing,1,db/journals/tsoco/tsoco1.html#TolmiePRLZ18,http://doi.acm.org/10.1145/3162956 +Zeqing Liu,Convergence and stability of the Ishikawa iteration procedures with errors for nonlinear equations.,2001,9,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc9.html#LiuK01,http://dl.acm.org/citation.cfm?id=543526 +Anna Szafranska,Numerical methods for systems of nonlinear differential functional equations.,2009,17,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc17.html#Szafranska09,http://dl.acm.org/citation.cfm?id=1737785 +M. A. Christou,Fourier-Galerkin method for interacting localized waves.,2002,10,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc10.html#ChristouC02,http://dl.acm.org/citation.cfm?id=763443 +W. S. Yousif,Explicit de-coupled group AOR method for solving elliptic partial differential equations.,2008,16,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc16.html#YousifM08,http://dl.acm.org/citation.cfm?id=1561727 +Ljubomir T. Grujic,Dynamical and structural fuzzy intelligence of Hopfield neural networks.,1995,3,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc3.html#Grujic95,http://dl.acm.org/citation.cfm?id=223152 +George A. Gravvanis,Generalized approximate inverse finite element matrix techniques.,1999,7,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc7.html#Gravvanis99,http://dl.acm.org/citation.cfm?id=340183 +Jin Young Choi,Neural Iterative Learning Control for Unknown Nonlinear Systems.,1998,6,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc6.html#ChoiP98, +H. Byun,A workload partitioning strategy for PDE computations by a generalized neural network.,1993,1,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc1.html#ByunHK93, +A. A. Martynyuk,Qualitative analysis of stochastic singularly perturbed systems.,1999,7,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc7.html#Martynyuk99,http://dl.acm.org/citation.cfm?id=326072 +Manju V. Hegde,Flexible learning rules for neural networks.,1994,2,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc2.html#HegdeNN94a,http://dl.acm.org/citation.cfm?id=197924 +Jongwan Kim,Competitive learning neural network with dynamic output neuron generation.,1994,2,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc2.html#KimAKHC94,http://dl.acm.org/citation.cfm?id=197918 +Jin-Young Choi,Partially trained neural networks with self-localizing capability for function approximations.,1995,3,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc3.html#ChoiC95,http://dl.acm.org/citation.cfm?id=204446 +Young-Joo Moon,Dynamically expanding modular neural network architecture for the control of robot manipulators.,1995,3,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc3.html#MoonO95,http://dl.acm.org/citation.cfm?id=204447 +Semen Köksal,Using vector Lyapunov functions for stability analysis of neural networks.,1994,2,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc2.html#KoksalFF94,http://dl.acm.org/citation.cfm?id=183505 +Cha-Gyun Jeong,A parallel algorithm for phonetic segmentation using mean field annealing.,1994,2,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc2.html#JeongJ94,http://dl.acm.org/citation.cfm?id=198765 +Yen-Chun Lin,Z4: A New Depth-Size Optimal Parallel Prefix Circuit With Small Depth.,2003,11,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc11.html#LinJ03,http://dl.acm.org/citation.cfm?id=952944 +Erik I. Verriest,Qualitative smooth dynamics in combinatorial problems based on a notion of concentration.,1999,7,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc7.html#VerriestM99,http://dl.acm.org/citation.cfm?id=326061 +C. S. Ryoo,The Structure of the Zeros of the Generalized Bernoulli Polynomials.,2005,13,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc13.html#RyooKA05, +Joel Pomerantz,The Prisoner's Dilemma and Predator-Prey Coevolution.,2002,10,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc10.html#PomerantzM02,http://dl.acm.org/citation.cfm?id=584638 +Sergey K. Aityan,Correlation-recall operation in encoding fuzzy associative memories.,1993,1,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc1.html#Aityan93, +Srimanta Pal,A Multi-layer Dynamic Neural Network for Convex-Hull Computation.,2004,12,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc12.html#PalPD04, +O. B. Efremides,Performance Evaluation Model for Multicomputer Systems.,2002,10,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc10.html#EfremidesBE02,http://dl.acm.org/citation.cfm?id=584632 +P. K. Pandey,An order h4 numerical technique for solving biharmonic equation.,2007,15,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc15.html#PandeyM07,http://dl.acm.org/citation.cfm?id=1315428 +C. Y. Chan,Computation of the critical domain for quenching in an elliptic plate.,1993,1,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc1.html#Chan93, +R. K. Mohanty,Non-uniform Mesh Arithmetic Average Discretization for Parabolic Initial Boundary Value Problems.,2005,13,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc13.html#MohantyS05, +P. R. Parthasarathy,Transient solution of state dependent queues - A continued fraction approach.,1993,1,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc1.html#ParthasarathyV93, +Jovan D. Boskovic,A stable neural network-based adaptive controller for a class of unknown nonlinear plants.,1999,7,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc7.html#Boskovic99,http://dl.acm.org/citation.cfm?id=326078 +S. E. Mentzelopoulou,On the factorization of 2-D polynomials via neural networks.,1993,1,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc1.html#MentzelopoulouHAM93, +Paul Heinzlreiter,Network Transportation and Optimization for Grid-enabled Visualization.,2004,12,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc12.html#HeinzlreiterKV04,http://dl.acm.org/citation.cfm?id=1093538 +Jun He,Parallel multigrid algorithms based on wavelet multiresolution approximations.,1993,1,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc1.html#HeK93, +Bong Kyu Park,On Evaluation of Numerical Values of Definite Integrals.,2003,11,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc11.html#Park03,http://dl.acm.org/citation.cfm?id=952947 +G. Edgar Parker,Implementing the Picard iteration.,1996,4,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc4.html#ParkerS96,http://dl.acm.org/citation.cfm?id=233904 +Keng-Huat Kwek,Periodic solution and dynamics in two neuron network system.,1995,3,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc3.html#KwekL95,http://dl.acm.org/citation.cfm?id=203670 +Alvin S. Lim,Parallel program execution analysis for performance tuning.,1998,6,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc6.html#LimCW98,http://dl.acm.org/citation.cfm?id=293735 +M. M. Chawla,A linearly implicit time integration scheme for the Burgers' equation.,2001,9,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc9.html#ChawlaA01,http://dl.acm.org/citation.cfm?id=543525 +I. N. Tselepis,An FPGA Hardware Parallel Implementation of the DES Algorithm.,2004,12,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc12.html#TselepisB04, +Zhiyue Zhang,A Multistep Characteristic Finite Difference Method for a Class of Nerve Conduction Equations.,2003,11,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc11.html#ZhangW03,http://dl.acm.org/citation.cfm?id=952950 +Qing Song 0001,Training of a single perception neuron using robust projection algorithm.,1996,4,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc4.html#Song96,http://dl.acm.org/citation.cfm?id=229536 +Mehmet A. Nacar,Developing a Secure Grid Computing Environment Shell Engine: Containers and Services.,2004,12,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc12.html#NacarPF04,http://dl.acm.org/citation.cfm?id=1093541 +Doo-Hyun Choi,New fitness-Based migration operator for evolutionary programming.,2001,9,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc9.html#Choi01,http://dl.acm.org/citation.cfm?id=639021 +Jemal H. Abawajy,Fault-tolerant Grid Resource Management Infrastructure.,2004,12,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc12.html#AbawajyD04,http://dl.acm.org/citation.cfm?id=1093537 +André de Korvin,Resource allocation based on imprecise information.,2007,15,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc15.html#KorvinSS07,http://dl.acm.org/citation.cfm?id=1315430 +A. Krishnamoorthy,On a Queueing System with Self Generation of Priorities.,2005,13,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc13.html#KrishnamoorthyND05, +Ioanna Malargadi,History on Ontological Technology and a Modern Medical Application.,2004,12,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc12.html#Malargadi04, +Mohan K. Kadalbajoo,Parallel group explicit algorithms for nonlinear singular perturbation problems with variable mesh.,2000,8,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc8.html#KadalbajooR00,http://dl.acm.org/citation.cfm?id=373345 +Willard L. Miranker,Consciousness is an information state.,2000,8,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc8.html#Miranker00,http://dl.acm.org/citation.cfm?id=367012 +A. Krishnamoorthy,Numerical investigation of a PH/PH/1 inventory system with positive service time and shortage.,2008,16,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc16.html#KrishnamoorthyJN08,http://dl.acm.org/citation.cfm?id=1561730 +S. Chandra Sekhara Rao,Parallel elimination method for general linear systems.,2000,8,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc8.html#Rao00,http://dl.acm.org/citation.cfm?id=373347 +Xiaoyan Zhu,An effective result-feedback neural algorithm for handwritten character recognition.,2001,9,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc9.html#ZhuHSZ01,http://dl.acm.org/citation.cfm?id=639014 +Gary Chung,A neural network approach for solving certain control problem.,1993,1,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc1.html#ChungMS93, +B. Porter,Evolutionary robustification of digital trajectory-tracking controllers for robotic manipulators.,1999,7,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc7.html#PorterA99,http://dl.acm.org/citation.cfm?id=326080 +D. Andrade,Numerical solutions for a nonlocal equation with reflection of the argument.,2002,10,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc10.html#AndradeM02,http://dl.acm.org/citation.cfm?id=603331 +Lizhe Wang,Models and Heuristics for Resource Co-reservation for Parallel Tasks in Computational Grids.,2004,12,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc12.html#WangCSJ04,http://dl.acm.org/citation.cfm?id=1093536 +H. W. Joseph Lee,Nonlinear optimal feedback control law for a class of nonlinear systems.,1996,4,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc4.html#LeeTY96,http://dl.acm.org/citation.cfm?id=229533 +C. S. Ryoo,Distribution of the Roots of the Euler-Barnes. Type q-Euler Polynomials.,2005,13,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc13.html#RyooKA05a, +Bruce A. Whitehead,Scalar wavelet networks for time series prediction.,1995,3,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc3.html#Whitehead95,http://dl.acm.org/citation.cfm?id=203684 +James C. Bezdek,Convergence of Alternating Optimization.,2003,11,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc11.html#BezdekH03,http://dl.acm.org/citation.cfm?id=964886 +Zongwei Luo,Research on On-demand Grid Services Access.,2004,12,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc12.html#Luo04,http://dl.acm.org/citation.cfm?id=1093543 +Anthony N. Michel,Theory and applications of sparsely interconnected feedback neural networks.,1996,4,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc4.html#MichelL96a,http://dl.acm.org/citation.cfm?id=254750 +M. P. Bekakos,The butterfly algorithm mapping on a pipelined + shared memory multilayered dewavefront architecture.,1996,4,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc4.html#Bekakos96,http://dl.acm.org/citation.cfm?id=233897 +Chi-Hong Leung,A corpus-based approach to construction of rules correcting errors in Chinese word segmentation.,1996,4,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc4.html#LeungK96,http://dl.acm.org/citation.cfm?id=229534 +Changjun Li,Optimum acceleration parameter for the GSOR method.,1999,7,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc7.html#LiLE99,http://dl.acm.org/citation.cfm?id=340167 +Nirjhar Shah,Dynamic modeling of root water uptake using soil moisture data.,2008,16,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc16.html#ShahRL08,http://dl.acm.org/citation.cfm?id=1466637 +Qing Song 0001,Shifting of the Center of Radial Basis Function Neural Networks in the Presence of Disturbance.,1999,7,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc7.html#0001YS99, +George D. Magoulas,A class of adaptive learning rate algorithms derived by one-dimensional subminimization methods.,2000,8,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc8.html#MagoulasV00,http://dl.acm.org/citation.cfm?id=367018 +Bernardete Ribeiro,Selective Classification and Regression Models Based on Support Vector Clustering.,2005,13,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc13.html#Ribeiro05a, +Xueke Wu,The finite volume element method for the pollution in groundwater flow.,2008,16,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc16.html#WuZ08,http://dl.acm.org/citation.cfm?id=1561729 +Nabin K. Manandrar Shrestha,Behrens-Fisher's distribution for selecting differentially expressed genes.,2008,16,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc16.html#ShresthaR08,http://dl.acm.org/citation.cfm?id=1466639 +Luis Ferragut,Mixed Finite Element Methods for a Class of Nonlinear Reaction Diffusion Problems.,2002,10,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc10.html#FerragutA02,http://dl.acm.org/citation.cfm?id=584637 +J. M. Harris,Dynamic asymmetry in the receptive fields of shunting networks for continuous-time early vision.,1995,3,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc3.html#HarrisO95,http://dl.acm.org/citation.cfm?id=203668 +V. Lakshmikantham,Error in Error-free Computation for Linear System.,2004,12,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc12.html#LakshmikanthamSM04, +Yuri P. Boglaev,Logic programming in the numerical algorithm design for parallel computations.,1993,1,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc1.html#Boglaev93, +Doo-Hyun Choi,A New Fast Evolutionary Programming Algorithm for Continuous Function Optimization.,1999,7,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc7.html#ChoiOC99, +Ilié Popescu,Managing the reasoning in knowledge-based expert systems using constraints and concept domains.,1996,4,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc4.html#Popescu96,http://dl.acm.org/citation.cfm?id=233901 +Spiridon D. Likothanassis,Structure determination and training of neural networks using evolution programs.,2000,8,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc8.html#LikothanassisGA00,http://dl.acm.org/citation.cfm?id=373348 +Shou King Foo,Topology independent network-based parallelism of backpropagation neural networks on a heterogeneous array.,1998,6,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc6.html#FooSS98, +M. M. Chawla,A New Linearly Implicit Trapezoidal Formula for Nonlinear Parabolic Equations.,2003,11,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc11.html#Chawla03,http://dl.acm.org/citation.cfm?id=964893 +Ron Edwards,Neuro-Fuzzy modelling of export behavior of multinational corporation subsidiaries.,2004,12,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc12.html#EdwardsAP04,http://dl.acm.org/citation.cfm?id=993004 +David J. Evans 0001,he parallel strides reduction algorithms for solving tridiagonal linear systems.,1993,1,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc1.html#EvansY93, +Vít Dolejsí,BDF-FEM for parabolic singularly perturbed problems with exponential layers on layer-adapted meshes in space.,2010,18,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc18.html#DolejsiR10,http://dl.acm.org/citation.cfm?id=1991943 +Andrew Chi-Sing Leung,Storage behavior and error correction capability of bidirectional associative memory under forgetting learning.,1996,4,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc4.html#LeungCS96,http://dl.acm.org/citation.cfm?id=229532 +Vladik Kreinovich,3-layer neural networks are universal approximations for functions and for control strategies.,1993,1,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc1.html#KreinovichS93, +Suchendra M. Bhandarkar,Efficient parallel implementation of the multi-layer perceptron on an SIMD mesh architecture.,1996,4,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc4.html#BhandarkarW96,http://dl.acm.org/citation.cfm?id=233902 +Richard Stuart Neville,Adaptive associative reward-penalty algorithms for sigma-pi networks.,1994,2,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc2.html#NevilleS94,http://dl.acm.org/citation.cfm?id=183502 +Chunhua Feng,Terminal Attractors in Neural Network Models.,2001,9,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc9.html#FengP01,http://dl.acm.org/citation.cfm?id=543521 +Zhiyue Zhang,The fully discrete multistep characteristic finite volume element methods for the two-dimensional generalized nerve conduction equation.,2008,16,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc16.html#ZhangW08,http://dl.acm.org/citation.cfm?id=1561723 +A. Ramesh Babu,An almost second order fem for a weakly coupled system of two singularly perturbed differential equations of reaction-diffusion type with discontinuous source term.,2009,17,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc17.html#BabuR09,http://dl.acm.org/citation.cfm?id=1737807 +Stefan Boettcher,Evolutionary local-search with external optimization.,2002,10,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc10.html#Boettcher02,http://dl.acm.org/citation.cfm?id=603333 +E. M. Karanikolaou,A load balancing fault-tolerant algorithm for heterogeneous cluster environments.,2009,17,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc17.html#KaranikolaouB09,http://dl.acm.org/citation.cfm?id=1737786 +Athanasios K. Tsadiras,A study of the two unit certainty neuron fuzzy cognitive map.,2001,9,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc9.html#TsadirasM01,http://dl.acm.org/citation.cfm?id=543523 +Wenjun Wu 0001,Design and Implementation of a Collaboration Web-services System.,2004,12,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc12.html#WuFUA04,http://dl.acm.org/citation.cfm?id=1093542 +Tatiana Tambouratzis,Incremental bin packing.,2001,9,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc9.html#Tambouratzis01,http://dl.acm.org/citation.cfm?id=639017 +Bernard K.-S. Cheung,An efficient and reliable algorithm for nonsmooth nonlinear optimization.,1995,3,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc3.html#CheungN95,http://dl.acm.org/citation.cfm?id=204451 +Noel Lopes,An Efficient Gradient-based Learning Algorithm Applied to Neural Networks with Selective Actuation Neurons.,2003,11,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc11.html#LopesR03,http://dl.acm.org/citation.cfm?id=952946 +Yichuang Jin,Neural networks for prediction and control of discrete systems.,1993,1,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc1.html#JinPW93, +Anastassios Tassopoulos,Selection of Training parameters for an Enhanced Artificial Neural Network Architecture: A Parliamentary Report.,2002,10,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc10.html#TassopoulosG02,http://dl.acm.org/citation.cfm?id=584631 +Tanya G. Melton,Numerical Applications of Generalized Quasilinearization Method and Rapid Convergence.,2004,12,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc12.html#MeltonV04, +V. Lakshmikantham,Preface to special issue.,2008,16,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc16.html#Lakshmikantham08,http://dl.acm.org/citation.cfm?id=1466629 +George A. Gravvanis,A fast explicit preconditioned finite element scheme.,2001,9,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc9.html#Gravvanis01,http://dl.acm.org/citation.cfm?id=543522 +Kouichi Murakani,Bifurcated periodic solutions for delayed van der Pol equation.,1999,7,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc7.html#Murakani99, +Jennie Si,A shift invariant pattern recognition mechanism and its implementation by associative memory.,1995,3,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc3.html#SiM95,http://dl.acm.org/citation.cfm?id=213263 +Kevin Wilkinson,Implementing hierarchical data types within the relational model.,2004,12,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc12.html#Wilkinson04,http://dl.acm.org/citation.cfm?id=993007 +Eric A. Lord,A shrinking polytope method for linear programming.,1996,4,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc4.html#LordVS96,http://dl.acm.org/citation.cfm?id=241623 +Mohammad Zurigat,Homotopy analysis method for systems of fractional integro-differential equations.,2009,17,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc17.html#ZurigatMA09,http://dl.acm.org/citation.cfm?id=1737808 +Arun D. Kulkarni,Neural network based fuzzy logic decision systems for multispectral image analysis.,1995,3,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc3.html#KulkarniGC95,http://dl.acm.org/citation.cfm?id=203674 +V. Shanthi,An asymptotic hybrid difference scheme for singularly perturbed third and fourth order ordinary differential equations with discontinuous source term.,2008,16,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc16.html#ShanthiR08,http://dl.acm.org/citation.cfm?id=1561712 +V. P. Ramesh,Parameter uniform numerical schemes for second order singularly perturbed differential difference equations with layer behavior.,2009,17,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc17.html#RameshK09,http://dl.acm.org/citation.cfm?id=1737804 +Dimitris A. Karras,On Applying Multilayer Perceptron Learning Properties to (Pseudo) Random Number Generation and Evaluation.,1998,6,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc6.html#KarrasZ98, +Leonid E. Shaikhet,Numerical simulation and stability of Stochastic systems with Markovian switching.,2002,10,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc10.html#Shaikhet02,http://dl.acm.org/citation.cfm?id=603329 +Nicholas D. Assimakis,Recursive Solutions of the Discrete Time Riccati Equation.,2003,11,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc11.html#AssimakisRL03,http://dl.acm.org/citation.cfm?id=952952 +Florence George,A mixture model approach for gene selection using Johnson's system and Bayes formula.,2008,16,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc16.html#GeorgeR08,http://dl.acm.org/citation.cfm?id=1466633 +Binfan Liu,Best approximation results using regular-center Gaussian networks.,1996,4,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc4.html#LiuS96,http://dl.acm.org/citation.cfm?id=233899 +Zvi Retchkiman Königsberg,Decision Process Petri Nets: Analysis and Optimization.,2005,13,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc13.html#KonigsbergC05, +I. Manakos,A Mobile Unit for Field Spectroradiometric Measurements.,2004,12,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc12.html#ManakosSB04, +R. Mythili Priyadharshini,Hybrid difference schemes for a singularly perturbed second order ordinary differential equation with a discontinuous convection coefficient arising in chemical reactor theory.,2008,16,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc16.html#PriyadharshiniR08,http://dl.acm.org/citation.cfm?id=1561711 +Panagiotis D. Michailidis,Parallel implementations for string matching problem on a cluster of distributed workstations.,2002,10,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc10.html#MichailidisM02,http://dl.acm.org/citation.cfm?id=639865 +Granino A. Korn,A simple algorithm emulation ART functionality.,2000,8,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc8.html#Korn00,http://dl.acm.org/citation.cfm?id=373349 +M. M. Chawla,An efficient finite difference method for two-point boundary value problems.,1996,4,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc4.html#ChawlaS96,http://dl.acm.org/citation.cfm?id=241628 +Juan I. Ramos 0001,Exponential techniques and implicit Runge-Kutta methods for singularly-perturbed volterra integro-differential equations.,2008,16,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc16.html#Ramos08,http://dl.acm.org/citation.cfm?id=1561716 +Burkhard Lenze,A Backpropagation and Initialization Routine for Hyperbolic Sigma-Pi Neural Networks.,2003,11,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc11.html#Lenze03,http://dl.acm.org/citation.cfm?id=964887 +Christos Xenophontos,The hp finite element method for singularly perturbed systems of reaction-diffusion equations.,2008,16,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc16.html#Xenophontos08,http://dl.acm.org/citation.cfm?id=1561713 +V. Lakshmikantham,The method of generalized quaslinearization and its applications.,1999,7,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc7.html#LakshmikanthamV99,http://dl.acm.org/citation.cfm?id=326059 +Eihab B. M. Bashier,An almost second order fitted mesh numerical method for a singularly perturbed delay parabolic partial differential equation.,2010,18,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc18.html#BashierP10,http://dl.acm.org/citation.cfm?id=1991938 +Nenad Jovanovic,Modeling Distributed System Entities Which Communicate Asynchronous Via Message Passing in Java.,2005,13,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc13.html#JovanovicPJ05, +R. K. Mohanty,Tage Method for Nonlinear Singular Two Point Boundary Value Problem using a Fourth Order Difference Scheme.,2003,11,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc11.html#MohantySJ03,http://dl.acm.org/citation.cfm?id=952948 +Arun Jagota,Contextual word recognition with a Hopfield-style net.,1994,2,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc2.html#Jagota94,http://dl.acm.org/citation.cfm?id=183511 +David Zhang 0001,A programmable neural network architecture using BiCMOS technology.,1995,3,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc3.html#ZhangGE95,http://dl.acm.org/citation.cfm?id=204450 +Lujuan Chen,Suffix parallel computation and operator splitting for fast solution of PDE's.,1993,1,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc1.html#ChenMK93, +Fotis N. Koumboulis,Stability Criteria for Singular Systems.,2005,13,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc13.html#KoumboulisM05,http://dl.acm.org/citation.cfm?id=1125378 +Evgeny E. Dudnikov,Single layer neural networks with various feedbacks.,2001,9,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc9.html#DudnikovR01,http://dl.acm.org/citation.cfm?id=543520 +Li Rui,Blind equalization using higher order statistics and neural networks: A comparative study.,1999,7,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc7.html#RuiSS99,http://dl.acm.org/citation.cfm?id=340193 +Cheng Zhang,A multiscaling test of causality effects among international stock markets.,2004,12,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc12.html#ZhangIF04,http://dl.acm.org/citation.cfm?id=993008 +John P. Morrison,WebCom-G: Grid Enabled Metacomputing.,2004,12,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc12.html#MorrisonCPP04,http://dl.acm.org/citation.cfm?id=1093544 +Paul D. Orkwis,A comparison of CGS preconditioning methods for Newton's method solvers.,1994,2,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc2.html#OrkwisG94,http://dl.acm.org/citation.cfm?id=183504 +Theodore H. Kaskalis,An SIMD Implementation of Optimal Linear Associative Memory Neural Networks.,1998,6,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc6.html#KaskalisM98, +Hsin-Chu Chen,A parallel approach to solving physical problems with symmetry.,1996,4,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc4.html#ChenW96,http://dl.acm.org/citation.cfm?id=241625 +Doo-Hyun Choi,Nonlinear camera calibration using neural networks.,1994,2,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc2.html#ChoiOCK94,http://dl.acm.org/citation.cfm?id=184203 +Constantine N. Manikopoulos,Speech coding with neural-networks in adaptive DPCM.,1994,2,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc2.html#ManikopoulosH94,http://dl.acm.org/citation.cfm?id=198770 +Manju V. Hegde,On the capacity of constrained connectivity Hopfield neural networks.,1994,2,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc2.html#HegdeNN94,http://dl.acm.org/citation.cfm?id=184209 +Chris P. Tsokos,Bayesian reliability analysis for the Gumbel failure model.,2008,16,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc16.html#TsokosM08,http://dl.acm.org/citation.cfm?id=1466636 +Vikas Gupta,Numerical approximation of modified burgers' equation via hybrid finite difference scheme on layer-adaptive mesh.,2010,18,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc18.html#GuptaK10,http://dl.acm.org/citation.cfm?id=1991940 +Tzung-Pei Hong,A new parallel back-propagation learning algorithm for classification.,1996,4,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc4.html#HongLT96,http://dl.acm.org/citation.cfm?id=233903 +A. Liopa-Tsakalidis,HydroNet: An Intelligent Hydroponics Web Service Environment.,2005,13,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc13.html#Liopa-TsakalidisSSST05, +Luis Ferragut,Accurate a-posteriori error estimation using duality.,1995,3,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc3.html#FerragutM95,http://dl.acm.org/citation.cfm?id=223157 +Igor Grabec,Optimization of kernel-type density estimator by the principle maximal self-consistency.,1993,1,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc1.html#Grabec93, +Vassilis S. Kodogiannis,Neural-network-based electric load forecasting systems.,1999,7,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc7.html#Kodogiannis99,http://dl.acm.org/citation.cfm?id=334068 +H. Byun,A virtual parallel environment for implementing neural network computations on parallel machines.,1993,1,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc1.html#ByunKHV93, +Nikhil R. Pal,Gene Ontology-based Knowledge Discovery Through Fuzzy Cluster Analysis.,2005,13,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc13.html#PalKPBMH05, +Garyfalos Papaschinopoulos,Generalized Invariants for Systems of Difference Equations of Rational Form.,1999,7,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc7.html#PapaschinopoulosS99a, +Sunil Prakash,A computational analysis to assess the influence of specimen geometry on cleavage fracture toughness of metallic materials.,2010,18,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc18.html#PrakashGS10,http://dl.acm.org/citation.cfm?id=1991919 +Tep Sastri,An adaptive model identification method.,1993,1,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc1.html#SastriW93, +Osman Abou-Rabia,Estimation of potential and real parallelism for ODE solvers.,1995,3,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc3.html#Abou-RabiaB95,http://dl.acm.org/citation.cfm?id=204445 +Zeljko Popovic,Implementation of data mining techniques in construction estimating.,2004,12,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc12.html#Popovic04,http://dl.acm.org/citation.cfm?id=993005 +Fernando Pérez Nava,Condensation-Based Contour Tracking with Sobolev Smoothness Priors.,2002,10,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc10.html#NavaF02,http://dl.acm.org/citation.cfm?id=584634 +Imran Maqsood,Intelligent weather monitoring systems using connectionist models.,2002,10,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc10.html#MaqsoodKA02,http://dl.acm.org/citation.cfm?id=603326 +Yi Jiang,O(k) parallel algorithm for approximate string matching.,1993,1,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc1.html#JiangW93, +Baruch Cahlon,Numerical stability of reducible quadrature rules for Volterra integral equations with delays.,1995,3,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc3.html#Cahlon95,http://dl.acm.org/citation.cfm?id=203685 +Eric B. Bartlett,Self determination of input variable importance using neural networks.,1994,2,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc2.html#Bartlett94,http://dl.acm.org/citation.cfm?id=184208 +Shou King Foo,Genetic algorithm based mapping of backpropagation neural networks onto a parallel heterogenous processor network.,1995,3,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc3.html#FooSS95,http://dl.acm.org/citation.cfm?id=223148 +S. Chandra Sekhara Rao,A uniformly convergent exponential spline difference scheme for singularly perturbed reaction-diffusion problems.,2010,18,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc18.html#RaoK10,http://dl.acm.org/citation.cfm?id=1991937 +Yuanxiang Li,Massively parallel algorithm I: A new class of lattice gas methods.,1993,1,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc1.html#LiKW93, +Paramesran Raveendran,Neural network approach to minimize intraclass invariance of moment invariant features for pattern classification.,1993,1,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc1.html#RaveendranOW93, +Awoke Andargie,Terminal boundary condition for singularly perturbed two-point boundary value problems.,2008,16,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc16.html#AndargieR08,http://dl.acm.org/citation.cfm?id=1561719 +Yasuo Matsuyama,Competitive learning parallel agents: application to travelling salesperson problem.,1993,1,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc1.html#Matsuyama93, +Osman Abou-Rabia,The design of exact integrable equations for testing ODE solvers.,1996,4,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc4.html#Abou-RabiaB96,http://dl.acm.org/citation.cfm?id=254748 +Xiaoxin Liao,Stability of stochastic neural networks.,1996,4,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc4.html#LiaoM96,http://dl.acm.org/citation.cfm?id=229538 +Dennis Edwards,Graphical Limits of Concurrency.,2004,12,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc12.html#EdwardsSK04, +Gürsel Serpen,Necessary Conditions for Stability of Solutions in Recurrent Neural Networks.,1999,7,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc7.html#Serpen99, +Cha-Gyun Jeong,Mean field theory for automatic phone segmentation and labeling of continuous speech.,1996,4,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc4.html#JeongJ96,http://dl.acm.org/citation.cfm?id=229541 +Yen-Chun Lin,A transformation methodology for systolic design.,1996,4,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc4.html#Lin96,http://dl.acm.org/citation.cfm?id=233905 +Mostafa I. Soliman,Matrix Bidiagonalization: Implementation and Evaluation on the Trident Processor.,2003,11,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc11.html#SolimanS03,http://dl.acm.org/citation.cfm?id=964889 +Chin-Sung Liu,A new training algorithm for multilayer discrete perceptrons.,1998,6,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc6.html#LiuT98,http://dl.acm.org/citation.cfm?id=293738 +David J. Evans 0001,On the accelerated Richardson method (ARM) for solving positive definite linear systems.,2002,10,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc10.html#EvansFJ02,http://dl.acm.org/citation.cfm?id=603328 +Nasaruddin Zenon,An artificial neural network classifier for single level lot-sizing techniques.,2001,9,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc9.html#ZenonA01,http://dl.acm.org/citation.cfm?id=639018 +Vladik Kreinovich,Error estimation for indirect measurements is exponentially hard.,1994,2,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc2.html#Kreinovich94,http://dl.acm.org/citation.cfm?id=183508 +Shou King Foo,A study of parallel implementation of backpropagation neural networks on a transputer array.,1994,2,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc2.html#FooSS94,http://dl.acm.org/citation.cfm?id=198763 +M. M. Chawla,Extended two-step P-stable methods for periodic initial-value problems.,1996,4,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc4.html#ChawlaAB96,http://dl.acm.org/citation.cfm?id=254759 +Jiahai Wang,An Improved Neural Computing Algorithm for the m_Way Graph Partitioning Problem.,2005,13,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc13.html#Wang05, +G. Agranovich,Discrete-continuous Control of Bifurcations and Oscillatory Behavior in a Class of Cellular Neural Networks.,2005,13,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc13.html#AgranovichLS05, +C. Fraile Rubio,The Use of Linear Hybrid Cellular Automata as Pseudo Random Bit Generators in Cryptography.,2004,12,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc12.html#RubioEWRS04, +Angela Slavova,Cellular neural networks with nonlinear dynamics.,1995,3,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc3.html#Slavova95,http://dl.acm.org/citation.cfm?id=213267 +James C. Bezdek,Norm-induced shell-prototypes (NISP) clustering.,1995,3,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc3.html#BezdekHP95,http://dl.acm.org/citation.cfm?id=223146 +Lawrence F. Shampine,Weighted quadrature by change of variable.,2010,18,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc18.html#Shampine10,http://dl.acm.org/citation.cfm?id=1991941 +Yingkang Hu,On efficiency of optimization in fuzzy c-Means.,2002,10,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc10.html#HuH02,http://dl.acm.org/citation.cfm?id=603325 +D. Papaiannou,Design and Implementation of Information Systems for Environmental Managers.,2005,13,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc13.html#PapaiannouT05,http://dl.acm.org/citation.cfm?id=1125377 +Radhakrishnan Srikanth,Hybrid Charge Clustering Network: a heterogeneous neural network model.,1994,2,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc2.html#SrikanthKG94,http://dl.acm.org/citation.cfm?id=183509 +Ilié Popescu,Hierarchical neural network for rules control in knowledge-based expert systems.,1995,3,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc3.html#Popescu95,http://dl.acm.org/citation.cfm?id=213269 +Ronald E. Mickens,Nonstandard Finite Difference Schemes for Scalar Advection-reaction Partial Differential Equation.,2004,12,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc12.html#Mickens04, +Faina S. Berezovskaya,Analysis of Rotifer Population Dynamic Model.,2005,13,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc13.html#Berezovskaya05, +K. Vijayan Asari,A supervised learning neural network for self-organized mapping of multiple-valued patterns.,1999,7,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc7.html#AsariE99,http://dl.acm.org/citation.cfm?id=334074 +N. Kumaresan,Optimal control for stochastic linear quadratic singular Takagi-Sugeno fuzzy system using ant colony programming.,2010,18,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc18.html#Kumaresan10,http://dl.acm.org/citation.cfm?id=1991923 +Hsin-Chu Chen,On the LDLT factorization of a special class of quindiagonal linear systems.,1999,7,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc7.html#ChenW99,http://dl.acm.org/citation.cfm?id=340198 +Konstantinos M. Giannoutakis,High Performance Computations Using Internet and Grid Technology.,2005,13,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc13.html#GiannoutakisGB05, +Jin-bao Jian,Finitely Convergent Algorithms of Generalized Gradient Projection for Systems of Nonlinear Inequalities.,2004,12,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc12.html#JianL04, +Kifah R. Tout,Heuristic algorithms for the optimisation of telecommunication networks.,2001,9,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc9.html#ToutG01,http://dl.acm.org/citation.cfm?id=639019 +Ioanna Malagardi,Information extraction from ancient hellenic texts using automatic knowledge acquisition from lexical definitions.,2001,9,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc9.html#MalagardiK01,http://dl.acm.org/citation.cfm?id=639015 +Baruch Cahlon,Oscillations of Linear Delay Differential Equations of Neutral and Mixed Type.,2002,10,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc10.html#Cahlon02,http://dl.acm.org/citation.cfm?id=584636 +Richard J. Hathaway,An iterative procedure for minimizing a generalized sum-of-squared-errors clustering criterion.,1994,2,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc2.html#HathawayB94,http://dl.acm.org/citation.cfm?id=184201 +Hongyong Zhao,Global Stability of Neural Network With Distributed Delays.,2003,11,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc11.html#Zhao03,http://dl.acm.org/citation.cfm?id=952945 +Edwin Tecarro,Bifurcation Phenomena Arising in the Cell Cycle.,2003,11,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc11.html#TecarroO03,http://dl.acm.org/citation.cfm?id=952951 +Ivan Milentijevic,Folded semi-systolic fir filter architecture with changeable folding Factor.,2002,10,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc10.html#MilentijevicCVT02,http://dl.acm.org/citation.cfm?id=603332 +Xiaofan Yang,On the Path-Connectivity Vertex-Pancyclicity and Edge-Pancyclicity of Crossed Cubes.,2005,13,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc13.html#YangEMT05, +Zvi Retchkiman Königsberg,The load balancing problem.,1999,7,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc7.html#Konigsberg99,http://dl.acm.org/citation.cfm?id=340218 +Suhas Phadke,Parallel Implementation of Seismic Modeling Algorithms on PARAM Openframe.,1998,6,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc6.html#PhadkeB98, +Athanasios D. Karageorgos,A matrix pencil approach for the solution of linear systems with rectangular or singular coefficient matrices.,2009,17,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc17.html#KarageorgosPK09,http://dl.acm.org/citation.cfm?id=1737789 +Ruibin Qu,A cross difference approach to the analysis of subdivision algorithms.,1995,3,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc3.html#QuA95,http://dl.acm.org/citation.cfm?id=213273 +Qiming He,Monotone-Schwarz parallel algorithm for nonlinear elliptic equations.,1996,4,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc4.html#HeEK96,http://dl.acm.org/citation.cfm?id=233900 +Paul C. Kainen,Uniqueness of network parametrization and faster learning.,1994,2,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc2.html#KainenKKS94,http://dl.acm.org/citation.cfm?id=197921 +A. N. Kastania,Integrated intelligent classification engine (I2CE) for biosignal engineering.,2001,9,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc9.html#KastaniaB01,http://dl.acm.org/citation.cfm?id=639013 +André de Korvin,A Body of Evidence Approach under Partially Specified Environments.,2005,13,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc13.html#KorvinSH05, +Angela Slovova,Topological degree approach for studying nonlinear cellular neural networks.,1998,6,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc6.html#Slovova98,http://dl.acm.org/citation.cfm?id=293742 +Hongqing Cao,An Experimental Study of Some Control Parameters in Parallel Genetic Programming.,2003,11,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc11.html#CaoYKM03,http://dl.acm.org/citation.cfm?id=964888 +Joab R. Winkler,A note on the backward error of the roots of polynomials.,2001,9,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc9.html#Winkler01,http://dl.acm.org/citation.cfm?id=543524 +Emmanouil Piperakis,3D object and light source representation with multi-layer feed-forward networks.,2001,9,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc9.html#PiperakisKP01,http://dl.acm.org/citation.cfm?id=639016 +L. P. Tay,Fast learning artificial neural network (FLANN II) using the nearest neighbour recall.,1994,2,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc2.html#TayE94,http://dl.acm.org/citation.cfm?id=184202 +Chao-Sen Wang,The application of OCOR neural network and its generalization algorithm for human face recognition.,1995,3,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc3.html#WangCJC95,http://dl.acm.org/citation.cfm?id=203666 +S. Pal,Neuro-Convex-Hull Computation from a Set of Circles.,2005,13,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc13.html#PalB05, +Nicholas D. Assimakis,Steady State Kalman Filter: A New Approach.,2003,11,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc11.html#AssimakisPL03,http://dl.acm.org/citation.cfm?id=964894 +Y. Shi,On the Projected Descent Direction Methods for Solving Convex Programming Problems.,2003,11,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc11.html#Shi03,http://dl.acm.org/citation.cfm?id=964891 +Minas D. Koulisianis,Pricing of American Options Using Linear Complementarity Formulation: Methods and Their Evaluation.,2003,11,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc11.html#KoulisianisP03,http://dl.acm.org/citation.cfm?id=964890 +Hojjat Adeli,An improved perception learning algorithm.,1993,1,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc1.html#AdeliZ93, +Woon-Seng Gan,Frequency bin adaptive filter: parallel implementation and analysis.,1998,6,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc6.html#GanC98, +Yen-Chun Lin,Optimal Parallel Prefix Circuits with Fan-Ot 2 and Corresponding Parallel Algorithms.,1999,7,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc7.html#Lin99, +Kuo-Liang Chung,Parallel matrix computations on meshes with segmented buses.,1996,4,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc4.html#Chung96,http://dl.acm.org/citation.cfm?id=241620 +Shou Hsing Shih,Prediction models for carbon dioxide emissions and the atmosphere.,2008,16,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc16.html#ShihT08,http://dl.acm.org/citation.cfm?id=1466640 +Willard L. Miranker,A neural system for the animat.,1994,2,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc2.html#MirankerW94,http://dl.acm.org/citation.cfm?id=197930 +Qin Sheng,A moving mesh approach to the numerical solution of nonlinear degenerate quenching problems.,1999,7,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc7.html#ShengC99,http://dl.acm.org/citation.cfm?id=334065 +Frederic M. Ham,A neural network architecture for partial least-squares regression (PLSNET) with supervised adaptive modular Hebbian learning.,1998,6,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc6.html#HamK98, +Sergey K. Aityan,Introduction to the theory of weighted apertures.,1994,2,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc2.html#AityanAK94,http://dl.acm.org/citation.cfm?id=197914 +Pong P. Chu,Neural network for solving optimization problems with linear equality constraints.,1993,1,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc1.html#Chu93, +Mostafa I. Soliman,Memory hierarchy exploration for accelerating the parallel computation of SVDs.,2008,16,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc16.html#Soliman08,http://dl.acm.org/citation.cfm?id=1561728 +David J. Evans 0001,A hierarchical artificial neural network architecture for English character recognition.,1996,4,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc4.html#EvansS96,http://dl.acm.org/citation.cfm?id=254747 +Bimal Dutta,A connectionist model for rainfall prediction.,2009,17,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc17.html#DuttaRPP09,http://dl.acm.org/citation.cfm?id=1737787 +M. P. Bekakos,Concurrent exploitation of multiple pipes arrangements on 3D mesh(d) architectures.,2001,9,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc9.html#BekakosEK01,http://dl.acm.org/citation.cfm?id=543518 +Rebecca D. Wooten,A Markovian analysis of hurricane transitions.,2008,16,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc16.html#WootenT08,http://dl.acm.org/citation.cfm?id=1466630 +Gregor von Laszewski,An Overview of Grid File Transfer Patterns and Their Implementation in the Java CoG Kit.,2004,12,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc12.html#LaszewskiGPHAMGS04,http://dl.acm.org/citation.cfm?id=1093539 +Cindy Quay,Scalability analysis of the parallel implementation of adaptive algorithms.,1995,3,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc3.html#QuayG95,http://dl.acm.org/citation.cfm?id=223154 +Konstantinos G. Margaritis,On multi-property set operations using neural networks and systolic arrays.,1995,3,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc3.html#MargaritisGATE95,http://dl.acm.org/citation.cfm?id=204444 +Gokarna R. Aryal,Airline spill analysis usnig Gumbel and Moyal probability distributions.,2008,16,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc16.html#AryalT08,http://dl.acm.org/citation.cfm?id=1466632 +Bernardete Ribeiro,On the Evaluation of Minkovsky Kernel for SVMs.,2005,13,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc13.html#Ribeiro05, +T. J. Stucke,The mind's eye: extracting structure from naturally variable objects.,1994,2,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc2.html#StuckeCC94,http://dl.acm.org/citation.cfm?id=184207 +Vassilia N. Pashaloudi,Isolated and Continuous Greek Sign Language Recognition with Hidden Markov Models.,2004,12,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc12.html#PashaloudiM04, +Mohd Yazid Saman,UNIPAR: a software tool for parallelising sequential programs.,2000,8,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc8.html#SamanE00,http://dl.acm.org/citation.cfm?id=367021 +Abhay B. Bulsari,Control of a biochemical process using feed-forward neural networks.,1993,1,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc1.html#BulsariS93, +C. S. Ryoo,Numerical Verification of Solutions for Generalized Obstacle Problems.,2003,11,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc11.html#RyooA03,http://dl.acm.org/citation.cfm?id=952949 +Angela Slavova,Toda lattice and Lotka Volterra cellular neural networks models.,1999,7,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc7.html#Slavova99,http://dl.acm.org/citation.cfm?id=334070 +Demetrios G. Lainiotis,Fast and numerically robust recursive algorithms for solving the discrete time Riccati equation: the case of nonsingular plant noise covariance matrix.,1995,3,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc3.html#LainiotisAK95,http://dl.acm.org/citation.cfm?id=223159 +Xun Liang,Method of digging tunnels into the error hypersurface.,1993,1,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc1.html#Liang93, +Rafael Montenegro,Efficient Strategies for Adaptive 3-D Mesh Generation Over Complex Orography.,2002,10,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc10.html#MontenegroMER02,http://dl.acm.org/citation.cfm?id=584635 +Rebecca D. Wooten,Statistical analysis and modeling of lightning.,2008,16,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc16.html#WootenT08a,http://dl.acm.org/citation.cfm?id=1466638 +M. P. Bekakos,An alternative faster systolic tridiagonal linear solver.,1996,4,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc4.html#BekakosE96,http://dl.acm.org/citation.cfm?id=233898 +Abdul Wahab,Noise Spectra Modeling Based on Fuzzy Neural Networks.,2004,12,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc12.html#WahabQNT04, +Allaberen Ashyralyev,Taylor's decomposition at several points for odd order ordinary DEs.,2009,17,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc17.html#AshyralyevAS09,http://dl.acm.org/citation.cfm?id=1737784 +Vassilis S. Kodogiannis,Intelligent Gas-sensing Systems for Bacterial Clinical Isolates in Vitro Classification.,2005,13,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc13.html#Kodogiannis05,http://dl.acm.org/citation.cfm?id=1125375 +Pieter Thysebaert,Evaluation of Grid Scheduling Strategies Through a NSgrid: A Network-aware Grid Simulator.,2004,12,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc12.html#ThysebaertVTDD04,http://dl.acm.org/citation.cfm?id=1093540 +K. Gopalsamy,Global stability of neuron models under dynamic feedback thresholds.,1995,3,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc3.html#GopalsamyL95,http://dl.acm.org/citation.cfm?id=203686 +Vladimir Kolmanovskii,Some Riccati equations in the stability study of dynamical systems with delays.,1999,7,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc7.html#KolmanovskiiR99,http://dl.acm.org/citation.cfm?id=326076 +Qiming He,Finite difference method for generalized Hopfield neural network model.,1995,3,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc3.html#HeZ95,http://dl.acm.org/citation.cfm?id=204448 +Lisa D. Foster,Using frequency analysis to determine wetland hydroperiod.,2008,16,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc16.html#FosterSRLW08,http://dl.acm.org/citation.cfm?id=1466631 +Arturo Olvera,Study of the continuation methods for periodic orbits of the Froeschle' map.,1994,2,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc2.html#OlveraV94,http://dl.acm.org/citation.cfm?id=197916 +Yen-Chun Lin,Parallel motion estimation on the MDSP multiprocessor.,2007,15,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc15.html#LinH07,http://dl.acm.org/citation.cfm?id=1315427 +S. Chandra Sekhara Rao,A robust numerical method for singularly perturbed semilinear convection-diffusion problems.,2010,18,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc18.html#RaoK10a,http://dl.acm.org/citation.cfm?id=1991939 +Suhrit K. Dey,Matrix free nonlinear solvers.,1996,4,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc4.html#Dey96,http://dl.acm.org/citation.cfm?id=229540 +Doo-Hyun Choi,Connectionist-nonconnectionist fusion architecture for high speed road following.,1996,4,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc4.html#ChoiOK96,http://dl.acm.org/citation.cfm?id=241627 +Haroon A. Babri,Causes and remedy of stability and convergence problems in back-propagation learning.,1995,3,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc3.html#BabriKLL95,http://dl.acm.org/citation.cfm?id=213265 +Ravi P. Agarwal,Calculating zeros of the twisted Euler polynomials.,2008,16,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc16.html#AgarwalKR08,http://dl.acm.org/citation.cfm?id=1561725 +Ming-Jung Seow,Modular architecture for Hopfield network and distance based training algorithm for pattern association.,2002,10,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc10.html#SeowA02,http://dl.acm.org/citation.cfm?id=763439 +Demetrios G. Lainiotis,Time series prediction based on fractal theory and nonlinear estimation using a network with Gaussian kernel functions.,1993,1,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc1.html#LainiotisAK93a, +Yaohang Li,A Grid Workflow-based Monte Carlo Simultation Environment.,2004,12,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc12.html#LiMEC04,http://dl.acm.org/citation.cfm?id=1093545 +Justin B. Munyakazi,Higher order numerical methods for singularly perturbed elliptic problems.,2010,18,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc18.html#MunyakaziP10,http://dl.acm.org/citation.cfm?id=1991922 +E. E. Escultura,The new real number system and discrete computation and calculus.,2009,17,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc17.html#Escultura09,http://dl.acm.org/citation.cfm?id=1737788 +Qiming He,Existence and stability of global solution for generalized Hopfield neural network system.,1994,2,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc2.html#HeK94,http://dl.acm.org/citation.cfm?id=183503 +Srimanta Pal,Connectionist Models for Approximate Solutions of Non-linear Equations in One Variable.,2003,11,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc11.html#PalP03,http://dl.acm.org/citation.cfm?id=952942 +Xinzhi Liu,Numerical methods for convection dominated parabolic problems.,1995,3,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc3.html#Liu95,http://dl.acm.org/citation.cfm?id=204452 +Sungjin Park,Secure Medial Image Transmission Using Independent Component Analysis of Digitally Modulated Mixtures.,2005,13,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc13.html#ParkH05, +Andrej Dobnikar,Genetic synthesis of task-oriented neural networks.,1994,2,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc2.html#Dobnikar94,http://dl.acm.org/citation.cfm?id=197932 +Sohail Asghar,Enhancing OLAP functionality using neural networks.,2004,12,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc12.html#AsgharAH04,http://dl.acm.org/citation.cfm?id=993003 +P. K. Pandey,The Numerical Solution of Third Order Differential Equation Containing the First Derivative.,2005,13,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc13.html#Pandey05, +Haroon A. Babri,A cost function constraint to reduce the convergence time in BP networks.,1998,6,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc6.html#BabriKYLL98, +Richard J. Hathaway,Kernelized Non-Euclidean Relational c-Means Algorithms.,2005,13,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc13.html#HathawayBH05, +M. M. Chawla,Numerical valuation of options with transaction costs.,2004,12,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc12.html#Chawla04, +Mansour Al-Zanaidi,A high-accuracy box scheme for first-order systems of hyperbolic conservation laws.,2002,10,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc10.html#Al-ZanaidiC02,http://dl.acm.org/citation.cfm?id=763442 +Mostafa I. Soliman,A highly efficient implementation of back propagation algorithm using matrix instruction set architecture.,2007,15,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc15.html#SolimanM07,http://dl.acm.org/citation.cfm?id=1315425 +Hsin-Chu Chen,Increasing parallelism in the finite strip formulation: static analysis.,1994,2,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc2.html#Chen94,http://dl.acm.org/citation.cfm?id=198754 +Jacek Mandziuk,Improvement of Hopfield associative memory by contour enhancement in library patterns.,1999,7,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc7.html#Mandziuk99,http://dl.acm.org/citation.cfm?id=334066 +Biljana Stosic,AHP method application in evaluation of plant genetic resources conservation strategy.,2004,12,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc12.html#StosicP04,http://dl.acm.org/citation.cfm?id=993006 +Suchendra M. Bhandarkar,A comparison of task distribution patterns for matrix factorization on MIMD multiprocessor architectures.,1994,2,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc2.html#BhandarkarJ94,http://dl.acm.org/citation.cfm?id=198771 +Syed Tauseef Mohyud-Din,On singular initial value problems.,2009,17,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc17.html#Mohyud-DinN09,http://dl.acm.org/citation.cfm?id=1737809 +I. H. West,Generalized Monotone Iterative Methods for Second Order Boundary Value Problems.,2005,13,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc13.html#WestVS05,http://dl.acm.org/citation.cfm?id=1125379 +Matthew Hardy,Parallel monotone domain decomposition algorithms for nonlinear singularly perturbed reaction-diffusion problems of parabolic type.,2010,18,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc18.html#HardyB10,http://dl.acm.org/citation.cfm?id=1991945 +Jennie Si,Advancing Gradient Base Neural Network Training.,1999,7,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc7.html#SiZ99, +Justin Fletcher,A discrete approach to constructive neural network learning.,1995,3,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc3.html#FletcherO95,http://dl.acm.org/citation.cfm?id=213260 +Zoran Obradovic,Parallel neural network learning through repetitive bounded depth trajectory branching.,1996,4,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc4.html#ObradovicM96,http://dl.acm.org/citation.cfm?id=254753 +Ioannis G. Tsoulos,Neural Splines: Exploiting Parallelism for Fuction Approximation Using Modular Neural Networks.,2005,13,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc13.html#TsoulosLL05,http://dl.acm.org/citation.cfm?id=1125376 +Xin Li,Computational Test of Approximation of Functions and Their Derivatives by Radial Basis Functions.,2002,10,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc10.html#LiHC02,http://dl.acm.org/citation.cfm?id=584633 +Mia Loccufier,Global convergence properties of discrete time neural networks.,1999,7,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc7.html#LoccufierN99,http://dl.acm.org/citation.cfm?id=326063 +Chi-Hau Chen,Class sensitive neural networks.,1993,1,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc1.html#ChenY93, +Stavros A. Karkanis,A Novel Signal Modeling Method Using the Wavelet Transform.,1998,6,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc6.html#KarkanisKM98, +N. C. Papanicolaou,A Galerkin spectral method for thermo-convection boundary value problems.,2002,10,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc10.html#PapanicolaouC02,http://dl.acm.org/citation.cfm?id=639868 +Lyubomir T. Gruyitch,Physical continuity and uniqueness principle. Exponential natural tracking control.,1998,6,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc6.html#Gruyitch98,http://dl.acm.org/citation.cfm?id=293732 +David L. Ross,A dynamic capacity model using concurrent processing.,1995,3,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc3.html#RossCG95,http://dl.acm.org/citation.cfm?id=203682 +Pong P. Chu,Neural networks as a parallel processing paradigm: potential and problems.,1994,2,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc2.html#Chu94,http://dl.acm.org/citation.cfm?id=183507 +George D. Manioudakis,Multi-Model Minimum Variance Control Using Neural Networks.,1998,6,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc6.html#ManioudakisL98, +Nazir A. Warsi,An intelligent search algorithm for dynamic programming computation.,1995,3,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc3.html#WarsiN95,http://dl.acm.org/citation.cfm?id=223156 +Alexander Jourjine,Dynamic weight storage in pulse coded networks.,1994,2,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc2.html#Jourjine94,http://dl.acm.org/citation.cfm?id=198767 +Demetrios G. Lainiotis,Estimation for Linear Systems with Non-Gaussian Initial State: Centralized and Decentralized Partitioning Algorithms.,1998,6,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc6.html#LainiotisGK98, +Gary W. Howell,Expected conditioning for eigenvalues of randomly generated matrices.,1995,3,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc3.html#HowellR95,http://dl.acm.org/citation.cfm?id=203683 +Alfred K. Mbah,Record values from half logistics and inverse Weibull probability distribution functions.,2008,16,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc16.html#MbahT08,http://dl.acm.org/citation.cfm?id=1466635 +Mostafa I. Soliman,FastCrypto: parallel AES pipelines extension for general-purpose processors.,2010,18,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc18.html#SolimanA10,http://dl.acm.org/citation.cfm?id=1991920 +David Zhang 0001,Pipelined architecture for neural-network-based speech recognition.,1994,2,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc2.html#ZhangDE94,http://dl.acm.org/citation.cfm?id=184206 +Aristidis Likas,A parallelizable operation scheme of the Boltzmann machine optimizer based on group updates.,1995,3,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc3.html#LikasPS95,http://dl.acm.org/citation.cfm?id=223147 +T. Yin,Sensitivity and attenuation compensated training of multilayered networks.,1998,6,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc6.html#YinBM98,http://dl.acm.org/citation.cfm?id=293737 +Kaushik Mukherjee,An efficient numerical scheme for singularly perturbed parabolic problems with interior layer.,2008,16,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc16.html#MukherjeeN08,http://dl.acm.org/citation.cfm?id=1561717 +Gang George Yin,Markov chain approximation techniques for a class of nonlinear control problems.,2002,10,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc10.html#YinZM02,http://dl.acm.org/citation.cfm?id=763444 +Lizhe Wang,Integrated resource management framework for bio-grid computing.,2008,16,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc16.html#WangJ08,http://dl.acm.org/citation.cfm?id=1561726 +Nagabhushana Prabhu,A quadratic nonlinear optimization method.,2002,10,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc10.html#PrabhuH02,http://dl.acm.org/citation.cfm?id=603330 +Chi-Hong Leung,Parallel Chinese word segmentation algorithm based on maximum matching.,1996,4,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc4.html#LeungK96a,http://dl.acm.org/citation.cfm?id=241621 +D. H. Rao,Performance comparison of dynamic neural processor and recurrent neural networks.,1994,2,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc2.html#RaoGN94,http://dl.acm.org/citation.cfm?id=184205 +Thomas M. McDowell,Robust Learning in a Generalized Partial Least-Squares Regression Modular Neural Network.,1998,6,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc6.html#McDowellH98, +A. K. Lal,An estimation of structure parameters of rotationally and tidally distorted polytropic models of stars in the presence of Coriolis force.,2009,17,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc17.html#LalPM09,http://dl.acm.org/citation.cfm?id=1737810 +Lixin X. Ding,Convergence properties of evolutionary algorithms under elitist strategy.,2000,8,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc8.html#DingK00,http://dl.acm.org/citation.cfm?id=367014 +M. Madalena Martins,Explicit group AOR method for solving elliptic partial differential equations.,2002,10,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc10.html#MartinsYE02,http://dl.acm.org/citation.cfm?id=763441 +Subhankar Ray,Efficient parallel algorithms for shared memory and message passing parallel architectures to test the robust stability of control systems.,1995,3,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc3.html#RayBK95,http://dl.acm.org/citation.cfm?id=213261 +N. Kumaresan,Optimal control for stochastic linear quadratic singular system with indefinite control cost and cross term using neural networks.,2008,16,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc16.html#KumaresanB08,http://dl.acm.org/citation.cfm?id=1561722 +Hongyong Zhao,Sufficient Conditions for Global Exponential Stability of Delayed Bidirectional Associative Memory Neural Network.,2004,12,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc12.html#Zhao04a, +S. F. Shu,Population-split Genetic Algorithm for Retrieval of Ultrafast Laser Parameters.,2003,11,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc11.html#ShuPS03,http://dl.acm.org/citation.cfm?id=952943 +Dusan Caf,A new UL factorisation of banded Toeplitz and Hankel matrices.,1993,1,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc1.html#CafE93, +Hyo-Gyu Kim,Identification and direct adaptive control using neural network.,1998,6,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc6.html#KimO98, +S. G. Fountoukis,Binary Relational Processing on a Bidirectional Parallel Cubic Engin-BPCE.,2005,13,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc13.html#FountoukisB05, +Nguyen Hoang Viet,Neural and Fuzzy Neural Networks in Prediction of Natural Gas Consumption.,2005,13,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc13.html#VietM05, +Theodore A. Tsiligiridis,Security for Mobile Agents: Privileges and State Appraisal Mechanism.,2004,12,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc12.html#Tsiligiridis04, +Lyubomir T. Gruyitch,Consistent Lyapunov methodology for Hopfield fuzzy neural networks.,1999,7,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc7.html#Gruyitch99,http://dl.acm.org/citation.cfm?id=326068 +E. Andrew Boyd,Solving integer programs with Fenchel cutting planes and preprocessing.,1993,1,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc1.html#Boyd93, +Vassilios S. Verykios,A knowledge discovery methodology for the performance evaluation of scientific software.,2000,8,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc8.html#VerykiosHR00,http://dl.acm.org/citation.cfm?id=367016 +Zhongdi Cen,A hybrid finite difference scheme for a class of singularly perturbed delay differential equations.,2008,16,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc16.html#Cen08,http://dl.acm.org/citation.cfm?id=1561710 +David Zhang 0001,Mapping neural networks onto systolic arrays.,1996,4,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc4.html#ZhangE96,http://dl.acm.org/citation.cfm?id=241624 +Z. Kamont,Runge-Kutta Bicharacteristic Methods for First Order Partial Functional Differential Equations.,2003,11,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc11.html#KamontN03,http://dl.acm.org/citation.cfm?id=964892 +Konstantinos G. Zerfiridis,Mobile agents as a middleware for data dissemination.,2002,10,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc10.html#ZerfiridisK02,http://dl.acm.org/citation.cfm?id=639866 +Zhao Chen,Bayesian Inference for The Power Law Process.,2005,13,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc13.html#ChenR05, +Y. C. Hon,A new penalty formulation for the numerical solution of biphasic mixture model.,1996,4,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc4.html#HonHLMX96,http://dl.acm.org/citation.cfm?id=254751 +Elmehdi Aitnouri,Estimation of multi-modal histogram's pdf using a mixture model.,1999,7,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc7.html#AitnouriWZVG99, +Fotis N. Koumboulis,Robust output performance for SISO linear systems with nonlinear uncertain structure.,2002,10,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc10.html#KoumboulisSM02,http://dl.acm.org/citation.cfm?id=639864 +William Pratt Mounfield Jr.,Natural tracking control for exponential tracking: Lateral high-gain pi control of an aircraft system with state-space description.,1993,1,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc1.html#MounfieldG93, +Shou Hsing,A temperature forecasting model for the continental United States.,2008,16,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc16.html#HsingT08,http://dl.acm.org/citation.cfm?id=1466634 +Grigorios I. Kalogeropoulos,Rank properties of a sequence of block bidiagonal Toeplitz matrices.,2010,18,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc18.html#KalogeropoulosKMP10,http://dl.acm.org/citation.cfm?id=1991918 +George L. Rudolph,A transformation for implementing localist neural networks.,1995,3,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc3.html#RudolphM95,http://dl.acm.org/citation.cfm?id=203669 +María del Carmen Domínguez,Some a-posteriori error estimators for plane elasticity using duality.,1999,7,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc7.html#DominguezF99,http://dl.acm.org/citation.cfm?id=340208 +Gabriel Oksa,Triangular systolic arrays for QZ matrix decomposition.,1998,6,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc6.html#OksaE98, +Hongyong Zhao,Global Stability of Neural Network with Distributed Delays.,2004,12,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc12.html#Zhao04, +Gustavo Montero,Left-right preconditioning versions of BCG-like methods.,1995,3,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc3.html#MonteroS95,http://dl.acm.org/citation.cfm?id=223150 +M. M. Chawla,High-Accuracy Finite-Difference Schemes for the Diffusion Equation.,1998,6,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc6.html#ChawlaAS98, +Zhoufeng Wang,The characteristic finite volume element methods for the two-dimensional generalized nerve conduction equation.,2007,15,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc15.html#WangZ07,http://dl.acm.org/citation.cfm?id=1315426 +Kailash C. Patidar,A new class of fitted mesh finite element method for convection-diffusion-reaction problems.,2010,18,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc18.html#Patidar10,http://dl.acm.org/citation.cfm?id=1991944 +Youngrock Yoon,Application of PVM: a new parallel implementation of adaptive stack filtering algorithm.,1998,6,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc6.html#YoonBLY98,http://dl.acm.org/citation.cfm?id=293741 +M. Isabel Asensio,Total error estimates of mixed finite element methods for nonlinear reaction-diffusion equations.,2000,8,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc8.html#AsensioF00,http://dl.acm.org/citation.cfm?id=367019 +Hongqing Cao,A hybrid evolutionary modeling algorithm for system of ordinary differential equations.,1998,6,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc6.html#CaoKMC98,http://dl.acm.org/citation.cfm?id=293733 +Luminita State,Evolutionary/genetic programming in restricted domains.,1996,4,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc4.html#StateRS96,http://dl.acm.org/citation.cfm?id=254749 +Arun K. Jagota,Decoding independent sets from an analog Hopfield network.,1996,4,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc4.html#JagotaBG96,http://dl.acm.org/citation.cfm?id=241613 +G. Xia,The Hysteretic Hopfield Neural Network Architecture for Maximum Cut Problem.,2005,13,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc13.html#XiaTWLC05, +Demetrios G. Lainiotis,Fast and stable algorithm for computing the principal square root of a complex matrix.,1993,1,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc1.html#LainiotisAK93, +Helen D. Karatza,Task scheduling performance in distributed systems with time varying workload.,2002,10,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc10.html#Karatza02,http://dl.acm.org/citation.cfm?id=639867 +Paramasivan Saratchandran,Effect of hidden layers on generalization properties of feedforward neural networks.,1993,1,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc1.html#Saratchandran93, +Sharon Simmons,Quantitative causality.,2007,15,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc15.html#SimmonsE07,http://dl.acm.org/citation.cfm?id=1315431 +P. Dhali,Clustering based on union and intersection of distance measure: applied on texture segmentation.,1995,3,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc3.html#DhaliS95,http://dl.acm.org/citation.cfm?id=203677 +Irina A. Bashkirtseva,Quasipotential in stochastic stability analysis of the nonlinear oscillator orbits.,1999,7,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc7.html#BashkirtsevaIR99,http://dl.acm.org/citation.cfm?id=334062 +Garyfalos Papaschinopoulos,Generalized invariants for systems of difference equations of rational form.,1999,7,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc7.html#PapaschinopoulosS99,http://dl.acm.org/citation.cfm?id=334067 +Pu Liu,An asynchronous parallel evolutionary algorithm (APEA) for solving complex non-linear real world optimization problems.,2002,10,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc10.html#LiuKGC02,http://dl.acm.org/citation.cfm?id=603327 +A. Gubkin,Stochastic Cycles for a Model of the Belousov-Zhabotinsky Reaction under Transition to Chaos.,2005,13,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc13.html#GubkinR05,http://dl.acm.org/citation.cfm?id=1125374 +Garry J. Tee,Isochrones and brachistochrones.,1999,7,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc7.html#Tee99,http://dl.acm.org/citation.cfm?id=334063 +Suhrit K. Dey,parallel solvers for large-scale linear and non-linear systems.,1999,7,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc7.html#Dey99,http://dl.acm.org/citation.cfm?id=340215 +Thiab R. Taha,Parallel algorithms for solving banded Toeplitz linear systems.,1993,1,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc1.html#TahaJ93, +Manos Roumeliotis,Back Propagation Neural Networks with Functional Link Input as Models of Chaotic Attractors.,1998,6,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc6.html#RoumeliotisKA98, +Joab R. Winkler,Backward error analysis of the roots of polynomials.,1999,7,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc7.html#Winkler99,http://dl.acm.org/citation.cfm?id=340181 +Kewang Zheng,Numerical approximation of an unknown boundary term in a heat equation.,1994,2,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc2.html#ZhengW94,http://dl.acm.org/citation.cfm?id=197920 +Samuel N. Jator,Solving two-point boundary value problems by a family of linear multistep methods.,2009,17,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc17.html#JatorL09,http://dl.acm.org/citation.cfm?id=1737806 +Srinivasan Natesan,A robust numerical scheme for singularly perturbed parabolic reaction-diffusion problems.,2008,16,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc16.html#NatesanD08,http://dl.acm.org/citation.cfm?id=1561718 +S. G. Fountoukis,Rule extraction from decision trees with complex nominal data.,2001,9,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc9.html#FountoukisBK01,http://dl.acm.org/citation.cfm?id=639012 +Nikhil Ranjan Pal,Computation of consensus hydrophobicity scales with self-organizing maps and fuzzy clustering along with applications to protein fold prediction.,2007,15,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc15.html#PalSS07,http://dl.acm.org/citation.cfm?id=1315429 +David Zhang 0001,A parallel digital layered perceptrons implementation.,1996,4,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc4.html#ZhangE96a,http://dl.acm.org/citation.cfm?id=254756 +André de Korvin,Generating Rules from Data: Going from Simple to More Uncertain Specifications.,2004,12,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc12.html#KorvinS04, +Massimo Conti,Approximation of dynamical systems by continuous-time recurrent approximate identity neural networks.,1994,2,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc2.html#ContiT94,http://dl.acm.org/citation.cfm?id=198761 +Hugo Guterman,Application of principal component analysis to the design of neural networks.,1994,2,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc2.html#Guterman94,http://dl.acm.org/citation.cfm?id=184204 +G. I. Mousadis,SERICAχ9*. An extension of the SERICA algorithm.,2002,10,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc10.html#MousadisTB02,http://dl.acm.org/citation.cfm?id=639863 +Emina I. Milovanovic,Computing Correlation and Convolution on Bidirectional Linear Systolic Array.,2005,13,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc13.html#MilovanovicM05, +David J. Evans 0001,On the Convergence of Two-Stage Multisplitting Methods for Linear Systems.,1998,6,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc6.html#EvansB98, +Zhiyue Zhang,The new ADI characteristics finite element methods for the three-dimensional generalized nerve conduction equation.,2002,10,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc10.html#Zhang02,http://dl.acm.org/citation.cfm?id=639869 +Yuhui Yao,Dendritic-curve-clustering neural network for unsupervised data labeling.,1999,7,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc7.html#YaoCC99,http://dl.acm.org/citation.cfm?id=334072 +Jugal Mohapatra,Uniformly convergent second-order numerical method for singularly perturbed delay differential equations.,2008,16,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc16.html#MohapatraN08,http://dl.acm.org/citation.cfm?id=1561714 +Osman Abou-Rabia,Differential inequalities and convolution in parallel integration of ODEs.,1994,2,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc2.html#Abou-RabiaB94,http://dl.acm.org/citation.cfm?id=183500 +Kwanyong Lee,Korean character recognition based on human-like processing network with recognition-by-generation.,1998,6,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc6.html#LeeBL98,http://dl.acm.org/citation.cfm?id=293739 +Takaharu Takeda,Incremental Learning with the Neural Network Trees.,2005,13,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc13.html#TakedaZL05, +Gürsel Serpen,Analysis of the relationship between weight parameters and stability of solutions in Hopfield networks form dynamic systems viewpoint.,1994,2,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc2.html#SerpenL94,http://dl.acm.org/citation.cfm?id=198769 +Anthony N. Michel,Theory and applications of sparsely interconnected feedback neural networks.,1996,4,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc4.html#MichelL96,http://dl.acm.org/citation.cfm?id=241622 +Ming-Jung Seow,Ratio Rule for Recurrent Neural Network Based Associative Recall of Multilevel Patterns.,2004,12,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc12.html#SeowA04, +Mohan K. Kadalbajoo,Variable mesh spline approximation method for solving singularly perturbed turning point problems having interior layer.,2010,18,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc18.html#KadalbajooP10,http://dl.acm.org/citation.cfm?id=1991942 +John R. Graef,Dynamics of a fishing model.,2010,18,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc18.html#GraefPS10,http://dl.acm.org/citation.cfm?id=1991924 +Yan Zhang,Estimate for the number of zeros of Abelian integrals for a kind of quartic hamiltonians.,2008,16,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc16.html#ZhangL08,http://dl.acm.org/citation.cfm?id=1561724 +Zhongdi Cen,Uniform convergence of monotone difference scheme for a singularly perturbed third-order convection-diffusion equation.,2009,17,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc17.html#Cen09,http://dl.acm.org/citation.cfm?id=1737805 +Marek B. Zaremba,Neuromorphic controller for locally guided robot navigation.,1998,6,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc6.html#ZarembaP98, +Sameh Ebrahim Rehan,Modular switched-resistor ANN chip for character recognition using novel parallel VLSI architecture.,1993,1,Neural Parallel and Scientific Comp.,,db/journals/npsc/npsc1.html#RehanE93, +Donna Stutson,Quadratic and semi-quadratic convergence of IVP.,1995,3,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc3.html#StutsonV95,http://dl.acm.org/citation.cfm?id=203680 +Richard J. Hathaway,Local convergence of tri-level alternating optimization.,2001,9,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc9.html#HathawayHB01,http://dl.acm.org/citation.cfm?id=543519 +Mostafa I. Soliman,Codevelopment of multi-level instruction set architecture and hardware for an efficient matrix processor.,2010,18,Neural Parallel and Scientific Comp.,1,db/journals/npsc/npsc18.html#SolimanA10a,http://dl.acm.org/citation.cfm?id=1991921 +Vivek Kumar 0005,An optimized B-spline method for solving singularly perturbed differential difference equations with delay as well as advance.,2008,16,Neural Parallel and Scientific Comp.,3,db/journals/npsc/npsc16.html#KumarS08,http://dl.acm.org/citation.cfm?id=1561715 +Homayoun Valafar,Distributed Global Optimization and its Development on the MultiRing Network.,2004,12,Neural Parallel and Scientific Comp.,4,db/journals/npsc/npsc12.html#ValafarAW04, +Abdul-Majid Wazwaz,The numerical solution of special eighth-order boundary value porblems by the modified decomposition method.,2000,8,Neural Parallel and Scientific Comp.,2,db/journals/npsc/npsc8.html#Wazwaz00,http://dl.acm.org/citation.cfm?id=367017 +Mahesh S. Raisinghani,Rethinking B2B E-Marketplaces and Mobile Commerce: From Information to Execution.,2002,3,J. Electron. Commerce Res.,2,db/journals/jecr/jecr3.html#RaisinghaniH02,http://www.csulb.edu/web/journals/jecr/issues/20022/paper8.pdf +Lisa Harris,The Ethics of eBanking.,2002,3,J. Electron. Commerce Res.,2,db/journals/jecr/jecr3.html#HarrisS02,http://www.csulb.edu/web/journals/jecr/issues/20022/paper5.pdf +Peter Marshall,An Industry Case Study of the Impacts of Electronic Commerce on Car Dealerships in Western Australia.,2000,1,J. Electron. Commerce Res.,1,db/journals/jecr/jecr1.html#MarshallSM00,http://www.csulb.edu/web/journals/jecr/issues/20001/paper1.pdf +Sumi Hela,Service Centric Brokering in Dynamic E-business Agent Communities.,2001,2,J. Electron. Commerce Res.,1,db/journals/jecr/jecr2.html#HelaW01,http://www.csulb.edu/web/journals/jecr/issues/20011/paper3.pdf +John Tillquist,Strategic Connectivity in Extended Enterprise Networks.,2002,3,J. Electron. Commerce Res.,2,db/journals/jecr/jecr3.html#Tillquist02,http://www.csulb.edu/web/journals/jecr/issues/20022/paper7.pdf +Shonali Krishnaswamy,Towards Data Mining Services on the Internet with a Multiple Service Provider Model: An XML Based Approach.,2001,2,J. Electron. Commerce Res.,3,db/journals/jecr/jecr2.html#KrishnaswamyZL01,http://www.csulb.edu/web/journals/jecr/issues/20013/paper2.pdf +Glen Hornby,Perceptions of Export Barriers and Cultural Issues: The SME E-Commerce Experience.,2002,3,J. Electron. Commerce Res.,4,db/journals/jecr/jecr3.html#HornbyGP02,http://www.csulb.edu/web/journals/jecr/issues/20024/paper2.pdf +Minder Chen,Web Services Enabled Procurement in the Extended Enterprise: An Architectural Design and Implementation.,2003,4,J. Electron. Commerce Res.,4,db/journals/jecr/jecr4.html#ChenM03,http://www.csulb.edu/web/journals/jecr/issues/20034/Paper2.pdf +Achita Muthitacharoen,B2C Internet Commerce: A Tale of Two Nations.,2002,3,J. Electron. Commerce Res.,4,db/journals/jecr/jecr3.html#MuthitacharoenP02,http://www.csulb.edu/web/journals/jecr/issues/20024/paper1.pdf +Hong Liu,Real-Time Multi-Auctions and the Agent-Support.,2000,1,J. Electron. Commerce Res.,4,db/journals/jecr/jecr1.html#LiuWT00,http://www.csulb.edu/web/journals/jecr/issues/20004/paper3.pdf +Pin Luarn,A Customer Loyalty Model for E-Service Context.,2003,4,J. Electron. Commerce Res.,4,db/journals/jecr/jecr4.html#LuarnL03,http://www.csulb.edu/web/journals/jecr/issues/20034/Paper3.pdf +Nancy J. Lightner,User Preference for Product Information in Remote Purchase Environments.,2002,3,J. Electron. Commerce Res.,3,db/journals/jecr/jecr3.html#LightnerE02,http://www.csulb.edu/web/journals/jecr/issues/20023/paper6.pdf +Arno Scharl,Commercial Scenarios of Digital Agent Deployment: A Functional Classification.,2000,1,J. Electron. Commerce Res.,3,db/journals/jecr/jecr1.html#ScharlBK00,http://www.csulb.edu/web/journals/jecr/issues/20003/paper2.pdf +Stanley K. Yung,Applying Multi Agent Technology to Supply Chain Management.,2000,1,J. Electron. Commerce Res.,4,db/journals/jecr/jecr1.html#YungYLY00,http://www.csulb.edu/web/journals/jecr/issues/20004/paper1.pdf +John Gallaugher,Market Formation and Fixed Income E-Commerce.,2002,3,J. Electron. Commerce Res.,2,db/journals/jecr/jecr3.html#Gallaugher02,http://www.csulb.edu/web/journals/jecr/issues/20022/paper4.pdf +Nikos I. Karacapilidis,Intelligent Agents Acting as Artificial Employees in an Electronic Market.,2000,1,J. Electron. Commerce Res.,4,db/journals/jecr/jecr1.html#KaracapilidisM00,http://www.csulb.edu/web/journals/jecr/issues/20004/paper2.pdf +Sai Ho Kwok,Intellectual Property Protection for Electronic Commerce Applications.,2004,5,J. Electron. Commerce Res.,1,db/journals/jecr/jecr5.html#KwokYT04,http://www.csulb.edu/web/journals/jecr/issues/20041/Paper1.pdf +Detlef Schoder,Is Customer Relationship Management a Success Factor in Electronic Commerce?,2004,5,J. Electron. Commerce Res.,1,db/journals/jecr/jecr5.html#SchoderM04,http://www.csulb.edu/web/journals/jecr/issues/20041/Paper4.pdf +Alexander Y. Yap,Enabling E-Commerce Growth through the Social Construction of a Virtual Community's Culture.,2002,3,J. Electron. Commerce Res.,4,db/journals/jecr/jecr3.html#Yap02,http://www.csulb.edu/web/journals/jecr/issues/20024/paper7.pdf +Mark Stamp,Digital Rights Management: The Technology Behind the Hype.,2003,4,J. Electron. Commerce Res.,3,db/journals/jecr/jecr4.html#Stamp03,http://www.csulb.edu/web/journals/jecr/issues/20033/paper3.pdf +Adela S. M. Lau,Adoption of On-line Trading in the Hong Kong Financial Market.,2001,2,J. Electron. Commerce Res.,2,db/journals/jecr/jecr2.html#LauYC01,http://www.csulb.edu/web/journals/jecr/issues/20012/paper2.pdf +Oded Lowengart,Differential Effects of Product Category on Shoppers' Selection of Web-based Stores: A Probabilistic Modeling Approach.,2001,2,J. Electron. Commerce Res.,4,db/journals/jecr/jecr2.html#LowengartT01,http://www.csulb.edu/web/journals/jecr/issues/20014/paper2.pdf +Fons Wijnhoven,The Importance of Information Goods Abstraction Levels for Information Commerce Process Models.,2002,3,J. Electron. Commerce Res.,2,db/journals/jecr/jecr3.html#Wijnhoven02,http://www.csulb.edu/web/journals/jecr/issues/20022/paper3.pdf +Mark R. Brown,Investigating the Relationship between Internet Privacy Concerns and Online Purchase Behavior.,2004,5,J. Electron. Commerce Res.,1,db/journals/jecr/jecr5.html#BrownM04,http://www.csulb.edu/web/journals/jecr/issues/20041/Paper6.pdf +Alemayehu Molla,E-Commerce Systems Success: An Attempt to Extend and Respecify the Delone and MaClean Model of IS Success.,2001,2,J. Electron. Commerce Res.,4,db/journals/jecr/jecr2.html#MollaL01,http://www.csulb.edu/web/journals/jecr/issues/20014/paper1.pdf +Deepak Prem Subramony,"Why Users Choose Particular Web Sites Over Others: Introducing a ""Means-End"" Approach to Human-Computer Interaction.",2002,3,J. Electron. Commerce Res.,3,db/journals/jecr/jecr3.html#Subramony02,http://www.csulb.edu/web/journals/jecr/issues/20023/paper4.pdf +Bhanu Prasad,Intelligent Techniques for E-Commerce.,2003,4,J. Electron. Commerce Res.,2,db/journals/jecr/jecr4.html#Prasad03,http://www.csulb.edu/web/journals/jecr/issues/20032/paper2.pdf +Susy S. Chan,Usability for Mobile Commerce Across Multiple Form Factors.,2002,3,J. Electron. Commerce Res.,3,db/journals/jecr/jecr3.html#ChanFBZXL02,http://www.csulb.edu/web/journals/jecr/issues/20023/paper7.pdf +Ulrich Frank,A Conceptual Foundation for Versatile E-Commerce Platforms.,2001,2,J. Electron. Commerce Res.,2,db/journals/jecr/jecr2.html#Frank01,http://www.csulb.edu/web/journals/jecr/issues/20012/paper1.pdf +John H. Nugent,The Information Technology and Telecommunications (or E-Business) Security Imperative: Important Issues and Drivers.,2002,3,J. Electron. Commerce Res.,1,db/journals/jecr/jecr3.html#NugentR02,http://www.csulb.edu/web/journals/jecr/issues/20021/paper1.pdf +Ann L. Fruhling,The Impact of Eelctronic Commerce on Business Level Strategies.,2000,1,J. Electron. Commerce Res.,1,db/journals/jecr/jecr1.html#FruhlingD00,http://www.csulb.edu/web/journals/jecr/issues/20001/paper2.pdf +Stuart J. Barnes,An Integrative Approach to the Assessment of E-Commerce Quality.,2002,3,J. Electron. Commerce Res.,3,db/journals/jecr/jecr3.html#BarnesV02,http://www.csulb.edu/web/journals/jecr/issues/20023/paper2.pdf +Dan Zhu,Edition Security Control in Inter-bank Fund Transfer.,2002,3,J. Electron. Commerce Res.,1,db/journals/jecr/jecr3.html#Zhu02,http://www.csulb.edu/web/journals/jecr/issues/20021/paper2.pdf +Melody Y. Kiang,A Framework for Analyzing the Potential Benefits of Internet Marketing.,2001,2,J. Electron. Commerce Res.,4,db/journals/jecr/jecr2.html#KiangC01,http://www.csulb.edu/web/journals/jecr/issues/20014/paper3.pdf +Aron M. Levin,Product Category Dependent Consumer Preferences for Online and Offline Shopping Features and Their Influence on Multi-Channel Retail Alliances.,2003,4,J. Electron. Commerce Res.,3,db/journals/jecr/jecr4.html#LevinLH03,http://www.csulb.edu/web/journals/jecr/issues/20033/paper1.pdf +Enrique Dans,Existing Business Models for Auctions and their Adaptation to Electronic Markets.,2002,3,J. Electron. Commerce Res.,2,db/journals/jecr/jecr3.html#Dans02,http://www.csulb.edu/web/journals/jecr/issues/20022/paper1.pdf +Kevin Crowston,The Effects of Market-enabling Internet Agents on Competition and Prices.,2001,2,J. Electron. Commerce Res.,1,db/journals/jecr/jecr2.html#CrowstonM01,http://www.csulb.edu/web/journals/jecr/issues/20011/paper1.pdf +Jingtao Yao,Ecommerce Adoption of Insurance Companies in New Zealand.,2004,5,J. Electron. Commerce Res.,1,db/journals/jecr/jecr5.html#Yao04,http://www.csulb.edu/web/journals/jecr/issues/20041/Paper5.pdf +Dale Young,Differences in Public Web Sites: The Current State of Large U. S. Firms.,2000,1,J. Electron. Commerce Res.,3,db/journals/jecr/jecr1.html#YoungB00,http://www.csulb.edu/web/journals/jecr/issues/20003/paper1.pdf +Namchul Shin,Strategies for Competitive Advantage in Electronic Commerce.,2001,2,J. Electron. Commerce Res.,4,db/journals/jecr/jecr2.html#Shin01,http://www.csulb.edu/web/journals/jecr/issues/20014/paper4.pdf +Fiona Fui-Hoon Nah,HCI Research Issues in Electronic Commerce.,2002,3,J. Electron. Commerce Res.,3,db/journals/jecr/jecr3.html#NahD02,http://www.csulb.edu/web/journals/jecr/issues/20023/paper1.pdf +YoungSu Lee,From Design Features to Financial Performance: A Comprehensive Model of Design Principles for Online Stock Trading Sites.,2002,3,J. Electron. Commerce Res.,3,db/journals/jecr/jecr3.html#LeeK02,http://www.csulb.edu/web/journals/jecr/issues/20023/paper3.pdf +Yi-Shun Wang,An Instrument for Measuring Customer Satisfaction Toward Web Sites That Market Digital Products and Services.,2001,2,J. Electron. Commerce Res.,3,db/journals/jecr/jecr2.html#WangTT01,http://www.csulb.edu/web/journals/jecr/issues/20013/paper1.pdf +Rex Eugene Perera,Optimizing Human-Computer Interaction for the Electronic Commerce Environment.,2000,1,J. Electron. Commerce Res.,1,db/journals/jecr/jecr1.html#Perera00,http://www.csulb.edu/web/journals/jecr/issues/20001/paper3.pdf +Yeonsoo Lee,A Cross-Cultural Study on the Value Structure of Mobile Internet Usage: Comparison Between Korea and Japan.,2002,3,J. Electron. Commerce Res.,4,db/journals/jecr/jecr3.html#LeeKLK02,http://www.csulb.edu/web/journals/jecr/issues/20024/paper3.pdf +Rainer Alt,Electronic Commerce and Supply Chain Management at ETA Fabriques d'Ebauches SA.,2000,1,J. Electron. Commerce Res.,2,db/journals/jecr/jecr1.html#AltFO00,http://www.csulb.edu/web/journals/jecr/issues/20002/paper3.pdf +Susan A. Sherer,Collaborative Commerce: The Role of Intermediaries in e-Collaboration.,2001,2,J. Electron. Commerce Res.,2,db/journals/jecr/jecr2.html#ShererA01,http://www.csulb.edu/web/journals/jecr/issues/20012/paper3.pdf +Kemal Altinkemer,Analyzing Protection Strategies for Online Software Distribution.,2003,4,J. Electron. Commerce Res.,1,db/journals/jecr/jecr4.html#AltinkemerG03,http://www.csulb.edu/web/journals/jecr/issues/20031/paper3.pdf +Merrill Warkentin,The Role of Mass Customization in Enhancing Supply Chain Relationships in B2C E-Commerce Markets.,2000,1,J. Electron. Commerce Res.,2,db/journals/jecr/jecr1.html#WarkentinBS00,http://www.csulb.edu/web/journals/jecr/issues/20002/paper1.pdf +Vijay K. Vaishnavi,An Approach to Reducing E-Commerce Coordination Costs in Evolving Markets Using a Semantic Routing Protocol.,2003,4,J. Electron. Commerce Res.,3,db/journals/jecr/jecr4.html#VaishnaviK03,http://www.csulb.edu/web/journals/jecr/issues/20033/paper4.pdf +Daniel Y. Shee,Modeling the Supply-Demand Interaction in Electronic Commerce: A Bi-Level Programming Approach.,2000,1,J. Electron. Commerce Res.,2,db/journals/jecr/jecr1.html#SheeTT00,http://www.csulb.edu/web/journals/jecr/issues/20002/paper4.pdf +Pookie Sautter,E-Tail Atmospherics: A Critique of the Literature and Model Extension.,2004,5,J. Electron. Commerce Res.,1,db/journals/jecr/jecr5.html#SautterHL04,http://www.csulb.edu/web/journals/jecr/issues/20041/Paper2.pdf +Sun Lim,The Self-Confrontation Interview: Towards an Enhanced Understanding of Human Factors in Web-based Interaction for Improved Website Usability.,2002,3,J. Electron. Commerce Res.,3,db/journals/jecr/jecr3.html#Lim02,http://www.csulb.edu/web/journals/jecr/issues/20023/paper5.pdf +Brian Detlor,Pre-Purchase Online Information Seeking: Search versus Browse.,2003,4,J. Electron. Commerce Res.,2,db/journals/jecr/jecr4.html#DetlorSG03,http://www.csulb.edu/web/journals/jecr/issues/20032/paper3.pdf +Paul A. Pavlou,What Drives Electronic Commerce across Cultures? Across-Cultural Empirical Investigation of the Theory of Planned Behavior.,2002,3,J. Electron. Commerce Res.,4,db/journals/jecr/jecr3.html#PavlouC02,http://www.csulb.edu/web/journals/jecr/issues/20024/paper4.pdf +Antony Bryant,Trust in Electronic Commerce Business Relationships.,2002,3,J. Electron. Commerce Res.,2,db/journals/jecr/jecr3.html#BryantC02,http://www.csulb.edu/web/journals/jecr/issues/20022/paper2.pdf +Minder Chen,The Implications and Impacts of Web Services to Electronic Commerce Research and Practices.,2003,4,J. Electron. Commerce Res.,4,db/journals/jecr/jecr4.html#ChenCS03,http://www.csulb.edu/web/journals/jecr/issues/20034/Paper1.pdf +Parag Shiralkar,Digital Signature: Application Development Trends in E-Business.,2003,4,J. Electron. Commerce Res.,3,db/journals/jecr/jecr4.html#ShiralkarV03,http://www.csulb.edu/web/journals/jecr/issues/20033/paper2.pdf +Mark Stansfield,An Investigation into Issues Influencing the Use of the Internet and Electronic Commerce among Small-Medium Sized Enterprises.,2003,4,J. Electron. Commerce Res.,1,db/journals/jecr/jecr4.html#StansfieldG03,http://www.csulb.edu/web/journals/jecr/issues/20031/paper2.pdf +Hope Koch,Business-to-Business Electronic Commerce Marketplaces: The Alliance Process.,2002,3,J. Electron. Commerce Res.,2,db/journals/jecr/jecr3.html#Koch02,http://www.csulb.edu/web/journals/jecr/issues/20022/paper6.pdf +Patrick Y. K. Chau,Inhibitors to EDI Adoption in Small Businesses: An Empirical Investigation.,2001,2,J. Electron. Commerce Res.,2,db/journals/jecr/jecr2.html#Chau01,http://www.csulb.edu/web/journals/jecr/issues/20012/paper4.pdf +Andrew N. K. Chen,An XML Adoption Framework for Electronic Business.,2003,4,J. Electron. Commerce Res.,1,db/journals/jecr/jecr4.html#ChenLS03,http://www.csulb.edu/web/journals/jecr/issues/20031/paper1.pdf +Ruth M. Rettie,Net Generation Culture.,2002,3,J. Electron. Commerce Res.,4,db/journals/jecr/jecr3.html#Rettie02,http://www.csulb.edu/web/journals/jecr/issues/20024/paper5.pdf +Franca Cantoni,New Distribution Models for Financial Services: The Italian Banks' Approach to the On Line Trading Development.,2000,1,J. Electron. Commerce Res.,2,db/journals/jecr/jecr1.html#CantoniR00,http://www.csulb.edu/web/journals/jecr/issues/20002/paper2.pdf +Dongmin Kim,Trust-Related Arguments in Internet Stores: A Framework for Evaluation.,2003,4,J. Electron. Commerce Res.,2,db/journals/jecr/jecr4.html#KimB03,http://www.csulb.edu/web/journals/jecr/issues/20032/paper1.pdf +Shirley A. Becker,An exploratory Study on Web Usability and the Internationalization of US E-Businesses.,2002,3,J. Electron. Commerce Res.,4,db/journals/jecr/jecr3.html#Becker02,http://www.csulb.edu/web/journals/jecr/issues/20024/paper6.pdf +Susan Sproule,Knowledgeable Agents for Search and Choice Support in E-commerce: A Decision Support Systems Approach.,2000,1,J. Electron. Commerce Res.,4,db/journals/jecr/jecr1.html#SprouleA00,http://www.csulb.edu/web/journals/jecr/issues/20004/paper4.pdf +Ian MacInnes,Vertical Integration and the Relationship Between Publisher and Creators.,2004,5,J. Electron. Commerce Res.,1,db/journals/jecr/jecr5.html#MacInnesKH04,http://www.csulb.edu/web/journals/jecr/issues/20041/Paper3.pdf +Onofre Orozco,Luenberger observer with nonlinear structure applied to diabetes type 1.,2018,9,IJCOPI,1,db/journals/ijcopi/ijcopi9.html#OrozcoHRGH18,https://ijcopi.org/index.php/ojs/article/view/81 +Marco Antonio Montufar Benítez,"Economic assessment of two water heating systems using a simulation model on @RiskTM and their connection with the ""gasolinazo"" event in México.",2016,7,IJCOPI,3,db/journals/ijcopi/ijcopi7.html#BenitezSAH16,https://ijcopi.org/index.php/ojs/article/view/31 +Yu. G. Stoyan,Enumeration and Generation of Permutations with a Partially Fixed Order of Elements.,2017,8,IJCOPI,1,db/journals/ijcopi/ijcopi8.html#StoyanGKL17,https://ijcopi.org/index.php/ojs/article/view/4 +Carlos Alberto Rojas-Trejos,Optimization Model for the Location of Prehospital Care Ambulances in the city of Cali Colombia.,2017,8,IJCOPI,3,db/journals/ijcopi/ijcopi8.html#Rojas-TrejosGL17,https://ijcopi.org/index.php/ojs/article/view/20 +Laura Cruz Reyes,Incorporation of decision-maker preferences in an interactive evolutionary multi-objective algorithm using a multi-criteria sorting.,2016,7,IJCOPI,3,db/journals/ijcopi/ijcopi7.html#ReyesFSS16,https://ijcopi.org/index.php/ojs/article/view/25 +Maxim Anatolievich Deryabin,High Performance Parallel Computing in Residue Number System.,2018,9,IJCOPI,1,db/journals/ijcopi/ijcopi9.html#DeryabinCTBS18,https://ijcopi.org/index.php/ojs/article/view/80 +Jorge A. Ruiz-Vanoye,Motivation Index to Improve the Soccer Performance.,2017,8,IJCOPI,3,db/journals/ijcopi/ijcopi8.html#Ruiz-VanoyeFVMR17,https://ijcopi.org/index.php/ojs/article/view/18 +Edgar Cossio,Comparison between instances to solve the CVRP.,2018,9,IJCOPI,2,db/journals/ijcopi/ijcopi9.html#CossioHOG18,https://ijcopi.org/index.php/ojs/article/view/94 +Alejandro Santiago Pineda,A Neighborhood Operator for Continuous Multi-Objective Optimization Problems.,2017,8,IJCOPI,1,db/journals/ijcopi/ijcopi8.html#PinedaMVHBS17,https://ijcopi.org/index.php/ojs/article/view/3 +Oliver Exler,A comparative study of SQP-type algorithms for nonlinear and nonconvex mixed-integer optimization.,2012,4,Math. Program. Comput.,4,db/journals/mpc/mpc4.html#ExlerLS12,https://doi.org/10.1007/s12532-012-0045-0 +Janick V. Frasch,A parallel quadratic programming method for dynamic optimization problems.,2015,7,Math. Program. Comput.,3,db/journals/mpc/mpc7.html#FraschSD15,https://doi.org/10.1007/s12532-015-0081-7 +Diego Pecin,Improved branch-cut-and-price for capacitated vehicle routing.,2017,9,Math. Program. Comput.,1,db/journals/mpc/mpc9.html#PecinPPU17,https://doi.org/10.1007/s12532-016-0108-8 +Frank E. Curtis,A penalty-interior-point algorithm for nonlinear constrained optimization.,2012,4,Math. Program. Comput.,2,db/journals/mpc/mpc4.html#Curtis12,https://doi.org/10.1007/s12532-012-0041-4 +Trivikram Dokka,Fast separation for the three-index assignment problem.,2017,9,Math. Program. Comput.,1,db/journals/mpc/mpc9.html#DokkaMS17,https://doi.org/10.1007/s12532-016-0106-x +Andrea Bettinelli,A branch-and-price algorithm for the multi-depot heterogeneous-fleet pickup and delivery problem with soft time windows.,2014,6,Math. Program. Comput.,2,db/journals/mpc/mpc6.html#BettinelliCR14,https://doi.org/10.1007/s12532-014-0064-0 +Nicholas I. M. Gould,On solving trust-region and other regularised subproblems in optimization.,2010,2,Math. Program. Comput.,1,db/journals/mpc/mpc2.html#GouldRT10,https://doi.org/10.1007/s12532-010-0011-7 +Ben Knueven,Detecting almost symmetries of graphs.,2018,10,Math. Program. Comput.,2,db/journals/mpc/mpc10.html#KnuevenOP18,https://doi.org/10.1007/s12532-017-0124-3 +Marianna De Santis,A nonmonotone GRASP.,2016,8,Math. Program. Comput.,3,db/journals/mpc/mpc8.html#SantisFLLR16,https://doi.org/10.1007/s12532-016-0107-9 +Matthias Walter,Implementation of a unimodularity test.,2013,5,Math. Program. Comput.,1,db/journals/mpc/mpc5.html#WalterT13,https://doi.org/10.1007/s12532-012-0048-x +Henrik A. Friberg,CBLIB 2014: a benchmark library for conic mixed-integer and continuous optimization.,2016,8,Math. Program. Comput.,2,db/journals/mpc/mpc8.html#Friberg16,https://doi.org/10.1007/s12532-015-0092-4 +François Margot,Testing cut generators for mixed-integer linear programming.,2009,1,Math. Program. Comput.,1,db/journals/mpc/mpc1.html#Margot09,https://doi.org/10.1007/s12532-009-0003-7 +Tanisha G. Cotton,Computational study of decomposition algorithms for mean-risk stochastic linear programs.,2015,7,Math. Program. Comput.,4,db/journals/mpc/mpc7.html#CottonN15,https://doi.org/10.1007/s12532-015-0088-0 +Hans Joachim Ferreau,qpOASES: a parametric active-set algorithm for quadratic programming.,2014,6,Math. Program. Comput.,4,db/journals/mpc/mpc6.html#FerreauKPBD14,https://doi.org/10.1007/s12532-014-0071-1 +John A. Gunnels,Efficient high-precision matrix algebra on parallel architectures for nonlinear combinatorial optimization.,2010,2,Math. Program. Comput.,2,db/journals/mpc/mpc2.html#GunnelsLM10,https://doi.org/10.1007/s12532-010-0014-4 +Matteo Fischetti,Cutting plane versus compact formulations for uncertain (integer) linear programs.,2012,4,Math. Program. Comput.,3,db/journals/mpc/mpc4.html#FischettiM12,https://doi.org/10.1007/s12532-012-0039-y +Matteo Fischetti,A relax-and-cut framework for Gomory mixed-integer cuts.,2011,3,Math. Program. Comput.,2,db/journals/mpc/mpc3.html#FischettiS11,https://doi.org/10.1007/s12532-011-0024-x +Horand I. Gassmann,Communication protocols for options and results in a distributed optimization environment.,2016,8,Math. Program. Comput.,2,db/journals/mpc/mpc8.html#GassmannMM16,https://doi.org/10.1007/s12532-015-0091-5 +Timo Berthold,RENS.,2014,6,Math. Program. Comput.,1,db/journals/mpc/mpc6.html#Berthold14,https://doi.org/10.1007/s12532-013-0060-9 +Dennis Janka,An SR1/BFGS SQP algorithm for nonconvex nonlinear programs with block-diagonal Hessian matrix.,2016,8,Math. Program. Comput.,4,db/journals/mpc/mpc8.html#JankaKSW16,https://doi.org/10.1007/s12532-016-0101-2 +Jeffrey D. Blanchard,GPU accelerated greedy algorithms for compressed sensing.,2013,5,Math. Program. Comput.,3,db/journals/mpc/mpc5.html#BlanchardT13,https://doi.org/10.1007/s12532-013-0056-5 +Fatma Kilinç-Karzan,Information-based branching schemes for binary linear mixed integer problems.,2009,1,Math. Program. Comput.,4,db/journals/mpc/mpc1.html#Kilinc-KarzanNS09,https://doi.org/10.1007/s12532-009-0009-1 +Charles Audet,Optimization of algorithms with OPAL.,2014,6,Math. Program. Comput.,3,db/journals/mpc/mpc6.html#AudetDO14,https://doi.org/10.1007/s12532-014-0067-x +Andreas Bärmann,Solving network design problems via iterative aggregation.,2015,7,Math. Program. Comput.,2,db/journals/mpc/mpc7.html#BarmannLMMTW15,https://doi.org/10.1007/s12532-015-0079-1 +Fajwel Fogel,Phase retrieval for imaging problems.,2016,8,Math. Program. Comput.,3,db/journals/mpc/mpc8.html#FogelWd16,https://doi.org/10.1007/s12532-016-0103-0 +William E. Hart,Pyomo: modeling and solving mathematical programs in Python.,2011,3,Math. Program. Comput.,3,db/journals/mpc/mpc3.html#HartWW11,https://doi.org/10.1007/s12532-011-0026-8 +Yangyang Xu,Alternating proximal gradient method for sparse nonnegative Tucker decomposition.,2015,7,Math. Program. Comput.,1,db/journals/mpc/mpc7.html#Xu15,https://doi.org/10.1007/s12532-014-0074-y +Mustafa R. Kilinç,Lift-and-project cuts for convex mixed integer nonlinear programs.,2017,9,Math. Program. Comput.,4,db/journals/mpc/mpc9.html#KilincLL17,https://doi.org/10.1007/s12532-017-0118-1 +Gerald Gamrath,SCIP-Jack - a solver for STP and variants with parallelization extensions.,2017,9,Math. Program. Comput.,2,db/journals/mpc/mpc9.html#GamrathKMRS17,https://doi.org/10.1007/s12532-016-0114-x +Dirk Müller 0003,Faster min-max resource sharing in theory and practice.,2011,3,Math. Program. Comput.,1,db/journals/mpc/mpc3.html#0003RV11,https://doi.org/10.1007/s12532-011-0023-y +Kimon Fountoulakis,Matrix-free interior point method for compressed sensing problems.,2014,6,Math. Program. Comput.,1,db/journals/mpc/mpc6.html#FountoulakisGZ14,https://doi.org/10.1007/s12532-013-0063-6 +Tobias Achterberg,The Mcf-separator: detecting and exploiting multi-commodity flow structures in MIPs.,2010,2,Math. Program. Comput.,2,db/journals/mpc/mpc2.html#AchterbergR10,https://doi.org/10.1007/s12532-010-0015-3 +Alberto Caprara,Optimal linear arrangements using betweenness variables.,2011,3,Math. Program. Comput.,3,db/journals/mpc/mpc3.html#CapraraORST11,https://doi.org/10.1007/s12532-011-0027-7 +Zaiwen Wen,Solving a low-rank factorization model for matrix completion by a nonlinear successive over-relaxation algorithm.,2012,4,Math. Program. Comput.,4,db/journals/mpc/mpc4.html#WenYZ12,https://doi.org/10.1007/s12532-012-0044-1 +Natashia L. Boland,Boosting the feasibility pump.,2014,6,Math. Program. Comput.,3,db/journals/mpc/mpc6.html#BolandEEFST14,https://doi.org/10.1007/s12532-014-0068-9 +Neal Parikh,Block splitting for distributed optimization.,2014,6,Math. Program. Comput.,1,db/journals/mpc/mpc6.html#ParikhB14,https://doi.org/10.1007/s12532-013-0061-8 +Quentin Louveaux,The strength of multi-row models.,2015,7,Math. Program. Comput.,2,db/journals/mpc/mpc7.html#LouveauxPS15,https://doi.org/10.1007/s12532-014-0076-9 +Henrik A. Friberg,Erratum to: CBLIB 2014: a benchmark library for conic mixed-integer and continuous optimization.,2016,8,Math. Program. Comput.,2,db/journals/mpc/mpc8.html#Friberg16a,https://doi.org/10.1007/s12532-015-0098-y +Hernán G. Abeledo,The time dependent traveling salesman problem: polyhedra and algorithm.,2013,5,Math. Program. Comput.,1,db/journals/mpc/mpc5.html#AbeledoFPU13,https://doi.org/10.1007/s12532-012-0047-y +Robert J. Vanderbei,Fast Fourier optimization.,2012,4,Math. Program. Comput.,1,db/journals/mpc/mpc4.html#Vanderbei12,https://doi.org/10.1007/s12532-011-0034-8 +David Avis,mplrs: A scalable parallel vertex/facet enumeration code.,2018,10,Math. Program. Comput.,2,db/journals/mpc/mpc10.html#AvisJ18,https://doi.org/10.1007/s12532-017-0129-y +Hans Pirnay,Optimal sensitivity based on IPOPT.,2012,4,Math. Program. Comput.,4,db/journals/mpc/mpc4.html#PirnayLB12,https://doi.org/10.1007/s12532-012-0043-2 +Pierre Bonami,On optimizing over lift-and-project closures.,2012,4,Math. Program. Comput.,2,db/journals/mpc/mpc4.html#Bonami12,https://doi.org/10.1007/s12532-012-0037-0 +Matteo Fischetti,Thinning out Steiner trees: a node-based model for uniform edge costs.,2017,9,Math. Program. Comput.,2,db/journals/mpc/mpc9.html#FischettiLLLMRS17,https://doi.org/10.1007/s12532-016-0111-0 +Thorsten Koch,MIPLIB 2010.,2011,3,Math. Program. Comput.,2,db/journals/mpc/mpc3.html#KochAABBBDGGHLMRSSW11,https://doi.org/10.1007/s12532-011-0025-9 +Victor Zverovich,A computational study of a solver system for processing two-stage stochastic LPs with enhanced Benders decomposition.,2012,4,Math. Program. Comput.,3,db/journals/mpc/mpc4.html#ZverovichFEM12,https://doi.org/10.1007/s12532-012-0038-z +Samuel Burer,Optimizing a polyhedral-semidefinite relaxation of completely positive programs.,2010,2,Math. Program. Comput.,1,db/journals/mpc/mpc2.html#Burer10,https://doi.org/10.1007/s12532-010-0010-8 +Kibaek Kim,Algorithmic innovations and software for the dual decomposition method applied to stochastic mixed-integer programs.,2018,10,Math. Program. Comput.,2,db/journals/mpc/mpc10.html#KimZ18,https://doi.org/10.1007/s12532-017-0128-z +Thomas Pajor,A robust and scalable algorithm for the Steiner problem in graphs.,2018,10,Math. Program. Comput.,1,db/journals/mpc/mpc10.html#PajorUW18,https://doi.org/10.1007/s12532-017-0123-4 +Benjamin Assarf,Computing convex hulls and counting integer points with polymake.,2017,9,Math. Program. Comput.,1,db/journals/mpc/mpc9.html#AssarfGHJLPR17,https://doi.org/10.1007/s12532-016-0104-z +Pouya Baniasadi,"Deterministic ""Snakes and Ladders"" Heuristic for the Hamiltonian cycle problem.",2014,6,Math. Program. Comput.,1,db/journals/mpc/mpc6.html#BaniasadiEFHR14,https://doi.org/10.1007/s12532-013-0059-2 +Nicholas I. M. Gould,Trajectory-following methods for large-scale degenerate convex quadratic programming.,2013,5,Math. Program. Comput.,2,db/journals/mpc/mpc5.html#GouldOR13,https://doi.org/10.1007/s12532-012-0050-3 +Leo Liberti,A recipe for finding good solutions to MINLPs.,2011,3,Math. Program. Comput.,4,db/journals/mpc/mpc3.html#LibertiMN11,https://doi.org/10.1007/s12532-011-0031-y +Chris Groër,A library of local search heuristics for the vehicle routing problem.,2010,2,Math. Program. Comput.,2,db/journals/mpc/mpc2.html#GroerGW10,https://doi.org/10.1007/s12532-010-0013-5 +Tobias Achterberg,SCIP: solving constraint integer programs.,2009,1,Math. Program. Comput.,1,db/journals/mpc/mpc1.html#Achterberg09,https://doi.org/10.1007/s12532-008-0001-1 +Stephen Becker,Templates for convex cone problems with applications to sparse signal recovery.,2011,3,Math. Program. Comput.,3,db/journals/mpc/mpc3.html#BeckerCG11,https://doi.org/10.1007/s12532-011-0029-5 +Anupam Seth,A new novel local search integer-programming-based heuristic for PCB assembly on collect-and-place machines.,2016,8,Math. Program. Comput.,1,db/journals/mpc/mpc8.html#SethKF16,https://doi.org/10.1007/s12532-015-0095-1 +Giacomo Nannicini,Rounding-based heuristics for nonconvex MINLPs.,2012,4,Math. Program. Comput.,1,db/journals/mpc/mpc4.html#NanniciniB12,https://doi.org/10.1007/s12532-011-0032-x +Jonathan Eckstein,PEBBL: an object-oriented framework for scalable parallel branch and bound.,2015,7,Math. Program. Comput.,4,db/journals/mpc/mpc7.html#EcksteinHP15,https://doi.org/10.1007/s12532-015-0087-1 +Ricardo Fukasawa,Intersection cuts for single row corner relaxations.,2018,10,Math. Program. Comput.,3,db/journals/mpc/mpc10.html#FukasawaPX18,https://doi.org/10.1007/s12532-018-0132-y +Kaifeng Jiang,A partial proximal point algorithm for nuclear norm regularized matrix least squares problems.,2014,6,Math. Program. Comput.,3,db/journals/mpc/mpc6.html#JiangST14,https://doi.org/10.1007/s12532-014-0069-8 +Guanglin Xu,A branch-and-bound algorithm for instrumental variable quantile regression.,2017,9,Math. Program. Comput.,4,db/journals/mpc/mpc9.html#XuB17,https://doi.org/10.1007/s12532-017-0117-2 +Tobias Fischer 0002,Branch-and-cut for linear programs with overlapping SOS1 constraints.,2018,10,Math. Program. Comput.,1,db/journals/mpc/mpc10.html#FischerP18,https://doi.org/10.1007/s12532-017-0122-5 +Tillmann Weißer,Sparse-BSOS: a bounded degree SOS hierarchy for large scale polynomial optimization with sparsity.,2018,10,Math. Program. Comput.,1,db/journals/mpc/mpc10.html#WeisserLT18,https://doi.org/10.1007/s12532-017-0121-6 +Benjamin Recht,Parallel stochastic gradient algorithms for large-scale matrix completion.,2013,5,Math. Program. Comput.,2,db/journals/mpc/mpc5.html#RechtR13,https://doi.org/10.1007/s12532-013-0053-8 +Antonio Frangioni,On the computational efficiency of subgradient methods: a case study with Lagrangian bounds.,2017,9,Math. Program. Comput.,4,db/journals/mpc/mpc9.html#FrangioniGG17,https://doi.org/10.1007/s12532-017-0120-7 +Juan Pablo Vielma,Extended formulations in mixed integer conic quadratic programming.,2017,9,Math. Program. Comput.,3,db/journals/mpc/mpc9.html#VielmaDHL17,https://doi.org/10.1007/s12532-016-0113-y +Christian Kirches,TACO: a toolkit for AMPL control optimization.,2013,5,Math. Program. Comput.,3,db/journals/mpc/mpc5.html#KirchesL13,https://doi.org/10.1007/s12532-013-0054-7 +Oleg Burdakov,On efficiently combining limited-memory and trust-region techniques.,2017,9,Math. Program. Comput.,1,db/journals/mpc/mpc9.html#BurdakovGZY17,https://doi.org/10.1007/s12532-016-0109-7 +Mu Wang,Capitalizing on live variables: new algorithms for efficient Hessian computation via automatic differentiation.,2016,8,Math. Program. Comput.,4,db/journals/mpc/mpc8.html#WangGP16,https://doi.org/10.1007/s12532-016-0100-3 +Liuqin Yang,SDPNAL \(+\) : a majorized semismooth Newton-CG augmented Lagrangian method for semidefinite programming with nonnegative constraints.,2015,7,Math. Program. Comput.,3,db/journals/mpc/mpc7.html#YangST15,https://doi.org/10.1007/s12532-015-0082-6 +Oh Hong Choon,Evaluation of manpower scheduling strategies at outpatient pharmacy with discrete-event simulation.,2013,26,OR Insight,1,db/journals/ori/ori26.html#ChoonLAC13,https://doi.org/10.1057/ori.2012.9 +Nathan Proudlove,Cracking the rankings Part (ii): Understanding the Financial Times European Business Schools rankings.,2012,25,OR Insight,4,db/journals/ori/ori25.html#Proudlove12a,https://doi.org/10.1057/ori.2011.22 +Irene Casas,A Spatial Decision Support System Combining GIS and OR Tools to Optimize District Boundaries and Bus Routes for a Suburban School District.,2008,21,OR Insight,2,db/journals/ori/ori21.html#CasasGMSWNB08,https://doi.org/10.1057/ori.2008.57 +John Friend,Let a hundred flowers bloom: The policy/variety dilemma.,2010,23,OR Insight,2,db/journals/ori/ori23.html#Friend10,https://doi.org/10.1057/ori.2010.2 +Stuart Maguire,Social imperatives in systems development: A conceptual model.,2010,23,OR Insight,3,db/journals/ori/ori23.html#MaguireOC10,https://doi.org/10.1057/ori.2010.6 +Andrew Tait,When spreadsheets go bad.,2013,26,OR Insight,4,db/journals/ori/ori26.html#TaitR13,https://doi.org/10.1057/ori.2013.8 +William Ho,Multiple criteria optimization of contemporary logistics distribution network problems.,2010,23,OR Insight,1,db/journals/ori/ori23.html#HoLH10,https://doi.org/10.1057/ori.2009.7 +Mark Gannon,Managing knowledge in construction engineering projects.,2011,24,OR Insight,1,db/journals/ori/ori24.html#GannonB11,https://doi.org/10.1057/ori.2010.15 +Majid Azizi,A decision model to select facial tissue raw material: A case from Iran.,2010,23,OR Insight,4,db/journals/ori/ori23.html#AziziM10,https://doi.org/10.1057/ori.2010.12 +John Crocker,Fifty years of reliability and maintenance: A personal view.,2009,22,OR Insight,1,db/journals/ori/ori22.html#Crocker09,https://doi.org/10.1057/ori.2008.5 +Francis J. Vasko,A women's collegiate basketball star player helps her team with OR.,2010,23,OR Insight,2,db/journals/ori/ori23.html#VaskoWG10,https://doi.org/10.1057/ori.2010.1 +Fraser N. McLeod,Quantifying the environmental benefits of collection/delivery points.,2009,22,OR Insight,3,db/journals/ori/ori22.html#McLeodC09,https://doi.org/10.1057/ori.2009.2 +Miles G. Nicholls,OR Modelling.,2007,20,OR Insight,3,db/journals/ori/ori20.html#Nicholls07,https://doi.org/10.1057/ori.2007.13 +Pablo Cortés,A brief review of the state of the art in Operational Research in Telecommunications.,2008,21,OR Insight,2,db/journals/ori/ori21.html#CortesM08,https://doi.org/10.1057/ori.2008.59 +Bülent çatay,Siting new fire stations in Istanbul: A risk-based optimization approach.,2011,24,OR Insight,2,db/journals/ori/ori24.html#Catay11,https://doi.org/10.1057/ori.2011.3 +Shahzeb Ali Malik,Factors that affect the adoption of Enterprise Risk Management (ERM).,2013,26,OR Insight,4,db/journals/ori/ori26.html#MalikH13,https://doi.org/10.1057/ori.2013.7 +Charles Vandepeer,Linking missions to scenarios for analysis of military macro-systems.,2013,26,OR Insight,1,db/journals/ori/ori26.html#VandepeerMV13,https://doi.org/10.1057/ori.2012.2 +Yasmin Merali,Beyond problem solving: Realising organisational intelligence in dynamic contexts.,2012,25,OR Insight,1,db/journals/ori/ori25.html#Merali12,https://doi.org/10.1057/ori.2011.11 +Alistair R. Clark,Editorial.,2013,26,OR Insight,4,db/journals/ori/ori26.html#ClarkBF13,https://doi.org/10.1057/ori.2013.11 +Nathan Proudlove,Cracking the rankings Part (i): Understanding the Financial Times MBA rankings.,2012,25,OR Insight,4,db/journals/ori/ori25.html#Proudlove12,https://doi.org/10.1057/ori.2011.21 +Sameer Kumar 0003,Managing risks in a relief supply chain in the wake of an adverse event.,2011,24,OR Insight,2,db/journals/ori/ori24.html#Kumar11,https://doi.org/10.1057/ori.2011.4 +Sue Merchant,Using PSMs to help develop a Risk Management Plan for a Forest-based Community Venture.,2007,20,OR Insight,3,db/journals/ori/ori20.html#Merchant07,https://doi.org/10.1057/ori.2007.16 +Alistair R. Clark,Editorial.,2009,22,OR Insight,3,db/journals/ori/ori22.html#ClarkFB09a,https://doi.org/10.1057/ori.2009.6 +Jill Glen,Exploring alternative routes to realising the benefits of simulation in healthcare.,2013,26,OR Insight,1,db/journals/ori/ori26.html#Glen13,https://doi.org/10.1057/ori.2012.12 +Carol Packham,Key characteristics of informal education practice in relation to ALAC/Take Part.,2007,20,OR Insight,2,db/journals/ori/ori20.html#Packham07,https://doi.org/10.1057/ori.2007.10 +Francis J. Vasko,Optimizing performance funding at Kutztown University of Pennsylvania.,2009,22,OR Insight,1,db/journals/ori/ori22.html#VaskoAMS09,https://doi.org/10.1057/ori.2008.3 +Saïd Salhi,Heuristics are here to help your online vehicle scheduling.,2009,22,OR Insight,2,db/journals/ori/ori22.html#SalhiC09,https://doi.org/10.1057/ori.2008.7 +Ammar Al-Bazi,Simulation-based genetic algorithms for construction supply chain management: Off-site precast concrete production as a case study.,2012,25,OR Insight,3,db/journals/ori/ori25.html#Al-BaziD12,https://doi.org/10.1057/ori.2012.7 +Udechukwu Ojiako,The critical role of hermeneutics in intelligence management.,2012,25,OR Insight,1,db/journals/ori/ori25.html#OjiakoMRC12,https://doi.org/10.1057/ori.2011.12 +Steve Clarke,Editorial.,2008,21,OR Insight,1,db/journals/ori/ori21.html#ClarkeL08,https://doi.org/10.1057/ori.2008.51 +Marjorie Mayo,Participatory Approaches Evaluating Active Learning for Active Citizenship (ALAC).,2007,20,OR Insight,2,db/journals/ori/ori20.html#Mayo07,https://doi.org/10.1057/ori.2007.11 +Charles Woodd,Active learning for active citizenship: The policy context.,2007,20,OR Insight,2,db/journals/ori/ori20.html#Woodd07,https://doi.org/10.1057/ori.2007.8 +Alistair R. Clark,Editorial.,2009,22,OR Insight,1,db/journals/ori/ori22.html#ClarkFB09,https://doi.org/10.1057/ori.2009.1 +Giorgos Pentafronimos,Collaborative information and knowledge management environments: The 'what' and 'how'.,2012,25,OR Insight,2,db/journals/ori/ori25.html#PentafronimosKP12,https://doi.org/10.1057/ori.2011.16 +Teta Stamati,Corporate memory management: An empirical study from Greece.,2012,25,OR Insight,1,db/journals/ori/ori25.html#StamatiP12,https://doi.org/10.1057/ori.2011.13 +David K. Smith,The travelling confessor of Bere Ferrers.,2013,26,OR Insight,2,db/journals/ori/ori26.html#Smith13,https://doi.org/10.1057/ori.2012.16 +Peter Galbraith,System dynamics: A lens and scalpel for organisational decision making.,2010,23,OR Insight,2,db/journals/ori/ori23.html#Galbraith10,https://doi.org/10.1057/ori.2010.3 +Sameer Kumar 0003,Supply chain analysis methodology - Leveraging optimization and simulation software.,2013,26,OR Insight,2,db/journals/ori/ori26.html#KumarN13,https://doi.org/10.1057/ori.2012.10 +Paul Goodwin,Forecasting in supply chain companies: Should you trust your judgment?,2011,24,OR Insight,3,db/journals/ori/ori24.html#GoodwinF11,https://doi.org/10.1057/ori.2011.5 +Alan Brown,Nodal Pricing in Electric Transmission: A Customers View.,2008,21,OR Insight,3,db/journals/ori/ori21.html#BrownT08,https://doi.org/10.1057/ori.2008.12 +Chih-Tung Hsiao,Taekwondo sport development: The case of Taiwan.,2010,23,OR Insight,3,db/journals/ori/ori23.html#HsiaoLC10,https://doi.org/10.1057/ori.2010.7 +Aris A. Syntetos,Guest Editorial.,2012,25,OR Insight,3,db/journals/ori/ori25.html#SyntetosP12,https://doi.org/10.1057/ori.2012.8 +Gary Bell,From theory to practice and back: Some experiences with an emerging multimethodology.,2009,22,OR Insight,2,db/journals/ori/ori22.html#BellWK09,https://doi.org/10.1057/ori.2008.6 +Jo Smedley,Modelling the impact of knowledge management using technology.,2010,23,OR Insight,4,db/journals/ori/ori23.html#Smedley10,https://doi.org/10.1057/ori.2010.11 +Noelia Oses,Bitz and Pizzas: Optimal stopping strategy for a slot machine bonus game.,2009,22,OR Insight,1,db/journals/ori/ori22.html#Oses09,https://doi.org/10.1057/ori.2008.4 +Andrea Milani,Improving Firms' Decisions of Strategic Distribution Partnerships Through a New Artificial Neural Networks Approach.,2008,21,OR Insight,4,db/journals/ori/ori21.html#MilaniSV08,https://doi.org/10.1057/ori.2008.18 +Nadya Anscombe,Computer simulation helps Heathrow's Terminal 5 to be one of the best in the world.,2013,26,OR Insight,2,db/journals/ori/ori26.html#Anscombe13a,https://doi.org/10.1057/ori.2012.14 +Jim Freeman,Dynamic programming and the evaluation of gaming designs.,2010,23,OR Insight,2,db/journals/ori/ori23.html#Freeman10,https://doi.org/10.1057/ori.2010.4 +B. Jay Coleman,Optimizing Career Day in three seconds.,2008,21,OR Insight,2,db/journals/ori/ori21.html#ColemanBF08,https://doi.org/10.1057/ori.2008.58 +Clara V. Marin,Server Adaptation in an Airport Security System Queue.,2007,20,OR Insight,4,db/journals/ori/ori20.html#MarinDBL07,https://doi.org/10.1057/ori.2007.21 +Nelya Storozhyshina,A comprehensive empirical analysis of 16 heuristics for the transportation problem.,2011,24,OR Insight,1,db/journals/ori/ori24.html#StorozhyshinaPV11,https://doi.org/10.1057/ori.2010.13 +Natalia Ibáñez-Herrero,An extended rolling stock problem with empty trains timetabling through a heuristic approach.,2013,26,OR Insight,4,db/journals/ori/ori26.html#Ibanez-HerreroGOM13,https://doi.org/10.1057/ori.2013.4 +Tony Lines,OR consultancy in the early years: The story of Business Operations Research Ltd.,2010,23,OR Insight,2,db/journals/ori/ori23.html#Lines10,https://doi.org/10.1057/ori.2010.5 +Steve Clarke,Editorial.,2008,21,OR Insight,3,db/journals/ori/ori21.html#ClarkeL08b,https://doi.org/10.1057/ori.2008.10 +Val Woodward,Active Learning for Active Citizenship: An Overview.,2007,20,OR Insight,2,db/journals/ori/ori20.html#Woodward07,https://doi.org/10.1057/ori.2007.9 +Steve Clarke,Editorial.,2007,20,OR Insight,4,db/journals/ori/ori20.html#ClarkeL07a,https://doi.org/10.1057/ori.2007.18 +Gary Graham,The regional newspaper industry value chain in the digital age.,2009,22,OR Insight,3,db/journals/ori/ori22.html#GrahamH09,https://doi.org/10.1057/ori.2009.5 +Vinh Quan,A Dynamic Search Termination Scheme for Retail Labour Scheduling Problems.,2008,21,OR Insight,4,db/journals/ori/ori21.html#QuanS08,https://doi.org/10.1057/ori.2008.15 +Lene Berge Holm,Using soft systems methodology as a precursor for an emergency department simulation model.,2011,24,OR Insight,3,db/journals/ori/ori24.html#HolmD11,https://doi.org/10.1057/ori.2011.8 +Bruce G. Charlton,The Bowling Equivalent of the Batting Average: Quantitative Evaluation of the Contribution of Bowlers in Cricket Using a Novel Statistic of 'Extra Runs Saved Per Match' (ERS/M).,2007,20,OR Insight,4,db/journals/ori/ori20.html#Charlton07,https://doi.org/10.1057/ori.2007.19 +Gemma Clark,Navigating aged care options: A multi-framing approach.,2011,24,OR Insight,1,db/journals/ori/ori24.html#ClarkM11,https://doi.org/10.1057/ori.2010.14 +Thanos Papadopoulos,Part 2: Facilitating information and knowledge management through information systems and operational research: From theory to practice.,2012,25,OR Insight,2,db/journals/ori/ori25.html#PapadopoulosKS12a,https://doi.org/10.1057/ori.2011.20 +Noelia Oses,Markov chain applications in the slot machine industry.,2008,21,OR Insight,1,db/journals/ori/ori21.html#Oses08,https://doi.org/10.1057/ori.2008.53 +S. Proctor,Modelling Patient Flow in a Radiotherapy Department.,2007,20,OR Insight,3,db/journals/ori/ori20.html#ProctorLRK07,https://doi.org/10.1057/ori.2007.15 +Antonis A. Michis,Do more forecasts always improve averages of model forecasts? Evidence from reports published by HM Treasury.,2013,26,OR Insight,4,db/journals/ori/ori26.html#Michis13,https://doi.org/10.1057/ori.2013.5 +Steve Clarke,Editorial.,2008,21,OR Insight,2,db/journals/ori/ori21.html#ClarkeL08a,https://doi.org/10.1057/ori.2008.56 +Francis J. Vasko,Balancing a transportation problem: Is it really that simple?,2011,24,OR Insight,3,db/journals/ori/ori24.html#VaskoS11,https://doi.org/10.1057/ori.2011.6 +Alistair R. Clark,Editorial.,2010,23,OR Insight,3,db/journals/ori/ori23.html#ClarkFB10,https://doi.org/10.1057/ori.2010.9 +Nadya Anscombe,Dual case study highlights valuable lessons in the implementation of operational research.,2013,26,OR Insight,1,db/journals/ori/ori26.html#Anscombe13,https://doi.org/10.1057/ori.2012.13 +Matthew Downing,Supply chain forecasting for the UK Chinook fleet.,2011,24,OR Insight,2,db/journals/ori/ori24.html#DowningCOK11,https://doi.org/10.1057/ori.2011.2 +Geoffrey T Pond,Vehicle availability during a mounted combat engagement.,2010,23,OR Insight,3,db/journals/ori/ori23.html#Pond10,https://doi.org/10.1057/ori.2010.8 +Francis J. Vasko,Strategic Planning: OR to the Rescue.,2008,21,OR Insight,3,db/journals/ori/ori21.html#VaskoS08,https://doi.org/10.1057/ori.2008.13 +Thanos Papadopoulos,Part 1: Facilitating information and knowledge management through information systems and operational research: From theory to practice.,2012,25,OR Insight,1,db/journals/ori/ori25.html#PapadopoulosKS12,https://doi.org/10.1057/ori.2011.19 +Richard Forrester,Improving the quality of the assignment of students to first-year seminars.,2013,26,OR Insight,2,db/journals/ori/ori26.html#ForresterHT13,https://doi.org/10.1057/ori.2012.11 +Steve Clarke,Editorial.,2008,21,OR Insight,4,db/journals/ori/ori21.html#ClarkeL08c,https://doi.org/10.1057/ori.2008.14 +Diederik J. D. Wijnmalen,A code of best practice for judgement-based operational research.,2013,26,OR Insight,4,db/journals/ori/ori26.html#WijnmalenC13,https://doi.org/10.1057/ori.2013.10 +Ahmed Ghanmi,Modelling and analysis of Canadian Forces RSOM-hub locations for Northern operations.,2010,23,OR Insight,4,db/journals/ori/ori23.html#Ghanmi10,https://doi.org/10.1057/ori.2010.10 +Mark Moonen,Ram Raids and Hold-ups.,2007,20,OR Insight,4,db/journals/ori/ori20.html#MoonenCO07,https://doi.org/10.1057/ori.2007.22 +Zuopeng (Justin) Zhang,A social software strategy for knowledge management and organization culture.,2012,25,OR Insight,2,db/journals/ori/ori25.html#Zhang12,https://doi.org/10.1057/ori.2011.14 +Steve Clarke,Editorial.,2007,20,OR Insight,1,db/journals/ori/ori20.html#ClarkeL07,https://doi.org/10.1057/ori.2007.1 +Eric Audsley,A review of the practice and achievements from 50 years of applying OR to agricultural systems in Britain.,2009,22,OR Insight,1,db/journals/ori/ori22.html#AudsleyS09,https://doi.org/10.1057/ori.2008.1 +Jiabin Luo,Storage and stacking logistics problems in container terminals.,2011,24,OR Insight,4,db/journals/ori/ori24.html#LuoWHS11,https://doi.org/10.1057/ori.2011.10 +Devarajan (Rajan) Anketell,E-Commerce: A Practioners Overview.,2007,20,OR Insight,1,db/journals/ori/ori20.html#Anketell07,https://doi.org/10.1057/ori.2007.2 +Matthew Robert Knott,A review of the links between nuclear power plant probabilistic safety analysis and operational research.,2009,22,OR Insight,1,db/journals/ori/ori22.html#Knott09,https://doi.org/10.1057/ori.2008.2 +Majid Azizi,Deforestation and the Development of the Iranian Wood Industry.,2007,20,OR Insight,1,db/journals/ori/ori20.html#Azizi07,https://doi.org/10.1057/ori.2007.3 +Benjamin Smith,Forecasting Children in Foster Care - New South Wales OOHC Funding Model.,2008,21,OR Insight,1,db/journals/ori/ori21.html#Smith08,https://doi.org/10.1057/ori.2008.52 +Majid Azadi,Developing a WPF-CCR model for selecting suppliers in the presence of stochastic data.,2011,24,OR Insight,1,db/journals/ori/ori24.html#AzadiS11,https://doi.org/10.1057/ori.2010.16 +David Bamford,Health-care logistics redesign.,2009,22,OR Insight,3,db/journals/ori/ori22.html#BamfordTB09,https://doi.org/10.1057/ori.2009.3 +Pieter Vansteenwegen,The Mobile Tourist Guide: An OR Opportunity.,2007,20,OR Insight,3,db/journals/ori/ori20.html#VansteenwegenO07,https://doi.org/10.1057/ori.2007.17 +Manolis Maragoudakis,Using Ensemble Random Forests for the extraction and exploitation of knowledge on gas turbine blading faults identification.,2012,25,OR Insight,2,db/journals/ori/ori25.html#MaragoudakisL12,https://doi.org/10.1057/ori.2011.15 +Manuel Puerto,A new Drama-Theoretic Method for Conflict Resolution in Management.,2007,20,OR Insight,1,db/journals/ori/ori20.html#Puerto07,https://doi.org/10.1057/ori.2007.4 +Stefan Sadnicki,Faldo's folly or Monty's Carlo.,2009,22,OR Insight,4,db/journals/ori/ori22.html#SadnickiS09,https://doi.org/10.1057/ori.2009.8 +Liying Song,Implications of collection/delivery points for transport and logistics.,2011,24,OR Insight,4,db/journals/ori/ori24.html#SongCG11,https://doi.org/10.1057/ori.2011.9 +Ross A. McDonald,Application of survival analysis to cash flow modelling for mortgage products.,2010,23,OR Insight,1,db/journals/ori/ori23.html#McDonaldMT10,https://doi.org/10.1057/ori.2009.15 +Gary Graham,Exploring interaction: Print and online news media synergies.,2012,25,OR Insight,4,db/journals/ori/ori25.html#GrahamF12,https://doi.org/10.1057/ori.2012.1 +Zoraida Mendiwelso Bendek,Editorial.,2007,20,OR Insight,2,db/journals/ori/ori20.html#Bendek07,https://doi.org/10.1057/ori.2007.6 +Katharina Ott,A framework for economic demand forecast evaluation.,2013,26,OR Insight,3,db/journals/ori/ori26.html#OttMG13,https://doi.org/10.1057/ori.2013.3 +Laura Cronk,Knowledge Sharing by Micro-Teams: A Case Study in an Information Services Department.,2008,21,OR Insight,4,db/journals/ori/ori21.html#CronkR08,https://doi.org/10.1057/ori.2008.17 +Jo Smedley,Modelling personal knowledge management.,2009,22,OR Insight,4,db/journals/ori/ori22.html#Smedley09,https://doi.org/10.1057/ori.2009.11 +Narges Banaeian,Assessment of productive efficiency for irrigated and dryland wheat farming in Iran using Data Envelopment Analysis.,2011,24,OR Insight,4,db/journals/ori/ori24.html#BanaeianZ11,https://doi.org/10.1057/ori.2011.18 +Giles A. Hindle,Challenging official estimates of carbon dioxide emissions and fuel economy for passenger cars in the United Kingdom.,2013,26,OR Insight,4,db/journals/ori/ori26.html#HindleHH13,https://doi.org/10.1057/ori.2013.9 +Majid Azizi,Applying ANP for raw material supply in Iranian paper industry.,2008,21,OR Insight,3,db/journals/ori/ori21.html#AziziM08,https://doi.org/10.1057/ori.2008.11 +Thanos Papadopoulos,A path to the successful implementation of Business Intelligence: An example from the Hellenic Banking sector.,2010,23,OR Insight,1,db/journals/ori/ori23.html#PapadopoulosK10,https://doi.org/10.1057/ori.2009.14 +Horst A. Eiselt,An optimization-based framework for modelling counter-terrorism strategies.,2013,26,OR Insight,1,db/journals/ori/ori26.html#EiseltBB13,https://doi.org/10.1057/ori.2011.24 +Gilberto Farias de Sousa Filho,Optimization and implementation of a system for allocating services integrated with the Google Maps service.,2012,25,OR Insight,4,db/journals/ori/ori25.html#FilhoNCFN12,https://doi.org/10.1057/ori.2012.3 +David K. Smith,Open studios - Regional promotion of art tourism.,2009,22,OR Insight,3,db/journals/ori/ori22.html#Smith09,https://doi.org/10.1057/ori.2009.4 +Jack Brimberg,Are National Hockey League referees Markov?,2009,22,OR Insight,4,db/journals/ori/ori22.html#BrimbergH09,https://doi.org/10.1057/ori.2009.12 +David Groves,Using Chernoff Face Plots For Burglary Suspect Prioritisation.,2008,21,OR Insight,1,db/journals/ori/ori21.html#Groves08,https://doi.org/10.1057/ori.2008.54 +Alessio Ishizaka,Analytic Hierarchy Process and Expert Choice: Benefits and limitations.,2009,22,OR Insight,4,db/journals/ori/ori22.html#IshizakaL09,https://doi.org/10.1057/ori.2009.10 +Satya S. Chakravorty,Lean systems: Soft OR in practice.,2013,26,OR Insight,3,db/journals/ori/ori26.html#ChakravortyH13,https://doi.org/10.1057/ori.2012.15 +Hector J. Carlo,A decision support tool for yard logistics in pharmaceutical industry.,2013,26,OR Insight,1,db/journals/ori/ori26.html#CarloA13,https://doi.org/10.1057/ori.2012.4 +David Bamford,Analysing approaches to technology transfer in the UK National Health Sector.,2011,24,OR Insight,2,db/journals/ori/ori24.html#BamfordFI11,https://doi.org/10.1057/ori.2011.1 +Harry Kogetsidis,Forecasting Payroll Costs for the Department of Social Security.,2007,20,OR Insight,1,db/journals/ori/ori20.html#Kogetsidis07,https://doi.org/10.1057/ori.2007.5 +Alistair R. Clark,Mathematical programming modelling tools for resource-poor countries and organisations.,2010,23,OR Insight,1,db/journals/ori/ori23.html#Clark10,https://doi.org/10.1057/ori.2009.9 +Alex Grasas,Vehicle routing in a Spanish distribution company: Saving using a savings-based heuristic.,2013,26,OR Insight,3,db/journals/ori/ori26.html#GrasasCLJR13,https://doi.org/10.1057/ori.2013.2 +Gillian Jack,To Change or not to Change? That is but one of the questions A Change Management Position Paper.,2007,20,OR Insight,3,db/journals/ori/ori20.html#JackC07,https://doi.org/10.1057/ori.2007.14 +Jacob Stolk,Combining vehicle routing and packing for optimal delivery schedules of water tanks.,2013,26,OR Insight,3,db/journals/ori/ori26.html#StolkMMM13,https://doi.org/10.1057/ori.2013.1 +Nurcan Temiz,The use of GIS and multi-criteria decision-making as a decision tool in forestry.,2009,22,OR Insight,2,db/journals/ori/ori22.html#TemizT09,https://doi.org/10.1057/ori.2008.8 +Zoraida Mendiwelso Bendek,The Take Part Learning Framework and Networks.,2007,20,OR Insight,2,db/journals/ori/ori20.html#BendekH07,https://doi.org/10.1057/ori.2007.12 +John Albiston,Using product segmentation to improve supply chain management in Tata Steel.,2012,25,OR Insight,3,db/journals/ori/ori25.html#AlbistonC12,https://doi.org/10.1057/ori.2012.6 +Simon A. Burtonshaw-Gunn,Management Consultancy performance: Personal reflections on Knowledge Management and Networking in contributing to Added-value.,2008,21,OR Insight,1,db/journals/ori/ori21.html#Burtonshaw-Gunn08,https://doi.org/10.1057/ori.2008.55 +David Bamford,Understanding operational strategies by examining quality deposits.,2010,23,OR Insight,1,db/journals/ori/ori23.html#BamfordG10,https://doi.org/10.1057/ori.2009.13 +Tristan Barnett,Predicting a tennis match in progress for sports multimedia.,2011,24,OR Insight,3,db/journals/ori/ori24.html#BarnettOB11,https://doi.org/10.1057/ori.2011.7 +Nang Laik Ma,Evaluation of operational plans in container terminal yards using Discrete-Event Simulation.,2008,21,OR Insight,4,db/journals/ori/ori21.html#MAH08,https://doi.org/10.1057/ori.2008.16 +Rebecca Herron,Take Part: Active Learning for Active Citizenship Contributing to Community O.R. Reflections and Practices.,2007,20,OR Insight,2,db/journals/ori/ori20.html#HerronB07,https://doi.org/10.1057/ori.2007.7 +Donna L. Hudson,Diagnostic models based on personalized analysis of trends (PAT).,2010,14,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb14.html#HudsonC10,https://doi.org/10.1109/TITB.2009.2031640 +Mario Merone,A Decision Support System for Tele-Monitoring COPD-Related Worrisome Events.,2017,21,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb21.html#MeronePCIS17,https://doi.org/10.1109/JBHI.2017.2654682 +Sebastián R. Vanrell,Assessment of Homomorphic Analysis for Human Activity Recognition From Acceleration Signals.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#VanrellMR18,https://doi.org/10.1109/JBHI.2017.2722870 +David J. Foran,Compression guidelines for diagnostic telepathology.,1997,1,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb1.html#ForanMPM97,https://doi.org/10.1109/4233.594046 +Hanna Pohjonen,Pervasive Access to Images and Data-The Use of Computing Grids and Mobile/Wireless Devices Across Healthcare Enterprises.,2007,11,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb11.html#PohjonenRBK07,https://doi.org/10.1109/TITB.2006.885548 +Ruey-Feng Chang,3-D snake for US in margin evaluation for malignant breast tumor excision using mammotome.,2003,7,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb7.html#ChangWTCM03,https://doi.org/10.1109/TITB.2003.816560 +Verena Huppert,Quantification of Nighttime Micturition With an Ambulatory Sensor-Based System.,2016,20,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb20.html#HuppertPPBWE16,https://doi.org/10.1109/JBHI.2015.2421487 +Alexander Wong,Automatic Skin Lesion Segmentation via Iterative Stochastic Region Merging.,2011,15,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb15.html#WongSF11,https://doi.org/10.1109/TITB.2011.2157829 +Stamos Katsigiannis,MIGS-GPU: Microarray Image Gridding and Segmentation on the GPU.,2017,21,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb21.html#KatsigiannisZM17,https://doi.org/10.1109/JBHI.2016.2537922 +Alfredo Burgos,Real-time detection of apneas on a PDA.,2010,14,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb14.html#BurgosGIB10,https://doi.org/10.1109/TITB.2009.2034975 +Xiaobo Zhou 0001,A Novel Cell Segmentation Method and Cell Phase Identification Using Markov Model.,2009,13,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb13.html#ZhouLYW09,https://doi.org/10.1109/TITB.2008.2007098 +Huyen Vu,Automatic Detection and Parameterization of Manual Bag-Mask Ventilation on Newborns.,2017,21,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb21.html#VuEEEYLE17,https://doi.org/10.1109/JBHI.2016.2518238 +U. Rajendra Acharya,Compact storage of medical images with patient information.,2001,5,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb5.html#AcharyaABN01,https://doi.org/10.1109/4233.966107 +Jincheng Pang,On the Use of Coupled Shape Priors for Segmentation of Magnetic Resonance Images of the Knee.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#PangDMTFM15,https://doi.org/10.1109/JBHI.2014.2329493 +Daniel P. Lorence,Incremental adoption of information security in health-care organizations: implications for document management.,2005,9,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb9.html#LorenceC05,https://doi.org/10.1109/TITB.2005.847137 +Jesús Lázaro 0002,Pulse Rate Variability Analysis for Discrimination of Sleep-Apnea-Related Decreases in the Amplitude Fluctuations of Pulse Photoplethysmographic Signal in Children.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#LazaroGVL14,https://doi.org/10.1109/JBHI.2013.2267096 +Mikko Peltokangas,Night-Time EKG and HRV Monitoring With Bed Sheet Integrated Textile Electrodes.,2012,16,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb16.html#PeltokangasVV12,https://doi.org/10.1109/TITB.2012.2208982 +H. N. Bharath,Nonnegative Canonical Polyadic Decomposition for Tissue-Type Differentiation in Gliomas.,2017,21,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb21.html#BharathSSHLH17,https://doi.org/10.1109/JBHI.2016.2583539 +Chung-Chih Lin,A Healthcare Integration System for Disease Assessment and Safety Monitoring of Dementia Patients.,2008,12,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb12.html#LinLLHLL08,https://doi.org/10.1109/TITB.2008.917914 +William E. Baughman,Observation of Hydrofluoric Acid Burns on Osseous Tissues by Means of Terahertz Spectroscopic Imaging.,2013,17,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb17.html#BaughmanYBWKK13,https://doi.org/10.1109/JBHI.2013.2243158 +Gulden Olgun,Local Object Patterns for the Representation and Classification of Colon Tissue Images.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#OlgunSD14,https://doi.org/10.1109/JBHI.2013.2281335 +Deepak Roy Chittajallu,An Explicit Shape-Constrained MRF-Based Contour Evolution Method for 2-D Medical Image Segmentation.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#ChittajalluPK14,https://doi.org/10.1109/JBHI.2013.2257820 +Alexander Wong,An adaptive Monte Carlo approach to phase-based multimodal image registration.,2010,14,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb14.html#Wong10,https://doi.org/10.1109/TITB.2009.2035693 +Chaoyang Shi,Three-Dimensional Intravascular Reconstruction Techniques Based on Intravascular Ultrasound: A Technical Review.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#ShiLGNF018,https://doi.org/10.1109/JBHI.2017.2703903 +Sohini Roychowdhury,Optic Disc Boundary and Vessel Origin Segmentation of Fundus Images.,2016,20,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb20.html#RoychowdhuryKKP16,https://doi.org/10.1109/JBHI.2015.2473159 +Rita Paradiso,A wearable health care system based on knitted integrated sensors.,2005,9,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb9.html#ParadisoLT05,https://doi.org/10.1109/TITB.2005.854512 +Vitaly Schetinin,The combined technique for detection of artifacts in clinical electroencephalograms of sleeping newborns.,2004,8,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb8.html#SchetininS04,https://doi.org/10.1109/TITB.2004.824735 +Wamiq Manzoor Ahmed,XML-Based Data Model and Architecture for a Knowledge-Based Grid-Enabled Problem-Solving Environment for High-Throughput Biological Imaging.,2008,12,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb12.html#AhmedLLRG08,https://doi.org/10.1109/TITB.2007.904153 +Ran Tao,A Comparison of US- Versus MR-Based 3-D Prostate Shapes Using Radial Basis Function Interpolation and Statistical Shape Models.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#TaoTSU15,https://doi.org/10.1109/JBHI.2014.2324975 +Xiaoqian Xu,A Spine X-Ray Image Retrieval System Using Partial Shape Matching.,2008,12,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb12.html#XuLAL08,https://doi.org/10.1109/TITB.2007.904149 +Massimo Barbaro,Active devices based on organic semiconductors for wearable applications.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#BarbaroCCMB10,https://doi.org/10.1109/TITB.2010.2044798 +Vahid R. Dehkordi,A Channel Differential EZW Coding Scheme for EEG Data Compression.,2011,15,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb15.html#DehkordiDL11,https://doi.org/10.1109/TITB.2011.2171703 +Mohd Fadlee A. Rasid,Bluetooth telemedicine Processor for multichannel biomedical signal transmission via mobile cellular networks.,2005,9,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb9.html#RasidW05,https://doi.org/10.1109/TITB.2004.840070 +Filip Velickovski,Automated Spirometry Quality Assurance: Supervised Learning From Multiple Experts.,2018,22,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb22.html#VelickovskiCMBG18,https://doi.org/10.1109/JBHI.2017.2713988 +M. Barr,An Automated Tissue Preclassification Approach for Telepathology: Implementation and Performance Analysis.,2004,8,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb8.html#BarrMWV04,https://doi.org/10.1109/TITB.2004.828880 +Jin-Oh Hahn,Individualized Estimation of the Central Aortic Blood Pressure Waveform: A Comparative Study.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#Hahn14,https://doi.org/10.1109/JBHI.2013.2262945 +James Alexander Tyrrell,Efficient Migration of Complex Off-Line Computer Vision Software to Real-Time System Implementation on Generic Computer Hardware.,2004,8,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb8.html#TyrrellLCRS04,https://doi.org/10.1109/TITB.2004.828883 +Thomas Drugman,Objective Study of Sensor Relevance for Automatic Cough Detection.,2013,17,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb17.html#DrugmanUBCVLD13,https://doi.org/10.1109/JBHI.2013.2239303 +Markos G. Tsipouras,Automated Diagnosis of Coronary Artery Disease Based on Data Mining and Fuzzy Modeling.,2008,12,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb12.html#TsipourasEFKVNM08,https://doi.org/10.1109/TITB.2007.907985 +Maria Filomena Santarelli,Combining high-performance computing and networking for advanced 3-D cardiac imaging.,2000,4,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb4.html#SantarelliPL00,https://doi.org/10.1109/4233.826860 +Bozidara Cvetkovic,Estimating Energy Expenditure With Multiple Models Using Different Wearable Sensors.,2016,20,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb20.html#CvetkovicML16,https://doi.org/10.1109/JBHI.2015.2432911 +Hannu Lamminen,A three-year follow-up of Finnish telemedicine programs.,2001,5,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb5.html#LamminenSRR01,https://doi.org/10.1109/4233.924808 +Lin Shi,Fast and accurate 3-D registration of HR-pQCT images.,2010,14,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb14.html#ShiWHYGCHCQ10,https://doi.org/10.1109/TITB.2010.2061234 +Tomás Teijeiro,Heartbeat Classification Using Abstract Features From the Abductive Interpretation of the ECG.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#TeijeiroFPC18,https://doi.org/10.1109/JBHI.2016.2631247 +Sergio Cerutti,Guest editorial: special section on smart wearable devices for human health and protection.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#CeruttiMB10,https://doi.org/10.1109/TITB.2010.2048937 +Shanshan Chen,Toward Pervasive Gait Analysis With Wearable Sensors: A Systematic Review.,2016,20,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb20.html#ChenLLY16,https://doi.org/10.1109/JBHI.2016.2608720 +Qi Zhang,GPU-Based Visualization and Synchronization of 4-D Cardiac MR and Ultrasound Images.,2012,16,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb16.html#ZhangEP12,https://doi.org/10.1109/TITB.2012.2205011 +Melissa Berthelot,A Self-Calibrated Tissue Viability Sensor for Free Flap Monitoring.,2018,22,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb22.html#BerthelotYL18,https://doi.org/10.1109/JBHI.2017.2773998 +Avan Suinesiaputra,Big Heart Data: Advancing Health Informatics Through Data Sharing in Cardiovascular Imaging.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#SuinesiaputraMC15,https://doi.org/10.1109/JBHI.2014.2370952 +Junhua Li,Canonical Polyadic Decomposition With Auxiliary Information for Brain-Computer Interface.,2017,21,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb21.html#LiLC17,https://doi.org/10.1109/JBHI.2015.2491645 +Jinn-Rung Kuo,Hypoxic-State Estimation of Brain Cells by Using Wireless Near-Infrared Spectroscopy.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#KuoLCC14,https://doi.org/10.1109/JBHI.2013.2261310 +Yu-Liang Hsu,Gait and Balance Analysis for Patients With Alzheimer's Disease Using an Inertial-Sensor-Based Wearable Instrument.,2014,18,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb18.html#HsuCWPWLWW14,https://doi.org/10.1109/JBHI.2014.2325413 +Belhassen Bayar,SMURC: High-Dimension Small-Sample Multivariate Regression With Covariance Estimation.,2017,21,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb21.html#BayarBS17,https://doi.org/10.1109/JBHI.2016.2515993 +Ivo D. Dinov,Quantitative comparison and analysis of brain image registration using frequency-adaptive wavelet shrinkage.,2002,6,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb6.html#DinovMTWSST02,https://doi.org/10.1109/4233.992165 +Vinay Venkataraman,Component-Level Tuning of Kinematic Features From Composite Therapist Impressions of Movement Quality.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#VenkataramanTBL16,https://doi.org/10.1109/JBHI.2014.2375206 +Ankur Agarwal,A Natural Language Processing Framework for Assessing Hospital Readmissions for Patients With COPD.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#AgarwalBBZ18,https://doi.org/10.1109/JBHI.2017.2684121 +Kijun Kim,Adaptive Compressed Sensing for the Fast Terahertz Reflection Tomography.,2013,17,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb17.html#KimLHKLASP13,https://doi.org/10.1109/JBHI.2013.2250511 +Antonio Celesti,An OAIS-Based Hospital Information System on the Cloud: Analysis of a NoSQL Column-Oriented Approach.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#CelestiFRBBV18,https://doi.org/10.1109/JBHI.2017.2681126 +Jing Liao,Using the Dempster-Shafer Theory of Evidence With a Revised Lattice Structure for Activity Recognition.,2011,15,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb15.html#LiaoBN11,https://doi.org/10.1109/TITB.2010.2091684 +D. A. Alexandrou,A Holistic Environment for the Design and Execution of Self-Adaptive Clinical Pathways.,2011,15,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb15.html#AlexandrouSM11,https://doi.org/10.1109/TITB.2010.2074205 +Vincent Breton,Grid-Added Value to Address Malaria.,2008,12,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb12.html#BretonJKH08,https://doi.org/10.1109/TITB.2007.895930 +Cheng Lu,Automated Segmentation of the Melanocytes in Skin Histopathological Images.,2013,17,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb17.html#LuMJM13,https://doi.org/10.1109/TITB.2012.2199595 +Hamidreza Azimian,A Chance-Constrained Programming Approach to Preoperative Planning of Robotic Cardiac Surgery Under Task-Level Uncertainty.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#AzimianNKP15,https://doi.org/10.1109/JBHI.2014.2315798 +Hongliang Ren 0001,Treatment Planning and Image Guidance for Radiofrequency Ablation of Large Tumors.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#RenCYBAHC14,https://doi.org/10.1109/JBHI.2013.2287202 +Mila Kwiatkowska,Knowledge-Based Data Analysis: First Step Toward the Creation of Clinical Prediction Rules Using a New Typicality Measure.,2007,11,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb11.html#KwiatkowskaAAR07,https://doi.org/10.1109/TITB.2006.889693 +Sasan Adibi,Link Technologies and BlackBerry Mobile Health (mHealth) Solutions: A Review.,2012,16,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb16.html#Adibi12,https://doi.org/10.1109/TITB.2012.2191295 +Murat Kantarcioglu,A Cryptographic Approach to Securely Share and Query Genomic Sequences.,2008,12,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb12.html#KantarciogluJLM08,https://doi.org/10.1109/TITB.2007.908465 +Wei-Ling Chen,A Rule-Based Decision-Making Diagnosis System to Evaluate Arteriovenous Shunt Stenosis for Hemodialysis Treatment of Patients Using Fuzzy Petri Nets.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#ChenKLC14,https://doi.org/10.1109/JBHI.2013.2279595 +Mozziyar Etemadi,Rapid Assessment of Cardiac Contractility on a Home Bathroom Scale.,2011,15,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb15.html#EtemadiIGK11,https://doi.org/10.1109/TITB.2011.2161998 +Liviu Constantinescu,SparkMed: A Framework for Dynamic Integration of Multimedia Medical Data Into Distributed m-Health Systems.,2012,16,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb16.html#ConstantinescuKF12,https://doi.org/10.1109/TITB.2011.2174064 +Changtao Qu,Semantics-Enabled Service Discovery Framework in the SIMDAT Pharma Grid.,2008,12,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb12.html#QuZKKLH08,https://doi.org/10.1109/TITB.2007.907987 +Y. Huang,Feature Selection and Classification in Supporting Report-Based Self-Management for People with Chronic Pain.,2011,15,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb15.html#HuangZNMBVM11,https://doi.org/10.1109/TITB.2010.2091510 +Guang-Zhong Yang,From the New Editor.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#Yang14,https://doi.org/10.1109/JBHI.2013.2294217 +Shirley Coyle,BIOTEX: biosensing textiles for personalized healthcare management.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#CoyleLMODFCSTRTPPRLCLRSMCCDB10,https://doi.org/10.1109/TITB.2009.2038484 +Sepideh Hajipour Sardouie,Denoising of Ictal EEG Data Using Semi-Blind Source Separation Methods Based on Time-Frequency Priors.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#SardouieSAM15,https://doi.org/10.1109/JBHI.2014.2336797 +Shadnaz Asgari,A robust approach toward recognizing valid arterial-blood-pressure pulses.,2010,14,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb14.html#AsgariBH10,https://doi.org/10.1109/TITB.2009.2034845 +Jose Maria Perez-Macias,Detection of Snores Using Source Separation on an Emfit Signal.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#Perez-MaciasTVH18,https://doi.org/10.1109/JBHI.2017.2757530 +Vadrevu Sree Hari Rao,A New Intelligence-Based Approach for Computer-Aided Diagnosis of Dengue Fever.,2012,16,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb16.html#RaoK12,https://doi.org/10.1109/TITB.2011.2171978 +álvaro Alesanco Iglesias,Clinical assessment of wireless ECG transmission in real-time cardiac telemonitoring.,2010,14,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb14.html#IglesiasG10,https://doi.org/10.1109/TITB.2010.2047650 +Marios Anthimopoulos,A Food Recognition System for Diabetic Patients Based on an Optimized Bag-of-Features Model.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#AnthimopoulosGSDM14,https://doi.org/10.1109/JBHI.2014.2308928 +Enrique Alexandre,On the Use of 2-D Coding Techniques for ECG Signals.,2006,10,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb10.html#AlexandrePS06,https://doi.org/10.1109/TITB.2006.874926 +Peter Pesl,An Advanced Bolus Calculator for Type 1 Diabetes: System Architecture and Usability Results.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#PeslHRXOJTG16,https://doi.org/10.1109/JBHI.2015.2464088 +Konstantina Kourou,Integration of Pathway Knowledge and Dynamic Bayesian Networks for the Prediction of Oral Cancer Recurrence.,2017,21,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb21.html#KourouPF17,https://doi.org/10.1109/JBHI.2016.2636448 +Raul I. Ramos-Garcia,Improving the Recognition of Eating Gestures Using Intergesture Sequential Dependencies.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#Ramos-GarciaMGH15,https://doi.org/10.1109/JBHI.2014.2329137 +Rasoul Yousefi,Separating Arterial and Venous-Related Components of Photoplethysmographic Signals for Accurate Extraction of Oxygen Saturation and Respiratory Rate.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#YousefiN15,https://doi.org/10.1109/JBHI.2014.2334697 +M. Shamim Hossain,Guest EditorialMultimedia Services and Technologies for E-Health (MUST-EH).,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#HossainGE12,https://doi.org/10.1109/TITB.2012.2225260 +Nadia Magnenat-Thalmann,A computational skin model: fold and wrinkle formation.,2002,6,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb6.html#Magnenat-ThalmannKLBBQ02,https://doi.org/10.1109/TITB.2002.806097 +Caroline B. Reid,Terahertz Time-Domain Spectroscopy of Human Blood.,2013,17,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb17.html#ReidRGW13,https://doi.org/10.1109/JBHI.2013.2255306 +Tomohiro Kuroda,Embedded Ubiquitous Services on Hospital Information Systems.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#KurodaSSMYHOTCY12,https://doi.org/10.1109/TITB.2012.2210434 +N. Lofgren,Remote sessions and frequency analysis for improved insight into cerebral function during pediatric and neonatal intensive care.,2003,7,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb7.html#LofgrenLTHWAFK03,https://doi.org/10.1109/TITB.2003.821330 +Nabil Alshurafa,Improving Compliance in Remote Healthcare Systems Through Smartphone Battery Optimization.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#AlshurafaENLXGPS15,https://doi.org/10.1109/JBHI.2014.2329712 +Min Jing,Temporal Changes of Diffusion Patterns in Mild Traumatic Brain Injury via Group-Based Semi-blind Source Separation.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#JingMCFK15,https://doi.org/10.1109/JBHI.2014.2352119 +Owais Ahmed Malik,An Intelligent Recovery Progress Evaluation System for ACL Reconstructed Subjects Using Integrated 3-D Kinematics and EMG Features.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#MalikSZ15,https://doi.org/10.1109/JBHI.2014.2320408 +Yuchun Tang,Recursive Fuzzy Granulation for Gene Subsets Extraction and Cancer Classification.,2008,12,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb12.html#TangZHHZ08,https://doi.org/10.1109/TITB.2008.920787 +Behdad Dehbandi,Using Data From the Microsoft Kinect 2 to Quantify Upper Limb Behavior: A Feasibility Study.,2017,21,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb21.html#DehbandiBHLTBHP17,https://doi.org/10.1109/JBHI.2016.2606240 +Giuseppe Riva,Virtual-reality-based multidimensional therapy for the treatment of body image disturbances in binge eating disorders: a preliminary controlled study.,2002,6,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb6.html#RivaBBM02,https://doi.org/10.1109/TITB.2002.802372 +Yuko Mizuno-Matsumoto,Telemedicine for evaluation of brain function by a metacomputer.,2000,4,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb4.html#Mizuno-MatsumotoDTTSZSKTNSTIM00,https://doi.org/10.1109/4233.845210 +G. H. M. B. Motta,A contextual role-based access control authorization model for electronic patient record.,2003,7,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb7.html#MottaF03,https://doi.org/10.1109/TITB.2003.816562 +Themis P. Exarchos,EEG Transient Event Detection and Classification Using Association Rules.,2006,10,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb10.html#ExarchosTFKG06,https://doi.org/10.1109/TITB.2006.872067 +Asuman Dogac,Collaborative Business Process Support in eHealth: Integrating IHE Profiles Through ebXML Business Process Specification Language.,2008,12,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb12.html#DogacKNO08,https://doi.org/10.1109/TITB.2008.926465 +Rifai Chai,Brain-Computer Interface Classifier for Wheelchair Commands Using Neural Network With Fuzzy Particle Swarm Optimization.,2014,18,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb18.html#ChaiLHTN14,https://doi.org/10.1109/JBHI.2013.2295006 +Lukasz Czekierda,Evolutionary Approach to Development of Collaborative Teleconsultation System for Imaging Medicine.,2012,16,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb16.html#CzekierdaMZ12,https://doi.org/10.1109/TITB.2012.2194506 +Guilherme Del Fiol,An XML model that enables the development of complex order sets by clinical experts.,2005,9,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb9.html#FiolRBHR05,https://doi.org/10.1109/TITB.2005.847200 +Thitiporn Chanwimaluang,3-D Retinal Curvature Estimation.,2009,13,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb13.html#ChanwimaluangFYF09,https://doi.org/10.1109/TITB.2009.2027014 +Paula de Toledo,Predicting the Outcome of Patients With Subarachnoid Hemorrhage Using Machine Learning Techniques.,2009,13,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb13.html#ToledoRLSAL09,https://doi.org/10.1109/TITB.2009.2020434 +Jenna Marie Reps,A Novel Semisupervised Algorithm for Rare Prescription Side Effect Discovery.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#RepsGASGH14,https://doi.org/10.1109/JBHI.2013.2281505 +Michael Cheffena,Fall Detection Using Smartphone Audio Features.,2016,20,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb20.html#Cheffena16,https://doi.org/10.1109/JBHI.2015.2425932 +Jianchu Yao,A wearable point-of-care system for home use that incorporates plug-and-play and wireless standards.,2005,9,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb9.html#YaoSW05,https://doi.org/10.1109/TITB.2005.854507 +Ganesh R. Naik,Nonnegative Matrix Factorization for the Identification of EMG Finger Movements: Evaluation Using Matrix Analysis.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#NaikN15,https://doi.org/10.1109/JBHI.2014.2326660 +Richard A. Foulds,Piecewise Parametric Interpolation for Temporal Compression of Multijoint Movement Trajectories.,2006,10,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb10.html#Foulds06,https://doi.org/10.1109/TITB.2005.855496 +Sebastian Thelen,Using off-the-Shelf Medical Devices for Biomedical Signal Monitoring in a Telemedicine System for Emergency Medical Services.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#ThelenCMSJ15,https://doi.org/10.1109/JBHI.2014.2361775 +Tomi Miettinen,Success Rate and Technical Quality of Home Polysomnography With Self-Applicable Electrode Set in Subjects With Possible Sleep Bruxism.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#MiettinenMWAHTL18,https://doi.org/10.1109/JBHI.2017.2741522 +Daniele Ravì,A Deep Learning Approach to on-Node Sensor Data Analytics for Mobile or Wearable Devices.,2017,21,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb21.html#RaviWLY17,https://doi.org/10.1109/JBHI.2016.2633287 +Nikhil S. Narayan,Speckle Patch Similarity for Echogenicity-Based Multiorgan Segmentation in Ultrasound Images of the Thyroid Gland.,2017,21,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb21.html#NarayanMKH17,https://doi.org/10.1109/JBHI.2015.2492476 +Pradeep D. Prasad,Single-Trial EEG Classification Using Logistic Regression Based on Ensemble Synchronization.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#PrasadHJM14,https://doi.org/10.1109/JBHI.2013.2289741 +Dean M. Karantonis,Implementation of a Real-Time Human Movement Classifier Using a Triaxial Accelerometer for Ambulatory Monitoring.,2006,10,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb10.html#KarantonisNMLC06,https://doi.org/10.1109/TITB.2005.856864 +Huidong Jin,Mining Unexpected Temporal Associations: Applications in Detecting Adverse Drug Reactions.,2008,12,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb12.html#JinCHWKO08,https://doi.org/10.1109/TITB.2007.900808 +Jun Deng,Using a Dynamic Tracking Filter to Extract Distortion-Product Otoacoustic Emissions Evoked With Swept-Tone Signals.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#DengCZL14,https://doi.org/10.1109/JBHI.2013.2285558 +Lin Yang,PathMiner: A Web-Based Tool for Computer-Assisted Diagnostics in Pathology.,2009,13,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb13.html#YangTCMSGF09,https://doi.org/10.1109/TITB.2008.2008801 +Hongliang Ren 0001,Multisensor Data Fusion in an Integrated Tracking System for Endoscopic Surgery.,2012,16,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb16.html#RenRMSK12,https://doi.org/10.1109/TITB.2011.2164088 +Varun Bajaj,Classification of Seizure and Nonseizure EEG Signals Using Empirical Mode Decomposition.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#BajajP12,https://doi.org/10.1109/TITB.2011.2181403 +Chang-Yu Wang,Fuzzy Logic-Based Prognostic Score for Outcome Prediction in Esophageal Cancer.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#WangLFC12,https://doi.org/10.1109/TITB.2012.2211374 +Yin Wang,Automatic Segmentation of Coronary Arteries in CT Imaging in the Presence of Kissing Vessel Artifacts.,2012,16,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb16.html#WangL12,https://doi.org/10.1109/TITB.2012.2192286 +Francesco Amigoni,Combining Rate-Adaptive Cardiac Pacing Algorithms Via Multiagent Negotiation.,2006,10,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb10.html#AmigoniBG06,https://doi.org/10.1109/TITB.2005.855564 +Panayiotis Korfiatis,Vessel Tree Segmentation in Presence of Interstitial Lung Disease in MDCT.,2011,15,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb15.html#KorfiatisKKKC11,https://doi.org/10.1109/TITB.2011.2112668 +Sediqeh Samadi,Meal Detection and Carbohydrate Estimation Using Continuous Glucose Sensor Data.,2017,21,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb21.html#SamadiTHFSC17,https://doi.org/10.1109/JBHI.2017.2677953 +Qammer H. Abbasi,Numerical Characterization and Modeling of Subject-Specific Ultrawideband Body-Centric Radio Channels and Systems for Healthcare Applications.,2012,16,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb16.html#AbbasiSAH12,https://doi.org/10.1109/TITB.2011.2177526 +Amjed S. Al-Fahoum,Perceptually tuned JPEG coder for echocardiac image compression.,2004,8,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb8.html#Al-FahoumR04,https://doi.org/10.1109/TITB.2004.832545 +Tong-Yee Lee,Interactive 3-D virtual colonoscopy system.,1999,3,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb3.html#LeeLLSL99,https://doi.org/10.1109/4233.767089 +Barry R. Greene,Assessment and Classification of Early-Stage Multiple Sclerosis With Inertial Sensors: Comparison Against Clinical Measures of Disease State.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#GreeneRMMOCT15,https://doi.org/10.1109/JBHI.2015.2435057 +David Dagan Feng,Guest editorial: multimedia information technology in biomedicine.,2000,4,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb4.html#Feng00,https://doi.org/10.1109/TITB.2000.845200 +Javier Milagro,Nocturnal Heart Rate Variability Spectrum Characterization in Preschool Children With Asthmatic Symptoms.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#MilagroGLSMPKMV18,https://doi.org/10.1109/JBHI.2017.2775059 +Pawel Turcza,Hardware-Efficient Low-Power Image Processing System for Wireless Capsule Endoscopy.,2013,17,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb17.html#TurczaD13,https://doi.org/10.1109/JBHI.2013.2266101 +Elham Dolatabadi,Mixture-Model Clustering of Pathological Gait Patterns.,2017,21,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb21.html#DolatabadiMPTM17,https://doi.org/10.1109/JBHI.2016.2633000 +Shiori Oshima,Development of Red Blood Cell-Photon Simulator for Optical Propagation Analysis in Blood using Monte Carlo Method.,2011,15,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb15.html#OshimaS11,https://doi.org/10.1109/TITB.2011.2116797 +S. M. Shafiul Alam,Detection of Seizure and Epilepsy Using Higher Order Statistics in the EMD Domain.,2013,17,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb17.html#AlamB13,https://doi.org/10.1109/JBHI.2012.2237409 +Jiangwen Sun,Multiview Comodeling to Improve Subtyping and Genetic Association of Complex Diseases.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#SunBK14,https://doi.org/10.1109/JBHI.2013.2281362 +Guanjin Wang,Tackling Missing Data in Community Health Studies Using Additive LS-SVM Classifier.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#WangDC18,https://doi.org/10.1109/JBHI.2016.2634587 +Xiangtao Li,Multiobjective Patient Stratification Using Evolutionary Multiobjective Optimization.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#LiW18,https://doi.org/10.1109/JBHI.2017.2769711 +Ali Asghar Nazari Shirehjini,Equipment Location in Hospitals Using RFID-Based Positioning System.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#ShirehjiniYS12,https://doi.org/10.1109/TITB.2012.2204896 +Ricardo Santiago-Mozos,An Automated Screening System for Tuberculosis.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#Santiago-MozosPMA14,https://doi.org/10.1109/JBHI.2013.2282874 +Cristina Soguero-Ruíz,Support Vector Feature Selection for Early Detection of Anastomosis Leakage From Bag-of-Words in Electronic Health Records.,2016,20,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb20.html#Soguero-RuizHRS16,https://doi.org/10.1109/JBHI.2014.2361688 +Christoph Brüser,Automatic Detection of Atrial Fibrillation in Cardiac Vibration Signals.,2013,17,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb17.html#BruserDZWSL13,https://doi.org/10.1109/TITB.2012.2225067 +Jianpeng Zhang,Classification of Medical Images in the Biomedical Literature by Jointly Using Deep and Handcrafted Visual Features.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#ZhangXXFF18,https://doi.org/10.1109/JBHI.2017.2775662 +Pratool Bharti,Watch-Dog: Detecting Self-Harming Activities From Wrist Worn Accelerometers.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#BhartiPGC18,https://doi.org/10.1109/JBHI.2017.2692179 +Andreas Tobola,Self-Powered Multiparameter Health Sensor.,2018,22,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb22.html#TobolaLPSHWEF18,https://doi.org/10.1109/JBHI.2017.2708041 +Andrey Temko,EEG Signal Description with Spectral-Envelope-Based Speech Recognition Features for Detection of Neonatal Seizures.,2011,15,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb15.html#TemkoNMBL11,https://doi.org/10.1109/TITB.2011.2159805 +Kenneth Hung,Enhancement of Initial Equivalency for Protein Structure Alignment Based on Encoded Local Structures.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#HungWCCTC12,https://doi.org/10.1109/TITB.2012.2204892 +P. Z. Rashev,Application of an object-oriented programming paradigm in three-dimensional computer modeling of mechanically active gastrointestinal tissues.,2000,4,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb4.html#RashevMB00,https://doi.org/10.1109/4233.870035 +Ruikai Zhang,Automatic Detection and Classification of Colorectal Polyps by Transferring Low-Level CNN Features From Nonmedical Domain.,2017,21,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb21.html#ZhangZMYWLP17,https://doi.org/10.1109/JBHI.2016.2635662 +Roberto Annunziata,Leveraging Multiscale Hessian-Based Enhancement With a Novel Exudate Inpainting Technique for Retinal Vessel Segmentation.,2016,20,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb20.html#AnnunziataGBMT16,https://doi.org/10.1109/JBHI.2015.2440091 +Fabio Kurt Schneider,A fully programmable computing architecture for medical ultrasound machines.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#SchneiderAYFK10,https://doi.org/10.1109/TITB.2009.2025653 +Sheau-Ling Hsieh,Semantic Similarity Measures in the Biomedical Domain by Leveraging a Web Search Engine.,2013,17,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb17.html#HsiehCCW13,https://doi.org/10.1109/JBHI.2013.2257815 +D. P. Allen,Detecting Reduced Bone Mineral Density From Dental Radiographs Using Statistical Shape Models.,2007,11,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb11.html#AllenGFHJNLSHD07,https://doi.org/10.1109/TITB.2006.888704 +Adiwinata Gani,Universal glucose models for predicting subcutaneous glucose concentration in humans.,2010,14,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb14.html#GaniGLWVR10,https://doi.org/10.1109/TITB.2009.2034141 +Louis Atallah,Unobtrusive Monitoring of Neonatal Brain Temperature Using a Zero-Heat-Flux Sensor Matrix.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#AtallahBLB16,https://doi.org/10.1109/JBHI.2014.2385103 +Wei Chun Ung,Effectiveness Evaluation of Real-Time Scalp Signal Separating Algorithm on Near-Infrared Spectroscopy Neurofeedback.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#UngFKSTHK18,https://doi.org/10.1109/JBHI.2017.2723024 +Dilpreet Buxi,Systolic Time Interval Estimation Using Continuous Wave Radar With On-Body Antennas.,2018,22,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb22.html#BuxiHMBWTRY18,https://doi.org/10.1109/JBHI.2017.2731790 +Carey R. Merritt,Fabric-Based Active Electrode Design and Fabrication for Health Monitoring Clothing.,2009,13,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb13.html#MerrittNG09,https://doi.org/10.1109/TITB.2009.2012408 +Victor Sanchez,Novel Lossless fMRI Image Compression Based on Motion Compensation and Customized Entropy Coding.,2009,13,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb13.html#SanchezNA09,https://doi.org/10.1109/TITB.2009.2021159 +Areti Manataki,A Workflow-Driven Formal Methods Approach to the Generation of Structured Checklists for Intrahospital Patient Transfers.,2017,21,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb21.html#ManatakiFP17,https://doi.org/10.1109/JBHI.2016.2579881 +Li-Wei H. Lehman,A Physiological Time Series Dynamics-Based Approach to Patient Monitoring and Outcome Prediction.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#LehmanAMMMMN15,https://doi.org/10.1109/JBHI.2014.2330827 +Nicolas Aristokleous,Impact of Head Rotation on the Individualized Common Carotid Flow and Carotid Bifurcation Hemodynamics.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#AristokleousSGPBNA14,https://doi.org/10.1109/JBHI.2014.2305575 +Dandan Liang,Increasing the Signal-to-Noise Ratio by Using Vertically Stacked Phased Array Coils for Low-Field Magnetic Resonance Imaging.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#LiangHY12,https://doi.org/10.1109/TITB.2012.2197633 +Darwin Tay,The Effect of Sample Age and Prediction Resolution on Myocardial Infarction Risk Prediction.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#TayPRK15,https://doi.org/10.1109/JBHI.2014.2330898 +Alberto Greco,Electrodermal Activity in Bipolar Patients during Affective Elicitation.,2014,18,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb18.html#GrecoVLRS14,https://doi.org/10.1109/JBHI.2014.2300940 +Kyungtae Kang,A Medical-Grade Wireless Architecture for Remote Electrocardiography.,2011,15,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb15.html#KangPSYS11,https://doi.org/10.1109/TITB.2011.2104365 +Xin Ma 0001,Depth-Based Human Fall Detection via Shape Features and Improved Extreme Learning Machine.,2014,18,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb18.html#MaWXZJL14,https://doi.org/10.1109/JBHI.2014.2304357 +Tong-Yee Lee,Three-dimensional facial model reconstruction and plastic surgery simulation.,1999,3,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb3.html#LeeSLLL99,https://doi.org/10.1109/4233.788583 +Nenad Filipovic,Hemodynamic Flow Modeling Through an Abdominal Aorta Aneurysm Using Data Mining Tools.,2011,15,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb15.html#FilipovicIKK11,https://doi.org/10.1109/TITB.2010.2096541 +George K. Matsopoulos,Automatic retinal image registration scheme using global optimization techniques.,1999,3,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb3.html#MatsopoulosMDN99,https://doi.org/10.1109/4233.748975 +George K. Matsopoulos,Image Registration Based on Lifting Process: An Application to Digital Subtraction Radiography.,2006,10,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb10.html#MatsopoulosMADGG06,https://doi.org/10.1109/TITB.2006.875683 +D. S. Obrosky,The Emergency Department Triage of Community-Acquired Pneumonia Project Data and Documentation Systems: A Model for Multicenter Clinical Trials.,2006,10,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb10.html#ObroskyEF06,https://doi.org/10.1109/TITB.2005.864369 +Marco Masseroli,X-PAT: A Multiplatform Patient Referral Data Management System for Small Healthcare Institution Requirements.,2008,12,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb12.html#MasseroliM08,https://doi.org/10.1109/TITB.2007.910359 +Shen-Chuan Tai,An adaptive 3-D discrete cosine transform coder for medical image compression.,2000,4,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb4.html#TaiWL00,https://doi.org/10.1109/4233.870036 +Heidi Similä,Accelerometry-Based Berg Balance Scale Score Estimation.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#SimilaMMLE14,https://doi.org/10.1109/JBHI.2013.2288940 +Yongli Wang,Fuzzy Reasoning of Accident Provenance in Pervasive Healthcare Monitoring Systems.,2013,17,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb17.html#WangH13,https://doi.org/10.1109/JBHI.2013.2274518 +H. Rudolph,Pain relief using smart technology: an overview of a new patient-controlled analgesia device.,1999,3,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb3.html#RudolphPCLM99,https://doi.org/10.1109/4233.748972 +Benjamin St. Peter,Development and Testing of a Single Frequency Terahertz Imaging System for Breast Cancer Detection.,2013,17,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb17.html#PeterYSKKGK13,https://doi.org/10.1109/JBHI.2013.2267351 +Behnaz Yousefi,Quantitative and Comparative Assessment of Learning in a Tongue-Operated Computer Input Device.,2011,15,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb15.html#YousefiHVG11,https://doi.org/10.1109/TITB.2011.2158608 +Majdi Bsoul,Apnea MedAssist: Real-time Sleep Apnea Monitor Using Single-Lead ECG.,2011,15,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb15.html#BsoulMT11,https://doi.org/10.1109/TITB.2010.2087386 +Annalisa Bonfiglio,Organic field effect transistors for textile applications.,2005,9,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb9.html#BonfiglioRKLMPV05,https://doi.org/10.1109/TITB.2005.854515 +Daniel Waltisberg,Detecting Disordered Breathing and Limb Movement Using In-Bed Force Sensors.,2017,21,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb21.html#WaltisbergABT17,https://doi.org/10.1109/JBHI.2016.2549938 +Wei Ji,Neural network-based assessment of prognostic markers and outcome prediction in bilharziasis-associated bladder cancer.,2003,7,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb7.html#JiNG03,https://doi.org/10.1109/TITB.2003.813796 +Gaetano Valenza,Characterization of Depressive States in Bipolar Patients Using Wearable Textile Technology and Instantaneous Heart Rate Variability Assessment.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#ValenzaCGLSB15,https://doi.org/10.1109/JBHI.2014.2307584 +Henry Rimminen,Detection of Falls Among the Elderly by a Floor Sensor Using the Electric Near Field.,2010,14,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb14.html#RimminenLLS10,https://doi.org/10.1109/TITB.2010.2051956 +Dongping Du,Statistical Metamodeling and Sequential Design of Computer Experiments to Model Glyco-Altered Gating of Sodium Channels in Cardiac Myocytes.,2016,20,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb20.html#Du0EB16,https://doi.org/10.1109/JBHI.2015.2458791 +Altug Akay,Network-Based Modeling and Intelligent Data Mining of Social Media for Improving Care.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#AkayDE15,https://doi.org/10.1109/JBHI.2014.2336251 +Niilo Saranummi,Editorial - IEEE Transactions on Information Technology in Biomedicine (T-ITB).,2003,7,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb7.html#Saranummi03,https://doi.org/10.1109/TITB.2003.822183 +Qinghua Shen,Exploiting Geo-Distributed Clouds for a E-Health Monitoring System With Minimum Service Delay and Privacy Preservation.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#ShenLSLL14,https://doi.org/10.1109/JBHI.2013.2292829 +Yi Wang,Part-Based Multiderivative Edge Cross-Sectional Profiles for Polyp Detection in Colonoscopy.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#WangTWOG14,https://doi.org/10.1109/JBHI.2013.2285230 +Stelios Krinidis,A global energy function for the alignment of serially acquired slices.,2003,7,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb7.html#KrinidisNP03,https://doi.org/10.1109/TITB.2003.811866 +Joshua Juen,A Natural Walking Monitor for Pulmonary Patients Using Mobile Phones.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#JuenCS15,https://doi.org/10.1109/JBHI.2015.2427511 +Kamuran Turksoy,Meal Detection in Patients With Type 1 Diabetes: A New Module for the Multivariable Adaptive Artificial Pancreas Control System.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#TurksoySFLQC16,https://doi.org/10.1109/JBHI.2015.2446413 +Wei Wang 0133,Assessment of Gait Characteristics in Total Knee Arthroplasty Patients Using a Hierarchical Partial Least Squares Method.,2018,22,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb22.html#WangAMWH18,https://doi.org/10.1109/JBHI.2017.2689070 +Argyro Kampouraki,Heartbeat Time Series Classification With Support Vector Machines.,2009,13,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb13.html#KampourakiMN09,https://doi.org/10.1109/TITB.2008.2003323 +R. Noumeir,DICOM structured report document type definition.,2003,7,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb7.html#Noumeir03,https://doi.org/10.1109/TITB.2003.821334 +Hyun Jae Baek,Photoplethysmogram Measurement Without Direct Skin-to-Sensor Contact Using an Adaptive Light Source Intensity Control.,2009,13,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb13.html#BaekCKKP09,https://doi.org/10.1109/TITB.2009.2031108 +Toni Giorgino,Wireless Support to Poststroke Rehabilitation: MyHeart's Neurological Rehabilitation Concept.,2009,13,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb13.html#GiorginoTMPQ09,https://doi.org/10.1109/TITB.2009.2028020 +Sina Reulecke,Temporal Analysis of Cardiovascular and Respiratory Complexity by Multiscale Entropy Based on Symbolic Dynamics.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#ReuleckeCVGGGHS18,https://doi.org/10.1109/JBHI.2017.2761354 +Rinku Rabidas,Neighborhood Structural Similarity Mapping for the Classification of Masses in Mammograms.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#RabidasMC18,https://doi.org/10.1109/JBHI.2017.2715021 +Chung-Chih Lin,Wireless Health Care Service System for Elderly With Dementia.,2006,10,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb10.html#LinCHLT06,https://doi.org/10.1109/TITB.2006.874196 +Karl E. Friedl,Guest Editorial - 13th Body Sensor Networks Symposium.,2018,22,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb22.html#FriedlHBL18,https://doi.org/10.1109/JBHI.2017.2779898 +Xiaofan Zhang,Fusing Heterogeneous Features From Stacked Sparse Autoencoder for Histopathological Image Analysis.,2016,20,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb20.html#ZhangDJXZ16,https://doi.org/10.1109/JBHI.2015.2461671 +Takehiro Yamakoshi,Potential for Health Screening Using Long-Term Cardiovascular Parameters Measured by Finger Volume-Oscillometry: Pilot Comparative Evaluation in Regular and Sleep-Deprived Activities.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#YamakoshiMRHILY14,https://doi.org/10.1109/JBHI.2013.2274460 +William W. L. Wong,A Parallel Sliding Region Algorithm to Make Agent-Based Modeling Possible for a Large-Scale Simulation: Modeling Hepatitis C Epidemics in Canada.,2016,20,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb20.html#WongFT16,https://doi.org/10.1109/JBHI.2015.2471804 +L. M. Fu,Improving reliability of gene selection from microarray functional genomics data.,2003,7,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb7.html#FuY03,https://doi.org/10.1109/TITB.2003.816558 +Hamidreza Azimian,A Semi-Infinite Programming Approach to Preoperative Planning of Robotic Cardiac Surgery Under Geometric Uncertainty.,2013,17,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb17.html#AzimianPNK13,https://doi.org/10.1109/TITB.2012.2220557 +Yuping Duan,Computed Tomography Image Origin Identification Based on Original Sensor Pattern Noise and 3-D Image Reconstruction Algorithm Footprints.,2017,21,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb21.html#DuanBYSC17,https://doi.org/10.1109/JBHI.2016.2575398 +Arshdeep Bahga,A Cloud-based Approach for Interoperable Electronic Health Records (EHRs).,2013,17,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb17.html#BahgaM13,https://doi.org/10.1109/JBHI.2013.2257818 +Davide Curone,A real-time and self-calibrating algorithm based on triaxial accelerometer signals for the detection of human posture and activity.,2010,14,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb14.html#CuroneBCSM10,https://doi.org/10.1109/TITB.2010.2050696 +Xabier Justo,Medical Device for Automated Prick Test Reading.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#JustoDGG18,https://doi.org/10.1109/JBHI.2017.2680840 +Yue Joseph Wang,Magnetic resonance image analysis by information theoretic criteria and stochastic site models.,2001,5,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb5.html#WangAXS01,https://doi.org/10.1109/4233.924805 +Sonal Kothari,Removing Batch Effects From Histopathological Images for Enhanced Cancer Diagnosis.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#KothariPSOYW14,https://doi.org/10.1109/JBHI.2013.2276766 +Eoin M. Thomas,Discriminative and Generative Classification Techniques Applied to Automated Neonatal Seizure Detection.,2013,17,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb17.html#ThomasTMBL13,https://doi.org/10.1109/JBHI.2012.2237035 +Natarajan Sriraam,An Adaptive Error Modeling Scheme for the Lossless Compression of EEG Signals.,2008,12,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb12.html#SriraamE08a,https://doi.org/10.1109/TITB.2007.907981 +Hamed Mosavat-Jahromi,Maximizing Spectral Efficiency for Energy Harvesting-Aware WBAN.,2017,21,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb21.html#Mosavat-Jahromi17,https://doi.org/10.1109/JBHI.2016.2536642 +Ashraf A. Kassim,Motion compensated lossy-to-lossless compression of 4-D medical images using integer wavelet transforms.,2005,9,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb9.html#KassimYLS05,https://doi.org/10.1109/TITB.2004.838376 +Paul Nickerson,Transition Icons for Time-Series Visualization and Exploratory Analysis.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#NickersonBWMTR18,https://doi.org/10.1109/JBHI.2017.2704608 +Ping Yang,A cusum-based multilevel alerting method for physiological monitoring.,2010,14,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb14.html#YangDA10,https://doi.org/10.1109/TITB.2010.2040394 +Tacha Serif,Recording of time-varying back-pain data: a wireless solution.,2005,9,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb9.html#SerifG05,https://doi.org/10.1109/TITB.2005.847514 +Frank Schnorrenberg,Computer-aided detection of breast cancer nuclei.,1997,1,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb1.html#SchnorrenbergPKS97,https://doi.org/10.1109/4233.640655 +Vangelis P. Oikonomou,Bayesian methods for fMRI time-series analysis using a nonstationary model for the noise.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#OikonomouTF10,https://doi.org/10.1109/TITB.2009.2039712 +Metin Akay,Guest-EditorialBiomedical Informatics in Clinical Environments.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#AkayFNW15,https://doi.org/10.1109/JBHI.2014.2382771 +Lihong Peng,Predicting Drug-Target Interactions With Multi-Information Fusion.,2017,21,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb21.html#PengLZLL17,https://doi.org/10.1109/JBHI.2015.2513200 +Theodosios Goudas,A Collaborative Biomedical Image-Mining Framework: Application on the Image Analysis of Microscopic Kidney Biopsies.,2013,17,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb17.html#GoudasDCM13,https://doi.org/10.1109/TITB.2012.2224666 +Nahla H. Barakat,Intelligible support vector machines for diagnosis of diabetes mellitus.,2010,14,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb14.html#BarakatBB10,https://doi.org/10.1109/TITB.2009.2039485 +Budhaditya Saha,A Framework for Mixed-Type Multioutcome Prediction With Applications in Healthcare.,2017,21,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb21.html#SahaGPV17,https://doi.org/10.1109/JBHI.2017.2681799 +Ioannis Valavanis,A Composite Framework for the Statistical Analysis of Epidemiological DNA Methylation Data with the Infinium Human Methylation 450K BeadChip.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#ValavanisSGKC14,https://doi.org/10.1109/JBHI.2014.2298351 +Harihar Narasimha-Iyer,Improved Detection of the Central Reflex in Retinal Vessels Using a Generalized Dual-Gaussian Model and Robust Hypothesis Testing.,2008,12,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb12.html#Narasimha-IyerMBR08,https://doi.org/10.1109/TITB.2007.897782 +Diane J. Cook,Analyzing Activity Behavior and Movement in a Naturalistic Environment Using Smart Home Techniques.,2015,19,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb19.html#CookSD15,https://doi.org/10.1109/JBHI.2015.2461659 +Eva Cavero,SPIHT-Based Echocardiogram Compression: Clinical Evaluation and Recommendations of Use.,2013,17,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb17.html#CaveroACMLG13,https://doi.org/10.1109/TITB.2012.2227336 +Niloofar Hezarjaribi,Speech2Health: A Mobile Framework for Monitoring Dietary Composition From Spoken Data.,2018,22,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb22.html#HezarjaribiMG18,https://doi.org/10.1109/JBHI.2017.2709333 +Prafulla N. Dawadi,Automated Cognitive Health Assessment From Smart Home-Based Behavior Data.,2016,20,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb20.html#DawadiCS16,https://doi.org/10.1109/JBHI.2015.2445754 +Yu Wang 0037,A Suction Detection System for Rotary Blood Pumps Based on the Lagrangian Support Vector Machine Algorithm.,2013,17,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb17.html#WangS13,https://doi.org/10.1109/TITB.2012.2228877 +Gilles Virone,Behavioral Patterns of Older Adults in Assisted Living.,2008,12,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb12.html#VironeADKTSF08,https://doi.org/10.1109/TITB.2007.904157 +Louis Daudet,Portable mTBI Assessment Using Temporal and Frequency Analysis of Speech.,2017,21,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb21.html#DaudetYPPSH17,https://doi.org/10.1109/JBHI.2016.2633509 +Megumi Nakao,Volumetric Fibular Transfer Planning With Shape-Based Indicators in Mandibular Reconstruction.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#NakaoHIUHKM15,https://doi.org/10.1109/JBHI.2014.2320720 +Carole Lartizien,Computer-Aided Staging of Lymphoma Patients With FDG PET/CT Imaging Based on Textural Information.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#LartizienRNR14,https://doi.org/10.1109/JBHI.2013.2283658 +Mrinal Kanti Bhowmik,Designing of Ground-Truth-Annotated DBT-TU-JU Breast Thermogram Database Toward Early Abnormality Prediction.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#BhowmikGMBDG18,https://doi.org/10.1109/JBHI.2017.2740500 +Jean-Louis Coatrieux,"Ray Casting With ""On-the-Fly"" Region Growing: 3-D Navigation Into Cardiac MSCT Volume.",2006,10,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb10.html#CoatrieuxRGUH06,https://doi.org/10.1109/TITB.2005.864373 +Yu-Ping Wang,A Wavelet Approach for the Identification of Axonal Synaptic Varicosities from Microscope Images.,2007,11,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb11.html#WangRH07,https://doi.org/10.1109/TITB.2006.884370 +Holger Harms,Estimating Posture-Recognition Performance in Sensing Garments Using Geometric Wrinkle Modeling.,2010,14,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb14.html#HarmsAT10,https://doi.org/10.1109/TITB.2010.2076822 +Francesco Beltrame,Adopting telemedicine services in the airline framework.,2001,5,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb5.html#BeltrameBM01,https://doi.org/10.1109/4233.924807 +Andrea Giachetti 0001,Robust Automatic Measurement of 3D Scanned Models for the Human Body Fat Estimation.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#GiachettiLPMZ15,https://doi.org/10.1109/JBHI.2014.2314360 +Tammara Massey,Leveraging Social System Networks in Ubiquitous High-Data-Rate Health Systems.,2011,15,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb15.html#MasseyMSTSSP11,https://doi.org/10.1109/TITB.2010.2087414 +Zhen-Peng Bian,Facial Position and Expression-Based Human-Computer Interface for Persons With Tetraplegia.,2016,20,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb20.html#BianHCM16,https://doi.org/10.1109/JBHI.2015.2412125 +Ming Huang 0002,A Wearable Thermometry for Core Body Temperature Measurement and Its Experimental Verification.,2017,21,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb21.html#HuangTTCK17,https://doi.org/10.1109/JBHI.2016.2532933 +Yuanyuan Jia,Single Anisotropic 3-D MR Image Upsampling via Overcomplete Dictionary Trained From In-Plane High Resolution Slices.,2016,20,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb20.html#JiaHGW16,https://doi.org/10.1109/JBHI.2015.2470682 +Wei Chen 0015,Mimo Pillow - An Intelligent Cushion Designed With Maternal Heart Beat Vibrations for Comforting Newborn Infants.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#ChenBTVMPJM15,https://doi.org/10.1109/JBHI.2014.2349153 +Guohun Zhu,Analysis and Classification of Sleep Stages Based on Difference Visibility Graphs From a Single-Channel EEG Signal.,2014,18,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb18.html#ZhuLW14,https://doi.org/10.1109/JBHI.2014.2303991 +Chuang Wang 0005,Automatic Choroidal Layer Segmentation Using Markov Random Field and Level Set Method.,2017,21,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb21.html#WangWL17,https://doi.org/10.1109/JBHI.2017.2675382 +Alfredo I. Hernández,Real-time ECG transmission via Internet for nonclinical applications.,2001,5,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb5.html#HernandezMVPC01,https://doi.org/10.1109/4233.945297 +Fabian Prasser,A Scalable and Pragmatic Method for the Safe Sharing of High-Quality Health Data.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#PrasserKSK18,https://doi.org/10.1109/JBHI.2017.2676880 +Rosa María Baños,Virtual reality treatment of flying phobia.,2002,6,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb6.html#BanosBPALOG02,https://doi.org/10.1109/TITB.2002.802380 +Babak Taati,Data Mining in Bone Marrow Transplant Records to Identify Patients With High Odds of Survival.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#TaatiSAG14,https://doi.org/10.1109/JBHI.2013.2274733 +Ren-Guey Lee,Home telecare system using cable television plants - an experimental field trial.,2000,4,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb4.html#LeeCLCC00,https://doi.org/10.1109/4233.826857 +Chiara Cornalba,Building a Normative Decision Support System for Clinical and Operational Risk Management in Hemodialysis.,2008,12,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb12.html#CornalbaBB08,https://doi.org/10.1109/TITB.2008.920781 +Meaghan Bowthorpe,Smith Predictor-Based Robot Control for Ultrasound-Guided Teleoperated Beating-Heart Surgery.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#BowthorpeTBH14,https://doi.org/10.1109/JBHI.2013.2267494 +Joachim Georgii,A Computational Tool for Preoperative Breast Augmentation Planning in Aesthetic Plastic Surgery.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#GeorgiiEBKFKW14,https://doi.org/10.1109/JBHI.2013.2285308 +Sotiris A. Pavlopoulos,Designing and implementing the transition to a fully digital hospital.,1999,3,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb3.html#PavlopoulosD99,https://doi.org/10.1109/4233.748971 +Sriparna Saha 0001,Use of Semisupervised Clustering and Feature-Selection Techniques for Identification of Co-expressed Genes.,2016,20,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb20.html#SahaAE16,https://doi.org/10.1109/JBHI.2015.2451735 +Catherine E. Chronaki,WebOnCOLL: medical collaboration in regional healthcare networks.,1997,1,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb1.html#ChronakiKZTO97,https://doi.org/10.1109/4233.681170 +Wojciech Tarnawski,A Robust Algorithm for Segmenting and Tracking Clustered Cells in Time-Lapse Fluorescent Microscopy.,2013,17,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb17.html#TarnawskiKLBRMPPMF13,https://doi.org/10.1109/JBHI.2013.2262233 +Hussein Atoui,A novel neural-network model for deriving standard 12-lead ECGs from serial three-lead ECGs: application to self-care.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#AtouiFR10,https://doi.org/10.1109/TITB.2010.2047754 +Thomas Berlage,Augmented-reality communication for diagnostic tasks in cardiology.,1998,2,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb2.html#Berlage98,https://doi.org/10.1109/4233.735781 +Raouf N. Gorgui-Naguib,DNA ploidy and cell cycle distribution of breast cancer aspirate cells measured by image cytometry and analyzed by artificial neural networks for their prognostic significance.,1999,3,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb3.html#NaguibSLWLBS99,https://doi.org/10.1109/4233.748976 +Michael Johannes Rooijakkers,Feasibility Study of a New Method for Low-Complexity Fetal Movement Detection From Abdominal ECG Recordings.,2016,20,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb20.html#RooijakkersRLOB16,https://doi.org/10.1109/JBHI.2015.2452266 +Sardar Ansari,Epsilon-Tube Filtering: Reduction of High-Amplitude Motion Artifacts From Impedance Plethysmography Signal.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#AnsariWN15,https://doi.org/10.1109/JBHI.2014.2316287 +Bum Ju Lee,Identification of the Best Anthropometric Predictors of Serum High- and Low-Density Lipoproteins Using Machine Learning.,2015,19,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb19.html#LeeK15,https://doi.org/10.1109/JBHI.2014.2350014 +Ioan Stanculescu,Autoregressive Hidden Markov Models for the Early Detection of Neonatal Sepsis.,2014,18,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb18.html#StanculescuWF14,https://doi.org/10.1109/JBHI.2013.2294692 +Zifang Huang,Knowledge-Assisted Sequential Pattern Analysis With Heuristic Parameter Tuning for Labor Contraction Prediction.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#HuangSTVB14,https://doi.org/10.1109/JBHI.2013.2281974 +Kohji Murata,Noninvasive Biological Sensor System for Detection of Drunk Driving.,2011,15,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb15.html#MurataFKMOKTKYS11,https://doi.org/10.1109/TITB.2010.2091646 +Kalia Orphanou,DBN-Extended: A Dynamic Bayesian Network Model Extended With Temporal Abstractions for Coronary Heart Disease Prognosis.,2016,20,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb20.html#OrphanouSK16,https://doi.org/10.1109/JBHI.2015.2420534 +Xin Li 0004,Gene function prediction with gene interaction networks: a context graph kernel approach.,2010,14,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb14.html#LiCLZ10,https://doi.org/10.1109/TITB.2009.2033116 +Daniel Castro,A Method for Context-Based Adaptive QRS Clustering in Real Time.,2015,19,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb19.html#CastroFP15,https://doi.org/10.1109/JBHI.2014.2361659 +Henrique Damasceno Vianna,A Model for Ubiquitous Care of Noncommunicable Diseases.,2014,18,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb18.html#ViannaB14,https://doi.org/10.1109/JBHI.2013.2292860 +Hassan Ghasemzadeh,Structural action recognition in body sensor networks: distributed classification based on string matching.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#GhasemzadehLJ10,https://doi.org/10.1109/TITB.2009.2036722 +Rosalind W. Picard,Guest Editorial Sensor Informatics and Quantified Self.,2015,19,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb19.html#PicardW15,https://doi.org/10.1109/JBHI.2015.2462372 +W. Chen,Developing EMRs in Developing Countries.,2011,15,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb15.html#ChenA11,https://doi.org/10.1109/TITB.2010.2091509 +Shaibal Barua,Automated EEG Artifact Handling With Application in Driver Monitoring.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#BaruaAABF18,https://doi.org/10.1109/JBHI.2017.2773999 +Yongdong Wu,TeleOph: a secure real-time teleophthalmology system.,2010,14,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb14.html#WuWYZNDY10,https://doi.org/10.1109/TITB.2010.2058124 +George Ghinea,A Jini-Based Solution for Electronic Prescriptions.,2006,10,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb10.html#GhineaAMS06,https://doi.org/10.1109/TITB.2006.879586 +Christos A. Frantzidis,Toward emotion aware computing: an integrated approach using multichannel neurophysiological recordings and affective visual stimuli.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#FrantzidisBPKPB10,https://doi.org/10.1109/TITB.2010.2041553 +Jiaqi Gong,Causality Analysis of Inertial Body Sensors for Multiple Sclerosis Diagnostic Enhancement.,2016,20,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb20.html#GongQGL16,https://doi.org/10.1109/JBHI.2016.2589902 +Hadi Banaee,Data-Driven Rule Mining and Representation of Temporal Patterns in Physiological Sensor Data.,2015,19,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb19.html#BanaeeL15,https://doi.org/10.1109/JBHI.2015.2438645 +Hyun-Gyu Lee,Nucleus Segmentation Using Gaussian Mixture based Shape Models.,2018,22,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb22.html#LeeL18,https://doi.org/10.1109/JBHI.2017.2700518 +Yihui Cao,Automatic Side Branch Ostium Detection and Main Vascular Segmentation in Intravascular Optical Coherence Tomography Images.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#CaoJCYQLZZ18,https://doi.org/10.1109/JBHI.2017.2771829 +Nilanjan Ray,MISTICA: Minimum Spanning Tree-Based Coarse Image Alignment for Microscopy Image Sequences.,2016,20,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb20.html#RayMLA16,https://doi.org/10.1109/JBHI.2015.2480712 +Nan Liu,An Intelligent Scoring System and Its Application to Cardiac Arrest Prediction.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#LiuLCKZHSO12,https://doi.org/10.1109/TITB.2012.2212448 +William Hsu,Context-Based Electronic Health Record: Toward Patient Specific Healthcare.,2012,16,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb16.html#HsuTEKB12,https://doi.org/10.1109/TITB.2012.2186149 +Konstantina S. Nikita,Guest editorial: special section on new and emerging technologies in bioinformatics and bioengineering.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#NikitaF10,https://doi.org/10.1109/TITB.2010.2048660 +Chuan Lu,Bagging Linear Sparse Bayesian Learning Models for Variable Selection in Cancer Diagnosis.,2007,11,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb11.html#LuDSAH07,https://doi.org/10.1109/TITB.2006.889702 +Ahsan H. Khandoker,Support Vector Machines for Automated Recognition of Obstructive Sleep Apnea Syndrome From ECG Recordings.,2009,13,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb13.html#KhandokerPK09,https://doi.org/10.1109/TITB.2008.2004495 +F. Ohberg,Chronic whiplash associated disorders and neck movement measurements: an instantaneous helical axis approach.,2003,7,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb7.html#OhbergGWSKG03,https://doi.org/10.1109/TITB.2003.821328 +Yanqing Ji,A Potential Causal Association Mining Algorithm for Screening Adverse Drug Reactions in Postmarketing Surveillance.,2011,15,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb15.html#JiYDMTMM11,https://doi.org/10.1109/TITB.2011.2131669 +Miltos Gletsos,A computer-aided diagnostic system to characterize CT focal liver lesions: Design and optimization of a neural network classifier.,2003,7,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb7.html#GletsosMMNNK03,https://doi.org/10.1109/TITB.2003.813793 +,Computer Assisted Radiology '97 Conference (Part 1 Of 2).,1997,1,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb1.html#X97, +George Anogianakis,Relief for maritime medical emergencies through telematics.,1998,2,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb2.html#AnogianakisMP98,https://doi.org/10.1109/4233.737580 +Antonio Lanata,Complexity Index From a Personalized Wearable Monitoring System for Assessing Remission in Mental Health.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#LanataVNGS15,https://doi.org/10.1109/JBHI.2014.2360711 +Jane Grimson,A CORBA-based integration of distributed electronic healthcare records using the Synapses approach.,1998,2,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb2.html#GrimsonGBSFKTW98,https://doi.org/10.1109/4233.735777 +Jierong Cheng,Watershed-Presegmented Snake for Boundary Detection and Tracking of Left Ventricle in Echocardiographic Images.,2006,10,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb10.html#ChengFK06,https://doi.org/10.1109/TITB.2005.859887 +Ashish Kumar Sahani,Carotid and Jugular Classification in ARTSENS.,2016,20,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb20.html#SahaniSJS16,https://doi.org/10.1109/JBHI.2015.2403283 +Meihong Deng,Limited Correlation Between Conventional Pathologist and Automatic Computer-Assisted Quantification of Hepatic Steatosis due to Difference Between Event-Based and Surface-Based Analysis.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#DengDSHSHSD14,https://doi.org/10.1109/JBHI.2013.2282999 +Piotr Augustyniak,Optimal Coding of Vectorcardiographic Sequences Using Spatial Prediction.,2007,11,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb11.html#Augustyniak07,https://doi.org/10.1109/TITB.2006.884374 +Colleen M. Ennett,Weight-elimination neural networks applied to coronary surgery mortality prediction.,2003,7,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb7.html#EnnettF03,https://doi.org/10.1109/TITB.2003.811881 +María de la Salud Guillem,How Many Leads Are Necessary for a Reliable Reconstruction of Surface Potentials During Atrial Fibrillation?,2009,13,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb13.html#GuillemBCHMC09,https://doi.org/10.1109/TITB.2008.2011894 +Chun-Hou Zheng,Tumor Clustering Using Nonnegative Matrix Factorization With Gene Selection.,2009,13,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb13.html#ZhengHZK09,https://doi.org/10.1109/TITB.2009.2018115 +Mario Pascual Carrasco,Impact of Patient-General Practitioner Short-Messages-Based Interaction on the Control of Hypertension in a Follow-up Service for Low-to-Medium Risk Hypertensive Patients: A Randomized Controlled Trial.,2008,12,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb12.html#CarrascoSSMMFRGGCM08,https://doi.org/10.1109/TITB.2008.926429 +G. C. Crumley,The design and performance of a 2.5-GHz telecommand link for wireless biomedical monitoring.,2000,4,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb4.html#CrumleyESBT00,https://doi.org/10.1109/4233.897060 +Alexander Horsch,Telemedical information systems.,1999,3,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb3.html#HorschB99,https://doi.org/10.1109/4233.788578 +Siqi Li,Organ Location Determination and Contour Sparse Representation for Multiorgan Segmentation.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#LiJYY18,https://doi.org/10.1109/JBHI.2017.2705037 +Jérôme Thevenot,A Survey on Computer Vision for Assistive Medical Diagnosis From Faces.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#ThevenotLH18,https://doi.org/10.1109/JBHI.2017.2754861 +Carsten W. Mundt,A multiparameter wearable physiologic monitoring system for space and terrestrial applications.,2005,9,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb9.html#MundtMUBTTRDCCRSHK05,https://doi.org/10.1109/TITB.2005.854509 +Dimitrios K. Iakovidis,A Pattern Similarity Scheme for Medical Image Retrieval.,2009,13,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb13.html#IakovidisPKKKT09,https://doi.org/10.1109/TITB.2008.923144 +Yong Ning,Surface EMG Decomposition Based on K-means Clustering and Convolution Kernel Compensation.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#NingZZZ15,https://doi.org/10.1109/JBHI.2014.2328497 +Chia-Ling Tsai,Model-Based Method for Improving the Accuracy and Repeatability of Estimating Vascular Bifurcations and Crossovers From Retinal Fundus Images.,2004,8,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb8.html#TsaiSTR04,https://doi.org/10.1109/TITB.2004.826733 +Juha Pärkkä,Relationship of Psychological and Physiological Variables in Long-Term Self-Monitored Data During Work Ability Rehabilitation Program.,2009,13,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb13.html#ParkkaMMMATSGK09,https://doi.org/10.1109/TITB.2008.2007078 +Julie Barnett,myPace: An Integrative Health Platform for Supporting Weight Loss and Maintenance Behaviors.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#BarnettHFGC15,https://doi.org/10.1109/JBHI.2014.2366832 +Ming-Zher Poh,Motion-tolerant magnetic earring sensor and wireless earpiece for wearable photoplethysmography.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#PohSP10,https://doi.org/10.1109/TITB.2010.2042607 +Jo Woon Chong,Arrhythmia Discrimination Using a Smart Phone.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#ChongEMC15,https://doi.org/10.1109/JBHI.2015.2418195 +Zhibin Xiao,An Implantable RFID Sensor Tag toward Continuous Glucose Monitoring.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#XiaoTCCZZWHZZM15,https://doi.org/10.1109/JBHI.2015.2415836 +Daniel P. Lorence,Clinical knowledge management using computerized patient record systems: is the current infrastructure adequate?,2005,9,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb9.html#LorenceC05a,https://doi.org/10.1109/TITB.2005.847153 +Assad Abbas,A Review on the State-of-the-Art Privacy-Preserving Approaches in the e-Health Clouds.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#AbbasK14,https://doi.org/10.1109/JBHI.2014.2300846 +Brijesh Verma,A computer-aided diagnosis system for digital mammograms based on fuzzy-neural and feature extraction techniques.,2001,5,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb5.html#VermaZ01,https://doi.org/10.1109/4233.908389 +Paul Raj Devadoss,Managing knowledge integration in a national health-care crisis: lessons learned from combating SARS in Singapore.,2005,9,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb9.html#DevadossPS05,https://doi.org/10.1109/TITB.2005.847160 +Yao-Jen Chang,A Feasibility Study of Enhancing Independent Task Performance for People with Cognitive Impairments Through the Use of a Handheld Location-Based Prompting System.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#ChangCC12,https://doi.org/10.1109/TITB.2012.2198484 +Omar Gutierrez-Navarro,Blind End-Member and Abundance Extraction for Multispectral Fluorescence Lifetime Imaging Microscopy Data.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#Gutierrez-NavarroCSMJ14,https://doi.org/10.1109/JBHI.2013.2279335 +Sasan Mahmoodi,Skeletal growth estimation using radiographic image processing and analysis.,2000,4,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb4.html#MahmoodiSCOL00,https://doi.org/10.1109/4233.897061 +Daniel Kelly,Automatic Prediction of Health Status Using Smartphone-Derived Behavior Profiles.,2017,21,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb21.html#KellyCC17,https://doi.org/10.1109/JBHI.2017.2649602 +Rushi Lan,Medical Image Retrieval via Histogram of Compressed Scattering Coefficients.,2017,21,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb21.html#LanZ17,https://doi.org/10.1109/JBHI.2016.2623840 +William Diehl Kearns,Movement Path Tortuosity in Free Ambulation: Relationships to Age and Brain Disease.,2017,21,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb21.html#KearnsFN17,https://doi.org/10.1109/JBHI.2016.2517332 +Anpeng Huang,System Light-Loading Technology for mHealth: Manifold-Learning-Based Medical Data Cleansing and Clinical Trials in WE-CARE Project.,2014,18,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb18.html#HuangXLXSLC14,https://doi.org/10.1109/JBHI.2013.2292576 +Ahmad Akl,Unobtrusive Detection of Mild Cognitive Impairment in Older Adults Through Home Monitoring.,2017,21,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb21.html#AklSM17,https://doi.org/10.1109/JBHI.2015.2512273 +Federico Carpi,Electroactive polymer-based devices for e-textiles in biomedicine.,2005,9,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb9.html#CarpiR05,https://doi.org/10.1109/TITB.2005.854514 +Jianguo Zhang,DICOM Image Secure Communications With Internet Protocols IPv6 and IPv4.,2007,11,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb11.html#ZhangYSYL07,https://doi.org/10.1109/TITB.2006.879606 +Omid Sayadi,Utility of a Nonlinear Joint Dynamical Framework to Model a Pair of Coupled Cardiovascular Signals.,2013,17,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb17.html#SayadiS13,https://doi.org/10.1109/JBHI.2013.2263836 +Fengqing Zhu,Multiple Hypotheses Image Segmentation and Classification With Application to Dietary Assessment.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#ZhuBKBD15,https://doi.org/10.1109/JBHI.2014.2304925 +Guang-He Zhang,Analysis of Using Interpulse Intervals to Generate 128-Bit Biometric Random Binary Sequences for Securing Wireless Body Sensor Networks.,2012,16,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb16.html#ZhangPZ12,https://doi.org/10.1109/TITB.2011.2173946 +Yuan-Ting Zhang,Editorial Editorial Note on Health Informatics.,2009,13,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb13.html#ZhangPM09,https://doi.org/10.1109/TITB.2009.2021443 +Dimitrios E. Maroulis,Variable Background Active Contour Model for Computer-Aided Delineation of Nodules in Thyroid Ultrasound Images.,2007,11,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb11.html#MaroulisSIKD07,https://doi.org/10.1109/TITB.2006.890018 +Liping Jing,Construction of gene networks with hybrid approach from expression profile and gene ontology.,2010,14,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb14.html#JingNL10,https://doi.org/10.1109/TITB.2009.2033056 +Michail G. Kounelakis,On the Relevance of Glycolysis Process on Brain Gliomas.,2013,17,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb17.html#KounelakisZGPBK13,https://doi.org/10.1109/TITB.2012.2199128 +Nelofar Kureshi,A Predictive Model for Personalized Therapeutic Interventions in Non-small Cell Lung Cancer.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#KureshiAB16,https://doi.org/10.1109/JBHI.2014.2377517 +Faezeh Marzbanrad,Model-Based Estimation of Aortic and Mitral Valves Opening and Closing Timings in Developing Human Fetuses.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#MarzbanradKFOES16,https://doi.org/10.1109/JBHI.2014.2363452 +Iren Valova,Hadamard-based image decomposition and compression.,2000,4,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb4.html#ValovaK00,https://doi.org/10.1109/4233.897063 +Hillol Bala,If the Worst Happens: Five Strategies for Developing and Leveraging Information Technology-Enabled Disaster Response in Healthcare.,2016,20,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb20.html#BalaVVB16,https://doi.org/10.1109/JBHI.2015.2477371 +Christine Toumoulin,String matching techniques for high-level primitive formation in 2-d vascular imaging.,2003,7,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb7.html#ToumoulinBBS03,https://doi.org/10.1109/TITB.2003.821318 +Daojing He,Secure and Lightweight Network Admission and Transmission Protocol for Body Sensor Networks.,2013,17,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb17.html#HeCCBZ13,https://doi.org/10.1109/JBHI.2012.2235180 +Zhexiao Guo,An Unobtrusive Computerized Assessment Framework for Unilateral Peripheral Facial Paralysis.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#GuoDXWYDDZ18,https://doi.org/10.1109/JBHI.2017.2707588 +Liron Yatziv,Toward Multiple Catheters Detection in Fluoroscopic Image Guided Interventions.,2012,16,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb16.html#YatzivCDS12,https://doi.org/10.1109/TITB.2012.2189407 +Pingkun Yan,Medical Image Segmentation Using Minimal Path Deformable Models With Implicit Shape Priors.,2006,10,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb10.html#YanK06,https://doi.org/10.1109/TITB.2006.874199 +Borna Jafarpour,Exploiting Semantic Web Technologies to Develop OWL-Based Clinical Practice Guideline Execution Engines.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#JafarpourAA16,https://doi.org/10.1109/JBHI.2014.2383840 +Zhiyuan Lu,A Prototype of Reflection Pulse Oximeter Designed for Mobile Healthcare.,2016,20,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb20.html#LuCDZZ16,https://doi.org/10.1109/JBHI.2015.2465861 +Andrew D. Gilliam,Cardiac Motion Recovery via Active Trajectory Field Models.,2009,13,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb13.html#GilliamEA09,https://doi.org/10.1109/TITB.2008.2009221 +Yongbin Qi,A Novel Approach to Joint Flexion/Extension Angles Measurement Based on Wearable UWB Radios.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#QiSGLM14,https://doi.org/10.1109/JBHI.2013.2253487 +Yue Joseph Wang,Iterative normalization of cDNA microarray data.,2002,6,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb6.html#WangLLGC02,https://doi.org/10.1109/4233.992159 +Chun-Hsi Huang,Guest Editorial Introduction to the Special Section on BioGrid: Biomedical Computations on the Grid.,2008,12,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb12.html#HuangKLS08,https://doi.org/10.1109/TITB.2008.918585 +Ernst Pelikan,Experience with PACS in an ATM/Ethernet switched network environment.,1998,2,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb2.html#PelikanGKST98,https://doi.org/10.1109/4233.678532 +D. C. Leonard,Realization of a Universal Patient Identifier for Electronic Medical Records Through Biometric Technology.,2009,13,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb13.html#LeonardPA09,https://doi.org/10.1109/TITB.2008.926438 +Jinsung Yoon,Discovery and Clinical Decision Support for Personalized Healthcare.,2017,21,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb21.html#YoonDS17,https://doi.org/10.1109/JBHI.2016.2574857 +Stefano Diciotti,3-D Segmentation Algorithm of Small Lung Nodules in Spiral CT Images.,2008,12,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb12.html#DiciottiPFMVV08,https://doi.org/10.1109/TITB.2007.899504 +Marco De Pasquale,Hemorrhage Prediction Models in Surgical Intensive Care: Bedside Monitoring Data Adds Information to Lab Values.,2017,21,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb21.html#PasqualeMCCLMF17,https://doi.org/10.1109/JBHI.2017.2653849 +Emmanouil Athanasiadis,Complementary DNA Microarray Image Processing Based on the Fuzzy Gaussian Mixture Model.,2009,13,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb13.html#AthanasiadisCSGKN09,https://doi.org/10.1109/TITB.2008.907984 +Konstantinos K. Delibasis,Computer-Aided Diagnosis of Thyroid Malignancy Using an Artificial Immune System Classification Algorithm.,2009,13,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb13.html#DelibasisAMZT09,https://doi.org/10.1109/TITB.2008.926990 +R. Atun,Editorial: Big Data for Health.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#AtunLPWY15,https://doi.org/10.1109/JBHI.2015.2442392 +Antonio Lanata,A multimodal transducer for cardiopulmonary activity monitoring in emergency.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#LanataSR10,https://doi.org/10.1109/TITB.2009.2024414 +Yi-Chun Du,Residual Stenosis Estimation of Arteriovenous Grafts Using a Dual-Channel Phonoangiography With Fractional-Order Features.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#DuCLKW15,https://doi.org/10.1109/JBHI.2014.2328346 +Carl James Debono,Cross-Layer Design for Optimized Region of Interest of Ultrasound Video Data Over Mobile WiMAX.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#DebonoMPAIA12,https://doi.org/10.1109/TITB.2012.2201164 +Tobias Wartzek,Robust Sensor Fusion of Unobtrusively Measured Heart Rate.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#WartzekBWL14,https://doi.org/10.1109/JBHI.2013.2274211 +Tao Guan,Accurate Segmentation of Partially Overlapping Cervical Cells Based on Dynamic Sparse Contour Searching and GVF Snake Model.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#GuanZL15,https://doi.org/10.1109/JBHI.2014.2346239 +Jonathan M. Rigelsford,A Passive Biodegradable Implant for Subcutaneous Soft-Tissue Trauma Monitoring.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#RigelsfordADN15,https://doi.org/10.1109/JBHI.2015.2417754 +Renato J. O. Figueiredo,Architecture and Performance of a Grid-Enabled Lookup-Based Biomedical Optimization Application: Light Scattering Spectroscopy.,2007,11,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb11.html#FigueiredoBLP07,https://doi.org/10.1109/TITB.2006.876032 +Teh Amouh,Versatile clinical information system design for emergency departments.,2005,9,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb9.html#AmouhGMVGRST05,https://doi.org/10.1109/TITB.2005.847159 +Enrique J. Gómez,The INCA System: A Further Step Towards a Telemedical Artificial Pancreas.,2008,12,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb12.html#GomezHVCBGPBSPBDL08,https://doi.org/10.1109/TITB.2007.902162 +Anirban Mukhopadhyay 0003,Morphological Analysis of the Left Ventricular Endocardial Surface Using a Bag-of-Features Descriptor.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#0003QBLVR15,https://doi.org/10.1109/JBHI.2014.2357472 +Ivica Kopriva,Single-Channel Sparse Non-Negative Blind Source Separation Method for Automatic 3-D Delineation of Lung Tumor in PET Images.,2017,21,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb21.html#KoprivaJZSXYWBC17,https://doi.org/10.1109/JBHI.2016.2624798 +Maziyar Baran Pouyan,Clustering Single-Cell Expression Data Using Random Forest Graphs.,2017,21,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb21.html#PouyanN17,https://doi.org/10.1109/JBHI.2016.2565561 +Gabriele Spina,Identifying Physical Activity Profiles in COPD Patients Using Topic Models.,2015,19,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb19.html#SpinaCAAGCHGLMS15,https://doi.org/10.1109/JBHI.2015.2432033 +Karim Lekadir,A Convolutional Neural Network for Automatic Characterization of Plaque Composition in Carotid Ultrasound.,2017,21,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb21.html#LekadirGBVIRFRN17,https://doi.org/10.1109/JBHI.2016.2631401 +Alan L. Rector,Reconciling users' needs and formal requirements: issues in developing a reusable ontology for medicine.,1998,2,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb2.html#RectorZSRBCCKRMHW98,https://doi.org/10.1109/4233.737578 +Alex A. T. Bui,openSourcePACS: An Extensible Infrastructure for Medical Image Management.,2007,11,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb11.html#BuiMDJSATAEK07,https://doi.org/10.1109/TITB.2006.879595 +Hui Luo,Automatic Image Hanging Protocol for Chest Radiographs in PACS.,2006,10,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb10.html#LuoHFC06,https://doi.org/10.1109/TITB.2005.859872 +José Silvestre Silva,Algorithm Versus Physicians Variability Evaluation in the Cardiac Chambers Extraction.,2012,16,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb16.html#SilvaSRMCM12,https://doi.org/10.1109/TITB.2012.2201949 +Ron Alterovitz,Sensorless Motion Planning for Medical Needle Insertion in Deformable Tissues.,2009,13,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb13.html#AlterovitzGPH09,https://doi.org/10.1109/TITB.2008.2008393 +Simion S. Pruna,BlackSea TeleDiab: Diabetes computer system with communication technology for black sea region.,1998,2,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb2.html#PrunaDH98,https://doi.org/10.1109/4233.735784 +Chun-Rong Huang,Wheelchair detection using cascaded decision tree.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#HuangCLT10,https://doi.org/10.1109/TITB.2009.2037618 +Panagiotis Petrantonakis,A Novel Emotion Elicitation Index Using Frontal Brain Asymmetry for Enhanced EEG-Based Emotion Recognition.,2011,15,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb15.html#PetrantonakisH11,https://doi.org/10.1109/TITB.2011.2157933 +Konstantinos P. Michmizos,Beta-Band Frequency Peaks Inside the Subthalamic Nucleus as a Biomarker for Motor Improvement After Deep Brain Stimulation in Parkinson's Disease.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#MichmizosFSSN15,https://doi.org/10.1109/JBHI.2014.2344102 +Fan Zhu 0002,Lesion Area Detection Using Source Image Correlation Coefficient for CT Perfusion Imaging.,2013,17,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb17.html#ZhuGCAW13,https://doi.org/10.1109/JBHI.2013.2253785 +Behailu Kibret,Investigation of Galvanic-Coupled Intrabody Communication Using the Human Body Circuit Model.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#KibretSLF14,https://doi.org/10.1109/JBHI.2014.2301165 +Shyamal Patel,Monitoring Motor Fluctuations in Patients With Parkinson's Disease Using Wearable Sensors.,2009,13,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb13.html#PatelLHHGSADWB09,https://doi.org/10.1109/TITB.2009.2033471 +Altug Akay,A Data-Mining Approach for Investigating Social and Economic Geographical Dynamics of beta-Thalassemia's Spread.,2009,13,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb13.html#AkayDYCYP09,https://doi.org/10.1109/TITB.2009.2020062 +Mykola Pechenizkiy,Local Dimensionality Reduction and Supervised Learning Within Natural Clusters for Biomedical Data Analysis.,2006,10,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb10.html#PechenizkiyTP06,https://doi.org/10.1109/TITB.2006.875654 +Mostafa Ali Shahin,Deep Learning and Insomnia: Assisting Clinicians With Their Diagnosis.,2017,21,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb21.html#ShahinAHMGP17,https://doi.org/10.1109/JBHI.2017.2650199 +Francis K. H. Quek,AIM: attentionally based interaction model for the interpretation of vascular angiography.,1999,3,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb3.html#QuekKC99,https://doi.org/10.1109/4233.767090 +Walter Karlen,Estimation of Respiratory Rate From Photoplethysmographic Imaging Videos Compared to Pulse Oximetry.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#KarlenGMSAD15,https://doi.org/10.1109/JBHI.2015.2429746 +Mauro Gaspari,Refining an Automatic EDSS Scoring Expert System for Routine Clinical Use in Multiple Sclerosis.,2009,13,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb13.html#GaspariSSS09,https://doi.org/10.1109/TITB.2008.926498 +Qingfeng Chen,Mining characteristic relations bind to RNA secondary structures.,2010,14,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb14.html#ChenC10,https://doi.org/10.1109/TITB.2009.2032655 +Feng Bao 0001,Tailored reversible watermarking schemes for authentication of electronic clinical atlas.,2005,9,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb9.html#BaoDOY05,https://doi.org/10.1109/TITB.2005.855556 +T. J. Dasey,Detection of multiple sclerosis with visual evoked potentials - an unsupervised computational intelligence system.,2000,4,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb4.html#DaseyM00,https://doi.org/10.1109/4233.870032 +Brooke N. Steele,Internet-based system for simulation-based medical planning for cardiovascular disease.,2003,7,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb7.html#SteeleDKT03,https://doi.org/10.1109/TITB.2003.811880 +Jean-Michel Cauvin,Computer-assisted diagnosis system in digestive endoscopy.,2003,7,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb7.html#CauvinGSRBR03,https://doi.org/10.1109/TITB.2003.823293 +Shishir Maheshwari,Automated Diagnosis of Glaucoma Using Empirical Wavelet Transform and Correntropy Features Extracted From Fundus Images.,2017,21,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb21.html#MaheshwariPA17,https://doi.org/10.1109/JBHI.2016.2544961 +Shahin Farshchi,Bi-Fi: An Embedded Sensor/System Architecture for Remote Biological Monitoring.,2007,11,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb11.html#FarshchiPNMJ07,https://doi.org/10.1109/TITB.2007.897600 +Vangelis Sakkalis,Assessment of Linear and Nonlinear Synchronization Measures for Analyzing EEG in a Mild Epileptic Paradigm.,2009,13,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb13.html#SakkalisGXZTYKM09,https://doi.org/10.1109/TITB.2008.923141 +Diana P. Tobón,Adaptive Spectro-Temporal Filtering for Electrocardiogram Signal Enhancement.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#TobonF18,https://doi.org/10.1109/JBHI.2016.2638120 +David M. Saxe,Robust region of interest coding for improved sign language telecommunication.,2002,6,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb6.html#SaxeF02,https://doi.org/10.1109/TITB.2002.806094 +Patrice Renaud,Behavioral avoidance dynamics in the presence of a virtual spider.,2002,6,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb6.html#RenaudBP02,https://doi.org/10.1109/TITB.2002.802381 +Jinhyuk Kim,Covariation of Depressive Mood and Spontaneous Physical Activity in Major Depressive Disorder: Toward Continuous Monitoring of Depressive Mood.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#KimNKYSY15,https://doi.org/10.1109/JBHI.2015.2440764 +Tai Nguyen-Ky,Measuring and Reflecting Depth of Anesthesia Using Wavelet and Power Spectral Density.,2011,15,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb15.html#Nguyen-KyWLG11,https://doi.org/10.1109/TITB.2011.2155081 +Felix G. Hamza-Lup,Distributed Augmented Reality With 3-D Lung Dynamics-A Planning Tool Concept.,2007,11,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb11.html#Hamza-LupSIMR07,https://doi.org/10.1109/TITB.2006.880552 +Miguel Angel Escalona-Moran,Electrocardiogram Classification Using Reservoir Computing With Logistic Regression.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#Escalona-MoranS15,https://doi.org/10.1109/JBHI.2014.2332001 +Harshvardhan Vathsangam,Hierarchical Approaches to Estimate Energy Expenditure Using Phone-Based Accelerometers.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#VathsangamSS14,https://doi.org/10.1109/JBHI.2013.2297055 +Ivan Pavlovic,Web-Based Electronic Data Collection System to Support Electrochemotherapy Clinical Trial.,2007,11,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb11.html#PavlovicM07,https://doi.org/10.1109/TITB.2006.879581 +Shitong Wang 0001,A New Detection Algorithm (NDA) Based on Fuzzy Cellular Neural Networks for White Blood Cell Detection.,2006,10,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb10.html#ShitongM06,https://doi.org/10.1109/TITB.2005.855545 +Xuan Kong,Watermarking medical signals for telemedicine.,2001,5,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb5.html#KongF01,https://doi.org/10.1109/4233.945290 +Bersain A. Reyes,Tidal Volume and Instantaneous Respiration Rate Estimation using a Volumetric Surrogate Signal Acquired via a Smartphone Camera.,2017,21,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb21.html#ReyesRKNC17,https://doi.org/10.1109/JBHI.2016.2532876 +Daniel T. H. Lai,Automatic Recognition of Gait Patterns Exhibiting Patellofemoral Pain Syndrome Using a Support Vector Machine Approach.,2009,13,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb13.html#LaiLBGP09,https://doi.org/10.1109/TITB.2009.2022927 +David Dagan Feng,Dynamic image data compression in the spatial and temporal domains: clinical issues and assessment.,2002,6,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb6.html#FengCF02,https://doi.org/10.1109/TITB.2002.806093 +Sandra Morales,Retinal Disease Screening Through Local Binary Patterns.,2017,21,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb21.html#MoralesENC17,https://doi.org/10.1109/JBHI.2015.2490798 +Huiru Zheng,Improving Pattern Discovery and Visualization of SAGE Data Through Poisson-Based Self-Adaptive Neural Networks.,2008,12,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb12.html#ZhengWA08,https://doi.org/10.1109/TITB.2007.901208 +Mark Hoogendoorn,Predicting Social Anxiety Treatment Outcome Based on Therapeutic Email Conversations.,2017,21,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb21.html#HoogendoornBSSS17,https://doi.org/10.1109/JBHI.2016.2601123 +Mikko Paukkunen,Beat-by-Beat Quantification of Cardiac Cycle Events Detected From Three-Dimensional Precordial Acceleration Signals.,2016,20,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb20.html#PaukkunenPHPKNK16,https://doi.org/10.1109/JBHI.2015.2391437 +Szi-Wen Chen,Compressed Sensing Technology-Based Spectral Estimation of Heart Rate Variability Using the Integral Pulse Frequency Modulation Model.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#ChenC14,https://doi.org/10.1109/JBHI.2013.2282307 +Adler J. Perotte,Temporal Properties of Diagnosis Code Time Series in Aggregate.,2013,17,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb17.html#PerotteH13,https://doi.org/10.1109/JBHI.2013.2244610 +Ajay Ogirala,Electromagnetic Interference of Cardiac Rhythmic Monitoring Devices to Radio Frequency Identification: Analytical Analysis and Mitigation Methodology.,2011,15,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb15.html#OgiralaSM11,https://doi.org/10.1109/TITB.2011.2163640 +Woochul Kang,The Design of Safe Networked Supervisory Medical Systems Using Organ-Centric Hierarchical Control Architecture.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#KangSBG15,https://doi.org/10.1109/JBHI.2014.2333778 +M. P. S. F. Gomes,A computer-assisted training/monitoring system for TURP structure and design.,1999,3,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb3.html#GomesBTD99,https://doi.org/10.1109/4233.809168 +Alhassan Khedr,SecureMed: Secure Medical Computation Using GPU-Accelerated Homomorphic Encryption Scheme.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#KhedrG18,https://doi.org/10.1109/JBHI.2017.2657458 +Paul Jen-Hwa Hu,System for Infectious Disease Information Sharing and Analysis: Design and Evaluation.,2007,11,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb11.html#HuZCLCTM07,https://doi.org/10.1109/TITB.2007.893286 +Yudong Sun,Exploring Microbial Genome Sequences to Identify Protein Families on the Grid.,2007,11,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb11.html#SunWPLFW07,https://doi.org/10.1109/TITB.2007.892913 +Pantelis Georgiou,Guest Editorial Biomedical and Health Informatics for Diabetes.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#GeorgiouJ16,https://doi.org/10.1109/JBHI.2015.2504638 +John Fox,Decision support and disease management: a logic engineering approach.,1998,2,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb2.html#FoxT98,https://doi.org/10.1109/4233.737577 +Malcolm Clarke,Dynamic Threshold Analysis of Daily Oxygen Saturation for Improved Management of COPD Patients.,2016,20,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb20.html#ClarkeGFJ16,https://doi.org/10.1109/JBHI.2015.2464275 +Dapeng Yang,Classification of Multiple Finger Motions During Dynamic Upper Limb Movements.,2017,21,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb21.html#YangYHL17,https://doi.org/10.1109/JBHI.2015.2490718 +Xianjing Qin,Adaptive Shape Prior Constrained Level Sets for Bladder MR Image Segmentation.,2014,18,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb18.html#QinLLLY14,https://doi.org/10.1109/JBHI.2013.2288935 +Xiaojuan Li,Design and implementation of a novel compression method in a tele-ultrasound system.,1999,3,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb3.html#LiHG99,https://doi.org/10.1109/4233.788582 +Sílvia D. Olabarriaga,A virtual laboratory for medical image analysis.,2010,14,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb14.html#OlabarriagaGB10,https://doi.org/10.1109/TITB.2010.2046742 +Ahmad Abushakra,Augmenting Breath Regulation Using a Mobile Driven Virtual Reality Therapy Framework.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#AbushakraF14,https://doi.org/10.1109/JBHI.2013.2281195 +Suk-Jin Lee,Irregular Breathing Classification From Multiple Patient Datasets Using Neural Networks.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#LeeMWS12,https://doi.org/10.1109/TITB.2012.2214395 +Alexander Wong,Fisher-Tippett Region-Merging Approach to Transrectal Ultrasound Prostate Lesion Segmentation.,2011,15,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb15.html#WongS11,https://doi.org/10.1109/TITB.2011.2163724 +Sebastijan Sprager,Optimization of Heartbeat Detection in Fiber-Optic Unobtrusive Measurements by Using Maximum A Posteriori Probability Estimation.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#SpragerZ14,https://doi.org/10.1109/JBHI.2013.2282403 +Milica Milosevic,Automated Detection of Tonic-Clonic Seizures Using 3-D Accelerometry and Surface Electromyography in Pediatric Patients.,2016,20,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb20.html#MilosevicVBCLVH16,https://doi.org/10.1109/JBHI.2015.2462079 +Fabienne Porée,Blind Source Separation for Ambulatory Sleep Recording.,2006,10,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb10.html#PoreeKGMCS06,https://doi.org/10.1109/TITB.2005.859878 +Ana M. Guzman,Thermal Imaging as a Biometrics Approach to Facial Signature Authentication.,2013,17,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb17.html#GuzmanGWBARA13,https://doi.org/10.1109/TITB.2012.2207729 +Shing-Hong Liu,The Progression of Muscle Fatigue During Exercise Estimation With the Aid of High-Frequency Component Parameters Derived From Ensemble Empirical Mode Decomposition.,2014,18,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb18.html#LiuCC14,https://doi.org/10.1109/JBHI.2013.2286408 +Belén Prados-Suárez,Contextualized Access to Electronical Health Records in Cardiology.,2012,16,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb16.html#Prados-SuarezMYR12,https://doi.org/10.1109/TITB.2011.2178033 +Edouard Auvinet,Fall Detection With Multiple Cameras: An Occlusion-Resistant Method Based on 3-D Silhouette Vertical Distribution.,2011,15,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb15.html#AuvinetMSRM11,https://doi.org/10.1109/TITB.2010.2087385 +Fei Hu,Privacy-Preserving Telecardiology Sensor Networks: Toward a Low-Cost Portable Wireless Hardware/Software Codesign.,2007,11,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb11.html#HuJWD07,https://doi.org/10.1109/TITB.2007.894818 +Peter Chondro,An Effective Occipitomental View Enhancement Based on Adaptive Morphological Texture Analysis.,2017,21,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb21.html#ChondroHHCLR17,https://doi.org/10.1109/JBHI.2016.2593455 +Javier Solana,Improving Brain Injury Cognitive Rehabilitation by Personalized Telerehabilitation Services: Guttmann Neuropersonal Trainer.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#SolanaCGORTG15,https://doi.org/10.1109/JBHI.2014.2354537 +Qiangchang Wang,Multiscale Rotation-Invariant Convolutional Neural Networks for Lung Texture Classification.,2018,22,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb22.html#WangZYJCY18,https://doi.org/10.1109/JBHI.2017.2685586 +Branko G. Celler,Home Telemonitoring of Vital Signs - Technical Challenges and Future Directions.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#CellerS15,https://doi.org/10.1109/JBHI.2014.2351413 +Angelo Rossi Mori,Integration of clinical information across patient records: a comparison of mechanisms used to enforce semantic coherence.,1998,2,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb2.html#MoriC98,https://doi.org/10.1109/4233.737579 +Argiris Sakellariou,Investigating the Minimum Required Number of Genes for the Classification of Neuromuscular Disease Microarray Data.,2011,15,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb15.html#SakellariouSS11,https://doi.org/10.1109/TITB.2011.2130531 +Fatih Altiparmak,Information Mining Over Heterogeneous and High-Dimensional Time-Series Data in Clinical Trials Databases.,2006,10,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb10.html#AltiparmakFET06,https://doi.org/10.1109/TITB.2005.859885 +S. Walczak,Artificial neural network medical decision support tool: predicting transfusion requirements of ER patients.,2005,9,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb9.html#Walczak05,https://doi.org/10.1109/TITB.2005.847510 +Son Dinh-Van,Channel Deviation-Based Power Control in Body Area Networks.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#Dinh-VanC018,https://doi.org/10.1109/JBHI.2017.2741720 +Jumadi Abd Sukor,Signal Quality Measures on Pulse Oximetry and Blood Pressure Signals Acquired from Self-Measurement in a Home Environment.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#SukorMRL15,https://doi.org/10.1109/JBHI.2014.2361654 +Xi Long,Detection of Nocturnal Slow Wave Sleep Based on Cardiorespiratory Activity in Healthy Adults.,2017,21,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb21.html#LongFAHRL17,https://doi.org/10.1109/JBHI.2015.2487446 +Edward Sazonov,Posture and Activity Recognition and Energy Expenditure Estimation in a Wearable Platform.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#SazonovHBMS15,https://doi.org/10.1109/JBHI.2015.2432454 +Wong Han Min,Aligning biological sequences on distributed bus networks: a divisible load scheduling approach.,2005,9,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb9.html#MinV05,https://doi.org/10.1109/TITB.2005.855559 +Vasileios Korfiatis,A New Ensemble Classification System For Fracture Zone Prediction Using Imbalanced Micro-CT Bone Morphometrical Data.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#KorfiatisTM18,https://doi.org/10.1109/JBHI.2017.2723463 +An-Min Zou,Charge state determination of peptide tandem mass spectra using support vector machine (SVM).,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#ZouSDW10,https://doi.org/10.1109/TITB.2010.2040287 +Antonella Meloni,Mutual Information Preconditioning Improves Structure Learning of Bayesian Networks From Medical Databases.,2009,13,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb13.html#MeloniRPL09,https://doi.org/10.1109/TITB.2009.2026273 +R. Holle,Evaluation of telemedical services.,1999,3,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb3.html#HolleZ99,https://doi.org/10.1109/4233.767083 +Emil Jovanov,Tactical audio and acoustic rendering in biomedical applications.,1999,3,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb3.html#JovanovWRSQK99,https://doi.org/10.1109/4233.767086 +Carlos Hernández Salvador,Airmed-cardio: a GSM and Internet services-based system for out-of-hospital follow-up of cardiac patients.,2005,9,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb9.html#SalvadorCMCMMCLM05,https://doi.org/10.1109/TITB.2004.840067 +Ali Alinejad,Cross-Layer Ultrasound Video Streaming Over Mobile WiMAX and HSUPA Networks.,2012,16,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb16.html#AlinejadPI12,https://doi.org/10.1109/TITB.2011.2154384 +Chanchala D. Kaddi,Models for Predicting Stage in Head and Neck Squamous Cell Carcinoma Using Proteomic and Transcriptomic Data.,2017,21,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb21.html#KaddiW17,https://doi.org/10.1109/JBHI.2015.2489158 +Carson A. Wick,A System for Seismocardiography-Based Identification of Quiescent Heart Phases: Implications for Cardiac Imaging.,2012,16,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb16.html#WickSMBBBSTT12,https://doi.org/10.1109/TITB.2012.2198071 +Zhanli Hu,Geometric Calibration of a Micro-CT System and Performance for Insect Imaging.,2011,15,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb15.html#HuGZRZZX11,https://doi.org/10.1109/TITB.2011.2159012 +Yung-Ming Kuo,A visual context-awareness-based sleeping-respiration measurement system.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#KuoLC10,https://doi.org/10.1109/TITB.2009.2036168 +Zhijun Li,sEMG-Based Joint Force Control for an Upper-Limb Power-Assist Exoskeleton Robot.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#LiWSYXZ14,https://doi.org/10.1109/JBHI.2013.2286455 +Marc Q. Ma,ELB-Q: A New Method for Improving the Robustness in DNA Microarray Image Quantification.,2007,11,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb11.html#MaZWS07,https://doi.org/10.1109/TITB.2006.884360 +M. Khalid Khan Niazi,Visually Meaningful Histopathological Features for Automatic Grading of Prostate Cancer.,2017,21,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb21.html#NiaziYZCCKLG17,https://doi.org/10.1109/JBHI.2016.2565515 +Jian Wu,A Wearable System for Recognizing American Sign Language in Real-Time Using IMU and Surface EMG Sensors.,2016,20,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb20.html#WuSJ16,https://doi.org/10.1109/JBHI.2016.2598302 +Sungmee Park,Smart textile-based wearable biomedical systems: a transition plan for research to reality.,2010,14,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb14.html#ParkJ10,https://doi.org/10.1109/TITB.2009.2025817 +Anke Meyer-Bäse,Comparison of two exploratory data analysis methods for fMRI: unsupervised clustering versus independent component analysis.,2004,8,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb8.html#Meyer-BaeseWL04,https://doi.org/10.1109/TITB.2004.834406 +Koon-Pong Wong,Simultaneous estimation of physiological parameters and the input function - in vivo PET data.,2001,5,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb5.html#WongFMF01,https://doi.org/10.1109/4233.908397 +Jung Eun Shim,Exception discovery: a novel method for the identification of differentially expressed proteins.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#ShimKLCY10,https://doi.org/10.1109/TITB.2008.917927 +Anna M. Bianchi,Processing of signals recorded through smart devices: sleep-quality assessment.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#BianchiMC10,https://doi.org/10.1109/TITB.2010.2049025 +Haik Kalantarian,A Hierarchical Classification and Segmentation Scheme for Processing Sensor Data.,2017,21,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb21.html#KalantarianSS17,https://doi.org/10.1109/JBHI.2016.2526679 +Heinz U. Lemke,Editorial Car Special Issue Of The IEEE Transactions On Information Technology In Biomedicine.,1997,1,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb1.html#LemkeV97,https://doi.org/10.1109/TITB.1997.681169 +Xi Long,A new preprocessing approach for cell recognition.,2005,9,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb9.html#LongCY05,https://doi.org/10.1109/TITB.2005.847502 +Pradeeba Sridar,Automatic Measurement of Thalamic Diameter in 2-D Fetal Ultrasound Brain Images Using Shape Prior Constrained Regularized Level Sets.,2017,21,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb21.html#SridarKLWQBPFKN17,https://doi.org/10.1109/JBHI.2016.2582175 +Wei Chen 0015,Rhythm of Life Aid (ROLA): An Integrated Sensor System for Supporting Medical Staff During Cardiopulmonary Resuscitation (CPR) of Newborn Infants.,2010,14,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb14.html#ChenBFAKGT10,https://doi.org/10.1109/TITB.2010.2050592 +Toshiyo Tamura,A Wearable Airbag to Prevent Fall Injuries.,2009,13,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb13.html#TamuraYSUT09,https://doi.org/10.1109/TITB.2009.2033673 +G. Williams,A systems approach to achieving CarerNet-an integrated and intelligent telecare system.,1998,2,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb2.html#WilliamsDB98,https://doi.org/10.1109/4233.678527 +Majd Alwan,Impact of Monitoring Technology in Assisted Living: Outcome Pilot.,2006,10,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb10.html#AlwanDMKTLF06,https://doi.org/10.1109/TITB.2005.855552 +Sebastian Päßler,Food Intake Monitoring: Automated Chew Event Detection in Chewing Sounds.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#PasslerF14,https://doi.org/10.1109/JBHI.2013.2268663 +Eleni Kaldoudi,Depicting Educational Content Repurposing Context and Inheritance.,2011,15,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb15.html#KaldoudiDKB11,https://doi.org/10.1109/TITB.2010.2092442 +Lin Yang,Virtual Microscopy and Grid-Enabled Decision Support for Large-Scale Analysis of Imaged Pathology Specimens.,2009,13,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb13.html#YangCMSGBF09,https://doi.org/10.1109/TITB.2009.2020159 +Jun Zhang 0018,Alzheimer's Disease Diagnosis Using Landmark-Based Features From Longitudinal Structural MR Images.,2017,21,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb21.html#ZhangLAGS17,https://doi.org/10.1109/JBHI.2017.2704614 +Muhammad Farooq,Segmentation and Characterization of Chewing Bouts by Monitoring Temporalis Muscle Using Smart Glasses With Piezoelectric Sensor.,2017,21,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb21.html#FarooqS17,https://doi.org/10.1109/JBHI.2016.2640142 +Stevan Jovica Marinkovic,Energy-Efficient Low Duty Cycle MAC Protocol for Wireless Body Area Networks.,2009,13,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb13.html#MarinkovicPSFM09,https://doi.org/10.1109/TITB.2009.2033591 +Emma MacPherson,Guest Editorial: Terahertz imaging and spectroscopy for biology and biomedicine.,2013,17,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb17.html#MacPhersonGPHW13,https://doi.org/10.1109/JBHI.2013.2257333 +Philipos C. Loizou,An Integrated System for the Segmentation of Atherosclerotic Carotid Plaque.,2007,11,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb11.html#LoizouPPN07,https://doi.org/10.1109/TITB.2006.890019 +Juan M. Corchado,Using heterogeneous wireless sensor networks in a telemonitoring system for healthcare.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#CorchadoBTA10,https://doi.org/10.1109/TITB.2009.2034369 +Ignacio Blanquer,Enhancing Privacy and Authorization Control Scalability in the Grid Through Ontologies.,2009,13,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb13.html#BlanquerHST09,https://doi.org/10.1109/TITB.2008.2003369 +James Geller,Evaluation and application of a semantic network partition.,2002,6,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb6.html#GellerPHCG02,https://doi.org/10.1109/TITB.2002.1006297 +Karen Panetta,Nonlinear Unsharp Masking for Mammogram Enhancement.,2011,15,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb15.html#PanettaZAJ11,https://doi.org/10.1109/TITB.2011.2164259 +Bin Zhang,High-resolution versus high-sensitivity SPECT imaging with geometric blurring compensation for various parallel-hole collimation geometries.,2010,14,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb14.html#ZhangZ10,https://doi.org/10.1109/TITB.2010.2050145 +Chih-Hsuan Wei,SimConcept: A Hybrid Approach for Simplifying Composite Named Entities in Biomedical Text.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#WeiLL15,https://doi.org/10.1109/JBHI.2015.2422651 +Erdem Akagündüz,Silhouette Orientation Volumes for Efficient Fall Detection in Depth Videos.,2017,21,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb21.html#AkagunduzASWI17,https://doi.org/10.1109/JBHI.2016.2570300 +Yosuke Kurihara,Sleep-States-Transition Model by Body Movement and Estimation of Sleep-Stage-Appearance Probabilities by Kalman Filter.,2010,14,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb14.html#KuriharaWT10,https://doi.org/10.1109/TITB.2010.2067221 +Kostis P. Michmizos,Prediction of the Timing and the Rhythm of the Parkinsonian Subthalamic Nucleus Neural Spikes Using the Local Field Potentials.,2012,16,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb16.html#MichmizosSN12,https://doi.org/10.1109/TITB.2011.2158549 +Kup-Sze Choi,Interactive deformation of soft tissues with haptic feedback for medical learning.,2003,7,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb7.html#ChoiSH03,https://doi.org/10.1109/TITB.2003.821311 +Sidra Minhas,Predicting Progression From Mild Cognitive Impairment to Alzheimer's Disease Using Autoregressive Modelling of Longitudinal and Multimodal Biomarkers.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#MinhasKRKA18,https://doi.org/10.1109/JBHI.2017.2703918 +Pietro Valdastri,An implantable telemetry platform system for in vivo monitoring of physiological parameters.,2004,8,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb8.html#ValdastriMACD04,https://doi.org/10.1109/TITB.2004.834389 +Yookyeong Carolyn Sim,Temperature-Dependent Terahertz Imaging of Excised Oral Malignant Melanoma.,2013,17,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb17.html#SimAPPS13,https://doi.org/10.1109/JBHI.2013.2252357 +Yong-Sheng Yan,An Efficient Motion-Resistant Method for Wearable Pulse Oximeter.,2008,12,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb12.html#YanZ08,https://doi.org/10.1109/TITB.2007.902173 +Fen Miao,A Novel Continuous Blood Pressure Estimation Approach Based on Data Mining Techniques.,2017,21,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb21.html#MiaoFZDHHL17,https://doi.org/10.1109/JBHI.2017.2691715 +A. Pal,Telemedicine diffusion in a developing Country: The case of India (march 2004).,2005,9,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb9.html#PalMCDM05,https://doi.org/10.1109/TITB.2004.842410 +Miew Keen Choong,Autoregressive-Model-Based Missing Value Estimation for DNA Microarray Time Series Data.,2009,13,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb13.html#ChoongCY09,https://doi.org/10.1109/TITB.2008.2007421 +Hong Shen 0003,Optimal scheduling of tracing computations for real-time vascular landmark extraction from retinal fundus images.,2001,5,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb5.html#ShenRSTT01,https://doi.org/10.1109/4233.908405 +B. M. W. Cheng,A nurse rostering system using constraint programming and redundant modeling.,1997,1,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb1.html#ChengLW97,https://doi.org/10.1109/4233.594027 +E. Echeverri,Limits of Capacity for the Exchange of Information in the Human Nervous System.,2006,10,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb10.html#Echeverri06,https://doi.org/10.1109/TITB.2006.879585 +Mordekhay Medvedovsky,Virtual MEG Helmet: Computer Simulation of an Approach to Neuromagnetic Field Sampling.,2016,20,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb20.html#MedvedovskyNKBP16,https://doi.org/10.1109/JBHI.2015.2392785 +Altug Akay,Assessing Antidepressants Using Intelligent Data Monitoring and Mining of Online Fora.,2016,20,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb20.html#AkayDE16,https://doi.org/10.1109/JBHI.2016.2539972 +Min Liu,Stroke Parameters Identification Algorithm in Handwriting Movements Analysis by Synthesis.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#LiuGW15,https://doi.org/10.1109/JBHI.2014.2312334 +Jeffrey Palmer,Guest Editorial Body Sensor Networks.,2016,20,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb20.html#PalmerT16,https://doi.org/10.1109/JBHI.2016.2599918 +Victor Maojo,Guest Editorial Introduction to the Special Issue on Biomedical Informatics: Research and Applications.,2007,11,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb11.html#MaojoKM07,https://doi.org/10.1109/TITB.2007.899576 +Nader Karimi,Lossless Compression of RNAi Fluorescence Images Using Regional Fluctuations of Pixels.,2013,17,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb17.html#KarimiSS13,https://doi.org/10.1109/JBHI.2012.2235453 +Awais Mansoor,A Statistical Modeling Approach to Computer-Aided Quantification of Dental Biofilm.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#MansoorPSRR15,https://doi.org/10.1109/JBHI.2014.2310204 +Rifai Chai,Driver Fatigue Classification With Independent Component by Entropy Rate Bound Minimization Analysis in an EEG-Based System.,2017,21,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb21.html#ChaiNNLTC017,https://doi.org/10.1109/JBHI.2016.2532354 +Robert Stevens,Building a bioinformatics ontology using OIL.,2002,6,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb6.html#StevensGHB02a,https://doi.org/10.1109/TITB.2002.1006301 +Lingling Yang,EEG Activity During Movement Planning Encodes Upcoming Peak Speed and Acceleration and Improves the Accuracy in Predicting Hand Kinematics.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#YangLPSP15,https://doi.org/10.1109/JBHI.2014.2327635 +Laura Cunningham,Home-Based Monitoring and Assessment of Parkinson's Disease.,2011,15,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb15.html#CunninghamMNMFC11,https://doi.org/10.1109/TITB.2010.2091142 +Shijun Wang,Matching 3-D Prone and Supine CT Colonography Scans Using Graphs.,2012,16,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb16.html#WangPUPWS12,https://doi.org/10.1109/TITB.2012.2194297 +Keith Marsolo,Spatial Modeling and Classification of Corneal Shape.,2007,11,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb11.html#MarsoloTBP07,https://doi.org/10.1109/TITB.2006.879591 +Huazheng Zhu,A Novel Approach to Multiple Sequence Alignment Using Multiobjective Evolutionary Algorithm Based on Decomposition.,2016,20,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb20.html#ZhuHJ16,https://doi.org/10.1109/JBHI.2015.2403397 +Cornelia Setz,Discriminating stress from cognitive load using a wearable EDA device.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#SetzASMTE10,https://doi.org/10.1109/TITB.2009.2036164 +Roman Trobec,Synthesis of the 12-Lead Electrocardiogram From Differential Leads.,2011,15,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb15.html#TrobecT11,https://doi.org/10.1109/TITB.2011.2159236 +Richard Ribon Fletcher,iCalm: wearable sensor and network architecture for wirelessly communicating and logging autonomic activity.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#FletcherDGEWFKHPP10,https://doi.org/10.1109/TITB.2009.2038692 +Ed Chiu,Wavelet-based space-frequency compression of ultrasound images.,2001,5,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb5.html#ChiuVA01,https://doi.org/10.1109/4233.966105 +Sai-Ho Ling,Genetic-Algorithm-Based Multiple Regression With Fuzzy Inference System for Detection of Nocturnal Hypoglycemic Episodes.,2011,15,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb15.html#LingN11,https://doi.org/10.1109/TITB.2010.2103953 +Julie Coloigner,A Novel Classification Method for Prediction of Rectal Bleeding in Prostate Cancer Radiotherapy Based on a Semi-Nonnegative ICA of 3D Planned Dose Distributions.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#ColoignerFKWDLS15,https://doi.org/10.1109/JBHI.2014.2328315 +Sheng Ge,Sinusoidal Signal Assisted Multivariate Empirical Mode Decomposition for Brain-Computer Interfaces.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#GeSWLGSIYLWZ18,https://doi.org/10.1109/JBHI.2017.2775657 +Eisuke Hanada,A screening gate to prevent entry of mobile telephone handsets in the speaking/standby mode into prohibited and restricted areas.,2000,4,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb4.html#HanadaWN00,https://doi.org/10.1109/4233.897064 +Cheikh Latyr Fall,Wireless sEMG-Based Body-Machine Interface for Assistive Technology Devices.,2017,21,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb21.html#FallGDGDCGG17,https://doi.org/10.1109/JBHI.2016.2642837 +N. Pagoulatos,Interactive 3D registration of ultrasound and magnetic resonance images based on a magnetic position sensor.,1999,3,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb3.html#PagoulatosEHK99,https://doi.org/10.1109/4233.809172 +Mehdi Banitalebi Dehkordi,Compressive-Sampling-Based Positioning in Wireless Body Area Networks.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#DehkordiAP14,https://doi.org/10.1109/JBHI.2013.2261997 +Holly Brügge Jimison,Unobtrusive monitoring of computer interactions to detect cognitive status in elders.,2004,8,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb8.html#JimisonPMP04,https://doi.org/10.1109/TITB.2004.835539 +Seon-Cheol Hwang,A Web-based TelePACS using an asymmetric satellite system.,2000,4,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb4.html#HwangL00,https://doi.org/10.1109/4233.870031 +Josef Ingenerf,Telemedicine and terminology: different needs of context information.,1999,3,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb3.html#Ingenerf99,https://doi.org/10.1109/4233.767084 +Fei Hu 0001,Trustworthy Data Collection From Implantable Medical Devices Via High-Speed Security Implementation Based on IEEE 1363.,2010,14,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb14.html#HuHLSWRW10,https://doi.org/10.1109/TITB.2010.2049204 +Weidong Cai,Content-based retrieval of dynamic PET functional images.,2000,4,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb4.html#CaiFF00,https://doi.org/10.1109/4233.845208 +Chih-Hua Tai,Systematical Approach for Detecting the Intention and Intensity of Feelings on Social Network.,2016,20,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb20.html#TaiTC16,https://doi.org/10.1109/JBHI.2016.2535721 +Felix Fischer,Integrating segmentation methods from different tools into a visualization program using an object-based plug-in interface.,2010,14,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb14.html#FischerSHG10,https://doi.org/10.1109/TITB.2010.2044243 +Dimitrios G. Katehakis,Delivering a Lifelong Integrated Electronic Health Record Based on a Service Oriented Architecture.,2007,11,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb11.html#KatehakisSKAT07,https://doi.org/10.1109/TITB.2006.889711 +Kevin Cleary,Technology improvements for image-guided and minimally invasive spine procedures.,2002,6,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb6.html#ClearyCSFMW02,https://doi.org/10.1109/TITB.2002.806089 +Gabriele Becattini,A Fully Automated System for Adherent Cells Microinjection.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#BecattiniMC14,https://doi.org/10.1109/JBHI.2013.2248161 +Wen-Jyi Hwang,Scalable medical data compression and transmission using wavelet transform for telemedicine applications.,2003,7,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb7.html#HwangCL03,https://doi.org/10.1109/TITB.2003.808499 +Bernard Fong,On the performance of telemedicine system using 17-GHz orthogonally polarized microwave links under the influence of heavy rainfall.,2005,9,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb9.html#FongFH05,https://doi.org/10.1109/TITB.2005.847499 +Verónica García-Pérez,A 3-D Collision Handling Algorithm for Surgery Simulation Based on Feedback Fuzzy Logic.,2009,13,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb13.html#Garcia-PerezMAA09,https://doi.org/10.1109/TITB.2009.2016838 +Gerald Schaefer,Data mining of gene expression data by fuzzy and hybrid fuzzy methods.,2010,14,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb14.html#SchaeferN10,https://doi.org/10.1109/TITB.2009.2033590 +Gregorio López,LOBIN: E-Textile and Wireless-Sensor-Network-Based Platform for Healthcare Monitoring in Future Hospital Environments.,2010,14,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb14.html#LopezCM10,https://doi.org/10.1109/TITB.2010.2058812 +Nenad Filipovic,ARTreat Project: Three-Dimensional Numerical Simulation of Plaque Formation and Development in the Arteries.,2012,16,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb16.html#FilipovicRTMNZPKFP12,https://doi.org/10.1109/TITB.2011.2168418 +Anwoy Kumar Mohanty,A Conjugate Exponential Model for Cancer Tissue Heterogeneity.,2016,20,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb20.html#MohantyDV16,https://doi.org/10.1109/JBHI.2015.2410279 +Marcel Mlynczak,Detecting Breathing and Snoring Episodes Using a Wireless Tracheal Sensor - A Feasibility Study.,2017,21,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb21.html#MlynczakMMK17,https://doi.org/10.1109/JBHI.2016.2632976 +Anastasis Oulas,MicroRNAs and Cancer - The Search Begins!,2009,13,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb13.html#OulasRP09,https://doi.org/10.1109/TITB.2008.2007086 +Enrique J. Gómez,A broadband multimedia collaborative system for advanced teleradiology and medical imaging diagnosis.,1998,2,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb2.html#GomezPOMR98,https://doi.org/10.1109/4233.735779 +Stergios Christodoulidis,Multisource Transfer Learning With Convolutional Neural Networks for Lung Pattern Analysis.,2017,21,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb21.html#Christodoulidis17,https://doi.org/10.1109/JBHI.2016.2636929 +Sergio González-Valenzuela,Mobility Support for Health Monitoring at Home Using Wearable Sensors.,2011,15,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb15.html#Gonzalez-ValenzuelaCL11,https://doi.org/10.1109/TITB.2010.2104326 +Luis U. Hernandez Munoz,Evaluation of AllergiSense Smartphone Tools for Adrenaline Injection Training.,2017,21,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb21.html#MunozWLSKMMDWCD17,https://doi.org/10.1109/JBHI.2015.2497717 +Ashnil Kumar,An Ensemble of Fine-Tuned Convolutional Neural Networks for Medical Image Classification.,2017,21,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb21.html#KumarKLFF17,https://doi.org/10.1109/JBHI.2016.2635663 +Sardar Ansari,Motion Artifact Suppression in Impedance Pneumography Signal for Portable Monitoring of Respiration: An Adaptive Approach.,2017,21,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb21.html#AnsariWN17,https://doi.org/10.1109/JBHI.2016.2524646 +Ann-Ping Tsou,Biological Data Warehousing System for Identifying Transcriptional Regulatory Sites From Gene Expressions of Microarray Data.,2006,10,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb10.html#TsouSLHHTL06,https://doi.org/10.1109/TITB.2005.862466 +Marie Demonceau,Contribution of a Trunk Accelerometer System to the Characterization of Gait in Patients With Mild-to-Moderate Parkinson's Disease.,2015,19,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb19.html#DemonceauDCSBMG15,https://doi.org/10.1109/JBHI.2015.2469540 +Tyrone Fernando,Automatic control of arterial carbon dioxide tension in mechanically ventilated patients.,2002,6,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb6.html#FernandoCP02,https://doi.org/10.1109/TITB.2002.806084 +Dongmin Guo,Red Blood Cell Tracking Using Optical Flow Methods.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#GuoVZ14,https://doi.org/10.1109/JBHI.2013.2281915 +Deborah Richards,Improving Health Outcomes Sooner Rather Than Later via an Interactive Website and Virtual Specialist.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#RichardsC18,https://doi.org/10.1109/JBHI.2017.2782210 +Fan Pan,Variation of the Korotkoff Stethoscope Sounds During Blood Pressure Measurement: Analysis Using a Convolutional Neural Network.,2017,21,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb21.html#PanHLLMZ17,https://doi.org/10.1109/JBHI.2017.2703115 +David Gibson,A Wavelet-Based Region of Interest Encoder for the Compression of Angiogram Video Sequences.,2004,8,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb8.html#GibsonSW04,https://doi.org/10.1109/TITB.2004.826722 +Johannes N. Stahl,Teleconferencing with dynamic medical images.,2000,4,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb4.html#StahlZZPCH00,https://doi.org/10.1109/4233.845201 +Sina Khanmohammadi,Adaptive Seizure Onset Detection Framework Using a Hybrid PCA-CSP Approach.,2018,22,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb22.html#KhanmohammadiC18,https://doi.org/10.1109/JBHI.2017.2703873 +Athanasios V. Vasilakos,Guest editorial: special section on affective and pervasive computing for healthcare.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#VasilakosL10,https://doi.org/10.1109/TITB.2010.2043299 +Jinye Peng,Constructing distributed hippocratic video databases for privacy-preserving online patient training and counseling.,2010,14,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb14.html#PengBLGF10,https://doi.org/10.1109/TITB.2009.2029695 +Thitiporn Chanwimaluang,Hybrid Retinal Image Registration.,2006,10,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb10.html#ChanwimaluangFF06,https://doi.org/10.1109/TITB.2005.856859 +Ting-Yu Liu,ECG Data Encryption Then Compression Using Singular Value Decomposition.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#LiuLW18,https://doi.org/10.1109/JBHI.2017.2698498 +Swamy Laxminarayan,Biomedical information technology: medicine and health care in the digital future.,1997,1,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb1.html#LaxminarayanCRFSB97,https://doi.org/10.1109/4233.594016 +Devrim ünay,Local structure-based region-of-interest retrieval in brain MR images.,2010,14,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb14.html#UnayEJ10,https://doi.org/10.1109/TITB.2009.2038152 +Marc Bächlin,Wearable assistant for Parkinson's disease patients with the freezing of gait symptom.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#BachlinPRMHGT10,https://doi.org/10.1109/TITB.2009.2036165 +Aristotelis A. Chatziioannou,GRISSOM Platform: Enabling Distributed Processing and Management of Biological Data Through Fusion of Grid and Web Technologies.,2011,15,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb15.html#ChatziioannouKDMKM11,https://doi.org/10.1109/TITB.2010.2092784 +Jasjit S. Suri,White and black blood volumetric angiographic filtering: ellipsoidal scale-space approach.,2002,6,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb6.html#SuriLRL02,https://doi.org/10.1109/TITB.2002.1006302 +Gijs van Soest,Azimuthal Registration of Image Sequences Affected by Nonuniform Rotation Distortion.,2008,12,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb12.html#SoestBS08,https://doi.org/10.1109/TITB.2007.908000 +Jianwei Liu,Reduced Daily Recalibration of Myoelectric Prosthesis Classifiers Based on Domain Adaptation.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#LiuSZHZ16,https://doi.org/10.1109/JBHI.2014.2380454 +Srinivasa R. Raghavan,Developing decision support for dialysis treatment of chronic kidney failure.,2005,9,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb9.html#RaghavanLM05,https://doi.org/10.1109/TITB.2005.847133 +N. Kostikis,A Smartphone-Based Tool for Assessing Parkinsonian Hand Tremor.,2015,19,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb19.html#KostikisHAK15,https://doi.org/10.1109/JBHI.2015.2471093 +Parameshvyas Laxminarayan,Mining Statistically Significant Associations for Exploratory Analysis of Human Sleep Data.,2006,10,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb10.html#LaxminarayanARM06,https://doi.org/10.1109/TITB.2006.872065 +Lin Yang,Unsupervised segmentation based on robust estimation and color active contour models.,2005,9,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb9.html#YangMF05,https://doi.org/10.1109/TITB.2005.847515 +C. N. Scanaill,Long-Term Telemonitoring of Mobility Trends of Elderly People Using SMS Messaging.,2006,10,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb10.html#ScanaillAL06,https://doi.org/10.1109/TITB.2005.859890 +Mohammad Deylami,A Distributed Scheme to Manage The Dynamic Coexistence of IEEE 802.15.4-Based Health-Monitoring WBANs.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#DeylamiJ14,https://doi.org/10.1109/JBHI.2013.2278217 +Konstantinos T. Karathanasis,Experimental Study of a Hybrid Microwave Radiometry - Hyperthermia Apparatus With the Use of an Anatomical Head Phantom.,2012,16,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb16.html#KarathanasisGKU12,https://doi.org/10.1109/TITB.2012.2187301 +Michal Vossberg,DICOM Image Communication in Globus-Based Medical Grids.,2008,12,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb12.html#VossbergTK08,https://doi.org/10.1109/TITB.2007.905862 +Robert A. Dennis,InternetQuestion and Answer (iQ and A): a Web-based survey technology.,2000,4,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb4.html#DennisG00,https://doi.org/10.1109/4233.845204 +Min Wu 0007,A novel algorithm for computer-assisted measurement of cervical length from transvaginal ultrasound images.,2004,8,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb8.html#WuFC04,https://doi.org/10.1109/TITB.2004.832548 +Faezeh Marzbanrad,Methodological Comparisons of Heart Rate Variability Analysis in Patients With Type 2 Diabetes and Angiotensin Converting Enzyme Polymorphism.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#MarzbanradKHNTL16,https://doi.org/10.1109/JBHI.2015.2480778 +Seungku Kim,RSSI/LQI-Based Transmission Power Control for Body Area Networks in Healthcare Environment.,2013,17,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb17.html#KimKE13,https://doi.org/10.1109/TITB.2012.2227335 +Abhishek Srivastava,Bio-WiTel: A Low-Power Integrated Wireless Telemetry System for Healthcare Applications in 401-406 MHz Band of MedRadio Spectrum.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#SrivastavaSCDAK18,https://doi.org/10.1109/JBHI.2016.2639587 +Rangaraj M. Rangayyan,Improvement of sensitivity of breast cancer diagnosis with adaptive neighborhood contrast enhancement of mammograms.,1997,1,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb1.html#RangayyanSSDBTHR97,https://doi.org/10.1109/4233.654859 +Rahil Garnavi,Computer-Aided Diagnosis of Melanoma Using Border- and Wavelet-Based Texture Analysis.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#GarnaviAB12,https://doi.org/10.1109/TITB.2012.2212282 +Gokce Laleci,Providing Semantic Interoperability Between Clinical Care and Clinical Research Domains.,2013,17,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb17.html#LaleciYD13,https://doi.org/10.1109/TITB.2012.2219552 +Yen-Cheng Kuan,Wireless Gigabit Data Telemetry for Large-Scale Neural Recording.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#KuanLKCL15,https://doi.org/10.1109/JBHI.2015.2416202 +Fayao Liu,Multiple Kernel Learning in the Primal for Multimodal Alzheimer's Disease Classification.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#LiuZSY14,https://doi.org/10.1109/JBHI.2013.2285378 +Louis Atallah,Real-Time Activity Classification Using Ambient and Wearable Sensors.,2009,13,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb13.html#AtallahLAKY09,https://doi.org/10.1109/TITB.2009.2028575 +Daniel T. J. Arthur,Quantitative Deconvolution of Human Thermal Infrared Emittance.,2013,17,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb17.html#ArthurK13,https://doi.org/10.1109/TITB.2012.2225108 +Ling Li,Guest EditorialIntegrated Healthcare Information Systems.,2012,16,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb16.html#LiGZV12,https://doi.org/10.1109/TITB.2012.2198317 +Gerald-P. Glombitza,Virtual surgery in a (tele-)radiology framework.,1999,3,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb3.html#GlombitzaEHEM99,https://doi.org/10.1109/4233.788580 +Johanna Petersen,Unobtrusive In-Home Detection of Time Spent Out-of-Home With Applications to Loneliness and Physical Activity.,2014,18,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb18.html#PetersenAKPH14,https://doi.org/10.1109/JBHI.2013.2294276 +Kyle N. Winfree,Modeling Clinically Validated Physical Activity Assessments Using Commodity Hardware.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#WinfreeD18,https://doi.org/10.1109/JBHI.2017.2787461 +Deepak Joshi,A Novel Approach for Toe Off Estimation During Locomotion and Transitions on Ramps and Level Ground.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#JoshiNH16,https://doi.org/10.1109/JBHI.2014.2377749 +Michael D. Proctor,Object-oriented modeling of patients in a medical federation.,2001,5,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb5.html#ProctorC01,https://doi.org/10.1109/4233.945295 +Elisa Ficarra,Automated DNA fragments recognition and sizing through AFM image processing.,2005,9,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb9.html#FicarraBMZ05,https://doi.org/10.1109/TITB.2005.855546 +Dongbo Zhang,Novel Accurate and Fast Optic Disc Detection in Retinal Images With Vessel Distribution and Directional Characteristics.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#ZhangZ16,https://doi.org/10.1109/JBHI.2014.2365514 +Kevin T. Sweeney,Artifact Removal in Physiological Signals - Practices and Possibilities.,2012,16,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb16.html#SweeneyWM12,https://doi.org/10.1109/TITB.2012.2188536 +Xiaodong Yang 0004,Sparsity-Inspired Nonparametric Probability Characterization for Radio Propagation in Body Area Networks.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#YangYAZRZA15,https://doi.org/10.1109/JBHI.2014.2334714 +Matthias Ring,A Temperature-Based Bioimpedance Correction for Water Loss Estimation During Sports.,2016,20,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb20.html#RingLRME16,https://doi.org/10.1109/JBHI.2015.2466076 +Stefan Vogel,In-Ear Vital Signs Monitoring Using a Novel Microoptic Reflective Sensor.,2009,13,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb13.html#VogelHHBL09,https://doi.org/10.1109/TITB.2009.2033268 +Shahid Hussain,Effect of Cadence Regulation on Muscle Activation Patterns During Robot-Assisted Gait: A Dynamic Simulation Study.,2013,17,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb17.html#HussainXJ13,https://doi.org/10.1109/TITB.2012.2226596 +Shu-Chen Cheng,A novel approach to diagnose diabetes based on the fractal characteristics of retinal images.,2003,7,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb7.html#ChengH03,https://doi.org/10.1109/TITB.2003.813792 +Juan Munoz-Gomez,Correlation Modeling for Compression of Computed Tomography Images.,2013,17,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb17.html#Munoz-GomezBMS13,https://doi.org/10.1109/JBHI.2013.2264595 +Emmanuel Roux,Evaluation of statistical association measures for the automatic signal generation in pharmacovigilance.,2005,9,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb9.html#RouxTFBT05,https://doi.org/10.1109/TITB.2005.855566A +Suvra Pal,Expectation Maximization Algorithm for Box-Cox Transformation Cure Rate Model and Assessment of Model Misspecification Under Weibull Life*.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#PalB18,https://doi.org/10.1109/JBHI.2017.2704920 +Daw-Tung Lin,Computer-Aided Kidney Segmentation on Abdominal CT Images.,2006,10,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb10.html#LinLH06,https://doi.org/10.1109/TITB.2005.855561 +Madhusudhanan Balasubramanian,A Framework for Detecting Glaucomatous Progression in the Optic Nerve Head of an Eye Using Proper Orthogonal Decomposition.,2009,13,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb13.html#BalasubramanianZBTWIKZZ09,https://doi.org/10.1109/TITB.2009.2020158 +Haitham M. Al-Angari,Automated Recognition of Obstructive Sleep Apnea Syndrome Using Support Vector Machine Classifier.,2012,16,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb16.html#Al-AngariS12,https://doi.org/10.1109/TITB.2012.2185809 +A. G. Anagnostakis,Semantics-based information modeling for the health-care administration sector: the Citation platform.,2005,9,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb9.html#AnagnostakisTSFL05,https://doi.org/10.1109/TITB.2005.847145 +Syed Sibte Raza Abidi,A knowledge creation info-structure to acquire and crystallize the tacit knowledge of health-care experts.,2005,9,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb9.html#AbidiCC05,https://doi.org/10.1109/TITB.2005.847188 +José M. Alonso,A Grid Computing-Based Approach for the Acceleration of Simulations in Cardiology.,2008,12,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb12.html#AlonsoFHMST08,https://doi.org/10.1109/TITB.2007.907982 +Swamy Laxminarayan,Editorial Healthcare Information Technology: What Is On The Horizon?,1997,1,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb1.html#Laxminarayan97a,https://doi.org/10.1109/TITB.1997.681162 +Wilmondes Manzi de Arantes Júnior,Defining quality-measurable medical alerts from incomplete data through fuzzy linguistic variables and modifiers.,2010,14,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb14.html#JuniorV10,https://doi.org/10.1109/TlTB.2009.2020063 +Mohammad Hasan Imam,Detecting Subclinical Diabetic Cardiac Autonomic Neuropathy by Analyzing Ventricular Repolarization Dynamics.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#ImamKJPK16,https://doi.org/10.1109/JBHI.2015.2426206 +Miikka Ermes,Detection of Daily Activities and Sports With Wearable Sensors in Controlled and Uncontrolled Conditions.,2008,12,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb12.html#ErmesPMK08,https://doi.org/10.1109/TITB.2007.899496 +Mingxia Liu,Multi-Hypergraph Learning for Incomplete Multimodality Data.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#LiuGYS18,https://doi.org/10.1109/JBHI.2017.2732287 +Luís S. Ribeiro,XDS-I Outsourcing Proxy: Ensuring Confidentiality While Preserving Interoperability.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#RibeiroVOC14,https://doi.org/10.1109/JBHI.2013.2292776 +Emil Jovanov,Guest Editorial Body Sensor Networks: From Theory to Emerging Applications.,2009,13,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb13.html#JovanovPYZ09,https://doi.org/10.1109/TITB.2009.2034564 +Dai Meng,Accuracy Improvement on the Measurement of Human-Joint Angles.,2016,20,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb20.html#MengSV16,https://doi.org/10.1109/JBHI.2015.2394467 +R. Prashanth,High-Accuracy Classification of Parkinson's Disease Through Shape Analysis and Surface Fitting in 123I-Ioflupane SPECT Imaging.,2017,21,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb21.html#PrashanthRMG17,https://doi.org/10.1109/JBHI.2016.2547901 +Tammara Massey,Experimental analysis of a mobile health system for mood disorders.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#MasseyMPS10,https://doi.org/10.1109/TITB.2009.2034738 +Maria José de Paula Castanho,Fuzzy Receiver Operating Characteristic Curve: An Option to Evaluate Diagnostic Tests.,2007,11,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb11.html#CastanhoBYV07,https://doi.org/10.1109/TITB.2006.879593 +Eung-Hun Kim,Factors Affecting Acceptance of a Web-Based Self-Referral System.,2011,15,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb15.html#KimLCDMK11,https://doi.org/10.1109/TITB.2010.2088129 +Shivapratap Gopakumar,Stabilizing High-Dimensional Prediction Models Using Feature Graphs.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#GopakumarTNPV15,https://doi.org/10.1109/JBHI.2014.2353031 +Qi Li 0006,Analyzing and Identifying Teens' Stressful Periods and Stressor Events From a Microblog.,2017,21,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb21.html#LiXZJF17,https://doi.org/10.1109/JBHI.2016.2586519 +Michalis A. Savelonas,Active Contours Guided by Echogenicity and Texture for Delineation of Thyroid Nodules in Ultrasound Images.,2009,13,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb13.html#SavelonasILM09,https://doi.org/10.1109/TITB.2008.2007192 +Wenhan Liu,Real-Time Multilead Convolutional Neural Network for Myocardial Infarction Detection.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#LiuZZLHCWH18,https://doi.org/10.1109/JBHI.2017.2771768 +Andreas Panayides,An Effective Ultrasound Video Communication System Using Despeckle Filtering and HEVC.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#PanayidesPLPCP15,https://doi.org/10.1109/JBHI.2014.2329572 +Xiujun Gong,BAAQ: An Infrastructure for Application Integration and Knowledge Discovery in Bioinformatics.,2007,11,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb11.html#GongNYYG07,https://doi.org/10.1109/TITB.2006.888700 +Foad Dabiri,A Telehealth Architecture for Networked Embedded Systems: A Case Study in In Vivo Health Monitoring.,2009,13,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb13.html#DabiriMNHLTSS09,https://doi.org/10.1109/TITB.2009.2013248 +Yuan-Hsiang Lin,A wireless PDA-based physiological monitoring system for patient transport.,2004,8,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb8.html#LinJKCWJ04,https://doi.org/10.1109/TITB.2004.837829 +Yung-Gi Wu,Medical image compression by sampling DCT coefficients.,2002,6,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb6.html#Wu02,https://doi.org/10.1109/4233.992167 +Shichao Zhang,Detecting Differences Between Contrast Groups.,2008,12,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb12.html#Zhang08a,https://doi.org/10.1109/TITB.2008.894557 +Shuichi Toyoda,SAKURA-Viewer: Intelligent Order History Viewer Based on Two-Viewpoint Architecture.,2007,11,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb11.html#ToyodaNN07,https://doi.org/10.1109/TITB.2006.875682 +Elsa D. Angelini,Guest Editorial IEEE EMBC 2015.,2016,20,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb20.html#AngeliniBBL16,https://doi.org/10.1109/JBHI.2016.2600878 +Carlo Combi,Applying object-oriented technologies in modeling and querying temporally oriented clinical databases dealing with temporal granularity and indeterminacy.,1997,1,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb1.html#CombiCP97,https://doi.org/10.1109/4233.640654 +Chong Yeh Sai,Automated Classification and Removal of EEG Artifacts With SVM and Wavelet-ICA.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#SaiMACI18,https://doi.org/10.1109/JBHI.2017.2723420 +Longfei Han,Rule Extraction From Support Vector Machines Using Ensemble Learning Approach: An Application for Diagnosis of Diabetes.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#HanLYPC15,https://doi.org/10.1109/JBHI.2014.2325615 +Adrien Depeursinge,Mobile Medical Visual Information Retrieval.,2012,16,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb16.html#DepeursingeDEM12,https://doi.org/10.1109/TITB.2011.2173585 +Jae Hyuk Shin,Detection of Abnormal Living Patterns for Elderly Living Alone Using Support Vector Data Description.,2011,15,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb15.html#ShinLP11,https://doi.org/10.1109/TITB.2011.2113352 +Ricardo Couceiro,Real-Time Prediction of Neurally Mediated Syncope.,2016,20,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb20.html#CouceiroCPMHEBK16,https://doi.org/10.1109/JBHI.2015.2408994 +Stephan Philippi,Automated Structure Extraction and XML Conversion of Life Science Database Flat Files.,2006,10,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb10.html#PhilippiK06,https://doi.org/10.1109/TITB.2006.875653 +Sohini Roychowdhury,Blood Vessel Segmentation of Fundus Images by Major Vessel Extraction and Subimage Classification.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#RoychowdhuryKP15,https://doi.org/10.1109/JBHI.2014.2335617 +Gaetano Valenza,Oscillations of Heart Rate and Respiration Synchronize During Affective Visual Stimulation.,2012,16,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb16.html#ValenzaLS12,https://doi.org/10.1109/TITB.2012.2197632 +Saurin Parikh,High Bit-Depth Medical Image Compression With HEVC.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#ParikhRKFA18,https://doi.org/10.1109/JBHI.2017.2660482 +E. C. Karvounis,An Automated Methodology for Fetal Heart Rate Extraction From the Abdominal Electrocardiogram.,2007,11,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb11.html#KarvounisTFN07,https://doi.org/10.1109/TITB.2006.888698 +Boaz Lerner,Segmentation and Classification of Dot and Non-Dot-Like Fluorescence in situ Hybridization Signals for Automated Detection of Cytogenetic Abnormalities.,2007,11,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb11.html#LernerKY07,https://doi.org/10.1109/TITB.2007.894335 +Hayit Greenspan,Medical Image Categorization and Retrieval for PACS Using the GMM-KL Framework.,2007,11,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb11.html#GreenspanP07,https://doi.org/10.1109/TITB.2006.874191 +Li Lu 0007,Analysis of the Chaotic Characteristics of Human Colonic Activities and Comparison of Healthy Participants to Costive Subjects.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#LuYZX16,https://doi.org/10.1109/JBHI.2014.2371073 +Carlos Ordonez 0001,Evaluating Statistical Tests on OLAP Cubes to Compare Degree of Disease.,2009,13,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb13.html#OrdonezC09,https://doi.org/10.1109/TITB.2008.926989 +D. Feng,Guest-Editorial - Telehealth Systems and Applications.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#FengKKHR15,https://doi.org/10.1109/JBHI.2014.2380132 +Matthew S. Brown,Database design and implementation for quantitative image analysis research.,2005,9,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb9.html#BrownSPLMGCA05,https://doi.org/10.1109/TITB.2004.837854 +Robert Czabanski,Predicting the risk of low-fetal birth weight from cardiotocographic signals using ANBLIR system with deterministic annealing and epsilon-insensitive learning.,2010,14,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb14.html#CzabanskiJWJH10,https://doi.org/10.1109/TITB.2009.2039644 +Sarbast M. Rasheed,Integrating heterogeneous classifier ensembles for EMG signal decomposition based on classifier agreement.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#RasheedSK10,https://doi.org/10.1109/TITB.2008.2010552 +Cherry G. Ballangan,Automated Delineation of Lung Tumors in PET Images Based on Monotonicity and a Tumor-Customized Criterion.,2011,15,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb15.html#BallanganWFEYF11,https://doi.org/10.1109/TITB.2011.2159307 +Keng Siau,Health care informatics.,2003,7,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb7.html#Siau03,https://doi.org/10.1109/TITB.2002.805449 +Antonella Belfatto,Adaptive Mathematical Model of Tumor Response to Radiotherapy Based on CBCT Data.,2016,20,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb20.html#BelfattoRCCLJOB16,https://doi.org/10.1109/JBHI.2015.2453437 +Milos Jordanski,Machine Learning Approach for Predicting Wall Shear Distribution for Abdominal Aortic Aneurysm and Carotid Bifurcation Models.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#JordanskiRMFO18,https://doi.org/10.1109/JBHI.2016.2639818 +Wendy Moncur,Modeling the socially intelligent communication of health information to a patient's personal social network.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#MoncurRMC10,https://doi.org/10.1109/TITB.2009.2035361 +Tobias Bergen,Stitching and Surface Reconstruction From Endoscopic Image Sequences: A Review of Applications and Methods.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#BergenW16,https://doi.org/10.1109/JBHI.2014.2384134 +Silvia Francesca Storti,Exploring the Epileptic Brain Network Using Time-Variant Effective Connectivity and Graph Theory.,2017,21,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb21.html#StortiGKMM17,https://doi.org/10.1109/JBHI.2016.2607802 +Amir Alansary,Infant Brain Extraction in T1-Weighted MR Images Using BET and Refinement Using LCDG and MGRF Models.,2016,20,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb20.html#AlansaryISKNEMB16,https://doi.org/10.1109/JBHI.2015.2415477 +Panagiotis K. Artemiadis,An EMG-based robot control scheme robust to time-varying EMG signal features.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#ArtemiadisK10,https://doi.org/10.1109/TITB.2010.2040832 +Ebadollah Kheirati Roonizi,An Extended Bayesian Framework for Atrial and Ventricular Activity Separation in Atrial Fibrillation.,2017,21,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb21.html#RooniziS17,https://doi.org/10.1109/JBHI.2016.2625338 +Sungroh Yoon,Co-clustering: A Versatile Tool for Data Analysis in Biomedical Informatics.,2007,11,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb11.html#YoonBM07,https://doi.org/10.1109/TITB.2007.897575 +Allan Tucker,The pseudotemporal bootstrap for predicting glaucoma from cross-sectional visual field data.,2010,14,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb14.html#TuckerG10,https://doi.org/10.1109/TITB.2009.2023319 +Sriparna Saha 0001,Simultaneous Clustering and Feature Weighting Using Multiobjective Optimization for Identifying Functionally Similar miRNAs.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#SahaAKM18,https://doi.org/10.1109/JBHI.2017.2784898 +Ming Zhang,DBMap: a space-conscious data visualization and knowledge discovery framework for biomedical data warehouse.,2004,8,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb8.html#ZhangZTW04,https://doi.org/10.1109/TITB.2004.832550 +Verayuth Lertnattee,Multidimensional text classification for drug information.,2004,8,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb8.html#LertnatteeT04,https://doi.org/10.1109/TITB.2004.832 +Alexandros Berler,Using key performance indicators as knowledge-management tools at a regional health-care authority level.,2005,9,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb9.html#BerlerPK05,https://doi.org/10.1109/TITB.2005.847196 +Emanuele Neri,Interactive DICOM image transmission and telediagnosis over the European ATM network.,1998,2,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb2.html#NeriTCPBPMDCMP98,https://doi.org/10.1109/4233.678534 +Margarita Magadán-Méndez,ICA based automatic segmentation of dynamic H215 O cardiac PET images.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#Magadan-MendezJNKKR10,https://doi.org/10.1109/TITB.2007.910744 +Hamed Danandeh Hesar,An Adaptive Particle Weighting Strategy for ECG Denoising Using Marginalized Particle Extended Kalman Filter: An Evaluation in Arrhythmia Contexts.,2017,21,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb21.html#HesarM17a,https://doi.org/10.1109/JBHI.2017.2706298 +Kamal Taha,Extracting Various Classes of Data From Biological Text Using the Concept of Existence Dependency.,2015,19,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb19.html#Taha15,https://doi.org/10.1109/JBHI.2015.2392786 +Huseyin Seker,Compensatory fuzzy neural networks-based intelligent detection of abnormal neonatal cerebral Doppler ultrasound waveforms.,2001,5,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb5.html#SekerEAY01,https://doi.org/10.1109/4233.945289 +Sudipta Acharya,Multiobjective Simulated Annealing-Based Clustering of Tissue Samples for Cancer Diagnosis.,2016,20,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb20.html#Acharya0T16,https://doi.org/10.1109/JBHI.2015.2404971 +Flora Malamateniou,A workflow-based approach to virtual patient record security.,1998,2,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb2.html#MalamateniouVT98,https://doi.org/10.1109/4233.735778 +Victor Sanchez,Efficient Lossless Compression of 4-D Medical Images Based on the Advanced Video Coding Scheme.,2008,12,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb12.html#SanchezNA08,https://doi.org/10.1109/TITB.2007.911307 +Jung Hun Oh,An Extended Markov Blanket Approach to Proteomic Biomarker Detection From High-Resolution Mass Spectrometry Data.,2009,13,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb13.html#OhGSRG09,https://doi.org/10.1109/TITB.2008.2007909 +Yao Shen,Wireless Capsule Endoscopy Video Segmentation Using an Unsupervised Learning Approach Based on Probabilistic Latent Semantic Analysis With Scale Invariant Features.,2012,16,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb16.html#ShenGB12,https://doi.org/10.1109/TITB.2011.2171977 +Fang-Xiang Wu,Dynamic-model-based method for selecting significantly expressed genes from time-course expression profiles.,2010,14,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb14.html#WuZ10,https://doi.org/10.1109/TITB.2009.2025125 +Alfredo Nazábal,Human Activity Recognition by Combining a Small Number of Classifiers.,2016,20,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb20.html#NazabalGAG16,https://doi.org/10.1109/JBHI.2015.2458274 +Ming-Feng Wu,A New Method for Self-Estimation of the Severity of Obstructive Sleep Apnea Using Easily Available Measurements and Neural Fuzzy Evaluation System.,2017,21,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb21.html#WuHJCWCLCL17,https://doi.org/10.1109/JBHI.2016.2633986 +Zong Chen,Partitioning the UMLS semantic network.,2002,6,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb6.html#ChenPHGG02,https://doi.org/10.1109/TITB.2002.1006296 +Nizamettin Aydin,A direct-sequence spread-spectrum communication system for integrated sensor microsystems.,2005,9,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb9.html#AydinAC05,https://doi.org/10.1109/TITB.2004.837825 +Marco Masseroli,Management and Analysis of Genomic Functional and Phenotypic Controlled Annotations to Support Biomedical Investigation and Practice.,2007,11,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb11.html#Masseroli07,https://doi.org/10.1109/TITB.2006.884367 +Glen Wright Colopy,Bayesian Optimization of Personalized Models for Patient Vital-Sign Monitoring.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#ColopyRC18,https://doi.org/10.1109/JBHI.2017.2751509 +Hoa Dinh Nguyen,An Online Sleep Apnea Detection Method Based on Recurrence Quantification Analysis.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#NguyenWCB14,https://doi.org/10.1109/JBHI.2013.2292928 +Münevver Köküer,Cancer Risk Analysis in Families With Hereditary Nonpolyposis Colorectal Cancer.,2006,10,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb10.html#KokuerGJYG06,https://doi.org/10.1109/TITB.2006.872054 +Chiang S. Jao,The display of photographic-quality images on the Web: a comparison of two technologies.,1999,3,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb3.html#JaoHB99,https://doi.org/10.1109/4233.748977 +Alex Upton,Using Evolutional Properties of Gene Networks in Understanding Survival Prognosis of Glioblastoma.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#UptonA14,https://doi.org/10.1109/JBHI.2013.2282569 +Alberto Hernando,Inclusion of Respiratory Frequency Information in Heart Rate Variability Analysis for Stress Assessment.,2016,20,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb20.html#HernandoLGVRLCL16,https://doi.org/10.1109/JBHI.2016.2553578 +Zahra Hajihashemi,A Multidimensional Time-Series Similarity Measure With Applications to Eldercare Monitoring.,2016,20,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb20.html#HajihashemiP16,https://doi.org/10.1109/JBHI.2015.2424711 +Hongyang Jiang,An Automatic Detection System of Lung Nodule Based on Multigroup Patch-Based Deep Learning Network.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#JiangMQGL18,https://doi.org/10.1109/JBHI.2017.2725903 +Betty Ann Levine,Deployable teleradiology: Bosnia and beyond.,1998,2,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb2.html#LevineCM98,https://doi.org/10.1109/4233.678533 +Alok Kumar Chowdhury,Physical Activity Recognition Using Posterior-Adapted Class-Based Fusion of Multiaccelerometer Data.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#ChowdhuryTCT18,https://doi.org/10.1109/JBHI.2017.2705036 +Theodor Chris Panagiotakopoulos,A contextual data mining approach toward assisting the treatment of anxiety disorders.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#PanagiotakopoulosLLSAL10,https://doi.org/10.1109/TITB.2009.2038905 +Ioannis Valavanis,Exploring Robust Diagnostic Signatures for Cutaneous Melanoma Utilizing Genetic and Imaging Data.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#ValavanisMC15,https://doi.org/10.1109/JBHI.2014.2336617 +Adil Mehmood Khan,A triaxial accelerometer-based physical-activity recognition via augmented-signal features and a hierarchical recognizer.,2010,14,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb14.html#KhanLLK10,https://doi.org/10.1109/TITB.2010.2051955 +Juan Cheng,A Framework for Daily Activity Monitoring and Fall Detection Based on Surface Electromyography and Accelerometer Signals.,2013,17,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb17.html#ChengCS13,https://doi.org/10.1109/TITB.2012.2226905 +Stergiani Spyrou,A Methodology for Reliability Analysis in Health Networks.,2008,12,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb12.html#SpyrouBMPP08,https://doi.org/10.1109/TITB.2007.905125 +Jinwook Choi,MobileMed: A PDA-Based Mobile Clinical Information System.,2006,10,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb10.html#ChoiYPC06,https://doi.org/10.1109/TITB.2006.874201 +Corina Barbalata,Laryngeal Tumor Detection and Classification in Endoscopic Video.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#BarbalataM16,https://doi.org/10.1109/JBHI.2014.2374975 +Christina Orphanidou,Quality Assessment of Ambulatory ECG Using Wavelet Entropy of the HRV Signal.,2017,21,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb21.html#OrphanidouD17,https://doi.org/10.1109/JBHI.2016.2615316 +Farnood Gholami,A Microsoft Kinect-Based Point-of-Care Gait Assessment Framework for Multiple Sclerosis Patients.,2017,21,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb21.html#GholamiTKHG17,https://doi.org/10.1109/JBHI.2016.2593692 +Anca I. D. Bucur,Alignment method for spectrograms of DNA sequences.,2010,14,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb14.html#BucurLDM10,https://doi.org/10.1109/TITB.2009.2033052 +Monica Penedo,Effects of JPEG2000 Data Compression on an Automated System for Detecting Clustered Microcalcifications in Digital Mammograms.,2006,10,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb10.html#PenedoLTSV06,https://doi.org/10.1109/TITB.2005.864381 +Sangjin Jeong,An Integrated Healthcare System for Personalized Chronic Disease Care in Home-Hospital Environments.,2012,16,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb16.html#JeongYSKCP12,https://doi.org/10.1109/TITB.2012.2190989 +Md Kafiul Islam,A Wavelet-Based Artifact Reduction From Scalp EEG for Epileptic Seizure Detection.,2016,20,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb20.html#IslamRY16,https://doi.org/10.1109/JBHI.2015.2457093 +Peter Meso,An Overview of Potential Factors for Effective Telemedicine Transfer to Sub-Saharan Africa.,2009,13,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb13.html#MesoMS09,https://doi.org/10.1109/TITB.2007.899807 +Jesús D. Trigo,A Review on Digital ECG Formats and the Relationships Between Them.,2012,16,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb16.html#TrigoAMG12,https://doi.org/10.1109/TITB.2011.2176955 +Gang Liu,Multiscale Adaptive Basis Function Modeling of Spatiotemporal Vectorcardiogram Signals.,2013,17,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb17.html#LiuY13,https://doi.org/10.1109/JBHI.2013.2243842 +Baopu Li,Tumor Recognition in Wireless Capsule Endoscopy Images Using Textural Features and SVM-Based Feature Selection.,2012,16,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb16.html#LiM12,https://doi.org/10.1109/TITB.2012.2185807 +Claudia Wittke,On the Classification of Prostate Carcinoma With Methods from Spatial Statistics.,2007,11,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb11.html#WittkeMS07,https://doi.org/10.1109/TITB.2006.888703 +Ali Fatih Demir,Anatomical Region-Specific In Vivo Wireless Communication Channel Characterization.,2017,21,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb21.html#DemirAAAQSA17,https://doi.org/10.1109/JBHI.2016.2618890 +Evanthia E. Tripoliti,Automated Diagnosis of Diseases Based on Classification: Dynamic Determination of the Number of Trees in Random Forests Algorithm.,2012,16,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb16.html#TripolitiFM12,https://doi.org/10.1109/TITB.2011.2175938 +David Dagan Feng,Information technology applications in biomedical functional imaging.,1999,3,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb3.html#Feng99,https://doi.org/10.1109/4233.788585 +Julius Hannink,Mobile Stride Length Estimation With Deep Convolutional Neural Networks.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#HanninkKPBSGKE18,https://doi.org/10.1109/JBHI.2017.2679486 +Elena Pirogova,Investigating the Interaction Between Oncogene and Tumor Suppressor Protein.,2009,13,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb13.html#PirogovaAC09,https://doi.org/10.1109/TITB.2008.2003338 +Lei Sui,A knowledge-based boundary delineation system for contrast ventriculograms.,2001,5,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb5.html#SuiHS01,https://doi.org/10.1109/4233.924802 +Hui Huang 0012,Blind Integrity Verification of Medical Images.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#HuangCSLR12,https://doi.org/10.1109/TITB.2012.2207435 +Peter N. Brett,Editorial emerging trends at the threshold of a new millennium.,2000,4,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb4.html#BrettD00,https://doi.org/10.1109/TITB.2000.826853 +Laura M. Roa,Guest Editorial Biomedical ITC Convergence Engineering.,2014,18,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb18.html#RoaRSLH14,https://doi.org/10.1109/JBHI.2014.2340552 +William J. Chimiak,An architecture for Naval telemedicine.,1997,1,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb1.html#ChimiakRCM97,https://doi.org/10.1109/4233.594058 +Ujjwal Maulik,Finding Multiple Coherent Biclusters in Microarray Data Using Variable String Length Multiobjective Genetic Algorithm.,2009,13,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb13.html#MaulikMB09,https://doi.org/10.1109/TITB.2009.2017527 +Chen Zhao 0004,An Integrated Maximum Current Density Approach for Noninvasive Detection of Myocardial Infarction.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#ZhaoJWZZHGL18,https://doi.org/10.1109/JBHI.2017.2649570 +Xinjian Chen,A Framework of Whole Heart Extracellular Volume Fraction Estimation for Low-Dose Cardiac CT Images.,2012,16,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb16.html#ChenNLSSBY12,https://doi.org/10.1109/TITB.2012.2204405 +Wei Wang 0015,Resource Optimized TTSH-URA for Multimedia Stream Authentication in Swallowable-Capsule-Based Wireless Body Sensor Networks.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#WangWZ14,https://doi.org/10.1109/JBHI.2013.2292883 +Robert S. H. Istepanian,Guest Editorial Introduction to the Special Section on M-Health: Beyond Seamless Mobility and Global Wireless Health-Care Connectivity.,2004,8,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb8.html#IstepanianJZ04,https://doi.org/10.1109/TITB.2004.840019 +Yanjiang Yang,A smart-card-enabled privacy preserving E-prescription system.,2004,8,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb8.html#YangHBD04,https://doi.org/10.1109/TITB.2004.824731 +Gwénolé Quellec,Medical case retrieval from a committee of decision trees.,2010,14,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb14.html#QuellecLBCRC10,https://doi.org/10.1109/TITB.2010.2053716 +Manuel González Hidalgo,Red Blood Cell Cluster Separation From Digital Images for Use in Sickle Cell Disease.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#HidalgoGHJM15,https://doi.org/10.1109/JBHI.2014.2356402 +Michalis E. Blazadonakis,Complementary Gene Signature Integration in Multiplatform Microarray Experiments.,2011,15,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb15.html#BlazadonakisZK11,https://doi.org/10.1109/TITB.2010.2072964 +David Naranjo-Hernández,Personalization and Adaptation to the Medium and Context in a Fall Detection System.,2012,16,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb16.html#Naranjo-HernandezRRE12,https://doi.org/10.1109/TITB.2012.2185851 +Yean Seanglidet,Smartphone Orientation Estimation Algorithm Combining Kalman Filter With Gradient Descent.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#SeanglidetLYVO18,https://doi.org/10.1109/JBHI.2017.2780879 +P. A. C. Varley,Techniques for development of safety-related software for surgical robots.,1999,3,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb3.html#Varley99,https://doi.org/10.1109/4233.809170 +Inan Güler,Multiclass Support Vector Machines for EEG-Signals Classification.,2007,11,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb11.html#GulerU07,https://doi.org/10.1109/TITB.2006.879600 +Andrew Sundstrom,Image Analysis and Length Estimation of Biomolecules Using AFM.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#SundstromCPHKGRM12,https://doi.org/10.1109/TITB.2012.2206819 +Timothy F. Oliver,High Speed Biological Sequence Analysis With Hidden Markov Models on Reconfigurable Platforms.,2009,13,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb13.html#OliverSJM09,https://doi.org/10.1109/TITB.2007.904632 +María J. Lado,Using Generalized Additive Models for Construction of Nonlinear Classifiers in Computer-Aided Diagnosis Systems.,2006,10,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb10.html#LadoCRT06,https://doi.org/10.1109/TITB.2005.859892 +Aitziber Atutxa,Machine Learning Approaches on Diagnostic Term Encoding With the ICD for Clinical Documentation.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#AtutxaPC18,https://doi.org/10.1109/JBHI.2017.2743824 +Lilla Böröczky,Feature Subset Selection for Improving the Performance of False Positive Reduction in Lung Nodule CAD.,2006,10,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb10.html#BoroczkyZL06,https://doi.org/10.1109/TITB.2006.872063 +S. Vernon,Brain-Muscle-Computer Interface: Mobile-Phone Prototype Development and Testing.,2011,15,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb15.html#VernonJ11,https://doi.org/10.1109/TITB.2011.2153208 +Meghan Huber,Feasibility of modified remotely monitored in-home gaming technology for improving hand function in adolescents with cerebral palsy.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#HuberRDBAG10,https://doi.org/10.1109/TITB.2009.2038995 +Rangarajan Jegadeesan,Enabling Wireless Powering and Telemetry for Peripheral Nerve Implants.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#JegadeesanNATG15,https://doi.org/10.1109/JBHI.2015.2424985 +Zhi Lu,Evaluation of Three Algorithms for the Segmentation of Overlapping Cervical Cells.,2017,21,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb21.html#LuCBUNBCH17,https://doi.org/10.1109/JBHI.2016.2519686 +Or Perlman,Supraventricular Tachycardia Classification in the 12-Lead ECG Using Atrial Waves Detection and a Clinically Based Tree Scheme.,2016,20,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb20.html#PerlmanKAZ16,https://doi.org/10.1109/JBHI.2015.2478076 +Juha Koikkalainen,Reconstruction of 3-D head geometry from digitized point sets: an evaluation study.,2004,8,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb8.html#KoikkalainenL04,https://doi.org/10.1109/TITB.2004.834401 +M. Amparo Callejon,A Parametric Computational Analysis Into Galvanic Coupling Intrabody Communication.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#CallejonCRR18,https://doi.org/10.1109/JBHI.2017.2734939 +Dalel Bouslimi,A Joint Encryption/Watermarking System for Verifying the Reliability of Medical Images.,2012,16,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb16.html#BouslimiCCR12,https://doi.org/10.1109/TITB.2012.2207730 +Jing Bai,Design and development of an interactive medical teleconsultation system over the World Wide Web.,1998,2,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb2.html#BaiZD98,https://doi.org/10.1109/4233.720525 +Vikraman Baskaran,Predicting Breast Screening Attendance Using Machine Learning Techniques.,2011,15,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb15.html#BaskaranGBG11,https://doi.org/10.1109/TITB.2010.2103954 +Chunmei Lu,A digital video system for the automated measurement of repetitive joint motion.,2004,8,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb8.html#LuF04,https://doi.org/10.1109/TITB.2004.832544 +Ehsaneh Shahhaidar,Electromagnetic Respiratory Effort Harvester: Human Testing and Metabolic Cost Analysis.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#ShahhaidarPRSB15,https://doi.org/10.1109/JBHI.2014.2326597 +Yung-fu Chen,Semi-Automatic Segmentation and Classification of Pap Smear Cells.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#ChenHLLWCCCC14,https://doi.org/10.1109/JBHI.2013.2250984 +Ahmed Bilal Ashraf,Automated Video Analysis of Handwashing Behavior as a Potential Marker of Cognitive Health in Older Adults.,2016,20,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb20.html#AshrafT16,https://doi.org/10.1109/JBHI.2015.2413358 +Paulo Lopez-Meyer,Automatic Detection of Temporal Gait Parameters in Poststroke Individuals.,2011,15,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb15.html#Lopez-MeyerFS11,https://doi.org/10.1109/TITB.2011.2112773 +Andreas A. Ioannides,Rhythmogram-Based Analysis for Continuous Electrographic Data of the Human Brain.,2012,16,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb16.html#IoannidesS12,https://doi.org/10.1109/TITB.2011.2170217 +Chenxi Yang,Combined Seismo- and Gyro-Cardiography: A More Comprehensive Evaluation of Heart-Induced Chest Vibrations.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#YangT18a,https://doi.org/10.1109/JBHI.2017.2764798 +Roger Bramon,Information Theory-Based Automatic Multimodal Transfer Function Design.,2013,17,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb17.html#BramonRBBFS13,https://doi.org/10.1109/JBHI.2013.2263227 +Zhiqiang Zhang 0001,Ubiquitous Human Upper-Limb Motion Estimation using Wearable Sensors.,2011,15,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb15.html#ZhangWW11,https://doi.org/10.1109/TITB.2011.2159122 +Tero Hurnanen,Automated Detection of Atrial Fibrillation Based on Time-Frequency Analysis of Seismocardiograms.,2017,21,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb21.html#HurnanenLTKKSVA17,https://doi.org/10.1109/JBHI.2016.2621887 +Yue Hong Yin,EMG and EPP-Integrated Human-Machine Interface Between the Paralyzed and Rehabilitation Exoskeleton.,2012,16,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb16.html#YinFX12,https://doi.org/10.1109/TITB.2011.2178034 +Susan Maskery,Co-Occurrence Analysis for Discovery of Novel Breast Cancer Pathology Patterns.,2006,10,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb10.html#MaskeryZJHHSL06,https://doi.org/10.1109/TITB.2005.863863 +Jin-Oh Hahn,System Identification and Closed-Loop Control of End-Tidal CO2 in Mechanically Ventilated Patients.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#HahnDA12,https://doi.org/10.1109/TITB.2012.2204067 +Amir Hossein Ansari,Weighted Performance Metrics for Automatic Neonatal Seizure Detection Using Multiscored EEG Data.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#AnsariCDJDWDVGV18,https://doi.org/10.1109/JBHI.2017.2750769 +Mohammad Yaqub,Plane Localization in 3-D Fetal Neurosonography for Longitudinal Analysis of the Developing Brain.,2016,20,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb20.html#YaqubRKMPSMN16,https://doi.org/10.1109/JBHI.2015.2435651 +Andrew Kusiak,Autonomous decision-making: a data mining approach.,2000,4,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb4.html#KusiakKKT00,https://doi.org/10.1109/4233.897059 +Ellen W. McGinnis,Movements Indicate Threat Response Phases in Children at Risk for Anxiety.,2017,21,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb21.html#McGinnisMMHLPFR17,https://doi.org/10.1109/JBHI.2016.2603159 +Akshay Vankipuram,Design and Development of a Virtual Reality Simulator for Advanced Cardiac Life Support Training.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#VankipuramKAVGDJS14,https://doi.org/10.1109/JBHI.2013.2285102 +Jiayuan He,Invariant Surface EMG Feature Against Varying Contraction Level for Myoelectric Control Based on Muscle Coordination.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#HeZSLZ15,https://doi.org/10.1109/JBHI.2014.2330356 +Lei A. Clifton,Predictive Monitoring of Mobile Patients by Combining Clinical Observations With Data From Wearable Sensors.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#CliftonCPWT14,https://doi.org/10.1109/JBHI.2013.2293059 +Jayavardhana Gubbi,Automatic Detection and Classification of Convulsive Psychogenic Nonepileptic Seizures Using a Wearable Device.,2016,20,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb20.html#GubbiKRYOP16,https://doi.org/10.1109/JBHI.2015.2446539 +Pedro Fonseca 0002,Cardiorespiratory Sleep Stage Detection Using Conditional Random Fields.,2017,21,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb21.html#FonsecaTLA17,https://doi.org/10.1109/JBHI.2016.2550104 +Feng-rong Sun,Numerical methods and workstation for the quantitative analysis of real-time myocardial contrast echocardiography.,2010,14,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb14.html#SunZJWYZ10,https://doi.org/10.1109/TITB.2010.2040395 +Timo Vuorela,Design and implementation of a portable long-term physiological signal recorder.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#VuorelaSVH10,https://doi.org/10.1109/TITB.2010.2042606 +Peter N. Brett,Schemes for the identification of tissue types and boundaries at the tool point for surgical needles.,2000,4,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb4.html#BrettHT00,https://doi.org/10.1109/4233.826856 +Oberdan Parodi,Patient-Specific Prediction of Coronary Plaque Growth From CTA Angiography: A Multiscale Model for Plaque Formation and Progression.,2012,16,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb16.html#ParodiEMV0NSSFF12,https://doi.org/10.1109/TITB.2012.2201732 +Dandan Liang,Improved Signal-to-Noise Ratio Performance in Magnetic Resonance Imaging by Using a Multilayered Surface Coil Array - A Simulation Study.,2013,17,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb17.html#LiangHY13,https://doi.org/10.1109/JBHI.2013.2253113 +Tingting Mu,Automated nonlinear feature generation and classification of foot pressure lesions.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#MuPFAG10,https://doi.org/10.1109/TITB.2009.2028338 +Raúl Chávez-Santiago,Experimental Path Loss Models for In-Body Communications Within 2.36-2.5 GHz.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#Chavez-Santiago15,https://doi.org/10.1109/JBHI.2015.2418757 +Ilias Maglogiannis,Radial Basis Function Neural Networks Classification for the Recognition of Idiopathic Pulmonary Fibrosis in Microscopic Images.,2008,12,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb12.html#MaglogiannisSKCOA08,https://doi.org/10.1109/TITB.2006.888702 +Jian Zheng 0001,Salient Feature Region: A New Method for Retinal Image Registration.,2011,15,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb15.html#ZhengTDDZX11,https://doi.org/10.1109/TITB.2010.2091145 +Lakshmi Srinivasan,Microarray Image Denoising Using Complex Gaussian Scale Mixtures of Complex Wavelets.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#SrinivasanRO14,https://doi.org/10.1109/JBHI.2014.2318279 +Michael J. Anderson,Auditory stimulus optimization with feedback from fuzzy clustering of neuronal responses.,2002,6,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb6.html#AndersonM02,https://doi.org/10.1109/TITB.2002.1006303 +Phond Phunchongharn,Electromagnetic Interference-Aware Transmission Scheduling and Power Control for Dynamic Wireless Access in Hospital Environments.,2011,15,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb15.html#PhunchongharnHC11,https://doi.org/10.1109/TITB.2011.2164258 +Gondy Leroy,Meeting medical terminology needs-the ontology-enhanced Medical Concept Mapper.,2001,5,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb5.html#LeroyC01,https://doi.org/10.1109/4233.966101 +Eleni I. Georga,Multivariate Prediction of Subcutaneous Glucose Concentration in Type 1 Diabetes Patients Based on Support Vector Regression.,2013,17,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb17.html#GeorgaPAMZPF13,https://doi.org/10.1109/TITB.2012.2219876 +Musa Peker,A Novel Method for Automated Diagnosis of Epilepsy Using Complex-Valued Classifiers.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#PekerSD16,https://doi.org/10.1109/JBHI.2014.2387795 +Rethabile Khutlang,Classification of mycobacterium tuberculosis in images of ZN-stained sputum smears.,2010,14,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb14.html#KhutlangKDWVLD10,https://doi.org/10.1109/TITB.2009.2028339 +Jesús D. Trigo,An Integrated Healthcare Information System for End-to-End Standardized Exchange and Homogeneous Management of Digital ECG Formats.,2012,16,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb16.html#TrigoMAKEHSG12,https://doi.org/10.1109/TITB.2012.2191296 +Lin Ma 0003,Iris-Based Medical Analysis by Geometric Deformation Features.,2013,17,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb17.html#MaZLCZW13,https://doi.org/10.1109/TITB.2012.2222655 +Daniel Bia Santana,Integrated e-Health Approach Based on Vascular Ultrasound and Pulse Wave Analysis for Asymptomatic Atherosclerosis Detection and Cardiovascular Risk Stratification in the Community.,2012,16,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb16.html#SantanaZA12,https://doi.org/10.1109/TITB.2011.2169977 +Eleanna Kafeza,Alerts in Mobile Healthcare Applications: Requirements and Pilot Study.,2004,8,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb8.html#KafezaCCK04,https://doi.org/10.1109/TITB.2004.828888 +Moataz Eltoukhy,Validation of Static and Dynamic Balance Assessment Using Microsoft Kinect for Young and Elderly Populations.,2018,22,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb22.html#EltoukhyKOS18,https://doi.org/10.1109/JBHI.2017.2686330 +Nicos Maglaveras,The citizen health system (CHS): a Modular medical contact center providing quality telemedicine services.,2005,9,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb9.html#MaglaverasCKGLGAKLB05,https://doi.org/10.1109/TITB.2005.854511 +Lin Chen,Characterizing the Complexity of Spontaneous Electrical Signals in Cultured Neuronal Networks Using Approximate Entropy.,2009,13,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb13.html#ChenLDWZ09,https://doi.org/10.1109/TITB.2008.2012164 +Matthias Ring,Salivary Markers for Quantitative Dehydration Estimation During Physical Exercise.,2017,21,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb21.html#RingLRME17,https://doi.org/10.1109/JBHI.2016.2598854 +Georgia D. Ntouni,Reliable and Energy-Efficient Communications for Wireless Biomedical Implant Systems.,2014,18,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb18.html#NtouniLN14,https://doi.org/10.1109/JBHI.2014.2300151 +Abhishek Vadnerkar,Design and Validation of a Biofeedback Device to Improve Heel-to-Toe Gait in Seniors.,2018,22,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb22.html#VadnerkarFMK18,https://doi.org/10.1109/JBHI.2017.2665519 +Sinan Onal,Automated Localization of Multiple Pelvic Bone Structures on MRI.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#OnalLBWH16,https://doi.org/10.1109/JBHI.2014.2366159 +Peter O. Ajemba,A support vectors classifier approach to predicting the risk of progression of adolescent idiopathic scoliosis.,2005,9,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb9.html#AjembaRDHR05,https://doi.org/10.1109/TITB.2005.847169 +Robert Varga,Aggregate Features in Multisample Classification Problems.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#VargaMH15,https://doi.org/10.1109/JBHI.2014.2314856 +Grant J. Scott,Knowledge-Driven Multidimensional Indexing Structure for Biomedical Media Database Retrieval.,2007,11,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb11.html#ScottS07,https://doi.org/10.1109/TITB.2006.880551 +Naiqian Zhi,Toward Monitoring Parkinson's Through Analysis of Static Handwriting Samples: A Quantitative Analytical Framework.,2017,21,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb21.html#ZhiJGSF17,https://doi.org/10.1109/JBHI.2016.2518858 +Yajuan Wang,Prognosis of Right Ventricular Failure in Patients With Left Ventricular Assist Device Based on Decision Tree With SMOTE.,2012,16,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb16.html#WangSBHTKA12,https://doi.org/10.1109/TITB.2012.2187458 +Mouloud Azzedine Denaï,Absolute electrical impedance tomography (aEIT) guided ventilation therapy in critical care patients: simulations and future trends.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#DenaiMMPBM10,https://doi.org/10.1109/TITB.2009.2036010 +Jose Manuel Bote,A Modular Low-Complexity ECG Delineation Algorithm for Real-Time Embedded Systems.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#BoteRRAH18,https://doi.org/10.1109/JBHI.2017.2671443 +Parul Pandey,A Distributed Computing Framework for Real-Time Detection of Stress and of Its Propagation in a Team.,2016,20,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb20.html#PandeyLP16,https://doi.org/10.1109/JBHI.2015.2477342 +Pieter Van Gorp,Lifelong Personal Health Data and Application Software via Virtual Machines in the Cloud.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#GorpC14,https://doi.org/10.1109/JBHI.2013.2257821 +Jürgen Morak,Design and Evaluation of a Telemonitoring Concept Based on NFC-Enabled Mobile Phones and Sensor Devices.,2012,16,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb16.html#MorakKHMS12,https://doi.org/10.1109/TITB.2011.2176498 +Christos P. Loizou,Multiscale Amplitude-Modulation Frequency-Modulation (AM-FM) Texture Analysis of Multiple Sclerosis in Brain MRI Images.,2011,15,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb15.html#LoizouMPSPP11,https://doi.org/10.1109/TITB.2010.2091279 +Jinyoung Kim,Semiautomatic Segmentation of Brain Subcortical Structures From High-Field MRI.,2014,18,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb18.html#KimLDSH14,https://doi.org/10.1109/JBHI.2013.2292858 +Sunil Datt Sharma,Identification of Microsatellites in DNA Using Adaptive S-Transform.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#SharmaSS15,https://doi.org/10.1109/JBHI.2014.2330901 +Bi'er Shi,360®6* Fourier Transform Profilometry in Surface Reconstruction for Fluorescence Molecular Tomography.,2013,17,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb17.html#ShiZLLB13,https://doi.org/10.1109/JBHI.2012.2235076 +Bo-Yeong Kang,Two-Phase Chief Complaint Mapping to the UMLS Metathesaurus in Korean Electronic Medical Records.,2009,13,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb13.html#KangKK09,https://doi.org/10.1109/TITB.2008.2007103 +Sung-Hwan Shin,Automatic Detection System for Cough Sounds as a Symptom of Abnormal Health Condition.,2009,13,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb13.html#ShinHH09,https://doi.org/10.1109/TITB.2008.923771 +Sameer Singh 0002,An evaluation of contrast enhancement techniques for mammographic breast masses.,2005,9,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb9.html#SinghB05,https://doi.org/10.1109/TITB.2004.837851 +Chih-En Kuo,Estimation and Prediction of Drug Therapy on the Termination of Atrial Fibrillation by Autoregressive Model With Exogenous Inputs.,2013,17,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb17.html#KuoLLKL13,https://doi.org/10.1109/TITB.2012.2224877 +Thomas Zhang,Understanding User Intents in Online Health Forums.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#ZhangCZ15,https://doi.org/10.1109/JBHI.2015.2416252 +Jorge Henriques,Prediction of Heart Failure Decompensation Events by Trend Analysis of Telemonitoring Data.,2015,19,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb19.html#HenriquesCPRHAM15,https://doi.org/10.1109/JBHI.2014.2358715 +Yangsheng Xu,Abstracting human control strategy in projecting light source.,2001,5,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb5.html#XuZ01,https://doi.org/10.1109/4233.908376 +Janne Näppi,Virtual endoscopic visualization of the colon by shape-scale signatures.,2005,9,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb9.html#NappiFY05,https://doi.org/10.1109/TITB.2004.837834 +David B. Keator,A National Human Neuroimaging Collaboratory Enabled by the Biomedical Informatics Research Network (BIRN).,2008,12,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb12.html#KeatorGMOGMPGNBP08,https://doi.org/10.1109/TITB.2008.917893 +Xingzheng Wang,A New Tongue Colorchecker Design by Space Representation for Precise Correction.,2013,17,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb17.html#WangZ13,https://doi.org/10.1109/TITB.2012.2226736 +Acar Tamersoy,Anonymization of Longitudinal Electronic Medical Records.,2012,16,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb16.html#TamersoyLNSM12,https://doi.org/10.1109/TITB.2012.2185850 +Antonio Lanata,Comparative evaluation of susceptibility to motion artifact in different wearable systems for monitoring respiratory rate.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#LanataSNLPR10,https://doi.org/10.1109/TITB.2009.2037614 +Christoph Fischer,An Algorithm for Real-Time Pulse Waveform Segmentation and Artifact Detection in Photoplethysmograms.,2017,21,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb21.html#FischerDWP17,https://doi.org/10.1109/JBHI.2016.2518202 +Kris Cuppens,Accelerometry-Based Home Monitoring for Detection of Nocturnal Hypermotor Seizures Based on Novelty Detection.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#CuppensKVBMLCCLHV14,https://doi.org/10.1109/JBHI.2013.2285015 +Dae-Geun Jang,A Gaussian Model-Based Probabilistic Approach for Pulse Transit Time Estimation.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#JangPH16,https://doi.org/10.1109/JBHI.2014.2372047 +John H. Phan,Cardiovascular Genomics: A Biomarker Identification Pipeline.,2012,16,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb16.html#PhanQW12,https://doi.org/10.1109/TITB.2012.2199570 +X. Wang,An Optimized Tongue Image Color Correction Scheme.,2010,14,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb14.html#WangZ10,https://doi.org/10.1109/TITB.2010.2076378 +John X. Qiu,Deep Learning for Automated Extraction of Primary Sites From Cancer Pathology Reports.,2018,22,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb22.html#QiuYFT18,https://doi.org/10.1109/JBHI.2017.2700722 +Adrienne Heinrich,Robust and Sensitive Video Motion Detection for Sleep Analysis.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#HeinrichGZVH14,https://doi.org/10.1109/JBHI.2013.2282829 +Jiheum Park,Manikin-Integrated Digital Measuring System for Assessment of Infant Cardiopulmonary Resuscitation Techniques.,2014,18,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb18.html#ParkYLJKKK14,https://doi.org/10.1109/JBHI.2013.2288641 +Stuart Hagler,Assessing Executive Function Using a Computer Game: Computational Modeling of Cognitive Processes.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#HaglerJP14,https://doi.org/10.1109/JBHI.2014.2299793 +Chrysa D. Papadaniil,Efficient Heart Sound Segmentation and Extraction Using Ensemble Empirical Mode Decomposition and Kurtosis Features.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#PapadaniilH14,https://doi.org/10.1109/JBHI.2013.2294399 +Martin Capek,Alignment of adjacent picture frames captured by a CLSM.,1999,3,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb3.html#CapekK99,https://doi.org/10.1109/4233.767087 +Luiz Octavio Massato Kobayashi,Providing Integrity and Authenticity in DICOM Images: A Novel Approach.,2009,13,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb13.html#KobayashiFB09,https://doi.org/10.1109/TITB.2009.2014751 +Konstantinos T. Karathanasis,Noninvasive focused monitoring and irradiation of head tissue phantoms at microwave frequencies.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#KarathanasisGKGSU10,https://doi.org/10.1109/TITB.2010.2040749 +Chandan K. Karmakar,Detection of Respiratory Arousals Using Photoplethysmography (PPG) Signal in Sleep Apnea Patients.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#KarmakarKPSP14,https://doi.org/10.1109/JBHI.2013.2282338 +Jamshid Abouei,Energy Efficiency and Reliability in Wireless Biomedical Implant Systems.,2011,15,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb15.html#AboueiBPP11,https://doi.org/10.1109/TITB.2011.2105497 +Guillaume Bouleux,Early Index for Detection of Pediatric Emergency Department Crowding.,2015,19,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb19.html#BouleuxMM15,https://doi.org/10.1109/JBHI.2014.2350996 +Shuo Li,Models and Methods for Quantitative Analysis of Surface-Enhanced Raman Spectra.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#LiNDG14,https://doi.org/10.1109/JBHI.2013.2281947 +V. Srinivasan,Approximate Entropy-Based Epileptic EEG Detection Using Artificial Neural Networks.,2007,11,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb11.html#SrinivasanES07,https://doi.org/10.1109/TITB.2006.884369 +Ilias Thomas,A Treatment-Response Index From Wearable Sensors for Quantifying Parkinson's Disease Motor States.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#ThomasWABNSM18,https://doi.org/10.1109/JBHI.2017.2777926 +Jinman Kim,Real-Time Volume Rendering Visualization of Dual-Modality PET/CT Images With Interactive Fuzzy Thresholding Segmentation.,2007,11,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb11.html#KimCEF07,https://doi.org/10.1109/TITB.2006.875669 +Eunjeong Park,A Service-Oriented Medical Framework for Fast and Adaptive Information Delivery in Mobile Environment.,2009,13,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb13.html#ParkN09,https://doi.org/10.1109/TITB.2009.2031495 +Yuan-Ting Zhang,Editorial on Biomedical and Health Informatics: One Year After the Title Change.,2013,17,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb17.html#ZhangP13a,https://doi.org/10.1109/JBHI.2013.2288810 +Aleksandar Zivanovic,A robotic system for blood sampling.,2000,4,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb4.html#ZivanovicD00,https://doi.org/10.1109/4233.826854 +Siddika Parlak,Design and Evaluation of RFID Deployments in a Trauma Resuscitation Bay.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#ParlakALM14,https://doi.org/10.1109/JBHI.2013.2283506 +Wen-Chang Cheng,Triaxial Accelerometer-Based Fall Detection Method Using a Self-Constructing Cascade-AdaBoost-SVM Classifier.,2013,17,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb17.html#ChengJ13,https://doi.org/10.1109/JBHI.2012.2237034 +Antonella Belfatto,Modeling the Interplay Between Tumor Volume Regression and Oxygenation in Uterine Cervical Cancer During Radiotherapy Treatment.,2016,20,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb20.html#BelfattoRCCCLJO16,https://doi.org/10.1109/JBHI.2015.2398512 +Elisa Magosso,Integrating information from vision and touch: a neural network modeling study.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#Magosso10,https://doi.org/10.1109/TITB.2010.2040750 +Juan Cheng,Illumination Variation-Resistant Video-Based Heart Rate Measurement Using Joint Blind Source Separation and Ensemble Empirical Mode Decomposition.,2017,21,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb21.html#ChengCXW17,https://doi.org/10.1109/JBHI.2016.2615472 +Péter Várady,An open architecture patient monitoring system using standard technologies.,2002,6,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb6.html#VaradyBB02,https://doi.org/10.1109/4233.992168 +Federico Lorussi,Strain sensing fabric for hand posture and gesture monitoring.,2005,9,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb9.html#LorussiSTTR05,https://doi.org/10.1109/TITB.2005.854510 +Ricardo T. Ribeiro,An Ultrasound-Based Computer-Aided Diagnosis Tool for Steatosis Detection.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#RibeiroMS14,https://doi.org/10.1109/JBHI.2013.2284785 +Ghafoor Shah,On the Blind Recovery of Cardiac and Respiratory Sounds.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#ShahKP15,https://doi.org/10.1109/JBHI.2014.2349156 +Gozde B. Unal,Guest Editorial Introduction to the Special Section on Computer Vision for Intravascular and Intracardiac Imaging.,2008,12,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb12.html#UnalSKT08,https://doi.org/10.1109/TITB.2008.920458 +Huai-Kuang Tsai,An Evolutionary Approach for Gene Expression Patterns.,2004,8,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb8.html#TsaiYTK04,https://doi.org/10.1109/TITB.2004.826713 +Garren Gaut,Content Coding of Psychotherapy Transcripts Using Labeled Topic Models.,2017,21,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb21.html#GautSIAS17,https://doi.org/10.1109/JBHI.2015.2503985 +Jeffrey Winslow,Automatic Identification and Classification of Muscle Spasms in Long-Term EMG Recordings.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#WinslowMT15,https://doi.org/10.1109/JBHI.2014.2320633 +Dan Istrate,Information Extraction From Sound for Medical Telemonitoring.,2006,10,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb10.html#IstrateCVBS06,https://doi.org/10.1109/TITB.2005.859889 +Lalit Garg,Tensor-Based Methods for Handling Missing Data in Quality-of-Life Questionnaires.,2014,18,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb18.html#GargDEL14,https://doi.org/10.1109/JBHI.2013.2288803 +Dino Ho,Dynamic image data compression in spatial and temporal domains: theory and algorithm.,1997,1,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb1.html#HoFC97,https://doi.org/10.1109/4233.681164 +Dejan Raskovic,Dynamic Voltage and Frequency Scaling For On-Demand Performance and Availability of Biomedical Embedded Systems.,2009,13,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb13.html#RaskovicG09,https://doi.org/10.1109/TITB.2009.2030181 +Jong-Ha Lee,The Tactile Sensation Imaging System for Embedded Lesion Characterization.,2013,17,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb17.html#LeeW13,https://doi.org/10.1109/JBHI.2013.2245142 +Arpad Kelemen,Computational Intelligence in Bioinformatics: SNP/Haplotype Data in Genetic Association Study for Common Diseases.,2009,13,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb13.html#KelemenVL09,https://doi.org/10.1109/TITB.2009.2024144 +Garry Higgins,The Effects of Lossy Compression on Diagnostically Relevant Seizure Information in EEG Signals.,2013,17,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb17.html#HigginsMFMGMJ13,https://doi.org/10.1109/TITB.2012.2222426 +Bor-Shyh Lin,RTWPMS: A Real-Time Wireless Physiological Monitoring System.,2006,10,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb10.html#LinCCC06,https://doi.org/10.1109/TITB.2006.874194 +Liron Yatziv,Esophagus Silhouette Extraction and Reconstruction From Fluoroscopic Views for Cardiac Ablation Procedure Guidance.,2011,15,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb15.html#YatzivISDS11,https://doi.org/10.1109/TITB.2011.2162247 +Manuel Lozano,Automatic Differentiation of Normal and Continuous Adventitious Respiratory Sounds Using Ensemble Empirical Mode Decomposition and Instantaneous Frequency.,2016,20,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb20.html#LozanoFJ16,https://doi.org/10.1109/JBHI.2015.2396636 +Sérgio Shiguemi Furuie,Managing Medical Images and Clinical Information: InCor's Experience.,2007,11,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb11.html#FuruieRMSBMPG07,https://doi.org/10.1109/TITB.2006.879588 +Gaetano Valenza,Wearable Monitoring for Mood Recognition in Bipolar Disorder Based on History-Dependent Long-Term Heart Rate Variability Analysis.,2014,18,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb18.html#ValenzaNLGBPS14,https://doi.org/10.1109/JBHI.2013.2290382 +Huaming Li,Heartbeat-driven medium-access control for body sensor networks.,2010,14,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb14.html#LiT10,https://doi.org/10.1109/TITB.2009.2028136 +Yasuhiro Kawasaki,High-performance computing service over the Internet for intraoperative image processing.,2004,8,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb8.html#KawasakiIMFSSSTH04,https://doi.org/10.1109/TITB.2004.824740 +Luis Estrada,Improvement in Neural Respiratory Drive Estimation From Diaphragm Electromyographic Signals Using Fixed Sample Entropy.,2016,20,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb20.html#EstradaTSJ16,https://doi.org/10.1109/JBHI.2015.2398934 +Michail G. Kounelakis,Strengths and Weaknesses of 1.5T and 3T MRS Data in Brain Glioma Classification.,2011,15,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb15.html#KounelakisDZTTKKT11,https://doi.org/10.1109/TITB.2011.2131146 +Phond Phunchongharn,An EMI-aware prioritized wireless access scheme for e-health applications in hospital environments.,2010,14,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb14.html#PhunchongharnNHC10,https://doi.org/10.1109/TITB.2010.2047507 +Wamiq Manzoor Ahmed,Classification of Bacterial Contamination Using Image Processing and Distributed Computing.,2013,17,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb17.html#AhmedBBHRR13,https://doi.org/10.1109/TITB.2012.2222654 +Sio-Hang Pun,Quasi-Static Modeling of Human Limb for Intra-Body Communications With Experiments.,2011,15,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb15.html#PunGMVD11,https://doi.org/10.1109/TITB.2011.2161093 +Huseyin Seker,A fuzzy logic based-method for prognostic decision making in breast and prostate cancers.,2003,7,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb7.html#SekerOPN03,https://doi.org/10.1109/TITB.2003.811876 +Hongsheng He,DietCam: Multiview Food Recognition Using a Multikernel SVM.,2016,20,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb20.html#HeKT16,https://doi.org/10.1109/JBHI.2015.2419251 +Vassilis G. Kaburlasos,Estimation of the stapes-bone thickness in the stapedotomy surgical procedure using a machine-learning technique.,1999,3,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb3.html#KaburlasosPBB99,https://doi.org/10.1109/4233.809171 +Johanna Petersen,Actigraphy-Based Scratch Detection Using Logistic Regression.,2013,17,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb17.html#PetersenASH13,https://doi.org/10.1109/TITB.2012.2204761 +Konstantinos P. Exarchos,A Multiscale Approach for Modeling Atherosclerosis Progression.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#ExarchosCREVSMN15,https://doi.org/10.1109/JBHI.2014.2323935 +Yuxin Yang,A Spatiotemporal-Based Scheme for Efficient Registration-Based Segmentation of Thoracic 4-D MRI.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#YangRPTT14,https://doi.org/10.1109/JBHI.2013.2282183 +Olga C. Avila-Montes,Segmentation of the Thoracic Aorta in Noncontrast Cardiac CT Images.,2013,17,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb17.html#Avila-MontesKNBDK13,https://doi.org/10.1109/JBHI.2013.2269292 +Chueh-Loo Poh,Web-Based Multilayer Viewing Interface for Knee Cartilage.,2009,13,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb13.html#PohKA09,https://doi.org/10.1109/TITB.2008.2007667 +Shameek Ghosh,Hypotension Risk Prediction via Sequential Contrast Patterns of ICU Blood Pressure.,2016,20,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb20.html#GhoshFNL16,https://doi.org/10.1109/JBHI.2015.2453478 +Yusuf Artan,Prostate Cancer Localization Using Multiparametric MRI based on Semisupervised Techniques With Automated Seed Initialization.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#ArtanY12,https://doi.org/10.1109/TITB.2012.2201731 +Hassan Ghasemzadeh,A body sensor network with electromyogram and inertial sensors: multimodal interpretation of muscular activities.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#GhasemzadehJP10,https://doi.org/10.1109/TITB.2009.2035050 +M. Anwar Hossain 0001,Virtual Caregiver: An Ambient-Aware Elderly Monitoring System.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#HossainA12,https://doi.org/10.1109/TITB.2012.2203313 +Ramón Hervás,An Assistive Navigation System Based on Augmented Reality and Context Awareness for People With Mild Cognitive Impairments.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#HervasBF14,https://doi.org/10.1109/JBHI.2013.2266480 +Yiru Shen,Assessing the Accuracy of a Wrist Motion Tracking Method for Counting Bites Across Demographic and Food Variables.,2017,21,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb21.html#ShenSMH17,https://doi.org/10.1109/JBHI.2016.2612580 +Georgios S. Stamatakos,Modeling tumor growth and irradiation response in vitro-a combination of high-performance computing and Web-based technologies including VRML visualization.,2001,5,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb5.html#StamatakosZMMMNU01,https://doi.org/10.1109/4233.966103 +Hoda Daou,EEG Compression of Scalp Recordings Based on Dipole Fitting.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#DaouL15,https://doi.org/10.1109/JBHI.2014.2346493 +Jirapat Likitlersuang,Interaction Detection in Egocentric Video: Toward a Novel Outcome Measure for Upper Extremity Function.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#LikitlersuangZ18,https://doi.org/10.1109/JBHI.2016.2636748 +Taxiarchis Botsis,Identifying Similar Cases in Document Networks Using Cross-Reference Structures.,2015,19,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb19.html#BotsisSWB15,https://doi.org/10.1109/JBHI.2014.2345873 +Nicholas Caporusso,A Multimodal interface device for online board games designed for sight-impaired people.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#CaporussoMB10,https://doi.org/10.1109/TITB.2009.2034739 +Francesca Demichelis,TMABoost: An Integrated System for Comprehensive Management of Tissue Microarray Data.,2006,10,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb10.html#DemichelisSBD06,https://doi.org/10.1109/TITB.2005.855540 +Santi Seguí,Detection of Wrinkle Frames in Endoluminal Videos Using Betweenness Centrality Measures for Images.,2014,18,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb18.html#SeguiDZMARV14,https://doi.org/10.1109/JBHI.2014.2304179 +Shenshen Sun,Juxta-Vascular Nodule Segmentation Based on Flow Entropy and Geodesic Distance.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#SunGGRFK14,https://doi.org/10.1109/JBHI.2014.2303511 +Dipti Prasad Mukherjee,Automatic segmentation of spinal cord mri using symmetric boundary tracing.,2010,14,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb14.html#MukherjeeCRMLB10,https://doi.org/10.1109/TITB.2010.2052060 +Nora Millor,Automatic Evaluation of the 30-s Chair Stand Test Using Inertial/Magnetic-Based Technology in an Older Prefrail Population.,2013,17,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb17.html#MillorLGMRGI13,https://doi.org/10.1109/JBHI.2013.2238243 +Hui Liu,Identifying Mammalian MicroRNA Targets Based on Supervised Distance Metric Learning.,2013,17,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb17.html#LiuZG13,https://doi.org/10.1109/TITB.2012.2229286 +Sidra Minhas,A Nonparametric Approach for Mild Cognitive Impairment to AD Conversion Prediction: Results on Longitudinal Data.,2017,21,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb21.html#MinhasKRAK17,https://doi.org/10.1109/JBHI.2016.2608998 +Jianting Sheng,Optimal Drug Prediction From Personal Genomics Profiles.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#ShengLW15,https://doi.org/10.1109/JBHI.2015.2412522 +Lilian H. Y. Tang,Histological image retrieval based on semantic content analysis.,2003,7,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb7.html#TangHI03,https://doi.org/10.1109/TITB.2003.808500 +Atena Roshan Fekr,Respiration Disorders Classification With Informative Features for m-Health Applications.,2016,20,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb20.html#FekrJRZ16,https://doi.org/10.1109/JBHI.2015.2458965 +Rahil Garnavi,Optimized Weighted Performance Index for Objective Evaluation of Border-Detection Methods in Dermoscopy Images.,2011,15,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb15.html#GarnaviA11,https://doi.org/10.1109/TITB.2011.2170083 +Narjes Torabi,Realization of Public M-Health Service in License-Free Spectrum.,2013,17,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb17.html#TorabiL13,https://doi.org/10.1109/TITB.2012.2227117 +Mark P. Donnelly,Diagnosing Old MI by Searching for a Linear Boundary in the Space of Principal Components.,2006,10,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb10.html#DonnellyNFRB06,https://doi.org/10.1109/TITB.2006.876033 +Xiao-Rong Ding,Continuous Blood Pressure Measurement From Invasive to Unobtrusive: Celebration of 200th Birth Anniversary of Carl Ludwig.,2016,20,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb20.html#DingZYPLMLLZ16,https://doi.org/10.1109/JBHI.2016.2620995 +Daojing He,A Novel and Lightweight System to Secure Wireless Medical Sensor Networks.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#HeCT14,https://doi.org/10.1109/JBHI.2013.2268897 +Wen-Bo Wu,The Assistant Function of Three-Dimensional Information for I$^{\bf 125}$ Particle Implantation.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#WuXLCZMQ14,https://doi.org/10.1109/JBHI.2013.2259180 +Dimitris A. Fotiadis,Experimental Evaluation of an Invasive Medical Instrument Based on a Displacement Measurement System.,2015,19,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb19.html#FotiadisABPK15,https://doi.org/10.1109/JBHI.2014.2359580 +Sudha Ram,Predicting Asthma-Related Emergency Department Visits Using Big Data.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#RamZWP15,https://doi.org/10.1109/JBHI.2015.2404829 +Evangelos B. Mazomenos,Detecting Elementary Arm Movements by Tracking Upper Limb Joint Angles With MARG Sensors.,2016,20,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb20.html#MazomenosBCRMAK16,https://doi.org/10.1109/JBHI.2015.2431472 +Giuseppe Coppini,Neural networks for computer-aided diagnosis: detection of lung nodules in chest radiograms.,2003,7,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb7.html#CoppiniDFVV03,https://doi.org/10.1109/TITB.2003.821313 +Jaeseong Jang,Automatic Estimation of Fetal Abdominal Circumference From Ultrasound Images.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#JangPKLKS18,https://doi.org/10.1109/JBHI.2017.2776116 +Esther E. Bron,Feature Selection Based on the SVM Weight Vector for Classification of Dementia.,2015,19,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb19.html#BronSNK15,https://doi.org/10.1109/JBHI.2015.2432832 +Yi-Ju Tseng,Multiple-Time-Series Clinical Data Processing for Classification With Merging Algorithm and Statistical Measures.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#TsengPLYHL15,https://doi.org/10.1109/JBHI.2014.2357719 +Trine M. Seeberg,Decision Support for Subjects Exposed to Heat Stress.,2013,17,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb17.html#SeebergVTA13,https://doi.org/10.1109/JBHI.2013.2245141 +Sreenath P. Kyathanahally,A Realistic Framework for Investigating Decision Making in the Brain With High Spatiotemporal Resolution Using Simultaneous EEG/fMRI and Joint ICA.,2017,21,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb21.html#KyathanahallyFZ17,https://doi.org/10.1109/JBHI.2016.2590434 +Sunghoon Ivan Lee,A Prediction Model for Functional Outcomes in Spinal Cord Disorder Patients Using Gaussian Process Regression.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#LeeMHLLPGREPLS16,https://doi.org/10.1109/JBHI.2014.2372777 +Idoia Berges,Toward Semantic Interoperability of Electronic Health Records.,2012,16,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb16.html#BergesBI12,https://doi.org/10.1109/TITB.2011.2180917 +Samuli Niiranen,Toward Reflective Management of Emergency Department Chief Complaint Information.,2008,12,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb12.html#NiiranenYN08,https://doi.org/10.1109/TITB.2008.926464 +Yujie Dong,Detecting Periods of Eating During Free-Living by Tracking Wrist Motion.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#DongSWMH14,https://doi.org/10.1109/JBHI.2013.2282471 +Ali Jalali,Prediction of Periventricular Leukomalacia Occurrence in Neonates After Heart Surgery.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#JalaliBLSLN14,https://doi.org/10.1109/JBHI.2013.2285011 +Yao-Kuang Huang,Quantitative Evaluation of Rehabilitation Effect on Peripheral Circulation of Diabetic Foot.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#HuangCLL18,https://doi.org/10.1109/JBHI.2017.2726540 +Vincenzo Della Mea,Agents acting and moving in healthcare scenario - a paradigm for telemedical collaboration.,2001,5,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb5.html#Mea01,https://doi.org/10.1109/4233.908354 +Hengameh Mirzaalian,Spatial Normalization of Human Back Images for Dermatological Studies.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#MirzaalianLH14,https://doi.org/10.1109/JBHI.2013.2288775 +Carsten Meyer,Combining Algorithms in Automatic Detection of QRS Complexes in ECG Signals.,2006,10,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb10.html#MeyerGH06,https://doi.org/10.1109/TITB.2006.875662 +Gokce Laleci,A Semantically Enriched Clinical Guideline Model Enabling Deployment in Heterogeneous Healthcare Environments.,2009,13,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb13.html#LaleciD09,https://doi.org/10.1109/TITB.2008.2010542 +ChangYang Li,Joint Probabilistic Model of Shape and Intensity for Multiple Abdominal Organ Segmentation From Volumetric CT Images.,2013,17,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb17.html#LiWLEFYF13,https://doi.org/10.1109/TITB.2012.2227273 +Leonardo S. Mattos,Blastocyst Microinjection Automation.,2009,13,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb13.html#MattosGTK09,https://doi.org/10.1109/TITB.2009.2023664 +Juha M. Kortelainen,Sleep staging based on signals acquired through bed sensor.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#KortelainenMBMC10,https://doi.org/10.1109/TITB.2010.2044797 +Faezeh Movahedi,Deep Belief Networks for Electroencephalography: A Review of Recent Contributions and Future Outlooks.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#MovahediCS18,https://doi.org/10.1109/JBHI.2017.2727218 +Marcin Ciolek,Automated Detection of Sleep Apnea and Hypopnea Events Based on Robust Airflow Envelope Tracking in the Presence of Breathing Artifacts.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#CiolekNSDS15,https://doi.org/10.1109/JBHI.2014.2325997 +Sun K. Yoo,Three-dimensional modeling and visualization of the cochlea on the Internet.,2000,4,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb4.html#YooWRSV00,https://doi.org/10.1109/4233.845207 +Jiehui Jiang,A mobile monitoring system of blood pressure for underserved in China by information and communication technology service.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#JiangYSKF10,https://doi.org/10.1109/TITB.2010.2043534 +Maria Filomena Santarelli,Real-time multimodal medical image processing: a dynamic volume-rendering application.,1997,1,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb1.html#SantarelliPL97,https://doi.org/10.1109/4233.654860 +Ming-Chun Huang,Using Pressure Map Sequences for Recognition of On Bed Rehabilitation Exercises.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#HuangLXAZS14,https://doi.org/10.1109/JBHI.2013.2296891 +Isaac N. Bankman,Segmentation algorithms for detecting microcalcifications in mammograms.,1997,1,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb1.html#BankmanNSGWB97,https://doi.org/10.1109/4233.640656 +Miguel A. Estudillo-Valderrama,A Distributed Approach to Alarm Management in Chronic Kidney Disease.,2014,18,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb18.html#Estudillo-ValderramaTRNRAM14,https://doi.org/10.1109/JBHI.2014.2333880 +Dimitris Glotsos,Robust Estimation of Bioaffinity Assay Fluorescence Signals.,2006,10,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb10.html#GlotsosTSSR06,https://doi.org/10.1109/TITB.2006.875658 +Sayeed Shafayet Chowdhury,Real-Time Robust Heart Rate Estimation From Wrist-Type PPG Signals Using Multiple Reference Adaptive Noise Cancellation.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#ChowdhuryHHH18,https://doi.org/10.1109/JBHI.2016.2632201 +Dong-Guk Shin,Computing Consistency Between Microarray Data and Known Gene Regulation Relationships.,2009,13,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb13.html#ShinKPKMNWKR09,https://doi.org/10.1109/TITB.2009.2032540 +Peng Xu 0001,Improved noninvasive intracranial pressure assessment with nonlinear kernel regression.,2010,14,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb14.html#XuKBH10,https://doi.org/10.1109/TITB.2009.2027317 +Zhe Zhang,A Fuzzy Kernel Motion Classifier for Autonomous Stroke Rehabilitation.,2016,20,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb20.html#ZhangLPGF16,https://doi.org/10.1109/JBHI.2015.2430524 +Eren Demir,Emergency Readmission Criterion: A Technique for Determining the Emergency Readmission Time Window.,2008,12,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb12.html#DemirCXM08,https://doi.org/10.1109/TITB.2007.911311 +Kevin T. Sweeney,A Methodology for Validating Artifact Removal Techniques for Physiological Signals.,2012,16,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb16.html#SweeneyAWIMO12,https://doi.org/10.1109/TITB.2012.2207400 +Ahror Belaid,Phase-Based Level Set Segmentation of Ultrasound Images.,2011,15,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb15.html#BelaidBML11,https://doi.org/10.1109/TITB.2010.2090889 +Qianni Zhang,Histology Image Retrieval in Optimized Multifeature Spaces.,2013,17,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb17.html#ZhangI13,https://doi.org/10.1109/TITB.2012.2227270 +Thanh Minh Nguyen,A Bayesian Bounded Asymmetric Mixture Model With Segmentation Application.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#NguyenWMZ14,https://doi.org/10.1109/JBHI.2013.2264749 +Hans C. van Assen,A 3-D Active Shape Model Driven by Fuzzy Inference: Application to Cardiac CT and MR.,2008,12,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb12.html#AssenDDRL08,https://doi.org/10.1109/TITB.2008.926477 +Xiaohui Yuan,A multiresolution method for tagline detection and indexing.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#YuanZB10,https://doi.org/10.1109/TITB.2010.2040114 +Nora Millor,Drift-Free Position Estimation for Periodic Movements Using Inertial Units.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#MillorLGMI14,https://doi.org/10.1109/JBHI.2013.2286697 +Parisa Rashidi,A Survey on Ambient-Assisted Living Tools for Older Adults.,2013,17,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb17.html#RashidiM13,https://doi.org/10.1109/JBHI.2012.2234129 +Jochen Klucken,Guest Editorial: Enabling Technologies for Parkinson's Disease Management.,2015,19,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb19.html#KluckenFEH15,https://doi.org/10.1109/JBHI.2015.2488158 +Tanvi Banerjee,Sit-to-Stand Measurement for In-Home Monitoring Using Voxel Analysis.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#BanerjeeSKA14,https://doi.org/10.1109/JBHI.2013.2284404 +Xiaoyan Li,An Examination of the Motor Unit Number Index (MUNIX) in Muscles Paralyzed by Spinal Cord Injury.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#LiJRZ12,https://doi.org/10.1109/TITB.2012.2193410 +Aniruddha Maiti,On the Monte-Carlo Expectation Maximization for Finding Motifs in DNA Sequences.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#MaitiM15,https://doi.org/10.1109/JBHI.2014.2322694 +Hang Zhou,Registration of Pre- and Postresection Ultrasound Volumes With Noncorresponding Regions in Neurosurgery.,2016,20,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb20.html#ZhouR16,https://doi.org/10.1109/JBHI.2016.2554122 +Osman Ratib,Web-based video for real-time monitoring of radiological procedures.,2000,4,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb4.html#RatibDZKMV00,https://doi.org/10.1109/4233.845203 +Krishna K. Venkatasubramanian,PSKA: usable and secure key agreement scheme for body area networks.,2010,14,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb14.html#VenkatasubramanianBG10,https://doi.org/10.1109/TITB.2009.2037617 +Yu Yao,Model-Based Verification of a Non-Linear Separation Scheme for Ballistocardiography.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#YaoBPLWS14,https://doi.org/10.1109/JBHI.2013.2261820 +Chunmei Lu,Automated analysis of repetitive joint motion.,2003,7,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb7.html#LuF03,https://doi.org/10.1109/TITB.2003.821309 +Yunyoung Nam,Estimation of Respiratory Rates Using the Built-in Microphone of a Smartphone or Headset.,2016,20,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb20.html#NamRC16,https://doi.org/10.1109/JBHI.2015.2480838 +Md. Shamsul Arefin,Integration of Low-Power ASIC and MEMS Sensors for Monitoring Gastrointestinal Tract Using a Wireless Capsule System.,2018,22,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb22.html#ArefinRY18,https://doi.org/10.1109/JBHI.2017.2690965 +Dan He,SemInf: A Burst-Based Semantic Influence Model for Biomedical Topic Influence.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#HeP14,https://doi.org/10.1109/JBHI.2013.2285875 +Iain James Marshall,Automating Risk of Bias Assessment for Clinical Trials.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#MarshallKW15,https://doi.org/10.1109/JBHI.2015.2431314 +Ryan S. Mattfeld,Measuring the Consumption of Individual Solid and Liquid Bites Using a Table-Embedded Scale During Unrestricted Eating.,2017,21,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb21.html#MattfeldMH17,https://doi.org/10.1109/JBHI.2016.2632621 +Jenny Folkesson,Unifying Statistical Classification and Geodesic Active Regions for Segmentation of Cardiac MRI.,2008,12,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb12.html#FolkessonSKW08,https://doi.org/10.1109/TITB.2007.912179 +Hongming Xu,Automatic Nuclei Detection Based on Generalized Laplacian of Gaussian Filters.,2017,21,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb21.html#XuLBJM17,https://doi.org/10.1109/JBHI.2016.2544245 +Yannick Bouillon,Computer-supported collaborative work (CSCW) in biomedical signal visualization and processing.,1999,3,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb3.html#BouillonWB99,https://doi.org/10.1109/4233.748973 +Lefteris Gortzis,Collaborative Work During Interventional Radiological Procedures Based on a Multicast Satellite-Terrestrial Network.,2007,11,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb11.html#GortzisPRRKSMNG07,https://doi.org/10.1109/TITB.2007.894724 +Miguel Martínez-Espronceda,Implementation Methodology for Interoperable Personal Health Devices With Low-Voltage Low-Power Constraints.,2011,15,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb15.html#Martinez-EsproncedaMSLTMEG11,https://doi.org/10.1109/TITB.2011.2134861 +D. Chen,GPGPU-Aided Ensemble Empirical-Mode Decomposition for EEG Analysis During Anesthesia.,2010,14,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb14.html#ChenLXBL10,https://doi.org/10.1109/TITB.2010.2072963 +Hee Nam Yoon,Slow-Wave Sleep Estimation for Healthy Subjects and OSA Patients Using R-R Intervals.,2018,22,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb22.html#YoonHCLJP18,https://doi.org/10.1109/JBHI.2017.2712861 +Carolina García Vázquez,Distributed System for Cognitive Stimulation Over Interactive TV.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#VazquezMDO12,https://doi.org/10.1109/TITB.2012.2220782 +Miguel A. Estudillo-Valderrama,Design and Implementation of a Distributed Fall Detection System - Personal Server.,2009,13,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb13.html#Estudillo-ValderramaRRN09,https://doi.org/10.1109/TITB.2009.2031316 +Jasjit S. Suri,Shape recovery algorithms using level sets in 2-D/3-D medical imagery: a state-of-the-art review.,2002,6,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb6.html#SuriLSLZR02,https://doi.org/10.1109/4233.992158 +Gaetano Valenza,Guest Editorial Sensor Informatics for Managing Mental Health.,2016,20,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb20.html#ValenzaCLCJS16,https://doi.org/10.1109/JBHI.2016.2565758 +Marie-Paule Garcia,Coronary Vein Extraction in MSCT Volumes Using Minimum Cost Path and Geometrical Moments.,2013,17,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb17.html#GarciaVBLGHT13,https://doi.org/10.1109/JBHI.2013.2245420 +Fengrong Sun,Feature-space-based fMRI analysis using the optimal linear transformation.,2010,14,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb14.html#SunMLTMB10,https://doi.org/10.1109/TITB.2010.2055574 +Arnaud Moreau,Detection of Nocturnal Scratching Movements in Patients with Atopic Dermatitis Using Accelerometers and Recurrent Neural Networks.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#MoreauARCAP18,https://doi.org/10.1109/JBHI.2017.2710798 +Asuman Dogac,Enhancing IHE XDS for Federated Clinical Affinity Domain Support.,2007,11,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb11.html#DogacLAE07,https://doi.org/10.1109/TITB.2006.874928 +Sergio Camorlinga,Modeling of Workflow-Engaged Networks on Radiology Transfers Across a Metro Network.,2006,10,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb10.html#CamorlingaS06,https://doi.org/10.1109/TITB.2005.859877 +Tiago Marques Godinho,A Routing Mechanism for Cloud Outsourcing of Medical Imaging Repositories.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#GodinhoVSC16,https://doi.org/10.1109/JBHI.2014.2361633 +Runtong Zhang,A Knowledge-Constrained Access Control Model for Protecting Patient Privacy in Hospital Information Systems.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#ZhangCSZL18,https://doi.org/10.1109/JBHI.2017.2696573 +Daniel R. Harris,Using Common Table Expressions to Build a Scalable Boolean Query Generator for Clinical Data Warehouses.,2014,18,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb18.html#HarrisHKSJ14,https://doi.org/10.1109/JBHI.2013.2292591 +Shan Ling,Automatic Tracking of Aponeuroses and Estimation of Muscle Thickness in Ultrasonography: A Feasibility Study.,2013,17,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb17.html#LingZCZWZ13,https://doi.org/10.1109/JBHI.2013.2253787 +Dewar D. Finlay,Eigenleads: ECG leads for maximizing information capture and improving SNR.,2010,14,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb14.html#FinlayNDL10,https://doi.org/10.1109/TITB.2009.2022933 +Yu-Lin Wang,Development of a Wireless Oral-Feeding Monitoring System for Preterm Infants.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#WangHWKCKL15,https://doi.org/10.1109/JBHI.2014.2335742 +Zexuan Ji,Fuzzy Local Gaussian Mixture Model for Brain MR Image Segmentation.,2012,16,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb16.html#JiXSCXF12,https://doi.org/10.1109/TITB.2012.2185852 +Md. Mahmudur Rahman,A Framework for Medical Image Retrieval Using Machine Learning and Statistical Similarity Matching Techniques With Relevance Feedback.,2007,11,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb11.html#RahmanBD07,https://doi.org/10.1109/TITB.2006.884364 +F. Veronesi,Tracking of Left Ventricular Long Axis From Real-Time Three-Dimensional Echocardiography Using Optical Flow Techniques.,2006,10,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb10.html#VeronesiCCSL06,https://doi.org/10.1109/TITB.2005.855535 +Jing Bai,A communication server for telemedicine applications.,1997,1,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb1.html#BaiHZY97,https://doi.org/10.1109/4233.654863 +Daniel Lockery,Store-and-Feedforward Adaptive Gaming System for Hand-Finger Motion Tracking in Telerehabilitation.,2011,15,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb15.html#LockeryPRSS11,https://doi.org/10.1109/TITB.2011.2125976 +Omer T. Inan,Evaluating the lower-body electromyogram signal acquired from the feet as a noise reference for standing ballistocardiogram measurements.,2010,14,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb14.html#InanKG10,https://doi.org/10.1109/TITB.2010.2044185 +Shan Shen,MRI fuzzy segmentation of brain tissue using neighborhood attraction with neural-network optimization.,2005,9,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb9.html#ShenSGS05,https://doi.org/10.1109/TITB.2005.847500 +Shu-Di Bao,Using the Timing Information of Heartbeats as an Entity Identifier to Secure Body Sensor Network.,2008,12,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb12.html#BaoPZS08,https://doi.org/10.1109/TITB.2008.926434 +,Computer Assisted Radiology '97 Conference (Part 2 Of 2).,1998,2,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb2.html#X98, +Sébastien Piccand,Region of Interest and Multiresolution for Volume Rendering.,2008,12,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb12.html#PiccandNP08,https://doi.org/10.1109/TITB.2007.907986 +Georgia Tsiliki,Multi-platform Data Integration in Microarray Analysis.,2011,15,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb15.html#TsilikiZISSPTK11,https://doi.org/10.1109/TITB.2011.2158232 +Ximeng Liu,Privacy-Preserving Patient-Centric Clinical Decision Support System on Naïve Bayesian Classification.,2016,20,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb20.html#LiuLMCQ16,https://doi.org/10.1109/JBHI.2015.2407157 +Dinko Oletic,Asthmatic Wheeze Detection From Compressively Sensed Respiratory Sound Spectra.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#OleticB18,https://doi.org/10.1109/JBHI.2017.2781135 +Lisheng Wang,A Computational Framework for Approximating Boundary Surfaces in 3-D Biomedical Images.,2007,11,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb11.html#WangBHHY07,https://doi.org/10.1109/TITB.2006.889675 +Pingkun Yan,Automatic Segmentation of High-Throughput RNAi Fluorescent Cellular Images.,2008,12,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb12.html#YanZSW08,https://doi.org/10.1109/TITB.2007.898006 +Feng Li,A Robust Deep Model for Improved Classification of AD/MCI Patients.,2015,19,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb19.html#LiTTJSL15,https://doi.org/10.1109/JBHI.2015.2429556 +Darren Craven,Adaptive Dictionary Reconstruction for Compressed Sensing of ECG Signals.,2017,21,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb21.html#CravenMKGJ17,https://doi.org/10.1109/JBHI.2016.2531182 +Javier Reina-Tosina,NEWBET: telemedicine platform for burn patients.,2000,4,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb4.html#Reina-TosinaRR00,https://doi.org/10.1109/4233.845211 +Sayandeep Acharya,Real-Time Hypoxia Prediction Using Decision Fusion.,2017,21,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb21.html#AcharyaRSHK17,https://doi.org/10.1109/JBHI.2016.2528887 +Richard Moreau,Simulation of an Instrumental Childbirth for the Training of the Forceps Extraction: Control Algorithm and Evaluation.,2011,15,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb15.html#MoreauPBRD11,https://doi.org/10.1109/TITB.2011.2107746 +Li-Ching Wu,Identifying Discriminative Amino Acids Within the Hemagglutinin of Human Influenza A H5N1 Virus Using a Decision Tree.,2008,12,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb12.html#WuHHC08,https://doi.org/10.1109/TITB.2008.896871 +Paolo Dario,A novel mechatronic tool for computer-assisted arthroscopy.,2000,4,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb4.html#DarioCMDMTM00,https://doi.org/10.1109/4233.826855 +Sona Ghadimi,Skull Segmentation and Reconstruction From Newborn CT Images Using Coupled Level Sets.,2016,20,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb20.html#GhadimiMGW16,https://doi.org/10.1109/JBHI.2015.2391991 +Cui Lin,Coclustering for cross-subject fiber tract analysis through diffusion tensor imaging.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#LinPLMH10,https://doi.org/10.1109/TITB.2010.2040286 +Wangmeng Zuo,Comparison of Three Different Types of Wrist Pulse Signals by Their Physical Meanings and Diagnosis Performance.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#ZuoWZ16,https://doi.org/10.1109/JBHI.2014.2369821 +Yajiong Xue,Analysis of Telemedicine Diffusion: The Case of China.,2007,11,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb11.html#XueL07a,https://doi.org/10.1109/TITB.2006.879599 +Fan Zhang,Source Selection for Real-Time User Intent Recognition Toward Volitional Control of Artificial Legs.,2013,17,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb17.html#ZhangH13,https://doi.org/10.1109/JBHI.2012.2236563 +Xue-Wen Chen,Guest editorial: data mining in bioinformatics and biomedicine.,2010,14,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb14.html#ChenA10,https://doi.org/10.1109/TITB.2009.2039678 +Shiv Ram Dubey,Local Bit-Plane Decoded Pattern: A Novel Feature Descriptor for Biomedical Image Retrieval.,2016,20,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb20.html#DubeySS16,https://doi.org/10.1109/JBHI.2015.2437396 +Hubert Kordylewski,A novel large-memory neural network as an aid in medical diagnosis applications.,2001,5,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb5.html#KordylewskiGL01,https://doi.org/10.1109/4233.945291 +Walter G. Besio,Guest Editorial EMBC 2014.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#BesioYLLPW15,https://doi.org/10.1109/JBHI.2015.2442632 +Ujjwal Maulik,Medical Image Segmentation Using Genetic Algorithms.,2009,13,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb13.html#Maulik09,https://doi.org/10.1109/TITB.2008.2007301 +Harri Honko,W2E-Wellness Warehouse Engine for Semantic Interoperability of Consumer Health Data.,2016,20,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb20.html#HonkoAAPSVK16,https://doi.org/10.1109/JBHI.2015.2469718 +Giuseppe Riva,Interaction and presence in the clinical relationship: virtual reality (VR) as communicative medium between patient and therapist.,2002,6,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb6.html#RivaMV02,https://doi.org/10.1109/TITB.2002.802370 +Paolo Soda,Aggregation of Classifiers for Staining Pattern Recognition in Antinuclear Autoantibodies Analysis.,2009,13,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb13.html#SodaI09,https://doi.org/10.1109/TITB.2008.2010855 +Mimma Nardelli,Reliability of Lagged Poincaré Plot Parameters in Ultrashort Heart Rate Variability Series: Application on Affective Sounds.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#NardelliGBVSB18,https://doi.org/10.1109/JBHI.2017.2694999 +Fang Wang,Toward a Passive Low-Cost In-Home Gait Assessment System for Older Adults.,2013,17,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb17.html#WangSSKAR13,https://doi.org/10.1109/JBHI.2012.2233745 +Rasoul Yousefi,A Motion-Tolerant Adaptive Algorithm for Wearable Photoplethysmographic Biosensors.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#YousefiNOP14,https://doi.org/10.1109/JBHI.2013.2264358 +Demitris Fotiadis,Guest Editorial: Introduction to the Special Section on Biomedical Informatics.,2009,13,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb13.html#FotiadisP09,https://doi.org/10.1109/TITB.2009.2025118 +Yue Tong,Cloud-Assisted Mobile-Access of Health Data With Privacy and Auditability.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#TongSCL14,https://doi.org/10.1109/JBHI.2013.2294932 +Jean-Yves Bansard,Medical Informatics and Bioinformatics: A Bibliometric Study.,2007,11,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb11.html#BansardRCCMBHMMTLC07,https://doi.org/10.1109/TITB.2007.894795 +Chaijie Duan,An Adaptive Window-Setting Scheme for Segmentation of Bladder Tumor Surface via MR Cystography.,2012,16,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb16.html#DuanYLXLL12,https://doi.org/10.1109/TITB.2012.2200496 +Xinglong Liu,Robust Optimization-Based Coronary Artery Labeling From X-Ray Angiograms.,2016,20,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb20.html#LiuHQH16,https://doi.org/10.1109/JBHI.2015.2485227 +Farzad Khosrow-Khavar,Automatic Annotation of Seismocardiogram With High-Frequency Precordial Accelerations.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#Khosrow-KhavarT15,https://doi.org/10.1109/JBHI.2014.2360156 +Edilson Delgado-Trejos,Dimensionality Reduction Oriented Toward the Feature Visualization for Ischemia Detection.,2009,13,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb13.html#Delgado-TrejosPVCC09,https://doi.org/10.1109/TITB.2009.2016654 +Jennifer Boger,A Planning System Based on Markov Decision Processes to Guide People With Dementia Through Activities of Daily Living.,2006,10,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb10.html#BogerHPBFM06,https://doi.org/10.1109/TITB.2006.864480 +Jorge Calvillo-Arbizu,Privilege Management Infrastructure for Virtual Organizations in Healthcare Grids.,2011,15,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb15.html#CalvilloRRR11,https://doi.org/10.1109/TITB.2010.2104160 +Nadia Magnenat-Thalmann,Construction of a human topological model from medical data.,2000,4,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb4.html#Magnenat-ThalmannC00,https://doi.org/10.1109/4233.845206 +Ashwani Kumar Tiwari,Automated Diagnosis of Epilepsy Using Key-Point-Based Local Binary Pattern of EEG Signals.,2017,21,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb21.html#TiwariPKP17,https://doi.org/10.1109/JBHI.2016.2589971 +Michael Waine,Three-Dimensional Needle Shape Estimation in TRUS-Guided Prostate Brachytherapy Using 2-D Ultrasound Images.,2016,20,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb20.html#WaineRSUT16,https://doi.org/10.1109/JBHI.2015.2477829 +Rachel C. King,Development of a Wireless Sensor Glove for Surgical Skills Assessment.,2009,13,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb13.html#KingALY09,https://doi.org/10.1109/TITB.2009.2029614 +Mohammed El Hassouni,Fractional Brownian Motion and Rao Geodesic Distance for Bone X-Ray Image Characterization.,2017,21,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb21.html#HassouniTTLJ17,https://doi.org/10.1109/JBHI.2016.2619420 +Alexandros T. Tzallas,Epileptic Seizure Detection in EEGs Using Time-Frequency Analysis.,2009,13,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb13.html#TzallasTF09,https://doi.org/10.1109/TITB.2009.2017939 +Manish Sapkota,AIIMDs: An Integrated Framework of Automatic Idiopathic Inflammatory Myopathy Diagnosis for Muscle.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#SapkotaLXSXY18,https://doi.org/10.1109/JBHI.2017.2694344 +Graham J. L. Kemp,Architecture of a mediator for a bioinformatics database federation.,2002,6,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb6.html#KempAG02,https://doi.org/10.1109/TITB.2002.1006298 +Yangzhou Gan,Tooth and Alveolar Bone Segmentation From Dental Computed Tomography Images.,2018,22,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb22.html#GanXXLZ18,https://doi.org/10.1109/JBHI.2017.2709406 +Sinziana Mazilu,Prediction of Freezing of Gait in Parkinson's From Physiological Wearables: An Exploratory Study.,2015,19,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb19.html#MaziluCGMHT15,https://doi.org/10.1109/JBHI.2015.2465134 +Neda Barzegar Marvasti,Computer-Aided Medical Image Annotation: Preliminary Results With Liver Lesions in CT.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#MarvastiYA18,https://doi.org/10.1109/JBHI.2017.2771211 +Saiyi Li,A Syntactic Two-Component Encoding Model for the Trajectories of Human Actions.,2014,18,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb18.html#LiFCP14,https://doi.org/10.1109/JBHI.2014.2304519 +Mohammed Goryawala,A 3-D Liver Segmentation Method with Parallel Computing for Selective Internal Radiation Therapy.,2012,16,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb16.html#GoryawalaGCBGBSBMA12,https://doi.org/10.1109/TITB.2011.2171191 +Yong Liang 0001,A Novel Evolutionary Drug Scheduling Model in Cancer Chemotherapy.,2006,10,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb10.html#LiangLM06,https://doi.org/10.1109/TITB.2005.859888 +Ning Wang,Extracting and Selecting Distinctive EEG Features for Efficient Epileptic Seizure Prediction.,2015,19,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb19.html#WangL15,https://doi.org/10.1109/JBHI.2014.2358640 +Michael Haubner,Virtual reality in medicine-computer graphics and interaction techniques.,1997,1,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb1.html#HaubnerKLEE97,https://doi.org/10.1109/4233.594047 +Minas V. Liarokapis,A Learning Scheme for Reach to Grasp Movements: On EMG-Based Interfaces Using Task Specific Motion Decoding Models.,2013,17,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb17.html#LiarokapisAKM13,https://doi.org/10.1109/JBHI.2013.2259594 +Ramana Vinjamuri,Extraction of Sources of Tremor in Hand Movements of Patients With Movement Disorders.,2009,13,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb13.html#VinjamuriCKLM09,https://doi.org/10.1109/TITB.2008.2006403 +Aruna Vivekanand,Multiscale Roughness Approach for Assessing Posterior Capsule Opacification.,2014,18,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb18.html#VivekanandWA14,https://doi.org/10.1109/JBHI.2014.2304965 +David A. Mejia,Understanding and supporting lightweight communication in hospital work.,2010,14,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb14.html#MejiaFM10,https://doi.org/10.1109/TITB.2009.2033384 +Elina M. Mattila,Mobile Diary for Wellness Management - Results on Usage and Usability in Two User Studies.,2008,12,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb12.html#MattilaPHKVSMKKLK08,https://doi.org/10.1109/TITB.2007.908237 +Malcolm Clarke,Designing Robust and Reliable Timestamps for Remote Patient Monitoring.,2015,19,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb19.html#ClarkeSRR15,https://doi.org/10.1109/JBHI.2014.2343632 +Robert Stevens,OILing the way to machine understandable bioinformatics resources.,2002,6,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb6.html#StevensGHB02,https://doi.org/10.1109/TITB.2002.1006300 +Ali Fuat Ergenc,New Optical Sensor for Monitoring the Micropipette Motion.,2006,10,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb10.html#ErgencO06,https://doi.org/10.1109/TITB.2006.879598 +Zheng Xia,Registration of 3-D CT and 2-D Flat Images of Mouse via Affine Transformation.,2008,12,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb12.html#XiaHZSNW08,https://doi.org/10.1109/TITB.2007.904631 +Giuseppe Riva,Guest editorial: introduction to the special issue on virtual reality environments in behavioral sciences.,2002,6,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb6.html#RivaW02,https://doi.org/10.1109/TITB.2002.802369 +Stelios Sfakianakis,On the Identification of Circulating Tumor Cells in Breast Cancer.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#SfakianakisBZVK14,https://doi.org/10.1109/JBHI.2013.2295262 +Yuan-Ting Zhang,Editorial An Inaugural Message for the IEEE Journal of Biomedical and Health Informatics.,2013,17,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb17.html#ZhangPM13,https://doi.org/10.1109/JBHI.2013.2240892 +Leandro Pecchia,Discrimination Power of Short-Term Heart Rate Variability Measures for CHF Assessment.,2011,15,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb15.html#PecchiaMSB11,https://doi.org/10.1109/TITB.2010.2091647 +Sotiris Pavlopoulos,A novel emergency telemedicine system based on wireless communication technology-AMBULANCE.,1998,2,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb2.html#PavlopoulosKBDK98,https://doi.org/10.1109/4233.737581 +Byron Marshall,Aggregating Automatically Extracted Regulatory Pathway Relations.,2006,10,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb10.html#MarshallSMEC06,https://doi.org/10.1109/TITB.2005.856857 +Michael Häfner,Computer-aided classification of zoom-endoscopical images using Fourier filters.,2010,14,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb14.html#HafnerBPRGUWV10,https://doi.org/10.1109/TITB.2010.2044184 +A. Nasser Esgiar,Fractal analysis in the detection of colonic cancer images.,2002,6,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb6.html#EsgiarGSBM02,https://doi.org/10.1109/4233.992163 +Seddigheh Baktash,Characteristic Ratio-Independent Arterial Stiffness-Based Blood Pressure Estimation.,2017,21,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb21.html#BaktashFBBGAD17,https://doi.org/10.1109/JBHI.2016.2594177 +A. Emami,Modeling Glucagon Action in Patients With Type 1 Diabetes.,2017,21,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb21.html#EmamiYRPCH17,https://doi.org/10.1109/JBHI.2016.2593630 +Jürgen Weese,Voxel-based 2-D/3-D registration of fluoroscopy images and CT scans for image-guided surgery.,1997,1,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb1.html#WeesePDBHH97,https://doi.org/10.1109/4233.681173 +Benjamin Shickel,Deep EHR: A Survey of Recent Advances in Deep Learning Techniques for Electronic Health Record (EHR) Analysis.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#ShickelTBR18,https://doi.org/10.1109/JBHI.2017.2767063 +Edoardo Pasolli,Active Learning Methods for Electrocardiographic Signal Classification.,2010,14,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb14.html#PasolliM10,https://doi.org/10.1109/TITB.2010.2048922 +Nabil Alshurafa,Remote Health Monitoring Outcome Success Prediction Using Baseline and First Month Intervention Data.,2017,21,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb21.html#AlshurafaSPKSE17,https://doi.org/10.1109/JBHI.2016.2518673 +Vassilis S. Kodogiannis,Artificial Odor Discrimination System Using Electronic Nose and Neural Networks for the Identification of Urinary Tract Infection.,2008,12,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb12.html#KodogiannisLTC08,https://doi.org/10.1109/TITB.2008.917928 +Terence Critchlow,Guest editorial.,2002,6,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb6.html#Critchlow02,https://doi.org/10.1109/TITB.2002.1006295 +Bum Ju Lee,Prediction of Fasting Plasma Glucose Status Using Anthropometric Measures for Diagnosing Type 2 Diabetes.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#LeeKNPK14,https://doi.org/10.1109/JBHI.2013.2264509 +Yuehua Liu,Segmentation of White Blood Cells Image Using Adaptive Location and Iteration.,2017,21,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb21.html#LiuCZC17,https://doi.org/10.1109/JBHI.2016.2623421 +Xun Chen,A Three-Step Multimodal Analysis Framework for Modeling Corticomuscular Activity With Application to Parkinson's Disease.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#ChenWM14,https://doi.org/10.1109/JBHI.2013.2284480 +Bharat Shrestha,IEEE 802.15.4 MAC With GTS Transmission for Heterogeneous Devices With Application to Wheelchair Body-Area Sensor Networks.,2011,15,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb15.html#ShresthaHC11,https://doi.org/10.1109/TITB.2011.2129522 +Lorenzo Bianchi,Design of a RESTful Web Information System for Drug Prescription and Administration.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#BianchiPPTCIG14,https://doi.org/10.1109/JBHI.2013.2282827 +Liang-Hung Wang,Implementation of a Wireless ECG Acquisition SoC for IEEE 802.15.4 (ZigBee) Applications.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#WangCLFL15,https://doi.org/10.1109/JBHI.2014.2311232 +Denis Kouame,Adaptive AR and Neurofuzzy Approaches: Access to Cerebral Particle Signatures.,2006,10,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb10.html#KouameBGB06,https://doi.org/10.1109/TITB.2005.862463 +Julius Hannink,Sensor-Based Gait Parameter Extraction With Deep Convolutional Neural Networks.,2017,21,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb21.html#HanninkKPGKE17,https://doi.org/10.1109/JBHI.2016.2636456 +Atena Roshan Fekr,Design and Evaluation of an Intelligent Remote Tidal Volume Variability Monitoring System in E-Health Applications.,2015,19,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb19.html#FekrRZ15,https://doi.org/10.1109/JBHI.2015.2445783 +Xiaojin Li,HyCLASSS: A Hybrid Classifier for Automatic Sleep Stage Scoring.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#LiCTCZZ18,https://doi.org/10.1109/JBHI.2017.2668993 +Yuping Duan,Volume Preserved Mass-Spring Model with Novel Constraints for Soft Tissue Deformation.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#DuanHCCZTSCC16,https://doi.org/10.1109/JBHI.2014.2370059 +Richard D. Boyce,Modeling Drug Mechanism Knowledge Using Evidence and Truth Maintenance.,2007,11,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb11.html#BoyceCHK07,https://doi.org/10.1109/TITB.2007.890842 +Sandeep Gutta,Cardiorespiratory Model-Based Data-Driven Approach for Sleep Apnea Detection.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#GuttaCNB18,https://doi.org/10.1109/JBHI.2017.2740120 +George Stalidis,Model-based processing scheme for quantitative 4-D cardiac MRI analysis.,2002,6,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb6.html#StalidisMEDP02,https://doi.org/10.1109/4233.992164 +Stavroula G. Mougiakakou,Guest Editorial Nutrition Informatics: From Food Monitoring to Dietary Management.,2017,21,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb21.html#MougiakakouFYS17,https://doi.org/10.1109/JBHI.2017.2694938 +Lin Shu,In-shoe plantar pressure measurement and analysis system based on fabric pressure sensing array.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#ShuHWLFT10,https://doi.org/10.1109/TITB.2009.2038904 +Bobak Mortazavi,Near-Realistic Mobile Exergames With Wireless Wearable Sensors.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#MortazaviNLWGS14,https://doi.org/10.1109/JBHI.2013.2293674 +Chaochang Chiu,Mining Three-Dimensional Anthropometric Body Surface Scanning Data for Hypertension Detection.,2007,11,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb11.html#ChiuHHHLCLCH07,https://doi.org/10.1109/TITB.2006.884362 +Berno J. E. Misgeld,Body-Sensor-Network-Based Spasticity Detection.,2016,20,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb20.html#MisgeldLHWL16,https://doi.org/10.1109/JBHI.2015.2477245 +Hyun Soo Woo,Haptic Interface of the KAIST-Ewha Colonoscopy Simulator II.,2008,12,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb12.html#WooKALY08,https://doi.org/10.1109/TITB.2008.920617 +Xian-Fa Cai,Local and Global Preserving Semisupervised Dimensionality Reduction Based on Random Subspace for Cancer Classification.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#CaiWWY14,https://doi.org/10.1109/JBHI.2013.2281985 +Adrien Depeursinge,Near-Affine-Invariant Texture Learning for Lung Tissue Analysis Using Isotropic Wavelet Frames.,2012,16,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb16.html#DepeursingeVPGPM12,https://doi.org/10.1109/TITB.2012.2198829 +Etienne Labyt,Modeling of Entorhinal Cortex and Simulation of Epileptic Activity: Insights Into the Role of Inhibition-Related Parameters.,2007,11,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb11.html#LabytFUBW07,https://doi.org/10.1109/TITB.2006.889680 +Ricky K. Taira,A Field Theoretical Approach to Medical Natural Language Processing.,2007,11,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb11.html#TairaBK07,https://doi.org/10.1109/TITB.2006.884368 +Bing Yao,Characterizing the Location and Extent of Myocardial Infarctions With Inverse ECG Modeling and Spatiotemporal Regularization.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#YaoZY18,https://doi.org/10.1109/JBHI.2017.2768534 +Nelson Martins,A New Active Contours Approach for Finger Extensor Tendon Segmentation in Ultrasound Images Using Prior Knowledge and Phase Symmetry.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#MartinsSVFTC18,https://doi.org/10.1109/JBHI.2017.2723819 +Charalampos N. Doukas,Computer-Supported Angiogenesis Quantification Using Image Analysis and Statistical Averaging.,2008,12,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb12.html#DoukasMC08,https://doi.org/10.1109/TITB.2008.926463 +Ninghuan Wang,Quantifying palpation techniques in relation to performance in a clinical prostate exam.,2010,14,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb14.html#WangGCM10,https://doi.org/10.1109/TITB.2010.2041064 +Perrine Paul,A Surface Registration Method for Quantification of Intraoperative Brain Deformations in Image-Guided Neurosurgery.,2009,13,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb13.html#PaulMJ09,https://doi.org/10.1109/TITB.2009.2025373 +Zelun Wang,BioPad: Leveraging off-the-Shelf Video Games for Stress Self-Regulation.,2018,22,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb22.html#WangPG18,https://doi.org/10.1109/JBHI.2017.2671788 +Emmanuel Chazard,Data Mining to Generate Adverse Drug Events Detection Rules.,2011,15,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb15.html#ChazardFBLB11,https://doi.org/10.1109/TITB.2011.2165727 +Saeedeh Afshari,Directed Functional Networks in Alzheimer's Disease: Disruption of Global and Local Connectivity Measures.,2017,21,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb21.html#AfshariJ17,https://doi.org/10.1109/JBHI.2016.2578954 +Farid Melgani,Classification of Electrocardiogram Signals With Support Vector Machines and Particle Swarm Optimization.,2008,12,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb12.html#MelganiB08,https://doi.org/10.1109/TITB.2008.923147 +Jiexun Li,Optimal Search-Based Gene Subset Selection for Gene Array Cancer Classification.,2007,11,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb11.html#LiSCF07,https://doi.org/10.1109/TITB.2007.892693 +M. N. Salous,CBIT - context-based image transmission.,2001,5,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb5.html#SalousPC01,https://doi.org/10.1109/4233.924806 +Elena I. Gaura,Neural-network compensation methods for capacitive micromachined accelerometers for use in telecare medicine.,2001,5,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb5.html#GauraRSG01,https://doi.org/10.1109/4233.945296 +Mohamed Ezzeldin A. Bashir,Trigger Learning and ECG Parameter Customization for Remote Cardiac Clinical Care Information System.,2012,16,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb16.html#BashirLLBSCR12,https://doi.org/10.1109/TITB.2012.2188812 +Jeremy Jellish,A System for Real-Time Feedback to Improve Gait and Posture in Parkinson's Disease.,2015,19,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb19.html#JellishAIMSOK15,https://doi.org/10.1109/JBHI.2015.2472560 +Yi-Ting Cheng,Mining Sequential Risk Patterns From Large-Scale Clinical Databases for Early Assessment of Chronic Diseases: A Case Study on Chronic Obstructive Pulmonary Disease.,2017,21,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb21.html#ChengLCT17,https://doi.org/10.1109/JBHI.2017.2657802 +Bernardo Buenviaje,Mahalanobis-Taguchi System to Identify Preindicators of Delirium in the ICU.,2016,20,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb20.html#BuenviajeBRW16,https://doi.org/10.1109/JBHI.2015.2434949 +Jun Xie,Image Diffusion Using Saliency Bilateral Filter.,2008,12,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb12.html#XieHS08,https://doi.org/10.1109/TITB.2008.926462 +Dewar D. Finlay,Optimal Electrocardiographic Lead Systems: Practical Scenarios in Smart Clothing and Wearable Health Systems.,2008,12,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb12.html#FinlayNDMB08,https://doi.org/10.1109/TITB.2007.896882 +Behnood Gholami,A Statistical Modeling Approach for Tumor-Type Identification in Surgical Neuropathology Using Tissue Mass Spectrometry Imaging.,2013,17,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb17.html#GholamiNEA13,https://doi.org/10.1109/JBHI.2013.2250983 +Niall Twomey,Automated Detection of Perturbed Cardiac Physiology During Oral Food Allergen Challenge in Children.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#TwomeyTHM14,https://doi.org/10.1109/JBHI.2013.2290706 +Giuseppe Riva,Virtual environments in neuroscience.,1998,2,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb2.html#Riva98,https://doi.org/10.1109/4233.737583 +Robert S. H. Istepanaian,Guest Editorial Introduction to the Special Section: 4G Health - The Long-Term Evolution of m-Health.,2012,16,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb16.html#IstepanaianZ12,https://doi.org/10.1109/TITB.2012.2183269 +J. A. Replogle,Extracting isovolumes from three-dimensional torso geometry using PROLOG.,1998,2,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb2.html#ReplogleRJC98,https://doi.org/10.1109/4233.678528 +Aisha Naseer,Web-services-based resource discovery model and service deployment on healthgrids.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#NaseerS10,https://doi.org/10.1109/TITB.2010.2040482 +K. D. Kalantzaki,Nonparametric Network Design and Analysis of Disease Genes in Oral Cancer Progression.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#KalantzakiBEZGF14,https://doi.org/10.1109/JBHI.2013.2274643 +Ramana Vinjamuri,Toward Synergy-Based Brain-Machine Interfaces.,2011,15,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb15.html#VinjamuriWMCDKBTW11,https://doi.org/10.1109/TITB.2011.2160272 +Hong Hu,Regulatory Elements in Low-Methylated Regions Predict Directional Change of Gene Expression.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#HuXD15,https://doi.org/10.1109/JBHI.2015.2431640 +Benedikt Fasel,Joint Inertial Sensor Orientation Drift Reduction for Highly Dynamic Movements.,2018,22,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb22.html#FaselSCKMA18,https://doi.org/10.1109/JBHI.2017.2659758 +Gang Chen,An Improved Level Set for Liver Segmentation and Perfusion Analysis in MRIs.,2009,13,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb13.html#ChenGQX09,https://doi.org/10.1109/TITB.2008.2007110 +Yogachandran Rahulamathavan,Privacy-Preserving Clinical Decision Support System Using Gaussian Kernel-Based Classification.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#RahulamathavanVPCR14,https://doi.org/10.1109/JBHI.2013.2274899 +Ali Al-Timemy,Classification of Finger Movements for the Dexterous Hand Prosthesis Control With Surface Electromyography.,2013,17,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb17.html#Al-TimemyBEO13,https://doi.org/10.1109/JBHI.2013.2249590 +Guy Mathurin Kouamou Ntonfo,Low-Complexity Image Processing for Real-Time Detection of Neonatal Clonic Seizures.,2012,16,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb16.html#NtonfoFRP12,https://doi.org/10.1109/TITB.2012.2186586 +Raza Ali,Detection and Analysis of Transitional Activity in Manifold Space.,2012,16,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb16.html#AliALY12,https://doi.org/10.1109/TITB.2011.2165320 +Tomás Novosad,Searching Protein 3-D Structures for Optimal Structure Alignment Using Intelligent Algorithms and Data Structures.,2010,14,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb14.html#NovosadSAY10,https://doi.org/10.1109/TITB.2010.2079939 +Amjed S. Al-Fahoum,Quality Assessment of ECG Compression Techniques Using a Wavelet-Based Diagnostic Measure.,2006,10,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb10.html#Al-Fahoum06,https://doi.org/10.1109/TITB.2005.855554 +Biswadip Ghosh,Comparing knowledge management in health-care and technical support organizations.,2005,9,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb9.html#GhoshS05,https://doi.org/10.1109/TITB.2005.847202 +Spyretta Golemati,Comparison of Block Matching and Differential Methods for Motion Analysis of the Carotid Artery Wall From Ultrasound Images.,2012,16,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb16.html#GolematiSGDKN12,https://doi.org/10.1109/TITB.2012.2193411 +Yi Wang 0012,Near Real-Time Retroflexion Detection in Colonoscopy.,2013,17,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb17.html#0012TWOG13,https://doi.org/10.1109/TITB.2012.2226595 +Aboul Ella Hassanien,Rough Sets and Near Sets in Medical Imaging: A Review.,2009,13,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb13.html#HassanienAPSH09,https://doi.org/10.1109/TITB.2009.2017017 +Tomas Fico,Hardware and Software Realization of EDSD for Acupuncture Research and Practice.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#FicoDD14,https://doi.org/10.1109/JBHI.2013.2285729 +Evangelia Karali,ISWLS: Novel Algorithm for Image Reconstruction in PET.,2011,15,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb15.html#KaraliPLK11,https://doi.org/10.1109/TITB.2010.2104161 +Elif Derya übeyli,Eigenvector Methods for Automated Detection of Electrocardiographic Changes in Partial Epileptic Patients.,2009,13,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb13.html#Ubeyli09,https://doi.org/10.1109/TITB.2008.920614 +Khalid A. Al-Kofahi,Median-based robust algorithms for tracing neurons from noisy confocal microscope images.,2003,7,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb7.html#Al-KofahiCLSDSTR03,https://doi.org/10.1109/TITB.2003.816564 +Xidong Yang,Chinese Sign Language Recognition Based on an Optimized Tree-Structure Framework.,2017,21,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb21.html#YangCCWZ17,https://doi.org/10.1109/JBHI.2016.2560907 +S. R. Sreeja,Removal of Eye Blink Artifacts From EEG Signals Using Sparsity.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#SreejaSSM18,https://doi.org/10.1109/JBHI.2017.2771783 +K. Srinivasan,Multichannel EEG Compression: Wavelet-Based Image and Volumetric Coding Approach.,2013,17,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb17.html#SrinivasanDR13,https://doi.org/10.1109/TITB.2012.2194298 +Ola Ahmad,Spectral Shape Analysis of Human Torsos: Application to the Evaluation of Scoliosis Surgery Outcome.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#AhmadLPLC18,https://doi.org/10.1109/JBHI.2017.2759804 +Yang Yao,Validation of an Adaptive Transfer Function Method to Estimate the Aortic Pressure Waveform.,2017,21,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb21.html#YaoXSFZHZGZ17,https://doi.org/10.1109/JBHI.2016.2636223 +Adriana M. Adami,Detection of movement in bed using unobtrusive load cell sensors.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#AdamiPHS10,https://doi.org/10.1109/TITB.2008.2010701 +D. Wang,Full-Angle Fluorescence Diffuse Optical Tomography With Spatially Coded Parallel Excitation.,2010,14,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb14.html#WangLLB10,https://doi.org/10.1109/TITB.2010.2077306 +Neven Saleh,Preventive Maintenance Prioritization Index of Medical Equipment Using Quality Function Deployment.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#SalehSEPPB15,https://doi.org/10.1109/JBHI.2014.2337895 +Baek Hwan Cho,Nonlinear Support Vector Machine Visualization for Risk Factor Analysis Using Nomograms and Localized Radial Basis Function Kernels.,2008,12,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb12.html#ChoYLCKK08,https://doi.org/10.1109/TITB.2007.902300 +Dustin T. Dunsmuir,Development of mHealth Applications for Pre-Eclampsia Triage.,2014,18,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb18.html#DunsmuirPCPGLDDA14,https://doi.org/10.1109/JBHI.2014.2301156 +Yushan Zheng,Size-Scalable Content-Based Histopathological Image Retrieval From Database That Consists of WSIs.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#ZhengJZXMSZ18,https://doi.org/10.1109/JBHI.2017.2723014 +Jesse S. Jin,An adaptive nonlinear diffusion algorithm for filtering medical images.,2000,4,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb4.html#JinWH00,https://doi.org/10.1109/4233.897062 +Miao Yu 0001,A Posture Recognition-Based Fall Detection System for Monitoring an Elderly Person in a Smart Home Environment.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#YuRNWC12,https://doi.org/10.1109/TITB.2012.2214786 +Zhen Qian,A Lesion-Specific Coronary Artery Calcium Quantification Framework for the Prediction of Cardiac Events.,2011,15,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb15.html#QianMRV11,https://doi.org/10.1109/TITB.2011.2162074 +N. Montazeri Ghahjaverestan,Coupled Hidden Markov Model-Based Method for Apnea Bradycardia Detection.,2016,20,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb20.html#GhahjaverestanM16,https://doi.org/10.1109/JBHI.2015.2405075 +Daniel Sánchez Morillo,An accelerometer-based device for sleep apnea screening.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#MorilloOFJ10,https://doi.org/10.1109/TITB.2009.2027231 +Jee-Hoon Lee,Noninvasive Biosignal Detection Radar System Using Circular Polarization.,2009,13,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb13.html#LeeHCP09,https://doi.org/10.1109/TITB.2009.2018623 +Vince D. Calhoun,Feature-Based Fusion of Medical Imaging Data.,2009,13,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb13.html#CalhounA09,https://doi.org/10.1109/TITB.2008.923773 +Daniel Harari,A computer-based method for the assessment of body-image distortions in anorexia-nervosa patients.,2001,5,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb5.html#HarariFKCD01,https://doi.org/10.1109/4233.966106 +Ilias Maglogiannis,Enabling Location Privacy and Medical Data Encryption in Patient Telemonitoring Systems.,2009,13,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb13.html#MaglogiannisKDH09,https://doi.org/10.1109/TITB.2008.2011155 +George Ghinea,Visualization of Back Pain Data - A 3-D Solution.,2007,11,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb11.html#GhineaKFC07,https://doi.org/10.1109/TITB.2006.889710 +Swamy Laxminarayan,Editorial: information technology in biomedicine: maturational insights.,2002,6,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb6.html#Laxminarayan02,https://doi.org/10.1109/TITB.2002.992156 +Victor Rybynok,MyCare Card Development: Portable GUI Framework for the Personal Electronic Health Record Device.,2011,15,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb15.html#RybynokKBW11,https://doi.org/10.1109/TITB.2010.2091143 +Tuan D. Pham,Fuzzy Scaling Analysis of a Mouse Mutant With Brain Morphological Changes.,2009,13,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb13.html#PhamMC09,https://doi.org/10.1109/TITB.2009.2019638 +Ting Zhu,Time-Series Approaches for Forecasting the Number of Hospital Daily Discharged Inpatients.,2017,21,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb21.html#ZhuLZSS17,https://doi.org/10.1109/JBHI.2015.2511820 +Francisco Hernando-Gallego,Feature Extraction of Galvanic Skin Responses by Nonnegative Sparse Deconvolution.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#Hernando-Gallego18,https://doi.org/10.1109/JBHI.2017.2780252 +Christopher A. Chung,Development of an interactive multimedia training simulator for responding to abortion clinic bomb threats.,2000,4,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb4.html#Chung00,https://doi.org/10.1109/4233.826864 +Marco Di Rienzo,Guest Editorial: Unobtrusive Assessment of the Mechanical Aspects of Cardiovascular Function.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#RienzoIMP15,https://doi.org/10.1109/JBHI.2015.2443191 +Ozgur Kilic,Providing interoperability of eHealth communities through peer-to-peer networks.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#KilicDE10,https://doi.org/10.1109/TITB.2010.2041029 +Emad Fatemizadeh,Automatic landmark extraction from image data using modified growing neural gas network.,2003,7,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb7.html#FatemizadehLS03,https://doi.org/10.1109/TITB.2003.808501 +Luis Estrada,Onset and Offset Estimation of the Neural Inspiratory Time in Surface Diaphragm Electromyography: A Pilot Study in Healthy Subjects.,2018,22,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb22.html#EstradaTSJ18,https://doi.org/10.1109/JBHI.2017.2672800 +Olli Lahdenoja,Atrial Fibrillation Detection via Accelerometer and Gyroscope of a Smartphone.,2018,22,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb22.html#LahdenojaHINKSK18,https://doi.org/10.1109/JBHI.2017.2688473 +Shen Zhao,Robust Segmentation of Intima-Media Borders With Different Morphologies and Dynamics During the Cardiac Cycle.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#ZhaoGZXLGWBXXL18,https://doi.org/10.1109/JBHI.2017.2776246 +Mustafa Yuksel,Interoperability of Medical Device Information and the Clinical Applications: An HL7 RMIM based on the ISO/IEEE 11073 DIM.,2011,15,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb15.html#YukselD11,https://doi.org/10.1109/TITB.2011.2151868 +Youqing Wang,Intelligent Closed-Loop Insulin Delivery Systems for ICU Patients.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#WangXJL14,https://doi.org/10.1109/JBHI.2013.2269699 +Georgia Skreti,Temporal and Spatial Patterns of Gene Profiles during Chondrogenic Differentiation.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#SkretiBKZ14,https://doi.org/10.1109/JBHI.2014.2305770 +Timothy Adlam,The installation and support of internationally distributed equipment for people with dementia.,2004,8,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb8.html#AdlamFOJMB04,https://doi.org/10.1109/TITB.2004.834393 +Toufik Guettari,Design and First Evaluation of a Sleep Characterization Monitoring System Using a Remote Contactless Sensor.,2017,21,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb21.html#GuettariIBBFD17,https://doi.org/10.1109/JBHI.2016.2639823 +Pedro Antonio Moreno,Design and Technical Evaluation of an Enhanced Location-Awareness Service Enabler for Spatial Disorientation Management of Elderly With Mild Cognitive Impairment.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#MorenoHG15,https://doi.org/10.1109/JBHI.2014.2327638 +Robert S. H. Istepanian,Telemedicine in the United Kingdom: current status and future prospects.,1999,3,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb3.html#Istepanian99,https://doi.org/10.1109/4233.767091 +Gregoire Guetat,Automatic 3-D Grayscale Volume Matching and Shape Analysis.,2006,10,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb10.html#GuetatMJLLS06,https://doi.org/10.1109/TITB.2005.863875 +Srivani Padma,Carotid Arterial Pulse Waveform Measurements Using Fiber Bragg Grating Pulse Probe.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#PadmaUSA18,https://doi.org/10.1109/JBHI.2017.2765701 +Enzo Pasquale Scilingo,Performance evaluation of sensing fabrics for monitoring physiological and biomechanical variables.,2005,9,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb9.html#ScilingoGPTGR05,https://doi.org/10.1109/TITB.2005.854506 +Xu Zhang 0002,Multiscale Entropy Analysis of Different Spontaneous Motor Unit Discharge Patterns.,2013,17,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb17.html#ZhangCBZ13,https://doi.org/10.1109/JBHI.2013.2241071 +James D. Amor,Validation of a Commercial Android Smartwatch as an Activity Monitoring Platform.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#AmorJ18,https://doi.org/10.1109/JBHI.2017.2732678 +Nahed Jalloul,Activity Recognition Using Complex Network Analysis.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#JalloulPVHC18,https://doi.org/10.1109/JBHI.2017.2762404 +Anita Sant'Anna,A symbol-based approach to gait analysis from acceleration signals: identification and detection of gait events and a new measure of gait symmetry.,2010,14,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb14.html#AnnaW10,https://doi.org/10.1109/TITB.2010.2047402 +Nan Liu,Risk Scoring for Prediction of Acute Cardiac Complications from Imbalanced Clinical Data.,2014,18,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb18.html#LiuKCTLMO14,https://doi.org/10.1109/JBHI.2014.2303481 +Marco Di Rienzo,Textile technology for the vital signs monitoring in telemedicine and extreme environments.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#RienzoMRCLFP10,https://doi.org/10.1109/TITB.2010.2048921 +Jong Min Choi,Phoneme-Based Self Hearing Assessment on a Smartphone.,2013,17,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb17.html#ChoiSKKL13,https://doi.org/10.1109/JBHI.2013.2238549 +Alba Fernández,A Methodology for the Analysis of Spontaneous Reactions in Automated Hearing Assessment.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#FernandezOPVG16,https://doi.org/10.1109/JBHI.2014.2360061 +Giorgio Biagetti,Analysis of the EMG Signal During Cyclic Movements Using Multicomponent AM-FM Decomposition.,2015,19,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb19.html#BiagettiCCOT15,https://doi.org/10.1109/JBHI.2014.2356340 +Wing-Yin Chan,Visualization of Needle Access Pathway and a Five-DoF Evaluation.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#ChanH14,https://doi.org/10.1109/JBHI.2013.2275741 +Andrés Martínez,Analysis of information and communication needs in rural primary health care in developing countrie.,2005,9,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb9.html#MartinezVSP05,https://doi.org/10.1109/TITB.2004.842411 +Hamed Danandeh Hesar,ECG Denoising Using Marginalized Particle Extended Kalman Filter With an Automatic Particle Weighting Strategy.,2017,21,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb21.html#HesarM17,https://doi.org/10.1109/JBHI.2016.2582340 +B. S. Kim,Wavelet-Based Low-Delay ECG Compression Algorithm for Continuous ECG Transmission.,2006,10,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb10.html#KimYL06,https://doi.org/10.1109/TITB.2005.856854 +Emmanuel Roux,A Support Method for the Contextual Interpretation of Biomechanical Data.,2006,10,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb10.html#RouxGCBB06,https://doi.org/10.1109/TITB.2005.855566 +Zhelong Wang,An Incremental Learning Method Based on Probabilistic Neural Networks and Adjustable Fuzzy Clustering for Human Activity Recognition by Using Wearable Sensors.,2012,16,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb16.html#WangJHL12,https://doi.org/10.1109/TITB.2012.2196440 +Jenny S. Gregory,Analysis of trabecular bone structure using Fourier transforms and neural networks.,1999,3,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb3.html#GregoryJUA99,https://doi.org/10.1109/4233.809173 +Ashok Mondal,A Noise Reduction Technique Based on Nonlinear Kernel Function for Heart Sound Analysis.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#MondalS0B18,https://doi.org/10.1109/JBHI.2017.2667685 +Samamon Khemmarat,Predictive and Personalized Drug Query System.,2017,21,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb21.html#KhemmaratG17,https://doi.org/10.1109/JBHI.2016.2562183 +Hyejung Kim,ECG signal compression and classification algorithm with quad level vector for ECG holter system.,2010,14,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb14.html#KimYMHY10,https://doi.org/10.1109/TITB.2009.2031638 +Sheila Timp,Computer-aided diagnosis with temporal analysis to improve radiologists' interpretation of mammographic mass lesions.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#TimpVK10,https://doi.org/10.1109/TITB.2010.2043296 +Liping Zhang 0003,Privacy Protection for Telecare Medicine Information Systems Using a Chaotic Map-Based Three-Factor Authenticated Key Agreement Scheme.,2017,21,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb21.html#ZhangZT17,https://doi.org/10.1109/JBHI.2016.2517146 +Azhar Quddus,Semantic Image Retrieval in Magnetic Resonance Brain Volumes.,2012,16,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb16.html#QuddusB12,https://doi.org/10.1109/TITB.2012.2189439 +Sumeet Dua,Wavelet-Based Energy Features for Glaucomatous Image Classification.,2012,16,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb16.html#DuaACS12,https://doi.org/10.1109/TITB.2011.2176540 +Ali Can,Rapid automated tracing and feature extraction from retinal fundus images using direct exploratory algorithms.,1999,3,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb3.html#CanSTTR99,https://doi.org/10.1109/4233.767088 +Christos A. Frantzidis,On the classification of emotional biosignals evoked while viewing affective pictures: an integrated data-mining-based approach for healthcare applications.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#FrantzidisBKKLVPKPB10,https://doi.org/10.1109/TITB.2009.2038481 +Anpeng Huang,WE-CARE: An Intelligent Mobile Telecardiology System to Enable mHealth Applications.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#HuangCBDCGMZZJX14,https://doi.org/10.1109/JBHI.2013.2279136 +Garry A. Einicke,Maximum-Entropy-Rate Selection of Features for Classifying Changes in Knee and Ankle Dynamics During Running.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#EinickeSTF18,https://doi.org/10.1109/JBHI.2017.2711487 +Beatriz Remeseiro,A Methodology for Improving Tear Film Lipid Layer Classification.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#RemeseiroBPAGGPS14,https://doi.org/10.1109/JBHI.2013.2294732 +Bruno Perriot,Characterization of Physical Activity in COPD Patients: Validation of a Robust Algorithm for Actigraphic Measurements in Living Situations.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#PerriotAPN14,https://doi.org/10.1109/JBHI.2013.2282617 +Rui Zhang 0027,Monitoring Chewing and Eating in Free-Living Using Smart Eyeglasses.,2018,22,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb22.html#ZhangA18,https://doi.org/10.1109/JBHI.2017.2698523 +Tim Willemen,An Evaluation of Cardiorespiratory and Movement Features With Respect to Sleep-Stage Classification.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#WillemenDVVEVHHS14,https://doi.org/10.1109/JBHI.2013.2276083 +James Dieffenderfer,Low-Power Wearable Systems for Continuous Monitoring of Environment and Health for Chronic Respiratory Disease.,2016,20,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb20.html#DieffenderferGM16,https://doi.org/10.1109/JBHI.2016.2573286 +Muhammad Salman Haleem,Retinal Area Detector From Scanning Laser Ophthalmoscope (SLO) Images for Diagnosing Retinal Diseases.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#HaleemHHLF15,https://doi.org/10.1109/JBHI.2014.2352271 +Javier Ferreira,A Handheld and Textile-Enabled Bioimpedance System for Ubiquitous Body Composition Analysis. An Initial Functional Validation.,2017,21,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb21.html#FerreiraPLS17,https://doi.org/10.1109/JBHI.2016.2628766 +Guangjian Tian,Hybrid Genetic and Variational Expectation-Maximization Algorithm for Gaussian-Mixture-Model-Based Brain MR Image Segmentation.,2011,15,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb15.html#TianXZF11,https://doi.org/10.1109/TITB.2011.2106135 +Xu Zhang 0002,EMG-Torque Relation in Chronic Stroke: A Novel EMG Complexity Representation With a Linear Electrode Array.,2017,21,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb21.html#ZhangWYCLZ17,https://doi.org/10.1109/JBHI.2016.2626399 +Idit Diamant,Improved Patch-Based Automated Liver Lesion Classification by Separate Analysis of the Interior and Boundary Regions.,2016,20,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb20.html#DiamantHBSKAGR16,https://doi.org/10.1109/JBHI.2015.2478255 +Munendra Singh,Optimized Multistable Stochastic Resonance for the Enhancement of Pituitary Microadenoma in MRI.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#SinghVS18,https://doi.org/10.1109/JBHI.2017.2715078 +Sarah Ostadabbas,A Resource-Efficient Planning for Pressure Ulcer Prevention.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#OstadabbasYNFTP12,https://doi.org/10.1109/TITB.2012.2214443 +Michela Goffredo,Markerless Human Motion Analysis in Gauss-Laguerre Transform Domain: An Application to Sit-To-Stand in Young and Elderly People.,2009,13,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb13.html#GoffredoSCCND09,https://doi.org/10.1109/TITB.2008.2007960 +Ralf Dudde,Computer-Aided Continuous Drug Infusion: Setup and Test of a Mobile Closed-Loop System for the Continuous Automated Infusion of Insulin.,2006,10,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb10.html#DuddeVPH06,https://doi.org/10.1109/TITB.2006.864477 +Utku Gulan,Experimental Investigation of the Influence of the Aortic Stiffness on Hemodynamics in the Ascending Aorta.,2014,18,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb18.html#GulanLHLTK14,https://doi.org/10.1109/JBHI.2014.2322934 +Robert S. H. Istepanian,ECG data compression using wavelets and higher order statistics methods.,2001,5,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb5.html#IstepanianHP01,https://doi.org/10.1109/4233.924801 +Ahmad Al Kawam,Understanding the Bioinformatics Challenges of Integrating Genomics Into Healthcare.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#KawamSDD18,https://doi.org/10.1109/JBHI.2017.2778263 +Zhijun Li,Boosting-Based EMG Patterns Classification Scheme for Robustness Enhancement.,2013,17,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb17.html#LiWYXS13,https://doi.org/10.1109/JBHI.2013.2256920 +Claudio Stamile,Multiparametric Non-Negative Matrix Factorization for Longitudinal Variations Detection in White-Matter Fiber Bundles.,2017,21,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb21.html#StamileKCMSH17,https://doi.org/10.1109/JBHI.2016.2597963 +Djordje Slijepcevic,Automatic Classification of Functional Gait Disorders.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#SlijepcevicZGSS18,https://doi.org/10.1109/JBHI.2017.2785682 +Hoda Daou,Dynamic Dictionary for Combined EEG Compression and Seizure Detection.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#DaouL14,https://doi.org/10.1109/JBHI.2013.2263198 +Bijoy Laxmi Koley,On-Line Detection of Apnea/Hypopnea Events Using SpO$_{\bf 2}$ Signal: A Rule-Based Approach Employing Binary Classifier Models.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#KoleyD14,https://doi.org/10.1109/JBHI.2013.2266279 +Andrew E. Svolos,Time and space results of dynamic texture feature extraction in MR and CT image analysis.,1998,2,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb2.html#SvolosT98,https://doi.org/10.1109/4233.720522 +Daniel T. H. Lai,Computational Intelligence in Gait Research: A Perspective on Current Applications and Future Challenges.,2009,13,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb13.html#LaiBP09,https://doi.org/10.1109/TITB.2009.2022913 +Hongxia Zhou,Detection of Tandem Repeats in DNA Sequences Based on Parametric Spectral Estimation.,2009,13,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb13.html#ZhouDY09,https://doi.org/10.1109/TITB.2008.920626 +David J. Russomanno,DefibViz: A Visualization Tool for the Assessment of Electrode Parameters on Transthoracic Defibrillation Thresholds.,2008,12,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb12.html#RussomannoCAHG08,https://doi.org/10.1109/TITB.2007.899511 +P. Z. Rashev,Three-dimensional object-oriented modeling of the stomach for the purpose of microprocessor-controlled functional stimulation.,2002,6,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb6.html#RashevBM02,https://doi.org/10.1109/TITB.2002.806095 +Marisa Ruffolo,Design of a Large Network for Radiological Image Data.,2007,11,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb11.html#RuffoloDSB07,https://doi.org/10.1109/TITB.2006.880850 +Francisco J. Rincón,Development and Evaluation of Multilead Wavelet-Based ECG Delineation Algorithms for Embedded Wireless Sensor Nodes.,2011,15,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb15.html#RinconRKA11,https://doi.org/10.1109/TITB.2011.2163943 +Mi Zhang 0002,Human Daily Activity Recognition With Sparse Representation Using Wearable Sensors.,2013,17,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb17.html#ZhangS13,https://doi.org/10.1109/JBHI.2013.2253613 +Luisa F. Polania,Exploiting Prior Knowledge in Compressed Sensing Wireless ECG Systems.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#PolaniaCBB15,https://doi.org/10.1109/JBHI.2014.2325017 +Vijay Mahadevan,Robust model-based vasculature detection in noisy biomedical images.,2004,8,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb8.html#MahadevanNRT04,https://doi.org/10.1109/TITB.2004.834410 +Jeffrey S. Reynolds,Classification of Voluntary Cough Airflow Patterns for Prediction of Abnormal Spirometry.,2016,20,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb20.html#ReynoldsGDAMABP16,https://doi.org/10.1109/JBHI.2015.2412880 +Rubén Armañanzas,Voxel-Based Diagnosis of Alzheimer's Disease Using Classifier Ensembles.,2017,21,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb21.html#ArmananzasIMA17,https://doi.org/10.1109/JBHI.2016.2538559 +Lequan Yu,Integrating Online and Offline Three-Dimensional Deep Learning for Automated Polyp Detection in Colonoscopy Videos.,2017,21,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb21.html#Yu0DQH17,https://doi.org/10.1109/JBHI.2016.2637004 +Toshiyo Tamura,Monitoring and Evaluation of Blood Pressure Changes With a Home Healthcare System.,2011,15,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb15.html#TamuraMSK11,https://doi.org/10.1109/TITB.2011.2156804 +Abdelghani Benharref,Novel Cloud and SOA-Based Framework for E-Health Monitoring Using Wireless Biosensors.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#BenharrefS14,https://doi.org/10.1109/JBHI.2013.2262659 +Carlos Rivas Costa,An Open Architecture to Support Social and Health Services in a Smart TV Environment.,2017,21,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb21.html#CostaAI17,https://doi.org/10.1109/JBHI.2016.2525725 +U. Rajendra Acharya,Automated Diagnosis of Glaucoma Using Texture and Higher Order Spectra Features.,2011,15,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb15.html#AcharyaDDSC11,https://doi.org/10.1109/TITB.2011.2119322 +Vicente Moret-Bonillo,Information analysis and validation of intelligent monitoring systems in intensive care units.,1997,1,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb1.html#Moret-BonilloMA97,https://doi.org/10.1109/4233.640653 +Danzhou Liu,A Generic Framework for Internet-Based Interactive Applications of High-Resolution 3-D Medical Image Data.,2008,12,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb12.html#LiuHS08,https://doi.org/10.1109/TITB.2008.923770 +Jinman Kim,Segmentation of VOI From Multidimensional Dynamic PET Images by Integrating Spatial and Temporal Features.,2006,10,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb10.html#KimCFE06,https://doi.org/10.1109/TITB.2006.874192 +Federica Paganelli,An Ontology-Based System for Context-Aware and Configurable Services to Support Home-Based Continuous Care.,2011,15,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb15.html#PaganelliG11,https://doi.org/10.1109/TITB.2010.2091649 +Daniel V. Pazinato,Pixel-Level Tissue Classification for Ultrasound Images.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#PazinatoSAWMPTM16,https://doi.org/10.1109/JBHI.2014.2386796 +L. N. Sharma,Multichannel ECG Data Compression Based on Multiscale Principal Component Analysis.,2012,16,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb16.html#SharmaDM12,https://doi.org/10.1109/TITB.2012.2195322 +Snehashis Roy,Subject-Specific Sparse Dictionary Learning for Atlas-Based Brain MRI Segmentation.,2015,19,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb19.html#RoyHSCRPP15,https://doi.org/10.1109/JBHI.2015.2439242 +Bryan Woodward,Design of a telemedicine system using a mobile telephone.,2001,5,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb5.html#WoodwardIR01,https://doi.org/10.1109/4233.908361 +Andrew David Dehennis,An NFC-Enabled CMOS IC for a Wireless Fully Implantable Glucose Sensor.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#DehennisGGM16,https://doi.org/10.1109/JBHI.2015.2475236 +Li-Na Pu,Investigation on Cardiovascular Risk Prediction Using Genetic Information.,2012,16,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb16.html#PuZZ12,https://doi.org/10.1109/TITB.2012.2205009 +Duy Dao,A Robust Motion Artifact Detection Algorithm for Accurate Detection of Heart Rates From Photoplethysmographic Signals Using Time-Frequency Spectral Features.,2017,21,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb21.html#DaoSNCCMDMC17,https://doi.org/10.1109/JBHI.2016.2612059 +Jerald Yoo,A Wearable ECG Acquisition System With Compact Planar-Fashionable Circuit Board-Based Shirt.,2009,13,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb13.html#YooYLKY09,https://doi.org/10.1109/TITB.2009.2033053 +Maisie Wang,Personal health information management system and its application in referral management.,2004,8,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb8.html#WangLMK04,https://doi.org/10.1109/TITB.2004.834397 +Mohammad M. Masud,Resource-Aware Mobile-Based Health Monitoring.,2017,21,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb21.html#MasudSN17,https://doi.org/10.1109/JBHI.2016.2525006 +Fátima Barceló-Rico,Adaptive Calibration Algorithm for Plasma Glucose Estimation in Continuous Glucose Monitoring.,2013,17,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb17.html#Barcelo-RicoDRVB13,https://doi.org/10.1109/JBHI.2013.2253325 +Che-Wei Lin,A Wearable Sensor Module With a Neural-Network-Based Activity Classification Algorithm for Daily Energy Expenditure Estimation.,2012,16,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb16.html#LinYWY12,https://doi.org/10.1109/TITB.2012.2206602 +Mehran Mozaffari Kermani,Systematic Poisoning Attacks on and Defenses for Machine Learning in Healthcare.,2015,19,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb19.html#KermaniSRJ15,https://doi.org/10.1109/JBHI.2014.2344095 +Brenda K. Wiederhold,The treatment of fear of flying: a controlled study of imaginal and virtual reality graded exposure therapy.,2002,6,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb6.html#WiederholdJGKKW02,https://doi.org/10.1109/TITB.2002.802378 +Paulo Armando Cavalcante Aguilar,A Dynamic Evidential Network for Fall Detection.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#AguilarBIDM14,https://doi.org/10.1109/JBHI.2013.2283055 +Anish Jindal,Providing Healthcare-as-a-Service Using Fuzzy Rule Based Big Data Analytics in Cloud Computing.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#JindalDKDVR18,https://doi.org/10.1109/JBHI.2018.2799198 +Norbert Noury,Building an Index of Activity of Inhabitants From Their Activity on the Residential Electrical Power Line.,2011,15,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb15.html#NouryBTBG11,https://doi.org/10.1109/TITB.2011.2138149 +Aimilia Gastounioti,A Novel Computerized Tool to Stratify Risk in Carotid Atherosclerosis Using Kinematic Features of the Arterial Wall.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#GastouniotiMGKL15,https://doi.org/10.1109/JBHI.2014.2329604 +S.-Y. Lee,A Low-Power RFID Integrated Circuits for Intelligent Healthcare Systems.,2010,14,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb14.html#LeeWF10,https://doi.org/10.1109/TITB.2010.2053942 +Baile Xie,Real-Time Sleep Apnea Detection by Classifier Combination.,2012,16,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb16.html#XieM12,https://doi.org/10.1109/TITB.2012.2188299 +Sinan Onal,MRI-Based Segmentation of Pubic Bone for Evaluation of Pelvic Organ Prolapse.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#OnalLBWH14,https://doi.org/10.1109/JBHI.2014.2302437 +Jorng-Tzong Horng,Database of repetitive elements in complete genomes and data mining using transcription factor binding sites.,2003,7,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb7.html#HorngLLHL03,https://doi.org/10.1109/TITB.2003.811878 +J. M. Lillo-Castellano,Symmetrical Compression Distance for Arrhythmia Discrimination in Cloud-Based Big-Data Services.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#Lillo-Castellano15,https://doi.org/10.1109/JBHI.2015.2412175 +Xiguang Wei,Automatic Extraction of Central Tendon of Rectus Femoris (CT-RF) in Ultrasound Images Using a New Intensity-Compensated Free-Form Deformation-Based Tracking Algorithm With Local Shape Refinement.,2017,21,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb21.html#WeiZCWZZ17,https://doi.org/10.1109/JBHI.2016.2580708 +Xiaojia Zhang,A Novel Method of Language Modeling for Automatic Captioning in TC Video Teleconferencing.,2007,11,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb11.html#ZhangZS07,https://doi.org/10.1109/TITB.2006.885549 +Udit Satija,Automated ECG Noise Detection and Classification System for Unsupervised Healthcare Monitoring.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#SatijaRM18,https://doi.org/10.1109/JBHI.2017.2686436 +Recep Avci,Tracking Fetal Movement Through Source Localization From Multisensor Magnetocardiographic Recordings.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#AvciWEE18,https://doi.org/10.1109/JBHI.2017.2690879 +Yu-Tai Ching,Finding the mitral annular lines from 2-D + 1-D precordial echocardiogram using graph-search technique.,2004,8,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb8.html#ChingCCLL04,https://doi.org/10.1109/TITB.2004.824739 +Alexandros Roniotis,In-Depth Analysis and Evaluation of Diffusive Glioma Models.,2012,16,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb16.html#RoniotisSKZM12,https://doi.org/10.1109/TITB.2012.2185704 +Avinash Parnandi,Physiological Modalities for Relaxation Skill Transfer in Biofeedback Games.,2017,21,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb21.html#ParnandiG17,https://doi.org/10.1109/JBHI.2015.2511665 +Miguel A. Palomera-Pérez,Parallel multiscale feature extraction and region growing: application in retinal blood vessel detection.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#Palomera-PerezMBO10,https://doi.org/10.1109/TITB.2009.2036604 +Yuh-Jyh Hu,Prediction of Patient-Controlled Analgesic Consumption: A Multimodel Regression Tree Approach.,2018,22,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb22.html#HuKYS18,https://doi.org/10.1109/JBHI.2017.2668393 +Deepak Bandyopadhyay,Functional neighbors: inferring relationships between nonhomologous protein families using family-specific packing motifs.,2010,14,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb14.html#BandyopadhyayHLPSWT10,https://doi.org/10.1109/TITB.2010.2053550 +Carlos Ordonez 0001,Association Rule Discovery With the Train and Test Approach for Heart Disease Prediction.,2006,10,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb10.html#Ordonez06,https://doi.org/10.1109/TITB.2006.864475 +Andrea Mannini,Online Decoding of Hidden Markov Models for Gait Event Detection Using Foot-Mounted Gyroscopes.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#ManniniGS14,https://doi.org/10.1109/JBHI.2013.2293887 +Muhammad Atif Tahir,Novel Round-Robin Tabu Search Algorithm for Prostate Cancer Classification and Diagnosis Using Multispectral Imagery.,2006,10,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb10.html#TahirB06,https://doi.org/10.1109/TITB.2006.879596 +Mohammod Abdul Motin,Ensemble Empirical Mode Decomposition With Principal Component Analysis: A Novel Approach for Extracting Respiratory Rate and Heart Rate From Photoplethysmographic Signal.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#MotinKP18,https://doi.org/10.1109/JBHI.2017.2679108 +F. Chee,Closed-loop glucose control in critically ill patients using continuous glucose monitoring system (CGMS) in real time.,2003,7,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb7.html#CheeFH03,https://doi.org/10.1109/TITB.2003.808509 +Antonis Lambrou,Reliable Confidence Measures for Medical Diagnosis With Evolutionary Algorithms.,2011,15,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb15.html#LambrouPG11,https://doi.org/10.1109/TITB.2010.2091144 +René F. Navarro,Intervention Tailoring in Augmented Cognition Systems for Elders With Dementia.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#NavarroRF14,https://doi.org/10.1109/JBHI.2013.2267542 +Daniele Ravì,Deep Learning for Health Informatics.,2017,21,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb21.html#RaviWDBPLY17,https://doi.org/10.1109/JBHI.2016.2636665 +Ravi Gupta,A Novel and Efficient Technique for Identification and Classification of GPCRs.,2008,12,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb12.html#GuptaMS08,https://doi.org/10.1109/TITB.2007.911308 +Jing Bai,A pacemaker working status telemonitoring algorithm.,1999,3,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb3.html#BaiL99,https://doi.org/10.1109/4233.788581 +Jocelyne Fayn,Toward a personal health society in cardiology.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#FaynR10,https://doi.org/10.1109/TITB.2009.2037616 +Qiang Fang,Developing a Wireless Implantable Body Sensor Network in MICS Band.,2011,15,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb15.html#FangLPGC11,https://doi.org/10.1109/TITB.2011.2153865 +Alex A. T. Bui,TimeLine: Visualizing Integrated Patient Records.,2007,11,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb11.html#BuiAK07,https://doi.org/10.1109/TITB.2006.884365 +Jimena Rodríguez,Real-time classification of ECGs on a PDA.,2005,9,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb9.html#RodriguezGI05,https://doi.org/10.1109/TITB.2004.838369 +James J. Xia,Three-dimensional virtual-reality surgical planning and soft-tissue prediction for orthognathic surgery.,2001,5,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb5.html#XiaISWGWYKT01,https://doi.org/10.1109/4233.924800 +Albert Y. Chen,Demand Forecast Using Data Analytics for the Preallocation of Ambulances.,2016,20,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb20.html#ChenLMS16,https://doi.org/10.1109/JBHI.2015.2443799 +Natarajan Sriraam,Performance Evaluation of Neural Network and Linear Predictors for Near-Lossless Compression of EEG Signals.,2008,12,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb12.html#SriraamE08,https://doi.org/10.1109/TITB.2007.899497 +Liehang Shi,Three-Dimensional Visual Patient Based on Electronic Medical Diagnostic Records.,2018,22,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb22.html#ShiSYLWGYHZ18,https://doi.org/10.1109/JBHI.2017.2702201 +Mark Perry,Multimodal and ubiquitous computing systems: supporting independent-living older users.,2004,8,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb8.html#PerryDLH04,https://doi.org/10.1109/TITB.2004.835533 +Hao Han,Fast and Adaptive Detection of Pulmonary Nodules in Thoracic CT Images Using a Hierarchical Vector Quantization Scheme.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#Han0HSML15,https://doi.org/10.1109/JBHI.2014.2328870 +S. Redmond,Guest Editorial IEEE BHI 2016.,2017,21,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb21.html#RedmondLP17,https://doi.org/10.1109/JBHI.2017.2669678 +Dong Pyo Jang,The development of virtual reality therapy (VRT) system for the treatment of acrophobia and therapeutic case.,2002,6,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb6.html#JangKCWNKK02,https://doi.org/10.1109/TITB.2002.802374 +Htoo Aung Maw,BTG-AC: Break-the-Glass Access Control Model for Medical Data in Wireless Sensor Networks.,2016,20,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb20.html#MawXCM16,https://doi.org/10.1109/JBHI.2015.2510403 +Jung-Yeol Oh,PSSK modulation scheme for high-data rate implantable medical devices.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#OhKLK10,https://doi.org/10.1109/TITB.2009.2036255 +Mahdi Marsousi,An Automated Approach for Kidney Segmentation in Three-Dimensional Ultrasound Images.,2017,21,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb21.html#MarsousiPS17,https://doi.org/10.1109/JBHI.2016.2580040 +Xianbiao Qi,HEp-2 Cell Classification via Combining Multiresolution Co-Occurrence Texture and Large Region Shape Information.,2017,21,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb21.html#QiZLGP17,https://doi.org/10.1109/JBHI.2015.2508938 +Sandra Morales,Computer-Aided Diagnosis Software for Hypertensive Risk Determination Through Fundus Image Processing.,2014,18,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb18.html#MoralesNNR14,https://doi.org/10.1109/JBHI.2014.2337960 +Davide Curone,Smart garments for emergency operators: the proeTEX project.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#CuroneSTLDRWBM10,https://doi.org/10.1109/TITB.2010.2045003 +Yang Xie,Predicting Days in Hospital Using Health Insurance Claims.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#XieSCNLRL15,https://doi.org/10.1109/JBHI.2015.2402692 +Eamonn J. Keogh,Finding Unusual Medical Time-Series Subsequences: Algorithms and Applications.,2006,10,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb10.html#KeoghLFH06,https://doi.org/10.1109/TITB.2005.863870 +Liang-Chih Yu,Psychiatric Consultation Record Retrieval Using Scenario-Based Representation and Multilevel Mixture Model.,2007,11,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb11.html#YuWJ07,https://doi.org/10.1109/TITB.2006.888705 +Jinman Kim,A New Way for Multidimensional Medical Data Management: Volume of Interest (VOI)-Based Retrieval of Medical Images With Visual and Functional Features.,2006,10,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb10.html#KimCFW06,https://doi.org/10.1109/TITB.2006.872045 +Swamidoss Issac Niwas,Cross-Examination for Angle-Closure Glaucoma Feature Detection.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#NiwasLKKSAC16,https://doi.org/10.1109/JBHI.2014.2387207 +Rajeev K. Bali,Guest Editorial Introduction to the Special Issue on Advances in Clinical and Health-Care Knowledge Management.,2005,9,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb9.html#BaliFBD05,https://doi.org/10.1109/TITB.2005.849395 +Peter N. Brett,Guest editorial.,1999,3,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb3.html#BrettD99,https://doi.org/10.1109/TITB.1999.809167 +Chun-Ming Chang,Coherence of multiscale features for enhancement of digital mammograms.,1999,3,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb3.html#ChangL99,https://doi.org/10.1109/4233.748974 +Shuang Yu,Machine Learning Based Automatic Neovascularization Detection on Optic Disc Region.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#YuXK18,https://doi.org/10.1109/JBHI.2017.2710201 +Wenjin Chen,A Prototype for Unsupervised Analysis of Tissue Microarrays for Cancer Research and Diagnostics.,2004,8,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb8.html#ChenRF04,https://doi.org/10.1109/TITB.2004.828891 +L. G. Kun,Editorial Telecommunications And The Reform Process In Public Health.,1997,1,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb1.html#Kun97,https://doi.org/10.1109/TITB.1997.681163 +Ozgur Kilic,Achieving Clinical Statement Interoperability Using R-MIM and Archetype-Based Semantic Transformations.,2009,13,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb13.html#KilicD09,https://doi.org/10.1109/TITB.2008.904647 +Rong Wang,3-D Tracking for Augmented Reality Using Combined Region and Dense Cues in Endoscopic Surgery.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#WangZMGW18,https://doi.org/10.1109/JBHI.2017.2770214 +Jinwei Xu,A Multistaged Automatic Restoration of Noisy Microscopy Cell Images.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#XuHJ15,https://doi.org/10.1109/JBHI.2014.2305445 +William J. Allen,Platform for Automated Real-Time High Performance Analytics on Medical Image Data.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#AllenGTPVN18,https://doi.org/10.1109/JBHI.2017.2771299 +Nasir D. Memon,Context-based lossless and near-lossless compression of EEG signals.,1999,3,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb3.html#MemonKC99,https://doi.org/10.1109/4233.788586 +Zhi-Hua Zhou,Medical diagnosis with C4.5 rule preceded by artificial neural network ensemble.,2003,7,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb7.html#ZhouJ03,https://doi.org/10.1109/TITB.2003.808498 +Fang Chen,Clustering of Morphological Features for Identifying Femur Cavity Subtypes With Difficulties of Intramedullary Nail Implantation.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#ChenZGLSZTL18,https://doi.org/10.1109/JBHI.2017.2761980 +Elisabeth Reusens,Characterization of On-Body Communication Channel and Energy Efficient Topology Design for Wireless Body Area Networks.,2009,13,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb13.html#ReusensJLBVTMMB09,https://doi.org/10.1109/TITB.2009.2033054 +Gang Wang 0005,Epileptic Seizure Detection Based on Partial Directed Coherence Analysis.,2016,20,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb20.html#WangSTLBY16,https://doi.org/10.1109/JBHI.2015.2424074 +Esma Yildirim,Parallel Versus Distributed Data Access for Gigapixel-Resolution Histology Images: Challenges and Opportunities.,2017,21,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb21.html#YildirimF17,https://doi.org/10.1109/JBHI.2016.2580145 +Zheng Rong Yang,A Probabilistic Peptide Machine for Predicting Hepatitis C Virus Protease Cleavage Sites.,2007,11,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb11.html#Yang07,https://doi.org/10.1109/TITB.2006.889314 +Erik E. Stone,Fall Detection in Homes of Older Adults Using the Microsoft Kinect.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#StoneS15,https://doi.org/10.1109/JBHI.2014.2312180 +Lambros Makris,Teleworks: a CSCW application for remote medical diagnosis support and teleconsultation.,1998,2,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb2.html#MakrisKKS98,https://doi.org/10.1109/4233.720524 +Michael H. Li,Noncontact Vision-Based Cardiopulmonary Monitoring in Different Sleeping Positions.,2017,21,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb21.html#LiYT17,https://doi.org/10.1109/JBHI.2016.2567298 +I. Yücel özbek,Heart Sound Localization in Respiratory Sound Based on a New Computationally Efficient Entropy Bound.,2017,21,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb21.html#OzbekS17,https://doi.org/10.1109/JBHI.2015.2491500 +Roch L. Maurice,Characterization of Atherosclerotic Plaques and Mural Thrombi With Intravascular Ultrasound Elastography: A Potential Method Evaluated in an Aortic Rabbit Model and a Human Coronary Artery.,2008,12,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb12.html#MauriceFCDMRC08,https://doi.org/10.1109/TITB.2008.917905 +Yuan-Ting Zhang,Editorial Note on Biomedical and Health Informatics.,2011,15,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb15.html#ZhangP11,https://doi.org/10.1109/TITB.2011.2119410 +Jacek Lewandowski,Logic-Centered Architecture for Ubiquitous Health Monitoring.,2014,18,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb18.html#LewandowskiAGCG14,https://doi.org/10.1109/JBHI.2014.2312352 +Kuizhi Mei,Hierarchical Classification of Large-Scale Patient Records for Automatic Treatment Stratification.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#MeiPGZF15,https://doi.org/10.1109/JBHI.2015.2414876 +David Dagan Feng,A technique for extracting physiological parameters and the required input function simultaneously from PET image measurements: theory and simulation study.,1997,1,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb1.html#FengWWS97,https://doi.org/10.1109/4233.681168 +Li-Wei H. Lehman,A Model-Based Machine Learning Approach to Probing Autonomic Regulation From Nonstationary Vital-Sign Time Series.,2018,22,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb22.html#LehmanMN18,https://doi.org/10.1109/JBHI.2016.2636808 +S. A. Karkanis,Computer-aided tumor detection in endoscopic video using color wavelet features.,2003,7,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb7.html#KarkanisIMKT03,https://doi.org/10.1109/TITB.2003.813794 +Zunyi Tang,A Chair-Based Unobtrusive Cuffless Blood Pressure Monitoring System Based on Pulse Arrival Time.,2017,21,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb21.html#TangTSHCYSKK17,https://doi.org/10.1109/JBHI.2016.2614962 +Georgia N. Athanasiou,A Trust Model for Ubiquitous Healthcare Environment on the Basis of Adaptable Fuzzy-Probabilistic Inference System.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#AthanasiouATL18,https://doi.org/10.1109/JBHI.2017.2733038 +D. Lazos,A software data generator for radiographic imaging investigations.,2000,4,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb4.html#LazosKP00,https://doi.org/10.1109/4233.826863 +Marcin Wisniewski,Joint Application of Audio Spectral Envelope and Tonality Index in an E-Asthma Monitoring System.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#WisniewskiZ15,https://doi.org/10.1109/JBHI.2014.2352302 +George Ghinea,3-D Pain Drawings - Mobile Data Collection Using a PDA.,2008,12,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb12.html#GhineaSSF08,https://doi.org/10.1109/TITB.2007.903266 +Errikos M. Ventouras,Simulated generation of evoked potentials components using networks with distinct excitatory and inhibitory neurons.,2000,4,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb4.html#VentourasUKPRS00,https://doi.org/10.1109/4233.870034 +Suncheol Kwon,Real-Time Upper Limb Motion Estimation From Surface Electromyography and Joint Angular Velocities Using an Artificial Neural Network for Human-Machine Cooperation.,2011,15,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb15.html#KwonK11,https://doi.org/10.1109/TITB.2011.2151869 +Davide Curone,Assessment of Sensing Fire Fighters Uniforms for Physiological Parameter Measurement in Harsh Environment.,2012,16,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb16.html#CuroneSCLPTM12,https://doi.org/10.1109/TITB.2011.2182615 +Nizan Friedman,The Manumeter: A Wearable Device for Monitoring Daily Use of the Wrist and Fingers.,2014,18,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb18.html#FriedmanRRB14,https://doi.org/10.1109/JBHI.2014.2329841 +Jun Shi 0004,Multimodal Neuroimaging Feature Learning With Multimodal Stacked Deep Polynomial Networks for Diagnosis of Alzheimer's Disease.,2018,22,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb22.html#ShiZLZY18,https://doi.org/10.1109/JBHI.2017.2655720 +A. Singh,A Hybrid Computational Grid Architecture for Comparative Genomics.,2008,12,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb12.html#SinghCLMS08,https://doi.org/10.1109/TITB.2007.908462 +Eric Guenterberg,A Method for Extracting Temporal Parameters Based on Hidden Markov Models in Body Sensor Networks With Inertial Sensors.,2009,13,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb13.html#GuenterbergYGJBS09,https://doi.org/10.1109/TITB.2009.2028421 +Lambros S. Athanasiou,Optimized Computer-Aided Segmentation and Three-Dimensional Reconstruction Using Intracoronary Optical Coherence Tomography.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#AthanasiouRGLLH18,https://doi.org/10.1109/JBHI.2017.2762520 +Jian Zhang,Reconstruction-Based Digital Dental Occlusion of the Partially Edentulous Dentition.,2017,21,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb21.html#ZhangXLZ17,https://doi.org/10.1109/JBHI.2015.2500191 +Dirk Fortmeier,A Virtual Reality System for PTCD Simulation Using Direct Visuo-Haptic Rendering of Partially Segmented Image Data.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#FortmeierMSH16,https://doi.org/10.1109/JBHI.2014.2381772 +Hakan Toreyin,Quantifying the Consistency of Wearable Knee Acoustical Emission Measurements During Complex Motions.,2016,20,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb20.html#ToreyinJHTI16,https://doi.org/10.1109/JBHI.2016.2579610 +Matteo Giuberti,Automatic UPDRS Evaluation in the Sit-to-Stand Task of Parkinsonians: Kinematic Analysis and Comparative Outlook on the Leg Agility Task.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#GiubertiFCCAAM15,https://doi.org/10.1109/JBHI.2015.2425296 +Miroslav Bojovic,mobilePDR : a mobile medical information system featuring update via Internet.,2005,9,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb9.html#BojovicB05,https://doi.org/10.1109/TITB.2004.837886 +William P. Walker,Automated Ingestion Detection for a Health Monitoring System.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#WalkerB14,https://doi.org/10.1109/JBHI.2013.2279193 +Yago Diez,Revisiting Intensity-Based Image Registration Applied to Mammography.,2011,15,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb15.html#DiezOLFMVM11,https://doi.org/10.1109/TITB.2011.2151199 +Evelina Lamma,Artificial Intelligence Techniques for Monitoring Dangerous Infections.,2006,10,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb10.html#LammaMNRSV06,https://doi.org/10.1109/TITB.2005.855537 +S. Easter Selvan,Parameter Estimation in Stochastic Mammogram Model by Heuristic Optimization Techniques.,2006,10,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb10.html#SelvanXKSCD06,https://doi.org/10.1109/TITB.2006.874197 +Nikolas Stylianides,Intensive Care Window: Real-Time Monitoring and Analysis in the Intensive Care Environment.,2011,15,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb15.html#StylianidesDGPK11,https://doi.org/10.1109/TITB.2010.2091141 +Ando Celino Emerencia,Automating Vector Autoregression on Electronic Patient Diary Data.,2016,20,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb20.html#EmerenciaKBJP016,https://doi.org/10.1109/JBHI.2015.2402280 +Jonathan A. Stamford,What Engineering Technology Could Do for Quality of Life in Parkinson's Disease: A Review of Current Needs and Opportunities.,2015,19,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb19.html#StamfordSF15,https://doi.org/10.1109/JBHI.2015.2464354 +Jaesoon Choi,An intelligent remote monitoring system for artificial heart.,2005,9,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb9.html#ChoiPCM05,https://doi.org/10.1109/TITB.2005.855534 +Naimah Yaakob,A Novel Congestion Avoidance Technique for Simultaneous Real-Time Medical Data Transmission.,2016,20,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb20.html#YaakobK16,https://doi.org/10.1109/JBHI.2015.2406884 +Ferdous Wahid,Classification of Parkinson's Disease Gait Using Spatial-Temporal Gait Features.,2015,19,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb19.html#WahidBHHA15,https://doi.org/10.1109/JBHI.2015.2450232 +Amin Zamiri,Temporal and Spatial Monitoring and Prediction of Epidemic Outbreaks.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#ZamiriYG15,https://doi.org/10.1109/JBHI.2014.2338213 +Jean-José Jacq,A direct multi-volume rendering method aiming at comparisons of 3-D images and models.,1997,1,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb1.html#JacqR97,https://doi.org/10.1109/4233.594025 +Yuuki Nishiyama,Toward Health Exercise Behavior Change for Teams Using Lifelog Sharing Models.,2016,20,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb20.html#NishiyamaOYNTT16,https://doi.org/10.1109/JBHI.2015.2478903 +Da-Chuan Cheng,Detections of Arterial Wall in Sonographic Artery Images Using Dual Dynamic Programming.,2008,12,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb12.html#ChengJ08,https://doi.org/10.1109/TITB.2008.926413 +Carlo Gatta,Fast Rigid Registration of Vascular Structures in IVUS Sequences.,2009,13,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb13.html#GattaPRMR09,https://doi.org/10.1109/TITB.2009.2027230 +Geetha Soujanya V. N. Chilla,Deformable Registration-Based Super-resolution for Isotropic Reconstruction of 4-D MRI Volumes.,2017,21,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb21.html#ChillaTP17,https://doi.org/10.1109/JBHI.2017.2681688 +Reza Ghasemi,Private and Efficient Query Processing on Outsourced Genomic Databases.,2017,21,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb21.html#GhasemiAMDJ17,https://doi.org/10.1109/JBHI.2016.2625299 +Can Ye,An Automatic Subject-Adaptable Heartbeat Classifier Based on Multiview Learning.,2016,20,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb20.html#YeKC16,https://doi.org/10.1109/JBHI.2015.2468224 +Hyun Jae Baek,A Smart Health Monitoring Chair for Nonintrusive Measurement of Biological Signals.,2012,16,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb16.html#BaekCKP12,https://doi.org/10.1109/TITB.2011.2175742 +Ivo Soares,Optic Disc Localization in Retinal Images Based on Cumulative Sum Fields.,2016,20,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb20.html#SoaresCP16,https://doi.org/10.1109/JBHI.2015.2392712 +X. Zheng,A Hybrid Clustering Method for ROI Delineation in Small-Animal Dynamic PET Images: Application to the Automatic Estimation of FDG Input Functions.,2011,15,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb15.html#ZhengTHF11,https://doi.org/10.1109/TITB.2010.2087343 +Yuki Hasegawa,Application of the Kalman Filter for Faster Strong Coupling of Cardiovascular Simulations.,2016,20,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb20.html#HasegawaSAM16,https://doi.org/10.1109/JBHI.2015.2436212 +Vincent Verhaert,Unobtrusive Assessment of Motor Patterns During Sleep Based on Mattress Indentation Measurements.,2011,15,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb15.html#VerhaertHWBVVS11,https://doi.org/10.1109/TITB.2011.2131670 +Di Lin,Admission Control Over Internet of Vehicles Attached With Medical Sensors for Ubiquitous Healthcare Applications.,2016,20,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb20.html#LinLYVT16,https://doi.org/10.1109/JBHI.2015.2431744 +Sai Subrahmanyam Gorthi,Optimal MAP Parameters Estimation in STAPLE Using Local Intensity Similarity Information.,2015,19,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb19.html#GorthiAW15,https://doi.org/10.1109/JBHI.2015.2428279 +Eleftheria A. Mylona,A Computer-Based Technique for Automated Spot Detection in Proteomics Images.,2011,15,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb15.html#MylonaSMK11,https://doi.org/10.1109/TITB.2011.2140327 +Nancy Yu Song,Autoregressive and Iterative Hidden Markov Models for Periodicity Detection and Solenoid Structure Recognition in Protein Sequences.,2013,17,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb17.html#SongY13,https://doi.org/10.1109/JBHI.2012.2235852 +Garik Markarian,Video Distribution Techniques Over WiMAX Networks for m-Health Applications.,2012,16,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb16.html#MarkarianMTZ12,https://doi.org/10.1109/TITB.2011.2174157 +Ju Young Kim,Development and impact of radio-frequency identification-based workflow management in health promotion center: using interrupted time-series analysis.,2010,14,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb14.html#KimLBKHC10,https://doi.org/10.1109/TITB.2009.2026167 +Qiong Wang 0001,Real-Time Mandibular Angle Reduction Surgical Simulation With Haptic Rendering.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#WangCWJH12,https://doi.org/10.1109/TITB.2012.2218114 +Andrew Dalley,A technological model to define access to electronic clinical records.,2005,9,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb9.html#DalleyFBLF05,https://doi.org/10.1109/TITB.2005.847143 +Giovanna Sannino,An Automatic Rules Extraction Approach to Support OSA Events Detection in an mHealth System.,2014,18,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb18.html#SanninoFP14,https://doi.org/10.1109/JBHI.2014.2311325 +Jun Shi 0004,Histopathological Image Classification With Color Pattern Random Binary Hashing-Based PCANet and Matrix-Form Classifier.,2017,21,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb21.html#ShiWLZY17,https://doi.org/10.1109/JBHI.2016.2602823 +Wei-Yang Lin,Temporally Coherent Illumination Normalization for Indocyanine Green Video Angiography.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#LinCTC18,https://doi.org/10.1109/JBHI.2017.2652446 +Jim Basilakis,Design of a decision-support architecture for management of remotely monitored patients.,2010,14,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb14.html#BasilakisLRC10,https://doi.org/10.1109/TITB.2010.2055881 +Zhishun Wang,Blind separation of slow waves and spikes from gastrointestinal myoelectrical recordings.,2001,5,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb5.html#WangC01,https://doi.org/10.1109/4233.924803 +Carlos Santiago,Automatic 3-D Segmentation of Endocardial Border of the Left Ventricle From Ultrasound Images.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#SantiagoNM15,https://doi.org/10.1109/JBHI.2014.2308424 +Osama A. Arshad,Using Boolean Logic Modeling of Gene Regulatory Networks to Exploit the Links Between Cancer and Metabolism for Therapeutic Purposes.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#ArshadVDV16,https://doi.org/10.1109/JBHI.2014.2368391 +Iris Tien,Results of using a wireless inertial measurirlg system to quantify gait motions in control subjects.,2010,14,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb14.html#TienGBGA10,https://doi.org/10.1109/TITB.2009.2021650 +Lambros S. Athanasiou,A Novel Semiautomated Atherosclerotic Plaque Characterization Method Using Grayscale Intravascular Ultrasound Images: Comparison With Virtual Histology.,2012,16,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb16.html#AthanasiouKTNMBF12,https://doi.org/10.1109/TITB.2011.2181529 +Amir Ghanei,A discrete curvature-based deformable surface model with application to segmentation of volumetric images.,2002,6,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb6.html#GhaneiS02,https://doi.org/10.1109/TITB.2002.806096 +Robert S. H. Istepanian,Optimal zonal wavelet-based ECG data compression for a mobile telecardiology system.,2000,4,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb4.html#IstepanianP00,https://doi.org/10.1109/4233.870030 +Paolo Melillo,Classification Tree for Risk Assessment in Patients Suffering From Congestive Heart Failure via Long-Term Heart Rate Variability.,2013,17,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb17.html#MelilloLBP13,https://doi.org/10.1109/JBHI.2013.2244902 +Jin-Hua Yu,Fetal Weight Estimation Using the Evolutionary Fuzzy Support Vector Regression for Low-Birth-Weight Fetuses.,2009,13,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb13.html#YuWC09,https://doi.org/10.1109/TITB.2008.2007080 +Mikko Peltokangas,Monitoring Arterial Pulse Waves With Synchronous Body Sensor Network.,2014,18,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb18.html#PeltokangasVVHRL14,https://doi.org/10.1109/JBHI.2014.2328788 +Mark Rentschler,Miniature in vivo Robots for Remote and Harsh Environments.,2008,12,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb12.html#RentschlerPBDOF08,https://doi.org/10.1109/TITB.2007.898017 +Guanglou Zheng,Multiple ECG Fiducial Points-Based Random Binary Sequence Generation for Securing Wireless Body Area Networks.,2017,21,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb21.html#ZhengFSOZQS17,https://doi.org/10.1109/JBHI.2016.2546300 +Zhun Fan,Optic Disk Detection in Fundus Image Based on Structured Learning.,2018,22,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb22.html#FanRCLLLC18,https://doi.org/10.1109/JBHI.2017.2723678 +Stephen T. C. Wong,Workflow-enabled distributed component-based information architecture for digital medical imaging enterprises.,2003,7,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb7.html#WongTWS03,https://doi.org/10.1109/TITB.2003.813790 +Melissa Jourdain,A Robust 3-D IVUS Transducer Tracking Using Single-Plane Cineangiography.,2008,12,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb12.html#JourdainMSBT08,https://doi.org/10.1109/TITB.2008.921043 +Carl Taswell,DOORS to the Semantic Web and Grid With a PORTAL for Biomedical Computing.,2008,12,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb12.html#Taswell08,https://doi.org/10.1109/TITB.2007.905861 +Ching-Seh Wu,Optimizing Medical Data Quality Based on Multiagent Web Service Framework.,2012,16,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb16.html#WuKS12,https://doi.org/10.1109/TITB.2012.2195498 +Sara Colantonio,A Knowledge Editing Service for Multisource Data Management in Remote Health Monitoring.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#ColantonioEMPS12,https://doi.org/10.1109/TITB.2012.2215622 +Chung-Chih Lin,A unified multimedia database system to support telemedicine.,1998,2,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb2.html#LinDLCSC98,https://doi.org/10.1109/4233.735783 +Bundith Panchaphongsaphak,Three-Dimensional Touch Interface for Medical Education.,2007,11,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb11.html#PanchaphongsaphakBR07,https://doi.org/10.1109/TITB.2006.884359 +Altug Akay,A Novel Data-Mining Approach Leveraging Social Media to Monitor Consumer Opinion of Sitagliptin.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#AkayDE15a,https://doi.org/10.1109/JBHI.2013.2295834 +Zoé Lacroix,Biological data integration: wrapping data and tools.,2002,6,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb6.html#Lacroix02,https://doi.org/10.1109/TITB.2002.1006299 +Robert S. H. Istepanian,Guest editorial special issue on mobile telemedicine and telehealth systems.,2000,4,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb4.html#Istepanian00,https://doi.org/10.1109/TITB.2000.870028 +Behnaz Yousefi,Quantitative and Comparative Assessment of Learning in a Tongue-Operated Computer Input Device-Part II: Navigation Tasks.,2012,16,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb16.html#YousefiHKVG12,https://doi.org/10.1109/TITB.2012.2191793 +Yakang Dai,Real-Time Visualized Freehand 3D Ultrasound Reconstruction Based on GPU.,2010,14,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb14.html#DaiTDYZ10,https://doi.org/10.1109/TITB.2010.2072993 +Qianli Xu,Cluster-Based Analysis for Personalized Stress Evaluation Using Physiological Signals.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#XuNG15,https://doi.org/10.1109/JBHI.2014.2311044 +Andrea Cherubini,Importance of Multimodal MRI in Characterizing Brain Tissue and Its Potential Application for Individual Age Prediction.,2016,20,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb20.html#CherubiniCPSCA16,https://doi.org/10.1109/JBHI.2016.2559938 +Hao Chen 0011,Standard Plane Localization in Fetal Ultrasound via Domain Transferred Deep Neural Networks.,2015,19,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb19.html#ChenNQLYWH15,https://doi.org/10.1109/JBHI.2015.2425041 +Mevludin Memedi,Validity and Responsiveness of At-Home Touch Screen Assessments in Advanced Parkinson's Disease.,2015,19,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb19.html#MemediNJPWWLW15,https://doi.org/10.1109/JBHI.2015.2468088 +Geoffrey Lo,Wireless Body Area Network Node Localization Using Small-Scale Spatial Information.,2013,17,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb17.html#LoGL13,https://doi.org/10.1109/JBHI.2012.2237178 +Yao-Jen Chang,Statistical Anomaly Detection for Individuals With Cognitive Impairments.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#ChangLCCM14,https://doi.org/10.1109/JBHI.2013.2271695 +Bum Ju Lee,Identification of Type 2 Diabetes Risk Factors Using Phenotypes Consisting of Anthropometry and Triglycerides based on Machine Learning.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#LeeK16,https://doi.org/10.1109/JBHI.2015.2396520 +Abdul Qadir Javaid,Quantifying and Reducing Posture-Dependent Distortion in Ballistocardiogram Measurements.,2015,19,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb19.html#JavaidWFWI15,https://doi.org/10.1109/JBHI.2015.2441876 +Yixuan Yuan,Automatic Polyp Detection via a Novel Unified Bottom-Up and Top-Down Saliency Approach.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#YuanLM18,https://doi.org/10.1109/JBHI.2017.2734329 +Anda R. Guraliuc,Limb Movements Classification Using Wearable Wireless Transceivers.,2011,15,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb15.html#GuraliucBPN11,https://doi.org/10.1109/TITB.2011.2118763 +Ayse Demirhan,Segmentation of Tumor and Edema Along With Healthy Tissues of Brain Using Wavelets and Neural Networks.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#DemirhanTG15,https://doi.org/10.1109/JBHI.2014.2360515 +Jirí Spilka,Sparse Support Vector Machine for Intrapartum Fetal Heart Rate Classification.,2017,21,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb21.html#SpilkaFLPAD17,https://doi.org/10.1109/JBHI.2016.2546312 +Jinshan Tang,Computer-Aided Detection and Diagnosis of Breast Cancer With Mammography: Recent Advances.,2009,13,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb13.html#TangRXEY09,https://doi.org/10.1109/TITB.2008.2009441 +David Rotger,Automatic detection of bioabsorbable coronary stents in IVUS images using a cascade of classifiers.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#RotgerRB10,https://doi.org/10.1109/TITB.2009.2017528 +S. J. Fakih,LEAD: A Methodology for Learning Efficient Approaches to Medical Diagnosis.,2006,10,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb10.html#FakihD06,https://doi.org/10.1109/TITB.2005.855538 +Jean-Michel Rouet,Genetic algorithms for a robust 3-D MR-CT registration.,2000,4,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb4.html#RouetJR00,https://doi.org/10.1109/4233.845205 +Megumi Nakao,Cardiovascular Modeling of Congenital Heart Disease Based on Neonatal Echocardiographic Images.,2012,16,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb16.html#NakaoMHKKSNM12,https://doi.org/10.1109/TITB.2011.2169418 +Anand P. Santhanam,Simulating 3-D Lung Dynamics Using a Programmable Graphics Processing Unit.,2007,11,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb11.html#SanthanamHR07,https://doi.org/10.1109/TITB.2006.889679 +Ming Jiang 0004,Model-Based Automated Extraction of Microtubules From Electron Tomography Volume.,2006,10,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb10.html#JiangJM06,https://doi.org/10.1109/TITB.2006.872042 +San Tang,Adaptive Cosegmentation of Pheochromocytomas in CECT Images Using Localized Level Set Models.,2016,20,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb20.html#TangGWCS16,https://doi.org/10.1109/JBHI.2015.2402173 +Laura Maruster,From data to knowledge: a method for modeling hospital logistic processes.,2005,9,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb9.html#MarusterJ05,https://doi.org/10.1109/TITB.2005.847194 +Ean-Wen Huang,Performance Analysis of a Medical Record Exchanges Model.,2007,11,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb11.html#HuangL07,https://doi.org/10.1109/TITB.2006.875681 +Stephan Philippi,Using XML Technology for the Ontology-Based Semantic Integration of Life Science Databases.,2004,8,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb8.html#PhilippiK04,https://doi.org/10.1109/TITB.2004.826724 +Marinette Savonnet,eClims: An Extensible and Dynamic Integration Framework for Biomedical Information Systems.,2016,20,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb20.html#SavonnetLN16,https://doi.org/10.1109/JBHI.2015.2464353 +Gouenou Coatrieux,A Watermarking-Based Medical Image Integrity Control System and an Image Moment Signature for Tampering Characterization.,2013,17,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb17.html#CoatrieuxHSLR13,https://doi.org/10.1109/JBHI.2013.2263533 +Claudia Chevrefils,Texture Analysis for Automatic Segmentation of Intervertebral Disks of Scoliotic Spines From MR Images.,2009,13,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb13.html#ChevrefilsCAG09,https://doi.org/10.1109/TITB.2009.2018286 +Valentina Bono,Development of an Automated Updated Selvester QRS Scoring System Using SWT-Based QRS Fractionation Detection and Classification.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#BonoMCRAMMC14,https://doi.org/10.1109/JBHI.2013.2263311 +Seral özsen,Use of Kernel Functions in Artificial Immune Systems for the Nonlinear Classification Problems.,2009,13,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb13.html#OzsenGKL09,https://doi.org/10.1109/TITB.2009.2019637 +Metin Akay,A system for medical consultation and education using multimodal human/machine communication.,1998,2,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb2.html#AkayMMB98,https://doi.org/10.1109/4233.737584 +Silvio M. Pereira,Classification of Color Images of Dermatological Ulcers.,2013,17,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb17.html#PereiraFRA13,https://doi.org/10.1109/TITB.2012.2227493 +Peng Guo,Nuclei-Based Features for Uterine Cervical Cancer Histology Image Analysis With Fusion-Based Classification.,2016,20,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb20.html#GuoBSLATZFMS16,https://doi.org/10.1109/JBHI.2015.2483318 +Mehmet Eylem Kirlangic,A database for therapy evaluation in neurological disorders: application in epilepsy.,2004,8,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb8.html#KirlangicHKI04,https://doi.org/10.1109/TITB.2004.832546 +Hongbin Han,A Novel MRI Tracer-Based Method for Measuring Water Diffusion in the Extracellular Space of the Rat Brain (December2013).,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#HanSFZLHH14,https://doi.org/10.1109/JBHI.2014.2308279 +Jaehyeok Lee,Reconstruction of Precordial Lead Electrocardiogram From Limb Leads Using the State-Space Model.,2016,20,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb20.html#LeeKK16,https://doi.org/10.1109/JBHI.2015.2415519 +Stefano Ciulli,Prediction of Impaired Performance in Trail Making Test in MCI Patients With Small Vessel Disease Using DTI Data.,2016,20,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb20.html#CiulliCSVPIMTPD16,https://doi.org/10.1109/JBHI.2016.2537808 +Christos P. Loizou,Multiscale Amplitude-Modulation Frequency-Modulation (AM-FM) Texture Analysis of Ultrasound Images of the Intima and Media Layers of the Carotid Artery.,2011,15,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb15.html#LoizouMPPP11,https://doi.org/10.1109/TITB.2010.2081995 +Reza Aghaeizadeh Zoroofi,Automated segmentation of acetabulum and femoral head from 3-d CT images.,2003,7,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb7.html#ZoroofiSSNSYYOT03,https://doi.org/10.1109/TITB.2003.813791 +Wing-Yin Chan,A Serious Game for Learning Ultrasound-Guided Needle Placement Skills.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#ChanQCH12,https://doi.org/10.1109/TITB.2012.2204406 +Andreas C. Neocleous,Intelligent Noninvasive Diagnosis of Aneuploidy: Raw Values and Highly Imbalanced Dataset.,2017,21,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb21.html#NeocleousNS17,https://doi.org/10.1109/JBHI.2016.2608859 +Ao Ba,A 0.33 nJ/bit IEEE802.15.6/Proprietary MICS/ISM Wireless Transceiver With Scalable Data Rate for Medical Implantable Applications.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#BaVKKLHWZLDBMHS15,https://doi.org/10.1109/JBHI.2015.2414298 +Markus Harmsen,Support Vector Machine Classification Based on Correlation Prototypes Applied to Bone Age Assessment.,2013,17,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb17.html#HarmsenFSSD13,https://doi.org/10.1109/TITB.2012.2228211 +Weilin Zang,Gait-Cycle-Driven Transmission Power Control Scheme for a Wireless Body Area Network.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#Zang018,https://doi.org/10.1109/JBHI.2017.2688401 +James Y. Xu,Integrated Inertial Sensors and Mobile Computing for Real-Time Cycling Performance Guidance via Pedaling Profile Classification.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#XuNEWPK15,https://doi.org/10.1109/JBHI.2014.2322871 +Edoardo Ardizzone,Pervasive Access to MRI Bias Artifact Suppression Service on a Grid.,2009,13,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb13.html#ArdizzoneGGPS09,https://doi.org/10.1109/TITB.2008.2007108 +Robert S. H. Istepanian,Microcontroller-based underwater acoustic ECG telemetry system.,1997,1,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb1.html#IstepanianW97,https://doi.org/10.1109/4233.640657 +Lei Zheng,Design and analysis of a content-based pathology image retrieval system.,2003,7,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb7.html#ZhengWGB03,https://doi.org/10.1109/TITB.2003.822952 +Giorgio Quer,Home Monitoring of Blood Pressure: Short-Term Changes During Serial Measurements for 56398 Subjects.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#QuerNCNVTS18,https://doi.org/10.1109/JBHI.2017.2776946 +Md. Mahmudur Rahman,A Learning-Based Similarity Fusion and Filtering Approach for Biomedical Image Retrieval Using SVM Classification and Relevance Feedback.,2011,15,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb15.html#RahmanAT11,https://doi.org/10.1109/TITB.2011.2151258 +Gaoxiang Ouyang,Dynamical Characteristics of Surface EMG Signals of Hand Grasps via Recurrence Plot.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#OuyangZJL14,https://doi.org/10.1109/JBHI.2013.2261311 +Carlos A. Robles-Rubio,Optimal Classification of Respiratory Patterns From Manual Analyses Using Expectation-Maximization.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#Robles-RubioBK18,https://doi.org/10.1109/JBHI.2017.2741501 +Jui-Hung Hsieh,A Speed- and Power-Efficient SPIHT Design for Wearable Quality-On-Demand ECG Applications.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#HsiehHLS18,https://doi.org/10.1109/JBHI.2017.2773097 +Rubén Armañanzas,Microarray Analysis of Autoimmune Diseases by Machine Learning Procedures.,2009,13,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb13.html#ArmananzasCILMUBFLZ09,https://doi.org/10.1109/TITB.2008.2011984 +Evangelos B. Mazomenos,A Low-Complexity ECG Feature Extraction Algorithm for Mobile Healthcare Applications.,2013,17,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb17.html#MazomenosBACMRMC13,https://doi.org/10.1109/TITB.2012.2231312 +Alessandro Gherardi,Manual Stage Acquisition and Interactive Display of Digital Slides in Histopathology.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#GherardiB14,https://doi.org/10.1109/JBHI.2013.2291998 +Rosa Sánchez-Guerrero,Collaborative eHealth Meets Security: Privacy-Enhancing Patient Profile Management.,2017,21,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb21.html#Sanchez-Guerrero17,https://doi.org/10.1109/JBHI.2017.2655419 +Daojing He,ReTrust: Attack-Resistant and Lightweight Trust Management for Medical Sensor Networks.,2012,16,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb16.html#HeCCBV12,https://doi.org/10.1109/TITB.2012.2194788 +Guorui Yan,Fast katsevich algorithm based on GPU for helical cone-beam computed tomography.,2010,14,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb14.html#YanTZQDYDW10,https://doi.org/10.1109/TITB.2009.2036368 +Themistoklis A. Manos,Local hemodynamics and intimal hyperplasia at the venous side of a porcine arteriovenous shunt.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#ManosSGDKKSKT10,https://doi.org/10.1109/TITB.2010.2040288 +Viorel G. Popescu,A virtual-reality-based telerehabilitation system with force feedback.,2000,4,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb4.html#PopescuBBH00,https://doi.org/10.1109/4233.826858 +Farhan Riaz,Content-Adaptive Region-Based Color Texture Descriptors for Medical Images.,2017,21,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb21.html#RiazHNDC17,https://doi.org/10.1109/JBHI.2015.2492464 +Da Woon Jung 0001,Estimation of Sleep Onset Latency Based on the Blood Pressure Regulatory Reflex Mechanism.,2013,17,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb17.html#JungHCLJP13,https://doi.org/10.1109/JBHI.2013.2257816 +José Ramos,Content-Based Image Retrieval by Metric Learning From Radiology Reports: Application to Interstitial Lung Diseases.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#RamosKRRGVGC16,https://doi.org/10.1109/JBHI.2014.2375491 +Hui Zhu,Efficient and Privacy-Preserving Online Medical Prediagnosis Framework Using Nonlinear SVM.,2017,21,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb21.html#ZhuLL017,https://doi.org/10.1109/JBHI.2016.2548248 +Fotis Spyridonis,3-D Pain Drawings and Seating Pressure Maps: Relationships and Challenges.,2011,15,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb15.html#SpyridonisG11,https://doi.org/10.1109/TITB.2011.2107578 +Petros S. Karvelis,Enhancement of Multichannel Chromosome Classification Using a Region-Based Classifier and Vector Median Filtering.,2009,13,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb13.html#KarvelisFTG09,https://doi.org/10.1109/TITB.2008.2008716 +Chien-Ding Lee,A Novel Key Management Solution for Reinforcing Compliance With HIPAA Privacy/Security Regulations.,2011,15,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb15.html#LeeHL11,https://doi.org/10.1109/TITB.2011.2154363 +Ashok Kumar Das,Design of Secure and Lightweight Authentication Protocol for Wearable Devices Environment.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#DasWKKCP18,https://doi.org/10.1109/JBHI.2017.2753464 +Jerry Chao,A software framework for the analysis of complex microscopy image data.,2010,14,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb14.html#ChaoWO10,https://doi.org/10.1109/TITB.2010.2049024 +Anna Karahaliou,Breast Cancer Diagnosis: Analyzing Texture of Tissue Surrounding Microcalcifications.,2008,12,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb12.html#KarahaliouBSSALPC08,https://doi.org/10.1109/TITB.2008.920634 +Curtis Lisle,The design and applications of a recursive molecular modeling framework.,2000,4,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb4.html#LisleP00,https://doi.org/10.1109/4233.845209 +Wei Yang 0006,Lung Field Segmentation in Chest Radiographs From Boundary Maps by a Structured Edge Detector.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#0006LLYLFC18,https://doi.org/10.1109/JBHI.2017.2687939 +A. Tsalpatouros,CT-based software for 3-D localization and reconstruction in stepping source brachytherapy.,1997,1,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb1.html#TsalpatourosBKLKUZ97,https://doi.org/10.1109/4233.681165 +Haiwei Pan,Brain CT Image Similarity Retrieval Method Based on Uncertain Location Graph.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#PanLLHFG14,https://doi.org/10.1109/JBHI.2013.2274798 +Yue Huang 0001,Epithelium-Stroma Classification via Convolutional Neural Networks and Unsupervised Domain Adaptation in Histopathological Images.,2017,21,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb21.html#HuangZLDR17,https://doi.org/10.1109/JBHI.2017.2691738 +Ganesh R. Naik,Twin SVM for gesture classification using the surface electromyogram.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#NaikKJ10,https://doi.org/10.1109/TITB.2009.2037752 +Daniel Teichmann,A Bendable and Wearable Cardiorespiratory Monitoring Device Fusing Two Noncontact Sensor Principles.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#TeichmannMBWL15,https://doi.org/10.1109/JBHI.2015.2417760 +Xuechen Li,A Solitary Feature-Based Lung Nodule Detection Approach for Chest X-Ray Radiographs.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#LiSL18,https://doi.org/10.1109/JBHI.2017.2661805 +Nagaraj Hegde,Automatic Recognition of Activities of Daily Living Utilizing Insole-Based and Wrist-Worn Wearable Sensors.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#HegdeBSMS18,https://doi.org/10.1109/JBHI.2017.2734803 +Nicola Carbonaro,Exploiting Wearable Goniometer Technology for Motion Sensing Gloves.,2014,18,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb18.html#CarbonaroMLPRT14,https://doi.org/10.1109/JBHI.2014.2324293 +Vangelis Sakkalis,Web-Based Workflow Planning Platform Supporting the Design and Execution of Complex Multiscale Cancer Models.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#SakkalisSTMSMOKDJMG14,https://doi.org/10.1109/JBHI.2013.2297167 +Tai-Hong Kuo,Optical Tracking-Based Model Surgery for Orthognathic Surgical Planning Using a Quantifying Evaluation Method.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#KuoWWF12,https://doi.org/10.1109/TITB.2012.2204894 +Vitaly Schetinin,Confident Interpretation of Bayesian Decision Tree Ensembles for Clinical Applications.,2007,11,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb11.html#SchetininFPCKEBH07,https://doi.org/10.1109/TITB.2006.880553 +Krittameth Teachasrisaksakul,Imitation of Dynamic Walking With BSN for Humanoid Robot.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#Teachasrisaksakul15,https://doi.org/10.1109/JBHI.2015.2425221 +Zhihui Wang,A Java-Based Enterprise System Architecture for Implementing a Continuously Supported and Entirely Web-Based Exercise Solution.,2006,10,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb10.html#WangK06,https://doi.org/10.1109/TITB.2005.863868 +Grigory Begelman,Visual Positioning of Previously Defined ROIs on Microscopic Slides.,2006,10,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb10.html#BegelmanLR06,https://doi.org/10.1109/TITB.2005.856856 +Bor-Shyh Lin,2D/3D-Display Auto-Adjustment Switch System.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#LinW018,https://doi.org/10.1109/JBHI.2017.2700794 +Jae Hyuk Shin,Nonconstrained sleep monitoring system and algorithms using air-mattress with balancing tube method.,2010,14,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb14.html#ShinCJP10,https://doi.org/10.1109/TITB.2009.2034011 +Christian Seeger,MyHealthAssistant: An Event-driven Middleware for Multiple Medical Applications on a Smartphone-Mediated Body Sensor Network.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#SeegerLB15,https://doi.org/10.1109/JBHI.2014.2326604 +Syed Haque,A Meta-Analysis of the Training Effectiveness of Virtual Reality Surgical Simulators.,2006,10,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb10.html#HaqueS06,https://doi.org/10.1109/TITB.2005.855529 +Saskia Robben,Delta Features From Ambient Sensor Data are Good Predictors of Change in Functional Health.,2017,21,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb21.html#RobbenEK17,https://doi.org/10.1109/JBHI.2016.2593980 +Christos Bellos,Identification of COPD Patients' Health Status Using an Intelligent System in the CHRONIOUS Wearable Platform.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#BellosPRF14,https://doi.org/10.1109/JBHI.2013.2293172 +Hao Ying,A Fuzzy Discrete Event System Approach to Determining Optimal HIV/AIDS Treatment Regimens.,2006,10,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb10.html#YingLMCBYC06,https://doi.org/10.1109/TITB.2006.874200 +Luca Palmerini,Feature Selection for Accelerometer-Based Posture Analysis in Parkinson's Disease.,2011,15,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb15.html#PalmeriniRMVC11,https://doi.org/10.1109/TITB.2011.2107916 +Thitiporn Chanwimaluang,"Correction to ""Hybrid Retinal Image Registration"".",2007,11,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb11.html#ChanwimaluangFF07,https://doi.org/10.1109/TITB.2006.885792 +Robert Mark Seepers,Attacks on Heartbeat-Based Security Using Remote Photoplethysmography.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#SeepersWHSS18,https://doi.org/10.1109/JBHI.2017.2691282 +Philip C. Cooley,The Model Repository of the Models of Infectious Disease Agent Study.,2008,12,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb12.html#CooleyRBBCCGGGHLQSSSW08,https://doi.org/10.1109/TITB.2007.910354 +Mohammad Niknazar,A New Framework Based on Recurrence Quantification Analysis for Epileptic Seizure Detection.,2013,17,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb17.html#NiknazarMVS13,https://doi.org/10.1109/JBHI.2013.2255132 +Yin-Yan Lin,Sleep Apnea Detection Based on Thoracic and Abdominal Movement Signals of Wearable Piezoelectric Bands.,2017,21,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb21.html#LinWHHHL17,https://doi.org/10.1109/JBHI.2016.2636778 +Vahid Taimouri,Colon Segmentation for Prepless Virtual Colonoscopy.,2011,15,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb15.html#TaimouriLLLPH11,https://doi.org/10.1109/TITB.2011.2155664 +Dong-Her Shih,An embedded mobile ECG reasoning system for elderly patients.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#ShihCLL10,https://doi.org/10.1109/TITB.2009.2021065 +Duygun Eral Barkana,Evaluation of low-level controllers for an orthopedic surgery robotic system.,2010,14,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb14.html#Barkana10,https://doi.org/10.1109/TITB.2010.2044581 +Maria Papadogiorgaki,A Glycolysis-Based In Silico Model for the Solid Tumor Growth.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#PapadogiorgakiK15,https://doi.org/10.1109/JBHI.2014.2356254 +Régis Beuscart,"Telecommunication in healthcare for a better coordination between hospitals and GP's: routine application of the ""ISAR-Telematics"" project.",1999,3,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb3.html#BeuscartRDS99,https://doi.org/10.1109/4233.767085 +Marcelo Archanjo José,Human-Computer Interface Controlled by the Lip.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#JoseL15,https://doi.org/10.1109/JBHI.2014.2305103 +Nicholas R. Smith,Detection of Simulated Vocal Dysfunctions Using Complex sEMG Patterns.,2016,20,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb20.html#SmithRDSPD16,https://doi.org/10.1109/JBHI.2015.2490087 +Cristina Cañero Morales,Mobile tele-echography: user interface design.,2005,9,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb9.html#MoralesTTLS05,https://doi.org/10.1109/TITB.2004.840064 +Pingkun Yan,Modeling Interaction for Segmentation of Neighboring Structures.,2009,13,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb13.html#YanKSS09,https://doi.org/10.1109/TITB.2008.2010492 +Shu-Di Bao,A Method of Signal Scrambling to Secure Data Storage for Healthcare Applications.,2017,21,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb21.html#BaoCY17,https://doi.org/10.1109/JBHI.2017.2679979 +Gang Wang 0005,The Removal of EOG Artifacts From EEG Signals Using Independent Component Analysis and Multivariate Empirical Mode Decomposition.,2016,20,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb20.html#WangTLZY16,https://doi.org/10.1109/JBHI.2015.2450196 +Yixuan Yuan,Bleeding Frame and Region Detection in the Wireless Capsule Endoscopy Video.,2016,20,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb20.html#YuanLM16,https://doi.org/10.1109/JBHI.2015.2399502 +S. Hermann,Exploring sitting posture and discomfort using nonlinear analysis methods.,2005,9,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb9.html#Hermann05,https://doi.org/10.1109/TITB.2005.854513 +Sunghoon Ivan Lee,A Pervasive Assessment of Motor Function: A Lightweight Grip Strength Tracking System.,2013,17,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb17.html#LeeGMS13,https://doi.org/10.1109/JBHI.2013.2262833 +Eirini Kostopoulou,An Effective Approach for Detection and Segmentation of Protein Spots on 2-D Gel Images.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#KostopoulouZM14,https://doi.org/10.1109/JBHI.2013.2259208 +Beatriz Remeseiro,CASDES: A Computer-Aided System to Support Dry Eye Diagnosis Based on Tear Film Maps.,2016,20,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb20.html#RemeseiroGP16,https://doi.org/10.1109/JBHI.2015.2419316 +Fanchi Meng,A Bicluster-Based Bayesian Principal Component Analysis Method for Microarray Missing Value Estimation.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#MengCY14,https://doi.org/10.1109/JBHI.2013.2284795 +álvaro Alesanco Iglesias,Enhanced Real-Time ECG Coder for Packetized Telecardiology Applications.,2006,10,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb10.html#AlesancoOIG06,https://doi.org/10.1109/TITB.2005.856853 +Justin Boyle,Probability of Severe Adverse Events as a Function of Hospital Occupancy.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#BoyleZHKB14,https://doi.org/10.1109/JBHI.2013.2262053 +Kevin Hung,Implementation of a WAP-based telemedicine system for patient monitoring.,2003,7,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb7.html#HungZ03,https://doi.org/10.1109/TITB.2003.811870 +Mark P. Wachowiak,High-Performance Medical Image Registration Using New Optimization Techniques.,2006,10,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb10.html#WachowiakP06,https://doi.org/10.1109/TITB.2006.864476 +James Y. Xu,Personalized Multilayer Daily Life Profiling Through Context Enabled Activity Classification and Motion Reconstruction: An Integrated System Approach.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#XuWBDPK16,https://doi.org/10.1109/JBHI.2014.2385694 +Cécile Delgorge,A tele-operated mobile ultrasound scanner using a light-weight robot.,2005,9,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb9.html#DelgorgeCBNRSBGVPV05,https://doi.org/10.1109/TITB.2004.840062 +Chin-Teng Lin,An intelligent telecardiology system using a wearable and wireless ECG to detect atrial fibrillation.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#LinCLCLCLLCLK10,https://doi.org/10.1109/TITB.2010.2047401 +Peng Qiu,An Activity-Subspace Approach for Estimating the Integrated Input Function and Relative Distribution Volume in PET Parametric Imaging.,2009,13,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb13.html#QiuWLS09,https://doi.org/10.1109/TITB.2008.2004485 +Chun-Rong Huang,Helicobacter Pylori-Related Gastric Histology Classification Using Support-Vector-Machine-Based Feature Selection.,2008,12,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb12.html#HuangCSKM08,https://doi.org/10.1109/TITB.2007.913128 +Mojtaba Nazari,Variational Mode Extraction: A New Efficient Method to Derive Respiratory Signals from ECG.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#NazariS18,https://doi.org/10.1109/JBHI.2017.2734074 +S. Murat Oztaner,A Bayesian Estimation Framework for Pharmacogenomics Driven Warfarin Dosing: A Comparative Study.,2015,19,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb19.html#OztanerTEO15,https://doi.org/10.1109/JBHI.2014.2336974 +Mikko Peltokangas,Parameters Extracted From Arterial Pulse Waves as Markers of Atherosclerotic Changes: Performance and Repeatability.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#PeltokangasTVMR18,https://doi.org/10.1109/JBHI.2017.2679904 +M. Mahvash,Novel Approach for Modeling Separation Forces Between Deformable Bodies.,2006,10,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb10.html#Mahvash06,https://doi.org/10.1109/TITB.2006.872040 +Srinivasan Lekha,Real-Time Non-Invasive Detection and Classification of Diabetes Using Modified Convolution Neural Network.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#LekhaM18,https://doi.org/10.1109/JBHI.2017.2757510 +George Rigas,Assessment of Tremor Activity in the Parkinson's Disease Using a Set of Wearable Sensors.,2012,16,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb16.html#RigasTTBTBFTK12,https://doi.org/10.1109/TITB.2011.2182616 +Marie Xavier,An Adapted Optical Flow Algorithm for Robust Quantification of Cardiac Wall Motion From Standard Cine-MR Examinations.,2012,16,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb16.html#XavierLWBL12,https://doi.org/10.1109/TITB.2012.2204893 +Mikhail G. Danilouchkine,Accuracy in Prediction of Catheter Rotation in IVUS With Feature-Based Optical Flow - A Phantom Study.,2008,12,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb12.html#DanilouchkineMS08,https://doi.org/10.1109/TITB.2007.905864 +Jin-Chern Chiou,Toward a Wirelessly Powered On-Lens Intraocular Pressure Monitoring System.,2016,20,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb20.html#ChiouHLHYKD16,https://doi.org/10.1109/JBHI.2016.2594058 +Michael Dorr,New Precision Metrics for Contrast Sensitivity Testing.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#DorrEWLBL18,https://doi.org/10.1109/JBHI.2017.2708745 +George V. Koutelakis,WADA Service: An Extension of DICOM WADO Service.,2009,13,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb13.html#KoutelakisL09,https://doi.org/10.1109/TITB.2008.2007197 +Xiabi Liu,Recognizing Common CT Imaging Signs of Lung Diseases Through a New Feature Selection Method Based on Fisher Criterion and Genetic Optimization.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#LiuMSZZZ15,https://doi.org/10.1109/JBHI.2014.2327811 +Cristian F. Pasluosta,An Emerging Era in the Management of Parkinson's Disease: Wearable Technologies and the Internet of Things.,2015,19,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb19.html#PasluostaGWKE15,https://doi.org/10.1109/JBHI.2015.2461555 +Arash Maskooki,Adaptive Routing for Dynamic On-Body Wireless Sensor Networks.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#MaskookiSGL15,https://doi.org/10.1109/JBHI.2014.2313343 +Yung-Gi Wu,Medical image compression by discrete cosine transform spectral similarity strategy.,2001,5,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb5.html#WuT01,https://doi.org/10.1109/4233.945294 +H. Ishihata,A Radio Frequency Identification Implanted in a Tooth can Communicate With the Outside World.,2007,11,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb11.html#IshihataTTHYSSH07,https://doi.org/10.1109/TITB.2007.891926 +Shuai Zhang 0001,A Predictive Model for Assistive Technology Adoption for People With Dementia.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#ZhangMNDGSC14,https://doi.org/10.1109/JBHI.2013.2267549 +Alpha Agape Gopalai,Determining Level of Postural Control in Young Adults Using Force-Sensing Resistors.,2011,15,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb15.html#GopalaiSG11,https://doi.org/10.1109/TITB.2011.2140378 +Dimitrios Alexandrou,SEMPATH Ontology: Modeling Multidisciplinary Treatment Schemes Utilizing Semantics.,2012,16,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb16.html#AlexandrouPBKM12,https://doi.org/10.1109/TITB.2011.2161588 +Gaurav N. Pradhan,Indexing 3-D Human Motion Repositories for Content-Based Retrieval.,2009,13,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb13.html#PradhanP09,https://doi.org/10.1109/TITB.2009.2021262 +Arnau Oliver,A Novel Breast Tissue Density Classification Methodology.,2008,12,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb12.html#OliverFMPPDZ08,https://doi.org/10.1109/TITB.2007.903514 +Osman Salem,Online Anomaly Detection in Wireless Body Area Networks for Reliable Healthcare Monitoring.,2014,18,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb18.html#SalemLMB14,https://doi.org/10.1109/JBHI.2014.2312214 +Elpiniki I. Papageorgiou,Application of Evolutionary Fuzzy Cognitive Maps for Prediction of Pulmonary Infections.,2012,16,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb16.html#PapageorgiouF12,https://doi.org/10.1109/TITB.2011.2175937 +Ramana Vinjamuri,Temporal postural synergies of the hand in rapid grasping tasks.,2010,14,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb14.html#VinjamuriSCLSM10,https://doi.org/10.1109/TITB.2009.2038907 +Yang Li 0010,Epileptic Seizure Classification of EEGs Using Time-Frequency Analysis Based Multiscale Radial Basis Functions.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#LiWLLYG18,https://doi.org/10.1109/JBHI.2017.2654479 +Avan Suinesiaputra,Statistical Shape Modeling of the Left Ventricle: Myocardial Infarct Classification Challenge.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#SuinesiaputraAA18,https://doi.org/10.1109/JBHI.2017.2652449 +Dinanath Sulakhe,Interoperability of GADU in Using Heterogeneous Grid Resources for Bioinformatics Applications.,2008,12,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb12.html#SulakheRWFM08,https://doi.org/10.1109/TITB.2007.897783 +Chin-De Liu,An interaction-embedded HMM framework for human behavior understanding: with nursing environments as examples.,2010,14,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb14.html#LiuCC10,https://doi.org/10.1109/TITB.2010.2052061 +Bin He 0002,Imaging and visualization of 3-D cardiac electric activity.,2001,5,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb5.html#HeW01,https://doi.org/10.1109/4233.945288 +Carla Agurto,A Multiscale Optimization Approach to Detect Exudates in the Macula.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#AgurtoMYWPNBS14,https://doi.org/10.1109/JBHI.2013.2296399 +Shuai Zhang 0001,Probabilistic Learning From Incomplete Data for Recognition of Activities of Daily Living in Smart Homes.,2012,16,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb16.html#ZhangMS12,https://doi.org/10.1109/TITB.2012.2188534 +Cecilia Occhiuzzi,The RFID technology for neurosciences: feasibility of limbs' monitoring in sleep diseases.,2010,14,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb14.html#OcchiuzziM10,https://doi.org/10.1109/TITB.2009.2028081 +José García,Remote processing server for ECG-based clinical diagnosis support.,2002,6,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb6.html#GarciaMSOML02,https://doi.org/10.1109/TITB.2002.806087 +Jason J. Liu,BreathSens: A Continuous On-Bed Respiratory Monitoring System With Torso Localization Using an Unobtrusive Pressure Sensing Array.,2015,19,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb19.html#LiuHXZSAS15,https://doi.org/10.1109/JBHI.2014.2344679 +Saurav Basu,Segmentation and Tracing of Single Neurons from 3D Confocal Microscope Images.,2013,17,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb17.html#BasuCAA13,https://doi.org/10.1109/TITB.2012.2209670 +Matthew J. Nitzken,Shape Analysis of the Human Brain: A Brief Survey.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#NitzkenCGIZE14,https://doi.org/10.1109/JBHI.2014.2298139 +Dimin Wang,An Optimal Pulse System Design by Multichannel Sensors Fusion.,2016,20,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb20.html#WangZL16,https://doi.org/10.1109/JBHI.2015.2392132 +Mohammad Wazid,A Novel Authentication and Key Agreement Scheme for Implantable Medical Devices Deployment.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#WazidDKCV18,https://doi.org/10.1109/JBHI.2017.2721545 +Christina Catley,Predicting High-Risk Preterm Birth Using Artificial Neural Networks.,2006,10,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb10.html#CatleyFWP06,https://doi.org/10.1109/TITB.2006.872069 +Tomas Koutny,Prediction of Interstitial Glucose Level.,2012,16,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb16.html#Koutny12,https://doi.org/10.1109/TITB.2011.2177469 +Jae Hee Song,Vein Visualization Using a Smart Phone With Multispectral Wiener Estimation for Point-of-Care Applications.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#SongKY15,https://doi.org/10.1109/JBHI.2014.2313145 +Enrico Grisan,Automatic Segmentation and Disentangling of Chromosomes in Q-Band Prometaphase Images.,2009,13,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb13.html#GrisanPR09,https://doi.org/10.1109/TITB.2009.2014464 +Feiyi Fan,Estimating SpO2 via Time-Efficient High-Resolution Harmonics Analysis and Maximum Likelihood Tracking.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#FanYZLZ18,https://doi.org/10.1109/JBHI.2017.2769699 +Hongming Xu,An Efficient Technique for Nuclei Segmentation Based on Ellipse Descriptor Analysis and Improved Seed Detection Algorithm.,2014,18,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb18.html#XuLM14,https://doi.org/10.1109/JBHI.2013.2297030 +Urs Anliker,AMON: a wearable multiparameter medical monitoring and alert system.,2004,8,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb8.html#AnlikerWLTDBKSCCBSAHSV04,https://doi.org/10.1109/TITB.2004.837888 +Kwanghyun Sohn,The Single Equivalent Moving Dipole Model Does Not Require Spatial Anatomical Information to Determine Cardiac Sources of Activation.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#SohnLLGHHCA14,https://doi.org/10.1109/JBHI.2013.2268012 +Lihua Ruan,SmartBAN With Periodic Monitoring Traffic: A Performance Study on Low Delay and High Energy Efficiency.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#RuanDW18,https://doi.org/10.1109/JBHI.2016.2642220 +Ferda Ofli,Design and Evaluation of an Interactive Exercise Coaching System for Older Adults: Lessons Learned.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#OfliKOBJP16,https://doi.org/10.1109/JBHI.2015.2391671 +Insu Song,Anonymous Indexing of Health Conditions for a Similarity Measure.,2012,16,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb16.html#SongM12,https://doi.org/10.1109/TITB.2012.2194717 +Georgios S. Stamatakos,The Technologically Integrated Oncosimulator: Combining Multiscale Cancer Modeling With Information Technology in the In Silico Oncology Context.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#StamatakosDLBKGEPRGdSMDTG14,https://doi.org/10.1109/JBHI.2013.2284276 +Juan Manuel Sáez,Aerial Obstacle Detection With 3-D Mobile Devices.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#SaezEL15,https://doi.org/10.1109/JBHI.2014.2322392 +Ying Zhang,Bluetooth-Based Sensor Networks for Remotely Monitoring the Physiological Signals of a Patient.,2009,13,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb13.html#ZhangX09,https://doi.org/10.1109/TITB.2009.2028883 +Roberta Gazzarata,A Standardized SOA for Clinical Data Interchange in a Cardiac Telemonitoring Environment.,2014,18,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb18.html#GazzarataVCG14,https://doi.org/10.1109/JBHI.2014.2334372 +Konstantinos Liakos,A scalable mediator approach to process large biomedical 3-D images.,2004,8,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb8.html#LiakosBB04,https://doi.org/10.1109/TITB.2004.834374 +Chang-Sei Kim,Quantification of Wave Reflection Using Peripheral Blood Pressure Waveforms.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#KimFMFH15,https://doi.org/10.1109/JBHI.2014.2307273 +Marcos A. Simplício Jr.,SecourHealth: A Delay-Tolerant Security Framework for Mobile Health Data Collection.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#SimplicioIBCN15,https://doi.org/10.1109/JBHI.2014.2320444 +Nassim Ravanshad,A Level-Crossing Based QRS-Detection Algorithm for Wearable ECG Sensors.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#RavanshadRLL14,https://doi.org/10.1109/JBHI.2013.2274809 +Cheng-Chi Wu,Evolution-Based Hierarchical Feature Fusion for Ultrasonic Liver Tissue Characterization.,2013,17,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb17.html#WuLCH13,https://doi.org/10.1109/JBHI.2013.2261819 +M. Amparo Callejon,Study of Attenuation and Dispersion Through the Skin in Intrabody Communications Systems.,2012,16,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb16.html#CallejonRRN12,https://doi.org/10.1109/TITB.2011.2171702 +Pau Herrero,Advanced Insulin Bolus Advisor Based on Run-To-Run Control and Case-Based Reasoning.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#HerreroPROGT15,https://doi.org/10.1109/JBHI.2014.2331896 +Mingxia Liu,Anatomical Landmark Based Deep Feature Representation for MR Images in Brain Disease Diagnosis.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#LiuZNYS18,https://doi.org/10.1109/JBHI.2018.2791863 +Miao Yu 0001,An Online One Class Support Vector Machine-Based Person-Specific Fall Detection System for Monitoring an Elderly Individual in a Room Environment.,2013,17,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb17.html#YuYRNWC13,https://doi.org/10.1109/JBHI.2013.2274479 +Hao Han,α-Information-Based Registration of Dynamic Scans for Magnetic Resonance Cystography.,2016,20,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb20.html#HanL0DLLYFL16,https://doi.org/10.1109/JBHI.2015.2441744 +Hissam Tawfik,Understanding Clinical Work Practices for Cross-Boundary Decision Support in e-Health.,2012,16,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb16.html#TawfikAN12,https://doi.org/10.1109/TITB.2012.2187673 +Beatriz Sevilla Villanueva,Evaluation of Adherence to Nutritional Intervention Through Trajectory Analysis.,2017,21,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb21.html#VillanuevaGSFC17,https://doi.org/10.1109/JBHI.2016.2634698 +Md. Saiful Islam 0001,HBS: A Novel Biometric Feature Based on Heartbeat Morphology.,2012,16,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb16.html#IslamABH12,https://doi.org/10.1109/TITB.2012.2188535 +Sriram Sridharan,Hypoxia Stress Response Pathways: Modeling and Targeted Therapy.,2017,21,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb21.html#SridharanVVD17,https://doi.org/10.1109/JBHI.2016.2559460 +Nadin Kökciyan,Semantic Description of Liver CT Images: An Ontological Approach.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#KokciyanTUYBA14,https://doi.org/10.1109/JBHI.2014.2298880 +Monique Frize,Conceptual framework of knowledge management for ethical decision-making support in neonatal intensive car.,2005,9,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb9.html#FrizeYWO05,https://doi.org/10.1109/TITB.2005.847187 +Krzysztof Jurczuk,Vascular System Modeling in Parallel Environment - Distributed and Shared Memory Approaches.,2011,15,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb15.html#JurczukKB11,https://doi.org/10.1109/TITB.2011.2151198 +Jasjit S. Suri,A review on MR vascular image processing algorithms: acquisition and prefiltering: part I.,2002,6,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb6.html#SuriLRL02a,https://doi.org/10.1109/TITB.2002.804139 +Daojing He,Lightweight and Confidential Data Discovery and Dissemination for Wireless Body Area Networks.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#HeCZY14,https://doi.org/10.1109/JBHI.2013.2293620 +Torsten Strasser,The Tuebingen Scotopic Threshold Test (TSTT).,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#StrasserLSHSDKZ18,https://doi.org/10.1109/JBHI.2017.2648891 +Miad Faezipour,A patient-adaptive profiling scheme for ECG beat classification.,2010,14,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb14.html#FaezipourSBNMT10,https://doi.org/10.1109/TITB.2010.2055575 +Xinbo Gao,On combining morphological component analysis and concentric morphology model for mammographic mass detection.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#GaoWLT10,https://doi.org/10.1109/TITB.2009.2036167 +Chueh-Loo Poh,Addressing the Future of Clinical Information Systems-Web-Based Multilayer Visualization.,2007,11,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb11.html#PohKS07,https://doi.org/10.1109/TITB.2006.875680 +Kamal Taha,Determining the Semantic Similarities Among Gene Ontology Terms.,2013,17,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb17.html#Taha13,https://doi.org/10.1109/JBHI.2013.2248742 +Nipon Theera-Umpon,Morphological Granulometric Features of Nucleus in Automatic Bone Marrow White Blood Cell Classification.,2007,11,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb11.html#Theera-UmponD07,https://doi.org/10.1109/TITB.2007.892694 +Poonam Zham,Efficacy of Guided Spiral Drawing in the Classification of Parkinson's Disease.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#ZhamARK18,https://doi.org/10.1109/JBHI.2017.2762008 +Lei Zhang 0006,A Modified Matched Filter With Double-Sided Thresholding for Screening Proliferative Diabetic Retinopathy.,2009,13,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb13.html#ZhangLYZ09,https://doi.org/10.1109/TITB.2008.2007201 +Mehul P. Sampat,Indexes for Three-Class Classification Performance Assessment - An Empirical Comparison.,2009,13,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb13.html#SampatPWGKBM09,https://doi.org/10.1109/TITB.2008.2009440 +Silvia Del Din,Validation of an Accelerometer to Quantify a Comprehensive Battery of Gait Characteristics in Healthy Older Adults and Parkinson's Disease: Toward Clinical and at Home Use.,2016,20,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb20.html#DinGR16,https://doi.org/10.1109/JBHI.2015.2419317 +Priyanka Mandal,Predictive Walking-Age Health Analyzer.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#MandalTMCD18,https://doi.org/10.1109/JBHI.2017.2666603 +Manzoor Razaak,A Study on Quality Assessment for Medical Ultrasound Video Compressed via HEVC.,2014,18,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb18.html#RazaakMS14,https://doi.org/10.1109/JBHI.2014.2326891 +Bruce R. Schatz,Guest Editorial: Predictive Modeling in Health Informatics.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#Schatz15,https://doi.org/10.1109/JBHI.2015.2431354 +Giovanni Canino,On the Analysis of Diseases and Their Related Geographical Data.,2017,21,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb21.html#CaninoGTZV17,https://doi.org/10.1109/JBHI.2015.2496424 +Chiu Chiang Tan,IBE-Lite: A Lightweight Identity-Based Cryptography for Body Sensor Networks.,2009,13,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb13.html#TanWZL09,https://doi.org/10.1109/TITB.2009.2033055 +Ramon Pires,Beyond Lesion-Based Diabetic Retinopathy: A Direct Approach for Referral.,2017,21,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb21.html#PiresAJWVR17,https://doi.org/10.1109/JBHI.2015.2498104 +Ignacio Capurro,Efficient Sequential Compression of Multichannel Biomedical Signals.,2017,21,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb21.html#CapurroLMRRS17,https://doi.org/10.1109/JBHI.2016.2582683 +Carl Taswell,"Corrections to ""DOORS to the Semantic Web and Grid With a PORTAL for Biomedical Computing"".",2008,12,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb12.html#Taswell08a,https://doi.org/10.1109/TITB.2008.923764 +Abhijit Guha Roy,Lumen Segmentation in Intravascular Optical Coherence Tomography Using Backscattering Tracked and Initialized Random Walks.,2016,20,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb20.html#RoyCCDKLNKS16,https://doi.org/10.1109/JBHI.2015.2403713 +Xiaohua Hu,Microarray Gene Cluster Identification and Annotation Through Cluster Ensemble and EM-Based Informative Textual Summarization.,2009,13,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb13.html#HuPZ09,https://doi.org/10.1109/TITB.2009.2023984 +Dae-Geun Jang,Enhancing the Pulse Contour Analysis-Based Arterial Stiffness Estimation Using a Novel Photoplethysmographic Parameter.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#JangPH15,https://doi.org/10.1109/JBHI.2014.2306679 +Thierry Q. Mentzel,Instrumental Assessment of Bradykinesia: A Comparison Between Motor Tasks.,2016,20,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb20.html#MentzelMMLDH16,https://doi.org/10.1109/JBHI.2015.2412656 +Hatice çinar Akakin,Content-Based Microscopic Image Retrieval System for Multi-Image Queries.,2012,16,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb16.html#AkakinG12,https://doi.org/10.1109/TITB.2012.2185829 +Roberto Somolinos,Service for the Pseudonymization of Electronic Healthcare Records Based on ISO/EN 13606 for the Secondary Use of Information.,2015,19,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb19.html#SomolinosCHPTSF15,https://doi.org/10.1109/JBHI.2014.2360546 +Pål Anders Floor,In-Body to On-Body Ultrawideband Propagation Model Derived From Measurements in Living Animals.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#FloorCBABGHPPHR15,https://doi.org/10.1109/JBHI.2015.2417805 +Vijay S. Kumar,Large-Scale Biomedical Image Analysis in Grid Environments.,2008,12,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb12.html#KumarRKCPCLMS08,https://doi.org/10.1109/TITB.2007.908466 +Chia-Hsiang Wu,Model-Based Orthodontic Assessments for Dental Panoramic Radiographs.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#WuTCLS18,https://doi.org/10.1109/JBHI.2017.2660527 +Sriram Raju Dandu,Understanding the Physiological Significance of Four Inertial Gait Features in Multiple Sclerosis.,2018,22,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb22.html#DanduEQGLBG18,https://doi.org/10.1109/JBHI.2017.2773629 +Carlos Hernández Salvador,Evaluation of a Telemedicine-Based Service for the Follow-Up and Monitoring of Patients Treated With Oral Anticoagulant Therapy.,2008,12,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb12.html#SalvadorRMRCSFCGMM08,https://doi.org/10.1109/TITB.2008.910750 +Yuan Zou,Automatic Identification of Artifact-Related Independent Components for Artifact Removal in EEG Recordings.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#ZouNJ16,https://doi.org/10.1109/JBHI.2014.2370646 +Gilles LeBellego,A Model for the Measurement of Patient Activity in a Hospital Suite.,2006,10,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb10.html#LeBellegoNVMD06,https://doi.org/10.1109/TITB.2005.856855 +Yuan-Ting Zhang,Health Informatics: Unobtrusive Physiological Measurement Technologies.,2013,17,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb17.html#ZhangP13,https://doi.org/10.1109/JBHI.2013.2279187 +Hongen Liao,Surgical Navigation by Autostereoscopic Image Overlay of Integral Videography.,2004,8,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb8.html#LiaoHNISD04,https://doi.org/10.1109/TITB.2004.826734 +Mariano Llamedo,Cross-Database Evaluation of a Multilead Heartbeat Classifier.,2012,16,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb16.html#LlamedoKM12,https://doi.org/10.1109/TITB.2012.2193408 +V. Sree Hari Rao,Novel Approaches for Predicting Risk Factors of Atherosclerosis.,2013,17,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb17.html#RaoK13,https://doi.org/10.1109/TITB.2012.2227271 +Giuseppe Fico,Integration of Personalized Healthcare Pathways in an ICT Platform for Diabetes Managements: A Small-Scale Exploratory Study.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#FicoFAGDACP16,https://doi.org/10.1109/JBHI.2014.2367863 +Albert Gubern-Mérida,Breast Segmentation and Density Estimation in Breast MRI: A Fully Automatic Framework.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#Gubern-MeridaKMMK15,https://doi.org/10.1109/JBHI.2014.2311163 +Tamara M. E. Nijsen,Time-frequency analysis of accelerometry data for detection of myoclonic seizures.,2010,14,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb14.html#NijsenACG10,https://doi.org/10.1109/TITB.2010.2058123 +Juan A. Fraile,Applying Wearable Solutions in Dependent Environments.,2010,14,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb14.html#FraileBCA10,https://doi.org/10.1109/TITB.2010.2053849 +Chen Kan,Two-Phase Greedy Pursuit Algorithm for Automatic Detection and Characterization of Transient Calcium Signaling.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#KanYY15,https://doi.org/10.1109/JBHI.2014.2312293 +Terence Critchlow,DataFoundry: information management for scientific data.,2000,4,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb4.html#CritchlowFGMS00,https://doi.org/10.1109/4233.826859 +Mark E. Larsen,We Feel: Mapping Emotion on Twitter.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#LarsenBBOPC15,https://doi.org/10.1109/JBHI.2015.2403839 +Longfei Han,An Intelligible Risk Stratification Model Based on Pairwise and Size Constrained Kmeans.,2017,21,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb21.html#HanLWPMZ17,https://doi.org/10.1109/JBHI.2016.2633403 +Constantinos S. Pattichis,Guest Editorial Introduction to the Special Section on Computational Intelligence in Medical Systems.,2009,13,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb13.html#PattichisSPMKF09,https://doi.org/10.1109/TITB.2009.2030025 +Barry Shaw,Modeling the Health Care Costs of Geriatric Inpatients.,2006,10,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb10.html#ShawM06,https://doi.org/10.1109/TITB.2005.863821 +Manolis Tsiknakis,Guest Editorial: Computational Solutions to Large-Scale Data Management and Analysis in Translational and Personalized Medicine.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#TsiknakisPGWWBP14,https://doi.org/10.1109/JBHI.2014.2315513 +Wen-Yen Lin,Identification of Location Specific Feature Points in a Cardiac Cycle Using a Novel Seismocardiogram Spectrum System.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#LinCCCWHLHLTL18,https://doi.org/10.1109/JBHI.2016.2620496 +Ioannis Andreadis,A CAD$_{\bf x}$ Scheme for Mammography Empowered With Topological Information From Clustered Microcalcifications' Atlases.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#AndreadisSN15,https://doi.org/10.1109/JBHI.2014.2334491 +Justin Boyle,Automatic Detection of Respiration Rate From Ambulatory Single-Lead ECG.,2009,13,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb13.html#BoyleBSK09,https://doi.org/10.1109/TITB.2009.2031239 +Vladimir Dobrynin,SOPHIA: an interactive cluster-based retrieval system for the OHSUMED collection.,2005,9,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb9.html#DobryninPGR05,https://doi.org/10.1109/TITB.2005.847184 +Geng Yang,A Hybrid Low Power Biopatch for Body Surface Potential Measurement.,2013,17,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb17.html#YangCXMTZ13,https://doi.org/10.1109/JBHI.2013.2252017 +José Ramón Gállego,Performance analysis of multiplexed medical data transmission for mobile emergency care over the UMTS channel.,2005,9,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb9.html#GallegoHCLVF05,https://doi.org/10.1109/TITB.2004.838362 +Qiang Chen,Shape Statistics Variational Approach for the Outer Contour Segmentation of Left Ventricle MR Images.,2006,10,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb10.html#ChenZTHX06,https://doi.org/10.1109/TITB.2006.872051 +Ana G. Salazar-Gonzalez,Segmentation of the Blood Vessels and Optic Disk in Retinal Images.,2014,18,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb18.html#Salazar-GonzalezKLL14,https://doi.org/10.1109/JBHI.2014.2302749 +Anthony F. Dalton,Comparing Supervised Learning Techniques on the Task of Physical Activity Recognition.,2013,17,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb17.html#DaltonL13,https://doi.org/10.1109/TITB.2012.2223823 +Jizhou Li,The Sensitive and Efficient Detection of Quadriceps Muscle Thickness Changes in Cross-Sectional Plane Using Ultrasonography: A Feasibility Investigation.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#LiZLZWZ14,https://doi.org/10.1109/JBHI.2013.2275002 +Tarik Taleb,A novel middleware solution to improve ubiquitous healthcare systems aided by affective information.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#TalebBN10,https://doi.org/10.1109/TITB.2010.2042608 +Bo Jin,Walking-Age Analyzer for Healthcare Applications.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#JinTBSXMD14,https://doi.org/10.1109/JBHI.2013.2296873 +Marcela D. Rodríguez,Location-aware access to hospital information and services.,2004,8,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb8.html#RodriguezFMM04,https://doi.org/10.1109/TITB.2004.837887 +D. Lai,Equivalent Moving Dipole Localization of Cardiac Ectopic Activity in a Swine Model During Pacing.,2010,14,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb14.html#LaiLEIH10,https://doi.org/10.1109/TITB.2010.2051448 +Byung-Woo Hong,Segmentation of regions of interest in mammograms in a topographic approach.,2010,14,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb14.html#HongS10,https://doi.org/10.1109/TITB.2009.2033269 +Su-Hwan Hwang,Sleep Period Time Estimation Based on Electrodermal Activity.,2017,21,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb21.html#HwangSYJBCCLJP17,https://doi.org/10.1109/JBHI.2015.2490480 +Yuan-Ting Zhang,A Note From the Incoming Editor-in-Chief.,2008,12,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb12.html#Zhang08,https://doi.org/10.1109/TITB.2007.914587 +Gary G. Yen,A Sorting System for Hierarchical Grading of Diabetic Fundus Images: A Preliminary Study.,2008,12,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb12.html#YenL08,https://doi.org/10.1109/TITB.2007.910453 +Mehmet R. Yuce,Guest Editorial RF and Communication Technologies for Wireless IMPLANTS.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#YuceBYWP15,https://doi.org/10.1109/JBHI.2015.2425094 +Bert Arnrich,What does your chair know about your stress level?,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#ArnrichSMTE10,https://doi.org/10.1109/TITB.2009.2035498 +Fred W. Prior,Facial Recognition From Volume-Rendered Magnetic Resonance Imaging Data.,2009,13,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb13.html#PriorBHNPVL09,https://doi.org/10.1109/TITB.2008.2003335 +Chathuri M. Senanayake,Computational intelligent gait-phase detection system to identify pathological gait.,2010,14,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb14.html#SenanayakeS10,https://doi.org/10.1109/TITB.2010.2058813 +Konstantia Zarkogianni,Comparison of Machine Learning Approaches Toward Assessing the Risk of Developing Cardiovascular Disease as a Long-Term Diabetes Complication.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#ZarkogianniAT18,https://doi.org/10.1109/JBHI.2017.2765639 +Jin-Oh Hahn,Subject-Specific Estimation of Central Aortic Blood Pressure Using an Individualized Transfer Function: A Preliminary Feasibility Study.,2012,16,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb16.html#HahnRJA12,https://doi.org/10.1109/TITB.2011.2177668 +Daniele Apiletti,Real-Time Analysis of Physiological Data to Support Medical Applications.,2009,13,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb13.html#ApilettiBBC09,https://doi.org/10.1109/TITB.2008.2010702 +Jianwu Xu,Max-AUC Feature Selection in Computer-Aided Detection of Polyps in CT Colonography.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#XuS14,https://doi.org/10.1109/JBHI.2013.2278023 +Sheng Ge,A Double-Partial Least-Squares Model for the Detection of Steady-State Visual Evoked Potentials.,2017,21,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb21.html#GeWLWLI17,https://doi.org/10.1109/JBHI.2016.2546311 +Gang Luo,Efficient Execution Methods of Pivoting for Bulk Extraction of Entity-Attribute-Value-Modeled Data.,2016,20,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb20.html#LuoF16,https://doi.org/10.1109/JBHI.2015.2392553 +Agnes Grünerbl,Smartphone-Based Recognition of States and State Changes in Bipolar Disorder Patients.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#GrunerblMOBOTMHL15,https://doi.org/10.1109/JBHI.2014.2343154 +Evy I. Karavatselou,OTE-TS - a new value-added telematics service for telemedicine applications.,2001,5,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb5.html#KaravatselouECDL01,https://doi.org/10.1109/4233.945292 +Zhen Yu,A Deep Convolutional Neural Network-Based Framework for Automatic Fetal Facial Standard Plane Recognition.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#YuTNQCLLW18,https://doi.org/10.1109/JBHI.2017.2705031 +Mohamed M. Elshrif,Representing Variability and Transmural Differences in a Model of Human Heart Failure.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#ElshrifSC15,https://doi.org/10.1109/JBHI.2015.2442833 +Fei Wang 0001,PSF: A Unified Patient Similarity Evaluation Framework Through Metric Learning With Weak Supervision.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#0001S15,https://doi.org/10.1109/JBHI.2015.2425365 +Juan Antonio Hernández Tamames,Web-PACS for Multicenter Clinical Trials.,2007,11,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb11.html#HernandezACMSM07,https://doi.org/10.1109/TITB.2006.879601 +Minas A. Karaolis,Assessment of the risk factors of coronary heart events based on data mining with decision trees.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#KaraolisMHP10,https://doi.org/10.1109/TITB.2009.2038906 +Chun Ruan,First-Pass Contrast-Enhanced Myocardial Perfusion MRI Using a Maximum Up-Slope Parametric Map.,2006,10,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb10.html#RuanYCAPBC06,https://doi.org/10.1109/TITB.2006.872058 +Heba A. Shaban,Toward a highly accurate ambulatory system for clinical gait analysis via UWB radios.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#ShabanEB10,https://doi.org/10.1109/TITB.2009.2037619 +Dimitrios I. Fotiadis,From the New Editor.,2017,21,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb21.html#Fotiadis17,https://doi.org/10.1109/JBHI.2017.2648278 +Youming Zhang,On Biometrics With Eye Movements.,2017,21,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb21.html#ZhangJ17,https://doi.org/10.1109/JBHI.2016.2551862 +Andrew Kusiak,The G-algorithm for extraction of robust decision rules children's postoperative intra-atrial arrhythmia case study.,2001,5,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb5.html#KusiakLM01,https://doi.org/10.1109/4233.945293 +Petia Georgieva,A Beamformer-Particle Filter Framework for Localization of Correlated EEG Sources.,2016,20,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb20.html#GeorgievaBSMJ16,https://doi.org/10.1109/JBHI.2015.2413752 +Srinivas Laxminarayan,Human Core Temperature Prediction for Heat-Injury Prevention.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#LaxminarayanBTR15,https://doi.org/10.1109/JBHI.2014.2332294 +Marco Altini,Estimating Oxygen Uptake During Nonsteady-State Activities and Transitions Using Wearable Sensors.,2016,20,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb20.html#AltiniPA16,https://doi.org/10.1109/JBHI.2015.2390493 +Francesco Beltrame,On the integration of healthcare emergency systems in Europe: the WETS project case study.,1998,2,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb2.html#BeltrameMO98,https://doi.org/10.1109/4233.720527 +óscar Martínez Mozos,Guest-Editorial: Computer-Based Intelligent Technologies for Improving the Quality of Life,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#MozosGT15,https://doi.org/10.1109/JBHI.2014.2350651 +Tsung-Heng Tsai,Low-Power Analog Integrated Circuits for Wireless ECG Acquisition Systems.,2012,16,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb16.html#TsaiHWL12,https://doi.org/10.1109/TITB.2012.2188412 +Tomas Skripcak,Toward Distributed Conduction of Large-Scale Studies in Radiation Therapy and Oncology: Open-Source System Integration Approach.,2016,20,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb20.html#SkripcakJSBLBK16,https://doi.org/10.1109/JBHI.2015.2450833 +D. Taylor,A dynamic clinical dental relational database.,2004,8,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb8.html#TaylorGB04,https://doi.org/10.1109/TITB.2004.832541 +M. del Milagro Fernández-Carrobles,Automatic Handling of Tissue Microarray Cores in High-Dimensional Microscopy Images.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#Fernandez-CarroblesBDSG14,https://doi.org/10.1109/JBHI.2013.2282816 +Ahsan H. Khandoker,QT Variability Index Changes With Severity of Cardiovascular Autonomic Neuropathy.,2012,16,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb16.html#KhandokerICPJ12,https://doi.org/10.1109/TITB.2012.2205010 +Krishan L. Khatri,Early Detection of Peak Demand Days of Chronic Respiratory Diseases Emergency Department Visits Using Artificial Neural Networks.,2018,22,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb22.html#KhatriT18,https://doi.org/10.1109/JBHI.2017.2698418 +Linqi Song,Using Contextual Learning to Improve Diagnostic Accuracy: Application in Breast Cancer Screening.,2016,20,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb20.html#SongHXS16,https://doi.org/10.1109/JBHI.2015.2414934 +Hyonyoung Han,Supervised Hierarchical Bayesian Model-Based Electomyographic Control and Analysis.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#HanJ14,https://doi.org/10.1109/JBHI.2013.2284476 +Sergio Albiol-Perez,The Role of Virtual Motor Rehabilitation: A Quantitative Analysis Between Acute and Chronic Patients With Acquired Brain Injury.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#Albiol-PerezGLRF14,https://doi.org/10.1109/JBHI.2013.2272101 +Amir M. Tahmasebi,A Framework for the Design of a Novel Haptic-Based Medical Training Simulator.,2008,12,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb12.html#TahmasebiHTA08,https://doi.org/10.1109/TITB.2008.926496 +David M. Afonso,An Ultrasonographic Risk Score For Detecting Symptomatic Carotid Atherosclerotic Plaques.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#AfonsoSPFS15,https://doi.org/10.1109/JBHI.2014.2359236 +Nicos Maglaveras,Guest editorial: special section on personal health systems.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#MaglaverasBT10,https://doi.org/10.1109/TITB.2010.2044110 +Andreas C. Neocleous,First Trimester Noninvasive Prenatal Diagnosis: A Computational Intelligence Approach.,2016,20,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb20.html#NeocleousNS16,https://doi.org/10.1109/JBHI.2015.2462744 +Kejia Wang,Differences Between Gait on Stairs and Flat Surfaces in Relation to Fall Risk and Future Falls.,2017,21,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb21.html#WangDBLKLR17,https://doi.org/10.1109/JBHI.2017.2677901 +Christina Orphanidou,Signal-Quality Indices for the Electrocardiogram and Photoplethysmogram: Derivation and Applications to Wireless Monitoring.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#OrphanidouBCCVT15,https://doi.org/10.1109/JBHI.2014.2338351 +Yanan Fu,Computer-Aided Bleeding Detection in WCE Video.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#FuZMM14,https://doi.org/10.1109/JBHI.2013.2257819 +Israr Bin M. Ibrahim,Simulation of Healing Threshold in Strain-Induced Inflammation Through a Discrete Informatics Model.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#IbrahimVP18,https://doi.org/10.1109/JBHI.2017.2669729 +Saisakul Chernbumroong,Genetic Algorithm-Based Classifiers Fusion for Multisensor Activity Recognition of Elderly People.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#ChernbumroongCY15,https://doi.org/10.1109/JBHI.2014.2313473 +Fuji Ren,Examining Accumulated Emotional Traits in Suicide Blogs With an Emotion Topic Model.,2016,20,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb20.html#RenKQ16,https://doi.org/10.1109/JBHI.2015.2459683 +Yunyoung Nam,Child Activity Recognition Based on Cooperative Fusion Model of a Triaxial Accelerometer and a Barometric Pressure Sensor.,2013,17,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb17.html#NamP13,https://doi.org/10.1109/JBHI.2012.2235075 +Sílvia Delgado Olabarriaga,Integrated Support for Medical Image Analysis Methods: From Development to Clinical Application.,2007,11,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb11.html#OlabarriagaSBB07,https://doi.org/10.1109/TITB.2006.874929 +J. Atkinson,Discovering Novel Causal Patterns From Biomedical Natural-Language Texts Using Bayesian Nets.,2008,12,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb12.html#AtkinsonR08,https://doi.org/10.1109/TITB.2008.920793 +Alireza Osareh,A Computational-Intelligence-Based Approach for Detection of Exudates in Diabetic Retinopathy Images.,2009,13,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb13.html#OsarehSM09,https://doi.org/10.1109/TITB.2008.2007493 +Zhaoyang Zhang 0001,ECG-Cryptography and Authentication in Body Area Networks.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#ZhangWVF12,https://doi.org/10.1109/TITB.2012.2206115 +Xi Long,Sleep and Wake Classification With Actigraphy and Respiratory Effort Using Dynamic Warping.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#LongFFHA14,https://doi.org/10.1109/JBHI.2013.2284610 +Hao-Hsiang Ku,Web2OHS: a Web2.0-based omnibearing homecare system.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#KuH10,https://doi.org/10.1109/TITB.2009.2037433 +Yongbin Qi,Ambulatory Measurement of Three-Dimensional Foot Displacement During Treadmill Walking Using Wearable Wireless Ultrasonic Sensor Network.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#QiSGL15,https://doi.org/10.1109/JBHI.2014.2316998 +Mariusz Krej,A Method of Detecting Heartbeat Locations in the Ballistocardiographic Signal From the Fiber-Optic Vital Signs Sensor.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#KrejDS15,https://doi.org/10.1109/JBHI.2015.2392796 +Yongxin Zhou 0001,Multiple Abdominal Organ Segmentation: An Atlas-Based Fuzzy Connectedness Approach.,2007,11,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb11.html#ZhouB07,https://doi.org/10.1109/TITB.2007.892695 +Marina E. Plissiti,Automated Detection of Cell Nuclei in Pap Smear Images Using Morphological Reconstruction and Clustering.,2011,15,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb15.html#PlissitiNC11,https://doi.org/10.1109/TITB.2010.2087030 +Didem Yamak,Non-Calcified Coronary Atherosclerotic Plaque Characterization by Dual Energy Computed Tomography.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#YamakPPBA14,https://doi.org/10.1109/JBHI.2013.2295534 +Ren-Guey Lee,A Mobile Care System With Alert Mechanism.,2007,11,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb11.html#LeeCHT07,https://doi.org/10.1109/TITB.2006.888701 +Frederico Valente,A RESTful Image Gateway for Multiple Medical Image Repositories.,2012,16,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb16.html#ValenteVCO12,https://doi.org/10.1109/TITB.2011.2176497 +Rui Zhang 0012,Combining Wavelet Analysis and Bayesian Networks for the Classification of Auditory Brainstem Response.,2006,10,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb10.html#ZhangMSMH06,https://doi.org/10.1109/TITB.2005.863865 +Ye Sun,An Innovative Nonintrusive Driver Assistance System for Vital Signal Monitoring.,2014,18,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb18.html#SunY14,https://doi.org/10.1109/JBHI.2014.2305403 +Omer T. Inan,Ballistocardiography and Seismocardiography: A Review of Recent Advances.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#InanMPETCZTFPR15,https://doi.org/10.1109/JBHI.2014.2361732 +Ilkka Korhonen,Guest Editorial Introduction to the Special Section on Pervasive Healthcare.,2004,8,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb8.html#KorhonenB04,https://doi.org/10.1109/TITB.2004.835337 +Daojing He,A Distributed Trust Evaluation Model and Its Application Scenarios for Medical Sensor Networks.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#HeCCBV12a,https://doi.org/10.1109/TITB.2012.2199996 +Ni-zhuan Wang,A Novel Brain Networks Enhancement Model (BNEM) for BOLD fMRI Data Analysis With Highly Spatial Reproducibility.,2016,20,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb20.html#WangZCYC16,https://doi.org/10.1109/JBHI.2015.2439685 +Andrew J. Sims,An architecture for the automatic acquisition of vital signs by clinical information systems.,2000,4,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb4.html#SimsPW00,https://doi.org/10.1109/4233.826862 +Seungku Kim,Link-State-Estimation-Based Transmission Power Control in Wireless Body Area Networks.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#KimE14,https://doi.org/10.1109/JBHI.2013.2282864 +Grigorios Loukides,Utility-Aware Anonymization of Diagnosis Codes.,2013,17,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb17.html#LoukidesG13,https://doi.org/10.1109/TITB.2012.2212281 +Christian Schmidt 0006,Modeling of an Optimized Electrostimulative Hip Revision System Under Consideration of Uncertainty in the Conductivity of Bone Tissue.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#SchmidtZR15,https://doi.org/10.1109/JBHI.2015.2423705 +Aditi Roy,State-Based Modeling and Object Extraction From Echocardiogram Video.,2008,12,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb12.html#RoySMM08,https://doi.org/10.1109/TITB.2007.910352 +Lian Duan,Adverse Drug Effect Detection.,2013,17,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb17.html#DuanKSL13,https://doi.org/10.1109/TITB.2012.2227272 +Radj A. Baldewsing,An Inverse Method for Imaging the Local Elasticity of Atherosclerotic Coronary Plaques.,2008,12,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb12.html#BaldewsingDMSSS08,https://doi.org/10.1109/TITB.2007.907980 +Nenggan Zheng,Enhancing battery efficiency for pervasive health-monitoring systems based on electronic textiles.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#ZhengWLY10,https://doi.org/10.1109/TITB.2009.2034972 +Hong-Jie Yu,Graphical Representation for DNA Sequences via Joint Diagonalization of Matrix Pencil.,2013,17,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb17.html#YuH13,https://doi.org/10.1109/TITB.2012.2227146 +T. Miyano,Prediction of care class by local additive reference to prototypical examples.,2005,9,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb9.html#MiyanoTSHT05,https://doi.org/10.1109/TITB.2005.855565 +Yu Wang 0036,A Shared Decision-Making System for Diabetes Medication Choice Utilizing Electronic Health Record Data.,2017,21,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb21.html#WangLTRL17,https://doi.org/10.1109/JBHI.2016.2614991 +Shyr-Kuen Chen,A Reliable Transmission Protocol for ZigBee-Based Wireless Patient Monitoring.,2012,16,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb16.html#ChenKCHCLTW12,https://doi.org/10.1109/TITB.2011.2171704 +Sonja A. Weber,Remote wound monitoring of chronic ulcers.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#WeberWJBCASBOM10,https://doi.org/10.1109/TITB.2010.2042605 +M. Takizawa,Telemedicine system using computed tomography van of high-speed telecommunication vehicle.,2001,5,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb5.html#TakizawaSHA01,https://doi.org/10.1109/4233.908348 +Charalampos Bratsas,Dynamic Composition of Semantic Pathways for Medical Computational Problem Solving by Means of Semantic Rules.,2011,15,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb15.html#BratsasBKKM11,https://doi.org/10.1109/TITB.2010.2091645 +Phuoc Nguyen,Deepr: A Convolutional Net for Medical Records.,2017,21,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb21.html#NguyenTWV17,https://doi.org/10.1109/JBHI.2016.2633963 +Ashnil Kumar,A Visual Analytics Approach Using the Exploration of Multidimensional Feature Spaces for Content-Based Medical Image Retrieval.,2015,19,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb19.html#KumarNKFK15,https://doi.org/10.1109/JBHI.2014.2361318 +B. C. Karl,The Design of an Internet-Based System to Maintain Home Monitoring Adherence by Lung Transplant Recipients.,2006,10,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb10.html#KarlFR06,https://doi.org/10.1109/TITB.2005.855531 +Chia-Ling Tsai,Automated Retinal Image Analysis Over the Internet.,2008,12,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb12.html#TsaiMLSYMTSR08,https://doi.org/10.1109/TITB.2007.908790 +Po-Hsiang Tsui,Microvascular Flow Estimation by Contrast-Assisted Ultrasound B-Scan and Statistical Parametric Images.,2009,13,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb13.html#TsuiYC09,https://doi.org/10.1109/TITB.2009.2013249 +Pawel Swiatek,Guest Editorial Service Science for e-Health.,2014,18,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb18.html#SwiatekMWP14,https://doi.org/10.1109/JBHI.2014.2337257 +Lorenzo Turicchia,Guest Editorial Sensing and Computing in Wearable Robots.,2011,15,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb15.html#TuricchiaL11,https://doi.org/10.1109/TITB.2011.2160245 +Xin Feng,An Interactive Framework for Personalized Computer-Assisted Neurorehabilitation.,2007,11,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb11.html#FengW07,https://doi.org/10.1109/TITB.2006.889700 +Nizamettin Aydin,Embolic Doppler Ultrasound Signal Detection Using Discrete Wavelet Transform.,2004,8,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb8.html#AydinMM04,https://doi.org/10.1109/TITB.2004.828882 +Tommaso Castroflorio,Use of Electromyographic and Electrocardiographic Signals to Detect Sleep Bruxism Episodes in a Natural Environment.,2013,17,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb17.html#CastroflorioMTSF13,https://doi.org/10.1109/JBHI.2013.2274532 +Samuel Alan Stewart,An Infobutton For Web 2.0 Clinical Discussions: The Knowledge Linkage Framework.,2012,16,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb16.html#StewartA12,https://doi.org/10.1109/TITB.2011.2177097 +Constantinos S. Pattichis,Guest Editorial Introduction to the Special Issue on Citizen Centered e-Health Systems in a Global Healthcare Environment: Selected Papers From ITAB 2009.,2011,15,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb15.html#PattichisSKFPB11,https://doi.org/10.1109/TITB.2010.2099153 +Arthur Mikhno,Toward Noninvasive Quantification of Brain Radioligand Binding by Combining Electronic Health Records and Dynamic PET Imaging Data.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#MikhnoZOMALP15,https://doi.org/10.1109/JBHI.2015.2416251 +Ruslan Dautov,Securing While Sampling in Wireless Body Area Networks With Application to Electrocardiography.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#DautovT16,https://doi.org/10.1109/JBHI.2014.2366125 +Nelia Lasierra,Designing an Architecture for Monitoring Patients at Home: Ontologies and Web Services for Clinical and Technical Management Integration.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#LasierraAG14,https://doi.org/10.1109/JBHI.2013.2283268 +Oscar Mora,A Service-Oriented Distributed Semantic Mediator: Integrating Multiscale Biomedical Information.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#MoraEB12,https://doi.org/10.1109/TITB.2012.2215045 +Jun-ichi Naganawa,Simulation-Based Scenario-Specific Channel Modeling for WBAN Cooperative Transmission Schemes.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#NaganawaWKAT15,https://doi.org/10.1109/JBHI.2014.2326424 +Rossana Castaldo,Fall Prediction in Hypertensive Patients via Short-Term HRV Analysis.,2017,21,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb21.html#CastaldoMILP17,https://doi.org/10.1109/JBHI.2016.2543960 +Jorng-Tzong Horng,Identifying the combination of genetic factors that determine susceptibility to cervical cancer.,2004,8,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb8.html#HorngHWHLHLC04,https://doi.org/10.1109/TITB.2004.824738 +Kenneth Bryan,Application of Simulated Annealing to the Biclustering of Gene Expression Data.,2006,10,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb10.html#BryanCB06,https://doi.org/10.1109/TITB.2006.872073 +Giorgio Biagetti,Homomorphic Deconvolution for MUAP Estimation From Surface EMG Signals.,2017,21,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb21.html#BiagettiCOT17,https://doi.org/10.1109/JBHI.2016.2530943 +Guillaume Auzias,On the Influence of Confounding Factors in Multisite Brain Morphometry Studies of Developmental Pathologies: Application to Autism Spectrum Disorder.,2016,20,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb20.html#AuziasTD16,https://doi.org/10.1109/JBHI.2015.2460012 +Haifeng Xie,A Model-Based Approach to the Analysis of Patterns of Length of Stay in Institutional Long-Term Care.,2006,10,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb10.html#XieCM06,https://doi.org/10.1109/TITB.2005.863820 +Tuncay Namli,An Interoperability Test Framework for HL7-Based Systems.,2009,13,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb13.html#NamliAD09,https://doi.org/10.1109/TITB.2009.2016086 +Jianjun Meng,Improved Semisupervised Adaptation for a Small Training Dataset in the Brain-Computer Interface.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#MengSZZ14,https://doi.org/10.1109/JBHI.2013.2285232 +Masoud Aghamohamadian-Sharbaf,A Novel Curvature-Based Algorithm for Automatic Grading of Retinal Blood Vessel Tortuosity.,2016,20,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb20.html#Aghamohamadian-Sharbaf16,https://doi.org/10.1109/JBHI.2015.2396198 +Damien Brulin,Posture Recognition Based on Fuzzy Logic for Home Monitoring of the Elderly.,2012,16,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb16.html#BrulinBC12,https://doi.org/10.1109/TITB.2012.2208757 +Dimitris Gritzalis,Technical guidelines for enhancing privacy and data protection in modern electronic medical environments.,2005,9,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb9.html#GritzalisLLD05,https://doi.org/10.1109/TITB.2005.847498 +Xiaoyan Li,Motor Unit Number Reductions in Paretic Muscles of Stroke Survivors.,2011,15,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb15.html#LiWSRZ11,https://doi.org/10.1109/TITB.2011.2140379 +Carlos Eduardo Pedreira,New Decision Support Tool for Treatment Intensity Choice in Childhood Acute Lymphoblastic Leukemia.,2009,13,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb13.html#PedreiraMLC09,https://doi.org/10.1109/TITB.2008.925965 +Ashirwad Joseph Chowriappa,3-D Vascular Skeleton Extraction and Decomposition.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#ChowriappaSSMKS14,https://doi.org/10.1109/JBHI.2013.2261998 +Zoran Bosnic,Mining Data From Hemodynamic Simulations for Generating Prediction and Explanation Models.,2012,16,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb16.html#BosnicVRDFK12,https://doi.org/10.1109/TITB.2011.2164546 +Qiuming Zhu,Algorithmic Fusion of Gene Expression Profiling for Diffuse Large B-Cell Lymphoma Outcome Prediction.,2004,8,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb8.html#ZhuCCC04,https://doi.org/10.1109/TITB.2004.828894 +Ramon Alfredo Moreno,A Contextual Medical Image Viewer.,2007,11,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb11.html#MorenoF07,https://doi.org/10.1109/TITB.2006.884373 +Faezeh Marzbanrad,Automated Estimation of Fetal Cardiac Timing Events From Doppler Ultrasound Signal Using Hybrid Models.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#MarzbanradKFSEIPK14,https://doi.org/10.1109/JBHI.2013.2286155 +Tanusree Roy,Performance Analysis of Network Model to Identify Healthy and Cancerous Colon Genes.,2016,20,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb20.html#RoyB16,https://doi.org/10.1109/JBHI.2015.2408366 +Joseph Oresko,A wearable smartphone-based platform for real-time cardiovascular disease detection via electrocardiogram processing.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#OreskoJCHSDC10,https://doi.org/10.1109/TITB.2010.2047865 +Hsien-Tsai Wu,Assessment of Vascular Health With Photoplethysmographic Waveforms From the Fingertip.,2017,21,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb21.html#WuLYOS17,https://doi.org/10.1109/JBHI.2016.2515938 +Wei-Bin Lee,A Cryptographic Key Management Solution for HIPAA Privacy/Security Regulations.,2008,12,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb12.html#LeeL08,https://doi.org/10.1109/TITB.2007.906101 +Shuenn-Yuh Lee,Low-Power Wireless ECG Acquisition and Classification System for Body Sensor Networks.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#LeeHHLCL15,https://doi.org/10.1109/JBHI.2014.2310354 +Wang Wei Lee,A Smartphone-Centric System for the Range of Motion Assessment in Stroke Patients.,2014,18,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb18.html#LeeYTZXLNCCH14,https://doi.org/10.1109/JBHI.2014.2301449 +Xingyu Li,Circular Mixture Modeling of Color Distribution for Blind Stain Separation in Pathology Images.,2017,21,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb21.html#LiP17,https://doi.org/10.1109/JBHI.2015.2503720 +Chien-Cheng Lee,Identifying multiple abdominal organs from CT image series using a multimodule contextual neural network and spatial fuzzy rules.,2003,7,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb7.html#LeeCT03,https://doi.org/10.1109/TITB.2003.813795 +Daniel Leightley,Automated Analysis and Quantification of Human Mobility Using a Depth Sensor.,2017,21,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb21.html#LeightleyMY17,https://doi.org/10.1109/JBHI.2016.2558540 +M. E. Plissiti,An Automated Method for Lumen and Media-Adventitia Border Detection in a Sequence of IVUS Frames.,2004,8,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb8.html#PlissitiFMB04,https://doi.org/10.1109/TITB.2004.828889 +Lixu Gu,Novel Multistage Three-Dimensional Medical Image Segmentation: Methodology and Validation.,2006,10,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb10.html#GuXP06,https://doi.org/10.1109/TITB.2006.875665 +Xiaoliang Wang,Enabling Smart Personalized Healthcare: A Hybrid Mobile-Cloud Approach for ECG Telemonitoring.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#WangGLJC14,https://doi.org/10.1109/JBHI.2013.2286157 +Gozde B. Unal,Shape-Driven Segmentation of the Arterial Wall in Intravascular Ultrasound Images.,2008,12,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb12.html#UnalBCSFT08,https://doi.org/10.1109/TITB.2008.920620 +Mohd Saberi Mohamad,A Modified Binary Particle Swarm Optimization for Selecting the Small Subset of Informative Genes From Gene Expression Data.,2011,15,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb15.html#MohamadODY11,https://doi.org/10.1109/TITB.2011.2167756 +George-Peter K. Economou,A new concept toward computer-aided medical diagnosis - a prototype implementation addressing pulmonary diseases.,2001,5,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb5.html#EconomouLKC01,https://doi.org/10.1109/4233.908395 +Young-Zoon Yoon,Cuff-Less Blood Pressure Estimation Using Pulse Waveform Analysis and Pulse Arrival Time.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#YoonKKPNKPH18,https://doi.org/10.1109/JBHI.2017.2714674 +Yifeng Jiang,Shape Registration by Optimally Coding Shapes.,2008,12,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb12.html#JiangXT08,https://doi.org/10.1109/TITB.2008.920798 +Christoph Brüser,Adaptive Beat-to-Beat Heart Rate Estimation in Ballistocardiograms.,2011,15,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb15.html#BruserSWL11,https://doi.org/10.1109/TITB.2011.2128337 +Budhaditya Saha,A Framework for Classifying Online Mental Health-Related Communities With an Interest in Depression.,2016,20,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb20.html#SahaNPV16,https://doi.org/10.1109/JBHI.2016.2543741 +Giovanni Calcagnini,Evaluation of Thermal and Nonthermal Effects of UHF RFID Exposure on Biological Drugs.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#CalcagniniCMMMPU12,https://doi.org/10.1109/TITB.2012.2204895 +Vassilis Koutkias,A personalized framework for medication treatment management in chronic care.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#KoutkiasCTMGM10,https://doi.org/10.1109/TITB.2009.2036367 +Craig J. Hartley,Guest EditorialCardiovascular Health Informatics: Risk Screening and Intervention.,2012,16,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb16.html#HartleyNPPPZ12,https://doi.org/10.1109/TITB.2012.2216057 +Haiying Wang,An integrative and interactive framework for improving biomedical pattern discovery and visualization.,2004,8,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb8.html#WangAB04,https://doi.org/10.1109/TITB.2004.824727 +Sébastien Roujol,Robust Real-Time-Constrained Estimation of Respiratory Motion for Interventional MRI on Mobile Organs.,2012,16,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb16.html#RoujolBSRQM12,https://doi.org/10.1109/TITB.2012.2190366 +Jonathan Synnott,WiiPD - Objective Home Assessment of Parkinson's Disease Using the Nintendo Wii Remote.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#SynnottCNM12,https://doi.org/10.1109/TITB.2012.2215878 +Paul Kim,Novel Fractal Feature-Based Multiclass Glaucoma Detection and Progression Prediction.,2013,17,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb17.html#KimIDTGHE13,https://doi.org/10.1109/TITB.2012.2218661 +K. Haberman,Effects of video digitization in pubic arch interference assessment for prostate brachytherapy.,2003,7,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb7.html#HabermanPK03,https://doi.org/10.1109/TITB.2003.808504 +Mingqi Hui,Improved Estimation of the Number of Independent Components for Functional Magnetic Resonance Data by a Whitening Filter.,2013,17,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb17.html#HuiLCJYL13,https://doi.org/10.1109/JBHI.2013.2253560 +Siddhartha Sikdar,A single mediaprocessor-based programmable ultrasound system.,2003,7,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb7.html#SikdarMGSMHK03,https://doi.org/10.1109/TITB.2003.808512 +Eirini Kostopoulou,"Erratum to ""An Effective Approach for Detection and Segmentation of Protein Spots on 2-D Gel Images"".",2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#KostopoulouZM14a,https://doi.org/10.1109/JBHI.2014.2306111 +Sasan Adibi,Biomedical Sensing Analyzer (BSA) for Mobile-Health (mHealth)-LTE.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#Adibi14,https://doi.org/10.1109/JBHI.2013.2262076 +Tiina Takalokastari,Quality of the Wireless Electrocardiogram Signal During Physical Exercise in Different Age Groups.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#TakalokastariAKJ14,https://doi.org/10.1109/JBHI.2013.2282934 +Xiuquan Fu,A Wireless Implantable Sensor Network System for In Vivo Monitoring of Physiological Signals.,2011,15,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb15.html#FuCYTTLCJ11,https://doi.org/10.1109/TITB.2011.2149536 +Chunlin Zhao,The Reorganization of Human Brain Networks Modulated by Driving Mental Fatigue.,2017,21,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb21.html#ZhaoZYGRL17,https://doi.org/10.1109/JBHI.2016.2544061 +Stefan Todorov Hadjitodorov,Laryngeal pathology detection by means of class-specific neural maps.,2000,4,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb4.html#HadjitodorovBT00,https://doi.org/10.1109/4233.826861 +Beau Pontre,An Open Benchmark Challenge for Motion Correction of Myocardial Perfusion MRI.,2017,21,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb21.html#PontreCDKLNTTWY17,https://doi.org/10.1109/JBHI.2016.2597145 +Carlos Hoyos-Barcelo,Efficient k-NN Implementation for Real-Time Detection of Cough Events in Smartphones.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#Hoyos-BarceloMS18,https://doi.org/10.1109/JBHI.2017.2768162 +Elina M. Mattila,Empowering citizens for well-being and chronic disease management with wellness diary.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#MattilaKSAKSPL10,https://doi.org/10.1109/TITB.2009.2037751 +Pheng-Ann Heng,Intelligent Inferencing and Haptic Simulation for Chinese Acupuncture Learning and Training.,2006,10,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb10.html#HengWYCXLL06,https://doi.org/10.1109/TITB.2005.855567 +Feng Lin 0004,Toward Unobtrusive Patient Handling Activity Recognition for Injury Reduction Among At-Risk Caregivers.,2017,21,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb21.html#LinWCX17,https://doi.org/10.1109/JBHI.2016.2551459 +Gill R. Tsouri,Patient-Specific 12-Lead ECG Reconstruction From Sparse Electrodes Using Independent Component Analysis.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#TsouriO14,https://doi.org/10.1109/JBHI.2013.2294561 +Anup Agarwal,Fast JPEG 2000 decoder and its use in medical imaging.,2003,7,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb7.html#AgarwalRK03,https://doi.org/10.1109/TITB.2003.813789 +Youjia Huang,Ultrasound-Based Sensing Models for Finger Motion Classification.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#HuangYLZHL18,https://doi.org/10.1109/JBHI.2017.2766249 +Qi Zhang,Multimodality Neurological Data Visualization With Multi-VOI-Based DTI Fiber Dynamic Integration.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#ZhangAR16,https://doi.org/10.1109/JBHI.2014.2367026 +Ljupco Hadzievski,A novel mobile transtelephonic system with synthesized 12-lead ECG.,2004,8,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb8.html#HadzievskiBVBPVO04,https://doi.org/10.1109/TITB.2004.837869 +Jongchan Lee,Investigation of Viscoelasticity in the Relationship Between Carotid Artery Blood Pressure and Distal Pulse Volume Waveforms.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#LeeGKCCSMH18,https://doi.org/10.1109/JBHI.2017.2672899 +Dinggang Shen,EditorialMachine Learning and Data Mining in Medical Imaging.,2015,19,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb19.html#ShenZYP15,https://doi.org/10.1109/JBHI.2015.2444011 +Lei Liu,Combination of Heterogeneous Features for Wrist Pulse Blood Flow Signal Diagnosis via Multiple Kernel Learning.,2012,16,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb16.html#LiuZZLZ12,https://doi.org/10.1109/TITB.2012.2195188 +Gudrun Zahlmann,Guest editorial.,1999,3,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb3.html#Zahlmann99,https://doi.org/10.1109/TITB.1999.767082 +Atif Ali Khan,Principal Component and Factor Analysis to Study Variations in the Aging Lumbar Spine.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#KhanISHS15,https://doi.org/10.1109/JBHI.2014.2328433 +Dimin Wang,Generalized Feature Extraction for Wrist Pulse Analysis: From 1-D Time Series to 2-D Matrix.,2017,21,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb21.html#WangZL17,https://doi.org/10.1109/JBHI.2016.2628238 +Dawei Fan,EHDC: An Energy Harvesting Modeling and Profiling Platform for Body Sensor Networks.,2018,22,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb22.html#FanRGL18,https://doi.org/10.1109/JBHI.2017.2733549 +Bobak Mortazavi,Prediction of Adverse Events in Patients Undergoing Major Cardiovascular Procedures.,2017,21,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb21.html#MortazaviDZCWKN17,https://doi.org/10.1109/JBHI.2017.2675340 +Hui-Lee Ooi,Classification of Implantable Rotary Blood Pump States With Class Noise.,2016,20,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb20.html#OoiSNLLLRL16,https://doi.org/10.1109/JBHI.2015.2412375 +Leyza Baldo Dorini,Semiautomatic White Blood Cell Segmentation Based on Multiscale Analysis.,2013,17,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb17.html#DoriniML13,https://doi.org/10.1109/TITB.2012.2207398 +André J. W. van der Kouwe,Neurointensive care unit system for continuous electrophysiological monitoring with remote web-based review.,2003,7,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb7.html#KouweB03,https://doi.org/10.1109/TITB.2003.811873 +Young-Rae Cho,Predicting protein function by frequent functional association pattern mining in protein interaction networks.,2010,14,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb14.html#ChoZ10,https://doi.org/10.1109/TITB.2009.2028234 +Guanyu Yang,Characterization of 3-D coronary tree motion from MSCT angiography.,2010,14,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb14.html#YangZBGLT10,https://doi.org/10.1109/TITB.2009.2032333 +Sudip Misra,Priority-Based Time-Slot Allocation in Wireless Body Area Networks During Medical Emergency Situations: An Evolutionary Game-Theoretic Perspective.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#MisraS15,https://doi.org/10.1109/JBHI.2014.2313374 +Sean M. O'Malley,Image-Based Gating of Intravascular Ultrasound Pullback Sequences.,2008,12,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb12.html#OMalleyGCNK08,https://doi.org/10.1109/TITB.2008.921014 +Hamdi Dibeklioglu,Dynamic Multimodal Measurement of Depression Severity Using Deep Autoencoding.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#DibekliogluHC18,https://doi.org/10.1109/JBHI.2017.2676878 +Neha Mathur,Skin Temperature Prediction in Lower Limb Prostheses.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#MathurGB16,https://doi.org/10.1109/JBHI.2014.2368774 +Jinye Peng,Leveraging Social Supports for Improving Personal Expertise on ACL Reconstruction and Rehabilitation.,2013,17,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb17.html#PengZF13,https://doi.org/10.1109/TITB.2012.2226737 +Feng-Mao Lin,Database to Dynamically Aid Probe Design for Virus Identification.,2006,10,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb10.html#LinHCTCWTH06,https://doi.org/10.1109/TITB.2006.874202 +Wei Zhao,The Effects of Cell Asynchrony on Gene Expression Levels: Analysis and Application to Plasmodium Falciparum.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#ZhaoDC15,https://doi.org/10.1109/JBHI.2015.2434499 +Jie Tian 0001,A Novel Software Platform for Medical Image Processing and Analyzing.,2008,12,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb12.html#TianXDCZ08,https://doi.org/10.1109/TITB.2008.926395 +Sofia Savvaki,Matrix and Tensor Completion on a Human Activity Recognition Framework.,2017,21,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb21.html#SavvakiTPT17,https://doi.org/10.1109/JBHI.2017.2716112 +Asanga Wickramasinghe,Sequence Learning with Passive RFID Sensors for Real-Time Bed-Egress Recognition in Older People.,2017,21,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb21.html#WickramasingheR17,https://doi.org/10.1109/JBHI.2016.2576285 +Catarina Barata,Improving Dermoscopy Image Classification Using Color Constancy.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#BarataCM15,https://doi.org/10.1109/JBHI.2014.2336473 +Heng Huang,A Novel Surface Registration Algorithm With Biomedical Modeling Applications.,2007,11,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb11.html#HuangSZMSP07,https://doi.org/10.1109/TITB.2007.897577 +Amin Katouzian,A State-of-the-Art Review on Segmentation Algorithms in Intravascular Ultrasound (IVUS) Images.,2012,16,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb16.html#KatouzianACSNL12,https://doi.org/10.1109/TITB.2012.2189408 +Jemal H. Abawajy,Enhancing Predictive Accuracy of Cardiac Autonomic Neuropathy Using Blood Biochemistry Features and Iterative Multitier Ensembles.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#AbawajyKCJ16,https://doi.org/10.1109/JBHI.2014.2363177 +Veronika Cheplygina,Transfer Learning for Multicenter Classification of Chronic Obstructive Pulmonary Disease.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#CheplyginaPPLSB18,https://doi.org/10.1109/JBHI.2017.2769800 +Jesus Luna,Data-Centric Privacy Protocol for Intensive Care Grids.,2010,14,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb14.html#LunaDMK10,https://doi.org/10.1109/TITB.2010.2073478 +Kyungtae Kang,Design and QoS of a Wireless System for Real-Time Remote Electrocardiography.,2013,17,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb17.html#KangRHS13,https://doi.org/10.1109/JBHI.2013.2237782 +Shuxia Zhu,Choroid Neovascularization Growth Prediction With Treatment Based on Reaction-Diffusion Model in 3-D OCT Images.,2017,21,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb21.html#ZhuSXZCC17,https://doi.org/10.1109/JBHI.2017.2702603 +David A. Clifton,A Large-Scale Clinical Validation of an Integrated Monitoring System in the Emergency Department.,2013,17,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb17.html#CliftonWCWWPT13,https://doi.org/10.1109/JBHI.2012.2234130 +Barry R. Greene,Fall Risk Assessment Through Automatic Combination of Clinical Fall Risk Factors and Body-Worn Sensor Data.,2017,21,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb21.html#GreeneRC17,https://doi.org/10.1109/JBHI.2016.2539098 +Jesús D. Trigo,Interoperability in Digital Electrocardiography: Harmonization of ISO/IEEE x73-PHD and SCP-ECG.,2010,14,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb14.html#TrigoCAMSCEMG10,https://doi.org/10.1109/TITB.2010.2064330 +Katrin Gerlach,The implementation of a Quality-Net as a part of the European project DIABCARE Q-Net.,1998,2,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb2.html#GerlachKKWHP98,https://doi.org/10.1109/4233.720528 +Juha Pärkkä,Activity Classification Using Realistic Data From Wearable Sensors.,2006,10,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb10.html#ParkkaEKMPK06,https://doi.org/10.1109/TITB.2005.856863 +Roderick Y. Son,Context-Sensitive Correlation of Implicitly Related Data: An Episode Creation Methodology.,2008,12,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb12.html#SonTKC08,https://doi.org/10.1109/TITB.2008.917901 +Simi Susan Thomas,BioWatch: A Noninvasive Wrist-Based Blood Pressure Monitor That Incorporates Training Techniques for Posture and Subject Variability.,2016,20,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb20.html#ThomasNZSSJ16,https://doi.org/10.1109/JBHI.2015.2458779 +Andrea Fanelli,Quantitative Assessment of Fetal Well-Being Through CTG Recordings: A New Parameter Based on Phase-Rectified Signal Average.,2013,17,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb17.html#FanelliMCS13,https://doi.org/10.1109/JBHI.2013.2268423 +Hong Ji Lee,Estimation of Body Postures on Bed Using Unconstrained ECG Measurements.,2013,17,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb17.html#LeeHLLP13,https://doi.org/10.1109/JBHI.2013.2252911 +Mustafa Canim,Secure Management of Biomedical Data With Cryptographic Hardware.,2012,16,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb16.html#CanimKM12,https://doi.org/10.1109/TITB.2011.2171701 +Piotr Augustyniak,Autoadaptivity and optimization in distributed ECG interpretation.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#Augustyniak10,https://doi.org/10.1109/TITB.2009.2038151 +Harald Kirchsteiger,LMI-Based Approaches for the Calibration of Continuous Glucose Measurement Sensors.,2015,19,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb19.html#KirchsteigerZRR15,https://doi.org/10.1109/JBHI.2014.2341703 +Yiannis Davilis,On the use of ultrasonic waves as a communications medium in biosensor networks.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#DavilisKI10,https://doi.org/10.1109/TITB.2009.2039755 +Zhen-Peng Bian,Fall Detection Based on Body Part Tracking Using a Depth Camera.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#BianHCM15,https://doi.org/10.1109/JBHI.2014.2319372 +P. Viswanathan,A Joint FED Watermarking System Using Spatial Fusion for Verifying the Security Issues of Teleradiology.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#ViswanathanK14,https://doi.org/10.1109/JBHI.2013.2281322 +Andrea F. Abate,A pervasive visual-haptic framework for virtual delivery training.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#AbateALRV10,https://doi.org/10.1109/TITB.2010.2043678 +Jasjit S. Suri,A review on MR vascular image processing: skeleton versus nonskeleton approaches: part II.,2002,6,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb6.html#SuriLRL02b,https://doi.org/10.1109/TITB.2002.804136 +Simon Rogers,Investigating the Disagreement Between Clinicians' Ratings of Patients in ICUs.,2013,17,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb17.html#RogersSK13,https://doi.org/10.1109/JBHI.2013.2252182 +Peyman Gholami,Segmentation and Measurement of Chronic Wounds for Bioprinting.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#GholamiAAHK18,https://doi.org/10.1109/JBHI.2017.2743526 +Ganesh R. Naik,Dependence Independence Measure for Posterior and Anterior EMG Sensors Used in Simple and Complex Finger Flexion Movements: Evaluation Using SDICA.,2015,19,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb19.html#NaikBN15,https://doi.org/10.1109/JBHI.2014.2340397 +Nikita Orlov,Automatic classification of lymphoma images with transform-based global features.,2010,14,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb14.html#OrlovCEMSJG10,https://doi.org/10.1109/TITB.2010.2050695 +Chin-Feng Lai,A Collaborative Computing Framework of Cloud Network and WBSN Applied to Fall Detection and 3-D Motion Reconstruction.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#LaiCPYC14,https://doi.org/10.1109/JBHI.2014.2298467 +Chaojie Chen,Automatic Motion Analysis System for Pyloric Flow in Ultrasonic Videos.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#ChenWYZSC14,https://doi.org/10.1109/JBHI.2013.2272090 +Jianguo Zhang,Real-time teleconsultation with high-resolution and large-volume medical images for collaborative healthcare.,2000,4,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb4.html#ZhangSHZLS00,https://doi.org/10.1109/4233.845212 +Sujan Perera,Semantics Driven Approach for Knowledge Acquisition From EMRs.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#PereraHTSN14,https://doi.org/10.1109/JBHI.2013.2282125 +Feng Yang,A Comparative Study of Different Level Interpolations for Improving Spatial Resolution in Diffusion Tensor Imaging.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#YangZLRLC14,https://doi.org/10.1109/JBHI.2014.2306937 +Subrahmanyam Murala,Local Mesh Patterns Versus Local Binary Patterns: Biomedical Image Indexing and Retrieval.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#SubrahmanyamW14,https://doi.org/10.1109/JBHI.2013.2288522 +JiaLi Ma,A Novel ECG Data Compression Method Using Adaptive Fourier Decomposition With Security Guarantee in e-Health Applications.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#MaZD15,https://doi.org/10.1109/JBHI.2014.2357841 +ümit V. çatalyürek,The virtual microscope.,2003,7,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb7.html#CatalyurekBCKSS03,https://doi.org/10.1109/TITB.2004.823952 +Wesley W. Chu,A medical digital library to support scenario and user-tailored information retrieval.,2000,4,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb4.html#ChuJK00,https://doi.org/10.1109/4233.845202 +Murat Cenk Cavusoglu,GiPSi: A Framework for Open Source/Open Architecture Software Development for Organ-Level Surgical Simulation.,2006,10,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb10.html#CavusogluGT06,https://doi.org/10.1109/TITB.2006.864479 +Jonas Chapuis,A New System for Computer-Aided Preoperative Planning and Intraoperative Navigation During Corrective Jaw Surgery.,2007,11,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb11.html#ChapuisSPHSLC07,https://doi.org/10.1109/TITB.2006.884372 +Shweta Jain 0004,Riemann Liouvelle Fractional Integral Based Empirical Mode Decomposition for ECG Denoising.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#JainBK18,https://doi.org/10.1109/JBHI.2017.2753321 +H. Ranganathan,Simple Method for Estimation of Hemoglobin in Human Blood Using Color Analysis.,2006,10,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb10.html#RanganathanG06,https://doi.org/10.1109/TITB.2006.874195 +Chih-Yang Lin,Automatic Method to Compare the Lanes in Gel Electrophoresis Images.,2007,11,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb11.html#LinCY07,https://doi.org/10.1109/TITB.2006.875661 +Nelia Lasierra,An SNMP-Based Solution to Enable Remote ISO/IEEE 11073 Technical Management.,2012,16,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb16.html#LasierraAG12,https://doi.org/10.1109/TITB.2012.2193409 +Pranav S. Deshpande,Effective Glottal Instant Detection and Electroglottographic Parameter Extraction for Automated Voice Pathology Assessment.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#DeshpandeM18,https://doi.org/10.1109/JBHI.2017.2654683 +Shan Shen,Detection of Infarct Lesions From Single MRI Modality Using Inconsistency Between Voxel Intensity and Spatial Location - A 3-D Automatic Approach.,2008,12,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb12.html#ShenSS08,https://doi.org/10.1109/TITB.2007.911310 +Costas P. Exarchos,Multiparametric Decision Support System for the Prediction of Oral Cancer Reoccurrence.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#ExarchosGF12,https://doi.org/10.1109/TITB.2011.2165076 +Po-Hsiang Tsui,Noise-Assisted Correlation Algorithm for Suppressing Noise-Induced Artifacts in Ultrasonic Nakagami Images.,2012,16,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb16.html#TsuiYH12,https://doi.org/10.1109/TITB.2011.2177851 +Yi Guo,Automatic Classification of Intracardiac Tumor and Thrombi in Echocardiography Based on Sparse Representation.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#GuoWKS15,https://doi.org/10.1109/JBHI.2014.2313132 +Evdokimos I. Konstantinidis,Moving Real Exergaming Engines on the Web: The webFitForAll Case Study in an Active and Healthy Ageing Living Lab Environment.,2017,21,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb21.html#KonstantinidisB17,https://doi.org/10.1109/JBHI.2016.2559787 +Bo Zhuang,Real-Time 3-D Ultrasound Scan Conversion Using a Multicore Processor.,2009,13,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb13.html#ZhuangSSMK09,https://doi.org/10.1109/TITB.2008.2010856 +Ka Ram Choi,A Computational Method to Determine Glucose Infusion Rates for Isoglycemic Intravenous Glucose Infusion Study.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#ChoiLOKKCK16,https://doi.org/10.1109/JBHI.2015.2465156 +Sanja Brdar,Integrative Clustering by Nonnegative Matrix Factorization Can Reveal Coherent Functional Groups From Gene Profile Data.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#BrdarCZ15,https://doi.org/10.1109/JBHI.2014.2316508 +Ilias Maglogiannis,Overview of Advanced Computer Vision Systems for Skin Lesions Characterization.,2009,13,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb13.html#MaglogiannisD09,https://doi.org/10.1109/TITB.2009.2017529 +Swamy Laxminarayan,What Can You Publish In T-ITB?,1997,1,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb1.html#Laxminarayan97,https://doi.org/10.1109/TITB.1997.594020 +Annamaria Zaia,MR Imaging and Osteoporosis: Fractal Lacunarity Analysis of Trabecular Bone.,2006,10,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb10.html#ZaiaEMRM06,https://doi.org/10.1109/TITB.2006.872078 +Francesco Beltrame,Neuroinformatics as a megascience issue.,1999,3,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb3.html#BeltrameK99,https://doi.org/10.1109/4233.788587 +Vassilis Koutkias,A multiagent system enhancing home-care health services for chronic disease management.,2005,9,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb9.html#KoutkiasCM05,https://doi.org/10.1109/TITB.2005.847511 +Winston H. Wu,Incremental Diagnosis Method for Intelligent Wearable Sensor Systems.,2007,11,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb11.html#WuBBLK07,https://doi.org/10.1109/TITB.2007.897579 +Efthyvoulos C. Kyriacou,A review of noninvasive ultrasound image processing methods in the analysis of carotid plaque morphology for the assessment of stroke risk.,2010,14,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb14.html#KyriacouPPLCKN10,https://doi.org/10.1109/TITB.2010.2047649 +Euijoon Ahn,Saliency-Based Lesion Segmentation Via Background Detection in Dermoscopic Images.,2017,21,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb21.html#AhnKBKLFF17,https://doi.org/10.1109/JBHI.2017.2653179 +B. S. Spencer,Incorporating the Sense of Smell Into Patient and Haptic Surgical Simulators.,2006,10,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb10.html#Spencer06,https://doi.org/10.1109/TITB.2005.856851 +Anand P. Santhanam,Modeling Real-Time 3-D Lung Deformations for Medical Visualization.,2008,12,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb12.html#SanthanamIDKR08,https://doi.org/10.1109/TITB.2007.899489 +Anne E. James,A telematic system for oncology based on electronic health and patient records.,2001,5,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb5.html#JamesWG01,https://doi.org/10.1109/4233.908366 +Nabil Alshurafa,Designing a Robust Activity Recognition Framework for Health and Exergaming Using Wearable Sensors.,2014,18,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb18.html#AlshurafaXLHMRS14,https://doi.org/10.1109/JBHI.2013.2287504 +Stefano Schivo,Modeling Biological Pathway Dynamics With Timed Automata.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#SchivoSWCVKLPP14,https://doi.org/10.1109/JBHI.2013.2292880 +Yibing Ma,Breast Histopathological Image Retrieval Based on Latent Dirichlet Allocation.,2017,21,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb21.html#MaJZXZSZ17,https://doi.org/10.1109/JBHI.2016.2611615 +John W. Kelly,An Adaptive Filter for the Removal of Drifting Sinusoidal Noise Without a Reference.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#KellySSW16,https://doi.org/10.1109/JBHI.2014.2375318 +Yanling Tong,Extending ventilation duration estimations approach from adult to neonatal intensive care patients using artificial neural networks.,2002,6,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb6.html#TongFW02,https://doi.org/10.1109/TITB.2002.1006305 +Arnaud Rosier,An Ontology-Based Annotation of Cardiac Implantable Electronic Devices to Detect Therapy Changes in a National Registry.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#RosierMCB15,https://doi.org/10.1109/JBHI.2014.2338741 +José Bravo,Editorial to the Special Section on Ambient Intelligence and Assistive Technologies for Cognitive Impaired People.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#BravoCCPRS14,https://doi.org/10.1109/JBHI.2013.2292811 +Ahmad Shalbaf,Monitoring the Depth of Anesthesia Using a New Adaptive Neurofuzzy System.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#ShalbafSSS18,https://doi.org/10.1109/JBHI.2017.2709841 +Po-Chou Liang,Smartphone-Based Real-Time Indoor Location Tracking With 1-m Precision.,2016,20,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb20.html#LiangK16,https://doi.org/10.1109/JBHI.2015.2500439 +Adrian Munteanu 0001,Wavelet image compression - the quadtree coding approach.,1999,3,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb3.html#MunteanuCAC99,https://doi.org/10.1109/4233.788579 +Hong Peng,Removal of Ocular Artifacts in EEG - An Improved Approach Combining DWT and ANC for Portable Applications.,2013,17,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb17.html#PengHSRZQG13,https://doi.org/10.1109/JBHI.2013.2253614 +Sandeep Gutta,Joint Feature Extraction and Classifier Design for ECG-Based Biometric Recognition.,2016,20,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb20.html#GuttaC16,https://doi.org/10.1109/JBHI.2015.2402199 +Yongmin Zhong,A Cellular Neural Network Methodology for Deformable Object Simulation.,2006,10,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb10.html#ZhongSAS06,https://doi.org/10.1109/TITB.2006.875679 +Carmen Alina Lupascu,FABC: retinal vessel segmentation using adaboost.,2010,14,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb14.html#LupascuTT10,https://doi.org/10.1109/TITB.2010.2052282 +Hao Wang,Cascaded Network Body Channel Model for Intrabody Communication.,2016,20,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb20.html#WangTCS16,https://doi.org/10.1109/JBHI.2015.2448111 +Timo Tossavainen,Virtual Reality in Posturography.,2006,10,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb10.html#TossavainenTPFJS06,https://doi.org/10.1109/TITB.2005.859874 +Joachim Behar,SleepAp: An Automated Obstructive Sleep Apnoea Screening Application for Smartphones.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#BeharRSDHPSC15,https://doi.org/10.1109/JBHI.2014.2307913 +Chia-Ling Tsai,Accurate Joint-Alignment of Indocyanine Green and Fluorescein Angiograph Sequences for Treatment of Subretinal Lesions.,2017,21,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb21.html#TsaiHWCL17,https://doi.org/10.1109/JBHI.2016.2538265 +Shen-Chuan Tai,An Automatic Mass Detection System in Mammograms Based on Complex Texture Features.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#TaiCT14,https://doi.org/10.1109/JBHI.2013.2279097 +Julián Betancur,Synchronization and Registration of Cine Magnetic Resonance and Dynamic Computed Tomography Images of the Heart.,2016,20,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb20.html#BetancurSLLHG16,https://doi.org/10.1109/JBHI.2015.2453639 +Elena Villalba,Wearable and Mobile System to Manage Remotely Heart Failure.,2009,13,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb13.html#VillalbaSOPAA09,https://doi.org/10.1109/TITB.2009.2026572 +Yuechun Chu,A mobile teletrauma system using 3G networks.,2004,8,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb8.html#ChuG04,https://doi.org/10.1109/TITB.2004.837893 +M. Howard Williams,Developing a regional healthcare information network.,2001,5,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb5.html#WilliamsVVM01,https://doi.org/10.1109/4233.924809 +J. Liang,Guest Editorial IEEE BHI 2017.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#LiangZP18,https://doi.org/10.1109/JBHI.2018.2807518 +Lara Traver,Bandwidth Resource Management for Neural Signal Telemetry.,2009,13,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb13.html#TraverTC09,https://doi.org/10.1109/TITB.2009.2028077 +Thidarat Tinnakornsrisuphap,An Interoperable System for Automated Diagnosis of Cardiac Abnormalities from Electrocardiogram Data.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#Tinnakornsrisuphap15,https://doi.org/10.1109/JBHI.2014.2321515 +Uwe Engelmann,A three-generation model for teleradiology.,1998,2,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb2.html#EngelmannSBWSMM98,https://doi.org/10.1109/4233.678530 +Sergio Paraiso-Medina,Semantic Normalization and Query Abstraction Based on SNOMED-CT and HL7: Supporting Multicentric Clinical Trials.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#Paraiso-MedinaP15,https://doi.org/10.1109/JBHI.2014.2357025 +Ilya Mikhelson,Noncontact Millimeter-Wave Real-Time Detection and Tracking of Heart Rate on an Ambulatory Subject.,2012,16,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb16.html#MikhelsonLBEKS12,https://doi.org/10.1109/TITB.2012.2204760 +Dongping Du,In-Silico Modeling of Glycosylation Modulation Dynamics in hERG Ion Channels and Cardiac Electrical Signals.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#DuYNB14,https://doi.org/10.1109/JBHI.2013.2260864 +Zhan Li,Inverse Estimation of Multiple Muscle Activations From Joint Moment With Muscle Synergy Extraction.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#LiGH15,https://doi.org/10.1109/JBHI.2014.2342274 +Anastasia Motrenko,Extracting Fundamental Periods to Segment Biomedical Signals.,2016,20,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb20.html#MotrenkoS16,https://doi.org/10.1109/JBHI.2015.2466440 +Aggeliki Giakoumaki,Multiple Image Watermarking Applied to Health Information Management.,2006,10,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb10.html#GiakoumakiPK06,https://doi.org/10.1109/TITB.2006.875655 +A. Nasser Esgiar,Microscopic image analysis for quantitative measurement and feature identification of normal and cancerous colonic mucosa.,1998,2,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb2.html#EsgiarGSBM98,https://doi.org/10.1109/4233.735785 +Manolis Tsiknakis,A Semantic Grid Infrastructure Enabling Integrated Access and Analysis of Multilevel Biomedical Data in Support of Postgenomic Clinical Trials on Cancer.,2008,12,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb12.html#TsiknakisBNPSPDK08,https://doi.org/10.1109/TITB.2007.903519 +Stamos Katsigiannis,DREAMER: A Database for Emotion Recognition Through EEG and ECG Signals From Wireless Low-cost Off-the-Shelf Devices.,2018,22,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb22.html#KatsigiannisR18,https://doi.org/10.1109/JBHI.2017.2688239 +Jinn-Moon Yang,A family competition evolutionary algorithm for automated docking of flexible ligands to proteins.,2000,4,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb4.html#YangK00,https://doi.org/10.1109/4233.870033 +Tim W. Nattkemper,A neural classifier enabling high-throughput topological analysis of lymphocytes in tissue sections.,2001,5,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb5.html#NattkemperRS01,https://doi.org/10.1109/4233.924804 +Marek Laskowski,Agent-Based Modeling of the Spread of Influenza-Like Illness in an Emergency Department: A Simulation Study.,2011,15,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb15.html#LaskowskiDWMFM11,https://doi.org/10.1109/TITB.2011.2163414 +Zhen Ma,A Novel Approach to Segment Skin Lesions in Dermoscopic Images Based on a Deformable Model.,2016,20,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb20.html#MaT16,https://doi.org/10.1109/JBHI.2015.2390032 +Arie Hasman,Combining a scientific approach and prototyping in the design of EHCR systems.,1998,2,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb2.html#HasmanTV98,https://doi.org/10.1109/4233.735776 +David Morgan Kwartowitz,Determining the Presence of Bias Error Using Statistical Methods.,2009,13,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb13.html#KwartowitzGS09,https://doi.org/10.1109/TITB.2008.2003326 +Marco Altini,Personalization of Energy Expenditure Estimation in Free Living Using Topic Models.,2015,19,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb19.html#AltiniCPA15,https://doi.org/10.1109/JBHI.2015.2418256 +Kumaradevan Punithakumar,Detection of left ventricular motion abnormality via information measures and Bayesian filtering.,2010,14,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb14.html#PunithakumarARICL10,https://doi.org/10.1109/TITB.2010.2050778 +Mehrnaz Abdollahian,A MDP Model for Breast and Ovarian Cancer Intervention Strategies for BRCA1/2 Mutation Carriers.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#AbdollahianD15,https://doi.org/10.1109/JBHI.2014.2319246 +Guo Luo,LV shape and motion: B-spline-based deformable model and sequential motion decomposition.,2005,9,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb9.html#LuoH05,https://doi.org/10.1109/TITB.2005.847508 +Megumi Nakao,Physics-based interactive volume manipulation for sharing surgical process.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#NakaoM10,https://doi.org/10.1109/TITB.2010.2043460 +Adnan Mujahid Khan,A Global Covariance Descriptor for Nuclear Atypia Scoring in Breast Histopathology Images.,2015,19,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb19.html#KhanSR15,https://doi.org/10.1109/JBHI.2015.2447008 +Lama Seoud,Noninvasive Clinical Assessment of Trunk Deformities Associated With Scoliosis.,2013,17,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb17.html#SeoudDLC13,https://doi.org/10.1109/TITB.2012.2222425 +Alexandros Karagiannis,Noise-Assisted Data Processing With Empirical Mode Decomposition in Biomedical Signals.,2011,15,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb15.html#KaragiannisC11,https://doi.org/10.1109/TITB.2010.2091648 +Zinonas C. Antoniou,Real-Time Adaptation to Time-Varying Constraints for Medical Video Communications.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#AntoniouPPCPP18,https://doi.org/10.1109/JBHI.2017.2726180 +Zeynettin Akkus,Carotid Intraplaque Neovascularization Quantification Software (CINQS).,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#AkkusBOSJSB15,https://doi.org/10.1109/JBHI.2014.2306454 +Fang Gong,NeuroGlasses: A Neural Sensing Healthcare System for 3-D Vision Technology.,2012,16,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb16.html#GongXLHS12,https://doi.org/10.1109/TITB.2011.2176539 +Petar Horki,Evaluation of Healthy EEG Responses for Spelling Through Listener-Assisted Scanning.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#HorkiKPM15,https://doi.org/10.1109/JBHI.2014.2328494 +Ting Zhu,Modeling the Length of Stay of Respiratory Patients in Emergency Department Using Coxian Phase-Type Distributions With Covariates.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#Zhu0ZS18,https://doi.org/10.1109/JBHI.2017.2701779 +Davide Curone,Heart rate and accelerometer data fusion for activity assessment of rescuers during emergency interventions.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#CuroneTSACRM10,https://doi.org/10.1109/TITB.2010.2047727 +Jing Li,Automatic Fetal Head Circumference Measurement in Ultrasound Using Random Forest and Fast Ellipse Fitting.,2018,22,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb22.html#LiWLCQWLN18,https://doi.org/10.1109/JBHI.2017.2703890 +Jung-Eun Lim,A Context-Aware Fitness Guide System for Exercise Optimization in U-Health.,2009,13,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb13.html#LimCNB09,https://doi.org/10.1109/TITB.2009.2013941 +Gabriele Guidi,A Machine Learning System to Improve Heart Failure Patient Assistance.,2014,18,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb18.html#GuidiPMI14,https://doi.org/10.1109/JBHI.2014.2337752 +Hui Yan,Aligning Event Logs to Task-Time Matrix Clinical Pathways in BPMN for Variance Analysis.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#YanGKLJCKD18,https://doi.org/10.1109/JBHI.2017.2753827 +Jyh-Jong Wei,ECG data compression using truncated singular value decomposition.,2001,5,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb5.html#WeiCCJ01,https://doi.org/10.1109/4233.966104 +Dongping Du,In-Silico Modeling of the Functional Role of Reduced Sialylation in Sodium and Potassium Channel Gating of Mouse Ventricular Myocytes.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#DuYEB18,https://doi.org/10.1109/JBHI.2017.2664579 +Emmanouil Athanasiadis,Segmentation of Complementary DNA Microarray Images by Wavelet-Based Markov Random Field Model.,2009,13,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb13.html#AthanasiadisCGGKN09,https://doi.org/10.1109/TITB.2009.2032332 +Ahmed Elnakib,Dyslexia Diagnostics by 3-D Shape Analysis of the Corpus Callosum.,2012,16,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb16.html#ElnakibCGSE12,https://doi.org/10.1109/TITB.2012.2187302 +Paolo Barsocchi,Position Recognition to Support Bedsores Prevention.,2013,17,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb17.html#Barsocchi13,https://doi.org/10.1109/TITB.2012.2220374 +Ling Zhang,DeepPap: Deep Convolutional Networks for Cervical Cell Classification.,2017,21,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb21.html#ZhangLNSLY17,https://doi.org/10.1109/JBHI.2017.2705583 +I. Lakovidis,Guest Editorial Special Issue on Emerging Health Telematics Applications in Europe.,1998,2,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb2.html#LakovidisPS98,https://doi.org/10.1109/TITB.1998.735775 +Steffen Schumann,Compensation of Sound Speed Deviations in 3-D B-Mode Ultrasound for Intraoperative Determination of the Anterior Pelvic Plane.,2012,16,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb16.html#SchumannNZ12,https://doi.org/10.1109/TITB.2011.2170844 +Frederic Commandeur,MRI to CT Prostate Registration for Improved Targeting in Cancer External Beam Radiotherapy.,2017,21,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb21.html#CommandeurSMNAR17,https://doi.org/10.1109/JBHI.2016.2581881 +Yasser H. Alsafadi,PACS/information systems interoperability using Enterprise Communication Framework.,1998,2,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb2.html#alSafadiLM98,https://doi.org/10.1109/4233.720521 +Christina Strohrmann,Monitoring Kinematic Changes With Fatigue in Running Using Body-Worn Sensors.,2012,16,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb16.html#StrohrmannHKT12,https://doi.org/10.1109/TITB.2012.2201950 +Syed Anas Imtiaz,Performance-Power Consumption Tradeoff in Wearable Epilepsy Monitoring Systems.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#ImtiazLR15,https://doi.org/10.1109/JBHI.2014.2342501 +Jesús Favela,Integrating context-aware public displays into a mobile hospital information system.,2004,8,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb8.html#FavelaRPG04,https://doi.org/10.1109/TITB.2004.834391 +K. N. Bhanu Prakash,Fetal lung maturity analysis using ultrasound image features.,2002,6,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb6.html#PrakashRSC02,https://doi.org/10.1109/4233.992160 +Domagoj Cosic,An open medical imaging workstation architecture for platform-independent 3-D medical image processing and visualization.,1997,1,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb1.html#Cosic97,https://doi.org/10.1109/4233.681172 +Ketheesan Thirusittampalam,A Novel Framework for Cellular Tracking and Mitosis Detection in Dense Phase Contrast Microscopy Images.,2013,17,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb17.html#ThirusittampalamHGW13,https://doi.org/10.1109/TITB.2012.2228663 +Benjamin Simeon Harvey,Cloud-Scale Genomic Signals Processing for Robust Large-Scale Cancer Genomic Microarray Data Analysis.,2017,21,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb21.html#HarveyJ17,https://doi.org/10.1109/JBHI.2015.2496323 +Gundolf Kiefer,Fast Maximum Intensity Projections of Large Medical Data Sets by Exploiting Hierarchical Memory Architectures.,2006,10,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb10.html#KieferLW06,https://doi.org/10.1109/TITB.2005.863871 +Robespierre Pita,On the Accuracy and Scalability of Probabilistic Data Linkage Over the Brazilian 114 Million Cohort.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#PitaPSFARBDB18,https://doi.org/10.1109/JBHI.2018.2796941 +Eugen Vasilescu,WS/PIDS: Standard Interoperable PIDS in Web Services Environments.,2008,12,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb12.html#VasilescuDGPM08,https://doi.org/10.1109/TITB.2007.896222 +Hanguang Xiao,Estimation of Pulse Transit Time From Radial Pressure Waveform Alone by Artificial Neural Network.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#XiaoBTQA18,https://doi.org/10.1109/JBHI.2017.2748280 +Marcel H. Trabuco,S-EMG Signal Compression in One-Dimensional and Two-Dimensional Approaches.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#TrabucoCMN18,https://doi.org/10.1109/JBHI.2017.2765922 +Evangelia I. Zacharaki,Abnormality Segmentation in Brain Images Via Distributed Estimation.,2012,16,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb16.html#ZacharakiB12,https://doi.org/10.1109/TITB.2011.2178422 +Li-Der Chou,Mobile Social Network Services for Families With Children With Developmental Disabilities.,2011,15,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb15.html#ChouLCCYHCCS11,https://doi.org/10.1109/TITB.2011.2155663 +Tao Peng,Modeling Cell-Cell Interactions in Regulating Multiple Myeloma Initiating Cell Fate.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#PengPCSCZ14,https://doi.org/10.1109/JBHI.2013.2281774 +Tong-Yee Lee,Computer-aided prototype system for nose surgery.,2001,5,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb5.html#LeeLL01,https://doi.org/10.1109/4233.966102 +Franck Marzani,A 3-D marker-free system for the analysis of movement disabilities - an application to the legs.,2001,5,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb5.html#MarzaniCL01,https://doi.org/10.1109/4233.908371 +Rosalia F. Tungaraza,Anatomically Informed Metrics for Connectivity-Based Cortical Parcellation From Diffusion MRI.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#TungarazaMHG15,https://doi.org/10.1109/JBHI.2015.2444917 +Christoph Brüser,Improvement of Force-Sensor-Based Heart Rate Estimation Using Multichannel Data Fusion.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#BruserKWTPL15,https://doi.org/10.1109/JBHI.2014.2311582 +Petros S. Karvelis,Fully Unsupervised M-FISH Chromosome Image Characterization.,2013,17,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb17.html#KarvelisL13,https://doi.org/10.1109/JBHI.2013.2258931 +Anke Meyer-Bäse,Analysis of Dynamic Susceptibility Contrast MRI Time Series Based on Unsupervised Clustering Methods.,2007,11,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb11.html#Meyer-BaseLWH07,https://doi.org/10.1109/TITB.2007.897597 +Yajiong Xue,Understanding PACS Development in Context: The Case of China.,2007,11,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb11.html#XueL07,https://doi.org/10.1109/TITB.2006.879580 +Adrian S. Barb,Knowledge representation and sharing using visual semantic modeling for diagnostic medical image databases.,2005,9,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb9.html#BarbSS05,https://doi.org/10.1109/TITB.2005.855563 +Vahid Zakeri,Discrimination of Tooth Layers and Dental Restorative Materials Using Cutting Sounds.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#ZakeriAC15,https://doi.org/10.1109/JBHI.2014.2317503 +Hanna Becker,A Penalized Semialgebraic Deflation ICA Algorithm for the Efficient Extraction of Interictal Epileptic Signals.,2017,21,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb21.html#BeckerACKM17,https://doi.org/10.1109/JBHI.2015.2504126 +Ricardo Citro,A fundamental metric for continuity of care: modeling and performance evaluation.,1997,1,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb1.html#CitroGC97,https://doi.org/10.1109/4233.654862 +Geng Yang,Bio-Patch Design and Implementation Based on a Low-Power System-on-Chip and Paper-Based Inkjet Printing Technology.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#YangXMCTZ12,https://doi.org/10.1109/TITB.2012.2204437 +Di Dong,Automated Recovery of the Center of Rotation in Optical Projection Tomography in the Presence of Scattering.,2013,17,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb17.html#DongZQKSOSTR13,https://doi.org/10.1109/TITB.2012.2219588 +Mikko Peltokangas,Age Dependence of Arterial Pulse Wave Parameters Extracted From Dynamic Blood Pressure and Blood Volume Pulse Waves.,2017,21,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb21.html#PeltokangasVVMR17,https://doi.org/10.1109/JBHI.2015.2503889 +Antonis S. Billis,A Decision-Support Framework for Promoting Independent Living and Ageing Well.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#BillisPFTTB15,https://doi.org/10.1109/JBHI.2014.2336757 +Ramin Bighamian,Prediction of Hemodynamic Response to Epinephrine via Model-Based System Identification.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#BighamianSRSH16,https://doi.org/10.1109/JBHI.2014.2371533 +Ahsan H. Khandoker,Automated Scoring of Obstructive Sleep Apnea and Hypopnea Events Using Short-Term Electrocardiogram Recordings.,2009,13,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb13.html#KhandokerGP09,https://doi.org/10.1109/TITB.2009.2031639 +Isabelle Killane,Dual Motor-Cognitive Virtual Reality Training Impacts Dual-Task Performance in Freezing of Gait.,2015,19,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb19.html#KillaneFNMWSLR15,https://doi.org/10.1109/JBHI.2015.2479625 +Yen-Feng Li,Ultrasound Beamforming Using Compressed Data.,2012,16,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb16.html#LiL12,https://doi.org/10.1109/TITB.2012.2190766 +Xiaojuan Duan,Rotated Hough Filtering for Automatically Distinguishing the Collagen Bundles in the Most Superficial Layer of Articular Cartilage.,2013,17,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb17.html#DuanWK13,https://doi.org/10.1109/JBHI.2013.2259246 +Gouenou Coatrieux,Reversible Watermarking for Knowledge Digest Embedding and Reliability Control in Medical Images.,2009,13,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb13.html#CoatrieuxGCR09,https://doi.org/10.1109/TITB.2008.2007199 +Wenlong Tang,Highly Accurate Recognition of Human Postures and Activities Through Classification With Rejection.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#TangS14,https://doi.org/10.1109/JBHI.2013.2287400 +Moi Hoon Yap,Automated Breast Ultrasound Lesions Detection Using Convolutional Neural Networks.,2018,22,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb22.html#YapPMGSZDM18,https://doi.org/10.1109/JBHI.2017.2731873 +Alexandros Roniotis,High-Grade Glioma Diffusive Modeling Using Statistical Tissue Information and Diffusion Tensors Extracted from Atlases.,2012,16,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb16.html#RoniotisMSZKM12,https://doi.org/10.1109/TITB.2011.2171190 +Eva Cavero,Real-Time Echocardiogram Transmission Protocol Based on Regions and Visualization Modes.,2014,18,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb18.html#CaveroAG14,https://doi.org/10.1109/JBHI.2013.2294905 +Mozziyar Etemadi,Implantable Ultralow Pulmonary Pressure Monitoring System for Fetal Surgery.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#EtemadiHSSMR12,https://doi.org/10.1109/TITB.2012.2207399 +Javier Andréu Pérez,Big Data for Health.,2015,19,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb19.html#PerezPMWY15,https://doi.org/10.1109/JBHI.2015.2450362 +Bor-Shyh Lin,Enhancing Bowel Sounds by Using a Higher Order Statistics-Based Radial Basis Function Network.,2013,17,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb17.html#LinSCTC13,https://doi.org/10.1109/JBHI.2013.2244097 +Justin Dauwels,Near-Lossless Multichannel EEG Compression Based on Matrix and Tensor Decompositions.,2013,17,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb17.html#DauwelsSRC13,https://doi.org/10.1109/TITB.2012.2230012 +Shaou-Gang Miaou,A Lossless Compression Method for Medical Image Sequences Using JPEG-LS and Interframe Coding.,2009,13,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb13.html#MiaouKC09,https://doi.org/10.1109/TITB.2009.2022971 +Ming-Dar Tsai,Volume manipulations for Simulating bone and joint surgery.,2005,9,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb9.html#Hsieh05,https://doi.org/10.1109/TITB.2004.842409 +Nikolaos N. Tsiaparas,Comparison of Multiresolution Features for Texture Classification of Carotid Atherosclerosis From B-Mode Ultrasound.,2011,15,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb15.html#TsiaparasGASVN11,https://doi.org/10.1109/TITB.2010.2091511 +Yongmin Kim 0001,Programmable ultrasound imaging using multimedia technologies: a next-generation ultrasound machine.,1997,1,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb1.html#KimKBW97,https://doi.org/10.1109/4233.594021 +Mohammed Khader,Nonrigid Image Registration Using an Entropic Similarity.,2011,15,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb15.html#KhaderH11,https://doi.org/10.1109/TITB.2011.2159806 +Hamdi Aloulou,An Adaptable and Flexible Framework for Assistive Living of Cognitively Impaired People.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#AloulouMTBY14,https://doi.org/10.1109/JBHI.2013.2278473 +Gad Abraham,Short-Term Forecasting of Emergency Inpatient Flow.,2009,13,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb13.html#AbrahamBB09,https://doi.org/10.1109/TITB.2009.2014565 +Alexandros Pantelopoulos,Prognosis: a wearable health-monitoring system for people at risk: methodology and modeling.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#PantelopoulosB10,https://doi.org/10.1109/TITB.2010.2040085 +Efthyvoulos C. Kyriacou,Prediction of High-Risk Asymptomatic Carotid Plaques Based on Ultrasonic Image Features.,2012,16,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb16.html#KyriacouPPPGKN12,https://doi.org/10.1109/TITB.2012.2192446 +Gaetano Valenza,Predicting Mood Changes in Bipolar Disorder Through Heartbeat Nonlinear Dynamics.,2016,20,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb20.html#ValenzaNLGBKS16,https://doi.org/10.1109/JBHI.2016.2554546 +Abhik Datta,A Fully Automatic Method for Gridding Bright Field Images of Bead-Based Microarrays.,2016,20,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb20.html#DattaKY16,https://doi.org/10.1109/JBHI.2015.2436928 +Honggang Yu,Fast Localization and Segmentation of Optic Disk in Retinal Images Using Directional Matched Filtering and Level Sets.,2012,16,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb16.html#YuBAEPBS12,https://doi.org/10.1109/TITB.2012.2198668 +Jinyan Li,Strong Compound-Risk Factors: Efficient Discovery Through Emerging Patterns and Contrast Sets.,2007,11,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb11.html#LiY07,https://doi.org/10.1109/TITB.2007.891163 +Eda Akman Aydin,P300-Based Asynchronous Brain Computer Interface for Environmental Control System.,2018,22,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb22.html#AydinBG18,https://doi.org/10.1109/JBHI.2017.2690801 +Ahmad Abushakra,Acoustic Signal Classification of Breathing Movements to Virtually Aid Breath Regulation.,2013,17,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb17.html#AbushakraF13,https://doi.org/10.1109/JBHI.2013.2244901 +Hamed Monkaresi,A Machine Learning Approach to Improve Contactless Heart Rate Monitoring Using a Webcam.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#MonkaresiCY14,https://doi.org/10.1109/JBHI.2013.2291900 +Stephen S. Intille,A new research challenge: persuasive technology to motivate healthy aging.,2004,8,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb8.html#Intille04,https://doi.org/10.1109/TITB.2004.835531 +Maria-Anna Fengou,A New Framework Architecture for Next Generation e-Health Services.,2013,17,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb17.html#FengouMLKFL13,https://doi.org/10.1109/TITB.2012.2224876 +Joonas Paalasmaa,Adaptive Heartbeat Modeling for Beat-to-Beat Heart Rate Measurement in Ballistocardiograms.,2015,19,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb19.html#PaalasmaaTP15,https://doi.org/10.1109/JBHI.2014.2314144 +Haifa Raja Maamar,3-D Streaming Supplying Partner Protocols for Mobile Collaborative Exergaming for Health.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#MaamarBP12,https://doi.org/10.1109/TITB.2012.2206116 +Philip A. Warrick,A VRML-based anatomical visualization tool for medical education.,1998,2,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb2.html#WarrickF98,https://doi.org/10.1109/4233.720523 +Paul Wighton,Generalizing Common Tasks in Automated Skin Lesion Diagnosis.,2011,15,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb15.html#WightonLLMA11,https://doi.org/10.1109/TITB.2011.2150758 +Duma Kristina Yanti,Single-Trial Visual Evoked Potential Extraction Using Partial Least-Squares-Based Approach.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#YantiYA16,https://doi.org/10.1109/JBHI.2014.2367152 +Yena Kim,Coexistence of ZigBee-Based WBAN and WiFi for Health Telemonitoring Systems.,2016,20,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb20.html#KimLL16,https://doi.org/10.1109/JBHI.2014.2387867 +Yadid Ayzenberg,FEEL: A System for Frequent Event and Electrodermal Activity Labeling.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#AyzenbergP14,https://doi.org/10.1109/JBHI.2013.2278213 +Sudip Misra,Green Wireless Body Area Nanonetworks: Energy Management and the Game of Survival.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#MisraIMR14,https://doi.org/10.1109/JBHI.2013.2293503 +Lino Ramirez,A Support Vector Machines Classifier to Assess the Severity of Idiopathic Scoliosis From Surface Topography.,2006,10,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb10.html#RamirezDRH06,https://doi.org/10.1109/TITB.2005.855526 +Enrique Garcia-Ceja,Automatic Stress Detection in Working Environments From Smartphones' Accelerometer Data: A First Step.,2016,20,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb20.html#Garcia-CejaOM16,https://doi.org/10.1109/JBHI.2015.2446195 +Hoi-Fei Kwok,SIVA: A Hybrid Knowledge-and-Model-Based Advisory System for Intensive Care Ventilators.,2004,8,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb8.html#KwokLMM04,https://doi.org/10.1109/TITB.2004.826717 +Amin Katouzian,Challenges in Atherosclerotic Plaque Characterization With Intravascular Ultrasound (IVUS): From Data Collection to Classification.,2008,12,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb12.html#KatouzianSBKC08,https://doi.org/10.1109/TITB.2007.912352 +Federico Carpi,"Correction to ""Electroactive Polymer-Based Devices for e-Textiles in Biomedicine"".",2005,9,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb9.html#CarpiR05a,https://doi.org/10.1109/TITB.2005.858429 +Dimitrios K. Iakovidis,Intuitionistic Fuzzy Cognitive Maps for Medical Decision Making.,2011,15,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb15.html#IakovidisP11,https://doi.org/10.1109/TITB.2010.2093603 +Gassan Abdoulaev,ViVa: the virtual vascular project.,1998,2,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb2.html#AbdoulaevCDDFGGLMPSTVVZZ98,https://doi.org/10.1109/4233.737582 +Shuang Wang,Activity Density Map Visualization and Dissimilarity Comparison for Eldercare Monitoring.,2012,16,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb16.html#WangSZ12,https://doi.org/10.1109/TITB.2012.2196439 +Alberto Faro,Discovering Genes-Diseases Associations From Specialized Literature Using the Grid.,2009,13,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb13.html#FaroGMS09,https://doi.org/10.1109/TITB.2008.2007755 +Daifa Wang,A Novel Finite-Element-Based Algorithm for Fluorescence Molecular Tomography of Heterogeneous Media.,2009,13,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb13.html#WangLCB09,https://doi.org/10.1109/TITB.2009.2015144 +Kaijun Wang,Estimating the Number of Clusters via System Evolution for Cluster Analysis of Gene Expression Data.,2009,13,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb13.html#WangZZD09,https://doi.org/10.1109/TITB.2009.2025119 +E. Taniguchi,Construction of a regional telementoring network for endoscopic surgery in Japan.,2000,4,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb4.html#TaniguchiO00,https://doi.org/10.1109/4233.870029 +Seong Ki Mun,Guest Editorial Introduction to the Special Section on Image Management in the Healthcare Enterprise.,2007,11,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb11.html#MunPCR07,https://doi.org/10.1109/TITB.2006.888236 +Chen Zhang,Design and Implementation of an On-Chip Patient-Specific Closed-Loop Seizure Onset and Termination Detection System.,2016,20,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb20.html#ZhangAY16,https://doi.org/10.1109/JBHI.2016.2553368 +Narjes Torabi,Cross-Layer Design for Prompt and Reliable Transmissions Over Body Area Networks.,2014,18,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb18.html#TorabiL14,https://doi.org/10.1109/JBHI.2013.2283232 +Václav Gerla,Multivariate Analysis of Full-Term Neonatal Polysomnographic Data.,2009,13,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb13.html#GerlaPLK09,https://doi.org/10.1109/TITB.2008.2007193 +Andrei V. Gribok,A real-time algorithm for predicting core temperature in humans.,2010,14,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb14.html#GribokBHR10,https://doi.org/10.1109/TITB.2010.2043956 +Jie Song,Boundary-to-Marker Evidence-Controlled Segmentation and MDL-Based Contour Inference for Overlapping Nuclei.,2017,21,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb21.html#Song0L17,https://doi.org/10.1109/JBHI.2015.2504422 +Betul Erdogdu Sakar,Collection and Analysis of a Parkinson Speech Dataset With Multiple Types of Sound Recordings.,2013,17,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb17.html#SakarISSGDAK13,https://doi.org/10.1109/JBHI.2013.2245674 +Paula de Toledo,Telemedicine Experience for Chronic Care in COPD.,2006,10,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb10.html#deToledoJdRAH06,https://doi.org/10.1109/TITB.2005.863877 +Kyung Sang Kim,Ultra-Fast Hybrid CPU-GPU Multiple Scatter Simulation for 3-D PET.,2014,18,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb18.html#KimSCRY14,https://doi.org/10.1109/JBHI.2013.2267016 +Mahsa Rouzbahman,Can Cluster-Boosted Regression Improve Prediction of Death and Length of Stay in the ICU?,2017,21,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb21.html#RouzbahmanJC17,https://doi.org/10.1109/JBHI.2016.2525731 +Marianna Diomidous,The construction of a simulation-based system for the development of powerful and realistic models and practicals for healthcare professionals.,1998,2,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb2.html#DiomidousVM98,https://doi.org/10.1109/4233.735782 +John Puentes,Computer-Assisted Venous Thrombosis Volume Quantification.,2009,13,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb13.html#PuentesDBGS09,https://doi.org/10.1109/TITB.2008.2007592 +Hongwei Ji,ACM-Based Automatic Liver Segmentation From 3-D CT Images by Combining Multiple Atlases and Improved Mean-Shift Techniques.,2013,17,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb17.html#JiHYDC13,https://doi.org/10.1109/JBHI.2013.2242480 +Yannis A. Tolias,Real-time separation of discontinuous adventitious sounds from vesicular sounds using a fuzzy rule-based filter.,1998,2,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb2.html#ToliasHP98,https://doi.org/10.1109/4233.735786 +Marcel Breeuwer,The EASI project-improving the effectiveness and quality of image-guided surgery.,1998,2,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb2.html#BreeuwerWBBDGGDKVTWBEMVPGHMHMVVSSBLSWZK98,https://doi.org/10.1109/4233.735780 +Santi Seguí,Categorization and Segmentation of Intestinal Content Frames for Wireless Capsule Endoscopy.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#SeguiDVMARV12,https://doi.org/10.1109/TITB.2012.2221472 +Thomas Simos,Analysis of Protein Interaction Networks for the Detection of Candidate Hepatitis B and C Biomarkers.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#SimosGTKP15,https://doi.org/10.1109/JBHI.2014.2344732 +Ilias Maglogiannis,Wavelet-Based Compression With ROI Coding Support for Mobile Access to DICOM Images Over Heterogeneous Radio Networks.,2009,13,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb13.html#MaglogiannisDKP09,https://doi.org/10.1109/TITB.2008.903527 +Panayiotis Korfiatis,Texture-based identification and characterization of interstitial pneumonia patterns in lung multidetector CT.,2010,14,IEEE Trans. Information Technology in Biomedicine,3,db/journals/titb/titb14.html#KorfiatisKKKC10,https://doi.org/10.1109/TITB.2009.2036166 +Weichao Xu,Order Statistics Concordance Coefficient With Applications to Multichannel Biosignal Analysis.,2017,21,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb21.html#XuCZC17,https://doi.org/10.1109/JBHI.2016.2616512 +G. Brandt,CRIGOS: a compact robot for image-guided orthopedic surgery.,1999,3,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb3.html#BrandtZCMSLRR99,https://doi.org/10.1109/4233.809169 +Kei Ikeda,Efficient Acceleration of Mutual Information Computation for Nonrigid Registration Using CUDA.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#IkedaIH14,https://doi.org/10.1109/JBHI.2014.2310745 +Jun Zhang,Energy-Efficient ECG Compression on Wireless Biosensors via Minimal Coherence Sensing and Weighted and#8467*1 Minimization Reconstruction.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#ZhangGYL15,https://doi.org/10.1109/JBHI.2014.2312374 +Panagiotis Petrantonakis,Emotion recognition from EEG using higher order crossings.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#PetrantonakisH10,https://doi.org/10.1109/TITB.2009.2034649 +Chen Song,Tempo-Spatial Compressed Sensing of Organ-on-a-Chip for Pervasive Health.,2018,22,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb22.html#SongWLAZJXX18,https://doi.org/10.1109/JBHI.2017.2775559 +Haleh Aghajani,Diagnosis of Early Alzheimer's Disease Based on EEG Source Localization and a Standardized Realistic Head Model.,2013,17,IEEE J. Biomedical and Health Informatics,6,db/journals/titb/titb17.html#AghajaniZJKV13,https://doi.org/10.1109/JBHI.2013.2253326 +Esther J. Smits,Graphical Tasks to Measure Upper Limb Function in Patients With Parkinson's Disease: Validity and Response to Dopaminergic Medication.,2017,21,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb21.html#SmitsTCGZBLM17,https://doi.org/10.1109/JBHI.2015.2503802 +Mehedi Masud,Data Interoperability and Multimedia Content Management in e-Health Systems.,2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#MasudHA12,https://doi.org/10.1109/TITB.2012.2202244 +Nicolas Aristokleous,Effect of Posture Change on the Geometric Features of the Healthy Carotid Bifurcation.,2011,15,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb15.html#AristokleousSPGBEA11,https://doi.org/10.1109/TITB.2010.2091417 +Sohini Roychowdhury,DREAM: Diabetic Retinopathy Analysis Using Machine Learning.,2014,18,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb18.html#RoychowdhuryKP14,https://doi.org/10.1109/JBHI.2013.2294635 +Robert M. Seepers,Enhancing Heart-Beat-Based Security for mHealth Applications.,2017,21,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb21.html#SeepersSSZ17,https://doi.org/10.1109/JBHI.2015.2496151 +Hong Ying,Distributed Intelligent Sensor Network for the Rehabilitation of Parkinson's Patients.,2011,15,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb15.html#YingSSSSLS11,https://doi.org/10.1109/TITB.2010.2095463 +Zhimin Gao,HEp-2 Cell Image Classification With Deep Convolutional Neural Networks.,2017,21,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb21.html#GaoWZZ17,https://doi.org/10.1109/JBHI.2016.2526603 +Ryan A. Hoffman,Intelligent Mortality Reporting With FHIR.,2018,22,IEEE J. Biomedical and Health Informatics,5,db/journals/titb/titb22.html#HoffmanWVBW18,https://doi.org/10.1109/JBHI.2017.2780891 +Younhyun Jung,Occlusion and Slice-Based Volume Rendering Augmentation for PET-CT.,2017,21,IEEE J. Biomedical and Health Informatics,4,db/journals/titb/titb21.html#JungKFF17,https://doi.org/10.1109/JBHI.2016.2565502 +Cheng Lu,Toward Automatic Mitotic Cell Detection and Segmentation in Multispectral Histopathological Images.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#LuM14,https://doi.org/10.1109/JBHI.2013.2277837 +Carmine Garripoli,Embedded DSP-Based Telehealth Radar System for Remote In-Door Fall Detection.,2015,19,IEEE J. Biomedical and Health Informatics,1,db/journals/titb/titb19.html#GarripoliMKSCVPLS15,https://doi.org/10.1109/JBHI.2014.2361252 +Darren Craven,Compressed Sensing for Bioelectric Signals: A Review.,2015,19,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb19.html#CravenMKGJ15,https://doi.org/10.1109/JBHI.2014.2327194 +Stefano Ceccon,Exploring Early Glaucoma and the Visual Field Test: Classification and Clustering Using Bayesian Networks.,2014,18,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb18.html#CecconGCT14,https://doi.org/10.1109/JBHI.2013.2289367 +Honggang Wang,Guest Editorial: Emerging Wireless Body Area Networks (WBANs) for Ubiquitous Healthcare.,2014,18,IEEE J. Biomedical and Health Informatics,2,db/journals/titb/titb18.html#WangVSL14,https://doi.org/10.1109/JBHI.2014.2298353 +Stacy J. Morris Bamberg,Gait Analysis Using a Shoe-Integrated Wireless Sensor System.,2008,12,IEEE Trans. Information Technology in Biomedicine,4,db/journals/titb/titb12.html#BambergBSKP08,https://doi.org/10.1109/TITB.2007.899493 +Khalid A. Al-Kofahi,Rapid automated three-dimensional tracing of neurons from confocal image stacks.,2002,6,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb6.html#Al-KofahiLSPNTR02,https://doi.org/10.1109/TITB.2002.1006304 +Shuanhu Wu,Cluster analysis of gene expression data based on self-splitting and merging competitive learning.,2004,8,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb8.html#WuLYY04,https://doi.org/10.1109/TITB.2004.824724 +Yuan-Ting Zhang,"Editorial: From ""Information Technology in Biomedicine"" to ""Biomedical and Health Informatics"".",2012,16,IEEE Trans. Information Technology in Biomedicine,6,db/journals/titb/titb16.html#ZhangPM12,https://doi.org/10.1109/TITB.2012.2227411 +Meghan Sarah Hegarty,An overview of technologies related to care for venous leg ulcers.,2010,14,IEEE Trans. Information Technology in Biomedicine,2,db/journals/titb/titb14.html#HegartyGR10,https://doi.org/10.1109/TITB.2009.2036009 +Marios S. Neofytou,Computer-Aided Diagnosis in Hysteroscopic Imaging.,2015,19,IEEE J. Biomedical and Health Informatics,3,db/journals/titb/titb19.html#NeofytouTCKPP15,https://doi.org/10.1109/JBHI.2014.2332760 +Tuan D. Pham,Computational Prediction Models for Early Detection of Risk of Cardiovascular Events Using Mass Spectrometry Data.,2008,12,IEEE Trans. Information Technology in Biomedicine,5,db/journals/titb/titb12.html#PhamWZBBHABHLW08,https://doi.org/10.1109/TITB.2007.908756 +Fahim Sufi,Diagnosis of Cardiovascular Abnormalities From Compressed ECG: A Data Mining-Based Approach.,2011,15,IEEE Trans. Information Technology in Biomedicine,1,db/journals/titb/titb15.html#SufiK11,https://doi.org/10.1109/TITB.2010.2094197 +Emmanuel Mory,Adaptation de contenus multimédias aux terminaux mobiles.,2004,9,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi9.html#MoryRBGGLS04,https://doi.org/10.3166/isi.9.2.39-60 +,Sommaire.,2012,17,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi17.html#X12d,http://isi.revuesonline.com/article.jsp?articleId=18029 +Oliver Brdiczka,Modéliser et faire évoluer le contexte dans des environnements intelligents. Représenter et apprendre des modèles de comportement humain dans des environnements intelligents.,2006,11,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi11.html#BrdiczkaRC06,https://doi.org/10.3166/isi.11.5.9-34 +Romuald Thion,Intégration du contexte spatio-temporel dans le contrôle d'accès basé sur les rôles .,2005,10,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi10.html#ThionC05,https://doi.org/10.3166/isi.10.4.89-117 +Mehdi Iraqi-Houssaini,Vers une ingénierie produit collaborative et interopérable basée sur les modèles. Un cadre général pour l'acquisition des données métiers.,2012,17,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi17.html#Iraqi-HoussainiKR12,https://doi.org/10.3166/isi.17.4.79-94 +Selmin Nurcan,éditorial.,2010,15,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi15.html#NurcanBP10,http://isi.revuesonline.com/article.jsp?articleId=15543 +Mustapha Baziz,Désambiguïsation et expansion de requêtes dans un SRI. Etude de l'apport des liens sémantiques.,2003,8,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi8.html#BazizAB03,https://doi.org/10.3166/isi.8.4.113-146 +Cécile Favre,Forum Jeunes Chercheurs à Inforsid 2016.,2017,22,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi22.html#FavreADFK17,https://doi.org/10.3166/isi.22.2.121-147 +David Jouve,Modélisation sémantique de la réglementation.,2001,6,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi6.html#JouveCAP01,http://isi.revuesonline.com/article.jsp?articleId=497 +,Editorial.,2003,8,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi8.html#X03, +Iulian Sandu Popa,Base de données de capteurs à localisation mobile Modèle et langage.,2009,14,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi14.html#PopaKZS09,https://doi.org/10.3166/isi.14.5.35-58 +Khaled Jouini,Modèles de stockage orientés interrogation pour bases de données temporelles.,2010,15,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi15.html#JouiniJ10,https://doi.org/10.3166/isi.15.1.61-85 +Yves Ledru,Une tentative d'utilisation conjointe d'UML et d'une méthode formelle pour la modélisation de la sécurité des aéroports.,2008,13,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi13.html#LedruLV08,https://doi.org/10.3166/isi.13.4.133-157 +Naouel Karam,Les logiques de description pour le tri sémantique de documents sur le web.,2005,10,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi10.html#KaramBDHS05,https://doi.org/10.3166/isi.10.2.69-89 +Girma Berhe,Adaptation de contenus multimédias pour les systèmes d'information pervasifs.,2004,9,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi9.html#BerheB04,https://doi.org/10.3166/isi.9.2.61-85 +Agnès Front,Introduction.,2016,21,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi21.html#Front16,http://isi.revuesonline.com/article.jsp?articleId=36418 +Karima Amrouche,Réduction de l'espace de recherche par les techniques d'élagage.,2006,11,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi11.html#Amrouche06,https://doi.org/10.3166/isi.11.4.81-97 +Marcos Aurélio Almeida da Silva,Experiments on the impact of deviations to process execution.,2013,18,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi18.html#SilvaBBG13,https://doi.org/10.3166/ISI.18.3.95-119 +Aymen Baouab,Supervision et vérification décentralisées de chorégraphies de services.,2014,19,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi19.html#BaouabPG14,https://doi.org/10.3166/isi.19.2.61-84 +Christine Verdier,Introduction.,2013,18,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi18.html#Verdier13,http://isi.revuesonline.com/article.jsp?articleId=19098 +June M. Verner,What factors lead to software project failure and whose fault was it ?,2009,14,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi14.html#VernerSCB09,https://doi.org/10.3166/isi.14.4.55-75 +Michèle Cart,Synchroniseur à base de transformées opérationnelles pour environnements P2P.,2007,12,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi12.html#CartF07,https://doi.org/10.3166/isi.12.3.9-35 +Nouha Bouteldja,Stratégies alternatives pour la recherche des plus proches voisins dans les espaces multidimensionnels.,2010,15,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi15.html#BouteldjaGS10,https://doi.org/10.3166/isi.15.1.35-60 +Rémi Delmas,Vérification automatique d'exigences pour les politiques d'échange d'information. Exigences de diffusion et de non-diffusion d'information.,2016,21,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi21.html#DelmasP16,https://doi.org/10.3166/isi.21.2.39-63 +Elisabeth Métais,éditorial.,2006,11,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi11.html#MetaisZ06, +Rachid Aknouche,Entrepôts de textes. Proposition d'un processus ETL et d'un modèle multidimensionnel TWM approprié.,2014,19,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi19.html#AknoucheBBA14,https://doi.org/10.3166/isi.19.5.45-73 +Brigitte Séroussi,Aide à la décision médicale pilotée par l'utilisateur: impact sur la qualité des pratiques.,2003,8,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi8.html#SeroussiB03,https://doi.org/10.3166/isi.8.1.33-54 +Rébecca Deneckère,Processus téléologique et variabilité. Utilisation de la sensibilité au contexte.,2011,16,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi16.html#DeneckereK11,https://doi.org/10.3166/isi.16.1.61-88 +Gaëtan Rey,Méthode pour la modélisation du contexte d'interaction.,2006,11,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi11.html#Rey06,https://doi.org/10.3166/isi.11.5.141-166 +,Sommaire.,2012,17,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi17.html#X12b,http://isi.revuesonline.com/article.jsp?articleId=17749 +Doulkifli Boukraâ,Modèle multidimensionnel d'objets complexes. Du modèle d'objets aux cubes d'objets complexes.,2011,16,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi16.html#BoukraaBBZ11,https://doi.org/10.3166/isi.16.6.41-65 +Arnaud Oglaza,KAPUER : un assistant à l'écriture de politiques d'autorisation pour la protection de la vie privée.,2014,19,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi19.html#OglazaLZ14,https://doi.org/10.3166/isi.19.6.89-115 +Bruno Defude,éditorial.,2007,12,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi12.html#DefudeR07,http://isi.revuesonline.com/article.jsp?articleId=11278 +Muhammad Faheem 0002,Crawl intelligent et adaptatif d'applications web pour l'archivage du web.,2014,19,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi19.html#0002S14,https://doi.org/10.3166/isi.19.4.61-86 +Kafil Hajlaoui,Construction et usage d'une ontologie de compétences pour l'identification de réseaux collaboratifs d'entreprises.,2010,15,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi15.html#HajlaouiBB10,https://doi.org/10.3166/isi.15.4.139-163 +Maha Khemaja,Un environnement collaboratif pour l'acquisition de compétences en conception-développement d'applications centrées utilisateur.,2015,20,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi20.html#Khemaja15,https://doi.org/10.3166/isi.20.4.9-37 +Laurent Baduel,Outil autonome de surveillance de grilles.,2007,12,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi12.html#BaduelM07,https://doi.org/10.3166/isi.12.3.85-104 +A. Authosserre-Cavarero,Ing énierie dirig ée par les mod èles : quels supports à l'interop érabilit é des syst èmes d'information ?,2013,18,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi18.html#Authosserre-CavareroBBCDDDFFLLGMP13,https://doi.org/10.3166/isi.18.2.13-44 +Eric Andonoff,Coordination à base de protocoles d'interaction dans le workflow inter-organisationnel dynamique.,2013,18,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi18.html#AndonoffB13,https://doi.org/10.3166/isi.18.5.81-105 +Zakaria Maamar,Web services composition using software agents and conversations.,2005,10,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi10.html#MaamarML05,https://doi.org/10.3166/isi.10.3.49-66 +Harri Oinas-Kukkonen,Préface. Recherche sur les réseaux sociaux et les systèmes d'information socio-techniques.,2012,17,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi17.html#Oinas-Kukkonen12a,http://isi.revuesonline.com/article.jsp?articleId=18032 +Corinne Amel Zayani,Approche pour l'adaptation de l'interrogation de documents semi-structurés.,2007,12,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi12.html#ZayaniA07,https://doi.org/10.3166/isi.12.2.61-73 +Corinne Grac,Un système d'information pour le suivi et l'évaluation de la qualité des cours d'eau. Application à l'hydro-écorégion de la plaine d'Alsace.,2011,16,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi16.html#GracBBT11,https://doi.org/10.3166/isi.16.3.9-30 +Lotfi Bouzguenda,Introduction.,2013,18,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi18.html#BouzguendaBG13,http://isi.revuesonline.com/article.jsp?articleId=19016 +Inès Saad,Les démarches de gestion des connaissances Vers une meilleure conception et exploitation des systèmes d'information coopératifs dans l'entreprise étendue.,2003,8,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi8.html#SaadBR03,https://doi.org/10.3166/isi.8.2.33-56 +,Sommaire.,2012,17,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi17.html#X12a,http://isi.revuesonline.com/article.jsp?articleId=17420 +Philippe Dugerdil,Remodélisation de l'architecture d'un système d'information.,2007,12,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi12.html#Dugerdil07,https://doi.org/10.3166/isi.12.5.11-37 +Samuel Huron,La sédimentation visuelle. Outil et technique pour visualiser les flux de données à destination du grand public.,2014,19,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi19.html#HuronVF14,http://isi.revuesonline.com/article.jsp?articleId=19658 +Sandro Bimonte,Un profil UML pour les entrepôts de données intégrant les réseaux spatiaux.,2012,17,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi17.html#BimonteKSGT12,https://doi.org/10.3166/isi.17.1.55-78 +Sabine Goutier,Getting right answers from incomplete multidimensional databases.,2002,7,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi7.html#GoutierHS02,https://doi.org/10.3166/isi.7.3.67-88 +Say Ying Lim,On-Mobile Query Processing Incorporating Multiple Non-Collaborative Servers.,2005,10,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi10.html#LimTS05,https://doi.org/10.3166/isi.10.5.9-38 +Kamal Boulil,Un modèle UML et des contraintes OCL pour les entrepôts de données spatiales. De la représentation conceptuelle à l'implémentation.,2011,16,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi16.html#BoulilBP11,https://doi.org/10.3166/isi.16.6.11-39 +Cyril Ray,Modèle et mesures de confiance.,2017,22,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi22.html#RayCC17,https://doi.org/10.3166/isi.22.1.19-41 +Armelle Brun,Détection de communautés d'intérêt et recommandation sociale par leaders.,2012,17,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi17.html#BrunB12,https://doi.org/10.3166/isi.17.6.91-113 +Dana Al Kukhun,Vers une vision pervasive d'un système de vidéosurveillance distribué. Extension en vue d'un contrôle d'accès adaptatif.,2013,18,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi18.html#KukhunCMS13,https://doi.org/10.3166/isi.18.1.125-149 +Mohamed Amine Chaâbane,Modélisation multidimensionnelle des versions de processus.,2010,15,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi15.html#ChaabaneABB10,https://doi.org/10.3166/isi.15.5.89-114 +Brigitte Gay,Cartographie de réseaux d'alliances et analyse stratégique.,2006,11,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi11.html#GayD06,https://doi.org/10.3166/isi.11.2.37-51 +Yifan Li,Un partitionnement d'arêtes à base de blocs pour les algorithmes de marches aléatoires dans les grands graphes sociaux.,2017,22,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi22.html#LiCM17,https://doi.org/10.3166/isi.22.3.89-113 +Ikram Amous,Etendre une approche méthodologique pour la réingénierie des sites web.,2001,6,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi6.html#AmousCS01,http://isi.revuesonline.com/article.jsp?articleId=205 +Patrick Bosc,La notion de division tolérante et son intérêt pour remédier aux réponses vides.,2008,13,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi13.html#BoscHP08,https://doi.org/10.3166/isi.13.5.131-154 +,Introduction.,2001,6,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi6.html#X01,http://isi.revuesonline.com/article.jsp?articleId=499 +Zhen He,Une plate-forme dynamique pour l'évaluation des performances des bases de données à objets.,2004,9,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi9.html#HeD04,https://doi.org/10.3166/isi.9.1.109-127 +Ana Simonet,Un entrepôt de données pour l'aide à la décision sanitaire en néphrologie.,2003,8,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi8.html#SimonetSGSGJMJL03,https://doi.org/10.3166/isi.8.1.75-89 +Bertrand David,Travail collaboratif situé pour l'ingénierie. Quels aspects à prendre en compte ?,2015,20,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi20.html#DavidC15,https://doi.org/10.3166/isi.20.4.39-62 +Fernando Lemos,Intégration de préférences dans la découverte et la sélection des services web.,2012,17,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi17.html#LemosAGHBLR12,https://doi.org/10.3166/isi.17.5.35-56 +Frédéric Martin,Métadonnées et conservation du numérique. Quels enjeux? Quels besoins?,2007,12,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi12.html#Martin07,https://doi.org/10.3166/isi.12.2.41-60 +Jamel Feki,éditorial.,2011,16,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi16.html#FekiB11,http://isi.revuesonline.com/article.jsp?articleId=16847 +C. Marie-Françoise Canut,Construction du profil social de l'utilisateur dans un contexte dynamique. Application d'une méthode de pondération temporelle.,2016,21,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi21.html#CanutOPS16,https://doi.org/10.3166/is.21.2.65-94 +Guillaume Raschia,Matérialisation de cubes de données par des partitions d'ensembles de n-uplets.,2015,20,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi20.html#RaschiaGD15,https://doi.org/10.3166/isi.20.5.77-101 +Yann Gripay,Towards service-oriented continuous queries in pervasive systems.,2008,13,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi13.html#GripayLP08,https://doi.org/10.3166/isi.13.5.33-57 +Mounir Touzani,Techniques de modélisation et d'analyse d'exigences spatio temporelles.,2017,22,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi22.html#TouzaniP17,https://doi.org/10.3166/isi.22.2.43-75 +Djamal Benslimane,Editorial.,2005,10,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi10.html#Benslimane05, +Colette Rolland,éditorial.,2008,13,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi13.html#RollandPC08,http://isi.revuesonline.com/article.jsp?articleId=11388 +Sylvie Servigne,éditorial.,2009,14,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi14.html#ServigneZ09,http://isi.revuesonline.com/article.jsp?articleId=13641 +Ian Basaille-Gahitte,Apports des réseaux sociaux pour la gestion de la relation client.,2014,19,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi19.html#Basaille-GahitteACL14,https://doi.org/10.3166/isi.19.2.85-109 +,Sommaire.,2011,16,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi16.html#X11,http://isi.revuesonline.com/article.jsp?articleId=15909 +Christine Louberry,Intégration de périphériques contraints par reconfiguration dynamique d'applications. Cas des capteurs sans-fil.,2008,13,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi13.html#LouberryDR08,https://doi.org/10.3166/isi.13.3.83-104 +Elena Kornyshova,éditorial.,2017,22,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi22.html#KornyshovaW17,http://isi.revuesonline.com/article.jsp?articleId=39099 +Idrissa Sarr,Routage décentralisé de transactions avec gestion des pannes dans un réseau à large échelle.,2010,15,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi15.html#SarrNG10,https://doi.org/10.3166/isi.15.1.87-111 +Laurent Etienne,Mesures de similarité de trajectoires basées sur l'utilisation de patrons spatio-temporels.,2012,17,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi17.html#EtienneD12,https://doi.org/10.3166/isi.17.1.11-34 +Thierry Millan,éditorial.,2007,12,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi12.html#MillanO07,http://isi.revuesonline.com/article.jsp?articleId=11105 +Abderrahman Matoussi,Un outil de construction de spécifications abstraites Event-B dirigée par les buts.,2011,16,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi16.html#MatoussiL11,https://doi.org/10.3166/isi.16.5.143-166 +Philippe Ramadour,Editorial.,2011,16,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi16.html#Ramadour11,http://isi.revuesonline.com/article.jsp?articleId=16160 +Alain Casali,Couvertures parfaites des motifs fréquents.,2005,10,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi10.html#CasaliCLL05,https://doi.org/10.3166/isi.10.2.117-138 +Yoann Pitarch,Fenêtres sur cube.,2010,15,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi15.html#PitarchLPP10,https://doi.org/10.3166/isi.15.1.9-33 +Zeinab Hmedeh,Techniques d'indexation de souscriptions pour la syndication web.,2013,18,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi18.html#HmedehKCMST13,https://doi.org/10.3166/isi.18.4.33-58 +Sébastien Truptil,Une architecture de système d'information collaboratif pour la gestion de crise. Approche basée sur la médiation des systèmes.,2010,15,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi15.html#TruptilBP10,http://isi.revuesonline.com/article.jsp?articleId=15084 +Mohand Boughanem,éditorial.,2006,11,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi11.html#BoughanemT06, +Cezar Plesca,Adaptation à des contextes partiellement observables.,2006,11,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi11.html#PlescaCG06,https://doi.org/10.3166/isi.11.5.35-60 +Josiane Mothe,Introduction.,2014,19,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi19.html#Mothe14,http://isi.revuesonline.com/article.jsp?articleId=19649 +Rébecca Deneckère,Famille de méthodes : la flexibilité au cō*9*ur du processus de construction de méthode.,2014,19,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi19.html#DeneckereKR14,https://doi.org/10.3166/isi.19.1.67-95 +Ali Hassan,Agrégations multiples différentiées dans les bases de données multidimensionnelles.,2013,18,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi18.html#HassanRTTZ13,https://doi.org/10.3166/isi.18.2.75-102 +Nicolas Mayer,Défis de la sécurité de l'information. Support à la gestion des risques de sécurité par les modèles.,2008,13,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi13.html#MayerDHM08,https://doi.org/10.3166/isi.13.1.37-74 +Ibtissem Hassine,Symphony: un modèle conceptuel de composants métier.,2002,7,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi7.html#HassineRBS02,https://doi.org/10.3166/isi.7.4.33-59 +Phan Nhat Hai,Get_Move : fouille de données d'objets mobiles.,2013,18,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi18.html#HaiPT13,https://doi.org/10.3166/isi.18.4.145-169 +,Introduction.,2015,20,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi20.html#X15a,http://isi.revuesonline.com/article.jsp?articleId=35598 +Florence Sèdes,éditorial.,2007,12,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi12.html#Sedes07,http://isi.revuesonline.com/article.jsp?articleId=10733 +Jean-Sébastien Vayre,Recherche et découverte d'information dans les environnements« big data». Une étude exploratoire et qualitative.,2015,20,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi20.html#Vayre15,https://doi.org/10.3166/isi.20.6.99-120 +Azedine Boulmakoul,Modélisation d'objets mobiles pour les systèmes d'information géolocalisés itinérants en temps réel.,2009,14,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi14.html#BoulmakoulB09,https://doi.org/10.3166/isi.14.5.59-84 +Sonia Sanlaville,Mélusine. Un environnement de modélisation et de coordination de services.,2005,10,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi10.html#SanlavilleE05,https://doi.org/10.3166/isi.10.3.29-48 +Chantal Soulé-Dupuy,Introduction.,2014,19,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi19.html#Soule-Dupuy14,http://isi.revuesonline.com/article.jsp?articleId=19546 +Thérèse Libourel,Introduction.,2015,20,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi20.html#LibourelMP15,http://isi.revuesonline.com/article.jsp?articleId=20883 +Guillaume Cabanac,Introduction.,2012,17,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi17.html#CabanacCM12,http://isi.revuesonline.com/article.jsp?articleId=18030 +Dan Istrate,Fusion de décision pour contrôle d'accès par la voix.,2010,15,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi15.html#IstrateICV10,https://doi.org/10.3166/isi.15.2.11-27 +Philippe Lopistéguy,Etude de la coordination dans un processus. Une expérience à base de patrons.,2003,8,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi8.html#LopisteguyED03a,https://doi.org/10.3166/isi.8.4.35-52 +Sophie Dupuy-Chessa,éditorial.,2007,12,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi12.html#Dupuy-ChessaR07, +Marie Thilliez,Requêtes dépendantes de la localisation. Evaluation distribuée et optimisation.,2005,10,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi10.html#ThilliezDL05,https://doi.org/10.3166/isi.10.5.39-58 +Thi-Lan-Anh Dinh,Un formalisme pour la gestion des connaissances. Approche ingénierie dirigée par les modèles.,2007,12,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi12.html#DinhGS07,https://doi.org/10.3166/isi.12.5.109-132 +Claude Chrisment,Recherche d'information. Analyse des résultats de différents systèmes réalisant la même tâche.,2005,10,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi10.html#ChrismentDMPT05,https://doi.org/10.3166/isi.10.1.33-57 +Jacques Simonin,Processus de développement de système fondé sur l'alignement de modèles.,2012,17,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi17.html#SimoninBN12,https://doi.org/10.3166/isi.17.3.119-142 +Hubert Dubois,éditorial.,2011,16,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi16.html#DuboisR11,http://isi.revuesonline.com/article.jsp?articleId=16711 +Levent Gürgen,Gestion de données de capteurs.,2009,14,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi14.html#GurgenRLO09,https://doi.org/10.3166/isi.14.1.13-37 +Sumit Kalra,Roadmap architecturale pour la création d'un système de diffusion d'alarme.,2016,21,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi21.html#KalraPS16,https://doi.org/10.3166/isi.21.4.11-25 +Malika Grim-Yefsah,évaluation de la qualité d'un processus métier à l'aide d'nformations issues de réseaux informels.,2010,15,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi15.html#Grim-YefsahRT10,https://doi.org/10.3166/isi.15.6.63-83 +Saïd Assar,Vers une sémantique orientée événement des modèles de processus. Démarche de type IDM.,2015,20,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi20.html#AssarSM15,https://doi.org/10.3166/isi.20.2.93-117 +Nizar Messai,Treillis de concepts et ontologies pour interroger l'annuaire de sources de données biologiques BioRegistry.,2006,11,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi11.html#MessaiDNS06,https://doi.org/10.3166/isi.11.1.39-60 +Harri Oinas-Kukkonen,Foreword. Social networks and socio-technical information systems research.,2012,17,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi17.html#Oinas-Kukkonen12,http://isi.revuesonline.com/article.jsp?articleId=18031 +Elena Kornyshova,Intégration progressive de composants des méthodes agiles. Retour d'expérience.,2017,22,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi22.html#KornyshovaDI17,https://doi.org/10.3166/isi.22.2.9-33 +Anne Etien,Business process/information system co-evolution.,2009,14,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi14.html#Etien09,https://doi.org/10.3166/isi.14.6.41-57 +Bénédicte Bucher,Décrire formellement les processus de manipulation de données géographiques.,2006,11,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi11.html#Bucher06,https://doi.org/10.3166/isi.11.1.61-82 +Régine Laleau,éditorial.,2011,16,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi16.html#Laleau11,http://isi.revuesonline.com/article.jsp?articleId=15910 +Sophie Laplace,Kalinahia. Modèle de qualité de service pour les applications multimédia reconfigurables.,2007,12,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi12.html#LaplaceDR07,https://doi.org/10.3166/isi.12.4.115-136 +Boulbaba Ben Ammar,Modélisation événementielle pour la construction de diagrammes de classes.,2008,13,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi13.html#AmmarBS08,https://doi.org/10.3166/isi.13.3.131-155 +Bouchra Soukkarieh,L'adaptation au contexte dans un système d'information web. Plateforme CA-WIS.,2009,14,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi14.html#Soukkarieh09,https://doi.org/10.3166/isi.14.1.91-116 +Stéphane Ferrari,Pour une recherche d'information et une veille juridique interactives et socio-centrées. ENT énactif et veille en droit du transport.,2012,17,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi17.html#FerrariMBMHBTSLD12,https://doi.org/10.3166/isi.17.2.17-40 +François Goasdoué,Des triplets sur des arbres. Un modèle hybride XML-RDF pour documents annotés.,2012,17,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi17.html#GoasdoueKKLMZ12,https://doi.org/10.3166/isi.17.5.87-111 +Annabelle Mercier,Solutions multi-agents pour la prise en charge à domicile des séniors.,2013,18,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi18.html#MercierROG13,https://doi.org/10.3166/isi.18.6.83-112 +Maud Loireau,SIEL : système intégré pour la modélisation et l'évaluation du risque de désertification.,2015,20,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi20.html#LoireauSCFLDDK15,https://doi.org/10.3166/isi.20.3.117-142 +Saïd Assar,Méthodes de recherche empirique en ingénierie des SI. Principes et applications.,2015,20,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi20.html#Assar15,https://doi.org/10.3166/isi.20.6.11-33 +Sybille Caffiau,Vérification de cohérence entre modèles de tâches et de dialogue en conception centrée-utilisateur.,2011,16,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi16.html#CaffiauGGB11,https://doi.org/10.3166/isi.16.5.9-41 +Mina Ziani,Système d'aide à l'alignement d'ontologies métier. Application au domaine géotechnique.,2011,16,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi16.html#ZianiBT11,https://doi.org/10.3166/isi.16.1.89-112 +Bery Leouro Mbaiossoum,Comparaison théorique et empirique de systèmes de bases de données sémantiques.,2013,18,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi18.html#MbaiossoumBJB13,https://doi.org/10.3166/isi.18.3.39-63 +Florent Masseglia,Diviser pour découvrir. Une méthode d'analyse du comportement de tous les utilisateurs d'un site web.,2004,9,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi9.html#MassegliaTT04,https://doi.org/10.3166/isi.9.1.61-83 +Lotfi Bouzguenda,Découverte de la perspective organisationnelle dans le workflow. Une approche basée sur les agents.,2013,18,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi18.html#BouzguendaC13,https://doi.org/10.3166/isi.18.5.59-80 +Omar Boucelma,éditorial.,2008,13,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi13.html#BoucelmaHLP08,http://isi.revuesonline.com/article.jsp?articleId=12069 +érick Lopez-Ornelas,Une approche pour la description et l'interrogation d'images satellitaires à très haute résolution spatiale .,2005,10,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi10.html#Lopez-OrnelasSF05,https://doi.org/10.3166/isi.10.4.119-137 +Mohamad Al Abdulsalam,L'intelligence économique coopérative. Une approche par les réseaux.,2006,11,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi11.html#Abdulsalam06,https://doi.org/10.3166/isi.11.2.11-36 +Omar Khrouf,OLAP de documents. Modélisation et mise en and#339*uvre.,2016,21,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi21.html#KhroufKF16,https://doi.org/10.3166/isi.21.1.11-37 +Zohra Sbaï,Vérification formelle des processus workflow. Extension aux workflows inter-organisationnels.,2013,18,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi18.html#SbaiB13,https://doi.org/10.3166/isi.18.5.33-57 +Selma Khouri,Une démarche de conception d'un entrepôt sémantique matérialisant les données et les besoins.,2012,17,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi17.html#KhouriBM12,https://doi.org/10.3166/isi.17.5.9-34 +Amel Mammar,Développement formel par raffinement d'applications bases de données sûres.,2001,6,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi6.html#Mammar01,http://isi.revuesonline.com/article.jsp?articleId=495 +Sandro Bimonte,Un système décisionnel pour l'analyse de la qualité des eaux de rivières.,2015,20,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi20.html#BimonteBBBCDFGL15,https://doi.org/10.3166/isi.20.3.143-167 +,Editorial.,2004,9,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi9.html#X04a, +Dimitre Kostadinov,Accès personnalisé à des sources de données multiples. Evaluation de deux approches de reformulation de requêtes.,2008,13,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi13.html#KostadinovBL08,https://doi.org/10.3166/isi.13.4.59-82 +Hélène Coullon,Calculs parallèles pour le traitement des gros volumes de données liées aux risques environnementaux.,2011,16,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi16.html#CoullonLLMPRT11,https://doi.org/10.3166/isi.16.3.31-54 +Khalid Benali,éDitorial.,2010,15,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi15.html#Benali10,http://isi.revuesonline.com/article.jsp?articleId=15083 +M. Lafaye,Qualité des données : conception du schéma de la base de données en utilisant l'ingénierie dirigée par les modèles. Un outil de conception de base de données relationnelle utilisant les métamodèles de l'OMG.,2011,16,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi16.html#LafayeLW11,https://doi.org/10.3166/isi.16.5.109-142 +Nicolas Hanusse,Approches basées sur la distribution pour l'estimation de la taille du skyline.,2016,21,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi21.html#HanusseWM16,https://doi.org/10.3166/isi.21.3.119-140 +Michel Augeraud,éditorial.,2008,13,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi13.html#Augeraud08,http://isi.revuesonline.com/article.jsp?articleId=12532 +Imène Saidi,Diversité dans la recherche d'entités.,2014,19,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi19.html#SaidiAB14,https://doi.org/10.3166/isi.19.3.107-136 +Cédric Lagnier,Modéliser l'utilisateur pour la diffusion de l'information dans les réseaux sociaux.,2012,17,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi17.html#LagnierGK12,https://doi.org/10.3166/isi.17.6.115-136 +Sabrina Tollari,Sélection adaptative des dimensions de l'indexation visuelle d'images mal annotées en fonction du mot recherché.,2006,11,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi11.html#TollariG06,https://doi.org/10.3166/isi.11.4.55-80 +Nadine Mandran,Démarche centrée utilisateur pour une ingénierie des langages de modélisation de qualité.,2013,18,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi18.html#MandranDFR13,https://doi.org/10.3166/isi.18.3.65-93 +Dario Colazzo,Analyse de données RDF. Lentilles pour graphes sémantiques.,2014,19,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi19.html#ColazzoGMR14,https://doi.org/10.3166/isi.19.4.87-117 +Christophe Rey,D2CP et compute BCov. Un prototype et un algorithme pour la découverte de services web dans le contexte du web sémantiqu.,2003,8,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi8.html#Rey03,https://doi.org/10.3166/isi.8.4.83-112 +Nicolas Arnaud,Expression et usage de la variabilité dans les patrons de conception.,2007,12,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi12.html#ArnaudFR07,https://doi.org/10.3166/isi.12.4.21-43 +Blazo Nastov,Vers la génération des syntaxes concrètes graphiques pour les langages de modélisation métier.,2015,20,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi20.html#NastovP15,https://doi.org/10.3166/isi.20.2.67-91 +Akram Idani,Modélisation graphique et validation formelle de politiques RBAC en systèmes d'information. Plateforme B4MSecure.,2014,19,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi19.html#IdaniLR14,https://doi.org/10.3166/isi.19.6.33-61 +Juan Carlos Corrales,Découverte de services basée sur leurs protocoles de conversation.,2007,12,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi12.html#CorralesGB07,https://doi.org/10.3166/isi.12.1.9-32 +David Gross-Amblard,Introduction.,2015,20,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi20.html#Gross-Amblard15,http://isi.revuesonline.com/article.jsp?articleId=21606 +Maha Driss,Une approche centrée exigences pour la composition de services web.,2011,16,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi16.html#DrissJMJG11,https://doi.org/10.3166/isi.16.2.97-125 +Kurt Englmeier,The Semantic Facet of Ubiquitous Computing.,2005,10,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi10.html#Englmeier05,https://doi.org/10.3166/isi.10.1.123-131 +Thomas Constant,Enjeux et problématiques de conception d'un jeu sérieux pour la prise de décision.,2015,20,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi20.html#ConstantBRN15,https://doi.org/10.3166/isi.20.1.107-131 +Wilfried Segretier,Variable optimization for flood prediction.,2011,16,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi16.html#SegretierCBS11,https://doi.org/10.3166/isi.16.3.113-139 +Ahmad Ahmad-Kassem,Distribution d'applications client-serveur sur des réseaux déclaratifs.,2012,17,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi17.html#Ahmad-KassemG12,https://doi.org/10.3166/isi.17.5.113-138 +,La recherche en systèmes d'information et ses nouvelles frontières.,2012,17,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi17.html#Inforsid12,https://doi.org/10.3166/isi.17.3.9-68 +S. Johnstone,Peer-to-Peer Information Access and Retrieval.,2005,10,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi10.html#JohnstoneCFS05,https://doi.org/10.3166/isi.10.1.101-122 +Nathalie Hernandez,Ontologies pour l'aide à l'exploration d'une collection de documents.,2005,10,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi10.html#Hernandez05,https://doi.org/10.3166/isi.10.1.11-31 +Jean-Philippe Pernin,Intégration de la dimension utilisateur dans la conception de systèmes pour l'apprentissage. Scénarisation pédagogique dirigée par les intentions.,2009,14,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi14.html#PerninEG09,https://doi.org/10.3166/isi.14.3.9-30 +Zohra Saoud,Un modèle de crédibilité basé sur le clustering flou pour une évaluation probabiliste de la confiance des ressources sur le Web.,2015,20,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi20.html#SaoudFMB15,https://doi.org/10.3166/isi.20.6.79-98 +Mhamed Saidane,Des patrons pour l'ingénierie de la coopération des systèmes d'information.,2002,7,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi7.html#SaidaneG02,https://doi.org/10.3166/isi.7.4.9-32 +,Sommaire.,2012,17,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi17.html#X12,http://isi.revuesonline.com/article.jsp?articleId=17239 +Marie-Jean Meurs,Approche bayésienne de la composition sémantique dans les systèmes de dialogue oral.,2010,15,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi15.html#MeursLM10,https://doi.org/10.3166/isi.15.2.49-71 +Mathieu Roche,ANIMITEX. Analyse d'images fondée sur des informations textuelles.,2014,19,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi19.html#RocheTCGS14,http://isi.revuesonline.com/article.jsp?articleId=19660 +Karen Pinel-Sauvagnat,Mesures de la qualité des systèmes de recherche d'information.,2013,18,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi18.html#Pinel-SauvagnatM13,https://doi.org/10.3166/isi.18.3.11-38 +Thierry Delot,Introduction.,2013,18,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi18.html#DelotS13,http://isi.revuesonline.com/article.jsp?articleId=18304 +Jean-Christophe Desconnets,Mutualiser des données spatiales et des traitements en environnement.,2015,20,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi20.html#DesconnetsK15,https://doi.org/10.3166/isi.20.3.89-115 +Mathieu Gallissot,Proposition et mise en and#339*uvre d'un modèle d'interopérabilité pour le bâtiment intelligent.,2012,17,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi17.html#GallissotJ12,https://doi.org/10.3166/isi.17.2.121-142 +Jacky Akoka,Business Intelligence. Un état de l'art.,2014,19,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi19.html#AkokaC14,https://doi.org/10.3166/isi.19.5.9-43 +Hicham Idabal,Requêtes arbres régulières pour l'analyse de dépendances entre vues et mises à jour de documents XML.,2010,15,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi15.html#IdabalG10,https://doi.org/10.3166/isi.15.1.113-138 +André Miralles,Méthode de factorisation progressive pour accroître l'abstraction d'un modèle de classes.,2015,20,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi20.html#MirallesHDBLNG15,https://doi.org/10.3166/isi.20.2.9-39 +Philippe C. Besse,Big data analytics - Retour vers le futur 3. De statisticien à data scientist.,2014,19,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi19.html#BesseGL14,https://doi.org/10.3166/isi.19.3.93-105 +Claire Saurel,Politiques formelles d'échange d'informations critiques dans les organisations.,2016,21,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi21.html#Saurel16,https://doi.org/10.3166/isi.21.4.27-47 +Jacques Simonin,Une démarche de développement conciliant agilité et urbanisation du système d'information. La plateforme épidémiologique PLASTICO.,2013,18,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi18.html#SimoninTG13,https://doi.org/10.3166/isi.18.6.9-32 +Mourad Ghorbel,Réduction du nombre des prédicats pour les approches de répartition des entrepôts de données.,2016,21,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi21.html#GhorbelKA16,https://doi.org/10.3166/isi.21.1.81-102 +François Pinet,éditorial.,2011,16,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi16.html#PinetMB11,http://isi.revuesonline.com/article.jsp?articleId=16343 +Bako Rajaonah,A view of trust and information system security under the perspective of critical infrastructure protection.,2017,22,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi22.html#Rajaonah17,https://doi.org/10.3166/isi.22.1.109-133 +Michelle Chabrol,éditorial.,2008,13,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi13.html#ChabrolG08,http://isi.revuesonline.com/article.jsp?articleId=11728 +Camélia Constantin,Un modèle de classement de services par contribution et utilité.,2007,12,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi12.html#ConstantinAG07,https://doi.org/10.3166/isi.12.1.33-60 +,Sommaire.,2013,18,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi18.html#X13,http://isi.revuesonline.com/article.jsp?articleId=18303 +Cécile Favre,Gestion et analyse personnalisées des demandes marketing. Cas de LCL-Le Crédit Lyonnais.,2009,14,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi14.html#FavreRBB09,https://doi.org/10.3166/isi.14.3.119-139 +Laurent d'Orazio,Entreposage et analyse en ligne dans les nuages avec Pig.,2011,16,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi16.html#DOrazioB11,https://doi.org/10.3166/isi.16.6.139-162 +Serge Morand,Projet BiodivHealthSEA. Biodiversité et santé en Asie du Sud-Est.,2014,19,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi19.html#MorandC14,http://isi.revuesonline.com/article.jsp?articleId=19662 +Hanen Belhaj Frej,Algorithmes de notification pour bibliothèques numériques.,2007,12,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi12.html#FrejRS07,https://doi.org/10.3166/isi.12.1.61-84 +,Sommaire.,2010,15,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi15.html#X10a,http://isi.revuesonline.com/article.jsp?articleId=15889 +Anthony A. Hock-koon,Vers une meilleure compréhension de la différence théorique entre un composant et un service.,2012,17,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi17.html#Hock-koonO12,https://doi.org/10.3166/isi.17.3.69-93 +Jean-Stéphane Ulmer,Approche pour un meilleur alignement des processus métiers. De la modélisation à l'implémentation.,2012,17,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi17.html#UlmerBL12,https://doi.org/10.3166/isi.17.4.17-47 +Christophe Gnaho,Une extension SysML pour l'ingénierie des exigences non fonctionnelles orientée but.,2011,16,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi16.html#GnahoS11,https://doi.org/10.3166/isi.16.1.9-32 +Pierre-Emmanuel Arduin,éditorial.,2017,22,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi22.html#ArduinO17,http://isi.revuesonline.com/article.jsp?articleId=38015 +Diana Penciuc,Apport des ontologies à la gestion des connaissances au cours du cycle de vie des systèmes de transport ferroviaire.,2012,17,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi17.html#PenciucAA12,https://doi.org/10.3166/isi.17.4.119-140 +Georges Gardarin,DocCat: un composant logiciel de catégorisation de documents et de marquage sémantique XML.,2003,8,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi8.html#GardarinKZ03,https://doi.org/10.3166/isi.8.3.33-54 +Eric Andonoff,La coordination dans le workflow interorganisationnel lâche. Une approche basée sur les agents et le web sémantique.,2006,11,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi11.html#AndonoffBH06,https://doi.org/10.3166/isi.11.3.127-150 +Cécile Faure,Flexibilité de processus de gestion de crise par intégration de protocoles d'interaction.,2010,15,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi15.html#FaureAHSS10,https://doi.org/10.3166/isi.15.3.37-60 +Mathieu Petit,Caractérisation de l'environnement d'exécution pour la conception d'un système d'information mobile et distribué.,2009,14,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi14.html#PetitRC09,https://doi.org/10.3166/isi.14.5.11-34 +Rajaa Saidi,Variabilité dans les composants métiers multivues.,2009,14,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi14.html#SaidiFFM09,https://doi.org/10.3166/isi.14.2.61-86 +Rébecca Deneckère,évaluation du concept de famille de méthodes et de son application aux méthodes agiles.,2016,21,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi21.html#DeneckereK16,https://doi.org/10.3166/isi.21.2.95-121 +George Potamias,Mining XML Clinical Data: the HealthObs System.,2005,10,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi10.html#PotamiasKM05,https://doi.org/10.3166/isi.10.1.59-79 +Faïza Ghozzi,Contraintes pour modèle et langage multidimensionnels.,2004,9,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi9.html#GhozziRTZ04,https://doi.org/10.3166/isi.9.1.9-34 +,Sommaire.,2013,18,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi18.html#X13a,http://isi.revuesonline.com/article.jsp?articleId=18379 +Mario Cortes Cornax,Retour d'expérience des études empiriques dans l'ingénierie de langages de modélisation. Application aux langages de chorégraphie.,2015,20,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi20.html#CornaxDRM15,https://doi.org/10.3166/isi.20.6.35-58 +Camélia Constantin,Recommandation contextuelle d'utilisateurs pour les plateformes de micro-blogging.,2016,21,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi21.html#ConstantinDMG16,https://doi.org/10.3166/isi.21.3.93-118 +Thouraya Guizani,Modélisation de l' 'architecture métier' dans le contexte des systèmes hospitaliers. Synthèse des besoins et comparaison de techniques de modélisation.,2010,15,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi15.html#GuizaniL10,https://doi.org/10.3166/isi.15.5.115-142 +Oscar Avila,Analyse et classification des approches d'alignement TI/business. Contribution à la formalisation des mécanismes sous-jacents.,2010,15,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi15.html#AvilaG10,https://doi.org/10.3166/isi.15.4.11-35 +Nabila Zouggar,Semantic enrichment of enterprise modelling supported by ontologies.,2008,13,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi13.html#ZouggarVC08,https://doi.org/10.3166/isi.13.2.75-95 +,Sommaire.,2011,16,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi16.html#X11e,http://isi.revuesonline.com/article.jsp?articleId=16846 +Laure Martins-Baltar,Débridons l'interaction homme-machine pour une meilleure qualité des soins. Requis centrés utilisateurs et interfaces perlées pour les systèmes d'information de santé.,2013,18,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi18.html#Martins-BaltarLC13,https://doi.org/10.3166/isi.18.6.113-139 +Ioana Manolescu,Introduction.,2013,18,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi18.html#Manolescu13,http://isi.revuesonline.com/article.jsp?articleId=18838 +Gautier Bastide,Auto-adaptation de composants logiciels. Mécanismes d'auto-adaptation de la structure de composants appliqués aux environnements ubiquitaires.,2009,14,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi14.html#BastideSO09,https://doi.org/10.3166/isi.14.1.65-89 +Philippe Lopistéguy,Renforcer les processus d'activités par la modélisation et la spécification de la coordination Utilisation d'un prototype.,2003,8,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi8.html#LopisteguyED03,https://doi.org/10.3166/isi.8.2.95-111 +Estella Annoni,Traitements à l'origine des systèmes d'information décisionnels. Catégorisation et formalisation des traitements à l'origine des SID.,2006,11,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi11.html#AnnoniRT06,https://doi.org/10.3166/isi.11.6.115-143 +Sihem Amer-Yahia,Introduction.,2016,21,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi21.html#Amer-Yahia16,http://isi.revuesonline.com/article.jsp?articleId=36638 +Florent Delomier,Learning Games Collaboratifs Contextualisés. Conception et mise en and#339*uvre.,2013,18,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi18.html#DelomierDBC13,https://doi.org/10.3166/isi.18.5.107-131 +Khalid Benali,éditorial.,2006,11,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi11.html#BenaliC06, +Amira Derradji,Conception et évaluation d'un langage orienté patient pour la représentation de protocoles de soins.,2016,21,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi21.html#DerradjiV16,https://doi.org/10.3166/isi.21.2.123-146 +Sébastien Salva,Testabilité des services web.,2008,13,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi13.html#SalvaR08,https://doi.org/10.3166/isi.13.3.35-58 +Julien Velcin,Analyser l'image de marque d'entités sur le web. Revue du projet ImagiWeb.,2014,19,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi19.html#VelcinPKCDB14,http://isi.revuesonline.com/article.jsp?articleId=19659 +Esma Yahia,Extraction de la structure de la sémantique dans les modèles de systèmes d'information d'entreprises collaboratives.,2012,17,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi17.html#YahiaLAP12,https://doi.org/10.3166/isi.17.4.49-77 +Bruno Claudepierre,Constats et fondements pour des méthodes d'ingénierie de SI dirigées par les exigences de gouvernance.,2009,14,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi14.html#ClaudepierreN09,https://doi.org/10.3166/isi.14.4.9-32 +Alain Casali,Extraction de sémantiques dans les bases de données multidimensionnelles.,2004,9,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi9.html#CasaliCL04,https://doi.org/10.3166/isi.9.1.35-59 +Vijay Kumar 0002,Web Bazaar. A Location-Dependent Secured Mobile Web Service System.,2005,10,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi10.html#KumarA05,https://doi.org/10.3166/isi.10.5.123-145 +Vivien Guillet,"Modélisation de l'utilisateur et exploitation dans un système ""adapté"" d'aide au déplacement piéton.",2004,9,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi9.html#GuilletRP04,https://doi.org/10.3166/isi.9.2.107-128 +Icham Sefion,Aide à la décision médicale Contribution pour la prise en charge de l'asthme.,2003,8,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi8.html#SefionEGC03,https://doi.org/10.3166/isi.8.1.11-32 +,Sommaire.,2010,15,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi15.html#X10,http://isi.revuesonline.com/article.jsp?articleId=15542 +Yoann Pitarch,Généralisation contextuelle de mesures dans les entrepôts de données. Application aux entrepôts de données médicales.,2011,16,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi16.html#PitarchFLP11,https://doi.org/10.3166/isi.16.6.67-90 +Inès Zouari Turki,Impact de l'évolution de nomenclature sur le versionnement des entrepôts de données.,2008,13,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi13.html#TurkiJB08,https://doi.org/10.3166/isi.13.6.85-114 +Silvana Castano,An XML-based Integration Scheme for Web Data Sources.,2001,6,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi6.html#CastanoAVM01,http://isi.revuesonline.com/article.jsp?articleId=502 +Françoise Sailhan,Protocole de découverte de services interopérable en réseau ad hoc.,2009,14,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi14.html#SailhanBI09,https://doi.org/10.3166/isi.14.1.39-64 +Pierre-Emmanuel Arduin,évaluer la prise en compte des connaissances tacites dans un système d'information. Vers un système d'information et de connaissance.,2013,18,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi18.html#ArduinGR13,https://doi.org/10.3166/isi.18.3.121-148 +Rim Zghal Rebaï,Vers une meilleure navigation dans une architecture distribuée.,2013,18,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi18.html#RebaiZA13,https://doi.org/10.3166/isi.18.1.85-106 +Véronique Heiwy,Systèmes d'information éducatifs :« De l'importance de la démarche». Quelle aide pour la conception de ressources pédagogiques ?.,2006,11,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi11.html#Heiwy06,https://doi.org/10.3166/isi.11.1.83-108 +Renaud Angles,Adaptation dynamique de processus métier. Application au circuit du médicament à l'AP-HM.,2014,19,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi19.html#AnglesRCR14,https://doi.org/10.3166/isi.19.2.35-60 +Gregory Zacharewicz,Interopérabilité des entreprises. Vers l'utilisation d'ontologies éphémères.,2010,15,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi15.html#ZacharewiczVC10,https://doi.org/10.3166/isi.15.5.11-36 +Emna Guermazi,A survey of data warehouse security.,2014,19,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi19.html#GuermaziAA14,https://doi.org/10.3166/isi.19.5.75-96 +Guillaume Thibault,Indices de formes et de textures. Application au classement de noyaux de cellules.,2010,15,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi15.html#ThibaultFSM10,https://doi.org/10.3166/isi.15.2.73-96 +Grégory Smits,Une approche coopérative d'aide à la réparation de requêtes floues.,2016,21,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi21.html#SmitsP16,https://doi.org/10.3166/isi.21.3.11-30 +Isabelle Mirbel,Des besoins des utilisateurs à la recherche de services web. Une approche sémantique guidée par les intentions.,2010,15,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi15.html#MirbelC10,https://doi.org/10.3166/isi.15.4.89-112 +Abdelkerim Rezgui,KPI-based decision impact evaluation system for adaptive business intelligence.,2016,21,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi21.html#RezguiM16,https://doi.org/10.3166/isi.21.1.103-124 +C. Chauvet,éDitorial.,2012,17,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi17.html#Chauvet12,http://isi.revuesonline.com/article.jsp?articleId=17729 +Florent Autrusseau,Chiffrement Mojette d'images médicales.,2003,8,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi8.html#AutrusseauG03,https://doi.org/10.3166/isi.8.1.113-134 +Maryvonne Miquel,Conception d'entrepôts de données géospatiales à partir de sources hétérogènes Exemple d'application en foresterie.,2002,7,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi7.html#MiquelBB02,https://doi.org/10.3166/isi.7.3.89-111 +Laurent Etienne,Modélisation d'objets mobiles pour les systèmes d'information géolocalisés itinérants en temps réel.,2009,14,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi14.html#EtienneDB09,https://doi.org/10.3166/isi.14.5.85-106 +Claude Monteil,PRéSENTATION. Géomatique et ingénierie de l'information. Objets mobiles et réseaux spatiaux.,2012,17,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi17.html#MonteilPS12,http://isi.revuesonline.com/article.jsp?articleId=17240 +Joy Garfield,Requirements elaboration for system co-development.,2009,14,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi14.html#GarfieldL09,https://doi.org/10.3166/isi.14.4.77-98 +Khadidja Grebici,Vers une meilleure collaboration des acteurs du processus de conception de produit.,2006,11,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi11.html#GrebiciRB06,https://doi.org/10.3166/isi.11.3.95-125 +Ioan Marius Bilasco,Sémantique et modélisation de scènes 3D.,2007,12,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi12.html#BilascoVGM07,https://doi.org/10.3166/isi.12.2.121-135 +Salah Triki,Sécurisation des entrepôts de données contre les inférences précises et partielles.,2011,16,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi16.html#TrikiBFH11,https://doi.org/10.3166/isi.16.6.117-138 +Jacques Guyot,Construire un moteur d'indexation.,2006,11,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi11.html#GuyotFB06,https://doi.org/10.3166/isi.11.4.99-131 +,éditorial.,2014,19,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi19.html#X14,http://isi.revuesonline.com/article.jsp?articleId=19828 +Karin Anna Hummel,Mobility Aware Adaptation of Space Based Coordination Patterns.,2004,9,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi9.html#Hummel04,https://doi.org/10.3166/isi.9.2.87-106 +Jihed Touzi,Interopérabilité et système d'information. Aide à la conception de système d'information interorganisationnel à partir de processus collaboratifs.,2006,11,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi11.html#TouziBP06,https://doi.org/10.3166/isi.11.3.31-52 +Khalid Belhajjame,Intégration de services. Une analyse structurée.,2005,10,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi10.html#BelhajjameVC05,https://doi.org/10.3166/isi.10.3.91-110 +Frédérique Laforest,éditorial.,2006,11,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi11.html#LaforestM06, +Yacine Lassoued,A metadata-driven geographic data mediator.,2007,12,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi12.html#LassouedEB07,https://doi.org/10.3166/isi.12.2.137-161 +Antoine Amarilli,Possibility in probabilistic XML.,2015,20,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi20.html#Amarilli15,https://doi.org/10.3166/isi.20.5.53-75 +Michelle Chabrol,Modélisation orientée objets et multi-agents du système d'information des systèmes de trafic urbain.,2001,6,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi6.html#ChabrolS01,http://isi.revuesonline.com/article.jsp?articleId=498 +Zohra Bellahsene,XML et les systèmes d'intégration de données.,2001,6,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi6.html#BellahseneB01,http://isi.revuesonline.com/article.jsp?articleId=201 +,Sommaire.,2011,16,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi16.html#X11d,http://isi.revuesonline.com/article.jsp?articleId=16710 +Rouaa Wannous,Utilisation des trajectoires de phoques dans un système d'alertes biologique pour le suivi de zone en temps réel.,2016,21,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi21.html#WannousMBV16,https://doi.org/10.3166/isi.21.4.83-104 +Emmanuel Bruno,Documents XML: un modèle et une algèbre.,2001,6,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi6.html#Bruno01,http://isi.revuesonline.com/article.jsp?articleId=496 +Stéphanie Bernonville,Réorganisation d'un système d'archivage de dossiers médicaux. Cas d'étude basé sur la modélisation des processus métiers.,2014,19,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi19.html#BernonvilleVB14,https://doi.org/10.3166/isi.19.1.41-66 +Sihem Amer-Yahia,SOCLE: Towards a framework for data preparation in social applications.,2014,19,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi19.html#Amer-YahiaIKUR14,https://doi.org/10.3166/isi.19.3.49-72 +F. Teng,Dynamic preservation approach design in digital preservation platform.,2012,17,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi17.html#TengMB12,https://doi.org/10.3166/isi.17.4.141-157 +Yann Pollet,Une approche algébrique pour la réutilisation et l'orchestration de services dans les sysèmes d'information.,2010,15,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi15.html#Pollet10,https://doi.org/10.3166/isi.15.5.63-88 +Marco Santórum G.,Approche de gestion des processus basée sur les jeux.,2011,16,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi16.html#GrFRM11,https://doi.org/10.3166/isi.16.1.33-59 +Maryam Radgui,évaluations qualitatives d'un mécanisme d'identification de fragments métiers réutilisables à partir de processus métiers.,2014,19,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi19.html#RadguiSM14,https://doi.org/10.3166/isi.19.1.97-123 +Nour Assy,Configuration assistée des processus métier. Conception et expérimentation.,2015,20,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi20.html#AssyGSD15,https://doi.org/10.3166/isi.20.6.59-78 +Samira Si-Said Cherfi,Introduction.,2014,19,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi19.html#CherfiH14,http://isi.revuesonline.com/article.jsp?articleId=19401 +Jean-Yves Tigli,Adaptation au contexte par tissage d'aspects d'assemblage de composants déclenchés par des conditions contextuelles.,2006,11,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi11.html#TigliCLR06,https://doi.org/10.3166/isi.11.5.89-114 +S. Miranda,Lessons inferred from NFC mobiquitous innovative information service.,2011,16,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi16.html#MirandaPITC11,https://doi.org/10.3166/isi.16.4.15-47 +,Editorial.,2004,9,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi9.html#X04, +Dominique Laurent,éditorial.,2007,12,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi12.html#Laurent07,http://isi.revuesonline.com/article.jsp?articleId=9929 +Philippe Ramadour,Approche et modèle pour la spécification de composants métier.,2002,7,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi7.html#Ramadour02,https://doi.org/10.3166/isi.7.4.61-82 +Guillaume Cabanac,Forum Jeunes Chercheurs à Inforsid 2014.,2015,20,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi20.html#CabanacDJLR15,https://doi.org/10.3166/isi.20.2.119-143 +Thierry Delot,Vers l'interopérabilité des modèles de localisation géométrique et sémantique au travers de l'utilisation de métadonnées.,2007,12,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi12.html#DelotLT07,https://doi.org/10.3166/isi.12.2.75-95 +Guillaume Cabanac,Activités documentaires des usagers au sein de l'organisation. Amélioration par la pratique d'annotation collective.,2009,14,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi14.html#CabanacCC009a,https://doi.org/10.3166/isi.14.3.97-117 +Jean-Marie Pinon,éditorial.,2007,12,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi12.html#PinonS07,http://isi.revuesonline.com/article.jsp?articleId=10814 +Marie-Noëlle Terrasse,Une plateforme multilangage pour l'ingénierie des systèmes d'information.,2003,8,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi8.html#TerrasseSLB03,https://doi.org/10.3166/isi.8.3.11-32 +Rémy Choquet,Solutions d'interopérabilité sémantique pour la surveillance de l'antibiorésistance en Europe.,2013,18,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi18.html#ChoquetKCJ13,https://doi.org/10.3166/isi.18.6.59-82 +Dana Codreanu,Spatio-temporal metadata filtering and synchronising in video-surveillance.,2016,21,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi21.html#CodreanuOPS16,https://doi.org/10.3166/isi.21.3.75-91 +Selmin Nurcan,Une méthode pour la définition de l'impact organisationnel du changement.,2002,7,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi7.html#NurcanBR02,https://doi.org/10.3166/isi.7.4.107-139 +Christine Delcroix,Approche transformationnelle de la réingénierie des données.,2001,6,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi6.html#DelcroixTH01,http://isi.revuesonline.com/article.jsp?articleId=501 +Azedine Boulmakoul,T-Warehousing for hazardous materials transportation.,2016,21,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi21.html#BoulmakoulKL16,https://doi.org/10.3166/isi.21.1.39-59 +Josiane Mothe,éditorial.,2006,11,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi11.html#Mothe06, +Jean-Marc Petit,éditorial.,2014,19,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi19.html#Petit14,http://isi.revuesonline.com/article.jsp?articleId=19798 +Luc Bouganim,Sécurisation matérielle du contrôle d'accès à des documents XML.,2005,10,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi10.html#BouganimNP05,https://doi.org/10.3166/isi.10.2.39-68 +Rébecca Deneckère,Introduction.,2013,18,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi18.html#DeneckereR13,http://isi.revuesonline.com/article.jsp?articleId=18381 +Florie Bugeaud,Ingénierie de systèmes de service dans la perspective SSME. Cas de la conception de services chez les opérateurs de télécommunication.,2011,16,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi16.html#BugeaudS11,https://doi.org/10.3166/isi.16.2.11-41 +Clementine Nemo,Réparation de modèles par transformations idempotentes.,2011,16,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi16.html#NemoBMR11,https://doi.org/10.3166/isi.16.5.73-108 +Damien Djaouti,Méthodes de conception de Serious Games. Vers un modèle générique ?,2015,20,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi20.html#Djaouti15,https://doi.org/10.3166/isi.20.1.37-62 +Mohamed Rouane Hacene,Aspects de la réingénierie des modèles UML par analyse de données relationnelles.,2007,12,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi12.html#HaceneDHV07,https://doi.org/10.3166/isi.12.5.39-68 +Selmin Nurcan,éditorial.,2010,15,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi15.html#NurcanBP10a,http://isi.revuesonline.com/article.jsp?articleId=15112 +Samuel Gesche,Exploitation de l'hétérogénéité entre points de vue-opinion. Une approche par l'alignement.,2009,14,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi14.html#Gesche09,http://isi.revuesonline.com/article.jsp?articleId=13268 +,éditorial.,2010,15,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi15.html#X10b,http://isi.revuesonline.com/article.jsp?articleId=15890 +Emilie Lerigoleur,PALEOPYR : un système d'information pour la gestion et l'exploitation de données paléoenvironnementales. Application au massif nord-pyrénéen.,2015,20,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi20.html#LerigoleurMJPG15,https://doi.org/10.3166/isi.20.3.63-87 +Leila Kosseim,La réponse automatique comme solution à la gestion des relations avec la clientèle Une application de la question-réponse.,2003,8,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi8.html#KosseimPL03,https://doi.org/10.3166/isi.8.3.91-114 +Mohand Boughanem,Un nouveau passage à l'échelle en recherche d'information.,2006,11,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi11.html#BoughanemTMCC06,https://doi.org/10.3166/isi.11.4.9-35 +Myriam Lewkowicz,Vers une démarche interdisciplinaire d'ingénierie des pratiques collectives.,2015,20,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi20.html#Lewkowicz15,https://doi.org/10.3166/isi.20.6.121-140 +,Sommaire.,2011,16,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi16.html#X11a,http://isi.revuesonline.com/article.jsp?articleId=16159 +Laurent Deruelle,An expert system-based change propagation process for web sites maintenance.,2001,6,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi6.html#DeruelleBMB01,http://isi.revuesonline.com/article.jsp?articleId=503 +Jacques Simonin,Méthode automatisée de conception de scénarios d'évolution organisationnelle fondée sur les processus et les buts.,2014,19,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi19.html#SimoninNB14,https://doi.org/10.3166/isi.19.2.9-33 +Laure-Hélène Thevenet,Alignement de la stratégie et du système d'information. Présentation de la méthode INSTAL.,2009,14,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi14.html#ThevenetRS09,https://doi.org/10.3166/isi.14.6.19-39 +Anas Hariri,Principes et étude de cas d'adaptation d'IHM dans les SI en fonction du contexte d'interaction de l'utilisateur.,2009,14,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi14.html#HaririLTK09,https://doi.org/10.3166/isi.14.3.141-162 +Ioana Manolescu,Un modèle de stockage de données XML basé sur les séquences.,2005,10,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi10.html#ManolescuABP05,https://doi.org/10.3166/isi.10.2.9-37 +Philippe Roose,éditorial.,2008,13,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi13.html#RooseS08,http://isi.revuesonline.com/article.jsp?articleId=11836 +Charles P. Pfleeger,Foreword - A Social Science Perspective of Trust and Cyber Security.,2017,22,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi22.html#PfleegerP17,http://isi.revuesonline.com/article.jsp?articleId=38014 +Dieudonné Tchuente,Dérivation de profils utilisateurs à partir des réseaux sociaux. Une approche par communautés de réseaux égocentriques.,2013,18,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi18.html#TchuenteCBPS13,https://doi.org/10.3166/isi.18.1.11-37 +Hongwei Zhu 0002,Reconciliation of temporal semantic heterogeneity in evolving information systems.,2009,14,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi14.html#0002M09,https://doi.org/10.3166/isi.14.6.59-74 +Maxime Morge,Mécanisme de rétribution pour les systèmes P2P d'échange de fichiers. Comment résoudre le problème du cavalier seul.,2007,12,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi12.html#MorgeM07,https://doi.org/10.3166/isi.12.3.61-84 +Mouhamadou Lamine Ba,Gestion de versions incertaines de documents XML.,2014,19,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi19.html#BaAS14,https://doi.org/10.3166/isi.19.4.9-34 +,Sommaire.,2011,16,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi16.html#X11c,http://isi.revuesonline.com/article.jsp?articleId=16481 +Fabien Duchateau,Improving quality and performance of schema matching in large scale.,2008,13,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi13.html#DuchateauBR08,https://doi.org/10.3166/isi.13.5.59-82 +William Raynaut,Dissimilarités entre jeux de données.,2017,22,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi22.html#RaynautSV17,https://doi.org/10.3166/isi.22.3.35-63 +Sheng Gao,Prédiction de liens temporels en intégrant les informations de contenu et de structure.,2012,17,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi17.html#GaoDG12,https://doi.org/10.3166/isi.17.6.75-90 +Virginie Goepp,Outils d'analyse dialectique pour la conception d'architecture de système d'information. Application aux systèmes d'information de production.,2006,11,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi11.html#GoeppK06,https://doi.org/10.3166/isi.11.1.9-37 +Franck Ravat,Langage pour bases multidimensionnelles: OLAP-SQL.,2002,7,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi7.html#RavatTZ02,https://doi.org/10.3166/isi.7.3.11-38 +Luc Bouganim,éditorial.,2012,17,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi17.html#Bouganim12,http://isi.revuesonline.com/article.jsp?articleId=17845 +Gilles Halin,Une approche par les modèles pour le suivi de l'activité coopérative de construction d'un bâtiment. Une interface multivue et des services métiers orientés gestion de chantier.,2008,13,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi13.html#HalinK08,https://doi.org/10.3166/isi.13.4.35-58 +Rébecca Deneckère,Construction de patrons à l'aide de métapatrons.,2002,7,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi7.html#Deneckere02,https://doi.org/10.3166/isi.7.4.83-105 +Frédéric Cadier,Decision makers support system. Adapting the assistance to the decision maker's behaviour.,2008,13,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi13.html#CadierCL08,https://doi.org/10.3166/isi.13.2.53-73 +Zohra Bellahsene,Matérialisation de vues dans les entrepôts de données. Une approche dynamique.,2006,11,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi11.html#BellahseneCT06,https://doi.org/10.3166/isi.11.6.33-53 +Gilles Halin,Modèle de coopération orienté relation pour une vision adaptative du projet Application à la conception architecturale.,2003,8,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi8.html#HalinHB03,https://doi.org/10.3166/isi.8.2.131-147 +Inès Gam,Documenter l'alignement d'un ED avec la stratégie d'entreprise en vue de mieux satisfaire les exigences des décideurs.,2006,11,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi11.html#GamTS06,https://doi.org/10.3166/isi.11.6.83-114 +Rajaa Saidi,Réutilisation orientée métier.,2011,16,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi16.html#SaidiFR11,https://doi.org/10.3166/isi.16.2.67-96 +Nicolas Anciaux,Exposition minimum de données pour des applications à base de classifieurs.,2013,18,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi18.html#AnciauxNV13,https://doi.org/10.3166/isi.18.4.59-85 +Jacky Akoka,Vers l'ingénierie des évolutions.,2009,14,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi14.html#AkokaC09,https://doi.org/10.3166/isi.14.6.9-17 +Farouk Toumani,éditorial.,2017,22,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi22.html#Toumani17,http://isi.revuesonline.com/article.jsp?articleId=38716 +,Editorial.,2003,8,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi8.html#X03c, +Amira Dhouib,Prioritizing the usability criteria of adaptive user interfaces of information systems based on ISO/IEC 25040 standard.,2017,22,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi22.html#DhouibTKN17,https://doi.org/10.3166/isi.22.4.107-128 +Sonia Guehis,Un modèle de production interactive de programmes de publication.,2008,13,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi13.html#GuehisGR08,https://doi.org/10.3166/isi.13.5.107-130 +Vishal Kapoor,Préservation de la vie privée. Recherche de motifs séquentiels dans des bases de données distribuées.,2007,12,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi12.html#KapoorPTT07,https://doi.org/10.3166/isi.12.1.85-107 +Corine Cauvet,éditorial.,2013,18,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi18.html#Cauvet13,http://isi.revuesonline.com/article.jsp?articleId=18380 +Michel Augeraud,Un modèle et une méthode de conception centrés interaction.,2007,12,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi12.html#AugeraudCS07,https://doi.org/10.3166/isi.12.4.95-114 +,Sommaire.,2012,17,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi17.html#X12c,http://isi.revuesonline.com/article.jsp?articleId=17844 +,Petasky. Gestion et exploration des grandes masses de données scientifiques issues d'observations astronomiques grand champ.,2014,19,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi19.html#Petasky14,http://isi.revuesonline.com/article.jsp?articleId=19655 +Pierre Konopacki,Modélisation de politiques de sécurité à l'aide d'une algèbre de processus. Présentation de la méthode EB3SEC.,2010,15,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi15.html#KonopackiFL10,http://isi.revuesonline.com/article.jsp?articleId=15088 +Catherine Roussey,Les ontologies en agriculture.,2011,16,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi16.html#RousseyCSB11,https://doi.org/10.3166/isi.16.3.55-84 +Laurent Yeh,Interrogation de sources XML dans un réseau pair-à-pair par extension d'un médiateur XQuery.,2007,12,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi12.html#YehGD07,https://doi.org/10.3166/isi.12.3.37-60 +Rima Grati,Une approche pour la prise de décision d'adaptation à base de logique floue pour les SaaS Composites.,2017,22,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi22.html#GratiBB17,https://doi.org/10.3166/isi.22.4.77-106 +Kamel Boukhalfa,Sélection de schéma de fragmentation horizontale dans les entrepôts de données. Formalisation et algorithmes.,2006,11,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi11.html#BoukhalfaB06,https://doi.org/10.3166/isi.11.6.55-82 +Hamdi Chaker,Une approche de gestion de contextes métiers pour l'accès à l'information.,2014,19,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi19.html#ChakerCT14,https://doi.org/10.3166/isi.19.2.111-135 +Romuald Thion,Découverte automatisée de hiérarchies de rôles pour les politiques de contrôle d'accès.,2008,13,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi13.html#ThionC08,https://doi.org/10.3166/isi.13.4.107-131 +Rima Bouchakri,Algorithmes de sélection des index de jointure binaires mono et multi-attributs.,2011,16,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi16.html#BouchakriBB11,https://doi.org/10.3166/isi.16.6.91-116 +Akram Idani,Infrastructure dirigée par les modèles pour une intégration adaptable et évolutive de UML et B.,2010,15,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi15.html#IdaniLL10,https://doi.org/10.3166/isi.15.3.87-112 +Julie Bourbeillon,Une perspective analytique pour la recherche d'information. Application : conception et évaluation de Tissue Microarrays.,2006,11,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi11.html#BourbeillonGG06,https://doi.org/10.3166/isi.11.1.109-135 +Max Chevalier,Usagers et recherche d'information. Modélisation des usagers pour la recherche d'information adaptative.,2009,14,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi14.html#Chevalier0SV09,https://doi.org/10.3166/isi.14.3.75-95 +François Rioult,Fouille de traces de jeu vidéo en compétition. Une approche stratégique et sportive.,2012,17,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi17.html#RioultMHSD12,https://doi.org/10.3166/isi.17.2.99-120 +Daniel Lang,Retour d'expérience sur l'insertion d'un Serious Game dans l'apprentissage des systèmes d'information.,2015,20,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi20.html#LangCB15,https://doi.org/10.3166/isi.20.1.11-36 +Etienne Cuvelier,Analyse de réseaux sociaux pour les administrations. Une expérience d'intégration de réseaux sociaux internes et externes dans une administration.,2012,17,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi17.html#CuvelierBAK12,https://doi.org/10.3166/isi.17.6.17-39 +Gloria Elena Jaramillo,Du contrôle de la collaboration humaine vers des contrats de service sémantiques pour la sécurité de l'information.,2017,22,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi22.html#JaramilloMA17,https://doi.org/10.3166/isi.22.1.43-64 +Omar Boucelma,InterMed: interface de me'diation pour les systèmes d'information.,2001,6,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi6.html#BoucelmaL01,http://isi.revuesonline.com/article.jsp?articleId=202 +Lobna Azaza,Une approche de filtrage d'opinions à base de crédibilité dans un contexte de réseaux sociaux.,2015,20,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi20.html#AzazaFB15,https://doi.org/10.3166/isi.20.4.63-84 +Yamine Aït Ameur,Développements formels d'interfaces multimodales fondés sur la preuve et le raffinement. Scénarios de développement.,2008,13,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi13.html#AmeurABM08,https://doi.org/10.3166/isi.13.2.127-154 +Florence Amardeilh,Enrichissement de bases de connaissances par l'annotation sémantique. Plate-forme web sémantique couplée avec des outils linguistiques pour des activités de veille et d'édition.,2006,11,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi11.html#AmardeilhF06,https://doi.org/10.3166/isi.11.2.53-70 +Nicolas Usunier,Résumé automatique de texte avec un algorithme d'ordonnancement.,2006,11,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi11.html#UsunierAG06,https://doi.org/10.3166/isi.11.2.71-91 +Philippe Dhaussy,Mise en and#339*uvre de composants MDA pour la validation formelle de modèles de systèmes d'information embarqués.,2007,12,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi12.html#DhaussyB07,https://doi.org/10.3166/isi.12.5.133-157 +Hervé Verjus,Cadre conceptuel pour la modélisation et la supervision d'architectures à base de services. Une approche pour l'ingénierie des SI à base de services.,2011,16,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi16.html#VerjusPF11,https://doi.org/10.3166/isi.16.5.43-72 +Guy Pierra,Bases de données à base ontologique. Principe et mise en oeuvre.,2005,10,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi10.html#PierraHAB05,https://doi.org/10.3166/isi.10.2.91-115 +Manel Mezghani,De l'influence de l'enrichissement de profil utilisateur sur la propagation de buzz dans les médias sociaux. Expérimentations sur Delicious.,2016,21,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi21.html#MezghaniPSOQC16,https://doi.org/10.3166/isi.21.4.67-81 +Christine Collet,De la gestion de bases de données à la gestion de grands espaces de données.,2013,18,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi18.html#ColletABBBDGPHS13,https://doi.org/10.3166/isi.18.4.11-31 +Marion Latapy-Etcheverry,Prise en compte du genre pour la conception d'applications interactives. Propositions et expériences.,2007,12,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi12.html#Latapy-EtcheverryLD07,https://doi.org/10.3166/isi.12.6.119-145 +Jacky Akoka,Qualité perçue des schémas conceptuels. Etude comparée informaticiens vs. utilisateurs.,2009,14,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi14.html#AkokaCC09,https://doi.org/10.3166/isi.14.4.33-54 +Nicole Bidoit,Immutably answering Why-Not questions for equivalent conjunctive queries.,2015,20,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi20.html#BidoitHT15,https://doi.org/10.3166/isi.20.5.27-52 +Marlène Villanova-Oliver,Cinq modèles pour intégrer l'accès progressif dans les systèmes d'information sur le web.,2003,8,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi8.html#Villanova-OliverGM03,https://doi.org/10.3166/isi.8.4.53-82 +Sonia Ayachi Ghannouchi,Proposition et expérimentation d'un métamodèle pour la réingénierie des processus métiers.,2008,13,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi13.html#GhannouchiM08,https://doi.org/10.3166/isi.13.3.105-129 +Benjamin Bertin,Base de données sémantique d'inventaires en cycle de vie.,2013,18,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi18.html#BertinSPR13,https://doi.org/10.3166/isi.18.2.103-128 +Marie Thilliez,évaluation de requêtes mobiles par composition dynamique de services.,2013,18,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi18.html#ThilliezD13,https://doi.org/10.3166/isi.18.1.107-123 +Françoise Anceaux,Prise en charge de patients à domicile. Elaboration de systèmes d'information coopératifs.,2003,8,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi8.html#AnceauxBBWBL03,https://doi.org/10.3166/isi.8.2.75-93 +Alain-Jérôme Fougères,Des agents communicants pour simuler et détecter des épidémies.,2003,8,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi8.html#Fougeres03,https://doi.org/10.3166/isi.8.1.91-112 +Myriam Karoui,Big data. Mise en perspective et enjeux pour les entreprises.,2014,19,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi19.html#KarouiDD14,https://doi.org/10.3166/isi.19.3.73-92 +Michel Lutz,Couplage entre système de production industriel et technologies de l'information. Modélisation et création de connaissance.,2012,17,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi17.html#LutzBRG12,https://doi.org/10.3166/isi.17.4.95-117 +Helga Duarte,Vers un modèle de composition de services web avec propriétés transactionnelles.,2005,10,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi10.html#DuarteFDB05,https://doi.org/10.3166/isi.10.3.9-28 +Claude Chrisment,Recherche en systèmes d'information. Axes prioritaires.,2007,12,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi12.html#Chrisment07,https://doi.org/10.3166/isi.12.4.11-20 +Bogdan Cautis,Recherche top-k dépendant d'un contexte à l'aide de vues.,2013,18,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi18.html#CautisM13,https://doi.org/10.3166/isi.18.4.109-144 +Lilia Gzara Yesilbas,Conception Coopérative de produits mécaniques: aide à la gestion de conflits.,2003,8,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi8.html#YesilbasL03,https://doi.org/10.3166/isi.8.2.113-129 +Jacky Akoka,La rétroconception des bases de données et des systèmes de fichiers - Un état de l'art.,2001,6,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi6.html#AkokaC01,http://isi.revuesonline.com/article.jsp?articleId=500 +Mokrane Bouzeghoub,Génération de requêtes de médiation intégrant le nettoyage de données.,2002,7,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi7.html#BouzeghoubKS02,https://doi.org/10.3166/isi.7.3.39-66 +Sean W. Hansen,Emerging principles for requirements processes in organizational contexts.,2008,13,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi13.html#HansenBL08,https://doi.org/10.3166/isi.13.1.9-35 +Yann Bachy,La sécurité des box ADSL. Analyse de risques et expérimentations.,2014,19,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi19.html#BachyNAKC14,https://doi.org/10.3166/isi.19.6.63-88 +Fraihat Salam,Indexation rapide de documents audio par traitement morphologique de la parole.,2010,15,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi15.html#SalamG10,https://doi.org/10.3166/isi.15.2.29-48 +Pierre Gaillard,Un graphe génératif pour la classification semi-supervisée.,2010,15,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi15.html#GaillardAG10,https://doi.org/10.3166/isi.15.2.97-119 +Angela Carrillo Ramos,Génération de profils contextuels à partir de préférences d'utilisateurs nomades.,2006,11,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi11.html#RamosVGM06,https://doi.org/10.3166/isi.11.5.61-88 +Marc Plantevit,Motifs séquentiels multidimensionnels et mesure. Différentes techniques pour calculer le support.,2008,13,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi13.html#PlantevitLT08,https://doi.org/10.3166/isi.13.6.9-32 +Kaïs Khrouf,Exploitation d'une mémoire d'entreprise à partir d'entrepôts textuels.,2001,6,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi6.html#KhroufSZ01,http://isi.revuesonline.com/article.jsp?articleId=204 +Michelle Chabrol,Un environnement de modélisation pour le système d'information de la Supply Chain. Application au Nouvel Hôpital Estaing.,2006,11,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi11.html#ChabrolFGT06,https://doi.org/10.3166/isi.11.1.137-162 +Alfonso García Frey,Model based self-explanatory user interfaces.,2017,22,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi22.html#FreyDC17,https://doi.org/10.3166/isi.22.4.129-157 +Florence Le Ber,Le projet Fresqueau. Exploiter les données massives concernant les cours d'eau.,2014,19,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi19.html#BerTBCGP14,http://isi.revuesonline.com/article.jsp?articleId=19661 +Vijay Ingalalli,Leveraging efficient indexing schema to support multigraph query answering.,2016,21,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi21.html#IngalalliIP16,https://doi.org/10.3166/isi.21.3.53-74 +Dhouha Anane,Coordination d'activités dans les chaînes logistiques. Une approche multi-agent par formation de coalitions.,2009,14,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi14.html#AnaneAP09,https://doi.org/10.3166/isi.14.2.113-136 +Aurel Randolph,Spécification et analyse d'un protocole de contrôle d'accès optimiste pour éditeurs collaboratifs répartis.,2014,19,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi19.html#RandolphIBQ14,https://doi.org/10.3166/isi.19.6.9-32 +,Introduction: Systèmes Collaboratifs et Réseaux Sociaux.,2015,20,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi20.html#X15,http://isi.revuesonline.com/article.jsp?articleId=21259 +Imed Boughzala,La méthode MAIN+ pour la digitalisation de la collaboration.,2015,20,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi20.html#BoughzalaR15,https://doi.org/10.3166/isi.20.4.113-139 +Abderrahman Matoussi,Une approche pour la prise en compte des buts non fonctionnels dans les spécifications abstraites Event-B.,2012,17,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi17.html#MatoussiL12,https://doi.org/10.3166/isi.17.3.95-118 +Néjib Moalla,Introduction Interopérabilité et partage de connaissances.,2012,17,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi17.html#MoallaPB12,http://isi.revuesonline.com/article.jsp?articleId=17750 +E. Mermet,Méthodes d'exploration arborescente des propriétés structurelles d'un réseau de transport.,2012,17,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi17.html#MermetG12,https://doi.org/10.3166/isi.17.1.79-101 +Mahdi Washha,Behavioural account-based features for filtering out social spammers in large-scale twitter data collections.,2017,22,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi22.html#WashhaMS17,https://doi.org/10.3166/isi.22.3.65-88 +Nicolas Hanusse,Dépendances fonctionnelles et requêtes skyline multidimensionnelles.,2015,20,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi20.html#HanusseWMO15,https://doi.org/10.3166/isi.20.5.9-26 +,Editorial.,2002,7,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi7.html#X02b, +,Sommaire.,2011,16,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi16.html#X11b,http://isi.revuesonline.com/article.jsp?articleId=16342 +,Editorial.,2003,8,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi8.html#X03a, +Jean-Michel Cauvin,Diagnostic assisté par ordinateur en endoscopie digestive.,2003,8,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi8.html#CauvinGS03,https://doi.org/10.3166/isi.8.1.55-73 +Nicole Bidoit-Tollu,Machines pour flux de données. Comparaison de langages de requêtes continues.,2008,13,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi13.html#Bidoit-TolluO08,https://doi.org/10.3166/isi.13.5.9-32 +Jean-Michel Follin,Enrichissement d'une base de données routière à partir de trajectoires GPS de véhicules d'urgence. Application à l'aide au choix d'itinéraires.,2012,17,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi17.html#FollinMBPS12,https://doi.org/10.3166/isi.17.1.35-54 +Pablo Becker,Measurement and evaluation as a quality driver.,2010,15,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi15.html#BeckerMO10,https://doi.org/10.3166/isi.15.6.33-62 +Charlotte Hug,Ingénierie des processus. Une approche à base de patrons.,2008,13,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi13.html#HugFR08,https://doi.org/10.3166/isi.13.4.11-34 +,Introduction.,2016,21,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi21.html#X16,http://isi.revuesonline.com/article.jsp?articleId=35800 +Agnès Front,Introduction.,2015,20,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi20.html#FrontS15,http://isi.revuesonline.com/article.jsp?articleId=20208 +Fabien Amarger,Construction d'une ontologie par transformation de systèmes d'organisation des connaissances et évaluation de la confiance.,2015,20,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi20.html#AmargerCHHR15,https://doi.org/10.3166/isi.20.3.37-61 +Guillaume Noël,Indexation multidimensionnelle de bases de données capteur temps-réel et spatio-temporelles.,2005,10,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi10.html#NoelS05,https://doi.org/10.3166/isi.10.4.59-88 +David Guéron,Agrégation d'activités. Découverte de profils de vols à partir des traces des paramètres.,2012,17,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi17.html#GueronCM12,https://doi.org/10.3166/isi.17.2.73-97 +Guillaume Godet-Bar,Vers une méthode de conception de systèmes mixtes. Principes et mise en and#339*uvre.,2007,12,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi12.html#Godet-BarJDR07,https://doi.org/10.3166/isi.12.6.39-66 +Stéphanie Chollet,Orchestration de services hétérogènes et sécurisés dans un environnement dynamique. Une approche dirigée par les modèles.,2011,16,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi16.html#CholletL11,https://doi.org/10.3166/isi.16.2.127-150 +Sihem Mallek,Catégorisation et formalisation des exigences d'interopérabilité dans les processus collaboratifs.,2010,15,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi15.html#MallekDC10,https://doi.org/10.3166/isi.15.5.37-61 +Christophe Thovex,Réseaux de compétences. De l'analyse des réseaux sociaux à l'analyse prédictive des connaissances.,2012,17,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi17.html#ThovexT12,https://doi.org/10.3166/isi.17.6.41-73 +Imen Sayar,La validation dans les premières étapes du processus de dévelopement.,2017,22,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi22.html#SayarS17,https://doi.org/10.3166/isi.22.4.11-41 +Sekedoua Kouadio,Diffuser une alerte aux crues rapides via une application smartphone en France. De la théorie à la mise en pratique.,2016,21,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi21.html#KouadioD16,https://doi.org/10.3166/isi.21.4.49-66 +Nicolas Bioret,Géolocalisation en milieu urbain par appariement entre une collection d'images et un SIG 2D.,2009,14,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi14.html#BioretMS09,https://doi.org/10.3166/isi.14.5.107-131 +Fadoi Lakhal,Co-évolution des modèles et de leurs métamodèles. Application à l'évolution des profils UML.,2013,18,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi18.html#LakhalDR13,https://doi.org/10.3166/isi.18.2.45-73 +Jérôme Lard,Un cadre de conception pour réunir les modèles d'interaction et l'ingénierie des interfaces.,2007,12,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi12.html#LardLGF07,https://doi.org/10.3166/isi.12.6.67-91 +Káthia Marçal de Oliveira,Introduction.,2013,18,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi18.html#OliveiraR13,http://isi.revuesonline.com/article.jsp?articleId=18649 +Salim Chehida,Extensions du diagramme d'activité pour la spécification de politiques RBAC.,2016,21,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi21.html#ChehidaILR16,https://doi.org/10.3166/isi.21.2.11-37 +Jacques Simonin,Conception fonctionnelle de services d'entreprise fondée sur l'alignement entre coeur de métier et système d'information.,2010,15,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi15.html#SimoninPJ10,https://doi.org/10.3166/isi.15.4.37-61 +Hind Fadil,Vers une approche formelle pour la validation des protocoles d'interaction en systèmes multi-agents.,2008,13,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi13.html#FadilK08,https://doi.org/10.3166/isi.13.2.33-52 +Isabelle Comyn-Wattiau,La qualité des systèmes d'information.,2010,15,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi15.html#Comyn-WattiauAB10,https://doi.org/10.3166/isi.15.6.9-32 +François Lemieux,Conception centrée sur l'utilisateur lors de la définition des exigences en RUP©*. Une étude de cas.,2007,12,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi12.html#LemieuxD07,https://doi.org/10.3166/isi.12.6.9-37 +Rabab Hayek,Summary management in unstructured P2P systems.,2008,13,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi13.html#HayekRVM08,https://doi.org/10.3166/isi.13.5.83-106 +Faïza Ghozzi,Matérialisation des vues dans un modèle multidimensionnel contraint.,2003,8,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi8.html#Ghozzi03,https://doi.org/10.3166/isi.8.4.9-33 +Eric Leclercq,Système d'information pour la production de connaissances. L'approche wiki sémantique.,2012,17,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi17.html#LeclercqS12,https://doi.org/10.3166/isi.17.3.143-166 +Ely Beibou,SICP : système d'information collaboratif pour l'environnement et la gestion durable des pêches en Mauritanie.,2015,20,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi20.html#BeibouGB15,https://doi.org/10.3166/isi.20.3.11-35 +Jorge Luis Pérez-Medina,Approche orientée services pour la construction des environnements de modélisation.,2010,15,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi15.html#Perez-MedinaDR10,https://doi.org/10.3166/isi.15.4.113-137 +Patrick Kamnang Wanko,Calculer et compresser le skycube négatif.,2017,22,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi22.html#WankoMH17,https://doi.org/10.3166/isi.22.3.9-33 +Catherine Morel-Pair,Métadonnées et XML. Des standards efficients de l'environnement numérique.,2007,12,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi12.html#Morel-Pair07,https://doi.org/10.3166/isi.12.2.9-39 +T. Et Enjeux,Sommaire.,2012,17,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi17.html#Enjeux12,http://isi.revuesonline.com/article.jsp?articleId=17728 +S. Miranda,Systèmes d'information mobiquitaires la mobiquité. Introduction : de l'utilisateur au nuage.,2011,16,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi16.html#Miranda11,http://isi.revuesonline.com/article.jsp?articleId=16482 +Franck Ravat,éditorial.,2008,13,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi13.html#RavatTZ08, +Ganesh Ramakrishnan,Text Representation with WordNet Synsets Using Soft Sense Disambiguation.,2003,8,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi8.html#RamakrishnanB03,https://doi.org/10.3166/isi.8.3.55-70 +Sandro Bimonte,A generic geovisualization model for spatial OLAP and its implementation in a standards-based architecture.,2014,19,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi19.html#Bimonte14,https://doi.org/10.3166/isi.19.5.97-118 +Nadira Lammari,Introduction.,2014,19,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi19.html#LammariCL14,http://isi.revuesonline.com/article.jsp?articleId=19994 +,Editorial.,2003,8,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi8.html#X03b, +,Préface.,2001,6,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi6.html#X01a,http://isi.revuesonline.com/article.jsp?articleId=493 +Geneviève Pujolle,Fonctions d'agrégation pour l'analyse en ligne (OLAP) de données textuelles. Fonctions TOP_KWk et AVG_KW opérant sur des termes.,2008,13,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi13.html#PujolleRTT08,https://doi.org/10.3166/isi.13.6.61-84 +Colette Rolland,An intentional view of service-oriented computing.,2008,13,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi13.html#RollandSK08,https://doi.org/10.3166/isi.13.1.107-137 +Amira Ben Hamida,Une approche pour un chargement contextuel de services dans les environnements pervasifs.,2008,13,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi13.html#HamidaMFB08,https://doi.org/10.3166/isi.13.3.59-82 +C. Turhan,Exploiting Structural Similarity in a Multilingual Machine Translation System.,2003,8,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi8.html#CTurhan03,https://doi.org/10.3166/isi.8.3.71-89 +Amélie Imafouo,Vers des protocoles d'évaluation du passage à l'échelle.,2006,11,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi11.html#ImafouoB06,https://doi.org/10.3166/isi.11.4.37-53 +,Editorial.,2002,7,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi7.html#X02c, +Soumaya Cherichi,Tweets analysis for event detection.,2016,21,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi21.html#CherichiF16,https://doi.org/10.3166/isi.21.1.61-80 +Imen Ben Sassi,Recherche d'information contextuelle basée sur la prédiction des intérêts des utilisateurs et leurs relations sociales.,2013,18,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi18.html#SassiTBY13,https://doi.org/10.3166/isi.18.1.59-84 +Sébastien Nedjar,Cubes convexes.,2006,11,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi11.html#NedjarCCL06,https://doi.org/10.3166/isi.11.6.11-31 +Franck Ravat,Vers un modèle unifié de données entreposées et de données ouvertes liées. Concepts et expérimentations.,2017,22,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi22.html#RavatST17,https://doi.org/10.3166/isi.22.2.35-67 +Sandra Michelet,Interprétation automatique de traces d'activités issues de différents contextes pour une modélisation du diagnostic.,2012,17,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi17.html#MicheletLAM12,https://doi.org/10.3166/isi.17.2.41-72 +Loïc Petit,Préférences contextuelles pour la personnalisation des requêtes sur flux de données.,2013,18,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi18.html#PetitARL13,https://doi.org/10.3166/isi.18.4.87-108 +Antoine Beugnard,Des situations de modélisation pour décrire un processus de modélisation.,2015,20,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi20.html#BeugnardDGG15,https://doi.org/10.3166/isi.20.2.41-66 +Jean-Stéphane Ulmer,Proposition d'une approche générique pour la formalisation et l'implémentation des processus.,2010,15,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi15.html#UlmerBL10,https://doi.org/10.3166/isi.15.4.63-87 +Laure Berti-équille,Integration of biological data on transcriptome.,2001,6,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi6.html#Berti-EquilleMA01,http://isi.revuesonline.com/article.jsp?articleId=203 +Manel Mezghani,Analyse du comportement d'annotation du réseau social d'un utilisateur pour la détection des intérêts.,2015,20,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi20.html#MezghaniPZAS15,https://doi.org/10.3166/isi.20.4.85-111 +Annick Majchrowski,Confrontation d'un modèle d'échange de données dosimétriques avec l'état des pratiques franco-belges.,2013,18,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi18.html#MajchrowskiPO13,https://doi.org/10.3166/isi.18.6.33-57 +Xavier Marsault,Reconnaissance automatique de réseaux viaires urbains plausibles via un algorithme d'optimisation par colonies de fourmis.,2012,17,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi17.html#Marsault12,https://doi.org/10.3166/isi.17.1.103-126 +Quoc-Cuong To,Exécution sécurisée de requêtes avec agrégats sur des données distribuées.,2014,19,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi19.html#ToNP14,https://doi.org/10.3166/isi.19.4.118-143 +Luz-María Priego-Roche,Vers une caractérisation intentionnelle des organisations virtuelles.,2010,15,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi15.html#Priego-RocheRF10,https://doi.org/10.3166/isi.15.3.61-86 +Mireille Blay-Fornarino,Architecture pour l'adaptation de systèmes d'information interactifs orientés services.,2007,12,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi12.html#Blay-FornarinoHJLMPRRT07,https://doi.org/10.3166/isi.12.6.93-118 +Philippe Cottier,L'usager concepteur en situation. Conception collective d'un livret électronique d'apprentissage (LéA).,2009,14,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi14.html#CottierE09,https://doi.org/10.3166/isi.14.3.53-73 +Tarak Chaari,Génération et adaptation automatiques des interfaces utilisateurs pour des environnements multiterminaux Projet SEFAGI (Simple Environment For Adaptable Graphical Interfaces).,2004,9,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi9.html#ChaariL04,https://doi.org/10.3166/isi.9.2.11-38 +Fayçal Hamdi,Une approche pour évaluer la complétude de données RDF.,2016,21,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi21.html#HamdiC16,https://doi.org/10.3166/isi.21.3.31-52 +Salah Baïna,Apport de l'approche MDA pour une interopérabilité sémantique. Interopérabilité des systèmes d'information d'entreprise.,2006,11,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi11.html#BainaPB06,https://doi.org/10.3166/isi.11.3.11-29 +Thierry Février Quesada,Une démarche centrée utilisateur pour la conception d'un portail coopératif d'aide à l'innovation.,2003,8,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi8.html#QuesadaDL03,https://doi.org/10.3166/isi.8.2.11-31 +Florence Sèdes,éditorial.,2016,21,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi21.html#SedesDP16,http://isi.revuesonline.com/article.jsp?articleId=36931 +Rahee Ghurbhurn,Accès à des sources de données hétérogènes par des processus métiers intégrés.,2006,11,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi11.html#GhurbhurnBS06,https://doi.org/10.3166/isi.11.3.53-72 +Mireille Blay-Fornarino,éditorial.,2017,22,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi22.html#Blay-FornarinoR17,http://isi.revuesonline.com/article.jsp?articleId=38449 +Cesar Augusto Tacla,Construction d'une mémoire de groupe pour des projets de R and D Une approche combinant agents et collecticiel.,2003,8,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi8.html#TaclaB03,https://doi.org/10.3166/isi.8.2.57-73 +Michel Augeraud,Aide à la décision pour la conception de systèmes complexes. Une approche SMA.,2008,13,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi13.html#AugeraudBCS08,https://doi.org/10.3166/isi.13.2.9-32 +Deja Hepziba Francis,MODIS. A Moving Object Database Interface System.,2005,10,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi10.html#FrancisMS05,https://doi.org/10.3166/isi.10.5.59-94 +Haizhou Li,Test de simulation pour les processus métiers centrés données probabilistes.,2014,19,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi19.html#LiPT14,https://doi.org/10.3166/isi.19.4.35-60 +Guillaume Cabanac,Visualisation et exploration du capital documentaire d'une organisation au travers d'une interface multifacette.,2009,14,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi14.html#CabanacCC009,https://doi.org/10.3166/isi.14.2.35-60 +Fernando Lemos,Using the QBox platform to assess quality in data integration systems.,2010,15,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi15.html#LemosBBK10,https://doi.org/10.3166/isi.15.6.105-124 +Collectif Amadeus,Amadeus. Analyse de données massives en sciences de la terre et de l'univers.,2014,19,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi19.html#Amadeus14,http://isi.revuesonline.com/article.jsp?articleId=19656 +M. Fahkri,Méthodes d'ingénierie de systèmes d'information à base de services.,2011,16,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi16.html#FahkriC11,https://doi.org/10.3166/isi.16.2.43-66 +Hubert Naacke,Routage de transactions dans un cluster de bases de données répliquées.,2004,9,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi9.html#NaackeNV04,https://doi.org/10.3166/isi.9.1.85-107 +Etienne Cocquebert,Méthode d'aide à la conception basée sur la réutilisation conceptuelle et logicielle.,2008,13,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi13.html#CocquebertTT08,https://doi.org/10.3166/isi.13.3.9-33 +Rémy Kessler,Classification automatique de courriers électroniques par des méthodes mixtes d'apprentissage.,2006,11,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi11.html#KesslerME06,https://doi.org/10.3166/isi.11.2.93-112 +Houssem Jerbi,Recommandation de requêtes dans les bases de données multidimensionnelles annotées.,2011,16,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi16.html#JerbiPRT11,https://doi.org/10.3166/isi.16.1.113-138 +Kamel Boukhalfa,De l'optimisation de requêtes aux outils d'administration des entrepôts de données.,2008,13,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi13.html#BoukhalfaBC08,https://doi.org/10.3166/isi.13.6.33-60 +Fabian Panse,Relational data completeness in the presence of maybe-tuples.,2010,15,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi15.html#PanseR10,https://doi.org/10.3166/isi.15.6.85-104 +Arnaud Brossard,Modélisation conceptuelle des IHM. Une approche globale s'appuyant sur les processus métier.,2007,12,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi12.html#BrossardAK07,https://doi.org/10.3166/isi.12.5.69-108 +Patrick Bosc,éditorial.,2006,11,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi11.html#Bosc06,http://isi.revuesonline.com/article.jsp?articleId=8948 +Sameh Hbaieb Turki,La modélisation des propriétés non fonctionnelles dans les processus métiers. Une approche basée sur les services.,2013,18,Ingénierie des Systèmes d'Information,5,db/journals/isi/isi18.html#TurkiCBB13,https://doi.org/10.3166/isi.18.5.9-32 +Morgan Mangeas,Le système EAUNET. Un système d'information intégrant une modélisation dynamique des risques de pollution pour l'aide à la gestion de l'eau douce.,2005,10,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi10.html#MangeasLTL05,https://doi.org/10.3166/isi.10.4.11-34 +Ghazar Chahbandarian,Predicting the encoding of secondary diagnoses. An experience based on decision trees.,2017,22,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi22.html#ChahbandarianBM17,https://doi.org/10.3166/isi.22.2.69-94 +Claudia Gutiérrez,Métadonnées spatiotemporelles temps réel.,2007,12,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi12.html#GutierrezS07,https://doi.org/10.3166/isi.12.2.97-119 +Marios C. Angelides,A Video Content Independent Mining Algorithm for Evolved Rule-based Detection of Scene Boundaries.,2005,10,Ingénierie des Systèmes d'Information,1,db/journals/isi/isi10.html#AngelidesL05,https://doi.org/10.3166/isi.10.1.81-99 +Nadira Lammari,Rétroconcevoir des sites web semi-structurés.,2009,14,Ingénierie des Systèmes d'Information,6,db/journals/isi/isi14.html#LammariE09,https://doi.org/10.3166/isi.14.6.75-106 +Eddie Soulier,Simulation des pratiques collaboratives pour la conception des SI basés sur les processus métiers.,2006,11,Ingénierie des Systèmes d'Information,3,db/journals/isi/isi11.html#SoulierL06,https://doi.org/10.3166/isi.11.3.73-94 +Jolita Ralyté,Introduction.,2015,20,Ingénierie des Systèmes d'Information,2,db/journals/isi/isi20.html#Ralyte15,http://isi.revuesonline.com/article.jsp?articleId=20758 +Bogdan Moisuc,GenGHIS. Un outil de modélisation spatio-temporelle pour le suivi historique des risques naturels.,2005,10,Ingénierie des Systèmes d'Information,4,db/journals/isi/isi10.html#MoisucDGM05,https://doi.org/10.3166/isi.10.4.35-58 +Avi Loewenstein,Ticket Sniping.,2010,8,JTHTL,1,db/journals/jthtl/jthtl8.html#Loewenstein10,http://www.jthtl.org/content/articles/V8I1/JTHTLv8i1_Loewenstein.PDF +Barbara van Schewick,Towards an Economic Framework for Network Neutrality Regulation.,2007,5,JTHTL,2,db/journals/jthtl/jthtl5.html#Schewick07,http://www.jthtl.org/content/articles/V5I2/JTHTLv5i2_vanSchewick.PDF +Mark Cooper,Structured Viral Communications: The Political Economy and Social Organization of Digital Disintermediation.,2011,9,JTHTL,1,db/journals/jthtl/jthtl9.html#Cooper11,http://www.jthtl.org/content/articles/V9I1/JTHTLv9i1_Cooper.PDF +John Matthew Williamson,Rights Management in Digital Media Content: A Case for FCC Intervention in the Standardization Process.,2005,3,JTHTL,2,db/journals/jthtl/jthtl3.html#Williamson05,http://www.jthtl.org/content/articles/V3I2/JTHTLv3i2_Williamson.PDF +Lynne Holt,Federal Regulation and Competitive Access to Multiple-Unit Premises: More Choice in Communications Services?,2008,6,JTHTL,2,db/journals/jthtl/jthtl6.html#HoltJ08,http://www.jthtl.org/content/articles/V6I2/JTHTLv6i2_HoltJamison.PDF +Michael K. Powell,Preserving Internet Freedom: Guiding Principles for the Industry.,2004,3,JTHTL,1,db/journals/jthtl/jthtl3.html#Powell04,http://www.jthtl.org/content/articles/V3I1/JTHTLv3i1_Powell.PDF +Gigi B. Sohn,Don't Mess With Success: Government Technology Mandates and the Marketplace for Online Content.,2006,5,JTHTL,1,db/journals/jthtl/jthtl5.html#Sohn06,http://www.jthtl.org/content/articles/V5I1/JTHTLv5i1_Sohn.PDF +Robert M. Scott,Deep Linking: Policy and Rule Considerations for Safeguarding Open Internet Navigation.,2002,1,JTHTL,1,db/journals/jthtl/jthtl1.html#Scott02,http://www.jthtl.org/content/articles/V1I1/JTHTLv1i1_Scott.PDF +Joe Waz,Internet Governance: The Role of Multistakeholder Organizations.,2012,10,JTHTL,2,db/journals/jthtl/jthtl10.html#WazW12,http://www.jthtl.org/content/articles/V10I2/JTHTLv10i2_WazWeiser.PDF +Michael Beylkin,Much Ado About Nothing: The Biotech and Pharmaceutical Industries Have Little to Fear in the Post-eBay World.,2007,6,JTHTL,1,db/journals/jthtl/jthtl6.html#Beylkin07,http://www.jthtl.org/content/articles/V6I1/JTHTLv6i1_Beylkin.PDF +Devin Looijen,Time for a Change: The Schema of Contract in the Digital Era.,2010,8,JTHTL,2,db/journals/jthtl/jthtl8.html#Looijen10,http://www.jthtl.org/content/articles/V8I2/JTHTLv8i2_Looijen.PDF +Eric P. Schmidt,Introduction.,2011,9,JTHTL,2,db/journals/jthtl/jthtl9.html#Schmidt11b,http://www.jthtl.org/content/articles/V9I2/JTHTLv9i2_Intro.PDF +Kimberley Byer,The Death of the First Sale Doctrine.,2013,11,JTHTL,2,db/journals/jthtl/jthtl11.html#Byer13,http://www.jthtl.org/content/articles/V11I2/JTHTLv11i2_Byer.PDF +Catherine Tucker,Empirical Research on the Economic Effects of Privacy Regulation.,2012,10,JTHTL,2,db/journals/jthtl/jthtl10.html#Tucker12,http://www.jthtl.org/content/articles/V10I2/JTHTLv10i2_Tucker.PDF +Nicholas Economides,Patents and Antitrust: Application to Adjacent Markets.,2008,6,JTHTL,2,db/journals/jthtl/jthtl6.html#EconomidesH08,http://www.jthtl.org/content/articles/V6I2/JTHTLv6i2_EconomidesHebert.PDF +Kevin Werbach,Breaking the Ice: Rethinking Telecommunications Law for the Digital Age.,2005,4,JTHTL,1,db/journals/jthtl/jthtl4.html#Werbach05,http://www.jthtl.org/content/articles/V4I1/JTHTLv4i1_Werbach.PDF +Gábor Molnár,Measuring Broadband Internet Prices.,2014,12,JTHTL,1,db/journals/jthtl/jthtl12.html#MolnarSS14,http://www.jthtl.org/content/articles/V12I1/JTHTLv12i1_Molnar.PDF +Philip J. Weiser,Regulatory Challenges and Models of Regulation.,2003,2,JTHTL,1,db/journals/jthtl/jthtl2.html#Weiser03,http://www.jthtl.org/content/articles/V2I1/JTHTLv2i1_Weiser.PDF +Douglas C. Sicker,Misunderstanding the Layered Model(s).,2006,4,JTHTL,2,db/journals/jthtl/jthtl4.html#SickerB06,http://www.jthtl.org/content/articles/V4I2/JTHTLv4i2_SickerBlumensaadt.PDF +Zakary Kessler,Getting One Step Closer to a Commercial eMortgate.,2013,11,JTHTL,2,db/journals/jthtl/jthtl11.html#Kessler13,http://www.jthtl.org/content/articles/V11I2/JTHTLv11i2_Kessler.PDF +Philip J. Weiser,The Future Of 9-1-1: New Technologies and the Need For Reform.,2008,6,JTHTL,2,db/journals/jthtl/jthtl6.html#WeiserHB08,http://www.jthtl.org/content/articles/V6I2/JTHTLv6i2_WeiserHatfieldBernthal.PDF +Marc Berejka,A Case for Government Promoted Multi-Stakeholderism.,2012,10,JTHTL,1,db/journals/jthtl/jthtl10.html#Berejka12,http://www.jthtl.org/content/articles/V10I1/JTHTLv10i1_Berejka.PDF +Kevin Werbach,A Layered Model for Internet Policy.,2002,1,JTHTL,1,db/journals/jthtl/jthtl1.html#Werbach02,http://www.jthtl.org/content/articles/V1I1/JTHTLv1i1_Werbach.PDF +John Bergmayer,Don't Send a Lawyer To Do an Engineer's Job: How Advancing Technology Changes the Software Monoculture Debate.,2009,7,JTHTL,2,db/journals/jthtl/jthtl7.html#Bergmayer09,http://www.jthtl.org/content/articles/V7I2/JTHTLv7i2_Bergmayer.PDF +J. Pierre De Vries,The Resilience Principles: A Framework for New ICT Governance.,2011,9,JTHTL,1,db/journals/jthtl/jthtl9.html#Vries11,http://www.jthtl.org/content/articles/V9I1/JTHTLv9i1_DeVries.PDF +Andrew LaFontaine,Adventures In Software Licensing: SCO V. IBM and the Future of the Open Source Model.,2006,4,JTHTL,2,db/journals/jthtl/jthtl4.html#LaFontaine06,http://www.jthtl.org/content/articles/V4I2/JTHTLv4i2_LaFontaine.PDF +Sarah Boulden,The Business of Startup Law: Alternative Fee Arrangements and Agency Costs in Entrepreneurial Law.,2013,11,JTHTL,1,db/journals/jthtl/jthtl11.html#Boulden13,http://www.jthtl.org/content/articles/V11I1/JTHTLv11i1_Boulden.PDF +Rebecca Arbogast,FCC's Broadband Quartet: A State-Federal Fugue or Feud?,2003,2,JTHTL,1,db/journals/jthtl/jthtl2.html#Arbogast03,http://www.jthtl.org/content/articles/V2I1/JTHTLv2i1_Arbogast.PDF +Eric D. Gunning,Introduction.,2004,3,JTHTL,1,db/journals/jthtl/jthtl3.html#Gunning04,http://www.jthtl.org/content/articles/V3I1/JTHTLv3i1_Intro.PDF +Eric P. Schmidt,Introduction.,2011,9,JTHTL,1,db/journals/jthtl/jthtl9.html#Schmidt11,http://www.jthtl.org/content/articles/V9I1/JTHTLv9i1_Intro.PDF +Susan Landau 0001,National Security on the Line.,2006,4,JTHTL,2,db/journals/jthtl/jthtl4.html#Landau06,http://www.jthtl.org/content/articles/V4I2/JTHTLv4i2_Landau.PDF +Mark Cooper,Open Communications Platforms: The Physical Infrastructure as the Bedrock of Innovation and Democratic Discourse in the Internet Age.,2003,2,JTHTL,1,db/journals/jthtl/jthtl2.html#Cooper03,http://www.jthtl.org/content/articles/V2I1/JTHTLv2i1_Cooper.PDF +Holly Andersen,A Website Owner's Practical Guide to the Wayback Machine.,2013,11,JTHTL,1,db/journals/jthtl/jthtl11.html#Andersen13,http://www.jthtl.org/content/articles/V11I1/JTHTLv11i1_Andersen.PDF +Scott Wallsten,Two Cheers for the FCC's Mobility Fund Reverse Auction.,2013,11,JTHTL,2,db/journals/jthtl/jthtl11.html#Wallsten13,http://www.jthtl.org/content/articles/V11I2/JTHTLv11i2_Wallsten.PDF +Rob Frieden,Neither Fish nor Fowl: New Strategies for Selective Regulation of Information Services.,2008,6,JTHTL,2,db/journals/jthtl/jthtl6.html#Frieden08,http://www.jthtl.org/content/articles/V6I2/JTHTLv6i2_Frieden.PDF +Evan Rothstein,Introduction.,2003,2,JTHTL,1,db/journals/jthtl/jthtl2.html#Rothstein03,http://www.jthtl.org/content/articles/V2I1/JTHTLv2i1_Intro.PDF +David B. Wilson 0001,Weaving the Navajo.Net.,2009,7,JTHTL,2,db/journals/jthtl/jthtl7.html#Wilson09,http://www.jthtl.org/content/articles/V7I2/JTHTLv7i2_Wilson.PDF +Joe Linhoff,Video Games and Reverse Engineering: Before and After the Digital Millennium Copyright Act.,2004,3,JTHTL,1,db/journals/jthtl/jthtl3.html#Linhoff04,http://www.jthtl.org/content/articles/V3I1/JTHTLv3i1_Linhoff.PDF +Mark Wiranowski,Competitive Smart Grid Pilots: A Means to Overcome Incentive and Informational Problems.,2012,10,JTHTL,2,db/journals/jthtl/jthtl10.html#Wiranowski12,http://www.jthtl.org/content/articles/V10I2/JTHTLv10i2_Wiranowski.PDF +Eric P. Schmidt,Hot News Misappropriation in the Internet Age.,2011,9,JTHTL,1,db/journals/jthtl/jthtl9.html#Schmidt11a,http://www.jthtl.org/content/articles/V9I1/JTHTLv9i1_Schmidt.PDF +Mark A. Lemley,Is the Sky Falling on the Content Industries?,2011,9,JTHTL,1,db/journals/jthtl/jthtl9.html#Lemley11,http://www.jthtl.org/content/articles/V9I1/JTHTLv9i1_Lemley.PDF +Jim Chen,Subsidized Rural Telephony and the Public Interest: A Case Study In Cooperative Federalism and its Pitfalls.,2003,2,JTHTL,1,db/journals/jthtl/jthtl2.html#Chen03,http://www.jthtl.org/content/articles/V2I1/JTHTLv2i1_Chen.PDF +Tim Wu 0001,Why Have a Telecommunications Law? Anti-Discrimination Norms in Communications.,2006,5,JTHTL,1,db/journals/jthtl/jthtl5.html#Wu06,http://www.jthtl.org/content/articles/V5I1/JTHTLv5i1_Wu.PDF +Anne J. Lee,The Legality of State Protectionist Laws Against Legal Process Outsourcing.,2013,11,JTHTL,1,db/journals/jthtl/jthtl11.html#Lee13,http://www.jthtl.org/content/articles/V11I1/JTHTLv11i1_Lee.PDF +Alfred E. Kahn,Telecommunications: The Transition from Regulation to Antitrust.,2006,5,JTHTL,1,db/journals/jthtl/jthtl5.html#Kahn06,http://www.jthtl.org/content/articles/V5I1/JTHTLv5i1_Kahn.PDF +Daxton R. Stewart,Can I Use this Photo I Found on Facebook? Applying Copyright Law and Fair Use Analysis to Photographs on Social Networking Sites Republished for News Reporting Purposes.,2012,10,JTHTL,1,db/journals/jthtl/jthtl10.html#Stewart12,http://www.jthtl.org/content/articles/V10I1/JTHTLv10i1_Stewart.PDF +Molly Shaffer Van Houweling,Communications' Copyright Policy.,2005,4,JTHTL,1,db/journals/jthtl/jthtl4.html#Houweling05,http://www.jthtl.org/content/articles/V4I1/JTHTLv4i1_VanHouweling.PDF +Steven Semeraro,Regulating Information Platforms: The Convergence to Antitrust.,2002,1,JTHTL,1,db/journals/jthtl/jthtl1.html#Semeraro02,http://www.jthtl.org/content/articles/V1I1/JTHTLv1i1_Semeraro.PDF +Paul Shoning,Convergence and Competition: Why A Duopoly of Convergent Competitors Might Be Sufficient to Protect Broadband Consumers Without Regulation.,2009,7,JTHTL,1,db/journals/jthtl/jthtl7.html#Shoning09,http://www.jthtl.org/content/articles/V7I1/JTHTLv7i1_Shoning.PDF +Jean Pyun,Chinese Nationalism and the Mishaps that Closed the Show on Google Music.,2014,12,JTHTL,1,db/journals/jthtl/jthtl12.html#Pyun14,http://www.jthtl.org/content/articles/V12I1/JTHTLv12i1_Pyun.PDF +Jonathan Taplin,Has the Digital Revolution Led to Cultural Devolution?,2013,11,JTHTL,1,db/journals/jthtl/jthtl11.html#Taplin13,http://www.jthtl.org/content/articles/V11I1/JTHTLv11i1_Taplin.PDF +Nick Doty,Internet Multistakeholder Processes and Techno-Policy Standards.,2013,11,JTHTL,1,db/journals/jthtl/jthtl11.html#DotyM13,http://www.jthtl.org/content/articles/V11I1/JTHTLv11i1_MulliganDoty.PDF +Philip J. Weiser,Introduction: A Regulatory Regime for the Internet Age.,2004,3,JTHTL,1,db/journals/jthtl/jthtl3.html#Weiser04,http://www.jthtl.org/content/articles/V3I1/JTHTLv3i1_Weiser.PDF +James B. Speta,"Making Spectrum Reform ""Thinkable"".",2005,4,JTHTL,1,db/journals/jthtl/jthtl4.html#Speta05,http://www.jthtl.org/content/articles/V4I1/JTHTLv4i1_Speta.PDF +Lawrence E. Strickling,Remarks at the Digital Broadband Migration.,2012,10,JTHTL,1,db/journals/jthtl/jthtl10.html#Strickling12,http://www.jthtl.org/content/articles/V10I1/JTHTLv10i1_Strickling.PDF +Lawrence E. Strickling,Remarks at the Digital Broadband Migration Examining the Internet's Ecosystem.,2011,9,JTHTL,1,db/journals/jthtl/jthtl9.html#Strickling11,http://www.jthtl.org/content/articles/V9I1/JTHTLv9i1_Strickling.PDF +Madelaine Maior,Introduction.,2012,10,JTHTL,2,db/journals/jthtl/jthtl10.html#Maior12a,http://www.jthtl.org/content/articles/V10I2/JTHTLv10i2_Intro.PDF +Robert Hahn,Why the iPhone Won't Last Forever and What the Government Should Do to Promote its Successor.,2010,8,JTHTL,2,db/journals/jthtl/jthtl8.html#HahnS10,http://www.jthtl.org/content/articles/V8I2/JTHTLv8i2_HahnSinger.PDF +Thomas B. Nachbar,Judicial Review and the Quest to Keep Copyright Pure.,2003,2,JTHTL,1,db/journals/jthtl/jthtl2.html#Nachbar03,http://www.jthtl.org/content/articles/V2I1/JTHTLv2i1_Nachbar.PDF +Christopher Sprigman,The 99 Cent Question.,2006,5,JTHTL,1,db/journals/jthtl/jthtl5.html#Sprigman06,http://www.jthtl.org/content/articles/V5I1/JTHTLv5i1_Sprigman.PDF +James B. Speta,Maintaining Competition in Information Platforms: Vertical Restrictions in Emerging Telecommunications Markets.,2002,1,JTHTL,1,db/journals/jthtl/jthtl1.html#Speta02,http://www.jthtl.org/content/articles/V1I1/JTHTLv1i1_Speta.PDF +Lior Jacob Strahilevitz,Signaling Exhaustion and Perfect Exclusion.,2012,10,JTHTL,2,db/journals/jthtl/jthtl10.html#Strahilevitz12,http://www.jthtl.org/content/articles/V10I2/JTHTLv10i2_Strahilevitz.PDF +Micah Schwalb,Introduction.,2007,5,JTHTL,2,db/journals/jthtl/jthtl5.html#Schwalb07,http://www.jthtl.org/content/articles/V5I2/JTHTLv5i2_Intro.PDF +J. Scott Marcus,Evolving Core Capabiliites of the Internet.,2004,3,JTHTL,1,db/journals/jthtl/jthtl3.html#Marcus04,http://www.jthtl.org/content/articles/V3I1/JTHTLv3i1_Marcus.PDF +James B. Speta,An Appropriate Interconnection Backstop.,2014,12,JTHTL,1,db/journals/jthtl/jthtl12.html#Speta14,http://www.jthtl.org/content/articles/V12I1/JTHTLv12i1_Speta.PDF +James Crowe,Regulation and Free Markets: How to Regulate the Telecommunications Industry in the New Economy.,2003,2,JTHTL,1,db/journals/jthtl/jthtl2.html#Crowe03,http://www.jthtl.org/content/articles/V2I1/JTHTLv2i1_Crowe.PDF +Arielle Brown,Introduction.,2014,12,JTHTL,1,db/journals/jthtl/jthtl12.html#Brown14,http://www.jthtl.org/content/articles/V12I1/JTHTLv12i1_Cooper.PDF +Philip J. Weiser,Rewriting The Telecom Act: An Introduction.,2005,4,JTHTL,1,db/journals/jthtl/jthtl4.html#Weiser05,http://www.jthtl.org/content/articles/V4I1/JTHTLv4i1_Weiser.PDF +Stacey L. Dogan,Beyond Trademark Use.,2010,8,JTHTL,1,db/journals/jthtl/jthtl8.html#Dogan10,http://www.jthtl.org/content/articles/V8I1/JTHTLv8i1_Dogan.PDF +Mark Cooper,"Why Growing Up Is Hard To Do: Institutional Challenges for Internet Governance in the ""Quarter-Life Crisis"" of the Digital Revolution.",2013,11,JTHTL,1,db/journals/jthtl/jthtl11.html#Cooper13,http://www.jthtl.org/content/articles/V11I1/JTHTLv11i1_Cooper.PDF +Orin S. Kerr,The Limits of Fourth Amendment Injunctions.,2009,7,JTHTL,1,db/journals/jthtl/jthtl7.html#Kerr09,http://www.jthtl.org/content/articles/V7I1/JTHTLv7i1_Kerr.PDF +Pamela Samuelson,Academic Author Objections to the Google Book Search Settlement.,2010,8,JTHTL,2,db/journals/jthtl/jthtl8.html#Samuelson10,http://www.jthtl.org/content/articles/V8I2/JTHTLv8i2_Samuelson.PDF +Mark Cooper,From Wifi To Wikis and Open Source: The Political Economy of Collaborative Production in the Digital Information Age.,2006,5,JTHTL,1,db/journals/jthtl/jthtl5.html#Cooper06,http://www.jthtl.org/content/articles/V5I1/JTHTLv5i1_Cooper.PDF +Micah Schwalb,IPTV: Public Interest Pitfalls.,2006,5,JTHTL,1,db/journals/jthtl/jthtl5.html#Schwalb06a,http://www.jthtl.org/content/articles/V5I1/JTHTLv5i1_Schwalb.PDF +Lisa M. Neal-Graves,Introduction.,2005,4,JTHTL,1,db/journals/jthtl/jthtl4.html#Neal-Graves05,http://www.jthtl.org/content/articles/V4I1/JTHTLv4i1_Intro.PDF +Neil M. Richards,The Limits of Tort Privacy.,2011,9,JTHTL,2,db/journals/jthtl/jthtl9.html#Richards11,http://www.jthtl.org/content/articles/V9I2/JTHTLv9i2_Richards.PDF +Martina Hinojosa,Challenges for Emerging Art Forms Under the Visual Artists Rights Act.,2013,11,JTHTL,2,db/journals/jthtl/jthtl11.html#Hinojosa13,http://www.jthtl.org/content/articles/V11I2/JTHTLv11i2_Hinojosa.PDF +Christopher Riley,The Need for Software Innovation Policy.,2007,5,JTHTL,3,db/journals/jthtl/jthtl5.html#Riley07,http://www.jthtl.org/content/articles/V5I3/JTHTLv5i3_Riley.PDF +James Crowe,Regulation and Free Markets Redux: Additional Insights on Regulating the Telecommunications Industry in the New Economy.,2007,5,JTHTL,2,db/journals/jthtl/jthtl5.html#Crowe07,http://www.jthtl.org/content/articles/V5I2/JTHTLv5i2_Crowe.PDF +Hiwot Molla,Introduction.,2009,7,JTHTL,1,db/journals/jthtl/jthtl7.html#Molla09,http://www.jthtl.org/content/articles/V7I1/JTHTLv7i1_Intro.PDF +Janna Fischer,Sweet Fruit or Poisoned Apple? The iPad's Effect on Newspapers.,2012,10,JTHTL,1,db/journals/jthtl/jthtl10.html#Fischer12,http://www.jthtl.org/content/articles/V10I1/JTHTLv10i1_JFischer.PDF +J. Scott Marcus,The Potential Relevance to the United States of the European Union's Newly Adopted Regulatory Framework for Telecommunications.,2003,2,JTHTL,1,db/journals/jthtl/jthtl2.html#Marcus03,http://www.jthtl.org/content/articles/V2I1/JTHTLv2i1_Marcus.PDF +Stacey L. Dogan,Code Versus the Common Law.,2003,2,JTHTL,1,db/journals/jthtl/jthtl2.html#Dogan03,http://www.jthtl.org/content/articles/V2I1/JTHTLv2i1_Dogan.PDF +James Grimmelmann,First-Class Objects.,2011,9,JTHTL,2,db/journals/jthtl/jthtl9.html#Grimmelmann11,http://www.jthtl.org/content/articles/V9I2/JTHTLv9i2_Grimmelmann.PDF +Lorrie Faith Cranor,Necessary But Not Sufficient: Standardized Mechanisms for Privacy Notice and Choice.,2012,10,JTHTL,2,db/journals/jthtl/jthtl10.html#Cranor12,http://www.jthtl.org/content/articles/V10I2/JTHTLv10i2_Cranor.PDF +Michael S. Wagner,Google Glass: A Preemptive Look at Privacy Concerns.,2013,11,JTHTL,2,db/journals/jthtl/jthtl11.html#Wagner13,http://www.jthtl.org/content/articles/V11I2/JTHTLv11i2_Wagner.PDF +Dana P. Jozefczyk,The Poison Fruit: Has Apple Finally Sown the Seed of Its Own Destruction?,2009,7,JTHTL,2,db/journals/jthtl/jthtl7.html#Jozefczyk09,http://www.jthtl.org/content/articles/V7I2/JTHTLv7i2_Jozefczyk.PDF +Jeffrey Graves,Who's Calling? Third-Party Telephone-Fundraiser Disclosure Reform.,2012,10,JTHTL,2,db/journals/jthtl/jthtl10.html#Graves12,http://www.jthtl.org/content/articles/V10I2/JTHTLv10i2_Graves.PDF +Tyler J. Boschert,Would Utility Models Improve American Innovation?,2014,12,JTHTL,1,db/journals/jthtl/jthtl12.html#Boschert14,http://www.jthtl.org/content/articles/V12I1/JTHTLv12i1_Boschert.PDF +David Lat,Public Figurehood in the Digital Age.,2011,9,JTHTL,2,db/journals/jthtl/jthtl9.html#LatS11,http://www.jthtl.org/content/articles/V9I2/JTHTLv9i2_LatShemtob.PDF +A. Michael Froomkin,Almost Free: An Analysis of ICANN's 'Affirmation of Commitments'.,2011,9,JTHTL,1,db/journals/jthtl/jthtl9.html#Froomkin11,http://www.jthtl.org/content/articles/V9I1/JTHTLv9i1_Froomkin.PDF +Lynne Holt,Re-Evaluating FCC Policies Concerning the Lifeline and Link-Up Programs.,2007,5,JTHTL,2,db/journals/jthtl/jthtl5.html#HoltJ07,http://www.jthtl.org/content/articles/V5I2/JTHTLv5i2_HoltJamison.PDF +David P. Reed,Critiquing the Layered Regulatory Model.,2006,4,JTHTL,2,db/journals/jthtl/jthtl4.html#Reed06,http://www.jthtl.org/content/articles/V4I2/JTHTLv4i2_Reed.PDF +David B. Wilson 0001,Introduction.,2007,6,JTHTL,1,db/journals/jthtl/jthtl6.html#Wilson07,http://www.jthtl.org/content/articles/V6I1/JTHTLv6i1_Intro.PDF +Jake Adkins,Unfriended Felons: Reevaluating the Internet's Role for the Purpose of Special Conditions in Sentencing in a Post-Facebook World.,2011,9,JTHTL,1,db/journals/jthtl/jthtl9.html#Adkins11,http://www.jthtl.org/content/articles/V9I1/JTHTLv9i1_Adkins.PDF +Lauren Boesel,Introduction.,2013,11,JTHTL,1,db/journals/jthtl/jthtl11.html#Boesel13,http://www.jthtl.org/content/articles/V11I1/JTHTLv11i1_Intro.PDF +Robert E. Kahn,Representing Value as Digital Objects: A Discussion of Transferability and Anonymity.,2006,5,JTHTL,1,db/journals/jthtl/jthtl5.html#KahnL06,http://www.jthtl.org/content/articles/V5I1/JTHTLv5i1_KahnLyons.PDF +Robert E. Litan,Unintended Consequences of Net Neutrality Regulation.,2007,5,JTHTL,3,db/journals/jthtl/jthtl5.html#LitanS07,http://www.jthtl.org/content/articles/V5I3/JTHTLv5i3_LitanSinger.PDF +Julie E. Cohen,Irrational Privacy?,2012,10,JTHTL,2,db/journals/jthtl/jthtl10.html#Cohen12,http://www.jthtl.org/content/articles/V10I2/JTHTLv10i2_Cohen.PDF +Ellen P. Goodman,Spectrum Auctions and the Public Interest.,2009,7,JTHTL,2,db/journals/jthtl/jthtl7.html#Goodman09,http://www.jthtl.org/content/articles/V7I2/JTHTLv7i2_Goodman.PDF +Robert M. McDowell,Technology and the Sovereignty of the Individual.,2012,10,JTHTL,2,db/journals/jthtl/jthtl10.html#McDowell12,http://www.jthtl.org/content/articles/V10I2/JTHTLv10i2_McDowell.PDF +Frederic M. Scherer,The Political Economy of Patent Policy Reform in the United States.,2009,7,JTHTL,2,db/journals/jthtl/jthtl7.html#Scherer09,http://www.jthtl.org/content/articles/V7I2/JTHTLv7i2_Scherer.PDF +Jennifer Manner,Emerging Communications Technologies: Wireless Deployments and Beyond.,2005,3,JTHTL,2,db/journals/jthtl/jthtl3.html#Manner05,http://www.jthtl.org/content/articles/V3I2/JTHTLv3i2_Manner.PDF +Peter Swire,No Cop on the Beat: Underenforcement in E-Commerce and Cybercrime.,2009,7,JTHTL,1,db/journals/jthtl/jthtl7.html#Swire09,http://www.jthtl.org/content/articles/V7I1/JTHTLv7i1_Swire.PDF +Hiwot Molla,Introduction.,2009,7,JTHTL,2,db/journals/jthtl/jthtl7.html#Molla09a,http://www.jthtl.org/content/articles/V7I2/JTHTLv7i2_Intro.PDF +Susan P. Crawford,Internet Think.,2007,5,JTHTL,2,db/journals/jthtl/jthtl5.html#Crawford07,http://www.jthtl.org/content/articles/V5I2/JTHTLv5i2_Crawford.PDF +Christopher Sprigman,Copyright and the Rule of Reason.,2009,7,JTHTL,2,db/journals/jthtl/jthtl7.html#Sprigman09,http://www.jthtl.org/content/articles/V7I2/JTHTLv7i2_Sprigman.PDF +Christopher S. Yoo,Innovations in the Internet's Architecture that Challenge the Status Quo.,2010,8,JTHTL,1,db/journals/jthtl/jthtl8.html#Yoo10,http://www.jthtl.org/content/articles/V8I1/JTHTLv8i1_Yoo.PDF +Kyle D. Dixon,The Digital Age Communications Act Paradigm for Federal-State Authority.,2006,4,JTHTL,2,db/journals/jthtl/jthtl4.html#DixonW06,http://www.jthtl.org/content/articles/V4I2/JTHTLv4i2_DixonWeiser.PDF +Andy Evans,High-Spped Rail in California May be Inevitable: Where Does that Leave Opponents?,2014,12,JTHTL,1,db/journals/jthtl/jthtl12.html#Evans14,http://www.jthtl.org/content/articles/V12I1/JTHTLv12i1_Evans.PDF +Ellen P. Goodman,Bargains in the Information Marketplace: The Use of Government Subsidies to Regulate New Media.,2002,1,JTHTL,1,db/journals/jthtl/jthtl1.html#Goodman02,http://www.jthtl.org/content/articles/V1I1/JTHTLv1i1_Goodman.PDF +Ben Fernandez,Digital Content Protection and Fair Use: What's the Use?,2005,3,JTHTL,2,db/journals/jthtl/jthtl3.html#Fernandez05,http://www.jthtl.org/content/articles/V3I2/JTHTLv3i2_Fernandez.PDF +Rob Frieden,Case Studies in Abandoned Empiricism and the Lack of Peer Review at the Federal Communications Commission.,2010,8,JTHTL,2,db/journals/jthtl/jthtl8.html#Frieden10,http://www.jthtl.org/content/articles/V8I2/JTHTLv8i2_Frieden.PDF +Douglas C. Sicker,The Analog Hole and the Price Of Music: An Empirical Study.,2007,5,JTHTL,3,db/journals/jthtl/jthtl5.html#SickerOG07,http://www.jthtl.org/content/articles/V5I3/JTHTLv5i3_SickerOhmGunaji.PDF +Shirin Chahal,Balancing the Scales of Justice: Undercover Investigations on Social Networking Sites.,2011,9,JTHTL,1,db/journals/jthtl/jthtl9.html#Chahal11,http://www.jthtl.org/content/articles/V9I1/JTHTLv9i1_Chahal.PDF +Patrick Haines,Embracing the DNA Fingerprint Act.,2007,5,JTHTL,3,db/journals/jthtl/jthtl5.html#Haines07,http://www.jthtl.org/content/articles/V5I3/JTHTLv5i3_Haines.PDF +Philip J. Weiser,Law and Information Platforms.,2002,1,JTHTL,1,db/journals/jthtl/jthtl1.html#Weiser02,http://www.jthtl.org/content/articles/V1I1/JTHTLv1i1_Weiser.PDF +Susan Landau 0001,The Large Immortal Machine and the Ticking Time Bomb.,2013,11,JTHTL,1,db/journals/jthtl/jthtl11.html#Landau13,http://www.jthtl.org/content/articles/V11I1/JTHTLv11i1_Landau.PDF +Blake Fry,Why Typefaces Proliferate Without Copyright Protection.,2010,8,JTHTL,2,db/journals/jthtl/jthtl8.html#Fry10,http://www.jthtl.org/content/articles/V8I2/JTHTLv8i2_Fry.PDF +Paul Teske,Wither The States? Comments on the DACA Federal-State Framework.,2006,4,JTHTL,2,db/journals/jthtl/jthtl4.html#Teske06,http://www.jthtl.org/content/articles/V4I2/JTHTLv4i2_Teske.PDF +Pamela Samuelson,Should Copyright Owners Have to Give Notice of Their Use of Technical Protection Measures?,2007,6,JTHTL,1,db/journals/jthtl/jthtl6.html#SamuelsonS07,http://www.jthtl.org/content/articles/V6I1/JTHTLv6i1_SamuelsonSchultz.PDF +Eric Goldman,The Irony of Privacy Class Action Litigation.,2012,10,JTHTL,2,db/journals/jthtl/jthtl10.html#Goldman12,http://www.jthtl.org/content/articles/V10I2/JTHTLv10i2_Goldman.PDF +Robert D. Atkinson,The Role of Competition Policy in a National Broadband Policy.,2009,7,JTHTL,1,db/journals/jthtl/jthtl7.html#Atkinson09,http://www.jthtl.org/content/articles/V7I1/JTHTLv7i1_Atkinson.PDF +Jennifer Owens,Not Quite Dead Yet: The Near Fatal Wounding of the Experimental Use Exception and its Impact on Public Universities.,2005,3,JTHTL,2,db/journals/jthtl/jthtl3.html#Owens05,http://www.jthtl.org/content/articles/V3I2/JTHTLv3i2_Owens.PDF +Kathleen Q. Abernathy,Preserving Universal Service in the Age of IP.,2005,3,JTHTL,2,db/journals/jthtl/jthtl3.html#Abernathy05,http://www.jthtl.org/content/articles/V3I2/JTHTLv3i2_Abernathy.PDF +Blake Ellis Reid,Substitution Effects: A Problematic Justification for the Third-Party Doctrine of the Fourth Amendment.,2010,8,JTHTL,2,db/journals/jthtl/jthtl8.html#Reid10b,http://www.jthtl.org/content/articles/V8I2/JTHTLv8i2_Reid.PDF +Mark A. Lemley,Rationalizing Internet Safe Harbors.,2007,6,JTHTL,1,db/journals/jthtl/jthtl6.html#Lemley07,http://www.jthtl.org/content/articles/V6I1/JTHTLv6i1_Lemley.PDF +Peter Swire,Why the Federal Government Should Have a Privacy Policy Office.,2012,10,JTHTL,1,db/journals/jthtl/jthtl10.html#Swire12,http://www.jthtl.org/content/articles/V10I1/JTHTLv10i1_Swire.PDF +Julie Brill,Interview with Federal Trade Commissioner Julie Brill.,2012,10,JTHTL,2,db/journals/jthtl/jthtl10.html#BrillO12,http://www.jthtl.org/content/articles/V10I2/JTHTLv10i2_Brill.PDF +Kristin Bailey,Insecurity for Community Solar: Three Strategies to Confront an Emerging Tension Between Renewable Energy Investment and Federal Securities Laws.,2012,10,JTHTL,1,db/journals/jthtl/jthtl10.html#Bailey12,http://www.jthtl.org/content/articles/V10I1/JTHTLv10i1_Bailey.PDF +Micah Schwalb,Introduction.,2007,5,JTHTL,3,db/journals/jthtl/jthtl5.html#Schwalb07a,http://www.jthtl.org/content/articles/V5I3/JTHTLv5i3_Intro.PDF +Shane Greenstein,Glimmers and Signs of Innovative Health in the Commercial Internet.,2010,8,JTHTL,1,db/journals/jthtl/jthtl8.html#Greenstein10,http://www.jthtl.org/content/articles/V8I1/JTHTLv8i1_Greenstein.PDF +Joseph Farrell,Can Privacy be Just Another Good?,2012,10,JTHTL,2,db/journals/jthtl/jthtl10.html#Farrell12,http://www.jthtl.org/content/articles/V10I2/JTHTLv10i2_Farrell.PDF +Kaydee Smith,A Global First Amendment?,2008,6,JTHTL,2,db/journals/jthtl/jthtl6.html#Smith08,http://www.jthtl.org/content/articles/V6I2/JTHTLv6i2_Smith.PDF +Patrick R. Thiessen,The Real ID Act and Biometric Technology: A Nightmare for Citizens and the States That Have to Implement It.,2008,6,JTHTL,2,db/journals/jthtl/jthtl6.html#Thiessen08,http://www.jthtl.org/content/articles/V6I2/JTHTLv6i2_Thiessen.PDF +Kendria Alt,Browser Enhancer Detection by Employers and Insurance Companies.,2012,10,JTHTL,2,db/journals/jthtl/jthtl10.html#Alt12,http://www.jthtl.org/content/articles/V10I2/JTHTLv10i2_Alt.PDF +Jonathan E. Nuechterlein,Video Games: The Oddly Familiar Terms of Debate About Telco Entry Into the Video Services Market.,2006,5,JTHTL,1,db/journals/jthtl/jthtl5.html#Nuechterlein06,http://www.jthtl.org/content/articles/V5I1/JTHTLv5i1_Nuechterlein.PDF +Kellen O'Brien,Eagle-Net's Never-Ending Odyssey: Addressing Colorado's Unique Broadband Infrastructure Challenges.,2014,12,JTHTL,1,db/journals/jthtl/jthtl12.html#OBrien14,http://www.jthtl.org/content/articles/V12I1/JTHTLv12i1_O%27Brien.PDF +Jonathan E. Nuechterlein,Incentives to Speak Honestly About Incentives: The Need for Structural Reform of the Local Competition Debate.,2003,2,JTHTL,1,db/journals/jthtl/jthtl2.html#Nuechterlein03,http://www.jthtl.org/content/articles/V2I1/JTHTLv2i1_Nuechterlein.PDF +Christopher S. Yoo,Would Mandating Broadband Network Neutrality Help or Hurt Competition? A Comment on the End-to-End Debate.,2004,3,JTHTL,1,db/journals/jthtl/jthtl3.html#Yoo04,http://www.jthtl.org/content/articles/V3I1/JTHTLv3i1_Yoo.PDF +Peter P. Swire,A Model for When Disclosure Helps Security: What Is Different About Computer and Network Security?,2004,3,JTHTL,1,db/journals/jthtl/jthtl3.html#Swire04,http://www.jthtl.org/content/articles/V3I1/JTHTLv3i1_Swire.PDF +Randal C. Picker,Mistrust-Based Digital Rights Management.,2006,5,JTHTL,1,db/journals/jthtl/jthtl5.html#Picker06,http://www.jthtl.org/content/articles/V5I1/JTHTLv5i1_Picker.PDF +Howard A. Shelanski,Competition Policy for Mobile Broadband Networks.,2004,3,JTHTL,1,db/journals/jthtl/jthtl3.html#Shelanski04,http://www.jthtl.org/content/articles/V3I1/JTHTLv3i1_Shelanski.PDF +Angela L. Morrison,A Research Revolution: Genetic Testing Consumers Become Research (and Privacy) Guinea Pigs.,2011,9,JTHTL,2,db/journals/jthtl/jthtl9.html#Morrison11,http://www.jthtl.org/content/articles/V9I2/JTHTLv9i2_Morrison.PDF +J. Pierre De Vries,Harm Claim Threshholds: Facilitating More Intensive Spectrum Use Through More Explicit Interference Protection Rights.,2014,12,JTHTL,1,db/journals/jthtl/jthtl12.html#Vries14,http://www.jthtl.org/content/articles/V12I1/JTHTLv12i1_deVries.PDF +Blake Ellis Reid,Introduction.,2010,8,JTHTL,2,db/journals/jthtl/jthtl8.html#Reid10a,http://www.jthtl.org/content/articles/V8I2/JTHTLv8i2_Intro.PDF +Warren G. Lavey,Telecom Globalization and Deregulation Encounter U.S. National Security and Labor Concerns.,2007,6,JTHTL,1,db/journals/jthtl/jthtl6.html#Lavey07,http://www.jthtl.org/content/articles/V6I1/JTHTLv6i1_Lavey.PDF +Jonathan Sallet,The Creation of Value: The Value Circle and Evolving Market Structures.,2013,11,JTHTL,1,db/journals/jthtl/jthtl11.html#Sallet13,http://www.jthtl.org/content/articles/V11I1/JTHTLv11i1_Sallet.PDF +Micah Schwalb,Introduction.,2006,5,JTHTL,1,db/journals/jthtl/jthtl5.html#Schwalb06,http://www.jthtl.org/content/articles/V5I1/JTHTLv5i1_Intro.PDF +Thomas W. Hazlett,Shedding Tiers For a la Carte? An Economic Analysis of Cable TV Pricing.,2006,5,JTHTL,1,db/journals/jthtl/jthtl5.html#Hazlett06,http://www.jthtl.org/content/articles/V5I1/JTHTLv5i1_Hazlett.PDF +Jaclyn Freeman,Limiting SRO Immunity to Mitigate Risky Behavior.,2014,12,JTHTL,1,db/journals/jthtl/jthtl12.html#Freeman14,http://www.jthtl.org/content/articles/V12I1/JTHTLv12i1_Freeman.PDF +James Miller,The Broadcasters' Transition Date Roulette: Strategic Aspects of the DTV Transition.,2011,9,JTHTL,2,db/journals/jthtl/jthtl9.html#MillerP11,http://www.jthtl.org/content/articles/V9I2/JTHTLv9i2_MillerPrieger.PDF +Ellen P. Goodman,Spectrum Equity.,2005,4,JTHTL,1,db/journals/jthtl/jthtl4.html#Goodman05,http://www.jthtl.org/content/articles/V4I1/JTHTLv4i1_Goodman.PDF +Omer Tene,Judged by the Tin Man: Individual Rights in the Age of Big Data.,2013,11,JTHTL,2,db/journals/jthtl/jthtl11.html#TeneP13,http://www.jthtl.org/content/articles/V11I2/JTHTLv11i2_Polonetsky.PDF +Kevin Werbach,Connections: Beyond Universal Service in the Digital Age.,2009,7,JTHTL,1,db/journals/jthtl/jthtl7.html#Werbach09,http://www.jthtl.org/content/articles/V7I1/JTHTLv7i1_Werbach.PDF +Amy Gajda,The Value of Detective Stories.,2011,9,JTHTL,2,db/journals/jthtl/jthtl9.html#Gajda11,http://www.jthtl.org/content/articles/V9I2/JTHTLv9i2_Gajda.PDF +David B. Wilson 0001,Introduction.,2008,6,JTHTL,2,db/journals/jthtl/jthtl6.html#Wilson08,http://www.jthtl.org/content/articles/V6I2/JTHTLv6i2_Intro.PDF +Molly Shaffer Van Houweling,Cultivating Open Information Platforms: A Land Trust Model.,2002,1,JTHTL,1,db/journals/jthtl/jthtl1.html#Houweling02,http://www.jthtl.org/content/articles/V1I1/JTHTLv1i1_VanHouweling.PDF +J. Pierre De Vries,The Unfinished Radio Revolution: Eight Perspectives on Wireless Interference.,2011,9,JTHTL,2,db/journals/jthtl/jthtl9.html#VriesS11,http://www.jthtl.org/content/articles/V9I2/JTHTLv9i2_DeVries.PDF +Jerry Brito,Video Killed the Franchise Star: The Consumer Cost of Cable Franchising and Proposed Policy Alternatives.,2006,5,JTHTL,1,db/journals/jthtl/jthtl5.html#BritoE06,http://www.jthtl.org/content/articles/V5I1/JTHTLv5i1_BritoEllig.PDF +Lisa M. Neal-Graves,Introduction.,2006,4,JTHTL,2,db/journals/jthtl/jthtl4.html#Neal-Graves06,http://www.jthtl.org/content/articles/V4I2/JTHTLv4i2_Intro.PDF +Blake Ellis Reid,Introduction.,2010,8,JTHTL,1,db/journals/jthtl/jthtl8.html#Reid10,http://www.jthtl.org/content/articles/V8I1/JTHTLv8i1_Intro.PDF +Roy E. Hoffinger,Cooperative Federalism Gone Wrong: The Implementation of the Telecommunications Act of 1996.,2003,2,JTHTL,1,db/journals/jthtl/jthtl2.html#Hoffinger03,http://www.jthtl.org/content/articles/V2I1/JTHTLv2i1_Hoffinger.PDF +Vint Cerf,Internet Speculations.,2012,10,JTHTL,1,db/journals/jthtl/jthtl10.html#Cerf12,http://www.jthtl.org/content/articles/V10I1/JTHTLv10i1_Cerf.PDF +Jonathan E. Nuechterlein,Antitrust Oversight of an Antitrust Dispute: An Institutional Perspective on the Net Neutrality Debate.,2009,7,JTHTL,1,db/journals/jthtl/jthtl7.html#Nuechterlein09,http://www.jthtl.org/content/articles/V7I1/JTHTLv7i1_Nuechterlein.PDF +Neil Weinstock Netanel,Temptations of the Walled Garden: Digital Rights Management and Mobile Phone Carriers.,2007,6,JTHTL,1,db/journals/jthtl/jthtl6.html#Netanel07,http://www.jthtl.org/content/articles/V6I1/JTHTLv6i1_Netanel.PDF +Kathleen Wallman,The Tension Between Privacy and Security: An Analysis Based on Coase and Pigou.,2005,3,JTHTL,2,db/journals/jthtl/jthtl3.html#Wallman05,http://www.jthtl.org/content/articles/V3I2/JTHTLv3i2_Wallman.PDF +Patrick S. Ryan,Wireless Communications and Computing at a Crossroads: New Paradigms and Their Impact on Theories Governing the Public's Right to Spectrum Access.,2005,3,JTHTL,2,db/journals/jthtl/jthtl3.html#Ryan05,http://www.jthtl.org/content/articles/V3I2/JTHTLv3i2_Ryan.PDF +Howard A. Shelanski,Network Neutrality: Regulating with More Questions Than Answers.,2007,6,JTHTL,1,db/journals/jthtl/jthtl6.html#Shelanski07,http://www.jthtl.org/content/articles/V6I1/JTHTLv6i1_Shelanski.PDF +James L. Wooll,Introduction.,2002,1,JTHTL,1,db/journals/jthtl/jthtl1.html#WoollVWC02,http://www.jthtl.org/content/articles/V1I1/JTHTLv1i1_Intro.PDF +David Cline,Consumer Choice: Is There an App for That?,2012,10,JTHTL,1,db/journals/jthtl/jthtl10.html#Cline12,http://www.jthtl.org/content/articles/V10I1/JTHTLv10i1_Cline.PDF +Eric D. Gunning,Introduction.,2005,3,JTHTL,2,db/journals/jthtl/jthtl3.html#Gunning05,http://www.jthtl.org/content/articles/V3I2/JTHTLv3i2_Intro.PDF +Richard C. Notebaert,Overseeing the Unforeseeable: A Rational Regulatory Approach to 21st Century Communications.,2005,4,JTHTL,1,db/journals/jthtl/jthtl4.html#Notebaert05,http://www.jthtl.org/content/articles/V4I1/JTHTLv4i1_Notebaert.PDF +Arielle Brown,Introduction.,2013,11,JTHTL,2,db/journals/jthtl/jthtl11.html#Brown13,http://www.jthtl.org/content/articles/V11I2/JTHTLv11i2_Intro.PDF +Jim Chen,Liberating Red Lion from the Glass Menagerie of Free Speech Jurisprudence.,2002,1,JTHTL,1,db/journals/jthtl/jthtl1.html#Chen02,http://www.jthtl.org/content/articles/V1I1/JTHTLv1i1_Chen.PDF +Samuel C. Cannon,Terrorizing Wikileaks: Why the Embargo Against Wikileaks Will Fail.,2013,11,JTHTL,1,db/journals/jthtl/jthtl11.html#Cannon13,http://www.jthtl.org/content/articles/V11I1/JTHTLv11i1_Cannon.PDF +Charles J. Cooper,Federalism and the Telephone: The Case for Preemptive Federal Deregulation in the New World of Intermodal Competition.,2008,6,JTHTL,2,db/journals/jthtl/jthtl6.html#CooperK08,http://www.jthtl.org/content/articles/V6I2/JTHTLv6i2_CooperKoukoutchos.PDF +Stuart Minor Benjamin,Roasting the Pig to Burn Down the House: A Modest Proposal.,2009,7,JTHTL,1,db/journals/jthtl/jthtl7.html#Benjamin09,http://www.jthtl.org/content/articles/V7I1/JTHTLv7i1_Benjamin.PDF +Ellen P. Goodman,Digital Public Service Media Networks to Advance Broadband and Enrich Connected Communities.,2011,9,JTHTL,1,db/journals/jthtl/jthtl9.html#GoodmanC11,http://www.jthtl.org/content/articles/V9I1/JTHTLv9i1_Goodman.PDF +Michael K. Powell,The Digital Migration: Toward a New Telecom Act.,2005,4,JTHTL,1,db/journals/jthtl/jthtl4.html#Powell05,http://www.jthtl.org/content/articles/V4I1/JTHTLv4i1_Powell.PDF +William M. Fischer,The Utah Bioprospecting Act of 2010: (Unintentional) State-Level Implementation of the United Nations Convention on Biodiversity.,2012,10,JTHTL,1,db/journals/jthtl/jthtl10.html#Fischer12a,http://www.jthtl.org/content/articles/V10I1/JTHTLv10i1_WFischer.PDF +James B. Speta,The Shaky Foundations of the Regulated Internet.,2010,8,JTHTL,1,db/journals/jthtl/jthtl8.html#Speta10,http://www.jthtl.org/content/articles/V8I1/JTHTLv8i1_Speta.PDF +Michael L. Katz,Intellectual Property Rights and Antitrust Policy: Four Principles For A Complex World.,2002,1,JTHTL,1,db/journals/jthtl/jthtl1.html#Katz02,http://www.jthtl.org/content/articles/V1I1/JTHTLv1i1_Katz.PDF +Jerry Kang,Race.Net Neutrality.,2007,6,JTHTL,1,db/journals/jthtl/jthtl6.html#Kang07,http://www.jthtl.org/content/articles/V6I1/JTHTLv6i1_Kang.PDF +John Black,The Impossibility of Technology-Based DRM and a Modest Suggestion.,2005,3,JTHTL,2,db/journals/jthtl/jthtl3.html#Black05,http://www.jthtl.org/content/articles/V3I2/JTHTLv3i2_Black.PDF +John T. Nakahata,Regulating Information Platforms: The Challenge of Rewriting Communications Regulation from the Bottom Up.,2002,1,JTHTL,1,db/journals/jthtl/jthtl1.html#Nakahata02,http://www.jthtl.org/content/articles/V1I1/JTHTLv1i1_Nakahata.PDF +Per Larsen,Text Message Price Gouging: A Perfect Storm of Tacit Collusion.,2010,8,JTHTL,1,db/journals/jthtl/jthtl8.html#Larsen10,http://www.jthtl.org/content/articles/V8I1/JTHTLv8i1_Larsen.PDF +Eric Goldman,Wikipedia's Labor Squeeze and its Consequences.,2010,8,JTHTL,1,db/journals/jthtl/jthtl8.html#Goldman10,http://www.jthtl.org/content/articles/V8I1/JTHTLv8i1_Goldman.PDF +Bryan Hall,A Broken Patent System: How to Address the Claim Construction Problem in Litigation.,2013,11,JTHTL,2,db/journals/jthtl/jthtl11.html#Hall13,http://www.jthtl.org/content/articles/V11I2/JTHTLv11i2_Hall.PDF +Madelaine Maior,Introduction.,2012,10,JTHTL,1,db/journals/jthtl/jthtl10.html#Maior12,http://www.jthtl.org/content/articles/V10I1/JTHTLv10i1_Intro.PDF +Douglas C. Sicker,Refinements of a Layered Model for Telecommunications Policy.,2002,1,JTHTL,1,db/journals/jthtl/jthtl1.html#SickerM02,http://www.jthtl.org/content/articles/V1I1/JTHTLv1i1_SickerMindel.PDF +Jeffrey O'Holleran,Blood Code: The History and Future of Video Game Censorship.,2010,8,JTHTL,2,db/journals/jthtl/jthtl8.html#OHolleran10,http://www.jthtl.org/content/articles/V8I2/JTHTLv8i2_OHolleran.PDF +Travis E. Litman,Cognitive Radio: Moving Towards a Workable Framework For Commercial Leasing Of Public Safety Spectrum.,2005,4,JTHTL,1,db/journals/jthtl/jthtl4.html#Litman05,http://www.jthtl.org/content/articles/V4I1/JTHTLv4i1_Litman.PDF +Alfred E. Kahn,Reforming the FCC and Its Mission: Lessons From the Airline Experience.,2005,4,JTHTL,1,db/journals/jthtl/jthtl4.html#Kahn05,http://www.jthtl.org/content/articles/V4I1/JTHTLv4i1_Kahn.PDF +Dale A. Oesterle,Year 2002: The Year of the Telecom Meltdown.,2003,2,JTHTL,1,db/journals/jthtl/jthtl2.html#Oesterle03,http://www.jthtl.org/content/articles/V2I1/JTHTLv2i1_Oesterle.PDF +Stephanie Ryder,How to Prevent Future Flash Crashes and Restore the Ordinary Investors' Confidence in the Financial Market.,2014,12,JTHTL,1,db/journals/jthtl/jthtl12.html#Ryder14,http://www.jthtl.org/content/articles/V12I1/JTHTLv12i1_Ryder.PDF +Frank Pasquale,Restoring Transparency to Automated Authority.,2011,9,JTHTL,1,db/journals/jthtl/jthtl9.html#Pasquale11,http://www.jthtl.org/content/articles/V9I1/JTHTLv9i1_Pasquale.PDF +Daniel J. Sherwinter,Surveillance's Slippery Slope: Using Encryption to Recapture Privacy Rights.,2007,5,JTHTL,2,db/journals/jthtl/jthtl5.html#Sherwinter07,http://www.jthtl.org/content/articles/V5I2/JTHTLv5i2_Sherwinter.PDF +William E. Kovacic,The Digital Broadband Migration and the Federal Trade Commission: Building the Competition and Consumer Protection Agency of the Future.,2010,8,JTHTL,1,db/journals/jthtl/jthtl8.html#Kovacic10,http://www.jthtl.org/content/articles/V8I1/JTHTLv8i1_Kovacic.PDF +Thomas Demeester,Predicting relevance based on assessor disagreement: analysis and practical applications for search evaluation.,2016,19,Inf. Retr. Journal,3,db/journals/ir/ir19.html#DemeesterAHND16,https://doi.org/10.1007/s10791-015-9275-x +Vlastislav Dohnal,MDPV: metric distance permutation vocabulary.,2015,18,Inf. Retr. Journal,1,db/journals/ir/ir18.html#DohnalHZ15,https://doi.org/10.1007/s10791-014-9247-6 +Qiang Wu,Adapting boosting for information retrieval measures.,2010,13,Inf. Retr.,3,db/journals/ir/ir13.html#WuBSG10,https://doi.org/10.1007/s10791-009-9112-1 +Aleksander Kolcz,Asymmetric Missing-data Problems: Overcoming the Lack of Negative Data in Preference Ranking.,2002,5,Inf. Retr.,1,db/journals/ir/ir5.html#KolczA02,https://doi.org/10.1023/A:1012714523368 +Thaer Samar,The strange case of reproducibility versus representativeness in contextual suggestion test collections.,2016,19,Inf. Retr. Journal,3,db/journals/ir/ir19.html#SamarBV16,https://doi.org/10.1007/s10791-015-9276-9 +Roi Blanco,Graph-based term weighting for information retrieval.,2012,15,Inf. Retr.,1,db/journals/ir/ir15.html#BlancoL12,https://doi.org/10.1007/s10791-011-9172-x +Rong Jin,A study of mixture models for collaborative filtering.,2006,9,Inf. Retr.,3,db/journals/ir/ir9.html#JinSZ06,https://doi.org/10.1007/s10791-006-4651-1 +Anísio Lacerda,Improving daily deals recommendation using explore-then-exploit strategies.,2015,18,Inf. Retr. Journal,2,db/journals/ir/ir18.html#LacerdaSVZ15,https://doi.org/10.1007/s10791-014-9249-4 +Abraham Bookstein,Simple Bayesian Model for Bitmap Compression.,2000,1,Inf. Retr.,4,db/journals/ir/ir1.html#BooksteinKR00,https://doi.org/10.1023/A:1009931317394 +Ian Ruthven,Incorporating Aspects of Information Use into Relevance Feedback.,2000,2,Inf. Retr.,1,db/journals/ir/ir2.html#Ruthven00,https://doi.org/10.1023/A:1009998002873 +Fabio Crestani,Preface.,2008,11,Inf. Retr.,4,db/journals/ir/ir11.html#CrestaniFS08,https://doi.org/10.1007/s10791-008-9052-1 +Rafael Guzmán-Cabrera,Using the Web as corpus for self-training text categorization.,2009,12,Inf. Retr.,3,db/journals/ir/ir12.html#Guzman-CabreraMRP09,https://doi.org/10.1007/s10791-008-9083-7 +Debasis Ganguly,Retrieving and classifying instances of source code plagiarism.,2018,21,Inf. Retr. Journal,1,db/journals/ir/ir21.html#GangulyJRRV18,https://doi.org/10.1007/s10791-017-9313-y +Chris Buckley,Why current IR engines fail.,2009,12,Inf. Retr.,6,db/journals/ir/ir12.html#Buckley09,https://doi.org/10.1007/s10791-009-9103-2 +Bernard Brosseau-Villeneuve,Latent word context model for information retrieval.,2014,17,Inf. Retr.,1,db/journals/ir/ir17.html#Brosseau-VilleneuveNK14,https://doi.org/10.1007/s10791-013-9220-9 +Yu-Xun Ruan,Improving ranking performance with cost-sensitive ordinal classification via regression.,2014,17,Inf. Retr.,1,db/journals/ir/ir17.html#RuanLT14,https://doi.org/10.1007/s10791-013-9219-2 +Robin Aly,The uncertain representation ranking framework for concept-based video retrieval.,2013,16,Inf. Retr.,5,db/journals/ir/ir16.html#AlyDHJS13,https://doi.org/10.1007/s10791-012-9207-y +Tetsuya Sakai,On information retrieval metrics designed for evaluation with incomplete relevance assessments.,2008,11,Inf. Retr.,5,db/journals/ir/ir11.html#SakaiK08,https://doi.org/10.1007/s10791-008-9059-7 +Donald Metzler,Linear feature-based models for information retrieval.,2007,10,Inf. Retr.,3,db/journals/ir/ir10.html#MetzlerC07,https://doi.org/10.1007/s10791-006-9019-z +Martin Wechsler,New Approaches to Spoken Document Retrieval.,2000,3,Inf. Retr.,3,db/journals/ir/ir3.html#WechslerMS00,https://doi.org/10.1023/A:1026512724855 +David Hawking,Measuring Search Engine Quality.,2001,4,Inf. Retr.,1,db/journals/ir/ir4.html#HawkingCBG01,https://doi.org/10.1023/A:1011468107287 +Ya-nan Qian,Dynamic author name disambiguation for growing digital libraries.,2015,18,Inf. Retr. Journal,5,db/journals/ir/ir18.html#QianZSYL15,https://doi.org/10.1007/s10791-015-9261-3 +Ricardo Campos 0001,Identifying top relevant dates for implicit time sensitive queries.,2017,20,Inf. Retr. Journal,4,db/journals/ir/ir20.html#CamposDJN17,https://doi.org/10.1007/s10791-017-9302-1 +Ralf Schenkel,Semantic Similarity Search on Semistructured Data with the XXL Search Engine.,2005,8,Inf. Retr.,4,db/journals/ir/ir8.html#SchenkelTW05,https://doi.org/10.1007/s10791-005-0746-3 +Anastasia Giachanou,Multilayer source selection as a tool for supporting patent search and classification.,2015,18,Inf. Retr. Journal,6,db/journals/ir/ir18.html#GiachanouSP15,https://doi.org/10.1007/s10791-015-9270-2 +Suzan Verberne,Learning to rank for why-question answering.,2011,14,Inf. Retr.,2,db/journals/ir/ir14.html#VerberneHTRB11,https://doi.org/10.1007/s10791-010-9136-6 +Suzan Verberne,Evaluation and analysis of term scoring methods for term extraction.,2016,19,Inf. Retr. Journal,5,db/journals/ir/ir19.html#VerberneSHK16,https://doi.org/10.1007/s10791-016-9286-2 +Kevin C. Desouza,Review of Profiling Machines: Mapping the Personal Information Economy.,2006,9,Inf. Retr.,3,db/journals/ir/ir9.html#Desouza06,https://doi.org/10.1007/s10791-006-8703-3 +Mirna Adriani,Using Statistical Term Similarity for Sense Disambiguation in Cross-Language Information Retrieval.,2000,2,Inf. Retr.,1,db/journals/ir/ir2.html#Adriani00,https://doi.org/10.1023/A:1009989801965 +William R. Hersh,Managing Gigabytes - Compressing and Indexing Documents and Images (Second Edition).,2001,4,Inf. Retr.,1,db/journals/ir/ir4.html#Hersh01,https://doi.org/10.1023/A:1011472308196 +Xing Zhou,Collaborator recommendation in heterogeneous bibliographic networks using random walks.,2017,20,Inf. Retr. Journal,4,db/journals/ir/ir20.html#ZhouDLW17,https://doi.org/10.1007/s10791-017-9300-3 +Paul Thomas,Server selection methods in personal metasearch: a comparative empirical study.,2009,12,Inf. Retr.,5,db/journals/ir/ir12.html#ThomasH09,https://doi.org/10.1007/s10791-009-9094-z +Xu Zhuang,A unified score propagation model for web spam demotion algorithm.,2017,20,Inf. Retr. Journal,6,db/journals/ir/ir20.html#ZhuangZCPK17,https://doi.org/10.1007/s10791-017-9307-9 +Johan A. List,TIJAH: Embracing IR Methods in XML Databases.,2005,8,Inf. Retr.,4,db/journals/ir/ir8.html#ListMRVHB05,https://doi.org/10.1007/s10791-005-0747-2 +Fernando Diaz,Regularizing query-based retrieval scores.,2007,10,Inf. Retr.,6,db/journals/ir/ir10.html#Diaz07,https://doi.org/10.1007/s10791-007-9034-8 +Marina Litvak,Cross-lingual training of summarization systems using annotated corpora in a foreign language.,2013,16,Inf. Retr.,5,db/journals/ir/ir16.html#LitvakL13,https://doi.org/10.1007/s10791-012-9210-3 +William R. Hersh,TREC genomics special issue overview.,2009,12,Inf. Retr.,1,db/journals/ir/ir12.html#HershV09,https://doi.org/10.1007/s10791-008-9076-6 +Ian Soboroff,A guide to the RIA workshop data archive.,2009,12,Inf. Retr.,6,db/journals/ir/ir12.html#Soboroff09,https://doi.org/10.1007/s10791-009-9102-3 +Rodrygo L. T. Santos,Learning to rank query suggestions for adhoc and diversity search.,2013,16,Inf. Retr.,4,db/journals/ir/ir16.html#SantosMO13,https://doi.org/10.1007/s10791-012-9211-2 +Jimmy J. Lin,Modeling actions of PubMed users with n-gram language models.,2009,12,Inf. Retr.,4,db/journals/ir/ir12.html#LinW09,https://doi.org/10.1007/s10791-008-9067-7 +Gloria T. Lau,A relatedness analysis of government regulations using domain knowledge and structural organization.,2006,9,Inf. Retr.,6,db/journals/ir/ir9.html#LauLW06,https://doi.org/10.1007/s10791-006-9010-8 +Ronald T. Fernández,Extending the language modeling framework for sentence retrieval to include local context.,2011,14,Inf. Retr.,4,db/journals/ir/ir14.html#FernandezLA11,https://doi.org/10.1007/s10791-010-9146-4 +Tuomas Talvensaari,Focused web crawling in the acquisition of comparable corpora.,2008,11,Inf. Retr.,5,db/journals/ir/ir11.html#TalvensaariPJJL08,https://doi.org/10.1007/s10791-008-9058-8 +Massimo Melucci,Introduction: A perspective on Web Information Retrieval.,2006,9,Inf. Retr.,2,db/journals/ir/ir9.html#MelucciH06,https://doi.org/10.1007/s10791-006-7145-2 +Ronny Lempel,Rank-Stability and Rank-Similarity of Link-Based Web Ranking Algorithms in Authority-Connected Graphs.,2005,8,Inf. Retr.,2,db/journals/ir/ir8.html#LempelM05,https://doi.org/10.1007/s10791-005-5661-0 +Gianni Costa,Machine learning techniques for XML (co-)clustering by structure-constrained phrases.,2018,21,Inf. Retr. Journal,1,db/journals/ir/ir21.html#CostaO18,https://doi.org/10.1007/s10791-017-9314-x +Maayan Geffet,Automatic Alphabet Recognition.,2005,8,Inf. Retr.,1,db/journals/ir/ir8.html#GeffetWF05,https://doi.org/10.1023/B:INRT.0000048495.64628.ea +Mohand Boughanem,Genetic Approach to Query Space Exploration.,1999,1,Inf. Retr.,3,db/journals/ir/ir1.html#BoughanemCT99,https://doi.org/10.1023/A:1009931404333 +Saraschandra Karanam,The role of domain knowledge in cognitive modeling of information search.,2017,20,Inf. Retr. Journal,5,db/journals/ir/ir20.html#KaranamJOO17,https://doi.org/10.1007/s10791-017-9308-8 +Martin Wechsler,The Probability Ranking Principle Revisited.,2000,3,Inf. Retr.,3,db/journals/ir/ir3.html#WechslerS00,https://doi.org/10.1023/A:1026516825764 +W. John Wilbur,Spelling correction in the PubMed search engine.,2006,9,Inf. Retr.,5,db/journals/ir/ir9.html#WilburKX06,https://doi.org/10.1007/s10791-006-9002-8 +Jangwon Seo,Online community search using conversational structures.,2011,14,Inf. Retr.,6,db/journals/ir/ir14.html#SeoCS11,https://doi.org/10.1007/s10791-011-9166-8 +Norbert Fuhr,Introduction to the Special Issue on INEX.,2005,8,Inf. Retr.,4,db/journals/ir/ir8.html#FuhrL05,https://doi.org/10.1007/s10791-005-0745-4 +Meriem Amina Zingla,Hybrid query expansion model for text and microblog information retrieval.,2018,21,Inf. Retr. Journal,4,db/journals/ir/ir21.html#ZinglaLMBS18,https://doi.org/10.1007/s10791-017-9326-6 +David Madigan,Extreme value theory applied to document retrieval from large collections.,2006,9,Inf. Retr.,3,db/journals/ir/ir9.html#MadiganVW06,https://doi.org/10.1007/s10791-006-0882-4 +Enrique Amigó,A comparison of extrinsic clustering evaluation metrics based on formal constraints.,2009,12,Inf. Retr.,5,db/journals/ir/ir12.html#AmigoGAV09a,https://doi.org/10.1007/s10791-009-9106-z +Peter Schäuble,Introduction.,2000,3,Inf. Retr.,3,db/journals/ir/ir3.html#SchaubleM00,https://doi.org/10.1023/A:1026560608017 +Marta Rukoz,Delta-distance: A family of dissimilarity metrics between images represented by multi-level feature vectors.,2006,9,Inf. Retr.,6,db/journals/ir/ir9.html#RukozMJ06,https://doi.org/10.1007/s10791-006-9011-7 +Elke Mittendorf,Information Retrieval can Cope with Many Errors.,2000,3,Inf. Retr.,3,db/journals/ir/ir3.html#MittendorfS00,https://doi.org/10.1023/A:1026564708926 +Miguel E. Ruiz,Hierarchical Text Categorization Using Neural Networks.,2002,5,Inf. Retr.,1,db/journals/ir/ir5.html#RuizS02,https://doi.org/10.1023/A:1012782908347 +Michael Bendersky,Utilizing passage-based language models for ad hoc document retrieval.,2010,13,Inf. Retr.,2,db/journals/ir/ir13.html#BenderskyK10,https://doi.org/10.1007/s10791-009-9118-8 +David E. Losada,Statistical query expansion for sentence retrieval and its effects on weak and strong queries.,2010,13,Inf. Retr.,5,db/journals/ir/ir13.html#Losada10,https://doi.org/10.1007/s10791-009-9122-z +Alistair Moffat,Binary Interpolative Coding for Effective Index Compression.,2000,3,Inf. Retr.,1,db/journals/ir/ir3.html#MoffatS00,https://doi.org/10.1023/A:1013002601898 +Yiqun Liu,Constructing click models for search users.,2017,20,Inf. Retr. Journal,1,db/journals/ir/ir20.html#LiuNC17,https://doi.org/10.1007/s10791-017-9294-x +Jakub Piskorski,On knowledge-poor methods for person name matching and lemmatization for highly inflectional languages.,2009,12,Inf. Retr.,3,db/journals/ir/ir12.html#PiskorskiWS09,https://doi.org/10.1007/s10791-008-9085-5 +Bassam H. Hammo,Towards enhancing retrieval effectiveness of search engines for diacritisized Arabic documents.,2009,12,Inf. Retr.,3,db/journals/ir/ir12.html#Hammo09,https://doi.org/10.1007/s10791-008-9081-9 +Kostas Fragos,A goodness of fit test approach in information retrieval.,2006,9,Inf. Retr.,3,db/journals/ir/ir9.html#FragosM06,https://doi.org/10.1007/s10791-006-3609-7 +Thierson Couto,Classifying documents with link-based bibliometric measures.,2010,13,Inf. Retr.,4,db/journals/ir/ir13.html#CoutoZCCGMB10,https://doi.org/10.1007/s10791-009-9119-7 +Jason J. Jung,Ontological framework based on contextual mediation for collaborative information retrieval.,2007,10,Inf. Retr.,1,db/journals/ir/ir10.html#Jung07,https://doi.org/10.1007/s10791-006-9013-5 +Nieves R. Brisaboa,Lightweight natural language text compression.,2007,10,Inf. Retr.,1,db/journals/ir/ir10.html#BrisaboaFNP07,https://doi.org/10.1007/s10791-006-9001-9 +Carsten Eickhoff,Introduction to the special issue on search as learning.,2017,20,Inf. Retr. Journal,5,db/journals/ir/ir20.html#EickhoffGHH17,https://doi.org/10.1007/s10791-017-9315-9 +Bernd Wondergem,Matching Index Expressions for Information Retrieval.,2000,2,Inf. Retr.,4,db/journals/ir/ir2.html#WondergemBW00,https://doi.org/10.1023/A:1009928328710 +Daniel Wolff,Learning music similarity from relative user ratings.,2014,17,Inf. Retr.,2,db/journals/ir/ir17.html#WolffW14,https://doi.org/10.1007/s10791-013-9229-0 +Olivier Chapelle,Gradient descent optimization of smoothed information retrieval metrics.,2010,13,Inf. Retr.,3,db/journals/ir/ir13.html#ChapelleW10,https://doi.org/10.1007/s10791-009-9110-3 +Juan M. Fernández-Luna,Introduction to the special issue on teaching and learning in information retrieval.,2009,12,Inf. Retr.,2,db/journals/ir/ir12.html#Fernandez-LunaHM09,https://doi.org/10.1007/s10791-009-9090-3 +Nicola Stokes,Exploring criteria for successful query expansion in the genomic domain.,2009,12,Inf. Retr.,1,db/journals/ir/ir12.html#StokesLCZ09,https://doi.org/10.1007/s10791-008-9073-9 +Ray R. Larson,A Fusion Approach to XML Structured Document Retrieval.,2005,8,Inf. Retr.,4,db/journals/ir/ir8.html#Larson05,https://doi.org/10.1007/s10791-005-0749-0 +Leif Azzopardi,Introduction to special issue on the second international conference on the theory of information retrieval.,2011,14,Inf. Retr.,1,db/journals/ir/ir14.html#AzzopardiSKRRSY11,https://doi.org/10.1007/s10791-010-9142-8 +Gabriella Kazai,An analysis of human factors and label accuracy in crowdsourcing relevance judgments.,2013,16,Inf. Retr.,2,db/journals/ir/ir16.html#KazaiKM13,https://doi.org/10.1007/s10791-012-9205-0 +Jun Wang 0012,Probabilistic relevance ranking for collaborative filtering.,2008,11,Inf. Retr.,6,db/journals/ir/ir11.html#WangRVR08,https://doi.org/10.1007/s10791-008-9060-1 +Giovanni Yoko Kristianto,Utilizing dependency relationships between math expressions in math IR.,2017,20,Inf. Retr. Journal,2,db/journals/ir/ir20.html#KristiantoTA17,https://doi.org/10.1007/s10791-017-9296-8 +Neil O'Hare,Modeling locations with social media.,2013,16,Inf. Retr.,1,db/journals/ir/ir16.html#OHareM13,https://doi.org/10.1007/s10791-012-9195-y +Diomidis Spinellis,Index-Based Persistent Document Identifiers.,2005,8,Inf. Retr.,1,db/journals/ir/ir8.html#Spinellis05,https://doi.org/10.1023/B:INRT.0000048494.05013.6a +Efthimis N. Efthimiadis,Non-english web search: an evaluation of indexing and searching the Greek web.,2009,12,Inf. Retr.,3,db/journals/ir/ir12.html#EfthimiadisMKLL09,https://doi.org/10.1007/s10791-008-9084-6 +Ronan Cummins,Evolving local and global weighting schemes in information retrieval.,2006,9,Inf. Retr.,3,db/journals/ir/ir9.html#CumminsO06,https://doi.org/10.1007/s10791-006-1682-6 +Stefan Wermter,Neural Network Agents for Learning Semantic Text Classification.,2000,3,Inf. Retr.,2,db/journals/ir/ir3.html#Wermter00,https://doi.org/10.1023/A:1009942513170 +Julián Urbano,Test collection reliability: a study of bias and robustness to statistical assumptions via stochastic simulation.,2016,19,Inf. Retr. Journal,3,db/journals/ir/ir19.html#Urbano16,https://doi.org/10.1007/s10791-015-9274-y +Enrique Herrera-Viedma,A computer-supported learning system to help teachers to teach Fuzzy Information Retrieval Systems.,2009,12,Inf. Retr.,2,db/journals/ir/ir12.html#Herrera-ViedmaLAMCP09,https://doi.org/10.1007/s10791-008-9087-3 +Youjin Chang,Construction of query concepts based on feature clustering of documents.,2006,9,Inf. Retr.,3,db/journals/ir/ir9.html#ChangKR06,https://doi.org/10.1007/s10791-006-0837-9 +Juan M. Fernández-Luna,Teaching and learning in information retrieval.,2009,12,Inf. Retr.,2,db/journals/ir/ir12.html#Fernandez-LunaHME09,https://doi.org/10.1007/s10791-009-9089-9 +Olga Vechtomova,Query Expansion with Long-Span Collocates.,2003,6,Inf. Retr.,2,db/journals/ir/ir6.html#VechtomovaRJ03,https://doi.org/10.1023/A:1023936321956 +Andrew Trotman,Learning to Rank.,2005,8,Inf. Retr.,3,db/journals/ir/ir8.html#Trotman05,https://doi.org/10.1007/s10791-005-6991-7 +Xing Wei,Table extraction for answer retrieval.,2006,9,Inf. Retr.,5,db/journals/ir/ir9.html#WeiCM06,https://doi.org/10.1007/s10791-006-9005-5 +Christopher C. Vogt,Fusion Via a Linear Combination of Scores.,1999,1,Inf. Retr.,3,db/journals/ir/ir1.html#VogtC99,https://doi.org/10.1023/A:1009980820262 +Charles L. A. Clarke,Assessing efficiency-effectiveness tradeoffs in multi-stage retrieval systems without using relevance judgments.,2016,19,Inf. Retr. Journal,4,db/journals/ir/ir19.html#ClarkeCM16,https://doi.org/10.1007/s10791-016-9279-1 +Martin Nilsson,Hierarchical Clustering Using Non-Greedy Principal Direction Divisive Partitioning.,2002,5,Inf. Retr.,4,db/journals/ir/ir5.html#Nilsson02,https://doi.org/10.1023/A:1020443310743 +K. L. Kwok,Improving English and Chinese Ad-Hoc Retrieval: A Tipster Text Phase 3 Project Report.,2000,3,Inf. Retr.,4,db/journals/ir/ir3.html#Kwok00,https://doi.org/10.1023/A:1009955715597 +Kazuko Kuriyama,Pooling for a Large-Scale Test Collection: An Analysis of the Search Results from the First NTCIR Workshop.,2002,5,Inf. Retr.,1,db/journals/ir/ir5.html#KuriyamaKNE02,https://doi.org/10.1023/A:1012778807438 +Saliha Azzam,New Directions in Question Answering.,2006,9,Inf. Retr.,3,db/journals/ir/ir9.html#AzzamH06,https://doi.org/10.1007/s10791-006-8702-4 +Anthony Bigot,Fusing different information retrieval systems according to query-topics: a study based on correlation in information retrieval systems and TREC topics.,2011,14,Inf. Retr.,6,db/journals/ir/ir14.html#BigotCDHM11,https://doi.org/10.1007/s10791-011-9169-5 +Jin Zhang,The Characteristic Analysis of the DARE Visual Space.,2001,4,Inf. Retr.,1,db/journals/ir/ir4.html#Zhang01,https://doi.org/10.1023/A:1011420324125 +Fotis Lazarinis,Introduction to the special issue on non-english web retrieval.,2009,12,Inf. Retr.,3,db/journals/ir/ir12.html#LazarinisVTE09,https://doi.org/10.1007/s10791-009-9091-2 +Xiaojun Wan 0001,Using only cross-document relationships for both generic and topic-focused multi-document summarizations.,2008,11,Inf. Retr.,1,db/journals/ir/ir11.html#Wan08,https://doi.org/10.1007/s10791-007-9037-5 +Radu Soricut,Automatic question answering using the web: Beyond the Factoid.,2006,9,Inf. Retr.,2,db/journals/ir/ir9.html#SoricutB06,https://doi.org/10.1007/s10791-006-7149-y +Daniel Lemire,Scale and Translation Invariant Collaborative Filtering Systems.,2005,8,Inf. Retr.,1,db/journals/ir/ir8.html#Lemire05,https://doi.org/10.1023/B:INRT.0000048492.50961.a6 +Travis Ebesu,Neural Semantic Personalized Ranking for item cold-start recommendation.,2017,20,Inf. Retr. Journal,2,db/journals/ir/ir20.html#EbesuF17,https://doi.org/10.1007/s10791-017-9295-9 +Marcelo G. Manzato,Mining unstructured content for recommender systems: an ensemble approach.,2016,19,Inf. Retr. Journal,4,db/journals/ir/ir19.html#ManzatoDFSDCRP16,https://doi.org/10.1007/s10791-016-9280-8 +Mengwen Liu,Which used product is more sellable? A time-aware approach.,2017,20,Inf. Retr. Journal,2,db/journals/ir/ir20.html#LiuDPFYH17,https://doi.org/10.1007/s10791-017-9293-y +Keshi Dai,Variational bayes for modeling score distributions.,2011,14,Inf. Retr.,1,db/journals/ir/ir14.html#DaiKPA11,https://doi.org/10.1007/s10791-010-9156-2 +Olivier Chapelle,Efficient algorithms for ranking with SVMs.,2010,13,Inf. Retr.,3,db/journals/ir/ir13.html#ChapelleK10,https://doi.org/10.1007/s10791-009-9109-9 +Wei Zheng,Leveraging integrated information to extract query subtopics for search result diversification.,2014,17,Inf. Retr.,1,db/journals/ir/ir17.html#ZhengFYW14,https://doi.org/10.1007/s10791-013-9228-1 +Martin Braschler,Using Corpus-Based Approaches in a System for Multilingual Information Retrieval.,2000,3,Inf. Retr.,3,db/journals/ir/ir3.html#BraschlerS00,https://doi.org/10.1023/A:1026525127581 +Omar Alonso,Implementing crowdsourcing-based relevance experimentation: an industrial perspective.,2013,16,Inf. Retr.,2,db/journals/ir/ir16.html#Alonso13,https://doi.org/10.1007/s10791-012-9204-1 +Paul N. Bennett,The Combination of Text Classifiers Using Reliability Indicators.,2005,8,Inf. Retr.,1,db/journals/ir/ir8.html#BennettDH05,https://doi.org/10.1023/B:INRT.0000048491.59134.94 +Rodrygo L. T. Santos,On the role of novelty for search result diversification.,2012,15,Inf. Retr.,5,db/journals/ir/ir15.html#SantosMO12,https://doi.org/10.1007/s10791-011-9180-x +Jason J. Jung,Ontological framework based on contextual mediation for collaborative information retrieval.,2007,10,Inf. Retr.,2,db/journals/ir/ir10.html#Jung07a,https://doi.org/10.1007/s10791-007-9024-x +Paul Ogilvie,On the number of terms used in automatic query expansion.,2009,12,Inf. Retr.,6,db/journals/ir/ir12.html#OgilvieVC09,https://doi.org/10.1007/s10791-009-9104-1 +Jie Lu 0002,Full-text federated search of text-based digital libraries in peer-to-peer networks.,2006,9,Inf. Retr.,4,db/journals/ir/ir9.html#LuC06,https://doi.org/10.1007/s10791-006-6388-2 +Walid Magdy,Effect of OCR error correction on Arabic retrieval.,2008,11,Inf. Retr.,5,db/journals/ir/ir11.html#MagdyD08,https://doi.org/10.1007/s10791-008-9055-y +Marc Sloan,A term-based methodology for query reformulation understanding.,2015,18,Inf. Retr. Journal,2,db/journals/ir/ir18.html#SloanYW15,https://doi.org/10.1007/s10791-015-9251-5 +Tao Qin,A general approximation framework for direct optimization of information retrieval measures.,2010,13,Inf. Retr.,4,db/journals/ir/ir13.html#QinLL10,https://doi.org/10.1007/s10791-009-9124-x +Luo Si,An effective and efficient results merging strategy for multilingual information retrieval in federated search environments.,2008,11,Inf. Retr.,1,db/journals/ir/ir11.html#SiCCY08,https://doi.org/10.1007/s10791-007-9036-6 +Lili Kotlerman,Clustering small-sized collections of short texts.,2018,21,Inf. Retr. Journal,4,db/journals/ir/ir21.html#KotlermanDK18,https://doi.org/10.1007/s10791-017-9324-8 +Katja Hofmann,Balancing exploration and exploitation in listwise and pairwise online learning to rank for information retrieval.,2013,16,Inf. Retr.,1,db/journals/ir/ir16.html#HofmannWR13,https://doi.org/10.1007/s10791-012-9197-9 +Rana Forsati,An effective Web page recommender using binary data clustering.,2015,18,Inf. Retr. Journal,3,db/journals/ir/ir18.html#ForsatiMS15,https://doi.org/10.1007/s10791-015-9252-4 +Wei Zheng,Coverage-based search result diversification.,2012,15,Inf. Retr.,5,db/journals/ir/ir15.html#ZhengWFC12,https://doi.org/10.1007/s10791-011-9178-4 +Pengjie Ren,Mining and ranking users' intents behind queries.,2015,18,Inf. Retr. Journal,6,db/journals/ir/ir18.html#RenCMWZR15,https://doi.org/10.1007/s10791-015-9271-1 +Mark W. Davis,Towards Universal Text Retrieval: Tipster Text Retrieval Research at New Mexico State University.,2000,3,Inf. Retr.,4,db/journals/ir/ir3.html#DavisO00,https://doi.org/10.1023/A:1009907816505 +Yuefeng Li,A pattern mining approach for information filtering systems.,2011,14,Inf. Retr.,3,db/journals/ir/ir14.html#LiAX11,https://doi.org/10.1007/s10791-010-9154-4 +Andrew McCallum,Automating the Construction of Internet Portals with Machine Learning.,2000,3,Inf. Retr.,2,db/journals/ir/ir3.html#McCallumNRS00,https://doi.org/10.1023/A:1009953814988 +Gordon V. Cormack,Efficient and effective spam filtering and re-ranking for large web datasets.,2011,14,Inf. Retr.,5,db/journals/ir/ir14.html#CormackSC11,https://doi.org/10.1007/s10791-011-9162-z +Gareth J. F. Jones,Incremental Relevance Feedback in Japanese Text Retrieval.,2000,2,Inf. Retr.,4,db/journals/ir/ir2.html#JonesSKS00,https://doi.org/10.1023/A:1009932512781 +Kumiko Tanaka-Ishii,Multilingual phrase-based concordance generation in real-time.,2007,10,Inf. Retr.,3,db/journals/ir/ir10.html#Tanaka-IshiiI07,https://doi.org/10.1007/s10791-006-9021-5 +Lior Rokach,Negation recognition in medical narrative reports.,2008,11,Inf. Retr.,6,db/journals/ir/ir11.html#RokachRM08,https://doi.org/10.1007/s10791-008-9061-0 +Azadeh Shakery,Leveraging comparable corpora for cross-lingual information retrieval in resource-lean language pairs.,2013,16,Inf. Retr.,1,db/journals/ir/ir16.html#ShakeryZ13,https://doi.org/10.1007/s10791-012-9194-z +Guido Zuccon,Crowdsourcing interactions: using crowdsourcing for evaluating interactive information retrieval systems.,2013,16,Inf. Retr.,2,db/journals/ir/ir16.html#ZucconLWYJA13,https://doi.org/10.1007/s10791-012-9206-z +Júlia Góth,Varying Retrieval Categoricity Using Hyperbolic Geometry.,2005,8,Inf. Retr.,2,db/journals/ir/ir8.html#GothS05,https://doi.org/10.1007/s10791-005-5662-z +Maria-Hendrike Peetz,Using temporal bursts for query modeling.,2014,17,Inf. Retr.,1,db/journals/ir/ir17.html#PeetzMR14,https://doi.org/10.1007/s10791-013-9227-2 +Michal Krupka,On complexity reduction of concept lattices: three counterexamples.,2012,15,Inf. Retr.,2,db/journals/ir/ir15.html#Krupka12,https://doi.org/10.1007/s10791-011-9175-7 +Gonzalo Navarro,Adding Compression to Block Addressing Inverted Indexes.,2000,3,Inf. Retr.,1,db/journals/ir/ir3.html#NavarroMNZB00,https://doi.org/10.1023/A:1009934302807 +Yin He,Tendency correlation analysis for direct optimization of evaluation measures in information retrieval.,2010,13,Inf. Retr.,6,db/journals/ir/ir13.html#HeL10,https://doi.org/10.1007/s10791-010-9134-8 +Yeha Lee,Utilizing local evidence for blog feed search.,2012,15,Inf. Retr.,2,db/journals/ir/ir15.html#LeeNL12,https://doi.org/10.1007/s10791-011-9176-6 +C. J. van Rijsbergen,Another Look at the Logical Uncertainty Principle.,2000,2,Inf. Retr.,1,db/journals/ir/ir2.html#Rijsbergen00,https://doi.org/10.1023/A:1009969229281 +Jaana Kekäläinen,The Co-Effects of Query Structure and Expansion on Retrieval Performance in Probabilistic Text Retrieval.,2000,1,Inf. Retr.,4,db/journals/ir/ir1.html#KekalainenJ00,https://doi.org/10.1023/A:1009983401464 +Richard McCreadie,Identifying top news using crowdsourcing.,2013,16,Inf. Retr.,2,db/journals/ir/ir16.html#McCreadieMO13,https://doi.org/10.1007/s10791-012-9186-z +John S. Whissell,Improving document clustering using Okapi BM25 feature weighting.,2011,14,Inf. Retr.,5,db/journals/ir/ir14.html#WhissellC11,https://doi.org/10.1007/s10791-011-9163-y +Jimmy J. Lin,Methods for automatically evaluating answers to complex questions.,2006,9,Inf. Retr.,5,db/journals/ir/ir9.html#LinD06,https://doi.org/10.1007/s10791-006-9003-7 +Jimmy Lin,The role of index compression in score-at-a-time query evaluation.,2017,20,Inf. Retr. Journal,3,db/journals/ir/ir20.html#LinT17,https://doi.org/10.1007/s10791-016-9291-5 +Alex Penev,Structure vs. content in hierarchical corpora.,2010,13,Inf. Retr.,6,db/journals/ir/ir13.html#PenevW10,https://doi.org/10.1007/s10791-010-9132-x +Per Ahlgren,Swedish full text retrieval: Effectiveness of different combinations of indexing strategies with query terms.,2006,9,Inf. Retr.,6,db/journals/ir/ir9.html#AhlgrenK06,https://doi.org/10.1007/s10791-006-9009-1 +Donna Harman,Overview of the Reliable Information Access Workshop.,2009,12,Inf. Retr.,6,db/journals/ir/ir12.html#HarmanB09,https://doi.org/10.1007/s10791-009-9101-4 +Tong Zhang 0001,Text Categorization Based on Regularized Linear Classification Methods.,2001,4,Inf. Retr.,1,db/journals/ir/ir4.html#ZhangO01,https://doi.org/10.1023/A:1011441423217 +Kavita Ganesan,OpinoFetch: a practical and efficient approach to collecting opinions on arbitrary entities.,2015,18,Inf. Retr. Journal,6,db/journals/ir/ir18.html#GanesanZ15,https://doi.org/10.1007/s10791-015-9272-0 +Yi-fang Brook Wu,Document keyphrases as subject metadata: incorporating document key concepts in search results.,2008,11,Inf. Retr.,3,db/journals/ir/ir11.html#WuL08,https://doi.org/10.1007/s10791-008-9044-1 +Larry H. Smith,Finding related sentence pairs in MEDLINE.,2010,13,Inf. Retr.,6,db/journals/ir/ir13.html#SmithW10,https://doi.org/10.1007/s10791-010-9126-8 +Ralf Krestel,Reranking web search results for diversity.,2012,15,Inf. Retr.,5,db/journals/ir/ir15.html#KrestelF12,https://doi.org/10.1007/s10791-011-9179-3 +Lars Asker,Classifying Amharic webnews.,2009,12,Inf. Retr.,3,db/journals/ir/ir12.html#AskerAGAH09,https://doi.org/10.1007/s10791-008-9080-x +Yihan Lu,Personalized Information Seeking Assistant (PiSA): from programming information seeking to learning.,2017,20,Inf. Retr. Journal,5,db/journals/ir/ir20.html#LuH17,https://doi.org/10.1007/s10791-017-9305-y +Azadeh Shakery,Smoothing document language models with probabilistic term count propagation.,2008,11,Inf. Retr.,2,db/journals/ir/ir11.html#ShakeryZ08,https://doi.org/10.1007/s10791-007-9041-9 +Enrique Amigó,A comparison of extrinsic clustering evaluation metrics based on formal constraints.,2009,12,Inf. Retr.,4,db/journals/ir/ir12.html#AmigoGAV09,https://doi.org/10.1007/s10791-008-9066-8 +Peter B. Golbus,Increasing evaluation sensitivity to diversity.,2013,16,Inf. Retr.,4,db/journals/ir/ir16.html#GolbusAC13,https://doi.org/10.1007/s10791-012-9218-8 +Iain Campbell,Interactive Evaluation of the Ostensive Model Using a New Test Collection of Images with Multiple Relevance Assessments.,2000,2,Inf. Retr.,1,db/journals/ir/ir2.html#Campbell00,https://doi.org/10.1023/A:1009902203782 +Haitao Yu,Decoding multi-click search behavior based on marginal utility.,2017,20,Inf. Retr. Journal,1,db/journals/ir/ir20.html#YuJBJJ17,https://doi.org/10.1007/s10791-016-9289-z +Tetsuya Sakai,Diversified search evaluation: lessons from the NTCIR-9 INTENT task.,2013,16,Inf. Retr.,4,db/journals/ir/ir16.html#SakaiS13,https://doi.org/10.1007/s10791-012-9208-x +Alejandro Bellogín,Bridging memory-based collaborative filtering and text retrieval.,2013,16,Inf. Retr.,6,db/journals/ir/ir16.html#Bellogin0C13,https://doi.org/10.1007/s10791-012-9214-z +Shoaib Jameel,Supervised topic models with word order structure for document classification and retrieval learning.,2015,18,Inf. Retr. Journal,4,db/journals/ir/ir18.html#JameelLB15,https://doi.org/10.1007/s10791-015-9254-2 +Carsten Eickhoff,Increasing cheat robustness of crowdsourcing tasks.,2013,16,Inf. Retr.,2,db/journals/ir/ir16.html#EickhoffV13,https://doi.org/10.1007/s10791-011-9181-9 +Shmuel T. Klein,Skeleton Trees for the Efficient Decoding of Huffman Encoded Texts.,2000,3,Inf. Retr.,1,db/journals/ir/ir3.html#Klein00,https://doi.org/10.1023/A:1009910017828 +Yi Fang,Discriminative probabilistic models for expert search in heterogeneous information sources.,2011,14,Inf. Retr.,2,db/journals/ir/ir14.html#FangSM11,https://doi.org/10.1007/s10791-010-9139-3 +André Csillaghy,Content-Based Image Retrieval in Astronomy.,2000,3,Inf. Retr.,3,db/journals/ir/ir3.html#CsillaghyHB00,https://doi.org/10.1023/A:1026568809834 +Shengli Wu,Result merging methods in distributed information retrieval with overlapping databases.,2007,10,Inf. Retr.,3,db/journals/ir/ir10.html#WuM07,https://doi.org/10.1007/s10791-007-9023-y +Subrata Kumar Das,Mobile Agents for Distributed and Heterogeneous Information Retrieval.,2005,8,Inf. Retr.,3,db/journals/ir/ir8.html#DasSWL05,https://doi.org/10.1007/s10791-005-6992-6 +Vassilis Plachouras,A decision mechanism for the selective combination of evidence in topic distillation.,2006,9,Inf. Retr.,2,db/journals/ir/ir9.html#PlachourasCO06,https://doi.org/10.1007/s10791-006-7147-0 +Cristiano R. de Carvalho,Website replica detection with distant supervision.,2018,21,Inf. Retr. Journal,4,db/journals/ir/ir21.html#CarvalhoMVZ18,https://doi.org/10.1007/s10791-017-9320-z +Karen S. K. Cheung,Complexity Reduction in Lattice-Based Information Retrieval.,2005,8,Inf. Retr.,2,db/journals/ir/ir8.html#CheungV05,https://doi.org/10.1007/s10791-005-5663-y +Christoph Baumgarten,Retrieving Information from a Distributed Heterogeneous Document Collection.,2000,3,Inf. Retr.,3,db/journals/ir/ir3.html#Baumgarten00,https://doi.org/10.1023/A:1026572910743 +Martina Naughton,Sentence-level event classification in unstructured texts.,2010,13,Inf. Retr.,2,db/journals/ir/ir13.html#NaughtonSC10,https://doi.org/10.1007/s10791-009-9113-0 +Heikki Keskustalo,Evaluating the effectiveness of relevance feedback based on a user simulation model: effects of a user scenario on cumulated gain value.,2008,11,Inf. Retr.,3,db/journals/ir/ir11.html#KeskustaloJP08,https://doi.org/10.1007/s10791-007-9043-7 +Roi Blanco,TSP and cluster-based solutions to the reassignment of document identifiers.,2006,9,Inf. Retr.,4,db/journals/ir/ir9.html#BlancoB06,https://doi.org/10.1007/s10791-006-6614-y +Fabio Crestani,Exploiting the Similarity of Non-Matching Terms at Retrieval Time.,2000,2,Inf. Retr.,1,db/journals/ir/ir2.html#Crestani00,https://doi.org/10.1023/A:1009973415168 +Luo Si,Combining gene sequence similarity and textual information for gene function annotation in the literature.,2008,11,Inf. Retr.,5,db/journals/ir/ir11.html#SiYKF08,https://doi.org/10.1007/s10791-008-9053-0 +Daniel P. Lopresti,A Comparison of Text-Based Methods for Detecting Duplication in Scanned Document Databases.,2001,4,Inf. Retr.,2,db/journals/ir/ir4.html#Lopresti01,https://doi.org/10.1023/A:1011471129047 +Oren Kurland,Re-ranking search results using language models of query-specific clusters.,2009,12,Inf. Retr.,4,db/journals/ir/ir12.html#Kurland09,https://doi.org/10.1007/s10791-008-9065-9 +Ronald R. Yager,A Hierarchical Document Retrieval Language.,2000,3,Inf. Retr.,4,db/journals/ir/ir3.html#Yager00,https://doi.org/10.1023/A:1009911900286 +Lior Meister,Re-ranking search results using an additional retrieved list.,2011,14,Inf. Retr.,4,db/journals/ir/ir14.html#MeisterKK11,https://doi.org/10.1007/s10791-010-9150-8 +Donald Metzler,Analysis of Statistical Question Classification for Fact-Based Questions.,2005,8,Inf. Retr.,3,db/journals/ir/ir8.html#MetzlerC05,https://doi.org/10.1007/s10791-005-6995-3 +Antonio J. Roa-Valverde,A survey of approaches for ranking on the web of data.,2014,17,Inf. Retr.,4,db/journals/ir/ir17.html#Roa-ValverdeS14,https://doi.org/10.1007/s10791-014-9240-0 +Sarah Zelikovitz,Extending WHIRL with background knowledge for improved text classification.,2007,10,Inf. Retr.,1,db/journals/ir/ir10.html#ZelikovitzCH07,https://doi.org/10.1007/s10791-006-9004-6 +Olga Vechtomova,Noun phrases in interactive query expansion and document ranking.,2006,9,Inf. Retr.,4,db/journals/ir/ir9.html#Vechtomova06,https://doi.org/10.1007/s10791-006-6390-8 +Le Zhao,The nature of novelty detection.,2006,9,Inf. Retr.,5,db/journals/ir/ir9.html#ZhaoZM06,https://doi.org/10.1007/s10791-006-9000-x +Fernando Diaz,A generative theory of relevance.,2010,13,Inf. Retr.,6,db/journals/ir/ir13.html#Diaz10,https://doi.org/10.1007/s10791-010-9140-x +Rohail Syed,Optimizing search results for human learning goals.,2017,20,Inf. Retr. Journal,5,db/journals/ir/ir20.html#SyedC17,https://doi.org/10.1007/s10791-017-9303-0 +Simon Knight,The orchestration of a collaborative information seeking learning task.,2017,20,Inf. Retr. Journal,5,db/journals/ir/ir20.html#KnightRLTMS17,https://doi.org/10.1007/s10791-017-9304-z +Xitong Liu,Exploiting entity relationship for query expansion in enterprise search.,2014,17,Inf. Retr.,3,db/journals/ir/ir17.html#LiuCFW14,https://doi.org/10.1007/s10791-013-9237-0 +Patricia F. Katopol,Knowledge Management in the Socio Technical World? The Graffiti Continues.,2003,6,Inf. Retr.,2,db/journals/ir/ir6.html#Katopol03,https://doi.org/10.1023/A:1023992406935 +David Hawking,On Collection Size and Retrieval Effectiveness.,2003,6,Inf. Retr.,1,db/journals/ir/ir6.html#HawkingR03,https://doi.org/10.1023/A:1022904715765 +Zhiyong Lu,Evaluation of query expansion using MeSH in PubMed.,2009,12,Inf. Retr.,1,db/journals/ir/ir12.html#LuKW09,https://doi.org/10.1007/s10791-008-9074-8 +Stephen Robertson,On rank-based effectiveness measures and optimization.,2007,10,Inf. Retr.,3,db/journals/ir/ir10.html#RobertsonZ07,https://doi.org/10.1007/s10791-007-9025-9 +Andreas S. Weigend,Exploiting Hierarchy in Text Categorization.,1999,1,Inf. Retr.,3,db/journals/ir/ir1.html#WeigendWP99,https://doi.org/10.1023/A:1009983522080 +Nina Wacholder,Spotting and Discovering Terms Through Natural Language Processing.,2003,6,Inf. Retr.,2,db/journals/ir/ir6.html#Wacholder03,https://doi.org/10.1023/A:1023940422865 +Bettina Berendt,A user-centric approach to identifying best deployment strategies for language tools: the impact of content and access language on Web user behaviour and attitudes.,2009,12,Inf. Retr.,3,db/journals/ir/ir12.html#BerendtK09,https://doi.org/10.1007/s10791-008-9086-4 +Andreas Henrich,Blended learning and pure e-learning concepts for information retrieval: experiences and future directions.,2009,12,Inf. Retr.,2,db/journals/ir/ir12.html#HenrichS09,https://doi.org/10.1007/s10791-008-9079-3 +Avi Arampatzis,Versatile Query Scrambling for Private Web Search.,2015,18,Inf. Retr. Journal,4,db/journals/ir/ir18.html#ArampatzisDE15,https://doi.org/10.1007/s10791-015-9256-0 +Yunjie Xu,Information Retrieval with a Hybrid Automatic Query Expansion and Data Fusion Procedure.,2005,8,Inf. Retr.,1,db/journals/ir/ir8.html#XuB05,https://doi.org/10.1023/B:INRT.0000048496.31867.62 +Barry Smyth,Anonymous personalization in collaborative web search.,2006,9,Inf. Retr.,2,db/journals/ir/ir9.html#SmythB06,https://doi.org/10.1007/s10791-006-7148-z +Yan Wang 0014,Discover hidden web properties by random walk on bipartite graph.,2014,17,Inf. Retr.,3,db/journals/ir/ir17.html#WangLL14,https://doi.org/10.1007/s10791-013-9230-7 +Luís M. S. Russo,A compressed self-index using a Ziv-Lempel dictionary.,2008,11,Inf. Retr.,4,db/journals/ir/ir11.html#RussoO08,https://doi.org/10.1007/s10791-008-9050-3 +Mark Sanderson,Retrieving with Good Sense.,2000,2,Inf. Retr.,1,db/journals/ir/ir2.html#Sanderson00,https://doi.org/10.1023/A:1009933700147 +Diego Reforgiato Recupero,A new unsupervised method for document clustering by using WordNet lexical and conceptual relations.,2007,10,Inf. Retr.,6,db/journals/ir/ir10.html#Recupero07,https://doi.org/10.1007/s10791-007-9035-7 +C. Olivia Frost,Browse and Search Patterns in a Digital Image Database.,2000,1,Inf. Retr.,4,db/journals/ir/ir1.html#FrostTNMTD00,https://doi.org/10.1023/A:1009979200555 +Ilker Kocabas,A nonparametric term weighting method for information retrieval based on measuring the divergence from independence.,2014,17,Inf. Retr.,2,db/journals/ir/ir17.html#KocabasDK14,https://doi.org/10.1007/s10791-013-9225-4 +Yuye Zhang,Click-based evidence for decaying weight distributions in search effectiveness metrics.,2010,13,Inf. Retr.,1,db/journals/ir/ir13.html#ZhangPM10,https://doi.org/10.1007/s10791-009-9099-7 +Thorsten Brants,Test Data Likelihood for PLSA Models.,2005,8,Inf. Retr.,2,db/journals/ir/ir8.html#Brants05,https://doi.org/10.1007/s10791-005-5658-8 +Yuval Elovici,Using the Information Structure Model to Compare Profile-Based Information Filtering Systems.,2003,6,Inf. Retr.,1,db/journals/ir/ir6.html#EloviciSK03,https://doi.org/10.1023/A:1022952531694 +Yuting Liu,A framework to compute page importance based on user behaviors.,2010,13,Inf. Retr.,1,db/journals/ir/ir13.html#LiuLGML10,https://doi.org/10.1007/s10791-009-9098-8 +Cécile Paris,Focused and aggregated search: a perspective from natural language generation.,2010,13,Inf. Retr.,5,db/journals/ir/ir13.html#ParisWT10,https://doi.org/10.1007/s10791-009-9121-0 +Sari Suomela,User evaluation of ontology as query construction tool.,2006,9,Inf. Retr.,4,db/journals/ir/ir9.html#SuomelaK06,https://doi.org/10.1007/s10791-006-6387-3 +Grace Hui Yang,Session search modeling by partially observable Markov decision process.,2018,21,Inf. Retr. Journal,1,db/journals/ir/ir21.html#YangDLZ18,https://doi.org/10.1007/s10791-017-9316-8 +Erik Boiy,A machine learning approach to sentiment analysis in multilingual Web texts.,2009,12,Inf. Retr.,5,db/journals/ir/ir12.html#BoiyM09,https://doi.org/10.1007/s10791-008-9070-z +Andrew MacFarlane 0001,Teaching mathematics for search using a tutorial style of delivery.,2009,12,Inf. Retr.,2,db/journals/ir/ir12.html#MacFarlane09,https://doi.org/10.1007/s10791-008-9078-4 +Fotis Lazarinis,Current research issues and trends in non-English Web searching.,2009,12,Inf. Retr.,3,db/journals/ir/ir12.html#LazarinisVTE09a,https://doi.org/10.1007/s10791-009-9093-0 +Padmini Srinivasan,A General Evaluation Framework for Topical Crawlers.,2005,8,Inf. Retr.,3,db/journals/ir/ir8.html#SrinivasanMP05,https://doi.org/10.1007/s10791-005-6993-5 +Yue Lu,An empirical study of gene synonym query expansion in biomedical information retrieval.,2009,12,Inf. Retr.,1,db/journals/ir/ir12.html#LuFZ09,https://doi.org/10.1007/s10791-008-9075-7 +In-Su Kang,Collection-based compound noun segmentation for Korean information retrieval.,2006,9,Inf. Retr.,5,db/journals/ir/ir9.html#KangNL06,https://doi.org/10.1007/s10791-006-9007-3 +Nima Asadi 0001,Document vector representations for feature extraction in multi-stage document ranking.,2013,16,Inf. Retr.,6,db/journals/ir/ir16.html#AsadiL13,https://doi.org/10.1007/s10791-012-9217-9 +Alberto Tonon,Pooling-based continuous evaluation of information retrieval systems.,2015,18,Inf. Retr. Journal,5,db/journals/ir/ir18.html#TononDC15,https://doi.org/10.1007/s10791-015-9266-y +Elizabeth D. Liddy,DR-LINK in TIPSTER III.,2000,3,Inf. Retr.,4,db/journals/ir/ir3.html#LiddyDM00,https://doi.org/10.1023/A:1009986331526 +Fabio Aiolli,Preferential text classification: learning algorithms and evaluation measures.,2009,12,Inf. Retr.,5,db/journals/ir/ir12.html#AiolliCSS09,https://doi.org/10.1007/s10791-008-9071-y +Suleyman Cetintas,Forecasting user visits for online display advertising.,2013,16,Inf. Retr.,3,db/journals/ir/ir16.html#CetintasCS13,https://doi.org/10.1007/s10791-012-9201-4 +Benjamin Piwowarski,A Bayesian Framework for XML Information Retrieval: Searching and Learning with the INEX Collection.,2005,8,Inf. Retr.,4,db/journals/ir/ir8.html#PiwowarskiG05,https://doi.org/10.1007/s10791-005-0751-6 +Raija Lehtokangas,Experiments with dictionary-based CLIR using graded relevance assessments: Improving effectiveness by pseudo-relevance feedback.,2006,9,Inf. Retr.,4,db/journals/ir/ir9.html#LehtokangasKJ06,https://doi.org/10.1007/s10791-006-6389-1 +Eija Airio,Word normalization and decompounding in mono- and bilingual IR.,2006,9,Inf. Retr.,3,db/journals/ir/ir9.html#Airio06,https://doi.org/10.1007/s10791-006-0884-2 +Stefan Büttcher,Hybrid index maintenance for contiguous inverted lists.,2008,11,Inf. Retr.,3,db/journals/ir/ir11.html#ButtcherC08,https://doi.org/10.1007/s10791-007-9042-8 +Norbert Fuhr,A probability ranking principle for interactive information retrieval.,2008,11,Inf. Retr.,3,db/journals/ir/ir11.html#Fuhr08,https://doi.org/10.1007/s10791-008-9045-0 +Fabio Crestani,Introduction to special issue on contextual information retrieval systems.,2007,10,Inf. Retr.,2,db/journals/ir/ir10.html#CrestaniR07,https://doi.org/10.1007/s10791-007-9022-z +Jacob Kogan,Data Driven Similarity Measures for k-Means Like Clustering Algorithms.,2005,8,Inf. Retr.,2,db/journals/ir/ir8.html#KoganTN05,https://doi.org/10.1007/s10791-005-5666-8 +Walter Liggett,System Performance and Natural Language Expression of Information Needs.,2005,8,Inf. Retr.,1,db/journals/ir/ir8.html#LiggettB05,https://doi.org/10.1023/B:INRT.0000048493.67375.93 +Mohamed Farah 0001,An outranking approach for information retrieval.,2008,11,Inf. Retr.,4,db/journals/ir/ir11.html#FarahV08,https://doi.org/10.1007/s10791-008-9046-z +Kjell Lemström,Filtering methods for content-based retrieval on indexed symbolic music databases.,2010,13,Inf. Retr.,1,db/journals/ir/ir13.html#LemstromMM10,https://doi.org/10.1007/s10791-009-9097-9 +Bader Aljaber,Document clustering of scientific texts using citation contexts.,2010,13,Inf. Retr.,2,db/journals/ir/ir13.html#AljaberSBP10,https://doi.org/10.1007/s10791-009-9108-x +Steve Cronen-Townsend,Precision prediction based on ranked list coherence.,2006,9,Inf. Retr.,6,db/journals/ir/ir9.html#Cronen-TownsendZC06,https://doi.org/10.1007/s10791-006-9006-4 +Abraham Bookstein,Generalized Hamming Distance.,2002,5,Inf. Retr.,4,db/journals/ir/ir5.html#BooksteinKR02,https://doi.org/10.1023/A:1020499411651 +Ihsan Gunes,Detecting shilling attacks in private environments.,2016,19,Inf. Retr. Journal,6,db/journals/ir/ir19.html#GunesP16,https://doi.org/10.1007/s10791-016-9284-4 +Anni Coden,Automatic search from streaming data.,2006,9,Inf. Retr.,1,db/journals/ir/ir9.html#CodenB06,https://doi.org/10.1007/s10791-005-5723-3 +Dustin Hillard,The sum of its parts: reducing sparsity in click estimation with query segments.,2011,14,Inf. Retr.,3,db/journals/ir/ir14.html#HillardMRLCI11,https://doi.org/10.1007/s10791-010-9152-6 +Emine Yilmaz,On the choice of effectiveness measures for learning to rank.,2010,13,Inf. Retr.,3,db/journals/ir/ir13.html#YilmazR10,https://doi.org/10.1007/s10791-009-9116-x +Zhixiang Chen,Some Formal Analysis of Rocchio's Similarity-Based Relevance Feedback Algorithm.,2002,5,Inf. Retr.,1,db/journals/ir/ir5.html#ChenZ02,https://doi.org/10.1023/A:1012730924277 +Tetsuya Sakai,Topic set size design.,2016,19,Inf. Retr. Journal,3,db/journals/ir/ir19.html#Sakai16,https://doi.org/10.1007/s10791-015-9273-z +Xitong Liu,Latent entity space: a novel retrieval approach for entity-bearing queries.,2015,18,Inf. Retr. Journal,6,db/journals/ir/ir18.html#LiuF15,https://doi.org/10.1007/s10791-015-9267-x +Maram Hasanain,EveTAR: building a large-scale multi-task test collection over Arabic tweets.,2018,21,Inf. Retr. Journal,4,db/journals/ir/ir21.html#HasanainSEKA18,https://doi.org/10.1007/s10791-017-9325-7 +Krister Lindén,Multilingual modeling of cross-lingual spelling variants.,2006,9,Inf. Retr.,3,db/journals/ir/ir9.html#Linden06,https://doi.org/10.1007/s10791-006-1541-5 +Tao Qin,LETOR: A benchmark collection for research on learning to rank for information retrieval.,2010,13,Inf. Retr.,4,db/journals/ir/ir13.html#QinLXL10,https://doi.org/10.1007/s10791-009-9123-y +Olivier Chapelle,Intent-based diversification of web search results: metrics and algorithms.,2011,14,Inf. Retr.,6,db/journals/ir/ir14.html#ChapelleJLVLW11,https://doi.org/10.1007/s10791-011-9167-7 +Thanh Tin Tang,Quality and relevance of domain-specific search: A case study in mental health.,2006,9,Inf. Retr.,2,db/journals/ir/ir9.html#TangCHGC06,https://doi.org/10.1007/s10791-006-7150-5 +W. John Wilbur,The ineffectiveness of within-document term frequency in text classification.,2009,12,Inf. Retr.,5,db/journals/ir/ir12.html#WilburK09,https://doi.org/10.1007/s10791-008-9069-5 +Thilo Böhm,Towards a probabilistic model for supporting collaborative information access.,2016,19,Inf. Retr. Journal,5,db/journals/ir/ir19.html#BohmKH16,https://doi.org/10.1007/s10791-016-9285-3 +Vassilis Plachouras,Dempster-Shafer Theory for a Query-Biased Combination of Evidence on the Web.,2005,8,Inf. Retr.,2,db/journals/ir/ir8.html#PlachourasO05,https://doi.org/10.1007/s10791-005-5659-7 +Ilaria Bordino,Beyond entities: promoting explorative search with bundles.,2016,19,Inf. Retr. Journal,5,db/journals/ir/ir19.html#BordinoLML16,https://doi.org/10.1007/s10791-016-9283-5 +Norbert Gövert,Evaluating the effectiveness of content-oriented XML retrieval methods.,2006,9,Inf. Retr.,6,db/journals/ir/ir9.html#GovertFLK06,https://doi.org/10.1007/s10791-006-9008-2 +Mark D. Dunlop,Improving Formal Models and Usability: Research in IR at Glasgow University - Introduction.,2000,2,Inf. Retr.,1,db/journals/ir/ir2.html#DunlopL00, +Jianguo Lu,Estimating deep web data source size by capture-recapture method.,2010,13,Inf. Retr.,1,db/journals/ir/ir13.html#LuL10,https://doi.org/10.1007/s10791-009-9107-y +Nathalie Hernandez,Modeling context through domain ontologies.,2007,10,Inf. Retr.,2,db/journals/ir/ir10.html#HernandezMCE07,https://doi.org/10.1007/s10791-006-9018-0 +Christie M. Kodama,There's a creepy guy on the other end at Google!: engaging middle school students in a drawing activity to elicit their mental models of Google.,2017,20,Inf. Retr. Journal,5,db/journals/ir/ir20.html#KodamaJST17,https://doi.org/10.1007/s10791-017-9306-x +Issam A. R. Moghrabi,A New Approach to Clustering Records in Information Retrieval Systems.,2000,3,Inf. Retr.,2,db/journals/ir/ir3.html#MoghrabiM00,https://doi.org/10.1023/A:1009901830009 +Tie-Yan Liu,Introduction to special issue on learning to rank for information retrieval.,2010,13,Inf. Retr.,3,db/journals/ir/ir13.html#LiuJLZ10,https://doi.org/10.1007/s10791-009-9120-1 +Avi Arampatzis,A query scrambler for search privacy on the internet.,2013,16,Inf. Retr.,6,db/journals/ir/ir16.html#ArampatzisED13,https://doi.org/10.1007/s10791-012-9212-1 +M. K. Hughey,Improved Query Matching Using kd-Trees: A Latent Semantic Indexing Enhancement.,2000,2,Inf. Retr.,4,db/journals/ir/ir2.html#HugheyB00,https://doi.org/10.1023/A:1009915010963 +Bing Bai,Learning to rank with (a lot of) word features.,2010,13,Inf. Retr.,3,db/journals/ir/ir13.html#BaiWGCSQCW10,https://doi.org/10.1007/s10791-009-9117-9 +Maryam Karimzadehgan,A learning approach to optimizing exploration-exploitation tradeoff in relevance feedback.,2013,16,Inf. Retr.,3,db/journals/ir/ir16.html#KarimzadehganZ13,https://doi.org/10.1007/s10791-012-9198-8 +Falk Scholer,Information retrieval evaluation using test collections.,2016,19,Inf. Retr. Journal,3,db/journals/ir/ir19.html#ScholerKC16,https://doi.org/10.1007/s10791-016-9281-7 +David Guo,Knowledge-Enhanced Latent Semantic Indexing.,2003,6,Inf. Retr.,2,db/journals/ir/ir6.html#GuoBTB03,https://doi.org/10.1023/A:1023984205118 +Jiafeng Guo,Modeling users' search sessions for high utility query recommendation.,2017,20,Inf. Retr. Journal,1,db/journals/ir/ir20.html#GuoZLC17,https://doi.org/10.1007/s10791-016-9287-1 +Fernando Martínez Santiago,A merging strategy proposal: The 2-step retrieval status value method.,2006,9,Inf. Retr.,1,db/journals/ir/ir9.html#SantiagoLM06,https://doi.org/10.1007/s10791-005-5722-4 +Pawan Goyal,A novel neighborhood based document smoothing model for information retrieval.,2013,16,Inf. Retr.,3,db/journals/ir/ir16.html#GoyalBM13,https://doi.org/10.1007/s10791-012-9202-3 +Yuanhua Lv,Negative query generation: bridging the gap between query likelihood retrieval models and relevance.,2015,18,Inf. Retr. Journal,4,db/journals/ir/ir18.html#LvZ15,https://doi.org/10.1007/s10791-015-9257-z +Koji Eguchi,Query structuring and expansion with two-stage term dependence for Japanese web retrieval.,2009,12,Inf. Retr.,3,db/journals/ir/ir12.html#EguchiC09,https://doi.org/10.1007/s10791-009-9092-1 +Chris Buckley,Bias and the limits of pooling for large collections.,2007,10,Inf. Retr.,6,db/journals/ir/ir10.html#BuckleyDSV07,https://doi.org/10.1007/s10791-007-9032-x +Mark M. Hall,Evaluating hierarchical organisation structures for exploring digital libraries.,2014,17,Inf. Retr.,4,db/journals/ir/ir17.html#HallFCSAS14,https://doi.org/10.1007/s10791-014-9242-y +Jee-Hyub Kim,A Corpus-Based Learning Method of Compound Noun Indexing Rules for Korean.,2001,4,Inf. Retr.,2,db/journals/ir/ir4.html#KimKLLL01,https://doi.org/10.1023/A:1011466928139 +Ion Madrazo Azpiazu,Online searching and learning: YUM and other search tools for children and teachers.,2017,20,Inf. Retr. Journal,5,db/journals/ir/ir20.html#AzpiazuDPF17,https://doi.org/10.1007/s10791-017-9310-1 +Paul B. Kantor,Foundations of Statistical Natural Language Processing.,2001,4,Inf. Retr.,1,db/journals/ir/ir4.html#Kantor01,https://doi.org/10.1023/A:1011424425034 +Jovan Pehcevski,Hybrid XML Retrieval: Combining Information Retrieval and a Native XML Database.,2005,8,Inf. Retr.,4,db/journals/ir/ir8.html#PehcevskiTV05,https://doi.org/10.1007/s10791-005-0748-1 +Andrew Trotman,Current research in focused retrieval and result aggregation.,2010,13,Inf. Retr.,5,db/journals/ir/ir13.html#TrotmanGKLM10,https://doi.org/10.1007/s10791-010-9137-5 +Avi Arampatzis,Modeling score distributions in information retrieval.,2011,14,Inf. Retr.,1,db/journals/ir/ir14.html#ArampatzisR11,https://doi.org/10.1007/s10791-010-9145-5 +Qinglei Wang,Mining subtopics from text fragments for a web query.,2013,16,Inf. Retr.,4,db/journals/ir/ir16.html#WangQSDZSZ13,https://doi.org/10.1007/s10791-013-9221-8 +Robert Munro,Crowdsourcing and the crisis-affected community - Lessons learned and looking forward from Mission 4636.,2013,16,Inf. Retr.,2,db/journals/ir/ir16.html#Munro13,https://doi.org/10.1007/s10791-012-9203-2 +Maristella Agosti,A Theoretical Study of a Generalized Version of Kleinberg's HITS Algorithm.,2005,8,Inf. Retr.,2,db/journals/ir/ir8.html#AgostiP05,https://doi.org/10.1007/s10791-005-5660-1 +Massih-Reza Amini,Learning-based summarisation of XML documents.,2007,10,Inf. Retr.,3,db/journals/ir/ir10.html#AminiTUL07,https://doi.org/10.1007/s10791-006-9017-1 +Henry O. Nyongesa,User modelling using evolutionary interactive reinforcement learning.,2006,9,Inf. Retr.,3,db/journals/ir/ir9.html#NyongesaM06,https://doi.org/10.1007/s10791-006-4536-3 +H. Bast,Output-sensitive autocompletion search.,2008,11,Inf. Retr.,4,db/journals/ir/ir11.html#BastMW08,https://doi.org/10.1007/s10791-008-9048-x +Yubin Kim,Efficient distributed selective search.,2017,20,Inf. Retr. Journal,3,db/journals/ir/ir20.html#KimCCM17,https://doi.org/10.1007/s10791-016-9290-6 +Elke Mittendorf,Using the Co-occurrence of Words for Retrieval Weighting.,2000,3,Inf. Retr.,3,db/journals/ir/ir3.html#MittendorfMS00,https://doi.org/10.1023/A:1026520926673 +Andrea Esuli,Boosting multi-label hierarchical text categorization.,2008,11,Inf. Retr.,4,db/journals/ir/ir11.html#EsuliFS08,https://doi.org/10.1007/s10791-008-9047-y +Mohammed Benkhalifa,Integrating External Knowledge to Supplement Training Data in Semi-Supervised Learning for Text Categorization.,2001,4,Inf. Retr.,2,db/journals/ir/ir4.html#BenkhalifaMB01,https://doi.org/10.1023/A:1011458711300 +Jacques Savoy,Searching strategies for the Bulgarian language.,2007,10,Inf. Retr.,6,db/journals/ir/ir10.html#Savoy07,https://doi.org/10.1007/s10791-007-9033-9 +Robin Aly,Probabilistic models in IR and their relationships.,2014,17,Inf. Retr.,2,db/journals/ir/ir17.html#AlyDR14,https://doi.org/10.1007/s10791-013-9226-3 +Georgios Sakkis,A Memory-Based Approach to Anti-Spam Filtering for Mailing Lists.,2003,6,Inf. Retr.,1,db/journals/ir/ir6.html#SakkisAPKSS03,https://doi.org/10.1023/A:1022948414856 +Rianne Kaptein,Focused retrieval and result aggregation with political data.,2010,13,Inf. Retr.,5,db/journals/ir/ir13.html#KapteinM10,https://doi.org/10.1007/s10791-010-9130-z +Hui Yang 0004,Two-stage statistical language models for text database selection.,2006,9,Inf. Retr.,1,db/journals/ir/ir9.html#YangZ06,https://doi.org/10.1007/s10791-005-5719-z +Jonathan L. Herlocker,An Empirical Analysis of Design Choices in Neighborhood-Based Collaborative Filtering Algorithms.,2002,5,Inf. Retr.,4,db/journals/ir/ir5.html#HerlockerKR02,https://doi.org/10.1023/A:1020443909834 +Mark Baillie,A multi-collection latent topic model for federated search.,2011,14,Inf. Retr.,4,db/journals/ir/ir14.html#BaillieCC11,https://doi.org/10.1007/s10791-010-9147-3 +Yue Lu,Investigating task performance of probabilistic topic models: an empirical study of PLSA and LDA.,2011,14,Inf. Retr.,2,db/journals/ir/ir14.html#LuMZ11,https://doi.org/10.1007/s10791-010-9141-9 +Haocheng Wu,A new approach to query segmentation for relevance ranking in web search.,2015,18,Inf. Retr. Journal,1,db/journals/ir/ir18.html#WuHLC15,https://doi.org/10.1007/s10791-014-9246-7 +Teemu Pääkkönen,Validating simulated interaction for retrieval evaluation.,2017,20,Inf. Retr. Journal,4,db/journals/ir/ir20.html#PaakkonenKKAMJ17,https://doi.org/10.1007/s10791-017-9301-2 +Ricardo A. Baeza-Yates,Special issue of The Journal of Information Retrieval on web mining for search.,2011,14,Inf. Retr.,3,db/journals/ir/ir14.html#Baeza-YatesP11,https://doi.org/10.1007/s10791-010-9158-0 +Kiran Sarvabhotla,Sentiment classification: a lexical similarity based approach for extracting subjectivity in documents.,2011,14,Inf. Retr.,3,db/journals/ir/ir14.html#SarvabhotlaPV11,https://doi.org/10.1007/s10791-010-9161-5 +Ivan Vulic,Cross-language information retrieval models based on latent topic models trained with document-aligned comparable corpora.,2013,16,Inf. Retr.,3,db/journals/ir/ir16.html#VulicSM13,https://doi.org/10.1007/s10791-012-9200-5 +Ben Carterette,An analysis of NP-completeness in novelty and diversity ranking.,2011,14,Inf. Retr.,1,db/journals/ir/ir14.html#Carterette11,https://doi.org/10.1007/s10791-010-9157-1 +Paavo Arvola,Expected reading effort in focused retrieval evaluation.,2010,13,Inf. Retr.,5,db/journals/ir/ir13.html#ArvolaKJ10,https://doi.org/10.1007/s10791-010-9133-9 +Roi Blanco,Mixed monolingual homepage finding in 34 languages: the role of language script and search domain.,2009,12,Inf. Retr.,3,db/journals/ir/ir12.html#BlancoL09,https://doi.org/10.1007/s10791-008-9082-8 +David E. Losada,An analysis on document length retrieval trends in language modeling smoothing.,2008,11,Inf. Retr.,2,db/journals/ir/ir11.html#LosadaA08,https://doi.org/10.1007/s10791-007-9040-x +Melanie Imhof,A study of untrained models for multimodal information retrieval.,2018,21,Inf. Retr. Journal,1,db/journals/ir/ir21.html#ImhofB18,https://doi.org/10.1007/s10791-017-9322-x +Bin Gao 0001,Page importance computation based on Markov processes.,2011,14,Inf. Retr.,5,db/journals/ir/ir14.html#GaoLLWML11,https://doi.org/10.1007/s10791-011-9164-x +Wouter Weerkamp,Blog feed search with a post index.,2011,14,Inf. Retr.,5,db/journals/ir/ir14.html#WeerkampBR11,https://doi.org/10.1007/s10791-011-9165-9 +Jeroen B. P. Vuurens,Distance matters! Cumulative proximity expansions for ranking documents.,2014,17,Inf. Retr.,4,db/journals/ir/ir17.html#VuurensV14,https://doi.org/10.1007/s10791-014-9243-x +Peter D. Turney,Learning Algorithms for Keyphrase Extraction.,2000,2,Inf. Retr.,4,db/journals/ir/ir2.html#Turney00,https://doi.org/10.1023/A:1009976227802 +Ruud W. van der Pol,Dipe-D: A Tool for Knowledge-Based Query Formulation in Information Retrieval.,2003,6,Inf. Retr.,1,db/journals/ir/ir6.html#Pol03,https://doi.org/10.1023/A:1022944313947 +D. Frank Hsu,Comparing Rank and Score Combination Methods for Data Fusion in Information Retrieval.,2005,8,Inf. Retr.,3,db/journals/ir/ir8.html#HsuT05,https://doi.org/10.1007/s10791-005-6994-4 +Vreixo Formoso,Using rating matrix compression techniques to speed up collaborative recommendations.,2013,16,Inf. Retr.,6,db/journals/ir/ir16.html#FormosoFCC13,https://doi.org/10.1007/s10791-012-9213-0 +Zhihong Lu,Partial Collection Replication for Information Retrieval.,2003,6,Inf. Retr.,2,db/journals/ir/ir6.html#LuM03,https://doi.org/10.1023/A:1023947204209 +Kavita Ganesan,Opinion-based entity ranking.,2012,15,Inf. Retr.,2,db/journals/ir/ir15.html#GanesanZ12,https://doi.org/10.1007/s10791-011-9174-8 +Bo Zhou,Incorporating web browsing activities into anchor texts for web search.,2011,14,Inf. Retr.,3,db/journals/ir/ir14.html#ZhouLZJM11,https://doi.org/10.1007/s10791-010-9151-7 +Kenneth Y. Goldberg,Eigentaste: A Constant Time Collaborative Filtering Algorithm.,2001,4,Inf. Retr.,2,db/journals/ir/ir4.html#GoldbergRGP01,https://doi.org/10.1023/A:1011419012209 +Stéphane Clinchant,Retrieval constraints and word frequency distributions a log-logistic model for IR.,2011,14,Inf. Retr.,1,db/journals/ir/ir14.html#ClinchantG11,https://doi.org/10.1007/s10791-010-9143-7 +Depin Chen,Knowledge transfer for cross domain learning to rank.,2010,13,Inf. Retr.,3,db/journals/ir/ir13.html#ChenXYXWC10,https://doi.org/10.1007/s10791-009-9111-2 +Abderrezak Brahmi,Arabic texts analysis for topic modeling evaluation.,2012,15,Inf. Retr.,1,db/journals/ir/ir15.html#BrahmiEB12,https://doi.org/10.1007/s10791-011-9171-y +Caio Moura Daoud,Waves: a fast multi-tier top-k query processing algorithm.,2017,20,Inf. Retr. Journal,3,db/journals/ir/ir20.html#DaoudMOSRC17,https://doi.org/10.1007/s10791-017-9298-6 +Tetsuya Sakai,Introduction to the special issue on search intents and diversification.,2013,16,Inf. Retr.,4,db/journals/ir/ir16.html#SakaiKMS13,https://doi.org/10.1007/s10791-013-9223-6 +Zhenyu Liu,Knowledge-based query expansion to support scenario-specific retrieval of medical free text.,2007,10,Inf. Retr.,2,db/journals/ir/ir10.html#LiuC07,https://doi.org/10.1007/s10791-006-9020-6 +Isak Taksa,David Taniar: Research and Trends in Data Mining Technologies and Applications.,2008,11,Inf. Retr.,2,db/journals/ir/ir11.html#Taksa08,https://doi.org/10.1007/s10791-008-9056-x +Javed Mostafa,Simulation Studies of Different Dimensions of Users' Interests and their Impact on User Modeling and Information Filtering.,2003,6,Inf. Retr.,2,db/journals/ir/ir6.html#MostafaMP03,https://doi.org/10.1023/A:1023932221048 +Gabriel Tolosa,Performance improvements for search systems using an integrated cache of lists + intersections.,2017,20,Inf. Retr. Journal,3,db/journals/ir/ir20.html#TolosaFBM17,https://doi.org/10.1007/s10791-017-9299-5 +Mohammad Amin Morid,Defending recommender systems by influence analysis.,2014,17,Inf. Retr.,2,db/journals/ir/ir17.html#MoridSH14,https://doi.org/10.1007/s10791-013-9224-5 +Tobias Blanke,Specificity aboutness in XML retrieval.,2011,14,Inf. Retr.,1,db/journals/ir/ir14.html#BlankeL11,https://doi.org/10.1007/s10791-010-9144-6 +Tuomo Korenius,Hierarchical clustering of a Finnish newspaper article collection with graded relevance assessments.,2006,9,Inf. Retr.,1,db/journals/ir/ir9.html#KoreniusLJJ06,https://doi.org/10.1007/s10791-005-5720-6 +Panagiotis Symeonidis,Nearest-biclusters collaborative filtering based on constant and coherent values.,2008,11,Inf. Retr.,1,db/journals/ir/ir11.html#SymeonidisNPM08,https://doi.org/10.1007/s10791-007-9038-4 +Yi Fang,Discriminative graphical models for faculty homepage discovery.,2010,13,Inf. Retr.,6,db/journals/ir/ir13.html#FangSM10,https://doi.org/10.1007/s10791-010-9127-7 +Gloria Bordogna,Personalised Indexing and Retrieval of Heterogeneous Structured Documents.,2005,8,Inf. Retr.,2,db/journals/ir/ir8.html#BordognaP05,https://doi.org/10.1007/s10791-005-5664-x +Yeha Lee,Identifying top news stories based on their popularity in the blogosphere.,2014,17,Inf. Retr.,4,db/journals/ir/ir17.html#LeeL14,https://doi.org/10.1007/s10791-014-9241-z +Matthew Lease,Crowdsourcing for information retrieval: introduction to the special issue.,2013,16,Inf. Retr.,2,db/journals/ir/ir16.html#LeaseY13,https://doi.org/10.1007/s10791-013-9222-7 +Peilin Yang,Opinions matter: a general approach to user profile modeling for contextual suggestion.,2015,18,Inf. Retr. Journal,6,db/journals/ir/ir18.html#YangW0C15,https://doi.org/10.1007/s10791-015-9278-7 +Scott Sisson,Principles of Data Mining.,2003,6,Inf. Retr.,2,db/journals/ir/ir6.html#Sisson03,https://doi.org/10.1023/A:1023988306026 +David E. Losada,Introduction to the special issue on the 27th European Conference on Information Retrieval Research.,2006,9,Inf. Retr.,4,db/journals/ir/ir9.html#LosadaF06,https://doi.org/10.1007/s10791-006-9397-2 +Xiaolu Lu 0002,The effect of pooling and evaluation depth on IR metrics.,2016,19,Inf. Retr. Journal,4,db/journals/ir/ir19.html#0002MC16,https://doi.org/10.1007/s10791-016-9282-6 +Aécio S. R. Santos,A genetic programming framework to schedule webpage updates.,2015,18,Inf. Retr. Journal,1,db/journals/ir/ir18.html#SantosCAMSZ15,https://doi.org/10.1007/s10791-014-9248-5 +Stephen E. Robertson,On Event Spaces and Probabilistic Models in Information Retrieval.,2005,8,Inf. Retr.,2,db/journals/ir/ir8.html#Robertson05,https://doi.org/10.1007/s10791-005-5665-9 +Nieves R. Brisaboa,Implicit indexing of natural language text by reorganizing bytecodes.,2012,15,Inf. Retr.,6,db/journals/ir/ir15.html#BrisaboaFLN12,https://doi.org/10.1007/s10791-012-9184-1 +Razieh Rahimi,Multilingual information retrieval in the language modeling framework.,2015,18,Inf. Retr. Journal,3,db/journals/ir/ir18.html#RahimiSK15,https://doi.org/10.1007/s10791-015-9255-1 +Alistair Moffat,A pipelined architecture for distributed text query evaluation.,2007,10,Inf. Retr.,3,db/journals/ir/ir10.html#MoffatWZB07,https://doi.org/10.1007/s10791-006-9014-4 +Matthew S. Simpson,Multimodal biomedical image indexing and retrieval using descriptive text and global feature mapping.,2014,17,Inf. Retr.,3,db/journals/ir/ir17.html#SimpsonDAT14,https://doi.org/10.1007/s10791-013-9235-2 +Elizabeth D. Liddy,Advances in Automatic Text Summarization.,2001,4,Inf. Retr.,1,db/journals/ir/ir4.html#Liddy01,https://doi.org/10.1023/A:1011476409104 +Alejandro Bellogín,Statistical biases in Information Retrieval metrics for recommender systems.,2017,20,Inf. Retr. Journal,6,db/journals/ir/ir20.html#BelloginCC17,https://doi.org/10.1007/s10791-017-9312-z +Robert W. P. Luk,On event space and rank equivalence between probabilistic retrieval models.,2008,11,Inf. Retr.,6,db/journals/ir/ir11.html#Luk08,https://doi.org/10.1007/s10791-008-9062-z +David Hawking,Efficiency in information retrieval: introduction to special issue.,2017,20,Inf. Retr. Journal,3,db/journals/ir/ir20.html#HawkingMT17,https://doi.org/10.1007/s10791-017-9309-7 +Jane Reid,A Task-Oriented Non-Interactive Evaluation Methodology for Information Retrieval Systems.,2000,2,Inf. Retr.,1,db/journals/ir/ir2.html#Reid00,https://doi.org/10.1023/A:1009906420620 +Marjo Markkula,End-User Searching Challenges Indexing Practices in the Digital Newspaper Photo Archive.,2000,1,Inf. Retr.,4,db/journals/ir/ir1.html#MarkkulaS00,https://doi.org/10.1023/A:1009995816485 +Mir Sadek Ali,Extended structural relevance framework: a framework for evaluating structured document retrieval.,2012,15,Inf. Retr.,6,db/journals/ir/ir15.html#AliCL12,https://doi.org/10.1007/s10791-012-9192-1 +Zeyang Liu,Enhancing click models with mouse movement information.,2017,20,Inf. Retr. Journal,1,db/journals/ir/ir20.html#LiuMWALN17,https://doi.org/10.1007/s10791-016-9292-4 +Andrei Z. Broder,Efficient PageRank approximation via graph aggregation.,2006,9,Inf. Retr.,2,db/journals/ir/ir9.html#BroderLMP06,https://doi.org/10.1007/s10791-006-7146-1 +Vanessa Murdock,Ellen Voorhees and Donna Harman (eds): TREC Experiment and Evaluation in Information Retrieval.,2008,11,Inf. Retr.,5,db/journals/ir/ir11.html#Murdock08,https://doi.org/10.1007/s10791-008-9064-x +Douglas R. Campbell,An approach for the capture of context-dependent document relationships extracted from Bayesian analysis of users' interactions with information.,2007,10,Inf. Retr.,2,db/journals/ir/ir10.html#CampbellCMS07,https://doi.org/10.1007/s10791-006-9016-2 +Justin Zobel,Guest Introduction.,2000,3,Inf. Retr.,1,db/journals/ir/ir3.html#Zobel00,https://doi.org/10.1023/A:1009973300990 +Jose Ignacio Serrano,Evolutionary learning of document categories.,2007,10,Inf. Retr.,1,db/journals/ir/ir10.html#SerranoC07,https://doi.org/10.1007/s10791-006-9012-6 +Bundit Manaskasemsak,Time-weighted web authoritative ranking.,2011,14,Inf. Retr.,2,db/journals/ir/ir14.html#ManaskasemsakRY11,https://doi.org/10.1007/s10791-010-9138-4 +Shuzi Niu,Which noise affects algorithm robustness for learning to rank.,2015,18,Inf. Retr. Journal,3,db/journals/ir/ir18.html#NiuLGWC15,https://doi.org/10.1007/s10791-015-9253-3 +Norbert Fuhr,The optimum clustering framework: implementing the cluster hypothesis.,2012,15,Inf. Retr.,2,db/journals/ir/ir15.html#FuhrLSG12,https://doi.org/10.1007/s10791-011-9173-9 +Travis Gagie,Document retrieval on repetitive string collections.,2017,20,Inf. Retr. Journal,3,db/journals/ir/ir20.html#GagieHKKNPS17,https://doi.org/10.1007/s10791-017-9297-7 +Ximing Li,Group topic model: organizing topics into groups.,2015,18,Inf. Retr. Journal,1,db/journals/ir/ir18.html#LiOLZT15,https://doi.org/10.1007/s10791-014-9244-9 +Andrew Trotman,Compressing Inverted Files.,2003,6,Inf. Retr.,1,db/journals/ir/ir6.html#Trotman03,https://doi.org/10.1023/A:1022949613039 +Chieh-Jen Wang,Mining subtopics from different aspects for diversifying search results.,2013,16,Inf. Retr.,4,db/journals/ir/ir16.html#WangLTC13,https://doi.org/10.1007/s10791-012-9215-y +Charles L. A. Clarke,Swapping documents and terms.,2009,12,Inf. Retr.,6,db/journals/ir/ir12.html#ClarkeCLBH09,https://doi.org/10.1007/s10791-009-9105-0 +Gareth J. F. Jones,An inquiry-based learning approach to teaching information retrieval.,2009,12,Inf. Retr.,2,db/journals/ir/ir12.html#Jones09,https://doi.org/10.1007/s10791-009-9088-x +Mengwen Liu,Product review summarization through question retrieval and diversification.,2017,20,Inf. Retr. Journal,6,db/journals/ir/ir20.html#LiuFCPH17,https://doi.org/10.1007/s10791-017-9311-0 +Thomas Deselaers,Features for image retrieval: an experimental comparison.,2008,11,Inf. Retr.,2,db/journals/ir/ir11.html#DeselaersKN08,https://doi.org/10.1007/s10791-007-9039-3 +Wenbin Cai,Active learning for ranking with sample density.,2015,18,Inf. Retr. Journal,2,db/journals/ir/ir18.html#CaiZZ15,https://doi.org/10.1007/s10791-015-9250-6 +Hugo Jair Escalante,Multimodal indexing based on semantic cohesion for image retrieval.,2012,15,Inf. Retr.,1,db/journals/ir/ir15.html#EscalanteMS12,https://doi.org/10.1007/s10791-011-9170-z +Craig Macdonald,The whens and hows of learning to rank for web search.,2013,16,Inf. Retr.,5,db/journals/ir/ir16.html#MacdonaldSO13,https://doi.org/10.1007/s10791-012-9209-9 +Jaap Kamps,The Importance of Length Normalization for XML Retrieval.,2005,8,Inf. Retr.,4,db/journals/ir/ir8.html#KampsRS05,https://doi.org/10.1007/s10791-005-0750-7 +Makoto P. Kato,When do people use query suggestion? A query suggestion log analysis.,2013,16,Inf. Retr.,6,db/journals/ir/ir16.html#KatoST13,https://doi.org/10.1007/s10791-012-9216-x +James C. French,Exploiting Manual Indexing to Improve Collection Selection and Retrieval Effectiveness.,2002,5,Inf. Retr.,4,db/journals/ir/ir5.html#FrenchPGP02,https://doi.org/10.1023/A:1020447427581 +Vo Ngoc Anh,Inverted Index Compression Using Word-Aligned Binary Codes.,2005,8,Inf. Retr.,1,db/journals/ir/ir8.html#AnhM05,https://doi.org/10.1023/B:INRT.0000048490.99518.5c +Véronique Moriceau,FIDJI: using syntax for validating answers in multiple documents.,2010,13,Inf. Retr.,5,db/journals/ir/ir13.html#MoriceauT10,https://doi.org/10.1007/s10791-010-9131-y +Norbert Fuhr,Retrieval quality vs. effectiveness of specificity-oriented search in XML collections.,2006,9,Inf. Retr.,1,db/journals/ir/ir9.html#FuhrG06,https://doi.org/10.1007/s10791-005-5721-5 +Ruihua Song,Enhancing web search with queries of equivalent intents.,2016,19,Inf. Retr. Journal,6,db/journals/ir/ir19.html#SongWNWY16,https://doi.org/10.1007/s10791-016-9288-0 +Vishwa Vinay,Can constrained relevance feedback and display strategies help users retrieve items on mobile devices?,2006,9,Inf. Retr.,4,db/journals/ir/ir9.html#VinayCMW06,https://doi.org/10.1007/s10791-006-6391-7 +Michelangelo Diligenti,A unified representation of web logs for mining applications.,2011,14,Inf. Retr.,3,db/journals/ir/ir14.html#DiligentiGM11,https://doi.org/10.1007/s10791-010-9160-6 +Federico Corradi,A Neuromorphic Event-Based Neural Recording System for Smart Brain-Machine-Interfaces.,2015,9,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas9.html#CorradiI15,https://doi.org/10.1109/TBCAS.2015.2479256 +Kyung Hyuk Kim,Controlling E. coli Gene Expression Noise.,2015,9,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas9.html#KimCBS15,https://doi.org/10.1109/TBCAS.2015.2461135 +Sara S. Ghoreishizadeh,An Integrated Control and Readout Circuit for Implantable Multi-Target Electrochemical Biosensing.,2014,8,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas8.html#GhoreishizadehBCCM14,https://doi.org/10.1109/TBCAS.2014.2315157 +Surachoke Thanapitak,A Bionics Chemical Synapse.,2013,7,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas7.html#ThanapitakT13,https://doi.org/10.1109/TBCAS.2012.2202494 +Xiwei Huang,A Surface Acoustic Wave Pumped Lensless Microfluidic Imaging System for Flowing Cell Detection and Counting.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#HuangFCGGSWDL17,https://doi.org/10.1109/TBCAS.2017.2732828 +Yi Chen,A 128-Channel Extreme Learning Machine-Based Neural Decoder for Brain Machine Interfaces.,2016,10,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas10.html#ChenYB16,https://doi.org/10.1109/TBCAS.2015.2483618 +Uei-Ming Jow,Design and Optimization of Printed Spiral Coils for Efficient Transcutaneous Inductive Power Transmission.,2007,1,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas1.html#JowG07,https://doi.org/10.1109/TBCAS.2007.913130 +Arezoo Hanifi,A Linear Parametric Approach for Analysis of Mouse Respiratory Impedance.,2012,6,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas6.html#HanifiGMSA12,https://doi.org/10.1109/TBCAS.2011.2174456 +S.-H. Liu,Special Issue on Selected Papers from BiOCAS 2008 Guest Editors' Introduction.,2009,3,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas3.html#LiuSB09,https://doi.org/10.1109/TBCAS.2009.2036981 +Jung Han Choi,A Remote Compact Sensor for the Real-Time Monitoring of Human Heartbeat and Respiration Rate.,2009,3,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas3.html#ChoiK09,https://doi.org/10.1109/TBCAS.2009.2019628 +Tor Sverre Lande,Editorial.,2007,1,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas1.html#LandeB07c,https://doi.org/10.1109/TBCAS.2008.916512 +Hosung Chun,Safety Ensuring Retinal Prosthesis With Precise Charge Balance and Low Power Consumption.,2014,8,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas8.html#ChunYL14,https://doi.org/10.1109/TBCAS.2013.2257171 +Adrien F. Vincent,Spin-Transfer Torque Magnetic Memory as a Stochastic Memristive Synapse for Neuromorphic Systems.,2015,9,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas9.html#VincentLLRBGZKG15,https://doi.org/10.1109/TBCAS.2015.2414423 +Esther Rodríguez-Villegas,A Low Power Linear Phase Programmable Long Delay Circuit.,2014,8,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas8.html#Rodriguez-VillegasLC14,https://doi.org/10.1109/TBCAS.2013.2273851 +Shubha Ramakrishnan,Floating Gate Synapses With Spike-Time-Dependent Plasticity.,2011,5,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas5.html#RamakrishnanHG11,https://doi.org/10.1109/TBCAS.2011.2109000 +Yong Lian,Guest Editorial - BSN2010 Special Issue.,2011,5,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas5.html#LianLW11,https://doi.org/10.1109/TBCAS.2011.2161109 +Pengpeng Chen,All-Digital Galvanically-Coupled BCC Receiver Resilient to Frequency Misalignment.,2017,11,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas11.html#ChenYLZ17,https://doi.org/10.1109/TBCAS.2016.2638919 +Anna M. R. Dixon,Compressed Sensing System Considerations for ECG and EMG Wireless Biosensors.,2012,6,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas6.html#DixonAGA12,https://doi.org/10.1109/TBCAS.2012.2193668 +Shin-Lian Teng,Programmable ExG Biopotential Front-End IC for Wearable Applications.,2014,8,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas8.html#TengRL14,https://doi.org/10.1109/TBCAS.2013.2285567 +Scott MacKay,Developing Trends in Aptamer-Based Biosensor Devices and Their Applications.,2014,8,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas8.html#MacKayWXC14,https://doi.org/10.1109/TBCAS.2014.2304718 +Jonathan Scott,Compact Nonlinear Model of an Implantable Electrode Array for Spinal Cord Stimulation (SCS).,2014,8,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas8.html#ScottS14,https://doi.org/10.1109/TBCAS.2013.2270179 +Roman Genov,Guest Editorial - Selected Papers from the 2014 IEEE International Solid-State Circuits Conference.,2014,8,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas8.html#GenovBM14,https://doi.org/10.1109/TBCAS.2014.2386411 +Christopher D. Salthouse,Development of a Time Domain Fluorimeter for Fluorescent Lifetime Multiplexing Analysis.,2008,2,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas2.html#SalthouseWM08,https://doi.org/10.1109/TBCAS.2008.2003195 +Gokce Gurun,An Analog Integrated Circuit Beamformer for High-Frequency Medical Ultrasound Imaging.,2012,6,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas6.html#GurunZSKHD12,https://doi.org/10.1109/TBCAS.2012.2219532 +Serena Porrazzo,A 155 andmicro*W 88-dB DR Discrete-Time Δ Σ Modulator for Digital Hearing Aids Exploiting a Summing SAR ADC Quantizer.,2013,7,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas7.html#PorrazzoMBCHYRC13,https://doi.org/10.1109/TBCAS.2013.2280694 +Dai Jiang,A Multichannel High-Frequency Power-Isolated Neural Stimulator With Crosstalk Reduction.,2018,12,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas12.html#JiangD18,https://doi.org/10.1109/TBCAS.2018.2832541 +Theodore Yu,Analog VLSI Biophysical Neurons and Synapses With Programmable Membrane Channel Kinetics.,2010,4,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas4.html#YuC10,https://doi.org/10.1109/TBCAS.2010.2048566 +Bathiya Senevirathna,Real-Time Measurements of Cell Proliferation Using a Lab-on-CMOS Capacitance Sensor Array.,2018,12,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas12.html#SenevirathnaLDB18,https://doi.org/10.1109/TBCAS.2018.2821060 +Jaemyung Lim,Towards a Reduced-Wire Interface for CMUT-Based Intravascular Ultrasound Imaging Systems.,2017,11,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas11.html#LimTDG17,https://doi.org/10.1109/TBCAS.2016.2592525 +Tom Torfs,Noncontact ECG Recording System With Real Time Capacitance Measurement for Motion Artifact Reduction.,2014,8,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas8.html#TorfsCKY14,https://doi.org/10.1109/TBCAS.2014.2359053 +Julius Georgiou,Guest Editorial - Special Issue on Selected Papers From BioCAS 2010.,2011,5,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas5.html#GeorgiouA11,https://doi.org/10.1109/TBCAS.2011.2171389 +Fayçal Mounaïm,Toward A Fully Integrated Neurostimulator With Inductive Power Recovery Front-End.,2012,6,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas6.html#MounaimS12,https://doi.org/10.1109/TBCAS.2012.2185796 +Aya Ibrahim,Efficient Sample Delay Calculation for 2-D and 3-D Ultrasound Imaging.,2017,11,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas11.html#IbrahimHBAATBM17,https://doi.org/10.1109/TBCAS.2017.2673547 +Ilias Pagkalos,Bio-Inspired Glucose Control in Diabetes Based on an Analogue Implementation of a $\beta $-Cell Model.,2014,8,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas8.html#PagkalosHTG14,https://doi.org/10.1109/TBCAS.2014.2301377 +Xiaoyang Zhang,A 300-mV 220-nW Event-Driven ADC With Real-Time QRS Detection for Wearable ECG Sensors.,2014,8,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas8.html#ZhangL14,https://doi.org/10.1109/TBCAS.2013.2296942 +Ilker Deligoz,A MEMS-Based Power-Scalable Hearing Aid Analog Front End.,2011,5,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas5.html#DeligozNCKBJC11,https://doi.org/10.1109/TBCAS.2010.2079329 +Haitao Li 0002,Ultracompact Microwatt CMOS Current Readout With Picoampere Noise and Kilohertz Bandwidth for Biosensor Arrays.,2018,12,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas12.html#LiPATPM18,https://doi.org/10.1109/TBCAS.2017.2752742 +Chih-Yuan Hsu,Systematic Design of a Quorum Sensing-Based Biosensor for Enhanced Detection of Metal Ion in Escherichia Coli.,2016,10,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas10.html#HsuCHC16,https://doi.org/10.1109/TBCAS.2015.2495151 +Rahul Sarpeshkar,Guest Editorial - Special Issue on Synthetic Biology.,2015,9,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas9.html#Sarpeshkar15,https://doi.org/10.1109/TBCAS.2015.2472315 +Sung-Min Sohn,Design of an Electrically Automated RF Transceiver Head Coil in MRI.,2015,9,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas9.html#SohnDGV15,https://doi.org/10.1109/TBCAS.2014.2360383 +Tan-Tan Zhang,15-nW Biopotential LPFs in 0.35-µm CMOS Using Subthreshold-Source-Follower Biquads With and Without Gain Compensation.,2013,7,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas7.html#ZhangMVMLPWM13,https://doi.org/10.1109/TBCAS.2013.2238233 +Jeroen Lecoutere,Wireless Fidelity Electromagnetic Field Exposure Monitoring With Wearable Body Sensor Networks.,2016,10,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas10.html#LecoutereTARJP16,https://doi.org/10.1109/TBCAS.2015.2487264 +Bardia Bozorgzadeh,Neurochemostat: A Neural Interface SoC With Integrated Chemometrics for Closed-Loop Regulation of Brain Dopamine.,2016,10,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas10.html#BozorgzadehSBGM16,https://doi.org/10.1109/TBCAS.2015.2453791 +Chia-Ling Wei,Wide-Range Filter-Based Sinusoidal Wave Synthesizer for Electrochemical Impedance Spectroscopy Measurements.,2014,8,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas8.html#WeiWL14,https://doi.org/10.1109/TBCAS.2013.2274100 +Mohamed Amine Miled,Dielectrophoresis-Based Integrated Lab-on-Chip for Nano and Micro-Particles Manipulation and Capacitive Detection.,2012,6,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas6.html#MiledS12,https://doi.org/10.1109/TBCAS.2012.2185844 +Shuenn-Yuh Lee,A Programmable Implantable Microstimulator SoC With Wireless Telemetry: Application in Closed-Loop Endocardial Stimulation for Cardiac Pacemaker.,2011,5,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas5.html#LeeSLCHYLLF11,https://doi.org/10.1109/TBCAS.2011.2177661 +Lawrence K. Au,Energy-Efficient Context Classification With Dynamic Sensor Control.,2012,6,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas6.html#AuBBK12,https://doi.org/10.1109/TBCAS.2011.2166073 +Simone Benatti,A Versatile Embedded Platform for EMG Acquisition and Gesture Recognition.,2015,9,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas9.html#BenattiCMFSFBHB15,https://doi.org/10.1109/TBCAS.2015.2476555 +Marianna Beiderman,A Low-Light CMOS Contact Imager With an Emission Filter for Biosensing Applications.,2008,2,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas2.html#BeidermanTFJY08,https://doi.org/10.1109/TBCAS.2008.2001866 +Ammar Abdo,Feasibility of Neural Stimulation With Floating-Light-Activated Microelectrical Stimulators.,2011,5,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas5.html#AbdoS11,https://doi.org/10.1109/TBCAS.2011.2114882 +Rasmus G. Haahr,An Electronic Patch for Wearable Health Monitoring by Reflectance Pulse Oximetry.,2012,6,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas6.html#HaahrDTBLBT12,https://doi.org/10.1109/TBCAS.2011.2164247 +Xiayi Liu,Image Reconstruction Under Contact Impedance Effect in Micro Electrical Impedance Tomography Sensors.,2018,12,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas12.html#LiuYZOCT18,https://doi.org/10.1109/TBCAS.2018.2816946 +Tia Gao,The Advanced Health and Disaster Aid Network: A Light-Weight Wireless Medical System for Triage.,2007,1,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas1.html#GaoMSCCLSHDJCWSW07,https://doi.org/10.1109/TBCAS.2007.910901 +Marco Vergani,Multichannel Bipotentiostat Integrated With a Microfluidic Platform for Electrochemical Real-Time Monitoring of Cell Cultures.,2012,6,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas6.html#VerganiCFLCHCZSDDRWES12,https://doi.org/10.1109/TBCAS.2012.2187783 +Wen H. Ko,Studies of MEMS Acoustic Sensors as Implantable Microphones for Totally Implantable Hearing-Aid Systems.,2009,3,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas3.html#KoZHGYYM09,https://doi.org/10.1109/TBCAS.2009.2032267 +Stephen O'Driscoll,Adaptive Resolution ADC Array for an Implantable Neural Sensor.,2011,5,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas5.html#ODriscollSM11,https://doi.org/10.1109/TBCAS.2011.2145418 +Xiaosen Liu,Ultrasonic Electric Scalpels Based on a Sliding-Mode Controller With an Auxiliary PLL Frequency Discriminator.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#LiuCS17,https://doi.org/10.1109/TBCAS.2017.2773618 +Majid Zamani,An Adaptive Neural Spike Processor With Embedded Active Learning for Improved Unsupervised Sorting Accuracy.,2018,12,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas12.html#ZamaniJD18,https://doi.org/10.1109/TBCAS.2018.2825421 +Maziar Tavakoli,An Ultra-Low-Power Pulse Oximeter Implemented With an Energy-Efficient Transimpedance Amplifier.,2010,4,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas4.html#TavakoliTS10,https://doi.org/10.1109/TBCAS.2009.2033035 +Haipeng Peng,Secure and Energy-Efficient Data Transmission System Based on Chaotic Compressive Sensing in Body-to-Body Networks.,2017,11,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas11.html#PengTKLYW17,https://doi.org/10.1109/TBCAS.2017.2665659 +Clara M. Ionescu,Modeling of the Lung Impedance Using a Fractional-Order Ladder Network With Constant Phase Elements.,2011,5,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas5.html#IonescuMK11,https://doi.org/10.1109/TBCAS.2010.2077636 +Nizar Lajnef,A Piezo-Powered Floating-Gate Sensor Array for Long-Term Fatigue Monitoring in Biomechanical Implants.,2008,2,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas2.html#LajnefEC08,https://doi.org/10.1109/TBCAS.2008.2001473 +Xiao Liu 0001,An Integrated Implantable Stimulator That is Fail-Safe Without Off-Chip Blocking-Capacitors.,2008,2,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas2.html#LiuDD08,https://doi.org/10.1109/TBCAS.2008.2003199 +Samprajani Rout,High-Pass and#931*Γ6* Converter Design Using a State-Space Approach and Its Application to Cardiac Signal Acquisition.,2018,12,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas12.html#RoutS18,https://doi.org/10.1109/TBCAS.2018.2817926 +Lucy E. Dunne,Wearable Monitoring of Seated Spinal Posture.,2008,2,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas2.html#DunneWHSC08,https://doi.org/10.1109/TBCAS.2008.927246 +Arun Rao,An Analog Front End ASIC for Cardiac Electrical Impedance Tomography.,2018,12,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas12.html#RaoTSMAHO18,https://doi.org/10.1109/TBCAS.2018.2834412 +Sylvie Renaud,Guest Editorial - Special Issue on Selected Papers From IEEE BioCAS 2013.,2014,8,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas8.html#RenaudSY14,https://doi.org/10.1109/TBCAS.2014.2363693 +Gaurav Bawa,Active High Power Conversion Efficiency Rectifier With Built-In Dual-Mode Back Telemetry in Standard CMOS Technology.,2008,2,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas2.html#BawaG08,https://doi.org/10.1109/TBCAS.2008.924444 +Deren Y. Barsakcioglu,An Analogue Front-End Model for Developing Neural Spike Sorting Systems.,2014,8,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas8.html#BarsakciogluLBNEJQC14,https://doi.org/10.1109/TBCAS.2014.2313087 +Sakkarin Sinchai,A Photoplethysmographic Signal Isolated From an Additive Motion Artifact by Frequency Translation.,2018,12,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas12.html#SinchaiKWK18,https://doi.org/10.1109/TBCAS.2018.2829708 +Miao Meng,Design and Optimization of Ultrasonic Wireless Power Transmission Links for Millimeter-Sized Biomedical Implants.,2017,11,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas11.html#MengK17,https://doi.org/10.1109/TBCAS.2016.2583783 +Elliot Greenwald,A CMOS Current Steering Neurostimulation Array With Integrated DAC Calibration and Charge Balancing.,2017,11,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas11.html#GreenwaldMWBECT17,https://doi.org/10.1109/TBCAS.2016.2609854 +Numa Couniot,A 16*16 CMOS Capacitive Biosensor Array Towards Detection of Single Bacterial Cell.,2016,10,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas10.html#CouniotFF16,https://doi.org/10.1109/TBCAS.2015.2416372 +Robert Karam,Tunable and Lightweight On-Chip Event Detection for Implantable Bladder Pressure Monitoring Devices.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#KaramMBDB17,https://doi.org/10.1109/TBCAS.2017.2748981 +Chengliang Qian,A Low-Power Configurable Neural Recording System for Epileptic Seizure Detection.,2013,7,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas7.html#QianSPS13,https://doi.org/10.1109/TBCAS.2012.2228857 +Calliope-Louisa Sotiropoulou,Real-Time Machine Vision FPGA Implementation for Microfluidic Monitoring on Lab-on-Chips.,2014,8,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas8.html#SotiropoulouVGDVN14,https://doi.org/10.1109/TBCAS.2013.2260338 +Masato Yoshioka,A 10-b 50-MS/s 820- and#956* W SAR ADC With On-Chip Digital Calibration.,2010,4,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas4.html#YoshiokaITT10,https://doi.org/10.1109/TBCAS.2010.2081362 +Jian Xu 0002,A Frequency Shaping Neural Recorder With 3 pF Input Capacitance and 11 Plus 4.5 Bits Dynamic Range.,2014,8,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas8.html#XuWLY14,https://doi.org/10.1109/TBCAS.2013.2293821 +Jonathan Schachtele,On the Design of Passive Resonant Circuits to Measure Local Pulse Wave Velocity in a Stent.,2016,10,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas10.html#Schachtele16,https://doi.org/10.1109/TBCAS.2015.2496420 +Boon Chong Cheah,An Integrated Circuit for Chip-Based Analysis of Enzyme Kinetics and Metabolite Quantification.,2016,10,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas10.html#CheahMMSCANGBC16,https://doi.org/10.1109/TBCAS.2015.2487603 +Baykal Sarioglu,An Optically Powered CMOS Tracking System for 3 T Magnetic Resonance Environment.,2015,9,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas9.html#SariogluTCCDOY15,https://doi.org/10.1109/TBCAS.2014.2311474 +Zhaohong Chen,Development of a Wireless and Near Real-Time 3D Ultrasound Strain Imaging System.,2016,10,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas10.html#ChenCH16,https://doi.org/10.1109/TBCAS.2015.2420117 +Seongwook Park,An Energy-Efficient and Scalable Deep Learning/Inference Processor With Tetra-Parallel MIMD Architecture for Big Data Applications.,2015,9,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas9.html#ParkPBSLCY15,https://doi.org/10.1109/TBCAS.2015.2504563 +Stefano Marchesi,A Bispectral Approach to Analyze Nonlinear Cochlear Active Mechanisms in Transient Evoked Otoacoustic Emissions.,2013,7,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas7.html#MarchesiTP13,https://doi.org/10.1109/TBCAS.2012.2223212 +Tiago Costa,A CMOS Front-End With Integrated Magnetoresistive Sensors for Biomolecular Recognition Detection Applications.,2017,11,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas11.html#CostaCGFP17,https://doi.org/10.1109/TBCAS.2017.2743685 +Chang-Ting Chen,Wireless Monitoring System for Oral-Feeding Evaluation of Preterm Infants.,2015,9,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas9.html#ChenWWKFL15,https://doi.org/10.1109/TBCAS.2015.2438031 +Henrique Miranda,HermesD: A High-Rate Long-Range Wireless Transmission System for Simultaneous Multichannel Neural Recording Applications.,2010,4,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas4.html#MirandaGCSM10,https://doi.org/10.1109/TBCAS.2010.2044573 +Junwen Luo,Real-Time Simulation of Passage-of-Time Encoding in Cerebellum Using a Scalable FPGA-Based System.,2016,10,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas10.html#LuoCMYTD16,https://doi.org/10.1109/TBCAS.2015.2460232 +Daniel Pivonka,A mm-Sized Wirelessly Powered and Remotely Controlled Locomotive Implant.,2012,6,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas6.html#PivonkaYPM12,https://doi.org/10.1109/TBCAS.2012.2232665 +Yu-Jie Huang,A CMOS Cantilever-Based Label-Free DNA SoC With Improved Sensitivity for Hepatitis B Virus Detection.,2013,7,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas7.html#HuangHLLCHWHKTLJWL13,https://doi.org/10.1109/TBCAS.2013.2247761 +Omer Can Akgun,High-Level Energy Estimation in the Sub-V$_{{\rm T}}$ Domain: Simulation and Measurement of a Cardiac Event Detector.,2012,6,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas6.html#AkgunRLO12,https://doi.org/10.1109/TBCAS.2011.2157505 +Dae-Geun Jang,A Knowledge-Based Approach to Arterial Stiffness Estimation Using the Digital Volume Pulse.,2012,6,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas6.html#JangFPGH12,https://doi.org/10.1109/TBCAS.2011.2177835 +Drew A. Hall,Guest Editorial ISCAS 2017 Special Issue.,2018,12,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas12.html#HallK18,https://doi.org/10.1109/TBCAS.2018.2839458 +Pei Wang,Identification and Evolution of Structurally Dominant Nodes in Protein-Protein Interaction Networks.,2014,8,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas8.html#WangYL14,https://doi.org/10.1109/TBCAS.2014.2303160 +Young Kyu Choi,Acceleration of EM-Based 3D CT Reconstruction Using FPGA.,2016,10,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas10.html#ChoiC16,https://doi.org/10.1109/TBCAS.2015.2471813 +Benoit Gosselin,Linear-Phase Delay Filters for Ultra-Low-Power Signal Processing in Neural Recording Implants.,2010,4,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas4.html#GosselinSK10,https://doi.org/10.1109/TBCAS.2010.2045756 +David Stevens,BioThreads: A Novel VLIW-Based Chip Multiprocessor for Accelerating Biomedical Image Processing Applications.,2012,6,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas6.html#StevensCAZEH12,https://doi.org/10.1109/TBCAS.2011.2166962 +Louis Atallah,Sensor Positioning for Activity Recognition Using Wearable Accelerometers.,2011,5,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas5.html#AtallahLKY11,https://doi.org/10.1109/TBCAS.2011.2160540 +Xiahan Zhou,Giant Magnetoresistive Biosensor Array for Detecting Magnetorelaxation.,2017,11,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas11.html#ZhouHH17,https://doi.org/10.1109/TBCAS.2017.2682080 +Alireza Chamanzar,Efficient Hardware Implementation of Real-Time Low-Power Movement Intention Detector System Using FFT and Adaptive Wavelet Transform.,2017,11,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas11.html#ChamanzarSMM17,https://doi.org/10.1109/TBCAS.2017.2669911 +Stephen Brink,A Learning-Enabled Neuron Array IC Based Upon Transistor Channel Models of Biological Phenomena.,2013,7,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas7.html#BrinkNHRWBD13,https://doi.org/10.1109/TBCAS.2012.2197858 +Long Yan,A 680 nA ECG Acquisition IC for Leadless Pacemaker Applications.,2014,8,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas8.html#YanHPOHTHY14,https://doi.org/10.1109/TBCAS.2014.2377073 +Ebrahim Ghafar-Zadeh,Bacteria Growth Monitoring Through a Differential CMOS Capacitive Sensor.,2010,4,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas4.html#Ghafar-ZadehSCH10,https://doi.org/10.1109/TBCAS.2010.2048430 +Chao Yang,Amperometric Electrochemical Microsystem for a Miniaturized Protein Biosensor Array.,2009,3,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas3.html#YangHHWM09,https://doi.org/10.1109/TBCAS.2009.2015650 +Omid Farhanieh,Integrated HIFU Drive System on a Chip for CMUT-Based Catheter Ablation System.,2017,11,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas11.html#FarhaniehSREB17,https://doi.org/10.1109/TBCAS.2017.2649942 +Jiayi Jin,A Home Sleep Apnea Screening Device With Time-Domain Signal Processing and Autonomous Scoring Capability.,2015,9,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas9.html#JinS15,https://doi.org/10.1109/TBCAS.2014.2314301 +Edgar A. Brown,Stimulus-Artifact Elimination in a Multi-Electrode System.,2008,2,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas2.html#BrownRBNWD08,https://doi.org/10.1109/TBCAS.2008.918285 +Soumyajit Mandal,Power-Efficient Impedance-Modulation Wireless Data Links for Biomedical Implants.,2008,2,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas2.html#MandalS08,https://doi.org/10.1109/TBCAS.2008.2005295 +Manuel Delgado-Restituto,System-Level Design of a 64-Channel Low Power Neural Spike Recording Sensor.,2017,11,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas11.html#Delgado-Restituto17,https://doi.org/10.1109/TBCAS.2016.2618319 +Adam Khalifa,The Microbead: A Highly Miniaturized Wirelessly Powered Implantable Neural Stimulating System.,2018,12,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas12.html#KhalifaKWGMSTE18,https://doi.org/10.1109/TBCAS.2018.2802443 +Timothy G. Constandinou,A Micropower Tilt-Processing Circuit.,2009,3,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas3.html#ConstandinouG09,https://doi.org/10.1109/TBCAS.2009.2027421 +Awais M. Kamboh,Area-Power Efficient VLSI Implementation of Multichannel DWT for Data Compression in Implantable Neuroprosthetics.,2007,1,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas1.html#KambohROM07,https://doi.org/10.1109/TBCAS.2007.907557 +Jack Bowyer,Mechanistic Modeling of a Rewritable Recombinase Addressable Data Module.,2016,10,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas10.html#BowyerZSWRB16,https://doi.org/10.1109/TBCAS.2016.2526668 +André L. Mansano,An Autonomous Wireless Sensor Node With Asynchronous ECG Monitoring in 0.18 andmicro*m CMOS.,2016,10,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas10.html#MansanoLBS16,https://doi.org/10.1109/TBCAS.2015.2495272 +Min-Woong Seo,A 7 ke-SD-FWC 1.2 e-RMS Temporal Random Noise 128*256 Time-Resolved CMOS Image Sensor With Two In-Pixel SDs for Biomedical Applications.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#SeoK17,https://doi.org/10.1109/TBCAS.2017.2738322 +José Guerreiro,Active Hearing Mechanisms Inspire Adaptive Amplification in an Acoustic Sensor System.,2018,12,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas12.html#GuerreiroRJW18,https://doi.org/10.1109/TBCAS.2018.2827461 +Qi Zhang,A 2.4-GHz Energy-Efficient Transmitter for Wireless Medical Applications.,2011,5,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas5.html#ZhangFGYW11,https://doi.org/10.1109/TBCAS.2010.2064772 +Jie Yuan,Guest Editorial - ISCAS 2011 Special Issue.,2012,6,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas6.html#YuanS12,https://doi.org/10.1109/TBCAS.2012.2193067 +Mehdi Kiani,A 13.56-Mbps Pulse Delay Modulation Based Transceiver for Simultaneous Near-Field Data and Power Transmission.,2015,9,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas9.html#KianiG15,https://doi.org/10.1109/TBCAS.2014.2304956 +Nick Van Helleputte,A 160 $\mu{\rm A}$ Biopotential Acquisition IC With Fully Integrated IA and Motion Artifact Suppression.,2012,6,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas6.html#HelleputteKKKHY12,https://doi.org/10.1109/TBCAS.2012.2224113 +Xing Li,Reconfigurable Resonant Regulating Rectifier With Primary Equalization for Extended Coupling- and Loading-Range in Bio-Implant Wireless Power Transfer.,2015,9,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas9.html#LiMTK15,https://doi.org/10.1109/TBCAS.2015.2503418 +Marco Guermandi,Active Electrode IC for EEG and Electrical Impedance Tomography With Continuous Monitoring of Contact Impedance.,2015,9,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas9.html#GuermandiCSG15,https://doi.org/10.1109/TBCAS.2014.2311836 +Wenfeng Zhao,On-Chip Neural Data Compression Based On Compressed Sensing With Sparse Sensing Matrices.,2018,12,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas12.html#ZhaoSWY18,https://doi.org/10.1109/TBCAS.2017.2779503 +Mohamad Sawan,Wireless Recording Systems: From Noninvasive EEG-NIRS to Invasive EEG Devices.,2013,7,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas7.html#SawanSLKGVLLN13,https://doi.org/10.1109/TBCAS.2013.2255595 +Yuning Yang,A Hardware-Efficient Scalable Spike Sorting Neural Signal Processor Module for Implantable High-Channel-Count Brain Machine Interfaces.,2017,11,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas11.html#YangBM17,https://doi.org/10.1109/TBCAS.2017.2679032 +Carlos I. Dorta-Quinones,A Bidirectional-Current CMOS Potentiostat for Fast-Scan Cyclic Voltammetry Detector Arrays.,2018,12,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas12.html#Dorta-QuinonesH18,https://doi.org/10.1109/TBCAS.2018.2828828 +Alex K. Y. Wong,A Low-Power CMOS Front-End for Photoplethysmographic Signal Acquisition With Robust DC Photocurrent Rejection.,2008,2,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas2.html#WongPZL08,https://doi.org/10.1109/TBCAS.2008.2003429 +K. Wayne Current,A High-Voltage SOI CMOS Exciter Chip for a Programmable Fluidic Processor System.,2007,1,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas1.html#CurrentYMGSVA07,https://doi.org/10.1109/TBCAS.2007.908110 +Emma MacPherson,Selected Papers From the 4th IEEE-EMBS International Summer School and Symposium on Medical Devices and Biosensors.,2008,2,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas2.html#MacPhersonB08,https://doi.org/10.1109/TBCAS.2008.2009246 +Marco Guermandi,A Driving Right Leg Circuit (DgRL) for Improved Common Mode Rejection in Bio-Potential Acquisition Systems.,2016,10,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas10.html#GuermandiSG16,https://doi.org/10.1109/TBCAS.2015.2446753 +Sung-Yun Park,A PWM Buck Converter With Load-Adaptive Power Transistor Scaling Scheme Using Analog-Digital Hybrid Control for High Energy Efficiency in Implantable Biomedical Systems.,2015,9,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas9.html#ParkCLY15,https://doi.org/10.1109/TBCAS.2015.2501304 +Hossein Kassiri,Closed-Loop Neurostimulators: A Survey and A Seizure-Predicting Design Example for Intractable Epilepsy Treatment.,2017,11,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas11.html#KassiriTSSAVG17,https://doi.org/10.1109/TBCAS.2017.2694638 +Tong Wu,A Streaming PCA VLSI Chip for Neural Data Compression.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#WuZGLY17,https://doi.org/10.1109/TBCAS.2017.2717281 +Qinwei Li,Direct Extraction of Tumor Response Based on Ensemble Empirical Mode Decomposition for Image Reconstruction of Early Breast Cancer Detection by UWB.,2015,9,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas9.html#LiXWSKLLK15,https://doi.org/10.1109/TBCAS.2015.2481940 +Hirotsugu Okuno,Real-Time Emulator for Reproducing Graded Potentials in Vertebrate Retina.,2015,9,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas9.html#OkunoHSY15,https://doi.org/10.1109/TBCAS.2014.2327103 +E. Basham,Circuit and Coil Design for In-Vitro Magnetic Neural Stimulation Systems.,2009,3,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas3.html#BashamYL09,https://doi.org/10.1109/TBCAS.2009.2024927 +Sung Sik Woo,A Digitally Programmable Cytomorphic Chip for Simulation of Arbitrary Biochemical Reaction Networks.,2018,12,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas12.html#WooKS18,https://doi.org/10.1109/TBCAS.2017.2781253 +Reza Ramezani,On-Probe Neural Interface ASIC for Combined Electrical Recording and Optogenetic Stimulation.,2018,12,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas12.html#RamezaniLDSHZFH18,https://doi.org/10.1109/TBCAS.2018.2818818 +Po-Tsang Huang,2.5D Heterogeneously Integrated Microsystem for High-Density Neural Sensing Applications.,2014,8,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas8.html#HuangWHCHWLCSCCCHT14,https://doi.org/10.1109/TBCAS.2014.2385061 +Yosuke Kurihara,Development of Unconstrained Heartbeat and Respiration Measurement System With Pneumatic Flow.,2012,6,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas6.html#KuriharaW12,https://doi.org/10.1109/TBCAS.2012.2189007 +Marjan Mirzaei,A Fully-Asynchronous Low-Power Implantable Seizure Detector for Self-Triggering Treatment.,2013,7,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas7.html#MirzaeiSNS13,https://doi.org/10.1109/TBCAS.2013.2283502 +Xiaoyou Lin,Battery-Free Smart Sock for Abnormal Relative Plantar Pressure Monitoring.,2017,11,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas11.html#LinS17,https://doi.org/10.1109/TBCAS.2016.2615603 +Guilin Sun,Ultracompact Implantable Design With Integrated Wireless Power Transfer and RF Transmission Capabilities.,2018,12,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas12.html#SunMLZ18,https://doi.org/10.1109/TBCAS.2017.2787649 +Camilla Baj-Rossi,Full Fabrication and Packaging of an Implantable Multi-Panel Device for Monitoring of Metabolites in Small Animals.,2014,8,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas8.html#Baj-RossiKGCJDGPMC14,https://doi.org/10.1109/TBCAS.2014.2359094 +Thomas Falck,Introduction to Special Section From the BSN2007 Workshop.,2007,1,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas1.html#FalckL07,https://doi.org/10.1109/TBCAS.2008.916513 +Yu Jiang 0004,A High-Sensitivity Potentiometric 65-nm CMOS ISFET Sensor for Rapid E. coli Screening.,2018,12,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas12.html#JiangLDHFZY18,https://doi.org/10.1109/TBCAS.2018.2793861 +Mengli Wang,Volumetric Flow Measurement Using an Implantable CMUT Array.,2011,5,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas5.html#WangC11,https://doi.org/10.1109/TBCAS.2010.2095848 +Liang Zhou 0004,Linearization of CMOS Hot-Electron Injectors for Self-Powered Monitoring of Biomechanical Strain Variations.,2017,11,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas11.html#ZhouC17,https://doi.org/10.1109/TBCAS.2016.2605444 +Peter J. Langlois,High-Power Integrated Stimulator Output Stages With Floating Discharge Over a Wide Voltage Range for Nerve Stimulation.,2010,4,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas4.html#LangloisDPD10,https://doi.org/10.1109/TBCAS.2009.2034138 +Hirotsugu Okuno,Image Sensor System With Bio-Inspired Efficient Coding and Adaptation.,2012,6,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas6.html#OkunoY12,https://doi.org/10.1109/TBCAS.2012.2185048 +Kevin Mazurek,A Mixed-Signal VLSI System for Producing Temporally Adapting Intraspinal Microstimulation Patterns for Locomotion.,2016,10,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas10.html#MazurekHEME16,https://doi.org/10.1109/TBCAS.2015.2501419 +Tsung-Heng Tsai,A CMOS Micromachined Capacitive Tactile Sensor With Integrated Readout Circuits and Compensation of Process Variations.,2014,8,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas8.html#TsaiTW14,https://doi.org/10.1109/TBCAS.2014.2358563 +Zhiyuan Chen 0002,A Single-Chip Solar Energy Harvesting IC Using Integrated Photodiodes for Biomedical Implant Applications.,2017,11,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas11.html#ChenLMM17,https://doi.org/10.1109/TBCAS.2016.2553152 +Sudip Nag,Flexible Charge Balanced Stimulator With 5.6 fC Accuracy for 140 nC Injections.,2013,7,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas7.html#NagJTS13,https://doi.org/10.1109/TBCAS.2012.2205574 +Masoud Roham,A Wireless IC for Wide-Range Neurochemical Monitoring Using Amperometry and Fast-Scan Cyclic Voltammetry.,2008,2,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas2.html#RohamDRCPGM08,https://doi.org/10.1109/TBCAS.2008.918282 +Anas A. Hamoui,Guest Editorial - Selected Papers From the 2010 IEEE International Solid-State Circuits Conference (ISSCC).,2010,4,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas4.html#HamouiY10,https://doi.org/10.1109/TBCAS.2010.2092172 +Chacko John Deepu,A Hybrid Data Compression Scheme for Power Reduction in Wireless Sensors for IoT.,2017,11,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas11.html#DeepuHL17,https://doi.org/10.1109/TBCAS.2016.2591923 +Seyed Abdollah Mirbozorgi,A Smart Cage With Uniform Wireless Power Distribution in 3D for Enabling Long-Term Experiments With Freely Moving Animals.,2016,10,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas10.html#MirbozorgiBSG16,https://doi.org/10.1109/TBCAS.2015.2414276 +P. M. Nabeel,A Magnetic Plethysmograph Probe for Local Pulse Wave Velocity Measurement.,2017,11,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas11.html#NabeelJS17,https://doi.org/10.1109/TBCAS.2017.2733622 +Yuanqi Hu,A Robust ISFET pH-Measuring Front-End for Chemical Reaction Monitoring.,2014,8,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas8.html#HuG14,https://doi.org/10.1109/TBCAS.2014.2313512 +Amine Bermak,Guest Editorial - Special Issue on Selected Papers From BioCAS2009.,2010,4,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas4.html#BermakY10,https://doi.org/10.1109/TBCAS.2010.2092171 +Mehran Bakhshiani,A 9 MHz-2.4 GHz Fully Integrated Transceiver IC for a Microfluidic-CMOS Platform Dedicated to Miniaturized Dielectric Spectroscopy.,2015,9,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas9.html#BakhshianiSM15,https://doi.org/10.1109/TBCAS.2015.2501816 +Adam L. Anderson,Virtually Transparent Epidermal Imagery (VTEI): On New Approaches to In Vivo Wireless High-Definition Video and Image Processing.,2013,7,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas7.html#AndersonLS13,https://doi.org/10.1109/TBCAS.2013.2253607 +Stanislav Culaclii,Online Artifact Cancelation in Same-Electrode Neural Stimulation and Recording Using a Combined Hardware and Software Architecture.,2018,12,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas12.html#CulacliiKLLL18,https://doi.org/10.1109/TBCAS.2018.2816464 +Stephen Nease,Modeling and Implementation of Voltage-Mode CMOS Dendrites on a Reconfigurable Analog Platform.,2012,6,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas6.html#NeaseGHKB12,https://doi.org/10.1109/TBCAS.2011.2163714 +Yanzhen Wu,Efficient Power-Transfer Capability Analysis of the TET System Using the Equivalent Small Parameter Method.,2011,5,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas5.html#WuHBMD11,https://doi.org/10.1109/TBCAS.2010.2089685 +Ammar Y. K. Timimi,A Novel AMARS Technique for Baseline Wander Removal Applied to Photoplethysmogram.,2017,11,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas11.html#TimimiAC17,https://doi.org/10.1109/TBCAS.2017.2649940 +Panayiota Demosthenous,Infrared Fluorescence-Based Cancer Screening Capsule for the Small Intestine.,2016,10,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas10.html#DemosthenousPG16,https://doi.org/10.1109/TBCAS.2015.2449277 +Gert Cauwenberghs,Editorial.,2015,9,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas9.html#CauwenberghsE15,https://doi.org/10.1109/TBCAS.2016.2522202 +Chung-Lun Hsu,A Hybrid Semi-Digital Transimpedance Amplifier With Noise Cancellation Technique for Nanopore-Based DNA Sequencing.,2015,9,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas9.html#HsuJVH15,https://doi.org/10.1109/TBCAS.2015.2496232 +Ruslana Shulyzki,320-Channel Active Probe for High-Resolution Neuromonitoring and Responsive Neurostimulation.,2015,9,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas9.html#ShulyzkiABSFVCG15,https://doi.org/10.1109/TBCAS.2014.2312552 +Shuenn-Yuh Lee,A Low-Power Bidirectional Telemetry Device With a Near-Field Charging Feature for a Cardiac Microstimulator.,2011,5,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas5.html#LeeCL11,https://doi.org/10.1109/TBCAS.2011.2126570 +Jun Wang 0040,Assimilation of Biophysical Neuronal Dynamics in Neuromorphic VLSI.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#WangBABAC17,https://doi.org/10.1109/TBCAS.2017.2776198 +Dan Popescu,A Magnetic Manipulation System Using an Active Filter for Electronic Detection of Target Cells.,2012,6,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas6.html#PopescuPLL12,https://doi.org/10.1109/TBCAS.2012.2184540 +Ebrahim Ghafar-Zadeh,Micro-Organism-on-Chip: Emerging Direct-Write CMOS-Based Platform for Biological Applications.,2009,3,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas3.html#Ghafar-ZadehSC09,https://doi.org/10.1109/TBCAS.2009.2023453 +Mohsen Mollazadeh,Wireless Micropower Instrumentation for Multimodal Acquisition of Electrical and Chemical Neural Activity.,2009,3,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas3.html#MollazadehMCT09a,https://doi.org/10.1109/TBCAS.2009.2031877 +Brad E. Paden,Lower Bounds on the Frequency Estimation Error in Magnetically Coupled MEMS Resonant Sensors.,2016,10,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas10.html#Paden16,https://doi.org/10.1109/TBCAS.2014.2377198 +Tao Xu 0002,Defect-Aware High-Level Synthesis and Module Placement for Microfluidic Biochips.,2008,2,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas2.html#XuCS08,https://doi.org/10.1109/TBCAS.2008.918283 +Keng Hoong Wee,An Analog Integrated-Circuit Vocal Tract.,2008,2,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas2.html#WeeTS08,https://doi.org/10.1109/TBCAS.2008.2005296 +Sourav Kumar Mukhopadhyay,SVD and ASCII Character Encoding-Based Compression of Multiple Biosignals for Remote Healthcare Systems.,2018,12,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas12.html#MukhopadhyayAS18,https://doi.org/10.1109/TBCAS.2017.2760298 +Shubha Ramakrishnan,Neuron Array With Plastic Synapses and Programmable Dendrites.,2013,7,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas7.html#RamakrishnanWHG13,https://doi.org/10.1109/TBCAS.2013.2282616 +Alison Burdett,Guest Editorial - Selected Papers from the 2012 IEEE International Solid-State Circuits Conference (ISSCC).,2012,6,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas6.html#BurdettG12,https://doi.org/10.1109/TBCAS.2012.2236012 +Kiseok Song,A Wirelessly Powered Electro-Acupuncture Based on Adaptive Pulsewidth Monophase Stimulation.,2011,5,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas5.html#SongYLYY11,https://doi.org/10.1109/TBCAS.2011.2144592 +Xueyuan Zhao,Toward Wireless Health Monitoring via an Analog Signal Compression-Based Biosensing Platform.,2018,12,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas12.html#ZhaoSLPJ18,https://doi.org/10.1109/TBCAS.2018.2829512 +Daniela Loi,Peripheral Neural Activity Recording and Stimulation System.,2011,5,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas5.html#LoiCAABRRN11,https://doi.org/10.1109/TBCAS.2011.2123097 +Zipeng Li,Droplet Size-Aware and Error-Correcting Sample Preparation Using Micro-Electrode-Dot-Array Digital Microfluidic Biochips.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#LiLCHL17,https://doi.org/10.1109/TBCAS.2017.2742548 +Mohamed Amine Miled,Reconfigurable Prototyping Microfluidic Platform for DEP Manipulation and Capacitive Sensing.,2015,9,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas9.html#MiledASS15,https://doi.org/10.1109/TBCAS.2015.2414452 +Roman Genov,Editorial.,2009,3,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas3.html#GenovE09,https://doi.org/10.1109/TBCAS.2009.2016861 +Yuki Hayashida,Retinal Circuit Emulator With Spatiotemporal Spike Outputs at Millisecond Resolution in Response to Visual Events.,2017,11,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas11.html#HayashidaKIOY17,https://doi.org/10.1109/TBCAS.2017.2662659 +Matthew Douthwaite,A Thermally Powered ISFET Array for On-Body pH Measurement.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#DouthwaiteKYMG17,https://doi.org/10.1109/TBCAS.2017.2727219 +Benoit Gosselin,A Mixed-Signal Multichip Neural Recording Interface With Bandwidth Reduction.,2009,3,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas3.html#GosselinARSLCG09,https://doi.org/10.1109/TBCAS.2009.2013718 +Peng Li 0012,A 410-nW Efficient QRS Processor for Mobile ECG Monitoring in 0.18-λ6*m CMOS.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#LiZLHPYJC17,https://doi.org/10.1109/TBCAS.2017.2731797 +Yu-Chieh Huang,Ultrahigh-Density 256-Channel Neural Sensing Microsystem Using TSV-Embedded Neural Probes.,2017,11,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas11.html#HuangHWHYCHCLDC17,https://doi.org/10.1109/TBCAS.2017.2669439 +Fabio Pareschi,Hardware-Algorithms Co-Design and Implementation of an Analog-to-Information Converter for Biosignals Based on Compressed Sensing.,2016,10,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas10.html#PareschiAFMRS16,https://doi.org/10.1109/TBCAS.2015.2444276 +Srinjoy Mitra,Real-Time Classification of Complex Patterns Using Spike-Based Learning in Neuromorphic VLSI.,2009,3,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas3.html#MitraFI09,https://doi.org/10.1109/TBCAS.2008.2005781 +Andreas W. K. Harris,Designing Genetic Feedback Controllers.,2015,9,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas9.html#HarrisDKAP15,https://doi.org/10.1109/TBCAS.2015.2458435 +Chi-Hsuan Hsieh,A UWB Radar Signal Processing Platform for Real-Time Human Respiratory Feature Extraction Based on Four-Segment Linear Waveform Model.,2016,10,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas10.html#HsiehCSCH16,https://doi.org/10.1109/TBCAS.2014.2376956 +Olatunji Mumini Omisore,Towards Characterization and Adaptive Compensation of Backlash in a Novel Robotic Catheter System for Cardiovascular Interventions.,2018,12,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas12.html#OmisoreHRWOLW18,https://doi.org/10.1109/TBCAS.2018.2825359 +Chia-Ling Wei,Respiration Detection Chip With Integrated Temperature-Insensitive MEMS Sensors and CMOS Signal Processing Circuits.,2015,9,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas9.html#WeiLCLL15,https://doi.org/10.1109/TBCAS.2014.2315532 +Zhicong Luo,A Digitally Dynamic Power Supply Technique for 16-Channel 12 V-Tolerant Stimulator Realized in a 0.18- and#956*m 1.8-V/3.3-V Low-Voltage CMOS Process.,2017,11,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas11.html#LuoKYC17,https://doi.org/10.1109/TBCAS.2017.2713122 +Hassan Aqeel Khan,Virtual Spirometry and Activity Monitoring Using Multichannel Electrical Impedance Plethysmographs in Ambulatory Settings.,2017,11,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas11.html#KhanGAC17,https://doi.org/10.1109/TBCAS.2017.2688339 +Suat U. Ay,A CMOS Energy Harvesting and Imaging (EHI) Active Pixel Sensor (APS) Imager for Retinal Prosthesis.,2011,5,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas5.html#Ay11,https://doi.org/10.1109/TBCAS.2011.2170069 +Onur Tigli,Fabrication and Characterization of a Surface-Acoustic-Wave Biosensor in CMOS Technology for Cancer Biomarker Detection.,2010,4,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas4.html#TigliBBZ10,https://doi.org/10.1109/TBCAS.2009.2033662 +Michal Maslik,Continuous-Time Acquisition of Biosignals Using a Charge-Based ADC Topology.,2018,12,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas12.html#MaslikLLC18,https://doi.org/10.1109/TBCAS.2018.2817180 +Saam Iranmanesh,An Ultralow-Power Sleep Spindle Detection System on Chip.,2017,11,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas11.html#IranmaneshR17,https://doi.org/10.1109/TBCAS.2017.2690908 +Leon Fay,A Micropower Electrocardiogram Amplifier.,2009,3,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas3.html#FayMS09,https://doi.org/10.1109/TBCAS.2009.2026483 +Anthony Kolar,Prototype of Video Endoscopic Capsule With 3-D Imaging Capabilities.,2010,4,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas4.html#KolarRAVG10,https://doi.org/10.1109/TBCAS.2010.2049265 +Seetharam Narasimhan,Ultra-Low-Power and Robust Digital-Signal-Processing Hardware for Implantable Neural Interface Microsystems.,2011,5,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas5.html#NarasimhanCB11,https://doi.org/10.1109/TBCAS.2010.2076281 +Mahdi Rasouli,An Extreme Learning Machine-Based Neuromorphic Tactile Sensing System for Texture Recognition.,2018,12,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas12.html#RasouliCBKT18,https://doi.org/10.1109/TBCAS.2018.2805721 +Yan Liu 0016,A 64-Channel Versatile Neural Recording SoC With Activity-Dependent Data Throughput.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#LiuLWRC17,https://doi.org/10.1109/TBCAS.2017.2759339 +Tejaswini Narayanan,A Newtonian Framework for Community Detection in Undirected Biological Networks.,2014,8,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas8.html#NarayananS14,https://doi.org/10.1109/TBCAS.2013.2288155 +Federico Nicolas Guerrero,Analysis and Simple Circuit Design of Double Differential EMG Active Electrode.,2016,10,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas10.html#GuerreroSH16,https://doi.org/10.1109/TBCAS.2015.2492944 +Giuseppe Massobrio,Equivalent Circuit of the Neuro-Electronic Junction for Signal Recordings From Planar and Engulfed Micro-Nano-Electrodes.,2018,12,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas12.html#MassobrioMM18,https://doi.org/10.1109/TBCAS.2017.2749451 +Yun Miao,A CMOS-Based Bidirectional Brain Machine Interface System With Integrated fdNIRS and tDCS for Closed-Loop Brain Stimulation.,2018,12,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas12.html#MiaoK18,https://doi.org/10.1109/TBCAS.2018.2798924 +Aditya Shukla,An On-Chip Trainable and the Clock-Less Spiking Neural Network With 1R Memristive Synapses.,2018,12,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas12.html#ShuklaG18,https://doi.org/10.1109/TBCAS.2018.2831618 +Jie Chen,Guest Editorial - Special Issue on '-Omics' Based Companion Diagnostics for Personalized Medicine.,2014,8,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas8.html#ChenSWW14,https://doi.org/10.1109/TBCAS.2014.2308993 +Pantelis Georgiou,Guest Editorial - Special Issue on Selected Papers From IEEE BioCAS 2014.,2015,9,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas9.html#GeorgiouFS15,https://doi.org/10.1109/TBCAS.2015.2498758 +Elliot Greenwald,A VLSI Neural Monitoring System With Ultra-Wideband Telemetry for Awake Behaving Subjects.,2011,5,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas5.html#GreenwaldMHTCT11,https://doi.org/10.1109/TBCAS.2011.2141670 +Jie Zhang,An Efficient and Compact Compressed Sensing Microsystem for Implantable Neural Recordings.,2014,8,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas8.html#ZhangSMCHYTE14,https://doi.org/10.1109/TBCAS.2013.2284254 +Zhidong Miao,Efficiency Enhancement for an Inductive Wireless Power Transfer System by Optimizing the Impedance Matching Networks.,2017,11,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas11.html#MiaoLG17,https://doi.org/10.1109/TBCAS.2017.2740266 +Hossein Hosseini-Nejad,Data Compression in Brain-Machine/Computer Interfaces Based on the Walsh-Hadamard Transform.,2014,8,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas8.html#Hosseini-NejadJS14,https://doi.org/10.1109/TBCAS.2013.2258669 +Dai Jiang,A Stimulator ASIC Featuring Versatile Management for Vestibular Prostheses.,2011,5,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas5.html#JiangDPLD11,https://doi.org/10.1109/TBCAS.2011.2138139 +Krishna Naishadham,Estimation of Cardiopulmonary Parameters From Ultra Wideband Radar Measurements Using the State Space Method.,2016,10,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas10.html#NaishadhamPRF16,https://doi.org/10.1109/TBCAS.2015.2510652 +Tamás Harczos,Making Use of Auditory Models for Better Mimicking of Normal Hearing Processes With Cochlear Implants: The SAM Coding Strategy.,2013,7,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas7.html#HarczosCH13,https://doi.org/10.1109/TBCAS.2012.2219530 +Denis Guangyin Chen,Pulse-Modulation Imaging - Review and Performance Analysis.,2011,5,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas5.html#ChenMBP11,https://doi.org/10.1109/TBCAS.2010.2075929 +Mohamad Sawan,Editorial.,2018,12,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas12.html#SawanW18,https://doi.org/10.1109/TBCAS.2018.2795918 +Florian Kolbl,An Embedded Deep Brain Stimulator for Biphasic Chronic Experiments in Freely Moving Rodents.,2016,10,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas10.html#KolblNNBFRBL16,https://doi.org/10.1109/TBCAS.2014.2368788 +Arnaldo Mendez,A DSP for Sensing the Bladder Volume Through Afferent Neural Pathways.,2014,8,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas8.html#MendezBS14,https://doi.org/10.1109/TBCAS.2013.2282087 +Jacopo Olivo,A Study of Multi-Layer Spiral Inductors for Remote Powering of Implantable Sensors.,2013,7,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas7.html#OlivoCM13,https://doi.org/10.1109/TBCAS.2012.2225620 +Valerie S. Hanson,Real-Time Embedded Implementation of the Binary Mask Algorithm for Hearing Prosthetics.,2014,8,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas8.html#HansonO14,https://doi.org/10.1109/TBCAS.2013.2281728 +Vahid Majidzadeh,Energy Efficient Low-Noise Neural Recording Amplifier With Enhanced Noise Efficiency Factor.,2011,5,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas5.html#MajidzadehSL11,https://doi.org/10.1109/TBCAS.2010.2078815 +Farzaneh Shahrokhi,The 128-Channel Fully Differential Digital Integrated Neural Recording and Stimulation Interface.,2010,4,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas4.html#ShahrokhiASCG10,https://doi.org/10.1109/TBCAS.2010.2041350 +Simon Friedmann,Demonstrating Hybrid Learning in a Flexible Neuromorphic Hardware System.,2017,11,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas11.html#FriedmannSGHHM17,https://doi.org/10.1109/TBCAS.2016.2579164 +Minyoung Song,An Energy-Efficient Antenna Impedance Detection Using Electrical Balance for Single-Step On-Chip Tunable Matching in Wearable/Implantable Applications.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#SongLBWLSBP17,https://doi.org/10.1109/TBCAS.2017.2771500 +Mingquan Yuan,Self-Powered Wireless Affinity-Based Biosensor Based on Integration of Paper-Based Microfluidics and Self-Assembled RFID Antennas.,2016,10,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas10.html#YuanAC16,https://doi.org/10.1109/TBCAS.2016.2535245 +Lin Li 0008,CMOS Amperometric Instrumentation and Packaging for Biosensor Array Applications.,2011,5,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas5.html#LiLQM11,https://doi.org/10.1109/TBCAS.2011.2171339 +Yong Lian,Guest Editorial - Special Section for Selected Papers from ISCAS 2007.,2008,2,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas2.html#LianS08,https://doi.org/10.1109/TBCAS.2008.2007339 +Saber Moradi,A Scalable Multicore Architecture With Heterogeneous Memory Structures for Dynamic Neuromorphic Asynchronous Processors (DYNAPs).,2018,12,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas12.html#MoradiNSI18,https://doi.org/10.1109/TBCAS.2017.2759700 +Jos Hulzink,An Ultra Low Energy Biomedical Signal Processing System Operating at Near-Threshold.,2011,5,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas5.html#HulzinkKABBHSGBDG11,https://doi.org/10.1109/TBCAS.2011.2176726 +Jun Yeon Won,Dual-Phase Tapped-Delay-Line Time-to-Digital Converter With On-the-Fly Calibration Implemented in 40 nm FPGA.,2016,10,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas10.html#WonKYKSL16,https://doi.org/10.1109/TBCAS.2015.2389227 +Clara M. Ionescu,A Recurrent Parameter Model to Characterize the High-Frequency Range of Respiratory Impedance in Healthy Subjects.,2013,7,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas7.html#IonescuHK13,https://doi.org/10.1109/TBCAS.2013.2243837 +Kejia Li,A Wireless Reflectance Pulse Oximeter With Digital Baseline Control for Unfiltered Photoplethysmograms.,2012,6,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas6.html#LiW12,https://doi.org/10.1109/TBCAS.2011.2167717 +Janaka Senarathna,A Miniaturized Platform for Laser Speckle Contrast Imaging.,2012,6,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas6.html#SenarathnaMET12,https://doi.org/10.1109/TBCAS.2012.2218106 +Vincent Chan,An Address-Event Vision Sensor for Multiple Transient Object Detection.,2007,1,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas1.html#ChanJS07,https://doi.org/10.1109/TBCAS.2007.916031 +Dejan Rozgic,A Miniaturized 0.78-mW/cm2 Autonomous Thermoelectric Energy-Harvesting Platform for Biomedical Sensors.,2017,11,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas11.html#RozgicM17,https://doi.org/10.1109/TBCAS.2017.2684818 +Jiawei Xu,A 36 and#956*W 1.1 mm2 Reconfigurable Analog Front-End for Cardiovascular and Respiratory Signals Recording.,2018,12,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas12.html#XuKHWSBHH18,https://doi.org/10.1109/TBCAS.2018.2814699 +Kenji Shiba,Capacitive-Coupling-Based Information Transmission System for Implantable Devices: Investigation of Transmission Mechanism.,2013,7,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas7.html#ShibaE13,https://doi.org/10.1109/TBCAS.2012.2237516 +Nima Soltani,Low-Radiation Cellular Inductive Powering of Rodent Wireless Brain Interfaces: Methodology and Design Guide.,2016,10,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas10.html#SoltaniASVG16,https://doi.org/10.1109/TBCAS.2015.2502840 +Assad I. Al-Shueli,Improved Signal Processing Methods for Velocity Selective Neural Recording Using Multi-Electrode Cuffs.,2014,8,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas8.html#Al-ShueliCDT14,https://doi.org/10.1109/TBCAS.2013.2277561 +Dean A. Scribner,A Retinal Prosthesis Technology Based on CMOS Microelectronics and Microwire Glass Electrodes.,2007,1,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas1.html#ScribnerJSKILFFPPFBHK07,https://doi.org/10.1109/TBCAS.2007.893186 +Vega Pradana Rachim,Wearable Noncontact Armband for Mobile ECG Monitoring System.,2016,10,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas10.html#RachimC16,https://doi.org/10.1109/TBCAS.2016.2519523 +Byunghun Lee,A Triple-Loop Inductive Power Transmission System for Biomedical Applications.,2016,10,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas10.html#LeeKG16,https://doi.org/10.1109/TBCAS.2014.2376965 +Masoud Rezaei,A Low-Power Current-Reuse Analog Front-End for High-Density Neural Recording Implants.,2018,12,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas12.html#RezaeiMBKG18,https://doi.org/10.1109/TBCAS.2018.2805278 +Yuan Meng,Sensing Passive Eye Response to Impact Induced Head Acceleration Using MEMS IMUs.,2018,12,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas12.html#MengBBLA18,https://doi.org/10.1109/TBCAS.2017.2766565 +Shih-Chii Liu,Asynchronous Binaural Spatial Audition Sensor With 2 and** 64 and** 4 Channel Output.,2014,8,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas8.html#LiuSMD14,https://doi.org/10.1109/TBCAS.2013.2281834 +Wing-Fai Loke,Magnetic Tracking System for Radiation Therapy.,2010,4,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas4.html#LokeCMPZJ10,https://doi.org/10.1109/TBCAS.2010.2046737 +Atsuki Kobayashi,Design and Experimental Verification of a 0.19 V 53 and#956*W 65 nm CMOS Integrated Supply-Sensing Sensor With a Supply-Insensitive Temperature Sensor and an Inductive-Coupling Transmitter for a Self-Powered Bio-sensing System Using a Biofuel Cell.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#KobayashiIOKNNN17,https://doi.org/10.1109/TBCAS.2017.2735447 +Zening Fu,Adaptive Covariance Estimation of Non-Stationary Processes and its Application to Infer Dynamic Connectivity From fMRI.,2014,8,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas8.html#FuCDBZ14,https://doi.org/10.1109/TBCAS.2014.2306732 +Qinghua Huang,Fully Automatic Three-Dimensional Ultrasound Imaging Based on Conventional B-Scan.,2018,12,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas12.html#HuangWLL18,https://doi.org/10.1109/TBCAS.2017.2782815 +Pooria Mostafalu,Wireless Flexible Smart Bandage for Continuous Monitoring of Wound Oxygenation.,2015,9,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas9.html#MostafaluLDZKS15,https://doi.org/10.1109/TBCAS.2015.2488582 +Carolina Mora Lopez,A Neural Probe With Up to 966 Electrodes and Up to 384 Configurable Channels in 0.13 andmicro*m SOI CMOS.,2017,11,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas11.html#LopezPRBWARVSHM17,https://doi.org/10.1109/TBCAS.2016.2646901 +Yongjia Li,A Sub-Microwatt Asynchronous Level-Crossing ADC for Biomedical Applications.,2013,7,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas7.html#LiZS13,https://doi.org/10.1109/TBCAS.2013.2254484 +Hussain A. Alzaher,A Highly Linear Fully Integrated Powerline Filter for Biopotential Acquisition Systems.,2013,7,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas7.html#AlzaherTM13,https://doi.org/10.1109/TBCAS.2013.2245506 +Mark Ulbrich,A Thorax Simulator for Complex Dynamic Bioimpedance Measurements With Textile Electrodes.,2015,9,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas9.html#UlbrichMTLW15,https://doi.org/10.1109/TBCAS.2014.2337372 +Yong-Jun An,Flexible Non-Constrained RF Wrist Pulse Detection Sensor Based on Array Resonators.,2016,10,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas10.html#AnKYKHY16,https://doi.org/10.1109/TBCAS.2015.2406776 +Jong Seok Park,1024-Pixel CMOS Multimodality Joint Cellular Sensor/Stimulator Array for Real-Time Holistic Cellular Characterization and Cell-Based Drug Screening.,2018,12,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas12.html#ParkALCGSCW18,https://doi.org/10.1109/TBCAS.2017.2759220 +Mario R. Casu,A COTS-Based Microwave Imaging System for Breast-Cancer Detection.,2017,11,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas11.html#CasuVTPSSV17,https://doi.org/10.1109/TBCAS.2017.2703588 +Vivek P. Jani,Blood Quality Diagnostic Device Detects Storage Differences Between Donors.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#JaniMALWC17,https://doi.org/10.1109/TBCAS.2017.2749304 +Jeevan K. Pant,Compressive Sensing of Electrocardiogram Signals by Promoting Sparsity on the Second-Order Difference and by Using Dictionary Learning.,2014,8,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas8.html#PantK14,https://doi.org/10.1109/TBCAS.2013.2263459 +Xiaowei Xu 0004,Body-Earth Mover's Distance: A Matching-Based Approach for Sleep Posture Recognition.,2016,10,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas10.html#XuLWHHX16,https://doi.org/10.1109/TBCAS.2016.2543686 +Daniel J. Yeager,NeuralWISP: A Wirelessly Powered Neural Interface With 1-m Range.,2009,3,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas3.html#YeagerHPSO09,https://doi.org/10.1109/TBCAS.2009.2031628 +Julian Oreggioni,Current-Efficient Preamplifier Architecture for CMRR Sensitive Neural Recording Applications.,2018,12,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas12.html#OreggioniCS18,https://doi.org/10.1109/TBCAS.2018.2826720 +Philipp Häfliger,Guest Editorial - Special Issue on Selected Papers From ISCAS 2009.,2010,4,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas4.html#HafligerC10,https://doi.org/10.1109/TBCAS.2010.2050363 +Marcelo Alejandro Haberman,A Multichannel EEG Acquisition Scheme Based on Single Ended Amplifiers and Digital DRL.,2012,6,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas6.html#HabermanS12,https://doi.org/10.1109/TBCAS.2012.2190733 +Karim Abdelhalim,Phase-Synchronization Early Epileptic Seizure Detector VLSI Architecture.,2011,5,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas5.html#AbdelhalimSG11,https://doi.org/10.1109/TBCAS.2011.2170686 +Pantelis Georgiou,Guest Editorial - ISCAS 2012 Special Issue.,2013,7,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas7.html#GeorgiouC13,https://doi.org/10.1109/TBCAS.2013.2257955 +Patrick P. Mercier,Guest Editorial - Selected Papers from the 2013 IEEE International Solid-State Circuits Conference (ISSCC).,2013,7,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas7.html#MercierGG13,https://doi.org/10.1109/TBCAS.2014.2300274 +Thomas L. A. van den Heuvel,Development of a Low-Cost Medical Ultrasound Scanner Using a Monostatic Synthetic Aperture.,2017,11,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas11.html#HeuvelGSKN17,https://doi.org/10.1109/TBCAS.2017.2695240 +Camilla Baj-Rossi,In-Vivo Validation of Fully Implantable Multi-Panel Devices for Remote Monitoring of Metabolism.,2016,10,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas10.html#Baj-RossiCKSJPM16,https://doi.org/10.1109/TBCAS.2016.2584239 +Xiao Zhang,CMOS Image Sensor and System for Imaging Hemodynamic Changes in Response to Deep Brain Stimulation.,2016,10,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas10.html#ZhangNMKYM16,https://doi.org/10.1109/TBCAS.2015.2453256 +Parisa Behnamfar,Transceiver Design for CMUT-Based Super-Resolution Ultrasound Imaging.,2016,10,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas10.html#BehnamfarMM16,https://doi.org/10.1109/TBCAS.2015.2406777 +Thomas P. Prescott,Designing Conservation Relations in Layered Synthetic Biomolecular Networks.,2015,9,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas9.html#PrescottP15,https://doi.org/10.1109/TBCAS.2015.2460376 +Jaeeun Jang,A 540-µ*W Duty Controlled RSSI With Current Reusing Technique for Human Body Communication.,2016,10,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas10.html#JangLCY16,https://doi.org/10.1109/TBCAS.2016.2579166 +Alberto Rodríguez-Pérez,A Low-Power Programmable Neural Spike Detection Channel With Embedded Calibration and Data Compression.,2012,6,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas6.html#Rodriguez-PerezRDR12,https://doi.org/10.1109/TBCAS.2012.2187352 +Wei Tang 0002,A Low-Power High-Speed Ultra-Wideband Pulse Radio Transmission System.,2009,3,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas3.html#TangC09,https://doi.org/10.1109/TBCAS.2009.2031603 +Runchun Wang,Neuromorphic Hardware Architecture Using the Neural Engineering Framework for Pattern Recognition.,2017,11,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas11.html#WangTCHTS17,https://doi.org/10.1109/TBCAS.2017.2666883 +Ming Gu,FAST: A Framework for Simulation and Analysis of Large-Scale Protein-Silicon Biosensor Circuits.,2013,7,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas7.html#GuC13,https://doi.org/10.1109/TBCAS.2012.2222403 +Chin-Teng Lin,A Real-Time Wireless Brain-Computer Interface System for Drowsiness Detection.,2010,4,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas4.html#LinCLHCW10,https://doi.org/10.1109/TBCAS.2010.2046415 +Rune Kaald,A 1 MHz BW 34.2 fJ/step Continuous Time Delta Sigma Modulator With an Integrated Mixer for Cardiac Ultrasound.,2017,11,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas11.html#KaaldEY17,https://doi.org/10.1109/TBCAS.2016.2580462 +Deniz Kilinç,Noise in Neuronal and Electronic Circuits: A General Modeling Framework and Non-Monte Carlo Simulation Techniques.,2017,11,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas11.html#KilincD17,https://doi.org/10.1109/TBCAS.2017.2679039 +Sinan Hersek,A Robust System for Longitudinal Knee Joint Edema and Blood Flow Assessment Based on Vector Bioimpedance Measurements.,2016,10,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas10.html#HersekTI16,https://doi.org/10.1109/TBCAS.2015.2487300 +Jing Guo,Modeling of the Cell-Electrode Interface Noise for Microelectrode Arrays.,2012,6,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas6.html#GuoYC12,https://doi.org/10.1109/TBCAS.2012.2189569 +Milutin Stanacevic,VLSI Potentiostat Array With Oversampling Gain Modulation for Wide-Range Neurotransmitter Sensing.,2007,1,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas1.html#StanacevicMRCT07,https://doi.org/10.1109/TBCAS.2007.893176 +Zhijun Zhou,A High Input Impedance Low Noise Integrated Front-End Amplifier for Neural Monitoring.,2016,10,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas10.html#ZhouW16,https://doi.org/10.1109/TBCAS.2016.2525810 +Ki Yong Kwon,Opto-µ*ECoG Array: A Hybrid Neural Interface With Transparent andmicro*ECoG Electrode Array and Integrated LEDs for Optogenetics.,2013,7,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas7.html#KwonSWL13,https://doi.org/10.1109/TBCAS.2013.2282318 +Sang-Jin Lee,3-D System-on-System (SoS) Biomedical-Imaging Architecture for Health-Care Applications.,2010,4,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas4.html#LeeKHCYCE10,https://doi.org/10.1109/TBCAS.2010.2079330 +Chirag C. Sthalekar,Optical Characterization of Tissue Phantoms Using a Silicon Integrated fdNIRS System on Chip.,2017,11,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas11.html#SthalekarMK17,https://doi.org/10.1109/TBCAS.2016.2586103 +Ching-Yao Chou,Low-Complexity Privacy-Preserving Compressive Analysis Using Subspace-Based Dictionary for ECG Telemonitoring System.,2018,12,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas12.html#ChouCLW18,https://doi.org/10.1109/TBCAS.2018.2828031 +Gwo Giun Lee,Automatic Cell Segmentation and Nuclear-to-Cytoplasmic Ratio Analysis for Third Harmonic Generated Microscopy Medical Images.,2013,7,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas7.html#LeeLTCLLSC13,https://doi.org/10.1109/TBCAS.2013.2253463 +Justice Amoh,Deep Neural Networks for Identifying Cough Sounds.,2016,10,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas10.html#AmohO16,https://doi.org/10.1109/TBCAS.2016.2598794 +Shih-Wen Chiu,A Fully Integrated Nose-on-a-Chip for Rapid Diagnosis of Ventilator-Associated Pneumonia.,2014,8,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas8.html#ChiuWCCWCTCSKWCHCLCYCST14,https://doi.org/10.1109/TBCAS.2014.2377754 +Marco Mercuri,A Direct Phase-Tracking Doppler Radar Using Wavelet Independent Component Analysis for Non-Contact Respiratory and Heart Rate Monitoring.,2018,12,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas12.html#MercuriLLTWBH18,https://doi.org/10.1109/TBCAS.2018.2813013 +Pujitha Weerakoon,An Integrated Patch-Clamp Potentiostat With Electrode Compensation.,2009,3,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas3.html#WeerakoonCKS09,https://doi.org/10.1109/TBCAS.2008.2005419 +Hamid Soleimani,A Compact Synchronous Cellular Model of Nonlinear Calcium Dynamics: Simulation and FPGA Synthesis Results.,2017,11,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas11.html#SoleimaniD17,https://doi.org/10.1109/TBCAS.2016.2636183 +Enrique Lopez-Morillo,A 1.2-V 140-nW 10-bit Sigma-Delta Modulator for Electroencephalogram Applications.,2008,2,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas2.html#Lopez-MorilloCMGLRR08,https://doi.org/10.1109/TBCAS.2008.2001868 +Stefanie Jetzki,A Multisensor Implant for Continuous Monitoring of Intracranial Pressure Dynamics.,2012,6,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas6.html#JetzkiWKHRKKHOWL12,https://doi.org/10.1109/TBCAS.2012.2183131 +Dae-Geun Jang,A Robust Method for Pulse Peak Determination in a Digital Volume Pulse Waveform With a Wandering Baseline.,2014,8,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas8.html#JangFPH14,https://doi.org/10.1109/TBCAS.2013.2295102 +Walter Karlen,Sleep and Wake Classification With ECG and Respiratory Effort Signals.,2009,3,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas3.html#KarlenMF09,https://doi.org/10.1109/TBCAS.2008.2008817 +Dai Jiang,An Integrated Passive Phase-Shift Keying Modulator for Biomedical Implants With Power Telemetry Over a Single Inductive Link.,2017,11,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas11.html#JiangCSPDD17,https://doi.org/10.1109/TBCAS.2016.2580513 +Omar Al-Terkawi Hasib,A Low-Power Asynchronous Step-Down DC-DC Converter for Implantable Devices.,2011,5,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas5.html#HasibSS11,https://doi.org/10.1109/TBCAS.2010.2103073 +Faisal T. Abu-Nimeh,An Integrated Open-Cavity System for Magnetic Bead Manipulation.,2013,7,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas7.html#Abu-NimehS13,https://doi.org/10.1109/TBCAS.2012.2191151 +Seulki Lee,Low Power and Self-Reconfigurable WBAN Controller for Continuous Bio-Signal Monitoring System.,2013,7,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas7.html#LeeY13,https://doi.org/10.1109/TBCAS.2013.2254116 +Shuang Song,A Low-Voltage Chopper-Stabilized Amplifier for Fetal ECG Monitoring With a 1.41 Power Efficiency Factor.,2015,9,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas9.html#SongRHRMRC15,https://doi.org/10.1109/TBCAS.2015.2417124 +Hugo Vihvelin,Compensating for Tissue Changes in an Ultrasonic Power Link for Implanted Medical Devices.,2016,10,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas10.html#VihvelinLBBA16,https://doi.org/10.1109/TBCAS.2015.2421823 +Guoxing Wang,Analysis of Dual Band Power and Data Telemetry for Biomedical Implants.,2012,6,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas6.html#WangWTL12,https://doi.org/10.1109/TBCAS.2011.2171958 +Stefano Di Pascoli,Design and Implementation of a Wireless In-Ovo EEG/EMG Recorder.,2013,7,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas7.html#PascoliPPBP13,https://doi.org/10.1109/TBCAS.2013.2251343 +Hardeep S. Ryait,Interpretations of Wrist/Grip Operations From SEMG Signals at Different Locations on Arm.,2010,4,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas4.html#RyaitAA10,https://doi.org/10.1109/TBCAS.2009.2037604 +Fabio Pareschi,Energy Analysis of Decoders for Rakeness-Based Compressed Sensing of ECG Signals.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#PareschiMBBBRS17,https://doi.org/10.1109/TBCAS.2017.2740059 +Wansuree Massagram,Digital Heart-Rate Variability Parameter Monitoring and Assessment ASIC.,2010,4,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas4.html#MassagramHCMLB10,https://doi.org/10.1109/TBCAS.2009.2035555 +Tor Sverre Lande,Editorial.,2008,2,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas2.html#LandeB08,https://doi.org/10.1109/TBCAS.2008.923454 +Nicolas Moser,A Scalable ISFET Sensing and Memory Array With Sensor Auto-Calibration for On-Chip Real-Time DNA Detection.,2018,12,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas12.html#MoserRLG18,https://doi.org/10.1109/TBCAS.2017.2789161 +Seung Bae Lee,An Inductively Powered Scalable 32-Channel Wireless Neural Recording System-on-a-Chip for Neuroscience Applications.,2010,4,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas4.html#LeeLKJG10,https://doi.org/10.1109/TBCAS.2010.2078814 +Sunitha Ayers,Post-CMOS Fabrication of Working Electrodes for On-Chip Recordings of Transmitter Release.,2010,4,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas4.html#AyersBGLM10,https://doi.org/10.1109/TBCAS.2009.2033706 +Lei Wang 0029,Multichannel Reflective PPG Earpiece Sensor With Passive Motion Cancellation.,2007,1,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas1.html#WangLY07,https://doi.org/10.1109/TBCAS.2007.910900 +Gill R. Tsouri,An Investigation Into Relaying of Creeping Waves for Reliable Low-Power Body Sensor Networking.,2011,5,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas5.html#TsouriSW11,https://doi.org/10.1109/TBCAS.2011.2160060 +Pei Wang,Graphical Features of Functional Genes in Human Protein Interaction Network.,2016,10,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas10.html#WangCLWY16,https://doi.org/10.1109/TBCAS.2015.2487299 +Joseph Snider,Simultaneous Neural and Movement Recording in Large-Scale Immersive Virtual Environments.,2013,7,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas7.html#SniderPLP13,https://doi.org/10.1109/TBCAS.2012.2236089 +Ji-Yong Um,A Single-Chip 32-Channel Analog Beamformer With 4-ns Delay Resolution and 768-ns Maximum Delay Range for Ultrasound Medical Imaging With a Linear Array Transducer.,2015,9,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas9.html#UmKCCKSP15,https://doi.org/10.1109/TBCAS.2014.2325851 +Jennifer Blain Christen,Guest Editorial - ISCAS 2015 Special Issue.,2016,10,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas10.html#ChristenB16,https://doi.org/10.1109/TBCAS.2016.2564598 +Fang-Xiang Wu,Global and Robust Stability Analysis of Genetic Regulatory Networks With Time-Varying Delays and Parameter Uncertainties.,2011,5,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas5.html#Wu11,https://doi.org/10.1109/TBCAS.2011.2124459 +Chia-Hsiang Yang,An 81.6 andmicro*W FastICA Processor for Epileptic Seizure Detection.,2015,9,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas9.html#YangSC15,https://doi.org/10.1109/TBCAS.2014.2318592 +Brian McGovern,A New Individually Addressable Micro-LED Array for Photogenetic Neural Stimulation.,2010,4,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas4.html#McGovernPGDPND10,https://doi.org/10.1109/TBCAS.2010.2081988 +Ghazal Nabovati,Towards High Throughput Cell Growth Screening: A New CMOS 8 and** 8 Biosensor Array for Life Science Applications.,2017,11,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas11.html#NabovatiGLS17,https://doi.org/10.1109/TBCAS.2016.2593639 +James D. Loudin,Photodiode Circuits for Retinal Prostheses.,2011,5,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas5.html#LoudinCMSP11,https://doi.org/10.1109/TBCAS.2011.2144980 +Xiaochen Tang,A Real-Time QRS Detection System With PR/RT Interval and ST Segment Measurements for Wearable ECG Sensors Using Parallel Delta Modulators.,2018,12,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas12.html#TangHT18,https://doi.org/10.1109/TBCAS.2018.2823275 +Takashi Tokuda,Polarization-Analyzing CMOS Image Sensor With Monolithically Embedded Polarizer for Microchemistry Systems.,2009,3,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas3.html#TokudaYSO09,https://doi.org/10.1109/TBCAS.2009.2022835 +Xiaowen Liu,Thermally Controlled Electrochemical CMOS Microsystem for Protein Array Biosensors.,2014,8,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas8.html#LiuLM14,https://doi.org/10.1109/TBCAS.2013.2291226 +Venkata Rajesh Pamula,A 172 andmicro*W Compressively Sampled Photoplethysmographic (PPG) Readout ASIC With Heart Rate Estimation Directly From Compressively Sampled Data.,2017,11,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas11.html#PamulaVYBHHYV17,https://doi.org/10.1109/TBCAS.2017.2661701 +Jong Cheol Baeg,An Amplitude-to-Time Conversion Technique Suitable for Multichannel Data Acquisition and Bioimpedance Imaging.,2013,7,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas7.html#BaegWOMW13,https://doi.org/10.1109/TBCAS.2012.2212437 +Graham Peyton,Quadrature Synthetic Aperture Beamforming Front-End for Miniaturized Ultrasound Imaging.,2018,12,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas12.html#PeytonFSBD18,https://doi.org/10.1109/TBCAS.2018.2836915 +Elahe Rahimian,Digital Implementation of the Two-Compartmental Pinsky-Rinzel Pyramidal Neuron Model.,2018,12,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas12.html#RahimianZAL18,https://doi.org/10.1109/TBCAS.2017.2753541 +Hyunwoo Son,A Low-Power Wide Dynamic-Range Current Readout Circuit for Ion-Sensitive FET Sensors.,2017,11,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas11.html#SonCKJKPS17,https://doi.org/10.1109/TBCAS.2016.2643784 +Shiwei Wang,A Power-Efficient Capacitive Read-Out Circuit With Parasitic-Cancellation for MEMS Cochlea Sensors.,2016,10,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas10.html#WangKHMCASW16,https://doi.org/10.1109/TBCAS.2015.2403251 +Seyed Abdollah Mirbozorgi,A Single-Chip Full-Duplex High Speed Transceiver for Multi-Site Stimulating and Recording Neural Implants.,2016,10,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas10.html#MirbozorgiBSRG16,https://doi.org/10.1109/TBCAS.2015.2466592 +Eric Y. Chow,A Miniature-Implantable RF-Wireless Active Glaucoma Intraocular Pressure Monitor.,2010,4,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas4.html#ChowCI10,https://doi.org/10.1109/TBCAS.2010.2081364 +Qiao Ning,An Ultralow Leakage Synaptic Scaling Homeostatic Plasticity Circuit With Configurable Time Scales up to 100 ks.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#NingBI17,https://doi.org/10.1109/TBCAS.2017.2754383 +Carlos I. Dorta-Quinones,A Wireless FSCV Monitoring IC With Analog Background Subtraction and UWB Telemetry.,2016,10,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas10.html#Dorta-QuinonesW16,https://doi.org/10.1109/TBCAS.2015.2421513 +Zhi Hao Jiang,Design and Experimental Investigation of a Compact Circularly Polarized Integrated Filtering Antenna for Wearable Biotelemetric Devices.,2016,10,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas10.html#JiangGW16,https://doi.org/10.1109/TBCAS.2015.2438551 +Yi-Chung Wu,A 135-mW Fully Integrated Data Processor for Next-Generation Sequencing.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#WuCHY17,https://doi.org/10.1109/TBCAS.2017.2760109 +Hang Wong,Multi-Polarization Reconfigurable Antenna for Wireless Biomedical System.,2017,11,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas11.html#WongLHA17,https://doi.org/10.1109/TBCAS.2016.2636872 +Maja Vidojkovic,A 2.4 GHz ULP OOK Single-Chip Transceiver for Healthcare Applications.,2011,5,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas5.html#VidojkovicHHRZHMIBBKSBHPDG11,https://doi.org/10.1109/TBCAS.2011.2173340 +Federico Corradi,Towards a Neuromorphic Vestibular System.,2014,8,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas8.html#CorradiZRPLI14,https://doi.org/10.1109/TBCAS.2014.2358493 +Fan Zhang,Design of Ultra-Low Power Biopotential Amplifiers for Biosignal Acquisition Applications.,2012,6,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas6.html#ZhangHO12,https://doi.org/10.1109/TBCAS.2011.2177089 +Okundu C. Omeni,Energy Efficient Medium Access Protocol for Wireless Medical Body Area Sensor Networks.,2008,2,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas2.html#OmeniWBT08,https://doi.org/10.1109/TBCAS.2008.2003431 +Gian Nicola Angotzi,A Compact and Autoclavable System for Acute Extracellular Neural Recording and Brain Pressure Monitoring for Humans.,2015,9,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas9.html#AngotziBVBZMSRACISF15,https://doi.org/10.1109/TBCAS.2014.2312794 +Julia Faerber,In Vivo Characterization of a Wireless Telemetry Module for a Capsule Endoscopy System Utilizing a Conformal Antenna.,2018,12,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas12.html#FaerberCPRRLMCC18,https://doi.org/10.1109/TBCAS.2017.2759254 +Elliot Greenwald,A Bidirectional Neural Interface IC With Chopper Stabilized BioADC Array and Charge Balanced Stimulator.,2016,10,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas10.html#GreenwaldSWMMEC16,https://doi.org/10.1109/TBCAS.2016.2614845 +Hossein Kassiri,Electronic Sleep Stage Classifiers: A Survey and VLSI Design Methodology.,2017,11,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas11.html#KassiriCSBAG17,https://doi.org/10.1109/TBCAS.2016.2540438 +Uei-Ming Jow,Towards a Smart Experimental Arena for Long-Term Electrophysiology Experiments.,2012,6,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas6.html#JowKHG12,https://doi.org/10.1109/TBCAS.2012.2211872 +Manuel Delgado-Restituto,Guest Editorial - Special Issue on Selected Papers From IEEE BioCAS 2016.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#Delgado-Restituto17a,https://doi.org/10.1109/TBCAS.2017.2779252 +Jiafeng Yao,Distinct Motion of GFP-Tagged Histone Expressing Cells Under AC Electrokinetics in Electrode-Multilayered Microfluidic Device.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#YaoSOMT17,https://doi.org/10.1109/TBCAS.2017.2729584 +Lingyu Hong,Fully Integrated Optical Spectrometer in Visible and Near-IR in CMOS.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#HongS17,https://doi.org/10.1109/TBCAS.2017.2774603 +Lichen Feng,VLSI Design of SVM-Based Seizure Detection System With On-Chip Learning Capability.,2018,12,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas12.html#FengLW18,https://doi.org/10.1109/TBCAS.2017.2762721 +Lei Yao,Sensitivity-Enhanced CMOS Phase Luminometry System Using Xerogel-Based Sensors.,2009,3,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas3.html#YaoKCTB09,https://doi.org/10.1109/TBCAS.2009.2022504 +Lukasz Farian,A Bio-Inspired AER Temporal Tri-Color Differentiator Pixel Array.,2015,9,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas9.html#FarianLH15,https://doi.org/10.1109/TBCAS.2015.2492460 +Maziyar Baran Pouyan,Clinical Outcome Prediction Using Single-Cell Data.,2016,10,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas10.html#PouyanJN16,https://doi.org/10.1109/TBCAS.2016.2577641 +Unsoo Ha,A Wearable EEG-HEG-HRV Multimodal System With Simultaneous Monitoring of tES for Mental Health Management.,2015,9,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas9.html#HaLKRBKY15,https://doi.org/10.1109/TBCAS.2015.2504959 +Jonathan Coulombe,A Highly Flexible System for Microstimulation of the Visual Cortex: Design and Implementation.,2007,1,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas1.html#CoulombeSG07,https://doi.org/10.1109/TBCAS.2007.916026 +Fa Wang,A Novel Intracranial Pressure Readout Circuit for Passive Wireless LC Sensor.,2017,11,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas11.html#WangZSIMW17,https://doi.org/10.1109/TBCAS.2017.2731370 +Chung-Yu Wu,A 16-Channel CMOS Chopper-Stabilized Analog Front-End ECoG Acquisition Circuit for a Closed-Loop Epileptic Seizure Control System.,2018,12,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas12.html#WuCC18,https://doi.org/10.1109/TBCAS.2018.2808415 +Po-Hung Kuo,A Smart CMOS Assay SoC for Rapid Blood Screening Test of Risk Prediction.,2015,9,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas9.html#KuoKHHHWLLYL15,https://doi.org/10.1109/TBCAS.2015.2507618 +Amir Zjajo,A Real-Time Reconfigurable Multichip Architecture for Large-Scale Biophysically Accurate Neuron Simulation.,2018,12,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas12.html#ZjajoHCESSGGL18,https://doi.org/10.1109/TBCAS.2017.2780287 +Chul Kim,Design of a Tunable All-Digital UWB Pulse Generator CMOS Chip for Wireless Endoscope.,2010,4,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas4.html#KimN10,https://doi.org/10.1109/TBCAS.2009.2037490 +Giovanni Pietro Seu,Exploiting All Programmable SoCs in Neural Signal Analysis: A Closed-Loop Control for Large-Scale CMOS Multielectrode Arrays.,2018,12,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas12.html#SeuABRBM18,https://doi.org/10.1109/TBCAS.2018.2830659 +Fayçal Mounaïm,Integrated High-Voltage Inductive Power and Data-Recovery Front End Dedicated to Implantable Devices.,2011,5,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas5.html#MounaimS11,https://doi.org/10.1109/TBCAS.2010.2103558 +Virgilio Valente,A Tripolar Current-Steering Stimulator ASIC for Field Shaping in Deep Brain Stimulation.,2012,6,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas6.html#ValenteDB12,https://doi.org/10.1109/TBCAS.2011.2171036 +Bo Zheng,Optimal Broadband Noise Matching to Inductive Sensors: Application to Magnetic Particle Imaging.,2017,11,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas11.html#ZhengGDXZGLSC17,https://doi.org/10.1109/TBCAS.2017.2712566 +Chung-Yu Wu,A CMOS Power-Efficient Low-Noise Current-Mode Front-End Amplifier for Neural Signal Recording.,2013,7,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas7.html#WuCK13,https://doi.org/10.1109/TBCAS.2013.2256422 +Alexandre Goguin,A Low-Cost Implantable Near-Infrared Imaging System of Spinal Cord Activity in the Cat.,2010,4,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas4.html#GoguinLLPRB10,https://doi.org/10.1109/TBCAS.2010.2067211 +Brandon Kimball Thurgood,A Wireless Integrated Circuit for 100-Channel Charge-Balanced Neural Stimulation.,2009,3,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas3.html#ThurgoodWLCH09,https://doi.org/10.1109/TBCAS.2009.2032268 +Nuria Rodríguez,Flexible Communication and Control Protocol for Injectable Neuromuscular Interfaces.,2007,1,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas1.html#RodriguezWL07,https://doi.org/10.1109/TBCAS.2007.893177 +JongKwan Choi,Efficient Data Extraction Method for Near-Infrared Spectroscopy (NIRS) Systems With High Spatial and Temporal Resolution.,2013,7,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas7.html#ChoiCKB13,https://doi.org/10.1109/TBCAS.2013.2255052 +Jayant Charthad,A mm-Sized Wireless Implantable Device for Electrical Stimulation of Peripheral Nerves.,2018,12,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas12.html#CharthadCLSWBGF18,https://doi.org/10.1109/TBCAS.2018.2799623 +Kyle Van Volkinburg,Development of a Wearable Controller for Gesture-Recognition-Based Applications Using Polyvinylidene Fluoride.,2017,11,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas11.html#VolkinburgW17,https://doi.org/10.1109/TBCAS.2017.2683458 +Ritika Agarwal,Input-Feature Correlated Asynchronous Analog to Information Converter for ECG Monitoring.,2011,5,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas5.html#AgarwalS11,https://doi.org/10.1109/TBCAS.2011.2116787 +Yong-Jun An,Sensitivity Enhanced Vital Sign Detection Based on Antenna Reflection Coefficient Variation.,2016,10,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas10.html#AnYY16,https://doi.org/10.1109/TBCAS.2014.2380435 +Mohsen Judy,Nonlinear Signal-Specific ADC for Efficient Neural Recording in Brain-Machine Interfaces.,2014,8,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas8.html#JudySLS14,https://doi.org/10.1109/TBCAS.2013.2270178 +Haakon Karlsen,Smartphone-Based Rapid Screening of Urinary Biomarkers.,2017,11,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas11.html#KarlsenD17,https://doi.org/10.1109/TBCAS.2016.2633508 +Abhishek Basak,Implantable Ultrasonic Imaging Assembly for Automated Monitoring of Internal Organs.,2014,8,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas8.html#BasakRB14,https://doi.org/10.1109/TBCAS.2014.2304636 +Timothy G. Constandinou,Guest Editorial - Special Issue on Selected Papers From BioCAS 2011.,2012,6,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas6.html#ConstandinouH12,https://doi.org/10.1109/TBCAS.2012.2226072 +Rajkumar Chinnakonda Kubendran,Error Correction Algorithm for High Accuracy Bio-Impedance Measurement in Wearable Healthcare Applications.,2014,8,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas8.html#KubendranLMY14,https://doi.org/10.1109/TBCAS.2014.2310895 +Tao Feng,Self-Powered Monitoring of Repeated Head Impacts Using Time-Dilation Energy Measurement Circuit.,2015,9,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas9.html#FengACC15,https://doi.org/10.1109/TBCAS.2015.2403864 +Eugenio Culurciello,Guest Editorial.,2009,3,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas3.html#CulurcielloM09,https://doi.org/10.1109/TBCAS.2009.2031466 +Xiao-Qi Zhu,Investigation and Modeling of Capacitive Human Body Communication.,2017,11,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas11.html#ZhuGW17,https://doi.org/10.1109/TBCAS.2016.2634121 +Mingquan Yuan,Self-Powered Forward Error-Correcting Biosensor Based on Integration of Paper-Based Microfluidics and Self-Assembled Quick Response Codes.,2016,10,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas10.html#YuanLSC16,https://doi.org/10.1109/TBCAS.2016.2580156 +Tzyy-Ping Jung,Guest Editorial - Special Issue on Selected Papers From BioCAS 2012.,2013,7,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas7.html#JungH13,https://doi.org/10.1109/TBCAS.2013.2283649 +Dandan Liang,Stacked Phased Array Coils for Increasing the Signal-to-Noise Ratio in Magnetic Resonance Imaging.,2013,7,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas7.html#LiangHYL13,https://doi.org/10.1109/TBCAS.2012.2194144 +Jiawei Yang,A Low Power MICS Band Phase-Locked Loop for High Resolution Retinal Prosthesis.,2013,7,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas7.html#YangS13,https://doi.org/10.1109/TBCAS.2012.2220545 +Guang Yang,A~6~µ*W per Channel Analog Biomimetic Cochlear Implant Processor Filterbank Architecture With Across Channels AGC.,2015,9,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas9.html#YangLD15,https://doi.org/10.1109/TBCAS.2014.2325907 +Will X. Y. Li,Real-Time Prediction of Neuronal Population Spiking Activity Using FPGA.,2013,7,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas7.html#LiCCSB13,https://doi.org/10.1109/TBCAS.2012.2228261 +Meng Zhang,MedMon: Securing Medical Devices Through Wireless Monitoring and Anomaly Detection.,2013,7,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas7.html#ZhangRJ13,https://doi.org/10.1109/TBCAS.2013.2245664 +Maysam Ghovanloo,Guest Editorial - Selected Papers From the 2011 IEEE International Solid-State Circuits Conference (ISSCC).,2011,5,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas5.html#GhovanlooH11,https://doi.org/10.1109/TBCAS.2011.2178349 +Hamed Mazhab-Jafari,16-Channel CMOS Impedance Spectroscopy DNA Analyzer With Dual-Slope Multiplying ADCs.,2012,6,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas6.html#Mazhab-JafariSG12,https://doi.org/10.1109/TBCAS.2012.2226334 +David Da He,A 58 nW ECG ASIC With Motion-Tolerant Heartbeat Timing Extraction for Wearable Cardiovascular Monitoring.,2015,9,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas9.html#HeS15,https://doi.org/10.1109/TBCAS.2014.2346761 +Zisheng Zhang,Low-Complexity Seizure Prediction From iEEG/sEEG Using Spectral Power and Ratios of Spectral Power.,2016,10,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas10.html#ZhangP16,https://doi.org/10.1109/TBCAS.2015.2477264 +Germain Haessig,Spiking Optical Flow for Event-Based Sensors Using IBM's TrueNorth Neurosynaptic System.,2018,12,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas12.html#HaessigCABO18,https://doi.org/10.1109/TBCAS.2018.2834558 +Jeeun Kang,A System-on-Chip Solution for Point-of-Care Ultrasound Imaging Systems: Architecture and ASIC Implementation.,2016,10,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas10.html#KangYLKLCKYS16,https://doi.org/10.1109/TBCAS.2015.2431272 +Hyejung Kim,A Configurable and Low-Power Mixed Signal SoC for Portable ECG Monitoring Applications.,2014,8,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas8.html#KimKHAKHHY14,https://doi.org/10.1109/TBCAS.2013.2260159 +Denis Guangyin Chen,Low-Power CMOS Laser Doppler Imaging Using Non-CDS Pixel Readout and 13.6-bit SAR ADC.,2016,10,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas10.html#ChenLLB16,https://doi.org/10.1109/TBCAS.2014.2365515 +Tor Sverre Lande,Editorial.,2008,2,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas2.html#LandeB08a,https://doi.org/10.1109/TBCAS.2008.927686 +Domenico Zito,SoC CMOS UWB Pulse Radar Sensor for Contactless Respiratory Rate Monitoring.,2011,5,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas5.html#ZitoPMZTLR11,https://doi.org/10.1109/TBCAS.2011.2176937 +Bob Wang,Power Flow Control Based Solely on Slow Feedback Loop for Heart Pump Applications.,2012,6,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas6.html#WangHB12,https://doi.org/10.1109/TBCAS.2011.2171689 +Xin Yi,A Blink Restoration System With Contralateral EMG Triggered Stimulation and Real-Time Artifact Blanking.,2013,7,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas7.html#YiJDSXW13,https://doi.org/10.1109/TBCAS.2013.2255051 +Yang Choon Lim,A Surface-Stress-Based Microcantilever Aptasensor.,2014,8,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas8.html#LimKDDKM14,https://doi.org/10.1109/TBCAS.2013.2286255 +Shintaro Izumi,A Wearable Healthcare System With a 13.7 andmicro* A Noise Tolerant ECG Processor.,2015,9,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas9.html#IzumiYNKKMFFNSY15,https://doi.org/10.1109/TBCAS.2014.2362307 +Chun-Yu Lin,Implantable Stimulator for Epileptic Seizure Suppression With Loading Impedance Adaptability.,2013,7,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas7.html#LinCK13,https://doi.org/10.1109/TBCAS.2012.2200481 +Alex Pappachen James,HTM Spatial Pooler With Memristor Crossbar Circuits for Sparse Biometric Recognition.,2017,11,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas11.html#JamesFIK17,https://doi.org/10.1109/TBCAS.2016.2641983 +Benjamin Sporrer,A Fully Integrated Dual-Channel On-Coil CMOS Receiver for Array Coils in 1.5-10.5 T MRI.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#SporrerWBVRMBBP17,https://doi.org/10.1109/TBCAS.2017.2764443 +Derek Ho,CMOS Spectrally-Multiplexed FRET-on-a-Chip for DNA Analysis.,2013,7,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas7.html#HoNKGG13,https://doi.org/10.1109/TBCAS.2012.2230172 +Paul T. Theilmann,An Analytical Model for Inductively Coupled Implantable Biomedical Devices With Ferrite Rods.,2009,3,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas3.html#TheilmannA09,https://doi.org/10.1109/TBCAS.2008.2004776 +Behnam Molavi,Noninvasive Optical Monitoring of Bladder Filling to Capacity Using a Wireless Near Infrared Spectroscopy Device.,2014,8,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas8.html#MolaviSMD14,https://doi.org/10.1109/TBCAS.2013.2272013 +Liang Zhou 0004,A 5 nW Quasi-Linear CMOS Hot-Electron Injector for Self-Powered Monitoring of Biomechanical Strain Variations.,2016,10,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas10.html#ZhouATC16,https://doi.org/10.1109/TBCAS.2016.2523992 +Bruno U. Pedroni,Mapping Generative Models onto a Network of Digital Spiking Neurons.,2016,10,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas10.html#PedroniDAMJMKC16,https://doi.org/10.1109/TBCAS.2016.2539352 +Yunseog Hong,Noncontact Proximity Vital Sign Sensor Based on PLL for Sensitivity Enhancement.,2014,8,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas8.html#HongKKHLYY14,https://doi.org/10.1109/TBCAS.2013.2280913 +Tong In Oh,Nanofiber Web Textile Dry Electrodes for Long-Term Biopotential Recording.,2013,7,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas7.html#OhYKWKWS13,https://doi.org/10.1109/TBCAS.2012.2201154 +Jungsuk Kim,A Patch-Clamp ASIC for Nanopore-Based DNA Analysis.,2013,7,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas7.html#KimMPD13,https://doi.org/10.1109/TBCAS.2012.2200893 +Hung-Wei Chiu,In Situ Measurement of Tissue Impedance Using an Inductive Coupling Interface Circuit.,2013,7,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas7.html#ChiuCLLLL13,https://doi.org/10.1109/TBCAS.2012.2199488 +Kiichi Niitsu,Development of Microelectrode Arrays Using Electroless Plating for CMOS-Based Direct Counting of Bacterial and HeLa Cells.,2015,9,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas9.html#NiitsuOGKHN15,https://doi.org/10.1109/TBCAS.2015.2479656 +Arun Manickam,A CMOS Electrochemical Impedance Spectroscopy (EIS) Biosensor Array.,2010,4,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas4.html#ManickamCMEH10,https://doi.org/10.1109/TBCAS.2010.2081669 +Debnath Maji,ClotChip: A Microfluidic Dielectric Sensor for Point-of-Care Assessment of Hemostasis.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#MajiSKSGGSM17,https://doi.org/10.1109/TBCAS.2017.2739724 +Dongsoo Kim,Noise Analysis and Performance Comparison of Low Current Measurement Systems for Biomedical Applications.,2013,7,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas7.html#KimGTSC13,https://doi.org/10.1109/TBCAS.2012.2192273 +Xilin Liu,A Fully Integrated Wireless Compressed Sensing Neural Signal Acquisition System for Chronic Recording and Brain Machine Interface.,2016,10,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas10.html#LiuZXRLCETS16,https://doi.org/10.1109/TBCAS.2016.2574362 +Woradorn Wattanapanitch,A Low-Power 32-Channel Digitally Programmable Neural Recording Integrated Circuit.,2011,5,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas5.html#WattanapanitchS11,https://doi.org/10.1109/TBCAS.2011.2163404 +Xiu Yin Zhang,Dual-Band Dual-Mode Button Antenna for On-Body and Off-Body Communications.,2017,11,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas11.html#ZhangWMC17,https://doi.org/10.1109/TBCAS.2017.2679048 +Hyung-Min Lee,A High Frequency Active Voltage Doubler in Standard CMOS Using Offset-Controlled Comparators for Inductive Power Transmission.,2013,7,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas7.html#LeeG13,https://doi.org/10.1109/TBCAS.2012.2198649 +Reto A. Wildhaber,Estimation of the Cardiac Field in the Esophagus Using a Multipolar Esophageal Catheter.,2018,12,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas12.html#WildhaberBZMGJT18,https://doi.org/10.1109/TBCAS.2018.2817027 +Guillaume Simard,High-Speed OQPSK and Efficient Power Transfer Through Inductive Link for Biomedical Implants.,2010,4,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas4.html#SimardSM10,https://doi.org/10.1109/TBCAS.2009.2039212 +Rahul Sarpeshkar,Low-Power Circuits for Brain-Machine Interfaces.,2008,2,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas2.html#SarpeshkarWARMBFMA08,https://doi.org/10.1109/TBCAS.2008.2003198 +Ali Jafari,A Low-Power Wearable Stand-Alone Tongue Drive System for People With Severe Disabilities.,2018,12,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas12.html#JafariBGM18,https://doi.org/10.1109/TBCAS.2017.2757031 +Aishwarya Natarajan,Hodgkin-Huxley Neuron and FPAA Dynamics.,2018,12,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas12.html#NatarajanH18,https://doi.org/10.1109/TBCAS.2018.2837055 +Loucas Constantinou,High-Power CMOS Current Driver With Accurate Transconductance for Electrical Impedance Tomography.,2014,8,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas8.html#ConstantinouTBD14,https://doi.org/10.1109/TBCAS.2013.2285481 +Mohsen Shokouhian,Interference Resilient Sigma Delta-Based Pulse Oximeter.,2016,10,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas10.html#ShokouhianMK16,https://doi.org/10.1109/TBCAS.2015.2501359 +Kristin N. Hageman,A CMOS Neural Interface for a Multichannel Vestibular Prosthesis.,2016,10,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas10.html#HagemanKTCRFDPG16,https://doi.org/10.1109/TBCAS.2015.2409797 +Michael W. Baker,Feedback Analysis and Design of RF Power Links for Low-Power Bionic Systems.,2007,1,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas1.html#BakerS07,https://doi.org/10.1109/TBCAS.2007.893180 +P. Venkata Reddy,A New Antispoofing Approach for Biometric Devices.,2008,2,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas2.html#ReddyKRM08,https://doi.org/10.1109/TBCAS.2008.2003432 +Jagdish Nayayan Pandey,A Fully Integrated RF-Powered Contact Lens With a Single Element Display.,2010,4,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas4.html#PandeyLLMPO10,https://doi.org/10.1109/TBCAS.2010.2081989 +Milad Zamani,A 1.55 and#956*W Bio-Impedance Measurement System for Implantable Cardiac Pacemakers in 0.18 and#956*m CMOS.,2018,12,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas12.html#ZamaniRSS18,https://doi.org/10.1109/TBCAS.2017.2776528 +Gian Nicola Angotzi,A Synchronous Neural Recording Platform for Multiple High-Resolution CMOS Probes and Passive Electrode Arrays.,2018,12,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas12.html#AngotziMBMMACB18,https://doi.org/10.1109/TBCAS.2018.2792046 +Vasiliki Giagka,An Implantable Versatile Electrode-Driving ASIC for Chronic Epidural Stimulation in Rats.,2015,9,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas9.html#GiagkaEDD15,https://doi.org/10.1109/TBCAS.2014.2330859 +Lan-Rong Dung,A Wireless Narrowband Imaging Chip for Capsule Endoscope.,2010,4,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas4.html#DungW10,https://doi.org/10.1109/TBCAS.2010.2079932 +Zeng Cheng,A Low-Power Gateable Vernier Ring Oscillator Time-to-Digital Converter for Biomedical Imaging Applications.,2016,10,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas10.html#ChengDP16,https://doi.org/10.1109/TBCAS.2015.2434957 +Tom Torfs,Two-Dimensional Multi-Channel Neural Probes With Electronic Depth Control.,2011,5,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas5.html#TorfsAEAYSHUDFKPPRHN11,https://doi.org/10.1109/TBCAS.2011.2162840 +Viswam Nathan,Design Principles and Dynamic Front End Reconfiguration for Low Noise EEG Acquisition With Finger Based Dry Electrodes.,2015,9,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas9.html#NathanJ15,https://doi.org/10.1109/TBCAS.2015.2471080 +Hong Chen 0002,Low-Power Circuits for the Bidirectional Wireless Monitoring System of the Orthopedic Implants.,2009,3,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas3.html#ChenLHCJZW09,https://doi.org/10.1109/TBCAS.2009.2026283 +Kejia Li,Onboard Tagging for Real-Time Quality Assessment of Photoplethysmograms Acquired by a Wireless Reflectance Pulse Oximeter.,2012,6,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas6.html#LiWN12,https://doi.org/10.1109/TBCAS.2011.2157822 +Bayan Nasri,Hybrid CMOS-Graphene Sensor Array for Subsecond Dopamine Detection.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#NasriWAYGSKS17,https://doi.org/10.1109/TBCAS.2017.2778048 +Ming-Chun Huang,A Self-Calibrating Radar Sensor System for Measuring Vital Signs.,2016,10,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas10.html#HuangLXGLS16,https://doi.org/10.1109/TBCAS.2015.2411732 +Jiawei Xu,A $160~\mu {\rm W}$ 8-Channel Active Electrode System for EEG Monitoring.,2011,5,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas5.html#XuYGHMH11,https://doi.org/10.1109/TBCAS.2011.2170985 +Biswarup Mukherjee,A Multi-Electrode Electric Field Based Sensing System For Ophthalmic Anesthesia Training.,2015,9,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas9.html#MukherjeeGS15,https://doi.org/10.1109/TBCAS.2014.2356205 +William D. Hunt,Clues From Digital Radio Regarding Biomolecular Recognition.,2007,1,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas1.html#HuntLSE07,https://doi.org/10.1109/TBCAS.2007.893192 +Philipp Häfliger,Guest Editorial ISCAS 2016 Special Issue.,2017,11,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas11.html#HafligerCW17,https://doi.org/10.1109/TBCAS.2017.2746538 +Saeed Haghiri,Complete Neuron-Astrocyte Interaction Model: Digital Multiplierless Design and Networking Mechanism.,2017,11,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas11.html#HaghiriAS17,https://doi.org/10.1109/TBCAS.2016.2583920 +Woradorn Wattanapanitch,An Energy-Efficient Micropower Neural Recording Amplifier.,2007,1,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas1.html#WattanapanitchFS07,https://doi.org/10.1109/TBCAS.2007.907868 +Abhronil Sengupta,Proposal for an All-Spin Artificial Neural Network: Emulating Neural and Synaptic Functionalities Through Domain Wall Motion in Ferromagnets.,2016,10,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas10.html#SenguptaS016,https://doi.org/10.1109/TBCAS.2016.2525823 +Sagar Venkatesh Gubbi,Adaptive Pulse Width Control and Sampling for Low Power Pulse Oximetry.,2015,9,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas9.html#GubbiA15,https://doi.org/10.1109/TBCAS.2014.2326712 +Hansraj Bhamra,A Subcubic Millimeter Wireless Implantable Intraocular Pressure Monitor Microsystem.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#BhamraTHYSI17,https://doi.org/10.1109/TBCAS.2017.2755596 +Fei Xu,A Wireless Capsule System With ASIC for Monitoring the Physiological Signals of the Human Gastrointestinal Tract.,2014,8,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas8.html#XuYZLGL14,https://doi.org/10.1109/TBCAS.2013.2296933 +Phil Corbishley,A Nanopower Bandpass Filter for Detection of an Acoustic Signal in a Wearable Breathing Detector.,2007,1,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas1.html#CorbishleyR07,https://doi.org/10.1109/TBCAS.2007.913129 +Chih-Han Chen,PERSON - Personalized Expert Recommendation System for Optimized Nutrition.,2018,12,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas12.html#ChenKSST18,https://doi.org/10.1109/TBCAS.2017.2760504 +Lei Wang 0029,A Wireless Biomedical Signal Interface System-on-Chip for Body Sensor Networks.,2010,4,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas4.html#WangYHZYNC10,https://doi.org/10.1109/TBCAS.2009.2038228 +Bruce Rae,A Vertically Integrated CMOS Microsystem for Time-Resolved Fluorescence Analysis.,2010,4,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas4.html#RaeYMGRGGDH10,https://doi.org/10.1109/TBCAS.2010.2077290 +Ravi Shrestha,Automated Adaptive Brightness in Wireless Capsule Endoscopy Using Image Segmentation and Sigmoid Function.,2016,10,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas10.html#ShresthaMHZW16,https://doi.org/10.1109/TBCAS.2016.2546838 +Jonathan J. Y. Teo,Synthetic Biology: A Unifying View and Review Using Analog Circuits.,2015,9,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas9.html#TeoWS15,https://doi.org/10.1109/TBCAS.2015.2461446 +Andrew M. Carek,Robust Sensing of Distal Pulse Waveforms on a Modified Weighing Scale for Ubiquitous Pulse Transit Time Measurement.,2017,11,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas11.html#CarekI17,https://doi.org/10.1109/TBCAS.2017.2683801 +Constantine Sideris,Design and Implementation of an Integrated Magnetic Spectrometer for Multiplexed Biosensing.,2013,7,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas7.html#SiderisH13,https://doi.org/10.1109/TBCAS.2013.2297514 +Guillermo Dufort,Wireless EEG System Achieving High Throughput and Reduced Energy Consumption Through Lossless and Near-Lossless Compression.,2018,12,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas12.html#DufortFLMOORSS18,https://doi.org/10.1109/TBCAS.2017.2779324 +Fei Zhang,QRS Detection Based on Multiscale Mathematical Morphology for Wearable ECG Devices in Body Area Networks.,2009,3,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas3.html#ZhangL09,https://doi.org/10.1109/TBCAS.2009.2020093 +Anne Humeau-Heurtier,Guest Editorial Special Issue on Cardiovascular System Monitoring and Therapy: Innovative Technologies and Internet of Things.,2018,12,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas12.html#Humeau-Heurtier18,https://doi.org/10.1109/TBCAS.2018.2861340 +Takashi Tokuda,Development and in vivo Demonstration of CMOS-Based Multichip Retinal Stimulator With Simultaneous Multisite Stimulation Capability.,2010,4,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas4.html#TokudaTSNSNFO10,https://doi.org/10.1109/TBCAS.2010.2078508 +Yi-Kai Lo,A Fully Integrated Wireless SoC for Motor Function Recovery After Spinal Cord Injury.,2017,11,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas11.html#LoKCKWCMZCGEL17,https://doi.org/10.1109/TBCAS.2017.2679441 +Adriana Nicholson Vest,Design and Testing of a Transcutaneous RF Recharging System for a Fetal Micropacemaker.,2017,11,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas11.html#VestZHNBCL17,https://doi.org/10.1109/TBCAS.2016.2620805 +Xiao-Na Huang,Understanding Robust Adaptation Dynamics of Gene Regulatory Network.,2017,11,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas11.html#HuangR17,https://doi.org/10.1109/TBCAS.2017.2696521 +Huiyan Wang,Shape-Preserving Preprocessing for Human Pulse Signals Based on Adaptive Parameter Determination.,2014,8,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas8.html#WangWDF14,https://doi.org/10.1109/TBCAS.2013.2279103 +Tim Morrison,A 0.5 ${\rm cm}^{3}$ Four-Channel 1.1 mW Wireless Biosignal Interface With 20 m Range.,2014,8,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas8.html#MorrisonNWBO14,https://doi.org/10.1109/TBCAS.2013.2260337 +Temesghen Tekeste,A Nanowatt Real-Time Cardiac Autonomic Neuropathy Detector.,2018,12,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas12.html#TekesteSMKJI18,https://doi.org/10.1109/TBCAS.2018.2833624 +Mohamed Amine Miled,"Correction to ""Dielectrophoresis-Based Integrated Lab-on-Chip for Nano and Micro-Particles Manipulation and Capacitive Detection"".",2013,7,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas7.html#MiledMS13,https://doi.org/10.1109/TBCAS.2013.2271727 +Ping-Tzan Huang,Integrating Flexible Sensor and Virtual Self-Organizing DC Grid Model With Cloud Computing for Blood Leakage Detection During Hemodialysis.,2017,11,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas11.html#HuangJLCL17,https://doi.org/10.1109/TBCAS.2017.2695798 +Meng Cao,Spread Spectrum Photoacoustic Tomography With Image Optimization.,2017,11,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas11.html#CaoFYXWC17,https://doi.org/10.1109/TBCAS.2016.2593470 +Sahar Ayazian,A Photovoltaic-Driven and Energy-Autonomous CMOS Implantable Sensor.,2012,6,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas6.html#AyazianASH12,https://doi.org/10.1109/TBCAS.2011.2179030 +Joseph N. Y. Aziz,Brain-Silicon Interface for High-Resolution in vitro Neural Recording.,2007,1,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas1.html#AzizGBDC07,https://doi.org/10.1109/TBCAS.2007.893181 +Zohre Mohammadi-Arfa,DENA: A Configurable Microarchitecture and Design Flow for Biomedical DNA-Based Logic Design.,2017,11,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas11.html#Mohammadi-ArfaJ17,https://doi.org/10.1109/TBCAS.2017.2708747 +Elliott Schires,Vital Sign Monitoring Through the Back Using an UWB Impulse Radar With Body Coupled Antennas.,2018,12,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas12.html#SchiresGL18,https://doi.org/10.1109/TBCAS.2018.2799322 +Yan Lu 0002,A 13.56 MHz CMOS Active Rectifier With Switched-Offset and Compensated Biasing for Biomedical Wireless Power Transfer Systems.,2014,8,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas8.html#LuK14,https://doi.org/10.1109/TBCAS.2013.2270177 +Carlos Zamarreño-Ramos,Multicasting Mesh AER: A Scalable Assembly Approach for Reconfigurable Neuromorphic Structured AER Systems. Application to ConvNets.,2013,7,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas7.html#Zamarreno-RamosLSL13,https://doi.org/10.1109/TBCAS.2012.2195725 +Julia Pettine,Power-Efficient Oscillator-Based Readout Circuit for Multichannel Resonant Volatile Sensors.,2012,6,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas6.html#PettinePMVCH12,https://doi.org/10.1109/TBCAS.2012.2230629 +Shuenn-Yuh Lee,A Low-Power 13.56 MHz RF Front-End Circuit for Implantable Biomedical Devices.,2013,7,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas7.html#LeeHHLK13,https://doi.org/10.1109/TBCAS.2012.2212276 +Md. Shamsul Arefin,A MEMS Interface IC With Low-Power and Wide-Range Frequency-to-Voltage Converter for Biomedical Applications.,2016,10,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas10.html#ArefinRY16,https://doi.org/10.1109/TBCAS.2015.2435256 +Mohammad Takhti,A 10 MHz Read-Out Chain for Electrical Impedance Tomography.,2018,12,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas12.html#TakhtiTO18,https://doi.org/10.1109/TBCAS.2017.2778288 +Meysam Zargham,Fully Integrated On-Chip Coil in 0.13 andmicro*m CMOS for Wireless Power Transfer Through Biological Media.,2015,9,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas9.html#ZarghamG15,https://doi.org/10.1109/TBCAS.2014.2328318 +Marcin Marzencki,Diastolic Timed Vibrator: Noninvasive Pre-Hospitalization Treatment of Acute Coronary Ischemia.,2014,8,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas8.html#MarzenckiKKTKM14,https://doi.org/10.1109/TBCAS.2013.2270181 +Maziyar Khorasani,High-Voltage CMOS Controller for Microfluidics.,2009,3,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas3.html#KhorasaniBBBE09,https://doi.org/10.1109/TBCAS.2009.2012868 +Sinduja Seshadri,"Correction to ""Compact Nonlinear Model of an Implantable Electrode Array for Spinal Cord Stimulation"".",2018,12,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas12.html#SeshadriS18,https://doi.org/10.1109/TBCAS.2018.2833481 +Seong-Jin Kim,Label-Free CMOS Bio Sensor With On-Chip Noise Reduction Scheme for Real-Time Quantitative Monitoring of Biomolecules.,2012,6,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas6.html#KimY12,https://doi.org/10.1109/TBCAS.2011.2172992 +Daniel Teichmann,SensInDenT - Noncontact Sensors Integrated Into Dental Treatment Units.,2017,11,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas11.html#TeichmannTWWLW17,https://doi.org/10.1109/TBCAS.2016.2574922 +Yi-Kai Lo,A Fully-Integrated High-Compliance Voltage SoC for Epi-Retinal and Neural Prostheses.,2013,7,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas7.html#LoCGL13,https://doi.org/10.1109/TBCAS.2013.2297695 +Sung-Jin Jung,Low-Power Low-Noise Amplifier Using Attenuation-Adaptive Noise Control for Ultrasound Imaging Systems.,2017,11,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas11.html#JungHK17,https://doi.org/10.1109/TBCAS.2016.2552246 +Cheikh Latyr Fall,A Multimodal Adaptive Wireless Control Interface for People With Upper-Body Disabilities.,2018,12,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas12.html#FallQBLCGG18,https://doi.org/10.1109/TBCAS.2018.2810256 +James Alwyn Cameron Patterson,Ratiometric Artifact Reduction in Low Power Reflective Photoplethysmography.,2011,5,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas5.html#PattersonY11,https://doi.org/10.1109/TBCAS.2011.2161304 +Manel Gasulla,"Correction to ""Feedback Analysis and Design of RF Power Links for Low-Power Bionic Systems"".",2014,8,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas8.html#GasullaABS14,https://doi.org/10.1109/TBCAS.2013.2287033 +Hakan Toreyin,A Low-Power ASIC Signal Processor for a Vestibular Prosthesis.,2016,10,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas10.html#ToreyinB16,https://doi.org/10.1109/TBCAS.2015.2495341 +Marco Carminati,Miniaturized Impedance Flow Cytometer: Design Rules and Integrated Readout.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#CarminatiFVVS17,https://doi.org/10.1109/TBCAS.2017.2748158 +Hung-Wei Chiu,Pain Control on Demand Based on Pulsed Radio-Frequency Stimulation of the Dorsal Root Ganglion Using a Batteryless Implantable CMOS SoC.,2010,4,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas4.html#ChiuLLHLFLWL10,https://doi.org/10.1109/TBCAS.2010.2081668 +Chio-In Ieong,A 0.83-µ*W QRS Detection Processor Using Quadratic Spline Wavelet Transform for Wireless ECG Acquisition in 0.35-µ*m CMOS.,2012,6,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas6.html#IeongMLDVMPWM12,https://doi.org/10.1109/TBCAS.2012.2188798 +Daniel Rairigh,CMOS Baseline Tracking and Cancellation Instrumentation for Nanoparticle-Coated Chemiresistors.,2009,3,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas3.html#RairighWXZM09,https://doi.org/10.1109/TBCAS.2009.2023511 +Mahmood Khayatzadeh,A 0.7-V 17.4-µ*W 3-Lead Wireless ECG SoC.,2013,7,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas7.html#KhayatzadehZTLL13,https://doi.org/10.1109/TBCAS.2013.2279398 +Zipeng Li,Droplet Size-Aware High-Level Synthesis for Micro-Electrode-Dot-Array Digital Microfluidic Biochips.,2017,11,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas11.html#LiLYCHL17,https://doi.org/10.1109/TBCAS.2017.2653808 +Francesca Sapuppo,Bio-Microfluidics Real-Time Monitoring Using CNN Technology.,2008,2,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas2.html#SapuppoIB08,https://doi.org/10.1109/TBCAS.2008.925642 +Nan M. Jokerst,Progress in Chip-Scale Photonic Sensing.,2009,3,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas3.html#JokerstLPRDBT09,https://doi.org/10.1109/TBCAS.2009.2020693 +Yoon-Jee Kim,A Single-Chip 64-Channel Ultrasound RX-Beamformer Including Analog Front-End and an LUT for Non-Uniform ADC-Sample-Clock Generation.,2017,11,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas11.html#KimCUCBSJKSP17,https://doi.org/10.1109/TBCAS.2016.2571739 +Dai Jiang,A Vestibular Prosthesis With Highly-Isolated Parallel Multichannel Stimulation.,2015,9,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas9.html#JiangCD15,https://doi.org/10.1109/TBCAS.2014.2323310 +Arindam Basu,Neural Dynamics in Reconfigurable Silicon.,2010,4,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas4.html#BasuRPKBH10,https://doi.org/10.1109/TBCAS.2010.2055157 +Shlomit Edri,The RNA Polymerase Flow Model of Gene Transcription.,2014,8,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas8.html#EdriGCT14,https://doi.org/10.1109/TBCAS.2013.2290063 +Hangue Park,A Wireless Magnetoresistive Sensing System for an Intraoral Tongue-Computer Interface.,2012,6,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas6.html#ParkKLKBGG12,https://doi.org/10.1109/TBCAS.2012.2227962 +Long Yan,A 13 and1*A Analog Signal Processing IC for Accurate Recognition of Multiple Intra-Cardiac Signals.,2013,7,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas7.html#YanPMKJKOHTHY13,https://doi.org/10.1109/TBCAS.2013.2297353 +Kaveh Mohammad,Differential Ring Oscillator Based Capacitance Sensor for Microfluidic Applications.,2017,11,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas11.html#MohammadT17,https://doi.org/10.1109/TBCAS.2016.2616346 +Ning Liu 0003,An Enclosed Paper Microfluidic Chip as a Sample Preconcentrator Based on Ion Concentration Polarization.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#LiuPL17,https://doi.org/10.1109/TBCAS.2017.2727064 +José Rui Custódio,A 1.2-V 165-µ* W 0.29-mm2 Multibit Sigma-Delta ADC for Hearing Aids Using Nonlinear DACs and With Over 91 dB Dynamic-Range.,2013,7,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas7.html#CustodioGPOB13,https://doi.org/10.1109/TBCAS.2012.2203819 +Shaoguang Huang,A Reconfigurable Sound Wave Decomposition Filterbank for Hearing Aids Based on Nonlinear Transformation.,2016,10,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas10.html#HuangTMW16,https://doi.org/10.1109/TBCAS.2015.2436916 +Arezu Bagheri,Low-Frequency Noise and Offset Rejection in DC-Coupled Neural Amplifiers: A Review and Digitally-Assisted Design Tutorial.,2017,11,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas11.html#BagheriSVG17,https://doi.org/10.1109/TBCAS.2016.2539518 +Xinkai Chen,A Wireless Capsule Endoscope System With Low-Power Controlling and Processing ASIC.,2009,3,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas3.html#ChenZZLQJW09,https://doi.org/10.1109/TBCAS.2008.2006493 +Ethan K. Murphy,Signal-to-Noise Ratio Analysis of a Phase-Sensitive Voltmeter for Electrical Impedance Tomography.,2017,11,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas11.html#MurphyTSHO17,https://doi.org/10.1109/TBCAS.2016.2601692 +Alison Burdett,Guest Editorial Selected Papers From the 2016 IEEE International Solid-State Circuits Conference.,2017,11,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas11.html#BurdettMG17,https://doi.org/10.1109/TBCAS.2017.2696139 +Tse-An Chen,Novel 10-Bit Impedance-to-Digital Converter for Electrochemical Impedance Spectroscopy Measurements.,2017,11,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas11.html#ChenWWDL17,https://doi.org/10.1109/TBCAS.2016.2592511 +Mohohlo Samuel Tsoeu,Fully Parallel Electrical Impedance Tomography Using Code Division Multiplexing.,2016,10,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas10.html#TsoeuI16,https://doi.org/10.1109/TBCAS.2015.2487321 +Hao Liu 0008,Modeling and Optimization of Class-E Amplifier at Subnominal Condition in a Wireless Power Transfer System for Biomedical Implants.,2017,11,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas11.html#LiuSF17,https://doi.org/10.1109/TBCAS.2016.2538320 +Saeid Hashemi,A High-Efficiency Low-Voltage CMOS Rectifier for Harvesting Energy in Implantable Devices.,2012,6,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas6.html#HashemiSS12,https://doi.org/10.1109/TBCAS.2011.2177267 +Roman Kusche,A Multichannel Real-Time Bioimpedance Measurement Device for Pulse Wave Analysis.,2018,12,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas12.html#KuscheKR18,https://doi.org/10.1109/TBCAS.2018.2812222 +Yingke Gu,Design of Endoscopic Capsule With Multiple Cameras.,2015,9,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas9.html#GuXLSWYZW15,https://doi.org/10.1109/TBCAS.2014.2359012 +Damiano Patron,On the Use of Knitted Antennas and Inductively Coupled RFID Tags for Wearable Applications.,2016,10,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas10.html#PatronMKFDAD16,https://doi.org/10.1109/TBCAS.2016.2518871 +Sangkuk Jeon,A Parasitic Insensitive Catheter-Based Capacitive Force Sensor for Cardiovascular Diagnosis.,2018,12,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas12.html#JeonLHRC18,https://doi.org/10.1109/TBCAS.2018.2832172 +Jinhong Guo,Design of a Fluidic Circuit-Based Microcytometer for Circulating Tumor Cell Detection and Enumeration.,2014,8,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas8.html#GuoLMXCK14,https://doi.org/10.1109/TBCAS.2013.2275091 +Woon Tiong Ang,Design and Implementation of Therapeutic Ultrasound Generating Circuit for Dental Tissue Formation and Tooth-Root Healing.,2010,4,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas4.html#AngSHETC10,https://doi.org/10.1109/TBCAS.2009.2034635 +Thushari Dissanayake,Experimental Study of a TET System for Implantable Biomedical Devices.,2009,3,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas3.html#DissanayakeHMBTBB09,https://doi.org/10.1109/TBCAS.2009.2031539 +Shintaro Izumi,Normally Off ECG SoC With Non-Volatile MCU and Noise Tolerant Heartbeat Detector.,2015,9,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas9.html#IzumiYNYNNKKMFF15,https://doi.org/10.1109/TBCAS.2015.2452906 +Omer Cogal,An Insect Eye Inspired Miniaturized Multi-Camera System for Endoscopic Imaging.,2017,11,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas11.html#CogalL17,https://doi.org/10.1109/TBCAS.2016.2547388 +Lin Li 0008,Epoxy Chip-in-Carrier Integration and Screen-Printed Metalization for Multichannel Microfluidic Lab-on-CMOS Microsystems.,2018,12,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas12.html#LiYM18,https://doi.org/10.1109/TBCAS.2018.2797063 +Anatoly Yakovlev,An 11 andmicro*W Sub-pJ/bit Reconfigurable Transceiver for mm-Sized Wireless Implants.,2016,10,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas10.html#YakovlevJP16,https://doi.org/10.1109/TBCAS.2014.2371031 +Peican Zhu,Stochastic Multiple-Valued Gene Networks.,2014,8,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas8.html#ZhuH14,https://doi.org/10.1109/TBCAS.2013.2291398 +T. A. Khoa Nguyen,A Real-Time Research Platform to Study Vestibular Implants With Gyroscopic Inputs in Vestibular Deficient Subjects.,2014,8,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas8.html#NguyenRDPGFM14,https://doi.org/10.1109/TBCAS.2013.2290089 +Tor Sverre Lande,Editorial - IEEE Transactions on Biomedical Circuits and Systems.,2007,1,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas1.html#LandeB07,https://doi.org/10.1109/TBCAS.2007.894349 +Richard Piffer Soares de Campos,Characterization of Off-Stoichiometry Microfluidic Devices for Bioanalytical Applications.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#CamposCAS17,https://doi.org/10.1109/TBCAS.2017.2759510 +Xiao Liu 0001,Active Books: The Design of an Implantable Stimulator That Minimizes Cable Count Using Integrated Circuits Very Close to Electrodes.,2012,6,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas6.html#LiuDVJD12,https://doi.org/10.1109/TBCAS.2011.2174360 +Christoph Pokorny,A Tactile Stimulation Device for EEG Measurements in Clinical Use.,2014,8,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas8.html#PokornyBM14,https://doi.org/10.1109/TBCAS.2013.2270176 +Maryam Masnadi-Shirazi,Time-Varying Causal Inference From Phosphoproteomic Measurements in Macrophage Cells.,2014,8,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas8.html#Masnadi-ShiraziMS14,https://doi.org/10.1109/TBCAS.2013.2288035 +Thanks Marisa,Pseudo Asynchronous Level Crossing adc for ecg Signal Acquisition.,2017,11,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas11.html#MarisaNHWVGJ17,https://doi.org/10.1109/TBCAS.2016.2619858 +Saul Rodriguez Duenas,A Batteryless Sensor ASIC for Implantable Bio-Impedance Applications.,2016,10,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas10.html#DuenasOWR16,https://doi.org/10.1109/TBCAS.2015.2456242 +Shuenn-Yuh Lee,Wireless Front-End With Power Management for an Implantable Cardiac Microstimulator.,2012,6,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas6.html#LeeHY12,https://doi.org/10.1109/TBCAS.2011.2162409 +Junwen Luo,Optogenetics in Silicon: A Neural Processor for Predicting Optically Active Neural Networks.,2017,11,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas11.html#LuoNEDSAYD17,https://doi.org/10.1109/TBCAS.2016.2571339 +Yasser Rezaeiyan,Mixed-Signal IC With Pulse Width Modulation Wireless Telemetry for Implantable Cardiac Pacemakers in 0.18-λ6*m CMOS.,2018,12,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas12.html#RezaeiyanZSS18,https://doi.org/10.1109/TBCAS.2018.2819021 +Zhengming Fu,An Address-Event Fall Detector for Assisted Living Applications.,2008,2,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas2.html#FuDLC08,https://doi.org/10.1109/TBCAS.2008.924448 +Bor-Sen Chen,Robust Engineered Circuit Design Principles for Stochastic Biochemical Networks With Parameter Uncertainties and Disturbances.,2008,2,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas2.html#ChenC08,https://doi.org/10.1109/TBCAS.2008.926728 +Ping Si,A Frequency Control Method for Regulating Wireless Power to Implantable Devices.,2008,2,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas2.html#SiHMB08,https://doi.org/10.1109/TBCAS.2008.918284 +Alireza Karimi-Bidhendi,CMOS Ultralow Power Brain Signal Acquisition Front-Ends: Design and Human Testing.,2017,11,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas11.html#Karimi-Bidhendi17,https://doi.org/10.1109/TBCAS.2017.2723607 +Libin George,A 0.04 mm2 Buck-Boost DC-DC Converter for Biomedical Implants Using Adaptive Gain and Discrete Frequency Scaling Control.,2016,10,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas10.html#GeorgeGLH16,https://doi.org/10.1109/TBCAS.2015.2480035 +Shantanu Chakrabartty,Guest Editorial - ISCAS 2010 Special Issue.,2011,5,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas5.html#ChakrabarttyO11,https://doi.org/10.1109/TBCAS.2011.2145050 +Peter J. Langlois,A Sinusoidal Current Driver With an Extended Frequency Range and Multifrequency Operation for Bioimpedance Applications.,2015,9,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas9.html#LangloisND15,https://doi.org/10.1109/TBCAS.2014.2332136 +Stefano Sapienza,On Integration and Validation of a Very Low Complexity ATC UWB System for Muscle Force Transmission.,2016,10,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas10.html#SapienzaCRBD16,https://doi.org/10.1109/TBCAS.2015.2416918 +Yih-Chun Cheng,Matrix-Inversion-Free Compressed Sensing With Variable Orthogonal Multi-Matching Pursuit Based on Prior Information for ECG Signals.,2016,10,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas10.html#ChengTH16,https://doi.org/10.1109/TBCAS.2016.2539244 +Yuwen Sun,Programmable Neural Processing on a Smartdust for Brain-Computer Interfaces.,2010,4,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas4.html#SunHOC10,https://doi.org/10.1109/TBCAS.2010.2049743 +Oskar Andersson,A 290 mV Sub-V𝕋 ASIC for Real-Time Atrial Fibrillation Detection.,2015,9,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas9.html#AnderssonCSR15,https://doi.org/10.1109/TBCAS.2014.2354054 +Rossella Fontana,An Innovative Wireless Endoscopic Capsule With Spherical Shape.,2017,11,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas11.html#FontanaMCTVVM17,https://doi.org/10.1109/TBCAS.2016.2560800 +Kok-Hin Teng,A 400 MHz Wireless Neural Signal Processing IC With 625* On-Chip Data Reduction and Reconfigurable BFSK/QPSK Transmitter Based on Sequential Injection Locking.,2017,11,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas11.html#TengWLYH17,https://doi.org/10.1109/TBCAS.2017.2650200 +Xilin Liu,The PennBMBI: Design of a General Purpose Wireless Brain-Machine-Brain Interface System.,2015,9,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas9.html#LiuZSRLS15,https://doi.org/10.1109/TBCAS.2015.2392555 +Hao-Yen Tang,Miniaturizing Ultrasonic System for Portable Health Care and Fitness.,2015,9,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas9.html#TangSSLMAB15,https://doi.org/10.1109/TBCAS.2015.2508439 +Saeed Afshar,Turn Down That Noise: Synaptic Encoding of Afferent SNR in a Single Spiking Neuron.,2015,9,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas9.html#AfsharGTTSCH15,https://doi.org/10.1109/TBCAS.2015.2416391 +Robert Mill,A Model of Stimulus-Specific Adaptation in Neuromorphic Analog VLSI.,2011,5,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas5.html#MillSID11,https://doi.org/10.1109/TBCAS.2011.2163155 +Xiaoyu Zhang,An Energy-Efficient ASIC for Wireless Body Sensor Networks in Medical Applications.,2010,4,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas4.html#ZhangJZZWC10,https://doi.org/10.1109/TBCAS.2009.2031627 +Anil Kumar RamRakhyani,On the Design of Efficient Multi-Coil Telemetry System for Biomedical Implants.,2013,7,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas7.html#RamRakhyaniL13,https://doi.org/10.1109/TBCAS.2012.2192115 +Juan Antonio Leñero-Bardallo,Bio-Inspired Asynchronous Pixel Event Tricolor Vision Sensor.,2014,8,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas8.html#Lenero-BardalloBH14,https://doi.org/10.1109/TBCAS.2013.2271382 +Yang Liu,Factor Graph-Based Biomolecular Circuit Analysis for Designing Forward Error Correcting Biosensors.,2009,3,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas3.html#LiuC09,https://doi.org/10.1109/TBCAS.2009.2014247 +David Tyndall,A High-Throughput Time-Resolved Mini-Silicon Photomultiplier With Embedded Fluorescence Lifetime Estimation in 0.13 andmicro*m CMOS.,2012,6,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas6.html#TyndallRLAJRH12,https://doi.org/10.1109/TBCAS.2012.2222639 +A. Ozan Bicen,Efficient Sampling of Bacterial Signal Transduction for Detection of Pulse-Amplitude Modulated Molecular Signals.,2015,9,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas9.html#BicenAAF15,https://doi.org/10.1109/TBCAS.2015.2465182 +Yindar Chuo,Sensor Layer of a Multiparameter Single-Point Integrated System.,2009,3,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas3.html#ChuoK09,https://doi.org/10.1109/TBCAS.2009.2021769 +Lei Yao,CMOS Imaging of Temperature Effects on Pin-Printed Xerogel Sensor Microarrays.,2011,5,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas5.html#YaoYCB11,https://doi.org/10.1109/TBCAS.2010.2089793 +Benedikt Schlecker,Single-Cycle-PLL Detection for Real-Time FM-AFM Applications.,2014,8,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas8.html#SchleckerDEOFA14,https://doi.org/10.1109/TBCAS.2014.2307696 +Mingu Kang,In-Memory Computing Architectures for Sparse Distributed Memory.,2016,10,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas10.html#KangS16,https://doi.org/10.1109/TBCAS.2016.2545402 +Derek Ho,CMOS Tunable-Wavelength Multi-Color Photogate Sensor.,2013,7,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas7.html#HoNKGG13a,https://doi.org/10.1109/TBCAS.2013.2243727 +Isha Gupta,Improving Detection Accuracy of Memristor-Based Bio-Signal Sensing Platform.,2017,11,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas11.html#GuptaSKP17,https://doi.org/10.1109/TBCAS.2016.2580499 +Nicolas Ollivier-Henry,Design and Characteristics of a Multichannel Front-End ASIC Using Current-Mode CSA for Small-Animal PET Imaging.,2011,5,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas5.html#Ollivier-HenryGFMBHHCH11,https://doi.org/10.1109/TBCAS.2010.2095847 +Nasim Nikkhoo,Rapid Detection of E. coli Bacteria Using Potassium-Sensitive FETs in CMOS.,2013,7,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas7.html#NikkhooGM13,https://doi.org/10.1109/TBCAS.2013.2276013 +Jingna Mao,A Self-Adaptive Capacitive Compensation Technique for Body Channel Communication.,2017,11,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas11.html#MaoYLZ17,https://doi.org/10.1109/TBCAS.2017.2695058 +Daniel H. Johansen,Cryogenic Preamplifiers for Magnetic Resonance Imaging.,2018,12,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas12.html#JohansenSPJZA18,https://doi.org/10.1109/TBCAS.2017.2776256 +Kenji Shiba,Design and Development of Low-Loss Transformer for Powering Small Implantable Medical Devices.,2010,4,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas4.html#ShibaMH10,https://doi.org/10.1109/TBCAS.2009.2034364 +Yue Huang,A Protein-Based Electrochemical Biosensor Array Platform for Integrated Microsystems.,2013,7,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas7.html#HuangLHWM13,https://doi.org/10.1109/TBCAS.2012.2195661 +Dukju Ahn,Optimal Design of Wireless Power Transmission Links for Millimeter-Sized Biomedical Implants.,2016,10,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas10.html#AhnG16,https://doi.org/10.1109/TBCAS.2014.2370794 +Sang-Soo Je,A Compact and Low-Cost MEMS Loudspeaker for Digital Hearing Aids.,2009,3,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas3.html#JeRDKKBKC09,https://doi.org/10.1109/TBCAS.2009.2026429 +Ermis Koutsos,A Muscle Fibre Conduction Velocity Tracking ASIC for Local Fatigue Monitoring.,2016,10,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas10.html#KoutsosCG16,https://doi.org/10.1109/TBCAS.2016.2520563 +Chia-Hao Hsu,One-Time-Implantable Spinal Cord Stimulation System Prototype.,2011,5,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas5.html#HsuTHW11,https://doi.org/10.1109/TBCAS.2011.2157152 +William Anthony Smith,Exploiting Electrocorticographic Spectral Characteristics for Optimized Signal Chain Design: A 1.08 Analog Front End With Reduced ADC Resolution Requirements.,2016,10,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas10.html#SmithMFSO16,https://doi.org/10.1109/TBCAS.2016.2518923 +Rene Harder,Smart Multi-Frequency Bioelectrical Impedance Spectrometer for BIA and BIVA Applications.,2016,10,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas10.html#HarderDWBPB16,https://doi.org/10.1109/TBCAS.2015.2502538 +Bor-Sen Chen,On the Robust Circuit Design Schemes of Biochemical Networks: Steady-State Approach.,2007,1,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas1.html#ChenWWL07,https://doi.org/10.1109/TBCAS.2007.907060 +Meenupriya Swaminathan,Multi-Path Model and Sensitivity Analysis for Galvanic Coupled Intra-Body Communication Through Layered Tissue.,2016,10,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas10.html#SwaminathanCPMS16,https://doi.org/10.1109/TBCAS.2015.2412548 +Reza Sham Dilmaghani,Wireless Sensor Networks for Monitoring Physiological Signals of Multiple Patients.,2011,5,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas5.html#DilmaghaniBGCW11,https://doi.org/10.1109/TBCAS.2011.2114661 +Yang Zhao 0001,Digital Microfluidic Logic Gates and Their Application to Built-in Self-Test of Lab-on-Chip.,2010,4,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas4.html#ZhaoC10,https://doi.org/10.1109/TBCAS.2010.2048567 +Guoqing Fu,A CMOS Luminescence Intensity and Lifetime Dual Sensor Based on Multicycle Charge Modulation.,2018,12,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas12.html#FuS18,https://doi.org/10.1109/TBCAS.2018.2824305 +Genevieve Massicotte,A CMOS Amperometric System for Multi-Neurotransmitter Detection.,2016,10,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas10.html#MassicotteCMS16,https://doi.org/10.1109/TBCAS.2015.2490225 +Amirreza Yousefzadeh,On Multiple AER Handshaking Channels Over High-Speed Bit-Serial Bidirectional LVDS Links With Flow-Control and Clock-Correction on Commercial FPGAs for Scalable Neuromorphic Systems.,2017,11,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas11.html#YousefzadehJILR17,https://doi.org/10.1109/TBCAS.2017.2717341 +Maide Bucolo,Guest Editorial Special Issue on Microfluidics Engineering for Point-of-Care Diagnostics.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#BucoloGIC17,https://doi.org/10.1109/TBCAS.2017.2779279 +Kriangkrai Sooksood,An Active Approach for Charge Balancing in Functional Electrical Stimulation.,2010,4,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas4.html#SooksoodSO10,https://doi.org/10.1109/TBCAS.2010.2040277 +Jonas Flueckiger,Microfluidic System for Controlled Gelation of a Thermally Reversible Hydrogel.,2009,3,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas3.html#FlueckigerC09,https://doi.org/10.1109/TBCAS.2009.2021657 +Uei-Ming Jow,Optimization of Data Coils in a Multiband Wireless Link for Neuroprosthetic Implantable Devices.,2010,4,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas4.html#JowG10,https://doi.org/10.1109/TBCAS.2010.2049491 +Andrius Solosenko,Photoplethysmography-Based Method for Automatic Detection of Premature Ventricular Contractions.,2015,9,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas9.html#SolosenkoPM15,https://doi.org/10.1109/TBCAS.2015.2477437 +Robert Rieger,A Switched-Capacitor Front-End for Velocity-Selective ENG Recording.,2013,7,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas7.html#RiegerT13,https://doi.org/10.1109/TBCAS.2012.2226719 +Yongjia Li,An ECG Recording Front-End With Continuous-Time Level-Crossing Sampling.,2014,8,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas8.html#LiMYZS14,https://doi.org/10.1109/TBCAS.2014.2359183 +Paolo Livi,Compact Voltage and Current Stimulation Buffer for High-Density Microelectrode Arrays.,2010,4,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas4.html#LiviHFBH10,https://doi.org/10.1109/TBCAS.2010.2080676 +Vinit Singh,On the Thermal Elevation of a 60-Electrode Epiretinal Prosthesis for the Blind.,2008,2,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas2.html#SinghRCMDAGWHL08,https://doi.org/10.1109/TBCAS.2008.2003430 +R. Jacob Vogelstein,A Silicon Central Pattern Generator Controls Locomotion in Vivo.,2008,2,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas2.html#VogelsteinTGEM08,https://doi.org/10.1109/TBCAS.2008.2001867 +Matthias Steffen,Mobile Noncontact Monitoring of Heart and Lung Activity.,2007,1,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas1.html#SteffenAL07,https://doi.org/10.1109/TBCAS.2008.915633 +Mohammad M. Ahmadi,A Wireless-Implantable Microsystem for Continuous Blood Glucose Monitoring.,2009,3,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas3.html#AhmadiJ09,https://doi.org/10.1109/TBCAS.2009.2016844 +Justin K. Valley,Optoelectronic Tweezers as a Tool for Parallel Single-Cell Manipulation and Stimulation.,2009,3,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas3.html#ValleyOHNJW09,https://doi.org/10.1109/TBCAS.2009.2031329 +Yusheng Fu,Blood Cholesterol Monitoring With Smartphone as Miniaturized Electrochemical Analyzer for Cardiovascular Disease Prevention.,2018,12,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas12.html#FuG18,https://doi.org/10.1109/TBCAS.2018.2845856 +Omkar Dandekar,FPGA-Accelerated Deformable Image Registration for Improved Target-Delineation During CT-Guided Interventions.,2007,1,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas1.html#DandekarS07,https://doi.org/10.1109/TBCAS.2007.909023 +Hung Tat Chen,Spike Latency Coding in Biologically Inspired Microelectronic Nose.,2011,5,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas5.html#ChenNBLM11,https://doi.org/10.1109/TBCAS.2010.2075928 +George Jing Guo,A 200-Channel Area-Power-Efficient Chemical and Electrical Dual-Mode Acquisition IC for the Study of Neurodegenerative Diseases.,2016,10,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas10.html#GuoNYLC16,https://doi.org/10.1109/TBCAS.2015.2468052 +William Hoiles,Modelling the Bioelectronic Interface in Engineered Tethered Membranes: From Biosensing to Electroporation.,2015,9,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas9.html#HoilesKC15,https://doi.org/10.1109/TBCAS.2014.2357420 +Young-Jae Min,Design of Wavelet-Based ECG Detector for Implantable Cardiac Pacemakers.,2013,7,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas7.html#MinKKKPK13,https://doi.org/10.1109/TBCAS.2012.2229463 +Mehdi Kiani,Design and Optimization of a 3-Coil Inductive Link for Efficient Wireless Power Transmission.,2011,5,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas5.html#KianiJG11,https://doi.org/10.1109/TBCAS.2011.2158431 +Weeseong Seo,Diaper-Embedded Urinary Tract Infection Monitoring Sensor Module Powered by Urine-Activated Batteries.,2017,11,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas11.html#SeoYTZJ17,https://doi.org/10.1109/TBCAS.2017.2654421 +Bo Wen,A Silicon Cochlea With Active Coupling.,2009,3,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas3.html#WenB09,https://doi.org/10.1109/TBCAS.2009.2027127 +Bruno Do Valle,An Area and Power-Efficient Analog Li-Ion Battery Charger Circuit.,2011,5,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas5.html#ValleWS11,https://doi.org/10.1109/TBCAS.2011.2106125 +S. Abdollah Mirbozorgi,Robust Wireless Power Transmission to mm-Sized Free-Floating Distributed Implants.,2017,11,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas11.html#MirbozorgiYG17,https://doi.org/10.1109/TBCAS.2017.2663358 +Jingna Mao,An Investigation on Ground Electrodes of Capacitive Coupling Human Body Communication.,2017,11,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas11.html#MaoYZ17,https://doi.org/10.1109/TBCAS.2017.2683532 +Qin Wang 0005,Pressure-Aware Control Layer Optimization for Flow-Based Microfluidic Biochips.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#WangXZYHLSC17,https://doi.org/10.1109/TBCAS.2017.2766210 +Carlos Christoffersen,Class-DE Ultrasound Transducer Driver for HIFU Therapy.,2016,10,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas10.html#ChristoffersenW16,https://doi.org/10.1109/TBCAS.2015.2406119 +Amirreza Yousefzadeh,Active Perception With Dynamic Vision Sensors. Minimum Saccades With Optimum Recognition.,2018,12,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas12.html#YousefzadehOSL18,https://doi.org/10.1109/TBCAS.2018.2834428 +Ebrahim Ghafar-Zadeh,A Hybrid Microfluidic/CMOS Capacitive Sensor Dedicated to Lab-on-Chip Applications.,2007,1,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas1.html#Ghafar-ZadehS07,https://doi.org/10.1109/TBCAS.2008.915641 +Jun Zhang 0022,High-Throughput Separation of White Blood Cells From Whole Blood Using Inertial Microfluidics.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#ZhangYSYZXTNL17,https://doi.org/10.1109/TBCAS.2017.2735440 +Akram Alomainy,Numerical and Experimental Evaluation of a Compact Sensor Antenna for Healthcare Devices.,2007,1,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas1.html#AlomainyHP07,https://doi.org/10.1109/TBCAS.2007.913127 +Jongwoo Lee,A Tunable Biquad Switched-Capacitor Amplifier-Filter for Neural Recording.,2010,4,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas4.html#LeeJK10,https://doi.org/10.1109/TBCAS.2010.2066272 +István A. Bogdán,Peptide Mass Fingerprinting Using Field-Programmable Gate Arrays.,2009,3,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas3.html#BogdanCB09,https://doi.org/10.1109/TBCAS.2008.2010945 +Mark H. Jones,Scaling of Electrode-Electrolyte Interface Model Parameters In Phosphate Buffered Saline.,2015,9,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas9.html#JonesS15,https://doi.org/10.1109/TBCAS.2014.2333759 +Margarita B. Kopniczky,Multilevel Regulation and Translational Switches in Synthetic Biology.,2015,9,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas9.html#KopniczkyMF15,https://doi.org/10.1109/TBCAS.2015.2451707 +S. Abdollah Mirbozorgi,A Wirelessly-Powered Homecage With Segmented Copper Foils and Closed-Loop Power Control.,2016,10,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas10.html#MirbozorgiJCG16,https://doi.org/10.1109/TBCAS.2016.2577705 +An Hu,CMOS Optoelectronic Lock-In Amplifier With Integrated Phototransistor Array.,2010,4,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas4.html#HuC10,https://doi.org/10.1109/TBCAS.2010.2051438 +Sung Sik Woo,A Cytomorphic Chip for Quantitative Modeling of Fundamental Bio-Molecular Circuits.,2015,9,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas9.html#WooKS15,https://doi.org/10.1109/TBCAS.2015.2446431 +Esther Rodríguez-Villegas,A Low-Power Wide-Range I-V Converter for Amperometric Sensing Applications.,2009,3,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas3.html#Rodriguez-Villegas09,https://doi.org/10.1109/TBCAS.2009.2032095 +David Boinagrov,Photovoltaic Pixels for Neural Stimulation: Circuit Models and Performance.,2016,10,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas10.html#BoinagrovLGKMGH16,https://doi.org/10.1109/TBCAS.2014.2376528 +Hiroshi Ando,Wireless Multichannel Neural Recording With a 128-Mbps UWB Transmitter for an Implantable Brain-Machine Interfaces.,2016,10,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas10.html#AndoTYMHS16,https://doi.org/10.1109/TBCAS.2016.2514522 +Shiwei Wang,A Bio-Realistic Analog CMOS Cochlea Filter With High Tunability and Ultra-Steep Roll-Off.,2015,9,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas9.html#WangKHCS15,https://doi.org/10.1109/TBCAS.2014.2328321 +Yingxue Wang,Active Processing of Spatio-Temporal Input Patterns in Silicon Dendrites.,2013,7,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas7.html#WangL13,https://doi.org/10.1109/TBCAS.2012.2199487 +Tor Sverre Lande,Editorial.,2007,1,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas1.html#LandeB07a,https://doi.org/10.1109/TBCAS.2007.911145 +Saber Moradi,An Event-Based Neural Network Architecture With an Asynchronous Programmable Synaptic Memory.,2014,8,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas8.html#MoradiI14,https://doi.org/10.1109/TBCAS.2013.2255873 +Gert Cauwenberghs,Editorial.,2011,5,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas5.html#CauwenberghsE11,https://doi.org/10.1109/TBCAS.2011.2105010 +Daniel A. Friedrichs,A New Dual Current-Mode Controller Improves Power Regulation in Electrosurgical Generators.,2012,6,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas6.html#FriedrichsEG12,https://doi.org/10.1109/TBCAS.2011.2159859 +A. B. M. Sayeed Ud Doulah,Wavelet Domain Feature Extraction Scheme Based on Dominant Motor Unit Action Potential of EMG Signal for Neuromuscular Disease Classification.,2014,8,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas8.html#DoulahFZA14,https://doi.org/10.1109/TBCAS.2014.2309252 +Weiran Cai,Neuronal Synapse as a Memristor: Modeling Pair- and Triplet-Based STDP Rule.,2015,9,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas9.html#CaiET15,https://doi.org/10.1109/TBCAS.2014.2318012 +Harry C. Powell Jr.,On-Body Inertial Sensing and Signal Processing for Clinical Assessment of Tremor.,2009,3,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas3.html#PowellHL09,https://doi.org/10.1109/TBCAS.2008.2006622 +Elena I. Gaura,Leveraging Knowledge From Physiological Data: On-Body Heat Stress Risk Prediction With Sensor Networks.,2013,7,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas7.html#GauraKB13,https://doi.org/10.1109/TBCAS.2013.2254485 +Dong Han,A 0.45 V 100-Channel Neural-Recording IC With Sub-and1*W/Channel Consumption in 0.18 and1*m CMOS.,2013,7,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas7.html#HanZRDJ13,https://doi.org/10.1109/TBCAS.2014.2298860 +Ming Yin,A 100-Channel Hermetically Sealed Implantable Device for Chronic Wireless Neurosensing Applications.,2013,7,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas7.html#YinBAPN13,https://doi.org/10.1109/TBCAS.2013.2255874 +David S. Freedman,An Analog VLSI Implementation of the Inner Hair Cell and Auditory Nerve Using a Dual AGC Model.,2014,8,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas8.html#FreedmanCDKH14,https://doi.org/10.1109/TBCAS.2013.2259165 +Tor Sverre Lande,Editorial.,2008,2,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas2.html#LandeB08b,https://doi.org/10.1109/TBCAS.2008.2007331 +Chengkun Cui,A Multimodal Framework Based on Integration of Cortical and Muscular Activities for Decoding Human Intentions About Lower Limb Motions.,2017,11,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas11.html#CuiBHZZ17,https://doi.org/10.1109/TBCAS.2017.2699189 +Carlos Zamarreño-Ramos,A 1.5 ns OFF/ON Switching-Time Voltage-Mode LVDS Driver/Receiver Pair for Asynchronous AER Bit-Serial Chip Grid Links With Up to 40 Times Event-Rate Dependent Power Savings.,2013,7,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas7.html#Zamarreno-RamosKSSL13,https://doi.org/10.1109/TBCAS.2012.2232925 +Kea-Tiong Tang,Guest Editorial - ISCAS 2013 Special Issue.,2014,8,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas8.html#TangW14,https://doi.org/10.1109/TBCAS.2014.2323855 +Hiroshi Fuketa,1 andmicro*m-Thickness Ultra-Flexible and High Electrode-Density Surface Electromyogram Measurement Sheet With 2 V Organic Transistors for Prosthetic Hand Control.,2014,8,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas8.html#FuketaYSIYMISSTSS14,https://doi.org/10.1109/TBCAS.2014.2314135 +Deming Zhang,All Spin Artificial Neural Networks Based on Compound Spintronic Synapse and Neuron.,2016,10,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas10.html#ZhangZCWPZZKWZ16,https://doi.org/10.1109/TBCAS.2016.2533798 +Christoph Brüser,Monte-Carlo Simulation and Automated Test Bench for Developing a Multichannel NIR-Based Vital-Signs Monitor.,2015,9,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas9.html#BruserSWLW15,https://doi.org/10.1109/TBCAS.2014.2340703 +Chin-Teng Lin,Wireless and Wearable EEG System for Evaluating Driver Vigilance.,2014,8,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas8.html#LinCHTLCK14,https://doi.org/10.1109/TBCAS.2014.2316224 +Keng Hoong Wee,An Articulatory Silicon Vocal Tract for Speech and Hearing Prostheses.,2011,5,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas5.html#WeeTS11,https://doi.org/10.1109/TBCAS.2011.2159858 +Marco Crescentini,A Distributed Amplifier System for Bilayer Lipid Membrane (BLM) Arrays With Noise and Individual Offset Cancellation.,2015,9,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas9.html#CrescentiniTBSP15,https://doi.org/10.1109/TBCAS.2014.2346402 +Juan Pedro Dominguez-Morales,Deep Neural Networks for the Recognition and Classification of Heart Murmurs Using Neuromorphic Auditory Sensors.,2018,12,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas12.html#Dominguez-Morales18,https://doi.org/10.1109/TBCAS.2017.2751545 +Timir Datta-Chaudhuri,System-on-Chip Considerations for Heterogeneous Integration of CMOS and Fluidic Bio-Interfaces.,2016,10,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas10.html#Datta-Chaudhuri16,https://doi.org/10.1109/TBCAS.2016.2522402 +Alistair Lee McEwan,Code-Division-Multiplexed Electrical Impedance Tomography Spectroscopy.,2009,3,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas3.html#McEwanTSH09,https://doi.org/10.1109/TBCAS.2009.2032159 +Timothy G. Constandinou,A Partial-Current-Steering Biphasic Stimulation Driver for Vestibular Prostheses.,2008,2,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas2.html#ConstandinouGT08,https://doi.org/10.1109/TBCAS.2008.927238 +Mingquan Yuan,Towards an Integrated QR Code Biosensor: Light-Driven Sample Acquisition and Bacterial Cellulose Paper Substrate.,2018,12,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas12.html#YuanJLSC18,https://doi.org/10.1109/TBCAS.2018.2801566 +Yuhao Wang,Data-Driven Sampling Matrix Boolean Optimization for Energy-Efficient Biomedical Signal Acquisition by Compressive Sensing.,2017,11,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas11.html#WangLXRY17,https://doi.org/10.1109/TBCAS.2016.2597310 +Justin Kok Soon Tan,Continuous Separation of White Blood Cells From Whole Blood Using Viscoelastic Effects.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#TanPLK17,https://doi.org/10.1109/TBCAS.2017.2748232 +Cathy M. McGeough,Camera Phone-Based Quantitative Analysis of C-Reactive Protein ELISA.,2013,7,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas7.html#McGeoughO13,https://doi.org/10.1109/TBCAS.2012.2234122 +Alexander Sun,A Multi-Technique Reconfigurable Electrochemical Biosensor: Enabling Personal Health Monitoring in Mobile Devices.,2016,10,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas10.html#SunVH16,https://doi.org/10.1109/TBCAS.2016.2586504 +Pei Wang,Duplication and Divergence Effect on Network Motifs in Undirected Bio-Molecular Networks.,2015,9,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas9.html#WangLYL15,https://doi.org/10.1109/TBCAS.2014.2343620 +Khandaker A. Al Mamun,A Glucose Biosensor Using CMOS Potentiostat and Vertically Aligned Carbon Nanofibers.,2016,10,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas10.html#MamunIHM16,https://doi.org/10.1109/TBCAS.2016.2557787 +Yuanming Suo,Energy-Efficient Multi-Mode Compressed Sensing System for Implantable Neural Recordings.,2014,8,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas8.html#SuoZXCET14,https://doi.org/10.1109/TBCAS.2014.2359180 +Xiaodong Li,A Wearable Detector for Simultaneous Finger Joint Motion Measurement.,2018,12,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas12.html#LiWSWLH18,https://doi.org/10.1109/TBCAS.2018.2810182 +Federico Nicolas Guerrero,A Two-Wired Ultra-High Input Impedance Active Electrode.,2018,12,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas12.html#GuerreroS18,https://doi.org/10.1109/TBCAS.2018.2796581 +Pantelis Georgiou,A Silicon Pancreatic Beta Cell for Diabetes.,2007,1,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas1.html#GeorgiouT07,https://doi.org/10.1109/TBCAS.2007.893178 +Carlos Zamarreño-Ramos,A 0.35~µ*m Sub-ns Wake-up Time ON-OFF Switchable LVDS Driver-Receiver Chip I/O Pad Pair for Rate-Dependent Power Saving in AER Bit-Serial Links.,2012,6,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas6.html#Zamarreno-RamosSL12,https://doi.org/10.1109/TBCAS.2012.2186136 +Vaibhav Garg,Spiking Neuron Computation With the Time Machine.,2012,6,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas6.html#GargSH12,https://doi.org/10.1109/TBCAS.2011.2179544 +Mahsa Shoaran,Compact Low-Power Cortical Recording Architecture for Compressive Multichannel Data Acquisition.,2014,8,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas8.html#ShoaranKPVS14,https://doi.org/10.1109/TBCAS.2014.2304582 +Tao Xu 0002,Parallel Scan-Like Test and Multiple-Defect Diagnosis for Digital Microfluidic Biochips.,2007,1,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas1.html#XuC07,https://doi.org/10.1109/TBCAS.2007.909025 +Alexander F. Russell,Parameter Estimation of a Spiking Silicon Neuron.,2012,6,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas6.html#RussellMMNE12,https://doi.org/10.1109/TBCAS.2011.2182650 +Arezu Bagheri,Massively-Parallel Neuromonitoring and Neurostimulation Rodent Headset With Nanotextured Flexible Microelectrodes.,2013,7,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas7.html#BagheriGSVMSG13,https://doi.org/10.1109/TBCAS.2013.2281772 +Gabriel Gagnon-Turcotte,A Wireless Headstage for Combined Optogenetics and Multichannel Electrophysiological Recording.,2017,11,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas11.html#Gagnon-Turcotte17,https://doi.org/10.1109/TBCAS.2016.2547864 +Ugur çilingiroglu,A Zero-Voltage Switching Technique for Minimizing the Current-Source Power of Implanted Stimulators.,2013,7,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas7.html#CilingirogluI13,https://doi.org/10.1109/TBCAS.2012.2225621 +Arindam Basu,Small-Signal Neural Models and Their Applications.,2012,6,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas6.html#Basu12,https://doi.org/10.1109/TBCAS.2011.2158314 +Pikul Sarkar,An Ultra-Linear Piezo-Floating-Gate Strain-Gauge for Self-Powered Measurement of Quasi-Static-Strain.,2013,7,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas7.html#SarkarHC13,https://doi.org/10.1109/TBCAS.2012.2220764 +Taehwan Roh,A Wearable Neuro-Feedback System With EEG-Based Mental Status Monitoring and Transcranial Electrical Stimulation.,2014,8,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas8.html#RohSCSY14,https://doi.org/10.1109/TBCAS.2014.2384017 +Mohammad Soltani,Conditional Moment Closure Schemes for Studying Stochastic Dynamics of Genetic Circuits.,2015,9,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas9.html#SoltaniGS15,https://doi.org/10.1109/TBCAS.2015.2453158 +Tor Sverre Lande,Editorial.,2007,1,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas1.html#LandeB07b,https://doi.org/10.1109/TBCAS.2007.914980 +Yu-Po Lin,An Inductive Power and Data Telemetry Subsystem With Fast Transient Low Dropout Regulator for Biomedical Implants.,2016,10,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas10.html#LinT16,https://doi.org/10.1109/TBCAS.2015.2447526 +Isha Gupta,Sub 100 nW Volatile Nano-Metal-Oxide Memristor as Synaptic-Like Encoder of Neuronal Spikes.,2018,12,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas12.html#GuptaSKZVP18,https://doi.org/10.1109/TBCAS.2018.2797939 +Adrian Zurbuchen,Towards Batteryless Cardiac Implantable Electronic Devices - The Swiss Way.,2017,11,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas11.html#ZurbuchenHPBSJH17,https://doi.org/10.1109/TBCAS.2016.2580658 +Mehrdad A. Ghanad,A 30 $\mu\text{W}$ Remotely Powered Local Temperature Monitoring Implantable System.,2017,11,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas11.html#GhanadGD17,https://doi.org/10.1109/TBCAS.2016.2574895 +Taiyun Chi,A Multi-Modality CMOS Sensor Array for Cell-Based Assay and Drug Screening.,2015,9,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas9.html#ChiPBHSZSMW15,https://doi.org/10.1109/TBCAS.2015.2504984 +Zhicong Luo,A High-Voltage-Tolerant and Precise Charge-Balanced Neuro-Stimulator in Low Voltage CMOS Process.,2016,10,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas10.html#LuoK16,https://doi.org/10.1109/TBCAS.2015.2512443 +Yilda Irizarry-Valle,An Astrocyte Neuromorphic Circuit That Influences Neuronal Phase Synchrony.,2015,9,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas9.html#Irizarry-ValleP15,https://doi.org/10.1109/TBCAS.2015.2417580 +Sarah Ostadabbas,Guest Editorial - Special Issue on Selected Papers From IEEE BioCAS 2015.,2016,10,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas10.html#OstadabbasDB16,https://doi.org/10.1109/TBCAS.2016.2618038 +Jian-Yu Hsieh,A Remotely-Controlled Locomotive IC Driven by Electrolytic Bubbles and Wireless Powering.,2014,8,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas8.html#HsiehKHHTWCWL14,https://doi.org/10.1109/TBCAS.2014.2382341 +Thomas Niederhauser,A Baseline Wander Tracking System for Artifact Rejection in Long-Term Electrocardiography.,2016,10,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas10.html#NiederhauserMKH16,https://doi.org/10.1109/TBCAS.2015.2395997 +Zhuo Wang 0001,Realizing Low-Energy Classification Systems by Implementing Matrix Multiplication Directly Within an ADC.,2015,9,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas9.html#WangZV15,https://doi.org/10.1109/TBCAS.2015.2500101 +Lennart Leicht,Closed-Loop Control of Humidification for Artifact Reduction in Capacitive ECG Measurements.,2017,11,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas11.html#LeichtEWLT17,https://doi.org/10.1109/TBCAS.2016.2613097 +Sanjeev Kumar Jain,An Energy Efficient ECG Signal Processor Detecting Cardiovascular Diseases on Smartphone.,2017,11,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas11.html#JainB17,https://doi.org/10.1109/TBCAS.2016.2592382 +Matteo Contaldo,A 2.4-GHz BAW-Based Transceiver for Wireless Body Area Networks.,2010,4,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas4.html#ContaldoBRCRE10,https://doi.org/10.1109/TBCAS.2010.2081363 +Jun Tan,A 2.4 GHz ULP Reconfigurable Asymmetric Transceiver for Single-Chip Wireless Neural Recording IC.,2014,8,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas8.html#TanLHL14,https://doi.org/10.1109/TBCAS.2013.2290533 +Stewart J. Thomas,A Battery-Free Multichannel Digital Neural/EMG Telemetry System for Flying Insects.,2012,6,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas6.html#ThomasHLR12,https://doi.org/10.1109/TBCAS.2012.2222881 +Arindam Basu,Dynamics and Bifurcations in a Silicon Neuron.,2010,4,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas4.html#BasuPH10,https://doi.org/10.1109/TBCAS.2010.2051224 +Feng Lin 0004,SleepSense: A Noncontact and Cost-Effective Sleep Monitoring System.,2017,11,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas11.html#LinZSWLGLX17,https://doi.org/10.1109/TBCAS.2016.2541680 +Insoo Kim,CMOS Ultrasound Transceiver Chip for High-Resolution Ultrasonic Imaging Systems.,2009,3,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas3.html#KimKGTJTC09,https://doi.org/10.1109/TBCAS.2009.2023912 +Shaojie Su,Monocular Vision- and IMU-Based System for Prosthesis Pose Estimation During Total Hip Replacement Surgery.,2017,11,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas11.html#SuZWC17,https://doi.org/10.1109/TBCAS.2016.2643626 +Howard Tang,A 1.33 andmicro*W 8.02-ENOB 100 kS/s Successive Approximation ADC With Supply Reduction Technique for Implantable Retinal Prosthesis.,2014,8,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas8.html#TangSCS14,https://doi.org/10.1109/TBCAS.2014.2300186 +Ida Laila Ahmad,Tapered Microfluidic for Continuous Micro-Object Separation Based on Hydrodynamic Principle.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#AhmadATNH17,https://doi.org/10.1109/TBCAS.2017.2764118 +Roger Figueras,A 70-mu m Pitch 8-mu W Self-Biased Charge-Integration Active Pixel for Digital Mammography.,2011,5,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas5.html#FiguerasSTS11,https://doi.org/10.1109/TBCAS.2011.2151192 +Kazuo Komamura,Micro-Magnetocardiography System With a Single-Chip SQUID Magnetometer Array for QT Analysis and Diagnosis of Myocardial Injury in Small Animals.,2008,2,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas2.html#KomamuraAMKHU08,https://doi.org/10.1109/TBCAS.2008.2003979 +Mehdi Noormohammadi Khiarak,A Wireless Fiber Photometry System Based on a High-Precision CMOS Biosensor With Embedded Continuous-Time and#931*Γ6* Modulation.,2018,12,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas12.html#KhiarakMBMPKG18,https://doi.org/10.1109/TBCAS.2018.2817200 +Yunseog Hong,A Label-Free Biosensing Platform Using a PLL Circuit and Biotin-Streptavidin Binding System.,2015,9,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas9.html#HongLKKYY15,https://doi.org/10.1109/TBCAS.2014.2349074 +Lei Yao,CMOS Conductometric System for Growth Monitoring and Sensing of Bacteria.,2011,5,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas5.html#YaoLTKAHCM11,https://doi.org/10.1109/TBCAS.2010.2089794 +Diederik Paul Moeys,A Sensitive Dynamic and Active Pixel Vision Sensor for Color or Neural Imaging Applications.,2018,12,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas12.html#MoeysCLBLVBTHD18,https://doi.org/10.1109/TBCAS.2017.2759783 +Alison Burdett,Guest Editorial - Selected Papers From the 2017 IEEE International Solid-State Circuits Conference.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#BurdettMGG17,https://doi.org/10.1109/TBCAS.2017.2779253 +Manuel Monge,A Fully Intraocular High-Density Self-Calibrating Epiretinal Prosthesis.,2013,7,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas7.html#MongeRNCZWHTE13,https://doi.org/10.1109/TBCAS.2014.2298334 +Hwasuk Cho,An On-Chip Learning Neuromorphic Autoencoder With Current-Mode Transposable Memory Read and Virtual Lookup Table.,2018,12,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas12.html#ChoSSKPS18,https://doi.org/10.1109/TBCAS.2017.2762002 +Jaewook Kim,Fast and Precise Emulation of Stochastic Biochemical Reaction Networks With Amplified Thermal Noise in Silicon Chips.,2018,12,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas12.html#KimWS18,https://doi.org/10.1109/TBCAS.2017.2786306 +Andrea Patane,Pareto Optimal Design for Synthetic Biology.,2015,9,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas9.html#PataneSCCN15,https://doi.org/10.1109/TBCAS.2015.2467214 +Abhishek Roy,A 6.45 and#956*W Self-Powered SoC With Integrated Energy-Harvesting Power Management and ULP Asymmetric Radios for Portable Biomedical Systems.,2015,9,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas9.html#RoyKYCGLKBCFORS15,https://doi.org/10.1109/TBCAS.2015.2498643 +Qianbin Zhao,Double-Mode Microparticle Manipulation by Tunable Secondary Flow in Microchannel With Arc-Shaped Groove Arrays.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#ZhaoYYZDAL17,https://doi.org/10.1109/TBCAS.2017.2722012 +Muhammad Tariqus Salam,A Novel Low-Power-Implantable Epileptic Seizure-Onset Detector.,2011,5,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas5.html#SalamSN11,https://doi.org/10.1109/TBCAS.2011.2157153 +Alison Burdett,Guest Editorial - Selected Papers from the 2015 IEEE International Solid-State Circuits Conference.,2015,9,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas9.html#BurdettHG15,https://doi.org/10.1109/TBCAS.2016.2514858 +Ji-Jon Sit,A Low-Power Blocking-Capacitor-Free Charge-Balanced Electrode-Stimulator Chip With Less Than 6 nA DC Error for 1-mA Full-Scale Stimulation.,2007,1,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas1.html#SitS07,https://doi.org/10.1109/TBCAS.2007.911631 +Benjamin Eilebrecht,Impedance Measurement System for Determination of Capacitive Electrode Coupling.,2013,7,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas7.html#EilebrechtWPWL13,https://doi.org/10.1109/TBCAS.2013.2237905 +Nan Li,Reconfigurable Bioimpedance Emulation System for Electrical Impedance Tomography System Validation.,2013,7,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas7.html#LiXZXSX13,https://doi.org/10.1109/TBCAS.2012.2224110 +Kartikeya Murari,A CMOS In-Pixel CTIA High-Sensitivity Fluorescence Imager.,2011,5,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas5.html#MurariETC11,https://doi.org/10.1109/TBCAS.2011.2114660 +Liang Guo,A PDMS-Based Integrated Stretchable Microelectrode Array (isMEA) for Neural and Muscular Surface Interfacing.,2013,7,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas7.html#GuoGLTND13,https://doi.org/10.1109/TBCAS.2012.2192932 +Ahmed Ibrahim,A Figure-of-Merit for Design and Optimization of Inductive Power Transmission Links for Millimeter-Sized Biomedical Implants.,2016,10,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas10.html#IbrahimK16,https://doi.org/10.1109/TBCAS.2016.2515541 +Ghazal Nabovati,A New Fully Differential CMOS Capacitance to Digital Converter for Lab-on-Chip Applications.,2015,9,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas9.html#NabovatiGMAAS15,https://doi.org/10.1109/TBCAS.2014.2336596 +Enzo Mastinu,Embedded System for Prosthetic Control Using Implanted Neuromuscular Interfaces Accessed Via an Osseointegrated Implant.,2017,11,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas11.html#MastinuDBHO17,https://doi.org/10.1109/TBCAS.2017.2694710 +Thomas F. Clayton,An Implementation of a Spike-Response Model With Escape Noise Using an Avalanche Diode.,2011,5,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas5.html#ClaytonCRSCHLM11,https://doi.org/10.1109/TBCAS.2010.2100392 +Tara Julia Hamilton,An Active 2-D Silicon Cochlea.,2008,2,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas2.html#HamiltonJST08,https://doi.org/10.1109/TBCAS.2008.921602 +Simeon A. Bamford,Spike-Timing-Dependent Plasticity With Weight Dependence Evoked From Physical Constraints.,2012,6,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas6.html#BamfordMW12,https://doi.org/10.1109/TBCAS.2012.2184285 +Sébastien Ethier,Exponential Current Pulse Generation for Efficient Very High-Impedance Multisite Stimulation.,2011,5,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas5.html#EthierS11,https://doi.org/10.1109/TBCAS.2010.2073707 +Michele Riva,Acoustic Analog Front End for Proton Range Detection in Hadron Therapy.,2018,12,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas12.html#RivaVBM18,https://doi.org/10.1109/TBCAS.2018.2828703 +Sung Soo Kim,Conveying Tactile Feedback in Sensorized Hand Neuroprostheses Using a Biofidelic Model of Mechanotransduction.,2009,3,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas3.html#KimSVARB09,https://doi.org/10.1109/TBCAS.2009.2032396 +Gregoire Surrel,Online Obstructive Sleep Apnea Detection on Medical Wearable Sensors.,2018,12,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas12.html#SurrelARMA18,https://doi.org/10.1109/TBCAS.2018.2824659 +Brian Goldstein,CMOS Low Current Measurement System for Biomedical Applications.,2012,6,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas6.html#GoldsteinKXVC12,https://doi.org/10.1109/TBCAS.2011.2182512 +Anshuman Bhuyan,Integrated Circuits for Volumetric Ultrasound Imaging With 2-D CMUT Arrays.,2013,7,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas7.html#BhuyanCLWNOK13,https://doi.org/10.1109/TBCAS.2014.2298197 +Tao Xu 0002,Fault Modeling and Functional Test Methods for Digital Microfluidic Biochips.,2009,3,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas3.html#XuC09,https://doi.org/10.1109/TBCAS.2009.2022173 +Achille Donida,A Circadian and Cardiac Intraocular Pressure Sensor for Smart Implantable Lens.,2015,9,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas9.html#DonidaDCSPOB15,https://doi.org/10.1109/TBCAS.2015.2501320 +Khaled Al-Ashmouny,A 4 andmicro*W/Ch Analog Front-End Module With Moderate Inversion and Power-Scalable Sampling Operation for 3-D Neural Microsystems.,2012,6,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas6.html#Al-AshmounyCY12,https://doi.org/10.1109/TBCAS.2012.2218105 +Kanokwan Limnuson,Real-Time Stimulus Artifact Rejection Via Template Subtraction.,2014,8,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas8.html#LimnusonLCM14,https://doi.org/10.1109/TBCAS.2013.2274574 +Hourieh Attarzadeh,A Low-Power High-Dynamic-Range Receiver System for In-Probe 3-D Ultrasonic Imaging.,2017,11,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas11.html#AttarzadehXY17,https://doi.org/10.1109/TBCAS.2017.2716836 +Meisam Honarvar Nazari,CMOS Neurotransmitter Microarray: 96-Channel Integrated Potentiostat With On-Die Microsensors.,2013,7,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas7.html#NazariMLGG13,https://doi.org/10.1109/TBCAS.2012.2203597 +Christian Mayr,A Biological-Realtime Neuromorphic System in 28 nm CMOS Using Low-Leakage Switched Capacitor Circuits.,2016,10,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas10.html#MayrPNHSHES16,https://doi.org/10.1109/TBCAS.2014.2379294 +Nicole M. Nelson,Handheld Fluorometers for Lab-on-a-Chip Applications.,2009,3,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas3.html#NelsonSDPSA09,https://doi.org/10.1109/TBCAS.2008.2006494 +Marco Mercuri,Frequency-Tracking CW Doppler Radar Solving Small-Angle Approximation and Null Point Issues in Non-Contact Vital Signs Monitoring.,2017,11,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas11.html#MercuriLLTBH17,https://doi.org/10.1109/TBCAS.2016.2647560 +Kea-Tiong Tang,A Low-Power Electronic Nose Signal-Processing Chip for a Portable Artificial Olfaction System.,2011,5,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas5.html#TangCCHS11,https://doi.org/10.1109/TBCAS.2011.2116786 +Marco Crescentini,Noise Limits of CMOS Current Interfaces for Biosensors: A Review.,2014,8,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas8.html#CrescentiniBCT14,https://doi.org/10.1109/TBCAS.2013.2262998 +Hao Jiang,A Low-Frequency Versatile Wireless Power Transfer Technology for Biomedical Implants.,2013,7,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas7.html#JiangZLCLSFHHR13,https://doi.org/10.1109/TBCAS.2012.2220763 +Anil Kumar Ram Rakhyani,Design and Optimization of Resonance-Based Efficient Wireless Power Delivery Systems for Biomedical Implants.,2011,5,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas5.html#RakhyaniMC11,https://doi.org/10.1109/TBCAS.2010.2072782 +Antonella Verbeni,An Innovative Adaptive Control Strategy for Sensorized Left Ventricular Assist Devices.,2014,8,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas8.html#VerbeniFSTVTD14,https://doi.org/10.1109/TBCAS.2014.2346015 +Chua-Chin Wang,A Mini-Invasive Long-Term Bladder Urine Pressure Measurement ASIC and System.,2008,2,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas2.html#WangHLCHLLW08,https://doi.org/10.1109/TBCAS.2008.921601 +Mohsen Hayati,A Digital Realization of Astrocyte and Neural Glial Interactions.,2016,10,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas10.html#HayatiNHA16,https://doi.org/10.1109/TBCAS.2015.2450837 +Yindar Chuo,Mechanically Flexible Wireless Multisensor Platform for Human Physical Activity and Vitals Monitoring.,2010,4,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas4.html#ChuoMHJTLK10,https://doi.org/10.1109/TBCAS.2010.2052616 +Olav E. Liseth,Power-Efficient Cross-Correlation Beat Detection in Electrocardiogram Analysis Using Bitstreams.,2010,4,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas4.html#LisethMHLW10,https://doi.org/10.1109/TBCAS.2010.2079933 +Gill R. Tsouri,On the Benefits of Creeping Wave Antennas in Reducing Interference Between Neighboring Wireless Body Area Networks.,2017,11,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas11.html#TsouriZV17,https://doi.org/10.1109/TBCAS.2016.2539281 +Ya-Ti Peng,Multimodality Sensor System for Long-Term Sleep Quality Monitoring.,2007,1,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas1.html#PengLSL07,https://doi.org/10.1109/TBCAS.2007.914481 +Sara S. Ghoreishizadeh,A Differential Electrochemical Readout ASIC With Heterogeneous Integration of Bio-Nano Sensors for Amperometric Sensing.,2017,11,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas11.html#GhoreishizadehT17,https://doi.org/10.1109/TBCAS.2017.2733624 +Jinhong Ahn,A Double-Side CMOS-CNT Biosensor Array With Padless Structure for Simple Bare-Die Measurements in a Medical Environment.,2015,9,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas9.html#AhnHP15,https://doi.org/10.1109/TBCAS.2015.2500911 +Bing Keong Li,A MRI Rotary Phased Array Head Coil.,2013,7,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas7.html#LiWC13,https://doi.org/10.1109/TBCAS.2012.2230173 +Yuhwai Tseng,A 0.09 andmicro*W Low Power Front-End Biopotential Amplifier for Biosignal Recording.,2012,6,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas6.html#TsengHKS12,https://doi.org/10.1109/TBCAS.2012.2188029 +Håkon A. Hjortland,CTBV Integrated Impulse Radio Design for Biomedical Applications.,2009,3,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas3.html#HjortlandL09,https://doi.org/10.1109/TBCAS.2009.2014962 +Dongwon Kwon,A 2- and#956* m BiCMOS Rectifier-Free AC-DC Piezoelectric Energy Harvester-Charger IC.,2010,4,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas4.html#KwonR10,https://doi.org/10.1109/TBCAS.2010.2077288 +Haiting Tian,Ultra Storage-Efficient Time Digitizer for Pseudorandom Single Photon Counter Implemented on a Field-Programmable Gate Array.,2010,4,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas4.html#TianFSQZHC10,https://doi.org/10.1109/TBCAS.2009.2027026 +Cristina Boero,New Approaches for Carbon Nanotubes-Based Biosensors and Their Application to Cell Culture Monitoring.,2012,6,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas6.html#BoeroOMC12,https://doi.org/10.1109/TBCAS.2012.2220137 +Aosen Wang,Ultra-Low Power Dynamic Knob in Adaptive Compressed Sensing Towards Biosignal Dynamics.,2016,10,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas10.html#WangLJX16,https://doi.org/10.1109/TBCAS.2015.2497304 +Meysam Zargham,Maximum Achievable Efficiency in Near-Field Coupled Power-Transfer Systems.,2012,6,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas6.html#ZarghamG12,https://doi.org/10.1109/TBCAS.2011.2174794 +Fu-Yu Beverly Chen,Pulse-Width Modulation of Optogenetic Photo-Stimulation Intensity for Application to Full-Implantable Light Sources.,2017,11,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas11.html#ChenBSMMF17,https://doi.org/10.1109/TBCAS.2016.2577042 +Xicai Yue,A Real-Time Multi-Channel Monitoring System for Stem Cell Culture Process.,2008,2,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas2.html#YueDLRYMPC08,https://doi.org/10.1109/TBCAS.2008.925639 +Shuenn-Yuh Lee,Systematic Design and Modeling of a OTA-C Filter for Portable ECG Detection.,2009,3,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas3.html#LeeC09,https://doi.org/10.1109/TBCAS.2008.2007423 +Sara Nazari Asl,Noise Model of Capacitive and Textile Capacitive Noncontact Electrodes for Bioelectric Applications.,2018,12,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas12.html#AslOS18,https://doi.org/10.1109/TBCAS.2018.2832287 +Shanshan Dai,A 155-dB Dynamic Range Current Measurement Front End for Electrochemical Biosensing.,2016,10,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas10.html#DaiPYR16,https://doi.org/10.1109/TBCAS.2016.2612581 +Hong Chen 0002,A Visual-Aided Wireless Monitoring System Design for Total Hip Replacement Surgery.,2015,9,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas9.html#ChenGSZW15,https://doi.org/10.1109/TBCAS.2015.2416253 +Kiseok Song,A Sub-10 nA DC-Balanced Adaptive Stimulator IC With Multi-Modal Sensor for Compact Electro-Acupuncture Stimulation.,2012,6,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas6.html#SongLHCHY12,https://doi.org/10.1109/TBCAS.2012.2232292 +Pyungwoo Yeon,Feasibility Study on Active Back Telemetry and Power Transmission Through an Inductive Link for Millimeter-Sized Biomedical Implants.,2017,11,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas11.html#YeonMLG17,https://doi.org/10.1109/TBCAS.2017.2775638 +Cheng Wang 0009,Molecular Detection for Unconcentrated Gas With ppm Sensitivity Using 220-to-320-GHz Dual-Frequency-Comb Spectrometer in CMOS.,2018,12,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas12.html#WangPWH18,https://doi.org/10.1109/TBCAS.2018.2812818 +Hun Wi,Multi-Frequency Electrical Impedance Tomography System With Automatic Self-Calibration for Long-Term Monitoring.,2014,8,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas8.html#WiSMWO14,https://doi.org/10.1109/TBCAS.2013.2256785 +Ji-Yong Um,An Analog-Digital Hybrid RX Beamformer Chip With Non-Uniform Sampling for Ultrasound Medical Imaging With 2D CMUT Array.,2014,8,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas8.html#UmKCCSKLBKCKSP14,https://doi.org/10.1109/TBCAS.2014.2375958 +Christian Brendle,Electrical Bioimpedance-Controlled Surgical Instrumentation.,2015,9,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas9.html#BrendleRNKRML15,https://doi.org/10.1109/TBCAS.2014.2363211 +Francesco Mazzilli,A 10.5 cm Ultrasound Link for Deep Implanted Medical Devices.,2014,8,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas8.html#MazzilliLD14,https://doi.org/10.1109/TBCAS.2013.2295403 +Benoit Gosselin,A Low-Power Integrated Bioamplifier With Active Low-Frequency Suppression.,2007,1,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas1.html#GosselinSC07,https://doi.org/10.1109/TBCAS.2007.914490 +Yushan Zheng,A Microsystem for Magnetic Immunoassay Based on Planar Microcoil Array.,2016,10,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas10.html#ZhengSHS16,https://doi.org/10.1109/TBCAS.2015.2434618 +Mohammad Rafiqul Haider,Low-Power Low-Voltage Current Readout Circuit for Inductively Powered Implant System.,2010,4,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas4.html#HaiderIMZO10,https://doi.org/10.1109/TBCAS.2010.2042809 +Sverre Brovoll,Time-Lapse Imaging of Human Heart Motion With Switched Array UWB Radar.,2014,8,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas8.html#BrovollBPALH14,https://doi.org/10.1109/TBCAS.2014.2359995 +Stephan T. Koev,A Cantilever Sensor With an Integrated Optical Readout for Detection of Enzymatically Produced Homocysteine.,2009,3,IEEE Trans. Biomed. Circuits and Systems,6,db/journals/tbcas/tbcas3.html#KoevFBG09,https://doi.org/10.1109/TBCAS.2009.2026634 +Shawn K. Kelly,A Power-Efficient Neural Tissue Stimulator With Energy Recovery.,2011,5,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas5.html#KellyW11,https://doi.org/10.1109/TBCAS.2010.2076384 +Tzu-Yun Wang,A Fully Reconfigurable Low-Noise Biopotential Sensing Amplifier With 1.96 Noise Efficiency Factor.,2014,8,IEEE Trans. Biomed. Circuits and Systems,3,db/journals/tbcas/tbcas8.html#WangLTP14,https://doi.org/10.1109/TBCAS.2013.2278659 +Xiaochao Fang,Design and Integration of a High Accuracy Multichannel Analog CMOS Peak Detect and Hold Circuit for APD-Based PET Imaging.,2012,6,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas6.html#FangBHH12,https://doi.org/10.1109/TBCAS.2011.2166909 +Reid R. Harrison,Wireless Neural/EMG Telemetry Systems for Small Freely Moving Animals.,2011,5,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas5.html#HarrisonFCKOLG11,https://doi.org/10.1109/TBCAS.2011.2131140 +Jie Chen,Guest Editorial - ISCAS 2014 Special Issue.,2015,9,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas9.html#ChenGW15,https://doi.org/10.1109/TBCAS.2015.2419139 +Jingna Mao,A Five-Tissue-Layer Human Body Communication Circuit Model Tunable to Individual Characteristics.,2018,12,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas12.html#MaoYLZ18,https://doi.org/10.1109/TBCAS.2018.2798410 +Enver G. Kilinc,A Remotely Powered Implantable Biomedical System With Location Detector.,2015,9,IEEE Trans. Biomed. Circuits and Systems,1,db/journals/tbcas/tbcas9.html#KilincGMD15,https://doi.org/10.1109/TBCAS.2014.2321524 +Kenji Aono,Exploiting Jump-Resonance Hysteresis in Silicon Auditory Front-Ends for Extracting Speaker Discriminative Formant Trajectories.,2013,7,IEEE Trans. Biomed. Circuits and Systems,4,db/journals/tbcas/tbcas7.html#AonoSC13,https://doi.org/10.1109/TBCAS.2012.2218104 +Kuo-Kai Shyu,Development of a Low-Cost FPGA-Based SSVEP BCI Multimedia Control System.,2010,4,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas4.html#ShyuLLLLC10,https://doi.org/10.1109/TBCAS.2010.2042595 +Junming Zhang,A New Method for Automatic Sleep Stage Classification.,2017,11,IEEE Trans. Biomed. Circuits and Systems,5,db/journals/tbcas/tbcas11.html#ZhangW17,https://doi.org/10.1109/TBCAS.2017.2719631 +Mostafa Rahimi Azghadi,A Hybrid CMOS-Memristor Neuromorphic Synapse.,2017,11,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas11.html#AzghadiLAL17,https://doi.org/10.1109/TBCAS.2016.2618351 +Martin Ziegler 0004,Memristive Hebbian Plasticity Model: Device Requirements for the Emulation of Hebbian Plasticity Based on Memristive Devices.,2015,9,IEEE Trans. Biomed. Circuits and Systems,2,db/journals/tbcas/tbcas9.html#0004RHBK15,https://doi.org/10.1109/TBCAS.2015.2410811 +Steven T. Dougherty,One weight ™4*2™4*4 additive codes.,2016,27,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc27.html#DoughertyLY16,https://doi.org/10.1007/s00200-015-0273-4 +Carlisle M. Adams,Designing against a class of algebraic attacks on symmetric block ciphers.,2006,17,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc17.html#Adams06,https://doi.org/10.1007/s00200-006-0194-3 +Jerzy Wasniewski,Editorial introduction to the special issue on computational linear algebra and sparse matrix computations.,2007,18,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc18.html#WasniewskiDMTZ07,https://doi.org/10.1007/s00200-007-0033-1 +Dirk Hachenberger,Function-field codes.,2008,19,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc19.html#HachenbergerNX08,https://doi.org/10.1007/s00200-008-0071-3 +François Boulier,Foreword to the article: Computing representations for radicals of finitely generated differential ideals.,2009,20,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc20.html#Boulier09,https://doi.org/10.1007/s00200-009-0089-1 +Julian Zinn,A polynomial algorithm for uniqueness of normal forms of linear shallow term rewrite systems.,2010,21,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc21.html#ZinnV10,https://doi.org/10.1007/s00200-010-0133-1 +Arturas Dubickas,Polynomials Irreducible by Eisenstein's Criterion.,2003,14,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc14.html#Dubickas03,https://doi.org/10.1007/s00200-003-0131-7 +Fuchun Lin,2- and 3-Modular lattice wiretap codes in small dimensions.,2015,26,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc26.html#LinOS15,https://doi.org/10.1007/s00200-015-0267-2 +Amin Shokrollahi,Asymmetric information embedding.,2008,19,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc19.html#Shokrollahi08,https://doi.org/10.1007/s00200-008-0075-z +Michael F. Singer,Necessary conditions for liouvillian solutions of (third order) linear differential equations.,1995,6,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc6.html#SingerU95,https://doi.org/10.1007/BF01270928 +Hervé Chabanne,Factoring ofxn-1 and orthogonalization over finite fields of characteristic 2.,1995,6,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc6.html#Chabanne95,https://doi.org/10.1007/BF01270930 +Rekha R. Thomas,Truncated Gröbner Bases for Integer Programming.,1997,8,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc8.html#ThomasW97,https://doi.org/10.1007/s002000050062 +Igor E. Shparlinski,On the Uniformity of Distribution of the ElGamal Signature.,2002,13,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc13.html#Shparlinski02,https://doi.org/10.1007/s002000100087 +Klaus Huber,On the Period Length of Generalized Inversive Pseudorandom Number Generators.,1994,5,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc5.html#Huber94,https://doi.org/10.1007/BF01225640 +Ulrich Baum,Improved Upper Complexity Bounds for the Discrete Fourier Transform.,1991,2,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc2.html#BaumCT91,https://doi.org/10.1007/BF01810853 +Maria C. F. Ferreira,lambda-Calculi with Explicit Substitutions Preserving Strong Normalization.,1999,9,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc9.html#FerreiraKP99,https://doi.org/10.1007/s002000050110 +Xiao-Shan Gao,Decomposition of ordinary differential polynomials.,2008,19,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc19.html#GaoZ08,https://doi.org/10.1007/s00200-008-0059-z +Laurent Busé,A matrix-based approach to properness and inversion problems for rational surfaces.,2006,17,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc17.html#BuseD06,https://doi.org/10.1007/s00200-006-0018-5 +Xiaoni Du,Linear codes from quadratic forms.,2017,28,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc28.html#DuW17,https://doi.org/10.1007/s00200-017-0319-x +Xiao-an Wang,The BCJR Trellis and Trellis Decoders for Some BCH Codes.,1999,9,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc9.html#WangW99,https://doi.org/10.1007/s002000050116 +T. L. Alderson,Maximal AMDS codes.,2008,19,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc19.html#AldersonB08,https://doi.org/10.1007/s00200-008-0058-0 +Jon A. Sjogren,Principal Rings and their Invariant Factors.,2003,14,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc14.html#Sjogren03,https://doi.org/10.1007/s00200-003-0138-0 +Iiro S. Honkala,On Covering Radius and Discrete Chebyshev Polynomials.,1997,8,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc8.html#HonkalaLL97,https://doi.org/10.1007/s002000050077 +Johan P. Hansen,Toric Varieties Hirzebruch Surfaces and Error-Correcting Codes.,2002,13,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc13.html#Hansen02,https://doi.org/10.1007/s00200-002-0106-0 +José Luis Montaña,Lower Bounds for Arithmetic Networks.,1993,4,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc4.html#MontanaP93,https://doi.org/10.1007/BF01270397 +Rex W. Matthews,Some Results on Permutation Polynomials Over Finite Fields.,1992,3,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc3.html#Matthews92,https://doi.org/10.1007/BF01189024 +Andrea Asperti,Safe Operators: Brackets Closed Forever Optimizing Optimal lambda-Calculus Implementations - Optimizing Optimal lambda-Calculus Implementations.,1997,8,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc8.html#AspertiC97,https://doi.org/10.1007/s002000050083 +Maria Emilia Alonso,The big Mother of all dualities 2: Macaulay bases.,2006,17,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc17.html#AlonsoMM06,https://doi.org/10.1007/s00200-006-0019-4 +Bentolhoda Binaei,A Pommaret bases approach to the degree of a polynomial ideal.,2018,29,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc29.html#BinaeiHS18,https://doi.org/10.1007/s00200-017-0342-y +Carlos Rentería-Márquez,The a-invariant of some Reed-Muller Codes.,1999,10,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc10.html#RenteriaT99,https://doi.org/10.1007/s002000050121 +Jorge Mozo-Fernández,Recognition of Polynomial Plane Curves Under Affine Transformations.,2002,13,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc13.html#Mozo-FernandezM02,https://doi.org/10.1007/s002000200095 +Vakhtang Lomadze,Convolutional Codes and Coherent Sheaves.,2001,12,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc12.html#Lomadze01,https://doi.org/10.1007/s002000000048 +Nigel P. Smart,Point Multiplication on Ordinary Elliptic Curves over Fields of Characteristic Three.,2003,13,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc13.html#SmartW03,https://doi.org/10.1007/s00200-002-0114-0 +Thomas Cluzeau,Resolvent Representation for Regular Differential Ideals.,2003,13,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc13.html#CluzeauH03,https://doi.org/10.1007/s00200-002-0110-4 +Françoise Levy-dit-Vehel,Bounds on the minimum distance of the duals of extended BCH codes over \mathbbFp.,1995,6,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc6.html#Levy-dit-Vehel95,https://doi.org/10.1007/BF01195336 +Alberto Albano,Conchoidal transform of two plane curves.,2010,21,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc21.html#AlbanoR10,https://doi.org/10.1007/s00200-010-0127-z +Aysegul Bayram,Structure of codes over the ring Z3[v]/(v3-v).,2013,24,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc24.html#BayramS13,https://doi.org/10.1007/s00200-013-0208-x +Maria C. F. Ferreira,Total termination of term rewriting.,1996,7,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc7.html#FerreiraZ96,https://doi.org/10.1007/BF01191381 +Rudolf Lidl,Some Remarks on Strong Fibonacci Pseudoprimes.,1990,1,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc1.html#LidlMO90,https://doi.org/10.1007/BF01810848 +David Joyner,Toric Codes over Finite Fields.,2004,15,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc15.html#Joyner04,https://doi.org/10.1007/s00200-004-0152-x +Muhammad Bilal,Self-dual codes from 3-class association schemes.,2015,26,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc26.html#BilalBDF15,https://doi.org/10.1007/s00200-014-0238-z +Hari Krishna,On a Signal Processing Algorithms Based Class of Linear Codes.,1993,4,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc4.html#Krishna93,https://doi.org/10.1007/BF01270399 +Yonglin Cao,Generalized quasi-cyclic codes over Galois rings: structural properties and enumeration.,2011,22,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc22.html#Cao11,https://doi.org/10.1007/s00200-011-0145-5 +Yongbo Xia,Further crosscorrelation properties of sequences with the decimation factor d=(pn+1)/(p+1)-(pn-1)/2.,2010,21,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc21.html#XiaZH10,https://doi.org/10.1007/s00200-010-0128-y +Tanja Lange 0001,Formulae for Arithmetic on Genus 2 Hyperelliptic Curves.,2005,15,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc15.html#Lange05,https://doi.org/10.1007/s00200-004-0154-8 +Giuseppa Carrà Ferro,A Resultant Theory for the Systems of Two Ordinary Algebraic Differential Equations.,1997,8,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc8.html#Carra-Ferro97,https://doi.org/10.1007/s002000050090 +Sabrina A. Hessinger,Computing the Galois Group of a Linear Differential Equation of Order Four.,2001,11,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc11.html#Hessinger01,https://doi.org/10.1007/s002000000055 +Joan-Josep Climent,An extension of the noncommutative Bergman's ring with a large number of noninvertible elements.,2014,25,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc25.html#ClimentNT14,https://doi.org/10.1007/s00200-014-0231-6 +Simon Litsyn,Divisibility Properties and New Bounds for Cyclic Codes and Exponential Sums in One and Several Variables.,1994,5,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc5.html#LitsynMM94,https://doi.org/10.1007/BF01438279 +Xiwang Cao,Primitive elements with prescribed trace.,2014,25,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc25.html#CaoW14,https://doi.org/10.1007/s00200-014-0228-1 +Khoongming Khoo,Highly nonlinear balanced S-boxes with improved bound on unrestricted and generalized nonlinearity.,2008,19,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc19.html#KhooLG08,https://doi.org/10.1007/s00200-008-0067-z +Steven T. Dougherty,Optimal Formally Self-Dual Codes over F5 and F7.,2000,10,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc10.html#DoughertyGH00,https://doi.org/10.1007/s002000050126 +Jacques Calmet,In memoriam Thomas Beth.,2008,19,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc19.html#CalmetG08,https://doi.org/10.1007/s00200-008-0073-1 +Alfredo Buttari,2LEV-D2P4: a package of high-performance preconditioners for scientific and engineering applications.,2007,18,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc18.html#ButtariDSF07,https://doi.org/10.1007/s00200-007-0035-z +Motoko Qiu Kawakita,Kummer Curves and Their Fibre Products with Many Rational Points.,2003,14,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc14.html#Kawakita03,https://doi.org/10.1007/s00200-003-0121-9 +Haibo Hong,All exceptional groups of lie type have minimal logarithmic signatures.,2014,25,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc25.html#HongWYA14,https://doi.org/10.1007/s00200-014-0226-3 +Birgit Reinert,MRC - Data Structures and Procedures for Computing in Monoid and Group Rings.,1999,10,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc10.html#ReinertZ99,https://doi.org/10.1007/s002000050122 +Guillem Godoy,Normalization properties for Shallow TRS and Innermost Rewriting.,2010,21,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc21.html#Godoy10,https://doi.org/10.1007/s00200-009-0118-0 +Rudolf Ahlswede,Rank Formulas for Certain Products of Matrices.,1993,4,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc4.html#AhlswedeC93,https://doi.org/10.1007/BF01200149 +Washiela Fish,Ternary codes from some reflexive uniform subset graphs.,2014,25,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc25.html#FishKM14,https://doi.org/10.1007/s00200-014-0233-4 +Manfred Göbel,Rewriting Techniques and Degree Bounds for Higher Order Symmetric Polynomials.,1999,9,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc9.html#Gobel99,https://doi.org/10.1007/s002000050118 +Wende Chen,Bounds on the Weight Hierarchies of Extremal Non-chain Codes of Dimension 4.,1997,8,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc8.html#ChenK97,https://doi.org/10.1007/s002000050075 +Guillaume Hanrot,The Middle Product Algorithm I.,2004,14,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc14.html#HanrotQZ04,https://doi.org/10.1007/s00200-003-0144-2 +Jiang Weng,New algorithm for the elliptic curve discrete logarithm problem with auxiliary inputs.,2017,28,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc28.html#WengDM17,https://doi.org/10.1007/s00200-016-0301-z +François Rodier,On the Dimension of Goppa Codes.,1992,3,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc3.html#Rodier92,https://doi.org/10.1007/BF01294836 +Peter Fleischmann,On the computation of conjugacy classes of Chevalley groups.,1996,7,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc7.html#FleischmannJ96,https://doi.org/10.1007/BF01190331 +Georg Moser,The Hydra battle and Cichon's principle.,2009,20,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc20.html#Moser09,https://doi.org/10.1007/s00200-009-0094-4 +B. Sundar Rajan,Transform Domain Characterization of Cyclic Codes over Zm.,1994,5,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc5.html#RajanS94,https://doi.org/10.1007/BF01225641 +Koji Chinen,Hyper-Kloosterman Sums and their Applications to the Coding Theory.,2001,12,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc12.html#ChinenH01,https://doi.org/10.1007/s002000100080 +Michael A. Frumkin,A fast algorithm for expansion over spherical harmonics.,1995,6,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc6.html#Frumkin95,https://doi.org/10.1007/BF01198013 +Gérard D. Cohen,Covering Radius 1985-1994.,1997,8,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc8.html#CohenLLM97,https://doi.org/10.1007/s002000050061 +Keiichirou Kusakari,Enhancing dependency pair method using strong computability in simply-typed term rewriting.,2007,18,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc18.html#KusakariS07,https://doi.org/10.1007/s00200-007-0046-9 +Tohru Nakashima,Minimum distance of relative Reed-Muller codes.,2009,20,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc20.html#Nakashima09,https://doi.org/10.1007/s00200-009-0093-5 +Hoon Hong,Ore Principal Subresultant Coefficients in Solutions.,2001,11,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc11.html#Hong01,https://doi.org/10.1007/s002000000041 +Laura Grigori,Towards an accurate performance modeling of parallel sparse factorization.,2007,18,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc18.html#GrigoriL07,https://doi.org/10.1007/s00200-007-0036-y +Yoshio Takane,Constrained Principal Component Analysis: A Comprehensive Theory.,2001,12,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc12.html#TakaneH01,https://doi.org/10.1007/s002000100081 +Omar Akchiche,Factoring RSA moduli with primes sharing bits in the middle.,2018,29,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc29.html#AkchicheK18,https://doi.org/10.1007/s00200-017-0340-0 +Guanghong Sun,The lower bound on the second-order nonlinearity of a class of Boolean functions with high nonlinearity.,2011,22,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc22.html#SunW11,https://doi.org/10.1007/s00200-010-0136-y +Wolfram Büttner,Symbolic Constraint Handling Through Unification in Finite Algebras.,1990,1,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc1.html#ButtnerESST90,https://doi.org/10.1007/BF01810294 +Paul Camion,t-resilient functions and the partial exposure problem.,2008,19,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc19.html#CamionP08,https://doi.org/10.1007/s00200-008-0061-5 +Bernd Bank,On the geometry of polar varieties.,2010,21,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc21.html#BankGHDS10,https://doi.org/10.1007/s00200-009-0117-1 +José Luis Montaña,Lower bounds for arithmetic networks II: Sum of Betti numbers.,1995,7,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc7.html#MontanaMP95,https://doi.org/10.1007/BF01613615 +Johan P. Hansen,Linkage and Codes on Complete Intersections.,2003,14,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc14.html#Hansen03,https://doi.org/10.1007/s00200-003-0119-3 +Keith O. Geddes,Evaluation of Classes of Definite Integrals Involving Elementary Functions via Differentiation of Special Functions.,1990,1,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc1.html#GeddesGMS90,https://doi.org/10.1007/BF01810298 +Jaehyun Ahn,Weight enumerators of a class of linear codes.,2018,29,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc29.html#AhnK18,https://doi.org/10.1007/s00200-017-0329-8 +Leandro Caniglia,How to Compute the Chow Form of an Unmixed Polynomial Ideal in Single Exponential Time.,1990,1,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc1.html#Caniglia90,https://doi.org/10.1007/BF01810845 +Friedrich Otto,Completing a Finite Special String-Rewriting System on the Congruence Class of the Empty Word.,1991,2,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc2.html#Otto91,https://doi.org/10.1007/BF01614148 +Guillermo Matera,Probabilistic Algorithms for Geometric Elimination.,1999,9,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc9.html#Matera99,https://doi.org/10.1007/s002000050115 +Wilfried Meidl,Continued fraction for formal laurent series and the lattice structure of sequences.,2006,17,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc17.html#Meidl06,https://doi.org/10.1007/s00200-006-0195-2 +Parampalli Udaya,Optimal and Suboptimal Quadriphase Sequences Derived from Maximal Length Sequences over Z4.,1998,9,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc9.html#UdayaS98,https://doi.org/10.1007/s002000050101 +Delphine Boucher,Skew-cyclic codes.,2007,18,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc18.html#BoucherGU07,https://doi.org/10.1007/s00200-007-0043-z +Joachim Apel,Properties of Entire Functions Over Polynomial Rings via Gröbner Bases.,2003,14,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc14.html#ApelSTW03,https://doi.org/10.1007/s00200-003-0123-7 +Felipe Cucker,NC Algorithms for Real Algebraic Numbers.,1992,3,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc3.html#CuckerLMPR92,https://doi.org/10.1007/BF01387193 +David F. Miller,Relaxed Simultaneous Congruences.,2003,14,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc14.html#Miller03,https://doi.org/10.1007/s00200-003-0118-4 +W. M. Chu,Construction of irreducible polynomials using cubic transformation.,1995,7,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc7.html#Chu95,https://doi.org/10.1007/BF01613612 +Vanesa Daza,Extensions of access structures and their cryptographic applications.,2010,21,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc21.html#DazaHMR10,https://doi.org/10.1007/s00200-010-0125-1 +Beatrice Giglio,Alexander Duality and Moments in Reliability Modelling.,2003,14,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc14.html#GiglioW03,https://doi.org/10.1007/s00200-002-0115-z +Patric R. J. östergård,Binary Two-Error-Correcting Codes are Better than Quaternary.,2003,14,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc14.html#Otergard03,https://doi.org/10.1007/s00200-003-0128-2 +Dima Grigoriev,Algorithms for Computing Sparse Shifts for Multivariate Polynomials.,2000,11,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc11.html#GrigorievL00,https://doi.org/10.1007/s002000050004 +Daniel Mall,On the Relation Between Gröbner and Pommaret Bases.,1998,9,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc9.html#Mall98,https://doi.org/10.1007/s002000050097 +Giovanni Gallo,A Solution to Kronecker's Problem.,1994,5,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc5.html#GalloM94,https://doi.org/10.1007/BF01188747 +Igor E. Shparlinski,On irreducible polynomials of small height over finite fields.,1996,7,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc7.html#Shparlinski96,https://doi.org/10.1007/BF01293260 +Ralph-Hardo Schulz,Check character systems over groups and orthogonal Latin squares.,1996,7,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc7.html#Schulz96,https://doi.org/10.1007/BF01191380 +Ilene H. Morgan,Almost weakly self-dual bases for finite fields.,1996,8,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc8.html#MorganMZ96,https://doi.org/10.1007/s002000050049 +Jean-Pierre Cherdieu,Weight Distribution of the Hermitian Forms Codes.,1997,8,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc8.html#CherdieuDMM97,https://doi.org/10.1007/s002000050068 +Matthias Berth,Using Invariants to Solve the Equivalence Problem for Ordinary Differential Equations.,2001,11,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc11.html#BerthC01,https://doi.org/10.1007/s002000000050 +Reinhold Pieper,Cryptanalysis of Rédei- and Dickson Permutations on Arbitrary Finite Rings.,1993,4,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc4.html#Pieper93,https://doi.org/10.1007/BF01270400 +Wieb Bosma,Canonical Bases for Cyclotomic Fields.,1990,1,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc1.html#Bosma90,https://doi.org/10.1007/BF01810296 +Christian Ronse,Adjunctions on the lattices of partitions and of partial partitions.,2010,21,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc21.html#Ronse10,https://doi.org/10.1007/s00200-010-0129-x +Zhengbang Zha,New constructions of APN polynomial functions in odd characteristic.,2014,25,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc25.html#ZhaHSS14,https://doi.org/10.1007/s00200-014-0227-2 +Minjia Shi,Few-weight codes from trace codes over a local ring.,2018,29,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc29.html#ShiQS18,https://doi.org/10.1007/s00200-017-0345-8 +Thomas Becker,On Gröbner Bases under Specialization.,1994,5,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc5.html#Becker94,https://doi.org/10.1007/BF01196621 +Gerardo Vega,An improved method for determining the weight distribution of a family of q-ary cyclic codes.,2017,28,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc28.html#Vega17,https://doi.org/10.1007/s00200-017-0318-y +Helmer Aslaksen,Invariants ofS4 and the shape of sets of vectors.,1995,7,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc7.html#AslaksenCG95,https://doi.org/10.1007/BF01613616 +Joris van der Hoeven,Generic Asymptotic Expansions.,1998,9,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc9.html#Hoeven98,https://doi.org/10.1007/s002000050094 +László Mérai,Predicting the elliptic curve congruential generator.,2017,28,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc28.html#Merai17,https://doi.org/10.1007/s00200-016-0303-x +Felix Ulmer,On Liouvillian Solutions of Linear Differential Equations.,1991,2,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc2.html#Ulmer91,https://doi.org/10.1007/BF01294332 +Thomas H. E. Ericson,F-partitions of Cyclic Groups.,1997,8,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc8.html#EricsonSTZ97,https://doi.org/10.1007/s002000050076 +Ross C. McPhedran,On A Bessel Function Integral.,1991,2,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc2.html#McPhedranDS91,https://doi.org/10.1007/BF01294334 +Wei Z. Kitto,An Isomorphism Theorem Between the 7-Adic Integers and a Ring Associated with a Hexagonal Lattice.,1991,2,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc2.html#KittoW91,https://doi.org/10.1007/BF01810571 +Werner M. Seiler,"Special Issue ""Computational Geometry for Differential Equations"" - Guest Editor's Preface.",2001,11,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc11.html#Seiler01,https://doi.org/10.1007/s002000000056 +Joachim Althaler,Finite linear recurring sequences and homogeneous ideals.,1996,7,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc7.html#AlthalerD96,https://doi.org/10.1007/BF01293596 +José E. Marcos,Some permutation polynomials over finite fields.,2015,26,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc26.html#Marcos15,https://doi.org/10.1007/s00200-015-0260-9 +Alexander Barg,The Matroid of Supports of A Linear Code.,1997,8,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc8.html#Barg97,https://doi.org/10.1007/s002000050060 +Alin Bostan,Fast Algorithms for Zero-Dimensional Polynomial Systems using Duality.,2003,14,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc14.html#BostanSS03,https://doi.org/10.1007/s00200-003-0133-5 +Miao Tang,An algorithm for computing the error sequence of $$p^{n}$$ p n -periodic binary sequences.,2014,25,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc25.html#Tang14,https://doi.org/10.1007/s00200-014-0222-7 +Dima Grigoriev,Exponential Lower Bounds for Depth 3 Arithmetic Circuits in Algebras of Functions over Finite Fields.,2000,10,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc10.html#GrigorievR00,https://doi.org/10.1007/s002009900021 +Michael Kalkbrener,Primitive polynomial remainder sequences in elimination theory.,1995,6,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc6.html#Kalkbrener95,https://doi.org/10.1007/BF01225644 +Feodor S. Vainstein,Low redundancy polynomial checks for numerical computation.,1996,7,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc7.html#Vainstein96,https://doi.org/10.1007/BF01293262 +Can Xiang,Two classes of linear codes and their weight distributions.,2018,29,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc29.html#XiangWTF18,https://doi.org/10.1007/s00200-017-0338-7 +Tanja Lange 0001,Collisions in Fast Generation of Ideal Classes and Points on Hyperelliptic and Elliptic Curves.,2005,15,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc15.html#LangeS05,https://doi.org/10.1007/s00200-004-0161-9 +Patrick Fitzpatrick,Comparison of Two Algorithms for Decoding Alternant Codes.,1998,9,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc9.html#FitzpatrickJ98,https://doi.org/10.1007/s002000050103 +François Ollivier,The reduction to normal form of a non-normal system of differential equations.,2009,20,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc20.html#Ollivier09a,https://doi.org/10.1007/s00200-009-0088-2 +Manuel Bronstein,Formulas for Series Compuatations.,1991,2,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc2.html#Bronstein91,https://doi.org/10.1007/BF01294333 +Harald Niederreiter,Simultaneous Shifted Continued Fraction Expansions in Quadratic Time.,1998,9,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc9.html#NiederreiterV98,https://doi.org/10.1007/s002000050098 +Siguna Müller,A Note on Strong Dickson Pseudoprimes.,1998,9,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc9.html#Muller98,https://doi.org/10.1007/s002000050106 +Joachim von zur Gathen,Counting decomposable multivariate polynomials.,2011,22,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc22.html#Gathen11,https://doi.org/10.1007/s00200-011-0141-9 +Ana Romero,Computing the first stages of the Bousfield-Kan spectral sequence.,2010,21,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc21.html#Romero10,https://doi.org/10.1007/s00200-010-0123-3 +Carsten Schneider,Structural theorems for symbolic summation.,2010,21,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc21.html#Schneider10,https://doi.org/10.1007/s00200-009-0115-3 +Johan P. Hansen,Group Codes on Certain Algebraic Curves with Many Rational Points.,1990,1,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc1.html#HansenS90,https://doi.org/10.1007/BF01810849 +Bram van Asch,Matrix-product codes over finite chain rings.,2008,19,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc19.html#Asch08,https://doi.org/10.1007/s00200-008-0063-3 +Xiyong Zhang,On perfect nonlinear functions (Pi).,2008,19,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc19.html#ZhangG08,https://doi.org/10.1007/s00200-008-0065-1 +Gilles Villard,Fast Parallel Algorithms for Matrix Reduction to Normal Forms.,1997,8,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc8.html#Villard97,https://doi.org/10.1007/s002000050089 +Koichi Betsumiya,Formally Self-Dual Codes Related to Type II Codes.,2003,14,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc14.html#BetsumiyaH03,https://doi.org/10.1007/s00200-003-0127-3 +Nuh Aydin,New binary linear codes from quasi-cyclic codes and an augmentation algorithm.,2017,28,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc28.html#AydinCM17,https://doi.org/10.1007/s00200-017-0327-x +Deepa Sinha,Iterated local transitivity model for signed social networks.,2018,29,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc29.html#SinhaS18,https://doi.org/10.1007/s00200-017-0333-z +Hideki Imai,Error-correcting codes and cryptography.,2008,19,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc19.html#ImaiH08,https://doi.org/10.1007/s00200-008-0074-0 +Stephen D. Cohen,Primitive Elements in Finite Fields and Costas Arrays.,1991,2,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc2.html#CohenM91,https://doi.org/10.1007/BF01810854 +Fabrice Rouillier,Solving Zero-Dimensional Systems Through the Rational Univariate Representation.,1999,9,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc9.html#Rouillier99,https://doi.org/10.1007/s002000050114 +Vera Pless,Constraints on Weights in Binary Codes.,1997,8,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc8.html#Pless97,https://doi.org/10.1007/s002000050079 +Aart Middeldorp,Completeness Results for Basic Narrowing.,1994,5,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc5.html#MiddeldorpH94,https://doi.org/10.1007/BF01190830 +éric Schost,Computing Parametric Geometric Resolutions.,2003,13,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc13.html#Schost03,https://doi.org/10.1007/s00200-002-0109-x +Harald Niederreiter,On the Lattice Structure of Pseudorandom Numbers Generated over Arbitrary Finite Fields.,2001,12,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc12.html#NiederreiterW01,https://doi.org/10.1007/s002000100074 +Parampalli Udaya,Generalized GMW Quadriphase Sequences Satisfying the Welch Bound with Equality.,2000,10,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc10.html#UdayaS00,https://doi.org/10.1007/s002000050125 +Soo-Kyung Eom,Optimal pairing computation over families of pairing-friendly elliptic curves.,2011,22,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc22.html#EomLP11,https://doi.org/10.1007/s00200-011-0146-4 +Adrien Poteaux,Complexity bounds for the rational Newton-Puiseux algorithm over finite fields.,2011,22,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc22.html#PoteauxR11,https://doi.org/10.1007/s00200-011-0144-6 +Zhixiong Chen,Trace representation of pseudorandom binary sequences derived from Euler quotients.,2015,26,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc26.html#ChenDM15,https://doi.org/10.1007/s00200-015-0265-4 +Florentin Ipate,Testing (Stream) X-machines.,2003,14,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc14.html#IpateGH03,https://doi.org/10.1007/s00200-003-0132-6 +Justo Peralta,Graded Codes.,2002,13,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc13.html#PeraltaT02,https://doi.org/10.1007/s002000200094 +Steven D. Galbraith,Improved algorithm for the isogeny problem for ordinary elliptic curves.,2013,24,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc24.html#GalbraithS13,https://doi.org/10.1007/s00200-013-0185-0 +Iwan M. Duursma,Reed-Muller Codes on Complete Intersections.,2001,11,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc11.html#DuursmaRT01,https://doi.org/10.1007/s002000000047 +Frédéric Chyzak,Effective algorithms for parametrizing linear control systems over Ore algebras.,2005,16,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc16.html#ChyzakQR05,https://doi.org/10.1007/s00200-005-0188-6 +Hai Quang Dinh,On the Equivalence of Codes over Finite Rings.,2004,15,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc15.html#DinhL04,https://doi.org/10.1007/s00200-004-0149-5 +Juha Partala,On the conjugacy search problem and left conjugacy closed loops.,2008,19,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc19.html#PartalaS08,https://doi.org/10.1007/s00200-008-0066-0 +Guangkui Xu,Several classes of Boolean functions with few Walsh transform values.,2017,28,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc28.html#XuCX17,https://doi.org/10.1007/s00200-016-0298-3 +Gilles Lachaud,Polynomial-Time Construction of Codes I: Linear Codes with Almost Equal Weights.,1992,3,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc3.html#LachaudS92,https://doi.org/10.1007/BF01387197 +Willem A. de Graaf,Computing Cartan subalgebras of Lie algebras.,1996,7,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc7.html#GraafIR96,https://doi.org/10.1007/BF01293593 +Shudi Yang,The weight enumerator of the duals of a class of cyclic codes with three zeros.,2015,26,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc26.html#YangYZ15,https://doi.org/10.1007/s00200-015-0255-6 +Nagarjun C. Dwarakanath,Sampling from discrete Gaussians for lattice-based cryptography on a constrained device.,2014,25,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc25.html#DwarakanathG14,https://doi.org/10.1007/s00200-014-0218-3 +Edoardo Ballico,On the dual minimum distance and minimum weight of codes from a quotient of the Hermitian curve.,2013,24,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc24.html#BallicoR13,https://doi.org/10.1007/s00200-013-0206-z +Alfons Geser,An Improved General Path Order.,1996,7,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc7.html#Geser96,https://doi.org/10.1007/BF01293264 +Roberta Evans Sabin,Metacyclic error-correcting codes.,1995,6,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc6.html#SabinL95,https://doi.org/10.1007/BF01195337 +Abdallah Assi,Constructing the set of complete intersection numerical semigroups with a given Frobenius number.,2013,24,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc24.html#AssiG13,https://doi.org/10.1007/s00200-013-0186-z +Ian F. Blake,VSH and multiplicative modular relations between small primes with polynomial exponents.,2014,25,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc25.html#BlakeLS14,https://doi.org/10.1007/s00200-014-0219-2 +Christoph Hering,On the Diophantine equations ax2 + bx + c = c0 c1y1 1/4cryr .,1996,7,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc7.html#Hering96,https://doi.org/10.1007/BF01195531 +Wilfried Meidl,Periodic Sequences with Maximal Linear Complexity and Large k-Error Linear Complexity.,2003,14,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc14.html#MeidlN03,https://doi.org/10.1007/s00200-003-0134-4 +Benne de Weger,Cryptanalysis of RSA with Small Prime Difference.,2002,13,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc13.html#Weger02,https://doi.org/10.1007/s002000100088 +Santi Martínez,On Edwards curves and ZVP-attacks.,2013,24,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc24.html#MartinezSTTV13,https://doi.org/10.1007/s00200-013-0211-2 +Christophe Mouaha,On Cyclic Codes which are q-Ary Images of Linear Codes.,1991,2,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc2.html#Mouaha91,https://doi.org/10.1007/BF01294331 +Meinolf Geck,CHEVIE - A system for computing and processing generic character tables.,1996,7,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc7.html#GeckHLMP96,https://doi.org/10.1007/BF01190329 +Haibo Hong,Minimal logarithmic signatures for one type of classical groups.,2017,28,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc28.html#HongWASY17,https://doi.org/10.1007/s00200-016-0302-y +Joachim Rosenthal,Maximum Distance Separable Convolutional Codes.,1999,10,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc10.html#RosenthalS99,https://doi.org/10.1007/s002000050120 +Chunming Tang,Two infinite classes of rotation symmetric bent functions with simple representation.,2018,29,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc29.html#TangQZF18,https://doi.org/10.1007/s00200-017-0337-8 +Brahim Sadik,A Bound for the Order of Characteristic Set Elements of an Ordinary Prime Differential Ideal and some Applications.,2000,10,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc10.html#Sadik00,https://doi.org/10.1007/s002000050128 +Patrizio Frosini,Size Functions and Formal Series.,2001,12,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc12.html#FrosiniL01,https://doi.org/10.1007/s002000100078 +Holger Boche,A note on some properties of the Perron root of nonnegative irreducible matrices.,2007,18,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc18.html#BocheS07,https://doi.org/10.1007/s00200-007-0042-0 +Steven T. Dougherty,Euclidean self-dual codes over non-commutative Frobenius rings.,2016,27,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc27.html#DoughertyL16,https://doi.org/10.1007/s00200-015-0277-0 +Michel Fliess,Algebraic change-point detection.,2010,21,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc21.html#FliessJM10,https://doi.org/10.1007/s00200-010-0119-z +Jean Conan,Structural Properties and Enumeration of Quasi Cyclic Codes.,1993,4,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc4.html#ConanS93,https://doi.org/10.1007/BF01270398 +Ian F. Blake,On the bit security of the Diffie-Hellman key.,2006,16,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc16.html#BlakeGS06,https://doi.org/10.1007/s00200-005-0184-x +Bruno Grenet,Deterministic root finding over finite fields using Graeffe transforms.,2016,27,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc27.html#GrenetHL16,https://doi.org/10.1007/s00200-015-0280-5 +Guangkui Xu,Several classes of polynomials with low differential uniformity over finite fields of odd characteristic.,2016,27,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc27.html#XuCX16,https://doi.org/10.1007/s00200-015-0272-5 +Markus Hegland,Linear Bijections and the Fast Fourier Transform.,1997,8,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc8.html#HeglandW97,https://doi.org/10.1007/s002000050059 +Jon-Lark Kim,Secret sharing schemes based on additive codes over GF(4).,2017,28,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc28.html#KimL17,https://doi.org/10.1007/s00200-016-0296-5 +Krzysztof R. Apt,A Declarative Approach for First-Order Built-in's of Prolog.,1994,5,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc5.html#AptMP94,https://doi.org/10.1007/BF01190828 +Sergei A. Abramov,Apparent singularities of linear difference equations with polynomial coefficients.,2006,17,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc17.html#AbramovBH06,https://doi.org/10.1007/s00200-005-0193-9 +Holger Boche,On Systems of Linear Equations with Nonnegative Coefficients.,2004,14,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc14.html#BocheS04,https://doi.org/10.1007/s00200-003-0142-4 +Dilek çelik,A construction of weakly and non-weakly regular bent functions over the ring of integers modulo $$p^m$$ p m.,2015,26,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc26.html#CelikO15,https://doi.org/10.1007/s00200-015-0266-3 +Juriaan Simonis,The Effective Length of Subcodes.,1994,5,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc5.html#Simonis94,https://doi.org/10.1007/BF01188748 +Dirk Hachenberger,On Primitive and Free Roots in a Finite Field.,1992,3,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc3.html#Hachenberger92,https://doi.org/10.1007/BF01387196 +Tomás Recio,Ultraquadrics associated to affine and projective automorphisms.,2014,25,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc25.html#RecioTSV14,https://doi.org/10.1007/s00200-014-0236-1 +Alexander A. Letichevsky,Discovery of Invariant Equalities in Programs over Data Fields.,1993,4,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc4.html#LetichevskyL93,https://doi.org/10.1007/BF01200151 +Georg Regensburger,Parametrizing compactly supported orthonormal wavelets by discrete moments.,2007,18,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc18.html#Regensburger07,https://doi.org/10.1007/s00200-007-0054-9 +Trygve Johnsen,Hamming weights and Betti numbers of Stanley-Reisner rings associated to matroids.,2013,24,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc24.html#JohnsenV13,https://doi.org/10.1007/s00200-012-0183-7 +Elisabetta Fortuna,The adjacency graph of a real algebraic surface.,2005,16,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc16.html#FortunaGLP05,https://doi.org/10.1007/s00200-005-0176-x +Jérôme Lebrun,Blind algebraic identification of communication channels: symbolic solution algorithms.,2006,17,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc17.html#LebrunC06,https://doi.org/10.1007/s00200-006-0021-x +Philippe Langevin,Almost Perfect Binary Functions.,1993,4,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc4.html#Langevin93,https://doi.org/10.1007/BF01386833 +Fatmanur Gursoy,Reversible DNA codes using skew polynomial rings.,2017,28,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc28.html#GursoyOS17,https://doi.org/10.1007/s00200-017-0325-z +Xiangyong Zeng,Two new permutation polynomials with the form (x2k+x+d)s+x over F2n.,2010,21,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc21.html#ZengZH10,https://doi.org/10.1007/s00200-010-0120-6 +Riccardo Aragona,Several proofs of security for a tokenization algorithm.,2017,28,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc28.html#AragonaLS17,https://doi.org/10.1007/s00200-017-0313-3 +Franca Marinelli,Some security bounds for the key sizes of DGHV scheme.,2014,25,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc25.html#MarinelliAMS14,https://doi.org/10.1007/s00200-014-0232-5 +Harald Niederreiter,On the Distribution of Pseudorandom Numbers and Vectors Generated by Inversive Methods.,2000,10,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc10.html#NiederreiterS00,https://doi.org/10.1007/s002000050124 +Nick Cropper,The Classification of Polynomial Orderings on Monadic Terms.,2001,12,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc12.html#CropperM01,https://doi.org/10.1007/s002000000044 +Alex Capuñay Gonzales,Multibase scalar multiplications in cryptographic pairings.,2016,27,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc27.html#Gonzales16,https://doi.org/10.1007/s00200-015-0279-y +Eunjeong Lee,Polynomial generating pairing and its criterion for optimal pairing.,2014,25,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc25.html#LeeLP14,https://doi.org/10.1007/s00200-014-0225-4 +Maribel Fernández,Lambda-Calculus with Director Strings.,2005,15,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc15.html#FernandezMS05,https://doi.org/10.1007/s00200-005-0169-9 +Chu Wenchang,Transformation on Infinite Double Series and Applications to Harmonic Number Identities.,2005,15,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc15.html#WenchangL05,https://doi.org/10.1007/s00200-004-0165-5 +Maurice Mignotte,Estimates for Polynomial Roots.,2001,12,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc12.html#MignotteS01,https://doi.org/10.1007/s002000100083 +Trond Stølen Gustavsen,A Simple Point Counting Algorithm for Hessian Elliptic Curves in Characteristic Three.,2006,17,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc17.html#GustavsenR06,https://doi.org/10.1007/s00200-006-0013-x +Manuel González Sarabia,The Dual Code of some Reed-Muller type Codes.,2004,14,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc14.html#Gonzalez-SarabiaR04,https://doi.org/10.1007/s00200-003-0136-2 +Kazuhiro Yokoyama,On systems of algebraic equations with parametric exponents II.,2007,18,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc18.html#Yokoyama07,https://doi.org/10.1007/s00200-007-0055-8 +J. A. Thiong-Ly,A Serial Version of the Pohlig-Hellman Algorithm for Computing Discrete Logarithms.,1993,4,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc4.html#Thiong-Ly93,https://doi.org/10.1007/BF01270401 +W. Sarlet,Complex Second-Order Differential Equations and Separability.,2001,11,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc11.html#SarletT01,https://doi.org/10.1007/s002000000049 +Marcin Dumnicki,Expected term bases for generic multivariate Hermite interpolation.,2007,18,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc18.html#Dumnicki07,https://doi.org/10.1007/s00200-007-0049-6 +Dabin Zheng,On a class of binomial bent functions over the finite fields of odd characteristic.,2013,24,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc24.html#ZhengYH13,https://doi.org/10.1007/s00200-013-0202-3 +Xiang-dong Hou,Group Actions on Binary Resilient Functions.,2003,14,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc14.html#Hou03,https://doi.org/10.1007/s00200-003-0125-5 +Laureano Lambán,An Object-oriented Interpretation of the EAT System.,2003,14,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc14.html#LambanPR03,https://doi.org/10.1007/s00200-003-0129-1 +Graham H. Norton,Computing GCD's by Normalized Division.,1991,2,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc2.html#Norton91,https://doi.org/10.1007/BF01614149 +Sylvain Duquesne,Choosing and generating parameters for pairing implementation on BN curves.,2018,29,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc29.html#DuquesneMHR18,https://doi.org/10.1007/s00200-017-0334-y +D. Guillaume,Building pseudoprimes with a large number of prime factors.,1996,7,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc7.html#GuillaumeM96,https://doi.org/10.1007/BF01195532 +Dominik Janzing,How much is a quantum controller controlled by the controlled system?,2008,19,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc19.html#JanzingD08,https://doi.org/10.1007/s00200-008-0076-y +Hans Dobbertin,One-to-One Highly Nonlinear Power Functions on GF(2n).,1998,9,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc9.html#Dobbertin98,https://doi.org/10.1007/s002000050099 +Krzysztof Ziemianski,Spaces of directed paths on pre-cubical sets.,2017,28,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc28.html#Ziemianski17,https://doi.org/10.1007/s00200-017-0316-0 +Henry O'Keeffe,Gröbner basis approach to list decoding of algebraic geometry codes.,2007,18,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc18.html#OKeeffeF07,https://doi.org/10.1007/s00200-007-0048-7 +Marko J. Moisio,A Comparision of the Number of Rational Places of Certain Function Fields to the Hasse-Weil Bounds.,2004,14,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc14.html#MoisioV04,https://doi.org/10.1007/s00200-003-0143-3 +Zena M. Ariola,Relating graph and term rewriting via Böhm models.,1996,7,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc7.html#Ariola96,https://doi.org/10.1007/BF01293598 +Rainer Steinwandt,A ciphertext-only attack on Polly Two.,2010,21,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc21.html#Steinwandt10,https://doi.org/10.1007/s00200-009-0114-4 +Jónathan Heras,Modelling algebraic structures and morphisms in ACL2.,2015,26,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc26.html#HerasMP15,https://doi.org/10.1007/s00200-015-0252-9 +Wilfried Meidl,A Polynomial Representation of the Diffie-Hellman Mapping.,2002,13,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc13.html#MeidlW02,https://doi.org/10.1007/ +Adrian J. Baddeley,Incidence and lattice calculus with applications to stochastic geometry and image analysis.,1995,6,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc6.html#BaddeleyH95,https://doi.org/10.1007/BF01195332 +Randell Heyman,On the number of Eisenstein polynomials of bounded height.,2013,24,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc24.html#HeymanS13,https://doi.org/10.1007/s00200-013-0187-y +Tariq Shah,On codes over quaternion integers.,2013,24,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc24.html#ShahR13,https://doi.org/10.1007/s00200-013-0203-2 +Patrik Nordbeck,On the Finiteness of Gröbner Bases Computation in Quotients of the Free Algebra.,2001,11,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc11.html#Nordbeck01,https://doi.org/10.1007/s002000000045 +Miriam Abdón,Hamming distances from a function to all codewords of a Generalized Reed-Muller code of order one.,2017,28,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc28.html#AbdonR17,https://doi.org/10.1007/s00200-016-0311-x +Radinka Dontcheva,Some Extremal Self-Dual Codes with an Automorphism of Order 7.,2003,14,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc14.html#DontchevaH03,https://doi.org/10.1007/s00200-003-0126-4 +Maria Isabel Gonzalez Vasco,A Reaction Attack on a Public Key Cryptosystem Based on the Word Problem.,2004,14,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc14.html#VascoS04,https://doi.org/10.1007/s00200-003-0135-3 +Shuqin Fan,Primitive Polynomials over Finite Fields of Characteristic Two.,2004,14,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc14.html#ShuqinW04,https://doi.org/10.1007/s00200-003-0140-6 +Klaus Huber,The MacWilliams theorem for two-dimensional modulo metrics.,1996,8,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc8.html#Huber96,https://doi.org/10.1007/s002000050051 +Pascal Véron,Improved identification schemes based on error-correcting codes.,1996,8,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc8.html#Veron96,https://doi.org/10.1007/s002000050053 +Tony Shaska,Bielliptic curves of genus 3 in the hyperelliptic moduli.,2013,24,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc24.html#ShaskaT13,https://doi.org/10.1007/s00200-013-0209-9 +Chengju Li,A construction of several classes of two-weight and three-weight linear codes.,2017,28,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc28.html#LiYF17,https://doi.org/10.1007/s00200-016-0297-4 +Edoardo Dotti,Eisenstein polynomials over function fields.,2016,27,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc27.html#DottiM16,https://doi.org/10.1007/s00200-015-0275-2 +Ulrich Baum,An Optimal Algorithm for Multiplication in F256/F4.,1991,2,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc2.html#BaumS91,https://doi.org/10.1007/BF01810851 +Paul Camion,On the Powerline System.,1999,9,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc9.html#CamionC99,https://doi.org/10.1007/s002000050113 +John Little,On toric codes and multivariate Vandermonde matrices.,2007,18,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc18.html#LittleS07,https://doi.org/10.1007/s00200-007-0041-1 +David Hartley,Darboux Integrability in More Than Two Dimensions.,2001,11,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc11.html#Hartley01,https://doi.org/10.1007/s002000000052 +Qifu Tyler Sun,On decoding of DVR-based linear network codes.,2015,26,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc26.html#SunL15,https://doi.org/10.1007/s00200-015-0264-5 +Vladimir Edemskiy,The linear complexity of generalized cyclotomic sequences with period $$2p^n$$ 2 p n.,2014,25,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc25.html#EdemskiyA14,https://doi.org/10.1007/s00200-014-0223-6 +Peter J. Grabner,Fractal digital sums and codes.,1996,8,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc8.html#GrabnerHT96,https://doi.org/10.1007/s002000050050 +Peizhong Lu,A Criterion for Annihilating Ideals of Linear Recurring Sequences over Galois Rings.,2000,11,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc11.html#Lu00,https://doi.org/10.1007/s002000000040 +Massimo Caboara,The Chen-Reed-Helleseth-Truong Decoding Algorithm and the Gianni-Kalkbrenner Gröbner Shape Theorem.,2002,13,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc13.html#CaboaraM02,https://doi.org/10.1007/s002000200097 +Meera Sitharam,Sampling Boolean Functions over Abelian Groups and Applications.,2000,11,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc11.html#SitharamS00,https://doi.org/10.1007/s002000000038 +Felice Manganiello,Computation of the weight distribution of CRC codes.,2008,19,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc19.html#Manganiello08,https://doi.org/10.1007/s00200-008-0078-9 +Yonglin Cao,Constacyclic Fq-linear codes over Fql.,2015,26,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc26.html#CaoCC15,https://doi.org/10.1007/s00200-015-0257-4 +Harald Niederreiter,A Propagation Rule for Linear Codes.,2000,10,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc10.html#NiederreiterX00,https://doi.org/10.1007/s002009900017 +Heide Gluesing-Luerssen,On Doubly-Cyclic Convolutional Codes.,2006,17,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc17.html#Gluesing-LuerssenS06,https://doi.org/10.1007/s00200-006-0014-9 +Manuel González Sarabia,Parameterized codes associated to the edges of some subgraphs of a simple graph.,2015,26,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc26.html#SarabiaR15,https://doi.org/10.1007/s00200-015-0262-7 +Robert Cremanns,Prefix-Rewriting on Context-Free Groups.,1997,8,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc8.html#Cremanns97,https://doi.org/10.1007/s002000050069 +Hannu Tarnanen,A Simple Method to Estimate the Maximum Nontrivial Correlation of Some Sets of Sequences.,1994,5,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc5.html#TarnanenT94,https://doi.org/10.1007/BF01438281 +Eric R. Verheul,Cryptanalysis of 'Less Short' RSA Secret Exponents.,1997,8,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc8.html#VerheulT97,https://doi.org/10.1007/s002000050082 +Nuh Aydin,Some new binary quasi-cyclic codes from codes over the ring and#120125*2+u𝔹*5*2+v𝔹*5*2+uv𝔹*5*2.,2013,24,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc24.html#AydinKY13,https://doi.org/10.1007/s00200-013-0207-y +Pamela E. Harris,Computing weight q-multiplicities for the representations of the simple Lie algebras.,2018,29,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc29.html#HarrisIS18,https://doi.org/10.1007/s00200-017-0346-7 +Harald Niederreiter,Lattice Structure and Linear Complexity of Nonlinear Pseudorandom Numbers.,2002,13,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc13.html#NiederreiterW02,https://doi.org/10.1007/s002000200105 +Philippe Loustaunau,On the Decoding of Cyclic Codes Using Gröbner Bases.,1997,8,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc8.html#LoustaunauY97,https://doi.org/10.1007/s002000050084 +Jong Won Lee,Isomorphism Classes of Picard Curves over Finite Fields.,2005,16,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc16.html#Lee05,https://doi.org/10.1007/s00200-003-0145-1 +G. Budzban,The generalized road coloring problem and periodic digraphs.,2011,22,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc22.html#BudzbanF11,https://doi.org/10.1007/s00200-010-0135-z +Leo Bachmair,Refutational Theorem Proving for Hierarchic First-Order Theories.,1994,5,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc5.html#BachmairGW94,https://doi.org/10.1007/BF01190829 +Joachim von zur Gathen,Multivariate Polynomial Decomposition.,2003,14,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc14.html#GathenGR03,https://doi.org/10.1007/s00200-003-0122-8 +Hans-Gert Gräbe,Minimal Primary Decomposition and Factorized Gröbner Bases.,1997,8,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc8.html#Grabe97,https://doi.org/10.1007/s002000050064 +Hai Xiong,Some results on the differential functions over finite fields.,2014,25,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc25.html#XiongQLL14,https://doi.org/10.1007/s00200-014-0220-9 +Maurice Mignotte,On the distance between the roots of a polynomial.,1995,6,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc6.html#Mignotte95,https://doi.org/10.1007/BF01198012 +Jennifer D. Key,LCD codes from adjacency matrices of graphs.,2018,29,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc29.html#KeyR18,https://doi.org/10.1007/s00200-017-0339-6 +Ousmane Moussa,An Inequality About the Largest Roots of a Polynomial.,1997,8,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc8.html#Moussa97,https://doi.org/10.1007/s002000050087 +Jacques Calmet,Editors' foreword.,2009,20,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc20.html#CalmetO09,https://doi.org/10.1007/s00200-009-0090-8 +Duc-Phong Le,Further refinements of Miller's algorithm on Edwards curves.,2016,27,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc27.html#LeT16,https://doi.org/10.1007/s00200-015-0278-z +Nicolas Sendrier,On the Concatenated Structure of a Linear Code.,1998,9,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc9.html#Sendrier98,https://doi.org/10.1007/s002000050104 +Thierry Mefenza,Polynomial interpolation of the Naor-Reingold pseudo-random function.,2017,28,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc28.html#MefenzaV17,https://doi.org/10.1007/s00200-016-0309-4 +Markku Niemenmaa,A check digit system for hexadecimal numbers.,2011,22,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc22.html#Niemenmaa11,https://doi.org/10.1007/s00200-011-0139-3 +Peter J. Olver,Geometric Foundations of Numerical Algorithms and Symmetry.,2001,11,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc11.html#Olver01,https://doi.org/10.1007/s002000000053 +Kenza Guenda,Construction of cyclic codes over and#120125*2+u𝔹*5*2 for DNA computing.,2013,24,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc24.html#GuendaG13,https://doi.org/10.1007/s00200-013-0188-x +Steven T. Dougherty,Note on the g-fold Joint Weight Enumerators of Self-Dual Codes over Zk.,2001,11,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc11.html#DoughertyHO01,https://doi.org/10.1007/PL00004225 +T. Aaron Gulliver,Improved Bounds for Quaternary Linear Codes of Dimension 6.,1998,9,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc9.html#GulliverO98,https://doi.org/10.1007/s002000050100 +Franz Baader,Combination problems for commutative/monoidal theories or how algebra can help in equational unification.,1996,7,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc7.html#BaaderN96,https://doi.org/10.1007/BF01195536 +Volker Weispfenning,Semilinear Motion Planning in REDLOG.,2001,12,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc12.html#Weispfenning01,https://doi.org/10.1007/s002000100086 +Pablo Solernó,Effective Lojasiewicz Inequalities in Semialgebraic Geometry.,1991,2,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc2.html#Solerno91,https://doi.org/10.1007/BF01810850 +Harald Niederreiter,A Short Proof for Explicit Formulas for Discrete Logarithms in Finite Fields.,1990,1,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc1.html#Niederreiter90,https://doi.org/10.1007/BF01810847 +Jacques Wolfman,Polynomial Description of Binary Linear Codes and Related Properties.,1991,2,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc2.html#Wolfman91,https://doi.org/10.1007/BF01810572 +Xiao-Shan Gao,On the Parameterization of Algebraic Curves.,1992,3,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc3.html#GaoC92,https://doi.org/10.1007/BF01189021 +Michele Elia,The Generating Groups of Geometrically Uniform Spherical Signal Sets.,1992,3,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc3.html#EliaB92,https://doi.org/10.1007/BF01268658 +Hubert Grassmann,On the Implementation of Standard Bases and Syzygies in SINGULAR.,1996,7,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc7.html#GrassmannGMNPPSS96,https://doi.org/10.1007/BF01190332 +Arnold Knopfmacher,Nets and Sequences Obtained from Irreducible Polynomials Over Finite Fields.,1998,9,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc9.html#KnopfmacherRM98,https://doi.org/10.1007/s002000050107 +Alexander Bors,On the dynamics of endomorphisms of finite groups.,2017,28,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc28.html#Bors17,https://doi.org/10.1007/s00200-016-0304-9 +Guillem Godoy,Characterizing Confluence by Rewrite Closure and Right Ground Term Rewrite Systems.,2004,15,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc15.html#GodoyTV04,https://doi.org/10.1007/s00200-004-0148-6 +Eric Bach,Weil bounds for singular curves.,1996,7,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc7.html#Bach96,https://doi.org/10.1007/BF01195534 +Russell Lyons,A Computer Proof of a Series Evaluation in Terms of Harmonic Numbers.,2002,13,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc13.html#LyonsPR02,https://doi.org/10.1007/s00200-002-0107-z +Cesar Alonso,Reconsidering algorithms for real parametric curves.,1995,6,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc6.html#AlonsoGR95,https://doi.org/10.1007/BF01198014 +Patrick Solé,Weight Distribution and Dual Distance.,1994,5,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc5.html#Sole94,https://doi.org/10.1007/BF01438280 +David J. Barnes,Improving test coverage of LAPACK.,2007,18,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc18.html#BarnesH07,https://doi.org/10.1007/s00200-007-0034-0 +Manfred Göbel,Visualizing Properties of Comprehensive SAGBI Bases - Two Examples.,2001,12,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc12.html#Goebel01,https://doi.org/10.1007/s002000100084 +Thomas Sturm 0001,Reasoning over Networks by Symbolic Methods.,1999,10,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc10.html#Sturm99,https://doi.org/10.1007/s002000050123 +Josep Rifà,1-Perfect Uniform and Distance Invariant Partitions.,2001,11,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc11.html#RifaPB01,https://doi.org/10.1007/PL00004224 +Gunter Ritter,On the Number of Term Orders.,1991,2,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc2.html#RitterW91,https://doi.org/10.1007/BF01810855 +Michael Clausen,A Direct Proof of Minkwitz's Extension Theorem.,1997,8,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc8.html#Clausen97,https://doi.org/10.1007/s002000050067 +Harald Niederreiter,A New Construction of Algebraic Geometry Codes.,1999,9,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc9.html#NiederreiterXL99,https://doi.org/10.1007/s002000050111 +Hoon Hong,Ore Subresultant Coefficients in Solutions.,2001,12,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc12.html#Hong01a,https://doi.org/10.1007/s002000100082 +J. A. Domínguez Pérez,Convolutional Codes of Goppa Type.,2004,15,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc15.html#PerezPS04,https://doi.org/10.1007/s00200-004-0151-y +Harald Niederreiter,A New Efficient Factorization Algorithm for Polynomial over Small Finite Fields.,1993,4,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc4.html#Niederreiter93,https://doi.org/10.1007/BF01386831 +René Thiemann,Adding constants to string rewriting.,2008,19,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc19.html#ThiemannZGS08,https://doi.org/10.1007/s00200-008-0060-6 +Rudolf Lidl,Computational Problems in the Theory of Finite Fields.,1991,2,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc2.html#Lidl91,https://doi.org/10.1007/BF01810569 +Yoshinori Aono,On the optimality of lattices for the coppersmith technique.,2018,29,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc29.html#AonoASW18,https://doi.org/10.1007/s00200-017-0336-9 +Jennifer D. Key,Partial permutation decoding for MacDonald codes.,2016,27,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc27.html#KeyS16,https://doi.org/10.1007/s00200-016-0286-7 +Hirokazu Anai,Editorial.,2007,18,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc18.html#AnaiS07,https://doi.org/10.1007/s00200-007-0051-z +Carlos Galindo,On the evaluation codes given by simple $$\delta $$ 8* -sequences.,2016,27,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc27.html#GalindoP16,https://doi.org/10.1007/s00200-015-0271-6 +San Ling,Duadic Codes over F2 + uF2.,2001,12,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc12.html#LingS01,https://doi.org/10.1007/s002000100079 +Alexander Barg,Two families of low-correlated binary sequences.,1996,7,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc7.html#Barg96,https://doi.org/10.1007/BF01293261 +Bernd Sturmfels,Structural Gröbner Basis Detection.,1997,8,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc8.html#SturmfelsW97,https://doi.org/10.1007/s002000050063 +Takao Kato,Non-degenerate Linear Codes Determined by their Weight Enumerators.,2003,13,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc13.html#Kato03,https://doi.org/10.1007/s00200-002-0111-3 +Peter J. Vassiliou,Tangential Characteristic Symmetries and First Order Hyperbolic Systems.,2001,11,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc11.html#Vassiliou01,https://doi.org/10.1007/s002000000051 +Changqing Xu,Nearly Completely Positive Graphs.,2002,13,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc13.html#Xu02,https://doi.org/10.1007/s002000100076 +Behrooz Khosravi,The Number of Isomorphism Classes of Finite Groups with the set of Order Components of C4(q).,2005,15,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc15.html#KhosraviKK05,https://doi.org/10.1007/s00200-004-0166-4 +Norbert Kuhn,Computing Presentations for Subgroups of Polycyclic Groups and of Context-Free Groups.,1994,5,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc5.html#KuhnMO94,https://doi.org/10.1007/BF01225643 +J. F. Pommaret,Generalized Bezout Identity.,1998,9,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc9.html#PommaretQ98,https://doi.org/10.1007/s002000050096 +Fengrong Zhang,New secondary constructions of Bent functions.,2016,27,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc27.html#ZhangCHZ16,https://doi.org/10.1007/s00200-016-0287-6 +Guillem Godoy,Undecidable properties of flat term rewrite systems.,2009,20,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc20.html#GodoyH09,https://doi.org/10.1007/s00200-009-0097-1 +Jingwei Zhang,Linear complexity of generalized cyclotomic binary sequences of length 2pm.,2010,21,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc21.html#ZhangZM10,https://doi.org/10.1007/s00200-009-0116-2 +Stephen J. Maybank,The critical line congruence for reconstruction from three images.,1995,6,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc6.html#Maybank95,https://doi.org/10.1007/BF01225646 +Carlos Munuera,Bounding the Trellis State Complexity of Algebraic Geometric Codes.,2004,15,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc15.html#MunueraT04,https://doi.org/10.1007/s00200-004-0150-z +Yagati N. Lakshman,Sparse shifts for univariate polynomials.,1996,7,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc7.html#LakshmanS96,https://doi.org/10.1007/BF01293594 +Helmut Meyn,On the Construction of Irreducible Self-Reciprocal Polynomials Over Finite Fields.,1990,1,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc1.html#Meyn90,https://doi.org/10.1007/BF01810846 +Martin Rötteler,Representation-theoretical properties of the approximate quantum Fourier transform.,2008,19,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc19.html#RottelerB08,https://doi.org/10.1007/s00200-008-0072-2 +Jingwei Zhang,The linear complexity of a class of binary sequences with period $$2p$$ 2 p.,2015,26,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc26.html#ZhangZ15,https://doi.org/10.1007/s00200-015-0261-8 +Y. Kaipainen,On the Covering Radius of Long 5-ary BCH Codes with Minimum Distance 7.,1997,8,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc8.html#KaipainenS97,https://doi.org/10.1007/s002000050078 +Francis Clarke,The Discrete Fourier Transform of a Recurrent Sequence.,1997,8,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc8.html#Clarke97,https://doi.org/10.1007/s002000050085 +Wolfram Koepf,Closed form Laurent-Puiseux series of algebraic functions.,1995,7,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc7.html#Koepf95,https://doi.org/10.1007/BF01613613 +Jean-Pierre Dedieu,Localization of an Algebraic Hypersurface by the Exclusion Algorithm.,1991,2,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc2.html#DedieuY91,https://doi.org/10.1007/BF01614147 +San Ling,Nonlinear p-ary Sequences.,2003,14,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc14.html#LingS03,https://doi.org/10.1007/s00200-003-0130-8 +Edoardo Ballico,The Horace Method for Error-Correcting Codes.,2006,17,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc17.html#BallicoF06,https://doi.org/10.1007/s00200-006-0012-y +Zhengchun Zhou,New p-ary sequence family with low correlation and large linear span.,2011,22,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc22.html#ZhouTPP11,https://doi.org/10.1007/s00200-011-0151-7 +Michael Weller,Construction of Large Permutation Representations for Matrix Groups II.,2001,11,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc11.html#Weller01,https://doi.org/10.1007/s002000100058 +José Carlos Rosales,Bracelet monoids and numerical semigroups.,2016,27,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc27.html#RosalesBT16,https://doi.org/10.1007/s00200-015-0274-3 +Jérémy Berthomieu,Polynomial root finding over local rings and application to error correcting codes.,2013,24,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc24.html#BerthomieuLQ13,https://doi.org/10.1007/s00200-013-0200-5 +Rajesh Nishtala,When cache blocking of sparse matrix vector multiply works and why.,2007,18,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc18.html#NishtalaVDY07,https://doi.org/10.1007/s00200-007-0038-9 +Antoine Lobstein,On New Perfect Binary Nonlinear Codes.,1997,8,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc8.html#LobsteinZ97,https://doi.org/10.1007/s002000050080 +Michaël Rusinowitch,Automated deduction with associative-commutative operators.,1995,6,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc6.html#RusinowitchV95,https://doi.org/10.1007/BF01270929 +Miao Tang,Erratum to: On the error linear complexity spectrum of $$p^{n}$$ p n -periodic binary sequences.,2014,25,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc25.html#TangZ14,https://doi.org/10.1007/s00200-014-0221-8 +Volker Weispfenning,Quantifier Elimination for Real Algebra - the Quadratic Case and Beyond.,1997,8,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc8.html#Weispfenning97,https://doi.org/10.1007/s002000050055 +Alfred Menezes,Cryptographic implications of Hess' generalized GHS attack.,2006,16,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc16.html#MenezesT06,https://doi.org/10.1007/s00200-005-0186-8 +Manfred Göbel,On the Number of Special Permutation-Invariant Orbits and Terms.,1997,8,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc8.html#Gobel97,https://doi.org/10.1007/s002000050088 +Thomas Breuer,Integral Bases for Subfields of Cyclotomic Fields.,1997,8,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc8.html#Breuer97,https://doi.org/10.1007/s002000050065 +Xiaoni Du,On pseudorandom sequences of k symbols constructed using finite fields.,2014,25,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc25.html#DuL14,https://doi.org/10.1007/s00200-014-0224-5 +Alfred Scheerhorn,Trace- and Norm-Compatible Extensions of Finite Fields.,1992,3,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc3.html#Scheerhorn92,https://doi.org/10.1007/BF01268660 +Tony C. Scott,Asymptotics of Quantum Mechanical Atom-Ion Systems.,2002,13,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc13.html#ScottAA02,https://doi.org/10.1007/s002000200100 +Juana Sendra,Rational parametrization of conchoids to algebraic curves.,2010,21,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc21.html#SendraS10,https://doi.org/10.1007/s00200-010-0126-0 +Yonglin Cao,Cyclic codes over F2m[u] / and#10216*uk⟩ of oddly even length.,2016,27,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc27.html#CaoCF16,https://doi.org/10.1007/s00200-015-0281-4 +Riccardo Aragona,On weak differential uniformity of vectorial Boolean functions as a cryptographic criterion.,2016,27,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc27.html#AragonaCMS16,https://doi.org/10.1007/s00200-016-0285-8 +Alexander Bockmayr,Conditional Narrowing Modulo a Set of Equations.,1993,4,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc4.html#Bockmayr93,https://doi.org/10.1007/BF01202035 +Josef Schicho,Computational aspects of gonal maps and radical parametrization of curves.,2013,24,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc24.html#SchichoSW13,https://doi.org/10.1007/s00200-013-0205-0 +Joris van der Hoeven,On the complexity of skew arithmetic.,2016,27,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc27.html#Hoeven16,https://doi.org/10.1007/s00200-015-0269-0 +Yang Zhang,Cryptanalysis of a key exchange protocol based on the ring Ep(m).,2018,29,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc29.html#Zhang18,https://doi.org/10.1007/s00200-017-0332-0 +Manuel González Sarabia,Minimum distance of some evaluation codes.,2013,24,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc24.html#SarabiaMH13,https://doi.org/10.1007/s00200-013-0184-1 +Blair K. Spearman,Solvable Brioschi Resolvents.,2003,13,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc13.html#Spearman03,https://doi.org/10.1007/s00200-002-0108-y +Francesca Cioffi,Remarks on the Computation of Minimal Finite Free Resolutions.,2001,12,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc12.html#Cioffi01,https://doi.org/10.1007/s002000100075 +Dongyoung Roh,The l-th power Diffie-Hellman problem and the l-th root Diffie-Hellman problem.,2018,29,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc29.html#RohKH18,https://doi.org/10.1007/s00200-017-0321-3 +Masaya Yasuda,Computational hardness of IFP and ECDLP.,2016,27,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc27.html#YasudaSKI16,https://doi.org/10.1007/s00200-016-0291-x +Eliseo Sarmiento,The minimum distance of parameterized codes on projective tori.,2011,22,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc22.html#SarmientoPV11,https://doi.org/10.1007/s00200-011-0148-2 +Mohamed Elkadi,Residue and Implicitization Problem for Rational Surfaces.,2004,14,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc14.html#ElkadiM04,https://doi.org/10.1007/s00200-003-0139-z +Zhimin Sun,Aperiodic correlation of Kasami sequences in the small set.,2011,22,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc22.html#SunZSH11,https://doi.org/10.1007/s00200-011-0152-6 +David A. Plaisted,Special Cases and Substitutes for Rigid E-Unification.,2000,10,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc10.html#Plaisted00,https://doi.org/10.1007/s002000050001 +Florentin Ipate,An Integrated Refinement and Testing Method for Stream X-machines.,2002,13,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc13.html#IpateH02,https://doi.org/10.1007/s002000100090 +Ian F. Blake,Explicit Factorization of x2k + 1 over Fp with Prime p= 3 mod 4.,1993,4,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc4.html#BlakeGM93,https://doi.org/10.1007/BF01386832 +Ilia N. Ponomarenko,Graph Isomorphism Problem and 2-Closed Permutation Groups.,1994,5,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc5.html#Ponomarenko94,https://doi.org/10.1007/BF01196622 +Yogesh Kumar,Affine equivalence and non-linearity of permutations over Zn.,2017,28,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc28.html#KumarMPS17,https://doi.org/10.1007/s00200-016-0307-6 +James C. Beaumont,Testing elementary function identities using CAD.,2007,18,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc18.html#BeaumontBDP07,https://doi.org/10.1007/s00200-007-0052-y +Toufiq Benbouziane,Polynomial parametrization of nonsingular complete intersection curves.,2007,18,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc18.html#BenbouzianeHK07,https://doi.org/10.1007/s00200-007-0050-0 +Ariane Péladan-Germa,Testing Equality in Differential Ring Extensions Defined by PDE's and Limit Conditions.,2002,13,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc13.html#Peladan-Germa02,https://doi.org/10.1007/s00200-002-0101-5 +Steven T. Dougherty,Constructions of self-dual codes and formally self-dual codes over rings.,2016,27,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc27.html#DoughertyKS16,https://doi.org/10.1007/s00200-016-0288-5 +Harald Niederreiter,An Enumeration Formula for Certain Irreducible Polynomials with an Application to the Construction of Irreducible Polynomials over the Binary Field.,1990,1,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc1.html#Niederreiter90a,https://doi.org/10.1007/BF01810295 +Tomik Yaghoobian,Two New Decoding Algorithms for Reed-Solomon Codes.,1994,5,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc5.html#YaghoobianB94,https://doi.org/10.1007/BF01196623 +Tim Blackmore,Matrix-Product Codes over Fq.,2001,12,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc12.html#BlackmoreN01,https://doi.org/10.1007/PL00004226 +Nadia Ben Atti,The Berlekamp-Massey Algorithm revisited.,2006,17,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc17.html#AttiDL06,https://doi.org/10.1007/s00200-005-0190-z +Miao Tang,On the error linear complexity spectrum of pn-periodic binary sequences.,2013,24,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc24.html#TangZ13,https://doi.org/10.1007/s00200-013-0210-3 +Björn Grohmann,Slim normal bases and basefield transforms.,2007,18,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc18.html#Grohmann07,https://doi.org/10.1007/s00200-007-0045-x +Yanling Li,Three classes of binary linear codes with good parameters.,2016,27,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc27.html#LiH16,https://doi.org/10.1007/s00200-016-0292-9 +Yun Gao,1-Generator quasi-cyclic and generalized quasi-cyclic codes over the ring ™4*4[u]/〈u2-1〉.,2017,28,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc28.html#GaoGWF17,https://doi.org/10.1007/s00200-017-0315-1 +Mihir Bellare,Protecting against key-exposure: strongly key-insulated encryption with optimal threshold.,2006,16,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc16.html#BellareP06,https://doi.org/10.1007/s00200-005-0183-y +Michele Elia,The Rabin cryptosystem revisited.,2015,26,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc26.html#EliaPS15,https://doi.org/10.1007/s00200-014-0237-0 +Simon Litsyn,Character Sum Constructions of Constrained Error-Correcting Codes.,1994,5,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc5.html#LitsynT94,https://doi.org/10.1007/BF01196624 +W. Fish,Binary codes and permutation decoding sets from the graph products of cycles.,2017,28,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc28.html#Fish17,https://doi.org/10.1007/s00200-016-0310-y +A. A. Zain,Dual codes of systematic group codes over abelian groups.,1996,8,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc8.html#ZainR96,https://doi.org/10.1007/s002000050054 +Maribel Fernández,Narrowing Based Procedures for Equational Disunification.,1992,3,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc3.html#Fernandez92,https://doi.org/10.1007/BF01189020 +Thomas Siebert,Recursive Computation of Free Resolutions and a Generalized Koszul Complex.,2003,14,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc14.html#Siebert03,https://doi.org/10.1007/s00200-003-0120-x +Thom Mulders,On Short Multiplications and Divisions.,2000,11,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc11.html#Mulders00,https://doi.org/10.1007/s002000000037 +J. Rafael Sendra,An algebraic analysis of conchoids to algebraic curves.,2008,19,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc19.html#SendraS08,https://doi.org/10.1007/s00200-008-0081-1 +Jacques Patarin,Mirror theory and cryptography.,2017,28,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc28.html#Patarin17,https://doi.org/10.1007/s00200-017-0326-y +Abdallah Assi,The Virtues of Laziness: Complexity of the Tangent Cone Algorithm.,1993,4,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc4.html#AssiM93,https://doi.org/10.1007/BF01200147 +Braden J. Phillips,Highly parallel modular multiplication in the residue number system using sum of residues reduction.,2010,21,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc21.html#PhillipsKL10,https://doi.org/10.1007/s00200-010-0124-2 +Liwei Chang,A novel construction of optimal multi-sender authentication code from singular pseudo-symplectic geometry over finite fields.,2014,25,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc25.html#ChangZGGY14,https://doi.org/10.1007/s00200-014-0235-2 +G. Meletiou,A Note on Discrete Logarithms in Finite Fields.,1992,3,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc3.html#MeletiouM92,https://doi.org/10.1007/BF01189026 +J. Rafael Sendra,Rationality Analysis and Direct Parametrization of Generalized Offsets to Quadrics.,2000,11,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc11.html#SendraS00,https://doi.org/10.1007/s002000000039 +Kai Werther,The Complexity of Sparse Polynomial Interpolation over Finite Fields.,1994,5,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc5.html#Werther94,https://doi.org/10.1007/BF01438278 +Maria Isabel Gonzalez Vasco,In search of mathematical primitives for deriving universal projective hash families.,2008,19,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc19.html#VascoV08,https://doi.org/10.1007/s00200-008-0068-y +Graham H. Norton,On the Structure of Linear and Cyclic Codes over a Finite Chain Ring.,2000,10,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc10.html#NortonS00,https://doi.org/10.1007/PL00012382 +Solange Coupet-Grimal,An effective proof of the well-foundedness of the multiset path ordering.,2006,17,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc17.html#Coupet-GrimalD06,https://doi.org/10.1007/s00200-006-0020-y +Dabin Zheng,More classes of permutation polynomials of the form (xpm - x+8*)s + L(x).,2017,28,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc28.html#ZhengC17,https://doi.org/10.1007/s00200-016-0305-8 +G. Fang,Bounds and Constructions of Asymmetric or Unidirectional Error-Correcting Codes.,1992,3,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc3.html#FangT92,https://doi.org/10.1007/BF01294837 +Igor E. Shparlinski,Noisy interpolation of sparse polynomials in finite fields.,2005,16,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc16.html#ShparlinskiW05,https://doi.org/10.1007/s00200-005-0180-1 +Gerhard Kowol,On Strong Dickson Pseudoprimes.,1992,3,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc3.html#Kowol92,https://doi.org/10.1007/BF01387195 +Palash Sarkar 0001,A simple method for obtaining relations among factor basis elements for special hyperelliptic curves.,2017,28,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc28.html#SarkarS17,https://doi.org/10.1007/s00200-016-0299-2 +Grégoire Lecerf,New recombination algorithms for bivariate polynomial factorization based on Hensel lifting.,2010,21,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc21.html#Lecerf10,https://doi.org/10.1007/s00200-010-0121-5 +Jürgen Gerhard,Fast Modular Algorithms for Squarefree Factorization and Hermite Integration.,2001,11,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc11.html#Gerhard01,https://doi.org/10.1007/PL00004222 +Dietrich Burde,Classification of Novikov algebras.,2013,24,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc24.html#BurdeG13,https://doi.org/10.1007/s00200-012-0180-x +Anshul Gupta,A Shared- and distributed-memory parallel general sparse direct solver.,2007,18,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc18.html#Gupta07,https://doi.org/10.1007/s00200-007-0037-x +Joachim von zur Gathen,Orders of Gauss Periods in Finite Fields.,1998,9,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc9.html#GathenS98,https://doi.org/10.1007/s002000050093 +Jan Verschelde,Symbolic Homotopy Construction.,1993,4,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc4.html#VerscheldeC93,https://doi.org/10.1007/BF01202036 +Hans Zantema,A Complete Characterization of Termination of 0p 1q->* 1r 0s.,2000,11,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc11.html#ZantemaG00,https://doi.org/10.1007/s002009900019 +José R. Herrero,Analysis of a sparse hypermatrix Cholesky with fixed-sized blocking.,2007,18,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc18.html#HerreroN07,https://doi.org/10.1007/s00200-007-0039-8 +Margherita Guida,Minimal free resolutions of some configurations of fat lines.,2014,25,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc25.html#Guida14,https://doi.org/10.1007/s00200-014-0229-0 +Chengju Li,Unit time-phase signal sets with the explicit maximum cross ambiguity amplitudes.,2014,25,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc25.html#LiY14,https://doi.org/10.1007/s00200-014-0234-3 +Ferdinando Mora,De Nugis Groebnerialium 2: Applying Macaulay's Trick in Order to Easily Write a Gröbner Basis.,2003,13,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc13.html#Mora03,https://doi.org/10.1007/s00200-002-0112-2 +Conchita Martínez-Pérez,Self-dual extended cyclic codes.,2006,17,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc17.html#Martinez-PerezW06,https://doi.org/10.1007/s00200-005-0191-y +Tony C. Scott,General relativity and quantum mechanics: towards a generalization of the Lambert W function A Generalization of the Lambert W Function.,2006,17,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc17.html#ScottMM06,https://doi.org/10.1007/s00200-006-0196-1 +Rumen N. Daskalov,Bounds on Minimum Distance for Linear Codes over GF(5).,1999,9,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc9.html#DaskalovG99,https://doi.org/10.1007/s002000050117 +Tino Schulz,Envelope computation in the plane by approximate implicitization.,2011,22,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc22.html#SchulzJ11,https://doi.org/10.1007/s00200-011-0149-1 +Katsusuke Nabeshima,Computing Tjurina stratifications of and#956*-constant deformations via parametric local cohomology systems.,2016,27,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc27.html#NabeshimaT16,https://doi.org/10.1007/s00200-016-0289-4 +Wenfeng Jiang,New family of binary sequences of period 4(2 n - 1) with low correlation.,2008,19,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc19.html#JiangHTZ08,https://doi.org/10.1007/s00200-008-0082-0 +Anne Duval,Kocacic's Algorithm and Its Application to Some Families of Special Functions.,1992,3,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc3.html#DuvalL92,https://doi.org/10.1007/BF01268661 +Jonas Månsson,A generalized Ufnarovski graph.,2005,16,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc16.html#ManssonN05,https://doi.org/10.1007/s00200-005-0178-8 +Noriko Hyodo,Solving and visualizing nonlinear parametric constraints in control based on quantifier elimination.,2007,18,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc18.html#HyodoHYHA07,https://doi.org/10.1007/s00200-007-0056-7 +Tony Shaska,Computational algebraic geometry and its applications.,2013,24,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc24.html#Shaska13,https://doi.org/10.1007/s00200-013-0204-1 +Patrice Parraud,New Design of Quaternary Sequences.,2002,13,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc13.html#Parraud02,https://doi.org/10.1007/s002000200093 +Ferruh özbudak,Note on Niederreiter-Xing's Propagation Rule for Linear Codes.,2002,13,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc13.html#OezbudakS02,https://doi.org/10.1007/s002000100091 +Manuel Bronstein,A Unification of Liouvillian Extensions.,1990,1,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc1.html#Bronstein90,https://doi.org/10.1007/BF01810844 +François Ollivier,Looking for the order of a system of arbitrary ordinary differential equations.,2009,20,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc20.html#Ollivier09,https://doi.org/10.1007/s00200-009-0087-3 +Bikash Kumar Dey,DFT Domain Characterization of Quasi-Cyclic Codes.,2003,13,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc13.html#DeyR03,https://doi.org/10.1007/s00200-003-0117-5 +Irwin S. Pressman,The Replica Location Problem and Chebyshev Polynomials of the Second Kind.,2003,13,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc13.html#Pressman03,https://doi.org/10.1007/s00200-002-0113-1 +Joachim Althaler,A Generalization of the Massey-Ding Algorithm.,1998,9,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc9.html#AlthalerD98,https://doi.org/10.1007/s002000050092 +Marina V. Kondratieva,Jacobi's bound for independent systems of algebraic partial differential equations.,2009,20,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc20.html#KondratievaMP09,https://doi.org/10.1007/s00200-009-0092-6 +Hiroshi Yoshida,Elliptic curves and Fibonacci numbers arising from Lindenmayer system with symbolic computation.,2011,22,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc22.html#YoshidaMK11,https://doi.org/10.1007/s00200-011-0143-7 +Willibald More,Fast evaluation of Rédei functions.,1995,6,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc6.html#More95,https://doi.org/10.1007/BF01195335 +François Boulier,Computing representations for radicals of finitely generated differential ideals.,2009,20,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc20.html#BoulierLOP09,https://doi.org/10.1007/s00200-009-0091-7 +Stéphane Collart,A combinatorial result on Gröbner Fans with an application to universal Gröbner bases.,1996,7,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc7.html#CollartM96,https://doi.org/10.1007/BF01293595 +Thomas Cluzeau,Probabilistic algorithms for computing resolvent representations of regular differential ideals.,2008,19,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc19.html#CluzeauH08,https://doi.org/10.1007/s00200-008-0079-8 +Javier Herranz,Attribute-based versions of Schnorr and ElGamal.,2016,27,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc27.html#Herranz16,https://doi.org/10.1007/s00200-015-0270-7 +Marcus Hausdorf,An Efficient Algebraic Algorithm for the Geometric Completion to Involution.,2002,13,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc13.html#HausdorfS02,https://doi.org/10.1007/s002000200099 +Agostino Dovier,Solvable Set/Hyperset Contexts: II. A Goal-Driven Unification Algorithm for the Blended Case.,1999,9,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc9.html#DovierOP99,https://doi.org/10.1007/s002000050109 +Sebastian Egner,Semi-numerical solution to 6/6-Stewart-platform kinematics based on symmetry.,1996,7,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc7.html#Egner96,https://doi.org/10.1007/BF01293263 +Gerardo Vega,The weight distribution for any irreducible cyclic code of length $$p^m$$ p m.,2018,29,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc29.html#Vega18,https://doi.org/10.1007/s00200-017-0347-6 +René Thiemann,The size-change principle and dependency pairs for termination of term rewriting.,2005,16,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc16.html#ThiemannG05,https://doi.org/10.1007/s00200-005-0179-7 +Giovannina Albano,A Koszul Decomposition for the Computation of Linear Syzygies.,2001,11,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc11.html#AlbanoS01,https://doi.org/10.1007/s002000000043 +Dae-Woong Lee,Near-rings on digital Hopf groups.,2018,29,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc29.html#Lee18,https://doi.org/10.1007/s00200-017-0341-z +Yinan Kong,Modular multiplication using the core function in the residue number system.,2016,27,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc27.html#KongAK16,https://doi.org/10.1007/s00200-015-0268-1 +Willem A. de Graaf,Computing Levi Decompositions in Lie algebras.,1997,8,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc8.html#GraafIKR97,https://doi.org/10.1007/s002000050066 +Moulay A. Barkatou,An algorithm to compute the exponential part of a formal fundamental matrix solution of a linear differential system.,1996,8,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc8.html#Barkatou96,https://doi.org/10.1007/s002000050048 +Toshiaki Shoji,On the computation of unipotent characters of finite classical groups.,1996,7,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc7.html#Shoji96,https://doi.org/10.1007/BF01190328 +Teresa Krick,On Intrinsic Bounds in the Nullstellensatz.,1997,8,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc8.html#KrickSS97,https://doi.org/10.1007/s002000050057 +Ulrich Oberst,A constructive test for exponential stability of linear time-varying discrete-time systems.,2017,28,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc28.html#Oberst17,https://doi.org/10.1007/s00200-017-0314-2 +Fokko du Cloux,The state of the art in the computation of Kazhdan-Lusztig polynomials.,1996,7,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc7.html#Cloux96,https://doi.org/10.1007/BF01190330 +Karen O. Egiazarian,On Generalized Fibonacci Cubes and Unitary Transforms.,1997,8,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc8.html#EgiazarianA97,https://doi.org/10.1007/s002000050074 +H. Michael Möller,On Decomposing Systems of Polynomial Equations with Finitely Many Solutions.,1993,4,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc4.html#Moller93,https://doi.org/10.1007/BF01200146 +Bernhard Gramlich,Generalized Sufficient Conditions for Modular Termination of Rewriting.,1994,5,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc5.html#Gramlich94,https://doi.org/10.1007/BF01190827 +B. Panbehkar,An automatic semigroup of languages.,2017,28,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc28.html#PanbehkarD17,https://doi.org/10.1007/s00200-016-0306-7 +Joan-Josep Climent,On the arithmetic of the endomorphisms ring End(\mathbbZp and**\mathbbZp2).,2011,22,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc22.html#ClimentNT11,https://doi.org/10.1007/s00200-011-0138-4 +Thomas Cluzeau,Computing Hypergeometric Solutions of Linear Recurrence Equations.,2006,17,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc17.html#CluzeauH06,https://doi.org/10.1007/s00200-005-0192-x +Serge G. Vladut,Two applications of Weil-Serre's explicit formula.,1996,7,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc7.html#Vladut96,https://doi.org/10.1007/BF01195533 +Michele Rossi,A numerical ampleness criterion via Gale duality.,2017,28,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc28.html#RossiT17,https://doi.org/10.1007/s00200-016-0308-5 +Giorgos Kapetanakis,An extension of the (strong) primitive normal basis theorem.,2014,25,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc25.html#Kapetanakis14,https://doi.org/10.1007/s00200-014-0230-7 +Neha Goel,Undeniable signature scheme based over group ring.,2016,27,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc27.html#GoelGDD16,https://doi.org/10.1007/s00200-016-0293-8 +Joos Heintz,On the Time-Space Complexity of Geometric Elimination Procedures.,2001,11,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc11.html#HeintzMW01,https://doi.org/10.1007/s002000000046 +Jean Lévine,On necessary and sufficient conditions for differential flatness.,2011,22,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc22.html#Levine11,https://doi.org/10.1007/s00200-010-0137-x +Igor E. Shparlinski,Finding Irreducible and Primitive Polynomials.,1993,4,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc4.html#Shparlinski93,https://doi.org/10.1007/BF01200150 +Morteza Esmaeili,Construction of binary minimal product parity-check matrices.,2008,19,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc19.html#Esmaeili08,https://doi.org/10.1007/s00200-008-0069-x +Christian Ronse,A Lattice-Theoretical Framework for Annular Filters in Morphological Image Processing.,1998,9,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc9.html#RonseH98,https://doi.org/10.1007/s002000050095 +Yangjiang Wei,Dynamics of linear systems over finite commutative rings.,2016,27,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc27.html#WeiXZ16,https://doi.org/10.1007/s00200-016-0290-y +René Brandenberg,Algebraic Methods for Computing Smallest Enclosing and Circumscribing Cylinders of Simplices.,2004,14,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc14.html#BrandenbergT04,https://doi.org/10.1007/s00200-003-0146-0 +Roberta Evans Sabin,On Minimum Distance Bounds for Abelian Codes.,1992,3,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc3.html#Sabin92,https://doi.org/10.1007/BF01268659 +Hua-Chieh Li,Space-time block codes which can be identified as rings.,2007,18,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc18.html#Li07,https://doi.org/10.1007/s00200-007-0040-2 +Serhii Dyshko,Geometric approach to the MacWilliams Extension Theorem for codes over module alphabets.,2017,28,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc28.html#Dyshko17,https://doi.org/10.1007/s00200-017-0324-0 +Omran Ahmadi,The trace spectra of polynomial bases for F2n.,2007,18,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc18.html#Ahmadi07,https://doi.org/10.1007/s00200-007-0044-y +Ilia N. Ponomarenko,Graph Algebras and the Graph Isomorphism Problem.,1994,5,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc5.html#Ponomarenko94a,https://doi.org/10.1007/BF01225642 +Ferruh özbudak,Fibre products of Kummer covers and curves with many points.,2007,18,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc18.html#OzbudakT07,https://doi.org/10.1007/s00200-007-0047-8 +Richard Liska,Quantifier elimination supported proofs in the numerical treatment of fluid flows.,2007,18,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc18.html#LiskaV07,https://doi.org/10.1007/s00200-007-0057-6 +Morteza Esmaeili,The Minimal Generator Matrix of a Vector Space.,1999,10,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc10.html#EsmaeiliGS99,https://doi.org/10.1007/s002000050119 +James A. Muir,On the low hamming weight discrete logarithm problem for nonadjacent representations.,2006,16,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc16.html#MuirS06,https://doi.org/10.1007/s00200-005-0187-7 +Christophe Mouaha,On Q-Ary Images of Self-Dual Codes.,1992,3,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc3.html#Mouaha92,https://doi.org/10.1007/BF01294839 +Stephen D. Cohen,Primitive Normal Bases with Prescribed Trace.,1999,9,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc9.html#CohenH99,https://doi.org/10.1007/s002000050112 +Wenfeng Jiang,On the generalized large set of Kasami sequences.,2010,21,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc21.html#JiangHZ10,https://doi.org/10.1007/s00200-010-0131-3 +Stephen S.-T. Yau,Notes on classification of toric surface codes of dimension 5.,2009,20,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc20.html#YauZ09,https://doi.org/10.1007/s00200-009-0096-2 +Zohreh Rajabi,Some cyclic codes from some monomials.,2017,28,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc28.html#RajabiK17,https://doi.org/10.1007/s00200-017-0317-z +Alev Topuzoglu,On the linear complexity profile of nonlinear congruential pseudorandom number generators of higher orders.,2005,16,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc16.html#TopuzogluW05,https://doi.org/10.1007/s00200-005-0181-0 +Trygve Johnsen,Scroll codes over curves of higher genus.,2010,21,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc21.html#JohnsenR10,https://doi.org/10.1007/s00200-010-0130-4 +YoungJu Choie,Codes over Sigma2m and Jacobi forms over the Quaternions.,2004,15,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc15.html#ChoieD04,https://doi.org/10.1007/s00200-004-0153-9 +Felix Ulmer,Note on algebraic solutions of differential equations with known finite Galois group.,2005,16,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc16.html#Ulmer05,https://doi.org/10.1007/s00200-005-0177-9 +Aless Lasaruk,Weak quantifier elimination for the full linear theory of the integers.,2007,18,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc18.html#LasarukS07,https://doi.org/10.1007/s00200-007-0053-x +P. Vijay Kumar,An Expansion for the Coordinates of the Trace Function over Galois Rings.,1997,8,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc8.html#KumarH97,https://doi.org/10.1007/s002000050072 +Arturas Dubickas,On the location of roots of non-reciprocal integer polynomials.,2011,22,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc22.html#Dubickas11,https://doi.org/10.1007/s00200-010-0134-0 +Steven T. Dougherty,Higher weights for codes over rings.,2011,22,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc22.html#DoughertyHL11,https://doi.org/10.1007/s00200-011-0140-x +Klaus Madlener,A Generalization of Gröbner Basis Algorithms to Nilpotent Group Rings.,1997,8,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc8.html#MadlenerR97,https://doi.org/10.1007/s002000050056 +Massimo Giulietti,On the Extendibility of Near-MDS Elliptic Codes.,2004,15,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc15.html#Giulietti04,https://doi.org/10.1007/s00200-003-0141-5 +Yvonne Hitchcock,Modular proofs for key exchange: rigorous optimizations in the Canetti-Krawczyk model.,2006,16,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc16.html#HitchcockBN06,https://doi.org/10.1007/s00200-005-0185-9 +Dieter Jungnickel,The isomorphism problem for abelian projective planes.,2008,19,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc19.html#Jungnickel08,https://doi.org/10.1007/s00200-008-0070-4 +Eckhard Pflügel,Effective Formal Reduction of Linear Differential Systems.,2000,10,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc10.html#Pflugel00,https://doi.org/10.1007/s002000050002 +Florian Luca,Counting permutation equivalent degree six binary polynomials invariant under the cyclic group.,2017,28,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc28.html#LucaS17,https://doi.org/10.1007/s00200-016-0294-7 +Zihui Liu,Trellis complexity and pseudoredundancy of relative two-weight codes.,2016,27,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc27.html#LiuW16,https://doi.org/10.1007/s00200-015-0276-1 +Nurdagül Anbar,More on quadratic functions and maximal Artin-Schreier curves.,2015,26,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc26.html#AnbarM15,https://doi.org/10.1007/s00200-015-0259-2 +Franz Pauer,Gröbner Bases for Ideals in Laurent Polynomial Rings and their Application to Systems of Difference Equations.,1999,9,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc9.html#PauerU99,https://doi.org/10.1007/s002000050108 +Thérèse Hardin,Eta-Conversion for the Languages of Explicit Substitutions.,1994,5,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc5.html#Hardin94,https://doi.org/10.1007/BF01188746 +Z. Hu,On the Crosscorrelation of Sequences with the Decimation Factor d = (pn+1)/(p+1) - (pn-1)/2.,2001,12,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc12.html#HuLMMSWYZ01,https://doi.org/10.1007/s002000100073 +Maria Grazia Marinari,Gröbner Bases of Ideals Defined by Functionals with an Application to Ideals of Projective Points.,1993,4,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc4.html#MarinariMM93,https://doi.org/10.1007/BF01386834 +Mijail Borges-Quintana,Gröbner bases and combinatorics for binary codes.,2008,19,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc19.html#Borges-QuintanaBFM08,https://doi.org/10.1007/s00200-008-0080-2 +Heeralal Janwa,On Tanner Codes: Minimum Distance and Decoding.,2003,13,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc13.html#JanwaL03,https://doi.org/10.1007/s00200-003-0098-4 +Laurent Gournay,Construction of Roadmaps in Semi-Algebraic Sets.,1993,4,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc4.html#GournayR93,https://doi.org/10.1007/BF01200148 +Gerhard Dorfer,Lattice Structure and Linear Complexity Profile of Nonlinear Pseudorandom Number Generators.,2003,13,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc13.html#DorferW03,https://doi.org/10.1007/s00200-003-0116-6 +Radomir S. Stankovic,From Fourier Expansions to Arithmetic-Haar Expressions on Quaternion Groups.,2001,12,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc12.html#StankovicMA01,https://doi.org/10.1007/s002000100068 +Haode Yan,A class of primitive BCH codes and their weight distribution.,2018,29,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc29.html#Yan18,https://doi.org/10.1007/s00200-017-0320-4 +Mridul Nandi,Verifiability-based conversion from CPA to CCA-secure predicate encryption.,2018,29,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc29.html#NandiP18,https://doi.org/10.1007/s00200-017-0330-2 +Mihai Cipu,Testing degenerate polynomials.,2011,22,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc22.html#CipuDM11,https://doi.org/10.1007/s00200-011-0150-8 +Michael D. Vose,Determining Concepts by Group Membership.,1991,2,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc2.html#Vose91,https://doi.org/10.1007/BF01810573 +Eduardo Sáenz-de-Cabezón,Mincut ideals of two-terminal networks.,2010,21,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc21.html#Saenz-de-CabezonW10,https://doi.org/10.1007/s00200-010-0132-2 +Long Yu,On more bent functions from Dillon exponents.,2015,26,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc26.html#YuLZ15,https://doi.org/10.1007/s00200-015-0258-3 +John F. Canny,Finding Connected Components of a Semialgebraic Set in Subexponential Time.,1991,2,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc2.html#CannyGV91,https://doi.org/10.1007/BF01614146 +Irvin Roy Hentzel,Fast Change of Basis in Algebras.,1992,3,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc3.html#HentzelJ92,https://doi.org/10.1007/BF01294835 +Christophe Mouaha,On asymmetric representations of GF(qm) and self-dual codes.,1995,6,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc6.html#Mouaha95,https://doi.org/10.1007/BF01225645 +Carsten Schneider,Degree Bounds to Find Polynomial Solutions of Parameterized Linear Difference Equations in Pi-Sigma-Fields.,2005,16,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc16.html#Schneider05,https://doi.org/10.1007/s00200-004-0167-3 +Hannu Tarnanen,An Elementary Proof to the Weight Distribution Formula of the First Order Shortened Reed-Muller Coset Code.,1997,8,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc8.html#Tarnanen97,https://doi.org/10.1007/s002000050081 +Thomas Beth,Mathematical Techniques in Cryptology-Editorial.,2006,16,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc16.html#BethGS06,https://doi.org/10.1007/s00200-005-0182-z +Massimiliano Sala,Groebner Bases and Distance of Cyclic Codes.,2002,13,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc13.html#Sala02,https://doi.org/10.1007/s002000200096 +Yonglin Cao,1-generator quasi-cyclic codes over finite chain rings.,2013,24,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc24.html#Cao13,https://doi.org/10.1007/s00200-012-0182-8 +Sonia Pérez-Díaz,Properness and Inversion of Rational Parametrizations of Surfaces.,2002,13,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc13.html#Perez-DiazSS02,https://doi.org/10.1007/s002000100089 +Graham H. Norton,On the annihilator ideal of an inverse form.,2017,28,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc28.html#Norton17,https://doi.org/10.1007/s00200-016-0295-6 +Michael F. Singer,Testing reducibility of linear differential operators: A group theoretic perspective.,1996,7,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc7.html#Singer96,https://doi.org/10.1007/BF01191378 +Jian Gao 0001,Some classes of linear codes over ™4*4+v™4*4 and their applications to construct good and new ™4*4-linear codes.,2017,28,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc28.html#GaoFG17,https://doi.org/10.1007/s00200-016-0300-0 +Tony C. Scott,Exchange Energy for Two-Active-Electron Diatomic Systems Within the Surface Integral Method.,2004,15,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc15.html#ScottAAGMG04,https://doi.org/10.1007/s00200-004-0156-6 +Edgardo Riquelme,Trisection for genus 2 curves in odd characteristic.,2016,27,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc27.html#Riquelme16,https://doi.org/10.1007/s00200-015-0282-3 +Moulay A. Barkatou,An Algorithm for Computing a Companion Block Dianonal Form for a System of Linear Differential Equations.,1993,4,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc4.html#Barkatou93,https://doi.org/10.1007/BF01202037 +Aart Middeldorp,Simple termination is difficult.,1995,6,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc6.html#MiddeldorpG95,https://doi.org/10.1007/BF01225647 +Oliver Pretzel,Extended Classical Goppa Codes.,2001,11,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc11.html#Pretzel01,https://doi.org/10.1007/s002000100059 +Igor E. Shparlinski,On the Naor-Reingold Pseudo-Random Function from Elliptic Curves.,2000,11,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc11.html#Shparlinski00,https://doi.org/10.1007/s002000000023 +Cristina Bertone,Quasi-stable ideals and Borel-fixed ideals with a given Hilbert polynomial.,2015,26,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc26.html#Bertone15,https://doi.org/10.1007/s00200-015-0263-6 +Yagati N. Lakshman,Sparse Shifts for Univariate Polynomials.,1997,8,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc8.html#LakshmanS97,https://doi.org/10.1007/s002000050091 +Kathy J. Horadam,A New Class of Ternary Cocyclic Hadamard Codes.,2003,14,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc14.html#HoradamU03,https://doi.org/10.1007/s00200-003-0124-6 +David F. Miller,Error Control in Residue Number Systems.,2002,13,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc13.html#MillerR02,https://doi.org/10.1007/s00200-002-0103-3 +M. Esmaeili,Generalized quasi-cyclic codes: structural properties and code construction.,2009,20,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc20.html#EsmaeiliY09,https://doi.org/10.1007/s00200-009-0095-3 +Pierre-Louis Cayrel,A pseudorandom number generator based on worst-case lattice problems.,2017,28,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc28.html#CayrelMNLS17,https://doi.org/10.1007/s00200-017-0323-1 +Torsten Minkwitz,Extensions of irreducible representations.,1996,7,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc7.html#Minkwitz96,https://doi.org/10.1007/BF01293597 +Alexei E. Ashikhmin,Fast decoding of non-binary first order Reed-Muller codes.,1996,7,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc7.html#AshikhminL96,https://doi.org/10.1007/BF01195535 +Juan Sabia,Bounds for traces in complete intersections and degrees in the Nullstellensatz.,1995,6,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc6.html#SabiaS95,https://doi.org/10.1007/BF01198015 +Stephen D. Cohen,Primitive Elements in Finite Fields and Costas Arrays.,1991,2,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc2.html#CohenM91a,https://doi.org/10.1007/BF01614150 +Christian Ronse,Reconstructing masks from markers in non-distributive lattices.,2008,19,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc19.html#Ronse08,https://doi.org/10.1007/s00200-008-0064-2 +Michele Elia,Are fifth-degree equations over GF(5m) solvable by radicals?,1995,7,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc7.html#Elia95,https://doi.org/10.1007/BF01613614 +Tor Helleseth,Some Power Mappings with Low Differential Uniformity.,1997,8,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc8.html#HellesethS97,https://doi.org/10.1007/s002000050073 +Paul Camion,On r-Partition Designs in Hamming Spaces.,1991,2,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc2.html#CamionCD91,https://doi.org/10.1007/BF01294330 +Jörn Müller-Quade,Recognizing Simple Subextensions of Purely Transcendental Field Extensions.,2000,11,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc11.html#Muller-QuadeS00,https://doi.org/10.1007/s002000000024 +Mark J. Encarnación,An Efficient Method for Computing Resultant Systems.,1998,9,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc9.html#Encarnacion98,https://doi.org/10.1007/s002000050105 +Gabriele Steidl,Fast Radix-p Discrete Cosine Transform.,1992,3,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc3.html#Steidl92,https://doi.org/10.1007/BF01189022 +Therese C. Y. Lee,Subspaces and polynomial factorizations over finite fields.,1995,6,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc6.html#LeeV95,https://doi.org/10.1007/BF01195333 +Joris van der Hoeven,Multi-point evaluation in higher dimensions.,2013,24,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc24.html#HoevenS13,https://doi.org/10.1007/s00200-012-0179-3 +Erich Kaltofen,Computing the Irreducible Real Factors and Components of an Algebraic Curve.,1990,1,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc1.html#Kaltofen90,https://doi.org/10.1007/BF01810297 +Mireille Boutin,On Reconstructing Configurations of Points in P2 from a Joint Distribution of Invariants.,2005,15,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc15.html#BoutinK05,https://doi.org/10.1007/s00200-004-0168-2 +Anna Maria Bigatti,On the Computation of Hilbert-Poincaré Series.,1991,2,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc2.html#BigattiCR91,https://doi.org/10.1007/BF01810852 +Maria Grazia Marinari,A characterization of stable and Borel ideals.,2005,16,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc16.html#MarinariR05,https://doi.org/10.1007/s00200-005-0171-2 +Stefania Audoly,Procedures to Investigate Injectivity of Polynomial Maps and to Compute the Inverse.,1991,2,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc2.html#AudolyBBD91,https://doi.org/10.1007/BF01810570 +Grégoire Lecerf,Fast separable factorization and applications.,2008,19,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc19.html#Lecerf08,https://doi.org/10.1007/s00200-008-0062-4 +Markus Püschel,Algebraic signal processing theory: Cooley-Tukey type algorithms on the 2-D hexagonal spatial lattice.,2008,19,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc19.html#PuschelR08,https://doi.org/10.1007/s00200-008-0077-x +Ireneusz Sierocki,A Feedback Transformation of the Planning Problems.,1998,9,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc9.html#Sierocki98,https://doi.org/10.1007/s002000050102 +M. R. Darafsheh,Computation of the Dimensions of Symmetry Classes of Tensors Associated with the Finite two Dimensional Projective Special Linear Group.,2000,10,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc10.html#DarafshehP00,https://doi.org/10.1007/s002000050127 +Zihui Liu,On the equivalence of linear codes.,2011,22,Appl. Algebra Eng. Commun. Comput.,2,db/journals/aaecc/aaecc22.html#LiuS11,https://doi.org/10.1007/s00200-011-0142-8 +Mahadev S. Kolluru,Construction of Improved Geometric Goppa Codes from Klein Curves and Klein-like Curves.,2000,10,Appl. Algebra Eng. Commun. Comput.,6,db/journals/aaecc/aaecc10.html#KolluruFR00,https://doi.org/10.1007/s002009900018 +Henk D. L. Hollmann,Universal Sequences.,1997,8,Appl. Algebra Eng. Commun. Comput.,5,db/journals/aaecc/aaecc8.html#HollmannL97,https://doi.org/10.1007/s002000050071 +Naoki Nishida 0001,Termination of narrowing via termination of rewriting.,2010,21,Appl. Algebra Eng. Commun. Comput.,3,db/journals/aaecc/aaecc21.html#NishidaV10,https://doi.org/10.1007/s00200-010-0122-4 +Xiang-dong Hou,Lattice of ideals of the polynomial ring over a commutative chain ring.,2015,26,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc26.html#Hou15,https://doi.org/10.1007/s00200-015-0253-8 +Iiro S. Honkala,Long binary narrow-sense BCH codes are normal.,1996,8,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc8.html#HonkalaKT96,https://doi.org/10.1007/s002000050052 +Luis Hernández Encinas,Isomorphism Classes of Genus-2 Hyperelliptic Curves Over Finite Fields.,2002,13,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc13.html#EncinasMM02,https://doi.org/10.1007/s002000100092 +Yonglin Cao,Concatenated structure of cyclic codes over ™4*4 of length 4n.,2016,27,Appl. Algebra Eng. Commun. Comput.,4,db/journals/aaecc/aaecc27.html#CaoCL16,https://doi.org/10.1007/s00200-015-0283-2 +Françoise Bellegarde,Termination by Completion.,1990,1,Appl. Algebra Eng. Commun. Comput.,,db/journals/aaecc/aaecc1.html#BellegardeL90,https://doi.org/10.1007/BF01810293 +Patrizia M. Gianni,Square-free algorithms in positive characteristic.,1995,7,Appl. Algebra Eng. Commun. Comput.,1,db/journals/aaecc/aaecc7.html#GianniT95,https://doi.org/10.1007/BF01613611 +Yuli Yang,Information-guided communications in MIMO systems with channel state impairments.,2015,15,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm15.html#YangA15,https://doi.org/10.1002/wcm.2389 +Hassan El Morra,A new hybrid heuristic multiuser detector for DS-CDMA communication systems.,2009,9,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm9.html#MorraZS09,https://doi.org/10.1002/wcm.713 +Yifan Li,A hierarchical framework of dynamic relay selection for mobile users and profit maximization for service providers in wireless relay networks.,2014,14,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm14.html#LiWNZ14,https://doi.org/10.1002/wcm.2251 +Ning Xie 0007,An adaptive wideband antenna array receiver of low complexity.,2009,9,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm9.html#XieZ09,https://doi.org/10.1002/wcm.595 +Shih-Feng Hsu,Selecting transition process for WLAN security.,2008,8,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm8.html#HsuL08,https://doi.org/10.1002/wcm.538 +Kashif Mehmood,Dynamic Fractional Frequency Reuse Diversity Design for Intercell Interference Mitigation in Nonorthogonal Multiple Access Multicellular Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#MehmoodNK18,https://doi.org/10.1155/2018/1231047 +Ernestina Cianca,Channel-adaptive techniques in wireless communications: an overview.,2002,2,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm2.html#CiancaLRP02,https://doi.org/10.1002/wcm.98 +Fahd Ahmed Khan,Performance analysis of an opportunistic multi-user cognitive network with multiple primary users.,2015,15,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm15.html#KhanTAQ15,https://doi.org/10.1002/wcm.2478 +Buzhou Tang,Recognizing Continuous and Discontinuous Adverse Drug Reaction Mentions from Social Media Using LSTM-CRF.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#TangHWC18,https://doi.org/10.1155/2018/2379208 +Chia-Wei Tseng,Micro Operator Design Pattern in 5G SDN/NFV Network.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#TsengHTYLC18,https://doi.org/10.1155/2018/3471610 +Sk. Md. Mizanur Rahman,Secure timing synchronization for heterogeneous sensor network using pairing over elliptic curve.,2010,10,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm10.html#RahmanNT10,https://doi.org/10.1002/wcm.735 +Nico Podevijn,TDoA-Based Outdoor Positioning with Tracking Algorithm in a Public LoRa Network.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#PodevijnPTMSHJ18,https://doi.org/10.1155/2018/1864209 +Yong-Seok Kim,Effect of antenna array on the uplink orthogonal multicarrier DS-CDMA system with imperfect power control.,2009,9,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm9.html#KimH09,https://doi.org/10.1002/wcm.731 +Elias Yaacoub,On the impact of D2D traffic offloading on energy efficiency in green LTE-A HetNets.,2015,15,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm15.html#YaacoubGAA15,https://doi.org/10.1002/wcm.2512 +Tingxue Huang,An efficient distributed fault-tolerant protocol for dynamic channel allocation.,2008,8,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm8.html#HuangBAW08,https://doi.org/10.1002/wcm.577 +Chia-Wei Tseng,Task Scheduling for Edge Computing with Agile VNFs On-Demand Service Model toward 5G and Beyond.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#TsengTYLC18,https://doi.org/10.1155/2018/7802797 +Quentin H. Spencer,Performance of MIMO spatial multiplexing algorithms using indoor channel measurements and models.,2004,4,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm4.html#SpencerSS04,https://doi.org/10.1002/wcm.253 +Carlo Vallati,Efficient handoff based on link quality prediction for video streaming in urban transport systems.,2016,16,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm16.html#VallatiMB16,https://doi.org/10.1002/wcm.2684 +Ivan Kholod,Distributed Measurement Data Gathering about Moving Objects.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#KholodPS17,https://doi.org/10.1155/2017/8780560 +Abdulelah Alganas,Power efficient multicasting for pre-cached multiple description traffic in a wireless network.,2016,16,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm16.html#AlganasZ16,https://doi.org/10.1002/wcm.2700 +Hsiao-Hwa Chen,An algebraic approach to generate super-set of perfect complementary codes for interference-free CDMA.,2007,7,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm7.html#ChenCKV07,https://doi.org/10.1002/wcm.388 +Zhiquan Bai,Non-linear chirp based UWB waveform design for suppression of NBI.,2012,12,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm12.html#BaiLYK12,https://doi.org/10.1002/wcm.994 +Syed Tariq Shah,Dynamic Wireless Energy Harvesting and Optimal Distribution in Multipair DF Relay Network with Nonlinear Energy Conversion Model.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ShahCCC18,https://doi.org/10.1155/2018/7638215 +Changqing Yang,Outage performance of orthogonal space-time block code transmission in opportunistic decode-and-forward cooperative networks.,2013,13,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm13.html#YangWCP13,https://doi.org/10.1002/wcm.1134 +Bo Kong,Joint Range-Doppler-Angle Estimation for OFDM-Based RadCom System via Tensor Decomposition.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#KongWDQ18,https://doi.org/10.1155/2018/2708416 +Chao Ren,Three-path successive relaying protocol with blind inter-relay interference cancellation and cooperative non-coherent detection.,2016,16,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm16.html#RenCKYL16,https://doi.org/10.1002/wcm.2724 +Aravind Iyer,Understanding the key performance issues with MAC protocols for multi-hop wireless networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#IyerR06,https://doi.org/10.1002/wcm.439 +Xiaofei Xing,Polytype target coverage scheme for heterogeneous wireless sensor networks using linear programming.,2014,14,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm14.html#XingWL14,https://doi.org/10.1002/wcm.2269 +Mohammad Mursalin Akon,OUR: Optimal Update-based Replacement policy for cache in wireless data access networks with optimal effective hits and bandwidth requirements.,2013,13,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm13.html#AkonISS13,https://doi.org/10.1002/wcm.1182 +Ahmed A. Zewail,Using network coding to achieve the capacity of deterministic relay networks with relay messages.,2016,16,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm16.html#ZewailMNG16,https://doi.org/10.1002/wcm.2691 +Majdi Mansouri,Optimal sensor and path selection for target tracking in wireless sensor networks.,2014,14,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm14.html#Mansouri14,https://doi.org/10.1002/wcm.1241 +Jun Huang 0002,Green Computing and Communications for Smart Portable Devices.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#0002LDA0H18,https://doi.org/10.1155/2018/6839604 +Zhihui Shu,A game theoretic approach for energy-efficient communications in multi-hop cognitive radio networks.,2016,16,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm16.html#ShuQYS16a,https://doi.org/10.1002/wcm.2672 +Dongsheng Han,Sleep Mechanism of Base Station Based on Minimum Energy Cost.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#HanZC18,https://doi.org/10.1155/2018/4202748 +Yong Li 0008,Contact duration aware evaluation for content dissemination delay in mobile social network.,2015,15,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm15.html#LiQJSHZ15,https://doi.org/10.1002/wcm.2355 +W. Yadum,The correlation of diversity/MIMO antenna for portable terminals.,2007,7,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm7.html#YadumN07,https://doi.org/10.1002/wcm.510 +Mahmut Demirtas,Nonoverlay Heterogeneous Network Planning for Energy Efficiency.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#DemirtasS17,https://doi.org/10.1155/2017/6519709 +Yi-Bing Lin,Prefetching for mobile web album.,2016,16,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm16.html#LinH16,https://doi.org/10.1002/wcm.2490 +Xiaoliang Wang,SmartFix: Indoor Locating Optimization Algorithm for Energy-Constrained Wearable Devices.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#Wang0L17,https://doi.org/10.1155/2017/8959356 +Corentin Dupont,An Open IoT Platform to Promote Eco-Sustainable Innovation in Western Africa: Real Urban and Rural Testbeds.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#DupontVPDDK18,https://doi.org/10.1155/2018/1028578 +Zhiyong Du,Learning with handoff cost constraint for network selection in heterogeneous wireless networks.,2016,16,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm16.html#DuWY16,https://doi.org/10.1002/wcm.2525 +Zhihui Shu,A cross-layer study for application-aware multi-hop cognitive radio networks.,2016,16,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm16.html#ShuQYS16,https://doi.org/10.1002/wcm.2557 +Atif Raza Jafri,FPGA Implementation of UFMC Based Baseband Transmitter: Case Study for LTE 10MHz Channelization.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#JafriMZIN18,https://doi.org/10.1155/2018/2139794 +Liang Liu 0001,Coverage analysis for target localization in camera sensor networks.,2012,12,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm12.html#LiuMZ12,https://doi.org/10.1002/wcm.1051 +Ignacio Solis,Isolines: efficient spatio-temporal data aggregation in sensor networks.,2009,9,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm9.html#SolisO09,https://doi.org/10.1002/wcm.551 +Shereen Omar,Multipath Activity Based Routing Protocol for Mobile and#8206*Cognitive Radio Ad Hoc Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#OmarGE17,https://doi.org/10.1155/2017/5380525 +Daniel Ralph,Wireless application protocol overview.,2001,1,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm1.html#RalphA01,https://doi.org/10.1002/wcm.12 +Sven Lahde,A practical analysis of communication characteristics for mobile and distributed pollution measurements on the road.,2007,7,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm7.html#LahdeDPLW07,https://doi.org/10.1002/wcm.522 +Alexandre Ragaleux,An efficient and generic downlink resource allocation procedure for pre-5G networks.,2016,16,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm16.html#RagaleuxBF16,https://doi.org/10.1002/wcm.2735 +Tao Wang 0002,Energy Efficiency Maximized Resource Allocation for Opportunistic Relay-Aided OFDMA Downlink with Subcarrier Pairing.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#WangMSZW18,https://doi.org/10.1155/2018/9046847 +Sung-Hoon Oh,Automatic antenna-tuning unit for software-defined and cognitive radio.,2007,7,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm7.html#OhSABC07,https://doi.org/10.1002/wcm.484 +Wei An,Effective sensor deployment based on field information coverage in precision agriculture.,2015,15,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm15.html#AnCLWASWT15,https://doi.org/10.1002/wcm.2448 +Jie Hao,A gradient-based multiple-path routing protocol for low duty-cycled wireless sensor networks.,2016,16,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm16.html#HaoYHZL16,https://doi.org/10.1002/wcm.2552 +Tsang-Ling Sheu,Analytical models for call blocking and dropping in sectorized cellular networks with fractional frequency reuse.,2015,15,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm15.html#SheuLC15a,https://doi.org/10.1002/wcm.2484 +Soroor Soltani,A decision tree cognitive routing scheme for cognitive radio mesh networks.,2015,15,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm15.html#SoltaniM15a,https://doi.org/10.1002/wcm.2418 +Jie Xiang 0001,QoS aware admission and power control for cognitive radio cellular networks.,2009,9,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm9.html#XiangZSH09,https://doi.org/10.1002/wcm.765 +Fawad Zaman,Joint Angle-Amplitude Estimation for Multiple Signals with L-Structured Arrays Using Bioinspired Computing.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#Zaman17,https://doi.org/10.1155/2017/9428196 +Mahmoud Rashidpour,Design and analysis of simple irregular LDPC codes with finite-lengths and their application in CDMA systems.,2005,5,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm5.html#RashidpourJ05,https://doi.org/10.1002/wcm.224 +Yakun Hu,Frequency shift filter-based multi-carrier transceiver.,2013,13,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm13.html#HuW13,https://doi.org/10.1002/wcm.1119 +Yonglin Ren,ARMA: a scalable secure routing protocol with privacy protection for mobile ad hoc networks.,2010,10,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm10.html#RenB10,https://doi.org/10.1002/wcm.737 +Qinbiao Yang,A CCM-Based OFDM System with Low PAPR for Sparse Source.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#YangWH18,https://doi.org/10.1155/2018/8923478 +Gretchen H. Lynn,RoMR: robust multicast routing in mobile wireless networks.,2010,10,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm10.html#LynnZ10,https://doi.org/10.1002/wcm.1073 +Kamel Tourki,Performance analysis of opportunistic nonregenerative relaying.,2015,15,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm15.html#TourkiAQY15,https://doi.org/10.1002/wcm.2347 +Xiaojun Zhang,High-Throughput Fast-SSC Polar Decoder for Wireless Communications.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhangYZCCH18,https://doi.org/10.1155/2018/7428039 +Hung-Cheng Chang,Empirical Experience and Experimental Evaluation of Open5GCore over Hypervisor and Container.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ChangQCTHCL18,https://doi.org/10.1155/2018/6263153 +Michael Chien-Chun Hung,EFFORT: energy-efficient opportunistic routing technology in wireless sensor networks.,2013,13,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm13.html#HungLCH13,https://doi.org/10.1002/wcm.1140 +Sana Ezzine,Evaluation of PLC Channel Capacity and ABER Performances for OFDM-Based Two-Hop Relaying Transmission.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#EzzineACMB17,https://doi.org/10.1155/2017/4827274 +Ahmed N. Zaki,Graph-based resource allocation algorithms for multiuser downlink MIMO-OFDMA networks.,2015,15,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm15.html#ZakiF15,https://doi.org/10.1002/wcm.2331 +Israel Guío,Resource allocation strategies for full frequency reuse in tri-sectorized multi-cell orthogonal frequency division multiple access systems.,2014,14,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm14.html#GuioHCV14,https://doi.org/10.1002/wcm.2187 +Xu Huang 0002,A Full Duplex D2D Clustering Resource Allocation Scheme Based on a K-Means Algorithm.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#HuangZFFT18,https://doi.org/10.1155/2018/1843083 +Sherif G. Aly,Sustained service lookup in areas of sudden dense population.,2008,8,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm8.html#AlyE08,https://doi.org/10.1002/wcm.427 +Wenjun Sun,Energy-aware virtual multi-input-multi-output-based routing for wireless ad hoc networks.,2016,16,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm16.html#SunHZX16,https://doi.org/10.1002/wcm.2571 +Maryam Mohseni,Transmission scheduling in a multi-channel wireless network with bidirectional relaying links.,2016,16,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm16.html#MohseniZ16,https://doi.org/10.1002/wcm.2595 +José Ramón Gállego,Adaptive paging schemes for group calls in mobile broadband cellular systems.,2012,12,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm12.html#GallegoCHV12,https://doi.org/10.1002/wcm.1077 +Ahmet F. Coskun,Analysis of transmit antenna selection/orthogonal space-time block coding with receive selection and combining in the presence of feedback errors.,2015,15,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm15.html#CoskunK15,https://doi.org/10.1002/wcm.2475 +Peng Zheng,Ka-Band LTCC Stacked Substrate Integrated Waveguide Bandpass Filter.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhengLMWLL18,https://doi.org/10.1155/2018/9737219 +Juhua Pu,Delay analysis of two-hop network-coded delay-tolerant networks.,2015,15,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm15.html#PuLTFX15,https://doi.org/10.1002/wcm.2379 +Wenwen Gong,Privacy-Aware Multidimensional Mobile Service Quality Prediction and Recommendation in Distributed Fog Environment.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#GongQX18,https://doi.org/10.1155/2018/3075849 +Mingbo Xiao,Resource management in power-controlled cellular wireless systems.,2001,1,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm1.html#XiaoSC01, +Deming Mao,Trusted Authority Assisted Three-Factor Authentication and Key Agreement Protocol for the Implantable Medical System.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#MaoZLM18,https://doi.org/10.1155/2018/7579161 +Khoa N. Le,Effects of Doppler spread on adaptive orthogonal frequency division multiplexing channel capacity employing diversity in multipath environments.,2013,13,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm13.html#LeD13,https://doi.org/10.1002/wcm.1201 +Shiyong Yang,Detection of the number of two-dimensional harmonics in additive colored noise.,2014,14,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm14.html#YangLJ14,https://doi.org/10.1002/wcm.2234 +Martin Cudnoch,DSP implementation of a bit loading algorithm for adaptive wireless multicarrier transceivers.,2007,7,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm7.html#CudnochWL07,https://doi.org/10.1002/wcm.485 +Yaoling Fan,Cloud/Fog Computing System Architecture and Key Technologies for South-North Water Transfer Project Safety.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#FanZL18,https://doi.org/10.1155/2018/7172045 +Hongbing Cheng,Link optimization for energy-constrained wireless networks with packet retransmissions.,2012,12,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm12.html#ChengY12,https://doi.org/10.1002/wcm.996 +Quan Kuang,A measurement-based study of handover improvement through range expansion and interference coordination.,2015,15,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm15.html#KuangBBDS15,https://doi.org/10.1002/wcm.2460 +Zhengyang Song,Processing Optimization of Typed Resources with Synchronized Storage and Computation Adaptation in Fog Computing.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#SongDWSZGZ18,https://doi.org/10.1155/2018/3794175 +Jelena V. Misic,Special section: topics in performance evaluation of wireless networks.,2004,4,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm4.html#MisicWG04a,https://doi.org/10.1002/wcm.205 +Yan Huo,A Location Prediction-Based Helper Selection Scheme for Suspicious Eavesdroppers.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#HuoTHGJ17,https://doi.org/10.1155/2017/1832051 +Malik Ayed Tubaishat,Wireless sensor networks in intelligent transportation systems.,2009,9,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm9.html#TubaishatZQS09,https://doi.org/10.1002/wcm.616 +Wai Ho Mow,Universal lattice decoding: principle and recent advances.,2003,3,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm3.html#Mow03,https://doi.org/10.1002/wcm.140 +Jiaping Liu,Towards utility-optimal random access without message passing.,2010,10,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm10.html#LiuYPCP10,https://doi.org/10.1002/wcm.897 +Tsang-Ling Sheu,A channel reservation and preemption model using overlapping regions in sector-based cellular networks.,2015,15,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm15.html#SheuLH15,https://doi.org/10.1002/wcm.2447 +Chiu-Han Hsiao,A testbed-based framework for performance evaluation of multicast broadcast systems in OFDMA networks.,2016,16,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm16.html#HsiaoRWL16,https://doi.org/10.1002/wcm.2506 +Jeong-Ahn Kwon,Opportunistic scheduling for an OFDMA system with multi-class services.,2012,12,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm12.html#KwonL12,https://doi.org/10.1002/wcm.1039 +Yang Xiao,Hierarchical mobility database overflow control.,2003,3,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm3.html#Xiao03,https://doi.org/10.1002/wcm.106 +Yalong Xiao,A Novel Indoor Localization Algorithm for Efficient Mobility Management in Wireless Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#XiaoZWZ18,https://doi.org/10.1155/2018/9517942 +Jung Hyon Jun,Analysis of a robust and energy efficient transmission scheduling protocol in single-hop ad hoc networks.,2010,10,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm10.html#JunCB10,https://doi.org/10.1002/wcm.759 +Xujun Yang,Magnetoelectric Dipole Antenna with Dual Polarization and High Isolation.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#YangGZS18,https://doi.org/10.1155/2018/4765425 +Christos Datsikas,Serial relaying communications over generalized-gamma fading channels.,2012,12,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm12.html#DatsikasPST12,https://doi.org/10.1002/wcm.1047 +Daniel Camps-Mur,On centralized schedulers for 802.11e WLANs distribution versus grouping of resources allocation.,2012,12,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm12.html#Camps-MurCMR12,https://doi.org/10.1002/wcm.1046 +Saralees Nadarajah,Expressions for bit error probability.,2008,8,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm8.html#NadarajahK08,https://doi.org/10.1002/wcm.535 +Ming-Hui Li,Accurate direction-of-arrival estimation of multiple sources using a genetic approach.,2005,5,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm5.html#LiL05,https://doi.org/10.1002/wcm.228 +Chu-Fu Wang,Joint optimization of energy allocation and routing problems in wireless sensor networks.,2010,10,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm10.html#WangDL10,https://doi.org/10.1002/wcm.750 +Hyungseok Yu,Outage probability for cooperative diversity with selective combining in cellular networks.,2010,10,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm10.html#YuS10,https://doi.org/10.1002/wcm.1060 +Osman N. C. Yilmaz,Self-optimization of random access channel in 3rd Generation Partnership Project Long Term Evolution.,2011,11,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm11.html#YilmazHH11,https://doi.org/10.1002/wcm.1217 +Yaqiang Zhang,Boundary Region Detection for Continuous Objects in Wireless Sensor Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhangWMZ18,https://doi.org/10.1155/2018/5176569 +Francisco Bernardo,Dynamic spectrum assignment in multicell OFDMA networks enabling a secondary spectrum usage.,2009,9,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm9.html#BernardoAPS09,https://doi.org/10.1002/wcm.760 +Qi He,A secure incentive architecture for ad hoc networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#HeWK06,https://doi.org/10.1002/wcm.399 +Jinqiu Wu,Influence of Pulse Shaping Filters on PAPR Performance of Underwater 5G Communication System Technique: GFDM.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#WuMQBZ17,https://doi.org/10.1155/2017/4361589 +Abdel-Hakim S. Al-Hussien,Probability of error analysis of predetection generalized selection combining receivers with correlated unbalanced Nakagami branches.,2007,7,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm7.html#Al-HussienB07,https://doi.org/10.1002/wcm.390 +Fatih Senel,Coverage-aware connectivity-constrained unattended sensor deployment in underwater acoustic sensor networks.,2016,16,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm16.html#Senel16,https://doi.org/10.1002/wcm.2667 +Jun Li 0006,EM channel characteristics and their impact on MAC layer performance in underwater surveillance networks.,2015,15,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm15.html#LiT15,https://doi.org/10.1002/wcm.2461 +Jukka Yrjänäinen,Wireless meets multimedia.,2002,2,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm2.html#YrjanainenN02,https://doi.org/10.1002/wcm.91 +Maryam M. Akho-Zahieh,Narrow-band interference suppression in wavelet packets based multicarrier multicode CDMA overlay system.,2015,15,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm15.html#Akho-ZahiehA15,https://doi.org/10.1002/wcm.2325 +Yong-Hoon Choi,Adaptive bandwidth provisioning in an integrated 3G and WLAN environment.,2005,5,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm5.html#ChoiPK05,https://doi.org/10.1002/wcm.336 +Koichiro Ban,IEEE 802.11 FHSS receiver design for cluster-based multihop video communications.,2002,2,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm2.html#BanG02,https://doi.org/10.1002/wcm.85 +Chuan Ma,On the performance of interference cancelation in D2D-enabled cellular networks.,2016,16,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm16.html#MaWCW16,https://doi.org/10.1002/wcm.2712 +Feng Li 0008,Caching Efficiency Enhancement at Wireless Edges with Concerns on User's Quality of Experience.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#0008L0N0P18,https://doi.org/10.1155/2018/1680641 +Alfonso González-Briones,Reuse of Waste Energy from Power Plants in Greenhouses through MAS-Based Architecture.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#Gonzalez-Briones18a,https://doi.org/10.1155/2018/6170718 +Xin Meng,Time Delay Estimation of AIS Signal Based on Three-Order Cumulant.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#MengZMT18,https://doi.org/10.1155/2018/1349702 +Ming Kang,Capacity of MIMO channels in the presence of co-channel interference.,2007,7,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm7.html#KangYA07,https://doi.org/10.1002/wcm.324 +Anwar Elfeitori,Network architecture and medium access control for deploying third generation (3G) wireless systems over CATV networks.,2005,5,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm5.html#ElfeitoriA05,https://doi.org/10.1002/wcm.202 +Haijian Zhang,Spectral efficiency comparison between OFDM/OQAM- and OFDM-based CR networks.,2009,9,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm9.html#ZhangRT09,https://doi.org/10.1002/wcm.704 +Dapeng Wu 0001,QoS provisioning in wireless networks.,2005,5,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm5.html#Wu05,https://doi.org/10.1002/wcm.359 +Bin Hu 0001,Ontology-based ubiquitous monitoring and treatment against depression.,2010,10,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm10.html#HuHWDCLZ10,https://doi.org/10.1002/wcm.716 +Haiyu Huang,Advanced Wireless Communications and Mobile Computing Technologies for the Internet of Things.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#HuangL0RC18,https://doi.org/10.1155/2018/9693514 +Zhiyuan Ma,Weighted Domain Transfer Extreme Learning Machine and Its Online Version for Gas Sensor Drift Compensation in E-Nose Systems.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#MaLQWN18,https://doi.org/10.1155/2018/2308237 +Liliana Grigoriu,Availability of a Hybrid FSO/RF Link While Using the Link's Diversity for Packet Scheduling.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#Grigoriu18,https://doi.org/10.1155/2018/7320989 +Jen-Yi Pan,Associative IP paging based on hierarchical mobile IPv6.,2010,10,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm10.html#PanLHP10,https://doi.org/10.1002/wcm.773 +Weimin Wang,Impact of Probe Configurations on Maximum of Test Volume Size in 3D MIMO OTA Testing.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#WangGWL17,https://doi.org/10.1155/2017/2716149 +Ahmad ElMoslimany,An underwater acoustic communication scheme exploiting biological sounds.,2016,16,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm16.html#ElMoslimanyZDP16,https://doi.org/10.1002/wcm.2676 +Evandro De Souza,Increasing Aggregation Convergecast Data Collection Frequency through Pipelining.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#SouzaN18,https://doi.org/10.1155/2018/1539642 +Qian Tan,Achieving energy-neutral data transmission by adjusting transmission power for energy-harvesting wireless sensor networks.,2016,16,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm16.html#TanAHLLCT16,https://doi.org/10.1002/wcm.2669 +José Jailton Jr.,Relay Positioning Strategy for Traffic Data Collection of Multiple Unmanned Aerial Vehicles Using Hybrid Optimization Systems: A FANET-Based Case Study.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#JailtonCAF17,https://doi.org/10.1155/2017/2865482 +Jun Zheng,Underwater sensor networks: architectures and protocols.,2008,8,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm8.html#ZhengALZ08,https://doi.org/10.1002/wcm.667 +Yun-Sheng Yen,A seamless handoff scheme for IEEE 802.11 wireless networks.,2013,13,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm13.html#YenCW13,https://doi.org/10.1002/wcm.1102 +Mohamed S. Hassan,A retransmission-based scheme for video streaming over wireless channels.,2010,10,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm10.html#HassanL10,https://doi.org/10.1002/wcm.781 +Qinghua Gao,Target tracking by lightweight blind particle filter in wireless sensor networks.,2014,14,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm14.html#GaoWJCW14,https://doi.org/10.1002/wcm.1245 +Yuanjie Li,Packet Forwarding Strategies in Multiagent Systems: An Evolutionary Game Approach.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LiW18,https://doi.org/10.1155/2018/4965343 +Fan Jiang 0003,GF(q)-based precoding: information theoretical analysis and performance evaluation.,2016,16,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm16.html#JiangZML16,https://doi.org/10.1002/wcm.2741 +Fei Gao,An Image Restoration Method Using Matrix Transform and Gaussian Mixture Model for Radio Tomographic Imaging.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#GaoS0AX17,https://doi.org/10.1155/2017/5703518 +Chia-Chun Hung,Performance of multiuser diversity in MIMO systems on arbitrary Nakagami-m fading channels.,2012,12,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm12.html#HungCYL12,https://doi.org/10.1002/wcm.1010 +Duminda A. Dewasurendra,Scalability of a scheduling scheme for energy aware sensor networks.,2004,4,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm4.html#DewasurendraM04,https://doi.org/10.1002/wcm.219 +Andrea Detti,On the performance anomaly in WiMAX networks.,2010,10,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm10.html#DettiLP10,https://doi.org/10.1002/wcm.677 +Hassan Moradi,Mobile free space optic nodes in single-input multiple-output setup under transmitter misalignment.,2011,11,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm11.html#MoradiRLA11,https://doi.org/10.1002/wcm.1215 +Ghalib A. Shah,Cluster-based coordination and routing framework for wireless sensor and actor networks.,2011,11,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm11.html#ShahBH11,https://doi.org/10.1002/wcm.885 +Pavol Polacek,Opportunistic multicasting for single frequency networks.,2016,16,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm16.html#PolacekYH16,https://doi.org/10.1002/wcm.2680 +Yiqi Fu,Using NearestGraph QoS Prediction Method for Service Recommendation in the Cloud.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#FuDA18,https://doi.org/10.1155/2018/8680758 +Yiming Miao,RADB: Random Access with Differentiated Barring for Latency-Constrained Applications in NB-IoT Network.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#MiaoTCHG18,https://doi.org/10.1155/2018/6210408 +Gustavo Anjos,Joint Design of Massive MIMO Precoder and Security Scheme for Multiuser Scenarios under Reciprocal Channel Conditions.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#AnjosCSGGV17,https://doi.org/10.1155/2017/5396092 +Xu Wu,Context-Aware Cloud Service Selection Model for Mobile Cloud Computing Environments.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#Wu18,https://doi.org/10.1155/2018/3105278 +L. M. Kola,The Design and Implementation of the XWCETT Routing Algorithm in Cognitive Radio Based Wireless Mesh Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#KolaV18,https://doi.org/10.1155/2018/4173810 +Ala Abu Alkheir,A selective decision-fusion rule for cooperative spectrum sensing using energy detection.,2016,16,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm16.html#AlkheirI16,https://doi.org/10.1002/wcm.2615 +Andreas Holzinger,Towards life long learning: three models for ubiquitous applications.,2010,10,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm10.html#HolzingerNFH10,https://doi.org/10.1002/wcm.715 +Junjuan Xia,Cache Aided Decode-and-Forward Relaying Networks: From the Spatial View.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#XiaZLZCYLZ18,https://doi.org/10.1155/2018/5963584 +Yousri Daldoul,Performance and scalability evaluation of IEEE 802.11v/aa multicast transport.,2016,16,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm16.html#DaldoulMAB16,https://doi.org/10.1002/wcm.2663 +Chol Soon Jang,Hybrid security protocol for wireless body area networks.,2011,11,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm11.html#JangLHP11,https://doi.org/10.1002/wcm.884 +Jong Mook Won,Adaptive reference code-based MAI cancellation for DS-CDMA.,2010,10,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm10.html#WonKK10,https://doi.org/10.1002/wcm.835 +Yunfei Chen,Analysis of user selection in collaborative spectrum sensing with correlated shadowing.,2013,13,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm13.html#Chen13,https://doi.org/10.1002/wcm.1120 +Desheng Wang,Energy Harvesting for Internet of Things with Heterogeneous Users.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#WangLMWPW17,https://doi.org/10.1155/2017/1858532 +Chia-Chin Chong,Statistical characterization of the UWB propagation channel in indoor residential environment.,2005,5,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm5.html#ChongKYL05,https://doi.org/10.1002/wcm.310 +Azzedine Boukerche,Special issue: mobility management in wireless and mobile networks.,2004,4,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm4.html#BoukercheN04,https://doi.org/10.1002/wcm.230 +Yang Xiao,Proportional degradation services in wireless/mobile adaptive multimedia networks.,2005,5,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm5.html#XiaoLCWP05,https://doi.org/10.1002/wcm.211 +Joko Suryana,The Rainfall Intensity Effects on 1-13 GHz UWB-Based 5G System for Outdoor Applications.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#Suryana17,https://doi.org/10.1155/2017/6495145 +Muhammad Rizwan Anawar,Fog Computing: An Overview of Big IoT Data Analytics.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#AnawarWZJAR18,https://doi.org/10.1155/2018/7157192 +Apostolis K. Salkintzis,On the support of voice call continuity across UMTS and wireless LANs.,2008,8,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm8.html#SalkintzisPS08,https://doi.org/10.1002/wcm.533 +Hyun-Jun Shin,SVM-Based Dynamic Reconfiguration CPS for Manufacturing System in Industry 4.0.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ShinCO18,https://doi.org/10.1155/2018/5795037 +Liwei Tao,On Secrecy Outage Probability and Average Secrecy Rate of Large-Scale Cellular Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#TaoYCC18,https://doi.org/10.1155/2018/6869189 +Zhirong Zeng,Min-Max-MSE Transceiver Design for MU-MIMO VLC System.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZengDW18,https://doi.org/10.1155/2018/3080643 +Mai Vu,Optimum space-time transmission for a high K factor wireless channel with partial channel knowledge.,2004,4,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm4.html#VuP04,https://doi.org/10.1002/wcm.249 +Salim Bitam,MQBV: multicast quality of service swarm bee routing for vehicular ad hoc networks.,2015,15,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm15.html#BitamMF15,https://doi.org/10.1002/wcm.2420 +Kun Zhu,Mobility and handoff management in vehicular networks: a survey.,2011,11,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm11.html#ZhuNWHK11,https://doi.org/10.1002/wcm.853 +Yunli Chen,Analytical modeling of MAC protocol in ad hoc networks.,2008,8,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm8.html#ChenZA08,https://doi.org/10.1002/wcm.425 +Ehssan Sakhaee,An energy-efficient self-organizing global extremity reporting scheme for sensor networks.,2009,9,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm9.html#SakhaeeWM09,https://doi.org/10.1002/wcm.702 +Wenshan Yin,A pilot-aided detector for spectrum sensing of Digital Video Broadcasting - Terrestrial signals in cognitive radio networks.,2013,13,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm13.html#YinRCS13,https://doi.org/10.1002/wcm.1170 +Jia-Ming Liang,Energy-Efficient Uplink Resource Units Scheduling for Ultra-Reliable Communications in NB-IoT Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LiangWCLT18,https://doi.org/10.1155/2018/4079017 +Jelena V. Misic,Special issue: performance evaluation of wireless networks.,2004,4,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm4.html#MisicWG04,https://doi.org/10.1002/wcm.208 +Abubakar Sharif,Tunable Platform Tolerant Antenna Design for RFID and IoT Applications Using Characteristic Mode Analysis.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#SharifOYLI18,https://doi.org/10.1155/2018/9546854 +Jian Wang 0003,Modeling and performance analysis of dynamic spectrum sharing between DSRC and Wi-Fi systems.,2016,16,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm16.html#WangWLDO16,https://doi.org/10.1002/wcm.2723 +Panagiotis K. Gkonis,Performance evaluation of MIMO-WCDMA cellular networks in multiuser frequency selective fading environments.,2013,13,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm13.html#GkonisTK13,https://doi.org/10.1002/wcm.1096 +Jing Zhao,Adaptive motion estimation schemes using maximum mutual information criterion.,2007,7,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm7.html#ZhaoWEFH07,https://doi.org/10.1002/wcm.474 +Ning Xie 0007,Nonlinear optimization for adaptive antenna array receivers with a small data-record size.,2009,9,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm9.html#XieZZQWL09,https://doi.org/10.1002/wcm.605 +Qilian Liang,Cooperative communications and sensing.,2014,14,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm14.html#LiangLMA14,https://doi.org/10.1002/wcm.2513 +Song Wang 0003,Blind channel estimation for single-input multiple-output OFDM systems: zero padding based or cyclic prefix based?,2013,13,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm13.html#WangH13,https://doi.org/10.1002/wcm.1109 +Shengzhi Zhang,Hidden node collision recovery protocol for low rate wireless personal area networks.,2012,12,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm12.html#ZhangY12,https://doi.org/10.1002/wcm.1066 +Nadia Adem,Mitigating jamming attacks in mobile cognitive networks through time hopping.,2016,16,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm16.html#AdemHY16,https://doi.org/10.1002/wcm.2745 +Yan Zhang 0002,Authentication traffics modeling and analysis in next generation wireless networks.,2008,8,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm8.html#ZhangXZF08,https://doi.org/10.1002/wcm.477 +Ke Xiong,Reliable information rate of signal-time coding for half-duplex additive white Gaussian noise relay networks.,2014,14,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm14.html#XiongFQL14,https://doi.org/10.1002/wcm.1226 +Jae-Kark Choi,Group scanning scheme for fast target channel decision in seamless handover of wireless networks.,2012,12,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm12.html#ChoiY12,https://doi.org/10.1002/wcm.1027 +Cihan Tepedelenlioglu,Estimation of Doppler spread and signal strength in mobile communications with applications to handoff and adaptive transmission.,2001,1,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm1.html#TepedelenliogluAGK01,https://doi.org/10.1002/wcm.1 +Aleksandr Ometov,Reliability-Centric Analysis of Offloaded Computation in Cooperative Wearable Applications.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#OmetovKR0GK17,https://doi.org/10.1155/2017/9625687 +Estefania Coronado,An Adaptive Medium Access Parameter Prediction Scheme for IEEE 802.11 Real-Time Applications.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#CoronadoVG17,https://doi.org/10.1155/2017/5719594 +Lei Ge,Reconfigurable Magneto-Electric Dipole Antennas for Base Stations in Modern Wireless Communication Systems.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#GeYDZZ18,https://doi.org/10.1155/2018/2408923 +Jingya Yang,A Simplified Multipath Component Modeling Approach for High-Speed Train Channel Based on Ray Tracing.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#YangAHWZH17,https://doi.org/10.1155/2017/8517204 +Sajida Imran,A Novel Indoor Positioning System Using Kernel Local Discriminant Analysis in Internet-of-Things.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ImranK18,https://doi.org/10.1155/2018/2976751 +Zikuan Liu,Markov mobility model and registration area optimization in cellular networks.,2009,9,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm9.html#LiuAM09,https://doi.org/10.1002/wcm.745 +Goutam K. Audhya,A survey on the channel assignment problem in wireless networks.,2011,11,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm11.html#AudhyaSGS11,https://doi.org/10.1002/wcm.898 +Sangwon Hyun,Secure and DoS-Resilient Fragment Authentication in CCN-Based Vehicular Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#HyunK18,https://doi.org/10.1155/2018/8071267 +Ivan Stojmenovic,Voronoi diagram and convex hull based geocasting and routing in wireless networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#StojmenovicRL06,https://doi.org/10.1002/wcm.384 +Lijun Qian,Power control and scheduling with minimum rate constraints in clustered multihop TD/CDMA wireless ad hoc networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#QianVLG06,https://doi.org/10.1002/wcm.442 +J. Sathish Kumar,Clustering Approaches for Pragmatic Two-Layer IoT Architecture.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#KumarZ18,https://doi.org/10.1155/2018/8739203 +Xiang Cheng 0001,New deterministic and stochastic simulation models for non-isotropic scattering mobile-to-mobile Rayleigh fading channels.,2011,11,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm11.html#ChengWLSV11,https://doi.org/10.1002/wcm.864 +Yiliang Han,Generalization of signcryption for resources-constrained environments.,2007,7,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm7.html#Han07,https://doi.org/10.1002/wcm.504 +Archan Misra,Application-centric analysis of IP-based mobility management techniques.,2001,1,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm1.html#MisraDA01,https://doi.org/10.1002/wcm.21 +Xiaofan He,A novel simplified tone reservation combined with cross antenna rotation and inversion to reduce PAPR for MIMO-OFDM system.,2011,11,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm11.html#HeJZ11,https://doi.org/10.1002/wcm.937 +Ana Ma Gonzalez-Plaza,Propagation at mmW Band in Metropolitan Railway Tunnels.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#Gonzalez-PlazaC18,https://doi.org/10.1155/2018/7350494 +Alejandro Martín Medrano Gil,Definition of Technological Solutions Based on the Internet of Things and Smart Cities Paradigms for Active and Healthy Ageing through Cocreation.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#GilPFCSCW18,https://doi.org/10.1155/2018/1949835 +Beycan Kahraman,An efficient and adaptive channel handover procedure for cognitive radio networks.,2015,15,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm15.html#KahramanB15,https://doi.org/10.1002/wcm.2352 +Weiwei Wang 0001,Adaptive dual-radio spectrum-sensing scheme in cognitive radio networks.,2013,13,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm13.html#0001CASL13,https://doi.org/10.1002/wcm.1178 +Wei He,A novel wideband and circularly polarized cross-dipole antenna.,2016,16,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm16.html#HeHT16,https://doi.org/10.1002/wcm.2743 +Yeonwoo Lee,Radio resource metric estimation for a TDD-CDMA system supporting wireless internet traffic.,2004,4,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm4.html#LeeM04,https://doi.org/10.1002/wcm.194 +Yunquan Dong,Service provided by fading MIMO channels: a deterministic perspective.,2014,14,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm14.html#DongFL14,https://doi.org/10.1002/wcm.2309 +Iftekhar Ahmad,Improving quality of service in WiMAX communication at vehicular speeds: a new call admission control solution.,2013,13,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm13.html#AhmadH13,https://doi.org/10.1002/wcm.1111 +Mehmet Emin Tutay,Optimal and suboptimal receivers for code-multiplexed transmitted-reference ultra-wideband systems.,2013,13,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm13.html#TutayG13,https://doi.org/10.1002/wcm.1191 +Aikaterini Dimogiorgi,A proposed enhanced scheme for the dynamic frequency hopping performance in the IEEE 802.22 standard.,2016,16,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm16.html#DimogiorgiH16,https://doi.org/10.1002/wcm.2720 +Ali F. Almutairi,Performance of coded DS-CDMA system using reduced rank MMSE receiver in Rayleigh fading channels.,2007,7,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm7.html#AlmutairiG07,https://doi.org/10.1002/wcm.364 +WenBin Hsieh,Anonymous authentication protocol based on elliptic curve Diffie-Hellman for wireless access networks.,2014,14,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm14.html#HsiehL14,https://doi.org/10.1002/wcm.2252 +Sohail Jabbar,Semantic Interoperability in Heterogeneous IoT Infrastructure for Healthcare.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#JabbarUKKH17,https://doi.org/10.1155/2017/9731806 +Sajal K. Das,Self-stabilizing minimum connected covers of query regions in sensor networks.,2011,11,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm11.html#DasDPPY11,https://doi.org/10.1002/wcm.805 +Jie Wu 0001,Power-aware broadcasting and activity scheduling in ad hoc wireless networks using connected dominating sets.,2003,3,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm3.html#WuWS03,https://doi.org/10.1002/wcm.125 +Chih-Min Chao,A load awareness medium access control protocol for single-hop wireless ad hoc networks.,2008,8,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm8.html#ChaoSC08,https://doi.org/10.1002/wcm.462 +Jian Tang 0008,Interference-aware routing and bandwidth allocation for QoS provisioning in multihop wireless networks.,2005,5,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm5.html#TangXC05,https://doi.org/10.1002/wcm.357 +Guangjie Han,Cross-layer optimized routing in wireless sensor networks with duty cycle and energy harvesting.,2015,15,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm15.html#HanDGSW15,https://doi.org/10.1002/wcm.2468 +özgür Gürbüz,Dynamic resource scheduling (DRS): a multimedia QoS framework for W-CDMA.,2004,4,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm4.html#GurbuzO04,https://doi.org/10.1002/wcm.195 +Junru Lin,Monitoring power transmission lines using a wireless sensor network.,2015,15,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm15.html#LinZZLYX15,https://doi.org/10.1002/wcm.2458 +Wei He,Business process management with group features in pervasive environments.,2010,10,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm10.html#HeW10,https://doi.org/10.1002/wcm.719 +Marga Nácher,An overview of anonymous communications in mobile ad hoc networks.,2012,12,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm12.html#NacherCCM12,https://doi.org/10.1002/wcm.990 +Kai Yu,Models for MIMO propagation channels: a review.,2002,2,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm2.html#YuO02,https://doi.org/10.1002/wcm.78 +Peter Dely,Fair optimization of mesh-connected WLAN hotspots.,2015,15,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm15.html#DelyDK15,https://doi.org/10.1002/wcm.2393 +Qin Wu,Intelligent Smoke Alarm System with Wireless Sensor Network Using ZigBee.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#WuCZHLCCP18,https://doi.org/10.1155/2018/8235127 +Walid Ibrahim,A QoS-based charging and resource allocation framework for next generation wireless networks.,2003,3,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm3.html#IbrahimCP03,https://doi.org/10.1002/wcm.179 +Yang Zhang 0013,Joint optimization of source and relay precoding in non-regenerative MIMO relay systems.,2013,13,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm13.html#ZhangLPD13,https://doi.org/10.1002/wcm.2213 +Dong Li,On the capacity of cognitive broadcast channels with opportunistic scheduling.,2013,13,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm13.html#Li13,https://doi.org/10.1002/wcm.1108 +Hao Li 0010,Robust spectrum sensing for orthogonal frequency division multiplexing signal without synchronization and prior noise knowledge.,2014,14,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm14.html#LiWN14,https://doi.org/10.1002/wcm.2221 +Francesco Chiti,A game theory-inspired channel allocation policy for multi-radio pervasive ad hoc communications.,2016,16,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm16.html#ChitiFDV16,https://doi.org/10.1002/wcm.2654 +Chih-Yung Chang,A frequency-aware data-centric mechanism for wireless sensor networks.,2010,10,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm10.html#ChangSCC10,https://doi.org/10.1002/wcm.824 +Anteneh A. Gebremariam,SoftPSN: Software-Defined Resource Slicing for Low-Latency Reliable Public Safety Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#GebremariamUBG18,https://doi.org/10.1155/2018/7253283 +A. Annamalai Jr.,The effect of Gaussian error in selection diversity combiners.,2001,1,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm1.html#Annamalai01,https://doi.org/10.1002/wcm.28 +Yousheng Zhou,Chaotic map-based time-aware multi-keyword search scheme with designated server.,2016,16,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm16.html#ZhouXWW16,https://doi.org/10.1002/wcm.2656 +Yuben Qu,DCNC: throughput maximization via delay controlled network coding for wireless mesh networks.,2016,16,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm16.html#QuDCWTT16,https://doi.org/10.1002/wcm.2505 +Yu-Ting Yu,Scalable VANET content routing using hierarchical bloom filters.,2015,15,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm15.html#YuGS15,https://doi.org/10.1002/wcm.2495 +Bo Mi,NTRU Implementation of Efficient Privacy-Preserving Location-Based Querying in VANET.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#MiHW18,https://doi.org/10.1155/2018/7823979 +Lu Rao,Dynamic Outsourced Proofs of Retrievability Enabling Auditing Migration for Remote Storage Security.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#RaoTZWX18,https://doi.org/10.1155/2018/4186243 +Fei Hu 0001,Low-cost wireless sensor networks for remote cardiac patients monitoring applications.,2008,8,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm8.html#HuJX08,https://doi.org/10.1002/wcm.488 +Azzedine Boukerche,A performance evaluation of a pre-emptive on-demand distance vector routing protocol for mobile ad hoc networks.,2004,4,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm4.html#BoukercheZ04,https://doi.org/10.1002/wcm.167 +Linsheng Ye,LAB: Lightweight Adaptive Broadcast Control in DSRC Vehicular Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#YeKGCM18,https://doi.org/10.1155/2018/5713913 +Matteo Zignani,Extracting human mobility and social behavior from location-aware traces.,2013,13,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm13.html#ZignaniGR13,https://doi.org/10.1002/wcm.2209 +Michael McGuire,Estimating position of mobile terminals from path loss measurements with survey data.,2003,3,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm3.html#McGuirePV03,https://doi.org/10.1002/wcm.49 +M. Garah,Handover prioritizing scheme for reducing call failure probability in cellular wireless network.,2009,9,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm9.html#GarahB09,https://doi.org/10.1002/wcm.755 +Rongfei Fan,Ranging error-tolerable localization in wireless sensor networks with inaccurately positioned anchor nodes.,2009,9,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm9.html#FanJWZ09,https://doi.org/10.1002/wcm.623 +Fei Hu 0001,Error-resistant RFID-assisted wireless sensor networks for cardiac telehealthcare.,2009,9,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm9.html#HuCX09,https://doi.org/10.1002/wcm.607 +Jia Wu,Information Transmission Probability and Cache Management Method in Opportunistic Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#WuC018,https://doi.org/10.1155/2018/1571974 +Lucas de Melo Guimarães,A Full-Duplex MAC Tailored for 5G Wireless Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#GuimaraesB18,https://doi.org/10.1155/2018/5408973 +Xing-Peng Mao,Polarization filtering for narrowband interference suppression in ultra-wideband communications.,2008,8,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm8.html#MaoM08,https://doi.org/10.1002/wcm.540 +Frank Yeong-Sung Lin,Fair inter-TAP routing and backhaul assignment for wireless mesh networks.,2009,9,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm9.html#LinW09,https://doi.org/10.1002/wcm.629 +Yanli Li,Studies on the coherence bandwidth of high-frequency vehicular communication system with antenna array.,2011,11,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm11.html#LiDMJ11,https://doi.org/10.1002/wcm.865 +Surachai Chieochan,Downlink media streaming with wireless fountain coding in wireline-cum-WiFi networks.,2012,12,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm12.html#ChieochanH12,https://doi.org/10.1002/wcm.1092 +Walaa Hamouda,Performance analysis of coded space-time adaptive detection in DS/CDMA systems over Rayleigh fading channels.,2007,7,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm7.html#HamoudaM07,https://doi.org/10.1002/wcm.346 +Jelena V. Misic,Performance analysis of Bluetooth piconets with finite baseband buffers.,2005,5,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm5.html#MisicM05,https://doi.org/10.1002/wcm.355 +Sanqing Hu,Cognitive medium access control protocols for secondary users sharing a common channel with time division multiple access primary users.,2014,14,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm14.html#HuYY14,https://doi.org/10.1002/wcm.2185 +Christopher N. Ververidis,A routing layer based approach for energy efficient service discovery in mobile ad hoc networks.,2009,9,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm9.html#VerveridisP09,https://doi.org/10.1002/wcm.618 +S. B. Sumith Babu,Multigroup Synchronization in 1D-Bernoulli Chaotic Collaborative CDMA.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#BabuK17,https://doi.org/10.1155/2017/7561757 +Haojun Teng,Adaptive Transmission Range Based Topology Control Scheme for Fast and Reliable Data Collection.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#TengZDOLZW18,https://doi.org/10.1155/2018/4172049 +Meher Krishna Patel,Antijamming Performance of Adaptive Chaos Based CDMA System with MRC in Imperfect Channel Estimation Environment.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#PatelBS17a,https://doi.org/10.1155/2017/2716949 +Ruobin Zheng,Scalable multiple description coding and distributed video streaming in 3G mobile communications.,2005,5,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm5.html#ZhengZJ05,https://doi.org/10.1002/wcm.279 +Quan Jun Chen,Performance analysis of geography-limited broadcasting in multihop wireless networks.,2013,13,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm13.html#ChenKH13,https://doi.org/10.1002/wcm.1188 +Jinmeng Zhao,Channel Characteristics of Rail Traffic Tunnel Scenarios Based on Ray-Tracing Simulator.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhaoXHD18,https://doi.org/10.1155/2018/9284639 +Mustapha Benjillali,Evaluation of bit error rate for packet combining with constellation rearrangement.,2008,8,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm8.html#BenjillaliSAG08,https://doi.org/10.1002/wcm.528 +Devendar Mandala,Load balance and energy efficient data gathering in wireless sensor networks.,2008,8,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm8.html#MandalaDDY08,https://doi.org/10.1002/wcm.492 +Tianji Li,Investigation of the block ACK scheme in wireless ad hoc networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#LiNX06,https://doi.org/10.1002/wcm.447 +Torsha Banerjee,Increasing lifetime of wireless sensor networks using controllable mobile cluster heads.,2010,10,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm10.html#BanerjeeXJA10,https://doi.org/10.1002/wcm.763 +Gowin Fu,A two-way relay framework based on interference cancellation in wireless networks.,2016,16,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm16.html#FuLHD16,https://doi.org/10.1002/wcm.2567 +Kai Zhang 0016,Scalable and Soundness Verifiable Outsourcing Computation in Marine Mobile Computing.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#ZhangWLQ17,https://doi.org/10.1155/2017/6128437 +Congsi Wang,Position Tolerance Design Method for Array Antenna in Internet of Things.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#WangYYGZWWP18,https://doi.org/10.1155/2018/7574041 +Tsang-Ling Sheu,An adaptive channel preemption model for small-cell embedded large-cellular networks.,2013,13,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm13.html#SheuL13,https://doi.org/10.1002/wcm.1110 +Youngjae Kim,Adaptive polling MAC schemes for IEEE 802.11 wireless LANs supporting voice-over-IP (VoIP) services.,2004,4,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm4.html#KimS04,https://doi.org/10.1002/wcm.262 +Mohammad Abdul Azim,An optimized forwarding protocol for lifetime extension of wireless sensor networks.,2009,9,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm9.html#AzimKJ09,https://doi.org/10.1002/wcm.599 +Besma Smida,Analysis of multi-user detection of multi-rate transmissions in multi-cellular CDMA.,2009,9,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm9.html#SmidaA09,https://doi.org/10.1002/wcm.671 +Ching-Hsiang Chuang,Performance study for HARQ-ARQ interaction of LTE.,2010,10,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm10.html#ChuangL10,https://doi.org/10.1002/wcm.834 +Chao Dong 0002,An Efficient SCMA Codebook Optimization Algorithm Based on Mutual Information Maximization.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#DongGNL18,https://doi.org/10.1155/2018/8910907 +Qian Wang,An optimal cooperative spectrum sensing strategy with exponential primary link traffic.,2014,14,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm14.html#WangYY14,https://doi.org/10.1002/wcm.2236 +Nidal Nasser,Optimized bandwidth allocation with fairness and service differentiation in multimedia wireless networks.,2008,8,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm8.html#NasserH08,https://doi.org/10.1002/wcm.467 +Karin Anna Hummel,Movement activity estimation and forwarding effects for opportunistic networking based on urban mobility traces.,2013,13,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm13.html#HummelH13,https://doi.org/10.1002/wcm.2216 +Sheng-Qiang Huang,Mixed AF and DF cooperative relay systems and their performance bounds analyses.,2014,14,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm14.html#HuangCL14,https://doi.org/10.1002/wcm.2214 +Xueying Zhang,Constructing secured cognitive wireless networks: experiences and challenges.,2010,10,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm10.html#ZhangL10,https://doi.org/10.1002/wcm.878 +Jianjun Lei,Channel Assignment Mechanism for Multiple APs Cochannel Deployment in High Density WLANs.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LeiJS18,https://doi.org/10.1155/2018/6931765 +Saba Qasim Jabbar,Developing a Video Buffer Framework for Video Streaming in Cellular Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#JabbarKL18,https://doi.org/10.1155/2018/6584845 +Trista Pei-chun Chen,Second-generation error concealment for video transport over error-prone channels.,2002,2,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm2.html#ChenC02,https://doi.org/10.1002/wcm.83 +Yutaka Fukuda,Performance evaluation of TCP under dynamic allocation scheme for down-link transmission rate in W-CDMA systems.,2004,4,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm4.html#FukudaKIO04,https://doi.org/10.1002/wcm.169 +Wei-Kuo Chiang,Network-initiated simultaneous mobility in voice over 3GPP-WLAN.,2011,11,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm11.html#ChiangC11,https://doi.org/10.1002/wcm.915 +Redhwan Q. Shaddad,Utilization of Millimeter-Wave Spectrum in Wireless Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ShaddadAR18,https://doi.org/10.1155/2018/1641750 +M. Arthi,Fuzzy Logic Based Coverage and Cost Effective Placement of Serving Nodes for 4G and Beyond Cellular Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#ArthiA17,https://doi.org/10.1155/2017/8086204 +Josef Noll,Software Radio - a key technology for adaptive access.,2002,2,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm2.html#NollB02,https://doi.org/10.1002/wcm.103 +Brent Ishibashi,Forward focus: using routing information to improve medium access control in ad hoc networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#IshibashiB06,https://doi.org/10.1002/wcm.443 +Carlos Andreu,Experimental Assessment of Time Reversal for In-Body to In-Body UWB Communications.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#AndreuGCC18,https://doi.org/10.1155/2018/8927107 +Daxin Tian,Analysis of broadcasting delays in vehicular ad hoc networks.,2011,11,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm11.html#TianL11,https://doi.org/10.1002/wcm.939 +Rongxing Lu,Authenticated encryption protocol with perfect forward secrecy for mobile communication.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#LuCD06,https://doi.org/10.1002/wcm.394 +Victor C. M. Leung,Special Issue: Radio Link and Transport Protocol Engineering for Future-Generation Wireless Mobile Data Networks.,2005,5,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm5.html#LeungHV05,https://doi.org/10.1002/wcm.297 +Xiaodong Lin,A secure and efficient RSU-aided bundle forwarding protocol for vehicular delay tolerant networks.,2011,11,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm11.html#LinC11,https://doi.org/10.1002/wcm.935 +Udayan Kumar,Proximity based trust-advisor using encounters for mobile societies: Analysis of four filters.,2010,10,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm10.html#KumarTH10,https://doi.org/10.1002/wcm.1059 +Mohamed F. Younis,Optimal dynamic transport selection for wireless portable devices.,2007,7,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm7.html#YounisSY07,https://doi.org/10.1002/wcm.296 +Jie Hao,Compressed Sensing Based Joint Rate Allocation and Routing Design in Wireless Sensor Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#HaoWZZC18,https://doi.org/10.1155/2018/6261453 +Jian Ye,An efficient and fair cooperative approach for resource management in wireless networks.,2005,5,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm5.html#YePT05,https://doi.org/10.1002/wcm.345 +Guangxiang Yuan,Opportunistic user cooperative relaying in TDMA-based wireless networks.,2010,10,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm10.html#YuanPW10,https://doi.org/10.1002/wcm.811 +Song Ci,Improving goodput in IEEE 802.11 wireless LANs by using variable size and variable rate (VSVR) schemes .,2005,5,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm5.html#CiS05,https://doi.org/10.1002/wcm.227 +José Joaquín Escudero Garzás,An Analysis of the Network Selection Problem for Heterogeneous Environments with User-Operator Joint Satisfaction and Multi-RAT Transmission.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#GarzasB17,https://doi.org/10.1155/2017/7425412 +Lukasz Lopacinski,Data Link Layer Considerations for Future 100 Gbps Terahertz Band Transceivers.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#LopacinskiBK17,https://doi.org/10.1155/2017/3560521 +Ibrar Yaqoob,Mobile ad hoc cloud: A survey.,2016,16,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm16.html#YaqoobAGMRG16,https://doi.org/10.1002/wcm.2709 +Mohammad Towhidul Islam,Modeling epidemic data diffusion for wireless mobile networks.,2014,14,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm14.html#IslamAAS14,https://doi.org/10.1002/wcm.2233 +Jun Zhao,Spectrum sharing through distributed coordination in dynamic spectrum access networks.,2007,7,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm7.html#ZhaoZY07,https://doi.org/10.1002/wcm.481 +Qingyang Song,An adaptive quality-of-service network selection mechanism for heterogeneous mobile networks.,2005,5,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm5.html#SongJ05,https://doi.org/10.1002/wcm.330 +Mohsen Guizani,Change in editorial leadership.,2004,4,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm4.html#Guizani04,https://doi.org/10.1002/wcm.213 +Shuo Liu,Asymptotic analysis of multi-branch EGC and SC over equally correlated Rician channels.,2015,15,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm15.html#LiuSCB15,https://doi.org/10.1002/wcm.2380 +Wenxiu Xie,A Mobile-Based Question-Answering and Early Warning System for Assisting Diabetes Management.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#XieDYQ18,https://doi.org/10.1155/2018/9163160 +Khoa N. Le,Adaptive orthogonal frequency division multiplexing channel capacity employing diversity in cellular fading environments with symmetric scattering distributions.,2015,15,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm15.html#Le15,https://doi.org/10.1002/wcm.2322 +Bing Jia,The Fusion Model of Multidomain Context Information for the Internet of Things.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#JiaLGLR17,https://doi.org/10.1155/2017/6274824 +V. Carrozzo,Hybrid network based on optical intersatellite communication links and WDM technology.,2010,10,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm10.html#CarrozzoP10,https://doi.org/10.1002/wcm.675 +Yibo Wang,A Sentiment-Enhanced Hybrid Recommender System for Movie Recommendation: A Big Data Analytics Framework.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#WangWX18,https://doi.org/10.1155/2018/8263704 +Zeyang Dai,An intelligent cooperative sensing strategy with low overhead for cognitive radios.,2015,15,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm15.html#DaiLL15,https://doi.org/10.1002/wcm.2444 +Xiaofeng Lu,An elastic resource allocation algorithm enabling wireless network virtualization.,2015,15,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm15.html#LuYLZL15,https://doi.org/10.1002/wcm.2342 +Hassan A. Ahmed,Bit error rate performance of orthogonal frequency-division multiplexing relaying systems with high power amplifiers and Doppler effects.,2013,13,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm13.html#AhmedSH13,https://doi.org/10.1002/wcm.1135 +Andrea Calvagna,A cost-based approach to vertical handover policies between WiFi and GPRS.,2005,5,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm5.html#CalvagnaM05,https://doi.org/10.1002/wcm.331 +Yuan Tian,Cluster-based information processing in wireless sensor networks: an energy-aware approach.,2007,7,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm7.html#TianEO07,https://doi.org/10.1002/wcm.502 +Bin Le,Cognitive radio realities.,2007,7,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm7.html#LeRB07,https://doi.org/10.1002/wcm.479 +Guan Gui,Sub-Nyquist rate ADC sampling-based compressive channel estimation.,2015,15,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm15.html#GuiPA15,https://doi.org/10.1002/wcm.2372 +Annamalai Annamalai,Cauchy-Schwarz bound on the generalized Marcum Q-function with applications.,2001,1,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm1.html#AnnamalaiT01,https://doi.org/10.1002/wcm.15 +Jing Yang,Partial Cooperation Based on Dynamic Transmit Antennas for Two-Hop Massive MIMO Systems.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#YangZGYZ18,https://doi.org/10.1155/2018/4578059 +Tharith Sriv,Outage probability analysis of antenna array using maximum ratio combining in spherically invariant fading environment.,2008,8,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm8.html#SrivCK08,https://doi.org/10.1002/wcm.457 +Sang Guun Yoo,5G-VRSec: Secure Video Reporting Service in 5G Enabled Vehicular Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#Yoo17,https://doi.org/10.1155/2017/7256307 +Xu Su,Mitigation of colluding route falsification attacks by insider nodes in mobile ad hoc networks.,2009,9,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm9.html#SuB09,https://doi.org/10.1002/wcm.692 +Salvatore Serrano,VoIP traffic in wireless mesh networks: a MOS-based routing scheme.,2016,16,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm16.html#SerranoCLPG16,https://doi.org/10.1002/wcm.2598 +Binod Vaidya,Security mechanism for voice over multipath mobile ad hoc networks.,2011,11,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm11.html#VaidyaDR11,https://doi.org/10.1002/wcm.948 +Natalia Vassileva,Effect of AMC on fixed-rate traffic with hard delay constraints in mobile broadband systems.,2015,15,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm15.html#VassilevaK15,https://doi.org/10.1002/wcm.2374 +Tetsuro Ueda,ACR: an adaptive communication-aware routing through maximally zone-disjoint shortest paths in ad hoc wireless networks with directional antenna.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#UedaTKRSB06,https://doi.org/10.1002/wcm.379 +Wei Jiang,Design of spreading codes with high diversity gain for multicarrier CDMA systems.,2007,7,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm7.html#JiangL07,https://doi.org/10.1002/wcm.513 +Farhad Khozeimeh,Dynamic spectrum management for cognitive radio: an overview.,2009,9,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm9.html#KhozeimehH09,https://doi.org/10.1002/wcm.732 +Irshad A. Qaimkhani,Contention-free approaches for WiFi MAC design for VoIP services: performance analysis and comparison.,2009,9,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm9.html#QaimkhaniH09a,https://doi.org/10.1002/wcm.666 +Yanyan Wang,Sparse Multipath Channel Estimation Using Norm Combination Constrained Set-Membership NLMS Algorithms.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#WangL17,https://doi.org/10.1155/2017/8140702 +José Ramón Gállego,A TDMA MAC protocol for multiservice wireless ad hoc networks.,2010,10,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm10.html#GallegoCHV10,https://doi.org/10.1002/wcm.789 +Marie-Rita Hojeij,Weighted Proportional Fair Scheduling for Downlink Nonorthogonal Multiple Access.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#HojeijNFD18,https://doi.org/10.1155/2018/5642765 +Xiangyu Peng,Performance analysis of RTS/CTS scheme in WLAN with the impact of bit errors.,2012,12,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm12.html#PengJX12,https://doi.org/10.1002/wcm.1045 +Giuseppe Martuscelli,V2V protocols for traffic congestion discovery along routes of interest in VANETs: a quantitative study.,2016,16,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm16.html#MartuscelliBFB16,https://doi.org/10.1002/wcm.2729 +Dixian Zhao,CORDIC-Based Multi-Gb/s Digital Outphasing Modulator for Highly Efficient Millimeter-Wave Transmitters.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhaoH18,https://doi.org/10.1155/2018/7216870 +Wei Mo,EM-based iterative receiver for coded MIMO systems in unknown spatially correlated noise.,2007,7,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm7.html#MoWD07,https://doi.org/10.1002/wcm.319 +Roberto Carrasco-Alvarez,A Triply Selective MIMO Channel Simulator Using GPUs.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#Carrasco-Alvarez18,https://doi.org/10.1155/2018/3517489 +Jelena V. Misic,Impact of Bluetooth MAC layer on the performance of TCP traffic.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#MisicCM06,https://doi.org/10.1002/wcm.446 +E. P. Vasilakopoulou,A HiperLAN II frame processor implementation.,2003,3,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm3.html#VasilakopoulouPK03,https://doi.org/10.1002/wcm.95 +Mun-Suk Kim,Load balancing and its performance evaluation for layer 3 and IEEE 802.21 frameworks in PMIPv6-based wireless networks.,2010,10,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm10.html#KimL10,https://doi.org/10.1002/wcm.832 +Zae-Kwun Lee,QoS-aware routing and power control algorithm for multimedia service over multi-hop mobile ad hoc network.,2012,12,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm12.html#LeeLOS12,https://doi.org/10.1002/wcm.995 +Najah A. Abu Ali,Selectivity function scheduler for IEEE 802.11e HCCA access mode.,2013,13,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm13.html#AliBH13,https://doi.org/10.1002/wcm.1098 +Bahador Amiri,Cross-layer design of outage optimum routing metric for wireless ad hoc networks.,2011,11,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm11.html#AmiriSG11,https://doi.org/10.1002/wcm.1209 +Hang-Wen Hwang,A batch-update strategy for the distributed HLRs architecture in PCS networks.,2003,3,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm3.html#HwangTC03,https://doi.org/10.1002/wcm.90 +Wellington Lobato Jr.,A Game Theory Approach for Platoon-Based Driving for Multimedia Transmission in VANETs.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LobatoRCVG18,https://doi.org/10.1155/2018/2414658 +Hongqiang Zhai,Performance analysis of IEEE 802.11 MAC protocols in wireless LANs.,2004,4,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm4.html#ZhaiKF04,https://doi.org/10.1002/wcm.263 +Lanhua Xiang,Area Spectral Efficiency and Energy Efficiency Tradeoff in Ultradense Heterogeneous Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#XiangCZ17,https://doi.org/10.1155/2017/4390197 +Hsiao-Hwa Chen,Special issue: emerging multiple access technologies.,2005,5,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm5.html#ChenLB05,https://doi.org/10.1002/wcm.287 +Sara Efazati,Quality of service analysis and improvement with cross layer power allocation in multirelay networks.,2016,16,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm16.html#EfazatiA16,https://doi.org/10.1002/wcm.2577 +Mohammad Hammoudeh,Interpolation techniques for building a continuous map from discrete wireless sensor network data.,2013,13,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm13.html#HammoudehNDM13,https://doi.org/10.1002/wcm.1139 +Elias Z. Tragos,Dynamic segmentation of cellular networks for improved handover performance.,2008,8,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm8.html#TragosKKV08,https://doi.org/10.1002/wcm.537 +Ayman T. Abusabah,NOMA for Multinumerology OFDM Systems.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#AbusabahA18,https://doi.org/10.1155/2018/8514314 +Marvin K. Simon,A moment generating function (MGF)-based approach for performance evaluation of space-time coded communication systems.,2002,2,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm2.html#Simon02,https://doi.org/10.1002/wcm.81 +Hai Jiang 0001,A distributed MAC scheme supporting voice services in mobile ad hoc networks.,2010,10,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm10.html#JiangWPZ10,https://doi.org/10.1002/wcm.784 +Sarvesh S. Kulkarni,Adaptive control of heterogeneous ad hoc networks.,2004,4,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm4.html#KulkarniDMS04,https://doi.org/10.1002/wcm.200 +Taimur Bakhshi,State of the Art and Recent Research Advances in Software Defined Networking.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#Bakhshi17,https://doi.org/10.1155/2017/7191647 +Da Chen,Analytical evaluation of downlink interference mitigation in multi-macrocell/femtocell networks with frequency and cell partitioning.,2016,16,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm16.html#ChenJLS16,https://doi.org/10.1002/wcm.2768 +Youngho Jo,On cracking direct-sequence spread-spectrum systems.,2010,10,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm10.html#JoW10,https://doi.org/10.1002/wcm.815 +Xiaohu Ge,5G multimedia massive MIMO communications systems.,2016,16,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm16.html#GeWZLN16,https://doi.org/10.1002/wcm.2704 +Susana Loredo,Small-Scale Fading Analysis of the Vehicular-to-Vehicular Channel inside Tunnels.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#LoredoCFRRR17,https://doi.org/10.1155/2017/1987437 +Thomas Stockhammer,Nested harmonic broadcasting for scalable video over mobile datacast channels.,2007,7,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm7.html#StockhammerGSSJWX07,https://doi.org/10.1002/wcm.476 +Michael Chien-Chun Hung,Joint sink deployment and association for multi-sink wireless camera networks.,2016,16,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm16.html#HungL16,https://doi.org/10.1002/wcm.2509 +Zouheir Rezki,Diversity-multiplexing tradeoff over correlated Rayleigh fading channels: a non-asymptotic analysis.,2010,10,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm10.html#RezkiHGA10,https://doi.org/10.1002/wcm.751 +Der-Jiunn Deng,On delay constrained CAC scheme and scheduling policy for CBR traffic in IEEE 802.11e wireless LANs.,2010,10,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm10.html#DengKCH10,https://doi.org/10.1002/wcm.840 +Alessandro Soro,Minding the Gap: Reconciling Human and Technical Perspectives on the IoT for Healthy Ageing.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#SoroAB17,https://doi.org/10.1155/2017/7439361 +Kyunghwi Kim,PND: a p-persistent neighbor discovery protocol in wireless networks.,2013,13,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm13.html#KimRLLD13,https://doi.org/10.1002/wcm.1128 +Pu Wang,Joint data aggregation and encryption using Slepian-Wolf coding for clustered wireless sensor networks.,2010,10,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm10.html#WangZYL10,https://doi.org/10.1002/wcm.790 +Muhammad Usman Sheikh,Assessment of smart traffic handling scheme in multimode multiband cellular network.,2011,11,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm11.html#SheikhL11,https://doi.org/10.1002/wcm.1210 +Yongxuan Lai,Multiple-resolution content sharing in mobile opportunistic networks.,2015,15,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm15.html#LaiCWM15,https://doi.org/10.1002/wcm.2472 +Yongxu Hu,Performance and diversity analysis of decode-and-forward cooperative system over Nakagami-m fading channels.,2011,11,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm11.html#HuLT11,https://doi.org/10.1002/wcm.866 +Hwangnam Kim,Protecting Download Traffic from Upload Traffic over Asymmetric Wireless Links.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#KimLKKY18,https://doi.org/10.1155/2018/1283420 +Hamed M. K. Alazemi,Fixed channel assignment algorithm for multi-radio multi-channel MESH networks.,2008,8,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm8.html#AlazemiDVR08,https://doi.org/10.1002/wcm.532 +Yi Zhou,A Fuzzy-Rule Based Data Delivery Scheme in VANETs with Intelligent Speed Prediction and Relay Selection.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhouLSLC18,https://doi.org/10.1155/2018/7637059 +Jiming Chen,Energy-constrained mobile sensor with motion plans for monitoring stochastic events.,2010,10,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm10.html#ChenHS10,https://doi.org/10.1002/wcm.812 +Thomas Nilsson,A collision detection method for multicast transmissions in CSMA/CA networks.,2007,7,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm7.html#NilssonWE07,https://doi.org/10.1002/wcm.421 +Lei Ma,A 3.22-5.45 GHz and 199 dBc/Hz FoMT CMOS Complementary Class-C DCO.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#MaYCLM18,https://doi.org/10.1155/2018/4968391 +Feng Seng Chu,Radio resource management of self-organizing OFDMA wireless mesh networks.,2011,11,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm11.html#ChuC11,https://doi.org/10.1002/wcm.1020 +Yue Wang 0003,Characterizing the capacity gain of stream control scheduling in MIMO wireless mesh networks.,2009,9,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm9.html#WangCL09,https://doi.org/10.1002/wcm.632 +Siyue Sun,Evolution from symbol-level space-time coded MIMO to chip-level space-time coded MIMO: a review.,2014,14,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm14.html#SunYMC14,https://doi.org/10.1002/wcm.2217 +Jeng-Long Chiang,An efficient MAC protocol with cooperative retransmission in mobile ad hoc networks.,2012,12,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm12.html#ChiangSTC12,https://doi.org/10.1002/wcm.1015 +Gang Lu,An adaptive energy-efficient and low-latency MAC for tree-based data gathering in sensor networks.,2007,7,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm7.html#LuKR07,https://doi.org/10.1002/wcm.503 +Longteng Xu,Performance Analysis of RF-Powered Cognitive Radio Networks with Integrated Ambient Backscatter Communications.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#XuZWG18,https://doi.org/10.1155/2018/8509693 +Shao-I Chu,Performance analysis and power allocation for decode-and-forward cooperative communications over Rician fading channel.,2013,13,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm13.html#ChuLLC13,https://doi.org/10.1002/wcm.1194 +Baoxian Zhang,Localized power-aware alternate routing for wireless ad hoc networks.,2009,9,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm9.html#ZhangMZM09,https://doi.org/10.1002/wcm.636 +Inhyeok Jang,An opportunistic forwarding protocol with relay acknowledgment for vehicular ad hoc networks.,2011,11,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm11.html#JangCL11,https://doi.org/10.1002/wcm.991 +Itzik Kitroser,Preference-based zone selection in 802.16 networks.,2016,16,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm16.html#KitroserB16,https://doi.org/10.1002/wcm.2671 +Telvis E. Calhoun,An 802.11 MAC layer covert channel.,2012,12,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm12.html#CalhounCLB12,https://doi.org/10.1002/wcm.969 +Fang Dong,Angle random forwarding (AnRaF) for wireless sensor networks: performances and realization.,2009,9,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm9.html#DongQZ09,https://doi.org/10.1002/wcm.647 +Peng Guo,Utilizing acoustic propagation delay to design MAC protocols for underwater wireless sensor networks.,2008,8,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm8.html#GuoJZC08,https://doi.org/10.1002/wcm.659 +Jian Pu,Utility-based fair bandwidth sharing in vehicular networks (extended).,2010,10,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm10.html#PuH10,https://doi.org/10.1002/wcm.1069 +Mingming Lu,Localized access point selection in infrastructure wireless LANs with performance guarantee.,2011,11,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm11.html#LuW11,https://doi.org/10.1002/wcm.800 +Yingying Ren,Quality Utilization Aware Based Data Gathering for Vehicular Communication Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#RenL0HW18,https://doi.org/10.1155/2018/6353714 +Guangshun Li,Data Processing Delay Optimization in Mobile Edge Computing.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LiWWS18,https://doi.org/10.1155/2018/6897523 +Theodore S. Stamoulakatos,Hidden Markov modeling and macroscopic traffic filtering supporting location-based services.,2007,7,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm7.html#StamoulakatosS07,https://doi.org/10.1002/wcm.350 +Fabio Dovis,Design and test-bed implementation of a reconfigurable receiver for navigation applications.,2002,2,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm2.html#DovisGM02,https://doi.org/10.1002/wcm.99 +Zhijie Han,A Novel UDT-Based Transfer Speed-Up Protocol for Fog Computing.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#HanFLX18,https://doi.org/10.1155/2018/3681270 +Xiangming Li,Quasi-regular rate-compatible LDPC codes with a novel diagonal-tailed encoding on noisy channels.,2015,15,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm15.html#LiJA15,https://doi.org/10.1002/wcm.2346 +Manikandan Arunachalam,Cross-Layer Design for Downlink Scheduling Combined with Call Admission Control in Wireless Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#ArunachalamK17,https://doi.org/10.1155/2017/3750380 +Guangjie Han,MANCL: a multi-anchor nodes collaborative localization algorithm for underwater acoustic sensor networks.,2016,16,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm16.html#HanZLS16,https://doi.org/10.1002/wcm.2561 +Yi Shang,Distributed systems of sensors and actuators.,2009,9,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm9.html#ShangSZG09,https://doi.org/10.1002/wcm.752 +Mohamed F. Younis,Wireless ad hoc networks: technologies and challenges.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#YounisO06,https://doi.org/10.1002/wcm.449 +Aymen Omri,Interference management schemes for multi-user cooperative wireless networks.,2016,16,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm16.html#OmriH16,https://doi.org/10.1002/wcm.2593 +Sang-Jo Yoo,DCR-MAC: distributed cognitive radio MAC protocol for wireless ad hoc networks.,2009,9,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm9.html#YooNH09,https://doi.org/10.1002/wcm.610 +Kai-Hsiang Hu,MBS zone configuration schemes for wireless multicast and broadcast service.,2010,10,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm10.html#HuFL10,https://doi.org/10.1002/wcm.1061 +Ayotunde O. Laiyemo,Feasibility Studies on the Use of Higher Frequency Bands and Beamforming Selection Scheme for High Speed Train Communication.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#LaiyemoLPL17,https://doi.org/10.1155/2017/1830987 +Seizo Onoe,3G evolution scenario toward 4G: Super 3G concept.,2007,7,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm7.html#OnoeNH07,https://doi.org/10.1002/wcm.511 +Heberto del Rio,Logarithmic expected packet delivery delay in mobile ad hoc wireless networks.,2004,4,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm4.html#RioS04,https://doi.org/10.1002/wcm.218 +Quanzhong Li,Optimal precoder design for non-regenerative multiple-input multiple-output cognitive relay systems with perfect and imperfect channel state information.,2015,15,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm15.html#LiLQ15,https://doi.org/10.1002/wcm.2401 +Mohammad Aliasgari,Multiplierless filter-bank based multicarrier system by using canonical signed digit representation.,2016,16,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm16.html#AliasgariMBF16,https://doi.org/10.1002/wcm.2553 +Jules Merlin Mouatcho Moualeu,Cooperative amplify-and-forward partial relay selection with outdated channel information in spectrum-sharing systems.,2016,16,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm16.html#MoualeuHT16,https://doi.org/10.1002/wcm.2711 +Mohammed A. Moharrum,Dynamic combinatorial key management scheme for sensor networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#MoharrumEM06,https://doi.org/10.1002/wcm.435 +Shu Yang,Message Relaying and Collaboration Motivating for Mobile Crowdsensing Service: An Edge-Assisted Approach.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#YangLYLY18,https://doi.org/10.1155/2018/1287969 +Chen Sun,Distributed two-hop proportional fair resource allocation in Long Term Evolution Advanced networks.,2016,16,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm16.html#SunWZW16,https://doi.org/10.1002/wcm.2517 +Zeyu Sun,CS-PLM: Compressive Sensing Data Gathering Algorithm Based on Packet Loss Matching in Sensor Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#SunTXP18,https://doi.org/10.1155/2018/5131949 +Jie Xiang 0001,Medium access control protocols in cognitive radio networks.,2010,10,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm10.html#XiangZS10,https://doi.org/10.1002/wcm.906 +Mingyu Kang,Partial feedback schemes for MIMO-OFDMA systems using random beamforming: analysis and optimization.,2014,14,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm14.html#KangSKK14,https://doi.org/10.1002/wcm.2212 +Fred Daneshgaran,A novel class of decimation filters for Sigma Delta A/D converters .,2002,2,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm2.html#DaneshgaranL02,https://doi.org/10.1002/wcm.101 +Shijun Lin,Carrier sensing range analysis in a general IEEE 802.11 network with physical-layer network coding.,2015,15,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm15.html#LinS15,https://doi.org/10.1002/wcm.2489 +Tao Jing,A Probabilistic Privacy Preserving Strategy for Word-of-Mouth Social Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#JingCW18,https://doi.org/10.1155/2018/6031715 +Javier Gómez,Using Smartphones to Assist People with Down Syndrome in Their Labour Training and Integration: A Case Study.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#GomezTM17,https://doi.org/10.1155/2017/5062371 +Duc-Thang Nguyen,An SDN-Based Connectivity Control System for Wi-Fi Devices.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#NguyenK18,https://doi.org/10.1155/2018/9359878 +Muhammad Faisal Amjad,Evolutionary non-cooperative spectrum sharing game: long-term coexistence for collocated cognitive radio networks.,2016,16,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm16.html#AmjadCNZ16,https://doi.org/10.1002/wcm.2674 +Bumkwi Choi,Sequential frequency reuse with power control for OFDMA systems.,2013,13,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm13.html#ChoiLL13,https://doi.org/10.1002/wcm.1093 +Tin-Yu Wu,Game theory-based global optimization for inter-WBAN interference mitigation.,2016,16,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm16.html#WuL16,https://doi.org/10.1002/wcm.2769 +Hugo Landaluce,A High Throughput Anticollision Protocol to Decrease the Energy Consumption in a Passive RFID System.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#LandaluceAPBC17,https://doi.org/10.1155/2017/2135182 +Raouia Ayadi,Efficient Offline Waveform Design Using Quincunx/Hexagonal Time-Frequency Lattices.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#Ayadi0017,https://doi.org/10.1155/2017/9207108 +Albert J. Höglund,Automated optimization of key WCDMA parameters.,2005,5,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm5.html#HoglundV05,https://doi.org/10.1002/wcm.212 +Tuo Shen,A New Movement Authority Based on Vehicle-Centric Communication.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ShenS18,https://doi.org/10.1155/2018/7451361 +Ser Wah Oh,TV white-space sensing prototype.,2009,9,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm9.html#OhLZAZK09,https://doi.org/10.1002/wcm.708 +Hyun-sung Park,Wi-Fi-based modeling and hybrid routing scheme for delay-tolerant public bus network.,2015,15,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm15.html#ParkK15,https://doi.org/10.1002/wcm.2392 +Mohamed Oussama Cherif,Efficient data dissemination in cooperative vehicular networks.,2013,13,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm13.html#CherifSD13,https://doi.org/10.1002/wcm.1171 +Chunmei Zhang,A distributed battery recovery aware topology control algorithm for wireless sensor networks.,2016,16,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm16.html#ZhangWYZL16,https://doi.org/10.1002/wcm.2718 +Di Zhang 0002,Energy Efficiency Analysis of ICN Assisted 5G IoT System.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#0002ZZM17,https://doi.org/10.1155/2017/6579467 +Kuan-Lin Chiu,Cross-layer design vehicle-aided handover scheme in VANETs.,2011,11,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm11.html#ChiuHC11,https://doi.org/10.1002/wcm.861 +Trung Quang Duong,Performance analysis of cooperative spatial multiplexing networks with AF/DF relaying and linear receiver over Rayleigh fading channels.,2015,15,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm15.html#DuongSCBH15,https://doi.org/10.1002/wcm.2363 +Kwang-Cheng Chen,Routing for cognitive radio networks consisting of opportunistic links.,2010,10,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm10.html#ChenCPPWL10,https://doi.org/10.1002/wcm.776 +Jun Xu 0002,Mobile location estimation for DS-CDMA systems using self-organizing maps.,2007,7,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm7.html#XuSMC07,https://doi.org/10.1002/wcm.325 +Ju-Lan Hsu,Cross-layer design of joint routing and rate control in ad hoc wireless networks.,2010,10,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm10.html#HsuR10,https://doi.org/10.1002/wcm.900 +Xiping Hu,Crowdsourcing for Mobile Networks and IoT.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#HuNZNBW18,https://doi.org/10.1155/2018/6231236 +Jui Teng Wang,Ratioed power and rate control for CDMA wireless networks.,2009,9,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm9.html#Wang09,https://doi.org/10.1002/wcm.604 +Shie-Yuan Wang,NCTUns network simulation and emulation for wireless resource management.,2005,5,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm5.html#WangL05,https://doi.org/10.1002/wcm.354 +Behnam Rouzbehani,A Service-Oriented Approach for Radio Resource Management in Virtual RANs.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#RouzbehaniCC18,https://doi.org/10.1155/2018/4163612 +Jung-Hwan Cha,A Mobility Link Service for NDN Consumer Mobility.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ChaCKHM18,https://doi.org/10.1155/2018/5149724 +Wenkun Wen,Cross-level PRC transmitter for TH-PAM UWB systems.,2010,10,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm10.html#WenZX10,https://doi.org/10.1002/wcm.823 +Ping Sui,Frequency-Hopping Transmitter Fingerprint Feature Classification Based on Kernel Collaborative Representation Classifier.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#SuiGZL17,https://doi.org/10.1155/2017/9403590 +Ahmet Yilmaz,End-to-end performance of transmit antenna selection and generalized selection combining in dual-hop amplify-and-forward relay network in the presence of feedback errors.,2014,14,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm14.html#YilmazK14a,https://doi.org/10.1002/wcm.2224 +Fatima Zohra Bousbaa,Robust geocast routing protocols for safety and comfort applications in VANETs.,2016,16,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm16.html#BousbaaZLY16,https://doi.org/10.1002/wcm.2603 +Stephen F. Bush,Special issue: advances in resource-constrained device networking.,2007,7,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm7.html#BushK07,https://doi.org/10.1002/wcm.531 +Jorge Munilla,Distance bounding protocols for RFID enhanced by using void-challenges and analysis in noisy channels.,2008,8,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm8.html#MunillaP08,https://doi.org/10.1002/wcm.590 +Ahmer Khan Jadoon,Lightweight Cryptographic Techniques for Automotive Cybersecurity.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#JadoonWLZ18,https://doi.org/10.1155/2018/1640167 +Krzysztof Brzostowski,Data Fusion in Ubiquitous Sports Training: Methodology and Application.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#BrzostowskiS18,https://doi.org/10.1155/2018/8180296 +Iclia Villordo,A Selective-Awakening MAC Protocol for Energy-Efficient Data Forwarding in Linear Sensor Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#VillordoTCMRM18,https://doi.org/10.1155/2018/6351623 +Lichen Zhu,A Sparse Temporal Synchronization Algorithm of Laser Communications for Feeder Links in 5G Nonterrestrial Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhuHBW18,https://doi.org/10.1155/2018/8284617 +Mingfeng Huang,Green Data Gathering under Delay Differentiated Services Constraint for Internet of Things.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#HuangLWH18,https://doi.org/10.1155/2018/9715428 +Farid Touati,Feasibility and performance evaluation of a 6LoWPAN-enabled platform for ubiquitous healthcare monitoring.,2016,16,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm16.html#TouatiMEMHG16,https://doi.org/10.1002/wcm.2601 +Dapeng Qiao,Non-convex model for sensor network localization based on connectivity.,2014,14,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm14.html#QiaoP14,https://doi.org/10.1002/wcm.2240 +Tsang-Ling Sheu,Pipelined forwarding with energy balance in hexagonal wireless sensor networks.,2014,14,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm14.html#SheuS14,https://doi.org/10.1002/wcm.2312 +Xin Liu 0022,CPSFS: A Credible Personalized Spam Filtering Scheme by Crowdsourcing.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#LiuZZZDWZ17,https://doi.org/10.1155/2017/1457870 +Changle Li,A novel self-adaptive transmission scheme over an IEEE 802.11 WLAN for supporting multi-service.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#LiLC06,https://doi.org/10.1002/wcm.288 +Wei Kuang Lai,MARS: a multiple access scheme with sender driven and reception first for smart antenna in ad hoc networks.,2009,9,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm9.html#LaiTC09,https://doi.org/10.1002/wcm.600 +Jai Sukh Paul Singh,Advanced Multiresolution Wavelet Based Wideband Spectrum Sensing Technique for Cognitive Radio.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#SinghRKSKK18,https://doi.org/10.1155/2018/1908536 +Sizheng Chen,A Low Power Impedance Transparent Receiver with Linearity Enhancement Technique for IoT Applications.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ChenSMKYM18,https://doi.org/10.1155/2018/9130910 +Wei-Peng Chen,Syndrome: a light-weight approach to improving TCP performance in mobile wireless networks.,2002,2,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm2.html#ChenHHGF02,https://doi.org/10.1002/wcm.32 +Yaozhou Ma,Optimized message delivery framework using fuzzy logic for intermittently connected mobile ad hoc networks.,2009,9,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm9.html#MaJ09,https://doi.org/10.1002/wcm.693 +Jen-Der Lin,Constrained TST MUSIC for joint spatio-temporal channel parameter estimation in DS/CDMA systems.,2005,5,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm5.html#LinFC05,https://doi.org/10.1002/wcm.281 +Md. Rajibul Islam,An efficient MAC protocol for cooperative diversity in mobile ad hoc networks.,2008,8,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm8.html#IslamH08,https://doi.org/10.1002/wcm.525 +Nesrine Belhaj,Adaptive modulation and combining for bandwidth and power efficient communication over fading channels.,2007,7,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm7.html#BelhajHAB07,https://doi.org/10.1002/wcm.370 +Halim Yanikomeroglu,Radio Resource Management for Wireless Internet.,2003,3,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm3.html#YanikomerogluAH03,https://doi.org/10.1002/wcm.182 +B. S. Manoj,Slot allocation strategies for delay sensitive traffic support in asynchronous ad hoc wireless networks.,2005,5,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm5.html#ManojVM05,https://doi.org/10.1002/wcm.209 +Byung-Jin Lee,Enhanced Transmit-Antenna Selection Schemes for Multiuser Massive MIMO Systems.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#LeeJKK17,https://doi.org/10.1155/2017/3463950 +Abdallah Bou Saleh,On cell range extension in LTE-Advanced Type 1 inband relay networks.,2015,15,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm15.html#SalehBRH15,https://doi.org/10.1002/wcm.2377 +Ilsun You,Next generation mobility management.,2011,11,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm11.html#YouHCC11,https://doi.org/10.1002/wcm.1136 +Vincent Ngo,A schedule-based medium access control protocol for mobile wireless sensor networks.,2014,14,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm14.html#NgoWA14,https://doi.org/10.1002/wcm.2220 +Jyh-Horng Wen,Performance analysis of multi-stage interference cancellation for ultra-wide band multiple-access communication systems.,2012,12,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm12.html#WenH12,https://doi.org/10.1002/wcm.1068 +Itzik Kitroser,Efficient mapping of multiple VoIP vocoders in WiMAX systems.,2011,11,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm11.html#KitroserCB11,https://doi.org/10.1002/wcm.841 +Kefei Xin,Multi-target localization in wireless sensor networks: a compressive sampling-based approach.,2015,15,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm15.html#XinCC15,https://doi.org/10.1002/wcm.2382 +Wooseong Kim,MC-GiV2V: Multichannel Allocation in mmWave-Based Vehicular Ad Hoc Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#Kim18,https://doi.org/10.1155/2018/2753025 +Xiaohui Lin,A game theoretic approach to balancing energy consumption in heterogeneous wireless sensor networks.,2015,15,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm15.html#LinKWX15,https://doi.org/10.1002/wcm.2328 +Wonyong Yoon,RFID reader collision problem: performance analysis and medium access.,2012,12,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm12.html#YoonV12a,https://doi.org/10.1002/wcm.972 +Mei Wang,A Mobile Computing Method Using CNN and SR for Signature Authentication with Contour Damage and Light Distortion.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#WangZLL18,https://doi.org/10.1155/2018/5412925 +Rahul Yadav,MeReg: Managing Energy-SLA Tradeoff for Green Mobile Cloud Computing.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#YadavZ17,https://doi.org/10.1155/2017/6741972 +Guangshun Li,Method of Resource Estimation Based on QoS in Edge Computing.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LiSWW18,https://doi.org/10.1155/2018/7308913 +Sohail Jabbar,Analysis of Factors Affecting Energy Aware Routing in Wireless Sensor Network.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#JabbarHMAAKH18,https://doi.org/10.1155/2018/9087269 +Luca Bedogni,Context-aware Android applications through transportation mode detection techniques.,2016,16,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm16.html#BedogniFB16,https://doi.org/10.1002/wcm.2702 +Wa Kong,A Doherty Power Amplifier with Large Back-Off Power Range Using Integrated Enhancing Reactance.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#KongXMYYZ18,https://doi.org/10.1155/2018/3968308 +Tianci Wang,Dynamic Power Splitting Strategy for SWIPT Based Two-Way Multiplicative AF Relay Networks with Nonlinear Energy Harvesting Model.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#WangLYR18,https://doi.org/10.1155/2018/1802063 +Massimiliano Laddomada,Reconfiguration issues of future mobile software radio platforms.,2002,2,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm2.html#Laddomada02,https://doi.org/10.1002/wcm.102 +Xiaodong Lin,MDPA: multidimensional privacy-preserving aggregation scheme for wireless sensor networks.,2010,10,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm10.html#LinLS10,https://doi.org/10.1002/wcm.796 +Huang Lu,Privacy-preserving authentication schemes for vehicular ad hoc networks: a survey.,2016,16,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm16.html#LuL16,https://doi.org/10.1002/wcm.2558 +Feng Yi,Why You Go Reveals Who You Know: Disclosing Social Relationship by Cooccurrence.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#YiLWS17,https://doi.org/10.1155/2017/3787089 +Lei Guang,Vulnerability assessment of ad hoc networks to MAC layer misbehavior.,2007,7,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm7.html#GuangA07,https://doi.org/10.1002/wcm.391 +Weikun Hou,Sparse channel estimation and tracking for cyclic delay diversity orthogonal frequency division multiplexing systems.,2013,13,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm13.html#HouW13,https://doi.org/10.1002/wcm.1208 +Simone Spagnol,Mobile Assistive Technologies.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#SpagnolCKK18,https://doi.org/10.1155/2018/8617892 +Qinghua Shi,Modulation classification for asynchronous high-order QAM signals.,2011,11,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm11.html#ShiGG11,https://doi.org/10.1002/wcm.940 +Omar Adil Mahdi,A comparison study on node clustering techniques used in target tracking WSNs for efficient data aggregation.,2016,16,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm16.html#MahdiWIzKAG16,https://doi.org/10.1002/wcm.2715 +Kai Peng,Intrusion Detection System Based on Decision Tree over Big Data in Fog Environment.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#PengLZWHL18,https://doi.org/10.1155/2018/4680867 +Miguel González-López,SCLDGM coded modulation for MIMO systems with spatial multiplexing and space-time block codes.,2011,11,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm11.html#Gonzalez-LopezVCG11,https://doi.org/10.1002/wcm.881 +Qing Wang 0004,Joint evolutionary spectrum and autoregressive-based approach to modeling non-stationary flat fading channels.,2014,14,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm14.html#WangWF14a,https://doi.org/10.1002/wcm.2201 +Min-ho Song,Self-optimization of handover parameters for dynamic small-cell networks.,2015,15,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm15.html#SongMH15,https://doi.org/10.1002/wcm.2439 +Wuchen Tang,Spectral and energy efficient cognitive radio-aided heterogeneous cellular network with uplink power adaptation.,2016,16,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm16.html#TangSITQW16,https://doi.org/10.1002/wcm.2673 +Jianzhong Huang,Progressive intercarrier and co-channel interference mitigation for underwater acoustic multi-input multi-output orthogonal frequency-division multiplexing.,2014,14,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm14.html#HuangZHPFW14,https://doi.org/10.1002/wcm.1251 +Antonio Canclini,Distributed 3D Source Localization from 2D DOA Measurements Using Multiple Linear Arrays.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#CancliniAST17,https://doi.org/10.1155/2017/1049141 +Anis Masmoudi,Cellular reuse patterns quality and efficiency comparison.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#MasmoudiT06,https://doi.org/10.1002/wcm.315 +Ravi K. Balachandran,An efficient and attack-resistant key agreement scheme for secure group communications in mobile ad-hoc networks.,2008,8,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm8.html#BalachandranZRTV08,https://doi.org/10.1002/wcm.575 +Bin Cao 0002,Dynamic cooperative media access control for wireless networks.,2015,15,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm15.html#CaoLWF15,https://doi.org/10.1002/wcm.2457 +Ruidong Li,On-demand public-key management for mobile ad hoc networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#LiLLC06,https://doi.org/10.1002/wcm.396 +Xiaohui Li,Adaptive low-priority transfer for high bandwidth and delay product networks.,2016,16,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm16.html#LiWHZH16,https://doi.org/10.1002/wcm.2737 +Wenye Wang,Integration of authentication and mobility management in third generation and WLAN data networks.,2005,5,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm5.html#WangLA05,https://doi.org/10.1002/wcm.335 +Louis Sibomana,Ergodic capacity of multiuser scheduling in cognitive radio networks: analysis and comparison.,2016,16,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm16.html#SibomanaZ16,https://doi.org/10.1002/wcm.2722 +Mark B. Breinholt,Space-time alignment for asynchronous interference suppression in MIMO OFDM cellular communications.,2004,4,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm4.html#BreinholtJZ04,https://doi.org/10.1002/wcm.254 +JaeHyu Kim,A Dual Key-Based Activation Scheme for Secure LoRaWAN.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#KimS17,https://doi.org/10.1155/2017/6590713 +Deng Liao,Cross-layer optimization for CDMA/TDD wireless mesh networks.,2011,11,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm11.html#LiaoE11,https://doi.org/10.1002/wcm.930 +Parag S. Mogre,A security framework for wireless mesh networks.,2011,11,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm11.html#MogreGHS11,https://doi.org/10.1002/wcm.984 +Ahmet Yilmaz,Performance of joint transmit and receive antenna selection in dual hop amplify-and-forward relay network over Nakagami-m fading channels.,2014,14,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm14.html#YilmazK14,https://doi.org/10.1002/wcm.1236 +Xihua Dong,Recursive maximum likelihood estimation of time-varying carrier frequency offset for orthogonal frequency-division multiplexing systems.,2013,13,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm13.html#DongLW13,https://doi.org/10.1002/wcm.1155 +Chih-Yung Chang,An energy-efficient hole-healing mechanism for wireless sensor networks with obstacles.,2013,13,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm13.html#ChangLYK13,https://doi.org/10.1002/wcm.1106 +Yean-Fu Wen,On energy-efficient aggregation routing and scheduling in IEEE 802.15.4-based wireless sensor networks.,2014,14,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm14.html#WenAP14,https://doi.org/10.1002/wcm.1249 +Fei Xie,Study of Patching-based and Caching-based video-on-demand in multi-hop WiMax mesh networks.,2011,11,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm11.html#XieHJH11,https://doi.org/10.1002/wcm.983 +Sarma Vangala,Shielding TCP from last hop wireless losses.,2007,7,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm7.html#VangalaL07,https://doi.org/10.1002/wcm.387 +Noor Muhammad Khan,Processing-Efficient Distributed Adaptive RLS Filtering for Computationally Constrained Platforms.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#KhanR17,https://doi.org/10.1155/2017/1248796 +He Zhu,IoT-B and B: Edge-Based NFV for IoT Devices with CPE Crowdsourcing.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhuH18,https://doi.org/10.1155/2018/3027269 +Arnaud Casteigts,Communication protocols for vehicular ad hoc networks.,2011,11,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm11.html#CasteigtsNS11,https://doi.org/10.1002/wcm.879 +David Garcia-Roger,Multicarrier Waveform Harmonization and Complexity Analysis for an Efficient 5G Air Interface Implementation.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#Garcia-Roger0VM17,https://doi.org/10.1155/2017/9765614 +Emanuel B. Rodrigues,Maximization of user satisfaction in OFDMA systems using utility-based resource allocation.,2016,16,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm16.html#RodriguesLMC16,https://doi.org/10.1002/wcm.2526 +Hina Tabassum,Resource allocation via sum-rate maximization in the uplink of multi-cell OFDMA networks.,2011,11,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm11.html#TabassumDA11,https://doi.org/10.1002/wcm.1223 +Sarath Gopi,Path unaware layered routing protocol (PULRP) with non-uniform node distribution for underwater sensor networks.,2008,8,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm8.html#GopiKCDM08,https://doi.org/10.1002/wcm.657 +Francisco Moya,Embedding standard distributed object-oriented middlewares in wireless sensor networks.,2009,9,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm9.html#MoyaVVBRL09,https://doi.org/10.1002/wcm.545 +Xiaohui Lin,Cross-layer design for energy efficient communication in wireless sensor networks.,2009,9,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm9.html#LinKW09,https://doi.org/10.1002/wcm.608 +Adrián Núñez-Marcos,Vision-Based Fall Detection with Convolutional Neural Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#Nunez-MarcosAA17,https://doi.org/10.1155/2017/9474806 +Gang Wu,Circular shifted transmit diversity.,2004,4,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm4.html#WuC04,https://doi.org/10.1002/wcm.192 +Adisorn Kheaksong,Multicriteria Parent Selection Using Cognitive Radio for RPL in Smart Grid Network.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#KheaksongSPL18,https://doi.org/10.1155/2018/9590576 +Jiefan Qiu,RePage: A Novel Over-Air Reprogramming Approach Based on Paging Mechanism Applied in Fog Computing.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#QiuLC18,https://doi.org/10.1155/2018/2940952 +Ling Li,Channel estimation and interference suppression for space-time coded systems in frequency-selective fading channels.,2002,2,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm2.html#LiLY02,https://doi.org/10.1002/wcm.80 +Iván García-Magariño,ABS-SmartPriority: An Agent-Based Simulator of Strategies for Managing Self-Reported Priorities in Smart Cities.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#Garcia-Magarino17,https://doi.org/10.1155/2017/7254181 +Sheng-Tzong Cheng,Radio resource management techniques for UE-MAC in 3GPP W-CDMA systems.,2003,3,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm3.html#ChengL03,https://doi.org/10.1002/wcm.181 +Wooguil Pak,Duty cycle allocation to maximize network lifetime of wireless sensor networks with delay constraints.,2014,14,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm14.html#PakCB14,https://doi.org/10.1002/wcm.2215 +Xiaoxin Wu,DISPOSER: distributed secure position service in mobile ad hoc networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#Wu06,https://doi.org/10.1002/wcm.401 +Yaoyuan Zhang,A virtualized resource management scheme for heterogeneous cellular networks.,2016,16,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm16.html#ZhangZLZC16,https://doi.org/10.1002/wcm.2748 +Qing Wang 0004,An evolutionary spectrum approach to modeling non-stationary fading channels.,2014,14,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm14.html#WangWF14,https://doi.org/10.1002/wcm.1235 +Dongkyun Kim,Performance improvement of TCP in ad hoc networks by mitigating channel contention.,2009,9,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm9.html#KimY09,https://doi.org/10.1002/wcm.738 +Chai-Keong Toh,Ad hoc mobile multicast routing using the concept of long-lived routes.,2001,1,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm1.html#TohB01,https://doi.org/10.1002/wcm.24 +Konstantinos Katsaros,An evaluation of routing in vehicular networks using analytic hierarchy process.,2016,16,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm16.html#KatsarosDST16,https://doi.org/10.1002/wcm.2578 +Nayeem Khan,Defending Malicious Script Attacks Using Machine Learning Classifiers.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#KhanAK17,https://doi.org/10.1155/2017/5360472 +Sunil Kumar 0001,E2SRT: enhanced event-to-sink reliable transport for wireless sensor networks.,2009,9,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm9.html#KumarFHX09,https://doi.org/10.1002/wcm.705 +Tin Yu Wu,Efficient IEEE 802.11 handoff based on a novel geographical fingerprint scheme.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#WuLC06,https://doi.org/10.1002/wcm.273 +Zhenyu Na,Distributed Routing Strategy Based on Machine Learning for LEO Satellite Network.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#NaPLDGG18,https://doi.org/10.1155/2018/3026405 +Shalini S. Periyalwar,Future mobile broadband wireless networks: a radio resource management perspective.,2003,3,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm3.html#PeriyalwarHSAM03,https://doi.org/10.1002/wcm.174 +Ya-Han Pan,Performance of selective space-time coding and selection diversity under perfect and imperfect CSI.,2009,9,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm9.html#PanA09,https://doi.org/10.1002/wcm.601 +Wei Kuang Lai,Tiered bandwidth reservation scheme for multimedia wireless networks.,2009,9,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm9.html#LaiTS09,https://doi.org/10.1002/wcm.650 +Dawei Shen,Congestion Control and Traffic Scheduling for Collaborative Crowdsourcing in SDN Enabled Mobile Wireless Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ShenYPFD18,https://doi.org/10.1155/2018/9821946 +Tsung-Wen Hsieh,Bluegon: a polygon-shaped scatternet formation algorithm for Bluetooth.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#HsiehC06,https://doi.org/10.1002/wcm.272 +Xi Zhang 0005,Space-time diversity-enhanced QoS provisioning for real-time service over MC-DS-CDMA based wireless networks.,2008,8,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm8.html#ZhangTC08,https://doi.org/10.1002/wcm.515 +Abduladhim Ashtaiwi,IEEE 802.11 medium access control enhancements based on simultaneous multiple-input multiple-output bandwidth sharing.,2014,14,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm14.html#AshtaiwiSH14,https://doi.org/10.1002/wcm.1252 +Deepshikha Garg,Comprehensive evaluation of chip interleaving effect on turbo-coded DS-SS in a Rayleigh fading channel with antenna diversity reception.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#GargA06,https://doi.org/10.1002/wcm.242 +Lionel Gueguen,Radio access technology recognition by classification of low temporal resolution power spectrum measurements.,2010,10,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm10.html#GueguenS10,https://doi.org/10.1002/wcm.818 +André S. R. Kuramoto,Sequence design for MPG QS-CDMA systems based on heuristic combinatorial optimization.,2012,12,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm12.html#KuramotoCAJ12,https://doi.org/10.1002/wcm.953 +Li-Chun Wang,A cross-layer cost-function based rate adaptation mechanism for the WCDMA system with multi-class services by transport format selection.,2005,5,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm5.html#WangCC05,https://doi.org/10.1002/wcm.299 +Dionysia Triantafyllopoulou,E-CLEMA: A cross-layer design for improved quality of service in mobile WiMAX networks.,2009,9,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm9.html#TriantafyllopoulouPMSM09,https://doi.org/10.1002/wcm.699 +Lexi Xu,Self-organising cluster-based cooperative load balancing in OFDMA cellular networks.,2015,15,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm15.html#XuCCSC15,https://doi.org/10.1002/wcm.2394 +Kwang-Chun Go,Estimation-based cell search method for a mobile relay deployed on a moving network.,2016,16,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm16.html#GoLK16,https://doi.org/10.1002/wcm.2703 +Eirini D. Karapistoli,Location-aided medium access control for low data rate UWB wireless sensor networks.,2012,12,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm12.html#KarapistoliGTP12,https://doi.org/10.1002/wcm.1022 +Xiaohu Ge,Characteristics analysis and modeling of frame traffic in 802.11 wireless networks.,2010,10,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm10.html#GeYWLLX10,https://doi.org/10.1002/wcm.850 +Shahzada Basharat Rasool,An approximate analysis of buffered CSMA in fading channels using tagged user analysis.,2008,8,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm8.html#RasoolS08,https://doi.org/10.1002/wcm.489 +Krishan Kumar 0002,A Spectrum Handoff Scheme for Optimal Network Selection in NEMO Based Cognitive Radio Vehicular Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#0002PT17,https://doi.org/10.1155/2017/6528457 +Guinian Feng,Interference minimum network topologies for ad hoc networks.,2012,12,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm12.html#FengFL12,https://doi.org/10.1002/wcm.993 +Bo Xu,Doppler-shifted frequency measurement based positioning for roadside-vehicle communication systems.,2011,11,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm11.html#XuSYZ11,https://doi.org/10.1002/wcm.867 +Li Li,Unsupervised learning of indoor localization based on received signal strength.,2016,16,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm16.html#LiYBW16,https://doi.org/10.1002/wcm.2678 +Shiang-Rung Ye,A jamming-based MAC protocol to improve the performance of wireless multihop ad-hoc networks.,2004,4,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm4.html#YeWT04,https://doi.org/10.1002/wcm.170 +Yu Gu 0003,QoS-aware target coverage in wireless sensor networks.,2009,9,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm9.html#GuJLZ09,https://doi.org/10.1002/wcm.748 +Tanveer A. Zia,Quality of security through triple key scheme in wireless sensor networks.,2010,10,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm10.html#ZiaZ10,https://doi.org/10.1002/wcm.733 +Ren-Song Ko,Analyzing the redeployment problem of mobile wireless sensor networks via geographic models.,2013,13,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm13.html#Ko13,https://doi.org/10.1002/wcm.1099 +Shuangyang Li,Superposition Coded Modulation Based Faster-Than-Nyquist Signaling.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LiBZHL18,https://doi.org/10.1155/2018/4181626 +Ben-Jye Chang,Adaptive radio resource management for maximizing reward and balancing loads in 4G hybrid universal mobile telecommunications system and long term evolution communications.,2015,15,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm15.html#ChangLC15,https://doi.org/10.1002/wcm.2358 +Yue Chen,Downlink radio resource optimization in wide-band CDMA systems.,2003,3,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm3.html#ChenC03,https://doi.org/10.1002/wcm.153 +Hua Shi,Dynamic spectrum allocation in heterogeneous wireless networks under interference constraints across the cell coverage.,2015,15,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm15.html#ShiLLJ15,https://doi.org/10.1002/wcm.2403 +Elizabeth M. Belding-Royer,Hierarchical routing in ad hoc mobile networks.,2002,2,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm2.html#Belding-Royer02,https://doi.org/10.1002/wcm.74 +Harry Leib,Uplink bit combining for multiple base-stations MIMO with applications to CoMP systems.,2016,16,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm16.html#LeibL16,https://doi.org/10.1002/wcm.2504 +Xiao Ma,Intelligent Healthcare Systems Assisted by Data Analytics and Mobile Computing.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#MaWZWZ18,https://doi.org/10.1155/2018/3928080 +Ming Li 0007,Architecture and protocol design for a pervasive robot swarm communication networks.,2011,11,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm11.html#LiHCMXRP11,https://doi.org/10.1002/wcm.856 +Arunesh Mishra,Security issues in IEEE 802.11 wireless local area networks: a survey.,2004,4,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm4.html#MishraPAF04,https://doi.org/10.1002/wcm.257 +Ahmet F. Coskun,Performance analysis of Alamouti scheme with transmit antenna selection in non-identical Nakagami-m fading channels.,2013,13,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm13.html#CoskunKA13,https://doi.org/10.1002/wcm.1131 +Wei Wang 0015,An adaptive approach for image encryption and secure transmission over multirate wireless sensor networks.,2009,9,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm9.html#WangPWS09,https://doi.org/10.1002/wcm.550 +Maryam Mohseni,Time and power scheduling in an ad hoc network with bidirectional relaying and network coding.,2015,15,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm15.html#MohseniZ15,https://doi.org/10.1002/wcm.2359 +Debiao He,Lightweight Data Aggregation Scheme against Internal Attackers in Smart Grid Using Elliptic Curve Cryptography.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#HeZWL17,https://doi.org/10.1155/2017/3194845 +Ling Xing,General Multimedia Trust Authentication Framework for 5G Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#XingMWX18,https://doi.org/10.1155/2018/8974802 +André L. F. de Almeida,Closed-loop MIMO transceiver with space-time multilayer transmit selection.,2014,14,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm14.html#AlmeidaS14,https://doi.org/10.1002/wcm.2249 +Canan Aydogdu,Goodput and throughput comparison of single-hop and multi-hop routing for IEEE 802.11 DCF-based wireless networks under hidden terminal existence.,2016,16,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm16.html#AydogduK16,https://doi.org/10.1002/wcm.2588 +Sok-Ian Sou,Improving session continuity through user mobility tracking for EPS inter-serving gateway handover.,2012,12,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm12.html#SouJL12,https://doi.org/10.1002/wcm.1037 +Ashish Agarwal,Improved capacity bounds for wireless networks.,2004,4,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm4.html#AgarwalK04,https://doi.org/10.1002/wcm.217 +Wenjing Zhang,An Operation Control Strategy for the Connected Maglev Trains Based on Vehicle-Borne Battery Condition Monitoring.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhangWYN18,https://doi.org/10.1155/2018/5698910 +Liang Yang,Performance analysis of MIMO systems with multiuser diversity.,2008,8,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm8.html#Yang08a,https://doi.org/10.1002/wcm.564 +Haixia Zhang 0001,A study on the PAPRs in multicarrier modulation systems with different orthogonal bases.,2007,7,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm7.html#ZhangYW07,https://doi.org/10.1002/wcm.327 +Zhu Xiao,Dynamic PCI allocation on avoiding handover confusion via cell status prediction in LTE heterogeneous small cell networks.,2016,16,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm16.html#XiaoLDWZ16,https://doi.org/10.1002/wcm.2662 +Ali F. Almutairi,Adaptive distribution-based handover scheme for cellular communication networks.,2005,5,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm5.html#AlmutairiAK05,https://doi.org/10.1002/wcm.210 +Chao Yu,Digital Predistortion of Ultra-Broadband mmWave Power Amplifiers with Limited Tx/Feedback Loop/Baseband Bandwidth.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#YuLSWZ18,https://doi.org/10.1155/2018/4510243 +Oluwole John Famoriji,Wireless Interconnect in Multilayer Chip-Area-Networks for Future Multimaterial High-Speed Systems Design.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#FamorijiYKKFAL17,https://doi.org/10.1155/2017/6083626 +Yi Li,Improving routing in networks of Unmanned Aerial Vehicles: Reactive-Greedy-Reactive.,2012,12,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm12.html#LiSSK12,https://doi.org/10.1002/wcm.2333 +Kai Dong,Dealing with Insufficient Location Fingerprints in Wi-Fi Based Indoor Location Fingerprinting.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#DongLXYW017,https://doi.org/10.1155/2017/1268515 +Yujun Cheng,Det-WiFi: A Multihop TDMA MAC Implementation for Industrial Deterministic Applications Based on Commodity 802.11 Hardware.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#Cheng0Z17,https://doi.org/10.1155/2017/4943691 +Oh Chan Kwon,Entire network load-aware cooperative routing algorithm for video streaming over mobile ad hoc networks.,2013,13,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm13.html#KwonOLLPS13,https://doi.org/10.1002/wcm.1169 +Khaled Hatem Almotairi,Distributed power control over multiple channels for ad hoc wireless networks.,2014,14,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm14.html#AlmotairiS14,https://doi.org/10.1002/wcm.2266 +Waseem Sheikh,An optimal bandwidth allocation and data droppage scheme for differentiated services in a wireless network.,2010,10,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm10.html#SheikhG10,https://doi.org/10.1002/wcm.779 +Xiaofeng Bai,Power efficient scheduling over fading channel for cross-layer optimization.,2012,12,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm12.html#BaiSP12,https://doi.org/10.1002/wcm.1050 +Minghui Shi,Air interface switching and performance analysis for fast vertical handoff in cellular network and WLAN interworking.,2007,7,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm7.html#ShiXSMS07,https://doi.org/10.1002/wcm.373 +Giannis F. Marias,Cooperation enforcement schemes for MANETs: a survey.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#MariasGFM06,https://doi.org/10.1002/wcm.398 +Ibrahim Develi,Optimum antenna configuration in MIMO systems: a differential evolution based approach.,2012,12,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm12.html#DeveliY12,https://doi.org/10.1002/wcm.974 +Caibing Liu,TTEthernet Transmission in Software-Defined Distributed Robot Intelligent Control System.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LiuLCH18,https://doi.org/10.1155/2018/8589343 +Qiumin Dong,Medium Access Control for dynamic spectrum access in cognitive radio networks: analysis under uncertainty.,2014,14,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm14.html#DongNW14,https://doi.org/10.1002/wcm.2203 +Seung-Hee Hwang,An adaptive hierarchical mobile IPv6 using mobility profile.,2004,4,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm4.html#HwangLHH04,https://doi.org/10.1002/wcm.168 +Panagiotis C. Kokkinos,Multi-cost routing for energy and capacity constrained wireless mesh networks.,2013,13,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm13.html#KokkinosPV13,https://doi.org/10.1002/wcm.1112 +Ertan öztürk,Performance of wavelet based Multi-Chip Rate DS-CDMA signals over multi-path Nakagami-m fading channels.,2008,8,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm8.html#Ozturk08,https://doi.org/10.1002/wcm.517 +Wooseong Kim,Cross-layer scheduling for multi-users in cognitive multi-radio mesh networks.,2014,14,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm14.html#KimP14,https://doi.org/10.1002/wcm.2256 +Juhua Pu,Fault-tolerant deployment with k-connectivity and partial k-connectivity in sensor networks.,2009,9,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm9.html#PuXL09,https://doi.org/10.1002/wcm.638 +Joshua Joy,DiscoverFriends: secure social network communication in mobile ad hoc networks.,2016,16,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm16.html#JoyCYLZG16,https://doi.org/10.1002/wcm.2708 +Alkinoos Athanasiou,Wireless Brain-Robot Interface: User Perception and Performance Assessment of Spinal Cord Injury Patients.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#AthanasiouAPXFA17,https://doi.org/10.1155/2017/2986423 +Muhammad T. N. Qaisrani,A low complexity approach to equalization for doubly selective channels.,2015,15,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm15.html#QaisraniB15,https://doi.org/10.1002/wcm.2467 +Guan Gui,Sparse LMS/F algorithms with application to adaptive system identification.,2015,15,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm15.html#GuiMA15,https://doi.org/10.1002/wcm.2453 +Wei Cui,Analysis of hierarchical cellular networks with mobile base stations.,2002,2,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm2.html#CuiB02,https://doi.org/10.1002/wcm.45 +David J. Y. Lee,Integrating global wireless systems with IP.,2001,1,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm1.html#LeeL01,https://doi.org/10.1002/wcm.22 +Ibrahim W. Habib,Special issue: Advances in 3G Wireless Networks.,2002,2,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm2.html#HabibHV02,https://doi.org/10.1002/wcm.54 +Dongzhe Cui,Parallel concatenated turbo multiple antenna coded modulation: principles and performance.,2002,2,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm2.html#CuiHC02,https://doi.org/10.1002/wcm.79 +Ahmed El Shafie,On the coexistence of a primary user with an energy harvesting secondary user: a case of cognitive cooperation.,2016,16,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm16.html#ShafieKEN16,https://doi.org/10.1002/wcm.2507 +Biao Zhou,Geo-LANMAR: a scalable routing protocol for ad hoc networks with group motion.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#ZhouLGR06,https://doi.org/10.1002/wcm.433 +Qingchun Chen,On the performance of truncated type III hybrid ARQ scheme with code combining.,2003,3,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm3.html#ChenF03,https://doi.org/10.1002/wcm.147 +Ho-Lung Hung,On the performance of a rapid synchronization algorithm for IR-UWB receivers.,2014,14,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm14.html#HungHSW14,https://doi.org/10.1002/wcm.2205 +Alina Olteanu,A lightweight block cipher based on a multiple recursive generator for wireless sensor networks and RFID.,2011,11,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm11.html#OlteanuXHSD11,https://doi.org/10.1002/wcm.988 +Konstantinos Katsaros,Application of vehicular communications for improving the efficiency of traffic in urban areas.,2011,11,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm11.html#KatsarosKDRZ11,https://doi.org/10.1002/wcm.1233 +Qingguo Zhou,A novel portable multimedia QoS monitor: independent and high efficiency.,2010,10,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm10.html#ZhouBHGL10,https://doi.org/10.1002/wcm.744 +Aiqing Zhang,Secure content delivery over device-to-device communications underlaying cellular networks.,2016,16,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm16.html#ZhangWYZ16,https://doi.org/10.1002/wcm.2697 +Ce Sun,A Novel Design of Downlink Control Information Encoding and Decoding Based on Polar Codes.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#SunFNZJ18,https://doi.org/10.1155/2018/5957320 +Cheng Yan,Nonuniform Code Multiple Access.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#YanZK18,https://doi.org/10.1155/2018/7603797 +Shu Li 0003,Multicast capacity and delay trade-offs in ad hoc networks with random iid mobility model.,2010,10,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm10.html#LiHJW10,https://doi.org/10.1002/wcm.768 +Pingzhi Z. Fan,Coding and its applications in CDMA wireless systems.,2003,3,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm3.html#FanLP03,https://doi.org/10.1002/wcm.139 +Yuwen Chen,A Privacy Protection User Authentication and Key Agreement Scheme Tailored for the Internet of Things Environment: PriAuth.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#ChenMCL17,https://doi.org/10.1155/2017/5290579 +Roberto Magueta,Iterative Multiuser Equalization for Subconnected Hybrid mmWave Massive MIMO Architecture.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#MaguetaMCSDG17,https://doi.org/10.1155/2017/9171068 +Tarik Taleb,Next generation wireless communications and mobile computing/networking technologies.,2009,9,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm9.html#TalebL09,https://doi.org/10.1002/wcm.714 +Lina Al-Kanj,Optimized joint cell planning and BS on/off switching for LTE networks.,2016,16,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm16.html#Al-KanjEED16,https://doi.org/10.1002/wcm.2610 +Asif Iqbal,Modulation Set Optimization for the Improved Complex Quadrature SM.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#IqbalMK18,https://doi.org/10.1155/2018/6769484 +Guosen Yue,Efficient ARQ protocols with anti-jamming coding for cognitive radios.,2009,9,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm9.html#YueW09,https://doi.org/10.1002/wcm.855 +Wenjun Zeng,3G wireless multimedia: technologies and practical issues.,2002,2,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm2.html#ZengW02,https://doi.org/10.1002/wcm.84 +Liang He 0002,On-Demand Mobile Data Collection in Cyber-Physical Systems.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#HeKTX018,https://doi.org/10.1155/2018/5913981 +Yingshun Liu,A Progressive Extended Kalman Filter Method for Freeway Traffic State Estimation Integrating Multisource Data.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LiuHRC18,https://doi.org/10.1155/2018/6745726 +Mehdi Sadeghzadeh,Clustered linear precoding for downlink network MIMO systems with partial CSI.,2016,16,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm16.html#SadeghzadehBT16,https://doi.org/10.1002/wcm.2687 +Dong Kun Noh,Efficient flow-control algorithm cooperating with energy allocation scheme for solar-powered WSNs.,2012,12,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm12.html#NohA12,https://doi.org/10.1002/wcm.965 +A. Dev Pragad,QoS aware dynamic route optimization for Proxy Mobile IPv6 networks.,2011,11,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm11.html#PragadFPA11,https://doi.org/10.1002/wcm.846 +George Xylomenos,The multimedia broadcast/multicast service.,2008,8,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm8.html#XylomenosVT08,https://doi.org/10.1002/wcm.463 +Wei Wayne Li,Special issue: modeling and performance evaluation of radio resource QoS for next-generation wireless and mobile networks.,2005,5,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm5.html#LiHKW05,https://doi.org/10.1002/wcm.351 +Joanna Geibig,Autonomous aggregation in location aware ad hoc wireless networks.,2013,13,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm13.html#GeibigB13,https://doi.org/10.1002/wcm.2199 +Bashir Yahya,Towards a classification of energy aware MAC protocols for wireless sensor networks.,2009,9,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm9.html#YahyaB09,https://doi.org/10.1002/wcm.743 +Gong-Da Fan,Enhanced video phone services for NGN/IMS.,2012,12,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm12.html#FanHLTTW12,https://doi.org/10.1002/wcm.997 +Yu Zhang 0034,Exploiting Delay-Aware Load Balance for Scalable 802.11 PSM in Crowd Event Environments.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#ZhangWCXGLL17,https://doi.org/10.1155/2017/3410350 +Ke Xiao,On the Secrecy Capacity of 5G New Radio Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#XiaoZH18,https://doi.org/10.1155/2018/4359261 +Btissam Er Rahmadi,Enhanced uplink multi-users scheduling for future 802.11ax networks: wait-to-pick-as-available enhanced.,2016,16,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm16.html#RahmadiKM16,https://doi.org/10.1002/wcm.2744 +Mehrdad Dianati,Per-user service model for opportunistic scheduling scheme over fading channels.,2010,10,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm10.html#DianatiTSN10,https://doi.org/10.1002/wcm.910 +Jiming Chen,Measuring the performance of movement-assisted certificate revocation list distribution in VANET.,2011,11,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm11.html#ChenCZXS11,https://doi.org/10.1002/wcm.858 +Xuemin Shen,Special issue: medium access control protocols for wireless ad hoc networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#ShenKYP06,https://doi.org/10.1002/wcm.438 +Fangwei Wang,Modeling and analysis of a self-learning worm based on good point set scanning.,2009,9,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm9.html#WangZM09,https://doi.org/10.1002/wcm.703 +Hamza Djelouat,An Adaptive Joint Sparsity Recovery for Compressive Sensing Based EEG System.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#DjelouatBAB17,https://doi.org/10.1155/2017/9823684 +Sabrina Sicari,Performance Comparison of Reputation Assessment Techniques Based on Self-Organizing Maps in Wireless Sensor Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#SicariRGC17,https://doi.org/10.1155/2017/7623742 +Yan Zhang 0008,Multi-sensor signal fusion-based modulation classification by using wireless sensor networks.,2015,15,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm15.html#ZhangAS15,https://doi.org/10.1002/wcm.2450 +Xiaoming Chen 0001,Joint optimization of spectrum sensing and accessing in multiuser multiple-input single-output cognitive networks.,2016,16,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm16.html#ChenY16,https://doi.org/10.1002/wcm.2503 +Xiaochen Li,Hierarchical queue-length-aware power control for real-time applications over wireless networks.,2011,11,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm11.html#LiDW11,https://doi.org/10.1002/wcm.944 +Sun-Young Ihm,An Indexing Method to Construct Unbalanced Layers for High-Dimensional Data in Mobile Environments.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#IhmHP17,https://doi.org/10.1155/2017/9309181 +Jang-Ping Sheu,Routing with hexagonal virtual coordinates in wireless sensor networks.,2009,9,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm9.html#SheuHD09,https://doi.org/10.1002/wcm.685 +Le Thanh Tan,Joint data compression and MAC protocol design for smartgrids with renewable energy.,2016,16,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm16.html#TanL16,https://doi.org/10.1002/wcm.2710 +Yongliang Sun,Device-Free Wireless Localization Using Artificial Neural Networks in Wireless Sensor Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#SunZWZ18,https://doi.org/10.1155/2018/4201367 +Chia-Shien Lu,A fast handoff method in mobile IPv6 using prerouting.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#LuC06,https://doi.org/10.1002/wcm.417 +Shuaiwei Zhang,A New Type of Countermeasure against DPA in Multi-Sbox of Block Cipher.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhangZ18,https://doi.org/10.1155/2018/5945312 +Xiangyu Gao,Analysis of minimum transmit sum power and scheduling power gain for multi-user MIMO-OFDM networks with rate constraints.,2016,16,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm16.html#GaoZP16,https://doi.org/10.1002/wcm.2548 +Michele Rossi,Energy and connectivity performance of routing groups in multi-radio multi-hop networks.,2008,8,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm8.html#RossiBGZ08,https://doi.org/10.1002/wcm.580 +Yun-Sheng Yen,Global dynamic home agent discovery on mobile IPv6.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#YenHC06,https://doi.org/10.1002/wcm.414 +Maazen Alsabaan,Link layer solutions for supporting real-time traffic over CDMA wireless mesh networks.,2011,11,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm11.html#AlsabaanZW11,https://doi.org/10.1002/wcm.794 +Likun Liu,An Efficient Security System for Mobile Data Monitoring.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LiuZYXSG18,https://doi.org/10.1155/2018/9809345 +Emanuela Falletti,An adaptive space-time receiver for high-capacity communications systems based on multichannel multirate DS-CDMA.,2002,2,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm2.html#FallettiST02,https://doi.org/10.1002/wcm.100 +Yong Sun,Progressive image transmission over differentially space-time coded OFDM systems.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#SunXW06,https://doi.org/10.1002/wcm.291 +Wei Kuang Lai,A power efficient solution to the large interference range problem in ad hoc networks.,2009,9,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm9.html#LaiTLS09,https://doi.org/10.1002/wcm.697 +Xiaodong Wang,Impact of channel conditions on the throughput optimization in 802.11 DCF.,2005,5,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm5.html#WangYA05,https://doi.org/10.1002/wcm.285 +Yanbo Ma,Power-efficient resource allocation with QoS guarantees for TDMA fading channels.,2012,12,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm12.html#MaZYJ12,https://doi.org/10.1002/wcm.1036 +Megha Maiya,iMAC: improved Medium Access Control for multi-channel multi-hop wireless networks.,2013,13,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm13.html#MaiyaH13,https://doi.org/10.1002/wcm.1160 +Linlin Guo,HuAc: Human Activity Recognition Using Crowdsourced WiFi Signals and Skeleton Data.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#Guo0LZL18,https://doi.org/10.1155/2018/6163475 +Ayman Elezabi,CDMA underlay network with cognitive interference-minimizing code assignment and semi-blind interference suppression.,2009,9,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm9.html#ElezabiKAK09,https://doi.org/10.1002/wcm.724 +Sabit Ekin,Capacity limits of spectrum-sharing systems over hyper-fading channels.,2012,12,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm12.html#EkinYCQAS12,https://doi.org/10.1002/wcm.1082 +Saaidal Razalli Azzuhri,Towards a Better Approach for Link Breaks Detection and Route Repairs Strategy in AODV Protocol.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#AzzuhriNJAN18,https://doi.org/10.1155/2018/9029785 +Hui-Nien Hung,Deriving the distributions for the numbers of short message arrivals.,2014,14,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm14.html#HungLL14,https://doi.org/10.1002/wcm.2194 +Mounir Hamdi,Providing deterministic packet delays and packet losses in multimedia wireless networks.,2003,3,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm3.html#HamdiL03,https://doi.org/10.1002/wcm.66 +Zhongmei Zhang,A Service-Based Method for Multiple Sensor Streams Aggregation in Fog Computing.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhangLZLH18,https://doi.org/10.1155/2018/8475604 +Han Bao,Mobile anchor assisted particle swarm optimization (PSO) based localization algorithms for wireless sensor networks.,2012,12,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm12.html#BaoZLY12,https://doi.org/10.1002/wcm.1056 +Nishu Gupta,Adaptive Beaconing in Mobility Aware Clustering Based MAC Protocol for Safety Message Dissemination in VANET.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#GuptaPT17,https://doi.org/10.1155/2017/1246172 +Guangkai Li,On the Feasibility of High Speed Railway mmWave Channels in Tunnel Scenario.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#LiAHZHK17,https://doi.org/10.1155/2017/7135896 +M. V. S. N. Prasad,Some experimental and modeling results of widely varying urban environments on train mobile radio communication.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#PrasadSSS06,https://doi.org/10.1002/wcm.267 +Qin Xin 0001,Optimal fault-tolerant broadcasting in wireless mesh networks.,2011,11,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm11.html#XinZY11,https://doi.org/10.1002/wcm.718 +Jui Teng Wang,Feedback-based multi-layered STBC system for MIMO multi-cellular networks with cochannel interference.,2012,12,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm12.html#Wang12,https://doi.org/10.1002/wcm.980 +Imen Ben Chaabane,A green scheduling with adaptive spatial division multiple access grouping for multi-user coordinated multi-point networks.,2016,16,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm16.html#ChaabaneHT16,https://doi.org/10.1002/wcm.2563 +Emad K. Al-Hussaini,Parallel interference cancellation employing RAKE receiver with selection diversity for multiuser asynchronous DS/CDMA detectors in multipath Rayleigh fading channels.,2002,2,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm2.html#Al-HussainiMG02,https://doi.org/10.1002/wcm.50 +Hamid Behroozi,Joint optimization of power scheduling and rate-distortion performance in one-helper problem.,2009,9,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm9.html#BehrooziS09,https://doi.org/10.1002/wcm.723 +Guangzhu Chen,A node division location detection scheme for chain-type wireless sensor networks.,2016,16,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm16.html#ChenBZ16,https://doi.org/10.1002/wcm.2493 +Hongchen Wu,CEPTM: A Cross-Edge Model for Diverse Personalization Service and Topic Migration in MEC.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#WuZCW18,https://doi.org/10.1155/2018/8056195 +Donald Y. C. Lie,A Review of 5G Power Amplifier Design at cm-Wave and mm-Wave Frequencies.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LieMLL18,https://doi.org/10.1155/2018/6793814 +Pamela Njemcevic,Improved Model for Estimation of Spatial Averaging Path Length.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#NjemcevicLL18,https://doi.org/10.1155/2018/4704218 +Bhagya Nathali Silva,Big Data Analytics Embedded Smart City Architecture for Performance Enhancement through Real-Time Data Processing and Decision-Making.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#SilvaKH17,https://doi.org/10.1155/2017/9429676 +Rong Xiao,Content-Based Efficient Messages Transmission in WSNs.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#XiaoSXWC18,https://doi.org/10.1155/2018/2725961 +Abdelouahab Bentrcia,A new chip-level linear SOR-SIC multiuser detector for long-code systems.,2009,9,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm9.html#BentrciaZB09,https://doi.org/10.1002/wcm.682 +Pouya Ostovari,Broadcasting with hard deadlines in wireless multihop networks using network coding.,2015,15,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm15.html#OstovariK015,https://doi.org/10.1002/wcm.2388 +Mohammad Hayajneh,Uplink and downlink scheduling for point to multipoint WiMAX Networks.,2009,9,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm9.html#HayajnehAK09,https://doi.org/10.1002/wcm.688 +Kun Yang,A location-based service advertisement algorithm for pervasive service discovery in wireless mobile networks.,2009,9,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm9.html#YangTLGA09,https://doi.org/10.1002/wcm.635 +Dimitrios N. Skoutas,Enhancing the high speed downlink packet access operation of 3G WCDMA systems.,2014,14,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm14.html#SkoutasS14,https://doi.org/10.1002/wcm.1239 +Ji Zhang,Construction and Decoding of Rate-Compatible Globally Coupled LDPC Codes.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhangBMXLL18,https://doi.org/10.1155/2018/4397671 +Xiaoyun Yan,Fuzzy and Utility Based Network Selection for Heterogeneous Networks in High-Speed Railway.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#YanDZZ17,https://doi.org/10.1155/2017/4967438 +Haiyang Zhang,A Hybrid Service Recommendation Prototype Adapted for the UCWW: A Smart-City Orientation.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#ZhangGNJO17,https://doi.org/10.1155/2017/6783240 +Roberto Beraldi,Low hitting time random walks in wireless networks.,2009,9,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm9.html#BeraldiQB09,https://doi.org/10.1002/wcm.625 +Rothna Pec,Efficient handover measurement technique for small-cell networks using a virtual cell synchronization signal.,2016,16,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm16.html#PecPC16,https://doi.org/10.1002/wcm.2766 +Ebrahim Baktash,Downlink Linear Precoders Based on Statistical CSI for Multicell MIMO-OFDM.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#BaktashL0K17,https://doi.org/10.1155/2017/5981659 +Yan Huang 0015,Target tracking based on a distributed particle filter in underwater sensor networks.,2008,8,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm8.html#HuangLYX08,https://doi.org/10.1002/wcm.660 +Matthew Seligman,Storage routing for DTN congestion control.,2007,7,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm7.html#SeligmanFM07,https://doi.org/10.1002/wcm.521 +Jigang Liu,Development of digital forensics practice and research in Japan.,2011,11,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm11.html#LiuUS11,https://doi.org/10.1002/wcm.981 +Maggie Xiaoyan Cheng,Location management in mobile ad hoc wireless networks using quorums and clusters.,2005,5,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm5.html#ChengDD05,https://doi.org/10.1002/wcm.342 +Joanna Jaworek-Korjakowska,eSkin: Study on the Smartphone Application for Early Detection of Malignant Melanoma.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#Jaworek-Korjakowska18,https://doi.org/10.1155/2018/5767360 +Karmeshu,On efficacy of Rayleigh-inverse Gaussian distribution over K-distribution for wireless fading channels.,2007,7,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm7.html#KarmeshuA07,https://doi.org/10.1002/wcm.295 +Yue Ma 0003,Channel Access and Power Control for Mobile Crowdsourcing in Device-to-Device Underlaid Cellular Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#MaZGSW18,https://doi.org/10.1155/2018/7192840 +Eric Astier,An efficient mesh-based multicast routing protocol in mobile ad hoc networks.,2012,12,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm12.html#AstierHA12,https://doi.org/10.1002/wcm.1016 +Ahmad Suhail Salim,Differential modulation for asynchronous two-way relay systems over frequency-selective fading channels.,2016,16,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm16.html#SalimD16,https://doi.org/10.1002/wcm.2692 +Esraa M. Ghourab,A Novel Approach to Enhance the Physical Layer Channel Security of Wireless Cooperative Vehicular Communication Using Decode-and-Forward Best Relaying Selection.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#GhourabAFE18,https://doi.org/10.1155/2018/9624856 +Jianfeng Guan,Implementation and analysis of proxy MIPv6.,2011,11,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm11.html#GuanZYQZ11,https://doi.org/10.1002/wcm.842 +Sang-Jo Yoo,Predictive link trigger mechanism for seamless handovers in heterogeneous wireless networks.,2009,9,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm9.html#YooCG09,https://doi.org/10.1002/wcm.620 +Guangjie Han,Reference node placement and selection algorithm based on trilateration for indoor sensor networks.,2009,9,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm9.html#HanCL09,https://doi.org/10.1002/wcm.651 +Ki-Il Kim,Evaluating revised MintRoute protocol in wireless sensor networks.,2015,15,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm15.html#KimS15,https://doi.org/10.1002/wcm.2354 +Zhao Xiao-Fang,A Low VSWR and High Efficiency Waveguide Feed Antenna Array.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#Xiao-FangHYZS18,https://doi.org/10.1155/2018/7867091 +Guangjun Ge,Design and Analysis of Adaptive Message Coding on LDPC Decoder with Faulty Storage.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#GeY18,https://doi.org/10.1155/2018/7658093 +Zi-Wei Zheng,Channel estimation and interference suppression for uplink CDMA mobile communication systems.,2004,4,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm4.html#ZhengYZP04,https://doi.org/10.1002/wcm.191 +Junzhou Luo,A novel task scheduling algorithm based on dynamic critical path and effective duplication for pervasive computing environment.,2010,10,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm10.html#LuoDCS10,https://doi.org/10.1002/wcm.717 +Caidan Zhao,Wireless local area network cards identification based on transient fingerprinting.,2013,13,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm13.html#ZhaoCHYK13,https://doi.org/10.1002/wcm.1196 +Amit Dvir,Placing and maintaining a core node in wirelessad hoc networks.,2010,10,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm10.html#DvirS10,https://doi.org/10.1002/wcm.795 +Jin Li,A conception on the terahertz communication system for plasma sheath penetration.,2014,14,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm14.html#LiPY14,https://doi.org/10.1002/wcm.2225 +Sudip Misra,Efficient detection of public key infrastructure-based revoked keys in mobile ad hoc networks.,2011,11,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm11.html#MisraGPS11,https://doi.org/10.1002/wcm.839 +Yuguang Fang,Performance evaluation of wireless cellular networks under more realistic assumptions.,2005,5,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm5.html#Fang05,https://doi.org/10.1002/wcm.352 +Xu Su,Analysis of energy consumption for multiple object identification system with active RFID tags.,2008,8,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm8.html#SuX08,https://doi.org/10.1002/wcm.552 +Chengqun Song,A Crowdsensing-Based Real-Time System for Finger Interactions in Intelligent Transport System.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#SongCF17,https://doi.org/10.1155/2017/7385052 +Wafa Khrouf,How Much FBMC/OQAM Is Better than FBMC/QAM? A Tentative Response Using the POPS Paradigm.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#Khrouf0A18,https://doi.org/10.1155/2018/4637181 +Weili Ge,AN-Aided Transmit Beamforming Design for Secured Cognitive Radio Networks with SWIPT.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#GeZWY18,https://doi.org/10.1155/2018/6956313 +Chang-Jun Ahn,Unitary matrix modulation with splitting over the coherence bandwidth for OFDM in a single antenna system.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#Ahn06,https://doi.org/10.1002/wcm.275 +Tran Hoang Hai,A lightweight intrusion detection framework for wireless sensor networks.,2010,10,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm10.html#HaiHJ10,https://doi.org/10.1002/wcm.785 +Chun-Hung Richard Lin,An efficient tabu search for cell planning problem in mobile communication.,2016,16,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm16.html#LinLLLH16,https://doi.org/10.1002/wcm.2549 +Bin Cao 0004,Dynamic Pricing for Resource Consumption in Cloud Service.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#CaoWXHFQ18,https://doi.org/10.1155/2018/4263831 +Mehri Mehrjoo,Resource allocation in OFDMA networks based on interior point methods.,2010,10,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm10.html#MehrjooMS10,https://doi.org/10.1002/wcm.838 +Chung-Ming Huang,A cluster-chain-based context transfer mechanism for fast basic service set transition in the centralized wireless LAN architecture.,2009,9,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm9.html#HuangL09,https://doi.org/10.1002/wcm.726 +Yuwei Shi,Maximum product of effective channel gains: an innovative user selection algorithm for downlink multi-user multiple input and multiple output.,2014,14,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm14.html#ShiYMZ14,https://doi.org/10.1002/wcm.2311 +Qing Wei 0001,E-MAC: an elastic MAC layer for IEEE 802.11 networks.,2013,13,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm13.html#WeiASWHL13,https://doi.org/10.1002/wcm.1107 +Nidal Nasser,Enabling seamless multimedia wireless access through QoS-based bandwidth adaptation.,2007,7,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm7.html#NasserH07,https://doi.org/10.1002/wcm.317 +Wenxiang Li,Scheduling and routing methods for cognitive radio sensor networks in regular topology.,2016,16,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm16.html#LiLZM16,https://doi.org/10.1002/wcm.2494 +Khalil El-Khatib,Personal and service mobility in ubiquitous computing environments.,2004,4,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm4.html#El-KhatibZHB04,https://doi.org/10.1002/wcm.231 +Husnain Naqvi,Energy efficient collaborative communications in AWGN and Rayleigh fading channel in wireless sensor networks.,2014,14,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm14.html#NaqviBS14,https://doi.org/10.1002/wcm.2268 +Haleh Khojasteh,Integration of an IEEE 802.15.4 RFID network with mobile readers with a 802.11 WLAN.,2015,15,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm15.html#KhojastehMM15,https://doi.org/10.1002/wcm.2316 +Fabio Martignon,Multi-channel power-controlled directional MAC for wireless mesh networks.,2011,11,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm11.html#Martignon11,https://doi.org/10.1002/wcm.917 +Dong-Uk Sim,Development and Validation of New Reverberation Chamber for Wireless Devices.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#SimKKP18,https://doi.org/10.1155/2018/7068601 +R. M. Bhavadharini,Wireless Networking Performance in IoT Using Adaptive Contention Window.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#BhavadhariniKKP18,https://doi.org/10.1155/2018/7248040 +Toni Perkovic,BlinkComm: Initialization of IoT Devices Using Visible Light Communication.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#PerkovicKC18,https://doi.org/10.1155/2018/8523078 +Didem Gözüpek,Enhancing quality of service provisioning in wireless ad hoc networks using service vector paradigm.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#GozupekPA06,https://doi.org/10.1002/wcm.434 +Huanzhong Li,Delay analysis in practical wireless network coding.,2014,14,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm14.html#LiLHYD14,https://doi.org/10.1002/wcm.2193 +Yan Li,Transmission power and duration-aware playout control for packetized media streaming over wireless links.,2008,8,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm8.html#LiB08,https://doi.org/10.1002/wcm.579 +Jiangping Wang,Tight bounds for the first order Marcum Q-function.,2012,12,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm12.html#WangW12,https://doi.org/10.1002/wcm.960 +Saeed Rashwand,Impact of priority differentiation on the bridged WBAN/WLAN healthcare networks.,2014,14,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm14.html#RashwandM14,https://doi.org/10.1002/wcm.2264 +Shuyi Wang,Channel capacity and bit error rate optimization of the ultra-wide bandwidth transmitted-reference receiver.,2013,13,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm13.html#WangCLB13,https://doi.org/10.1002/wcm.1214 +Juan Bai,Relay selection for secrecy connectivity in random wireless networks.,2016,16,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm16.html#BaiTXZZ16,https://doi.org/10.1002/wcm.2681 +ChaoYi Bian,Theoretical analysis on caching effects in urban vehicular ad hoc networks.,2016,16,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm16.html#BianZLDY16,https://doi.org/10.1002/wcm.2651 +Bih-Hwang Lee,Study on bandwidth control for multiple transmission rates in IEEE 802.11e EDCAF.,2010,10,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm10.html#LeeL10,https://doi.org/10.1002/wcm.827 +Hyunsoon Kim,Adaptive Decision of Wireless Access Network for Higher User Satisfaction.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#KimBLK18,https://doi.org/10.1155/2018/3427238 +Jun-Na Zhang,Overview on Fault Tolerance Strategies of Composite Service in Service Computing.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhangZSWY18,https://doi.org/10.1155/2018/9787503 +Helen-Catherine Leligou,Combining trust with location information for routing in wireless sensor networks.,2012,12,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm12.html#LeligouTMKZ12,https://doi.org/10.1002/wcm.1038 +Weifa Liang,Aggregate node placement for maximizing network lifetime in sensor networks.,2012,12,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm12.html#LiangXSL12,https://doi.org/10.1002/wcm.952 +Hsin-Yi Lee,ITRI-WiMAXT: A WiMAX conformance testing tool.,2010,10,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm10.html#LeeLLH10,https://doi.org/10.1002/wcm.757 +Kai Yu,Multiuser detectors for large CDMA random access systems over Rayleigh fading channels.,2012,12,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm12.html#YuFHL12,https://doi.org/10.1002/wcm.989 +Ming Yang,Capacity optimizing channel allocation schemes for multi-service cellular systems with mobile users.,2008,8,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm8.html#YangC08,https://doi.org/10.1002/wcm.461 +Changsu Jung,Maximum Power Plus RSSI Based Routing Protocol for Bluetooth Low Energy Ad Hoc Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#JungH17,https://doi.org/10.1155/2017/9843825 +Juan Reig,Generation of bivariate Nakagami-m fading envelopes with arbitrary not necessary identical fading parameters.,2007,7,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm7.html#ReigMR07,https://doi.org/10.1002/wcm.386 +Wenxuan Guo,Achieving capacity fairness for wireless mesh networks.,2011,11,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm11.html#GuoH11,https://doi.org/10.1002/wcm.793 +Yen-Cheng Lai,Design and implementation of a wireless internet remote access platform.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#LaiLH06,https://doi.org/10.1002/wcm.270 +Sammy Chan,Performance analysis and optimization of best-effort service in IEEE 802.16 networks.,2014,14,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm14.html#ChanVL14,https://doi.org/10.1002/wcm.1250 +Haïdar Safa,A preemption-based scheduling algorithm for WiMAX networks.,2015,15,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm15.html#SafaK15,https://doi.org/10.1002/wcm.2368 +Chin-Fu Kuo,A fragment-based retransmission scheme with quality-of-service considerations for wireless networks.,2013,13,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm13.html#KuoTP13,https://doi.org/10.1002/wcm.1193 +Ismail Ahmedy,An Estimation of QoS for Classified Based Approach and Nonclassified Based Approach of Wireless Agriculture Monitoring Network Using a Network Model.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#AhmedySI17,https://doi.org/10.1155/2017/3626571 +Safouane Sfar,UMTS architecture extension to adapt multimedia services and manage their flow properties.,2003,3,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm3.html#SfarC03,https://doi.org/10.1002/wcm.156 +Weixia Zou,An improved exclusive region scheduling algorithm-based *lot allocation scheme for mmWave WPANs.,2014,14,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm14.html#ZouHLZC14,https://doi.org/10.1002/wcm.2231 +Yun-Ming Siu,Admission control for variable spreading gain CDMA cellular system with imperfect power control and shadowing.,2007,7,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm7.html#SiuSCL07,https://doi.org/10.1002/wcm.348 +Chunxing Ni,A novel constellation amplitude modification method for PAPR reduction in OFDM systems.,2016,16,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm16.html#NiMJ16,https://doi.org/10.1002/wcm.2760 +Hanlin Deng,RAPS: a precision-adaptive protocol towards improved data fidelity in wireless sensor networks.,2014,14,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm14.html#DengZJL14,https://doi.org/10.1002/wcm.2308 +Weitian Tong,An Advanced Private Social Activity Invitation Framework with Friendship Protection.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#TongCBGL17,https://doi.org/10.1155/2017/1393026 +Lajos Hanzo,The effects of shadow-fading on QoS-aware routing and admission control protocols designed for multi-hop MANETs.,2011,11,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm11.html#HanzoT11,https://doi.org/10.1002/wcm.912 +Jenn-Wei Lin,Local replacement for route recovery on a collaborative mobile ad hoc network.,2011,11,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm11.html#LinC11a,https://doi.org/10.1002/wcm.931 +Xianglin Wei,Layout-Independent Wireless Facility Constructing and Scheduling for Data Center Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#WeiS17,https://doi.org/10.1155/2017/1354273 +Shengliang Peng,Fast Cooperative Energy Detection under Accuracy Constraints in Cognitive Radio Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#PengZGL17,https://doi.org/10.1155/2017/3984529 +Zi Yan Liu,Energy-Efficient Incentives Resource Allocation Scheme in Cooperative Communication System.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LiuMFL18,https://doi.org/10.1155/2018/5452120 +Lina Wang,Fog Computing-Based Differential Positioning Method for BDS.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#WangL18,https://doi.org/10.1155/2018/3173067 +Samir S. Soliman,Geolocation technologies and applications for third generation wireless.,2002,2,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm2.html#SolimanW02,https://doi.org/10.1002/wcm.55 +Bilal R. Qazi,PC-MAC: pico cellular MAC protocol for motorway vehicular multimedia communication (extended version).,2010,10,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm10.html#QaziE10,https://doi.org/10.1002/wcm.899 +Jelena V. Misic,Handoff performance in wireless DS-CDMA networks.,2003,3,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm3.html#MisicMT03,https://doi.org/10.1002/wcm.64 +Yang Zhang 0013,Power allocation and relay selection for AF two-path successive relaying networks.,2014,14,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm14.html#ZhangPL14,https://doi.org/10.1002/wcm.2344 +Mustafa Tareq,Mobile Ad Hoc Network Energy Cost Algorithm Based on Artificial Bee Colony.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#TareqAAU17,https://doi.org/10.1155/2017/4519357 +Zhipeng Cai,Privacy in the Internet of Things.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#CaiCFKW18,https://doi.org/10.1155/2018/8281379 +Kaveh Ghaboosi,CICADA: a novel scheme for improving TCP performance over wireless links.,2005,5,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm5.html#GhaboosiK05,https://doi.org/10.1002/wcm.302 +Zhiwei Yan,Distributed mobility management in named data networking.,2016,16,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm16.html#YanZZGP16,https://doi.org/10.1002/wcm.2652 +Hui Wang 0025,Performance Study of Uplink and Downlink Splitting in Ultradense Highly Loaded Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#WangGMYR18,https://doi.org/10.1155/2018/1439512 +Hëna Maloku,A Survey on Coexistence in Heterogeneous Wireless Networks in TV White Spaces.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#MalokuFI18,https://doi.org/10.1155/2018/7256835 +Hong-Chuan Yang,Average error rate of NCFSK with multi-branch post-detection switched diversity.,2004,4,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm4.html#YangAS04,https://doi.org/10.1002/wcm.138 +Kassem Fawaz,Replication enabled distributed cache invalidation method: replication enabled distributed cache management system for wireless mobile networks.,2015,15,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm15.html#FawazAAAS15,https://doi.org/10.1002/wcm.2455 +Jung-Han Han,Acknowledgement Corruption: A New Aspect of Physical Layer Capture in IEEE 802.11 Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#HanCH18,https://doi.org/10.1155/2018/3096710 +Michele Zorzi,Throughput and energy performance of TCP on a wideband CDMA air interface.,2002,2,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm2.html#ZorziRM02,https://doi.org/10.1002/wcm.34 +Shiyong Li,Reliability Analysis for Multipath Communications in Mobile Cloud Computing Architectures.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LiSZL18,https://doi.org/10.1155/2018/8539307 +Xiaowen Chu,Homonymous role in role-based discretionary access control.,2009,9,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm9.html#ChuOCLJ09,https://doi.org/10.1002/wcm.700 +Fred Daneshgaran,Special issue: Reconfigurable wireless communication systems.,2002,2,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm2.html#DaneshgaranN02,https://doi.org/10.1002/wcm.117 +Ayda Basyouni,An analytical model for reverse data channel scheduling techniques in cdma2000 1xEV-DO.,2009,9,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm9.html#BasyouniAE09,https://doi.org/10.1002/wcm.648 +You-Chiun Wang,Mobility management algorithms and applications for mobile sensor networks.,2012,12,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm12.html#WangWT12,https://doi.org/10.1002/wcm.886 +Abdulmajid Almqdshi,Combined Sector and Channel Hopping Schemes for Efficient Rendezvous in Directional Antenna Cognitive Radio Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#AlmqdshiSNHN17,https://doi.org/10.1155/2017/5748067 +Yuanling Huang,Theoretical performance analysis of radio frequency fingerprinting under receiver distortions.,2015,15,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm15.html#HuangZ15,https://doi.org/10.1002/wcm.2386 +Xenofon Foukas,Short-Range Cooperation of Mobile Devices for Energy-Efficient Vertical Handovers.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#FoukasKM18,https://doi.org/10.1155/2018/3280927 +Yonathan Murin,Low complexity estimation of carrier and sampling frequency offsets in burst-mode OFDM systems.,2016,16,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm16.html#MurinD16,https://doi.org/10.1002/wcm.2582 +Md. Shafiul Azam Howlader,Delay-insensitive identification of neighbors using unslotted and slotted protocols.,2014,14,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm14.html#HowladerFR14,https://doi.org/10.1002/wcm.2242 +Haonan Feng,Study on Formal Modeling and Safety Verification of Train-to-Train Communication.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#Feng18,https://doi.org/10.1155/2018/2406968 +Jun-Da Chen,Adaptive blind receivers for MC-CDMA communication systems.,2015,15,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm15.html#ChenUC15,https://doi.org/10.1002/wcm.2314 +Rung-Shiang Cheng,A congestion reduction mechanism using D2D cooperative relay for M2M communication in the LTE-A cellular network.,2016,16,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm16.html#ChengHC16,https://doi.org/10.1002/wcm.2699 +Xiaoyan Hong,Mobility changes anonymity: new passive threats in mobile ad hoc networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#HongKG06,https://doi.org/10.1002/wcm.395 +Mohammad Abdul Azim,SPSA-NC: simultaneous perturbation stochastic approximation localization based on neighbor confidence.,2016,16,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm16.html#AzimAXKJ16,https://doi.org/10.1002/wcm.2634 +Jaesung Park,UE-Initiated Cell Reselection Game for Cell Load Balancing in a Wireless Network.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#Park18,https://doi.org/10.1155/2018/2712357 +Anthony Plummer Jr.,Distributed spectrum assignment for cognitive networks with heterogeneous spectrum opportunities.,2011,11,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm11.html#PlummerB11,https://doi.org/10.1002/wcm.923 +Chi-Yuan Chang,IEEE 802.11 handoff latency improvement using Fuzzy Logic.,2008,8,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm8.html#ChangWCP08,https://doi.org/10.1002/wcm.561 +Jie Wu 0001,Forward-node-set-based broadcast in clustered mobile ad hoc networks.,2003,3,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm3.html#WuL03,https://doi.org/10.1002/wcm.109 +Jae-Kwon Seo,Hierarchical mobility management for fast handoff and load distribution in IPv6 networks.,2008,8,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm8.html#SeoL08,https://doi.org/10.1002/wcm.592 +Matthew J. La Pan,Physical layer orthogonal frequency-division multiplexing acquisition and timing synchronization security.,2016,16,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm16.html#PanCM16,https://doi.org/10.1002/wcm.2500 +Zhihong Qiu,Low Altitude UAV Air-to-Ground Channel Measurement and Modeling in Semiurban Environments.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#QiuCCBY17,https://doi.org/10.1155/2017/1587412 +Carlos A. Gutiérrez 0001,Modeling of Non-WSSUS Double-Rayleigh Fading Channels for Vehicular Communications.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#GutierrezJLCC17,https://doi.org/10.1155/2017/6394653 +Mohamed Abdul Haleem,On the Capacity and Transmission Techniques of Massive MIMO Systems.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#Haleem18,https://doi.org/10.1155/2018/9363515 +Yufu Li,Design of Output-Input Inversed Polarity Pulse Power Divider for Ultra-Wideband Communications.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LiY18,https://doi.org/10.1155/2018/9257121 +Kanwal Yousaf,A Novel Technique for Speech Recognition and Visualization Based Mobile Application to Support Two-Way Communication between Deaf-Mute and Normal Peoples.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#YousafMSRRAZ18,https://doi.org/10.1155/2018/1013234 +Mahmoud Aldababsa,A Tutorial on Nonorthogonal Multiple Access for 5G and Beyond.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#AldababsaTGKK18,https://doi.org/10.1155/2018/9713450 +Ahmed Badawy,Robust secret key extraction from channel secondary random process.,2016,16,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm16.html#BadawyEKCMT16,https://doi.org/10.1002/wcm.2695 +Linbo Zhai,Crowdsensing Task Assignment Based on Particle Swarm Optimization in Cognitive Radio Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#ZhaiW17,https://doi.org/10.1155/2017/4687974 +Nasim Arianpoo,Applications of network coding to improve TCP performance over wireless mesh networks: a survey.,2014,14,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm14.html#ArianpooJL14,https://doi.org/10.1002/wcm.2244 +Wenbin Hu,An on-demand data broadcasting scheduling algorithm based on dynamic index strategy.,2015,15,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm15.html#HuFLPD15,https://doi.org/10.1002/wcm.2395 +Jong-Hyouk Lee,Secure handover for Proxy Mobile IPv6 in next-generation communications: scenarios and performance.,2011,11,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm11.html#LeeC11,https://doi.org/10.1002/wcm.895 +Huiru Cao,A Novel Emergency Healthcare System for Elderly Community in Outdoor Environment.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#CaoZ18a,https://doi.org/10.1155/2018/7841026 +Thomas H. Morris,Private computing on public platforms: portable application security.,2010,10,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm10.html#MorrisN10,https://doi.org/10.1002/wcm.804 +Tsang-Ling Sheu,A capacity degradation model under interferences for sectorized cellular networks with fractional frequency reuse.,2015,15,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm15.html#SheuLC15,https://doi.org/10.1002/wcm.2402 +Yoonyoung Sung,A Road Layout Based Broadcast Mechanism for Urban Vehicular Ad Hoc Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#SungL18,https://doi.org/10.1155/2018/1565363 +Chi-Yuan Chen,Network planning for mobile multi-hop relay networks.,2015,15,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm15.html#ChenTLC15,https://doi.org/10.1002/wcm.2396 +Sonia Aïssa,Uplink packet scheduling in the presence of interference cancellation in multi-rate wireless CDMA networks.,2003,3,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm3.html#AissaMM03,https://doi.org/10.1002/wcm.177 +Xiuzhen Cheng,Virtual backbone construction in multihop ad hoc wireless networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#ChengDDJ06,https://doi.org/10.1002/wcm.378 +Ulisses Rodrigues Afonseca,CARCC: Connectivity Autorecovering via Cooperative Communication.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#AfonsecaRB17,https://doi.org/10.1155/2017/4195908 +Yuh-Shyan Chen,A cross-layer partner-assisted handoff scheme for hierarchical mobile IPv6 in IEEE 802.16e systems.,2011,11,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm11.html#ChenW11,https://doi.org/10.1002/wcm.844 +Hadi Meshgi,Power allocation and transmission scheduling for a network with bidirectional relaying links.,2016,16,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm16.html#MeshgiZ16,https://doi.org/10.1002/wcm.2600 +Rafaa Tahar,Autonomous and adaptive beaconing strategy for multi-interfaced wireless mobile nodes.,2016,16,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm16.html#TaharDBMB16,https://doi.org/10.1002/wcm.2638 +Mouhamed Abdulla,Large-scale fading behavior for a cellular network with uniform spatial distribution.,2016,16,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm16.html#AbdullaS16,https://doi.org/10.1002/wcm.2565 +Ladislau Bölöni,Should I send now or send later? A decision-theoretic approach to transmission scheduling in sensor networks with mobile sinks.,2008,8,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm8.html#BoloniT08,https://doi.org/10.1002/wcm.584 +Kevin K. H. Chan,Performance analysis of cellular CDMA high-speed data services.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#ChanZY06,https://doi.org/10.1002/wcm.293 +Ramiro Sámano-Robles,Performance Analysis of MRC Receivers with Adaptive Modulation and Coding in Rayleigh Fading Correlated Channels with Imperfect CSIT.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#Samano-RoblesLT17,https://doi.org/10.1155/2017/6940368 +Xiaoming Chen 0002,Phase Noise Effect on MIMO-OFDM Systems with Common and Independent Oscillators.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#ChenWFZWSL17,https://doi.org/10.1155/2017/8238234 +Essam Saleh Altubaishi,Performance analysis of spectrally efficient amplify-and-forward opportunistic relaying scheme for adaptive cooperative wireless systems.,2015,15,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm15.html#AltubaishiS15,https://doi.org/10.1002/wcm.2397 +Mohammed A. Aseeri,Compact Microstrip Lowpass Filter with Low Insertion Loss for UWB Medical Applications.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#AseeriABS18,https://doi.org/10.1155/2018/8430626 +Yiming Ji,FreeMobility: dynamic location computing using GIS.,2013,13,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm13.html#JiS13,https://doi.org/10.1002/wcm.770 +Yanfeng Zhu 0001,A channel-aware adaptive control to the MAC protocol in rate adaptive wireless LANs.,2005,5,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm5.html#ZhuN05,https://doi.org/10.1002/wcm.361 +Guan Gui,Normalized least mean square-based adaptive sparse filtering algorithms for estimating multiple-input multiple-output channels.,2015,15,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm15.html#GuiXA15,https://doi.org/10.1002/wcm.2511 +Guerino Giancola,Radio resource management in infrastructure-based and ad hoc UWB networks.,2005,5,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm5.html#GiancolMCB05,https://doi.org/10.1002/wcm.311 +Basma M. Mohammad El-Basioni,Designing a Channel Access Mechanism for Wireless Sensor Network.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#El-BasioniMEK17,https://doi.org/10.1155/2017/7493269 +Wei Quan,Software-Defined Collaborative Offloading for Heterogeneous Vehicular Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#QuanWLCZS18,https://doi.org/10.1155/2018/3810350 +Ming-Feng Chen,A mobile service platform using proxy technology.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#ChenLRW06,https://doi.org/10.1002/wcm.240 +Nuno Souto,Low rate convolutional and turbo codes based on non-linear cyclic codes.,2007,7,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm7.html#SoutoSCCR07,https://doi.org/10.1002/wcm.306 +Ji Wang,Efficient transmission of MPEG-2 video bit streams over HIPERLAN/2.,2005,5,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm5.html#WangIK05,https://doi.org/10.1002/wcm.204 +Changgui Jia,Semidefinite Relaxation Algorithm for Multisource Localization Using TDOA Measurements with Range Constraints.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#JiaYWWZ18,https://doi.org/10.1155/2018/9430180 +Kuo-Chang Ting,Decision of mobile devices enabling high throughput and non-high throughput medium access control of 802.11n based on the consideration of energy efficiency.,2014,14,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm14.html#TingWKT14,https://doi.org/10.1002/wcm.2265 +Shaobing Huang,Pipeline Implementation of Polyphase PSO for Adaptive Beamforming Algorithm.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#Huang0HL17,https://doi.org/10.1155/2017/3926821 +Ming-Feng Chang,The frequency of CFVD speed report for highway traffic.,2015,15,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm15.html#ChangCLC15,https://doi.org/10.1002/wcm.2384 +Hatem Abou-zeid,A lookback scheduling framework for long-term quality of service over multiple cells.,2015,15,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm15.html#Abou-zeidHVF15,https://doi.org/10.1002/wcm.2501 +Alexandru Lavric,Performance Evaluation of LoRaWAN Communication Scalability in Large-Scale Wireless Sensor Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LavricP18,https://doi.org/10.1155/2018/6730719 +Xuanli Wu,Pulse shaping for cognitive ultra-wideband communications.,2010,10,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm10.html#WuSLZ10,https://doi.org/10.1002/wcm.788 +Boyu Li 0001,Reduced complexity sphere decoding.,2011,11,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm11.html#LiA11,https://doi.org/10.1002/wcm.1216 +Renqiu Wang,Improving the performance of coded FDFR multi-antenna systems with turbo-decoding.,2004,4,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm4.html#WangMG04,https://doi.org/10.1002/wcm.250 +Ming-Feng Chang,Load-balancing channel assignment for dual-band PCS networks.,2002,2,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm2.html#ChangL02,https://doi.org/10.1002/wcm.43 +Jeongcheol Lee,Real-Time Communication in Wireless Sensor Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LeeSPPK18,https://doi.org/10.1155/2018/9612631 +Tan N. Nguyen,Adaptive Energy Harvesting Relaying Protocol for Two-Way Half-Duplex System Network over Rician Fading Channels.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#NguyenMTV18,https://doi.org/10.1155/2018/7693016 +Lei Shu 0001,Reward oriented packet filtering algorithm for wireless sensor networks.,2009,9,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm9.html#ShuYZXWH09,https://doi.org/10.1002/wcm.549 +Tarek Bejaoui,Efficient call admission control scheme for 4G wireless networks.,2009,9,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm9.html#BejaouiN09,https://doi.org/10.1002/wcm.691 +Juliana Freitag Borin,Admission control for WiMAX networks.,2014,14,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm14.html#BorinF14,https://doi.org/10.1002/wcm.2272 +Jae-Hee Hur,A Variable Impacts Measurement in Random Forest for Mobile Cloud Computing.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#HurIP17,https://doi.org/10.1155/2017/6817627 +Ru Zong,Truthful double auction of spectrum trading for femtocell service provision.,2016,16,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm16.html#ZongGF16,https://doi.org/10.1002/wcm.2738 +Yuan Xue,Achieving proportional delay differentiation in wireless LAN via cross-layer scheduling.,2004,4,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm4.html#XueCN04,https://doi.org/10.1002/wcm.259 +Yuh-Shyan Chen,Linear regression-based delay-bounded routing protocols for VANETs.,2014,14,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm14.html#ChenHS14,https://doi.org/10.1002/wcm.1243 +You Wang,A multi-anchoring approach in mobile IP networks.,2016,16,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm16.html#WangBJ16,https://doi.org/10.1002/wcm.2767 +Abderrezak Rachedi,Impacts and solutions of control packets vulnerabilities with IEEE 802.11 MAC.,2009,9,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm9.html#RachediB09,https://doi.org/10.1002/wcm.690 +Dianjie Lu,Interference-aware spectrum handover for cognitive radio networks.,2014,14,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm14.html#LuHZF14,https://doi.org/10.1002/wcm.2273 +Farhan Masud,Traffic Adaptive MAC Protocols in Wireless Body Area Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#MasudAAU17,https://doi.org/10.1155/2017/8267162 +Mario Collotta,A Fuzzy Data Fusion Solution to Enhance the QoS and the Energy Consumption in Wireless Sensor Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#Collotta0B17,https://doi.org/10.1155/2017/3418284 +Amr Alasaad,Extending P2PMesh: topology-aware schemes for efficient peer-to-peer data sharing in wireless mesh networks.,2013,13,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm13.html#AlasaadGL13,https://doi.org/10.1002/wcm.1115 +Wonyong Yoon,A link layer protocol and link-state routing protocol suite for multi-channel ad hoc networks.,2012,12,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm12.html#YoonV12,https://doi.org/10.1002/wcm.891 +Mohsen Guizani,Editorial.,2001,1,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm1.html#GuizaniAHZ01a,https://doi.org/10.1002/wcm.25 +Jiyang Xie,A Survey on Machine Learning-Based Mobile Big Data Analysis: Challenges and Applications.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#XieSLZYZMQZG18,https://doi.org/10.1155/2018/8738613 +Pinar Sarisaray Boluk,Perceptual quality-based image communication service framework for wireless sensor networks.,2014,14,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm14.html#BolukBH14,https://doi.org/10.1002/wcm.1218 +Romeo Giuliano,Evaluation of interference due to UWB hot spot on fixed wireless access systems.,2004,4,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm4.html#GiulianoGHM04,https://doi.org/10.1002/wcm.199 +Rong Xie,A novel distributed MCDS approximation algorithm for wireless sensor networks.,2009,9,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm9.html#XieQLW09,https://doi.org/10.1002/wcm.547 +Lingping Kong,An Energy Balancing Strategy Based on Hilbert Curve and Genetic Algorithm for Wireless Sensor Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#KongPSTS17,https://doi.org/10.1155/2017/5720659 +Chengzhe Lai,Secure machine-type communications in LTE networks.,2016,16,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm16.html#LaiLLZS16,https://doi.org/10.1002/wcm.2612 +Juan Moreno García-Loygorri,Keyholes in MIMO-OFDM: Train-to-Wayside Communications in Railway Tunnels.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#Garcia-Loygorri17,https://doi.org/10.1155/2017/9068272 +Lali Barrière,Robust position-based routing in wireless ad hoc networks with irregular transmission ranges.,2003,3,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm3.html#BarriereFNO03,https://doi.org/10.1002/wcm.108 +Javier Vía,A new subspace method for blind estimation of selective MIMO-STBC channels.,2010,10,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm10.html#ViaSPV10,https://doi.org/10.1002/wcm.837 +Yunjian Xu,Spectrum sharing in frequency-selective unlicensed bands: a game theoretic approach.,2014,14,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm14.html#XuCC14,https://doi.org/10.1002/wcm.2196 +Fasil Berhanu Tesema,Multiconnectivity for Mobility Robustness in Standalone 5G Ultra Dense Networks with Intrafrequency Cloud Radio Access.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#Tesema0VSF17,https://doi.org/10.1155/2017/2038078 +Fadel F. Digham,Average probability of packet error with diversity reception over arbitrarily correlated fading channels.,2004,4,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm4.html#DighamA04,https://doi.org/10.1002/wcm.124 +Paris Kitsos,UMTS security: system architecture and hardware implementation.,2007,7,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm7.html#KitsosSK07,https://doi.org/10.1002/wcm.367 +Sayed Pouria Talebi,Primary service outage and secondary service performance in cognitive radio networks.,2015,15,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm15.html#Talebi15,https://doi.org/10.1002/wcm.2473 +Chih-Yung Chang,Decentralized and energy-balanced algorithms for maintaining temporal full-coverage in mobile WSNs.,2012,12,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm12.html#ChangHLCC12,https://doi.org/10.1002/wcm.977 +Jeremie Leguay,Evaluating MobySpace-based routing strategies in delay-tolerant networks.,2007,7,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm7.html#LeguayFC07,https://doi.org/10.1002/wcm.520 +Yiwen Wu,Designing a wireless network with directional antennas: frequency division issue.,2004,4,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm4.html#WuH04,https://doi.org/10.1002/wcm.189 +Hanna Bogucka,Efficient and rational spectrum utilization in opportunistic OFDMA networks with imperfect CSI: a utility-based top-down approach.,2012,12,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm12.html#Bogucka12,https://doi.org/10.1002/wcm.973 +Nesrine Chakchouk,WCDS-DCR: an energy-efficient data-centric routing scheme for wireless sensor networks.,2012,12,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm12.html#ChakchoukHF12,https://doi.org/10.1002/wcm.956 +Baoguo Yu,Collaborative Covert Communication Design Based on Lattice Reduction Aided Multiple User Detection Method.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#YuBWHS17,https://doi.org/10.1155/2017/8949430 +Chungang Yang,Energy Efficiency Architecture Design for Heterogeneous Cellular Networks.,2016,16,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm16.html#YangLA16,https://doi.org/10.1002/wcm.2635 +Jun Tian,Speed adaptive mobile IP over wireless LAN.,2008,8,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm8.html#TianH08,https://doi.org/10.1002/wcm.597 +Santosh Soni,Novel Learning Algorithms for Efficient Mobile Sink Data Collection Using Reinforcement Learning in Wireless Sensor Network.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#SoniS18,https://doi.org/10.1155/2018/7560167 +Fernando de la Hucha Arce,Adaptive Quantization for Multichannel Wiener Filter-Based Speech Enhancement in Wireless Acoustic Sensor Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#ArceMVB17,https://doi.org/10.1155/2017/3173196 +Yujin Lim,Efficient Data Forwarding for Machine Type Communications in Internet of Things Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#LimP17,https://doi.org/10.1155/2017/7865342 +Bin Liu 0012,New efficient cross-layer and multihoming mechanisms at layer 2 for inter-radio access technology handover between UMTS and WiMAX.,2014,14,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm14.html#0012BMB14,https://doi.org/10.1002/wcm.2208 +Nusrat Ahmed Surobhi,A MANET-based semantic traffic management framework for ubiquitous public safety networks.,2014,14,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm14.html#SurobhiJ14,https://doi.org/10.1002/wcm.2259 +Duc Binh Nguyen,An Efficient Traffic Congestion Monitoring System on Internet of Vehicles.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#NguyenDH18,https://doi.org/10.1155/2018/9136813 +Zhensheng Zhang,Delay/disruption tolerant mobile ad hoc networks: latest developments.,2007,7,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm7.html#ZhangZ07,https://doi.org/10.1002/wcm.518 +Jianping An,Efficient multiplicity calculation for algebraic soft-decision decoding of Reed - Solomon codes.,2011,11,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm11.html#AnJLLK11,https://doi.org/10.1002/wcm.929 +Shaohua Wu,High precision ranging with IR-UWB: a compressed sensing approach.,2016,16,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm16.html#WuZZZS16,https://doi.org/10.1002/wcm.2742 +Chunsheng Zhu,A survey on communication and data management issues in mobile sensor networks.,2014,14,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm14.html#ZhuSHWNY14,https://doi.org/10.1002/wcm.1219 +Khaled A. Ali,A MAC protocol for cognitive wireless sensor body area networking.,2010,10,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm10.html#AliSM10,https://doi.org/10.1002/wcm.1064 +Yuanteng Pei,Connectivity and bandwidth-aware real-time exploration in mobile robot networks.,2013,13,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm13.html#PeiMX13,https://doi.org/10.1002/wcm.1145 +Khoa N. Le,Channel capacity of OFDM systems employing diversity in fading environments.,2012,12,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm12.html#LeD12,https://doi.org/10.1002/wcm.1078 +Xiao Juan Zhang,Joint optimization of power allocation and relay location for regenerative relaying with multi-antenna reception at destination.,2012,12,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm12.html#ZhangG12,https://doi.org/10.1002/wcm.1072 +Ramya Raghavendra,MeshMon: a multi-tiered framework for wireless mesh network monitoring.,2011,11,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm11.html#RaghavendraABA11,https://doi.org/10.1002/wcm.908 +Mehmet Fatih Tüysüz,Exploiting the channel using uninterrupted collision-free MAC adaptation over IEEE 802.11 WLANs.,2015,15,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm15.html#TuysuzM15,https://doi.org/10.1002/wcm.2391 +Haitao Lin,ARLP: an adaptive link layer protocol to improve TCP performance over wireless fading channels.,2004,4,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm4.html#LinD04,https://doi.org/10.1002/wcm.235 +Khaled A. Harras,Controlled flooding in disconnected sparse mobile networks.,2009,9,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm9.html#HarrasA09,https://doi.org/10.1002/wcm.653 +Harri Holma,Third generation WCDMA radio evolution.,2003,3,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm3.html#HolmaT03,https://doi.org/10.1002/wcm.134 +Bo Liu 0004,Agent-based task representation and processing in pervasive computing environment.,2010,10,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm10.html#LiuLC10,https://doi.org/10.1002/wcm.742 +C. Konstantinopoulou,Radio resource management schemes for combined GSM/GPRS mobile systems.,2003,3,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm3.html#KonstantinopoulouKDTL03,https://doi.org/10.1002/wcm.96 +Chao Zhang 0003,Iterative receiver for amplify-and-forward relay networks with unknown noise correlation.,2014,14,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm14.html#ZhangTR14,https://doi.org/10.1002/wcm.2299 +Juan Chen,An efficient anonymous communication protocol for wireless sensor networks.,2012,12,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm12.html#ChenDF12,https://doi.org/10.1002/wcm.1205 +Der-Jiunn Deng,Saturation throughput analysis of multi-rate IEEE 802.11 wireless networks.,2009,9,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm9.html#DengLHKH09,https://doi.org/10.1002/wcm.668 +Walid M. Ibrahim,Characterizing multi-hop localization for Internet of things.,2016,16,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm16.html#IbrahimAHT16,https://doi.org/10.1002/wcm.2763 +David Ramírez,A comparative study of STBC transmissions at 2.4 GHz over indoor channels using a 2 and** 2 MIMO testbed.,2008,8,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm8.html#RamirezSPVGFPGCT08,https://doi.org/10.1002/wcm.558 +Manjeet Singh Patterh,Performance of DSWC diversity system using suboptimum adaptive switching threshold in independent and correlated nakagami-m fading channels.,2005,5,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm5.html#PatterhKS05,https://doi.org/10.1002/wcm.265 +Salam A. Zummo,Performance analysis of coded cooperation diversity in wireless networks.,2007,7,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm7.html#Zummo07,https://doi.org/10.1002/wcm.366 +Javid Taheri,A modified hopfield network for mobility management.,2008,8,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm8.html#TaheriZ08,https://doi.org/10.1002/wcm.582 +Xiaomei Zhang,Fault Activity Aware Service Delivery in Wireless Sensor Networks for Smart Cities.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#ZhangD0CL17,https://doi.org/10.1155/2017/9394613 +Nikos I. Passas,"Enabling technologies for the ""always best connected"" concept.",2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#PassasPKBNTJAOG06,https://doi.org/10.1002/wcm.392 +Vasilis Friderikos,Color-aware power and rate adaptation in IP-based CDMA radio access networks.,2005,5,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm5.html#FriderikosWIA05,https://doi.org/10.1002/wcm.300 +Omar S. Elkeelany,Remote access virtual private network architecture for high-speed wireless internet users.,2004,4,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm4.html#ElkeelanyMQ04,https://doi.org/10.1002/wcm.197 +Yi-Jen Lu,Lifetime maximization schemes under end-to-end frame-error constraints in wireless multimedia sensor networks.,2010,10,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm10.html#LuS10,https://doi.org/10.1002/wcm.766 +Yinglin Xu,Tone diversity for OFDMA in broadband wireless communications.,2007,7,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm7.html#XuWL07,https://doi.org/10.1002/wcm.403 +Meejoung Kim,Saturation performance analysis of directional CSMA/CA in mmWave WPANs.,2013,13,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm13.html#KimKL13,https://doi.org/10.1002/wcm.1174 +Takumi Murata,Performance Analysis of CRC Codes for Systematic and Nonsystematic Polar Codes with List Decoding.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#MurataO18,https://doi.org/10.1155/2018/7286909 +Xianming Lang,Pipeline Leak Aperture Recognition Based on Wavelet Packet Analysis and a Deep Belief Network with ICR.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LangHLLCR18,https://doi.org/10.1155/2018/6934825 +Mohamad Assaad,How to minimize the TCP effect in a UMTS-HSDPA system?,2005,5,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm5.html#AssaadZ05,https://doi.org/10.1002/wcm.304 +Charles C. Wang,Metric transformation for a turbo-coded DPSK waveform.,2003,3,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm3.html#WangS03,https://doi.org/10.1002/wcm.144 +Chin-Der Wann,Hybrid TOA/AOA estimation error test and non-line of sight identification in wireless location.,2009,9,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm9.html#WannL09,https://doi.org/10.1002/wcm.799 +Zhihua Li,Evidence-Efficient Multihop Clustering Routing Scheme for Large-Scale Wireless Sensor Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#LiX17,https://doi.org/10.1155/2017/1914956 +Huifang Sun,An overview of scalable video streaming.,2007,7,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm7.html#SunVX07,https://doi.org/10.1002/wcm.471 +Enrique Chirivella-Perez,NFVMon: Enabling Multioperator Flow Monitoring in 5G Mobile Edge Computing.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#Chirivella-Perez18,https://doi.org/10.1155/2018/2860452 +Tuna Tugcu,How a new realistic mobility model can affect the relative performance of a mobile networking scheme.,2004,4,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm4.html#TugcuE04,https://doi.org/10.1002/wcm.183 +Eric Bertrand,Selective trellis pruning for block codes: theory and application to iterative decoding.,2008,8,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm8.html#BertrandL08,https://doi.org/10.1002/wcm.555 +Yu Gu 0003,An optimal algorithm for solving partial target coverage problem in wireless sensor networks.,2013,13,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm13.html#0003JLZ13,https://doi.org/10.1002/wcm.1173 +Hyun Jun Kim,A Modification of the Fuzzy Logic Based DASH Adaptation Scheme for Performance Improvement.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#KimSK18,https://doi.org/10.1155/2018/8078710 +Nicolas Montavont,Fast movement detection in IEEE 802.11 networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#MontavontN06,https://doi.org/10.1002/wcm.416 +Samer A. Rajab,Toward enhanced wireless coexistence in ISM band via temporal characterization and modelling of 802.11b/g/n networks.,2016,16,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm16.html#RajabBR16,https://doi.org/10.1002/wcm.2753 +Mehmet Karaköse,A Cyberphysical System Based Mass-Customization Approach with Integration of Industry 4.0 and Smart City.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#KarakoseY17,https://doi.org/10.1155/2017/1058081 +Ezio Biglieri,Iterative receivers for coded MIMO signaling.,2004,4,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm4.html#BiglieriNT04,https://doi.org/10.1002/wcm.248 +Tahir Saleem,Simulation and Performance Evaluations of the New GPS L5 and L1 Signals.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#SaleemUEG17,https://doi.org/10.1155/2017/7492703 +Sangmin Oh,Dynamic hybrid duplex for rate maximization in OFDMA.,2011,11,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm11.html#OhL11,https://doi.org/10.1002/wcm.942 +Alexander Paramonov,Clustering Optimization for Out-of-Band D2D Communications.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#ParamonovHSKKK17,https://doi.org/10.1155/2017/6747052 +Hyukjin Lee,A refined MAC protocol with multipacket reception for wireless networks.,2011,11,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm11.html#LeeLC11,https://doi.org/10.1002/wcm.926 +Yanyan Shen,Resource allocation with proportional rate fairness in orthogonal frequency division multiple access relay networks.,2014,14,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm14.html#ShenF0G14,https://doi.org/10.1002/wcm.2184 +Yongjun Xu,Distributed power control for multiuser cognitive radio networks with quality of service and interference temperature constraints.,2015,15,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm15.html#XuZ15,https://doi.org/10.1002/wcm.2466 +Masud Moshtaghi,Streaming analysis in wireless sensor networks.,2014,14,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm14.html#MoshtaghiBHLKRP14,https://doi.org/10.1002/wcm.2248 +Mahesh K. Marina,Ad hoc on-demand multipath distance vector routing.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#MarinaD06,https://doi.org/10.1002/wcm.432 +Shihong Zou,A delay-centric parallel multi-path routing protocol for cognitive radio ad hoc networks.,2016,16,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm16.html#ZouGZWT16,https://doi.org/10.1002/wcm.2609 +Mathew Goonewardena,Opportunistic distributed channel access for a dense wireless small-cell zone.,2016,16,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm16.html#GoonewardenaYAE16,https://doi.org/10.1002/wcm.2642 +Xiangqian Liu,Target localization and tracking in noisy binary sensor networks with known spatial topology.,2009,9,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm9.html#LiuZM09,https://doi.org/10.1002/wcm.652 +Mohammad Baniata,Energy-Efficient Unequal Chain Length Clustering for Wireless Sensor Networks in Smart Cities.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#BaniataH17,https://doi.org/10.1155/2017/5790161 +Yujie Tang,Cluster-based coordination scheme for cooperative cognitive radio networks.,2016,16,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm16.html#TangLZMS16,https://doi.org/10.1002/wcm.2585 +Ronald Y. Chang,Dynamic fractional frequency reuse (D-FFR) for multicell OFDMA networks using a graph framework.,2013,13,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm13.html#ChangTZK13,https://doi.org/10.1002/wcm.1088 +Zhe Zheng,Performance and Power Consumption Analysis of IEEE802.11ah for Smart Grid.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhengCQG18,https://doi.org/10.1155/2018/5286560 +Vijay Kumar,Performance of dead reckoning-based location service for mobile ad hoc networks.,2004,4,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm4.html#KumarD04,https://doi.org/10.1002/wcm.163 +Antonios G. Alexiou,Cost analysis and efficient radio bearer selection for multicasting over UMTS.,2009,9,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm9.html#AlexiouBKR09,https://doi.org/10.1002/wcm.672 +Fatemeh Ghods,Throughput reliability analysis of cloud-radio access networks.,2016,16,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm16.html#GhodsFG16,https://doi.org/10.1002/wcm.2728 +Rui Tian,Sparsely-deployed relay node assisted routing algorithm for vehicular ad hoc networks.,2015,15,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm15.html#TianZLM15,https://doi.org/10.1002/wcm.2405 +Shahid Latif,Industrial Internet of Things Based Efficient and Reliable Data Dissemination Solution for Vehicular Ad Hoc Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LatifMAJFKH18,https://doi.org/10.1155/2018/1857202 +Zongrui Ding,Capacity region and dynamic control of wireless networks under per-link queueing.,2015,15,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm15.html#DingSWF15,https://doi.org/10.1002/wcm.2385 +Md. M. Hasan,A link adaptation scheme for the downlink of mobile hotspot.,2012,12,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm12.html#HasanMS12,https://doi.org/10.1002/wcm.1080 +Hamidreza Tavakoli,Adaptive low-energy clustering in slotted beacon-enabled IEEE 802.15.4 networks.,2016,16,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm16.html#TavakoliMNM16,https://doi.org/10.1002/wcm.2524 +Zhi Ni,Spectral efficiency of distributed MIMO code division multiple access systems over multipath fading channels.,2005,5,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm5.html#NiL05,https://doi.org/10.1002/wcm.278 +Lan Wang,A unifying look at clustering in mobile ad hoc networks.,2004,4,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm4.html#WangO04,https://doi.org/10.1002/wcm.233 +Muhammad Basit Shahab,User pairing schemes for capacity maximization in non-orthogonal multiple access systems.,2016,16,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm16.html#ShahabIKS16,https://doi.org/10.1002/wcm.2736 +Jiejun Kong,RVIP: an indistinguishable approach to scalable network simulation at real time.,2015,15,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm15.html#KongLW15,https://doi.org/10.1002/wcm.2481 +Yuliang Tang,Dynamic frame partitioning scheme for IEEE 802.16 mesh networks.,2014,14,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm14.html#TangLHC14,https://doi.org/10.1002/wcm.2257 +Jia Hou,On a space time parallel iterative coding scheme and its performance evaluation.,2003,3,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm3.html#HouL03,https://doi.org/10.1002/wcm.146 +Baoxian Zhang,Efficient location-based topology control algorithms for wireless ad hoc and sensor networks.,2016,16,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm16.html#ZhangJLYV16,https://doi.org/10.1002/wcm.2660 +Ying Yang 0004,A general approach to generate Rayleigh fading simulators with correct statistical properties.,2013,13,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm13.html#YangCDW13,https://doi.org/10.1002/wcm.1117 +Tausif Zahid,On the Tradeoff between Performance and Programmability for Software Defined WiFi Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZahidHCAP18,https://doi.org/10.1155/2018/1083575 +Weichao Wang,Defending against wormhole attacks in mobile ad hoc networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#WangBLW06,https://doi.org/10.1002/wcm.292 +Qiyue Yu,Combined code reuse scheme with two-dimensional OVSF codes assignment algorithm for uplink multi-user/multi-rate block spread multi-cellular CDMA.,2014,14,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm14.html#YuMA14,https://doi.org/10.1002/wcm.2245 +Charles E. Perkins,Internet connectivity for mobile ad hoc networks.,2002,2,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm2.html#PerkinsMWNT02,https://doi.org/10.1002/wcm.71 +Yong Li 0008,Optimal mobility control with energy constraint in delay tolerant networks.,2014,14,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm14.html#LiJSZW14,https://doi.org/10.1002/wcm.2247 +Golsa Ghiaasi,Real-Time Emulation of Nonstationary Channels in Safety-Relevant Vehicular Scenarios.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#GhiaasiBASM18,https://doi.org/10.1155/2018/2423837 +Soroor Soltani,ArgMax and ArgMin: transitional probabilistic models in cognitive radio mesh networks.,2015,15,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm15.html#SoltaniM15,https://doi.org/10.1002/wcm.2415 +Jun Shi 0003,Generalized convolution theorem associated with fractional Fourier transform.,2014,14,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm14.html#ShiSSZ14,https://doi.org/10.1002/wcm.2254 +Du Xiong,Adaptive joint precoding and pre-equalization with reduced complexity in massive MIMO systems.,2016,16,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm16.html#XiongPCJ16,https://doi.org/10.1002/wcm.2749 +Ben Quinton,Network Coding for Backhaul Offloading in D2D Cooperative Fog Data Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#QuintonA18,https://doi.org/10.1155/2018/1245720 +Dawei Liu 0001,Mobility enhanced localization in outdoor environments.,2010,10,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm10.html#LiuL10,https://doi.org/10.1002/wcm.681 +Fan Jia,A Request-Based Handover Strategy Using NDN for 5G.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#JiaZ18,https://doi.org/10.1155/2018/4513070 +Mustafa M. Matalgah,Performance analysis of the forward link cdma2000 1xEV-DO evolution for multirate services in cellular wireless system.,2007,7,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm7.html#MatalgahRI07,https://doi.org/10.1002/wcm.363 +Theodoros Pagtzis,On the performance of proactive mobile IPv6 for context-aware all-IP wireless access networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#PagtzisCC06,https://doi.org/10.1002/wcm.411 +Feng Li 0008,Power scheme and time-division bargaining for cooperative transmission in cognitive radio.,2015,15,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm15.html#LiTW15,https://doi.org/10.1002/wcm.2351 +Mostafa M. El-Said,Pilot pollution interference cancellation in CDMA systems.,2003,3,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm3.html#El-SaidKE03,https://doi.org/10.1002/wcm.154 +Beomsu Kim,A Survey on Real-Time Communications in Wireless Sensor Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#KimPKGK17,https://doi.org/10.1155/2017/1864847 +Diego B. Haddad,Acoustic Sensor Self-Localization: Models and Recent Results.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#HaddadLMBNL17,https://doi.org/10.1155/2017/7972146 +Shuja Ansari,SAI: Safety Application Identifier Algorithm at MAC Layer for Vehicular Safety Message Dissemination Over LTE VANET Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#AnsariSBSGK18,https://doi.org/10.1155/2018/6576287 +Frank Vanheel,Pseudo-3D RSSI-based WSN localization algorithm using linear regression.,2015,15,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm15.html#VanheelVLMD15,https://doi.org/10.1002/wcm.2416 +Hongna Zhao,Transcoding Based Video Caching Systems: Model and Algorithm.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhaoLZZL18,https://doi.org/10.1155/2018/1818690 +Weijun Xing,Stochastic Analysis of Network Coding Based Relay-Assisted I2V Communications in Intelligent Transportation Systems.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#XingL0017,https://doi.org/10.1155/2017/5706254 +Mingshan Xie,Weight-Aware Sensor Deployment in Wireless Sensor Networks for Smart Cities.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#XieBHS18,https://doi.org/10.1155/2018/5913836 +Jin Yu 0002,Reverse link capacity of SIR-based power-controlled CDMA systems with antenna arrays.,2003,3,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm3.html#YuY03,https://doi.org/10.1002/wcm.155 +Ahmed Abdelgawad,Internet of Things (IoT) Platform for Structure Health Monitoring.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#AbdelgawadY17,https://doi.org/10.1155/2017/6560797 +Jia Hu,Performance analysis and comparison of burst transmission schemes in unsaturated 802.11e WLANs.,2012,12,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm12.html#HuMW12,https://doi.org/10.1002/wcm.1018 +Liangliang Wang,Research and Implementation of Rateless Spinal Codes Based Massive MIMO System.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#WangCT18,https://doi.org/10.1155/2018/6101853 +Lei Zhang 0067,Prediction-based MAC-layer sensing in cognitive radio networks.,2016,16,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm16.html#ZhangXJSQM16,https://doi.org/10.1002/wcm.2498 +Huei-Wen Ferng,Route optimization using the distributed binding update for nested mobile networks.,2015,15,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm15.html#FerngL15,https://doi.org/10.1002/wcm.2323 +Wen Zhou,The Precoder Design with Covariance Feedback for Simultaneous Information and Energy Transmission Systems.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhouDXS18,https://doi.org/10.1155/2018/8472186 +Vassilis Zafeiris,An agent-based perspective to handover management in 4G networks.,2008,8,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm8.html#ZafeirisG08,https://doi.org/10.1002/wcm.539 +Ximin Yang,Cryptographic Algorithm Invocation Based on Software-Defined Everything in IPsec.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#YangWFWT18,https://doi.org/10.1155/2018/8728424 +Zhongwu Xiang,Exploiting Uplink NOMA to Improve Sum Secrecy Throughput in IoT Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#XiangYCCWW18,https://doi.org/10.1155/2018/9637610 +Mohammad Nour Hindia,A Stochastic Geometry Approach to Full-Duplex MIMO Relay Network.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#HindiaFRA18,https://doi.org/10.1155/2018/8342156 +Stefan Geirhofer,A sensing-based cognitive coexistence method for interfering infrastructure and ad hoc systems.,2010,10,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm10.html#GeirhoferTS10,https://doi.org/10.1002/wcm.896 +Jeremy J. Blum,Synchronization challenges in media access coordination for vehicular ad hoc networks.,2011,11,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm11.html#BlumNE11,https://doi.org/10.1002/wcm.921 +Fahd Ahmed Khan,Novel non-coherent and half-coherent receivers for amplify-and-forward relaying.,2016,16,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm16.html#KhanCA16,https://doi.org/10.1002/wcm.2550 +Zhuhua Hu,Adaptive and Blind Wideband Spectrum Sensing Scheme Using Singular Value Decomposition.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#HuBZSX17,https://doi.org/10.1155/2017/3279452 +Jie Wei,AIMING: Resource Allocation with Latency Awareness for Federated-Cloud Applications.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#WeiZYY18,https://doi.org/10.1155/2018/4593208 +Maryam el Azhari,Equalized Energy Consumption in Wireless Body Area Networks for a Prolonged Network Lifetime.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#AzhariMTL17,https://doi.org/10.1155/2017/4157858 +özgür özdemir,ML performance analysis of digital relaying in bi-directional relay channels.,2012,12,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm12.html#OzdemirY12,https://doi.org/10.1002/wcm.1003 +Lutful Karim,An integrated framework for wireless sensor network management.,2014,14,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm14.html#KarimMNK14,https://doi.org/10.1002/wcm.2260 +Ryuji Wakikawa,The applicability of virtual interface for inter-technology handoffs in Proxy Mobile IPv6.,2011,11,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm11.html#WakikawaKG11,https://doi.org/10.1002/wcm.845 +Chin-Sean Sum,Experimental Performance Evaluation of Multihop IEEE 802.15.4/4g/4e Smart Utility Networks in Outdoor Environment.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#SumZKH17,https://doi.org/10.1155/2017/7137406 +Antony Jamin,Wavelet packet modulation for wireless communications.,2005,5,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm5.html#JaminM05,https://doi.org/10.1002/wcm.201 +Zhou Yang,Resource Allocation for Green Cognitive Radios: Energy Efficiency Maximization.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#YangJL18,https://doi.org/10.1155/2018/1327030 +Fei Xin,Detecting spurious timeouts in wireless cellular networks using DS-Agent.,2008,8,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm8.html#XinJ08,https://doi.org/10.1002/wcm.466 +Yingsong Li,Adaptive Channel Estimation Based on an Improved Norm-Constrained Set-Membership Normalized Least Mean Square Algorithm.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#LiJW17,https://doi.org/10.1155/2017/8056126 +Kumar Yelamarthi,An Application-Driven Modular IoT Architecture.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#YelamarthiAA17,https://doi.org/10.1155/2017/1350929 +Lei Zhong,TRADE: A truthful online combinatorial auction for spectrum allocation in cognitive radio networks.,2015,15,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm15.html#ZhongHWC15,https://doi.org/10.1002/wcm.2411 +Gustavo Marfia,A new traffic congestion prediction model for advanced traveler information and management systems.,2013,13,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm13.html#MarfiaRA13,https://doi.org/10.1002/wcm.2200 +Kamil Staniec,Interference mitigation in WSN by means of directional antennas and duty cycle control.,2012,12,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm12.html#StaniecD12,https://doi.org/10.1002/wcm.1089 +Zhimin Wang,Detection Performance of Packet Arrival under Downclocking for Mobile Edge Computing.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#WangZXDZ18,https://doi.org/10.1155/2018/9641712 +Guiyun Liu,Position-based adaptive quantization for target location estimation in wireless sensor networks using one-bit data.,2016,16,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm16.html#LiuLCZS16,https://doi.org/10.1002/wcm.2576 +Peter King,Modeling a shallow water acoustic communication channel using environmental data for seafloor sensor networks.,2010,10,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm10.html#KingVL10,https://doi.org/10.1002/wcm.851 +Ravinder Kumar,Orthogonal spectral precoder for minimizing adjacent channel leakage ratio in OFDM based cognitive radio.,2016,16,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm16.html#KumarT16,https://doi.org/10.1002/wcm.2764 +Mustafa Harun Yilmaz,Cognitive Security of Wireless Communication Systems in the Physical Layer.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#YilmazGFKA17,https://doi.org/10.1155/2017/3592792 +Christian Antoñanzas,Control Effort Strategies for Acoustically Coupled Distributed Acoustic Nodes.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#AntonanzasFD017,https://doi.org/10.1155/2017/3601802 +Wael Jaafar,On the performance of multi-hop wireless relay networks.,2014,14,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm14.html#JaafarAH14,https://doi.org/10.1002/wcm.1246 +Pavel Mach,Handover of relay stations for load balancing in IEEE 802.16.,2013,13,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm13.html#MachBB13,https://doi.org/10.1002/wcm.1103 +Weiping Zhu 0005,Multitask Allocation to Heterogeneous Participants in Mobile Crowd Sensing.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhuGYX18,https://doi.org/10.1155/2018/7218061 +Shek F. Yau,A fast low-density parity-check code simulator based on compressed parity-check matrices.,2013,13,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm13.html#YauWLH13,https://doi.org/10.1002/wcm.1129 +Huseyin Birkan Yilmaz,Location estimation-based radio environment map construction in fading channels.,2015,15,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm15.html#YilmazT15,https://doi.org/10.1002/wcm.2367 +Kevin L. Mills,A brief survey of self-organization in wireless sensor networks.,2007,7,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm7.html#Mills07,https://doi.org/10.1002/wcm.499 +Whai-En Chen,SIPv6 analyzer: an analysis tool for 3GPP IMS services.,2008,8,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm8.html#ChenSL08,https://doi.org/10.1002/wcm.458 +Nong-Kun Chen,Array-based reader anti-collision scheme for highly efficient RFID network applications.,2009,9,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm9.html#ChenCL09,https://doi.org/10.1002/wcm.646 +Eunchul Yoon,Blind Selected Mapping with Side Information Estimation Based on the Received Pilot Signal.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#YoonHJKY18,https://doi.org/10.1155/2018/8523680 +Yi-Bing Lin,Impact of mobility on mobile telecommunications networks.,2005,5,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm5.html#LinPR05,https://doi.org/10.1002/wcm.338 +Cheng-Chi Lee,A new authentication protocol based on pointer forwarding for mobile communications.,2008,8,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm8.html#LeeHL08,https://doi.org/10.1002/wcm.495 +Viktor Richert,Implementation of a Modified Wireless Sensor Network MAC Protocol for Critical Environments.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#RichertII17,https://doi.org/10.1155/2017/2801204 +Wei An,Coverage hole problem under sensing topology in flat wireless sensor networks.,2016,16,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm16.html#AnQSXC16,https://doi.org/10.1002/wcm.2555 +Min Peng,The weighted shortest path search based on multi-agents in mobile GIS management services.,2012,12,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm12.html#PengXPVZ12,https://doi.org/10.1002/wcm.962 +Hammad Shafiq,Services and Security Threats in SDN Based VANETs: A Survey.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ShafiqRK18,https://doi.org/10.1155/2018/8631851 +Chuanbin Li,Predicting Short-Term Electricity Demand by Combining the Advantages of ARMA and XGBoost in Fog Computing Environment.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LiZYK18,https://doi.org/10.1155/2018/5018053 +Yun Zhou,A location-based naming mechanism for securing sensor networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#ZhouF06,https://doi.org/10.1002/wcm.400 +Lin-Yi Wu,A client-side design and implementation for push to talk over cellular service.,2007,7,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm7.html#WuTLY07,https://doi.org/10.1002/wcm.369 +Asrar U. H. Sheikh,A robust muopt-LMS algorithm for the tracking of fading channels.,2002,2,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm2.html#SheikhS02,https://doi.org/10.1002/wcm.46 +Mingkai Chen,QoE-Driven D2D Media Services Distribution Scheme in Cellular Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#Chen0CW17,https://doi.org/10.1155/2017/8754020 +Tetsuya Yamamoto,Recursive QR packet combining for uplink single-carrier multi-user MIMO HARQ using near ML detection.,2012,12,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm12.html#YamamotoASA12,https://doi.org/10.1002/wcm.2334 +Thu Nga Nguyen,A performance comparison of the SCM and the Onering channel modeling method for MIMO-OFDMA systems.,2016,16,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm16.html#NguyenN16,https://doi.org/10.1002/wcm.2730 +Ichiro Satoh,SpatialAgents: integrating user mobility and program mobility in ubiquitous computing environments.,2003,3,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm3.html#Satoh03,https://doi.org/10.1002/wcm.126 +Guide Yang,Performance Optimization for Overloaded MIMO Systems with Virtual Channel Approach.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#YangZX18,https://doi.org/10.1155/2018/9651378 +Emmanuel Géron,A new insight into Bluetooth piconets coexistence.,2009,9,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm9.html#GeronV09,https://doi.org/10.1002/wcm.619 +Fei Lin,Quasi-optimal power allocation based on ergodic capacity for wireless relay networks.,2013,13,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm13.html#LinLJ13,https://doi.org/10.1002/wcm.1125 +Fumiyuki Adachi,Recent advances in single-carrier distributed antenna network.,2011,11,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm11.html#AdachiTYMK11,https://doi.org/10.1002/wcm.1212 +Amir Ghasemi,Spectrum sensing in cognitive radio networks: the cooperation-processing tradeoff.,2007,7,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm7.html#GhasemiS07,https://doi.org/10.1002/wcm.480 +Dhaou Said,Multi-priority queuing for electric vehicles charging at public supply stations with price variation.,2015,15,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm15.html#SaidCK15,https://doi.org/10.1002/wcm.2508 +Ioannis Chatzigiannakis,On the effect of user mobility and density on the performance of protocols for ad-hoc mobile networks.,2004,4,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm4.html#ChatzigiannakisKN04,https://doi.org/10.1002/wcm.232 +Zhenjie Ma,Learning Automata Based Caching for Efficient Data Access in Delay Tolerant Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#MaWSW18,https://doi.org/10.1155/2018/3806907 +Slim Zaidi,SNR and throughput analysis of distributed collaborative beamforming in locally-scattered environments.,2012,12,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm12.html#ZaidiA12,https://doi.org/10.1002/wcm.2337 +Pengyuan Cao,Speeding Up Exact Algorithms for Maximizing Lifetime of WSNs Using Multiple Cores.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#CaoZ18,https://doi.org/10.1155/2018/3830285 +Jongwook Lee,Energy efficient scheduling for downlink elastic traffic in wireless networks.,2010,10,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm10.html#LeeB10,https://doi.org/10.1002/wcm.803 +Vamsi Krishna Tumuluru,Channel status prediction for cognitive radio networks.,2012,12,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm12.html#TumuluruWN12,https://doi.org/10.1002/wcm.1017 +Marc St-Hilaire,Topological planning and design of UMTS mobile networks: a survey.,2009,9,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm9.html#St-Hilaire09,https://doi.org/10.1002/wcm.644 +Fumiyuki Adachi,New direction of broadband wireless technology.,2007,7,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm7.html#AdachiK07,https://doi.org/10.1002/wcm.507 +Fucai Yu,Scalable location guide overlay multicast in mobile ad hoc networks using tree partition scheme.,2012,12,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm12.html#YuPLK12,https://doi.org/10.1002/wcm.1028 +Lifeng Zhang,Multihop Data Delivery Virtualization for Green Decentralized IoT.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#ZhangWYCMJ17,https://doi.org/10.1155/2017/9805784 +Sumi Helal,Adaptive delivery of video data over wireless and mobile environments.,2003,3,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm3.html#HelalSBH03,https://doi.org/10.1002/wcm.77 +Jiejun Kong,Adaptive security for multilevel ad hoc networks.,2002,2,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm2.html#KongLXGGL02,https://doi.org/10.1002/wcm.75 +Paolo Barsocchi,Automatic virtual calibration of range-based indoor localization systems.,2012,12,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm12.html#BarsocchiLCF12,https://doi.org/10.1002/wcm.1085 +Morteza Rajabzadeh,Novel spreading codes for multicarrier code division multiple access based cognitive radio networks with sidelobe suppression.,2014,14,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm14.html#RajabzadehK14,https://doi.org/10.1002/wcm.2186 +Zhou Yan,QoS-based space-frequency prefiltering for TDD MC-CDMA systems in slowly time-varying channels.,2009,9,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm9.html#Yan09,https://doi.org/10.1002/wcm.669 +Haojun Teng,Adaptive Transmission Power Control for Reliable Data Forwarding in Sensor Based Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#Teng0LSHW18,https://doi.org/10.1155/2018/2068375 +Hoc Phan,Cognitive amplify-and-forward relay networks with beamforming under primary user power constraint over Nakagami-m fading channels.,2015,15,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm15.html#PhanZDTC15,https://doi.org/10.1002/wcm.2317 +Lei Wang 0009,Robust spectrum sensing algorithm based on free probability theory.,2016,16,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm16.html#0009CJZ16,https://doi.org/10.1002/wcm.2641 +Giuseppe Bianchi 0001,Channel-dependent load balancing in wireless packet networks.,2004,4,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm4.html#BianchiT04,https://doi.org/10.1002/wcm.171 +Rui Campos,Network infrastructure extension using 802.1D-based wireless mesh networks.,2011,11,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm11.html#CamposDSRR11,https://doi.org/10.1002/wcm.916 +Lei Mo,Coordination mechanism based on mobile actuator design for wireless sensor and actuator networks.,2015,15,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm15.html#MoX15,https://doi.org/10.1002/wcm.2408 +Guan-Long Huang,Low-Profile Flexible UHF RFID Tag Design for Wristbands Applications.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#HuangSLLY18,https://doi.org/10.1155/2018/9482919 +Xuewu Dai,Interference-aware convergecast scheduling in wireless sensor/actuator networks for active airflow control applications.,2014,14,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm14.html#DaiOBY14,https://doi.org/10.1002/wcm.2190 +Nandita Lavanis,Performance of p-Norm Detector in Cognitive Radio Networks with Cooperative Spectrum Sensing in Presence of Malicious Users.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#LavanisJ17,https://doi.org/10.1155/2017/4316029 +Xiaobo Zhang,Optimizing distortion for real-time data gathering in randomly deployed sensor networks.,2009,9,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm9.html#ZhangWNK09,https://doi.org/10.1002/wcm.722 +Hassan Artail,A faulty node detection scheme for wireless sensor networks that use data aggregation for transport.,2016,16,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm16.html#ArtailASC16,https://doi.org/10.1002/wcm.2661 +Feyza Keceli,Fair and efficient Transmission Control Protocol access in the IEEE 802.11 infrastructure basic service set.,2015,15,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm15.html#KeceliIA15,https://doi.org/10.1002/wcm.2414 +Ruolin Zhou,A software-defined radio based cognitive radio demonstration over FM band.,2010,10,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm10.html#ZhouMLWW10,https://doi.org/10.1002/wcm.903 +Linoh A. Magagula,Handover approaches for seamless mobility management in next generation wireless networks.,2012,12,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm12.html#MagagulaCF12,https://doi.org/10.1002/wcm.1074 +Qi Bi,The future evolution of wireless mobile communications.,2003,3,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm3.html#BiS03,https://doi.org/10.1002/wcm.151 +Dongmei Zhao,Access control in ad hoc networks with selfish nodes.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#Zhao06,https://doi.org/10.1002/wcm.440 +Hsiao-Hwa Chen,Isotropic air-interface technologies for fourth generation wireless communications.,2003,3,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm3.html#ChenLCWC03,https://doi.org/10.1002/wcm.150 +Zdenek Becvar,Self-optimizing neighbor cell list with dynamic threshold for handover purposes in networks with small cells.,2015,15,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm15.html#BecvarMV15,https://doi.org/10.1002/wcm.2456 +Jun Li,Block-wise Alamouti schemes for OQAM-OFDM systems with complex orthogonality.,2016,16,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm16.html#LiCQJ16,https://doi.org/10.1002/wcm.2747 +Umma Hany,Local Parametric Approach of Wireless Capsule Endoscope Localization Using Randomly Scattered Path Loss Based WCL.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#HanyA17,https://doi.org/10.1155/2017/7318076 +Ning Xu,Coverage and connectivity guaranteed topology control algorithm for cluster-based wireless sensor networks.,2012,12,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm12.html#XuHHC12,https://doi.org/10.1002/wcm.887 +Kai Zhao,Power allocation scheme based on sum capacity maximization for signal-to-leakage-and-noise ratio precoded multiuser multiple-input single-output downlink.,2015,15,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm15.html#ZhaoZYZ15,https://doi.org/10.1002/wcm.2375 +Furqan Jameel,On the Secrecy Performance of SWIPT Receiver Architectures with Multiple Eavesdroppers.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#JameelWNAC18,https://doi.org/10.1155/2018/8747420 +Kun Hua,A Game Theory Based Approach for Power Efficient Vehicular Ad Hoc Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#HuaLCL17,https://doi.org/10.1155/2017/9423534 +Xiaodong Xu,Maximum utility principle access control for beyond 3G mobile system.,2007,7,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm7.html#XuWTWZ07,https://doi.org/10.1002/wcm.491 +Cheng Xu 0005,An Anonymous Handover Authentication Scheme Based on LTE-A for Vehicular Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#XuHMB18,https://doi.org/10.1155/2018/6251219 +Ai-Chun Pang,GSM-IP: A VoIP service for mobile networks.,2001,1,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm1.html#PangLC01,https://doi.org/10.1002/wcm.19 +Haejoon Jung,Performance Analysis of Three-Dimensional Clustered Device-to-Device Networks for Internet of Things.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#JungL17,https://doi.org/10.1155/2017/9628565 +Lutful Karim,A fault-tolerant energy-efficient clustering protocol of a wireless sensor network.,2014,14,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm14.html#KarimNS14,https://doi.org/10.1002/wcm.1240 +Haiyan Luo,A distributed utility-based scheduling for peer-to-peer video streaming over wireless networks.,2016,16,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm16.html#LuoACW16,https://doi.org/10.1002/wcm.2614 +Jian Jiao,Performance Analysis of Space Information Networks with Backbone Satellite Relaying for Vehicular Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#JiaoGWZ17,https://doi.org/10.1155/2017/4859835 +Naixue Xiong,Self-stabilizing flocking of a group of mobile robots with memory corruption.,2011,11,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm11.html#XiongYPVYP11,https://doi.org/10.1002/wcm.814 +Peng Gong 0001,Reducing computational complexity using transmitter correlation value-assisted schedulers in multiuser MIMO uplink.,2011,11,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm11.html#GongCK11,https://doi.org/10.1002/wcm.925 +Ioannis Z. Koukoutsidis,Optimal decision strategies for paging in mobile cellular networks.,2007,7,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm7.html#KoukoutsidisDPT07,https://doi.org/10.1002/wcm.347 +Mingyuan Yan,Multi-regional query scheduling in wireless sensor networks with minimum latency.,2014,14,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm14.html#YanHJL14,https://doi.org/10.1002/wcm.2238 +Kwang-Cheng Chen,Trusted cognitive radio networking.,2010,10,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm10.html#ChenCPLS10,https://doi.org/10.1002/wcm.777 +Haris Gacanin,Iterative decision-directed estimation and compensation of nonlinear distortion effects for OFDM systems.,2012,12,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm12.html#GacaninA12a,https://doi.org/10.1002/wcm.1086 +Raza Umar,Coordinated coalition formation in throughput-efficient cognitive radio networks.,2016,16,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm16.html#UmarM16,https://doi.org/10.1002/wcm.2568 +Xieling Chen,A Bibliometric Review of Natural Language Processing Empowered Mobile Computing.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ChenDXWHZ18,https://doi.org/10.1155/2018/1827074 +Qing Wang 0004,Throughput improvement and its tradeoff with the queuing delay in the diamond relay networks.,2010,10,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm10.html#WangFL10,https://doi.org/10.1002/wcm.830 +Guangjun Liang,Performance Analysis of Buffer-Aided Relaying System Based on Data and Energy Coupling Queuing Model for Cooperative Communication Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#LiangZXTZ17,https://doi.org/10.1155/2017/9287489 +Peramanathan Sathyamoorthy,Profiling Energy Efficiency and Data Communications for Mobile Internet of Things.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#SathyamoorthyNH17,https://doi.org/10.1155/2017/6562915 +Vlad Mitlin,Optimal selection of ARQ parameters in QAM channels.,2005,5,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm5.html#Mitlin05,https://doi.org/10.1002/wcm.206 +Gang Zhang,A Compact Differential-Mode Wide Stopband Bandpass Filter with Good and Wideband Common-Mode Suppression.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhangZY18,https://doi.org/10.1155/2018/4032183 +Laetitia Falconetti,Practical energy-aware cell association for small cell deployment.,2016,16,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm16.html#FalconettiKC16,https://doi.org/10.1002/wcm.2696 +Mu Qiao,Optimal Channel Selection Based on Online Decision and Offline Learning in Multichannel Wireless Sensor Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#Qiao0HZW17,https://doi.org/10.1155/2017/7902579 +Qing Zhang,Channel-estimate-based frequency-domain equalization (CE-FDE) for broadband single-carrier transmission.,2004,4,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm4.html#ZhangL04,https://doi.org/10.1002/wcm.188 +Ren-Hung Hwang,Adaptive load-balancing association handoff approach for increasing utilization and improving GoS in mobile WiMAX networks.,2012,12,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm12.html#HwangCLL12,https://doi.org/10.1002/wcm.1053 +Qing Wang 0004,Effective capacity of a correlated Nakagami-m fading channel.,2012,12,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm12.html#WangWF12,https://doi.org/10.1002/wcm.1048 +Bilal Jan,Energy Efficient Hierarchical Clustering Approaches in Wireless Sensor Networks: A Survey.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#JanFJMK017,https://doi.org/10.1155/2017/6457942 +Ali A. Haghighi,Cooperative multiple relay system for frequency selective environment: outage analysis and power allocation.,2012,12,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm12.html#HaghighiN12,https://doi.org/10.1002/wcm.951 +Chowdhury Shahriar,Equalization attacks against OFDM: analysis and countermeasures.,2016,16,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm16.html#ShahriarCM16,https://doi.org/10.1002/wcm.2648 +Eric Sabbah,An application-driven approach to designing secure wireless sensor networks.,2008,8,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm8.html#SabbahKAML08,https://doi.org/10.1002/wcm.583 +Yang Qiu,Channel modeling for visible light communications - a survey.,2016,16,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm16.html#QiuCM16,https://doi.org/10.1002/wcm.2665 +Jinsong Gui,Enhancing Cellular Coverage Quality by Virtual Access Point and Wireless Power Transfer.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#GuiHX18,https://doi.org/10.1155/2018/9218239 +Shudong Fang,Characterization of hello message exchange to estimate sensor node's neighborhood residual energy distribution in initialization phase.,2013,13,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm13.html#FangBS13,https://doi.org/10.1002/wcm.1132 +Kun Liu,Performance of a MANET directional MAC protocol with angle-of-arrival estimation.,2008,8,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm8.html#LiuHY08,https://doi.org/10.1002/wcm.523 +Hongli Zhang 0001,CAPR: context-aware participant recruitment mechanism in mobile crowdsourcing.,2016,16,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm16.html#ZhangXDZS16,https://doi.org/10.1002/wcm.2675 +Sang-Lim Ju,Channel-Allocation Plan for National and Local T-DAB Services in VHF Band III.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#JuBK18,https://doi.org/10.1155/2018/1420940 +Ismail Bennis,Carrier sense aware multipath geographic routing protocol.,2016,16,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm16.html#BennisFZA16,https://doi.org/10.1002/wcm.2590 +Takafumi Takiguchi,A new application-level link aggregation and its implementation on Android terminals.,2012,12,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm12.html#TakiguchiHMSMA12,https://doi.org/10.1002/wcm.2329 +Ralph A. Gholmieh,Benefits of the control-hold mode for the support of the forward packet data channel in IS-2000.,2003,3,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm3.html#GholmiehK03,https://doi.org/10.1002/wcm.175 +Zhong Fan,Interference management in femtocell networks.,2013,13,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm13.html#FanCSZ13,https://doi.org/10.1002/wcm.1157 +Zhongjiang Yan,Fault-tolerance in wireless ad hoc networks: bi-connectivity through movement of removable nodes.,2013,13,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm13.html#YanCJS13,https://doi.org/10.1002/wcm.1164 +Nicolae Dumitru Alexandru,Quick Performance Assessment of Improved Nyquist Pulses.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#AlexandruD17,https://doi.org/10.1155/2017/7071648 +Haowen Tan,Secure Certificateless Authentication and Road Message Dissemination Protocol in VANETs.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#TanCKPC18,https://doi.org/10.1155/2018/7978027 +Congshan Fan,Energy Efficiency Analysis of Cache-Enabled Cellular Networks with Limited Backhaul.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#FanZZC18,https://doi.org/10.1155/2018/6910876 +Xin Liu,Double-threshold cooperative detection for cognitive radio based on weighing.,2014,14,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm14.html#LiuZT14,https://doi.org/10.1002/wcm.2219 +Alvaro Monsalve,Optimal designs for IEEE 802.15.4 wireless sensor networks.,2013,13,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm13.html#MonsalveVV13,https://doi.org/10.1002/wcm.1227 +Nadav Lavi,MaGMA: mobility and group management architecture for real-time collaborative applications.,2005,5,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm5.html#LaviCK05,https://doi.org/10.1002/wcm.339 +Shichang Chen,A Reactance Compensated Three-Device Doherty Power Amplifier for Bandwidth and Back-Off Range Extension.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ChenWXW18,https://doi.org/10.1155/2018/8418165 +Bang Wang,Broadcast based on layered diffusion in wireless ad hoc and sensor networks.,2012,12,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm12.html#WangLM12,https://doi.org/10.1002/wcm.892 +Romeo Giuliano,Smart cell sectorization for third generation CDMA systems.,2002,2,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm2.html#GiulianoMV02,https://doi.org/10.1002/wcm.56 +Dan Deng,Impact of Antenna Selection on Physical-Layer Security of NOMA Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#DengLFLZ18,https://doi.org/10.1155/2018/2390834 +Khoriba Ghada,Cross-layer design for topology control and routing in MANETs.,2012,12,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm12.html#GhadaLJ12,https://doi.org/10.1002/wcm.957 +TaeHyoung Sun,Flexible block-wise loading algorithm for effective resource allocation and reduction of uplink feedback information in OFDMA systems.,2009,9,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm9.html#SunWC09,https://doi.org/10.1002/wcm.721 +Paolo Casari,A detailed analytical and simulation study of geographic random forwarding.,2013,13,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm13.html#CasariNPZ13,https://doi.org/10.1002/wcm.1152 +Zhaleh Sadreddini,Dynamic Resource Sharing in 5G with LSA: Criteria-Based Management Framework.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#SadreddiniMCOHG18,https://doi.org/10.1155/2018/7302025 +Fumiyuki Adachi,Network and access technologies for new generation mobile communications - overview of National R and D Project in NICT.,2007,7,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm7.html#AdachiWMKHIMO07,https://doi.org/10.1002/wcm.508 +Radim Bartos,Development of routing protocols for the solar-powered autonomous underwater vehicle (SAUV) platform.,2008,8,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm8.html#BartosCKHMAK08,https://doi.org/10.1002/wcm.655 +Volkan Kumbasar,Optimization of wavelet based OFDM for multipath powerline channel by genetic algorithm.,2009,9,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm9.html#KumbasarKEO09,https://doi.org/10.1002/wcm.694 +Qing Wang 0004,On the relay position selection for the diamond network over Nakagami-m fading channels.,2010,10,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm10.html#WangF10,https://doi.org/10.1002/wcm.1075 +Rajesh Palit,MAPLE: a framework for mobility-aware pro-active low energy clustering in ad hoc mobile wireless networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#PalitHT06,https://doi.org/10.1002/wcm.441 +Kai Yang 0001,Multiuser resource allocation for video transmission over a chip-interleaved multicarrier system.,2007,7,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm7.html#YangSXW07,https://doi.org/10.1002/wcm.470 +Yieh-Ran Haung,A software architecture for GPRS session management.,2002,2,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm2.html#HaungL02,https://doi.org/10.1002/wcm.40 +Maximo Cobos,A Survey of Sound Source Localization Methods in Wireless Acoustic Sensor Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#CobosAAML17,https://doi.org/10.1155/2017/3956282 +Nidal Nasser,Optimized bandwidth allocation in broadband wireless access networks.,2015,15,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm15.html#NasserMETB15,https://doi.org/10.1002/wcm.2479 +Maximo Cobos,Wireless Acoustic Sensor Networks and Applications.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#CobosAML17,https://doi.org/10.1155/2017/1085290 +Xin Tian 0002,Sliding window energy detection for spectrum sensing under low SNR conditions.,2016,16,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm16.html#TianTBPSC16,https://doi.org/10.1002/wcm.2639 +Jasmin A. Mahal,The BER analysis of OFDMA and SC-FDMA under pilot-assisted channel estimation and pilot jamming in rayleigh slow-fading channel.,2016,16,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm16.html#MahalC16,https://doi.org/10.1002/wcm.2685 +Ahmed Salah,Joint Channel Assignment and Power Allocation Based on Maximum Concurrent Multicommodity Flow in Cognitive Radio Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#SalahAR18,https://doi.org/10.1155/2018/3545946 +Christian Hartmann,Modeling and performance analysis of multi-service wireless CDMA cellular networks using smart antennas.,2009,9,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm9.html#HartmannN09,https://doi.org/10.1002/wcm.631 +Jang-Ping Sheu,Efficient broadcasting protocols for regular wireless sensor networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#SheuHC06,https://doi.org/10.1002/wcm.241 +Youngho Jo,On the performance of joint space-frequency pre-filtering and equalization for downlink multi-carrier code division multiple access.,2013,13,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm13.html#JoW13,https://doi.org/10.1002/wcm.1147 +Muhammad Jaseemuddin,A study of profiled handoff for Diffserv-based mobile nodes.,2002,2,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm2.html#JaseemuddinZM02,https://doi.org/10.1002/wcm.48 +Martin Connolly,Adaptive Reward Allocation for Participatory Sensing.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ConnollyDIB18,https://doi.org/10.1155/2018/6353425 +Goo Yeon Lee,Optimal TCP segment size for mobile server access over wireless links of cellular networks.,2008,8,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm8.html#LeeJKL08,https://doi.org/10.1002/wcm.563 +Teddy Febrianto,Cooperative Full-Duplex Physical and MAC Layer Design in Asynchronous Cognitive Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#FebriantoHS17,https://doi.org/10.1155/2017/8491920 +Yang Wang 0029,Evaluation of an ultra-wide bandwidth wireless indoor non-line-of-sight channels.,2009,9,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm9.html#WangZZZ09,https://doi.org/10.1002/wcm.594 +Fabrice Labeau,Non-binary SOVA algorithms for decoding of block codes on a sectionalized trellis.,2007,7,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm7.html#Labeau07,https://doi.org/10.1002/wcm.516 +Mugen Peng,Investigation of capacity and call admission control schemes in TD-SCDMA uplink systems employing smart antenna techniques.,2010,10,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm10.html#PengWZ10,https://doi.org/10.1002/wcm.758 +Ke Xiao,Opportunistic NOMA-Based Massive MIMO Precoding for 5G New Radio.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#XiaoKRL18,https://doi.org/10.1155/2018/2328954 +Noura Aljeri,A reliable quality of service aware fault tolerant gateway discovery protocol for vehicular networks.,2015,15,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm15.html#AljeriAAB15,https://doi.org/10.1002/wcm.2413 +Neng Ye,Rate-Adaptive Multiple Access for Uplink Grant-Free Transmission.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#YeWLLHY18,https://doi.org/10.1155/2018/8978207 +Wenfeng Li,Determination method of optimal number of clusters for clustered wireless sensor networks.,2012,12,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm12.html#LiMS12,https://doi.org/10.1002/wcm.949 +Jian Qi,Mobile-to-mobile MIMO transmit-receive diversity systems: analysis and performance in three-dimensional double-correlated channels.,2013,13,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm13.html#QiA13,https://doi.org/10.1002/wcm.1207 +Lingyun Lu,Fog Computing-Assisted Energy-Efficient Resource Allocation for High-Mobility MIMO-OFDMA Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LuWNLG18,https://doi.org/10.1155/2018/5296406 +Xue Chen,Tradeoff between energy efficiency and spectral efficiency in a delay constrained wireless system.,2015,15,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm15.html#ChenHWL15,https://doi.org/10.1002/wcm.2469 +Yuting Wang,A Joint Channel Selection and Routing Protocol for Cognitive Radio Network.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#WangZMLL18,https://doi.org/10.1155/2018/6848641 +Yang Li,Video transport over multi-hop directional wireless networks.,2007,7,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm7.html#LiM07,https://doi.org/10.1002/wcm.475 +Gary K. W. Wong,Switching cost minimization in the IEEE 802.16e mobile WiMAX sleep mode operation.,2010,10,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm10.html#WongZT10,https://doi.org/10.1002/wcm.875 +Xuemin (Sherman) Shen,Special issue on the selected papers of IWCMC'11.,2011,11,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm11.html#ShenKW11,https://doi.org/10.1002/wcm.1237 +Li Zhu,Service availability analysis in communication-based train control systems using wireless local area networks.,2015,15,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm15.html#ZhuYN15,https://doi.org/10.1002/wcm.2313 +Jong-Ok Kim,Splitting downlink multimedia traffic over WiMAX and WiFi heterogeneous links based on airtime-balance.,2012,12,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm12.html#KimDUO12,https://doi.org/10.1002/wcm.999 +Yan Zhang,Performance analysis of a P2P-enabled TDD-CDMA network with intra-cell spatial resource reuse.,2009,9,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm9.html#ZhangDSY09,https://doi.org/10.1002/wcm.663 +Xin Yang 0004,Energy Efficiency TDMA/CSMA Hybrid Protocol with Power Control for WSN.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#YangWXZ18,https://doi.org/10.1155/2018/4168354 +Maggie Xiaoyan Cheng,Energy-efficient broadcast and multicast routing in multihop ad hoc wireless networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#ChengSMLW06,https://doi.org/10.1002/wcm.381 +Ingemar Johansson,Adaptive Video with SCReAM over LTE for Remote-Operated Working Machines.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#JohanssonDBJ18,https://doi.org/10.1155/2018/3142496 +Mohammad Yamin,Managing Crowds with Wireless and Mobile Technologies.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#YaminBS18,https://doi.org/10.1155/2018/7361597 +Farzin Azami,Joint Power Allocation and Beamforming in Amplify-and-Forward Relay Networks under Per-Node Power Constraint.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#AzamiHA17,https://doi.org/10.1155/2017/5681236 +Matthias Pätzold,Modelling and Analysis of Nonstationary Vehicle-to-Infrastructure Channels with Time-Variant Angles of Arrival.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#PatzoldG18,https://doi.org/10.1155/2018/6396173 +Sungkyu Cho,Density-adaptive network reprogramming protocol for wireless sensor networks.,2010,10,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm10.html#ChoSHCH10,https://doi.org/10.1002/wcm.813 +Abdellaziz Walid,Group vertical handoff management in heterogeneous networks.,2016,16,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm16.html#WalidKMSTK16,https://doi.org/10.1002/wcm.2599 +Vassilios Tsaoussidis,Open issues on TCP for mobile computing.,2002,2,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm2.html#TsaoussidisM02a,https://doi.org/10.1002/wcm.30 +Chuang Zhang,Service-based high-speed railway base station arrangement.,2015,15,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm15.html#ZhangFDX15,https://doi.org/10.1002/wcm.2452 +Raphael Rom,Stochastic analysis and performance evaluation of wireless schedulers.,2004,4,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm4.html#RomT04,https://doi.org/10.1002/wcm.166 +Leonardo Lizzi,Miniature Multiband Inverted-F Antenna over an Electrically Small Ground Plane for Compact IoT Terminals.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LizziFDB18,https://doi.org/10.1155/2018/8131705 +Di Tian,A node scheduling scheme for energy conservation in large wireless sensor networks.,2003,3,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm3.html#TianG03,https://doi.org/10.1002/wcm.116 +Baoju Zhang,Research on image transmission equalized by dual-mode blind algorithm.,2014,14,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm14.html#ZhangWW14,https://doi.org/10.1002/wcm.2227 +Hua Guo,Authenticated key exchange protocol with selectable identities.,2011,11,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm11.html#GuoMZL11,https://doi.org/10.1002/wcm.971 +Ho Ting Cheng,Distributed medium access control for wireless mesh networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#ChengJZ06,https://doi.org/10.1002/wcm.445 +Rasheed Hussain,PBF: A New Privacy-Aware Billing Framework for Online Electric Vehicles with Bidirectional Auditability.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#HussainS0NOTS17,https://doi.org/10.1155/2017/5676030 +Milan Knize,Two-mode limited feedback block-fading adaptive transmission with minimum guaranteed rate in MIMO channel.,2012,12,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm12.html#KnizeS12,https://doi.org/10.1002/wcm.968 +Sang V. Tran,Link adaptation for wireless systems.,2014,14,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm14.html#TranE14,https://doi.org/10.1002/wcm.2292 +Zilong Jin,EESS: An Energy-Efficient Spectrum Sensing Method by Optimizing Spectrum Sensing Node in Cognitive Radio Sensor Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#JinQLZ18,https://doi.org/10.1155/2018/9469106 +Yi-Bing Lin,Mobility management: from GPRS to UMTS.,2001,1,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm1.html#LinHCC01,https://doi.org/10.1002/wcm.27 +Robert G. Lupu,BCI and FES Based Therapy for Stroke Rehabilitation Using VR Facilities.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LupuIUPM18,https://doi.org/10.1155/2018/4798359 +Guang Fang,Group Recommendation Systems Based on External Social-Trust Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#FangSJW18,https://doi.org/10.1155/2018/6709607 +Mario Gerla,A survey on interactive games over mobile networks.,2013,13,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm13.html#GerlaMPB13,https://doi.org/10.1002/wcm.2197 +Qinghua Chen,Leveraging Mobile Nodes for Preserving Node Privacy in Mobile Crowd Sensing.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ChenZW18,https://doi.org/10.1155/2018/9567302 +Nesreen Alsbou,Analysis of Priority R-ALOHA (PR-ALOHA) protocol.,2015,15,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm15.html#AlsbouPR15,https://doi.org/10.1002/wcm.2373 +Awais Qasim,A Novel Dual Ultrawideband CPW-Fed Printed Antenna for Internet of Things (IoT) Applications.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#QasimCJJTU18,https://doi.org/10.1155/2018/2179571 +James Jobin,Using statistical data for reliable mobile communications.,2002,2,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm2.html#JobinTFG02,https://doi.org/10.1002/wcm.36 +Maciej Klemm,Characterization of small planar antennas for UWB mobile terminals.,2005,5,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm5.html#KlemmT05,https://doi.org/10.1002/wcm.314 +Shan Meng,Robust Drones Formation Control in 5G Wireless Sensor Network Using mmWave.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#MengSWDZY18,https://doi.org/10.1155/2018/5253840 +Yuan Sun 0001,A study of dynamic addressing techniques in mobile ad hoc networks.,2004,4,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm4.html#SunB04,https://doi.org/10.1002/wcm.215 +Annamalai Annamalai,Performance evaluation of generalized selection diversity systems over Nakagami-m fading channels.,2003,3,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm3.html#AnnamalaiT03,https://doi.org/10.1002/wcm.60 +Weikun Hou,Beamforming for inter-relay interference reduction in MIMO-aided two-path successive relaying.,2016,16,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm16.html#HouJF16,https://doi.org/10.1002/wcm.2682 +Meher Krishna Patel,Maximal Ratio Combining Using Channel Estimation in Chaos Based Pilot-Added DS-CDMA System with Antenna Diversity.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#PatelBS17,https://doi.org/10.1155/2017/3607167 +Kumar Viswanath,Interoperability of multicast routing protocols in wireless ad hoc networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#ViswanathO06,https://doi.org/10.1002/wcm.382 +Hui Yu,Unified fixed-point analysis of IEEE 802.11 WLAN under saturated and unsaturated conditions.,2012,12,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm12.html#YuFX12,https://doi.org/10.1002/wcm.998 +Yun Li 0001,Energy-efficient cluster division for multi-cell joint transmission technology.,2016,16,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm16.html#LiJCWD16,https://doi.org/10.1002/wcm.2746 +Cheng-Han Lin,Performance modeling of MPEG-4 video streaming over IEEE 802.11 using distribution coordination function.,2011,11,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm11.html#LinCZS11,https://doi.org/10.1002/wcm.938 +Chai-Hien Gan,Design and implementation of UMTS session management in the user equipment.,2007,7,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm7.html#GanLC07,https://doi.org/10.1002/wcm.406 +Dazhi Chen,Distributed in-network path planning for sensor network navigation in dynamic hazardous environments.,2012,12,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm12.html#ChenMMV12,https://doi.org/10.1002/wcm.1011 +Danfeng Yan,Personalized POI Recommendation Based on Subway Network Features and Users' Historical Behaviors.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#YanZG18,https://doi.org/10.1155/2018/3698198 +Tin Yu Wu,Mixing greedy and predictive approaches to improve geographic routing for VANET.,2012,12,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm12.html#WuWL12,https://doi.org/10.1002/wcm.1033 +Huan Xuan Nguyen,Multi-group linear turbo equalization with intercell interference cancellation for MC-CDMA cellular systems.,2010,10,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm10.html#NguyenCKN10,https://doi.org/10.1002/wcm.825 +Wang Hao,A particle filter and joint likelihood ratio based error source diagnosing method for IEEE 802.11 networks.,2015,15,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm15.html#HaoH15,https://doi.org/10.1002/wcm.2378 +Kuang-Hao Liu,Interference-resistant cooperative wireless networks based on complementary codes.,2011,11,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm11.html#LiuSC11,https://doi.org/10.1002/wcm.849 +Long Zhang 0004,An SAT-Based Method to Multithreaded Program Verification for Mobile Crowdsourcing Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhangQHGL18,https://doi.org/10.1155/2018/3193974 +Shiao-Li Tsao,An energy-efficient transmission mechanism for VoIP over IEEE 802.11 WLAN.,2009,9,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm9.html#TsaoH09,https://doi.org/10.1002/wcm.747 +Bao-Yuan Liu,Joint improvements for capacity and power-efficiency of mobile WiMAX by relaying schemes.,2013,13,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm13.html#LiuCW13,https://doi.org/10.1002/wcm.1104 +Abbas Jamalipour,QoS-aware mobility support architecture for next generation mobile networks.,2005,5,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm5.html#JamalipourMK05,https://doi.org/10.1002/wcm.353 +Elissar Khloussy,Revenue-Maximizing Radio Access Technology Selection with Net Neutrality Compliance in Heterogeneous Wireless Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#KhloussyJ18,https://doi.org/10.1155/2018/9706813 +Shi Lin,Biological Evaluation of the Effect of Galvanic Coupling Intrabody Communication on Human Skin Fibroblast Cells.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#LinGCVVDCP17,https://doi.org/10.1155/2017/8674035 +Zille Huma Kamal,Lagrangean relaxation for service location in large-scale networks with QoS constraints.,2009,9,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm9.html#KamalAG09,https://doi.org/10.1002/wcm.756 +Yingsheng Ye,Color Distribution Pattern Metric for Person Reidentification.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#YeZN17,https://doi.org/10.1155/2017/4089505 +Jinsong Zhang,Performance modeling and analysis of emergency message propagation in vehicular ad hoc networks.,2014,14,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm14.html#ZhangMW14,https://doi.org/10.1002/wcm.2188 +Xueyuan Jiang,Cross-layer design of partial spectrum sharing for two licensed networks using cognitive radios.,2015,15,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm15.html#JiangWZE15,https://doi.org/10.1002/wcm.2345 +Xiang Gui,Chip-interleaving direct sequence spread spectrum system over Rician multipath fading channels.,2014,14,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm14.html#Gui14,https://doi.org/10.1002/wcm.1230 +Enrique Rodríguez-Colina,Dynamic OFDM Transmission for a Cognitive Radio Device Based on a Neural Network and Multiresolution Analysis.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#Rodriguez-Colina18,https://doi.org/10.1155/2018/4392710 +Farshad Javadi,A fast and reliable routing technique for wireless mesh networks.,2012,12,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm12.html#JavadiMJ12,https://doi.org/10.1002/wcm.1013 +Mahima Mehta,A self-organized resource allocation scheme for heterogeneous macro-femto networks.,2016,16,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm16.html#MehtaRKIE16,https://doi.org/10.1002/wcm.2518 +Jun Wang 0005,Soft-output MMSE V-BLAST receiver with MMSE channel estimation under correlated Rician fading MIMO channels.,2012,12,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm12.html#WangCL12,https://doi.org/10.1002/wcm.1067 +Hanxiao Yu,Achievable Rates of Gaussian Interference Channel with Multi-Layer Rate-Splitting and Successive Simple Decoding.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#YuF18,https://doi.org/10.1155/2018/8547620 +Mohamed-Slim Alouini,Performance of generalized selection combining over Weibull fading channels.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#AlouiniS06,https://doi.org/10.1002/wcm.294 +Ben-Jye Chang,Mobile IPv6-based efficient vertical handoff approach for heterogeneous wireless networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#ChangL06a,https://doi.org/10.1002/wcm.418 +Imran A. Tasadduq,Performance of optimum and suboptimum OFDM-CPM receivers over multipath fading channels.,2005,5,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm5.html#TasadduqR05,https://doi.org/10.1002/wcm.245 +Joseph Shmuel Picard,Localization of networks using various ranging bias models.,2008,8,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm8.html#PicardW08,https://doi.org/10.1002/wcm.568 +Zhian Deng,Robust Heading Estimation for Indoor Pedestrian Navigation Using Unconstrained Smartphones.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#DengLQHS18,https://doi.org/10.1155/2018/5607036 +Pang-Wei Hsu,Simulations and experiments for optimal deployment of an RFID-based location-aware system.,2011,11,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm11.html#HsuLCCTHCCYCC11,https://doi.org/10.1002/wcm.848 +S. Y. Wang,On the characteristics of routing paths and the performance of routing protocols in vehicle-formed mobile ad hoc networks on highways.,2010,10,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm10.html#WangCL10,https://doi.org/10.1002/wcm.761 +Lihua Li 0001,Adaptive frame structure in B3G-TDD uplink.,2007,7,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm7.html#LihuaMXP07,https://doi.org/10.1002/wcm.490 +Mohsen Guizani,Editorial.,2003,3,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm3.html#GuizaniAHZ03,https://doi.org/10.1002/wcm.121 +Daniele Tarchi,Analysis and comparison of scheduling techniques for a BWA OFDMA mobile system.,2010,10,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm10.html#TarchiFB10,https://doi.org/10.1002/wcm.798 +Zhisheng Gao,Parameter Estimation for the Field Strength of Radio Environment Maps.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#GaoLX17,https://doi.org/10.1155/2017/2475439 +Nadia Haddadou,Modeling and performance evaluation of Advanced Diffusion with Classified Data in vehicular sensor networks.,2011,11,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm11.html#HaddadouRG11,https://doi.org/10.1002/wcm.1220 +Chang Wen Chen,Special issue: Multimedia over mobile IP.,2002,2,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm2.html#ChenL02,https://doi.org/10.1002/wcm.94 +Fei Sun,A QoE centric distributed caching approach for vehicular video streaming in cellular networks.,2016,16,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm16.html#SunLHZCRG16,https://doi.org/10.1002/wcm.2636 +Mohamed Musbah,Support vector machine-based equalisation for direct-sequence ultra wideband systems.,2013,13,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm13.html#MusbahZ13,https://doi.org/10.1002/wcm.1123 +Aamir Shahzad,Centralized Connectivity for Multiwireless Edge Computing and Cellular Platform: A Smart Vehicle Parking System.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ShahzadCXKL18,https://doi.org/10.1155/2018/7243875 +Onur Arpacioglu,On the scalability and capacity of planar wireless networks with omnidirectional antennas.,2004,4,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm4.html#ArpaciogluH04,https://doi.org/10.1002/wcm.216 +Xin Gao,A two-hop equalize-and-forward relay scheme in OFDM-based wireless networks over multipath channels.,2016,16,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm16.html#GaoWL16,https://doi.org/10.1002/wcm.2569 +Dharma P. Agrawal,Recent Advances in Mobile Cloud Computing.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#AgrawalGYP18,https://doi.org/10.1155/2018/5895817 +Christof Huebner,Long-range wireless sensor networks with transmit-only nodes and software-defined receivers.,2013,13,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm13.html#HuebnerCHWM13,https://doi.org/10.1002/wcm.1198 +Javier Prieto,IoT Approaches for Distributed Computing.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#PrietoABMP18,https://doi.org/10.1155/2018/9741053 +Han-Chieh Chao,Special issue: mobile IP.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#ChaoUS06,https://doi.org/10.1002/wcm.409 +Fabiano de S. Chaves,Opportunistic distributed power control with adaptive QoS and fairness for wireless networks.,2010,10,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm10.html#ChavesCNS10,https://doi.org/10.1002/wcm.753 +Fang Shi,Probabilistic Caching Placement in the Presence of Multiple Eavesdroppers.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ShiFLNL18,https://doi.org/10.1155/2018/2104162 +Ruay Shiung Chang,Mobility assessment on-demand (MAOD) routing protocol for mobile ad hoc networks.,2004,4,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm4.html#ChangC04,https://doi.org/10.1002/wcm.159 +Fadi M. Al-Turjman,Optimized relay placement for wireless sensor networks federation in environmental applications.,2011,11,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm11.html#Al-TurjmanHAI11,https://doi.org/10.1002/wcm.1211 +Yongqiang Li,Reliable Ant Colony Routing Algorithm for Dual-Channel Mobile Ad Hoc Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LiWWFC18,https://doi.org/10.1155/2018/4746020 +Farrukh Rashid,Arrayed MC-CDMA reception in space-time diffused multipath vector channels.,2008,8,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm8.html#RashidM08,https://doi.org/10.1002/wcm.570 +Ines Goicoechea-Telleria,Attack Potential Evaluation in Desktop and Smartphone Fingerprint Sensors: Can They Be Attacked by Anyone?,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#Goicoechea-Telleria18,https://doi.org/10.1155/2018/5609195 +Azzedine Boukerche,A performance evaluation of distributed dynamic channel allocation protocols for mobile networks.,2007,7,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm7.html#BoukercheEH07,https://doi.org/10.1002/wcm.318 +Guojun Wang,A protocol for partitionable group membership service in mobile Internet.,2005,5,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm5.html#WangCC05a,https://doi.org/10.1002/wcm.341 +Dongkyun Kim,F-PCM: a fragmentation-based power control MAC protocol for IEEE 802.11 mobile ad hoc networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#KimT06,https://doi.org/10.1002/wcm.420 +Chung-Ming Huang,A split reliable transport protocol over the vehicular ad hoc network communication environment.,2015,15,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm15.html#HuangLL15,https://doi.org/10.1002/wcm.2486 +Ji Wu,Compressive sensing-based signal compression and recovery in UWB wireless communication system.,2014,14,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm14.html#WuWLWZ14,https://doi.org/10.1002/wcm.2228 +Anthony Busson,Impact of Resource Blocks Allocation Strategies on Downlink Interference and SIR Distributions in LTE Networks: A Stochastic Geometry Approach.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#BussonC18,https://doi.org/10.1155/2018/9163783 +Ming Gong,Adaptive BU association and resource allocation in integrated PON-WiMAX networks.,2012,12,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm12.html#GongLHH12,https://doi.org/10.1002/wcm.1058 +Michele Luvisotto,On the Use of LoRaWAN for Indoor Industrial IoT Applications.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LuvisottoTVV18,https://doi.org/10.1155/2018/3982646 +JeongGil Ko,DynaChannAl: dynamic channel allocation with minimal end-to-end delay for two-tier wireless sensor networks.,2013,13,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm13.html#KoM13,https://doi.org/10.1002/wcm.1197 +Jie Wang 0003,Robust tracking algorithm for wireless sensor networks based on improved particle filter.,2012,12,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm12.html#WangGWCJ12,https://doi.org/10.1002/wcm.1024 +Hyon-Young Choi,Smart Buffering for seamless handover in Proxy Mobile IPv6.,2011,11,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm11.html#ChoiKLMH11,https://doi.org/10.1002/wcm.843 +Sajjad Ali,A Model of Socially Connected Web Objects for IoT Applications.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#AliKJLC18,https://doi.org/10.1155/2018/6309509 +Juan Chen,Designing robust routing protocols to protect base stations in wireless sensor networks.,2014,14,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm14.html#ChenZDFY14,https://doi.org/10.1002/wcm.2300 +Lanbo Liu,Prospects and problems of wireless communication for underwater sensor networks.,2008,8,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm8.html#LanboSJ08,https://doi.org/10.1002/wcm.654 +Md Sadek Ali,Channel Estimation and Peak-to-Average Power Ratio Analysis of Narrowband Internet of Things Uplink Systems.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#AliLJFL18,https://doi.org/10.1155/2018/2570165 +Hisham Alasady,Symbol error rate calculation and data pre-distortion for 16-QAM transmission over nonlinear memoryless satellite channels.,2008,8,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm8.html#AlasadyIR08,https://doi.org/10.1002/wcm.450 +Sung Sik Nam,Diversity combining with up-link power control.,2008,8,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm8.html#NamAQ08,https://doi.org/10.1002/wcm.542 +Saliha Büyükçorak,User behavior modeling of voice communications: an empirical study.,2016,16,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm16.html#BuyukcorakKT16,https://doi.org/10.1002/wcm.2491 +Xiaojiang Du,Secure cell relay routing protocol for sensor networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#DuXCW06,https://doi.org/10.1002/wcm.402 +Héctor A. Sánchez-Hevia,Indoor Self-Localization and Orientation Estimation of Smartphones Using Acoustic Signals.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#Sanchez-HeviaAG17,https://doi.org/10.1155/2017/3534829 +Yibing Li,A universal frequency reuse scheme in LTE-A heterogeneous networks.,2016,16,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm16.html#LiNYH16,https://doi.org/10.1002/wcm.2731 +Ali Ghrayeb,On the performance of turbo equalization for precoded ISI channels.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#GhrayebE06,https://doi.org/10.1002/wcm.271 +Hamed Khanmirza,Game of energy consumption balancing in heterogeneous sensor networks.,2016,16,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm16.html#KhanmirzaY16,https://doi.org/10.1002/wcm.2606 +Zhiwei Wang,Privacy-Preserving Meter Report Protocol of Isolated Smart Grid Devices.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#WangX17,https://doi.org/10.1155/2017/2539673 +Guoliang Xing,Towards unified radio power management for wireless sensor networks.,2009,9,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm9.html#XingSHKCL09,https://doi.org/10.1002/wcm.622 +Zahraa Sabra,Using group anonymity to hide the identity of VoIP mobile users communicating over hybrid networks while preserving quality of service.,2016,16,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm16.html#SabraA16,https://doi.org/10.1002/wcm.2725 +Chin-Chen Chang 0001,A new solution for assigning cryptographic keys to control access in mobile agent environments.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#ChangL06,https://doi.org/10.1002/wcm.276 +Francisco J. Martinez,A survey and comparative study of simulators for vehicular ad hoc networks (VANETs).,2011,11,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm11.html#MartinezTCCM11,https://doi.org/10.1002/wcm.859 +Zhiyong Feng,Cognitive information delivery in geo-location database based cognitive radio networks.,2016,16,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm16.html#FengWZLWQ16,https://doi.org/10.1002/wcm.2650 +Yanjing Sun,Sum Rate Maximization of D2D Communications in Cognitive Radio Network Using Cheating Strategy.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#SunCW018,https://doi.org/10.1155/2018/6065920 +Baranidharan Balakrishnan,FLECH: Fuzzy Logic Based Energy Efficient Clustering Hierarchy for Nonuniform Wireless Sensor Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#BalakrishnanB17,https://doi.org/10.1155/2017/1214720 +Jelena V. Misic,Performance of simple cognitive personal area networks with finite buffers and adaptive superframe duration.,2011,11,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm11.html#MisicMO11,https://doi.org/10.1002/wcm.1232 +Ioannis G. Askoxylakis,Securing multi-operator-based QoS-aware mesh networks: requirements and design options.,2010,10,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm10.html#AskoxylakisBBDSSV10,https://doi.org/10.1002/wcm.728 +Hsiao-Hwa Chen,Ultra broadband wireless communications.,2003,3,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm3.html#ChenLB03,https://doi.org/10.1002/wcm.148 +Jyh-Horng Wen,Convergence analysis of distributed fixed-step power control algorithm for cellular mobile systems.,2008,8,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm8.html#WenCW08,https://doi.org/10.1002/wcm.514 +Hsi-Feng Lu,Design of middleware for tele-homecare systems.,2009,9,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm9.html#LuC09,https://doi.org/10.1002/wcm.739 +Jung Kee Song,A simulation study of IP-based vertical handoff in wireless convergent networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#SongW06,https://doi.org/10.1002/wcm.415 +Xuedong Liang,Cooperative communications with relay selection for wireless networks: design issues and applications.,2013,13,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm13.html#LiangCBL13,https://doi.org/10.1002/wcm.1138 +Lei Li,A study on one-dimensional k-coverage problem in wireless sensor networks.,2013,13,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm13.html#LiZZ13,https://doi.org/10.1002/wcm.1087 +Xialin Jiang,Combined Hybrid DFE and CCK Remodulator for Medium-Range Single-Carrier Underwater Acoustic Communications.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#JiangSC17,https://doi.org/10.1155/2017/4096061 +Yong-Sung Kim,A client-based vertical handoff approach for seamless mobility across heterogeneous wireless networks.,2010,10,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm10.html#KimKS10,https://doi.org/10.1002/wcm.673 +Shuai Han,An indoor radio propagation model considering angles for WLAN infrastructures.,2015,15,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm15.html#HanGML15,https://doi.org/10.1002/wcm.2596 +Saeed Abu-Nimeh,Circumventing security toolbars and phishing filters via rogue wireless access points.,2010,10,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm10.html#Abu-NimehN10,https://doi.org/10.1002/wcm.829 +Yahya Al-Harthi,Blind adaptive modulation systems for wireless channels with binary feedback.,2007,7,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm7.html#Al-HarthiTA07,https://doi.org/10.1002/wcm.322 +Manal El Tanab,Distributed opportunistic scheduling for MIMO underlay cognitive radio networks.,2016,16,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm16.html#TanabHF16,https://doi.org/10.1002/wcm.2677 +Mohammad Deylami,A novel method for mitigating the effects of dynamic coexistence on the operation of IEEE 802.15.4-based mobile WSNs.,2016,16,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm16.html#DeylamiJ16,https://doi.org/10.1002/wcm.2522 +Haohong Wang,Recent advances in video communications for 4G wireless systems.,2007,7,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm7.html#WangKL07,https://doi.org/10.1002/wcm.468 +Jyh-Cheng Chen,Mobile virtual private networks with dynamic MIP home agent assignment.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#ChenLL06,https://doi.org/10.1002/wcm.413 +Achim Engelhart,A survey of multiuser/multisubchannel detection schemes based on recurrent neural networks.,2002,2,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm2.html#EngelhartTLJIP02,https://doi.org/10.1002/wcm.57 +Wei Yang,Parameters optimization for cooperative sensing in multi-channel cognitive radio networks.,2014,14,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm14.html#YangGYD14,https://doi.org/10.1002/wcm.2253 +Lisheng Fan,Adaptive joint maximum-likelihood detection and minimum-mean-square error with successive interference canceler over spatially correlated multiple-input multiple-output channels.,2013,13,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm13.html#FanZJFSW13,https://doi.org/10.1002/wcm.1172 +Jai-Eun Kim,Interactive Smart Fashion Using User-Oriented Visible Light Communication: The Case of Modular Strapped Cuffs and Zipper Slider Types.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#KimKOK17,https://doi.org/10.1155/2017/5203053 +Rong Chai,An Optimal Joint User Association and Power Allocation Algorithm for Secrecy Information Transmission in Heterogeneous Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#ChaiCCG17,https://doi.org/10.1155/2017/5120538 +Peng Xiang,Enhance RSS-Based Indoor Localization Accuracy by Leveraging Environmental Physical Features.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#XiangJZ18,https://doi.org/10.1155/2018/8956757 +WeiTao Song,Privacy Protection of IoT Based on Fully Homomorphic Encryption.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#SongHZ18,https://doi.org/10.1155/2018/5787930 +Daniele Tarchi,A joint communication and computing resource management scheme for pervasive grid networks.,2013,13,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm13.html#TarchiTF13,https://doi.org/10.1002/wcm.1190 +Jun Xiao,Effective monitoring and control - centralized schemes in third generation router based WiMAX mesh network.,2011,11,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm11.html#XiaoXVP11,https://doi.org/10.1002/wcm.874 +Yik-Chung Wu,Symbol timing estimation in MIMO correlated flat-fading channels.,2004,4,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm4.html#WuS04,https://doi.org/10.1002/wcm.251 +Yang Liu 0024,Optimized layered multicast with superposition coding in cellular systems.,2012,12,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm12.html#LiuWPZ12,https://doi.org/10.1002/wcm.1043 +Mohammad Mazaheri,Low end-to-end delay fuzzy networking protocol for mobile wireless sensing.,2016,16,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm16.html#MazaheriKSR16,https://doi.org/10.1002/wcm.2693 +Yi-Bing Lin,Automatic event-triggered call-forwarding mechanism for mobile phones.,2013,13,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm13.html#LinLCW13,https://doi.org/10.1002/wcm.1165 +Chen Wang,Identity-Based Fast Authentication Scheme for Smart Mobile Devices in Body Area Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#WangZJLW18,https://doi.org/10.1155/2018/4028196 +Rachad Atat,Cooperative ad hoc networks for energy and delay efficient content distribution with fast channel variations.,2012,12,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm12.html#AtatYAA12,https://doi.org/10.1002/wcm.2327 +Heping Wang,An asynchronous low-power medium access control protocol for wireless sensor networks.,2013,13,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm13.html#WangZNK13,https://doi.org/10.1002/wcm.1124 +Jahanzeb Faizan,Introducing reliability and load balancing in mobile IPv6-based networks.,2008,8,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm8.html#FaizanEK08,https://doi.org/10.1002/wcm.465 +Olabisi Emmanuel Falowo,Heuristic RAT selection policy to minimize call blocking probability in next generation wireless networks.,2010,10,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm10.html#FalowoC10,https://doi.org/10.1002/wcm.754 +Jun Peng 0001,A joint subcarrier selection and power allocation scheme using variational inequality in OFDM-based cognitive relay networks.,2016,16,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm16.html#PengLZLZL16,https://doi.org/10.1002/wcm.2581 +Julian Romero,Dynamic Price Competition between a Macrocell Operator and a Small Cell Operator: A Differential Game Model.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#RomeroSG18,https://doi.org/10.1155/2018/1012041 +Yingchang Xiang,Distributed virtual backbone construction in sensor networks with asymmetric links.,2011,11,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm11.html#XiangXCPR11,https://doi.org/10.1002/wcm.810 +Zhinian Luo,Channel estimation joint DOAs and time delay correlation in TD-SCDMA mobile radio systems.,2009,9,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm9.html#LuoZX09,https://doi.org/10.1002/wcm.720 +Yong Niu,A two stage approach for channel transmission rate aware scheduling in directional mmWave WPANs.,2016,16,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm16.html#NiuLJSW16,https://doi.org/10.1002/wcm.2521 +Rolando Menchaca-Méndez,Opportunistic Mobile Sensing in the Fog.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#Menchaca-Mendez18,https://doi.org/10.1155/2018/2796282 +Arvind Nath Rapaka,Two energy efficient algorithms for tracking objects in a sensor network.,2007,7,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm7.html#RapakaM07,https://doi.org/10.1002/wcm.423 +Giuseppe Araniti,Effective service delivery and group management in integrated terrestrial-HAP systems for multicast communications.,2010,10,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm10.html#AranitiIM10,https://doi.org/10.1002/wcm.676 +David A. Eckhardt,An Internet-style approach to wireless link errors.,2002,2,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm2.html#EckhardtS02,https://doi.org/10.1002/wcm.31 +Jorge Calabuig,Comparison of multicast/broadcast services in Long Term Evolution Advanced and IEEE 802.16m networks.,2014,14,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm14.html#CalabuigMMO14,https://doi.org/10.1002/wcm.2229 +Marcin Lewandowski,Road Traffic Monitoring System Based on Mobile Devices and Bluetooth Low Energy Beacons.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LewandowskiPBS18,https://doi.org/10.1155/2018/3251598 +Adriana Dapena,Blind channel estimation based on maximizing the eigenvalue spread of cumulant matrices in (2 and** 1) Alamouti's coding schemes.,2012,12,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm12.html#DapenaPZ12,https://doi.org/10.1002/wcm.992 +Branimir Ivsic,An Insight into Creeping Electromagnetic Waves around the Human Body.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#IvsicBSB17,https://doi.org/10.1155/2017/2510196 +Hai Zhu,Construction of Quasi-Cyclic LDPC Codes Based on Fundamental Theorem of Arithmetic.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhuPXZ18,https://doi.org/10.1155/2018/5264724 +Anjali Raja,Mobility handling in MAC for wireless ad hoc networks.,2009,9,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm9.html#RajaS09,https://doi.org/10.1002/wcm.613 +Wenwen Wang,Joint data detection and channel estimation for coded and uncoded continuous phase modulation signals.,2016,16,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm16.html#WangA16,https://doi.org/10.1002/wcm.2502 +Gábor Fodor,Performance Comparison of Practical Resource Allocation Schemes for Device-to-Device Communications.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#Fodor18,https://doi.org/10.1155/2018/3623075 +Liqiang Zhao,Hub-polling-based IEEE 802.11 PCF with integrated QoS differentiation.,2009,9,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm9.html#ZhaoZZ09,https://doi.org/10.1002/wcm.687 +Kerri Stone,Efficient duty cycling through prediction and sampling in wireless sensor networks.,2007,7,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm7.html#StoneC07,https://doi.org/10.1002/wcm.483 +Marco Leo,Performance evaluation of an optimized intersegment handover procedure for hybrid constellation satellite systems.,2003,3,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm3.html#LeoL03,https://doi.org/10.1002/wcm.61 +Wael G. Alheadary,Performance analysis of subcarrier intensity modulation using rectangular QAM over Malaga turbulence channels with integer and non-integer 6*.,2016,16,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm16.html#AlheadaryPA16,https://doi.org/10.1002/wcm.2721 +Yuichi Igarashi,Priority-Based Dynamic Multichannel Transmission Scheme for Industrial Wireless Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#IgarashiMKW17,https://doi.org/10.1155/2017/9124858 +Wen-Hsin Yang,A request control scheme for data recovery in DVB-IPDC systems with spatial and temporal packet loss.,2013,13,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm13.html#YangWTL13,https://doi.org/10.1002/wcm.1153 +Sofiène Affes,A blind coherent spatiotemporal processor of orthogonal Walsh-modulated CDMA signals.,2002,2,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm2.html#AffesM02,https://doi.org/10.1002/wcm.76 +Qinghe Du,Security Enhancement for Multicast over Internet of Things by Dynamically Constructed Fountain Codes.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#DuXLS18,https://doi.org/10.1155/2018/8404219 +Pau Arce,An altruistic cross-layer recovering mechanism for ad hoc wireless networks.,2015,15,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm15.html#ArceG15,https://doi.org/10.1002/wcm.2459 +Fen Hou,An efficient scheduling scheme with diverse traffic demands in IEEE 802.16 networks.,2010,10,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm10.html#HouHS10,https://doi.org/10.1002/wcm.807 +Yuanlong Wang,Using Sentence-Level Neural Network Models for Multiple-Choice Reading Comprehension Tasks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#WangLZTC18,https://doi.org/10.1155/2018/2678976 +Liang Yang,Capacity of multiuser diversity systems with adaptive transmission and different MIMO schemes.,2008,8,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm8.html#Yang08,https://doi.org/10.1002/wcm.553 +Haipeng Li,Routing Protocol in VANETs Equipped with Directional Antennas: Topology-Based Neighbor Discovery and Routing Analysis.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LiX18,https://doi.org/10.1155/2018/7635143 +Gennaro Boggia,Scheduling channel time allocations in 802.15.3 WPANs for supporting multimedia applications.,2010,10,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm10.html#BoggiaCG10,https://doi.org/10.1002/wcm.730 +Tigang Jiang,Channel allocation and reallocation for cognitive radio networks.,2013,13,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm13.html#JiangWL13,https://doi.org/10.1002/wcm.1162 +Seyeong Choi,On the feedback error compensation for adaptive modulation and coding scheme.,2013,13,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm13.html#ChoiYA13,https://doi.org/10.1002/wcm.1213 +Mona El-Kadi Rizvi,MUSAQ: a multimedia session-aware QoS provisioning scheme for cellular networks.,2008,8,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm8.html#RizviO08,https://doi.org/10.1002/wcm.581 +Ahmet F. Coskun,Performance analysis of hybrid transmit antenna selection/maximal-ratio transmission in Nakagami-m fading channels.,2013,13,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm13.html#CoskunK13,https://doi.org/10.1002/wcm.1177 +Di Wu 0004,Resource allocations in relay-assisted cellular networks.,2015,15,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm15.html#WuZZA15,https://doi.org/10.1002/wcm.2366 +Hesham El-Sayed,A Cost Effective Route Guidance Method for Urban Areas Using Histograms.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#El-SayedTH17,https://doi.org/10.1155/2017/4507352 +Xingshuo An,Sample Selected Extreme Learning Machine Based Intrusion Detection in Fog Computing and MEC.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#AnZLLY18,https://doi.org/10.1155/2018/7472095 +Ricardo Marco Alaez,Open-Source Based Testbed for Multioperator 4G/5G Infrastructure Sharing in Virtual Environments.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#AlaezC0BBBA17,https://doi.org/10.1155/2017/1984314 +Kemal Akkaya,The impact of data aggregation on the performance of wireless sensor networks.,2008,8,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm8.html#AkkayaDA08,https://doi.org/10.1002/wcm.454 +Matthias Witt,Robust and low-communication geographic routing for wireless ad hoc networks.,2010,10,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm10.html#WittT10,https://doi.org/10.1002/wcm.778 +Izzet Levent Karaevli,Analysis of cooperative MIMO transmission system with transmit antenna selection and selection combining.,2012,12,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm12.html#KaraevliKA12,https://doi.org/10.1002/wcm.1054 +Javed A. Aslam,Three power-aware routing algorithms for sensor networks.,2003,3,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm3.html#AslamLR03,https://doi.org/10.1002/wcm.111 +Guolong Lin,On link layer denial of service in data wireless LANs.,2005,5,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm5.html#LinN05,https://doi.org/10.1002/wcm.221 +Mohamed Aissani,Link failure resilience in the dynamic source routing protocol.,2009,9,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm9.html#AissaniMDS09,https://doi.org/10.1002/wcm.598 +Meejoung Kim,Multi-hop communications in directional CSMA/CA over mmWave WPANs.,2016,16,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm16.html#Kim16,https://doi.org/10.1002/wcm.2566 +Jihun Moon,A Reinforcement Learning Approach to Access Management in Wireless Cellular Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#MoonL17,https://doi.org/10.1155/2017/6474768 +Thai Hoa Vo,Adaptive polynomial predistorters for M-QAM transmission using non-linear power amplifiers.,2007,7,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm7.html#VoLB07,https://doi.org/10.1002/wcm.323 +Wenlin Han,IP2DM: integrated privacy-preserving data management architecture for smart grid V2G networks.,2016,16,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm16.html#HanX16,https://doi.org/10.1002/wcm.2740 +Beongku An,MHMR: mobility-based hybrid multicast routing protocol in mobile ad hoc wireless networks.,2003,3,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm3.html#AnP03,https://doi.org/10.1002/wcm.115 +Ho Van Khuong,A bandwidth-efficient cooperative relaying scheme with hard interference cancellation and iterative decoding.,2010,10,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm10.html#KhuongL10,https://doi.org/10.1002/wcm.783 +Jun Wang,Research on Artificial Spider Web Model for Farmland Wireless Sensor Network.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#WangGZHZX18,https://doi.org/10.1155/2018/6393049 +Rakesh Shrestha,Challenges of Future VANET and Cloud-Based Approaches.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ShresthaBN18,https://doi.org/10.1155/2018/5603518 +Xiang Yang,Fair coding for inter-session network coding in wireless mesh networks.,2016,16,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm16.html#YangWLWZ16,https://doi.org/10.1002/wcm.2659 +Yu-Pin Hsu,MCR: MAC-assisted congestion-controlled routing for wireless multihop networks.,2012,12,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm12.html#HsuF12,https://doi.org/10.1002/wcm.1008 +Wenting Li,Cryptanalysis and Security Enhancement of Three Authentication Schemes in Wireless Sensor Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LiLZWW18,https://doi.org/10.1155/2018/8539674 +Wassim El-Hajj,Optimal frequency assignment for IEEE 802.11 wireless networks.,2009,9,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm9.html#El-HajjA09,https://doi.org/10.1002/wcm.609 +Tairan Wang,Adaptive antenna selection at mobile stations for SDMA in WiMAX networks.,2010,10,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm10.html#WangTMOZ10,https://doi.org/10.1002/wcm.911 +Talgat R. Gazizov,Stable Delay of Microstrip Line with Side Grounded Conductors.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#GazizovSK17,https://doi.org/10.1155/2017/1965739 +Bouziane Brik,ECDGP: extended cluster-based data gathering protocol for vehicular networks.,2016,16,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm16.html#BrikLLCC16,https://doi.org/10.1002/wcm.2591 +Hung Tran,Cognitive cooperative networks with decode-and-forward relay selection under interference constraints of multiple primary users.,2015,15,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm15.html#TranZP15,https://doi.org/10.1002/wcm.2419 +Sven Nordebo,A semi-definite programming approach to spatial decorrelation of independently polarized signals.,2007,7,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm7.html#NordeboM07,https://doi.org/10.1002/wcm.320 +Liqiang Zhao,Incomplete cooperation-based service differentiation in WLANs.,2012,12,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm12.html#ZhaoCDWZ12,https://doi.org/10.1002/wcm.975 +Feng Chen 0012,Simulation study of IEEE 802.15.4 LR-WPAN for industrial applications.,2010,10,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm10.html#ChenWGD10,https://doi.org/10.1002/wcm.736 +Sasan Khoshroo,A joint resource allocation-channel coding design based on distributed source coding.,2015,15,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm15.html#KhoshrooWXK15,https://doi.org/10.1002/wcm.2349 +Fan-Hsun Tseng,Network planning for Type 1 and Type 1a relay nodes in LTE-Advanced networks.,2016,16,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm16.html#TsengCC16,https://doi.org/10.1002/wcm.2611 +Ning Xie 0007,Generalized selection combining with double threshold and performance analysis.,2014,14,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm14.html#XieLWWL14,https://doi.org/10.1002/wcm.1228 +Guowang Miao,Cross-layer optimization for energy-efficient wireless communications: a survey.,2009,9,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm9.html#MiaoHLS09,https://doi.org/10.1002/wcm.698 +Adam Mohamed Ahmed Abdo,MU-MIMO Downlink Capacity Analysis and Optimum Code Weight Vector Design for 5G Big Data Massive Antenna Millimeter Wave Communication.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#AbdoZZZZZM18,https://doi.org/10.1155/2018/7138232 +Chao-Hsien Lee,Multihomed SIP-based network mobility for the scheduled public transit service.,2014,14,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm14.html#LeeHT14,https://doi.org/10.1002/wcm.1234 +Wei Zhao 0021,Physical Layer Security Performance Based on 3D Heterogeneous Network.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhaoWLBZ18,https://doi.org/10.1155/2018/2753614 +Seung-Seok Kang,A mobile peer-to-peer approach for multimedia content sharing using 3G/WLAN dual mode channels.,2005,5,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm5.html#KangM05,https://doi.org/10.1002/wcm.332 +Eduard Garcia Villegas,Frequency assignments in IEEE 802.11 WLANs with efficient spectrum sharing.,2009,9,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm9.html#VillegasFP09,https://doi.org/10.1002/wcm.670 +Yan Zhang 0002,An approximation and its applications in wireless networks performance analysis.,2008,8,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm8.html#ZhangF08,https://doi.org/10.1002/wcm.451 +Fernando Cruz-Roldán,Simple Algorithms for Estimating the Symbol Timing Offset in DCT-Based Multicarrier Systems.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#Cruz-RoldanPRB18,https://doi.org/10.1155/2018/3649513 +Wen-Zhan Song,Lifetime-maximized cluster association in two-tiered wireless sensor networks.,2009,9,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm9.html#SongWML09,https://doi.org/10.1002/wcm.544 +Runfa Liao,The Rayleigh Fading Channel Prediction via Deep Learning.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LiaoWWSPD18,https://doi.org/10.1155/2018/6497340 +Yi Wu 0004,An end-to-end framework of transport layer mobility management.,2011,11,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm11.html#WuLZ11,https://doi.org/10.1002/wcm.882 +Amalia Luque,Evaluation of the Processing Times in Anuran Sound Classification.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#LuqueGCP017,https://doi.org/10.1155/2017/8079846 +Klervie Toczé,A Taxonomy for Management and Optimization of Multiple Resources in Edge Computing.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ToczeN18,https://doi.org/10.1155/2018/7476201 +Zhiguo Shi,Improved auxiliary particle filter-based synchronization of chaotic Colpitts circuit and its application to secure communication.,2015,15,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm15.html#ShiBZLS15,https://doi.org/10.1002/wcm.2446 +Xuemin Shen,Wireless network security.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#ShenLSPLC06,https://doi.org/10.1002/wcm.393 +Xueyuan Jiang,Quality of service-aware coordinated dynamic spectrum access: prioritized Markov model and call admission control.,2013,13,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm13.html#JiangZWKE13,https://doi.org/10.1002/wcm.1118 +Xiaoyu Hu,On the comparisons of system performance and capacity of asynchronous STBC MC-CDMA multirate access schemes.,2008,8,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm8.html#HuC08,https://doi.org/10.1002/wcm.574 +Qi Gao,LIP-PA: A Logistics Information Privacy Protection Scheme with Position and Attribute-Based Access Control on Mobile Devices.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#GaoZMYGM18,https://doi.org/10.1155/2018/9436120 +Li Liu,The Current Status and a New Approach for Chinese Doctors to Obtain Medical Knowledge Using Social Media: A Study of WeChat.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LiuWZWGL18,https://doi.org/10.1155/2018/2329876 +Himan Zarza,RIALS: RSU/INS-aided localization system for GPS-challenged road segments.,2016,16,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm16.html#ZarzaYB16,https://doi.org/10.1002/wcm.2604 +Chi Xu,TOA estimation of UWB backscattering RFID tag with dual pulse modulation for clutter suppression.,2012,12,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm12.html#XuL12,https://doi.org/10.1002/wcm.1005 +Romano Fantacci,Performance evaluation of the MAC protocol in IEEE 802.16 systems with data and VoiP traffic scheduling.,2009,9,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm9.html#FantacciTB09,https://doi.org/10.1002/wcm.649 +Lei Wang 0009,Game-Theoretic Social-Aware Resource Allocation for Device-to-Device Communications Underlaying Cellular Network.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#0009LZG18,https://doi.org/10.1155/2018/5084842 +Tao Zhou 0004,Analysis of Nonstationary Characteristics for High-Speed Railway Scenarios.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhouTL18,https://doi.org/10.1155/2018/1729121 +Alekha Kumar Mishra,A Replica Detection Scheme Based on the Deviation in Distance Traveled Sliding Window for Wireless Sensor Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#MishraTKT17,https://doi.org/10.1155/2017/8457616 +Christian Lochert,A survey on congestion control for mobile ad hoc networks.,2007,7,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm7.html#LochertSM07,https://doi.org/10.1002/wcm.524 +Chae Y. Lee,Dynamic resource allocation for CDMA-TDD indoor wireless systems.,2003,3,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm3.html#LeeS03,https://doi.org/10.1002/wcm.180 +Novella Bartolini,Improving call admission control procedures by using hand-off rate information.,2001,1,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm1.html#BartoliniC01,https://doi.org/10.1002/wcm.17 +Zhiquan Bai,Fair Resource Allocation with QoS Guarantee in Secure Multiuser TDMA Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#BaiWMMK18,https://doi.org/10.1155/2018/1489659 +Chaima Zidi,Routing design avoiding energy holes in underwater acoustic sensor networks.,2016,16,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm16.html#ZidiBB16,https://doi.org/10.1002/wcm.2666 +Jaecheol Kim,A network selection scheme for multicast applications in wireless network convergence.,2012,12,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm12.html#KimLLKC12,https://doi.org/10.1002/wcm.1032 +Mohammad Al-Turkistany,Adaptive wireless thin-client model for mobile computing.,2009,9,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm9.html#Al-TurkistanyHS09,https://doi.org/10.1002/wcm.603 +Zeba Ishaq,A Security Framework for Cluster-Based Wireless Sensor Networks against the Selfishness Problem.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#IshaqPY18,https://doi.org/10.1155/2018/8961239 +Lin Li,A novel artificial bee colony detection algorithm for massive MIMO system.,2016,16,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm16.html#LiMJ16,https://doi.org/10.1002/wcm.2754 +Hui Guo,Backbone construction with relay node placement for energy-efficient wireless sensor networks.,2014,14,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm14.html#GuoHLQ14,https://doi.org/10.1002/wcm.2267 +Giulio Bartoli,Downlink cross-layer scheduling strategies for long-term evolution and long-term evolution-advanced systems.,2015,15,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm15.html#BartoliFMTT15,https://doi.org/10.1002/wcm.2406 +Jian Dong,Task-Oriented Multilevel Cooperative Access Control Scheme for Environment with Virtualization and IoT.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#DongZSLX18,https://doi.org/10.1155/2018/5938152 +Weiqiang Tan,Low Cost and High Efficiency Hybrid Architecture Massive MIMO Systems Based on DFT Processing.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#TanXCZFL18,https://doi.org/10.1155/2018/7597290 +Chatschik Bisdikian,Quests in a tetherless world.,2002,2,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm2.html#BisdikianHLPN02,https://doi.org/10.1002/wcm.70 +Yunfeng Peng,The diameter of mobile ad hoc networks.,2016,16,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm16.html#PengJGG16,https://doi.org/10.1002/wcm.2683 +Nitin H. Vaidya,Delayed duplicate acknowledgements: a TCP-Unaware approach to improve performance of TCP over wireless.,2002,2,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm2.html#VaidyaMPM02,https://doi.org/10.1002/wcm.33 +Christina Fragouli,Reduced-trellis equalization using the M-BCJR algorithm.,2001,1,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm1.html#FragouliST01,https://doi.org/10.1002/wcm.23 +Xianfu Lei,Opportunistic source scheduling in multi-source two-way relay networks.,2016,16,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm16.html#LeiHFW16,https://doi.org/10.1002/wcm.2528 +Wei Li 0057,Joint processing of topology control and channel assignment in wireless ad hoc networks.,2009,9,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm9.html#LiFL09,https://doi.org/10.1002/wcm.617 +Bin Liu,A queueing model with time-varying QoS and call dropping for evaluating the performance of CDMA cellular systems.,2004,4,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm4.html#LiuA04,https://doi.org/10.1002/wcm.187 +Shouyi Yin,Traffic-aware routing for real-time communications in wireless multi-hop networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#YinXZL06,https://doi.org/10.1002/wcm.444 +Wassim El-Hajj,Real traffic logs creation for testing intrusion detection systems.,2015,15,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm15.html#El-HajjAA15,https://doi.org/10.1002/wcm.2471 +Chen Chen 0002,A network coding based interference cancelation scheme for wireless ad hoc networks.,2010,10,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm10.html#ChenBCHX10,https://doi.org/10.1002/wcm.817 +Hongsong Zhu,An energy-efficient link quality monitoring scheme for wireless networks.,2012,12,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm12.html#ZhuLXLL12,https://doi.org/10.1002/wcm.966 +Markos P. Anastasopoulos,A distributed routing protocol for providing QoS in Wireless Mesh Networks operating above 10 GHz.,2008,8,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm8.html#AnastasopoulosPC08,https://doi.org/10.1002/wcm.562 +Travis F. Collins,Implementation and analysis of spectral subtraction in deterministic wide-band anti-jamming scenarios.,2016,16,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm16.html#CollinsAW16,https://doi.org/10.1002/wcm.2751 +Shih-Chang Huang,Energy-aware supply route data collecting methods using wireless sensor networks.,2016,16,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm16.html#HuangC16,https://doi.org/10.1002/wcm.2574 +Carles Gomez,Web browsing optimization over 2.5G and 3G: end-to-end mechanisms vs. usage of performance enhancing proxies.,2008,8,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm8.html#GomezCVPC08,https://doi.org/10.1002/wcm.456 +Haoyu Meng,Optimal Computing Resource Management Based on Utility Maximization in Mobile Crowdsourcing.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#MengZD17,https://doi.org/10.1155/2017/1494851 +Sung-Yin Shih,Compressed sensing construction of spectrum map for routing in cognitive radio networks.,2012,12,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm12.html#ShihC12,https://doi.org/10.1002/wcm.2338 +Charalampos Saitis,Cognitive Load Assessment from EEG and Peripheral Biosignals for the Design of Visually Impaired Mobility Aids.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#SaitisPK18,https://doi.org/10.1155/2018/8971206 +Albert Y. Zomaya,The use of the simulated annealing algorithm for channel allocation in mobile computing.,2003,3,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm3.html#ZomayaSS03,https://doi.org/10.1002/wcm.114 +Xiang-Yang Li 0001,Fault tolerant deployment and topology control in wireless ad hoc networks.,2004,4,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm4.html#LiWWY04,https://doi.org/10.1002/wcm.161 +Aiqing Zhang,Location-based distributed caching for device-to-device communications underlaying cellular networks.,2016,16,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm16.html#ZhangWZ16,https://doi.org/10.1002/wcm.2655 +Xiaohui Lin,On channel adaptive energy management with available bandwidth estimation in wireless sensor networks.,2007,7,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm7.html#LinKW07,https://doi.org/10.1002/wcm.501 +Wai Chen,A survey and challenges in routing and data dissemination in vehicular ad hoc networks.,2011,11,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm11.html#ChenGKLH11,https://doi.org/10.1002/wcm.862 +Gabriel Sandulescu,Exploiting resource heterogeneity in delay-tolerant networks.,2013,13,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm13.html#SandulescuSN13,https://doi.org/10.1002/wcm.2195 +Lulu Liang,Queue-based congestion detection and multistage rate control in event-driven wireless sensor networks.,2014,14,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm14.html#LiangGL14,https://doi.org/10.1002/wcm.2239 +Aloor Gopakumar,Power-aware range-free wireless sensor network localization using neighbor distance distribution.,2013,13,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm13.html#GopakumarJ13,https://doi.org/10.1002/wcm.1113 +Jelena V. Misic,Cognitive wireless personal area network for monitoring and control.,2011,11,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm11.html#MisicM11,https://doi.org/10.1002/wcm.809 +Adel Ben Mnaouer,A Generic Polymorphic Unicast Routing Protocol for vehicular ad hoc networks.,2013,13,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm13.html#MnaouerFC13,https://doi.org/10.1002/wcm.1181 +Ioannis Broustis,A new binary conflict resolution-based MAC protocol for impulse-based UWB ad hoc networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#BroustisMKFF06,https://doi.org/10.1002/wcm.430 +Nadeem Ahmed,A pragmatic approach to area coverage in hybrid wireless sensor networks.,2011,11,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm11.html#AhmedKJ11,https://doi.org/10.1002/wcm.913 +Shagufta Henna,An Adaptive Backoff Mechanism for IEEE 802.15.4 Beacon-Enabled Wireless Body Area Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#HennaS18,https://doi.org/10.1155/2018/9782605 +Anelia Mitseva,Towards adaptive security for convergent wireless sensor networks in beyond 3G environments.,2010,10,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm10.html#MitsevaAMPSGWBP10,https://doi.org/10.1002/wcm.678 +Shahzad Latif,Joint Optimization of Interference and Cost in Cognitive Radio Heterogeneous Network Using Fuzzy Logic Powered Ants.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#LatifAS17,https://doi.org/10.1155/2017/1075252 +Yue Tian,On the Performance of Security-Based Nonorthogonal Multiple Access in Coordinated Multipoint Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#TianWW18,https://doi.org/10.1155/2018/8921895 +Fernando Ciriaco,Jointly multi-user detection and channel estimation with genetic algorithm.,2011,11,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm11.html#CiriacoATJ11,https://doi.org/10.1002/wcm.920 +Shahram Shahsavari,Joint Cell Muting and User Scheduling in Multicell Networks with Temporal Fairness.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ShahsavariAK18,https://doi.org/10.1155/2018/4846291 +Yuanlong Cao,Muscle Activity-Driven Green-Oriented Random Number Generation Mechanism to Secure WBSN Wearable Device Communications.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#CaoZLYZSC18,https://doi.org/10.1155/2018/3403456 +Pekka Pirinen,RF Driven 5G System Design for Centimeter Waves.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#PirinenPPTTLRPL18,https://doi.org/10.1155/2018/7852896 +Wenxuan Guo,Dynamic relay deployment for disaster area wireless networks.,2010,10,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm10.html#GuoHL10,https://doi.org/10.1002/wcm.679 +Haibo Ye,Scalable floor localization using barometer on smartphone.,2016,16,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm16.html#YeGTL16,https://doi.org/10.1002/wcm.2706 +Seyed Mohammad Mahdi Alavi,Robust power control for IEEE 802.15.4 wireless sensor networks with round-trip time-delay uncertainty.,2010,10,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm10.html#AlaviWH10,https://doi.org/10.1002/wcm.791 +Fuqiang Wang,Random time source protocol in wireless sensor networks and synchronization in industrial environments.,2013,13,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm13.html#WangZYX13,https://doi.org/10.1002/wcm.1144 +Ivan Stojmenovic,Editorial.,2003,3,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm3.html#Stojmenovic03,https://doi.org/10.1002/wcm.122 +Xianfu Lei,Performance analysis of switch-and-stay combining in two-way relay systems with analog network coding and time-division broadcast protocols.,2016,16,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm16.html#LeiHFFD16,https://doi.org/10.1002/wcm.2556 +Yan Zhang 0041,Air-to-Air Path Loss Prediction Based on Machine Learning Methods in Urban Environments.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhangWYHL18,https://doi.org/10.1155/2018/8489326 +Elena Simona Lohan,Binary-offset-carrier modulation techniques with applications in satellite navigation systems.,2007,7,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm7.html#LohanLR07,https://doi.org/10.1002/wcm.407 +Lindong Liu,A Task Scheduling Algorithm Based on Classification Mining in Fog Computing Environment.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LiuQZW18,https://doi.org/10.1155/2018/2102348 +Ashish James,Efficient multihop transmission scheme for error-free relay forwarding in cooperative networks.,2015,15,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm15.html#JamesMA15,https://doi.org/10.1002/wcm.2381 +Sghaier Guizani,A k-means clustering-based security framework for mobile data mining.,2016,16,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm16.html#Guizani16a,https://doi.org/10.1002/wcm.2762 +Wei Kuang Lai,Improving MANET performance by a hop-aware and energy-based buffer management scheme.,2014,14,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm14.html#LaiWL14,https://doi.org/10.1002/wcm.2226 +Sudip Misra,A simple learning automata-based solution for intrusion detection in wireless sensor networks.,2011,11,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm11.html#MisraKA11,https://doi.org/10.1002/wcm.946 +G. Varaprasad 0001,Efficient power aware routing algorithm for mobile ad hoc networks.,2012,12,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm12.html#Varaprasad12,https://doi.org/10.1002/wcm.870 +Xiaolan Liu,MPTCP Tunnel: An Architecture for Aggregating Bandwidth of Heterogeneous Access Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LiuSSZ18,https://doi.org/10.1155/2018/2045760 +Yimin Pang,Wi-Fi Coexistence with Duty Cycled LTE-U.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#PangBAH17,https://doi.org/10.1155/2017/6486380 +David Galindo,On the energy cost of authenticated key agreement in wireless sensor networks.,2012,12,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm12.html#GalindoRL12,https://doi.org/10.1002/wcm.894 +Jinyun Ren,Absolute phase in mobile channels.,2011,11,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm11.html#RenV11,https://doi.org/10.1002/wcm.857 +Chyi-Ren Dow,An efficient anycast scheme for discovering k services in cluster-based mobile ad hoc networks.,2011,11,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm11.html#DowLCH11,https://doi.org/10.1002/wcm.927 +Yong Xu,Resource management and QoS control in multiple traffic wireless and mobile Internet systems.,2005,5,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm5.html#XuLZ05,https://doi.org/10.1002/wcm.360 +Quang-Dung Ho,Opportunistic delay-margin-based resource allocation for next-generation wireless networks.,2011,11,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm11.html#HoAL11,https://doi.org/10.1002/wcm.924 +Nadia Adem,The impact of stochastic resource availability on cognitive network performance: modeling and analysis.,2016,16,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm16.html#AdemH16,https://doi.org/10.1002/wcm.2640 +Serkan Ozturk,Capacity limits in a variable duty cycle IEEE 802.11p-based VANET.,2012,12,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm12.html#OzturkMM12,https://doi.org/10.1002/wcm.2330 +Ahmet Faruk Coskun,Analysis of diversity schemes employing antenna selection in the presence of channel estimation errors and feedback delay.,2016,16,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm16.html#CoskunK16,https://doi.org/10.1002/wcm.2520 +Qixiang Pang,Performance evaluation of an adaptive backoff scheme for WLAN.,2004,4,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm4.html#PangLLL04,https://doi.org/10.1002/wcm.260 +Benxiao Tang,Niffler: A Context-Aware and User-Independent Side-Channel Attack System for Password Inference.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#TangWWZW18,https://doi.org/10.1155/2018/4627108 +Simone Spagnol,Current Use and Future Perspectives of Spatial Audio Technologies in Electronic Travel Aids.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#SpagnolWBBMMU18,https://doi.org/10.1155/2018/3918284 +Zhen Lv,A Rational Exchange Protocol under Asymmetric Information in Wireless Sensor Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LvPPZ18,https://doi.org/10.1155/2018/9437936 +Adnan Ahmed Abi Sen,Double Cache Approach with Wireless Technology for Preserving User Privacy.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#SenEYJ18,https://doi.org/10.1155/2018/4607464 +Omar Alsaleh,Enabling opportunistic and dynamic spectrum access through learning techniques.,2011,11,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm11.html#AlsalehVHF11,https://doi.org/10.1002/wcm.1221 +Baofeng Ji,Performance Analysis of Multihop Relaying Caching for Internet of Things under Nakagami Channels.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#JiXSLWY18,https://doi.org/10.1155/2018/2437361 +Emilio Gómez-Déniz,A generalisation of the Rayleigh distribution with applications in wireless fading channels.,2013,13,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm13.html#Gomez-DenizG13,https://doi.org/10.1002/wcm.1097 +Hamid Aghvami,Editorial.,2002,2,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm2.html#AghvamiGHZ02,https://doi.org/10.1002/wcm.53 +Romano Fantacci,Next generation grids and wireless communication networks: towards a novel integrated approach.,2009,9,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm9.html#FantacciVBMT09,https://doi.org/10.1002/wcm.689 +Chih-Yung Chang,Channel-switching and power control mechanisms for improving network connectivity in wireless mesh networks.,2011,11,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm11.html#ChangLC11,https://doi.org/10.1002/wcm.880 +Mohammad Shikh-Bahaei,Full-Duplex and Cognitive Radio Networking for the Emerging 5G Systems.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#Shikh-BahaeiCH18,https://doi.org/10.1155/2018/8752749 +Khalid Mahmood 0002,Intelligent On-Demand Connectivity Restoration for Wireless Sensor Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#MahmoodKHSAS18,https://doi.org/10.1155/2018/9702650 +Amiya Singh,Twin tree hierarchy: a regularized approach to construction of signature matrices for overloaded CDMA.,2016,16,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm16.html#SinghSAM16,https://doi.org/10.1002/wcm.2732 +Dan Deng,Secrecy Analysis of Multiuser Untrusted Amplify-and-Forward Relay Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#DengLFZHZ17,https://doi.org/10.1155/2017/9580639 +Xuejun Zhang,A Context-Aware Location Differential Perturbation Scheme for Privacy-Aware Users in Mobile Environment.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhangHHCJD18,https://doi.org/10.1155/2018/9173519 +Ozgur Ekici,Balanced association algorithm for IEEE 802.11 extended service areas.,2009,9,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm9.html#EkiciY09,https://doi.org/10.1002/wcm.634 +Francesco Chiti,An efficient HARQ scheme for applications in multicast communication systems.,2015,15,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm15.html#ChitiFT15,https://doi.org/10.1002/wcm.2398 +Adnan Kavak,Interference analysis and capacity for forward link 3G CDMA network with adaptive antennas.,2008,8,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm8.html#KavakKTO08,https://doi.org/10.1002/wcm.494 +Adel Ali Ahmed,Probabilistic routing protocol for a hybrid wireless underground sensor networks.,2013,13,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm13.html#AhmedF13,https://doi.org/10.1002/wcm.1101 +Liang Liu 0001,Minimal exposure path algorithms for directional sensor networks.,2014,14,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm14.html#LiuZM14,https://doi.org/10.1002/wcm.2250 +Manjeet Singh Patterh,BER performance of MQAM with L-branch MRC diversity reception over correlated Nakagami-m fading channels.,2003,3,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm3.html#PatterhKS03,https://doi.org/10.1002/wcm.93 +Hyung Rai Oh,Energy efficient MAC protocol for delay-sensitive data transmission over wireless sensor network.,2012,12,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm12.html#OhS12,https://doi.org/10.1002/wcm.1009 +Luciano Bononi,Special Issue on: 'Resources and mobility management in wireless networks'.,2008,8,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm8.html#BononiN08,https://doi.org/10.1002/wcm.576 +Reyhaneh Changiz,Trust establishment in cooperative wireless relaying networks.,2014,14,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm14.html#ChangizHYLT14,https://doi.org/10.1002/wcm.2271 +Tsang-Yi Wang,Joint detection and estimation for cooperative communications in cluster-based networks.,2013,13,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm13.html#WangPL13,https://doi.org/10.1002/wcm.1199 +Weilong Ding,DS-Harmonizer: A Harmonization Service on Spatiotemporal Data Stream in Edge Computing Environment.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#DingZ18,https://doi.org/10.1155/2018/9354273 +Pedro Miguel Ruiz-Martinez,Enhanced access control in hybrid MANETs through utility-based pre-authentication control.,2010,10,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm10.html#MartinezLRM10,https://doi.org/10.1002/wcm.729 +Fulong Ma,A Time and Location Correlation Incentive Scheme for Deep Data Gathering in Crowdsourcing Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#Ma0L0HW18,https://doi.org/10.1155/2018/8052620 +Guoping Fan,Performance of the combining received differential encoding transmit diversity with imperfect carrier recovery over correlated Nakagami fading channels.,2004,4,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm4.html#FanFC04,https://doi.org/10.1002/wcm.190 +Lei Ni,PHY-Aided Secure Communication via Weighted Fractional Fourier Transform.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#NiDHLX18,https://doi.org/10.1155/2018/7963451 +Muhammad Munwar Iqbal,Augmenting High-Performance Mobile Cloud Computations for Big Data in AMBER.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#IqbalAALMAN18,https://doi.org/10.1155/2018/4796535 +Wenxuan Guo,Multicast communications in cognitive radio networks using directional antennas.,2015,15,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm15.html#GuoH15,https://doi.org/10.1002/wcm.2335 +Simone Frattasi,Cognitive radio and advanced spectrum management.,2009,9,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm9.html#FrattasiMCB09,https://doi.org/10.1002/wcm.836 +Lei Tao,Bandwidth Enhancement of Microstrip Patch Antenna Using Complementary Rhombus Resonator.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#TaoXLHHLB18,https://doi.org/10.1155/2018/6352181 +Iosif Terzis,Privacy preserving context transfer schemes for 4G networks.,2011,11,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm11.html#TerzisKKL11,https://doi.org/10.1002/wcm.1019 +Dixian Zhao,A 0.45 W 18% PAE E-Band Power Amplifier in 100 nm InGaAs pHEMT Technology.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhaoY18,https://doi.org/10.1155/2018/8234615 +Tracy Camp,A survey of mobility models for ad hoc network research.,2002,2,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm2.html#CampBD02,https://doi.org/10.1002/wcm.72 +Tao Huang,Bit-interleaved space-time-frequency coded modulation with general linear precoding.,2007,7,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm7.html#HuangYS07,https://doi.org/10.1002/wcm.512 +Kezhi Wang,ALRT-based energy detection using uniform noise distribution.,2016,16,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm16.html#WangCC16,https://doi.org/10.1002/wcm.2583 +Qiang Ni,Saturation throughput analysis of error-prone 802.11 wireless networks.,2005,5,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm5.html#NiLTX05,https://doi.org/10.1002/wcm.358 +Louis Atallah,Distributed inferencing with ambient and wearable sensors.,2012,12,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm12.html#AtallahMTLY12,https://doi.org/10.1002/wcm.893 +Zhanqiang Huo,Nash Equilibrium of an Energy Saving Strategy with Dual Rate Transmission in Wireless Regional Area Network.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#HuoLJW17,https://doi.org/10.1155/2017/9053862 +Ehsan Soleimani-Nasab,Performance analysis of selective combining decode-and-forward relay networks over Nakagami-n and Nakagami-q fading channels.,2014,14,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm14.html#Soleimani-NasabAK14,https://doi.org/10.1002/wcm.2301 +Yuyang Zhang,Comprehensive Analysis on Heterogeneous Wireless Network in High-Speed Scenarios.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhangZDLP18,https://doi.org/10.1155/2018/4259510 +Xiangming Li,Fountain Codes Over GF(q).,2013,13,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm13.html#LiJ13,https://doi.org/10.1002/wcm.1189 +Jiequ Ji,Energy Efficient Caching in Backhaul-Aware Cellular Networks with Dynamic Content Popularity.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#JiZWCD18,https://doi.org/10.1155/2018/7532049 +Heung-Gyoon Ryu,Combination of PAPR reduction and linearization for the OFDM communication system.,2011,11,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm11.html#Ryu11,https://doi.org/10.1002/wcm.914 +Sang-Jo Yoo,Policy-based scanning with QoS support for seamless handovers in wireless networks.,2010,10,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm10.html#YooG10,https://doi.org/10.1002/wcm.774 +Han-Chieh Chao,A channel assignment scheme for SCM/WDM-based personal communication network.,2001,1,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm1.html#ChaoWH01,https://doi.org/10.1002/wcm.38 +Qutub Bakhtiar Ali,Belief based data cleaning for wireless sensor networks.,2012,12,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm12.html#AliPM12,https://doi.org/10.1002/wcm.970 +Mehrdad Dianati,Call admission control with opportunistic scheduling scheme.,2010,10,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm10.html#DianatiTSN10a,https://doi.org/10.1002/wcm.771 +Matthias Pätzold,A space-time channel simulator for MIMO channels based on the geometrical one-ring scattering model.,2004,4,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm4.html#PatzoldH04,https://doi.org/10.1002/wcm.252 +Zhenxing Chen,New 3D 16-Ary Signal Constellations and Their Symbol Error Probabilities in AWGN and Rayleigh Fading Channels.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ChenLLK18,https://doi.org/10.1155/2018/7178631 +Rong Yu,Sleeping management for scalable topology control in wireless sensor networks.,2011,11,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm11.html#YuZGS11,https://doi.org/10.1002/wcm.876 +Zhimin Li,Unified routing protocol based on passive bandwidth measurement in heterogeneous WMNs.,2016,16,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm16.html#LiWDWY16,https://doi.org/10.1002/wcm.2688 +Duy Duong Nguyen,Non-cooperative power control and spectrum allocation in cognitive radio networks: a game theoretic perspective.,2014,14,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm14.html#NguyenM14,https://doi.org/10.1002/wcm.2202 +Yinying Yang,Coverage for composite event detection in wireless sensor networks.,2011,11,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm11.html#YangAC11,https://doi.org/10.1002/wcm.907 +Abdulbaset M. Hamed,Spectral and Energy Efficiencies in mmWave Cellular Networks for Optimal Utilization.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#HamedR18,https://doi.org/10.1155/2018/3097094 +Jong-Deok Kim,Performance analysis and evaluation of IEEE 802.11e EDCF.,2004,4,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm4.html#KimK04,https://doi.org/10.1002/wcm.165 +Teng-Hui Wang,Channel discovery algorithms for interference avoidance in smart grid communication networks: a survey.,2016,16,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm16.html#WangC16,https://doi.org/10.1002/wcm.2523 +Wen-Long Chin,Channel-power profile estimation for orthogonal frequency-division multiplexing systems.,2014,14,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm14.html#Chin14,https://doi.org/10.1002/wcm.1244 +Haris Gacanin,Selected mapping with symbol re-mapping for OFDM/TDM using MMSE-FDE.,2012,12,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm12.html#GacaninA12,https://doi.org/10.1002/wcm.1035 +Nan Zhao 0001,Wireless Caching Aided 5G Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhaoLHCF18,https://doi.org/10.1155/2018/8764289 +Jorge Munilla,Enhanced low-cost RFID protocol to detect relay attacks.,2010,10,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm10.html#MunillaP10,https://doi.org/10.1002/wcm.769 +Shan Cui,Performance analysis of transmitted-reference UWB systems with narrowband interference suppression.,2009,9,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm9.html#CuiTLGL09,https://doi.org/10.1002/wcm.665 +Amar H. Kabashi,Optimal and quasi-optimal energy-efficient storage sharing for opportunistic sensor networks.,2016,16,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm16.html#KabashiE16,https://doi.org/10.1002/wcm.2664 +Chia-Cheng Hu,Bandwidth-satisfied routing in multi-rate MANETs by cross-layer approach.,2012,12,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm12.html#Hu12,https://doi.org/10.1002/wcm.958 +Luxi Lu,Spectrum redistribution for cognitive radios using discriminatory spectrum double auction.,2013,13,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm13.html#LuJBCHXL13,https://doi.org/10.1002/wcm.1141 +Kaili Jiang,A Novel Simulation Model for Nonstationary Rice Fading Channels.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#JiangCZCXC18,https://doi.org/10.1155/2018/8086073 +Gary H. K. Ma,An efficient channel allocation scheme for cellular network using maximum channel packing.,2004,4,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm4.html#MaZ04,https://doi.org/10.1002/wcm.237 +Ahmed El-Mahdy,A Comparative Study on the Performance of LLR- and SNR-Based Hybrid Relaying Schemes.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#El-MahdyA17,https://doi.org/10.1155/2017/4063792 +Guangjie Han,Path planning using a mobile anchor node based on trilateration in wireless sensor networks.,2013,13,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm13.html#HanXJSHN13,https://doi.org/10.1002/wcm.1192 +Chengqun Wang,Sensor network localization using kernel spectral regression.,2010,10,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm10.html#WangCS10,https://doi.org/10.1002/wcm.820 +Alessandro Andreadis,Analysis of the WAP protocol over SMS in GSM networks.,2001,1,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm1.html#AndreadisBGM01,https://doi.org/10.1002/wcm.37 +Muhammad Kamran Khan,EE-MRP: Energy-Efficient Multistage Routing Protocol for Wireless Sensor Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#KhanSGKSA18,https://doi.org/10.1155/2018/6839671 +Yun Wang 0001,A novel sine-curve mobility model for intrusion detection in wireless sensor networks.,2013,13,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm13.html#WangLY13,https://doi.org/10.1002/wcm.1202 +Andell Anees Alexander,Solar-powered ZigBee-based wireless motion surveillance: a prototype development and experimental results.,2008,8,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm8.html#AlexanderTVFHN08,https://doi.org/10.1002/wcm.565 +Fajun Chen,Weighted partial network coding and its applications in wireless mesh networks.,2013,13,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm13.html#ChenWWL13,https://doi.org/10.1002/wcm.1180 +Wencheng Yang,Biometrics Based Privacy-Preserving Authentication and Mobile Template Protection.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#YangHWW18,https://doi.org/10.1155/2018/7107295 +Kirti Hirpara,Energy-Efficient Constant Gain Kalman Filter Based Tracking in Wireless Sensor Network.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#HirparaR17,https://doi.org/10.1155/2017/1390847 +Jing Teng,Prediction-based cluster management for target tracking in wireless sensor networks.,2012,12,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm12.html#TengSR12,https://doi.org/10.1002/wcm.1014 +Zhihui Chen,Improved channel-aware MAC protocols for wireless local area networks.,2005,5,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm5.html#ChenK05,https://doi.org/10.1002/wcm.226 +A. Ali,Simulation-based real-time routing protocol with load distribution in wireless sensor networks.,2010,10,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm10.html#AliLF10,https://doi.org/10.1002/wcm.816 +Abdelmohsen Ali,A multi-mode IFFT/FFT processor for IEEE 802.11ac: design and implementation.,2016,16,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm16.html#AliH16,https://doi.org/10.1002/wcm.2643 +Francisco J. Vázquez-Araújo,Interleave-division multiple access (IDMA) using low-rate layered LDGM codes.,2012,12,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm12.html#Vazquez-AraujoGCG12,https://doi.org/10.1002/wcm.1055 +Ahmet Oturak,SINR analysis of FFH/OFDM over frequency selective Rayleigh fading channel.,2016,16,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm16.html#OturakO16,https://doi.org/10.1002/wcm.2756 +Walid A. Al-Hussaibi,Constellation constrained multiuser multiple-input multiple-output for high capacity and error performance over correlated fading channels.,2016,16,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm16.html#Al-HussaibiA16,https://doi.org/10.1002/wcm.2564 +Jian Liu,The capacity of multi-channel multi-interface wireless networks with multi-packet reception and directional antenna.,2014,14,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm14.html#LiuLLW14,https://doi.org/10.1002/wcm.2237 +Jun-Da Chen,Performance evaluation of multirate DS-CDMA communication systems with adaptive antennas.,2012,12,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm12.html#ChenUCL12,https://doi.org/10.1002/wcm.950 +Young-June Choi,Joint collision resolution and transmit-power adjustment for Aloha-type random access.,2013,13,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm13.html#ChoiS13,https://doi.org/10.1002/wcm.1105 +Marouane Sebgui,Improving CSMA/CA network performance under hidden collision.,2016,16,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm16.html#SebguiABE16,https://doi.org/10.1002/wcm.2679 +Alaa Al Tahan,A position-based routing algorithm in 3D sensor networks.,2012,12,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm12.html#TahanW12,https://doi.org/10.1002/wcm.888 +Biljana Risteska Stojkoska,Internet of Things Framework for Home Care Systems.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#StojkoskaTD17,https://doi.org/10.1155/2017/8323646 +Jingjing Gu,Manifold-based canonical correlation analysis for wireless sensor network localization.,2012,12,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm12.html#GuC12,https://doi.org/10.1002/wcm.1071 +Chien-Ching Chiu,Channel characteristics of ultra-wideband systems with single co-channel interference.,2013,13,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm13.html#ChiuLL13,https://doi.org/10.1002/wcm.1146 +Nguyen Hoang Lan,Channel assignment for multicast in multi-channel multi-radio wireless mesh networks.,2009,9,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm9.html#LanT09,https://doi.org/10.1002/wcm.701 +Heba Kurdi,TrustyFeer: A Subjective Logic Trust Model for Smart City Peer-to-Peer Federated Clouds.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#KurdiAAA18,https://doi.org/10.1155/2018/1073216 +Fahimeh Rezaei,Towards the performance evaluation of 4th generation wireless communication standards: LTE versus Mobile WiMAX.,2015,15,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm15.html#RezaeiHS15,https://doi.org/10.1002/wcm.2404 +Nikos I. Passas,Special issue: WLAN/3G integration for next-generation heterogeneous mobile data networks.,2005,5,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm5.html#PassasS05,https://doi.org/10.1002/wcm.329 +Jaime Andres Rincon,Using Emotions in Intelligent Virtual Environments: The EJaCalIVE Framework.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#RinconCNJC17,https://doi.org/10.1155/2017/9321463 +Lingyun Cai,Performance of group ordered successive interference cancellation for multiuser detection in GSTBC SFH/MC DS-CDMA system.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#CaiXZS06,https://doi.org/10.1002/wcm.290 +Stylianos Papanastasiou,TCP congestion window evolution and spatial reuse in MANETs.,2004,4,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm4.html#PapanastasiouO04,https://doi.org/10.1002/wcm.236 +Ereth McKnight-MacNeil,Behavior of clock-sampling mutual network synchronization in wireless sensor networks: convergence and security.,2010,10,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm10.html#McKnight-MacNeilRK10,https://doi.org/10.1002/wcm.905 +Jianhua Liu,Differential space-time modulation for DS-CDMA systems.,2002,2,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm2.html#LiuL02,https://doi.org/10.1002/wcm.39 +Süleyman Kardas,k-strong privacy for radio frequency identification authentication protocols based on physically unclonable functions.,2015,15,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm15.html#KardasCBKDL15,https://doi.org/10.1002/wcm.2482 +Yang Xiao,Wireless monitoring and control.,2011,11,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm11.html#XiaoDSC11,https://doi.org/10.1002/wcm.1176 +Zhenhuan Zhu,Energy awareness workflow model for wireless sensor nodes.,2014,14,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm14.html#ZhuOH14,https://doi.org/10.1002/wcm.2302 +Bang Wang,Scheduling sensor activity for information coverage of discrete targets in sensor networks.,2009,9,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm9.html#WangCSW09,https://doi.org/10.1002/wcm.626 +José I. Benedetto,MobiCOP: A Scalable and Reliable Mobile Code Offloading Solution.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#BenedettoVSNNP18,https://doi.org/10.1155/2018/8715294 +Lingyang Song,QoS-aware packet forwarding in MIMO sensor networks: a cross-layer approach.,2010,10,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm10.html#SongZYY10,https://doi.org/10.1002/wcm.786 +Xiaoge Huang,Coexistence of Cognitive Small Cell and WiFi System: A Traffic Balancing Dual-Access Resource Allocation Scheme.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#HuangLTC18,https://doi.org/10.1155/2018/4092681 +Raja Jurdak,U-MAC: a proactive and adaptive UWB medium access control protocol.,2005,5,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm5.html#JurdakBL05,https://doi.org/10.1002/wcm.312 +Janghyun Kim,Low Complexity Pilot Allocation Scheme for a Large OFDM Block with Null Subcarriers.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#KimYHY18,https://doi.org/10.1155/2018/3981048 +Luís M. Correia,Editors' opening address.,2008,8,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm8.html#CorreiaCGK08,https://doi.org/10.1002/wcm.612 +XuFei Mao,Providing and finding k-road-coverage efficiently in wireless sensor networks.,2012,12,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm12.html#MaoXTL12,https://doi.org/10.1002/wcm.1031 +Jie Zheng 0005,EE-eICIC: Energy-Efficient Optimization of Joint User Association and ABS for eICIC in Heterogeneous Cellular Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#ZhengGWNLR17,https://doi.org/10.1155/2017/6768415 +Hui Hua Chen,Unambiguous S-curve shaping technique for multipath mitigation in Global Navigation Satellite Systems alternative binary offset carrier signals.,2014,14,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm14.html#ChenJY14,https://doi.org/10.1002/wcm.2295 +Zhiquan Bai,Different sensing durations-based cooperative spectrum sensing in cognitive radio systems.,2014,14,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm14.html#BaiWK14,https://doi.org/10.1002/wcm.2294 +Li Qiang,A novel software-defined networking approach for vertical handoff in heterogeneous wireless networks.,2016,16,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm16.html#QiangLJH16,https://doi.org/10.1002/wcm.2690 +Suat özdemir,PRDA: polynomial regression-based privacy-preserving data aggregation for wireless sensor networks.,2015,15,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm15.html#OzdemirPX15,https://doi.org/10.1002/wcm.2369 +Qiang Ni,A survey of QoS enhancements for IEEE 802.11 wireless LAN.,2004,4,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm4.html#NiRT04,https://doi.org/10.1002/wcm.196 +Sinisa Husnjak,Data Traffic Offload from Mobile to Wi-Fi Networks: Behavioural Patterns of Smartphone Users.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#HusnjakPF18,https://doi.org/10.1155/2018/2608419 +Baoqi Huang,Estimating distances via connectivity in wireless sensor networks.,2014,14,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm14.html#HuangYAM14,https://doi.org/10.1002/wcm.2204 +Jinho Choi 0001,Multiuser diversity beamforming for downlink channels using modulation division multiplexing.,2012,12,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm12.html#Choi12,https://doi.org/10.1002/wcm.1083 +Abderrezak Rachedi,Advanced quality of services with security integration in wireless sensor networks.,2015,15,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm15.html#RachediH15,https://doi.org/10.1002/wcm.2562 +Xiaolin Ma,QoE- and energy-efficient resource optimization in OFDMA networks with bidirectional relaying.,2016,16,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm16.html#MaLIC16,https://doi.org/10.1002/wcm.2644 +Andrea Veronica Gonzalez,Efficiency Evaluation of Strategies for Dynamic Management of Wireless Sensor Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#GonzalezBF17,https://doi.org/10.1155/2017/5618065 +Abolfazl Mehbodniya,Performance of DS-UWB in MB-OFDM and multi-user interference over Nakagami-m fading channels.,2012,12,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm12.html#MehbodniyaA12,https://doi.org/10.1002/wcm.1084 +Zhen Tong,Geometric analysis of distributed power control and Möbius MAC design.,2016,16,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm16.html#TongH16,https://doi.org/10.1002/wcm.2554 +Xingmin Ma,A Novel Real-Time Image Restoration Algorithm in Edge Computing.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#MaXAL18,https://doi.org/10.1155/2018/3610482 +Vassilios Tsaoussidis,Special Issue: Reliable Transport Protocols for Mobile Computing.,2002,2,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm2.html#TsaoussidisM02,https://doi.org/10.1002/wcm.29 +Jung Yeon Hwang,Weaknesses in the Hur-Shin-Yoon decentralized group key management.,2009,9,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm9.html#HwangCL09,https://doi.org/10.1002/wcm.741 +Quoc-Tuan Vien,Network coding-based channel quality indicator reporting for two-way multi-relay networks.,2014,14,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm14.html#VienN14,https://doi.org/10.1002/wcm.2296 +Dlamini Thembelihle,Softwarization of Mobile Network Functions towards Agile and Energy Efficient 5G Architectures: A Survey.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#ThembelihleRM17,https://doi.org/10.1155/2017/8618364 +Li Li 0009,Network properties of mobile tactical scenarios.,2014,14,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm14.html#0009VBKZ14,https://doi.org/10.1002/wcm.2320 +Young-Bae Ko,MAC protocols using directional antennas in IEEE 802.11 based ad hoc networks.,2008,8,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm8.html#KoCV08,https://doi.org/10.1002/wcm.526 +Mohammed W. Baidas,Game-theoretic modeling and analysis of relay selection in cooperative wireless networks.,2016,16,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm16.html#BaidasB16,https://doi.org/10.1002/wcm.2547 +Yan Yan,Hierarchical location service for wireless sensor networks with mobile sinks.,2010,10,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm10.html#YanZZM10,https://doi.org/10.1002/wcm.801 +Zohar Naor,Efficient paging and multicast schemes for Mobile Virtual Private Networks.,2005,5,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm5.html#Naor05,https://doi.org/10.1002/wcm.343 +Leszek Szczecinski,On the performance of BICM with mapping diversity in hybrid ARQ.,2008,8,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm8.html#SzczecinskiDB08,https://doi.org/10.1002/wcm.554 +A. Bruce McDonald,Statistical estimation of link availability and its impact on routing in wireless ad hoc networks.,2004,4,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm4.html#McDonaldZ04,https://doi.org/10.1002/wcm.135 +Haitham Alsaif,Compact Ultra-Wide Band MIMO Antenna System for Lower 5G Bands.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#AlsaifUCN18,https://doi.org/10.1155/2018/2396873 +Michail Matthaiou,Dual frequency MIMO measurements in the 2.26-2.5 GHz band.,2008,8,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm8.html#MatthaiouRLS08,https://doi.org/10.1002/wcm.573 +Zhijian Lin,Efficient device-to-device discovery and access procedure for 5G cellular network.,2016,16,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm16.html#LinDGHD16,https://doi.org/10.1002/wcm.2602 +Stylianos Drakatos,A future location-aware replacement policy for the cache management at the mobile terminal.,2009,9,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm9.html#DrakatosPMD09,https://doi.org/10.1002/wcm.606 +Romain Kuntz,An improved network mobility service for intelligent transportation systems.,2011,11,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm11.html#KuntzMSBN11,https://doi.org/10.1002/wcm.860 +Ning Xie 0007,Adaptive Rake receiver based on the nonlinear ACM technique.,2012,12,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm12.html#XieWL12,https://doi.org/10.1002/wcm.959 +ángela Hernández-Solana,Radio resource allocation for interference management in mobile broadband OFDMA based networks.,2010,10,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm10.html#Hernandez-SolanaGV10,https://doi.org/10.1002/wcm.831 +Fulvio Babich,Deployment of a reliable 802.11e experimental setup for throughput measurements.,2012,12,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm12.html#BabichCDD12,https://doi.org/10.1002/wcm.1026 +Hamid Aghvami,Editorial.,2001,1,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm1.html#AghvamiGHZ01,https://doi.org/10.1002/wcm.41 +Fredrik Berggren,Linear successive interference cancellation in DS-CDMA systems.,2003,3,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm3.html#BerggrenS03,https://doi.org/10.1002/wcm.176 +Ming Gong,A coordinated multi-point-based quality of service provision resource allocation scheme with inter-cell interference mitigation.,2016,16,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm16.html#GongHL16,https://doi.org/10.1002/wcm.2559 +Luca De Nardis,Robustness of Time Reversal versus All-Rake Transceivers in Multiple Access Channels.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#NardisFFB18,https://doi.org/10.1155/2018/7548926 +Juan Jimenez,Energy efficiency and quality of service optimization for constant bit rate real-time applications in 802.11 networks.,2014,14,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm14.html#JimenezEERG14,https://doi.org/10.1002/wcm.2210 +Junmei Yao,Revisiting of Channel Access Mechanisms in Mobile Wireless Networks through Exploiting Physical Layer Technologies.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#YaoXCWL18,https://doi.org/10.1155/2018/5967194 +Hongyun Zhang,A Novel Cooperation-Based Network Coding Scheme for Walking Scenarios in WBANs.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#ZhangST17,https://doi.org/10.1155/2017/6267579 +Shiow-Fen Hwang,Hierarchical multicast in wireless sensor networks with mobile sinks.,2012,12,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm12.html#HwangLSHD12,https://doi.org/10.1002/wcm.890 +Swades De,A resource-efficient QoS routing protocol for mobile ad hoc networks.,2003,3,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm3.html#DeQD03,https://doi.org/10.1002/wcm.128 +Yi Liu 0015,Exploiting temporal and spatial diversities for spectrum sensing and access in cognitive vehicular networks.,2015,15,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm15.html#LiuXYZZY15,https://doi.org/10.1002/wcm.2476 +Qing Wang 0004,Effective capacity of a correlated Rayleigh fading channel.,2011,11,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm11.html#WangWF11,https://doi.org/10.1002/wcm.945 +Gang Zhang,A Wide Stopband Balun Bandpass Filter with Its Application to Balanced Quasi-Yagi Antenna.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhangQCZ18,https://doi.org/10.1155/2018/4725072 +Gianfranco Nencioni,Orchestration and Control in Software-Defined 5G Networks: Research Challenges.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#NencioniGGHP18,https://doi.org/10.1155/2018/6923867 +Tuan Le,A novel social contact graph-based routing strategy for workload and throughput fairness in delay tolerant networks.,2016,16,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm16.html#LeKG16,https://doi.org/10.1002/wcm.2694 +Amjad Mehmood,A secure and low-energy zone-based wireless sensor networks routing protocol for pollution monitoring.,2016,16,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm16.html#MehmoodLS16,https://doi.org/10.1002/wcm.2734 +Shuo Ding,Thorough protocol extensions for integrating DSR-based Mobile Ad Hoc Networks with the Internet.,2010,10,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm10.html#Ding10,https://doi.org/10.1002/wcm.828 +Dongseung Shin,DFR: an efficient directional flooding-based routing protocol in underwater sensor networks.,2012,12,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm12.html#ShinHK12,https://doi.org/10.1002/wcm.1079 +Qilin Wu,Multihop Capability Analysis in Wireless Information and Power Transfer Multirelay Cooperative Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#WuZCF18,https://doi.org/10.1155/2018/1857015 +Yonghua Lin,Uplink carrier frequency offset estimation for WiMAX OFDMA-based ranging.,2010,10,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm10.html#LinFWC10,https://doi.org/10.1002/wcm.833 +Yixin Jiang,A mutual authentication and privacy mechanism for WLAN security.,2008,8,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm8.html#JiangLYC08,https://doi.org/10.1002/wcm.448 +Byung Wook Kim,Secrecy Dimming Capacity in Multi-LED PAM-Based Visible Light Communications.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#Kim17,https://doi.org/10.1155/2017/4094096 +Hao Guo 0007,Genetic Algorithm-Based Beam Refinement for Initial Access in Millimeter Wave Mobile Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#GuoMS18,https://doi.org/10.1155/2018/5817120 +Yingying Guo,Accurate indoor localization based on crowd sensing.,2016,16,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm16.html#GuoSLG16,https://doi.org/10.1002/wcm.2733 +Xiaochen Li,Power control and channel allocation for real-time applications in cellular networks.,2008,8,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm8.html#LiW08,https://doi.org/10.1002/wcm.506 +Padma Mundur,Routing in intermittent networks using storage domains.,2011,11,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm11.html#MundurLS11,https://doi.org/10.1002/wcm.868 +Peng Zhao 0003,Design of a Novel Miniaturized Frequency Selective Surface Based on 2.5-Dimensional Jerusalem Cross for 5G Applications.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhaoZSZHW18,https://doi.org/10.1155/2018/3485208 +Zhengchuan Chen,Multiple multicast for a half-duplex butterfly network: a deterministic approach.,2016,16,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm16.html#ChenF16,https://doi.org/10.1002/wcm.2519 +Peng Cheng 0004,Cross-layer bandwidth and power allocation for a two-hop link in wireless mesh network.,2009,9,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm9.html#ChengZYCQ09,https://doi.org/10.1002/wcm.593 +Wuxu Peng,Dynamic key management for secure routing in MANET.,2007,7,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm7.html#PengWPM07,https://doi.org/10.1002/wcm.567 +Yuh-Shyan Chen,A delay-bounded routing protocol for vehicular ad hoc networks with traffic lights.,2015,15,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm15.html#ChenHJ15,https://doi.org/10.1002/wcm.2441 +Bo Yu 0004,Discrete-time andequation image* output tracking control of wireless networked control systems with Markov communication models.,2011,11,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm11.html#YuSL11,https://doi.org/10.1002/wcm.873 +Hüseyin Arslan,Channel estimation in narrowband wireless communication systems.,2001,1,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm1.html#ArslanB01,https://doi.org/10.1002/wcm.14 +Shengling Wang 0001,Dynamic region-based mobile multicast.,2012,12,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm12.html#WangCDW12,https://doi.org/10.1002/wcm.1023 +Maram Bani Younes,Traffic balancing-based path recommendation mechanisms in vehicular networks.,2016,16,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm16.html#YounesBR16,https://doi.org/10.1002/wcm.2570 +Zhimei Jiang,Incorporating proxy services into wide area cellular IP networks.,2001,1,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm1.html#JiangCKL01,https://doi.org/10.1002/wcm.20 +David González González,On the need for dynamic downlink intercell interference coordination for realistic Long Term Evolution deployments.,2014,14,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm14.html#GonzalezGRO14,https://doi.org/10.1002/wcm.2191 +Xiaoxuan Wang,The QoS Indicators Analysis of Integrated EUHT Wireless Communication System Based on Urban Rail Transit in High-Speed Scenario.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#WangJTZ18,https://doi.org/10.1155/2018/2359810 +Hanlin Deng,MAX-MIN aggregation in wireless sensor networks: mechanism and modeling.,2012,12,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm12.html#DengZLHL12,https://doi.org/10.1002/wcm.1000 +Weifa Liang,Network lifetime maximization for time-sensitive data gathering in wireless sensor networks with a mobile sink.,2013,13,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm13.html#LiangLX13,https://doi.org/10.1002/wcm.1179 +David Viamonte,Evaluation and optimisation of session setup delay for streaming services over 3G networks with quality of service support.,2008,8,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm8.html#ViamonteCPG08,https://doi.org/10.1002/wcm.455 +Khalim Amjad Meerja,Enhancing channel utilization by improving media access coordination in wireless local area networks.,2008,8,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm8.html#MeerjaS08,https://doi.org/10.1002/wcm.453 +Jianwei Niu 0002,A venues-aware message routing scheme for delay-tolerant networks.,2015,15,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm15.html#NiuLLSW15,https://doi.org/10.1002/wcm.2454 +Satyabrata Chakrabarti,Quality of service challenges for wireless mobile ad hoc networks.,2004,4,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm4.html#ChakrabartiM04,https://doi.org/10.1002/wcm.123 +Herman Sahota,A wireless sensor network for precision agriculture and its performance.,2011,11,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm11.html#SahotaKK11,https://doi.org/10.1002/wcm.1229 +Xihua Dong,RED theory for quality of service provisioning in wireless communications.,2014,14,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm14.html#DongLW14,https://doi.org/10.1002/wcm.1238 +Jinfeng Dou,PAS: probability and sub-optimal distance-based lifetime prolonging strategy for underwater acoustic sensor networks.,2008,8,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm8.html#DouZGC08,https://doi.org/10.1002/wcm.658 +Teerawat Issariyakul,Medium access control protocols for wireless mobile ad hoc networks: issues and approaches.,2003,3,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm3.html#IssariyakulHK03,https://doi.org/10.1002/wcm.118 +Antonio de la Oliva,Providing throughput guarantees in heterogeneous wireless mesh networks.,2014,14,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm14.html#OlivaBSZ14,https://doi.org/10.1002/wcm.2192 +Heeyoul Kim,A practical approach of ID-based cryptosystem in ad hoc networks.,2007,7,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm7.html#KimSY07,https://doi.org/10.1002/wcm.500 +Yue Wang 0014,On Carrier Sensing Accuracy and Range Scaling Laws in Nakagami Fading Channels.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#WangCZLCZ17,https://doi.org/10.1155/2017/7189090 +Sheng Gao,LTPPM: a location and trajectory privacy protection mechanism in participatory sensing.,2015,15,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm15.html#GaoMSZ15,https://doi.org/10.1002/wcm.2324 +Amr Alasaad,Replication schemes for peer-to-peer content in wireless mesh networks with infrastructure support.,2015,15,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm15.html#AlasaadGL15,https://doi.org/10.1002/wcm.2376 +Pengfei Sun,A simple iterative carrier frequency synchronization technique for OFDMA uplink transmissions.,2011,11,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm11.html#SunZ11,https://doi.org/10.1002/wcm.919 +Xiaoyang Liu,Wireless Sensor Network Dynamic Mathematics Modeling and Node Localization.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LiuL18,https://doi.org/10.1155/2018/1082398 +Wei Peng 0003,Capacity of distributed antenna network by using single-carrier frequency domain adaptive antenna array.,2014,14,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm14.html#PengA14,https://doi.org/10.1002/wcm.2223 +Ahmet Faruk Coskun,Conventional and modified TAS/OSTBC schemes in dual-hop fixed-gain amplify-and-forward relaying systems with imperfect feedback.,2016,16,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm16.html#CoskunK16a,https://doi.org/10.1002/wcm.2657 +Shengke Zeng,Concurrently Deniable Group Key Agreement and Its Application to Privacy-Preserving VANETs.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZengC18,https://doi.org/10.1155/2018/6870742 +Jianrong Bao,Optimized Power Allocation and Relay Location Selection in Cooperative Relay Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#BaoWL0T17,https://doi.org/10.1155/2017/9727360 +Jennifer Seberry,Williamson-Hadamard spreading sequences for DS-CDMA applications.,2003,3,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm3.html#SeberryWW03,https://doi.org/10.1002/wcm.143 +Annamalai Annamalai,Outage probability of cellular mobile radio systems with selective co-channel interference cancellation receiver in overloaded array environments.,2002,2,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm2.html#AnnamalaiS02,https://doi.org/10.1002/wcm.44 +Santiago Hernández Ramos,MQTT Security: A Novel Fuzzing Approach.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#RamosVL18,https://doi.org/10.1155/2018/8261746 +K. S. Kumar,On stochastic learning in predictive wireless ARQ.,2008,8,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm8.html#KumarCS08,https://doi.org/10.1002/wcm.534 +Geraldo Robson Mateus,Demand-driven server and service location in third generation mobile networks.,2007,7,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm7.html#MateusGL07,https://doi.org/10.1002/wcm.316 +Jyh-Horng Wen,The performances study of IEEE 802.11e to support QoS in channel error environment.,2012,12,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm12.html#WenW12,https://doi.org/10.1002/wcm.1070 +Xiaoyu Wang,Cognitive-Empowered Femtocells: An Intelligent Paradigm for Femtocell Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#WangHWP18,https://doi.org/10.1155/2018/3132424 +,Enabling technologies for the 'always best connected' concept.,2005,5,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm5.html#PassasPKBNTJA05,https://doi.org/10.1002/wcm.207 +Qi Li 0011,Traceable Ciphertext-Policy Attribute-Based Encryption with Verifiable Outsourced Decryption in eHealth Cloud.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LiZYZ18,https://doi.org/10.1155/2018/1701675 +Xianbo Chen,On the enhancements to IEEE 802.11 MAC and their suitability for safety-critical applications in VANET.,2010,10,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm10.html#ChenRM10,https://doi.org/10.1002/wcm.674 +Kawther Hassine,Access Point Backhaul Resource Aggregation as a Many-to-One Matching Game in Wireless Local Area Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#HassineFC17,https://doi.org/10.1155/2017/3523868 +Leonardo Jiménez Rodríguez,Multiple-frame precoding and multi-D mapping for BICM over ergodic NAF relay channels.,2011,11,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm11.html#RodriguezTL11,https://doi.org/10.1002/wcm.1242 +Oscar Esparza,An infrastructure for detecting and punishing malicious hosts using mobile agent watermarking.,2011,11,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm11.html#EsparzaMTS11,https://doi.org/10.1002/wcm.941 +Chunqiang Hu,A Secure and Scalable Data Communication Scheme in Smart Grids.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#HuLMHALLX18,https://doi.org/10.1155/2018/5816765 +Abd-Elhamid M. Taha,Managing connection costs in heterogeneous wireless networks.,2014,14,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm14.html#TahaHM14,https://doi.org/10.1002/wcm.2263 +Surachai Chieochan,Adaptive radio resource allocation in OFDMA systems: a survey of the state-of-the-art approaches.,2009,9,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm9.html#ChieochanH09,https://doi.org/10.1002/wcm.696 +Xuefei Peng,Energy Efficiency Maximization of Dynamic CoMP-JT Algorithm in Dense Small Cell Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#PengLX18,https://doi.org/10.1155/2018/8572489 +Yong Ju Won,A Study of an Iterative Channel Estimation Scheme of FS-FBMC System.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#WonOLK17,https://doi.org/10.1155/2017/6784142 +Vojislav B. Misic,Simple solutions may still be best: on the selection of working channels in a channel-hopping cognitive network.,2015,15,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm15.html#MisicKRKM15,https://doi.org/10.1002/wcm.2497 +Bin Han 0001,Optimal resource allocation for multiple network-coded two-way relay in orthogonal frequency division multiplexing systems.,2015,15,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm15.html#HanPJ015,https://doi.org/10.1002/wcm.2315 +Christelle Garnier,Spreading code allocation strategy for downlink multicarrier code division multiple access transmission in a correlated Rayleigh fading channel.,2014,14,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm14.html#GarnierDGS14,https://doi.org/10.1002/wcm.2222 +Xiaoxu Guo,Code acquisition of ZCZ-CDMA systems based on complete complementary codes.,2003,3,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm3.html#GuoCS03,https://doi.org/10.1002/wcm.142 +Farid Farahmand,Performance of vehicular delay-tolerant networks with relay nodes.,2011,11,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm11.html#FarahmandCPJR11,https://doi.org/10.1002/wcm.871 +Junyu Liu,DO-Fast: a round-robin opportunistic scheduling protocol for device-to-device communications.,2016,16,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm16.html#LiuSZWSS16,https://doi.org/10.1002/wcm.2551 +Lynn Aoude,Social-Aware Device-to-Device Offloading Based on Experimental Mobility and Content Similarity Models.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#AoudeDSFJ18,https://doi.org/10.1155/2018/5606829 +Ming-Fong Hsu,A unified spectrum sensing and throughput analysis model in cognitive radio networks.,2015,15,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm15.html#HsuWY15,https://doi.org/10.1002/wcm.2417 +Guan Qing Yang,Multilayer Learning Network for Modulation Classification Assisted with Frequency Offset Cancellation in Satellite to Ground Link.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#Yang18,https://doi.org/10.1155/2018/1372439 +Bin Hu 0001,Special issue: pervasive computing technology and its applications.,2010,10,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm10.html#Hu10,https://doi.org/10.1002/wcm.1052 +Kamil Staniec,LoRa Performance under Variable Interference and Heavy-Multipath Conditions.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#StaniecK18,https://doi.org/10.1155/2018/6931083 +Xiaojiang Chen,Efficient Network Coding with Interference-Awareness and Neighbor States Updating in Wireless Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#ChenZXCLMF17,https://doi.org/10.1155/2017/4974165 +Wei Liang 0001,Survey and experiments of WIA-PA specification of industrial wireless network.,2011,11,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm11.html#LiangZXWZY11,https://doi.org/10.1002/wcm.976 +Li Zhu,Communications and Networking for Connected Vehicles.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhuYLWBZ18,https://doi.org/10.1155/2018/5612785 +Ken C. K. Lee,Pervasive data access in wireless and mobile computing environments.,2008,8,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm8.html#LeeLM08,https://doi.org/10.1002/wcm.424 +Chansu Yu,Energy efficient routing protocols for mobile ad hoc networks.,2003,3,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm3.html#YuLY03,https://doi.org/10.1002/wcm.119 +Marina Mondin,A software radio-based reconfigurable transponder for space applications.,2002,2,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm2.html#MondinPS02,https://doi.org/10.1002/wcm.104 +Thimma V. J. Ganesh Babu,Performance modeling of QoS in a multicode multicarrier CDMA wireless network with fading.,2011,11,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm11.html#BabuAH11,https://doi.org/10.1002/wcm.792 +Chunhong Duo,Energy Cooperation in Ultradense Network Powered by Renewable Energy Based on Cluster and Learning Strategy.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#DuoLLL17,https://doi.org/10.1155/2017/2794324 +Lingyang Song,Emerging techniques for wireless vehicular communications.,2011,11,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm11.html#SongVJWC11,https://doi.org/10.1002/wcm.1166 +Yi-Feng Huang,Physical layer architectures for machine type communication networks - a survey.,2016,16,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm16.html#HuangC16a,https://doi.org/10.1002/wcm.2752 +Shabbir Ahmed,HUBCODE: hub-based forwarding using network coding in delay tolerant networks.,2013,13,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm13.html#AhmedK13,https://doi.org/10.1002/wcm.1143 +Haji M. Furqan,Adaptive OFDM-IM for Enhancing Physical Layer Security and Spectral Efficiency of Future Wireless Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#FurqanHA18,https://doi.org/10.1155/2018/3178303 +Ataul Bari,Optimal placement and routing strategies for resilient two-tiered sensor networks.,2009,9,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm9.html#BariJB09,https://doi.org/10.1002/wcm.639 +Julio Aráuz,Discrete Rayleigh fading channel modeling.,2004,4,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm4.html#ArauzKL04,https://doi.org/10.1002/wcm.185 +Kai Lin,Energy equilibrium based on corona structure for wireless sensor networks.,2012,12,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm12.html#LinC12,https://doi.org/10.1002/wcm.1049 +Tsang-Ling Sheu,Bandwidth negotiation scheduling with dynamic zone adjustment for 802.16j mobile multihop relay networks.,2014,14,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm14.html#SheuLW14,https://doi.org/10.1002/wcm.2261 +Maria Angeles Vázquez-Castro,Channel modeling for satellite and HAPS system design.,2002,2,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm2.html#Vazquez-CastroPA02,https://doi.org/10.1002/wcm.58 +Hung-Nguyen Manh,Landmark-based device calibration and region-based modeling for RSS-based localization.,2016,16,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm16.html#ManhHH16,https://doi.org/10.1002/wcm.2647 +Zoltán Jakó,Outage probability in Poisson-cluster-based LTE two-tier femtocell networks.,2015,15,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm15.html#JakoJ15,https://doi.org/10.1002/wcm.2485 +Zohar Naor,Multicast video streaming for 4G wireless networks.,2007,7,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm7.html#Naor07,https://doi.org/10.1002/wcm.472 +Yanchao Zhao,Compressed RSS Measurement for Communication and Sensing in the Internet of Things.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#ZhaoL0LC17,https://doi.org/10.1155/2017/6345316 +Ya-Chin Sung,NCTU-VT: a freeware for wireless VoIP performance measurement.,2012,12,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm12.html#SungLLS12,https://doi.org/10.1002/wcm.963 +Uthman A. Baroudi,Adaptive admission/congestion control policies for CDMA-based wireless internet.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#BaroudiE06,https://doi.org/10.1002/wcm.239 +Peng-Jun Wan,Approximation algorithms for conflict-free channel assignment in wireless ad hoc networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#WanYJK06,https://doi.org/10.1002/wcm.380 +Tamer Nadeem,Mobility control for throughput maximization in ad hoc networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#NadeemP06,https://doi.org/10.1002/wcm.431 +Djamel Djenouri,Struggling against selfishness and black hole attacks in MANETs.,2008,8,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm8.html#DjenouriB08,https://doi.org/10.1002/wcm.493 +Juan A. Sánchez,Energy-efficient geographic multicast routing for error-prone wireless sensor networks.,2009,9,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm9.html#SanchezR09,https://doi.org/10.1002/wcm.548 +Yinggang Du,Investigation on the performance of space-time block coded ultrawide band communication systems.,2005,5,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm5.html#DuC05,https://doi.org/10.1002/wcm.280 +Ki Won Sung,Determination of the multi-slot transmission in Bluetooth systems with the estimation of the channel error probability.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#SungL06,https://doi.org/10.1002/wcm.243 +Yalda Farazmand,A coalitional game-based relay load balancing and power allocation scheme in decode-and-forward cellular relay networks.,2016,16,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm16.html#FarazmandA16,https://doi.org/10.1002/wcm.2597 +Caglar Terzi,Tree-based channel assignment schemes for multi-channel wireless sensor networks.,2016,16,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm16.html#TerziK16,https://doi.org/10.1002/wcm.2646 +Che-Cheng Chang,Distributed trigger counting algorithms for arbitrary network topology.,2016,16,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm16.html#ChangT16,https://doi.org/10.1002/wcm.2698 +Tao Hong 0004,mmWave Measurement of RF Reflectors for 5G Green Communications.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#HongYLQ18,https://doi.org/10.1155/2018/8217839 +Roberto Rodriguez-Zurrunero,An Adaptive Scheduler for Real-Time Operating Systems to Extend WSN Nodes Lifetime.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#Rodriguez-Zurrunero18,https://doi.org/10.1155/2018/4185650 +Ved P. Kafle,IIPP: integrated IP paging protocol with a power save mechanism.,2007,7,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm7.html#KaflePCKY07,https://doi.org/10.1002/wcm.371 +Sunghyun Choi,Special Issue: Emerging WLAN Applications and Technologies.,2004,4,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm4.html#ChoiNK04,https://doi.org/10.1002/wcm.256 +Zhonglin Chen,A Security Scheme of 5G Ultradense Network Based on the Implicit Certificate.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ChenCXH18,https://doi.org/10.1155/2018/8562904 +Petros S. Bithas,User selection scheme with limited feedback processing and outdated CSI in multiuser relay networks.,2016,16,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm16.html#BithasR16,https://doi.org/10.1002/wcm.2719 +Yusuke Koda,Measurement Method of Temporal Attenuation by Human Body in Off-the-Shelf 60 GHz WLAN with HMM-Based Transmission State Estimation.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#KodaYNM18,https://doi.org/10.1155/2018/7846936 +Xiaochen Li,Queue length aware power control for delay- constrained communication over fading channels.,2012,12,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm12.html#LiDW12,https://doi.org/10.1002/wcm.1025 +Antonios Argyriou,A joint performance model of TCP and TFRC with mobility management protocols.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#Argyriou06,https://doi.org/10.1002/wcm.410 +Shichang Xuan,Mathematical Performance Evaluation Model for Mobile Network Firewall Based on Queuing.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#XuanMZYY18,https://doi.org/10.1155/2018/8130152 +Yong-Hui Li,A full rate space-time turbo codes and its near-optimum decoding algorithms.,2003,3,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm3.html#LiL03,https://doi.org/10.1002/wcm.152 +Qihua Wang,An Anonymous Multireceiver with Online/Offline Identity-Based Encryption.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#WangLW18,https://doi.org/10.1155/2018/5702068 +Ivan Stojmenovic,Power and cost aware localized routing with guaranteed delivery in unit graph based ad hoc networks.,2004,4,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm4.html#StojmenovicD04,https://doi.org/10.1002/wcm.162 +Bing-Hong Liu,Virtual-coordinate-based delivery-guaranteed routing protocol in three-dimensional wireless sensor networks.,2015,15,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm15.html#LiuPHC15,https://doi.org/10.1002/wcm.2336 +Yan Zhang,Recent advances in wireless communications and networks.,2010,10,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm10.html#ZhangMZ10,https://doi.org/10.1002/wcm.909 +Ahmad M. Manasrah,Workflow Scheduling Using Hybrid GA-PSO Algorithm in Cloud Computing.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ManasrahA18,https://doi.org/10.1155/2018/1934784 +Jianying Zheng,Deterministic deployment based on information coverage in wireless sensor networks.,2014,14,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm14.html#ZhengHWX14a,https://doi.org/10.1002/wcm.2304 +Ben Lu,Dynamic channel management in MIMO OFDM cellular systems.,2004,4,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm4.html#LuWGM04,https://doi.org/10.1002/wcm.255 +Mohamed-Slim Alouini,Special issue: Adaptive antennas and MIMO systems.,2002,2,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm2.html#AlouiniMV02,https://doi.org/10.1002/wcm.105 +Chung-Ming Huang,A Proactive mobile-initiated fast handoff scheme using the multihomed approach.,2009,9,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm9.html#HuangCL09,https://doi.org/10.1002/wcm.684 +Rudolf Rabenstein,Acoustic Source Localization under Variable Speed of Sound Conditions.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#RabensteinA17,https://doi.org/10.1155/2017/9524943 +Aitor Almeida,An IoT-Aware Architecture for Collecting and Managing Data Related to Elderly Behavior.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#AlmeidaFMMPR17,https://doi.org/10.1155/2017/5051915 +Jianxiong Yin,Transient data delivery using fine-grained mobility data in spontaneous smartphone networks.,2015,15,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm15.html#YinCTC15,https://doi.org/10.1002/wcm.2390 +Hamed M. K. Alazemi,A stochastic dynamic controller for random early detection queues using a Kalman filter algorithm.,2009,9,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm9.html#AlazemiHZ09,https://doi.org/10.1002/wcm.740 +Ruoyu Su,An energy-efficient asynchronous wake-up scheme for underwater acoustic sensor networks.,2016,16,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm16.html#SuVL16,https://doi.org/10.1002/wcm.2589 +Waleed Alsalih,Placement of multiple mobile data collectors in underwater acoustic sensor networks.,2008,8,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm8.html#AlsalihHA08,https://doi.org/10.1002/wcm.656 +Yanan Chang,Routing and transmission scheduling for minimizing broadcast delay in multirate wireless mesh networks using directional antennas.,2015,15,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm15.html#ChangLJZ15,https://doi.org/10.1002/wcm.2318 +Weilong Hu,Security-Reliability Tradeoff Analysis in Multisource Multirelay Cooperative Networks with Multiple Cochannel Interferers.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#HuSL18,https://doi.org/10.1155/2018/2379427 +Nihat Kabaoglu,Iterative Receiver with Low Complexity for Downlink Multicarrier Communications over Rapidly Time-Varying Channels.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#KabaogluEA18,https://doi.org/10.1155/2018/7292019 +Pengda Huang,An improved location service scheme in urban environments with the combination of GPS and mobile stations.,2014,14,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm14.html#HuangP14,https://doi.org/10.1002/wcm.2232 +Fiona Jiazi Liu,Physical Layer Authentication Enhancement Using Maximum SNR Ratio Based Cooperative AF Relaying.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#Liu0T17,https://doi.org/10.1155/2017/7206187 +Jiun-Ren Lin,iPTT: peer-to-peer push-to-talk for VoIP.,2008,8,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm8.html#LinPW08,https://doi.org/10.1002/wcm.588 +Alireza Naimi,K-factor estimation in shadowed Ricean mobile communication channels.,2009,9,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm9.html#NaimiA09,https://doi.org/10.1002/wcm.725 +Mehrdad Dianati,Scheduling with base station diversity and fairness analysis for the downlink of CDMA cellular networks.,2007,7,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm7.html#DianatiSN07,https://doi.org/10.1002/wcm.372 +Afshin Behzadan,Utility-driven construction of balanced data routing trees in wireless sensor networks.,2014,14,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm14.html#BehzadanAWM14,https://doi.org/10.1002/wcm.2235 +Petri Mähönen,Two-layer LMDS system architecture: DAVIC-based approach and analysis.,2002,2,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm2.html#MahonenJSSMS02,https://doi.org/10.1002/wcm.42 +S. A. M. Makki,LEO satellite communication networks - a routing approach.,2003,3,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm3.html#MakkiPD03,https://doi.org/10.1002/wcm.97 +Chun-Yuah Chiu,A stability aware cluster routing protocol for mobile ad hoc networks.,2003,3,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm3.html#ChiuCW03,https://doi.org/10.1002/wcm.132 +Zhaoming Li,Simplex Cubature Kalman-Consensus Filter for Distributed Space Target Tracking.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LiYDL18,https://doi.org/10.1155/2018/1476426 +Han Zhang,Time-varying channel estimation for MIMO/OFDM systems using superimposed training and basis expansion models.,2014,14,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm14.html#ZhangCPW14,https://doi.org/10.1002/wcm.2243 +Mario R. Casu,Implementation aspects of a transmitted-reference UWB receiver.,2005,5,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm5.html#CasuD05,https://doi.org/10.1002/wcm.309 +Hamid Aghvami,Editorial.,2003,3,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm3.html#AghvamiGHZ03,https://doi.org/10.1002/wcm.137 +Luminita Moraru,Path quality detection algorithms for near optimal geographic routing in sensor networks with obstacles.,2010,10,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm10.html#MoraruLNR10,https://doi.org/10.1002/wcm.727 +Dong Qin,Average SEP of AF Relaying in Nakagami-m Fading Environments.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#QinWZ18,https://doi.org/10.1155/2018/6581827 +Phone Lin,A SIP-based mobility management platform for WLAN location-aware broadcasting and multicasting applications.,2005,5,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm5.html#LinTL05,https://doi.org/10.1002/wcm.333 +Yi-Bing Lin,NTP-PoCT: a conformance test tool for push-to-talk over cellular network.,2008,8,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm8.html#LinWLH08,https://doi.org/10.1002/wcm.496 +Qi Zhao,Multiactivation Pooling Method in Convolutional Neural Networks for Image Recognition.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhaoLZF18,https://doi.org/10.1155/2018/8196906 +Feng Tian,Caching algorithms for broadcasting and multicasting in disruption tolerant networks.,2016,16,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm16.html#TianLZRCXG16,https://doi.org/10.1002/wcm.2761 +Hee-Tae Roh,Joint relay node placement and node scheduling in wireless networks with a relay node with controllable mobility.,2012,12,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm12.html#RohL12,https://doi.org/10.1002/wcm.1007 +Naimah Yaakob,Distributed collision control with the integration of packet size for congestion control in wireless sensor networks.,2016,16,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm16.html#YaakobKAHH16,https://doi.org/10.1002/wcm.2488 +Hong Xu,Bit error rate for rectangular QAM with arbitrary constellation mapping in Nakagami-m channels.,2008,8,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm8.html#XuBS08,https://doi.org/10.1002/wcm.437 +Ivaylo Haratcherev,Automatic IEEE 802.11 rate control for streaming applications.,2005,5,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm5.html#HaratcherevTLLS05,https://doi.org/10.1002/wcm.301 +Wei Yang,Performance analysis of uplink spatial multiplexing MIMO MT-CDMA over multipath fading channels.,2013,13,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm13.html#YangGX13,https://doi.org/10.1002/wcm.1100 +Sofiane Hamrioui,A Systematic Review of Security Mechanisms for Big Data in Health and New Alternatives for Hospitals.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#HamriouiDGSR17,https://doi.org/10.1155/2017/2306458 +Rupinder Singh,Fuzzy Based Advanced Hybrid Intrusion Detection System to Detect Malicious Nodes in Wireless Sensor Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#SinghSS17,https://doi.org/10.1155/2017/3548607 +Vojislav B. Misic,Performance of adaptive bridge scheduling in a scatternet with a slave-slave bridge.,2004,4,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm4.html#MisicMC04,https://doi.org/10.1002/wcm.164 +Peng Li 0017,Lifetime optimization for reliable broadcast and multicast in wireless ad hoc networks.,2014,14,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm14.html#LiGHS14,https://doi.org/10.1002/wcm.1247 +Irshad A. Qaimkhani,A novel QoS-aware MAC protocol for voice services over IEEE 802.11-based WLANs.,2009,9,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm9.html#QaimkhaniH09,https://doi.org/10.1002/wcm.643 +Karim Seada,Geographic rendezvous-based architectures for emergency data dissemination.,2010,10,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm10.html#SeadaH10,https://doi.org/10.1002/wcm.680 +Amer M. Magableh,Closed-form expressions for the average channel capacity of the α- λ6* fading model under different adaptive transmission protocols.,2015,15,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm15.html#MagablehM15,https://doi.org/10.1002/wcm.2332 +Jianying Zheng,The effects of wireless communication failures on group behavior of mobile sensors.,2014,14,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm14.html#ZhengHWX14,https://doi.org/10.1002/wcm.2189 +Su Fong Chien,Mathematical analysis of energy efficiency optimality in multi-user OFDM systems.,2016,16,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm16.html#ChienTYT16,https://doi.org/10.1002/wcm.2516 +Francesco Malandrino,Discovery and provision of content in vehicular networks.,2013,13,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm13.html#MalandrinoCC13,https://doi.org/10.1002/wcm.2198 +Adriana Lipovac,Modeling OFDM irreducible BER with impact of CP length and CFO in multipath channel with small delay dispersion.,2016,16,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm16.html#LipovacLM16,https://doi.org/10.1002/wcm.2586 +Ki Won Sung,Distributed *lot allocation with crossed slots in CDMA-TDD systems.,2010,10,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm10.html#SungL10,https://doi.org/10.1002/wcm.764 +Wenjia Wu,Energy-Efficient User Association with Congestion Avoidance and Migration Constraint in Green WLANs.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#WuLDYL18,https://doi.org/10.1155/2018/9596141 +Alfonso González-Briones,A Framework for Knowledge Discovery from Wireless Sensor Networks in Rural Environments: A Crop Irrigation Systems Case Study.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#Gonzalez-Briones18,https://doi.org/10.1155/2018/6089280 +Linbo Zhai,Distributed Schemes for Crowdsourcing-Based Sensing Task Assignment in Cognitive Radio Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#ZhaiWL17,https://doi.org/10.1155/2017/5017653 +Yuan Xue,Channel-relay price pair: towards arbitrating incentives in wireless ad hoc networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#XueLN06,https://doi.org/10.1002/wcm.383 +Wenxian Jiang,A Dynamically Reconfigurable Wireless Sensor Network Testbed for Multiple Routing Protocols.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#JiangGW17,https://doi.org/10.1155/2017/1594270 +Shaojian Fu,Signaling cost and performance of SIGMA: A seamless handover scheme for data networks.,2005,5,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm5.html#FuAML05,https://doi.org/10.1002/wcm.340 +Parag S. Mogre,CORE: centrally optimized routing extensions for efficient bandwidth management and network coding in the IEEE 802.16 MeSH mode.,2011,11,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm11.html#MogredHS11,https://doi.org/10.1002/wcm.985 +Yantao Sun,MatrixDCN: a high performance network architecture for large-scale cloud data centers.,2016,16,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm16.html#SunCPHA16,https://doi.org/10.1002/wcm.2579 +Min-Te Sun,Reliable MAC layer multicast in IEEE 802.11 wireless networks.,2003,3,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm3.html#SunHWAL03,https://doi.org/10.1002/wcm.129 +Anthony Vetro,Rate-reduction transcoding design for wireless video streaming.,2002,2,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm2.html#VetroCC02,https://doi.org/10.1002/wcm.88 +Naghma Khatoon,Mobility Aware Energy Efficient Clustering for MANET: A Bio-Inspired Approach with Particle Swarm Optimization.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#KhatoonA17,https://doi.org/10.1155/2017/1903190 +Yingshu Li,On greedy construction of connected dominating sets in wireless networks.,2005,5,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm5.html#LiTWYWD05,https://doi.org/10.1002/wcm.356 +Xuedong Liang,A game-theoretic approach for relay assignment over distributed wireless networks.,2011,11,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm11.html#LiangCL11,https://doi.org/10.1002/wcm.1225 +Wooseong Kim,CoRoute: a new cognitive anypath vehicular routing protocol.,2011,11,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm11.html#KimGOLK11,https://doi.org/10.1002/wcm.1231 +Haixia Zhang 0001,A novel wideband space-time channel simulator based on the geometrical one-ring model with applications in MIMO-OFDM systems.,2010,10,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm10.html#ZhangYPWN10,https://doi.org/10.1002/wcm.787 +Bongkyoung Kwon,Orthogonal frequency division multiple access resource allocation in mobile multihop relay networks using an adaptive frame structure.,2013,13,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm13.html#KwonBLC13,https://doi.org/10.1002/wcm.1156 +Ping Zhang 0003,Special issue on Asia-Pacific B3G R and D activities and technology innovations.,2007,7,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm7.html#ZhangWML07,https://doi.org/10.1002/wcm.556 +Hua Zhang 0016,Adaptive subcarrier allocation and bit loading for voice/data transmission in multiuser OFDM systems.,2009,9,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm9.html#ZhangBZ09,https://doi.org/10.1002/wcm.637 +Rodney Martinez Alonso,IoT-Based Management Platform for Real-Time Spectrum and Energy Optimization of Broadcasting Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#AlonsoPPDMNJ18,https://doi.org/10.1155/2018/7287641 +Mohammed Almulla,An efficient k-Means authentication scheme for digital certificates revocation validation in vehicular ad hoc networks.,2014,14,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm14.html#AlmullaZBR14,https://doi.org/10.1002/wcm.2298 +Ibrahim W. Habib,Wireless technologies advances for emergency and rural communications.,2010,10,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm10.html#HabibM10,https://doi.org/10.1002/wcm.1040 +Neda Nikaein,QoS-based adaptive error control for wireless networks.,2003,3,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm3.html#NikaeinB03,https://doi.org/10.1002/wcm.63 +Jianhua He,Performance analysis of DSRC priority mechanism for road safety applications in vehicular networks.,2011,11,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm11.html#HeTOC11,https://doi.org/10.1002/wcm.821 +Wenjie Zhang,Cluster-based adaptive multispectrum sensing and access in cognitive radio networks.,2015,15,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm15.html#ZhangY15,https://doi.org/10.1002/wcm.2319 +Hrishikesh Gossain,Cross-layer directional antenna MAC protocol for wireless ad hoc networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#GossainCJA06,https://doi.org/10.1002/wcm.377 +Le Wang,Detection of man-in-the-middle attacks using physical layer wireless security techniques.,2016,16,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm16.html#WangW16,https://doi.org/10.1002/wcm.2527 +Chi-Hsien Yen,An adaptive multichannel protocol for large-scale machine-to-machine networks.,2015,15,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm15.html#YenHC15,https://doi.org/10.1002/wcm.2496 +Carlos A. Gutiérrez-Díaz-de-León,The generalized method of equal areas for the design of sum-of-cisoids simulators for mobile Rayleigh fading channels with arbitrary Doppler spectra.,2013,13,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm13.html#Gutierrez-Diaz-de-LeonP13,https://doi.org/10.1002/wcm.1154 +Eric Hsiao-Kuang Wu,Pragmatic general multicast congestion control protocol for wireless networks.,2005,5,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm5.html#WuY05,https://doi.org/10.1002/wcm.305 +A. Dhammika S. Jayalath,Use of data permutation to reduce the peak-to-average power ratio of an OFDM signal.,2002,2,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm2.html#JayalathT02,https://doi.org/10.1002/wcm.47 +Andrea Fantini,Rock Falls Impacting Railway Tracks: Detection Analysis through an Artificial Intelligence Camera Prototype.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#FantiniFM17,https://doi.org/10.1155/2017/9386928 +Yunfei Chen,Collaborative spectrum sensing in the presence of secondary user interferences for lognormal shadowing.,2012,12,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm12.html#Chen12,https://doi.org/10.1002/wcm.979 +Andrew Logothetis,SINR estimation and orthogonality factor calculation of DS-CDMA signals in MIMO channels employing linear transceiver filters.,2007,7,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm7.html#LogothetisO07,https://doi.org/10.1002/wcm.321 +Ashish Patil,A node discovery protocol for ad hoc underwater acoustic networks.,2013,13,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm13.html#PatilS13,https://doi.org/10.1002/wcm.2206 +Muzaffer Kanaan,In-Body Ranging with Ultra-Wideband Signals: Techniques and Modeling of the Ranging Error.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#KanaanS17,https://doi.org/10.1155/2017/4313748 +Jee-Hoon Kim,Bandwidth- efficient space-time coded cooperation for resource-constrained networks.,2011,11,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm11.html#KimVS11,https://doi.org/10.1002/wcm.932 +Kazuaki Takeda 0001,Joint Tx/iterative Rx FDE for broadband direct-sequence code division multiple access.,2010,10,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm10.html#TakedaA10,https://doi.org/10.1002/wcm.1063 +Yunxia Feng,A weighted interference estimation scheme for interface-switching wireless mesh networks.,2009,9,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm9.html#FengLW09,https://doi.org/10.1002/wcm.628 +Xinxin Feng,A game approach for cooperative spectrum sharing in cognitive radio networks.,2015,15,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm15.html#FengWW15,https://doi.org/10.1002/wcm.2364 +Jad El-Najjar,Coding-aware routing and scheduling in WiMAX-based mesh networks: a cross-layer design approach.,2013,13,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm13.html#El-NajjarAJ13,https://doi.org/10.1002/wcm.1121 +Moneeb Gohar,Distributed Group-Based Mobility Management Scheme in Wireless Body Area Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#GoharAAC17,https://doi.org/10.1155/2017/4180801 +Juan Moreno García-Loygorri,Wideband Channel Modeling for mm-Wave inside Trains for 5G-Related Applications.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#Garcia-Loygorri18,https://doi.org/10.1155/2018/6916954 +Seyed Alireza Banani,Capacity maximization in eigen-MIMO with channel estimation and CSI feedback-link throughput constraint.,2014,14,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm14.html#BananiV14,https://doi.org/10.1002/wcm.2297 +Ammar Hawbani,GLT: Grouping Based Location Tracking for Object Tracking Sensor Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#HawbaniWKKGAG17,https://doi.org/10.1155/2017/4509697 +Mariusz Glabowski,Modelling of Multiservice Networks with Separated Resources and Overflow of Adaptive Traffic.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#GlabowskiKS18,https://doi.org/10.1155/2018/7870164 +Hui Cheng,Stability-aware multi-metric clustering in mobile ad hoc networks with group mobility.,2009,9,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm9.html#ChengCWDY09,https://doi.org/10.1002/wcm.627 +Dmitry Kozyrev,Mobility-Centric Analysis of Communication Offloading for Heterogeneous Internet of Things Devices.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#KozyrevOMREMAK18,https://doi.org/10.1155/2018/3761075 +Alexander Zimmermann 0001,IP address assignment in wireless mesh networks.,2011,11,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm11.html#ZimmermannHS11,https://doi.org/10.1002/wcm.982 +Rongfei Fan,Adaptive channel selection and slot length configuration in cognitive radio.,2016,16,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm16.html#FanAJB16,https://doi.org/10.1002/wcm.2713 +Imane Daha Belghiti,Coalitional game-based behavior analysis for spectrum access in cognitive radios.,2016,16,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm16.html#BelghitiEBKB16,https://doi.org/10.1002/wcm.2658 +Liqiang Qiao,Modeling and Analysis of Safety Messages Propagation in Platoon-Based Vehicular Cyber-Physical Systems.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#QiaoSCG18,https://doi.org/10.1155/2018/5641258 +Mohamed Saad,Optimal Multicommodity Spectrum-Efficient Routing in Multihop Wireless Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#Saad18,https://doi.org/10.1155/2018/7985756 +Alessandro Andreadis,High-capacity resource sharing schemes for broadband wireless networks.,2004,4,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm4.html#AndreadisBGP04,https://doi.org/10.1002/wcm.184 +Jyh-Horng Wen,SLM-based data position permutation method for PAPR reduction in OFDM systems.,2013,13,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm13.html#WenLK13,https://doi.org/10.1002/wcm.709 +Ghada Alnifie,MULEPRO: a multi-channel response to jamming attacks in wireless sensor networks.,2010,10,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm10.html#AlnifieS10,https://doi.org/10.1002/wcm.734 +Ahmed H. Abd El-Malek,Transmit antenna selection of correlated MIMO multiuser cognitive radio networks in Nakagami-m fading channels.,2016,16,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm16.html#El-MalekAZA16,https://doi.org/10.1002/wcm.2670 +Mohammad Hayajneh,DCLRRA: Distributed cross-layer routing and resource allocation techniques for OFDMA-based broadband wireless networks.,2012,12,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm12.html#HayajnehG12,https://doi.org/10.1002/wcm.1021 +T. Charles Clancy,Formalizing the interference temperature model.,2007,7,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm7.html#Clancy07,https://doi.org/10.1002/wcm.482 +Imad Barhumi,Turbo equalization of doubly selective channels.,2014,14,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm14.html#Barhumi14,https://doi.org/10.1002/wcm.2306 +Maruf Pasha,Framework for E-Health Systems in IoT-Based Environments.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#PashaS18,https://doi.org/10.1155/2018/6183732 +Dukju Ko,A traffic control system for IEEE 802.11 networks based on available bandwidth estimation.,2008,8,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm8.html#KoHCH08,https://doi.org/10.1002/wcm.459 +Xiaohe Li,A Research on Fast Face Feature Points Detection on Smart Mobile Devices.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LiZW18,https://doi.org/10.1155/2018/9729014 +Yu-Lun Chiu,Low peak-to-average power ratio and efficient multicarrier spread spectrum transceivers using hybrid and quadrature cyclic shift orthogonal keying.,2013,13,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm13.html#ChiuHD13,https://doi.org/10.1002/wcm.1200 +Bin Liu 0028,Congestion-Optimal WiFi Offloading with User Mobility Management in Smart Communications.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LiuZTZ18,https://doi.org/10.1155/2018/9297536 +Min Kyu Park,Power allocation and call admission control in multi-class traffic DS-CDMA systems with imperfect power control.,2007,7,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm7.html#ParkOL07,https://doi.org/10.1002/wcm.405 +Hussein Saad,Cooperative Q-learning techniques for distributed online power allocation in femtocell networks.,2015,15,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm15.html#SaadME15,https://doi.org/10.1002/wcm.2470 +Jian Li,LAKER: learning from past actions to guide future behaviors in ad hoc routing.,2007,7,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm7.html#LiM07a,https://doi.org/10.1002/wcm.368 +Tain-Sao Chang,Pre-filtering technique for MAI cancellation in MC-CDMA systems.,2013,13,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm13.html#ChangYYW13,https://doi.org/10.1002/wcm.1095 +Neng Ye,Uplink Nonorthogonal Multiple Access Technologies Toward 5G: A Survey.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#YeHZW18,https://doi.org/10.1155/2018/6187580 +Phet Aimtongkham,Congestion Control and Prediction Schemes Using Fuzzy Logic System with Adaptive Membership Function in Wireless Sensor Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#AimtongkhamNS18,https://doi.org/10.1155/2018/6421717 +Xuanli Wu,Channel estimation algorithms for cooperative spectrum sensing in amplify-and-forward cooperative system.,2014,14,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm14.html#WuLLS14,https://doi.org/10.1002/wcm.2307 +Alvaro Palomo Navarro,Combined FRM and GDFT filter bank designs for improved nonuniform DSA channelisation.,2016,16,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm16.html#NavarroFV16,https://doi.org/10.1002/wcm.2608 +Mei-Hsuan Lu,A time-based adaptive retry strategy for video streaming in 802.11 WLANs.,2007,7,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm7.html#LuSC07,https://doi.org/10.1002/wcm.473 +Chi-Chang Chen,A Novel Data Collection Method with Recharge Plan for Rechargeable Wireless Sensor Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#Chen18,https://doi.org/10.1155/2018/7419182 +Min Chen 0003,Receiver-oriented load-balancing and reliable routing in wireless sensor networks.,2009,9,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm9.html#ChenLMK09,https://doi.org/10.1002/wcm.543 +Jia-Ning Luo,Unchained Cellular Obfuscation Areas for Location Privacy in Continuous Location-Based Service Queries.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#LuoY17,https://doi.org/10.1155/2017/7391982 +Wenjuan Liu,End-to-end delay and packet drop rate performance for a wireless sensor network with a cluster-tree topology.,2014,14,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm14.html#LiuZZ14,https://doi.org/10.1002/wcm.2230 +Wen-Tzu Chen,Adjacent channel interference in a macrocell/microcell WCDMA system.,2009,9,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm9.html#Chen09,https://doi.org/10.1002/wcm.596 +Ke Zhang 0007,A Provably Secure Anonymous Authenticated Key Exchange Protocol Based on ECC for Wireless Sensor Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhangXW18,https://doi.org/10.1155/2018/2484268 +Xu Xu,Network throughput maximization in unreliable wireless sensor networks with minimal remote data transfer cost.,2016,16,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm16.html#XuLJX16,https://doi.org/10.1002/wcm.2592 +Fang-Jing Wu,Energy-conserving data gathering by mobile mules in a spatially separated wireless sensor network.,2013,13,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm13.html#WuT13,https://doi.org/10.1002/wcm.1184 +Yan Huo,Re-ADP: Real-Time Data Aggregation with Adaptive ω*-Event Differential Privacy for Fog Computing.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#HuoYL18,https://doi.org/10.1155/2018/6285719 +Paul J. M. Havinga,Energy-efficient wireless networking for multimedia applications.,2001,1,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm1.html#HavingaS01,https://doi.org/10.1002/wcm.9 +Peng Yu 0001,Self-Organized Cell Outage Detection Architecture and Approach for 5G H-CRAN.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#YuZZLFQ18,https://doi.org/10.1155/2018/6201386 +Israat Tanzeena Haque,Localized energy efficient routing in mobile ad hoc networks.,2007,7,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm7.html#HaqueA07,https://doi.org/10.1002/wcm.408 +Jing (Selena) He,Greedy construction of load-balanced virtual backbones in wireless sensor networks.,2014,14,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm14.html#HeJPL14,https://doi.org/10.1002/wcm.2218 +Keng Teck Ma,Improving data centric storage with diffuse caching in wireless sensor networks.,2009,9,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm9.html#MaCLT09,https://doi.org/10.1002/wcm.614 +Ming-Shen Jian,On-demand flow regulated routing for ad hoc wireless networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#JianWL06,https://doi.org/10.1002/wcm.269 +Ismail Güvenç,Fundamental limits and improved algorithms for linear least-squares wireless position estimation.,2012,12,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm12.html#GuvencGS12,https://doi.org/10.1002/wcm.1029 +Jian Qiao,CSMA/CA-based medium access control for indoor millimeter wave networks.,2016,16,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm16.html#QiaoSMCSZ16,https://doi.org/10.1002/wcm.2492 +Liuguo Yin,Code-Hopping Based Transmission Scheme for Wireless Physical-Layer Security.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#YinH18,https://doi.org/10.1155/2018/7063758 +Chih-Shun Hsu,Design and performance analysis of leader election and initialization protocols on ad hoc networks.,2003,3,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm3.html#HsuS03,https://doi.org/10.1002/wcm.133 +Vittorio Astarita,The Use of Adaptive Traffic Signal Systems Based on Floating Car Data.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#AstaritaGGV17,https://doi.org/10.1155/2017/4617451 +Nathan Blaunstein,Spectral properties of signal fading and Doppler spectra distribution in urban mobile communication links.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#BlaunsteinB06,https://doi.org/10.1002/wcm.268 +Fredrik Gunnarsson,Fundamental limitations of power control and radio resource management in wireless networks.,2004,4,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm4.html#Gunnarsson04,https://doi.org/10.1002/wcm.198 +Felicia Engmann,Prolonging the Lifetime of Wireless Sensor Networks: A Review of Current Techniques.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#EngmannKAAB18,https://doi.org/10.1155/2018/8035065 +Honglin Hu,Performance evaluation of distributed-antenna communications systems using beam-hopping.,2005,5,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm5.html#HuZY05,https://doi.org/10.1002/wcm.277 +Tao Shu,A throughput-efficient and channel-adaptive scheduling scheme in voice/data DS-CDMA networks with transmission power constraints.,2003,3,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm3.html#ShuN03,https://doi.org/10.1002/wcm.178 +Show-Shiow Tzeng,QoS provisioning for multiple non-real-time services in cellular wireless networks.,2011,11,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm11.html#TzengL11,https://doi.org/10.1002/wcm.936 +Kui Ren 0001,A new approach for random key pre-distribution in large-scale wireless sensor networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#RenZL06,https://doi.org/10.1002/wcm.397 +Asif Ali Laghari,Quality of Experience Assessment of Video Quality in Social Clouds.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#LaghariHKSK17,https://doi.org/10.1155/2017/8313942 +Riccardo Manfrin,CRABSS: CalRAdio-Based advanced Spectrum Scanner for cognitive networks.,2010,10,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm10.html#ManfrinZZ10,https://doi.org/10.1002/wcm.1065 +Ali Parichehreh,Seamless LTE connectivity in high-speed trains.,2016,16,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm16.html#ParichehrehSGS16,https://doi.org/10.1002/wcm.2607 +Seyeong Choi,Antenna subset selection at multi-antenna relay with adaptive modulation.,2013,13,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm13.html#ChoiHYA13,https://doi.org/10.1002/wcm.1150 +Muhammad Omer Chughtai,Congestion Detection and Alleviation in Multihop Wireless Sensor Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#ChughtaiBRK17,https://doi.org/10.1155/2017/9243019 +Pablo Chamoso,Tendencies of Technologies and Platforms in Smart Cities: A State-of-the-Art Review.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ChamosoGRC18,https://doi.org/10.1155/2018/3086854 +Jong Hyuk Park,Network security and digital forensics in next generation communications.,2011,11,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm11.html#ParkGJW11,https://doi.org/10.1002/wcm.1091 +Yichuan Wang,Gleer: A Novel Gini-Based Energy Balancing Scheme for Mobile Botnet Retopology.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#WangZJZL18,https://doi.org/10.1155/2018/7805408 +David Gomez-Barquero,Error repair for broadcast transmissions in DVB-H systems.,2009,9,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm9.html#Gomez-BarqueroB09,https://doi.org/10.1002/wcm.621 +Günes Karabulut-Kurt,On the performance of proximity-based services.,2013,13,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm13.html#Kurt13,https://doi.org/10.1002/wcm.1187 +Xiaoming Chen 0001,Adaptive precoding and power allocation in distributed antenna systems with limited feedback.,2015,15,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm15.html#ChenL15,https://doi.org/10.1002/wcm.2387 +Md. Farhad Hossain,On the eNB-based energy-saving cooperation techniques for LTE access networks.,2015,15,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm15.html#HossainMJ15,https://doi.org/10.1002/wcm.2353 +Jinwoo Kim,Diversity-Multiplexing-Nulling Trade-Off Analysis of Multiuser MIMO System for Intercell Interference Coordination.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#KimK17,https://doi.org/10.1155/2017/5709367 +Majid Ghaderi,Call admission control in mobile cellular networks: a comprehensive survey.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#GhaderiB06,https://doi.org/10.1002/wcm.246 +Dmitri D. Perkins,A survey on quality-of-service support for mobile ad hoc networks.,2002,2,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm2.html#PerkinsH02,https://doi.org/10.1002/wcm.73 +Weiping Wang 0003,Code pruning in opportunistic routing through bidirectional coding traffic comparison.,2016,16,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm16.html#WangCLWZW16,https://doi.org/10.1002/wcm.2514 +Xiong Wang,VDNet: an infrastructure-less UAV-assisted sparse VANET system with vehicle location prediction.,2016,16,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm16.html#WangFZGW16,https://doi.org/10.1002/wcm.2727 +Mohamed Amine Abid,Three dimensional compressed sensing for wireless networks-based multiple node localization in multi-floor buildings.,2016,16,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm16.html#AbidC16,https://doi.org/10.1002/wcm.2653 +Costas Assimakopoulos,New bit loading algorithms for DMT systems based on the greedy approach.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#AssimakopoulosP06,https://doi.org/10.1002/wcm.286 +Morteza Karimzadeh,Quantitative Comparison of the Efficiency and Scalability of the Current and Future LTE Network Architectures.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#KarimzadehBSP17,https://doi.org/10.1155/2017/3938545 +Mahmoud A. Smadi,Simplified bit error rate evaluation of Nagakami-m PSK systems with phase error recovery.,2012,12,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm12.html#SmadiAG12,https://doi.org/10.1002/wcm.955 +Longbao Wang,Low-complexity turbo detection for single-carrier low-density parity-check-coded multiple-input multiple-output underwater acoustic communications.,2013,13,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm13.html#WangTXY13,https://doi.org/10.1002/wcm.1161 +Henri Nurminen,A Survey on Wireless Transmitter Localization Using Signal Strength Measurements.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#NurminenDP17,https://doi.org/10.1155/2017/2569645 +Peshala V. Pahalawatta,Review of content-aware resource allocation schemes for video streaming over wireless networks.,2007,7,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm7.html#PahalawattaK07,https://doi.org/10.1002/wcm.469 +Wladimir Bocquet,Power distribution methods for MIMO-OFDM systems and field experimentations.,2009,9,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm9.html#BocquetHS09,https://doi.org/10.1002/wcm.746 +Hu Li,Study of capacity region and minimum energy of delay-tolerant unicast mobile ad hoc networks using cell-partitioned model.,2016,16,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm16.html#LiLYHDL16,https://doi.org/10.1002/wcm.2572 +Lei Ge,Antennas and Circuits for 5G Mobile Communications.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#GeWLSC18,https://doi.org/10.1155/2018/3249352 +Sanem Kabadayi,Software-only TDOA/RTT positioning for 3G WCDMA wireless network.,2008,8,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm8.html#KabadayiT08,https://doi.org/10.1002/wcm.536 +Zhen Ma,Joint sensing and transmission for cognitive amplify-and-forward two-way relay networks.,2016,16,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm16.html#MaWZA16,https://doi.org/10.1002/wcm.2726 +Jan Hajny,Multidevice Authentication with Strong Privacy Protection.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#HajnyDM18,https://doi.org/10.1155/2018/3295148 +Haleh Khojasteh,Task admission control policy in cloud server pools based on task arrival dynamics.,2016,16,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm16.html#KhojastehM16,https://doi.org/10.1002/wcm.2689 +Victoria Beltran,An ARM-Compliant Architecture for User Privacy in Smart Cities: SMARTIE - Quality by Design in the IoT.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#BeltranSR17,https://doi.org/10.1155/2017/3859836 +Feng Ye,Design and analysis of a wireless monitoring network for transmission lines in smart grid.,2016,16,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm16.html#YeLZZQ16,https://doi.org/10.1002/wcm.2594 +Zhang Bin Loo,Improved Path Loss Simulation Incorporating Three-Dimensional Terrain Model Using Parallel Coprocessors.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#LooCLY17,https://doi.org/10.1155/2017/5492691 +Haroun Benkaouha,Towards an efficient failure detection in MANETs.,2016,16,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm16.html#BenkaouhaABM16,https://doi.org/10.1002/wcm.2739 +Yih-Chuan Lin,Adaptive concentric chains protocol for energy efficient routing in wireless sensor networks.,2012,12,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm12.html#LinJ12,https://doi.org/10.1002/wcm.1001 +Derya Cavdar,Analytical modeling and resource planning for cognitive radio systems.,2012,12,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm12.html#CavdarYTA12,https://doi.org/10.1002/wcm.961 +Abdelouahab Bentrcia,Low-complexity linear group-SIC detectors.,2007,7,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm7.html#BentrciaZS07,https://doi.org/10.1002/wcm.374 +Wenson Chang,On the Performance of the DNPS-Based Relay Networks under Masquerading Attack.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#Chang18,https://doi.org/10.1155/2018/4602146 +F. Richard Yu,Next generation mobility management: an introduction.,2011,11,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm11.html#YuWSLC11,https://doi.org/10.1002/wcm.904 +Xiaolong Yang,Pedestrian Motion Learning Based Indoor WLAN Localization via Spatial Clustering.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#YangWZL18,https://doi.org/10.1155/2018/2571671 +Robert W. Heath Jr.,Special Issue: Multiple-Input Multiple-Output (MIMO) Communications.,2004,4,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm4.html#HeathLMNU04,https://doi.org/10.1002/wcm.247 +Behrouz Shahgholi Ghahfarokhi,A context-aware handover decision based on user perceived quality of service trigger.,2011,11,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm11.html#GhahfarokhiM11,https://doi.org/10.1002/wcm.854 +Dongmei Jiang,Multiuser two-way relay processing and power control methods for cognitive radio networks.,2013,13,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm13.html#JiangZY13,https://doi.org/10.1002/wcm.1183 +Yang Xiao,Efficient MAC strategies for the IEEE 802.11n wireless LANs.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#Xiao06,https://doi.org/10.1002/wcm.274 +Liuguo Yin,Combined hidden Markov source estimation and low-density parity-check coding: a novel joint source-channel coding scheme for multimedia communications.,2002,2,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm2.html#YinLW02,https://doi.org/10.1002/wcm.86 +Bernd Girod,Advances in channel-adaptive video streaming.,2002,2,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm2.html#GirodKLZ02,https://doi.org/10.1002/wcm.87 +Gaofei Sun,Profit maximization for secondary users in dynamic spectrum auction of cognitive radio networks.,2015,15,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm15.html#SunTXW15,https://doi.org/10.1002/wcm.2409 +Liu Miao,The Parallel Algorithm Based on Genetic Algorithm for Improving the Performance of Cognitive Radio.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#MiaoSJ18,https://doi.org/10.1155/2018/5986482 +Xia Liu,Robust and Low-Complexity Cooperative Spectrum Sensing via Low-Rank Matrix Recovery in Cognitive Vehicular Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LiuZG18,https://doi.org/10.1155/2018/6319378 +Najah A. Abu Ali,Resource allocation with interference mitigation in femtocellular networks.,2012,12,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm12.html#AbuAliOHK12,https://doi.org/10.1002/wcm.2339 +Zhijin Zhao,Cognitive radio adaptation using particle swarm optimization.,2009,9,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm9.html#ZhaoXZS09,https://doi.org/10.1002/wcm.633 +Barbara M. Masini,On the benefits of diversity schemes for Bluetooth coverage extension in the presence of IEEE802.11g interference.,2008,8,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm8.html#MasiniCPD08,https://doi.org/10.1002/wcm.571 +Jaeduck Choi,Unified security architecture and protocols using third party identity in V2V and V2I networks.,2012,12,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm12.html#ChoiJ12,https://doi.org/10.1002/wcm.1057 +Shang Gao 0004,Airborne Wireless Sensor Networks for Airplane Monitoring System.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#GaoDHGJ18,https://doi.org/10.1155/2018/6025825 +Vaidyanathan Anantharaman,TCP performance over mobile ad hoc networks: a quantitative study.,2004,4,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm4.html#AnantharamanPSS04,https://doi.org/10.1002/wcm.172 +Khaled Hatem Almotairi,Multichannel medium access control for ad hoc wireless networks.,2013,13,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm13.html#AlmotairiS13,https://doi.org/10.1002/wcm.1159 +Ahmad Belhoul,Mobility protocols and RSVP performance in wireless IPv6 networks: shortcomings and solutions.,2008,8,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm8.html#BelhoulSM08,https://doi.org/10.1002/wcm.560 +Ngoc Phuc Le,Outage Probability Analysis in Power-Beacon Assisted Energy Harvesting Cognitive Relay Wireless Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#Le17,https://doi.org/10.1155/2017/2019404 +Raouia Nasri,Throughput and cost-efficient interference cancelation strategies for the downlink of spectrum-sharing Long Term Evolution heterogeneous networks.,2016,16,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm16.html#NasriLA16,https://doi.org/10.1002/wcm.2515 +Dionysis Xenakis,Dynamic resource allocation in adaptive wireless OFDMA systems.,2012,12,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm12.html#XenakisTPAM12,https://doi.org/10.1002/wcm.1030 +Rodrigo Roman,A cross-layer approach for integrating security mechanisms in sensor networks architectures.,2011,11,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm11.html#RomanLN11,https://doi.org/10.1002/wcm.1006 +Nikolaos Batsios,Uplink-downlink design issues for next generation satellite networks.,2002,2,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm2.html#BatsiosP02,https://doi.org/10.1002/wcm.59 +Jiangchuan Liu,Recent Advances in Wireless Communication Protocols for Internet of Things.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#Liu0MY17,https://doi.org/10.1155/2017/8791485 +Guangsheng Chen,A Novel Query Method for Spatial Data in Mobile Cloud Computing Environment.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ChenNJ18,https://doi.org/10.1155/2018/1059231 +Jianfeng Weng,ZCZ-CDMA and OFDMA using M-QAM for broadband wireless communications.,2004,4,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm4.html#WengLX04,https://doi.org/10.1002/wcm.186 +Zhen-guo Gao,Outage performance of cognitive AF relay networks with direct link and heterogeneous non-identical constraints.,2016,16,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm16.html#GaoCZZL16,https://doi.org/10.1002/wcm.2560 +Shugong Xu,Performance evaluation of TCP algorithms in multi-hop wireless packet networks.,2002,2,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm2.html#XuS02,https://doi.org/10.1002/wcm.35 +Ioannis Z. Koukoutsidis,A learning strategy for paging in mobile environments.,2003,3,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm3.html#KoukoutsidisDT03,https://doi.org/10.1002/wcm.120 +Da Wang,Optimal designs of collaborative relay-assisted multiuser beamforming for cellular systems.,2014,14,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm14.html#WangCBHJL14,https://doi.org/10.1002/wcm.2293 +Yonghua Wang 0001,A Spectrum Sensing Method Based on Empirical Mode Decomposition and K-Means Clustering Algorithm.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#WangZWZY18,https://doi.org/10.1155/2018/6104502 +Haw-Yun Shin,Fast data access and energy-efficient protocol for wireless data broadcast.,2012,12,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm12.html#ShinYTL12,https://doi.org/10.1002/wcm.1076 +Suhua Tang,Energy Efficient Downlink Transmission in Wireless LANs by Using Low-Power Wake-Up Radio.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#TangO17,https://doi.org/10.1155/2017/2405381 +Zhixiang Tong,Greening Software Requirements Change Management Strategy Based on Nash Equilibrium.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#TongSCW17,https://doi.org/10.1155/2017/4020162 +Kuang-Hao Liu,Outage performance of relay selection with spatially random relays using RF energy harvesting.,2016,16,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm16.html#Liu16,https://doi.org/10.1002/wcm.2605 +Hongfei Zhu,An Efficient Identity-Based Proxy Blind Signature for Semioffline Services.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhuTZZL18,https://doi.org/10.1155/2018/5401890 +Song-Yi Yi,Increasing mobile clients' cache reusability in a wireless client-server environment.,2007,7,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm7.html#YiJ07,https://doi.org/10.1002/wcm.505 +Navid Amini,Joint consideration of energy-efficiency and coverage-preservation in microsensor networks.,2011,11,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm11.html#AminiVDNS11,https://doi.org/10.1002/wcm.852 +Ekram Hossain,Evolution and future trends of research in cognitive radio: a contemporary survey.,2015,15,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm15.html#HossainNK15,https://doi.org/10.1002/wcm.2443 +Jing Chi,Generic service composition platform for pervasive E-Commerce.,2010,10,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm10.html#ChiYSSZ10,https://doi.org/10.1002/wcm.749 +Jelena V. Misic,Admission control in TD-CDMA networks.,2003,3,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm3.html#MisicTM03,https://doi.org/10.1002/wcm.112 +Songjun Ma,Identifying effective initiators in OSNs: from the spectral radius perspective.,2016,16,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm16.html#MaCWSTW16,https://doi.org/10.1002/wcm.2765 +Yejun He,Deterministic process-based generative models for characterizing packet-level bursty error sequences.,2015,15,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm15.html#HeSWY15,https://doi.org/10.1002/wcm.2356 +Hui Guo,Homing-pigeon-based messaging: multiple pigeon-assisted delivery in delay-tolerant networks.,2013,13,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm13.html#GuoLHQ13,https://doi.org/10.1002/wcm.1133 +Mushtaq Ahmad,Mesh adaptive direct search approach for D2D resource management.,2016,16,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm16.html#Ahmad0AIA16,https://doi.org/10.1002/wcm.2686 +Dongfeng Yuan,Optimum design criterion and multilevel coding for radio systems over AWGN and Rayleigh fading channels.,2003,3,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm3.html#YuanZWYSH03,https://doi.org/10.1002/wcm.145 +Romano Fantacci,A novel communication infrastructure for emergency management: the In.Sy.Eme. vision.,2010,10,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm10.html#FantacciMT10,https://doi.org/10.1002/wcm.877 +Claude Fachkha,On the inference and prediction of DDoS campaigns.,2015,15,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm15.html#FachkhaBD15,https://doi.org/10.1002/wcm.2510 +Rajendra Kumar,Transform Methods for the Reduction of the Peak to Average Power Ratio for the OFDM Signal.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#KumarS17,https://doi.org/10.1155/2017/1421362 +Syed Imtiaz Hussain,Performance analysis of selective cooperation in amplify-and-forward relay networks over identical Nakagami-m channels.,2013,13,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm13.html#HussainAH13,https://doi.org/10.1002/wcm.1142 +Tomás Domínguez-Bolaño,Experimental Characterization of LTE Wireless Links in High-Speed Trains.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#Dominguez-Bolano17,https://doi.org/10.1155/2017/5079130 +Weihua Zhuang,Ultra-wideband wireless communications.,2003,3,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm3.html#ZhuangSB03,https://doi.org/10.1002/wcm.149 +Anas M. Salhab,Performance analysis of switch-and-examine diversity systems with interference and Rayleigh fading channels.,2016,16,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm16.html#SalhabZ16,https://doi.org/10.1002/wcm.2575 +Yamen Issa,Performance analysis of multiple-input multiple-output relay networks based impulse radio ultra-wideband.,2015,15,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm15.html#IssaDH15,https://doi.org/10.1002/wcm.2399 +Guangxia Xu,A data privacy protective mechanism for wireless body area networks.,2016,16,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm16.html#XuWDLW16,https://doi.org/10.1002/wcm.2649 +Yu Huang 0002,Cooperative cache consistency maintenance for pervasive internet access.,2010,10,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm10.html#HuangCJTL10,https://doi.org/10.1002/wcm.819 +Bin Xie 0001,Secure interconnection protocol for integrated Internet and ad hoc networks.,2008,8,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm8.html#XieKA08,https://doi.org/10.1002/wcm.557 +Peng Huo,BER analysis and power allocation for cooperative diversity networks with distributed Alamouti code.,2015,15,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm15.html#HuoC15,https://doi.org/10.1002/wcm.2400 +Radislav A. Potyrailo,RFID sensors based on ubiquitous passive 13.56-MHz RFID tags and complex impedance detection.,2009,9,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm9.html#PotyrailoMSTKL09,https://doi.org/10.1002/wcm.711 +Teasung Kim,REACH: An Efficient MAC Protocol for RF Energy Harvesting in Wireless Sensor Network.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#KimPKNC17,https://doi.org/10.1155/2017/6438726 +Liang Yang,MIMO relay wireless networks with scheduling and transmit beamforming.,2012,12,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm12.html#Yang12,https://doi.org/10.1002/wcm.967 +Yongzhi Li,Investigation of Sphere Decoder and Channel Tracking Algorithms for Media-Based Modulation over Time-Selective Channels.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#LiTL0017,https://doi.org/10.1155/2017/2509824 +Farshad Sarabchi,Impact of TH-UWB interference on MB-OFDM UWB systems: interference modeling and performance analysis.,2016,16,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm16.html#SarabchiN16,https://doi.org/10.1002/wcm.2580 +Anthony Ephremides,Ad hoc networks: not an ad hoc field anymore.,2002,2,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm2.html#Ephremides02,https://doi.org/10.1002/wcm.69 +Byounghoon Kim,A virtual link routing scheme in the wireless home network architecture supporting end-to-end seamless connectivity.,2007,7,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm7.html#KimPT07,https://doi.org/10.1002/wcm.566 +Xiaolei Dong,Provably secure RSA-type signature based on conic curve.,2009,9,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm9.html#DongQC09,https://doi.org/10.1002/wcm.602 +Rajiv Misra,Efficient clusterhead rotation via domatic partition in self-organizing sensor networks.,2009,9,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm9.html#MisraM09,https://doi.org/10.1002/wcm.662 +Wenxuan Guo,Distributed cross-layer optimization for wireless regional area network-based cognitive radio networks.,2013,13,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm13.html#GuoH13,https://doi.org/10.1002/wcm.1148 +Shuo-Hung Wang,Deploying mobile nodes for maximal energy matching in WSNs.,2012,12,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm12.html#WangC12,https://doi.org/10.1002/wcm.964 +Jean Frédéric Myoupo,Average case analysis-based protocols to initialize packet radio networks.,2003,3,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm3.html#MyoupoTR03,https://doi.org/10.1002/wcm.127 +Liping Huang,Mining the Relationship between Spatial Mobility Patterns and POIs.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#HuangYZGY18,https://doi.org/10.1155/2018/4392524 +Nikola Rozic,MIMO ARIMA models for handoff resource reservation in multimedia wireless networks.,2004,4,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm4.html#RozicK04,https://doi.org/10.1002/wcm.193 +Xiaofei Wang,Measurement and analysis of online gaming services on mobile WiMAX networks.,2015,15,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm15.html#WangCKKCC15,https://doi.org/10.1002/wcm.2412 +Paul Jean Etienne Jeszensky,Schemes for capacity increase in multiple-rate dual-class DS/CDMA systems.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#JeszenskyH06,https://doi.org/10.1002/wcm.244 +Jiaxun Lu,Subcarrier grouping with environmental sensing for MIMO-OFDM systems over correlated double-selective fading channels.,2016,16,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm16.html#LuCFL16,https://doi.org/10.1002/wcm.2716 +Qiumin Dong,Deferrable load scheduling under imperfect data communication channel.,2015,15,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm15.html#DongNWH15,https://doi.org/10.1002/wcm.2477 +Juha Kalliovaara,Coexistence of DTT and Mobile Broadband: A Survey and Guidelines for Field Measurements.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#KalliovaaraETHJ17,https://doi.org/10.1155/2017/1563132 +Nguyen Tran Khoa,Frequency sharing hotspot communication under uplink multi-carrier CDMA cellular system.,2008,8,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm8.html#KhoaFUKS08,https://doi.org/10.1002/wcm.569 +Navrati Saxena,QuESt: a QoS-based energy efficient sensor routing protocol.,2009,9,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm9.html#SaxenaRS09,https://doi.org/10.1002/wcm.546 +César Briso-Rodríguez,Wireless Communications in Smart Rail Transportation Systems.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#Briso-Rodriguez17,https://doi.org/10.1155/2017/6802027 +Jian Qi,Cross-layer design for MIMO systems over spatially correlated and keyhole Nakagami-m fading channels.,2010,10,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm10.html#QiAM10,https://doi.org/10.1002/wcm.822 +Li Zhu,QoS-Aware Resource Allocation for Network Virtualization in an Integrated Train Ground Communication System.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhuWZ18,https://doi.org/10.1155/2018/2653405 +Supeng Leng,Medium access control in vehicular ad hoc networks.,2011,11,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm11.html#LengFWZ11,https://doi.org/10.1002/wcm.869 +Elena López-Aguilera,A study on the influence of transmission errors on WLAN IEEE 802.11 MAC performance.,2011,11,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm11.html#Lopez-AguileraCV11,https://doi.org/10.1002/wcm.934 +Yunli Chen,Performance evaluation for IEEE 802.11e enhanced distributed coordination function.,2004,4,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm4.html#ChenZA04,https://doi.org/10.1002/wcm.234 +Lei Wen,Receiver optimization on non-binary joint sparse graph for OFDM system.,2016,16,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm16.html#WenWL16,https://doi.org/10.1002/wcm.2758 +Michel Kulhandjian,Multiway Physical-Layer Network Coding via Uniquely Decodable Codes.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#KulhandjianDK18,https://doi.org/10.1155/2018/2034870 +Rituparna Ghosh,Mitigating the impact of node mobility on ad hoc clustering.,2008,8,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm8.html#GhoshB08,https://doi.org/10.1002/wcm.578 +Ren-Hung Hwang,Swarm intelligence-based anycast routing protocol in ubiquitous networks.,2010,10,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm10.html#HwangHW10,https://doi.org/10.1002/wcm.797 +Zhihong Liu,Data security in unattended wireless sensor networks with mobile sinks.,2012,12,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm12.html#LiuMPX12,https://doi.org/10.1002/wcm.1042 +Xiaoping Ma,Two-Layer Hierarchy Optimization Model for Communication Protocol in Railway Wireless Monitoring Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#MaDTJQC18,https://doi.org/10.1155/2018/9516342 +Zhiyu Lu,Direct Position Determination of Coherently Distributed Noncircular Sources.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LuWBW18,https://doi.org/10.1155/2018/4517393 +Jing Wang 0009,A study on wireless sensor network based indoor positioning systems for context-aware applications.,2012,12,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm12.html#WangPAN12,https://doi.org/10.1002/wcm.889 +Adriana Lipovac,Suppressing the OFDM CFO-Caused Constellation Symbol Phase Deviation by PAPR Reduction.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LipovacLN18,https://doi.org/10.1155/2018/3497694 +Marcello Caleffi,M-DART: multi-path dynamic address routing.,2011,11,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm11.html#CaleffiP11,https://doi.org/10.1002/wcm.986 +Timothy R. Newman,Cognitive engine implementation for wireless multicarrier transceivers.,2007,7,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm7.html#NewmanBWAEM07,https://doi.org/10.1002/wcm.486 +Youn-Sik Hong,Smart Care Beds for Elderly Patients with Impaired Mobility.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#Hong18,https://doi.org/10.1155/2018/1780904 +Muhammad,Harvested Energy Prediction Schemes for Wireless Sensor Networks: Performance Evaluation and Enhancements.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#MuhammadQS0PL17,https://doi.org/10.1155/2017/6928325 +Oguz Kucur,Nonorthogonal Multiple Access for 5G and Beyond.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#KucurKSA18,https://doi.org/10.1155/2018/1907506 +Qinbao Xu,Cluster-Based Arithmetic Coding for Data Provenance Compression in Wireless Sensor Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#XuAZW18,https://doi.org/10.1155/2018/9576978 +Afshin Behzadan,An energy-efficient utility-based distributed data routing scheme for heterogenous sensor networks.,2015,15,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm15.html#BehzadanAWMC15,https://doi.org/10.1002/wcm.2474 +César Briso-Rodríguez,Wireless Communications in Transportation Systems.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#Briso-Rodriguez17a,https://doi.org/10.1155/2017/4391402 +Yiping Deng,Optimal power scheduling in 802.11n wireless networks for real-time services.,2014,14,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm14.html#DengLRW14,https://doi.org/10.1002/wcm.2241 +Karthikeyan Sundaresan,Ad hoc networks with heterogeneous smart antennas: performance analysis and protocols.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#SundaresanS06,https://doi.org/10.1002/wcm.428 +Mihajlo C. Stefanovic,Outage performance of dual-hop relaying systems over extended generalized-K fading channels.,2015,15,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm15.html#StefanovicACD15,https://doi.org/10.1002/wcm.2483 +Xu Li,Localized delay-bounded and energy-efficient data aggregation in wireless sensor and actor networks.,2011,11,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm11.html#LiYXNS11,https://doi.org/10.1002/wcm.1222 +Md. Tanvir Hossan,A Novel Indoor Mobile Localization System Based on Optical Camera Communication.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#HossanCIJ18,https://doi.org/10.1155/2018/9353428 +Xin Guan,Non-cooperative game-based packet ferry forwarding for sparse mobile wireless networks.,2015,15,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm15.html#GuanCO15,https://doi.org/10.1002/wcm.2451 +Dalin Zhu,Peak-to-average power ratio reduction in space-time coded MIMO-OFDM via preprocessing.,2011,11,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm11.html#ZhuND11,https://doi.org/10.1002/wcm.918 +Atif Elahi,Suppression of Mutual Interference in Noncontiguous Orthogonal Frequency Division Multiplexing Based Cognitive Radio Systems.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#ElahiQZGS17,https://doi.org/10.1155/2017/1860134 +Jing Zhu,Adapting physical carrier sensing to maximize spatial reuse in 802.11 mesh networks.,2004,4,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm4.html#ZhuGYCRH04,https://doi.org/10.1002/wcm.264 +Fuqiang Yao,Practical cross-layer routing and channel assignment in cognitive radio ad hoc networks.,2015,15,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm15.html#YaoZZL15,https://doi.org/10.1002/wcm.2440 +Bo Yang 0006,Opportunistic multichannel access with decentralized channel state information.,2015,15,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm15.html#0006SJCG15,https://doi.org/10.1002/wcm.2348 +Longjiang Li,Domain-based autoconfiguration framework for large-scale MANETs.,2009,9,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm9.html#LiCX09,https://doi.org/10.1002/wcm.642 +Dong Wang 0018,Resetting Your Password Is Vulnerable: A Security Study of Common SMS-Based Authentication in IoT Device.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#WangZMCWN18,https://doi.org/10.1155/2018/7849065 +Jiming Chen,Analysis and optimization of pilot-symbol-assisted M-QAM for OFDM systems.,2005,5,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm5.html#ChenTL05,https://doi.org/10.1002/wcm.284 +S. M. Nazrul Alam,Coverage and connectivity in three-dimensional underwater sensor networks.,2008,8,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm8.html#AlamH08,https://doi.org/10.1002/wcm.661 +Zhenzhen Liu,Adding a Rate-1 Third Dimension to Parallel Concatenated Systematic Polar Code: 3D Polar Code.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LiuNDL18,https://doi.org/10.1155/2018/8928761 +Mohsen Guizani,Editorial.,2002,2,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm2.html#GuizaniAHZ02,https://doi.org/10.1002/wcm.67 +Chaimaa Essayeh,Cost-Effective Energy Usage in a Microgrid Using a Learning Algorithm.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#EssayehED18,https://doi.org/10.1155/2018/9106430 +Jianhui Zhang,Transmission power adjustment of wireless sensor networks using fuzzy control algorithm.,2009,9,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm9.html#ZhangCS09,https://doi.org/10.1002/wcm.630 +Marwa Qaraqe,Performance analysis of switch-based multiuser scheduling schemes with adaptive modulation in spectrum sharing systems.,2015,15,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm15.html#QaraqeASA15,https://doi.org/10.1002/wcm.2480 +Young-Chai Ko,Local mean signal estimation over Nakagami-m fading channels.,2007,7,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm7.html#KoA07,https://doi.org/10.1002/wcm.349 +Yahui Wu,Energy constraint beaconing control in delay tolerant networks with multiple destinations.,2015,15,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm15.html#WuDH15,https://doi.org/10.1002/wcm.2487 +Honglong Chen,On providing wormhole-attack-resistant localization using conflicting sets.,2015,15,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm15.html#ChenLW15,https://doi.org/10.1002/wcm.2462 +Khurram Masood,Slotted ALOHA performance for FU-FB in frequency selective fading environment.,2015,15,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm15.html#MasoodSS15,https://doi.org/10.1002/wcm.2340 +Razvan Pitic,Performance evaluation of utility-based scheduling schemes with QoS guarantees in IEEE 802.16/WiMAX systems.,2010,10,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm10.html#PiticSRC10,https://doi.org/10.1002/wcm.802 +Jiongkuan Hou,Mobility-based call admission control schemes for wireless mobile networks.,2001,1,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm1.html#HouF01,https://doi.org/10.1002/wcm.18 +Sungwon Yi,Proxy-RED: an AQM scheme for wireless local area networks.,2008,8,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm8.html#YiKGDKD08,https://doi.org/10.1002/wcm.460 +Yong Lu,Controllable Effective Threshold Based Fusion Coverage Algorithm in Mobile Sensor Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LuS18,https://doi.org/10.1155/2018/1529084 +Congsi Wang,Effect of Randomness in Element Position on Performance of Communication Array Antennas in Internet of Things.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#WangWYGJWZW18,https://doi.org/10.1155/2018/6492143 +Anton Seregin,Modified linear prediction algorithm for narrowband interference suppression in universal mobile telecommunication system.,2015,15,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm15.html#SereginHWHG15,https://doi.org/10.1002/wcm.2321 +Pengpeng Chen,A Real-Time Taxicab Recommendation System Using Big Trajectories Data.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#ChenLGNX17,https://doi.org/10.1155/2017/5414930 +Jeong Min Choi,Performance analysis of channel estimation in amplify-and-forward multi-hop direct forwarding wireless networks.,2016,16,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm16.html#ChoiBHS16,https://doi.org/10.1002/wcm.2499 +Hung-Chi Chu,A cell-based location-sensing method for wireless networks.,2003,3,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm3.html#ChuJ03,https://doi.org/10.1002/wcm.131 +Hüseyin Arslan,Special Issue: Ultrawideband for Wireless Communications.,2005,5,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm5.html#ArslanS05,https://doi.org/10.1002/wcm.307 +Miraj-E-Mostafa,Transporting data between wireless applications using a messaging system - MMS.,2007,7,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm7.html#Miraj-E-Mostafa07,https://doi.org/10.1002/wcm.404 +Xiaobo Bai,Power-Splitting Scheme for Nonlinear Energy Harvesting AF Relaying with Direct Link.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#BaiSTS18,https://doi.org/10.1155/2018/7906957 +Hrishikesh Gossain,Minimizing the effect of deafness and hidden terminal problem in wireless ad hoc networks using directional antennas.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#GossainCA06,https://doi.org/10.1002/wcm.429 +Yi-Bing Lin,A dynamic paging scheme for long-term evolution mobility management.,2015,15,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm15.html#LinLC15,https://doi.org/10.1002/wcm.2371 +Youngmin Kim,A simple soft linear detection for coded multi-input multi-output systems.,2013,13,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm13.html#KimSKC13,https://doi.org/10.1002/wcm.1204 +Mohammad Hossein Manshaei,On selecting the best transmission mode for WiFi devices.,2009,9,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm9.html#HosseinMCT09,https://doi.org/10.1002/wcm.645 +Dapeng Wu 0001,Power control and scheduling for guaranteeing quality of service in cellular networks.,2008,8,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm8.html#WuN08,https://doi.org/10.1002/wcm.436 +Jan Sykora,Linear diversity precoding design criterion for finite block-fading parallel MIMO channels.,2011,11,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm11.html#SykoraK11,https://doi.org/10.1002/wcm.943 +Edwin C. Foudriat,Media access using dynamic bandwidth system to improve satellite network uplink performance.,2003,3,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm3.html#FoudriatMOT03,https://doi.org/10.1002/wcm.113 +Mohsen Karimzadeh Kiskani,Opportunistic interference management: a new approach for multiantenna downlink cellular networks.,2015,15,Wireless Communications and Mobile Computing,14,db/journals/wicomm/wicomm15.html#KiskaniWSOG15,https://doi.org/10.1002/wcm.2465 +Sovannarith Heng,Distributed Image Compression Architecture over Wireless Multimedia Sensor Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#HengSN17,https://doi.org/10.1155/2017/5471721 +Yen-Cheng Chen,A practical authentication protocol with anonymity for wireless access networks.,2011,11,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm11.html#ChenCYH11,https://doi.org/10.1002/wcm.933 +Jui Teng Wang,MVDR-combining-aided diversity and spatial multiplexing for MIMO multi-cellular networks with cochannel interference.,2013,13,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm13.html#Wang13,https://doi.org/10.1002/wcm.1090 +Kang-Chun Peng,A Novel Quadrature-Tracking Demodulator for LTE-A Applications.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#PengL18,https://doi.org/10.1155/2018/8712414 +Yung-Ping Tu,A two-stage receiver with soft interference cancellation for space-time block code and spatial multiplexing combined systems.,2012,12,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm12.html#TuFC12,https://doi.org/10.1002/wcm.1012 +Manoj Shukla,Analysis and design of optimum interleaver for iterative receivers in IDMA scheme.,2009,9,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm9.html#ShuklaST09,https://doi.org/10.1002/wcm.710 +Tim Farnham,Radio link enhancement using an open flexible protocol stack framework.,2005,5,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm5.html#Farnham05,https://doi.org/10.1002/wcm.298 +Shireen Tahira,Handover Based IMS Registration Scheme for Next Generation Mobile Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#TahiraSUIV17,https://doi.org/10.1155/2017/8789513 +Chien-Ching Chiu,Wideband communication characteristics of subway stations with and without trains.,2005,5,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm5.html#ChiuTL05,https://doi.org/10.1002/wcm.223 +Yueh-Min Huang,A partition network model for ad hoc networks in overlay environments.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#HuangCH06,https://doi.org/10.1002/wcm.419 +Stefan Mangold,IEEE 802.11e/802.11k wireless LAN: spectrum awareness for distributed resource sharing.,2004,4,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm4.html#MangoldZHW04,https://doi.org/10.1002/wcm.261 +Guoan Zhang,Genetic Algorithm Based QoS Perception Routing Protocol for VANETs.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ZhangWDH18,https://doi.org/10.1155/2018/3897857 +Matthias Pätzold,A wideband MIMO channel model derived from the geometric elliptical scattering model.,2008,8,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm8.html#PatzoldH08,https://doi.org/10.1002/wcm.572 +Zhiwei Yan,Call admission control scheme with normalized quality of service metric in IEEE 802.16 networks.,2015,15,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm15.html#YanLS15,https://doi.org/10.1002/wcm.2343 +Shivali G. Bansal,Performance analysis of two-hop decode-amplify-forward relayed system in different fading conditions.,2015,15,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm15.html#BansalA15,https://doi.org/10.1002/wcm.2370 +Chun-Chuan Yang,Integrated load-based power saving for BS and MSS in the IEEE 802.16e network.,2015,15,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm15.html#YangMCK15,https://doi.org/10.1002/wcm.2365 +Qian Wang,5G MIMO Conformal Microstrip Antenna Design.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#WangMWSL17,https://doi.org/10.1155/2017/7616825 +Yuanliang Huang,Multiple-encoder layered space-time-frequency architecture with QR decomposition and M-algorithm maximum-likelihood detection.,2013,13,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm13.html#Huang13,https://doi.org/10.1002/wcm.1167 +Bhuvan Modi,Ergodic capacity analysis of cooperative amplify-and-forward relay networks over generalized fading channels.,2015,15,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm15.html#ModiAOP15,https://doi.org/10.1002/wcm.2407 +Lizheng Liu,A preload cooperative sensing scheme with low overhead in cognitive radio networks.,2016,16,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm16.html#LiuLYLZ16,https://doi.org/10.1002/wcm.2587 +Fei Hu 0001,Vertical and horizontal synchronization services with outlier detection in underwater acoustic networks.,2008,8,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm8.html#HuMKX08,https://doi.org/10.1002/wcm.559 +Guobing Qian,On the blind channel identifiability of multiple-input multiple-output space-time block code systems using Joint Approximate Diagonalization of Eigenmatrices.,2015,15,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm15.html#QianL15,https://doi.org/10.1002/wcm.2445 +Wei Liang,A Security Situation Prediction Algorithm Based on HMM in Mobile Network.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LiangLCYLZL18,https://doi.org/10.1155/2018/5380481 +Li Cong,A Stackelberg game for resource allocation in multiuser cooperative transmission networks.,2011,11,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm11.html#CongZYZZ11,https://doi.org/10.1002/wcm.922 +Pasupuleti Ramesh,E-Token Energy-Aware Proportionate Sharing Scheduling Algorithm for Multiprocessor Systems.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#RameshR17,https://doi.org/10.1155/2017/8382026 +Mohammad Torabi,Variable-rate adaptive modulation with optimum switching thresholds for cooperative systems with relay selection.,2013,13,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm13.html#TorabiH13,https://doi.org/10.1002/wcm.1168 +Jun-Da Chen,Adaptive antennas for MIMO OFDM-CDMA communication systems.,2015,15,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm15.html#ChenU15,https://doi.org/10.1002/wcm.2360 +Ruay Shiung Chang,Uplink channel assignment with balanced load for code division multiple access cellular systems.,2003,3,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm3.html#ChangH03,https://doi.org/10.1002/wcm.62 +Narottam Chand,Exploiting caching in heterogeneous mobile environment.,2007,7,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm7.html#ChandJM07,https://doi.org/10.1002/wcm.498 +Laisen Nie,Network Traffic Prediction Based on Deep Belief Network and Spatiotemporal Compressive Sensing in Wireless Mesh Backbone Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#NieWWYSJ18,https://doi.org/10.1155/2018/1260860 +Hai-Cheng Chu,The digital forensics of portable electronic communication devices based on a Skype IM session of a pocket PC for NGC.,2011,11,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm11.html#ChuDC11,https://doi.org/10.1002/wcm.954 +Ertugrul Necdet Ciftcioglu,Scheduling for next generation WLANs: filling the gap between offered and observed data rates.,2011,11,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm11.html#CiftciogluG11,https://doi.org/10.1002/wcm.808 +Charalabos Skianis,Interactions between intelligent multimodal terminals and a network management system in a B3G context.,2005,5,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm5.html#SkianisKK05,https://doi.org/10.1002/wcm.334 +Fan Yang,A multi-channel cooperative clustering-based MAC protocol for V2V communications.,2016,16,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm16.html#YangZTD16,https://doi.org/10.1002/wcm.2759 +Tomislav Shuminoski,Advanced QoS Provisioning and Mobile Fog Computing for 5G.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ShuminoskiKJ18,https://doi.org/10.1155/2018/5109394 +Amir Reza Momen,A stochastic vehicle mobility model with environmental condition adaptation capability.,2009,9,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm9.html#MomenA09,https://doi.org/10.1002/wcm.664 +Ovidiu Daescu,GARA: a geometry aided routing algorithm.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#DaescuFH06,https://doi.org/10.1002/wcm.385 +Shijie Shi,Performance analysis of two-way MAC layer network coding under finite relay buffer and non-negligible signalling overhead.,2016,16,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm16.html#ShiNLL16,https://doi.org/10.1002/wcm.2755 +Naixue Xiong,Security analysis and improvements of IEEE standard 802.16 in next generation wireless metropolitan access network.,2011,11,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm11.html#XiongYLPDP11,https://doi.org/10.1002/wcm.872 +Dong Ma,Proactive load balancing with admission control for heterogeneous overlay networks.,2013,13,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm13.html#MaM13,https://doi.org/10.1002/wcm.1224 +Ruay-Shiung Chang,Adding sense of spatial locality to routing protocols for mobile ad hoc networks.,2007,7,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm7.html#ChangT07,https://doi.org/10.1002/wcm.326 +Jingwen Huang,Sampling Adaptive Learning Algorithm for Mobile Blind Source Separation.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#HuangS18,https://doi.org/10.1155/2018/5048419 +Hui Zhou,A distributed pricing algorithm for achieving network-wide proportional fairness.,2012,12,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm12.html#ZhouFXL12,https://doi.org/10.1002/wcm.1062 +Raenu Kolandaisamy,A Multivariant Stream Analysis Approach to Detect and Mitigate DDoS Attacks in Vehicular Ad Hoc Networks.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#KolandaisamyNAA18,https://doi.org/10.1155/2018/2874509 +Shi Lin,"Corrigendum to ""Biological Evaluation of the Effect of Galvanic Coupling Intrabody Communication on Human Skin Fibroblast Cells"".",2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LinGCVVDCP18,https://doi.org/10.1155/2018/9726952 +Liang Xue,Joint resource reconfiguration and robust routing for cognitive radio networks: a robust optimization approach.,2015,15,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm15.html#Xue0ZLG15,https://doi.org/10.1002/wcm.2383 +Lucia Gallina,A process calculus for energy-aware multicast communications of mobile ad hoc networks.,2013,13,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm13.html#GallinaR13,https://doi.org/10.1002/wcm.2207 +Virgilio Rodriguez,Install or invoke?: The optimal trade-off between performance and cost in the design of multi-standard reconfigurable radios.,2007,7,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm7.html#RodriguezMP07,https://doi.org/10.1002/wcm.487 +Alessandro Checco,Updating Neighbour Cell List via Crowdsourced User Reports: A Framework for Measuring Time Performance.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#CheccoLL18,https://doi.org/10.1155/2018/9028427 +Tingting Zhang,Power allocation in wireless asynchronous localization networks.,2016,16,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm16.html#ZhangLLXM16,https://doi.org/10.1002/wcm.2714 +Cheong Loong Chan,Prioritising Redundant Network Component for HOWBAN Survivability Using FMEA.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#ChanLYT17,https://doi.org/10.1155/2017/6250893 +Mohamed Hossam Ahmed,Interference management using basestation coordination in broadband wireless access networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#AhmedYM06,https://doi.org/10.1002/wcm.266 +Muhammad Asif Raza,A Versatile Coexistence Decision-Making System for Efficient TV Whitespace Sharing among Whitespace Objects.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#RazaIBKL17,https://doi.org/10.1155/2017/8498217 +Hongqiang Zhai,Medium access control in mobile ad hoc networks: challenges and solutions.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#ZhaiWCF06,https://doi.org/10.1002/wcm.376 +Mehdi Bennis,Performance evaluation of advanced spectrum functionalities for future radio networks.,2009,9,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm9.html#BennisWATT09,https://doi.org/10.1002/wcm.712 +Ruben Merz,A joint PHY/MAC architecture for low-radiated power TH-UWB wireless ad hoc networks.,2005,5,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm5.html#MerzWBR05,https://doi.org/10.1002/wcm.313 +Bing-Hong Liu,Efficient delivery-guaranteed geographic routing in 3D wireless sensor networks with holes.,2015,15,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm15.html#LiuCW15,https://doi.org/10.1002/wcm.2464 +Jihene Rezgui,About Deterministic and non-Deterministic Vehicular Communications over DSRC/802.11p.,2014,14,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm14.html#RezguiC14,https://doi.org/10.1002/wcm.2270 +Xing Liu 0002,Energy and Delay Optimization of Heterogeneous Multicore Wireless Multimedia Sensor Nodes by Adaptive Genetic-Simulated Annealing Algorithm.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LiuZXXHVWSW18,https://doi.org/10.1155/2018/7494829 +Xue Jun Li,A dynamic channel assignment scheme for clustered multihop cellular networks.,2008,8,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm8.html#LiC08,https://doi.org/10.1002/wcm.530 +Farzad Kiani,A Survey on Management Frameworks and Open Challenges in IoT.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#Kiani18,https://doi.org/10.1155/2018/9857026 +Huadong Ma,IRS: application reconfiguration scheme for wireless sensor networks.,2010,10,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm10.html#MaZW10,https://doi.org/10.1002/wcm.782 +Wei Ren,Normalized Structured Compressed Sensing Based Signal Detection in Spatial Modulation 3D-MIMO Systems.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#RenGL17,https://doi.org/10.1155/2017/4539470 +Zied Bouida,Precoding-Aided Spatial Modulation for the Wiretap Channel with Relay Selection and Cooperative Jamming.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#BouidaSGHHI18,https://doi.org/10.1155/2018/8407297 +Babatunde S. Awoyemi,Resource Allocation in Heterogeneous Buffered Cognitive Radio Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#AwoyemiMA17,https://doi.org/10.1155/2017/7385627 +Wei An,Importance-based data transmission optimization in multi-source single-sink wireless sensor networks.,2014,14,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm14.html#AnLSLCW14,https://doi.org/10.1002/wcm.2255 +Qian Gao,Network Scalability for Ultra-Wideband Real-Time Location Systems Based on vMISO.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#GaoSZ18,https://doi.org/10.1155/2018/1563704 +Antonios G. Alexiou,Multicast in UMTS: evaluation and recommendations.,2008,8,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm8.html#AlexiouB08,https://doi.org/10.1002/wcm.464 +Metin öztürk,Energy-Aware Smart Connectivity for IoT Networks: Enabling Smart Ports.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#OzturkJI18,https://doi.org/10.1155/2018/5379326 +Daiming Qu,EM-based noise plus interference estimation for OFDM-based cognitive radio systems.,2012,12,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm12.html#QuYJZ12,https://doi.org/10.1002/wcm.1034 +Luciano Bononi,"Special issue on ""quality of service and security in wireless and mobile networks"".",2010,10,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm10.html#BononiC10,https://doi.org/10.1002/wcm.883 +William C. Y. Lee,Analysis and realization of a physical CDD system.,2003,3,Wireless Communications and Mobile Computing,5,db/journals/wicomm/wicomm3.html#Lee03,https://doi.org/10.1002/wcm.141 +Pejman Goudarzi,On the differentiated QoE enforcement between competing scalable video flows over wireless networks.,2013,13,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm13.html#Goudarzi13,https://doi.org/10.1002/wcm.1127 +Guoliang Xue,Recent advances in wireless ad hoc networks.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#XueDC06,https://doi.org/10.1002/wcm.375 +Xiaolong Xu,Dynamic Resource Allocation for Load Balancing in Fog Environment.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#XuFCTLDSL18,https://doi.org/10.1155/2018/6421607 +Wenqian Huang,Adaptive Equalizer Design for Unmanned Aircraft Vehicle Image Transmission over Relay Channels.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#HuangD18,https://doi.org/10.1155/2018/5497926 +Arnaud Kaiser,Multipath traffic balancing approach for disconnection reduction in video games over mobile ad hoc networks.,2013,13,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm13.html#KaiserAB13,https://doi.org/10.1002/wcm.2211 +Aiping Huang,Offset-stack scheme and receivers for CCC-based multicarrier CDMA architecture.,2005,5,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm5.html#HuangLL05,https://doi.org/10.1002/wcm.282 +Angelos-Christos Anadiotis,A cross-layer information centric-relay transmission strategy for MIMO-OFDMA multicellular networks.,2015,15,Wireless Communications and Mobile Computing,15,db/journals/wicomm/wicomm15.html#AnadiotisGKV15,https://doi.org/10.1002/wcm.2463 +Lingyang Song,Innovative communications for a better future.,2010,10,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm10.html#SongZAHH10,https://doi.org/10.1002/wcm.1081 +Xiaobin Yang,Performance analysis of hexagonal cellular networks in fading channels.,2016,16,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm16.html#YangF16,https://doi.org/10.1002/wcm.2573 +Weiwei Wang 0001,Channel assignment schemes for cooperative spectrum sensing in multi-channel cognitive radio networks.,2015,15,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm15.html#0001KCA15,https://doi.org/10.1002/wcm.2442 +Irfan Dwiguna Sumitra,Study of Hybrid Localization Noncooperative Scheme in Wireless Sensor Network.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#SumitraHS17,https://doi.org/10.1155/2017/6596943 +Shang-Chih Ma,Interlevel-correlated orthogonal space-time block codes based on the expanded signal constellation.,2012,12,Wireless Communications and Mobile Computing,13,db/journals/wicomm/wicomm12.html#Ma12,https://doi.org/10.1002/wcm.1044 +Shiny Abraham,Joint beamforming and power control in downlink multiuser multiple-input multiple-output systems.,2015,15,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm15.html#AbrahamPD15,https://doi.org/10.1002/wcm.2362 +Khoa N. Le,BER of OFDM in Rayleigh fading environments with selective diversity.,2010,10,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm10.html#Le10,https://doi.org/10.1002/wcm.775 +Pu Wang,Cooperative fault-detection mechanism with high accuracy and bounded delay for underwater sensor networks.,2009,9,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm9.html#WangZL09,https://doi.org/10.1002/wcm.591 +Ching-Hsien Hsu,Mobile Edge Computing.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#HsuWZK18,https://doi.org/10.1155/2018/7291954 +Yi Wu 0004,Study of the TCP upstream/downstream unfairness issue with per-flow queuing over infrastructure-mode WLANs.,2005,5,Wireless Communications and Mobile Computing,4,db/journals/wicomm/wicomm5.html#WuNZ05,https://doi.org/10.1002/wcm.303 +Mario O. Diaz,Efficient data aggregation and transport in wireless sensor networks.,2011,11,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm11.html#DiazL11,https://doi.org/10.1002/wcm.806 +Yiping Deng,Relocation routing for energy balancing in mobile sensor networks.,2015,15,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm15.html#DengLWR15,https://doi.org/10.1002/wcm.2410 +Venkata C. Giruka,Security in wireless sensor networks.,2008,8,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm8.html#GirukaSRV08,https://doi.org/10.1002/wcm.422 +Falah H. Ali,Collaborative spreading for the downlink of overloaded CDMA.,2010,10,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm10.html#AliS10,https://doi.org/10.1002/wcm.772 +Zhen-guo Gao,Random network coding-based optimal scheme for perfect wireless packet retransmission problems.,2013,13,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm13.html#GaoXZZCPJW13,https://doi.org/10.1002/wcm.1122 +Mohammad Muntaseer Mahfuz,Optimization of total traffic in a slotted ALOHA based access network considering the capture and retransmission effects.,2005,5,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm5.html#MahfuzHBHI05,https://doi.org/10.1002/wcm.238 +Mostafa Zaman Chowdhury,Emerging Small Cell Wireless Technologies for 5G: Architectures and Applications.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ChowdhuryFMCA18,https://doi.org/10.1155/2018/8969264 +Chalee Thammarat,A Secure Fair Exchange for SMS-Based Mobile Payment Protocols Based on Symmetric Encryption Algorithms with Formal Verification.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#ThammaratK18,https://doi.org/10.1155/2018/6953160 +Liqiang Zhang,A framework for efficient resource management in IEEE 802.11 WLANs.,2004,4,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm4.html#ZhangZ04,https://doi.org/10.1002/wcm.258 +Miguel González-López,Space-time receivers for GSM radio interfaces in subway tunnel environments.,2002,2,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm2.html#Gonzalez-LopezDCLDAC02,https://doi.org/10.1002/wcm.89 +Yu Wang 0019,A survey on analytic studies of Delay-Tolerant Mobile Sensor Networks.,2007,7,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm7.html#WangDW07,https://doi.org/10.1002/wcm.519 +Shiang-Ming Huang,SIP mobility and IPv4/IPv6 dual-stack supports in 3G IP multimedia subsystem.,2006,6,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm6.html#HuangWLY06,https://doi.org/10.1002/wcm.412 +Min-Cheol Kwon,Recognition of Daily Human Activity Using an Artificial Neural Network and Smartwatch.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#KwonC18,https://doi.org/10.1155/2018/2618045 +Ossama Younis,SYNC-NET: distributed time synchronization in clustered sensor networks.,2008,8,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm8.html#YounisF08,https://doi.org/10.1002/wcm.527 +Federico Librino,An algorithmic solution for computing circle intersection areas and its applications to wireless communications.,2014,14,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm14.html#LibrinoLZ14,https://doi.org/10.1002/wcm.2305 +Amnart Boonkajay,Selected mapping technique for reducing PAPR of single-carrier signals.,2016,16,Wireless Communications and Mobile Computing,16,db/journals/wicomm/wicomm16.html#BoonkajayA16,https://doi.org/10.1002/wcm.2701 +Andreas Festag,Investigation of multicast-based mobility support in all-IP cellular networks.,2007,7,Wireless Communications and Mobile Computing,3,db/journals/wicomm/wicomm7.html#FestagKW07,https://doi.org/10.1002/wcm.328 +Zhigang Zhou,Cuckoo: flexible compute-intensive task offloading in mobile cloud computing.,2016,16,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm16.html#ZhouZYD16,https://doi.org/10.1002/wcm.2757 +Mohammed Alansi,Performance Improvement of Space Shift Keying MIMO Systems with Orthogonal Codebook-Based Phase-Rotation Precoding.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#AlansiAS17,https://doi.org/10.1155/2017/4359843 +Eun Kyo Park,Special Issue: Wireless Ad Hoc and Sensor Networks.,2007,7,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm7.html#Park07,https://doi.org/10.1002/wcm.586 +Xiaojiang Du,Increasing network lifetime by balancing node energy consumption in heterogeneous sensor networks.,2008,8,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm8.html#DuXD08,https://doi.org/10.1002/wcm.452 +Tin-Yu Wu,An efficient adaptive intelligent routing system for multi-intersections.,2016,16,Wireless Communications and Mobile Computing,17,db/journals/wicomm/wicomm16.html#WuGH16,https://doi.org/10.1002/wcm.2750 +Fangyu Gai,Trust on the Ratee: A Trust Management System for Social Internet of Vehicles.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#GaiZZJ17,https://doi.org/10.1155/2017/7089259 +Kamel Tourki,Outage analysis of blind cooperative diversity.,2013,13,Wireless Communications and Mobile Computing,10,db/journals/wicomm/wicomm13.html#TourkiA13,https://doi.org/10.1002/wcm.1151 +Simone Morosi,Performance of the bi-orthogonal modulation for ultra-wideband communication systems with multiple access interference.,2005,5,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm5.html#MorosiFRG05,https://doi.org/10.1002/wcm.283 +Thi My Chinh Chu,Performance analysis of MIMO cognitive amplify-and-forward relay networks with orthogonal space-time block codes.,2015,15,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm15.html#ChuPZ15,https://doi.org/10.1002/wcm.2449 +Ante Dagelic,SSID Oracle Attack on Undisclosed Wi-Fi Preferred Network Lists.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#DagelicPVC18,https://doi.org/10.1155/2018/5153265 +Yu-jung Chang,DSP implementation of successive interference cancellation (SIC) receiver for 3GPP WCDMA uplink transmission.,2003,3,Wireless Communications and Mobile Computing,6,db/journals/wicomm/wicomm3.html#ChangLL03,https://doi.org/10.1002/wcm.157 +Xiaochen Li,Power control for delay constrained multi-channel communications using outdated CSI.,2011,11,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm11.html#LiCDW11,https://doi.org/10.1002/wcm.928 +Sunho Lim,A unified bandwidth reservation and admission control mechanism for QoS provisioning in cellular networks.,2004,4,Wireless Communications and Mobile Computing,1,db/journals/wicomm/wicomm4.html#LimCD04,https://doi.org/10.1002/wcm.160 +Wei Fang Mao,Performance of MIMO cross-layer MAC protocol based on antenna selection in ad hoc networks.,2012,12,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm12.html#MaoHD12,https://doi.org/10.1002/wcm.1002 +Tamer A. ElBatt,A cross-layer framework for multiple access and routing design in wireless multi-hop networks.,2011,11,Wireless Communications and Mobile Computing,8,db/journals/wicomm/wicomm11.html#ElBattA11,https://doi.org/10.1002/wcm.902 +F. Taia Alaoui,Pedestrian Dead Reckoning Navigation with the Help of A*-Based Routing Graphs in Large Unconstrained Spaces.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#AlaouiBR17,https://doi.org/10.1155/2017/7951346 +Werner Mohr,Spectrum demand for systems beyond IMT-2000 based on data rate estimates.,2003,3,Wireless Communications and Mobile Computing,7,db/journals/wicomm/wicomm3.html#Mohr03,https://doi.org/10.1002/wcm.173 +Carlos A. Gutiérrez-Díaz-de-León,On the problems of symbol-spaced tapped-delay-line models for WSSUS channels.,2009,9,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm9.html#Gutierrez-Diaz-de-LeonCP09,https://doi.org/10.1002/wcm.683 +Yik Hung Tam,A study of multi-hop cellular networks.,2012,12,Wireless Communications and Mobile Computing,12,db/journals/wicomm/wicomm12.html#TamHA12,https://doi.org/10.1002/wcm.1041 +Ahmed Doha,On the effect of reservation period on performance of IEEE 802.16 R-MAC protocol.,2009,9,Wireless Communications and Mobile Computing,9,db/journals/wicomm/wicomm9.html#DohaHT09,https://doi.org/10.1002/wcm.695 +Qing Liao,Diverse Mobile System for Location-Based Mobile Data.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#LiaoTLD18,https://doi.org/10.1155/2018/4217432 +Margaritis Margaritidis,Adaptation techniques for ubiquitous Internet multimedia.,2001,1,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm1.html#MargaritidisP01,https://doi.org/10.1002/wcm.10 +Hyunjue Kim,A novel elliptical curve ID cryptography protocol for multi-hop ZigBee sensor networks.,2012,12,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm12.html#KimKC12,https://doi.org/10.1002/wcm.947 +Xiaolan Tang,Data Dissemination Based on Fuzzy Logic and Network Coding in Vehicular Networks.,2017,2017,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2017.html#TangGCM17,https://doi.org/10.1155/2017/6834053 +Khuong Ho-Van,Reliability-Security Trade-Off Analysis of Cognitive Radio Networks with Jamming and Licensed Interference.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#Ho-VanD18,https://doi.org/10.1155/2018/5457176 +Berihun Fekade,Clustering hypervisors to minimize failures in mobile cloud computing.,2016,16,Wireless Communications and Mobile Computing,18,db/journals/wicomm/wicomm16.html#FekadeMJ16,https://doi.org/10.1002/wcm.2770 +Jun Feng,Automatic Approach of Sentiment Lexicon Generation for Mobile Shopping Reviews.,2018,2018,Wireless Communications and Mobile Computing,,db/journals/wicomm/wicomm2018.html#FengGLL18,https://doi.org/10.1155/2018/9839432 +Imen Mrissa,A context-aware cognitive SIMO transceiver for enhanced throughput on the downlink of LTE HetNet.,2016,16,Wireless Communications and Mobile Computing,11,db/journals/wicomm/wicomm16.html#MrissaBAS16,https://doi.org/10.1002/wcm.2705 +Guangbin Fan,Constructing optimal virtual cellular networks for nonuniformly distributed base stations.,2003,3,Wireless Communications and Mobile Computing,2,db/journals/wicomm/wicomm3.html#FanZ03,https://doi.org/10.1002/wcm.110 +Yongkui Han,Simulated Annealing Based Temperature Aware Floorplanning.,2007,3,J. Low Power Electronics,2,db/journals/jolpe/jolpe3.html#HanK07,https://doi.org/10.1166/jolpe.2007.128 +Bahniman Ghosh,Quantum-Dot Cellular Automata-Implementing Reversible Benchmarks.,2014,10,J. Low Power Electronics,3,db/journals/jolpe/jolpe10.html#GhoshK14,https://doi.org/10.1166/jolpe.2014.1346 +George N. Selimis,A Low Power Design for Sbox Cryptographic Primitive of Advanced Encryption Standard for Mobile End-Users.,2007,3,J. Low Power Electronics,3,db/journals/jolpe/jolpe3.html#SelimisKFMK07,https://doi.org/10.1166/jolpe.2007.139 +Balwinder Raj,Process Variation Tolerant FinFET Based Robust Low Power SRAM Cell Design at 32 nm Technology.,2011,7,J. Low Power Electronics,2,db/journals/jolpe/jolpe7.html#RajMBRSD11,https://doi.org/10.1166/jolpe.2011.1125 +Mallik Kandala,Low-Power Circuit Techniques for Charge-Scaling Successive Approximation Register ADC Design.,2010,6,J. Low Power Electronics,2,db/journals/jolpe/jolpe6.html#KandalaW10,https://doi.org/10.1166/jolpe.2010.1084 +Reza Faghih Mirzaee,Design of a Ternary Edge-Sensitive D FFF for Multiple-Valued Sequential Logic.,2017,13,J. Low Power Electronics,1,db/journals/jolpe/jolpe13.html#MirzaeeF17,https://doi.org/10.1166/jolpe.2017.1463 +Pascal Vivet,On-line Power Optimization of Data Flow Multi-Core Architecture Based on Vdd-Hopping for Local Dynamic Voltage and Frequency Scaling.,2011,7,J. Low Power Electronics,2,db/journals/jolpe/jolpe7.html#VivetBLZ11,https://doi.org/10.1166/jolpe.2011.1135 +S. Kumaravel,A Power Efficient Low Noise Preamplifier for Biomedical Applications.,2013,9,J. Low Power Electronics,4,db/journals/jolpe/jolpe9.html#KumaravelTVR13,https://doi.org/10.1166/jolpe.2013.1286 +Antoine Courtay,Spatial Switching Data Coding Technique Analysis and Improvements for Interconnect Power Consumption Optimization.,2010,6,J. Low Power Electronics,1,db/journals/jolpe/jolpe6.html#CourtayLS10,https://doi.org/10.1166/jolpe.2010.1054 +Maher Assaad,A Hardware Description Language-Based Serial Link for Multicores SoC/NoC Interconnect.,2018,14,J. Low Power Electronics,1,db/journals/jolpe/jolpe14.html#Assaad18,https://doi.org/10.1166/jolpe.2018.1544 +Muhammad Mudassar Nisar,Environment and Process Adaptive Low Power Wireless Baseband Signal Processing Using Dual Real-Time Feedback.,2009,5,J. Low Power Electronics,3,db/journals/jolpe/jolpe5.html#NisarC09,https://doi.org/10.1166/jolpe.2009.1032 +René Kothe,A Scan Controller Concept for Low Power Scan Tests.,2008,4,J. Low Power Electronics,3,db/journals/jolpe/jolpe4.html#KotheV08,https://doi.org/10.1166/jolpe.2008.195 +Kapil Dev,Scheduling on CPU + GPU Processors Under Dynamic Conditions.,2017,13,J. Low Power Electronics,4,db/journals/jolpe/jolpe13.html#DevZR17,https://doi.org/10.1166/jolpe.2017.1525 +Dmitrij Kissler,Power-Efficient Reconfiguration Control in Coarse-Grained Dynamically Reconfigurable Architectures.,2009,5,J. Low Power Electronics,1,db/journals/jolpe/jolpe5.html#KisslerSHT09,https://doi.org/10.1166/jolpe.2009.1008 +Christian Schuster,An Architecture Design Methodology for Minimal Total Power Consumption at Fixed Vdd and Vth.,2005,1,J. Low Power Electronics,1,db/journals/jolpe/jolpe1.html#SchusterPNF05,https://doi.org/10.1166/jolpe.2005.006 +Mario Osta,Low Power Approximate Multipliers for Energy Efficient Data Processing.,2018,14,J. Low Power Electronics,1,db/journals/jolpe/jolpe14.html#OstaISCV18,https://doi.org/10.1166/jolpe.2018.1536 +Nisar Ahmed,A Novel IR-Drop Tolerant Transition Delay Fault Test Pattern Generation Procedure.,2010,6,J. Low Power Electronics,1,db/journals/jolpe/jolpe6.html#AhmedT10,https://doi.org/10.1166/jolpe.2010.1065 +Himani Upadhyay,A High Speed and Low Power 8 Bit and** 8 Bit Multiplier Design Using Novel Two Transistor (2T) XOR Gates.,2015,11,J. Low Power Electronics,1,db/journals/jolpe/jolpe11.html#UpadhyayC15,https://doi.org/10.1166/jolpe.2015.1362 +Atanu Kundu,Asymmetric Underlap Dual Material Gate DG-FET for Low Power Analog/RF Applications.,2015,11,J. Low Power Electronics,4,db/journals/jolpe/jolpe11.html#KunduDS15,https://doi.org/10.1166/jolpe.2015.1415 +Farooq Ahmad Khanday,Ultra Low-Voltage Ultra Low-Power Sinh-Domain Wavelet Filer for Electrocardiogram Signal Analysis.,2013,9,J. Low Power Electronics,3,db/journals/jolpe/jolpe9.html#KhandayPP13,https://doi.org/10.1166/jolpe.2013.1260 +Sanjay Burman,Power Consumption versus Hardware Security: Feasibility Study of Differential Power Attack on Linear Feedback Shift Register Based Stream Ciphers and Its Countermeasures.,2016,12,J. Low Power Electronics,2,db/journals/jolpe/jolpe12.html#BurmanPMV16,https://doi.org/10.1166/jolpe.2016.1434 +Guillermo Indalecio Fernández,Variability Characterisation of Nanoscale Si and InGaAs Fin Field-Effect-Transistors at Subthreshold.,2015,11,J. Low Power Electronics,2,db/journals/jolpe/jolpe11.html#FernandezSAKG15,https://doi.org/10.1166/jolpe.2015.1371 +Koushik Chakraborty,A Novel Threshold Voltage Assignment for 3D Multicore Designs.,2010,6,J. Low Power Electronics,3,db/journals/jolpe/jolpe6.html#ChakrabortyR10,https://doi.org/10.1166/jolpe.2010.1091 +R. S. Oliveira,On-Line BIST for Performance Failure Prediction Under NBTI-Induced Aging in Safety-Critical Applications.,2011,7,J. Low Power Electronics,4,db/journals/jolpe/jolpe7.html#OliveiraSTST11,https://doi.org/10.1166/jolpe.2011.1155 +Fahimeh Danehdaran,Design and Power Analysis of New Coplanar One-Bit Full-Adder Cell in Quantum-Dot Cellular Automata.,2018,14,J. Low Power Electronics,1,db/journals/jolpe/jolpe14.html#DanehdaranKNB18,https://doi.org/10.1166/jolpe.2018.1529 +K. Sreejith,A Workload Based Lookup Table for Minimal Power Operation Under Supply and Body Bias Control.,2009,5,J. Low Power Electronics,2,db/journals/jolpe/jolpe5.html#SreejithAB09,https://doi.org/10.1166/jolpe.2009.1018 +Arundhati Bhattacharya,Design and Analysis of Robust Spin Transfer Torque Magnetic Random Access Memory Bitcell Using FinFET.,2014,10,J. Low Power Electronics,2,db/journals/jolpe/jolpe10.html#BhattacharyaI14,https://doi.org/10.1166/jolpe.2014.1319 +Shireesh Verma,A Special Issue on Low Power Design and Verification Techniques.,2011,7,J. Low Power Electronics,1,db/journals/jolpe/jolpe7.html#Verma11,https://doi.org/10.1166/jolpe.2011.1111 +Priyankar Ghosh,POWER-SIM: An SOC Simulator for Estimating Power Profiles of Mobile Workloads.,2012,8,J. Low Power Electronics,3,db/journals/jolpe/jolpe8.html#GhoshHGBDMP12,https://doi.org/10.1166/jolpe.2012.1193 +Andre L. M. Martins,Distributed Runtime Energy Management for Many-Core Systems Running Real-Time Applications.,2017,13,J. Low Power Electronics,3,db/journals/jolpe/jolpe13.html#MartinsRSM17,https://doi.org/10.1166/jolpe.2017.1502 +Olivier Mazouffre,A 1 V 270 My-W 2 GHz CMOS Synchronized Ring Oscillator Based Prescaler.,2005,1,J. Low Power Electronics,2,db/journals/jolpe/jolpe1.html#MazouffreLBCBD05,https://doi.org/10.1166/jolpe.2005.016 +Purvi Patel,A 46 nW Power Management Unit with Battery Extender for Solar Energy Harvesters Using 0.18 λ6*m CMOS.,2018,14,J. Low Power Electronics,2,db/journals/jolpe/jolpe14.html#PatelMN18,https://doi.org/10.1166/jolpe.2018.1557 +Linwei Niu,System Wide Dynamic Power Management for Weakly Hard Real-Time Systems.,2006,2,J. Low Power Electronics,3,db/journals/jolpe/jolpe2.html#NiuQ06,https://doi.org/10.1166/jolpe.2006.101 +Satarupa Bal,Design and Analysis of Improved Soft Switching DC-DC Boost Converter for Low Power Photovoltaic Applications.,2013,9,J. Low Power Electronics,3,db/journals/jolpe/jolpe9.html#BalAB13,https://doi.org/10.1166/jolpe.2013.1267 +Raimon Casanova,Multiclock Domain and Dynamic Frequency Scaling Applied to the Control Unit of a Battery Powered for 1 cm3 Microrobot.,2006,2,J. Low Power Electronics,2,db/journals/jolpe/jolpe2.html#CasanovaDAS06,https://doi.org/10.1166/jolpe.2006.067 +Priyankar Talukdar,Power-Aware Automated Pipelining of Combinational Circuits.,2015,11,J. Low Power Electronics,3,db/journals/jolpe/jolpe11.html#Talukdar15,https://doi.org/10.1166/jolpe.2015.1385 +Fabian Oboril,Negative Bias Temperature Instability-Aware Instruction Scheduling: A Cross-Layer Approach.,2013,9,J. Low Power Electronics,4,db/journals/jolpe/jolpe9.html#OborilFKT13,https://doi.org/10.1166/jolpe.2013.1284 +Suresh Alapati,Capacitor Less Voltage Regulator with Split Drive Error Amplifier for Segmented Pass Transistors.,2018,14,J. Low Power Electronics,1,db/journals/jolpe/jolpe14.html#AlapatiP18,https://doi.org/10.1166/jolpe.2018.1530 +Alberto García Ortiz,Low-Power Coding for Networks-on-Chip with Virtual Channels.,2009,5,J. Low Power Electronics,1,db/journals/jolpe/jolpe5.html#OrtizIMG09,https://doi.org/10.1166/jolpe.2009.1006 +Julien De Vos,Pushing Adaptive Voltage Scaling Fully on Chip.,2012,8,J. Low Power Electronics,1,db/journals/jolpe/jolpe8.html#VosFB12,https://doi.org/10.1166/jolpe.2012.1175 +K. Najeeb,Controllability-Driven Peak Dynamic Power Estimation for VLSI Circuits.,2007,3,J. Low Power Electronics,3,db/journals/jolpe/jolpe3.html#NajeebGKV07,https://doi.org/10.1166/jolpe.2007.140 +Garima Thakral,DOE-ILP Based Simultaneous Power and Read Stability Optimization in Nano-CMOS SRAM.,2010,6,J. Low Power Electronics,3,db/journals/jolpe/jolpe6.html#ThakralMPK10,https://doi.org/10.1166/jolpe.2010.1093 +Jitendra Kanungo,An Efficient Single Phase Adiabatic Logic and Its Application to Combinational and Sequential Design.,2011,7,J. Low Power Electronics,3,db/journals/jolpe/jolpe7.html#KanungoD11,https://doi.org/10.1166/jolpe.2011.1143 +Weihuang Wang,Low-Power VLSI Design of LDPC Decoder Using Dynamic Voltage and Frequency Scaling for Additive White Gaussian Noise Channels.,2009,5,J. Low Power Electronics,3,db/journals/jolpe/jolpe5.html#WangKGC09,https://doi.org/10.1166/jolpe.2009.1031 +Adedotun Adeyemo,Minimising Impact of Wire Resistance in Low-Power Crossbar Array Write Scheme.,2017,13,J. Low Power Electronics,4,db/journals/jolpe/jolpe13.html#AdeyemoJM17,https://doi.org/10.1166/jolpe.2017.1512 +Hyusim Park,Variable Gain Potentiostat Architecture for Glucose Sensing from Blood and Tear Fluid.,2017,13,J. Low Power Electronics,2,db/journals/jolpe/jolpe13.html#ParkKJR17,https://doi.org/10.1166/jolpe.2017.1486 +Sudip Ghosh 0001,Field Programmable Gate Array and System-on-Chip Based Implementation of Discrete Fast Walsh-Hadamard Transform Domain Image Watermarking Architecture for Real-Time Applications.,2015,11,J. Low Power Electronics,3,db/journals/jolpe/jolpe11.html#0001BMR15,https://doi.org/10.1166/jolpe.2015.1388 +Matheus Trevisan Moreira,Spatially Distributed Dual-Spacer Null Convention Logic Design.,2014,10,J. Low Power Electronics,3,db/journals/jolpe/jolpe10.html#MoreiraTMC14,https://doi.org/10.1166/jolpe.2014.1332 +Roozbeh Jafari,Epsilon-Optimal Minimal-Skew Battery Lifetime Routing in Distributed Embedded Systems.,2005,1,J. Low Power Electronics,2,db/journals/jolpe/jolpe1.html#JafariDS05,https://doi.org/10.1166/jolpe.2005.031 +Armin Tajalli,Tradeoffs in Design of Low-Power Gated-Oscillator Clock and Data Recovery Circuits.,2007,3,J. Low Power Electronics,3,db/journals/jolpe/jolpe3.html#TajalliML07,https://doi.org/10.1166/jolpe.2007.145 +D. Ghosh,A Novel Design of Seven Segment Decoder Using Cyclic Combinational Technique.,2013,9,J. Low Power Electronics,4,db/journals/jolpe/jolpe9.html#GhoshMKBD13,https://doi.org/10.1166/jolpe.2013.1274 +Sachin Idgunji,Design and Analysis of a Low Power Multi-Threshold CMOS Based ARM926 System.,2008,4,J. Low Power Electronics,1,db/journals/jolpe/jolpe4.html#IdgunjiF08,https://doi.org/10.1166/jolpe.2008.153 +Tamal Das,Switched-Capacitor Based Buck Converter Design Using Current Limiter.,2009,5,J. Low Power Electronics,3,db/journals/jolpe/jolpe5.html#DasM09,https://doi.org/10.1166/jolpe.2009.1028 +Ka Nang Leung,RF Module Design of Passive UHF RFID Tag Implemented in CMOS 90-nm Technology.,2010,6,J. Low Power Electronics,1,db/journals/jolpe/jolpe6.html#LeungCPLGNCSHHMA10,https://doi.org/10.1166/jolpe.2010.1064 +Maurizio Valle,Selected Articles from the NGCAS 2017 Conference.,2018,14,J. Low Power Electronics,1,db/journals/jolpe/jolpe14.html#ValleIMM18,https://doi.org/10.1166/jolpe.2018.1546 +Rijo Sebastian,Multi-Stage Noise Shaping Δ Σ Modulator with Enhanced Noise Shaping for Low Power Wideband Applications.,2017,13,J. Low Power Electronics,4,db/journals/jolpe/jolpe13.html#SebastianPJS17,https://doi.org/10.1166/jolpe.2017.1511 +Mehdi Nasrollahpour,Low-Power Bluetooth Receiver Front End Design with Oscillator Leakage Reduction Technique.,2018,14,J. Low Power Electronics,1,db/journals/jolpe/jolpe14.html#NasrollahpourSH18,https://doi.org/10.1166/jolpe.2018.1539 +Giuseppe Visalli,Fuzzy Control of Coding Schemes for Reducing Energy Dissipation in Off-Chip Buses.,2008,4,J. Low Power Electronics,2,db/journals/jolpe/jolpe4.html#Visalli08,https://doi.org/10.1166/jolpe.2008.257 +Aya Mabrouki,An Optimum Body Biasing for Gain and Linearity Control in CMOS Low-Noise Amplifiers.,2011,7,J. Low Power Electronics,2,db/journals/jolpe/jolpe7.html#MabroukiTDB11,https://doi.org/10.1166/jolpe.2011.1128 +Arghavan Asad,Power Modeling and Runtime Performance Optimization of Power Limited Many-Core Systems Based on a Dynamic Adaptive Approach.,2017,13,J. Low Power Electronics,2,db/journals/jolpe/jolpe13.html#AsadFMR17,https://doi.org/10.1166/jolpe.2017.1487 +Alejandro Nocua,A Cross-Level Power Estimation Technique to Enhance High-Level Power Models Quality.,2017,13,J. Low Power Electronics,1,db/journals/jolpe/jolpe13.html#NocuaVBGC17,https://doi.org/10.1166/jolpe.2017.1472 +Ashutosh Nandi,Design and Analysis of Sub-DT Sub-Domino Logic Circuits for Ultra Low Power Applications.,2010,6,J. Low Power Electronics,4,db/journals/jolpe/jolpe6.html#NandiC10,https://doi.org/10.1166/jolpe.2010.1100 +Wen-Tao Bao,Analytical Model for Key Electrical Parameter of Superjunction VDMOS.,2016,12,J. Low Power Electronics,4,db/journals/jolpe/jolpe12.html#Wen-TaoSDHYZ16,https://doi.org/10.1166/jolpe.2016.1456 +M. Bhaskar,Differential Voltage Mode On-Chip Serial Transceiver for Global Interconnects.,2014,10,J. Low Power Electronics,2,db/journals/jolpe/jolpe10.html#BhaskarV14,https://doi.org/10.1166/jolpe.2014.1323 +Jiaoyan Chen,Ultra Low Power Asynchronous Charge Sharing Logic.,2012,8,J. Low Power Electronics,4,db/journals/jolpe/jolpe8.html#ChenVSP12,https://doi.org/10.1166/jolpe.2012.1213 +Sanjay Kumar Wadhwa,CMOS Proportional-to-Absolute Temperature Current Reference for Low Voltage Operation.,2009,5,J. Low Power Electronics,3,db/journals/jolpe/jolpe5.html#Wadhwa09,https://doi.org/10.1166/jolpe.2009.1027 +Howard Chen,Statistical Power Analysis for High-Performance Processors.,2009,5,J. Low Power Electronics,1,db/journals/jolpe/jolpe5.html#ChenNXZV09,https://doi.org/10.1166/jolpe.2009.1005 +Anand Ramalingam,Wakeup Scheduling in MTCMOS Circuits Using Successive Relaxation to Minimize Ground Bounce.,2007,3,J. Low Power Electronics,1,db/journals/jolpe/jolpe3.html#RamalingamDP07,https://doi.org/10.1166/jolpe.2007.116 +Sumanta Pyne,Runtime Leakage Power Reduction Using Loop Unrolling and Fine Grained Power Gating.,2015,11,J. Low Power Electronics,1,db/journals/jolpe/jolpe11.html#PyneP15,https://doi.org/10.1166/jolpe.2015.1361 +R. K. Kavitha,Low Power Data Driven Conditional Precharge Dynamic Flip Flop.,2017,13,J. Low Power Electronics,4,db/journals/jolpe/jolpe13.html#KavithaTVV17,https://doi.org/10.1166/jolpe.2017.1523 +Walid Elgharbawy,Novel Adaptive Body Biasing Techniques for Energy Efficient Subthreshold CMOS Circuits.,2007,3,J. Low Power Electronics,2,db/journals/jolpe/jolpe3.html#ElgharbawyGMB07,https://doi.org/10.1166/jolpe.2007.131 +Bahniman Ghosh,Impact of High- Spacer on Junctionless Transistor in Sub-Threshold Regime.,2014,10,J. Low Power Electronics,2,db/journals/jolpe/jolpe10.html#GhoshMAB14,https://doi.org/10.1166/jolpe.2014.1312 +Ajit Gupte,Adaptive Global Elimination Algorithm for Low Power Motion Estimation (J. Low Power Electronics 5: 1-16 (2009)).,2009,5,J. Low Power Electronics,2,db/journals/jolpe/jolpe5.html#GupteA09a,https://doi.org/10.1166/jolpe.2009.1025 +Michele Magno,An Energy Efficient E-Skin Embedded System for Real-Time Tactile Data Decoding.,2018,14,J. Low Power Electronics,1,db/journals/jolpe/jolpe14.html#MagnoIPVB18,https://doi.org/10.1166/jolpe.2018.1537 +Esteve Amat,Variability Influence on FinFET-Based On-Chip Memory Data Paths.,2015,11,J. Low Power Electronics,2,db/journals/jolpe/jolpe11.html#AmatCCR15,https://doi.org/10.1166/jolpe.2015.1369 +Ali Mahdoum,An Efficient Assignment of Voltages and Optional Cycles for Maximizing Rewards in Real-Time Systems with Energy Constraints.,2006,2,J. Low Power Electronics,2,db/journals/jolpe/jolpe2.html#MahdoumBB06,https://doi.org/10.1166/jolpe.2006.059 +Janakiraman Viraraghavan,Voltage and Temperature Scalable Logic Cell Leakage Models Considering Local Variations Based on Transistor Stacks.,2008,4,J. Low Power Electronics,3,db/journals/jolpe/jolpe4.html#ViraraghavanAV08,https://doi.org/10.1166/jolpe.2008.187 +Giuseppe Visalli,A Low Power L1 Cache Design Based on Data and Tag Re-Mapping.,2013,9,J. Low Power Electronics,4,db/journals/jolpe/jolpe9.html#Visalli13,https://doi.org/10.1166/jolpe.2013.1275 +Tiago H. Moita,ActivIC: Design-Based Automatic Characterization of Mixed-Signal Integrated Circuits.,2013,9,J. Low Power Electronics,1,db/journals/jolpe/jolpe9.html#MoitaAS13,https://doi.org/10.1166/jolpe.2013.1242 +Kostas Siozios,A Power-Aware Placement and Routing Algorithm Targeting 3D FPGAs.,2008,4,J. Low Power Electronics,3,db/journals/jolpe/jolpe4.html#SioziosS08,https://doi.org/10.1166/jolpe.2008.184 +Mohammad Hossein Hajkazemi,An Alternative Hybrid Power-Aware Adder for High-Performance Processors.,2014,10,J. Low Power Electronics,1,db/journals/jolpe/jolpe10.html#HajkazemiB14,https://doi.org/10.1166/jolpe.2014.1292 +Srikanta Bose,Characterization of GaN/(4H)SiC Heterostructure Vertical pn Power Diode.,2013,9,J. Low Power Electronics,1,db/journals/jolpe/jolpe9.html#BoseM13,https://doi.org/10.1166/jolpe.2013.1243 +Gayatri Mehta,A Low-Energy Reconfigurable Fabric for the SuperCISC Architecture.,2006,2,J. Low Power Electronics,2,db/journals/jolpe/jolpe2.html#MehtaSLHHJ06,https://doi.org/10.1166/jolpe.2006.073 +M. Karunaratne,A Dynamic Power Estimation Method for System on Chip Designs.,2015,11,J. Low Power Electronics,4,db/journals/jolpe/jolpe11.html#KarunaratneS15,https://doi.org/10.1166/jolpe.2015.1408 +Mihai Tache,Enhancing the Static Noise Margins by Upsizing Length for Ultra-Low Voltage/Power/Energy Gates.,2014,10,J. Low Power Electronics,1,db/journals/jolpe/jolpe10.html#TacheBIKA14,https://doi.org/10.1166/jolpe.2014.1305 +Parag Kulkarni,Trading Accuracy for Power in a Multiplier Architecture.,2011,7,J. Low Power Electronics,4,db/journals/jolpe/jolpe7.html#KulkarniGE11,https://doi.org/10.1166/jolpe.2011.1157 +Moumita Chakraborty,Pre-Layout Decoupling Capacitance Estimation and Allocation for Noise-Aware Crypto-System on Chip Applications.,2015,11,J. Low Power Electronics,3,db/journals/jolpe/jolpe11.html#ChakrabortyGSMC15,https://doi.org/10.1166/jolpe.2015.1397 +Motoi Ichihashi,An On-Chip Multi-Mode Buck DC-DC Converter for Fine-Grain DVS on a Multi-Power Domain SoC Using a 65-nm Standard CMOS Logic Process.,2010,6,J. Low Power Electronics,1,db/journals/jolpe/jolpe6.html#IchihashiLBRBA10,https://doi.org/10.1166/jolpe.2010.1071 +Hanene Ben Fradj,Low Power Main Memory Configuration and Tasks Allocation.,2008,4,J. Low Power Electronics,2,db/journals/jolpe/jolpe4.html#FradjBAP08,https://doi.org/10.1166/jolpe.2008.265 +A. Jasuja,A Design Approach for Efficient Multipliers for Wearable Technology.,2015,11,J. Low Power Electronics,3,db/journals/jolpe/jolpe11.html#JasujaS15,https://doi.org/10.1166/jolpe.2015.1400 +Yan Lin Aung,Addressing Productivity Challenges in Domain-Specific Reconfigurable Platforms: A Case Study on Extended Kalman Filter-Based Motor Control.,2014,10,J. Low Power Electronics,3,db/journals/jolpe/jolpe10.html#AungLS14,https://doi.org/10.1166/jolpe.2014.1342 +Anna Richelli,Design of Hybrid Low Voltage DC/DC Converters Based on Power Efficiency.,2013,9,J. Low Power Electronics,1,db/journals/jolpe/jolpe9.html#RichelliCK13,https://doi.org/10.1166/jolpe.2013.1244 +Santosh Koppa,Performance Tradeoffs in the Design of Low-Power SRAM Arrays for Implantable Devices.,2018,14,J. Low Power Electronics,1,db/journals/jolpe/jolpe14.html#KoppaJ18,https://doi.org/10.1166/jolpe.2018.1528 +Michael Hinds,An Asynchronous Advanced Encryption Standard Core Design for Energy Efficiency.,2013,9,J. Low Power Electronics,2,db/journals/jolpe/jolpe9.html#HindsSDS13,https://doi.org/10.1166/jolpe.2013.1251 +Safwat Mostafa,Reducing Power and Cycle Requirement for Fast Fourier Transform of Electrocardiogram Signals Through Low Level Arithmetic Optimizations for Cardiac Implantable Devices.,2016,12,J. Low Power Electronics,1,db/journals/jolpe/jolpe12.html#MostafaJ16,https://doi.org/10.1166/jolpe.2016.1423 +He Tang,Design Matrix Analysis for Capacitive Interpolation Flash ADC.,2011,7,J. Low Power Electronics,1,db/journals/jolpe/jolpe7.html#TangZFWLFLW11,https://doi.org/10.1166/jolpe.2011.1117 +Péter Horváth 0002,ARTL-Based Hardware Synthesis to Non-Heterogeneous Standard Cell ASIC Technologies.,2015,11,J. Low Power Electronics,3,db/journals/jolpe/jolpe11.html#0002H15,https://doi.org/10.1166/jolpe.2015.1402 +Satyajit Desai,Using Adaptive Body Biasing for Robust Process Variation Aware DRAM Design.,2013,9,J. Low Power Electronics,1,db/journals/jolpe/jolpe9.html#DesaiR13,https://doi.org/10.1166/jolpe.2013.1237 +Rishad Ahmed Shafik,Soft Error-Aware Voltage Scaling Technique for Power Minimization in Application-Specific Multiprocessor System-on-Chip.,2009,5,J. Low Power Electronics,2,db/journals/jolpe/jolpe5.html#ShafikAKE09,https://doi.org/10.1166/jolpe.2009.1016 +Amir-Mohammad Rahmani,Exploring a Low-Cost and Power-Efficient Hybridization Technique for 3D NoC-Bus Hybrid Architecture Using LastZ-Based Routing Algorithms.,2012,8,J. Low Power Electronics,4,db/journals/jolpe/jolpe8.html#RahmaniLPT12,https://doi.org/10.1166/jolpe.2012.1202 +Jimson Mathew,Selected Articles from the IEEE ISED 2016 Conference.,2017,13,J. Low Power Electronics,4,db/journals/jolpe/jolpe13.html#MathewRPP17,https://doi.org/10.1166/jolpe.2017.1526 +Pradeep Nair,Probability-Based Optimal Sizing of Power-Gating Transistors in Full Adders for Reduced Leakage and High Performance.,2012,8,J. Low Power Electronics,4,db/journals/jolpe/jolpe8.html#NairEJ12,https://doi.org/10.1166/jolpe.2012.1207 +Irith Pomeranz,Diagnostic Test Sets with Increased Switching Activity for Transition Faults.,2013,9,J. Low Power Electronics,1,db/journals/jolpe/jolpe9.html#Pomeranz13,https://doi.org/10.1166/jolpe.2013.1248 +Mahilchi Milir Vaseekar Kumar,Low Power Test Generation for Path Delay Faults.,2005,1,J. Low Power Electronics,2,db/journals/jolpe/jolpe1.html#KumarT05,https://doi.org/10.1166/jolpe.2005.019 +Bahman Kheradmand Boroujeni,A Scalable and Adaptive Technique for Compensating Process Variations and Controlling Leakage and Delay in the FPGA.,2013,9,J. Low Power Electronics,1,db/journals/jolpe/jolpe9.html#BoroujeniPL13,https://doi.org/10.1166/jolpe.2013.1235 +Yi Zhang,On-Chip Single-Inductor Multiple-Output Power Converter Design with Adaptive Cross Regulation and Supply Variation Control for Power-Efficient VLSI Systems.,2011,7,J. Low Power Electronics,1,db/journals/jolpe/jolpe7.html#ZhangBM11,https://doi.org/10.1166/jolpe.2011.1118 +Jun Shiomi,Minimum Energy Point Tracking with All-Digital On-Chip Sensors.,2018,14,J. Low Power Electronics,2,db/journals/jolpe/jolpe14.html#ShiomiHIO18,https://doi.org/10.1166/jolpe.2018.1561 +Bramha Allu,Reducing Instruction Translation Look-Aside Buffer Energy Through Compiler-Directed Resizing.,2006,2,J. Low Power Electronics,2,db/journals/jolpe/jolpe2.html#AlluZ06,https://doi.org/10.1166/jolpe.2006.061 +Somayyeh Rahimian,Inter-Plane Communication Methods for 3-D ICs.,2012,8,J. Low Power Electronics,2,db/journals/jolpe/jolpe8.html#RahimianPM12,https://doi.org/10.1166/jolpe.2012.1182 +Bahniman Ghosh,Device Physics of Germanium-Junctionless Tunnel Field Effect Transistor and an Approach to Optimize I on/I off by Drain Engineering and Work Function Engineering.,2014,10,J. Low Power Electronics,1,db/journals/jolpe/jolpe10.html#GhoshBMA14,https://doi.org/10.1166/jolpe.2014.1300 +Daniel Fusco,Radiation Effects in Low Power and Ultra-Low Power Voltage References.,2016,12,J. Low Power Electronics,4,db/journals/jolpe/jolpe12.html#FuscoB16,https://doi.org/10.1166/jolpe.2016.1453 +Victor Navarro-Botello,Low Power and High Performance Arithmetic Circuits in Feedthrough CMOS Logic Family for Low Power Applications.,2006,2,J. Low Power Electronics,2,db/journals/jolpe/jolpe2.html#Navarro-BotelloMN06,https://doi.org/10.1166/jolpe.2006.066 +Giuseppe Visalli,A Bus Switch Coding System with Minimal Hardware Demand.,2012,8,J. Low Power Electronics,4,db/journals/jolpe/jolpe8.html#Visalli12,https://doi.org/10.1166/jolpe.2012.1203 +Dongkun Shin,Communication Power Optimization for Network-on-Chip Architectures.,2006,2,J. Low Power Electronics,2,db/journals/jolpe/jolpe2.html#ShinK06,https://doi.org/10.1166/jolpe.2006.069 +Judit Freijedo,Impact of Power Supply Voltage Variations on FPGA-Based Digital Systems Performance.,2010,6,J. Low Power Electronics,2,db/journals/jolpe/jolpe6.html#FreijedoCSRMVTT10,https://doi.org/10.1166/jolpe.2010.1076 +Luciano Lavagno,Selected Articles from the CDNLive! EMEA 2012 Conference.,2012,8,J. Low Power Electronics,5,db/journals/jolpe/jolpe8.html#LavagnoH12,https://doi.org/10.1166/jolpe.2012.1231 +Alin Razafindraibe,Compact and Secured Primitives for the Design of Asynchronous Circuits.,2005,1,J. Low Power Electronics,1,db/journals/jolpe/jolpe1.html#RazafindraibeRM05,https://doi.org/10.1166/jolpe.2005.009 +Kyungseok Kim,Ultra Low Energy CMOS Logic Using Below-Threshold Dual-Voltage Supply.,2011,7,J. Low Power Electronics,4,db/journals/jolpe/jolpe7.html#KimA11,https://doi.org/10.1166/jolpe.2011.1162 +Rajesh Amratlal Thakker,Automatic Design of Low-Power Low-Voltage Analog Circuits Using Particle Swarm Optimization with Re-Initialization.,2009,5,J. Low Power Electronics,3,db/journals/jolpe/jolpe5.html#ThakkerBP09,https://doi.org/10.1166/jolpe.2009.1030 +Akhilesh Kumar,Power-Yield Enhancement for Field Programmable Gate Arrays Under Process Variations.,2010,6,J. Low Power Electronics,2,db/journals/jolpe/jolpe6.html#KumarA10,https://doi.org/10.1166/jolpe.2010.1081 +Patrick Girard 0001,Welcome to the Journal of Low Power Electronics.,2005,1,J. Low Power Electronics,1,db/journals/jolpe/jolpe1.html#Girard05,https://doi.org/10.1166/jolpe.2005.010 +Arasu T. Senthil,Low-Power Hierarchical Scan Test for Multiple Clock Domains.,2007,3,J. Low Power Electronics,1,db/journals/jolpe/jolpe3.html#SenthilRN07,https://doi.org/10.1166/jolpe.2007.117 +Venkatachalam Nithish Kumar,Low Power and Area Efficient Carry Select Adder.,2014,10,J. Low Power Electronics,4,db/journals/jolpe/jolpe10.html#KumarRLS14,https://doi.org/10.1166/jolpe.2014.1352 +Bruno Jacinto,Digital Sliding Mode Control of DC-DC Buck Converters.,2011,7,J. Low Power Electronics,2,db/journals/jolpe/jolpe7.html#JacintoMS11,https://doi.org/10.1166/jolpe.2011.1130 +Sangeeta Singh,Non-Hysteretic Behavior of Super Steep Ferroelectric Negative Capacitance Tunnel Field Effect Transistor Based on Body Profile Engineering.,2015,11,J. Low Power Electronics,4,db/journals/jolpe/jolpe11.html#SinghKP15,https://doi.org/10.1166/jolpe.2015.1411 +Yanjun Zhang,Research of Optimization for Transmission Power and Transfer Efficiency of the Loosely Coupled Wireless Charging System.,2016,12,J. Low Power Electronics,3,db/journals/jolpe/jolpe12.html#ZhangYN16,https://doi.org/10.1166/jolpe.2016.1441 +Suresh Mopuri,Low-Complexity and Reconfigurable Discrete Hilbert Transform Architecture Design Methodology.,2018,14,J. Low Power Electronics,2,db/journals/jolpe/jolpe14.html#MopuriRA18,https://doi.org/10.1166/jolpe.2018.1553 +Sarvesh Bhardwaj,Multi-Attribute Optimization with Application to Leakage-Delay Trade-Offs Using Utility Theory.,2008,4,J. Low Power Electronics,1,db/journals/jolpe/jolpe4.html#BhardwajV08,https://doi.org/10.1166/jolpe.2008.147 +Ali Ibrahim,Approximate Computing Techniques for Low Power Implementation of Reconfigurable Coordinate Rotation Digital Computer Circuits.,2017,13,J. Low Power Electronics,2,db/journals/jolpe/jolpe13.html#IbrahimV17,https://doi.org/10.1166/jolpe.2017.1482 +Alex Bystrov,Selected Peer-Reviewed Articles from the LPonTR 2009 Workshop.,2010,6,J. Low Power Electronics,2,db/journals/jolpe/jolpe6.html#Bystrov10,https://doi.org/10.1166/jolpe.2010.1074 +Christian Bachmann,An Automated Power Emulation Framework for Embedded Software - Detecting Power-Critical Code Regions and Optimizing Software-Induced Power Consumption Peaks.,2011,7,J. Low Power Electronics,2,db/journals/jolpe/jolpe7.html#BachmannGSWH11,https://doi.org/10.1166/jolpe.2011.1134 +Alexandre Huffenus,Digitally Assisted Analog: An Anti-Clipping Function for Class-D Audio Amplifier.,2015,11,J. Low Power Electronics,1,db/journals/jolpe/jolpe11.html#HuffenusP15,https://doi.org/10.1166/jolpe.2015.1360 +Fangmei Wu,A Comprehensive Analysis of Transition Fault Coverage and Test Power Dissipation for Launch-Off-Shift and Launch-Off-Capture Schemes.,2010,6,J. Low Power Electronics,2,db/journals/jolpe/jolpe6.html#WuDBGPVTWA10,https://doi.org/10.1166/jolpe.2010.1086 +Sebastien Bernard,A Robust and Energy Efficient Pulse-Triggered Flip-Flop Design for Ultra Low Voltage Operations.,2014,10,J. Low Power Electronics,1,db/journals/jolpe/jolpe10.html#BernardVBLB14,https://doi.org/10.1166/jolpe.2014.1303 +Naresh Vemishetty,A Robust Reliable and Low Complexity on Chip f-QRS Detection and Identification Architecture for Remote Personalized Health Care Applications.,2015,11,J. Low Power Electronics,3,db/journals/jolpe/jolpe11.html#VemishettyJAMJA15,https://doi.org/10.1166/jolpe.2015.1387 +J. Kevin Hicks,Hybrid Subthreshold and Nearthreshold Design Methodology for Energy Minimization.,2011,7,J. Low Power Electronics,2,db/journals/jolpe/jolpe7.html#HicksK11,https://doi.org/10.1166/jolpe.2011.1126 +Rajdeep Mukherjee,An Integrated Approach for Fine-Grained Power and Peak Temperature Management During High-Level Synthesis.,2013,9,J. Low Power Electronics,3,db/journals/jolpe/jolpe9.html#MukherjeeGDP13,https://doi.org/10.1166/jolpe.2013.1262 +Vinay Kumar,A Novel Methodology for Design of Cyclic Combinational Circuits.,2016,12,J. Low Power Electronics,3,db/journals/jolpe/jolpe12.html#KumarJTD16,https://doi.org/10.1166/jolpe.2016.1439 +Sankit R. Kassa,An Innovative Low Power Full Adder Design in Nano Technology Based Quantum Dot Cellular Automata.,2016,12,J. Low Power Electronics,2,db/journals/jolpe/jolpe12.html#KassaN16,https://doi.org/10.1166/jolpe.2016.1431 +Seetal Potluri,Interconnect Aware Test Power Reduction.,2012,8,J. Low Power Electronics,4,db/journals/jolpe/jolpe8.html#PotluriCK12,https://doi.org/10.1166/jolpe.2012.1212 +Kamalika Datta,Particle Swarm Optimization Based Reversible Circuit Synthesis Using Mixed Control Toffoli Gates.,2013,9,J. Low Power Electronics,3,db/journals/jolpe/jolpe9.html#DattaSR13,https://doi.org/10.1166/jolpe.2013.1261 +Andrea Bartolini,Message Passing-Aware Power Management on Many-Core Systems.,2014,10,J. Low Power Electronics,4,db/journals/jolpe/jolpe10.html#BartoliniHCB14,https://doi.org/10.1166/jolpe.2014.1359 +Antoine Courtay,High-Level Interconnect Delay and Power Estimation.,2008,4,J. Low Power Electronics,1,db/journals/jolpe/jolpe4.html#CourtaySLJ08,https://doi.org/10.1166/jolpe.2008.152 +Jingzhao Ou,Arithmetic-Level Instruction Based Energy Estimation for FPGA based Soft Processors.,2005,1,J. Low Power Electronics,2,db/journals/jolpe/jolpe1.html#OuP05,https://doi.org/10.1166/jolpe.2005.033 +Paulo F. Butzen,Leakage Analysis Considering the Effect of Inter-Cell Wire Resistance for Nanoscaled CMOS Circuits.,2010,6,J. Low Power Electronics,1,db/journals/jolpe/jolpe6.html#ButzenBRR10,https://doi.org/10.1166/jolpe.2010.1070 +Esmaeil Amini,A Low-Power Parallel Architecture for Finite Galois Field GF(2m) Arithmetic Operations for Elliptic Curve Cryptography.,2012,8,J. Low Power Electronics,4,db/journals/jolpe/jolpe8.html#AminiJKB12,https://doi.org/10.1166/jolpe.2012.1205 +Christian Piguet,Low-Power Heterogeneous Systems-on-Chips.,2008,4,J. Low Power Electronics,2,db/journals/jolpe/jolpe4.html#PiguetNPGSMM08,https://doi.org/10.1166/jolpe.2008.273 +Masoud Daneshtalab,Adaptive Input-Output Selection Based On-Chip Router Architecture.,2012,8,J. Low Power Electronics,1,db/journals/jolpe/jolpe8.html#DaneshtalabKEMAP12,https://doi.org/10.1166/jolpe.2012.1165 +Vrinda Kochar,Real-Time Scheduling on Dynamic Resources in a Fog Computing Environment.,2017,13,J. Low Power Electronics,4,db/journals/jolpe/jolpe13.html#KocharS17,https://doi.org/10.1166/jolpe.2017.1517 +Georgia Tsirimokou,Tinnitus Detector Realization Using Sinh-Domain Circuits.,2013,9,J. Low Power Electronics,4,db/journals/jolpe/jolpe9.html#TsirimokouLP13,https://doi.org/10.1166/jolpe.2013.1272 +Soheil Ghiasi,An Effective Combinatorial Algorithm for Gate-Level Threshold Voltage Assignment.,2006,2,J. Low Power Electronics,3,db/journals/jolpe/jolpe2.html#Ghiasi06,https://doi.org/10.1166/jolpe.2006.095 +Mustafa Badaroglu,Interconnect-Aware Technology and Design Co-Optimization for the 5-nm Technology and Beyond.,2018,14,J. Low Power Electronics,2,db/journals/jolpe/jolpe14.html#Badaroglu18,https://doi.org/10.1166/jolpe.2018.1564 +Hanhua Qian,Cyber-Physical Thermal Management of 3D Multi-Core Cache-Processor System with Microfluidic Cooling.,2011,7,J. Low Power Electronics,1,db/journals/jolpe/jolpe7.html#QianHYC11,https://doi.org/10.1166/jolpe.2011.1121 +Dhireesha Kudithipudi,Static Power Analysis and Estimation in Ternary Content Addressable Memory Cells.,2007,3,J. Low Power Electronics,3,db/journals/jolpe/jolpe3.html#KudithipudiJ07,https://doi.org/10.1166/jolpe.2007.144 +Lingamneni Avinash,Designing Energy-Efficient Arithmetic Operators Using Inexact Computing.,2013,9,J. Low Power Electronics,1,db/journals/jolpe/jolpe9.html#AvinashEPP13,https://doi.org/10.1166/jolpe.2013.1249 +D. N. Jagadish,Low Energy and Area Efficient Nonbinary Capacitor Array Based Successive Approximation Register Analog-to-Digital Converter.,2015,11,J. Low Power Electronics,3,db/journals/jolpe/jolpe11.html#JagadishB15,https://doi.org/10.1166/jolpe.2015.1389 +Nicolas Degrenne,A 140 mV Self-Starting 10 mW DC/DC Converter for Powering Low-Power Electronic Devices from Low-Voltage Microbial Fuel Cells.,2012,8,J. Low Power Electronics,4,db/journals/jolpe/jolpe8.html#DegrenneABALVM12,https://doi.org/10.1166/jolpe.2012.1209 +Chun-Yi Lee,Design and Chip Implementation of the Segment Weighted Random BIST for Low Power Testing.,2007,3,J. Low Power Electronics,2,db/journals/jolpe/jolpe3.html#LeeL07,https://doi.org/10.1166/jolpe.2007.121 +Toby Doorn,Robust Low Power Embedded SRAM: From System Considerations to Cell Design.,2010,6,J. Low Power Electronics,1,db/journals/jolpe/jolpe6.html#DoornS10,https://doi.org/10.1166/jolpe.2010.1067 +Prasanna Kumar Misra,Impact of Collector Length on the Performance of NPN SiGe HBT on Thin Film SOI.,2014,10,J. Low Power Electronics,3,db/journals/jolpe/jolpe10.html#MisraQ14,https://doi.org/10.1166/jolpe.2014.1326 +Vyasa Sai,Serial Data Driven Cyclic Redundancy Check Generator for Low Power RFID Applications.,2012,8,J. Low Power Electronics,5,db/journals/jolpe/jolpe8.html#SaiOM12b,https://doi.org/10.1166/jolpe.2012.1221 +Luca Benini,A Refinement Methodology for Clock Gating Optimization at Layout Level in Digital Circuits.,2010,6,J. Low Power Electronics,1,db/journals/jolpe/jolpe6.html#BeniniBBMMNPP10,https://doi.org/10.1166/jolpe.2010.1055 +Ge Chen,Optimization of On-Chip Interconnect Signaling for Low Energy and High Performance.,2012,8,J. Low Power Electronics,1,db/journals/jolpe/jolpe8.html#ChenN12,https://doi.org/10.1166/jolpe.2012.1168 +Sa'ed Abed,Leakage/Temperature-Aware Dynamic Voltage Scaling and Dynamic Cache Reconfiguration to Reduce Power Consumption.,2018,14,J. Low Power Electronics,2,db/journals/jolpe/jolpe14.html#AbedAS18,https://doi.org/10.1166/jolpe.2018.1552 +Irith Pomeranz,Test Sequences with Reduced and Increased Switching Activity.,2010,6,J. Low Power Electronics,2,db/journals/jolpe/jolpe6.html#PomeranzR10,https://doi.org/10.1166/jolpe.2010.1077 +Abu Asaduzzaman,A Way Cache Locking Scheme Supported by Knowledge Based Smart Preload Effective for Low-Power Multicore Electronics.,2012,8,J. Low Power Electronics,5,db/journals/jolpe/jolpe8.html#AsaduzzamanG12,https://doi.org/10.1166/jolpe.2012.1215 +Arindam Calomarde,Selective Clock-Gating for Low-Power Synchronous Counters.,2005,1,J. Low Power Electronics,3,db/journals/jolpe/jolpe1.html#CalomardeRS05,https://doi.org/10.1166/jolpe.2005.043 +Bharghava Rajaram,Design of Low Power Systems Using Inexact Logic Circuits.,2010,6,J. Low Power Electronics,3,db/journals/jolpe/jolpe6.html#RajaramRPG10,https://doi.org/10.1166/jolpe.2010.1095 +Steven D. Tucker,Design Techniques for Micro-Power Algorithmic Analog-to-Digital Converters.,2007,3,J. Low Power Electronics,1,db/journals/jolpe/jolpe3.html#TuckerRWM07,https://doi.org/10.1166/jolpe.2007.114 +Peter Bukelani Musiiwa,Design of 8T Volatile and Non-Volatile RAM Cells with Improved Holding Phase Performance.,2016,12,J. Low Power Electronics,3,db/journals/jolpe/jolpe12.html#MusiiwaA16,https://doi.org/10.1166/jolpe.2016.1446 +Julien Lamoureux,On the Interaction between Power-Aware Computer-Aided Design Algorithms for Field-Programmable Gate Arrays.,2005,1,J. Low Power Electronics,2,db/journals/jolpe/jolpe1.html#LamoureuxW05,https://doi.org/10.1166/jolpe.2005.023 +Ying Teng,Look-Up Table Based Low Power Rotary Traveling Wave Oscillator Design Considering the Skin Effect.,2010,6,J. Low Power Electronics,4,db/journals/jolpe/jolpe6.html#TengT10,https://doi.org/10.1166/jolpe.2010.1098 +Dong Wang 0006,A Sub-1 V 100 mA Wide Capacitive Load Based Flipped Voltage Follower Low-Dropout Regulator Using Transient-Assisted Embedded Driving Stage.,2016,12,J. Low Power Electronics,1,db/journals/jolpe/jolpe12.html#WangTC16,https://doi.org/10.1166/jolpe.2016.1419 +Satish Grandhi,An EDA Framework for Reliability Estimation and Optimization of Combinational Circuits.,2016,12,J. Low Power Electronics,3,db/journals/jolpe/jolpe12.html#GrandhiYSGP16,https://doi.org/10.1166/jolpe.2016.1447 +Peng Rong,Energy-Aware Task Scheduling and Dynamic Voltage Scaling in a Real-Time System.,2008,4,J. Low Power Electronics,1,db/journals/jolpe/jolpe4.html#RongP08,https://doi.org/10.1166/jolpe.2008.154 +Arighna Deb,A Modular Design to Synthesize Symmetric Functions Using Quantum Quaternary Logic.,2014,10,J. Low Power Electronics,3,db/journals/jolpe/jolpe10.html#DebDS14,https://doi.org/10.1166/jolpe.2014.1340 +Yuanlin Lu,CMOS Leakage and Glitch Minimization for Power-Performance Tradeoff.,2006,2,J. Low Power Electronics,3,db/journals/jolpe/jolpe2.html#LuA06,https://doi.org/10.1166/jolpe.2006.100 +Saadia Dhouib,Energy and Power Consumption Estimation for Embedded Applications and Operating Systems.,2009,5,J. Low Power Electronics,4,db/journals/jolpe/jolpe5.html#DhouibSDBL09,https://doi.org/10.1166/jolpe.2009.1041 +Vivek Sharma,2.4-/5.2-GHz Concurrent Dual-Band Wireless Local Area Network Transmitter.,2012,8,J. Low Power Electronics,3,db/journals/jolpe/jolpe8.html#SharmaAP12,https://doi.org/10.1166/jolpe.2012.1196 +T. Parveen,Simple Single Time Constant Circuits Using Low Voltage Operational Floating Conveyor.,2008,4,J. Low Power Electronics,2,db/journals/jolpe/jolpe4.html#ParveenA08,https://doi.org/10.1166/jolpe.2008.255 +Esteve Amat,Optimization of FinFET-Based Gain Cells for Low Power Sub-V T Embedded DRAMs.,2018,14,J. Low Power Electronics,2,db/journals/jolpe/jolpe14.html#AmatCCR18,https://doi.org/10.1166/jolpe.2018.1563 +Sumedh Dhabu,Design of Reconfigurable Filter Bank Architecture Using Improved Coefficient Decimation-Interpolation-Masking Technique for Multi-Standard Wireless Communication Receivers.,2014,10,J. Low Power Electronics,3,db/journals/jolpe/jolpe10.html#DhabuSV14,https://doi.org/10.1166/jolpe.2014.1338 +Amir Zjajo,Adaptive Thermal Monitoring of Deep-Submicron CMOS VLSI Circuits.,2013,9,J. Low Power Electronics,4,db/journals/jolpe/jolpe9.html#ZjajoML13,https://doi.org/10.1166/jolpe.2013.1279 +Nadine Azémard,Selected Peer-Reviewed Articles from the VARI 2010 Workshop.,2010,6,J. Low Power Electronics,4,db/journals/jolpe/jolpe6.html#Azemard10,https://doi.org/10.1166/jolpe.2010.1105 +Biswajit Patra,An Efficient Methodology for Full Chip Signal ElectroMigration Analysis for Advanced Technology Node Designs.,2011,7,J. Low Power Electronics,3,db/journals/jolpe/jolpe7.html#PatraCC11,https://doi.org/10.1166/jolpe.2011.1151 +Irith Pomeranz,Functional Broadside Tests with Minimum and Maximum Switching Activity.,2008,4,J. Low Power Electronics,3,db/journals/jolpe/jolpe4.html#PomeranzR08,https://doi.org/10.1166/jolpe.2008.196 +Bahniman Ghosh,Effect of Nanoribbon Width and Strain on the Electronic Properties of the WS2 Nanoribbon.,2014,10,J. Low Power Electronics,3,db/journals/jolpe/jolpe10.html#GhoshG14a,https://doi.org/10.1166/jolpe.2014.1345 +Labros Bisdounis,Implementation Strategy and Results of an Energy-Aware System-on-Chip for 5 GHz WLAN Applications.,2006,2,J. Low Power Electronics,1,db/journals/jolpe/jolpe2.html#BisdounisBMNZ06,https://doi.org/10.1166/jolpe.2006.003 +Muhammad Tariqus Salam,Low-Power Circuit Techniques for Epileptic Seizures Detection and Subsequent Neurostimulation.,2012,8,J. Low Power Electronics,2,db/journals/jolpe/jolpe8.html#SalamMNS12,https://doi.org/10.1166/jolpe.2012.1179 +Abhijit Sil,A Bit-Interleaved 2-Port Subthreshold 6T SRAM Array with High Write-Ability and SNM-Free Read in 90 nm.,2011,7,J. Low Power Electronics,1,db/journals/jolpe/jolpe7.html#SilB11,https://doi.org/10.1166/jolpe.2011.1120 +Bahniman Ghosh,2-Bit Full Adder Implementation Using Single Spin Logic Paradigm.,2014,10,J. Low Power Electronics,2,db/journals/jolpe/jolpe10.html#GhoshA14,https://doi.org/10.1166/jolpe.2014.1313 +Patanjali SLPSK,MLTimer: Leakage Power Minimization in Digital Circuits Using Machine Learning and Adaptive Lazy Timing Analysis.,2018,14,J. Low Power Electronics,2,db/journals/jolpe/jolpe14.html#SLPSKPPK18,https://doi.org/10.1166/jolpe.2018.1549 +Nassima Tidjani,Microstrip Filter Against the Crosstalk Effect in Planar Power Devices.,2018,14,J. Low Power Electronics,2,db/journals/jolpe/jolpe14.html#TidjaniBJB18,https://doi.org/10.1166/jolpe.2018.1555 +Paolo Bernardi,Fast Power Evaluation for Effective Generation of Test Programs Maximizing Peak Power Consumption.,2013,9,J. Low Power Electronics,2,db/journals/jolpe/jolpe9.html#BernardiCSRBDVG13,https://doi.org/10.1166/jolpe.2013.1259 +Hao Cai,A Hierarchical Reliability Simulation Methodology for AMS Integrated Circuits and Systems.,2012,8,J. Low Power Electronics,5,db/journals/jolpe/jolpe8.html#CaiPN12,https://doi.org/10.1166/jolpe.2012.1228 +Yuvraj Singh Dhillon,Delay-Assignment-Variation Based Optimization of Digital CMOS Circuits for Low Power Consumption.,2007,3,J. Low Power Electronics,1,db/journals/jolpe/jolpe3.html#DhillonDC07,https://doi.org/10.1166/jolpe.2007.119 +Jie Lin,Ultra-Low Power Successive Approximation Analog-to-Digital Converter Using Emerging Tunnel Field Effect Transistor Technology.,2016,12,J. Low Power Electronics,3,db/journals/jolpe/jolpe12.html#LinY16,https://doi.org/10.1166/jolpe.2016.1445 +Tooraj Nikoubin,Cell Design Methodology Based on Transmission Gate for Low-Power High-Speed Balanced XOR-XNOR Circuits in Hybrid-CMOS Logic Style.,2010,6,J. Low Power Electronics,4,db/journals/jolpe/jolpe6.html#NikoubinGM10,https://doi.org/10.1166/jolpe.2010.1099 +Antonios N. Dadaliaris,Heuristics to Augment the Performance of Tetris Legalization: Making a Fast but Inferior Method Competitive.,2017,13,J. Low Power Electronics,2,db/journals/jolpe/jolpe13.html#DadaliarisOKNHG17,https://doi.org/10.1166/jolpe.2017.1483 +Sobeeh Almukhaizim,Test Power Reduction via Deterministic Alignment of Stimulus and Response Bits.,2011,7,J. Low Power Electronics,4,db/journals/jolpe/jolpe7.html#AlmukhaizimAS11,https://doi.org/10.1166/jolpe.2011.1152 +Djamila Dekkiche,Targeting System-Level and Kernel-Level Optimizations of Computer Vision Applications on Embedded Systems.,2017,13,J. Low Power Electronics,4,db/journals/jolpe/jolpe13.html#DekkicheVM17,https://doi.org/10.1166/jolpe.2017.1510 +Wei-Shen Wang,Estimation of Leakage Power Consumption and Parametric Yield Based on Realistic Probabilistic Descriptions of Parameters.,2007,3,J. Low Power Electronics,1,db/journals/jolpe/jolpe3.html#WangO07,https://doi.org/10.1166/jolpe.2007.115 +András Timár,High Resolution Temperature Dependent Timing Model in Digital Standard Cell Designs.,2013,9,J. Low Power Electronics,4,db/journals/jolpe/jolpe9.html#TimarR13,https://doi.org/10.1166/jolpe.2013.1282 +Hao Xu,Tuning Vth Hopping for Aggressive Runtime Leakage Control.,2010,6,J. Low Power Electronics,3,db/journals/jolpe/jolpe6.html#XuJV10,https://doi.org/10.1166/jolpe.2010.1094 +Sherif A. Tawfik,Robust FinFET Memory Circuits with P-Type Data Access Transistors for Higher Integration Density and Reduced Leakage Power.,2009,5,J. Low Power Electronics,4,db/journals/jolpe/jolpe5.html#TawfikK09,https://doi.org/10.1166/jolpe.2009.1048 +Sheldon X.-D. Tan,A Fast Architecture-Level Thermal Analysis Method for Runtime Thermal Regulation.,2008,4,J. Low Power Electronics,2,db/journals/jolpe/jolpe4.html#TanLJWT08,https://doi.org/10.1166/jolpe.2008.272 +Tai-Hua Chen,Subthreshold to Above Threshold Level Shifter Design.,2006,2,J. Low Power Electronics,2,db/journals/jolpe/jolpe2.html#ChenCC06,https://doi.org/10.1166/jolpe.2006.071 +Biswajit Patra,Post Optimization of a Clock Tree for Dynamic Clock Tree Power Reduction in 45 nm and Below Technology Nodes.,2014,10,J. Low Power Electronics,1,db/journals/jolpe/jolpe10.html#PatraCC14,https://doi.org/10.1166/jolpe.2014.1309 +Zine Abid,Defect Tolerant Voter Designs Based on Transistor Redundancy.,2006,2,J. Low Power Electronics,3,db/journals/jolpe/jolpe2.html#AbidE06,https://doi.org/10.1166/jolpe.2006.090 +Jeremy Lee,Layout-Aware Transition-Delay Fault Pattern Generation with Evenly Distributed Switching Activity.,2008,4,J. Low Power Electronics,3,db/journals/jolpe/jolpe4.html#LeeT08,https://doi.org/10.1166/jolpe.2008.179 +Alak Majumder,Gated Clock Tree Circuit to Reduce the Noise in Silicon Chip.,2017,13,J. Low Power Electronics,4,db/journals/jolpe/jolpe13.html#Majumder17,https://doi.org/10.1166/jolpe.2017.1522 +Louis P. Alarcón,Exploring Very Low-Energy Logic: A Case Study.,2007,3,J. Low Power Electronics,3,db/journals/jolpe/jolpe3.html#AlarconLPR07,https://doi.org/10.1166/jolpe.2007.136 +Vyasa Sai,Low Power Radio Frequency Identification Design Using Custom Asynchronous Passive Computer.,2010,6,J. Low Power Electronics,4,db/journals/jolpe/jolpe6.html#SaiOM10,https://doi.org/10.1166/jolpe.2010.1103 +Karthik Naishathrala Jayaraman,A Four-Transistor Level Converter for Dual-Voltage Low-Power Design.,2014,10,J. Low Power Electronics,4,db/journals/jolpe/jolpe10.html#JayaramanA14,https://doi.org/10.1166/jolpe.2014.1356 +Yaseer Arafat Durrani,Architectural Power Analysis for Intellectual Property-Based Digital System.,2007,3,J. Low Power Electronics,3,db/journals/jolpe/jolpe3.html#DurraniR07,https://doi.org/10.1166/jolpe.2007.143 +Omer Can Akgun,Energy Efficiency Comparison of Asynchronous and Synchronous Circuits Operating in the Sub-Threshold Regime.,2008,4,J. Low Power Electronics,3,db/journals/jolpe/jolpe4.html#AkgunL08,https://doi.org/10.1166/jolpe.2008.185 +Arindam Banerjee,The Design of Reversible Signed Multiplier Using Ancient Indian Mathematics.,2015,11,J. Low Power Electronics,4,db/journals/jolpe/jolpe11.html#BanerjeeD15,https://doi.org/10.1166/jolpe.2015.1413 +Neila Rekik,Programmable Current Source Design Dedicated to an Advanced Cochlear Implant Micro-Stimulator.,2008,4,J. Low Power Electronics,2,db/journals/jolpe/jolpe4.html#RekikSHS08,https://doi.org/10.1166/jolpe.2008.266 +Alexander E. Shapiro,Interconnect Delay Model for Wide Supply Voltage Range Repeater Insertion in Sub-22 nm FinFET Technologies.,2017,13,J. Low Power Electronics,3,db/journals/jolpe/jolpe13.html#ShapiroF17,https://doi.org/10.1166/jolpe.2017.1495 +Jia Di,Energy-Aware Dual-Rail Bit-Wise Completion Pipelined Arithmetic Circuit Design.,2006,2,J. Low Power Electronics,2,db/journals/jolpe/jolpe2.html#DiY06,https://doi.org/10.1166/jolpe.2006.063 +Mohamad Imran Bin Bandan,Energy Efficient Lifetime Reliability-Aware Checkpointing for Real-Time System.,2014,10,J. Low Power Electronics,3,db/journals/jolpe/jolpe10.html#BandanBPM14,https://doi.org/10.1166/jolpe.2014.1343 +Dhireesha Kudithipudi,Implementation of Low Power Digital Multipliers using 10 -Transistor Adder Blocks.,2005,1,J. Low Power Electronics,3,db/journals/jolpe/jolpe1.html#KudithipudiJ05,https://doi.org/10.1166/jolpe.2005.046 +Saurabh Chaudhury,State Assignment and Polarity Selection for Low Dynamic Power and Testable Finite State Machine Synthesis.,2009,5,J. Low Power Electronics,4,db/journals/jolpe/jolpe5.html#ChaudhuryRC09,https://doi.org/10.1166/jolpe.2009.1045 +Nadine Azémard,Selected Articles from the VARI 2011 Workshop.,2012,8,J. Low Power Electronics,1,db/journals/jolpe/jolpe8.html#AzemardB12,https://doi.org/10.1166/jolpe.2012.1178 +Arvind Gautam,Thermo-Magnetic Control System for Nano-Ferromagnetic Particle Doped Shape Memory Alloy for Orthopedic Devices and Rehabilitation Techniques.,2017,13,J. Low Power Electronics,4,db/journals/jolpe/jolpe13.html#GautamBAMRAA17,https://doi.org/10.1166/jolpe.2017.1514 +Luo Sun,Enhanced Statistical Blockade Approaches for Fast Robustness Estimation and Compensation of Nano-CMOS Circuits.,2012,8,J. Low Power Electronics,3,db/journals/jolpe/jolpe8.html#SunMPM12,https://doi.org/10.1166/jolpe.2012.1191 +Anis Uzzaman,Automatic Handling of Programmable On-Product Clock Generation (OPCG) Circuitry for Low Power Aware Delay Test.,2009,5,J. Low Power Electronics,4,db/journals/jolpe/jolpe5.html#UzzamanKSIA09,https://doi.org/10.1166/jolpe.2009.1050 +Ka Nang Leung,A 1.9 µ*W Transient-Enhanced Low-Dropout Regulator with Voltage-Spike Suppression.,2010,6,J. Low Power Electronics,1,db/journals/jolpe/jolpe6.html#LeungCHPO10,https://doi.org/10.1166/jolpe.2010.1062 +Hossein Karimiyan Alidash,Low-Power Soft Error Hardened Latch.,2010,6,J. Low Power Electronics,1,db/journals/jolpe/jolpe6.html#AlidashO10,https://doi.org/10.1166/jolpe.2010.1073 +Luigi Colalongo,A Bidirectional Differential Cascode Voltage Switch DC-DC Buck-Boost Converter for Low Voltage Application.,2017,13,J. Low Power Electronics,2,db/journals/jolpe/jolpe13.html#ColalongoRCK17,https://doi.org/10.1166/jolpe.2017.1478 +Sheng-Lyang Jang,Experimental RF Characteristics of Hot-Carrier-Stressed p-core Dual-Band VCO.,2013,9,J. Low Power Electronics,2,db/journals/jolpe/jolpe9.html#JangJH13,https://doi.org/10.1166/jolpe.2013.1258 +Satya Trinadh,XStat: Statistical X-Filling Algorithm for Peak Capture Power Reduction in Scan Tests.,2014,10,J. Low Power Electronics,1,db/journals/jolpe/jolpe10.html#TrinadhPBBK14,https://doi.org/10.1166/jolpe.2014.1302 +Ball Mukund Mani Tripathi,SiGe Source Dual Metal Double Gate Tunnel Field Effect Transistor.,2017,13,J. Low Power Electronics,1,db/journals/jolpe/jolpe13.html#TripathiJD17,https://doi.org/10.1166/jolpe.2017.1466 +Yan Meng,Algorithm/Architecture Co-exploration for Designing Energy Efficient Wireless Channel Estimator.,2005,1,J. Low Power Electronics,3,db/journals/jolpe/jolpe1.html#MengGKS05,https://doi.org/10.1166/jolpe.2005.049 +Shaahin Angizi,Novel Robust Single Layer Wire Crossing Approach for Exclusive OR Sum of Products Logic Design with Quantum-Dot Cellular Automata.,2014,10,J. Low Power Electronics,2,db/journals/jolpe/jolpe10.html#AngiziABN14,https://doi.org/10.1166/jolpe.2014.1320 +Biswajit Maity,Design and Implementation of an Area and Power Efficient Switched-Capacitor Based Embedded DC-DC Converter.,2012,8,J. Low Power Electronics,2,db/journals/jolpe/jolpe8.html#MaityGM12,https://doi.org/10.1166/jolpe.2012.1185 +Shibaji Banerjee,A Variation-Aware Taylor Expansion Diagram-Based Approach for Nano-CMOS Register-Transfer Level Leakage Optimization.,2011,7,J. Low Power Electronics,4,db/journals/jolpe/jolpe7.html#BanerjeeMMPC11,https://doi.org/10.1166/jolpe.2011.1160 +Chris J. Bleakley,Software Level Power Consumption Models and Power Saving Techniques for Embedded DSP Processors.,2006,2,J. Low Power Electronics,2,db/journals/jolpe/jolpe2.html#BleakleyCR06,http://www.ingentaconnect.com/content/asp/jolpe/2006/00000002/00000002/art00014 +Sohan Purohit,Design and Evaluation of an Energy-Delay-Area Efficient Datapath for Coarse-Grain Reconfigurable Computing Systems.,2009,5,J. Low Power Electronics,3,db/journals/jolpe/jolpe5.html#PurohitLPCM09,https://doi.org/10.1166/jolpe.2009.1033 +Vinay Kumar,A Novel Shared Active Pixel Architecture (SAPA) with Low Dark Current and High Fill-Factor (FF) for CMOS Image Sensors.,2017,13,J. Low Power Electronics,3,db/journals/jolpe/jolpe13.html#KumarBK17,https://doi.org/10.1166/jolpe.2017.1497 +Chang Woo Kang,A Leakage-aware Low Power Technology Mapping Algorithm Considering the Hot-Carrier Effect.,2005,1,J. Low Power Electronics,2,db/journals/jolpe/jolpe1.html#KangP05,https://doi.org/10.1166/jolpe.2005.014 +Eric F. Weglarz,Energy Estimation of the Memory Subsystem in Multiprocessor Systems.,2006,2,J. Low Power Electronics,3,db/journals/jolpe/jolpe2.html#WeglarzSL06,https://doi.org/10.1166/jolpe.2006.086 +Johann Laurent,MemExplorer: From C Code to Memory Allocation.,2012,8,J. Low Power Electronics,4,db/journals/jolpe/jolpe8.html#LaurentRS12,https://doi.org/10.1166/jolpe.2012.1201 +Guo Yu,Exploring Circuit Adaptation for Yield Optimization of Low-Power All-Digital Phase-Locked Loops.,2010,6,J. Low Power Electronics,1,db/journals/jolpe/jolpe6.html#YuL10,https://doi.org/10.1166/jolpe.2010.1061 +Sandeep Goud Surya,A Low-Power Instrumentation System for Nano-Electro-Mechanical-Sensors for Environmental and Healthcare Applications.,2012,8,J. Low Power Electronics,3,db/journals/jolpe/jolpe8.html#SuryaNDACGPSR12,https://doi.org/10.1166/jolpe.2012.1198 +Venkatachalam Nithish Kumar,An Improved Reconfigurable Finite Impulse Response Filter Using Common Subexpression Elimination Algorithm for Cognitive Radio.,2015,11,J. Low Power Electronics,2,db/journals/jolpe/jolpe11.html#KumarNLS15,https://doi.org/10.1166/jolpe.2015.1375 +V. R. Devanathan,On Reducing Peak Capture Power of Transition Delay Fault Test for SoCs with Unwrapped Cores.,2006,2,J. Low Power Electronics,3,db/journals/jolpe/jolpe2.html#DevanathanRK06,https://doi.org/10.1166/jolpe.2006.098 +Hasliza Hassan,Thermal Model with Metal Consideration for System-on-Chip Testing.,2014,10,J. Low Power Electronics,3,db/journals/jolpe/jolpe10.html#HassanO14,https://doi.org/10.1166/jolpe.2014.1330 +Asmita Pal,Split Latency Allocator: Process Variation-Aware Register Access Latency Boost in a Near-Threshold Graphics Processing Unit.,2017,13,J. Low Power Electronics,3,db/journals/jolpe/jolpe13.html#PalBCR17,https://doi.org/10.1166/jolpe.2017.1508 +Pritam Bhattacharjee,Estimation of Power Dissipation in Ternary Quantum Dot Cellular Automata Cell.,2017,13,J. Low Power Electronics,2,db/journals/jolpe/jolpe13.html#BhattacharjeeDD17,https://doi.org/10.1166/jolpe.2017.1485 +Martin Palkovic,Systematic Preprocessing of Data Dependent Constructs for Embedded Systems.,2006,2,J. Low Power Electronics,1,db/journals/jolpe/jolpe2.html#PalkovicBVCC06,https://doi.org/10.1166/jolpe.2006.002 +Yang Ge,Low Power Task Scheduling and Mapping for Applications with Conditional Branches on Heterogeneous Multi-Processor System.,2012,8,J. Low Power Electronics,5,db/journals/jolpe/jolpe8.html#GeZMWQ12,https://doi.org/10.1166/jolpe.2012.1214 +Xiaodong Sun,Performance Analysis and Comparison of Surface and Interior Bearingless Permanent Magnet Synchronous Motors.,2016,12,J. Low Power Electronics,3,db/journals/jolpe/jolpe12.html#SunLZCY16,https://doi.org/10.1166/jolpe.2016.1437 +Xiaodong Sun,Thermal Analysis of a Segmented Rotor Switched Reluctance Motor Used as the Belt-Driven Starter/Generator for Hybrid Electric Vehicles.,2016,12,J. Low Power Electronics,3,db/journals/jolpe/jolpe12.html#SunXXCYH16,https://doi.org/10.1166/jolpe.2016.1436 +P. A. Gowri Sankar,Ternary Flip-Flops Based on Emerging Sub-32 nm Technology Nodes.,2014,10,J. Low Power Electronics,4,db/journals/jolpe/jolpe10.html#SankarU14,https://doi.org/10.1166/jolpe.2014.1355 +Abdelkrim Kamel Oudjida,A New High Radix-2r (r and#8805* 8) Multibit Recoding Algorithm for Large Operand Size (N and#8805* 32) Multipliers.,2013,9,J. Low Power Electronics,1,db/journals/jolpe/jolpe9.html#OudjidaCBL13,https://doi.org/10.1166/jolpe.2013.1240 +Amaravati Anvesha,A Versatile High-Swing Gm-C Filter with Process and Temperature Invariant Bandwidth and Gain for Neuro-Potential Signal Conditioning and Recording.,2013,9,J. Low Power Electronics,2,db/journals/jolpe/jolpe9.html#AnveshaB13,https://doi.org/10.1166/jolpe.2013.1257 +Parthiban Perumal,A Fixed Frequency Duty-Ratio Based Digital Sliding-Mode Controller for DC-DC Buck Converter.,2018,14,J. Low Power Electronics,1,db/journals/jolpe/jolpe14.html#PerumalRK18,https://doi.org/10.1166/jolpe.2018.1531 +Dao-Ping Wang,A 45 nm 10T Dual-Port SRAM with Shared Bit-Line Scheme for Low Power Operation.,2012,8,J. Low Power Electronics,4,db/journals/jolpe/jolpe8.html#WangH12,https://doi.org/10.1166/jolpe.2012.1208 +Jorge Semião,Time Management for Low-Power Design of Digital Systems.,2008,4,J. Low Power Electronics,3,db/journals/jolpe/jolpe4.html#SemiaoFRVSTT08,https://doi.org/10.1166/jolpe.2008.194 +T. H. Vu,Sleep Mode and Wakeup Method for OpenFlow Switches.,2014,10,J. Low Power Electronics,3,db/journals/jolpe/jolpe10.html#VuLQTTN14,https://doi.org/10.1166/jolpe.2014.1328 +Vikas Mahor,Novel NBTI Aware Approach for Low Power FinFET Based Wide Fan-In Domino Logic.,2015,11,J. Low Power Electronics,2,db/journals/jolpe/jolpe11.html#MahorP15,https://doi.org/10.1166/jolpe.2015.1382 +Judit Freijedo,Lower VDD Operation of FPGA-Based Digital Circuits Through Delay Modeling and Time Borrowing.,2011,7,J. Low Power Electronics,2,db/journals/jolpe/jolpe7.html#FreijedoVCMRSVTT11,https://doi.org/10.1166/jolpe.2011.1127 +Bharat Garg,PAID: Process Aware Imprecise DCT Architecture Trading Quality for Energy Efficiency.,2015,11,J. Low Power Electronics,2,db/journals/jolpe/jolpe11.html#GargS15,https://doi.org/10.1166/jolpe.2015.1381 +Amit Kumar Singh,Learning-Based Run-Time Power and Energy Management of Multi/Many-Core Systems: Current and Future Trends.,2017,13,J. Low Power Electronics,3,db/journals/jolpe/jolpe13.html#SinghLRAM17,https://doi.org/10.1166/jolpe.2017.1492 +Dean Karolak,Design of High Sensitivity Radiofrequency Energy Harvesters Dedicated to Low-Power Applications.,2014,10,J. Low Power Electronics,1,db/journals/jolpe/jolpe10.html#KarolakTDBM14,https://doi.org/10.1166/jolpe.2014.1297 +Saheli Sarkhel,A Compact Two Dimensional Analytical Modeling of Nanoscale Fully Depleted Dual Material Gate Strained SOI/SON MOSFETs for Subdued SCEs.,2014,10,J. Low Power Electronics,3,db/journals/jolpe/jolpe10.html#SarkhelMS14,https://doi.org/10.1166/jolpe.2014.1331 +Konstantina Roumelioti,Ultra-Low Voltage Analog Pre-Processing Stage for Realizing the Pan-Tompkins Algorithm.,2015,11,J. Low Power Electronics,3,db/journals/jolpe/jolpe11.html#RoumeliotiTP15,https://doi.org/10.1166/jolpe.2015.1394 +Juan P. Oliver,A Low Cost System for Self Measurements of Power Consumption in Field Programmable Gate Arrays.,2017,13,J. Low Power Electronics,1,db/journals/jolpe/jolpe13.html#OliverVBB17,https://doi.org/10.1166/jolpe.2017.1465 +Haifeng Qian,Timing-Aware Power Minimization via Extended Timing Graph Methods.,2007,3,J. Low Power Electronics,3,db/journals/jolpe/jolpe3.html#QianA07,https://doi.org/10.1166/jolpe.2007.137 +Shaahin Angizi,An Ultra-High Speed and Low Complexity Quantum-Dot Cellular Automata Full Adder.,2015,11,J. Low Power Electronics,2,db/journals/jolpe/jolpe11.html#AngiziDSSBN15,https://doi.org/10.1166/jolpe.2015.1378 +Yongkui Han,TILTS: A Fast Architectural-Level Transient Thermal Simulation Method.,2007,3,J. Low Power Electronics,1,db/journals/jolpe/jolpe3.html#HanKK07,https://doi.org/10.1166/jolpe.2007.106 +Peng Ye,A Profile for GPS Data Reliable Transmission Based on Bluetooth Low Energy.,2014,10,J. Low Power Electronics,2,db/journals/jolpe/jolpe10.html#YeNDX14,https://doi.org/10.1166/jolpe.2014.1318 +Somayyeh Rahimian,An Enhanced Design Methodology for Resonant Clock Trees.,2013,9,J. Low Power Electronics,2,db/journals/jolpe/jolpe9.html#RahimianPTM13,https://doi.org/10.1166/jolpe.2013.1250 +Carlos Leong,Fault-Tolerance in Field Programmable Gate Array with Dynamic Voltage and Frequency Scaling.,2015,11,J. Low Power Electronics,4,db/journals/jolpe/jolpe11.html#LeongSSTT15,https://doi.org/10.1166/jolpe.2015.1406 +Martin Palkovic,Power Estimation at Different Abstraction Levels for Wireless Baseband Processors.,2012,8,J. Low Power Electronics,5,db/journals/jolpe/jolpe8.html#PalkovicDADA12,https://doi.org/10.1166/jolpe.2012.1232 +Remy Cellier,A 0.35 um CMOS Operational Amplifier Using Multi-Path Frequency Compensation.,2015,11,J. Low Power Electronics,1,db/journals/jolpe/jolpe11.html#CellierF15,https://doi.org/10.1166/jolpe.2015.1367 +Ji-Hye Bong,Oxide-Tunneling Leakage Suppressed SRAM for Sub-65-nm Very Large Scale Integrated Circuits.,2011,7,J. Low Power Electronics,1,db/journals/jolpe/jolpe7.html#BongJMK11,https://doi.org/10.1166/jolpe.2011.1119 +Young Eun Song,Customized Power Management System Using a Capacitor Array and DC/DC Booster for Flat-Plate Microbial Fuel Cells.,2017,13,J. Low Power Electronics,1,db/journals/jolpe/jolpe13.html#SongCPJK17,https://doi.org/10.1166/jolpe.2017.1471 +V. R. Devanathan,A Novel Power-Managed Scan Architecture for Test Power and Test Time Reduction.,2008,4,J. Low Power Electronics,1,db/journals/jolpe/jolpe4.html#DevanathanRMK08,https://doi.org/10.1166/jolpe.2008.150 +Woongki Baek,A Measurement-Based Automatic Energy Optimization Technique for Embedded Applications.,2007,3,J. Low Power Electronics,2,db/journals/jolpe/jolpe3.html#BaekKKK07,https://doi.org/10.1166/jolpe.2007.123 +Alberini Giacomo,A Low-Power Clock-Less Pulse Width Modulator Architecture for Smart Imaging.,2018,14,J. Low Power Electronics,1,db/journals/jolpe/jolpe14.html#GiacomoGMP18,https://doi.org/10.1166/jolpe.2018.1533 +R. Srinivasan,Optimisation of Gate-Drain/Source Overlap in 90 nm NMOSFETs for Low Noise Amplifier Performance.,2008,4,J. Low Power Electronics,2,db/journals/jolpe/jolpe4.html#SrinivasanB08,https://doi.org/10.1166/jolpe.2008.256 +Subhash Chander,Design and Implementation of Field Programmable Gate Array based Digital Pulse Width Modulator for Synchronous Buck Converter.,2012,8,J. Low Power Electronics,2,db/journals/jolpe/jolpe8.html#ChanderAG12,https://doi.org/10.1166/jolpe.2012.1181 +Mahdieh Nadi Senjani,A Semi-Analytical Approach to Study the Energy Consumption of On-Chip Networks Testing.,2013,9,J. Low Power Electronics,2,db/journals/jolpe/jolpe9.html#SenjaniGOM13,https://doi.org/10.1166/jolpe.2013.1253 +Yogesh Goswami,Junctionless Tunnel Field Effect Transistor with Enhanced Performance Using III-V Semiconductor.,2013,9,J. Low Power Electronics,4,db/journals/jolpe/jolpe9.html#GoswamiTAG13,https://doi.org/10.1166/jolpe.2013.1281 +Kihwan Choi,Energy-Aware MPEG-4 FGS Streaming.,2005,1,J. Low Power Electronics,1,db/journals/jolpe/jolpe1.html#ChoiKP05,https://doi.org/10.1166/jolpe2005.002 +Ming-Hung Chang,A 0.4 V 520 nW 990 λ6*m2 Fully Integrated Frequency-Domain Smart Temperature Sensor in 65 nm CMOS.,2012,8,J. Low Power Electronics,1,db/journals/jolpe/jolpe8.html#ChangLH12,https://doi.org/10.1166/jolpe.2012.1177 +Benjamin V. P. Chong,Ćuk Step-Down Converter Design for Optimum Transient Performance and Minimum Ripple.,2012,8,J. Low Power Electronics,5,db/journals/jolpe/jolpe8.html#ChongZ12,https://doi.org/10.1166/jolpe.2012.1222 +Vasilis Kolios,Ultra-Low Voltage Realization of the Tau-Cell and Its Application for Filtering Electrocardiogram Signals.,2014,10,J. Low Power Electronics,2,db/journals/jolpe/jolpe10.html#KoliosP14,https://doi.org/10.1166/jolpe.2014.1322 +Wing Yan Leung,A Multi-Stage Low-Dropout Regulator with 1 pF Compensation Capacitor for System-on-Chip Applications.,2009,5,J. Low Power Electronics,2,db/journals/jolpe/jolpe5.html#LeungMZC09,https://doi.org/10.1166/jolpe.2009.1022 +Bo Li,Low Power Digital Alternative to Analog Control of Step-Down Converter.,2012,8,J. Low Power Electronics,5,db/journals/jolpe/jolpe8.html#LiLA12,https://doi.org/10.1166/jolpe.2012.1223 +Basab Datta,Temperature Effects on Practical Energy Optimization of Sub-Threshold Circuits in Deep Nanometer Technologies.,2011,7,J. Low Power Electronics,3,db/journals/jolpe/jolpe7.html#DattaB11,https://doi.org/10.1166/jolpe.2011.1148 +Mark Hempstead,Survey of Hardware Systems for Wireless Sensor Networks.,2008,4,J. Low Power Electronics,1,db/journals/jolpe/jolpe4.html#HempsteadLBW08,https://doi.org/10.1166/jolpe.2008.156 +Maher Assaad,A 3-Bit Pseudo Flash ADC Based Low-Power CMOS Interface Circuit Design for Optical Sensor.,2015,11,J. Low Power Electronics,1,db/journals/jolpe/jolpe11.html#AssaadMGM15,https://doi.org/10.1166/jolpe.2015.1365 +Wael A. Salah,Implementation of Virtual Instruments as a Power Quality Analysis Tool.,2016,12,J. Low Power Electronics,2,db/journals/jolpe/jolpe12.html#SalahMZSJ16,https://doi.org/10.1166/jolpe.2016.1435 +Satya Trinadh,An Efficient Heuristic for Peak Capture Power Minimization During Scan-Based Test.,2013,9,J. Low Power Electronics,2,db/journals/jolpe/jolpe9.html#TrinadhPBK13,https://doi.org/10.1166/jolpe.2013.1255 +Jia Di,Recent Advances in Low Power Asynchronous Circuit Design.,2017,13,J. Low Power Electronics,3,db/journals/jolpe/jolpe13.html#DiBBBLLMNSS17,https://doi.org/10.1166/jolpe.2017.1494 +Abdulkadir Utku Diril,Pseudo Dual Supply Voltage Domino Logic Design.,2005,1,J. Low Power Electronics,2,db/journals/jolpe/jolpe1.html#DirilDCS05,https://doi.org/10.1166/jolpe.2005.021 +Sankit R. Kassa,A Novel Design for 4-Bit Code Converters in Quantum Dot Cellular Automata.,2017,13,J. Low Power Electronics,3,db/journals/jolpe/jolpe13.html#KassaN17,https://doi.org/10.1166/jolpe.2017.1501 +Ajay Kumar Singh,Design of Peripheral Circuits for the Implementation of Memory Array Using Data-Aware (DA) SRAM Cell in 65 nm CMOS Technology for Low Power Consumption.,2016,12,J. Low Power Electronics,1,db/journals/jolpe/jolpe12.html#SinghSV16,https://doi.org/10.1166/jolpe.2016.1417 +Jian-Jun Song,An Optimized Super-Junction VDMOS with Breakdown Voltage Over 600 V.,2015,11,J. Low Power Electronics,2,db/journals/jolpe/jolpe11.html#SongZYZZ15,https://doi.org/10.1166/jolpe.2015.1379 +Aurelia De Colle,Power and Design for Test: A Design Automation Perspective.,2005,1,J. Low Power Electronics,1,db/journals/jolpe/jolpe1.html#ColleRHC05,https://doi.org/10.1166/jolpe.2005.008 +Abdelkrim Kamel Oudjida,A New Recursive Multibit Recoding Algorithm for High-Speed and Low-Power Multiplier.,2012,8,J. Low Power Electronics,5,db/journals/jolpe/jolpe8.html#OudjidaCLB12,https://doi.org/10.1166/jolpe.2012.1217 +Shervin Sharifi,Scan-Based Structure with Reduced Static and Dynamic Power Consumption.,2006,2,J. Low Power Electronics,3,db/journals/jolpe/jolpe2.html#SharifiJHAN06,http://www.ingentaconnect.com/content/asp/jolpe/2006/00000002/00000003/art00015 +Dmitrij Kissler,Efficient Evaluation of Power/Area/Latency Design Trade-Offs for Coarse-Grained Reconfigurable Processor Arrays.,2011,7,J. Low Power Electronics,1,db/journals/jolpe/jolpe7.html#KisslerHT11,https://doi.org/10.1166/jolpe.2011.1114 +Jaison Jacob,Cellular Automata Approach for a Low Power Fusion Center to Evaluate Spectrum Status and Coverage Area in Cognitive Radios.,2013,9,J. Low Power Electronics,3,db/journals/jolpe/jolpe9.html#JacobJM13,https://doi.org/10.1166/jolpe.2013.1264 +Manodipan Sahoo,On the Suitability of Single-Walled Carbon Nanotube Bundle Interconnects for High-Speed and Power-Efficient Applications.,2014,10,J. Low Power Electronics,3,db/journals/jolpe/jolpe10.html#SahooRB14,https://doi.org/10.1166/jolpe.2014.1339 +Domenico Zito,RFID Systems: Passive versus Active and a Novel Low-Power RF Transceiver for IEEE 802.15.4 (ZigBee) Standard Based Applications.,2007,3,J. Low Power Electronics,1,db/journals/jolpe/jolpe3.html#ZitoPN07,https://doi.org/10.1166/jolpe.2007.107 +Bahniman Ghosh,In0 25Ga0 75As Channel Double Gate Junctionless Transistor.,2014,10,J. Low Power Electronics,1,db/journals/jolpe/jolpe10.html#GhoshSAT14,https://doi.org/10.1166/jolpe.2014.1301 +Woonseok Kim,Performance Evaluation of Dynamic Voltage Scaling Algorithms for Hard Real-Time Systems.,2005,1,J. Low Power Electronics,3,db/journals/jolpe/jolpe1.html#KimSYKM05,https://doi.org/10.1166/jolpe.2005.047 +Uzma Khan,Effect of Self Heating on Selective Buried Oxide and Silicon on Insulator Based Junctionless Transistors.,2013,9,J. Low Power Electronics,3,db/journals/jolpe/jolpe9.html#KhanGA13,https://doi.org/10.1166/jolpe.2013.1268 +Alberto Bocca,A Modular Framework for Battery Modeling in Electronic Designs.,2017,13,J. Low Power Electronics,3,db/journals/jolpe/jolpe13.html#BoccaMP17,https://doi.org/10.1166/jolpe.2017.1491 +Wenceslas Rahajandraibe,Low Power Radio Frequency Transceiver with Built-In-Tuning of the Local Oscillator for Open Loop Modulation.,2014,10,J. Low Power Electronics,1,db/journals/jolpe/jolpe10.html#RahajandraibeHACP14,https://doi.org/10.1166/jolpe.2014.1308 +Kostas Siozios,Designing a General-Purpose Interconnection Architecture for Field Programmable Gate Arrays.,2008,4,J. Low Power Electronics,1,db/journals/jolpe/jolpe4.html#SioziosST08,https://doi.org/10.1166/jolpe.2008.149 +Bahniman Ghosh,Spin Transport in Single Layer Germanene: The Role of Electron Electron Scattering.,2014,10,J. Low Power Electronics,3,db/journals/jolpe/jolpe10.html#GhoshG14,https://doi.org/10.1166/jolpe.2014.1347 +José C. García 0001,1.2 V Single Supply CMOS Level-Up Shifter for Low Energy Systems.,2017,13,J. Low Power Electronics,4,db/journals/jolpe/jolpe13.html#GarciaMN17,https://doi.org/10.1166/jolpe.2017.1524 +Ouwen Shi,Co-Exploration of Unit-Time Leakage Power and Latency Spaces for Leakage Energy Minimization in High-Level Synthesis.,2016,12,J. Low Power Electronics,4,db/journals/jolpe/jolpe12.html#ShiD16,https://doi.org/10.1166/jolpe.2016.1459 +Wei-Shen Wang,Analysis of Leakage Power Reduction in Dual-Vth Technologies in the Presence of Large Threshold Voltage Variation.,2006,2,J. Low Power Electronics,1,db/journals/jolpe/jolpe2.html#WangLO06,https://doi.org/10.1166/jolpe.2006.001 +Sandeep Saini,An Alternate Approach to Buffer Insertion for Delay and Power Reduction in VLSI Interconnects.,2010,6,J. Low Power Electronics,3,db/journals/jolpe/jolpe6.html#SainiKVS10,https://doi.org/10.1166/jolpe.2010.1090 +Sergio Gómez,Lithography Aware Regular Cell Design Based on a Predictive Technology Model.,2010,6,J. Low Power Electronics,4,db/journals/jolpe/jolpe6.html#GomezM10,https://doi.org/10.1166/jolpe.2010.1108 +Qiang Gao,A Reliable Routing Protocol Based on Mesh Under for G3-PLC.,2016,12,J. Low Power Electronics,2,db/journals/jolpe/jolpe12.html#GaoLZ16,https://doi.org/10.1166/jolpe.2016.1430 +Wing Yan Leung,A High Power Switch-Mode LED Driver with an Efficient Current Sensing Scheme.,2010,6,J. Low Power Electronics,1,db/journals/jolpe/jolpe6.html#LeungMZHC10,https://doi.org/10.1166/jolpe.2010.1063 +Swaroop Ghosh,Robust Self-Collapsing Level-Shifter for Wide Voltage Operation.,2016,12,J. Low Power Electronics,2,db/journals/jolpe/jolpe12.html#GhoshR16,https://doi.org/10.1166/jolpe.2016.1428 +Rohit Kapur,DFT MAX and Power.,2007,3,J. Low Power Electronics,2,db/journals/jolpe/jolpe3.html#KapurFNCRWWAKFNU07,https://doi.org/10.1166/jolpe.2007.125 +Omar Jonani Franco Piliado,Characterization Methodology for MOSFET Local Systematic Variability in Presence of Statistical Variability.,2014,10,J. Low Power Electronics,1,db/journals/jolpe/jolpe10.html#PiliadoCJG14,https://doi.org/10.1166/jolpe.2014.1304 +Srinivas Sabbavarapu,Novel ASIC Design Flow Using Dynamic Libraries for Reducing Design Time.,2018,14,J. Low Power Electronics,2,db/journals/jolpe/jolpe14.html#SabbavarapuRA18,https://doi.org/10.1166/jolpe.2018.1548 +Sumanta Pyne,Branch Target Buffer Energy Reduction Through Efficient Multiway Branch Translation Techniques.,2012,8,J. Low Power Electronics,5,db/journals/jolpe/jolpe8.html#PyneP12,https://doi.org/10.1166/jolpe.2012.1219 +Kihwan Choi,Frame-Based Dynamic Voltage and Frequency Scaling for an MPEG Player.,2005,1,J. Low Power Electronics,1,db/journals/jolpe/jolpe1.html#ChoiCP05,https://doi.org/10.1166/jolpe.2005.005 +Hassen Aziza,A Novel Low Power Oriented Design Methodology for Analog Blocks.,2008,4,J. Low Power Electronics,1,db/journals/jolpe/jolpe4.html#AzizaBPG08,https://doi.org/10.1166/jolpe.2008.151 +Vishram Mishra,Energy Aware Spectrum Decision Framework for Cognitive Radio Network: A Spectrum Decision Framework for Cognitive Radio Network with Energy Awareness.,2013,9,J. Low Power Electronics,3,db/journals/jolpe/jolpe9.html#MishraLCM13,https://doi.org/10.1166/jolpe.2013.1266 +Antonio J. Acosta,Power and Energy Issues on Lightweight Cryptography.,2017,13,J. Low Power Electronics,3,db/journals/jolpe/jolpe13.html#AcostaTJM17,https://doi.org/10.1166/jolpe.2017.1490 +Sumanta Pyne,Energy Efficient Array Computations Using Loop Unrolling with Partial Gray Code Sequence.,2015,11,J. Low Power Electronics,2,db/journals/jolpe/jolpe11.html#PyneP15a,https://doi.org/10.1166/jolpe.2015.1376 +Kalyana C. Bollapalli,Selective Forward Body Bias for High Speed and Low Power SRAMs.,2009,5,J. Low Power Electronics,2,db/journals/jolpe/jolpe5.html#BollapalliGGK09,https://doi.org/10.1166/jolpe.2009.1019 +Amir-Mohammad Rahmani,Forecasting-Based Dynamic Virtual Channel Management for Power Reduction in Network-on-Chips.,2009,5,J. Low Power Electronics,3,db/journals/jolpe/jolpe5.html#RahmaniDAP09,https://doi.org/10.1166/jolpe.2009.1038 +Young-Jin Kim 0002,Energy-Efficient Techniques for Disk-Based Mobile Systems.,2007,3,J. Low Power Electronics,3,db/journals/jolpe/jolpe3.html#KimK07,https://doi.org/10.1166/jolpe.2007.142 +Amir Zjajo,Digital Adaptive Calibration of Multi-Step Analog to Digital Converters.,2012,8,J. Low Power Electronics,2,db/journals/jolpe/jolpe8.html#ZjajoAG12,https://doi.org/10.1166/jolpe.2012.1183 +R. Raja,A Low-Power and Highly Linear Merged Low Noise Amplifier-Mixer for Wireless Sensor Network Applications.,2016,12,J. Low Power Electronics,4,db/journals/jolpe/jolpe12.html#RajaTV16,https://doi.org/10.1166/jolpe.2016.1455 +Xiaoyong Tang,High-Level Synthesis for Low Power Hardware Implementation of Unscheduled Data-Dominated Circuits.,2005,1,J. Low Power Electronics,3,db/journals/jolpe/jolpe1.html#TangJJB05,https://doi.org/10.1166/jolpe.2005.050 +Suhwan Kim,Achieving High Efficiency Under Micro-Watt Loads with Switching Buck DC-DC Converters.,2009,5,J. Low Power Electronics,2,db/journals/jolpe/jolpe5.html#KimR09,https://doi.org/10.1166/jolpe.2009.1023 +Robin Bonamy,Power Modeling and Exploration of Dynamic and Partially Reconfigurable Systems.,2016,12,J. Low Power Electronics,3,db/journals/jolpe/jolpe12.html#BonamyBCS16,https://doi.org/10.1166/jolpe.2016.1448 +Ashish Nigam,Statistical Moment Estimation of Delay and Power in Circuit Simulation.,2010,6,J. Low Power Electronics,4,db/journals/jolpe/jolpe6.html#NigamTZBM10,https://doi.org/10.1166/jolpe.2010.1107 +Srivaths Ravi 0001,Low Power Test for Nanometer System-on-Chips (SoCs).,2008,4,J. Low Power Electronics,1,db/journals/jolpe/jolpe4.html#RaviPS08,https://doi.org/10.1166/jolpe.2008.155 +Enric Musoll,Power Gating Clustered Many-Core Architectures.,2008,4,J. Low Power Electronics,3,db/journals/jolpe/jolpe4.html#Musoll08,https://doi.org/10.1166/jolpe.2008.189 +Rohit Dhiman,Sub-Threshold Delay and Power Analysis of Complementary Metal-Oxide Semiconductor Buffer Driven Interconnect Load for Ultra Low Power Applications.,2012,8,J. Low Power Electronics,1,db/journals/jolpe/jolpe8.html#DhimanC12,https://doi.org/10.1166/jolpe.2012.1171 +Roni Wiener,Intelligate: An Algorithm for Learning Boolean Functions for Dynamic Power Reduction.,2009,5,J. Low Power Electronics,1,db/journals/jolpe/jolpe5.html#WienerKV09,https://doi.org/10.1166/jolpe.2009.1009 +Rahul M. Badghare,Design of Low Power Parallel Multiplier.,2009,5,J. Low Power Electronics,1,db/journals/jolpe/jolpe5.html#BadghareMDP09,https://doi.org/10.1166/jolpe.2009.1002 +Juan Antonio Gómez Galán,Super Class AB OTAs Based on Low-Power Adaptive Techniques at the Input Stage and the Active Load.,2006,2,J. Low Power Electronics,2,db/journals/jolpe/jolpe2.html#GalanCRLR06,https://doi.org/10.1166/jolpe.2006.060 +Mandar Padmawar,Microprocessor Power Supply Noise Aware Floorplanning Using a Circuit-Architectural Framework.,2011,7,J. Low Power Electronics,3,db/journals/jolpe/jolpe7.html#PadmawarRC11,https://doi.org/10.1166/jolpe.2011.1140 +Mohamad El Ahmad,PoETE: A Method to Design Temperature-Aware Integrated Systems.,2018,14,J. Low Power Electronics,1,db/journals/jolpe/jolpe14.html#AhmadNBST18,https://doi.org/10.1166/jolpe.2018.1545 +Daniel Calvo,A Multi-Processing Systems-on-Chip Native Simulation Framework for Power and Thermal-Aware Design.,2011,7,J. Low Power Electronics,1,db/journals/jolpe/jolpe7.html#CalvoGDPSVAM11,https://doi.org/10.1166/jolpe.2011.1112 +Xinfei Guo,Back to the Future: Digital Circuit Design in the FinFET Era.,2017,13,J. Low Power Electronics,3,db/journals/jolpe/jolpe13.html#GuoVGMS17,https://doi.org/10.1166/jolpe.2017.1489 +Yanzhang Wang,A High Gain Dual Stage Converter for Driving Dielectric Elastomer Actuators in Microrobotic Applications.,2016,12,J. Low Power Electronics,2,db/journals/jolpe/jolpe12.html#WangLC16,https://doi.org/10.1166/jolpe.2016.1426 +Yajun Wang,Design and Implementation of a USB Device Controller with the Power Management Unit.,2016,12,J. Low Power Electronics,4,db/journals/jolpe/jolpe12.html#WangYZG16,https://doi.org/10.1166/jolpe.2016.1454 +Cheolhwan Lim,A Compact CMOS Electrochemical Sensor Readout Circuit for a Conductometric Sensor Array.,2014,10,J. Low Power Electronics,4,db/journals/jolpe/jolpe10.html#LimDJMR14,https://doi.org/10.1166/jolpe.2014.1354 +Howard Chen,The Effect of Dynamic Power Management on Mid-Frequency and Low-Frequency Power Supply Noise.,2010,6,J. Low Power Electronics,1,db/journals/jolpe/jolpe6.html#ChenNM10,https://doi.org/10.1166/jolpe.2010.1068 +Armin Tajalli,Nanowatt Range Folding-Interpolating Analog-to-Digital Converter Using Subthreshold Source-Coupled Circuits.,2010,6,J. Low Power Electronics,1,db/journals/jolpe/jolpe6.html#TajalliL10,https://doi.org/10.1166/jolpe.2010.1072 +Pankaj Golani,Back-Annotation in High-Speed Asynchronous Design.,2006,2,J. Low Power Electronics,1,db/journals/jolpe/jolpe2.html#GolaniB06,https://doi.org/10.1166/jolpe.2006.005 +Nikolaos Andrikos,Improving Electro-Magnetic Interference of Embedded Systems Through Jittered-Delay Desynchronization.,2010,6,J. Low Power Electronics,4,db/journals/jolpe/jolpe6.html#AndrikosLCP10,https://doi.org/10.1166/jolpe.2010.1110 +Jimson Mathew,Selected Articles from the IEEE ISED 2012 Conference.,2013,9,J. Low Power Electronics,3,db/journals/jolpe/jolpe9.html#MathewP13,https://doi.org/10.1166/jolpe.2013.1270 +Tushar Gupta,Impact of Power Consumption and Temperature on Processor Lifetime Reliability.,2012,8,J. Low Power Electronics,1,db/journals/jolpe/jolpe8.html#GuptaBHVZM12,https://doi.org/10.1166/jolpe.2012.1174 +Rashmi Nanda,Energy-Efficient Retiming and Scheduling of Datapath-Dominant Digital Systems.,2011,7,J. Low Power Electronics,3,db/journals/jolpe/jolpe7.html#NandaM11,https://doi.org/10.1166/jolpe.2011.1147 +Huang Huang,Leakage Aware Scheduling on Maximum Temperature Minimization for Periodic Hard Real-Time Systems.,2012,8,J. Low Power Electronics,4,db/journals/jolpe/jolpe8.html#HuangCLQ12,https://doi.org/10.1166/jolpe.2012.1200 +Nitin Prakash,Low Cost Dynamic Architecture Adaptation Schemes for Drowsy Cache Management.,2013,9,J. Low Power Electronics,4,db/journals/jolpe/jolpe9.html#PrakashKK13,https://doi.org/10.1166/jolpe.2013.1288 +Yang Ge,Distributed Task Migration in a Homogeneous Many-Core System for Leakage and Fan Power Reduction.,2014,10,J. Low Power Electronics,4,db/journals/jolpe/jolpe10.html#GeZQ14,https://doi.org/10.1166/jolpe.2014.1357 +Zahra Rouhani,Towards Approximate Computing with Quantum-Dot Cellular Automata.,2017,13,J. Low Power Electronics,1,db/journals/jolpe/jolpe13.html#RouhaniATNB17,https://doi.org/10.1166/jolpe.2017.1475 +Nabila Moubdi,On-Chip Process Variability Monitoring Flow.,2010,6,J. Low Power Electronics,4,db/journals/jolpe/jolpe6.html#MoubdiMWEADB10,https://doi.org/10.1166/jolpe.2010.1109 +Filomila Kafe,0.5 V RMS-to-DC Converter Topologies Suitable for Implantable Biomedical Devices.,2014,10,J. Low Power Electronics,3,db/journals/jolpe/jolpe10.html#KafeP14,https://doi.org/10.1166/jolpe.2014.1325 +K. Shyamala,Novel SAT-Based Peak Dynamic Power Estimation for Digital Circuits.,2009,5,J. Low Power Electronics,4,db/journals/jolpe/jolpe5.html#ShyamalaVK09,https://doi.org/10.1166/jolpe.2009.1042 +Sumit Ahuja,SCoPE: Statistical Regression Based Power Models for Co-Processors Power Estimation.,2009,5,J. Low Power Electronics,4,db/journals/jolpe/jolpe5.html#AhujaMLS09,https://doi.org/10.1166/jolpe.2009.1040 +Huifang Qin,SRAM Cell Optimization for Ultra-Low Power Standby.,2006,2,J. Low Power Electronics,3,db/journals/jolpe/jolpe2.html#QinVTCR06,https://doi.org/10.1166/jolpe.2006.097 +C. P. Ravikumar,Test Strategies for Low-Power Devices.,2008,4,J. Low Power Electronics,2,db/journals/jolpe/jolpe4.html#RavikumarHW08,https://doi.org/10.1166/jolpe.2008.274 +Weiping Liao,Microarchitecture Level Interconnect Modeling Considering Layout Optimization.,2005,1,J. Low Power Electronics,3,db/journals/jolpe/jolpe1.html#LiaoH05,https://doi.org/10.1166/jolpe.2005.036 +Md. Ibrahim Faisal,A Flexible Architecture for Finite Field Galois Fields(2m) Arithmetic Processor.,2011,7,J. Low Power Electronics,3,db/journals/jolpe/jolpe7.html#FaisalJAB11,https://doi.org/10.1166/jolpe.2011.1150 +Anirban De,Design Analysis and Implementation of a Dynamic Voltage Restorer.,2013,9,J. Low Power Electronics,3,db/journals/jolpe/jolpe9.html#DeKKPSMTS13,https://doi.org/10.1166/jolpe.2013.1263 +Francisco Veirano,Minimum Operating Voltage Due to Intrinsic Noise in Subthreshold Digital Logic in Nanoscale CMOS.,2016,12,J. Low Power Electronics,1,db/journals/jolpe/jolpe12.html#VeiranoSN16,https://doi.org/10.1166/jolpe.2016.1422 +Seied Zaniar Hoseini,2-Channel Electroencephalography Sensor Frontend for Portable Health Condition Monitoring Applications.,2017,13,J. Low Power Electronics,2,db/journals/jolpe/jolpe13.html#HoseiniLCS17,https://doi.org/10.1166/jolpe.2017.1484 +Shibir Basak,Effect of Traps on the Performance of Nanowire Si Junctionless Tunnel FET.,2014,10,J. Low Power Electronics,4,db/journals/jolpe/jolpe10.html#BasakG14,https://doi.org/10.1166/jolpe.2014.1351 +Swati Bhardwaj,Vector Cross Product and Coordinate Rotation Based nD Hybrid FastICA.,2018,14,J. Low Power Electronics,2,db/journals/jolpe/jolpe14.html#BhardwajRAA18,https://doi.org/10.1166/jolpe.2018.1551 +Dao-Ping Wang,A Two-Write and Two-Read Multi-Port SRAM with Shared Write Bit-Line Scheme and Selective Read Path for Low Power Operation.,2013,9,J. Low Power Electronics,1,db/journals/jolpe/jolpe9.html#WangLH13,https://doi.org/10.1166/jolpe.2013.1236 +Jos A. V. Prakash,A Low Cost Design of Time Division Multiplexing Based 3rd Order Continuous-Time Incremental and#931*Γ6* Modulator with Excess Loop Delay.,2014,10,J. Low Power Electronics,3,db/journals/jolpe/jolpe10.html#PrakashJ14,https://doi.org/10.1166/jolpe.2014.1341 +Cheolhwan Lim,A CMOS Switched Capacitor Based Low Power Amperometric Readout Circuit for Microneedle Glucose Sensor.,2014,10,J. Low Power Electronics,2,db/journals/jolpe/jolpe10.html#LimGKJR14,https://doi.org/10.1166/jolpe.2014.1317 +I. N. Beigh,Log-Domain Implementation of QRS Detection System Using the Pan-Tompkins Algorithm with Fractional-Order Differentiator for Improved Noise Rejection.,2016,12,J. Low Power Electronics,4,db/journals/jolpe/jolpe12.html#BeighKP16,https://doi.org/10.1166/jolpe.2016.1450 +Anna Richelli,A New Simple P-MOS Charge Pump for Low Voltage Operations.,2013,9,J. Low Power Electronics,4,db/journals/jolpe/jolpe9.html#RichelliCK13a,https://doi.org/10.1166/jolpe.2013.1277 +Palanichamy Manikandan,Selective Algorithms for Built-In Self-Test and Self-Diagnosis in Embedded SRAMS.,2015,11,J. Low Power Electronics,4,db/journals/jolpe/jolpe11.html#ManikandanALH15,https://doi.org/10.1166/jolpe.2015.1412 +Hyung Gyu Lee,Low-Energy Heterogeneous Non-Volatile Memory Systems for Mobile Systems.,2005,1,J. Low Power Electronics,1,db/journals/jolpe/jolpe1.html#LeeC05,https://doi.org/10.1166/jolpe.2005.001 +Timur Schafer,Design and Verification of Analog CMOS Circuits Using the g m/I D-Method with Age-Dependent Degradation Effects.,2017,13,J. Low Power Electronics,1,db/journals/jolpe/jolpe13.html#SchaferHHEPP17,https://doi.org/10.1166/jolpe.2017.1469 +Giuseppe Visalli,Low-Energy and Secure Aggregation of Uncorrelated Data in Clustered Sensor Network.,2017,13,J. Low Power Electronics,3,db/journals/jolpe/jolpe13.html#Visalli17,https://doi.org/10.1166/jolpe.2017.1499 +Gaurav Singh,A Formally Verified Peak-Power Reduction Technique for Hardware Synthesis from Concurrent Action-Oriented Specifications.,2009,5,J. Low Power Electronics,2,db/journals/jolpe/jolpe5.html#SinghSS09,https://doi.org/10.1166/jolpe.2009.1015 +Valter Sádio,Modeling of Inherent Losses of Fully Integrated Switched Capacitor DC-DC Converters.,2012,8,J. Low Power Electronics,5,db/journals/jolpe/jolpe8.html#SadioRMS12,https://doi.org/10.1166/jolpe.2012.1224 +A. Bensaci,Design of a New Electrical Model of Integrated LC Filter in DC-DC Converter.,2016,12,J. Low Power Electronics,1,db/journals/jolpe/jolpe12.html#BensaciHFLBM16,https://doi.org/10.1166/jolpe.2016.1424 +Mohamayee Mohapatra,A Comparative Analysis of Single Switch Soft-Switching Boost Converter and Interleaved Soft-Switching Boost Converter.,2017,13,J. Low Power Electronics,1,db/journals/jolpe/jolpe13.html#MohapatraPPSB17,https://doi.org/10.1166/jolpe.2017.1462 +Manash Chanda,Energy Efficient Adiabatic Logic Styles in Sub-Threshold Region for Ultra Low Power Application.,2017,13,J. Low Power Electronics,3,db/journals/jolpe/jolpe13.html#ChandaGMPS17,https://doi.org/10.1166/jolpe.2017.1505 +Steve Ngueya W.,A Power Efficient Regulated Charge Pump Based on Charge Sharing for Contactless Devices: An Alternative to Four-Phase Charge Pumps.,2017,13,J. Low Power Electronics,4,db/journals/jolpe/jolpe13.html#WPAMR17,https://doi.org/10.1166/jolpe.2017.1519 +Aswin Sreedhar,On Reliability Trojan Injection and Detection.,2012,8,J. Low Power Electronics,5,db/journals/jolpe/jolpe8.html#SreedharKK12,https://doi.org/10.1166/jolpe.2012.1225 +Irith Pomeranz,Transparent-Segmented-Scan without the Routing Overhead of Segmented-Scan.,2011,7,J. Low Power Electronics,2,db/journals/jolpe/jolpe7.html#PomeranzR11,https://doi.org/10.1166/jolpe.2011.1132 +Anna Richelli,A 30 mV-2.5 V DC/DC Converter for Energy Harvesting.,2015,11,J. Low Power Electronics,2,db/journals/jolpe/jolpe11.html#RichelliCK15,https://doi.org/10.1166/jolpe.2015.1372 +Carmelo Zuccarotto,Design of a Low Voltage High Symmetrical Slew Rate Opamp Based on Self Cascode in UMC 0.18 λ6*m.,2015,11,J. Low Power Electronics,4,db/journals/jolpe/jolpe11.html#ZuccarottoRK15,https://doi.org/10.1166/jolpe.2015.1407 +Ivano Midulla,Test Power Analysis at Register Transfer Level.,2008,4,J. Low Power Electronics,3,db/journals/jolpe/jolpe4.html#MidullaA08,https://doi.org/10.1166/jolpe.2008.193 +Jeff Pool,Power-Gated Arithmetic Circuits for Energy-Precision Tradeoffs in Mobile Graphics Processing Units.,2011,7,J. Low Power Electronics,2,db/journals/jolpe/jolpe7.html#PoolLS11,https://doi.org/10.1166/jolpe.2011.1124 +Patrick Girard 0001,Low Power Scan Chain Design: A Solution for an Efficient Tradeoff Between Test Power and Scan Routing.,2005,1,J. Low Power Electronics,1,db/journals/jolpe/jolpe1.html#GirardB05,https://doi.org/10.1166/jolpe.2005.004 +Bahniman Ghosh,Domain Wall Dynamics Due to Voltage Controlled Magnetic Anisotropy.,2014,10,J. Low Power Electronics,1,db/journals/jolpe/jolpe10.html#GhoshSB14,https://doi.org/10.1166/jolpe.2014.1299 +Alak Majumder,A 65 nm Design of 0.6 V/8.98 λ6*W Process-Voltage-Aware Dynamic Analog Comparator for High Speed Data Reconstruction Applications.,2017,13,J. Low Power Electronics,3,db/journals/jolpe/jolpe13.html#MajumderMB17,https://doi.org/10.1166/jolpe.2017.1496 +Josep Rius,An Activity Monitor for Power/Performance Tuning of CMOS Digital Circuits.,2006,2,J. Low Power Electronics,1,db/journals/jolpe/jolpe2.html#RiusMP06,https://doi.org/10.1166/jolpe.2006.009 +Arvind Jain,Design Techniques with Multiple Scan Compression CoDecs for Low Power and High Quality Scan Test.,2011,7,J. Low Power Electronics,4,db/journals/jolpe/jolpe7.html#JainSPR11,https://doi.org/10.1166/jolpe.2011.1161 +Alexandre Fonseca,Low Power 28 nm Fully Depleted Silicon on Insulator 2.45 GHz Phase Locked Loop.,2014,10,J. Low Power Electronics,1,db/journals/jolpe/jolpe10.html#FonsecaFLJ14,https://doi.org/10.1166/jolpe.2014.1306 +Jimson Mathew,Selected Articles from the IEEE ISED 2014 Conference.,2015,11,J. Low Power Electronics,3,db/journals/jolpe/jolpe11.html#MathewRPP15,https://doi.org/10.1166/jolpe.2015.1405 +Felipe Machado,A Binary Decision Diagram Structure for Probabilistic Switching Activity Estimation.,2008,4,J. Low Power Electronics,3,db/journals/jolpe/jolpe4.html#MachadoTR08,https://doi.org/10.1166/jolpe.2008.180 +Karim El Khadiri,Design of a Gate Driver for a Class-D Audio Output Stage with Break-Before-Make in 130 nm SOI-BCD Technology.,2016,12,J. Low Power Electronics,4,db/journals/jolpe/jolpe12.html#KhadiriAQ16,https://doi.org/10.1166/jolpe.2016.1458 +Mohammad Hossein Moaiyeri,An Efficient Analog-to-Digital Converter Based on Carbon Nanotube FETs.,2016,12,J. Low Power Electronics,2,db/journals/jolpe/jolpe12.html#MoaiyeriKNNB16,https://doi.org/10.1166/jolpe.2016.1432 +Santosh Koppa,An Ultra-Low Power Charge Redistribution Successive Approximation Register A/D Converter for Biomedical Applications.,2016,12,J. Low Power Electronics,4,db/journals/jolpe/jolpe12.html#KoppaMJ16,https://doi.org/10.1166/jolpe.2016.1452 +Yue Zha,Specialization: A New Path Towards Low Power.,2018,14,J. Low Power Electronics,2,db/journals/jolpe/jolpe14.html#ZhaL18,https://doi.org/10.1166/jolpe.2018.1559 +Pooja Joshi,Modeling and Optimization of Nano-Scale Sensing Shorted Gate FinFET D Flip-Flop Using AVL.,2015,11,J. Low Power Electronics,3,db/journals/jolpe/jolpe11.html#JoshiKA15,https://doi.org/10.1166/jolpe.2015.1401 +Hicham Akhamal,A 20 ppm/®6*C Temperature Coefficient and High Power Supply Rejection Ratio Bandgap Reference Implemented in 90 nm CMOS Technology for Low Drop-Out Voltage Regulator Applications.,2017,13,J. Low Power Electronics,1,db/journals/jolpe/jolpe13.html#AkhamalCAQ17,https://doi.org/10.1166/jolpe.2017.1473 +Amit Acharyya,Energy-Efficient and High-Speed Robust System Design for Remote Cardiac Health Monitoring.,2014,10,J. Low Power Electronics,3,db/journals/jolpe/jolpe10.html#AcharyyaASSA14,https://doi.org/10.1166/jolpe.2014.1333 +Anirudh Srikant Iyengar,Magnetic Tunnel Junction Reliability Assessment Under Process Variations and Activity Factors and Mitigation Techniques.,2018,14,J. Low Power Electronics,2,db/journals/jolpe/jolpe14.html#IyengarGR18,https://doi.org/10.1166/jolpe.2018.1560 +Sanjit Kumar Swain,Effect of Channel Thickness and Doping Concentration on Sub-Threshold Performance of Graded Channel and Gate Stack DG MOSFETs.,2015,11,J. Low Power Electronics,3,db/journals/jolpe/jolpe11.html#SwainASPS15,https://doi.org/10.1166/jolpe.2015.1395 +Ayse Kivilcim Coskun,Analysis and Optimization of MPSoC Reliability.,2006,2,J. Low Power Electronics,1,db/journals/jolpe/jolpe2.html#CoskunSMML06,https://doi.org/10.1166/jolpe.2006.007 +Praveen Elakkumanan,Low Power SER Tolerant Design to Mitigate Single Event Transients in Nanoscale Circuits.,2005,1,J. Low Power Electronics,2,db/journals/jolpe/jolpe1.html#ElakkumananPS05,https://doi.org/10.1166/jolpe.2005.022 +Yang Xu,Heuristic on a Novel Power Management System Cooperating with Compiler.,2007,3,J. Low Power Electronics,1,db/journals/jolpe/jolpe3.html#XuHZZS07,https://doi.org/10.1166/jolpe.2007.112 +Tooraj Nikoubin,A New Cell Design Methodology for Balanced XOR-XNOR Circuits for Hybrid-CMOS Logic.,2009,5,J. Low Power Electronics,4,db/journals/jolpe/jolpe5.html#NikoubinEBN09,https://doi.org/10.1166/jolpe.2009.1046 +Andrea Calimera,Thermal-Aware Design Techniques for Nanometer CMOS Circuits.,2008,4,J. Low Power Electronics,3,db/journals/jolpe/jolpe4.html#CalimeraDSSBMMP08,https://doi.org/10.1166/jolpe.2008.190 +Leonardo Steinfeld,Smart Coulomb Counter for Self-Metering Wireless Sensor Nodes Consumption.,2015,11,J. Low Power Electronics,2,db/journals/jolpe/jolpe11.html#SteinfeldOBFV15,https://doi.org/10.1166/jolpe.2015.1370 +Yang Cao 0007,Cooperative Relay Transmission in Advanced Metering Infrastructure with Wireless Attacks.,2016,12,J. Low Power Electronics,4,db/journals/jolpe/jolpe12.html#CaoQZQW16,https://doi.org/10.1166/jolpe.2016.1460 +Ehsan Atoofian,Exploiting Speculation Cost Prediction in Power-Aware Applications.,2007,3,J. Low Power Electronics,1,db/journals/jolpe/jolpe3.html#AtoofianBA07,https://doi.org/10.1166/jolpe.2007.110 +David Rios-Arambula,On the Use of Feedback Systems to Dynamically Control the Supply Voltage of Low-Power Circuits.,2006,2,J. Low Power Electronics,1,db/journals/jolpe/jolpe2.html#Rios-ArambulaBSR06,https://doi.org/10.1166/jolpe.2006.006 +Euiseok Kim,An Adaptive Frames Per Second-Based CPU-GPU Cooperative Dynamic Voltage and Frequency Scaling Governing Technique for Mobile Games.,2016,12,J. Low Power Electronics,4,db/journals/jolpe/jolpe12.html#KimKH16,https://doi.org/10.1166/jolpe.2016.1451 +Yangbo Wu,Near-Threshold Computing of Clocked Adiabatic Logic with Complementary Pass-Transistor Logic Circuits.,2011,7,J. Low Power Electronics,3,db/journals/jolpe/jolpe7.html#WuH11,https://doi.org/10.1166/jolpe.2011.1144 +Claas Cornelius,Power-Efficient Application of Sleep Transistors to Enhance the Reliability of Integrated Circuits.,2011,7,J. Low Power Electronics,4,db/journals/jolpe/jolpe7.html#CorneliusTT11,https://doi.org/10.1166/jolpe.2011.1154 +Bin Zhou,Test Pattern Generation Based on Multi-TRC Scan Architecture for Reducing Test Cost.,2012,8,J. Low Power Electronics,1,db/journals/jolpe/jolpe8.html#ZhouXYWC12,https://doi.org/10.1166/jolpe.2012.1167 +Kai Yang,Energy-Efficient Reconfigurable Hardware Accelerators for Data-Intensive Applications.,2017,13,J. Low Power Electronics,3,db/journals/jolpe/jolpe13.html#YangKB17,https://doi.org/10.1166/jolpe.2017.1488 +Sishu Zeng,Scheduling Instructions for Enhanced Performance and Energy Efficiency on a Clustered Architecture with Applications in Big-Data Sensor Networks.,2016,12,J. Low Power Electronics,1,db/journals/jolpe/jolpe12.html#ZengTY16,https://doi.org/10.1166/jolpe.2016.1418 +Jalel Ktari,A Low Power Design Space Exploration Methodology Based on High Level Models and Confidence Intervals.,2009,5,J. Low Power Electronics,1,db/journals/jolpe/jolpe5.html#KtariA09,https://doi.org/10.1166/jolpe.2009.1003 +Sudip Roy 0001,Selected Articles from VDAT 2017 Conference.,2018,14,J. Low Power Electronics,2,db/journals/jolpe/jolpe14.html#RoyKD18,https://doi.org/10.1166/jolpe.2018.1566 +Behnam Ghavami,An Efficient Energy Estimation Methodology for Quasi Delay Insensitive Template-Based Asynchronous Circuits.,2010,6,J. Low Power Electronics,1,db/journals/jolpe/jolpe6.html#GhavamiPN10,https://doi.org/10.1166/jolpe.2010.1051 +Tai-Hsuan Wu,A Parallel and Randomized Algorithm for Large-Scale Discrete Dual-Vt Assignment and Continuous Gate Sizing.,2008,4,J. Low Power Electronics,2,db/journals/jolpe/jolpe4.html#WuXD08,https://doi.org/10.1166/jolpe.2008.271 +Emrah Acar,Leakage and Leakage Sensitivity Computation for Combinational Circuits.,2005,1,J. Low Power Electronics,2,db/journals/jolpe/jolpe1.html#AcarDN05,https://doi.org/10.1166/jolpe.2005.026 +Eren Kursun,Early Quality Assessment for Low Power Behavioral Synthesis.,2005,1,J. Low Power Electronics,3,db/journals/jolpe/jolpe1.html#KursunMM05,https://doi.org/10.1166/jolpe.2005.028 +Giuseppe Visalli,An Ultra-Low Power Data Aggregation System for Wireless Micro Sensor Networks.,2007,3,J. Low Power Electronics,2,db/journals/jolpe/jolpe3.html#VisalliG07,https://doi.org/10.1166/jolpe.2007.124 +Tripurari Sharan,Fully Differential Operational Transconductance Amplifier with Enhanced Phase Margin and Gain for Ultra-Low-Power Circuits.,2017,13,J. Low Power Electronics,3,db/journals/jolpe/jolpe13.html#SharanB17,https://doi.org/10.1166/jolpe.2017.1504 +Nagm Eldin Mohamed,Lethargic Cache: A Low Leakage Direct Mapped Cache.,2007,3,J. Low Power Electronics,2,db/journals/jolpe/jolpe3.html#MohamedAB07,https://doi.org/10.1166/jolpe.2007.122 +Assem A. M. Bsoul,A Configurable Architecture to Limit Inrush Current in Power-Gated Reconfigurable Devices.,2014,10,J. Low Power Electronics,1,db/journals/jolpe/jolpe10.html#BsoulW14,https://doi.org/10.1166/jolpe.2014.1289 +Umakanta Nanda,A Novel Error Detection Strategy for a Low Power Low Noise All-Digital Phase-Locked Loop.,2016,12,J. Low Power Electronics,1,db/journals/jolpe/jolpe12.html#Nanda16,https://doi.org/10.1166/jolpe.2016.1416 +Luo Sun,Design and Analysis of Binary Tree Static Random Access Memory for Low Power Embedded Systems.,2014,10,J. Low Power Electronics,3,db/journals/jolpe/jolpe10.html#SunMPPS14,https://doi.org/10.1166/jolpe.2014.1336 +Feng Gao,Gate Sizing and Vt Assignment for Active-Mode Leakage Power Reduction.,2006,2,J. Low Power Electronics,2,db/journals/jolpe/jolpe2.html#GaoH06,https://doi.org/10.1166/jolpe.2006.056 +B. Jhnanesh Somayaji,Triple Reduced Surface Field Drain Extended MOS Device Design and Its RF Performance Evaluation for Sub-Micron RF SoC Platform.,2017,13,J. Low Power Electronics,4,db/journals/jolpe/jolpe13.html#SomayajiB17,https://doi.org/10.1166/jolpe.2017.1513 +Jamel Nebhen,A High Linear and Temperature Compensation Ring Voltage-Controlled Oscillator for Random Number Generator.,2017,13,J. Low Power Electronics,4,db/journals/jolpe/jolpe13.html#NebhenMM17,https://doi.org/10.1166/jolpe.2017.1521 +Dheepakkumaran Jayaraman,Scan Shift Power Reduction by Gating Internal Nodes.,2010,6,J. Low Power Electronics,2,db/journals/jolpe/jolpe6.html#JayaramanST10,https://doi.org/10.1166/jolpe.2010.1085 +Ajit Gupte,Adaptive Global Elimination Algorithm for Low Power Motion Estimation.,2009,5,J. Low Power Electronics,1,db/journals/jolpe/jolpe5.html#GupteA09,https://doi.org/10.1166/jolpe.2009.1010 +D. Ramakrishnan,Design and Analysis of Location Caches in a NoC-Based Chip Multiprocessor System.,2010,6,J. Low Power Electronics,2,db/journals/jolpe/jolpe6.html#RamakrishnanWJ10,https://doi.org/10.1166/jolpe.2010.1079 +Sayeed A. Badrudduza,Static Random Access Memory Cells with Intrinsically High Read Stability and Low Standby Power.,2006,2,J. Low Power Electronics,3,db/journals/jolpe/jolpe2.html#BadrudduzaSC06,https://doi.org/10.1166/jolpe.2006.102 +Gaurav Singh,Techniques for Power-Aware Hardware Synthesis from Concurrent Action Oriented Specifications.,2007,3,J. Low Power Electronics,2,db/journals/jolpe/jolpe3.html#SinghSAS07,https://doi.org/10.1166/jolpe.2007.134 +Shashi Kant Verma,A Low Power Novel Encoding Technique for RC Modelled VLSI Interconnects.,2013,9,J. Low Power Electronics,4,db/journals/jolpe/jolpe9.html#VermaKS13,https://doi.org/10.1166/jolpe.2013.1271 +Srinivas Sabbavarapu,A Novel Integrated Circuit Design Methodology Using Dynamic Library Concept with Reduced Non-Recurring Engineering Cost and Time-to-Market.,2014,10,J. Low Power Electronics,3,db/journals/jolpe/jolpe10.html#SabbavarapuRSAM14,https://doi.org/10.1166/jolpe.2014.1334 +Pilar Parra,Selective Clock-Gating for Low-Power Synchronous Counters.,2005,1,J. Low Power Electronics,1,db/journals/jolpe/jolpe1.html#ParraAJV05,https://doi.org/10.1166/jolpe.2005.003 +Po-Tsang Huang,A Low Power Differential Cascode Voltage Switch with Pass Gate Pulsed Latch for Viterbi Decoder.,2010,6,J. Low Power Electronics,4,db/journals/jolpe/jolpe6.html#HuangLCLH10,https://doi.org/10.1166/jolpe.2010.1104 +Saloni Varshney,Low Power-Variable Resolution Analog-to-Digital Converter.,2014,10,J. Low Power Electronics,2,db/journals/jolpe/jolpe10.html#VarshneyGSS14,https://doi.org/10.1166/jolpe.2014.1316 +Kaveh Aasaraai,Low-Power Perceptron Branch Predictor.,2006,2,J. Low Power Electronics,3,db/journals/jolpe/jolpe2.html#AasaraaiB06,https://doi.org/10.1166/jolpe.2006.089 +Trinidad Sanchez-Rodriguez,A Low-Power Baseband Filter Based on a 1.2-V 65-nm CMOS Bulk-Driven Linear Tunable Transconductor.,2016,12,J. Low Power Electronics,3,db/journals/jolpe/jolpe12.html#Sanchez-Rodriguez16,https://doi.org/10.1166/jolpe.2016.1440 +Stéphane Burignat,A Technology Based Complexity Model for Reversible Cuccaro Ripple-Carry Adder.,2014,10,J. Low Power Electronics,4,db/journals/jolpe/jolpe10.html#BurignatV14a,https://doi.org/10.1166/jolpe.2014.1353 +Hesheng Lin,Leakage Current Improvement for a Voltage Doubler Charge Pump.,2016,12,J. Low Power Electronics,3,db/journals/jolpe/jolpe12.html#LinCCLZ16,https://doi.org/10.1166/jolpe.2016.1442 +Abdullah Baz,Self-Timed SRAM for Energy Harvesting Systems.,2011,7,J. Low Power Electronics,2,db/journals/jolpe/jolpe7.html#BazSXY11,https://doi.org/10.1166/jolpe.2011.1136 +Bahniman Ghosh,Performance Improvement in Nanoscale Ge-GaAs Heterojunction Junctionless Tunnel FET Using a Dual Material Gate.,2014,10,J. Low Power Electronics,3,db/journals/jolpe/jolpe10.html#GhoshBA14,https://doi.org/10.1166/jolpe.2014.1348 +Balaji Jayaraman,Performance Analysis of Subthreshold Cascode Current Mirror in 130 nm CMOS Technology.,2009,5,J. Low Power Electronics,4,db/journals/jolpe/jolpe5.html#JayaramanB09,https://doi.org/10.1166/jolpe.2009.1047 +Yanqiu Huang,Accurate Energy-Aware Workload Distribution for Wireless Sensor Networks Using a Detailed Communication Energy Cost Model.,2014,10,J. Low Power Electronics,2,db/journals/jolpe/jolpe10.html#HuangYO14,https://doi.org/10.1166/jolpe.2014.1315 +Mauro Olivieri,Design and Test of a Novel Programmable Clock Generator Semi-Custom Core for Energy-Efficient Systems-on-Chips.,2005,1,J. Low Power Electronics,3,db/journals/jolpe/jolpe1.html#OlivieriST05,https://doi.org/10.1166/jolpe.2005.041 +Bahman Kheradmand Boroujeni,Optimal Logic Architecture and Supply Voltage Selection Method to Reduce the Impact of the Threshold Voltage Variation on the Timing.,2011,7,J. Low Power Electronics,2,db/journals/jolpe/jolpe7.html#BoroujeniPL11,https://doi.org/10.1166/jolpe.2011.1137 +Nilanjan Banerjee,Computation Partitioning and Reuse for Power Efficient High Performance Digital Signal Processing.,2007,3,J. Low Power Electronics,3,db/journals/jolpe/jolpe3.html#BanerjeeR07,https://doi.org/10.1166/jolpe.2007.141 +Alberto García Ortiz,Signal Activity Analysis for High-Level Power Estimation in Time-Shared Linear Systems.,2007,3,J. Low Power Electronics,2,db/journals/jolpe/jolpe3.html#OrtizMG07,https://doi.org/10.1166/jolpe.2007.133 +Ankit Kumar Verma,Ab-Initio Modeling of Effect of Boron and Phosphorus Doping in CoFe/MgO Magnetic Tunnel Junctions.,2014,10,J. Low Power Electronics,3,db/journals/jolpe/jolpe10.html#VermaGAK14,https://doi.org/10.1166/jolpe.2014.1349 +José Monteiro,Selected Articles from the PATMOS 2009 Workshop.,2010,6,J. Low Power Electronics,1,db/journals/jolpe/jolpe6.html#Monteiro10,https://doi.org/10.1166/jolpe.2010.1066 +Wei Zhao 0010,Ensuring Power-Safe Application of Test Patterns Using an Effective Gating Approach Considering Current Limits.,2012,8,J. Low Power Electronics,2,db/journals/jolpe/jolpe8.html#ZhaoTC12,https://doi.org/10.1166/jolpe.2012.1187 +Sasidharan Ekambavanan,Encoding Serial Graphical Data for Energy-Delay Product/Energy Minimization.,2009,5,J. Low Power Electronics,2,db/journals/jolpe/jolpe5.html#EkambavananGKN09,https://doi.org/10.1166/jolpe.2009.1017 +Cristiano Lazzari,Low Power Multiple-Value Voltage-Mode Look-Up Table for Quaternary Field Programmable Gate Arrays.,2011,7,J. Low Power Electronics,2,db/journals/jolpe/jolpe7.html#LazzariFFM11,https://doi.org/10.1166/jolpe.2011.1138 +Luigi Dilillo,Reducing Power Dissipation in SRAM during Test.,2006,2,J. Low Power Electronics,2,db/journals/jolpe/jolpe2.html#DililloRAG06,https://doi.org/10.1166/jolpe.2006.062 +José F. da Rocha,Smart Control of Internal Supply Voltage Spikes in a Low Voltage DC-DC Buck Converter.,2011,7,J. Low Power Electronics,3,db/journals/jolpe/jolpe7.html#RochaSC11,https://doi.org/10.1166/jolpe.2011.1146 +Philippe Manet,Low Power Techniques Applied to a 80C51 Microcontroller for High Temperature Applications.,2006,2,J. Low Power Electronics,1,db/journals/jolpe/jolpe2.html#ManetABBL06,https://doi.org/10.1166/jolpe.2006.011 +B. Vandana,Prospects of 2D Junctionless Channel Transistor (JLCT) Towards Analog and RF Metrics Using Si and SiGe in Device Layer.,2017,13,J. Low Power Electronics,3,db/journals/jolpe/jolpe13.html#VandanaMDP17,https://doi.org/10.1166/jolpe.2017.1498 +Johan Vounckx,Editorial.,2006,2,J. Low Power Electronics,1,db/journals/jolpe/jolpe2.html#VounckxP06,https://doi.org/10.1166/jolpe.2006.015 +Mohamed Ghorbel,An Advanced Low Power and Versatile CMOS Current Driver for Multi-Electrode Cochlear Implant Microstimulator.,2006,2,J. Low Power Electronics,3,db/journals/jolpe/jolpe2.html#GhorbelHST06,https://doi.org/10.1166/jolpe.2006.094 +Nuno Dias,Gate Driver Voltage Optimization for Multi-Mode Low Power DC-DC Conversion.,2009,5,J. Low Power Electronics,2,db/journals/jolpe/jolpe5.html#DiasSMBN09,https://doi.org/10.1166/jolpe.2009.1024 +João Casaleiro,Amplitude and Quadrature Errors of Two-Integrator Oscillator.,2015,11,J. Low Power Electronics,3,db/journals/jolpe/jolpe11.html#CasaleiroOF15,https://doi.org/10.1166/jolpe.2015.1403 +Rajiv Soundararajan,A Programmable Oversampling CMOS Delta-Sigma Analog-to-Digital Converter for Low-Power Interface Electronics.,2012,8,J. Low Power Electronics,3,db/journals/jolpe/jolpe8.html#SoundararajanS12,https://doi.org/10.1166/jolpe.2012.1197 +Ankur Goel,Replica Tracked Post Silicon Trimming Enabled Negative Bit Line Voltage Based Write Assist Scheme in SRAM Design.,2015,11,J. Low Power Electronics,3,db/journals/jolpe/jolpe11.html#GoelSG15,https://doi.org/10.1166/jolpe.2015.1404 +Xiaoqing Wen,Efficient Test Set Modification for Capture Power Reduction.,2005,1,J. Low Power Electronics,3,db/journals/jolpe/jolpe1.html#WenSKMMWS05,https://doi.org/10.1166/jolpe.2005.042 +Rabia Melati,Thermal Modeling of a Spiral Planar Inductor.,2017,13,J. Low Power Electronics,1,db/journals/jolpe/jolpe13.html#MelatiHT17,https://doi.org/10.1166/jolpe.2017.1474 +Yohan Wanderoild,A 50 λ6*W Microbial Fuel Cell Isolated Energy Harvesting Interface Based on Air Coupled Inductors.,2018,14,J. Low Power Electronics,1,db/journals/jolpe/jolpe14.html#WanderoildMCP18,https://doi.org/10.1166/jolpe.2018.1538 +Khushbu Chandrakar,Power Optimization Techniques for High-Level Designs Using Multiple Voltage Components for Low Power Consumption.,2018,14,J. Low Power Electronics,2,db/journals/jolpe/jolpe14.html#ChandrakarKR18,https://doi.org/10.1166/jolpe.2018.1547 +Vinay Saripalli,Energy-Delay Performance of Nanoscale Transistors Exhibiting Single Electron Behavior and Associated Logic Circuits.,2010,6,J. Low Power Electronics,3,db/journals/jolpe/jolpe6.html#SaripalliLDN10,https://doi.org/10.1166/jolpe.2010.1089 +Costas Laoudias,Ultra Low-Voltage Low-Power Realization of Non-Linear Energy Operator for Spike Detection.,2013,9,J. Low Power Electronics,1,db/journals/jolpe/jolpe9.html#LaoudiasP13,https://doi.org/10.1166/jolpe.2013.1239 +Savithra Eratne,A Thermal-Aware Scheduling Algorithm for Core Migration in Multicore Processors.,2015,11,J. Low Power Electronics,2,db/journals/jolpe/jolpe11.html#EratneNJ15,https://doi.org/10.1166/jolpe.2015.1373 +David Coleman,Analysis and Improvement of Delay-Insensitive Asynchronous Circuits Operating in Subthreshold Regime.,2010,6,J. Low Power Electronics,2,db/journals/jolpe/jolpe6.html#ColemanD10,https://doi.org/10.1166/jolpe.2010.1083 +Oleg Garitselov,Accurate Polynomial Metamodeling-Based Ultra-Fast Bee Colony Optimization of a Nano-CMOS Phase-Locked Loop.,2012,8,J. Low Power Electronics,3,db/journals/jolpe/jolpe8.html#GaritselovMK12,https://doi.org/10.1166/jolpe.2012.1195 +T. Sasilatha,Modified Design and Analysis of a Performance Optimized Common Gate LNA for Low Power Wireless Sensor Network Applications.,2009,5,J. Low Power Electronics,1,db/journals/jolpe/jolpe5.html#SasilathaR09,https://doi.org/10.1166/jolpe.2009.1011 +Imayavaramban Munuswamy,Electrical Braking in Matrix Converter for More Electric Aircraft: Bi-Directional Switch and Input Power Clamp Methods.,2015,11,J. Low Power Electronics,4,db/journals/jolpe/jolpe11.html#MunuswamyW15,https://doi.org/10.1166/jolpe.2015.1414 +Guillaume Terrasson,A Design Technique for Power Constrained CMOS Low-Noise Amplifier Dedicated to Wireless Sensor Networks.,2009,5,J. Low Power Electronics,2,db/journals/jolpe/jolpe5.html#TerrassonBB09,https://doi.org/10.1166/jolpe.2009.1020 +Rajeevan Chandel,Investigations on Short-Circuit Power Dissipation in Repeater Loaded VLSI Interconnects.,2007,3,J. Low Power Electronics,3,db/journals/jolpe/jolpe3.html#ChandelSC07,https://doi.org/10.1166/jolpe.2007.135 +Sudip Roy 0001,A New Technique for Runtime Leakage Reduction and Its Sensitivity and Parametric Yield Analysis Under Effective Channel-Length Variation.,2010,6,J. Low Power Electronics,1,db/journals/jolpe/jolpe6.html#RoyP10,https://doi.org/10.1166/jolpe.2010.1058 +Nasir Ali Kant,0.5V Sinh-Domain Design of Activation Functions and Neural Networks.,2014,10,J. Low Power Electronics,2,db/journals/jolpe/jolpe10.html#KantKP14,https://doi.org/10.1166/jolpe.2014.1321 +Bing-Chen Wu,Circuit Sensing Techniques in Magnetoresistive Random-Access Memory.,2018,14,J. Low Power Electronics,2,db/journals/jolpe/jolpe14.html#WuL18,https://doi.org/10.1166/jolpe.2018.1554 +Vivek D. Tovinakere,A Polynomial Based Approach to Wakeup Time and Energy Estimation in Power-Gated Logic Clusters.,2011,7,J. Low Power Electronics,4,db/journals/jolpe/jolpe7.html#TovinakereSD11,https://doi.org/10.1166/jolpe.2011.1159 +Jimson Mathew,Selected Articles from the IEEE ISED 2013 Conference.,2014,10,J. Low Power Electronics,3,db/journals/jolpe/jolpe10.html#MathewVP14,https://doi.org/10.1166/jolpe.2014.1344 +Bin Zhou,A Low Power Built-in Self-Test Scheme Based on Overlapping Bit Swapping Linear Feedback Shift Register.,2013,9,J. Low Power Electronics,4,db/journals/jolpe/jolpe9.html#ZhouWSWX13,https://doi.org/10.1166/jolpe.2013.1273 +Patrick Girard 0001,A Special Section on New and Future Trends in Low Power Electronics.,2017,13,J. Low Power Electronics,3,db/journals/jolpe/jolpe13.html#Girard17,https://doi.org/10.1166/jolpe.2017.1509 +S. Raghavendran,Performance Improvement of Soft Switching DC-DC Boost Converter for Photovoltaic (PV) Applications.,2014,10,J. Low Power Electronics,1,db/journals/jolpe/jolpe10.html#RaghavendranB14,https://doi.org/10.1166/jolpe.2014.1295 +Guillaume Just,Effects of Lightly Doped Drain and Channel Doping Variations on Flash Memory Performances and Reliability.,2012,8,J. Low Power Electronics,5,db/journals/jolpe/jolpe8.html#JustMROPPM12,https://doi.org/10.1166/jolpe.2012.1230 +Basant K. Mohanty,Efficient-Block-Processing Parallel Architecture for Multilevel Lifting 2-D DWT.,2013,9,J. Low Power Electronics,1,db/journals/jolpe/jolpe9.html#MohantyM13,https://doi.org/10.1166/jolpe.2013.1238 +Aswin Sreedhar,Lithography Simulation Basics and a Study on Impact of Lithographic Process Window on Gate and Path Delays.,2008,4,J. Low Power Electronics,3,db/journals/jolpe/jolpe4.html#SreedharK08,https://doi.org/10.1166/jolpe.2008.192 +René van Leuken,Selected Articles from the PATMOS 2010 Workshop.,2011,7,J. Low Power Electronics,2,db/journals/jolpe/jolpe7.html#Leuken11,https://doi.org/10.1166/jolpe.2011.1133 +Alberto García Ortiz,Low-Power Coding: Trends and New Challenges.,2017,13,J. Low Power Electronics,3,db/journals/jolpe/jolpe13.html#OrtizBN17,https://doi.org/10.1166/jolpe.2017.1507 +Anna Richelli,Ultra Low Voltage and Low Power Biopotential Amplifier with High Electromagnetic Interference Immunity.,2016,12,J. Low Power Electronics,2,db/journals/jolpe/jolpe12.html#Richelli16,https://doi.org/10.1166/jolpe.2016.1429 +Imen Mansouri,Dynamic Energy Optimization in Network-on-Chip-Based System-on-Chips.,2010,6,J. Low Power Electronics,4,db/journals/jolpe/jolpe6.html#MansouriBPTCS10,https://doi.org/10.1166/jolpe.2010.1106 +Sreeharsha Tavva,Characterization of Variation Aware Nanoscale Static Random Access Memory Designs.,2010,6,J. Low Power Electronics,1,db/journals/jolpe/jolpe6.html#TavvaK10,https://doi.org/10.1166/jolpe.2010.1056 +Jean Michel Portal,Non-Volatile Flip-Flop Based on Unipolar ReRAM for Power-Down Applications.,2012,8,J. Low Power Electronics,1,db/journals/jolpe/jolpe8.html#PortalBDM12,https://doi.org/10.1166/jolpe.2012.1172 +Senling Wang,Physical Power Evaluation of Low Power Logic-BIST Scheme Using Test Element Group Chip.,2015,11,J. Low Power Electronics,4,db/journals/jolpe/jolpe11.html#WangSKT15,https://doi.org/10.1166/jolpe.2015.1410 +Miguel D. Fernandes,Wideband CMOS Receiver with Integrated Filtering and a Current-Mode Sigma-Delta Analog-to-Digital Converter.,2015,11,J. Low Power Electronics,2,db/journals/jolpe/jolpe11.html#FernandesO15,https://doi.org/10.1166/jolpe.2015.1374 +Emeshaw Ashenafi,Investigation and Optimization of Spiral Inductor Design for On-Chip Buck Converter.,2018,14,J. Low Power Electronics,1,db/journals/jolpe/jolpe14.html#AshenafiYC18,https://doi.org/10.1166/jolpe.2018.1541 +Davide Appello,An Evolutionary Algorithm Approach to Stress Program Generation During Burn-In.,2018,14,J. Low Power Electronics,1,db/journals/jolpe/jolpe14.html#AppelloBBCCMPPR18,https://doi.org/10.1166/jolpe.2018.1542 +Hao Shen,Chip Multiprocessor Performance Modeling for Contention Aware Task Migration and Frequency Scaling.,2015,11,J. Low Power Electronics,3,db/journals/jolpe/jolpe11.html#ShenQ15,https://doi.org/10.1166/jolpe.2015.1398 +Karim El Khadiri,Li-Ion Battery Charging with a Buck-Boost DC-DC Converter for a Portable Device Power Management.,2017,13,J. Low Power Electronics,2,db/journals/jolpe/jolpe13.html#KhadiriAQ17,https://doi.org/10.1166/jolpe.2017.1479 +Narayanan M. Komerath,An Architecture Using Lighter-Than-Air Platforms for Retail Power Beaming and Communications.,2012,8,J. Low Power Electronics,3,db/journals/jolpe/jolpe8.html#KomerathPK12,https://doi.org/10.1166/jolpe.2012.1190 +Rida Kheirallah,Energy Study for 28 nm Fully Depleted Silicon-On-Insulator Devices.,2016,12,J. Low Power Electronics,1,db/journals/jolpe/jolpe12.html#KheirallahDA16,https://doi.org/10.1166/jolpe.2016.1420 +Esmaeil Amini,Performance Evaluation and Design Optimization for Flexible Multiple Instruction Multiple Data Elliptic Curve Cryptography Crypto Architecture.,2015,11,J. Low Power Electronics,1,db/journals/jolpe/jolpe11.html#AminiJKB15,https://doi.org/10.1166/jolpe.2015.1364 +Brajesh Pandey,Precision Low Voltage and Current References.,2007,3,J. Low Power Electronics,2,db/journals/jolpe/jolpe3.html#PandeyC07,https://doi.org/10.1166/jolpe.2007.127 +Victor F. Gomes,Trading Time and Space on Low Power Embedded Architectures with Dynamic Instruction Merging.,2005,1,J. Low Power Electronics,3,db/journals/jolpe/jolpe1.html#GomesBC05,https://doi.org/10.1166/jolpe.2005.055 +M. W. Akram,Junctionless Silicon-Nanowire Gate-All-Around Tunnel Field Effect Transistor.,2014,10,J. Low Power Electronics,2,db/journals/jolpe/jolpe10.html#AkramG14,https://doi.org/10.1166/jolpe.2014.1324 +Virat Gandhi,Supply and Body-Bias Voltage Assignment Based Technique for Power and Temperature Control on a Chip at Iso-Performance Conditions.,2013,9,J. Low Power Electronics,2,db/journals/jolpe/jolpe9.html#GandhiDVPK13,https://doi.org/10.1166/jolpe.2013.1254 +Sandro Penolazzi,A General Approach to High-Level Energy and Performance Estimation in System-on-Chip Architectures.,2009,5,J. Low Power Electronics,3,db/journals/jolpe/jolpe5.html#PenolazziHB09,https://doi.org/10.1166/jolpe.2009.1037 +Milos Krstic,Reducing Electromagnetic Interference Using Globally Asynchronous Locally Synchronous Approach.,2010,6,J. Low Power Electronics,1,db/journals/jolpe/jolpe6.html#KrsticKFG10,https://doi.org/10.1166/jolpe.2010.1069 +Yannick Vaiarello,Ultra-Low-Power Audio Communication System for Cochlear Implant Application.,2012,8,J. Low Power Electronics,5,db/journals/jolpe/jolpe8.html#VaiarelloTLVJ12,https://doi.org/10.1166/jolpe.2012.1229 +Nadine Azémard,Selected Articles from the VARI 2012 Workshop.,2012,8,J. Low Power Electronics,5,db/journals/jolpe/jolpe8.html#AzemardJ12,https://doi.org/10.1166/jolpe.2012.1227 +Chantal Ykman-Couvreur,Energy-aware Dynamic Task Scheduling Applied to a Real-time Multimedia Application on an Xscale Board.,2005,1,J. Low Power Electronics,3,db/journals/jolpe/jolpe1.html#Ykman-CouvreurCVFL05,https://doi.org/10.1166/jolpe.2005.037 +Ali H. Hassan,A Low-Power High-Efficiency Inductive Link Power Supply for Neural Recording and Stimulation System-on-Chip.,2018,14,J. Low Power Electronics,1,db/journals/jolpe/jolpe14.html#HassanMIS18,https://doi.org/10.1166/jolpe.2018.1535 +Leonid Mats,A Paradigm Shift in Passive Radio Frequency Identification Tag Development and Manufacturing Flexibility to Provide Active Tag Functionality.,2015,11,J. Low Power Electronics,3,db/journals/jolpe/jolpe11.html#MatsMZSBFRBBULS15,https://doi.org/10.1166/jolpe.2015.1399 +Judit Freijedo,Delay Modeling for Power Noise and Temperature-Aware Design and Test of Digital Systems.,2008,4,J. Low Power Electronics,3,db/journals/jolpe/jolpe4.html#FreijedoSRVTT08,https://doi.org/10.1166/jolpe.2008.191 +Yang Liu,CMOS Phase-Locked Loop Circuits and Hot Carrier Effects.,2012,8,J. Low Power Electronics,3,db/journals/jolpe/jolpe8.html#LiuS12,https://doi.org/10.1166/jolpe.2012.1194 +Erwan Moreac,Energy Savings in Networks-on-Chip with Smart Temporal Shielding.,2017,13,J. Low Power Electronics,3,db/journals/jolpe/jolpe13.html#MoreacBLR17,https://doi.org/10.1166/jolpe.2017.1500 +Miao Hu,Spintronic Memristor: Compact Model and Statistical Analysis.,2011,7,J. Low Power Electronics,2,db/journals/jolpe/jolpe7.html#HuLCW11,https://doi.org/10.1166/jolpe.2011.1131 +Narges Shahidi,Heterogeneous Interconnect for Low-Power Snoop-Based Chip Multiprocessors.,2012,8,J. Low Power Electronics,5,db/journals/jolpe/jolpe8.html#ShahidiSB12,https://doi.org/10.1166/jolpe.2012.1220 +David Guerrero,Studying the Viability of Static Complementary Metal-Oxide-Semiconductor Gates with a Large Number of Inputs When Using Separate Transistor Wells.,2011,7,J. Low Power Electronics,3,db/journals/jolpe/jolpe7.html#GuerreroMJBROV11,https://doi.org/10.1166/jolpe.2011.1145 +Hao Liang,A Novel Low Power Three-Input OR/XNOR Gate Design.,2014,10,J. Low Power Electronics,3,db/journals/jolpe/jolpe10.html#LiangXWQ14,https://doi.org/10.1166/jolpe.2014.1337 +Priyanka Choudhury,An Approach for Low Power Design of Power Gated Finite State Machines Considering Partitioning and State Encoding Together.,2012,8,J. Low Power Electronics,4,db/journals/jolpe/jolpe8.html#ChoudhuryP12,https://doi.org/10.1166/jolpe.2012.1206 +Shane Stelmach,Automation of Switch Insertion and Power Network Generation in 28 nm Power-Switched Designs.,2012,8,J. Low Power Electronics,5,db/journals/jolpe/jolpe8.html#StelmachSH12,https://doi.org/10.1166/jolpe.2012.1234 +Maurice Keller,Low Energy ASIC Elliptic Curve Processor.,2009,5,J. Low Power Electronics,1,db/journals/jolpe/jolpe5.html#KellerM09,https://doi.org/10.1166/jolpe.2009.1007 +Vinod Viswanath,Automatic and Correct Register Transfer Level Annotations for Low Power Microprocessor Design.,2012,8,J. Low Power Electronics,4,db/journals/jolpe/jolpe8.html#ViswanathA12,https://doi.org/10.1166/jolpe.2012.1204 +Po-Kuan Huang,Energy-Aware Compilation for Embedded Processors with Technology Scaling Considerations.,2009,5,J. Low Power Electronics,4,db/journals/jolpe/jolpe5.html#HuangG09,https://doi.org/10.1166/jolpe.2009.1043 +Jeffrey B. Goeders,Power Aware Architecture Exploration for Field Programmable Gate Arrays.,2014,10,J. Low Power Electronics,3,db/journals/jolpe/jolpe10.html#GoedersW14,https://doi.org/10.1166/jolpe.2014.1327 +Francois Druilhe,A Simplified Mathematical Toolbox for Thermal Runaway Analysis.,2014,10,J. Low Power Electronics,1,db/journals/jolpe/jolpe10.html#Druilhe14,https://doi.org/10.1166/jolpe.2014.1290 +Peter A. Beerel,Low Power and Energy Efficient Asynchronous Design.,2007,3,J. Low Power Electronics,3,db/journals/jolpe/jolpe3.html#BeerelR07,https://doi.org/10.1166/jolpe.2007.138 +Ashoka Visweswara Sathanur,Exploiting Temporal Discharge Current Information to Improve the Efficiency of Clustered Power-Gating.,2009,5,J. Low Power Electronics,1,db/journals/jolpe/jolpe5.html#SathanurBMMP09,https://doi.org/10.1166/jolpe.2009.1004 +A. Allaoui,Thermal Modeling of an Integrated Inductor in a Micro-Converter.,2015,11,J. Low Power Electronics,1,db/journals/jolpe/jolpe11.html#AllaouiHSBL15,https://doi.org/10.1166/jolpe.2015.1366 +Zhaopeng Wei,Study and Reduction of Variability in 28 nm Fully Depleted Silicon on Insulator Technology.,2016,12,J. Low Power Electronics,1,db/journals/jolpe/jolpe12.html#WeiJLHFL16,https://doi.org/10.1166/jolpe.2016.1421 +Ammar A. Altameemi,Field Programmable Gate Array Softcore Processors Optimised for Digital Signal Processing Applications.,2017,13,J. Low Power Electronics,4,db/journals/jolpe/jolpe13.html#AltameemiB17,https://doi.org/10.1166/jolpe.2017.1516 +András Timár,Studying the Influence of Chip Temperatures on Timing Integrity Using Improved Power Modeling.,2011,7,J. Low Power Electronics,4,db/journals/jolpe/jolpe7.html#TimarR11,https://doi.org/10.1166/jolpe.2011.1153 +Craig A. Dolwin,Evaluation of an Adaptive Dynamic Voltage Scaling Scheme for Hard Real-Time Applications.,2007,3,J. Low Power Electronics,2,db/journals/jolpe/jolpe3.html#DolwinY07,https://doi.org/10.1166/jolpe.2007.129 +Benjamin S. Mericli,A Passive Radio Frequency Amplifier for Radio Frequency Identification Tags.,2011,7,J. Low Power Electronics,3,db/journals/jolpe/jolpe7.html#MericliOHM11,https://doi.org/10.1166/jolpe.2011.1139 +Srikanth S. Mohan,Power Optimized Design of CMOS Programmable Gain Amplifiers.,2006,2,J. Low Power Electronics,2,db/journals/jolpe/jolpe2.html#MohanRBM06,https://doi.org/10.1166/jolpe.2006.057 +Paulino Ruiz-de-Clavijo,Accurate Logic-Level Current Estimation for Digital CMOS Circuits.,2006,2,J. Low Power Electronics,1,db/journals/jolpe/jolpe2.html#Ruiz-de-ClavijoJDMGOV06,https://doi.org/10.1166/jolpe.2006.010 +Svetozar S. Broussev,Evaluation of Parasitic Components in LC Oscillators by Time-Varying Root-Locus.,2011,7,J. Low Power Electronics,2,db/journals/jolpe/jolpe7.html#BroussevT11,https://doi.org/10.1166/jolpe.2011.1129 +Carolina Albea,Architecture and Robust Control of a Digital Frequency-Locked Loop for Fine-Grain Dynamic Voltage and Frequency Scaling in Globally Asynchronous Locally Synchronous Structures.,2011,7,J. Low Power Electronics,3,db/journals/jolpe/jolpe7.html#AlbeaPVPBL11,https://doi.org/10.1166/jolpe.2011.1141 +Bijoy A. Jose,Improving Energy Efficiency of Virtual Machines with Timer Tick Variations.,2015,11,J. Low Power Electronics,3,db/journals/jolpe/jolpe11.html#JoseA15,https://doi.org/10.1166/jolpe.2015.1386 +Dieudonne Manzi Mugisha,Resilient Cache Design for Mobile Processors in the Near-Threshold Regime.,2015,11,J. Low Power Electronics,2,db/journals/jolpe/jolpe11.html#MugishaCRC15,https://doi.org/10.1166/jolpe.2015.1380 +Alexander Bystrov,Selected Articles from the IEEE LPonTR 2012 Workshop.,2013,9,J. Low Power Electronics,1,db/journals/jolpe/jolpe9.html#Bystrov13,https://doi.org/10.1166/jolpe.2013.1246 +Ahsan Saghir,Reducing Power of Memory Hierarchy in General Purpose Graphics Processing Units.,2017,13,J. Low Power Electronics,2,db/journals/jolpe/jolpe13.html#SaghirAM17,https://doi.org/10.1166/jolpe.2017.1480 +Nitin Kataria,Metric Based Multi-Timescale Control for Reducing Power in Embedded Systems.,2009,5,J. Low Power Electronics,3,db/journals/jolpe/jolpe5.html#KatariaBHS09,https://doi.org/10.1166/jolpe.2009.1035 +Edoardo Regini,Resource Management in Heterogeneous Wireless Sensor Networks.,2011,7,J. Low Power Electronics,2,db/journals/jolpe/jolpe7.html#ReginiLR11,https://doi.org/10.1166/jolpe.2011.1122 +Marco Lanuzza,A Simple Circuit Approach to Improve Speed and Power Consumption in Pulse-Triggered Flip-Flops.,2013,9,J. Low Power Electronics,4,db/journals/jolpe/jolpe9.html#Lanuzza13,https://doi.org/10.1166/jolpe.2013.1276 +Benoit Labbe,An On-Board Step-Down DC/DC Converter for System-On-Chip Power-Supply Strategy.,2015,11,J. Low Power Electronics,2,db/journals/jolpe/jolpe11.html#LabbeA15,https://doi.org/10.1166/jolpe.2015.1383 +David Guerrero,Improving the Performance of Static CMOS Gates by Using Independent Bodies.,2007,3,J. Low Power Electronics,1,db/journals/jolpe/jolpe3.html#GuerreroMJDROV07,https://doi.org/10.1166/jolpe.2007.120 +Guanglei Liu,On-Line Predictive Thermal Management Under Peak Temperature Constraints for Practical Multi-Core Platforms.,2012,8,J. Low Power Electronics,5,db/journals/jolpe/jolpe8.html#LiuFQQ12,https://doi.org/10.1166/jolpe.2012.1216 +Ramkumar Jayaseelan,Temperature Aware Scheduling for Embedded Processors.,2009,5,J. Low Power Electronics,3,db/journals/jolpe/jolpe5.html#JayaseelanM09,https://doi.org/10.1166/jolpe.2009.1036 +Yaseer Arafat Durrani,High-Level Power Analysis for Intellectual Property-Based Digital Systems.,2013,9,J. Low Power Electronics,4,db/journals/jolpe/jolpe9.html#DurraniR13,https://doi.org/10.1166/jolpe.2013.1283 +Alex Bystrov,Selected Peer-Reviewed Articles from the LPonTR 2008 Workshop.,2008,4,J. Low Power Electronics,3,db/journals/jolpe/jolpe4.html#BystrovT08,https://doi.org/10.1166/jolpe.2008.176a +Yang Xu,A Novel Low Energy Scheduling Algorithm for Clustered Very Long Instruction Word Architectures.,2009,5,J. Low Power Electronics,2,db/journals/jolpe/jolpe5.html#XuHS09,https://doi.org/10.1166/jolpe.2009.1014 +Joachim Fenkes,Efficiency of Low Power Circuit Techniques in a 65 nm SOI-Process.,2007,3,J. Low Power Electronics,1,db/journals/jolpe/jolpe3.html#FenkesGL07,https://doi.org/10.1166/jolpe.2007.113 +Surendra S. Rathod,Robust Double Gate FinFET Based Sense Amplifier Design Using Independent Gate Control.,2010,6,J. Low Power Electronics,4,db/journals/jolpe/jolpe6.html#RathodSD10,https://doi.org/10.1166/jolpe.2010.1102 +Mohamad Al Kadi Jazairli,A 65 nm CMOS Ultra-Low-Power Impulse Radio-Ultra-Wideband Emitter for Short-Range Indoor Localization.,2015,11,J. Low Power Electronics,3,db/journals/jolpe/jolpe11.html#JazairliF15,https://doi.org/10.1166/jolpe.2015.1393 +Vyasa Sai,Implementation of an Asynchronous Low-Power Small-Area Passive Radio Frequency Identification Design Using Synchronous Tools for Automation Applications.,2012,8,J. Low Power Electronics,4,db/journals/jolpe/jolpe8.html#SaiOM12a,https://doi.org/10.1166/jolpe.2012.1211 +K. Swaminathan,High Speed Low Power Ping Pong Buffering Based Network Interface for Network on Chip.,2013,9,J. Low Power Electronics,3,db/journals/jolpe/jolpe9.html#SwaminathanLK13,https://doi.org/10.1166/jolpe.2013.1265 +Rama Kumar Pasumarthi,Thermal-Safe Dynamic Test Scheduling Method Using On-Chip Temperature Sensors for 3D MPSoCs.,2012,8,J. Low Power Electronics,5,db/journals/jolpe/jolpe8.html#PasumarthiDVPK12,https://doi.org/10.1166/jolpe.2012.1226 +Gregorio Boccalero,Efficiency Issues for a Wind-Driven Energy Harvesting Device.,2018,14,J. Low Power Electronics,1,db/journals/jolpe/jolpe14.html#BoccaleroBMC18,https://doi.org/10.1166/jolpe.2018.1534 +Christina Gimmler-Dumont,Cross-Layer Error Resilience and Its Application to Wireless Communication Systems.,2013,9,J. Low Power Electronics,1,db/journals/jolpe/jolpe9.html#Gimmler-DumontMW13,https://doi.org/10.1166/jolpe.2013.1247 +Sheng-Lyang Jang,Radio-Frequency Performance Degradation in CMOS Divide-by-3 Injection-Locked Frequency Divider Due to Hot Carrier Effects.,2013,9,J. Low Power Electronics,4,db/journals/jolpe/jolpe9.html#JangH13,https://doi.org/10.1166/jolpe.2013.1278 +Mridula Allani,Energy-Efficient Dual-Voltage Design Using Topological Constraints.,2013,9,J. Low Power Electronics,3,db/journals/jolpe/jolpe9.html#AllaniA13,https://doi.org/10.1166/jolpe.2013.1269 +Yang Xu,Energy Consumption Optimized Scheduling Algorithm for Clustered VLIW Architectures.,2012,8,J. Low Power Electronics,2,db/journals/jolpe/jolpe8.html#XuHT12,https://doi.org/10.1166/jolpe.2012.1180 +Thomas Schweizer,Charge Recycling in Voltage-Dithered Circuits.,2010,6,J. Low Power Electronics,2,db/journals/jolpe/jolpe6.html#SchweizerFKR10,https://doi.org/10.1166/jolpe.2010.1082 +Saman Khoshbakht,Leakage-Aware Speculative Branch Target Buffer.,2012,8,J. Low Power Electronics,5,db/journals/jolpe/jolpe8.html#KhoshbakhtB12,https://doi.org/10.1166/jolpe.2012.1218 +Ka-Ming Keung,State Space Reconfigurability: A Low Energy Implementation Architecture for Self Modifying Finite Automata.,2010,6,J. Low Power Electronics,1,db/journals/jolpe/jolpe6.html#KeungT10,https://doi.org/10.1166/jolpe.2010.1053 +Andrew Bailey,Multi-Threshold Asynchronous Circuit Design for Ultra-Low Power.,2008,4,J. Low Power Electronics,3,db/journals/jolpe/jolpe4.html#BaileyZFDS08,https://doi.org/10.1166/jolpe.2008.181 +Gayathri Ananthanarayanan,Task Assignment Algorithms for Multicore Platforms with Process Variations.,2018,14,J. Low Power Electronics,2,db/journals/jolpe/jolpe14.html#Ananthanarayanan18,https://doi.org/10.1166/jolpe.2018.1550 +Azhar Ul-Haq,Hybrid Fuel Cell Power System for Electric Vehicles Application.,2014,10,J. Low Power Electronics,1,db/journals/jolpe/jolpe10.html#Ul-HaqCS14,https://doi.org/10.1166/jolpe.2014.1296 +Akshit Dayal,Robust SRAM Design via Joint Sizing and Voltage Optimization Under Dynamic Stability Constraints.,2010,6,J. Low Power Electronics,1,db/journals/jolpe/jolpe6.html#DayalLH10,https://doi.org/10.1166/jolpe.2010.1057 +Sohan Purohit,Design Space Exploration of Split-Path Data Driven Dynamic Full Adder.,2010,6,J. Low Power Electronics,4,db/journals/jolpe/jolpe6.html#PurohitLM10,https://doi.org/10.1166/jolpe.2010.1096 +Satendra Kumar Maurya,A Specialized Static Content Addressable Memory for Longest Prefix Matching in Internet Protocol Routing.,2011,7,J. Low Power Electronics,3,db/journals/jolpe/jolpe7.html#MauryaC11,https://doi.org/10.1166/jolpe.2011.1142 +Shasanka Sekhar Rout,Design of Cascode Mixer Based on Bulk Injection and Switched Biasing Techniques in 180 nm CMOS Process for a High Performance Receiver Front End.,2018,14,J. Low Power Electronics,1,db/journals/jolpe/jolpe14.html#RoutMS18,https://doi.org/10.1166/jolpe.2018.1527 +Freddy Forero,Improvement of Negative Bias Temperature Instability Circuit Reliability and Power Consumption Using Dual Supply Voltage.,2016,12,J. Low Power Electronics,4,db/journals/jolpe/jolpe12.html#ForeroGC16,https://doi.org/10.1166/jolpe.2016.1457 +Peyman Pouyan,Resistive Random Access Memory Variability and Its Mitigation Schemes.,2017,13,J. Low Power Electronics,1,db/journals/jolpe/jolpe13.html#PouyanAHR17,https://doi.org/10.1166/jolpe.2017.1464 +Liang Men,Asynchronous Parallel Platforms with Balanced Performance and Energy.,2014,10,J. Low Power Electronics,4,db/journals/jolpe/jolpe10.html#MenD14,https://doi.org/10.1166/jolpe.2014.1350 +Sarvesh H. Kulkarni,Power Distribution Techniques for Dual VDD Circuits.,2006,2,J. Low Power Electronics,2,db/journals/jolpe/jolpe2.html#KulkarniS06,https://doi.org/10.1166/jolpe.2006.068 +Neel Gala,Best is the Enemy of Good: Design Techniques for Low Power Tunable Approximate Application Specific Integrated Chips Targeting Media-Based Applications.,2015,11,J. Low Power Electronics,2,db/journals/jolpe/jolpe11.html#GalaDVK15,https://doi.org/10.1166/jolpe.2015.1377 +Michael Paynter,Design and Implementation of Low-Power Bloom Filters for Deep Packet Inspection.,2008,4,J. Low Power Electronics,3,db/journals/jolpe/jolpe4.html#PaynterK08,https://doi.org/10.1166/jolpe.2008.178 +Pierre-Antoine Haddad,Design of an Ultra-Low-Power Multi-Stage AC/DC Voltage Rectifier and Multiplier Using a Fully-Automated and Portable Design Methodology.,2012,8,J. Low Power Electronics,2,db/journals/jolpe/jolpe8.html#HaddadGF12,https://doi.org/10.1166/jolpe.2012.1184 +Yuvaneet Bhaker,Simulation of 2 Bit by 2 Bit Binary Multiplier Using Magnetic Tunnel Junction Device.,2014,10,J. Low Power Electronics,4,db/journals/jolpe/jolpe10.html#BhakerSG14,https://doi.org/10.1166/jolpe.2014.1358 +Bahniman Ghosh,Ultrathin Compound Semiconductor in Bulk Planar Junctionless Transistor for High-Performance Nanoscale Transistors.,2013,9,J. Low Power Electronics,4,db/journals/jolpe/jolpe9.html#GhoshKTA13,https://doi.org/10.1166/jolpe.2013.1280 +Vyasa Sai,Low-Power Data Driven Symbol Decoder for a UHF Passive RFID Tag.,2012,8,J. Low Power Electronics,1,db/journals/jolpe/jolpe8.html#SaiOM12,https://doi.org/10.1166/jolpe.2012.1169 +Anna Richelli,A Review of DC/DC Converters for Ultra Low Voltage Energy Harvesting.,2016,12,J. Low Power Electronics,2,db/journals/jolpe/jolpe12.html#RichelliCK16,https://doi.org/10.1166/jolpe.2016.1427 +Xiang Wu,An Ultra-Low Power CMOS Temperature Sensor for Passive RFID Application.,2015,11,J. Low Power Electronics,4,db/journals/jolpe/jolpe11.html#WuDHL15,https://doi.org/10.1166/jolpe.2015.1409 +Maurice Meijer,Ultra-Low-Power Digital Design with Body Biasing for Low Area and Performance-Efficient Operation.,2010,6,J. Low Power Electronics,4,db/journals/jolpe/jolpe6.html#MeijerGK10,https://doi.org/10.1166/jolpe.2010.1101 +Kaushik Bhattacharyya,Improvement of Performance of Dynamically Reconfigurable Switched Capacitor Based Non-Overlap Rotational Time Interleaved Embedded DC-DC Converter.,2012,8,J. Low Power Electronics,2,db/journals/jolpe/jolpe8.html#BhattacharyyaM12,https://doi.org/10.1166/jolpe.2012.1186 +João Luiz Dallamuta Lopes,Soft-Switched High Step-Up Converter for Low Voltage Sustainable Energy Systems.,2017,13,J. Low Power Electronics,1,db/journals/jolpe/jolpe13.html#LopesB17,https://doi.org/10.1166/jolpe.2017.1468 +Bin Zhang,Energy Saving Mechanism Based on 4-Mode Dynamic Bandwidth Optimization for Software Defined Distribution Optical Networks.,2016,12,J. Low Power Electronics,3,db/journals/jolpe/jolpe12.html#ZhangXCYZ16,https://doi.org/10.1166/jolpe.2016.1443 +H. Pooya Forghani-zadeh,Low-Power CMOS Ramp Generator Circuit for DC-DC Converters.,2006,2,J. Low Power Electronics,3,db/journals/jolpe/jolpe2.html#Forghani-zadehR06,https://doi.org/10.1166/jolpe.2006.084 +Weixun Wang,Dynamic Reconfiguration of Two-Level Cache Hierarchy in Real-Time Embedded Systems.,2011,7,J. Low Power Electronics,1,db/journals/jolpe/jolpe7.html#WangM11,https://doi.org/10.1166/jolpe.2011.1113 +Bahniman Ghosh,A Novel Approach of Full Adder and Arithmetic Logic Unit Design in Quantum Dot Cellular Automata.,2013,9,J. Low Power Electronics,4,db/journals/jolpe/jolpe9.html#GhoshSS13,https://doi.org/10.1166/jolpe.2013.1285 +Jin-Fa Lin,Low Power SR-Latch Based Flip-Flop Design Using 21 Transistors.,2016,12,J. Low Power Electronics,2,db/journals/jolpe/jolpe12.html#LinTLJC16,https://doi.org/10.1166/jolpe.2016.1433 +V. S. Kanchana Bhaaskaran,Differential Cascode Adiabatic Logic Structure for Low Power.,2008,4,J. Low Power Electronics,2,db/journals/jolpe/jolpe4.html#BhaaskaranR08,https://doi.org/10.1166/jolpe.2008.264 +Mahadevan Gomathisankaran,WARM SRAM: A Novel Scheme to Reduce Static Leakage Energy in SRAM Arrays.,2006,2,J. Low Power Electronics,3,db/journals/jolpe/jolpe2.html#GomathisankaranT06,https://doi.org/10.1166/jolpe.2006.091 +Guiomar Evans,Low-Voltage Low-Power Broadband CMOS Analogue Circuit for White Gaussian Noise Generation.,2006,2,J. Low Power Electronics,2,db/journals/jolpe/jolpe2.html#EvansGP06,https://doi.org/10.1166/jolpe.2006.064 +Amaravati Anvesha,A Versatile High Swing Current Mode Instrumentation Amplifier with an Integrated Band-Pass Filter for Bio-Potential Signal Acquisition.,2013,9,J. Low Power Electronics,4,db/journals/jolpe/jolpe9.html#AnveshaB13a,https://doi.org/10.1166/jolpe.2013.1287 +C. P. Ravikumar,Smart and Fault-Tolerant LED-Based Street Lamps.,2016,12,J. Low Power Electronics,3,db/journals/jolpe/jolpe12.html#Ravikumar16,https://doi.org/10.1166/jolpe.2016.1438 +Arindam Mallik,Low Power Correlating Caches for Network Processors.,2005,1,J. Low Power Electronics,2,db/journals/jolpe/jolpe1.html#MallikM05,https://doi.org/10.1166/jolpe.2005.032 +Lars Svensson,Selected Peer-Reviewed Articles from the PATMOS 2008 Workshop.,2009,5,J. Low Power Electronics,1,db/journals/jolpe/jolpe5.html#Svensson09,https://doi.org/10.1166/jolpe.2009.1013 +Adrien Morel,Dielectric Losses Considerations for Piezoelectric Energy Harvesting.,2018,14,J. Low Power Electronics,2,db/journals/jolpe/jolpe14.html#MorelPWB18,https://doi.org/10.1166/jolpe.2018.1562 +Bhanu Kapoor,Power Management Design and Verification.,2011,7,J. Low Power Electronics,1,db/journals/jolpe/jolpe7.html#KapoorV11,https://doi.org/10.1166/jolpe.2011.1115 +Robert Wille,An Automated Approach for Generating and Checking Control Logic for Reversible Hardware Description Language-Based Designs.,2017,13,J. Low Power Electronics,4,db/journals/jolpe/jolpe13.html#WilleKOTD17,https://doi.org/10.1166/jolpe.2017.1515 +Athanasios Kakarountas,Power Management Through Dynamic Frequency Scaling for Low and Medium Bit-Rate Digital Receivers.,2006,2,J. Low Power Electronics,3,db/journals/jolpe/jolpe2.html#KakarountasZTMS06,https://doi.org/10.1166/jolpe.2006.083 +Angelo Monteiro,Noise Minimization for Low Power Bandgap Reference and Low Dropout Regulator Cores.,2009,5,J. Low Power Electronics,2,db/journals/jolpe/jolpe5.html#MonteiroSND09,https://doi.org/10.1166/jolpe.2009.1021 +Sohaib Majzoub,Instruction-Based Voltage Scaling for Power Reduction in SIMD MPSoCs.,2011,7,J. Low Power Electronics,2,db/journals/jolpe/jolpe7.html#Majzoub11,https://doi.org/10.1166/jolpe.2011.1123 +Alexandre Boyer,Effect of Aging on Power Integrity and Conducted Emission of Digital Integrated Circuits.,2014,10,J. Low Power Electronics,1,db/journals/jolpe/jolpe10.html#BoyerD14,https://doi.org/10.1166/jolpe.2014.1307 +Steve Ngueya W.,An Ultra-Low Power and High Performance Single Ended Sense Amplifier for Low Voltage Flash Memories.,2018,14,J. Low Power Electronics,1,db/journals/jolpe/jolpe14.html#WPAMR18,https://doi.org/10.1166/jolpe.2018.1543 +Chikku Abraham,A Multiple Input Variable Output Switched Capacitor DC-DC Converter for Harnessing Renewable Energy and Powering LEDs.,2015,11,J. Low Power Electronics,3,db/journals/jolpe/jolpe11.html#AbrahamJM15,https://doi.org/10.1166/jolpe.2015.1392 +Rahul Shrestha,VLSI Design and Hardware Implementation of High-Speed Energy-Efficient Logarithmic-MAP Decoder.,2015,11,J. Low Power Electronics,3,db/journals/jolpe/jolpe11.html#ShresthaP15,https://doi.org/10.1166/jolpe.2015.1391 +Christopher B. Harris,Towards the Simulation Based Design and Validation of Mobile Robotic Cyber-Physical Systems.,2018,14,J. Low Power Electronics,1,db/journals/jolpe/jolpe14.html#HarrisB18,https://doi.org/10.1166/jolpe.2018.1540 +B. P. Harish,Hybrid-CV Modeling for Estimating the Variability in Dynamic Power.,2008,4,J. Low Power Electronics,3,db/journals/jolpe/jolpe4.html#HarishBP08,https://doi.org/10.1166/jolpe.2008.177 +Hailong Jiao,Low-Leakage and Compact Registers with Easy-Sleep Mode.,2010,6,J. Low Power Electronics,2,db/journals/jolpe/jolpe6.html#JiaoK10,https://doi.org/10.1166/jolpe.2010.1080 +Michal Lid'ák,A New Automated Power-Estimation Method for SystemC Hardware Design.,2017,13,J. Low Power Electronics,4,db/journals/jolpe/jolpe13.html#LidakM17,https://doi.org/10.1166/jolpe.2017.1520 +Amir-Mohammad Rahmani,A Novel Synthetic Traffic Pattern for Power/Performance Analysis of Network-on-Chips Using Negative Exponential Distribution.,2009,5,J. Low Power Electronics,3,db/journals/jolpe/jolpe5.html#RahmaniAP09,https://doi.org/10.1166/jolpe.2009.1039 +Jie Lin,A 12-Bit Ultra-Low Voltage Noise Shaping Successive-Approximation Register Analogto-Digital Converter Using Emerging TFETs.,2017,13,J. Low Power Electronics,3,db/journals/jolpe/jolpe13.html#LinY17,https://doi.org/10.1166/jolpe.2017.1503 +Fernando Castro,A Load-Store Queue Design Based on Predictive State Filtering.,2006,2,J. Low Power Electronics,1,db/journals/jolpe/jolpe2.html#CastroCPPHT06,https://doi.org/10.1166/jolpe.2006.004 +Cristiano Forzan,Power Supply Selective Mapping for Accurate Timing Analysis.,2006,2,J. Low Power Electronics,1,db/journals/jolpe/jolpe2.html#ForzanPG06,https://doi.org/10.1166/jolpe.2006.012 +K. Najeeb,Temporal Redundancy Based Encoding Technique for Peak Power and Delay Reduction of On-Chip Buses.,2006,2,J. Low Power Electronics,3,db/journals/jolpe/jolpe2.html#NajeebGKM06,https://doi.org/10.1166/jolpe.2006.099 +Mayank Chhablani,Online Inertia-Based Temperature Estimation for Reliability Enhancement.,2016,12,J. Low Power Electronics,3,db/journals/jolpe/jolpe12.html#ChhablaniKK16,https://doi.org/10.1166/jolpe.2016.1444 +Pooran Singh,Dynamic Feedback Controlled Static Random Access Memory for Low Power Applications.,2017,13,J. Low Power Electronics,1,db/journals/jolpe/jolpe13.html#SinghRVSV17,https://doi.org/10.1166/jolpe.2017.1470 +Deming Chen,An Optimal Resource Binding Algorithm with Inter-Transition Switching Activities for Low Power.,2009,5,J. Low Power Electronics,4,db/journals/jolpe/jolpe5.html#ChenC09,https://doi.org/10.1166/jolpe.2009.1044 +Stéphane Burignat,Energy Consumption by Reversible ircuits in the 130 nm and 65 nm Nodes.,2014,10,J. Low Power Electronics,3,db/journals/jolpe/jolpe10.html#BurignatV14,https://doi.org/10.1166/jolpe.2014.1329 +Sudip Roy 0001,An Optimal Two-Mixer Dilution Engine with Digital Microfluidics for Low-Power Applications.,2014,10,J. Low Power Electronics,3,db/journals/jolpe/jolpe10.html#RoyBGC14,https://doi.org/10.1166/jolpe.2014.1335 +Reza Chavoshisani,Low Power Current Conveyor Based Continuous Time Sigma Delta Modulator.,2017,13,J. Low Power Electronics,2,db/journals/jolpe/jolpe13.html#ChavoshisaniH17,https://doi.org/10.1166/jolpe.2017.1481 +Binu P. John,Impact of Operating System Behavior on Battery Life.,2010,6,J. Low Power Electronics,1,db/journals/jolpe/jolpe6.html#JohnASJ10,https://doi.org/10.1166/jolpe.2010.1052 +Shibaji Banerjee,An Optimal Leakage-Aware Approach for Nano-CMOS Post-Physical-Optimization.,2017,13,J. Low Power Electronics,4,db/journals/jolpe/jolpe13.html#BanerjeeM17,https://doi.org/10.1166/jolpe.2017.1518 +B. Chitti Babu,Implementation of Smart Battery Charger with Low Power Photo-Voltaic Energy System Using Synchronous Buck Converter.,2012,8,J. Low Power Electronics,3,db/journals/jolpe/jolpe8.html#BabuSK12,https://doi.org/10.1166/jolpe.2012.1192 +K. P. Pradhan,Design Equivalent Scaling on Double Gate FinFET Towards Analog and RF Figures of Merits: A Technology Computer Aided Design Estimation.,2015,11,J. Low Power Electronics,3,db/journals/jolpe/jolpe11.html#PradhanMS15,https://doi.org/10.1166/jolpe.2015.1396 +Radu Zlatanovici,Power - Performance Optimization for Custom Digital Circuits.,2006,2,J. Low Power Electronics,1,db/journals/jolpe/jolpe2.html#ZlatanoviciN06,https://doi.org/10.1166/jolpe.2006.013 +P. Karuppanan,A Fully Differential Operational Amplifier with Slew Rate Enhancer and Adaptive Bias for Ultra Low Power.,2017,13,J. Low Power Electronics,1,db/journals/jolpe/jolpe13.html#KaruppananGKB17,https://doi.org/10.1166/jolpe.2017.1467 +Laurent Bousquet,Inclusion of Power Consumption Information in High-Level Modeling of Linear Analog Blocks.,2011,7,J. Low Power Electronics,4,db/journals/jolpe/jolpe7.html#BousquetCS11,https://doi.org/10.1166/jolpe.2011.1156 +Alejandro Millán,Comprehensive Analysis on the Internal Power Dissipation of Static CMOS Cells in Ultra-Deep Sub-Micron Technologies.,2010,6,J. Low Power Electronics,1,db/journals/jolpe/jolpe6.html#MillanBJGRV10,https://doi.org/10.1166/jolpe.2010.1059 +Shalini Ghosh,Selecting Error Correcting Codes to Minimize Power in Memory Checker Circuits.,2005,1,J. Low Power Electronics,1,db/journals/jolpe/jolpe1.html#GhoshBT05,https://doi.org/10.1166/jolpe.2005.007 +Priti Aghera,Energy Management in Wireless Mobile Systems Using Dynamic Task Assignment.,2013,9,J. Low Power Electronics,2,db/journals/jolpe/jolpe9.html#AgheraYZKCR13,https://doi.org/10.1166/jolpe.2013.1256 +Patrick Girard,A Special Section on Low Power Electronics: A Compilation of Emerging Ideas and Efficient Solutions.,2018,14,J. Low Power Electronics,2,db/journals/jolpe/jolpe14.html#Girard18,https://doi.org/10.1166/jolpe.2018.1565 +Tapas Kumar Kundu,Analyzing and Improving Performance and Energy Efficiency of Android.,2011,7,J. Low Power Electronics,4,db/journals/jolpe/jolpe7.html#KunduP11,https://doi.org/10.1166/jolpe.2011.1158 +Yangdong Deng,Temperature-Aware Floorplanning of 3-D ICs Considering Thermally Dependent Leakage Power.,2006,2,J. Low Power Electronics,2,db/journals/jolpe/jolpe2.html#DengL06,https://doi.org/10.1166/jolpe.2006.072 +Kiran K. Chaddha,Design and Analysis of a Modified Low Power CMOS Full Adder Using Gate-Diffusion Input Technique.,2010,6,J. Low Power Electronics,4,db/journals/jolpe/jolpe6.html#ChaddhaC10,https://doi.org/10.1166/jolpe.2010.1097 +Umakanta Nanda,Low Noise and Fast Locking Phase Locked Loop Using a Variable Delay Element in the Phase Frequency Detector.,2014,10,J. Low Power Electronics,1,db/journals/jolpe/jolpe10.html#NandaAP14,https://doi.org/10.1166/jolpe.2014.1294 +Vinod Viswanath,Dedicated Rewriting: Automatic Verification of Low Power Transformations in Register Transfer Level.,2009,5,J. Low Power Electronics,3,db/journals/jolpe/jolpe5.html#ViswanathVA09,https://doi.org/10.1166/jolpe.2009.1034 +Rashmi Mehrotra,Timing-Driven Power Optimisation and Power-Driven Timing Optimisation of Combinational Circuits.,2011,7,J. Low Power Electronics,3,db/journals/jolpe/jolpe7.html#MehrotraESHP11,https://doi.org/10.1166/jolpe.2011.1149 +Kimish Patel,Energy-Efficient Value Based Selective Refresh for Embedded DRAMS.,2006,2,J. Low Power Electronics,1,db/journals/jolpe/jolpe2.html#PatelMPB06,https://doi.org/10.1166/jolpe.2006.008 +Simon Sheung Yan Ng,An Asynchronous Sigma Delta Analog to Digital Converter for Broadband Wireless Receiver with Adaptive Digital Filtering Technique.,2009,5,J. Low Power Electronics,4,db/journals/jolpe/jolpe5.html#NgB09,https://doi.org/10.1166/jolpe.2009.1049 +Sumit Ahuja,Power Aware High Level Synthesis of Hardware Coprocessors.,2010,6,J. Low Power Electronics,3,db/journals/jolpe/jolpe6.html#AhujaZLS10,https://doi.org/10.1166/jolpe.2010.1092 +J. Mazurier,Ultra-Thin Body and Buried Oxide (UTBB) FDSOI Technology with Low Variability and Power Management Capability for 22 nm Node and Below.,2012,8,J. Low Power Electronics,1,db/journals/jolpe/jolpe8.html#MazurierWATTANBFP12,https://doi.org/10.1166/jolpe.2012.1173 +Jangam Siva Chandra,Clocking Scheme Implementation for Multi-Layered Quantum Dot Cellular Automata Design.,2014,10,J. Low Power Electronics,2,db/journals/jolpe/jolpe10.html#ChandraSG14,https://doi.org/10.1166/jolpe.2014.1314 +Hassan Salmani,Layout-Aware Pattern Evaluation and Analysis for Power-Safe Application of Transition Delay Fault Patterns.,2012,8,J. Low Power Electronics,2,db/journals/jolpe/jolpe8.html#SalmaniZTCGW12,https://doi.org/10.1166/jolpe.2012.1188 +Maher Assaad,Design and Characterization of Low Power and Low Noise Truly All-Digital Clock and Data Recovery Circuit for SERDES Devices.,2013,9,J. Low Power Electronics,1,db/journals/jolpe/jolpe9.html#AssaadAB13,https://doi.org/10.1166/jolpe.2013.1241 +Peng Rong,A Markovian Decision-Based Approach for Extending the Lifetime of a Network of Battery-Powered Mobile Devices by Remote Processing.,2010,6,J. Low Power Electronics,2,db/journals/jolpe/jolpe6.html#RongP10,https://doi.org/10.1166/jolpe.2010.1078 +Amir Zjajo,Power-Efficiency of Signal Processing Circuits in Implantable Multichannel Brain-Machine Interface.,2016,12,J. Low Power Electronics,4,db/journals/jolpe/jolpe12.html#Zjajo16,https://doi.org/10.1166/jolpe.2016.1449 +Tezaswi Raja,Transistor Sizing of Logic Gates to Maximize Input Delay Variability.,2006,2,J. Low Power Electronics,1,db/journals/jolpe/jolpe2.html#RajaAB06,https://doi.org/10.1166/jolpe.2006.014 +Ge Chen,Low Energy Bus Design with Error Tolerant Coding.,2017,13,J. Low Power Electronics,2,db/journals/jolpe/jolpe13.html#ChenN17,https://doi.org/10.1166/jolpe.2017.1477 +Arun Kant Sharma,Read and Write Analysis for Balanced Pattern Memristor Crossbar Array.,2014,10,J. Low Power Electronics,1,db/journals/jolpe/jolpe10.html#SharmaASG14,https://doi.org/10.1166/jolpe.2014.1298 +George Kurian,Test Power Reduction Using Integrated Scan Cell and Test Vector Reordering Techniques on Linear Scan and Double Tree Scan Architectures.,2009,5,J. Low Power Electronics,1,db/journals/jolpe/jolpe5.html#KurianRPKR09,https://doi.org/10.1166/jolpe.2009.1001 +Sanjiv Gossain,Objects Mature ... into Components.,1998,11,JOOP,5,db/journals/joop/joop11.html#Gossain98, +Edward F. Gehringer,OOA/OOD/OOP: Waht Programmers and Managers Believe we Schould Teach.,1996,9,JOOP,6,db/journals/joop/joop9.html#GehringerM96, +Satish Subramanian,Hierarchical Data Flow Analysis for O-O Programs.,1994,7,JOOP,2,db/journals/joop/joop7.html#SubramanianTK94, +Wen-Tsung Chang,Supporting Distributed Objects in FIFO-Based Message-Passing Systems.,1995,7,JOOP,9,db/journals/joop/joop7.html#ChangT95, +Clive Lee,The Need for Flexibility in Object-Oriented Training.,1994,7,JOOP,1,db/journals/joop/joop7.html#Lee94, +Andrew Koenig,Libraries in Everyday Use.,1994,7,JOOP,2,db/journals/joop/joop7.html#Koenig94a, +Andrew Koenig,Is Abstraction Good?,1998,11,JOOP,2,db/journals/joop/joop11.html#Koenig98c, +Ian Mitchell,On an Improved Approach to the Elicitation of O-O State Machines by Use-Case.,1997,9,JOOP,9,db/journals/joop/joop9.html#MitchellL97, +David M. Papurt,The Sensible Use of Method Overriding: Satisfying Pre- and Postcondition Constraints.,1997,10,JOOP,7,db/journals/joop/joop10.html#Papurt97, +Michael Le Feuvre,Designing a Persistence Object Model from Patterns.,1998,11,JOOP,1,db/journals/joop/joop11.html#Feuvre98, +John D. McGregor,A Component Testing Method.,1997,10,JOOP,3,db/journals/joop/joop10.html#McGregor97d, +Wen-Tsung Chang,Clustering Approach to Grouping Objects in Message-Passing Systems.,1995,8,JOOP,6,db/journals/joop/joop8.html#ChangT95a, +Robert Howard,More About the Eiffel Library Kernel Standard.,1996,8,JOOP,8,db/journals/joop/joop8.html#Howard96, +Richard Riehle,The Age of Interoperability.,1997,10,JOOP,3,db/journals/joop/joop10.html#Riehle97a, +Franco Civello,Rooted Class Diagrams: A Notation for Context-Independent Models.,1998,11,JOOP,2,db/journals/joop/joop11.html#Civello98, +James E. Rumbaugh,A Search for Values: Attributes and Associations.,1996,9,JOOP,3,db/journals/joop/joop9.html#Rumbaugh96d, +John D. McGregor,Let's Don't and Say We Did.,1998,11,JOOP,5,db/journals/joop/joop11.html#McGregor98e, +Günther Blaschek,Recursion in Object-Oriented Programs.,1998,11,JOOP,7,db/journals/joop/joop11.html#BlaschekF98, +James C. McKim,Programming by Contract: Designing for Correctness.,1996,9,JOOP,2,db/journals/joop/joop9.html#McKim96, +Andrew Koenig,Teaching Standard C++.,1998,11,JOOP,7,db/journals/joop/joop11.html#KoenigM98, +Richard Riehle,Stringing along with Ada 95.,1996,9,JOOP,2,db/journals/joop/joop9.html#Riehle96b, +Bertrand Meyer 0001,The Component Combinator for Enterprise Applications.,1998,10,JOOP,8,db/journals/joop/joop10.html#Meyer98, +Winnie W. Y. Pun,Using OOA/D Methods for O-O and KBS Development Environments.,1995,8,JOOP,5,db/journals/joop/joop8.html#Pun95, +Jens Kaasbøll,Object-Oriented Models of Functionally Integrated Computer Systems.,1995,7,JOOP,8,db/journals/joop/joop7.html#Kaasboll95, +Wilf R. LaLonde,Skip Lists for Smalltalk.,1998,11,JOOP,4,db/journals/joop/joop11.html#LaLondeP98e, +Gary Brown,Building Reusable Classes for Frameworks.,1996,9,JOOP,7,db/journals/joop/joop9.html#BrownF96, +Robert Howard,Eiffel goes Concurrent.,1996,9,JOOP,5,db/journals/joop/joop9.html#Howard96a, +Andrew Koenig,Polymorphic Reflections.,1995,7,JOOP,9,db/journals/joop/joop7.html#Koenig95a, +John Q. Zhang,Financial Software Design Patterns.,1996,8,JOOP,9,db/journals/joop/joop8.html#ZhangS96a, +David Welch,An Exception-Based Assertion Mechanism for C++.,1998,11,JOOP,4,db/journals/joop/joop11.html#WelchS98, +John J. Shilling,How to Roll your own Persistent Objects in C++.,1994,7,JOOP,4,db/journals/joop/joop7.html#Shilling94, +Bertrand Meyer 0001,The Power of Round-Trip Engineering.,1998,11,JOOP,6,db/journals/joop/joop11.html#Meyer98b, +Becky Winant,Solving Object State Model Mysteries Using a Key Event Dictionary.,1997,10,JOOP,1,db/journals/joop/joop10.html#WinantF97, +Kenneth S. Rubin,The Future of Objects.,1997,10,JOOP,4,db/journals/joop/joop10.html#Rubin97, +James Odell,User Workshop Techniques.,1996,9,JOOP,4,db/journals/joop/joop9.html#Odell96, +Elizabeth A. Kendall,The Application of Object-Oriented Analysis to Agent-Based Systems.,1997,9,JOOP,9,db/journals/joop/joop9.html#KendallMJ97, +Wilf R. LaLonde,Light-Intensity Experiments.,1998,11,JOOP,6,db/journals/joop/joop11.html#LaLondeP98g, +Conrad Bock,A More Complete Model of Relations and Their Implementation.,1997,10,JOOP,3,db/journals/joop/joop10.html#BockO97, +Miguel Mateo Carmona,Smart Compiling for Eiffel.,1998,11,JOOP,2,db/journals/joop/joop11.html#CarmonaMA98, +Shouhong Wang,Identifying Inheritance Structure in Object-Oriented Systems Analysis: A Pattern Matching Approach.,1994,7,JOOP,2,db/journals/joop/joop7.html#WangA94, +Ivar Jacobson,Formalizing Use-Case Modeling.,1995,8,JOOP,3,db/journals/joop/joop8.html#Jacobson95, +Wilf R. LaLonde,Building a Log Book in VisualAge.,1995,8,JOOP,6,db/journals/joop/joop8.html#LaLondeP95f, +John D. McGregor,Building Tests from Specifications.,1998,10,JOOP,8,db/journals/joop/joop10.html#McGregor98, +Manuela Carrillo-Castellon,Design by Contract in Smalltalk.,1996,9,JOOP,7,db/journals/joop/joop9.html#Carrillo-CastellonGPR96, +Krishnamurthy Srinivasan,Comparison of Object-Oriented Programming Languages: The Enterprise Modeling Framework Perspective.,1994,7,JOOP,3,db/journals/joop/joop7.html#SrinivasanJ94, +Wilf R. LaLonde,Building a Listener Engine: A Smalltalk Interface to Speech Recognition.,1997,10,JOOP,7,db/journals/joop/joop10.html#LaLondeP97h, +Neil Hunt,C++ Boundary Conditions and Edge Cases.,1995,8,JOOP,2,db/journals/joop/joop8.html#Hunt95, +Desmond D'Souza,The Cost of Object Education.,1994,7,JOOP,3,db/journals/joop/joop7.html#DSouza94a, +Francisca Losavio,A Method for User-Interface Development.,1997,10,JOOP,5,db/journals/joop/joop10.html#LosavioM97a, +Byung Suk Lee,OODB Design with EER.,1996,9,JOOP,1,db/journals/joop/joop9.html#Lee96, +Donald Firesmith,Inheritance Guidelines.,1995,8,JOOP,2,db/journals/joop/joop8.html#Firesmith95a, +Jagdish Bansiya,A Class Cohesion Metric For Object-Oriented Designs.,1999,11,JOOP,8,db/journals/joop/joop11.html#BansiyaEDL99, +Alonso J. Peralta,It's Time for Full Life-Cycle Languages.,1998,10,JOOP,9,db/journals/joop/joop10.html#PeraltaBS98, +Desmond D'Souza,Frameworks in Java and Catalysis.,1997,10,JOOP,2,db/journals/joop/joop10.html#DSouza97b, +Murali Vemulapati,Incremental Loading in the Persistent C++ Language E.,1995,8,JOOP,4,db/journals/joop/joop8.html#VemulapatiSG95, +G. Rasmussen,An Object-Oriented Analysis and Design Notation for Distributed Systems.,1996,9,JOOP,6,db/journals/joop/joop9.html#RasmussenHL96a, +James E. Rumbaugh,Models for Design: Generating Code for Associations.,1996,8,JOOP,9,db/journals/joop/joop8.html#Rumbaugh96a, +Conrad Bock,A More Complete Model of Relations and Their Implementation: Mappings.,1997,10,JOOP,6,db/journals/joop/joop10.html#BockO97a, +Meilir Page-Jones,Education and Training for Real Object-Oriented Shops.,1994,7,JOOP,6,db/journals/joop/joop7.html#Page-Jones94, +Darius Blasband,The YAFL Programming Language.,1995,8,JOOP,7,db/journals/joop/joop8.html#Blasband95, +Matthew M. Huntbach,An Introduction to RGDC as a Concurrent Object-Oriented Language.,1995,8,JOOP,5,db/journals/joop/joop8.html#Huntbach95, +Brian Henderson-Sellers,OPEN Relationships - Compositions and Containments.,1997,10,JOOP,7,db/journals/joop/joop10.html#Henderson-Sellers97, +Wilf R. LaLonde,Internet/Intranet Applications.,1997,10,JOOP,2,db/journals/joop/joop10.html#LaLondeP97c, +James E. Rumbaugh,Building Boxes: Subsystems.,1994,7,JOOP,6,db/journals/joop/joop7.html#Rumbaugh94e, +Shekhar H. Kirani,Method Sequence Specification and Verification of Classes.,1994,7,JOOP,6,db/journals/joop/joop7.html#KiraniT94, +Andrew Koenig,C++ in the Classroom: A Look Forward.,1997,10,JOOP,1,db/journals/joop/joop10.html#Koenig97b, +Wilf R. LaLonde,Gathering Metric Information Using Metalevel Facilities.,1994,7,JOOP,1,db/journals/joop/joop7.html#LaLondeP94, +David Fleming,A Practical Performance Criterion for Object Interface Design.,1997,10,JOOP,4,db/journals/joop/joop10.html#FlemingSS97, +Charles Ashbacher,You are There.,1998,11,JOOP,5,db/journals/joop/joop11.html#Ashbacher98, +Mahesh H. Dodani,Object-Oriented Shock Therapy.,1996,9,JOOP,4,db/journals/joop/joop9.html#Dodani96a, +Richard Riehle,Reuse Through Generic Templates.,1995,8,JOOP,7,db/journals/joop/joop8.html#Riehle95b, +Sara Porat,Class Assertions in C++.,1995,8,JOOP,2,db/journals/joop/joop8.html#PoratF95, +James Odell,Approaches go Finite-State Machine Modeling.,1995,7,JOOP,8,db/journals/joop/joop7.html#Odell95, +Brian Henderson-Sellers,A Methodological Metamodel of Process.,1999,11,JOOP,9,db/journals/joop/joop11.html#Henderson-Sellers99, +Bertrand Meyer 0001,Ten Years After.,1997,10,JOOP,4,db/journals/joop/joop10.html#Meyer97, +Martin Schedlbauer,How to Select a Training Organization.,1997,10,JOOP,6,db/journals/joop/joop10.html#Schedlbauer97a, +Walid Al-Ahmad,Improving Support for Specialization Inheritance.,1999,11,JOOP,8,db/journals/joop/joop11.html#Al-AhmadS99, +Mike Frankel,Why Waste Time on Irrelevant Case Studies?,1995,8,JOOP,6,db/journals/joop/joop8.html#Frankel95, +Hans Albrecht Schmid,Patterns for Extending Black-Box Frameworks.,1998,11,JOOP,3,db/journals/joop/joop11.html#SchmidM98, +Andrew Koenig,C++ as a First Language.,1996,9,JOOP,3,db/journals/joop/joop9.html#Koenig96d, +Gary M. Weiss,Implementing Design Patterns with Object-Oriented Rules.,1998,11,JOOP,7,db/journals/joop/joop11.html#WeissR98, +Neil Hunt,Performance Testing C++ Code.,1996,8,JOOP,8,db/journals/joop/joop8.html#Hunt96, +Amnon H. Eden,Automating the Application of Design Patterns.,1997,10,JOOP,2,db/journals/joop/joop10.html#EdenGY97, +Stephen J. Mellor,...at Archetypes.,1994,7,JOOP,6,db/journals/joop/joop7.html#Mellor94, +Ted Foster,Cascade.,1999,11,JOOP,9,db/journals/joop/joop11.html#FosterZ99, +Wilf R. LaLonde,Returning Collections Confidently.,1997,10,JOOP,5,db/journals/joop/joop10.html#LaLondeP97f, +Wilf R. LaLonde,Extending the Programming Environment: A Get and Set Builder for the Browser.,1994,7,JOOP,2,db/journals/joop/joop7.html#LaLondeP94a, +Richard Riehle,The Software Circuit Breaker.,1998,11,JOOP,7,db/journals/joop/joop11.html#Riehle98b, +Desmond D'Souza,Working with OMT in the Construction of Large Systems.,1994,7,JOOP,1,db/journals/joop/joop7.html#DSouza94, +Deng-Jyi Chen,An Experimental Study of Using Reusable Software Design Frameworks to Achieve Software Reuse.,1994,7,JOOP,2,db/journals/joop/joop7.html#ChenC94, +David W. Flater,Generalized Message-Passing in a Virtual Reality Application.,1997,9,JOOP,9,db/journals/joop/joop9.html#Flater97, +Lewis J. Pinson,Moving from COBOL to C and C++: OOP's Biggest Challenge.,1994,7,JOOP,6,db/journals/joop/joop7.html#Pinson94, +Steve Cook,Software isn't the Real World.,1994,7,JOOP,2,db/journals/joop/joop7.html#CookD94, +Kelly E. Murray,Generalization and Specialization.,1997,10,JOOP,4,db/journals/joop/joop10.html#Murray97, +Donald Firesmith,Inheritance Diagrams: Which Way is up.,1994,7,JOOP,1,db/journals/joop/joop7.html#Firesmith94, +Andrew Koenig,"A ""++decade"" of C++.",1997,10,JOOP,4,db/journals/joop/joop10.html#Koenig97e, +Kumar V. Vadaparty,Programmer's Interface to Persistence_in_ODBMSs ObjectStore.,1996,9,JOOP,2,db/journals/joop/joop9.html#Vadaparty96a, +Richard P. Gabriel,Productivity: Is there a Silver Bullet?,1994,7,JOOP,1,db/journals/joop/joop7.html#Gabriel94, +Wilf R. LaLonde,Smalltalk on the World Wide Web.,1996,9,JOOP,4,db/journals/joop/joop9.html#LaLondeP96e, +Richard Riehle,Java Applets in Ada.,1998,11,JOOP,3,db/journals/joop/joop11.html#Riehle98a, +Robert S. Rist,Teaching Eiffel as a First Language.,1996,9,JOOP,1,db/journals/joop/joop9.html#Rist96, +Andrew Koenig,Generic Input Iterators.,1996,9,JOOP,1,db/journals/joop/joop9.html#Koenig96b, +Wilf R. LaLonde,Polymorphic Widget Controllers.,1996,9,JOOP,6,db/journals/joop/joop9.html#LaLondeP96g, +Richard Riehle,Dynamic Polymorphism.,1996,9,JOOP,3,db/journals/joop/joop9.html#Riehle96c, +Alistair Cockburn,Goals and Use Cases.,1997,10,JOOP,5,db/journals/joop/joop10.html#Cockburn97, +James E. Rumbaugh,To Form a More Perfect Union: Unifying the OMT and Booch Methods.,1996,8,JOOP,8,db/journals/joop/joop8.html#Rumbaugh96, +Andrew Koenig,A Quiet Revolution.,1998,10,JOOP,8,db/journals/joop/joop10.html#Koenig98, +Chung-Yeung Pang,System Modeling and Design with Objects and Patterns.,1996,9,JOOP,2,db/journals/joop/joop9.html#Pang96a, +Wilf R. LaLonde,Extending the VisualAge Log Book with a Reader/Writer Part.,1995,8,JOOP,7,db/journals/joop/joop8.html#LaLondeP95g, +Timo Salo,Scalable Object-Persistence Frameworks.,1998,11,JOOP,7,db/journals/joop/joop11.html#SaloHW98, +Brian Henderson-Sellers,COMMA: Sample Metamodels.,1996,9,JOOP,7,db/journals/joop/joop9.html#Henderson-SellersB96, +Richard Riehle,Simplifying Introductory Ada.,1998,10,JOOP,9,db/journals/joop/joop10.html#Riehle98, +Wilf R. LaLonde,Smart Bitmaps.,1999,11,JOOP,9,db/journals/joop/joop11.html#LaLonde99a, +Bhavani M. Thuraisingham,Towards the Design of a Multilevel Secure Object-Oriented Database Management System.,1995,8,JOOP,3,db/journals/joop/joop8.html#Thuraisingham95, +P. K. C. Pun,Incorporation and Implementation of Logical Objects in C++.,1997,10,JOOP,3,db/journals/joop/joop10.html#PunK97, +Desmond D'Souza,Types and Classes: A Language-Independent View.,1997,10,JOOP,1,db/journals/joop/joop10.html#DSouza97a, +Andrew Koenig,Compile-Time Type Computation.,1997,10,JOOP,7,db/journals/joop/joop10.html#Koenig97h, +Hendra Suwanda,Using C++ Class Templates.,1995,8,JOOP,2,db/journals/joop/joop8.html#SuwandaY95, +Joyce M. Kai,Object-Oriented Capabilities of Visual Basic.,1998,11,JOOP,6,db/journals/joop/joop11.html#KaiM98, +David M. Papurt,Additional Aspects of Generalization.,1996,9,JOOP,4,db/journals/joop/joop9.html#Papurt96, +Richard Riehle,Is there a Business Case?,1996,9,JOOP,4,db/journals/joop/joop9.html#Riehle96d, +Antero Taivalsaari,Classes Versus Prototypes: Some Philosophical and Historical Observations.,1997,10,JOOP,7,db/journals/joop/joop10.html#Taivalsaari97, +Donald Firesmith,Upgrading OML to Version 1.1: Referential Relationships.,1998,11,JOOP,3,db/journals/joop/joop11.html#FiresmithH98a, +Xavier Castellani,Development Process for the Creation and Reuse of Object-Oriented Generic Applications and Components.,1998,11,JOOP,3,db/journals/joop/joop11.html#CastellaniL98, +Franck Barbier,The Executability of Object-Oriented Finite State Machines.,1998,11,JOOP,4,db/journals/joop/joop11.html#BarbierBDR98, +François Pachet,On the Embeddability of Production Rules in Object-Oriented Languages.,1995,8,JOOP,4,db/journals/joop/joop8.html#Pachet95, +Robert Howard,Lessons Learned in a First Eiffel Project.,1995,7,JOOP,8,db/journals/joop/joop7.html#HowardP95, +Wu-Chi Chen,An Expert-System Technique for Object-Oriented Program Testing.,1999,11,JOOP,9,db/journals/joop/joop11.html#ChenCC99, +Martin Fowler,Application Views: Another Technique in the Analysis and Design Armoury.,1994,7,JOOP,1,db/journals/joop/joop7.html#Fowler94, +Tom Rowlett,Building an Object Process Around Use Cases.,1998,11,JOOP,1,db/journals/joop/joop11.html#Rowlett98, +Richard Riehle,Inaugurating an Ada Column.,1995,8,JOOP,4,db/journals/joop/joop8.html#Riehle95, +Kumar V. Vadaparty,Developing an ODBMS Application: Basic Steps.,1996,8,JOOP,8,db/journals/joop/joop8.html#Vadaparty96, +James E. Rumbaugh,Packaging a System: Showing Architectural Dependencies.,1996,9,JOOP,7,db/journals/joop/joop9.html#Rumbaugh96g, +Steve Tynor,How we got Hooked on Eiffel.,1996,9,JOOP,2,db/journals/joop/joop9.html#TynorH96, +John D. McGregor,Test Cases from a Specification: An Example.,1998,10,JOOP,9,db/journals/joop/joop10.html#McGregor98a, +Graham C. Low,Incorporation of Distributed Computing Concerns Into Object-Oriented Methodologies.,1996,9,JOOP,3,db/journals/joop/joop9.html#LowRH96, +Christine Mingins,How We Teach Software Engineering.,1999,11,JOOP,9,db/journals/joop/joop11.html#MinginsMDP99, +Wilf R. LaLonde,Providing a Dynamic Bubble Help Facility: Part 2: The Help Facility.,1994,7,JOOP,4,db/journals/joop/joop7.html#LaLondeP94c, +Conrad Bock,A Foundation for Composition.,1994,7,JOOP,6,db/journals/joop/joop7.html#BockO94, +Bertrand Meyer 0001,Prelude to a Theory of Void.,1998,11,JOOP,7,db/journals/joop/joop11.html#Meyer98c, +Ed Swanstrom,Beyond Methodology Transfer: O-O Mentoring Meets Project Management.,1995,8,JOOP,1,db/journals/joop/joop8.html#Swanstrom95, +David Wolber,Reviving Functional Decomposition in Object-Oriented Design.,1997,10,JOOP,6,db/journals/joop/joop10.html#Wolber97, +Klaus Pirklbauer,Object-Oriented Process Control Software.,1994,7,JOOP,2,db/journals/joop/joop7.html#PirklbauerPW94, +Brendan McCarthy,Association Inheritance and Composition.,1997,10,JOOP,4,db/journals/joop/joop10.html#McCarthy97, +Martin J. Schedlbauer,The Benefits of Mentoring.,1997,10,JOOP,1,db/journals/joop/joop10.html#Schedlbauer97, +Luke Hohmann,The First Step in Training: Analysis and Design of Implementation Language?,1996,9,JOOP,6,db/journals/joop/joop9.html#Hohmann96, +Siegfried Heintze,Designing Efficient Container Classes.,1994,7,JOOP,6,db/journals/joop/joop7.html#Heintze94, +Richard Riehle,Satisfying Software Requirements Extensions.,1995,8,JOOP,5,db/journals/joop/joop8.html#Riehle95a, +John Q. Zhang,Financial Software Design Patterns.,1996,9,JOOP,1,db/journals/joop/joop9.html#ZhangS96b, +Donald Firesmith,Object-Oriented State Modeling Using ADM4.,1995,7,JOOP,8,db/journals/joop/joop7.html#Firesmith95, +Desmond D'Souza,Behavior-Driven vs. Data-Driven: A Nonissue?,1996,8,JOOP,9,db/journals/joop/joop8.html#DSouza96, +Desmond D'Souza,JavaBeans: Coding and Design.,1998,10,JOOP,8,db/journals/joop/joop10.html#DSouza98, +Kumar V. Vadaparty,A Closer Look at DOL.,1998,10,JOOP,8,db/journals/joop/joop10.html#Vadaparty98, +James E. Rumbaugh,Modeling Through the Years.,1997,10,JOOP,4,db/journals/joop/joop10.html#Rumbaugh97b, +Donald Firesmith,Clarifying Specialized Forms of Association in UML and OML.,1998,11,JOOP,2,db/journals/joop/joop11.html#FiresmithH98, +Robert Howard,The New Eiffel Kernel Library Standard.,1995,8,JOOP,6,db/journals/joop/joop8.html#Howard95a, +Wilf R. LaLonde,Communicating Reusable Designs via Design Patterns.,1995,7,JOOP,8,db/journals/joop/joop7.html#LaLondeP95, +Wilf R. LaLonde,Rendering 3-D Graphics in OpenGL.,1995,8,JOOP,3,db/journals/joop/joop8.html#LaLondeP95d, +Richard Riehle,OOP for Business Data Processing.,1996,8,JOOP,9,db/journals/joop/joop8.html#Riehle96, +Shelly S. Stubbs,IPCC++: A Concurrent C++ Based on a Shared-Memory Model.,1995,8,JOOP,2,db/journals/joop/joop8.html#StubbsCH95, +Wilf R. LaLonde,Just Cloning Around.,1994,7,JOOP,5,db/journals/joop/joop7.html#LaLondeP94d, +Wilf R. LaLonde,Providing a Dynamic Bubble Help Facility.,1994,7,JOOP,3,db/journals/joop/joop7.html#LaLondeP94b, +G. Rasmussen,Extending the MOSES Methodology to Distributed Systems.,1996,9,JOOP,4,db/journals/joop/joop9.html#RasmussenHL96, +Robert Howard,Inside an Eiffel Architecture.,1996,9,JOOP,6,db/journals/joop/joop9.html#Howard96b, +Andrew Koenig,Is Programming Like Photography?,1995,8,JOOP,2,db/journals/joop/joop8.html#Koenig95c, +Martin Ruckert,Extensible Subobjects in C++.,1996,9,JOOP,4,db/journals/joop/joop9.html#Ruckert96, +Andrew Koenig,A Programming Revolution in Languages Founded on Object Logic.,1998,11,JOOP,1,db/journals/joop/joop11.html#Koenig98b, +Wei Li 0014,Empirically Analyzing Object-Oriented Software Evolution.,1998,11,JOOP,5,db/journals/joop/joop11.html#LiT98, +Wilf R. LaLonde,Preparing for 3D Graphics: Interfacing to OpenGL.,1995,8,JOOP,2,db/journals/joop/joop8.html#LaLondeP95c, +Mor Peleg,Extending the Object-Process Methodology to Handle Real-Time Systems.,1999,11,JOOP,8,db/journals/joop/joop11.html#PelegD99, +Yagna Raj Pant,Generalization of Object-Oriented Components for Reuse: Measurements of Effort and Size Change.,1996,9,JOOP,2,db/journals/joop/joop9.html#PantHV96, +James E. Rumbaugh,OMT: The Development Process.,1995,8,JOOP,2,db/journals/joop/joop8.html#Rumbaugh95c, +Eric Lazarus,Toward Object-Oriented Mentoring Methodology.,1995,8,JOOP,6,db/journals/joop/joop8.html#Lazarus95, +Andrew Koenig,Wrapping up the Standard.,1995,8,JOOP,3,db/journals/joop/joop8.html#Koenig95d, +Andrew Koenig,Inheritance and Abbreviations.,1997,10,JOOP,5,db/journals/joop/joop10.html#Koenig97f, +Ishbel Duncan,Test-Case Development During OO Lifecycle and Evolution.,1999,11,JOOP,9,db/journals/joop/joop11.html#DuncanRM99, +T. Case,Extending the MOSES Object-Oriented Analysis and Design Methodology to Include Database Applications.,1995,8,JOOP,7,db/journals/joop/joop8.html#CaseHL95, +Wilf R. LaLonde,A Velocity-Sensitive Mouse.,1998,11,JOOP,5,db/journals/joop/joop11.html#LaLondeP98f, +Ivar Jacobson,A Growing Consensus on Use Cases.,1995,8,JOOP,1,db/journals/joop/joop8.html#JacobsonC95, +David Gillibrand,Quality Metrics for Object-Oriented Design.,1998,10,JOOP,8,db/journals/joop/joop10.html#GillibrandL98, +Boumediene Belkhouche,Behavioral Specification and Analysis of Object-Oriented Designs.,1999,11,JOOP,8,db/journals/joop/joop11.html#BelkhoucheW99, +Esperanza Marcos,About Abstract Classes.,1998,10,JOOP,8,db/journals/joop/joop10.html#MarcosMP98, +Peter Ward,Developing the Magic Browser in Eiffel.,1998,11,JOOP,5,db/journals/joop/joop11.html#WardB98, +Kumar V. Vadaparty,Memory-Resident Object Databases andlt*DOL>*.,1997,10,JOOP,7,db/journals/joop/joop10.html#Vadaparty97, +Desmond D'Souza,Collaborations: Beyond Subtypes.,1997,9,JOOP,8,db/journals/joop/joop9.html#DSouza97, +Andrew Koenig,Another Handle Variation.,1995,8,JOOP,7,db/journals/joop/joop8.html#Koenig95h, +Michael Ackroyd,Object-Oriented Design of a Finite State Machine.,1995,8,JOOP,3,db/journals/joop/joop8.html#Ackroyd95, +Andrew Koenig,Turning an Interface Inside out.,1997,10,JOOP,2,db/journals/joop/joop10.html#Koenig97c, +John D. McGregor,Parallel Architecture for Component Testing.,1997,10,JOOP,2,db/journals/joop/joop10.html#McGregor97c, +Mary E. S. Loomis,ODBMS Myths and Realities.,1994,7,JOOP,4,db/journals/joop/joop7.html#Loomis94a, +Andrew Koenig,Why Are Vectors Efficient?,1998,11,JOOP,5,db/journals/joop/joop11.html#Koenig98f, +Wilf R. LaLonde,Object Ensemble Builders.,1996,9,JOOP,5,db/journals/joop/joop9.html#LaLondeP96f, +Jan-Bon Chen,Pursuing Safe Polymorphism in OOP.,1995,8,JOOP,1,db/journals/joop/joop8.html#ChenL95, +James E. Rumbaugh,Trouble with Twins: Warning Signs of Mixed-up Classes.,1994,7,JOOP,4,db/journals/joop/joop7.html#Rumbaugh94c, +Eduardo Casais,Re-Engineering Object-Oriented Legacy Systems.,1998,10,JOOP,8,db/journals/joop/joop10.html#Casais98, +James E. Rumbaugh,Notation Notes: Principles for Choosing Notation.,1996,9,JOOP,2,db/journals/joop/joop9.html#Rumbaugh96c, +James E. Rumbaugh,The Year 2000 Crisis and the Search for Absolute Truth.,1998,11,JOOP,2,db/journals/joop/joop11.html#Rumbaugh98, +Katherine Lato,Effective Training in OOT - Learn by Doing.,1996,9,JOOP,6,db/journals/joop/joop9.html#LatoD96, +Wilf R. LaLonde,Complexity in C++: A Smalltalk Perspective.,1995,8,JOOP,1,db/journals/joop/joop8.html#LaLondeP95b, +Wilf R. LaLonde,Building a Speech-Controlled Recipe Browser.,1998,10,JOOP,8,db/journals/joop/joop10.html#LaLondeP98, +Dov Dori,Unifying System Structure and Behavior Through Object-Precess Analysis.,1996,9,JOOP,4,db/journals/joop/joop9.html#Dori96a, +Robert B. France,An Integrated Object-Oriented and Formal Modeling Environment.,1997,10,JOOP,7,db/journals/joop/joop10.html#FranceBL97, +Jean Pierre LeJacq,Resource Management.,1997,9,JOOP,9,db/journals/joop/joop9.html#LeJacqP97, +Donald Firesmith,Upgrading OML to Version 1.1: Part 2 Additional Concepts and Notation.,1998,11,JOOP,5,db/journals/joop/joop11.html#FiresmithH98b, +James E. Rumbaugh,OMT: The Object Model.,1995,7,JOOP,8,db/journals/joop/joop7.html#Rumbaugh95, +Graham Berrisford,Improving OO Analysis Methods.,1998,11,JOOP,1,db/journals/joop/joop11.html#Berrisford98, +Bryon K. Ehlmann,An Integrated and Enhanced Methodology for Modeling and Implementing Object Relationships.,1997,10,JOOP,2,db/journals/joop/joop10.html#EhlmannR97, +Mor Peleg,Representing Control Flow Constructs in Object-Process Diagrams.,1998,11,JOOP,3,db/journals/joop/joop11.html#PelegD98, +Becky Winant,The Event Dictionary: What Your Methodologist Forgot to Tell You.,1996,9,JOOP,6,db/journals/joop/joop9.html#WinantF96, +Wilf R. LaLonde,Building a Region Editor.,1996,8,JOOP,9,db/journals/joop/joop8.html#LaLondeP96a, +Richard J. Mitchell,As-a: A Relationship to Support Code Reuse.,1995,8,JOOP,4,db/journals/joop/joop8.html#MitchellHM95, +Richard Riehle,Ada does Window.,1997,10,JOOP,1,db/journals/joop/joop10.html#Riehle97, +Richard P. Gabriel,A Personal Narrative.,1994,7,JOOP,2,db/journals/joop/joop7.html#Gabriel94a, +Neil Hunt,Unit Testing.,1996,8,JOOP,9,db/journals/joop/joop8.html#Hunt96a, +Mahesh H. Dodani,"Object-Oriented Methodologies in Practice: The ""Big Picture"".",1996,9,JOOP,1,db/journals/joop/joop9.html#Dodani96, +Kumar V. Vadaparty,Relationships and Entry Points in DOL.,1998,11,JOOP,2,db/journals/joop/joop11.html#Vadaparty98a, +Steven Craig Bilow,"Sorting Through the Plethora: The ""Unofficial"" JOOP Book Awards.",1996,9,JOOP,5,db/journals/joop/joop9.html#Bilow96, +Zeki O. Bayram,Implementing Constructor Calls with Parameters in Ada 95.,1998,11,JOOP,2,db/journals/joop/joop11.html#Bayram98, +Steven J. Metsker,The Judge Pattern: Ensuring the Relational Integrity of Objects.,1998,11,JOOP,7,db/journals/joop/joop11.html#Metsker98, +Donald Firesmith,Using Parameterized Classes to Achieve Reusability while Maintaining the Coupling of Application-Specific Objects.,1994,7,JOOP,3,db/journals/joop/joop7.html#Firesmith94a, +Tom Love,Avoiding Uninteresting Old Mistakes.,1997,10,JOOP,4,db/journals/joop/joop10.html#Love97, +Robin J. Harwood,Controller/Store/Element (CSE): A Logical Mechanism for Managing Object Storage.,1998,11,JOOP,1,db/journals/joop/joop11.html#Harwood98, +Bartosz Milewski,Resource Management in C++.,1997,10,JOOP,1,db/journals/joop/joop10.html#Milewski97, +James Odell,Toward a Formalization of 00 Analysis.,1997,10,JOOP,4,db/journals/joop/joop10.html#OdellR97, +Ari Jaaksi,A Method for Your First Object-Oriented Project.,1998,10,JOOP,8,db/journals/joop/joop10.html#Jaaksi98, +Brian Henderson-Sellers,OML Metamodel: Relationships and State Modeling.,1997,10,JOOP,1,db/journals/joop/joop10.html#Henderson-SellersFG97, +Nancy M. Wilkinson,The Play's the Thing.,1997,9,JOOP,9,db/journals/joop/joop9.html#Wilkinson97, +Danilo Dabbene,Adding Persistence to Objects Using Smart Pointers.,1995,8,JOOP,3,db/journals/joop/joop8.html#DabbeneD95, +Andrew Koenig,Thoughts on Abstraction.,1994,7,JOOP,6,db/journals/joop/joop7.html#Koenig94e, +Wilf R. LaLonde,External Data Managers.,1998,11,JOOP,7,db/journals/joop/joop11.html#LaLondeP98h, +Johan Galle,HOORA: Hierarchical Object-Oriented Requirements Analysis for the European Space Agency.,1996,9,JOOP,3,db/journals/joop/joop9.html#Galle96, +James E. Rumbaugh,Modeling Models and Viewing Views: A Look at the Model-View-Controller Framework.,1994,7,JOOP,2,db/journals/joop/joop7.html#Rumbaugh94a, +Desmond D'Souza,Framework: Java to UML/Catalysis.,1997,10,JOOP,5,db/journals/joop/joop10.html#DSouza97c, +James E. Rumbaugh,Models Through the Development Process.,1997,10,JOOP,2,db/journals/joop/joop10.html#Rumbaugh97a, +Boumediene Belkouche,Analysis of Object-Oriented Designs.,1995,7,JOOP,9,db/journals/joop/joop7.html#BelkoucheC95, +Shaoyi Liao,An Object-Oriented System for the Reuse of Software Design Items.,1999,11,JOOP,8,db/journals/joop/joop11.html#LiaoCL99, +Kelly E. Murray,An Invitation to CLOS.,1996,8,JOOP,8,db/journals/joop/joop8.html#Murray96, +Sanjiv Gossain,The Pyramid Problem.,1994,7,JOOP,1,db/journals/joop/joop7.html#Gossain94, +Richard Riehle,Kissing the Polymorphic Frog.,1997,10,JOOP,4,db/journals/joop/joop10.html#Riehle97b, +Desmond D'Souza,Working with OMT: Model Integration.,1995,7,JOOP,9,db/journals/joop/joop7.html#DSouzaG95, +Dov Dori,Embryonic Classes: Enabling Selective Multiple Inheritance.,1994,7,JOOP,3,db/journals/joop/joop7.html#DoriT94, +Michael J. Chonoles,Real-Time Object-Oriented System Design Using the Object Modeling Technique.,1995,8,JOOP,3,db/journals/joop/joop8.html#ChonolesG95, +Wilf R. LaLonde,Building A Computerized Story Book Reader.,1997,10,JOOP,6,db/journals/joop/joop10.html#LaLondeP97g, +Andrew Koenig,Variations on a Handle Theme.,1995,8,JOOP,6,db/journals/joop/joop8.html#Koenig95g, +Stuart Maclean,Direct Mapping of Object-Oriented Analysis Models Onto C++ Using Asynchronous Messaging.,1996,9,JOOP,5,db/journals/joop/joop9.html#MacleanS96, +Kelly E. Murray,Under the Hood.,1996,9,JOOP,5,db/journals/joop/joop9.html#Murray96b, +Mark R. Gilder,An Object-Oriented Intermediate Code Representation for the Development of Parallelization Tools.,1995,7,JOOP,8,db/journals/joop/joop7.html#GilderK95, +Gerti Kappel,TriGS: Making a Passive Object-Oriented Database System Active.,1994,7,JOOP,4,db/journals/joop/joop7.html#KappelRRV94, +Richard Bielak,Let There be Objects.,1994,7,JOOP,6,db/journals/joop/joop7.html#BielakM94, +James E. Rumbaugh,Depending on Collaborations: Dependencies as Contextual Associations.,1998,11,JOOP,4,db/journals/joop/joop11.html#Rumbaugh98a, +Avner Ben,Entity/Skill/Reliance: Applying Functional Decomposition Safely to Object-Oriented Design.,1998,11,JOOP,6,db/journals/joop/joop11.html#Ben98, +Rosario J. D'Souza,Class Testing by Examining Pointers.,1994,7,JOOP,4,db/journals/joop/joop7.html#DSouzaL94, +James E. Rumbaugh,Taking Things in Context: Using Composites to Build Models.,1995,8,JOOP,7,db/journals/joop/joop8.html#Rumbaugh95f, +H. M. Al-Haddad,A Survey of Method Binding and Implementation Selection in Object-Oriented Programming Languages.,1995,8,JOOP,6,db/journals/joop/joop8.html#Al-HaddadG95, +John D. McGregor,Testing from Specifications.,1997,10,JOOP,6,db/journals/joop/joop10.html#McGregor97f, +Hans Albrecht Schmid,Design Patterns for Constructing the Hot Spots of a Manufacturing Framework.,1996,9,JOOP,3,db/journals/joop/joop9.html#Schmid96, +Luiz Fernando Capretz,A CASE of Reusability.,1998,11,JOOP,3,db/journals/joop/joop11.html#Capretz98, +Brian Henderson-Sellers,Methods Unification: The OPEN Methodology.,1997,10,JOOP,2,db/journals/joop/joop10.html#Henderson-SellersFG97a, +Boumediene Belkhouche,Object-Oriented Analysis through a Knowledge-Based System.,1998,11,JOOP,7,db/journals/joop/joop11.html#BelkhoucheG98, +Daniel Hoffman,The Testgraph Methodology: Automated Testing of Collection Classes.,1995,8,JOOP,7,db/journals/joop/joop8.html#HoffmanS95, +Donald G. Marks,MOMT: A Multilevel Object Modeling Technique for Designing Secure Database Applications.,1996,9,JOOP,4,db/journals/joop/joop9.html#MarksST96, +Alistair Cockburn,Using Goal-Based Use Cases.,1997,10,JOOP,7,db/journals/joop/joop10.html#Cockburn97a, +Bob Hallman,Are Classes Necessary?,1997,10,JOOP,5,db/journals/joop/joop10.html#Hallman97, +Sally Shlaer,...at Execution and Translation.,1994,7,JOOP,3,db/journals/joop/joop7.html#ShlaerM94a, +Conrad Bock,A More Complete Model of Ralations and Their Implementation: Aggregation.,1998,11,JOOP,5,db/journals/joop/joop11.html#BockO98a, +Andrew Koenig,Patterns and Antipatterns.,1995,8,JOOP,1,db/journals/joop/joop8.html#Koenig95b, +Nancy M. Wilkinson,The Role of Informal Techniques.,1996,9,JOOP,6,db/journals/joop/joop9.html#Wilkinson96, +John D. McGregor,Now Where Did I Put Those Bugs?,1998,11,JOOP,6,db/journals/joop/joop11.html#McGregor98f, +James E. Rumbaugh,Driving to a Solution: Reification and the Art of System Design.,1995,8,JOOP,4,db/journals/joop/joop8.html#Rumbaugh95d, +Robin Davies,Techniques for Developing Reusable Business Components.,1996,9,JOOP,7,db/journals/joop/joop9.html#DaviesMWW96, +Andrew Koenig,Interface and Initiative.,1996,9,JOOP,5,db/journals/joop/joop9.html#Koenig96f, +Woochun Jun,Semantic-Based Concurrency Control in Object-Oriented Databases.,1998,10,JOOP,8,db/journals/joop/joop10.html#JunG98, +Richard Riehle,Ada Pointers: Access to Information.,1996,9,JOOP,6,db/journals/joop/joop9.html#Riehle96f, +Jan-Bon Chen,The Necessary and Sufficient Conditions of Type-Safe Polymorphism.,1996,8,JOOP,9,db/journals/joop/joop8.html#ChenL96a, +Andrew Koenig,A Standard C++ Appetizer.,1998,11,JOOP,6,db/journals/joop/joop11.html#Koenig98g, +Wilf R. LaLonde,Seventy Columns and the Benefit of Hindsight.,1997,10,JOOP,4,db/journals/joop/joop10.html#LaLondeP97e, +Andrew Koenig,Memory Allocation and C Compatibility.,1996,9,JOOP,2,db/journals/joop/joop9.html#Koenig96c, +Wilf R. LaLonde,Preparing to Use the Distributed Facility in IBM Smalltalk.,1996,9,JOOP,2,db/journals/joop/joop9.html#LaLondeP96c, +John D. McGregor,Component Testing.,1997,10,JOOP,1,db/journals/joop/joop10.html#McGregor97b, +Dianne L. Smith,The Power of VisualAge in an Academic Environment.,1997,10,JOOP,4,db/journals/joop/joop10.html#SmithK97, +Wilf R. LaLonde,Changing the Engine While the Car Is in Motion.,1998,10,JOOP,9,db/journals/joop/joop10.html#LaLondeP98a, +Desmond D'Souza,A Clear Path to Java.,1997,10,JOOP,6,db/journals/joop/joop10.html#DSouza97d, +Won Kim 0001,"RDB ""Universal"" Servers Giving Real ORDBs a Bad Name.",1997,10,JOOP,6,db/journals/joop/joop10.html#Kim97a, +Wilf R. LaLonde,Recreational Puzzle Makers.,1998,11,JOOP,3,db/journals/joop/joop11.html#LaLondeP98d, +Terry Montlick,The Logical Model Architecture.,1997,10,JOOP,3,db/journals/joop/joop10.html#Montlick97, +Ari Jaaksi,Our Cases with Use Cases.,1998,10,JOOP,9,db/journals/joop/joop10.html#Jaaksi98a, +Neil Hunt,Automatically Tracking Test Case Execution.,1995,8,JOOP,7,db/journals/joop/joop8.html#Hunt95a, +Ron Charron,Training and the Push for Change.,1998,11,JOOP,6,db/journals/joop/joop11.html#Charron98, +Steven Craig Bilow,Five for '95: This Year's Hot New Books.,1995,8,JOOP,5,db/journals/joop/joop8.html#Bilow95, +Andrew Koenig,Which Container Should we Teach First?,1997,10,JOOP,3,db/journals/joop/joop10.html#Koenig97d, +Shelly S. Stubbs,IPCC++: InterProcess Communication with C++.,1997,9,JOOP,9,db/journals/joop/joop9.html#StubbsC97, +Dov Dori,Automated Understanding of Engineering Drawings: An Object-Oriented Analysis.,1994,7,JOOP,5,db/journals/joop/joop7.html#Dori94, +Brian Henderson-Sellers,COMMA: Proposed Core Model.,1997,9,JOOP,8,db/journals/joop/joop9.html#Henderson-SellersF97, +John D. McGregor,Making Component Testing More Effective.,1997,10,JOOP,4,db/journals/joop/joop10.html#McGregor97e, +Desmond D'Souza,Collaboration Frameworks.,1997,9,JOOP,9,db/journals/joop/joop9.html#DSouzaW97, +F. W. (Walter) Fang,The Visual Modeling Technique: A Introduction and Overview.,1996,9,JOOP,4,db/journals/joop/joop9.html#FangSK96, +Dov Dori,Analysis and Representation of the Image Understanding Environment Using the Object-Process Methodology.,1996,9,JOOP,4,db/journals/joop/joop9.html#Dori96, +Diomidis Spinellis,Object-Oriented Technology in Multiparadigm Language Implementation.,1995,8,JOOP,1,db/journals/joop/joop8.html#SpinellisDE95, +James E. Rumbaugh,Layered Additive Models: Design as a Process of Recording Decisions.,1996,9,JOOP,1,db/journals/joop/joop9.html#Rumbaugh96b, +Chong-Mok Park,Forced Inheritance: A New Approach for Providing Orthogonal Persistence to C++.,1996,9,JOOP,1,db/journals/joop/joop9.html#ParkWSN96, +Bertrand Meyer 0001,Free EiffelBase: Eiffel Libraries Go Open Source.,1998,11,JOOP,7,db/journals/joop/joop11.html#Meyer98d, +James E. Rumbaugh,A State of Mind.,1996,9,JOOP,4,db/journals/joop/joop9.html#Rumbaugh96e, +Mahesh H. Dodani,OO Learning AntiPatterns: Rewiring Data and Functional Thinkers into Object Technology Developers.,1999,11,JOOP,8,db/journals/joop/joop11.html#Dodani99, +John A. Campbell,The Object-Oriented Design and Implementation of a Relational Database Management System.,1995,8,JOOP,4,db/journals/joop/joop8.html#CampbellJ95, +Wei Li,An Empirical Study of Object Analysis and Design.,1997,9,JOOP,8,db/journals/joop/joop9.html#Li97, +Steve Cook,Object Communication.,1994,7,JOOP,5,db/journals/joop/joop7.html#CookD94b, +Wilf R. LaLonde,Layout Managers.,1998,11,JOOP,1,db/journals/joop/joop11.html#LaLondeP98b, +Andrew Koenig,An Example of Language-Sensitive Design.,1995,8,JOOP,4,db/journals/joop/joop8.html#Koenig95e, +Andrew Koenig,Surrogate Classes in C++.,1994,7,JOOP,4,db/journals/joop/joop7.html#Koenig94c, +James E. Rumbaugh,OMT: The Functional Model.,1995,8,JOOP,1,db/journals/joop/joop8.html#Rumbaugh95b, +Yania Crespo González-Carvajal,More About System-Level Validity in Eiffel.,1998,11,JOOP,4,db/journals/joop/joop11.html#Gonzalez-CarvajalM98, +Wilf R. LaLonde,Dynamically Resizing Panes.,1996,8,JOOP,8,db/journals/joop/joop8.html#LaLondeP96, +Sophia Drossopoulou,Type-Checking Smalltalk.,1996,8,JOOP,8,db/journals/joop/joop8.html#DrossopoulouKY96, +Joseph A. Goguen,Module Composition and System Design for the Object Paradigm.,1995,7,JOOP,9,db/journals/joop/joop7.html#GoguenS95, +Lucy Garnett,Wrapping Objects.,1997,9,JOOP,8,db/journals/joop/joop9.html#Garnett97, +S. N. Cant,Application of Cognitive Complexity Metrics to Object-Oriented Programs.,1994,7,JOOP,4,db/journals/joop/joop7.html#CantHJ94, +Mary E. S. Loomis,Querying Object Databases.,1994,7,JOOP,3,db/journals/joop/joop7.html#Loomis94, +Bertrand Meyer 0001,Why Your next Project Should use Eiffel.,1996,9,JOOP,2,db/journals/joop/joop9.html#Meyer96, +John D. McGregor,Testing Models: The Requirements Model.,1998,11,JOOP,3,db/journals/joop/joop11.html#McGregor98c, +Bertrand Meyer 0001,Approaches to Portability.,1998,11,JOOP,4,db/journals/joop/joop11.html#Meyer98a, +Chung-Yeung Pang,A Pattern of Inheritance and Polymorphism for Persistent Objects Stored in a Relational Database.,1999,11,JOOP,9,db/journals/joop/joop11.html#Pang99, +John Q. Zhang,Financial Software Design Patterns.,1996,8,JOOP,8,db/journals/joop/joop8.html#ZhangS96, +Wilf R. LaLonde,Texture Wrappers: An Exercise in Micro Design.,1998,11,JOOP,2,db/journals/joop/joop11.html#LaLondeP98c, +Andrew Koenig,When to Write Buggy Programs.,1994,7,JOOP,1,db/journals/joop/joop7.html#Koenig94, +James E. Rumbaugh,A Matter of Intent: How to Define Subclasses.,1996,9,JOOP,5,db/journals/joop/joop9.html#Rumbaugh96f, +James E. Heliotis,Eiffel in Computer Science Education.,1996,9,JOOP,2,db/journals/joop/joop9.html#Heliotis96, +Andrew Koenig,Report from Morristown.,1998,10,JOOP,9,db/journals/joop/joop10.html#Koenig98a, +Elizabeth A. Kendall,Multiagent System Design Based on Object-Oriented Patterns.,1997,10,JOOP,3,db/journals/joop/joop10.html#KendallMJ97a, +Kumar V. Vadaparty,Persistent Pointers: I.,1995,8,JOOP,4,db/journals/joop/joop8.html#Vadaparty95, +Dana Moore,An Ode to Persistence.,1996,9,JOOP,7,db/journals/joop/joop9.html#Moore96, +Desmond D'Souza,Java: Design and Modeling Opportunities.,1996,9,JOOP,5,db/journals/joop/joop9.html#DSouza96a, +Peter van der Werf,Values and Objects Revisited.,1998,11,JOOP,4,db/journals/joop/joop11.html#Werf98, +Joachim H. Laubsch,A Beginner's Guide to Developing with the Taligent Application Frameworks.,1996,9,JOOP,7,db/journals/joop/joop9.html#Laubsch96, +Wilf R. LaLonde,Using SOM in VisualAge and IBM Smalltalk.,1995,7,JOOP,9,db/journals/joop/joop7.html#LaLondeP95a, +Christian Tanzer,Remarks on Object-Oriented Modeling of Associations.,1995,7,JOOP,9,db/journals/joop/joop7.html#Tanzer95, +Bill Chu,FAIME: An Object-Oriented Methodology for Application Plug-and-Play.,1998,11,JOOP,5,db/journals/joop/joop11.html#ChuLMBSHL98, +Andrew Koenig,Arithmetic Sequence Iterators.,1996,9,JOOP,6,db/journals/joop/joop9.html#Koenig96g, +Kumar V. Vadaparty,Pointer Swizzling at Page-Fault Time.,1995,8,JOOP,7,db/journals/joop/joop8.html#Vadaparty95c, +Ivar Jacobson,Using Contracts and Use Cases to Build Pluggable Architectures.,1995,8,JOOP,2,db/journals/joop/joop8.html#JacobsonBJE95, +Frederick Kuhl,A CORBA Framework for Distributed Simulation.,1997,9,JOOP,9,db/journals/joop/joop9.html#Kuhl97, +Wei Li 0014,Measuring Object-Oriented Design.,1995,8,JOOP,4,db/journals/joop/joop8.html#LiHKS95, +Ben A. Blake,An Assessment of Object-Oriented Method and C++.,1996,9,JOOP,1,db/journals/joop/joop9.html#BlakeJ96, +Jean-Claude Royer,Type Checking Object-Oriented Programs: Core of the Problem and Some Solutions.,1998,11,JOOP,6,db/journals/joop/joop11.html#Royer98, +Mary E. S. Loomis,Comparing ODBMS Features: A Review of DBMS Needs Assessment for Objects.,1994,7,JOOP,6,db/journals/joop/joop7.html#Loomis94b, +Andrew Koenig,Templates and Generic Algorithms.,1994,7,JOOP,3,db/journals/joop/joop7.html#Koenig94b, +Brian Henderson-Sellers,Who Needs an Object-Oriented Methodology Anyway?,1995,8,JOOP,6,db/journals/joop/joop8.html#Henderson-Sellers95, +James E. Rumbaugh,Getting Started: Using Use Cases to Capture Requirements.,1994,7,JOOP,5,db/journals/joop/joop7.html#Rumbaugh94d, +Brian Henderson-Sellers,OO Diagram Connectivity.,1998,11,JOOP,7,db/journals/joop/joop11.html#Henderson-Sellers98a, +LeRoy Mattingly,Writing Effective Use Cases and Introducing Collaboration Cases.,1998,11,JOOP,6,db/journals/joop/joop11.html#MattinglyR98, +James E. Rumbaugh,The Life of an Object Model.,1994,7,JOOP,1,db/journals/joop/joop7.html#Rumbaugh94, +K. X. Thrampoulidis,Object Interaction Diagram: A New Technique in Object-Oriented Analysis and Design.,1995,8,JOOP,3,db/journals/joop/joop8.html#ThrampoulidisA95, +Kumar V. Vadaparty,Memory-Mapped Architectures.,1995,8,JOOP,6,db/journals/joop/joop8.html#Vadaparty95b, +David M. Papurt,The Use of Exceptions.,1998,11,JOOP,2,db/journals/joop/joop11.html#Papurt98, +Kelly E. Murray,The Feature Presentation.,1996,9,JOOP,3,db/journals/joop/joop9.html#Murray96a, +Liping Zhao 0001,Driver Duty: A Pattern for Public Transport Systems.,1998,11,JOOP,4,db/journals/joop/joop11.html#ZhaoF98, +James E. Rumbaugh,OMT: The Dynamic Model.,1995,7,JOOP,9,db/journals/joop/joop7.html#Rumbaugh95a, +Djamel Meslati,Semantic Classification: A Genetic Approach to Classification in Object-Oriented Models.,1997,9,JOOP,8,db/journals/joop/joop9.html#MeslatiG97, +Richard Riehle,Reliability: Does Language Matter?,1996,9,JOOP,1,db/journals/joop/joop9.html#Riehle96a, +Andrew Koenig,Generic Iterators.,1994,7,JOOP,5,db/journals/joop/joop7.html#Koenig94d, +John D. McGregor,The Fifty-Foot Look at Analysis and Design Models.,1998,11,JOOP,4,db/journals/joop/joop11.html#McGregor98d, +Kumar V. Vadaparty,Programmer's Interface for Collections_in_an_ODBMS ObjectStore.,1996,9,JOOP,3,db/journals/joop/joop9.html#Vadaparty96b, +Kumar V. Vadaparty,Programmer's Interface to Relationships_in_an_ODBMS ObjectStore.,1996,9,JOOP,4,db/journals/joop/joop9.html#Vadaparty96c, +Richard Riehle,Ada and the Notion of Class.,1996,9,JOOP,7,db/journals/joop/joop9.html#Riehle96g, +Stephen J. Mellor,...at Multiple Designs.,1995,7,JOOP,9,db/journals/joop/joop7.html#Mellor95a, +Wilf R. LaLonde,Inlining C in Smalltalk Methods.,1999,11,JOOP,8,db/journals/joop/joop11.html#LaLonde99, +Ravi Kathuria,Improved Design of Classes and Associations Using Assimilation.,1997,10,JOOP,3,db/journals/joop/joop10.html#Kathuria97a, +Carlo Pescio,Deriving Patterns from Design Principles.,1998,11,JOOP,6,db/journals/joop/joop11.html#Pescio98, +Edward Colbert,Abstract Better and Enjoy Life.,1994,7,JOOP,1,db/journals/joop/joop7.html#Colbert94, +Trygve Reenskaug,Working with Objects: A Three-Model Architecture for the Analysis of Information Systems.,1997,10,JOOP,2,db/journals/joop/joop10.html#Reenskaug97, +Libero Nigro,A Real-Time Architecture Based on Shlaer-Mellor Object Lifecycles.,1995,8,JOOP,1,db/journals/joop/joop8.html#Nigro95, +Mary Lynn Manns,Capturing Successful Practices on OT Education and Training.,1998,11,JOOP,1,db/journals/joop/joop11.html#MannsSPM98, +Ed Seidewitz,Controlling Inheritance.,1996,8,JOOP,8,db/journals/joop/joop8.html#Seidewitz96, +James E. Rumbaugh,OO Myths: Assumptions from a Language View.,1997,9,JOOP,9,db/journals/joop/joop9.html#Rumbaugh97, +Mordechai Ben-Ari,Teaching Object-Oriented Programming in Ada.,1998,11,JOOP,6,db/journals/joop/joop11.html#Ben-Ari98, +Glenn P. Downing,Being Lazy about Global-Object Initialization.,1996,9,JOOP,5,db/journals/joop/joop9.html#Downing96, +Stephen J. Mellor,...at Translating Actions.,1995,7,JOOP,8,db/journals/joop/joop7.html#Mellor95, +Yoonsik Cheon,A Quick Overview of Larch/C++.,1994,7,JOOP,6,db/journals/joop/joop7.html#CheonL94, +Wayne Haythorn,What is Object-Oriented Design?,1994,7,JOOP,1,db/journals/joop/joop7.html#Haythorn94, +Wilf R. LaLonde,Using OLE Clients.,1996,9,JOOP,1,db/journals/joop/joop9.html#LaLondeP96b, +Alberto E. Nava,How to Avoid the Uncontrolled Proliferation of Methods.,1994,7,JOOP,3,db/journals/joop/joop7.html#NavaC94, +Mary Lynn Manns,Retraining Procedure-Oriented Developers: An Issue of Skill Transfer.,1996,9,JOOP,7,db/journals/joop/joop9.html#MannsN96, +Conrad Bock,A More Complete Model of Relations and Their Implementation: Roles.,1998,11,JOOP,2,db/journals/joop/joop11.html#BockO98, +Andrew Koenig,Report from London.,1997,10,JOOP,6,db/journals/joop/joop10.html#Koenig97g, +Barry Alan Feigenbaum,Smalltalk/2: An Enhanced Smalltalk.,1995,8,JOOP,7,db/journals/joop/joop8.html#Feigenbaum95, +Aaron Hillegass,An Afternoon with Eiffel and C++.,1994,7,JOOP,3,db/journals/joop/joop7.html#Hillegass94, +Steve Cook,Lets get Formal.,1994,7,JOOP,4,db/journals/joop/joop7.html#CookD94a, +Francisca Losavio,Use Case and Multiagent Models for Object-Oriented Design of User Interfaces.,1997,10,JOOP,2,db/journals/joop/joop10.html#LosavioM97, +Robert Howard,Threaded Simulation.,1995,8,JOOP,4,db/journals/joop/joop8.html#Howard95, +David M. Papurt,The Sensible Use of Method Overriding.,1997,10,JOOP,1,db/journals/joop/joop10.html#PapurtL97, +Won Kim 0001,OLTP Versus DSS/OLAP/Data Mining.,1997,10,JOOP,7,db/journals/joop/joop10.html#Kim97b, +Wilf R. LaLonde,Intelligent Methods.,1997,10,JOOP,1,db/journals/joop/joop10.html#LaLondeP97b, +Cory Byard,Software Beans: Class Metrics and the Mismeasure of Software.,1994,7,JOOP,5,db/journals/joop/joop7.html#Byard94, +S. Y. Liao,Experience Report: SSADM-Designed System to Object-Oriented System.,1998,10,JOOP,9,db/journals/joop/joop10.html#LiaoST98, +David W. McKeown,Triggers for Object-Oriented Database Systems.,1997,10,JOOP,2,db/journals/joop/joop10.html#McKeownS97, +Robert Howard,Simple Object Persistence with STORE_TABLE.,1997,10,JOOP,3,db/journals/joop/joop10.html#Howard97, +James Odell,Events and Their Specification.,1994,7,JOOP,4,db/journals/joop/joop7.html#Odell94a, +Katherine Lato,Learn to Learn: Training on New Technology.,1997,10,JOOP,1,db/journals/joop/joop10.html#Lato97, +Donald Firesmith,The Critical Need for Real on-the-Job Training.,1994,7,JOOP,6,db/journals/joop/joop7.html#Firesmith94b, +Wilf R. LaLonde,Need-Driven Designs.,1997,9,JOOP,8,db/journals/joop/joop9.html#LaLondeP97, +Stephen R. Schach,The Cohesion and Coupling of Objects.,1996,8,JOOP,8,db/journals/joop/joop8.html#Schach96, +Nik Boyd,Using Natural Language in Software Development.,1999,11,JOOP,9,db/journals/joop/joop11.html#Boyd99, +Donovan Hsieh,A Novel Approach Toward Object-Oriented Knowledge-Based Software Integration within a CASE Framework.,1994,7,JOOP,5,db/journals/joop/joop7.html#HsiehG94, +Ted Foster,Modeling Transport Objects with Patterns.,1998,10,JOOP,8,db/journals/joop/joop10.html#FosterZ98, +Miguel Katrib,Improving Eiffel Assertions Using Quantiefied Iterators.,1997,10,JOOP,7,db/journals/joop/joop10.html#KatribC97, +James Odell,Power Types.,1994,7,JOOP,2,db/journals/joop/joop7.html#Odell94, +Andrew Koenig,Function Adaptors.,1996,8,JOOP,8,db/journals/joop/joop8.html#Koenig96, +Wilf R. LaLonde,Tool Upgrading: Replacing the VisualWorks File Browser.,1995,8,JOOP,5,db/journals/joop/joop8.html#LaLondeP95e, +Brian Henderson-Sellers,The Benefits of Common Object Modeling Notation.,1997,10,JOOP,5,db/journals/joop/joop10.html#Henderson-SellersFG97b, +James E. Rumbaugh,What is a Method?,1995,8,JOOP,6,db/journals/joop/joop8.html#Rumbaugh95e, +Pierre Roy,Reifying Constraint Satisfaction in Smalltalk.,1997,10,JOOP,4,db/journals/joop/joop10.html#RoyP97, +Christopher Creel,Is Object Technology Ready for the Embedded World?,1998,11,JOOP,1,db/journals/joop/joop11.html#CreelM98, +Andrew Koenig,The Importance - and Hazards - of Performance Measurement.,1997,9,JOOP,8,db/journals/joop/joop9.html#Koenig97, +Jan-Bon Chen,Generation and Reorganization of Subtype Hierarchies.,1996,8,JOOP,8,db/journals/joop/joop8.html#ChenL96, +Ravi Kathuria,Improved Modeling and Design Using Assimilation and Property Modeling.,1997,9,JOOP,8,db/journals/joop/joop9.html#Kathuria97, +Robert Howard,The New Eiffel Kernel Library Standard: Class General.,1995,8,JOOP,7,db/journals/joop/joop8.html#Howard95b, +Andrew Koenig,Introduction to Iterator Adaptors.,1995,7,JOOP,8,db/journals/joop/joop7.html#Koenig95, +Kumar V. Vadaparty,Revisiting Persistent Pointers.,1995,8,JOOP,5,db/journals/joop/joop8.html#Vadaparty95a, +John D. McGregor,Planning for Testing.,1997,9,JOOP,9,db/journals/joop/joop9.html#McGregor97a, +Douglas R. Skuce,Behavorial Specifications in Object-Oriented Programming.,1995,7,JOOP,8,db/journals/joop/joop7.html#SkuceM95, +Ian M. Graham,In Search of the Three Best Books.,1997,10,JOOP,5,db/journals/joop/joop10.html#Graham97, +Edmund C. Arranga,Object-Oriented COBOL: An Introduction.,1997,9,JOOP,8,db/journals/joop/joop9.html#ArrangaC97, +Wilf R. LaLonde,A Reader for VRML.,1997,10,JOOP,3,db/journals/joop/joop10.html#LaLondeP97d, +Jay Almarode,Reduced-Conflict Objects.,1998,10,JOOP,8,db/journals/joop/joop10.html#AlmarodeB98, +Wilf R. LaLonde,Using Dolphin Smalltalk.,1997,9,JOOP,9,db/journals/joop/joop9.html#LaLondeP97a, +Richie Bielak,Eiffel in Practice: Reflections of an Eiffel Programmer.,1996,9,JOOP,2,db/journals/joop/joop9.html#Bielak96, +Jan Bosch,Design Patterns as Language Constructs.,1998,11,JOOP,2,db/journals/joop/joop11.html#Bosch98, +James E. Rumbaugh,Going with the Flow: Flow Graphs in their Various Manifestations.,1994,7,JOOP,3,db/journals/joop/joop7.html#Rumbaugh94b, +Kumar V. Vadaparty,Programmer's Interface for Querying_Collections ObjectStore.,1996,9,JOOP,5,db/journals/joop/joop9.html#Vadaparty96d, +Desmond D'Souza,Effective C++ Learning and Teaching.,1995,8,JOOP,6,db/journals/joop/joop8.html#DSouza95, +Ian M. Graham,Associations Considered a Bad Thing.,1997,9,JOOP,9,db/journals/joop/joop9.html#GrahamBH97, +Helmut Balzert,From OOA to GUIs: The JANUS System.,1996,8,JOOP,9,db/journals/joop/joop8.html#Balzert96, +Letha H. Etzkorn,A Practical Look at the Lack of Cohesion in Methods Metric.,1998,11,JOOP,5,db/journals/joop/joop11.html#EtzkornDL98, +Kalyani Chennupati,An Evaluation of Object Store Management and Naming Schemes in Persistent Object Systems.,1997,10,JOOP,6,db/journals/joop/joop10.html#ChennupatiS97, +Andrew Koenig,Compatibility vs. Progress.,1996,8,JOOP,9,db/journals/joop/joop8.html#Koenig96a, +Wilf R. LaLonde,Using the Distributed Facility in IBM Smalltalk to Implement a Distributed Bank Account Browser.,1996,9,JOOP,3,db/journals/joop/joop9.html#LaLondeP96d, +Won Kim 0001,Middlewares.,1998,10,JOOP,9,db/journals/joop/joop10.html#Kim98, +David M. Papurt,Design Aspects of the Standard I/O Library.,1996,9,JOOP,6,db/journals/joop/joop9.html#PapurtL96, +John D. McGregor,An Overview of Testing.,1997,9,JOOP,8,db/journals/joop/joop9.html#McGregor97, +Richard Riehle,Managing Runtime Faults.,1996,9,JOOP,5,db/journals/joop/joop9.html#Riehle96e, +Wilf R. LaLonde,Using Microsoft's DirectPlay to Interconnect Smalltalk Browsers Across the Net.,1996,9,JOOP,7,db/journals/joop/joop9.html#LaLondeP96h, +Andrew Koenig,Iterator Iterators and Temporal Sequences.,1997,9,JOOP,9,db/journals/joop/joop9.html#Koenig97a, +Ayano Fujiwara,Who Works at the Interface in Knowledge Spillover Across Organizational Boundaries?,2017,11,The Review of Socionetwork Strategies,1,db/journals/rss/rss11.html#Fujiwara17,https://doi.org/10.1007/s12626-017-0005-2 +John Laitner,Technological Progress and the Wage Growth of Older Japanese Workers.,2013,7,The Review of Socionetwork Strategies,2,db/journals/rss/rss7.html#LaitnerMN13,https://doi.org/10.1007/s12626-013-0035-1 +Nor Aida Mahiddin,An Internet Access Solution: MANET Routing and a Gateway Selection Approach for Disaster Scenarios.,2017,11,The Review of Socionetwork Strategies,1,db/journals/rss/rss11.html#MahiddinSC17,https://doi.org/10.1007/s12626-017-0004-3 +Yasuharu Ukai,Did Social Security Improve Labor Productivity?,2011,5,The Review of Socionetwork Strategies,2,db/journals/rss/rss5.html#Ukai11,https://doi.org/10.1007/s12626-011-0021-6 +Yoko Nishihara,Communication Analysis Focusing on Negative Utterances in Combinatorial Thinking Games.,2010,4,The Review of Socionetwork Strategies,2,db/journals/rss/rss4.html#NishiharaO10,https://doi.org/10.1007/s12626-010-0013-y +,Newsletter.,2017,11,The Review of Socionetwork Strategies,2,db/journals/rss/rss11.html#X17,https://doi.org/10.1007/s12626-017-0013-2 +Yuko Tsumoto,Correlation and Regression Analysis for Characterizations of a University Hospital.,2011,5,The Review of Socionetwork Strategies,2,db/journals/rss/rss5.html#TsumotoT11,https://doi.org/10.1007/s12626-010-0020-z +Keita Kinjo,An Advertising Strategy Using Consumption Externality and Forgetting in the Case of Japanese Electronic Books.,2016,10,The Review of Socionetwork Strategies,2,db/journals/rss/rss10.html#KinjoE16,https://doi.org/10.1007/s12626-016-0064-9 +Motoi Iwashita,Broadband Demand Analysis for Network Building.,2010,4,The Review of Socionetwork Strategies,1,db/journals/rss/rss4.html#IwashitaNKS10,https://doi.org/10.1007/s12626-010-0011-0 +Sotaro Katsumata,The Contents-Based Website Classification for the Internet Advertising Planning: An Empirical Application of the Natural Language Analysis.,2017,11,The Review of Socionetwork Strategies,2,db/journals/rss/rss11.html#KatsumataMNT17,https://doi.org/10.1007/s12626-017-0007-0 +Yasuharu Ukai,Editorial Note: Outlook of the Review of Socionetwork Strategies: 2008-2013.,2013,7,The Review of Socionetwork Strategies,2,db/journals/rss/rss7.html#Ukai13b,https://doi.org/10.1007/s12626-013-0039-z +Haruhi Satonaka,Sales Strategy Mining Support with Visualization of Moving History.,2013,7,The Review of Socionetwork Strategies,1,db/journals/rss/rss7.html#SatonakaS13,https://doi.org/10.1007/s12626-013-0030-8 +Masaharu Shimizu,Simulation Analysis of a Dynamic Reallocation-based Routing Functionality for SAGE Application.,2015,9,The Review of Socionetwork Strategies,1,db/journals/rss/rss9.html#ShimizuKDS15,https://doi.org/10.1007/s12626-015-0051-6 +Y. Cao,Married Women's Lifestyles in Japan: Disparities Based on the Number of Children.,2012,6,The Review of Socionetwork Strategies,1,db/journals/rss/rss6.html#CaoMM12,https://doi.org/10.1007/s12626-011-0023-4 +Yota Ueda,Parallel Consultant-Guided Search with Crossover.,2017,11,The Review of Socionetwork Strategies,2,db/journals/rss/rss11.html#UedaENI17,https://doi.org/10.1007/s12626-017-0016-z +Wenlong Yu,Near Real-time Mapping Using Shared GPS Data from Stranded Commuters.,2015,9,The Review of Socionetwork Strategies,2,db/journals/rss/rss9.html#YuEMYR15,https://doi.org/10.1007/s12626-015-0055-2 +Shinji Watanabe,Research note: Residents' Assessment of Local Government Information Systems.,2014,8,The Review of Socionetwork Strategies,2,db/journals/rss/rss8.html#Watanabe14,https://doi.org/10.1007/s12626-014-0049-5 +Kenichi Tamegawa,Macroeconomic Contribution of the Cloud Computing System to the Japanese Economy.,2014,8,The Review of Socionetwork Strategies,2,db/journals/rss/rss8.html#TamegawaUC14,https://doi.org/10.1007/s12626-014-0047-7 +Dale W. Jorgenson,Projecting World Economic Growth: The Contribution of Information Technology.,2009,3,The Review of Socionetwork Strategies,2,db/journals/rss/rss3.html#JorgensonV09,https://doi.org/10.1007/s12626-009-0007-9 +Md. Ezazul Islam,An Approach to Security for Unstructured Big Data.,2016,10,The Review of Socionetwork Strategies,2,db/journals/rss/rss10.html#IslamIA16,https://doi.org/10.1007/s12626-016-0067-6 +Jim Morey,Designing an Interactive Visualization to Explore Eye-movement Data.,2016,10,The Review of Socionetwork Strategies,2,db/journals/rss/rss10.html#MoreyG16,https://doi.org/10.1007/s12626-016-0065-8 +Ji Qi,BLOCKS: Efficient and Stable Online Visualization of Dynamic Network Evolution.,2016,10,The Review of Socionetwork Strategies,1,db/journals/rss/rss10.html#QiO16,https://doi.org/10.1007/s12626-016-0062-y +Yasuharu Ukai,Spam mails impede economic growth.,2007,1,The Review of Socionetwork Strategies,1,db/journals/rss/rss1.html#UkaiT07,https://doi.org/10.1007/BF02981628 +Patanamon Thongtanunam,Mining History of Gamification Towards Finding Expertise in Question and Answering Communities: Experience and Practice with Stack Exchange.,2013,7,The Review of Socionetwork Strategies,2,db/journals/rss/rss7.html#ThongtanunamKCYII13,https://doi.org/10.1007/s12626-013-0038-0 +Yuko Tsumoto,Exploratory Univariate Analysis on the Characterization of a University Hospital: A Preliminary Step to Data-Mining-Based Hospital Management Using an Exploratory Univariate Analysis of a University Hospital.,2010,4,The Review of Socionetwork Strategies,2,db/journals/rss/rss4.html#TsumotoT10,https://doi.org/10.1007/s12626-010-0014-x +Naoki Takano,A Conjoint Analysis of Demand for the Japanese Mobile Phone Market.,2016,10,The Review of Socionetwork Strategies,1,db/journals/rss/rss10.html#Takano16,https://doi.org/10.1007/s12626-016-0060-0 +,Newsletter.,2012,6,The Review of Socionetwork Strategies,2,db/journals/rss/rss6.html#X12,https://doi.org/10.1007/s12626-012-0028-7 +Yoko Nishihara,Research Note: A Cooperative Discussion Support System through Visualization of Participants' Contributions to a Discussion.,2015,9,The Review of Socionetwork Strategies,1,db/journals/rss/rss9.html#NishiharaS15,https://doi.org/10.1007/s12626-015-0053-4 +Naoki Takano,A Conjoint Analysis of a Next Generation Network (NGN) in Japan.,2013,7,The Review of Socionetwork Strategies,2,db/journals/rss/rss7.html#Takano13,https://doi.org/10.1007/s12626-013-0037-1 +Yasuharu Ukai,Editorial Note: Outlook of the Review of Socionetwork Strategies: 2016.,2016,10,The Review of Socionetwork Strategies,2,db/journals/rss/rss10.html#Ukai16,https://doi.org/10.1007/s12626-016-0068-5 +Toshihiko Kawamura,Estimation of Service Quality of a Hospital Information System Using a Service Log.,2014,8,The Review of Socionetwork Strategies,2,db/journals/rss/rss8.html#KawamuraKT14,https://doi.org/10.1007/s12626-014-0044-x +Ryutaro Nambu,Integrating Smart Glasses with Question-Answering Module in Assistant Work Environment.,2017,11,The Review of Socionetwork Strategies,1,db/journals/rss/rss11.html#NambuMY17,https://doi.org/10.1007/s12626-017-0003-4 +Yasuharu Ukai,Research Note: Statistical Analysis on E-mail Magazines used by Japanese Prime Ministers.,2011,5,The Review of Socionetwork Strategies,1,db/journals/rss/rss5.html#UkaiH11,https://doi.org/10.1007/s12626-011-0017-2 +Takashi Okamoto,The Perceptual Gaps Between Companies' and University Students' Views on Fundamental Competencies.,2017,11,The Review of Socionetwork Strategies,2,db/journals/rss/rss11.html#OkamotoSKA17,https://doi.org/10.1007/s12626-017-0008-z +Georgios Lappas,Facebook Content Strategies and Citizens' Online Engagement: The Case of Greek Local Governments.,2018,12,The Review of Socionetwork Strategies,1,db/journals/rss/rss12.html#LappasTDK18,https://doi.org/10.1007/s12626-018-0017-6 +Xuanang Feng,Personal Authentication Using a Kinect Sensor.,2017,11,The Review of Socionetwork Strategies,2,db/journals/rss/rss11.html#FengZKS17,https://doi.org/10.1007/s12626-017-0010-5 +Yasuharu Ukai,Research Note: The Paradox of Cloud Computing in Japan.,2013,7,The Review of Socionetwork Strategies,1,db/journals/rss/rss7.html#Ukai13,https://doi.org/10.1007/s12626-013-0033-5 +Masatora Daito,Agent-based simulation approach for disaster rescue using active RFID.,2008,1,The Review of Socionetwork Strategies,2,db/journals/rss/rss1.html#DaitoT08,https://doi.org/10.1007/BF02981635 +Kenichi Tamegawa,"Corrigendum: ""Macroeconomic Contribution of the Cloud Computing System to the Japanese Economy"" in Volume 8 Issue2/ December 2014.",2015,9,The Review of Socionetwork Strategies,2,db/journals/rss/rss9.html#TamegawaUC15,https://doi.org/10.1007/s12626-015-0057-0 +Seiichi Inagaki,The Effects of Proposals for Basic Pension Reform on the Income Distribution of the Elderly in Japan.,2010,4,The Review of Socionetwork Strategies,1,db/journals/rss/rss4.html#Inagaki10,https://doi.org/10.1007/s12626-010-0010-1 +Ken-ichi Hanamura,Research Note: Analysis of the Characteristics of Victims in Information Security Incident Damages: The Case of Japanese Internet Users.,2013,7,The Review of Socionetwork Strategies,1,db/journals/rss/rss7.html#HanamuraTK13,https://doi.org/10.1007/s12626-013-0032-6 +,Newsletter.,2014,8,The Review of Socionetwork Strategies,1,db/journals/rss/rss8.html#X14,https://doi.org/10.1007/s12626-014-0043-y +Tadahiko Murata,A Microsimulation Tool for Airport Selection using Public Data on the Web.,2014,8,The Review of Socionetwork Strategies,2,db/journals/rss/rss8.html#MurataK14,https://doi.org/10.1007/s12626-014-0046-8 +Natsuki Sano,Defect Detection Using Unanimous Vote Among Mahalanobis Classifiers for Each Color Component.,2017,11,The Review of Socionetwork Strategies,2,db/journals/rss/rss11.html#SanoMS17,https://doi.org/10.1007/s12626-017-0015-0 +Masanari Oishi,Facebook e-Portfolios for Career Education Focused on Japanese Employment Practice: A Case Study.,2017,11,The Review of Socionetwork Strategies,2,db/journals/rss/rss11.html#OishiSK17,https://doi.org/10.1007/s12626-017-0011-4 +Kohei Ichikawa,Social Network Rebuilder: A Tool to Estimate a Social Network of Financial Crisis Propagation.,2011,5,The Review of Socionetwork Strategies,1,db/journals/rss/rss5.html#IchikawaTMMM11,https://doi.org/10.1007/s12626-010-0016-8 +Takeshi Morita 0001,A Practical Teacher-Robot Collaboration Lesson Application Based on PRINTEPS.,2018,12,The Review of Socionetwork Strategies,1,db/journals/rss/rss12.html#MoritaANTKKY18,https://doi.org/10.1007/s12626-018-0021-x +Katsutoshi Yada,Modeling Bank Runs in Financial Crises.,2009,3,The Review of Socionetwork Strategies,1,db/journals/rss/rss3.html#YadaWUN09,https://doi.org/10.1007/s12626-008-0005-3 +Ryoichi Jingai,Research Note: A High Resolution Graph Viewer for Multi-monitor Visualization Environment.,2015,9,The Review of Socionetwork Strategies,1,db/journals/rss/rss9.html#JingaiKDS15,https://doi.org/10.1007/s12626-015-0052-5 +Soichiro Takagi,Globalization of Information Services and the Industrial Structure of the Japanese Economy.,2014,8,The Review of Socionetwork Strategies,1,db/journals/rss/rss8.html#TakagiT14,https://doi.org/10.1007/s12626-014-0041-0 +Apantri Peungnumsai,A Taxi Zoning Analysis Using Large-Scale Probe Data: A Case Study for Metropolitan Bangkok.,2018,12,The Review of Socionetwork Strategies,1,db/journals/rss/rss12.html#PeungnumsaiWNM18,https://doi.org/10.1007/s12626-018-0019-4 +Kazunori Minetaki,Subcontracting Structure and Productivity in the Japanese Software Industry.,2009,3,The Review of Socionetwork Strategies,2,db/journals/rss/rss3.html#MinetakiM09,https://doi.org/10.1007/s12626-009-0008-8 +Koichi Takeda,Investment Literacy and Individual Investor Biases: Survey Evidence in the Japanese Stock Market.,2013,7,The Review of Socionetwork Strategies,1,db/journals/rss/rss7.html#TakedaTK13,https://doi.org/10.1007/s12626-012-0031-z +Soichiro Takagi,Research Note: An Introduction to the Economic Analysis of Open Data.,2014,8,The Review of Socionetwork Strategies,2,db/journals/rss/rss8.html#Takagi14,https://doi.org/10.1007/s12626-014-0048-6 +Kazunori Minetaki,The Effect of Information Communication Technology and Corporate Organizational Reforms on Productivity in Japan: Firm- level Evidence.,2008,2,The Review of Socionetwork Strategies,1,db/journals/rss/rss2.html#Minetaki08,https://doi.org/10.1007/s12626-008-0002-6 +Takahiro Nishigaki,An Interactive Independent Topic Analysis for a Mass Document Review Service.,2018,12,The Review of Socionetwork Strategies,1,db/journals/rss/rss12.html#NishigakiNO18,https://doi.org/10.1007/s12626-018-0018-5 +Mu-Hua Lin,Opportunities for Crossing the Chasm between Early Adopters and the Early Majority through New Uses of Innovative Products.,2011,5,The Review of Socionetwork Strategies,2,db/journals/rss/rss5.html#LinH11,https://doi.org/10.1007/s12626-011-0019-0 +Hiroshi Arikawa,Implementation issues in a grid-based multi-agent simulation system used for increasing labor supply.,2007,1,The Review of Socionetwork Strategies,1,db/journals/rss/rss1.html#ArikawaM07,https://doi.org/10.1007/BF02981627 +Gijs Dekkers,Dynamic Microsimulation Modeling for Policy Support: An Application to Belgium and possibilities for Japan.,2012,6,The Review of Socionetwork Strategies,2,db/journals/rss/rss6.html#DekkersID12,https://doi.org/10.1007/s12626-012-0026-9 +Yasuhiro Watashiba,Efficacy Analysis of a SDN-enhanced Resource Management System through NAS Parallel Benchmarks.,2014,8,The Review of Socionetwork Strategies,2,db/journals/rss/rss8.html#WatashibaDAKIYKST14,https://doi.org/10.1007/s12626-014-0045-9 +Yasuharu Ukai,Editorial Note: Outlook of the Review of Socionetwork Strategies: 2015.,2015,9,The Review of Socionetwork Strategies,2,db/journals/rss/rss9.html#Ukai15,https://doi.org/10.1007/s12626-015-0058-z +Dale W. Jorgenson,Contributions of Econometrics to Public Policy Analysis in the Information Age.,2009,3,The Review of Socionetwork Strategies,1,db/journals/rss/rss3.html#Jorgenson09,https://doi.org/10.1007/s12626-008-0004-4 +Hiroki Idota,The Effectiveness of Social Media for Business Activities in Japanese Firms.,2017,11,The Review of Socionetwork Strategies,1,db/journals/rss/rss11.html#IdotaBT17,https://doi.org/10.1007/s12626-017-0006-1 +Takeshi Morita 0001,PRINTEPS: An Integrated Intelligent Application Development Platform based on Stream Reasoning and ROS.,2018,12,The Review of Socionetwork Strategies,1,db/journals/rss/rss12.html#MoritaNKY18,https://doi.org/10.1007/s12626-018-0020-y +,Newsletter.,2015,9,The Review of Socionetwork Strategies,2,db/journals/rss/rss9.html#X15,https://doi.org/10.1007/s12626-015-0059-y +Yasuharu Ukai,The Future of Socionetwork Strategies.,2008,2,The Review of Socionetwork Strategies,1,db/journals/rss/rss2.html#Ukai08,https://doi.org/10.1007/s12626-008-0001-7 +Keita Kinjo,A Pricing Strategy with Consumption Externality when the Reference Group is Large.,2013,7,The Review of Socionetwork Strategies,1,db/journals/rss/rss7.html#KinjoE13,https://doi.org/10.1007/s12626-012-0029-6 +Yasuharu Ukai,Erratum to: A New Type of Computer Premium and Its Correlation to Individual Wages.,2013,7,The Review of Socionetwork Strategies,1,db/journals/rss/rss7.html#Ukai13a,https://doi.org/10.1007/s12626-013-0034-4 +,Newsletter.,2016,10,The Review of Socionetwork Strategies,1,db/journals/rss/rss10.html#X16,https://doi.org/10.1007/s12626-016-0063-x +Atsushi Takizawa,An Emergency Evacuation Planning Model Using the Universally Quickest Flow.,2012,6,The Review of Socionetwork Strategies,1,db/journals/rss/rss6.html#TakizawaIK12,https://doi.org/10.1007/s12626-012-0024-y +Yasuharu Ukai,A New Type of Computer Premium and Its Correlation to Individual Wages.,2012,6,The Review of Socionetwork Strategies,2,db/journals/rss/rss6.html#Ukai12,https://doi.org/10.1007/s12626-012-027-8 +Shigeru Matsumoto,Resolving service quality uncertainty through word-of-mouth communication.,2008,1,The Review of Socionetwork Strategies,2,db/journals/rss/rss1.html#MatsumotoC08,https://doi.org/10.1007/BF02981636 +Nigel Yee,Principal Component Selection for Neural Network Classification of Active Ingredients from Near Infrared Spectra.,2016,10,The Review of Socionetwork Strategies,2,db/journals/rss/rss10.html#Yee16,https://doi.org/10.1007/s12626-016-0066-7 +Shinji Watanabe,Are Depositors Aware of the Governance of their Banks?1.,2013,7,The Review of Socionetwork Strategies,2,db/journals/rss/rss7.html#Watanabe13,https://doi.org/10.1007/s12626-013-0036-2 +Yasuharu Ukai,Editorial Note: Outlook of the Review of Socionetwork Strategies: 2017.,2017,11,The Review of Socionetwork Strategies,2,db/journals/rss/rss11.html#Ukai17,https://doi.org/10.1007/s12626-017-0012-3 +Shinichi Yamaguchi,The Substitution Effect of Mobile Games on Console Games: An Empirical Analysis of the Japanese Video Game Industry.,2017,11,The Review of Socionetwork Strategies,2,db/journals/rss/rss11.html#YamaguchiIST17,https://doi.org/10.1007/s12626-017-0014-1 +Zakaria Saoud,Exploiting Social Annotations to Generate Resource Descriptions in a Distributed Environment: Cooperative Multi-Agent Simulation on Query-Based Sampling.,2017,11,The Review of Socionetwork Strategies,1,db/journals/rss/rss11.html#SaoudKSD17,https://doi.org/10.1007/s12626-017-0001-6 +Seiichi Inagaki,A Microsimulation Model for Projections of Japanese Socioeconomic Structure.,2008,2,The Review of Socionetwork Strategies,1,db/journals/rss/rss2.html#Inagaki08,https://doi.org/10.1007/s12626-008-0003-5 +Kuo-Sui Lin,Fuzzy Similarity Matching Method for Interior Design Drawing Recommendation.,2016,10,The Review of Socionetwork Strategies,1,db/journals/rss/rss10.html#Lin16,https://doi.org/10.1007/s12626-016-0061-z +Yi Zuo,An Exploratory Look at Supply Chains in Japan from Multiscale Network Perspectives.,2017,11,The Review of Socionetwork Strategies,2,db/journals/rss/rss11.html#ZuoK17,https://doi.org/10.1007/s12626-017-0009-y +Seiichi Inagaki,The Effect of Changes in Nuptiality Behavior after the 1980s on the Poverty Rate for the Elderly in Japan -Analysis Using a Dynamic Microsimulation Model-.,2014,8,The Review of Socionetwork Strategies,1,db/journals/rss/rss8.html#Inagaki14,https://doi.org/10.1007/s12626-014-0040-1 +Nozomi Matsumoto,Bayesian Estimation with Combined Empirical Prior Distribution for a Multinomial Logit Model.,2015,9,The Review of Socionetwork Strategies,2,db/journals/rss/rss9.html#MatsumotoK15,https://doi.org/10.1007/s12626-015-0056-1 +Yasuharu Ukai,Editorial Note: Outlook of the Review of Socionetwork Strategies: 2014.,2014,8,The Review of Socionetwork Strategies,2,db/journals/rss/rss8.html#Ukai14,https://doi.org/10.1007/s12626-014-0050-z +Merve Mitik,Data Mining Approach for Direct Marketing of Banking Products with Profit/Cost Analysis.,2017,11,The Review of Socionetwork Strategies,1,db/journals/rss/rss11.html#MitikKKTY17,https://doi.org/10.1007/s12626-017-0002-5 +Noriyuki Kushiro,A Toulmin's Framework-Based Method for Design Argumentation of Cyber-Physical Systems.,2015,2,OJIS,2,db/journals/ojis/ojis2.html#KushiroTMT15,http://nbn-resolving.de/urn:nbn:de:101:1-201705194809 +Paulo Rupino da Cunha,IT Governance Practices for Electric Utilities: Insights from Brazil and Europe.,2015,2,OJIS,1,db/journals/ojis/ojis2.html#CunhaMMF15,http://nbn-resolving.de/urn:nbn:de:101:1-201705194743 +Stephan Kessler,Pattern-sensitive Time-series Anonymization and its Application to Energy-Consumption Data.,2014,1,OJIS,1,db/journals/ojis/ojis1.html#KesslerBBB14,http://nbn-resolving.de/urn:nbn:de:101:1-201705194696 +Fajar J. Ekaputra,Ontology-Based Data Integration in Multi-Disciplinary Engineering Environments: A Review.,2017,4,OJIS,1,db/journals/ojis/ojis4.html#EkaputraSSKB17,https://www.ronpub.com/ojis/OJIS_2017v4i1n01_Ekaputra.html +Marinette Bouet,A NoSQL-Based Framework for Managing Home Services.,2016,3,OJIS,1,db/journals/ojis/ojis3.html#BouetS16,http://nbn-resolving.de/urn:nbn:de:101:1-201705194810 +Mark Harwardt,Criteria of Successful IT Projects from Management's Perspective.,2016,3,OJIS,1,db/journals/ojis/ojis3.html#Harwardt16,http://nbn-resolving.de/urn:nbn:de:101:1-201705194797 +Daniel S. Soper,Halo Effect Contamination in Assessments of Web Interface Design.,2018,5,OJIS,1,db/journals/ojis/ojis5.html#SoperP18,https://www.ronpub.com/ojis/OJIS_2018v5i1n01_Soper.html +Daniel Lemire,Introductory Editorial.,2014,1,OJIS,1,db/journals/ojis/ojis1.html#Lemire14,http://nbn-resolving.de/urn:nbn:de:101:1-201705194678 +Tim A. Majchrzak,Achieving Business Practicability of Model-Driven Cross-Platform Apps.,2015,2,OJIS,2,db/journals/ojis/ojis2.html#MajchrzakEK15,http://nbn-resolving.de/urn:nbn:de:101:1-201705194768 +Fabian Rosenthal,Purposeful Searching for Citations of Scholarly Publications.,2017,4,OJIS,1,db/journals/ojis/ojis4.html#RosenthalG17,https://www.ronpub.com/ojis/OJIS_2017v4i1n02_Rosenthal.html +Silvia von Stackelberg,Detecting Data-Flow Errors in BPMN 2.0.,2014,1,OJIS,2,db/journals/ojis/ojis1.html#StackelbergPMB14,http://nbn-resolving.de/urn:nbn:de:101:1-2017052611934 +Kenshin Ikegami,Model of Creative Thinking Process on Analysis of Handwriting by Digital Pen.,2015,2,OJIS,2,db/journals/ojis/ojis2.html#IkegamiO15,http://nbn-resolving.de/urn:nbn:de:101:1-201705194781 +Mark Harwardt,IT Project Success from the Management Perspective - A Quantitative Evaluation.,2018,5,OJIS,1,db/journals/ojis/ojis5.html#Harwardt18,https://www.ronpub.com/ojis/OJIS_2018v5i1n02_Harwardt.html +Juhani Iivari,Perceived Sociability of Use and Individual Use of Social Networking Sites - A Field Study of Facebook Use in the Arctic.,2014,1,OJIS,1,db/journals/ojis/ojis1.html#Iivari14,http://nbn-resolving.de/urn:nbn:de:101:1-201705194708 +Ross A. Malaga,Using Nuisance Telephone Denial of Service to Combat Online Sex Trafficking.,2015,2,OJIS,1,db/journals/ojis/ojis2.html#Malaga15,http://nbn-resolving.de/urn:nbn:de:101:1-201705194736 +Pakizar Shamoi,Fuzzy Color Space for Apparel Coordination.,2014,1,OJIS,2,db/journals/ojis/ojis1.html#ShamoiIK14,http://nbn-resolving.de/urn:nbn:de:101:1-201705194710 +Yukio Ohsawa,Designing the Market of Data - For Practical Data Sharing via Educational and Innovative Communications.,2015,2,OJIS,2,db/journals/ojis/ojis2.html#OhsawaA15,http://nbn-resolving.de/urn:nbn:de:101:1-201705194720 +Teruaki Hayashi,Relationship between Externalized Knowledge and Evaluation in the Process of Creating Strategic Scenarios.,2015,2,OJIS,1,db/journals/ojis/ojis2.html#HayashiO15,http://nbn-resolving.de/urn:nbn:de:101:1-201705194751 +Jun Shibayama,Reformulation of the ADI-BPM using a fundamental scheme.,2012,9,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee9.html#ShibayamaYYN12,https://doi.org/10.1587/elex.9.365 +Sungjae Lee,Way-lookup buffer for low-power set-associative cache.,2011,8,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee8.html#LeeKL11,https://doi.org/10.1587/elex.8.1961 +Yintang Yang,New coaxial through silicon via (TSV) applied for three dimensional integrated circuits (3D ICs).,2016,13,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee13.html#YangZDZMZ16,https://doi.org/10.1587/elex.13.20160192 +Yong-Luo Shen,Loeffler DCT accelerator for small portable devices.,2015,12,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee12.html#ShenJO15,https://doi.org/10.1587/elex.12.20150411 +Ockgoo Lee,Optimization of CMOS power-cell layout for improving junction breakdown.,2014,11,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee11.html#LeeHAKHYLLL14,https://doi.org/10.1587/elex.11.20140523 +Tomoyuki Kato,Sub-harmonic mode-locking of VCSEL with a concave external mirror.,2008,5,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee5.html#KatoMSK08,https://doi.org/10.1587/elex.5.152 +Seong Min Jo,Leakage-aware adaptive routing for pipelined on-chip networks in ultra-deep sub-micron technologies.,2012,9,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee9.html#JoS12,https://doi.org/10.1587/elex.9.1887 +Raja Ali Riaz,EXIT chart aided design of near-capacity UWB impulse radio using self-concatenated codes.,2011,8,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee8.html#RiazSZMA11,https://doi.org/10.1587/elex.8.1486 +Feifei Cao,High-performance detection algorithm for MIMO-OFDM in doubly selective channels.,2010,7,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee7.html#CaoLY10,https://doi.org/10.1587/elex.7.487 +Tim Wauters,Virtual topology design issues for variable traffic.,2004,1,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee1.html#WautersCBVMCPD04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.328 +Mohammad Naser-Moghadasi,Highly compact meander line antenna using DGS technique for WLAN communication systems.,2011,8,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee8.html#Naser-MoghadasiSHYV11,https://doi.org/10.1587/elex.8.722 +Wonseok Choe,Full H-band waveguide-to-coupled microstrip transition using dipole antenna with directors.,2017,14,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee14.html#ChoeKJ17,https://doi.org/10.1587/elex.14.20170487 +Atsushi Yao,Reading and writing operations of memory device in micro-electromechanical resonator.,2012,9,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee9.html#YaoH12,https://doi.org/10.1587/elex.9.1230 +Shiquan Fan,Design and implementation of a mixed-signal Boost converter with a novel multi-phase clock DPWM.,2010,7,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee7.html#FanWG10,https://doi.org/10.1587/elex.7.1091 +Jun Yuan,A resistance matching based self-testable current-mode R-2R digital-to-analog converter.,2013,10,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee10.html#YuanT13,https://doi.org/10.1587/elex.10.20130753 +Byung-Soo Kim,A high performance fully pipeline JPEG-LS encoder for lossless compression.,2013,10,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee10.html#KimBKC13,https://doi.org/10.1587/elex.10.20130348 +Govindaraju Kavya,Wearable advanced single chip ECG telemonitoring system using SoPC.,2014,11,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee11.html#KavyaB14,https://doi.org/10.1587/elex.11.20140097 +Zhengping Li,Variation-resilient pipelined timing tracking circuit for SRAM sense amplifier.,2016,13,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee13.html#LiPLGTJC16,https://doi.org/10.1587/elex.13.20150951 +Piotr Porwik,A new fingerprint ridges frequency determination method.,2009,6,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee6.html#PorwikW09,https://doi.org/10.1587/elex.6.154 +Tianming Ni,Vernier ring based pre-bond through silicon vias test in 3D ICs.,2017,14,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee14.html#NiNLBXFHW17,https://doi.org/10.1587/elex.14.20170590 +Takashi Nakanishi,High sensitivity APD burst-mode receiver for 10Gbit/s TDM-PON system.,2007,4,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee4.html#NakanishiSFYNKNOT07,https://doi.org/10.1587/elex.4.588 +Hongfu Meng,Multi-objective optimization of radome performance with the structure of local uniform thickness.,2008,5,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee5.html#MengD08,https://doi.org/10.1587/elex.5.882 +Seongjae Cho,Vertical stack array of one-time programmable nonvolatile memory based on pn-junction diode and its operation scheme for faster access.,2014,11,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee11.html#ChoJKP14,https://doi.org/10.1587/elex.11.20131041 +Wen Jun Lim,Ultra-wideband GaN HEMT power amplifier with practical mixed lumped approach employing real-frequency technique.,2017,14,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee14.html#LimKYP17,https://doi.org/10.1587/elex.14.20170455 +Anne O'Donnell,Area-delay efficient arithmetic Mixed-Radix Conversion for Fermat moduli.,2011,8,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee8.html#ODonnellBM11,https://doi.org/10.1587/elex.8.1040 +Mitsuhiro Yasumoto,Arrayed-waveguide grating with wavefront compensation lenses for spatial filter integration.,2006,3,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee3.html#YasumotoSTT06,https://doi.org/10.1587/elex.3.221 +Yuejun Zhang,Design of a high information-density multiple valued 2-read 1-write register file.,2012,9,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee9.html#ZhangWXY12,https://doi.org/10.1587/elex.9.958 +Yutaka Chaen,Low wavelength dependency design for MMI (multi-mode interference) mode converter.,2015,12,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee12.html#ChaenTJH15,https://doi.org/10.1587/elex.12.20150727 +Yong-Sik Kwak,A 1.8 V 89.2 dB dynamic range delta-sigma modulator using an op-amp dynamic current biasing technique.,2017,14,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee14.html#KwakCKA17,https://doi.org/10.1587/elex.14.20171007 +Guangji He,A 54-mw 3*-real-time 60-kword continuous speech recognition processor VLSI.,2014,11,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee11.html#HeMMIKY14,https://doi.org/10.1587/elex.10.20130787 +Thomas Basikolo,A note on CRLB formulation for underdetermined DOA estimation in circularly configured planar arrays.,2018,15,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee15.html#BasikoloIA18,https://doi.org/10.1587/elex.15.20180193 +Yongqian Du,A UHF RFID chip solution with new oscillator calibration scheme and 16k bits EEPROM.,2016,13,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee13.html#DuZL016,https://doi.org/10.1587/elex.13.20160472 +G. Ramana Murthy,A new 6-T multiplexer based full-adder for low power and leakage current optimization.,2012,9,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee9.html#MurthySVL12,https://doi.org/10.1587/elex.9.1434 +Junji Higashiyama,Simply configured Radio on Fiber link yielding positive gain for mobile phone system.,2014,11,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee11.html#HigashiyamaTK14,https://doi.org/10.1587/elex.11.20140411 +Han Jung Song,Three-phase clock driven chaotic circuit with dual feedback loops.,2012,9,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee9.html#Song12,https://doi.org/10.1587/elex.9.1516 +Vicenç M. Sala,Theoretical estimation of distorting effects by trr of parasitic MOSFET-Diode in DCI-NPC audio power amplifiers.,2012,9,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee9.html#SalaR12,https://doi.org/10.1587/elex.9.484 +Chixiao Chen,A 270-MS/s 6-b SAR ADC with preamplifier sharing and self-locking comparators.,2015,12,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee12.html#ChenXF0FR15,https://doi.org/10.1587/elex.12.20141143 +Seungbeom Lee,Two-parallel Reed-Solomon based FEC architecture for optical communications.,2008,5,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee5.html#LeeCL08,https://doi.org/10.1587/elex.5.374 +Ning Liu,A miniaturized FSS based on tortuous structure design.,2017,14,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee14.html#LiuSFG17,https://doi.org/10.1587/elex.13.20161129 +Myunghwan Ryu,A high resolution and high linearity 45nm CMOS fully digital voltage sensor for low power applications.,2013,10,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee10.html#RyuK13a,https://doi.org/10.1587/elex.10.20130400 +Sung Won Yoon,Adaptive motion artifacts reduction algorithm for ECG signal in textile wearable sensor.,2007,4,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee4.html#YoonSML07,https://doi.org/10.1587/elex.4.312 +Muhammad Zeeshan Malik,A new modified quadratic boost converter with high voltage gain.,2017,14,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee14.html#MalikXFC17,https://doi.org/10.1587/elex.13.20161176 +Dongsuk Shin,Energy-efficient heterogeneous memory system for mobile platforms.,2017,14,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee14.html#ShinJL17,https://doi.org/10.1587/elex.14.20171002 +Keiichi Satoh,Three-dimensional ultrasonic imaging operation using FPGA.,2009,6,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee6.html#SatohTT09,https://doi.org/10.1587/elex.6.84 +C. M. R. Prabhu,Novel Eight-Transistor SRAM cell for write power reduction.,2010,7,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee7.html#PrabhuS10,https://doi.org/10.1587/elex.7.1175 +Li Zhou,Flexible and high-efficiency turbo product code decoder design.,2012,9,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee9.html#ZhouLZ12,https://doi.org/10.1587/elex.9.1044 +S. Balamurugan,Design of low power fixed-width multiplier with row bypassing.,2012,9,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee9.html#BalamuruganGASMM12,https://doi.org/10.1587/elex.9.1568 +Manabu Oguma,Wide passband tandem MZI-synchronized AWG employing mode converter and multimode waveguide.,2010,7,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee7.html#OgumaKKHSIT10,https://doi.org/10.1587/elex.7.823 +Takahiro Emoto,Linear neural networks for spectral envelope estimation.,2010,7,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee7.html#EmotoAAKK10,https://doi.org/10.1587/elex.7.691 +Shin Hur,Biomimetic acoustic sensor based on piezoelectric cantilever array.,2012,9,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee9.html#HurKJL12,https://doi.org/10.1587/elex.9.945 +Yanlong Zhang,A broadband 5-bit CMOS step attenuator in small area with low insertion loss.,2014,11,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee11.html#ZhangZLQR14,https://doi.org/10.1587/elex.11.20140216 +Liao Wu,A direct AC-DC converter integrated with SSHI circuit for piezoelectric energy harvesting.,2017,14,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee14.html#WuGLW17,https://doi.org/10.1587/elex.14.20170431 +Yongseok Jin,Reduction of quantization errors caused by dynamic LCD backlight scaling.,2009,6,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee6.html#JinKL09,https://doi.org/10.1587/elex.6.535 +Xiaojuan Chen,Retraction: Design of ultra low noise amplifier for noise measurement in inverter fault diagnosis.,2015,12,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee12.html#ChenCW15a,https://doi.org/10.1587/elex.12.20158002 +Chunyu Peng,Additive-calibration scheme for leakage compensation of low voltage SRAM.,2016,13,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee13.html#PengALWH16,https://doi.org/10.1587/elex.13.20160720 +Tomoyuki Uehara,Frequency stabilization of two orthogonally polarized external cavity laser diodes using a novel *-type optical configuration consist of a phase modulator and a Faraday rotator mirror.,2014,11,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee11.html#UeharaHTTO14,https://doi.org/10.1587/elex.11.20140169 +K. J. Kim,Design of an FIR notch filter with arbitrary notch frequency by using a modified sampling kernel.,2008,5,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee5.html#KimN08,https://doi.org/10.1587/elex.5.60 +Yasuyuki Miyamoto,Recent progress in compound semiconductor electron devices.,2016,13,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee13.html#Miyamoto16,https://doi.org/10.1587/elex.13.20162002 +Afzel Noore,Reliable detection of CMOS stuck-open faults due to variable internal delays.,2005,2,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee2.html#Noore05,https://doi.org/10.1587/elex.2.292 +Seong Jae Jeong,Novel hexaband folded meander-patch antenna for wireless USB dongles.,2010,7,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee7.html#JeongH10,https://doi.org/10.1587/elex.7.1214 +Ahmed Wasif Reza,Intelligent Ray-Tracing: an efficient indoor ray propagation model.,2011,8,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee8.html#RezaDNS11,https://doi.org/10.1587/elex.8.1920 +Tsutomu Yoshimura,An analysis of interference in synchronous systems.,2004,1,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee1.html#YoshimuraI04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.465 +Naoteru Shigekawa,Numerical analysis of impact of stress in passivation films on electrical properties in AlGaN/GaN heterostructures.,2009,6,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee6.html#ShigekawaS09,https://doi.org/10.1587/elex.6.1045 +Saroj R. Tripathi,Random error estimation in refractive index measured with the terahertz time domain spectroscopy.,2009,6,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee6.html#TripathiAMAHH09,https://doi.org/10.1587/elex.6.1690 +Hyun-Seung Seo,Bootstrapped ring oscillator with feedforward inputs for ultra-low-voltage application.,2015,12,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee12.html#SeoPK15,https://doi.org/10.1587/elex.12.20150828 +Gunok Jung,Fully digital clock frequency doubler.,2010,7,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee7.html#JungPCS10,https://doi.org/10.1587/elex.7.416 +Hyejeong Hong,Thermal-aware dynamic voltage frequency scaling for many-core processors under process variations.,2013,10,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee10.html#HongLLK13,https://doi.org/10.1587/elex.10.20130463 +Masaaki Fujiyoshi,A parameter memorization-free lossless data hiding method with flexible payload size.,2010,7,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee7.html#FujiyoshiTK10,https://doi.org/10.1587/elex.7.1702 +Mehdi Saberi,A low-power Successive Approximation ADC for biomedical applications.,2011,8,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee8.html#SaberiSLM11,https://doi.org/10.1587/elex.8.195 +Dongjin Oh,A low-power 802.11a CMO RF front-end with linear dual conversion mixer.,2011,8,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee8.html#OhK11,https://doi.org/10.1587/elex.8.1174 +W. S. Lim,Optimization and stabilization of sequential learning in RBF network for nonlinear function approximation.,2008,5,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee5.html#LimY08,https://doi.org/10.1587/elex.5.1030 +Young-Ki Cho,Compact microwave waveguide limiter.,2016,13,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee13.html#ChoPYLK16,https://doi.org/10.1587/elex.13.20160854 +Chanil Park,Self-healing key distribution scheme with long service time.,2010,7,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee7.html#ParkHKY10,https://doi.org/10.1587/elex.7.913 +K. J. Kim,FIR filter solution to unusual gain responses arising in Parks-McClellan algorithm.,2009,6,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee6.html#KimN09a,https://doi.org/10.1587/elex.6.1226 +Kostas E. Psannis,Efficient redundant frames encoding algorithm for streaming video over error prone wireless channels.,2009,6,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee6.html#Psannis09,https://doi.org/10.1587/elex.6.1497 +Kazuya Masu,Physical design challenges to nano-CMOS circuits.,2009,6,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee6.html#MasuINSA09,https://doi.org/10.1587/elex.6.703 +Sanhae Kim,A TDoA-based mobile-WiMAX position tracking system to meet E-911 criteria in GPS-shadowed areas.,2011,8,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee8.html#KimS11a,https://doi.org/10.1587/elex.8.1816 +Bilal Aslam,Frequency signature chipless RFID tag with enhanced data capacity.,2015,12,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee12.html#AslamKHAT15,https://doi.org/10.1587/elex.12.20150623 +Mingjiang Wang,A two-item floating point fused dot-product unit with latency reduced.,2016,13,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee13.html#WangLLZ16,https://doi.org/10.1587/elex.13.20160937 +Chi-Hao Cheng,Wideband receiver design using frequency-dependent magnitude/phase mismatch.,2014,11,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee11.html#Cheng14,https://doi.org/10.1587/elex.11.20140238 +Zhen Xie,An improved memory system simulator based on DRAMSim2.,2014,11,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee11.html#XieZ0S14,https://doi.org/10.1587/elex.11.20140466 +Xu Hui,DICE-based test structure to measure the strength of charge sharing effect.,2015,12,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee12.html#HuiYL15,https://doi.org/10.1587/elex.12.20150629 +Ryo Kawata,Full-set high-speed mode analysis in few-mode fibers by polarization-split segmented coherent detection method: Proposal and simulation of calculation error.,2018,15,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee15.html#KawataWK18,https://doi.org/10.1587/elex.14.20171132 +Daisuke Hayashi,Bit error rates of flip-flop operations with AND gate functionality using a 1.55-µ*m polarization bistable VCSEL.,2015,12,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee12.html#HayashiNKK15,https://doi.org/10.1587/elex.12.20150479 +Kenichi Masuda,A novel 2 and** 2 multi-arm type of optical switch using multimode interference couplers.,2006,3,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee3.html#MasudaTT06,https://doi.org/10.1587/elex.3.191 +Samaneh Mousavi,Effect of existence of a PdO interface layer in hydrogen gas sensors.,2009,6,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee6.html#MousaviHKA09,https://doi.org/10.1587/elex.6.1253 +Mohd Nizam Abdullah,Observation and comparison of multiwavelength generation erbium doped fibre ring laser utilising photonic crystal fibre with zero dispersion at 1040 nm and 1550 nm.,2015,12,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee12.html#AbdullahSMEZ15,https://doi.org/10.1587/elex.12.20150413 +Yan Tu,Research on cross section of UHF radio wave scattering from surface waves on water.,2016,13,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee13.html#TuWLY16,https://doi.org/10.1587/elex.13.20160898 +Jintao Zheng,Dynamically reconfigurable simulation platform for 3D NoC based on multi-FPGA.,2015,12,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee12.html#ZhengWYGZ15,https://doi.org/10.1587/elex.12.20150065 +Chao Zhang,Research on single-event transient mechanism in a novel SOI CMOS technology.,2014,11,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee11.html#ZhangCCY14,https://doi.org/10.1587/elex.11.20140518 +Yi-Zhen Liao,Versatile universal voltage-mode filter employing minimum components.,2009,6,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee6.html#LiaoCL09,https://doi.org/10.1587/elex.6.1246 +Zhebin Hu,Concurrent tri-band power amplifier based on novel tri-band impedance transformer.,2016,13,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee13.html#HuHPSHYL16,https://doi.org/10.1587/elex.13.20160896 +Haiyan Kang,Two dimensional electrical conductivity model of the solid state plasma for SPiN device.,2017,14,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee14.html#KangHWSHZ17,https://doi.org/10.1587/elex.13.20161041 +Jong-Seok Lee,Design of field limiting ring employing trench structure for high power devices.,2009,6,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee6.html#LeeS09,https://doi.org/10.1587/elex.6.1621 +Jae Joon Kim,A low-power/high-resolution dual-mode analog-to-digital converter for wireless sensor applications.,2011,8,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee8.html#KimCCB11,https://doi.org/10.1587/elex.8.1730 +Ozdal Boyraz,Observation of simultaneous Stokes and anti-Stokes emission in a silicon Raman laser.,2004,1,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee1.html#BoyrazDJ04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.435 +Jizeng Wei,A modified post-TnL vertex cache for the multi-shader embedded GPUs.,2015,12,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee12.html#WeiCLGS15,https://doi.org/10.1587/elex.12.20150314 +Wenjian Jiang,A low-power high-speed true single-phase clock-based divide-by-2/3 prescaler.,2017,14,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee14.html#JiangYH17,https://doi.org/10.1587/elex.13.20160446 +Fan Wang,Design and FPGA implementation of digital pulse compression for HF chirp radar based on modified orthogonal transformation.,2011,8,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee8.html#WangGZZSS11,https://doi.org/10.1587/elex.8.1736 +Yusuke Taii,Transparent color pixels using plastic MEMS technology for electronic papers.,2006,3,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee3.html#TaiiHFT06,https://doi.org/10.1587/elex.3.97 +Chenxu Wang,An intelligent classification method for Trojan detection based on side-channel analysis.,2013,10,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee10.html#WangLYW13,https://doi.org/10.1587/elex.10.20130602 +Zhuqian Gong,Improved MM-PO hybrid formulation for scattering of plane wave by an infinite wedge.,2007,4,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee4.html#GongZ07,https://doi.org/10.1587/elex.4.127 +Xinjie Huang,An evolutionary algorithm based on novel hybrid repair strategy for combinational logic circuits.,2015,12,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee12.html#HuangWZL15,https://doi.org/10.1587/elex.12.20150765 +Toshihisa Kamei,The 40GHz band duplexer with E-plane planar circuit.,2007,4,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee4.html#KameiUT07,https://doi.org/10.1587/elex.4.549 +Han-Yeol Lee,A true single-phase clocked flip-flop with leakage current compensation.,2012,9,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee9.html#LeeJ12,https://doi.org/10.1587/elex.9.1807 +Fumie Costen,Alternative formulation of three dimensional frequency dependent ADI-FDTD method.,2004,1,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee1.html#CostenT04a,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.528 +Li Liu,Improved model of GNSS radio frequency compatibility assessment.,2011,8,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee8.html#LiuZLN11,https://doi.org/10.1587/elex.8.636 +Hyun-Wook Kang,Ternary-level thermometer C-DAC switching scheme for flash-assisted SAR ADCs.,2015,12,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee12.html#KangHPKAR15,https://doi.org/10.1587/elex.12.20150302 +Huiseong Han,Hafnium-nitride gate insulator formed by electron-cyclotron-resonance plasma sputtering.,2012,9,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee9.html#HanO12,https://doi.org/10.1587/elex.9.1329 +Mingshuo Wang,A 42fJ 8-bit 1.0-GS/s folding and interpolating ADC with 1GHz signal bandwidth.,2014,11,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee11.html#WangY0R14,https://doi.org/10.1587/elex.11.20130986 +Dong-Myung Lee,A novel gate driving scheme for high power PWM and bypass switches.,2010,7,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee7.html#LeeKSHHR10,https://doi.org/10.1587/elex.7.704 +Liandong Wang,A novel pulsed Doppler radar seeker modeling method used for closed loop trajectory simulation.,2014,11,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee11.html#WangDY14,https://doi.org/10.1587/elex.11.20140844 +Seyed Yahya Mortazavi,High-accuracy Comparator-Based Switched-Capacitor structure.,2010,7,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee7.html#MortazaviNA10,https://doi.org/10.1587/elex.7.352 +Dong-Ho Lee,A linearized amplifier using self-mixing feedback technique.,2014,11,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee11.html#Lee14a,https://doi.org/10.1587/elex.11.20140084 +Armin Mehran,DSM: A Heuristic Dynamic Spiral Mapping algorithm for network on chip.,2008,5,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee5.html#MehranKS08,https://doi.org/10.1587/elex.5.464 +Zhe Chen,220 GHz outdoor wireless communication system based on a Schottky-diode transceiver.,2016,13,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee13.html#ChenZZYFY16,https://doi.org/10.1587/elex.13.20160282 +Seyed Ehsan Hosseininejad,Directivity enhancement of circularly polarized microstrip antennas by chiral metamaterial covers.,2012,9,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee9.html#HosseininnejadKZR12,https://doi.org/10.1587/elex.9.117 +Alia Zakriti,Full-Wave analysis of microstrip lines with variable thickness substrates using the method of lines.,2004,1,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee1.html#ZakritiE04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.182 +Nobuo Akou,A behavioral model of unipolar resistive RAMs and its application to HSPICE integration.,2010,7,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee7.html#AkouAYKA10,https://doi.org/10.1587/elex.7.1467 +Kee-Won Kim,A semi-systolic Montgomery multiplier over GF(2m).,2015,12,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee12.html#KimJ15,https://doi.org/10.1587/elex.12.20150769 +Jin-Sung Youn,A bandwidth adjustable integrated optical receiver with an on-chip silicon avalanche photodetector.,2011,8,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee8.html#YounLPRC11,https://doi.org/10.1587/elex.8.404 +Hitoshi Wakita,28 Gbaud 16-QAM modulation with compact driver module for InP MZM.,2015,12,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee12.html#WakitaNKIYIN15,https://doi.org/10.1587/elex.12.20150656 +Guo-Wei Lu,An 80-GHz chirp-free carrier-suppressed optical pulse generator using cascaded 20-GHz clock-driven Mach-Zehnder modulators.,2008,5,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee5.html#LuM08,https://doi.org/10.1587/elex.5.1 +Ghazal Nabovati,Ultra-low power self-calibrating process-insensitive BPSK demodulator for bio-implantable chips.,2011,8,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee8.html#NabovatiMMN11,https://doi.org/10.1587/elex.8.819 +Antonio Jesús Torralba Silgado,A true low voltage class-AB current mirror.,2005,2,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee2.html#TorralbaCJMR05,https://doi.org/10.1587/elex.2.103 +Kazuhiko Honjo,Milestones of microwave and millimeter-wave technologies.,2009,6,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee6.html#Honjo09,https://doi.org/10.1587/elex.6.673 +Nam Ha-Van,Frequency limitation of an optimum performance class-E power amplifier.,2016,13,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee13.html#Ha-VanDKS16,https://doi.org/10.1587/elex.13.20160108 +Ryosuke Ozaki,Analysis of pulse responses from conducting strips with dispersion medium sandwiched air layer.,2018,15,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee15.html#OzakiY18,https://doi.org/10.1587/elex.15.20180112 +Yuan Wang 0001,Thermo data-weighted average dynamic element matching (DEM) encoder for current-steering DACs.,2013,10,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee10.html#WangLSZZ13,https://doi.org/10.1587/elex.10.20130459 +Behzad Bahraminejad,Single selective gas sensor for detecting flammable gases.,2009,6,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee6.html#BahraminejadBIH09,https://doi.org/10.1587/elex.6.876 +Yoshitaka Kurosaka,Band structure observation of 2D photonic crystal with various V-shaped air-hole arrangements.,2009,6,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee6.html#KurosakaISMKON09,https://doi.org/10.1587/elex.6.966 +Hiroshi Yamamoto,Desiccation of biological tissue measured by photonic millimeter-wave ellipsometry.,2012,9,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee9.html#YamamotoIN12,https://doi.org/10.1587/elex.9.29 +Honglin Xu,Low-distortion bandpass and#931*Γ6* modulator using two-path double-sampling technique.,2014,11,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee11.html#XuLHR14,https://doi.org/10.1587/elex.11.20140337 +Sung Shik Koh,Geometrical properties between 2-D image plane and 3-D error space.,2006,3,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee3.html#KohZH06,https://doi.org/10.1587/elex.3.333 +Hiroki Morimura,Ultra-low-power circuit techniques for mm-size wireless sensor nodes with energy harvesting.,2014,11,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee11.html#MorimuraOMSH14,https://doi.org/10.1587/elex.11.20142009 +Kazuya Hokazono,A novel high-precision DAC utilizing tribonacci series.,2012,9,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee9.html#HokazonoKKPY12,https://doi.org/10.1587/elex.9.515 +Adib Abrishamifar,Current controlled current differential current conveyor: a novel building block for analog signal processing.,2012,9,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee9.html#AbrishamifarKN12,https://doi.org/10.1587/elex.9.104 +To-Po Wang,A new dual -Gm structure with Class-AB operation of low-power low-phase-noise K-band CMOS VCO.,2014,11,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee11.html#WangW14,https://doi.org/10.1587/elex.11.20140250 +Shiho Kim,A maximum power point tracking circuit of thermoelectric generators without digital controllers.,2010,7,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee7.html#KimCKP10,https://doi.org/10.1587/elex.7.1539 +Tomoaki Ota,Enhanced modulation bandwidth of surface-emitting laser with external optical feedback.,2004,1,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee1.html#OtaUKK04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.368 +Ali Zahabi,A 2/5mW CMOS Delta Sigma modulator employed in an improved GSM/UMTS receiver structure.,2005,2,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee2.html#ZahabiSKJ05,https://doi.org/10.1587/elex.2.267 +Hyung-Gyu Lim,A method for reducing body exposure to electromagnetic field of pillow type wireless charger in fully implantable middle ear hearing device.,2009,6,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee6.html#LimKLJSLC09,https://doi.org/10.1587/elex.6.1318 +Chen Yang 0003,Area-efficient mixed-radix variable-length FFT processor.,2017,14,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee14.html#YangWXCM17,https://doi.org/10.1587/elex.14.20170232 +Abdul Majeed Kottampara Kuppalath,Nonlinear PFD free of glitches and blind zone for a fast locking PLL with reduced reference spur.,2016,13,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee13.html#KuppalathK16,https://doi.org/10.1587/elex.13.20160328 +Nam-Tae Kim,Design of an ultra-broadband power amplifier using distributed network synthesis.,2013,10,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee10.html#Kim13b,https://doi.org/10.1587/elex.10.20130614 +Hamed Aminzadeh,Low-cost area-efficient low-dropout regulators using MOSFET capacitors.,2008,5,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee5.html#AminzadehLM08,https://doi.org/10.1587/elex.5.610 +Huai-zhong Hu,A new algorithm for computing the fuzzy weighted average.,2010,7,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee7.html#HuGZ10,https://doi.org/10.1587/elex.7.1423 +Sen Wang,A 6-32GHz T/R switch in 0.18-µ*m CMOS technology.,2012,9,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee9.html#WangL12,https://doi.org/10.1587/elex.9.590 +Shuang He,A dual band-notched UWB antenna with hook-shaped slots and folded stubs.,2013,10,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee10.html#HeGXZX13,https://doi.org/10.1587/elex.10.20130020 +José Luis Rosselló,Self-configuring spiking neural networks.,2008,5,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee5.html#RosselloPC08,https://doi.org/10.1587/elex.5.921 +Quang Hong Ngo,DFG-based microwave /millimeter-wave signal generation device by using LiTaO3 rectangular waveguide.,2011,8,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee8.html#NgoMO11,https://doi.org/10.1587/elex.8.1892 +Hoon Kim,A bridge resistance deviation-to-time interval converter for resistive sensor bridges.,2007,4,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee4.html#KimCSK07,https://doi.org/10.1587/elex.4.326 +Mizuki Iwanami,Ultra small magneto-optic field probe fabricated by aerosol deposition.,2007,4,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee4.html#IwanamiNTOA07a,https://doi.org/10.1587/elex.4.542 +Hua Zhu,A novel compact dual-band antenna based on composite right/left hand transmission line (CRH-TL) for WLAN application.,2017,14,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee14.html#ZhuLDX17,https://doi.org/10.1587/elex.14.20170490 +Maher Assaad,Design and characterization of multi-color sensor circuit.,2011,8,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee8.html#AssaadY11,https://doi.org/10.1587/elex.8.2093 +Yoshio Itaya,Milestones in opto-electronics and fiber optics technologies.,2009,6,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee6.html#Itaya09,https://doi.org/10.1587/elex.6.640 +Chen-Chun Hung,Transparent microprobe array fabricated by MEMS hot embossing technology for photodynamic therapy application.,2010,7,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee7.html#HungCC10,https://doi.org/10.1587/elex.7.569 +Kengo Koizumi,10Gbit/s photonic crystal fiber transmissions with 1.1µ*m directly-modulated single-mode VCSEL.,2009,6,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee6.html#KoizumiYHN09,https://doi.org/10.1587/elex.6.1615 +Kwan-Hee Jo,A compact Verilog-A model for Multi-Level-Cell Phase-change RAMs.,2009,6,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee6.html#JoBMK09,https://doi.org/10.1587/elex.6.1414 +Lei Li,Design and implementation of clock network for nanometer FPGA.,2015,12,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee12.html#LiL15,https://doi.org/10.1587/elex.12.20141180 +Yoshihiro Ohta,Approximate 2-Degree-of-Freedom digital control for a boost DC-DC converter.,2012,9,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee9.html#OhtaH12,https://doi.org/10.1587/elex.9.496 +Roghayeh Doost,A new perceptually weighted distance measure for vector quantization of the STFT amplitudes in the speech application.,2009,6,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee6.html#DoostSS09,https://doi.org/10.1587/elex.6.824 +Chang-Hua Lin,Design and implementation of a battery test system with energy recycling technique.,2017,14,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee14.html#LinLLP17,https://doi.org/10.1587/elex.14.20170115 +Sooyong Choi,High recording density hard disk channel equalization using a bilinear recursive polynomial model.,2009,6,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee6.html#ChoiKCLL09,https://doi.org/10.1587/elex.6.1071 +Sung Bum Pan,A fingerprint matching hardware for smart cards.,2008,5,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee5.html#PanMKC08,https://doi.org/10.1587/elex.5.136 +Leonid Belostotski,Comparison of LNAs fabricated in 65-nm CMOS GP and LP processes for the Square Kilometre Array.,2012,9,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee9.html#Belostotski12,https://doi.org/10.1587/elex.9.636 +Hiroki Ujihara,Measurement of large-strain dependence of optical propagation loss in perfluorinated polymer fibers for use in seismic diagnosis.,2014,11,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee11.html#UjiharaHTMN14,https://doi.org/10.1587/elex.11.20140707 +Toshihiko Hirooka,First demonstration of digital coherent transmission in a deployed ROADM network with a 120 Gbit/s polarization-multiplexed 64 QAM signal.,2015,12,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee12.html#HirookaKWNSAW15,https://doi.org/10.1587/elex.12.20150884 +Soo-Young Suk,Voice-activated powered wheelchair for severely disabled persons.,2007,4,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee4.html#SukK07,https://doi.org/10.1587/elex.4.569 +Shinya Miyajima,A dividing method utilizing the best multiplication in affine arithmetic.,2004,1,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee1.html#MiyajimaK04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.176 +A. H. M. Almawgani,Coded cooperation using Reed Solomon codes in slow fading channel.,2010,7,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee7.html#AlmawganiS10,https://doi.org/10.1587/elex.7.27 +Pieter Demuytere,Hardware acceleration of an RTP Proxy Server.,2010,7,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee7.html#DemuytereLGBV10,https://doi.org/10.1587/elex.7.1640 +Héctor Vázquez-Leal,Transient and DC approximate expressions for diode circuits.,2012,9,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee9.html#Vazquez-LealFYHCSMD12,https://doi.org/10.1587/elex.9.522 +Yingpin Wang,Linear quadratic regulator control of LC active power filter without reference current detection.,2017,14,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee14.html#WangXW17,https://doi.org/10.1587/elex.14.20170785 +Akira Hirose,Efficient generation of holographic movies with frame interpolation using a coherent neural network.,2006,3,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee3.html#HiroseHT06,https://doi.org/10.1587/elex.3.417 +Ji Ding,Fast direct solution of characteristic basis function method using ACA-based LU decomposition.,2016,13,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee13.html#DingLZ16,https://doi.org/10.1587/elex.13.20160176 +Masayuki Oishi,Autonomous self-healing technique utilizing a self-injection-locked Fabry-Perot laser for optical and wireless communication systems.,2014,11,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee11.html#OishiKMNT14,https://doi.org/10.1587/elex.11.20140184 +Panikos Heracleous,Cued Speech: A visual communication mode for the deaf society.,2010,7,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee7.html#HeracleousB10,https://doi.org/10.1587/elex.7.234 +Shunta Mizuno,Bandwidth enhancement technique for TIA using flipped voltage follower.,2017,14,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee14.html#MizunoNN17,https://doi.org/10.1587/elex.14.20170310 +Weigui Ji,A low cost battery equalizing scheme with buck-boost and series LC converter using synchronous phase-shift controller.,2017,14,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee14.html#JiRJLG17,https://doi.org/10.1587/elex.13.20161166 +Nan Su,BARR: Congestion aware scheduling algorithm for Network-on-Chip router.,2017,14,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee14.html#SuWYGGC17,https://doi.org/10.1587/elex.14.20161247 +Chun-Yu Lin,Improved stacked-diode ESD protection in nanoscale CMOS technology.,2017,14,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee14.html#LinL17,https://doi.org/10.1587/elex.14.20170570 +Jeongpyo Kim,Design of compact and broadband Wilkinson baluns using metamaterial phase shifting transmission lines.,2009,6,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee6.html#KimCC09,https://doi.org/10.1587/elex.6.1332 +Ying-Han Pang,Enhanced pseudo Zernike moments in face recognition.,2005,2,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee2.html#PangJL05,https://doi.org/10.1587/elex.2.70 +Hyuntae Cho,Reader collision avoidance for multihop deployment of active RFID readers.,2010,7,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee7.html#ChoB10,https://doi.org/10.1587/elex.7.1396 +Ali Jahanian 0001,Metro-on-chip: an efficient physical design technique for congestion reduction.,2007,4,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee4.html#JahanianZ07,https://doi.org/10.1587/elex.4.510 +Chung-Ming Leng,A simple circuit to remove X-cap bleeder resistor for reducing standby power consumption.,2016,13,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee13.html#LengCLKL16,https://doi.org/10.1587/elex.13.20160174 +Mi Zhou,Design and implementation of a random access file system for NVRAM.,2016,13,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee13.html#ZhouCLLLLS16,https://doi.org/10.1587/elex.13.20151045 +Seung-Wook Kwack,A high speed graphics DRAM with low power and low noise data bus inversion in 54nm CMOS.,2009,6,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee6.html#KwackK09,https://doi.org/10.1587/elex.6.1297 +Dong-Kurl Kwak,A new boost dc-dc converter of high efficiency by using a partial resonant circuit.,2009,6,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee6.html#Kwak09a,https://doi.org/10.1587/elex.6.844 +Husheng Liu,A calibration method for frequency response mismatches in M-channel time-interleaved analog-to-digital converters.,2016,13,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee13.html#LiuX16,https://doi.org/10.1587/elex.13.20160668 +Yin Xu,A granular resampling method based energy-efficient architecture for heartbeat classification in ECG.,2017,14,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee14.html#XuCXM17,https://doi.org/10.1587/elex.14.20170984 +Kazuya Nagasawa,Nonlocal effects occurred in the metallic nano chain driven by longitudinal or transverse modes.,2016,13,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee13.html#NagasawaTO16,https://doi.org/10.1587/elex.13.20160216 +Ping Ye,Novel optimal bandwidth design in INS-assisted GNSS Phase Lock Loop.,2011,8,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee8.html#YeZF11,https://doi.org/10.1587/elex.8.650 +YongJoon Kim,Selective scan slice repetition for simultaneous reduction of test power consumption and test data volume.,2009,6,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee6.html#KimPK09,https://doi.org/10.1587/elex.6.1432 +Muhammad Amin,Gain enhancement in cubic DRA with modified microstrip feed for WLAN applications.,2017,14,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee14.html#AminHLLAB17,https://doi.org/10.1587/elex.14.20170960 +Xiaofang Wu,A new signal injection method with PSO for multi-carrier predistortion.,2013,10,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee10.html#WuWXY13,https://doi.org/10.1587/elex.10.20130595 +Mahdi Barati,A linearization technique for active mixers in zero-IF receivers with inherent balun.,2011,8,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee8.html#BaratiY11,https://doi.org/10.1587/elex.8.2080 +Woon-Young Yeo,Power-efficient scheduling for voice services in high-speed packet access systems.,2011,8,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee8.html#YeoCLA11,https://doi.org/10.1587/elex.8.76 +Gyung-Ho Hwang,Exclusive backoff scheme (EBS) for ad hoc mode in IEEE 802.11 wireless LANs.,2009,6,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee6.html#HwangC09,https://doi.org/10.1587/elex.6.607 +Minhan Mi,The characteristics of fluorinated gate dielectric AlGaN/GaN MIS-HEMT.,2015,12,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee12.html#MiHHZSMLH15,https://doi.org/10.1587/elex.12.20150943 +Tadaharu Minato,Future trend of Si power device.,2014,11,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee11.html#MinatoS14,https://doi.org/10.1587/elex.11.20142002 +Takaaki Ibuchi,Loss and conducted noise characteristics for CCM PFC circuit with SiC-Schottky barrier diode.,2014,11,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee11.html#IbuchiF14,https://doi.org/10.1587/elex.11.20140142 +Daisuke Kurita,Two-layered ultra-wideband (UWB) bandpass filter.,2008,5,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee5.html#KuritaL08,https://doi.org/10.1587/elex.5.291 +Sang-uhn Cha,Self-correcting check bit generator of error correction codes for memories.,2013,10,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee10.html#ChaY13,https://doi.org/10.1587/elex.10.20130103 +Yu Ikeda,Direct intensity modulation of resonant-tunneling-diode terahertz oscillator up to and#8764*30 GHz.,2015,12,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee12.html#IkedaKOSA15,https://doi.org/10.1587/elex.12.20141161 +Shouhei Kousai,Recent progress in CMOS RF circuit design.,2014,11,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee11.html#Kousai14,https://doi.org/10.1587/elex.11.20132011 +Myunghwan Ryu,Trapezoidal approximation for on-current modeling of 45-nm non-rectilinear gate shape.,2013,10,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee10.html#RyuK13,https://doi.org/10.1587/elex.10.20130239 +Minghua Wang,A CMOS dual-feedback reconfigurable low noise amplifier with improved stability and reduced noise.,2017,14,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee14.html#WangWLSXZ17,https://doi.org/10.1587/elex.14.20170985 +Daisuke Kurita,Super UWB lowpass filter using open-circuited radial stubs.,2007,4,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee4.html#KuritaL07,https://doi.org/10.1587/elex.4.211 +Hisa-Aki Tanaka,Self-organizing timing allocation mechanism in distributed wireless sensor networks.,2009,6,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee6.html#TanakaNS09,https://doi.org/10.1587/elex.6.1562 +Chang-Hwan Bae,Modeling of hollow waveguide optical switch with variable air core.,2004,1,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee1.html#BaeK04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.551 +Cheng Fu,Generation of multi-polarity helix transform over GF(3).,2004,1,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee1.html#FuF04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.211 +Hui Ding,3D Networks-on-Chip mapping targeting minimum signal TSVs.,2013,10,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee10.html#DingGYF13,https://doi.org/10.1587/elex.10.20130518 +Yu Guo,A compact configurable dual-band bandpass filter.,2015,12,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee12.html#GuoSLWWL15,https://doi.org/10.1587/elex.12.20150931 +Jongwook Lim,Rate-distortion performance of resolution-constrained quantization combined with lossless coding.,2009,6,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee6.html#LimL009,https://doi.org/10.1587/elex.6.1542 +Hee Jin Sohn,Vector Pattern Matching algorithm for efficient multi-hypothesis tracking.,2009,6,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee6.html#Sohn09,https://doi.org/10.1587/elex.6.910 +Hyejeong Hong,Dynamic thermal management for 3D multicore processors under process variations.,2013,10,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee10.html#HongLLK13a,https://doi.org/10.1587/elex.10.20130800 +Kenichiro Tsuji,Optically generated phase shift keying microwave signal using optical phase modulator with single light source.,2013,10,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee10.html#TsujiTHUO13,https://doi.org/10.1587/elex.10.20130616 +Keqing Qu,A high step-up and low switches voltage stress boost converter.,2015,12,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee12.html#QuYZU15,https://doi.org/10.1587/elex.12.20150199 +Masashi Yukinari,Spectral characteristics of a 1.3-µ*m npn-AlGaInAs/InP transistor laser under various operating conditions.,2014,11,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee11.html#YukinariSNA14,https://doi.org/10.1587/elex.11.20140679 +Chun-Yu Lin,Design of local ESD clamp for cross-power-domain interface circuits.,2016,13,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee13.html#LinCY16,https://doi.org/10.1587/elex.13.20160806 +Jose Juan Garcia-Hernandez,Improving the security of Fallahpour's audio watermarking scheme.,2010,7,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee7.html#Garcia-HernandezUCP10,https://doi.org/10.1587/elex.7.995 +Shoko Maeno,Study of charge retention mechanism for DNA memory FET.,2014,11,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee11.html#MaenoMNHTYFY14,https://doi.org/10.1587/elex.11.20130900 +F. Liu,Synthesis of 2-D fractal signals based on wavelets.,2008,5,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee5.html#Liu08,https://doi.org/10.1587/elex.5.81 +Katsunori Asano,Simple circuit model of SiC pin diode composed by using experimental electrical characteristics.,2005,2,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee2.html#AsanoFSH05,https://doi.org/10.1587/elex.2.392 +Hiroshi Yoshida,A low DC offset direct conversion receiver for W-CDMA with low current consumption.,2005,2,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee2.html#YoshidaTAT05,https://doi.org/10.1587/elex.2.434 +Kazuya Kodama,Switching characteristics of a diamond Schottky barrier diode.,2010,7,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee7.html#KodamaFUS10,https://doi.org/10.1587/elex.7.1246 +Liang Hong,Area-efficient HEVC IDCT/IDST architecture for 8K and** 4K video decoding.,2016,13,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee13.html#HongHGM16,https://doi.org/10.1587/elex.13.20160019 +Jinyoung An,An improved UWB receiver employing generalized normal-Laplacian distribution model.,2011,8,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee8.html#AnK11,https://doi.org/10.1587/elex.8.1505 +Linsheng Liu,Accurate large-signal FET model tailored for switching-mode power amplifier design.,2010,7,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee7.html#LiuMN10,https://doi.org/10.1587/elex.7.1672 +Raúl Fernández-García,An alternative method to quantify the electromagnetic immunity based on the Weibull distribution.,2013,10,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee10.html#Fernandez-GarciaG13,https://doi.org/10.1587/elex.10.20120864 +Sotirios K. Goudos,Cell-to-switch assignment in cellular networks using barebones particle swarm optimization.,2010,7,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee7.html#GoudosBBS10,https://doi.org/10.1587/elex.7.254 +Sekedi B. Kobenge,A novel low power time-mode comparator for successive approximation register ADC.,2009,6,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee6.html#KobengeY09,https://doi.org/10.1587/elex.6.1155 +Ung Hee Park,Wideband balun using a transmission line transformer.,2011,8,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee8.html#Park11,https://doi.org/10.1587/elex.8.730 +Tae-Wuk Bae,Small target detection using the Bilateral Filter based on Target Similarity Index.,2010,7,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee7.html#BaeLS10,https://doi.org/10.1587/elex.7.589 +Turki F. Al-Somani,Generic-point parallel scalar multiplication without precomputations.,2009,6,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee6.html#Al-SomaniI09,https://doi.org/10.1587/elex.6.1732 +Masanori Natsui,Synthesis of current mirrors based on evolutionary graph generation with transmigration capability.,2007,4,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee4.html#NatsuiTHAH07,https://doi.org/10.1587/elex.4.88 +Jiro Hashizume,Metal-aperture surface emitting laser with nano metal particle for near-field optics.,2004,1,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee1.html#HashizumeK04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.77 +Abhirup Lahiri,New current-mode quadrature oscillators using CDTA.,2009,6,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee6.html#Lahiri09,https://doi.org/10.1587/elex.6.135 +Hsin-Chuan Chen,Design of an H-bridge driver without dead-time generation using gate bias.,2013,10,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee10.html#ChenL13,https://doi.org/10.1587/elex.10.20130656 +Hajime Imai,Current-voltage characteristics of organic materials similar to inorganic p-n homo-junction.,2010,7,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee7.html#ImaiKSO10,https://doi.org/10.1587/elex.7.105 +Xinfa Zhang,A novel nonlinear equalizer for extending the dynamic range of analog-to-digital converters.,2016,13,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee13.html#ZhangY16,https://doi.org/10.1587/elex.13.20160039 +Jae Young Park,Inverted driving technique for removing display noise in capacitive touch sensors.,2015,12,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee12.html#ParkPLK15,https://doi.org/10.1587/elex.12.20150683 +Guanghu Shen,Improved feature enhancement using temporal filtering in speech recognition.,2010,7,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee7.html#ShenSC10,https://doi.org/10.1587/elex.7.1099 +Van Ha Nguyen,Photosensitive chaotic integrated circuit with light controllability.,2013,10,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee10.html#NguyenPS13,https://doi.org/10.1587/elex.10.20120943 +Lizhong Song,A printed dual polarized array antenna element with a three layer structure.,2014,11,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee11.html#SongN14,https://doi.org/10.1587/elex.11.20140047 +Yuichi Ogawa,Attenuated total reflection spectra of aqueous glycine in the terahertz region.,2009,6,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee6.html#OgawaCHF09,https://doi.org/10.1587/elex.6.117 +Teruo Suzuki,Examination of short calibration problem of Transmission Line Pulse.,2013,10,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee10.html#SuzukiS13,https://doi.org/10.1587/elex.10.20130029 +Seungwon Yang,A new low-power butterfly unit for single-path delay feedback FFT architectures.,2013,10,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee10.html#YangL13,https://doi.org/10.1587/elex.10.20130640 +Ching-Yin Lee,Directly modulated fiber optical CATV transport systems without optical amplification.,2007,4,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee4.html#LeeLYLTL07,https://doi.org/10.1587/elex.4.282 +Jizeng Wei,A low-time-complexity and secure dual-field scalar multiplication based on co-Z protected NAF.,2014,11,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee11.html#WeiLLG14,https://doi.org/10.1587/elex.11.20140361 +Shun Ueda,Wireless on-chip microparticle manipulation using pulse-driven dielectrophoresis.,2012,9,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee9.html#UedaM0M012,https://doi.org/10.1587/elex.9.16 +Ki Seok Kwak,Optical alignment algorithm using Hadamard transformation.,2007,4,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee4.html#KwakPYK07,https://doi.org/10.1587/elex.4.504 +Dong-Hyo Lee,Reconfigurable dual-slit perturbed patch antenna for circular polarization diversity.,2014,11,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee11.html#LeeCP14,https://doi.org/10.1587/elex.11.20140384 +Mengling Feng,Contrast adaptive binarization of low quality document images.,2004,1,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee1.html#FengT04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.501 +Tae-Ho Kim,A DLL-based Clock Data Recovery with a modified input format.,2010,7,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee7.html#KimKK10,https://doi.org/10.1587/elex.7.539 +Katsuhiro Sasaki,Air-coupled ultrasonic time-of-flight measurement system using amplitude-modulated and phase inverted driving signal for accurate distance measurements.,2009,6,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee6.html#SasakiTTI09,https://doi.org/10.1587/elex.6.1516 +Sholeh Jahani Maleki,A compact dual-band bandpass filter using microstrip meander loop and square loop resonators.,2012,9,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee9.html#MalekiD12,https://doi.org/10.1587/elex.9.1342 +Toshio Ishizaki,A measurement method of material parameters for uniaxially anisotropic artificial dielectrics.,2010,7,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee7.html#IshizakiKA10,https://doi.org/10.1587/elex.7.810 +Geunyong Lee,A parallel power amplifier with load impedance transformation for optimized low power performance.,2011,8,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee8.html#LeeL11,https://doi.org/10.1587/elex.8.956 +Gao Tian,Design of LED power supply with high power factor based on SEPIC converter.,2014,11,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee11.html#TianQYJ14,https://doi.org/10.1587/elex.11.20140576 +Haoran Chen,Erratum: The impact of trapping centers on AlGaN/GaN resonant tunneling diode [IEICE Electronics Express Vol 10 (2013) No 19 pp 20130588].,2013,10,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee10.html#ChenYLZLH13a,https://doi.org/10.1587/elex.10.20138002 +Fan Yang,A single-poly EEPROM with low leakage charge pump and peripheral circuits for passive RFID tag in a standard CMOS technology.,2017,14,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee14.html#YangZWSL17,https://doi.org/10.1587/elex.14.20170315 +Kazuhiro Goi,Silicon Mach-Zehnder modulator using low-loss phase shifter with bottom PN junction formed by restricted-depth doping.,2013,10,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee10.html#GoiOTDLPLTLK13,https://doi.org/10.1587/elex.10.20130552 +Hongge Li,Low noise amplifier with active feedback structure for implantable neural recording.,2013,10,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee10.html#LiZSZ13,https://doi.org/10.1587/elex.10.20130312 +Hyun Sook Rhee,Secure searchable public key encryption scheme against keyword guessing attacks.,2009,6,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee6.html#RheeSK09,https://doi.org/10.1587/elex.6.237 +Kai Zhang,CMRF: a Configurable Matrix Register File for accelerating matrix operations on SIMD processors.,2012,9,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee9.html#ZhangCCWCLL12,https://doi.org/10.1587/elex.9.283 +Akiko Kohmura,New connecting structure for waveguides with special connectors.,2015,12,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee12.html#KohmuraFFY15,https://doi.org/10.1587/elex.12.20150559 +Ayesha Habib,Directly printable compact chipless RFID tag for humidity sensing.,2017,14,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee14.html#HabibAFALT17,https://doi.org/10.1587/elex.14.20170169 +Yanhan Zeng,A low power CMOS voltage reference based on body effect.,2013,10,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee10.html#ZengLZGT13,https://doi.org/10.1587/elex.10.20130154 +Junli Peng,Dynamic LLR scheme based on EM algorithm for LDPC decoding in NAND flash memory.,2017,14,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee14.html#PengWFH17,https://doi.org/10.1587/elex.14.20170820 +Seongjoo Lee,Cost-efficient symbol detection scheme for SDM-OFDM systems.,2007,4,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee4.html#LeeJNK07,https://doi.org/10.1587/elex.4.624 +ByungKuon Ahn,High gain spherical DRA operating on higher-order mode excited by microstrip patch.,2017,14,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee14.html#AhnCHY17,https://doi.org/10.1587/elex.14.20171049 +Mayank Kumar Singh,Intense photoluminescence from erbium-doped tantalum oxide thin films deposited by sputtering.,2009,6,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee6.html#SinghFKBMH09,https://doi.org/10.1587/elex.6.1676 +Jongwoo Bae,Register array-based VLSI architecture of H.265/HEVC loop filter.,2013,10,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee10.html#Bae13,https://doi.org/10.1587/elex.10.20130161 +Saqib A. Khan,Erratum: Assessing alpha-particle-induced SEU sensitivity of flip-chip bonded SRAM using high energy irradiation [IEICE Electronics Express Vol. 13 (2016) No. 17 pp. 20160627].,2016,13,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee13.html#KhanWB16a,https://doi.org/10.1587/elex.13.20168001 +Wonseok Oh,CMOS fast-settling time low pass filter associated with voltage reference and current limiter for low dropout regulator.,2009,6,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee6.html#OhNK09,https://doi.org/10.1587/elex.6.1595 +Bin Liang,Mitigating the SERs of large combinational circuits by using half guard band technique in CMOS bulk technology.,2014,11,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee11.html#LiangDX14,https://doi.org/10.1587/elex.11.20140710 +Masahiro Tsuchiya,Electric field sensing and imaging by noninvasive parallel-plate sensor.,2014,11,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee11.html#TsuchiyaSH14,https://doi.org/10.1587/elex.11.20140745 +Jang-Soon Park,A new method for tilted radiation using frequency selective reflectors.,2017,14,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee14.html#ParkKP17a,https://doi.org/10.1587/elex.14.20171064 +Li Kang,A fast in-situ SINS and Doppler sensor calibration algorithm for underwater vehicle navigation.,2014,11,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee11.html#KangYS14,https://doi.org/10.1587/elex.11.20140994 +Hee Joon Park,Design and implementation of wireless transcutaneous electrical nerve stimulator (TENS) for smart phone.,2009,6,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee6.html#ParkWMKC09,https://doi.org/10.1587/elex.6.1587 +Tsuyoshi Ebuchi,A jitter suppression technique against data pattern dependency on high-speed interfaces for highly integrated SoCs.,2014,11,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee11.html#EbuchiTWTTCUIY14,https://doi.org/10.1587/elex.11.20140949 +Weizheng Wang,Switching activity reduction for scan-based BIST using weighted scan input data.,2012,9,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee9.html#WangKLPY12,https://doi.org/10.1587/elex.9.874 +Tung-Chin Pan,New scheme to eliminate power loss of start-up resistor for low standby power consumption.,2016,13,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee13.html#PanCLL16,https://doi.org/10.1587/elex.13.20160873 +Varun Raghunathan,Raman induced wavelength conversion in scaled Silicon waveguides.,2004,1,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee1.html#RaghunathanDCJ04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.298 +Roberto Perez-Andrade,On an external memory scheme for processor arrays.,2013,10,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee10.html#Perez-AndradeTCC13,https://doi.org/10.1587/elex.10.20130324 +Chia-Chen Chang,Evaluation on fiber boot of optical component by bend radius measurement in side pull test.,2005,2,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee2.html#ChangHSASM05,https://doi.org/10.1587/elex.2.205 +Seong Jin Cho,A roofline model based on working set size for embedded systems.,2014,11,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee11.html#ChoYJ14,https://doi.org/10.1587/elex.11.20140560 +Jiangping He,A reliability improved synchronous boost converter with spike suppression circuit.,2015,12,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee12.html#HeZQJHP15,https://doi.org/10.1587/elex.12.20150916 +Takahisa Fujita,10Gbit/s FSK transmission over 95km SMF using a LiNbO3 modulator.,2005,2,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee2.html#FujitaKHISSI05,https://doi.org/10.1587/elex.2.32 +Xiao Zhao,DC gain enhancement method for recycling folded cascode amplifier in deep submicron CMOS technology.,2011,8,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee8.html#ZhaoFX11,https://doi.org/10.1587/elex.8.1450 +Weifan Qiao,Fiber transmission characteristics of phase only pulse and its dispersion compensation in high power regime.,2012,9,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee9.html#QiaoMKTK12,https://doi.org/10.1587/elex.9.410 +Jingwei Hu,A scalable RNS Montgomery multiplier over F2m.,2013,10,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee10.html#HuGWC13,https://doi.org/10.1587/elex.10.20130704 +Piotr Porwik,Some practical remarks about Binary Decision Diagram size reduction.,2006,3,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee3.html#PorwikWZ06,https://doi.org/10.1587/elex.3.51 +Qiang Fu,A high performance quartz vibrating gyroscope interface circuit driven by square-wave.,2017,14,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee14.html#FuYCDLZ17,https://doi.org/10.1587/elex.14.20161140 +Yong-Woo Kim,High-speed 8B/10B encoder design using a simplified coding table.,2008,5,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee5.html#KimSK08,https://doi.org/10.1587/elex.5.581 +Young-Ran Park,A novel steganographic system with information integrity.,2007,4,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee4.html#ParkKYK07,https://doi.org/10.1587/elex.4.393 +In-Su Yoon,A fast handover method for 802.11 wireless networks using combined GPS and SNR.,2009,6,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee6.html#YoonCK09,https://doi.org/10.1587/elex.6.375 +Zhe-Yang Huang,Dual-band voltage controlled oscillator with optimized Gm.,2015,12,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee12.html#HuangCH15,https://doi.org/10.1587/elex.12.20150207 +Bosheng Liu,Comparator and half adder design using complementary resistive switches crossbar.,2013,10,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee10.html#LiuYLKQ13,https://doi.org/10.1587/elex.10.20130369 +Rajkishore Prasad,Negentropy based voice-activity detection for noise estimation in very low SNR condition.,2004,1,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee1.html#PrasadSS04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.495 +Ting Tian,A wide-band monolithic differential power amplifier.,2017,14,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee14.html#TianZGL17,https://doi.org/10.1587/elex.14.20170576 +Toshio Ishizaki,Temperature-stable dielectric TM010-mode resonator and its application to compact base station filter.,2010,7,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee7.html#Ishizaki10,https://doi.org/10.1587/elex.7.454 +Ilku Nam,An ambient-light sensor system with startup correction for LTPS-TFT LCD.,2014,11,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee11.html#NamW14,https://doi.org/10.1587/elex.11.20140086 +Chulsoon Hwang,Complex permittivity extraction from PCB stripline measurement using recessed probe launch.,2015,12,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee12.html#HwangPK15,https://doi.org/10.1587/elex.12.20150023 +Junichi Inoue,Cavity-resonator-integrated guided-mode resonance filter in channel waveguide.,2013,10,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee10.html#InoueOHKNAU13,https://doi.org/10.1587/elex.10.20130444 +Kooroush Manochehri,A modified radix-2 Montgomery modular multiplication with new recoding method.,2010,7,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee7.html#ManochehriSP10,https://doi.org/10.1587/elex.7.513 +Hajime Yamasaki,Fast synchronous acquisition method using chaos DOS-CDMA in Software Definable Radio Networks.,2006,3,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee3.html#YamasakiHTK06,https://doi.org/10.1587/elex.3.172 +Jian Wang,Using end reflections to improve the pulse radiation efficiency of bow-tie antenna.,2013,10,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee10.html#WangS13,https://doi.org/10.1587/elex.10.20130125 +Yawei Guo,Non-binary digital calibration for split-capacitor DAC in SAR ADC.,2015,12,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee12.html#GuoWGCYZ15,https://doi.org/10.1587/elex.12.20150001 +Jong-Gyeong Yoo,Design and experiment of miniaturized small resonant aperture using modified ridge structure.,2017,14,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee14.html#YooCYKK17,https://doi.org/10.1587/elex.14.20170928 +Shahabuddin Rahmanian,Digital predistortion based on frequency domain estimation for OFDM systems with low complexity loop delay compensation.,2012,9,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee9.html#RahmanianN12,https://doi.org/10.1587/elex.9.1454 +Yun Liu,Miniature dual-band filters using integrated bandpass and bandstop filters for wide bandwidths.,2009,6,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee6.html#LiuD09,https://doi.org/10.1587/elex.6.618 +Jin-Woo Jung,Design of high-reliability LDO with current limiting characteristics with built-in new high tolerance ESD protection circuit.,2013,10,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee10.html#JungKL13,https://doi.org/10.1587/elex.10.20130516 +Weizhong Chen,A RC-IGBT with built-in free wheeling diode controlled by MOSFET.,2017,14,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee14.html#ChenGHHWL17,https://doi.org/10.1587/elex.14.20170817 +Ali Valaee,An ultra low-power low-voltage switched-comparator successive approximation analog to digital converter.,2009,6,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee6.html#ValaeeM09,https://doi.org/10.1587/elex.6.1098 +Katsuhiro Sasaki,Analysis of sound field profile formed by conical acoustic probe with pinhole.,2007,4,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee4.html#SasakiI07,https://doi.org/10.1587/elex.4.72 +Lun Li,Ocean gravity wave phase velocity detection by HFSWR.,2012,9,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee9.html#LiWXLLSC12,https://doi.org/10.1587/elex.9.724 +Won-Sup Chung,A simple resistance-to-time converter for resistive bridge sensors.,2008,5,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee5.html#ChungAS08,https://doi.org/10.1587/elex.5.310 +Jae Woong Chun,Leakage power reduction using the body bias and pin reordering technique.,2016,13,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee13.html#ChunC16,https://doi.org/10.1587/elex.13.20151052 +Masaaki Iijima,Dynamic threshold voltage control for dual supply voltage scheme on PD-SOI.,2006,3,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee3.html#IijimaHKNTI06,https://doi.org/10.1587/elex.3.453 +Yen-Chia Chu,High-efficiency high-current drive power converter IC for wearable medical devices.,2015,12,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee12.html#ChuACCC15,https://doi.org/10.1587/elex.12.20150953 +Youhui Zhang,Model of Network-on-Chip routers and performance analysis.,2011,8,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee8.html#ZhangDGZ11,https://doi.org/10.1587/elex.8.986 +Jihoon Choi,Channel selection for IEEE 802.11 based wireless LANs using 2.4GHz band.,2011,8,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee8.html#ChoiLLI11,https://doi.org/10.1587/elex.8.1275 +Chunzao Wang,NPN aided fast switching insulated gate bipolar transistor with a p-buffer layer.,2014,11,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee11.html#WangZ14,https://doi.org/10.1587/elex.11.20140294 +Liang-Hung Wang,Low-power low-data-loss bio-signal acquisition system for intelligent electrocardiogram detection.,2017,14,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee14.html#WangDCWF17,https://doi.org/10.1587/elex.14.20161142 +Jiadong Lin,AMC-based planar antenna with low-profile and broad CP beamwidth.,2017,14,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee14.html#LinQC17,https://doi.org/10.1587/elex.14.20170473 +Rui Hou,Packet-based nonlinear battery energy consumption optimizing for WSNs nodes.,2014,11,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee11.html#HouZ14,https://doi.org/10.1587/elex.11.20140167 +Jihong Kang,Improved reversible data hiding through full employment of image pixels.,2011,8,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee8.html#KangJC11,https://doi.org/10.1587/elex.8.866 +Haitham Jabbar Taha,Doppler reduction using Sliding Window technique in WP-OFDM system.,2011,8,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee8.html#TahaS11,https://doi.org/10.1587/elex.8.689 +Atsushi Kanno,20-Gb/s QPSK W-band (75-110GHz) wireless link in free space using radio-over-fiber technique.,2011,8,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee8.html#KannoIMSKHKYK11,https://doi.org/10.1587/elex.8.612 +Muhammad Ali Riaz,Novel T-shaped resonator based chipless RFID tag.,2017,14,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee14.html#RiazSAAAT17,https://doi.org/10.1587/elex.14.20170728 +Teng Li,Broadband power dividers based on waveguide T-junctions at Ka-band.,2016,13,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee13.html#LiDM16,https://doi.org/10.1587/elex.13.20150992 +Takanari Minami,Erratum: Unified active Q factor formula for use in noise spectrum estimation from Leeson's and Hajimiri's models [IEICE Electronics Express Vol 10 (2013) No 24 pp 20130806].,2014,11,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee11.html#MinamiO14,https://doi.org/10.1587/elex.11.20148001 +Lizhong Song,A novel miniaturized Wilkinson power divider using comb-like defected ground structure.,2014,11,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee11.html#SongN14a,https://doi.org/10.1587/elex.11.20140959 +Shuguo Li,Efficient FPGA implementation of sharp FIR filters using the FRM technique.,2009,6,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee6.html#LiZ09a,https://doi.org/10.1587/elex.6.1656 +Yong-Seo Koo,A design of low-area low drop-out regulator using body bias technique.,2013,10,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee10.html#Koo13,https://doi.org/10.1587/elex.10.20130300 +Ning Li 0009,A 14.3% PAE parallel class-A and AB 60GHz CMOS PA.,2011,8,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee8.html#LiMOM11,https://doi.org/10.1587/elex.8.1071 +Sang-Woo Seo,Scanline-based rendering of 2D vector graphics.,2011,8,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee8.html#SeoSKO11,https://doi.org/10.1587/elex.8.788 +Hossein Aghababa,Finding optimum value of numerical aperture for the best aerial image quality.,2011,8,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee8.html#AghababaAAF11,https://doi.org/10.1587/elex.8.879 +Hirokazu Kubota,Simple analysis of water-filled hollow-core silica photonic bandgap fiber.,2009,6,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee6.html#KubotaKN09,https://doi.org/10.1587/elex.6.870 +Muneki Nakada,Optical coherence tomography by all-optical MEMS fiber endoscope.,2010,7,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee7.html#NakadaCMISFT10,https://doi.org/10.1587/elex.7.428 +Shuo Cai,Reliability evaluation of logic circuits based on transient faults propagation metrics.,2017,14,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee14.html#CaiYWLLW17,https://doi.org/10.1587/elex.14.20170128 +Gen Hashiguchi,Electromechanical theory of microelectromechanical devices.,2014,11,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee11.html#Hashiguchi14,https://doi.org/10.1587/elex.11.20142007 +Se-Hyu Choi,Enhancement of a modified radix-2 Montgomery modular multiplication.,2014,11,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee11.html#ChoiL14,https://doi.org/10.1587/elex.11.20140782 +Ping Huang,Non circular ROOTMUSIC algorithm for monostatic MIMO radar.,2014,11,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee11.html#HuangWY14,https://doi.org/10.1587/elex.11.20140318 +Shao-Yi Xie,FPGA-based ultra-fast and wideband instantaneous frequency measurement receiver.,2014,11,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee11.html#XieZYLWY14,https://doi.org/10.1587/elex.11.20140263 +Yang Song,Research on hard-drive circuit simulation model of Dual-GCT.,2018,15,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee15.html#SongW18,https://doi.org/10.1587/elex.15.20180101 +Zheng Yang,A highly efficient interface circuit for ultra-low-voltage energy harvesting.,2013,10,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee10.html#YangLWZY13,https://doi.org/10.1587/elex.10.20130869 +Gang Liu 0002,Compact accurate scalable model for millimeter wave InP CPW with under-bridge.,2008,5,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee5.html#LiuNH08,https://doi.org/10.1587/elex.5.74 +Syed Sabir Hussain Bukhari,A single-phase on-line UPS system for multiple load transformers.,2017,14,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee14.html#BukhariK17,https://doi.org/10.1587/elex.14.20170050 +Veeraiyah Thangasamy,Low power 18T pass transistor logic ripple carry adder.,2015,12,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee12.html#ThangasamyKHHYB15,https://doi.org/10.1587/elex.12.20150176 +Jinhua Cui,Accelerating master-slave databases launched on LDPC-induced solid state drives with improved efficiency and reliability.,2016,13,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee13.html#CuiWZW16,https://doi.org/10.1587/elex.13.20160468 +Song-Ju Kim,Chaos-based communication systems using on-line ICA algorithm.,2008,5,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee5.html#KimU08,https://doi.org/10.1587/elex.5.510 +Kazuo Ishizuka,The evaluation of the magnetic field below 30MHz in an open area test site.,2012,9,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee9.html#IshizukaTTYKY12,https://doi.org/10.1587/elex.9.895 +HyeonUk Son,Reduced-code test method using sub-histograms for pipelined ADCs.,2015,12,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee12.html#SonJKK15,https://doi.org/10.1587/elex.12.20150417 +Xuesong Wang,Universal method for designing non-blocking multicast-supported on chip optical router.,2016,13,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee13.html#WangGWYH16,https://doi.org/10.1587/elex.13.20160667 +Hannes Ramon,A DC-coupled 50 Gb/s 0.064 pJ/bit thin-oxide level shifter in 28 nm FDSOI CMOS.,2018,15,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee15.html#RamonVVLBTB18,https://doi.org/10.1587/elex.15.20171085 +Yue Yin,A novel CMOS active polyphase filter with wideband and low-power for GNSS receiver.,2016,13,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee13.html#YinZJQX16,https://doi.org/10.1587/elex.13.20160158 +Kyong Jun Noh,A new dual asymmetric bit-line sense amplifier for low-voltage dynamic random access memory.,2013,10,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee10.html#NohKLC13,https://doi.org/10.1587/elex.10.20130647 +G. Kim,Enhancement of pyroelectric current induced by radiant heat.,2011,8,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee8.html#KimC11,https://doi.org/10.1587/elex.8.1763 +S. H. Mohseni Armaki,Design and realization of tracking feed antenna system.,2011,8,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee8.html#ArmakiKMN11,https://doi.org/10.1587/elex.8.908 +Mamoru Ugajin,Proposal of channel-grouping wireless-transceiver architecture for suppressing local-oscillator phase noise.,2012,9,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee9.html#Ugajin12,https://doi.org/10.1587/elex.9.86 +Feifei Guo,Microwave chirped delay effect based on substrate thickness modulation.,2016,13,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee13.html#GuoDJT16,https://doi.org/10.1587/elex.13.20161010 +Xin Chen,BIST design of power switch.,2013,10,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee10.html#ChenWHS13,https://doi.org/10.1587/elex.10.20130469 +Takuma Shibahara,A high-accuracy stereo correspondence technique using 1D band-limited phase-only correlation.,2008,5,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee5.html#ShibaharaANK08,https://doi.org/10.1587/elex.5.125 +Lanhua Xia,A self-refereed design-for-test structure of CP-PLL for on-chip jitter measurement.,2018,15,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee15.html#XiaWC18,https://doi.org/10.1587/elex.15.20171215 +Yong Wang 0013,An adaptive predistortion for power amplifier nonlinearity in the presence of measurement noise.,2014,11,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee11.html#WangGA14,https://doi.org/10.1587/elex.11.20131044 +Hitoshi Gotoh,Finite-element time-domain beam propagation method with perfectly matched layer for electron waveguide simulations.,2011,8,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee8.html#GotohKT11,https://doi.org/10.1587/elex.8.1361 +Dowon Hyun,Optimizing downlink throughput of IEEE 802.16j wireless relay networks via parameterized modeling.,2010,7,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee7.html#HyunJ10,https://doi.org/10.1587/elex.7.1564 +Jin-Yong Choi,A new layered MIMO-OFDM system with Signal Space Diversity.,2011,8,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee8.html#ChoiBS11,https://doi.org/10.1587/elex.8.26 +Chot Hun Lim,Practical approach in estimating inertial navigation unit's errors.,2012,9,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee9.html#LimTLK12,https://doi.org/10.1587/elex.9.772 +Minghua Wang,A 6-bit 38 GHz SiGe BiCMOS phase shifter for 5G phased array communications.,2017,14,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee14.html#WangLLWSXZ17,https://doi.org/10.1587/elex.14.20170451 +Jiliang Zhang 0002,Efficient verification of IP watermarks in FPGA designs through lookup table content extracting.,2012,9,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee9.html#ZhangLCWLZ12,https://doi.org/10.1587/elex.9.1735 +Krishna M. Diwakar,Highly stable Delta-Sigma Modulator for industrial applications.,2008,5,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee5.html#DiwakarSS08,https://doi.org/10.1587/elex.5.530 +Vicenç M. Sala,Theoretical estimation of distorting effects by trr of clamp diodes in DCI-NPC audio power amplifiers.,2012,9,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee9.html#SalaRM12,https://doi.org/10.1587/elex.9.888 +Ryosuke Ozaki,Distribution of energy flow by dielectric waveguide with rhombic dielectric structure along a middle layer.,2012,9,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee9.html#OzakiY12,https://doi.org/10.1587/elex.9.698 +Sung Jim Lim,VLSI implementation of the fuzzy fingerprint vault system.,2010,7,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee7.html#LimCP10,https://doi.org/10.1587/elex.7.899 +Zhixi Yang,Monte Carlo based statistical timing analysis using an efficient sampling method.,2016,13,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee13.html#YangYXY16a,https://doi.org/10.1587/elex.13.20160735 +Chun-Lin Yeh,A novel discrete dimmable electronic ballast.,2010,7,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee7.html#YehHC10,https://doi.org/10.1587/elex.7.403 +Bin Luo,Three-dimensional multidirectional inductance coil owning environmental conformal feature for wireless power transfer.,2015,12,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee12.html#LuoZNQZ15,https://doi.org/10.1587/elex.12.20150822 +Shuigen Huang,An ultra-low-power 2.4 GHz RF receiver in CMOS 55 nm process.,2018,15,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee15.html#HuangLZL18,https://doi.org/10.1587/elex.15.20180016 +Bogdan J. Falkowski,Converting matrices between ternary helix and Reed-Muller transforms over Galois Fields.,2005,2,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee2.html#FalkowskiF05,https://doi.org/10.1587/elex.2.530 +Ching-Che Chung,A fast lock-in all-digital phase-locked loop in 40-nm CMOS technology.,2016,13,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee13.html#ChungL16,https://doi.org/10.1587/elex.13.20160749 +Masatsugu Higashinaka,On peak to average power ratio of generalized frequency division multiple access.,2009,6,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee6.html#HigashinakaFK09,https://doi.org/10.1587/elex.6.943 +Y. K. Lim,An enhanced touch event processing on Android.,2012,9,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee9.html#LimKK12,https://doi.org/10.1587/elex.9.509 +Masatoshi Onoue,Observation of high dielectric constant of Bi-Nb-Ox thin-film capacitors fabricated by chemical solution deposition process.,2014,11,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee11.html#OnoueMTS14,https://doi.org/10.1587/elex.11.20140651 +Takashi Ohira,Dimensional extension of Kurokawa's stability criterion for general multi-port device oscillators.,2006,3,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee3.html#OhiraA06,https://doi.org/10.1587/elex.3.143 +Javeria Anum Satti,Highly-dense flexible chipless RFID tag.,2017,14,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee14.html#SattiHZALT17,https://doi.org/10.1587/elex.14.20170750 +Gholamreza Karimi,A novel small-signal modeling and simulation technique in SiGe: C HBT for ultra high frequency applications.,2011,8,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee8.html#KarimiB11,https://doi.org/10.1587/elex.8.299 +Kil-Soo Seo,A novel on-chip step-dimmer for low cost AC-powered HV-LED driver.,2015,12,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee12.html#SeoNKPS15,https://doi.org/10.1587/elex.12.20150445 +Yongqian Du,Low power hybrid PG_Filter-AGC analog baseband for wireless receivers.,2018,15,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee15.html#DuHLL18,https://doi.org/10.1587/elex.15.20171197 +Nadir Hossain,Numerical analysis and optimization of remotely pumped double pass Erbium doped fiber amplifier.,2007,4,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee4.html#HossainNMAAR07,https://doi.org/10.1587/elex.4.172 +Rahim Faez,Design and simulation of a high power single mode 1550nm InGaAsP VCSELs.,2011,8,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee8.html#FaezMM11,https://doi.org/10.1587/elex.8.1096 +Hyunsun Mo,A spread-spectrum clock generator with direct VCO modulation in open-loop.,2017,14,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee14.html#MoK17,https://doi.org/10.1587/elex.14.20170417 +Reza Ebrahimpour,Farsi handwritten digit recognition based on mixture of RBF experts.,2010,7,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee7.html#EbrahimpourEF10,https://doi.org/10.1587/elex.7.1014 +Bin-hao Jiang,Daydic Green's function for planar soft and hard surface.,2006,3,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee3.html#JiangL06,https://doi.org/10.1587/elex.3.136 +Junichi Kani,Adaptive optical network unit for point-to-point and point-to-multipoint Gigabit Ethernet-based optical access networks.,2008,5,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee5.html#KaniKOFK08,https://doi.org/10.1587/elex.5.361 +Dong-Sun Kim,Improved mutation method for providing high genetic diversity of genetic algorithm processor.,2012,9,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee9.html#KimL12a,https://doi.org/10.1587/elex.9.822 +SeoungYoung Lee,A novel look-ahead collision-free optical burst transmission scheme.,2011,8,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee8.html#LeeHP11,https://doi.org/10.1587/elex.8.1455 +Zhi-Ming Wang,A novel large-signal model for InP MMIC applications at 110 GHz.,2015,12,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee12.html#WangLZL15,https://doi.org/10.1587/elex.12.20150686 +Song-Ju Kim,FPGA implementation of EASI algorithm.,2007,4,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee4.html#KimUT07,https://doi.org/10.1587/elex.4.707 +Jun Gao,A study on precise control of PtSi work function by alloying with Hf.,2011,8,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee8.html#GaoIO11,https://doi.org/10.1587/elex.8.45 +Ali Azarbar,Mutual coupling compensation based on direct data domain algorithms.,2010,7,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee7.html#AzarbarDB10,https://doi.org/10.1587/elex.7.1659 +Seung-Il Cho,Design of low-power clock generator synchronized with AC power for adiabatic dynamic CMOS logic.,2013,10,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee10.html#ChoKHY13,https://doi.org/10.1587/elex.10.20130716 +Hyunjin Kim,A memory-efficient heterogeneous parallel pattern matching scheme in deep packet inspection.,2010,7,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee7.html#KimHBAK10,https://doi.org/10.1587/elex.7.377 +Masao Nakayama,A fast circuit synthesis module for design of multiple constant multiplication circuits using FPGAs.,2009,6,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee6.html#NakayamaST09,https://doi.org/10.1587/elex.6.430 +Takahide Sakamoto,Amplitude modulation on millimeter-wave signal with low driving voltage using reciprocating optical modulator.,2005,2,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee2.html#SakamotoKSI05,https://doi.org/10.1587/elex.2.239 +Dieter Verhulst,A robust phase detector for 1.25Gbit/s burst mode data recovery.,2004,1,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee1.html#VerhulstYBOQV04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.562 +Lei Li,An optimized architecture for modulo (2n - 2p + 1) multipliers.,2015,12,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee12.html#LiYYH15,https://doi.org/10.1587/elex.11.20141054 +Ping Zhong,Comparison of pre-backoff and post-backoff procedures for IEEE 802.11 distributed coordination function.,2011,8,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee8.html#ZhongHWSC11,https://doi.org/10.1587/elex.8.2035 +Dohoon Kim,Electrostatic solution for 3-port pyramidal cell.,2014,11,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee11.html#KimEL14,https://doi.org/10.1587/elex.11.20140219 +Guoan Wu,Novel bandpass filter with high selectivity and very wide stopband using open stub loaded and DGS.,2017,14,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee14.html#WuZL17,https://doi.org/10.1587/elex.14.20170316 +Peng Liu,Logic operation-based DFT method and 1R memristive crossbar March-like test algorithm.,2015,12,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee12.html#LiuYKHW15,https://doi.org/10.1587/elex.12.20150839 +Agustín Santiago Medina-Vázquez,Binary sequence correlator using a MIFGMOS.,2016,13,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee13.html#Medina-VazquezG16,https://doi.org/10.1587/elex.13.20151061 +Woo-Chan Park,The design of a texture mapping unit with effective MIP-map level selection for real-time ray tracing.,2011,8,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee8.html#ParkKPKKH11,https://doi.org/10.1587/elex.8.1064 +Farooq A. Khaleel,Ultra low power and highly linearized LNA for V-band RF applications in 180 nm CMOS technology.,2017,14,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee14.html#KhaleelA17,https://doi.org/10.1587/elex.14.20170066 +P. Susthitha Menon,Concentration and temperature-dependent low-field mobility model for In0.53Ga0.47As interdigitated lateral pin PD.,2008,5,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee5.html#MenonKS08,https://doi.org/10.1587/elex.5.303 +Motohiro Takayasu,A 0.18-µ*m CMOS time-domain capacitive-sensor interface for sub-1mG MEMS accelerometers.,2018,15,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee15.html#TakayasuDIYKMIM18,https://doi.org/10.1587/elex.15.20171227 +Roi Shigematsu,An electrostatically latched and magnetically erased MEMS re-writable bitmap image display.,2006,3,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee3.html#ShigematsuHTF06,https://doi.org/10.1587/elex.3.87 +Saeed Fallahzadeh,A compact and low-loss band-pass waveguide resonator using higher order resonance of CSRR.,2012,9,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee9.html#FallahzadehHTS12,https://doi.org/10.1587/elex.9.122 +Yiyun Zhang,A smart method of optimizing the read/write current on PCM array.,2014,11,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee11.html#ZhangCSLJWWCW14,https://doi.org/10.1587/elex.11.20140529 +Ikuo Suemune,Photon-pair generation based on superconductivity.,2012,9,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee9.html#SuemuneSAKITAT12,https://doi.org/10.1587/elex.9.1184 +Jun Zhu,Systematic experimental study on stitching techniques of CMOS image sensors.,2016,13,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee13.html#ZhuLZWLCLZ16,https://doi.org/10.1587/elex.13.20160441 +Wei Yi,A new differential RAID for high reliable All Flash Array.,2014,11,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee11.html#YiXBL14,https://doi.org/10.1587/elex.11.20141007 +Wooi-Haw Tan,PSO based parametric object recognition.,2008,5,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee5.html#TanBCS08,https://doi.org/10.1587/elex.5.1080 +Dong-Hyun Park,PAPR reduction of an OFDM signal by use of PTS with minimum nonlinear distortion.,2007,4,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee4.html#ParkS07,https://doi.org/10.1587/elex.4.417 +Ryohei Hosono,Development of millimeter-wave devices based on liquid crystal polymer (LCP) substrate.,2017,14,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee14.html#HosonoUHNKG17,https://doi.org/10.1587/elex.14.20172001 +Xiaofeng Huang,Memory interface design for AVS HD video encoder with Level C+ coding order.,2017,14,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee14.html#HuangWXJX17,https://doi.org/10.1587/elex.14.20170501 +Man-Young Jeon,A differential common drain Colpitts VCO circuit suitable for sub-1V low phase noise.,2011,8,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee8.html#JeonL11,https://doi.org/10.1587/elex.8.755 +Deqing Kong,A controllable nanosize combiner in T-shaped metal-insulator-metal waveguides.,2016,13,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee13.html#KongTC16,https://doi.org/10.1587/elex.13.20160081 +Yu Guo,A compact customizable tunable EBG filter.,2016,13,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee13.html#GuoLWHWL16,https://doi.org/10.1587/elex.12.20150990 +I-Chyn Wey,Robust C-element design for soft-error mitigation.,2015,12,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee12.html#WeyWPGY15,https://doi.org/10.1587/elex.12.20150268 +Hui Yang,Decoupled iteration mapping: improving dependency-loop performance on SIMD processors.,2013,10,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee10.html#YangCWD13,https://doi.org/10.1587/elex.10.20130798 +Pouya Derakhshan-Barjoei,Bio-inspired distributed beamforming for cognitive radio networks in non-stationary environment.,2011,8,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee8.html#Derakhshan-BarjoeiDRR11a,https://doi.org/10.1587/elex.8.332 +Norbert Herencsar,A new electronically tunable voltage-mode active-C phase shifter using UVC and OTA.,2009,6,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee6.html#HerencsarKV09,https://doi.org/10.1587/elex.6.1212 +Chunyu Peng,Read/write margin enhanced 10T SRAM for low voltage application.,2016,13,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee13.html#PengGLWJ16,https://doi.org/10.1587/elex.13.20160382 +Shuguo Li,Area-delay efficient parallel architecture for Fermat number transform.,2009,6,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee6.html#LiZ09,https://doi.org/10.1587/elex.6.449 +Lei Li,An universal architecture for designing modulo (2n-2p-1) multipliers.,2012,9,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee9.html#LiHC12,https://doi.org/10.1587/elex.9.193 +Masahiro Tahashi,Crystal growth of vanadium-doped ZnSe using triethoxyvanadyl by metal-organic vapor phase epitaxy.,2008,5,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee5.html#TahashiWGI08,https://doi.org/10.1587/elex.5.120 +Qi Yan,Optimal allocation of sensing duration among multiple primary channels in cognitive radio.,2011,8,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee8.html#YanYZZ11,https://doi.org/10.1587/elex.8.346 +Chi-Min Li,An overlap S and C method for OFDM synchronization.,2010,7,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee7.html#LiSW10,https://doi.org/10.1587/elex.7.1773 +Hoeung Lee,A proposal of development and verification environment of network applications based on a Co-Simulator.,2011,8,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee8.html#LeeGP11,https://doi.org/10.1587/elex.8.568 +Wei Guo,Thermal optimal task allocation algorithm for multi-core 3D IC with interlayer cooling system.,2016,13,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee13.html#GuoZYLFZ16,https://doi.org/10.1587/elex.12.20150970 +Masoumeh Safkhani,Cryptanalysis of AFMAP.,2010,7,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee7.html#SafkhaniNB10,https://doi.org/10.1587/elex.7.1240 +Lin Wang,Diversity performance of Modulated Scattering Antenna Array with switched reflector.,2010,7,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee7.html#WangCYS10,https://doi.org/10.1587/elex.7.728 +Seung-Hun Jang,Joint subchannel matching and power allocation for the MIMO broadcast relay channel.,2010,7,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee7.html#JangAK10,https://doi.org/10.1587/elex.7.949 +Geun Rae Cho,A high supply voltage bandgap reference circuit using drain-extended MOS devices.,2013,10,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee10.html#ChoHK13,https://doi.org/10.1587/elex.10.20130142 +Huayu Jia,A high performance low power 12-bit 40MS/s pipelined ADC.,2008,5,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee5.html#JiaCZ08,https://doi.org/10.1587/elex.5.400 +Won-Ho Choi,An efficient installation for applets to be post-issuance of Java Card system using an IC chip.,2010,7,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee7.html#ChoiSJ10,https://doi.org/10.1587/elex.7.1509 +Yong-Luo Shen,Pipelined implementation of AI-based Loeffler DCT.,2013,10,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee10.html#ShenO13,https://doi.org/10.1587/elex.10.20130319 +Yasar Amin,Green wideband RFID tag antenna for supply chain applications.,2012,9,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee9.html#AminKLCZT12,https://doi.org/10.1587/elex.9.1861 +Katrina D. Dambul,Performance analysis of IP traffic over a WDM ring network in the presence of crosstalk.,2005,2,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee2.html#DambulAC05,https://doi.org/10.1587/elex.2.149 +Yo-Hao Tu,A 0.6-V 1.6-GHz 8-phase all digital PLL using multi-phase based TDC.,2016,13,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee13.html#TuLCHH16,https://doi.org/10.1587/elex.12.20150950 +Min Gee Kim,Nonvolatile organic field-effect transistors fabricated on Al foil substrates.,2017,14,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee14.html#KimKHP17,https://doi.org/10.1587/elex.14.20170143 +Takashi Ohira,Power efficiency and optimum load formulas on RF rectifiers featuring flow-angle equations.,2013,10,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee10.html#Ohira13,https://doi.org/10.1587/elex.10.20130230 +Ki-Chai Kim,Broadband calculable dipole reference antenna in the 1 GHz to 3 GHz frequency range.,2015,12,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee12.html#KimKKK15,https://doi.org/10.1587/elex.12.20150622 +Roman Sotner,Electronically tunable simple oscillator based on single-output and multiple-output transconductor.,2009,6,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee6.html#SotnerJPDV09,https://doi.org/10.1587/elex.6.1476 +Li Zhang 0021,A single phase modulation for pulse-based inductive-coupling connection in 3D stacked chip.,2017,14,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee14.html#ZhangXLCZ17,https://doi.org/10.1587/elex.14.20170874 +Jun Gyu Lee,A 3.5mW 5µ*sec settling time dual-band fractional-N PLL synthesizer.,2012,9,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee9.html#LeeM12a,https://doi.org/10.1587/elex.9.307 +Ji-Hye Bong,Negative charge pump circuit with large output current and high power efficiency.,2009,6,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee6.html#BongKKM09,https://doi.org/10.1587/elex.6.304 +Yongsik Park,A novel sensing algorithm for Spin-Transfer-Torque magnetic RAM (STT-MRAM) by utilizing dynamic reference.,2012,9,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee9.html#ParkKS12,https://doi.org/10.1587/elex.9.153 +Afzel Noore,Improved IDDQ design-for-testability technique to detect CMOS stuck-open faults.,2007,4,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee4.html#Noore07,https://doi.org/10.1587/elex.4.94 +Sangkwon Lee,An off-chip input capacitor-less boost converter with fast MPPT for energy harvesting.,2014,11,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee11.html#LeeJ14,https://doi.org/10.1587/elex.11.20140385 +Takashi Ohira,Oscillator frequency spectrum as viewed from resonant energy storage and complex Q factor.,2006,3,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee3.html#OhiraA06a,https://doi.org/10.1587/elex.3.385 +O. El. Mrabet,Global modeling of microwave three terminal active devices using the FDTD method.,2005,2,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee2.html#MrabetED05,https://doi.org/10.1587/elex.2.43 +Chung-Jung Huang,A closed-form phase-comparison ML DOA estimator for automotive radar with one single snapshot.,2013,10,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee10.html#HuangDTCL13,https://doi.org/10.1587/elex.10.20130086 +Mochan Yang,An adaptive tone injection for OFDM PAPR reduction.,2011,8,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee8.html#YangS11,https://doi.org/10.1587/elex.8.1234 +Gregorio Zamora-Mejía,A digitally enhanced LDO voltage regulator for UHF RFID passive tags.,2016,13,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee13.html#Zamora-MejiaMRD16,https://doi.org/10.1587/elex.13.20150989 +Sen Wang,A miniaturized 10/24-GHz rat-race coupler using synthetic transmission lines on glass substrate.,2011,8,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee8.html#WangHL11,https://doi.org/10.1587/elex.8.1425 +Yingsong Li,Compact CPW-fed ultra-wide band antenna with dual band notched characteristics.,2010,7,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee7.html#LiYLJ10,https://doi.org/10.1587/elex.7.1597 +Liyun Wang,A novel memristor-based rSRAM structure for multiple-bit upsets immunity.,2012,9,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee9.html#WangZCLT12,https://doi.org/10.1587/elex.9.861 +Anhong Wang,Progressive image coding based on an adaptive block compressed sensing.,2011,8,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee8.html#WangLZB11,https://doi.org/10.1587/elex.8.575 +Jin Wu,A simple curvature-compensated technique for CMOS bandgap voltage reference.,2011,8,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee8.html#WuQNL11,https://doi.org/10.1587/elex.8.1374 +Mohammad Hossein Neishaburi,HW/SW architecture for soft-error cancellation in real-time operating system.,2007,4,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee4.html#NeishaburiKDS07,https://doi.org/10.1587/elex.4.755 +Seung-Jun Bae,Performance of greedy policies for downlink scheduling in networks with relay stations.,2011,8,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee8.html#BaeS11,https://doi.org/10.1587/elex.8.175 +Hua-Pin Chen,Quadrature oscillators using two CFOAs and four passive components.,2015,12,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee12.html#ChenWKH15,https://doi.org/10.1587/elex.12.20141148 +Yang-Soo Kim,RGB video coding using the matched neighbourhood block in the inter-color plane.,2009,6,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee6.html#KimJC09,https://doi.org/10.1587/elex.6.1715 +Lamin Zhan,Miniaturized dual-band coupler using three-branch-line structure and dual transmission lines.,2017,14,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee14.html#ZhanLLZ17,https://doi.org/10.1587/elex.14.20170834 +Babak Bornoosh,An adaptive algorithm for reducing phase error in digital carrier recovery for high-order QAM signals.,2010,7,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee7.html#BornooshN10,https://doi.org/10.1587/elex.7.493 +Kang Wang,On the design of a 3D optical interconnected memory system.,2014,11,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee11.html#WangGYCW14,https://doi.org/10.1587/elex.11.20140664 +Yusuke Omote,Ultra-wideband bandpass filter using matching-lines and interdigital filter with close-coupled resonators.,2012,9,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee9.html#OmoteYUH12,https://doi.org/10.1587/elex.9.660 +Maryam Jaldi,A compact bandpass filter by use of defected ground structures.,2011,8,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee8.html#JaldiT11,https://doi.org/10.1587/elex.8.1431 +Ming-Ming Zhang,K-band 100.8 mW beamforming SOC with 249.8 and#177* 22.8 pico-second group-delay in 0.13 andmicro*m CMOS.,2017,14,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee14.html#ZhangWT17,https://doi.org/10.1587/elex.14.20170008 +Tsuyoshi Funaki,Characterization of punch-through phenomenon in SiC-SBD by capacitance-voltage measurement at high reverse bias voltage.,2006,3,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee3.html#FunakiMKH06,https://doi.org/10.1587/elex.3.379 +Tetsuya Iizuka,All-digital ramp waveform generator for two-step single-slope ADC.,2011,8,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee8.html#IizukaA11,https://doi.org/10.1587/elex.8.20 +Hayato Sano,Proposal of gain-matched VCSELs with a thermally actuated MEMS structure for wide temperature operations.,2009,6,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee6.html#SanoK09,https://doi.org/10.1587/elex.6.883 +Woon-Young Yeo,Efficient anti-collision algorithm using variable length ID in RFID systems.,2010,7,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee7.html#YeoH10,https://doi.org/10.1587/elex.7.1735 +Alexei S. Adalev,Cellular automaton modelling of surface discharge dynamics for EMC problems.,2006,3,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee3.html#AdalevHIKST06,https://doi.org/10.1587/elex.3.209 +Zhengmin Zhang,A high electromagnetic immunity voltage regulator circuit applied in vehicle.,2015,12,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee12.html#ZhangQNJ15,https://doi.org/10.1587/elex.12.20150038 +Edwin Deepak Francis Xavier,Design and analysis of Z-source based 7 level cascaded multi level inverter for induction motor.,2017,14,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee14.html#XavierVL17,https://doi.org/10.1587/elex.14.20170940 +Xiaolin Du,Novel design of Doppler resilient complete complementary sequence for MIMO radar.,2015,12,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee12.html#DuSZW15,https://doi.org/10.1587/elex.12.20150269 +Takeo Katayama,Flip-flops using polarization bistable VCSEL with AND-gate functionality by two wavelength inputs.,2016,13,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee13.html#KatayamaNHK16,https://doi.org/10.1587/elex.13.20160064 +Chee-Pun Ooi,FPGA-based field-oriented control for induction motor speed drive.,2009,6,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee6.html#OoiHRK09,https://doi.org/10.1587/elex.6.290 +Tatsuo Nozokido,A new object mounting structure for use in millimeter-wave scanning near-field microscopy.,2004,1,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee1.html#NozokidoNHBM04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.144 +Yuchan Wang,RESET failure analysis of phase change memory based on Ge2Sb2Te5.,2017,14,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee14.html#WangWCL17a,https://doi.org/10.1587/elex.14.20170673 +Hanyang Xu,Design of a power efficient self-adaptive LVDS driver.,2018,15,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee15.html#XuWL18,https://doi.org/10.1587/elex.15.20171276 +Pin Wen,A miniaturized dual-band bandpass filter using composite resonators with flexible frequency ratio.,2018,15,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee15.html#WenMLZRWO18,https://doi.org/10.1587/elex.15.20180059 +Jun Dong,Broadband stripline to rectangular waveguide transition.,2015,12,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee12.html#DongYLZJ15,https://doi.org/10.1587/elex.12.20150117 +Kazunari Minakawa,Dependence of Brillouin frequency shift on temperature in poly(pentafluorostyrene)-based polymer optical fibers estimated by acoustic velocity measurement.,2014,11,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee11.html#MinakawaKHKMN14,https://doi.org/10.1587/elex.11.20140285 +Jinbin Zhao,Improved soft switching dual switch forward converter.,2007,4,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee4.html#Zhao07,https://doi.org/10.1587/elex.4.363 +Yun Liu,A novel tri-band filter realization via band-splitting technique.,2012,9,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee9.html#LiuZCM12,https://doi.org/10.1587/elex.9.718 +Kensuke Ogawa,Fundamental characteristics and high-speed applications of carrier-depletion silicon Mach-Zehnder modulators.,2014,11,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee11.html#OgawaIGMLSSPLTL14,https://doi.org/10.1587/elex.11.20142010 +Yeong Guk Oh,Broadcast/multicast transmission of video signal in a WDM-PON using a low-cost injection-locked F-P LD with broadband ASE.,2012,9,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee9.html#OhPLL12,https://doi.org/10.1587/elex.9.622 +Takanori Suzuki,Dispersion compensator using a compact arrayed-waveguide grating with a dispersion-adjusting structure.,2006,3,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee3.html#SuzukiMIAKUT06,https://doi.org/10.1587/elex.3.58 +Xi Fan,Optimization of periphery circuits in a 1K-bit PCRAM chip for highly reliable write and read operations.,2014,11,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee11.html#FanCWLZHJCS14,https://doi.org/10.1587/elex.11.20141071 +Keiji Goto,Asymptotic solutions for scattered field by a coated conducting cylinder with a thin lossy dielectric material.,2013,10,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee10.html#GotoL13,https://doi.org/10.1587/elex.10.20130100 +Yun Bu,A robust digital predistortion algorithm for power amplifiers.,2014,11,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee11.html#BuLC14,https://doi.org/10.1587/elex.10.20130759 +Toru Okazaki,A design methodology for SAR ADC optimal redundancy bit.,2014,11,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee11.html#OkazakiKPYK14,https://doi.org/10.1587/elex.11.20140218 +Jaeyul Choo,Simple quasi-static analysis for coplanar stripline within multilayer dielectrics.,2015,12,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee12.html#ChooCC15,https://doi.org/10.1587/elex.12.20150361 +Rong Ran,Precoder design with non-uniform power allocation for multimode precoded MIMO schemes with limited feedback.,2010,7,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee7.html#RanCYK10,https://doi.org/10.1587/elex.7.1002 +Xinyu Wang,A novel two-phase heuristic for application mapping onto mesh-based Network-on-Chip.,2016,13,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee13.html#WangLYS16,https://doi.org/10.1587/elex.13.20151097 +Hong-Thu Nguyen,Low-resource low-latency hybrid adaptive CORDIC with floating-point precision.,2015,12,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee12.html#NguyenNHLP15,https://doi.org/10.1587/elex.12.20150258 +Zhitao Xu,A novel wideband band-pass response power divider with improved out-of-band performances.,2016,13,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee13.html#XuXLZ16,https://doi.org/10.1587/elex.13.20160079 +Guoqiang Zhang,A low phase noise FBAR based multiband VCO design.,2013,10,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee10.html#ZhangKYTHEKP13,https://doi.org/10.1587/elex.10.20130425 +Sudhan Majhi,Performance of orthogonal based modulation schemes for TH-UWB communication systems.,2007,4,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee4.html#MajhiMP07,https://doi.org/10.1587/elex.4.238 +Hirohito Hokazono,Gas sensing demonstration by using silica high-mesa waveguide with amplified cavity ring down spectroscopy technique.,2015,12,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee12.html#HokazonoLEJH15,https://doi.org/10.1587/elex.12.20150574 +Ifong Wu,Calibration of electric field probes with three orthogonal elements by standard field method.,2009,6,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee6.html#WuIGM09,https://doi.org/10.1587/elex.6.1032 +Ilhoon Shin,Active log pool for fully associative sector translation.,2014,11,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee11.html#ShinS14,https://doi.org/10.1587/elex.10.20130942 +Yue Yin,A 48-dB precise decibel linear programmable gain amplifier for GNSS receivers.,2014,11,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee11.html#YinZJFQX14,https://doi.org/10.1587/elex.11.20140940 +Eonpyo Hong,PAPR reduction by a single adaptive all-pass filter for OFDM systems.,2011,8,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee8.html#HongKH11,https://doi.org/10.1587/elex.8.1633 +Warisa Sritriratanarak,Applying SVM to data bypass prediction in multi core last-level caches.,2015,12,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee12.html#Sritriratanarak15,https://doi.org/10.1587/elex.12.20150736 +KeeChan Park,A shift register for depletion-mode oxide TFTs with very low power consumption.,2013,10,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee10.html#ParkKJCKLKOK13,https://doi.org/10.1587/elex.10.20130765 +Masayuki Uno,An offset compensated class-AB sample-and-hold amplifier using two sampling capacitors.,2008,5,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee5.html#UnoK08,https://doi.org/10.1587/elex.5.962 +Lifeng Wu,The study of the scale factor of micro-machined gyroscope.,2008,5,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee5.html#WuZ08,https://doi.org/10.1587/elex.5.840 +Tao Liu,Joint blind estimation of symbol timing offset and carrier frequency offset for OFDM systems with I/Q imbalance.,2009,6,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee6.html#LiuZ09,https://doi.org/10.1587/elex.6.443 +Zhitao Xu,Design of Wilkinson power divider with filtering response and controllable transmission zeros.,2016,13,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee13.html#XuXLZW16,https://doi.org/10.1587/elex.13.20160185 +Zaharias D. Zaharis,Boolean Particle Swarm Optimization of 3-branch GSM/DCS/UMTS current dividers by using Artificial Immune System.,2008,5,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee5.html#Zaharis08,https://doi.org/10.1587/elex.5.41 +Akio Higo,Development of high-yield fabrication technique for MEMS-PhC devices.,2006,3,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee3.html#HigoIIATGYFT06,https://doi.org/10.1587/elex.3.39 +Huajun Zhang,A novel digital beamformer applied in vehicle mounted HF receiving device.,2014,11,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee11.html#ZhangGZZW14,https://doi.org/10.1587/elex.11.20130919 +Yi Li,An area-efficient dual replica-bitline delay technique for process-variation-tolerant low voltage SRAM sense amplifier timing.,2014,11,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee11.html#LiWZCHYZ14,https://doi.org/10.1587/elex.11.20130992 +Hao Peng,Continuously tunable SIW phase shifter based on the buried varactors.,2015,12,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee12.html#PengJYJ15,https://doi.org/10.1587/elex.12.20150165 +Joonghyun An,Automatic on-chip backup clock changer for protecting abnormal MCU operations in unsafe clock frequency.,2016,13,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee13.html#AnSP16,https://doi.org/10.1587/elex.13.20160808 +Yoo-Sung Kim,Piecewise linear-in-dB variable gain amplifier to enhance integral nonlinearity.,2009,6,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee6.html#KimNK09,https://doi.org/10.1587/elex.6.857 +Shuo Cai,A novel test data compression approach based on bit reversion.,2017,14,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee14.html#CaiZLYW17,https://doi.org/10.1587/elex.14.20170502 +Youngil Kim,Design of memory efficient FIFO-based merge sorter.,2018,15,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee15.html#KimCS18,https://doi.org/10.1587/elex.15.20171272 +Zhe Chen,190 GHz high power input frequency doubler based on Schottky diodes and AlN substrate.,2016,13,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee13.html#ChenWAHZF16,https://doi.org/10.1587/elex.13.20160981 +Shubin Liu,A low-jitter pulsewidth control loop with high supply noise rejection.,2013,10,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee10.html#LiuZGY13,https://doi.org/10.1587/elex.10.20130619 +Zhengping Li,Robust activating timing for SRAM SA with replica cell voltage boosted circuit.,2016,13,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee13.html#LiXJZ16,https://doi.org/10.1587/elex.13.20160302 +Xiaoyun Li,A novel high performance 3*VDD-tolerant ESD detection circuit in advanced CMOS process.,2017,14,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee14.html#LiCLWLMS17,https://doi.org/10.1587/elex.14.20170899 +Eun-Sub Lee,Sunlight-variation-adaptive charge pump circuit with self-reconfiguration for small-scale solar energy harvesting.,2012,9,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee9.html#LeeCKHKBM12,https://doi.org/10.1587/elex.9.1423 +Shoichiro Matsuo,Crosstalk behavior of multi-core fiber with structural parameter drift in longitudinal direction.,2011,8,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee8.html#MatsuoTASTSK11a,https://doi.org/10.1587/elex.8.1419 +Adel Barakat,Improved gain 60 GHz CMOS antenna with N-well grid.,2016,13,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee13.html#BarakatAEEPK16,https://doi.org/10.1587/elex.13.20151115 +Carlos Sánchez-López,Experimental verification of the Chua's circuit designed with UGCs.,2008,5,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee5.html#Sanchez-LopezCP08,https://doi.org/10.1587/elex.5.657 +Diary R. Sulaiman,Microprocessors optimal power dissipation using combined threshold hopping and voltage scaling.,2017,14,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee14.html#SulaimanHI17a,https://doi.org/10.1587/elex.14.20171046 +Quang Thang Duong,Dynamic charging using parallel line feeder with hybrid inductive-capacitive coupling and receiver-side load control.,2015,12,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee12.html#DuongMHO15,https://doi.org/10.1587/elex.12.20150854 +Miao Yang,A dual-mode single-inductor dual-output dc-dc converter with fast transient response.,2012,9,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee9.html#YangSWHXL12,https://doi.org/10.1587/elex.9.1780 +Takuji Kousaka,An experimental examination of a PWM-1 controlled interrupted electric circuit.,2011,8,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee8.html#KousakaA11,https://doi.org/10.1587/elex.8.1210 +Yoshiko Kato,Fabrication of JFET device on Si (111) for sensor interface array circuit.,2004,1,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee1.html#KatoHCTSI04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.243 +Guiheng Zhang,An amplifier-doubler chain with conversion gain improvement techniques.,2018,15,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee15.html#ZhangZFS18,https://doi.org/10.1587/elex.15.20171118 +Jiajia Jiao,A PGM based multi-level reliability analysis method for Data Cache.,2015,12,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee12.html#JiaoHF15,https://doi.org/10.1587/elex.12.20150453 +Yinhang Zhang,A 33 Gb/s combined adaptive CTLE and half-rate look-ahead DFE in 0.13 andmicro*m BiCMOS technology for serial link.,2018,15,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee15.html#ZhangH18,https://doi.org/10.1587/elex.15.20170764 +Dongsuk Shin,Wide frequency range duty cycle correction circuit for DDR interface.,2008,5,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee5.html#ShinKK08,https://doi.org/10.1587/elex.5.254 +Jesse Darja,Four channel DFB laser array with integrated combiner for 1.55µ*m CWDM systems by MOVPE selective area growth.,2006,3,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee3.html#DarjaCSN06,https://doi.org/10.1587/elex.3.522 +Jin-Aun Ng,Effective mobility and interface-state density of La2O3 nMISFETs after post deposition annealing.,2006,3,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee3.html#NgSKATHI06,https://doi.org/10.1587/elex.3.316 +Maziar Goudarzi,Value-dependence of SRAM leakage in deca-nanometer technologies.,2008,5,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee5.html#GoudarziI08,https://doi.org/10.1587/elex.5.23 +Fan Feng,Floating-point operation based reconfigurable architecture for radar processing.,2016,13,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee13.html#FengLWHZH16,https://doi.org/10.1587/elex.13.20160893 +Jong-Moon Chung,Minimum jitter probability routing for DiffServ wireless mesh networks.,2012,9,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee9.html#ChungCHNK12,https://doi.org/10.1587/elex.9.92 +Katsushige Harima,Accurate gain determination of LPDA by considering the phase center.,2010,7,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee7.html#Harima10a,https://doi.org/10.1587/elex.7.1760 +Shun'ichiro Ohmi,Low contact resistivity of barrier height controlled PtHfSi to Si evaluated by cross-bridge Kelvin resistor.,2011,8,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee8.html#OhmiG11,https://doi.org/10.1587/elex.8.1710 +Guohe Zhang,A novel SEU tolerant SRAM data cell design.,2015,12,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee12.html#ZhangZLC15,https://doi.org/10.1587/elex.12.20150504 +Shuai Liu,Wideband power divider using Gysel and modified Wilkinson structure.,2016,13,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee13.html#LiuXX16,https://doi.org/10.1587/elex.13.20160736 +Meena Mishra,The effects of extended depletion region on noise modeling of HEMT's.,2005,2,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee2.html#MishraMHID05,https://doi.org/10.1587/elex.2.81 +Mayumi Matsunaga,A cross shaped spiral antenna radiating omnidirectional circularly and linearly polarized waves.,2012,9,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee9.html#MatsunagaKM12,https://doi.org/10.1587/elex.9.256 +Haodong Lin,Compact high selectivity UWB filter using composite CPW-microstrip structure.,2016,13,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee13.html#LinXGJY16,https://doi.org/10.1587/elex.13.20161049 +Kenji Kurokawa,WDM transmission in 1.0µ*m band over PCF using supercontinuum source.,2008,5,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee5.html#KurokawaYTASK08,https://doi.org/10.1587/elex.5.395 +Elif Aydin,Modified resonant frequency computation for tunable equilateral triangular microstrip patch.,2010,7,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee7.html#AydinC10,https://doi.org/10.1587/elex.7.500 +HongKyun Lym,5 V input level shifter circuit for IGZO thin-film transistors.,2014,11,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee11.html#LymOPHPP14,https://doi.org/10.1587/elex.11.20140539 +Qidong Zhang,An area-efficient and high speed multiplexer for battery monitor system.,2016,13,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee13.html#ZhangYC16,https://doi.org/10.1587/elex.13.20160120 +Jun Sonoda,A novel error compensation method with the dispersion relation equation for the CIP method.,2008,5,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee5.html#SonodaKS08,https://doi.org/10.1587/elex.5.936 +Chen Li 0015,Express Ring: a multi-layer and non-blocking NoC architecture.,2015,12,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee12.html#LiMCGW15,https://doi.org/10.1587/elex.12.20141190 +Chuicai Rong,A broadband microwave GaN HEMTs class EF3 power amplifier with ω0*-type network.,2017,14,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee14.html#RongLXXXZ17a,https://doi.org/10.1587/elex.14.20170260 +Minshun Wu,Noncoherency correction algorithm for removing spectral leakage in ADC spectral test.,2016,13,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee13.html#WuL16,https://doi.org/10.1587/elex.12.20150991 +Keisuke Kasai,Optical phase-locked loop for coherent transmission over 500km using heterodyne detection with fiber lasers.,2007,4,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee4.html#KasaiHYN07,https://doi.org/10.1587/elex.4.77 +Sanggu Park,Highly-integrable K-band power dividers based on digital CMOS technology.,2011,8,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee8.html#ParkJJ11,https://doi.org/10.1587/elex.8.114 +Yen-Chia Chu,Novel digitally controlled low-drop-out voltage regulator.,2011,8,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee8.html#ChuCC11,https://doi.org/10.1587/elex.8.1252 +Yeong-Chul Chung,Simple prediction of FSS radome transmission characteristics using an FSS equivalent circuit model.,2011,8,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee8.html#ChungLHLCY11,https://doi.org/10.1587/elex.8.89 +Hiroshi Ishikawa 0007,A parallel-to-serial converter based on a differentially-operated optically clocked transistor array.,2013,10,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee10.html#IshikawaNST13,https://doi.org/10.1587/elex.10.20130709 +Mohammad Mahdi Honari,Aperture-coupled multi-layer broadband ring-patch antenna array.,2012,9,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee9.html#HonariAM12,https://doi.org/10.1587/elex.9.250 +Mohsen Hayati,Compact lowpass filter with wide stopband using open stubs loaded tapered compact microstrip resonator cell.,2010,7,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee7.html#HayatiL10,https://doi.org/10.1587/elex.7.1252 +Yingsong Li,Compact reconfigurable UWB antenna integrated with SIRs and switches for multimode wireless communications.,2012,9,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee9.html#LiLY12,https://doi.org/10.1587/elex.9.629 +Seung-Hoon Kim,A multi-channel current-mode CMOS optical receiver array for active optical HDMI cables.,2014,11,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee11.html#KimSLYCLHCP14,https://doi.org/10.1587/elex.11.20140927 +Koichi Narahara,Soliton decay in composite right- and left-handed transmission lines periodically loaded with Schottky varactors.,2014,11,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee11.html#Narahara14a,https://doi.org/10.1587/elex.11.20140881 +Wenguang Li,Tri-band bandpass filter using modified tri-section and stub-loaded stepped impedance resonators.,2017,14,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee14.html#LiWZ17,https://doi.org/10.1587/elex.14.20161237 +Joo-Seong Kim,A bandgap reference with resistance variation compensated.,2011,8,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee8.html#KimKLK11,https://doi.org/10.1587/elex.8.1602 +Zhenqiang Yong,TBCT: Time-Borrowing and Clock Token based error correction and its application in microprocessor.,2016,13,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee13.html#YongXMC16,https://doi.org/10.1587/elex.13.20160766 +Ippei Akita,A current noise reduction technique in chopper instrumentation amplifier for high-impedance sensors.,2015,12,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee12.html#AkitaI15,https://doi.org/10.1587/elex.12.20150374 +Takashi Ohira,Power transfer efficiency formulation for reciprocal and non-reciprocal linear passive two-port systems.,2018,15,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee15.html#Ohira18,https://doi.org/10.1587/elex.15.20171196 +Tae-Wuk Bae,An Iterative Bilateral Weighted Median filter for the removal of High-Density impulse noise.,2010,7,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee7.html#BaeKLWKS10,https://doi.org/10.1587/elex.7.988 +Y. Park,X-ray phase imaging of a packaged IC chip using X-ray array source.,2010,7,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee7.html#ParkC10a,https://doi.org/10.1587/elex.7.1182 +Yong-Jin Park,Non-stationary sound source localization based on zero crossings with the detection of onset intervals.,2008,5,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee5.html#ParkP08,https://doi.org/10.1587/elex.5.1054 +Mao Li,A recursive method for compensating ionospheric phase contamination based on multistage Taylor expansion.,2014,11,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee11.html#LiHLH14,https://doi.org/10.1587/elex.11.20140391 +Sheng Wang,New insights into the impact of SEUs in FPGA CRAMs.,2015,12,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee12.html#WangEWWC15,https://doi.org/10.1587/elex.12.20150110 +Jing-Wein Wang,Adaptive singular value decomposition for lighting compensation in face recognition.,2009,6,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee6.html#Wang09,https://doi.org/10.1587/elex.6.1638 +M. Pirai,Size reduction of microstrip LPDA antenna with top loading.,2009,6,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee6.html#PiraiH09,https://doi.org/10.1587/elex.6.1528 +Yuh-Shyan Hwang,A low-voltage current conveyor using inverter-based error amplifier and its oscillator application.,2013,10,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee10.html#HwangKCW13,https://doi.org/10.1587/elex.10.20130922 +Takahiro Yamashita,Fabrication of conductive polymer coated elastomer contact structures using a reel-to-reel continuous fiber process.,2012,9,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee9.html#YamashitaTMI12,https://doi.org/10.1587/elex.9.1442 +Chou-Chen Wang,New adaptive partial distortion search algorithm for block motion estimation.,2005,2,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee2.html#WangL05,https://doi.org/10.1587/elex.2.554 +Keyu Long,Nyquist folding digital receiver for signal interception.,2014,11,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee11.html#LongZTG14,https://doi.org/10.1587/elex.11.20120158 +To-Po Wang,A low-power low-phase-noise wide-tuning-range K-band VCO in 0.18-µ*m CMOS.,2011,8,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee8.html#WangC11,https://doi.org/10.1587/elex.8.1511 +Yunlong Zheng,Comparison of single-event transients of T-gate core and IO device in 130 nm partially depleted silicon-on-insulator technology.,2016,13,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee13.html#ZhengDCSWSLZ16,https://doi.org/10.1587/elex.13.20160424 +Toru Nakura,Comparative study of RF energy harvesting rectifiers and proposal of output voltage universal curves for design guidline.,2015,12,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee12.html#NakuraMA15,https://doi.org/10.1587/elex.12.20141114 +Xiaomin Shi,A compact dual-mode dual-band bandpass filter design with controllable first passband.,2014,11,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee11.html#ShiX14,https://doi.org/10.1587/elex.11.20140991 +Nahla Mohamed Abd Alrahim Shannan,Two-diode model for parameters extraction of photovoltaic module under temperature variation.,2015,12,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee12.html#ShannanYSSA15,https://doi.org/10.1587/elex.12.20150492 +Sekchin Chang,A signaling scheme for LR-WPAN systems in frequency-selective channels.,2009,6,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee6.html#Chang09a,https://doi.org/10.1587/elex.6.1186 +Kang-Yeob Park,A 10-Gb/s trans-impedance amplifier with LC-ladder input configuration.,2010,7,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee7.html#Park0C10,https://doi.org/10.1587/elex.7.1201 +Sangki Kim,Two-fold regularization for kernel Fisher discriminant analysis in face recognition.,2009,6,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee6.html#KimTL09,https://doi.org/10.1587/elex.6.540 +Jong-Yeol Lee,Area and power efficient signal reordering unit for OFDM systems.,2008,5,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee5.html#LeeY08,https://doi.org/10.1587/elex.5.1049 +Keiji Goto,Novel time-domain asymptotic solution for transient whispering-gallery mode radiation from a cylindrical concave conducting boundary.,2008,5,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee5.html#GotoKI08,https://doi.org/10.1587/elex.5.983 +Se-Hyu Choi,Reduced complexity polynomial multiplier architecture for finite fields GF(2m).,2017,14,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee14.html#ChoiL17,https://doi.org/10.1587/elex.14.20160797 +Zhibin Zeng,A novel simple wideband common-mode suppression filter.,2014,11,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee11.html#ZengZSYX14,https://doi.org/10.1587/elex.11.20140582 +Ryoichi Sato,Novel usage of binary tree in SBR algorithm for efficient indoor propagation analysis.,2012,9,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee9.html#SatoSS12,https://doi.org/10.1587/elex.9.673 +Jian Guo,Design of a millimeter-wave third-harmonic mixer using substrate integrated waveguide balun.,2017,14,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee14.html#GuoXCQ17,https://doi.org/10.1587/elex.14.20170980 +Naoya Onizawa,Soft-error tolerant transistor/magnetic-tunnel-junction hybrid non-volatile C-element.,2014,11,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee11.html#OnizawaH14,https://doi.org/10.1587/elex.11.20141017 +Hiroshi Ito,Low noise homodyne detection of terahertz waves by zero-biased InP/InGaAs Fermi-level managed barrier diode.,2017,14,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee14.html#ItoI17,https://doi.org/10.1587/elex.14.20170722 +Kazuhiro Takahashi,A two-dimensional ƒ*-λ2* micro optical lens scanner with electrostatic comb-drive XY-stage.,2005,2,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee2.html#TakahashiKSMFT05,https://doi.org/10.1587/elex.2.542 +Fengjuan Wang,Explicit model of thermal stress induced by annular through-silicon-via (TSV).,2016,13,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee13.html#WangY16a,https://doi.org/10.1587/elex.13.20160767 +C. C. Hiew,A technique to improve optical time division multiplexing - wavelength division multiplexing performance.,2005,2,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee2.html#HiewACA05,https://doi.org/10.1587/elex.2.589 +Hwanyong Lee,OpenGL ES 1.1 software implementation on mobile phones.,2010,7,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee7.html#LeeBH10,https://doi.org/10.1587/elex.7.880 +Rintaro Katayama,Multi-user detection for co-channel heterogeneous radio signals in ubiquitous antenna system.,2005,2,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee2.html#KatayamaTK05,https://doi.org/10.1587/elex.2.211 +Won Seob Jeong,Swarm Processor System: hardware process scheduler based energy efficient multi-core system.,2014,11,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee11.html#JeongKLR14,https://doi.org/10.1587/elex.11.20140424 +Dong-Kurl Kwak,Novel PFC ac-dc converter of high efficiency used in 2kW fire electric installation.,2007,4,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee4.html#Kwak07,https://doi.org/10.1587/elex.4.1 +Wei Liu,MSK-Binary Coded Symbol modulations for global navigation satellite systems.,2010,7,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee7.html#LiuDZZ10,https://doi.org/10.1587/elex.7.421 +Rita Perets,An Array of Time Varying Kalman Carrier Trackers for Improved Receivers in Burst Communications.,2004,1,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee1.html#PeretsB04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.51 +Shahid Rauf,Triangular loop resonator based compact chipless RFID tag.,2017,14,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee14.html#RaufRSIAT17,https://doi.org/10.1587/elex.14.20161262 +Young-Chan Jang,An unmatched source synchronous I/O link for jitter reduction in a multi-phase clock system.,2010,7,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee7.html#Jang10a,https://doi.org/10.1587/elex.7.797 +Hyung-Ki Sung,Performance analysis of random unitary beamforming mutli-user MIMO systems.,2008,5,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee5.html#SungLK08,https://doi.org/10.1587/elex.5.995 +Lirui Chen,Low latency QRD algorithm for future communication.,2017,14,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee14.html#ChenLWXZL17,https://doi.org/10.1587/elex.14.20170846 +Atsushi Sanada,Characteristics of an isotropic 3-dimensional left-handed metamaterial composed of wired metallic spheres.,2009,6,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee6.html#Sanada09,https://doi.org/10.1587/elex.6.689 +Nathabhat Phankong,Characterization of the gate-voltage dependency of input capacitance in a SiC MOSFET.,2010,7,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee7.html#PhankongFH10,https://doi.org/10.1587/elex.7.480 +Takuo Tanaka,Plasmonic metamaterials.,2012,9,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee9.html#Tanaka12,https://doi.org/10.1587/elex.9.34 +Kazunari Kato,Two phase clocked subthreshold adiabatic logic circuit.,2015,12,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee12.html#KatoTS15,https://doi.org/10.1587/elex.12.20150695 +Ibrar ullah Jan,Visual landing of helicopter by divide and conquer rule.,2011,8,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee8.html#JanKI11,https://doi.org/10.1587/elex.8.1542 +Toshifumi Moriyama,Planar multiband antenna for 3G/4G advanced wireless services.,2014,11,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee11.html#MoriyamaVSRG14,https://doi.org/10.1587/elex.11.20140570 +Mehdi Saeedi,Synthesis of reversible circuits using a moving forward strategy.,2008,5,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee5.html#SaeediSZ08,https://doi.org/10.1587/elex.5.638 +Yuhong He,A compact utral-wideband bandpass filter with broad stopband based on step-impedance stub-loaded tri-mode resonator.,2017,14,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee14.html#HeMY17,https://doi.org/10.1587/elex.14.20161214 +Somayeh Gholami,The gaussian distribution of inhomogeneous barrier heights in PtSi/p-Si Schottky diodes.,2009,6,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee6.html#GholamiHE09,https://doi.org/10.1587/elex.6.972 +Zhiqiang You,A scan disabling-based BAST scheme for test cost and test power reduction.,2012,9,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee9.html#YouWLKQ12,https://doi.org/10.1587/elex.9.111 +Hiroya Tanaka,Path-loss measurement system for design of in-vehicle short range communication.,2013,10,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee10.html#TanakaMWH13,https://doi.org/10.1587/elex.10.20130679 +Jin Wu,A novel CMOS high accuracy fast speed OTA for switched-capacitor filters.,2011,8,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee8.html#WuMNQ11,https://doi.org/10.1587/elex.8.884 +Tsuyoshi Funaki,High-temperature characteristics of SiC Schottky barrier diodes related to physical phenomena.,2008,5,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee5.html#FunakiKH08,https://doi.org/10.1587/elex.5.198 +Masamichi Fujiwara,Loss budget in single-fiber loopback access networks with ASE light source considering gain compression effect of GS-SOA.,2009,6,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee6.html#FujiwaraSKK09,https://doi.org/10.1587/elex.6.65 +Kazunori Nakamiya,Direct measurements of propagation delay of single-flux-quantum circuits by time-to-digital converters.,2008,5,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee5.html#NakamiyaYFTH08,https://doi.org/10.1587/elex.5.332 +Arash Azizi Mazreah,A low power and high density cache memory based on novel SRAM cell.,2009,6,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee6.html#MazreahRMM09,https://doi.org/10.1587/elex.6.1084 +José Luis Olvera-Cervantes,A wideband bandpass filter with improved out-of-band performance.,2009,6,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee6.html#Olvera-CervantesCML09,https://doi.org/10.1587/elex.6.1143 +Lei Guo,Transpose-free variable-size FFT accelerator based on-chip SRAM.,2014,11,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee11.html#GuoTLDZ14,https://doi.org/10.1587/elex.11.20140171 +Huajun Zhang,HF superdirective smart antenna system for interference suppression.,2015,12,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee12.html#ZhangGZLW15,https://doi.org/10.1587/elex.12.20141165 +Jing Yang,Dual-use multistatic HF ocean radar for current mapping and ship tracking.,2014,11,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee11.html#YangWSXLWZWW14,https://doi.org/10.1587/elex.11.20140281 +Xia Bai,Broadband dual-polarized omnidirectional antenna based on magnetic dipoles.,2018,15,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee15.html#BaiSGL18,https://doi.org/10.1587/elex.15.20171149 +Lin Wang 0009,HRTF compression via principal components analysis and vector quantization.,2008,5,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee5.html#WangYC08,https://doi.org/10.1587/elex.5.321 +Makoto Fukuda,Detection of a second harmonic ultrasonic component generated from a fastened bolt using a double-layered piezoelectric transducer.,2009,6,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee6.html#FukudaI09,https://doi.org/10.1587/elex.6.1438 +Yasuhiko Ishikawa,Ge-on-Si photonic devices for photonic-electronic integration on a Si platform.,2014,11,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee11.html#IshikawaS14,https://doi.org/10.1587/elex.11.20142008 +Koichi Narahara,Experimental characterization of short-pulse generation using switch lines.,2008,5,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee5.html#NaraharaY08,https://doi.org/10.1587/elex.5.973 +NgocDuc Au,Novel design of a 2.1-2.9 GHz negative capacitance using a passive non-Foster circuit.,2017,14,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee14.html#AuS17,https://doi.org/10.1587/elex.13.20160955 +Xiaoming Yang,High voltage (>*1100V) SOI LDMOS with an accumulated charges layer for double enhanced dielectric electric field.,2013,10,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee10.html#YangLCWC13,https://doi.org/10.1587/elex.10.20130057 +Jingbo Liu,Frozen bits selection for polar codes based on simulation and BP decoding.,2017,14,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee14.html#LiuS17,https://doi.org/10.1587/elex.14.20170026 +Keizo Inagaki,Optoelectronic frequency response measurement of photodiodes by using high-extinction ratio optical modulator.,2012,9,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee9.html#InagakiKI12,https://doi.org/10.1587/elex.9.220 +Ashkan Horri,A small signal circuit model of two mode InAs/GaAs quantum dot laser.,2011,8,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee8.html#HorriFH11,https://doi.org/10.1587/elex.8.245 +Fengjuan Wang,Thermo-mechanical performance of Cu and SiO2 filled coaxial through-silicon-via (TSV).,2013,10,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee10.html#WangZYLD13a,https://doi.org/10.1587/elex.10.20130894 +Songjun Zhang,A novel optimization design approach for Contourlet directional filter banks.,2014,11,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee11.html#ZhangYCWIN14,https://doi.org/10.1587/elex.11.20140556 +Xi Qu,A fast-transient on-chip LDO with advanced dynamic biasing circuit.,2014,11,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee11.html#QuZZF14,https://doi.org/10.1587/elex.11.20140690 +Sheng Xie,A design methodology to extend bandwidth for regulated cascode transimpedance amplifier.,2017,14,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee14.html#XieWML17,https://doi.org/10.1587/elex.13.20161098 +Kazuhiko Takeno,Wireless power transmission technology for mobile devices.,2013,10,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee10.html#Takeno13,https://doi.org/10.1587/elex.10.20132010 +Haonan Wang,A 6-bit 1GS/s DAC using an area efficient switching scheme for gradient-error tolerance.,2013,10,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee10.html#WangYWWC13,https://doi.org/10.1587/elex.10.20130328 +Sunghan Choi,Development of a vertical optical coupler using a slanted etching of InP/InGaAsP waveguide.,2013,10,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee10.html#ChoiHZKSTN13,https://doi.org/10.1587/elex.10.20130116 +Xiaomin Shi,Novel ultra-wideband (UWB) bandpass filter using multiple-mode resonator.,2016,13,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee13.html#ShiXLY16,https://doi.org/10.1587/elex.13.20160425 +Dong Chen,A wideband high efficiency V-band 65 nm CMOS power amplifier with neutralization and harmonic controlling.,2017,14,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee14.html#ChenJZLSXK17,https://doi.org/10.1587/elex.14.20171110 +Xinchang Li,A high voltage multiplexer with rail to rail output swing for battery management system applications.,2017,14,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee14.html#LiXZCYCYN17,https://doi.org/10.1587/elex.13.20161144 +Lin-Lin Tang,A novel multiple description image coding framework based on the SFQ algorithm.,2009,6,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee6.html#TangL09,https://doi.org/10.1587/elex.6.1137 +Kunil Choe,A pixel array PSD with divide-by-M winner-take-all architecture.,2007,4,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee4.html#ChoeH07,https://doi.org/10.1587/elex.4.82 +Sung-Chan Kang,Novel explicit pulse-based flip-flop for high speed and low power SoCs.,2007,4,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee4.html#KangJK07,https://doi.org/10.1587/elex.4.731 +Lingsheng Yang,Design of a dual-band antenna with L-shaped stub.,2011,8,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee8.html#YangY11,https://doi.org/10.1587/elex.8.1887 +Sangjin Byun,Simple odd number frequency divider with 50% duty cycle.,2012,9,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee9.html#ByunSK12,https://doi.org/10.1587/elex.9.1249 +Muhammad Umer Mian,Optical and capacitive characterization of MEMS magnetic resonator.,2016,13,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee13.html#MianDKART16,https://doi.org/10.1587/elex.13.20160773 +Bisheng Wang,Efficient Identification UHF RFID system scheme based on combination of DFSA and OVSF-CDMA.,2008,5,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee5.html#WangYZ08,https://doi.org/10.1587/elex.5.954 +Toshiki Kanamoto,Resistivity-based modeling of substrate non-uniformity for low-resistivity substrate.,2014,11,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee11.html#KanamotoICO14,https://doi.org/10.1587/elex.11.20130813 +Yuan Jiang,Frequency reconfigurable filtering power divider with a single varactor.,2018,15,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee15.html#JiangLTZ18,https://doi.org/10.1587/elex.15.20180022 +Nattapong Kitsuwan,A hybrid pump wavelength assignment scheme for optical packet switch with parametric wavelength converters.,2011,8,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee8.html#KitsuwanIO11,https://doi.org/10.1587/elex.8.1337 +Ockgoo Lee,A switchless reconfigurable transformer CMOS power amplifier.,2012,9,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee9.html#LeeACC12,https://doi.org/10.1587/elex.9.855 +Mitsuko Mieno,Variable generation of optical BPSK code labels using LiNbO3 modulators.,2011,8,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee8.html#MienoWSWN11,https://doi.org/10.1587/elex.8.1614 +Mahdi Parvizi,Highly linear common-gate mixer employing intrinsic second and third order distortion cancellation.,2009,6,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee6.html#ParviziN09,https://doi.org/10.1587/elex.6.310 +Abdhesh K. Singh,CFOA-based state-variable biquad and its high-frequency compensation.,2005,2,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee2.html#SinghS05,https://doi.org/10.1587/elex.2.232 +Ju Hee Choi,Adaptive replacement policy for hybrid cache architecture.,2014,11,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee11.html#ChoiP14,https://doi.org/10.1587/elex.11.20140946 +S. H. Mohseni Armaki,Optimum shape and size of slots for TE21 tracking mode coupler.,2011,8,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee8.html#ArmakiKN11,https://doi.org/10.1587/elex.8.657 +Meng Liu,A novel obstacle-aware multiple fan-out symmetrical clock tree synthesis.,2017,14,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee14.html#LiuZSW17,https://doi.org/10.1587/elex.14.20170935 +Fatemeh Kalantari,A fully integrated dual-band CMOS LNA for IEEE802.16a.,2006,3,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee3.html#KalantariM06,https://doi.org/10.1587/elex.3.474 +Alberto Palacios Pawlovsky,Using simulated annealing to generate input pairs to measure the maximum power dissipation in combinational CMOS circuits.,2005,2,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee2.html#Pawlovsky05,https://doi.org/10.1587/elex.2.115 +Lianghua Miao,A column-parallel clock skew self-calibration circuit for time-resolved CMOS image sensors.,2015,12,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee12.html#MiaoYIK15,https://doi.org/10.1587/elex.12.20150911 +Ke Wang,A 14-bit 100 MS/s SHA-less pipelined ADC with 89 dB SFDR and 74.5 dB SNR.,2015,12,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee12.html#WangFPZ15,https://doi.org/10.1587/elex.12.20150070 +Xinpeng Di,A high performance with low harmonic distortion interface circuit of sigma-delta accelerometer.,2016,13,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee13.html#DiCLYF16,https://doi.org/10.1587/elex.13.20160457 +Dasha Zhang,Electronic method for suppressing output instability of GMI sensors caused by the orientation.,2018,15,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee15.html#ZhangPZZ18,https://doi.org/10.1587/elex.15.20171183 +Keisuke Sorimoto,MEMS mirror with slot structures suitable for flexible-grid WSS.,2013,10,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee10.html#SorimotoKMHITU13,https://doi.org/10.1587/elex.10.20120924 +Gyung-Ho Hwang,A new medium access control scheme at relay nodes for throughput improvement in wireless mesh networks.,2011,8,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee8.html#Hwang11,https://doi.org/10.1587/elex.8.466 +Tao Chen,A 2.4GHz GaAs HBT stacked power amplifier with inductance compensation.,2013,10,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee10.html#ChenSWNG13,https://doi.org/10.1587/elex.10.20130470 +Yoshinao Mizugaki,Optimization of asymmetric single-electron transistor generating ac-induced dc current.,2007,4,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee4.html#MizugakiKMUKS07,https://doi.org/10.1587/elex.4.345 +Hyunwoo Kim,Acquisition accuracy enhancement of high-speed storage interface signals.,2017,14,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee14.html#KimS17,https://doi.org/10.1587/elex.14.20170634 +Jong Won Eun,Erratum: A microstrip dual-band bandpass filter using feed line with SIR [IEICE Electronics Express Vol. 14 (2017) No. 4 pp. 20170022].,2017,14,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee14.html#EunL17a,https://doi.org/10.1587/elex.14.20178003 +S. M. Shamsul Alam,Design and implementation of a novel LT codec architecture on TTA based codesign environment.,2016,13,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee13.html#AlamC16,https://doi.org/10.1587/elex.13.20160298 +Peera Thontirawong,3DFTL: a three-level demand-based translation strategy for flash device.,2015,12,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee12.html#ThontirawongWWE15,https://doi.org/10.1587/elex.12.20150211 +Zhiping Wu,The Adaptive Thermal and Traffic-Balanced Routing algorithm based on temperature analysis and traffic statistics.,2015,12,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee12.html#WuWZG15,https://doi.org/10.1587/elex.12.20150101 +Rashid Mirzavand,Meshless physical simulation of semiconductor devices using a wavelet-based nodes generator.,2011,8,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee8.html#MirzavandAMM11,https://doi.org/10.1587/elex.8.1757 +Xiaobao Chen,Reconfigurable pseudo-NMOS-like logic with hybrid MOS and single-electron transistors.,2013,10,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee10.html#ChenXSN13,https://doi.org/10.1587/elex.10.20130697 +Farzan Jazayeri,Low-power variable gain amplifier with wide UGBW based on nanoscale Field Effect Diode.,2009,6,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee6.html#JazayeriFR09,https://doi.org/10.1587/elex.6.51 +Kayoko Seto,A Look-ahead Active Body-biasing scheme for SOI-SRAM with dynamic VDDM control.,2009,6,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee6.html#SetoIHNTI09,https://doi.org/10.1587/elex.6.456 +Taek-Joon Ahn,A low-power CDR using dynamic CML latches and V/I converter merged with XOR for half-rate linear phase detection.,2014,11,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee11.html#AhnSAK14,https://doi.org/10.1587/elex.11.20140657 +Sun Shu long,High throughput and low complexity implementation of NB-LDPC decoder based on EMS algorithm.,2016,13,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee13.html#longM16,https://doi.org/10.1587/elex.13.20160653 +S. Hassan Mirhosseini,Design a 10-Bit 100MHz pipelined ADC using RB-OTA in 90nm CMOS technology.,2012,9,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee9.html#MirhosseiniA12,https://doi.org/10.1587/elex.9.815 +Fengjuan Wang,Thermal management of coaxial through-silicon-via (C-TSV)-based three-dimensional integrated circuit (3D IC).,2016,13,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee13.html#WangY16,https://doi.org/10.1587/elex.13.20151117 +Qiang Fu,A quartz vibrating gyroscope interface circuit driven by sine-wave based on nonlinear multiplier.,2016,13,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee13.html#FuYDCL16,https://doi.org/10.1587/elex.13.20160565 +Qian Gao,A single-to-differential broadband transimpedance amplifier for 12.5 Gb/s optical links.,2017,14,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee14.html#GaoXMWGLS17,https://doi.org/10.1587/elex.13.20161153 +Fengjuan Wang,Analytical models for the thermal strain and stress induced by annular through-silicon-via (TSV).,2013,10,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee10.html#WangZYLD13,https://doi.org/10.1587/elex.10.20130666 +Sheng Liu,LP2D: a novel low-power 2D memory for sliding-window applications in vector DSPs.,2011,8,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee8.html#LiuCNWCZW11,https://doi.org/10.1587/elex.8.2106 +Kazutaka Nara,Property improvement of flat-top 50GHz-88ch arrayed waveguide grating using phase correction waveguides.,2010,7,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee7.html#NaraM10,https://doi.org/10.1587/elex.7.1158 +Li Zhang 0021,Analysis and measurement of misalignment effect in inductive-coupling wireless inter-chip connection.,2017,14,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee14.html#ZhangXLZZ17,https://doi.org/10.1587/elex.14.20170476 +Yong Liang,Improvement of the bit-stream squarer and square root circuit based on and#931*Γ6* modulation.,2014,11,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee11.html#LiangWMGZ14,https://doi.org/10.1587/elex.11.20140575 +Hideki Yagi,High receiver responsivity and low dark current of InP-based pin-photodiode array monolithically integrated with 90®6* hybrid and spot-size converter using selective embedding regrowth.,2015,12,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee12.html#YagiIKMKTUYTS15,https://doi.org/10.1587/elex.11.20141018 +Jiho Kim,IQ imbalance compensation for OFDM based wireless LANs.,2007,4,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee4.html#KimJSK07,https://doi.org/10.1587/elex.4.524 +Hamed Mosalam,A 12 to 24 GHz high efficiency fully integrated 0.18 andmicro*m CMOS power amplifier.,2016,13,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee13.html#MosalamAJAKP16,https://doi.org/10.1587/elex.13.20160551 +Hyunseong Kang,Electrically small dual-band substrate-integrated-waveguide antenna with fixed low-frequency and tunable high-frequency bands.,2014,11,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee11.html#KangL14,https://doi.org/10.1587/elex.11.20140007 +Yongan Zheng,A tunable transformer-based CMOS directional coupler for UHF RFID readers.,2017,14,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee14.html#ZhengYHGWL17,https://doi.org/10.1587/elex.14.20161261 +Chunwei Zhang,A lateral DMOS with partial buried-oxide layer to achieve better RESURF effect.,2014,11,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee11.html#ZhangLSYS14,https://doi.org/10.1587/elex.11.20140055 +Seung-Jin Lee,Sensor data compression and power management scheme for low power sensor hub.,2017,14,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee14.html#LeeKP17,https://doi.org/10.1587/elex.14.20170974 +Moriya Nakamura,DGD- and dispersion-tolerance of QPSK self-homodyne detection based on a polarization-multiplexed pilot carrier.,2009,6,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee6.html#NakamuraKM09a,https://doi.org/10.1587/elex.6.1286 +Yusaku Yoshida,A linear model based noise evaluation of a capacitive servo-accelerometer fabricated by MEMS.,2005,2,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee2.html#YoshidaKAN05,https://doi.org/10.1587/elex.2.198 +Eduardo Ortega-Torres,Behavioral modeling for synthesizing n-scroll attractors.,2014,11,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee11.html#Ortega-TorresRS14,https://doi.org/10.1587/elex.11.20140467 +Ramón Chávez-Bracamontes,VLSI architecture of a Kalman filter optimized for real-time applications.,2016,13,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee13.html#Chavez-Bracamontes16,https://doi.org/10.1587/elex.13.20160043 +Omer Aydin,Effect of offset lines in Doherty power amplifiers.,2015,12,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee12.html#AydinPY15,https://doi.org/10.1587/elex.12.20150867 +Yuhua Liang,Strategy for SAR ADC with 87.5% area saving and 99.4% switching energy reduction over conventional approach.,2015,12,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee12.html#LiangZLD15,https://doi.org/10.1587/elex.12.20150058 +Keun-Chang Kwak,Face recognition with the use of tensor representation in home robot environments.,2009,6,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee6.html#Kwak09,https://doi.org/10.1587/elex.6.187 +Morteza Nabavi,A gate sizing and transistor fingering strategy for subthreshold CMOS circuits.,2012,9,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee9.html#NabaviS12,https://doi.org/10.1587/elex.9.1550 +Abdul Arfan,Access time-aware cache algorithm for SATA hard disks.,2012,9,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee9.html#ArfanKK12,https://doi.org/10.1587/elex.9.1707 +Mohammad Naser-Moghadasi,Dyadic Green's function for a dielectric layer on a PEMC elliptical cylinder.,2010,7,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee7.html#Naser-MoghadasiSH10,https://doi.org/10.1587/elex.7.1034 +Min Zeng,Intelligent sensor node based a low power ECG monitoring system.,2009,6,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee6.html#ZengLCL09,https://doi.org/10.1587/elex.6.560 +Yalong Yan,Non-Foster matching network design for VLF receive loop antenna.,2016,13,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee13.html#YanLWD16,https://doi.org/10.1587/elex.13.20160460 +Huanyao Dai,A new polarization estimation method based on spatial polarization characteristic of antenna.,2012,9,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee9.html#DaiCL12,https://doi.org/10.1587/elex.9.902 +Botao Zhang,Area-efficient reed-solomon decoder for 10Gbps satellite communication.,2011,8,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee8.html#ZhangLY11,https://doi.org/10.1587/elex.8.1001 +Moonmo Koo,Flexible DMA subsystem in multi-core platforms for video applications.,2010,7,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee7.html#KooC10,https://doi.org/10.1587/elex.7.1065 +Tao Shan,Multi-channel NLMS-based sea clutter cancellation in passive bistatic radar.,2014,11,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee11.html#ShanMTL14,https://doi.org/10.1587/elex.11.20140872 +Takeshi Sugawara,Profiling attack using multivariate regression analysis.,2010,7,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee7.html#SugawaraHAS10,https://doi.org/10.1587/elex.7.1139 +Hojin Ghim,An energy-efficient dispersion method for deployment of mobile sensor networks.,2010,7,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee7.html#GhimKKCY10,https://doi.org/10.1587/elex.7.722 +Oupeng Li,140 GHz power amplifier based on 0.5 andmicro*m composite collector InP DHBT.,2017,14,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee14.html#LiZZWXSCWN17,https://doi.org/10.1587/elex.14.20170191 +Kian Yong Lim,Analysis of a distributed coupling coefficient phase-controlled distributed feedback optical filter.,2004,1,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee1.html#LimLCYF04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.103 +Hyukjin Chae,Methods for mitigating inter-carrier interference caused by power amplifier transient in LTE modem.,2015,12,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee12.html#ChaeCK15,https://doi.org/10.1587/elex.12.20141177 +Yoshinao Mizugaki,Numerical and experimental evaluation of mutual inductances between two superconducting striplines coupled through a superconducting intermediate layer.,2006,3,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee3.html#MizugakiHMUK06,https://doi.org/10.1587/elex.3.64 +Keisuke Kasai,Performance improvement of an acetylene (C2H2) frequency-stabilized fiber laser.,2006,3,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee3.html#KasaiSYN06,https://doi.org/10.1587/elex.3.487 +Daisuke Kanemoto,A novel third order Delta Sigma Modulator with one opamp shared among three integrator stages.,2008,5,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee5.html#KanemotoI008,https://doi.org/10.1587/elex.5.1088 +Cuimei Ma,High-speed design for mixed radix FFT algorithm based on multi-bank memory strategy.,2016,13,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee13.html#MaW16,https://doi.org/10.1587/elex.13.20160646 +Shih-Hsu Huang,Operation scheduling for the synthesis of false loop free circuits.,2007,4,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee4.html#HuangC07,https://doi.org/10.1587/elex.4.448 +Sang-Seol Lee,Implementation of improved channel estimation using transform domain in mobile OFDM systems.,2010,7,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee7.html#LeeSWKC10,https://doi.org/10.1587/elex.7.1152 +Toshihiko Hirooka,100 Gbit/s real-time digital coherent transmission over a 32 km legacy multi-mode graded-index fiber.,2014,11,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee11.html#HirookaNKS14,https://doi.org/10.1587/elex.11.20140563 +Kohsuke Nishimura,Statistic numerical analysis of all-optically regenerated transmission system: how to keep high strictness and simplicity at the same time.,2008,5,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee5.html#Nishimura08,https://doi.org/10.1587/elex.5.35 +Wei Li,A FSS of hybrid combined elements for dual-band operations.,2017,14,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee14.html#LiSCC17,https://doi.org/10.1587/elex.14.20171008 +Chong Siew Chin,Tokenised discretisation in iris verification.,2005,2,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee2.html#ChinJL05,https://doi.org/10.1587/elex.2.349 +Zixuan Wang,A 2.4-GHz all-digital phase-locked loop with a pipeline-Γ6* Σ time-to-digital converter.,2017,14,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee14.html#WangHCZJWG17,https://doi.org/10.1587/elex.14.20170095 +Gwo Chin Chung,An adaptive minimum bit-error decision-feedback equalizer for UWB systems.,2007,4,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee4.html#ChungAC07,https://doi.org/10.1587/elex.4.435 +Yuan Su,A high power-efficient LVDS output driver with adjustable feed-forward capacitor compensation.,2015,12,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee12.html#SuYR15,https://doi.org/10.1587/elex.12.20150368 +Katsumi Fujii,RF power measurement in D-band using down-converter calibrated by three-mixer method.,2012,9,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee9.html#FujiiTFM12,https://doi.org/10.1587/elex.9.1096 +Karthik Muralidhar,Delay coefficients based variable step size algorithm for subband affine projection adaptive filters.,2009,6,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee6.html#MuralidharKLG09,https://doi.org/10.1587/elex.6.20 +Ruen Shan Leow,An efficient low-cost real-time brain computer interface system based on SSVEP.,2010,7,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee7.html#LeowMI10,https://doi.org/10.1587/elex.7.326 +De Liu,Delay-optimized floating point fused add-subtract unit.,2015,12,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee12.html#LiuWZ15,https://doi.org/10.1587/elex.12.20150642 +Sang Hyo Woo,Body temperature predicting Patch-Type telemedicine system.,2009,6,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee6.html#WooMLJSLBLWC09,https://doi.org/10.1587/elex.6.1161 +Mohsen Akbari,Improved soft fusion-based cooperative spectrum sensing using particle swarm optimization.,2012,9,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee9.html#AkbariMEI12,https://doi.org/10.1587/elex.9.436 +César Torres-Huitzil,Comparison between 2D cellular automata based pseudorandom number generators.,2012,9,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee9.html#Torres-HuitzilDN12,https://doi.org/10.1587/elex.9.1391 +Wen Ji,Self-adjustable offset min-sum algorithm for ISDB-S2 LDPC decoder.,2010,7,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee7.html#JiHNG10,https://doi.org/10.1587/elex.7.1283 +Takanori Shimizu,Gigahertz-rate optical modulation on Mach-Zehnder PLZT electro-optic modulators formed on silicon substrates by aerosol deposition.,2009,6,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee6.html#ShimizuNTMAO09,https://doi.org/10.1587/elex.6.1669 +Koichi Maezawa,Dual-clock MASH delta-sigma modulator employing a frequency modulated intermediate signal.,2006,3,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee3.html#MaezawaSMM06,https://doi.org/10.1587/elex.3.459 +Hyemin Yang,Fully integrated UHF RFID mobile reader with power amplifiers using System-in-Package (SiP).,2011,8,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee8.html#YangKBL11,https://doi.org/10.1587/elex.8.83 +Qi Zhang,DOAs estimation of broadband signals based on a novel multi-channel compressed system.,2016,13,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee13.html#ZhangZT16,https://doi.org/10.1587/elex.13.20161079 +Sang-hyeok Yang,A switched-capacitor PWM generator for LCD backlight brightness control.,2011,8,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee8.html#YangLKL11,https://doi.org/10.1587/elex.8.842 +Jordi Espina,EMI modeling method of AC-AC power converters.,2011,8,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee8.html#EspinaBAO11,https://doi.org/10.1587/elex.8.13 +Seung-Jun Yu,Enhanced Lattice-Reduction aided detection for MIMO systems with QRD-M detector.,2011,8,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee8.html#YuSS11,https://doi.org/10.1587/elex.8.767 +Rong-Shan Wei,Multi-stage sigma-delta ADC with noise-coupling technology.,2016,13,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee13.html#WeiY16,https://doi.org/10.1587/elex.13.20160894 +Muhammad Sohail Iqbal,FSS inspired polarization insensitive chipless RFID tag.,2017,14,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee14.html#IqbalSRRAT17,https://doi.org/10.1587/elex.14.20170243 +Choon Ki Ahn,Fixed-lag maximum likelihood FIR smoother for state-space models.,2008,5,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee5.html#AhnK08,https://doi.org/10.1587/elex.5.11 +Song Guo,An efficient multi-standard QC-LDPC decoder based on the row-layered decoding algorithm.,2015,12,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee12.html#GuoDLLL15,https://doi.org/10.1587/elex.12.20150356 +Zong-Yi Yang,High-performance cost-efficient dual-band CMOS LC VCO.,2015,12,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee12.html#YangC15,https://doi.org/10.1587/elex.12.20150118 +Michihiro Koibuchi,Optical network technologies for HPC: computer-architects point of view.,2016,13,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee13.html#KoibuchiFINCMAK16,https://doi.org/10.1587/elex.13.20152007 +Hyeonggeon Lee,A unified system level error model of crosstalk and electromigration for on-chip interconnect.,2017,14,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee14.html#LeePK17,https://doi.org/10.1587/elex.14.20161194 +Yasar Amin,RFID antenna humidity sensor co-design for USN applications.,2013,10,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee10.html#AminFCZT13,https://doi.org/10.1587/elex.10.20130003 +Mohammadreza Noorimehr,A new four-moduli set with high speed RNS arithmetic unit and efficient reverse converter.,2010,7,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee7.html#NoorimehrHF10,https://doi.org/10.1587/elex.7.1584 +Ge Wei,High performance and area efficiency design of global register file for coarse-grained reconfigurable cryptographic processor.,2016,13,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee13.html#WeiYY16,https://doi.org/10.1587/elex.13.20160545 +Midia Reshadi,Elixir: A new bandwidth-constrained mapping for Networks-on-chip.,2010,7,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee7.html#ReshadiKR10,https://doi.org/10.1587/elex.7.73 +Qian-Fu Cheng,High-efficiency parallel-circuit class-E power amplifier with distributed T-shaped compensation circuit.,2016,13,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee13.html#ChengFZM16,https://doi.org/10.1587/elex.13.20160570 +Yu Guo,A compact and customizable operation frequency filter for broadband applications.,2015,12,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee12.html#GuoHLWWL15,https://doi.org/10.1587/elex.12.20150576 +Tatsunori Omiya,60Gbit/s 64 QAM-OFDM coherent optical transmission with a 5.3GHz bandwidth.,2010,7,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee7.html#OmiyaOKYN10,https://doi.org/10.1587/elex.7.1163 +Zhenxing Yu,Analysis and design of a V-band low-noise amplifier in 90 nm CMOS for 60 GHz applications.,2015,12,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee12.html#YuFGL15,https://doi.org/10.1587/elex.11.20141097 +Weidong Nie,A simple cost-effective PSR LED driver without auxiliary winding.,2013,10,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee10.html#NieWY13,https://doi.org/10.1587/elex.10.20130756 +Daisuke Okamoto,Bit error rate analysis of a silicon optical interposer using its equivalent circuit.,2015,12,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee12.html#OkamotoAUFAUN15,https://doi.org/10.1587/elex.11.20141084 +Kenichiro Tsuji,Simultaneous photonic generation of two microwave signals with precisely-controllable phase difference using orthogonal polarization modes.,2016,13,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee13.html#TsujiHUO16,https://doi.org/10.1587/elex.13.20151029 +Ling Du,A digital background calibration technique for SAR ADC based on capacitor swapping.,2014,11,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee11.html#DuNWYL14,https://doi.org/10.1587/elex.11.20140325 +Naeem Maroof,Energy efficient low static-power voltage level shifter.,2015,12,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee12.html#MaroofSS15,https://doi.org/10.1587/elex.12.20150633 +Masaki Hirano,Fast computation for electromagnetic scattering problems using a heterogeneous multi-core processor.,2011,8,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee8.html#HiranoO11,https://doi.org/10.1587/elex.8.1330 +Xiaojing Huang,Ship detection and tracking using multi-frequency HFSWR.,2010,7,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee7.html#HuangWD10,https://doi.org/10.1587/elex.7.410 +Young Hwan Lho,Design of non-uniform 100-V super-junction trench power MOSFET with low on-resistance.,2012,9,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee9.html#LhoY12,https://doi.org/10.1587/elex.9.1109 +Xin Cao,A tunable dual-band bandpass filter using asymmetrical varactor-loaded HWRs and defected ground structure.,2015,12,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee12.html#CaoTWY15,https://doi.org/10.1587/elex.12.20150482 +Hideaki Asakura,Design and characterization of an arrayed-waveguide grating router with an interleave-chirped array.,2015,12,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee12.html#AsakuraT15,https://doi.org/10.1587/elex.12.20150261 +Jumpei Ishikawa,Work function modulation of PtSi by alloying with Yb.,2011,8,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee8.html#IshikawaGO11,https://doi.org/10.1587/elex.8.33 +Mohsen Shahmohammadi,Energy and area-efficient tri-level switching procedure based on half of the reference voltage for SAR ADC.,2012,9,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee9.html#ShahmohammadiAK12,https://doi.org/10.1587/elex.9.1397 +Chaoyun Yao,Exploring partitioning methods for multicast in 3D bufferless Network on Chip.,2015,12,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee12.html#YaoFZGZW15,https://doi.org/10.1587/elex.12.20150802 +Fengjuan Wang,Study on thermal stress and keep-out zone induced by Cu and SiO2 filled coaxial-annular through-silicon via.,2015,12,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee12.html#WangY15,https://doi.org/10.1587/elex.12.20150844 +Chong Tze Yuang,Multi-space random mapping for speaker identification.,2005,2,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee2.html#YuangJLO05,https://doi.org/10.1587/elex.2.226 +Hiroyuki Uchiyama,Reduction of plasma-induced fluorine damage to P-HEMTs using x-ray emission.,2005,2,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee2.html#UchiyamaTK05,https://doi.org/10.1587/elex.2.143 +Ikuo Awai,"Basic characteristics of ""Magnetic resonance"" wireless power transfer system excited by a 0 ohm power source.",2013,10,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee10.html#Awai13,https://doi.org/10.1587/elex.10.20132008 +Eu-Suk Shim,Residual symbol timing offset estimation for DRM+ system with cyclic delay diversity.,2010,7,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee7.html#ShimYKY10,https://doi.org/10.1587/elex.7.1027 +Wonjong Kim,CMOS pulse generator based on spectral efficiently gated oscillator for UWB impulse radio.,2013,10,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee10.html#KimK13,https://doi.org/10.1587/elex.10.20130204 +Xiaoxian Liu,Reduction of signal reflection in high-frequency three-dimensional (3D) integration circuits.,2013,10,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee10.html#LiuZYWD13,https://doi.org/10.1587/elex.10.20130449 +Nam-Tae Kim,Ultra-wideband bias-tee design using distributed network synthesis.,2013,10,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee10.html#Kim13a,https://doi.org/10.1587/elex.10.20130472 +Juan Ramon Rodriguez-Rodriguez,Reactive current elimination in DC/DC DAB converters based on novel Equivalents Values Modulation (EVM).,2015,12,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee12.html#Rodriguez-Rodriguez15,https://doi.org/10.1587/elex.12.20150197 +Jing Gao,Investigation on Asymmetric Parallel-coupled CPW for lambda/4 Bandpass Filters with Broad Rejection Band.,2004,1,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee1.html#GaoZ04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.1 +Yunchuan Guo,A true-time-delay transmit/receive module for X-band subarray phased arrays.,2017,14,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee14.html#GuoSLWLXZ17,https://doi.org/10.1587/elex.14.20171039 +K. P. Basu,Elimination of inrush current in parallel transformers by sequential phase energization.,2007,4,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee4.html#BasuAM07,https://doi.org/10.1587/elex.4.147 +Yasuyuki Yoshimizu,Wireless transmission using coherent terahertz wave with phase stabilization.,2013,10,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee10.html#YoshimizuHKTYN13,https://doi.org/10.1587/elex.10.20130578 +YongZhong Zhu,A compact double folded quarter mode substrate integrated waveguide (DFQMSIW) filter.,2016,13,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee13.html#Zhu16,https://doi.org/10.1587/elex.13.20160330 +Toshio Ishizaki,Comparative study of coil resonators for wireless power transfer system in terms of transfer loss.,2010,7,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee7.html#IshizakiKIA10,https://doi.org/10.1587/elex.7.785 +Gwo Chin Chung,An adaptive LBER-Rake receiver for UWB system.,2008,5,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee5.html#ChungAC08,https://doi.org/10.1587/elex.5.381 +Bosheng Liu,A signal degradation reduction method for memristor ratioed logic (MRL) gates.,2015,12,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee12.html#LiuWYHL15,https://doi.org/10.1587/elex.12.20150062 +Ik Joon Chang,Bit-error rate improvement of TLC NAND Flash using state re-ordering.,2012,9,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee9.html#ChangY12,https://doi.org/10.1587/elex.9.1775 +Yongmin Jung,Shortened transmit technique removing zeros from repetition in the frequency domain for OFDM systems.,2010,7,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee7.html#JungJ10a,https://doi.org/10.1587/elex.7.1461 +Naeem Maroof,Charge sharing based 10T SRAM for low-power.,2016,13,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee13.html#MaroofSS16,https://doi.org/10.1587/elex.13.20151033 +Jiho Kim,Efficient GPU multitasking with latency minimization and cache boosting.,2017,14,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee14.html#KimCP17,https://doi.org/10.1587/elex.14.20161158 +Tian Song,Fast frame memory access method for H.264/AVC.,2008,5,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee5.html#SongKS08,https://doi.org/10.1587/elex.5.344 +Jinjiang Yang,An area-efficient design of reconfigurable S-box for parallel implementation of block ciphers.,2016,13,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee13.html#YangWCY16,https://doi.org/10.1587/elex.13.20160138 +Jae-Ho Han,Evaluation of EMC up to 1GHz for 155Mb/s optical transceiver modules.,2005,2,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee2.html#HanM05,https://doi.org/10.1587/elex.2.506 +Yani Li,An ultra-low-voltage self-powered energy harvesting rectifier with digital switch control.,2015,12,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee12.html#LiZYZ15,https://doi.org/10.1587/elex.12.20140921 +Kyoung-Min Lee,Sudden-voltage-drop protection technique for enhancing the reliability of mobile devices under low battery conditions.,2015,12,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee12.html#LeeYH15,https://doi.org/10.1587/elex.12.20150252 +Tao Yang,A 3.2-to-4.6 GHz fast-settling all-digital PLL with feed forward frequency presetting.,2017,14,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee14.html#YangYHLPTYYWM17,https://doi.org/10.1587/elex.14.20161215 +Qiang Chen 0001,Diversity performance of modurated scattering array antenna.,2007,4,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee4.html#ChenTYS07,https://doi.org/10.1587/elex.4.216 +Boren Zheng,Improvement of SIW filter upper stopband performance using bypass coupling substrate integrated circular cavity (SICC).,2011,8,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee8.html#ZhengZL11,https://doi.org/10.1587/elex.8.1294 +Alexey Nekrasov,FM-CW millimeter wave demonstrator system as a sensor of the sea surface wind vector.,2004,1,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee1.html#NekrasovWH04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.137 +Rui Hou,Path selection for optimizing nonlinear battery energy consumption.,2013,10,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee10.html#HouCX13,https://doi.org/10.1587/elex.10.20130689 +Suheng Chen,Switched capacitor bandgap voltage reference for sub-1-V operation.,2006,3,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee3.html#ChenB06,https://doi.org/10.1587/elex.3.529 +Mohammad Gholami,A novel architecture for low voltage-low power DLL-based frequency multipliers.,2011,8,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee8.html#GholamiAG11,https://doi.org/10.1587/elex.8.859 +Chunyu Peng,A radiation harden enhanced Quatro (RHEQ) SRAM cell.,2017,14,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee14.html#PengCZXLWL17,https://doi.org/10.1587/elex.14.20170784 +Taeyoon Kim,Joint transceiver design for DSTTD with low-complexity precoder and MMSE-OSIC.,2009,6,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee6.html#KimLA09,https://doi.org/10.1587/elex.6.490 +Mehdi Sedighi,GALS system optimization using retiming concept.,2010,7,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee7.html#SedighiF10,https://doi.org/10.1587/elex.7.209 +Shingo Kumai,High-speed optical switching of InAlGaAs/InAlAs multi-mode interference photonic switch with partial index-modulation region (MIPS-P).,2005,2,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee2.html#KumaiIOUAKS05,https://doi.org/10.1587/elex.2.578 +Héctor Vázquez-Leal,Homotopy method with a formal stop criterion applied to circuit simulation.,2011,8,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee8.html#Vazquez-LealHSCG11,https://doi.org/10.1587/elex.8.1808 +Kaita Imai,A distributed ramp signal generator of column-parallel single-slope ADCs for CMOS image sensors.,2012,9,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee9.html#ImaiYKK12,https://doi.org/10.1587/elex.9.1893 +Satoshi Suda,High speed response of nonlinear optical phase-shifter based on vertical micro-cavity saturable absorber.,2008,5,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee5.html#SudaKNCZ08,https://doi.org/10.1587/elex.5.131 +Haoyue Tang,Mitigate erroneous operations of 2T-2MTJ STT-MRAM based on dynamic voltage threshold.,2016,13,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee13.html#TangZQDLG16,https://doi.org/10.1587/elex.13.20160533 +Xi He,MIMO antenna with working-frequency-accompanied isolation characteristic.,2017,14,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee14.html#HeXL17,https://doi.org/10.1587/elex.14.20170602 +Jin Wang,Evolutionary design of combinational logic circuits using VRA processor.,2009,6,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee6.html#WangL09,https://doi.org/10.1587/elex.6.141 +Bin Shen,Low complexity blindly weighted non-coherent receiver for impulse radio PAM signals.,2011,8,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee8.html#ShenYK11,https://doi.org/10.1587/elex.8.1562 +Hu Chen,SUCA: a scalable unicore architecture with novel instruction encoding and distributed execution control.,2011,8,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee8.html#ChenCWZ11,https://doi.org/10.1587/elex.8.2010 +Donggu Im,A 0.1 to 5GHz ultra-wide band single-to-differential CMOS LNA with output balancing for SDRs.,2013,10,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee10.html#ImN13,https://doi.org/10.1587/elex.10.20130789 +Juan Xu,Rotor dynamic balancing control method based on fuzzy auto-tuning single neuron PID.,2017,14,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee14.html#XuZJZ17,https://doi.org/10.1587/elex.14.20170130 +Ayesha Habib,Frequency signatured directly printable humidity sensing tag using organic electronics.,2017,14,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee14.html#HabibAALT17,https://doi.org/10.1587/elex.14.20161081 +Bo Zhang,A millimeter-wave 6-bit digital attenuator with high accuracy and low insertion loss.,2016,13,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee13.html#ZhangZ16,https://doi.org/10.1587/elex.13.20160357 +Lingsheng Yang,CPW-fed slot antenna for UWB short-range impulse radar systems.,2012,9,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee9.html#YangTYIKYIFKT12,https://doi.org/10.1587/elex.9.1604 +Pei Liu,A dynamic buck converter with ultra fast response and low voltage ripples designed for DVS systems.,2009,6,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee6.html#LiuLG09,https://doi.org/10.1587/elex.6.1490 +Ali Ghaffari,Energy-efficient and QoS-aware geographic routing protocol for wireless sensor networks.,2011,8,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee8.html#GhaffariRK11,https://doi.org/10.1587/elex.8.582 +Nasrudin Abd. Rahim,A modified H-bridge multilevel inverter for photovoltaic system.,2010,7,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee7.html#RahimCS10,https://doi.org/10.1587/elex.7.751 +Masataka Nakazawa,ABCD matrix formalism of time-domain optical Fourier transformation for distortion-free pulse transmission.,2006,3,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee3.html#NakazawaH06,https://doi.org/10.1587/elex.3.74 +Bingchao Li,Exploring new features of high-bandwidth memory for GPUs.,2016,13,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee13.html#LiSWAK16,https://doi.org/10.1587/elex.13.20160527 +Misato Kamei,Spectrum delivery function in distributed antenna system using Radio on Free Space Optics for indoor WLAN.,2007,4,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee4.html#KameiHTK07,https://doi.org/10.1587/elex.4.54 +Xun Li,Planar arrays synthesis for optimal wireless power transmission.,2015,12,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee12.html#LiZD15,https://doi.org/10.1587/elex.12.20150346 +Koichi Maezawa,Controlling high-frequency chaos in resonant tunneling chaos generator circuits.,2005,2,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee2.html#MaezawaKKMTN05,https://doi.org/10.1587/elex.2.368 +Mohammad Tohidi,CMOS implementation of a new high speed 5-2 compressor for parallel accumulations.,2013,10,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee10.html#TohidiAHK13,https://doi.org/10.1587/elex.10.20130364 +Leiou Wang,Low power address bus encoding using loop prediction.,2014,11,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee11.html#WangWH14,https://doi.org/10.1587/elex.11.20140379 +Chunyu Peng,A novel cascade control replica-bitline delay technique for reducing timing process-variation of SRAM sense amplifier.,2015,12,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee12.html#PengTLLJYC15,https://doi.org/10.1587/elex.12.20150102 +Saeed Saeedi,Second and third-order distortion suppression technique for noise canceling CMOS LNAs.,2009,6,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee6.html#SaeediA09,https://doi.org/10.1587/elex.6.959 +Hua-Pin Chen,Voltage-mode universal biquadratic filter with one input and five outputs using two DDCCTAs.,2014,11,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee11.html#ChenWHH14,https://doi.org/10.1587/elex.11.20140234 +Takanori Suzuki,Planar lightwave circuit dispersion compensator using a compact arrowhead arrayed-waveguide grating.,2005,2,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee2.html#SuzukiMIAKUT05,https://doi.org/10.1587/elex.2.572 +Eunji Lee,P2FS: supporting atomic writes for reliable file system design in PCM storage.,2014,11,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee11.html#LeeKB14,https://doi.org/10.1587/elex.11.20140520 +Xi Tan,A highly sensitive wide-range weak current detection circuit for implantable glucose monitoring.,2016,13,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee13.html#TanCYFMW16,https://doi.org/10.1587/elex.13.20150616 +Masahiro Kaminaga,Development and evaluation of a microstep DFA vulnerability estimation method.,2011,8,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee8.html#KaminagaSY11,https://doi.org/10.1587/elex.8.1899 +Manoj Bikumandla,Biasing CMOS amplifiers using MOS transistors in subthreshold region.,2004,1,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee1.html#BikumandlaRUCL04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.339 +Shubin Liu,A CMOS 4.6ppm/®6*C curvature-compensated bandgap voltage reference.,2012,9,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee9.html#LiuZGLLY12,https://doi.org/10.1587/elex.9.1617 +Jun Itoh,Analysis of decoupling method between J-shaped folded monopole antennas for IEEE 802.11b/g on handset.,2010,7,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee7.html#ItohHM10,https://doi.org/10.1587/elex.7.1359 +Longmei Nan,A single-supply sub-threshold level shifter with an internal supply feedback loop for multi-voltage applications.,2018,15,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee15.html#NanZLWD18,https://doi.org/10.1587/elex.15.20180078 +Chang-Hyun Bae,Data and edge decision feedback equalizer with andgt*1.0-UI timing margin for both data and edge samples.,2014,11,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee11.html#BaeY14,https://doi.org/10.1587/elex.11.20140274 +Xiaolong Ma,Gate-All-Around Silicon Nanowire Transistors with channel-last process on bulk Si substrate.,2015,12,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee12.html#MaYH15,https://doi.org/10.1587/elex.12.20150094 +Kee-Won Kim,A low latency semi-systolic multiplier over GF(2m).,2013,10,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee10.html#KimK13a,https://doi.org/10.1587/elex.10.20130354 +Chou-Chen Wang,A fast encoding algorithm for fractal image compression.,2004,1,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee1.html#WangK04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.352 +Su Jung Yu,An efficient scalable and hybrid arithmetic unit for public key cryptographic applications.,2007,4,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee4.html#YuKHSL07,https://doi.org/10.1587/elex.4.461 +Chuicai Rong,A class E GaN microwave power amplifier accounting for parasitic inductance of transistor.,2017,14,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee14.html#RongLXXXZ17,https://doi.org/10.1587/elex.14.20170127 +Peng Qin,Phase noise suppression techniques for high frequency synthesizers in 65 nm CMOS.,2014,11,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee11.html#QinYZLZ14,https://doi.org/10.1587/elex.11.20141062 +Sha Shen,A pipelined VLSI architecture for Sample Adaptive Offset (SAO) filter and deblocking filter of HEVC.,2013,10,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee10.html#ShenSFZ13,https://doi.org/10.1587/elex.10.20130272 +Motoharu Matsuura,Signal waveform analysis for all-optical waveform converter by adjusting the power and the wavelength of assist light.,2007,4,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee4.html#MatsuuraKKM07,https://doi.org/10.1587/elex.4.369 +Jing-Hu Li,A superior-order curvature corrected bandgap reference with less sensitivity of mismatch.,2012,9,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee9.html#LiZMYS12,https://doi.org/10.1587/elex.9.81 +Haiyan Sun,An optimized QFP structure for use in radio frequency multi-chip module applications.,2012,9,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee9.html#SunCWS12,https://doi.org/10.1587/elex.9.1666 +Yuichiro Ikuma,Tunable optical dispersion compensator with a high-resolution arrayed-waveguide grating.,2011,8,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee8.html#IkumaMTT11,https://doi.org/10.1587/elex.8.2087 +Yasuyuki Goda,A 2 x 2 array of the multi-degree-of freedom ultrasonic actuators for a low profile two-dimensional sliding table.,2009,6,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee6.html#GodaKNU09,https://doi.org/10.1587/elex.6.317 +Xiangyu Li,Study of a three-axis digital tunneling resistance-type magnetic sensor.,2016,13,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee13.html#LiYCLF16,https://doi.org/10.1587/elex.13.20160319 +Hyunchul Ku,Modeling and analysis of cognitive radio system considering interactive nonlinear problem.,2008,5,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee5.html#Ku08,https://doi.org/10.1587/elex.5.145 +Jun-ming Lin,A compact multi-mode multi-band power amplifier with harmonic-suppression matching networks for GSM/TD-SCDMA/LTE terminals.,2016,13,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee13.html#LinZZZLOL16,https://doi.org/10.1587/elex.13.20161033 +Xinghe Bao,A novel dual microwave Doppler radar based vehicle detection sensor for parking lot occupancy detection.,2017,14,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee14.html#BaoZXHZW17,https://doi.org/10.1587/elex.13.20161087 +Kaori Fukunaga,Application of terahertz spectroscopy for character recognition in a medieval manuscript.,2008,5,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee5.html#FukunagaOHH08,https://doi.org/10.1587/elex.5.223 +Aobo Pan,A comprehensive metering scheme for intellectual property protection during both after-sale and evaluation periods of IC design.,2013,10,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee10.html#PanLCYLL13,https://doi.org/10.1587/elex.10.20130649 +Saqib A. Khan,Assessing alpha-particle-induced SEU sensitivity of flip-chip bonded SRAM using high energy irradiation.,2016,13,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee13.html#KhanWB16,https://doi.org/10.1587/elex.13.20160627 +Yezi Dong,90®6* and 180®6* phase shifter using an arbitrary phase-difference coupled-line structure.,2017,14,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee14.html#DongMSX17,https://doi.org/10.1587/elex.14.20170936 +Fuqing Huang,A CMOS voltage controlled oscillator topology for suppression of flicker noise up-conversion.,2011,8,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee8.html#HuangWJWZ11,https://doi.org/10.1587/elex.8.1056 +Junsub Yoon,A fast-locking harmonic-free digital DLL for DDR3 and DDR4 SDRAMs.,2017,14,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee14.html#YoonHK17,https://doi.org/10.1587/elex.13.20161020 +Alihosein Sepahvand,A low voltage bootstrapped switch based on zero DC offset input voltage.,2008,5,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee5.html#SepahvandH08,https://doi.org/10.1587/elex.5.932 +Xiao Zhao,A wideband high-resolution time-interleaved sigma-delta modulator with VCO-based quantizer.,2011,8,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee8.html#ZhaoFX11a,https://doi.org/10.1587/elex.8.1972 +Ziqiang Xu,Multilayer SIW filters with mixed coupling modified trisection (MCMT).,2013,10,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee10.html#XuSZG13,https://doi.org/10.1587/elex.10.20130117 +Kambiz Shojaee,Comparative study of asynchronous pipeline design methods.,2006,3,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee3.html#ShojaeeGAN06,https://doi.org/10.1587/elex.3.163 +Sang-Woon Jeon,Novel analysis of limit cycle for PWM signal of PD control system.,2009,6,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee6.html#JeonJ09,https://doi.org/10.1587/elex.6.787 +Yihong Zhou,A compact high-efficiency power divider/combiner based on quadruple-ridged waveguide.,2016,13,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee13.html#ZhouWLJ16,https://doi.org/10.1587/elex.13.20160181 +Elif Aydin,A new model for indoor propagation prediction using genetic algorithm.,2008,5,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee5.html#Aydin08,https://doi.org/10.1587/elex.5.1067 +Hongyi Wang,A 5MHz integrated digital DC-DC converter with a delay-line ADC and a and#931*-Γ6* DPWM.,2013,10,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee10.html#WangHWZL13,https://doi.org/10.1587/elex.10.20130124 +Sin-Ho Lee,Impedance change localization for live underground cable using time-frequency domain reflectometry.,2012,9,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee9.html#LeeLPK12,https://doi.org/10.1587/elex.9.359 +M. Bashiri,Electromagnetically coupled WLAN/WiMax antenna.,2010,7,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee7.html#BashiriGHN10,https://doi.org/10.1587/elex.7.925 +Uk Her,Data-directed frequency offset estimation scheme for UWB MB-OFDM.,2010,7,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee7.html#HerY10,https://doi.org/10.1587/elex.7.13 +Shafayat Abrar,A new method for handover triggering condition estimation.,2012,9,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee9.html#AbrarHRMKSA12,https://doi.org/10.1587/elex.9.378 +Sadegh Abbasian,High efficiency GaN HEMT class-F synchronous rectifier for wireless applications.,2015,12,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee12.html#AbbasianJ15,https://doi.org/10.1587/elex.11.20140952 +Takashi Yamamoto,1.0µ*m band supercontinuum light as WDM pulse source generated by using photonic crystal fibers.,2008,5,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee5.html#YamamotoKTK08,https://doi.org/10.1587/elex.5.592 +Changhwan Shin,Experimental demonstration of a ferroelectric FET using paper substrate.,2014,11,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee11.html#ShinLHHTOKIPKLHP14,https://doi.org/10.1587/elex.11.20140447 +Yan Liu,Efficient algorithm for obtaining connected components in bi-level images.,2014,11,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee11.html#LiuG14,https://doi.org/10.1587/elex.11.20130748 +Qiaowei Yuan,Modulated scattering array antennas for mobile handsets.,2005,2,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee2.html#YuanICS05,https://doi.org/10.1587/elex.2.519 +Zhikuang Cai,A wide-range and ultra fast-locking all-digital SAR DLL without harmonic-locking.,2013,10,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee10.html#CaiXSS13,https://doi.org/10.1587/elex.10.20130494 +Yue Hou,Temperature-related power loss modeling for buck converter.,2017,14,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee14.html#HouLLZW17,https://doi.org/10.1587/elex.14.20170004 +Hazem Ali,PSO-based robust H∞ controller design using cascade compensation network.,2010,7,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee7.html#AliNBM10,https://doi.org/10.1587/elex.7.832 +Koichi Narahara,Generation of short electrical pulses using nonlinear traveling-wave field effect transistors.,2010,7,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee7.html#Narahara10a,https://doi.org/10.1587/elex.7.1474 +Rakhesh S. Kshetrimayum,Novel UWB printed monopole antenna with triangular tapered feed lines.,2008,5,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee5.html#KshetrimayumP08,https://doi.org/10.1587/elex.5.242 +Jun Park,Vision-based refinement of GPS location and compass orientation.,2014,11,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee11.html#Park14b,https://doi.org/10.1587/elex.11.20140566 +Seyed Javad Azhari,A high CMRR low power fully differential Current Buffer.,2010,7,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee7.html#AzhariS10,https://doi.org/10.1587/elex.7.765 +Lianxi Liu,A new stereo enhancement circuit for class-D amplifier.,2013,10,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee10.html#LiuDZLG13,https://doi.org/10.1587/elex.10.20130115 +Jae-Ho Nah,Efficient ray sorting for the tracing of incoherent rays.,2012,9,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee9.html#NahJPH12,https://doi.org/10.1587/elex.9.849 +Yueping Cai,Optical broadcast-and-select network architecture with centralized multi-carrier light source.,2008,5,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee5.html#CaiMOKM08,https://doi.org/10.1587/elex.5.796 +Xiarong Hu,The influence of the N+ floating layer on the drift doping of RESURF LDMOS and its analytical model.,2016,13,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee13.html#HuWJH16,https://doi.org/10.1587/elex.13.20160852 +Golnar Gharooni-fard,Evaluating the performance of one-dimensional chaotic maps in the network-on-chip mapping problem.,2009,6,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee6.html#Gharooni-fardKM09,https://doi.org/10.1587/elex.6.811 +Shirin Pourashraf,High current efficiency class-AB OTA with high open loop gain and enhanced bandwidth.,2017,14,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee14.html#PourashrafRRLDC17,https://doi.org/10.1587/elex.14.20170719 +Lei Huang,Panzer: A 6 and** 6 photonic router for optical network on chip.,2016,13,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee13.html#HuangWQGY16,https://doi.org/10.1587/elex.13.20160719 +Neeta Pandey,A novel current controlled current mode universal filter: SITO approach.,2005,2,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee2.html#PandeyPBJ05,https://doi.org/10.1587/elex.2.451 +Zhiyuan Hu,Total dose radiation induced changes of the floating body effects in the partially depleted SOI NMOS with ultrathin gate oxide.,2018,15,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee15.html#HuDZLZ18,https://doi.org/10.1587/elex.15.20171236 +Ahmad Habibizad Navin,Learnable Data-Oriented Controller for ABS in Brake By Wire Vehicles.,2011,8,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee8.html#NavinAM11,https://doi.org/10.1587/elex.8.367 +Tomoyuki Uehara,Erratum: Frequency stabilization of two orthogonally polarized external cavity laser diodes using a novel *-type optical configuration consist of a phase modulator and a Faraday rotator mirror [IEICE Electronics Express Vol. 11 (2014) No. 10 pp. 20140169].,2017,14,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee14.html#UeharaHTTO17,https://doi.org/10.1587/elex.14.20178002 +Lee-Ying Chong,Speaker verification using probabilistic 2D CLAFIC.,2007,4,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee4.html#ChongT07,https://doi.org/10.1587/elex.4.179 +Zhengfa Liang,Real-time hardware accelerator for single image haze removal using dark channel prior and guided filter.,2014,11,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee11.html#LiangLZW14,https://doi.org/10.1587/elex.11.20141002 +Md. Rakib Uddin,Single to multi-wavelength conversion using gain modulation in an FP-LD.,2008,5,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee5.html#UddinCW08,https://doi.org/10.1587/elex.5.1024 +Cheng-Ling Ying,To generate a broadband light source by using mutually injection-locked Fabry-Perot laser diodes.,2006,3,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee3.html#YingCTCL06,https://doi.org/10.1587/elex.3.257 +Takanari Minami,Unified active Q factor formula for use in noise spectrum estimation from Leeson's and Hajimiri's models.,2013,10,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee10.html#MinamiO13,https://doi.org/10.1587/elex.10.20130806 +Samira Saeidi,Crinkle: A heuristic mapping algorithm for network on chip.,2009,6,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee6.html#SaeidiKV09,https://doi.org/10.1587/elex.6.1737 +Sarayut Amornwongpeeti,A single chip FPGA-based cross-coupling multi-motor drive system.,2015,12,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee12.html#AmornwongpeetiE15,https://doi.org/10.1587/elex.12.20150383 +K. A. Khairi,Experimental Investigation of pump propagating direction in double-pass Er3+-doped fiber amplifiers.,2005,2,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee2.html#KhairiANAM05,https://doi.org/10.1587/elex.2.477 +Wen Zhang,Optimal multiband spectrum sensing in cognitive radio.,2010,7,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee7.html#ZhangYYZ10,https://doi.org/10.1587/elex.7.1557 +Kyoung-Hwan Oh,Heterodyne THz-wave receiver with a superconducting tunneling mixer driven by a high sweeping-speed photonics-based THz-wave local oscillator.,2009,6,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee6.html#OhSKKKKYW09,https://doi.org/10.1587/elex.6.601 +Hyeonho Song,Asymmetric monotonic switching scheme for energy-efficient SAR ADCs.,2014,11,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee11.html#SongL14,https://doi.org/10.1587/elex.11.20140345 +Muhammad Faisal Khan,Beamspace matrix pencil method for direction of arrival estimation.,2009,6,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee6.html#KhanT09,https://doi.org/10.1587/elex.6.1168 +Jun-Ku Kim,Capacitive pressure sensor with wafer-through silicon vias using SOI-Si direct wafer bonding and glass reflow technique.,2013,10,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee10.html#KimB13,https://doi.org/10.1587/elex.10.20130453 +Goh Chin Hock,Rapid and simple design approach of micro-strip Butler matrix beam-forming network for wireless system.,2012,9,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee9.html#HockCKH12,https://doi.org/10.1587/elex.9.346 +Mayumi Matsunaga,Indoor propagation analysis considering inhabitants.,2011,8,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee8.html#MatsunagaMN11,https://doi.org/10.1587/elex.8.1795 +Chun Wei Lin,Balanced low input impedances CMOS current comparator.,2012,9,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee9.html#LinL12a,https://doi.org/10.1587/elex.9.1378 +Tsuyoshi Funaki,Comparative study of the static and switching characteristics of SiC and Si MOSFETs.,2011,8,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee8.html#FunakiNN11,https://doi.org/10.1587/elex.8.1215 +Masamichi Fujiwara,1G / 10G coexistence long-reach PON system using ALC burst-mode SOAs.,2012,9,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee9.html#FujiwaraSTIIY12,https://doi.org/10.1587/elex.9.371 +Daejin Park,Area-efficient IoT MCU with remote code execution layer for cloud-connected code executable things.,2016,13,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee13.html#Park16,https://doi.org/10.1587/elex.13.20160449 +Shoko Ohteru,MAC protocol based on cross-layer design methodology for fast link in wireless communication systems.,2007,4,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee4.html#OhteruKI07,https://doi.org/10.1587/elex.4.593 +Hock-Ann Goh,Rotational invariants for Tchebichef moments.,2010,7,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee7.html#GohBA10,https://doi.org/10.1587/elex.7.577 +Tong Ling,Chopping-Out-Of-band (COOB) for reducing ripple in chopper amplifiers.,2015,12,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee12.html#LingFZX15,https://doi.org/10.1587/elex.12.20141226 +Sudhan Majhi,Reduction of UWB interference at NB systems based on a generalized pulse waveform.,2006,3,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee3.html#MajhiMP06,https://doi.org/10.1587/elex.3.361 +Song Guo,A deeply-pipelined FPGA-based SpMV accelerator with a hardware-friendly storage scheme.,2015,12,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee12.html#GuoDLW15,https://doi.org/10.1587/elex.12.20150161 +Jung-Dong Park,260 GHz spatially combined transmitter with a V-band distributed OOK modulator.,2014,11,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee11.html#Park14,https://doi.org/10.1587/elex.11.20140736 +Fumie Costen,Temporal discretization for UWB systems in three dimensional alternating-direction implicit finite difference time domain method.,2004,1,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee1.html#CostenT04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.477 +Young-Ran Park,Watermarking for tamper detection and recovery.,2008,5,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee5.html#ParkKYK08,https://doi.org/10.1587/elex.5.689 +Won-Ju Yoon,A novel tag collection algorithm for iterative RFID tag collections.,2012,9,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee9.html#Yoon12,https://doi.org/10.1587/elex.9.296 +Dong-Joon Lee,Simple optical transformer system for intense electric field and voltage sensing.,2015,12,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee12.html#LeeLKJ15,https://doi.org/10.1587/elex.11.20141090 +Fukun Sun,Wideband frequency reconfigurable antenna array.,2018,15,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee15.html#SunZZXZ18,https://doi.org/10.1587/elex.15.20171210 +Wooseok Kang,Spectral efficient cooperative transmission for half-duplex relay communications.,2010,7,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee7.html#KangLS10,https://doi.org/10.1587/elex.7.365 +Hsin-Chuan Chen,A low-jitter phase-interpolation DDS using dual-slope integration.,2004,1,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee1.html#ChenC04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.333 +Afzel Noore,An improved SRAM cell design for tolerating radiation-induced single-event effects.,2007,4,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee4.html#Noore07a,https://doi.org/10.1587/elex.4.100 +Dohyung Kim,Cycle accurate transaction-driven simulation with multiple processor simulators.,2009,6,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee6.html#KimG09,https://doi.org/10.1587/elex.6.44 +Jongsik Kim,A CMOS RF tunable filter for TV white space transmitter applications.,2011,8,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee8.html#KimS11,https://doi.org/10.1587/elex.8.742 +Kiichi Niitsu,Design methodology for determining the number of stages in a cascaded time amplifier to minimize area consumption.,2013,10,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee10.html#NiitsuHK13,https://doi.org/10.1587/elex.10.20130289 +Naoto Matsuo,Fabrication of tunneling dielectric thin-film transistor with very thin SiNx films onto source and drain.,2007,4,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee4.html#MatsuoFOHY07,https://doi.org/10.1587/elex.4.442 +Koichi Narahara,Nonlinear traveling-wave field effect transistors for amplification of short electrical pulses.,2010,7,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee7.html#NaraharaN10,https://doi.org/10.1587/elex.7.1188 +Yasuhiro Yamaji,Chemical flip-chip bonding method for fabricating 10-µ*m-pad-pitch interconnect.,2008,5,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee5.html#YamajiYKNA08,https://doi.org/10.1587/elex.5.732 +Jeong-Gun Lee,472MHz throughput asynchronous FIFO design on a Virtex-5 FPGA device.,2011,8,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee8.html#LeeLOK11,https://doi.org/10.1587/elex.8.676 +Yuki Tani,Electric field effects on radiative transition in quantum dot inorganic electroluminescent devices.,2010,7,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee7.html#TaniKT10,https://doi.org/10.1587/elex.7.288 +Sabooh Ajaz,An efficient radix-4 Quasi-cyclic shift network for QC-LDPC decoders.,2014,11,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee11.html#AjazL14,https://doi.org/10.1587/elex.11.20130837 +Seunghak Yu,Design of a bitmap-based QoS-aware memory controller for a packet memory.,2014,11,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee11.html#YuYCL14,https://doi.org/10.1587/elex.11.20130983 +Takahide Oya,On the fault tolerance of a clustered single-electron neural network for differential enhancement.,2005,2,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee2.html#OyaSALA05,https://doi.org/10.1587/elex.2.76 +Zebang Guo,A new Multi-Dose Method for extracting source/drain series resistances of halo-doped MOSFETs.,2016,13,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee13.html#GuoYSW16,https://doi.org/10.1587/elex.13.20151028 +Junhui Wang,Cluster mesh: a topology for three-dimensional network-on-chip.,2012,9,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee9.html#WangGY12,https://doi.org/10.1587/elex.9.1254 +Mehdi Fallahpour,High capacity lossless data hiding based on histogram modification.,2007,4,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee4.html#FallahpourS07,https://doi.org/10.1587/elex.4.205 +S. S. Islam,Method for determination of nature of single-wall carbon nanotubes (SWCNTs) in a bundle prepared by chemical vapor deposition technique.,2006,3,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee3.html#IslamS06,https://doi.org/10.1587/elex.3.5 +Yin Hoe Ng,Subband adaptive chip equalization for interference suppression in DS-UWB.,2007,4,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee4.html#NgMC07,https://doi.org/10.1587/elex.4.153 +Shunsuke Okumura,Low-energy block-level instantaneous comparison 7T SRAM for dual modular redundancy.,2012,9,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee9.html#OkumuraNYKYKY12,https://doi.org/10.1587/elex.9.470 +Jian Tan,Design and FPGA implementation of time-frequency transforming for stretch processing.,2014,11,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee11.html#TanWTLYT14,https://doi.org/10.1587/elex.11.20140387 +Ruhaifi Abdullah Zawawi,A 1.6 ppm/®6*C bandgap voltage reference for an extended operating temperature range.,2014,11,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee11.html#ZawawiZ14,https://doi.org/10.1587/elex.11.20140383 +Hao Wang,Energy-efficient and area-efficient switching scheme based on multi-reference for SAR ADC.,2015,12,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee12.html#WangZ15,https://doi.org/10.1587/elex.12.20141182 +Mohammad Mahdi Khafaji,Modified analytical model for subthreshold current in short channel MOSFET's.,2007,4,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee4.html#KhafajiKF07,https://doi.org/10.1587/elex.4.114 +Takeshi Kurosaki,Numerical study of a highly optical-feedback tolerant DFB laser with an absorber and a rear reflector using transfer matrixes and rate equations.,2017,14,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee14.html#KurosakiKK17,https://doi.org/10.1587/elex.14.20170251 +Kyung-Won Lee,Simple design method of FSS radome analysis using equivalent circuit model.,2011,8,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee8.html#LeeJHLCY11,https://doi.org/10.1587/elex.8.2002 +Younghwan Son,Characterization of oxide trap density with the charge pumping technique in dual-layer gate oxide.,2017,14,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee14.html#SonKK17a,https://doi.org/10.1587/elex.14.20170141 +Hossein Momeni,Distributed assignment of real-time tasks in wireless sensor actor networks.,2011,8,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee8.html#MomeniSO11,https://doi.org/10.1587/elex.8.429 +Koichi Narahara,Experimental characterization of mutually synchronized voltage edges in point-coupled tunnel diode transmission lines.,2017,14,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee14.html#Narahara17,https://doi.org/10.1587/elex.14.20170054 +Xiyang Miao,A novel dual-band power divider using symmetric stepped-impedance inverters.,2015,12,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee12.html#MiaoLW15,https://doi.org/10.1587/elex.12.20150697 +Shinji Mino,Functional integrated modulators and receivers utilizing PLC hybrid integration technology for coherent transmission.,2011,8,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee8.html#MinoYGTSOOM11,https://doi.org/10.1587/elex.8.1663 +Ji Cui,A rectifier structure for UHF RFID transponder with high efficiency.,2010,7,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee7.html#CuiAK10,https://doi.org/10.1587/elex.7.1086 +Takuya Sakamoto,Accurate heartbeat monitoring using ultra-wideband radar.,2015,12,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee12.html#SakamotoITSYIFS15,https://doi.org/10.1587/elex.12.20141197 +Jani K. Jarvenhaara,High speed DC-DC dead time architecture.,2015,12,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee12.html#JarvenhaaraHSTF15,https://doi.org/10.1587/elex.12.20150662 +Seungmin Jung,An energy-efficient data cache with byte-repeat pattern encoding.,2008,5,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee5.html#JungSM08,https://doi.org/10.1587/elex.5.833 +Cailin Wang,Peak electric field shifting induced by avalanche injection under static avalanche in high voltage diode.,2017,14,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee14.html#WangZ17,https://doi.org/10.1587/elex.14.20170627 +Yuji Ohkawa,Heat treatment to suppress image defect occurrence in amorphous selenium avalanche multiplication photoconductive film with improved red-light sensitivity.,2009,6,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee6.html#OhkawaMMKSTKEK09,https://doi.org/10.1587/elex.6.1118 +Yeong Seob Jeong,Deadlock-free XY-YX router for on-chip interconnection network.,2013,10,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee10.html#JeongL13,https://doi.org/10.1587/elex.10.20130699 +Hee-Ran Ahn,A new measurement technique on inherent-ring-resonance frequency using ring filters.,2004,1,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee1.html#AhnL04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.269 +Lili Shen,Thermal-aware task mapping for communication energy minimization on 3D NoC.,2017,14,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee14.html#ShenWYG17,https://doi.org/10.1587/elex.14.20170900 +Nozomi Haga,Received noise voltage of wearable transceiver in the presence of fluorescent lamps using high-frequency electronic ballasts.,2014,11,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee11.html#HagaMSK14a,https://doi.org/10.1587/elex.11.20140920 +Poongothai Marimuthu,A heuristic based real time task assignment algorithm for heterogeneous multiprocessors.,2014,11,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee11.html#PoongothaiRK14,https://doi.org/10.1587/elex.11.20130975 +Hilal Adnan Fadhil,New code structure for spectral amplitude coding OCDMA system.,2008,5,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee5.html#FadhilAA08,https://doi.org/10.1587/elex.5.846 +Seong-Young Seo,An all-digital PLL with supply insensitive digitally controlled oscillator.,2013,10,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee10.html#SeoCJK13,https://doi.org/10.1587/elex.10.20120902 +Yu Lei,Enhanced read performance for phase change memory using a reference column.,2017,14,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee14.html#LeiCLWZHLTS17,https://doi.org/10.1587/elex.14.20170032 +Jang-Kyun Ahn,Design and performance evaluation of cooperative hybrid CDD scheme in OFDMA uplink network.,2011,8,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee8.html#AhnSS11,https://doi.org/10.1587/elex.8.498 +Shun'ichiro Ohmi,In-situ formation of Hf-based MONOS structures for non-volatile memory applications.,2015,12,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee12.html#OhmiL15,https://doi.org/10.1587/elex.12.20150969 +Ding Xu,A high performance ultra-wideband low cost SMA-to-GCPW transition.,2016,13,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee13.html#XuWWW16,https://doi.org/10.1587/elex.13.20160290 +Daisuke Kitahara,A cross polarization suppression of circular patch array absorber with perturbation elements.,2018,15,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee15.html#KitaharaSAH18,https://doi.org/10.1587/elex.14.20171071 +Sungho Jeon 0003,A MEMS-based interactive laser scanning display with a collocated laser range finder.,2015,12,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee12.html#JeonFT15,https://doi.org/10.1587/elex.12.20150072 +Minshun Wu,Extracting random jitter and sinusoidal jitter in ADC output with a single frequency test.,2015,12,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee12.html#WuLC15,https://doi.org/10.1587/elex.12.20150742 +Thian Song Ong,Reliable template protection technique for biometric authentication.,2008,5,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee5.html#OngTKC08,https://doi.org/10.1587/elex.5.278 +Akihiro Uehara,A high-sensitive digital photosensor using MOS interface-trap charge pumping.,2004,1,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee1.html#UeharaKTON04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.556 +Chen Yang 0003,A high-precision hardware-efficient radix-2k FFT processor for SAR imaging system.,2016,13,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee13.html#YangXCM16,https://doi.org/10.1587/elex.13.20160903 +Gang Lu,Deception ECM signals cancellation processor with joint time-frequency pulse diversity.,2011,8,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee8.html#LuTG11,https://doi.org/10.1587/elex.8.1608 +Hideharu Yoshioka,A directivity enhancement for directional couplers using additional coupled lines.,2016,13,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee13.html#YoshiokaHIYM16,https://doi.org/10.1587/elex.13.20160317 +Zhiheng Wei,Extremely small differential non-linearity in a DMOS capacitor based cyclic ADC for CMOS image sensors.,2014,11,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee11.html#WeiYK14,https://doi.org/10.1587/elex.11.20140893 +Houng-Kuo Ku,An efficient directional interpolated algorithm for video deinterlacing.,2009,6,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee6.html#KuH09,https://doi.org/10.1587/elex.6.211 +M. Abdollahvand,Novel modified monopole antenna with band-notch characteristic for UWB application.,2010,7,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee7.html#AbdollahvandHD10,https://doi.org/10.1587/elex.7.1207 +Duo Sheng,Fast-lock all-digital DLL and digitally-controlled phase shifter for DDR controller applications.,2010,7,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee7.html#ShengCL10,https://doi.org/10.1587/elex.7.634 +Yong Seo Koo,Electrical characteristics of novel SCR - based ESD protection for power clamp.,2012,9,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee9.html#Koo12,https://doi.org/10.1587/elex.9.1479 +Keol Cho,Conditional termination check min-sum algorithm for efficient LDPC decoders.,2015,12,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee12.html#ChoC15,https://doi.org/10.1587/elex.12.20150738 +Seongjoon Do,An efficient write buffer management scheme considering the parallelism in solid-state drives.,2013,10,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee10.html#DoLK13,https://doi.org/10.1587/elex.10.20130018 +Ki-Chai Kim,Resonance transmission of small narrow slots loaded with two parallel wires in a conducting screen.,2018,15,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee15.html#KimC18,https://doi.org/10.1587/elex.15.20180015 +Qiang Fu,Bypass anode lateral IGBT on SOI for snapback suppression.,2014,11,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee11.html#FuZL14,https://doi.org/10.1587/elex.11.20140470 +Mahdi Mirzaei,Design of a robust NTF for continuous-time Δ Σ modulators.,2010,7,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee7.html#MirzaeiS10,https://doi.org/10.1587/elex.7.1323 +Ran Zheng,Method for BGR's second-order temperature compensation using resistor combinations with specified temperature coefficients.,2017,14,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee14.html#ZhengDM17,https://doi.org/10.1587/elex.14.20170920 +Po-Hui Yang,Cost-effective variable node using thermalcode addition for LDPC decoders.,2011,8,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee8.html#YangL11a,https://doi.org/10.1587/elex.8.1948 +Koichi Hasebe,Novel polarization controller based on injection-locked vertical-cavity surface-emitting laser.,2005,2,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee2.html#HasebeOK05,https://doi.org/10.1587/elex.2.274 +Myung-Kyoon Yim,Surface temperature-aware thermal management technique for mobile devices.,2014,11,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee11.html#YimLH14,https://doi.org/10.1587/elex.11.20140944 +Saichandrateja Radhapuram,A low-power CMOS programmable frequency divider with novel retiming scheme.,2015,12,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee12.html#RadhapuramBJKM15,https://doi.org/10.1587/elex.12.20141233 +Se-Hyu Choi,Efficient systolic modular multiplier/squarer for fast exponentiation over GF(2m).,2015,12,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee12.html#ChoiL15a,https://doi.org/10.1587/elex.12.20150222 +Sathaporn Promwong,Free space link budget estimation scheme for ultra wideband impulse radio with imperfect antennas.,2004,1,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee1.html#PromwongT04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.188 +Olufemi Adeluyi,Reconfiguration for Sensitivity Technique: A QoS-aware Co-Design approach for stream-based applications.,2010,7,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee7.html#AdeluyiL10,https://doi.org/10.1587/elex.7.1766 +Pyung-Su Han,10Gbps injection-locked CDR with a simple bit transition detector in 0.18µ*m CMOS technology.,2009,6,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee6.html#HanC09,https://doi.org/10.1587/elex.6.35 +Minoru Sakairi,Simultaneous detection of breath and alcohol using breath-alcohol sensor for prevention of drunk driving.,2010,7,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee7.html#SakairiSNIK10,https://doi.org/10.1587/elex.7.467 +Mohammad Tariqul Islam,Study of Specific Absorption Rate (SAR) in the human head by metamaterial attachment.,2010,7,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee7.html#IslamFM10,https://doi.org/10.1587/elex.7.240 +Takuya Kanai,2-µ*m wavelength tunable distributed Bragg reflector laser.,2016,13,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee13.html#KanaiFOISI16,https://doi.org/10.1587/elex.13.20160655 +Lei Wang,A D-band divide-by-6 injection-locked frequency divider with Lange-coupler feedback architecture in 0.13 andmicro*m SiGe HBT.,2017,14,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee14.html#WangZLYCZG17,https://doi.org/10.1587/elex.14.20170328 +Yu Guo,A compact triple-band bandpass filter with customizable frequencies.,2016,13,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee13.html#GuoNWYL16,https://doi.org/10.1587/elex.13.20160723 +Jiajun Hu,A novel auxiliary-free zero inductor current detection scheme for step down non-isolated LED driver.,2014,11,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee11.html#HuCLWJZS14,https://doi.org/10.1587/elex.11.20141011 +Zhang Xian,A low jitter phase-locked loop based on self-biased techniques.,2015,12,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee12.html#XianHL15,https://doi.org/10.1587/elex.12.20150597 +Esteban Tlelo-Cuautle,Synthesis of CCII-s by superimposing VFs and CFs through genetic operations.,2008,5,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee5.html#Tlelo-CuautleMSD08,https://doi.org/10.1587/elex.5.411 +Xuan-Thuan Nguyen,An FPGA approach for fast bitmap indexing.,2016,13,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee13.html#NguyenNP16,https://doi.org/10.1587/elex.13.20160006 +Jiahui Luo,A dual-mode ECG processor with difference-insensitive QRS detection and lossless compression.,2017,14,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee14.html#LuoCXMS17,https://doi.org/10.1587/elex.14.20170524 +Mir Ghoraishi,Radio channel simulation for microcell line-of-sight scenario.,2008,5,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee5.html#GhoraishiTI08,https://doi.org/10.1587/elex.5.235 +Kee-Won Kim,Efficient unified semi-systolic arrays for multiplication and squaring over GF(2m).,2017,14,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee14.html#KimL17,https://doi.org/10.1587/elex.14.20170458 +Jamil Sultan,An enhanced macro diversity handover technique for IEEE 802.16j.,2010,7,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee7.html#SultanMII10,https://doi.org/10.1587/elex.7.732 +Keiji Goto,Time-domain asymptotic solution for transient scattered field by a cylindrically curved conducting surface.,2009,6,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee6.html#GotoKI09,https://doi.org/10.1587/elex.6.354 +Rui Chen 0001,Low complexity multi-user multi-stream MIMO vector perturbation precoder for FPGA implementation.,2013,10,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee10.html#ChenLLML13,https://doi.org/10.1587/elex.10.20130060 +Zhenqi Wei,HyDMA: low-latency inter-core DMA based on a hybrid packet-circuit switching network-on-chip.,2016,13,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee13.html#WeiLSZJZ16,https://doi.org/10.1587/elex.13.20160529 +Saeed Rasouli Heikalabad,EBDHR: Energy Balancing and Dynamic Hierarchical Routing algorithm for wireless sensor networks.,2010,7,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee7.html#HeikalabadNMEG10,https://doi.org/10.1587/elex.7.1112 +Shunji Nakata,Stability of an adiabatic circuit with inductive load using 1D-capacitor array between the power supply and ground.,2007,4,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee4.html#Nakata07b,https://doi.org/10.1587/elex.4.485 +Risheng Lv,A closed-loop and#931*Γ6* modulator for micromechanical capacitive sensors.,2018,15,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee15.html#LvCYFLY18,https://doi.org/10.1587/elex.15.20171112 +Weiwei Shan,An improved timing error prediction monitor for wide adaptive frequency scaling.,2017,14,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee14.html#ShanLLSCY17,https://doi.org/10.1587/elex.14.20170808 +Peiman Keshavarzian,Efficient Carbon Nanotube Galois Field Circuit Design.,2009,6,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee6.html#KeshavarzianN09,https://doi.org/10.1587/elex.6.546 +Ramya Jothikumar,Complexity reduction by sign prediction in tree traversal of MIMO decoder.,2014,11,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee11.html#JothikumarN14,https://doi.org/10.1587/elex.11.20140628 +Masamichi Fujiwara,Reducing the backreflection impact by using homodyne detection in WDM single-fiber loopback access networks.,2009,6,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee6.html#FujiwaraKKYK09,https://doi.org/10.1587/elex.6.851 +Laehyun Kim,An electronic traveler aid for the blind using multiple range sensors.,2009,6,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee6.html#KimPLH09,https://doi.org/10.1587/elex.6.794 +Mohamad Danaeifar,Broadband cloaking of large arbitrary object by Double-Sided Parallel-Strip Line.,2011,8,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee8.html#DanaeifarKJ11,https://doi.org/10.1587/elex.8.1905 +Xiumin Xu,A highly reliable butterfly PUF in SRAM-based FPGAs.,2017,14,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee14.html#XuLHJOFNY17,https://doi.org/10.1587/elex.14.20170551 +Hirokazu Kubota,Technique for measuring mode power of two-mode fiber II* Experiment.,2014,11,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee11.html#KubotaMO14,https://doi.org/10.1587/elex.11.20140611 +Sungjae Lee,Voting structures for cascaded triple modular redundant modules.,2007,4,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee4.html#LeeJL07,https://doi.org/10.1587/elex.4.657 +Yang You,Zero-point attracting projection algorithm for sequential compressive sensing.,2012,9,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee9.html#YouJDLGY12,https://doi.org/10.1587/elex.9.314 +Hamid Reza Mahdiani,A cost-error tunable round-off method: Finite-length absorption.,2009,6,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee6.html#MahdianiF09,https://doi.org/10.1587/elex.6.1312 +Ju Cheng Yang,Effective enhancement of low-quality fingerprints with local ridge compensation.,2008,5,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee5.html#YangPH08,https://doi.org/10.1587/elex.5.1002 +Kyu-Yeul Wang,CVD level prediction processor using DNA computing.,2009,6,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee6.html#WangKLPC09,https://doi.org/10.1587/elex.6.529 +S. Ramezanpour,Modelling the inhomogenity of the ferroelectric layer in a multilayered IDC.,2013,10,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee10.html#RamezanpourNG13,https://doi.org/10.1587/elex.10.20130180 +Aiying Guo,CORDIC-based parameters-fusion HOG IP for extracting feature.,2016,13,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee13.html#GuoXR16,https://doi.org/10.1587/elex.13.20160710 +Xiaolong Wang,Accurate Schiffman-type section design approach for microstrip line Wilkinson power divider.,2016,13,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee13.html#WangOM16,https://doi.org/10.1587/elex.13.20160560 +Jun Luo,Fast reconstruction with adaptive sampling in block compressed imaging.,2014,11,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee11.html#LuoHCW14,https://doi.org/10.1587/elex.11.20140056 +Sen Wang,K-band CMOS LNA with interference-rejection using Q-enhanced notch filter.,2012,9,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee9.html#WangH12,https://doi.org/10.1587/elex.9.938 +Xiangyu Li,A closed-loop Sigma-Delta modulator for a tunneling magneto-resistance sensor.,2017,14,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee14.html#LiCYFL17,https://doi.org/10.1587/elex.14.20170700 +Yuanlong Xiao,A universal automatic on-chip measurement of FPGA's internal setup and hold *.,2016,13,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee13.html#XiaoWL16,https://doi.org/10.1587/elex.13.20160810 +Toshifumi Moriyama,A Multi-Scaling Forward-Backward Time-Stepping Method for microwave imaging.,2014,11,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee11.html#MoriyamaOST14,https://doi.org/10.1587/elex.11.20140578 +Mizuki Shirao,Theoretical analysis of the damping effect on a transistor laser.,2012,9,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee9.html#ShiraoNSA12,https://doi.org/10.1587/elex.9.1792 +Alexis Debray,Fabrication of suspended metallic structures: application to a one-shot micro-valve.,2007,4,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee4.html#DebrayUSF07,https://doi.org/10.1587/elex.4.455 +Yutaro Katano,Monolithic mode-locked erbium-doped LiNbO3 waveguide laser with dielectric multilayer mirror.,2012,9,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee9.html#KatanoSNKN12,https://doi.org/10.1587/elex.9.245 +Huamin Shi,High-Impedance transformer for wideband lambda/4 CPW bandpass filters.,2004,1,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee1.html#ShiZ04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.198 +Ruiya Li,A temperature-independent force transducer using one optical fiber with multiple Bragg gratings.,2016,13,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee13.html#LiTHZLC16,https://doi.org/10.1587/elex.13.20160198 +Hu-ung Lee,Erratum: Parallelizing SHA-1 [IEICE Electronics Express Vol 12 (2015) No 12 pp 20150371].,2015,12,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee12.html#LeeLKW15a,https://doi.org/10.1587/elex.12.20158005 +Jun Wang 0009,A novel approach to implement summing function for feedforward Δ- Σ AD modulator.,2008,5,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee5.html#0009IM008,https://doi.org/10.1587/elex.5.457 +Bochao Zhao,A 5-8 GHz wideband 100 W internally matched GaN power amplifier.,2015,12,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee12.html#ZhaoMLZHZZH15,https://doi.org/10.1587/elex.12.20150172 +Xiao Yang,A novel two-channel time-interleaved second-order and#931*Γ6* modulator.,2008,5,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee5.html#YangC08,https://doi.org/10.1587/elex.5.424 +Farid Touati,Low-noise low-power 0.35 mu m SiGe amplifiers for 3.1-10.6GHz UWB radio receivers.,2004,1,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee1.html#TouatiM04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.317 +Seyed Hassan Elahi,A UWB LNA with interference rejection using enhanced-Q active inductor.,2009,6,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee6.html#ElahiN09,https://doi.org/10.1587/elex.6.335 +Ziqiang Yang,A novel SIW power divider with good out-of-band rejection and isolation.,2016,13,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee13.html#YangCLYJ16,https://doi.org/10.1587/elex.13.20160160 +Yusuke Kusama,A study of waveguide reactance element designs for introductory microwave experiments.,2017,14,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee14.html#KusamaJH17,https://doi.org/10.1587/elex.14.20160916 +Mingu Lee,A novel audio stream segmentation method for audio signal discrimination.,2010,7,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee7.html#LeeCPS10,https://doi.org/10.1587/elex.7.1058 +María de Rodanas Valero,Rail to rail CMOS complementary input stage with only one active differential pair at a time.,2014,11,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee11.html#ValeroRRMC14,https://doi.org/10.1587/elex.11.20140392 +Yan Chen,A novel memristor-based restricted Boltzmann machine for contrastive divergence.,2018,15,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee15.html#ChenYZKZ18,https://doi.org/10.1587/elex.15.20171062 +Sohail Aneeb,QVCO frequency stability analysis using time varying root locus.,2016,13,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee13.html#AneebJT16,https://doi.org/10.1587/elex.13.20160480 +Quang Thang Duong,kQ-product formula for multiple-transmitter inductive power transfer system.,2017,14,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee14.html#DuongO17,https://doi.org/10.1587/elex.14.20161167 +Nguyen Van Toan,Measurements of metastability in MUTEX on an FPGA.,2018,15,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee15.html#ToanTL18,https://doi.org/10.1587/elex.14.20171165 +Mat Isa Masnita,March-based SRAM diagnostic algorithm for distinguishing Stuck-At and transition faults.,2009,6,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee6.html#MasnitaHSH09,https://doi.org/10.1587/elex.6.1091 +Jinyoung Yang,Precise time synchronization based on ripple flooding in wireless sensor networks.,2012,9,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee9.html#Yang012,https://doi.org/10.1587/elex.9.691 +Luis-Fortino Cisneros-Sinencio,Noise margin and short-circuit current in FGMOS logics.,2011,8,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee8.html#Cisneros-SinencioDR11,https://doi.org/10.1587/elex.8.1967 +Jian Yang,Real-time DBS imaging algorithm based on chirp z-transform.,2012,9,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee9.html#YangLW12a,https://doi.org/10.1587/elex.9.1660 +You Zheng,Compact triple-band monopole antenna for WLAN/WiMAX applications.,2013,10,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee10.html#ZhengWHG13,https://doi.org/10.1587/elex.10.20130638 +Shah-Jye Tzeng,Externally modulated lightwave CATV transport systems employing negative dispersion fiber.,2004,1,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee1.html#TzengLCP04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.287 +Junfeng Gao,Central span switching structure for SAR ADC with improved linearity and reduced DAC power.,2015,12,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee12.html#GaoLL15,https://doi.org/10.1587/elex.12.20150047 +Hamhee Jeon,A compact quadrature coupler on GaAs IPD process for LTE applications.,2013,10,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee10.html#JeonK13,https://doi.org/10.1587/elex.10.20130386 +Tsuyoshi Funaki,A study on the self turn-on phenomenon of power MOSFET induced by the turn-off operation of body diodes.,2014,11,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee11.html#Funaki14,https://doi.org/10.1587/elex.11.20140350 +Linfeng Mo,Layout driven FPGA packing algorithm for performance optimization.,2017,14,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee14.html#MoWHC17,https://doi.org/10.1587/elex.14.20170419 +Haoyu Zhuang,A CMOS OTA with extremely large DC open-loop voltage gain.,2013,10,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee10.html#ZhuangZYGLZ13,https://doi.org/10.1587/elex.10.20130242 +Phi-Hung Pham,ProMINoC: An efficient Network-on-Chip design for flexible data permutation.,2010,7,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee7.html#PhamPK10,https://doi.org/10.1587/elex.7.861 +Huan Minh Vo,Carry select adder with sub-block power gating for reducing active-mode leakage in sub-32-nm VLSIs.,2011,8,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee8.html#VoJLM11a,https://doi.org/10.1587/elex.8.1322 +Mohsen Jalali,Gm-boosted differential transimpedance amplifier architecture.,2007,4,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee4.html#JalaliMNF07,https://doi.org/10.1587/elex.4.498 +Hyun Yang,Cost-efficient IQ imbalance compensation scheme for DRM plus.,2009,6,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee6.html#YangJYHY09,https://doi.org/10.1587/elex.6.743 +Kazuki Kodama,Theoretical simulation of DC and RF performance for AlInN/InGaN/AlInN double-heterojunction FET using a Monte Carlo approach.,2008,5,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee5.html#KodamaK08,https://doi.org/10.1587/elex.5.1074 +Jongsun Kim,Area-efficient digitally controlled CMOS feedback delay element with programmable duty cycle.,2009,6,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee6.html#Kim09,https://doi.org/10.1587/elex.6.193 +Jung-Wook Park,An integrated mapping table for hybrid FTL with fault-tolerant address cache.,2009,6,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee6.html#ParkPPK09,https://doi.org/10.1587/elex.6.368 +Changhwan Shin,State-of-the-art silicon device miniaturization technology and its challenges.,2014,11,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee11.html#Shin14,https://doi.org/10.1587/elex.11.20142005 +Zhichao Zhang,Wide range linearity improvement technique for linear wideband LNA.,2017,14,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee14.html#ZhangDCW17,https://doi.org/10.1587/elex.14.20170002 +Ic-Pyo Hong,Propagation path loss characteristics of vertical dipole above perfect ground.,2013,10,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee10.html#Hong13,https://doi.org/10.1587/elex.10.20130762 +Seokjin Lee,A low-complexity AFF-RLS algorithm using a normalization technique.,2009,6,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee6.html#LeeLS09,https://doi.org/10.1587/elex.6.1774 +Kil-Soo Seo,Multi-string AC-powered LED driver with current regulation reduction based on simple circuitry.,2014,11,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee11.html#SeoNJPS14,https://doi.org/10.1587/elex.11.20140810 +Hideki Shima 0002,Analytical GMD formulas for mutual inductance calculation of multilevel interconnects.,2006,3,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee3.html#ShimaM006,https://doi.org/10.1587/elex.3.44 +Hyuk-Jun Lee,Analytical memory bandwidth model for many-core processor based systems.,2012,9,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee9.html#LeeCC12a,https://doi.org/10.1587/elex.9.1461 +Taek-Joon Ahn,A low jitter clock and data recovery with a single edge sensing Bang-Bang PD.,2014,11,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee11.html#AhnIAK14,https://doi.org/10.1587/elex.11.20140088 +Kittiya Khongkraphan,A novel method of 2D articulated body tracking under self-occlusion and ambiguity.,2010,7,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee7.html#KhongkraphanK10,https://doi.org/10.1587/elex.7.1106 +Yuji Osaki,A wide input voltage range level shifter circuit for extremely low-voltage digital LSIs.,2011,8,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee8.html#OsakiHKN11,https://doi.org/10.1587/elex.8.890 +Young Hwan Lho,Design of edge termination on non-uniform 100-V super-junction trench power MOSFET.,2013,10,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee10.html#Lho13,https://doi.org/10.1587/elex.10.20120797 +Neisei Hayashi,Simplified optical correlation-domain reflectometry using polymer fiber.,2015,12,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee12.html#HayashiSMMN15,https://doi.org/10.1587/elex.12.20150824 +Xiaowei Liu,Interface circuit of sigma-delta accelerometer with on-chip-test function.,2014,11,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee11.html#LiuXHR14,https://doi.org/10.1587/elex.11.20140320 +Ke Lin,A PVT-independent Schmitt trigger with fully adjustable hysteresis threshold voltages for low-power 1-bit digitization applications.,2016,13,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee13.html#LinWZWO16,https://doi.org/10.1587/elex.13.20160650 +Hisahiro Kai,Circularly Polarized Post-wall Waveguide Slotted Arrays.,2004,1,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee1.html#KaiHA04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.7 +Zhiqun Cheng,A Doherty power amplifier with extended efficiency and bandwidth.,2017,14,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee14.html#ChengLLG17,https://doi.org/10.1587/elex.14.20170188 +Syed Sabir Hussain Bukhari,A new single-phase sag compensator intended for transformer-coupled loads.,2016,13,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee13.html#BukhariK16,https://doi.org/10.1587/elex.13.20160119 +Heejoung Park,Design of fast digit-serial adders using SFQ logic circuits.,2009,6,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee6.html#ParkYYTF09,https://doi.org/10.1587/elex.6.1408 +Alex A. Aravind,An arbitration algorithm for multiport memory systems.,2005,2,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee2.html#Aravind05,https://doi.org/10.1587/elex.2.488 +Muhammad Tahir Akhtar,Noise power scheduling in active noise control systems with online secondary path modeling.,2007,4,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee4.html#AkhtarAK07,https://doi.org/10.1587/elex.4.66 +Kunihiko Gotoh,A 1.0-V 10-b 30-MS/s 3.4-mW rail-to-rail pipelined ADC using a new front-end MDAC.,2009,6,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee6.html#GotohAI09,https://doi.org/10.1587/elex.6.198 +Shahabuddin Rahmanian,An optimal structure for implementation of digital filters.,2007,4,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee4.html#RahmanianF07,https://doi.org/10.1587/elex.4.679 +Chiung-Feng Tai,Extended-resonant output matching design for 24GHz transformer-coupled CMOS VCO.,2012,9,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee9.html#TaiC12,https://doi.org/10.1587/elex.9.1153 +Chao-Ming Luo,A decoupling method between two tri-band antennas for WLAN/WiMAX applications.,2017,14,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee14.html#LuoHA17,https://doi.org/10.1587/elex.14.20170354 +Yeonbae Chung,CMOS latch bit-cell array for low-power SRAM design.,2010,7,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee7.html#ChungC10,https://doi.org/10.1587/elex.7.1145 +Jaehyun Kim,Clustering data according to update frequency to reduce garbage-collection overhead in solid-state drives.,2016,13,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee13.html#KimS16,https://doi.org/10.1587/elex.12.20150984 +Ozdal Boyraz,Demonstration of 11dB fiber-to-fiber gain in a silicon Raman amplifier.,2004,1,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee1.html#BoyrazJ04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.429 +Kohei Nagaoka,High-speed gate drive circuit for SiC MOSFET by GaN HEMT.,2015,12,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee12.html#NagaokaCYNH15,https://doi.org/10.1587/elex.12.20150285 +Ghazal Nabovati,Ultra-low power BPSK demodulator for bio-implantable chips.,2010,7,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee7.html#NabovatiM10,https://doi.org/10.1587/elex.7.1592 +Mohammad Tariqul Islam,Small multi-band microstrip antenna for wireless applications.,2010,7,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee7.html#IslamMM10,https://doi.org/10.1587/elex.7.1629 +Nguyen Huu Tho,A 200 Mb/s~3.2 Gb/s referenceless clock and data recovery circuit with bidirectional frequency detector.,2017,14,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee14.html#ThoSK17,https://doi.org/10.1587/elex.14.20161279 +Xinlin Xia,Novel UWB BPF with a controllable notched band using hybrid structure.,2017,14,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee14.html#XiaLLYJ17,https://doi.org/10.1587/elex.14.20170083 +Kenji Kogo,Design procedure of 25.8 Gbps/lane re-timer IC regarding power integrity.,2017,14,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee14.html#KogoNKK17,https://doi.org/10.1587/elex.14.20171017 +Youngil Kim,Low power high-gain class-AB OTA with dynamic output current scaling.,2013,10,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee10.html#KimL13,https://doi.org/10.1587/elex.10.20130042 +Wonkyeong Park,Design of a digital controller for an LED driver with a digital dimming.,2014,11,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee11.html#ParkNSS14,https://doi.org/10.1587/elex.11.20131012 +Kunimasa Saitoh,Design of effectively single-mode leakage channel fibers with large mode area and low bending loss.,2009,6,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee6.html#SaitohTK09,https://doi.org/10.1587/elex.6.412 +Zhebin Hu,C-band general Class-J power amplifier using GaN HEMT.,2016,13,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee13.html#HuHHYXL16,https://doi.org/10.1587/elex.13.20160483 +Hyeonho Song,A low-power reference buffer with high PSRR and low crosstalk for time-interleaved ADCs.,2013,10,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee10.html#SongKL13,https://doi.org/10.1587/elex.10.20130482 +Ryoichiro Nakamura,Multilevel pre-equalization using an analog FIR filter with multiple binary delay lines for 20-Gb/s 4-PAM multimode fiber transmission.,2018,15,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee15.html#NakamuraASWN18,https://doi.org/10.1587/elex.14.20171117 +Chung-Chi Lin,An efficient convolution interpolation kernel for digital image scaling.,2008,5,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee5.html#LinSCLW08,https://doi.org/10.1587/elex.5.860 +Yuya Kaneko,Performance evaluation of radio over fiber link simultaneously transmitted with 10 Gbps on-off keying signal.,2016,13,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee13.html#KanekoHO16,https://doi.org/10.1587/elex.13.20160506 +Cássio Alves Carneiro,Scalable spatio-temporal parallel parameterizable stream-based JPEG-LS encoder.,2017,14,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee14.html#CarneiroGFMF17,https://doi.org/10.1587/elex.14.20160950 +Atsushi Yamada,Optical gating width variability using electrode parasitic capacitance.,2016,13,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee13.html#YamadaNOSOK16,https://doi.org/10.1587/elex.13.20160363 +Yaoping Liu,A new compact hardware architecture of S-Box for block ciphers AES and SM4.,2017,14,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee14.html#LiuWZZ17,https://doi.org/10.1587/elex.14.20170358 +M. Abdollahvand,Compact band-rejection printed monopole antenna for UWB application.,2011,8,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee8.html#AbdollahvandDE11,https://doi.org/10.1587/elex.8.423 +Jingyan Xu,Single event transient propagation in dynamic complementary metal oxide semiconductor cascade circuits.,2015,12,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee12.html#XuCHHSH15,https://doi.org/10.1587/elex.12.20150849 +Mohammed Nazmus Shakib,High gain W-shaped microstrip patch antenna.,2010,7,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee7.html#ShakibIM10,https://doi.org/10.1587/elex.7.1546 +De-Ping Zhang,Design of a coherent inverse synthetic aperture radar moving target simulator.,2014,11,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee11.html#ZhangXWWY14,https://doi.org/10.1587/elex.11.20141044 +Hong-Yeol Lim,An adaptive L2 cache prefetching mechanism for effective exploitation of abundant memory bandwidth of 3-D IC technology.,2013,10,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee10.html#LimP13a,https://doi.org/10.1587/elex.10.20130523 +Mayumi Matsunaga,A dipole feeder for circularly and linearly polarized cross shape loop/spiral antennas.,2016,13,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee13.html#Matsunaga16,https://doi.org/10.1587/elex.13.20160426 +Chang-woo Lee,A highly accurate solenoid valve driver with current sensing circuits for brake systems.,2018,15,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee15.html#LeeK18,https://doi.org/10.1587/elex.15.20171029 +Xin Xie,Hardware Trojans classification based on controllability and observability in gate-level netlist.,2017,14,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee14.html#XieSCD17,https://doi.org/10.1587/elex.14.20170682 +Hiro Akinaga,ReRAM technology* challenges and prospects.,2012,9,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee9.html#AkinagaS12,https://doi.org/10.1587/elex.9.795 +Sheng Zhang,Novel compact single-band and dual-band bandpass filter based on one-third-mode substrate integrated waveguide.,2017,14,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee14.html#ZhangRCFLH17,https://doi.org/10.1587/elex.14.20170832 +Carlos Ortega,Reduction of the common mode voltage of a matrix converter fed direct torque control.,2010,7,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee7.html#OrtegaACA10,https://doi.org/10.1587/elex.7.1044 +Zhikuang Cai,On-chip long-term jitter measurement for PLL based on undersampling technique.,2013,10,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee10.html#CaiXQSY13,https://doi.org/10.1587/elex.10.20130887 +Byeong Ho Ahn,Security authentication based position for U-Health application services.,2009,6,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee6.html#AhnHLK09,https://doi.org/10.1587/elex.6.1125 +H. Ebrahim Zadeh,Circular Multifractal UWB monopole antenna.,2010,7,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee7.html#ZadehGN10,https://doi.org/10.1587/elex.7.717 +Amir Mehdipour,Proposal of simplified model for absorption coefficients in quantum dot array based intermediate band solar cell structure.,2014,11,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee11.html#MehdipourSOS14,https://doi.org/10.1587/elex.11.20140548 +Jose Juan Garcia-Hernandez,Efficient implementation of the RDM-QIM algorithm in an FPGA.,2009,6,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee6.html#Garcia-HernandezRCU09,https://doi.org/10.1587/elex.6.1064 +Cheng-Yu Zhang,A hybrid model of III-V FETs with accurate high-order derivatives.,2017,14,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee14.html#ZhangFZMZ17,https://doi.org/10.1587/elex.14.20170448 +Min Choi,A low-cost recovery scheme for dynamically scheduled processors.,2008,5,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee5.html#ChoiM08,https://doi.org/10.1587/elex.5.927 +Toshinori Kondo,Feasibility of mechanical beam scan by movable dielectric blocks in the feeder of a single-layer waveguide array antenna.,2006,3,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee3.html#KondoHSA06,https://doi.org/10.1587/elex.3.29 +Zhao Qi,Study of the CASM application in E1 signal of GALILEO system.,2009,6,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee6.html#QiH09,https://doi.org/10.1587/elex.6.1240 +Yinghui Quan,The range alignment approach for signal acquisition system.,2014,11,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee11.html#QuanLZX14,https://doi.org/10.1587/elex.11.20140304 +Sungju Lee,Secure fuzzy fingerprint vault against correlation attack.,2009,6,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee6.html#LeeCMCK09,https://doi.org/10.1587/elex.6.1368 +Qiang Guo,Image denoising using a multivariate shrinkage function in the curvelet domain.,2010,7,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee7.html#GuoY10,https://doi.org/10.1587/elex.7.126 +Jingqiu Wang,Collection of charge in NMOS from single event effect.,2016,13,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee13.html#WangLWSLSC16,https://doi.org/10.1587/elex.13.20160014 +Turrab Abid,Variable frequency finite control set model predictive control of boost converter.,2017,14,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee14.html#AbidH17,https://doi.org/10.1587/elex.14.20170526 +Way-Soong Lim,A new method of reducing network complexity in probabilistic neural network for target identification.,2004,1,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee1.html#LimR04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.534 +De-Ping Zhang,An ultra-high ramp rate arbitrary waveform generator for communication and radar applications.,2015,12,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee12.html#ZhangXWWZY15,https://doi.org/10.1587/elex.12.20141163 +Nagakarthik Tumuganti,Novel TCAM-based PUF with improved reliability for hardware-entangled security.,2017,14,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee14.html#TumugantiKC17,https://doi.org/10.1587/elex.14.20170716 +Xiaoying Deng,A 0.23 mW self-biased current-reuse CMOS LC-VCO based on novel interposed network.,2017,14,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee14.html#DengLZ17,https://doi.org/10.1587/elex.14.20170838 +Sang Muk Lee,Design of hardware accelerator for Lempel-Ziv 4 (LZ4) compression.,2017,14,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee14.html#LeeJOKL17,https://doi.org/10.1587/elex.14.20170399 +Minru Hao,Total ionizing dose radiation effect on the threshold voltage for the uniaxial strained Si nano NMOSFET.,2017,14,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee14.html#HaoHLKSZZ17,https://doi.org/10.1587/elex.14.20170411 +Hyunpil Kim,Radix-16 Booth multiplier using novel weighted 2-stage Booth algorithm.,2014,11,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee11.html#KimML14,https://doi.org/10.1587/elex.11.20140407 +Min Jin Lee,Distribution of post-breakdown resistance of MOSTFETs.,2011,8,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee8.html#LeeC11,https://doi.org/10.1587/elex.8.1309 +Tianliang Li,Turbine rotor dynamic balance vibration measurement based on the non-contact optical fiber grating sensing.,2015,12,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee12.html#LiTZCW15,https://doi.org/10.1587/elex.12.20150380 +Siti B. Ahmad-Anas,Multiple access interference elimination with enhanced chromatic dispersion tolerance in SAC OCDMA.,2008,5,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee5.html#Ahmad-AnasAMW08,https://doi.org/10.1587/elex.5.617 +Satoshi Suda,Spot-size and incident angle dependence of filtering characteristics of narrow pass-band dielectric multilayer filters.,2004,1,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee1.html#SudaK04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.442 +Yasuhiro Hinokuma,CW single-wavelength emission by using novel asymmetric configuration for active multi-mode interferometer laser diodes.,2012,9,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee9.html#HinokumaCJHNTH12,https://doi.org/10.1587/elex.9.1448 +Hossein Shamsi,Less jitter sensitive NTF design for NRZ multi-bit continuous-time Delta-Sigma modulators.,2008,5,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee5.html#Shamsi08a,https://doi.org/10.1587/elex.5.895 +Ji-Hyun Jung,Estimation of water level collected in an empty tunnel using cross-borehole pulse radar.,2015,12,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee12.html#JungK15,https://doi.org/10.1587/elex.11.20141129 +Yongjun Lee,DRAM architecture for efficient data lifetime management.,2017,14,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee14.html#LeeKJL17,https://doi.org/10.1587/elex.14.20170309 +Masayuki Ikebe,Recent progress in the technology linking sensors and digital circuits.,2014,11,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee11.html#Ikebe14,https://doi.org/10.1587/elex.11.20142003 +Davood Gharavian,Stressed speech recognition using a warped frequency scale.,2008,5,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee5.html#GharavianA08,https://doi.org/10.1587/elex.5.187 +Yoshifumi Sasaki,A compact cluster computer with embedded CPUs and its application to rapid prototyping of fingerprint verification system.,2005,2,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee2.html#SasakiIAH05,https://doi.org/10.1587/elex.2.465 +Takayoshi Tashiro,Experimental demonstration of RoF-DAS over WDM-PON with bandpass-sampling and optical TDM techniques.,2012,9,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee9.html#TashiroHKYIMNHTK12,https://doi.org/10.1587/elex.9.206 +Satoshi Kawamura,Studies on the accuracy of numerical operations with embedded CPUs.,2006,3,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee3.html#KawamuraNYOFG06,https://doi.org/10.1587/elex.3.149 +Yuichiro Ikuma,Proposal of a small self-holding 2*2 optical switch using phase-change material.,2008,5,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee5.html#IkumaST08,https://doi.org/10.1587/elex.5.442 +Kamel Mars,A single-ended CMOS chopper amplifier for 1/f noise reduction of n-channel MOS transistors.,2012,9,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee9.html#MarsK12,https://doi.org/10.1587/elex.9.98 +Dong-Hyun Yoon,A low-jitter BMCDR for half-rate PON systems.,2017,14,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee14.html#YoonHJJB17,https://doi.org/10.1587/elex.13.20161045 +Jing Yang,A bistatic HF radar for surface current mapping.,2010,7,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee7.html#YangWZHYS10,https://doi.org/10.1587/elex.7.1435 +Farhad Mehdipour,A gravity-directed temporal partitioning approach.,2008,5,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee5.html#MehdipourNHIM08,https://doi.org/10.1587/elex.5.366 +Xuan Zhu,Hamming network circuits based on CMOS/memristor hybrid design.,2013,10,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee10.html#ZhuYWWY13,https://doi.org/10.1587/elex.10.20130404 +John Reuben,Capacitance driven clock mesh synthesis to minimize skew and power dissipation.,2013,10,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee10.html#ReubenVNK13,https://doi.org/10.1587/elex.10.20130850 +Mohsen Hayati,Design of wide stopband lowpass filter with sharp roll-off.,2011,8,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee8.html#HayatiS11a,https://doi.org/10.1587/elex.8.1348 +Se-Won Oh,An improvement for applets download speed using transaction buffer based on RAM memory of Java Card system using IC chip.,2011,8,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee8.html#OhSJ11,https://doi.org/10.1587/elex.8.705 +Daisuke Yamane,An SOI bulk-micromachined dual SPDT RF-MEMS switch by layer-wise separation design of waveguide and switching mechanism.,2010,7,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee7.html#YamaneSSKFT10,https://doi.org/10.1587/elex.7.80 +Sanggyu Park,A hardware operating system kernel for multi-processor systems.,2008,5,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee5.html#ParkHC08,https://doi.org/10.1587/elex.5.296 +Mustafa Dh. Hassib,Improved concatenated (RS-CC) for OFDM systems.,2012,9,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee9.html#HassibMAINI12,https://doi.org/10.1587/elex.9.538 +Xiansuo Liu,Design of class E power amplifiers by using scalable electro-thermal GaN HEMT model.,2017,14,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee14.html#LiuRXYXZ17,https://doi.org/10.1587/elex.14.20170806 +Mingjie Ding,Brillouin signal amplification in pumped erbium-doped optical fiber.,2014,11,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee11.html#DingHMN14,https://doi.org/10.1587/elex.11.20140627 +Woo-Yong Choi,A fast algorithm for polynomial reconstruction of fuzzy fingerprint vault.,2008,5,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee5.html#ChoiLMCM08,https://doi.org/10.1587/elex.5.725 +Jong-Il Won,SCR stacking structure with high holding voltage for high voltage power clamp.,2011,8,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee8.html#WonJK11,https://doi.org/10.1587/elex.8.1260 +Mohammad B. Vahidfar,A new reconfigurable LNA enhanced by programmable load and capacitive feedback for multi-standard applications.,2007,4,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee4.html#VahidfarS07a,https://doi.org/10.1587/elex.4.159 +Na Zhang,A bufferless optical network-on-chip router.,2013,10,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee10.html#ZhangGYCC13,https://doi.org/10.1587/elex.10.20130681 +Masaya Ohta,Improvement of the error characteristics of N-continuous OFDM system by SLM.,2010,7,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee7.html#OhtaIY10,https://doi.org/10.1587/elex.7.1354 +Youngcheol Park,Expansion of class-J power amplifiers into inverse mode operation.,2011,8,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee8.html#Park11a,https://doi.org/10.1587/elex.8.1479 +Ahmad Hormozi,Multi-Level 2D LUT as digital pre-distorter for linearizing memory affected RF power amplifiers.,2011,8,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee8.html#HormoziJ11,https://doi.org/10.1587/elex.8.1569 +Shun'ichiro Ohmi,Importance of Si surface flatness to realize high-performance Si devices utilizing ultrathin films with new material system.,2014,11,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee11.html#Ohmi14,https://doi.org/10.1587/elex.11.20142006 +Sulaiman Wadi Harun,An efficient and low noise Gain-Clamped Double-Pass L-Band EDFA.,2004,1,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee1.html#HarunA04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.98 +Hua Chen,0.3-4.4 GHz wideband CMOS frequency divide-by-1.5 with optimized CML-XOR gate.,2017,14,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee14.html#ChenGLZHY17,https://doi.org/10.1587/elex.14.20170450 +Yong-Seo Koo,SCR-based ESD protection device with low trigger and high robustness for I/O clamp.,2012,9,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee9.html#KooL12,https://doi.org/10.1587/elex.9.200 +Ik Joon Chang,Subthreshold 8T SRAM sizing utilizing short-channel Vt roll-off and inverse narrow-width effect.,2016,13,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee13.html#ChangY16,https://doi.org/10.1587/elex.13.20160020 +Ho-Yun Lee,Memory efficient DIT-based SDF IFFT for OFDM systems.,2014,11,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee11.html#LeeKJCC14,https://doi.org/10.1587/elex.11.20140010 +Jinho Noh,An analog sigma-delta modulator with shared operational amplifier for low-power class-D audio amplifier.,2015,12,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee12.html#NohLY15,https://doi.org/10.1587/elex.12.20150562 +Honorio Martín,A lightweight implementation of the Tav-128 hash function.,2017,14,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee14.html#MartinPMT17,https://doi.org/10.1587/elex.14.20161255 +Zhiping Wang,Sliding mode control of uncertain parameter for a matrix rectifier.,2016,13,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee13.html#WangMH16,https://doi.org/10.1587/elex.13.20160462 +Umar Hasan Khan,Novel chipless displacement sensor circuit using spurline resonantor.,2016,13,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee13.html#KhanASAAL16,https://doi.org/10.1587/elex.13.20161008 +Ayumi Fuchida,Proposal of total-internal-reflection optical switch with slowing light in Bragg reflector waveguide.,2008,5,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee5.html#FuchidaK08,https://doi.org/10.1587/elex.5.349 +Ziqiang Xu,Compact LTCC source-load coupled SIW filter using mixed coupling.,2012,9,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee9.html#XuSZL12,https://doi.org/10.1587/elex.9.1349 +Lin-lin Xie,An improved phase digitization mechanism for fast-locking low-power all-digital PLLs.,2017,14,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee14.html#XieWQH17,https://doi.org/10.1587/elex.14.20170911 +Nazirul Afham Idris,A novel silica waveguide lens for free-space optical cross connects.,2012,9,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee9.html#IdrisST12,https://doi.org/10.1587/elex.9.998 +Tao-Tao Zhu,SGERC: a self-gated timing error resilient cluster of sequential cells for wide-voltage processor.,2017,14,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee14.html#ZhuXCM17,https://doi.org/10.1587/elex.14.20170218 +Yingsong Li,Miniaturization of ACS-fed dual-band antenna with loaded capacitance terminations for WLAN applications.,2013,10,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee10.html#LiLM13,https://doi.org/10.1587/elex.10.20130455 +Gholamreza Karimi,Simulation of substrate coupling in mixed-signal IC's using an efficient and real-time macromodel.,2006,3,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee3.html#KarimiM06,https://doi.org/10.1587/elex.3.509 +Cheng Zhengxi,A design of integrated CMOS-MEMS infrared emitter arrays.,2016,13,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee13.html#ZhengxiT16,https://doi.org/10.1587/elex.13.20160009 +Shunji Nakata,Stability of adiabatic circuit using asymmetric 1D-capacitor array between the power supply and ground.,2007,4,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee4.html#Nakata07a,https://doi.org/10.1587/elex.4.165 +Satoru Hosono,Special-purpose computer with highly parallel pipelines for solution X-ray scattering analysis of macromolecules XSAM-2.,2007,4,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee4.html#HosonoWMI07,https://doi.org/10.1587/elex.4.387 +Mahdi Yousefi,Dual band planar hybrid coupler with enhanced bandwidth using particle swarm optimization technique.,2012,9,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee9.html#YousefiMMA12,https://doi.org/10.1587/elex.9.1030 +Shih-Hsu Huang,Three-dimension scheduling under multi-cycle interconnect communications.,2005,2,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee2.html#HuangCC05,https://doi.org/10.1587/elex.2.108 +Taehoon Lee,K-maximin clustering: a maximin correlation approach to partition-based clustering.,2009,6,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee6.html#LeeKCY09,https://doi.org/10.1587/elex.6.1205 +Youngil Kim,H/V linear regulator with enhanced power supply rejection.,2014,11,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee11.html#KimL14,https://doi.org/10.1587/elex.11.20140012 +Songwei Pei,A low-overhead RO PUF design for Xilinx FPGAs.,2018,15,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee15.html#PeiZW18,https://doi.org/10.1587/elex.15.20180093 +Zhen Xie,A method for estimating the 3D rendering performance of the SoC in the early design stage.,2014,11,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee11.html#XieZS14,https://doi.org/10.1587/elex.11.20140386 +Yohei Sakamaki,Loss reduction of silica-based 8 and** 8 optical matrix switch by optimizing waveguide crossings using WFM method.,2007,4,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee4.html#SakamakiSSHTS07,https://doi.org/10.1587/elex.4.712 +Jianhui Wu,A 1.2V high conversion gain mixer with reused gm stage in 65nm CMOS.,2013,10,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee10.html#WuCJ13,https://doi.org/10.1587/elex.10.20130279 +Takayoshi Mori,1.0µ*m band supercontinuum generation using photonic crystal fiber and its application as multi-wavelength pulse source.,2010,7,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee7.html#MoriYKT10,https://doi.org/10.1587/elex.7.1504 +Xincun Ji,A 2.4 GHz fractional-N PLL with a low-power true single-phase clock prescaler.,2017,14,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee14.html#JiXWJ17,https://doi.org/10.1587/elex.14.20170065 +Xu Hui,A novel layout placement structure to mitigate the multi-bit-upset in 6T-SRAM cell.,2014,11,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee11.html#HuiY14,https://doi.org/10.1587/elex.11.20140396 +Yang Wang,An anti-alias harmonic-reject phase modulation for digital outphasing transmitter.,2018,15,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee15.html#WangXWHQ18,https://doi.org/10.1587/elex.15.20171258 +S. M. Shamsul Alam,Design and implementation of LT codec architecture with optimized degree distribution.,2013,10,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee10.html#AlamC13a,https://doi.org/10.1587/elex.10.20130340 +Shinya Itoh,A low-power transmitter design for inductive data link with class-F switching operation.,2007,4,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee4.html#ItohK07,https://doi.org/10.1587/elex.4.42 +Yuji Miyoshi,Nyquist OTDM scheme using optical root-Nyquist pulse and optical correlation receiver.,2014,11,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee11.html#MiyoshiKO14,https://doi.org/10.1587/elex.10.20130943 +Heetae Kim,A novel X-filling method for capture power reduction.,2017,14,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee14.html#KimOLK17,https://doi.org/10.1587/elex.14.20171093 +Chunbiao Li,A novel four-wing strange attractor born in bistability.,2015,12,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee12.html#LiPSA15,https://doi.org/10.1587/elex.12.20141116 +Yun Cie Foo,Enhancing wavelength converter placement optimization with traffic-engineering-aware shortest-path routing.,2004,1,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee1.html#FooLTCL04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.416 +Yu Xiao,A microstrip-fed W-band waveguide filter using H-shaped coupling slots.,2017,14,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee14.html#XiaoLS17,https://doi.org/10.1587/elex.14.20170326 +Mehdi Fallahpour,High capacity audio watermarking using FFT amplitude interpolation.,2009,6,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee6.html#FallahpourM09,https://doi.org/10.1587/elex.6.1057 +Takefumi Yoshikawa,Timing margin enhancement technique for current mode interface.,2014,11,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee11.html#YoshikawaN14,https://doi.org/10.1587/elex.11.20140766 +Hyung-Jin Choi,Erratum: Sub-1 V V-I converter-based voltage-controlled oscillator with a linear gain characteristic [IEICE Electronics Express Vol. 14 (2017) No. 15 pp. 20170610].,2017,14,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee14.html#ChoiMKHH17a,https://doi.org/10.1587/elex.14.20178004 +Pei Liu,A power-delay-product efficient and SEU-tolerant latch design.,2017,14,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee14.html#LiuZLZJ17,https://doi.org/10.1587/elex.14.20170972 +Narges Noori,Joint beamforming and power control in MIMO cognitive radio networks.,2010,7,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee7.html#NooriRA10,https://doi.org/10.1587/elex.7.203 +Masahiro Tsuchiya,Resolution of live electrooptic imaging with a very thin (10-µ*m) sensor plate.,2016,13,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee13.html#TsuchiyaFY16,https://doi.org/10.1587/elex.13.20160135 +Mitsuru Shiozaki,20GHz uniform-phase uniform-amplitude standing-wave clock distribution.,2006,3,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee3.html#ShiozakiSMII06,https://doi.org/10.1587/elex.3.11 +Dongdong Zhao,Multiscale simulations of swift heavy ion irradiation effect on bilayer graphene.,2016,13,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee13.html#ZhaoLWWFC16,https://doi.org/10.1587/elex.13.20151040 +Oguzhan Kizilbey,3.5-3.8GHz class-E balanced GaN HEMT power amplifier with 20W Pout and 80% PAE.,2013,10,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee10.html#KizilbeyPY13,https://doi.org/10.1587/elex.10.20130104 +Mohammad Reza Asgari,A low-variation on-resistance CMOS sampling switch for high-speed high-performance applications.,2012,9,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee9.html#AsgariH12,https://doi.org/10.1587/elex.9.339 +Tatsuhiro Numata,Circuit simulation model for ultimately-scaled ballistic nanowire MOSFETs.,2013,10,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee10.html#NumataUN13,https://doi.org/10.1587/elex.10.20120906 +S. Alireza Zabihian,A sub-1-V high-gain single- stage operational amplifier.,2008,5,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee5.html#ZabihianL08,https://doi.org/10.1587/elex.5.211 +Joon-Hyuk Chang,Residual echo reduction based on MMSE estimator in acoustic echo canceller.,2007,4,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee4.html#ChangKK07,https://doi.org/10.1587/elex.4.762 +Neeta Pandey,A new mixed mode biquad using reduced number of active and passive elements.,2006,3,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee3.html#PandeyPBJ06,https://doi.org/10.1587/elex.3.115 +Jun Wang 0015,Low bit rate overhead based reference modification for error resilient video coding.,2011,8,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee8.html#0015G11,https://doi.org/10.1587/elex.8.1689 +Xinlei Chen,Fast iterative solution of EFIE using ACA algorithm with Sherman-Morrison-Woodbury formula-based preconditioner.,2017,14,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee14.html#ChenFZLG17,https://doi.org/10.1587/elex.13.20160791 +Manuel Bandala,Photon radiation testing of commercially available off-the-shelf microcontroller devices.,2012,9,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee9.html#BandalaJ12,https://doi.org/10.1587/elex.9.397 +Moon-Que Lee,Lumped directional coupler with a varactor tuned reflector for RFID applications.,2009,6,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee6.html#Lee09,https://doi.org/10.1587/elex.6.129 +Yeonjoo Choi,Graph-based fingerprint classification using orientation field in core area.,2010,7,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee7.html#ChoiK10,https://doi.org/10.1587/elex.7.1303 +Shuliang Gao,The high-accuracy ionosphere correcting algorithm for GNSS signals based on kalman filter.,2011,8,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee8.html#GaoHGZHW11,https://doi.org/10.1587/elex.8.266 +Tak-Keung Liang,Theoretical analysis of continuous-wave Raman gain/lasing in silicon wire waveguides without carrier extraction scheme.,2005,2,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee2.html#LiangNTT05,https://doi.org/10.1587/elex.2.440 +Seyed Hassan Elahi,Ultra-wideband CMOS low noise amplifier with Flat Gain.,2009,6,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee6.html#ElahiN09a,https://doi.org/10.1587/elex.6.630 +Min-Chul Park,An intelligent remote controller for Free-Viewpoint TV.,2010,7,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee7.html#ParkCS10,https://doi.org/10.1587/elex.7.383 +Mukter Zaman,ToF measurement based novel top edge detection algorithm for a smart security system.,2007,4,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee4.html#ZamanIR07,https://doi.org/10.1587/elex.4.617 +Hossein Miar Naimi,Phase error analysis of the LC-Tank CMOS quadrature oscillators.,2011,8,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee8.html#NaimiG11,https://doi.org/10.1587/elex.8.1933 +Toshifumi Moriyama,Real array pattern tolerances from amplitude excitation errors.,2014,11,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee11.html#MoriyamaPASR14,https://doi.org/10.1587/elex.11.20140571 +Ming Liu,VLSI implementation of the modified sign-error LMS adaptive algorithm.,2017,14,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee14.html#LiuWLZ17,https://doi.org/10.1587/elex.13.20161001 +Meteb M. Altaf,An ultra-high-speed FPGA based digital correlation processor.,2015,12,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee12.html#AltafALZLY15,https://doi.org/10.1587/elex.12.20150214 +Minshun Wu,ADC jitter estimation using a single frequency test without requiring coherent sampling.,2012,9,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee9.html#WuCC12,https://doi.org/10.1587/elex.9.1485 +Yee Chieh Tan,Fast delay search algorithm for time-domain equalization in multicarrier systems.,2009,6,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee6.html#TanRC09,https://doi.org/10.1587/elex.6.1444 +Takahide Sakamoto,Pulse-carving technique for suppressing transient state in external wideband FSK modulation.,2005,2,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee2.html#SakamotoKI05,https://doi.org/10.1587/elex.2.244 +Wei Li,An FPGA-based real-time UAV SAR raw signal simulator.,2014,11,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee11.html#LiZHW14,https://doi.org/10.1587/elex.11.20140168 +Hyeongyeol Park,A 3.8 MHz CMOS Wien-bridge oscillator with differential capacitive automatic amplitude control.,2014,11,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee11.html#ParkS14,https://doi.org/10.1587/elex.11.20140681 +Minyeon Cha,A CMOS harmonic rejection mixer based on current mirror amplifiers.,2011,8,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee8.html#ChaK11,https://doi.org/10.1587/elex.8.1287 +Tetsuya Suemitsu,InP and GaN high electron mobility transistors for millimeter-wave applications.,2015,12,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee12.html#Suemitsu15,https://doi.org/10.1587/elex.12.20152005 +Ji Young Chun,RFID tag search protocol preserving privacy of mobile reader holders.,2011,8,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee8.html#ChunHL11,https://doi.org/10.1587/elex.8.50 +Yulin Zhang,Energy-efficient hybrid split capacitor switching scheme for SAR ADCs.,2016,13,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee13.html#ZhangCGY16,https://doi.org/10.1587/elex.13.20160125 +Meng-Huang Lee,Disk system design for periodical video broadcast services.,2004,1,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee1.html#Lee04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.204 +Gibak Kim,Speech distortion weighted multi-channel Wiener filter and its application to speech recognition.,2015,12,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee12.html#Kim15,https://doi.org/10.1587/elex.12.20150063 +Myunghwan Ryu,Diffusion-rounded CMOS for improving both Ion and Ioff characteristics.,2011,8,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee8.html#RyuNK11,https://doi.org/10.1587/elex.8.1783 +Xue Li,Study on detection and recognition of phase contamination and multimode propagation in ionosphere for OTHR.,2011,8,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee8.html#LiDJ11,https://doi.org/10.1587/elex.8.1267 +Masaaki Harada,Performance analysis of coded MIMO OFDM in multipath fading channel.,2011,8,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee8.html#Harada11,https://doi.org/10.1587/elex.8.1596 +Mohsen Tamaddon,A high resolution highly linear low spur fractional time-to-digital converter (FTDC) for ADPLL.,2011,8,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee8.html#TamaddonN11,https://doi.org/10.1587/elex.8.311 +Chao Long,Array calibration for mutual coupling errors of high-frequency surface wave radar.,2012,9,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee9.html#LongWLLX12,https://doi.org/10.1587/elex.9.731 +Mingqing Liu,Design of a compact triple-band bandpass filter using triple-mode stub-loaded step-impedance resonator.,2015,12,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee12.html#LiuWK15,https://doi.org/10.1587/elex.12.20150676 +Seongjae Cho,Simulation study on scaling limit of silicon tunneling field-effect transistor under tunneling-predominance.,2012,9,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee9.html#ChoKSKPH12,https://doi.org/10.1587/elex.9.828 +Masatomo Kawano,Erratum: Binocular range-sensor LSI with improved distance detection precision by coordinated pixel placement [IEICE Electronics Express Vol. 11(2014) No. 19 pp. 20140747].,2014,11,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee11.html#KawanoA14a,https://doi.org/10.1587/elex.11.20148002 +Seyed Yahya Mortazavi,A New folding and interpolating ADC structure with reduced DNL/INL.,2009,6,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee6.html#MortazaviN09,https://doi.org/10.1587/elex.6.90 +Makoto Nagata,Protecting cryptographic integrated circuits with side-channel information.,2017,14,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee14.html#NagataFMHHS17,https://doi.org/10.1587/elex.14.20162005 +Azam Khalili,Analysis of incremental RLS adaptive networks with noisy links.,2011,8,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee8.html#KhaliliTR11,https://doi.org/10.1587/elex.8.623 +Jian-Fei Jiang,Design optimization for capacitive-resistively driven on-chip global interconnect.,2015,12,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee12.html#JiangHWWM15,https://doi.org/10.1587/elex.12.20150111 +Junping Zheng,Electrical analysis of TSV step change in radius with compensation structure.,2015,12,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee12.html#ZhengDYZF15,https://doi.org/10.1587/elex.12.20150400 +Keishi Hagiwara,Novel time-domain asymptotic-numerical solutions for transient scattered electric field from a coated cylinder covered with a thick dielectric medium.,2017,14,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee14.html#HagiwaraGTOT17,https://doi.org/10.1587/elex.14.20170085 +Hui Liu,A novel automatic attenuator with ultra-fast response time.,2018,15,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee15.html#LiuZPC18,https://doi.org/10.1587/elex.15.20171204 +Xiaoyan Yuan,Efficient iris recognition system based on iris anatomical structure.,2007,4,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee4.html#YuanS07,https://doi.org/10.1587/elex.4.555 +Ic-Pyo Hong,Design of a film antenna using a cloverleaf-shaped monopole structure for WiBro and WLAN.,2012,9,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee9.html#HongL12,https://doi.org/10.1587/elex.9.654 +Kyu-Young Kim,A continuous-time equalizer adopting a clock attenuation tracking technique for digital display interface (DDI).,2007,4,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee4.html#KimYK07,https://doi.org/10.1587/elex.4.638 +Weiwei Shan,Timing monitoring paths selection for wide voltage IC.,2016,13,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee13.html#ShanDSCX16,https://doi.org/10.1587/elex.13.20160095 +Hironao Okada,Battery-less wireless current sensor node utilizing the dependence of charging time of a capacitor on the current flowing through a power line.,2013,10,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee10.html#OkadaI13,https://doi.org/10.1587/elex.10.20130308 +Christophe van Praet,A large input range source-follower based bi-quad filter cell.,2013,10,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee10.html#PraetTBV13,https://doi.org/10.1587/elex.10.20130156 +Hamza M. R. Al-Khafaji,Improving spectral efficiency of SAC-OCDMA systems by SPD scheme.,2012,9,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee9.html#Al-KhafajiAAF12,https://doi.org/10.1587/elex.9.1829 +Reangroaj Roajanasiri,A solder bridging rework study and an experimental investigation of the TuMR magnetic head.,2012,9,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee9.html#RoajanasiriAB12,https://doi.org/10.1587/elex.9.1683 +Yu Zeng,A database-driven Ant Colony Algorithm for PLC networking.,2014,11,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee11.html#ZengZZZS14,https://doi.org/10.1587/elex.11.20140957 +Jiann-Jong Chen,Wide-range high-linearity current-controlled pulse-width/delay circuits.,2005,2,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee2.html#ChenSHTL05,https://doi.org/10.1587/elex.2.217 +Joung-Yeal Kim,New low-voltage small-area mixed-voltage I/O buffer.,2009,6,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee6.html#KimPJK09,https://doi.org/10.1587/elex.6.897 +Tsuyoshi Funaki,Comparative study of self turn-on phenomenon in high-voltage Si and SiC power MOSFETs.,2013,10,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee10.html#Funaki13,https://doi.org/10.1587/elex.10.20130744 +Jaesu Park,Design of a compact low pass filter for high power RF generators.,2013,10,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee10.html#ParkC13,https://doi.org/10.1587/elex.10.20120956 +Hukeun Kwak,An enhanced reactive Chord for mobile networks.,2010,7,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee7.html#KwakYKC10,https://doi.org/10.1587/elex.7.711 +Jinbin Zhao,An improved hysteretic PWM control with feed-forward and feedback.,2013,10,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee10.html#ZhaoLDL13,https://doi.org/10.1587/elex.10.20120937 +Sadayuki Yasuda,A reliable procedure in a new power management technique for a 200-Gbps packet forwarding LSI.,2013,10,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee10.html#YasudaOIYSAUS13,https://doi.org/10.1587/elex.10.20130231 +Goki Numata,Strain and temperature sensing based on multimode interference in partially chlorinated polymer optical fibers.,2015,12,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee12.html#NumataHTMN15,https://doi.org/10.1587/elex.12.20141173 +Xuelian Liu,A novel parameter estimation of chirp signal in α-stable noise.,2017,14,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee14.html#LiuW17,https://doi.org/10.1587/elex.14.20161053 +In Jun Park,Effect of double-patterning and double-etching on the line-edge-roughness of multi-gate bulk MOSFETs.,2013,10,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee10.html#ParkS13,https://doi.org/10.1587/elex.10.20130108 +Tai-Long Xu,A wide-range and fast-locking all digital SARDLL for DVFS SoCs.,2015,12,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee12.html#XuXCGHZXC15,https://doi.org/10.1587/elex.12.20150284 +Tsuyoshi Funaki,SiC JFET dc characteristics under extremely high ambient temperatures.,2004,1,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee1.html#FunakiBJKBMKH04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.523 +Ayman A. El-Saleh,Genetic algorithm-assisted soft fusion-based linear cooperative spectrum sensing.,2011,8,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee8.html#El-SalehIA11,https://doi.org/10.1587/elex.8.1527 +Xingwei Liu,An improved forecasting algorithm for wireless network traffic.,2011,8,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee8.html#LiuLCC11,https://doi.org/10.1587/elex.8.916 +Tiesheng Wang,Improving dynamic texture recognition with constraint subspace learning.,2010,7,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee7.html#WangS10,https://doi.org/10.1587/elex.7.1329 +Richa Singh,DS theory based fingerprint classifier fusion with update rule to minimize training time.,2006,3,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee3.html#SinghVNS06,https://doi.org/10.1587/elex.3.429 +Yunjoo Park,Efficient management of PCM-based swap storage.,2015,12,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee12.html#ParkAB15,https://doi.org/10.1587/elex.12.20150614 +Zhiping Wang,Analysis and control for matrix rectifier by circuit DQ transformation.,2015,12,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee12.html#WangXMX15,https://doi.org/10.1587/elex.12.20150818 +Takashi Ohira,Maximum available efficiency formulation based on a black-box model of linear two-port power transfer systems.,2014,11,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee11.html#Ohira14a,https://doi.org/10.1587/elex.11.20140448 +Naoya Onizawa,High-throughput CAM based on a synchronous overlapped search scheme.,2013,10,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee10.html#OnizawaMGGH13,https://doi.org/10.1587/elex.10.20130148 +Jiliang Zhang 0002,TimFastPlace: Critical-path based timing driven FastPlace.,2012,9,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee9.html#ZhangLZWLZ12,https://doi.org/10.1587/elex.9.1310 +Hassan Moradzadeh,High performance low-voltage QFG-based DVCC and a novel fully differential SC integrator based on it.,2008,5,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee5.html#MoradzadehA08,https://doi.org/10.1587/elex.5.1017 +Hai-lin Cao,Dual-band polarization angle independent 90®6* polarization rotator using chiral metamaterial.,2016,13,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee13.html#CaoCWPLXTLH16,https://doi.org/10.1587/elex.13.20160583 +Shingo Mandai,A 8bit two stage time-to-digital converter using time difference amplifier.,2010,7,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee7.html#MandaiNIA10,https://doi.org/10.1587/elex.7.943 +Ha-young Jeong,Scalable distributed memory embedded system with a low-cost hardware message passing interface.,2009,6,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee6.html#JeongHL09,https://doi.org/10.1587/elex.6.837 +Bogdan J. Falkowski,Algorithm to generate fixed polarity Reed-Muller GF(5) spectra from disjoint cubes.,2004,1,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee1.html#FalkowskiLR04a,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.131 +Xin-Xiang Lian,Dynamic-static hybrid near-threshold-voltage adder design for ultra-low power applications.,2015,12,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee12.html#LianWPC15,https://doi.org/10.1587/elex.12.20141122 +Chen Wu,Parameters design of a sliding mode controller with a hysteresis band for buck converters in continuous and discontinuous conduction modes.,2016,13,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee13.html#WuLLL16,https://doi.org/10.1587/elex.13.20160448 +Eui-Rim Jeong,A technique for reducing data converters in MIMO systems.,2014,11,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee11.html#JeongHHJ14,https://doi.org/10.1587/elex.11.20140409 +Wei Chen,4-20 GHz low noise amplifier MMIC with on-chip switchable gate biasing circuit.,2017,14,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee14.html#ChenWCHM17,https://doi.org/10.1587/elex.14.20170711 +Ge Liu,420 GHz subharmonic mixer based on heterogeneous integrated Schottky diode.,2017,14,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee14.html#LiuZZXWF17,https://doi.org/10.1587/elex.14.20170459 +Johan Bauwelinck,Low-output-impedance BiCMOS voltage buffer.,2004,1,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee1.html#BauwelinckCVMOQV04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.34 +Mahsa Keshavarz Hedayati,Improved dual-frequency Wilkinson power dividers with Defected Ground Structure.,2011,8,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee8.html#HedayatiMA11,https://doi.org/10.1587/elex.8.808 +Chi-Hoon Shin,Functional unit duplication for reducing dynamic power.,2010,7,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee7.html#ShinOSKKK10,https://doi.org/10.1587/elex.7.98 +Xiaojuan Xia,A temperature-compensated CMOS ring oscillator for DC-DC converters.,2013,10,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee10.html#XiaJGZW13,https://doi.org/10.1587/elex.10.20130833 +Lei Wang,Dual 3-phase buck converter for multi-core CPUs power supply in mobile devices.,2017,14,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee14.html#WangLC17,https://doi.org/10.1587/elex.14.20170045 +Katsuhisa Taguchi,Optically-amplified PON system using XGM-based ALC technique.,2011,8,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee8.html#TaguchiFISIY11,https://doi.org/10.1587/elex.8.1836 +Jun Xiao,Micromachined patch antenna array design and optimization by using artificial neural network.,2017,14,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee14.html#XiaoLZFY17,https://doi.org/10.1587/elex.14.20170031 +Sindhuja Patchaikani,GA optimization of transparent MIMO antenna for smartphone.,2013,10,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee10.html#PatchaikaniK13,https://doi.org/10.1587/elex.10.20130288 +Yanlong Zhang,A CMOS semi-distributed step attenuator with low insertion loss and low phase distortion.,2014,11,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee11.html#ZhangZLLQWR14,https://doi.org/10.1587/elex.11.20140394 +Hsiao-Yun Li,A frequency-reconfigurable slot loop antenna using ferroelectric MIM capacitors.,2013,10,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee10.html#LiCCRF13,https://doi.org/10.1587/elex.10.20130521 +Peng Qin,A fast and efficient automatic frequency calibration technique for 10 GHz PLLs.,2014,11,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee11.html#QinZYLZ14,https://doi.org/10.1587/elex.11.20140845 +Ehsan Kargaran,Highly linear low voltage low power CMOS LNA.,2013,10,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee10.html#KargaranZKMN13,https://doi.org/10.1587/elex.10.20130557 +Hong-Thu Nguyen,A CORDIC-based QR decomposition for MIMO signal detector.,2018,15,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee15.html#NguyenNHP18,https://doi.org/10.1587/elex.15.20180174 +Junyan Qian,Satisfiability-based method for reconfiguring power efficient VLSI array.,2016,13,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee13.html#QianCHZXZ16,https://doi.org/10.1587/elex.13.20160930 +Muhammad Amin,A bowtie-shaped MIMO dielectric resonator antenna for WLAN applications.,2017,14,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee14.html#AminBLBH17,https://doi.org/10.1587/elex.14.20170519 +Nathabhat Phankong,Switching characteristics of lateral-type and vertical-type SiC JFETs depending on their internal parasitic capacitances.,2010,7,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee7.html#PhankongFH10a,https://doi.org/10.1587/elex.7.1051 +Zhe Chen,Design of a low noise 190-240 GHz subharmonic mixer based on 3D geometric modeling of Schottky diodes and CAD load-pull techniques.,2016,13,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee13.html#ChenZFY16,https://doi.org/10.1587/elex.13.20160604 +Soongyu Kwon,STAM: System level state-machine-based thermal behavior analysis for multicore processor.,2014,11,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee11.html#KwonPK14a,https://doi.org/10.1587/elex.11.20140798 +Moein Nazari,An ultra-wideband Rotman lens using modified dummy sidewalls.,2011,8,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee8.html#NazariMGM11,https://doi.org/10.1587/elex.8.1228 +Ji Ding,Compact in-line triplet SIW bandpass filter using etched GCPW line resonator.,2016,13,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee13.html#DingZL16,https://doi.org/10.1587/elex.13.20151120 +Seung-Yerl Lee,Multi-input R23SDF-kR for efficient FFT processor in MIMO-OFDM systems.,2009,6,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee6.html#LeeKWKC09,https://doi.org/10.1587/elex.6.1702 +Kwang Chun Lee,Tunable continuous-time Δ Σ modulator for switching power amplifier.,2012,9,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee9.html#LeePJJC12,https://doi.org/10.1587/elex.9.1714 +Jeffrey Davidson,Threshold extension with Kalman array for synchronization of burst communication.,2004,1,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee1.html#DavidsonB04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.165 +Peng Wang,A comprehensive comparison between virtual cut-through and wormhole routers for cache coherent Network on-Chips.,2014,11,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee11.html#WangMLW14,https://doi.org/10.1587/elex.11.20140496 +F. Liu,Estimation for fractal signals based on dyadic wavelet.,2005,2,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee2.html#LiuT05,https://doi.org/10.1587/elex.2.54 +Farzan Jazayeri,A novel ultra low-energy sub-threshold inverter based on nanoscale Field Effect Diode.,2010,7,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee7.html#JazayeriSFR10,https://doi.org/10.1587/elex.7.906 +Youngjun Kim,Simultaneous classical communication and quantum key distribution based on Gaussian modulated coherent states.,2016,13,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee13.html#KimK16a,https://doi.org/10.1587/elex.13.20160680 +Lili Wang,A widely tunable erbium-doped fiber laser using closed loop control.,2014,11,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee11.html#WangXZ14,https://doi.org/10.1587/elex.11.20140517 +Hyochang Kim,Duty-cycle and phase spacing error correction circuit for high-speed serial link.,2017,14,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee14.html#KimKY17,https://doi.org/10.1587/elex.14.20170497 +Mi Zhou,Flexible block management with data migration wear-leveling algorithm for phase change memory.,2014,11,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee11.html#ZhouCLWCLWS14,https://doi.org/10.1587/elex.11.20140924 +Jong Kang Park,A soft error mitigation technique for constrained gate-level designs.,2008,5,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee5.html#ParkK08,https://doi.org/10.1587/elex.5.698 +Ehsan Kargaran,A new gm-boosting current reuse CMOS folded cascode LNA.,2013,10,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee10.html#KargaranMMN13,https://doi.org/10.1587/elex.10.20130264 +Jianmin Zeng,A multi-core-based heterogeneous parallel turbo decoder.,2017,14,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee14.html#ZengWZCXHZY17,https://doi.org/10.1587/elex.14.20170768 +Wuhuang Huang,Novel sifting-based solution for multiple-converter synchronization of ultra-fast TIADC systems.,2015,12,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee12.html#HuangWYYJP15,https://doi.org/10.1587/elex.12.20150585 +Hwanyong Lee,Accelerating OpenVG with multimedia processors on mobile phones.,2010,7,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee7.html#LeeBLYPVVT10,https://doi.org/10.1587/elex.7.1493 +Yi Song,Design of triple-band bandpass filter using quad-mode stepped impedance resonator (SIR) with shorted stub.,2018,15,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee15.html#SongXLM18,https://doi.org/10.1587/elex.15.20171219 +Gaizhen Yan,ArR-DTM: A routing-based DTM for 3D NoCs by adaptive degree regulation.,2017,14,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee14.html#YanWGXZ17,https://doi.org/10.1587/elex.14.20170203 +Harith Ahmad,An enhanced S-band brillouin/erbium fiber laser with an additional EDFA in sub-loop.,2005,2,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee2.html#AhmadSH05,https://doi.org/10.1587/elex.2.321 +Yoseop Lim,A method for the fast diagnosis of multiple defects using an efficient candidate selection algorithm.,2012,9,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee9.html#LimPK12,https://doi.org/10.1587/elex.9.834 +Hajime Sasaki,Characteristics of SiN/GaAs interface under exposure to high-temperature and high-humidity conditions measured by photoreflectance spectroscopy.,2012,9,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee9.html#SasakiHKTF12,https://doi.org/10.1587/elex.9.1592 +Weiru Gu,Switch-back based on charge equalization switching technique for SAR ADC.,2015,12,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee12.html#GuYR15,https://doi.org/10.1587/elex.12.20150036 +Hiroshi Ito,Over-10-dBm output uni-traveling-carrier photodiode module integrating a power amplifier for wireless transmissions in the 125-GHz band.,2005,2,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee2.html#ItoFKHTMTSNI05,https://doi.org/10.1587/elex.2.446 +Dae-Hee Han,Impact of Si surface roughness on MOSFET characteristics with ultrathin HfON gate insulator formed by ECR plasma sputtering.,2013,10,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee10.html#HanHO13,https://doi.org/10.1587/elex.10.20130651 +Byung-Soo Kim,Prostate cancer classification processor using DNA computing technique.,2009,6,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee6.html#KimSWLC09,https://doi.org/10.1587/elex.6.581 +Tomoyuki Yokogawa,Bounded model checking of Time Petri Nets using SAT solver.,2015,12,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee12.html#YokogawaKMASA15,https://doi.org/10.1587/elex.11.20141112 +Yun Won Chung,Reducing signaling load for power-efficient integrated WLAN/cellular networks.,2010,7,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee7.html#Chung10,https://doi.org/10.1587/elex.7.652 +Shu-Wen Chen,A Laguerre-based FDTD method for wave propagation in 2-D anisotropic dispersive materials.,2016,13,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee13.html#ChenLDSM16,https://doi.org/10.1587/elex.12.20151003 +Ifong Wu,Calibration of electric field probes in GTEM cell using reference antenna method.,2009,6,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee6.html#WuIGM09a,https://doi.org/10.1587/elex.6.1469 +Sulaiman Wadi Harun,Bismuth erbium-doped fiber based multi-wavelength laser assisted by four-wave mixing process.,2009,6,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee6.html#HarunSA09,https://doi.org/10.1587/elex.6.40 +Lubing Sun,Higher mode SIW excitation technology and its array application.,2017,14,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee14.html#SunQCC17,https://doi.org/10.1587/elex.14.20170873 +Tetsuya Kawanishi,Optical filter characterization by using optical frequency sweep technique with a single sideband modulator.,2006,3,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee3.html#KawanishiSI06,https://doi.org/10.1587/elex.3.34 +Jun Yuan,A common-mode BIST technique for fully-differential sample-and-hold circuits.,2012,9,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee9.html#YuanT12,https://doi.org/10.1587/elex.9.1128 +J. Y. Kim,Arbitrary scaling of images using an M-channel DFT filter bank with optimized adaptive interpolation kernels.,2007,4,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee4.html#KimN07a,https://doi.org/10.1587/elex.4.665 +Amir Sabbagh Molahosseini,A new five-moduli set for efficient hardware implementation of the reverse converter.,2009,6,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee6.html#MolahosseiniDN09,https://doi.org/10.1587/elex.6.1006 +Yanwei Xiong,Parallel multi-rate compressed sampling with a sub-Nyquist sampling rate.,2014,11,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee11.html#XiongZZ14,https://doi.org/10.1587/elex.11.20140330 +Je-Hoon Lee,Design of a high performance self-timed ARM9 processor.,2008,5,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee5.html#LeeC08,https://doi.org/10.1587/elex.5.87 +Dinh Trong Quang,A novel uniform asymptotic solution for transmitted wave through a plane dielectric interface.,2011,8,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee8.html#QuangGKI11a,https://doi.org/10.1587/elex.8.1989 +Feng Han,An ultra-long FFT architecture implemented in a reconfigurable application specified processor.,2016,13,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee13.html#Han0WFPZHL16,https://doi.org/10.1587/elex.13.20160504 +Yuanyuan Hu,Image hashing framework for tampering localization in distorted images.,2010,7,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee7.html#HuLN10,https://doi.org/10.1587/elex.7.1679 +Myung Chul Park,An IR-UWB RF transceiver for high-rate WBAN applications.,2015,12,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee12.html#ParkJKOE15,https://doi.org/10.1587/elex.12.20150755 +Moriya Nakamura,Coherence-multiplexing experiment with 10-Gsymbol/s BPSK and QPSK signals using spectrum-sliced ASE.,2009,6,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee6.html#NakamuraKM09b,https://doi.org/10.1587/elex.6.1345 +Lei Li,An improved architecture for designing modulo (2n-2p+1) multipliers.,2012,9,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee9.html#LiZZ12,https://doi.org/10.1587/elex.9.1141 +Takayuki Ohba,Review of wafer-level three-dimensional integration (3DI) using bumpless interconnects for tera-scale generation.,2015,12,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee12.html#OhbaKMMFK15,https://doi.org/10.1587/elex.12.20152002 +Mohsen Hayati,Compact microstrip stepped-impedance lowpass filter with wide stopband using SICMRC.,2012,9,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee9.html#HayatiA12,https://doi.org/10.1587/elex.9.1742 +William Millan,Cryptanalysis of the cellular authentication and voice encryption algorithm.,2004,1,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee1.html#MillanG04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.453 +Jung-Chieh Chen,A novel cognitive radio spectrum assignment scheme for maximizing system utilization.,2011,8,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee8.html#Chen11,https://doi.org/10.1587/elex.8.472 +Emad Tammam,Design of a compact size UWB planar antenna with WiMAX band rejection.,2012,9,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee9.html#TammamYYARKY12,https://doi.org/10.1587/elex.9.1304 +Chiung-Feng Tai,A compact band selection filter in 0.18-µ*m CMOS technology.,2012,9,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee9.html#TaiC12a,https://doi.org/10.1587/elex.9.1166 +Linglong Meng,A novel wideband planar quasi-yagi antenna loading with parasitical patches and multiple reflectors.,2017,14,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee14.html#MengWJGL17,https://doi.org/10.1587/elex.14.20170681 +Xiuyu Zhang,1.3 andmicro*m lasing of circular defect cavity photonic crystal laser with an AlOx cladding layer.,2017,14,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee14.html#ZhangHKSHXMKMK17,https://doi.org/10.1587/elex.14.20170664 +Xingwei Liu,GCSVR: A new traffic forecasting method for wireless network.,2009,6,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee6.html#LiuKZ09,https://doi.org/10.1587/elex.6.1387 +Izhal Abdul Halin,Selection of amplifier for optimized charge transfer in active pixel CMOS time of flight (TOF) image sensors.,2011,8,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee8.html#HalinDAISK11,https://doi.org/10.1587/elex.8.1913 +Qian Wang,Methods to speed up read operation in a 64 Mbit phase change memory chip.,2015,12,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee12.html#WangLCCWFHLS15,https://doi.org/10.1587/elex.12.20150792 +Kiichi Hamamoto,First demonstration of novel active multi-mode interferometer (MMI) LDs integrated with 1st order-mode permitted waveguides.,2005,2,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee2.html#HamamotoMOSNSS05,https://doi.org/10.1587/elex.2.399 +Li Zhang,An improved adaptive control method for active balancing control of rotor with time-delay.,2017,14,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee14.html#ZhangLX17,https://doi.org/10.1587/elex.14.20171069 +Ke Li,A novel UHF radar system design for river dynamics monitoring.,2015,12,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee12.html#LiWXTYL15,https://doi.org/10.1587/elex.12.20141074 +Rongke Liu,Novel First-one detector architecture applied in VLC.,2009,6,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee6.html#LiuLY09,https://doi.org/10.1587/elex.6.403 +Koki Igawa,Multi-scenario high-level synthesis for dynamic delay variation and its evaluation on FPGA platforms.,2016,13,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee13.html#IgawaYT16,https://doi.org/10.1587/elex.13.20160641 +Ali Mirvakili,A linear current-reused LNA for 3.1-10.6GHz UWB receivers.,2008,5,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee5.html#MirvakiliYR08,https://doi.org/10.1587/elex.5.908 +Stijn Reekmans,A delay-based complex double-sampled resonator for use in ƒ*s/4 quadrature bandpass and#931*Γ6* modulators.,2007,4,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee4.html#ReekmansRW07,https://doi.org/10.1587/elex.4.192 +Kyung Ki Kim,Ultra-low voltage high-speed Schmitt trigger circuit in SOI MOSFET technology.,2007,4,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee4.html#KimK07,https://doi.org/10.1587/elex.4.606 +Chanyong Jeong,Two-stage digital I/Q demodulator employing a reconfigurable 16-phase down-mixing technique.,2010,7,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee7.html#JeongMK10,https://doi.org/10.1587/elex.7.177 +Yang-Han Lee,Carrier frequency drift estimation for high mobility hierarchical-modulated MIMO-OFDM systems.,2011,8,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee8.html#LeeLJLWTCCY11,https://doi.org/10.1587/elex.8.1823 +Hao Liu,Compact UWB antenna with dual band-notches for WLAN and WiMAX applications.,2013,10,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee10.html#LiuXWL13,https://doi.org/10.1587/elex.10.20130558 +Diwakar Krishnamoorthy,Low voltage Delta-Sigma Modulator with full range and unidirectional output.,2015,12,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee12.html#KrishnamoorthyP15,https://doi.org/10.1587/elex.12.20141067 +Jing-Wein Wang,T-eigenfaces selection for false face reduction.,2008,5,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee5.html#Wang08a,https://doi.org/10.1587/elex.5.718 +Jihoon Choi,Time synchronization for M-WiMAX femtocells using IEEE 802.11 based wireless backhaul.,2011,8,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee8.html#ChoiYO11,https://doi.org/10.1587/elex.8.795 +Misagh Tavanpour,Chain-Mapping for mesh based Network-on-Chip architecture.,2009,6,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee6.html#TavanpourKJ09,https://doi.org/10.1587/elex.6.1535 +Ifong Wu,Basic analysis of large quasi-TEM waveguides using dipole frequency selective surface for EMC testing.,2011,8,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee8.html#WuIGM11,https://doi.org/10.1587/elex.8.325 +Yasser Mafinejad,Pi-shaped MEMS architecture for lowering actuation voltage of RF switching.,2009,6,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee6.html#MafinejadKMG09,https://doi.org/10.1587/elex.6.1483 +Dahae Chong,A two-stage acquisition scheme based on multiple correlator outputs for UWB signals.,2011,8,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee8.html#ChongLSY11,https://doi.org/10.1587/elex.8.436 +Yong Ye,Erratum: CAM-based retention-aware DRAM (CRA-DRAM) for refresh power reduction [IEICE Electronics Express Vol. 14 (2017) No. 10 pp. 20170053].,2017,14,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee14.html#YeDJLSC17a,https://doi.org/10.1587/elex.14.20178001 +Xin Xu,Compact Wilkinson power divider with modified T-types impedance transformers for harmonics suppression.,2016,13,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee13.html#XuTC16,https://doi.org/10.1587/elex.13.20160171 +Chou-Chen Wang,A fast encoding algorithm for vector quantization.,2005,2,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee2.html#WangT05,https://doi.org/10.1587/elex.2.458 +Sung Hyun You,Optimal horizon size for unbiased finite memory digital phase-locked loop.,2017,14,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee14.html#YouPK17,https://doi.org/10.1587/elex.14.20161184 +Hyunjin Yoo,A 2.3GHz linearized CMOS power amplifier with AM-AM and AM-PM distortion correction.,2010,7,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee7.html#YooBCE10,https://doi.org/10.1587/elex.7.1602 +Hyuek Jae Lee,All-optical NRZ-to-RZ reconversion from the red-chirped NRZ signal generated by the RZ-to-NRZ converter using an SOA-loop-mirror.,2014,11,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee11.html#Lee14,https://doi.org/10.1587/elex.11.20130972 +Seiichi Takamatsu,Fabrication and demonstration of an electrochromic voxel array for a volume display prototype.,2010,7,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee7.html#TakamatsuMBIMS10,https://doi.org/10.1587/elex.7.920 +Sichen Yu,A digital intensive clock recovery circuit for HF-Band active RFID tag.,2014,11,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee11.html#YuSLHTYM14,https://doi.org/10.1587/elex.11.20140138 +Shuhei Fukunaga,Switching surge voltage suppression in SiC half-bridge module with double side conducting ceramic substrate and snubber capacitor.,2017,14,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee14.html#FukunagaF17,https://doi.org/10.1587/elex.14.20170177 +Tadashi Kawai,Design methods for broadband 3dB branch-line and rat-race hybrids.,2013,10,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee10.html#KawaiOE13,https://doi.org/10.1587/elex.10.20132004 +Yaohua Wang,A cost conscious performance model for media processors.,2012,9,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee9.html#WangCZWCLN12,https://doi.org/10.1587/elex.9.978 +Fatemeh Kashfi,15GHz low-voltage-swing carry-lookahead adder.,2007,4,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee4.html#KashfiAFS07,https://doi.org/10.1587/elex.4.696 +Mehdi Abioghli,Dual-band tow layered printed antenna for 2.4/5GHz WLAN operation in the laptop computer.,2011,8,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee8.html#Abioghli11,https://doi.org/10.1587/elex.8.1519 +Qiang Chen 0001,Dual-antenna system composed of patch array and open-ended waveguide for eliminating blindness of wireless communications.,2010,7,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee7.html#ChenYQS10,https://doi.org/10.1587/elex.7.647 +Raj Senani,Explicit-current-output sinusoidal oscillators employing only a single current-feedback op-amp.,2005,2,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee2.html#SenaniS05,https://doi.org/10.1587/elex.2.14 +Mitsuru Takenaka,All-optical packet switching and label buffering by MMI-BLD optical flip-flop.,2006,3,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee3.html#TakenakaTN06,https://doi.org/10.1587/elex.3.368 +Tsuyoshi Funaki,High temperature switching operation of a power diamond Schottky barrier diode.,2012,9,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee9.html#FunakiHUS12,https://doi.org/10.1587/elex.9.1835 +Pingjuan Zhang,Miniaturized lowpass filter with ultra-wide stopband using dual-plane defected structures.,2015,12,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee12.html#ZhangLW15,https://doi.org/10.1587/elex.11.20141010 +Yongwoon Cho,An efficient scheduling algorithm for NCQ within SSDs.,2015,12,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee12.html#ChoK15,https://doi.org/10.1587/elex.12.20150066 +Toshihiko Hirooka,Comparison of 40GHz optical demultiplexers using SMZ switch and EA modulator in 160Gbit/s-500km OTDM transmission.,2006,3,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee3.html#HirookaKON06,https://doi.org/10.1587/elex.3.397 +Youngseok Lee,Implementation of the Chien search algorithm on a baseband processor.,2012,9,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee9.html#LeeLJY12,https://doi.org/10.1587/elex.9.1637 +Ivan Ku,Robust iterative multiuser receiver for coded CDMA systems in non-Gaussian channels.,2007,4,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee4.html#KuLC07,https://doi.org/10.1587/elex.4.380 +Satoshi Mikumo,A band-pass filter based on the optically controllable S22 parameter of a MESFET.,2005,2,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee2.html#MikumoY05,https://doi.org/10.1587/elex.2.86 +Yi-Ching Lee,A low-power CMOS LNA for ultra-wideband wireless receivers.,2007,4,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee4.html#LeeT07,https://doi.org/10.1587/elex.4.294 +Naoteru Shigekawa,Velocity dispersion in GaN-based surface acoustic wave filters on (0001) sapphire substrates.,2005,2,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee2.html#ShigekawaNYSH05,https://doi.org/10.1587/elex.2.495 +Tan Saw Chin,Ant-based contention resolution in slotted WDM optical packet switched networks.,2006,3,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee3.html#ChinAE06,https://doi.org/10.1587/elex.3.540 +Eu-Suk Shim,Low-overhead sampling clock frequency synchronization for OFDM-based DRM systems.,2010,7,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee7.html#ShimY10,https://doi.org/10.1587/elex.7.1 +Hongjin Zhu,Face detection based on AdaBoost algorithm with Local AutoCorrelation image.,2010,7,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee7.html#ZhuK10,https://doi.org/10.1587/elex.7.1125 +Qi Zhong,Wideband attenuators using distributed resistors for attenuation up to 30 dB.,2016,13,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee13.html#ZhongL16,https://doi.org/10.1587/elex.13.20160321 +Byounghyun Yoo,Protruded displacement mapping for image-based urban representation.,2011,8,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee8.html#Yoo11,https://doi.org/10.1587/elex.8.1022 +Hyohyun Nam,A 1-13 GHz CMOS low-noise amplifier using compact transformer-based inter-stage networks.,2018,15,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee15.html#NamPP18,https://doi.org/10.1587/elex.14.20171019 +Kenichi Ohhata,Feedthrough reduction technique for track-and-hold circuit with body-bias control circuit.,2008,5,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee5.html#OhhataSY08,https://doi.org/10.1587/elex.5.478 +Giovanni Angiulli,Accurate modelling of lossy SIW resonators using a neural network residual kriging approach.,2017,14,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee14.html#AngiulliCSVM17,https://doi.org/10.1587/elex.14.20170073 +Xiangyu Liu,An efficient blind calibration method for nonlinearity mis-matches in M-channel TIADCs.,2017,14,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee14.html#LiuXLW17,https://doi.org/10.1587/elex.14.20170468 +Man-Young Jeon,Analytical investigation of phase shift impulse response of three existing phase shift models using a simple planar oscillator.,2014,11,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee11.html#Jeon14,https://doi.org/10.1587/elex.11.20140293 +Changqing Xu,An efficient energy and thermal-aware mapping for regular network-on-chip.,2017,14,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee14.html#XuLZY17,https://doi.org/10.1587/elex.14.20170769 +Jing-Wein Wang,Face localization based on wavelet extrema.,2008,5,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee5.html#Wang08,https://doi.org/10.1587/elex.5.516 +Kazunari Tokuhira,A Cesium optical atomic clock with high optical frequency stability.,2012,9,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee9.html#TokuhiraSYN12,https://doi.org/10.1587/elex.9.1496 +Joonho Kong,A novel technique for technology-scalable STT-RAM based L1 instruction cache.,2016,13,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee13.html#Kong16,https://doi.org/10.1587/elex.13.20160220 +Mohsen Hayati,Compact dual-band bandpass filter with ultra wide stopband using open-loop resonator loaded by T-shape and open stubs.,2011,8,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee8.html#HayatiN11,https://doi.org/10.1587/elex.8.1168 +Takashi Kawanoue,Investigation of Cu ion drift through CVD TiSiN into SiO2 under bias temperature stress conditions.,2005,2,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee2.html#KawanoueOHY05,https://doi.org/10.1587/elex.2.254 +Juan Mon,Modulation technique to reduce EMI in power multiconverters.,2009,6,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee6.html#MonGGBFGB09,https://doi.org/10.1587/elex.6.511 +Sang-yeop Lee,Injection-locked fractional frequency multiplier with automatic reference pulse-selection technique.,2012,9,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee9.html#LeeITIM12,https://doi.org/10.1587/elex.9.1624 +Jesus E. Molinar-Solis,Low Voltage Lazzaro's WTA with enhanced loop gain.,2012,9,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee9.html#Molinar-SolisGMERDRV12,https://doi.org/10.1587/elex.9.648 +Nobuyuki Otake,High-Pulsed-Power (49W) Vertical-Cavity Surface-Emitting Laser with Five Quantum Wells by Uniform Current Injection into Large Emitting Area.,2011,8,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee8.html#OtakeKYT11,https://doi.org/10.1587/elex.8.109 +Xiaolin Yang,A 0.9 V 2.72 andmicro*W 200 kS/s SAR ADC with ladder-based time-domain comparator.,2017,14,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee14.html#YangZTDZDWZ17,https://doi.org/10.1587/elex.14.20170003 +Boon Chin Yeo,Extended fuzzy background modeling for moving vehicle detection using infrared vision.,2011,8,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee8.html#YeoLLW11,https://doi.org/10.1587/elex.8.340 +Tomoyuki Arai,A self-correcting quadrature voltage controlled oscillator.,2014,11,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee11.html#AraiH14,https://doi.org/10.1587/elex.11.20140684 +Toru Kawano,High-frequency uniform asymptotic solution for reflected and scattered fields over half-space metamaterial.,2014,11,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee11.html#KawanoI14,https://doi.org/10.1587/elex.11.20140284 +Bogdan J. Falkowski,Calculation of best fixed polarity Reed-Muller transform over GF(5).,2004,1,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee1.html#FalkowskiLR04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.92 +Long Cheng 0002,Mobile location estimation scheme in NLOS environment.,2011,8,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee8.html#ChengWZC11,https://doi.org/10.1587/elex.8.1829 +Sun-Wook Choi,A FPGA-based parallel semi-naive Bayes classifier implementation.,2013,10,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee10.html#ChoiL13,https://doi.org/10.1587/elex.10.20130673 +Zhi Zhang,A single stage soft-switched AC/DC power factor corrected converter with galvanic isolation.,2017,14,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee14.html#ZhangLW17,https://doi.org/10.1587/elex.14.20170144 +Yun-Ching Tang,Area-efficient high-throughput parallel scramblers using generalized algorithms.,2013,10,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee10.html#TangCL13,https://doi.org/10.1587/elex.10.20130701 +In-Gul Jang,A memory size reduction method of pipelined IFFT processor for OFDM systems.,2011,8,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee8.html#JangC11,https://doi.org/10.1587/elex.8.1627 +Yong-Seo Koo,The design of high holding voltage SCR for whole-chip ESD protection.,2008,5,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee5.html#KooLKK08,https://doi.org/10.1587/elex.5.624 +Junyan Qian,An integer programming method for constructing tightly coupled VLSI subarrays.,2016,13,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee13.html#QianZZGC16,https://doi.org/10.1587/elex.13.20160359 +Rabindranath Nandi,Single-CFA first-order allpass filter.,2016,13,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee13.html#NandiMP16,https://doi.org/10.1587/elex.13.20151039 +Ung Hee Park,Wideband power divider using a coaxial cable 2: 1 transmission line transformer.,2010,7,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee7.html#Park10,https://doi.org/10.1587/elex.7.534 +Md. Rakib Uddin,All-optical wavelength conversion with multicasting at 4*10Gbits/s up and down using a Fabry-Perot laser diode.,2009,6,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee6.html#UddinCW09a,https://doi.org/10.1587/elex.6.566 +Mina Amirmazlaghani,Memory cell using Modified Field Effect Diode.,2009,6,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee6.html#AmirmazlaghaniR09,https://doi.org/10.1587/elex.6.1582 +Yexi Song,An on-chip antenna integrated with a transceiver in 0.18-µ*m CMOS technology.,2017,14,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee14.html#SongWSYZZBTK17,https://doi.org/10.1587/elex.14.20170836 +Payman Loloeyan,An automatic method for Instruction-set extension generation using the center of gravity concept.,2008,5,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee5.html#LoloeyanA08,https://doi.org/10.1587/elex.5.543 +Nozomi Haga,A note on signal paths in intrabody communication channels.,2015,12,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee12.html#HagaMSK15,https://doi.org/10.1587/elex.12.20150402 +José Luis Rosselló,A simple CMOS chaotic integrated circuit.,2008,5,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee5.html#RosselloCPBM08,https://doi.org/10.1587/elex.5.1042 +Hong-Sik Kim,A high performance network-on-chip scheme using lossless data compression.,2010,7,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee7.html#KimJKAPK10,https://doi.org/10.1587/elex.7.791 +Keiji Goto,Asymptotic solutions for scattered field by a coated conducting cylinder.,2013,10,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee10.html#GotoL13a,https://doi.org/10.1587/elex.10.20130139 +Jeahoon Cho,Simple transmission line model suitable for the electromagnetic pulse coupling analysis of twisted-wire pairs above ground.,2016,13,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee13.html#ChoKJ16,https://doi.org/10.1587/elex.13.20160149 +Ali Ghaffari,Positive virtual based geographic routing for wireless sensor networks.,2012,9,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee9.html#GhaffariB12,https://doi.org/10.1587/elex.9.185 +Majid Zarghami,Low actuation-voltage shift in MEMS switch using ramp dual-pulse.,2012,9,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee9.html#ZarghamiMKM12,https://doi.org/10.1587/elex.9.1062 +Shuai Jiang,Synthesis of multi-band bandpass filters using semi-hidden multi-mode coupling elements.,2017,14,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee14.html#JiangLCZDT17,https://doi.org/10.1587/elex.14.20161259 +Jung-Hoon Kim,Research on a guideline of stirrer installation in reverberation chamber.,2014,11,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee11.html#KimJY14,https://doi.org/10.1587/elex.11.20140436 +Yu Guo,A novel algorithm based on DFB tunable laser array for demodulation of FBG sensors.,2017,14,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee14.html#GuoYWN17,https://doi.org/10.1587/elex.14.20170955 +K. J. Kim,Design of a computationally efficient dc-notch FIR filter.,2007,4,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee4.html#KimN07,https://doi.org/10.1587/elex.4.631 +Tetsuya Kawanishi,Integrated reciprocating optical modulator using phase-shifted fiber Bragg grating.,2005,2,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee2.html#KawanishiOYSSI05,https://doi.org/10.1587/elex.2.49 +Wei Liu 0013,A novel QPP interleaver for parallel turbo decoder.,2013,10,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee10.html#LiuCCWLZN13,https://doi.org/10.1587/elex.10.20120795 +Haigang Wu,Fully-integrated linear CMOS power amplifier with proportional series combining transformer for S-Band applications.,2018,15,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee15.html#WuLWHWLL18,https://doi.org/10.1587/elex.14.20171100 +Boo Kang Kim,Experimental study on chaotic behaviors of a Chua's circuit based on variable memristor.,2015,12,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee12.html#KimNKS15,https://doi.org/10.1587/elex.12.20150457 +Keisuke Sorimoto,Phase error compensation for multilayered AWG in LCOS-based WSS.,2011,8,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee8.html#SorimotoKKMHITU11,https://doi.org/10.1587/elex.8.2054 +Farshad Tajeripour,A novel staff removal method for printed music image.,2012,9,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee9.html#TajeripourS12,https://doi.org/10.1587/elex.9.609 +Eunchong Lee,An implementation of intra prediction with transform for H.264/AVC.,2013,10,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee10.html#LeeYYH13,https://doi.org/10.1587/elex.10.20130510 +Kangyeob Park,A 1-13 Gbps tunable optical receiver with supply voltage scaling.,2014,11,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee11.html#ParkKJO14,https://doi.org/10.1587/elex.11.20140733 +Behzad Helli,A writer identification method based on XGabor and LCS.,2009,6,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee6.html#HelliM09,https://doi.org/10.1587/elex.6.623 +Arjulie John Berena,An experimental analysis of packet train probe for a stable RTT measurement.,2007,4,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee4.html#BerenaK07,https://doi.org/10.1587/elex.4.768 +Chang Lu,A novel compact leaky wave antenna incorporating the dual-periodical loading.,2016,13,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee13.html#LuWT16,https://doi.org/10.1587/elex.13.20161058 +Bei Yu,A mixed sample-time error calibration technique in time-interleaved ADCs.,2013,10,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee10.html#YuCYR13,https://doi.org/10.1587/elex.10.20130882 +Hoon Kim,Capacitance deviation-to-time interval converter using current-tunable Schmitt triggers.,2011,8,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee8.html#KimPCK11,https://doi.org/10.1587/elex.8.155 +Tsuyoshi Funaki,Evaluation of capacitance-voltage characteristics for high voltage SiC-JFET.,2007,4,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee4.html#FunakiKH07,https://doi.org/10.1587/elex.4.517 +Hirotake Kajii,Organic light-emitting and photodetector devices for flexible optical link and sensor devices: Fundamentals and future prospects in printed optoelectronic devices for high-speed modulation.,2017,14,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee14.html#Kajii17,https://doi.org/10.1587/elex.14.20172002 +Nam Thang Ta,One-step fractional motion estimation in H.264/AVC based on early predicted candidate.,2010,7,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee7.html#TaC10,https://doi.org/10.1587/elex.7.982 +Ehsan Kargaran,A 5.7GHz low noise figure ultra high gain CMOS LNA with inter stage technique.,2010,7,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee7.html#KargaranKGN10,https://doi.org/10.1587/elex.7.1686 +Shijian Guo,Design of DPX system for real-time spectrum analysis and signal detection.,2013,10,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee10.html#GuoSSZC13,https://doi.org/10.1587/elex.10.20130657 +Zheng Lu,Study of hybrid pre-distortion compensation approach for radar transmitter in Ku-band with high frequency modulation rate - modeling and experiment.,2015,12,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee12.html#LuLCF15,https://doi.org/10.1587/elex.12.20150446 +Ning Tai,The design of a novel coherent noise jammer against LFM radar.,2016,13,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee13.html#TaiCWY16,https://doi.org/10.1587/elex.13.20160924 +Yaohua Wang,B-SCT: Improve SpMV processing on SIMD architectures.,2015,12,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee12.html#WangWZ15,https://doi.org/10.1587/elex.12.20150170 +Toshifumi Moriyama,Compensation of phase error caused by ground height among polarimetric channels in Pi-SAR-X2.,2014,11,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee11.html#MoriyamaS14,https://doi.org/10.1587/elex.11.20140839 +Chih-Min Lin,Buck-current-fed zero current switching converter for high voltage coupled cavity.,2012,9,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee9.html#LinL12,https://doi.org/10.1587/elex.9.1362 +Chunghsin Liao,Robust segmentation of road traffic signs using adaptive thresholds.,2005,2,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee2.html#LiaoZKH05,https://doi.org/10.1587/elex.2.423 +Bum-Hee Choi,A burst-mode clock and data recovery circuit with two symmetric quadrature VCO's.,2016,13,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee13.html#ChoiSAK16,https://doi.org/10.1587/elex.13.20161086 +Yoshihisa Fujisaki,Overview of emerging semiconductor non-volatile memories.,2012,9,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee9.html#Fujisaki12,https://doi.org/10.1587/elex.9.908 +Mostafa Yargholi,A highly linear gilbert cell OTA with multiple gated transistors for non-coherent UWB receivers.,2009,6,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee6.html#YargholiN09,https://doi.org/10.1587/elex.6.756 +Hsiao-Yun Li,Broadband analog phase shifter based on multi-stage all-pass networks.,2013,10,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee10.html#LiCF13,https://doi.org/10.1587/elex.10.20130491 +Liu Jing,Noise driven compressed sensing method for space time signal processing.,2013,10,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee10.html#Jing13,https://doi.org/10.1587/elex.10.20120959 +Ki-Chai Kim,Penetration electric field characteristics of dual plates with narrow slots for the incident plane wave.,2014,11,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee11.html#KimC14,https://doi.org/10.1587/elex.11.20141059 +Ajmal Farooq,An integrated inverted and non-inverted buck converter.,2016,13,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee13.html#FarooqSC16,https://doi.org/10.1587/elex.13.20151082 +Hongyi Wang,A physical model of electron trapping/detrapping in electrically stressed oxide.,2017,14,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee14.html#WangLZXZW17,https://doi.org/10.1587/elex.14.20170565 +Mingyu Wang,A software-hardware cooperative method for multi-projector seamless tiled display system.,2015,12,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee12.html#WangHWLS15,https://doi.org/10.1587/elex.12.20141104 +Hiroyuki Uchiyama,1.3-mu m InGaAlAs-BH laser with Cl2/N2 ECR plasma etched mesas.,2004,1,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee1.html#UchiyamaSSTTT04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.193 +Kyung Ki Kim,Power switch implementation for low voltage digital circuits.,2013,10,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee10.html#Kim13,https://doi.org/10.1587/elex.10.20120757 +Satoshi Sugaya,A study on direct-view type super large-screen spherical display.,2005,2,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee2.html#SugayaN05,https://doi.org/10.1587/elex.2.411 +Minsung Jeon,Fabrication of metal nanoparticles as catalyst at low temperature and growth of silicon nanostructures.,2008,5,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee5.html#JeonTMUAK08,https://doi.org/10.1587/elex.5.586 +Kyung Won Kim,A data flow optimization method for high speed MAC processing in an IEEE 802.16m modem.,2011,8,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee8.html#KimYO11,https://doi.org/10.1587/elex.8.530 +Yuntao Liu,A low power consumption inverter-based and#931*Γ6* interface for capacitive accelerometer.,2018,15,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee15.html#LiuXF18,https://doi.org/10.1587/elex.14.20171152 +Akiro Shimada,Power division ratio on multi-hop WPT considering coupling of the receiver with two couplers.,2014,11,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee11.html#ShimadaOMUO14,https://doi.org/10.1587/elex.11.20140034 +Hideki Fukano,Multimode-interference-structure optical-fiber temperature sensor with high sensitivity.,2013,10,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee10.html#FukanoKT13,https://doi.org/10.1587/elex.10.20130812 +Jordi Espina,Space Vector Modulation strategy to reduce the Common Mode perturbations in Matrix Converters.,2010,7,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee7.html#EspinaOAB10,https://doi.org/10.1587/elex.7.281 +V. R. Venkatasubramani,An improved quad Itoh-Tsujii algorithm for FPGAs.,2013,10,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee10.html#VenkatasubramaniMR13,https://doi.org/10.1587/elex.10.20130612 +S. M. Shamsul Alam,Response of transport triggered architectures for high-speed processor design.,2013,10,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee10.html#AlamC13,https://doi.org/10.1587/elex.10.20120878 +Kyung-Ju Cho,Efficient unsigned squarer design techniques.,2012,9,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee9.html#Cho12,https://doi.org/10.1587/elex.9.422 +Yuhei Ishizaka,A photonic-plasmonic mode converter using mode-coupling-based polarization rotation for metal-inserted silicon platform.,2017,14,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee14.html#IshizakaNFS17,https://doi.org/10.1587/elex.13.20160989 +Atsushi Kanno,Phase noise analysis of an optical frequency comb using single side-band suppressed carrier modulation in an amplified optical fiber loop.,2012,9,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee9.html#KannoK12,https://doi.org/10.1587/elex.9.1473 +Hongxing Xia,A flexible cooperative spectrum sensing scheme for cognitive radio networks.,2011,8,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee8.html#XiaZX11,https://doi.org/10.1587/elex.8.542 +Daejin Park,Fast battery charger MCU with adaptive PWM controller using runtime tracking of polarization curve.,2016,13,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee13.html#ParkYKC16,https://doi.org/10.1587/elex.13.20160131 +Xingwei Liu,An improved consumer goods market model-based vertical handoff decision algorithm.,2012,9,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee9.html#LiuYWCBD12,https://doi.org/10.1587/elex.9.234 +Yongsam Moon,TX rise/fall time control for multi-rate serial link.,2009,6,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee6.html#Moon09,https://doi.org/10.1587/elex.6.244 +Dexin Kong,Analysis of the residual error due to mechanical stress in BJT-based CMOS temperature sensors.,2017,14,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee14.html#KongY17a,https://doi.org/10.1587/elex.14.20170318 +In-Gon Lee,Design of X-band reconfigurable frequency selective surface with high isolation.,2016,13,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee13.html#LeeKPCH16,https://doi.org/10.1587/elex.13.20160567 +Yoseop Lim,An accurate diagnosis of transition fault clusters based on single fault simulation.,2012,9,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee9.html#LimPK12a,https://doi.org/10.1587/elex.9.1528 +Chao Zhang,Compact microstrip balanced-to-balanced diplexer using stub-loaded dual-mode resonators.,2018,15,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee15.html#ZhangZL18,https://doi.org/10.1587/elex.15.20170999 +Dong-Ho Choi,A 1.5-5.0 Gb/s clock and data recovery circuit with dual-PFD phase-rotating phase locked loop.,2014,11,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee11.html#ChoiY14,https://doi.org/10.1587/elex.11.20140351 +Yun-Bo Zhang,Combined twist-bend with compact-size and broad bandwidth.,2018,15,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee15.html#ZhangCYL18,https://doi.org/10.1587/elex.14.20171156 +Tomohiro Asano,An offset distribution modification technique of stochastic flash ADC.,2016,13,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee13.html#AsanoHTYJM16,https://doi.org/10.1587/elex.13.20160115 +Andrew Teoh Beng Jin,Analysis on Supervised Neighborhood Preserving Embedding.,2009,6,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee6.html#JinP09,https://doi.org/10.1587/elex.6.1631 +Honorio Martín,Dynamic control of entropy and power consumption in TRNGs for IoT applications.,2018,15,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee15.html#MartinME18,https://doi.org/10.1587/elex.14.20171157 +Peifang Gao,A novel method on pilot selection for sparse channel estimation in OFDM systems.,2015,12,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee12.html#GaoBMC15,https://doi.org/10.1587/elex.12.20150249 +Chan Kyu Kim,Performance of MIMO-OFDM systems combining STC with pre-FFT beamforming.,2011,8,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee8.html#Kim11,https://doi.org/10.1587/elex.8.443 +Samkyu Won,Page overwriting method for performance improvement of NAND flash memories.,2013,10,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee10.html#WonCKCHL13,https://doi.org/10.1587/elex.10.20130039 +Xu Dai-guo,A 10-bit 1.2 GS/s 45 mW time-interleaved SAR ADC with background calibration.,2018,15,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee15.html#Dai-guoPSZKYJJ18,https://doi.org/10.1587/elex.15.20171235 +Hong-Yeol Lim,Versatile stream buffer architecture to exploit the high memory bandwidth of 3-D IC technology.,2013,10,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee10.html#LimP13,https://doi.org/10.1587/elex.10.20120971 +Hideo Arimoto,A wavelength-tunable short-cavity DBR laser with active distributed Bragg reflector.,2005,2,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee2.html#ArimotoSKTSTUAT05,https://doi.org/10.1587/elex.2.170 +Jun Dong,Compact rectangular waveguide to HMSIW transition.,2014,11,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee11.html#DongZYJ14,https://doi.org/10.1587/elex.11.20140316 +Zhao Zhang 0004,A 1.25-to-6.25 GHz -237.2-dB FOM wideband self-biased PLL for multi-rate serial link data transmitter.,2017,14,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee14.html#0004YLFLW17,https://doi.org/10.1587/elex.14.20170422 +Hanyang Xu,Prototyping design of a flexible DSP block with pipeline structure for FPGA.,2016,13,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee13.html#XuWL16,https://doi.org/10.1587/elex.13.20160676 +Xiaohui Bai,A low-distortion and#931*Γ6* capacitive microaccelerometer with self-test circuit.,2015,12,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee12.html#Bai15,https://doi.org/10.1587/elex.12.20150554 +Chaojie Fan,Digital nonlinearity calibration for pipelined ADCs using sampling capacitors splitting.,2014,11,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee11.html#FanLWZ14,https://doi.org/10.1587/elex.11.20140442 +Arash Farkish,Parallelizing the FPGA global routing algorithm on multi-core systems without quality degradation.,2011,8,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee8.html#FarkishJ11,https://doi.org/10.1587/elex.8.2061 +Mohammed S. BenSaleh,Scalable design of microprogrammed digital FIR filter for sensor processing subsystem.,2014,11,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee11.html#BenSalehQAO14,https://doi.org/10.1587/elex.11.20140474 +Hiroyuki Uchiyama,Plasma-Induced Fluorine Damage in P-HEMT Caused by C2F6/CHF3 RIE Plasma.,2004,1,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee1.html#UchiyamaT04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.46 +Jinling Xing,A memristor random circuit breaker model accounting for stimulus thermal accumulation.,2016,13,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee13.html#XingLTLX16,https://doi.org/10.1587/elex.13.20160376 +Je-Kwang Cho,Low-power sigma-delta modulator with half-sample delayed-input feedforward.,2014,11,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee11.html#Cho14,https://doi.org/10.1587/elex.11.20141058 +Peibo Xie,A virtual hierarchical optical mesh based data center network.,2012,9,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee9.html#XieGLWYL12,https://doi.org/10.1587/elex.9.172 +Jongwoo Bae,A decoupled architecture for multi-format decoder.,2008,5,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee5.html#BaeC08,https://doi.org/10.1587/elex.5.705 +Kee-Won Kim,Efficient bit-parallel systolic architecture for multiplication and squaring over GF(2m).,2018,15,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee15.html#KimK18,https://doi.org/10.1587/elex.14.20171195 +Seung-Hun Kim,Hardware implementation of a tessellation accelerator for the OpenVG standard.,2010,7,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee7.html#KimOPR10,https://doi.org/10.1587/elex.7.440 +Mehrdad Maeen,On the design of low power 1-bit full adder cell.,2009,6,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee6.html#MaeenFN09,https://doi.org/10.1587/elex.6.1148 +Tae-Ho Kim,A 10Gb/s adaptive equalizer with ISI level measurement.,2012,9,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee9.html#KimSAK12,https://doi.org/10.1587/elex.9.1384 +Ivan Chee Hong Lai,CMOS on-chip stacked Marchand balun for millimeter-wave applications.,2007,4,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee4.html#LaiIF07,https://doi.org/10.1587/elex.4.48 +Toshiyuki Umeda,A study for the efficiency of transmission energy for different high-frequency communication circuits.,2010,7,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee7.html#UmedaM10,https://doi.org/10.1587/elex.7.552 +Mohsen Hayati,Compact tunable dual-band bandpass filter using open-loop resonator loaded by step impedances cells for multimode WLANs.,2014,11,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee11.html#HayatiN14,https://doi.org/10.1587/elex.11.20120021 +Muhammad Umer Mian,Experimental analysis of out-of-plane Lorentz force actuated magnetic field sensor.,2017,14,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee14.html#MianDKART17,https://doi.org/10.1587/elex.14.20161257 +Dayang A. A. Mat,High-Q SWCPL for CMOS millimeter-wave technology.,2012,9,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee9.html#MatPSKY12,https://doi.org/10.1587/elex.9.1284 +Woon Hong Kim,Low complexity demodulation scheme for IEEE 802.15.4 LR-WPAN systems.,2008,5,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee5.html#KimJLK08,https://doi.org/10.1587/elex.5.490 +Yize Wang,A novel TLP-based method to deliver IEC 61000-4-2 ESD stress.,2017,14,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee14.html#WangWLCZ17,https://doi.org/10.1587/elex.14.20170163 +Jinwoo Jeong,A directional deblocking filter based on intra prediction for H.264/AVC.,2009,6,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee6.html#JeongKKCC09,https://doi.org/10.1587/elex.6.864 +Xiaojun Li 0002,Efficient implementation of FPGA based central pattern generator using distributed arithmetic.,2011,8,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee8.html#LiL11,https://doi.org/10.1587/elex.8.1848 +Chae-Eun Rhee,Reference frame selection in a hardware-based HEVC encoder.,2012,9,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee9.html#RheeL12,https://doi.org/10.1587/elex.9.1695 +Yong Fang,Graphene frequency tripler design using reflector networks.,2018,15,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee15.html#FangDLZZJ18,https://doi.org/10.1587/elex.15.20171190 +Dong Wang,Reduced-error constant correction truncated multiplier.,2014,11,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee11.html#WangCX14a,https://doi.org/10.1587/elex.11.20140481 +Yi-Ru Jeong,Transmission characteristics of a composite made with ground granulated blast furnace slag.,2014,11,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee11.html#JeongHCY14,https://doi.org/10.1587/elex.10.20130855 +Yuko Omagari,Experimental validation of an equivalent mechanical model for understanding power system stability.,2010,7,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee7.html#OmagariF10,https://doi.org/10.1587/elex.7.1578 +Inkyu Hwang,Ultra-wideband CMOS low-noise amplifier with active interferer rejection.,2016,13,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee13.html#HwangK16,https://doi.org/10.1587/elex.13.20160597 +Dong-Hoon Jung,Thermal and solar energy harvesting boost converter with time-multiplexing MPPT algorithm.,2016,13,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee13.html#JungKJ16,https://doi.org/10.1587/elex.13.20160287 +Hiroshi Yamamoto,Millimeter-wave ellipsometry of human skin based on photonics technology.,2010,7,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee7.html#YamamotoIN10,https://doi.org/10.1587/elex.7.964 +Kwansu Shon,A reliable CMOS 16: 1 binary-tree multiplexer applying delay compensation techniques.,2007,4,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee4.html#ShonYK07,https://doi.org/10.1587/elex.4.536 +Leiou Wang,Low power register files by eliminating redundant read.,2014,11,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee11.html#WangWYH14,https://doi.org/10.1587/elex.11.20140774 +Moriya Nakamura,20-Gbit/s QPSK self-homodyne transmission experiment using a multi-wavelength Fabry-Perot laser diode.,2009,6,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee6.html#NakamuraKM09,https://doi.org/10.1587/elex.6.1281 +Hiroki Matsumoto,A proposal of blind equalizer using kurtosis and skewness.,2007,4,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee4.html#MatsumotoTFY07,https://doi.org/10.1587/elex.4.33 +Ki-O Song,Channel estimation technique with SNR measurement by minimum accumulated distance of Viterbi decoder.,2008,5,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee5.html#SongJ08,https://doi.org/10.1587/elex.5.815 +Sang Bae Chon,A bit reduction algorithm for Spectral Band Replication based on human auditory characteristics.,2009,6,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee6.html#ChonPLS09,https://doi.org/10.1587/elex.6.270 +Mohammad Naser-Moghadasi,Spurious-response suppression in microstrip Parallel-Coupled bandpass filters by using Defected Microstrip Structures.,2011,8,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee8.html#Naser-MoghadasiAR11,https://doi.org/10.1587/elex.8.70 +Kihyun Kim,CMOS energy detector based on complementary squarer circuit for non-coherent UWB receiver.,2016,13,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee13.html#KimK16,https://doi.org/10.1587/elex.13.20160608 +Kei Sato,Coupling of a circularly polarized slot pair on a corrugated waveguide of finite length.,2006,3,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee3.html#SatoHSA06,https://doi.org/10.1587/elex.3.424 +Toshihiro Takahashi,High-speed demonstration of low-power 1 k-bit shift-register memories using LR-biasing SFQ circuits.,2016,13,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee13.html#TakahashiNYY16,https://doi.org/10.1587/elex.13.20160074 +Yinghui Tian,Erratum: A memory-based FFT processor using modified signal flow graph with novel conflict-free address schemes [IEICE Electronics Express Vol. 14 (2017) No. 15 pp. 20170660].,2017,14,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee14.html#TianHLDSY17a,https://doi.org/10.1587/elex.14.20178005 +V. Sinivasagam,New pumping scheme for high gain and low noise figure in an erbium-doped fiber amplifier.,2005,2,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee2.html#SinivasagamADT05,https://doi.org/10.1587/elex.2.154 +Ching-Ming Lai,A battery-powered single-stage three-phase high step-up converter topology for micro DC-UPS.,2014,11,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee11.html#Lai14,https://doi.org/10.1587/elex.11.20140852 +YongZhong Zhu,Design of an ultra-miniature substrate integrated waveguide filter.,2017,14,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee14.html#ZhuXLD17,https://doi.org/10.1587/elex.14.20161232 +Shoichi Tanifuji,5GHz band low phase noise Si-CMOS oscillator using FBAR.,2010,7,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee7.html#TanifujiTKTT10,https://doi.org/10.1587/elex.7.165 +Kazuoki Matsugatani,Microstrip patch array antenna coupled with parasitic patches using one dimensional EBG structures.,2009,6,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee6.html#MatsugataniSKH09,https://doi.org/10.1587/elex.6.949 +Minglei Zhang,An energy-efficient SAR ADC using a single-phase clocked dynamic comparator with energy and speed enhanced technique.,2017,14,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee14.html#ZhangF17,https://doi.org/10.1587/elex.14.20170219 +Alireza Mahmoodi,A novel current conveyor with high functionality and optimized ports.,2010,7,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee7.html#MahmoodiA10,https://doi.org/10.1587/elex.7.1480 +Shih-Hsu Huang,An ILP approach to surge current minimization in high-level synthesis.,2009,6,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee6.html#HuangYC09,https://doi.org/10.1587/elex.6.979 +Yuan Du,Logic area reduction using the deep trench isolation technique based on 40 nm embedded PCM process.,2017,14,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee14.html#DuYJLSC17,https://doi.org/10.1587/elex.14.20170628 +Somayeh Gholami,Characterization of electrical parameters of a PtSi/p-Si Schottky barrier detector.,2009,6,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee6.html#GholamiHK09,https://doi.org/10.1587/elex.6.1325 +Hong Zhang,A high-gain differential CMOS LNA for 3.1-10.6GHz ultra-wideband receivers.,2008,5,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee5.html#ZhangCLL08,https://doi.org/10.1587/elex.5.523 +Jin-Gu Lee,A compact HSPICE macromodel of resistive RAM.,2007,4,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee4.html#LeeKLKM07,https://doi.org/10.1587/elex.4.600 +Alireza Borhani,Delay analysis for fair power allocation strategy in Rayleigh fading Broadcast Channel.,2010,7,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee7.html#BorhaniA10,https://doi.org/10.1587/elex.7.936 +Yingbo Zhao,Analysis and evaluation of coupling between adjacent TSVs with considering the discharging path.,2015,12,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee12.html#ZhaoDYZ15,https://doi.org/10.1587/elex.12.20150089 +Katsushige Harima,Determination of gain of double-ridged guide horn antenna by considering phase center.,2010,7,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee7.html#Harima10,https://doi.org/10.1587/elex.7.86 +Mohammad Akbari,Internal multiband PIFA antenna for GPS/DCS/PCS/UMTS/WLAN operation in the mobile device.,2009,6,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee6.html#AkbariGN09,https://doi.org/10.1587/elex.6.1752 +Sanad Bushnaq,All-digital tunable power amplifier consuming 0.03mW/MHz using 0.18µ*m CMOS.,2012,9,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee9.html#BushnaqIA12,https://doi.org/10.1587/elex.9.1057 +Gang Jin,A stable and two-step settling digital controlled AGC loop for GNSS receiver.,2014,11,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee11.html#JinZCYLX14,https://doi.org/10.1587/elex.11.20140738 +Kazuhiro Takahashi,A high fill-factor comb-driven XY-stage with topological layer switch architecture.,2006,3,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee3.html#TakahashiMFT06,https://doi.org/10.1587/elex.3.197 +Peng Li,SEU hardened layout design for SRAM cells based on SEU reversal.,2015,12,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee12.html#LiGZZD15,https://doi.org/10.1587/elex.12.20150804 +Bixia Zhang,Thermal and competition aware mapping for 3D network-on-chip.,2012,9,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee9.html#ZhangGYWW12,https://doi.org/10.1587/elex.9.1510 +Hideaki Furukawa,Control-message exchange of lightpath setup over colored optical packet switching in an optical packet and circuit integrated network.,2010,7,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee7.html#FurukawaMFWH10,https://doi.org/10.1587/elex.7.1079 +Woo-Young Choi,Characterization of surface forces for electro-mechanical memory cells.,2010,7,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee7.html#Choi10,https://doi.org/10.1587/elex.7.827 +K. J. Kim,Improved FastICA algorithm using a sixth-order Newton's method.,2009,6,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee6.html#KimZN09,https://doi.org/10.1587/elex.6.904 +Jingtian Liu,Characterization of the field-dependent permittivity of Ba0.5Sr0.5TiO3 thin films up to 110 GHz.,2016,13,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee13.html#LiuCNZWW16,https://doi.org/10.1587/elex.13.20160713 +Chun Wei Lin,An continuous-time LED dimming technique.,2013,10,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee10.html#LinHT13,https://doi.org/10.1587/elex.10.20130070 +Fang Liu 0010,An analog MPPT controller IC together with its application circuit.,2014,11,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee11.html#LiuHGS14,https://doi.org/10.1587/elex.11.20140880 +Xiaoping Liu,Automatic acquisition of the four-chamber view for 3D echocardiography.,2008,5,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee5.html#LiuY08,https://doi.org/10.1587/elex.5.316 +J. Mohammad Beygi,Compact ultra-wideband antenna with dual band-stop characteristic.,2010,7,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee7.html#BeygiNG10,https://doi.org/10.1587/elex.7.596 +Mahdi Tarkhan,A novel hardware implementation of IDS method.,2009,6,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee6.html#TarkhanSK09,https://doi.org/10.1587/elex.6.1626 +Mohsen Hayati,Compact dual-band bandpass filter using open loop resonator loaded by in-line beeline for wideband applications.,2011,8,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee8.html#HayatiN11a,https://doi.org/10.1587/elex.8.1789 +Chao Zhang,High precision locking control based on fiber optic gyro and photoelectric encoder for rotational inertial navigation system.,2016,13,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee13.html#ZhangWZL16,https://doi.org/10.1587/elex.13.20160841 +Kazuhiko Imano,A tilted angle polarization type piezoelectric transducer for plate wave generation.,2007,4,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee4.html#Imano07,https://doi.org/10.1587/elex.4.340 +Yoshinao Mizugaki,Superconducting bipolar digital-to-analog converter equipped with dual double-flux-quantum amplifier.,2016,13,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee13.html#MizugakiWS16,https://doi.org/10.1587/elex.13.20160242 +Haipeng Wang,A bayesian logistic regression approach to spoken language identification.,2010,7,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee7.html#WangXZZY10,https://doi.org/10.1587/elex.7.390 +Ali Reza Enayati,A novel bandwidth efficient channel coding scheme using super orthogonal code-based turbo code for S/P-Replica MT-CDMA system.,2009,6,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee6.html#EnayatiAS09,https://doi.org/10.1587/elex.6.1272 +Tetsuya Kawanishi,Optical FSK/IM Signal Generation Using an Integrated Optical FSK Modulator.,2004,1,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee1.html#KawanishiHFISSI04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.69 +Takashi Ohira,Extended k-Q product formulas for capacitive- and inductive-coupling wireless power transfer schemes.,2014,11,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee11.html#Ohira14,https://doi.org/10.1587/elex.11.20140147 +Wooyoung Jang,Enhancing lifetime of phase-change memory for video processor.,2017,14,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee14.html#Jang17,https://doi.org/10.1587/elex.14.20170402 +Jing Qiu,Ultralow power processor employing block instruction for ECG applications.,2016,13,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee13.html#QiuXCMD16,https://doi.org/10.1587/elex.13.20150493 +Hamid Reza Ahmadi,A power-optimized low-energy elliptic-curve crypto-processor.,2010,7,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee7.html#AhmadiAP10,https://doi.org/10.1587/elex.7.1752 +Ji-Ho Cho,Improving alpha matte with depth information.,2009,6,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee6.html#ChoZGL09,https://doi.org/10.1587/elex.6.1602 +Tianliang Li,Research on pasted FBG-based accelerometer's sensitization process method and its characteristics.,2015,12,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee12.html#LiTZCL15,https://doi.org/10.1587/elex.12.20150583 +Cesar A. Azurdia-Meza,PAPR reduction by pulse shaping using Nyquist linear combination pulses.,2012,9,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee9.html#Azurdia-MezaLL12,https://doi.org/10.1587/elex.9.1534 +Youngcheol Park,Bi-purpose auxiliary amplifier to enhance the linearity and efficiency of power amplifiers.,2012,9,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee9.html#Park12,https://doi.org/10.1587/elex.9.429 +Jiajun Hu,A smart primary side current sensing strategy for single stage isolated PFC controller.,2015,12,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee12.html#HuCWLFLLS15,https://doi.org/10.1587/elex.12.20150901 +Sulaiman Wadi Harun,Gain-clamped double-pass S-band erbium-doped fiber amplifier.,2005,2,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee2.html#HarunRA05,https://doi.org/10.1587/elex.2.595 +Takayuki Tanaka,A positive feedback type push-push VCO using series connected phase shifters.,2012,9,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee9.html#TanakaFKA12,https://doi.org/10.1587/elex.9.391 +Suketu Naik,Characterization of a MEMS resonator with extended hysteresis.,2011,8,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee8.html#NaikH11,https://doi.org/10.1587/elex.8.291 +Norbert Herencsar,The conception of differential-input buffered and transconductance amplifier (DBTA) and its application.,2009,6,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee6.html#HerencsarVKL09,https://doi.org/10.1587/elex.6.329 +Dong-Sik Woo,A miniaturized broadband quasi-Yagi antenna for X- to Ku-band applications.,2013,10,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee10.html#WooK13,https://doi.org/10.1587/elex.10.20120828 +Jong Hyuk Park,Magnetically-coupled boost-forward converter for high efficiency differential power processing systems.,2017,14,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee14.html#ParkKP17,https://doi.org/10.1587/elex.14.20161202 +Sulaiman Wadi Harun,Gain control in S-band erbium-doped fiber amplifier using a fiber bragg grating.,2005,2,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee2.html#HarunSA05a,https://doi.org/10.1587/elex.2.186 +Xiaofei Wang,A multi-cell battery pack monitoring chip based on 0.35-µ*m BCD technology for electric vehicles.,2015,12,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee12.html#WangZZLDH15,https://doi.org/10.1587/elex.12.20150367 +Luigi Boccia,Single layer dual band reflectarray cell.,2013,10,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee10.html#BocciaAA13,https://doi.org/10.1587/elex.10.20130310 +Tetsuro Okura,A low-power technique for pipelined ADCs with programmable gain amplification.,2013,10,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee10.html#OkuraOM013,https://doi.org/10.1587/elex.10.20120876 +Hui Liu,A novel RF envelope detector with ultra-wide operation frequency range and enhanced transient response speed.,2017,14,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee14.html#LiuZC17,https://doi.org/10.1587/elex.14.20161224 +Dan Zou,High performance sparse matrix-vector multiplication on FPGA.,2013,10,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee10.html#ZouDGN13,https://doi.org/10.1587/elex.10.20130529 +Youngcheol Park,A small-sized class-J power amplifier from combined multi-harmonic voltage reflection functions.,2013,10,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee10.html#ParkK13,https://doi.org/10.1587/elex.10.20130171 +Keisuke Kasai,The use of a Nyquist filter for reducing an optical signal bandwidth in a coherent QAM optical transmission.,2008,5,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee5.html#KasaiHGYN08,https://doi.org/10.1587/elex.5.6 +Shiho Kim,A thin film thermoelectric cooler for Chip-on-Board assembly.,2010,7,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee7.html#KimLKY10,https://doi.org/10.1587/elex.7.1615 +Makoto Aoki,Passive imaging and emissivity measurement with a 4K-cryocooled terahertz photoconductive detector.,2012,9,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee9.html#AokiTTH12,https://doi.org/10.1587/elex.9.333 +Kyoung-Ho Kim,A 5-Gbit/s CDR circuit with 1.4 mW multi-PFD phase rotating PLL.,2014,11,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee11.html#KimBJK14,https://doi.org/10.1587/elex.11.20140828 +Yong-Seo Koo,ESD protection circuit with low triggering voltage and fast turn-on using substrate-triggered technique.,2009,6,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee6.html#KooKK09,https://doi.org/10.1587/elex.6.467 +Zhichao Zhang,A high linear broadband cascode LNA employing common-gate linearity enhancing technology.,2013,10,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee10.html#ZhangKDC13,https://doi.org/10.1587/elex.10.20130603 +Oh-Seol Kwon,Color constancy algorithm without segmentation.,2013,10,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee10.html#KwonJ13,https://doi.org/10.1587/elex.10.20130377 +Mianquan Li,Polarization beam pattern synthesis based on particle swarm optimization.,2012,9,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee9.html#LiWLD12,https://doi.org/10.1587/elex.9.1648 +Hyeok Koo Jung,Hybrid STT/ERT and SC-FDE technique for single carrier transmission with a guard period.,2011,8,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee8.html#Jung11,https://doi.org/10.1587/elex.8.1723 +Ali Shahabi,Degradable mesh-based on-chip networks using programmable routing tables.,2007,4,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee4.html#ShahabiHSN07,https://doi.org/10.1587/elex.4.332 +Mehdi Abioghli,Dual-band bow-tie antenna with parasitic elements for WLAN applications.,2011,8,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee8.html#AbioghliGA11,https://doi.org/10.1587/elex.8.710 +Miseon Han,P-DRAMSim2: Exploiting thread-level parallelism in DRAMSim2.,2017,14,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee14.html#HanKKH17,https://doi.org/10.1587/elex.14.20170591 +Masahiro Kashiwagi,Long range and high resolution reflectometry by synthesis of optical coherence function at region beyond the coherence length.,2009,6,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee6.html#KashiwagiH09,https://doi.org/10.1587/elex.6.497 +Kazuhiko Sumimura,Yb fiber mode-locked laser with a wide tuning range for chirped pulse amplification system.,2006,3,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee3.html#SumimuraYFN06,https://doi.org/10.1587/elex.3.233 +Wen Qin,On the design of optimum pulse in OFDM systems.,2008,5,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee5.html#QinP08,https://doi.org/10.1587/elex.5.260 +Hiroshi Matsubara,Reaction-diffusion chip implementing excitable lattices with multiple-valued cellular automata.,2004,1,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee1.html#MatsubaraAHA04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.248 +Xinxin Xu,Design of tunable metamaterial absorbers based on PIN diodes.,2012,9,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee9.html#XuJMCS12,https://doi.org/10.1587/elex.9.1408 +Won-Joo Yun,A 4-bit 2GSamples/s parallel Flash ADC using comb-type reference ladder.,2008,5,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee5.html#YunSK08,https://doi.org/10.1587/elex.5.562 +Yusuke Kanazawa,A MOS circuit for bursting neural oscillators with excitable oregonators.,2004,1,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee1.html#KanazawaAHA04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.73 +Sungjei Kim,An efficient skip mode competition scheme based on vector clustering and object boundary detection.,2010,7,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee7.html#KimPJC10,https://doi.org/10.1587/elex.7.447 +Tohid Moosazadeh,A novel digital calibration technique for pipelined ADCs.,2010,7,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee7.html#MoosazadehY10,https://doi.org/10.1587/elex.7.1741 +Byung Hwa Jung,Novel bootstrapped CMOS differential logic family for ultra-low voltage SoCs.,2008,5,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee5.html#JungKOPKKKK08,https://doi.org/10.1587/elex.5.711 +Davood Gharavian,Using neutralized formant frequencies to improve emotional speech recognition.,2011,8,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee8.html#GharavianSA11,https://doi.org/10.1587/elex.8.1155 +Chot Hun Lim,A new data acquisition and processing system for UAVSAR.,2011,8,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee8.html#LimLCCLK11,https://doi.org/10.1587/elex.8.1716 +Yasuhiro Uchiyama,Thermal cross-talk evaluation of densely integrated vertical cavity surface emitting laser array.,2004,1,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee1.html#UchiyamaKTMUMK04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.545 +Ali Mohammadi,A new CMOS all-pass phase shifter for phased array systems.,2009,6,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee6.html#MohammadiAA09,https://doi.org/10.1587/elex.6.504 +Sukanta Roy,Designing a new high gain CMOS amplifier towards a 17.22 MHz MEMS based Si oscillator for a cost effective clock generator IC.,2015,12,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee12.html#RoyRR15,https://doi.org/10.1587/elex.12.20150272 +Ehsan Akhtarkavan,Multiple description lattice vector quantization using multiple A4 quantizers.,2010,7,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee7.html#AkhtarkavanS10,https://doi.org/10.1587/elex.7.1233 +Taewook Chung,A dynamic MAS reallocation method for WiMedia MAC DRP.,2010,7,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee7.html#ChungCK10,https://doi.org/10.1587/elex.7.1220 +M. H. M. Larijani,A 2-bit/step SAR ADC structure with one radix-4 DAC.,2012,9,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee9.html#LarijaniG12,https://doi.org/10.1587/elex.9.840 +Eun-Sub Lee,Compact and efficient Maximum Power Point Tracking circuit for portable solar battery charger.,2011,8,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee8.html#LeeJVM11,https://doi.org/10.1587/elex.8.930 +Youngil Kim,Soft pre-charge H/V switch for charge pump with NAND flash memory using external power.,2013,10,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee10.html#KimL13b,https://doi.org/10.1587/elex.10.20130497 +Xiaolong Wang,A flexible two-section transmission-line transformer design approach for complex source and real load impedances.,2017,14,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee14.html#WangOM17,https://doi.org/10.1587/elex.13.20161095 +Yong-Seo Koo,Analysis of the electrical characteristics of SCR-based ESD Protection Device (PTSCR) in 0.13/0.18/0.35um process technology.,2011,8,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee8.html#Koo11,https://doi.org/10.1587/elex.8.8 +Enpin Yang,A novel compressive sampling system for chirp signal.,2017,14,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee14.html#YangYQ17,https://doi.org/10.1587/elex.14.20170204 +Teng Li,Broadband transition between substrate integrated waveguide and rectangular waveguide based on ridged steps.,2014,11,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee11.html#LiMD14,https://doi.org/10.1587/elex.11.20140434 +Enpin Yang,Modulated wideband converter with run length limited sequences.,2016,13,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee13.html#YangYQ16,https://doi.org/10.1587/elex.13.20160670 +Nastaran Tamjidi,High-frequency fatigue test of metallic thin films using PVDF microactuator.,2012,9,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee9.html#TamjidiSSNSH12,https://doi.org/10.1587/elex.9.403 +Thi Thi Zin,Optimal color space for relative color polygons.,2007,4,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee4.html#ZinKH07,https://doi.org/10.1587/elex.4.106 +Bing Li,Audio-Video synchronization coding approach based on H.264/AVC.,2009,6,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee6.html#LiS09,https://doi.org/10.1587/elex.6.1556 +Ivan Padilla-Cantoya,High performance voltage follower with very low output resistance for WTA applications.,2014,11,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee11.html#Padilla-CantoyaF14,https://doi.org/10.1587/elex.11.20140629 +Mingna Liu,Image quality assessment by decision fusion.,2008,5,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee5.html#LiuY08a,https://doi.org/10.1587/elex.5.537 +Mohsine Khalladi,Modeling of electromagnetic waves propagation in nonlinear optical media using HSCN-TLM method.,2005,2,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee2.html#KhalladiYAC05,https://doi.org/10.1587/elex.2.384 +Koh Johguchi,A 2-stage-pipelined 16 port SRAM with 590Gbps random access bandwidth and large noise margin.,2007,4,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee4.html#JohguchiMAMK07,https://doi.org/10.1587/elex.4.21 +Chun Wei Lin,Dynamic power efficiency improvement for PWM class-D amplifier.,2013,10,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee10.html#LinH13,https://doi.org/10.1587/elex.10.20130073 +Kiyotaka Sasagawa,Real-time monitoring system of RF near-field distribution images on the basis of 64-channel parallel electro-optic data acquisition.,2005,2,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee2.html#SasagawaT05,https://doi.org/10.1587/elex.2.600 +Xiaogang Wang,A novel coupled inductor Z-source three-level inverter.,2017,14,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee14.html#WangLL17,https://doi.org/10.1587/elex.14.20170647 +Sangjoon Park,A Group Shuffled BP decoding for punctured Low-Density Parity-Check codes.,2010,7,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee7.html#ParkLHC10,https://doi.org/10.1587/elex.7.1429 +Shaochong Lei,A low cost test pattern generator for test-per-clock BIST scheme.,2010,7,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee7.html#LeiWLL10,https://doi.org/10.1587/elex.7.672 +W. A. Rajitha Jayaruwan Weerakkody,4-PSK TTCM for Wyner-Ziv frame coding in DVC.,2006,3,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee3.html#WeerakkodyFAR06,https://doi.org/10.1587/elex.3.178 +Keivan Navi,Two novel ultra high speed carbon nanotube Full-Adder cells.,2009,6,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee6.html#NaviMSK09,https://doi.org/10.1587/elex.6.1395 +Dongsuk Shin,Erratum: Energy-efficient heterogeneous memory system for mobile platforms [IEICE Electronics Express Vol. 14 (2017) No. 24 pp. 20171002].,2018,15,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee15.html#ShinJL18,https://doi.org/10.1587/elex.15.20188001 +Jeong-Keun Ahn,Pair-wise staggering transmitter for single-ended parallel signaling.,2018,15,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee15.html#AhnJSULK18,https://doi.org/10.1587/elex.15.20171238 +Mohammad Mosalanejad,Dual band microstrip antenna with non regular polygonal patch for satellite applications.,2012,9,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee9.html#MosalanejadFM12,https://doi.org/10.1587/elex.9.1290 +Keiji Goto,Time-domain asymptotic-numerical solution for transient scattered electric field by a coated conducting cylinder covered with a thin lossy dielectric material.,2015,12,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee12.html#GotoASS15,https://doi.org/10.1587/elex.12.20141110 +Mayank Vatsa,Improving biometric recognition accuracy and robustness using DWT and SVM watermarking.,2005,2,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee2.html#VatsaSN05,https://doi.org/10.1587/elex.2.362 +Fengjuan Wang,Equivalent circuit model of through-silicon-via in slow wave mode.,2017,14,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee14.html#WangWY17,https://doi.org/10.1587/elex.14.20171025 +Parviz Amiri,Low distortion CMOS class-D amplifier with double-band hysteresis.,2010,7,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee7.html#AmiriNM10,https://doi.org/10.1587/elex.7.273 +Yuki Atsumi,Compact and low-loss liquid crystal loaded Mach-Zehnder optical switch based on Si wire waveguide.,2017,14,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee14.html#AtsumiMMMS17,https://doi.org/10.1587/elex.14.20170110 +Hui Dong Lee,A 3.8-GHz highly linear LC-VCO without a varactor device.,2013,10,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee10.html#LeeJL13,https://doi.org/10.1587/elex.10.20130038 +Sanjeev Jain,Start-up and frequency stability analysis using time varying root locus.,2015,12,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee12.html#JainT15,https://doi.org/10.1587/elex.12.20150661 +Masayuki Matsumoto,Optical carrier extraction from carrier-less phase modulated optical signals.,2015,12,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee12.html#MatsumotoN15,https://doi.org/10.1587/elex.12.20150913 +Jinsoo Lim,A novel bit flipping decoder for systematic LDPC codes.,2017,14,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee14.html#LimS17,https://doi.org/10.1587/elex.13.20161100 +Toshihiko Baba,Photonic crystal slow light devices fabricated by CMOS-compatible process.,2013,10,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee10.html#BabaNISSHK13,https://doi.org/10.1587/elex.10.20132002 +Xin Wang,A novel dual bandpass filter incorporating left-handed transmission line based dual-band resonator.,2015,12,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee12.html#WangWT15,https://doi.org/10.1587/elex.12.20150797 +Hao Xiao,A MapReduce architecture for embedded multiprocessor system-on-chips.,2016,13,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee13.html#XiaoZGW16,https://doi.org/10.1587/elex.13.20151025 +Jahangir Dadkhah Chimeh,A traffic model method for user equipment power conservation in UMTS-HSPA.,2010,7,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee7.html#Chimeh10,https://doi.org/10.1587/elex.7.1342 +Kunhee Cho,A high voltage half bridge gate driver with mismatch-insensitive dead-time generator.,2012,9,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee9.html#ChoLK12,https://doi.org/10.1587/elex.9.1322 +Mahmoud A. M. Albreem,Reduced complexity optimum detector for block data transmission systems using Lattice Sphere Decoding technique.,2011,8,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee8.html#AlbreemSB11,https://doi.org/10.1587/elex.8.644 +Weixin Kang,Improved sliding mode observer based sensorless control for PMSM.,2017,14,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee14.html#KangL17,https://doi.org/10.1587/elex.14.20170934 +Kimikazu Sano,Wide dynamic range transimpedance amplifier IC for 100-G DP-QPSK optical links using 1-µ*m InP HBTs.,2012,9,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee9.html#SanoFNMNM12,https://doi.org/10.1587/elex.9.1012 +Shunfen Li,PCRAM-aware cluster allocation algorithm for hybrid main memory hierarchy.,2015,12,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee12.html#LiCZLZS15,https://doi.org/10.1587/elex.12.20150115 +Xiaoxiong Zhang,A novel dumbbell-shaped coil featured with cross coupling suppression for long distance relay wireless power transfer applications.,2017,14,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee14.html#ZhangLHLZ17,https://doi.org/10.1587/elex.14.20170790 +Koichi Hirayama,Curvilinear triangular-prism element for computation of band structure in photonic crystal slab.,2006,3,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee3.html#HirayamaKTK06,https://doi.org/10.1587/elex.3.81 +Sulaiman Wadi Harun,An efficient S-band erbium-doped fiber amplifier using double-pass configuration.,2005,2,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee2.html#HarunSA05,https://doi.org/10.1587/elex.2.182 +Alexis Debray,Fluidic self-alignment applied to a micro-fluidic system.,2006,3,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee3.html#DebrayCSF06,https://doi.org/10.1587/elex.3.227 +Arash Abadian,An ultra low power and low complexity all digital PLL with a high resolution digitally controlled oscillator.,2011,8,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee8.html#AbadianLGM11,https://doi.org/10.1587/elex.8.1801 +Mehdi Salehi,An adaptable UWB pulse generator for high-rate applications.,2007,4,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee4.html#SalehiN07,https://doi.org/10.1587/elex.4.232 +Daisuke Kanemoto,A novel RC time constant tuning technique utilizing programmable current sources for continuous-time delta-sigma modulators.,2012,9,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee9.html#KanemotoTAM012,https://doi.org/10.1587/elex.9.572 +Hiroaki Ozaki,Wireless operations for 13.56-MHz band RFID tag using amorphous oxide TFTs.,2011,8,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee8.html#OzakiKWYU11,https://doi.org/10.1587/elex.8.225 +Zhenfeng Shi,Saliency-based structural degradation evaluation of 3D mesh simplification.,2011,8,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee8.html#ShiLN11,https://doi.org/10.1587/elex.8.161 +Mahdi Alinaghizadeh Ardestani,A Robust Discrete-Time Controller for delay sensitive applications.,2009,6,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee6.html#ArdestaniB09,https://doi.org/10.1587/elex.6.1548 +Omid Sojodishijani,Just-in-time outdoor color discrimination using adaptive similarity-based classifier.,2010,7,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee7.html#SojodishijaniRRSS10,https://doi.org/10.1587/elex.7.339 +Yongsam Moon,A spread-spectrum clock generator for 6-Gbps Serial ATA transceiver.,2010,7,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee7.html#Moon10,https://doi.org/10.1587/elex.7.931 +Youngil Kim,Area-efficient analog peripheral circuit techniques for Solid State Drive with NAND flash memories.,2013,10,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee10.html#KimL13a,https://doi.org/10.1587/elex.10.20130127 +Chung-Hsun Huang,A fast and high efficiency buck converter with Switch-On-Demand Modulator for wide load range applications.,2011,8,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee8.html#HuangC11,https://doi.org/10.1587/elex.8.963 +Xiaoli Xi,An effective CFS-PML implementation for 2-D WLP-FDTD method.,2015,12,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee12.html#XiFLZ15,https://doi.org/10.1587/elex.12.20150191 +Keiji Goto,Time-domain asymptotic-numerical solution for transient scattered field from a cylindrically curved conducting open sheet excited by UWB pulse wave.,2016,13,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee13.html#GotoKO16,https://doi.org/10.1587/elex.13.20151041 +Kee-Won Kim,An efficient parallel systolic array for AB2 over GF(2m).,2013,10,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee10.html#KimL13c,https://doi.org/10.1587/elex.10.20130585 +Muhammad Adil Ansari,Time-multiplexed test access architecture for stacked integrated circuits.,2016,13,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee13.html#AnsariJKP16,https://doi.org/10.1587/elex.13.20160314 +Yohei Sakamaki,Reduction of phase-difference deviation in 90®6* optical hybrid over wide wavelength range.,2010,7,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee7.html#SakamakiNHHST10,https://doi.org/10.1587/elex.7.216 +Ho Lim,A cache replacement policy to reduce cache miss rate for multiprocessor architecture.,2010,7,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee7.html#LimKC10,https://doi.org/10.1587/elex.7.850 +Hamid Heidar,Analysis of the radar range extension in open-ended waveguide type geometries.,2011,8,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee8.html#HeidarTA11,https://doi.org/10.1587/elex.8.663 +Hosein Mirmazhari,A high efficiency DC-DC Converter using a new in-package structure of Bonding-Wire inductor.,2012,9,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee9.html#MirmazhariTSK12,https://doi.org/10.1587/elex.9.1005 +Yong-Seo Koo,Electrical characteristics and thermal reliability of BJT-inserted GSTNMOS using the 65nm CMOS process.,2011,8,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee8.html#Koo11a,https://doi.org/10.1587/elex.8.259 +Chenming Zhong,Reactance compensation method to eliminate cross coupling for two-receiver wireless power transfer system.,2015,12,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee12.html#ZhongLNL15,https://doi.org/10.1587/elex.12.20150016 +Yuhwan Ro,Selective DRAM cache bypassing for improving bandwidth on DRAM/NVM hybrid main memory systems.,2017,14,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee14.html#RoSPA17,https://doi.org/10.1587/elex.14.20170437 +Sherif Hekal,Asymmetric wireless power transfer systems using coupled DGS resonators.,2016,13,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee13.html#HekalEAJBP16,https://doi.org/10.1587/elex.13.20160591 +Libin Cai,Evaluation of speech quality using digital watermarking.,2004,1,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee1.html#CaiZ04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.380 +Seungyoung Ahn,Optimized shield design for reduction of EMF from wireless power transfer systems.,2014,11,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee11.html#AhnHP14,https://doi.org/10.1587/elex.10.20130930 +Sang-Geun Bae,An 180 nm CMOS 1.84-to-3.62 GHz fractional-N frequency synthesizer with skewed-reset PFD for removing noise-folding effect.,2014,11,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee11.html#BaeKH14,https://doi.org/10.1587/elex.11.20140490 +Soonyong Lee,Design of an implanted compact antenna for an artificial cardiac pacemaker system.,2011,8,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee8.html#LeeSIC11,https://doi.org/10.1587/elex.8.2112 +Zhikui Duan,A single-event transient hardened LDO regulator with built-in filter.,2015,12,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee12.html#DuanDLZHT15,https://doi.org/10.1587/elex.12.20150850 +Joonho Kong,A DVFS-aware cache bypassing technique for multiple clock domain mobile SoCs.,2017,14,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee14.html#KongL17,https://doi.org/10.1587/elex.14.20170324 +Ilmu Byun,Practical network-coding scheme for two-way relay channels employing a rate-compatible punctured code.,2009,6,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee6.html#ByunK09,https://doi.org/10.1587/elex.6.1522 +Xincun Ji,A linearized tuning varactor for voltage controlled oscillator.,2017,14,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee14.html#JiXGG17,https://doi.org/10.1587/elex.14.20170730 +Ung Hee Park,Dual-impedance transmission line employing an ungrounded copper plane.,2013,10,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee10.html#Park13,https://doi.org/10.1587/elex.10.20130383 +Keigo Kagimoto,Detection of human arm approaching direction based on electrostatic coupling in human body communication.,2012,9,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee9.html#KagimotoAW12,https://doi.org/10.1587/elex.9.1799 +Joonhwan Yi,Power modeling for digital circuits with clock gating.,2015,12,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee12.html#YiK15,https://doi.org/10.1587/elex.12.20150817 +Hamed Dalir,Bandwidth enhancement of single-mode VCSEL with lateral optical feedback of slow light.,2011,8,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee8.html#DalirK11,https://doi.org/10.1587/elex.8.1075 +Shoun Matsunaga,Complementary 5T-4MTJ nonvolatile TCAM cell circuit with phase-selective parallel writing scheme.,2014,11,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee11.html#MatsunagaMSNSEOH14,https://doi.org/10.1587/elex.11.20140297 +Toshikazu Shimada,Compact beam deflector based on slow-light Bragg reflector waveguide monolithically integrated with VCSEL.,2013,10,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee10.html#ShimadaMK13,https://doi.org/10.1587/elex.10.20130842 +Seunghoon Kim,Compact three-way planar power divider using five-conductor coupled line.,2011,8,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee8.html#KimJJ11,https://doi.org/10.1587/elex.8.1387 +Xiao Li,A 125-170 GHz wideband high-power amplifier using 0.5-µ*m InP DHBT.,2017,14,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee14.html#LiZZLCX17,https://doi.org/10.1587/elex.14.20170684 +Hirokazu Kamoda,Conductor loss reduction for liquid crystal millimeter-wave beam former.,2005,2,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee2.html#KamodaKN05,https://doi.org/10.1587/elex.2.471 +Jongsoo Lee,RF power detector design with temperature compensation for power amplifiers bias control.,2009,6,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee6.html#Lee09a,https://doi.org/10.1587/elex.6.418 +Tatsuya Shimada,Traffic design to reduce the number of OEO conversions in multi-stage access network.,2010,7,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee7.html#ShimadaKH10,https://doi.org/10.1587/elex.7.886 +Yan He,An effectiveness-oriented greedy heuristic for padding short paths in ultra-low supply voltage designs.,2018,15,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee15.html#HeMCXC18,https://doi.org/10.1587/elex.15.20171229 +Abdullah Al Amin,Optical burst switching with burst collision resolution using a fast 4x4 PLZT switch.,2006,3,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee3.html#AminSTINHUTKAOMHMN06,https://doi.org/10.1587/elex.3.504 +Jianming Zhou,A new CAD model of step recovery diode and generation of UWB signals.,2006,3,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee3.html#ZhouGF06,https://doi.org/10.1587/elex.3.534 +Ifong Wu,Relation between electromagnetic noise from LED light bulb and its impact on bit error rate performance of DTTB.,2012,9,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee9.html#WuOGIM12,https://doi.org/10.1587/elex.9.666 +Kisung Seo,Automated generation of rotation-robust corner detectors.,2010,7,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee7.html#SeoK10,https://doi.org/10.1587/elex.7.1226 +Zhiwei Lin 0001,Performance evaluation of tap selection based MMSE equalization for UWB systems.,2005,2,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee2.html#ZhiweiPM05,https://doi.org/10.1587/elex.2.176 +Soonil Kwon,Focused word spotting in spoken Korean based on fundamental frequency.,2011,8,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee8.html#Kwon11,https://doi.org/10.1587/elex.8.1149 +Aryuanto Soetedjo,Improving the performance of traffic sign detection using blob tracking.,2007,4,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee4.html#SoetedjoY07,https://doi.org/10.1587/elex.4.684 +Yufeng Xie,64Kb logic RRAM chip resisting physical and side-channel attacks for encryption keys storage.,2012,9,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee9.html#XieJXJL12,https://doi.org/10.1587/elex.9.1051 +Yasir,FPGA based highly efficient MISTY1 architecture.,2017,14,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee14.html#YasirWCYZ17,https://doi.org/10.1587/elex.14.20170841 +Edgar López-Delgadillo,A digitally programmable active resistor in CMOS technology.,2015,12,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee12.html#Lopez-Delgadillo15,https://doi.org/10.1587/elex.12.20150247 +Feng Han,An access pattern based adaptive mapping function for GPGPU scratchpad memory.,2017,14,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee14.html#Han0WFPSL17,https://doi.org/10.1587/elex.14.20170373 +Qingqing Yang,Low complexity state metric compression technique in turbo decoder.,2013,10,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee10.html#YangZSL13,https://doi.org/10.1587/elex.10.20130485 +Sriram Muthukumar,Low-power and area-efficient 9-transistor double-edge triggered flip-flop.,2013,10,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee10.html#MuthukumarC13,https://doi.org/10.1587/elex.10.20130639 +Keiichi Morikawa,Transmission characteristics of laterally illuminated photonic crystal fibers.,2006,3,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee3.html#MorikawaFSK06,https://doi.org/10.1587/elex.3.70 +Koki Sugiyama,Polarization diversity circuit based on silica waveguides and photonic crystal waveplates for a 4*4 silicon optical switch.,2017,14,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee14.html#SugiyamaCTSKKIK17,https://doi.org/10.1587/elex.14.20170252 +Jingjing Guo,Analytical inverter chain's delay and its variation model for sub-threshold circuits.,2017,14,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee14.html#GuoZWNLGY17,https://doi.org/10.1587/elex.14.20170390 +Shinpei Ogawa,Millimeter-wave transmission line with through-silicon via for RF-MEMS devices.,2013,10,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee10.html#OgawaYFTF13,https://doi.org/10.1587/elex.10.20130565 +Anh-Tuan Phan,Design technique of broadband CMOS LNA for DC - 11GHz SDR.,2010,7,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee7.html#PhanF10,https://doi.org/10.1587/elex.7.190 +Ataru Ichinose,Recent progress in high-TC superconducting wires and their applications for electric power apparatus.,2012,9,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee9.html#Ichinose12,https://doi.org/10.1587/elex.9.1172 +Yang Chen,A 40-Gb/s 3-tap forward feedback equalizer with DLL-based delay time calibration.,2017,14,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee14.html#ChenLW17,https://doi.org/10.1587/elex.14.20161159 +Hock-Ann Goh,Retrieving geometric distortion properties from image moments.,2009,6,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee6.html#GohBAO09,https://doi.org/10.1587/elex.6.774 +Minh-Thien Hoang,A 27.6 andmicro*W 315 MHz low-complexity OOK receiver with on-off RF front-end.,2015,12,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee12.html#HoangSI15,https://doi.org/10.1587/elex.12.20150206 +Yoshiteru Abe,10-year reliability test results for SC connector installed on outside plant.,2009,6,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee6.html#AbeYAN09,https://doi.org/10.1587/elex.6.472 +Wonseok Oh,A low noise regulated charge pump circuit.,2011,8,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee8.html#OhN11,https://doi.org/10.1587/elex.8.416 +Guiping Li,The distribution of electromagnetic waves and forces in a dispersive chiral cylinder.,2016,13,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee13.html#LiWLYZXX16,https://doi.org/10.1587/elex.13.20160974 +J. Y. Kim,Design of a new DFT filter bank with modified sampling kernels and its application to arbitrary image scaling.,2009,6,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee6.html#KimN09,https://doi.org/10.1587/elex.6.58 +Tie Dan Wang,DOA estimation of coherently distributed sources based on block-sparse constraint with measurement matrix uncertainty.,2013,10,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee10.html#WangGWL13,https://doi.org/10.1587/elex.10.20120863 +Ko-Chi Kuo,A 2.4GHz low phase noise frequency synthesizer for WiMAX applications.,2011,8,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee8.html#Kuo11,https://doi.org/10.1587/elex.8.938 +Mizuki Iwanami,Ultra small electro-optic field probe fabricated by aerosol deposition.,2007,4,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee4.html#IwanamiNTOA07,https://doi.org/10.1587/elex.4.26 +Gil-Su Kim,An automatic threshold-converged CMOS optical receiver for high-definition digital audio interfaces.,2007,4,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee4.html#KimKK07,https://doi.org/10.1587/elex.4.690 +Slo-Li Chu,Demand-driven register file for multithreaded mobile GPUs.,2012,9,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee9.html#ChuHH12,https://doi.org/10.1587/elex.9.1562 +Andrew Beng Jin Teoh,Secure biometric template protection in fuzzy commitment scheme.,2007,4,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee4.html#TeohK07,https://doi.org/10.1587/elex.4.724 +Yanhan Zeng,A 12.8 nA and 7.2 ppm/®6*C CMOS voltage reference without amplifier.,2018,15,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee15.html#ZengHZT18,https://doi.org/10.1587/elex.15.20171220 +Armin Mehran,Spiral: A heuristic mapping algorithm for network on chip.,2007,4,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee4.html#MehranSKA07,https://doi.org/10.1587/elex.4.478 +Tetsuya Kawanishi,Parallel Mach-Zehnder modulators for quadrature amplitude modulation.,2011,8,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee8.html#Kawanishi11,https://doi.org/10.1587/elex.8.1678 +Yosuke Tatekura,Reference signal extraction under a noisy environment for a semi-adaptive sound reproduction system.,2010,7,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee7.html#TatekuraY10,https://doi.org/10.1587/elex.7.583 +Behzad Zamani,Discriminative transformation for speech features based on genetic algorithm and HMM likelihoods.,2010,7,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee7.html#ZamaniANMJ10,https://doi.org/10.1587/elex.7.247 +Ali Vatanjou,A wide-band multipath CMOS OTA for high speed applications.,2011,8,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee8.html#VatanjouKSD11,https://doi.org/10.1587/elex.8.449 +Anhong Wang,An efficient hybrid distributed video coding.,2008,5,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee5.html#WangZP08,https://doi.org/10.1587/elex.5.650 +Mingjian Zhao,A compact low power current-mode LNA-Mixer for RF receiver.,2017,14,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee14.html#ZhaoL17,https://doi.org/10.1587/elex.14.20170773 +Kazuyuki Kondo,Vacuum test of a micro-solid propellant rocket array thruster.,2004,1,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee1.html#KondoTHTHSIWE04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.222 +Sungwook Choi,Efficiency optimization of charge pump circuit in NAND FLASH memory.,2011,8,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee8.html#ChoiKCHP11,https://doi.org/10.1587/elex.8.1343 +Ali Beirami,Particle swarm optimization on trade-off extraction of analog integrated circuits.,2009,6,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee6.html#BeiramiT09,https://doi.org/10.1587/elex.6.1643 +Tongtong Wang,A compact implantable flexible filter with low loss.,2017,14,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee14.html#WangWZZZ17,https://doi.org/10.1587/elex.14.20170802 +Takeshi Fujino,Tamper-resistant cryptographic hardware.,2017,14,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee14.html#FujinoKS17,https://doi.org/10.1587/elex.14.20162004 +Toshifumi Moriyama,Adaptive nulling in thinned planar arrays through Genetic Algorithms.,2014,11,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee11.html#MoriyamaPR14,https://doi.org/10.1587/elex.11.20140785 +Sungju Lee,CPU-GPU hybrid computing for feature extraction from video stream.,2014,11,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee11.html#LeeKPCJ14,https://doi.org/10.1587/elex.11.20140932 +Jeong-Wook Seo,DFT-based interpolation with simple leakage suppression.,2011,8,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee8.html#SeoK11,https://doi.org/10.1587/elex.8.525 +Jonathan Carlos Mayo-Maldonado,On the experimental implementation of a nonlinear adaptive observer.,2012,9,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee9.html#Mayo-MaldonadoSLSSM12,https://doi.org/10.1587/elex.9.1160 +Ning Lu,A PRAM based block updating management for hybrid solid state disk.,2012,9,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee9.html#LuCKK12,https://doi.org/10.1587/elex.9.320 +Jesus Olivares-Mercado,Improving the eigenphase method for face recognition.,2009,6,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee6.html#Olivares-MercadoHTNTP09,https://doi.org/10.1587/elex.6.1112 +Shuigen Huang,A novel AGC scheme in a wideband receiver.,2018,15,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee15.html#HuangLZL18a,https://doi.org/10.1587/elex.15.20180068 +Wai Kuan Yip,Replaceable and securely hashed keys from online signatures.,2006,3,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee3.html#YipTN06,https://doi.org/10.1587/elex.3.410 +Keizo Inagaki,Beam steering array antenna controlled by optical wavelength.,2011,8,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee8.html#InagakiOKI11,https://doi.org/10.1587/elex.8.1221 +Pooya Davari,A self-tuning feedforward active noise control system.,2009,6,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee6.html#DavariH09,https://doi.org/10.1587/elex.6.230 +Sung Jun Lee,Compensation technique for time alignment of envelope and phase paths in an envelope delta-sigma modulator.,2015,12,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee12.html#LeeCJ15,https://doi.org/10.1587/elex.12.20150372 +Nasrudin Abd. Rahim,A novel self-tuning scheme for fuzzy logic elevator group controller.,2010,7,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee7.html#RahimHJ10,https://doi.org/10.1587/elex.7.892 +Lidan Wang,A 0.5V 0.18µ*m CMOS LC-VCO with a novel switched varactor technique.,2013,10,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee10.html#WangLWW13,https://doi.org/10.1587/elex.10.20130535 +Tsuyoshi Funaki,Characterization of SiC power module for high switching frequency operation.,2010,7,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee7.html#FunakiISN10,https://doi.org/10.1587/elex.7.1008 +Mohammad Rashtian,A simple time domain approach to noise analysis of switched capacitor circuits.,2010,7,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee7.html#RashtianHH10,https://doi.org/10.1587/elex.7.745 +Yiling Ding,A novel current-biased voltage-programmed pixel circuit with low temperature polycrystalline silicon thin film transistors for AMOLED.,2015,12,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee12.html#DingTHZWWF15,https://doi.org/10.1587/elex.12.20150899 +Masanori Koshiba,Heterogeneous multi-core fibers: proposal and design principle.,2009,6,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee6.html#KoshibaSK09,https://doi.org/10.1587/elex.6.98 +Yangyang Niu,A 2.4GHz to 3.86GHz digitally controlled oscillator with 18.5kHz frequency resolution using single PMOS varactor.,2012,9,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee9.html#Niu0LR12,https://doi.org/10.1587/elex.9.1842 +K. Ramasamy,Performance comparison of convolutional and block turbo codes.,2006,3,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee3.html#RamasamySAA06,https://doi.org/10.1587/elex.3.322 +Kamal Kumar Sharma,Simple and systematic design of FA cell using K map.,2005,2,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee2.html#Sharma05,https://doi.org/10.1587/elex.2.138 +Won-Sup Chung,Colpitts VCO using temperature-stable linear OTAs.,2013,10,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee10.html#ChungSK13,https://doi.org/10.1587/elex.10.20130323 +Minru Hao,Effects of gamma-ray radiation on channel current of the uniaxial strained Si nano-scale NMOSFET.,2017,14,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee14.html#HaoHLW17,https://doi.org/10.1587/elex.14.20170866 +Yong Fang,Analysis and design of rectangular waveguide to substrate integrated waveguide transition with voltage and current probe in W-band.,2015,12,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee12.html#FangZZZYL15,https://doi.org/10.1587/elex.12.20150682 +Suleyman Tosun,FIT: Fast Irregular Topology generation algorithm for application specific NoCs.,2010,7,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee7.html#Tosun10,https://doi.org/10.1587/elex.7.1132 +Takuya Sakamaki,LiNbO3 optical switch using asymmetric X-junction waveguide for broadband optical network node.,2010,7,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee7.html#SakamakiNTNK10,https://doi.org/10.1587/elex.7.360 +Bo Dang,Borehole electromagnetic induction system with noise cancelation for casing inspection.,2016,13,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee13.html#DangYDX16,https://doi.org/10.1587/elex.13.20160714 +Keisuke Jinen,Improvement of electroluminescence from CdF2/CaF2 intersubband transition light-emitting structure by trench patterning and hydrogen annealing of Si substrate.,2006,3,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee3.html#JinenUKWA06,https://doi.org/10.1587/elex.3.493 +Dahae Chong,Robust estimators for frequency offset of OFDM in non-Gaussian noise.,2011,8,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee8.html#ChongLSY11a,https://doi.org/10.1587/elex.8.1412 +Lei Li,High-speed modulo (2n+3) multipliers.,2013,10,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee10.html#LiZZ13,https://doi.org/10.1587/elex.10.20130157 +M. Takano,Real-time sensing of roses' aroma using an odor sensor of quartz crystal resonaotors.,2007,4,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee4.html#TakanoFSM07,https://doi.org/10.1587/elex.4.15 +Hyunjin Yoo,Robust and convenient characterization for a multispectral imaging system.,2010,7,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee7.html#YooL10,https://doi.org/10.1587/elex.7.1608 +In-Young Chung,New charge pump circuits for high output voltage and large current drivability.,2009,6,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee6.html#ChungS09,https://doi.org/10.1587/elex.6.800 +Mohammad Naser-Moghadasi,Compact printed antenna with novel radiating element for UWB applications.,2010,7,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee7.html#Naser-MoghadasiKSV10,https://doi.org/10.1587/elex.7.228 +Ying Zhang,1-20 GHz distributed power amplifier based on shared artificial transmission lines.,2017,14,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee14.html#ZhangMYZG17,https://doi.org/10.1587/elex.14.20170198 +Tetsuya Hirose,Temperature-compensated CMOS current reference circuit for ultralow-power subthreshold LSIs.,2008,5,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee5.html#HiroseAA08,https://doi.org/10.1587/elex.5.204 +Tongxi Wang,A 19-bit column-parallel folding-integration/cyclic cascaded ADC with a pre-charging technique for CMOS image sensors.,2017,14,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee14.html#WangSYK17,https://doi.org/10.1587/elex.14.20161199 +Jianfeng Dai,A fast hysteresis control strategy based on capacitor charging and discharging.,2014,11,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee11.html#DaiZQL14,https://doi.org/10.1587/elex.11.20140145 +Asghar Taheri,EKF modeling of field oriented control of six-phase induction motor.,2012,9,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee9.html#Taheri12,https://doi.org/10.1587/elex.9.642 +Shotaro Nagai,Γ*-point group velocity of lossy Dirac cone composite right/left-handed metamaterials.,2016,13,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee13.html#NagaiS16,https://doi.org/10.1587/elex.13.20160281 +Ying-Han Pang,Neighbourhood Discriminant Embedding in face recognition.,2008,5,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee5.html#PangTW08,https://doi.org/10.1587/elex.5.1036 +Hang Wang,Microstrip dual-mode filters with miniaturized size and broadened stopband using meander-shaped stepped-impedance ring resonator.,2005,2,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee2.html#WangZ05,https://doi.org/10.1587/elex.2.159 +Hideharu Yoshioka,A highly compact dual-band WLAN/UWB monopole antenna.,2012,9,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee9.html#YoshiokaYTY12,https://doi.org/10.1587/elex.9.160 +Noritake Miyoshi,Multilevel transmission technique employing optical amplitude domain multiplexing.,2009,6,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee6.html#MiyoshiKK09,https://doi.org/10.1587/elex.6.750 +Sedat Akleylek,Efficient interleaved Montgomery modular multiplication for lattice-based cryptography.,2014,11,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee11.html#AkleylekT14,https://doi.org/10.1587/elex.11.20140960 +José M. Villegas,Electromagnetic simulation of a synchronous impedance transformer via the hybrid FDTD-MoL method.,2011,8,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee8.html#VillegasJA11,https://doi.org/10.1587/elex.8.1185 +Koichiro Kishima,Floating body CMOS phototransistor memory.,2010,7,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee7.html#KishimaHJ10,https://doi.org/10.1587/elex.7.1790 +Guohai Zheng,Design and implementation of a NoC router supporting multicast.,2014,11,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee11.html#ZhengGZ14,https://doi.org/10.1587/elex.10.20130655 +Sheng Hong,Robust passive beamformer using bridge function sequences as weights.,2009,6,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee6.html#HongYLHT09,https://doi.org/10.1587/elex.6.1192 +Kazuo Nakano,RF signal generator using time domain harmonic suppression technique in 90nm CMOS.,2012,9,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee9.html#NakanoAIM12,https://doi.org/10.1587/elex.9.270 +Xiaojuan Chen,Design of ultra low noise amplifier for noise measurement in inverter fault diagnosis.,2015,12,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee12.html#ChenCW15,https://doi.org/10.1587/elex.12.20141183 +Lingyan Fan,A true random number generator based on meta-stable state.,2018,15,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee15.html#FanLLZL18,https://doi.org/10.1587/elex.14.20171122 +Xiaoyun Li,Enhanced 3 and** VDD-tolerant ESD clamp circuit with stacked configuration.,2017,14,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee14.html#LiCWLLZFHTS17,https://doi.org/10.1587/elex.14.20160901 +Tongfei Yu,Design of planar matching loads for traveling-wave-fed SIW slot arrays.,2017,14,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee14.html#YuZLM17,https://doi.org/10.1587/elex.14.20170467 +Yinghong Zhou,Adjusting the positions of truncation points for JPEG2000 compression.,2008,5,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee5.html#Zhou08,https://doi.org/10.1587/elex.5.94 +Eiichi Sano,RF CMOS inductor shielded by a high-impedance surface.,2004,1,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee1.html#SanoIA04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.233 +Jianming Zhou,A new method of spur reduction in phase truncation for DDS.,2008,5,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee5.html#Zhou08a,https://doi.org/10.1587/elex.5.915 +Koichi Maezawa,Possibility of THz detection with resonant tunneling super regenerative detectors based on extremely high order harmonics.,2013,10,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee10.html#MaezawaPWKNM13,https://doi.org/10.1587/elex.10.20130676 +Youngcheol Park,Design and Analysis of dual-band matching networks using composite right/left handedness for arbitrary impedances.,2010,7,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee7.html#ParkK10,https://doi.org/10.1587/elex.7.601 +Kun Li,Anonymous authentication with unlinkability for wireless environments.,2011,8,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee8.html#LiXHL11,https://doi.org/10.1587/elex.8.536 +Masaoud Houshmand Kaffashian,An optimization method for NBTI-aware design of domino logic circuits in nano-scale CMOS.,2011,8,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee8.html#KaffashianLMM11,https://doi.org/10.1587/elex.8.1406 +Hiroki Sayama,Delay time estimation for optical inverse multiplexing by parallel routes in WDM optical path networks with mesh topology.,2009,6,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee6.html#SayamaTN09,https://doi.org/10.1587/elex.6.461 +Hyunjin Kim,An iterative pattern mapping for parallel string matching architecture in intrusion detection systems.,2012,9,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee9.html#Kim12,https://doi.org/10.1587/elex.9.985 +Katsuhiro Sasaki,Improved phase-detection method using an air-coupled ultrasonic wave for a few-tens of nanometers displacement measurements.,2004,1,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee1.html#SasakiNI04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.472 +Young-Pyo Hong,Multi-functional vehicle mount antenna system using magnetic coupling for FM/TDMB/PCS applications.,2010,7,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee7.html#HongLY10,https://doi.org/10.1587/elex.7.1296 +Sha Wang,An accurate method for image quality evaluation using digital watermarking.,2005,2,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee2.html#WangZZTS05,https://doi.org/10.1587/elex.2.523 +Ji Wei Huang,A ECG offset cancelling readout circuit using a current mode feedback loop technique.,2018,15,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee15.html#HuangKLL18,https://doi.org/10.1587/elex.14.20170891 +Zhisheng Yan,Design and FPGA implementation of digital pulse compression for chirp radar based on CORDIC.,2009,6,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee6.html#YanWWZ09,https://doi.org/10.1587/elex.6.780 +Ifong Wu,The effect of a low dielectric material placed at the tip of a GTEM cell on the electric field.,2009,6,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee6.html#WuIGM09b,https://doi.org/10.1587/elex.6.1608 +Wenlan Chen,A non common-node chaotic Colpitts oscillator with negative resistance enhancement.,2014,11,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee11.html#ChenHLWL14,https://doi.org/10.1587/elex.11.20140902 +Won Joo Lee,Reconfigurable U-shaped tunnel field-effect transistor.,2017,14,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee14.html#LeekCWKK17,https://doi.org/10.1587/elex.14.20170758 +Hyunsun Mo,Delay-based clock generator with edge transmission and reset.,2014,11,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee11.html#MoK14,https://doi.org/10.1587/elex.11.20140573 +Khosrov Dabbagh-Sadeghipour,An accurate track-and-latch comparator.,2012,9,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee9.html#Dabbagh-Sadeghipour12,https://doi.org/10.1587/elex.9.808 +Jun Gyu Lee,A 32-bit 16-program-cycle nonvolatile memory for analog circuit calibration in a standard 0.18µ*m CMOS.,2012,9,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee9.html#LeeM12b,https://doi.org/10.1587/elex.9.477 +Sungwook Moon,Packaging of CWDM bidirectional transceiver using robust tuning scheme of thin-film filter.,2005,2,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee2.html#MoonH05,https://doi.org/10.1587/elex.2.536 +Ivan Ku,Robust multicarrier CDMA receiver for coded power-line communications.,2009,6,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee6.html#Ku09,https://doi.org/10.1587/elex.6.347 +Ryutaro Eguchi,Amplitude trimming of Si waveguides using phase change material.,2016,13,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee13.html#EguchiASMST16,https://doi.org/10.1587/elex.13.20160107 +Yoshiyuki Shimizu,Drain current response delay of FD-SOI MOSFETs in RF operation.,2004,1,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee1.html#ShimizuKMUUCMT04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.518 +Yuji Kosugi,Surface-normal electro-optic-polymer modulator with silicon subwavelength grating.,2016,13,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee13.html#KosugiYONT16,https://doi.org/10.1587/elex.13.20160595 +Jin-Yong Choi,Robust carrier frequency offset estimation for OFDM systems in doppler shift channels.,2010,7,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee7.html#ChoiBS10,https://doi.org/10.1587/elex.7.1747 +Yanyan Shi,Efficient magnetic resonant coupling wireless power transfer with a novel conical-helix resonator.,2017,14,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee14.html#ShiLWZ17,https://doi.org/10.1587/elex.14.20170440 +M. S. Bhuyan,FPGA realization of Inverse Discrete Wavelet Transform.,2009,6,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee6.html#BhuyanMOI09,https://doi.org/10.1587/elex.6.277 +Jian Zhang,Data-recovery algorithm and circuit for cyclic convolution based on FNT.,2009,6,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee6.html#ZhangL09,https://doi.org/10.1587/elex.6.1019 +Tiedi Zhang,High Q series negative capacitor using negative group delay circuit based on a stepped-impedance distributed amplifier.,2017,14,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee14.html#ZhangWX17,https://doi.org/10.1587/elex.14.20170088 +Shasha Mo,A motion compensation method for airborne SAR imagery.,2015,12,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee12.html#MoWLW15,https://doi.org/10.1587/elex.12.20150143 +Chia-Sheng Peng,Strategy of packet detection for burst-mode OFDM systems.,2006,3,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee3.html#PengCW06,https://doi.org/10.1587/elex.3.249 +Naoyuki Ogasawara,Detection of tissue coagulation for microwave surgical devices.,2017,14,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee14.html#OgasawaraS17,https://doi.org/10.1587/elex.14.20161223 +Yang Li,Round-trip latency prediction for memory access fairness in mesh-based many-core architectures.,2014,11,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee11.html#LiCZYL14,https://doi.org/10.1587/elex.11.20141027 +Gim Heng Tan,Design of ultra-low voltage 0.5V CMOS current bleeding mixer.,2012,9,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee9.html#TanSRC12,https://doi.org/10.1587/elex.9.990 +Bong-Ryeol Park,Thermal consideration in LED array design for LCD backlight unit applications.,2010,7,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee7.html#ParkC10,https://doi.org/10.1587/elex.7.40 +S. H. Mohseni Armaki,Periodic tapered printed helical antenna.,2011,8,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee8.html#ArmakiFN11,https://doi.org/10.1587/elex.8.1467 +Ting-Wei Hung,Memory management for dual-addressing memory architecture.,2013,10,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee10.html#HungCL13,https://doi.org/10.1587/elex.10.20130467 +Junghwa Kim,Low-power shared memory architecture power mode for mobile system-on-chip.,2014,11,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee11.html#KimHKKY14,https://doi.org/10.1587/elex.11.20140205 +Hiroharu Sugawara,Low temperature formation of ?-FeSi2 polycrystalline microstructure by pulsed laser deposition and thermal annealing.,2004,1,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee1.html#SugawaraNOKSIKT04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.253 +Gezi Li,An FPGA enhanced extensible and parallel query storage system for emerging NVRAM.,2016,13,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee13.html#LiCCLZHLS16,https://doi.org/10.1587/elex.13.20151109 +Sumra Zeb,Dual-polarized chipless humidity sensor tag.,2017,14,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee14.html#ZebHSALT17,https://doi.org/10.1587/elex.14.20170926 +Guus Colman,DC-coupled directional bridge front-end for vector network analyzer receiver in GHz-range.,2011,8,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee8.html#ColmanBV11,https://doi.org/10.1587/elex.8.814 +Hong-Sik Kim,Ant colony based efficient triplet calculation methodology for arithmetic built-in self test.,2008,5,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee5.html#KimKK08,https://doi.org/10.1587/elex.5.877 +Shusuke Yoshimoto,Flexible electronics for bio-signal monitoring in implantable applications.,2017,14,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee14.html#YoshimotoAUNS17,https://doi.org/10.1587/elex.14.20172003 +Teruki Ishido,Depth profiles of strain in AlGaN/GaN heterostructures grown on Si characterized by electron backscatter diffraction technique.,2007,4,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee4.html#IshidoMKUIU07,https://doi.org/10.1587/elex.4.775 +Seung-Hoon Kim,A 3.125-to-22-Gb/s multi-rate clock and data recovery using voltage-regulated active filter.,2014,11,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee11.html#KimYCLHCP14,https://doi.org/10.1587/elex.11.20140953 +Masoumeh Rezvani,A novel Butler matrix feeding system for BST multi-band antennas.,2013,10,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee10.html#RezvaniNG13,https://doi.org/10.1587/elex.10.20120606 +Krishna M. Diwakar,Delta-Sigma Modulator based multiplier.,2009,6,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee6.html#DiwakarSLS09,https://doi.org/10.1587/elex.6.322 +Jianguang Chen,All switched-capacitor realized piezoresistive pressure sensor interface chip for automotive TPMS.,2013,10,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee10.html#ChenZHC13,https://doi.org/10.1587/elex.10.20120641 +Hua-Pin Chen,Voltage-mode universal biquadratic filter and quadrature oscillator using CFAs.,2016,13,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee13.html#ChenHKWW16,https://doi.org/10.1587/elex.13.20160510 +Julio Cesar Rosas-Caro,Two switches based AC-link phase-shifter.,2012,9,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee9.html#Rosas-CaroFMGVC12,https://doi.org/10.1587/elex.9.1266 +R. Abrini,Efficient modeling of isotropic cold plasma media using JE-TLM method.,2007,4,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee4.html#AbriniYK07,https://doi.org/10.1587/elex.4.492 +Jiyue Duan,Design and testing of a novel rotary transformer for rotary ultrasonic machining.,2017,14,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee14.html#DuanLYL17,https://doi.org/10.1587/elex.14.20171033 +Abdelouahab Abid,Staged reservation scheme for optical burst switching networks.,2005,2,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee2.html#AbidAE05,https://doi.org/10.1587/elex.2.327 +Guohua Liu,Bandwidth enhancement of three-device Doherty power amplifier based on symmetric devices.,2018,15,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee15.html#LiuCZCG18,https://doi.org/10.1587/elex.15.20171222 +Seong-Lyong Gong,Link weight optimization for routing in communication networks.,2010,7,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee7.html#GongKLLA10,https://doi.org/10.1587/elex.7.33 +Kazuya Ohira,GaInAsP/InP distributed reflector laser with phase-shifted DFB and quantum-wire DBR sections.,2005,2,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee2.html#OhiraMUYA05,https://doi.org/10.1587/elex.2.356 +Young-Jin Kim,Frequency-based NCQ-aware disk cache algorithm.,2014,11,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee11.html#Kim14,https://doi.org/10.1587/elex.11.20140363 +Young-Joon Song,Synchronization circuit with sidelobe cancellation.,2011,8,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee8.html#SongK11,https://doi.org/10.1587/elex.8.1583 +Seung-Jin Chang,Air gap measurement in cable of automotive electronics based on electromagnetic wave.,2017,14,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee14.html#ChangP17,https://doi.org/10.1587/elex.14.20161275 +Katsuaki Tanabe,Novel III-V/Si hybrid laser structures with current injection across conductive wafer-bonded heterointerfaces: A proposal and analysis.,2011,8,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee8.html#TanabeIA11,https://doi.org/10.1587/elex.8.596 +Dae-Gi Yoon,Broadband high-gain Linearly Tapered Slot Antenna with outside corrugations.,2011,8,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee8.html#YoonHAJPY11,https://doi.org/10.1587/elex.8.202 +Zhijian Lu,Integrated CMOS edge voltage quantizer for detection of low-frequency simple waveforms.,2015,12,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee12.html#LuPZ15,https://doi.org/10.1587/elex.12.20150898 +Jianxiong Huang,On the performance of partial relay selection in dual-hop relaying with beamforming.,2011,8,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee8.html#HuangZY11,https://doi.org/10.1587/elex.8.252 +Seong Jin Cho,A powersaving DVFS algorithm based on Operational Intensity for embedded systems.,2015,12,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee12.html#ChoYJ15,https://doi.org/10.1587/elex.12.20141128 +Jeng-Shyang Pan,Index assignment for MDVQ over memoryless binary symmetric channel with packet erasure.,2006,3,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee3.html#PanZYH06,https://doi.org/10.1587/elex.3.1 +Ki-Chai Kim,Shielding effectiveness through narrow slots in dual conducting screens.,2013,10,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee10.html#KimPL13,https://doi.org/10.1587/elex.10.20130750 +Mingjie Zhou,A tunable Gm-C polyphase filter with high linearity and automatic frequency calibration.,2014,11,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee11.html#ZhouWCC14,https://doi.org/10.1587/elex.11.20140794 +Sungju Lee,Real-time processing for intelligent-surveillance applications.,2017,14,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee14.html#LeeKSPC17,https://doi.org/10.1587/elex.14.20170227 +Myunghoi Kim,A stepped-impedance true time delay line using GaAs MMIC technology.,2016,13,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee13.html#Kim16,https://doi.org/10.1587/elex.13.20160463 +Xin Cao,Design of a double balanced mixer based on a novel planar UWB balun.,2016,13,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee13.html#CaoTW16,https://doi.org/10.1587/elex.13.20160026 +Patinya Ketthong,A simple current-reversible chaotic jerk circuit using inherent tanh(x) of an opamp.,2017,14,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee14.html#KetthongSST17,https://doi.org/10.1587/elex.14.20170192 +Hajime Imai,Evaluation of scattered-light spectra to apply the estimate of absorption spectra of flowers' petals.,2006,3,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee3.html#ImaiSS06,https://doi.org/10.1587/elex.3.269 +Xiaowen Chen,Cooperative communication for efficient and scalable all-to-all barrier synchronization on mesh-based many-core NoCs.,2014,11,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee11.html#ChenLJCGL14,https://doi.org/10.1587/elex.11.20140542 +Paeiz Azmi,Interference cancellation in asynchronous MC-CDMA communication systems using EM algorithm.,2009,6,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee6.html#Azmi09,https://doi.org/10.1587/elex.6.1503 +Amir Nikpaik,Very low noise current- shaped optimally coupled CMOS LC quadrature VCO.,2010,7,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee7.html#NikpaikN10,https://doi.org/10.1587/elex.7.520 +Bao-Lin Wei,Design of a low-voltage CMOS mixer based on variable load technique.,2010,7,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee7.html#WeiD0M010,https://doi.org/10.1587/elex.7.473 +Shaodong Chen,Design analysis of a high-Q micromechanical capacitive accelerometer system.,2017,14,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee14.html#ChenX17,https://doi.org/10.1587/elex.14.20170410 +Hyohyun Nam,Comparative study in work-function variation: Gaussian vs. Rayleigh distribution for grain size.,2013,10,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee10.html#NamS13,https://doi.org/10.1587/elex.10.20130109 +Wenmin Hu,A hybrid multicast deadlock-free scheme for virtualization at the NoC level.,2011,8,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee8.html#HuLZ11,https://doi.org/10.1587/elex.8.1743 +Hamid Movahedian,Wide-range single-ended CMOS track-and-hold circuit.,2007,4,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee4.html#MovahedianSB07,https://doi.org/10.1587/elex.4.400 +So Kogahara,Optical amplification characteristics of Ti-diffused waveguides on Erbium-doped LiNbO3 crystal.,2007,4,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee4.html#KogaharaSNKNI07,https://doi.org/10.1587/elex.4.134 +Youngcheol Park,Analysis on high-order intermodulation of frequency multipliers with harmonic injection.,2008,5,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee5.html#ParkS08,https://doi.org/10.1587/elex.5.568 +Munkyo Seo,A 529 GHz dynamic frequency divider in 130 nm InP HBT process.,2015,12,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee12.html#SeoHUSR15,https://doi.org/10.1587/elex.12.20141118 +Tongfeng Zhang,A chaotic pulse sequence generator based on the tent map.,2015,12,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee12.html#ZhangLGYGM15,https://doi.org/10.1587/elex.12.20150530 +Seongjae Cho,Investigation of source-to-drain capacitance by DIBL effect of silicon nanowire MOSFETs.,2010,7,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee7.html#ChoKK10,https://doi.org/10.1587/elex.7.1499 +Yujin Park,Column readout circuit with dual integration CDS for infrared imagers.,2016,13,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee13.html#ParkYAK16,https://doi.org/10.1587/elex.13.20151037 +Masayuki Furuhashi,Atomic configuration of boron pile-up at the Si/SiO2 interface.,2004,1,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee1.html#FuruhashiHTTT04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.126 +Ehsan Kargaran,An ultra low power OTA with improved unity gain bandwidth product.,2013,10,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee10.html#KargaranZMKM13,https://doi.org/10.1587/elex.10.20130690 +Yuya Yamaguchi,Precise chirp parameter measurement of asymmetric Mach-Zehnder modulators with active Y-branch.,2013,10,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee10.html#YamaguchiYKKIN13,https://doi.org/10.1587/elex.10.20130311 +Changlong Jin,High-resolution orientation field estimation based on multi-scale Gaussian filter.,2009,6,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee6.html#JinK09,https://doi.org/10.1587/elex.6.1781 +Yasuo Terasawa,A visual prosthesis with 100 electrodes featuring wireless signals and wireless power transmission.,2008,5,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee5.html#TerasawaUYSSOTO08,https://doi.org/10.1587/elex.5.574 +Jin-Taek Seong,Error analysis of an analog correlator for polarimetry.,2018,15,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee15.html#SeongKK18,https://doi.org/10.1587/elex.15.20171207 +Carlos Alberto Bonilla Barragán,Proposal of a slotted circular waveguide as an open-circuited standard for calibration of L-band network analyzers.,2010,7,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee7.html#BarraganJA10,https://doi.org/10.1587/elex.7.1646 +Minoru Fujishima,Recent trends and future prospective on millimeter-wave CMOS circuits.,2009,6,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee6.html#Fujishima09,https://doi.org/10.1587/elex.6.721 +Li Cheng,A novel topology based on the 4-terminal switch-network for photovoltaic Inverter.,2016,13,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee13.html#ChengXWH16,https://doi.org/10.1587/elex.13.20160205 +Eun-Hee Lee,Implementation of high-speed SHA-1 architecture.,2009,6,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee6.html#LeeLPC09,https://doi.org/10.1587/elex.6.1174 +Hongwei Deng,High isolation and common-mode suppression balanced-to-balanced microstrip diplexer with mixed coupling.,2017,14,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee14.html#DengZLXC17,https://doi.org/10.1587/elex.14.20171092 +Yun-Tao Liu,A dual-channel wide input range interface circuit for electrochemical amperometric sensors.,2015,12,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee12.html#LiuCLR15,https://doi.org/10.1587/elex.12.20150568 +Dasheng Cui,Integrated lens antenna with a conic extension at 220 GHz.,2017,14,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee14.html#CuiSDL17,https://doi.org/10.1587/elex.14.20170741 +Yi-Mao Hsiao,High-throughput intrusion detection system with parallel pattern matching.,2012,9,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee9.html#HsiaoCCH12,https://doi.org/10.1587/elex.9.1467 +Christophe van Praet,Fast H.264 intra prediction for network video processing.,2013,10,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee10.html#PraetTVMCB13,https://doi.org/10.1587/elex.10.20130206 +Mohammad Azizur Rahman,Impact of emission constraints on DS-UWB communications with arbitrary chip-duty.,2004,1,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee1.html#RahmanSZK04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.483 +Yosuke Mizuno,Pilot demonstration of refractive index sensing using polymer optical fiber crushed with slotted screwdriver.,2017,14,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee14.html#MizunoLSMTNN17,https://doi.org/10.1587/elex.14.20170962 +Ji-Hoon Kim,Memory reduced MAP decoding for double-binary turbo decoder.,2011,8,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee8.html#Kim11b,https://doi.org/10.1587/elex.8.1996 +C. M. R. Prabhu,Low-power reliable SRAM cell for write/read operation.,2014,11,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee11.html#PrabhuS14,https://doi.org/10.1587/elex.11.20140913 +Satoshi Shiraki,Loss reduction of lateral power diode on SOI substrate with trenched buried oxide layer.,2013,10,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee10.html#ShirakiTAHF13,https://doi.org/10.1587/elex.10.20130807 +Youhui Zhang,Optimized mapping of pixels into memory for H.264/AVC decoding.,2009,6,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee6.html#ZhangXZ09,https://doi.org/10.1587/elex.6.283 +Jaime Ramírez-Angulo,Low-voltage wide gm adjustable range highly linear BiCMOS OTA.,2005,2,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee2.html#Ramirez-AnguloSLC05,https://doi.org/10.1587/elex.2.127 +Chung-Hsun Huang,A compact programmable LDO regulator for ultra-low voltage SoC.,2014,11,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee11.html#HuangL14,https://doi.org/10.1587/elex.11.20140820 +Zihui Wei,11b 60 MHz pipelined ADC with inverter-based class AB amplifier in 28 nm CMOS technology.,2017,14,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee14.html#WeiXH17,https://doi.org/10.1587/elex.14.20170047 +Pitchandi Velrajkumar,Bit parallel - iterative circuit for robotic application.,2012,9,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee9.html#VelrajkumarSRW12,https://doi.org/10.1587/elex.9.443 +Reza Rouhi,Compact Elliptic function Lowpass Filter based on Defected Ground Structure.,2010,7,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee7.html#RouhiGNP10,https://doi.org/10.1587/elex.7.434 +Seong Jae Jeong,Circular hook-shaped wireless USB dongle antenna with an open stub.,2010,7,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee7.html#JeongH10a,https://doi.org/10.1587/elex.7.1370 +Keivan Navi,Ultra high speed Full Adders.,2008,5,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee5.html#NaviMMNHS08,https://doi.org/10.1587/elex.5.744 +Zhen Yang,A new automatic method for testing interconnect resources in FPGAs based on general routing matrix.,2015,12,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee12.html#YangLWL15,https://doi.org/10.1587/elex.12.20150747 +Yongpeng Cheng,InGaAs MSM photodetector monolithically integrated with InP photonic-wire waveguide on III-V CMOS photonics platform.,2014,11,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee11.html#ChengITT14,https://doi.org/10.1587/elex.11.20140609 +Joobeom Yun,MiGuard : Detecting and Guarding against Malicious Iframe through API Hooking.,2011,8,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee8.html#YunSKY11,https://doi.org/10.1587/elex.8.460 +Shi-Ce Ni,Parallel graph traversal for FPGA.,2014,11,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee11.html#NiDZLW14,https://doi.org/10.1587/elex.11.20130987 +Qi Han,Monolithic integrated MEMS phased array antenna scanning in two dimensions.,2017,14,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee14.html#HanXCFL17,https://doi.org/10.1587/elex.14.20170484 +Nam Ha-Van,Design of high PAE class-E power amplifier for wireless power transmission.,2014,11,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee11.html#Ha-VanS14,https://doi.org/10.1587/elex.11.20140682 +Mi Tian,Design of Q-enhanced Class-C VCO with robust start-up and high oscillation stability.,2014,11,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee11.html#TianWXZ14,https://doi.org/10.1587/elex.11.20140982 +Yusuf Nur Wijayanto,Novel electro-optic microwave-lightwave converters utilizing a patch antenna embedded with a narrow gap.,2011,8,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee8.html#WijayantoMO11,https://doi.org/10.1587/elex.8.491 +Kyung-Sub Son,On-chip jitter tolerance measurement technique with independent jitter frequency modulation from VCO in CDR.,2015,12,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee12.html#SonK15,https://doi.org/10.1587/elex.12.20150570 +Seehwan Yoo,An empirical validation of power-performance scaling: DVFS vs. multi-core scaling in big.LITTLE processor.,2015,12,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee12.html#Yoo15,https://doi.org/10.1587/elex.12.20150236 +Wenmin Hu,Self-selection pseudo- circuit: a clever crossbar pre-allocation.,2012,9,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee9.html#HuLLJF12,https://doi.org/10.1587/elex.9.558 +Katsumi Takano,Optical tunable delay lines using fiber ring with acousto-optic frequency shifters and EDFAs: I. experimental demonstration.,2006,3,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee3.html#TakanoNI06,https://doi.org/10.1587/elex.3.442 +Baolin Zhao,Compact tunable bandpass filter with improved stopband rejection and wide tuning range.,2013,10,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee10.html#ZhaoGWGS13,https://doi.org/10.1587/elex.10.20130561 +Omar A. Barrera,A circularly polarized harmonic-rejecting antenna for wireless power transfer applications.,2013,10,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee10.html#BarreraLQHP13,https://doi.org/10.1587/elex.10.20130665 +Guiguang Ding,Video annotation based on adaptive annular spatial partition scheme.,2010,7,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee7.html#Ding0L10,https://doi.org/10.1587/elex.7.7 +Xuehui Guan,Microstrip diplexer based on common dual-band filter.,2017,14,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee14.html#GuanSYWM17,https://doi.org/10.1587/elex.14.20170709 +Sangjin Byun,1~3 GHz VCO with rail-to-rail VCONT range.,2016,13,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee13.html#Byun16,https://doi.org/10.1587/elex.13.20160373 +Xinyu Wang,An innovative routing scheme to reduce communication delay in DMesh networks.,2015,12,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee12.html#WangYSW15,https://doi.org/10.1587/elex.12.20150353 +Mohammad Naser-Moghadasi,Harmonics blocking in hairpin filter using Defected Microstrip Structure.,2011,8,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee8.html#Naser-MoghadasiAR11a,https://doi.org/10.1587/elex.8.629 +Zahid A. Syed,Performance optimization to alleviate I/O constraints in designing large FPGA shifters.,2008,5,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee5.html#SyedN08,https://doi.org/10.1587/elex.5.29 +Daqing Zheng,A microwave radar system based on carrier modulation and heterodyne phase difference detecting with time-to-digital converter.,2014,11,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee11.html#ZhengCCL14,https://doi.org/10.1587/elex.11.20140791 +Jong-Phil Hong,A low supply voltage and wide-tuned CMOS Colpitts VCO.,2014,11,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee11.html#Hong14,https://doi.org/10.1587/elex.11.20140428 +Umberto Paoletti,Indirect extension of the image theory to partial inductance calculations.,2008,5,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee5.html#PaolettiHW08,https://doi.org/10.1587/elex.5.644 +So-Young Yeo,Comprehensive design for multirate and multicarrier communications systems.,2011,8,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee8.html#YeoBLS11,https://doi.org/10.1587/elex.8.923 +Shunji Nakata,Adiabatic quasi 6T-SRAM with shared writing and reading ports.,2008,5,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee5.html#Nakata08,https://doi.org/10.1587/elex.5.163 +Ahmad Afifi,STDP implementation using memristive nanodevice in CMOS-Nano neuromorphic networks.,2009,6,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee6.html#AfifiAR09,https://doi.org/10.1587/elex.6.148 +Seung-Ho Lim,Bitmap discard operation for the higher utilization of flash memory storage.,2016,13,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee13.html#LimA16,https://doi.org/10.1587/elex.12.20150976 +Neil Joye,Amplitude modulation based readout for very dense active microelectrode arrays.,2011,8,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee8.html#JoyeSL11,https://doi.org/10.1587/elex.8.38 +Ching-Che Chung,A high-performance wear-leveling algorithm for flash memory system.,2012,9,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee9.html#ChungSH12,https://doi.org/10.1587/elex.9.1874 +Chun Wei Lin,A linear CMOS temperature sensor with an inaccuracy of and#177*0.15®6*C.,2012,9,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee9.html#LinL12b,https://doi.org/10.1587/elex.9.1556 +Zuyuan He,Measurement and modeling of spectral transmission tilt in WDM systems due to stimulated Raman scattering.,2004,1,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee1.html#HeCBZSM04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.311 +Jianfeng Zhang,Adaptive recoding CORDIC.,2012,9,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee9.html#ZhangLHLZ12,https://doi.org/10.1587/elex.9.765 +Jose Genaro Gonzalez-Hernandez,Bootstrap cascaded multilevel converter.,2014,11,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee11.html#Gonzalez-HernandezMVRBRG14,https://doi.org/10.1587/elex.11.20140561 +Siti Rohani Sheikh Raihan,FPGA-based PWM for three-phase SEPIC rectifier.,2010,7,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee7.html#RaihanR10,https://doi.org/10.1587/elex.7.1335 +Yuji Sano,Study on improvement of visual abilities by watching stereoscopic image.,2016,13,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee13.html#Sano16,https://doi.org/10.1587/elex.13.20150980 +Xiaoqiang Zhang,Low-delay parallel Chien search architecture for RS decoder.,2016,13,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee13.html#ZhangWZLY16,https://doi.org/10.1587/elex.13.20160729 +Xiaowen Chen,Cooperative communication based barrier synchronization in on-chip mesh architectures.,2011,8,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee8.html#ChenLJCL11,https://doi.org/10.1587/elex.8.1856 +Mohammad B. Vahidfar,A new technique for high IIP2 reconfigurable CMOS mixer in multi-standard receivers.,2007,4,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee4.html#VahidfarS07,https://doi.org/10.1587/elex.4.140 +Bahram Kouhi-Jelehkaran,Improvement in speech recognition using phone-based filter and sum parameter optimization.,2009,6,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee6.html#Kouhi-JelehkaranBR09,https://doi.org/10.1587/elex.6.437 +Yan Li,Supply voltage analysis for MRF circuits design based on information theory.,2017,14,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee14.html#LiHL17,https://doi.org/10.1587/elex.13.20161080 +Jiao Chen,Proposal of multiple-slot silica high-mesa waveguide for infrared absorption.,2013,10,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee10.html#ChenHTNH13,https://doi.org/10.1587/elex.10.20130871 +Hideaki Fujimoto,Equivalent circuits and transmission zeros of the coupled square-loop resonator.,2007,4,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee4.html#FujimotoMK07,https://doi.org/10.1587/elex.4.575 +Minoru Fujishima,Recent progress and prospects of terahertz CMOS.,2015,12,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee12.html#FujishimaA15,https://doi.org/10.1587/elex.12.20152006 +Mohd Hairi Halmi,Decoding alamouti STBC from received signal power.,2009,6,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee6.html#HalmiAC09,https://doi.org/10.1587/elex.6.249 +Panduka Wijetunga,A 10.0Gb/s all-active LVDS receiver in 0.18µ*m CMOS technology.,2006,3,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee3.html#Wijetunga06,https://doi.org/10.1587/elex.3.216 +Teng-Hung Chang,New Wideband Cascaded Sigma Delta Modulator for Multimode Wireless Receiver.,2004,1,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee1.html#ChangD04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.57 +Ming Liu,Delay-optimized realization of 2-parallel delayed LMS adaptive FIR filter.,2017,14,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee14.html#LiuWLZ17a,https://doi.org/10.1587/elex.14.20170225 +Yue Xi,A novel acquisition scheme for Galileo E1 OS signals.,2014,11,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee11.html#XiDJYHZ14,https://doi.org/10.1587/elex.11.20140979 +To-Po Wang,Performance enhancement techniques for CMOS power amplifier.,2011,8,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee8.html#Wang11,https://doi.org/10.1587/elex.8.969 +Ching-Che Chung,A counter-based all-digital spread-spectrum clock generator with high EMI reduction in 65nm CMOS.,2013,10,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee10.html#ChungSH13,https://doi.org/10.1587/elex.10.20130090 +Byeongdu La,Selective intra-prediction Skip Algorithm for inter-frame coding in H.264/AVC.,2009,6,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee6.html#LaJC09,https://doi.org/10.1587/elex.6.71 +Phooi Yee Lau,A new framework for managing video-on-demand servers: quad-tier hybrid architecture.,2011,8,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee8.html#LauP11,https://doi.org/10.1587/elex.8.1399 +Tetsuya Suemitsu,Improved stability in wide-recess InP HEMTs by means of a fully passivated two-step-recess gate.,2006,3,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee3.html#SuemitsuFTRMZ06,https://doi.org/10.1587/elex.3.310 +S. P. K. Babu,Reduced complexity optimum detector for Block Data Transmission Systems.,2009,6,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee6.html#BabuSG09,https://doi.org/10.1587/elex.6.1649 +Zhenhai Chen,A PVT insensitive boosted charge transfer for high speed charge-domain pipelined ADCs.,2012,9,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee9.html#ChenYHZJ12,https://doi.org/10.1587/elex.9.565 +Hai-Han Lu,A-10Gbit/s lightwave transport system based on VCSEL and SOA with external light injection technique.,2004,1,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee1.html#LuLJTL04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.228 +Kwang Jin Kim,Accurate relative position indicator for tracking-based position estimation system.,2014,11,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee11.html#KimSBBLPPKDC14,https://doi.org/10.1587/elex.11.20130939 +Yasuhisa Yamamoto,Ultra-wideband (UWB) bandpass filter using shunt stub with lumped capacitor.,2007,4,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee4.html#YamamotoLH07,https://doi.org/10.1587/elex.4.227 +Vinaya L. Shrestha,An ultra-low-power pseudo-random number generator based on biologically inspired chaotic silicon neuron circuit.,2012,9,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee9.html#ShresthaMHM12,https://doi.org/10.1587/elex.9.1756 +Weiping Li,A novel planar tri-band bandpass filter using stub-loaded resonators.,2016,13,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee13.html#LiTLC16,https://doi.org/10.1587/elex.13.20160605 +Chunyu Peng,Erratum: A novel cascade control replica-bitline delay technique for reducing timing process-variation of SRAM sense amplifier [IEICE Electronics Express Vol 12 (2015) No 5 pp 20150102].,2015,12,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee12.html#PengTLLJYC15a,https://doi.org/10.1587/elex.12.20158001 +Muhammad Shafiq,Direct adaptive inverse control.,2009,6,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee6.html#ShafiqS09,https://doi.org/10.1587/elex.6.223 +Shih-Hsu Huang,Power-mode-aware buffer synthesis for low-power clock skew minimization.,2016,13,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee13.html#HuangC16,https://doi.org/10.1587/elex.13.20160511 +Changho Yoon,3D die-stacked DRAM thermal management via task allocation and core pipeline control.,2018,15,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee15.html#YoonSMK18,https://doi.org/10.1587/elex.15.20171253 +Yong-Min Lee,Design of force measurement module for force touch screens.,2017,14,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee14.html#LeeL17,https://doi.org/10.1587/elex.14.20170805 +Jose Juan Garcia-Hernandez,Data hiding in audio signal using Rational Dither Modulation.,2008,5,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee5.html#Garcia-HernandezNP08,https://doi.org/10.1587/elex.5.217 +Ziyi Hao,EDSU: Error detection and sampling unified flip-flop with ultra-low overhead.,2016,13,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee13.html#HaoXCMDY16,https://doi.org/10.1587/elex.13.20160682 +Sang Joon Hwang,A pre-emphasis output buffer control scheme for a GDDR3 SDRAM interface.,2008,5,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee5.html#HwangJS08,https://doi.org/10.1587/elex.5.446 +Hamed Dalir,Spatial mode multiplexer/demultiplexer based on tapered hollow waveguide.,2011,8,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee8.html#DalirYK11,https://doi.org/10.1587/elex.8.684 +Seung Hyun Choi,Design of an application specific instruction set processor for a universal bitstream codec.,2014,11,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee11.html#ChoiRSL14,https://doi.org/10.1587/elex.11.20141047 +Ch'ng Siew Sin,Configurable transmitter with de-emphasis scheme supporting wide range data rates.,2013,10,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee10.html#SinMBZ13,https://doi.org/10.1587/elex.10.20130365 +Xiaoqiang Zhang,An optimized delay-aware common subexpression elimination algorithm for hardware implementation of binary-field linear transform.,2014,11,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee11.html#ZhangWZC14,https://doi.org/10.1587/elex.11.20140934 +Jong-Ho Park,A new active pixel structure with a pinned photodiode for wide dynamic range image sensors.,2005,2,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee2.html#ParkKW05,https://doi.org/10.1587/elex.2.482 +Muhammad Tahir Akhtar,Acoustic feedback neutralization in active noise control systems.,2007,4,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee4.html#AkhtarTAK07,https://doi.org/10.1587/elex.4.221 +Ifong Wu,Probe calibration by using a different type of probe as a reference in GTEM cell above 1GHz.,2010,7,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee7.html#WuIGM10,https://doi.org/10.1587/elex.7.460 +Seon-Woo Hwang,Divide-by-N and divide-by-N/N+1 prescalers based on a shift register and a multi-input NOR gate.,2012,9,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee9.html#HwangM12,https://doi.org/10.1587/elex.9.1611 +Sohaib Tahir,Robust digital deadbeat control design technique for 3 phase VSI with disturbance observer.,2017,14,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee14.html#TahirWKB17,https://doi.org/10.1587/elex.14.20170351 +Kazuto Ohsawa,Channel thickness dependence on InGaAs MOSFET with n-InP source for high current density.,2014,11,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee11.html#OhsawaKKUM14,https://doi.org/10.1587/elex.11.20140567 +Hongyi Li,Novel single-loop multi-bit sigma-delta modulator using OTA sharing technique without DEM.,2011,8,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee8.html#LiWJZ11,https://doi.org/10.1587/elex.8.2041 +Abumoslem Jannesari,Source-injection serial coupled CMOS LC quadrature VCO.,2007,4,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee4.html#JannesariK07a,https://doi.org/10.1587/elex.4.467 +Seung-Ryeol Kim,Auto-brightness control technology depending on user's pupil area.,2018,15,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee15.html#KimL18,https://doi.org/10.1587/elex.15.20171239 +Eui-Sung Jung,Implantable microphone with acoustic tube for fully implantable hearing devices.,2011,8,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee8.html#JungSLLC11,https://doi.org/10.1587/elex.8.215 +Zeyad Assi Obaid,Implementation of Multistructure PID-like fuzzy logic controller using FPGA.,2010,7,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee7.html#ObaidSMH10,https://doi.org/10.1587/elex.7.132 +Hui Zhao,A 0.2 V-1.8 V 8T SRAM with Bit-interleaving Capability.,2014,11,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee11.html#ZhaoFCSG14,https://doi.org/10.1587/elex.11.20140229 +Hideki Shima 0002,Experimental study of integrated tunable transformer.,2005,2,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee2.html#ShimaM005,https://doi.org/10.1587/elex.2.561 +Byung-Gyu Yu,An improved active frequency drift anti-islanding method for multiple PV micro-inverter systems.,2014,11,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee11.html#Yu14a,https://doi.org/10.1587/elex.11.20140143 +Kyung Ki Kim,Standby power reduction using optimal supply voltage and body-bias voltage.,2008,5,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee5.html#KimK08,https://doi.org/10.1587/elex.5.556 +Ding Deng,A novel power-efficient IC test scheme.,2017,14,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee14.html#DengCG17,https://doi.org/10.1587/elex.14.20170462 +Giuseppe Caruso,A delay model valid in all the regions of operation of the MOS transistor for the energy-efficient design of MCML gates.,2013,10,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee10.html#Caruso13,https://doi.org/10.1587/elex.10.20130599 +Zhichao Zhang,A 0.1-8 GHz wideband low-noise amplifier exploiting gain-enhanced noise-cancelling technique.,2016,13,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee13.html#ZhangDC16,https://doi.org/10.1587/elex.12.20150917 +Dengyun Lei,Resource-efficient acquisition architecture for BOC-modulated signals.,2014,11,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee11.html#LeiLY14,https://doi.org/10.1587/elex.11.20140358 +Jun Luo,Hardware efficient architecture for compressed imaging.,2014,11,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee11.html#LuoHCW14a,https://doi.org/10.1587/elex.11.20140562 +Chang Liu,A variable step size subband affine projection algorithm with dynamic selection of subband filters.,2011,8,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee8.html#LiuHZLX11,https://doi.org/10.1587/elex.8.715 +Walder Andre,Micro-photovoltaic cells designed for magnetotaxis-based controlled bacterial microrobots.,2008,5,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee5.html#AndreM08,https://doi.org/10.1587/elex.5.101 +Karthikeyan Sholampettai Subramanian,Notched UWB bandpass filter using complementary single split ring resonator.,2010,7,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee7.html#SubramanianK10,https://doi.org/10.1587/elex.7.1290 +Sheng Liu,A novel parallel memory organization supporting multiple access types with matched memory modules.,2012,9,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee9.html#LiuCCG12,https://doi.org/10.1587/elex.9.602 +Maryam Amirhoseiny,Optical properties of photo-electrochemical etching of anisotropic silicon (110).,2012,9,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee9.html#AmirhoseinyHS12,https://doi.org/10.1587/elex.9.752 +Peng Li,Effect of charge sharing on SEU sensitive area of 40-nm 6T SRAM cells.,2014,11,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee11.html#LiZZZSF14,https://doi.org/10.1587/elex.11.20140051 +Guoxuan Qin,On the performance characterization of silicon MOSFETs on 4®6* off-axis substrate.,2016,13,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee13.html#QinLGDMML16,https://doi.org/10.1587/elex.13.20160634 +Young-il Park,Four-way beam steering monopole array antenna with switched feeding network.,2015,12,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee12.html#ParkSPKS15,https://doi.org/10.1587/elex.11.20141091 +Hossein Shamsi,Return to-zero feedback insertion in a continuous time Delta-Sigma modulator for excess loop delay compensation.,2004,1,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee1.html#ShamsiS04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.568 +Mohsine Khalladi,A SCN-TLM approach for the analysis of Lorentz dispersive media.,2005,2,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee2.html#KhalladiY05,https://doi.org/10.1587/elex.2.373 +Tetsuya Kawanishi,Optical FSK transmission with group delay compensated balance detection.,2005,2,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee2.html#KawanishiFHISI05,https://doi.org/10.1587/elex.2.333 +Masanori Nakahama,Lateral integration of MEMS VCSEL and slow light amplifier boosting single mode power.,2012,9,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee9.html#NakahamaSK12,https://doi.org/10.1587/elex.9.544 +Li Lai,A new PWM approach for digital boost power factor correction controller.,2015,12,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee12.html#LaiLH15,https://doi.org/10.1587/elex.12.20150279 +Fumiaki Yamashita,Analytical design of a 0.5V 5GHz CMOS LC-VCO.,2009,6,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee6.html#YamashitaMKTP009,https://doi.org/10.1587/elex.6.1025 +Qi-Sheng Zhang,A high DC-gain low-power current recycling amplifier in deep sub-micron technology.,2013,10,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee10.html#ZhangDZ13,https://doi.org/10.1587/elex.10.20130624 +Keiji Goto,Asymptotic solution with higher-order approximation for transient whispering gallery mode radiation field excited by a UWB pulse source.,2011,8,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee8.html#GotoKI11,https://doi.org/10.1587/elex.8.561 +Juan Pedro Arias-Angulo,Power quality improvement by interleaving unequal switching converters.,2016,13,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee13.html#PedroRBVHGAG16,https://doi.org/10.1587/elex.13.20160558 +Zhanghong Tang,Design and optimize spherical particle absorber by Fe-rich hollow cenosphere of fly-ash for broadband electromagnetic wave absorbing wall.,2015,12,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee12.html#TangWXXS15,https://doi.org/10.1587/elex.12.20150037 +Lin Mao,Improved predictive current control of NPC multilevel inverters.,2016,13,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee13.html#MaoYC16,https://doi.org/10.1587/elex.13.20160978 +Tomohito Kawa,Single-end-access strain and temperature sensing based on multimodal interference in polymer optical fibers.,2017,14,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee14.html#KawaNLHMN17,https://doi.org/10.1587/elex.14.20161239 +Son Trinh-Van,Meandered UC-EBG structure for a reduction of the mutual coupling in a patch antenna array.,2012,9,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee9.html#Trinh-VanH12,https://doi.org/10.1587/elex.9.1748 +Xuenan Cui,A novel noise removal using homomorphic normalization for multi-echo knee MRI.,2011,8,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee8.html#CuiKHK11,https://doi.org/10.1587/elex.8.604 +Tomohiko Ito,Capacitance Mismatch Evaluation for Low-power Pipeline ADC Design.,2004,1,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee1.html#ItoYKI04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.63 +Yiran Cui,Novel design of substrate integrated waveguide filter employing broadside-coupled complementary split ring resonators.,2015,12,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee12.html#CuiJZL15,https://doi.org/10.1587/elex.12.20150188 +Yen-Ting Pan,High performance InGaAsP lasers fabricated by ion-implantation induced quantum well intermixing.,2008,5,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee5.html#PanLLW08,https://doi.org/10.1587/elex.5.901 +Rong Ran,Multimode precoder design for STBC with limited feedback in MIMO based wireless communication system.,2009,6,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee6.html#RanYK09,https://doi.org/10.1587/elex.6.173 +Fahime Moein-darbari,CGMAP: a new approach to Network-on-Chip mapping problem.,2009,6,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee6.html#Moein-darbariKG09,https://doi.org/10.1587/elex.6.27 +Yiran Xu,Area-efficient charge pump with local boost technique for embedded flash memory.,2017,14,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee14.html#XuZXYHLKZ17,https://doi.org/10.1587/elex.14.20170944 +YuLiang Chang,New target detection method in strong active jamming background for polarimetric radar.,2013,10,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee10.html#ChangWD13,https://doi.org/10.1587/elex.10.20120854 +Hyungil Chae,Double-sampling highpass delta-sigma modulator with inherent frequency translation.,2017,14,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee14.html#Chae17,https://doi.org/10.1587/elex.14.20170862 +Li Zhanhui,Light-weight one-cycle timing error correction based on hardware software co-design.,2016,13,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee13.html#ZhanhuiDYMX16,https://doi.org/10.1587/elex.13.20160411 +Hisakazu Kikuchi,Luma-based directional copy interpolation for color bilevel AM halftoning for printing.,2008,5,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee5.html#KikuchiIMS08,https://doi.org/10.1587/elex.5.170 +Kun Wang 0005,Optimized sorting network for successive cancellation list decoding of polar codes.,2017,14,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee14.html#WangLHFLFS17,https://doi.org/10.1587/elex.14.20170735 +Soohwan Hyun,Analysis of two evolutionary gait generation techniques for different coordinate approaches.,2011,8,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee8.html#HyunS11,https://doi.org/10.1587/elex.8.873 +Hossein Aghababa,G4-FET modeling for circuit simulation by adaptive neuro-fuzzy training systems.,2012,9,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee9.html#AghababaESMF12,https://doi.org/10.1587/elex.9.881 +Chun-Hua Cheng,Module binding for low power clock gating.,2008,5,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee5.html#ChengHT08,https://doi.org/10.1587/elex.5.762 +Chenglin Cui,A K band two stage compact CMOS LNA considering proximate magnetic coupling.,2015,12,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee12.html#CuiKK15,https://doi.org/10.1587/elex.12.20150851 +Jianjun Li,Fast implementation of H.264 4x4 intra prediction.,2010,7,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee7.html#LiA10,https://doi.org/10.1587/elex.7.332 +Yi Liu,CCS: A low-power capacitively charge-sharing transmitter for NoC links.,2014,11,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee11.html#LiuMYZ14,https://doi.org/10.1587/elex.11.20140038 +Taehee Lee 0003,Temperature and voltage droop-aware test scheduling during scan shift operation.,2016,13,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee13.html#LeeKY16,https://doi.org/10.1587/elex.13.20160581 +Atsushi Yarai,Optical fiber sensor for humidity monitoring based on thermal lens detection technique.,2005,2,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee2.html#YaraiN05,https://doi.org/10.1587/elex.2.417 +Jongsun Kim,A 2-4 GHz fast-locking frequency multiplying delay-locked loop.,2017,14,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee14.html#KimB17,https://doi.org/10.1587/elex.13.20161056 +Seo Weon Heo,Multi-channel DTV signal generator design using modified Farrow filter.,2011,8,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee8.html#HeoK11,https://doi.org/10.1587/elex.8.1954 +Guohe Zhang,A low-kickback-noise and low-voltage latched comparator for high-speed folding and interpolating ADC.,2008,5,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee5.html#ZhangWLS08,https://doi.org/10.1587/elex.5.943 +Zunkai Huang,A compact-sized 10-bit two-stage DAC for AMOLED column driver ICs.,2015,12,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee12.html#HuangTZWF15,https://doi.org/10.1587/elex.12.20150897 +Quang Thang Duong,Maximum efficiency formulation for inductive power transfer with multiple receivers.,2016,13,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee13.html#DuongO16,https://doi.org/10.1587/elex.13.20160915 +Junha Im,High-speed multicarrier transmission scheme for implantable medical devices.,2011,8,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee8.html#ImJLK11,https://doi.org/10.1587/elex.8.143 +Fumio Koyama,VCSEL photonics.,2009,6,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee6.html#Koyama09,https://doi.org/10.1587/elex.6.651 +Punithavathi Duraiswamy,Synchronous delay based UWB pulse generator in FPGA.,2012,9,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee9.html#DuraiswamyLBVVT12,https://doi.org/10.1587/elex.9.868 +Jun Hasegawa,Emulation of retinal cell responses during fixational eye movements.,2010,7,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee7.html#HasegawaY10,https://doi.org/10.1587/elex.7.184 +Dyukyoung Moon,Analysis and modeling for random telegraph noise of GIDL current in saddle MOSFET for DRAM application.,2014,11,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee11.html#MoonLSS14,https://doi.org/10.1587/elex.11.20140468 +Arun Ambashanker,Modified TACIT algorithm based on 4H-key distribution for secure routing in NoC architecture.,2014,11,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee11.html#AmbashankerK14,https://doi.org/10.1587/elex.11.20140352 +Mohsen Hayati,Compact lowpass filter with ultra-wide stopband using novel spiral compact microstrip resonant cell.,2011,8,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee8.html#HayatiS11,https://doi.org/10.1587/elex.8.1028 +Shahram Jamali,An improvement over RED algorithm by using particle swarm optimization.,2010,7,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee7.html#JamaliZ10,https://doi.org/10.1587/elex.7.1276 +Koichiro Adachi,A facet-free 1.3-µ*m surface-emitting DFB laser for a low-cost optical module.,2016,13,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee13.html#AdachiSNTNN16,https://doi.org/10.1587/elex.13.20160866 +Mehrzad Samadi,Dynamic power management with fuzzy decision support system.,2008,5,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee5.html#SamadiA08,https://doi.org/10.1587/elex.5.789 +Kangho Lee,Frequency-tunable bandstop-bandpass dual-function microwave filter.,2015,12,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee12.html#LeeLPSL15,https://doi.org/10.1587/elex.12.20150313 +Sang Yoon Park,A low-cost FPGA implementation of multi-channel FIR filter with variable bandwidth.,2015,12,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee12.html#Park15,https://doi.org/10.1587/elex.12.20150702 +Hiroshi Hashiguchi,Plane wave excitation by taper array for optical leaky waveguide antenna.,2018,15,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee15.html#HashiguchiBA18,https://doi.org/10.1587/elex.14.20171153 +Yutaka Arima,On-chip solar battery structure for CMOS LSI.,2006,3,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee3.html#ArimaE06,https://doi.org/10.1587/elex.3.287 +Hyungjin Lee,Phase-shift self-oscillating class-D audio amplifier with multiple-pole feedback filter.,2011,8,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee8.html#LeeMLJJK11,https://doi.org/10.1587/elex.8.1354 +Sekchin Chang,An efficient compensation of TWTA's nonlinear distortion in wideband OFDM systems.,2009,6,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee6.html#Chang09,https://doi.org/10.1587/elex.6.111 +Young-Il Lim,Implementation of HIGHT cryptic circuit for RFID tag.,2009,6,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee6.html#LimLYC09,https://doi.org/10.1587/elex.6.180 +Yoshihiro Masui,Low power and low voltage chopper amplifier without LPF.,2008,5,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee5.html#MasuiYI08,https://doi.org/10.1587/elex.5.967 +Kambiz Hadipour,Highly linear mm-wave CMOS low noise amplifier.,2010,7,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee7.html#HadipourN10,https://doi.org/10.1587/elex.7.20 +Young Tae Jeon,Frequency-PWM hybrid controller of single-switch forward-flyback converter for DC-link regulation of 27-level cascaded H-bridge inverter.,2017,14,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee14.html#JeonP17,https://doi.org/10.1587/elex.14.20170492 +Son Trinh-Van,Uniplanar EBG structure based on a modified Spidron fractal and meander-line configuration.,2013,10,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee10.html#Trinh-VanKHP13,https://doi.org/10.1587/elex.10.20130596 +Dan Li,Hot-swap and hot redundancy technology for high-availability Compact PCI system.,2016,13,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee13.html#LiH16,https://doi.org/10.1587/elex.13.20160794 +Mehdi Fallahpour,Reversible image data hiding based on gradient adjusted prediction.,2008,5,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee5.html#Fallahpour08,https://doi.org/10.1587/elex.5.870 +Somayeh Mohammady,Efficiency improvement in microwave power amplifiers by using Complex Gain Predistortion technique.,2010,7,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee7.html#MohammadyVSHS10,https://doi.org/10.1587/elex.7.1721 +Mingshuo Wang,A 7 bit 1 GS/s pipelined folding and interpolating ADC with coarse-stage-free joint encoding.,2014,11,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee11.html#WangLYR14,https://doi.org/10.1587/elex.11.20140371 +Alireza Asoodeh,A 6-bit active digital phase shifter.,2011,8,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee8.html#AsoodehA11,https://doi.org/10.1587/elex.8.121 +Naoki Shinohara,Rectennas for microwave power transmission.,2013,10,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee10.html#Shinohara13,https://doi.org/10.1587/elex.10.20132009 +Hideki Yagi,GaInAsP/InP long-wavelength lasers with strain-compensated quantum-wire active regions and SiO2/semiconductor reflectors.,2004,1,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee1.html#YagiSMPOMA04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.540 +Yang Li,Impact of adjacent transistors on the SEU sensitivity of DICE flip-flop.,2017,14,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee14.html#LiCC17,https://doi.org/10.1587/elex.14.20170027 +Nam-Jin Oh,High performance differential Colpitts VCO with a linearized tuning range using a series resonator.,2014,11,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee11.html#Oh14,https://doi.org/10.1587/elex.11.20140432 +Sulaiman Wadi Harun,Dual-stage Er/Yb doped fiber amplifier for gain and noise figure enhancements.,2006,3,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee3.html#HarunAMATA06,https://doi.org/10.1587/elex.3.517 +Yindi Yao,Modeling and design of a compact wideband common-mode filter using internal coupling technique.,2017,14,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee14.html#YaoZX17,https://doi.org/10.1587/elex.13.20161063 +Seunghyeon Kim,A 2.4-GHz 22-Mbps CMOS OOK transmitter for wireless body area network.,2011,8,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee8.html#KimKKS11,https://doi.org/10.1587/elex.8.825 +Oguzhan Kizilbey,Highly efficient 2.7-2.9GHz class-F and inverse class-F power amplifiers in GaN HEMT technology.,2013,10,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee10.html#Kizilbey13a,https://doi.org/10.1587/elex.10.20130132 +Bochao Zhao,A novel graphical method for dual-frequency two sections transformer.,2016,13,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee13.html#ZhaoMLZZSMH16,https://doi.org/10.1587/elex.13.20160509 +Bogdan J. Falkowski,Relationship between Haar and Reed-Muller spectral and functional domains.,2005,2,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee2.html#Falkowski05,https://doi.org/10.1587/elex.2.37 +Tae-Wuk Bae,A novel Two-Dimensional LMS (TDLMS) using sub-sampling mask and step-size index for small target detection.,2010,7,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee7.html#BaeKAS10,https://doi.org/10.1587/elex.7.112 +Yuuki Tanaka,Efficient squaring circuit using canonical signed-digit number representation.,2014,11,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee11.html#TanakaW14,https://doi.org/10.1587/elex.11.20130955 +Kai Jing,A high image rejection SiGe low noise amplifier using passive notch filter.,2014,11,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee11.html#JingZG14,https://doi.org/10.1587/elex.11.20130928 +Ziqiang Yang,Broadband in-line transition from suspended stripline to rectangular waveguide.,2015,12,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee12.html#YangYLJ15,https://doi.org/10.1587/elex.12.20150833 +Wei-Liang Lin,Time-distributed procedure for fast estimation of effective number of bits during ADC Design.,2011,8,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee8.html#LinCLLS11,https://doi.org/10.1587/elex.8.1703 +Kyongsu Lee,A 1.1 mW/Gb/s 10 Gbps half-rate clock-embedded transceiver for high-speed links in 65 nm CMOS.,2014,11,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee11.html#LeeKSLK14,https://doi.org/10.1587/elex.11.20140671 +Rong Cao,A crosstalk-aware wavelength assignment method for optical network-on-chip.,2016,13,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee13.html#CaoWGZY16,https://doi.org/10.1587/elex.13.20160821 +Chang Lin Li,Communication-aware custom topology generation for VFI network-on-chip.,2014,11,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee11.html#LiLYH14,https://doi.org/10.1587/elex.11.20140716 +Tian Song,Reference frame data compression method for H.264/AVC.,2007,4,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee4.html#SongS07,https://doi.org/10.1587/elex.4.121 +Takashi Mitsui,Effect of forward error correction on spectral sliced WDM/TDMA-PON system.,2012,9,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee9.html#MitsuiHFKTY12,https://doi.org/10.1587/elex.9.739 +Shoubing Liu,Manufacturing error correction model of the wavelet transform processor using surface acoustic wave devices.,2017,14,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee14.html#LiuL17,https://doi.org/10.1587/elex.14.20170344 +Ching-Che Chung,A 600kHz to 1.2GHz all-digital delay-locked loop in 65nm CMOS technology.,2011,8,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee8.html#ChungSC11,https://doi.org/10.1587/elex.8.518 +Shoun Matsunaga,Design of an energy-efficient 2T-2MTJ nonvolatile TCAM based on a parallel-serial-combined search scheme.,2014,11,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee11.html#MatsunagaMEOH14,https://doi.org/10.1587/elex.11.20131006 +Chen Wu,Nonlinear dynamic analysis in the V2C-mode-controlled buck converter by improved mLCE.,2016,13,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee13.html#WuLLL16a,https://doi.org/10.1587/elex.13.20160635 +Yasuhiro Kazama,Vertical polarization single-feed dual-frequency microstrip antenna with an arc-shaped slot.,2005,2,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee2.html#KazamaKS05,https://doi.org/10.1587/elex.2.6 +Yuki Nakashima,Adjustable SQUID-resonator direct coupling in microwave SQUID multiplexer for TES microcalorimeter array.,2017,14,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee14.html#NakashimaHKYNYM17,https://doi.org/10.1587/elex.14.20170271 +Minshun Wu,Efficient algorithm for multi-tone spectral test of ADCs without requiring coherent sampling.,2016,13,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee13.html#WuLXL16,https://doi.org/10.1587/elex.13.20160784 +Jiaojiao Yao,Variable resolution SAR ADC architecture with 99.6% reduction in switching energy over conventional scheme.,2015,12,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee12.html#YaoZWY15,https://doi.org/10.1587/elex.12.20150099 +Yong Chen,A high-efficiency rectifier for passive UHF RFID with wide incident power range.,2015,12,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee12.html#ChenTYFM15,https://doi.org/10.1587/elex.12.20150194 +Nguyen Van Toan,Transmission of multiband wireless signals over a seamless IM/DD fiber-MMW system.,2016,13,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee13.html#ToanDKYBK16,https://doi.org/10.1587/elex.13.20160497 +Hedieh Elyasi,A merged LNA and mixer with improved noise figure and gain for software defined radio applications.,2012,9,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee9.html#ElyasiJN12,https://doi.org/10.1587/elex.9.165 +Woo-Chan Park,An effective depth data memory system using an escape count buffer for 3D rendering processors.,2011,8,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee8.html#ParkPCPKKKH11,https://doi.org/10.1587/elex.8.209 +Yu Yin,A compact planar UWB MIMO antenna using modified ground stub structure.,2017,14,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee14.html#YinHLA17,https://doi.org/10.1587/elex.14.20170883 +Takuji Kousaka,Dynamical mechanism for interrupted circuit with switching delay.,2009,6,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee6.html#KousakaA09,https://doi.org/10.1587/elex.6.806 +Morteza Damavandpeyma,Delay testing of PD-SOI circuits.,2008,5,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee5.html#DamavandpeymaYF08,https://doi.org/10.1587/elex.5.437 +Zheng Mei,Universal closed-form expressions for the inductance of tapered through silicon vias (T-TSVs) based on vector magnetic potential.,2016,13,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee13.html#MeiDYZZZ16,https://doi.org/10.1587/elex.13.20160621 +Javad Yavand Hasani,Analytic input matching for millimeter wave LNA in 90nm CMOS technology.,2007,4,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee4.html#HasaniKN07,https://doi.org/10.1587/elex.4.472 +Mohsen Hayati,Compact Microstrip Low-Pass Filter with wide stopband using symmetrical U-shaped resonator.,2012,9,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee9.html#HayatiS12,https://doi.org/10.1587/elex.9.127 +Yoshinori Taka,Transfer impedance of new-type calibration target and reconstruction of injected currents for air discharges from electrostatic discharge generators.,2010,7,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee7.html#TakaAMFIY10,https://doi.org/10.1587/elex.7.1666 +Weina Du,Improved EZBC algorithm with low complexity.,2004,1,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee1.html#DuSS04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.447 +Takahiro Sano,Selective etching of HfN gate electrode for HfN/HfSiON gate stack in-situ formations.,2011,8,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee8.html#SanoO11,https://doi.org/10.1587/elex.8.1492 +Hyejeong Hong,Recovery-enhancing task scheduling for multicore processors under NBTI impact.,2014,11,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee11.html#HongLK14,https://doi.org/10.1587/elex.11.20140324 +Satoshi Narikawa,Coherent WDM-PON using heterodyne detection with transmitter-side polarization diversity.,2010,7,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee7.html#NarikawaSS10,https://doi.org/10.1587/elex.7.1195 +Kazuya Shimoyama,5GHz Si-CMOS differential power amplifier module with directly connected dipole antenna.,2008,5,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee5.html#ShimoyamaYTMOKNTT08,https://doi.org/10.1587/elex.5.229 +Xiaowei Kong,A special complex-valued simplicial canonical piecewise linear function for amplifier and predistorter nonlinearity representation.,2011,8,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee8.html#KongXHL11,https://doi.org/10.1587/elex.8.1556 +Hai Liu,Determination of the phase center position and delay of a Vivaldi antenna.,2013,10,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee10.html#LiuS13,https://doi.org/10.1587/elex.10.20130573 +Tetsuya Ariyoshi,Improved near-infrared sensitivity of a back-side illuminated image sensor with a metal reflector.,2009,6,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee6.html#AriyoshiMBA09,https://doi.org/10.1587/elex.6.341 +Masatomo Kawano,Binocular range-sensor LSI with improved distance detection precision by coordinated pixel placement.,2014,11,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee11.html#KawanoA14,https://doi.org/10.1587/elex.11.20140747 +Tao Linwei,The design of high precision time keeping clock system.,2013,10,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee10.html#LinweiY13,https://doi.org/10.1587/elex.10.20130609 +Hua-Pin Chen,Versatile voltage-mode multifunction biquadratic filter employing DDCCs.,2008,5,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee5.html#ChenC08,https://doi.org/10.1587/elex.5.769 +Ting Gao,A 5.5mW 80-400MHz Gm-C low pass filter with a unique auto-tuning system.,2011,8,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee8.html#Gao0CLR11,https://doi.org/10.1587/elex.8.1034 +Norbert Herencsar,Current conveyors-based circuits using novel transformation method.,2007,4,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee4.html#HerencsarV07,https://doi.org/10.1587/elex.4.650 +Daisuke Suzuki,A compact low-power nonvolatile flip-flop using domain-wall-motion-device-based single-ended structure.,2014,11,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee11.html#SuzukiSNMSEOH14,https://doi.org/10.1587/elex.11.20140296 +YuLiang Chang,Advanced polarization estimation method using the spatial polarimetric characteristic of antenna.,2013,10,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee10.html#ChangDL13,https://doi.org/10.1587/elex.10.20130347 +Ki Seok Kwak,Reduction of the blind spot in the time-frequency domain reflectometry.,2008,5,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee5.html#KwakDLPY08,https://doi.org/10.1587/elex.5.265 +Yongsam Moon,Signal detector for 6-Gbps 55-nm CMOS Serial ATA receiver.,2016,13,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee13.html#Moon16,https://doi.org/10.1587/elex.13.20160286 +Takuichi Hirano,Relationship between Q factor and complex resonant frequency: investigations using RLC series circuit.,2017,14,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee14.html#Hirano17,https://doi.org/10.1587/elex.14.20170941 +Awinash Anand,Analytical method to determine optimal out-of-band gain in multi-bit delta-sigma modulator.,2012,9,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee9.html#AnandKPKY12,https://doi.org/10.1587/elex.9.1598 +Koji Ieda,Visible to infrared high-speed WDM transmission over PCF.,2007,4,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee4.html#IedaKTN07,https://doi.org/10.1587/elex.4.375 +Muhammad Shafiq,Adaptive fuzzy internal model control of thermal heating process.,2004,1,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee1.html#ShafiqW04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.120 +Tiehu Li,A novel SEU hardened SRAM bit-cell design.,2017,14,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee14.html#LiYZL17,https://doi.org/10.1587/elex.14.20170413 +Xiao Zhao,A 1-V recycling current OTA with improved gain-bandwidth and input/output range.,2014,11,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee11.html#ZhaoZD14,https://doi.org/10.1587/elex.11.20131040 +Nam Ha-Van,High-efficiency wireless power transfer by optimal load and metamaterial slab.,2017,14,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee14.html#Ha-VanDKS17,https://doi.org/10.1587/elex.14.20170320 +Byung-Hoon Lee,Color transformation-based perceptuality-aware dimming for TFT LCDs.,2016,13,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee13.html#LeeMYK16,https://doi.org/10.1587/elex.13.20160439 +Qingxi Yang,Equivalent circuits of multi-conductor transmission lines above lossy ground excited by external electromagnetic fields.,2018,15,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee15.html#YangZWYZZ18,https://doi.org/10.1587/elex.15.20171261 +Hirokazu Kubota,Three-mode multi/demultiplexing experiment using PLC mode multiplexer and its application to 2+1 mode bi-directional optical communication.,2013,10,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee10.html#KubotaOT13,https://doi.org/10.1587/elex.10.20130205 +Vishwakarma Singh,Novel mixed-mode universal biquad configuration.,2005,2,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee2.html#SinghSBS05,https://doi.org/10.1587/elex.2.548 +Mohammad Naser-Moghadasi,Switchable double band-notch ultra wideband monopole antenna.,2011,8,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee8.html#Naser-MoghadasiGM11,https://doi.org/10.1587/elex.8.1315 +Sang-Uk Park,Optimal binary encoding scheme for the fast motion estimation based on Hamming distances.,2013,10,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee10.html#ParkSKL13,https://doi.org/10.1587/elex.10.20130160 +Hyung-Min Park,SSCG with Hershey-Kiss modulation profile using Dual Sigma-Delta modulators.,2010,7,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee7.html#ParkJK10,https://doi.org/10.1587/elex.7.1349 +Tsuyoshi Ebuchi,An ultra-wide range (0.01-240 Gbps) transmitter with latched AC-coupled driver and dummy data transient generator.,2018,15,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee15.html#EbuchiTWTI18,https://doi.org/10.1587/elex.15.20171151 +Ardalan Alizadeh,Optimal spectrum sensing in cooperative cognitive two-way relay networks.,2011,8,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee8.html#AlizadehS11,https://doi.org/10.1587/elex.8.1281 +Takahito Morisaki,Optical frequency-tunable Cs atomic clock with a 9.19GHz mode-hop-free fiber laser.,2010,7,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee7.html#MorisakiYN10,https://doi.org/10.1587/elex.7.1652 +Jun Gyu Lee,Fractional-N PLL synthesizer with 15µ*sec start-up time by on-chip nonvolatile memory.,2012,9,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee9.html#LeeM12,https://doi.org/10.1587/elex.9.263 +Jin-Hong Park,An effective rasterization architecture for mobile vector graphics processors.,2011,8,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee8.html#ParkKPKJH11,https://doi.org/10.1587/elex.8.835 +Soonyong Lee,Design of a flexible diversity zeroth-order resonance antenna for WBAN applications.,2012,9,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee9.html#LeeYKIC12,https://doi.org/10.1587/elex.9.758 +Hiroyuki Fujii,Bright and ultimately pure red electrophosphorescent diode bearing diphenylquinoxaline.,2005,2,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee2.html#FujiiSTWH05,https://doi.org/10.1587/elex.2.260 +Bogdan J. Falkowski,Fixed sign Walsh hardware structure.,2005,2,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee2.html#FalkowskiY05,https://doi.org/10.1587/elex.2.91 +Van Ha Nguyen,Variable cubic-polynomial memristor based canonical Chua's chaotic circuit.,2016,13,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee13.html#NguyenNKSS16,https://doi.org/10.1587/elex.13.20150987 +Reza Bayderkhani,Low sidelobe wideband series fed double dipole microstrip antenna array.,2009,6,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee6.html#BayderkhaniH09,https://doi.org/10.1587/elex.6.1462 +Pouya Derakhshan-Barjoei,Minimum power transmission design for cognitive radio networks in non-stationary environment.,2011,8,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee8.html#Derakhshan-BarjoeiDRR11,https://doi.org/10.1587/elex.8.136 +Cong Liu,Line voltage compensation technology for AC-direct multiple-string LED drivers.,2015,12,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee12.html#LiuLD15,https://doi.org/10.1587/elex.12.20150873 +Akira Fujimaki,Advancement of superconductor digital electronics.,2012,9,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee9.html#Fujimaki12,https://doi.org/10.1587/elex.9.1720 +Rabindranath Nandi,Tunable active-R oscillator using a CFA.,2008,5,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee5.html#Nandi08,https://doi.org/10.1587/elex.5.248 +Zhiting Yan,Improved Max-Log-MAP BICM-IDD receiver for MIMO systems.,2014,11,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee11.html#YanHCHM14,https://doi.org/10.1587/elex.11.20140800 +Chun-Lin Yeh,A simple single-switch single-stage AC/DC converter with harmonic current correction.,2009,6,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee6.html#YehHC09,https://doi.org/10.1587/elex.6.1757 +Tatsuhiko Watanabe,Serial branching mode multi/demultiplexer for homogeneous multi-core fibers.,2016,13,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee13.html#WatanabeKK16,https://doi.org/10.1587/elex.12.20150961 +Lingyan Fan,Data security concurrent with homogeneous by AES algorithm in SSD controller.,2014,11,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee11.html#FanLLG14,https://doi.org/10.1587/elex.11.20140535 +Hao Wang,Tri-level capacitor-splitting switching scheme with high energy-efficiency for SAR ADCs.,2016,13,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee13.html#WangLXZ16,https://doi.org/10.1587/elex.13.20160645 +Tolga Yalçin,Hardware accelerated search for resource-efficient and secure permutation matrices.,2016,13,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee13.html#Yalcin16,https://doi.org/10.1587/elex.13.20160352 +Masaya Tamura,Waveguide-mode wireless power transfer in shielded space with aperture plane.,2017,14,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee14.html#TamuraWT17,https://doi.org/10.1587/elex.14.20170195 +Kyung Won Kim,Verification methodology for the IMT-Advanced channel simulator.,2011,8,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee8.html#KimPYO11,https://doi.org/10.1587/elex.8.994 +Mohammad Hamiruce Marhaban,Modified minimum-maximum exclusive mean filter.,2008,5,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee5.html#MarhabanJN08,https://doi.org/10.1587/elex.5.865 +Gulistan Raja,H.264/AVC deblocking filter based on motion activity in video sequences.,2008,5,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee5.html#RajaMS08,https://doi.org/10.1587/elex.5.809 +Eiichi Sano,A chaotic wireless communication system based on collective synchronization among wireless nodes.,2006,3,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee3.html#Sano06,https://doi.org/10.1587/elex.3.262 +Jeongduk Ryeom,LED lamp driving technology using variable series-parallel charge pump.,2013,10,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee10.html#Ryeom13,https://doi.org/10.1587/elex.10.20130350 +Soon Up Hwang,Soft-output ML detector for spatial modulation OFDM systems.,2009,6,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee6.html#HwangJLS09,https://doi.org/10.1587/elex.6.1426 +Xi Qu,A low-power on-chip LDO with advanced reference buffer.,2014,11,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee11.html#QuZZ14,https://doi.org/10.1587/elex.11.20140824 +Muneeb Zia,Chip-to-chip interconnect integration technologies.,2016,13,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee13.html#ZiaZYZB16,https://doi.org/10.1587/elex.13.20162001 +Cheng-Yao Lo,Toward realization of transmissive display by MEMS etalon.,2008,5,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee5.html#LoFT08,https://doi.org/10.1587/elex.5.326 +Yang-Soo Kim,Context-adaptive coded block pattern coding for H.264/AVC.,2011,8,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee8.html#KimKJC11,https://doi.org/10.1587/elex.8.1777 +Ailing Li,An innovative method to achieve minimum tripping current conformity for type A RCCBs.,2015,12,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee12.html#LiHS15,https://doi.org/10.1587/elex.12.20141220 +Zhiqi Meng,Inquiry into backscattering enhancement phenomenon in random media.,2007,4,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee4.html#MengT07,https://doi.org/10.1587/elex.4.199 +Taehwa Kim,Transient thermal analysis of packaged SiC SBDs for high temperature operation.,2016,13,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee13.html#KimF16,https://doi.org/10.1587/elex.13.20151047 +Taotao Zhang,BTorus: A novel thermal-traffic balanced NoC topology.,2015,12,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee12.html#ZhangWZZ15,https://doi.org/10.1587/elex.12.20150234 +Yifei Yu,Improving RO PUF design using frequency distribution characteristics.,2015,12,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee12.html#YuWLCO15,https://doi.org/10.1587/elex.12.20141043 +Fan Ding,Aliasing radar receiver in FMICW system.,2010,7,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee7.html#DingHWY10,https://doi.org/10.1587/elex.7.697 +Joonyun Kim,Cell placement of MCM for reliability optimization.,2010,7,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee7.html#Kim10,https://doi.org/10.1587/elex.7.1796 +Chun Wei Lin,Linearity enhancement technique of ramp generator for ADC testing.,2013,10,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee10.html#LinLC13,https://doi.org/10.1587/elex.10.20130179 +Takuo Tanemura,Design and scalability analysis of optical phased-array 1 and** N switch on planar lightwave circuit.,2008,5,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee5.html#TanemuraN08,https://doi.org/10.1587/elex.5.603 +Takahiro Yamashita,Power Valve: for low power operation and low stand-by power.,2005,2,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee2.html#YamashitaFI05,https://doi.org/10.1587/elex.2.64 +Yin Tian,A Ka-band TDD front-end chip with 24.7% bandwidth and temperature compensation technology.,2017,14,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee14.html#TianWYTCCYS17,https://doi.org/10.1587/elex.14.20170350 +Hamid Ebrahimzad,Diversity Multiplexing Tradeoff in shadowed Nakagami fading SIMO/MISO channels.,2010,7,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee7.html#Ebrahimzad010,https://doi.org/10.1587/elex.7.546 +Xiaobin Luo,Equivalent circuit model of millimeter-wave AlGaN/GaN HEMTs.,2014,11,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee11.html#LuoYLLDF14,https://doi.org/10.1587/elex.11.20140613 +Shuangshuang Cheng,A transconductance enhancement technique for bulk-driven OTAs working in weak inversion.,2016,13,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee13.html#ChengZZ16,https://doi.org/10.1587/elex.13.20160475 +Yintang Yang,Temperature properties of the parasitic resistance of through-silicon vias (TSVs) in high-frequency 3-D ICs.,2014,11,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee11.html#YangLZD14,https://doi.org/10.1587/elex.11.20140504 +Oguzhan Kizilbey,Design of class-E GaN HEMT power amplifier using elliptic low pass matching network with 86% efficiency.,2013,10,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee10.html#Kizilbey13,https://doi.org/10.1587/elex.10.20120960 +Shunji Nakata,Stable adiabatic circuit using advanced series capacitors and time variation of energy dissipation.,2010,7,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee7.html#NakataMMMM10,https://doi.org/10.1587/elex.7.640 +Jin-Seon Youn,Implementation of parallel integer motion estimation method by using reference blocks shared for HD video encoding.,2011,8,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee8.html#YounC11,https://doi.org/10.1587/elex.8.1380 +Hongmei Chen,An efficient digital calibration technique for timing mismatch in time-interleaved ADCs.,2016,13,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee13.html#ChenJYLC16,https://doi.org/10.1587/elex.13.20160524 +Yoon Hak Kim,Distributed estimation based on quantized data.,2011,8,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee8.html#Kim11a,https://doi.org/10.1587/elex.8.699 +Xiaoge Zhu,A 400-MS/s 10-b 8 interleaved SAR ADC in 0.13 um CMOS.,2017,14,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee14.html#ZhuZWWL17,https://doi.org/10.1587/elex.14.20170067 +Ching-Che Chung,A wide-range all-digital duty-cycle corrector with output clock phase alignment in 65nm CMOS technology.,2011,8,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee8.html#ChungSS11,https://doi.org/10.1587/elex.8.1245 +Lanhua Xia,A low-cost built-in self-test for CP-PLL based on TDC.,2014,11,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee11.html#XiaWCZJ14,https://doi.org/10.1587/elex.11.20140247 +A. Arunagiri,Artificial neural network approach-an application to radial loadflow algorithm.,2006,3,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee3.html#ArunagiriVR06,https://doi.org/10.1587/elex.3.353 +Zhiqun Cheng,Design and fabrication of ultra-wideband power amplifier based on GaN HEMT.,2015,12,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee12.html#ChengZYCWFLWG15,https://doi.org/10.1587/elex.12.20150703 +Dong Wang,A parallel arithmetic array for accelerating compute-intensive applications.,2014,11,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee11.html#WangCX14,https://doi.org/10.1587/elex.11.20130981 +Hyung-Jin Choi,Sub-1 V V-I converter-based voltage-controlled oscillator with a linear gain characteristic.,2017,14,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee14.html#ChoiMKHH17,https://doi.org/10.1587/elex.14.20170610 +Hakaru Tamukoh,Rough winner-take-all for hardware oriented vector quantization algorithm.,2011,8,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee8.html#TamukohHYS11,https://doi.org/10.1587/elex.8.773 +Ignacio E. Zaldívar-Huerta,Experimental transmission in a fiber-radio system using a microwave photonic filter at 2.8GHz.,2013,10,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee10.html#Zaldivar-HuertaGHR13,https://doi.org/10.1587/elex.10.20130028 +Zhengmin Zhang,A novel electromagnetic interference resisting local interconnection network transmitter.,2014,11,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee11.html#ZhangZNJ14,https://doi.org/10.1587/elex.11.20140307 +Milad Ataei,Transformer feedback millimeter-wave VCO with capacitance cancellation technique in 0.18-µ*m CMOS.,2011,8,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee8.html#AtaeiNNM11,https://doi.org/10.1587/elex.8.780 +Xincun Ji,Current reused Colpitts VCO and frequency divider with quadrature outputs.,2011,8,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee8.html#JiHWS11,https://doi.org/10.1587/elex.8.239 +Shunji Nakata,Adiabatic SRAM with the large margin of Vth variation by the gradual change of the voltage.,2006,3,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee3.html#Nakata06a,https://doi.org/10.1587/elex.3.304 +Mohammad Tariqul Islam,Modified E-H shaped microstrip patch antenna.,2009,6,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee6.html#IslamSM09,https://doi.org/10.1587/elex.6.1350 +Zhifang Wang,Complex kernel PCA for multimodal biometric recognition.,2009,6,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee6.html#WangHN09,https://doi.org/10.1587/elex.6.1131 +Jianjun Luo,Solid-state drive controller with embedded RAID functions.,2014,11,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee11.html#LuoFTG14,https://doi.org/10.1587/elex.11.20140419 +Kun Wang 0005,Design and implementation of high performance matrix inversion based on reconfigurable processor.,2016,13,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee13.html#WangLHFL16,https://doi.org/10.1587/elex.13.20160579 +Diego Hernandez,Emulation of junction field-effect transistors for real-time audio applications.,2016,13,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee13.html#HernandezH16,https://doi.org/10.1587/elex.13.20160288 +Ali Reza Hazeri,Miniaturization and harmonic suppression of the branch-line coupler based on radial stubs.,2011,8,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee8.html#HazeriKFA11,https://doi.org/10.1587/elex.8.736 +Zhi-Ming Wang,Realization of 70-nm T-gate InP-based PHEMT for MMW low noise applications.,2015,12,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee12.html#WangLHLCSMF15,https://doi.org/10.1587/elex.12.20141174 +Zhiyong Zhao,Coherent analysis for radar signal generator.,2013,10,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee10.html#ZhaoLC13,https://doi.org/10.1587/elex.10.20130514 +Yasuo Kokubun,What is a mode in few mode fibers?: Proposal of MIMO-free mode division multiplexing using true eigenmodes.,2016,13,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee13.html#KokubunWMK16,https://doi.org/10.1587/elex.13.20160394 +Jiho Han,A nanosecond-accuracy clock synchronization circuit for IEEE 1588-2008 using tapped delay lines.,2016,13,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee13.html#HanS16,https://doi.org/10.1587/elex.13.20160922 +Soohyun Jang,Area-efficient FFT processor for MIMO-OFDM based SDR systems.,2013,10,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee10.html#JangYLJ13,https://doi.org/10.1587/elex.10.20130490 +Qiang Chen 0001,Modulated scattering array antenna for MIMO applications.,2007,4,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee4.html#ChenWIKYS07,https://doi.org/10.1587/elex.4.745 +H. S. Mo,Programmable pulsewidth control loop (PWCL) in dual-slope combination.,2010,7,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee7.html#MoMK10,https://doi.org/10.1587/elex.7.615 +Chuanzhao Yu,Voltage stress-induced performance degradation in NMOSFET mixer.,2005,2,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee2.html#YuYXY05,https://doi.org/10.1587/elex.2.133 +Yang Chen,Electronic UWB tunable true-time delay line for timed array antennas.,2018,15,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee15.html#ChenLB18,https://doi.org/10.1587/elex.15.20171139 +Nasrudin Abd. Rahim,DSP-based flexible digital hysteresis in switched capacitor active power filter.,2010,7,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee7.html#RahimR10,https://doi.org/10.1587/elex.7.621 +Shimpei Akimoto,SAR evaluation in human body exposed to EM wave from NHA with metallic case.,2009,6,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee6.html#AkimotoKSTI09,https://doi.org/10.1587/elex.6.477 +Hideki Takase,Energy efficiency of scratch-pad memory in deep submicron domains: an empirical study.,2008,5,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee5.html#TakaseTZT08,https://doi.org/10.1587/elex.5.1010 +Wonseok Oh,A fast transient response shunt low dropout regulator.,2013,10,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee10.html#OhKN13,https://doi.org/10.1587/elex.10.20130011 +Milad Mirzaee,A novel design approach to the miniaturization of dual-band branch-line coupler.,2011,8,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee8.html#MirzaeeN11,https://doi.org/10.1587/elex.8.2029 +Weizhong Chen,A separated RC-IGBT with PIN and MPS diode.,2015,12,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee12.html#ChenWQ15,https://doi.org/10.1587/elex.12.20150443 +Nethaji Dharmarasu,High-density light-emitting diodes using a lateral p-n junction on patterned (311)A GaAs substrates.,2004,1,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee1.html#DharmarasuVSOKS04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.86 +Víctor H. Champac,Skew violation verification in digital interconnect signals based on signal addition.,2014,11,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee11.html#ChampacVHF14,https://doi.org/10.1587/elex.11.20140201 +Eui-Rim Jeong,A low cost adaptive digital predistorter for linearization of power amplifiers in MIMO transmitters.,2012,9,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee9.html#JeongC12,https://doi.org/10.1587/elex.9.580 +Duckki Kwon,A novel under-voltage and over-voltage detection circuit with voltage detector using one transistor.,2011,8,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee8.html#KwonLH11,https://doi.org/10.1587/elex.8.1882 +Hideaki Okayama,Monolithically integrated grating and deflector structure for wavelength filtering.,2005,2,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee2.html#Okayama05,https://doi.org/10.1587/elex.2.121 +Mohsen Radfar,Faster solution of nonlinear equations using logical effort method and curve fitting in low power design.,2009,6,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee6.html#RadfarP09,https://doi.org/10.1587/elex.6.889 +Jifei Tang,Quasar signal estimation and compensation for data processing in VLBI receiver.,2014,11,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee11.html#TangMLC14,https://doi.org/10.1587/elex.11.20140897 +Davood Gharavian,ZEBRA battery SOC estimation using PSO-optimized hybrid neural model considering aging effect.,2012,9,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee9.html#GharavianPS12,https://doi.org/10.1587/elex.9.1115 +Meisam Hassani,Sensorless load and position estimation in linear reluctance actuator.,2014,11,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee11.html#HassaniS14,https://doi.org/10.1587/elex.10.20130908 +Naoto Matsuo,Dependence of electrical properties of pentacene Thin-Film Transistor on active layer thickness.,2011,8,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee8.html#MatsuoH11,https://doi.org/10.1587/elex.8.360 +Jae-Ho Han,Analysis of signal detection rates in Optical CDMA.,2005,2,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee2.html#Han05,https://doi.org/10.1587/elex.2.280 +Koichi Kato,Optical spectrum control circuit using an arrayed-waveguide grating and tunable phase shifters.,2011,8,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee8.html#KatoITMT11,https://doi.org/10.1587/elex.8.391 +Alberto Reyna,Design of concentric ring antenna arrays for isoflux radiation in GEO satellites.,2011,8,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee8.html#ReynaPR11,https://doi.org/10.1587/elex.8.484 +Shanmugam Saravanan,Investigation of InxGa1-xAs strain reducing layers effects on InAs/GaAs quantum dots.,2008,5,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee5.html#SaravananH08,https://doi.org/10.1587/elex.5.53 +Maruthamuthu Paramasivam Prabakaran,Wavelet packet transform based de-noising receiver for indoor optical wireless system.,2014,11,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee11.html#PrabakaranSC14,https://doi.org/10.1587/elex.11.20140346 +Zi-Peng Bian,22-27 GHz 11 dB inductive feedback cascode amplifier with 12 picoseconds group delay variation.,2016,13,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee13.html#BianZWT16,https://doi.org/10.1587/elex.13.20160862 +Yuehong Dong,A Ka-band GaAs MMIC quadrupler with high dynamic range and efficient harmonics rejection.,2017,14,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee14.html#DongXHJHZXY17,https://doi.org/10.1587/elex.14.20170791 +Fabian Khateb,"Comment on ""High performance low-voltage QFG-based DVCC and a novel fully differential SC integrator based on it"".",2012,9,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee9.html#KhatebHFVP12,https://doi.org/10.1587/elex.9.1492 +In-Soo Lee,Network Allocation Vector-based dynamic backoff algorithm for IEEE 802.11 DCF.,2010,7,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee7.html#LeeKSC10,https://doi.org/10.1587/elex.7.1571 +Jeong-Soo Park 0004,Node pre-fetching architecture for real-time ray tracing.,2013,10,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee10.html#ParkPNH13,https://doi.org/10.1587/elex.10.20130468 +S. Mahdi Moghadasi,Wideband low-profile circular polarized rectangular loop antenna over a mushroom-like EBG structure.,2008,5,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee5.html#MoghadasiAM08,https://doi.org/10.1587/elex.5.550 +Se-Hyu Choi,New systolic modular multiplication architecture for efficient Montgomery multiplication.,2015,12,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee12.html#ChoiL15,https://doi.org/10.1587/elex.11.20141051 +Dongdong Zhao,Molecular dynamics simulation of latent track formation in bilayer graphene.,2015,12,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee12.html#ZhaoLWWFWC15,https://doi.org/10.1587/elex.12.20150771 +Dongdong Chen,An optimized reference current detection method for active power filter.,2017,14,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee14.html#ChenC17,https://doi.org/10.1587/elex.14.20170035 +Mehdi Golsorkhtabaramiri,HCABS: The hierarchical clustering algorithm based on soft threshold and cluster member bounds for wireless sensor networks.,2012,9,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee9.html#GolsorkhtabaramiriHGH12,https://doi.org/10.1587/elex.9.685 +Jongbum Lim,An optimal DRAM sizing and partitioning method for NVRAM based hybrid memory architecture.,2014,11,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee11.html#LimSL14,https://doi.org/10.1587/elex.11.20140755 +Takayuki Hisaka,Simultaneous achievement of high performance and high reliability in a 38/77GHz InGaAs/AlGaAs PHEMT MMIC.,2010,7,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee7.html#HisakaSKKYVA10,https://doi.org/10.1587/elex.7.558 +Igors Homjakovs,A 0.8-V 110-nA CMOS current reference circuit using subthreshold operation.,2013,10,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee10.html#HomjakovsHOHO13,https://doi.org/10.1587/elex.10.20130022 +Makoto Tanaka,Recent progress in crystalline silicon solar cells.,2013,10,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee10.html#Tanaka13,https://doi.org/10.1587/elex.10.20132006 +Ning Liu,A feasible bandwidth compensation technique for FSS radome design.,2017,14,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee14.html#LiuSZFG17,https://doi.org/10.1587/elex.14.20170510 +Qinqin Shi,A 3D node localization scheme for wireless sensor networks.,2009,6,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee6.html#ShiHFL09,https://doi.org/10.1587/elex.6.167 +Hong Chang,Design and implementation of elastic buffer for Universal Serial Bus 3.0.,2016,13,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee13.html#ChangPKXM16,https://doi.org/10.1587/elex.13.20151084 +Toshihiro Kubota,Femtosecond motion picture.,2005,2,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee2.html#KubotaA05,https://doi.org/10.1587/elex.2.298 +Khurram Javed,LDO regulator with high power supply rejection at 10 MHz.,2016,13,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee13.html#JavedR16,https://doi.org/10.1587/elex.13.20160665 +Masahiro Asada,Terahertz oscillators using electron devices - an approach with Resonant tunneling diodes.,2011,8,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee8.html#AsadaS11,https://doi.org/10.1587/elex.8.1110 +Yi-Shing Shih,A novel design of high-speed divide-by-3/4 counter for a dual-modulus prescaler.,2006,3,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee3.html#ShihT06,https://doi.org/10.1587/elex.3.276 +Ifong Wu,Development of three-antenna method measurement system for low-sensitivity optical electric field sensor.,2010,7,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee7.html#WuIGM10a,https://doi.org/10.1587/elex.7.1265 +Shoichiro Matsuo,Crosstalk behavior of cores in multi-core fiber under bent condition.,2011,8,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee8.html#MatsuoTASTSK11,https://doi.org/10.1587/elex.8.385 +Jong-In Kim,A two-step offset calibration in dynamic comparator using body voltage control.,2017,14,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee14.html#Kim17,https://doi.org/10.1587/elex.14.20170933 +Mitsumasa Koyanagi,Recent progress in 3D integration technology.,2015,12,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee12.html#Koyanagi15,https://doi.org/10.1587/elex.12.20152001 +Koichi Narahara,Amplification of short pulses in transmission lines periodically loaded with Schottky varactors.,2009,6,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee6.html#Narahara09a,https://doi.org/10.1587/elex.6.1199 +Hua-Pin Chen,Voltage-mode filter with one input and six outputs using two ICCIIs.,2014,11,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee11.html#ChenWH14,https://doi.org/10.1587/elex.11.20140227 +Masataka Hayashi,Analysis of penetration loss of ultra high frequency band radio waves on trains.,2015,12,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee12.html#HayashiTM15,https://doi.org/10.1587/elex.12.20150142 +Björn Ebert,Influence of trapped flux on critical currents of Josephson junctions.,2008,5,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee5.html#EbertROFU08,https://doi.org/10.1587/elex.5.431 +Liu Yubo,Speed global integral sliding mode control with a load sliding mode observer for PMSM.,2018,15,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee15.html#YuboW18,https://doi.org/10.1587/elex.15.20171270 +Donggil Kim,Time-triggered wireless sensor network for feedback control.,2007,4,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee4.html#KimPKL07,https://doi.org/10.1587/elex.4.644 +Fei Lin,Analysis of nonlinear oscillation of four-quadrant converter based on discrete describing function approach.,2016,13,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee13.html#LinLYS16,https://doi.org/10.1587/elex.13.20160550 +Hengqing Sun,The hardware design of a new ionospheric sounding system.,2014,11,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee11.html#SunYZZCJW14,https://doi.org/10.1587/elex.11.20140249 +Guoqiang Zhang,The methods of maintaining Low frequency stability in FBAR based cross-coupled VCO design.,2013,10,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee10.html#ZhangKYTHEP13,https://doi.org/10.1587/elex.10.20130296 +Guohe Zhang,Low-power programmable linear-phase filter designed for fully balanced bio-signal recording application.,2012,9,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee9.html#ZhangTSLL12,https://doi.org/10.1587/elex.9.1402 +Yin Tian,A compact Ka-band antenna-in-package for system-in-package application.,2017,14,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee14.html#TianWSYCTCT17,https://doi.org/10.1587/elex.14.20170444 +Héctor Cancela,Finding Steiner trees with degree 1 terminal nodes.,2004,1,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee1.html#CancelaRR04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.258 +Qingya Li,A novel miniaturized-element frequency selective surface with a second-order bandpass response.,2018,15,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee15.html#LiGXJ18,https://doi.org/10.1587/elex.15.20171257 +Shunji Nakata,The stability of adiabatic reversible logic using asymmetric tank capacitors and its application to SRAM.,2005,2,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee2.html#Nakata05,https://doi.org/10.1587/elex.2.512 +Mohammad Yavari,A new class AB folded-cascode operational amplifier.,2009,6,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee6.html#Yavari09,https://doi.org/10.1587/elex.6.395 +Woon-Young Yeo,Traffic management of high-speed CDMA systems based on load prediction.,2009,6,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee6.html#YeoHK09,https://doi.org/10.1587/elex.6.389 +Qiwei Song,Wideband SiGe BiCMOS transimpedance amplifier for 20 Gb/s optical links.,2015,12,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee12.html#SongMX15,https://doi.org/10.1587/elex.12.20150419 +Mohammadreza Keshavarzi,Study the influence of transmission line loss on the performance of matrix amplifiers.,2009,6,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee6.html#KeshavarziMA009,https://doi.org/10.1587/elex.6.1291 +Dong Wang,A high-throughput fixed-point complex divider for FPGAs.,2013,10,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee10.html#WangRL13,https://doi.org/10.1587/elex.10.20120879 +Hitoshi Obara,Benefits of static WDM add/drop multiplexers in optical burst switching networks of ring configuration.,2007,4,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee4.html#ObaraOS07,https://doi.org/10.1587/elex.4.357 +A. H. M. Almawgani,Outage probability of coded cooperation for slow fading channel.,2010,7,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee7.html#AlmawganiS10a,https://doi.org/10.1587/elex.7.1388 +Haruo Kobayashi,Analog/mixed-signal circuit design in nano CMOS era.,2014,11,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee11.html#KobayashiAKL14,https://doi.org/10.1587/elex.11.20142001 +Yihong Zhou,A wideband four-way power divider/combiner based on substrate integrated waveguide and double-layer finline.,2015,12,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee12.html#ZhouWLJ15,https://doi.org/10.1587/elex.12.20150861 +Takao Watanabe,A digital-data-preservation system featuring LED-light computer tomography.,2009,6,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee6.html#WatanabeSOM09,https://doi.org/10.1587/elex.6.1569 +Masaru Chibashi,A fully-differential resonant-tunneling circuit.,2005,2,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee2.html#ChibashiENW05,https://doi.org/10.1587/elex.2.221 +Shah-Jye Tzeng,Employing split-band technique and optical SSB filter to Improve directly modulated fiber optical CATV system performances.,2005,2,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee2.html#TzengLCCC05,https://doi.org/10.1587/elex.2.344 +Jianfeng Fu,Using dual-layer CRFs for event causal relation extraction.,2011,8,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee8.html#FuLLG11,https://doi.org/10.1587/elex.8.306 +Ali Reza Monajati,Wideband multi-layered cylindrical conformal slot antenna.,2008,5,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee5.html#MonajatiHN08,https://doi.org/10.1587/elex.5.631 +Azita Zandi Goharrizi,The effect of oxide aperture diameter on the electrical characteristics of the GaN-based vertical cavity surface emitting laser.,2012,9,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee9.html#GoharriziHH12,https://doi.org/10.1587/elex.9.179 +Tomohiro Taniguchi,Experimental demonstration of tolerance to FWM crosstalk in wavelength-swept WDM access systems.,2009,6,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee6.html#TaniguchiSKK09,https://doi.org/10.1587/elex.6.1180 +Bin Liu,Array calibration method for gain-phase errors based on asynchronous interstation direct wave interference.,2012,9,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee9.html#LiuWLXL12,https://doi.org/10.1587/elex.9.450 +Yang Liu,An IM2-free floating current buffer using average power based automatic calibration for IEEE 802.15.6 transmitter.,2016,13,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee13.html#LiuYLS16,https://doi.org/10.1587/elex.13.20160636 +Xinxin Xu,Optimal design of non-magnetic metamaterial absorbers using visualization method.,2014,11,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee11.html#XuWTS14,https://doi.org/10.1587/elex.11.20140676 +Natthawuth Somakettarin,Open-circuit-voltage characterization system design for studies of phase-transition mechanism and deterioration in Mn-type Li-ion batteries.,2017,14,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee14.html#SomakettarinSF17,https://doi.org/10.1587/elex.14.20170690 +Boya Zhao,An energy-efficient coarse grained spatial architecture for convolutional neural networks AlexNet.,2017,14,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee14.html#ZhaoWL17,https://doi.org/10.1587/elex.14.20170595 +Shinpei Oshima,Compact multiplexer modules for multi-band wireless systems using LTCC technology.,2012,9,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee9.html#OshimaM12,https://doi.org/10.1587/elex.9.1762 +Yoshiaki Yoshihara,Inductance-Tuned LC-VCO for Reconfigurable RF Circuit Design.,2004,1,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee1.html#YoshiharaSIOM04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.156 +Chung-Hsun Huang,A low-voltage high PSR LDO regulator with a simple ripple cancellation technique.,2014,11,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee11.html#HuangLL14,https://doi.org/10.1587/elex.11.20140906 +Pengfei Liao,Embedded current amplifier compensation for three-stage amplifiers with large capacitive loads.,2016,13,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee13.html#LiaoCLL16,https://doi.org/10.1587/elex.12.20150872 +Tran T. T. Huong,A single-electron hysteretic inverter designed for enhancement of stochastic resonance.,2015,12,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee12.html#HuongM15,https://doi.org/10.1587/elex.12.20150527 +Kalim Qureshi,Adaptive Pre-task Assignment scheduling strategy for heterogeneous distributed raytracing system.,2004,1,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee1.html#QureshiRR04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.373 +Liang-Hung Wang,Real-time and smooth scalable video streaming system with bitstream extractor intellectual property implementation.,2014,11,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee11.html#WangHWW14,https://doi.org/10.1587/elex.11.20140090 +Jinha Choi,Efficient motion vector prediction scheme for high speed motion estimation in H.264/AVC.,2008,5,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee5.html#ChoiLJK08,https://doi.org/10.1587/elex.5.889 +Zhiqiang You,A scan disabling-based BAST scheme for test cost reduction.,2011,8,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee8.html#YouWDLK11,https://doi.org/10.1587/elex.8.1367 +Y. Zehforoosh,Miniature monopole fractal antenna with inscribed arrowhead cuts for UWB applications.,2012,9,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee9.html#ZehforooshNSG12,https://doi.org/10.1587/elex.9.1855 +Ignacio Gil,Multiband EMI filter based on metamaterials.,2010,7,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee7.html#GilFGB10,https://doi.org/10.1587/elex.7.563 +Benjamin P. Wilkerson,An ultra-low power BPSK demodulator with dual band filtering for implantable biomedical devices.,2013,10,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee10.html#WilkersonSSK13,https://doi.org/10.1587/elex.10.20120896 +Jaemin Lee,On-chip interconnect boosting technique by using of 10-nm double gate-all-around (DGAA) transistor.,2015,12,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee12.html#LeeRK15,https://doi.org/10.1587/elex.12.20150321 +Chunmei Hu,Evaluating the single event sensitivity of dynamic comparator in 5 Gbps SerDes.,2015,12,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee12.html#HuCHLC15,https://doi.org/10.1587/elex.12.20150860 +Li Zhang,Design and analysis of the reference cells for STT-MRAM.,2013,10,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee10.html#ZhangZZBTLX13,https://doi.org/10.1587/elex.10.20130352 +Young-jin Kim,A 5.4mW concurrent low noise CMOS LNA for L1/L5 GPS application.,2009,6,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee6.html#KimEB09,https://doi.org/10.1587/elex.6.14 +Zhixi Yang,An analytical framework for error modeling of approximate adders.,2016,13,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee13.html#YangYXY16,https://doi.org/10.1587/elex.13.20160814 +Mizuki Motoyoshi,140GHz CMOS amplifier with group delay variation of 10.2ps and 0.1dB bandwidth of 12GHz.,2011,8,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee8.html#MotoyoshiFTF11,https://doi.org/10.1587/elex.8.1192 +Gwo Chin Chung,Performance of a recursive MBER decision feedback equalizer in long multipath channel.,2012,9,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee9.html#Chung12,https://doi.org/10.1587/elex.9.1201 +Moriya Nakamura,Ultimately phase-noise tolerant QPSK homodyne using a spectrum-sliced ASE light source.,2007,4,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee4.html#NakamuraKLM07,https://doi.org/10.1587/elex.4.406 +Mehdi Ghasemi,A new SPICE model for organic molecular transistors and a novel hybrid architecture.,2012,9,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee9.html#GhasemiSMKN12,https://doi.org/10.1587/elex.9.926 +Yang-Han Lee,Using hopping technique for interference mitigation in Modulated Scattering Array Antenna system.,2010,7,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee7.html#LeeJWCYS10,https://doi.org/10.1587/elex.7.839 +Leyu Zhai,Suboptimum custom-tailored model based on the pruned Volterra series for power amplifiers.,2014,11,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee11.html#ZhaiZZZZ14,https://doi.org/10.1587/elex.11.20140693 +Sekchin Chang,A time-domain SNR estimator based on a periodic preamble for wireless OFDM systems.,2011,8,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee8.html#ChangK11,https://doi.org/10.1587/elex.8.2073 +Nimra Javed,16-bit frequency signatured directly printable tag for organic electronics.,2016,13,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee13.html#JavedHAAT16,https://doi.org/10.1587/elex.13.20160406 +Hairul A. Abdul-Rashid,Chromatic dispersion power penalties in orthogonal subcarrier--optical tandem single sideband systems.,2005,2,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee2.html#Abdul-RashidCTAL05,https://doi.org/10.1587/elex.2.305 +Giovanni Angiulli,A simple preconditioner based on skew-Hermitian part of the discretized E-field Integral Equation.,2013,10,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee10.html#AngiulliAA13,https://doi.org/10.1587/elex.10.20130477 +Kuk-Jin Yoon,Improving stereo matching with symmetric cost functions.,2011,8,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee8.html#YoonP11,https://doi.org/10.1587/elex.8.57 +Zhuohui He,Digital predistortion of power amplifiers based on compound memory polynomial model.,2013,10,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee10.html#HeYF13,https://doi.org/10.1587/elex.10.20130687 +Yong-Sung Ahn,Avoiding noise frequency interference with binary phase pulse driving and CDS for capacitive TSP controller.,2014,11,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee11.html#AhnALK14,https://doi.org/10.1587/elex.11.20140837 +Toshifumi Moriyama,On the radiation properties of ADS-thinned dipole arrays.,2014,11,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee11.html#MoriyamaOSG14,https://doi.org/10.1587/elex.11.20140569 +Byeongdu La,Fast 4*4 intra-prediction based on the most probable mode in H.264/AVC.,2008,5,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee5.html#LaJC08,https://doi.org/10.1587/elex.5.782 +Kazuhiko Imano,Detecting pipe wall reduction using air-coupled MHz range ultrasonic wave.,2009,6,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee6.html#ImanoK09,https://doi.org/10.1587/elex.6.613 +Diary R. Sulaiman,Adaptive supply and body voltage control for ultra-low power microprocessors.,2017,14,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee14.html#SulaimanHI17,https://doi.org/10.1587/elex.14.20170306 +Hamid Kiumarsi,A 60GHz 3-dB tandem coupler using offset broadside-coupled lines on a silicon substrate.,2013,10,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee10.html#KiumarsiIOUCIM13,https://doi.org/10.1587/elex.10.20120901 +Hojung Ju,A low-power wideband multi-frequency synthesizer for mobile TV tuner ICs.,2010,7,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee7.html#JuK10,https://doi.org/10.1587/elex.7.92 +Doohwan Oh,Multithreaded pattern matching algorithm with data rearrangement.,2010,7,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee7.html#OhKR10,https://doi.org/10.1587/elex.7.1520 +Hao Shu,Dual priority congestion aware shared-resource Network-on-Chip architecture.,2016,13,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee13.html#ShuSMGPY16,https://doi.org/10.1587/elex.13.20160142 +Norbert Herencsar,New voltage-mode quadrature oscillator employing single DBTA and only grounded passive elements.,2009,6,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee6.html#HerencsarKVL09,https://doi.org/10.1587/elex.6.1708 +Sungwoo Cha,A 1-V 120-MHz FD-SOI CMOS linear-in-dB variable gain amplifier.,2005,2,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee2.html#ChaSKMT05,https://doi.org/10.1587/elex.2.249 +Motoki Hiraoka,Power efficient optical serial-to-parallel conversion using fractional OFDM-based linear technique.,2017,14,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee14.html#HiraokaNCSYHOMH17,https://doi.org/10.1587/elex.14.20170099 +F. Xu,UWB antenna with triple notched bands based on folded multiple-mode resonators.,2012,9,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee9.html#XuCW12,https://doi.org/10.1587/elex.9.965 +Taiju Tsuboi,Photoluminescence lifetime of Ir(ppy)3 used for organic light emitting diodes.,2004,1,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee1.html#TsuboiA04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.281 +Feng Liang,A test pattern generation method with high compression ratio.,2011,8,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee8.html#LiangZL11,https://doi.org/10.1587/elex.8.1842 +Joon-Hyuk Chang,Complex laplacian probability density function for noisy speech enhancement.,2007,4,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee4.html#Chang07,https://doi.org/10.1587/elex.4.245 +Duk-Jun Bang,An adaptive cache replacement policy based on fine-grain reusability monitor.,2018,15,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee15.html#BangKLP18,https://doi.org/10.1587/elex.14.20171099 +Hyeokjin Lim,FPGA-based spectrum sensors with switchable RBW.,2016,13,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee13.html#LimJL16,https://doi.org/10.1587/elex.13.20151118 +Zhiyuan Sun,Study of closed-loop high-resolution sigma-delta for a MEMS accelerometer.,2018,15,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee15.html#SunYLFL18,https://doi.org/10.1587/elex.14.20171090 +Ying-Han Pang,Face authentication system using pseudo Zernike moments on wavelet subband.,2004,1,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee1.html#PangJL04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.275 +Yingbo Zhao,Modeling and optimization of noise coupling in TSV-based 3D ICs.,2014,11,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee11.html#ZhaoYD14,https://doi.org/10.1587/elex.11.20140797 +Ickjin Kwon,A CMOS wideband LNA with low-loss integrated TX leakage canceller.,2012,9,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee9.html#KwonC12,https://doi.org/10.1587/elex.9.1122 +Yang-Han Lee,Using LDPC coding and AMC to mitigate received power imbalance in carrier aggregation communication system.,2011,8,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee8.html#LeeJHCYS11,https://doi.org/10.1587/elex.8.618 +Wang-Soo Kim,A 10-Gb/s low-power adaptive continuous-time linear equalizer using asynchronous under-sampling histogram.,2013,10,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee10.html#KimC13,https://doi.org/10.1587/elex.10.20130030 +Se-Chun Park,A 0.017 andmicro*J/sample 313 K sample/sec clamped sensing-based time domain CMOS temperature sensor.,2015,12,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee12.html#ParkCHJPK15,https://doi.org/10.1587/elex.12.20141133 +Rabindranath Nandi,Electronically tunable allpass filter: linear VCO design.,2016,13,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee13.html#NandiMP16a,https://doi.org/10.1587/elex.13.20160059 +Taehee Lee 0003,Physical-aware gating element insertion for thermal-safe scan shift operation.,2017,14,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee14.html#LeeY17,https://doi.org/10.1587/elex.14.20161181 +Santos López-Estrada,Hardware architecture for adaptive filtering based on energy-CFAR processor for radar target detection.,2010,7,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee7.html#Lopez-EstradaC10,https://doi.org/10.1587/elex.7.628 +Akira Tada,Delayed-ABC SOI for crosstalk noise repair.,2008,5,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee5.html#TadaNTIITIN08,https://doi.org/10.1587/elex.5.354 +Rong-Shan Wei,An energy-efficient multistage charge pump for MEMS microphone.,2017,14,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee14.html#WeiW17,https://doi.org/10.1587/elex.14.20170512 +Jingyu Wang,A fast-locking low-jitter pulsewidth control loop for high-speed pipelined ADC.,2012,9,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee9.html#WangZYGLY12,https://doi.org/10.1587/elex.9.1237 +Dianpeng Lin,A novel highly reliable and low-power radiation hardened SRAM bit-cell design.,2018,15,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee15.html#LinXLZDZLXJZZZ18,https://doi.org/10.1587/elex.15.20171129 +J. Mohammad Beygi,Retraction: Compact ultra-wideband antenna with dual band-stop characteristic.,2011,8,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee8.html#BeygiNG11,https://doi.org/10.1587/elex.8.1855 +Juan He,Characteristics for series and parallel circuits of flux-controlled memristors.,2017,14,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee14.html#HeHK17,https://doi.org/10.1587/elex.14.20170230 +Jangwoo Park,A simple analysis of bit error probability of UWB-TH PPM systems with the multiple access interference.,2004,1,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee1.html#Park04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.423 +Tsuyoshi Funaki,A study on electro thermal response of SiC power module during high temperature operation.,2008,5,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee5.html#FunakiNKH08,https://doi.org/10.1587/elex.5.597 +Hoyoung Park,A parasitic insensitive C-DAC with time-mode reference voltage generator.,2012,9,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee9.html#ParkYKLL12,https://doi.org/10.1587/elex.9.745 +Kamran Delfan Hemmati,A high-speed hybrid Full Adder with low power consumption.,2012,9,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee9.html#HemmatiFGH12,https://doi.org/10.1587/elex.9.1900 +Jin-Sung Youn,7-Gb/s monolithic photoreceiver fabricated with 0.25-µ*m SiGe BiCMOS technology.,2010,7,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee7.html#YounLPRC10,https://doi.org/10.1587/elex.7.659 +Tetsuya Hirose,Power-supply circuits for ultralow-power subthreshold MOS-LSIs.,2006,3,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee3.html#HiroseAA06,https://doi.org/10.1587/elex.3.464 +Yasushi Kishiwada,Low-power wireless on-chip microparticle manipulation with process variation compensation.,2013,10,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee10.html#KishiwadaIUDMM13,https://doi.org/10.1587/elex.10.20130407 +Keiji Goto,Asymptotic analysis for transient scattered field excited by the edges of a cylindrically curved conducting open sheet.,2014,11,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee11.html#GotoSMH14,https://doi.org/10.1587/elex.11.20130963 +Osanori Koyama,High temperature detection inside large-scale plants using distributed sensor fabricated by 10 LPG resonant wavelengths multiplexing.,2013,10,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee10.html#KoyamaSTY13,https://doi.org/10.1587/elex.10.20130586 +Masanori Nakahama,Electro-thermal tuning of MEMS VCSEL with giant wavelength-temperature dependence.,2012,9,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee9.html#NakahamaSNMK12,https://doi.org/10.1587/elex.9.416 +Ziho Shin,Design of a clockless MSP430 core using mixed asynchronous design flow.,2017,14,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee14.html#ShinOLKK17,https://doi.org/10.1587/elex.14.20170162 +Jong Ok Ha,A 3-5GHz IR-UWB CMOS RF transceiver with RF notch filter.,2013,10,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee10.html#HaPSE13,https://doi.org/10.1587/elex.10.20130428 +Lizeth Gonzalez-Carabarin,Low-power asynchronous digital pipeline based on mismatch-tolerant logic gates.,2014,11,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee11.html#Gonzalez-CarabarinAM14,https://doi.org/10.1587/elex.11.20140632 +Li Cai,Application of interpolation algorithm in plate structure detection based on Fiber Bragg grating sensing technology.,2015,12,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee12.html#CaiTL15,https://doi.org/10.1587/elex.12.20150271 +Shinpei Oshima,A study on a multilayer diplexer using LTCC technology for ultra-wideband wireless modules.,2011,8,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee8.html#OshimaWMS11,https://doi.org/10.1587/elex.8.848 +Guoxuan Qin,Characterization of flexible radio-frequency spiral inductors on a plastic substrate.,2016,13,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee13.html#QinLXDMMCL16,https://doi.org/10.1587/elex.13.20160690 +Zmago Jereb,Real-time geometrical correction of video image using FPGA.,2010,7,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee7.html#JerebD10,https://doi.org/10.1587/elex.7.346 +Junichi Akita,CMOS image sensor with pseudorandom pixel Placement.,2008,5,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee5.html#Akita08,https://doi.org/10.1587/elex.5.388 +Aibin Yan,A transient pulse dually filterable and online self-recoverable latch.,2017,14,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee14.html#YanLLH17,https://doi.org/10.1587/elex.13.20160911 +Choon Ki Ahn,A new chaos synchronization method for Duffing oscillator.,2009,6,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee6.html#Ahn09,https://doi.org/10.1587/elex.6.1355 +Mohammad Soroosh,A simple empirical model for calculating gain and excess noise in GaAs/Alλ8*Ga1-λ8*As APDs (0.3≤λ8*≤0.6).,2008,5,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee5.html#SorooshMS08,https://doi.org/10.1587/elex.5.853 +Jaroslav Koton,Minimal configuration precision full-wave rectifier using current and voltage conveyors.,2010,7,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee7.html#KotonHV10,https://doi.org/10.1587/elex.7.844 +Tsuyoshi Funaki,The influence of parasitic components on power MOSFET switching operation in power conversion circuits.,2009,6,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee6.html#FunakiAH09,https://doi.org/10.1587/elex.6.1697 +Dong Gun Kam,Optimization of flip-chip transitions for 60-GHz packages.,2014,11,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee11.html#Kam14,https://doi.org/10.1587/elex.11.20140256 +Nozomi Haga,System of equations describing charges of multiple conductors immersed in electrostatic fields.,2014,11,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee11.html#HagaMSK14,https://doi.org/10.1587/elex.11.20140803 +Sheng Wang 0005,A metastability-immune error-resilient flip-flop for near-threshold variation-tolerant designs.,2017,14,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee14.html#WangCXM17,https://doi.org/10.1587/elex.14.20170353 +Bashir I. Morshed,A simple and effective fluidic encapsulation protocol for bioMEMS devices.,2011,8,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee8.html#MorshedSM11,https://doi.org/10.1587/elex.8.1549 +Masashi Tawada,Speeding-up exact and fast FIFO-based cache configuration simulation.,2011,8,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee8.html#TawadaYT11,https://doi.org/10.1587/elex.8.1161 +Chia-Hao Ku,Compact planar dual-band folded dipole antenna for WLAN/WiMAX applications.,2011,8,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee8.html#KuLHLW11,https://doi.org/10.1587/elex.8.64 +C. M. R. Prabhu,Low-power fast (LPF) SRAM cell for write/read operation.,2011,8,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee8.html#PrabhuS11,https://doi.org/10.1587/elex.8.1473 +Masanori Ishii,A simple method by measuring the impedance for evaluation of magnetic antenna factor of a loop antenna.,2006,3,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee3.html#IshiiK06,https://doi.org/10.1587/elex.3.92 +Yong-Ho Yoo,A unified haptic representation for fluid and deformable objects.,2010,7,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee7.html#YooKK10,https://doi.org/10.1587/elex.7.170 +Chi-Min Li,Range extension of the inter-vehicle communication via the spatial diversity.,2011,8,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee8.html#LiWW11,https://doi.org/10.1587/elex.8.1180 +Nasrudin Abd. Rahim,A three-phase five-level inverter for DTC drives application.,2011,8,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee8.html#RahimEP11,https://doi.org/10.1587/elex.8.1 +Wenxiang Jian,Variation-tolerant CuxSiyO-based RRAM for low power application.,2012,9,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee9.html#JianJYBMLHZW12,https://doi.org/10.1587/elex.9.1654 +Weiqiang Liu,Design of 3-D quantum-dot cellular automata adders.,2015,12,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee12.html#LiuS15,https://doi.org/10.1587/elex.12.20150195 +Yuchan Wang,Understanding the influence of RESET current due to the active region of phase change memory.,2017,14,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee14.html#WangWCL17,https://doi.org/10.1587/elex.14.20170474 +Yoshio Takahashi,A proper security analysis method for CMOS cryptographic circuits.,2012,9,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee9.html#TakahashiM12,https://doi.org/10.1587/elex.9.458 +Munehiko Nagatani,High-performance compound-semiconductor integrated circuits for advanced digital coherent optical communications systems.,2016,13,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee13.html#NagataniN16,https://doi.org/10.1587/elex.13.20162003 +Jiangping He,A novel progressive trigger method of di/dt control for MOSFET.,2016,13,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee13.html#HeZPH16,https://doi.org/10.1587/elex.12.20151006 +Bong Hyuk Park,A fully integrated pulse width modulator for Class-S power amplifiers.,2013,10,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee10.html#ParkJL13,https://doi.org/10.1587/elex.10.20120929 +Hiroyuki Uchiyama,Suppression of plasma-induced fluorine damage in P-HEMTs using strained InSb barrier.,2004,1,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee1.html#UchiyamaTK04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.513 +Hoyoung Park,A touch sensor readout circuit using switched- capacitor charge pump.,2012,9,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee9.html#ParkYKLL12a,https://doi.org/10.1587/elex.9.1090 +Irni Hamiza Hamzah,Fabrication technique of a 3 dimensional SU8 mold on PMMA substrate.,2009,6,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee6.html#HamzahMS09,https://doi.org/10.1587/elex.6.1726 +Oh-Soon Shin,Cooperative spectrum sensing based on adaptive weighting for a cognitive radio system.,2011,8,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee8.html#ShinS11,https://doi.org/10.1587/elex.8.279 +Somayeh Kazemi,Deployment of the meta heuristic Colonial Competitive Algorithm in synthesis of unequally spaced linear antenna array.,2011,8,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee8.html#KazemiGH11,https://doi.org/10.1587/elex.8.2048 +Sangmin Lee,Low complexity pipeline FFT processor for MIMO-OFDM systems.,2007,4,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee4.html#LeeJK07,https://doi.org/10.1587/elex.4.750 +Kenji Kurokawa,Power dependence of fiber fuse propagation with a long-period damage track in hole-assisted fiber.,2011,8,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee8.html#KurokawaHTT11,https://doi.org/10.1587/elex.8.802 +Fatemeh Aezinia,Low power high performance level converter for dual supply voltage systems.,2007,4,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee4.html#AeziniaA07,https://doi.org/10.1587/elex.4.306 +J. S. Wang,A fast and scalable string matching algorithm using contents correction signature hashing for network IDS.,2008,5,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee5.html#WangKJKKC08,https://doi.org/10.1587/elex.5.949 +Atsushi Kanno,120-Gb/s NRZ-DQPSK signal generation by a thin-lithium-niobate-substrate modulator.,2010,7,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee7.html#KannoSCKHSI10,https://doi.org/10.1587/elex.7.817 +Ahmed El Oualkadi,New command circuit design for tuning high-Q pseudo 8-path switched-capacitor filter.,2004,1,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee1.html#OualkadiPGAD04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.363 +Yasuhiro Takahashi,SPICE model of memristive device using Tukey window function.,2015,12,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee12.html#TakahashiSY15,https://doi.org/10.1587/elex.12.20150149 +Feifei Lee,Shot change detection using a novel histogram feature in compressed video.,2008,5,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee5.html#LeeKCO08,https://doi.org/10.1587/elex.5.503 +Nan Li,Calibration for frequency-dependent mismatches in bandpass sampling TIADCs.,2017,14,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee14.html#LiLLW17,https://doi.org/10.1587/elex.14.20170851 +Xiangdong Li,AlGaN channel MIS-HEMTs with a very high breakdown electric field and excellent high-temperature performance.,2015,12,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee12.html#LiZFZJGZJSH15,https://doi.org/10.1587/elex.12.20150694 +Min-Seon Zee,Speech dereverberation based on blind estimation of a reverberation filter.,2009,6,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee6.html#ZeeP09,https://doi.org/10.1587/elex.6.1456 +To-Po Wang,An 82.3- to 87.4-GHz modified differential Colpitts VCO in 0.18-µ*m CMOS.,2014,11,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee11.html#WangW14a,https://doi.org/10.1587/elex.11.20140342 +Shunji Nakata,Stability of adiabatic reversible charging using 1D-capacitor array between the power supply and ground.,2007,4,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee4.html#Nakata07,https://doi.org/10.1587/elex.4.9 +Winam Kwon,Customized Forwarding in application layer multicast for real-time services.,2010,7,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee7.html#KwonGY10,https://doi.org/10.1587/elex.7.1635 +Ken-ichi Nishikawa,A new position detection method using leaky coaxial cable.,2008,5,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee5.html#NishikawaHTK08,https://doi.org/10.1587/elex.5.285 +Xu Hui,Circuit and layout combination technique to enhance multiple nodes upset tolerance in latches.,2015,12,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee12.html#HuiY15,https://doi.org/10.1587/elex.12.20150286 +Jae-Seon Yoon,Design of MIMO-OFDM multi-hop relaying with cooperative base station.,2010,7,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee7.html#YoonLBS10,https://doi.org/10.1587/elex.7.874 +Khosrov Dabbagh-Sadeghipour,Efficient realization of reconfigurable FIR filter using the new coefficient representation.,2011,8,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee8.html#Dabbagh-SadeghipourA11,https://doi.org/10.1587/elex.8.902 +Yingsong Li,A cognitive radio antenna integrated with narrow/ ultra-wideband antenna and switches.,2012,9,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee9.html#LiLM12,https://doi.org/10.1587/elex.9.1273 +Hiroshi Iwamura,Clover shape layout technique in switched capacitor power amplifier for improving drain efficiency.,2014,11,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee11.html#IwamuraOKDT14,https://doi.org/10.1587/elex.11.20140807 +Woo-Chan Park,The design of compressed memory system for depth data in 3D rendering processors.,2010,7,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee7.html#ParkYKKPJH10,https://doi.org/10.1587/elex.7.1622 +Claudia Feregrino Uribe,Hardware architecture for security improved Fallahpour audio watermarking scheme.,2014,11,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee11.html#UribeAGMCM14,https://doi.org/10.1587/elex.11.20140223 +Koichi Narahara,Efficiency of three-wave mixing in nonlinear composite right- and left-handed transmission lines.,2014,11,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee11.html#Narahara14,https://doi.org/10.1587/elex.11.20140547 +Koichi Hasebe,All-optical regenerator with re-polarization function based on dual optical injection VCSEL.,2005,2,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee2.html#HasebeOK05a,https://doi.org/10.1587/elex.2.338 +Jihwan Kim,Design of novel passive optical switching system using shared wavelength conversion with electrical buffer.,2006,3,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee3.html#KimCKR06,https://doi.org/10.1587/elex.3.546 +Qingxi Yang,Equivalent circuit of external electromagnetic fields coupling to a transmission line above a lossy ground.,2015,12,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee12.html#YangWZZC15,https://doi.org/10.1587/elex.12.20150474 +Zuyuan He,High-speed high-reflectance-resolution reflectometry by synthesis of optical coherence function.,2006,3,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee3.html#HeTH06,https://doi.org/10.1587/elex.3.122 +Huan Minh Vo,Dual-switch power gating revisited for small sleep energy loss and fast wake-up time in sub-45-nm nodes.,2011,8,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee8.html#VoJLM11,https://doi.org/10.1587/elex.8.232 +Hyoung Il Son,Automatic inspection method for macro defects in TFT-LCD color filter fabrication process.,2009,6,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee6.html#Son09,https://doi.org/10.1587/elex.6.516 +Mohammad Azim Karami,Novel methods for accelerating substrate coupling modeling and analysis.,2006,3,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee3.html#KaramiM06,https://doi.org/10.1587/elex.3.480 +Janghoon Yang,A Multi-stage Greedy Power Allocation scheme for average downlink system throughput maximization.,2010,7,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee7.html#YangK10,https://doi.org/10.1587/elex.7.1778 +Jongsu Park,Enhancing MPI performance using atomic pipelined message broadcast in a distributed memory MPSoC.,2014,11,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee11.html#ParkYM14,https://doi.org/10.1587/elex.11.20140357 +Yuan-Hung Tseng,Temperature-dependent power-law model for submicron CMOS circuits EOS breakdown study.,2016,13,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee13.html#TsengCW16,https://doi.org/10.1587/elex.13.20160248 +Younghwan Son,Investigation of capture and emission dependence between individual traps from complex random telegraph signal noise analysis.,2017,14,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee14.html#SonKK17,https://doi.org/10.1587/elex.14.20161189 +Li Wei,Novel FPGA-based pipelined floating point FFT processor.,2010,7,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee7.html#WeiJ10,https://doi.org/10.1587/elex.7.268 +Qingxi Yang,Fast transient analysis method for lossy nonuniform transmission line with nonlinear terminations.,2015,12,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee12.html#YangWZZ15,https://doi.org/10.1587/elex.12.20150362 +Cheng-Ying Chen,A 128 Kb HfO2 ReRAM with Novel Double-Reference and Dynamic-Tracking scheme for write yield improvement.,2016,13,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee13.html#ChenSSZ16,https://doi.org/10.1587/elex.13.20160061 +Yuan Du,Multi-core architecture with asynchronous clocks to prevent power analysis attacks.,2017,14,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee14.html#DuYJLLSC17,https://doi.org/10.1587/elex.14.20161220 +Kenji Shiojima,Systematic study of thermal stability of AlGaN/GaN two-dimensional electron gas structure with SiN surface passivation.,2004,1,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee1.html#ShiojimaSS04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.160 +Haibo Zheng,Capacity analysis for downlink distributed wireless communication system with channel allocation scheme.,2006,3,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee3.html#ZhengWZL06,https://doi.org/10.1587/elex.3.436 +Zhenghuan Xia,A novel handheld pseudo random coded UWB radar for human sensing applications.,2014,11,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee11.html#XiaFYZCY14,https://doi.org/10.1587/elex.11.20140981 +Yuichiro Ikuma,Integrated loop mirrors for catoptric functional waveguide devices.,2008,5,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee5.html#IkumaIT08,https://doi.org/10.1587/elex.5.176 +Kazuhiro Nakano,Sensor array characteristics of MOS Hall-plates and the comparison with split-drain MAGFETs.,2006,3,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee3.html#NakanoTK06,https://doi.org/10.1587/elex.3.328 +Jaejung Park,Multi-stage variable gain amplifier for low-voltage CCD analog-front end using CDA technique.,2010,7,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee7.html#ParkMLK10,https://doi.org/10.1587/elex.7.867 +Daesung Moon,Configurable fuzzy fingerprint vault for Match-on-Card system.,2009,6,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee6.html#MoonLC09,https://doi.org/10.1587/elex.6.993 +Shamini Subramaniam,Performance evaluation of SCM-WDM microcellular communication system in the presence of XPM.,2005,2,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee2.html#SubramaniamACD05,https://doi.org/10.1587/elex.2.192 +Jae-Hyun Kim,Simplified multiband front-end architecture using a multifunction circuit.,2016,13,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee13.html#KimGHP16,https://doi.org/10.1587/elex.13.20160829 +Siti Amalina Enche Ab Rahim,Class-C architecture for cross-coupled FBAR oscillator to further improve phase noise.,2017,14,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee14.html#RahimP17,https://doi.org/10.1587/elex.14.20170056 +Xiaoshan Yu,A multi-wavelength communication strategy for 2D-mesh Network-on-Chip.,2012,9,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee9.html#YuGYBY12,https://doi.org/10.1587/elex.9.706 +Tingyuan Nie,Circuit partitioning based fingerprinting method for IP protection.,2013,10,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee10.html#NieSJL13,https://doi.org/10.1587/elex.10.20130138 +Yong Hyeon Yun,Design of the electro-acoustic radiation conductance measurement system for medical ultrasonic array probe.,2011,8,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee8.html#YunJKKL11,https://doi.org/10.1587/elex.8.978 +Takayoshi Tashiro,Proposal of super low power consumption detector for emergency communication downstream system in FTTH.,2010,7,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee7.html#TashiroK10,https://doi.org/10.1587/elex.7.1317 +Hirokazu Kubota,Intermodal group velocity dispersion of few-mode fiber.,2010,7,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee7.html#KubotaTNMM10,https://doi.org/10.1587/elex.7.1552 +Daisuke Kurita,Super UWB bandpass filter.,2007,4,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee4.html#KuritaL07a,https://doi.org/10.1587/elex.4.300 +Huansheng Ning,A compact quad-band bandstop filter using dual-plane defected structures and open-loop resonators.,2012,9,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee9.html#NingWXLM12,https://doi.org/10.1587/elex.9.1630 +Julio Cesar Rosas-Caro,Generalized DC-DC multiplier converter topology.,2012,9,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee9.html#Rosas-CaroGLGCC12,https://doi.org/10.1587/elex.9.1522 +Masahiro Hayashitani,10ns High-speed PLZT optical content distribution system having slot-switch and GMPLS controller.,2008,5,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee5.html#HayashitaniKIAOYTN08,https://doi.org/10.1587/elex.5.181 +R. Hari Kumar,FPGA implementation of Wavelet Neural Network for epileptic seizure detection.,2013,10,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee10.html#KumarBB13,https://doi.org/10.1587/elex.10.20130848 +Trong-Thuc Hoang,Design of co-processor for real-time HMM-based text-to-speech on hardware system applied to Vietnamese.,2015,12,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee12.html#HoangSNLHBP15,https://doi.org/10.1587/elex.12.20150448 +Asif Mirza,A CMOS-MEMS cantilever sensor for capnometric applications.,2014,11,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee11.html#MirzaHKDASJ14,https://doi.org/10.1587/elex.11.20140113 +Majid Janidarmian,Onyx: A new heuristic bandwidth-constrained mapping of cores onto tile-based Network on Chip.,2009,6,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee6.html#JanidarmianKT09,https://doi.org/10.1587/elex.6.1 +June-Hee Lee,A fully digital clock and data recovery with fast frequency offset acquisition technique for MIPI LLI applications.,2013,10,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee10.html#LeeKJKC13,https://doi.org/10.1587/elex.10.20130178 +Rui Yao,State synchronization technique based on present input and healthy state for repairable TMR systems.,2016,13,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee13.html#YaoWWZZL16,https://doi.org/10.1587/elex.13.20161000 +Abolfazl Mehbodniya,BER analysis of DS-UWB system employing a laplace distribution model.,2011,8,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee8.html#MehbodniyaAA11,https://doi.org/10.1587/elex.8.1089 +Zixuan Wang,A MASH 1-1-1 Δ Σ time-to-digital converter based on two-stage time quantization.,2013,10,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee10.html#WangWCJ13,https://doi.org/10.1587/elex.10.20130729 +Fang-Ting Chou,A compact 12-bit DAC with novel bias scheme.,2014,11,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee11.html#ChouH14,https://doi.org/10.1587/elex.11.20140572 +Lin Zhou,Design and implementation of equilateral triangle array digital direction finding system.,2012,9,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee9.html#ZhouWGSZ12,https://doi.org/10.1587/elex.9.1102 +Seung-Ho Lim,Hash-based directory management for flash memory storage.,2011,8,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee8.html#Lim11,https://doi.org/10.1587/elex.8.372 +Taewoo Han,A novel test access mechanism for parallel testing of multi-core system.,2014,11,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee11.html#HanCK14,https://doi.org/10.1587/elex.11.20140093 +Hu Jiang,Synthesis of quantum circuits by multiplex rotation gates.,2016,13,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee13.html#JiangPQ16,https://doi.org/10.1587/elex.13.20151089 +Keivan Navi,An energy efficient full adder cell for low voltage.,2009,6,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee6.html#NaviMH09,https://doi.org/10.1587/elex.6.553 +Sedigheh Hashemi,A low-voltage low-power highly-linear switched-RC MDAC for pipelined ADCs.,2008,5,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee5.html#HashemiS08,https://doi.org/10.1587/elex.5.67 +Hyejeong Jeon,Reliability measure for sound source localization.,2008,5,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee5.html#JeonKKLY08,https://doi.org/10.1587/elex.5.192 +Hua-Pin Chen,CCCCTA-based resistorless voltage and current mode quadrature oscillator.,2015,12,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee12.html#ChenWK15,https://doi.org/10.1587/elex.12.20150449 +Seung-Nam Kang,Accurate inter-vehicle distance measurement based on monocular camera and line laser.,2014,11,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee11.html#KangYSS14,https://doi.org/10.1587/elex.11.20130932 +Lianxi Liu,A hybrid threshold self-compensation rectifier for RF energy harvesting.,2014,11,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee11.html#LiuMMZ14,https://doi.org/10.1587/elex.11.20141000 +Seon-Ho Kim,Novel LMS algorithms based on status categorization.,2009,6,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee6.html#KimCLS09,https://doi.org/10.1587/elex.6.1361 +Mohammad Lari,Characterization of effective capacity in AF relay systems.,2012,9,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee9.html#Lari0AL12,https://doi.org/10.1587/elex.9.679 +Toshihiko Kosugi,A 125-GHz 140-mW InGaAs/InP composite-channel HEMT MMIC power amplifier module.,2009,6,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee6.html#KosugiSMTHKKE09,https://doi.org/10.1587/elex.6.1764 +Li Lai,A predictive digital controlled algorithm for power factor correction converter.,2015,12,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee12.html#LaiLH15a,https://doi.org/10.1587/elex.12.20150280 +Changwoo Min,Hardware assisted dynamic memory balancing in virtual machines.,2011,8,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee8.html#MinKKE11,https://doi.org/10.1587/elex.8.748 +Ki Seok Kwak,Application of time-frequency domain reflectometry for measuring load impedance.,2008,5,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee5.html#KwakCPY08,https://doi.org/10.1587/elex.5.107 +Joonhee Yoon,Realization of extended IGMP in GPON for IPTV.,2012,9,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee9.html#YoonP12,https://doi.org/10.1587/elex.9.552 +Hyunju Ham,Design of a 500-MS/s stochastic signal detection circuit using a non-linearity reduction technique in a 65-nm CMOS process.,2011,8,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee8.html#HamM0011,https://doi.org/10.1587/elex.8.353 +Dinh Trong Quang,A novel uniform asymptotic solution for reflection of a Gaussian beam at a dielectric interface.,2011,8,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee8.html#QuangGKI11,https://doi.org/10.1587/elex.8.397 +Roman Sotner,Design of the simple oscillator with linear tuning and pi/4 phase shift based on emulator of the modified current differencing unit.,2015,12,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee12.html#SotnerJHV15,https://doi.org/10.1587/elex.12.20150557 +Jinling Xing,Impact of electroforming polarity on TiO2 based memristor.,2016,13,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee13.html#XingLLLX16,https://doi.org/10.1587/elex.13.20160613 +Khalid Mahmood,Autotuned feature detection to improve position based visual servoing.,2010,7,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee7.html#MahmoodI10,https://doi.org/10.1587/elex.7.969 +Seulki Park,Impact of the double-patterning technique on the LER-induced threshold voltage variation in symmetric tunnel field-effect transistor.,2015,12,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee12.html#ParkLS15,https://doi.org/10.1587/elex.12.20150349 +Mohammad Yavari,A novel fully-differential class AB folded-cascode OTA.,2004,1,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee1.html#YavariS04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.358 +Abumoslem Jannesari,Sinusoidal-switched serial-coupled CMOS LC quadrature VCO.,2007,4,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee4.html#JannesariK07,https://doi.org/10.1587/elex.4.423 +Liwen Liu,Extended coset decoding scheme for multi-bit asymmetric errors in non-volatile memories.,2017,14,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee14.html#LiuZZX17,https://doi.org/10.1587/elex.14.20170919 +Hyunho Kang,Wolf fingerprints against minutiae count matching systems.,2010,7,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee7.html#KangYIOI10,https://doi.org/10.1587/elex.7.738 +Dongdong Zhong,A perfectly current matched charge pump with wide dynamic range for ultra low voltage applications.,2014,11,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee11.html#ZhongHSZCS14,https://doi.org/10.1587/elex.11.20140993 +Mamoru Ugajin,High-image-rejection wireless-receiver architecture with a 3-phase active RC complex filter.,2015,12,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee12.html#UgajinKT15,https://doi.org/10.1587/elex.12.20150329 +Riadh A. H. Mahdi,Miniaturization of rectangular microstrip patch antenna using topology optimized metamaterial.,2017,14,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee14.html#MahdiT17,https://doi.org/10.1587/elex.14.20170787 +Toru Kawano,High-frequency asymptotic solution for scattered fields by a junction of planar impedance surfaces.,2010,7,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee7.html#KawanoGI10,https://doi.org/10.1587/elex.7.1072 +Kwan-Hee Jo,Low-power read circuit with self-adjusted column pulse width for diode-switch resistive RAMs.,2009,6,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee6.html#JoBM09,https://doi.org/10.1587/elex.6.986 +Won-Hwa Shin,Blind-oversampling adaptive oversample-level DFE receiver for unsynchronized global on-chip serial links.,2013,10,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee10.html#ShinJK13,https://doi.org/10.1587/elex.10.20120830 +Kele Shen,Reconfigured test architecture optimization for TSV-based three-dimensional SoCs.,2014,11,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee11.html#ShenXJ14,https://doi.org/10.1587/elex.11.20140661 +Zhaosheng He,Compact filter based on a hybrid structure of substrate integrated waveguide and coplanar waveguide.,2017,14,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee14.html#HeYLLHJ17,https://doi.org/10.1587/elex.14.20161198 +Kyung Ki Kim,Modeling and analysis of inter-symbol interference (ISI) jitter.,2007,4,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee4.html#Kim07,https://doi.org/10.1587/elex.4.582 +Kangrui Wang,Design of a low-insertion-phase-shift MMIC attenuator integrated with a serial-to-parallel converter.,2017,14,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee14.html#WangWWCZY17,https://doi.org/10.1587/elex.14.20170924 +Xiaowei Liu,A low noise sigma-delta microaccelerometer interface circuit.,2014,11,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee11.html#LiuXYGR14,https://doi.org/10.1587/elex.11.20140315 +Yuxiao Lu,A fast low power window-opening logic for high speed SAR ADC.,2014,11,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee11.html#LuFSLZ14,https://doi.org/10.1587/elex.11.20140454 +Weiwei Shan,An improved timing monitor for deep dynamic voltage scaling system.,2013,10,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee10.html#ShanGLWJGC13,https://doi.org/10.1587/elex.10.20130089 +Ali Farahbakhsh,Design a low mutual coupling microstrip array antenna with non regular polygonal patches.,2010,7,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee7.html#FarahbakhshM10,https://doi.org/10.1587/elex.7.1271 +Guohe Zhang,Design of Four-wave Oscillating Cellular-Neural-Network.,2011,8,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee8.html#ZhangLLTB11,https://doi.org/10.1587/elex.8.944 +Amit Kumar Mishra,Separability indices and their use in radar signal based target recognition.,2009,6,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee6.html#Mishra09,https://doi.org/10.1587/elex.6.1000 +Maher Assaad,An FPGA-based design and implementation of an all-digital serializer for inter module communication in SoC.,2011,8,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee8.html#AssaadA11,https://doi.org/10.1587/elex.8.2017 +Yong-Jin Lee,Web object transfer latency over SCTP in the initial slow-start phase.,2009,6,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee6.html#LeeA09,https://doi.org/10.1587/elex.6.218 +Guan Gui,Sparse signal recovery with OMP algorithm using sensing measurement matrix.,2011,8,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee8.html#GuiMWA11,https://doi.org/10.1587/elex.8.285 +Yong-Jin Kwon,Sub-1-V-Output CMOS bandgap reference circuit with small area and low power consumption.,2009,6,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee6.html#KwonBKM09,https://doi.org/10.1587/elex.6.161 +Jiajin Zhang,A DMR logic for mitigating the SET induced soft errors in combinational circuits.,2016,13,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee13.html#ZhangHDQLYC16,https://doi.org/10.1587/elex.12.20150927 +Sangjin Byun,Charge Pump circuit with wide range digital leakage current mismatch compensator.,2010,7,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee7.html#ByunS10,https://doi.org/10.1587/elex.7.1709 +Jian Yang,Adaptive Doppler centroid estimation algorithm of airborne SAR.,2012,9,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee9.html#YangLW12,https://doi.org/10.1587/elex.9.1135 +Behnam Sedighi,Variable gain current mirror for high-speed applications.,2007,4,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee4.html#SedighiB07,https://doi.org/10.1587/elex.4.277 +Bobae Kim,Effect of bias circuits on receiver band noise of GaAs HBT power amplifiers.,2010,7,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee7.html#KimLL10,https://doi.org/10.1587/elex.7.159 +Yinghui Tian,A memory-based FFT processor using modified signal flow graph with novel conflict-free address schemes.,2017,14,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee14.html#TianHLDSY17,https://doi.org/10.1587/elex.14.20170660 +Cunbing Gui,An improved adaptive minimum dc-link voltage controller.,2016,13,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee13.html#GuiXW16,https://doi.org/10.1587/elex.13.20160429 +Hong-Yeol Lim,Cooperative cache memory (CCM) based on the performance efficiency for 3D stacked memory system.,2016,13,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee13.html#LimP16,https://doi.org/10.1587/elex.13.20160276 +Ung Hee Park,A variable power divider with 1: 3 and 3: 1 power division ratios.,2012,9,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee9.html#Park12a,https://doi.org/10.1587/elex.9.596 +Rong Wang,Design of Psub-SMPD and DNW-SMPD fabricated in a standard 0.18-µ*m CMOS process.,2017,14,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee14.html#WangFW17,https://doi.org/10.1587/elex.14.20170611 +Tianwei Zhu,Compact inline dual-band dual-mode BPF with a hybrid structure of single-layered SIW and CPW.,2016,13,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee13.html#ZhuDDZZ16,https://doi.org/10.1587/elex.13.20160209 +Chaojie Fan,Nonlinear inter-stage gain calibration for pipelined ADCs employing double dithering modes.,2014,11,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee11.html#FanWPZ14,https://doi.org/10.1587/elex.11.20140995 +Reza Abdollahi,Improved timing closure by analytical buffer and TSV planning in three-dimensional chips.,2012,9,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee9.html#AbdollahiJ12,https://doi.org/10.1587/elex.9.1849 +Min Liao,Performance improvement of pentacene based organic field-effect transistor with HfON gate insulator.,2011,8,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee8.html#LiaoIO11,https://doi.org/10.1587/elex.8.1461 +M. Zafar Ullah Khan,Independent null steering by decoupling complex weights.,2011,8,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee8.html#KhanNQZ11,https://doi.org/10.1587/elex.8.1008 +Jun Sun,A low power low supply sensitivity current-mode relaxation oscillator.,2014,11,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee11.html#SunHQ14,https://doi.org/10.1587/elex.11.20140877 +Shao-Hua Chen,A synthesizable architecture of all-digital cyclic TDCs.,2014,11,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee11.html#ChenL14,https://doi.org/10.1587/elex.11.20140875 +Mayank Vatsa,Robust biometric image watermarking for fingerprint and face template protection.,2006,3,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee3.html#VatsaSNHM06,https://doi.org/10.1587/elex.3.23 +Xin-Wu Song,The optimization of electrical fast transient filter.,2014,11,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee11.html#SongL14a,https://doi.org/10.1587/elex.11.20140485 +Hiroshi Hirayama,A consideration of electro-magnetic-resonant coupling mode in wireless power transmission.,2009,6,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee6.html#HirayamaOHKS09,https://doi.org/10.1587/elex.6.1421 +Yayun Zhang,Design of LPF using Hi-Lo interdigital DGS slot.,2016,13,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee13.html#ZhangJL16,https://doi.org/10.1587/elex.13.20160175 +Mehedi Hasan,A polarization dependent left handed metamaterial for telecommunication.,2017,14,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee14.html#HasanFI17,https://doi.org/10.1587/elex.14.20171073 +Tae-Wuk Bae,Recursive multi-SEs NWTH method for small target detection in infrared images.,2011,8,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee8.html#BaeKZKAS11,https://doi.org/10.1587/elex.8.1576 +Nithi Atthi,Investigation of bilayer HfNx gate insulator utilizing ECR plasma sputtering.,2016,13,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee13.html#AtthiO16,https://doi.org/10.1587/elex.13.20160054 +Wei Song,A harmonic suppression and size-reduced rat-race hybrid coupler using dual coupled-lines.,2012,9,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee9.html#SongDT12,https://doi.org/10.1587/elex.9.1083 +Jiahui Luo,A lifting wavelet based lossless and lossy ECG compression processor for wireless sensors.,2017,14,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee14.html#LuoCXM17,https://doi.org/10.1587/elex.14.20170865 +Toshiki Kanamoto,Structure optimization for timing in nano scale FinFET.,2015,12,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee12.html#KanamotoAAHSKKK15,https://doi.org/10.1587/elex.12.20150297 +Lie Zhang,Three-dimensional power segmented tracking for adaptive digital pre-distortion.,2016,13,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee13.html#ZhangF16,https://doi.org/10.1587/elex.13.20160711 +Yong Ye,CAM-based retention-aware DRAM (CRA-DRAM) for refresh power reduction.,2017,14,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee14.html#YeDJLSC17,https://doi.org/10.1587/elex.14.20170053 +Ali Azarbar,Non- Sensitive Matrix Pencil method against mutual coupling.,2011,8,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee8.html#AzarbarDB11,https://doi.org/10.1587/elex.8.318 +Junfeng Gao,Signal independent digital calibration technique for SAR ADC with one bit redundancy.,2015,12,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee12.html#GaoL15,https://doi.org/10.1587/elex.12.20150068 +Hideaki Matsuzaki,Suppression of short-channel effect in pseudomorphic In0.25Al0.75P/In0.75Ga0.25As high electron mobility transistors.,2004,1,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee1.html#MatsuzakiSYKE04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.292 +Ichiro Ruiz Obregon,A hybrid SA-EA method for finding the maximum number of switching gates in a combinational circuit.,2008,5,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee5.html#ObregonP08,https://doi.org/10.1587/elex.5.756 +Song-Nien Tang,FDOCT imaging processor for portable OCT systems with high imaging rate.,2018,15,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee15.html#TangHHC18,https://doi.org/10.1587/elex.15.20171128 +Qing Si,A modified INBC for FDTD analyzing of shielding cavity with thin conductive layers under plane wave incidence.,2016,13,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee13.html#SiHSLCJ16,https://doi.org/10.1587/elex.13.20151093 +Rong-Jun Ge,A modified pulse-coupled spiking neuron circuit with memory threshold and its application.,2016,13,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee13.html#GeZZLGM16,https://doi.org/10.1587/elex.13.20151121 +Yan Liu,A low power accelerometer system with hybrid signal output.,2018,15,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee15.html#LiuZW18,https://doi.org/10.1587/elex.15.20171091 +Dong-Chul Go,Fast packet size adaptation based on Rician distribution mobility range estimation.,2011,8,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee8.html#GoC11,https://doi.org/10.1587/elex.8.220 +Ryo Kajiwara,Proposal of shadowing estimation method to improve TCP throughput in road-to-vehicle system.,2006,3,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee3.html#KajiwaraITK06,https://doi.org/10.1587/elex.3.102 +Byoungwook Kim,Low-voltage current-mode integrator for channel selection filter.,2014,11,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee11.html#KimK14,https://doi.org/10.1587/elex.10.20130845 +Sulaiman Wadi Harun,All-Optical Gain Clamped Double-Pass L-Band EDFA Based on Partial Reflection of ASE.,2004,1,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee1.html#HarunSA04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.171 +Chao Chen,A 0.6 V passive mixer with high conversion gain in 65 nm CMOS process.,2015,12,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee12.html#ChenWC15,https://doi.org/10.1587/elex.12.20141127 +Hidemi Tsuchida,40-GHz subharmonic optical clock recovery using an injection-locked optoelectronic oscillator.,2006,3,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee3.html#Tsuchida06,https://doi.org/10.1587/elex.3.373 +Yeon-Jin Kim,Low-latency and memory-efficient SDF IFFT processor design for 3GPP LTE.,2017,14,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee14.html#KimJCC17,https://doi.org/10.1587/elex.14.20170395 +Zhiqing Chen,A 21.4 pW/frame-pixel PWM image sensor with sub-threshold leakage reduction and two-step readout.,2015,12,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee12.html#ChenDDTZWF15,https://doi.org/10.1587/elex.12.20150711 +Hyunhee Park,Dynamic beam steering using directional antennas in mmwave wireless networks.,2011,8,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee8.html#ParkK11,https://doi.org/10.1587/elex.8.378 +Hyunggoy Oh,Reconfigurable scan architecture for test power and data volume reduction.,2017,14,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee14.html#OhKLK17,https://doi.org/10.1587/elex.14.20170415 +Dongeun Lee,Low-complexity compressive sensing with downsampling.,2014,11,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee11.html#LeeCS14,https://doi.org/10.1587/elex.11.20130947 +Seiichi Takamatsu,Photosensitive protein patterning with electrophoretic deposition.,2010,7,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee7.html#TakamatsuHMMS10,https://doi.org/10.1587/elex.7.779 +Tayyab Shabbir,A single layer delay-lines based reflectarray for X-band applications.,2018,15,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee15.html#ShabbirSRS18,https://doi.org/10.1587/elex.14.20171150 +Daeho Lee,Estimation of collision response of virtual objects to arbitrary-shaped real objects.,2008,5,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee5.html#LeeL08,https://doi.org/10.1587/elex.5.678 +Liao Wu,A parallel-SSHI rectifier for ultra-low-voltage piezoelectric vibration energy harvesting.,2016,13,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee13.html#WuKYLC16,https://doi.org/10.1587/elex.13.20160539 +Young-Ki Cho,Experimental verification of electromagnetic scattering via two-dimensional periodic array of small resonant apertures.,2017,14,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee14.html#ChoYKK17,https://doi.org/10.1587/elex.14.20170796 +Xuan-Thuan Nguyen,An FPGA approach for high-performance multi-match priority encoder.,2016,13,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee13.html#NguyenNP16a,https://doi.org/10.1587/elex.13.20160447 +Sungjae Lee,Selective restart of threads for efficient thread-level speculation on multicore architecture.,2012,9,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee9.html#LeeL12,https://doi.org/10.1587/elex.9.290 +Mengyuan He,Research of circuit breaker intelligent fault diagnosis method based on double clustering.,2017,14,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee14.html#HeDZW17,https://doi.org/10.1587/elex.14.20170463 +Ghazal Fahmy,A third order delta-sigma modulator employing shared opamp technique for WCDMA on 0.18um CMOS.,2011,8,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee8.html#FahmyKKYPA11,https://doi.org/10.1587/elex.8.1204 +Tahir Khan,Adaptive feed-forward control of thermal heating process.,2006,3,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee3.html#KhanS06,https://doi.org/10.1587/elex.3.184 +Sulaiman Wadi Harun,Effect of coupling ratio on performance of self-excited Brillouin/erbium fiber laser.,2004,1,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee1.html#HarunSA04a,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.460 +Weiwei Shan,VLSI design of a reconfigurable S-box based on memory sharing method.,2014,11,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee11.html#ShanZFC14,https://doi.org/10.1587/elex.10.20130872 +Jong Won Eun,A microstrip dual-band bandpass filter using feed line with SIR.,2017,14,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee14.html#EunL17,https://doi.org/10.1587/elex.14.20170022 +Ryosuke Kubota,Distribution distance-based threshold auto-tuning method for switching median filter.,2010,7,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee7.html#KubotaS10,https://doi.org/10.1587/elex.7.1310 +Rongshan Wei,Efficient VLSI Huffman encoder implementation and its application in high rate serial data encoding.,2017,14,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee14.html#WeiZ17,https://doi.org/10.1587/elex.14.20170976 +Su-Jin Park,CMOS cross-coupled charge pump with improved latch-up immunity.,2009,6,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee6.html#ParkKKHJLK09,https://doi.org/10.1587/elex.6.736 +Wei Guo,Floorplanner for multi-core micro-processors in 3D ICs with interlayer cooling system.,2015,12,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee12.html#GuoZLY15,https://doi.org/10.1587/elex.12.20150489 +Huihua Liu,A novel digital phase interpolation control for clock and data recovery circuit.,2015,12,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee12.html#LiuLLZ15,https://doi.org/10.1587/elex.12.20150617 +Liang Hong,A full-pipelined 2-D IDCT/IDST VLSI architecture with adaptive block-size for HEVC standard.,2013,10,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee10.html#HongHZM13,https://doi.org/10.1587/elex.10.20130210 +Daying Sun,A new digital predictive control strategy for boost PFC converter.,2015,12,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee12.html#SunXSL15,https://doi.org/10.1587/elex.12.20150726 +Yuji Okamoto,Access time measurement of 64-kb Josephson-CMOS hybrid memories using SFQ time-to-digital converter.,2010,7,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee7.html#OkamotoJYYY10,https://doi.org/10.1587/elex.7.320 +Christos Kalialakis,Improved approximation error bounds when modeling WLAN signals in flat fading channels.,2007,4,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee4.html#Kalialakis07,https://doi.org/10.1587/elex.4.351 +Dawood Alnajiar,PVT-induced timing error detection through replica circuits and time redundancy in reconfigurable devices.,2013,10,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee10.html#AlnajjarMHO13,https://doi.org/10.1587/elex.10.20130081 +Duckdong Hwang,Inter-cell interference alignment in multi cell multiuser channels.,2012,9,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee9.html#Hwang12,https://doi.org/10.1587/elex.9.586 +Jaewook Shin,A CMOS high-speed pulse swallow frequency divider for Δ Σ fractional-N PLL's.,2010,7,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee7.html#ShinS10,https://doi.org/10.1587/elex.7.856 +Kenji Iwamoto,An athermal delay interference circuit using trenches filled with low-refractive index material.,2009,6,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee6.html#IwamotoIT09,https://doi.org/10.1587/elex.6.1769 +Mohammad Shafieipour,Robust turbo coded OFDM transceiver for power-line channels.,2010,7,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee7.html#ShafieipourLC10,https://doi.org/10.1587/elex.7.1416 +R. Sakthivel,Design of dynamically reconfigurable fully optimized low power FFT architecture for MC-CDMA receiver.,2013,10,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee10.html#SakthivelK13,https://doi.org/10.1587/elex.10.20130252 +Yoshinao Mizugaki,Zero-crossing Shapiro step generated in a niobium in-line Josephson gate.,2014,11,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee11.html#MizugakiTS14,https://doi.org/10.1587/elex.11.20140054 +Young Min Kwon,Victim macro UE detection procedure based on network assistance in LTE-femtocell networks.,2012,9,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee9.html#KwonBLKC12,https://doi.org/10.1587/elex.9.146 +Liwen Nan,Development and evaluation of a driver circuitry for miniature spectrometers used in cold environments.,2017,14,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee14.html#NanWHHSC17,https://doi.org/10.1587/elex.14.20170876 +Michihiko Ono,A location map-free reversible data hiding method for specific area embedding.,2009,6,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee6.html#OnoHFK09,https://doi.org/10.1587/elex.6.483 +Jiaqiang Xie,A snapback-free reverse conducting IGBT with recess and floating buffer at the backside.,2017,14,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee14.html#XieMLGY17,https://doi.org/10.1587/elex.14.20170677 +Changryoul Choi,Successive elimination algorithm for two-bit transform-based motion estimation.,2010,7,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee7.html#ChoiJ10,https://doi.org/10.1587/elex.7.684 +Kiichi Niitsu,A low-offset cascaded time amplifier with reconfigurable inter-stage connection.,2014,11,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee11.html#NiitsuHYK14,https://doi.org/10.1587/elex.11.20140203 +Xiaodong Lu,Discrete-time modeling and control for the differential power processing PV architecture based on DAB converters.,2016,13,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee13.html#Lu16,https://doi.org/10.1587/elex.13.20160144 +Shinpei Oshima,A compact multilayer triplexer using an ultra-wideband diplexer and a low-pass filter for 2.4GHz wireless systems.,2012,9,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee9.html#OshimaWMHES12,https://doi.org/10.1587/elex.9.1075 +Kyu Hyun Choi,A decoupled bit shifting technique using data encoding/decoding for DRAM redundancy repair.,2017,14,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee14.html#ChoiJKKH17,https://doi.org/10.1587/elex.14.20170385 +Ze-zong Chen,Ocean wave directional spectrum measurement using microwave coherent radar with six antennas.,2012,9,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee9.html#ChenFZJ12,https://doi.org/10.1587/elex.9.1542 +Satoshi Shinada,An optical grating filter dry-etched on a LiNbO3 substrate.,2006,3,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee3.html#ShinadaKSI06,https://doi.org/10.1587/elex.3.347 +Somayyeh Rahimian Omam,Minimizing the adder cost in multiple constant multipliers.,2006,3,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee3.html#OmamFS06,https://doi.org/10.1587/elex.3.340 +Wei Yi,A Flash-aware Intra-disk Redundancy scheme for high reliable All Flash Array.,2015,12,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee12.html#YiXXL15,https://doi.org/10.1587/elex.12.20150295 +Shigeru Kobayashi,Transformation of the intensity profile for a step-index multimode fiber core.,2017,14,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee14.html#KobayashiS17,https://doi.org/10.1587/elex.14.20170375 +Li-Peng Wang,The prediction of membrane protein types with NPE.,2010,7,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee7.html#WangYCZ10,https://doi.org/10.1587/elex.7.397 +Rihito Kuroda,Si image sensors with wide spectral response and high robustness to ultraviolet light exposure.,2014,11,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee11.html#KurodaS14,https://doi.org/10.1587/elex.11.20142004 +Tsuyoshi Ikehara,High-cycle fatigue of micromachined single crystal silicon measured using a parallel fatigue test system.,2007,4,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee4.html#IkeharaT07,https://doi.org/10.1587/elex.4.288 +Ali Sahafi,Pico Watt sub-threshold CMOS voltage reference circuit.,2013,10,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee10.html#SahafiSK13,https://doi.org/10.1587/elex.10.20120945 +Hui Yang,Spatial Polarization Characteristic of orthogonal polarization binary array antenna.,2012,9,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee9.html#YangDL12,https://doi.org/10.1587/elex.9.1316 +Hua Fan,A novel redundant pipelined successive approximation register ADC.,2013,10,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee10.html#FanWQY13,https://doi.org/10.1587/elex.10.20130047 +Nguyen Manh Quyet,Curved uniplanar EBG structure for suppressed ground bounce noise and improved signal integrity in power planes.,2013,10,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee10.html#QuyetLP13,https://doi.org/10.1587/elex.10.20130362 +Zhi-Ming Wang,An 85-120 GHz high-gain and wide-band InP MMIC amplifier.,2015,12,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee12.html#WangZJHSCFL15,https://doi.org/10.1587/elex.12.20150760 +Xiaoge Zhu,A 6 mW 325 MS/s 8 bit SAR ADC with background offset calibration.,2017,14,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee14.html#ZhuWZMWLHWL17,https://doi.org/10.1587/elex.14.20170329 +Hyun-Sik Kim,Switching power supply circuit with voltage-drop compensation for AMOLED displays.,2016,13,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee13.html#KimH16,https://doi.org/10.1587/elex.13.20151076 +Young-Ho Jung,Pilot sharing method for uplink OFDMA channel estimation.,2009,6,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee6.html#JungP09,https://doi.org/10.1587/elex.6.1051 +Dejun Feng,Radar target echo cancellation using interrupted-sampling repeater.,2014,11,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee11.html#FengXWY14,https://doi.org/10.1587/elex.11.20130997 +Turki F. Al-Somani,An efficient and scalable postcomputation-based generic-point parallel scalar multiplication method.,2014,11,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee11.html#Al-SomaniFI14,https://doi.org/10.1587/elex.11.20140356 +Jun Han 0003,A 64*32bit 4-read 2-write low power and area efficient register file in 65nm CMOS.,2012,9,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee9.html#HanZLXZZYHCZ12,https://doi.org/10.1587/elex.9.1355 +Thi Thi Zin,Background modeling using special type of Markov Chain.,2011,8,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee8.html#ZinTTH11,https://doi.org/10.1587/elex.8.1082 +Masao Kitano,Coupled-resonator-based metamaterials.,2012,9,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee9.html#KitanoTN12,https://doi.org/10.1587/elex.9.51 +Mostafa Yargholi,UWB resistive feedback LNA employing noise and distortion cancellation.,2012,9,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee9.html#YargholiT12,https://doi.org/10.1587/elex.9.1370 +Jung-Hoon Lee,A media cache structure for multimedia applications in embedded systems.,2011,8,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee8.html#Lee11,https://doi.org/10.1587/elex.8.1302 +Jun-Hyeok Park,Color transformation-based dynamic voltage scaling for mobile AMOLED displays.,2015,12,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee12.html#ParkMK15,https://doi.org/10.1587/elex.12.20150239 +Bin Zhang,A novel high-voltage trench gate insulated gate bipolar transistor with diffusion remnant layer.,2013,10,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee10.html#ZhangHZZZWL13,https://doi.org/10.1587/elex.10.20130719 +Lei Li,Booth encoding modulo (2n - 2p - 1) multipliers.,2014,11,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee11.html#LiLYZ14,https://doi.org/10.1587/elex.11.20140588 +Seung-Yerl Lee,Memory reduction methods for IEEE 802.16e mobile station.,2011,8,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee8.html#LeeKWC11,https://doi.org/10.1587/elex.8.129 +Yanhu Shan,An efficient precision estimation method for a multichannel data acquisition system.,2013,10,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee10.html#ShanRZC13,https://doi.org/10.1587/elex.10.20130393 +Jinguang Hao,Baseband signal processing of digital phosphor technology with high accuracy.,2016,13,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee13.html#HaoWPX16,https://doi.org/10.1587/elex.12.20150938 +Mohammad Sadegh Mehrjoo,A new input matching technique for ultra wideband LNAs.,2010,7,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee7.html#MehrjooY10,https://doi.org/10.1587/elex.7.1376 +Xiaodong Zhao,A new Inter-electrode coupling capacitance extraction method for deep-submicron AlGaN/GaN HEMTs.,2017,14,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee14.html#ZhaoXWJZYX17,https://doi.org/10.1587/elex.14.20170559 +Huibo Zhong,A 4-way parallel CAVLC design for H.264/AVC 4Kx2K 60fps encoder.,2011,8,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee8.html#ZhongSFZ11,https://doi.org/10.1587/elex.8.1863 +Xiumin Xu,A single event transient detector in SRAM-based FPGAs.,2017,14,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee14.html#XuLHJLYNY17,https://doi.org/10.1587/elex.14.20170210 +Manmit Muker,Preference of designing CMOS subthreshold logic circuits using uniform-size transistors.,2011,8,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee8.html#MukerS11,https://doi.org/10.1587/elex.8.1983 +Seung-Il Cho,Design of the ultra low-power synchronizer using ADCL buffer for adiabatic logic.,2012,9,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee9.html#ChoHY12,https://doi.org/10.1587/elex.9.1576 +Masahiro Kawakita,Real-time three-dimensional video image composition by depth information.,2004,1,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee1.html#KawakitaIAKK04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.237 +Donggu Im,An up-conversion TV receiver front-end with noise canceling body-driven pMOS common gate LNA and LC-loaded passive mixer.,2017,14,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee14.html#ImN17,https://doi.org/10.1587/elex.14.20170175 +Fu-Hsiung Chen,Performance evaluation on high-speed multi-channel CWDM system by using offset-launch method and multi-stage decision feedback equalizer.,2011,8,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee8.html#Chen11a,https://doi.org/10.1587/elex.8.1870 +Tatsuo Nozokido,A millimeter-wave quasi-optical grid phase shifter using liquid crystal.,2010,7,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee7.html#NozokidoMMONM10,https://doi.org/10.1587/elex.7.67 +Jun-Seok Lim,Noisy FIR parameter estimation by combining of total least mean squares estimation and least mean squares estimation.,2009,6,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee6.html#Lim09,https://doi.org/10.1587/elex.6.572 +Kazuhito Yamada,Design methodologies for compact logic circuits based on collision-based computing.,2006,3,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee3.html#YamadaMAA06,https://doi.org/10.1587/elex.3.292 +Fengjuan Wang,Effects of coaxial through-silicon via on carrier mobility along [100] and [110] crystal directions of (100) silicon.,2015,12,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee12.html#WangYZYY15,https://doi.org/10.1587/elex.12.20150434 +Lijun Meng,Study on phase shifted fiber Bragg grating spatial sensing properties to ultrasonic wave at arbitrary excitation angle.,2017,14,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee14.html#MengYTC17,https://doi.org/10.1587/elex.14.20170259 +Hamza M. R. Al-Khafaji,SOA/SPD-based incoherent SAC-OCDMA system at 9*5Gbps.,2013,10,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee10.html#Al-KhafajiAAF13,https://doi.org/10.1587/elex.10.20130044 +Seongsoo Lee,Battery lifetime and PSNR quality-scalable video transmission for mobile multimedia systems.,2015,12,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee12.html#LeeJ15,https://doi.org/10.1587/elex.12.20150529 +Maryam M. Motamedi,High stability current supply design for atomic resolution electron microscopy.,2012,9,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee9.html#MotamediI12,https://doi.org/10.1587/elex.9.1586 +Hossein Mardani,A novel multi-notch compact monopole antenna for UWB applications.,2011,8,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee8.html#MardaniA11,https://doi.org/10.1587/elex.8.1698 +Leyu Zhai,A novel approach to pruning the general Volterra series for modeling power amplifiers.,2014,11,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee11.html#ZhaiZZZG14,https://doi.org/10.1587/elex.11.20131030 +Emad Ebrahimi,New capacitive coupled superharmonic quadrature LC-VCO.,2010,7,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee7.html#EbrahimiN10,https://doi.org/10.1587/elex.7.956 +Won-Sup Chung,Simple and high-sensitive resistance-to-time converter using current-mode Schmitt triggers.,2012,9,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee9.html#ChungKY12,https://doi.org/10.1587/elex.9.1867 +Mohana Sundar,Cost-effective 97%-efficiency charge-pump voltage balancer for multi-level PWM photovoltaic micro-inverter.,2017,14,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee14.html#SundarPPP17,https://doi.org/10.1587/elex.14.20170038 +Raj Senani,Novel electronically controllable current-mode universal biquad filter.,2004,1,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee1.html#SenaniSSB04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.410 +Chun-Ku Lee,High resolution LFMCW radar system using model-based beat frequency estimation in cable fault localization.,2014,11,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee11.html#LeePSY14,https://doi.org/10.1587/elex.10.20130768 +Siti Azlida Ibrahim,Performance of adaptive modulation assisted adaptive beamforming system.,2009,6,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee6.html#IbrahimAA09,https://doi.org/10.1587/elex.6.1013 +Akihiro Imamura,Modeling and experiment on tapered hollow waveguide multiplexer for multi- wavelength VCSEL array.,2008,5,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee5.html#ImamuraKK08,https://doi.org/10.1587/elex.5.451 +Shaochong Lei,A unified solution to reduce test power and test volume for Test-per-scan schemes.,2010,7,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee7.html#LeiWLL10a,https://doi.org/10.1587/elex.7.1364 +Jung-Woo Baik,Novel broadband microstrip-to-CPW transition with easy transmission band control.,2008,5,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee5.html#BaikLK08,https://doi.org/10.1587/elex.5.48 +A. B. B. Adikari,Context based motion and disparity vector prediction algorithm for H.264 based stereoscopic video coding.,2006,3,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee3.html#AdikariFA06,https://doi.org/10.1587/elex.3.299 +Yan Feng,A fast-locking fractional-N frequency synthesizer using a new variable bandwidth method.,2013,10,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee10.html#FengXWC13,https://doi.org/10.1587/elex.10.20130373 +Tadao Nagatsuma,Terahertz technologies: present and future.,2011,8,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee8.html#Nagatsuma11,https://doi.org/10.1587/elex.8.1127 +Sang-Jin Lee,Performance enhancement of OFDM-SQ2AM in distorted channel environments.,2010,7,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee7.html#LeeKS10,https://doi.org/10.1587/elex.7.1020 +Song Ma,Signal processing system-on-chip design for biomedical applications.,2017,14,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee14.html#MaLWC17,https://doi.org/10.1587/elex.14.20171089 +Jian Cao,A novel SPICE circuit model of electrostatic discharge (ESD) generator.,2016,13,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee13.html#CaoWWLZ16,https://doi.org/10.1587/elex.13.20160238 +Kaori Fukunaga,Terahertz spectroscopy for art conservation.,2007,4,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee4.html#FukunagaOHH07,https://doi.org/10.1587/elex.4.258 +Jung Uk Noh,Optimizing the sound pressure levels at low frequency limits of electrodynamic loudspeakers.,2009,6,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee6.html#NohLLS09,https://doi.org/10.1587/elex.6.594 +Mansoor Ali Khan,Design of normally-off GaN-based T-gate with Drain-Field-Plate (TGDFP) HEMT for power and RF applications.,2014,11,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee11.html#KhanP14,https://doi.org/10.1587/elex.11.20140163 +Seungwon Kim,Analysis and reduction of the voltage noise of multi-layer 3D IC with multi-paired power delivery network.,2017,14,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee14.html#KimK17,https://doi.org/10.1587/elex.14.20170792 +Kostas E. Psannis,Enhanced H.264/AVC stream switching over varying bandwidth networks.,2008,5,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee5.html#PsannisI08,https://doi.org/10.1587/elex.5.827 +In-Seok Kong,Precise time-difference repetition for TDC with delay mismatch cancelling scheme.,2015,12,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee12.html#KongSLK15,https://doi.org/10.1587/elex.12.20150752 +Hang Cheng,A W-band auto-focus holographic imaging system for security screening.,2017,14,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee14.html#ChengLZJS17,https://doi.org/10.1587/elex.14.20170347 +Tetsu Kachi,Current status of GaN power devices.,2013,10,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee10.html#Kachi13,https://doi.org/10.1587/elex.10.20132005 +Yusuf Z. Umul,Wedge diffraction in terms of the method of physical optics.,2009,6,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee6.html#Umul09,https://doi.org/10.1587/elex.6.763 +Tomoyoshi Shimobaba,Interactive color electroholography using the FPGA technology and time division switching method.,2008,5,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee5.html#ShimobabaSIMI08,https://doi.org/10.1587/elex.5.271 +Yuheon Yi,A micromachined voltage controlled oscillator using the pull-in mechanism of electrostatic actuation.,2009,6,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee6.html#YiFT09,https://doi.org/10.1587/elex.6.1266 +Dapeng Jiang,A new type full digital UHF radar system design.,2013,10,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee10.html#JiangWWLYY13,https://doi.org/10.1587/elex.10.20130249 +Huanyao Dai,A novel processing method for side-lobe blanketing jamming suppression.,2013,10,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee10.html#DaiLCQ13,https://doi.org/10.1587/elex.10.20130054 +Shigeru Kanazawa,Flip-chip mounted 25.8-Gb/s directly modulated InGaAsP DFB laser with Ru-doped semi-insulating buried heterostructure.,2015,12,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee12.html#KanazawaISIKTSI15,https://doi.org/10.1587/elex.11.20141028 +Joel Molina Reyes,Carrier separation and Vth measurements of W-La2O3 gated MOSFET structures after electrical stress.,2007,4,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee4.html#ReyesKATSHI07,https://doi.org/10.1587/elex.4.185 +Inseok Yang,Robust nonlinear dynamic inversion control for electric throttle.,2011,8,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee8.html#YangL11,https://doi.org/10.1587/elex.8.549 +Cheolkon Jung,Reliable depth-image-based rendering using parameter approximation in mobile devices.,2010,7,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee7.html#JungJ10,https://doi.org/10.1587/elex.7.666 +Junichi Akita,CMOS image sensor with pseudorandom pixel placement for jaggy elimination.,2017,14,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee14.html#Akita17,https://doi.org/10.1587/elex.14.20170154 +Jin-Woo Nam,Geometry contrast enhancement for 3D point models using histogram modification.,2011,8,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee8.html#NamS11,https://doi.org/10.1587/elex.8.1621 +Xi Ning,Propagation-constant matching based broadband permittivity extraction from S-parameter.,2015,12,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee12.html#NingCW15,https://doi.org/10.1587/elex.12.20150463 +Jing Tian,A wavelet-domain non-parametric statistical approach for image denoising.,2010,7,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee7.html#TianCM10,https://doi.org/10.1587/elex.7.1409 +Takashi Matsuda,A power-variation model for sensor node and the impact against life time of wireless sensor networks.,2010,7,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee7.html#MatsudaTAIKOY10,https://doi.org/10.1587/elex.7.197 +Saima Athar,On the efficient computation of single-bit input word length pipelined FFTs.,2011,8,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee8.html#AtharGQK11,https://doi.org/10.1587/elex.8.1437 +Zhenyu Guan,Mitigation of process variation effect in FPGAs with partial rerouting method.,2014,11,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee11.html#GuanWCCC14a,https://doi.org/10.1587/elex.11.20140011 +Lei Li,Modified Booth encoding modulo (2n-1) multipliers.,2012,9,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee9.html#LiHC12a,https://doi.org/10.1587/elex.9.352 +Jun-An Zhang,A 2.5-GHz Direct Digital Frequency Synthesizer with spurious noise cancellation.,2014,11,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee11.html#ZhangLZLWYL14,https://doi.org/10.1587/elex.11.20140533 +Ziqiang Yang,A rectangular waveguide filter with integrated E-plane probe transition.,2017,14,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee14.html#YangCLYJ17,https://doi.org/10.1587/elex.13.20161108 +Daisuke Yamane,A 12GHz bulk-micromachined RF-MEMS phase shifter by SOI layer-separation design.,2010,7,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee7.html#YamaneSKFT10,https://doi.org/10.1587/elex.7.1785 +Somayeh Timarchi,A new algorithm for determining all possible symmetric hybrid redundant numbers.,2009,6,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee6.html#TimarchiN09,https://doi.org/10.1587/elex.6.8 +Takayuki Furuta,Compact 1.5GHz to 2.5GHz multi-band multi-mode power amplifier.,2011,8,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee8.html#FurutaFKON11,https://doi.org/10.1587/elex.8.854 +Takayoshi Konishi,A thin card-sized on-metal UHF-RFID tag using a radiative mushroom structure with an IC chip mounted on a small magnetic loop.,2012,9,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee9.html#KonishiSKH12,https://doi.org/10.1587/elex.9.276 +Shunichi Futatsumori,Microwave shielding and polarization characteristics of carbon fiber reinforced plastic laminates with unidirectional materials.,2012,9,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee9.html#FutatsumoriKY12,https://doi.org/10.1587/elex.9.531 +Xi He,An X-band bandpass WR-90 filtering antenna with offset resonators.,2018,15,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee15.html#HeLGX18,https://doi.org/10.1587/elex.14.20170391 +Li Lu 0002,Fusion of multiple facial regions for expression-invariant gender classification.,2009,6,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee6.html#LuS09,https://doi.org/10.1587/elex.6.587 +Huafeng Sun,H-cluster: a hybrid architecture for three-dimensional many-core chips.,2014,11,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee11.html#SunGYZ14,https://doi.org/10.1587/elex.11.20140876 +Takashi Yoshida,Binobjective monocular optical module for single-chip stereo vision sensor LSI.,2006,3,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee3.html#YoshidaA06,https://doi.org/10.1587/elex.3.390 +Jianhui Wu,A low-power high-speed true single phase clock divide-by-2/3 prescaler.,2013,10,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee10.html#WuWJH13,https://doi.org/10.1587/elex.10.20120913 +Lei Zhang,Response of FBG sensors embedded in SRM interface of combustor when subjected to tri-axial normal loadings.,2017,14,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee14.html#ZhangCZL17,https://doi.org/10.1587/elex.14.20170657 +Daying Sun,A digital control algorithm for single-phase boost PFC converter with fast dynamic response.,2014,11,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee11.html#SunXSL14,https://doi.org/10.1587/elex.11.20140493 +Tetsuya Kawanishi,Sub-THz radio-over-fiber signal generation using external modulation.,2015,12,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee12.html#KawanishiSK15,https://doi.org/10.1587/elex.12.20152004 +Hong-Yi Huang,Frequency multiplier using 50% duty cycle corrector.,2008,5,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee5.html#HuangL08,https://doi.org/10.1587/elex.5.990 +Fouad Mohammed Abbou,Semi-analytical BER performance of a direct detection soliton transmission system.,2006,3,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee3.html#AbbouCMA06,https://doi.org/10.1587/elex.3.203 +Xiaoming Yang,A novel controllable carrier-injection mechanism in high voltage diode for reducing switching loss.,2014,11,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee11.html#YangLCQMC14,https://doi.org/10.1587/elex.11.20140461 +Amir Almslmany,A new airborne self-protection jammer for countering ground radars based on sub-Nyquist.,2015,12,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee12.html#AlmslmanyCW15,https://doi.org/10.1587/elex.12.20150291 +Ramanjaneya Reddy U,Improved efficiency coupled inductor-buck AC-DC light emitting diode (LED) driver.,2016,13,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee13.html#UL16,https://doi.org/10.1587/elex.13.20160626 +Hairul A. Abdul-Rashid,The effects of drive level errors on optical SSB system performance.,2006,3,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee3.html#Abdul-RashidCTAL06,https://doi.org/10.1587/elex.3.156 +Ming-Jen Chen,High-throughput ASIC design for e-mail and web intrusion detection.,2015,12,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee12.html#ChenHSC15,https://doi.org/10.1587/elex.12.20140854 +Mohammadreza Asgari,Touch sensor readout circuit with comparator threshold self-adjustment.,2018,15,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee15.html#AsgariLL18,https://doi.org/10.1587/elex.14.20171065 +Li Qin,Shaft power measurement for marine propulsion system based on magnetic resonances.,2012,9,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee9.html#QinZGCQL12,https://doi.org/10.1587/elex.9.1260 +Rui Murakami,An ultra-compact LC-VCO using a stacked-spiral inductor.,2011,8,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee8.html#MurakamiIOM11,https://doi.org/10.1587/elex.8.512 +Feifei Cao,ISIC-MMSE detector for BICM SM-MIMO systems with estimated CSI.,2011,8,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee8.html#CaoLLYL11,https://doi.org/10.1587/elex.8.149 +Mohammad Reza Asgari,Body effect compensation of analog switches using variable voltage function.,2011,8,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee8.html#AsgariH11,https://doi.org/10.1587/elex.8.189 +Wang Zhengchen,A -86.88 dBc/Hz @1 MHz K-band fractional-N frequency synthesizer in 90-nm CMOS technology.,2018,15,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee15.html#ZhengchenZW18,https://doi.org/10.1587/elex.15.20171063 +Jianguo Hu,Multiple nodes upset tolerance DICE latch based on on-state transistor.,2014,11,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee11.html#HuDQ14,https://doi.org/10.1587/elex.11.20140882 +Jawar Singh,A single ended 6T SRAM cell design for ultra-low-voltage applications.,2008,5,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee5.html#SinghPHM08,https://doi.org/10.1587/elex.5.750 +Syed Sabir Hussain Bukhari,A three-phase off-line UPS system for transformer coupled loads.,2017,14,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee14.html#BukhariAAK17,https://doi.org/10.1587/elex.14.20170815 +Hakaru Tamukoh,A bit-shifting-based fuzzy inference for self-organizing relationship (SOR) network.,2007,4,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee4.html#TamukohHY07,https://doi.org/10.1587/elex.4.60 +I-Chyn Wey,Reliable and low error dual modular redundancy FIR filter with wide protection window.,2014,11,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee11.html#WeyPCC14,https://doi.org/10.1587/elex.11.20140183 +Dongjun Wang,A pulse skipping modulation with adaptive duty ratio in buck converter application.,2015,12,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee12.html#WangLHZH15,https://doi.org/10.1587/elex.12.20150548 +Amin Gul Hanif,New derived finite-difference frequency-domain method used for band structure analysis of 2-D EBG structure composed of Drude-type dispersive media.,2012,9,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee9.html#HanifAU12,https://doi.org/10.1587/elex.9.951 +Xiaoyong Xue,Novel 2T programmable element to improve density and performance of FPGA.,2011,8,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee8.html#XueXL11,https://doi.org/10.1587/elex.8.454 +Yingwei Tian,A new fully-digital HF radar system for oceanographical remote sensing.,2013,10,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee10.html#TianWTLYY13,https://doi.org/10.1587/elex.10.20130429 +Daying Sun,Design and implementation of the optimized digital controller with the simplified control algorithm for boost power factor correction converter.,2018,15,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee15.html#SunYGL18,https://doi.org/10.1587/elex.15.20171142 +Qing Hua,High voltage driver IC with improved immunity to di/dt induced substrate noise.,2015,12,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee12.html#HuaLQZF15,https://doi.org/10.1587/elex.12.20150189 +Su Fong Chien,Performance evaluations of multi-layers ring network architecture.,2005,2,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee2.html#ChienTYLT05,https://doi.org/10.1587/elex.2.1 +Hiroki Funato,Improved position-signal-difference electric near-field measurements based on fringe capacitance model.,2014,11,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee11.html#FunatoSS14,https://doi.org/10.1587/elex.11.20140272 +Wanghui Zou,An equivalent lumped circuit model for on-chip helical transformers.,2018,15,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee15.html#ZouHCZ18,https://doi.org/10.1587/elex.15.20170818 +Chan-Won Park,A new digital predistortion technique for analog beamforming systems.,2016,13,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee13.html#ParkJK16,https://doi.org/10.1587/elex.13.20150998 +Zhengfeng Du,Iterative receiver design for general nonorthogonal unitary space-time constellations.,2012,9,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee9.html#DuYXXW12,https://doi.org/10.1587/elex.9.464 +Jae Hyun Choi,Reduction of SAR for bar type handsets with metal frame.,2011,8,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee8.html#ChoiJ11,https://doi.org/10.1587/elex.8.103 +Yusuke Takashima,Optical DFG-based 60 GHz signal generation by using a LiTaO3 rectangular waveguide.,2014,11,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee11.html#TakashimaMMOKK14,https://doi.org/10.1587/elex.11.20140381 +Zhikuang Cai,Built-in jitter measurement circuit for PLL based on variable vernier delay line.,2017,14,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee14.html#CaiXHY17,https://doi.org/10.1587/elex.13.20161116 +Ning Huang,A new mechanism for SOC scan test scheduling.,2012,9,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee9.html#HuangZ12,https://doi.org/10.1587/elex.9.932 +Shosei Tomida,Design approach for bandpass filter using triple-mode stripline resonator.,2016,13,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee13.html#TomidaIT16,https://doi.org/10.1587/elex.13.20160380 +K. P. Basu,Stability enhancement of power system by simultaneous ac-dc power transmission.,2009,6,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee6.html#BasuN09,https://doi.org/10.1587/elex.6.818 +Shun'ichiro Ohmi,Contact resistivity reduction for PtSi/Si(100) by dopant segregation process.,2013,10,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee10.html#OhmiA13,https://doi.org/10.1587/elex.10.20130778 +Nastaran Salehi,Minimal fully adaptive fuzzy-based routing algorithm for Networks-on-Chip.,2011,8,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee8.html#SalehiKD11,https://doi.org/10.1587/elex.8.1102 +Yoji Bando,Microprocessor power noise measurements with different levels of resource occupancy.,2011,8,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee8.html#BandoN11,https://doi.org/10.1587/elex.8.182 +Shan Guo Quan,A design for distortion-aware cooperative relaying over wireless video sensor networks.,2009,6,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee6.html#QuanHK09,https://doi.org/10.1587/elex.6.916 +Shukri Korakkottil Kunhi Mohd,A general on-wafer noise figure de-embedding technique with gain uncertainty analysis.,2010,7,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee7.html#MohdZS10,https://doi.org/10.1587/elex.7.302 +Seung-Ho Lim,Implementation of metadata logging and power loss recovery for page-mapping FTL.,2013,10,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee10.html#Lim13,https://doi.org/10.1587/elex.10.20130339 +Zhichao Zhang,A low noise figure 2-GHz bandwidth LNA using resistive feedback with additional input inductors.,2013,10,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee10.html#ZhangDCK13,https://doi.org/10.1587/elex.10.20130672 +Soongyu Kwon,An approximated soft error analysis technique for gate-level designs.,2014,11,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee11.html#KwonPK14,https://doi.org/10.1587/elex.11.20140224 +Mohammad Naser-Moghadasi,Novel compact semi annular polygons ultra-wideband microstrip antenna.,2010,7,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee7.html#Naser-MoghadasiHM10,https://doi.org/10.1587/elex.7.1527 +Hassan Moradzadeh,"Answer to Comment on ""High performance low-voltage QFG-based DVCC and a novel fully differential SC integrator based on it"".",2012,9,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee9.html#MoradzadehA12,https://doi.org/10.1587/elex.9.1494 +Moncef B. Tayahi,Resonant second harmonic generation using holey fiber for optical performance monitoring in DWDM networks.,2006,3,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee3.html#TayahiL06,https://doi.org/10.1587/elex.3.404 +Zhanshan Sun,3D radar imaging based on frequency-scanned antenna.,2017,14,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee14.html#SunRQBF17,https://doi.org/10.1587/elex.14.20170503 +Shin-ya Abe,MH4 : multiple-supply-voltages aware high-level synthesis for high-integrated and high-frequency circuits for HDR architectures.,2012,9,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee9.html#AbeSYT12,https://doi.org/10.1587/elex.9.1414 +Yasuki Sakurai,Fabrication and characterization of hollow waveguide distributed bragg reflectors.,2004,1,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee1.html#SakuraiMK04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.81 +Wenbo Xu 0003,A hardware implementation of random demodulation analog-to-information converter.,2016,13,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee13.html#XuCWWL16,https://doi.org/10.1587/elex.13.20160465 +Duo Sheng,High-resolution and all-digital on-chip delay measurement with low supply sensitivity for SoC applications.,2014,11,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee11.html#ShengCLJ14,https://doi.org/10.1587/elex.11.20131011 +Jinho Jeong,New digital predistortion technique of RF power amplifiers for wideband OFDM signals.,2012,9,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee9.html#Jeong12,https://doi.org/10.1587/elex.9.326 +Jongsun Kim,An anti-harmonic MDLL for phase-aligned on-chip clock multiplication.,2018,15,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee15.html#KimB18,https://doi.org/10.1587/elex.15.20180042 +Li Zhou,Loop acceleration by cluster-based CGRA.,2013,10,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee10.html#ZhouLZ13,https://doi.org/10.1587/elex.10.20130506 +Xin Wu,A noise SAR sidelobe suppression algorithm based on stable realization of apodization filtering.,2011,8,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee8.html#WuLW11,https://doi.org/10.1587/elex.8.1769 +Jaturong Sangiamwong,Frequency channel blocking for MMW entrance networks.,2005,2,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee2.html#SangiamwongTK05,https://doi.org/10.1587/elex.2.19 +Kuiwen Xu,A compact planar ultra-wideband handset antenna with L-shaped extended ground stubs.,2017,14,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee14.html#XuLPDW17,https://doi.org/10.1587/elex.14.20170680 +Ryutaro Shibata,Improving performance of phase shift pulse BOTDR.,2017,14,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee14.html#ShibataKEH17,https://doi.org/10.1587/elex.14.20170267 +Mohd Amrallah Mustafa,RTS noise reduction of CMOS image sensors using amplifier-selection pixels.,2013,10,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee10.html#MustafaSKYK13,https://doi.org/10.1587/elex.10.20130299 +Sang-Youn Kim,A unified energy-based haptic model for a non-rigid object.,2009,6,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee6.html#KimKY09,https://doi.org/10.1587/elex.6.382 +Yasuo Kokubun,Novel multi-core fibers for mode division multiplexing: proposal and design principle.,2009,6,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee6.html#KokubunK09,https://doi.org/10.1587/elex.6.522 +Ishak Annuar,Boron-doped amorphous carbon film grown by bias assisted pyrolysis chemical vapor deposition.,2015,12,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee12.html#AnnuarRR15,https://doi.org/10.1587/elex.11.20140937 +Mitsue Takahashi,FeCMOS logic inverter circuits with nonvolatile-memory function.,2009,6,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee6.html#TakahashiWHS09,https://doi.org/10.1587/elex.6.831 +Jiayue Wan,A CMOS digital step X-type attenuator with low process variations.,2017,14,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee14.html#WanCW17,https://doi.org/10.1587/elex.14.20170761 +Juwon Lee,Heartbeat detection based on filter banks and fuzzy inference for u-healthcare.,2009,6,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee6.html#LeeK09,https://doi.org/10.1587/elex.6.936 +Qingchen Zhou,Pattern synthesis method applied in designing HF superdirective receive arrays.,2013,10,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee10.html#ZhouGZZW13,https://doi.org/10.1587/elex.10.20130715 +Wenbin Luo,Improved exponential hashing.,2004,1,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee1.html#LuoH04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.150 +Long Chen,Non-contact physiological signal monitoring system based on Doppler radar.,2017,14,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee14.html#ChenYWF17,https://doi.org/10.1587/elex.14.20161178 +Alireza Saberkari,A low voltage highly linear CMOS up conversion mixer based on current conveyor.,2009,6,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee6.html#SaberkariSA09,https://doi.org/10.1587/elex.6.930 +Fuminori Sakai,A study on a coding method for chipless RFID tags using multimode stepped impedance resonators.,2016,13,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee13.html#SakaiMW16,https://doi.org/10.1587/elex.13.20151062 +Won-Sup Chung,Bridge resistance deviation-to-period converter with high linearity.,2009,6,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee6.html#ChungWK09,https://doi.org/10.1587/elex.6.1663 +Ashiqur Rahman,A compact 5G antenna printed on manganese zinc ferrite substrate material.,2016,13,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee13.html#RahmanYAAMI16,https://doi.org/10.1587/elex.13.20160377 +Moon Gyung Kim,A Fast Hybrid Arithmetic Unit for Elliptic Curve Cryptosystem in Galois Fields with Prime and Composite Exponents.,2004,1,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee1.html#KimYLS04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.13 +Wannida Sae-Tang,Multi-rate multi-cast using network coding in lossy networks.,2011,8,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee8.html#Sae-TangTK11,https://doi.org/10.1587/elex.8.273 +Ivan Padilla-Cantoya,Class AB flipped voltage follower with very low output resistance and no additional power.,2018,15,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee15.html#Padilla-Cantoya18a,https://doi.org/10.1587/elex.15.20171170 +Ziqiang Yang,Low phase noise oscillator based on quarter mode substrate integrated waveguide technique.,2015,12,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee12.html#YangLDYJ15,https://doi.org/10.1587/elex.12.20150046 +Hiroyuki Uchida,Room temperature operation of 1.55µ*m wavelength-range GaN/AlN quantum well intersubband photodetectors.,2005,2,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee2.html#UchidaMHKK05,https://doi.org/10.1587/elex.2.566 +Anh-Tuan Phan,A 1V folded common-gate CMOS LNA for full UWB band.,2009,6,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee6.html#PhanF09,https://doi.org/10.1587/elex.6.1745 +Ruying Yang,Resource and load aware mapping algorithm for elastic optical network.,2016,13,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee13.html#YangWWWLGG16,https://doi.org/10.1587/elex.13.20160590 +Cheng-Hung Lin,Unified encoder embedded trellis router designs for decoding convolutional and turbo codes.,2017,14,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee14.html#LinH17,https://doi.org/10.1587/elex.14.20170028 +Jongsik Kim,A current-reuse MICS band CMOS RF transmitter for implantable cardioverter telemetry system.,2013,10,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee10.html#KimS13,https://doi.org/10.1587/elex.10.20130235 +Ming Jin 0001,Modified covariance Frobenius norm detector for cognitive radio systems.,2011,8,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee8.html#JinLZ11,https://doi.org/10.1587/elex.8.762 +Kyosuke Muramatsu,Evaluation of the phase error in Si-wire arrayed-waveguide gratings fabricated by ArF-immersion photolithography.,2015,12,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee12.html#MuramatsuASTTOY15,https://doi.org/10.1587/elex.12.20150019 +Sung-Wook Lee,Novel area-efficient regenerator for driving long on-chip interconnects.,2008,5,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee5.html#LeeKCK08,https://doi.org/10.1587/elex.5.338 +Dawei Li,An ultra-low power low cost LDO for UHF RFID tag.,2017,14,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee14.html#LiLKWZ17,https://doi.org/10.1587/elex.13.20161145 +Takashi Ohira,Extended Adler's injection locked Q factor formula for general one- and two-port active device oscillators.,2010,7,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee7.html#Ohira10,https://doi.org/10.1587/elex.7.1486 +Fattah Talaei,A novel dual-mode dual band bandpass filter using a quasi fractal structure.,2010,7,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee7.html#TalaeiAAM10,https://doi.org/10.1587/elex.7.153 +Hidetoshi Kanaya,Terahertz oscillation of resonant tunneling diodes with deep and thin quantum wells.,2013,10,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee10.html#KanayaSA13,https://doi.org/10.1587/elex.10.20130501 +Hirokazu Iwata,Miniaturized ultrahigh frequency fundamental quartz resonators.,2004,1,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee1.html#Iwata04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.346 +Ahmed El Oualkadi,Novel LC pseudo switched capacitor filter suited for wireless RF applications.,2005,2,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee2.html#OualkadiPG05,https://doi.org/10.1587/elex.2.286 +Rakhesh S. Kshetrimayum,Equivalent material parameter extraction of double strip loaded waveguide.,2005,2,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee2.html#KshetrimayumZV05,https://doi.org/10.1587/elex.2.165 +Yves Bouvier,A low-power wideband InP-HBT 27-1 PRBS generator.,2012,9,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee9.html#BouvierSNMKI12,https://doi.org/10.1587/elex.9.1504 +Takashi Yoda,The sprint process of Al interconnects with low-temperature PVD via filling.,2004,1,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee1.html#YodaETH04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.263 +Shanwen Hu,A novel DC-12GHz variable gain amplifier in InGaP/GaAs HBT technology.,2013,10,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee10.html#HuGSL13,https://doi.org/10.1587/elex.10.20130375 +Jung-Wook Park,Sub-grouped superblock management for high-performance flash storages.,2009,6,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee6.html#ParkPWK09,https://doi.org/10.1587/elex.6.297 +Nobuhiro Kuga,Low-PIM termination design using a resistive termination.,2010,7,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee7.html#KugaN10,https://doi.org/10.1587/elex.7.222 +Reza Bayderkhani,Printed wideband CPW-fed slot antenna with high polarization purity.,2010,7,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee7.html#BayderkhaniD10,https://doi.org/10.1587/elex.7.295 +Daisuke Suzuki,Fabrication of a magnetic tunnel junction-based 240-tile nonvolatile field-programmable gate array chip skipping wasted write operations for greedy power-reduced logic applications.,2013,10,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee10.html#SuzukiNMMHKSIEOH13,https://doi.org/10.1587/elex.10.20130772 +Fei Hu 0002,Influence of surface roughness on polarization property in passive millimeter-wave imaging.,2017,14,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee14.html#HuZCXS17,https://doi.org/10.1587/elex.14.20171005 +Youngkwon Jo,An intra-panel interface using three transmission lines for flat panel displays.,2008,5,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee5.html#JoPKB08,https://doi.org/10.1587/elex.5.821 +Tetsuya Kawanishi,Optical frequency comb generator using optical fiber loops with single-sideband modulation.,2004,1,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee1.html#KawanishiSSI04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.217 +Tan Saw Chin,Ant algorithm for amplifier spontaneous emission (ASE)-aware routing.,2007,4,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee4.html#ChinAE07,https://doi.org/10.1587/elex.4.264 +Shoko Imaizumi,An efficient access control method for composite multimedia content.,2010,7,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee7.html#ImaizumiFK10,https://doi.org/10.1587/elex.7.1534 +Jun-Hyeok Park,Erratum: Color transformation-based dynamic voltage scaling for mobile AMOLED displays [IEICE Electronics Express Vol 12 (2015) No 8 pp 20150239].,2015,12,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee12.html#ParkMK15a,https://doi.org/10.1587/elex.12.20158004 +Toshifumi Moriyama,On the design of clustered planar phased arrays for wireless power transmission.,2015,12,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee12.html#MoriyamaPR15,https://doi.org/10.1587/elex.12.20150028 +Zhijian Chen,A low power QRS detection processor with adaptive scaling of processing resolution.,2018,15,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee15.html#ChenJLZXM18,https://doi.org/10.1587/elex.14.20170882 +Xin Xin,Voltage-mode ultra-low power four quadrant multiplier using subthreshold PMOS.,2017,14,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee14.html#XinCXW17,https://doi.org/10.1587/elex.14.20170063 +Xinghua Yang,A priority-based selective bit dropping strategy to reduce DRAM and SRAM power in image processing.,2016,13,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee13.html#YangHCQY16,https://doi.org/10.1587/elex.13.20160990 +Yun-Gu Lee,Memory bandwidth reduction using frame pipeline in video codec chips.,2014,11,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee11.html#LeeLK14,https://doi.org/10.1587/elex.11.20140592 +Takaaki Ibuchi,A study on modeling of dynamic characteristics of circuit component in TDR measurement based on Prony analysis.,2011,8,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee8.html#IbuchiF11,https://doi.org/10.1587/elex.8.1534 +Yingchieh Ho,Standby power reduction using dynamic standby control with voltage keeper.,2017,14,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee14.html#HoH17,https://doi.org/10.1587/elex.14.20170783 +Yang Liu,A novel complementary push-push frequency doubler with negative resistor conversion gain enhancement.,2017,14,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee14.html#LiuLGLW17,https://doi.org/10.1587/elex.14.20170674 +Anand Paul,Region similarity based edge detection for motion estimation in H.264/AVC.,2010,7,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee7.html#PaulBW10,https://doi.org/10.1587/elex.7.47 +Ning Huang,Scan power reduction based on clock-gating.,2012,9,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee9.html#HuangZ12a,https://doi.org/10.1587/elex.9.1018 +Kuekjae Lee,Linear-scale perceptual feature extraction for Speech Bandwidth Extensions.,2011,8,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee8.html#LeeCLS11,https://doi.org/10.1587/elex.8.1143 +Heeyoung Lee,Observation of Brillouin gain spectrum in optical fibers in telecommunication band: Effect of pump wavelength.,2016,13,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee13.html#LeeHMN16,https://doi.org/10.1587/elex.13.20151066 +Bowen Ding,A Ka band CMOS LO distribution buffer using transformer-based three-way power divider.,2018,15,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee15.html#DingYZTLT18,https://doi.org/10.1587/elex.15.20180198 +Jinbao Zhang,Against fault attacks based on random infection mechanism.,2016,13,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee13.html#ZhangWZZ16,https://doi.org/10.1587/elex.13.20160872 +Weidong Zhang,A novel parametric macro-modeling of S-parameter data by interpolating residues of root models.,2017,14,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee14.html#ZhangXH17,https://doi.org/10.1587/elex.14.20170024 +Makoto Mita,An equivalent-circuit model for MEMS electrostatic actuator using open-source software Qucs.,2009,6,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee6.html#MitaT09,https://doi.org/10.1587/elex.6.256 +Jae-Woo Sim,Split-TCAM mechanism for storing patterns efficiently.,2010,7,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee7.html#SimPSKK10,https://doi.org/10.1587/elex.7.976 +Ikuo Awai,Multi-strip LTCC resonator BPF.,2008,5,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee5.html#AwaiMHF08,https://doi.org/10.1587/elex.5.978 +Ippei Shake,Large-dispersion-tolerance Picosecond Optical Pulse Transmission Using Frequency Chirp Control.,2004,1,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee1.html#ShakeTK04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.29 +Bing Song,Exploration of selector characteristic based on electron tunneling for RRAM array application.,2017,14,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee14.html#SongLLL17,https://doi.org/10.1587/elex.14.20170739 +Guy Torfs,A novel large input range source-follower based filter architecture.,2011,8,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee8.html#TorfsLBVS11,https://doi.org/10.1587/elex.8.2025 +Song Hyun Jo,Data dependency reduction for parallelism enhancement of HEVC decoder.,2014,11,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee11.html#JoS14,https://doi.org/10.1587/elex.11.20140027 +Jung-Dong Park,Design of switching-mode CMOS frequency multipliers in sub-Terahertz regime.,2014,11,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee11.html#Park14a,https://doi.org/10.1587/elex.11.20140806 +Xiao Huang,Influence of the incident angle of strain wave on the sensing sensitivity of fiber Bragg grating.,2018,15,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee15.html#HuangTCX18,https://doi.org/10.1587/elex.15.20171255 +Way-Soong Lim,Global sonar localization in a dynamic environment using preprocessed feedforward neural network.,2008,5,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee5.html#LimYW08,https://doi.org/10.1587/elex.5.17 +Hirokazu Yoshizawa,An improved figure-of-merit equation for op-amp evaluation.,2015,12,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee12.html#Yoshizawa15,https://doi.org/10.1587/elex.12.20150533 +Seung Jun Lee,A precisely gain controlled RF front end for T-DMB tuner ICs.,2012,9,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee9.html#LeeJHOE12,https://doi.org/10.1587/elex.9.23 +Ikkyun Jo,Design of triple-band CMOS GPS receiver RF front-end.,2013,10,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee10.html#JoBME13,https://doi.org/10.1587/elex.10.20130126 +Changhui Jiang,Implementation and performance evaluation of a fast relocation method in a GPS/SINS/CSAC integrated navigation system hardware prototype.,2017,14,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee14.html#JiangCBSL17,https://doi.org/10.1587/elex.14.20170121 +Song Zha,Joint-sparse recovery in distributed networks via cooperative support fusion.,2013,10,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee10.html#ZhaHLL13,https://doi.org/10.1587/elex.10.20130738 +J. William,A novel UWB slot antenna with reconfigurable rejection bands.,2010,7,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee7.html#WilliamN10,https://doi.org/10.1587/elex.7.1515 +Kenji Irie,PIM-linearity improvement by the size of a diode mounting hole.,2011,8,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee8.html#IrieKC11,https://doi.org/10.1587/elex.8.1198 +Eiji Uchino,Blind deconvolution by using phase spectral constraints and natural gradient.,2005,2,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee2.html#UchinoSS05,https://doi.org/10.1587/elex.2.316 +Koichi Narahara,Characterization of one- and two-dimensional switch lines for controlling traveling pulses.,2009,6,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee6.html#Narahara09,https://doi.org/10.1587/elex.6.769 +Ivan Padilla-Cantoya,Low-voltage differential voltage follower for WTA and fully differential applications.,2012,9,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee9.html#Padilla-CantoyaFMD12,https://doi.org/10.1587/elex.9.491 +Xiaoming Tian,A low power dB-linear RSSI based on logarithmic amplifier.,2014,11,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee11.html#TianBWZJ14,https://doi.org/10.1587/elex.11.20140431 +Seiichi Takamatsu,The photo charge of a bacterioRhodopsin electrochemical cells measured by a charge amplifier.,2011,8,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee8.html#TakamatsuHMMS11,https://doi.org/10.1587/elex.8.505 +Dongkeun Kim,One-way delay estimation without clock sychronization.,2007,4,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee4.html#KimL07,https://doi.org/10.1587/elex.4.717 +Giandomenico Amendola,A hybrid neural model for the characterization of a single layer SIW waveguide.,2013,10,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee10.html#AmendolaAAAC13,https://doi.org/10.1587/elex.10.20130613 +Xing Han,A deadlock-free subnetting mechanism for high performance broadcasting in NoC.,2015,12,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee12.html#HanFJW15,https://doi.org/10.1587/elex.12.20150688 +Kuizhi Mei,A hierarchical and parallel SoC architecture for vision procesor.,2009,6,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee6.html#MeiZG09,https://doi.org/10.1587/elex.6.1380 +Yasuki Sakurai,Modeling of a low-loss spot-size converter for hollow waveguides with sub-wavelength air core.,2004,1,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee1.html#SakuraiK04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.115 +Reza Sadeghpour,Design and generation of UWB waveforms with interference elimination on narrow band systems.,2009,6,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee6.html#SadeghpourN09,https://doi.org/10.1587/elex.6.923 +Jing Chang,An efficient implementation of 2D convolution in CNN.,2017,14,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee14.html#ChangS17,https://doi.org/10.1587/elex.13.20161134 +Ruhaifi Abdullah Zawawi,An improvement of a piecewise curvature-corrected CMOS bandgap reference.,2011,8,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee8.html#ZawawiSHZR11,https://doi.org/10.1587/elex.8.1876 +Jea-Shik Shin,Bulk acoustic wave resonator with suppressed energy loss using improved lateral structure.,2014,11,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee11.html#ShinSLKSKPCAHR14,https://doi.org/10.1587/elex.11.20130938 +Zhen Liu,An improved implementation of MAX* operation for Turbo decoder.,2018,15,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee15.html#LiuYWZ18,https://doi.org/10.1587/elex.14.20171145 +Panikos Heracleous,Exploiting visual information for NAM recognition.,2009,6,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee6.html#HeracleousBTLB09,https://doi.org/10.1587/elex.6.77 +Yarallah Koolivand,A complete analysis of noise in inductively source degenerated CMOS LNA's.,2005,2,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee2.html#KoolivandSZJ05,https://doi.org/10.1587/elex.2.25 +Piotr Porwik,A new approach to reference point location in fingerprint recognition.,2004,1,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee1.html#PorwikW04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.575 +Keyu Long,Undersampling channelized receiver using principle of signal matched-phase.,2012,9,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee9.html#LongTG12,https://doi.org/10.1587/elex.9.213 +Bogdan J. Falkowski,Walsh-Hadamard Optimization of Fixed Polarity Reed-Muller Transform.,2004,1,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee1.html#FalkowskiY04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.39 +Guohe Zhang,A novel single event upset hardened CMOS SRAM cell.,2012,9,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee9.html#ZhangSLB12,https://doi.org/10.1587/elex.9.140 +Mohammad Yavari,Efficient double-sampled cascaded and#931*Γ6* modulator topologies for low OSRs.,2005,2,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee2.html#YavariS05,https://doi.org/10.1587/elex.2.404 +Hideki Fukano,High-sensitivity optical fiber refractive index sensor using multimode interference structure.,2012,9,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee9.html#FukanoMT12,https://doi.org/10.1587/elex.9.302 +Xiaomin Shi,Erratum: A compact dual-mode dual-band bandpass filter design with controllable first passband [IEICE Electronics Express Vol 11 (2014) No 23 pp 20140991].,2015,12,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee12.html#ShiX15,https://doi.org/10.1587/elex.12.20158003 +Min Li,A 3D topology based-on partial overlapped clusters for NoC.,2014,11,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee11.html#LiGYW14,https://doi.org/10.1587/elex.11.20140790 +Aleksandr Chekhovskiy,3-dimensional water display.,2007,4,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee4.html#ChekhovskiyT07,https://doi.org/10.1587/elex.4.430 +Chao Wang,Efficient AES cipher on coarse-grained reconfigurable architecture.,2017,14,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee14.html#WangC017,https://doi.org/10.1587/elex.14.20170449 +Hideaki Okayama,Planar arrayed waveguide device structure for 2D wavelength demultiplexing.,2004,1,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee1.html#Okayama04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.322 +Aeyoung Kim,A scheme for predicting recognition performance by using confidence intervals.,2012,9,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee9.html#KimL12,https://doi.org/10.1587/elex.9.133 +Kebin An,A contrast enhancement method for compressed images.,2004,1,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee1.html#AnNS04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.582 +Chester Sungchung Park,Impact of power amplifier configuration on LTE carrier aggregation performance.,2016,13,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee13.html#ParkP16,https://doi.org/10.1587/elex.13.20160183 +Nasrudin Abd. Rahim,A novel PWM multilevel inverter for PV application.,2009,6,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee6.html#RahimSC09,https://doi.org/10.1587/elex.6.1105 +Yuh-Shyan Hwang,Design method for CMOS wide-band low noise amplifier for mobile TV application.,2009,6,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee6.html#HwangWC09,https://doi.org/10.1587/elex.6.1721 +Hua Jiang,Design and fabrication of low loss and high suppression monolithic inverse wavelet transform processor.,2014,11,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee11.html#JiangLD14,https://doi.org/10.1587/elex.11.20140665 +Baigen Cai,Analysis on the application of on-chip redundancy in the safety-critical system.,2014,11,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee11.html#CaiJMCN14,https://doi.org/10.1587/elex.11.20140153 +Luying Bai,A crosstalk aware routing algorithm for Benes ONoC.,2012,9,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee9.html#BaiGYW12,https://doi.org/10.1587/elex.9.1069 +Jongwoo Bae,High performance VLSI design of run_before for H.264/AVC CAVLD.,2011,8,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee8.html#BaeCKB11,https://doi.org/10.1587/elex.8.950 +Akira Tada,Charge recycling in MTCMOS circuits with block dividing.,2007,4,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee4.html#TadaNTIIN07,https://doi.org/10.1587/elex.4.562 +Jan Jerabek,Behavioral model for emulation of ZC-CG-VDCC.,2016,13,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee13.html#JerabekSHVD16,https://doi.org/10.1587/elex.13.20150859 +Nasser Erfani Majd,An ultra low-power digitally controlled oscillator using novel Schmitt-trigger based hysteresis delay cells.,2011,8,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee8.html#MajdLGA11,https://doi.org/10.1587/elex.8.589 +Ayman A. El-Saleh,Particle swarm optimization for mobile network design.,2009,6,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee6.html#El-SalehIVMC09,https://doi.org/10.1587/elex.6.1219 +Jie Xu,Wideband sub-harmonic mixer incorporating short-circuited band-pass filter.,2017,14,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee14.html#XuCCXGQL17,https://doi.org/10.1587/elex.14.20170245 +Hyojong Kim,Settling time optimization technique for binary-weighted digital-to-analog converter.,2014,11,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee11.html#KimSL14,https://doi.org/10.1587/elex.11.20140132 +Shusuke Yoshimoto,A 40-nm 256-Kb Half-Select Resilient 8T SRAM with Sequential Writing Technique.,2012,9,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee9.html#YoshimotoTOSMKY12,https://doi.org/10.1587/elex.9.1023 +Kazuhiko Imano,Optical observation method for ultrasonic field using the shadowgraph introducing pulse inversion averaging.,2014,11,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee11.html#Imano14,https://doi.org/10.1587/elex.11.20140510 +M. F. Tang,Packet loss rate of an optical burst switch with nonlinear optical loop mirrors.,2006,3,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee3.html#TangAAMC06,https://doi.org/10.1587/elex.3.243 +Masahiro Tsuchiya,Asynchronous live electrooptic imaging and its application to free-running broadband signal sources.,2016,13,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee13.html#TsuchiyaS16,https://doi.org/10.1587/elex.13.20160080 +Seunggoo Nam,Low-cost high-performance frequency-tunable substrate-integrated waveguide filter structure and fabrication method.,2016,13,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee13.html#NamKLL16,https://doi.org/10.1587/elex.13.20160211 +Young-Jae Min,A 1.3 V input fast-transient-response time digital low-dropout regulator with a VSSa generator for DVFS system.,2017,14,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee14.html#MinJMHKK17,https://doi.org/10.1587/elex.14.20170461 +Akira Tada,A novel power gating scheme with charge recycling.,2006,3,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee3.html#TadaNN06,https://doi.org/10.1587/elex.3.281 +Xuan Zhu,Multi-level programming of memristor in nanocrossbar.,2013,10,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee10.html#ZhuWTWY13,https://doi.org/10.1587/elex.10.20130013 +Kaoru Higuma,A bias condition monitor technique for the nested Mach-Zehnder modulator.,2006,3,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee3.html#HigumaMKI06,https://doi.org/10.1587/elex.3.238 +Jian Shi,A current-shaping technique for static MOS current-mode logic prescalers.,2013,10,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee10.html#ShiMMY13,https://doi.org/10.1587/elex.10.20120887 +Krishna M. Diwakar,Vector quantized signal dependant Delta-Sigma modulator based high performance three-phase switching converter.,2009,6,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee6.html#DiwakarSSL09,https://doi.org/10.1587/elex.6.1259 +Jianguo Yang,A self-adaptive write driver with fast termination of step-up pulse for ReRAM.,2016,13,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee13.html#YangXXYLHZW16,https://doi.org/10.1587/elex.13.20160195 +Mehdi Saadatmand Tarzjan,A novel active contour for medical image segmentation.,2009,6,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee6.html#TarzjanG09,https://doi.org/10.1587/elex.6.1683 +Hu-ung Lee,Parallelizing SHA-1.,2015,12,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee12.html#LeeLKW15,https://doi.org/10.1587/elex.12.20150371 +Jin-Woo Jung,Erratum: Design of high-reliability LDO with current limiting characteristics with built-in new high tolerance ESD protection circuit [IEICE Electronics Express Vol 10 (2013) No 20 pp 20130516].,2013,10,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee10.html#JungKL13a,https://doi.org/10.1587/elex.10.20138001 +Danish A. Wahid,Preparation of Bi2Gd1Fe5O12 magnetic garnet films showing Faraday rotation of 36.3 deg./µ*m on glass substrates by metal organic decomposition method.,2016,13,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee13.html#WahidMS16,https://doi.org/10.1587/elex.13.20161011 +Emad Ebrahimi,A new low-phase noise direct-coupled CMOS LC-QVCO.,2009,6,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee6.html#EbrahimiN09,https://doi.org/10.1587/elex.6.1337 +Wataru Yoshimura,Automatic technique of distortion compensation in resistor ladder for high-speed and low-power ADC.,2014,11,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee11.html#YoshimuraO14,https://doi.org/10.1587/elex.11.20140313 +Weizheng Wang,Low power logic BIST with high test effectiveness.,2013,10,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee10.html#WangLCX13,https://doi.org/10.1587/elex.10.20130853 +Lianxi Liu,A novel DC and PWM dual-mode dimming circuit for the WLED driver.,2013,10,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee10.html#LiuNZZ13,https://doi.org/10.1587/elex.10.20130579 +Sung-Sil Cho,Design of a paper-based reconfigurable frequency selective surface structure.,2016,13,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee13.html#ChoH16,https://doi.org/10.1587/elex.13.20160656 +Gui Feng,MSP based thermal-aware mapping approach for 3D Network-on-Chip under performance constraints.,2016,13,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee13.html#FengGWZL16,https://doi.org/10.1587/elex.13.20160082 +Keijiro Suzuki,Multiport optical switches integrated on Si photonics platform.,2014,11,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee11.html#SuzukiCTKINK14,https://doi.org/10.1587/elex.11.20142011 +Andy Lock Yen Low,40Gbit/s polarization modulation in ultra-long haul transmission systems by using optical phase conjugators.,2004,1,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee1.html#LowCCYG04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.386 +Hui Yang,Control-enhanced power-SIMD.,2012,9,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee9.html#YangCWL12,https://doi.org/10.1587/elex.9.1147 +Farzan Jazayeri,Low-power and high-performance Automatic Gain Control systems based on nanoscale Field Effect Diode and SOI-MOSFET.,2010,7,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee7.html#JazayeriRF10,https://doi.org/10.1587/elex.7.371 +Amin Gul Hanif,FDFD and FDTD analysis of 2-Dimensional lossy photonic crystals.,2011,8,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee8.html#HanifUA11,https://doi.org/10.1587/elex.8.695 +Mahmut Tokmakçi,The comparative analysis of current mirror based CMOS current amplifiers.,2007,4,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee4.html#Tokmakci07,https://doi.org/10.1587/elex.4.411 +Atsushi Teranishi,Fundamental oscillation up to 1.08THz in resonant tunneling diodes with high-indium-composition transit layers for reduction of transit delay.,2012,9,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee9.html#TeranishiSSASY12,https://doi.org/10.1587/elex.9.385 +Hyun-Seok Lee,Radar cross-section prediction based on shooting and bouncing rays using line tracing method.,2014,11,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee11.html#LeePKK14,https://doi.org/10.1587/elex.11.20140102 +Makoto Mita,Microelectromechanical XNOR and XOR logic devices.,2013,10,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee10.html#MitaAT13,https://doi.org/10.1587/elex.10.20130187 +Se-Hyu Choi,Low complexity semi-systolic multiplication architecture over GF(2m).,2014,11,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee11.html#ChoiL14a,https://doi.org/10.1587/elex.11.20140713 +Shin-ichi Todoroki,Threshold power reduction of fiber fuse propagation through a white tight-buffered single-mode optical fiber.,2011,8,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee8.html#Todoroki11,https://doi.org/10.1587/elex.8.1978 +Jianhua Li,High-performance adaptive hybrid wireless NoC architecture based on improved congestion measurement.,2015,12,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee12.html#LiWHZ15,https://doi.org/10.1587/elex.12.20150331 +Joon-Ho Lee,Simple expressions of CEP and covariance matrix for localization using LOB measurements for circular trajectory.,2012,9,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee9.html#LeeCC12,https://doi.org/10.1587/elex.9.1221 +Jingyuan Wang,TCP congestion control for wireless datacenters.,2013,10,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee10.html#WangJOLXC13,https://doi.org/10.1587/elex.10.20130349 +Shanti Swarup Gupta,New single resistance controlled oscillators employing a reduced number of unity-gain cells.,2004,1,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee1.html#GuptaS04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.507 +Essam Koshak,Intelligent reconfigurable universal fuzzy flip-flop.,2010,7,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee7.html#KoshakNL10,https://doi.org/10.1587/elex.7.1119 +Yoshinao Mizugaki,Experimental demonstration of single-flux-quantum sequential-access mask ROM.,2016,13,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee13.html#MizugakiSWS16,https://doi.org/10.1587/elex.13.20160342 +Hossein Shamsi,Digital-tuning of RC time constant in Multi-Bit continuous-time Delta-Sigma modulators.,2008,5,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee5.html#Shamsi08,https://doi.org/10.1587/elex.5.662 +Young-Chan Jang,A digital phase corrector with a duty cycle detector and transmitter for a Quad Data Rate I/O scheme.,2010,7,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee7.html#Jang10,https://doi.org/10.1587/elex.7.146 +Lin Zhou,Design and implementation of a smart antenna system for UHF vehicle-mounted communication.,2015,12,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee12.html#ZhouGZLZW15,https://doi.org/10.1587/elex.12.20150057 +Narendra Kumar,A design technique to improve harmonic suppression in high efficiency wideband Class E RF power amplifier.,2014,11,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee11.html#KumarT14,https://doi.org/10.1587/elex.11.20130824 +Bo Liu,E-ERA: An energy-efficient reconfigurable architecture for RNNs using dynamically adaptive approximate computing.,2017,14,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee14.html#LiuDXGGYS17,https://doi.org/10.1587/elex.14.20170637 +Chee-Hyun Park,Source localization using block-based Wiener filter.,2010,7,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee7.html#ParkH10,https://doi.org/10.1587/elex.7.678 +Katsumi Takano,Optical tunable delay lines using fiber ring with acousto-optic frequency shifters and EDFAs: II. SNR analysis.,2006,3,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee3.html#TakanoNI06a,https://doi.org/10.1587/elex.3.447 +Pejman Mowlaee,FDMSM robust signal representation for speech mixtures and noise corrupted audio signals.,2009,6,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee6.html#MowlaeeSS09,https://doi.org/10.1587/elex.6.1077 +Rick C. J. Hsu,Coherent Optical Multiple-Input Multiple-Output communication.,2004,1,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee1.html#HsuSJ04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.392 +Hua-Pin Chen,Versatile universal electronically tunable current-mode filter using CCCIIs.,2009,6,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee6.html#ChenC09,https://doi.org/10.1587/elex.6.122 +Kaichen Zhang,A 0.13-µ*m CMOS 0.1-12GHz active balun-LNA for multi-standard applications.,2013,10,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee10.html#Zhang0LR13,https://doi.org/10.1587/elex.10.20130016 +In-Gul Jang,Memory efficient IFFT design for OFDM-based applications.,2013,10,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee10.html#JangCKC13,https://doi.org/10.1587/elex.10.20130530 +Takashi Takenaka,A novel inverse scattering approach for a stratified slab without explicit knowledge of incident fields.,2012,9,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee9.html#TakenakaM12,https://doi.org/10.1587/elex.9.1243 +Koichi Narahara,Dynamics of oscillating pulse edges in two-dimensional switch lines.,2010,7,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee7.html#Narahara10,https://doi.org/10.1587/elex.7.314 +Takashi Ohira,Mathematical proof of Leeson's oscillator noise spectrum model.,2004,1,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee1.html#Ohira04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.109 +Hung Viet Nguyen,A novel methodology for speeding up IC performance in 32nm FinFET.,2012,9,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee9.html#NguyenRK12,https://doi.org/10.1587/elex.9.227 +Kaifeng Zhang,A LUT manipulation based intrinsic evolvable system.,2014,11,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee11.html#ZhangLHW14,https://doi.org/10.1587/elex.11.20131003 +Zhixian Ma,An optic-fiber fence intrusion recognition system using mixture Gaussian hidden Markov models.,2017,14,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee14.html#MaLZ17,https://doi.org/10.1587/elex.14.20170023 +Hidenori Kuwakado,Differentiability of four prefix-free PGV hash functions.,2009,6,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee6.html#KuwakadoH09,https://doi.org/10.1587/elex.6.955 +Takashi Ohira,Dedicated Q factor formulas stemming from oscillation frequency stability against source and load deviations.,2012,9,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee9.html#Ohira12,https://doi.org/10.1587/elex.9.616 +Joobeom Yun,An efficient stream cipher for resistive RAM.,2017,14,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee14.html#YunPSK17,https://doi.org/10.1587/elex.14.20170179 +Ng Wai Ling,Performance evaluation of FH-OCDMA in the presence of GVD and SPM.,2005,2,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee2.html#LingAAC05,https://doi.org/10.1587/elex.2.583 +Hiroyuki Takahashi,10-Gbit/s close-proximity wireless system meeting the regulation for extremely low-power radio stations.,2014,11,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee11.html#TakahashiHAHN14,https://doi.org/10.1587/elex.11.20130989 +Yasser Mafinejad,Design and simulation of a high isolation RF MEMS shunt capacitive switch for C-K band.,2013,10,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee10.html#MafinejadZKM13,https://doi.org/10.1587/elex.10.20130746 +Omer Aydin,Effect of input phase mismatch in Doherty power amplifiers.,2016,13,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee13.html#AydinPY16,https://doi.org/10.1587/elex.13.20160870 +Biswajit Mishra,A 120mV startup circuit based on charge pump for energy harvesting circuits.,2011,8,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee8.html#MishraBF11,https://doi.org/10.1587/elex.8.830 +Tsuyoshi Funaki,Switching characteristics of SiC JFET and Schottky diode in high-temperature dc-dc power converters.,2005,2,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee2.html#FunakiBJJMBMKH05,https://doi.org/10.1587/elex.2.97 +Ryosuke Kubota,Hierarchical k-nearest neighbor classification using feature and observation space information.,2008,5,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee5.html#KubotaUS08,https://doi.org/10.1587/elex.5.114 +Koichi Narahara,Reverse Doppler effect in left-handed travelling-wave field-effect transistors.,2013,10,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee10.html#Narahara13,https://doi.org/10.1587/elex.10.20120963 +Turki F. Al-Somani,Very efficient point multiplication on Koblitz curves.,2016,13,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee13.html#Al-Somani16,https://doi.org/10.1587/elex.13.20160044 +Rongzhou Zeng,An embedded gate graphene field effect transistor with natural Al oxidization dielectrics and its application to frequency doubler.,2017,14,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee14.html#ZengLWWZLX17,https://doi.org/10.1587/elex.14.20170707 +Joon-Ho Lee,Newton-type method in spectrum estimaion-based AOA estimation.,2012,9,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee9.html#LeeCK12,https://doi.org/10.1587/elex.9.1036 +Hai Yan,A high speed modulo (2n - 2p + 1) multiplier design.,2015,12,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee12.html#YanLZ15,https://doi.org/10.1587/elex.12.20150870 +Tetsufumi Tanamoto,SPICE simulation of tunnel FET aiming at 32 kHz crystal-oscillator operation.,2018,15,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee15.html#TanamotoTTK18,https://doi.org/10.1587/elex.15.20171232 +Data Ram Bhaskar,New OTA-C universal current-mode/trans-admittance biquads.,2005,2,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee2.html#BhaskarSSS05,https://doi.org/10.1587/elex.2.8 +Xiaowei Han,A high-performance elliptic curve cryptographic coprocessor with side channel analysis countermeasures for smart IC card.,2015,12,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee12.html#HanWWW15,https://doi.org/10.1587/elex.12.20150470 +Ki-Chai Kim,A novel forced-resonance microwave method to detect surface cracks in metal.,2016,13,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee13.html#KimKK16,https://doi.org/10.1587/elex.13.20160715 +Mo Zhang,A fast programmable frequency divider with a wide dividing-ratio range and 50% duty-cycle.,2007,4,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee4.html#ZhangIH07,https://doi.org/10.1587/elex.4.672 +Hui-Ming Qu,Thermal management technology of high-power light-emitting diodes for automotive headlights.,2014,11,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee11.html#QuYZWC14,https://doi.org/10.1587/elex.11.20140965 +Kenichi Itoh,28 W/cm3 high power density three-port DC/DC converter cell for dual-voltage 12-V/48-V HEV subsystem.,2017,14,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee14.html#ItohII17,https://doi.org/10.1587/elex.14.20170781 +Taichi Hashimoto,Ring laser oscillation using silicon (111) mirrors fabricated by MEMS technology.,2011,8,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee8.html#HashimotoMMKFM11,https://doi.org/10.1587/elex.8.2068 +Ali Ghaffari,Localized quality of service routing protocol with service differentiation for wireless sensor networks.,2011,8,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee8.html#GhaffariRB11,https://doi.org/10.1587/elex.8.1498 +Esteban Tlelo-Cuautle,SIASCA: Interactive System for the Symbolic Analysis of Analog Circuits.,2004,1,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee1.html#Tlelo-CuautleQGR04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.19 +Ken Kashiwagi,Fixed point variations of a frequency comb generated by a passively mode-locked fiber laser.,2017,14,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee14.html#KashiwagiI17,https://doi.org/10.1587/elex.14.20170710 +Xin-Gang Wang,Successive approximation time-to-digital converter based on vernier charging method.,2014,11,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee11.html#WangYWH14,https://doi.org/10.1587/elex.10.20130885 +Haodong Lin,A novel ultra-wideband bandpass filter using defected microstrip structures.,2016,13,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee13.html#LinPXYJ16,https://doi.org/10.1587/elex.13.20160165 +Daiki Takeuchi,Coherent synthesis of two continuous microwave signals generated by two optical beats.,2014,11,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee11.html#TakeuchiCYK14,https://doi.org/10.1587/elex.11.20140209 +Xin Zhang 0019,An analytical model of code-tracking performance for next-generation GNSS modulations.,2011,8,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee8.html#ZhangZ11,https://doi.org/10.1587/elex.8.1941 +Byung-Gyu Yu,An improved dynamic maximum power point tracking method for PV application.,2014,11,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee11.html#Yu14,https://doi.org/10.1587/elex.11.20130941 +Ruhaifi Abdullah Zawawi,A new curvature-corrected CMOS bandgap voltage reference.,2012,9,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee9.html#ZawawiS12,https://doi.org/10.1587/elex.9.240 +Ki-Jin Kim,Duplication-assisted reliability enhancement in flash storage system.,2017,14,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee14.html#KimL17a,https://doi.org/10.1587/elex.14.20171131 +Yasushi Tomizawa,Electric contact stability of anti-wear probes.,2012,9,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee9.html#TomizawaLKTAHF12,https://doi.org/10.1587/elex.9.1675 +Feras N. Hasoon,New code structure for spectral amplitude coding in OCDMA system.,2007,4,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee4.html#HasoonAAS07,https://doi.org/10.1587/elex.4.738 +Hoon Kim,High-speed interface circuit for differential capacitance transducers.,2011,8,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee8.html#KimRC11,https://doi.org/10.1587/elex.8.96 +Mohsen Hayati,Compact microstrip lowpass filter with very wide stopband using open stubs loaded with defected front coupled tapers.,2011,8,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee8.html#HayatiFM11,https://doi.org/10.1587/elex.8.670 +Yoshitaka Okada,Recent progress on quantum dot intermediate band solar cells.,2013,10,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee10.html#OkadaYSS13,https://doi.org/10.1587/elex.10.20132007 +Qing Cui,A tri-mode high light-load efficiency BUCK converter for mobile phone application.,2016,13,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee13.html#QingF16,https://doi.org/10.1587/elex.13.20160360 +Yu Cao,A compact ultra-wideband power divider with favorable selectivity using transversal filtering transformer.,2015,12,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee12.html#CaoTW15,https://doi.org/10.1587/elex.12.20150427 +Yongliang Zhang,Synthesis of resonators filters with arbitrary mixed topology using hybrid method.,2016,13,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee13.html#ZhangZ16a,https://doi.org/10.1587/elex.13.20160724 +Yoshihiro Ohta,Approximate 2-degree-of-freedom digital control for a PFC boost converter.,2013,10,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee10.html#OhtaH13,https://doi.org/10.1587/elex.10.20130152 +Nan Liu,Improving predictive accuracy by evolving feature selection for face recognition.,2008,5,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee5.html#Liu008,https://doi.org/10.1587/elex.5.1061 +Jun Ogasawara,Short envelope pulse propagation in composite right- and left-handed transmission lines with regularly spaced Schottky varactors.,2009,6,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee6.html#OgasawaraN09,https://doi.org/10.1587/elex.6.1576 +Zhi-hao Zhang,Dual SPDT/SP3T SOI CMOS switch adopting alternative bias strategy with enhanced performance compared to the conventional case.,2016,13,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee13.html#ZhangZYLHL16,https://doi.org/10.1587/elex.13.20160322 +Javier Dacuña,Multi-tag spatial multiplexing in UHF RFID systems.,2012,9,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee9.html#DacunaMP12,https://doi.org/10.1587/elex.9.1701 +Md. Rakib Uddin,All-optical multicasting NOT and NOR logic gates using gain modulation in an FP-LD.,2009,6,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee6.html#UddinCW09,https://doi.org/10.1587/elex.6.104 +Won Woo Ro,Simultaneous thin-thread processors for low-power embedded systems.,2008,5,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee5.html#RoYPP08,https://doi.org/10.1587/elex.5.802 +Hairul A. Abdul-Rashid,An orthogonal subcarrier based optical tandem single sideband system.,2004,1,IEICE Electronic Express,16,db/journals/ieiceee/ieiceee1.html#Abdul-RashidCTAL04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.490 +Nasrudin Abd. Rahim,New voltage sag detection based on phase angle analysis for the new topology of voltage sag compensator.,2010,7,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee7.html#RahimM10,https://doi.org/10.1587/elex.7.1403 +Izhal Abdul Halin,Soil moisture sensor and read-out circuit topology for large array deployment.,2009,6,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee6.html#HalinHS09,https://doi.org/10.1587/elex.6.1234 +Ruixue Ding,Ultra-low energy switching scheme for SAR ADC.,2015,12,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee12.html#DingWLZ15,https://doi.org/10.1587/elex.12.20150439 +Chia-Hao Ku,Novel CPW-fed slot antenna for UHF RFID metal tag applications.,2011,8,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee8.html#KuLW11,https://doi.org/10.1587/elex.8.410 +Sang-Ick Kang,Discriminative weight training-based optimally weighted MFCC for gender identification.,2009,6,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee6.html#KangC09,https://doi.org/10.1587/elex.6.1374 +Fernando Martin del Campo,A multi-cycle fixed point square root module for FPGAs.,2012,9,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee9.html#CampoMPCOF12,https://doi.org/10.1587/elex.9.971 +Kazuhiko Imano,Possibilities of nondestructive evaluation of a pipe using air-coupled ultrasonic wave in the MHz range.,2008,5,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee5.html#ImanoK08,https://doi.org/10.1587/elex.5.668 +Hongbo Lu,Measurement of LC dielectric constant at lower terahertz region based on metamaterial absorber.,2017,14,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee14.html#LuJXYYD17,https://doi.org/10.1587/elex.14.20170469 +Jesús Ezequiel Molinar-Solís,A low-voltage CMOS MIN circuit with 3N+1 complexity and 10mV/10ns corner error.,2013,10,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee10.html#Molinar-SolisMGHSRDS13,https://doi.org/10.1587/elex.10.20130755 +Dongsheng Yang,A fully synthesizable injection-locked PLL with feedback current output DAC in 28 nm FDSOI.,2015,12,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee12.html#YangDNWLOM15,https://doi.org/10.1587/elex.12.20150531 +Kazumi Nishimura,SAW characteristics of GaN layers with surfaces exposed by dry etching.,2005,2,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee2.html#NishimuraSYHH05,https://doi.org/10.1587/elex.2.501 +Koichiro Adachi,Monolithically integrated 4 ch and** 25.8 Gbps lens-integrated surface-emitting DFB laser array directly coupled to SMF.,2016,13,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee13.html#AdachiSTNTNN16,https://doi.org/10.1587/elex.13.20160418 +Zhenghuan Xia,A novel low-frequency coded ground penetrating radar for deep detection.,2015,12,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee12.html#XiaZYWCYF15,https://doi.org/10.1587/elex.12.20150200 +Haiyan Jin,Novel broadband coupler based on corrugated half mode substrate integrated waveguide.,2015,12,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee12.html#JinZC15,https://doi.org/10.1587/elex.12.20150896 +Hirokazu Kubota,T-shaped mode coupler for two-mode mode division multiplexing.,2011,8,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee8.html#KubotaTM11,https://doi.org/10.1587/elex.8.1927 +Babak Mohammadian,Wideband OFDM receiver using split spectrum processing.,2010,7,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee7.html#MohammadianN10,https://doi.org/10.1587/elex.7.1453 +Donggu Im,Stacked-FET linear SOI CMOS SPDT antenna switch with input P1dB greater than 40dBm.,2012,9,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee9.html#ImL12,https://doi.org/10.1587/elex.9.1813 +Mohammad Hossein Madani,Analytical performance evaluation of the OFDM systems passing through nonlinear circuits.,2010,7,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee7.html#MadaniA010,https://doi.org/10.1587/elex.7.138 +Xiaopeng Liu,An SET hardened dual-modular majority voter circuit for TMR system.,2014,11,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee11.html#LiuHZ14,https://doi.org/10.1587/elex.11.20131029 +Atsushi Watase,Technique for measuring mode power of two-mode fiber.,2013,10,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee10.html#WataseKMO13,https://doi.org/10.1587/elex.10.20130740 +Sahar Ohadi,Investigation of breakdown voltage in InAlAs/InGaAs/InP HEMTs with different structures.,2010,7,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee7.html#OhadiFH10,https://doi.org/10.1587/elex.7.1447 +Fudong Zhang,A multi-beamforming method for parametric array.,2016,13,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee13.html#ZhangYH16,https://doi.org/10.1587/elex.13.20160024 +Akira Matsuzawa,SAR+Γ6* Σ ADCs with open-loop integrator using dynamic amplifier.,2018,15,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee15.html#MatsuzawaM18,https://doi.org/10.1587/elex.15.20182002 +Won-Joo Yun,Coverage expandable current type code controlled DCC with TDC-based range selector.,2009,6,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee6.html#YunLSCK09,https://doi.org/10.1587/elex.6.205 +Ruoyu Wang 0005,A widely tunable active-RC complex filter for multi-mode wireless receivers with automatic frequency tuning.,2016,13,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee13.html#WangLWS16,https://doi.org/10.1587/elex.13.20160764 +Jiangzheng Cai,A PMOS read-port 8T SRAM cell with optimized leakage power and enhanced performance.,2017,14,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee14.html#CaiYCCH17,https://doi.org/10.1587/elex.14.20161188 +Jin Wook Shin,Contents-based digital image protection using 2-D cellular automata transforms.,2010,7,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee7.html#ShinYP10,https://doi.org/10.1587/elex.7.772 +Masaya Notomi,Femtojoule/bit integrated nanophotonics based on photonic crystals.,2013,10,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee10.html#NotomiNSMK13,https://doi.org/10.1587/elex.10.20132003 +Jun Ogasawara,Experimental characterization of left-handed transmission lines with regularly spaced Schottky varactors.,2010,7,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee7.html#OgasawaraN10,https://doi.org/10.1587/elex.7.608 +Hua-Pin Chen,Tunable current-mode and voltage-mode quadrature oscillator using a DVCCTA.,2014,11,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee11.html#ChenWH14a,https://doi.org/10.1587/elex.11.20140478 +Kokoro Kitamura,All-optical feedforward automatic gain control scheme for pump power shared erbium-doped fiber amplifiers.,2016,13,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee13.html#KitamuraUM16,https://doi.org/10.1587/elex.13.20160920 +Keiji Isamoto,Self-assembly technique for MEMS vertical comb electrostatic actuator.,2005,2,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee2.html#IsamotoMMCFT05,https://doi.org/10.1587/elex.2.311 +Jiro Ito,Compact silica arrayed-waveguide grating with small bend radius utilizing trenches filled with low-refractive index material.,2006,3,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee3.html#ItoFST06,https://doi.org/10.1587/elex.3.499 +Takuya Sakamoto,Remote heartbeat monitoring from human soles using 60-GHz ultra-wideband radar.,2015,12,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee12.html#SakamotoOITSYIF15,https://doi.org/10.1587/elex.12.20150786 +Hyunju Kim,Efficient phase sequence generation for SLM scheme without side information.,2011,8,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee8.html#KimHAH11,https://doi.org/10.1587/elex.8.1393 +T. Laxmikandan,Design space exploration of inductive degenerated Common - Source Low Noise Amplifiers (CS-LNA).,2013,10,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee10.html#Laxmikandan13,https://doi.org/10.1587/elex.10.20130346 +Hyunho Chu,A monolithic voltage-mode DC-DC converter with a novel oscillator and ramp generator.,2008,5,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee5.html#ChuKK08,https://doi.org/10.1587/elex.5.683 +Shigenori Kinjo,A new MMSE channel estimation algorithm for OFDM systems.,2008,5,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee5.html#Kinjo08,https://doi.org/10.1587/elex.5.738 +Akihiro Imamura,Beam steering and tilt coupling in tunable hollow waveguide.,2008,5,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee5.html#ImamuraK08,https://doi.org/10.1587/elex.5.405 +Edris Azadi,CMOS model selection for simulation using fuzzy inference system.,2010,7,IEICE Electronic Express,17,db/journals/ieiceee/ieiceee7.html#AzadiKH10,https://doi.org/10.1587/elex.7.1259 +Jahangir Dadkhah Chimeh,A complementary algorithm for capacity enhancement of UMTS HSDPA.,2010,7,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee7.html#ChimehHAB10,https://doi.org/10.1587/elex.7.53 +Zhenyu Guan,Classification on variation maps: a new placement strategy to alleviate process variation on FPGA.,2014,11,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee11.html#GuanWCCC14,https://doi.org/10.1587/elex.10.20130912 +Hitoyuki Tagami,A study of clock and data recovery with composite structure of oversampling and gated oscillator for 10Gbit/s subscriber network.,2009,6,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee6.html#TagamiSK09,https://doi.org/10.1587/elex.6.264 +Jong-Man Kim,Monolithic reconfigurable bandpass filter using single-pole double-throw RF MEMS switches.,2008,5,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee5.html#KimLBKK08a,https://doi.org/10.1587/elex.5.483 +Xiangyu Li,A high-order sigma-delta accelerometer interface circuit.,2015,12,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee12.html#LiCLR15,https://doi.org/10.1587/elex.12.20141035 +Yuzuru Shizuku,Energy-efficient AES SubBytes transformation circuit using asynchronous circuits for ultra-low voltage operation.,2015,12,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee12.html#ShizukuHKNO15,https://doi.org/10.1587/elex.12.20141157 +Dexin Kong,An auto-calibration technique for BJT-based CMOS temperature sensors.,2017,14,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee14.html#KongY17,https://doi.org/10.1587/elex.14.20170062 +Il Pyo Roh,Investigation of in-situ doping profile for N+/P/N+ bidirectional switching device using Si1-xGex/Si/Si1-xGex structure.,2015,12,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee12.html#RohSS15,https://doi.org/10.1587/elex.12.20150098 +Younchang Choi,CPU-GPU heterogeneous implementations of depth-based foreground detection.,2018,15,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee15.html#ChoiKKCPL18,https://doi.org/10.1587/elex.15.20170950 +Degang Lv,Fault-tolerant of Hall-effect sensors in permanent magnet in-wheel motor drives.,2017,14,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee14.html#LvD17,https://doi.org/10.1587/elex.14.20170470 +In-Bok Kim,A wideband bow-tie antenna using suspended stripline balun.,2014,11,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee11.html#KimCK14,https://doi.org/10.1587/elex.11.20140767 +Fanyang Li,A 0.6 V full wave rectifier with current mode nested and periodic feedback loops.,2016,13,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee13.html#LiW16,https://doi.org/10.1587/elex.13.20160933 +Sheng Zhang,Cross-coupled bandpass filter based on circular substrate integrated waveguide resonator.,2016,13,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee13.html#ZhangWRFL16,https://doi.org/10.1587/elex.13.20160953 +Yuki Yamashita,A self-biasing class-E power amplifier for 5-GHz constant envelope modulation system.,2013,10,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee10.html#YamashitaKKPY13,https://doi.org/10.1587/elex.10.20130174 +Dongkun Shin,Workload-driven adaptive log buffer-based FTL.,2010,7,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee7.html#Shin10,https://doi.org/10.1587/elex.7.804 +Sheng Zhang,Compact differential bandpass filter using one-sixth mode and novel one-third mode triangular SIW resonators.,2018,15,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee15.html#ZhangFCLH18,https://doi.org/10.1587/elex.15.20180044 +Umberto Paoletti,Equivalent circuit for Sommerfeld wave.,2011,8,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee8.html#PaolettiSO11,https://doi.org/10.1587/elex.8.1590 +Xin Jin,Analytical computation of distributed capacitance for NFC coil antenna.,2017,14,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee14.html#JinWKTY17,https://doi.org/10.1587/elex.14.20161147 +Min Zhang,Design of broadband inverse class-F power amplifier based on resistive-reactive series of inverse continuous modes.,2017,14,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee14.html#ZhangTSC17,https://doi.org/10.1587/elex.14.20170537 +Keisuke Sorimoto,Fast aberration-correcting algorithm for an SLM-based optical switch.,2010,7,IEICE Electronic Express,23,db/journals/ieiceee/ieiceee7.html#SorimotoKKMHITU10,https://doi.org/10.1587/elex.7.1728 +Goran Kovacevic,Design optimizations for a high-speed two-layer graphene optical modulator on silicon.,2016,13,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee13.html#KovacevicY16,https://doi.org/10.1587/elex.13.20160499 +Raj Senani,Novel sinusoidal oscillators using only unity-gain voltage followers and current followers.,2004,1,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee1.html#SenaniG04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.404 +Shuguo Li,Random numbers from an integrated CMOS double-scroll.,2010,7,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee7.html#LiC10,https://doi.org/10.1587/elex.7.1382 +Ye Yuan,Ku band 2 watt TR chip for phased array based on GaAs technology.,2016,13,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee13.html#YuanFCLY16,https://doi.org/10.1587/elex.13.20160086 +R. Nandi,Third order lowpass Butterworth filters using unity gain current amplifiers.,2009,6,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee6.html#NandiK09,https://doi.org/10.1587/elex.6.1450 +Chester Sungchung Park,CSD-based CORDIC algorithm and its VLSI implementation.,2016,13,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee13.html#ParkP16a,https://doi.org/10.1587/elex.13.20160393 +Nan Li,A page lifetime-aware scrubbing scheme for improving reliability of Flash-based SSD.,2017,14,IEICE Electronic Express,22,db/journals/ieiceee/ieiceee14.html#LiXWLLY17,https://doi.org/10.1587/elex.14.20170831 +Eunhwan Kim,Analysis of switching frequency variation in self-oscillating class-D audio amplifiers.,2014,11,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee11.html#KimMK14,https://doi.org/10.1587/elex.11.20140779 +Ziqiang Yang,A right-angle wideband transition between differential microstrip line and rectangular waveguide.,2017,14,IEICE Electronic Express,4,db/journals/ieiceee/ieiceee14.html#YangZLY17,https://doi.org/10.1587/elex.14.20161206 +Lalinthip Tangjittaweechai,Fast bidirectional shortest path on GPU.,2016,13,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee13.html#Tangjittaweechai16,https://doi.org/10.1587/elex.13.20160036 +Jong-Man Kim,Cold- and hot-switching lifetime characterizations of ohmic-contact RF MEMS switches.,2008,5,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee5.html#KimLBKK08,https://doi.org/10.1587/elex.5.418 +Chao Wang,Coarse-grained reconfigurable architecture with hierarchical context cache structure and management approach.,2017,14,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee14.html#WangCLY17,https://doi.org/10.1587/elex.14.20170090 +Mohammad Mosleh,A synergy between HMM-GA based on stochastic cellular automata to accelerate speech recognition.,2009,6,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee6.html#MoslehSR09,https://doi.org/10.1587/elex.6.1304 +Hideaki Matsuzaki,Low-power and High-speed SCFL-inverter Using Pseudomorphic InGaAs Channel High Electron Mobility Transistors.,2004,1,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee1.html#MatsuzakiSE04,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.24 +Tiedi Zhang,A GaAs passive mixer with an ultra-wide IF bandwidth.,2017,14,IEICE Electronic Express,1,db/journals/ieiceee/ieiceee14.html#ZhangWWX17,https://doi.org/10.1587/elex.13.20160973 +Cuimei Ma,An efficient design for general mixed radix FFT processors.,2016,13,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee13.html#MaCLW16,https://doi.org/10.1587/elex.13.20160060 +Hedieh Elyasi,Highly linear Post Distortion Cancellation common-gate Gilbert-mixer in Ku-band.,2011,8,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee8.html#ElyasiN11,https://doi.org/10.1587/elex.8.1014 +Jae-Hyoun Park,Multi-channel LED driver with self-optimized active current regulator.,2011,8,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee8.html#ParkY11,https://doi.org/10.1587/elex.8.556 +Asghar Keshtkar,Design considerations to affect on shielding effectiveness for conductive enclosure.,2011,8,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee8.html#KeshtkarMKA11,https://doi.org/10.1587/elex.8.1047 +Kunihiro Asada,Time-domain approach for analog circuits in deep sub-micron LSI.,2018,15,IEICE Electronic Express,5,db/journals/ieiceee/ieiceee15.html#AsadaNII18,https://doi.org/10.1587/elex.15.20182001 +Hyeon-Jun Kim,Enhanced bootstrapped CMOS driver for large RC-load and ultra-low voltage VLSI.,2012,9,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee9.html#KimKK12,https://doi.org/10.1587/elex.9.1208 +Jaehyoung Park,Fabrication and measurements of direct contact type RF MEMS switch.,2007,4,IEICE Electronic Express,10,db/journals/ieiceee/ieiceee4.html#Park07,https://doi.org/10.1587/elex.4.319 +Marco Antonio Gurrola-Navarro,Approximations of the inverse wavelet transform for analogue circuits.,2012,9,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee9.html#Gurrola-NavarroMF12,https://doi.org/10.1587/elex.9.1823 +Yi Liu,Green phase difference coding with low switching activity for Network-on-Chip.,2015,12,IEICE Electronic Express,14,db/journals/ieiceee/ieiceee12.html#LiuXMYZ15,https://doi.org/10.1587/elex.12.20150480 +Jiang Luo,A D-band SPST switch using parallel-stripline swap with defected ground structure.,2017,14,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee14.html#LuoHAFH17,https://doi.org/10.1587/elex.14.20171104 +Kai Zhang,Breaking the performance bottleneck of sparse matrix-vector multiplication on SIMD processors.,2013,10,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee10.html#ZhangCWW13,https://doi.org/10.1587/elex.10.20130147 +Weiwei Wang,An adaptive neural network A/D converter based on CMOS/memristor hybrid design.,2014,11,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee11.html#WangYLK14,https://doi.org/10.1587/elex.11.20141012 +Yun-Hwan Jung,Low-power pipelined phase accumulator using CMOS-CML hybrid F/Fs for pre-skewing operation.,2013,10,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee10.html#JungKHKB13,https://doi.org/10.1587/elex.10.20130571 +Hao Wang,Energy-efficient and reference-free monotonic capacitor switching scheme with fewest switches for SAR ADC.,2015,12,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee12.html#WangZ15a,https://doi.org/10.1587/elex.12.20141202 +Indika U. K. Bogoda Appuhamylage,A Novel 100ppm/®6*C current reference for ultra-low-power subthreshold applications.,2011,8,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee8.html#AppuhamylageK011,https://doi.org/10.1587/elex.8.168 +Won-Ju Yoon,An efficient tag collection algorithm utilizing empty time slots in active RFID systems.,2009,6,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee6.html#YoonCP09,https://doi.org/10.1587/elex.6.361 +Hiroki Nakajima,Equivalent circuit simulation of light propagation in optical fiber.,2009,6,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee6.html#NakajimaY09,https://doi.org/10.1587/elex.6.424 +Shunji Nakata,Analysis of the stability of adiabatic reversible logic using the theory of normal modes in coupled oscillators.,2006,3,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee3.html#Nakata06,https://doi.org/10.1587/elex.3.17 +Xiaolong Ma,A novel delay optimization method for a critical path in VLSI design.,2013,10,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee10.html#MaWXC13,https://doi.org/10.1587/elex.10.20130446 +Zonglin Liu,An efficient floating-point multiplier for digital signal processors.,2014,11,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee11.html#LiuMG14,https://doi.org/10.1587/elex.11.20140078 +Zhongliang Deng,The uncertainty entropy of low-rate speech quality evaluation and the analyses of the gray correlation.,2015,12,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee12.html#DengLLHHZ15,https://doi.org/10.1587/elex.12.20141019 +Bing Li,Implementation of a multi-rate and multi-size LDPC decoder.,2009,6,IEICE Electronic Express,21,db/journals/ieiceee/ieiceee6.html#LiCXS09,https://doi.org/10.1587/elex.6.1509 +Kazuro Kikuchi,Digital coherent optical communication systems: fundamentals and future prospects.,2011,8,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee8.html#Kikuchi11,https://doi.org/10.1587/elex.8.1642 +Alejandro Dueñas Jiménez,Practical criteria for the implementation of a hybrid FDTD-MoL technique used for electromagnetic analysis of microstrip paths.,2010,7,IEICE Electronic Express,2,db/journals/ieiceee/ieiceee7.html#Jimenez10,https://doi.org/10.1587/elex.7.58 +Ningcheng GaoDing,A controllable compact dual-band bandpass filter using loaded open-loop resonators.,2016,13,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee13.html#GaoDing16,https://doi.org/10.1587/elex.13.20160470 +Tran-Quoc Hoai,All-optical multi-wavelength conversion using absorption modulation of an injection-locked FP-LD.,2007,4,IEICE Electronic Express,20,db/journals/ieiceee/ieiceee4.html#HoaiCJW07,https://doi.org/10.1587/elex.4.612 +Hidetoshi Chiba,Convergence property of IDR variant methods in the integral equation analysis of electromagnetic scattering problems.,2014,11,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee11.html#ChibaFM14,https://doi.org/10.1587/elex.11.20140198 +Xianjun Sheng,A dual-band fractal FSS with SZ curve elements.,2017,14,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee14.html#ShengFLZ17,https://doi.org/10.1587/elex.14.20170518 +Chien-Chang Huang,Backscattering analysis of impedance loaded wire antenna for passive RFID applications.,2010,7,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee7.html#HuangK10,https://doi.org/10.1587/elex.7.1169 +Ho-Young Kim,A frequency adaptive line compression system for mobile display devices.,2014,11,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee11.html#KimCCL14,https://doi.org/10.1587/elex.11.20140746 +Zixuan Wang,A high-resolution stochastic time-to-digital converter with edge-interchange scheme.,2013,10,IEICE Electronic Express,9,db/journals/ieiceee/ieiceee10.html#WangWJ13,https://doi.org/10.1587/elex.10.20130211 +Ic-Pyo Hong,Paper-based frequency selective surface for stable angle of incidence.,2015,12,IEICE Electronic Express,7,db/journals/ieiceee/ieiceee12.html#Hong15,https://doi.org/10.1587/elex.12.20150185 +Haoran Chen,The impact of trapping centers on AlGaN/GaN resonant tunneling diode.,2013,10,IEICE Electronic Express,19,db/journals/ieiceee/ieiceee10.html#ChenYLZLH13,https://doi.org/10.1587/elex.10.20130588 +Saddam Shueai Alnamer,Proposed new N-multilevel family of topologies for T-type inverter.,2017,14,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee14.html#AlnamerMM17,https://doi.org/10.1587/elex.14.20170342 +Bogdan J. Falkowski,Application of modified sign Haar transform in logic functions.,2004,1,IEICE Electronic Express,11,db/journals/ieiceee/ieiceee1.html#FalkowskiY04a,http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.305 +Nobuhiro Kawai,Effectiveness of a correlated multiple sampling differential averager for reducing 1/f noise.,2005,2,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee2.html#KawaiK05,https://doi.org/10.1587/elex.2.379 +Hoi-Jin Lee,Low-power dual-supply clock networks with clock gating and frequency doubling.,2012,9,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee9.html#LeeKHSKK12,https://doi.org/10.1587/elex.9.502 +Takaaki Ibuchi,Conducted noise of GaN Schottky barrier diode in a DC-DC converter.,2015,12,IEICE Electronic Express,24,db/journals/ieiceee/ieiceee12.html#IbuchiFUIU15,https://doi.org/10.1587/elex.12.20150912 +Yang-Han Lee,Using turbo iterative receiver to mitigate RPI effect in MIMO OFDM communication system.,2011,8,IEICE Electronic Express,15,db/journals/ieiceee/ieiceee8.html#LeeJHCYS11a,https://doi.org/10.1587/elex.8.1240 +Yasuo Ohtera,Photonic crystals for the application to spectrometers and wavelength filters.,2013,10,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee10.html#OhteraY13,https://doi.org/10.1587/elex.10.20132001 +Jeong-Geun Park,Analysis and design of the CRLH SICL unit cell using effective parameters.,2014,11,IEICE Electronic Express,3,db/journals/ieiceee/ieiceee11.html#ParkK14,https://doi.org/10.1587/elex.11.20131000 +Qi Zhang,Capacitor-less LDR based on flipped voltage follower with dual-feedback loops.,2017,14,IEICE Electronic Express,12,db/journals/ieiceee/ieiceee14.html#ZhangCLLMWS17,https://doi.org/10.1587/elex.14.20170496 +Keiichiro Kagawa,A low-voltage PWM CMOS imager with small pixel size using an in-pixel gate-common comparator.,2007,4,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee4.html#KagawaSSNNO07,https://doi.org/10.1587/elex.4.271 +Maya Mizuno,Classification of terahertz spectrometer for transmittance measurements of refractive materials.,2016,13,IEICE Electronic Express,18,db/journals/ieiceee/ieiceee13.html#MizunoIKFSO16,https://doi.org/10.1587/elex.13.20160532 +Xuehui Guan,A novel hybrid microstrip/slotline transversal wide-band bandpass filter.,2016,13,IEICE Electronic Express,6,db/journals/ieiceee/ieiceee13.html#GuanHLYLM16,https://doi.org/10.1587/elex.13.20160004 +Rumin Yang,Pure statistical indoor pathloss model.,2010,7,IEICE Electronic Express,8,db/journals/ieiceee/ieiceee7.html#YangSK10,https://doi.org/10.1587/elex.7.527 +O-Sam Kwon,Sense amplifier driving scheme with adaptive delay line for reducing peak current and driving time variations in deep-sub-micron DRAMs.,2008,5,IEICE Electronic Express,13,db/journals/ieiceee/ieiceee5.html#KwonKSM08,https://doi.org/10.1587/elex.5.472 +Matthias M. Hölzl,Continuous Collaboration for Changing Environments.,2016,1,Trans. Found. Mastering Chang.,,db/journals/fomac/fomac1.html#HolzlG16,https://doi.org/10.1007/978-3-319-46508-1_11 +Bernhard Steffen,Introduction to the First Issue of FoMaC.,2016,1,Trans. Found. Mastering Chang.,,db/journals/fomac/fomac1.html#Steffen16,https://doi.org/10.1007/978-3-319-46508-1_1 +Stavros Tripakis,Compositional Model-Based System Design and Other Foundations for Mastering Change.,2016,1,Trans. Found. Mastering Chang.,,db/journals/fomac/fomac1.html#Tripakis16,https://doi.org/10.1007/978-3-319-46508-1_7 +Boban Celebic,Traceability Types for Mastering Change in Collaborative Software Quality Management.,2016,1,Trans. Found. Mastering Chang.,,db/journals/fomac/fomac1.html#CelebicBF16,https://doi.org/10.1007/978-3-319-46508-1_13 +Axel Legay,Statistical Model Checking with Change Detection.,2016,1,Trans. Found. Mastering Chang.,,db/journals/fomac/fomac1.html#LegayT16,https://doi.org/10.1007/978-3-319-46508-1_9 +Klaus Havelund,Verified Change.,2016,1,Trans. Found. Mastering Chang.,,db/journals/fomac/fomac1.html#HavelundK16,https://doi.org/10.1007/978-3-319-46508-1_5 +Michael Felderer,Issues on Software Quality Models for Mastering Change.,2016,1,Trans. Found. Mastering Chang.,,db/journals/fomac/fomac1.html#Felderer16,https://doi.org/10.1007/978-3-319-46508-1_12 +Mikael Lindvall,Good Change and Bad Change: An Analysis Perspective on Software Evolution.,2016,1,Trans. Found. Mastering Chang.,,db/journals/fomac/fomac1.html#Lindvall0TDH16,https://doi.org/10.1007/978-3-319-46508-1_6 +Richard Bubel,Proof Repositories for Compositional Verification of Evolving Software Systems - Managing Change When Proving Software Correct.,2016,1,Trans. Found. Mastering Chang.,,db/journals/fomac/fomac1.html#BubelDHJOSY16,https://doi.org/10.1007/978-3-319-46508-1_8 +Tiziana Margaria,Knowledge Management for Inclusive System Evolution.,2016,1,Trans. Found. Mastering Chang.,,db/journals/fomac/fomac1.html#Margaria16,https://doi.org/10.1007/978-3-319-46508-1_2 +Bernhard Steffen,Archimedean Points: The Essence for Mastering Change.,2016,1,Trans. Found. Mastering Chang.,,db/journals/fomac/fomac1.html#SteffenN16,https://doi.org/10.1007/978-3-319-46508-1_3 +Lenz Belzner,Collective Autonomic Systems: Towards Engineering Principles and Their Foundations.,2016,1,Trans. Found. Mastering Chang.,,db/journals/fomac/fomac1.html#BelznerHKW16,https://doi.org/10.1007/978-3-319-46508-1_10 +Arend Rensink,Model Patterns - The Quest for the Right Level of Abstraction.,2016,1,Trans. Found. Mastering Chang.,,db/journals/fomac/fomac1.html#Rensink16,https://doi.org/10.1007/978-3-319-46508-1_4 +Ebru Dulekgurgen,A Final Touch for the Environmental Engineering Students at the Onset of their Profession: Senior-Year Graduation Design Project - Case Study for 2014-2015.,2016,6,iJEP,2,db/journals/i-jep/i-jep6.html#DulekgurgenOYPU16,http://www.online-journals.org/index.php/i-jep/article/view/5375 +José Couto Marques,Two Alternative Strategies for Raising Public Awareness of Science and Technology.,2013,3,iJEP,4,db/journals/i-jep/i-jep3.html#MarquesRSPOD13,http://www.online-journals.org/index.php/i-jep/article/view/2870 +Georgios Fesakis,Designing Math Trails for Enhanced by Mobile Learning Realistic Mathematics Education in Primary Education.,2018,8,iJEP,2,db/journals/i-jep/i-jep8.html#FesakisKK18,http://www.online-journals.org/index.php/i-jep/article/view/8131 +John Kanelopoulos,Flipping The Classroom to Increase Students' Engagement and Interaction in a Mechanical Engineering Course on Machine Design.,2017,7,iJEP,4,db/journals/i-jep/i-jep7.html#KanelopoulosPZ17,http://www.online-journals.org/index.php/i-jep/article/view/7427 +Katarina Zakova,Maxima - An Open Alternative for Engineering Education.,2011,1,iJEP,1,db/journals/i-jep/i-jep1.html#Zakova11,http://online-journals.org/index.php/i-jep/article/view/1598 +,1st International Conference of the Portuguese Society for Engineering Education - CISPEE2013.,2013,3,iJEP,2,db/journals/i-jep/i-jep3.html#X13b,http://www.online-journals.org/index.php/i-jep/article/view/2594/2560 +Veronika Thurner,Developing a Test for Assessing Incoming Students' Cognitive Competences.,2017,7,iJEP,4,db/journals/i-jep/i-jep7.html#ThurnerZHB17,http://www.online-journals.org/index.php/i-jep/article/view/7433 +Emmanuel Raymond,Comparative Effects of the Synchronous and the Asynchronous Instructional Approaches Concerning the Students' Achievements and Interests in Electrical Engineering at the Niger State College of Education.,2016,6,iJEP,3,db/journals/i-jep/i-jep6.html#RaymondAOJ16,http://www.online-journals.org/index.php/i-jep/article/view/5302 +Ivana Simonova,Ten years of eLearning within the Engineering Education in the Czech Republic.,2012,2,iJEP,3,db/journals/i-jep/i-jep2.html#SimonovaB12,http://www.online-journals.org/index.php/i-jep/article/view/2095 +Athanasios Drigas,ICT Based Screening Tools and Etiology of Dyscalculia.,2015,5,iJEP,3,db/journals/i-jep/i-jep5.html#DrigasP15,http://www.online-journals.org/index.php/i-jep/article/view/4735 +Agathe Merceron,Faculty Development and Quality Assurance in the EU ERAMIS Project.,2012,2,iJEP,3,db/journals/i-jep/i-jep2.html#MerceronALMT12,http://www.online-journals.org/index.php/i-jep/article/view/2149 +Aharon Gero,Animation-Based Teaching of Semiconductor Devices: Long-Term Improvement in Students' Achievements in a Two-Year College.,2015,5,iJEP,1,db/journals/i-jep/i-jep5.html#GeroZ15,http://www.online-journals.org/index.php/i-jep/article/view/4182 +Pekka Qvist,Design of Virtual Learning Environments: Learning Analytics and Identification of Affordances and Barriers.,2015,5,iJEP,4,db/journals/i-jep/i-jep5.html#QvistKPSJNNPTN15,http://www.online-journals.org/index.php/i-jep/article/view/4962 +José Couto Marques,Working with Young People at University of Porto.,2012,2,iJEP,1,db/journals/i-jep/i-jep2.html#MarquesR12,http://www.online-journals.org/index.php/i-jep/article/view/1893 +Micaela Esteves,The Use of New Learning Technologies in Higher Education Classroom: A Case Study.,2018,8,iJEP,2,db/journals/i-jep/i-jep8.html#EstevesPVVV18,http://www.online-journals.org/index.php/i-jep/article/view/8146 +Daniel Friday Owoichoche Onah,Assessing Self-Regulation of Learning Dimensions in a Stand-alone MOOC Platform.,2017,7,iJEP,2,db/journals/i-jep/i-jep7.html#OnahS17,http://www.online-journals.org/index.php/i-jep/article/view/6511 +Aharon Gero,Improving Intrinsic Motivation among Sophomore Electrical Engineering Students by an Introductory Project.,2012,2,iJEP,4,db/journals/i-jep/i-jep2.html#Gero12,http://www.online-journals.org/index.php/i-jep/article/view/2247 +João Paulo Barros,On the Description of Individual Course Units for Programme Assessment and Better Syllabuses.,2014,4,iJEP,5,db/journals/i-jep/i-jep4.html#Barros14,http://www.online-journals.org/index.php/i-jep/article/view/3536 +Armando Paulino Preciado Babb,Incorporating the iPad2 in the Mathematics Classroom: Extending the Mind into the Collective.,2012,2,iJEP,2,db/journals/i-jep/i-jep2.html#Babb12,http://www.online-journals.org/index.php/i-jep/article/view/2084 +Patrick Holzmann,From Engineer to Entrepreneur - Entrepreneurship Education for Engineering Students: The Case of the Entrepreneurial Campus Villach.,2018,8,iJEP,3,db/journals/i-jep/i-jep8.html#HolzmannHR18,http://www.online-journals.org/index.php/i-jep/article/view/7942 +Cheryl Bodnar,Initial Validation of a Technical Writing Rubric for Engineering Design.,2018,8,iJEP,1,db/journals/i-jep/i-jep8.html#BodnarK18,http://www.online-journals.org/index.php/i-jep/article/view/7728 +Alberto Cardoso,ITs in Engineering Education: Joining Efforts Between SPEE and IGIP.,2012,2,iJEP,1,db/journals/i-jep/i-jep2.html#CardosoCMNRRZW12,http://www.online-journals.org/index.php/i-jep/article/view/1899 +Pia Helena Lappalainen,Teacher-Researchers as Levers of Doctoral Curriculum in Engineering.,2017,7,iJEP,2,db/journals/i-jep/i-jep7.html#Lappalainen17,http://www.online-journals.org/index.php/i-jep/article/view/6765 +Lindsey Kabot,Inquiry Base Experiment: The Effect of Plasma on Glass Surface Properties.,2016,6,iJEP,2,db/journals/i-jep/i-jep6.html#KabotWMHA16,http://www.online-journals.org/index.php/i-jep/article/view/5317 +Dominik Dolezal,Person-Centered Learning using Peer Review Method - An Evaluation and a Concept for Student-Centered Classrooms.,2018,8,iJEP,1,db/journals/i-jep/i-jep8.html#DolezalPRKMP18,http://www.online-journals.org/index.php/i-jep/article/view/8099 +Raivo Sell,Inductive Teaching and Learning in Engineering Pedagogy on the Example of Remote Labs.,2014,4,iJEP,4,db/journals/i-jep/i-jep4.html#SellRS14,http://www.online-journals.org/index.php/i-jep/article/view/3828 +Peter Kuna,How to Teach CAD/CAE Systems.,2018,8,iJEP,1,db/journals/i-jep/i-jep8.html#KunaHPSZ18,http://www.online-journals.org/index.php/i-jep/article/view/8185 +Raivo Sell,The International Cooperation on Remote Laboratories in the Framework of Engineering Didactics.,2015,5,iJEP,1,db/journals/i-jep/i-jep5.html#SellR15,http://www.online-journals.org/index.php/i-jep/article/view/3917 +Loina Prifti,Emerging Business Models in Education Provisioning: A Case Study on Providing Learning Support as Education-as-a-Service.,2017,7,iJEP,3,db/journals/i-jep/i-jep7.html#PriftiKLHK17,http://www.online-journals.org/index.php/i-jep/article/view/7337 +Darya Tarasowa,CrowdLearn: Crowd-sourcing the Creation of Highly-structured E-Learning Content.,2015,5,iJEP,4,db/journals/i-jep/i-jep5.html#TarasowaKA15,http://www.online-journals.org/index.php/i-jep/article/view/4951 +Eugene Judson,Measuring Engineering Faculty Views about Benefits and Costs of Using Student-Centered Strategies.,2017,7,iJEP,2,db/journals/i-jep/i-jep7.html#JudsonRMK17,http://www.online-journals.org/index.php/i-jep/article/view/6808 +Olga Mironova,Programming Basics for Beginners. Experience of the Institute of Informatics at Tallinn University of Technology.,2017,7,iJEP,4,db/journals/i-jep/i-jep7.html#MironovaAV17,http://www.online-journals.org/index.php/i-jep/article/view/7425 +Thomas Staubitz,Cellular Automata as an Example for Advanced Beginners' Level Coding Exercises in a MOOC on Test Driven Development.,2017,7,iJEP,2,db/journals/i-jep/i-jep7.html#StaubitzTMP17,http://www.online-journals.org/index.php/i-jep/article/view/6969 +Mykhailo Poliakov,Developing Students' Skill to Identify Properties of Cognitive Control Systems.,2018,8,iJEP,4,db/journals/i-jep/i-jep8.html#PoliakovML18,http://www.online-journals.org/index.php/i-jep/article/view/8137 +Godfrey Mayende,Learning Groups in MOOCs: Lessons for Online Learning in Higher Education.,2017,7,iJEP,2,db/journals/i-jep/i-jep7.html#MayendePIM17,http://www.online-journals.org/index.php/i-jep/article/view/6925 +Jorge Alves Lino,Short Experimental Ceramic Projects to Incentivise Mechanical Engineering Students.,2012,2,iJEP,2,db/journals/i-jep/i-jep2.html#LinoD12,http://www.online-journals.org/index.php/i-jep/article/view/2088 +Isabel M. João,Concept Mapping and Mind Mapping to Lift the Thinking Skills of Chemical Engineering Students.,2014,4,iJEP,5,db/journals/i-jep/i-jep4.html#JoaoS14,http://www.online-journals.org/index.php/i-jep/article/view/3538 +Irina Pavlovna Bolodurina,Request Stream Control for the Access to Broadband Multimedia Educational Resources in the Distance Learning System.,2013,3,iJEP,4,db/journals/i-jep/i-jep3.html#BolodurinaSP13,http://www.online-journals.org/index.php/i-jep/article/view/2874 +Sara Riahi,The Pedagogy of Higher Education: How to Evaluate the Quality of Training in Morocco to Improve it.,2018,8,iJEP,1,db/journals/i-jep/i-jep8.html#RiahiR18,http://www.online-journals.org/index.php/i-jep/article/view/7984 +Antonio J. Sierra,Tool for Validation Software Projects in Programming Labs.,2012,2,iJEP,2,db/journals/i-jep/i-jep2.html#Sierra12,http://www.online-journals.org/index.php/i-jep/article/view/2080 +Teresa L. Larkin,A Rubric to Enrich Student Writing and Understanding.,2015,5,iJEP,2,db/journals/i-jep/i-jep5.html#Larkin15,http://www.online-journals.org/index.php/i-jep/article/view/4587 +Jordan Dale Hildebrand,Student Video Viewing Habits in an Online Mechanics of Materials Engineering Course.,2018,8,iJEP,3,db/journals/i-jep/i-jep8.html#HildebrandA18,http://www.online-journals.org/index.php/i-jep/article/view/7948 +Noureddine Abbadeni,Program Educational Objectives Definition and Assessment for Accreditation Purposes.,2013,3,iJEP,3,db/journals/i-jep/i-jep3.html#AbbadeniGA13,http://online-journals.org/i-jep/article/view/2777 +Akiko Takahashi,A3 Learning System: Advanced Active and Autonomous Learning System.,2016,6,iJEP,2,db/journals/i-jep/i-jep6.html#TakahashiKOAYHT16,http://www.online-journals.org/index.php/i-jep/article/view/5645 +Gustavo Ribeiro Alves,Using VISIR in a Large Undergraduate Course: Preliminary Assessment Results.,2011,1,iJEP,1,db/journals/i-jep/i-jep1.html#AlvesMVCBCJRVCAGG11,http://online-journals.org/index.php/i-jep/article/view/1589 +Mohamed Soliman,Simulating Interactive Learning Scenarios with Intelligent Pedagogical Agents in a Virtual World through BDI-Based Agents.,2013,3,iJEP,2,db/journals/i-jep/i-jep3.html#SolimanG13,http://www.online-journals.org/index.php/i-jep/article/view/2456 +Athanasios Drigas,ICTs based Physics Learning.,2016,6,iJEP,3,db/journals/i-jep/i-jep6.html#DrigasK16,http://www.online-journals.org/index.php/i-jep/article/view/5899 +Olga Mironova,Object-Oriented Programming for non-IT Students: Starting from Scratch.,2015,5,iJEP,4,db/journals/i-jep/i-jep5.html#MironovaAVVS15,http://www.online-journals.org/index.php/i-jep/article/view/4734 +Kiran Tota-Maharaj,A Critical Perspective of an Online Hands-On Laboratory Framework for Environmental Engineering Courses.,2012,2,iJEP,3,db/journals/i-jep/i-jep2.html#Tota-Maharaj12,http://www.online-journals.org/index.php/i-jep/article/view/2104 +özgen Korkmaz,A Validity and Reliability Study of the Basic Electronics Skills Self-Efficacy Scale (BESS).,2016,6,iJEP,4,db/journals/i-jep/i-jep6.html#KorkmazK16,http://www.online-journals.org/index.php/i-jep/article/view/6168 +Dietmar Zenker,Comprehensive Virtual Mathematics Training - A Crucial Support to Bridge the Gap for Undergraduate Students.,2013,3,iJEP,3,db/journals/i-jep/i-jep3.html#ZenkerSGD13,http://online-journals.org/i-jep/article/view/2738 +Michael Callaghan,Extending the Activity Theory Based Model for Serious Games Design in Engineering to Integrate Analytics.,2018,8,iJEP,1,db/journals/i-jep/i-jep8.html#CallaghanMES18,http://www.online-journals.org/index.php/i-jep/article/view/8087 +Hadi Moradi,Using Sub Skills to Model and Estimate Final Skill Level.,2013,3,iJEP,2,db/journals/i-jep/i-jep3.html#Moradi13,http://www.online-journals.org/index.php/i-jep/article/view/2493 +Jovani Castelan,Promoting PBL Through an Active Learning Model and the Use of Rapid Prototyping Resources.,2018,8,iJEP,4,db/journals/i-jep/i-jep8.html#CastelanB18,http://www.online-journals.org/index.php/i-jep/article/view/8281 +Maria Teresa Restivo,IT and Engineering Pedagogy (ITEP'13).,2013,3,iJEP,4,db/journals/i-jep/i-jep3.html#Restivo13,http://www.online-journals.org/index.php/i-jep/article/view/3246/2812 +Yoshihiro Deguchi,Questionnaire Research and Development of Self-motivating Education Method Using Intellectual Property Rights.,2012,2,iJEP,4,db/journals/i-jep/i-jep2.html#DeguchiYSAMSNK12,http://www.online-journals.org/index.php/i-jep/article/view/2240 +Matthias Christoph Utesch,Automated Stock Trading - Developing the Serious Game FSTG to Teach the Topic of Finite State Machines.,2017,7,iJEP,1,db/journals/i-jep/i-jep7.html#UteschHHK17,http://www.online-journals.org/index.php/i-jep/article/view/6524 +Tetsuo Oka,Roles and Effects of Human Network of Supporting Experts out of Niigata University to Practical Engineering Education.,2016,6,iJEP,1,db/journals/i-jep/i-jep6.html#OkaAYNINSTS16,http://www.online-journals.org/index.php/i-jep/article/view/5360 +M. Solaiman Ali,How to be an Effective Technical Writer?,2012,2,iJEP,3,db/journals/i-jep/i-jep2.html#AliA12,http://www.online-journals.org/index.php/i-jep/article/view/2094 +Aharon Gero,Development of Interdisciplinary Lessons Integrating Science and Engineering in Heterogeneous Teams: Education Students' Attitudes.,2016,6,iJEP,2,db/journals/i-jep/i-jep6.html#Gero16,http://www.online-journals.org/index.php/i-jep/article/view/5683 +Walfredo González Hernández,Intuition as Part of Informatics Creativity.,2013,3,iJEP,3,db/journals/i-jep/i-jep3.html#Hernandez13a,http://online-journals.org/i-jep/article/view/2521 +Leandro Rosniak Tibola,Improving Performance to Engineering Students through Virtual Labs and its Monitoring in Cockpit.,2014,4,iJEP,4,db/journals/i-jep/i-jep4.html#TibolaPT14,http://www.online-journals.org/index.php/i-jep/article/view/3957 +Athanasios Drigas,Learning Tools and Applications for Cognitive Improvement.,2014,4,iJEP,3,db/journals/i-jep/i-jep4.html#DrigasK14,http://www.online-journals.org/index.php/i-jep/article/view/3665 +José Couto Marques,Linking experiments with the real world.,2014,4,iJEP,2,db/journals/i-jep/i-jep4.html#MarquesRCS14,http://www.online-journals.org/index.php/i-jep/article/view/3483 +María-José Terrón-López,Design and Implementation of a Comprehensive Educational Model: Project Based Engineering School (PBES).,2015,5,iJEP,3,db/journals/i-jep/i-jep5.html#Terron-LopezVGG15,http://www.online-journals.org/index.php/i-jep/article/view/4673 +Maria Clara Viegas,Engaging students by Moodleing a Course? Case studies at the Polytechnic of Porto - School of Engineering.,2012,2,iJEP,3,db/journals/i-jep/i-jep2.html#ViegasMAC12,http://www.online-journals.org/index.php/i-jep/article/view/2154 +Tiia Rüütmann,Teaching Strategies for Direct and Indirect Instruction in Teaching Engineering.,2011,1,iJEP,3,db/journals/i-jep/i-jep1.html#RuutmannK11,http://online-journals.org/index.php/i-jep/article/view/1805 +Bill Lucas,Thinking Like an Engineer: Using Engineering Habits of Mind and Signature Pedagogies to Redesign Engineering Education.,2016,6,iJEP,2,db/journals/i-jep/i-jep6.html#LucasH16,http://www.online-journals.org/index.php/i-jep/article/view/5366 +Elena Vaktina,Formation of Training Environment by Means of Didactic Design.,2013,3,iJEP,1,db/journals/i-jep/i-jep3.html#VaktinaV13,http://www.online-journals.org/index.php/i-jep/article/view/2297 +Yulia Surinová,Student as a Customer or Improving Students' Involvement in the Education Process.,2014,4,iJEP,1,db/journals/i-jep/i-jep4.html#SurinovaJ14,http://www.online-journals.org/index.php/i-jep/article/view/3002 +G. Padmanabhan,A Unique Civil Engineering Capstone Design Course.,2018,8,iJEP,1,db/journals/i-jep/i-jep8.html#PadmanabhanKKPL18,http://www.online-journals.org/index.php/i-jep/article/view/7667 +Axel Böttcher,Soft Skill Development along the Education Path Evaluating expectations on and perceptions of student competencies in Software Engineering education.,2012,2,iJEP,3,db/journals/i-jep/i-jep2.html#BottcherTW12,http://www.online-journals.org/index.php/i-jep/article/view/2148 +Evgenii Vorob'ev,Online teaching of Linear algebra using webMathematica.,2012,2,iJEP,3,db/journals/i-jep/i-jep2.html#Vorobev12,http://www.online-journals.org/index.php/i-jep/article/view/2134 +Dag Wedelin,Teaching Mathematical Modelling and Problem Solving - A Cognitive Apprenticeship Approach to Mathematics and Engineering Education.,2014,4,iJEP,5,db/journals/i-jep/i-jep4.html#WedelinA14,http://www.online-journals.org/index.php/i-jep/article/view/3555 +Tarvo Niine,Typology of Logistics Curricula - Four Categories of Logistics of Logistics Undergraduate Education in Europe.,2015,5,iJEP,2,db/journals/i-jep/i-jep5.html#NiineK15,http://www.online-journals.org/index.php/i-jep/article/view/4579 +Tomás Kozík,The Reduction of Interest Among Elementary Students in the Field of Technical Education.,2011,1,iJEP,3,db/journals/i-jep/i-jep1.html#KozikH11,http://online-journals.org/index.php/i-jep/article/view/1822 +Armando Paulino Preciado Babb,Engaging High School Students in an Engineering Thermodynamics Project.,2015,5,iJEP,1,db/journals/i-jep/i-jep5.html#BabbSBF15,http://www.online-journals.org/index.php/i-jep/article/view/4046 +Yvonne Sedelmaier,A Research Agenda for Identifying and Developing Required Competencies in Software Engineering.,2013,3,iJEP,2,db/journals/i-jep/i-jep3.html#SedelmaierL13,http://www.online-journals.org/index.php/i-jep/article/view/2448 +Govind Gopakumar,Public Leadership Framework: Studying Approaches to Diversify Engineering Education.,2014,4,iJEP,1,db/journals/i-jep/i-jep4.html#Gopakumar14,http://www.online-journals.org/index.php/i-jep/article/view/3269 +Andy M. Connor,From STEM to STEAM: Strategies for Enhancing Engineering and Technology Education.,2015,5,iJEP,2,db/journals/i-jep/i-jep5.html#ConnorKW15,http://www.online-journals.org/index.php/i-jep/article/view/4458 +George Peter Banky,Apples and Oranges: A Framework to Explore the Practiced Pedagogy in Experiential Learning.,2015,5,iJEP,3,db/journals/i-jep/i-jep5.html#BankyB15,http://www.online-journals.org/index.php/i-jep/article/view/4479 +Melanie Rose Nova King,A Blueprint for Success: A Model for Developing Engineering Education in the UK.,2014,4,iJEP,2,db/journals/i-jep/i-jep4.html#KingW14,http://www.online-journals.org/index.php/i-jep/article/view/3435 +Abdellah Touhafi,Comparative Study of Electronics Visualisation Techniques for E-Learning.,2012,2,iJEP,2,db/journals/i-jep/i-jep2.html#TouhafiBVG12,http://www.online-journals.org/index.php/i-jep/article/view/2085 +Yoshikatsu Kubota,Analysis of Active Learning Suitability of Subjects in Information and Electronics.,2017,7,iJEP,3,db/journals/i-jep/i-jep7.html#KubotaTHKY17,http://www.online-journals.org/index.php/i-jep/article/view/6968 +Eleonore Lickl,Editorial.,2011,1,iJEP,1,db/journals/i-jep/i-jep1.html#Lickl11,http://online-journals.org/index.php/i-jep/article/view/1630/1696 +M. Fikret Ercan,Integration in Engineering Education: A Trial Run.,2013,3,iJEP,3,db/journals/i-jep/i-jep3.html#Ercan13,http://online-journals.org/i-jep/article/view/2250 +Stefan Krebs,A Cooperative and Competitive Workshop in Mechatronics Engineering.,2014,4,iJEP,1,db/journals/i-jep/i-jep4.html#KrebsSMH14,http://www.online-journals.org/index.php/i-jep/article/view/3068 +Sebastien Jacques,A Pedagogical Intensive Collaborative Electric Go-Kart Project.,2017,7,iJEP,4,db/journals/i-jep/i-jep7.html#Jacques17,http://www.online-journals.org/index.php/i-jep/article/view/7408 +Hazinah Kutty Mammi,Competency based Education (CBE) for IT Security: Towards Bridging the Gap.,2012,2,iJEP,4,db/journals/i-jep/i-jep2.html#MammiI12,http://www.online-journals.org/index.php/i-jep/article/view/2268 +Leticia Azucena Vaca Cárdenas,An Educational Coding Laboratory for Elementary Pre-service Teachers: A Qualitative Approach.,2016,6,iJEP,1,db/journals/i-jep/i-jep6.html#CardenasTBGVPB16,http://www.online-journals.org/index.php/i-jep/article/view/5364 +Nael Barakat,Engineering Ethics: A Critical Dimension of The Profession.,2011,1,iJEP,2,db/journals/i-jep/i-jep1.html#Barakat11,http://online-journals.org/index.php/i-jep/article/view/1639 +Ivana Simonova,Learning Styles in Foreign Language Teaching/Learning.,2011,1,iJEP,1,db/journals/i-jep/i-jep1.html#Simonova11,http://online-journals.org/index.php/i-jep/article/view/1587 +Eleonore Lickl,Editorial.,2011,1,iJEP,2,db/journals/i-jep/i-jep1.html#Lickl11a,http://online-journals.org/index.php/i-jep/article/view/1704/1801 +Charles Nippert,Using Virtual Reality in K-12 Education: A Simulation of Shooting Bottle Rockets for Distance.,2012,2,iJEP,4,db/journals/i-jep/i-jep2.html#Nippert12,http://www.online-journals.org/index.php/i-jep/article/view/2215 +Leonid L. Khoroshko,The Use CAD/CAE Systems to Create E-Learning Courses on Technical Subjects at University.,2018,8,iJEP,2,db/journals/i-jep/i-jep8.html#KhoroshkoUK18,http://www.online-journals.org/index.php/i-jep/article/view/8134 +Pasi Juvonen,Comparison of Two Team Learning and Team Entrepreneurship Models at a Finnish University of Applied Sciences. Setting the Scene for Future Development.,2017,7,iJEP,1,db/journals/i-jep/i-jep7.html#Juvonen17,http://www.online-journals.org/index.php/i-jep/article/view/6517 +James Onohuome Uhomoibhi,E-Learning Development Trends in Computer and Engineering Education.,2013,3,iJEP,2,db/journals/i-jep/i-jep3.html#UhomoibhiR13,http://www.online-journals.org/index.php/i-jep/article/view/2441 +Tiia Rüütmann,Klagenfurt School of Engineering Pedagogy by Adolf Melezinek as the Basis of Teaching Engineering.,2016,6,iJEP,3,db/journals/i-jep/i-jep6.html#RuutmannK16,http://www.online-journals.org/index.php/i-jep/article/view/5949 +Pooya Taheri,Project-Based Approach in a First-Year Engineering Course to Promote Project Management and Sustainability.,2018,8,iJEP,3,db/journals/i-jep/i-jep8.html#Taheri18,http://www.online-journals.org/index.php/i-jep/article/view/8573 +Dale Andre Martin,Shaping the Digital Future in Education - Together.,2018,8,iJEP,2,db/journals/i-jep/i-jep8.html#Martin18,http://www.online-journals.org/index.php/i-jep/article/view/8228 +Yvonne Sedelmaier,SWEBOS - The Software Engineering Body of Skills.,2015,5,iJEP,1,db/journals/i-jep/i-jep5.html#SedelmaierL15,http://www.online-journals.org/index.php/i-jep/article/view/4047 +Olga V. Shipulina,Bringing Reality into Calculus Classrooms: Mathematizing a Real-life Problem Simulated in a Virtual Environment.,2013,3,iJEP,1,db/journals/i-jep/i-jep3.html#ShipulinaSL13,http://www.online-journals.org/index.php/i-jep/article/view/2337 +Olga Dziabenko,Remote Experiments and Online Games: How to Merge them?,2011,1,iJEP,1,db/journals/i-jep/i-jep1.html#DziabenkoZL11,http://online-journals.org/index.php/i-jep/article/view/1601 +Brian Laduca,An Arts-Based Instructional Model for Student Creativity in Engineering Design.,2017,7,iJEP,1,db/journals/i-jep/i-jep7.html#LaducaAKHM17,http://www.online-journals.org/index.php/i-jep/article/view/6335 +Athanasios Drigas,Perception and ICTs.,2015,5,iJEP,3,db/journals/i-jep/i-jep5.html#DrigasD15,http://www.online-journals.org/index.php/i-jep/article/view/4015 +Wei Wei Goh,Exploring Lecturers' Perceptions of Learning Management System: An Empirical Study Based on TAM.,2014,4,iJEP,3,db/journals/i-jep/i-jep4.html#GohHG14,http://www.online-journals.org/index.php/i-jep/article/view/3497 +Chiu Choi,Microcontroller-based Feedback Control Laboratory Experiments.,2014,4,iJEP,3,db/journals/i-jep/i-jep4.html#Choi14,http://www.online-journals.org/index.php/i-jep/article/view/3529 +Nikolaos C. Zygouris,A Neuropsychological Approach of Developmental Dyscalculia and a Screening Test Via a Web Application.,2017,7,iJEP,4,db/journals/i-jep/i-jep7.html#ZygourisVDOSVNS17,http://www.online-journals.org/index.php/i-jep/article/view/7434 +,4th IEEE Global Engineering Education Conference - EDUCON2013.,2012,2,iJEP,4,db/journals/i-jep/i-jep2.html#X12,http://www.online-journals.org/index.php/i-jep/article/view/2300/2350 +Kay Berkling,Change Management: Overcoming the Challenges of Introducing Self-Driven Learning.,2015,5,iJEP,4,db/journals/i-jep/i-jep5.html#BerklingZ15,http://www.online-journals.org/index.php/i-jep/article/view/4945 +Louis Manzione,Preparing Engineering Students for the Global Sourcing Environment.,2016,6,iJEP,3,db/journals/i-jep/i-jep6.html#ManzioneASC16,http://www.online-journals.org/index.php/i-jep/article/view/5445 +Teresa L. Larkin,Topic Order in Introductory Physics and its Impact on the STEM Curricular Ladder.,2017,7,iJEP,1,db/journals/i-jep/i-jep7.html#Larkin17,http://www.online-journals.org/index.php/i-jep/article/view/6528 +Axel Zafoschnig,To Infinity and Beyond - Are Innovation Contests at Austrian Technical Colleges the Right Tool to Stimulate the Creative and Technical Potential of the Country?,2013,3,iJEP,1,db/journals/i-jep/i-jep3.html#Zafoschnig13,http://www.online-journals.org/index.php/i-jep/article/view/2307 +Anne Marie Jolly,How Accreditation Agencies can Help the Necessary Changes of HEIs Towards Sustainable Development Practices.,2016,6,iJEP,1,db/journals/i-jep/i-jep6.html#JollyM16,http://www.online-journals.org/index.php/i-jep/article/view/5336 +Rauno Ilmari Pirinen,Externally Funded Research and Development Projects in Perspective of Learning.,2011,1,iJEP,3,db/journals/i-jep/i-jep1.html#Pirinen11,http://online-journals.org/index.php/i-jep/article/view/1806 +Dominik May,Transnational Connected Learning and Experimentation - Using live online classes and remote labs for preparing international engineering students for an international working world.,2016,6,iJEP,1,db/journals/i-jep/i-jep6.html#MayT16,http://www.online-journals.org/index.php/i-jep/article/view/5287 +Wolfgang Pachatz,Education Standards and Competence-oriented Curricula - The Austrian Technical Colleges Take a New Approach to Excellence.,2011,1,iJEP,3,db/journals/i-jep/i-jep1.html#PachatzZ11,http://online-journals.org/index.php/i-jep/article/view/1818 +,"2013 ASEE International Forum - ""Preparing the Global Engineer"".",2013,3,iJEP,1,db/journals/i-jep/i-jep3.html#X13,http://www.online-journals.org/index.php/i-jep/article/view/2458/2425 +José Couto Marques,Pedagogic Qualification of Higher Education Teaching Staff - The Third Wave.,2013,3,iJEP,4,db/journals/i-jep/i-jep3.html#Marques13,http://www.online-journals.org/index.php/i-jep/article/view/3069 +Monika Davidekova,ICT Collaboration Tools for Virtual Teams in Terms of the SECI Model.,2017,7,iJEP,1,db/journals/i-jep/i-jep7.html#DavidekovaH17,http://www.online-journals.org/index.php/i-jep/article/view/6502 +Bill Williams,Tracking Engineering Education Research and Development.,2012,2,iJEP,2,db/journals/i-jep/i-jep2.html#WilliamsN12,http://www.online-journals.org/index.php/i-jep/article/view/2087 +Dominik May,Developing Cultural Competencies through Transnational Learning Experiences in Active Online Learning Environments.,2014,4,iJEP,5,db/journals/i-jep/i-jep4.html#MayWM14,http://www.online-journals.org/index.php/i-jep/article/view/3534 +Marios Pappas,Incorporation of Artificial Intelligence Tutoring Techniques in Mathematics.,2016,6,iJEP,4,db/journals/i-jep/i-jep6.html#PappasD16,http://www.online-journals.org/index.php/i-jep/article/view/6063 +Matthias Christoph Utesch,A Successful Approach to Study Skills: Go4C's Projects Strengthen Teamwork.,2016,6,iJEP,1,db/journals/i-jep/i-jep6.html#Utesch16,http://www.online-journals.org/index.php/i-jep/article/view/5359 +Dale Anthony Carnegie,An Inclusive Musical Mechatronics Course.,2017,7,iJEP,1,db/journals/i-jep/i-jep7.html#CarnegieZMW17,http://www.online-journals.org/index.php/i-jep/article/view/6641 +Aare Aan,Interactive Computer Aided Learning and Teaching of Analytical Mechanics.,2011,1,iJEP,3,db/journals/i-jep/i-jep1.html#AanHA11,http://online-journals.org/index.php/i-jep/article/view/1788 +,42nd IGIP International Conference on Engineering Pedagogy.,2013,3,iJEP,2,db/journals/i-jep/i-jep3.html#X13a,http://www.online-journals.org/index.php/i-jep/article/view/2593/2558 +Wolfgang Fellin,Multiple Choice Tests: More than a Time Saver for Teachers.,2015,5,iJEP,3,db/journals/i-jep/i-jep5.html#FellinM15,http://www.online-journals.org/index.php/i-jep/article/view/4376 +Bill Williams,Taking a Snapshot: Four Bibliometric Indicators to Track Engineering Education Research Evolution.,2014,4,iJEP,4,db/journals/i-jep/i-jep4.html#WilliamsNW14,http://www.online-journals.org/index.php/i-jep/article/view/3843 +Isabel M. João,Designing Solutions by a Student Centred Approach: Integration of Chemical Process Simulation with Statistical Tools to Improve Distillation Systems.,2017,7,iJEP,3,db/journals/i-jep/i-jep7.html#JoaoS17,http://www.online-journals.org/index.php/i-jep/article/view/6795 +Yassine Zaoui Seghroucheni,Revisiting the Didactic Triangle in the Case of an Adaptive Learning System.,2014,4,iJEP,4,db/journals/i-jep/i-jep4.html#SeghroucheniAM14,http://www.online-journals.org/index.php/i-jep/article/view/3891 +Dimitris Markouzis,"Rapid Prototyping of Interactive Storytelling and Mobile Augmented Reality Applications for Learning and Entertainment - The case of ""k-Knights"".",2016,6,iJEP,2,db/journals/i-jep/i-jep6.html#MarkouzisF16,http://www.online-journals.org/index.php/i-jep/article/view/5560 +Tatyana Polyakova,World Tendencies of Higher Education Development and Foreign Language Training in Russian Engineering Education.,2011,1,iJEP,3,db/journals/i-jep/i-jep1.html#PolyakovaP11,http://online-journals.org/index.php/i-jep/article/view/1875 +Matthias Carlier,Creation and Evaluation of Educational Tools for E-Learning Based on Videomodels.,2014,4,iJEP,4,db/journals/i-jep/i-jep4.html#CarlierBFGT14,http://www.online-journals.org/index.php/i-jep/article/view/3744 +Dan Budny,Involving Parents at Step One in the Freshman Engineering Experience.,2014,4,iJEP,2,db/journals/i-jep/i-jep4.html#BudnyPN14,http://www.online-journals.org/index.php/i-jep/article/view/3365 +Sasko Ristov,Using EDUCache Simulator for the Computer Architecture and Organization Course.,2013,3,iJEP,3,db/journals/i-jep/i-jep3.html#RistovGAA13,http://online-journals.org/i-jep/article/view/2784 +Mouloud Aoudia,Curriculum Redesign Process for an Industrial Engineering Program Seeking ABET Accreditation.,2015,5,iJEP,3,db/journals/i-jep/i-jep5.html#AoudiaA15,http://www.online-journals.org/index.php/i-jep/article/view/4670 +Rdouan Faizi,Exploring the Potential Benefits of Using Social Media in Education.,2013,3,iJEP,4,db/journals/i-jep/i-jep3.html#FaiziAC13,http://www.online-journals.org/index.php/i-jep/article/view/2836 +Gabriel Pinto,Stoichiometry in Context: Inquiry-Guided Problems of Chemistry for Encouraging Critical Thinking in Engineering Students.,2013,3,iJEP,1,db/journals/i-jep/i-jep3.html#PintoP13,http://www.online-journals.org/index.php/i-jep/article/view/2313 +Daniel Rutto,Industry Demands and Future of Engineering Education in Kenya.,2015,5,iJEP,2,db/journals/i-jep/i-jep5.html#Rutto15,http://www.online-journals.org/index.php/i-jep/article/view/4453 +Richard Wood,Engineering Education in an Integrated Setting.,2018,8,iJEP,3,db/journals/i-jep/i-jep8.html#WoodMMK18,http://www.online-journals.org/index.php/i-jep/article/view/7857 +Bjarne Schmidt,Students' Perception of Different Learning Options and Use of Authentic Research Papers in a First Year Engineering Course.,2015,5,iJEP,4,db/journals/i-jep/i-jep5.html#Schmidt15,http://www.online-journals.org/index.php/i-jep/article/view/4923 +Tiia Rüütmann,Integration of Non-Technical Engineering Competences into Contemporary Engineering Curricula.,2013,3,iJEP,2,db/journals/i-jep/i-jep3.html#RuutmannPTK13,http://www.online-journals.org/index.php/i-jep/article/view/2406 +Agoritsa Konstanti,Hybrid Educational Methodology for the Cognitive Domain of Built Heritage Protection Interconnecting Secondary with Tertiary Level Education.,2013,3,iJEP,4,db/journals/i-jep/i-jep3.html#KonstantiM13,http://www.online-journals.org/index.php/i-jep/article/view/2761 +Benjamin Reed Campbell,An Analysis of Engineering Educational Standards and Outcomes Achieved by a Robotics Summer Camp Experience.,2015,5,iJEP,4,db/journals/i-jep/i-jep5.html#CampbellVK15,http://www.online-journals.org/index.php/i-jep/article/view/4713 +Maria Teresa Restivo,From the CISPEE 2013 Conference Chairs.,2014,4,iJEP,5,db/journals/i-jep/i-jep4.html#RestivoA14,http://www.online-journals.org/index.php/i-jep/article/view/3539/3004 +Anna Danielewicz-Betz,Preparing Engineering Students for Global Workplace Communication: Changing the Japanese Mindsets.,2014,4,iJEP,1,db/journals/i-jep/i-jep4.html#Danielewicz-BetzK14,http://www.online-journals.org/index.php/i-jep/article/view/3297 +Chara Papoutsi,Games for Empathy for Social Impact.,2016,6,iJEP,4,db/journals/i-jep/i-jep6.html#PapoutsiD16,http://www.online-journals.org/index.php/i-jep/article/view/6064 +Pia Helena Lappalainen,Industrial Leadership that Inspires Managerial Communication as an Emerging Pedagogical Focus in Engineering.,2017,7,iJEP,2,db/journals/i-jep/i-jep7.html#Lappalainen17a,http://www.online-journals.org/index.php/i-jep/article/view/6984 +Dominique Leclet,Assistance Tool for Teachers: The TEATIME tool for the Design of Pedagogical Devices.,2012,2,iJEP,4,db/journals/i-jep/i-jep2.html#Leclet12,http://www.online-journals.org/index.php/i-jep/article/view/2147 +Piyanuch Silapachote,Engineering Courses on Computational Thinking Through Solving Problems in Artificial Intelligence.,2017,7,iJEP,3,db/journals/i-jep/i-jep7.html#SilapachoteS17,http://www.online-journals.org/index.php/i-jep/article/view/6951 +Athanasios Drigas,ICTs in Speech and Language Therapy.,2014,4,iJEP,1,db/journals/i-jep/i-jep4.html#DrigasP14,http://www.online-journals.org/index.php/i-jep/article/view/3280 +Chiu Choi,Velocity Feedback Experiments.,2017,7,iJEP,1,db/journals/i-jep/i-jep7.html#Choi17,http://www.online-journals.org/index.php/i-jep/article/view/6143 +Sonja Trapp,Collaborative Learning of UML and SysML.,2011,1,iJEP,2,db/journals/i-jep/i-jep1.html#TrappRHWDB11,http://online-journals.org/index.php/i-jep/article/view/1663 +Jelizaveta Janno,Managing Human Factors Related Risks. The Advanced Training Model in Dangerous Goods Transport on Roads.,2018,8,iJEP,4,db/journals/i-jep/i-jep8.html#JannoK18,http://www.online-journals.org/index.php/i-jep/article/view/8150 +Tomás Kozík,Netiquette in Electronic Communication.,2014,4,iJEP,3,db/journals/i-jep/i-jep4.html#KozikS14,http://www.online-journals.org/index.php/i-jep/article/view/3570 +Javier García Zubía,Open Learning Approach with Remote Experiments: OLAREX Project.,2013,3,iJEP,4,db/journals/i-jep/i-jep3.html#ZubiaADO13,http://www.online-journals.org/index.php/i-jep/article/view/2871 +Henryk Noga,Applying Chosen Teaching Methods in Technical Education.,2014,4,iJEP,4,db/journals/i-jep/i-jep4.html#Noga14,http://www.online-journals.org/index.php/i-jep/article/view/3855 +Chiu Choi,Teaching Electromagnetic Interference on Microcontrollers through Lab Experiments.,2013,3,iJEP,2,db/journals/i-jep/i-jep3.html#Choi13,http://www.online-journals.org/index.php/i-jep/article/view/2252 +,IGIP/ICL2014 Conference.,2014,4,iJEP,1,db/journals/i-jep/i-jep4.html#X14,http://www.online-journals.org/index.php/i-jep/article/view/3550/2953 +Alexander Evgenevich Shukhman,Automated Development of Individual Learning Paths on the Competency Approach.,2013,3,iJEP,4,db/journals/i-jep/i-jep3.html#ShukhmanMB13,http://www.online-journals.org/index.php/i-jep/article/view/2900 +Ashraf Zaher,Extending STEM Education to Engineering Programs at the Undergraduate College Level.,2018,8,iJEP,3,db/journals/i-jep/i-jep8.html#ZaherD18,http://www.online-journals.org/index.php/i-jep/article/view/8402 +Peeter Kukk,Assignments and Grading in Engineering Graphics Courses.,2015,5,iJEP,3,db/journals/i-jep/i-jep5.html#KukkH15,http://www.online-journals.org/index.php/i-jep/article/view/4661 +Maria Teresa Restivo,Guest Editorial.,2011,1,iJEP,1,db/journals/i-jep/i-jep1.html#Restivo11,http://online-journals.org/index.php/i-jep/article/view/1633/1697 +M. Fikret Ercan,Innovative Curriculum to Enhance the Learning Experience of Electrical and Mechanical Engineering Students.,2016,6,iJEP,3,db/journals/i-jep/i-jep6.html#ErcanSK16,http://www.online-journals.org/index.php/i-jep/article/view/5765 +Jeanne Schreurs,A Shift from Teacher Centered to Learner Centered Approach.,2014,4,iJEP,3,db/journals/i-jep/i-jep4.html#SchreursD14,http://www.online-journals.org/index.php/i-jep/article/view/3395 +Cornelia Böhmer,A Bachelor's degree in Electrical Engineering for Non-traditional Students.,2013,3,iJEP,3,db/journals/i-jep/i-jep3.html#BohmerRMB13,http://online-journals.org/i-jep/article/view/2770 +Walfredo González Hernández,Creativity Development in Informatics Teaching Using the Project Focus.,2013,3,iJEP,1,db/journals/i-jep/i-jep3.html#Hernandez13,http://www.online-journals.org/index.php/i-jep/article/view/2342 +Mohammed El-Abd,A Review of Embedded Systems Education in the Arduino Age: Lessons Learned and Future Directions.,2017,7,iJEP,2,db/journals/i-jep/i-jep7.html#El-Abd17,http://www.online-journals.org/index.php/i-jep/article/view/6845 +Manuel Carlos Felgueiras,Reverse Problem-Based Learning - A Case Study with a Braille Machine.,2014,4,iJEP,5,db/journals/i-jep/i-jep4.html#FelgueirasFA14,http://www.online-journals.org/index.php/i-jep/article/view/3556 +Martin Podaril,Introduction of a Quality Management System for Vocational Education and Training in Slovakia.,2013,3,iJEP,3,db/journals/i-jep/i-jep3.html#Podaril13,http://online-journals.org/i-jep/article/view/2733 +Axel Zafoschnig,The Development of the new ING.PAED.IGIP Curriculum into an Umbrella for Modularised National and Regional Engineering Education Curricula.,2014,4,iJEP,1,db/journals/i-jep/i-jep4.html#Zafoschnig14,http://www.online-journals.org/index.php/i-jep/article/view/3244 +Sasko Ristov,Gamifying the Project in Hardware-based Courses.,2015,5,iJEP,4,db/journals/i-jep/i-jep5.html#RistovAK15,http://www.online-journals.org/index.php/i-jep/article/view/4711 +Juarez Bento da Silva,School vs Industry: A Relation of Competencies and Skills.,2012,2,iJEP,4,db/journals/i-jep/i-jep2.html#Silva12,http://www.online-journals.org/index.php/i-jep/article/view/2296 +Maja Jeretin-Kopf,Methods and Tools for Enabling Employees to Contribute to Technological Progress.,2016,6,iJEP,3,db/journals/i-jep/i-jep6.html#Jeretin-KopfWHW16,http://www.online-journals.org/index.php/i-jep/article/view/5779 +Novera Kristianti,Virtual Education with Puzzle Games for Early Childhood - A Study of Indonesia.,2018,8,iJEP,2,db/journals/i-jep/i-jep8.html#KristiantiPS18,http://www.online-journals.org/index.php/i-jep/article/view/7943 +Matthew Cullin,The Effect of an Open-Ended Design Experience on Student Achievement in an Engineering Laboratory Course.,2017,7,iJEP,4,db/journals/i-jep/i-jep7.html#CullinHKP17,http://www.online-journals.org/index.php/i-jep/article/view/7328 +Celina P. Leão,Insights on Using WALC Platform as a Learning Tool.,2012,2,iJEP,1,db/journals/i-jep/i-jep2.html#LeaoSC12,http://www.online-journals.org/index.php/i-jep/article/view/1864 +Ilse Baumgartner,A Set of Best Practices to Design Face-to-face Teaching Sessions for Technology-centered University-level Computing Courses.,2014,4,iJEP,4,db/journals/i-jep/i-jep4.html#Baumgartner14,http://www.online-journals.org/index.php/i-jep/article/view/4000 +Angeles Cancela,B-Learning Tools in Engineering Education.,2013,3,iJEP,2,db/journals/i-jep/i-jep3.html#CancelaMSU13,http://www.online-journals.org/index.php/i-jep/article/view/2451 +Ola M. ågren,Student-Graded Oral Presentations.,2015,5,iJEP,4,db/journals/i-jep/i-jep5.html#Agren15,http://www.online-journals.org/index.php/i-jep/article/view/4841 +Walfredo González Hernández,Detection of potentially creative students for informatics activity.,2016,6,iJEP,1,db/journals/i-jep/i-jep6.html#Hernandez16,http://www.online-journals.org/index.php/i-jep/article/view/5156 +Istvan Lükö,The Changes of Ergonomics in Hungary and Engineering Education.,2013,3,iJEP,1,db/journals/i-jep/i-jep3.html#Luko13,http://www.online-journals.org/index.php/i-jep/article/view/2335 +Mohammed El-Abd,Preparation of Engineering Students for Capstone Design Experience through a Microprocessors Course.,2017,7,iJEP,4,db/journals/i-jep/i-jep7.html#El-Abd17a,http://www.online-journals.org/index.php/i-jep/article/view/6787 +Sivachandran Chandrasekaran,Assessing Team Learning Practices in Project/Design Based Learning Approach.,2016,6,iJEP,3,db/journals/i-jep/i-jep6.html#ChandrasekaranA16,http://www.online-journals.org/index.php/i-jep/article/view/5448 +Clement Ehimika Ohireime Onime,An Augmented Virtuality Based Solar Energy Power Calculator in Electrical Engineering.,2015,5,iJEP,1,db/journals/i-jep/i-jep5.html#OnimeUP15,http://www.online-journals.org/index.php/i-jep/article/view/3841 +Isabel Braun,Inverted Classroom by Topic - A Study in Mathematics for Electrical Engineering Students.,2014,4,iJEP,3,db/journals/i-jep/i-jep4.html#BraunRV14,http://www.online-journals.org/index.php/i-jep/article/view/3299 +Michael Hitch,Advances In Mining Engineering Education: A Case For Learning Communities.,2015,5,iJEP,2,db/journals/i-jep/i-jep5.html#Hitch15,http://www.online-journals.org/index.php/i-jep/article/view/4469 +Zehava Ovadia-Blechman,Medical Engineering Education based on the Spiral Approach.,2016,6,iJEP,3,db/journals/i-jep/i-jep6.html#Ovadia-Blechman16,http://www.online-journals.org/index.php/i-jep/article/view/5759 +Yvonne Sedelmaier,How Can We Find Out What Makes a Good Requirements Engineer in the Age of Digitalization?,2017,7,iJEP,3,db/journals/i-jep/i-jep7.html#SedelmaierL17,http://www.online-journals.org/index.php/i-jep/article/view/7424 +Khaled Bashir Shaban,Problem-centric Process for Research-based Learning.,2015,5,iJEP,2,db/journals/i-jep/i-jep5.html#ShabanAY15,http://www.online-journals.org/index.php/i-jep/article/view/4506 +Matthias Christoph Utesch,The Pupils' Academy of Serious Gaming: Strengthening Study Skills.,2015,5,iJEP,3,db/journals/i-jep/i-jep5.html#Utesch15,http://www.online-journals.org/index.php/i-jep/article/view/4660 +Marios Pappas,Enhanced Assessment Technology and Neurocognitive Aspects of Specific Learning Disorder with Impairment in Mathematics.,2018,8,iJEP,1,db/journals/i-jep/i-jep8.html#PappasDMK18,http://www.online-journals.org/index.php/i-jep/article/view/7370 +Matthew Turner,Evaluation of an Early Three Phase Approach to Electric Circuit Instruction.,2017,7,iJEP,1,db/journals/i-jep/i-jep7.html#Turner17,http://www.online-journals.org/index.php/i-jep/article/view/6418 +Marek Milosz,Professional Work of Computer Science Students and their Academic Achievements - Imagination vs. Reality.,2018,8,iJEP,1,db/journals/i-jep/i-jep8.html#MiloszM18,http://www.online-journals.org/index.php/i-jep/article/view/7445 +Maria Estrella Sousa Vieira,Using Social Learning Methodologies in Higher Education.,2015,5,iJEP,2,db/journals/i-jep/i-jep5.html#VieiraLFRL15,http://www.online-journals.org/index.php/i-jep/article/view/4645 +Leslie E. Seawright,Teaching Technical Writing: Opportunities for International Collaboration.,2014,4,iJEP,2,db/journals/i-jep/i-jep4.html#Seawright14,http://www.online-journals.org/index.php/i-jep/article/view/3438 +Katrin Temmen,'Learning by doing' - Improving Academic Scills.,2013,3,iJEP,3,db/journals/i-jep/i-jep3.html#TemmenW13,http://online-journals.org/i-jep/article/view/2827 +Istvan Simonics,ICL2017 Highlights.,2018,8,iJEP,2,db/journals/i-jep/i-jep8.html#Simonics18,http://www.online-journals.org/index.php/i-jep/article/view/8211 +Shawqi Mohammed Hussein,A Team Formation Framework for Managing Diversity in Multidisciplinary Engineering Project.,2017,7,iJEP,1,db/journals/i-jep/i-jep7.html#HusseinHM17,http://www.online-journals.org/index.php/i-jep/article/view/6461 +Celina P. Leão,An Early Start in Robotics - K-12 Case-Study.,2011,1,iJEP,1,db/journals/i-jep/i-jep1.html#LeaoSRL11,http://online-journals.org/index.php/i-jep/article/view/1611 +Fatima Monteiro,The Students' Perspective Contribution: Rethink the Ethical Education of Engineering Students.,2017,7,iJEP,2,db/journals/i-jep/i-jep7.html#Monteiro17,http://www.online-journals.org/index.php/i-jep/article/view/6819 +Bill Williams,From Academia to Start-up: A Case Study with Implications for Engineering Education.,2014,4,iJEP,1,db/journals/i-jep/i-jep4.html#WilliamsF14,http://www.online-journals.org/index.php/i-jep/article/view/3236 +Monika Pogatsnik,Dual Education: The Win-Win Model of Collaboration between Universities and Industry.,2018,8,iJEP,3,db/journals/i-jep/i-jep8.html#Pogatsnik18,http://www.online-journals.org/index.php/i-jep/article/view/8111 +Petr Bychkov,Game-Based Learning while Research Activities of Engineering Students.,2018,8,iJEP,4,db/journals/i-jep/i-jep8.html#BychkovZNM18,http://www.online-journals.org/index.php/i-jep/article/view/8126 +Jorge Rodriguez,Motivation of Engineering Students Participating in Multinational Design Projects - Comparison Based on Gender and Class Status.,2017,7,iJEP,4,db/journals/i-jep/i-jep7.html#RodriguezE17,http://www.online-journals.org/index.php/i-jep/article/view/7516 +Eleni Fatourou,Teaching Concurrent Programming Concepts Using Scratch in Primary School: Methodology and Evaluation.,2018,8,iJEP,4,db/journals/i-jep/i-jep8.html#FatourouZLS18,http://www.online-journals.org/index.php/i-jep/article/view/8216 +Christopher R. Saulnier,Design Based Wilderness Education.,2015,5,iJEP,1,db/journals/i-jep/i-jep5.html#SaulnierABB15,http://www.online-journals.org/index.php/i-jep/article/view/4386 +Clement Ehimika Ohireime Onime,A Low Cost Implementation of an Existing Hands-on Laboratory Experiment in Electronic Engineering.,2014,4,iJEP,4,db/journals/i-jep/i-jep4.html#OnimeZU14,http://www.online-journals.org/index.php/i-jep/article/view/3707 +Christina Andersson,A Blended Learning Module in Statistics for Computer Science and Engineering Students Revisited.,2017,7,iJEP,4,db/journals/i-jep/i-jep7.html#AnderssonL17,http://www.online-journals.org/index.php/i-jep/article/view/7441 +Maria Teresa Restivo,Online Experimentation in Education and Training.,2014,4,iJEP,2,db/journals/i-jep/i-jep4.html#RestivoC14,http://www.online-journals.org/index.php/i-jep/article/view/3481 +Mikko Vasko,Online Homework in Engineering Mathematics: Can We Narrow the Performance Gap?,2018,8,iJEP,1,db/journals/i-jep/i-jep8.html#VaskoRM18,http://www.online-journals.org/index.php/i-jep/article/view/7526 +Mohamed Soliman,Evaluation of Intelligent Agent Frameworks for Human Learning.,2011,1,iJEP,3,db/journals/i-jep/i-jep1.html#SolimanG11,http://online-journals.org/index.php/i-jep/article/view/1816 +Marios Pappas,ICT-based Innovation and Employability for Women.,2017,7,iJEP,2,db/journals/i-jep/i-jep7.html#PappasPDRN17,http://www.online-journals.org/index.php/i-jep/article/view/6758 +Secil Satir,A Generator: A Mini Hydroelectric Apparatus as Renewable Source of Energy.,2018,8,iJEP,3,db/journals/i-jep/i-jep8.html#SatirKD18,http://www.online-journals.org/index.php/i-jep/article/view/8221 +Omar S. Asfour,The Role of the Preparatory Year in the Selection of Engineering Specialization: A Case Study.,2017,7,iJEP,1,db/journals/i-jep/i-jep7.html#Asfour17,http://www.online-journals.org/index.php/i-jep/article/view/6342 +Chekry Abderrahman,Semantic Web Technologies for the Reuse and Adaptation of Educational Documents in E-Learning.,2013,3,iJEP,1,db/journals/i-jep/i-jep3.html#AbderrahmanM13,http://www.online-journals.org/index.php/i-jep/article/view/2167 +Anca-Juliana Stoica,Integrative Educational Approach Oriented Towards Software and System Development.,2013,3,iJEP,1,db/journals/i-jep/i-jep3.html#StoicaI13,http://www.online-journals.org/index.php/i-jep/article/view/2345 +Issam Damaj,Assessment and Evaluation Framework with Successful Application in ABET Accreditation.,2017,7,iJEP,3,db/journals/i-jep/i-jep7.html#DamajZY17,http://www.online-journals.org/index.php/i-jep/article/view/7262 +Alexander I. Chuchalin,Practice-oriented Learning as a Way to Meet Employers' Requirements to Graduates.,2014,4,iJEP,2,db/journals/i-jep/i-jep4.html#ChuchalinMV14,http://www.online-journals.org/index.php/i-jep/article/view/3440 +Jose Antonio Alvarez Salas,Evaluation of the Use of Two Teaching Techniques in Engineering.,2014,4,iJEP,3,db/journals/i-jep/i-jep4.html#SalasSAAP14,http://www.online-journals.org/index.php/i-jep/article/view/3287 +Maria Teresa Restivo,Experiment@Portugal.,2011,1,iJEP,1,db/journals/i-jep/i-jep1.html#RestivoAC11,http://online-journals.org/index.php/i-jep/article/view/1607 +Matthias Christoph Utesch,EDUCON 2017 Highlights by iJEP.,2017,7,iJEP,4,db/journals/i-jep/i-jep7.html#Utesch17,http://www.online-journals.org/index.php/i-jep/article/view/7719 +Anda Zeidmane,Interdisciplinary Approach in Engineering Education.,2011,1,iJEP,1,db/journals/i-jep/i-jep1.html#ZeidmaneC11,http://online-journals.org/index.php/i-jep/article/view/1604 +Wilfried Lepuschitz,Educational Practices for Improvement of Entrepreneurial Skills at Secondary School Level.,2018,8,iJEP,2,db/journals/i-jep/i-jep8.html#LepuschitzKLHM18,http://www.online-journals.org/index.php/i-jep/article/view/8141 +Anja Richert,Digital Transformation of Engineering Education - Empirical Insights from Virtual Worlds and Human-Robot-Collaboration.,2016,6,iJEP,4,db/journals/i-jep/i-jep6.html#RichertSWJ16,http://www.online-journals.org/index.php/i-jep/article/view/6023 +Maria da Silva Nascimento,Come Together: Peer Review with Energy Engineering Students.,2014,4,iJEP,5,db/journals/i-jep/i-jep4.html#Nascimento14,http://www.online-journals.org/index.php/i-jep/article/view/3537 +Elena Soldatova,E-Learning Recommender System for Teaching Staff of Engineering Disciplines.,2014,4,iJEP,3,db/journals/i-jep/i-jep4.html#SoldatovaBVJ14,http://www.online-journals.org/index.php/i-jep/article/view/3478 +Kiyoshi Nagata,Trial for E-Learning System on Information Security Incorporate with Learning Style and Consciousness Factors.,2018,8,iJEP,3,db/journals/i-jep/i-jep8.html#NagataKA18,http://www.online-journals.org/index.php/i-jep/article/view/8163 +Stefan Svetsky,The Personalized Computer Support of Teaching.,2018,8,iJEP,4,db/journals/i-jep/i-jep8.html#SvetskyMTM18,http://www.online-journals.org/index.php/i-jep/article/view/8149 +Eleftheria Demertzi,Online Learning Facilities to Support Coding and Robotics Courses for Youth.,2018,8,iJEP,3,db/journals/i-jep/i-jep8.html#DemertziVPD18,http://www.online-journals.org/index.php/i-jep/article/view/8044 +Amando Pimentel Singun Jr.,Heuristics as Mental Shortcuts in Evaluating Interactive Systems.,2018,8,iJEP,4,db/journals/i-jep/i-jep8.html#Singun18,http://www.online-journals.org/index.php/i-jep/article/view/8054 +Whitney Brooke Gaskins,Changing the Learning Environment in the College of Engineering and Applied Science Using Challenge Based Learning.,2015,5,iJEP,1,db/journals/i-jep/i-jep5.html#GaskinsJMK15,http://www.online-journals.org/index.php/i-jep/article/view/4138 +Yvonne Sedelmaier,A Competence-Oriented Approach to Subject-Matter Didactics for Software Engineering.,2015,5,iJEP,3,db/journals/i-jep/i-jep5.html#SedelmaierL15a,http://www.online-journals.org/index.php/i-jep/article/view/4664 +Razvan Rughinis,Badge Architectures as Tools for Sense-Making and Motivation in Engineering Education.,2015,5,iJEP,4,db/journals/i-jep/i-jep5.html#RughinisM15,http://www.online-journals.org/index.php/i-jep/article/view/4957 +Márta Erzsébet Czenky,How Do the Engineer Students Learn the SQL Language?,2014,4,iJEP,1,db/journals/i-jep/i-jep4.html#Czenky14,http://www.online-journals.org/index.php/i-jep/article/view/3207 +Katrin Temmen,Lecture Meets Laboratory - Experimental Experiences for Large Audiences: Concept and Implementation.,2014,4,iJEP,4,db/journals/i-jep/i-jep4.html#TemmenNW14,http://www.online-journals.org/index.php/i-jep/article/view/3956 +Robert Merton Stwalley III,Assessing Improvement and Professional Career Skills in Senior Capstone Design through Course Data.,2017,7,iJEP,3,db/journals/i-jep/i-jep7.html#Stwalley17,http://www.online-journals.org/index.php/i-jep/article/view/7390 +Marina Duarte,Learner Autonomy of Engineering Students: Validating the PRO-SDLS scale in a Portuguese context.,2014,4,iJEP,5,db/journals/i-jep/i-jep4.html#Duarte14,http://www.online-journals.org/index.php/i-jep/article/view/3562 +Ali Alharbi,Personalised Learning Object System Based on Self-Regulated Learning Theories.,2014,4,iJEP,3,db/journals/i-jep/i-jep4.html#AlharbiHH14,http://www.online-journals.org/index.php/i-jep/article/view/3348 +Roman Hrmo,Improving the Quality of Technical and Vocational Education in Slovakia for European Labour Market Needs.,2016,6,iJEP,2,db/journals/i-jep/i-jep6.html#HrmoMK16,http://www.online-journals.org/index.php/i-jep/article/view/5369 +Chunfang Zhou,Learning Engineering Knowledge and Creativity by Solving Projects.,2012,2,iJEP,1,db/journals/i-jep/i-jep2.html#Zhou12,http://www.online-journals.org/index.php/i-jep/article/view/1873 +Nina Kälberer,Preparatory Mathematics Course for Non-Traditional Engineering Students.,2014,4,iJEP,4,db/journals/i-jep/i-jep4.html#KalbererBTPB14,http://www.online-journals.org/index.php/i-jep/article/view/3999 +Jorge Alves Lino,Research Skills Enhancement in Future Mechanical Engineers.,2011,1,iJEP,1,db/journals/i-jep/i-jep1.html#LinoD11,http://online-journals.org/index.php/i-jep/article/view/1590 +Márta Erzsébet Czenky,Electronic Test or Printed Exercise Book? Which Individual Mode of Preparation is More Effective?,2013,3,iJEP,1,db/journals/i-jep/i-jep3.html#Czenky13,http://www.online-journals.org/index.php/i-jep/article/view/2306 +Murthy Kasi,Integrating Electrical Analogy and Computer Modeling of Groundwater Flow for Teaching Flownet Concepts.,2013,3,iJEP,4,db/journals/i-jep/i-jep3.html#KasiCP13,http://www.online-journals.org/index.php/i-jep/article/view/3052 +Manuel Fernando Silva,Collaborative Learning with Sustainability-driven Projects: A Summary of the EPS@ISEP Programme.,2018,8,iJEP,4,db/journals/i-jep/i-jep8.html#SilvaMGDF18,http://www.online-journals.org/index.php/i-jep/article/view/8260 +Catherine Pons-Lelardeux,A Method to Design a Multi-Player Educational Scenario to Make Interdisciplinary Teams Experiment Risk Management Situation in a Digital Collaborative Learning Game: A Case of Study in Healthcare.,2018,8,iJEP,2,db/journals/i-jep/i-jep8.html#Pons-LelardeuxG18,http://www.online-journals.org/index.php/i-jep/article/view/8140 +Velli Parts,Would Engineers Need Non-technical Skills or Non-technical Competences or Both?,2013,3,iJEP,2,db/journals/i-jep/i-jep3.html#PartsTR13,http://www.online-journals.org/index.php/i-jep/article/view/2405 +David Antoine Delaine,Global Diversity and Inclusion in Engineering Education: Developing Platforms toward Global Alignment.,2016,6,iJEP,1,db/journals/i-jep/i-jep6.html#DelaineTSW16,http://www.online-journals.org/index.php/i-jep/article/view/5372 +Greet Langie,The Transition to STEM Higher Education: Policy Recommendation - Conclusions of the readySTEMgo-Project.,2018,8,iJEP,2,db/journals/i-jep/i-jep8.html#LangieP18,http://www.online-journals.org/index.php/i-jep/article/view/8286 +Zita Tordai,Student's Characteristics as a Basis for Competency Development in Engineering Informatics Education.,2018,8,iJEP,4,db/journals/i-jep/i-jep8.html#TordaiH18,http://www.online-journals.org/index.php/i-jep/article/view/8133 +Philip Appiah Kubi,Multivariate Analysis of Students Perception on Teaching with Client Based and Non-Client Based Team Projects.,2018,8,iJEP,3,db/journals/i-jep/i-jep8.html#Kubi18,http://www.online-journals.org/index.php/i-jep/article/view/8498 +Phillip A. Sanger,Applying Andragogy to Promote Active Learning in Adult Education in Russia.,2016,6,iJEP,4,db/journals/i-jep/i-jep6.html#SangerP16,http://www.online-journals.org/index.php/i-jep/article/view/6079 +Scott L. Post,Standards-Based Grading in a Thermodynamics Course.,2017,7,iJEP,1,db/journals/i-jep/i-jep7.html#Post17,http://www.online-journals.org/index.php/i-jep/article/view/6472 +Sadia Nawaz,Authorship and Content Analysis of Engineering Education Research: A Case Study.,2016,6,iJEP,2,db/journals/i-jep/i-jep6.html#NawazS16,http://www.online-journals.org/index.php/i-jep/article/view/5577 +Anda Zeidmane,Students' Perceptions on Practical Problem Solving in Mathematics in E-environment.,2014,4,iJEP,2,db/journals/i-jep/i-jep4.html#ZeidmaneD14,http://www.online-journals.org/index.php/i-jep/article/view/3446 +Akram Ahmad Abu-aisheh,Fostering Engineering Students Engagement Using Problem-Based Learning and Course Learner Agent Object Portfolios.,2016,6,iJEP,4,db/journals/i-jep/i-jep6.html#Abu-aishehGSH16,http://www.online-journals.org/index.php/i-jep/article/view/6086 +Pia Helena Lappalainen,Stirring up Engineers' Systems Intelligence: A Case Study of Life-Philosophical Pedagogy.,2017,7,iJEP,3,db/journals/i-jep/i-jep7.html#Lappalainen17b,http://www.online-journals.org/index.php/i-jep/article/view/7252 +Aharon Gero,Engineering Students as Science Teachers: A Case Study on Students' Motivation.,2014,4,iJEP,3,db/journals/i-jep/i-jep4.html#Gero14,http://www.online-journals.org/index.php/i-jep/article/view/3503 +Vladimir M. Cvjetkovic,Pocket Labs Supported IoT Teaching.,2018,8,iJEP,2,db/journals/i-jep/i-jep8.html#Cvjetkovic18,http://www.online-journals.org/index.php/i-jep/article/view/8129 +Tiia Rüütmann,Rethinking Effective Teaching and Learning for the Design of Efficient Curriculum for Technical Teachers.,2013,3,iJEP,1,db/journals/i-jep/i-jep3.html#RuutmannK13,http://www.online-journals.org/index.php/i-jep/article/view/2404 +Stefan Schröder,On-professional Competences in Engineering Education for XL-Classes.,2014,4,iJEP,3,db/journals/i-jep/i-jep4.html#SchroderJLVI14,http://www.online-journals.org/index.php/i-jep/article/view/3339 +Robert Mayes,Interdisciplinary STEM through Engineering Design-based Reasoning.,2018,8,iJEP,3,db/journals/i-jep/i-jep8.html#MayesGF18,http://www.online-journals.org/index.php/i-jep/article/view/8026 +Pia Helena Lappalainen,Can and Should Social Competence be Taught to Engineers?,2011,1,iJEP,3,db/journals/i-jep/i-jep1.html#Lappalainen11,http://online-journals.org/index.php/i-jep/article/view/1811 +Amr Elsaadany,Experimental Evaluation of Internet of Things in the Educational Environment.,2017,7,iJEP,3,db/journals/i-jep/i-jep7.html#ElsaadanyS17,http://www.online-journals.org/index.php/i-jep/article/view/7187 +Melanie Gisela Cornejo,Moray: Bridging an Ancient Culture of Innovation with Emerging Pedagogies in Engineering.,2018,8,iJEP,4,db/journals/i-jep/i-jep8.html#CornejoOTBP18,http://www.online-journals.org/index.php/i-jep/article/view/8139 +Tomislav S. Igic,Design of a System for Monitoring Reliability of Structures and Constructions in Civil Engineering.,2011,1,iJEP,2,db/journals/i-jep/i-jep1.html#IgicV11,http://online-journals.org/index.php/i-jep/article/view/1634 +Maria Teresa Restivo,IT's and Engineering Pedagogy (ITEP'12).,2012,2,iJEP,2,db/journals/i-jep/i-jep2.html#Restivo12,http://www.online-journals.org/index.php/i-jep/article/view/2099/2192 +Frank Musekamp,Modeling of Competences for Students of Engineering Mechanics.,2014,4,iJEP,1,db/journals/i-jep/i-jep4.html#MusekampSMHH14,http://www.online-journals.org/index.php/i-jep/article/view/2917 +Teresa L. Larkin,The Student Conference: A Model of Authentic Assessment.,2014,4,iJEP,2,db/journals/i-jep/i-jep4.html#Larkin14,http://www.online-journals.org/index.php/i-jep/article/view/3445 +Ján Záhorec,Particular Results of a Research Aimed at Curricula Design of Teacher Training in the Area of Didactic Technological Competences.,2018,8,iJEP,4,db/journals/i-jep/i-jep8.html#ZahorecHM18,http://www.online-journals.org/index.php/i-jep/article/view/8184 +Bedilu Habte,E-Learning in Engineering through Videoconferencing: The Case of the Addis Ababa Institute of Technology.,2013,3,iJEP,2,db/journals/i-jep/i-jep3.html#Habte13,http://www.online-journals.org/index.php/i-jep/article/view/2385 +Galina Artyushina,How To Improve Listening Skills for Technical Students.,2011,1,iJEP,3,db/journals/i-jep/i-jep1.html#ArtyushinaSKS11,http://online-journals.org/index.php/i-jep/article/view/1795 +Wei Wei Goh,Can Wiki Be Used to Facilitate Critical Thinking? : A Qualitative Approach.,2012,2,iJEP,4,db/journals/i-jep/i-jep2.html#Goh12,http://www.online-journals.org/index.php/i-jep/article/view/2261 +Tatiana V. Goris,Common Misunderstandings of Electricity: Analysis of Interview- Responses of Electrical Engineering Technology Students.,2016,6,iJEP,1,db/journals/i-jep/i-jep6.html#Goris16,http://www.online-journals.org/index.php/i-jep/article/view/5146 +Armando Paulino Preciado Babb,Pioneering STEM Education for Pre-Service Teachers.,2016,6,iJEP,4,db/journals/i-jep/i-jep6.html#BabbTYFGF16,http://www.online-journals.org/index.php/i-jep/article/view/5965 +Pedro Guillermo Feijóo García,The Godparent Plan: A Pedagogical Strategy for CS1 Accompaniment and CS2 Pedagogical Enhancement.,2018,8,iJEP,1,db/journals/i-jep/i-jep8.html#GarciaO18,http://www.online-journals.org/index.php/i-jep/article/view/7596 +Chekry Abderrahman,Semantic Annotation of Resources of Distance Learning Based Intelligent Agents.,2014,4,iJEP,1,db/journals/i-jep/i-jep4.html#AbderrahmanAM14,http://www.online-journals.org/index.php/i-jep/article/view/2845 +Martin Frank,Augmenting Mathematics Courses by Problem-Based Learning.,2016,6,iJEP,1,db/journals/i-jep/i-jep6.html#FrankR16,http://www.online-journals.org/index.php/i-jep/article/view/5368 +Margarida Pinho-Lopes,Project-Based Learning to Promote High Order Thinking and Problem Solving Skills in Geotechnical Courses.,2014,4,iJEP,5,db/journals/i-jep/i-jep4.html#Pinho-LopesM14,http://www.online-journals.org/index.php/i-jep/article/view/3535 +Manuel Travassos Valdez,Teaching Circuit Theory using a Desktop VR System.,2013,3,iJEP,4,db/journals/i-jep/i-jep3.html#ValdezFB13,http://www.online-journals.org/index.php/i-jep/article/view/2701 +Barbara Nofen,Lecture Meets Laboratory - Experimental Experiences for Large Audiences: Results of a First Implementation and Recommendation.,2015,5,iJEP,2,db/journals/i-jep/i-jep5.html#NofenT15,http://www.online-journals.org/index.php/i-jep/article/view/4663 +Jesper Abildgaard Larsen,Motivating Students to Develop Satellites in Problem and Project-Based Learning (PBL) Environment.,2013,3,iJEP,3,db/journals/i-jep/i-jep3.html#JesperNZ13,http://online-journals.org/i-jep/article/view/2529 +Tarvo Niine,Logistics Systems Engineer - Interdisciplinary Competence Model for Modern Education.,2015,5,iJEP,2,db/journals/i-jep/i-jep5.html#NiineK15a,http://www.online-journals.org/index.php/i-jep/article/view/4578 +Marco Winzker,Addressing Low-Power Electronics in a Digital System and FPGA Design Course.,2014,4,iJEP,4,db/journals/i-jep/i-jep4.html#Winzker14,http://www.online-journals.org/index.php/i-jep/article/view/3926 +Leila Alem,A Study of Gestures in a Video-Mediated Collaborative Assembly Task.,2011,2011,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2011.html#AlemL11,https://doi.org/10.1155/2011/987830 +Ljiljana Vukelja,A Case Study of User-Centred Design in Four Swiss RUP Projects.,2010,2010,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2010.html#VukeljaOM10,https://doi.org/10.1155/2010/329351 +Jan-Maarten Luursema,The Contribution of Dynamic Exploration to Virtual Anatomical Learning.,2011,2011,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2011.html#LuursemaV11,https://doi.org/10.1155/2011/965342 +Way Kiat Bong,Tangible User Interface for Social Interactions for the Elderly: A Review of Literature.,2018,2018,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2018.html#BongCB18,https://doi.org/10.1155/2018/7249378 +Kai-Christoph Hamborg,"The Interplay between Usability and Aesthetics: More Evidence for the ""What Is Usable Is Beautiful"" Notion.",2014,2014,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2014.html#HamborgHK14,https://doi.org/10.1155/2014/946239 +Bingjun Xie,"Corrigendum to ""How Influential Are Mental Models on Interaction Performance? Exploring the Gap between Users' and Designers' Mental Models through a New Quantitative Method"".",2018,2018,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2018.html#XieZW18,https://doi.org/10.1155/2018/5193258 +Yuya Chiba,Estimating a User's Internal State before the First Input Utterance.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#ChibaI12,https://doi.org/10.1155/2012/865362 +Angelo Di Iorio,Constrained Wiki: The WikiWay to Validating Content.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#IorioDVZ12,https://doi.org/10.1155/2012/893575 +Li Zhang,Affect Detection from Text-Based Virtual Improvisation and Emotional Gesture Recognition.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#ZhangY12,https://doi.org/10.1155/2012/461247 +Anton Batliner,Segmenting into Adequate Units for Automatic Recognition of Emotion-Related Episodes: A Speech-Based Approach.,2010,2010,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2010.html#BatlinerSSS10,https://doi.org/10.1155/2010/782802 +Andrés Solano,Combinations of Methods for Collaborative Evaluation of the Usability of Interactive Software Systems.,2016,2016,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2016.html#SolanoCRF16,https://doi.org/10.1155/2016/4089520 +Grégory Wallet,Virtual/Real Transfer in a Large-Scale Environment: Impact of Active Navigation as a Function of the Viewpoint Displacement Effect and Recall Tasks.,2013,2013,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2013.html#WalletSLN13,https://doi.org/10.1155/2013/879563 +Marco Furini,Users Behavior in Location-Aware Services: Digital Natives versus Digital Immigrants.,2014,2014,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2014.html#Furini14,https://doi.org/10.1155/2014/678165 +Alex W. Stedmon,Expanding Interaction Potentials within Virtual Environments: Investigating the Usability of Speech and Manual Input Modes for Decoupled Interaction.,2011,2011,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2011.html#StedmonBG11,https://doi.org/10.1155/2011/565689 +Jorge Carlos S. Cardoso,Interaction Tasks and Controls for Public Display Applications.,2014,2014,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2014.html#CardosoJ14,https://doi.org/10.1155/2014/371867 +Lode Vanacken,Force Feedback to Assist Active Contour Modelling for Tracheal Stenosis Segmentation.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#VanackenPSC12,https://doi.org/10.1155/2012/632498 +Minna Isomursu,Experiences from a Touch-Based Interaction and Digitally Enhanced Meal-Delivery Service for the Elderly.,2008,2008,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2008.html#IsomursuHWA08,https://doi.org/10.1155/2008/931701 +Mary Fendley,Decision Aiding to Overcome Biases in Object Identification.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#FendleyN12,https://doi.org/10.1155/2012/790304 +Javier A. Bargas-Avila,ZeGo: Development and Validation of a Short Questionnaire to Measure User Satisfaction with e-Government Portals.,2010,2010,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2010.html#Bargas-AvilaOVO10,https://doi.org/10.1155/2010/487163 +Tim Gamble,Transitions in Interface Objects: Searching Databases.,2016,2016,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2016.html#GambleM16,https://doi.org/10.1155/2016/5916843 +Mourad Gridach,An XML Approach of Coding a Morphological Database for Arabic Language.,2011,2011,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2011.html#GridachC11,https://doi.org/10.1155/2011/629305 +Satoshi Suzuki,Human Control Law and Brain Activity of Voluntary Motion by Utilizing a Balancing Task with an Inverted Pendulum.,2010,2010,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2010.html#SuzukiHF10,https://doi.org/10.1155/2010/215825 +Konrad Tollmar,A Picture is Worth a Thousand Keywords: Exploring Mobile Image-Based Web Searching.,2008,2008,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2008.html#TollmarMN08,https://doi.org/10.1155/2008/612679 +Katri Salminen,Tactile Modulation of Emotional Speech Samples.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#SalminenSLRARTK12,https://doi.org/10.1155/2012/741304 +Francisco Antunes,Integrating Decision Support and Social Networks.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#AntunesC12,https://doi.org/10.1155/2012/574276 +Brianna Potvin,Comparing Horizontal and Vertical Surfaces for a Collaborative Design Task.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#PotvinSTS12,https://doi.org/10.1155/2012/137686 +Tatiana Evreinova,Virtual Sectioning and Haptic Exploration of Volumetric Shapes in the Absence of Visual Feedback.,2013,2013,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2013.html#EvreinovaER13,https://doi.org/10.1155/2013/740324 +Susanna Spinsante,NFC-Based User Interface for Smart Environments.,2015,2015,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2015.html#SpinsanteG15,https://doi.org/10.1155/2015/854671 +Johanna M. Silvennoinen,Appraisals of Salient Visual Elements in Web Page Design.,2016,2016,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2016.html#SilvennoinenJ16,https://doi.org/10.1155/2016/3676704 +Sofia Pardo,Child-Centered Evaluation: Broadening the Child/Designer Dyad.,2008,2008,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2008.html#PardoHV08,https://doi.org/10.1155/2008/597629 +Francesco Bellotti,Assessment in and of Serious Games: An Overview.,2013,2013,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2013.html#BellottiKLMB13,https://doi.org/10.1155/2013/136864 +Thomas D. Parsons,Psychophysiology to Assess Impact of Varying Levels of Simulation Fidelity in a Threat Environment.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#ParsonsRCD12,https://doi.org/10.1155/2012/831959 +Satoshi Suzuki,Estimation Algorithm of Machine Operational Intention by Bayes Filtering with Self-Organizing Map.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#SuzukiH12,https://doi.org/10.1155/2012/724587 +Kostas Karpouzis,Emotion-Aware Natural Interaction.,2010,2010,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2010.html#KarpouzisAB10,https://doi.org/10.1155/2010/309512 +Alasdair G. Thin,A Game-Based Virtualized Reality Approach for Simultaneous Rehabilitation of Motor Skill and Confidence.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#Thin12,https://doi.org/10.1155/2012/213143 +Francesco Bellotti,User Assessment in Serious Games and Technology-Enhanced Learning.,2013,2013,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2013.html#BellottiKLM13,https://doi.org/10.1155/2013/120791 +Udo Konradt,The Role of Usability in Business-to-Business E-Commerce Systems: Predictors and Its Impact on User's Strain and Commercial Transactions.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#KonradtLE12,https://doi.org/10.1155/2012/948693 +Tomi Heimonen,Mobile Findex: Facilitating Information Access in Mobile Web Search with Automatic Result Clustering.,2008,2008,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2008.html#Heimonen08,https://doi.org/10.1155/2008/680640 +Aila Kronqvist,Evaluating the Authenticity of Virtual Environments: Comparison of Three Devices.,2016,2016,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2016.html#KronqvistJR16,https://doi.org/10.1155/2016/2937632 +Dimitrios Tsonos,Modeling Reader's Emotional State Response on Document's Typographic Elements.,2011,2011,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2011.html#TsonosK11,https://doi.org/10.1155/2011/206983 +Lotfi Derbali,Assessment of Learners' Motivation during Interactions with Serious Games: A Study of Some Motivational Strategies in Food-Force.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#DerbaliF12,https://doi.org/10.1155/2012/624538 +Rui José,Dimensions of Situatedness for Digital Public Displays.,2014,2014,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2014.html#JoseOC14,https://doi.org/10.1155/2014/474652 +Walter Ritter,Benefits of Subliminal Feedback Loops in Human-Computer Interaction.,2011,2011,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2011.html#Ritter11,https://doi.org/10.1155/2011/346492 +Bart Hengeveld,The Development of LinguaBytes: An Interactive Tangible Play and Learning System to Stimulate the Language Development of Toddlers with Multiple Disabilities.,2008,2008,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2008.html#HengeveldVHMBOH08,https://doi.org/10.1155/2008/381086 +Jyri Virtanen,mCell: Facilitating Mobile Communication of Small Groups.,2008,2008,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2008.html#VirtanenHBHT08,https://doi.org/10.1155/2008/614987 +Lars-Ola Bligård,Developers as Users: Exploring the Experiences of Using a New Theoretical Method for Usability Assessment.,2017,2017,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2017.html#BligardSK17,https://doi.org/10.1155/2017/6131575 +Ananya Jana,Design and Validation of an Attention Model of Web Page Users.,2015,2015,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2015.html#JanaB15,https://doi.org/10.1155/2015/373419 +Tatsuo Motoyoshi,A Mathematical Framework for Interpreting Playing Environments as Media for Information Flow.,2008,2008,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2008.html#MotoyoshiHKSK08,https://doi.org/10.1155/2008/258516 +Paulo Rogério de Almeida Ribeiro,Controlling Assistive Machines in Paralysis Using Brain Waves and Other Biosignals.,2013,2013,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2013.html#RibeiroBWSCVCS13,https://doi.org/10.1155/2013/369425 +Outi Tuisku,Text Entry by Gazing and Smiling.,2013,2013,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2013.html#TuiskuSRVL13,https://doi.org/10.1155/2013/218084 +Petr Sosnin,Means of Question-Answer Interaction for Collaborative Development Activity.,2009,2009,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2009.html#Sosnin09,https://doi.org/10.1155/2009/619405 +Günter Alce,WozARd: A Wizard of Oz Method for Wearable Augmented Reality Interaction - A Pilot Study.,2015,2015,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2015.html#AlceWH15,https://doi.org/10.1155/2015/271231 +Ashley Colley,Extending the Touchscreen Pattern Lock Mechanism with Duplicated and Temporal Codes.,2016,2016,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2016.html#ColleySLKH16,https://doi.org/10.1155/2016/8762892 +Mohd Kamal Othman,An Empirical Study of Visitors' Experience at Kuching Orchid Garden with Mobile Guide Application.,2018,2018,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2018.html#OthmanIAT18,https://doi.org/10.1155/2018/5740520 +Tatsuro Matsubara,Kansei Analysis of the Japanese Residential Garden and Development of a Low-Cost Virtual Reality Kansei Engineering System for Gardens.,2011,2011,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2011.html#MatsubaraINM11,https://doi.org/10.1155/2011/295074 +Jana Appel,Does Humanity Matter? Analyzing the Importance of Social Cues and Perceived Agency of a Computer System for the Emergence of Social Reactions during Human-Computer Interaction.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#AppelPKG12,https://doi.org/10.1155/2012/324694 +Fang You,An Optimized Player Taxonomy Model for Mobile MMORPGs with Millions of Users.,2011,2011,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2011.html#YouLG0ZT11,https://doi.org/10.1155/2011/841069 +Alkinoos Athanasiou,Source Detection and Functional Connectivity of the Sensorimotor Cortex during Actual and Imaginary Limb Movement: A Preliminary Study on the Implementation of eConnectome in Motor Imagery Protocols.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#AthanasiouLKKB12,https://doi.org/10.1155/2012/127627 +Annica Kristoffersson,A Review of Mobile Robotic Telepresence.,2013,2013,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2013.html#KristofferssonCL13,https://doi.org/10.1155/2013/902316 +Yuko Uematsu,Visual Enhancement for Sports Entertainment by Vision-Based Augmented Reality.,2008,2008,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2008.html#UematsuS08,https://doi.org/10.1155/2008/145363 +Bingjun Xie,How Influential Are Mental Models on Interaction Performance? Exploring the Gap between Users' and Designers' Mental Models through a New Quantitative Method.,2017,2017,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2017.html#XieZW17,https://doi.org/10.1155/2017/3683546 +Raheleh Mohammadi,A Combination of Pre- and Postprocessing Techniques to Enhance Self-Paced BCIs.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#MohammadiFC12,https://doi.org/10.1155/2012/185320 +Marco Pasetto,How the Interpretation of Drivers' Behavior in Virtual Environment Can Become a Road Design Tool: A Case Study.,2011,2011,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2011.html#PasettoB11,https://doi.org/10.1155/2011/673585 +David J. Pitman,Collaborative Exploration with a Micro Aerial Vehicle: A Novel Interaction Method for Controlling a MAV with a Hand-Held Device.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#PitmanC12,https://doi.org/10.1155/2012/768180 +Philippe Polet,Human Behaviour Analysis of Barrier Deviations Using a Benefit-Cost-Deficit Model.,2009,2009,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2009.html#PoletVM09,https://doi.org/10.1155/2009/642929 +Andrés A. Calvo,Pointing Devices for Wearable Computers.,2014,2014,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2014.html#CalvoP14,https://doi.org/10.1155/2014/527320 +Matthew J. Pitts,Evaluating User Response to In-Car Haptic Feedback Touchscreens Using the Lane Change Test.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#PittsSWAW12,https://doi.org/10.1155/2012/598739 +Peter Schmutz,Cognitive Load in eCommerce Applications - Measurement and Effects on User Satisfaction.,2009,2009,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2009.html#SchmutzHMO09,https://doi.org/10.1155/2009/121494 +Mathieu Simonnet,Blind Sailors' Spatial Representation Using an On-Board Force Feedback Arm: Two Case Studies.,2013,2013,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2013.html#SimonnetR13,https://doi.org/10.1155/2013/163718 +David Hecht,Stroop Interference and Facilitation Effects in Kinesthetic and Haptic Tasks.,2010,2010,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2010.html#HechtR10,https://doi.org/10.1155/2010/852420 +Emmanuel Maby,"BCI Could Make Old Two-Player Games Even More Fun: A Proof of Concept with ""Connect Four"".",2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#MabyPBSM12,https://doi.org/10.1155/2012/124728 +Pei-Luen Patrick Rau,The Effect of Personality on Online Game Flow Experience and the Eye Blink Rate as an Objective Indicator.,2017,2017,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2017.html#RauTDJC17,https://doi.org/10.1155/2017/4675401 +Ismail Ben Abdallah,Kinect-Based Sliding Mode Control for Lynxmotion Robotic Arm.,2016,2016,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2016.html#AbdallahBR16,https://doi.org/10.1155/2016/7921295 +WeeSan Lee,PaperCAD: A System for Interrogating CAD Drawings Using Small Mobile Computing Devices Combined with Interactive Paper.,2014,2014,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2014.html#LeeS14,https://doi.org/10.1155/2014/908690 +Xu Sun,A Comparison of Field-Based and Lab-Based Experiments to Evaluate User Experience of Personalised Mobile Devices.,2013,2013,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2013.html#SunM13,https://doi.org/10.1155/2013/619767 +Leanne M. Hirshfield,Using Noninvasive Brain Measurement to Explore the Psychological Effects of Computer Malfunctions on Users during Human-Computer Interactions.,2014,2014,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2014.html#HirshfieldBBHFGP14,https://doi.org/10.1155/2014/101038 +Hyowon Lee,Designing Interactive Applications to Support Novel Activities.,2013,2013,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2013.html#LeeAH13,https://doi.org/10.1155/2013/180192 +Margaux Perrin,Objective and Subjective Evaluation of Online Error Correction during P300-Based Spelling.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#PerrinMSBJ12,https://doi.org/10.1155/2012/578295 +Tobias Islinger,A Functional Driver Analyzing Concept.,2011,2011,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2011.html#IslingerKW11,https://doi.org/10.1155/2011/413964 +Yasuhiro Matsuda,Emotional Communication in Finger Braille.,2010,2010,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2010.html#MatsudaSJKAI10,https://doi.org/10.1155/2010/830759 +Adlin Sheeba,User-Centric Design for Mathematical Web Services.,2014,2014,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2014.html#SheebaA14,https://doi.org/10.1155/2014/436980 +Alexiei Dingli,An Intelligent Framework for Website Usability.,2014,2014,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2014.html#DingliC14,https://doi.org/10.1155/2014/479286 +Ulrike Lucke,3D Interactions between Virtual Worlds and Real Life in an E-Learning Community.,2011,2011,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2011.html#LuckeZ11,https://doi.org/10.1155/2011/684202 +Setare Amiri,A Review of Hybrid Brain-Computer Interface Systems.,2013,2013,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2013.html#AmiriFA13,https://doi.org/10.1155/2013/187024 +Javier A. Bargas-Avila,Working towards Usable Forms on the World Wide Web: Optimizing Date Entry Input Fields.,2011,2011,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2011.html#Bargas-AvilaBTRO11a,https://doi.org/10.1155/2011/202701 +Joan De Boeck,Improved Haptic Linear Lines for Better Movement Accuracy in Upper Limb Rehabilitation.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#BoeckVNC12,https://doi.org/10.1155/2012/162868 +Lumpapun Punchoojit,Usability Studies on Mobile User Interface Design Patterns: A Systematic Literature Review.,2017,2017,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2017.html#PunchoojitH17,https://doi.org/10.1155/2017/6787504 +Ho Seok Ahn,Designing of a Personality Based Emotional Decision Model for Generating Various Emotional Behavior of Social Robots.,2014,2014,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2014.html#Ahn14,https://doi.org/10.1155/2014/630808 +Pei-Luen Patrick Rau,Effects of a Social Robot's Autonomy and Group Orientation on Human Decision-Making.,2013,2013,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2013.html#RauLL13,https://doi.org/10.1155/2013/263721 +Eva Tuominen,Proactive Agents to Assist Multimodal Explorative Learning of Astronomical Phenomena.,2008,2008,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2008.html#TuominenKHRP08,https://doi.org/10.1155/2008/387076 +Mohammed Moshiul Hoque,A Proactive Approach of Robotic Framework for Making Eye Contact with Humans.,2014,2014,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2014.html#HoqueKK14,https://doi.org/10.1155/2014/694046 +Günter Alce,UbiCompass: An IoT Interaction Concept.,2018,2018,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2018.html#AlceEHOSW18,https://doi.org/10.1155/2018/5781363 +Junji Watanabe,Length and Roughness Perception in a Moving-Plateau Touch Display.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#WatanabeGA12,https://doi.org/10.1155/2012/764629 +Mei Si,Should I Stop Thinking About It: A Computational Exploration of Reappraisal Based Emotion Regulation.,2015,2015,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2015.html#Si15,https://doi.org/10.1155/2015/856726 +Pablo Moreno-Ger,Usability Testing for Serious Games: Making Informed Design Decisions with User Data.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#Moreno-GerTHL12,https://doi.org/10.1155/2012/369637 +Dror David Lev,Is Learning in Low Immersive Environments Carried over to High Immersive Environments?,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#LevR12,https://doi.org/10.1155/2012/521521 +Ahamed AlTaboli,Investigating Effects of Screen Layout Elements on Interface and Screen Design Aesthetics.,2011,2011,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2011.html#AlTaboliL11,https://doi.org/10.1155/2011/659758 +Maiju Vuolle,Identifying Usability and Productivity Dimensions for Measuring the Success of Mobile Business Services.,2008,2008,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2008.html#VuolleAKVW08,https://doi.org/10.1155/2008/680159 +Simon Cleveland,Orchestrating End-User Perspectives in the Software Release Process: An Integrated Release Management Framework.,2014,2014,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2014.html#ClevelandE14,https://doi.org/10.1155/2014/805307 +Alexander Astaras,Towards Brain-Computer Interface Control of a 6-Degree-of-Freedom Robotic Arm Using Dry EEG Electrodes.,2013,2013,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2013.html#AstarasMAG13,https://doi.org/10.1155/2013/641074 +Bineet Kaur,Lower Order Krawtchouk Moment-Based Feature-Set for Hand Gesture Recognition.,2016,2016,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2016.html#KaurJ16,https://doi.org/10.1155/2016/6727806 +Kirsten Ellis,Exploring Sensor Gloves for Teaching Children Sign Language.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#EllisB12,https://doi.org/10.1155/2012/210507 +Jens Teichert,Advancing Large Interactive Surfaces for Use in the Real World.,2010,2010,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2010.html#TeichertHWSFKM10,https://doi.org/10.1155/2010/657937 +Haipeng Mi,RoboTable: An Infrastructure for Intuitive Interaction with Mobile Robots in a Mixed-Reality Environment.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#MiKFS12,https://doi.org/10.1155/2012/301608 +Adrian David Cheok,Interactive Play and Learning for Children.,2008,2008,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2008.html#CheokIOFM08,https://doi.org/10.1155/2008/954013 +Mathieu Simonnet,Accuracy and Coordination of Spatial Frames of Reference during the Exploration of Virtual Maps: Interest for Orientation and Mobility of Blind People?,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#SimonnetV12,https://doi.org/10.1155/2012/835246 +Tuomo Kujala,Measuring Distraction at the Levels of Tactical and Strategic Control: The Limits of Capacity-Based Measures for Revealing Unsafe Visual Sampling Models.,2011,2011,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2011.html#KujalaS11,https://doi.org/10.1155/2011/594353 +Tuula Nousiainen,Exploring Children's Requirements for Game-Based Learning Environments.,2008,2008,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2008.html#NousiainenK08,https://doi.org/10.1155/2008/284056 +Hwayeon Kong,Effects of Human Connection through Social Drones and Perceived Safety.,2018,2018,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2018.html#KongBLPR18,https://doi.org/10.1155/2018/9280581 +Mikko Pyykkönen,Designing Tangible User Interfaces for NFC Phones.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#PyykkonenRASCS12,https://doi.org/10.1155/2012/575463 +Andreas Riener,Subliminal Communication in Human-Computer Interaction.,2011,2011,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2011.html#RienerKSR11,https://doi.org/10.1155/2011/156028 +Dilip Swaminathan,A Dynamic Bayesian Approach to Computational Laban Shape Quality Analysis.,2009,2009,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2009.html#SwaminathanTMRJICQSP09,https://doi.org/10.1155/2009/362651 +Mei Si,Encoding Theory of Mind in Character Design for Pedagogical Interactive Narrative.,2014,2014,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2014.html#SiM14,https://doi.org/10.1155/2014/386928 +Sergio Canazza,CaRo 2.0: An Interactive System for Expressive Music Rendering.,2015,2015,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2015.html#CanazzaPR15,https://doi.org/10.1155/2015/850474 +Camilla Grane,Haptic Addition to a Visual Menu Selection Interface Controlled by an In-Vehicle Rotary Device.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#GraneB12,https://doi.org/10.1155/2012/787469 +Javier A. Bargas-Avila,Working towards Usable Forms on the Worldwide Web: Optimizing Multiple Selection Interface Elements.,2011,2011,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2011.html#Bargas-AvilaBTRO11,https://doi.org/10.1155/2011/347171 +Jani Lylykangas,Vibrotactile Stimulation as an Instructor for Mimicry-Based Physical Exercise.,2015,2015,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2015.html#LylykangasHSRML15,https://doi.org/10.1155/2015/953794 +Lamia Alam,A Text-Based Chat System Embodied with an Expressive Agent.,2017,2017,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2017.html#AlamH17,https://doi.org/10.1155/2017/8962762 +Hamid Hrimech,How 3D Interaction Metaphors Affect User Experience in Collaborative Virtual Environment.,2011,2011,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2011.html#HrimechAM11,https://doi.org/10.1155/2011/172318 +Helma van Rijn,The Puzzling Life of Autistic Toddlers: Design Guidelines from the LINKX Project.,2008,2008,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2008.html#RijnS08,https://doi.org/10.1155/2008/639435 +Chutisant Kerdvibulvech,Guitarist Fingertip Tracking by Integrating a Bayesian Classifier into Particle Filters.,2008,2008,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2008.html#KerdvibulvechS08,https://doi.org/10.1155/2008/384749 +Alena Neviarouskaya,EmoHeart: Conveying Emotions in Second Life Based on Affect Sensing from Text.,2010,2010,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2010.html#NeviarouskayaPI10,https://doi.org/10.1155/2010/209801 +Daniel Telaar,A Large-Scale Quantitative Survey of the German Geocaching Community in 2007.,2014,2014,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2014.html#TelaarKS14,https://doi.org/10.1155/2014/257815 +Ko-Hsun Huang,Static and Dynamic User Portraits.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#HuangDC12,https://doi.org/10.1155/2012/123725 +Christos L. Papadelis,Using Brain Waves to Control Computers and Machines.,2013,2013,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2013.html#PapadelisBPSB13,https://doi.org/10.1155/2013/802063 +HyeSuk Kim,Dynamic Arm Gesture Recognition Using Spherical Angle Features and Hidden Markov Models.,2015,2015,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2015.html#KimK15,https://doi.org/10.1155/2015/785349 +Agnes Jacob,Developing a Child Friendly Text-to-Speech System.,2008,2008,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2008.html#JacobM08,https://doi.org/10.1155/2008/597971 +Marc Schröder,The SEMAINE API: Towards a Standards-Based Framework for Building Emotion-Oriented Systems.,2010,2010,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2010.html#Schroder10,https://doi.org/10.1155/2010/319406 +Thilo Hinterberger,The Sensorium: A Multimodal Neurofeedback Environment.,2011,2011,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2011.html#Hinterberger11,https://doi.org/10.1155/2011/724204 +Annamaria Goy,An Integrated Support to Collaborative Semantic Annotation.,2017,2017,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2017.html#GoyMPPRS17,https://doi.org/10.1155/2017/7219098 +Adrian David Cheok,BlogWall: Social and Cultural Interaction for Children.,2008,2008,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2008.html#CheokFWMSBTCA08,https://doi.org/10.1155/2008/341615 +René Riedl,Computer Breakdown as a Stress Factor during Task Completion under Time Pressure: Identifying Gender Differences Based on Skin Conductance.,2013,2013,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2013.html#RiedlKAJ13,https://doi.org/10.1155/2013/420169 +Hazel Morton,Interactive Language Learning through Speech-Enabled Virtual Scenarios.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#MortonGJ12,https://doi.org/10.1155/2012/389523 +Satoshi Suzuki,Development of Estimating Equation of Machine Operational Skill by Utilizing Eye Movement Measurement and Analysis of Stress and Fatigue.,2013,2013,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2013.html#SuzukiYK13,https://doi.org/10.1155/2013/515164 +Pierre Chalfoun,Subliminal Cues While Teaching: HCI Technique for Enhanced Learning.,2011,2011,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2011.html#ChalfounF11,https://doi.org/10.1155/2011/968753 +Tariq Zaman,Designing Digital Solutions for Preserving Penan Sign Language: A Reflective Study.,2016,2016,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2016.html#ZamanYJ16,https://doi.org/10.1155/2016/4174795 +Michael Rohs,Sensing-Based Interaction for Information Navigation on Handheld Displays.,2008,2008,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2008.html#RohsE08,https://doi.org/10.1155/2008/450385 +Haiyue Yuan,Analysis of User Requirements in Interactive 3D Video Systems.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#YuanCK12,https://doi.org/10.1155/2012/343197 +Mirja Ilves,Heart Rate Responses to Synthesized Affective Spoken Words.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#IlvesS12,https://doi.org/10.1155/2012/158487 +Mats Liljedahl,Testing Two Tools for Multimodal Navigation.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#LiljedahlLDPSA12,https://doi.org/10.1155/2012/251384 +Junichi Akita,CyARM: Haptic Sensing Device for Spatial Localization on Basis of Exploration by Arms.,2009,2009,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2009.html#AkitaKIOO09,https://doi.org/10.1155/2009/901707 +V. Javier Traver,On Compiler Error Messages: What They Say and What They Mean.,2010,2010,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2010.html#Traver10,https://doi.org/10.1155/2010/602570 +Shin'ichi Konomi,Supporting Collaborative Privacy-Observant Information Sharing Using RFID-Tagged Objects.,2009,2009,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2009.html#KonomiN09,https://doi.org/10.1155/2009/713516 +Vero Vanden Abeele,The Extended Likeability Framework: A Theoretical Framework for and a Practical Case of Designing Likeable Media Applications for Preschoolers.,2008,2008,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2008.html#AbeeleZ08,https://doi.org/10.1155/2008/719291 +Chad Tossell,Getting Real: A Naturalistic Methodology for Using Smartphones to Collect Mediated Communications.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#TossellKSRZ12,https://doi.org/10.1155/2012/815972 +Hideaki Uchiyama,AR Supporting System for Pool Games Using a Camera-Mounted Handheld Display.,2008,2008,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2008.html#UchiyamaS08,https://doi.org/10.1155/2008/357270 +Andrey Esakia,Large Display Interaction via Multiple Acceleration Curves and Multifinger Pointer Control.,2014,2014,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2014.html#EsakiaEN14,https://doi.org/10.1155/2014/691507 +Asbjørn Følstad,Online User Feedback in Early Phases of the Design Process: Lessons Learnt from Four Design Cases.,2010,2010,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2010.html#FolstadK10,https://doi.org/10.1155/2010/956918 +Christian Rogers,Capturing the Perceived Phantom Limb through Virtual Reality.,2016,2016,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2016.html#RogersLHABQ16,https://doi.org/10.1155/2016/8608972 +Gabriel Alves Vasiljevic Mendes,A Case Study of MasterMind Chess: Comparing Mouse/Keyboard Interaction with Kinect-Based Gestural Interface.,2016,2016,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2016.html#MendesMM16,https://doi.org/10.1155/2016/4602471 +Melissa E. DeRosier,Zoo U: A Stealth Approach to Social Skills Assessment in Schools.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#DeRosierCS12,https://doi.org/10.1155/2012/654791 +S. M. Mizanoor Rahman,Improving Interactions between a Power-Assist Robot System and Its Human User in Horizontal Transfer of Objects Using a Novel Adaptive Control Method.,2012,2012,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2012.html#RahmanI12,https://doi.org/10.1155/2012/745216 +Anwar Saeed,Frame-Based Facial Expression Recognition Using Geometrical Features.,2014,2014,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2014.html#SaeedANE14,https://doi.org/10.1155/2014/408953 +Imene Jraidi,A Hierarchical Probabilistic Framework for Recognizing Learners' Interaction Experience Trends and Emotions.,2014,2014,Adv. Human-Computer Interaction,,db/journals/ahci/ahci2014.html#JraidiCF14,https://doi.org/10.1155/2014/632630 +Claudio M. Rocco Sanseverino,Deterministic network interdiction optimization via an evolutionary approach.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#SanseverinoR09,https://doi.org/10.1016/j.ress.2008.06.008 +Lusine Mkrtchyan,Bayesian belief networks for human reliability analysis: A review of applications and gaps.,2015,139,Rel. Eng. and Sys. Safety,,db/journals/ress/ress139.html#MkrtchyanPD15,https://doi.org/10.1016/j.ress.2015.02.006 +Shridhar Yamijala,Statistical models for the analysis of water distribution system pipe break data.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#YamijalaGB09,https://doi.org/10.1016/j.ress.2008.03.011 +Márcio das Chagas Moura,A Multi-Objective Genetic Algorithm for determining efficient Risk-Based Inspection programs.,2015,133,Rel. Eng. and Sys. Safety,,db/journals/ress/ress133.html#MouraLDSP15,https://doi.org/10.1016/j.ress.2014.09.018 +Babak Abbasi,A neural network applied to estimate Burr XII distribution parameters.,2010,95,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress95.html#AbbasiHC10,https://doi.org/10.1016/j.ress.2010.02.001 +Mahmood Shafiee,On optimal upgrade level for used products under given cost structures.,2011,96,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress96.html#ShafieeFC11,https://doi.org/10.1016/j.ress.2010.07.008 +Olivier P. Le Maître,PC analysis of stochastic differential equations driven by Wiener noise.,2015,135,Rel. Eng. and Sys. Safety,,db/journals/ress/ress135.html#MaitreK15,https://doi.org/10.1016/j.ress.2014.11.002 +Renyan Jiang,Impact of quality variations on product reliability.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#JiangM09,https://doi.org/10.1016/j.ress.2008.05.009 +Paolo A. Bragatto,"The management of mechanical integrity inspections at small-sized ""Seveso"" facilities.",2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#BragattoPA09,https://doi.org/10.1016/j.ress.2008.04.005 +Takao Adachi,Serviceability of earthquake-damaged water systems: Effects of electrical power availability and power backup systems on system vulnerability.,2008,93,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress93.html#AdachiE08,https://doi.org/10.1016/j.ress.2006.10.014 +Enrique F. Castillo,Computing failure probabilities. Applications to reliability analysis.,2002,77,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress77.html#CastilloFM02,https://doi.org/10.1016/S0951-8320(02)00037-6 +Chia-Ling Huang,A particle-based simplified swarm optimization algorithm for reliability redundancy allocation problems.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#Huang15,https://doi.org/10.1016/j.ress.2015.06.002 +Roberto Mínguez,Reliability and decomposition techniques to solve certain class of stochastic programming problems.,2011,96,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress96.html#MinguezCG11,https://doi.org/10.1016/j.ress.2010.09.011 +Luca Campioni,Biased Monte Carlo optimization: the basic approach.,2005,87,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress87.html#CampioniSV05,https://doi.org/10.1016/j.ress.2004.06.008 +H. Veland,Risk communication in the light of different risk perspectives.,2013,110,Rel. Eng. and Sys. Safety,,db/journals/ress/ress110.html#VelandA13,https://doi.org/10.1016/j.ress.2012.09.007 +Yao Cheng,Reliability modeling of mixtures of one-shot units under thermal cyclic stresses.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#ChengE17,https://doi.org/10.1016/j.ress.2017.05.018 +Haiyang Yu,Reliability optimization of a redundant system with failure dependencies.,2007,92,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress92.html#YuCCY07,https://doi.org/10.1016/j.ress.2006.09.015 +Christophe Simon,Hybrid computation of uncertainty in reliability analysis with p-box and evidential networks.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#SimonB17,https://doi.org/10.1016/j.ress.2017.04.015 +Enrico Zio,Identifying groups of critical edges in a realistic electrical network by multi-objective genetic algorithms.,2012,99,Rel. Eng. and Sys. Safety,,db/journals/ress/ress99.html#ZioGS12,https://doi.org/10.1016/j.ress.2011.11.008 +Jinhua Mi,Reliability assessment of complex electromechanical systems under epistemic uncertainty.,2016,152,Rel. Eng. and Sys. Safety,,db/journals/ress/ress152.html#MiLYPH16,https://doi.org/10.1016/j.ress.2016.02.003 +Kilyoo Kim,A study on importance measures and a quantification algorithm in a fire PRA model.,2009,94,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress94.html#KimH09,https://doi.org/10.1016/j.ress.2008.11.002 +Reza Ahmadi,Maintenance planning for a deteriorating production process.,2017,159,Rel. Eng. and Sys. Safety,,db/journals/ress/ress159.html#AhmadiF17,https://doi.org/10.1016/j.ress.2016.11.001 +Maxim S. Finkelstein,A shock process with a non-cumulative damage.,2001,71,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress71.html#FinkelsteinZ01,https://doi.org/10.1016/S0951-8320(00)00065-X +Alberto Regattieri,Estimating reliability characteristics in the presence of censored data: A case study in a light commercial vehicle manufacturing system.,2010,95,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress95.html#RegattieriMB10,https://doi.org/10.1016/j.ress.2010.05.001 +Terje Aven,Whose uncertainty assessments (probability distributions) does a risk assessment report: the analysts' or the experts'?,2011,96,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress96.html#AvenG11,https://doi.org/10.1016/j.ress.2011.05.001 +Xiaolei Fang,An adaptive functional regression-based prognostic model for applications with missing data.,2015,133,Rel. Eng. and Sys. Safety,,db/journals/ress/ress133.html#FangZG15,https://doi.org/10.1016/j.ress.2014.08.013 +Dongjin Lee,A nonparametric Bayesian network approach to assessing system reliability at early design stages.,2018,171,Rel. Eng. and Sys. Safety,,db/journals/ress/ress171.html#LeeP18,https://doi.org/10.1016/j.ress.2017.11.009 +Diane Villanueva,Accounting for future redesign to balance performance and development costs.,2014,124,Rel. Eng. and Sys. Safety,,db/journals/ress/ress124.html#VillanuevaHS14,https://doi.org/10.1016/j.ress.2013.11.013 +Christine Louise Berner,Strengthening quantitative risk assessments by systematic treatment of uncertain assumptions.,2016,151,Rel. Eng. and Sys. Safety,,db/journals/ress/ress151.html#BernerF16,https://doi.org/10.1016/j.ress.2015.10.009 +Christine M. Anderson-Cook,Quantifying reliability uncertainty from catastrophic and margin defects: A proof of concept.,2011,96,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress96.html#Anderson-CookCHLRW11,https://doi.org/10.1016/j.ress.2010.10.006 +Y.-T. (Justin) Wu,Variable screening and ranking using sampling-based sensitivity measures.,2006,91,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress91.html#WuM06,https://doi.org/10.1016/j.ress.2005.05.004 +Jean-Francois Castet,Single versus mixture Weibull distributions for nonparametric satellite reliability.,2010,95,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress95.html#CastetS10,https://doi.org/10.1016/j.ress.2009.10.001 +Bin Liu 0025,A value-based preventive maintenance policy for multi-component system with continuously degrading components.,2014,132,Rel. Eng. and Sys. Safety,,db/journals/ress/ress132.html#LiuXXK14,https://doi.org/10.1016/j.ress.2014.06.012 +Claudio M. Rocco Sanseverino,Solving advanced network reliability problems by means of cellular automata and Monte Carlo sampling.,2005,89,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress89.html#SanseverinoZ05,https://doi.org/10.1016/j.ress.2004.08.025 +Gregory Levitin,Reliability optimization for weighted voting system.,2001,71,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress71.html#LevitinL01,https://doi.org/10.1016/S0951-8320(00)00089-2 +Kader Ba,Joint optimization of preventive maintenance and spare parts inventory for an optimal production plan with consideration of CO2 emission.,2016,149,Rel. Eng. and Sys. Safety,,db/journals/ress/ress149.html#BaDRE16,https://doi.org/10.1016/j.ress.2016.01.006 +Yuan-Shun Dai,Optimal resource allocation on grid systems for maximizing service reliability using a genetic algorithm.,2006,91,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress91.html#DaiW06,https://doi.org/10.1016/j.ress.2005.11.008 +Ben J. M. Ale,Accidents in the construction industry in the Netherlands: An analysis of accident reports using Storybuilder.,2008,93,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress93.html#AleBBDGHMOPW08,https://doi.org/10.1016/j.ress.2007.09.004 +John Quigley,Estimating rate of occurrence of rare events with empirical bayes: A railway application.,2007,92,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress92.html#QuigleyBW07,https://doi.org/10.1016/j.ress.2006.02.007 +Yefim Haim Michlin,Test duration in choice of helicopter maintenance policy.,2004,86,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress86.html#MichlinM04,https://doi.org/10.1016/j.ress.2004.01.006 +Jussi K. Vaurio,Modelling and quantification of dependent repeatable human errors in system analysis and risk assessment.,2001,71,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress71.html#Vaurio01,https://doi.org/10.1016/S0951-8320(00)00098-3 +Jose Emmanuel Ramirez-Marquez,Optimal protection of general source-sink networks via evolutionary techniques.,2009,94,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress94.html#Ramirez-MarquezSL09,https://doi.org/10.1016/j.ress.2009.05.002 +Chin-Chun Wu,Optimal burn-in time and warranty length under fully renewing combination free replacement and pro-rata warranty.,2007,92,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress92.html#WuCH07,https://doi.org/10.1016/j.ress.2006.05.017 +Andrija Volkanovski,Wind generation impact on electricity generation adequacy and nuclear safety.,2017,158,Rel. Eng. and Sys. Safety,,db/journals/ress/ress158.html#Volkanovski17,https://doi.org/10.1016/j.ress.2016.10.003 +Min Ouyang,Review on modeling and simulation of interdependent critical infrastructure systems.,2014,121,Rel. Eng. and Sys. Safety,,db/journals/ress/ress121.html#Ouyang14,https://doi.org/10.1016/j.ress.2013.06.040 +Haining Meng,Modeling and optimizing periodically inspected software rejuvenation policy based on geometric sequences.,2015,133,Rel. Eng. and Sys. Safety,,db/journals/ress/ress133.html#MengLH15,https://doi.org/10.1016/j.ress.2014.09.007 +Lasse B. Andersen,The financial crisis in an operational risk management context - A review of causes and influencing factors.,2012,105,Rel. Eng. and Sys. Safety,,db/journals/ress/ress105.html#AndersenHMNT12,https://doi.org/10.1016/j.ress.2011.09.005 +Xin Wang,Aggregate discounted warranty cost forecasting considering the failed-but-not-reported events.,2017,168,Rel. Eng. and Sys. Safety,,db/journals/ress/ress168.html#WangXYT17,https://doi.org/10.1016/j.ress.2017.04.009 +Marie-Elisabeth Paté-Cornell,Probabilistic risk analysis for the NASA space shuttle: a brief history and current work.,2001,74,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress74.html#Pate-CornellD01,https://doi.org/10.1016/S0951-8320(01)00081-3 +Yun Hyung Chung,A model-based framework for the analysis of team communication in nuclear power plants.,2009,94,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress94.html#ChungYM09,https://doi.org/10.1016/j.ress.2008.11.010 +Gregory Levitin,Optimal allocation of elements in a linear multi-state sliding window system.,2002,76,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress76.html#Levitin02b,https://doi.org/10.1016/S0951-8320(02)00014-5 +Robert E. Melchers,On the ALARP approach to risk management.,2001,71,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress71.html#Melchers01,https://doi.org/10.1016/S0951-8320(00)00096-X +Nicolas Duflot,A min cut-set-wise truncation procedure for importance measures computation in probabilistic safety assessment.,2009,94,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress94.html#DuflotBDV09,https://doi.org/10.1016/j.ress.2009.05.015 +Mohsen Naderpour,A safety-critical decision support system evaluation using situation awareness and workload measures.,2016,150,Rel. Eng. and Sys. Safety,,db/journals/ress/ress150.html#NaderpourLZ16,https://doi.org/10.1016/j.ress.2016.01.024 +Danqing Wu,Model validation and calibration based on component functions of model output.,2015,140,Rel. Eng. and Sys. Safety,,db/journals/ress/ress140.html#WuLWC15,https://doi.org/10.1016/j.ress.2015.03.024 +Xiaojun Zhou,A preventive maintenance model for leased equipment subject to internal degradation and external shock damage.,2016,154,Rel. Eng. and Sys. Safety,,db/journals/ress/ress154.html#ZhouWLX16,https://doi.org/10.1016/j.ress.2016.05.005 +Mark O'Halloran,Safety engineering with COTS components.,2017,160,Rel. Eng. and Sys. Safety,,db/journals/ress/ress160.html#OHalloranHR17,https://doi.org/10.1016/j.ress.2016.11.016 +Serkan Eryilmaz,An algorithmic approach for the dynamic reliability analysis of non-repairable multi-state weighted k-out-of-n: G system.,2014,131,Rel. Eng. and Sys. Safety,,db/journals/ress/ress131.html#EryilmazB14,https://doi.org/10.1016/j.ress.2014.06.017 +Marcello Braglia,Virtual pooled inventories for equipment-intensive industries. An implementation in a paper district.,2013,112,Rel. Eng. and Sys. Safety,,db/journals/ress/ress112.html#BragliaF13,https://doi.org/10.1016/j.ress.2012.11.010 +R. Jiang,A tradeoff BX life and its applications.,2013,113,Rel. Eng. and Sys. Safety,,db/journals/ress/ress113.html#Jiang13,https://doi.org/10.1016/j.ress.2012.12.010 +Magnus Moglia,Strong exploration of a cast iron pipe failure model.,2008,93,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress93.html#MogliaDB08,https://doi.org/10.1016/j.ress.2007.03.033 +L. F. Zhang,Bias correction for the least squares estimator of Weibull shape parameter with complete and censored data.,2006,91,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress91.html#ZhangXT06,https://doi.org/10.1016/j.ress.2005.09.010 +Roy Cerqueti,Risk measures on networks and expected utility.,2016,155,Rel. Eng. and Sys. Safety,,db/journals/ress/ress155.html#CerquetiL16,https://doi.org/10.1016/j.ress.2016.04.017 +Mark S. Jarzemba,A parameter tree approach to estimating system sensitivities to parameter sets.,2000,67,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress67.html#JarzembaS00,https://doi.org/10.1016/S0951-8320(99)00047-2 +Marko Cepin,Analysis of truncation limit in probabilistic safety assessment.,2005,87,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress87.html#Cepin05,https://doi.org/10.1016/j.ress.2004.06.009 +Daniel E. Salazar Aponte,Optimization of constrained multiple-objective reliability problems using evolutionary algorithms.,2006,91,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress91.html#SalazarSG06,https://doi.org/10.1016/j.ress.2005.11.040 +Dimitri V. Val,Probabilistic evaluation of initiation time of chloride-induced corrosion.,2008,93,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress93.html#ValT08,https://doi.org/10.1016/j.ress.2006.12.010 +Ozgur Yeniay,Using dual response surfaces to reduce variability in launch vehicle design: A case study.,2006,91,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress91.html#YeniayUL06,https://doi.org/10.1016/j.ress.2005.02.007 +Gregory Levitin,Reliability evaluation for acyclic consecutively connected networks with multistate elements.,2001,73,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress73.html#Levitin01b,https://doi.org/10.1016/S0951-8320(01)00040-0 +Attila Csenki,On continuous lifetime distributions with polynomial failure rate with an application in reliability.,2011,96,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress96.html#Csenki11,https://doi.org/10.1016/j.ress.2011.06.008 +Serkan Eryilmaz,A reliability model for a three-state degraded system having random degradation rates.,2016,156,Rel. Eng. and Sys. Safety,,db/journals/ress/ress156.html#Eryilmaz16,https://doi.org/10.1016/j.ress.2016.07.011 +Jan Erik Vinnem,Analysis of root causes of major hazard precursors (hydrocarbon leaks) in the Norwegian offshore petroleum industry.,2010,95,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress95.html#VinnemHKS10,https://doi.org/10.1016/j.ress.2010.06.020 +Wei-Chang Yeh,A path-based algorithm for evaluating the k-out-of-n flow network reliability.,2005,87,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress87.html#Yeh05,https://doi.org/10.1016/j.ress.2004.04.015 +Song Xu,Influence of step complexity and presentation style on step performance of computerized emergency operating procedures.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#XuLSLZS09,https://doi.org/10.1016/j.ress.2008.07.001 +Guanjun Wang,Reliability evaluation of multi-state series systems with performance sharing.,2018,173,Rel. Eng. and Sys. Safety,,db/journals/ress/ress173.html#WangDZ18,https://doi.org/10.1016/j.ress.2018.01.012 +Seung-Ie Yang,Service life prediction of structural systems using lifetime functions with emphasis on bridges.,2004,86,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress86.html#YangFN04,https://doi.org/10.1016/j.ress.2003.12.009 +Antonis Targoutzidis,A Monte Carlo simulation for the assessment of Bayesian updating in dynamic systems.,2012,100,Rel. Eng. and Sys. Safety,,db/journals/ress/ress100.html#Targoutzidis12,https://doi.org/10.1016/j.ress.2011.12.020 +Aref Majdara,Development and application of a Risk Assessment Tool.,2008,93,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress93.html#MajdaraN08,https://doi.org/10.1016/j.ress.2007.09.007 +Claire Palmer,An automated system for batch hazard and operability studies.,2009,94,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress94.html#PalmerC09,https://doi.org/10.1016/j.ress.2009.01.001 +Fabien Belmonte,Interdisciplinary safety analysis of complex socio-technological systems based on the functional resonance accident model: An application to railway trafficsupervision.,2011,96,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress96.html#BelmonteSHC11,https://doi.org/10.1016/j.ress.2010.09.006 +Frank Ortmeier,Safety analysis of the height control system for the Elbtunnel.,2003,81,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress81.html#OrtmeierSTRHT03,https://doi.org/10.1016/S0951-8320(03)00090-5 +Souvik Chakraborty,A hybrid approach for global sensitivity analysis.,2017,158,Rel. Eng. and Sys. Safety,,db/journals/ress/ress158.html#ChakrabortyC17,https://doi.org/10.1016/j.ress.2016.10.013 +Alla Dvorzhak,Probabilistic risk assessment from potential exposures to the public applied for innovative nuclear installations.,2016,152,Rel. Eng. and Sys. Safety,,db/journals/ress/ress152.html#DvorzhakMR16,https://doi.org/10.1016/j.ress.2016.03.008 +Jussi K. Vaurio,Unavailability equations for k-out-of-n systems.,2011,96,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress96.html#Vaurio11a,https://doi.org/10.1016/j.ress.2010.08.004 +Gregory Levitin,Multi-state systems with selective propagated failures and imperfect individual and group protections.,2011,96,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress96.html#LevitinXBD11,https://doi.org/10.1016/j.ress.2011.08.002 +Xiujie Zhao,Utilizing experimental degradation data for warranty cost optimization under imperfect repair.,2018,177,Rel. Eng. and Sys. Safety,,db/journals/ress/ress177.html#ZhaoHX18,https://doi.org/10.1016/j.ress.2018.05.002 +D. N. P. Murthy,Investment in new product reliability.,2009,94,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress94.html#MurthyRV09,https://doi.org/10.1016/j.ress.2009.02.031 +Claudio M. Rocco Sanseverino,A support vector machine integrated system for the classification of operation anomalies in nuclear components and systems.,2007,92,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress92.html#SanseverinoZ07,https://doi.org/10.1016/j.ress.2006.02.003 +Tony Rosqvist,On the validation of risk analysis - A commentary.,2010,95,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress95.html#Rosqvist10,https://doi.org/10.1016/j.ress.2010.06.002 +Mahdi Tavangar,On conditional residual lifetime and conditional inactivity time of k-out-of-n systems.,2015,144,Rel. Eng. and Sys. Safety,,db/journals/ress/ress144.html#TavangarB15,https://doi.org/10.1016/j.ress.2015.06.020 +Karen B. Marais,Analysis of trends in aviation maintenance risk: An empirical approach.,2012,106,Rel. Eng. and Sys. Safety,,db/journals/ress/ress106.html#MaraisR12,https://doi.org/10.1016/j.ress.2012.06.003 +Kamiar Jamali,Use of risk measures in design and licensing of future reactors.,2010,95,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress95.html#Jamali10,https://doi.org/10.1016/j.ress.2010.04.001 +Christine Louise Berner,Comparing and integrating the NUSAP notational scheme with an uncertainty based risk perspective.,2016,156,Rel. Eng. and Sys. Safety,,db/journals/ress/ress156.html#BernerF16a,https://doi.org/10.1016/j.ress.2016.08.001 +H. S. J. Rashid,Reliability model for helicopter main gearbox lubrication system using influence diagrams.,2015,139,Rel. Eng. and Sys. Safety,,db/journals/ress/ress139.html#RashidPMKHKR15,https://doi.org/10.1016/j.ress.2015.01.021 +Bram de Jonge,Optimum maintenance strategy under uncertainty in the lifetime distribution.,2015,133,Rel. Eng. and Sys. Safety,,db/journals/ress/ress133.html#JongeKTT15,https://doi.org/10.1016/j.ress.2014.09.013 +Jacek Skorupski,The risk of an air accident as a result of a serious incident of the hybrid type.,2015,140,Rel. Eng. and Sys. Safety,,db/journals/ress/ress140.html#Skorupski15,https://doi.org/10.1016/j.ress.2015.03.031 +Nicolás J. Scenna,Some aspects of fault diagnosis in batch processes.,2000,70,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress70.html#Scenna00,https://doi.org/10.1016/S0951-8320(00)00049-1 +María Luz Gámiz Pérez,Regression analysis of the structure function for reliability evaluation of continuous-state system.,2010,95,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress95.html#GamizM10,https://doi.org/10.1016/j.ress.2009.09.004 +Marie Boiteau,The AltaRica data-flow language in use: modeling of production availability of a multi-state system.,2006,91,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress91.html#BoiteauDRS06,https://doi.org/10.1016/j.ress.2004.12.004 +Daniya Zamalieva,Online scenario labeling using a hidden Markov model for assessment of nuclear plant state.,2013,110,Rel. Eng. and Sys. Safety,,db/journals/ress/ress110.html#ZamalievaYA13,https://doi.org/10.1016/j.ress.2012.09.002 +Tao Chen,Reusable rocket engine preventive maintenance scheduling using genetic algorithm.,2013,114,Rel. Eng. and Sys. Safety,,db/journals/ress/ress114.html#ChenLJC13,https://doi.org/10.1016/j.ress.2012.12.020 +Gopika Vinod,A comprehensive framework for evaluation of piping reliability due to erosion-corrosion for risk-informed inservice inspection.,2003,82,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress82.html#VinodBKVS03,https://doi.org/10.1016/S0951-8320(03)00163-7 +Sascha Bosse,Multi-objective optimization of IT service availability and costs.,2016,147,Rel. Eng. and Sys. Safety,,db/journals/ress/ress147.html#BosseST16,https://doi.org/10.1016/j.ress.2015.11.004 +Lixuan Lu,Configuration determination for k-out-of-n partially redundant systems.,2008,93,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress93.html#LuL08,https://doi.org/10.1016/j.ress.2008.02.009 +Corwin L. Atwood,Bayesian estimation of unavailability.,2004,84,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress84.html#AtwoodE04,https://doi.org/10.1016/j.ress.2003.11.010 +Pavel Praks,Probabilistic modelling of security of supply in gas networks and evaluation of new infrastructure.,2015,144,Rel. Eng. and Sys. Safety,,db/journals/ress/ress144.html#PraksKM15,https://doi.org/10.1016/j.ress.2015.08.005 +Corwin L. Atwood,Consequences of mapping data or parameters in Bayesian common-cause analysis.,2013,118,Rel. Eng. and Sys. Safety,,db/journals/ress/ress118.html#Atwood13,https://doi.org/10.1016/j.ress.2013.04.015 +Kim-Anh Nguyen,Multi-level predictive maintenance for multi-component systems.,2015,144,Rel. Eng. and Sys. Safety,,db/journals/ress/ress144.html#NguyenDG15,https://doi.org/10.1016/j.ress.2015.07.017 +Michael D. Shields,The generalization of Latin hypercube sampling.,2016,148,Rel. Eng. and Sys. Safety,,db/journals/ress/ress148.html#ShieldsZ16,https://doi.org/10.1016/j.ress.2015.12.002 +Yan-Fu Li,Availability modeling and optimization of dynamic multi-state series-parallel systems with random reconfiguration.,2014,127,Rel. Eng. and Sys. Safety,,db/journals/ress/ress127.html#LiP14,https://doi.org/10.1016/j.ress.2014.03.005 +Hui Jin 0003,New PFH-formulas for k-out-of-n: F-systems.,2013,111,Rel. Eng. and Sys. Safety,,db/journals/ress/ress111.html#JinLR13,https://doi.org/10.1016/j.ress.2012.11.007 +F. Taillandier,Risk-based investment trade-off related to building facility management.,2009,94,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress94.html#TaillandierSB09,https://doi.org/10.1016/j.ress.2008.09.005 +Jussi K. Vaurio,Importances of components and events in non-coherent systems and risk models.,2016,147,Rel. Eng. and Sys. Safety,,db/journals/ress/ress147.html#Vaurio16,https://doi.org/10.1016/j.ress.2015.11.007 +Heidi A. Taboada,Practical solutions for multi-objective optimization: An application to system reliability design problems.,2007,92,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress92.html#TaboadaBCW07,https://doi.org/10.1016/j.ress.2006.04.014 +Jinkyun Park,A study on the systematic framework to develop effective diagnosis procedures of nuclear power plants.,2004,84,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress84.html#ParkJ04,https://doi.org/10.1016/j.ress.2003.12.004 +P. K. Marhavilas,A combined usage of stochastic and quantitative risk assessment methods in the worksites: Application on an electric power provider.,2012,97,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress97.html#MarhavilasK12,https://doi.org/10.1016/j.ress.2011.09.006 +Curtis Smith,Key attributes of the SAPHIRE risk and reliability analysis software for risk-informed probabilistic applications.,2008,93,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress93.html#SmithKKW08,https://doi.org/10.1016/j.ress.2007.08.005 +Tunc Aldemir,Probabilistic risk assessment modeling of digital instrumentation and control systems using two dynamic methodologies.,2010,95,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress95.html#AldemirGMKMBYEMSA10,https://doi.org/10.1016/j.ress.2010.04.011 +Rony Ghostine,Variable delays and message losses: Influence on the reliability of a control loop.,2011,96,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress96.html#GhostineTA11,https://doi.org/10.1016/j.ress.2010.08.003 +Bernhard Reer,Sample size bounding and context ranking as approaches to the HRA data problem.,2004,83,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress83.html#Reer04,https://doi.org/10.1016/j.ress.2003.09.016 +Najmeh Alikar,Application of the NSGA-II algorithm to a multi-period inventory-redundancy allocation problem in a series-parallel system.,2017,160,Rel. Eng. and Sys. Safety,,db/journals/ress/ress160.html#AlikarMGTO17,https://doi.org/10.1016/j.ress.2016.10.023 +R. Jiang,A simple approximation for the renewal function with an increasing failure rate.,2010,95,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress95.html#Jiang10a,https://doi.org/10.1016/j.ress.2010.04.007 +Luca Podofillini,Risk-informed optimisation of railway tracks inspection and maintenance procedures.,2006,91,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress91.html#PodofilliniZV06,https://doi.org/10.1016/j.ress.2004.11.009 +Thomas A. Mazzuchi,A paired comparison experiment for gathering expert judgment for an aircraft wiring risk assessment.,2008,93,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress93.html#MazzuchiLB08,https://doi.org/10.1016/j.ress.2007.03.011 +Sinuhé Martinez-Martinez,Two neural network based strategies for the detection of a total instantaneous blockage of a sodium-cooled fast reactor.,2015,137,Rel. Eng. and Sys. Safety,,db/journals/ress/ress137.html#Martinez-Martinez15,https://doi.org/10.1016/j.ress.2014.12.003 +Xuejing Zhao,Condition-based inspection/replacement policies for non-monotone deteriorating systems with environmental covariates.,2010,95,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress95.html#ZhaoFBB10,https://doi.org/10.1016/j.ress.2010.04.005 +Richard Scott Weil,A methodology for the prioritization of operating experience in nuclear power plants.,2001,74,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress74.html#WeilA01,https://doi.org/10.1016/S0951-8320(01)00064-3 +Daniele Codetta Raiteri,Generalized Continuous Time Bayesian Networks as a modelling and analysis formalism for dependable systems.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#RaiteriP17,https://doi.org/10.1016/j.ress.2017.04.014 +Jan Erik Vinnem,Risk analysis and risk acceptance criteria in the planning processes of hazardous facilities - A case of an LNG plant in an urban area.,2010,95,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress95.html#Vinnem10,https://doi.org/10.1016/j.ress.2010.02.005 +Juan Carlos Lam,Stress tests for a road network using fragility functions and functional capacity loss functions.,2018,173,Rel. Eng. and Sys. Safety,,db/journals/ress/ress173.html#LamAHHGEDGH18,https://doi.org/10.1016/j.ress.2018.01.015 +Stian Ruud,Risk-based rules for crane safety systems.,2008,93,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress93.html#RuudM08,https://doi.org/10.1016/j.ress.2007.08.004 +K. S. Wang,Modeling the bathtub shape hazard rate function in terms of reliability.,2002,75,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress75.html#WangHL02,https://doi.org/10.1016/S0951-8320(01)00124-7 +Terje Aven,Safety regulations: Implications of the new risk perspectives.,2016,149,Rel. Eng. and Sys. Safety,,db/journals/ress/ress149.html#AvenY16,https://doi.org/10.1016/j.ress.2016.01.007 +Siegfried Eisinger,Modeling of uncertainties in reliability centered maintenance - a probabilistic approach.,2001,71,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress71.html#EisingerR01,https://doi.org/10.1016/S0951-8320(00)00088-0 +Manuel Chiachio,A new algorithm for prognostics using Subset Simulation.,2017,168,Rel. Eng. and Sys. Safety,,db/journals/ress/ress168.html#ChiachioCSGA17,https://doi.org/10.1016/j.ress.2017.05.042 +Amirhassan Kermanshah,A geographical and multi-criteria vulnerability assessment of transportation networks against extreme earthquakes.,2016,153,Rel. Eng. and Sys. Safety,,db/journals/ress/ress153.html#KermanshahD16,https://doi.org/10.1016/j.ress.2016.04.007 +D. V. Raje,Availability assessment of a two-unit stand-by pumping system.,2000,68,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress68.html#RajeOWD00,https://doi.org/10.1016/S0951-8320(00)00015-6 +J. N. Sørensen,Safety culture: a survey of the state-of-the-art.,2002,76,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress76.html#Sorensen02,https://doi.org/10.1016/S0951-8320(02)00005-4 +Qingan Qiu,Optimal allocation of units in sequential probability series systems.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#QiuCGY18,https://doi.org/10.1016/j.ress.2017.09.011 +Gregory Levitin,Redundancy optimization for series-parallel phased mission systems exposed to random shocks.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#LevitinFD17,https://doi.org/10.1016/j.ress.2017.07.006 +F. K. Wang,A new model with bathtub-shaped failure rate using an additive Burr XII distribution.,2000,70,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress70.html#Wang00,https://doi.org/10.1016/S0951-8320(00)00066-1 +Gang Niu,Prognostic control-enhanced maintenance optimization for multi-component systems.,2017,168,Rel. Eng. and Sys. Safety,,db/journals/ress/ress168.html#NiuJ17,https://doi.org/10.1016/j.ress.2017.04.011 +Davide Cerotti,Markovian agents models for wireless sensor networks deployed in environmental protection.,2014,130,Rel. Eng. and Sys. Safety,,db/journals/ress/ress130.html#CerottiGB14,https://doi.org/10.1016/j.ress.2014.05.010 +Per Hokstad,A risk influence model applied to North Sea helicopter transport.,2001,74,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress74.html#HokstadJS01,https://doi.org/10.1016/S0951-8320(01)00083-7 +R. Jiang,Optimization of alarm threshold and sequential inspection scheme.,2010,95,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress95.html#Jiang10,https://doi.org/10.1016/j.ress.2009.09.012 +Stavros Ntalampiras,A fault diagnosis system for interdependent critical infrastructures based on HMMs.,2015,138,Rel. Eng. and Sys. Safety,,db/journals/ress/ress138.html#NtalampirasSG15,https://doi.org/10.1016/j.ress.2015.01.024 +Seo Ryong Koo,Software design specification and analysis technique (SDSAT) for the development of safety-critical systems based on a programmable logic controller (PLC).,2006,91,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress91.html#KooS06,https://doi.org/10.1016/j.ress.2005.05.006 +Joseph H. Saleh,Highlights from the early (and pre-) history of reliability engineering.,2006,91,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress91.html#SalehM06,https://doi.org/10.1016/j.ress.2005.01.003 +Ramin Moghaddass,A parameter estimation method for a condition-monitored device under multi-state deterioration.,2012,106,Rel. Eng. and Sys. Safety,,db/journals/ress/ress106.html#MoghaddassZ12,https://doi.org/10.1016/j.ress.2012.05.004 +Hongda Gao,Reliability analysis for a Wiener degradation process model under changing failure thresholds.,2018,171,Rel. Eng. and Sys. Safety,,db/journals/ress/ress171.html#GaoCK18,https://doi.org/10.1016/j.ress.2017.11.006 +Yushi Fujita,Failures without errors: quantification of context in HRA.,2004,83,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress83.html#FujitaH04,https://doi.org/10.1016/j.ress.2003.09.006 +Gianpaolo Pulcini,Modeling the failure data of a repairable equipment with bathtub type failure intensity.,2001,71,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress71.html#Pulcini01,https://doi.org/10.1016/S0951-8320(00)00101-0 +Ching-Chang Kuo,Comparative analysis of standby systems with unreliable server and switching failure.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#KuoK16,https://doi.org/10.1016/j.ress.2015.09.001 +Geoffrey R. Hosack,Prior elicitation for Bayesian generalised linear models with application to risk control option assessment.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#HosackHB17,https://doi.org/10.1016/j.ress.2017.06.011 +Mark G. Stewart,Security risks and probabilistic risk assessment of glazing subject to explosive blast loading.,2008,93,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress93.html#StewartN08,https://doi.org/10.1016/j.ress.2007.03.007 +Yeu-Shiang Huang,Estimation of future breakdowns to determine optimal warranty policies for products with deterioration.,2004,84,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress84.html#HuangZ04,https://doi.org/10.1016/j.ress.2003.10.014 +Panagiotis Tsopelas,Performability indicators for the traffic analysis of wide area networks.,2003,82,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress82.html#TsopelasP03,https://doi.org/10.1016/S0951-8320(03)00031-0 +Marita Hietikko,Comparing performance level estimation of safety functions in three distributed structures.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#HietikkoMS15,https://doi.org/10.1016/j.ress.2014.10.024 +Jie Liu,Probability assessments of identified parameters for stochastic structures using point estimation method.,2016,156,Rel. Eng. and Sys. Safety,,db/journals/ress/ress156.html#LiuHXJH16,https://doi.org/10.1016/j.ress.2016.07.021 +Igor Villalta,SEU emulation in industrial SoCs combining microprocessor and FPGA.,2018,170,Rel. Eng. and Sys. Safety,,db/journals/ress/ress170.html#VillaltaBGJL18,https://doi.org/10.1016/j.ress.2017.09.028 +Harold Ascher,"Different insights for improving part and system reliability obtained from exactly same DFOM ""failure numbers"".",2007,92,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress92.html#Ascher07,https://doi.org/10.1016/j.ress.2006.05.003 +Gregory Levitin,Optimizing survivability of multi-state systems with multi-level protection by multi-processor genetic algorithm.,2003,82,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress82.html#LevitinD0P03,https://doi.org/10.1016/S0951-8320(03)00136-4 +Katerina Janurová,A nonparametric approach to medical survival data: Uncertainty in the context of risk in mortality analysis.,2014,125,Rel. Eng. and Sys. Safety,,db/journals/ress/ress125.html#JanurovaB14,https://doi.org/10.1016/j.ress.2013.03.014 +Jussi K. Vaurio,Evaluation and comparison of estimation methods for failure rates and probabilities.,2006,91,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress91.html#VaurioJ06,https://doi.org/10.1016/j.ress.2005.01.001 +A. Mengolini,Safety culture enhancement through the implementation of IAEA guidelines.,2007,92,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress92.html#MengoliniD07,https://doi.org/10.1016/j.ress.2006.01.003 +Seyed Ashkan Zarghami,Integrating entropy theory and cospanning tree technique for redundancy analysis of water distribution networks.,2018,176,Rel. Eng. and Sys. Safety,,db/journals/ress/ress176.html#ZarghamiGS18,https://doi.org/10.1016/j.ress.2018.04.003 +Jacek Malinowski,Node-pair reliability of network systems with small distances between adjacent nodes.,2007,92,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress92.html#Malinowski07,https://doi.org/10.1016/j.ress.2005.12.012 +Ana Debón,Comparing risk of failure models in water supply networks using ROC curves.,2010,95,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress95.html#DebonCCS10,https://doi.org/10.1016/j.ress.2009.07.004 +Attila Csenki,Stochastic demand patterns for Markov service facilities with neutral and active periods.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#Csenki09,https://doi.org/10.1016/j.ress.2008.03.030 +David D. Woods,Four concepts for resilience and the implications for the future of resilience engineering.,2015,141,Rel. Eng. and Sys. Safety,,db/journals/ress/ress141.html#Woods15,https://doi.org/10.1016/j.ress.2015.03.018 +Hui-Chiung Lo,A study of quality management strategy for reused products.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#LoY13,https://doi.org/10.1016/j.ress.2013.05.009 +How-Sing Sii,A fuzzy-logic-based approach to qualitative safety modelling for marine systems.,2001,73,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress73.html#SiiRW01,https://doi.org/10.1016/S0951-8320(01)00023-0 +M. Arnst,Sensitivity analysis of parametric uncertainties and modeling errors in computational-mechanics models by using a generalized probabilistic modeling approach.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#ArnstG17,https://doi.org/10.1016/j.ress.2017.06.007 +Benjamin Lhorente,A model for optimal armature maintenance in electric haul truck wheel motors: a case study.,2004,84,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress84.html#LhorenteLKS04,https://doi.org/10.1016/j.ress.2003.10.016 +Lev V. Utkin,Imprecise inference for warranty contract analysis.,2015,138,Rel. Eng. and Sys. Safety,,db/journals/ress/ress138.html#UtkinCG15,https://doi.org/10.1016/j.ress.2015.01.011 +Frédréric Bourgeois,Stochastic quasi-gradient based optimization algorithms for dynamic reliability applications.,2001,71,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress71.html#BourgeoisL01,https://doi.org/10.1016/S0951-8320(00)00084-3 +Hui Xiao,Optimal loading and protection of multi-state systems considering performance sharing mechanism.,2016,149,Rel. Eng. and Sys. Safety,,db/journals/ress/ress149.html#XiaoSDP16,https://doi.org/10.1016/j.ress.2015.12.001 +Younju Oh,Software safety analysis of function block diagrams using fault trees.,2005,88,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress88.html#OhYCS05,https://doi.org/10.1016/j.ress.2004.07.019 +Wei-Chang Yeh,An improved algorithm for searching all minimal cuts in modified networks.,2008,93,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress93.html#Yeh08a,https://doi.org/10.1016/j.ress.2007.05.003 +Gero Walter,Condition-based maintenance for complex systems based on current component status and Bayesian updating of component reliability.,2017,168,Rel. Eng. and Sys. Safety,,db/journals/ress/ress168.html#WalterF17,https://doi.org/10.1016/j.ress.2017.06.015 +Gregory Levitin,Service reliability and performance in grid system with star topology.,2007,92,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress92.html#LevitinD07,https://doi.org/10.1016/j.ress.2005.11.005 +H. M. Jagtman,Cell broadcast trials in The Netherlands: Using mobile phone technology for citizens' alarming.,2010,95,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress95.html#Jagtman10,https://doi.org/10.1016/j.ress.2009.07.005 +Jochen Janssens,A decision model to allocate protective safety barriers and mitigate domino effects.,2015,143,Rel. Eng. and Sys. Safety,,db/journals/ress/ress143.html#JanssensTRS15,https://doi.org/10.1016/j.ress.2015.05.022 +Jonas Johansson,An approach for modelling interdependent infrastructures in the context of vulnerability analysis.,2010,95,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress95.html#JohanssonH10,https://doi.org/10.1016/j.ress.2010.06.010 +Mahir Dursun,Risk based multi criteria decision making for secure image transfer between unmanned air vehicle and ground control station.,2018,178,Rel. Eng. and Sys. Safety,,db/journals/ress/ress178.html#DursunC18,https://doi.org/10.1016/j.ress.2018.05.011 +Xian Zhao,A multi-state shock model with mutative failure patterns.,2018,178,Rel. Eng. and Sys. Safety,,db/journals/ress/ress178.html#ZhaoWWC18,https://doi.org/10.1016/j.ress.2018.05.014 +Mohammadreza Rajabalinejad,Dynamic bounds coupled with Monte Carlo simulations.,2011,96,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress96.html#RajabalinejadMGV11,https://doi.org/10.1016/j.ress.2010.07.006 +Suk Joo Bae,Degradation models and implied lifetime distributions.,2007,92,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress92.html#BaeKK07,https://doi.org/10.1016/j.ress.2006.02.002 +Enrico Zio,Randomized flow model and centrality measure for electrical power transmission network analysis.,2010,95,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress95.html#ZioP10,https://doi.org/10.1016/j.ress.2009.11.008 +Michael S. Hamada,Optimizing the product-based availability of a buffered industrial process.,2006,91,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress91.html#HamadaMBK06,https://doi.org/10.1016/j.ress.2005.11.059 +Terje Aven,How some types of risk assessments can support resilience analysis and management.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#Aven17a,https://doi.org/10.1016/j.ress.2017.07.005 +Lev V. Utkin,A second-order uncertainty model for calculation of the interval system reliability.,2003,79,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress79.html#Utkin03,https://doi.org/10.1016/S0951-8320(02)00242-9 +Genserik L. L. Reniers,A multi-attribute Systemic Risk Index for comparing and prioritizing chemical industrial areas.,2012,98,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress98.html#ReniersSD12,https://doi.org/10.1016/j.ress.2011.10.002 +Tahani Coolen-Maturi,Nonparametric predictive pairwise comparison with competing risks.,2014,132,Rel. Eng. and Sys. Safety,,db/journals/ress/ress132.html#Coolen-Maturi14,https://doi.org/10.1016/j.ress.2014.07.014 +Yochan Kim,A quantitative measure of fitness for duty and work processes for human reliability analysis.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#KimPJ17a,https://doi.org/10.1016/j.ress.2017.07.012 +Woo Sik Jung,A fast BDD algorithm for large coherent fault trees analysis.,2004,83,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress83.html#JungHH04,https://doi.org/10.1016/j.ress.2003.10.009 +Yiliu Liu,Proof-testing strategies induced by dangerous detected failures of safety-instrumented systems.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#LiuR16,https://doi.org/10.1016/j.ress.2015.06.016 +Curtis Smith,Special issue of PSAM12 Conference selected papers.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#SmithP16,https://doi.org/10.1016/j.ress.2015.09.015 +Engin Aktas,Cost and safety optimization of structural design specifications.,2001,73,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress73.html#AktasMG01,https://doi.org/10.1016/S0951-8320(01)00046-1 +Luca Podofillini,Designing a risk-informed balanced system by genetic algorithms: Comparison of different balancing criteria.,2008,93,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress93.html#PodofilliniZ08,https://doi.org/10.1016/j.ress.2008.03.015 +Maxim S. Finkelstein,A note on some aging properties of the accelerated life model.,2001,71,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress71.html#Finkelstein01,https://doi.org/10.1016/S0951-8320(00)00074-0 +Tarek Haddad,Fracture prediction of cardiac lead medical devices using Bayesian networks.,2014,123,Rel. Eng. and Sys. Safety,,db/journals/ress/ress123.html#HaddadHC14,https://doi.org/10.1016/j.ress.2013.11.005 +E. Doménech,Quantification of risk to company's incomes due to failures in food quality.,2010,95,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress95.html#DomenechEM10,https://doi.org/10.1016/j.ress.2010.06.009 +Mike O'Leary,The British Airways human factors reporting programme.,2002,75,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress75.html#OLeary02,https://doi.org/10.1016/S0951-8320(01)00098-9 +Genn Saji,A new approach to reactor safety goals in the framework of INES.,2003,80,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress80.html#Saji03,https://doi.org/10.1016/S0951-8320(03)00025-5 +Tieling Zhang,Availability and reliability of k-out-of-(M+N): G warm standby systems.,2006,91,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress91.html#ZhangXH06,https://doi.org/10.1016/j.ress.2005.02.003 +Richard Melnyk,A third-party casualty risk model for unmanned aircraft system operations.,2014,124,Rel. Eng. and Sys. Safety,,db/journals/ress/ress124.html#MelnykSVJ14,https://doi.org/10.1016/j.ress.2013.11.016 +Cheng-Ta Yeh,Optimal redundancy allocation to maximize multi-state computer network reliability subject to correlated failures.,2017,166,Rel. Eng. and Sys. Safety,,db/journals/ress/ress166.html#YehF17,https://doi.org/10.1016/j.ress.2016.08.026 +Bram de Jonge,Cost benefits of postponing time-based maintenance under lifetime distribution uncertainty.,2015,140,Rel. Eng. and Sys. Safety,,db/journals/ress/ress140.html#JongeDR15,https://doi.org/10.1016/j.ress.2015.03.027 +Hui Jin 0003,Reliability performance of safety instrumented systems: A common approach for both low- and high-demand mode of operation.,2011,96,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress96.html#JinLR11,https://doi.org/10.1016/j.ress.2010.11.007 +Christopher James Garrett,Automated hazard analysis of digital control systems.,2002,77,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress77.html#GarrettA02,https://doi.org/10.1016/S0951-8320(02)00007-8 +Charles Tong,Self-validated variance-based methods for sensitivity analysis of model outputs.,2010,95,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress95.html#Tong10,https://doi.org/10.1016/j.ress.2009.10.003 +Sergei S. Kucherenko,Different numerical estimators for main effect global sensitivity indices.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#KucherenkoS17,https://doi.org/10.1016/j.ress.2017.04.003 +Dennis M. Woo,The role of theory and political-organizational factors in risk management: a reply to Hrudey and Hrudey.,2003,82,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress82.html#WooV03a,https://doi.org/10.1016/j.ress.2003.08.004 +Chara Ch. Mitropoulou,Life-cycle cost assessment of optimally designed reinforced concrete buildings under seismic actions.,2011,96,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress96.html#MitropoulouLP11,https://doi.org/10.1016/j.ress.2011.04.002 +Qiongli Wu,An efficient computational method for global sensitivity analysis and its application to tree growth modelling.,2012,107,Rel. Eng. and Sys. Safety,,db/journals/ress/ress107.html#WuCM12,https://doi.org/10.1016/j.ress.2011.07.001 +Marzio Marseguerra,Designing optimal degradation tests via multi-objective genetic algorithms.,2003,79,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress79.html#MarseguerraZC03,https://doi.org/10.1016/S0951-8320(02)00198-9 +Gregory Levitin,Cold-standby sequencing optimization considering mission cost.,2013,118,Rel. Eng. and Sys. Safety,,db/journals/ress/ress118.html#LevitinXD13,https://doi.org/10.1016/j.ress.2013.04.010 +Xian-Xun Yuan,A Bayesian approach to modeling and predicting pitting flaws in steam generator tubes.,2009,94,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress94.html#YuanMP09,https://doi.org/10.1016/j.ress.2009.06.001 +M. L. Kansal,An improved algorithm for connectivity analysis of distribution networks.,2007,92,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress92.html#KansalD07,https://doi.org/10.1016/j.ress.2006.07.009 +Jan L. Rouvroye,Comparing safety analysis techniques.,2002,75,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress75.html#RouvroyeB02,https://doi.org/10.1016/S0951-8320(01)00116-8 +Liangli He,Failure-mode importance measures in structural system with multiple failure modes and its estimation using copula.,2018,174,Rel. Eng. and Sys. Safety,,db/journals/ress/ress174.html#HeLL18,https://doi.org/10.1016/j.ress.2018.02.016 +S. M. Godoy,Assessment of impact distances for particulate matter dispersion: A stochastic approach.,2009,94,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress94.html#GodoyMCS09,https://doi.org/10.1016/j.ress.2009.04.006 +Roberto Filippini,A modeling framework for the resilience analysis of networked systems-of-systems based on functional dependencies.,2014,125,Rel. Eng. and Sys. Safety,,db/journals/ress/ress125.html#FilippiniS14,https://doi.org/10.1016/j.ress.2013.09.010 +Pankaj Sharma,A simulation based optimization approach for spare parts forecasting and selective maintenance.,2017,168,Rel. Eng. and Sys. Safety,,db/journals/ress/ress168.html#SharmaKY17,https://doi.org/10.1016/j.ress.2017.05.013 +Juan Chiachio,Condition-based prediction of time-dependent reliability in composites.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#ChiachioCSSG15,https://doi.org/10.1016/j.ress.2015.04.018 +Yeonsub Jung,A model for computerized procedures based on flowcharts and success logic trees.,2004,83,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress83.html#JungSK04,https://doi.org/10.1016/j.ress.2003.10.012 +Branka Subotic,Recovery from equipment failures in ATC: Determination of contextual factors.,2007,92,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress92.html#SuboticOS07,https://doi.org/10.1016/j.ress.2006.04.023 +Y. Dong,Time-variant fatigue reliability assessment of welded joints based on the PHI2 and response surface methods.,2018,177,Rel. Eng. and Sys. Safety,,db/journals/ress/ress177.html#DongTS18,https://doi.org/10.1016/j.ress.2018.05.005 +Jiandao Zhu,A dynamic discretization method for reliability inference in Dynamic Bayesian Networks.,2015,138,Rel. Eng. and Sys. Safety,,db/journals/ress/ress138.html#ZhuC15,https://doi.org/10.1016/j.ress.2015.01.017 +Yuo-Tern Tsai,Optimizing preventive maintenance for mechanical components using genetic algorithms.,2001,74,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress74.html#TsaiWT01,https://doi.org/10.1016/S0951-8320(01)00065-5 +Reza Dashti,Reliability based asset assessment in electrical distribution systems.,2013,112,Rel. Eng. and Sys. Safety,,db/journals/ress/ress112.html#DashtiY13,https://doi.org/10.1016/j.ress.2012.11.019 +Srikanta Mishra,Application of classification trees in the sensitivity analysis of probabilistic model results.,2003,79,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress79.html#MishraDR03,https://doi.org/10.1016/S0951-8320(02)00222-3 +Chengcheng Xu,Quantitative risk assessment of freeway crash casualty using high-resolution traffic data.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#XuWLWB18,https://doi.org/10.1016/j.ress.2017.09.005 +Heping Li,A condition-based maintenance policy for multi-component systems with Lévy copulas dependence.,2016,149,Rel. Eng. and Sys. Safety,,db/journals/ress/ress149.html#LiDD16,https://doi.org/10.1016/j.ress.2015.12.011 +J. Brian Hall,An analytical framework for reliability growth of one-shot systems.,2008,93,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress93.html#HallM08,https://doi.org/10.1016/j.ress.2007.11.003 +Ming Xu,The effect of parameter uncertainty on achieved safety integrity of safety system.,2012,99,Rel. Eng. and Sys. Safety,,db/journals/ress/ress99.html#XuCY12,https://doi.org/10.1016/j.ress.2011.10.015 +Jinkyun Park,The appropriateness of the systematic framework to develop diagnosis procedures of nuclear power plants - an experimental verification.,2006,91,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress91.html#ParkJ06,https://doi.org/10.1016/j.ress.2004.11.019 +Shi-Ning Ju,Fault-tree structures of override control systems.,2003,81,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress81.html#JuCC03,https://doi.org/10.1016/S0951-8320(03)00086-3 +Chyh-Ming Lai,Two-stage simplified swarm optimization for the redundancy allocation problem in a multi-state bridge system.,2016,156,Rel. Eng. and Sys. Safety,,db/journals/ress/ress156.html#LaiY16,https://doi.org/10.1016/j.ress.2016.07.025 +C. Andrieu-Renaud,The PHI2 method: a way to compute time-variant reliability.,2004,84,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress84.html#Andrieu-RenaudSL04,https://doi.org/10.1016/j.ress.2003.10.005 +Om Prakash Yadav,Reliability demonstration test planning: A three dimensional consideration.,2006,91,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress91.html#YadavSG06,https://doi.org/10.1016/j.ress.2005.09.001 +John Rushby,Using model checking to help discover mode confusions and other automation surprises.,2002,75,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress75.html#Rushby02,https://doi.org/10.1016/S0951-8320(01)00092-8 +Juan E. Muriel-Villegas,Analysis of transportation networks subject to natural hazards - Insights from a Colombian case.,2016,152,Rel. Eng. and Sys. Safety,,db/journals/ress/ress152.html#Muriel-Villegas16,https://doi.org/10.1016/j.ress.2016.03.006 +Nacef Tazi,How combined performance and propagation of failure dependencies affect the reliability of a MSS.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#TaziCB18,https://doi.org/10.1016/j.ress.2017.10.002 +Bo Sun,A novel lifetime prediction for integrated LED lamps by electronic-thermal simulation.,2017,163,Rel. Eng. and Sys. Safety,,db/journals/ress/ress163.html#SunFYFQDZ17,https://doi.org/10.1016/j.ress.2017.01.017 +Lei Wang 0019,An analysis of flight Quick Access Recorder (QAR) data and its applications in preventing landing incidents.,2014,127,Rel. Eng. and Sys. Safety,,db/journals/ress/ress127.html#WangWS14,https://doi.org/10.1016/j.ress.2014.03.013 +Mohammad Modarres,Advances in multi-unit nuclear power plant probabilistic risk assessment.,2017,157,Rel. Eng. and Sys. Safety,,db/journals/ress/ress157.html#ModarresZM17,https://doi.org/10.1016/j.ress.2016.08.005 +Emmanuel Remy,An example of integrated approach to technical and economic optimization of maintenance.,2013,116,Rel. Eng. and Sys. Safety,,db/journals/ress/ress116.html#RemyCDDG13,https://doi.org/10.1016/j.ress.2013.02.001 +Paolo Trucco,A probabilistic cognitive simulator for HRA studies (PROCOS).,2007,92,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress92.html#TruccoL07,https://doi.org/10.1016/j.ress.2006.06.003 +Mike ten Wolde,Optimizing inspection intervals - Reliability and availability in terms of a cost model: A case study on railway carriers.,2013,114,Rel. Eng. and Sys. Safety,,db/journals/ress/ress114.html#WoldeG13,https://doi.org/10.1016/j.ress.2012.12.013 +Maxim S. Finkelstein,The expected time lost due to an extra risk.,2003,82,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress82.html#Finkelstein03,https://doi.org/10.1016/S0951-8320(03)00138-8 +Jinkyun Park,The use of a social network analysis technique to investigate the characteristics of crew communications in nuclear power plants - A feasibility study.,2011,96,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress96.html#Park11,https://doi.org/10.1016/j.ress.2011.05.003 +Laurent Doyen 0002,Classes of imperfect repair models based on reduction of failure intensity or virtual age.,2004,84,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress84.html#DoyenG04,https://doi.org/10.1016/S0951-8320(03)00173-X +Carl Malings,Value-of-information in spatio-temporal systems: Sensor placement and scheduling.,2018,172,Rel. Eng. and Sys. Safety,,db/journals/ress/ress172.html#MalingsP18,https://doi.org/10.1016/j.ress.2017.11.019 +P. A. Molenaar,Why do quality and reliability feedback loops not always work in practice: a case study.,2002,75,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress75.html#MolenaarHBB02,https://doi.org/10.1016/S0951-8320(01)00117-X +Ozge Doguc,An automated method for estimating reliability of grid systems using Bayesian networks.,2012,104,Rel. Eng. and Sys. Safety,,db/journals/ress/ress104.html#DogucR12,https://doi.org/10.1016/j.ress.2012.03.016 +Guanquan Chu,Study on probability distribution of fire scenarios in risk assessment to emergency evacuation.,2012,99,Rel. Eng. and Sys. Safety,,db/journals/ress/ress99.html#ChuW12,https://doi.org/10.1016/j.ress.2011.10.014 +Valia T. Petkova,Designing reliability information flows.,2005,88,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress88.html#PetkovaYIS05,https://doi.org/10.1016/j.ress.2004.07.004 +Jose Emmanuel Ramirez-Marquez,Multi-state component criticality analysis for reliability improvement in multi-state systems.,2007,92,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress92.html#Ramirez-MarquezC07a,https://doi.org/10.1016/j.ress.2006.09.014 +Tom Chen,Maintenance policies with two-dimensional warranty.,2002,77,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress77.html#ChenP02,https://doi.org/10.1016/S0951-8320(02)00031-5 +Dong Ho Park,Cost minimization for periodic maintenance policy of a system subject to slow degradation.,2000,68,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress68.html#ParkJY00,https://doi.org/10.1016/S0951-8320(00)00012-0 +Nabil Nahas,Coupling ant colony and the degraded ceiling algorithm for the redundancy allocation problem of series-parallel systems.,2007,92,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress92.html#NahasNA07,https://doi.org/10.1016/j.ress.2005.12.002 +Rajesh Deoliya,Reliability analysis of a microwave tower for fluctuating mean wind with directional effect.,2000,67,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress67.html#DeoliyaD00,https://doi.org/10.1016/S0951-8320(99)00053-8 +øyvind Berle,Formal Vulnerability Assessment of a maritime transportation system.,2011,96,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress96.html#BerleAR11,https://doi.org/10.1016/j.ress.2010.12.011 +Alberto Pasanisi,Estimation of a quantity of interest in uncertainty analysis: Some help from Bayesian decision theory.,2012,100,Rel. Eng. and Sys. Safety,,db/journals/ress/ress100.html#PasanisiKP12,https://doi.org/10.1016/j.ress.2012.01.001 +Gopika Vinod,Importance measures in ranking piping components for risk informed in-service inspection.,2003,80,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress80.html#VinodKVS03,https://doi.org/10.1016/S0951-8320(02)00270-3 +Tetsushi Yuge,Quantitative analysis of a fault tree with priority AND gates.,2008,93,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress93.html#YugeY08,https://doi.org/10.1016/j.ress.2008.02.016 +Harry F. Martz,Uncertainty in counts and operating time in estimating Poisson occurrence rates.,2003,80,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress80.html#MartzH03,https://doi.org/10.1016/S0951-8320(02)00267-3 +Yuvraj Gajpal,Two efficient heuristics to solve the integrated load distribution and production planning problem.,2015,144,Rel. Eng. and Sys. Safety,,db/journals/ress/ress144.html#GajpalN15,https://doi.org/10.1016/j.ress.2015.06.019 +Gregory Levitin,Reliability and performance of multi-state systems with propagated failures having selective effect.,2010,95,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress95.html#LevitinX10,https://doi.org/10.1016/j.ress.2010.02.003 +Jose Emmanuel Ramirez-Marquez,A heuristic for solving the redundancy allocation problem for multi-state series-parallel systems.,2004,83,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress83.html#Ramirez-MarquezC04,https://doi.org/10.1016/j.ress.2003.10.010 +Ronald L. Iman,Assessing hurricane effects. Part 1. Sensitivity analysis.,2002,78,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress78.html#ImanJS02,https://doi.org/10.1016/S0951-8320(02)00133-3 +Christine Louise Berner,Creating risk management strategies based on uncertain assumptions and aspects from assumption-based planning.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#BernerF17,https://doi.org/10.1016/j.ress.2017.05.009 +Marzio Marseguerra,Variance decomposition-based sensitivity analysis via neural networks.,2003,79,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress79.html#MarseguerraMZC03,https://doi.org/10.1016/S0951-8320(02)00234-X +Gilles Celeux,Designing a Bayesian network for preventive maintenance from expert opinions in a rapid and reliable way.,2006,91,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress91.html#CeleuxCLR06,https://doi.org/10.1016/j.ress.2005.08.007 +R. Jiang,Discrete competing risk model with application to modeling bus-motor failure data.,2010,95,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress95.html#Jiang10b,https://doi.org/10.1016/j.ress.2010.04.009 +Neetu Singla,The Beta Generalized Weibull distribution: Properties and applications.,2012,102,Rel. Eng. and Sys. Safety,,db/journals/ress/ress102.html#SinglaJS12,https://doi.org/10.1016/j.ress.2012.02.003 +Seyed Mohammad Seyedhosseini,Imperfect inspection optimization for a two-component system subject to hidden and two-stage revealed failures over a finite time horizon.,2018,174,Rel. Eng. and Sys. Safety,,db/journals/ress/ress174.html#SeyedhosseiniMS18,https://doi.org/10.1016/j.ress.2018.02.024 +Cornel Bunea,Application of modern reliability database techniques to military system data.,2008,93,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress93.html#BuneaMSC08,https://doi.org/10.1016/j.ress.2006.10.011 +Yang Zhao,Analysis on the diffusion hazards of dynamic leakage of gas pipeline.,2007,92,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress92.html#ZhaoXJ07,https://doi.org/10.1016/j.ress.2005.11.010 +Mingyang Li,A nonparametric Bayesian modeling approach for heterogeneous lifetime data with covariates.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#LiMZ17,https://doi.org/10.1016/j.ress.2017.05.029 +Rakesh Menon,Analyzing textual databases using data mining to enable fast product development processes.,2005,88,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress88.html#MenonLK05,https://doi.org/10.1016/j.ress.2004.07.007 +Qiao Ge,Combining screening and metamodel-based methods: An efficient sequential approach for the sensitivity analysis of model outputs.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#GeCM15,https://doi.org/10.1016/j.ress.2014.08.009 +Rob P. Rechard,Waste package degradation from thermal and chemical processes in performance assessments for the Yucca Mountain disposal system for spent nuclear fuel and high-level radioactive waste.,2014,122,Rel. Eng. and Sys. Safety,,db/journals/ress/ress122.html#RechardLHB14,https://doi.org/10.1016/j.ress.2013.06.027 +Mohammad Modarres,Advanced nuclear power plant regulation using risk-informed and performance-based methods.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#Modarres09,https://doi.org/10.1016/j.ress.2008.02.019 +Marta Maroño Buján,The 'PROCESO' index: a new methodology for the evaluation of operational safety in the chemical industry.,2006,91,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress91.html#BujanLS06,https://doi.org/10.1016/j.ress.2005.01.014 +Lijuan Dai,Risk of collision between service vessels and offshore wind turbines.,2013,109,Rel. Eng. and Sys. Safety,,db/journals/ress/ress109.html#DaiERU13,https://doi.org/10.1016/j.ress.2012.07.008 +N. Padmavathy,Evaluation of mobile ad hoc network reliability using propagation-based link reliability model.,2013,115,Rel. Eng. and Sys. Safety,,db/journals/ress/ress115.html#PadmavathyC13,https://doi.org/10.1016/j.ress.2013.01.008 +Yi-Kuei Lin,Quantifying the impact of correlated failures on system reliability by a simulation approach.,2013,109,Rel. Eng. and Sys. Safety,,db/journals/ress/ress109.html#LinFC13,https://doi.org/10.1016/j.ress.2012.08.008 +Urho Pulkkinen,Bayesian models and ageing indicators for analysing random changes in failure occurrence.,2000,68,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress68.html#PulkkinenS00,https://doi.org/10.1016/S0951-8320(00)00020-X +Seyedmohsen Hosseini,A review of definitions and measures of system resilience.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#HosseiniBR16,https://doi.org/10.1016/j.ress.2015.08.006 +Luis Barberá Martínez,A case study of GAMM (graphical analysis for maintenance management) in the mining industry.,2014,121,Rel. Eng. and Sys. Safety,,db/journals/ress/ress121.html#MartinezMVS14,https://doi.org/10.1016/j.ress.2013.07.017 +Zhixun Wen,A Sequential Kriging reliability analysis method with characteristics of adaptive sampling regions and parallelizability.,2016,153,Rel. Eng. and Sys. Safety,,db/journals/ress/ress153.html#WenPLY16,https://doi.org/10.1016/j.ress.2016.05.002 +Rómulo I. Zequeira,On the inspection policy of a two-component parallel system with failure interaction.,2005,88,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress88.html#ZequeiraB05,https://doi.org/10.1016/j.ress.2004.07.009 +Sebastián Martorell,A tolerance interval based approach to address uncertainty for RAMS+C optimization.,2007,92,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress92.html#MartorellSC07,https://doi.org/10.1016/j.ress.2005.12.013 +Gregory Levitin,Optimal unit grouping in weighted voting systems.,2001,72,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress72.html#Levitin01,https://doi.org/10.1016/S0951-8320(01)00002-3 +Gregory Levitin,Maximizing survivability of vulnerable weighted voting system.,2004,83,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress83.html#Levitin04,https://doi.org/10.1016/j.ress.2003.08.006 +Ho-Gon Lim,A quantitative analysis of a risk impact due to a starting time extension of the emergency diesel generator in optimized power reactor-1000.,2007,92,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress92.html#LimYH07,https://doi.org/10.1016/j.ress.2006.07.004 +Xiaojun Zhou,Preventive maintenance optimization for a multi-component system under changing job shop schedule.,2012,101,Rel. Eng. and Sys. Safety,,db/journals/ress/ress101.html#ZhouLX12,https://doi.org/10.1016/j.ress.2012.01.005 +Z. Sadovský,Random field of initial deflections and strength of thin rectangular plates.,2007,92,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress92.html#SadovskyST07,https://doi.org/10.1016/j.ress.2006.09.026 +Nat Jack,A repair-replace strategy based on usage rate for items sold with a two-dimensional warranty.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#JackIM09,https://doi.org/10.1016/j.ress.2008.06.019 +Enrico Zio,Reliability engineering: Old problems and new challenges.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#Zio09,https://doi.org/10.1016/j.ress.2008.06.002 +Miltos Kyriakidis,The human performance railway operational index - a novel approach to assess human performance for railway operations.,2018,170,Rel. Eng. and Sys. Safety,,db/journals/ress/ress170.html#KyriakidisMO18,https://doi.org/10.1016/j.ress.2017.10.012 +Anatoly Lisnianski,On Birnbaum importance assessment for aging multi-state system under minimal repair by using the Lz-transform method.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#LisnianskiFK15,https://doi.org/10.1016/j.ress.2015.05.006 +Xiaoming Chen,Assessment of human-machine interface design for a Chinese nuclear power plant.,2005,87,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress87.html#ChenZGWNM05,https://doi.org/10.1016/j.ress.2004.03.029 +Kiran Krishna,Hydroxylamine production: will a QRA help you decide?,2003,81,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress81.html#KrishnaWSRBGM03,https://doi.org/10.1016/S0951-8320(03)00115-7 +Dan Maljovec,Analyzing simulation-based PRA data through traditional and topological clustering: A BWR station blackout case study.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#MaljovecLWMBPS16,https://doi.org/10.1016/j.ress.2015.07.001 +Marco Macchi,Introducing buffer inventories in the RBD analysis of process production systems.,2012,104,Rel. Eng. and Sys. Safety,,db/journals/ress/ress104.html#MacchiKGAF12,https://doi.org/10.1016/j.ress.2012.03.015 +Suzan Alaswad,A review on condition-based maintenance optimization models for stochastically deteriorating system.,2017,157,Rel. Eng. and Sys. Safety,,db/journals/ress/ress157.html#AlaswadX17,https://doi.org/10.1016/j.ress.2016.08.009 +Z. Sadovský,Artificial neural network model of the strength of thin rectangular plates with weld induced initial imperfections.,2011,96,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress96.html#SadovskyS11,https://doi.org/10.1016/j.ress.2011.02.010 +Paraic C. Ryan,Reliability assessment of power pole infrastructure incorporating deterioration and network maintenance.,2014,132,Rel. Eng. and Sys. Safety,,db/journals/ress/ress132.html#RyanSSL14,https://doi.org/10.1016/j.ress.2014.07.019 +Rizwan Ahmed,Design of safety-critical systems using the complementarities of success and failure domains with a case study.,2011,96,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress96.html#AhmedKJH11,https://doi.org/10.1016/j.ress.2010.09.008 +Ali Zolghadri,Early warning and prediction of flight parameter abnormalities for improved system safety assessment.,2002,76,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress76.html#Zolghadri02,https://doi.org/10.1016/S0951-8320(01)00137-5 +Tu Duong Le Duy,A practical methodology for modeling and estimation of common cause failure parameters in multi-unit nuclear PSA model.,2018,170,Rel. Eng. and Sys. Safety,,db/journals/ress/ress170.html#DuyV18,https://doi.org/10.1016/j.ress.2017.10.018 +Luca Talarico,MISTRAL: A game-theoretical model to allocate security measures in a multi-modal chemical transportation network with adaptive adversaries.,2015,138,Rel. Eng. and Sys. Safety,,db/journals/ress/ress138.html#TalaricoRSS15,https://doi.org/10.1016/j.ress.2015.01.022 +Liudong Xing,BDD-based reliability evaluation of phased-mission systems with internal/external common-cause failures.,2013,112,Rel. Eng. and Sys. Safety,,db/journals/ress/ress112.html#XingL13,https://doi.org/10.1016/j.ress.2012.12.003 +L. Fjæran Nygaard,On the link between risk perspectives and risk regulation - A comparison between two cases concerning base stations and wireless networks.,2010,95,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress95.html#NygaardA10,https://doi.org/10.1016/j.ress.2010.02.009 +Bo Yang 0011,A generic data-driven software reliability model with model mining technique.,2010,95,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress95.html#YangLXT10,https://doi.org/10.1016/j.ress.2010.02.006 +Robert E. Melchers,Guest editorial.,2001,74,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress74.html#MelchersS01,https://doi.org/10.1016/S0951-8320(01)00103-X +Jose Emmanuel Ramirez-Marquez,All-terminal network reliability optimization via probabilistic solution discovery.,2008,93,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress93.html#Ramirez-MarquezS08,https://doi.org/10.1016/j.ress.2008.01.001 +Tao Ding,A multi-uncertainty-set based two-stage robust optimization to defender-attacker-defender model for power system protection.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#DingYL18,https://doi.org/10.1016/j.ress.2017.08.020 +Lauro J. Martinez,Scenario-informed multiple criteria analysis for prioritizing investments in electricity capacity expansion.,2011,96,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress96.html#MartinezLK11,https://doi.org/10.1016/j.ress.2011.03.007 +Nima Khakzad,On the application of near accident data to risk analysis of major accidents.,2014,126,Rel. Eng. and Sys. Safety,,db/journals/ress/ress126.html#KhakzadKP14,https://doi.org/10.1016/j.ress.2014.01.015 +Paul Nelson,Dynamic reliability via computational solution of generalized state-transition equations for entry-time processes.,2007,92,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress92.html#NelsonW07,https://doi.org/10.1016/j.ress.2006.08.005 +Roger Flage,A comparison between a probability bounds analysis and a subjective probability approach to express epistemic uncertainties in a risk assessment context - A simple illustrative example.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#FlageAB18,https://doi.org/10.1016/j.ress.2017.07.016 +Robert P. Rechard,Assignment of probability distributions for parameters in the 1996 performance assessment for the Waste Isolation Pilot Plant. Part 1: description of process.,2005,88,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress88.html#RechardT05,https://doi.org/10.1016/j.ress.2004.07.011 +Mark P. Kaminskiy,Simple bounds for counting processes with monotone rate of occurrence of failures.,2007,92,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress92.html#Kaminskiy07,https://doi.org/10.1016/j.ress.2006.05.005 +Alberto Porras-Vázquez,A new methodology for facilitating the design of safety-related parts of control systems in machines according to ISO 13849: 2006 standard.,2018,174,Rel. Eng. and Sys. Safety,,db/journals/ress/ress174.html#Porras-VazquezR18,https://doi.org/10.1016/j.ress.2018.02.018 +H. Prieto-Alfonso,Radiation Hardness Assurance for the JEM-EUSO Space Mission.,2015,133,Rel. Eng. and Sys. Safety,,db/journals/ress/ress133.html#Prieto-AlfonsoPCTER15,https://doi.org/10.1016/j.ress.2014.08.014 +Chonggang Xu,Uncertainty and sensitivity analysis for models with correlated parameters.,2008,93,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress93.html#XuG08a,https://doi.org/10.1016/j.ress.2007.06.003 +Mary Ann Lundteigen,Architectural constraints in IEC 61508: Do they have the intended effect?,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#LundteigenR09,https://doi.org/10.1016/j.ress.2008.06.003 +Peter G. Bishop,Deriving a frequentist conservative confidence bound for probability of failure per demand for systems with different operational and test profiles.,2017,158,Rel. Eng. and Sys. Safety,,db/journals/ress/ress158.html#BishopP17,https://doi.org/10.1016/j.ress.2016.08.019 +Makoto Akama,Bayesian analysis for the results of fatigue test using full-scale models to obtain the accurate failure probabilities of the Shinkansen vehicle axle.,2002,75,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress75.html#Akama02,https://doi.org/10.1016/S0951-8320(01)00129-6 +Jussi K. Vaurio,A recursive framework for time-dependent characteristics of tested and maintained standby units with arbitrary distributions for failures and repairs.,2015,138,Rel. Eng. and Sys. Safety,,db/journals/ress/ress138.html#Vaurio15,https://doi.org/10.1016/j.ress.2015.01.027 +Sairaj V. Dhople,A Stochastic Hybrid Systems framework for analysis of Markov reward models.,2014,123,Rel. Eng. and Sys. Safety,,db/journals/ress/ress123.html#DhopleDD14,https://doi.org/10.1016/j.ress.2013.10.011 +John Crocker,Age-related maintenance versus reliability centred maintenance: a case study on aero-engines.,2000,67,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress67.html#CrockerK00,https://doi.org/10.1016/S0951-8320(99)00052-6 +Maxim Finkelstein,On the optimal degree of imperfect repair.,2015,138,Rel. Eng. and Sys. Safety,,db/journals/ress/ress138.html#Finkelstein15,https://doi.org/10.1016/j.ress.2015.01.010 +Cai Wen Zhang,Reliability modeling and analysis for a novel design of modular converter system of wind turbines.,2013,111,Rel. Eng. and Sys. Safety,,db/journals/ress/ress111.html#ZhangZCJ13,https://doi.org/10.1016/j.ress.2012.10.005 +Zhao Wei,A dynamic particle filter-support vector regression method for reliability prediction.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#WeiTZZ13,https://doi.org/10.1016/j.ress.2013.05.021 +Ruoxue Zhang,Bayesian methodology for reliability model acceptance.,2003,80,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress80.html#ZhangM03,https://doi.org/10.1016/S0951-8320(02)00269-7 +Yan Liu 0029,Time-dependent reliability assessment of ship structures under progressive and shock deteriorations.,2018,173,Rel. Eng. and Sys. Safety,,db/journals/ress/ress173.html#LiuF18,https://doi.org/10.1016/j.ress.2018.01.009 +Gopika Vinod,Optimisation of ISI interval using genetic algorithms for risk informed in-service inspection.,2004,86,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress86.html#VinodKVS04,https://doi.org/10.1016/j.ress.2004.02.004 +Eric Heatwole,Grit-mediated frictional ignition of a polymer-bonded explosive during oblique impacts: Probability calculations for safety engineering.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#HeatwolePHD15,https://doi.org/10.1016/j.ress.2014.09.023 +Enrico Zio,Evaluating maintenance policies by quantitative modeling and analysis.,2013,109,Rel. Eng. and Sys. Safety,,db/journals/ress/ress109.html#ZioC13,https://doi.org/10.1016/j.ress.2012.08.002 +Amandine Marrel,Advanced surrogate model and sensitivity analysis methods for sodium fast reactor accident assessment.,2015,138,Rel. Eng. and Sys. Safety,,db/journals/ress/ress138.html#MarrelML15,https://doi.org/10.1016/j.ress.2015.01.019 +Sahil Bansal,A subset simulation based approach with modified conditional sampling and estimator for loss exceedance curve computation.,2018,177,Rel. Eng. and Sys. Safety,,db/journals/ress/ress177.html#BansalC18,https://doi.org/10.1016/j.ress.2018.05.003 +Micaela Demichela,Dot chart analysis as a means to develop a fault tree: application to a catalytic hydrogenation unit.,2002,76,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress76.html#DemichelaP02,https://doi.org/10.1016/S0951-8320(01)00143-0 +Nabil Nahas,Extended great deluge algorithm for the imperfect preventive maintenance optimization of multi-state systems.,2008,93,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress93.html#NahasKAN08,https://doi.org/10.1016/j.ress.2008.01.006 +Enrico Cagno,Risk analysis in plant commissioning: the Multilevel Hazop.,2002,77,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress77.html#CagnoCM02,https://doi.org/10.1016/S0951-8320(02)00064-9 +Alejandro D. Domínguez-García,Reliability evaluation of the power supply of an electrical power net for safety-relevant applications.,2006,91,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress91.html#Dominguez-GarciaKS06,https://doi.org/10.1016/j.ress.2005.03.017 +Jingyu Sheng,A hierarchical coloured Petri net model of fleet maintenance with cannibalisation.,2017,168,Rel. Eng. and Sys. Safety,,db/journals/ress/ress168.html#ShengP17,https://doi.org/10.1016/j.ress.2017.05.043 +Abbas Barabadi,Application of reliability models with covariates in spare part prediction and optimization - A case study.,2014,123,Rel. Eng. and Sys. Safety,,db/journals/ress/ress123.html#BarabadiBM14,https://doi.org/10.1016/j.ress.2013.09.012 +Rakibul Islam,Real time risk analysis of kick detection: Testing and validation.,2017,161,Rel. Eng. and Sys. Safety,,db/journals/ress/ress161.html#IslamKV17,https://doi.org/10.1016/j.ress.2016.12.014 +Khanh T. P. Nguyen,Model selection for degradation modeling and prognosis with health monitoring data.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#NguyenFG18,https://doi.org/10.1016/j.ress.2017.08.004 +Han Seong Son,Development of a safety critical software requirements verification method with combined CPN and PVS: a nuclear power plant protection system application.,2003,80,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress80.html#SonS03,https://doi.org/10.1016/S0951-8320(02)00159-X +Graham B. Wallis,Evaluating the probability that the outputs of a computer code with random inputs will meet a set of evaluation criteria.,2006,91,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress91.html#Wallis06,https://doi.org/10.1016/j.ress.2005.08.005 +Marc Bouissou,A new formalism that combines advantages of fault-trees and Markov models: Boolean logic driven Markov processes.,2003,82,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress82.html#BouissouB03,https://doi.org/10.1016/S0951-8320(03)00143-1 +Jussi K. Vaurio,Importance measures for multi-phase missions.,2011,96,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress96.html#Vaurio11,https://doi.org/10.1016/j.ress.2010.07.002 +Ki Sang Son,An analysis of safety control effectiveness.,2000,68,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress68.html#SonMK00,https://doi.org/10.1016/S0951-8320(00)00010-7 +Michael Galetakis,Production scheduling of a lignite mine under quality and reserves uncertainty.,2011,96,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress96.html#GaletakisRAV11,https://doi.org/10.1016/j.ress.2011.08.005 +Louis J. M. Aslett,Multilevel Monte Carlo for Reliability Theory.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#AslettNV17,https://doi.org/10.1016/j.ress.2017.03.003 +Karl N. Fleming,A risk informed defense-in-depth framework for existing and advanced reactors.,2002,78,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress78.html#FlemingS02,https://doi.org/10.1016/S0951-8320(02)00153-9 +Qingqing Zhai,Measurement errors in degradation-based burn-in.,2016,150,Rel. Eng. and Sys. Safety,,db/journals/ress/ress150.html#ZhaiYYZ16,https://doi.org/10.1016/j.ress.2016.01.015 +Terje Aven,"Comments to the short communication by Jan Erik Vinnem and Stein Haugen titled ""Perspectives on risk and the unforeseen"".",2015,137,Rel. Eng. and Sys. Safety,,db/journals/ress/ress137.html#Aven15a,https://doi.org/10.1016/j.ress.2015.01.001 +Hussam Ahmed,Optimal number of tests to achieve and validate product reliability.,2014,131,Rel. Eng. and Sys. Safety,,db/journals/ress/ress131.html#AhmedC14,https://doi.org/10.1016/j.ress.2014.04.014 +Qianmei Feng,Designing airport checked-baggage-screening strategies considering system capability and reliability.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#FengSK09,https://doi.org/10.1016/j.ress.2008.06.015 +Myrto Konstandinidou,In-depth analysis of the causal factors of incidents reported in the Greek petrochemical industry.,2011,96,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress96.html#KonstandinidouNKC11,https://doi.org/10.1016/j.ress.2011.07.010 +M. A. Herzog,Machine and component residual life estimation through the application of neural networks.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#HerzogMH09,https://doi.org/10.1016/j.ress.2008.05.008 +Zhisheng Ye,Some improvements on adaptive genetic algorithms for reliability-related applications.,2010,95,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress95.html#YeLX10,https://doi.org/10.1016/j.ress.2009.09.001 +Nicola Pedroni,Comparison of bootstrapped artificial neural networks and quadratic response surfaces for the estimation of the functional failure probability of a thermal-hydraulic passive system.,2010,95,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress95.html#PedroniZA10,https://doi.org/10.1016/j.ress.2009.11.009 +J. M. van Noortwijk,A survey of the application of gamma processes in maintenance.,2009,94,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress94.html#Noortwijk09,https://doi.org/10.1016/j.ress.2007.03.019 +P.-A. Brameret,Automated generation of partial Markov chain from high level descriptions.,2015,139,Rel. Eng. and Sys. Safety,,db/journals/ress/ress139.html#BrameretRR15,https://doi.org/10.1016/j.ress.2015.02.009 +Phuc Do Van,Dynamic grouping maintenance with time limited opportunities.,2013,120,Rel. Eng. and Sys. Safety,,db/journals/ress/ress120.html#VanBBBB13,https://doi.org/10.1016/j.ress.2013.03.016 +Apostolos Papanikolaou,On the development of the new harmonised damage stability regulations for dry cargo and passenger ships.,2008,93,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress93.html#PapanikolaouE08,https://doi.org/10.1016/j.ress.2007.07.009 +Nsimah J. Ekanem,Phoenix - A model-based Human Reliability Analysis methodology: Qualitative Analysis Procedure.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#Ekanem0S16,https://doi.org/10.1016/j.ress.2015.07.009 +Claudio M. Rocco Sanseverino,Vulnerability metrics and analysis for communities in complex networks.,2011,96,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress96.html#SanseverinoR11,https://doi.org/10.1016/j.ress.2011.03.001 +Krzysztof Wróbel,Towards the assessment of potential impact of unmanned vessels on maritime transportation safety.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#WrobelMK17,https://doi.org/10.1016/j.ress.2017.03.029 +D. N. P. Murthy,Data management in maintenance outsourcing.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#MurthyKA15,https://doi.org/10.1016/j.ress.2015.05.002 +Raghav Pant,Static and dynamic metrics of economic resilience for interdependent infrastructure and industry sectors.,2014,125,Rel. Eng. and Sys. Safety,,db/journals/ress/ress125.html#PantBZ14,https://doi.org/10.1016/j.ress.2013.09.007 +Delia Montoro-Cazorla,A warmstandby system under shocks and repair governed by MAPs.,2016,152,Rel. Eng. and Sys. Safety,,db/journals/ress/ress152.html#Montoro-Cazorla16,https://doi.org/10.1016/j.ress.2016.03.023 +Woo Sik Jung,Development of a new quantification method for a fire PSA.,2009,94,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress94.html#JungLY09,https://doi.org/10.1016/j.ress.2009.04.004 +Michael Eldred,Mixed aleatory-epistemic uncertainty quantification with stochastic expansions and optimization-based interval estimation.,2011,96,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress96.html#EldredST11,https://doi.org/10.1016/j.ress.2010.11.010 +Tiku T. Tanyimboh,Reply to comments on 'Redundancy model for water distribution systems'.,2004,86,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress86.html#TanyimbohK04,https://doi.org/10.1016/j.ress.2004.02.006 +Lobna Belkacem,Diagnostic and prognostic of hybrid dynamic systems: Modeling and RUL evaluation for two maintenance policies.,2017,164,Rel. Eng. and Sys. Safety,,db/journals/ress/ress164.html#BelkacemSDGM17,https://doi.org/10.1016/j.ress.2017.03.008 +Hyun Gook Kang,Input-profile-based software failure probability quantification for safety signal generation systems.,2009,94,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress94.html#KangLLKJ09,https://doi.org/10.1016/j.ress.2009.02.018 +Maxim Finkelstein,On some steady-state characteristics of systems with gradual repair.,2014,128,Rel. Eng. and Sys. Safety,,db/journals/ress/ress128.html#FinkelsteinL14,https://doi.org/10.1016/j.ress.2014.03.011 +Cher Ming Tan,"Reply to comments on ""A framework to practical predictive maintenance modeling for multi-state systems"".",2009,94,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress94.html#TanR09,https://doi.org/10.1016/j.ress.2008.08.001 +I. Marton,Optimization of test and maintenance of ageing components consisting of multiple items and addressing effectiveness.,2016,153,Rel. Eng. and Sys. Safety,,db/journals/ress/ress153.html#MartonMMSM16,https://doi.org/10.1016/j.ress.2016.04.015 +Hossam A. Gabbar,Design of fault simulator.,2009,94,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress94.html#GabbarSOM09,https://doi.org/10.1016/j.ress.2009.01.006 +Zupei Shen,A quantification algorithm for a repairable system in the GO methodology.,2003,80,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress80.html#ShenWH03,https://doi.org/10.1016/S0951-8320(03)00036-X +Micaela Demichela,How to avoid the generation of logic loops in the construction of fault trees.,2004,84,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress84.html#DemichelaPCC04,https://doi.org/10.1016/S0951-8320(03)00141-8 +Mark-Alexander Sujan,A novel tool for organisational learning and its impact on safety culture in a hospital dispensary.,2012,101,Rel. Eng. and Sys. Safety,,db/journals/ress/ress101.html#Sujan12,https://doi.org/10.1016/j.ress.2011.12.021 +Zhigang Tian,Condition based maintenance optimization for multi-component systems using proportional hazards model.,2011,96,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress96.html#TianL11,https://doi.org/10.1016/j.ress.2010.12.023 +David J. Edwards,Improving estimates of critical lower percentiles by induced censoring.,2014,123,Rel. Eng. and Sys. Safety,,db/journals/ress/ress123.html#EdwardsGLYC14,https://doi.org/10.1016/j.ress.2013.10.001 +Mohamed Arezki Mellal,A penalty guided stochastic fractal search approach for system reliability optimization.,2016,152,Rel. Eng. and Sys. Safety,,db/journals/ress/ress152.html#MellalZ16,https://doi.org/10.1016/j.ress.2016.03.019 +John A. Forester,Expert elicitation approach for performing ATHEANA quantification.,2004,83,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress83.html#ForesterBCLSKW04,https://doi.org/10.1016/j.ress.2003.09.011 +Serkan Eryilmaz,Reliability properties of consecutive k-out-of-n systems of arbitrarily dependent components.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#Eryilmaz09,https://doi.org/10.1016/j.ress.2008.03.027 +B. Jones,Methodology of using delay-time analysis for a manufacturing industry.,2009,94,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress94.html#JonesJW09,https://doi.org/10.1016/j.ress.2007.12.005 +Sonia Malefaki,Reliability of maintained systems under a semi-Markov setting.,2014,131,Rel. Eng. and Sys. Safety,,db/journals/ress/ress131.html#MalefakiLD14,https://doi.org/10.1016/j.ress.2014.05.003 +Hiroyuki Okamura,Software reliability growth models with normal failure time distributions.,2013,116,Rel. Eng. and Sys. Safety,,db/journals/ress/ress116.html#OkamuraDO13,https://doi.org/10.1016/j.ress.2012.02.002 +Y. H. J. Chang,Cognitive modeling and dynamic probabilistic simulation of operating crew response to complex system accidents: Part 5: Dynamic probabilistic simulation of the IDAC model.,2007,92,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress92.html#ChangM07d,https://doi.org/10.1016/j.ress.2006.05.012 +Amos Necci,Quantitative assessment of risk due to major accidents triggered by lightning.,2016,154,Rel. Eng. and Sys. Safety,,db/journals/ress/ress154.html#NecciABC16,https://doi.org/10.1016/j.ress.2016.05.009 +Leandro dos Santos Coelho,An efficient particle swarm approach for mixed-integer programming in reliability-redundancy optimization applications.,2009,94,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress94.html#Coelho09,https://doi.org/10.1016/j.ress.2008.09.001 +Dawn An,Practical options for selecting data-driven or physics-based prognostics algorithms with reviews.,2015,133,Rel. Eng. and Sys. Safety,,db/journals/ress/ress133.html#AnKC15,https://doi.org/10.1016/j.ress.2014.09.014 +Vicki M. Bier,Defending and attacking a network of two arcs subject to traffic congestion.,2013,112,Rel. Eng. and Sys. Safety,,db/journals/ress/ress112.html#BierH13,https://doi.org/10.1016/j.ress.2012.11.016 +José Barata,Simulation modelling of repairable multi-component deteriorating systems for 'on condition' maintenance optimisation.,2002,76,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress76.html#BarataSMZ02,https://doi.org/10.1016/S0951-8320(02)00017-0 +Hadi Gholinezhad,A new model for the redundancy allocation problem with component mixing and mixed redundancy strategy.,2017,164,Rel. Eng. and Sys. Safety,,db/journals/ress/ress164.html#GholinezhadH17,https://doi.org/10.1016/j.ress.2017.03.009 +Hyun Gook Kang,Application of condition-based HRA method for a manual actuation of the safety features in a nuclear power Plant.,2006,91,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress91.html#KangJ06,https://doi.org/10.1016/j.ress.2005.04.007 +Wei-Chang Yeh,A simple approach to search for all d-MCs of a limited-flow network.,2001,71,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress71.html#Yeh01,https://doi.org/10.1016/S0951-8320(00)00070-3 +Roger M. Cooke,Linearization of local probabilistic sensitivity via sample re-weighting.,2003,79,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress79.html#CookeKM03,https://doi.org/10.1016/S0951-8320(02)00223-5 +Tarcisio Abreu Saurin,A framework for the analysis of slack in socio-technical systems.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#SaurinW17,https://doi.org/10.1016/j.ress.2017.06.023 +Ana Lisbeth Concho,An evolutionary algorithm for port-of-entry security optimization considering sensor thresholds.,2010,95,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress95.html#ConchoR10,https://doi.org/10.1016/j.ress.2009.10.006 +Almir Pereira Guimarães,An analytical modeling framework to evaluate converged networks through business-oriented metrics.,2013,118,Rel. Eng. and Sys. Safety,,db/journals/ress/ress118.html#GuimaraesMM13,https://doi.org/10.1016/j.ress.2013.04.008 +Isha Dewan,Modelling repairable systems with an early life under competing risks and asymmetric virtual age.,2015,144,Rel. Eng. and Sys. Safety,,db/journals/ress/ress144.html#DewanD15,https://doi.org/10.1016/j.ress.2015.07.006 +Pengcheng Luo,System risk evolution analysis and risk critical event identification based on event sequence diagram.,2013,114,Rel. Eng. and Sys. Safety,,db/journals/ress/ress114.html#LuoH13,https://doi.org/10.1016/j.ress.2013.01.002 +P. L. Hall,Probabilistic physics-of-failure models for component reliabilities using Monte Carlo simulation and Weibull analysis: a parametric study.,2003,80,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress80.html#HallS03,https://doi.org/10.1016/S0951-8320(03)00032-2 +José A. Faria,An analytical methodology for the dependability evaluation of non-Markovian systems with multiple components.,2001,74,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress74.html#FariaM01,https://doi.org/10.1016/S0951-8320(01)00073-4 +A. Hjorteland,Uncertainty treatment in production assurance analyses throughout the various phases of a project.,2007,92,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress92.html#HjortelandAO07,https://doi.org/10.1016/j.ress.2006.08.012 +A. K. Nayak,Reliability assessment of passive isolation condenser system of AHWR using APSRA methodology.,2009,94,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress94.html#NayakJGPABS09,https://doi.org/10.1016/j.ress.2008.12.002 +Sarah Dunn,Hazard tolerance of spatially distributed complex networks.,2017,157,Rel. Eng. and Sys. Safety,,db/journals/ress/ress157.html#DunnW17,https://doi.org/10.1016/j.ress.2016.08.010 +Xu Wu,Kriging-based inverse uncertainty quantification of nuclear fuel performance code BISON fission gas release model using time series measurement data.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#WuKM18,https://doi.org/10.1016/j.ress.2017.09.029 +Xuhong He,A simplified CREAM prospective quantification process and its application.,2008,93,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress93.html#HeWSH08,https://doi.org/10.1016/j.ress.2006.10.026 +Jean-Paul Pinelli,Validation of a probabilistic model for hurricane insurance loss projections in Florida.,2008,93,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress93.html#PinelliGSHP08,https://doi.org/10.1016/j.ress.2008.03.017 +Dennis M. Buede,Using plural modeling for predicting decisions made by adaptive adversaries.,2012,108,Rel. Eng. and Sys. Safety,,db/journals/ress/ress108.html#BuedeMEL12,https://doi.org/10.1016/j.ress.2012.06.002 +Marzio Marseguerra,Condition-based maintenance optimization by means of genetic algorithms and Monte Carlo simulation.,2002,77,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress77.html#MarseguerraZP02,https://doi.org/10.1016/S0951-8320(02)00043-1 +Maarten-Jan Kallen,Modelling imperfect maintenance and the reliability of complex systems using superposed renewal processes.,2011,96,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress96.html#Kallen11,https://doi.org/10.1016/j.ress.2010.12.005 +Jian Wang,Two accuracy measures of the Kriging model for structural reliability analysis.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#WangSYL17,https://doi.org/10.1016/j.ress.2017.06.028 +Stephen C. Theophilus,Human factors analysis and classification system for the oil and gas industry (HFACS-OGI).,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#TheophilusEAINM17,https://doi.org/10.1016/j.ress.2017.05.036 +Terje Aven,The concept of ignorance in a risk assessment and risk management context.,2010,95,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress95.html#AvenS10,https://doi.org/10.1016/j.ress.2010.05.006 +Yunan Zheng,A preliminary evaluation of the impact of local accident information on the public perception of road safety.,2007,92,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress92.html#Zheng07,https://doi.org/10.1016/j.ress.2006.08.009 +Min Liu,Multi-objective design optimization of electrostatically actuated microbeam resonators with and without parameter uncertainty.,2007,92,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress92.html#LiuMF07,https://doi.org/10.1016/j.ress.2006.09.007 +Gregory Levitin,Optimal multilevel protection in series-parallel systems.,2003,81,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress81.html#Levitin03,https://doi.org/10.1016/S0951-8320(03)00084-X +Jan M. van Noortwijk,Gamma processes and peaks-over-threshold distributions for time-dependent reliability.,2007,92,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress92.html#NoortwijkWKP07,https://doi.org/10.1016/j.ress.2006.11.003 +Robert W. Youngblood,Mixture priors for Bayesian performance monitoring 1: fixed-constituent model.,2005,89,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress89.html#YoungbloodA05,https://doi.org/10.1016/j.ress.2004.08.015 +Fulvia Baratelli,A sensitivity analysis for an evolution model of the Antarctic ice sheet.,2012,107,Rel. Eng. and Sys. Safety,,db/journals/ress/ress107.html#BaratelliGV12,https://doi.org/10.1016/j.ress.2011.07.003 +Hamed Khorasgani,Methodologies for system-level remaining useful life prediction.,2016,154,Rel. Eng. and Sys. Safety,,db/journals/ress/ress154.html#KhorasganiBS16,https://doi.org/10.1016/j.ress.2016.05.006 +Tatsuya Sakurahara,An integrated methodology for spatio-temporal incorporation of underlying failure mechanisms into fire probabilistic risk assessment of nuclear power plants.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#SakuraharaMRKBR18,https://doi.org/10.1016/j.ress.2017.09.001 +Jørn Vatn,An approach to maintenance optimization where safety issues are important.,2010,95,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress95.html#VatnA10,https://doi.org/10.1016/j.ress.2009.06.002 +Kuan-Yu Chen,Forecasting systems reliability based on support vector regression with genetic algorithms.,2007,92,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress92.html#Chen07,https://doi.org/10.1016/j.ress.2005.12.014 +Mihály Makai,Reply to contribution of Graham B. Wallis.,2003,80,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress80.html#MakaiP03,https://doi.org/10.1016/S0951-8320(03)00035-8 +Kouroush Jenab,Dynamic MLD analysis with flow graphs.,2012,106,Rel. Eng. and Sys. Safety,,db/journals/ress/ress106.html#JenabSDH12,https://doi.org/10.1016/j.ress.2012.05.008 +Olgierd Hryniewicz,Bayes statistical decisions with random fuzzy data - an application in reliability.,2016,151,Rel. Eng. and Sys. Safety,,db/journals/ress/ress151.html#Hryniewicz16,https://doi.org/10.1016/j.ress.2015.08.011 +Andrew O'Connor,A general cause based methodology for analysis of common cause and dependent failures in system risk and reliability assessments.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#OConnorM16,https://doi.org/10.1016/j.ress.2015.06.007 +Man Cheol Kim,A probabilistic approach for determining the control mode in CREAM.,2006,91,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress91.html#KimSH06,https://doi.org/10.1016/j.ress.2004.12.003 +Helge Langseth,Decision theoretic troubleshooting of coherent systems.,2003,80,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress80.html#LangsethJ03,https://doi.org/10.1016/S0951-8320(02)00202-8 +Todd L. Graves,A fully Bayesian approach for combining multi-level information in multi-state fault tree quantification.,2007,92,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress92.html#GravesHKKM07,https://doi.org/10.1016/j.ress.2006.11.001 +Kash Barker,Proportional hazards models of infrastructure system recovery.,2014,124,Rel. Eng. and Sys. Safety,,db/journals/ress/ress124.html#BarkerB14,https://doi.org/10.1016/j.ress.2013.12.004 +Andreas Gregoriades,Workload prediction for improved design and reliability of complex systems.,2008,93,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress93.html#GregoriadesS08,https://doi.org/10.1016/j.ress.2007.02.001 +Genserik L. L. Reniers,Resilience of chemical industrial areas through attenuation-based security.,2014,131,Rel. Eng. and Sys. Safety,,db/journals/ress/ress131.html#ReniersSKA14,https://doi.org/10.1016/j.ress.2014.05.005 +Bev Littlewood,Comments on 'Evolutionary neural network modelling for software cumulative failure time prediction' by Liang Tian and Afzel Noore [Reliability Engineering and System Safety 87 (2005) 45-51].,2006,91,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress91.html#Littlewood06a,https://doi.org/10.1016/j.ress.2005.02.001 +Jérôme Collet,Bracketing of failure path probability in a system with ageing repair *.,2002,76,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress76.html#ColletB02,https://doi.org/10.1016/S0951-8320(01)00138-7 +Gintautas Dundulis,Integrated failure probability estimation based on structural integrity analysis and failure data: Natural gas pipeline case.,2016,156,Rel. Eng. and Sys. Safety,,db/journals/ress/ress156.html#DundulisZJURE16,https://doi.org/10.1016/j.ress.2016.08.003 +C. Qian,An accelerated test method of luminous flux depreciation for LED luminaires and lamps.,2016,147,Rel. Eng. and Sys. Safety,,db/journals/ress/ress147.html#QianFFYZ16,https://doi.org/10.1016/j.ress.2015.11.009 +B. Saassouh,Online maintenance policy for a deteriorating system with random change of mode.,2007,92,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress92.html#SaassouhDG07,https://doi.org/10.1016/j.ress.2006.10.017 +Om Prakash Yadav,A practical reliability allocation method considering modified criticality factors.,2014,129,Rel. Eng. and Sys. Safety,,db/journals/ress/ress129.html#YadavZ14,https://doi.org/10.1016/j.ress.2014.04.003 +Ji Yun Lee,A decision model for intergenerational life-cycle risk assessment of civil infrastructure exposed to hurricanes under climate change.,2017,159,Rel. Eng. and Sys. Safety,,db/journals/ress/ress159.html#LeeE17,https://doi.org/10.1016/j.ress.2016.10.022 +Jozef Van Dyck,Precision of power-law NHPP estimates for multiple systems with known failure rate scaling.,2014,126,Rel. Eng. and Sys. Safety,,db/journals/ress/ress126.html#DyckV14,https://doi.org/10.1016/j.ress.2014.01.019 +Gilles Pujol,Simplex-based screening designs for estimating metamodels.,2009,94,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress94.html#Pujol09,https://doi.org/10.1016/j.ress.2008.08.002 +Peter T. Popov,Bayesian reliability assessment of legacy safety-critical systems upgraded with fault-tolerant off-the-shelf software.,2013,117,Rel. Eng. and Sys. Safety,,db/journals/ress/ress117.html#Popov13,https://doi.org/10.1016/j.ress.2013.03.017 +Vasiliy V. Krivtsov,Regression approach to tire reliability analysis.,2002,78,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress78.html#KrivtsovTD02,https://doi.org/10.1016/S0951-8320(02)00169-2 +Mengfei Fan,Modeling dependent competing failure processes with degradation-shock dependence.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#FanZZK17,https://doi.org/10.1016/j.ress.2017.05.004 +Sebastián Martorell,Evaluation of risk impact of changes to Completion Times addressing model and parameter uncertainties.,2014,130,Rel. Eng. and Sys. Safety,,db/journals/ress/ress130.html#MartorellMVSC14,https://doi.org/10.1016/j.ress.2014.06.003 +Saikumar R. Yeratapally,Bayesian uncertainty quantification and propagation for validation of a microstructure sensitive model for prediction of fatigue crack initiation.,2017,164,Rel. Eng. and Sys. Safety,,db/journals/ress/ress164.html#YeratapallyGAS17,https://doi.org/10.1016/j.ress.2017.03.006 +Derek W. Seward,Safety analysis of autonomous excavator functionality.,2000,70,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress70.html#SewardPMS00,https://doi.org/10.1016/S0951-8320(00)00045-4 +Lennart Sjöberg,Author's reply: whose risk perception should influence decisions?,2001,72,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress72.html#Sjoberg01a,https://doi.org/10.1016/S0951-8320(01)00016-3 +Hongzhe Dai,A multiwavelet support vector regression method for efficient reliability assessment.,2015,136,Rel. Eng. and Sys. Safety,,db/journals/ress/ress136.html#DaiZW15,https://doi.org/10.1016/j.ress.2014.12.002 +Nikos D. Lagaros,Stochastic life-cycle cost analysis of wind parks.,2015,144,Rel. Eng. and Sys. Safety,,db/journals/ress/ress144.html#LagarosKP15,https://doi.org/10.1016/j.ress.2015.07.016 +Helge Langseth,Bayesian networks in reliability.,2007,92,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress92.html#LangsethP07,https://doi.org/10.1016/j.ress.2005.11.037 +Igor Kozine,Imprecise reliabilities: experiences and advances.,2000,67,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress67.html#KozineF00,https://doi.org/10.1016/S0951-8320(99)00044-7 +Kurt Marti,Optimal structural design under stochastic uncertainty by stochastic linear programming methods.,2001,72,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress72.html#Marti01,https://doi.org/10.1016/S0951-8320(01)00003-5 +Tianjin Cheng,The probability distribution of maintenance cost of a system affected by the gamma process of degradation: Finite time solution.,2012,108,Rel. Eng. and Sys. Safety,,db/journals/ress/ress108.html#ChengPW12,https://doi.org/10.1016/j.ress.2012.06.005 +Roger Flage,Safety constraints applied to an adaptive Bayesian condition-based maintenance optimization model.,2012,102,Rel. Eng. and Sys. Safety,,db/journals/ress/ress102.html#FlageCLA12,https://doi.org/10.1016/j.ress.2012.01.006 +Hongyan Dui,An importance measure for multistate systems with external factors.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#DuiSWY17,https://doi.org/10.1016/j.ress.2017.05.016 +Zhenhua Lin,Restrictions of point estimate methods and remedy.,2013,111,Rel. Eng. and Sys. Safety,,db/journals/ress/ress111.html#LinL13,https://doi.org/10.1016/j.ress.2012.10.016 +Sharareh Taghipour,Periodic inspection optimization model for a complex repairable system.,2010,95,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress95.html#TaghipourBJ10,https://doi.org/10.1016/j.ress.2010.04.003 +Xiukai Yuan,Efficient approach for reliability-based optimization based on weighted importance sampling approach.,2014,132,Rel. Eng. and Sys. Safety,,db/journals/ress/ress132.html#YuanL14,https://doi.org/10.1016/j.ress.2014.06.015 +Ammar M. Sarhan,Statistical analysis of competing risks models.,2010,95,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress95.html#SarhanHS10,https://doi.org/10.1016/j.ress.2010.04.006 +Wenjuan Zhang,Cost modelling in maintenance strategy optimisation for infrastructure assets with limited data.,2014,130,Rel. Eng. and Sys. Safety,,db/journals/ress/ress130.html#ZhangW14,https://doi.org/10.1016/j.ress.2014.04.025 +Henryk Maciejewski,Estimation of repairable system availability within fixed time horizon.,2008,93,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress93.html#MaciejewskiC08,https://doi.org/10.1016/j.ress.2006.10.016 +Huan Yu,Reliability evaluation of linear multi-state consecutively-connected systems constrained by m consecutive and n total gaps.,2016,150,Rel. Eng. and Sys. Safety,,db/journals/ress/ress150.html#YuYPZ16,https://doi.org/10.1016/j.ress.2016.01.010 +Nuno Silva,A field study on root cause analysis of defects in space software.,2017,158,Rel. Eng. and Sys. Safety,,db/journals/ress/ress158.html#SilvaCV17,https://doi.org/10.1016/j.ress.2016.08.016 +Alberto Azzolin,Electrical and topological drivers of the cascading failure dynamics in power transmission networks.,2018,175,Rel. Eng. and Sys. Safety,,db/journals/ress/ress175.html#AzzolinDCZ18,https://doi.org/10.1016/j.ress.2018.03.011 +Mark Bebbington,A flexible Weibull extension.,2007,92,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress92.html#BebbingtonLZ07,https://doi.org/10.1016/j.ress.2006.03.004 +Yongyong He,A study on group decision-making based fault multi-symptom-domain consensus diagnosis.,2001,74,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress74.html#HeCZ01,https://doi.org/10.1016/S0951-8320(01)00042-4 +R. Jiang,A Gamma-normal series truncation approximation for computing the Weibull renewal function.,2008,93,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress93.html#Jiang08,https://doi.org/10.1016/j.ress.2007.03.026 +L. Bukowski,System of systems dependability - Theoretical models and applications examples.,2016,151,Rel. Eng. and Sys. Safety,,db/journals/ress/ress151.html#Bukowski16,https://doi.org/10.1016/j.ress.2015.10.014 +Gabriele Landucci,Quantitative assessment of safety barrier performance in the prevention of domino scenarios triggered by fire.,2015,143,Rel. Eng. and Sys. Safety,,db/journals/ress/ress143.html#LanducciATC15,https://doi.org/10.1016/j.ress.2015.03.023 +Yongsheng Yang,Corrosion induced failure analysis of subsea pipelines.,2017,159,Rel. Eng. and Sys. Safety,,db/journals/ress/ress159.html#YangKTA17,https://doi.org/10.1016/j.ress.2016.11.014 +Andreas Richei,The human error rate assessment and optimizing system HEROS - a new procedure for evaluating and optimizing the man-machine interface in PSA.,2001,72,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress72.html#RicheiHU01,https://doi.org/10.1016/S0951-8320(01)00005-9 +Won Young Yun,Optimal design of a general warm standby system.,2010,95,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress95.html#YunC10,https://doi.org/10.1016/j.ress.2010.03.004 +Dejing Kong,Sensor-based calibrations to improve reliability of systems subject to multiple dependent competing failure processes.,2017,160,Rel. Eng. and Sys. Safety,,db/journals/ress/ress160.html#KongQHC17,https://doi.org/10.1016/j.ress.2016.12.007 +Delia Montoro-Cazorla,Constructing a Markov process for modelling a reliability system under multiple failures and replacements.,2018,173,Rel. Eng. and Sys. Safety,,db/journals/ress/ress173.html#Montoro-Cazorla18,https://doi.org/10.1016/j.ress.2017.12.017 +Kuei-Yung Teng,Identification and evaluation of priorities in the business process of a risk or safety organization.,2012,99,Rel. Eng. and Sys. Safety,,db/journals/ress/ress99.html#TengTL12,https://doi.org/10.1016/j.ress.2011.10.006 +Alexandre Muller,Formalisation of a new prognosis model for supporting proactive maintenance implementation on industrial system.,2008,93,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress93.html#MullerSI08,https://doi.org/10.1016/j.ress.2006.12.004 +Gregory D. Hammond,Alternative evacuation strategies for nuclear power accidents.,2015,135,Rel. Eng. and Sys. Safety,,db/journals/ress/ress135.html#HammondB15,https://doi.org/10.1016/j.ress.2014.10.016 +Valentina Di Pasquale,A Simulator for Human Error Probability Analysis (SHERPA).,2015,139,Rel. Eng. and Sys. Safety,,db/journals/ress/ress139.html#PasqualeMIR15,https://doi.org/10.1016/j.ress.2015.02.003 +Carmen Elena Patiño Rodriguez,Reliability concepts applied to cutting tool change time.,2010,95,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress95.html#RodriguezS10,https://doi.org/10.1016/j.ress.2010.03.005 +Jinkyun Park,The effect of two complexity factors on the performance of emergency tasks - An experimental verification.,2008,93,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress93.html#ParkJJ08,https://doi.org/10.1016/j.ress.2006.09.027 +Kellie Schneider,Social network analysis via multi-state reliability and conditional influence models.,2013,109,Rel. Eng. and Sys. Safety,,db/journals/ress/ress109.html#SchneiderRPHR13,https://doi.org/10.1016/j.ress.2012.07.007 +Simon French 0001,Comments by Prof. French.,2008,93,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress93.html#French08,https://doi.org/10.1016/j.ress.2008.02.007 +Niklas Möller,Principles of engineering safety: Risk and uncertainty reduction.,2008,93,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress93.html#MollerH08,https://doi.org/10.1016/j.ress.2007.03.031 +Robert H. Leicester,A reliability model for assessing the risk of termite attack on housing in Australia.,2008,93,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress93.html#LeicesterWC08,https://doi.org/10.1016/j.ress.2006.12.016 +Matieyendou Lamboni,Multivariate sensitivity analysis to measure global contribution of input factors in dynamic models.,2011,96,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress96.html#LamboniMM11,https://doi.org/10.1016/j.ress.2010.12.002 +Gesa Praetorius,Modelling Vessel Traffic Service to understand resilience in everyday operations.,2015,141,Rel. Eng. and Sys. Safety,,db/journals/ress/ress141.html#PraetoriusHD15,https://doi.org/10.1016/j.ress.2015.03.020 +Gaige Chen,Hyper-parameter optimization based nonlinear multistate deterioration modeling for deterioration level assessment and remaining useful life prognostics.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#ChenCZM17,https://doi.org/10.1016/j.ress.2017.06.030 +María Luz Gámiz Pérez,Nonparametric estimation in trend-renewal processes.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#PerezL16,https://doi.org/10.1016/j.ress.2015.08.015 +Terje Aven,Interpretations of alternative uncertainty representations in a reliability and risk analysis context.,2011,96,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress96.html#Aven11,https://doi.org/10.1016/j.ress.2010.11.004 +Saad J. Almalki,Modifications of the Weibull distribution: A review.,2014,124,Rel. Eng. and Sys. Safety,,db/journals/ress/ress124.html#AlmalkiN14,https://doi.org/10.1016/j.ress.2013.11.010 +P. K. Marhavilas,Harmonic analysis of occupational-accident time-series as a part of the quantified risk evaluation in worksites: Application on electric power industry and construction sector.,2013,112,Rel. Eng. and Sys. Safety,,db/journals/ress/ress112.html#MarhavilasKS13,https://doi.org/10.1016/j.ress.2012.11.014 +Vasilis P. Koutras,Optimization of the dependability and performance measures of a generic model for multi-state deteriorating systems under maintenance.,2017,166,Rel. Eng. and Sys. Safety,,db/journals/ress/ress166.html#KoutrasMP17,https://doi.org/10.1016/j.ress.2017.01.002 +Chaonan Wang,Competing failure analysis in phased-mission systems with functional dependence in one of phases.,2012,108,Rel. Eng. and Sys. Safety,,db/journals/ress/ress108.html#WangXL12a,https://doi.org/10.1016/j.ress.2012.07.004 +Roberto Pastres,Sensitivity analysis as a tool for the implementation of a water quality regulation based on the Maximum Permissible Loads policy.,2003,79,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress79.html#PastresCCS03,https://doi.org/10.1016/S0951-8320(02)00235-1 +C. Mattrand,The cross-entropy method for reliability assessment of cracked structures subjected to random Markovian loads.,2014,123,Rel. Eng. and Sys. Safety,,db/journals/ress/ress123.html#MattrandB14,https://doi.org/10.1016/j.ress.2013.10.009 +Andre Kleyner,Application of Petri nets to reliability prediction of occupant safety systems with partial detection and repair.,2010,95,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress95.html#KleynerV10,https://doi.org/10.1016/j.ress.2010.01.008 +Haneet Singh Mahajan,Application of systems theoretic process analysis to a lane keeping assist system.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#MahajanBP17,https://doi.org/10.1016/j.ress.2017.05.037 +Ning-Cong Xiao,A new adaptive sequential sampling method to construct surrogate models for efficient reliability analysis.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#XiaoZZ18,https://doi.org/10.1016/j.ress.2017.09.008 +J. Pongpech,Optimal periodic preventive maintenance policy for leased equipment.,2006,91,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress91.html#PongpechM06,https://doi.org/10.1016/j.ress.2005.07.005 +Gabriele Landucci,Release of hazardous substances in flood events: Damage model for atmospheric storage tanks.,2012,106,Rel. Eng. and Sys. Safety,,db/journals/ress/ress106.html#LanducciATC12,https://doi.org/10.1016/j.ress.2012.05.010 +Tieling Zhang,Availability of systems with self-diagnostic components - applying Markov model to IEC 61508-6.,2003,80,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress80.html#ZhangLS03,https://doi.org/10.1016/S0951-8320(03)00004-8 +Sabrina Jocelyn,Application of logical analysis of data to machinery-related accident prevention based on scarce data.,2017,159,Rel. Eng. and Sys. Safety,,db/journals/ress/ress159.html#JocelynCOY17,https://doi.org/10.1016/j.ress.2016.11.015 +Antoine Rauzy,A practical comparison of methods to assess sum-of-products.,2003,79,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress79.html#RauzyCDB03,https://doi.org/10.1016/S0951-8320(02)00165-5 +Guoqiang Li,A semi-analytical simulation method for reliability assessments of structural systems.,2002,78,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress78.html#LiL02,https://doi.org/10.1016/S0951-8320(02)00171-0 +Alyson G. Wilson,A case study for quantifying system reliability and uncertainty.,2011,96,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress96.html#WilsonAH11,https://doi.org/10.1016/j.ress.2010.09.012 +Mark Bebbington,Balancing burn-in and mission * in environments with catastrophic and repairable failures.,2009,94,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress94.html#BebbingtonLZ09,https://doi.org/10.1016/j.ress.2009.02.015 +Pietro Turati,Simulation-based exploration of high-dimensional system models for identifying unexpected events.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#TuratiPZ17,https://doi.org/10.1016/j.ress.2017.04.004 +Amos Necci,Assessment of domino effect: State of the art and research Needs.,2015,143,Rel. Eng. and Sys. Safety,,db/journals/ress/ress143.html#NecciCSK15,https://doi.org/10.1016/j.ress.2015.05.017 +E. Doménech,An approach for assessing CCP effectiveness in food production applications by predictive QRA modelling.,2009,94,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress94.html#DomenechEM09,https://doi.org/10.1016/j.ress.2009.02.012 +Baoliang Liu,A cold standby repairable system with working vacations and vacation interruption following Markovian arrival process.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#LiuCWS15,https://doi.org/10.1016/j.ress.2015.04.010 +Mark G. Stewart,Reliability-based assessment of ageing bridges using risk ranking and life cycle cost decision analyses.,2001,74,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress74.html#Stewart01,https://doi.org/10.1016/S0951-8320(01)00079-5 +Kaigui Xie,Tracing the unreliability and recognizing the major unreliability contribution of network components.,2009,94,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress94.html#XieB09,https://doi.org/10.1016/j.ress.2008.10.009 +Ekene Gabriel Okafor,Multi-objective optimization of a series-parallel system using GPSIA.,2012,103,Rel. Eng. and Sys. Safety,,db/journals/ress/ress103.html#OkaforS12,https://doi.org/10.1016/j.ress.2012.03.014 +Fan C. Meng,Relationships of Fussell-Vesely and Birnbaum importance to structural importance in coherent systems.,2000,67,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress67.html#Meng00,https://doi.org/10.1016/S0951-8320(99)00043-5 +Karen Renaud,A process for supporting risk-aware web authentication mechanism choice.,2007,92,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress92.html#Renaud07,https://doi.org/10.1016/j.ress.2006.08.008 +António Ramos Andrade,Assessing the potential cost savings of introducing the maintenance option of 'Economic Tyre Turning' in Great Britain railway wheelsets.,2017,168,Rel. Eng. and Sys. Safety,,db/journals/ress/ress168.html#AndradeS17,https://doi.org/10.1016/j.ress.2017.05.033 +Olga N. Aneziris,Occupational risk of building construction.,2012,105,Rel. Eng. and Sys. Safety,,db/journals/ress/ress105.html#AnezirisTP12,https://doi.org/10.1016/j.ress.2011.11.003 +António Vieira Pombo,Multiobjective planning of distribution networks incorporating switches and protective devices using a memetic optimization.,2015,136,Rel. Eng. and Sys. Safety,,db/journals/ress/ress136.html#PomboPP15,https://doi.org/10.1016/j.ress.2014.11.016 +Cédric J. Sallaberry,Extension of Latin hypercube samples with correlated variables.,2008,93,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress93.html#SallaberryHH08,https://doi.org/10.1016/j.ress.2007.04.005 +Khanh Le Son,Remaining useful lifetime estimation and noisy gamma deterioration process.,2016,149,Rel. Eng. and Sys. Safety,,db/journals/ress/ress149.html#SonFB16,https://doi.org/10.1016/j.ress.2015.12.016 +Shumin Li,A novel decision diagrams extension method.,2014,126,Rel. Eng. and Sys. Safety,,db/journals/ress/ress126.html#LiSDCS14,https://doi.org/10.1016/j.ress.2014.01.017 +Emanuele Borgonovo,A new importance measure for risk-informed decision making.,2001,72,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress72.html#BorgonovoA01,https://doi.org/10.1016/S0951-8320(00)00108-3 +Jau-Chuan Ke,Modeling of machine interference problem with unreliable repairman and standbys imperfect switchover.,2018,174,Rel. Eng. and Sys. Safety,,db/journals/ress/ress174.html#KeLY18,https://doi.org/10.1016/j.ress.2018.01.013 +Shenwei Zhang,Bayesian dynamic linear model for growth of corrosion defects on energy pipelines.,2014,128,Rel. Eng. and Sys. Safety,,db/journals/ress/ress128.html#ZhangZ14,https://doi.org/10.1016/j.ress.2014.04.001 +Bram Wisse,Expert judgement combination using moment methods.,2008,93,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress93.html#WisseBQ08,https://doi.org/10.1016/j.ress.2007.03.003 +Julie Shortridge,Risk assessment under deep uncertainty: A methodological comparison.,2017,159,Rel. Eng. and Sys. Safety,,db/journals/ress/ress159.html#ShortridgeAG17,https://doi.org/10.1016/j.ress.2016.10.017 +Gianpaolo Pulcini,A perturbed gamma process with statistically dependent measurement errors.,2016,152,Rel. Eng. and Sys. Safety,,db/journals/ress/ress152.html#Pulcini16,https://doi.org/10.1016/j.ress.2016.03.024 +Wei Yuan,Optimal power grid protection through a defender-attacker-defender model.,2014,121,Rel. Eng. and Sys. Safety,,db/journals/ress/ress121.html#YuanZZ14,https://doi.org/10.1016/j.ress.2013.08.003 +Frédéric Vanderhaegen,A non-probabilistic prospective and retrospective human reliability analysis method - application to railway system.,2001,71,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress71.html#Vanderhaegen01,https://doi.org/10.1016/S0951-8320(00)00060-0 +Mahalia Miller,Coupling mode-destination accessibility with seismic risk assessment to identify at-risk communities.,2016,147,Rel. Eng. and Sys. Safety,,db/journals/ress/ress147.html#MillerB16,https://doi.org/10.1016/j.ress.2015.10.018 +Kash Barker,Resilience-based network component importance measures.,2013,117,Rel. Eng. and Sys. Safety,,db/journals/ress/ress117.html#BarkerRS13,https://doi.org/10.1016/j.ress.2013.03.012 +C. P. Medeiros,Multidimensional risk evaluation of natural gas pipelines based on a multicriteria decision model using visualization tools and statistical tests for global sensitivity analysis.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#MedeirosAA17,https://doi.org/10.1016/j.ress.2017.04.002 +Cristiano A. V. Cavalcante,A study of a two-phase inspection policy for a preparedness system with a defective state and heterogeneous lifetime.,2011,96,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress96.html#CavalcanteSA11,https://doi.org/10.1016/j.ress.2010.12.004 +Chi Zhang 0005,Locating and protecting facilities from intentional attacks using secrecy.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#ZhangRL18,https://doi.org/10.1016/j.ress.2017.08.005 +Jun Yuan,A sequential approach for stochastic computer model calibration and prediction.,2013,111,Rel. Eng. and Sys. Safety,,db/journals/ress/ress111.html#YuanN13,https://doi.org/10.1016/j.ress.2012.11.004 +Ben J. M. Ale,Further development of a Causal model for Air Transport Safety (CATS): Building the mathematical heart.,2009,94,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress94.html#AleBBCCGHKMRS09,https://doi.org/10.1016/j.ress.2009.02.024 +Marzio Marseguerra,Early detection of gradual concept drifts by text categorization and Support Vector Machine techniques: The TRIO algorithm.,2014,129,Rel. Eng. and Sys. Safety,,db/journals/ress/ress129.html#Marseguerra14,https://doi.org/10.1016/j.ress.2014.03.014 +Efstathios Bakolas,Augmenting defense-in-depth with the concepts of observability and diagnosability from Control Theory and Discrete Event Systems.,2011,96,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress96.html#BakolasS11,https://doi.org/10.1016/j.ress.2010.09.002 +Chao Hu,Ensemble of data-driven prognostic algorithms for robust prediction of remaining useful life.,2012,103,Rel. Eng. and Sys. Safety,,db/journals/ress/ress103.html#HuYWY12,https://doi.org/10.1016/j.ress.2012.03.008 +So Young Sohn,"Correction to ""Random effects model for the reliability management of modules of a fighter aircraft"" [Reliab Eng Syst Saf 91(4) (2006) 433-437].",2009,94,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress94.html#SohnYC09,https://doi.org/10.1016/j.ress.2008.11.008 +Duo Yang,Warranty claims forecasting based on a general imperfect repair model considering usage rate.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#YangHH16,https://doi.org/10.1016/j.ress.2015.09.012 +Hamed Fazlollahtabar,Integrated Markov-neural reliability computation method: A case for multiple automated guided vehicle system.,2015,135,Rel. Eng. and Sys. Safety,,db/journals/ress/ress135.html#FazlollahtabarSB15,https://doi.org/10.1016/j.ress.2014.11.004 +Toshio Nakagawa,A summary of maintenance policies for a finite interval.,2009,94,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress94.html#NakagawaM09,https://doi.org/10.1016/j.ress.2007.04.004 +Rosa E. Lillo,Note on relations between criteria for ageing.,2000,67,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress67.html#Lillo00,https://doi.org/10.1016/S0951-8320(99)00058-7 +Gregory Levitin,Optimization of imperfect preventive maintenance for multi-state systems.,2000,67,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress67.html#LevitinL00,https://doi.org/10.1016/S0951-8320(99)00067-8 +Rakesh Menon,Robust design of a spindle motor: a case study.,2002,75,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress75.html#MenonLLI02,https://doi.org/10.1016/S0951-8320(01)00119-3 +Seth D. Guikema,Component choice for managing risk in engineered systems with generalized risk/cost functions.,2002,78,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress78.html#GuikemaP02,https://doi.org/10.1016/S0951-8320(02)00155-2 +Sergio Contini,New methods to determine the importance measures of initiating and enabling events in fault tree analysis.,2011,96,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress96.html#ContiniM11a,https://doi.org/10.1016/j.ress.2011.02.001 +Kellie Schneider,Evaluation and comparison of alternative fleet-level selective maintenance models.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#SchneiderC15,https://doi.org/10.1016/j.ress.2014.10.017 +Bruce R. Ellingwood,Earthquake risk assessment of building structures.,2001,74,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress74.html#Ellingwood01,https://doi.org/10.1016/S0951-8320(01)00105-3 +Nagarajan Kandasamy,Dependable communication synthesis for distributed embedded systems.,2005,89,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress89.html#KandasamyHM05,https://doi.org/10.1016/j.ress.2004.08.008 +Diyin Tang,Optimal maintenance policy and residual life estimation for a slowly degrading system subject to condition monitoring.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#TangMJY15,https://doi.org/10.1016/j.ress.2014.10.015 +Vicki M. Bier,Protection of simple series and parallel systems with components of different values.,2005,87,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress87.html#BierNA05,https://doi.org/10.1016/j.ress.2004.06.003 +Tangbin Xia,Reconfiguration-oriented opportunistic maintenance policy for reconfigurable manufacturing systems.,2017,166,Rel. Eng. and Sys. Safety,,db/journals/ress/ress166.html#XiaXPN17,https://doi.org/10.1016/j.ress.2016.09.001 +Ruggiero Lovreglio,The validation of evacuation simulation models through the analysis of behavioural uncertainty.,2014,131,Rel. Eng. and Sys. Safety,,db/journals/ress/ress131.html#LovreglioRB14,https://doi.org/10.1016/j.ress.2014.07.007 +Thi Phuong Khanh Nguyen,Method for evaluating an extended Fault Tree to analyse the dependability of complex systems: Application to a satellite-based railway system.,2015,133,Rel. Eng. and Sys. Safety,,db/journals/ress/ress133.html#NguyenBM15,https://doi.org/10.1016/j.ress.2014.09.019 +Elhadi M. Shakshuki,An automatic formulation of inverse free second moment method for algebraic systems.,2002,76,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress76.html#ShakshukiP02,https://doi.org/10.1016/S0951-8320(01)00149-1 +Antti Toppila,Selection of risk reduction portfolios under interval-valued probabilities.,2017,163,Rel. Eng. and Sys. Safety,,db/journals/ress/ress163.html#ToppilaS17,https://doi.org/10.1016/j.ress.2017.02.005 +Magdalena Szymkowiak,Generalized aging intensity functions.,2018,178,Rel. Eng. and Sys. Safety,,db/journals/ress/ress178.html#Szymkowiak18,https://doi.org/10.1016/j.ress.2018.06.012 +Antoine Rauzy,An experimental study on iterative methods to compute transient solutions of large Markov models.,2004,86,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress86.html#Rauzy04,https://doi.org/10.1016/j.ress.2004.01.007 +Jinhua Mi,Reliability analysis of complex multi-state system with common cause failure based on evidential networks.,2018,174,Rel. Eng. and Sys. Safety,,db/journals/ress/ress174.html#MiLPH18,https://doi.org/10.1016/j.ress.2018.02.021 +Wei Xie,Analysis of a two-level software rejuvenation policy.,2005,87,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress87.html#XieHT05,https://doi.org/10.1016/j.ress.2004.02.011 +Zhimin Xi,A copula-based sampling method for data-driven prognostics.,2014,132,Rel. Eng. and Sys. Safety,,db/journals/ress/ress132.html#XiJWH14,https://doi.org/10.1016/j.ress.2014.06.014 +Isis Didier Lins,Computing confidence and prediction intervals of industrial equipment degradation by bootstrapped support vector regression.,2015,137,Rel. Eng. and Sys. Safety,,db/journals/ress/ress137.html#LinsDMZJ15,https://doi.org/10.1016/j.ress.2015.01.007 +Sang Hun Lee,Reliability modeling of safety-critical network communication in a digitalized nuclear power plant.,2015,144,Rel. Eng. and Sys. Safety,,db/journals/ress/ress144.html#LeeKSSLK15,https://doi.org/10.1016/j.ress.2015.07.029 +Pengfei Wei,Regional and parametric sensitivity analysis of Sobol' indices.,2015,137,Rel. Eng. and Sys. Safety,,db/journals/ress/ress137.html#WeiLS15,https://doi.org/10.1016/j.ress.2014.12.012 +Karen A. Reay,A fault tree analysis strategy using binary decision diagrams.,2002,78,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress78.html#ReayA02,https://doi.org/10.1016/S0951-8320(02)00107-2 +Min Xie 0001,A modified Weibull extension with bathtub-shaped failure rate function.,2002,76,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress76.html#0001TG02,https://doi.org/10.1016/S0951-8320(02)00022-4 +Xiaolei Fang,Multistream sensor fusion-based prognostics model for systems with single failure modes.,2017,159,Rel. Eng. and Sys. Safety,,db/journals/ress/ress159.html#FangPG17,https://doi.org/10.1016/j.ress.2016.11.008 +Francesco Di Maio,Bootstrapped-ensemble-based Sensitivity Analysis of a trace thermal-hydraulic model based on a limited number of PWR large break loca simulations.,2016,153,Rel. Eng. and Sys. Safety,,db/journals/ress/ress153.html#MaioBZASM16,https://doi.org/10.1016/j.ress.2016.04.013 +Wenbin Wang,An inspection model for a process with two types of inspections and repairs.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#Wang09,https://doi.org/10.1016/j.ress.2008.06.010 +Suk Joo Bae,A Bayesian approach to modeling two-phase degradation using change-point regression.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#BaeYNK15,https://doi.org/10.1016/j.ress.2014.10.009 +Enrico Zio,Optimizing protections against cascades in network systems: A modified binary differential evolution algorithm.,2012,103,Rel. Eng. and Sys. Safety,,db/journals/ress/ress103.html#ZioGS12a,https://doi.org/10.1016/j.ress.2012.03.007 +Jezdimir Knezevic,Reliability modelling of repairable systems using Petri nets and fuzzy Lambda-Tau methodology.,2001,73,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress73.html#KnezevicO01,https://doi.org/10.1016/S0951-8320(01)00017-5 +James K. Kuchar,Integrating objective and subjective hazard risk in decision-aiding system design.,2002,75,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress75.html#KucharWM02,https://doi.org/10.1016/S0951-8320(01)00095-3 +Frank P. A. Coolen,Bayesian reliability demonstration for failure-free periods.,2005,88,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress88.html#CoolenCR05,https://doi.org/10.1016/j.ress.2004.07.015 +Per Hokstad,Demand rate and risk reduction for safety instrumented systems.,2014,127,Rel. Eng. and Sys. Safety,,db/journals/ress/ress127.html#Hokstad14,https://doi.org/10.1016/j.ress.2014.03.001 +Joseph H. Saleh,From learning from accidents to teaching about accident causation and prevention: Multidisciplinary education and safety literacy for all engineering students.,2012,99,Rel. Eng. and Sys. Safety,,db/journals/ress/ress99.html#SalehP12,https://doi.org/10.1016/j.ress.2011.10.016 +Mihály Makai,"Comment on ""Evaluating the probability that the output of a computer code with random inputs will meet a set of evaluation criteria"" by G.B. Wallis [Reliab Eng Syst Saf 2006*91: 820-7].",2007,92,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress92.html#Makai07,https://doi.org/10.1016/j.ress.2006.04.019 +Joshua Mullins,Variable-fidelity model selection for stochastic simulation.,2014,131,Rel. Eng. and Sys. Safety,,db/journals/ress/ress131.html#MullinsM14,https://doi.org/10.1016/j.ress.2014.06.011 +Mark-Alexander Sujan,Guest Editorial.,2011,96,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress96.html#Sujan11,https://doi.org/10.1016/j.ress.2010.06.024 +Ho-Gon Lim,An analytic solution for a fault tree with circular logics in which the systems are linearly interrelated.,2007,92,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress92.html#LimJ07,https://doi.org/10.1016/j.ress.2006.04.001 +Jiawei Li,Optimising risk reduction: An expected utility approach for marginal risk reduction during regulatory decision making.,2009,94,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress94.html#LiPKSD09,https://doi.org/10.1016/j.ress.2009.05.005 +Won Young Yun,Replacement and inspection policies for products with random life cycle.,2010,95,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress95.html#YunN10,https://doi.org/10.1016/j.ress.2009.09.003 +Diego J. Pedregal,RCM2 predictive maintenance of railway systems based on unobserved components models.,2004,83,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress83.html#PedregalGS04,https://doi.org/10.1016/j.ress.2003.09.020 +Gianluca De Sanctis,Risk-based optimisation of fire safety egress provisions based on the LQI acceptance criterion.,2016,152,Rel. Eng. and Sys. Safety,,db/journals/ress/ress152.html#SanctisF16,https://doi.org/10.1016/j.ress.2016.04.001 +Ji Ye Janet Lam,A myopic policy for optimal inspection scheduling for condition based maintenance.,2015,144,Rel. Eng. and Sys. Safety,,db/journals/ress/ress144.html#LamB15,https://doi.org/10.1016/j.ress.2015.06.009 +W. Yu,Parameter uncertainty effects on variance-based sensitivity analysis.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#YuH09,https://doi.org/10.1016/j.ress.2008.06.016 +A. C. Torres-Echeverría,Multi-objective optimization of design and testing of safety instrumented systems with MooN voting architectures using a genetic algorithm.,2012,106,Rel. Eng. and Sys. Safety,,db/journals/ress/ress106.html#Torres-EcheverriaMT12,https://doi.org/10.1016/j.ress.2012.03.010 +Katrina Groth,Hybrid causal methodology and software platform for probabilistic risk assessment and safety monitoring of socio-technical systems.,2010,95,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress95.html#GrothWM10,https://doi.org/10.1016/j.ress.2010.06.005 +Haitao Guo,A simple reliability block diagram method for safety integrity verification.,2007,92,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress92.html#GuoY07,https://doi.org/10.1016/j.ress.2006.08.002 +Pia Oedewald,Safety culture and subcontractor network governance in a complex safety critical project.,2015,141,Rel. Eng. and Sys. Safety,,db/journals/ress/ress141.html#OedewaldG15,https://doi.org/10.1016/j.ress.2015.03.016 +Michael Goldstein,The Bayes linear approach to inference and decision-making for a reliability programme.,2007,92,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress92.html#GoldsteinB07,https://doi.org/10.1016/j.ress.2006.09.010 +E. Borgonovo,A new uncertainty importance measure.,2007,92,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress92.html#Borgonovo07,https://doi.org/10.1016/j.ress.2006.04.015 +Ben J. M. Ale,Analysis of the crash of TK 1951 using CATS.,2010,95,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress95.html#AleBCAKMS10,https://doi.org/10.1016/j.ress.2009.11.014 +Vicki M. Bier,Methodology for identifying near-optimal interdiction strategies for a power transmission system.,2007,92,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress92.html#BierGHMW07,https://doi.org/10.1016/j.ress.2006.08.007 +Florent Brissaud,Dynamic reliability of digital-based transmitters.,2011,96,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress96.html#BrissaudSBB11,https://doi.org/10.1016/j.ress.2010.12.014 +Young-Joo Lee,Finite-element-based system reliability analysis of fatigue-induced sequential failures.,2012,108,Rel. Eng. and Sys. Safety,,db/journals/ress/ress108.html#LeeS12,https://doi.org/10.1016/j.ress.2012.05.007 +Blaise Conrard,Distributed system design based on dependability evaluation: a case study on a pilot thermal process.,2005,88,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress88.html#ConrardTR05,https://doi.org/10.1016/j.ress.2004.07.014 +Sahil Bansal,On the evaluation of multiple failure probability curves in reliability analysis with multiple performance functions.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#BansalC17,https://doi.org/10.1016/j.ress.2017.07.010 +Donald A. Dube,Application of risk informed safety margin characterization to extended power uprate analysis.,2014,129,Rel. Eng. and Sys. Safety,,db/journals/ress/ress129.html#DubeSGH14,https://doi.org/10.1016/j.ress.2014.04.008 +Sankaran Mahadevan,Validation of reliability computational models using Bayes networks.,2005,87,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress87.html#MahadevanR05,https://doi.org/10.1016/j.ress.2004.05.001 +R. Jiang,Composite scale modeling in the presence of censored data.,2006,91,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress91.html#JiangJ06,https://doi.org/10.1016/j.ress.2005.07.001 +Zhibin Tan,Estimation of component failure probability from masked binomial system testing data.,2005,88,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress88.html#Tan05,https://doi.org/10.1016/j.ress.2004.08.013 +Gregory Levitin,Connectivity evaluation and optimal service centers allocation in repairable linear consecutively connected systems.,2018,176,Rel. Eng. and Sys. Safety,,db/journals/ress/ress176.html#LevitinXD18c,https://doi.org/10.1016/j.ress.2018.04.012 +Wei-Chang Yeh,A simple minimal path method for estimating the weighted multi-commodity multistate unreliable networks reliability.,2008,93,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress93.html#Yeh08,https://doi.org/10.1016/j.ress.2006.11.004 +Zhiyao Zhao,A health performance prediction method of large-scale stochastic linear hybrid systems with small failure probability.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#ZhaoQC17,https://doi.org/10.1016/j.ress.2017.03.014 +Xuxue Sun,Bayesian latent degradation performance modeling and quantification of corroding aluminum alloys.,2018,178,Rel. Eng. and Sys. Safety,,db/journals/ress/ress178.html#SunMCZLL18,https://doi.org/10.1016/j.ress.2018.05.010 +John H. Bickel,Risk implications of digital reactor protection system operating experience.,2008,93,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress93.html#Bickel08,https://doi.org/10.1016/j.ress.2006.10.015 +Pedram Pourkarim Guilani,Redundancy allocation problem of a system with increasing failure rates of components based on Weibull distribution: A simulation-based optimization approach.,2016,152,Rel. Eng. and Sys. Safety,,db/journals/ress/ress152.html#GuilaniANN16,https://doi.org/10.1016/j.ress.2016.03.010 +Heungseob Kim,Maximization of system reliability with the consideration of component sequencing.,2018,170,Rel. Eng. and Sys. Safety,,db/journals/ress/ress170.html#Kim18,https://doi.org/10.1016/j.ress.2017.10.020 +Bjørn Axel Gran,Addressing dependability by applying an approach for model-based risk assessment.,2007,92,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress92.html#GranFT07,https://doi.org/10.1016/j.ress.2006.10.002 +Genserik Reniers,A game-theoretical approach for reciprocal security-related prevention investment decisions.,2010,95,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress95.html#ReniersS10,https://doi.org/10.1016/j.ress.2009.07.001 +Curtis B. Storlie,Multiple predictor smoothing methods for sensitivity analysis: Description of techniques.,2008,93,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress93.html#StorlieH08,https://doi.org/10.1016/j.ress.2006.10.012 +Lynda Nguyen,The construction of social identity in newly recruited nuclear engineering staff: A longitudinal study.,2014,131,Rel. Eng. and Sys. Safety,,db/journals/ress/ress131.html#NguyenMC14,https://doi.org/10.1016/j.ress.2014.05.007 +Suk-Joon Kim,A method for evaluating fault coverage using simulated fault injection for digitalized systems in nuclear power plants.,2006,91,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress91.html#KimSLKKJ06,https://doi.org/10.1016/j.ress.2005.05.002 +Anthony O'Hagan,Comments on articles in RESS special issue.,2008,93,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress93.html#OHagan08,https://doi.org/10.1016/j.ress.2008.02.008 +Rakesh Sehgal,Reliability evaluation and selection of rolling element bearings.,2000,68,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress68.html#SehgalGA00,https://doi.org/10.1016/S0951-8320(99)00081-2 +Mahmood Shafiee,An optimal age-based group maintenance policy for multi-unit degrading systems.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#ShafieeF15,https://doi.org/10.1016/j.ress.2014.09.016 +Tiedo Tinga,Application of physical failure models to enable usage and load based maintenance.,2010,95,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress95.html#Tinga10,https://doi.org/10.1016/j.ress.2010.04.015 +Xufeng Zhao,"Where does ""whichever occurs first"" hold for preventive maintenance modelings?",2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#ZhaoLN15,https://doi.org/10.1016/j.ress.2015.04.008 +Terje Aven,Selective critique of risk assessments with recommendations for improving methodology and practise.,2011,96,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress96.html#Aven11a,https://doi.org/10.1016/j.ress.2010.12.021 +C. Delenne,Uncertainty analysis of river flooding and dam failure risks using local sensitivity computations.,2012,107,Rel. Eng. and Sys. Safety,,db/journals/ress/ress107.html#DelenneCG12,https://doi.org/10.1016/j.ress.2012.04.007 +Enrico Cagno,Risk analysis of underground infrastructures in urban areas.,2011,96,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress96.html#CagnoAGT11,https://doi.org/10.1016/j.ress.2010.07.011 +Mohamad Samrout,New methods to minimize the preventive maintenance cost of series-parallel systems using ant colony optimization.,2005,89,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress89.html#SamroutYCC05,https://doi.org/10.1016/j.ress.2004.09.005 +Jose Emmanuel Ramirez-Marquez,Algorithm for estimating reliability confidence bounds of multi-state systems.,2008,93,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress93.html#Ramirez-MarquezL08,https://doi.org/10.1016/j.ress.2007.07.003 +E. J. C. Dupuits,Economic optimization of coastal flood defense systems.,2017,159,Rel. Eng. and Sys. Safety,,db/journals/ress/ress159.html#DupuitsSK17,https://doi.org/10.1016/j.ress.2016.10.027 +Pengfei Wei,Variable importance analysis: A comprehensive review.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#WeiLS15a,https://doi.org/10.1016/j.ress.2015.05.018 +Torbjørn Bjerga,Uncertainty treatment in risk analysis of complex systems: The cases of STAMP and FRAM.,2016,156,Rel. Eng. and Sys. Safety,,db/journals/ress/ress156.html#BjergaAZ16,https://doi.org/10.1016/j.ress.2016.08.004 +Shaomin Wu,A review on coarse warranty data and analysis.,2013,114,Rel. Eng. and Sys. Safety,,db/journals/ress/ress114.html#Wu13,https://doi.org/10.1016/j.ress.2012.12.021 +Ashutosh Gupta,Weibull extension model: A Bayes study using Markov chain Monte Carlo simulation.,2008,93,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress93.html#GuptaMU08,https://doi.org/10.1016/j.ress.2007.10.008 +Ferdinando Chiacchio,A Weibull-based compositional approach for hierarchical dynamic fault trees.,2013,109,Rel. Eng. and Sys. Safety,,db/journals/ress/ress109.html#ChiacchioCDMTC13,https://doi.org/10.1016/j.ress.2012.07.005 +Jianing Wu,Evaluating the reliability of multi-body mechanisms: A method considering the uncertainties of dynamic performance.,2016,149,Rel. Eng. and Sys. Safety,,db/journals/ress/ress149.html#WuYZ16,https://doi.org/10.1016/j.ress.2015.12.013 +Terje Aven,On the new ISO guide on risk management terminology.,2011,96,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress96.html#Aven11b,https://doi.org/10.1016/j.ress.2010.12.020 +Ari Antonovsky,System reliability as perceived by maintenance personnel on petroleum production facilities.,2016,152,Rel. Eng. and Sys. Safety,,db/journals/ress/ress152.html#AntonovskyPS16,https://doi.org/10.1016/j.ress.2016.03.002 +S. Rahman,Deterministic sampling for propagating epistemic and aleatory uncertainty in dynamic event tree analysis.,2018,175,Rel. Eng. and Sys. Safety,,db/journals/ress/ress175.html#RahmanKEWZD18,https://doi.org/10.1016/j.ress.2018.03.009 +T. Rivas,Explaining and predicting workplace accidents using data-mining techniques.,2011,96,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress96.html#RivasPMMGT11,https://doi.org/10.1016/j.ress.2011.03.006 +Thierry Alex Mara,Extension of the RBD-FAST method to the computation of global sensitivity indices.,2009,94,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress94.html#Mara09,https://doi.org/10.1016/j.ress.2009.01.012 +Jean-Yves Tissot,Bias correction for the estimation of sensitivity indices based on random balance designs.,2012,107,Rel. Eng. and Sys. Safety,,db/journals/ress/ress107.html#TissotP12,https://doi.org/10.1016/j.ress.2012.06.010 +Chang-Kue Park,A PSA-based vital area identification methodology development.,2003,82,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress82.html#ParkJYKGK03,https://doi.org/10.1016/S0951-8320(03)00139-X +Alexandre Gromann de Araújo Góes,NAROAS: a neural network-based advanced operator support system for the assessment of systems reliability.,2005,87,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress87.html#GoesAM05,https://doi.org/10.1016/j.ress.2004.01.010 +Ulrich Hauptmanns,A decision-making framework for protecting process plants from flooding based on fault tree analysis.,2010,95,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress95.html#Hauptmanns10,https://doi.org/10.1016/j.ress.2010.04.008 +William T. Scherer,The triangular density to approximate the normal density: decision rules-of-thumb.,2003,82,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress82.html#SchererPF03,https://doi.org/10.1016/j.ress.2003.08.003 +M. J. Rebollo,Evaluation of the offsite dose contribution to the global risk in a Steam Generator Tube Rupture scenario.,2016,147,Rel. Eng. and Sys. Safety,,db/journals/ress/ress147.html#RebolloQJGMS16,https://doi.org/10.1016/j.ress.2015.10.016 +Gordon J. Savage,The set-theory method for systems reliability of structures with degrading components.,2011,96,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress96.html#SavageS11,https://doi.org/10.1016/j.ress.2010.07.009 +Tae-eun Kim,Leading for safety: A weighted safety leadership model in shipping.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#KimG17,https://doi.org/10.1016/j.ress.2017.05.002 +Yves Dutuit,Approximate estimation of system reliability via fault trees.,2005,87,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress87.html#DutuitR05,https://doi.org/10.1016/j.ress.2004.02.008 +Fausto Pedro García Márquez,A digital filter-based approach to the remote condition monitoring of railway turnouts.,2007,92,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress92.html#MarquezS07,https://doi.org/10.1016/j.ress.2006.02.011 +Tieling Zhang,On the upper truncated Weibull distribution and its reliability implications.,2011,96,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress96.html#ZhangX11,https://doi.org/10.1016/j.ress.2010.09.004 +Yufei Lin,Online probabilistic operational safety assessment of multi-mode engineering systems using Bayesian methods.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#LinCZ13,https://doi.org/10.1016/j.ress.2013.05.018 +Olli Salmela,The effect of introducing increased-reliability-risk electronic components into 3rd generation telecommunications systems.,2005,89,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress89.html#Salmela05,https://doi.org/10.1016/j.ress.2004.08.020 +Filippo Domma,A new class of distribution functions for lifetime data.,2014,129,Rel. Eng. and Sys. Safety,,db/journals/ress/ress129.html#DommaC14,https://doi.org/10.1016/j.ress.2014.04.026 +Minjae Park,Optimal post-warranty maintenance policy with repair time threshold for minimal repair.,2013,111,Rel. Eng. and Sys. Safety,,db/journals/ress/ress111.html#ParkJP13,https://doi.org/10.1016/j.ress.2012.10.017 +Stefano Tarantola,Editorial.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#TarantolaS15,https://doi.org/10.1016/j.ress.2014.08.012 +You Ling,Quantitative model validation techniques: New insights.,2013,111,Rel. Eng. and Sys. Safety,,db/journals/ress/ress111.html#LingM13,https://doi.org/10.1016/j.ress.2012.11.011 +Najmus Saqib,Aggregation of safety performance indicators to higher-level indicators.,2008,93,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress93.html#SaqibS08,https://doi.org/10.1016/j.ress.2006.10.028 +Sanling Song,Reliability for systems of degrading components with distinct component shock sets.,2014,132,Rel. Eng. and Sys. Safety,,db/journals/ress/ress132.html#SongCF14,https://doi.org/10.1016/j.ress.2014.06.020 +Rastko Zivanovic,Global sensitivity analysis of transmission line fault-locating algorithms using sparse grid regression.,2012,107,Rel. Eng. and Sys. Safety,,db/journals/ress/ress107.html#Zivanovic12,https://doi.org/10.1016/j.ress.2011.12.005 +Allan Hedin,Probabilistic dose calculations and sensitivity analyses using analytic models.,2003,79,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress79.html#Hedin03,https://doi.org/10.1016/S0951-8320(02)00230-2 +Jens Körte,Risk-based emergency decision support.,2003,82,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress82.html#Korte03,https://doi.org/10.1016/S0951-8320(03)00165-0 +Jon C. Helton,Quantification of margins and uncertainties: Alternative representations of epistemic uncertainty.,2011,96,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress96.html#HeltonJ11,https://doi.org/10.1016/j.ress.2011.02.013 +Anne Isaac,Human error in European air traffic management: the HERA project.,2002,75,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress75.html#IsaacSK02,https://doi.org/10.1016/S0951-8320(01)00099-0 +Maurizio Bevilacqua,The analytic hierarchy process applied to maintenance strategy selection.,2000,70,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress70.html#BevilacquaB00,https://doi.org/10.1016/S0951-8320(00)00047-8 +Eija Myötyri,Application of stochastic filtering for lifetime prediction.,2006,91,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress91.html#MyotyriPS06,https://doi.org/10.1016/j.ress.2005.01.002 +H. Ward,Modelling the re-design decision for a warranted product.,2005,88,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress88.html#WardC05,https://doi.org/10.1016/j.ress.2004.07.005 +Claudio M. Rocco Sanseverino,Bi and tri-objective optimization in the deterministic network interdiction problem.,2010,95,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress95.html#SanseverinoRA10,https://doi.org/10.1016/j.ress.2010.03.008 +Andrei Sleptchenko,Joint optimization of redundancy level and spare part inventories.,2016,153,Rel. Eng. and Sys. Safety,,db/journals/ress/ress153.html#SleptchenkoH16,https://doi.org/10.1016/j.ress.2016.04.006 +Tomasz Nowakowski,Special Issue ESREL 2014.,2016,151,Rel. Eng. and Sys. Safety,,db/journals/ress/ress151.html#NowakowskiZ16,https://doi.org/10.1016/j.ress.2016.03.001 +Luis Angel García-Escudero,Assessing trends in Duane plots using robust fits.,2005,90,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress90.html#Garcia-EscuderoFDZ05,https://doi.org/10.1016/j.ress.2005.03.013 +Rui Peng,Reliability of multi-state systems with a performance sharing group of limited size.,2017,166,Rel. Eng. and Sys. Safety,,db/journals/ress/ress166.html#PengXL17,https://doi.org/10.1016/j.ress.2016.09.008 +Athena Zitrou,Bayes geometric scaling model for common cause failure rates.,2010,95,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress95.html#ZitrouBW10,https://doi.org/10.1016/j.ress.2009.08.002 +X. Wang,A probabilistic-based airframe integrity management model.,2009,94,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress94.html#WangRHMH09,https://doi.org/10.1016/j.ress.2008.10.010 +Wenbin Wang,A preventive maintenance model with a two-level inspection policy based on a three-stage failure process.,2014,121,Rel. Eng. and Sys. Safety,,db/journals/ress/ress121.html#WangZP14,https://doi.org/10.1016/j.ress.2013.08.007 +Ioannis Ioannou,Expert judgment-based fragility assessment of reinforced concrete buildings exposed to fire.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#IoannouARBR17,https://doi.org/10.1016/j.ress.2017.05.011 +C. W. Kang,An integrated method for comprehensive sensor network development in complex power plant systems.,2000,67,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress67.html#KangG00,https://doi.org/10.1016/S0951-8320(99)00039-3 +Dror Perlstein,Bayesian calculation of cost optimal burn-in test durations for mixed exponential populations.,2001,72,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress72.html#PerlsteinJM01,https://doi.org/10.1016/S0951-8320(01)00025-4 +Wei-Chang Yeh,An evaluation of the multi-state node networks reliability using the traditional binary-state networks reliability algorithm.,2003,81,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress81.html#Yeh03a,https://doi.org/10.1016/S0951-8320(03)00056-5 +K. S. Wang,Study of loading policies for unequal strength shared-load system.,2000,67,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress67.html#WangHTH00,https://doi.org/10.1016/S0951-8320(99)00057-5 +Gianluca Iaccarino,A QMU approach for characterizing the operability limits of air-breathing hypersonic vehicles.,2011,96,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress96.html#IaccarinoPGS11,https://doi.org/10.1016/j.ress.2010.06.030 +Xiuhong Jiang,Optimization of reliability centered predictive maintenance scheme for inertial navigation system.,2015,140,Rel. Eng. and Sys. Safety,,db/journals/ress/ress140.html#JiangDTW15,https://doi.org/10.1016/j.ress.2015.04.003 +Enrico Zio,Optimal power system generation scheduling by multi-objective genetic algorithms with preferences.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#ZioBP09,https://doi.org/10.1016/j.ress.2008.04.004 +Zhenglin Liang,On fault propagation in deterioration of multi-component systems.,2017,162,Rel. Eng. and Sys. Safety,,db/journals/ress/ress162.html#LiangPSR17,https://doi.org/10.1016/j.ress.2017.01.025 +Shanshan Fu,Towards a probabilistic model for predicting ship besetting in ice in Arctic waters.,2016,155,Rel. Eng. and Sys. Safety,,db/journals/ress/ress155.html#FuZMYZ16,https://doi.org/10.1016/j.ress.2016.06.010 +Maxim Finkelstein,On statistical and information-based virtual age of degrading systems.,2007,92,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress92.html#Finkelstein07a,https://doi.org/10.1016/j.ress.2006.03.001 +Francesco Cadini,A Bayesian Monte Carlo-based algorithm for the estimation of small failure probabilities of systems affected by uncertainties.,2016,153,Rel. Eng. and Sys. Safety,,db/journals/ress/ress153.html#CadiniG16,https://doi.org/10.1016/j.ress.2016.04.003 +Oswaldo Morales-Napoles,Response to Prof. O'Hagan.,2008,93,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress93.html#Morales-NapolesKR08,https://doi.org/10.1016/j.ress.2008.02.002 +Dawn An,Prognostics 101: A tutorial for particle filter-based prognostics algorithm using Matlab.,2013,115,Rel. Eng. and Sys. Safety,,db/journals/ress/ress115.html#AnCK13,https://doi.org/10.1016/j.ress.2013.02.019 +Bram de Jonge,The influence of practical factors on the benefits of condition-based maintenance over time-based maintenance.,2017,158,Rel. Eng. and Sys. Safety,,db/journals/ress/ress158.html#JongeTT17,https://doi.org/10.1016/j.ress.2016.10.002 +Robert P. Rechard,Assignment of probability distributions for parameters in the 1996 performance assessment for the Waste Isolation Pilot Plant. Part 2. Application of process.,2005,88,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress88.html#RechardT05a,https://doi.org/10.1016/j.ress.2004.07.012 +Yi-Feng Niu,A new efficient algorithm for finding all d-minimal cuts in multi-state networks.,2017,166,Rel. Eng. and Sys. Safety,,db/journals/ress/ress166.html#NiuGL17,https://doi.org/10.1016/j.ress.2017.05.032 +Gerardus Cornelius Avontuur,Systems reliability analysis of mechanical and hydraulic drive systems.,2002,77,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress77.html#AvontuurW02,https://doi.org/10.1016/S0951-8320(02)00039-X +Anatoly Lisnianski,Estimation of boundary points for continuum-state system reliability measures.,2001,74,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress74.html#Lisnianski01,https://doi.org/10.1016/S0951-8320(01)00066-7 +SeDo Sohn,Testing digital safety system software with a testability measure based on a software fault tree.,2006,91,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress91.html#SohnS06,https://doi.org/10.1016/j.ress.2004.11.015 +Maurice Pendola,Combination of finite element and reliability methods in nonlinear fracture mechanics.,2000,70,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress70.html#PendolaMLH00,https://doi.org/10.1016/S0951-8320(00)00043-0 +Lufeng Zhao,Validation metric based on Mahalanobis distance for models with multiple correlated responses.,2017,159,Rel. Eng. and Sys. Safety,,db/journals/ress/ress159.html#ZhaoLYW17,https://doi.org/10.1016/j.ress.2016.10.016 +Paolo Trucco,Topological risk mapping of runway overruns: A probabilistic approach.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#TruccoAL15,https://doi.org/10.1016/j.ress.2015.06.006 +Chris W. Johnson 0001,A survey of logic formalisms to support mishap analysis.,2003,80,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress80.html#JohnsonH03,https://doi.org/10.1016/S0951-8320(03)00053-X +Yao Cheng,Reliability modeling and optimization of operational use of one-shot units.,2018,176,Rel. Eng. and Sys. Safety,,db/journals/ress/ress176.html#ChengE18,https://doi.org/10.1016/j.ress.2018.03.021 +Yuchang Mo,Can we trust module-respect heuristics?,2013,111,Rel. Eng. and Sys. Safety,,db/journals/ress/ress111.html#Mo13,https://doi.org/10.1016/j.ress.2012.11.005 +Maxim Finkelstein,Virtual age of non-repairable objects.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#Finkelstein09,https://doi.org/10.1016/j.ress.2008.02.012 +Zhiqiang Cai,Optimization of linear consecutive-k-out-of-n system with a Birnbaum importance-based genetic algorithm.,2016,152,Rel. Eng. and Sys. Safety,,db/journals/ress/ress152.html#CaiSSL16,https://doi.org/10.1016/j.ress.2016.03.016 +Shahrzad Faghih-Roohi,Dynamic availability assessment and optimal component design of multi-state weighted k-out-of-n systems.,2014,123,Rel. Eng. and Sys. Safety,,db/journals/ress/ress123.html#Faghih-Roohi0NY14,https://doi.org/10.1016/j.ress.2013.10.002 +Pierre-Jacques Courtois,On the optimal scheduling of periodic tests and maintenance for reliable redundant components.,2006,91,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress91.html#CourtoisD06,https://doi.org/10.1016/j.ress.2004.11.013 +Mindaugas Snipas,Modeling reliability of power systems substations by using stochastic automata networks.,2017,157,Rel. Eng. and Sys. Safety,,db/journals/ress/ress157.html#SnipasRV17,https://doi.org/10.1016/j.ress.2016.08.006 +Siwar Kriaa,A survey of approaches combining safety and security for industrial control systems.,2015,139,Rel. Eng. and Sys. Safety,,db/journals/ress/ress139.html#KriaaPBH15,https://doi.org/10.1016/j.ress.2015.02.008 +James M. Armstrong,The deconstruction of safety arguments through adversarial counter-argument.,2007,92,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress92.html#ArmstrongP07,https://doi.org/10.1016/j.ress.2006.10.004 +Eftychia C. Marcoulaki,Quantitative safety assessment of pressure control failure in a deep underground large scale cryogenic installation.,2016,151,Rel. Eng. and Sys. Safety,,db/journals/ress/ress151.html#MarcoulakiVP16,https://doi.org/10.1016/j.ress.2016.01.012 +Francesco Flammini,SAFECOMP'11 post-conference special issue.,2013,120,Rel. Eng. and Sys. Safety,,db/journals/ress/ress120.html#FlamminiV13,https://doi.org/10.1016/j.ress.2013.06.019 +Yiliu Liu,Reliability effects of test strategies on safety-instrumented systems in different demand modes.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#LiuR13,https://doi.org/10.1016/j.ress.2013.06.035 +Krzysztof Kolowrocki,Special Issue on ESREL 2005.,2007,92,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress92.html#KolowrockiS07,https://doi.org/10.1016/j.ress.2007.03.008 +D. Bocchetti,A competing risk model for the reliability of cylinder liners in marine Diesel engines.,2009,94,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress94.html#BocchettiGGP09,https://doi.org/10.1016/j.ress.2009.01.010 +Enrico Zio,Estimation of the importance measures of multi-state elements by Monte Carlo simulation.,2004,86,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress86.html#ZioPL04,https://doi.org/10.1016/j.ress.2004.01.009 +Gregory Levitin,Optimizing availability of heterogeneous standby systems exposed to shocks.,2018,170,Rel. Eng. and Sys. Safety,,db/journals/ress/ress170.html#LevitinFD18,https://doi.org/10.1016/j.ress.2017.10.021 +Katrina Groth,A data-informed PIF hierarchy for model-based Human Reliability Analysis.,2012,108,Rel. Eng. and Sys. Safety,,db/journals/ress/ress108.html#GrothM12,https://doi.org/10.1016/j.ress.2012.08.006 +Serkan Eryilmaz,The effectiveness of adding cold standby redundancy to a coherent system at system and component levels.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#Eryilmaz17,https://doi.org/10.1016/j.ress.2017.04.021 +Niels Lind,Discounting risks in the far future.,2007,92,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress92.html#Lind07,https://doi.org/10.1016/j.ress.2006.09.001 +Chin-Yu Huang,An improved decomposition scheme for assessing the reliability of embedded systems by using dynamic fault trees.,2007,92,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress92.html#HuangC07,https://doi.org/10.1016/j.ress.2006.09.008 +Maxim Finkelstein,On dependent items in series in different environments.,2013,109,Rel. Eng. and Sys. Safety,,db/journals/ress/ress109.html#Finkelstein13,https://doi.org/10.1016/j.ress.2012.08.005 +Michael D. Shields,Adaptive Monte Carlo analysis for strongly nonlinear stochastic systems.,2018,175,Rel. Eng. and Sys. Safety,,db/journals/ress/ress175.html#Shields18,https://doi.org/10.1016/j.ress.2018.03.018 +Woo Sik Jung,Development of measures to estimate truncation error in fault tree analysis.,2005,90,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress90.html#JungYH05,https://doi.org/10.1016/j.ress.2004.09.007 +Marc Sachon,Delays and safety in airline maintenance.,2000,67,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress67.html#SachonP00,https://doi.org/10.1016/S0951-8320(99)00062-9 +Torgeir Moan,Reliability-based assessment of deteriorating ship structures operating in multiple sea loading climates.,2008,93,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress93.html#MoanA08,https://doi.org/10.1016/j.ress.2006.12.008 +Seraphin C. Abou,Performance assessment of multi-state systems with critical failure modes: Application to the flotation metallic arsenic circuit.,2010,95,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress95.html#Abou10,https://doi.org/10.1016/j.ress.2010.01.010 +William Keller,A historical overview of probabilistic risk assessment development and its use in the nuclear power industry: a tribute to the late Professor Norman Carl Rasmussen.,2005,89,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress89.html#KellerM05,https://doi.org/10.1016/j.ress.2004.08.022 +Y. H. J. Chang,Cognitive modeling and dynamic probabilistic simulation of operating crew response to complex system accidents. Part 2: IDAC performance influencing factors model.,2007,92,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress92.html#ChangM07a,https://doi.org/10.1016/j.ress.2006.05.010 +Paul Kalungi,Redundancy model for water distribution systems.,2003,82,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress82.html#KalungiT03,https://doi.org/10.1016/S0951-8320(03)00168-6 +Tadakuni Hakata,Seismic PSA method for multiple nuclear power plants in a site.,2007,92,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress92.html#Hakata07,https://doi.org/10.1016/j.ress.2006.04.022 +Wei Luo,Accelerated reliability demonstration under competing failure modes.,2015,136,Rel. Eng. and Sys. Safety,,db/journals/ress/ress136.html#LuoZCT15,https://doi.org/10.1016/j.ress.2014.11.014 +Miroslav Sýkora,Bayesian network application for the risk assessment of existing energy production units.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#SykoraMD18,https://doi.org/10.1016/j.ress.2017.09.006 +Peng Liu,Identifying key performance shaping factors in digital main control rooms of nuclear power plants: A risk-based approach.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#LiuLQHTZL17,https://doi.org/10.1016/j.ress.2017.06.002 +Lorenzo Traldi,Non-minimal sums of disjoint products.,2006,91,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress91.html#Traldi06,https://doi.org/10.1016/j.ress.2005.03.016 +Athena Zitrou,A model for availability growth with application to new generation offshore wind farms.,2016,152,Rel. Eng. and Sys. Safety,,db/journals/ress/ress152.html#ZitrouBW16,https://doi.org/10.1016/j.ress.2015.12.004 +Xian Zhao,Reliability and maintenance policies for a two-stage shock model with self-healing mechanism.,2018,172,Rel. Eng. and Sys. Safety,,db/journals/ress/ress172.html#ZhaoGW18,https://doi.org/10.1016/j.ress.2017.12.013 +Nima Khakzad,Using graph theory to analyze the vulnerability of process plants in the context of cascading effects.,2015,143,Rel. Eng. and Sys. Safety,,db/journals/ress/ress143.html#KhakzadR15,https://doi.org/10.1016/j.ress.2015.04.015 +Nan Zhang 0017,Maintenance analysis of a two-component load-sharing system.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#ZhangFB17,https://doi.org/10.1016/j.ress.2017.05.027 +Nan Cen,Adopting HLA standard for interdependency study.,2011,96,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress96.html#CenE11,https://doi.org/10.1016/j.ress.2010.08.002 +Wen Yao,An enhanced unified uncertainty analysis approach based on first order reliability method with single-level optimization.,2013,116,Rel. Eng. and Sys. Safety,,db/journals/ress/ress116.html#YaoCHT13,https://doi.org/10.1016/j.ress.2013.02.014 +Enrico Zio,A framework for the system-of-systems analysis of the risk for a safety-critical plant exposed to external events.,2013,114,Rel. Eng. and Sys. Safety,,db/journals/ress/ress114.html#ZioF13,https://doi.org/10.1016/j.ress.2013.01.005 +Francisco Germán Badía,Optimal inspection and preventive maintenance of units with revealed and unrevealed failures.,2002,78,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress78.html#BadiaBC02,https://doi.org/10.1016/S0951-8320(02)00154-0 +Amandine Marrel,Calculations of Sobol indices for the Gaussian process metamodel.,2009,94,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress94.html#MarrelILR09,https://doi.org/10.1016/j.ress.2008.07.008 +Enrico Zio,Functional failure analysis of a thermal-hydraulic passive system by means of Line Sampling.,2009,94,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress94.html#ZioP09a,https://doi.org/10.1016/j.ress.2009.05.010 +Lu Chen,Using Vector Projection Method to evaluate maintainability of mechanical system in design review.,2003,81,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress81.html#ChenC03,https://doi.org/10.1016/S0951-8320(03)00075-9 +Yann Dijoux,A virtual age model based on a bathtub shaped initial intensity.,2009,94,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress94.html#Dijoux09,https://doi.org/10.1016/j.ress.2008.11.004 +Josko Parunov,Effects of Common Structural Rules on hull-girder reliability of an Aframax oil tanker.,2008,93,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress93.html#ParunovS08,https://doi.org/10.1016/j.ress.2007.07.011 +Yiqian Cui,An analytical model of electronic fault diagnosis on extension of the dependency theory.,2015,133,Rel. Eng. and Sys. Safety,,db/journals/ress/ress133.html#CuiSW15,https://doi.org/10.1016/j.ress.2014.09.015 +Jussi K. Vaurio,"Corrigendum to ""Evaluation and comparison of estimation methods for failure rates and probabilities"": [Reliability Engineering and System Safety 91(2) (2006) 209-221].",2007,92,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress92.html#VaurioJ07,https://doi.org/10.1016/j.ress.2006.01.001 +Harry Millwater,Development of a localized probabilistic sensitivity method to determine random variable regional importance.,2012,107,Rel. Eng. and Sys. Safety,,db/journals/ress/ress107.html#MillwaterSC12,https://doi.org/10.1016/j.ress.2011.04.003 +Dusko Kancev,Time-dependent unavailability of equipment in an ageing NPP: Sensitivity study of a developed model.,2016,148,Rel. Eng. and Sys. Safety,,db/journals/ress/ress148.html#KancevGVC16,https://doi.org/10.1016/j.ress.2015.11.014 +Luca Campioni,On system failure probability density function.,2007,92,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress92.html#CampioniV07,https://doi.org/10.1016/j.ress.2006.09.002 +Lev V. Utkin,A robust weighted SVR-based software reliability growth model.,2018,176,Rel. Eng. and Sys. Safety,,db/journals/ress/ress176.html#UtkinC18,https://doi.org/10.1016/j.ress.2018.04.007 +Julien Baussaron,Reliability assessment based on degradation measurements: How to compare some models?,2014,131,Rel. Eng. and Sys. Safety,,db/journals/ress/ress131.html#BaussaronBGGS14,https://doi.org/10.1016/j.ress.2014.04.011 +Cen Nan,A quantitative method for assessing resilience of interdependent infrastructures.,2017,157,Rel. Eng. and Sys. Safety,,db/journals/ress/ress157.html#NanS17,https://doi.org/10.1016/j.ress.2016.08.013 +Enrico Zio,Selected papers from ESREL 2001.,2002,77,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress77.html#Zio02,https://doi.org/10.1016/S0951-8320(02)00054-6 +Yiannis Papadopoulos,Analysis and synthesis of the behaviour of complex programmable electronic systems in conditions of failure.,2001,71,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress71.html#PapadopoulosMSH01,https://doi.org/10.1016/S0951-8320(00)00076-4 +Shui Yu,Sequential time-dependent reliability analysis for the lower extremity exoskeleton under uncertainty.,2018,170,Rel. Eng. and Sys. Safety,,db/journals/ress/ress170.html#YuWZ18,https://doi.org/10.1016/j.ress.2017.10.006 +Shi-Woei Lin,A study of expert overconfidence.,2008,93,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress93.html#LinB08,https://doi.org/10.1016/j.ress.2007.03.014 +Jakub Montewka,A framework for risk assessment for maritime transportation systems - A case study for open sea collisions involving RoPax vessels.,2014,124,Rel. Eng. and Sys. Safety,,db/journals/ress/ress124.html#MontewkaEGHTK14,https://doi.org/10.1016/j.ress.2013.11.014 +Juan Eloy Ruiz-Castro,Markov counting and reward processes for analysing the performance of a complex system subject to random inspections.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#Ruiz-Castro16,https://doi.org/10.1016/j.ress.2015.09.004 +Willem van Jaarsveld,Spare parts stock control for redundant systems using reliability centered maintenance data.,2011,96,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress96.html#JaarsveldD11,https://doi.org/10.1016/j.ress.2011.06.015 +Ahmed-Tidjani Belmansour,An aggregation method for performance evaluation of a tandem homogenous production line with machines having multiple failure modes.,2010,95,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress95.html#BelmansourN10,https://doi.org/10.1016/j.ress.2010.05.002 +Y. Langeron,A modeling framework for deteriorating control system and predictive maintenance of actuators.,2015,140,Rel. Eng. and Sys. Safety,,db/journals/ress/ress140.html#LangeronGB15,https://doi.org/10.1016/j.ress.2015.03.028 +Xiaojun Zhou,Reliability-centered predictive maintenance scheduling for a continuously monitored system subject to degradation.,2007,92,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress92.html#ZhouXL07,https://doi.org/10.1016/j.ress.2006.01.006 +S. D. Sonal,Experimental estimation of time variant system reliability of vibrating structures based on subset simulation with Markov chain splitting.,2018,178,Rel. Eng. and Sys. Safety,,db/journals/ress/ress178.html#SonalAKM18,https://doi.org/10.1016/j.ress.2018.05.007 +Ji Hwan Cha,On preventive maintenance of systems with life* dependent on a random shock process.,2017,168,Rel. Eng. and Sys. Safety,,db/journals/ress/ress168.html#ChaFL17,https://doi.org/10.1016/j.ress.2017.03.023 +Márcio das Chagas Moura,Analysis of extended warranties for medical equipment: A Stackelberg game model using priority queues.,2017,168,Rel. Eng. and Sys. Safety,,db/journals/ress/ress168.html#MouraSDLG17,https://doi.org/10.1016/j.ress.2017.05.040 +Robby Christian,Probabilistic risk assessment on maritime spent nuclear fuel transportation (Part II: Ship collision probability).,2017,164,Rel. Eng. and Sys. Safety,,db/journals/ress/ress164.html#ChristianK17a,https://doi.org/10.1016/j.ress.2016.11.017 +J. Andrés Christen,Utility based maintenance analysis using a Random Sign censoring model.,2011,96,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress96.html#ChristenRV11,https://doi.org/10.1016/j.ress.2010.11.001 +Gregory Levitin,Reliability of acyclic multi-state networks with constant transmission characteristics of lines.,2002,78,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress78.html#Levitin02f,https://doi.org/10.1016/S0951-8320(02)00173-4 +Thierry Crestaux,Polynomial chaos expansion for sensitivity analysis.,2009,94,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress94.html#CrestauxMM09,https://doi.org/10.1016/j.ress.2008.10.008 +El-Houssaine Aghezzaf,Optimizing production and imperfect preventive maintenance planning's integration in failure-prone manufacturing systems.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#AghezzafKT16,https://doi.org/10.1016/j.ress.2015.09.017 +Youngsuk Kim,Network reliability analysis of complex systems using a non-simulation-based method.,2013,110,Rel. Eng. and Sys. Safety,,db/journals/ress/ress110.html#KimK13,https://doi.org/10.1016/j.ress.2012.09.012 +Alejandro D. Domínguez-García,An integrated methodology for the dynamic performance and reliability evaluation of fault-tolerant systems.,2008,93,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress93.html#Dominguez-GarciaKSZ08,https://doi.org/10.1016/j.ress.2008.01.007 +Ji Hwan Cha,On some properties of shock processes in a 'natural' scale.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#ChaF16,https://doi.org/10.1016/j.ress.2015.09.009 +V. Matuzas,Dynamic labelling of BDD and ZBDD for efficient non-coherent fault tree analysis.,2015,144,Rel. Eng. and Sys. Safety,,db/journals/ress/ress144.html#MatuzasC15,https://doi.org/10.1016/j.ress.2015.07.012 +H. ø. Madsen,Securing the operational reliability of an autonomous mini-submarine.,2000,68,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress68.html#MadsenCL00,https://doi.org/10.1016/S0951-8320(99)00077-0 +Sebastián Martorell,Constrained optimization of test intervals using a steady-state genetic algorithm.,2000,67,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress67.html#MartorellCSS00,https://doi.org/10.1016/S0951-8320(99)00074-5 +Sarah LaRocca,Characterizing and predicting the robustness of power-law networks.,2015,133,Rel. Eng. and Sys. Safety,,db/journals/ress/ress133.html#LaRoccaG15,https://doi.org/10.1016/j.ress.2014.07.023 +Antonella Certa,Determination of Pareto frontier in multi-objective maintenance optimization.,2011,96,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress96.html#CertaGLP11,https://doi.org/10.1016/j.ress.2010.12.019 +Terje Aven,Special issue of selected articles from ESREL 2012.,2014,125,Rel. Eng. and Sys. Safety,,db/journals/ress/ress125.html#Aven14,https://doi.org/10.1016/j.ress.2014.01.011 +Zineb Simeu-Abazi,Optimisation of distributed maintenance: Modelling and application to the multi-factory production.,2011,96,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress96.html#Simeu-AbaziA11,https://doi.org/10.1016/j.ress.2011.05.011 +E. Borgonovo,On the importance of uncertain factors in seismic fragility assessment.,2013,109,Rel. Eng. and Sys. Safety,,db/journals/ress/ress109.html#BorgonovoZPTR13,https://doi.org/10.1016/j.ress.2012.08.007 +Shaomin Wu,Editorial.,2017,168,Rel. Eng. and Sys. Safety,,db/journals/ress/ress168.html#WuD17,https://doi.org/10.1016/j.ress.2017.09.004 +V. S. Deshpande,Maintenance strategy for tilting table of rolling mill based on reliability considerations.,2003,80,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress80.html#DeshpandeM03,https://doi.org/10.1016/S0951-8320(02)00152-7 +R. Tyrrell Rockafellar,On buffered failure probability in design and optimization of structures.,2010,95,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress95.html#RockafellarR10,https://doi.org/10.1016/j.ress.2010.01.001 +Taeho Kim,Formal verification of functional properties of a SCR-style software requirements specification using PVS.,2005,87,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress87.html#KimSC05,https://doi.org/10.1016/j.ress.2004.06.005 +Alireza Maheri,A critical evaluation of deterministic methods in size optimisation of reliable and cost effective standalone hybrid renewable energy systems.,2014,130,Rel. Eng. and Sys. Safety,,db/journals/ress/ress130.html#Maheri14,https://doi.org/10.1016/j.ress.2014.05.008 +Geng Feng,Imprecise system reliability and component importance based on survival signature.,2016,150,Rel. Eng. and Sys. Safety,,db/journals/ress/ress150.html#FengPBC16,https://doi.org/10.1016/j.ress.2016.01.019 +M. R. Valaei,Allocation and sequencing in 1-out-of-N heterogeneous cold-standby systems: Multi-objective harmony search with dynamic parameters tuning.,2017,157,Rel. Eng. and Sys. Safety,,db/journals/ress/ress157.html#ValaeiB17,https://doi.org/10.1016/j.ress.2016.08.022 +Michael Galetakis,Reprint of: Production scheduling of a lignite mine under quality and reserves uncertainty.,2012,107,Rel. Eng. and Sys. Safety,,db/journals/ress/ress107.html#GaletakisRAV12,https://doi.org/10.1016/j.ress.2012.08.001 +K. B. Sullivan,Using neural networks to assess flight deck human-automation interaction.,2013,114,Rel. Eng. and Sys. Safety,,db/journals/ress/ress114.html#SullivanFMDFPMM13,https://doi.org/10.1016/j.ress.2012.12.005 +Yuo-Tern Tsai,A study of availability-centered preventive maintenance for multi-component systems.,2004,84,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress84.html#TsaiWT04,https://doi.org/10.1016/j.ress.2003.11.011 +Julien Piwowar,An efficient process to reduce infrastructure vulnerabilities facing malevolence.,2009,94,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress94.html#PiwowarCL09,https://doi.org/10.1016/j.ress.2009.06.009 +Rob P. Rechard,Results from past performance assessments for the Yucca Mountain disposal system for spent nuclear fuel and high-level radioactive waste.,2014,122,Rel. Eng. and Sys. Safety,,db/journals/ress/ress122.html#Rechard14,https://doi.org/10.1016/j.ress.2013.06.030 +Edgar McGuinness,A systems engineering approach to implementation of safety management systems in the Norwegian fishing fleet.,2014,121,Rel. Eng. and Sys. Safety,,db/journals/ress/ress121.html#McGuinnessU14,https://doi.org/10.1016/j.ress.2013.08.002 +Kilyoo Kim,On the use of the Balancing Method for calculating component RAW involving CCFs in SSC categorization.,2005,87,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress87.html#KimKY05,https://doi.org/10.1016/j.ress.2004.04.017 +Marco Macchi,Maintenance management of railway infrastructures based on reliability analysis.,2012,104,Rel. Eng. and Sys. Safety,,db/journals/ress/ress104.html#MacchiGCFP12,https://doi.org/10.1016/j.ress.2012.03.017 +Alan Klanac,Design of marine structures with improved safety for environment.,2011,96,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress96.html#KlanacV11,https://doi.org/10.1016/j.ress.2010.06.016 +Saideep Nannapaneni,Reliability analysis under epistemic uncertainty.,2016,155,Rel. Eng. and Sys. Safety,,db/journals/ress/ress155.html#NannapaneniM16,https://doi.org/10.1016/j.ress.2016.06.005 +Xiaoxiao Hu,Multiple cyber attacks against a target with observation errors and dependent outcomes: Characterization and optimization.,2017,159,Rel. Eng. and Sys. Safety,,db/journals/ress/ress159.html#HuXXZ17,https://doi.org/10.1016/j.ress.2016.10.025 +Andrea Bobbio,Unavailability of critical SCADA communication links interconnecting a power grid and a Telco network.,2010,95,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress95.html#BobbioBCCIMSTZ10,https://doi.org/10.1016/j.ress.2010.06.011 +Delia Montoro-Cazorla,Replacement policy in a system under shocks following a Markovian arrival process.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#Montoro-CazorlaPS09,https://doi.org/10.1016/j.ress.2008.06.007 +V. M. Hoepfer,On the value of redundancy subject to common-cause failures: Toward the resolution of an on-going debate.,2009,94,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress94.html#HoepferSM09,https://doi.org/10.1016/j.ress.2009.06.007 +Tai-Ran Wang,Identification of protective actions to reduce the vulnerability of safety-critical systems to malevolent acts: A sensitivity-based decision-making approach.,2016,147,Rel. Eng. and Sys. Safety,,db/journals/ress/ress147.html#WangPZ16,https://doi.org/10.1016/j.ress.2015.09.005 +Gregory Levitin,Linear multistate consecutively-connected systems subject to a constrained number of gaps.,2015,133,Rel. Eng. and Sys. Safety,,db/journals/ress/ress133.html#LevitinXD15,https://doi.org/10.1016/j.ress.2014.09.004 +Jianmin Zhao,Reliability evaluation and optimisation of imperfect inspections for a component with multi-defects.,2007,92,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress92.html#ZhaoCRM07,https://doi.org/10.1016/j.ress.2005.11.003 +Molham Darwish,The integration of expert-defined importance factors to enrich Bayesian Fault Tree Analysis.,2017,162,Rel. Eng. and Sys. Safety,,db/journals/ress/ress162.html#DarwishAL17,https://doi.org/10.1016/j.ress.2017.01.007 +Gabriele Landucci,Vulnerability of industrial facilities to attacks with improvised explosive devices aimed at triggering domino scenarios.,2015,143,Rel. Eng. and Sys. Safety,,db/journals/ress/ress143.html#LanducciRCS15,https://doi.org/10.1016/j.ress.2015.03.004 +Alberto Pasquini,A critical view of severity classification in risk assessment methods.,2011,96,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress96.html#PasquiniPS11,https://doi.org/10.1016/j.ress.2010.06.029 +Joshua Matthew Whitcombe,Application of sensitivity analysis to oil refinery emissions.,2003,79,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress79.html#WhitcombeCBA03,https://doi.org/10.1016/S0951-8320(02)00232-6 +Ramin Moghaddass,Availability of a general k-out-of-n: G system with non-identical components considering shut-off rules using quasi-birth-death process.,2011,96,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress96.html#MoghaddassZW11,https://doi.org/10.1016/j.ress.2010.12.001 +Junbo Son,Remaining useful life prediction based on noisy condition monitoring signals using constrained Kalman filter.,2016,152,Rel. Eng. and Sys. Safety,,db/journals/ress/ress152.html#SonZSDZ16,https://doi.org/10.1016/j.ress.2016.02.006 +Yoshio Kawauchi,A new approach to production regularity assessment in the oil and chemical industries.,2002,75,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress75.html#KawauchiR02,https://doi.org/10.1016/S0951-8320(01)00130-2 +M. Farcasiu,MMOSA - A new approach of the human and organizational factor analysis in PSA.,2014,123,Rel. Eng. and Sys. Safety,,db/journals/ress/ress123.html#FarcasiuP14,https://doi.org/10.1016/j.ress.2013.10.004 +Nicolás J. Scenna,Road risk analysis due to the transportation of chlorine in Rosario city.,2005,90,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress90.html#ScennaC05,https://doi.org/10.1016/j.ress.2004.11.004 +Shital A. Thekdi,An enhanced data-analytic framework for integrating risk management and performance management.,2016,156,Rel. Eng. and Sys. Safety,,db/journals/ress/ress156.html#ThekdiA16,https://doi.org/10.1016/j.ress.2016.07.010 +Moussa Traore,Supervision and prognosis architecture based on dynamical classification method for the predictive maintenance of dynamical evolving systems.,2015,136,Rel. Eng. and Sys. Safety,,db/journals/ress/ress136.html#TraoreCD15,https://doi.org/10.1016/j.ress.2014.12.005 +Daniele Codetta Raiteri,Integrating several formalisms in order to increase Fault Trees' modeling power.,2011,96,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress96.html#Raiteri11,https://doi.org/10.1016/j.ress.2010.12.027 +Sidonie Lefebvre,A methodological approach for statistical evaluation of aircraft infrared signature.,2010,95,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress95.html#LefebvreRVD10,https://doi.org/10.1016/j.ress.2009.12.002 +Nick Eleftheroglou,Structural health monitoring data fusion for in-situ life prognosis of composite structures.,2018,178,Rel. Eng. and Sys. Safety,,db/journals/ress/ress178.html#EleftheroglouZL18,https://doi.org/10.1016/j.ress.2018.04.031 +Jason R. W. Merrick,A traffic density analysis of proposed ferry service expansion in San Francisco Bay using a maritime simulation model.,2003,81,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress81.html#MerrickDBSHM03,https://doi.org/10.1016/S0951-8320(03)00054-1 +Gregory Levitin,Optimal allocation of multi-state retransmitters in acyclic transmission networks.,2002,75,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress75.html#Levitin02,https://doi.org/10.1016/S0951-8320(01)00114-4 +T. Aoki,Seismic vulnerability assessment of chemical plants through probabilistic neural networks.,2002,77,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress77.html#AokiCSGS02,https://doi.org/10.1016/S0951-8320(02)00059-5 +Veronica L. Foreman,Software in military aviation and drone mishaps: Analysis and recommendations for the investigation process.,2015,137,Rel. Eng. and Sys. Safety,,db/journals/ress/ress137.html#ForemanFSJ15,https://doi.org/10.1016/j.ress.2015.01.006 +Liangwei Zhang,An angle-based subspace anomaly detection approach to high-dimensional data: With an application to industrial fault detection.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#ZhangLK15,https://doi.org/10.1016/j.ress.2015.05.025 +Francesco Flammini,A new modeling approach to the safety evaluation of N-modular redundant computer systems in presence of imperfect maintenance.,2009,94,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress94.html#FlamminiMMV09,https://doi.org/10.1016/j.ress.2009.02.014 +Pedro Antão,Causal factors in accidents of high-speed craft and conventional ocean-going vessels.,2008,93,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress93.html#AntaoS08,https://doi.org/10.1016/j.ress.2007.07.010 +Gabrielle de Brito,Towards a model for the study of written procedure following in dynamic environments.,2002,75,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress75.html#Brito02,https://doi.org/10.1016/S0951-8320(01)00097-7 +José F. Villanueva,Genetic algorithm-based optimization of testing and maintenance under uncertain unavailability and cost estimation: A survey of strategies for harmonizing evolution and accuracy.,2008,93,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress93.html#VillanuevaSCM08,https://doi.org/10.1016/j.ress.2008.03.014 +Yuchang Mo,Performability analysis of multi-state series-parallel systems with heterogeneous components.,2018,171,Rel. Eng. and Sys. Safety,,db/journals/ress/ress171.html#MoLC18,https://doi.org/10.1016/j.ress.2017.10.023 +Ada Fort,Hidden Markov Models approach used for life parameters estimations.,2015,136,Rel. Eng. and Sys. Safety,,db/journals/ress/ress136.html#FortMV15,https://doi.org/10.1016/j.ress.2014.11.017 +Eduyn López-Santana,On the combined maintenance and routing optimization problem.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#Lopez-SantanaAD16,https://doi.org/10.1016/j.ress.2015.09.016 +Shihu Xiang,Performance reliability evaluation for mobile ad hoc networks.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#XiangY18,https://doi.org/10.1016/j.ress.2017.08.001 +Joaquim F. Silva,Finding occupational accident patterns in the extractive industry using a systematic data mining approach.,2012,108,Rel. Eng. and Sys. Safety,,db/journals/ress/ress108.html#SilvaJ12,https://doi.org/10.1016/j.ress.2012.07.001 +Enrico Zio,Optimization of the inspection intervals of a safety system in a nuclear power plant by Multi-Objective Differential Evolution (MODE).,2011,96,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress96.html#ZioV11,https://doi.org/10.1016/j.ress.2011.06.010 +Robert E. Melchers,Rational optimization of reliability and safety policies.,2001,73,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress73.html#Melchers01a,https://doi.org/10.1016/S0951-8320(01)00051-5 +Peter Söderholm,A system view of the No Fault Found (NFF) phenomenon.,2007,92,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress92.html#Soderholm07,https://doi.org/10.1016/j.ress.2005.11.004 +M. van der Borst,An overview of PSA importance measures.,2001,72,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress72.html#BorstS01,https://doi.org/10.1016/S0951-8320(01)00007-2 +Nadia Pérot,Functional Weibull-based models of steel fracture toughness for structural risk analysis: estimation and selection.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#PerotB17,https://doi.org/10.1016/j.ress.2017.04.024 +Julien Clavareau,Maintenance and replacement policies under technological obsolescence.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#ClavareauL09a,https://doi.org/10.1016/j.ress.2008.03.033 +Matthew McCarter,A bi-objective formulation for robust defense strategies in multi-commodity networks.,2018,176,Rel. Eng. and Sys. Safety,,db/journals/ress/ress176.html#McCarterBJR18,https://doi.org/10.1016/j.ress.2018.04.011 +Stephen M. Hess,Analysis and insights from a dynamical model of nuclear plant safety risk.,2007,92,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress92.html#HessAG07,https://doi.org/10.1016/j.ress.2005.10.001 +Renyan Jiang,Models involving two inverse Weibull distributions.,2001,73,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress73.html#JiangMJ01,https://doi.org/10.1016/S0951-8320(01)00030-8 +Lixuan Lu,Analysis of on-line maintenance strategies for k-out-of-n standby safety systems.,2007,92,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress92.html#LuJ07,https://doi.org/10.1016/j.ress.2005.11.012 +Celso Marcelo Franklin Lapa,A model for preventive maintenance planning by genetic algorithms based in cost and reliability.,2006,91,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress91.html#LapaPB06,https://doi.org/10.1016/j.ress.2005.01.004 +Pierre-Joseph Cacheux,Assessment of the expected number and frequency of failures of periodically tested systems.,2013,118,Rel. Eng. and Sys. Safety,,db/journals/ress/ress118.html#CacheuxCDFST13,https://doi.org/10.1016/j.ress.2013.04.014 +Vidar Kristensen,A new perspective on Renn and Klinke's approach to risk evaluation and management.,2006,91,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress91.html#KristensenAF06,https://doi.org/10.1016/j.ress.2005.02.006 +X. Lin,Condition based spare parts supply.,2017,168,Rel. Eng. and Sys. Safety,,db/journals/ress/ress168.html#LinBKH17,https://doi.org/10.1016/j.ress.2017.05.035 +Jinsoo Shin,Development of a cyber security risk model using Bayesian networks.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#ShinSuH15,https://doi.org/10.1016/j.ress.2014.10.006 +A. Gouiaa-Mtibaa,Integrated Maintenance-Quality policy with rework process under improved imperfect preventive maintenance.,2018,173,Rel. Eng. and Sys. Safety,,db/journals/ress/ress173.html#Gouiaa-MtibaaDA18,https://doi.org/10.1016/j.ress.2017.12.020 +Jinkyun Park,Calculating nominal human error probabilities from the operation experience of domestic nuclear power plants.,2018,170,Rel. Eng. and Sys. Safety,,db/journals/ress/ress170.html#ParkKJ18,https://doi.org/10.1016/j.ress.2017.10.011 +Seth D. Guikema,Assessing risk from intelligent attacks: A perspective on approaches.,2010,95,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress95.html#GuikemaA10,https://doi.org/10.1016/j.ress.2009.12.001 +Bushra Khan,An operational risk analysis tool to analyze marine transportation in Arctic waters.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#KhanKVY18,https://doi.org/10.1016/j.ress.2017.09.014 +Wei Li 0042,Reliability evaluation of multi-state weighted k-out-of-n systems.,2008,93,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress93.html#LiZ08,https://doi.org/10.1016/j.ress.2006.11.009 +Shankar Sankararaman,Separating the contributions of variability and parameter uncertainty in probability distributions.,2013,112,Rel. Eng. and Sys. Safety,,db/journals/ress/ress112.html#SankararamanM13,https://doi.org/10.1016/j.ress.2012.11.024 +William Fauriat,AK-SYS: An adaptation of the AK-MCS method for system reliability.,2014,123,Rel. Eng. and Sys. Safety,,db/journals/ress/ress123.html#FauriatG14,https://doi.org/10.1016/j.ress.2013.10.010 +Abdullahi M. Salman,Evaluating system reliability and targeted hardening strategies of power distribution systems subjected to hurricanes.,2015,144,Rel. Eng. and Sys. Safety,,db/journals/ress/ress144.html#SalmanLS15,https://doi.org/10.1016/j.ress.2015.07.028 +A. S. Xanthopoulos,Single-stage Kanban system with deterioration failures and condition-based preventive maintenance.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#XanthopoulosKB15,https://doi.org/10.1016/j.ress.2015.05.008 +Shubin Si,Importance analysis for reconfigurable systems.,2014,126,Rel. Eng. and Sys. Safety,,db/journals/ress/ress126.html#SiLDS14,https://doi.org/10.1016/j.ress.2014.01.012 +Ioannis A. Papazoglou,Quantitative occupational risk model: Single hazard.,2017,160,Rel. Eng. and Sys. Safety,,db/journals/ress/ress160.html#PapazoglouABAO17,https://doi.org/10.1016/j.ress.2016.12.010 +Rogier Woltjer,Towards understanding work-as-done in air traffic management safety assessment and design.,2015,141,Rel. Eng. and Sys. Safety,,db/journals/ress/ress141.html#WoltjerPLJ15,https://doi.org/10.1016/j.ress.2015.03.010 +David R. Marlow,Risk-based prioritization and its application to inspection of valves in the water sector.,2012,100,Rel. Eng. and Sys. Safety,,db/journals/ress/ress100.html#MarlowBM12,https://doi.org/10.1016/j.ress.2011.12.014 +Kai Xu,Fuzzy assessment of FMEA for engine systems.,2002,75,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress75.html#XuT0HZ02,https://doi.org/10.1016/S0951-8320(01)00101-6 +Franck Schoefs,Partial safety factor calibration from stochastic finite element computation of welded joint with random geometries.,2016,155,Rel. Eng. and Sys. Safety,,db/journals/ress/ress155.html#SchoefsCPC16,https://doi.org/10.1016/j.ress.2016.05.016 +Saurabh Kumar,Reliability improvement through alternative designs - A case study.,2007,92,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress92.html#KumarCK07,https://doi.org/10.1016/j.ress.2006.05.008 +J. J. Xiong,A durability model incorporating safe life methodology and damage tolerance approach to assess first inspection and maintenance period for structures.,2009,94,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress94.html#XiongS09,https://doi.org/10.1016/j.ress.2009.01.005 +Adriaan Van Horenbeek,A dynamic predictive maintenance policy for complex multi-component systems.,2013,120,Rel. Eng. and Sys. Safety,,db/journals/ress/ress120.html#HorenbeekP13,https://doi.org/10.1016/j.ress.2013.02.029 +Enrico Zio,Monte Carlo simulation analysis of the effects of different system performance levels on the importance of multi-state components.,2003,82,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress82.html#ZioP03,https://doi.org/10.1016/S0951-8320(03)00124-8 +øystein Amundrud,On how to understand and acknowledge risk.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#AmundrudA15,https://doi.org/10.1016/j.ress.2015.04.021 +Uli Kretzschmar,Synchronization of faulty processors in coarse-grained TMR protected partially reconfigurable FPGA designs.,2016,151,Rel. Eng. and Sys. Safety,,db/journals/ress/ress151.html#KretzschmarGABS16,https://doi.org/10.1016/j.ress.2015.12.018 +Zhonghua Cheng,A framework for intelligent reliability centered maintenance analysis.,2008,93,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress93.html#ChengJGWW08,https://doi.org/10.1016/j.ress.2007.03.037 +Paraskevi S. Georgiadou,Modeling emergency evacuation for major hazard industrial sites.,2007,92,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress92.html#GeorgiadouPKM07,https://doi.org/10.1016/j.ress.2006.09.009 +Tony Rosqvist,Event tree analysis for flood protection - An exploratory study in Finland.,2013,112,Rel. Eng. and Sys. Safety,,db/journals/ress/ress112.html#RosqvistMVP13,https://doi.org/10.1016/j.ress.2012.11.013 +Q. P. Hu,Robust recurrent neural network modeling for software fault detection and correction prediction.,2007,92,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress92.html#HuXNL07,https://doi.org/10.1016/j.ress.2006.04.007 +Ammar M. Sarhan,Reliability equivalence factors of a general series-parallel system.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#Sarhan09,https://doi.org/10.1016/j.ress.2008.02.021 +Mitsuo Gen,Soft computing approach for reliability optimization: State-of-the-art survey.,2006,91,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress91.html#GenY06,https://doi.org/10.1016/j.ress.2005.11.053 +Hsin-Nan Tsai,A trivariate optimal replacement policy for a deteriorating system based on cumulative damage and inspections.,2017,160,Rel. Eng. and Sys. Safety,,db/journals/ress/ress160.html#TsaiSZ17,https://doi.org/10.1016/j.ress.2016.10.031 +Peter G. Bishop,Software criticality analysis of COTS/SOUP.,2003,81,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress81.html#BishopBCG03,https://doi.org/10.1016/S0951-8320(03)00093-0 +Alice Yalaoui,Reliability allocation problem in a series-parallel system.,2005,90,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress90.html#YalaouiCC05,https://doi.org/10.1016/j.ress.2004.10.007 +Nima Khakzad,Risk-based design of process systems using discrete-time Bayesian networks.,2013,109,Rel. Eng. and Sys. Safety,,db/journals/ress/ress109.html#KhakzadKA13,https://doi.org/10.1016/j.ress.2012.07.009 +Mladen Lukic,Probabilistic optimization of welded joints maintenance versus fatigue and fracture.,2001,72,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress72.html#LukicC01,https://doi.org/10.1016/S0951-8320(01)00019-9 +Pan Wang,Copula-based decomposition approach for the derivative-based sensitivity of variance contributions with dependent variables.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#WangLZXY18,https://doi.org/10.1016/j.ress.2017.09.012 +Guillaume Perrin,Active learning surrogate models for the conception of systems with multiple failure modes.,2016,149,Rel. Eng. and Sys. Safety,,db/journals/ress/ress149.html#Perrin16,https://doi.org/10.1016/j.ress.2015.12.017 +Mohamed Ouzineb,Tabu search for the redundancy allocation problem of homogenous series-parallel multi-state systems.,2008,93,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress93.html#OuzinebNG08,https://doi.org/10.1016/j.ress.2007.06.004 +Xiang Jia,A comparison between two switching policies for two-unit standby system.,2016,148,Rel. Eng. and Sys. Safety,,db/journals/ress/ress148.html#JiaCCG16,https://doi.org/10.1016/j.ress.2015.12.006 +Rehan Sadiq,Probabilistic risk analysis of corrosion associated failures in cast iron water mains.,2004,86,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress86.html#SadiqRK04,https://doi.org/10.1016/j.ress.2003.12.007 +Maxim S. Finkelstein,Modeling life* with unknown initial age.,2002,76,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress76.html#Finkelstein02,https://doi.org/10.1016/S0951-8320(01)00147-8 +Zbigniew Burciu,The experimental and theoretical study of life raft safety under strong wind.,2011,96,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress96.html#BurciuG11,https://doi.org/10.1016/j.ress.2011.06.001 +Mohamed S. Ebeida,POF-Darts: Geometric adaptive sampling for probability of failure.,2016,155,Rel. Eng. and Sys. Safety,,db/journals/ress/ress155.html#EbeidaMSRR16,https://doi.org/10.1016/j.ress.2016.05.001 +Wheyming Tina Song,System reliability of stochastic networks with multiple reworks.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#SongL18,https://doi.org/10.1016/j.ress.2017.08.008 +Mitra Fouladirad,On the use of on-line detection for maintenance of gradually deteriorating systems.,2008,93,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress93.html#FouladiradGD08,https://doi.org/10.1016/j.ress.2008.03.020 +Juan Eloy Ruiz-Castro,Modelling a reliability system governed by discrete phase-type distributions.,2008,93,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress93.html#Ruiz-CastroPF08,https://doi.org/10.1016/j.ress.2008.01.005 +Limao Zhang,Bayesian-network-based safety risk analysis in construction projects.,2014,131,Rel. Eng. and Sys. Safety,,db/journals/ress/ress131.html#ZhangWSZL14,https://doi.org/10.1016/j.ress.2014.06.006 +Serkan Eryilmaz,Mean instantaneous performance of a system with weighted components that have arbitrarily distributed life*.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#Eryilmaz13a,https://doi.org/10.1016/j.ress.2013.06.042 +Amos Necci,A model for process equipment damage probability assessment due to lightning.,2013,115,Rel. Eng. and Sys. Safety,,db/journals/ress/ress115.html#NecciACKBN13,https://doi.org/10.1016/j.ress.2013.02.018 +Tore Askeland,Moving beyond probabilities - Strength of knowledge characterisations applied to security.,2017,159,Rel. Eng. and Sys. Safety,,db/journals/ress/ress159.html#AskelandFA17,https://doi.org/10.1016/j.ress.2016.10.035 +Joanna Rodríguez,Failure modeling of an electrical N-component framework by the non-stationary Markovian arrival process.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#RodriguezLR15,https://doi.org/10.1016/j.ress.2014.10.020 +Jesús Carretero,Applying RCM in large scale systems: a case study with railway networks.,2003,82,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress82.html#CarreteroPCCFGLCCP03,https://doi.org/10.1016/S0951-8320(03)00167-4 +Teemu Reiman,Characteristics of organizational culture at the maintenance units of two Nordic nuclear power plants.,2005,89,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress89.html#ReimanOR05,https://doi.org/10.1016/j.ress.2004.09.004 +Naruemon Wattanapongsakorn,Fault-tolerant embedded system design and optimization considering reliability estimation uncertainty.,2007,92,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress92.html#WattanapongsakornC07,https://doi.org/10.1016/j.ress.2005.12.011 +Florent Brissaud,Reliability analysis for new technology-based transmitters.,2011,96,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress96.html#BrissaudBBC11,https://doi.org/10.1016/j.ress.2010.09.010 +Hayes F. Stripling,The Method of Manufactured Universes for validating uncertainty quantification methods.,2011,96,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress96.html#StriplingAMM11,https://doi.org/10.1016/j.ress.2010.11.012 +Ulrik D. Nielsen,Towards fault-tolerant decision support systems for ship operator guidance.,2012,104,Rel. Eng. and Sys. Safety,,db/journals/ress/ress104.html#NielsenLJ12,https://doi.org/10.1016/j.ress.2012.04.009 +Jun Yang,An algorithm for the computationally efficient deductive implementation of the Markov/Cell-to-Cell-Mapping Technique for risk significant scenario identification.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#YangA16,https://doi.org/10.1016/j.ress.2015.08.013 +Moshe Kenzin,M out of n inspected systems subject to shocks in random environment.,2009,94,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress94.html#KenzinF09,https://doi.org/10.1016/j.ress.2009.02.005 +A. Daneshkhah,Probabilistic sensitivity analysis of optimised preventive maintenance strategies for deteriorating infrastructure assets.,2017,163,Rel. Eng. and Sys. Safety,,db/journals/ress/ress163.html#DaneshkhahSJ17,https://doi.org/10.1016/j.ress.2017.02.002 +Padmanabhan Krishnan,A tool based approach to checking logical consistency in accident reports.,2002,76,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress76.html#Krishnan02,https://doi.org/10.1016/S0951-8320(02)00009-1 +Luke Thomas Herbert,Restructuring of workflows to minimise errors via stochastic model checking: An automated evolutionary approach.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#HerbertH16,https://doi.org/10.1016/j.ress.2015.07.002 +Elmar Plischke,An adaptive correlation ratio method using the cumulative sum of the reordered output.,2012,107,Rel. Eng. and Sys. Safety,,db/journals/ress/ress107.html#Plischke12,https://doi.org/10.1016/j.ress.2011.12.007 +Toshio Nakagawa,A summary of periodic and random inspection policies.,2010,95,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress95.html#NakagawaMC10,https://doi.org/10.1016/j.ress.2010.03.012 +Kyung-Min Kang,A quantitative assessment of LCOs for operations using system dynamics.,2005,87,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress87.html#KangJ05,https://doi.org/10.1016/j.ress.2004.04.014 +Nan Cen,Analyzing vulnerabilities between SCADA system and SUC due to interdependencies.,2013,113,Rel. Eng. and Sys. Safety,,db/journals/ress/ress113.html#CenEK13,https://doi.org/10.1016/j.ress.2012.12.014 +Mingyang Li 0002,Bayesian hazard modeling based on lifetime data with latent heterogeneity.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#LiL16,https://doi.org/10.1016/j.ress.2015.09.007 +Jinkyun Park,Identifying cognitive complexity factors affecting the complexity of procedural steps in emergency operating procedures of a nuclear power plant.,2005,89,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress89.html#ParkJJ05,https://doi.org/10.1016/j.ress.2004.08.014 +Seyed Mohsen Hoseyni,A systematic framework for effective uncertainty assessment of severe accident calculations* Hybrid qualitative and quantitative methodology.,2014,125,Rel. Eng. and Sys. Safety,,db/journals/ress/ress125.html#HoseyniPTY14,https://doi.org/10.1016/j.ress.2013.06.037 +Enze Zhang,Multi-objective reliability redundancy allocation in an interval environment using particle swarm optimization.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#ZhangC16,https://doi.org/10.1016/j.ress.2015.09.008 +Rachel Benish Shirley,Bridging the simulator gap: Measuring motivational bias in digital nuclear power plant environments.,2018,177,Rel. Eng. and Sys. Safety,,db/journals/ress/ress177.html#ShirleyS18,https://doi.org/10.1016/j.ress.2018.04.016 +Robert E. Melchers,Risk assessment of LPG automotive refuelling facilities.,2001,74,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress74.html#MelchersF01,https://doi.org/10.1016/S0951-8320(01)00080-1 +Zhi-Sheng Ye,Warranty menu design for a two-dimensional warranty.,2016,155,Rel. Eng. and Sys. Safety,,db/journals/ress/ress155.html#YeM16,https://doi.org/10.1016/j.ress.2016.05.013 +Chris W. Johnson 0001,A case study in the integration of accident reports and constructivedesign documents.,2001,71,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress71.html#Johnson01,https://doi.org/10.1016/S0951-8320(00)00082-X +Jan Magott,Timing analysis of safety properties using fault trees with time dependencies and timed state-charts.,2012,97,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress97.html#MagottS12,https://doi.org/10.1016/j.ress.2011.09.004 +Chun-yang Li,Heterogeneous redundancy optimization for multi-state series-parallel systems subject to common cause failures.,2010,95,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress95.html#LiCYT10,https://doi.org/10.1016/j.ress.2009.09.011 +Seong-Joon Kim,Cost-effective degradation test plan for a nonlinear random-coefficients model.,2013,110,Rel. Eng. and Sys. Safety,,db/journals/ress/ress110.html#KimB13,https://doi.org/10.1016/j.ress.2012.09.010 +Terje Aven,Implications of black swans to the foundations and practice of risk assessment and management.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#Aven15,https://doi.org/10.1016/j.ress.2014.10.004 +Manuel Barranco,Quantitative characterization of the reliability of simplex buses and stars to compare their benefits in fieldbuses.,2015,138,Rel. Eng. and Sys. Safety,,db/journals/ress/ress138.html#BarrancoPA15,https://doi.org/10.1016/j.ress.2015.01.005 +Jinkyun Park,Investigating a homogeneous culture for operating personnel working in domestic nuclear power plants.,2016,156,Rel. Eng. and Sys. Safety,,db/journals/ress/ress156.html#Park16,https://doi.org/10.1016/j.ress.2016.08.011 +Bharatendra Rai,Modeling and analysis of automobile warranty data in presence of bias due to customer-rush near warranty expiration limit.,2004,86,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress86.html#RaiS04,https://doi.org/10.1016/j.ress.2004.01.001 +Yuichi Watanabe,Development of the DQFM method to consider the effect of correlation of component failures in seismic PSA of nuclear power plant.,2003,79,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress79.html#WatanabeOM03,https://doi.org/10.1016/S0951-8320(02)00053-4 +Xianguo Wu,A dynamic Bayesian network based approach to safety decision support in tunnel construction.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#WuLZSDT15,https://doi.org/10.1016/j.ress.2014.10.021 +Nijs Jan Duijm,Safety-barrier diagrams as a safety management tool.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#Duijm09,https://doi.org/10.1016/j.ress.2008.03.031 +Radouane Laggoune,Impact of few failure data on the opportunistic replacement policy for multi-component systems.,2010,95,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress95.html#LaggouneCA10,https://doi.org/10.1016/j.ress.2009.08.007 +Eun-Young Kang,A methodology for formal analysis and verification of EAST-ADL models.,2013,120,Rel. Eng. and Sys. Safety,,db/journals/ress/ress120.html#KangEMSSP13,https://doi.org/10.1016/j.ress.2013.06.007 +S. M. Asadzadeh,An integrated systemic model for optimization of condition-based maintenance with human error.,2014,124,Rel. Eng. and Sys. Safety,,db/journals/ress/ress124.html#AsadzadehA14,https://doi.org/10.1016/j.ress.2013.11.008 +Allen C. Estes,Minimum expected cost-oriented optimal maintenance planning for deteriorating structures: application to concrete bridge decks.,2001,73,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress73.html#EstesF01,https://doi.org/10.1016/S0951-8320(01)00044-8 +Jinkyun Park,Investigating the TACOM measure as a general tool for quantifying the complexity of procedure guided tasks.,2014,129,Rel. Eng. and Sys. Safety,,db/journals/ress/ress129.html#Park14,https://doi.org/10.1016/j.ress.2014.04.027 +Krzysztof Kolowrocki,Reliability and risk analysis of large systems with ageing components.,2008,93,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress93.html#KolowrockiK08,https://doi.org/10.1016/j.ress.2008.03.008 +Diego Mandelli,Scenario clustering and dynamic probabilistic risk assessment.,2013,115,Rel. Eng. and Sys. Safety,,db/journals/ress/ress115.html#MandelliYAMD13,https://doi.org/10.1016/j.ress.2013.02.013 +Jean Diebolt,Improving extremal fit: a Bayesian regularization procedure.,2003,82,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress82.html#DieboltGT03,https://doi.org/10.1016/S0951-8320(03)00096-6 +Martin Neil,Modelling dependable systems using hybrid Bayesian networks.,2008,93,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress93.html#NeilTMFH08,https://doi.org/10.1016/j.ress.2007.03.009 +Hyun-Ho Choi,Reliability-based failure cause assessment of collapsed bridge during construction.,2006,91,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress91.html#ChoiLCCM06,https://doi.org/10.1016/j.ress.2005.05.005 +Gabriele Landucci,Risk assessment of mitigated domino scenarios in process facilities.,2017,160,Rel. Eng. and Sys. Safety,,db/journals/ress/ress160.html#LanducciNAAC17,https://doi.org/10.1016/j.ress.2016.11.023 +Milos Ferjencik,IPICA_Lite - Improvements to root cause analysis.,2014,131,Rel. Eng. and Sys. Safety,,db/journals/ress/ress131.html#Ferjencik14,https://doi.org/10.1016/j.ress.2014.06.004 +Roy Billinton,Adequacy equivalent development of composite generation and transmission systems.,2001,74,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress74.html#BillintonZ01,https://doi.org/10.1016/S0951-8320(01)00062-X +Umberto Alibrandi,A response surface method for stochastic dynamic analysis.,2014,126,Rel. Eng. and Sys. Safety,,db/journals/ress/ress126.html#Alibrandi14,https://doi.org/10.1016/j.ress.2014.01.003 +L. A. Poggi,Non-invasive assessment of dust concentration and relative dustiness in a dust cloud mobilized by a controlled air inlet inside STARDUST-U facility.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#PoggiGRCM17,https://doi.org/10.1016/j.ress.2017.07.001 +Mustapha Nourelfath,Quantized hopfield networks for reliability optimization.,2003,81,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress81.html#NourelfathN03,https://doi.org/10.1016/S0951-8320(03)00097-8 +Francesca M. Favarò,Software contributions to aircraft adverse events: Case studies and analyses of recurrent accident patterns and failure mechanisms.,2013,113,Rel. Eng. and Sys. Safety,,db/journals/ress/ress113.html#FavaroJSM13,https://doi.org/10.1016/j.ress.2012.12.018 +Wei-Chang Yeh,Evaluation of the one-to-all-target-subsets reliability of a novel deterioration-effect acyclic multi-state information network.,2017,166,Rel. Eng. and Sys. Safety,,db/journals/ress/ress166.html#Yeh17,https://doi.org/10.1016/j.ress.2016.11.012 +Long Ding,SIL verification for SRS with diverse redundancy based on system degradation using reliability block diagram.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#DingWJX17,https://doi.org/10.1016/j.ress.2017.03.005 +Yuxin Wen,Degradation modeling and RUL prediction using Wiener process subject to multiple change points and unit heterogeneity.,2018,176,Rel. Eng. and Sys. Safety,,db/journals/ress/ress176.html#WenWDT18,https://doi.org/10.1016/j.ress.2018.04.005 +Anca Costescu Badea,Composite indicators for security of energy supply using ordered weighted averaging.,2011,96,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress96.html#BadeaSTB11,https://doi.org/10.1016/j.ress.2010.12.025 +A. Mancuso,Portfolio optimization of safety measures for reducing risks in nuclear systems.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#MancusoCSZ17,https://doi.org/10.1016/j.ress.2017.05.005 +Shaomin Wu,Linking component importance to optimisation of preventive maintenance policy.,2016,146,Rel. Eng. and Sys. Safety,,db/journals/ress/ress146.html#WuCWW16,https://doi.org/10.1016/j.ress.2015.10.008 +Vaclav Slimacek,Nonhomogeneous Poisson process with nonparametric frailty.,2016,149,Rel. Eng. and Sys. Safety,,db/journals/ress/ress149.html#SlimacekL16,https://doi.org/10.1016/j.ress.2015.12.005 +Wei-Chang Yeh,A new approach to the d-MC problem.,2002,77,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress77.html#Yeh02a,https://doi.org/10.1016/S0951-8320(02)00038-8 +Enrico Zio,An optimized Line Sampling method for the estimation of the failure probability of nuclear passive systems.,2010,95,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress95.html#ZioP10a,https://doi.org/10.1016/j.ress.2010.06.007 +Wenbin Wang,An overview of the recent advances in delay-time-based maintenance modelling.,2012,106,Rel. Eng. and Sys. Safety,,db/journals/ress/ress106.html#Wang12,https://doi.org/10.1016/j.ress.2012.04.004 +You Dong,A decision support system for mission-based ship routing considering multiple performance criteria.,2016,150,Rel. Eng. and Sys. Safety,,db/journals/ress/ress150.html#DongFS16,https://doi.org/10.1016/j.ress.2016.02.002 +J. F. W. Peeters,Improving failure analysis efficiency by combining FTA and FMEA in a recursive manner.,2018,172,Rel. Eng. and Sys. Safety,,db/journals/ress/ress172.html#PeetersBT18,https://doi.org/10.1016/j.ress.2017.11.024 +Giacomo Antonioni,Development of a framework for the risk assessment of Na-Tech accidental events.,2009,94,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress94.html#AntonioniBSC09,https://doi.org/10.1016/j.ress.2009.02.026 +Radim Bris,Parallel simulation algorithm for maintenance optimization based on directed Acyclic Graph.,2008,93,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress93.html#Bris08,https://doi.org/10.1016/j.ress.2007.03.036 +Terje Aven,Improving government policy on risk: Eight key principles.,2018,176,Rel. Eng. and Sys. Safety,,db/journals/ress/ress176.html#AvenR18,https://doi.org/10.1016/j.ress.2018.04.018 +Teemu Reiman,Human and organizational biases affecting the management of safety.,2011,96,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress96.html#ReimanR11,https://doi.org/10.1016/j.ress.2011.05.010 +Ammar M. Sarhan,Non-parametric empirical Bayes procedure.,2003,80,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress80.html#Sarhan03,https://doi.org/10.1016/S0951-8320(03)00003-6 +Irene Eusgeld,System-of-systems approach for interdependent critical infrastructures.,2011,96,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress96.html#EusgeldCD11,https://doi.org/10.1016/j.ress.2010.12.010 +Serena Andriulo,Measuring the effectiveness of a near-miss management system: An application in an automotive firm supplier.,2014,132,Rel. Eng. and Sys. Safety,,db/journals/ress/ress132.html#AndriuloG14,https://doi.org/10.1016/j.ress.2014.07.022 +Sinan Xiao,Multivariate sensitivity analysis based on the direction of eigen space through principal component analysis.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#XiaoLX17,https://doi.org/10.1016/j.ress.2017.03.011 +Enrico Zio,Application of the load flow and random flow models for the analysis of power transmission networks.,2012,103,Rel. Eng. and Sys. Safety,,db/journals/ress/ress103.html#ZioPDOP12,https://doi.org/10.1016/j.ress.2012.02.005 +Rob P. Rechard,Progression of performance assessment modeling for the Yucca Mountain disposal system for spent nuclear fuel and high-level radioactive waste.,2014,122,Rel. Eng. and Sys. Safety,,db/journals/ress/ress122.html#RechardWS14,https://doi.org/10.1016/j.ress.2013.06.026 +Monika B. Forys,A probabilistic model for a gas explosion due to leakages in the grey cast iron gas mains.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#ForysKP13,https://doi.org/10.1016/j.ress.2013.06.034 +Kim-Anh Nguyen,Joint predictive maintenance and inventory strategy for multi-component systems using Birnbaum's structural importance.,2017,168,Rel. Eng. and Sys. Safety,,db/journals/ress/ress168.html#NguyenDG17,https://doi.org/10.1016/j.ress.2017.05.034 +Ji Hwan Cha,The failure rate dynamics in heterogeneous populations.,2013,112,Rel. Eng. and Sys. Safety,,db/journals/ress/ress112.html#ChaF13,https://doi.org/10.1016/j.ress.2012.11.012 +Francesco Cadini,Optimal expansion of an existing electrical power transmission network by multi-objective genetic algorithms.,2010,95,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress95.html#CadiniZP10,https://doi.org/10.1016/j.ress.2009.09.007 +Vicki M. Bier,Target-oriented utility theory for modeling the deterrent effects of counterterrorism.,2015,136,Rel. Eng. and Sys. Safety,,db/journals/ress/ress136.html#BierK15,https://doi.org/10.1016/j.ress.2014.11.006 +Ferdinando Chiacchio,Stochastic hybrid automaton model of a multi-state system with aging: Reliability assessment and design consequences.,2016,149,Rel. Eng. and Sys. Safety,,db/journals/ress/ress149.html#ChiacchioDMC16,https://doi.org/10.1016/j.ress.2015.12.007 +María Luz Gámiz Pérez,Non-parametric estimation of the availability in a general repairable system.,2008,93,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress93.html#GamizR08,https://doi.org/10.1016/j.ress.2007.08.003 +Shaomin Wu,Assessing maintenance contracts when preventive maintenance is outsourced.,2012,98,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress98.html#Wu12,https://doi.org/10.1016/j.ress.2011.10.004 +Vasiliy V. Krivtsov,Recent advances in theory and applications of stochastic point process models in reliability engineering.,2007,92,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress92.html#Krivtsov07,https://doi.org/10.1016/j.ress.2006.05.001 +A. John Arul,Adjoint operator approach to functional reliability analysis of passive fluid dynamical systems.,2009,94,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress94.html#ArulIV09,https://doi.org/10.1016/j.ress.2009.06.008 +K. Durga Rao,Quantification of epistemic and aleatory uncertainties in level-1 probabilistic safety assessment studies.,2007,92,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress92.html#RaoKVS07,https://doi.org/10.1016/j.ress.2006.07.002 +Yuan Lin Zhang,Reliability analysis for a circular consecutive-2-out-of-n: F repairable system with priority in repair.,2000,68,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress68.html#ZhangZY00,https://doi.org/10.1016/S0951-8320(99)00076-9 +Zixian Liu,Gastric esophageal surgery risk analysis with a fault tree and Markov integrated model.,2011,96,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress96.html#LiuNLKW11,https://doi.org/10.1016/j.ress.2011.08.004 +Maria Francesca Milazzo,An extended risk assessment approach for chemical plants applied to a study related to pipe ruptures.,2012,99,Rel. Eng. and Sys. Safety,,db/journals/ress/ress99.html#MilazzoA12,https://doi.org/10.1016/j.ress.2011.12.001 +Inmaculada Torres Castro,Reward optimization of a repairable system.,2006,91,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress91.html#CastroP06,https://doi.org/10.1016/j.ress.2005.01.009 +Mieczyslaw Borysiewicz,An application of the value tree analysis methodology within the integrated risk informed decision making for the nuclear facilities.,2015,139,Rel. Eng. and Sys. Safety,,db/journals/ress/ress139.html#BorysiewiczKP15,https://doi.org/10.1016/j.ress.2015.02.013 +Rodrigo Pascual,Business-oriented prioritization: A novel graphical technique.,2009,94,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress94.html#PascualCLK09,https://doi.org/10.1016/j.ress.2009.01.013 +Terje Aven,Probabilities and background knowledge as a tool to reflect uncertainties in relation to intentional acts.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#Aven13b,https://doi.org/10.1016/j.ress.2013.06.044 +D. Shahsavani,An adaptive design and interpolation technique for extracting highly nonlinear response surfaces from deterministic models.,2009,94,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress94.html#ShahsavaniG09,https://doi.org/10.1016/j.ress.2008.10.013 +B. Veber,Generalized renewal process for repairable systems based on finite Weibull mixture.,2008,93,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress93.html#VeberNF08,https://doi.org/10.1016/j.ress.2007.10.003 +Jie Liu 0005,System dynamic reliability assessment and failure prognostics.,2017,160,Rel. Eng. and Sys. Safety,,db/journals/ress/ress160.html#LiuZ17,https://doi.org/10.1016/j.ress.2016.12.003 +Dante B. Matellini,Modelling dwelling fire development and occupancy escape using Bayesian network.,2013,114,Rel. Eng. and Sys. Safety,,db/journals/ress/ress114.html#MatelliniWJWP13,https://doi.org/10.1016/j.ress.2013.01.001 +Wei-Chang Yeh,The k-out-of-n acyclic multistate-node networks reliability evaluation using the universal generating function method.,2006,91,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress91.html#Yeh06a,https://doi.org/10.1016/j.ress.2005.08.002 +Jon C. Helton,Effect of delayed link failure on probability of loss of assured safety in temperature-dependent systems with multiple weak and strong links.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#HeltonJO09,https://doi.org/10.1016/j.ress.2008.03.007 +Georges Habchi,An overall methodology for reliability prediction of mechatronic systems design with industrial application.,2016,155,Rel. Eng. and Sys. Safety,,db/journals/ress/ress155.html#HabchiB16,https://doi.org/10.1016/j.ress.2016.06.013 +Joung Taek Yoon,A newly formulated resilience measure that considers false alarms.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#YoonYYK17,https://doi.org/10.1016/j.ress.2017.06.013 +Iya Solodilova-Whiteley,Uncovering the information needs in complex aerospace systems.,2006,91,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress91.html#Solodilova-WhiteleyJ06,https://doi.org/10.1016/j.ress.2006.01.017 +Thomas A. Mazzuchi,Response to comments by Professor O'Hagan.,2008,93,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress93.html#Mazzuchi08,https://doi.org/10.1016/j.ress.2008.02.005 +Toula Onoufriou,Developments in structural system reliability assessments of fixed steel offshore platforms.,2001,71,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress71.html#OnoufriouF01,https://doi.org/10.1016/S0951-8320(00)00095-8 +J. Dye,PRISMA as a quality tool for promoting customer satisfaction in the telecommunications industry.,2002,75,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress75.html#DyeS02,https://doi.org/10.1016/S0951-8320(01)00118-1 +Amélie Ponchet,Assessment of a maintenance model for a multi-deteriorating mode system.,2010,95,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress95.html#PonchetFG10,https://doi.org/10.1016/j.ress.2010.06.021 +Wenbin Wang,Ergodicity of forward * of the renewal process in a block-based inspection model using the delay time concept.,2012,100,Rel. Eng. and Sys. Safety,,db/journals/ress/ress100.html#WangB12,https://doi.org/10.1016/j.ress.2011.12.011 +Minh Duc Le,Optimal maintenance strategy of deteriorating system under imperfect maintenance and inspection using mixed inspection scheduling.,2013,113,Rel. Eng. and Sys. Safety,,db/journals/ress/ress113.html#LeT13,https://doi.org/10.1016/j.ress.2012.11.025 +Man Cheol Kim,Three suggestions on the definition of terms for the safety and reliability analysis of digital systems.,2015,135,Rel. Eng. and Sys. Safety,,db/journals/ress/ress135.html#KimS15,https://doi.org/10.1016/j.ress.2014.10.022 +Phuc Do Van,Reliability importance analysis of Markovian systems at steady state using perturbation analysis.,2008,93,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress93.html#VanBB08,https://doi.org/10.1016/j.ress.2008.02.020 +Huafei Liao,Challenges in leveraging existing human performance data for quantifying the IDHEAS HRA method.,2015,144,Rel. Eng. and Sys. Safety,,db/journals/ress/ress144.html#LiaoGS15,https://doi.org/10.1016/j.ress.2015.07.018 +Valerio Cozzani,Special Issue: Domino effects in the process industry - Advancing the state of the art.,2015,143,Rel. Eng. and Sys. Safety,,db/journals/ress/ress143.html#CozzaniR15,https://doi.org/10.1016/j.ress.2015.08.001 +Anatoly Lisnianski,Redundancy analysis for repairable multi-state system by using combined stochastic processes methods and universal generating function technique.,2009,94,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress94.html#LisnianskiD09,https://doi.org/10.1016/j.ress.2009.05.006 +Li Yang 0004,A delay time model for a mission-based system subject to periodic and random inspection and postponed replacement.,2016,150,Rel. Eng. and Sys. Safety,,db/journals/ress/ress150.html#YangMZZ16,https://doi.org/10.1016/j.ress.2016.01.016 +Ioannis A. Papazoglou,Multi-hazard multi-person quantitative occupational risk model and risk management.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#PapazoglouABAO17a,https://doi.org/10.1016/j.ress.2017.06.019 +Piero Baraldi,Investigation of uncertainty treatment capability of model-based and data-driven prognostic methods using simulated data.,2013,112,Rel. Eng. and Sys. Safety,,db/journals/ress/ress112.html#BaraldiMZ13,https://doi.org/10.1016/j.ress.2012.12.004 +Sebastiaan N. Jonkman,A general approach for the estimation of loss of life due to natural and technological disasters.,2010,95,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress95.html#JonkmanLV10,https://doi.org/10.1016/j.ress.2010.06.019 +A. R. Hale,Modeling accidents for prioritizing prevention.,2007,92,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress92.html#HaleAGHBMRBPPBO07,https://doi.org/10.1016/j.ress.2006.09.025 +Devanandham Henry,Generic metrics and quantitative approaches for system resilience as a function of time.,2012,99,Rel. Eng. and Sys. Safety,,db/journals/ress/ress99.html#HenryR12,https://doi.org/10.1016/j.ress.2011.09.002 +Sameer Al-Dahidi,Remaining useful life estimation in heterogeneous fleets working under variable operating conditions.,2016,156,Rel. Eng. and Sys. Safety,,db/journals/ress/ress156.html#Al-DahidiMBZ16,https://doi.org/10.1016/j.ress.2016.07.019 +Zeshan Kurd,Using fuzzy self-organising maps for safety critical systems.,2007,92,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress92.html#KurdK07,https://doi.org/10.1016/j.ress.2006.10.005 +Shwu-Tzy Jiang,Semi-parametric proportional intensity models robustness for right-censored recurrent failure data.,2005,90,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress90.html#JiangLR05,https://doi.org/10.1016/j.ress.2004.11.017 +Frantz Iwu,Integrating safety and formal analyses using UML and PFS.,2007,92,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress92.html#IwuGMT07,https://doi.org/10.1016/j.ress.2005.11.060 +Kwang Seop Son,Study on the systematic approach of Markov modeling for dependability analysis of complex fault-tolerant features with voting logics.,2016,150,Rel. Eng. and Sys. Safety,,db/journals/ress/ress150.html#SonKKK16,https://doi.org/10.1016/j.ress.2016.01.014 +Simone Colombo,The systematic integration of human factors into safety analyses: An integrated engineering approach.,2008,93,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress93.html#ColomboD08,https://doi.org/10.1016/j.ress.2008.03.029 +Raphael E. Stern,Accelerated Monte Carlo system reliability analysis through machine-learning-based surrogate models of network connectivity.,2017,164,Rel. Eng. and Sys. Safety,,db/journals/ress/ress164.html#SternSW17,https://doi.org/10.1016/j.ress.2017.01.021 +Rolf Bye,Professional culture and risk perception: Coping with danger on board small fishing boats and offshore service vessels.,2007,92,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress92.html#ByeL07,https://doi.org/10.1016/j.ress.2007.03.024 +K. G. Papakonstantinou,Planning structural inspection and maintenance policies via dynamic programming and Markov processes. Part I: Theory.,2014,130,Rel. Eng. and Sys. Safety,,db/journals/ress/ress130.html#PapakonstantinouS14,https://doi.org/10.1016/j.ress.2014.04.005 +Vasiliy Krivtsov,Estimation of G-renewal process parameters as an ill-posed inverse problem.,2013,115,Rel. Eng. and Sys. Safety,,db/journals/ress/ress115.html#KrivtsovY13,https://doi.org/10.1016/j.ress.2013.02.005 +Mitja Franko,Probability density function of the equivalent stress amplitude using statistical transformation.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#FrankoN15,https://doi.org/10.1016/j.ress.2014.10.012 +Weiwen Peng,Reliability of complex systems under dynamic conditions: A Bayesian multivariate degradation perspective.,2016,153,Rel. Eng. and Sys. Safety,,db/journals/ress/ress153.html#PengLMYH16,https://doi.org/10.1016/j.ress.2016.04.005 +James H. Lambert,Cost-benefit functions for the allocation of security sensors for air contaminants.,2007,92,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress92.html#LambertF07,https://doi.org/10.1016/j.ress.2006.06.002 +Jinkyun Park,The use of a process mining technique to characterize the work process of main control room crews: A feasibility study.,2016,154,Rel. Eng. and Sys. Safety,,db/journals/ress/ress154.html#ParkJJ16,https://doi.org/10.1016/j.ress.2016.05.004 +Jinkyun Park,Development of the step complexity measure for emergency operating procedures using entropy concepts.,2001,71,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress71.html#ParkJH01,https://doi.org/10.1016/S0951-8320(00)00087-9 +Jussi K. Vaurio,Consistent mapping of common cause failure rates and alpha factors.,2007,92,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress92.html#Vaurio07a,https://doi.org/10.1016/j.ress.2006.02.008 +Hehong Fan,A multi-state reliability evaluation model for P2P networks.,2010,95,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress95.html#FanS10,https://doi.org/10.1016/j.ress.2009.11.011 +Antoine Rauzy,Mode automata and their compilation into fault trees.,2002,78,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress78.html#Rauzy02,https://doi.org/10.1016/S0951-8320(02)00042-X +Jose Emmanuel Ramirez-Marquez,New insights on multi-state component criticality and importance.,2006,91,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress91.html#Ramirez-MarquezSGCT06,https://doi.org/10.1016/j.ress.2005.08.009 +Kristian Beckers,A structured hazard analysis and risk assessment method for automotive systems - A descriptive study.,2017,158,Rel. Eng. and Sys. Safety,,db/journals/ress/ress158.html#BeckersHCH17,https://doi.org/10.1016/j.ress.2016.09.004 +Enrico Zio,The future of risk assessment.,2018,177,Rel. Eng. and Sys. Safety,,db/journals/ress/ress177.html#Zio18,https://doi.org/10.1016/j.ress.2018.04.020 +M. J. Rufo,Adversarial life testing: A Bayesian negotiation model.,2014,131,Rel. Eng. and Sys. Safety,,db/journals/ress/ress131.html#RufoMP14,https://doi.org/10.1016/j.ress.2014.06.007 +Gregory Levitin,Block diagram method for analyzing multi-state systems with uncovered failures.,2007,92,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress92.html#Levitin07,https://doi.org/10.1016/j.ress.2006.02.009 +Massimo Felici,Capturing emerging complex interactions: Safety analysis in air traffic management.,2006,91,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress91.html#Felici06,https://doi.org/10.1016/j.ress.2006.01.010 +Reza Tavakkoli-Moghaddam,Reliability optimization of series-parallel systems with a choice of redundancy strategies using a genetic algorithm.,2008,93,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress93.html#Tavakkoli-MoghaddamSS08,https://doi.org/10.1016/j.ress.2007.02.009 +Roland Mader,OASIS: An automotive analysis and safety engineering instrument.,2013,120,Rel. Eng. and Sys. Safety,,db/journals/ress/ress120.html#MaderAGKSW13,https://doi.org/10.1016/j.ress.2013.06.045 +Bev Littlewood,Comments on 'Reliability and performance analysis for fault-tolerant programs consisting of versions with different characteristics' by Gregory Levitin [Reliability Engineering and System Safety 86 (2004) 75-81].,2006,91,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress91.html#Littlewood06,https://doi.org/10.1016/j.ress.2004.11.005 +Marzio Marseguerra,Basics of genetic algorithms optimization for RAMS applications.,2006,91,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress91.html#MarseguerraZM06,https://doi.org/10.1016/j.ress.2005.11.046 +Lijie Chen,Verification of the safety communication protocol in train control system using colored Petri net.,2012,100,Rel. Eng. and Sys. Safety,,db/journals/ress/ress100.html#LijieTXS12,https://doi.org/10.1016/j.ress.2011.12.010 +P. Gonçalves,Unmanned aerial vehicle safety assessment modelling through petri Nets.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#GoncalvesSF17,https://doi.org/10.1016/j.ress.2017.06.021 +Joe Silmon,Using functional analysis to determine the requirements for changes to critical systems: Railway level crossing case study.,2010,95,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress95.html#SilmonR10,https://doi.org/10.1016/j.ress.2009.09.013 +Claudio M. Rocco,Effects of multi-state links in network community detection.,2017,163,Rel. Eng. and Sys. Safety,,db/journals/ress/ress163.html#RoccoMRB17,https://doi.org/10.1016/j.ress.2017.02.004 +Saralees Nadarajah,Letter to the editor.,2007,92,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress92.html#Nadarajah07,https://doi.org/10.1016/j.ress.2007.02.007 +Ming Xu,"Response to the discussion of ""The effect of parameter uncertainty on achieved safety integrity of safety system"".",2013,109,Rel. Eng. and Sys. Safety,,db/journals/ress/ress109.html#XuCY13,https://doi.org/10.1016/j.ress.2012.06.016 +Paula Luisa Costa Teixeira Santos,A methodology used for the development of an Air Traffic Management functional system architecture.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#SantosMSM17,https://doi.org/10.1016/j.ress.2017.05.022 +Hananeh Aliee,On the Boolean extension of the Birnbaum importance to non-coherent systems.,2017,160,Rel. Eng. and Sys. Safety,,db/journals/ress/ress160.html#AlieeBGT17,https://doi.org/10.1016/j.ress.2016.12.013 +Anne Bruseberg,The design of complete systems: Providing human factors guidance for COTS acquisition.,2006,91,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress91.html#Bruseberg06,https://doi.org/10.1016/j.ress.2006.01.016 +Zhao-qian Zhang,SDG multiple fault diagnosis by real-time inverse inference.,2005,87,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress87.html#ZhangWZXL05,https://doi.org/10.1016/j.ress.2004.04.008 +Xiaoyu Zheng,α-Decomposition for estimating parameters in common cause failure modeling based on causal inference.,2013,116,Rel. Eng. and Sys. Safety,,db/journals/ress/ress116.html#ZhengYT13,https://doi.org/10.1016/j.ress.2013.02.025 +Yuchang Mo,Choosing a heuristic and root node for edge ordering in BDD-based network reliability analysis.,2014,131,Rel. Eng. and Sys. Safety,,db/journals/ress/ress131.html#MoXZPC14,https://doi.org/10.1016/j.ress.2014.06.025 +Franc Novak,Early warning of fault conditions of an over-current protection module in dependable communication applications.,2004,84,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress84.html#NovakZM04,https://doi.org/10.1016/j.ress.2003.11.003 +E. Piesik,Determining and verifying the safety integrity level of the safety instrumented systems with the uncertainty and security aspects.,2016,152,Rel. Eng. and Sys. Safety,,db/journals/ress/ress152.html#PiesikSB16,https://doi.org/10.1016/j.ress.2016.03.018 +Royce A. Francis,Bayesian Belief Networks for predicting drinking water distribution system pipe breaks.,2014,130,Rel. Eng. and Sys. Safety,,db/journals/ress/ress130.html#FrancisGH14,https://doi.org/10.1016/j.ress.2014.04.024 +Fan C. Meng,Comparing two reliability upper bounds for multistate systems.,2005,87,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress87.html#Meng05,https://doi.org/10.1016/j.ress.2004.03.027 +Sebastián Martorell,Use of multiple objective evolutionary algorithms in optimizing surveillance requirements.,2006,91,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress91.html#MartorellCVSGSC06,https://doi.org/10.1016/j.ress.2005.11.038 +Claudio M. Rocco Sanseverino,Innovative approaches for addressing old challenges in component importance measures.,2012,108,Rel. Eng. and Sys. Safety,,db/journals/ress/ress108.html#SanseverinoR12,https://doi.org/10.1016/j.ress.2012.05.009 +Mostafa Abouei Ardakan,Reliability optimization of series-parallel systems with mixed redundancy strategy in subsystems.,2014,130,Rel. Eng. and Sys. Safety,,db/journals/ress/ress130.html#ArdakanH14,https://doi.org/10.1016/j.ress.2014.06.001 +Yordan Garbatov,Cost and reliability based strategies for fatigue maintenance planning of floating structures.,2001,73,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress73.html#GarbatovS01,https://doi.org/10.1016/S0951-8320(01)00059-X +Athena Zitrou,Robustness of maintenance decisions: Uncertainty modelling and value of information.,2013,120,Rel. Eng. and Sys. Safety,,db/journals/ress/ress120.html#ZitrouBD13,https://doi.org/10.1016/j.ress.2013.03.001 +Sergei S. Kucherenko,Sobol' indices for problems defined in non-rectangular domains.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#KucherenkoKS17,https://doi.org/10.1016/j.ress.2017.06.001 +Xiaofeng Nie,Risk-based grouping for checked baggage screening systems.,2011,96,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress96.html#Nie11,https://doi.org/10.1016/j.ress.2011.06.011 +Amos E. Gera,A consecutive k-out-of-n: G system with dependent elements - a matrix formulation and solution.,2000,68,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress68.html#Gera00,https://doi.org/10.1016/S0951-8320(00)00005-3 +Sinan Xiao,Multivariate global sensitivity analysis for dynamic models based on wavelet analysis.,2018,170,Rel. Eng. and Sys. Safety,,db/journals/ress/ress170.html#XiaoLW18,https://doi.org/10.1016/j.ress.2017.10.007 +Meng Xu,On the q-Weibull distribution for reliability applications: An adaptive hybrid artificial bee colony algorithm for parameter estimation.,2017,158,Rel. Eng. and Sys. Safety,,db/journals/ress/ress158.html#XuDLM17,https://doi.org/10.1016/j.ress.2016.10.012 +Zhitao Liu,A reliability-based design concept for lithium-ion battery pack in electric vehicles.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#LiuTL15,https://doi.org/10.1016/j.ress.2014.10.010 +J. D. Andrews,Birnbaum and criticality measures of component contribution to the failure of phased missions.,2008,93,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress93.html#Andrews08,https://doi.org/10.1016/j.ress.2008.03.009 +Ricardo Bolado-Lavin,Contribution to the sample mean plot for graphical and numerical sensitivity analysis.,2009,94,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress94.html#Bolado-LavinCT09,https://doi.org/10.1016/j.ress.2008.11.012 +Benjamin Auder,Screening and metamodeling of computer experiments with functional outputs. Application to thermal-hydraulic computations.,2012,107,Rel. Eng. and Sys. Safety,,db/journals/ress/ress107.html#AuderCIM12,https://doi.org/10.1016/j.ress.2011.10.017 +Gregory Levitin,Protection vs. redundancy in homogeneous parallel systems.,2008,93,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress93.html#LevitinH08,https://doi.org/10.1016/j.ress.2007.10.007 +Xufeng Zhao,Optimal policies for cumulative damage models with maintenance last and first.,2013,110,Rel. Eng. and Sys. Safety,,db/journals/ress/ress110.html#ZhaoQN13,https://doi.org/10.1016/j.ress.2012.09.004 +Olivier Cailloux,Operational tools to build a multicriteria territorial risk scale with multiple stakeholders.,2013,120,Rel. Eng. and Sys. Safety,,db/journals/ress/ress120.html#CaillouxMMM13,https://doi.org/10.1016/j.ress.2013.06.004 +Abbas Barabadi,RAMS data collection under Arctic conditions.,2015,135,Rel. Eng. and Sys. Safety,,db/journals/ress/ress135.html#BarabadiGB15,https://doi.org/10.1016/j.ress.2014.11.008 +Attila Csenki,Asymptotics for continuous lifetime distributions with polynomial failure rate with an application in reliability.,2012,102,Rel. Eng. and Sys. Safety,,db/journals/ress/ress102.html#Csenki12,https://doi.org/10.1016/j.ress.2012.02.004 +Woo Sik Jung,A method to improve cutset probability calculation in probabilistic safety assessment of nuclear power plants.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#Jung15,https://doi.org/10.1016/j.ress.2014.10.019 +Tommaso Addabbo,Availability and reliability modeling of multicore controlled UPS for datacenter applications.,2016,149,Rel. Eng. and Sys. Safety,,db/journals/ress/ress149.html#AddabboFMVSM16,https://doi.org/10.1016/j.ress.2015.12.010 +Won Young Yun,Optimal burn-in time under cumulative free replacement warranty.,2002,78,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress78.html#YunLF02,https://doi.org/10.1016/S0951-8320(02)00049-2 +Yo Chan Kim,Estimating the quantitative relation between PSFs and HEPs from full-scope simulator data.,2018,173,Rel. Eng. and Sys. Safety,,db/journals/ress/ress173.html#KimPJCK18,https://doi.org/10.1016/j.ress.2018.01.001 +Douglas L. Allaire,Uncertainty quantification of an Aviation Environmental Toolsuite.,2014,126,Rel. Eng. and Sys. Safety,,db/journals/ress/ress126.html#AllaireNWC14,https://doi.org/10.1016/j.ress.2014.01.002 +Pramudita Satria Palar,Global sensitivity analysis via multi-fidelity polynomial chaos expansion.,2018,170,Rel. Eng. and Sys. Safety,,db/journals/ress/ress170.html#PalarZST18,https://doi.org/10.1016/j.ress.2017.10.013 +Dusko Kancev,A new method for explicit modelling of single failure event within different common cause failure groups.,2012,103,Rel. Eng. and Sys. Safety,,db/journals/ress/ress103.html#KancevC12,https://doi.org/10.1016/j.ress.2012.03.009 +Huai Su,A systematic framework of vulnerability analysis of a natural gas pipeline network.,2018,175,Rel. Eng. and Sys. Safety,,db/journals/ress/ress175.html#SuZZL18,https://doi.org/10.1016/j.ress.2018.03.006 +Zhangchun Tang,An efficient method for evaluating the effect of input parameters on the integrity of safety systems.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#TangZX16,https://doi.org/10.1016/j.ress.2015.09.002 +Frank J. Groen,QRAS - the quantitative risk assessment system.,2006,91,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress91.html#GroenSM06,https://doi.org/10.1016/j.ress.2005.01.008 +Armen Der Kiureghian,Multi-scale reliability analysis and updating of complex systems by use of linear programming.,2008,93,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress93.html#KiureghianS08,https://doi.org/10.1016/j.ress.2006.10.022 +M. J. Rufo,Local parametric sensitivity for mixture models of lifetime distributions.,2009,94,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress94.html#RufoPM09,https://doi.org/10.1016/j.ress.2008.05.002 +Petter Osmundsen,On incentives for assurance of petroleum supply.,2010,95,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress95.html#OsmundsenAT10,https://doi.org/10.1016/j.ress.2009.09.005 +Vedat Togan,An integrated framework including distinct algorithms for optimization of offshore towers under uncertainties.,2010,95,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress95.html#ToganKD10,https://doi.org/10.1016/j.ress.2010.03.009 +Paolo Bocchini,A probabilistic computational framework for bridge network optimal maintenance scheduling.,2011,96,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress96.html#BocchiniF11,https://doi.org/10.1016/j.ress.2010.09.001 +M. F. Wani,Maintainability design and evaluation of mechanical systems based on tribology.,2002,77,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress77.html#WaniG02,https://doi.org/10.1016/S0951-8320(02)00032-7 +Fan Wang,System reliability under prescribed marginals and correlations: Are we correct about the effect of correlations?,2018,173,Rel. Eng. and Sys. Safety,,db/journals/ress/ress173.html#WangL18,https://doi.org/10.1016/j.ress.2017.12.018 +Ingrid Bouwer Utne,A method for risk modeling of interdependencies in critical infrastructures.,2011,96,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress96.html#UtneHV11,https://doi.org/10.1016/j.ress.2010.12.006 +Haitao Guo,Automatic creation of Markov models for reliability assessment of safety instrumented systems.,2008,93,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress93.html#GuoY08,https://doi.org/10.1016/j.ress.2007.03.029 +Dongfeng Zhu,A framework to integrate software behavior into dynamic probabilistic risk assessment.,2007,92,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress92.html#ZhuMS07,https://doi.org/10.1016/j.ress.2006.09.024 +Zeping Wu,Global sensitivity analysis using a Gaussian Radial Basis Function metamodel.,2016,154,Rel. Eng. and Sys. Safety,,db/journals/ress/ress154.html#WuWNHZ16,https://doi.org/10.1016/j.ress.2016.06.006 +Yi Xie,Multi-state Markov modeling of pitting corrosion in stainless steel exposed to chloride-containing environment.,2018,172,Rel. Eng. and Sys. Safety,,db/journals/ress/ress172.html#XieZAD18,https://doi.org/10.1016/j.ress.2017.12.015 +A. C. Torres-Echeverría,Modelling and optimization of proof testing policies for safety instrumented systems.,2009,94,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress94.html#Torres-EcheverriaMT09a,https://doi.org/10.1016/j.ress.2008.09.006 +Stefano Tarantola,SAMO 2001: methodological advances and innovative applications of sensitivity analysis.,2003,79,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress79.html#TarantolaS03,https://doi.org/10.1016/S0951-8320(02)00221-1 +Ketut Buda Artana,Spreadsheet modeling of optimal maintenance schedule for components in wear-out phase.,2002,77,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress77.html#ArtanaI02,https://doi.org/10.1016/S0951-8320(02)00033-9 +Haibin Liu,Spatial generalized linear mixed models of electric power outages due to hurricanes and ice storms.,2008,93,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress93.html#LiuDA08,https://doi.org/10.1016/j.ress.2007.03.038 +T. V. Santosh,Diagnostic system for identification of accident scenarios in nuclear power plants using artificial neural networks.,2009,94,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress94.html#SantoshSRGK09,https://doi.org/10.1016/j.ress.2008.08.005 +Xiaoyu Zheng,Application of Bayesian nonparametric models to the uncertainty and sensitivity analysis of source term in a BWR severe accident.,2015,138,Rel. Eng. and Sys. Safety,,db/journals/ress/ress138.html#ZhengIKTM15,https://doi.org/10.1016/j.ress.2015.02.004 +Zhengqiang Pan,Reliability modeling of degradation of products with multiple performance characteristics based on gamma processes.,2011,96,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress96.html#PanB11,https://doi.org/10.1016/j.ress.2011.03.014 +Wei-Chang Yeh,A novel multi-distribution multi-state flow network and its reliability optimization problem.,2018,176,Rel. Eng. and Sys. Safety,,db/journals/ress/ress176.html#YehC18,https://doi.org/10.1016/j.ress.2018.04.006 +Curtis Smith,Probability-informed testing for reliability assurance through Bayesian hypothesis methods.,2010,95,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress95.html#SmithKD10,https://doi.org/10.1016/j.ress.2009.11.006 +Xufang Zhang,An effective approximation for variance-based global sensitivity analysis.,2014,121,Rel. Eng. and Sys. Safety,,db/journals/ress/ress121.html#ZhangP14,https://doi.org/10.1016/j.ress.2013.07.010 +Tim P. Kelly,A systematic approach to safety case maintenance.,2001,71,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress71.html#KellyM01,https://doi.org/10.1016/S0951-8320(00)00079-X +Iris Tien,Algorithms for Bayesian network modeling and reliability assessment of infrastructure systems.,2016,156,Rel. Eng. and Sys. Safety,,db/journals/ress/ress156.html#TienK16,https://doi.org/10.1016/j.ress.2016.07.022 +D. N. Prabhakar Murthy,Weibull model selection for reliability modelling.,2004,86,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress86.html#MurthyBE04,https://doi.org/10.1016/j.ress.2004.01.014 +Sanjib Kumar Gupta,Some reliability issues for incomplete two-dimensional warranty claims data.,2017,157,Rel. Eng. and Sys. Safety,,db/journals/ress/ress157.html#GuptaDC17,https://doi.org/10.1016/j.ress.2016.08.015 +Y. S. Oh,Field data analyses with additional after-warranty failure data.,2001,72,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress72.html#OhB01,https://doi.org/10.1016/S0951-8320(00)00056-9 +Mario Hellmich,Markov analysis of redundant standby safety systems under periodic surveillance testing.,2015,133,Rel. Eng. and Sys. Safety,,db/journals/ress/ress133.html#HellmichB15,https://doi.org/10.1016/j.ress.2014.08.007 +Su Baohe,An optimal inspection and diagnosis policy for a multi-mode system.,2002,76,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress76.html#Baohe02,https://doi.org/10.1016/S0951-8320(02)00003-0 +Karl D. Majeske,A mixture model for automobile warranty data.,2003,81,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress81.html#Majeske03,https://doi.org/10.1016/S0951-8320(03)00073-5 +Krzysztof Wróbel,Towards the development of a system-theoretic model for safety assessment of autonomous merchant vessels.,2018,178,Rel. Eng. and Sys. Safety,,db/journals/ress/ress178.html#WrobelMK18,https://doi.org/10.1016/j.ress.2018.05.019 +Ufuk Topcu,Rigorous uncertainty quantification without integral testing.,2011,96,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress96.html#TopcuLOO11,https://doi.org/10.1016/j.ress.2010.07.013 +Anatoly Lisnianski,Using inverse Lz-transform for obtaining compact stochastic model of complex power station for short-term risk evaluation.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#LisnianskiD16,https://doi.org/10.1016/j.ress.2015.08.009 +Mahmood Shafiee,An opportunistic condition-based maintenance policy for offshore wind turbine blades subjected to degradation and environmental shocks.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#ShafieeFB15,https://doi.org/10.1016/j.ress.2015.05.001 +Jian Guo,System reliability assessment with multilevel information using the Bayesian melding method.,2018,170,Rel. Eng. and Sys. Safety,,db/journals/ress/ress170.html#GuoLJ18,https://doi.org/10.1016/j.ress.2017.09.020 +Giacomo Galante,An exact algorithm for preventive maintenance planning of series-parallel systems.,2009,94,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress94.html#GalanteP09,https://doi.org/10.1016/j.ress.2009.02.009 +Michele Compare,Development of a Bayesian multi-state degradation model for up-to-date reliability estimations of working industrial components.,2017,166,Rel. Eng. and Sys. Safety,,db/journals/ress/ress166.html#CompareBBZD17,https://doi.org/10.1016/j.ress.2016.11.020 +David Elms,Rail safety.,2001,74,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress74.html#Elms01,https://doi.org/10.1016/S0951-8320(01)00085-0 +Attila Csenki,Joint interval reliability for Markov systems with an application in transmission line reliability.,2007,92,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress92.html#Csenki07,https://doi.org/10.1016/j.ress.2006.11.007 +Mariano Amo-Salas,Experimental designs for autoregressive models applied to industrial maintenance.,2015,133,Rel. Eng. and Sys. Safety,,db/journals/ress/ress133.html#Amo-SalasLP15,https://doi.org/10.1016/j.ress.2014.09.003 +Riccardo Patriarca,Defining the functional resonance analysis space: Combining Abstraction Hierarchy and FRAM.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#PatriarcaBG17,https://doi.org/10.1016/j.ress.2017.03.032 +D. N. P. Murthy,Component reliability specification.,2009,94,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress94.html#MurthyOR09,https://doi.org/10.1016/j.ress.2009.02.029 +Cuong Duc Dao,Selective maintenance for multi-state series-parallel systems under economic dependence.,2014,121,Rel. Eng. and Sys. Safety,,db/journals/ress/ress121.html#DaoZP14,https://doi.org/10.1016/j.ress.2013.09.003 +Elmar Plischke,An effective algorithm for computing global sensitivity indices (EASI).,2010,95,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress95.html#Plischke10,https://doi.org/10.1016/j.ress.2009.11.005 +Jon C. Helton,Probability of loss of assured safety in systems with multiple time-dependent failure modes: Representations with aleatory and epistemic uncertainty.,2014,124,Rel. Eng. and Sys. Safety,,db/journals/ress/ress124.html#HeltonPS14,https://doi.org/10.1016/j.ress.2013.11.012 +Stephan Pannier,Sectional global sensitivity measures.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#PannierG15,https://doi.org/10.1016/j.ress.2014.09.009 +J. Park,The use of the SACADA taxonomy to analyze simulation records: Insights and suggestions.,2017,159,Rel. Eng. and Sys. Safety,,db/journals/ress/ress159.html#ParkCKCKJ17,https://doi.org/10.1016/j.ress.2016.11.002 +Michelle M. Cowing,Dynamic modeling of the tradeoff between productivity and safety in critical engineering systems.,2004,86,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress86.html#CowingPG04,https://doi.org/10.1016/j.ress.2004.02.003 +Enrico Zio,Safety margins confidence estimation for a passive residual heat removal system.,2010,95,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress95.html#ZioMT10,https://doi.org/10.1016/j.ress.2010.03.006 +Børge Rokseth,Deriving verification objectives and scenarios for maritime systems using the systems-theoretic process analysis.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#RoksethUV18,https://doi.org/10.1016/j.ress.2017.07.015 +André D. Orcesi,Corrigendum to 'A bridge network maintenance framework for Pareto optimization of stakeholders/users costs' [Reliability Engineering and System Safety 95 (2010) 1230-1243].,2011,96,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress96.html#OrcesiC11,https://doi.org/10.1016/j.ress.2010.08.008 +Luciano Burgazzi,About time-variant reliability analysis with reference to passive systems assessment.,2008,93,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress93.html#Burgazzi08,https://doi.org/10.1016/j.ress.2008.01.002 +Angélica Alebrant Mendes,Establishment of a maintenance plan based on quantitative analysis in the context of RCM in a JIT production scenario.,2014,127,Rel. Eng. and Sys. Safety,,db/journals/ress/ress127.html#MendesR14,https://doi.org/10.1016/j.ress.2014.03.004 +Gregory Levitin,Optimizing software rejuvenation policy for real time tasks.,2018,176,Rel. Eng. and Sys. Safety,,db/journals/ress/ress176.html#LevitinXB18,https://doi.org/10.1016/j.ress.2018.04.010 +Mitra Fouladirad,Condition-based maintenance for a system subject to a non-homogeneous wear process with a wear rate transition.,2011,96,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress96.html#FouladiradG11,https://doi.org/10.1016/j.ress.2010.12.008 +Bent Natvig,Simulation based analysis and an application to an offshore oil and gas production system of the Natvig measures of component importance in repairable systems.,2009,94,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress94.html#NatvigEGHI09,https://doi.org/10.1016/j.ress.2009.04.002 +Shubin Si,Component state-based integrated importance measure for multi-state systems.,2013,116,Rel. Eng. and Sys. Safety,,db/journals/ress/ress116.html#SiLDS13,https://doi.org/10.1016/j.ress.2013.02.023 +Chunwang Gao,Detecting cracks in aircraft engine fan blades using vibrothermography nondestructive evaluation.,2014,131,Rel. Eng. and Sys. Safety,,db/journals/ress/ress131.html#GaoMM14,https://doi.org/10.1016/j.ress.2014.05.009 +Dolf van der Beek,ADAPTER: Analysing and developing adaptability and performance in teams to enhance resilience.,2015,141,Rel. Eng. and Sys. Safety,,db/journals/ress/ress141.html#BeekS15,https://doi.org/10.1016/j.ress.2015.03.019 +Gregory Levitin,Genetic algorithms in reliability engineering.,2006,91,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress91.html#Levitin06b,https://doi.org/10.1016/j.ress.2005.11.007 +Pengfei Wei,Reliability and reliability-based importance analysis of structural systems using multiple response Gaussian process model.,2018,175,Rel. Eng. and Sys. Safety,,db/journals/ress/ress175.html#WeiLT18,https://doi.org/10.1016/j.ress.2018.03.013 +Gregory Levitin,A universal generating function approach for the analysis of multi-state systems with dependent elements.,2004,84,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress84.html#Levitin04a,https://doi.org/10.1016/j.ress.2003.12.002 +Felipe A. C. Nascimento,A multistage multinational triangulation approach to hazard identification in night-time offshore helicopter operations.,2012,108,Rel. Eng. and Sys. Safety,,db/journals/ress/ress108.html#NascimentoMOJ12,https://doi.org/10.1016/j.ress.2012.06.019 +A. Habib,New bounds on the reliability of the consecutive k-out-of-r-from-n: F system.,2000,68,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress68.html#HabibS00,https://doi.org/10.1016/S0951-8320(99)00021-6 +Roger M. Cooke,On the performance of social network and likelihood-based expert weighting schemes.,2008,93,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress93.html#CookeEH08,https://doi.org/10.1016/j.ress.2007.03.017 +Gregory Levitin,Approximation algorithm for evaluating time-to-failure distribution of k-out-of-n system with shared standby elements.,2010,95,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress95.html#LevitinA10,https://doi.org/10.1016/j.ress.2009.11.010 +Enrique F. Castillo,An alternative approach for addressing the failure probability-safety factor method with sensitivity analysis.,2003,82,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress82.html#CastilloCMC03,https://doi.org/10.1016/S0951-8320(03)00164-9 +Abbas Barabadi,Maintainability analysis considering time-dependent and time-independent covariates.,2011,96,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress96.html#BarabadiBM11,https://doi.org/10.1016/j.ress.2010.08.007 +Aarnout Brombacher,Product reliability in relation to uncertain data.,2002,75,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress75.html#Brombacher02,https://doi.org/10.1016/S0951-8320(01)00115-6 +Siamak Alizadeh,Unavailability assessment of redundant safety instrumented systems subject to process demand.,2018,171,Rel. Eng. and Sys. Safety,,db/journals/ress/ress171.html#AlizadehS18,https://doi.org/10.1016/j.ress.2017.11.011 +Kunsong Lin,Reliability assessment model considering heterogeneous population in a multiple stresses accelerated test.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#LinCX17,https://doi.org/10.1016/j.ress.2017.03.013 +Anatoly Lisnianski,Time-redundant system reliability under randomly constrained time resources.,2000,70,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress70.html#LisnianskiJ00,https://doi.org/10.1016/S0951-8320(00)00054-5 +Javier Faulin,Predicting availability functions in time-dependent complex systems with SAEDES simulation algorithms.,2008,93,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress93.html#FaulinJSB08,https://doi.org/10.1016/j.ress.2008.03.022 +Lucio Flavio Vismari,A safety assessment methodology applied to CNS/ATM-based air traffic control system.,2011,96,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress96.html#VismariJ11,https://doi.org/10.1016/j.ress.2011.02.007 +Claudio M. Rocco Sanseverino,Singular spectrum analysis and forecasting of failure time series.,2013,114,Rel. Eng. and Sys. Safety,,db/journals/ress/ress114.html#Sanseverino13,https://doi.org/10.1016/j.ress.2013.01.007 +Tangbin Xia,Recent advances in prognostics and health management for advanced manufacturing paradigms.,2018,178,Rel. Eng. and Sys. Safety,,db/journals/ress/ress178.html#XiaDXDPX18,https://doi.org/10.1016/j.ress.2018.06.021 +Kuei-Chen Chiu,A study of software reliability growth from the perspective of learning effects.,2008,93,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress93.html#ChiuHL08,https://doi.org/10.1016/j.ress.2007.11.004 +John D. Andrews,System design and maintenance modelling for safety in extended life operation.,2017,163,Rel. Eng. and Sys. Safety,,db/journals/ress/ress163.html#AndrewsF17,https://doi.org/10.1016/j.ress.2017.01.024 +Tao Jiang,Parameter inference for non-repairable multi-state system reliability models by multi-level observation sequences.,2017,166,Rel. Eng. and Sys. Safety,,db/journals/ress/ress166.html#JiangL17,https://doi.org/10.1016/j.ress.2016.11.019 +Lisa Norrington,Modelling the reliability of search and rescue operations with Bayesian Belief Networks.,2008,93,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress93.html#NorringtonQRM08,https://doi.org/10.1016/j.ress.2007.03.006 +Jinkyun Park,A novel speech-act coding scheme to visualize the intention of crew communications to cope with simulated off-normal conditions of nuclear power plants.,2018,178,Rel. Eng. and Sys. Safety,,db/journals/ress/ress178.html#ParkK18,https://doi.org/10.1016/j.ress.2018.05.013 +I. B. Sidibé,Kernel estimator of maintenance optimization model for a stochastically degrading system under different operating environments.,2016,147,Rel. Eng. and Sys. Safety,,db/journals/ress/ress147.html#SidibeKDA16,https://doi.org/10.1016/j.ress.2015.11.001 +Marius Møller Rokstad,Minimising the total cost of renewal and risk of water infrastructure assets by grouping renewal interventions.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#RokstadU15,https://doi.org/10.1016/j.ress.2015.05.014 +Maurizio Guida,A random-effects model for long-term degradation analysis of solid oxide fuel cells.,2015,140,Rel. Eng. and Sys. Safety,,db/journals/ress/ress140.html#GuidaPP15,https://doi.org/10.1016/j.ress.2015.03.036 +Luca Podofillini,Dynamic safety assessment: Scenario identification via a possibilistic clustering approach.,2010,95,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress95.html#PodofilliniZMD10,https://doi.org/10.1016/j.ress.2010.01.004 +Anatoly Lisnianski,Structure optimization of multi-state system with time redundancy.,2000,67,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress67.html#LisnianskiLB00,https://doi.org/10.1016/S0951-8320(99)00049-6 +Han Seong Son,"Reply to ""Comment on: Development of a safety critical software requirements verification method with combined CPN and PVS: a nuclear power plant protection system application"".",2004,83,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress83.html#SonS04,https://doi.org/10.1016/j.ress.2003.09.019 +Rui Peng,Testing effort dependent software reliability model for imperfect debugging process considering both detection and correction.,2014,126,Rel. Eng. and Sys. Safety,,db/journals/ress/ress126.html#PengLZH14,https://doi.org/10.1016/j.ress.2014.01.004 +Romana Jordan Cizelj,Component reliability assessment using quantitative and qualitative data.,2001,71,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress71.html#CizeljMK01,https://doi.org/10.1016/S0951-8320(00)00073-9 +Delia Montoro-Cazorla,A redundant n-system under shocks and repairs following Markovian arrival processes.,2014,130,Rel. Eng. and Sys. Safety,,db/journals/ress/ress130.html#Montoro-CazorlaP14a,https://doi.org/10.1016/j.ress.2014.05.002 +Terje Aven,A unified framework for risk and vulnerability analysis covering both safety and security.,2007,92,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress92.html#Aven07,https://doi.org/10.1016/j.ress.2006.03.008 +Claver Diallo,Optimal selective maintenance decisions for large serial k-out-of-n: G systems under imperfect maintenance.,2018,175,Rel. Eng. and Sys. Safety,,db/journals/ress/ress175.html#DialloVKL18,https://doi.org/10.1016/j.ress.2018.03.023 +Jaehoon Kim,Evaluation of the adequacy of maintenance tasks using the failure consequences of railroad vehicles.,2013,117,Rel. Eng. and Sys. Safety,,db/journals/ress/ress117.html#KimJ13,https://doi.org/10.1016/j.ress.2013.03.008 +Rodrigo J. P. Ferreira,A multi-criteria decision model to determine inspection intervals of condition monitoring based on delay time analysis.,2009,94,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress94.html#FerreiraAC09,https://doi.org/10.1016/j.ress.2008.10.001 +Chunhua Zhang 0005,Reliability demonstration methodology for products with Gamma Process by optimal accelerated degradation testing.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#ZhangLTW15,https://doi.org/10.1016/j.ress.2015.05.011 +Jussi K. Vaurio,Common cause failure probabilities in standby safety system fault tree analysis with testing - scheme and timing dependencies.,2003,79,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress79.html#Vaurio03,https://doi.org/10.1016/S0951-8320(02)00170-9 +F. L. M. Diermanse,Correlation models in flood risk analysis.,2012,105,Rel. Eng. and Sys. Safety,,db/journals/ress/ress105.html#DiermanseG12,https://doi.org/10.1016/j.ress.2011.12.004 +Gregory Levitin,Co-optimization of state dependent loading and mission abort policy in heterogeneous warm standby systems.,2018,172,Rel. Eng. and Sys. Safety,,db/journals/ress/ress172.html#LevitinXD18b,https://doi.org/10.1016/j.ress.2017.12.010 +Qingqing Zhai,Space-partition method for the variance-based sensitivity analysis: Optimal partition scheme and comparative study.,2014,131,Rel. Eng. and Sys. Safety,,db/journals/ress/ress131.html#ZhaiYZ14,https://doi.org/10.1016/j.ress.2014.06.013 +Maryam Rahimi,Monitoring human and organizational factors influencing common-cause failures of safety-instrumented system during the operational phase.,2013,120,Rel. Eng. and Sys. Safety,,db/journals/ress/ress120.html#RahimiR13,https://doi.org/10.1016/j.ress.2013.03.004 +Saralees Nadarajah,On the moments of the modified Weibull distribution.,2005,90,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress90.html#Nadarajah05,https://doi.org/10.1016/j.ress.2004.09.002 +Chaonan Wang,Probabilistic common cause failures in phased-mission systems.,2015,144,Rel. Eng. and Sys. Safety,,db/journals/ress/ress144.html#WangXL15,https://doi.org/10.1016/j.ress.2015.07.004 +Bharatendra Rai,Hazard rate estimation from incomplete and unclean warranty data.,2003,81,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress81.html#RaiS03,https://doi.org/10.1016/S0951-8320(03)00083-8 +Wenbin Wang,A joint spare part and maintenance inspection optimisation model using the Delay-Time concept.,2011,96,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress96.html#Wang11a,https://doi.org/10.1016/j.ress.2011.07.004 +Yu-Hung Chien,Optimal maintenance policy for a system subject to damage in a discrete time process.,2012,103,Rel. Eng. and Sys. Safety,,db/journals/ress/ress103.html#ChienSZ12,https://doi.org/10.1016/j.ress.2012.03.002 +Guanjun Wang,Reliability evaluation of unrepairable k-out-of-n: G systems with phased-mission requirements based on record values.,2018,178,Rel. Eng. and Sys. Safety,,db/journals/ress/ress178.html#WangPX18,https://doi.org/10.1016/j.ress.2018.06.009 +John D. Andrews,A stochastic model for railway track asset management.,2014,130,Rel. Eng. and Sys. Safety,,db/journals/ress/ress130.html#AndrewsPR14,https://doi.org/10.1016/j.ress.2014.04.021 +Mohammad Feizabadi,A new model for reliability optimization of series-parallel systems with non-homogeneous components.,2017,157,Rel. Eng. and Sys. Safety,,db/journals/ress/ress157.html#FeizabadiJ17,https://doi.org/10.1016/j.ress.2016.08.023 +Huilong Zhang,Piecewise Deterministic Markov Processes based approach applied to an offshore oil production system.,2014,126,Rel. Eng. and Sys. Safety,,db/journals/ress/ress126.html#ZhangIDD14,https://doi.org/10.1016/j.ress.2014.01.016 +Génia Babykina,Modeling and simulation of a controlled steam generator in the context of dynamic reliability using a Stochastic Hybrid Automaton.,2016,152,Rel. Eng. and Sys. Safety,,db/journals/ress/ress152.html#BabykinaBAD16,https://doi.org/10.1016/j.ress.2016.03.009 +Hsin-Nan Tsai,A trivariate optimal replacement policy for a deteriorating system based on cumulative damage and inspections.,2017,160,Rel. Eng. and Sys. Safety,,db/journals/ress/ress160.html#TsaiSZ17a,https://doi.org/10.1016/j.ress.2016.10.029 +Cristina Ibáñez-Llano,Hybrid approach for the assessment of PSA models by means of binary decision diagrams.,2010,95,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress95.html#Ibanez-LlanoRMN10,https://doi.org/10.1016/j.ress.2010.04.016 +Ioannis A. Papazoglou,A logical model for quantification of occupational risk.,2007,92,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress92.html#PapazoglouA07,https://doi.org/10.1016/j.ress.2006.04.017 +Lance Fiondella,A confidence-based approach to reliability design considering correlated failures.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#FiondellaLPCL17,https://doi.org/10.1016/j.ress.2017.03.025 +Lars Witte,Stochastic modeling of a hazard detection and avoidance maneuver - The planetary landing case.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#Witte13,https://doi.org/10.1016/j.ress.2013.06.033 +Audun Borg,The concept of validation of numerical models for consequence analysis.,2014,125,Rel. Eng. and Sys. Safety,,db/journals/ress/ress125.html#BorgHN14,https://doi.org/10.1016/j.ress.2013.09.009 +Zhaojun Li,A two-stage approach for multi-objective decision making with applications to system reliability optimization.,2009,94,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress94.html#LiLC09,https://doi.org/10.1016/j.ress.2009.02.022 +Zu-Liang Lin,Non-periodic preventive maintenance with reliability thresholds for complex repairable systems.,2015,136,Rel. Eng. and Sys. Safety,,db/journals/ress/ress136.html#LinHF15,https://doi.org/10.1016/j.ress.2014.12.010 +Frank P. A. Coolen,Nonparametric predictive inference in reliability.,2002,78,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress78.html#CoolenCY02,https://doi.org/10.1016/S0951-8320(02)00162-X +Yujie Wang,Probabilistic competing failure analysis in phased-mission systems.,2018,176,Rel. Eng. and Sys. Safety,,db/journals/ress/ress176.html#WangXLH18,https://doi.org/10.1016/j.ress.2018.03.031 +Enrique F. Castillo,Sensitivity analysis in optimization and reliability problems.,2008,93,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress93.html#CastilloMC08,https://doi.org/10.1016/j.ress.2008.03.010 +Pierre Gehl,Approximate Bayesian network formulation for the rapid loss assessment of real-world infrastructure systems.,2018,177,Rel. Eng. and Sys. Safety,,db/journals/ress/ress177.html#GehlCF18,https://doi.org/10.1016/j.ress.2018.04.022 +Rui Peng,Defending a single object against an attacker trying to detect a subset of false targets.,2016,149,Rel. Eng. and Sys. Safety,,db/journals/ress/ress149.html#PengZL16,https://doi.org/10.1016/j.ress.2016.01.002 +Enrico Zio,Maintenance modelling and applications.,2009,94,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress94.html#ZioV09,https://doi.org/10.1016/j.ress.2008.05.001 +Jinkyun Park,The step complexity measure for emergency operating procedures - comparing with simulation data.,2001,74,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress74.html#ParkJKHS01,https://doi.org/10.1016/S0951-8320(01)00063-1 +Jeasu Jeon,Product failure pattern analysis from warranty data using association rule and Weibull regression analysis: A case study.,2015,133,Rel. Eng. and Sys. Safety,,db/journals/ress/ress133.html#JeonS15,https://doi.org/10.1016/j.ress.2014.08.015 +Tony Licu,"EUROCONTROL - Systemic Occurrence Analysis Methodology (SOAM) - A ""Reason""-based organisational methodology for analysing incidents and accidents.",2007,92,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress92.html#LicuCHL07,https://doi.org/10.1016/j.ress.2006.08.010 +Jon C. Helton,Quantification of margins and uncertainties: Conceptual and computational basis.,2011,96,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress96.html#Helton11,https://doi.org/10.1016/j.ress.2011.03.017 +Anne Koziolek,Assessing survivability to support power grid investment decisions.,2016,155,Rel. Eng. and Sys. Safety,,db/journals/ress/ress155.html#KoziolekASMDSLT16,https://doi.org/10.1016/j.ress.2016.05.015 +Jian Zhou,Combined effects of load dynamics and dependence clusters on cascading failures in network systems.,2018,170,Rel. Eng. and Sys. Safety,,db/journals/ress/ress170.html#ZhouHCF18,https://doi.org/10.1016/j.ress.2017.10.008 +Karin S. de Smidt-Destombes,On the availability of a k-out-of-N system given limited spares and repair capacity under a condition based maintenance strategy.,2004,83,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress83.html#Smidt-DestombesHH04,https://doi.org/10.1016/j.ress.2003.10.004 +Gregory Levitin,Optimal arrangement of connecting elements in linear consecutively connected systems with heterogeneous warm standby groups.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#LevitinXD17a,https://doi.org/10.1016/j.ress.2017.05.007 +Sharif Rahman,Global sensitivity analysis by polynomial dimensional decomposition.,2011,96,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress96.html#Rahman11,https://doi.org/10.1016/j.ress.2011.03.002 +Albert F. Myers,Assessment of redundant systems with imperfect coverage by means of binary decision diagrams.,2008,93,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress93.html#MyersR08,https://doi.org/10.1016/j.ress.2007.05.002 +Ruoxue Zhang,Integration of computation and testing for reliability estimation.,2001,74,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress74.html#ZhangM01,https://doi.org/10.1016/S0951-8320(01)00008-4 +Sergio Brandão da Motta,Determination of preventive maintenance periodicities of standby devices.,2002,76,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress76.html#MottaC02,https://doi.org/10.1016/S0951-8320(01)00134-X +Sang Hun Lee,"Corrigendum to ""Reliability modeling of safety-critical network communication in a digitalized nuclear power plant"" [Reliab. Eng. Syst. Saf. 144 (2015) 285-295].",2016,149,Rel. Eng. and Sys. Safety,,db/journals/ress/ress149.html#LeeKSSLK16,https://doi.org/10.1016/j.ress.2015.12.014 +Chi-Hsiang Wang,Probabilistic procedure for design of untreated timber poles in-ground under attack of decay fungi.,2008,93,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress93.html#WangLN08,https://doi.org/10.1016/j.ress.2006.12.007 +David R. Godoy,A decision-making framework to integrate maintenance contract conditions with critical spares management.,2014,131,Rel. Eng. and Sys. Safety,,db/journals/ress/ress131.html#GodoyPK14,https://doi.org/10.1016/j.ress.2014.06.022 +Kouroush Jenab,Assessment of reversible multi-state k-out-of-n: G/F/Load-Sharing systems with flow-graph models.,2006,91,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress91.html#JenabD06,https://doi.org/10.1016/j.ress.2005.07.003 +Floris Goerlandt,Traffic simulation based ship collision probability modeling.,2011,96,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress96.html#GoerlandtK11,https://doi.org/10.1016/j.ress.2010.09.003 +Knut øien,Risk indicators as a tool for risk control.,2001,74,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress74.html#Oien01,https://doi.org/10.1016/S0951-8320(01)00067-9 +Amos Necci,Assessment of lightning impact frequency for process equipment.,2014,130,Rel. Eng. and Sys. Safety,,db/journals/ress/ress130.html#NecciACKBN14,https://doi.org/10.1016/j.ress.2014.05.001 +Kyung S. Park,A new method for estimating human error probabilities: AHP-SLIM.,2008,93,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress93.html#ParkL08,https://doi.org/10.1016/j.ress.2007.02.003 +Eirik Bjorheim Abrahamsen,Are too many safety measures crowding each other out?,2018,174,Rel. Eng. and Sys. Safety,,db/journals/ress/ress174.html#AbrahamsenMAAHM18,https://doi.org/10.1016/j.ress.2018.02.011 +Min Ouyang,Vulnerability analysis of complementary transportation systems with applications to railway and airline systems in China.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#OuyangPHH15,https://doi.org/10.1016/j.ress.2015.05.013 +Xiaoyang Li,Bayesian step stress accelerated degradation testing design: A multi-objective Pareto-optimal approach.,2018,171,Rel. Eng. and Sys. Safety,,db/journals/ress/ress171.html#LiHZLK18,https://doi.org/10.1016/j.ress.2017.11.005 +Isaac Hernandez-Fajardo,Probabilistic study of cascading failures in complex interdependent lifeline systems.,2013,111,Rel. Eng. and Sys. Safety,,db/journals/ress/ress111.html#Hernandez-FajardoD13,https://doi.org/10.1016/j.ress.2012.10.012 +Man Cheol Kim,A computational model for knowledge-driven monitoring of nuclear power plant operators based on information theory.,2006,91,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress91.html#KimS06a,https://doi.org/10.1016/j.ress.2005.01.017 +Mindaugas Snipas,Numerical solution of reliability models described by stochastic automata networks.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#SnipasRV18,https://doi.org/10.1016/j.ress.2017.09.024 +V. S. Deshpande,Application of RCM for safety considerations in a steel plant.,2002,78,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress78.html#DeshpandeM02a,https://doi.org/10.1016/S0951-8320(02)00177-1 +N. C. Caballé,A condition-based maintenance of a dependent degradation-threshold-shock model in a system with multiple degradation processes.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#CaballeCPL15,https://doi.org/10.1016/j.ress.2014.09.024 +E. Marzo,Definition of a short-cut methodology for assessing the vulnerability of a territory in natural-technological risk estimation.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#MarzoBR15,https://doi.org/10.1016/j.ress.2014.07.026 +Beiqing Huang,Probabilistic uncertainty analysis by mean-value first order Saddlepoint Approximation.,2008,93,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress93.html#HuangD08,https://doi.org/10.1016/j.ress.2006.10.021 +Vandana Gupta,Semi-Markov modeling of dependability of VoIP network in the presence of resource degradation and security attacks.,2011,96,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress96.html#GuptaD11,https://doi.org/10.1016/j.ress.2011.08.003 +Stein Haugen,Perspectives on risk and the unforeseen.,2015,137,Rel. Eng. and Sys. Safety,,db/journals/ress/ress137.html#HaugenV15,https://doi.org/10.1016/j.ress.2014.12.009 +Bin Liu 0025,Condition-based maintenance for systems with aging and cumulative damage based on proportional hazards model.,2017,168,Rel. Eng. and Sys. Safety,,db/journals/ress/ress168.html#LiuLPXK17,https://doi.org/10.1016/j.ress.2017.04.010 +James Winkler,Performance assessment of topologically diverse power systems subjected to hurricane events.,2010,95,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress95.html#WinklerDSS10,https://doi.org/10.1016/j.ress.2009.11.002 +William Oberkampf,Error and uncertainty in modeling and simulation.,2002,75,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress75.html#OberkampfDRDA02,https://doi.org/10.1016/S0951-8320(01)00120-X +Tadashi Dohi,Special issue on stochastic reliability and maintenance modeling with real applications.,2013,116,Rel. Eng. and Sys. Safety,,db/journals/ress/ress116.html#DohiN13,https://doi.org/10.1016/j.ress.2013.04.001 +Rob P. Rechard,Waste degradation and mobilization in performance assessments for the Yucca Mountain disposal system for spent nuclear fuel and high-level radioactive waste.,2014,122,Rel. Eng. and Sys. Safety,,db/journals/ress/ress122.html#RechardS14,https://doi.org/10.1016/j.ress.2013.06.028 +Rui Peng,Joint routing and aborting optimization of cooperative unmanned aerial vehicles.,2018,177,Rel. Eng. and Sys. Safety,,db/journals/ress/ress177.html#Peng18,https://doi.org/10.1016/j.ress.2018.05.004 +Gang Niu,Development of an optimized condition-based maintenance system by data fusion and reliability-centered maintenance.,2010,95,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress95.html#NiuYP10,https://doi.org/10.1016/j.ress.2010.02.016 +Antoine Grall,Asymptotic failure rate of a continuously monitored system.,2006,91,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress91.html#GrallDBR06,https://doi.org/10.1016/j.ress.2005.03.008 +Nabil Nahas,Ant system for reliability optimization of a series system with multiple-choice and budget constraints.,2005,87,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress87.html#NahasN05,https://doi.org/10.1016/j.ress.2004.02.007 +Sanjib Kumar Gupta,Warranty forecasting from incomplete two-dimensional warranty data.,2014,126,Rel. Eng. and Sys. Safety,,db/journals/ress/ress126.html#GuptaDC14,https://doi.org/10.1016/j.ress.2014.01.006 +Irene Eusgeld,The role of network theory and object-oriented modeling within a framework for the vulnerability analysis of critical infrastructures.,2009,94,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress94.html#EusgeldKSSZ09,https://doi.org/10.1016/j.ress.2008.10.011 +Stephan Philippi,Analysis of fault tolerance and reliability in distributed real-time system architectures.,2003,82,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress82.html#Philippi03,https://doi.org/10.1016/S0951-8320(03)00169-8 +Philipp Ziegler,Sensitivity Analysis of features in tolerancing based on constraint function level sets.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#ZieglerW15,https://doi.org/10.1016/j.ress.2014.09.017 +Mario Brito,A Bayesian approach for predicting risk of autonomous underwater vehicle loss during their missions.,2016,146,Rel. Eng. and Sys. Safety,,db/journals/ress/ress146.html#BritoG16,https://doi.org/10.1016/j.ress.2015.10.004 +Sergei S. Kucherenko,Monte Carlo evaluation of derivative-based global sensitivity measures.,2009,94,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress94.html#KucherenkoRPS09,https://doi.org/10.1016/j.ress.2008.05.006 +Jia Huang,New approach for failure mode and effect analysis using linguistic distribution assessments and TODIM method.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#HuangLL17,https://doi.org/10.1016/j.ress.2017.06.014 +A. S. Garmabaki,A reliability decision framework for multiple repairable units.,2016,150,Rel. Eng. and Sys. Safety,,db/journals/ress/ress150.html#GarmabakiABPK16,https://doi.org/10.1016/j.ress.2016.01.020 +Julien Chiquet,Modelling and estimating the reliability of stochastic dynamical systems with Markovian switching.,2008,93,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress93.html#ChiquetEL08,https://doi.org/10.1016/j.ress.2008.03.016 +Seung-Ryong Han,Estimating the spatial distribution of power outages during hurricanes in the Gulf coast region.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#HanGQLRD09,https://doi.org/10.1016/j.ress.2008.02.018 +Terje Aven,Some considerations on the treatment of uncertainties in risk assessment for practical decision making.,2011,96,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress96.html#AvenZ11,https://doi.org/10.1016/j.ress.2010.06.001 +Jean-Pierre Signoret,Make your Petri nets understandable: Reliability block diagrams driven Petri nets.,2013,113,Rel. Eng. and Sys. Safety,,db/journals/ress/ress113.html#SignoretDCFCT13,https://doi.org/10.1016/j.ress.2012.12.008 +Taeyong Kim,Generalized Reliability Importance Measure (GRIM) using Gaussian mixture.,2018,173,Rel. Eng. and Sys. Safety,,db/journals/ress/ress173.html#KimS18,https://doi.org/10.1016/j.ress.2018.01.005 +Galileo Tamasi,Risk assessment techniques for civil aviation security.,2011,96,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress96.html#TamasiD11,https://doi.org/10.1016/j.ress.2011.03.009 +Erik T. S. Bjarnason,Joint optimal inspection and inventory for a k-out-of-n system.,2014,131,Rel. Eng. and Sys. Safety,,db/journals/ress/ress131.html#BjarnasonTB14,https://doi.org/10.1016/j.ress.2014.06.018 +Bentolhoda Jafary,A universal generating function-based multi-state system performance model subject to correlated failures.,2016,152,Rel. Eng. and Sys. Safety,,db/journals/ress/ress152.html#JafaryF16,https://doi.org/10.1016/j.ress.2016.02.004 +Ivan Hernandez,Robust facility location: Hedging against failures.,2014,123,Rel. Eng. and Sys. Safety,,db/journals/ress/ress123.html#HernandezRRPM14,https://doi.org/10.1016/j.ress.2013.10.006 +Kit-Nam Francis Leung,Analysis for a two-dissimilar-component cold standby repairable system with repair priority.,2011,96,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress96.html#LeungZL11,https://doi.org/10.1016/j.ress.2011.06.004 +S. G. Kariuki,Integrating human factors into process hazard analysis.,2007,92,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress92.html#KariukiL07,https://doi.org/10.1016/j.ress.2007.01.002 +Chris Jackson,Bayesian inference with overlapping data: Reliability estimation of multi-state on-demand continuous life metric systems with uncertain evidence.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#Jackson016,https://doi.org/10.1016/j.ress.2015.09.006 +Emanuele Borgonovo,Advances in sensitivity analysis.,2012,107,Rel. Eng. and Sys. Safety,,db/journals/ress/ress107.html#BorgonovoT12,https://doi.org/10.1016/j.ress.2012.09.001 +Dong-Seok Kim,System reliability analysis using dominant failure modes identified by selective searching technique.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#KimOSK13,https://doi.org/10.1016/j.ress.2013.02.007 +Yuko Mizuno,Risk-informed design of IRIS using a level-1 probabilistic risk assessment from its conceptual design phase.,2005,87,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress87.html#MizunoNF05,https://doi.org/10.1016/j.ress.2004.04.018 +Guillaume Merle,Algebraic determination of the structure function of Dynamic Fault Trees.,2011,96,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress96.html#MerleRL11,https://doi.org/10.1016/j.ress.2010.10.001 +Yi Ding,Optimal reserve management for restructured power generating systems.,2006,91,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress91.html#DingWL06,https://doi.org/10.1016/j.ress.2005.08.001 +Xueqing Zhang,Road maintenance optimization through a discrete-time semi-Markov decision process.,2012,103,Rel. Eng. and Sys. Safety,,db/journals/ress/ress103.html#ZhangG12,https://doi.org/10.1016/j.ress.2012.03.011 +Shey-Huei Sheu,A Bayesian approach to an adaptive preventive maintenance model.,2001,71,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress71.html#SheuYLJ01,https://doi.org/10.1016/S0951-8320(00)00072-7 +Mingyang Li 0002,Bayesian modeling of multi-state hierarchical systems with multi-level information aggregation.,2014,124,Rel. Eng. and Sys. Safety,,db/journals/ress/ress124.html#LiLLK14,https://doi.org/10.1016/j.ress.2013.12.001 +Marco Bozzano,Spacecraft early design validation using formal methods.,2014,132,Rel. Eng. and Sys. Safety,,db/journals/ress/ress132.html#BozzanoCKKMNNPR14,https://doi.org/10.1016/j.ress.2014.07.003 +Paolo Trucco,Dynamic functional modelling of vulnerability and interoperability of Critical Infrastructures.,2012,105,Rel. Eng. and Sys. Safety,,db/journals/ress/ress105.html#TruccoCA12,https://doi.org/10.1016/j.ress.2011.12.003 +Juan Francisco Gómez Fernández,Framework for implementation of maintenance management in distribution network service providers.,2009,94,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress94.html#FernandezM09,https://doi.org/10.1016/j.ress.2009.04.003 +Bernt J. Leira,Reliability updating based on monitoring of structural response parameters.,2016,155,Rel. Eng. and Sys. Safety,,db/journals/ress/ress155.html#Leira16,https://doi.org/10.1016/j.ress.2016.07.006 +Elena Rogova,Braking system redundancy requirements for moving walks.,2015,133,Rel. Eng. and Sys. Safety,,db/journals/ress/ress133.html#RogovaL15,https://doi.org/10.1016/j.ress.2014.08.017 +Glen D. Murphy,Improving the quality of manually acquired data: Applying the theory of planned behaviour to data quality.,2009,94,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress94.html#Murphy09,https://doi.org/10.1016/j.ress.2009.05.008 +Jon C. Helton,Verification of the calculation of probability of loss of assured safety in temperature-dependent systems with multiple weak and strong links.,2007,92,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress92.html#HeltonJO07,https://doi.org/10.1016/j.ress.2006.09.005 +Radim Bris,Bayes approach in RDT using accelerated and long-term life data.,2000,67,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress67.html#Bris00,https://doi.org/10.1016/S0951-8320(99)00025-3 +Vahid Ebrahimipour,A synergetic approach for assessing and improving equipment performance in offshore industry based on dependability.,2006,91,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress91.html#EbrahimipourS06,https://doi.org/10.1016/j.ress.2004.11.008 +Samir Touzani,Smoothing spline analysis of variance approach for global sensitivity analysis of computer codes.,2013,112,Rel. Eng. and Sys. Safety,,db/journals/ress/ress112.html#TouzaniB13,https://doi.org/10.1016/j.ress.2012.11.008 +Chiming Guo,A maintenance optimization model for mission-oriented systems based on Wiener degradation.,2013,111,Rel. Eng. and Sys. Safety,,db/journals/ress/ress111.html#GuoWGS13,https://doi.org/10.1016/j.ress.2012.10.015 +Matthew E. Riley,Evidence-based quantification of uncertainties induced via simulation-based modeling.,2015,133,Rel. Eng. and Sys. Safety,,db/journals/ress/ress133.html#Riley15,https://doi.org/10.1016/j.ress.2014.08.016 +Yves Dutuit,New insights into the assessment of k-out-of-n and related systems.,2001,72,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress72.html#DutuitR01a,https://doi.org/10.1016/S0951-8320(01)00024-2 +Terje Aven,On the link between risk and exposure.,2012,106,Rel. Eng. and Sys. Safety,,db/journals/ress/ress106.html#Aven12a,https://doi.org/10.1016/j.ress.2012.06.004 +Floris Goerlandt,Maritime transportation risk analysis: Review and analysis in light of some foundational issues.,2015,138,Rel. Eng. and Sys. Safety,,db/journals/ress/ress138.html#GoerlandtM15,https://doi.org/10.1016/j.ress.2015.01.025 +Mark-Alexander Sujan,How can health care organisations make and justify decisions about risk reduction? Lessons from a cross-industry review and a health care stakeholder consensus development process.,2017,161,Rel. Eng. and Sys. Safety,,db/journals/ress/ress161.html#SujanHKGPJ17,https://doi.org/10.1016/j.ress.2017.01.001 +Enrico Zio,A combination of Monte Carlo simulation and cellular automata for computing the availability of complex network systems.,2006,91,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress91.html#ZioPZ06,https://doi.org/10.1016/j.ress.2004.12.002 +Marcelo Ramos Martins,Application of Bayesian Belief networks to the human reliability analysis of an oil tanker operation focusing on collision accidents.,2013,110,Rel. Eng. and Sys. Safety,,db/journals/ress/ress110.html#MartinsM13,https://doi.org/10.1016/j.ress.2012.09.008 +Anca M. Hanea,Non-parametric Bayesian networks: Improving theory and reviewing applications.,2015,144,Rel. Eng. and Sys. Safety,,db/journals/ress/ress144.html#HaneaMA15,https://doi.org/10.1016/j.ress.2015.07.027 +Enrico Zio,Particle filtering prognostic estimation of the remaining useful life of nonlinear components.,2011,96,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress96.html#ZioP11,https://doi.org/10.1016/j.ress.2010.08.009 +E. Lay,A practitioner's experiences operationalizing Resilience Engineering.,2015,141,Rel. Eng. and Sys. Safety,,db/journals/ress/ress141.html#LayBW15,https://doi.org/10.1016/j.ress.2015.03.015 +Chris W. Johnson 0001,Proving properties of accidents.,2000,67,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress67.html#Johnson00,https://doi.org/10.1016/S0951-8320(99)00066-6 +Jinkyun Park,The operators' non-compliance behavior to conduct emergency operating procedures - comparing with the work experience and the complexity of procedural steps.,2003,82,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress82.html#ParkJ03a,https://doi.org/10.1016/S0951-8320(03)00123-6 +Yi-Kuei Lin,Study on the system capacity for a multicommodity stochastic-flow network with node failure.,2002,78,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress78.html#Lin02a,https://doi.org/10.1016/S0951-8320(02)00108-4 +Kong Fah Tee,Application of subset simulation in reliability estimation of underground pipelines.,2014,130,Rel. Eng. and Sys. Safety,,db/journals/ress/ress130.html#TeeKL14,https://doi.org/10.1016/j.ress.2014.05.006 +Gianluca Iaccarino,Quantification of margins and uncertainties using multiple gates and conditional probabilities.,2013,114,Rel. Eng. and Sys. Safety,,db/journals/ress/ress114.html#IaccarinoSG13,https://doi.org/10.1016/j.ress.2012.11.026 +Oded Cats,Robustness assessment of link capacity reduction for complex networks: Application for public transport systems.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#CatsKW17,https://doi.org/10.1016/j.ress.2017.07.009 +Jose Ignacio Aizpurua,Supporting group maintenance through prognostics-enhanced dynamic dependability prediction.,2017,168,Rel. Eng. and Sys. Safety,,db/journals/ress/ress168.html#AizpuruaCPCD17,https://doi.org/10.1016/j.ress.2017.04.005 +Anduin E. Touw,Bayesian estimation of mixed Weibull distributions.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#Touw09,https://doi.org/10.1016/j.ress.2008.05.004 +David Navarre,Designing for resilience to hardware failures in interactive systems: A model and simulation-based approach.,2011,96,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress96.html#NavarrePBLM11,https://doi.org/10.1016/j.ress.2010.06.028 +Elke Hermans,Uncertainty assessment of the road safety index.,2009,94,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress94.html#HermansBW09,https://doi.org/10.1016/j.ress.2008.09.004 +Dongyan Chen,Closed-form analytical results for condition-based maintenance.,2002,76,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress76.html#ChenT02,https://doi.org/10.1016/S0951-8320(01)00141-7 +B. Jones,The use of Bayesian network modelling for maintenance planning in a manufacturing industry.,2010,95,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress95.html#JonesJYW10,https://doi.org/10.1016/j.ress.2009.10.007 +Yong Sun,An analytical model for interactive failures.,2006,91,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress91.html#SunMMZ06,https://doi.org/10.1016/j.ress.2005.03.014 +Mayank Kumar Pandey,Selective maintenance for binary systems under imperfect repair.,2013,113,Rel. Eng. and Sys. Safety,,db/journals/ress/ress113.html#PandeyZMT13,https://doi.org/10.1016/j.ress.2012.12.009 +Marko Cepin,A dynamic fault tree.,2002,75,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress75.html#CepinM02,https://doi.org/10.1016/S0951-8320(01)00121-1 +María Dolores Berrade,Imperfect inspection and replacement of a system with a defective state: A cost and reliability analysis.,2013,120,Rel. Eng. and Sys. Safety,,db/journals/ress/ress120.html#BerradeSCD13,https://doi.org/10.1016/j.ress.2013.02.024 +Torbjørn Bjerga,An illustration of the use of an approach for treating model uncertainties in risk assessment.,2014,125,Rel. Eng. and Sys. Safety,,db/journals/ress/ress125.html#BjergaAZ14,https://doi.org/10.1016/j.ress.2014.01.014 +Nat Jack,"Comments on ""Maintenance policies with two-dimensional warranty"".",2003,82,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress82.html#JackMI03,https://doi.org/10.1016/S0951-8320(03)00119-4 +Ghofrane Maaroufi,Optimal selective renewal policy for systems subject to propagated failures with global effect and failure isolation phenomena.,2013,114,Rel. Eng. and Sys. Safety,,db/journals/ress/ress114.html#MaaroufiCR13,https://doi.org/10.1016/j.ress.2012.12.019 +Yan Li,Modeling and analysis for multi-state systems with discrete-time Markov regime-switching.,2017,166,Rel. Eng. and Sys. Safety,,db/journals/ress/ress166.html#LiCL17,https://doi.org/10.1016/j.ress.2017.03.024 +Wei-wei Wu,Evaluation of the reliability of transport networks based on the stochastic flow of moving objects.,2008,93,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress93.html#WuNN08,https://doi.org/10.1016/j.ress.2007.03.030 +Qiang Xu,Pipe break prediction based on evolutionary data-driven methods with brief recorded data.,2011,96,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress96.html#XuCLM11,https://doi.org/10.1016/j.ress.2011.03.010 +Mohammad Sadeq Garshasbi,Fault localization based on combines active and passive measurements in computer networks by ant colony optimization.,2016,152,Rel. Eng. and Sys. Safety,,db/journals/ress/ress152.html#Garshasbi16,https://doi.org/10.1016/j.ress.2016.03.017 +Manoj Kumar 0004,Modeling demand rate and imperfect proof-test and analysis of their effect on system safety.,2008,93,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress93.html#KumarVS08,https://doi.org/10.1016/j.ress.2007.12.001 +Yufei Shu,Team performance modeling for HRA in dynamic situations.,2002,78,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress78.html#ShuFK02,https://doi.org/10.1016/S0951-8320(02)00111-4 +David Valis,Perspective analysis outcomes of selected tribodiagnostic data used as input for condition based maintenance.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#ValisZPL16,https://doi.org/10.1016/j.ress.2015.07.026 +Rob P. Rechard,Hazards and scenarios examined for the Yucca Mountain disposal system for spent nuclear fuel and high-level radioactive waste.,2014,122,Rel. Eng. and Sys. Safety,,db/journals/ress/ress122.html#RechardFP14,https://doi.org/10.1016/j.ress.2013.06.014 +Erik E. Kostandyan,Physics of failure as a basis for solder elements reliability assessment in wind turbines.,2012,108,Rel. Eng. and Sys. Safety,,db/journals/ress/ress108.html#KostandyanS12,https://doi.org/10.1016/j.ress.2012.06.020 +Stephen M. Hess,Development of a dynamical systems model of plant programmatic performance on nuclear power plant safety risk.,2005,90,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress90.html#HessAG05,https://doi.org/10.1016/j.ress.2004.10.006 +Shaomin Wu,Warranty claim analysis considering human factors.,2011,96,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress96.html#Wu11,https://doi.org/10.1016/j.ress.2010.07.010 +Mohsen Naderpour,An abnormal situation modeling method to assist operators in safety-critical systems.,2015,133,Rel. Eng. and Sys. Safety,,db/journals/ress/ress133.html#NaderpourLZ15,https://doi.org/10.1016/j.ress.2014.08.003 +Yi-Kuei Lin,Using minimal cuts to evaluate the system reliability of a stochastic-flow network with failures at nodes and arcs.,2002,75,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress75.html#Lin02,https://doi.org/10.1016/S0951-8320(01)00110-7 +Wenjin Zhu,A multi-level maintenance policy for a multi-component and multifailure mode system with two independent failure modes.,2016,153,Rel. Eng. and Sys. Safety,,db/journals/ress/ress153.html#ZhuFB16,https://doi.org/10.1016/j.ress.2016.03.020 +Michael S. Hamada,A fully Bayesian approach for combining multilevel failure information in fault tree quantification and optimal follow-on resource allocation.,2004,86,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress86.html#HamadaMRGJW04,https://doi.org/10.1016/j.ress.2004.02.001 +Yi-Kuei Lin,Maximal network reliability for a stochastic power transmission network.,2011,96,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress96.html#LinY11,https://doi.org/10.1016/j.ress.2011.04.001 +Christophe Bérenguer,Special issue of selected papers from ESREL 2011.,2013,120,Rel. Eng. and Sys. Safety,,db/journals/ress/ress120.html#BerenguerG13,https://doi.org/10.1016/j.ress.2013.06.022 +Baoping Cai,Availability-based engineering resilience metric and its corresponding evaluation methodology.,2018,172,Rel. Eng. and Sys. Safety,,db/journals/ress/ress172.html#CaiXLLF18,https://doi.org/10.1016/j.ress.2017.12.021 +Bing Li,A practical engineering method for fuzzy reliability analysis of mechanical structures.,2000,67,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress67.html#LiZX00,https://doi.org/10.1016/S0951-8320(99)00073-3 +Carlos Conceição António,Uncertainty analysis based on sensitivity applied to angle-ply composite structures.,2007,92,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress92.html#AntonioH07,https://doi.org/10.1016/j.ress.2006.09.006 +Ranjan Kumar,Multi-objective hierarchical genetic algorithms for multilevel redundancy allocation optimization.,2009,94,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress94.html#KumarIYN09,https://doi.org/10.1016/j.ress.2008.10.002 +Pedro A. Pérez Ramírez,Decision support for life extension of technical systems through virtual age modelling.,2013,115,Rel. Eng. and Sys. Safety,,db/journals/ress/ress115.html#RamirezU13,https://doi.org/10.1016/j.ress.2013.02.002 +Stefania Montani,Special session on Bayesian networks in dependability.,2008,93,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress93.html#MontaniB08,https://doi.org/10.1016/j.ress.2007.03.004 +Xiaomo Jiang,Bayesian structural equation modeling method for hierarchical model validation.,2009,94,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress94.html#JiangM09a,https://doi.org/10.1016/j.ress.2008.08.008 +Jussi Lahtinen,Model checking of safety-critical software in the nuclear engineering domain.,2012,105,Rel. Eng. and Sys. Safety,,db/journals/ress/ress105.html#LahtinenVBFNH12,https://doi.org/10.1016/j.ress.2012.03.021 +Gregory Levitin,Common supply failures in linear multi-state sliding window systems.,2003,82,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress82.html#Levitin03a,https://doi.org/10.1016/S0951-8320(03)00121-2 +Shi-Woei Lin,Response to comments on Lin and Bier (2008).,2008,93,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress93.html#LinB08a,https://doi.org/10.1016/j.ress.2008.02.004 +Jose Emmanuel Ramirez-Marquez,Port-of-entry safety via the reliability optimization of container inspection strategy through an evolutionary approach.,2008,93,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress93.html#Ramirez-Marquez08,https://doi.org/10.1016/j.ress.2008.01.003 +Wenbin Wang,A multi-component and multi-failure mode inspection model based on the delay time concept.,2010,95,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress95.html#WangBP10,https://doi.org/10.1016/j.ress.2010.04.004 +K. T. Lendering,Risk-based optimization of land reclamation.,2015,144,Rel. Eng. and Sys. Safety,,db/journals/ress/ress144.html#LenderingJGP15,https://doi.org/10.1016/j.ress.2015.07.025 +Mashrura Musharraf,A virtual experimental technique for data collection for a Bayesian network approach to human reliability analysis.,2014,132,Rel. Eng. and Sys. Safety,,db/journals/ress/ress132.html#MusharrafBKVMI14,https://doi.org/10.1016/j.ress.2014.06.016 +Laura Attardi,A mixed-Weibull regression model for the analysis of automotive warranty data.,2005,87,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress87.html#AttardiGP05,https://doi.org/10.1016/j.ress.2004.05.003 +Marko Cepin,DEPEND-HRA - A method for consideration of dependency in human reliability analysis.,2008,93,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress93.html#Cepin08,https://doi.org/10.1016/j.ress.2007.10.004 +Kjell Hausken,Protection vs. false targets in series systems.,2009,94,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress94.html#HauskenL09a,https://doi.org/10.1016/j.ress.2008.11.003 +Saad J. Almalki,A new modified Weibull distribution.,2013,111,Rel. Eng. and Sys. Safety,,db/journals/ress/ress111.html#AlmalkiY13,https://doi.org/10.1016/j.ress.2012.10.018 +Ji-Eun Byun,Reliability growth analysis of k-out-of-N systems using matrix-based system reliability method.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#ByunNS17,https://doi.org/10.1016/j.ress.2017.05.001 +Iván Cárdenas-Gallo,An ensemble classifier to predict track geometry degradation.,2017,161,Rel. Eng. and Sys. Safety,,db/journals/ress/ress161.html#Cardenas-GalloS17,https://doi.org/10.1016/j.ress.2016.12.012 +Todd L. Graves,Using simultaneous higher-level and partial lower-level data in reliability assessments.,2008,93,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress93.html#GravesHKKM08,https://doi.org/10.1016/j.ress.2007.07.002 +Phuc Do,A proactive condition-based maintenance strategy with both perfect and imperfect maintenance actions.,2015,133,Rel. Eng. and Sys. Safety,,db/journals/ress/ress133.html#DoVLI15,https://doi.org/10.1016/j.ress.2014.08.011 +Mahmoud Awad,Analyzing sensitivity measures using moment-matching technique.,2017,159,Rel. Eng. and Sys. Safety,,db/journals/ress/ress159.html#Awad17,https://doi.org/10.1016/j.ress.2016.10.020 +Zhong Lu,Markov process based time limited dispatch analysis with constraints of both dispatch reliability and average safety levels.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#LuLZZ17,https://doi.org/10.1016/j.ress.2017.05.031 +J. A. Cordes,Reliability estimates for flawed mortar projectile bodies.,2009,94,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress94.html#CordesTWC09,https://doi.org/10.1016/j.ress.2009.06.004 +Xuedong Wu,Predicting reliability and failures of engine systems by single multiplicative neuron model with iterated nonlinear filters.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#WuCMD13,https://doi.org/10.1016/j.ress.2013.06.039 +Gi Mun Jung,Optimal maintenance policies during the post-warranty period.,2003,82,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress82.html#JungP03,https://doi.org/10.1016/S0951-8320(03)00144-3 +Zupei Shen,A supplemental algorithm for the repairable system in the GO methodology.,2006,91,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress91.html#ShenDH06,https://doi.org/10.1016/j.ress.2005.09.008 +Ernesto Salzano,Risk assessment and early warning systems for industrial facilities in seismic zones.,2009,94,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress94.html#SalzanoACF09,https://doi.org/10.1016/j.ress.2009.02.023 +José Orlando Gomes,Resilience and brittleness in the offshore helicopter transportation system: The identification of constraints and sacrifice decisions in pilots' work.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#GomesWCHB09,https://doi.org/10.1016/j.ress.2008.03.026 +Bruno Sudret,Global sensitivity analysis using polynomial chaos expansions.,2008,93,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress93.html#Sudret08a,https://doi.org/10.1016/j.ress.2007.04.002 +María Dolores Berrade,Modelling imperfect inspection over a finite horizon.,2013,111,Rel. Eng. and Sys. Safety,,db/journals/ress/ress111.html#BerradeCS13,https://doi.org/10.1016/j.ress.2012.10.003 +Wei-Chang Yeh,Search for minimal paths in modified networks.,2002,75,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress75.html#Yeh02,https://doi.org/10.1016/S0951-8320(01)00128-4 +T. V. Santosh,Application of artificial neural networks to nuclear power plant transient diagnosis.,2007,92,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress92.html#SantoshVSGK07,https://doi.org/10.1016/j.ress.2006.10.009 +Y. K. Wen,Minimum lifecycle cost design under multiple hazards.,2001,73,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress73.html#Wen01,https://doi.org/10.1016/S0951-8320(01)00047-3 +Yan-Gang Zhao,A flexible distribution and its application in reliability engineering.,2018,176,Rel. Eng. and Sys. Safety,,db/journals/ress/ress176.html#ZhaoZL18,https://doi.org/10.1016/j.ress.2018.03.026 +Daniela M. Hanea,Analysis of the Schiphol Cell Complex fire using a Bayesian belief net based model.,2012,100,Rel. Eng. and Sys. Safety,,db/journals/ress/ress100.html#HaneaJA12,https://doi.org/10.1016/j.ress.2012.01.002 +Günter Becker,Dynamic reliability under random shocks.,2002,77,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress77.html#BeckerCK02,https://doi.org/10.1016/S0951-8320(02)00057-1 +Prasanna Tamilselvan,Failure diagnosis using deep belief learning based health state classification.,2013,115,Rel. Eng. and Sys. Safety,,db/journals/ress/ress115.html#TamilselvanW13,https://doi.org/10.1016/j.ress.2013.02.022 +Jinkyun Park,A study on the development of a task complexity measure for emergency operating procedures of nuclear power plants.,2007,92,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress92.html#ParkJ07a,https://doi.org/10.1016/j.ress.2006.03.009 +Tom Kontogiannis,A systemic analysis of patterns of organizational breakdowns in accidents: A case from Helicopter Emergency Medical Service (HEMS) operations.,2012,99,Rel. Eng. and Sys. Safety,,db/journals/ress/ress99.html#KontogiannisM12,https://doi.org/10.1016/j.ress.2011.07.009 +Gregory Levitin,Heterogeneous 1-out-of-N warm standby systems with online checkpointing.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#LevitinXD18,https://doi.org/10.1016/j.ress.2017.08.011 +Xiaoyue Wu,Mission reliability of semi-Markov systems under generalized operational time requirements.,2015,140,Rel. Eng. and Sys. Safety,,db/journals/ress/ress140.html#WuH15,https://doi.org/10.1016/j.ress.2015.04.002 +Chaonan Wang,A fast approximation method for reliability analysis of cold-standby systems.,2012,106,Rel. Eng. and Sys. Safety,,db/journals/ress/ress106.html#WangXA12,https://doi.org/10.1016/j.ress.2012.06.007 +Ammar M. Sarhan,Exponentiated modified Weibull extension distribution.,2013,112,Rel. Eng. and Sys. Safety,,db/journals/ress/ress112.html#SarhanA13,https://doi.org/10.1016/j.ress.2012.10.013 +Abbas Barabadi,A methodology for throughput capacity analysis of a production facility considering environment condition.,2011,96,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress96.html#BarabadiBM11a,https://doi.org/10.1016/j.ress.2011.09.001 +J. K. Vrijling,Probabilistic design of water defense systems in The Netherlands.,2001,74,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress74.html#Vrijling01,https://doi.org/10.1016/S0951-8320(01)00082-5 +Weiwen Peng,Life cycle reliability assessment of new products - A Bayesian model updating approach.,2013,112,Rel. Eng. and Sys. Safety,,db/journals/ress/ress112.html#PengHLZX13,https://doi.org/10.1016/j.ress.2012.12.002 +Tom Haegemans,Entering data correctly: An empirical evaluation of the theory of planned behaviour in the context of manual data acquisition.,2018,178,Rel. Eng. and Sys. Safety,,db/journals/ress/ress178.html#HaegemansSL18,https://doi.org/10.1016/j.ress.2018.05.009 +Hee Eun Kim,Systematic development of scenarios caused by cyber-attack-induced human errors in nuclear power plants.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#KimSKK17,https://doi.org/10.1016/j.ress.2017.05.046 +Babita Sharma,Assertion checking environment (ACE) for formal verification of C programs.,2003,81,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress81.html#SharmaDR03,https://doi.org/10.1016/S0951-8320(03)00092-9 +Celso Marcelo Franklin Lapa,Surveillance test policy optimization through genetic algorithms using non-periodic intervention frequencies and considering seasonal constraints.,2003,81,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress81.html#LapaPM03,https://doi.org/10.1016/S0951-8320(03)00085-1 +Ronald L. Boring,Issues in benchmarking human reliability analysis methods: A literature review.,2010,95,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress95.html#BoringHFTL10,https://doi.org/10.1016/j.ress.2010.02.002 +Micaela Demichela,On the numerical solution of fault trees.,2003,82,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress82.html#DemichelaPCC03,https://doi.org/10.1016/S0951-8320(03)00142-X +Hyeonmin Kim,Failure rate updates using condition-based prognostics in probabilistic safety assessments.,2018,175,Rel. Eng. and Sys. Safety,,db/journals/ress/ress175.html#KimKH18,https://doi.org/10.1016/j.ress.2018.03.022 +Pengfei Wei,Monte Carlo simulation for moment-independent sensitivity analysis.,2013,110,Rel. Eng. and Sys. Safety,,db/journals/ress/ress110.html#WeiLY13a,https://doi.org/10.1016/j.ress.2012.09.005 +Willy Røed,Bayesian approaches for detecting significant deterioration.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#RoedA09,https://doi.org/10.1016/j.ress.2008.06.017 +Terje Aven,The use of a basic safety investment model in a practical risk management context.,2011,96,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress96.html#AvenH11,https://doi.org/10.1016/j.ress.2011.07.008 +ülkü Gürler,A maintenance policy for a system with multi-state components: an approximate solution.,2002,76,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress76.html#GurlerK02,https://doi.org/10.1016/S0951-8320(01)00125-9 +Francesca Cipollini,Condition-based maintenance of naval propulsion systems: Data analysis with minimal feedback.,2018,177,Rel. Eng. and Sys. Safety,,db/journals/ress/ress177.html#CipolliniOCMA18,https://doi.org/10.1016/j.ress.2018.04.015 +Wenfeng Zhang,Probabilistic design of aluminum sheet drawing for reduced risk of wrinkling and fracture.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#ZhangS09,https://doi.org/10.1016/j.ress.2008.02.024 +Sai Hung Cheung,Bayesian uncertainty analysis with applications to turbulence modeling.,2011,96,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress96.html#CheungOPPM11,https://doi.org/10.1016/j.ress.2010.09.013 +Fumio Machida,Analysis of an optimal stopping problem for software rejuvenation in a deteriorating job processing system.,2017,168,Rel. Eng. and Sys. Safety,,db/journals/ress/ress168.html#MachidaM17,https://doi.org/10.1016/j.ress.2017.05.019 +Simon Minderhoud,Shifting paradigms of product development in fast and dynamic markets.,2005,88,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress88.html#MinderhoudF05,https://doi.org/10.1016/j.ress.2004.07.002 +Jinghui Li,Likelihood ratio gradient estimation for dynamic reliability applications.,2011,96,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress96.html#LiMK11,https://doi.org/10.1016/j.ress.2011.08.001 +Yongxiang Zhao,An approach for determining an appropriate assumed distribution of fatigue life under limited data.,2000,67,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress67.html#ZhaoGW00,https://doi.org/10.1016/S0951-8320(99)00036-8 +Khanh Le Son,Remaining useful life estimation based on stochastic deterioration models: A comparative study.,2013,112,Rel. Eng. and Sys. Safety,,db/journals/ress/ress112.html#SonFBLI13,https://doi.org/10.1016/j.ress.2012.11.022 +Cen Song,N-stage security screening strategies in the face of strategic applicants.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#SongZ17,https://doi.org/10.1016/j.ress.2017.04.019 +Abdullah Konak,Multi-objective optimization of linear multi-state multiple sliding window system.,2012,98,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress98.html#KonakKL12,https://doi.org/10.1016/j.ress.2011.09.009 +Maritta Heisel,Guest Editorial.,2007,92,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress92.html#Heisel07,https://doi.org/10.1016/j.ress.2006.10.001 +Die Chen,Defending a cyber system with early warning mechanism.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#ChenXS18,https://doi.org/10.1016/j.ress.2017.08.021 +Terje Aven,The risk concept - historical and recent development trends.,2012,99,Rel. Eng. and Sys. Safety,,db/journals/ress/ress99.html#Aven12,https://doi.org/10.1016/j.ress.2011.11.006 +Zhisheng Ye,Reliability evaluation of hard disk drive failures based on counting processes.,2013,109,Rel. Eng. and Sys. Safety,,db/journals/ress/ress109.html#YeXT13,https://doi.org/10.1016/j.ress.2012.07.003 +R. Rocchetta,Risk assessment and risk-cost optimization of distributed power generation systems considering extreme weather conditions.,2015,136,Rel. Eng. and Sys. Safety,,db/journals/ress/ress136.html#RocchettaLZ15,https://doi.org/10.1016/j.ress.2014.11.013 +Abbas Chamseddine,Optimal reliability design for over-actuated systems based on the MIT rule: Application to an octocopter helicopter testbed.,2014,132,Rel. Eng. and Sys. Safety,,db/journals/ress/ress132.html#ChamseddineTS0W14,https://doi.org/10.1016/j.ress.2014.07.013 +Seung Jun Lee,An analytical approach to quantitative effect estimation of operation advisory system based on human cognitive process using the Bayesian belief network.,2008,93,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress93.html#LeeKS08,https://doi.org/10.1016/j.ress.2007.02.004 +J. Mira,Reducing computational costs for reliability indicators of electric power generating systems.,2000,67,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress67.html#MiraS00,https://doi.org/10.1016/S0951-8320(99)00072-1 +Jing-An Li,Reliability estimation and prediction of multi-state components and coherent systems.,2005,88,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress88.html#LiWLL05,https://doi.org/10.1016/j.ress.2004.07.010 +Corwin L. Atwood,Mixture priors for Bayesian performance monitoring 2: variable-constituent model.,2005,89,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress89.html#AtwoodY05,https://doi.org/10.1016/j.ress.2004.08.016 +Woo Sik Jung,A new method to evaluate alternate AC power source effects in multi-unit nuclear power plants.,2003,82,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress82.html#JungYH03,https://doi.org/10.1016/S0951-8320(03)00140-6 +Adolfo Crespo Marquez,Monte Carlo-based assessment of system availability. A case study for cogeneration plants.,2005,88,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress88.html#MarquezHI05,https://doi.org/10.1016/j.ress.2004.07.018 +Gregory Levitin,Survivability maximization for vulnerable multi-state systems with bridge topology.,2000,70,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress70.html#LevitinL00a,https://doi.org/10.1016/S0951-8320(00)00052-1 +Elvis Hernández-Perdomo,Node ranking for network topology-based cascade models - An Ordered Weighted Averaging operators' approach.,2016,155,Rel. Eng. and Sys. Safety,,db/journals/ress/ress155.html#Hernandez-Perdomo16,https://doi.org/10.1016/j.ress.2016.06.014 +Jun Su Ha,A human-machine interface evaluation method: A difficulty evaluation method in information searching (DEMIS).,2009,94,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress94.html#HaS09,https://doi.org/10.1016/j.ress.2009.02.025 +Hossam A. Gabbar,Design of plant safety model in plant enterprise engineering environment.,2001,73,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress73.html#GabbarSS01,https://doi.org/10.1016/S0951-8320(01)00029-1 +Gregory Levitin,Reliability and performance analysis of hardware-software systems with fault-tolerant software components.,2006,91,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress91.html#Levitin06a,https://doi.org/10.1016/j.ress.2005.04.004 +Lars Cederqvist,Reliability study of friction stir welded copper canisters containing Sweden's nuclear waste.,2008,93,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress93.html#CederqvistO08,https://doi.org/10.1016/j.ress.2007.09.010 +Zeytu Gashaw Asfaw,Extending minimal repair models for repairable systems: A comparison of dynamic and heterogeneous extensions of a nonhomogeneous Poisson process.,2015,140,Rel. Eng. and Sys. Safety,,db/journals/ress/ress140.html#AsfawL15a,https://doi.org/10.1016/j.ress.2015.03.025 +Haitao Lv,Risk assessment of security systems based on entropy theory and the Neyman-Pearson criterion.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#LvYCZZ15,https://doi.org/10.1016/j.ress.2015.04.023 +Y. Lv,A risk-based method for planning of bus-subway corridor evacuation under hybrid uncertainties.,2015,139,Rel. Eng. and Sys. Safety,,db/journals/ress/ress139.html#LvYSG15,https://doi.org/10.1016/j.ress.2015.03.002 +Yi Dai,Distribution of time between failures of machining center based on type I censored data.,2003,79,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress79.html#DaiZJ03,https://doi.org/10.1016/S0951-8320(02)00243-0 +Elsayed A. Elsayed,Design of PH-based accelerated life testing plans under multiple-stress-type.,2007,92,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress92.html#ElsayedZ07,https://doi.org/10.1016/j.ress.2006.04.016 +Arjun H. Rao,High risk occurrence chains in helicopter accidents.,2018,170,Rel. Eng. and Sys. Safety,,db/journals/ress/ress170.html#RaoM18,https://doi.org/10.1016/j.ress.2017.10.014 +Yongquan Sun,Ordering decision-making methods on spare parts for a new aircraft fleet based on a two-sample prediction.,2016,156,Rel. Eng. and Sys. Safety,,db/journals/ress/ress156.html#SunCRJL16,https://doi.org/10.1016/j.ress.2016.07.017 +Katrina Groth,A Bayesian method for using simulator data to enhance human error probabilities assigned by existing HRA methods.,2014,128,Rel. Eng. and Sys. Safety,,db/journals/ress/ress128.html#GrothSS14,https://doi.org/10.1016/j.ress.2014.03.010 +J. Singaravelu,Taguchi's approach for reliability and safety assessments in the stage separation process of a multistage launch vehicle.,2009,94,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress94.html#SingaraveluJR09,https://doi.org/10.1016/j.ress.2009.02.017 +Elias P. Zafiropoulos,Reliability and cost optimization of electronic devices considering the component failure rate uncertainty.,2004,84,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress84.html#ZafiropoulosD04,https://doi.org/10.1016/j.ress.2003.11.012 +Ola Svenson,Latency and mode of error detection in a process industry.,2001,73,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress73.html#SvensonS01,https://doi.org/10.1016/S0951-8320(01)00033-3 +Jianguang Fang,Multiobjective robust design optimization of fatigue life for a truck cab.,2015,135,Rel. Eng. and Sys. Safety,,db/journals/ress/ress135.html#FangGSXL15,https://doi.org/10.1016/j.ress.2014.10.007 +Xiaofei Lu,Hazard rate function in dynamic environment.,2014,130,Rel. Eng. and Sys. Safety,,db/journals/ress/ress130.html#LuL14,https://doi.org/10.1016/j.ress.2014.04.020 +Jon C. Helton,Quantification of margins and uncertainties: Example analyses from reactor safety and radioactive waste disposal involving the separation of aleatory and epistemic uncertainty.,2011,96,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress96.html#HeltonJS11,https://doi.org/10.1016/j.ress.2011.02.012 +Francesco Cadini,Model-based Monte Carlo state estimation for condition-based component replacement.,2009,94,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress94.html#CadiniZA09,https://doi.org/10.1016/j.ress.2008.08.003 +Hamid Demmou,Critical scenarios derivation methodology for mechatronic systems.,2004,84,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress84.html#DemmouKGV04,https://doi.org/10.1016/j.ress.2003.11.007 +Márcio das Chagas Moura,Failure and reliability prediction by support vector machines regression of time series data.,2011,96,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress96.html#MouraZLD11,https://doi.org/10.1016/j.ress.2011.06.006 +Sergio Contini,On the use of non-coherent fault trees in safety and security studies.,2008,93,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress93.html#ContiniCR08,https://doi.org/10.1016/j.ress.2008.03.018 +Yicong Gao,An optimal dynamic interval preventive maintenance scheduling for series systems.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#GaoFZT15,https://doi.org/10.1016/j.ress.2015.03.032 +John Wreathall,Using an integrated process of data and modeling in HRA.,2004,83,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress83.html#WreathallBRMR04,https://doi.org/10.1016/j.ress.2003.09.012 +Jinkyun Park,Investigating the effect of communication characteristics on crew performance under the simulated emergency condition of nuclear power plants.,2012,101,Rel. Eng. and Sys. Safety,,db/journals/ress/ress101.html#ParkJY12,https://doi.org/10.1016/j.ress.2012.01.003 +Rahul Ghosh,System resiliency quantification using non-state-space and state-space analytic models.,2013,116,Rel. Eng. and Sys. Safety,,db/journals/ress/ress116.html#GhoshKT13,https://doi.org/10.1016/j.ress.2012.12.023 +Hyo-Nam Cho,A risk assessment methodology for incorporating uncertainties using fuzzy concepts.,2002,78,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress78.html#ChoCK02,https://doi.org/10.1016/S0951-8320(02)00158-8 +Zequn Wang,A double-loop adaptive sampling approach for sensitivity-free dynamic reliability analysis.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#WangW15,https://doi.org/10.1016/j.ress.2015.05.007 +Terri R. Norton,Reliability evaluation of axially loaded steel members design criteria in AASHTO LRFD bridge design code.,2013,116,Rel. Eng. and Sys. Safety,,db/journals/ress/ress116.html#NortonML13,https://doi.org/10.1016/j.ress.2013.03.003 +Susan S. Lu,Multivariate performance reliability prediction in real-time.,2001,72,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress72.html#LuLK01,https://doi.org/10.1016/S0951-8320(00)00102-2 +Asta Narkuniene,Uncertainty and sensitivity analysis of radionuclide migration through the engineered barriers of deep geological repository: Case of RBMK-1500 SNF.,2015,136,Rel. Eng. and Sys. Safety,,db/journals/ress/ress136.html#NarkunienePKB15,https://doi.org/10.1016/j.ress.2014.11.011 +Linda J. Bellamy,Getting resilience into safety programs using simple tools - a research background and practical implementation.,2018,172,Rel. Eng. and Sys. Safety,,db/journals/ress/ress172.html#BellamyCG18,https://doi.org/10.1016/j.ress.2017.12.005 +Sung Min Shin,Surveillance test and monitoring strategy for the availability improvement of standby equipment using age-dependent model.,2015,135,Rel. Eng. and Sys. Safety,,db/journals/ress/ress135.html#ShinJK15,https://doi.org/10.1016/j.ress.2014.11.001 +Sinan Xiao,A new effective screening design for structural sensitivity analysis of failure probability with the epistemic uncertainty.,2016,156,Rel. Eng. and Sys. Safety,,db/journals/ress/ress156.html#XiaoLX16,https://doi.org/10.1016/j.ress.2016.07.014 +Christopher P. Nemeth,Building change: Resilience Engineering after ten years.,2015,141,Rel. Eng. and Sys. Safety,,db/journals/ress/ress141.html#NemethH15,https://doi.org/10.1016/j.ress.2015.04.006 +Ming Xu,Optimal replacement policy for safety-related multi-component multi-state systems.,2012,99,Rel. Eng. and Sys. Safety,,db/journals/ress/ress99.html#XuCY12a,https://doi.org/10.1016/j.ress.2011.11.010 +Kilian Zwirglmaier,A discretization procedure for rare events in Bayesian networks.,2016,153,Rel. Eng. and Sys. Safety,,db/journals/ress/ress153.html#ZwirglmaierS16,https://doi.org/10.1016/j.ress.2016.04.008 +Pierre Henneaux,A level-1 probabilistic risk assessment to blackout hazard in transmission power systems.,2012,102,Rel. Eng. and Sys. Safety,,db/journals/ress/ress102.html#HenneauxLM12,https://doi.org/10.1016/j.ress.2012.02.007 +Terje Aven,On the meaning of the special-cause variation concept used in the quality discourse - And its link to unforeseen and surprising events in risk management.,2014,126,Rel. Eng. and Sys. Safety,,db/journals/ress/ress126.html#Aven14a,https://doi.org/10.1016/j.ress.2014.01.001 +Douzi Imran Khan,Functional failure modes cause-consequence logic suited for mobile robots used at scientific facilities.,2014,129,Rel. Eng. and Sys. Safety,,db/journals/ress/ress129.html#KhanVBV14,https://doi.org/10.1016/j.ress.2014.03.012 +Fulvio Tonon,Determination of parameters range in rock engineering by means of Random Set Theory.,2000,70,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress70.html#TononBM00,https://doi.org/10.1016/S0951-8320(00)00058-2 +Gerardus Cornelius Avontuur,An implementation of reliability analysis in the conceptual design phase of drive trains.,2001,73,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress73.html#AvontuurW01,https://doi.org/10.1016/S0951-8320(01)00041-2 +Dong-Han Ham,Model-based identification and use of task complexity factors of human integrated systems.,2012,100,Rel. Eng. and Sys. Safety,,db/journals/ress/ress100.html#HamPJ12,https://doi.org/10.1016/j.ress.2011.12.019 +Serkan Eryilmaz,Capacity loss and residual capacity in weighted k-out-of-n: G systems.,2015,136,Rel. Eng. and Sys. Safety,,db/journals/ress/ress136.html#Eryilmaz15,https://doi.org/10.1016/j.ress.2014.12.008 +Jouni T. Tuomisto,Uncertainty in mortality response to airborne fine particulate matter: Combining European air pollution experts.,2008,93,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress93.html#TuomistoWET08,https://doi.org/10.1016/j.ress.2007.03.002 +Septavera Sharvia,Integrating model checking with HiP-HOPS in model-based safety analysis.,2015,135,Rel. Eng. and Sys. Safety,,db/journals/ress/ress135.html#SharviaP15,https://doi.org/10.1016/j.ress.2014.10.025 +Nader M. Okasha,Automated finite element updating using strain data for the lifetime reliability assessment of bridges.,2012,99,Rel. Eng. and Sys. Safety,,db/journals/ress/ress99.html#OkashaFO12,https://doi.org/10.1016/j.ress.2011.11.007 +Soonyoung Yu,Quantitative assessment of disaster resilience: An empirical study on the importance of post-disaster recovery costs.,2015,137,Rel. Eng. and Sys. Safety,,db/journals/ress/ress137.html#YuKOAK15,https://doi.org/10.1016/j.ress.2014.12.007 +Zohreh Soltani Asadi,Extreme value statistics for pitting corrosion of old underground cast iron pipes.,2017,162,Rel. Eng. and Sys. Safety,,db/journals/ress/ress162.html#AsadiM17,https://doi.org/10.1016/j.ress.2017.01.019 +Pan Wang,The derivative based variance sensitivity analysis for the distribution parameters and its computation.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#WangLRC13,https://doi.org/10.1016/j.ress.2013.07.003 +Shey-Huei Sheu,Optimal preventive maintenance and repair policies for multi-state systems.,2015,140,Rel. Eng. and Sys. Safety,,db/journals/ress/ress140.html#SheuCCZ15,https://doi.org/10.1016/j.ress.2015.03.029 +Xiaole Yang,The development and application of dynamic operational risk assessment in oil/gas and chemical process industry.,2010,95,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress95.html#YangM10,https://doi.org/10.1016/j.ress.2010.03.002 +Alejandra Ruiz 0001,Reuse of safety certification artefacts across standards and domains: A systematic approach.,2017,158,Rel. Eng. and Sys. Safety,,db/journals/ress/ress158.html#RuizJEVL17,https://doi.org/10.1016/j.ress.2016.08.017 +Michael T. Todinov,A new reliability measure based on specified minimum distances before the locations of random variables in a finite interval.,2004,86,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress86.html#Todinov04,https://doi.org/10.1016/j.ress.2004.01.003 +Kim Verbert,Timely condition-based maintenance planning for multi-component systems.,2017,159,Rel. Eng. and Sys. Safety,,db/journals/ress/ress159.html#VerbertSB17,https://doi.org/10.1016/j.ress.2016.10.032 +Silvia Carpitella,A combined multi-criteria approach to support FMECA analyses: A real-world case.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#CarpitellaCIF18,https://doi.org/10.1016/j.ress.2017.09.017 +Peter J. Attar,On convergence of moments in uncertainty quantification based on direct quadrature.,2013,111,Rel. Eng. and Sys. Safety,,db/journals/ress/ress111.html#AttarV13,https://doi.org/10.1016/j.ress.2012.11.003 +Xiaoge Zhang,Resilience-based network design under uncertainty.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#ZhangMSG18,https://doi.org/10.1016/j.ress.2017.09.009 +Benoîte de Saporta,Predictive maintenance for the heated hold-up tank.,2013,115,Rel. Eng. and Sys. Safety,,db/journals/ress/ress115.html#SaportaZ13,https://doi.org/10.1016/j.ress.2013.02.016 +Dana Kelly,Bayesian inference in probabilistic risk assessment - The current state of the art.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#KellyS09,https://doi.org/10.1016/j.ress.2008.07.002 +Huiling Sun,Identification of independent modules in fault trees which contain dependent basic events.,2004,86,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress86.html#SunA04,https://doi.org/10.1016/j.ress.2004.02.002 +Saralees Nadarajah,The beta exponential distribution.,2006,91,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress91.html#NadarajahK06,https://doi.org/10.1016/j.ress.2005.05.008 +J.-M. Bourinet,Rare-event probability estimation with adaptive support vector regression surrogates.,2016,150,Rel. Eng. and Sys. Safety,,db/journals/ress/ress150.html#Bourinet16,https://doi.org/10.1016/j.ress.2016.01.023 +V. H. Coria,Analytical method for optimization of maintenance policy based on available system failure data.,2015,135,Rel. Eng. and Sys. Safety,,db/journals/ress/ress135.html#CoriaMRMG15,https://doi.org/10.1016/j.ress.2014.11.003 +D. N. P. Murthy,Product variety and reliability.,2009,94,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress94.html#MurthyHV09,https://doi.org/10.1016/j.ress.2009.02.030 +Han Wang,Optimal design of constant-stress accelerated degradation tests using the M-optimality criterion.,2017,164,Rel. Eng. and Sys. Safety,,db/journals/ress/ress164.html#WangZMW17,https://doi.org/10.1016/j.ress.2017.03.010 +Wei Zhao,Non-linear partial least squares response surface method for structural reliability analysis.,2017,161,Rel. Eng. and Sys. Safety,,db/journals/ress/ress161.html#ZhaoFW17,https://doi.org/10.1016/j.ress.2017.01.004 +Oliver Rooks,Duo duplex drive-by-wire computer system.,2005,89,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress89.html#RooksASSK05,https://doi.org/10.1016/j.ress.2004.08.001 +Erik Vanem,Cost-effectiveness criteria for marine oil spill preventive measures.,2008,93,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress93.html#VanemES08,https://doi.org/10.1016/j.ress.2007.07.008 +Márcio das Chagas Moura,Estimation of expected number of accidents and workforce unavailability through Bayesian population variability analysis and Markov-based model.,2016,150,Rel. Eng. and Sys. Safety,,db/journals/ress/ress150.html#MouraADRLVF16,https://doi.org/10.1016/j.ress.2016.01.017 +Gregory Levitin,Optimal reliability enhancement for multi-state transmission networks with fixed transmission *.,2002,76,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress76.html#Levitin02c,https://doi.org/10.1016/S0951-8320(02)00023-6 +Javier Andrade Garda,Towards a lessons learned system for critical software.,2007,92,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress92.html#AndradeAGPRRS07,https://doi.org/10.1016/j.ress.2006.05.016 +Wenrui Hao,Importance measure of correlated normal variables and its sensitivity analysis.,2012,99,Rel. Eng. and Sys. Safety,,db/journals/ress/ress99.html#HaoLT12,https://doi.org/10.1016/j.ress.2011.10.010 +Denis Javaux,A method for predicting errors when interacting with finite state systems. How implicit learning shapes the user's knowledge of a system.,2002,75,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress75.html#Javaux02a,https://doi.org/10.1016/S0951-8320(01)00091-6 +Alina A. Alexeenko,Uncertainty in microscale gas damping: Implications on dynamics of capacitive MEMS switches.,2011,96,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress96.html#AlexeenkoCZGKP11,https://doi.org/10.1016/j.ress.2011.01.002 +Sebastián Martorell,An approach to address probabilistic assumptions on the availability of safety systems for deterministic safety analysis.,2017,160,Rel. Eng. and Sys. Safety,,db/journals/ress/ress160.html#MartorellMMSC17,https://doi.org/10.1016/j.ress.2016.12.009 +S. M. Seyed Hosseini,Reprioritization of failures in a system failure mode and effects analysis by decision making trial and evaluation laboratory technique.,2006,91,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress91.html#HosseiniSA06,https://doi.org/10.1016/j.ress.2005.09.005 +Yu Liu 0006,"Comment on ""A framework to practical predictive maintenance modeling for multi-state systems"" by Tan C.M. and Raghavan N. [Reliab Eng Syst Saf 2008*93(8): 1138-50].",2009,94,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress94.html#LiuH09,https://doi.org/10.1016/j.ress.2008.08.004 +Gang Xiao,Dependability estimation for non-Markov consecutive-k-out-of-n: F repairable systems by fast simulation.,2007,92,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress92.html#XiaoLL07,https://doi.org/10.1016/j.ress.2006.04.004 +C. Q. Li,Risk based service life prediction of underground cast iron pipes subjected to corrosion.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#LiM13,https://doi.org/10.1016/j.ress.2013.05.013 +Nima Khakzad,Application of dynamic Bayesian network to performance assessment of fire protection systems during domino effects.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#KhakzadLR17,https://doi.org/10.1016/j.ress.2017.06.004 +Hanxin Feng,Imperfect preventive maintenance optimization for flexible flowshop manufacturing cells considering sequence-dependent group scheduling.,2018,176,Rel. Eng. and Sys. Safety,,db/journals/ress/ress176.html#FengXXXP18,https://doi.org/10.1016/j.ress.2018.04.004 +Maurizio Bevilacqua,The classification and regression tree approach to pump failure rate analysis.,2003,79,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress79.html#BevilacquaBM03,https://doi.org/10.1016/S0951-8320(02)00180-1 +Seth D. Guikema,Is ALARP applicable to the management of terrorist risks?,2010,95,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress95.html#GuikemaA10a,https://doi.org/10.1016/j.ress.2010.03.007 +Dongyan Chen,Optimization for condition-based maintenance with semi-Markov decision process.,2005,90,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress90.html#ChenT05,https://doi.org/10.1016/j.ress.2004.11.001 +R. Jiang,An accurate approximate solution of optimal sequential age replacement policy for a finite-time horizon.,2009,94,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress94.html#Jiang09,https://doi.org/10.1016/j.ress.2009.01.003 +Rob P. Rechard,Transport modeling in performance assessments for the Yucca Mountain disposal system for spent nuclear fuel and high-level radioactive waste.,2014,122,Rel. Eng. and Sys. Safety,,db/journals/ress/ress122.html#RechardARH14,https://doi.org/10.1016/j.ress.2013.06.031 +Baowei Fei,The safety issues of medical robotics.,2001,73,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress73.html#FeiNCK01,https://doi.org/10.1016/S0951-8320(01)00037-0 +Xin Xu,A state-space-based prognostics model for lithium-ion battery degradation.,2017,159,Rel. Eng. and Sys. Safety,,db/journals/ress/ress159.html#XuC17,https://doi.org/10.1016/j.ress.2016.10.026 +Matthias C. M. Troffaes,A robust Bayesian approach to modeling epistemic uncertainty in common-cause failure models.,2014,125,Rel. Eng. and Sys. Safety,,db/journals/ress/ress125.html#TroffaesWK14,https://doi.org/10.1016/j.ress.2013.05.022 +Seyed Jafar Sadjadi,An efficient heuristic versus a robust hybrid meta-heuristic for general framework of serial-parallel redundancy problem.,2009,94,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress94.html#SadjadiS09,https://doi.org/10.1016/j.ress.2009.05.003 +Jussi K. Vaurio,Making systems with mutually exclusive events analysable by standard fault tree analysis tools.,2001,74,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress74.html#Vaurio01a,https://doi.org/10.1016/S0951-8320(01)00055-2 +Gregory Levitin,Parallel systems under two sequential attacks.,2009,94,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress94.html#LevitinH09a,https://doi.org/10.1016/j.ress.2008.08.006 +Curtis B. Storlie,Analysis of computationally demanding models with continuous and categorical inputs.,2013,113,Rel. Eng. and Sys. Safety,,db/journals/ress/ress113.html#StorlieRHSS13,https://doi.org/10.1016/j.ress.2012.11.018 +John Quigley,Mixing Bayes and empirical Bayes inference to anticipate the realization of engineering concerns about variant system designs.,2011,96,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress96.html#QuigleyW11,https://doi.org/10.1016/j.ress.2011.02.011 +Peng Liu,Comparison of task complexity measures for emergency operating procedures: Convergent validity and predictive validity.,2014,121,Rel. Eng. and Sys. Safety,,db/journals/ress/ress121.html#LiuL14,https://doi.org/10.1016/j.ress.2013.09.006 +Alireza Daneshkhah,Probabilistic sensitivity analysis of system availability using Gaussian processes.,2013,112,Rel. Eng. and Sys. Safety,,db/journals/ress/ress112.html#DaneshkhahB13,https://doi.org/10.1016/j.ress.2012.11.001 +Monika Tanwar,Imperfect repair modeling using Kijima type generalized renewal process.,2014,124,Rel. Eng. and Sys. Safety,,db/journals/ress/ress124.html#TanwarRB14,https://doi.org/10.1016/j.ress.2013.10.007 +Yaning Liu,Accurate construction of high dimensional model representation with applications to uncertainty quantification.,2016,152,Rel. Eng. and Sys. Safety,,db/journals/ress/ress152.html#LiuHO16,https://doi.org/10.1016/j.ress.2016.03.021 +Willy Røed,On the use of the hybrid causal logic method in offshore risk analysis.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#RoedMVA09,https://doi.org/10.1016/j.ress.2008.04.003 +Jon C. Helton,Probability of loss of assured safety in temperature dependent systems with multiple weak and strong links.,2006,91,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress91.html#HeltonJO06,https://doi.org/10.1016/j.ress.2005.01.011 +Yun-Chia Liang,Redundancy allocation of series-parallel systems using a variable neighborhood search algorithm.,2007,92,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress92.html#LiangC07,https://doi.org/10.1016/j.ress.2006.04.013 +Yves Dutuit,On the extension of Importance Measures to complex components.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#DutuitR15,https://doi.org/10.1016/j.ress.2015.04.016 +Naji Bricha,Extra-capacity versus protection for supply networks under attack.,2014,131,Rel. Eng. and Sys. Safety,,db/journals/ress/ress131.html#BrichaN14,https://doi.org/10.1016/j.ress.2014.07.004 +Nader Ebrahimi,Bayesian framework for prediction of future number of failures from a single group of units in the field.,2009,94,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress94.html#Ebrahimi09,https://doi.org/10.1016/j.ress.2008.08.009 +Gregory Levitin,Optimal backup in heterogeneous standby systems exposed to shocks.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#LevitinF17,https://doi.org/10.1016/j.ress.2017.04.022 +Dave Grabaskas,Advantages of variance reduction techniques in establishing confidence intervals for quantiles.,2016,149,Rel. Eng. and Sys. Safety,,db/journals/ress/ress149.html#GrabaskasNDA16,https://doi.org/10.1016/j.ress.2015.12.015 +Enrico Zio,A neuro-fuzzy technique for fault diagnosis and its application to rotating machinery.,2009,94,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress94.html#ZioG09,https://doi.org/10.1016/j.ress.2007.03.040 +Niels Lind,Social and economic criteria of acceptable risk.,2002,78,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress78.html#Lind02,https://doi.org/10.1016/S0951-8320(02)00051-0 +Ammar M. Sarhan,Estimations of parameters in Pareto reliability model in the presence of masked data.,2003,82,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress82.html#Sarhan03a,https://doi.org/10.1016/S0951-8320(03)00125-X +Wei Wang,A Monte Carlo-based exploration framework for identifying components vulnerable to cyber threats in nuclear power plants.,2018,175,Rel. Eng. and Sys. Safety,,db/journals/ress/ress175.html#WangCMLZ18,https://doi.org/10.1016/j.ress.2018.03.005 +Tao Tao,A novel support vector regression method for online reliability prediction under multi-state varying operating conditions.,2018,177,Rel. Eng. and Sys. Safety,,db/journals/ress/ress177.html#TaoZZ18,https://doi.org/10.1016/j.ress.2018.04.027 +Mary D. Patterson,Resilience and precarious success.,2015,141,Rel. Eng. and Sys. Safety,,db/journals/ress/ress141.html#PattersonW15,https://doi.org/10.1016/j.ress.2015.03.014 +Yuan Lin Zhang,A geometric process repair model for a repairable cold standby system with priority in use and repair.,2009,94,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress94.html#ZhangW09,https://doi.org/10.1016/j.ress.2009.05.009 +Zong-Wen An,A discrete stress-strength interference model based on universal generating function.,2008,93,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress93.html#AnHL08,https://doi.org/10.1016/j.ress.2007.09.011 +Seth D. Guikema,Hybrid data mining-regression for infrastructure risk assessment based on zero-inflated data.,2012,99,Rel. Eng. and Sys. Safety,,db/journals/ress/ress99.html#GuikemaQ12,https://doi.org/10.1016/j.ress.2011.10.012 +Jan Gerhard Norstrøm,Value of information based design of control software.,2002,77,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress77.html#NorstromCT02,https://doi.org/10.1016/S0951-8320(02)00062-5 +Chaonan Wang,Propagated failure analysis for non-repairable systems considering both global and selective effects.,2012,99,Rel. Eng. and Sys. Safety,,db/journals/ress/ress99.html#WangXL12,https://doi.org/10.1016/j.ress.2011.11.005 +Bent Natvig,Measures of component importance in repairable multistate systems - a numerical study.,2011,96,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress96.html#NatvigHR11,https://doi.org/10.1016/j.ress.2011.07.006 +Ilya M. Sobol,Estimating the approximation error when fixing unessential factors in global sensitivity analysis.,2007,92,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress92.html#SobolTGKM07,https://doi.org/10.1016/j.ress.2006.07.001 +Cristina Ibáñez-Llano,A reduction approach to improve the quantification of linked fault trees through binary decision diagrams.,2010,95,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress95.html#Ibanez-LlanoRMN10a,https://doi.org/10.1016/j.ress.2010.06.008 +Michael Jones-Lee,The role of social cost-benefit analysis in societal decision-making under large uncertainties with application to robbery at a cash depot.,2009,94,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress94.html#Jones-LeeA09,https://doi.org/10.1016/j.ress.2009.06.011 +Ahmad Attar,A simulation-based optimization approach for free distributed repairable multi-state availability-redundancy allocation problems.,2017,157,Rel. Eng. and Sys. Safety,,db/journals/ress/ress157.html#AttarRD17,https://doi.org/10.1016/j.ress.2016.09.006 +Chaonan Wang,Competing failure analysis in phased-mission systems with multiple functional dependence groups.,2017,164,Rel. Eng. and Sys. Safety,,db/journals/ress/ress164.html#WangXPP17,https://doi.org/10.1016/j.ress.2017.02.006 +Sebastian P. Kuniewski,Sampling inspection for the evaluation of time-dependent reliability of deteriorating systems under imperfect defect detection.,2009,94,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress94.html#KuniewskiWN09,https://doi.org/10.1016/j.ress.2008.11.013 +Hyunki Kim,The design and analysis of AVTMR (all voting triple modular redundancy) and dual-duplex system.,2005,88,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress88.html#KimLL05,https://doi.org/10.1016/j.ress.2004.08.012 +Jean C. Salazar,System reliability aware Model Predictive Control framework.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#SalazarWNST17,https://doi.org/10.1016/j.ress.2017.04.012 +Jussi K. Vaurio,Fault tree analysis of phased mission systems with repairable and non-repairable components.,2001,74,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress74.html#Vaurio01b,https://doi.org/10.1016/S0951-8320(01)00075-8 +A. K. Bhattacharjee,PERTS: an environment for specification and verification of reactive systems.,2001,71,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress71.html#BhattacharjeeDS01,https://doi.org/10.1016/S0951-8320(00)00081-8 +Lu Lu,A new fault detection method for computer networks.,2013,114,Rel. Eng. and Sys. Safety,,db/journals/ress/ress114.html#LuXWS13,https://doi.org/10.1016/j.ress.2012.12.015 +Anders Jensen,A new definition of complexity in a risk analysis setting.,2018,171,Rel. Eng. and Sys. Safety,,db/journals/ress/ress171.html#JensenA18,https://doi.org/10.1016/j.ress.2017.11.018 +E. Ferrario,Assessing nuclear power plant safety and recovery from earthquakes using a system-of-systems approach.,2014,125,Rel. Eng. and Sys. Safety,,db/journals/ress/ress125.html#FerrarioZ14,https://doi.org/10.1016/j.ress.2013.07.006 +Marc A. Maes,Bayesian framework for managing preferences in decision-making.,2006,91,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress91.html#MaesF06,https://doi.org/10.1016/j.ress.2005.04.003 +Daqing Li,Network reliability analysis based on percolation theory.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#LiZZHK15,https://doi.org/10.1016/j.ress.2015.05.021 +Dana Kelly,Finding a minimally informative Dirichlet prior distribution using least squares.,2011,96,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress96.html#KellyA11,https://doi.org/10.1016/j.ress.2010.11.008 +O. Cronvall,A study on the effect of flaw detection probability assumptions on risk reduction achieved by non-destructive inspection.,2012,105,Rel. Eng. and Sys. Safety,,db/journals/ress/ress105.html#CronvallSMGADG12,https://doi.org/10.1016/j.ress.2012.03.012 +Miguel Munoz Zuniga,Adaptive directional stratification for controlled estimation of the probability of a rare event.,2011,96,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress96.html#ZunigaGRR11,https://doi.org/10.1016/j.ress.2011.06.016 +Sergei S. Kucherenko,Application of the control variate technique to estimation of total sensitivity indices.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#KucherenkoDIT15,https://doi.org/10.1016/j.ress.2014.07.008 +Luca Podofillini,Conventional and dynamic safety analysis: Comparison on a chemical batch reactor.,2012,106,Rel. Eng. and Sys. Safety,,db/journals/ress/ress106.html#PodofilliniD12,https://doi.org/10.1016/j.ress.2012.04.010 +Gregory Levitin,Consecutive sliding window systems.,2011,96,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress96.html#LevitinB11,https://doi.org/10.1016/j.ress.2011.05.002 +Wei-Chang Yeh,Multistate-node acyclic network reliability evaluation.,2002,78,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress78.html#Yeh02b,https://doi.org/10.1016/S0951-8320(02)00114-X +Jakub Montewka,Probability modelling of vessel collisions.,2010,95,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress95.html#MontewkaHKM10,https://doi.org/10.1016/j.ress.2010.01.009 +Leïla Kloul,Production trees: A new modeling methodology for production availability analyses.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#KloulR17,https://doi.org/10.1016/j.ress.2017.06.017 +Richard C. M. Yam,A method for evaluation of reliability indices for repairable circular consecutive-k-out-of-n: F systems.,2003,79,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress79.html#YamZZ03,https://doi.org/10.1016/S0951-8320(02)00204-1 +Paola Russo,Risk-targeted safety distance of reinforced concrete buildings from natural-gas transmission pipelines.,2016,148,Rel. Eng. and Sys. Safety,,db/journals/ress/ress148.html#RussoP16,https://doi.org/10.1016/j.ress.2015.11.016 +Julien Clavareau,A Petri net-based modelling of replacement strategies under technological obsolescence.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#ClavareauL09,https://doi.org/10.1016/j.ress.2008.03.034 +Yuan-Shun Dai,A study of service reliability and availability for distributed systems.,2003,79,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress79.html#Dai0PL03,https://doi.org/10.1016/S0951-8320(02)00200-4 +Massimo Bertolini,A combined goal programming - AHP approach to maintenance selection problem.,2006,91,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress91.html#BertoliniB06,https://doi.org/10.1016/j.ress.2005.08.006 +Leigang Zhang,A new method for evaluating Borgonovo moment-independent importance measure with its application in an aircraft structure.,2014,132,Rel. Eng. and Sys. Safety,,db/journals/ress/ress132.html#ZhangLCF14,https://doi.org/10.1016/j.ress.2014.07.011 +Zhibin Tan,Minimal cut sets of s-t networks with k-out-of-n nodes.,2003,82,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress82.html#Tan03,https://doi.org/10.1016/S0951-8320(03)00122-4 +Vytis Kopustinskas,Dynamic reliability and risk assessment of the accident localization system of the Ignalina NPP RBMK-1500 reactor.,2005,87,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress87.html#KopustinskasAR05,https://doi.org/10.1016/j.ress.2004.04.010 +A. J. Sobey,Monte Carlo reliability analysis of tophat stiffened composite plate structures under out of plane loading.,2013,110,Rel. Eng. and Sys. Safety,,db/journals/ress/ress110.html#SobeyBS13,https://doi.org/10.1016/j.ress.2012.08.011 +Junbeom Yoo,Synthesis of FBD-based PLC design from NuSCR formal specification.,2005,87,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress87.html#YooCKS05,https://doi.org/10.1016/j.ress.2004.05.005 +Frank P. A. Coolen,Predictive inference for system reliability after common-cause component failures.,2015,135,Rel. Eng. and Sys. Safety,,db/journals/ress/ress135.html#CoolenC15,https://doi.org/10.1016/j.ress.2014.11.005 +Yiqiang Wang,A comprehensive reliability allocation method for design of CNC lathes.,2001,72,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress72.html#WangYZT01,https://doi.org/10.1016/S0951-8320(01)00018-7 +Xiaoping Zheng,Forecasting model for pedestrian distribution under emergency evacuation.,2010,95,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress95.html#ZhengL10,https://doi.org/10.1016/j.ress.2010.07.005 +Mathieu Balesdent,Recommendations for the tuning of rare event probability estimators.,2015,133,Rel. Eng. and Sys. Safety,,db/journals/ress/ress133.html#BalesdentMM15,https://doi.org/10.1016/j.ress.2014.09.001 +Guanghan Bai,An improved algorithm for finding all minimal paths in a network.,2016,150,Rel. Eng. and Sys. Safety,,db/journals/ress/ress150.html#BaiTZ16,https://doi.org/10.1016/j.ress.2016.01.011 +Wellison J. S. Gomes,Optimal inspection planning for onshore pipelines subject to external corrosion.,2013,118,Rel. Eng. and Sys. Safety,,db/journals/ress/ress118.html#GomesBH13,https://doi.org/10.1016/j.ress.2013.04.011 +Nipat Rasmekomen,Condition-based maintenance of multi-component systems with degradation state-rate interactions.,2016,148,Rel. Eng. and Sys. Safety,,db/journals/ress/ress148.html#RasmekomenP16,https://doi.org/10.1016/j.ress.2015.11.010 +Shital A. Thekdi,A methodology to evaluate risk for supporting decisions involving alignment with organizational values.,2018,172,Rel. Eng. and Sys. Safety,,db/journals/ress/ress172.html#ThekdiA18,https://doi.org/10.1016/j.ress.2017.12.001 +Panagiotis Sotiralis,Incorporation of human factors into ship collision risk models focusing on human centred design aspects.,2016,156,Rel. Eng. and Sys. Safety,,db/journals/ress/ress156.html#SotiralisVHGT16,https://doi.org/10.1016/j.ress.2016.08.007 +Amirhossain Chambari,An efficient simulated annealing algorithm for the redundancy allocation problem with a choice of redundancy strategies.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#ChambariNRK13,https://doi.org/10.1016/j.ress.2013.05.016 +R. Jiang,A drawback and an improvement of the classical Weibull probability plot.,2014,126,Rel. Eng. and Sys. Safety,,db/journals/ress/ress126.html#Jiang14,https://doi.org/10.1016/j.ress.2014.02.001 +Jun Su Ha,A method for risk-informed safety significance categorization using the analytic hierarchy process and bayesian belief networks.,2004,83,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress83.html#HaS04,https://doi.org/10.1016/j.ress.2003.08.002 +Timothy S. Margulies,Simple cost risk-benefit calculation: nuclear plant backfit analysis.,2004,86,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress86.html#Margulies04a,https://doi.org/10.1016/j.ress.2004.02.010 +Jose Emmanuel Ramirez-Marquez,Stochastic network interdiction optimization via capacitated network reliability modeling and probabilistic solution discovery.,2009,94,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress94.html#Ramirez-MarquezS09,https://doi.org/10.1016/j.ress.2008.10.006 +Bo Yang 0011,A study of operational and testing reliability in software reliability analysis.,2000,70,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress70.html#0011000,https://doi.org/10.1016/S0951-8320(00)00069-7 +Nadeem A. Siddiqui,Reliability analysis against progressive failure of TLP tethers in extreme tension.,2000,68,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress68.html#SiddiquiA00,https://doi.org/10.1016/S0951-8320(00)00008-9 +Ludovic Piètre-Cambacédès,Cross-fertilization between safety and security engineering.,2013,110,Rel. Eng. and Sys. Safety,,db/journals/ress/ress110.html#Pietre-CambacedesB13,https://doi.org/10.1016/j.ress.2012.09.011 +Chun Su,A two-stage preventive maintenance optimization model incorporating two-dimensional extended warranty.,2016,155,Rel. Eng. and Sys. Safety,,db/journals/ress/ress155.html#SuW16,https://doi.org/10.1016/j.ress.2016.07.004 +Inseok Park,A Bayesian approach for quantification of model uncertainty.,2010,95,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress95.html#ParkAG10,https://doi.org/10.1016/j.ress.2010.02.015 +Jakub Montewka,Enhancing human performance in ship operations by modifying global design factors at the design stage.,2017,159,Rel. Eng. and Sys. Safety,,db/journals/ress/ress159.html#MontewkaGIOHP17,https://doi.org/10.1016/j.ress.2016.11.009 +Ellen C. Rogerson,Prioritizing risks via several expert perspectives with application to runway safety.,2012,103,Rel. Eng. and Sys. Safety,,db/journals/ress/ress103.html#RogersonL12,https://doi.org/10.1016/j.ress.2012.03.001 +A. C. Torres-Echeverría,Modeling safety instrumented systems with MooN voting architectures addressing system reconfiguration for testing.,2011,96,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress96.html#Torres-EcheverriaMT11,https://doi.org/10.1016/j.ress.2010.12.003 +Sergey Oladyshkin,Data-driven uncertainty quantification using the arbitrary polynomial chaos expansion.,2012,106,Rel. Eng. and Sys. Safety,,db/journals/ress/ress106.html#OladyshkinN12,https://doi.org/10.1016/j.ress.2012.05.002 +Myrto Konstandinidou,A fuzzy modeling application of CREAM methodology for human reliability analysis.,2006,91,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress91.html#KonstandinidouNKM06,https://doi.org/10.1016/j.ress.2005.06.002 +Kossi Tiassou,Aircraft operational reliability - A model-based approach and a case study.,2013,120,Rel. Eng. and Sys. Safety,,db/journals/ress/ress120.html#TiassouKKSP13,https://doi.org/10.1016/j.ress.2013.07.008 +Per Hokstad,Overall strategy for risk evaluation and priority setting of risk regulations.,2006,91,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress91.html#HokstadS06,https://doi.org/10.1016/j.ress.2004.11.014 +Nima Khakzad,Safety analysis in process facilities: Comparison of fault tree and Bayesian network approaches.,2011,96,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress96.html#KhakzadKA11,https://doi.org/10.1016/j.ress.2011.03.012 +D. Aswani,Criteria for evaluating protection from single points of failure for partially expanded fault trees.,2008,93,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress93.html#AswaniBMGP08,https://doi.org/10.1016/j.ress.2006.12.017 +Qiao Ge,Extending Morris method for qualitative global sensitivity analysis of models with dependent inputs.,2017,162,Rel. Eng. and Sys. Safety,,db/journals/ress/ress162.html#GeM17,https://doi.org/10.1016/j.ress.2017.01.010 +Giovanni Lanzano,Seismic vulnerability of natural gas pipelines.,2013,117,Rel. Eng. and Sys. Safety,,db/journals/ress/ress117.html#LanzanoSMF13,https://doi.org/10.1016/j.ress.2013.03.019 +Terje Aven,On the use of conservatism in risk assessments.,2016,146,Rel. Eng. and Sys. Safety,,db/journals/ress/ress146.html#Aven16a,https://doi.org/10.1016/j.ress.2015.10.011 +I. Häring,Quantitative hazard and risk analysis for fragments of high-explosive shells in air.,2009,94,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress94.html#HaringSR09,https://doi.org/10.1016/j.ress.2009.02.003 +Liangyan Tao,Schedule risk analysis for new-product development: The GERT method extended by a characteristic function.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#TaoWLL17,https://doi.org/10.1016/j.ress.2017.06.010 +Selvamuthu Dharmaraja,Reliability and survivability of vehicular ad hoc networks: An analytical approach.,2016,153,Rel. Eng. and Sys. Safety,,db/journals/ress/ress153.html#DharmarajaVT16,https://doi.org/10.1016/j.ress.2016.04.004 +Gregory Levitin,Analysis and optimization of weighted voting systems consisting of voting units with limited availability.,2001,73,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress73.html#Levitin01a,https://doi.org/10.1016/S0951-8320(01)00034-5 +Liisa Haarla,A method for analysing the reliability of a transmission grid.,2008,93,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress93.html#HaarlaPKJ08,https://doi.org/10.1016/j.ress.2006.10.025 +Terje Aven,A risk interpretation of sociotechnical safety perspectives.,2018,175,Rel. Eng. and Sys. Safety,,db/journals/ress/ress175.html#AvenY18,https://doi.org/10.1016/j.ress.2018.03.004 +K. Burns,Prioritizing and quantifying the risk of outstanding corrective actions.,2000,68,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress68.html#BurnsT00,https://doi.org/10.1016/S0951-8320(00)00006-5 +Saiedeh Safaei Arshi,Coupling CFAST fire modeling and SAPHIRE probabilistic assessment software for internal fire safety evaluation of a typical TRIGA research reactor.,2010,95,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress95.html#ArshiNS10,https://doi.org/10.1016/j.ress.2009.09.006 +Zsigmond Pap,Methods of checking general safety criteria in UML statechart specifications.,2005,87,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress87.html#PapMPS05,https://doi.org/10.1016/j.ress.2004.04.011 +Pekka Pyy,An analysis of maintenance failures at a nuclear power plant.,2001,72,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress72.html#Pyy01,https://doi.org/10.1016/S0951-8320(01)00026-6 +Maxim S. Finkelstein,On the reversed hazard rate.,2002,78,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress78.html#Finkelstein02a,https://doi.org/10.1016/S0951-8320(02)00113-8 +Jong Gyun Choi,Dependability estimation of a digital system with consideration of software masking effects on hardware faults.,2001,71,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress71.html#ChoiS01,https://doi.org/10.1016/S0951-8320(00)00071-5 +Radim Bris,Discrete maintenance optimization of complex multi-component systems.,2017,168,Rel. Eng. and Sys. Safety,,db/journals/ress/ress168.html#BrisBGR17,https://doi.org/10.1016/j.ress.2017.04.008 +Cyril Legrand,From extended integrity monitoring to the safety evaluation of satellite-based localisation system.,2016,155,Rel. Eng. and Sys. Safety,,db/journals/ress/ress155.html#LegrandBMCEB16,https://doi.org/10.1016/j.ress.2016.04.011 +Jason L. Cook,Reliability analysis of cluster-based ad-hoc networks.,2008,93,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress93.html#CookR08,https://doi.org/10.1016/j.ress.2007.09.002 +Dan M. Frangopol,Guest editorial.,2001,73,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress73.html#FrangopolS01,https://doi.org/10.1016/S0951-8320(01)00057-6 +Martina Sättele,Reliability and effectiveness of early warning systems for natural hazards: Concept and application to debris flow warning.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#SatteleBS15,https://doi.org/10.1016/j.ress.2015.05.003 +Andreas Lindhe,Approximate dynamic fault tree calculations for modelling water supply risks.,2012,106,Rel. Eng. and Sys. Safety,,db/journals/ress/ress106.html#LindheNR12,https://doi.org/10.1016/j.ress.2012.05.003 +Won Young Yun,Economic design of a circular consecutive-k-out-of-n: F system with (k-1)-step Markov dependence.,2007,92,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress92.html#YunKY07,https://doi.org/10.1016/j.ress.2005.12.007 +Huan Yu,Reliability analysis of repairable multi-state system with common bus performance sharing.,2014,132,Rel. Eng. and Sys. Safety,,db/journals/ress/ress132.html#YuYM14,https://doi.org/10.1016/j.ress.2014.07.017 +Martin Newby,Monitoring and maintenance of spares and one shot devices.,2008,93,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress93.html#Newby08,https://doi.org/10.1016/j.ress.2007.02.008 +A. Santosh,Reliability analysis of pipelines carrying H2S for risk based inspection of heavy water plants.,2006,91,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress91.html#SantoshVSSGK06,https://doi.org/10.1016/j.ress.2004.11.021 +Ahmad W. Al-Dabbagh,Reliability modeling of networked control systems using dynamic flowgraph methodology.,2010,95,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress95.html#Al-DabbaghL10,https://doi.org/10.1016/j.ress.2010.05.005 +Milos Ferjencik,"An integrated approach to the analysis of causes of crime/public disorder - A case study for the ""Tlahuac"" incident.",2012,105,Rel. Eng. and Sys. Safety,,db/journals/ress/ress105.html#Ferjencik12,https://doi.org/10.1016/j.ress.2011.10.013 +Kwan Seong Jeong,The safety assessment system based on virtual networked environment for evaluation on the hazards from human errors during decommissioning of nuclear facilities.,2016,156,Rel. Eng. and Sys. Safety,,db/journals/ress/ress156.html#JeongCMHLKKCALL16,https://doi.org/10.1016/j.ress.2016.07.023 +Franck Schoefs,Sensitivity approach for modelling the environmental loading of marine structures through a matrix response surface.,2008,93,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress93.html#Schoefs08,https://doi.org/10.1016/j.ress.2007.05.006 +Durga Rao Karanki,Quantification of Dynamic Event Trees - A comparison with event trees for MLOCA scenario.,2016,147,Rel. Eng. and Sys. Safety,,db/journals/ress/ress147.html#KarankiD16,https://doi.org/10.1016/j.ress.2015.10.017 +Miroslav Koucký,Exact reliability formula and bounds for general k-out-of-n systems.,2003,82,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress82.html#Koucky03,https://doi.org/10.1016/S0951-8320(03)00126-1 +Suiyao Chen,A data heterogeneity modeling and quantification approach for field pre-assessment of chloride-induced corrosion in aging infrastructures.,2018,171,Rel. Eng. and Sys. Safety,,db/journals/ress/ress171.html#ChenLXLL18,https://doi.org/10.1016/j.ress.2017.11.013 +Gregory Levitin,Is it wise to protect false targets?,2011,96,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress96.html#LevitinH11a,https://doi.org/10.1016/j.ress.2011.07.012 +Kwang-Il Ahn,On the plant-specific impact of different pressurization rates in the estimation of containment failure mode probabilities.,2004,84,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress84.html#AhnY04,https://doi.org/10.1016/j.ress.2003.11.009 +Ramin Moghaddass,An integrated framework for online diagnostic and prognostic health monitoring using a multistate deterioration process.,2014,124,Rel. Eng. and Sys. Safety,,db/journals/ress/ress124.html#MoghaddassZ14,https://doi.org/10.1016/j.ress.2013.11.006 +Y. X. Zhao,On preventive maintenance policy of a critical reliability level for system subject to degradation.,2003,79,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress79.html#Zhao03,https://doi.org/10.1016/S0951-8320(02)00201-6 +Enrico Zio,Challenges in the vulnerability and risk analysis of critical infrastructures.,2016,152,Rel. Eng. and Sys. Safety,,db/journals/ress/ress152.html#Zio16,https://doi.org/10.1016/j.ress.2016.02.009 +Mouayad Albaghdadi,Event storm detection and identification in communication systems.,2006,91,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress91.html#AlbaghdadiBE06,https://doi.org/10.1016/j.ress.2005.05.001 +P. G. Beerthuizen,System and software safety analysis for the ERA control computer.,2001,71,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress71.html#BeerthuizenK01,https://doi.org/10.1016/S0951-8320(00)00080-6 +Phuc Do Van,Maintenance grouping for multi-component systems with availability constraints and limited maintenance teams.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#VanVBB15,https://doi.org/10.1016/j.ress.2015.04.022 +David Han,Time and cost constrained optimal designs of constant-stress and step-stress accelerated life tests.,2015,140,Rel. Eng. and Sys. Safety,,db/journals/ress/ress140.html#Han15,https://doi.org/10.1016/j.ress.2015.03.026 +So Young Sohn,Application of degradation test data to advertisement of consumer electronic products.,2000,67,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress67.html#Sohn00,https://doi.org/10.1016/S0951-8320(99)00060-5 +Tobias Hoppe,Security threats to automotive CAN networks - Practical examples and selected short-term countermeasures.,2011,96,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress96.html#HoppeKD11,https://doi.org/10.1016/j.ress.2010.06.026 +Peter Chemweno,Risk assessment methodologies in maintenance decision making: A review of dependability modelling approaches.,2018,173,Rel. Eng. and Sys. Safety,,db/journals/ress/ress173.html#ChemwenoPMH18,https://doi.org/10.1016/j.ress.2018.01.011 +Timothy S. Margulies,Risk optimization: siting of nuclear power electricity generating units.,2004,86,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress86.html#Margulies04,https://doi.org/10.1016/j.ress.2004.02.009 +Bruno Castanier,A condition-based maintenance policy with non-periodic inspections for a two-unit series system.,2005,87,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress87.html#CastanierGB05,https://doi.org/10.1016/j.ress.2004.04.013 +Rob P. Rechard,Unsaturated flow modeling in performance assessments for the Yucca Mountain disposal system for spent nuclear fuel and high-level radioactive waste.,2014,122,Rel. Eng. and Sys. Safety,,db/journals/ress/ress122.html#RechardBWSH14,https://doi.org/10.1016/j.ress.2013.06.025 +Xufeng Yang,System reliability analysis through active learning Kriging model with truncated candidate region.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#YangLMT18,https://doi.org/10.1016/j.ress.2017.08.016 +Rolf J. Bye,Maritime navigation accidents and risk indicators: An exploratory statistical analysis using AIS data and accident reports.,2018,176,Rel. Eng. and Sys. Safety,,db/journals/ress/ress176.html#ByeA18,https://doi.org/10.1016/j.ress.2018.03.033 +Shin-Jon Ju,On the distribution type of uncertain inputs for probabilistic assessment.,2009,94,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress94.html#Ju09,https://doi.org/10.1016/j.ress.2008.11.001 +John Quigley,Merging expert and empirical data for rare event frequency estimation: Pool homogenisation for empirical Bayes models.,2011,96,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress96.html#QuigleyHBW11,https://doi.org/10.1016/j.ress.2010.12.007 +Claudio M. Rocco Sanseverino,Uncertainty propagation and sensitivity analysis in system reliability assessment via unscented transformation.,2014,132,Rel. Eng. and Sys. Safety,,db/journals/ress/ress132.html#SanseverinoR14,https://doi.org/10.1016/j.ress.2014.07.024 +Jang-Soo Lee,Fault tree construction of hybrid system requirements using qualitative formal method.,2005,87,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress87.html#LeeC05,https://doi.org/10.1016/j.ress.2004.04.012 +Gregory Levitin,Optimal task partition and state-dependent loading in heterogeneous two-element work sharing system.,2016,156,Rel. Eng. and Sys. Safety,,db/journals/ress/ress156.html#LevitinXBD16,https://doi.org/10.1016/j.ress.2016.07.009 +Yuan Lin Zhang,A bivariate optimal replacement policy for a multistate repairable system.,2007,92,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress92.html#ZhangYZ07,https://doi.org/10.1016/j.ress.2006.01.018 +Oliver Sträter,Considerations on the elements of quantifying human reliability.,2004,83,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress83.html#Strater04a,https://doi.org/10.1016/j.ress.2003.09.015 +Rakesh Sehgal,A study on fitness-for-service assessment for crack-like defects and corrosion in nuclear reactor pressure tubes.,2005,89,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress89.html#SehgalTS05,https://doi.org/10.1016/j.ress.2004.08.026 +Fathollah Bistouni,Remove and contraction: A novel method for calculating the reliability of Ethernet ring mesh networks.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#BistouniJ17,https://doi.org/10.1016/j.ress.2017.06.016 +Pentti Kujala,Analysis of the marine traffic safety in the Gulf of Finland.,2009,94,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress94.html#KujalaHAY09,https://doi.org/10.1016/j.ress.2009.02.028 +Oliver Sträter,On the way to assess errors of commission.,2004,83,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress83.html#StraterDKD04,https://doi.org/10.1016/j.ress.2003.09.004 +Gregory Levitin,Maximizing survivability of acyclic transmission networks with multi-state retransmitters and vulnerable nodes.,2002,77,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress77.html#Levitin02e,https://doi.org/10.1016/S0951-8320(02)00040-6 +C. Ariel Pinto,Risk of extreme events in the configuration of priority systems.,2002,76,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress76.html#PintoL02,https://doi.org/10.1016/S0951-8320(02)00018-2 +Amalio Saiz de Bustamante,Multinomial-exponential reliability function: a software reliability model.,2003,79,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress79.html#BustamanteB03,https://doi.org/10.1016/S0951-8320(02)00160-6 +Rodrigo de Carvalho Soares,Reliability analysis of non-linear reinforced concrete frames using the response surface method.,2002,75,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress75.html#SoaresMVL02,https://doi.org/10.1016/S0951-8320(01)00043-6 +Sherif M. Yacoub,Analyzing the behavior and reliability of voting systems comprising tri-state units using enumerated simulation.,2003,81,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress81.html#Yacoub03,https://doi.org/10.1016/S0951-8320(03)00074-7 +Shufang Song,Subset simulation for structural reliability sensitivity analysis.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#SongLQ09,https://doi.org/10.1016/j.ress.2008.07.006 +Pasquale Erto,Assessing high reliability via Bayesian approach and accelerated tests.,2002,76,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress76.html#ErtoG02,https://doi.org/10.1016/S0951-8320(02)00024-8 +Jinkyun Park,A study on the validity of a task complexity measure for emergency operating procedures of nuclear power plants - Comparing task complexity scores with two sets of operator response time data obtained under a simulated SGTR.,2008,93,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress93.html#ParkJ08,https://doi.org/10.1016/j.ress.2007.02.002 +Graham Booker,Estimating cellular network performance during hurricanes.,2010,95,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress95.html#BookerTGSB10,https://doi.org/10.1016/j.ress.2009.11.003 +Li Yang 0004,A preventive maintenance policy based on dependent two-stage deterioration and external shocks.,2017,160,Rel. Eng. and Sys. Safety,,db/journals/ress/ress160.html#YangMPZZ17,https://doi.org/10.1016/j.ress.2016.12.008 +María Carmen Carnero,Ex-ante assessment of the Spanish Occupational Health and Safety Strategy (2007-2012) using a State Space framework.,2013,110,Rel. Eng. and Sys. Safety,,db/journals/ress/ress110.html#CarneroP13,https://doi.org/10.1016/j.ress.2012.09.003 +Jinting Wang,Flexible decision models for a two-dimensional warranty policy with periodic preventive maintenance.,2017,162,Rel. Eng. and Sys. Safety,,db/journals/ress/ress162.html#WangZP17,https://doi.org/10.1016/j.ress.2017.01.012 +Tony Rosqvist,Bayesian aggregation of experts' judgements on failure intensity.,2000,70,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress70.html#Rosqvist00,https://doi.org/10.1016/S0951-8320(00)00064-8 +Rómulo I. Zequeira,An approach for the Bayesian estimation in the case of ordered piecewise constant failure rates.,2001,72,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress72.html#ZequeiraV01,https://doi.org/10.1016/S0951-8320(01)00006-0 +Qing Shuang,Node vulnerability of water distribution networks under cascading failures.,2014,124,Rel. Eng. and Sys. Safety,,db/journals/ress/ress124.html#ShuangZY14,https://doi.org/10.1016/j.ress.2013.12.002 +Hélio Fiori de Castro,Maintenance resources optimization applied to a manufacturing system.,2006,91,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress91.html#CastroC06,https://doi.org/10.1016/j.ress.2005.02.004 +Terje Aven,Some reflections on uncertainty analysis and management.,2010,95,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress95.html#Aven10,https://doi.org/10.1016/j.ress.2009.09.010 +Chenzhao Li,An efficient modularized sample-based method to estimate the first-order Sobol' index.,2016,153,Rel. Eng. and Sys. Safety,,db/journals/ress/ress153.html#LiM16a,https://doi.org/10.1016/j.ress.2016.04.012 +Bernhard Reer,Review of advances in human reliability analysis of errors of commission - Part 2: EOC quantification.,2008,93,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress93.html#Reer08a,https://doi.org/10.1016/j.ress.2007.10.001 +Fathollah Bistouni,Evaluating failure rate of fault-tolerant multistage interconnection networks using Weibull life distribution.,2015,144,Rel. Eng. and Sys. Safety,,db/journals/ress/ress144.html#BistouniJ15,https://doi.org/10.1016/j.ress.2015.07.023 +Ali Dolatshahi-Zand,Design of SCADA water resource management control center by a bi-objective redundancy allocation problem and particle swarm optimization.,2015,133,Rel. Eng. and Sys. Safety,,db/journals/ress/ress133.html#Dolatshahi-ZandD15,https://doi.org/10.1016/j.ress.2014.07.020 +Roy Billinton,Reliability/cost implications of utilizing photovoltaics in small isolated power systems.,2003,79,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress79.html#BillintonK03,https://doi.org/10.1016/S0951-8320(02)00157-6 +Terje Aven,A conceptual framework for linking risk and the elements of the data-information-knowledge-wisdom (DIKW) hierarchy.,2013,111,Rel. Eng. and Sys. Safety,,db/journals/ress/ress111.html#Aven13,https://doi.org/10.1016/j.ress.2012.09.014 +H. J. Pasman,A holistic approach to control process safety risks: Possible ways forward.,2013,117,Rel. Eng. and Sys. Safety,,db/journals/ress/ress117.html#PasmanKR13,https://doi.org/10.1016/j.ress.2013.03.010 +Angela Weber Righi,A systematic literature review of resilience engineering: Research areas and a research agenda proposal.,2015,141,Rel. Eng. and Sys. Safety,,db/journals/ress/ress141.html#RighiSW15,https://doi.org/10.1016/j.ress.2015.03.007 +Eduard Hofer,An approximate epistemic uncertainty analysis approach in the presence of epistemic and aleatory uncertainties.,2002,77,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress77.html#HoferKKPW02,https://doi.org/10.1016/S0951-8320(02)00056-X +P. Prempraneerach,Uncertainty quantification in simulations of power systems: Multi-element polynomial chaos methods.,2010,95,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress95.html#PrempraneerachHTK10,https://doi.org/10.1016/j.ress.2010.01.012 +Rajesh Gupta 0005,Comments on the paper 'Redundancy model for water distribution systems' by P. Kalungi and T.T. Tanyimboh.,2004,86,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress86.html#GuptaB04,https://doi.org/10.1016/j.ress.2004.02.005 +Hindolo George-Williams,Efficient availability assessment of reconfigurable multi-state systems with interdependencies.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#George-Williams17,https://doi.org/10.1016/j.ress.2017.05.010 +Zhigang Tian,A joint reliability-redundancy optimization approach for multi-state series-parallel systems.,2009,94,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress94.html#TianLZ09,https://doi.org/10.1016/j.ress.2009.02.021 +Daejun Chang,A study on availability and safety of new propulsion systems for LNG carriers.,2008,93,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress93.html#ChangRNCLJ08,https://doi.org/10.1016/j.ress.2008.03.013 +Shaomin Wu,Forecasting warranty claims for recently launched products.,2012,106,Rel. Eng. and Sys. Safety,,db/journals/ress/ress106.html#WuA12,https://doi.org/10.1016/j.ress.2012.06.008 +Julie A. Shah,Analytical basis for evaluating the effect of unplanned interventions on the effectiveness of a human-robot system.,2008,93,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress93.html#ShahSH08,https://doi.org/10.1016/j.ress.2007.06.007 +Rui Peng,Optimal structure of multi-state systems with multi-fault coverage.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#PengMXL13,https://doi.org/10.1016/j.ress.2013.05.007 +Y. H. J. Chang,Cognitive modeling and dynamic probabilistic simulation of operating crew response to complex system accidents: Part 3: IDAC operator response model.,2007,92,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress92.html#ChangM07b,https://doi.org/10.1016/j.ress.2006.05.013 +Alaa Chateauneuf,Accelerated Life Testing and degradation modeling.,2014,131,Rel. Eng. and Sys. Safety,,db/journals/ress/ress131.html#Chateauneuf14,https://doi.org/10.1016/j.ress.2014.05.004 +Xingyu Zhao,Conservative claims for the probability of perfection of a software-based system using operational experience of previous similar systems.,2018,175,Rel. Eng. and Sys. Safety,,db/journals/ress/ress175.html#ZhaoLPSW18,https://doi.org/10.1016/j.ress.2018.03.032 +John C. Whitson,Resiliency as a component importance measure in network reliability.,2009,94,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress94.html#WhitsonR09,https://doi.org/10.1016/j.ress.2009.05.001 +Serkan Eryilmaz,Marginal and joint reliability importance based on survival signature.,2018,172,Rel. Eng. and Sys. Safety,,db/journals/ress/ress172.html#EryilmazCC18,https://doi.org/10.1016/j.ress.2017.12.002 +Gerhard Ersdal,Risk informed decision-making and its ethical basis.,2008,93,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress93.html#ErsdalA08,https://doi.org/10.1016/j.ress.2006.12.018 +Mustapha Nourelfath,Joint redundancy and imperfect preventive maintenance optimization for series-parallel multi-state degraded systems.,2012,103,Rel. Eng. and Sys. Safety,,db/journals/ress/ress103.html#NourelfathCN12,https://doi.org/10.1016/j.ress.2012.03.004 +Ana Alises,Overtopping hazards to port activities: Application of a new methodology to risk management (POrt Risk MAnagement Tool).,2014,123,Rel. Eng. and Sys. Safety,,db/journals/ress/ress123.html#AlisesMGPC14,https://doi.org/10.1016/j.ress.2013.09.005 +P. Gayathri,Effect of matrix cracking and material uncertainty on composite plates.,2010,95,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress95.html#GayathriUG10,https://doi.org/10.1016/j.ress.2010.02.004 +Elias Keedy,A physics-of-failure based reliability and maintenance modeling framework for stent deployment and operation.,2012,103,Rel. Eng. and Sys. Safety,,db/journals/ress/ress103.html#KeedyF12,https://doi.org/10.1016/j.ress.2012.03.005 +J. Tang,Mechanical system reliability analysis using a combination of graph theory and Boolean function.,2001,72,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress72.html#Tang01,https://doi.org/10.1016/S0951-8320(00)00099-5 +Pietro Giuggioli Busacca,Multiobjective optimization by genetic algorithms: application to safety systems.,2001,72,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress72.html#BusaccaMZ01,https://doi.org/10.1016/S0951-8320(00)00109-5 +Wei-Chang Yeh,A simple algorithm to search for all d-MPs with unreliable nodes.,2001,73,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress73.html#Yeh01a,https://doi.org/10.1016/S0951-8320(01)00032-1 +Ramesh Rebba,Validation of models with multivariate output.,2006,91,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress91.html#RebbaM06,https://doi.org/10.1016/j.ress.2005.09.004 +Jochen Janssens,A hybridised variable neighbourhood tabu search heuristic to increase security in a utility network.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#JanssensTS16,https://doi.org/10.1016/j.ress.2015.08.008 +Chi-Hui Chien,A strategy for the risk-based inspection of pressure safety valves.,2009,94,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress94.html#ChienCC09,https://doi.org/10.1016/j.ress.2008.09.002 +Gregory Levitin,Optimal loading of series parallel systems with arbitrary element time-to-failure and time-to-repair distributions.,2017,164,Rel. Eng. and Sys. Safety,,db/journals/ress/ress164.html#LevitinXD17,https://doi.org/10.1016/j.ress.2017.02.008 +Ramesh Rebba,Computational methods for model reliability assessment.,2008,93,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress93.html#RebbaM08,https://doi.org/10.1016/j.ress.2007.08.001 +Ryan G. McClarren,A physics informed emulator for laser-driven radiating shock simulations.,2011,96,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress96.html#McClarrenRDGBCFHHKMRT11,https://doi.org/10.1016/j.ress.2010.08.012 +Durga Rao Karanki,A comparison of dynamic event tree methods - Case study on a chemical batch reactor.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#KarankiDMP18,https://doi.org/10.1016/j.ress.2017.10.003 +Mohsen Khatibinia,Seismic reliability assessment of RC structures including soil-structure interaction using wavelet weighted least squares support vector machine.,2013,110,Rel. Eng. and Sys. Safety,,db/journals/ress/ress110.html#KhatibiniaFSS13,https://doi.org/10.1016/j.ress.2012.09.006 +Gregory Levitin,Evaluating the damage associated with intentional supply deprivation in multi-commodity network.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#LevitinGS13,https://doi.org/10.1016/j.ress.2013.05.002 +Yi-Chao Yin,An imprecise statistical method for accelerated life testing using the power-Weibull model.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#YinCC17,https://doi.org/10.1016/j.ress.2017.05.045 +Dimitri V. Val,Reliability analysis of rotor blades of tidal stream turbines.,2014,121,Rel. Eng. and Sys. Safety,,db/journals/ress/ress121.html#ValCY14,https://doi.org/10.1016/j.ress.2013.07.011 +Mourad Oussalah 0002,Analysis of serial-parallel systems in the framework of fuzzy/possibility approach. Part I. Appraisal: case of independent components.,2003,79,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress79.html#OussalahN03,https://doi.org/10.1016/S0951-8320(02)00244-2 +Vincent Chabridon,Reliability-based sensitivity estimators of rare event probability in the presence of distribution parameter uncertainty.,2018,178,Rel. Eng. and Sys. Safety,,db/journals/ress/ress178.html#ChabridonBBMG18,https://doi.org/10.1016/j.ress.2018.06.008 +Chongqing Kang,Sequence operation theory and its application in power system reliability evaluation.,2002,78,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress78.html#KangXX02,https://doi.org/10.1016/S0951-8320(02)00048-0 +Mani Razi,Adaptive finite difference solutions of Liouville equations in computational uncertainty quantification.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#RaziAV15,https://doi.org/10.1016/j.ress.2015.05.024 +Yifan Zhou,Maintenance optimisation of a multi-state series-parallel system considering economic dependence and state-dependent inspection intervals.,2013,111,Rel. Eng. and Sys. Safety,,db/journals/ress/ress111.html#ZhouZLM13,https://doi.org/10.1016/j.ress.2012.10.006 +Bernhard Kaiser,State/event fault trees - A safety analysis model for software-controlled systems.,2007,92,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress92.html#KaiserGF07,https://doi.org/10.1016/j.ress.2006.10.010 +Kai Yang,A semi-analytical Monte Carlo simulation method for system's reliability with load sharing and damage accumulation.,2005,87,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress87.html#YangY05,https://doi.org/10.1016/j.ress.2004.04.016 +Paul Kilsby,A modelling approach for railway overhead line equipment asset management.,2017,168,Rel. Eng. and Sys. Safety,,db/journals/ress/ress168.html#KilsbyRA17,https://doi.org/10.1016/j.ress.2017.02.012 +Yukun Wang,On reliability improvement program for second-hand products sold with a two-dimensional warranty.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#WangLLL17,https://doi.org/10.1016/j.ress.2017.06.029 +Simona Bernardi,Enabling the usage of UML in the verification of railway systems: The DAM-rail approach.,2013,120,Rel. Eng. and Sys. Safety,,db/journals/ress/ress120.html#BernardiFMMMNV13,https://doi.org/10.1016/j.ress.2013.06.032 +I. B. Sidibé,Preventive maintenance optimization for a stochastically degrading system with a random initial age.,2017,159,Rel. Eng. and Sys. Safety,,db/journals/ress/ress159.html#SidibeKDK17,https://doi.org/10.1016/j.ress.2016.11.018 +Hui Jin 0003,Reliability of safety-instrumented systems subject to partial testing and common-cause failures.,2014,121,Rel. Eng. and Sys. Safety,,db/journals/ress/ress121.html#JinR14,https://doi.org/10.1016/j.ress.2013.08.006 +Jon C. Helton,Verification test problems for the calculation of probability of loss of assured safety in temperature-dependent systems with multiple weak and strong links.,2007,92,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress92.html#HeltonJO07a,https://doi.org/10.1016/j.ress.2006.11.010 +Fabio Paternò,Analysing context-dependent deviations in interacting with safety-critical systems.,2006,91,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress91.html#PaternoS06,https://doi.org/10.1016/j.ress.2006.01.015 +Yimin Zhang,Methodology for collision risk assessment of an airspace flow corridor concept.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#ZhangSS15,https://doi.org/10.1016/j.ress.2015.05.015 +Nida Chatwattanasiri,System redundancy optimization with uncertain stress-based component reliability: Minimization of regret.,2016,154,Rel. Eng. and Sys. Safety,,db/journals/ress/ress154.html#Chatwattanasiri16,https://doi.org/10.1016/j.ress.2016.05.011 +Lorenzo Strigini,Bounds on survival probability given mean probability of failure per demand* and the paradoxical advantages of uncertainty.,2014,128,Rel. Eng. and Sys. Safety,,db/journals/ress/ress128.html#StriginiW14,https://doi.org/10.1016/j.ress.2014.02.004 +Sylvain Girard,Sensitivity analysis and dimension reduction of a steam generator model for clogging diagnosis.,2013,113,Rel. Eng. and Sys. Safety,,db/journals/ress/ress113.html#GirardRFSW13,https://doi.org/10.1016/j.ress.2012.12.012 +Eirik Larsen Følstad,The cost for meeting SLA dependability requirements* implications for customers and providers.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#FolstadH16,https://doi.org/10.1016/j.ress.2015.09.011 +Abdollah Shafieezadeh,Scenario-based resilience assessment framework for critical infrastructure systems: Case study for seismic resilience of seaports.,2014,132,Rel. Eng. and Sys. Safety,,db/journals/ress/ress132.html#ShafieezadehB14,https://doi.org/10.1016/j.ress.2014.07.021 +Y. H. J. Chang,Cognitive modeling and dynamic probabilistic simulation of operating crew response to complex system accidents: Part 1: Overview of the IDAC Model.,2007,92,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress92.html#ChangM07,https://doi.org/10.1016/j.ress.2006.05.014 +Min Ouyang,Critical location identification and vulnerability analysis of interdependent infrastructure systems under spatially localized attacks.,2016,154,Rel. Eng. and Sys. Safety,,db/journals/ress/ress154.html#Ouyang16,https://doi.org/10.1016/j.ress.2016.05.007 +Zhibin Tan,A new approach to MLE of Weibull distribution with interval data.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#Tan09,https://doi.org/10.1016/j.ress.2008.01.010 +Serkan Eryilmaz,Reliability analysis of multi-state system with three-state components and its application to wind energy.,2018,172,Rel. Eng. and Sys. Safety,,db/journals/ress/ress172.html#Eryilmaz18,https://doi.org/10.1016/j.ress.2017.12.008 +Xian He,Modeling the damage and recovery of interdependent critical infrastructure systems from natural hazards.,2018,177,Rel. Eng. and Sys. Safety,,db/journals/ress/ress177.html#HeC18,https://doi.org/10.1016/j.ress.2018.04.029 +Farhad Zahedi-Hosseini,Joint optimisation of inspection maintenance and spare parts provisioning: a comparative study of inventory policies using simulation and survey data.,2017,168,Rel. Eng. and Sys. Safety,,db/journals/ress/ress168.html#Zahedi-Hosseini17,https://doi.org/10.1016/j.ress.2017.03.007 +Ali Mosleh 0001,Model-based human reliability analysis: prospects and requirements.,2004,83,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress83.html#MoslehC04,https://doi.org/10.1016/j.ress.2003.09.014 +Robert E. Melchers,Probabilistic models for steel corrosion loss and pitting of marine infrastructure.,2008,93,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress93.html#MelchersJ08,https://doi.org/10.1016/j.ress.2006.12.006 +Mark Adrian van Staalduinen,Functional quantitative security risk analysis (QSRA) to assist in protecting critical process infrastructure.,2017,157,Rel. Eng. and Sys. Safety,,db/journals/ress/ress157.html#StaalduinenKGR17,https://doi.org/10.1016/j.ress.2016.08.014 +Curtis B. Storlie,Multiple predictor smoothing methods for sensitivity analysis: Example results.,2008,93,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress93.html#StorlieH08a,https://doi.org/10.1016/j.ress.2006.10.013 +Gregory Levitin,Is it wise to leave some false targets unprotected?,2013,112,Rel. Eng. and Sys. Safety,,db/journals/ress/ress112.html#LevitinH13,https://doi.org/10.1016/j.ress.2012.11.015 +William E. Kastenberg,Risk of nuclear powered space probes.,2004,86,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress86.html#KastenbergW04,https://doi.org/10.1016/j.ress.2003.12.006 +Dian-Qing Li,Bootstrap method for characterizing the effect of uncertainty in shear strength parameters on slope reliability.,2015,140,Rel. Eng. and Sys. Safety,,db/journals/ress/ress140.html#LiTP15,https://doi.org/10.1016/j.ress.2015.03.034 +Jun Xu,A new unequal-weighted sampling method for efficient reliability analysis.,2018,172,Rel. Eng. and Sys. Safety,,db/journals/ress/ress172.html#XuK18,https://doi.org/10.1016/j.ress.2017.12.007 +Seth D. Guikema,A comparison of reliability estimation methods for binary systems.,2005,87,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress87.html#Guikema05,https://doi.org/10.1016/j.ress.2004.06.007 +Adolfo Crespo Marquez,Models for maintenance optimization: a study for repairable systems and finite time periods.,2002,75,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress75.html#MarquezH02,https://doi.org/10.1016/S0951-8320(01)00131-4 +Gregory Levitin,Evaluating the damage associated with intentional network disintegration.,2011,96,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress96.html#LevitinGS11,https://doi.org/10.1016/j.ress.2010.12.022 +Sandra Hoffmann,Informing risk-mitigation priorities using uncertainty measures derived from heterogeneous expert panels: A demonstration using foodborne pathogens.,2008,93,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress93.html#HoffmannFKM08,https://doi.org/10.1016/j.ress.2007.03.010 +Francesco Cadini,Estimation of rare event probabilities in power transmission networks subject to cascading failures.,2017,158,Rel. Eng. and Sys. Safety,,db/journals/ress/ress158.html#CadiniAZ17,https://doi.org/10.1016/j.ress.2016.09.009 +Claudio M. Rocco Sanseverino,Robustness and sensitivity analysis in multiple criteria decision problems using rule learner techniques.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#SanseverinoH15,https://doi.org/10.1016/j.ress.2014.04.022 +Julie Beugin,A SIL quantification approach based on an operating situation model for safety evaluation in complex guided transportation systems.,2007,92,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress92.html#BeuginRC07,https://doi.org/10.1016/j.ress.2006.09.022 +Marzio Marseguerra,A multiobjective genetic algorithm approach to the optimization of the technical specifications of a nuclear safety system.,2004,84,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress84.html#MarseguerraZP04,https://doi.org/10.1016/S0951-8320(03)00175-3 +Ehab A. Nasir,Simulation-based Bayesian optimal ALT designs for model discrimination.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#NasirP15,https://doi.org/10.1016/j.ress.2014.10.002 +A. Mancuso,Risk-based optimization of pipe inspections in large underground networks with imprecise information.,2016,152,Rel. Eng. and Sys. Safety,,db/journals/ress/ress152.html#MancusoCSZL16,https://doi.org/10.1016/j.ress.2016.03.011 +Halil Karadeniz,Uncertainty modeling in the fatigue reliability calculation of offshore structures.,2001,74,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress74.html#Karadeniz01,https://doi.org/10.1016/S0951-8320(01)00087-4 +Arthur W. Gubbels,The NRC Bell 412 ASRA safety system: a human factors perspective on lessons learned from an airborne incident.,2002,75,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress75.html#GubbelsC02,https://doi.org/10.1016/S0951-8320(01)00100-4 +Liudong Xing,Balancing theft and corruption threats by data partition in cloud system with independent server protection.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#XingL17,https://doi.org/10.1016/j.ress.2017.06.006 +Sabrina Jocelyn,Feasibility study and uncertainties in the validation of an existing safety-related control circuit with the ISO 13849-1: 2006 design standard.,2014,121,Rel. Eng. and Sys. Safety,,db/journals/ress/ress121.html#JocelynBCC14,https://doi.org/10.1016/j.ress.2013.07.012 +Pedram Pourkarim Guilani,Reliability evaluation of non-reparable three-state systems using Markov model and its comparison with the UGF and the recursive methods.,2014,129,Rel. Eng. and Sys. Safety,,db/journals/ress/ress129.html#GuilaniSNZ14,https://doi.org/10.1016/j.ress.2014.04.019 +P. Davis,A physical probabilistic model to predict failure rates in buried PVC pipelines.,2007,92,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress92.html#DavisBMG07,https://doi.org/10.1016/j.ress.2006.08.001 +Seung-Ie Yang,The use of lifetime functions in the optimization of interventions on existing bridges considering maintenance and failure costs.,2006,91,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress91.html#YangFKN06,https://doi.org/10.1016/j.ress.2005.06.001 +Matti Niclas Scheu,Influence of statistical uncertainty of component reliability estimations on offshore wind farm availability.,2017,168,Rel. Eng. and Sys. Safety,,db/journals/ress/ress168.html#ScheuKFB17,https://doi.org/10.1016/j.ress.2017.05.021 +Farjam Kayedpour,Multi-objective redundancy allocation problem for a system with repairable components considering instantaneous availability and strategy selection.,2017,160,Rel. Eng. and Sys. Safety,,db/journals/ress/ress160.html#KayedpourARN17,https://doi.org/10.1016/j.ress.2016.10.009 +Pedro A. Pérez Ramírez,Use of dynamic Bayesian networks for life extension assessment of ageing systems.,2015,133,Rel. Eng. and Sys. Safety,,db/journals/ress/ress133.html#RamirezU15,https://doi.org/10.1016/j.ress.2014.09.002 +Jianbo Yu,State of health prediction of lithium-ion batteries: Multiscale logic regression and Gaussian process regression ensemble.,2018,174,Rel. Eng. and Sys. Safety,,db/journals/ress/ress174.html#Yu18,https://doi.org/10.1016/j.ress.2018.02.022 +Jon C. Helton,Quantification of Margins and Uncertainties.,2011,96,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress96.html#HeltonP11,https://doi.org/10.1016/j.ress.2011.03.015 +Durga Rao Karanki,A dynamic event tree informed approach to probabilistic accident sequence modeling: Dynamics and variabilities in medium LOCA.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#KarankiKD15,https://doi.org/10.1016/j.ress.2015.04.011 +Petek Yontay,A computational Bayesian approach to dependency assessment in system reliability.,2016,152,Rel. Eng. and Sys. Safety,,db/journals/ress/ress152.html#YontayP16,https://doi.org/10.1016/j.ress.2016.03.005 +Massimo Concetti,"Tele-maintenance ""intelligent"" system for technical plants result management.",2009,94,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress94.html#ConcettiCFM09,https://doi.org/10.1016/j.ress.2007.03.028 +Tony Rosqvist,Stopping time optimisation in condition monitoring.,2002,76,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress76.html#Rosqvist02,https://doi.org/10.1016/S0951-8320(02)00026-1 +Gregory Levitin,Linear m-gap-consecutive k-out-of-r-from-n: F systems.,2011,96,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress96.html#Levitin11,https://doi.org/10.1016/j.ress.2010.09.009 +Ayman Faza,A probabilistic model for estimating the effects of photovoltaic sources on the power systems reliability.,2018,171,Rel. Eng. and Sys. Safety,,db/journals/ress/ress171.html#Faza18,https://doi.org/10.1016/j.ress.2017.11.008 +Edward Korczak,Survivability of series-parallel systems with multilevel protection.,2005,90,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress90.html#KorczakLB05,https://doi.org/10.1016/j.ress.2004.10.001 +Man Cheol Kim,A computational method for probabilistic safety assessment of I and C systems and human operators in nuclear power plants.,2006,91,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress91.html#KimS06b,https://doi.org/10.1016/j.ress.2005.04.006 +Michael Bartholomew-Biggs,Modelling and optimizing sequential imperfect preventive maintenance.,2009,94,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress94.html#Bartholomew-BiggsZL09,https://doi.org/10.1016/j.ress.2008.03.002 +Renata J. Romanowicz,Data assimilation and uncertainty analysis of environmental assessment problems - an application of Stochastic Transfer Function and Generalised Likelihood Uncertainty Estimation techniques.,2003,79,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress79.html#RomanowiczY03,https://doi.org/10.1016/S0951-8320(02)00227-2 +Joshua Mullins,Separation of aleatory and epistemic uncertainty in probabilistic model validation.,2016,147,Rel. Eng. and Sys. Safety,,db/journals/ress/ress147.html#MullinsLMSS16,https://doi.org/10.1016/j.ress.2015.10.003 +I. Kuban Altinel,Component testing of a series system in a random mission.,2002,78,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress78.html#AltinelOF02,https://doi.org/10.1016/S0951-8320(02)00047-9 +Yordan Garbatov,Structural maintenance planning based on historical data of corroded deck plates of tankers.,2009,94,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress94.html#GarbatovS09,https://doi.org/10.1016/j.ress.2009.05.013 +C.-F. Fan,Accident sequence analysis of human-computer interface design.,2000,67,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress67.html#FanC00,https://doi.org/10.1016/S0951-8320(99)00042-3 +Shuang Huang,Transient fault tolerant control for vehicle brake-by-wire systems.,2016,149,Rel. Eng. and Sys. Safety,,db/journals/ress/ress149.html#HuangZYQHH16,https://doi.org/10.1016/j.ress.2016.01.001 +Oscar Garcia-Cabrejo,Global Sensitivity Analysis for multivariate output using Polynomial Chaos Expansion.,2014,126,Rel. Eng. and Sys. Safety,,db/journals/ress/ress126.html#Garcia-CabrejoV14,https://doi.org/10.1016/j.ress.2014.01.005 +Stefano Tarantola,Random balance designs for the estimation of first order global sensitivity indices.,2006,91,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress91.html#TarantolaGM06,https://doi.org/10.1016/j.ress.2005.06.003 +K. Durga Rao,Test interval optimization of safety systems of nuclear power plant using fuzzy-genetic approach.,2007,92,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress92.html#RaoGKVS07,https://doi.org/10.1016/j.ress.2006.05.009 +Karl N. Fleming,Database development and uncertainty treatment for estimating pipe failure rates and rupture frequencies.,2004,86,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress86.html#FlemingL04,https://doi.org/10.1016/j.ress.2004.01.013 +Alyson G. Wilson,Bayesian networks for multilevel system reliability.,2007,92,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress92.html#WilsonH07,https://doi.org/10.1016/j.ress.2006.09.003 +Behrooz Keshtegar,Dynamical accelerated performance measure approach for efficient reliability-based design optimization with highly nonlinear probabilistic constraints.,2018,178,Rel. Eng. and Sys. Safety,,db/journals/ress/ress178.html#KeshtegarC18a,https://doi.org/10.1016/j.ress.2018.05.015 +M. A. Valdebenito,Sensitivity estimation of failure probability applying line sampling.,2018,171,Rel. Eng. and Sys. Safety,,db/journals/ress/ress171.html#ValdebenitoJHM18,https://doi.org/10.1016/j.ress.2017.11.010 +Terje Aven,Perspectives on risk: review and discussion of the basis for establishing a unified and holistic approach.,2005,90,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress90.html#AvenK05,https://doi.org/10.1016/j.ress.2004.10.008 +Ditte Caroline Raben,Application of a non-linear model to understand healthcare processes: using the functional resonance analysis method on a case study of the early detection of sepsis.,2018,177,Rel. Eng. and Sys. Safety,,db/journals/ress/ress177.html#RabenVMHBH18,https://doi.org/10.1016/j.ress.2018.04.023 +S. Zhao,Hybrid Hidden Markov Models for resilience metrics in a dynamic infrastructure system.,2017,164,Rel. Eng. and Sys. Safety,,db/journals/ress/ress164.html#ZhaoLZ17,https://doi.org/10.1016/j.ress.2017.02.009 +Lirong Cui,Analytical method for reliability and MTTF assessment of coherent systems with dependent components.,2007,92,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress92.html#CuiL07,https://doi.org/10.1016/j.ress.2006.04.005 +Do-Eun Choe,Probabilistic capacity models and seismic fragility estimates for RC columns subject to corrosion.,2008,93,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress93.html#ChoeGRH08,https://doi.org/10.1016/j.ress.2006.12.015 +Minjae Park,Optimization of periodic preventive maintenance policy following the expiration of two-dimensional warranty.,2018,170,Rel. Eng. and Sys. Safety,,db/journals/ress/ress170.html#ParkJP18,https://doi.org/10.1016/j.ress.2017.10.009 +Won-Hee Kang,A rapid reliability estimation method for directed acyclic lifeline networks with statistically dependent components.,2014,124,Rel. Eng. and Sys. Safety,,db/journals/ress/ress124.html#KangK14,https://doi.org/10.1016/j.ress.2013.11.015 +Barry Kirwan,Human error data collection as a precursor to the development of a human reliability assessment capability in air traffic management.,2008,93,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress93.html#KirwanGH08,https://doi.org/10.1016/j.ress.2006.12.005 +Santosh G. Vinod,Symptom based diagnostic system for nuclear power plant operations using artificial neural networks.,2003,82,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress82.html#VinodBKR03,https://doi.org/10.1016/S0951-8320(03)00120-0 +Eftychia C. Marcoulaki,Quantitative safety analysis of cryogenic liquid releases in a deep underground large scale installation.,2017,162,Rel. Eng. and Sys. Safety,,db/journals/ress/ress162.html#MarcoulakiVP17,https://doi.org/10.1016/j.ress.2017.01.016 +Indra Gunawan,Reliability analysis of shuffle-exchange network systems.,2008,93,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress93.html#Gunawan08,https://doi.org/10.1016/j.ress.2006.10.027 +Amy R. Pritchett,Testing and implementing cockpit alerting systems.,2002,75,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress75.html#PritchettVE02,https://doi.org/10.1016/S0951-8320(01)00094-1 +Zhibin Tan,Bayesian analysis with consideration of data uncertainty in a specific scenario.,2003,79,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress79.html#TanX03,https://doi.org/10.1016/S0951-8320(02)00163-1 +Karl N. Fleming,Markov models for evaluating risk-informed in-service inspection strategies for nuclear power plant piping systems.,2004,83,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress83.html#Fleming04,https://doi.org/10.1016/j.ress.2003.08.009 +Marzio Marseguerra,Multiobjective spare part allocation by means of genetic algorithms and Monte Carlo simulation.,2005,87,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress87.html#MarseguerraZP05,https://doi.org/10.1016/j.ress.2004.06.002 +Durga Rao Karanki,Epistemic and aleatory uncertainties in integrated deterministic and probabilistic safety assessment: Tradeoff between accuracy and accident simulations.,2017,162,Rel. Eng. and Sys. Safety,,db/journals/ress/ress162.html#KarankiRDZ17,https://doi.org/10.1016/j.ress.2017.01.015 +Nima Khakzad,Dynamic risk analysis using bow-tie approach.,2012,104,Rel. Eng. and Sys. Safety,,db/journals/ress/ress104.html#KhakzadKA12,https://doi.org/10.1016/j.ress.2012.04.003 +Tibor Nagy,Determination of the uncertainty domain of the Arrhenius parameters needed for the investigation of combustion kinetic models.,2012,107,Rel. Eng. and Sys. Safety,,db/journals/ress/ress107.html#NagyT12,https://doi.org/10.1016/j.ress.2011.06.009 +Mitsutaka Kimura,Reliability analysis of a replication with limited number of journaling files.,2013,116,Rel. Eng. and Sys. Safety,,db/journals/ress/ress116.html#KimuraIN13,https://doi.org/10.1016/j.ress.2013.02.008 +Santosh G. Vinod,Symptom based diagnostic system for nuclear power plant operations using artificial neural networks [Reliability Engineering and System Safety 82 (2003) 33-40].,2004,84,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress84.html#VinodBKR04,https://doi.org/10.1016/j.ress.2003.11.001 +Sonja Gamse,Hydrostatic-season-time model updating using Bayesian model class selection.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#GamseZTYO18,https://doi.org/10.1016/j.ress.2017.07.018 +Jan Bredereke,Safety-relevant mode confusions - modelling and reducing them.,2005,88,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress88.html#BrederekeL05,https://doi.org/10.1016/j.ress.2004.07.020 +Siamak Alizadeh,Impact of common cause failure on reliability performance of redundant safety related systems subject to process demand.,2018,172,Rel. Eng. and Sys. Safety,,db/journals/ress/ress172.html#AlizadehS18a,https://doi.org/10.1016/j.ress.2017.12.011 +Mashrura Musharraf,Assessing offshore emergency evacuation behavior in a virtual environment using a Bayesian Network approach.,2016,152,Rel. Eng. and Sys. Safety,,db/journals/ress/ress152.html#MusharrafSKVM16,https://doi.org/10.1016/j.ress.2016.02.001 +Jian Zhang 0013,Optimal inspection-based preventive maintenance policy for three-state mechanical components under competing failure modes.,2016,152,Rel. Eng. and Sys. Safety,,db/journals/ress/ress152.html#ZhangHFZZL16,https://doi.org/10.1016/j.ress.2016.02.007 +David Marquez,Improved reliability modeling using Bayesian networks and dynamic discretization.,2010,95,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress95.html#MarquezNF10,https://doi.org/10.1016/j.ress.2009.11.012 +Honglu Liu,Analysis of vulnerabilities in maritime supply chains.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#LiuTHY18,https://doi.org/10.1016/j.ress.2017.09.018 +Songhua Hao,Nonlinear step-stress accelerated degradation modelling considering three sources of variability.,2018,172,Rel. Eng. and Sys. Safety,,db/journals/ress/ress172.html#HaoYB18,https://doi.org/10.1016/j.ress.2017.12.012 +Ying Yi Li,Reliability analysis of multi-state systems subject to failure mechanism dependence based on a combination method.,2017,166,Rel. Eng. and Sys. Safety,,db/journals/ress/ress166.html#LiCYTK17,https://doi.org/10.1016/j.ress.2016.11.007 +Isaac W. Soro,Performance evaluation of multi-state degraded systems with minimal repairs and imperfect preventive maintenance.,2010,95,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress95.html#SoroNA10,https://doi.org/10.1016/j.ress.2009.08.004 +Roger Allan Cropp,The New Morris Method: an efficient second-order screening method.,2002,78,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress78.html#CroppB02,https://doi.org/10.1016/S0951-8320(02)00109-6 +Xiang-Yu Li,Reliability analysis of phased mission system with non-exponential and partially repairable components.,2018,175,Rel. Eng. and Sys. Safety,,db/journals/ress/ress175.html#LiHL18,https://doi.org/10.1016/j.ress.2018.03.008 +Yu Wang 0042,Spatial distribution of water supply reliability and critical links of water supply to crucial water consumers under an earthquake.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#WangA09,https://doi.org/10.1016/j.ress.2008.06.012 +Min Xie 0001,Some effective control chart procedures for reliability monitoring.,2002,77,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress77.html#0001GR02,https://doi.org/10.1016/S0951-8320(02)00041-8 +Andres Alban,Efficient Monte Carlo methods for estimating failure probabilities.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#AlbanDIN17,https://doi.org/10.1016/j.ress.2017.04.001 +Xing Gao,A game-theory approach to configuration of detection software with decision errors.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#GaoZM13,https://doi.org/10.1016/j.ress.2013.05.004 +Juan Carlos García-Díaz,Uncertainty and sensitive analysis of environmental model for risk assessments: An industrial case study.,2012,107,Rel. Eng. and Sys. Safety,,db/journals/ress/ress107.html#Garcia-DiazG12,https://doi.org/10.1016/j.ress.2011.04.004 +Abraham Almaw Jigar,Spurious activation analysis of safety-instrumented systems.,2016,156,Rel. Eng. and Sys. Safety,,db/journals/ress/ress156.html#JigarLL16,https://doi.org/10.1016/j.ress.2016.06.015 +Hector A. Jensen,Model-reduction techniques for reliability-based design problems of complex structural systems.,2016,149,Rel. Eng. and Sys. Safety,,db/journals/ress/ress149.html#JensenMPM16,https://doi.org/10.1016/j.ress.2016.01.003 +Yan-Fu Li,Non-dominated sorting binary differential evolution for the multi-objective optimization of cascading failures protection in complex networks.,2013,111,Rel. Eng. and Sys. Safety,,db/journals/ress/ress111.html#LiSZ13,https://doi.org/10.1016/j.ress.2012.11.002 +Seth D. Guikema,Natural disaster risk analysis for critical infrastructure systems: An approach based on statistical learning theory.,2009,94,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress94.html#Guikema09,https://doi.org/10.1016/j.ress.2008.09.003 +Francesca Argenti,Vulnerability assessment of chemical facilities to intentional attacks based on Bayesian Network.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#ArgentiLRC18,https://doi.org/10.1016/j.ress.2017.09.023 +Gyunyoung Heo,A framework for evaluating the effects of maintenance-related human errors in nuclear power plants.,2010,95,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress95.html#HeoP10,https://doi.org/10.1016/j.ress.2010.03.001 +Marko Gerbec,A reliability analysis of a natural-gas pressure-regulating installation.,2010,95,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress95.html#Gerbec10,https://doi.org/10.1016/j.ress.2010.06.022 +Siqi Qiu,Extended LK heuristics for the optimization of linear consecutive-k-out-of-n: F systems considering parametric uncertainty and model uncertainty.,2018,175,Rel. Eng. and Sys. Safety,,db/journals/ress/ress175.html#QiuSSM18,https://doi.org/10.1016/j.ress.2018.01.016 +Ferdinando Chiacchio,Dynamic fault trees resolution: A conscious trade-off between analytical and simulative approaches.,2011,96,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress96.html#ChiacchioCDMT11,https://doi.org/10.1016/j.ress.2011.06.014 +Radim Bris,Exact reliability quantification of highly reliable systems with maintenance.,2010,95,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress95.html#Bris10,https://doi.org/10.1016/j.ress.2010.06.004 +Min Ouyang,Mitigating electric power system vulnerability to worst-case spatially localized attacks.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#OuyangXZH17,https://doi.org/10.1016/j.ress.2017.03.031 +Alyson G. Wilson,Information integration for complex systems.,2007,92,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress92.html#WilsonMW07,https://doi.org/10.1016/j.ress.2006.07.003 +Jon Espen Skogdalen,Quantitative risk analysis offshore - Human and organizational factors.,2011,96,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress96.html#SkogdalenV11,https://doi.org/10.1016/j.ress.2010.12.013 +Wei-Chang Yeh,Multistate-node acyclic networks reliability evaluation based on MC.,2003,81,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress81.html#Yeh03b,https://doi.org/10.1016/S0951-8320(03)00116-9 +Yves Dutuit,Probabilistic assessments in relationship with safety integrity levels by using Fault Trees.,2008,93,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress93.html#DutuitIRS08,https://doi.org/10.1016/j.ress.2008.03.024 +Hong-Zhong Huang,Posbist fault tree analysis of coherent systems.,2004,84,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress84.html#HuangTZ04,https://doi.org/10.1016/j.ress.2003.11.002 +Erzsébet Németh,Verification of a primary-to-secondary leaking safety procedure in a nuclear power plant using coloured Petri nets.,2009,94,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress94.html#NemethBFH09,https://doi.org/10.1016/j.ress.2008.10.012 +Demet özgür-ünlüakin,Performance analysis of an aggregation and disaggregation solution procedure to obtain a maintenance plan for a partially observable multi-component system.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#Ozgur-UnluakinB17,https://doi.org/10.1016/j.ress.2017.04.013 +Chenzhao Li,Efficient approximate inference in Bayesian networks with continuous variables.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#LiM18,https://doi.org/10.1016/j.ress.2017.08.017 +Sergey Oladyshkin,Incomplete statistical information limits the utility of high-order polynomial chaos expansions.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#OladyshkinN18,https://doi.org/10.1016/j.ress.2017.08.010 +Claudio M. Rocco Sanseverino,A rule induction approach to improve Monte Carlo system reliability assessment.,2003,82,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress82.html#Sanseverino03,https://doi.org/10.1016/S0951-8320(03)00137-6 +Adrian J. Lee,The impact of aviation checkpoint queues on optimizing security screening effectiveness.,2011,96,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress96.html#LeeJ11,https://doi.org/10.1016/j.ress.2011.03.011 +Paolo Bucci,Construction of event-tree/fault-tree models from a Markov approach to dynamic system reliability.,2008,93,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress93.html#BucciKMASW08,https://doi.org/10.1016/j.ress.2008.01.008 +Rodrigo Pascual,Throughput centered prioritization of machines in transfer lines.,2011,96,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress96.html#PascualGL11,https://doi.org/10.1016/j.ress.2011.05.006 +Philipp Limbourg,Uncertainty analysis using evidence theory - confronting level-1 and level-2 approaches with data availability and computational constraints.,2010,95,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress95.html#LimbourgR10,https://doi.org/10.1016/j.ress.2010.01.005 +John Ahmet Erkoyuncu,Perspectives on trading cost and availability for corrective maintenance at the equipment type level.,2017,168,Rel. Eng. and Sys. Safety,,db/journals/ress/ress168.html#ErkoyuncuKEBRB17,https://doi.org/10.1016/j.ress.2017.05.041 +Radim Bris,New method to minimize the preventive maintenance cost of series-parallel systems.,2003,82,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress82.html#BrisCY03,https://doi.org/10.1016/S0951-8320(03)00166-2 +Wei-Chang Yeh,A simple algorithm for evaluating the k-out-of-n network reliability.,2004,83,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress83.html#Yeh04a,https://doi.org/10.1016/j.ress.2003.09.018 +Lara Hawchar,Principal component analysis and polynomial chaos expansion for time-variant reliability problems.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#HawcharSS17,https://doi.org/10.1016/j.ress.2017.06.024 +Håkon Bjorheim Abrahamsen,On the need for revising healthcare failure mode and effect analysis for assessing potential for patient harm in healthcare processes.,2016,155,Rel. Eng. and Sys. Safety,,db/journals/ress/ress155.html#AbrahamsenAH16,https://doi.org/10.1016/j.ress.2016.06.011 +Andrew Rae,Critical feature analysis of a radiotherapy machine.,2005,89,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress89.html#RaeJRFL05,https://doi.org/10.1016/j.ress.2004.08.006 +Mohammad Doostparast,A reliability-based approach to optimize preventive maintenance scheduling for coherent systems.,2014,126,Rel. Eng. and Sys. Safety,,db/journals/ress/ress126.html#DoostparastKD14,https://doi.org/10.1016/j.ress.2014.01.010 +Igor Nai Fovino,Integrating cyber attacks within fault trees.,2009,94,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress94.html#FovinoMC09,https://doi.org/10.1016/j.ress.2009.02.020 +Enrico Cagno,Using AHP in determining the prior distributions on gas pipeline failures in a robust Bayesian approach.,2000,67,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress67.html#CagnoCMR00,https://doi.org/10.1016/S0951-8320(99)00070-8 +Abdelhakim Khatab,Availability of K-out-of-N: G systems with non-identical components subject to repair priorities.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#KhatabNN09,https://doi.org/10.1016/j.ress.2008.02.017 +Axel Gandy,Decision support in early development phases - A case study from machine engineering.,2007,92,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress92.html#GandyJBJ07,https://doi.org/10.1016/j.ress.2006.06.001 +Tero Tyrväinen,Prime implicants in dynamic reliability analysis.,2016,146,Rel. Eng. and Sys. Safety,,db/journals/ress/ress146.html#Tyrvainen16,https://doi.org/10.1016/j.ress.2015.10.007 +Jon Espen Skogdalen,Combining precursor incidents investigations and QRA in oil and gas industry.,2012,101,Rel. Eng. and Sys. Safety,,db/journals/ress/ress101.html#SkogdalenV12a,https://doi.org/10.1016/j.ress.2011.12.009 +Abdelhakim Khatab,Selective maintenance optimization when quality of imperfect maintenance actions are stochastic.,2016,150,Rel. Eng. and Sys. Safety,,db/journals/ress/ress150.html#KhatabA16,https://doi.org/10.1016/j.ress.2016.01.026 +Thalles Vitelli Garcez,A risk measurement tool for an underground electricity distribution system considering the consequences and uncertainties of manhole events.,2014,124,Rel. Eng. and Sys. Safety,,db/journals/ress/ress124.html#GarcezA14,https://doi.org/10.1016/j.ress.2013.11.007 +Zhili Sun,LIF: A new Kriging based learning function and its application to structural reliability analysis.,2017,157,Rel. Eng. and Sys. Safety,,db/journals/ress/ress157.html#SunWLT17,https://doi.org/10.1016/j.ress.2016.09.003 +R. Jiang,Aging property of unimodal failure rate models.,2003,79,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress79.html#JiangJX03,https://doi.org/10.1016/S0951-8320(02)00175-8 +Anderson J. Brito,Multi-attribute risk assessment for risk ranking of natural gas pipelines.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#BritoA09,https://doi.org/10.1016/j.ress.2008.02.014 +Jonas Lundberg,Systemic resilience model.,2015,141,Rel. Eng. and Sys. Safety,,db/journals/ress/ress141.html#LundbergJ15,https://doi.org/10.1016/j.ress.2015.03.013 +Ammar M. Sarhan,Reliability equivalence of independent and non-identical components series systems.,2000,67,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress67.html#Sarhan00,https://doi.org/10.1016/S0951-8320(99)00069-1 +Maurizio Guida,Automotive reliability inference based on past data and technical knowledge.,2002,76,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress76.html#GuidaP02,https://doi.org/10.1016/S0951-8320(01)00132-6 +T. Assaf,Diagnosis based on reliability analysis using monitors and sensors.,2008,93,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress93.html#AssafD08,https://doi.org/10.1016/j.ress.2006.10.024 +Pekka Pyy,An approach for assessing human decision reliability.,2000,68,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress68.html#Pyy00,https://doi.org/10.1016/S0951-8320(99)00078-2 +Erik Hollnagel,Looking for errors of omission and commission or The Hunting of the Snark revisited.,2000,68,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress68.html#Hollnagel00,https://doi.org/10.1016/S0951-8320(00)00004-1 +Xiaohong Zhang 0003,A general modeling method for opportunistic maintenance modeling of multi-unit systems.,2015,140,Rel. Eng. and Sys. Safety,,db/journals/ress/ress140.html#ZhangZ15,https://doi.org/10.1016/j.ress.2015.03.030 +Michael H. Faber,Risk assessment for civil engineering facilities: critical overview and discussion.,2003,80,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress80.html#FaberS03,https://doi.org/10.1016/S0951-8320(03)00027-9 +Guokun Zuo,Quantitative reliability analysis of different design alternatives for steer-by-wire system.,2005,89,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress89.html#ZuoKNHN05,https://doi.org/10.1016/j.ress.2004.08.027 +Joohyun Lee,Finding minimum node separators: A Markov chain Monte Carlo method.,2018,178,Rel. Eng. and Sys. Safety,,db/journals/ress/ress178.html#LeeKLS18,https://doi.org/10.1016/j.ress.2018.06.005 +Andrea Bobbio,Sequential application of heterogeneous models for the safetyanalysis of a control system: a case study.,2003,81,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress81.html#BobbioCFGMP03,https://doi.org/10.1016/S0951-8320(03)00091-7 +Yassin Hajipour,Non-periodic inspection optimization of multi-component and k-out-of-m systems.,2016,156,Rel. Eng. and Sys. Safety,,db/journals/ress/ress156.html#HajipourT16,https://doi.org/10.1016/j.ress.2016.08.008 +Salvatore Distefano,Reliability and availability analysis of dependent-dynamic systems with DRBDs.,2009,94,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress94.html#DistefanoP09,https://doi.org/10.1016/j.ress.2009.02.004 +Thomas Bove,The effect of an advisory system on pilots' go/no-go decision during take-off.,2002,75,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress75.html#BoveA02,https://doi.org/10.1016/S0951-8320(01)00093-X +Nabil Sadou,Reliability analysis of discrete event dynamic systems with Petri nets.,2009,94,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress94.html#SadouD09,https://doi.org/10.1016/j.ress.2009.06.006 +María José Gómez,Automatic condition monitoring system for crack detection in rotating machinery.,2016,152,Rel. Eng. and Sys. Safety,,db/journals/ress/ress152.html#GomezCG16,https://doi.org/10.1016/j.ress.2016.03.013 +Gregory Levitin,Optimal component loading in 1-out-of-N cold standby systems.,2014,127,Rel. Eng. and Sys. Safety,,db/journals/ress/ress127.html#LevitinXD14,https://doi.org/10.1016/j.ress.2014.03.003 +Jacob M. Torres,Risk classification and uncertainty propagation for virtual water distribution systems.,2009,94,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress94.html#TorresBG09,https://doi.org/10.1016/j.ress.2009.01.008 +Terje Aven,On the use of uncertainty importance measures in reliability and risk analysis.,2010,95,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress95.html#AvenN10,https://doi.org/10.1016/j.ress.2009.09.002 +Masoud Rabiei,A recursive Bayesian framework for structural health management using online monitoring and periodic inspections.,2013,112,Rel. Eng. and Sys. Safety,,db/journals/ress/ress112.html#RabieiM13,https://doi.org/10.1016/j.ress.2012.11.020 +Jon T. Selvik,How to interpret safety critical failures in risk and reliability assessments.,2017,161,Rel. Eng. and Sys. Safety,,db/journals/ress/ress161.html#SelvikS17,https://doi.org/10.1016/j.ress.2017.01.003 +Ammar M. Sarhan,The Bayes procedure in exponential reliability family models using conjugate convex tent prior family.,2001,71,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress71.html#Sarhan01,https://doi.org/10.1016/S0951-8320(00)00086-7 +Rodrigo A. Neves,Reliability analysis of reinforced concrete grids with nonlinear material behavior.,2006,91,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress91.html#NevesCVL06,https://doi.org/10.1016/j.ress.2005.07.002 +Isis Didier Lins,Selection of security system design via games of imperfect information and multi-objective genetic algorithm.,2013,112,Rel. Eng. and Sys. Safety,,db/journals/ress/ress112.html#LinsRMD13,https://doi.org/10.1016/j.ress.2012.11.021 +Seth D. Guikema,Probability of infancy problems for space launch vehicles.,2005,87,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress87.html#GuikemaP05,https://doi.org/10.1016/j.ress.2004.06.001 +Yu Lu 0001,How reliable is satellite navigation for aviation? Checking availability properties with probabilistic verification.,2015,144,Rel. Eng. and Sys. Safety,,db/journals/ress/ress144.html#LuPMZJ15,https://doi.org/10.1016/j.ress.2015.07.020 +Hossein Fotouhi,Quantifying the resilience of an urban traffic-electric power coupled system.,2017,163,Rel. Eng. and Sys. Safety,,db/journals/ress/ress163.html#FotouhiMM17,https://doi.org/10.1016/j.ress.2017.01.026 +Kim Bjorkman,Solving dynamic flowgraph methodology models using binary decision diagrams.,2013,111,Rel. Eng. and Sys. Safety,,db/journals/ress/ress111.html#Bjorkman13,https://doi.org/10.1016/j.ress.2012.11.009 +Rasa Remenyte-Prescott,An enhanced component connection method for conversion of fault trees to binary decision diagrams.,2008,93,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress93.html#Remenyte-PrescottA08,https://doi.org/10.1016/j.ress.2007.09.001 +Li Yuan,An optimal replacement policy for a repairable system based on its repairman having vacations.,2011,96,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress96.html#YuanX11,https://doi.org/10.1016/j.ress.2011.02.004 +Cuong Duc Dao,Selective maintenance of multi-state systems with structural dependence.,2017,159,Rel. Eng. and Sys. Safety,,db/journals/ress/ress159.html#DaoZ17,https://doi.org/10.1016/j.ress.2016.11.013 +Maik Reder,Data-driven learning framework for associating weather conditions and wind turbine failures.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#RederYM18,https://doi.org/10.1016/j.ress.2017.10.004 +Robert W. Youngblood,Risk significance and safety significance.,2001,73,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress73.html#Youngblood01,https://doi.org/10.1016/S0951-8320(01)00056-4 +Ming-Yi You,Control-limit preventive maintenance policies for components subject to imperfect preventive maintenance and variable operational conditions.,2011,96,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress96.html#YouLM11,https://doi.org/10.1016/j.ress.2010.12.015 +Hector A. Jensen,Implementation of an adaptive meta-model for Bayesian finite element model updating in time domain.,2017,160,Rel. Eng. and Sys. Safety,,db/journals/ress/ress160.html#JensenEAP17,https://doi.org/10.1016/j.ress.2016.12.005 +Ha-Rok Bae,An approximation approach for uncertainty quantification using evidence theory.,2004,86,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress86.html#BaeGC04,https://doi.org/10.1016/j.ress.2004.01.011 +Bharatendra Rai,A modeling framework for assessing the impact of new time/mileage warranty limits on the number and cost of automotive warranty claims.,2005,88,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress88.html#RaiS05,https://doi.org/10.1016/j.ress.2004.07.006 +Céline Kermisch,Communicating about nuclear events: Some suggestions to improve INES.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#KermischL13,https://doi.org/10.1016/j.ress.2013.05.020 +Roger M. Cooke,TU Delft expert judgment data base.,2008,93,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress93.html#CookeG08,https://doi.org/10.1016/j.ress.2007.03.005 +Mark G. Stewart,Pitting corrosion and structural reliability of corroding RC structures: Experimental data and probabilistic analysis.,2008,93,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress93.html#StewartA08,https://doi.org/10.1016/j.ress.2006.12.013 +Ana Sánchez,Addressing imperfect maintenance modelling uncertainty in unavailability and cost based optimization.,2009,94,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress94.html#SanchezCMV09,https://doi.org/10.1016/j.ress.2007.03.022 +Heimir Thorisson,Multiscale identification of emergent and future conditions along corridors of transportation networks.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#ThorissonL17,https://doi.org/10.1016/j.ress.2017.06.005 +Yan-Gang Zhao,Efficient evaluation of structural reliability under imperfect knowledge about probability distributions.,2018,175,Rel. Eng. and Sys. Safety,,db/journals/ress/ress175.html#ZhaoLL18,https://doi.org/10.1016/j.ress.2018.03.010 +Chung-Chi Hsieh,Reliability-oriented multi-resource allocation in a stochastic-flow network.,2003,81,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress81.html#HsiehL03,https://doi.org/10.1016/S0951-8320(03)00082-6 +Y.-L. Cheng,On structured fault tree construction by modularizing control loops.,2000,67,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress67.html#ChengY00,https://doi.org/10.1016/S0951-8320(99)00063-0 +Carlos Guedes Soares,Editorial.,2010,95,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress95.html#Soares10,https://doi.org/10.1016/j.ress.2010.06.017 +Joeri Poppe,Numerical study of inventory management under various maintenance policies.,2017,168,Rel. Eng. and Sys. Safety,,db/journals/ress/ress168.html#PoppeBBL17,https://doi.org/10.1016/j.ress.2017.06.012 +Claudio M. Rocco Sanseverino,Network reliability assessment using a cellular automata approach.,2002,78,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress78.html#SanseverinoM02,https://doi.org/10.1016/S0951-8320(02)00174-6 +Keomany Bouvard,Condition-based dynamic maintenance operations planning and grouping. Application to commercial heavy vehicles.,2011,96,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress96.html#BouvardABC11,https://doi.org/10.1016/j.ress.2010.11.009 +Stefano Tarantola,Sensitivity analysis using contribution to sample variance plot: Application to a water hammer model.,2012,99,Rel. Eng. and Sys. Safety,,db/journals/ress/ress99.html#TarantolaKBKUV12,https://doi.org/10.1016/j.ress.2011.10.007 +Enrique F. Castillo,Sensitivity analysis in Gaussian Bayesian networks using a symbolic-numerical technique.,2003,79,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress79.html#CastilloK03,https://doi.org/10.1016/S0951-8320(02)00225-9 +Claudio Balducelli,Safeguarding information intensive critical infrastructures against novel types of emerging failures.,2007,92,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress92.html#BalducelliBLV07,https://doi.org/10.1016/j.ress.2006.08.006 +Armen Der Kiureghian,Risk assessment of satellite launch with reusable launch vehicle.,2001,74,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress74.html#Kiureghian01,https://doi.org/10.1016/S0951-8320(01)00084-9 +Ana Debón,Fault diagnosis and comparing risk for the steel coil manufacturing process using statistical models for binary data.,2012,100,Rel. Eng. and Sys. Safety,,db/journals/ress/ress100.html#DebonG12,https://doi.org/10.1016/j.ress.2011.12.022 +Tsutomu Ishigami,A simplified simulation method for selecting the most effective off-site protective action.,2004,86,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress86.html#IshigamiKUM04,https://doi.org/10.1016/j.ress.2003.12.012 +Chao-Yu Chou,On the bootstrap confidence intervals of the process incapability index Cpp.,2006,91,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress91.html#ChouLCC06,https://doi.org/10.1016/j.ress.2005.03.004 +Lukasz Cyra,Support for argument structures review and assessment.,2011,96,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress96.html#CyraG11,https://doi.org/10.1016/j.ress.2010.06.027 +Jinkyun Park,Application of a process mining technique to identifying information navigation characteristics of human operators working in a digital main control room - feasibility study.,2018,175,Rel. Eng. and Sys. Safety,,db/journals/ress/ress175.html#ParkJHKKC18,https://doi.org/10.1016/j.ress.2018.03.003 +Halil Karadeniz,An integrated reliability-based design optimization of offshore towers.,2009,94,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress94.html#KaradenizTV09,https://doi.org/10.1016/j.ress.2009.02.008 +Behrouz Hemmatian,Fire as a primary event of accident domino sequences: The case of BLEVE.,2015,139,Rel. Eng. and Sys. Safety,,db/journals/ress/ress139.html#HemmatianPC15,https://doi.org/10.1016/j.ress.2015.03.021 +S. P. Chew,Phased mission modelling of systems with maintenance-free operating periods using simulated Petri nets.,2008,93,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress93.html#ChewDA08,https://doi.org/10.1016/j.ress.2007.06.001 +Michelle C. Hamilton,Resilience analytics with disruption of preferences and lifecycle cost analysis for energy microgrids.,2016,150,Rel. Eng. and Sys. Safety,,db/journals/ress/ress150.html#HamiltonLCB16,https://doi.org/10.1016/j.ress.2016.01.005 +Alessio Datteo,On the use of AR models for SHM: A global sensitivity and uncertainty analysis framework.,2018,170,Rel. Eng. and Sys. Safety,,db/journals/ress/ress170.html#DatteoBQC18,https://doi.org/10.1016/j.ress.2017.10.017 +Xiang Li 0018,Remaining useful life estimation in prognostics using deep convolution neural networks.,2018,172,Rel. Eng. and Sys. Safety,,db/journals/ress/ress172.html#LiDS18,https://doi.org/10.1016/j.ress.2017.11.021 +Joshua S. Kaizer,Scientific computer simulation review.,2015,138,Rel. Eng. and Sys. Safety,,db/journals/ress/ress138.html#KaizerHO15,https://doi.org/10.1016/j.ress.2015.01.020 +Holger Pfeifer,Modular formal analysis of the central guardian in the Time-Triggered Architecture.,2007,92,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress92.html#PfeiferH07,https://doi.org/10.1016/j.ress.2006.10.006 +Yiqiang Wang,Early failure analysis of machining centers: a case study.,2001,72,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress72.html#WangJJ01,https://doi.org/10.1016/S0951-8320(00)00100-9 +Lijuan Shen,Statistical trend tests for resilience of power systems.,2018,177,Rel. Eng. and Sys. Safety,,db/journals/ress/ress177.html#ShenCT18,https://doi.org/10.1016/j.ress.2018.05.006 +Lirong Cui,New interval availability indexes for Markov repairable systems.,2017,168,Rel. Eng. and Sys. Safety,,db/journals/ress/ress168.html#CuiCW17,https://doi.org/10.1016/j.ress.2017.03.016 +Anatoly Lisnianski,Extended block diagram method for a multi-state system reliability assessment.,2007,92,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress92.html#Lisnianski07,https://doi.org/10.1016/j.ress.2006.09.013 +K. S. Wang,Analysis of equivalent dynamic reliability with repairs under partial information.,2002,76,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress76.html#WangPHL02,https://doi.org/10.1016/S0951-8320(01)00140-5 +C. S. Kim,Warranty and discrete preventive maintenance.,2004,84,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress84.html#KimDM04,https://doi.org/10.1016/j.ress.2003.12.001 +H. Truong Ba,Opportunistic maintenance considering non-homogenous opportunity arrivals and stochastic opportunity durations.,2017,160,Rel. Eng. and Sys. Safety,,db/journals/ress/ress160.html#BaCBZM17,https://doi.org/10.1016/j.ress.2016.12.011 +Roger Flage,A delay time model with imperfect and failure-inducing inspections.,2014,124,Rel. Eng. and Sys. Safety,,db/journals/ress/ress124.html#Flage14,https://doi.org/10.1016/j.ress.2013.11.009 +Aarnout Brombacher,Reliability in strongly innovative products* a threat or a challenge?,2005,88,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress88.html#Brombacher05,https://doi.org/10.1016/j.ress.2004.07.001 +Enrico Zio,Importance measures and genetic algorithms for designing a risk-informed optimally balanced system.,2007,92,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress92.html#ZioP07,https://doi.org/10.1016/j.ress.2006.09.011 +Guanghan Bai,Search for all d-MPs for all d levels in multistate two-terminal networks.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#BaiZT15,https://doi.org/10.1016/j.ress.2015.04.013 +Sybert H. Stroeve,Contrasting safety assessments of a runway incursion scenario: Event sequence analysis versus multi-agent dynamic risk modelling.,2013,109,Rel. Eng. and Sys. Safety,,db/journals/ress/ress109.html#StroeveBB13,https://doi.org/10.1016/j.ress.2012.07.002 +Frank P. A. Coolen,Nonparametric predictive inference for grouped lifetime data.,2003,80,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress80.html#CoolenY03,https://doi.org/10.1016/S0951-8320(03)00033-4 +Thierry Alex Mara,Variance-based sensitivity indices for models with dependent inputs.,2012,107,Rel. Eng. and Sys. Safety,,db/journals/ress/ress107.html#MaraT12,https://doi.org/10.1016/j.ress.2011.08.008 +Paolo Mason,A Bayesian analysis of component life expectancy and its implications on the inspection schedule.,2017,161,Rel. Eng. and Sys. Safety,,db/journals/ress/ress161.html#Mason17,https://doi.org/10.1016/j.ress.2017.01.006 +Márcio das Chagas Moura,"Corrigendum to ""Estimation of expected number of accidents and workforce unavailability through Bayesian population variability analysis and Markov-based model"" [Reliab. Eng. Syst. Saf. 150(2016) 136-146].",2016,154,Rel. Eng. and Sys. Safety,,db/journals/ress/ress154.html#MouraADRLVF16a,https://doi.org/10.1016/j.ress.2016.07.005 +Jeevith Hegde,A Bayesian approach to risk modeling of autonomous subsea intervention operations.,2018,175,Rel. Eng. and Sys. Safety,,db/journals/ress/ress175.html#HegdeUST18,https://doi.org/10.1016/j.ress.2018.03.019 +Daniel Busby,Hierarchical adaptive experimental design for Gaussian process emulators.,2009,94,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress94.html#Busby09,https://doi.org/10.1016/j.ress.2008.07.007 +Allan S. Benjamin,Developing probabilistic safety performance margins for unknown and underappreciated risks.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#BenjaminDE16,https://doi.org/10.1016/j.ress.2015.07.021 +Karl D. Majeske,A non-homogeneous Poisson process predictive model for automobile warranty claims.,2007,92,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress92.html#Majeske07,https://doi.org/10.1016/j.ress.2005.12.004 +Robert E. Melchers,Probabilistic modelling of structural degradation.,2008,93,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress93.html#MelchersF08,https://doi.org/10.1016/j.ress.2007.01.001 +Hagbae Kim,Reliability modeling of a hard real-time system using the path-space approach.,2000,68,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress68.html#Kim00,https://doi.org/10.1016/S0951-8320(00)00014-4 +Kan Ni,Fatigue reliability analysis under two-stage loading.,2000,68,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress68.html#NiZ00,https://doi.org/10.1016/S0951-8320(00)00009-0 +Jose Emmanuel Ramirez-Marquez,Confidence bounds for the reliability of binary capacitated two-terminal networks.,2006,91,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress91.html#Ramirez-MarquezJ06,https://doi.org/10.1016/j.ress.2005.09.009 +Luciano Burgazzi,Reliability studies of a high-power proton accelerator for accelerator-driven system applications for nuclear waste transmutation.,2007,92,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress92.html#BurgazziP07,https://doi.org/10.1016/j.ress.2005.12.008 +Kamiar Jamali,Achieving reasonable conservatism in nuclear safety analyses.,2015,137,Rel. Eng. and Sys. Safety,,db/journals/ress/ress137.html#Jamali15,https://doi.org/10.1016/j.ress.2015.01.008 +Nima Khakzad,Vulnerability analysis of process plants subject to domino effects.,2016,154,Rel. Eng. and Sys. Safety,,db/journals/ress/ress154.html#KhakzadRAK16,https://doi.org/10.1016/j.ress.2016.06.004 +Robin Cressent,Designing the database for a reliability aware Model-Based System Engineering process.,2013,111,Rel. Eng. and Sys. Safety,,db/journals/ress/ress111.html#CressentDIK13,https://doi.org/10.1016/j.ress.2012.10.014 +ümit V. çatalyürek,Development of a code-agnostic computational infrastructure for the dynamic generation of accident progression event trees.,2010,95,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress95.html#CatalyurekRMHADDK10,https://doi.org/10.1016/j.ress.2009.10.008 +Francesco Di Maio,Invariant methods for an ensemble-based sensitivity analysis of a passive containment cooling system of an AP1000 nuclear power plant.,2016,151,Rel. Eng. and Sys. Safety,,db/journals/ress/ress151.html#MaioNBZ16,https://doi.org/10.1016/j.ress.2015.10.006 +Diego J. Pedregal,State space models for condition monitoring: a case study.,2006,91,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress91.html#PedregalC06,https://doi.org/10.1016/j.ress.2004.12.001 +Mohammadreza Rajabalinejad,Bayesian Monte Carlo method.,2010,95,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress95.html#Rajabalinejad10,https://doi.org/10.1016/j.ress.2010.04.014 +Marita Hietikko,Risk estimation studies in the context of a machine control function.,2011,96,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress96.html#HietikkoMA11,https://doi.org/10.1016/j.ress.2011.02.009 +Reuben Johnston,Multivariate models using MCMCBayes for web-browser vulnerability discovery.,2018,176,Rel. Eng. and Sys. Safety,,db/journals/ress/ress176.html#JohnstonSMHE18,https://doi.org/10.1016/j.ress.2018.03.024 +Amalia Sergaki,A fuzzy knowledge based method for maintenance planning in a power system.,2002,77,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress77.html#SergakiK02,https://doi.org/10.1016/S0951-8320(02)00010-8 +Zhibin Tan,Estimation of exponential component reliability from uncertain life data in series and parallel systems.,2007,92,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress92.html#Tan07,https://doi.org/10.1016/j.ress.2005.12.010 +B. John Garrick,Confronting the risks of terrorism: making the right decisions.,2004,86,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress86.html#GarrickHKMOPPRTAZ04,https://doi.org/10.1016/j.ress.2004.04.003 +Haibo Chen,Probabilistic modeling and evaluation of collision between shuttle tanker and FPSO in tandem offloading.,2004,84,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress84.html#ChenM04,https://doi.org/10.1016/j.ress.2003.10.015 +Donald P. Gaver,Reliability growth by failure mode removal.,2014,130,Rel. Eng. and Sys. Safety,,db/journals/ress/ress130.html#GaverJ14,https://doi.org/10.1016/j.ress.2014.04.012 +Ruijun Cheng,Model-based verification method for solving the parameter uncertainty in the train control system.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#ChengZCS16,https://doi.org/10.1016/j.ress.2015.09.014 +Juan Francisco Gómez Fernández,Customer-oriented risk assessment in network utilities.,2016,147,Rel. Eng. and Sys. Safety,,db/journals/ress/ress147.html#FernandezML16,https://doi.org/10.1016/j.ress.2015.11.008 +Quan Qin,Effects of variable transformations on errors in FORM results.,2006,91,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress91.html#QinLMC06,https://doi.org/10.1016/j.ress.2004.11.018 +Y. H. J. Chang,Cognitive modeling and dynamic probabilistic simulation of operating crew response to complex system accidents. Part 4: IDAC causal model of operator problem-solving response.,2007,92,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress92.html#ChangM07c,https://doi.org/10.1016/j.ress.2006.05.011 +Yi-Ping Fang,Unsupervised spectral clustering for hierarchical modelling and criticality analysis of complex networks.,2013,116,Rel. Eng. and Sys. Safety,,db/journals/ress/ress116.html#FangZ13,https://doi.org/10.1016/j.ress.2013.02.021 +Johan Bergström,On the rationale of resilience in the domain of safety: A literature review.,2015,141,Rel. Eng. and Sys. Safety,,db/journals/ress/ress141.html#BergstromWH15,https://doi.org/10.1016/j.ress.2015.03.008 +Jean Luc Pelletier,ESREL 2002.,2004,84,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress84.html#PelletierS04,https://doi.org/10.1016/j.ress.2004.01.004 +Tahani Coolen-Maturi,Nonparametric predictive inference for combined competing risks data.,2014,126,Rel. Eng. and Sys. Safety,,db/journals/ress/ress126.html#Coolen-MaturiC14,https://doi.org/10.1016/j.ress.2014.01.007 +Jung-Sik Hong,Computation of joint reliability importance of two gate events in a fault tree.,2000,68,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress68.html#HongKL00,https://doi.org/10.1016/S0951-8320(99)00079-4 +Stefania Montani,Radyban: A tool for reliability analysis of dynamic fault trees through conversion into dynamic Bayesian networks.,2008,93,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress93.html#MontaniPBC08,https://doi.org/10.1016/j.ress.2007.03.013 +Jon C. Helton,A comparison of uncertainty and sensitivity analysis results obtained with random and Latin hypercube sampling.,2005,89,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress89.html#HeltonDJ05,https://doi.org/10.1016/j.ress.2004.09.006 +Sabine M. Spiessl,Sensitivity analysis of a final repository model with quasi-discrete behaviour using quasi-random sampling and a metamodel approach in comparison to other variance-based techniques.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#SpiesslB15,https://doi.org/10.1016/j.ress.2014.08.008 +Daochuan Ge,Quantitative analysis of dynamic fault trees using improved Sequential Binary Decision Diagrams.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#GeLYZC15,https://doi.org/10.1016/j.ress.2015.06.001 +Min Jung,Analysis of field data under two-dimensional warranty.,2007,92,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress92.html#JungB07,https://doi.org/10.1016/j.ress.2005.11.011 +Ying Chen,Failure mechanism dependence and reliability evaluation of non-repairable system.,2015,138,Rel. Eng. and Sys. Safety,,db/journals/ress/ress138.html#ChenYYK15,https://doi.org/10.1016/j.ress.2015.02.002 +Ung Jin Na,Simulation-based seismic loss estimation of seaport transportation system.,2009,94,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress94.html#NaS09,https://doi.org/10.1016/j.ress.2008.07.005 +João Batista Camargo Jr.,Quantitative analysis methodology in safety-critical microprocessor applications.,2001,74,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress74.html#CamargoCAPB01,https://doi.org/10.1016/S0951-8320(01)00061-8 +Rasa Remenyte-Prescott,An efficient phased mission reliability analysis for autonomous vehicles.,2010,95,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress95.html#Remenyte-PrescottAC10,https://doi.org/10.1016/j.ress.2009.10.002 +Cheng-Lin Wu,Determination of the optimal burn-in time and cost using an environmental stress approach: a case study in switch mode rectifier.,2002,76,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress76.html#WuS02,https://doi.org/10.1016/S0951-8320(01)00142-9 +Alexandre R. Alberti,Modelling inspection and replacement quality for a protection system.,2018,176,Rel. Eng. and Sys. Safety,,db/journals/ress/ress176.html#AlbertiCSS18,https://doi.org/10.1016/j.ress.2018.04.002 +María Nogal,Resilience of traffic networks: From perturbation to recovery via a dynamic restricted equilibrium model.,2016,156,Rel. Eng. and Sys. Safety,,db/journals/ress/ress156.html#NogalOCM16,https://doi.org/10.1016/j.ress.2016.07.020 +Ammar M. Sarhan,Reliability estimations of components from masked system life data.,2001,74,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress74.html#Sarhan01a,https://doi.org/10.1016/S0951-8320(01)00072-2 +Andrea Saltelli,Editorial.,2009,94,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress94.html#Saltelli09,https://doi.org/10.1016/j.ress.2008.10.003 +V. S. Deshpande,Application of RCM to a medium scale industry.,2002,77,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress77.html#DeshpandeM02,https://doi.org/10.1016/S0951-8320(02)00011-X +Ioannis A. Papazoglou,Semi-Markovian reliability models for systems with testable components and general test/outage *.,2000,68,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress68.html#Papazoglou00,https://doi.org/10.1016/S0951-8320(00)00003-X +Dong-Ah Lee,A systematic verification of behavioral consistency between FBD design and ANSI-C implementation using HW-CBMC.,2013,120,Rel. Eng. and Sys. Safety,,db/journals/ress/ress120.html#LeeYL13,https://doi.org/10.1016/j.ress.2013.06.006 +Elif Oguz,Failure modes and criticality analysis of the preliminary design phase of the Mars Desert Research Station considering human factors.,2018,178,Rel. Eng. and Sys. Safety,,db/journals/ress/ress178.html#OguzKC18,https://doi.org/10.1016/j.ress.2018.06.023 +Frédéric Vanderhaegen,A Benefit/Cost/Deficit (BCD) model for learning from human errors.,2011,96,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress96.html#VanderhaegenZEP11,https://doi.org/10.1016/j.ress.2011.02.002 +Hans Janssen,Monte-Carlo based uncertainty analysis: Sampling efficiency and sampling convergence.,2013,109,Rel. Eng. and Sys. Safety,,db/journals/ress/ress109.html#Janssen13,https://doi.org/10.1016/j.ress.2012.08.003 +Shuo-Jye Wu,Optimal design of degradation tests in presence of cost constraint.,2002,76,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress76.html#WuC02,https://doi.org/10.1016/S0951-8320(01)00123-5 +Om Prakash Yadav,A fuzzy logic based approach to reliability improvement estimation during product development.,2003,80,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress80.html#YadavSCG03,https://doi.org/10.1016/S0951-8320(02)00268-5 +Carl Malings,Value of information for spatially distributed systems: Application to sensor placement.,2016,154,Rel. Eng. and Sys. Safety,,db/journals/ress/ress154.html#MalingsP16,https://doi.org/10.1016/j.ress.2016.05.010 +Bram Wisse,Response to Tony O'Hagan's and Simon French' comments on 'expert judgement combination using moment methods'.,2008,93,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress93.html#WisseBQ08a,https://doi.org/10.1016/j.ress.2008.02.001 +Per Hokstad,Loss of safety assessment and the IEC 61508 standard.,2004,83,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress83.html#HokstadC04,https://doi.org/10.1016/j.ress.2003.09.017 +Rola M. Musleh,Estimation of the inverse Weibull distribution based on progressively censored data: Comparative study.,2014,131,Rel. Eng. and Sys. Safety,,db/journals/ress/ress131.html#MuslehH14,https://doi.org/10.1016/j.ress.2014.07.006 +Tao Yuan,A Bayesian approach to degradation-based burn-in optimization for display products exhibiting two-phase degradation patterns.,2016,155,Rel. Eng. and Sys. Safety,,db/journals/ress/ress155.html#YuanBZ16,https://doi.org/10.1016/j.ress.2016.04.019 +Jinkyun Park,The step complexity measure for emergency operating procedures: measure verification.,2002,77,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress77.html#ParkJHP02,https://doi.org/10.1016/S0951-8320(02)00028-5 +William T. Nutt,Evaluation of nuclear safety from the outputs of computer codes in the presence of uncertainties.,2004,83,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress83.html#NuttW04,https://doi.org/10.1016/j.ress.2003.08.008 +Terje Aven,Ignoring scenarios in risk assessments: Understanding the issue and improving current practice.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#Aven16,https://doi.org/10.1016/j.ress.2015.08.012 +Terje Aven,On the use of risk and decision analysis to support decision-making.,2003,79,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress79.html#AvenK03,https://doi.org/10.1016/S0951-8320(02)00203-X +Dong San Kim,Development and evaluation of a computer-aided system for analyzing human error in railway operations.,2010,95,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress95.html#KimBY10,https://doi.org/10.1016/j.ress.2009.08.005 +Chonlagarn Iamsumang,Monitoring and learning algorithms for dynamic hybrid Bayesian network in on-line system health management applications.,2018,178,Rel. Eng. and Sys. Safety,,db/journals/ress/ress178.html#IamsumangMM18,https://doi.org/10.1016/j.ress.2018.05.016 +James Paul Holloway,Predictive modeling of a radiative shock system.,2011,96,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress96.html#HollowayBCDDFGHMMMNPRSTZ11,https://doi.org/10.1016/j.ress.2010.08.011 +Gregory Levitin,Optimal work distribution and backup frequency for two non-identical work sharing elements.,2018,170,Rel. Eng. and Sys. Safety,,db/journals/ress/ress170.html#LevitinXD18a,https://doi.org/10.1016/j.ress.2017.10.016 +Leire Labaka,Resilience framework for critical infrastructures: An empirical study in a nuclear plant.,2015,141,Rel. Eng. and Sys. Safety,,db/journals/ress/ress141.html#LabakaHS15,https://doi.org/10.1016/j.ress.2015.03.009 +Yan-Fu Li,A multi-state model for the reliability assessment of a distributed generation system via universal generating function.,2012,106,Rel. Eng. and Sys. Safety,,db/journals/ress/ress106.html#LiZ12,https://doi.org/10.1016/j.ress.2012.04.008 +Francesco Cadini,Monte Carlo-based assessment of the safety performance of a radioactive waste repository.,2010,95,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress95.html#CadiniSGZLT10,https://doi.org/10.1016/j.ress.2010.04.002 +Linda J. Bellamy,Storybuilder - A tool for the analysis of accident reports.,2007,92,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress92.html#BellamyAGGHOMBPW07,https://doi.org/10.1016/j.ress.2006.02.010 +Jong Hyun Kim,A quantitative approach to modeling the information flow of diagnosis tasks in nuclear power plants.,2003,80,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress80.html#KimS03,https://doi.org/10.1016/S0951-8320(02)00289-2 +Bruno Sudret,Probabilistic models for the extent of damage in degrading reinforced concrete structures.,2008,93,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress93.html#Sudret08,https://doi.org/10.1016/j.ress.2006.12.019 +Robert E. Melchers,Gradient estimation for applied Monte Carlo analyses.,2002,78,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress78.html#MelchersA02,https://doi.org/10.1016/S0951-8320(02)00172-2 +Ondrej Nývlt,Dependencies in event trees analyzed by Petri nets.,2012,104,Rel. Eng. and Sys. Safety,,db/journals/ress/ress104.html#NyvltR12,https://doi.org/10.1016/j.ress.2012.03.013 +Giacomo Antonioni,Quantitative assessment of risk due to NaTech scenarios caused by floods.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#AntonioniLNGC15,https://doi.org/10.1016/j.ress.2015.05.020 +Dimitris Diamantidis,Safety of long railway tunnels.,2000,67,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress67.html#DiamantidisZW00,https://doi.org/10.1016/S0951-8320(99)00059-9 +Cesar Queral,Dynamic event trees without success criteria for full spectrum LOCA sequences applying the integrated safety assessment (ISA) methodology.,2018,171,Rel. Eng. and Sys. Safety,,db/journals/ress/ress171.html#QueralGPRSGMMHI18,https://doi.org/10.1016/j.ress.2017.11.004 +Kevin A. Crookston,Statistical reliability analyses of two wood plastic composite extrusion processes.,2011,96,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress96.html#CrookstonYHG11,https://doi.org/10.1016/j.ress.2010.08.005 +Shuo-Jye Wu,Planning two or more level constant-stress accelerated life tests with competing risks.,2017,158,Rel. Eng. and Sys. Safety,,db/journals/ress/ress158.html#WuH17,https://doi.org/10.1016/j.ress.2016.09.007 +Bharatendra Rai,Robust design of an interior hard trim to improve occupant safety in a vehicle crash.,2005,89,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress89.html#RaiSA05,https://doi.org/10.1016/j.ress.2004.09.003 +Yuri Orechwa,Comments on 'Evaluation of nuclear safety from the outputs of computer codes in the presence of uncertainties' by W.T. Nutt and G.B. Wallis.,2005,87,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress87.html#Orechwa05,https://doi.org/10.1016/j.ress.2004.04.002 +Gregory Levitin,Optimal defense with variable number of overarching and individual protections.,2014,123,Rel. Eng. and Sys. Safety,,db/journals/ress/ress123.html#LevitinHD14,https://doi.org/10.1016/j.ress.2013.11.001 +Jinkyun Park,The requisite characteristics for diagnosis procedures based on the empirical findings of the operators' behavior under emergency situations.,2003,81,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress81.html#ParkJ03,https://doi.org/10.1016/S0951-8320(03)00098-X +Gregory Levitin,Preventive strike vs. false targets and protection in defense strategy.,2011,96,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress96.html#LevitinH11,https://doi.org/10.1016/j.ress.2011.03.008 +Abdullah A. Alrabghi,A novel approach for modelling complex maintenance systems using discrete event simulation.,2016,154,Rel. Eng. and Sys. Safety,,db/journals/ress/ress154.html#AlrabghiT16,https://doi.org/10.1016/j.ress.2016.06.003 +Timothy C. Wallstrom,Quantification of margins and uncertainties: A probabilistic framework.,2011,96,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress96.html#Wallstrom11,https://doi.org/10.1016/j.ress.2011.01.001 +Tu Duong Le Duy,Probabilistic Safety Assessment of twin-unit nuclear sites: Methodological elements.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#DuyVS16,https://doi.org/10.1016/j.ress.2015.07.014 +Gordon J. Savage,Reliability of mechanisms with periodic random modal frequencies using an extreme value-based approach.,2016,150,Rel. Eng. and Sys. Safety,,db/journals/ress/ress150.html#SavageZSP16,https://doi.org/10.1016/j.ress.2016.01.009 +Mukshed Ahammed,Gradient and parameter sensitivity estimation for systems evaluated using Monte Carlo analysis.,2006,91,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress91.html#AhammedM06,https://doi.org/10.1016/j.ress.2005.04.005 +Wenbin Wang,An inspection model based on a three-stage failure process.,2011,96,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress96.html#Wang11,https://doi.org/10.1016/j.ress.2011.03.003 +Richard Wilson,Making life safer with a risk analysis approach.,2005,87,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress87.html#Wilson05,https://doi.org/10.1016/j.ress.2004.05.004 +Brian J. Williams,Batch sequential design to achieve predictive maturity with calibrated computer models.,2011,96,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress96.html#WilliamsLMM11,https://doi.org/10.1016/j.ress.2010.04.017 +Sanjay S. Vakil,Approaches to mitigating complexity-driven issues in commercial autoflight systems.,2002,75,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress75.html#VakilH02,https://doi.org/10.1016/S0951-8320(01)00090-4 +Liudong Xing,Exact combinatorial reliability analysis of dynamic systems with sequence-dependent failures.,2011,96,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress96.html#XingSD11,https://doi.org/10.1016/j.ress.2011.05.007 +François M. Hemez,The dangers of sparse sampling for the quantification of margin and uncertainty.,2011,96,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress96.html#HemezA11,https://doi.org/10.1016/j.ress.2011.02.015 +G. Arulmozhi,Exact equation and an algorithm for reliability evaluation of K-out-of-N: G system.,2002,78,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress78.html#Arulmozhi02,https://doi.org/10.1016/S0951-8320(02)00046-7 +Yiliu Liu,Optimal staggered testing strategies for heterogeneously redundant safety systems.,2014,126,Rel. Eng. and Sys. Safety,,db/journals/ress/ress126.html#Liu14,https://doi.org/10.1016/j.ress.2014.01.013 +Marius Vileiniskis,Quantitative risk prognostics framework based on Petri Net and Bow-Tie models.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#VileiniskisR17,https://doi.org/10.1016/j.ress.2017.03.026 +Ammar M. Sarhan,Reliability equivalence factors of a parallel system.,2005,87,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress87.html#Sarhan05,https://doi.org/10.1016/j.ress.2004.07.008 +Kjell Hausken,Special versus general protection and attack of parallel and series components.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#Hausken17,https://doi.org/10.1016/j.ress.2017.03.027 +Raffaela Calabria,Inference and test in modeling the failure/repair process of repairable mechanical equipments.,2000,67,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress67.html#CalabriaP00,https://doi.org/10.1016/S0951-8320(99)00045-9 +Francesco Di Maio,A dynamic probabilistic safety margin characterization approach in support of Integrated Deterministic and Probabilistic Safety Analysis.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#MaioRZ16,https://doi.org/10.1016/j.ress.2015.08.016 +Yeelyong Noh,Risk-based determination of design pressure of LNG fuel storage tanks based on dynamic process simulation combined with Monte Carlo method.,2014,129,Rel. Eng. and Sys. Safety,,db/journals/ress/ress129.html#NohCSC14,https://doi.org/10.1016/j.ress.2014.04.018 +Tristan Senga Kiessé,Discrete non-parametric kernel estimation for global sensitivity analysis.,2016,146,Rel. Eng. and Sys. Safety,,db/journals/ress/ress146.html#KiesseV16,https://doi.org/10.1016/j.ress.2015.10.010 +Daniya Zamalieva,A probabilistic model for online scenario labeling in dynamic event tree generation.,2013,120,Rel. Eng. and Sys. Safety,,db/journals/ress/ress120.html#ZamalievaYA13a,https://doi.org/10.1016/j.ress.2013.02.028 +Behzad Karimi,Bi-objective optimization of a job shop with two types of failures for the operating machines that use automated guided vehicles.,2018,175,Rel. Eng. and Sys. Safety,,db/journals/ress/ress175.html#KarimiNHN18,https://doi.org/10.1016/j.ress.2018.01.018 +Maxim Finkelstein,On some comparisons of life* for reliability analysis.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#Finkelstein13a,https://doi.org/10.1016/j.ress.2013.06.043 +Yangping Zhou,Application of genetic algorithms to fault diagnosis in nuclear power plants.,2000,67,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress67.html#ZhouZW00,https://doi.org/10.1016/S0951-8320(99)00061-7 +Chan Sik Jung,Investigating the relationship between ammunition stockpile information and subsequent performance.,2010,95,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress95.html#JungS10,https://doi.org/10.1016/j.ress.2009.11.013 +Sharareh Taghipour,Trend analysis of the power law process using Expectation-Maximization algorithm for data censored by inspection intervals.,2011,96,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress96.html#TaghipourB11,https://doi.org/10.1016/j.ress.2011.03.018 +Tero Tyrväinen,Risk importance measures in the dynamic flowgraph methodology.,2013,118,Rel. Eng. and Sys. Safety,,db/journals/ress/ress118.html#Tyrvainen13,https://doi.org/10.1016/j.ress.2013.04.013 +Gregory Levitin,Optimal mission abort policy for systems in a random environment with variable shock rate.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#LevitinF18,https://doi.org/10.1016/j.ress.2017.07.017 +B. Gaspar,Adaptive surrogate model with active refinement combining Kriging and a trust region method.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#GasparTS17,https://doi.org/10.1016/j.ress.2017.03.035 +Paulo Victor R. de Carvalho,The use of Functional Resonance Analysis Method (FRAM) in a mid-air collision to understand some characteristics of the air traffic management system resilience.,2011,96,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress96.html#Carvalho11,https://doi.org/10.1016/j.ress.2011.05.009 +Roger Flage,On treatment of uncertainty in system planning.,2009,94,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress94.html#FlageA09,https://doi.org/10.1016/j.ress.2008.09.011 +Alberto Decò,Risk-informed optimal routing of ships considering different damage scenarios and operational conditions.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#DecoF13,https://doi.org/10.1016/j.ress.2013.05.017 +H. Qin,Bayesian inferences of generation and growth of corrosion defects on energy pipelines based on imperfect inspection data.,2015,144,Rel. Eng. and Sys. Safety,,db/journals/ress/ress144.html#QinZZ15,https://doi.org/10.1016/j.ress.2015.08.007 +Jussi K. Vaurio,Ideas and developments in importance measures and fault-tree techniques for reliability and risk analysis.,2010,95,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress95.html#Vaurio10,https://doi.org/10.1016/j.ress.2009.08.006 +Vicki M. Bier,On the state of the art: risk communication to decision-makers.,2001,71,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress71.html#Bier01a,https://doi.org/10.1016/S0951-8320(00)00091-0 +Philip A. Scarf,On reliability criteria and the implied cost of failure for a maintained component.,2005,89,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress89.html#ScarfDA05,https://doi.org/10.1016/j.ress.2004.08.019 +Steven A. Eide,Historical perspective on failure rates for US commercial reactor components.,2003,80,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress80.html#Eide03,https://doi.org/10.1016/S0951-8320(03)00028-0 +Haitao Guo,Reliability analysis for wind turbines with incomplete failure data collected from after the date of initial installation.,2009,94,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress94.html#GuoWTX09,https://doi.org/10.1016/j.ress.2008.12.004 +Amos Necci,Accident scenarios triggered by lightning strike on atmospheric storage tanks.,2014,127,Rel. Eng. and Sys. Safety,,db/journals/ress/ress127.html#NecciALC14,https://doi.org/10.1016/j.ress.2014.02.005 +E. Deloux,Predictive maintenance policy for a gradually deteriorating system subject to stress.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#DelouxCB09,https://doi.org/10.1016/j.ress.2008.04.002 +Sebastián Martorell,Editorial.,2010,95,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress95.html#Martorell10,https://doi.org/10.1016/j.ress.2010.06.023 +Michael Lipaczewski,Comparison of modeling formalisms for Safety Analyses: SAML and AltaRica.,2015,140,Rel. Eng. and Sys. Safety,,db/journals/ress/ress140.html#LipaczewskiOPRS15,https://doi.org/10.1016/j.ress.2015.03.038 +Rajiv Kumar Sharma,Performance modeling in critical engineering systems using RAM analysis.,2008,93,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress93.html#SharmaK08,https://doi.org/10.1016/j.ress.2007.03.039 +Enrico Zio,A Monte Carlo simulation approach to the availability assessment of multi-state systems with operational dependencies.,2007,92,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress92.html#ZioMP07,https://doi.org/10.1016/j.ress.2006.04.024 +Miroslav Kvassay,Importance analysis of multi-state systems based on tools of logical differential calculus.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#KvassayZL17,https://doi.org/10.1016/j.ress.2017.03.021 +Xiaoyang Li,Bayesian accelerated acceptance sampling plans for a lognormal lifetime distribution under Type-I censoring.,2018,171,Rel. Eng. and Sys. Safety,,db/journals/ress/ress171.html#LiCSLKL18,https://doi.org/10.1016/j.ress.2017.11.012 +Lekha M. Chowdhury,Radiological risk analysis of particle accelerators.,2008,93,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress93.html#ChowdhuryS08,https://doi.org/10.1016/j.ress.2007.06.008 +Xiaomo Jiang,Bayesian risk-based decision method for model validation under uncertainty.,2007,92,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress92.html#JiangM07,https://doi.org/10.1016/j.ress.2006.03.006 +Wang-Sheng Liu,Reliability based design optimization with approximate failure probability function in partitioned design space.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#LiuC17,https://doi.org/10.1016/j.ress.2017.07.007 +Chonggang Xu,A general first-order global sensitivity analysis method.,2008,93,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress93.html#XuG08,https://doi.org/10.1016/j.ress.2007.04.001 +Li Yang 0004,Hybrid preventive maintenance of competing failures under random environment.,2018,174,Rel. Eng. and Sys. Safety,,db/journals/ress/ress174.html#YangZPM18,https://doi.org/10.1016/j.ress.2018.02.017 +Hindolo George-Williams,A hybrid load flow and event driven simulation approach to multi-state system reliability evaluation.,2016,152,Rel. Eng. and Sys. Safety,,db/journals/ress/ress152.html#George-Williams16,https://doi.org/10.1016/j.ress.2016.04.002 +Markus R. Dann,Automated matching of pipeline corrosion features from in-line inspection data.,2017,162,Rel. Eng. and Sys. Safety,,db/journals/ress/ress162.html#DannD17,https://doi.org/10.1016/j.ress.2017.01.008 +Gang Mei,Bimodal renewal processes models of highway vehicle loads.,2004,83,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress83.html#MeiQL04,https://doi.org/10.1016/j.ress.2003.10.002 +Vasiliy V. Krivtsov,Practical extensions to NHPP application in repairable system reliability analysis.,2007,92,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress92.html#Krivtsov07a,https://doi.org/10.1016/j.ress.2006.05.002 +Xiaoyan Su,Inclusion of task dependence in human reliability analysis.,2014,128,Rel. Eng. and Sys. Safety,,db/journals/ress/ress128.html#SuMXD14,https://doi.org/10.1016/j.ress.2014.04.007 +Khac Tuan Huynh,Assessment of diagnostic and prognostic condition indices for efficient and robust maintenance decision-making of systems subject to stress corrosion cracking.,2017,159,Rel. Eng. and Sys. Safety,,db/journals/ress/ress159.html#HuynhGB17,https://doi.org/10.1016/j.ress.2016.11.022 +P. J. García Nieto,Hybrid PSO-SVM-based method for forecasting of the remaining useful life for aircraft engines and evaluation of its reliability.,2015,138,Rel. Eng. and Sys. Safety,,db/journals/ress/ress138.html#NietoGLJ15,https://doi.org/10.1016/j.ress.2015.02.001 +Eirik Bjorheim Abrahamsen,On the consistency of risk acceptance criteria with normative theories for decision-making.,2008,93,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress93.html#AbrahamsenA08,https://doi.org/10.1016/j.ress.2008.03.021 +Shun-Peng Zhu,Probabilistic Physics of Failure-based framework for fatigue life prediction of aircraft gas turbine discs under uncertainty.,2016,146,Rel. Eng. and Sys. Safety,,db/journals/ress/ress146.html#ZhuHPWM16,https://doi.org/10.1016/j.ress.2015.10.002 +Víctor Leiva,A methodology based on the Birnbaum-Saunders distribution for reliability analysis applied to nano-materials.,2017,157,Rel. Eng. and Sys. Safety,,db/journals/ress/ress157.html#LeivaRSV17,https://doi.org/10.1016/j.ress.2016.08.024 +David R. Godoy,Critical spare parts ordering decisions using conditional reliability and stochastic lead time.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#GodoyPK13,https://doi.org/10.1016/j.ress.2013.05.026 +Mary Ann Lundteigen,Integrating RAMS engineering and management with the safety life cycle of IEC 61508.,2009,94,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress94.html#LundteigenRU09,https://doi.org/10.1016/j.ress.2009.06.005 +Jian-Xun Zhang,Lifetime prognostics for deteriorating systems with time-varying random jumps.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#ZhangHHSLZ17,https://doi.org/10.1016/j.ress.2017.05.047 +Di Wu,Object defense with preventive strike and false targets.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#WuXP18,https://doi.org/10.1016/j.ress.2017.08.006 +Dong-Han Ham,Experimental study on the effects of visualized functionally abstracted information on process control tasks.,2008,93,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress93.html#HamYH08,https://doi.org/10.1016/j.ress.2006.12.003 +So Young Sohn,Random effects model for the reliability management of modules of a fighter aircraft.,2006,91,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress91.html#SohnYC06,https://doi.org/10.1016/j.ress.2005.02.008 +Jannie Jessen Nielsen,On risk-based operation and maintenance of offshore wind turbine components.,2011,96,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress96.html#NielsenS11,https://doi.org/10.1016/j.ress.2010.07.007 +Sharif Rahman,A surrogate method for density-based global sensitivity analysis.,2016,155,Rel. Eng. and Sys. Safety,,db/journals/ress/ress155.html#Rahman16,https://doi.org/10.1016/j.ress.2016.07.002 +Gregory Levitin,Optimal backup frequency in system with random repair time.,2015,144,Rel. Eng. and Sys. Safety,,db/journals/ress/ress144.html#LevitinXD15a,https://doi.org/10.1016/j.ress.2015.06.014 +Jui-Sheng Chou,Reliability-based decision making for selection of ready-mix concrete supply using stochastic superiority and inferiority ranking method.,2015,137,Rel. Eng. and Sys. Safety,,db/journals/ress/ress137.html#ChouO15,https://doi.org/10.1016/j.ress.2014.12.004 +Charles D. Nicholson,Flow-based vulnerability measures for network component importance: Experimentation with preparedness planning.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#NicholsonBR16,https://doi.org/10.1016/j.ress.2015.08.014 +Shey-Huei Sheu,An extended optimal replacement model for a deteriorating system with inspections.,2015,139,Rel. Eng. and Sys. Safety,,db/journals/ress/ress139.html#SheuTWZ15,https://doi.org/10.1016/j.ress.2015.01.014 +Claudio Rocco,Fast Monte Carlo reliability evaluation using support vector machine.,2002,76,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress76.html#RoccoM02,https://doi.org/10.1016/S0951-8320(02)00015-7 +Hongtao Zeng,Five and four-parameter lifetime distributions for bathtub-shaped failure rate using Perks mortality equation.,2016,152,Rel. Eng. and Sys. Safety,,db/journals/ress/ress152.html#ZengLC16,https://doi.org/10.1016/j.ress.2016.03.014 +Adriaan Van Horenbeek,Quantifying the added value of an imperfectly performing condition monitoring system - Application to a wind turbine gearbox.,2013,111,Rel. Eng. and Sys. Safety,,db/journals/ress/ress111.html#HorenbeekODP13,https://doi.org/10.1016/j.ress.2012.10.010 +Richard R. Sherry,Pilot application of risk informed safety margin characterization to a total loss of feedwater event.,2013,117,Rel. Eng. and Sys. Safety,,db/journals/ress/ress117.html#SherryGH13,https://doi.org/10.1016/j.ress.2013.03.018 +J. D. Andrews,A branching search approach to safety system design optimisation.,2005,87,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress87.html#AndrewsB05,https://doi.org/10.1016/j.ress.2004.03.026 +Jana Fruth,Sequential designs for sensitivity analysis of functional inputs in computer experiments.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#FruthRK15,https://doi.org/10.1016/j.ress.2014.07.018 +M. B. Whiteside,Stochastic failure modelling of unidirectional composite ply failure.,2012,108,Rel. Eng. and Sys. Safety,,db/journals/ress/ress108.html#WhitesidePR12,https://doi.org/10.1016/j.ress.2012.05.006 +Jose Emmanuel Ramirez-Marquez,Optimal network protection against diverse interdictor strategies.,2011,96,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress96.html#Ramirez-MarquezSL11,https://doi.org/10.1016/j.ress.2010.10.003 +Benjamin Lamoureux,A combined sensitivity analysis and kriging surrogate modeling for early validation of health indicators.,2014,130,Rel. Eng. and Sys. Safety,,db/journals/ress/ress130.html#LamoureuxMM14,https://doi.org/10.1016/j.ress.2014.03.007 +John Stoop,Public safety investigations - A new evolutionary step in safety enhancement?,2009,94,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress94.html#StoopR09,https://doi.org/10.1016/j.ress.2009.02.016 +Gregory Levitin,Optimal connecting elements allocation in linear consecutively-connected systems with phased mission and common cause failures.,2014,130,Rel. Eng. and Sys. Safety,,db/journals/ress/ress130.html#LevitinXY14,https://doi.org/10.1016/j.ress.2014.04.028 +Yifeng Zhou,Process monitoring based on classification tree and discriminant analysis.,2006,91,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress91.html#ZhouHM06,https://doi.org/10.1016/j.ress.2005.03.019 +Mary Ann Lundteigen,Spurious activation of safety instrumented systems in the oil and gas industry: Basic concepts and formulas.,2008,93,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress93.html#LundteigenR08,https://doi.org/10.1016/j.ress.2007.07.004 +Maxim Finkelstein,Imperfect repair and lifesaving in heterogeneous populations.,2007,92,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress92.html#Finkelstein07b,https://doi.org/10.1016/j.ress.2006.09.018 +E. E. Hurdle,Fault diagnostics of dynamic system operation using a fault tree based method.,2009,94,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress94.html#HurdleBA09,https://doi.org/10.1016/j.ress.2009.02.013 +Yu-chang Mo,Mission reliability analysis of fault-tolerant multiple-phased systems.,2008,93,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress93.html#MoSY08,https://doi.org/10.1016/j.ress.2007.05.001 +N. A. Eisenberg,Importance measures for nuclear waste repositories.,2000,70,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress70.html#EisenbergS00,https://doi.org/10.1016/S0951-8320(00)00050-8 +S. Hossein Mohammadian,Quantitative accelerated degradation testing: Practical approaches.,2010,95,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress95.html#MohammadianAR10,https://doi.org/10.1016/j.ress.2009.09.009 +Rakesh Sehgal,Fault location of tribo-mechanical systems - a graph theory and matrix approach.,2000,70,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress70.html#SehgalGA00a,https://doi.org/10.1016/S0951-8320(00)00021-1 +Hiba Baroud,A Bayesian kernel approach to modeling resilience-based network component importance.,2018,170,Rel. Eng. and Sys. Safety,,db/journals/ress/ress170.html#BaroudB18,https://doi.org/10.1016/j.ress.2017.09.022 +Allison C. Reilly,Using data envelopment analysis to evaluate the performance of post-hurricane electric power restoration activities.,2016,152,Rel. Eng. and Sys. Safety,,db/journals/ress/ress152.html#ReillyDNCG16,https://doi.org/10.1016/j.ress.2016.03.007 +Attila Guba,Statistical aspects of best estimate method - I.,2003,80,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress80.html#GubaMP03,https://doi.org/10.1016/S0951-8320(03)00022-X +Angela Adamyan,Analysis of sequential failures for assessment of reliability and safety of manufacturing systems.,2002,76,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress76.html#AdamyanH02,https://doi.org/10.1016/S0951-8320(02)00013-3 +Lennart Sjöberg,Political decisions and public risk perception.,2001,72,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress72.html#Sjoberg01,https://doi.org/10.1016/S0951-8320(01)00012-6 +Chang-Ju Lee,Application of Bayesian network to the probabilistic risk assessment of nuclear waste disposal.,2006,91,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress91.html#LeeL06,https://doi.org/10.1016/j.ress.2005.03.011 +Gregory Levitin,False targets vs. redundancy in homogeneous parallel systems.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#LevitinH09,https://doi.org/10.1016/j.ress.2008.06.006 +Zahra Mohaghegh,Incorporating organizational factors into Probabilistic Risk Assessment (PRA) of complex socio-technical systems: A hybrid technique formalization.,2009,94,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress94.html#MohagheghKM09,https://doi.org/10.1016/j.ress.2008.11.006 +Gabriele Landucci,Release of hazardous substances in flood events: Damage model for horizontal cylindrical vessels.,2014,132,Rel. Eng. and Sys. Safety,,db/journals/ress/ress132.html#LanducciNATC14,https://doi.org/10.1016/j.ress.2014.07.016 +Majid Forghani-elahabad,An efficient algorithm for the multi-state two separate minimal paths reliability problem with budget constraint.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#Forghani-elahabad15,https://doi.org/10.1016/j.ress.2015.06.012 +Ludivine Pascucci-Cahen,Nuclear refugees after large radioactive releases.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#Pascucci-CahenG16,https://doi.org/10.1016/j.ress.2015.06.017 +Jason L. Cook,Two-terminal reliability analyses for a mobile ad hoc wireless network.,2007,92,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress92.html#CookR07,https://doi.org/10.1016/j.ress.2006.04.021 +Nassim Alileche,Thresholds for domino effects and safety distances in the process industry: A review of approaches and regulations.,2015,143,Rel. Eng. and Sys. Safety,,db/journals/ress/ress143.html#AlilecheCRE15,https://doi.org/10.1016/j.ress.2015.04.007 +Guozheng Song,Dynamic occupational risk model for offshore operations in harsh environments.,2016,150,Rel. Eng. and Sys. Safety,,db/journals/ress/ress150.html#SongKWLYL16,https://doi.org/10.1016/j.ress.2016.01.021 +T. V. Santhosh,An approach for reliability prediction of instrumentation and control cables by artificial neural networks and Weibull theory for probabilistic safety assessment of NPPs.,2018,170,Rel. Eng. and Sys. Safety,,db/journals/ress/ress170.html#SanthoshGGF18,https://doi.org/10.1016/j.ress.2017.10.010 +Francesca M. Favarò,Toward risk assessment 2.0: Safety supervisory control and model-based hazard monitoring for risk-informed safety interventions.,2016,152,Rel. Eng. and Sys. Safety,,db/journals/ress/ress152.html#FavaroS16,https://doi.org/10.1016/j.ress.2016.03.022 +Z. Zhang,First and second order approximate reliability analysis methods using evidence theory.,2015,137,Rel. Eng. and Sys. Safety,,db/journals/ress/ress137.html#ZhangJWH15,https://doi.org/10.1016/j.ress.2014.12.011 +Sanjay Kumar Chaturvedi,Reliability evaluation of time evolving Delay Tolerant Networks based on Sum-of-Disjoint products.,2018,171,Rel. Eng. and Sys. Safety,,db/journals/ress/ress171.html#ChaturvediKS18,https://doi.org/10.1016/j.ress.2017.11.007 +Zupei Shen,A new quantification algorithm for the GO methodology.,2000,67,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress67.html#ShenGH00,https://doi.org/10.1016/S0951-8320(99)00071-X +Ditte Caroline Raben,Learn from what goes right: A demonstration of a new systematic method for identification of leading indicators in healthcare.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#RabenBVMH18,https://doi.org/10.1016/j.ress.2017.08.019 +Rob P. Rechard,Site characterization of the Yucca Mountain disposal system for spent nuclear fuel and high-level radioactive waste.,2014,122,Rel. Eng. and Sys. Safety,,db/journals/ress/ress122.html#RechardLTF14,https://doi.org/10.1016/j.ress.2013.06.020 +Daniel E. Salazar Aponte,Solving advanced multi-objective robust designs by means of multiple objective evolutionary algorithms (MOEA): A reliability application.,2007,92,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress92.html#AponteS07,https://doi.org/10.1016/j.ress.2006.03.003 +Pierre David,Reliability study of complex physical systems using SysML.,2010,95,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress95.html#DavidIK10,https://doi.org/10.1016/j.ress.2009.11.015 +Kais Zaman,A probabilistic approach for representation of interval uncertainty.,2011,96,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress96.html#ZamanRMM11,https://doi.org/10.1016/j.ress.2010.07.012 +Wei Li,New validation metrics for models with multiple correlated responses.,2014,127,Rel. Eng. and Sys. Safety,,db/journals/ress/ress127.html#LiCJLL14,https://doi.org/10.1016/j.ress.2014.02.002 +Donovan L. Mathias,Engineering Risk Assessment of a dynamic space propulsion system benchmark problem.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#MathiasMG16,https://doi.org/10.1016/j.ress.2015.07.003 +Suleyman Kondakci,Analysis of information security reliability: A tutorial.,2015,133,Rel. Eng. and Sys. Safety,,db/journals/ress/ress133.html#Kondakci15,https://doi.org/10.1016/j.ress.2014.09.021 +Narapan Boonthum,A systematic formulation for HAZOP analysis based on structural model.,2014,121,Rel. Eng. and Sys. Safety,,db/journals/ress/ress121.html#BoonthumMS14,https://doi.org/10.1016/j.ress.2013.08.008 +Fumio Ohi,Lattice set theoretic treatment of multi-state coherent systems.,2013,116,Rel. Eng. and Sys. Safety,,db/journals/ress/ress116.html#Ohi13,https://doi.org/10.1016/j.ress.2013.02.012 +Riccardo Patriarca,"Corrigendum to ""Defining the Functional Resonance Analysis space: combining Abstraction Hierarchy and FRAM"" [Reliability Engineering and System Safety 165 (2017) 34-46].",2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#PatriarcaBG17a,https://doi.org/10.1016/j.ress.2017.08.015 +Behzad Zare Moayedi,A game theoretic framework for evaluation of the impacts of hackers diversity on security measures.,2012,99,Rel. Eng. and Sys. Safety,,db/journals/ress/ress99.html#MoayediA12,https://doi.org/10.1016/j.ress.2011.11.001 +Michael Jones-Lee,ALARP - What does it really mean?,2011,96,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress96.html#Jones-LeeA11,https://doi.org/10.1016/j.ress.2011.02.006 +Vicente Carot,Criticality and sensitivity analysis of the components of a system.,2000,68,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress68.html#CarotS00,https://doi.org/10.1016/S0951-8320(00)00011-9 +Xiaopeng Luo,Non-parametric kernel estimation for the ANOVA decomposition and sensitivity analysis.,2014,130,Rel. Eng. and Sys. Safety,,db/journals/ress/ress130.html#LuoLX14,https://doi.org/10.1016/j.ress.2014.06.002 +W. Zhou,Sensitivity of system reliability of corroding pipelines to modeling of stochastic growth of corrosion defects.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#ZhouXH17,https://doi.org/10.1016/j.ress.2017.06.025 +Nan Zhang 0017,Optimal imperfect maintenance cost analysis of a two-component system with failure interactions.,2018,177,Rel. Eng. and Sys. Safety,,db/journals/ress/ress177.html#ZhangFB18,https://doi.org/10.1016/j.ress.2018.04.019 +Qian-Qian Zhao,Determining the inspection intervals for one-shot systems with support equipment.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#ZhaoY18,https://doi.org/10.1016/j.ress.2017.08.007 +Magnos Martinello,Web service availability - impact of error recovery and traffic model.,2005,89,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress89.html#MartinelloKK05,https://doi.org/10.1016/j.ress.2004.08.003 +Lizhi Wang,A Bayesian reliability evaluation method with integrated accelerated degradation testing and field information.,2013,112,Rel. Eng. and Sys. Safety,,db/journals/ress/ress112.html#WangPLJ13,https://doi.org/10.1016/j.ress.2012.09.015 +Zhejun Gong,Estimation of mixed Weibull distribution parameters using the SCEM-UA algorithm: Application and comparison with MLE in automotive reliability analysis.,2006,91,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress91.html#Gong06,https://doi.org/10.1016/j.ress.2005.09.007 +Wenrui Hao,Uncertainty importance measure for models with correlated normal variables.,2013,112,Rel. Eng. and Sys. Safety,,db/journals/ress/ress112.html#HaoLW13,https://doi.org/10.1016/j.ress.2012.11.023 +Shey-Huei Sheu,Optimum policies for a system with general imperfect maintenance.,2006,91,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress91.html#SheuLL06,https://doi.org/10.1016/j.ress.2005.01.015 +Rafael Pérez-Ocón,A multiple system governed by a quasi-birth-and-death process.,2004,84,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress84.html#Perez-OconM04,https://doi.org/10.1016/j.ress.2003.10.003 +Jacek Malinowski,Non-binary decomposition trees - a method of reliability computation for systems with known minimal paths/cuts.,2004,84,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress84.html#Malinowski04,https://doi.org/10.1016/j.ress.2003.11.004 +Terje Aven,Use of decision criteria based on expected values to support decision-making in a production assurance and safety setting.,2009,94,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress94.html#AvenF09,https://doi.org/10.1016/j.ress.2009.02.007 +X. Merle,Bayesian quantification of thermodynamic uncertainties in dense gas flows.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#MerleC15,https://doi.org/10.1016/j.ress.2014.08.006 +Luis Horacio Martínez-Martínez,Woody debris trapping phenomena evaluation in bridge piers: A Bayesian perspective.,2017,161,Rel. Eng. and Sys. Safety,,db/journals/ress/ress161.html#Martinez-Martinez17,https://doi.org/10.1016/j.ress.2017.01.005 +Erik Vanem,Analysing the risk of LNG carrier operations.,2008,93,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress93.html#VanemAOC08,https://doi.org/10.1016/j.ress.2007.07.007 +Wen-mei Gai,Multi-objective evacuation routing optimization for toxic cloud releases.,2017,159,Rel. Eng. and Sys. Safety,,db/journals/ress/ress159.html#GaiDJLD17,https://doi.org/10.1016/j.ress.2016.10.021 +Anthony J. Erjavac,Evaluation of preconditions affecting symptomatic human error in general aviation and air carrier aviation accidents.,2018,178,Rel. Eng. and Sys. Safety,,db/journals/ress/ress178.html#ErjavacIF18,https://doi.org/10.1016/j.ress.2018.05.021 +María Dolores Berrade,A study of postponed replacement in a delay time model.,2017,168,Rel. Eng. and Sys. Safety,,db/journals/ress/ress168.html#BerradeSC17,https://doi.org/10.1016/j.ress.2017.04.006 +Jacco M. Hoekstra,Designing for safety: the 'free flight' air traffic management concept.,2002,75,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress75.html#HoekstraGR02,https://doi.org/10.1016/S0951-8320(01)00096-5 +Marko Cepin,Evaluation of allowed outage time considering a set of plant configurations.,2002,78,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress78.html#CepinM02a,https://doi.org/10.1016/S0951-8320(02)00168-0 +Maïder Estecahandy,Some acceleration methods for Monte Carlo simulation of rare events.,2015,144,Rel. Eng. and Sys. Safety,,db/journals/ress/ress144.html#EstecahandyBCP15,https://doi.org/10.1016/j.ress.2015.07.010 +Baoliang Liu,A performance measure for Markov system with stochastic supply patterns and stochastic demand patterns.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#LiuCWS13,https://doi.org/10.1016/j.ress.2013.07.001 +Giuseppe Curcurù,A predictive maintenance policy with imperfect monitoring.,2010,95,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress95.html#CurcuruGL10,https://doi.org/10.1016/j.ress.2010.04.010 +Jose Emmanuel Ramirez-Marquez,A Monte-Carlo simulation approach for approximating multi-state two-terminal reliability.,2005,87,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress87.html#Ramirez-MarquezC05,https://doi.org/10.1016/j.ress.2004.05.002 +Sergei S. Kucherenko,The identification of model effective dimensions using global sensitivity analysis.,2011,96,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress96.html#KucherenkoFSM11,https://doi.org/10.1016/j.ress.2010.11.003 +Tieling Zhang,Choosing an optimal model for failure data analysis by graphical approach.,2013,115,Rel. Eng. and Sys. Safety,,db/journals/ress/ress115.html#ZhangD13,https://doi.org/10.1016/j.ress.2013.02.004 +Joanna Rodríguez,Dependence patterns for modeling simultaneous events.,2016,154,Rel. Eng. and Sys. Safety,,db/journals/ress/ress154.html#RodriguezLR16,https://doi.org/10.1016/j.ress.2016.05.008 +Margreet Spoelstra,Domino effects at LPG and propane storage sites in the Netherlands.,2015,143,Rel. Eng. and Sys. Safety,,db/journals/ress/ress143.html#SpoelstraMKH15,https://doi.org/10.1016/j.ress.2015.06.018 +Terje Aven,Perspectives on the nexus between good risk communication and high scientific risk analysis quality.,2018,178,Rel. Eng. and Sys. Safety,,db/journals/ress/ress178.html#Aven18,https://doi.org/10.1016/j.ress.2018.06.018 +Abraham Cherfi,Modeling automotive safety mechanisms: A Markovian approach.,2014,130,Rel. Eng. and Sys. Safety,,db/journals/ress/ress130.html#CherfiLMR14,https://doi.org/10.1016/j.ress.2014.04.013 +Luciano Burgazzi,State of the art in reliability of thermal-hydraulic passive systems.,2007,92,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress92.html#Burgazzi07,https://doi.org/10.1016/j.ress.2006.02.006 +Sabine M. Spiessl,EFAST analysis applied to a PA model for a generic HLW repository in clay.,2012,107,Rel. Eng. and Sys. Safety,,db/journals/ress/ress107.html#SpiesslBR12,https://doi.org/10.1016/j.ress.2012.04.012 +Hyun-Seok Oh,An empirical model to describe performance degradation for warranty abuse detection in portable electronics.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#OhCKYP15,https://doi.org/10.1016/j.ress.2015.04.019 +Giuliano Augusti,Is Aeolian risk as significant as other environmental risks?,2001,74,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress74.html#AugustiBN01,https://doi.org/10.1016/S0951-8320(01)00077-1 +Zineb Simeu-Abazi,Fault diagnosis for discrete event systems: Modelling and verification.,2010,95,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress95.html#Simeu-AbaziMK10,https://doi.org/10.1016/j.ress.2009.11.007 +Zequn Wang,Time-variant reliability assessment through equivalent stochastic process transformation.,2016,152,Rel. Eng. and Sys. Safety,,db/journals/ress/ress152.html#WangC16,https://doi.org/10.1016/j.ress.2016.02.008 +Suprasad V. Amari,Comment on: transient analysis of reliability with and without repair for K-out-of-N: G systems with M failure modes.,2000,67,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress67.html#Amari00,https://doi.org/10.1016/S0951-8320(99)00054-X +Graham B. Wallis,"Reply to M. Makai's comments on my paper ""Evaluating the probability that the output from a computer code with random inputs will meet a set of evaluation criteria"" [Reliab Eng Syst Saf 2006* 91: 820-27].",2007,92,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress92.html#Wallis07,https://doi.org/10.1016/j.ress.2006.04.018 +Gregory Levitin,Optimal load distribution in series-parallel systems.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#LevitinA09,https://doi.org/10.1016/j.ress.2008.03.001 +Jose Emmanuel Ramirez-Marquez,Quantifying the resilience of community structures in networks.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#Ramirez-Marquez18,https://doi.org/10.1016/j.ress.2017.09.019 +Jianlin Huang,Lumen degradation modeling of white-light LEDs in step stress accelerated degradation test.,2016,154,Rel. Eng. and Sys. Safety,,db/journals/ress/ress154.html#HuangGKYLFZ16,https://doi.org/10.1016/j.ress.2016.06.002 +Fares Innal,PFDavg generalized formulas for SIS subject to partial and full periodic tests based on multi-phase Markov models.,2016,150,Rel. Eng. and Sys. Safety,,db/journals/ress/ress150.html#InnalLLB16,https://doi.org/10.1016/j.ress.2016.01.022 +Hongyang Yu,Risk-based fault detection using Self-Organizing Map.,2015,139,Rel. Eng. and Sys. Safety,,db/journals/ress/ress139.html#YuKG15,https://doi.org/10.1016/j.ress.2015.02.011 +Yann Dijoux,Statistical inference for imperfect maintenance models with missing data.,2016,154,Rel. Eng. and Sys. Safety,,db/journals/ress/ress154.html#DijouxFN16,https://doi.org/10.1016/j.ress.2016.05.017 +Junxing Li,A nonlinear Wiener process degradation model with autoregressive errors.,2018,173,Rel. Eng. and Sys. Safety,,db/journals/ress/ress173.html#LiWZLF18,https://doi.org/10.1016/j.ress.2017.11.003 +Maxim Finkelstein,On terminating Poisson processes in some shock models.,2010,95,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress95.html#FinkelsteinM10,https://doi.org/10.1016/j.ress.2010.03.003 +Gerd H. Kjølle,Risk analysis of critical infrastructures emphasizing electricity supply and interdependencies.,2012,105,Rel. Eng. and Sys. Safety,,db/journals/ress/ress105.html#KjolleUG12,https://doi.org/10.1016/j.ress.2012.02.006 +Marine Jouin,Degradations analysis and aging modeling for health assessment and prognostics of PEMFC.,2016,148,Rel. Eng. and Sys. Safety,,db/journals/ress/ress148.html#JouinGHPZ16,https://doi.org/10.1016/j.ress.2015.12.003 +Kirubel Teferra,Mapping model validation metrics to subject matter expert scores for model adequacy assessment.,2014,132,Rel. Eng. and Sys. Safety,,db/journals/ress/ress132.html#TeferraSHD14,https://doi.org/10.1016/j.ress.2014.07.010 +Bernhard Reer,The CESA method and its application in a plant-specific pilot study on errors of commission.,2004,83,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress83.html#ReerDH04,https://doi.org/10.1016/j.ress.2003.09.010 +Paola Annoni,Random and quasi-random designs in variance-based sensitivity analysis for partially ordered sets.,2012,107,Rel. Eng. and Sys. Safety,,db/journals/ress/ress107.html#AnnoniBS12,https://doi.org/10.1016/j.ress.2012.05.001 +Hu-Chen Liu,A large group decision making approach for dependence assessment in human reliability analysis.,2018,176,Rel. Eng. and Sys. Safety,,db/journals/ress/ress176.html#LiuLZY18,https://doi.org/10.1016/j.ress.2018.04.008 +Scott Thacker,System-of-systems formulation and disruption analysis for multi-scale critical national infrastructures.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#ThackerPH17,https://doi.org/10.1016/j.ress.2017.04.023 +Jonas Johansson,Reliability and vulnerability analyses of critical infrastructures: Comparing two approaches in the context of power systems.,2013,120,Rel. Eng. and Sys. Safety,,db/journals/ress/ress120.html#JohanssonHZ13,https://doi.org/10.1016/j.ress.2013.02.027 +Milad Memarzadeh,Hierarchical modeling of systems with similar components: A framework for adaptive monitoring and control.,2016,153,Rel. Eng. and Sys. Safety,,db/journals/ress/ress153.html#MemarzadehPK16,https://doi.org/10.1016/j.ress.2016.04.016 +Golam Kabir,Predicting water main failures using Bayesian model averaging and survival modelling approach.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#KabirTS15,https://doi.org/10.1016/j.ress.2015.06.011 +Yi Dai,Reliability of a VMC and its improvement.,2001,72,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress72.html#DaiJ01,https://doi.org/10.1016/S0951-8320(00)00104-6 +Peng Wang,DSD: a generic software package for model-based fault diagnosis in dynamic systems.,2002,75,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress75.html#WangCA02,https://doi.org/10.1016/S0951-8320(01)00106-5 +A. Francos,Sensitivity analysis of distributed environmental simulation models: understanding the model behaviour in hydrological studies at the catchment scale.,2003,79,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress79.html#FrancosEBBG03,https://doi.org/10.1016/S0951-8320(02)00231-4 +Yujie Wang,Combinatorial analysis of body sensor networks subject to probabilistic competing failures.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#WangXWL15,https://doi.org/10.1016/j.ress.2015.06.005 +Michele Compare,Reliability model of a component equipped with PHM capabilities.,2017,168,Rel. Eng. and Sys. Safety,,db/journals/ress/ress168.html#CompareBZ17,https://doi.org/10.1016/j.ress.2017.05.024 +Vicki M. Bier,On the state of the art: risk communication to the public.,2001,71,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress71.html#Bier01,https://doi.org/10.1016/S0951-8320(00)00090-9 +Bev Littlewood,"Comments on ""Multi-objective genetic algorithm for solving N-version program design problem"": [Reliabil Eng Syst Saf 91 (2006) 1083-1094].",2008,93,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress93.html#Littlewood08,https://doi.org/10.1016/j.ress.2007.06.005 +Sergio Guarro,On the nature and practical handling of the Bayesian aggregation anomaly.,2009,94,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress94.html#GuarroY09,https://doi.org/10.1016/j.ress.2008.11.009 +J. D. Lawrence,Software qualification in safety applications.,2000,70,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress70.html#Lawrence00,https://doi.org/10.1016/S0951-8320(00)00055-7 +Zhicheng Zhang,Artificial neural network for violation analysis.,2004,84,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress84.html#ZhangPVM04,https://doi.org/10.1016/j.ress.2003.07.001 +Maria Francesca Milazzo,Risks associated with volcanic ash fallout from Mt.Etna with reference to industrial filtration systems.,2013,120,Rel. Eng. and Sys. Safety,,db/journals/ress/ress120.html#MilazzoASM13,https://doi.org/10.1016/j.ress.2013.05.008 +Darko M. Louit,A practical procedure for the selection of time-to-failure models based on the assessment of trends in maintenance data.,2009,94,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress94.html#LouitPJ09,https://doi.org/10.1016/j.ress.2009.04.001 +Sascha Pristrom,A novel flexible model for piracy and robbery assessment of merchant ship operations.,2016,155,Rel. Eng. and Sys. Safety,,db/journals/ress/ress155.html#PristromYWY16,https://doi.org/10.1016/j.ress.2016.07.001 +Marco Ratto,Non-parametric estimation of conditional moments for sensitivity analysis.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#RattoPY09,https://doi.org/10.1016/j.ress.2008.02.023 +Medardo Yañez,Generalized renewal process for analysis of repairable systems with limited failure experience.,2002,77,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress77.html#YanezJM02,https://doi.org/10.1016/S0951-8320(02)00044-3 +Matthew T. Davis,Disaster factor screening using SoS conceptual modeling and an LVC simulation framework.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#DavisPS17,https://doi.org/10.1016/j.ress.2017.04.020 +Shey-Huei Sheu,The generalized age maintenance policies with random working *.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#SheuLZT18,https://doi.org/10.1016/j.ress.2017.09.003 +Steven Verlinden,Hybrid reliability model for nuclear reactor safety system.,2012,101,Rel. Eng. and Sys. Safety,,db/journals/ress/ress101.html#VerlindenDC12,https://doi.org/10.1016/j.ress.2012.01.004 +Luyi Li,Importance analysis for models with correlated variables and its sparse grid solution.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#LiL13,https://doi.org/10.1016/j.ress.2013.06.036 +Piero Baraldi,Classifier-ensemble incremental-learning procedure for nuclear transient identification at different operational conditions.,2011,96,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress96.html#BaraldiRZ11,https://doi.org/10.1016/j.ress.2010.11.005 +Barron J. Bichon,Efficient surrogate models for reliability analysis of systems with multiple failure modes.,2011,96,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress96.html#BichonMM11,https://doi.org/10.1016/j.ress.2011.05.008 +Bram de Jonge,Reducing costs by clustering maintenance activities for multiple critical units.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#JongeKTT16,https://doi.org/10.1016/j.ress.2015.09.003 +Roger M. Cooke,Response to discussants.,2008,93,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress93.html#Cooke08a,https://doi.org/10.1016/j.ress.2008.02.006 +Min Xie 0001,On changing points of mean residual life and failure rate function for some generalized Weibull distributions.,2004,84,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress84.html#XieGT04,https://doi.org/10.1016/j.ress.2003.12.005 +Yukun Wang,Optimal preventive maintenance strategy for repairable items under two-dimensional warranty.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#WangLL15,https://doi.org/10.1016/j.ress.2015.06.003 +Yasser A. Almoghathawi,A multi-criteria decision analysis approach for importance identification and ranking of network components.,2017,158,Rel. Eng. and Sys. Safety,,db/journals/ress/ress158.html#AlmoghathawiBSN17,https://doi.org/10.1016/j.ress.2016.10.007 +Sean Reed,An efficient algorithm for exact computation of system and survival signatures using binary decision diagrams.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#Reed17,https://doi.org/10.1016/j.ress.2017.03.036 +Nancy G. Leveson,A systems approach to risk management through leading safety indicators.,2015,136,Rel. Eng. and Sys. Safety,,db/journals/ress/ress136.html#Leveson15,https://doi.org/10.1016/j.ress.2014.10.008 +D. Zhang,Incorporation of formal safety assessment and Bayesian network in navigational risk estimation of the Yangtze River.,2013,118,Rel. Eng. and Sys. Safety,,db/journals/ress/ress118.html#ZhangYYWW13,https://doi.org/10.1016/j.ress.2013.04.006 +Francesca M. Favarò,Application of temporal logic for safety supervisory control and model-based hazard monitoring.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#FavaroS18,https://doi.org/10.1016/j.ress.2017.08.012 +S. Emad Marashi,An argumentation-based method for managing complex issues in design of infrastructural systems.,2006,91,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress91.html#MarashiD06,https://doi.org/10.1016/j.ress.2006.01.013 +Xiaohu Li,Reliability analysis of a repairable k-out-of-n system with some components being suspended when the system is down.,2006,91,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress91.html#LiZY06,https://doi.org/10.1016/j.ress.2005.01.010 +António Ramos Andrade,Statistical modelling of railway track geometry degradation using Hierarchical Bayesian models.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#AndradeT15,https://doi.org/10.1016/j.ress.2015.05.009 +Genyuan Li,Relationship between sensitivity indices defined by variance- and covariance-based methods.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#LiR17,https://doi.org/10.1016/j.ress.2017.05.038 +Peng Liu,"Corrigendum to ""Comparison of task complexity measures for emergency operating procedures: Convergent validity and predictive validity"" [Reliab. Eng. Syst. Saf. 121(2014) 289-293].",2014,127,Rel. Eng. and Sys. Safety,,db/journals/ress/ress127.html#LiuL14a,https://doi.org/10.1016/j.ress.2014.03.002 +Jiaokun Cao,Global sensitivity analysis for dynamic systems with stochastic input processes.,2013,118,Rel. Eng. and Sys. Safety,,db/journals/ress/ress118.html#CaoDD13,https://doi.org/10.1016/j.ress.2013.04.016 +Adrian V. Gheorghe,Risk assessment of regional systems.,2000,70,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress70.html#GheorgheMK00,https://doi.org/10.1016/S0951-8320(00)00053-3 +Belén García-Mora,Modelling the failure risk for water supply networks with interval-censored data.,2015,144,Rel. Eng. and Sys. Safety,,db/journals/ress/ress144.html#Garcia-MoraDSC15,https://doi.org/10.1016/j.ress.2015.08.003 +Jason L. Cook,Optimal design of cluster-based ad-hoc networks using probabilistic solution discovery.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#CookR09,https://doi.org/10.1016/j.ress.2008.02.015 +M. J. Rufo,A Bayesian negotiation model for quality and price in a multi-consumer context.,2016,147,Rel. Eng. and Sys. Safety,,db/journals/ress/ress147.html#RufoMP16,https://doi.org/10.1016/j.ress.2015.11.002 +Solomon Brown,Global sensitivity analysis of the impact of impurities on CO2 pipeline failure.,2013,115,Rel. Eng. and Sys. Safety,,db/journals/ress/ress115.html#BrownBMF13,https://doi.org/10.1016/j.ress.2013.02.006 +Fares Innal,Safety and operational integrity evaluation and design optimization of safety instrumented systems.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#InnalDC15,https://doi.org/10.1016/j.ress.2014.10.001 +Abbas Barabadi,Post-disaster infrastructure recovery: Prediction of recovery rate using historical data.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#BarabadiA18,https://doi.org/10.1016/j.ress.2017.08.018 +Philipp Limbourg,Multi-objective optimization of generalized reliability design problems using feature models - A concept for early design stages.,2008,93,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress93.html#LimbourgK08,https://doi.org/10.1016/j.ress.2007.03.032 +Gregory Levitin,Generalised importance measures for multi-state elements based on performance level restrictions.,2003,82,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress82.html#LevitinPZ03,https://doi.org/10.1016/S0951-8320(03)00171-6 +Rob P. Rechard,Evolution of repository and waste package designs for Yucca Mountain disposal system for spent nuclear fuel and high-level radioactive waste.,2014,122,Rel. Eng. and Sys. Safety,,db/journals/ress/ress122.html#RechardV14,https://doi.org/10.1016/j.ress.2013.06.018 +Yeonsub Jung,An incremental objective achievement model in computerized procedure execution.,2000,70,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress70.html#JungSP00,https://doi.org/10.1016/S0951-8320(00)00057-0 +Hongzhe Dai,A support vector density-based importance sampling for reliability assessment.,2012,106,Rel. Eng. and Sys. Safety,,db/journals/ress/ress106.html#DaiZW12,https://doi.org/10.1016/j.ress.2012.04.011 +Shengtong Zhong,A classification-based approach to monitoring the safety of dynamic systems.,2014,121,Rel. Eng. and Sys. Safety,,db/journals/ress/ress121.html#ZhongLN14,https://doi.org/10.1016/j.ress.2013.07.016 +Steve Epstein,Can we trust PRA?,2005,88,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress88.html#EpsteinR05,https://doi.org/10.1016/j.ress.2004.07.013 +Yizhen Peng,Dynamic reliability assessment and prediction for repairable systems with interval-censored data.,2017,159,Rel. Eng. and Sys. Safety,,db/journals/ress/ress159.html#PengWZTZ17,https://doi.org/10.1016/j.ress.2016.11.011 +Behrooz Keshtegar,An efficient-robust structural reliability method by adaptive finite-step length based on Armijo line search.,2018,172,Rel. Eng. and Sys. Safety,,db/journals/ress/ress172.html#KeshtegarC18,https://doi.org/10.1016/j.ress.2017.12.014 +Sebastián Martorell,Alternatives and challenges in optimizing industrial safety using genetic algorithms.,2004,86,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress86.html#MartorellSCS04,https://doi.org/10.1016/j.ress.2003.12.010 +Yuan-Shun Way,A simple component-connection method for building binary decision diagrams encoding a fault tree.,2000,70,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress70.html#WayH00,https://doi.org/10.1016/S0951-8320(00)00048-X +Bo Tao,An alternative time-domain index for condition monitoring of rolling element bearings - A comparison study.,2007,92,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress92.html#TaoZDX07,https://doi.org/10.1016/j.ress.2006.03.005 +Vincent Benard,The Safe-SADT method for aiding designers to choose and improve dependable architectures for complex automated systems.,2008,93,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress93.html#BenardCR08,https://doi.org/10.1016/j.ress.2006.12.020 +Weiwe-Chang Yeh,A simple MC-based algorithm for evaluating reliability of stochastic-flow network with unreliable nodes.,2004,83,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress83.html#Yeh04,https://doi.org/10.1016/j.ress.2003.08.007 +Woo Sik Jung,Development of an analytical method to break logical loops at the system level.,2005,90,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress90.html#JungH05,https://doi.org/10.1016/j.ress.2004.10.005 +Justin W. Eggstaff,The effect of the number of seed variables on the performance of Cooke**s classical model.,2014,121,Rel. Eng. and Sys. Safety,,db/journals/ress/ress121.html#EggstaffMS14,https://doi.org/10.1016/j.ress.2013.07.015 +Ki Mun Jung,System maintenance cost dependent on life cycle under renewing warranty policy.,2010,95,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress95.html#JungPP10,https://doi.org/10.1016/j.ress.2010.02.010 +Masato Uchida,Statistical characteristics of serious network failures in Japan.,2014,131,Rel. Eng. and Sys. Safety,,db/journals/ress/ress131.html#Uchida14,https://doi.org/10.1016/j.ress.2014.07.001 +Jon C. Helton,Latin hypercube sampling and the propagation of uncertainty in analyses of complex systems.,2003,81,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress81.html#HeltonD03,https://doi.org/10.1016/S0951-8320(03)00058-9 +Chan Y. Park,How coupon and element tests reduce conservativeness in element failure prediction.,2014,123,Rel. Eng. and Sys. Safety,,db/journals/ress/ress123.html#ParkKH14,https://doi.org/10.1016/j.ress.2013.10.012 +Claudio M. Rocco Sanseverino,Empirical models based on machine learning techniques for determining approximate reliability expressions.,2004,83,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress83.html#SanseverinoM04,https://doi.org/10.1016/j.ress.2003.10.001 +Bruno Sudret,Computing derivative-based global sensitivity measures using polynomial chaos expansions.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#SudretM15,https://doi.org/10.1016/j.ress.2014.07.009 +H. Salehi Fathabadi,"A note on ""A simple approach to search for all d-MCs of a limited-flow network"".",2009,94,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress94.html#FathabadiF09,https://doi.org/10.1016/j.ress.2009.05.016 +Jernej Klemenc,Influence of fatigue-life data modelling on the estimated reliability of a structure subjected to a constant-amplitude loading.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#Klemenc15,https://doi.org/10.1016/j.ress.2015.05.026 +Paolo Mason,Approximate Bayesian Computation of the occurrence and size of defects in Advanced Gas-cooled nuclear Reactor boilers.,2016,146,Rel. Eng. and Sys. Safety,,db/journals/ress/ress146.html#Mason16,https://doi.org/10.1016/j.ress.2015.10.012 +Shital A. Thekdi,Integrated risk management of safety and development on transportation corridors.,2015,138,Rel. Eng. and Sys. Safety,,db/journals/ress/ress138.html#ThekdiL15,https://doi.org/10.1016/j.ress.2014.11.015 +Gopinath Chattopadhyay,Development of lifetime warranty policies and models for estimating costs.,2008,93,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress93.html#ChattopadhyayR08,https://doi.org/10.1016/j.ress.2007.02.005 +Johannes A. M. van der Weide,A stochastic alternating renewal process model for unavailability analysis of standby safety equipment.,2015,139,Rel. Eng. and Sys. Safety,,db/journals/ress/ress139.html#WeideP15,https://doi.org/10.1016/j.ress.2015.03.005 +Chris J. Price,Automated multiple failure FMEA.,2002,76,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress76.html#PriceT02,https://doi.org/10.1016/S0951-8320(01)00136-3 +Jong Hyun Kim,The effect of information types on diagnostic strategies in the information aid.,2007,92,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress92.html#KimS07,https://doi.org/10.1016/j.ress.2005.11.061 +François Pérès,Anticipating aging failure using feedback data and expert judgment.,2007,92,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress92.html#PeresBBBLH07,https://doi.org/10.1016/j.ress.2005.11.063 +Adam Hatzikyriakou,Impact of performance interdependencies on structural vulnerability: A systems perspective of storm surge risk to coastal residential communities.,2017,158,Rel. Eng. and Sys. Safety,,db/journals/ress/ress158.html#HatzikyriakouL17,https://doi.org/10.1016/j.ress.2016.10.011 +Haiyang Yu,Optimal design of a maintainable cold-standby system.,2007,92,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress92.html#YuYCC07,https://doi.org/10.1016/j.ress.2005.11.001 +Hamid R. Zarandi,A SEU-protected cache memory-based on variable associativity of sets.,2007,92,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress92.html#ZarandiM07,https://doi.org/10.1016/j.ress.2006.10.008 +Shenping Hu,Formal safety assessment based on relative risks model in ship navigation.,2007,92,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress92.html#HuFXX07,https://doi.org/10.1016/j.ress.2006.04.011 +Dusko Kancev,Development and application of a living probabilistic safety assessment tool: Multi-objective multi-dimensional optimization of surveillance requirements in NPPs considering their ageing.,2014,131,Rel. Eng. and Sys. Safety,,db/journals/ress/ress131.html#KancevCG14,https://doi.org/10.1016/j.ress.2014.06.009 +Roger M. Cooke,Special issue on expert judgment.,2008,93,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress93.html#Cooke08,https://doi.org/10.1016/j.ress.2007.03.001 +Hiroyuki Okano,An optimization algorithm based on stochastic sensitivity analysis for noisy objective landscapes.,2003,79,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress79.html#OkanoK03,https://doi.org/10.1016/S0951-8320(02)00236-3 +Johannes A. M. van der Weide,Stochastic analysis of shock process and modeling of condition-based maintenance.,2011,96,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress96.html#WeideP11,https://doi.org/10.1016/j.ress.2010.12.012 +Kampanart Silva,Cost per severe accident as an index for severe accident consequence assessment and its applications.,2014,123,Rel. Eng. and Sys. Safety,,db/journals/ress/ress123.html#SilvaIT14,https://doi.org/10.1016/j.ress.2013.11.004 +Ioannis A. Papazoglou,Dependability analysis of a very large volume neutrino telescope.,2010,95,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress95.html#PapazoglouM10,https://doi.org/10.1016/j.ress.2010.05.003 +Naoya Kasai,Accident occurrence model for the risk analysis of industrialfacilities.,2013,114,Rel. Eng. and Sys. Safety,,db/journals/ress/ress114.html#KasaiMS13,https://doi.org/10.1016/j.ress.2013.01.004 +Jing Lin,Reliability analysis for preventive maintenance based on classical and Bayesian semi-parametric degradation approaches using locomotive wheel-sets as a case study.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#LinPA15,https://doi.org/10.1016/j.ress.2014.10.011 +Xiaolu Dong,A study on the effect of training interval on the use of computerized emergency operatingprocedures.,2011,96,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress96.html#DongL11,https://doi.org/10.1016/j.ress.2010.09.007 +Gregory Levitin,Reliability of multi-state systems with free access to repairable standby elements.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#LevitinJDSD17,https://doi.org/10.1016/j.ress.2017.05.003 +Eduardo Haro-Sandoval,Sensitivity study of dynamic systems using polynomial chaos.,2012,104,Rel. Eng. and Sys. Safety,,db/journals/ress/ress104.html#SandovalAB12,https://doi.org/10.1016/j.ress.2012.04.001 +Sebastián Martorell,Maintenance modeling and optimization integrating human and material resources.,2010,95,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress95.html#MartorellVCS10,https://doi.org/10.1016/j.ress.2010.06.006 +Sybert H. Stroeve,Strengthening air traffic safety management by moving from outcome-based towards risk-based evaluation of runway incursions.,2016,147,Rel. Eng. and Sys. Safety,,db/journals/ress/ress147.html#StroeveSDB16,https://doi.org/10.1016/j.ress.2015.11.003 +Anne Barros,A maintenance policy for two-unit parallel systems based on imperfect monitoring information.,2006,91,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress91.html#BarrosBG06,https://doi.org/10.1016/j.ress.2004.10.017 +Aarnout Brombacher,Managing product reliability in business processes 'under pressure'.,2005,88,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress88.html#BrombacherSSR05,https://doi.org/10.1016/j.ress.2004.07.003 +Fan Wu,A cost effective degradation-based maintenance strategy under imperfect repair.,2015,144,Rel. Eng. and Sys. Safety,,db/journals/ress/ress144.html#WuNK15,https://doi.org/10.1016/j.ress.2015.08.002 +Heungseob Kim,Optimal reliability design of a system with k-out-of-n subsystems considering redundancy strategies.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#Kim17,https://doi.org/10.1016/j.ress.2017.07.004 +Jaewhan Kim,The MDTA-based method for assessing diagnosis failures and their risk impacts in nuclear power plants.,2008,93,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress93.html#KimJS08,https://doi.org/10.1016/j.ress.2006.10.020 +Zhi-Sheng Ye,A new class of Wiener process models for degradation analysis.,2015,139,Rel. Eng. and Sys. Safety,,db/journals/ress/ress139.html#YeCS15,https://doi.org/10.1016/j.ress.2015.02.005 +Jian Li,AC power flow importance measures considering multi-element failures.,2017,160,Rel. Eng. and Sys. Safety,,db/journals/ress/ress160.html#LiDCS17,https://doi.org/10.1016/j.ress.2016.11.010 +Thomas L. Landers,Semi-parametric PWP model robustness for log-linear increasing rates of occurrence of failures.,2001,73,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress73.html#LandersJP01,https://doi.org/10.1016/S0951-8320(01)00036-9 +Shankar Sankararaman,Model validation under epistemic uncertainty.,2011,96,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress96.html#SankararamanM11a,https://doi.org/10.1016/j.ress.2010.07.014 +Jinkyun Park,Analysis of operators' performance under emergencies using a training simulator of the nuclear power plant.,2004,83,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress83.html#ParkJHS04,https://doi.org/10.1016/j.ress.2003.09.009 +Salvador Perez Canto,A model for the preventive maintenance scheduling of power plants including wind farms.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#CantoR13,https://doi.org/10.1016/j.ress.2013.04.005 +Paolo Trucco,A Bayesian Belief Network modelling of organisational factors in risk analysis: A case study in maritime transportation.,2008,93,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress93.html#TruccoCRG08,https://doi.org/10.1016/j.ress.2007.03.035 +Jong-Gyun Choi,Reliability assessment of embedded digital system using multi-state function.,2006,91,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress91.html#ChoiS06,https://doi.org/10.1016/j.ress.2005.01.005 +Jianfeng Zhou,Application of event sequence diagram to evaluate emergency response actions during fire-induced domino effects.,2016,150,Rel. Eng. and Sys. Safety,,db/journals/ress/ress150.html#ZhouRK16,https://doi.org/10.1016/j.ress.2016.02.005 +Rosario Toscano,Parameterization of a fuzzy classifier for the diagnosis of an industrial process.,2002,77,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress77.html#ToscanoL02,https://doi.org/10.1016/S0951-8320(02)00060-1 +Francesco Cadini,Subset Simulation of a reliability model for radioactive waste repository performance assessment.,2012,100,Rel. Eng. and Sys. Safety,,db/journals/ress/ress100.html#CadiniAPZ12,https://doi.org/10.1016/j.ress.2011.12.012 +Shaomin Wu,Preventive maintenance models with random maintenance quality.,2005,90,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress90.html#WuC05,https://doi.org/10.1016/j.ress.2005.03.012 +Baris Sürücü,Monitoring reliability for a three-parameter Weibull distribution.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#SurucuS09,https://doi.org/10.1016/j.ress.2008.06.001 +Guglielmo D'Amico,Reliability measures for indexed semi-Markov chains applied to wind energy production.,2015,144,Rel. Eng. and Sys. Safety,,db/journals/ress/ress144.html#DAmicoPP15,https://doi.org/10.1016/j.ress.2015.07.015 +Krzysztof Kolowrocki,Asymptotic approach to reliability evaluation of rope transportation system.,2001,71,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress71.html#Kolowrocki01,https://doi.org/10.1016/S0951-8320(00)00085-5 +Carlos Carreras,On interval methods applied to robot reliability quantification.,2000,70,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress70.html#CarrerasW00,https://doi.org/10.1016/S0951-8320(00)00063-6 +Phillip McNelles,A comparison of Fault Trees and the Dynamic Flowgraph Methodology for the analysis of FPGA-based safety systems Part 1: Reactor trip logic loop reliability analysis.,2016,153,Rel. Eng. and Sys. Safety,,db/journals/ress/ress153.html#McNellesZRLAL16,https://doi.org/10.1016/j.ress.2016.04.014 +Rolf Skjong,Safety of maritime transportation.,2008,93,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress93.html#SkjongS08,https://doi.org/10.1016/j.ress.2007.08.002 +Moon-Hyun Chun,An uncertainty importance measure using a distance metric for the change in a cumulative distribution function.,2000,70,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress70.html#ChunHT00,https://doi.org/10.1016/S0951-8320(00)00068-5 +Xufeng Zhao,Replacement policies for a parallel system with shortage and excess costs.,2016,150,Rel. Eng. and Sys. Safety,,db/journals/ress/ress150.html#ZhaoCN16,https://doi.org/10.1016/j.ress.2016.01.008 +Curtis B. Storlie,Implementation and evaluation of nonparametric regression procedures for sensitivity analysis of computationally demanding models.,2009,94,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress94.html#StorlieSHS09,https://doi.org/10.1016/j.ress.2009.05.007 +Gianpaolo Pulcini,Incorrect modeling of the failure process of minimally repaired systems under random conditions: The effect on the maintenance costs.,2015,144,Rel. Eng. and Sys. Safety,,db/journals/ress/ress144.html#Pulcini15,https://doi.org/10.1016/j.ress.2015.07.024 +Thi Phuong Khanh Nguyen,Maintaining a system subject to uncertain technological evolution.,2014,128,Rel. Eng. and Sys. Safety,,db/journals/ress/ress128.html#NguyenCY14,https://doi.org/10.1016/j.ress.2014.04.004 +Yochan Kim,A classification scheme of erroneous behaviors for human error probability estimations based on simulator data.,2017,163,Rel. Eng. and Sys. Safety,,db/journals/ress/ress163.html#KimPJ17,https://doi.org/10.1016/j.ress.2017.01.022 +Robby Christian,Probabilistic risk assessment on maritime spent nuclear fuel transportation - Part I: Transport cask damage probability.,2017,164,Rel. Eng. and Sys. Safety,,db/journals/ress/ress164.html#ChristianK17,https://doi.org/10.1016/j.ress.2016.11.021 +Robert T. Clemen,Comment on Cooke's classical method.,2008,93,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress93.html#Clemen08,https://doi.org/10.1016/j.ress.2008.02.003 +Yiliu Liu,Customized warranty offering for configurable products.,2013,118,Rel. Eng. and Sys. Safety,,db/journals/ress/ress118.html#LiuLW13,https://doi.org/10.1016/j.ress.2013.03.007 +Gregory Levitin,Multi-state systems with multi-fault coverage.,2008,93,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress93.html#LevitinA08,https://doi.org/10.1016/j.ress.2007.12.004 +Jae-Hyun Park,Time-dependent reliability of wireless networks with dependent failures.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#Park17,https://doi.org/10.1016/j.ress.2017.03.017 +C. T. Barker,Optimal non-periodic inspection for a multivariate degradation model.,2009,94,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress94.html#BarkerN09,https://doi.org/10.1016/j.ress.2007.03.015 +Mahmoud Awad,Economic allocation of reliability growth testing using Weibull distributions.,2016,152,Rel. Eng. and Sys. Safety,,db/journals/ress/ress152.html#Awad16,https://doi.org/10.1016/j.ress.2016.03.012 +Maryam Hamidi,New one cycle criteria for optimizing preventive replacement policies.,2016,154,Rel. Eng. and Sys. Safety,,db/journals/ress/ress154.html#HamidiSS16,https://doi.org/10.1016/j.ress.2016.04.010 +Valeria Casson Moreno,Identification of critical safety barriers in biogas facilities.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#MorenoGC18,https://doi.org/10.1016/j.ress.2017.07.013 +Michael A. Elliott,Selecting numerical scales for pairwise comparisons.,2010,95,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress95.html#Elliott10,https://doi.org/10.1016/j.ress.2010.02.013 +Masoud Naseri,Availability assessment of oil and gas processing plants operating under dynamic Arctic weather conditions.,2016,152,Rel. Eng. and Sys. Safety,,db/journals/ress/ress152.html#NaseriBCZ16,https://doi.org/10.1016/j.ress.2016.03.004 +S. Qiu,A quantitative model for the risk evaluation of driver-ADAS systems under uncertainty.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#QiuRSV17,https://doi.org/10.1016/j.ress.2017.05.028 +S. Hossein Mohammadian,Design stage confirmation of lifetime improvement for newly modified products through accelerated life testing.,2010,95,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress95.html#MohammadianA10,https://doi.org/10.1016/j.ress.2010.03.010 +Simon Anastasiadis,Auto warranty and driving patterns.,2013,116,Rel. Eng. and Sys. Safety,,db/journals/ress/ress116.html#AnastasiadisAC13,https://doi.org/10.1016/j.ress.2012.12.006 +Qiang Feng,Heuristic hybrid game approach for fleet condition-based maintenance planning.,2017,157,Rel. Eng. and Sys. Safety,,db/journals/ress/ress157.html#FengBZCS17,https://doi.org/10.1016/j.ress.2016.09.005 +Jakin K. Ravalico,Sensitivity analysis for decision-making using the MORE method - A Pareto approach.,2009,94,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress94.html#RavalicoMD09,https://doi.org/10.1016/j.ress.2009.01.009 +Chunhe Yang,Analysis of major risks associated with hydrocarbon storage caverns in bedded salt rock.,2013,113,Rel. Eng. and Sys. Safety,,db/journals/ress/ress113.html#YangJDZD13,https://doi.org/10.1016/j.ress.2012.12.017 +Philip S. Marsh,Reinforced concrete bridge deck reliability model incorporating temporal and spatial variations of probabilistic corrosion rate sensor data.,2008,93,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress93.html#MarshF08,https://doi.org/10.1016/j.ress.2006.12.011 +Floriane Anstett-Collin,Sensitivity analysis of complex models: Coping with dynamic and static inputs.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#Anstett-CollinGMD15,https://doi.org/10.1016/j.ress.2014.08.010 +Dan Ao,Design of validation experiments for life prediction models.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#AoHM17,https://doi.org/10.1016/j.ress.2017.03.030 +Min Ouyang,Comparisons of complex network based models and real train flow model to analyze Chinese railway vulnerability.,2014,123,Rel. Eng. and Sys. Safety,,db/journals/ress/ress123.html#OuyangZHP14,https://doi.org/10.1016/j.ress.2013.10.003 +Mohamad Samrout,Optimization of maintenance policy using the proportional hazard model.,2009,94,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress94.html#SamroutCKC09,https://doi.org/10.1016/j.ress.2007.12.006 +Shuhei Ota,A statistical dependent failure detection method for n-component parallel systems.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#OtaK17,https://doi.org/10.1016/j.ress.2017.06.022 +Daijun Wei,Measuring the vulnerability of community structure in complex networks.,2018,174,Rel. Eng. and Sys. Safety,,db/journals/ress/ress174.html#WeiZM18,https://doi.org/10.1016/j.ress.2018.02.001 +Mustafa Altun,A change-point based reliability prediction model using field return data.,2016,156,Rel. Eng. and Sys. Safety,,db/journals/ress/ress156.html#AltunC16,https://doi.org/10.1016/j.ress.2016.07.024 +José Villén-Altamirano,RESTART simulation of non-Markov consecutive-k-out-of-n: F repairable systems.,2010,95,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress95.html#Villen-Altamirano10,https://doi.org/10.1016/j.ress.2009.10.005 +Giuliana Faiella,Expanding healthcare failure mode and effect analysis: A composite proactive risk analysis approach.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#FaiellaPFCCSS18,https://doi.org/10.1016/j.ress.2017.08.003 +Yongjin Zhang,An integrated approach to estimate storage reliability with initial failures based on E-Bayesian estimates.,2017,159,Rel. Eng. and Sys. Safety,,db/journals/ress/ress159.html#ZhangZZWZ17,https://doi.org/10.1016/j.ress.2016.10.024 +Chin-Tai Chen,On a dynamic preventive maintenance policy for a system under inspection.,2003,80,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress80.html#ChenCY03,https://doi.org/10.1016/S0951-8320(02)00238-7 +Angélica Alebrant Mendes,Establishment of the optimal time interval between periodic inspections for redundant systems.,2014,131,Rel. Eng. and Sys. Safety,,db/journals/ress/ress131.html#MendesCR14,https://doi.org/10.1016/j.ress.2014.06.021 +Marzio Marseguerra,Optimizing maintenance and repair policies via a combination of genetic algorithms and Monte Carlo simulation.,2000,68,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress68.html#MarseguerraZ00,https://doi.org/10.1016/S0951-8320(00)00007-7 +Alejandro Talavera,Application of Dempster-Shafer theory for the quantification and propagation of the uncertainty caused by the use of AIS data.,2013,111,Rel. Eng. and Sys. Safety,,db/journals/ress/ress111.html#TalaveraAGC13,https://doi.org/10.1016/j.ress.2012.10.007 +Kjell Hausken,Strategic defense and attack for reliability systems.,2008,93,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress93.html#Hausken08,https://doi.org/10.1016/j.ress.2007.11.002 +Luis Esteva,Reliability functions for earthquake resistant design.,2001,73,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress73.html#EstevaDG01,https://doi.org/10.1016/S0951-8320(01)00045-X +Ian Dodd,Safety certification of airborne software: An empirical study.,2012,98,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress98.html#DoddH12,https://doi.org/10.1016/j.ress.2011.09.007 +Diederik Lugtigheid,System repairs: When to perform and what to do?,2008,93,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress93.html#LugtigheidBJ08,https://doi.org/10.1016/j.ress.2007.03.023 +Yeu-Shiang Huang,Cost analysis of two-dimensional warranty for products with periodic preventive maintenance.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#HuangGH15,https://doi.org/10.1016/j.ress.2014.10.014 +Taotao Zhou,An improved multi-unit nuclear plant seismic probabilistic risk assessment approach.,2018,171,Rel. Eng. and Sys. Safety,,db/journals/ress/ress171.html#ZhouMD18,https://doi.org/10.1016/j.ress.2017.11.015 +Fathollah Bistouni,Analyzing the reliability of shuffle-exchange networks using reliability block diagrams.,2014,132,Rel. Eng. and Sys. Safety,,db/journals/ress/ress132.html#BistouniJ14,https://doi.org/10.1016/j.ress.2014.07.012 +I. T. Castro,Lifetime replacement policy in discrete time for a single unit system.,2004,84,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress84.html#CastroA04,https://doi.org/10.1016/j.ress.2003.11.005 +Nima Khakzad,Application of dynamic Bayesian network to risk analysis of domino effects in chemical infrastructures.,2015,138,Rel. Eng. and Sys. Safety,,db/journals/ress/ress138.html#Khakzad15,https://doi.org/10.1016/j.ress.2015.02.007 +Haibo Chen,Safety of dynamic positioning operations on mobile offshore drilling units.,2008,93,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress93.html#ChenMV08,https://doi.org/10.1016/j.ress.2007.04.003 +Knut Heggland,A non-parametric monotone maximum likelihood estimator of time trend for repairable system data.,2007,92,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress92.html#HegglandL07,https://doi.org/10.1016/j.ress.2006.05.007 +Clifford W. Hansen,Use of replicated Latin hypercube sampling to estimate sampling variance in uncertainty and sensitivity analysis results for the geologic disposal of radioactive waste.,2012,107,Rel. Eng. and Sys. Safety,,db/journals/ress/ress107.html#HansenHS12,https://doi.org/10.1016/j.ress.2011.12.006 +Ki Mun Jung,Optimization of cost and downtime for replacement model following the expiration of warranty.,2008,93,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress93.html#JungHP08,https://doi.org/10.1016/j.ress.2007.05.005 +Filippo Sanfilippo,A multi-sensor fusion framework for improving situational awareness in demanding maritime training.,2017,161,Rel. Eng. and Sys. Safety,,db/journals/ress/ress161.html#Sanfilippo17,https://doi.org/10.1016/j.ress.2016.12.015 +Winfrid G. Schneeweiss,A short Boolean derivation of mean failure frequency for any (also non-coherent) system.,2009,94,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress94.html#Schneeweiss09,https://doi.org/10.1016/j.ress.2008.12.001 +Abigail R. Colson,Cross validation for the classical model of structured expert judgment.,2017,163,Rel. Eng. and Sys. Safety,,db/journals/ress/ress163.html#ColsonC17,https://doi.org/10.1016/j.ress.2017.02.003 +Won Young Yun,Multiple multi-level redundancy allocation in series systems.,2007,92,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress92.html#YunSK07,https://doi.org/10.1016/j.ress.2006.04.006 +Ali Azadeh,A multi-objective optimization problem for multi-state series-parallel systems: A two-stage flow-shop manufacturing system.,2015,136,Rel. Eng. and Sys. Safety,,db/journals/ress/ress136.html#AzadehMGS15,https://doi.org/10.1016/j.ress.2014.11.009 +Rosario Ceravolo,Symptom-based reliability and generalized repairing cost in monitored bridges.,2009,94,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress94.html#CeravoloPS09,https://doi.org/10.1016/j.ress.2009.02.010 +Siu-Kui Au,Rare event simulation in finite-infinite dimensional space.,2016,148,Rel. Eng. and Sys. Safety,,db/journals/ress/ress148.html#AuP16,https://doi.org/10.1016/j.ress.2015.11.012 +Lesley Walls,Building prior distributions to support Bayesian reliability growth modelling using expert judgement.,2001,74,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress74.html#WallsQ01,https://doi.org/10.1016/S0951-8320(01)00069-2 +Rui Peng,Defending simple series and parallel systems with imperfect false targets.,2010,95,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress95.html#PengLXN10,https://doi.org/10.1016/j.ress.2010.02.008 +Luiz Fernando Oliveira,Extension of ISA TR84.00.02 PFD equations to KooN architectures.,2010,95,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress95.html#OliveiraA10,https://doi.org/10.1016/j.ress.2010.01.006 +Radim Bris,Time-dependent risk modeling of accidental events and responses in process industries.,2014,125,Rel. Eng. and Sys. Safety,,db/journals/ress/ress125.html#BrisMWZ14,https://doi.org/10.1016/j.ress.2013.05.010 +N. Rhayma,Reliability analysis of maintenance operations for railway tracks.,2013,114,Rel. Eng. and Sys. Safety,,db/journals/ress/ress114.html#RhaymaBBFS13,https://doi.org/10.1016/j.ress.2012.12.007 +Xufeng Zhao,Age replacement models: A summary with new perspectives and methods.,2017,161,Rel. Eng. and Sys. Safety,,db/journals/ress/ress161.html#ZhaoAHN17,https://doi.org/10.1016/j.ress.2017.01.011 +Ozge Doguc,A generic method for estimating system reliability using Bayesian networks.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#DogucR09,https://doi.org/10.1016/j.ress.2008.06.009 +Martin Pilch,Ideas underlying the Quantification of Margins and Uncertainties.,2011,96,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress96.html#PilchTH11,https://doi.org/10.1016/j.ress.2011.03.016 +Fuqun Huang,Causal Mechanism Graph 2* A new notation for capturing cause-effect knowledge in software dependability.,2017,158,Rel. Eng. and Sys. Safety,,db/journals/ress/ress158.html#HuangS17,https://doi.org/10.1016/j.ress.2016.08.020 +Francisco Sanchez-Saez,Uncertainty analysis of a large break loss of coolant accident in a pressurized water reactor using non-parametric methods.,2018,174,Rel. Eng. and Sys. Safety,,db/journals/ress/ress174.html#Sanchez-SaezSVC18,https://doi.org/10.1016/j.ress.2018.02.005 +Min Xie 0001,Special issue of selected papers presented at ICQR2005.,2007,92,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress92.html#XieL07,https://doi.org/10.1016/j.ress.2006.04.002 +A. Ehsani,Reliability evaluation of deregulated electric power systems for planning applications.,2008,93,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress93.html#EhsaniRJF08,https://doi.org/10.1016/j.ress.2007.10.005 +Yochan Kim,A statistical approach to estimating effects of performance shaping factors on human error probabilities of soft controls.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#KimPJJS15,https://doi.org/10.1016/j.ress.2015.06.004 +Heungseob Kim,Reliability-redundancy allocation problem considering optimal redundancy strategy using parallel genetic algorithm.,2017,159,Rel. Eng. and Sys. Safety,,db/journals/ress/ress159.html#KimK17a,https://doi.org/10.1016/j.ress.2016.10.033 +Feng Ma,A novel approach of collision assessment for coastal radar surveillance.,2016,155,Rel. Eng. and Sys. Safety,,db/journals/ress/ress155.html#MaCHYW16,https://doi.org/10.1016/j.ress.2016.07.013 +Aliasghar Sadeghi,Identification of accident-prone sections in roadways with incomplete and uncertain inspection-based information: A distributed hazard index based on evidential reasoning approach.,2018,178,Rel. Eng. and Sys. Safety,,db/journals/ress/ress178.html#SadeghiFMQ18,https://doi.org/10.1016/j.ress.2018.06.020 +Karen B. Marais,Value maximizing maintenance policies under general repair.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#Marais13,https://doi.org/10.1016/j.ress.2013.05.015 +Jui-Hsiang Chiang,Optimal maintenance policy for a Markovian system under periodic inspection.,2001,71,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress71.html#ChiangY01,https://doi.org/10.1016/S0951-8320(00)00093-4 +Won D. Jung,Structured information analysis for human reliability analysis of emergency tasks in nuclear power plants.,2001,71,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress71.html#JungYK01,https://doi.org/10.1016/S0951-8320(00)00067-3 +Andre Kleyner,A warranty forecasting model based on piecewise statistical distributions and stochastic simulation.,2005,88,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress88.html#KleynerS05,https://doi.org/10.1016/j.ress.2004.07.016 +Renyan Jiang,n-fold Weibull multiplicative model.,2001,74,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress74.html#JiangMJ01a,https://doi.org/10.1016/S0951-8320(01)00108-9 +Micaela Demichela,Recursive operability analysis of a complex plant with multiple protection devices.,2002,77,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress77.html#DemichelaMP02,https://doi.org/10.1016/S0951-8320(02)00063-7 +Serkan Eryilmaz,Estimation in coherent reliability systems through copulas.,2011,96,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress96.html#Eryilmaz11,https://doi.org/10.1016/j.ress.2010.12.024 +K. G. Papakonstantinou,Planning structural inspection and maintenance policies via dynamic programming and Markov processes. Part II: POMDP implementation.,2014,130,Rel. Eng. and Sys. Safety,,db/journals/ress/ress130.html#PapakonstantinouS14a,https://doi.org/10.1016/j.ress.2014.04.006 +Mohamed Khalifa,Reliability based inspection of nickel-based alloy welds in boiling water reactor environment.,2010,95,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress95.html#KhalifaKH10,https://doi.org/10.1016/j.ress.2009.12.003 +Man Cheol Kim,Reliability graph with general gates: an intuitive and practical method for system reliability analysis.,2002,78,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress78.html#KimS02,https://doi.org/10.1016/S0951-8320(02)00164-3 +Douglas L. Allaire,A variance-based sensitivity index function for factor prioritization.,2012,107,Rel. Eng. and Sys. Safety,,db/journals/ress/ress107.html#AllaireW12,https://doi.org/10.1016/j.ress.2011.08.007 +Dimitri V. Val,Decision analysis for deteriorating structures.,2005,87,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress87.html#ValS05,https://doi.org/10.1016/j.ress.2004.06.006 +Maria Hänninen,Influences of variables on ship collision probability in a Bayesian belief network model.,2012,102,Rel. Eng. and Sys. Safety,,db/journals/ress/ress102.html#HanninenK12,https://doi.org/10.1016/j.ress.2012.02.008 +Sai Zhang,An integrated modeling approach for event sequence development in multi-unit probabilistic risk assessment.,2016,155,Rel. Eng. and Sys. Safety,,db/journals/ress/ress155.html#ZhangTZ16,https://doi.org/10.1016/j.ress.2016.07.008 +Sofia Panagiotidou,Optimal integrated process control and maintenance under general deterioration.,2012,104,Rel. Eng. and Sys. Safety,,db/journals/ress/ress104.html#PanagiotidouT12,https://doi.org/10.1016/j.ress.2012.03.019 +Jae W. Kim,A systematic approach to analysing errors of commission from diagnosis failure in accident progression.,2005,89,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress89.html#KimJP05,https://doi.org/10.1016/j.ress.2004.08.021 +Torbjørn Bjerga,Adaptive risk management using new risk perspectives - an example from the oil and gas industry.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#BjergaA15,https://doi.org/10.1016/j.ress.2014.10.013 +Yves Dutuit,Efficient algorithms to assess component and gate importance in fault tree analysis.,2001,72,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress72.html#DutuitR01,https://doi.org/10.1016/S0951-8320(01)00004-7 +Claudio M. Rocco Sanseverino,Assessment of the transition-rates importance of Markovian systems at steady state using the unscented transformation.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#SanseverinoR15,https://doi.org/10.1016/j.ress.2015.05.019 +Yi-Kuei Lin,Evaluate the performance of a stochastic-flow network with cost attribute in terms of minimal cuts.,2006,91,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress91.html#Lin06,https://doi.org/10.1016/j.ress.2005.03.018 +Zineb Simeu-Abazi,A methodology of alarm filtering using dynamic fault tree.,2011,96,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress96.html#Simeu-AbaziLD11,https://doi.org/10.1016/j.ress.2010.09.005 +Jose Emmanuel Ramirez-Marquez,Optimization of system reliability in the presence of common cause failures.,2007,92,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress92.html#Ramirez-MarquezC07,https://doi.org/10.1016/j.ress.2006.09.004 +M. Carmen Carnero,An evaluation system of the setting up of predictive maintenance programmes.,2006,91,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress91.html#Carnero06,https://doi.org/10.1016/j.ress.2005.09.003 +Wei Li 0042,Optimal design of multi-state weighted k-out-of-n systems based on component design.,2008,93,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress93.html#LiZ08a,https://doi.org/10.1016/j.ress.2008.01.009 +Hyun Gook Kang,An analysis of safety-critical digital systems for risk-informed design.,2002,78,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress78.html#KangS02,https://doi.org/10.1016/S0951-8320(02)00176-X +Mustapha Nourelfath,Integrated preventive maintenance and production decisions for imperfect processes.,2016,148,Rel. Eng. and Sys. Safety,,db/journals/ress/ress148.html#NourelfathNB16,https://doi.org/10.1016/j.ress.2015.11.015 +J. K. Vrijling,"Response to comments by J. Ramsberg on the paper ""Acceptable risk as a basis for design"".",2000,67,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress67.html#VrijlingHH00,https://doi.org/10.1016/S0951-8320(99)00051-4 +Roger D. Braddock,Sensitivity analysis of the tsunami warning potential.,2003,79,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress79.html#Braddock03,https://doi.org/10.1016/S0951-8320(02)00233-8 +Hidemi Yamachi,Multi-objective genetic algorithm for solving N-version program design problem.,2006,91,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress91.html#YamachiTKY06,https://doi.org/10.1016/j.ress.2005.11.045 +Yi-Kuei Lin,Evaluate the system reliability for a manufacturing network with reworking actions.,2012,106,Rel. Eng. and Sys. Safety,,db/journals/ress/ress106.html#LinC12,https://doi.org/10.1016/j.ress.2012.05.011 +Julie Virta,Outgoing selectee rates at hub airports.,2002,76,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress76.html#VirtaJK02,https://doi.org/10.1016/S0951-8320(02)00004-2 +Jian-Hua Zhao,Reliability optimization using multiobjective ant colony system approaches.,2007,92,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress92.html#ZhaoLD07,https://doi.org/10.1016/j.ress.2005.12.001 +Sybert H. Stroeve,Agent-based organizational modelling for analysis of safety culture at an air navigation service provider.,2011,96,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress96.html#StroeveSK11,https://doi.org/10.1016/j.ress.2010.12.017 +Kerrie Unsworth,Goal hierarchy: Improving asset data quality by improving motivation.,2011,96,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress96.html#UnsworthAJDH11,https://doi.org/10.1016/j.ress.2011.06.003 +Dag Eirik Nordgård,Application of Bayesian networks for risk analysis of MV air insulated switch operation.,2010,95,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress95.html#NordgardS10,https://doi.org/10.1016/j.ress.2010.06.012 +Sebastián Martorell,RAMS+C informed decision-making with application to multi-objective optimization of technical specifications and maintenance using genetic algorithms.,2005,87,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress87.html#MartorellVCNSPS05,https://doi.org/10.1016/j.ress.2004.04.009 +Li Zhang,The simulator experimental study on the operator reliability of Qinshan nuclear power plant.,2007,92,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress92.html#ZhangHDH07,https://doi.org/10.1016/j.ress.2005.12.005 +Piero Baraldi,Comparing the treatment of uncertainty in Bayesian networks and fuzzy expert systems used for a human reliability analysis application.,2015,138,Rel. Eng. and Sys. Safety,,db/journals/ress/ress138.html#BaraldiPMZD15,https://doi.org/10.1016/j.ress.2015.01.016 +Francesco Cadini,Improved metamodel-based importance sampling for the performance assessment of radioactive waste repositories.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#CadiniGZ15,https://doi.org/10.1016/j.ress.2014.10.018 +Gregory Levitin,Defending majority voting systems against a strategic attacker.,2013,111,Rel. Eng. and Sys. Safety,,db/journals/ress/ress111.html#LevitinHB13,https://doi.org/10.1016/j.ress.2012.10.004 +Robert Eymard,Comparison of numerical methods for the assessment of production availability of a hybrid system.,2008,93,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress93.html#EymardM08,https://doi.org/10.1016/j.ress.2006.12.001 +Pierre-Yves Piriou,Generalized Boolean logic Driven Markov Processes: A powerful modeling framework for Model-Based Safety Analysis of dynamic repairable and reconfigurable systems.,2017,163,Rel. Eng. and Sys. Safety,,db/journals/ress/ress163.html#PiriouFL17,https://doi.org/10.1016/j.ress.2017.02.001 +Sungwhan Cho,Analysis of surveillance test interval by Markov process for SDS1 in CANDU nuclear power plants.,2008,93,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress93.html#ChoJ08,https://doi.org/10.1016/j.ress.2006.10.007 +L. F. Zhang,A study of two estimation approaches for parameters of Weibull distribution based on WPP.,2007,92,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress92.html#ZhangXT07,https://doi.org/10.1016/j.ress.2006.04.008 +Young Sik Yoon,Application of activity theory to analysis of human-related accidents: Method and case studies.,2016,150,Rel. Eng. and Sys. Safety,,db/journals/ress/ress150.html#YoonHY16,https://doi.org/10.1016/j.ress.2016.01.013 +Wei-Chang Yeh,An improved sum-of-disjoint-products technique for the symbolic network reliability analysis with known minimal paths.,2007,92,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress92.html#Yeh07,https://doi.org/10.1016/j.ress.2005.12.006 +Jinkyun Park,A systematic framework to investigate the coverage of abnormal operating procedures in nuclear power plants.,2015,138,Rel. Eng. and Sys. Safety,,db/journals/ress/ress138.html#ParkJ15a,https://doi.org/10.1016/j.ress.2015.01.013 +Yifan Zhou,An effective approach to reducing strategy space for maintenance optimisation of multistate series-parallel systems.,2015,138,Rel. Eng. and Sys. Safety,,db/journals/ress/ress138.html#ZhouLSBM15,https://doi.org/10.1016/j.ress.2015.01.018 +Karolina Wojciechowska,Practical derivation of operational dike failure probabilities.,2013,113,Rel. Eng. and Sys. Safety,,db/journals/ress/ress113.html#WojciechowskaK13,https://doi.org/10.1016/j.ress.2012.12.022 +Kyungmee O. Kim,Derating design for optimizing reliability and cost with an application to liquid rocket engines.,2016,146,Rel. Eng. and Sys. Safety,,db/journals/ress/ress146.html#KimRLZ16,https://doi.org/10.1016/j.ress.2015.10.005 +Harish D. Goel,Integrating reliability optimization into chemical process synthesis.,2002,78,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress78.html#GoelGHW02,https://doi.org/10.1016/S0951-8320(02)00167-9 +Sophie Bloch-Mercier,Optimal restarting distribution after repair for a Markov deteriorating system.,2001,74,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress74.html#Bloch-Mercier01,https://doi.org/10.1016/S0951-8320(01)00076-X +Antoine Grall,A condition-based maintenance policy for stochastically deteriorating systems.,2002,76,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress76.html#GrallBD02,https://doi.org/10.1016/S0951-8320(01)00148-X +Pedro Moreu De Leon,A practical method for the maintainability assessment in industrial devices using indicators and specific attributes.,2012,100,Rel. Eng. and Sys. Safety,,db/journals/ress/ress100.html#LeonDMM12,https://doi.org/10.1016/j.ress.2011.12.018 +Ben J. M. Ale,Editorial Special Issue ESREL 2010.,2012,105,Rel. Eng. and Sys. Safety,,db/journals/ress/ress105.html#AlePZ12,https://doi.org/10.1016/j.ress.2012.06.015 +Rómulo I. Zequeira,Periodic imperfect preventive maintenance with two categories of competing failure modes.,2006,91,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress91.html#ZequeiraB06,https://doi.org/10.1016/j.ress.2005.03.009 +Zhigang Tian,Redundancy allocation for multi-state systems using physical programming and genetic algorithms.,2006,91,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress91.html#TianZ06,https://doi.org/10.1016/j.ress.2005.11.039 +Ada Fort,Fault tolerant design of a field data modular readout architecture for railway applications.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#FortMVGP15,https://doi.org/10.1016/j.ress.2015.06.008 +Roy Billinton,Generating capacity adequacy evaluation of small stand-alone power systems containing solar energy.,2006,91,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress91.html#BillintonB06,https://doi.org/10.1016/j.ress.2005.03.002 +Janusz Górski,Trust case: justifying trust in an IT solution.,2005,89,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress89.html#GorskiJLMO05,https://doi.org/10.1016/j.ress.2004.08.005 +Claudio Rocco,Robust design using a hybrid-cellular-evolutionary and interval-arithmetic approach: a reliability application.,2003,79,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress79.html#RoccoMC03,https://doi.org/10.1016/S0951-8320(02)00226-0 +Sankaran Mahadevan,Damage tolerance reliability analysis of automotive spot-welded joints.,2003,81,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress81.html#MahadevanN03,https://doi.org/10.1016/S0951-8320(03)00057-7 +Tomaz Bucar,Reliability approximation using finite Weibull mixture distributions.,2004,84,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress84.html#BucarNF04,https://doi.org/10.1016/j.ress.2003.11.008 +Yi-Feng Wang,Automatic hazard analysis of batch operations with Petri nets.,2002,76,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress76.html#WangWC02,https://doi.org/10.1016/S0951-8320(02)00002-9 +Daohua Wu,Formal model-based quantitative safety analysis using timed Coloured Petri Nets.,2018,176,Rel. Eng. and Sys. Safety,,db/journals/ress/ress176.html#WuZ18,https://doi.org/10.1016/j.ress.2018.03.035 +Juan Eloy Ruiz-Castro,Discrete-time Markovian arrival processes to model multi-state complex systems with loss of units and an indeterminate variable number of repairpersons.,2018,174,Rel. Eng. and Sys. Safety,,db/journals/ress/ress174.html#Ruiz-CastroDA18,https://doi.org/10.1016/j.ress.2018.02.019 +Pascal Poisson,Design of a safety control system to improve the verification step in machinery lockout procedures: A case study.,2016,156,Rel. Eng. and Sys. Safety,,db/journals/ress/ress156.html#PoissonCJ16,https://doi.org/10.1016/j.ress.2016.07.016 +Dusmanta Kumar Mohanta,Deterministic and stochastic approach for safety and reliability optimization of captive power plant maintenance scheduling using GA/SA-based hybrid techniques: A comparison of results.,2007,92,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress92.html#MohantaSC07,https://doi.org/10.1016/j.ress.2005.11.062 +Wei-Chang Yeh,A new cut-based algorithm for the multi-state flow network reliability problem.,2015,136,Rel. Eng. and Sys. Safety,,db/journals/ress/ress136.html#YehBH15,https://doi.org/10.1016/j.ress.2014.11.010 +Biao Lu,Opportunistic preventive maintenance scheduling for serial-parallel multistage manufacturing systems with multiple streams of deterioration.,2017,168,Rel. Eng. and Sys. Safety,,db/journals/ress/ress168.html#LuZ17,https://doi.org/10.1016/j.ress.2017.05.017 +Songqing Shan,Reliable design space and complete single-loop reliability-based design optimization.,2008,93,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress93.html#ShanW08,https://doi.org/10.1016/j.ress.2007.07.006 +Severino F. Galán,Incorporating organizational factors into probabilistic safety assessment of nuclear power plants through canonical probabilistic models.,2007,92,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress92.html#GalanMI07,https://doi.org/10.1016/j.ress.2006.07.006 +Yutae Lee,"Comments on ""Comparative analysis of standby systems with unreliable server and switching failure"" [Relib Eng Syst Saf 2016* 145: 74-82].",2017,160,Rel. Eng. and Sys. Safety,,db/journals/ress/ress160.html#Lee17,https://doi.org/10.1016/j.ress.2016.11.005 +Lei Cheng 0002,Application of Rejection Sampling based methodology to variance based parametric sensitivity analysis.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#ChengLZ15,https://doi.org/10.1016/j.ress.2015.04.020 +Mohamed-Chahir Fitouhi,Performance evaluation of a two-machine line with a finite buffer and condition-based maintenance.,2017,166,Rel. Eng. and Sys. Safety,,db/journals/ress/ress166.html#FitouhiNG17,https://doi.org/10.1016/j.ress.2017.03.034 +J. H. Lim,Age replacement policy based on imperfect repair with random probability.,2016,149,Rel. Eng. and Sys. Safety,,db/journals/ress/ress149.html#LimQZ16,https://doi.org/10.1016/j.ress.2015.10.020 +Vasilis P. Koutras,On the optimization of free resources using non-homogeneous Markov chain software rejuvenation model.,2007,92,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress92.html#KoutrasPG07,https://doi.org/10.1016/j.ress.2006.09.017 +Dominic Furniss,A resilience markers framework for small teams.,2011,96,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress96.html#FurnissBBHB11,https://doi.org/10.1016/j.ress.2010.06.025 +Corwin L. Atwood,The binomial failure rate common-cause model with WinBUGS.,2009,94,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress94.html#AtwoodK09,https://doi.org/10.1016/j.ress.2008.11.007 +Elena N. Zaitseva,Importance analysis based on logical differential calculus and Binary Decision Diagram.,2015,138,Rel. Eng. and Sys. Safety,,db/journals/ress/ress138.html#ZaitsevaLK15,https://doi.org/10.1016/j.ress.2015.01.009 +Mark-Alexander Sujan,An organisation without a memory: A qualitative study of hospital staff perceptions on reporting and organisational learning for patient safety.,2015,144,Rel. Eng. and Sys. Safety,,db/journals/ress/ress144.html#Sujan15,https://doi.org/10.1016/j.ress.2015.07.011 +Kyungmee O. Kim,A new reliability allocation weight for reducing the occurrence of severe failure effects.,2013,117,Rel. Eng. and Sys. Safety,,db/journals/ress/ress117.html#KimYZ13,https://doi.org/10.1016/j.ress.2013.04.002 +Paul G. Constantine,Global sensitivity metrics from active subspaces.,2017,162,Rel. Eng. and Sys. Safety,,db/journals/ress/ress162.html#ConstantineD17,https://doi.org/10.1016/j.ress.2017.01.013 +S. S. Rao,Probabilistic approach to manipulator kinematics and dynamics.,2001,72,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress72.html#RaoB01,https://doi.org/10.1016/S0951-8320(00)00106-X +Jaime Santos-Reyes,"Applying MORT to the analysis of the ""Tláhuac"" incident.",2009,94,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress94.html#Santos-ReyesOAH09,https://doi.org/10.1016/j.ress.2009.02.019 +Amos E. Gera,Accommodating degradation results within a qualification procedure.,2001,72,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress72.html#Gera01,https://doi.org/10.1016/S0951-8320(00)00107-1 +Mohammad Pourgol-Mohamad,Methodology for the use of experimental data to enhance model output uncertainty assessment in thermal hydraulics codes.,2010,95,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress95.html#Pourgol-MohamadMM10,https://doi.org/10.1016/j.ress.2009.08.003 +Shamus P. Smith,Measuring reuse in hazard analysis.,2005,89,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress89.html#SmithH05,https://doi.org/10.1016/j.ress.2004.08.010 +S. Apeland,Risk based maintenance optimization: foundational issues.,2000,67,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress67.html#ApelandA00,https://doi.org/10.1016/S0951-8320(99)00068-X +Terje Aven,Reliability and validity of risk analysis.,2009,94,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress94.html#AvenH09,https://doi.org/10.1016/j.ress.2009.06.003 +Cinzia Bernardeschi,Formal validation of fault-tolerance mechanisms inside GUARDS.,2001,71,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress71.html#BernardeschiFG01,https://doi.org/10.1016/S0951-8320(00)00078-8 +Eirik Bjorheim Abrahamsen,Using the ALARP principle for safety management in the energy production sector of chemical industry.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#AbrahamsenAMS18,https://doi.org/10.1016/j.ress.2017.08.014 +Jalal Safari,Multi-objective reliability optimization of series-parallel systems with a choice of redundancy strategies.,2012,108,Rel. Eng. and Sys. Safety,,db/journals/ress/ress108.html#Safari12,https://doi.org/10.1016/j.ress.2012.06.001 +Jinkyun Park,OPERA - a human performance database under simulated emergencies of nuclear power plants.,2007,92,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress92.html#ParkJ07,https://doi.org/10.1016/j.ress.2006.01.007 +Liudong Xing,Reliability analysis of hierarchical computer-based systems subject to common-cause failures.,2007,92,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress92.html#XingMD07,https://doi.org/10.1016/j.ress.2006.04.010 +Nima Khakzad,Cost-effective fire protection of chemical plants against domino effects.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#KhakzadLCRP18,https://doi.org/10.1016/j.ress.2017.09.007 +Maxim Finkelstein,Shocks in homogeneous and heterogeneous populations.,2007,92,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress92.html#Finkelstein07,https://doi.org/10.1016/j.ress.2006.05.006 +Naji Bricha,Protection of warehouses and plants under capacity constraint.,2015,138,Rel. Eng. and Sys. Safety,,db/journals/ress/ress138.html#BrichaN15,https://doi.org/10.1016/j.ress.2015.01.003 +Wahid Ali,Measuring the reliability of a natural gas refrigeration plant: Uncertainty propagation and quantification with polynomial chaos expansion based sensitivity analysis.,2018,172,Rel. Eng. and Sys. Safety,,db/journals/ress/ress172.html#AliDKGL18,https://doi.org/10.1016/j.ress.2017.12.009 +Enrico Zio,Building confidence in the reliability assessment of thermal-hydraulic passive systems.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#ZioP09,https://doi.org/10.1016/j.ress.2008.03.006 +Yan-Hui Lin,A comparison between Monte Carlo simulation and finite-volume scheme for reliability assessment of multi-state physics systems.,2018,174,Rel. Eng. and Sys. Safety,,db/journals/ress/ress174.html#LinLZ18,https://doi.org/10.1016/j.ress.2018.01.008 +Chang Kwang Pil,Reliability assessment of reliquefaction systems on LNG carriers.,2008,93,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress93.html#PilRV08,https://doi.org/10.1016/j.ress.2006.11.005 +Jayadipta Ghosh,Consideration of time-evolving capacity distributions and improved degradation models for seismic fragility assessment of aging highway bridges.,2016,154,Rel. Eng. and Sys. Safety,,db/journals/ress/ress154.html#GhoshS16,https://doi.org/10.1016/j.ress.2016.06.001 +Magdi Sami Moustafa,Rejoinder on Amari's comments: transient analysis of reliability with and without repair of K-out-of-N: G systems with M failure modes.,2000,67,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress67.html#Moustafa00,https://doi.org/10.1016/S0951-8320(99)00055-1 +Terje Aven,Supplementing quantitative risk assessments with a stage addressing the risk understanding of the decision maker.,2016,152,Rel. Eng. and Sys. Safety,,db/journals/ress/ress152.html#Aven16b,https://doi.org/10.1016/j.ress.2016.03.003 +Weidong Wu,Uncertainty analysis and allocation of joint tolerances in robot manipulators based on interval analysis.,2007,92,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress92.html#WuR07,https://doi.org/10.1016/j.ress.2005.11.009 +David Bigaud,Time-variant flexural reliability of RC beams with externally bonded CFRP under combined fatigue-corrosion actions.,2014,131,Rel. Eng. and Sys. Safety,,db/journals/ress/ress131.html#BigaudA14,https://doi.org/10.1016/j.ress.2014.04.016 +Dong-Han Ham,The effects of presenting functionally abstracted information in fault diagnosis tasks.,2001,73,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress73.html#HamY01,https://doi.org/10.1016/S0951-8320(01)00053-9 +Ronald L. Iman,Assessing hurricane effects. Part 2. Uncertainty analysis.,2002,78,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress78.html#ImanJS02a,https://doi.org/10.1016/S0951-8320(02)00134-5 +Francesc Carreras,A performance index for semicoherent structures.,2004,83,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress83.html#CarrerasFP04,https://doi.org/10.1016/j.ress.2003.10.006 +Charles Elegbede,Availability allocation to repairable systems with genetic algorithms: a multi-objective formulation.,2003,82,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress82.html#ElegbedeA03,https://doi.org/10.1016/j.ress.2003.08.001 +J. H. Seo,Lifetime and reliability estimation of repairable redundant system subject to periodic alternation.,2003,80,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress80.html#SeoJB03,https://doi.org/10.1016/S0951-8320(03)00030-9 +Jinkyun Park,Comparing the complexity of procedural steps with the operators' performance observed under stressful conditions.,2004,83,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress83.html#ParkKJ04,https://doi.org/10.1016/j.ress.2003.09.001 +Ji Hwan Cha,Some notes on unobserved parameters (frailties) in reliability modeling.,2014,123,Rel. Eng. and Sys. Safety,,db/journals/ress/ress123.html#ChaF14,https://doi.org/10.1016/j.ress.2013.10.008 +Petr Volf,On selection of optimal stochastic model for accelerated life testing.,2014,131,Rel. Eng. and Sys. Safety,,db/journals/ress/ress131.html#VolfT14,https://doi.org/10.1016/j.ress.2014.04.015 +Bo Sun,A stochastic process based reliability prediction method for LED driver.,2018,178,Rel. Eng. and Sys. Safety,,db/journals/ress/ress178.html#SunFDCZ18,https://doi.org/10.1016/j.ress.2018.06.001 +Panagiotis Tsarouhas,Classification and calculation of primary failure modes in bread production line.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#Tsarouhas09,https://doi.org/10.1016/j.ress.2008.06.014 +Gregory Levitin,Importance of protections against intentional attacks.,2008,93,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress93.html#LevitinB08,https://doi.org/10.1016/j.ress.2007.03.016 +Kyungmee O. Kim,Two fault classification methods for large systems when available data are limited.,2007,92,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress92.html#KimZ07,https://doi.org/10.1016/j.ress.2006.02.001 +Seung Dong Lee,A framework for evaluating hydrogen control and management.,2003,82,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress82.html#LeeSJ03,https://doi.org/10.1016/S0951-8320(03)00178-9 +Anatoly Lisnianski,On sensitivity analysis of aging multi-state system by using LZ-transform.,2017,166,Rel. Eng. and Sys. Safety,,db/journals/ress/ress166.html#LisnianskiFK17,https://doi.org/10.1016/j.ress.2016.12.001 +Hua Ke,Block replacement policy with uncertain life*.,2016,148,Rel. Eng. and Sys. Safety,,db/journals/ress/ress148.html#KeY16,https://doi.org/10.1016/j.ress.2015.12.008 +Philipp Limbourg,Accelerated uncertainty propagation in two-level probabilistic studies under monotony.,2010,95,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress95.html#LimbourgRA10,https://doi.org/10.1016/j.ress.2010.04.012 +Mingchih Chen,Optimal redundant systems for works with random processing time.,2013,116,Rel. Eng. and Sys. Safety,,db/journals/ress/ress116.html#ChenN13,https://doi.org/10.1016/j.ress.2013.02.009 +Jean-Francois Castet,Satellite and satellite subsystems reliability: Statistical data analysis and modeling.,2009,94,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress94.html#CastetS09,https://doi.org/10.1016/j.ress.2009.05.004 +Nadeem A. Siddiqui,Reliability analysis of projectile penetration into geological targets.,2002,78,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress78.html#SiddiquiCA02,https://doi.org/10.1016/S0951-8320(02)00050-9 +Muhammad Ali Imron,Structure and sensitivity analysis of individual-based predator-prey models.,2012,107,Rel. Eng. and Sys. Safety,,db/journals/ress/ress107.html#ImronGB12,https://doi.org/10.1016/j.ress.2011.07.005 +Raphaël Schoenig,An aggregation method of Markov graphs for the reliability analysis of hybrid systems.,2006,91,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress91.html#SchoenigACH06,https://doi.org/10.1016/j.ress.2005.03.007 +Kjell Hausken,Minmax defense strategy for complex multi-state systems.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#HauskenL09,https://doi.org/10.1016/j.ress.2008.06.005 +Luyi Li,A new kind of regional importance measure of the input variable and its state dependent parameter solution.,2014,128,Rel. Eng. and Sys. Safety,,db/journals/ress/ress128.html#LiLH14,https://doi.org/10.1016/j.ress.2014.03.008 +Nicola Paltrinieri,Assessment and comparison of two early warning indicator methods in the perspective of prevention of atypical accident scenarios.,2012,108,Rel. Eng. and Sys. Safety,,db/journals/ress/ress108.html#PaltrinieriOC12,https://doi.org/10.1016/j.ress.2012.06.017 +Huan Wang,Planning of step-stress accelerated degradation test based on the inverse Gaussian process.,2016,154,Rel. Eng. and Sys. Safety,,db/journals/ress/ress154.html#WangWD16,https://doi.org/10.1016/j.ress.2016.05.018 +Reza Ahmadi,Maintenance scheduling of a manufacturing system subject to deterioration.,2011,96,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress96.html#AhmadiN11,https://doi.org/10.1016/j.ress.2011.05.004 +Qinghui Suo,Corrosion cracking prediction updating of deteriorating RC structures using inspection information.,2009,94,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress94.html#SuoS09,https://doi.org/10.1016/j.ress.2009.02.011 +Gregory Levitin,Reliability of non-repairable phased-mission systems with propagated failures.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#LevitinXAD13,https://doi.org/10.1016/j.ress.2013.06.005 +Jian Li,Connectivity reliability and topological controllability of infrastructure networks: A comparative assessment.,2016,156,Rel. Eng. and Sys. Safety,,db/journals/ress/ress156.html#LiDCS16,https://doi.org/10.1016/j.ress.2016.07.003 +Dante Gama Dessavre,Multidimensional approach to complex system resilience analysis.,2016,149,Rel. Eng. and Sys. Safety,,db/journals/ress/ress149.html#DessavreRB16,https://doi.org/10.1016/j.ress.2015.12.009 +Debora Gatelli,Calculating first-order sensitivity measures: A benchmark of some recent methodologies.,2009,94,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress94.html#GatelliKRT09,https://doi.org/10.1016/j.ress.2008.03.028 +Terje Aven,Implementing the Bayesian paradigm in risk analysis.,2002,78,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress78.html#AvenK02,https://doi.org/10.1016/S0951-8320(02)00161-8 +Glen D. Murphy,Testing a tri-partite contingent model of engineering cultures: A pilot study.,2010,95,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress95.html#Murphy10,https://doi.org/10.1016/j.ress.2010.04.013 +Man Cheol Kim,An analytic model for situation assessment of nuclear power plant operators based on Bayesian inference.,2006,91,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress91.html#KimS06,https://doi.org/10.1016/j.ress.2005.01.012 +Sebastián Martorell,Comparing effectiveness and efficiency in technical specifications and maintenance optimization.,2002,77,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress77.html#MartorellSCS02,https://doi.org/10.1016/S0951-8320(02)00061-3 +Enze Zhang,A practical approach for solving multi-objective reliability redundancy allocation problems using extended bare-bones particle swarm optimization.,2014,127,Rel. Eng. and Sys. Safety,,db/journals/ress/ress127.html#ZhangWC14,https://doi.org/10.1016/j.ress.2014.03.006 +Jakub Montewka,On a systematic perspective on risk for formal safety assessment (FSA).,2014,127,Rel. Eng. and Sys. Safety,,db/journals/ress/ress127.html#MontewkaGK14,https://doi.org/10.1016/j.ress.2014.03.009 +Carlo Clarotti,Detection of equipment aging and determination of the efficiency of a corrective measure.,2004,84,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress84.html#ClarottiLOP04,https://doi.org/10.1016/j.ress.2004.01.005 +Márcio das Chagas Moura,Mathematical formulation and numerical treatment based on transition frequency densities and quadrature methods for non-homogeneous semi-Markov processes.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#MouraD09,https://doi.org/10.1016/j.ress.2008.03.032 +Gregory Levitin,Optimal structure of fault-tolerant software systems.,2005,89,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress89.html#Levitin05a,https://doi.org/10.1016/j.ress.2004.09.001 +Eric VanDerHorn,Bayesian model updating with summarized statistical and reliability data.,2018,172,Rel. Eng. and Sys. Safety,,db/journals/ress/ress172.html#VanDerHornM18,https://doi.org/10.1016/j.ress.2017.11.023 +He Yi,Distribution and availability for aggregated second-order semi-Markov ternary system with working time omission.,2017,166,Rel. Eng. and Sys. Safety,,db/journals/ress/ress166.html#YiC17,https://doi.org/10.1016/j.ress.2016.11.025 +Mohamed Chookah,A probabilistic physics-of-failure model for prognostic health management of structures subject to pitting and corrosion-fatigue.,2011,96,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress96.html#ChookahNM11,https://doi.org/10.1016/j.ress.2011.07.007 +Mehmet Savsar,Modeling of machine failures in a flexible manufacturing cell with two machines served by a robot.,2008,93,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress93.html#SavsarA08,https://doi.org/10.1016/j.ress.2007.06.002 +André D. Orcesi,A bridge network maintenance framework for Pareto optimization of stakeholders/users costs.,2010,95,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress95.html#OrcesiC10,https://doi.org/10.1016/j.ress.2010.06.013 +Wei Wang,Three-loop Monte Carlo simulation approach to Multi-State Physics Modeling for system reliability assessment.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#WangMZ17,https://doi.org/10.1016/j.ress.2017.06.003 +Yiannis Papadopoulos,Model-based system monitoring and diagnosis of failures using statecharts and fault trees.,2003,81,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress81.html#Papadopoulos03,https://doi.org/10.1016/S0951-8320(03)00095-4 +Lizhi Wang,A Bayesian reliability evaluation method with different types of data from multiple sources.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#WangPWFX17,https://doi.org/10.1016/j.ress.2017.05.039 +G. Deman,Sensitivity analysis of groundwater lifetime expectancy to hydro-dispersive parameters: The case of ANDRA Meuse/Haute-Marne site.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#DemanKBP15,https://doi.org/10.1016/j.ress.2014.08.005 +Huy T. Tran,A framework for the quantitative assessment of performance-based system resilience.,2017,158,Rel. Eng. and Sys. Safety,,db/journals/ress/ress158.html#TranBDM17,https://doi.org/10.1016/j.ress.2016.10.014 +Guang Jin,A Bayesian framework for on-line degradation assessment and residual life prediction of secondary batteries in spacecraft.,2013,113,Rel. Eng. and Sys. Safety,,db/journals/ress/ress113.html#JinMZ13,https://doi.org/10.1016/j.ress.2012.12.011 +Xiaojun Zhou,Preventive maintenance modeling for multi-component systems with considering stochastic failures and disassembly sequence.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#ZhouHXL15,https://doi.org/10.1016/j.ress.2015.05.005 +Günter Becker,A semi-Markovian model allowing for inhomogenities with respect to process time.,2000,70,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress70.html#BeckerCZ00,https://doi.org/10.1016/S0951-8320(00)00044-2 +Branka Subotic,Controller recovery from equipment failures in air traffic control: A framework for the quantitative assessment of the recovery context.,2014,132,Rel. Eng. and Sys. Safety,,db/journals/ress/ress132.html#SuboticSMO14,https://doi.org/10.1016/j.ress.2014.06.010 +V. Bartolozzi,Qualitative models of equipment units and their use in automatic HAZOP analysis.,2000,70,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress70.html#BartolozziCPG00,https://doi.org/10.1016/S0951-8320(00)00042-9 +Wei-Chang Yeh,Search for all MCs in networks with unreliable nodes and arcs.,2003,79,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress79.html#Yeh03,https://doi.org/10.1016/S0951-8320(02)00199-0 +Jussi K. Vaurio,A recursive method for breaking complex logic loops in Boolean system models.,2007,92,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress92.html#Vaurio07b,https://doi.org/10.1016/j.ress.2006.09.020 +Alfredo H.-S. Ang,Cost optimal design of R/C buildings.,2001,73,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress73.html#AngL01,https://doi.org/10.1016/S0951-8320(01)00058-8 +Takehisa Kohda,Risk-based reconfiguration of safety monitoring system using dynamic Bayesian network.,2007,92,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress92.html#KohdaC07,https://doi.org/10.1016/j.ress.2006.09.012 +Jinyong Wang,Study of the nonlinear imperfect software debugging model.,2016,153,Rel. Eng. and Sys. Safety,,db/journals/ress/ress153.html#WangW16,https://doi.org/10.1016/j.ress.2016.05.003 +Liudong Xing,Combinatorial analysis of systems with competing failures subject to failure isolation and propagation effects.,2010,95,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress95.html#XingL10,https://doi.org/10.1016/j.ress.2010.06.014 +Aref Majdara,Component-based modeling of systems for automated fault tree generation.,2009,94,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress94.html#MajdaraW09,https://doi.org/10.1016/j.ress.2008.12.003 +Zupei Shen,An exact algorithm dealing with shared signals in the GO methodology.,2001,73,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress73.html#ShenGH01,https://doi.org/10.1016/S0951-8320(01)00035-7 +Laurent Cauffriez,Design of intelligent distributed control systems: a dependability point of view.,2004,84,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress84.html#CauffriezCCBa04,https://doi.org/10.1016/S0951-8320(03)00174-1 +Ettore Bompard,Assessment of information impacts in power system security against malicious attacks in a general framework.,2009,94,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress94.html#BompardNX09,https://doi.org/10.1016/j.ress.2009.01.002 +Hichem Boudali,A discrete-time Bayesian network reliability modeling and analysis framework.,2005,87,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress87.html#BoudaliD05,https://doi.org/10.1016/j.ress.2004.06.004 +Helge Langseth,Inference in hybrid Bayesian networks.,2009,94,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress94.html#LangsethNRS09,https://doi.org/10.1016/j.ress.2009.02.027 +Mehmet Savsar,Reliability analysis of a flexible manufacturing cell.,2000,67,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress67.html#Savsar00,https://doi.org/10.1016/S0951-8320(99)00056-3 +Clint Steele,Use of the lognormal distribution for the coefficients of friction and wear.,2008,93,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress93.html#Steele08,https://doi.org/10.1016/j.ress.2007.09.005 +Koosha Rafiee,Reliability assessment of competing risks with generalized mixed shock models.,2017,159,Rel. Eng. and Sys. Safety,,db/journals/ress/ress159.html#RafieeFC17,https://doi.org/10.1016/j.ress.2016.10.006 +G. Deman,Using sparse polynomial chaos expansions for the global sensitivity analysis of groundwater lifetime expectancy in a multi-layered hydrogeological model.,2016,147,Rel. Eng. and Sys. Safety,,db/journals/ress/ress147.html#DemanKSKPB16,https://doi.org/10.1016/j.ress.2015.11.005 +Qiujing Pan,Sliced inverse regression-based sparse polynomial chaos expansions for reliability analysis in high dimensions.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#PanD17,https://doi.org/10.1016/j.ress.2017.06.026 +Yu Liu 0006,A new simulation model for assessing aircraft emergency evacuation considering passenger physical characteristics.,2014,121,Rel. Eng. and Sys. Safety,,db/journals/ress/ress121.html#LiuWHLY14,https://doi.org/10.1016/j.ress.2013.09.001 +Terje Aven,Identification of safety and security critical systems and activities.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#Aven09,https://doi.org/10.1016/j.ress.2008.04.001 +Xinhu Cao,Simulation-based catastrophe-induced port loss estimation.,2018,175,Rel. Eng. and Sys. Safety,,db/journals/ress/ress175.html#CaoL18,https://doi.org/10.1016/j.ress.2018.02.008 +Terje Aven,A delay-time model with safety constraint.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#AvenC09,https://doi.org/10.1016/j.ress.2008.03.004 +Lisa M. Bartlett,An ordering heuristic to develop the binary decision diagram based on structural importance.,2001,72,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress72.html#BartlettA01,https://doi.org/10.1016/S0951-8320(00)00103-4 +Kouroush Jenab,Dynamic reliability networks with self-healing units.,2008,93,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress93.html#JenabHD08,https://doi.org/10.1016/j.ress.2007.03.021 +Xufeng Zhao,Comparisons of replacement policies with periodic * and repair numbers.,2017,168,Rel. Eng. and Sys. Safety,,db/journals/ress/ress168.html#ZhaoQN17,https://doi.org/10.1016/j.ress.2017.05.015 +Roger Flage,Emerging risk - Conceptual definition and a relation to black swan type of events.,2015,144,Rel. Eng. and Sys. Safety,,db/journals/ress/ress144.html#FlageA15,https://doi.org/10.1016/j.ress.2015.07.008 +Zhenyu Yan,Cross-classified hierarchical Bayesian models for risk-based analysis of complex systems under sparse data.,2010,95,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress95.html#YanH10,https://doi.org/10.1016/j.ress.2010.02.014 +F. Faghihi,Level-1 probability safety assessment of the Iranian heavy water reactor using SAPHIRE software.,2008,93,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress93.html#FaghihiRYM08,https://doi.org/10.1016/j.ress.2007.10.002 +Niels Lind,Time effects in criteria for acceptable risk.,2002,78,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress78.html#Lind02a,https://doi.org/10.1016/S0951-8320(02)00052-2 +Andrew C. Kadak,The nuclear industry's transition to risk-informed regulation and operation in the United States.,2007,92,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress92.html#KadakM07,https://doi.org/10.1016/j.ress.2006.02.004 +Xiaogang Song,A stochastic approach for the reliability evaluation of multi-state systems with dependent components.,2018,170,Rel. Eng. and Sys. Safety,,db/journals/ress/ress170.html#SongZLH18,https://doi.org/10.1016/j.ress.2017.10.015 +Baoping Cai,Using Bayesian networks in reliability evaluation for subsea blowout preventer control system.,2012,108,Rel. Eng. and Sys. Safety,,db/journals/ress/ress108.html#CaiLLTDY12,https://doi.org/10.1016/j.ress.2012.07.006 +Qiao Liu,A new computational method of a moment-independent uncertainty importance measure.,2009,94,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress94.html#LiuH09a,https://doi.org/10.1016/j.ress.2008.10.005 +Ilya M. Sobol,Theorems and examples on high dimensional model representation.,2003,79,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress79.html#Sobol03,https://doi.org/10.1016/S0951-8320(02)00229-6 +Edward Korczak,Survivability of systems under multiple factor impact.,2007,92,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress92.html#KorczakL07,https://doi.org/10.1016/j.ress.2005.11.057 +S. M. Godoy,STRRAP system - A software for hazardous materials risk assessment and safe distances calculation.,2007,92,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress92.html#GodoyCS07,https://doi.org/10.1016/j.ress.2006.02.012 +Rodrigo Pascual,Optimal replacement and overhaul decisions with imperfect maintenance and warranty contracts.,2006,91,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress91.html#PascualO06,https://doi.org/10.1016/j.ress.2005.01.018 +Zhigang Huang,Long-term hurricane risk assessment and expected damage to residential structures.,2001,74,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress74.html#HuangRS01,https://doi.org/10.1016/S0951-8320(01)00086-2 +Yang Zhang,Maintenance processes modelling and optimisation.,2017,168,Rel. Eng. and Sys. Safety,,db/journals/ress/ress168.html#ZhangARK17,https://doi.org/10.1016/j.ress.2017.02.011 +John D. Andrews,Fast mission reliability prediction for Unmanned Aerial Vehicles.,2013,120,Rel. Eng. and Sys. Safety,,db/journals/ress/ress120.html#AndrewsPC13,https://doi.org/10.1016/j.ress.2013.03.002 +Zhou Yan,Improving efficiency of solving d-MC problem in stochastic-flow network.,2007,92,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress92.html#YanQ07,https://doi.org/10.1016/j.ress.2005.11.006 +Maxime Monnin,Dynamic behavioural model for assessing impact of regeneration actions on system availability: Application to weapon systems.,2011,96,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress96.html#MonninIS11,https://doi.org/10.1016/j.ress.2010.10.002 +Burkhard Forell,Technical reliability of active fire protection features - generic database derived from German nuclear power plants.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#ForellPER16,https://doi.org/10.1016/j.ress.2015.09.010 +Gregory Levitin,Mission abort policy balancing the uncompleted mission penalty and system loss risk.,2018,176,Rel. Eng. and Sys. Safety,,db/journals/ress/ress176.html#LevitinFD18a,https://doi.org/10.1016/j.ress.2018.04.013 +Jing Zhang,The role of risk preferences in a multi-target defender-attacker resource allocation game.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#ZhangZJ18,https://doi.org/10.1016/j.ress.2017.08.002 +Gregory Levitin,Data survivability vs. security in information systems.,2012,100,Rel. Eng. and Sys. Safety,,db/journals/ress/ress100.html#LevitinHTC12,https://doi.org/10.1016/j.ress.2011.12.015 +Antoine Rauzy,Towards a sound semantics for dynamic fault trees.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#RauzyB15,https://doi.org/10.1016/j.ress.2015.04.017 +J. H. Park,Stress-reducing preventive maintenance model for a unit under stressful environment.,2012,108,Rel. Eng. and Sys. Safety,,db/journals/ress/ress108.html#ParkCL12,https://doi.org/10.1016/j.ress.2012.06.021 +H. B. Liu,A new uncertainty propagation method for problems with parameterized probability-boxes.,2018,172,Rel. Eng. and Sys. Safety,,db/journals/ress/ress172.html#LiuJJLZG18,https://doi.org/10.1016/j.ress.2017.12.004 +Yanping Xiang,Service task partition and distribution in star topology computer grid subject to data security constraints.,2011,96,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress96.html#XiangL11,https://doi.org/10.1016/j.ress.2011.06.013 +L. L. Philipson,Sampling of uncertain probabilities at event tree nodes with multiple branches.,2000,70,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress70.html#PhilipsonW00,https://doi.org/10.1016/S0951-8320(00)00061-2 +Hidemi Yamachi,"Reply to ""Multi-objective genetic algorithm for solving N-version program design problem"": [Reliabil Eng Syst Saf 91 (2006) 1083-1094].",2008,93,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress93.html#Yamachi08,https://doi.org/10.1016/j.ress.2007.06.006 +Azzelarabe Taleb-Bendiab,A principled approach to the design of healthcare systems: Autonomy vs. governance.,2006,91,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress91.html#Taleb-BendiabERMM06,https://doi.org/10.1016/j.ress.2006.01.011 +Anand Pillay,Modified failure mode and effects analysis using approximate reasoning.,2003,79,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress79.html#PillayW03,https://doi.org/10.1016/S0951-8320(02)00179-5 +Renyan Jiang,A study of Weibull shape parameter: Properties and significance.,2011,96,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress96.html#JiangM11,https://doi.org/10.1016/j.ress.2011.09.003 +Jon T. Selvik,A framework for reliability and risk centered maintenance.,2011,96,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress96.html#SelvikA11,https://doi.org/10.1016/j.ress.2010.08.001 +Yanlu Zhang,Research on robustness of R and D network under cascading propagation of risk with gray attack information.,2013,117,Rel. Eng. and Sys. Safety,,db/journals/ress/ress117.html#ZhangY13,https://doi.org/10.1016/j.ress.2013.03.009 +Chaoyang Xie,An integrated QMU approach to structural reliability assessment based on evidence theory and kriging model with adaptive sampling.,2018,171,Rel. Eng. and Sys. Safety,,db/journals/ress/ress171.html#XieLW18,https://doi.org/10.1016/j.ress.2017.11.014 +Liu Hong,Vulnerability effects of passengers' intermodal transfer distance preference and subway expansion on complementary urban public transportation systems.,2017,158,Rel. Eng. and Sys. Safety,,db/journals/ress/ress158.html#HongYOTH17,https://doi.org/10.1016/j.ress.2016.10.001 +Christelle Vergé,An island particle algorithm for rare event analysis.,2016,149,Rel. Eng. and Sys. Safety,,db/journals/ress/ress149.html#VergeMM16,https://doi.org/10.1016/j.ress.2015.11.017 +Enrico Zio,Safety and reliability for managing risk.,2008,93,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress93.html#ZioS08,https://doi.org/10.1016/j.ress.2008.03.019 +Rizwan Ahmad Khan,Reliability analysis of TLP tethers under impulsive loading.,2006,91,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress91.html#KhanSNA06,https://doi.org/10.1016/j.ress.2004.11.010 +Paloma Main,Analyzing the effect of introducing a kurtosis parameter in Gaussian Bayesian networks.,2009,94,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress94.html#MainN09,https://doi.org/10.1016/j.ress.2008.10.004 +Xiuyun Peng,Estimation and application for a new extended Weibull distribution.,2014,121,Rel. Eng. and Sys. Safety,,db/journals/ress/ress121.html#PengY14,https://doi.org/10.1016/j.ress.2013.07.007 +Jahon Khorsandi,Incorporating assumption deviation risk in quantitative risk assessments: A semi-quantitative approach.,2017,163,Rel. Eng. and Sys. Safety,,db/journals/ress/ress163.html#KhorsandiA17,https://doi.org/10.1016/j.ress.2017.01.018 +Wolfgang Kröger,Critical infrastructures at risk: A need for a new conceptual approach and extended analytical tools.,2008,93,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress93.html#Kroger08,https://doi.org/10.1016/j.ress.2008.03.005 +Michael D. Shields,Refined Stratified Sampling for efficient Monte Carlo based uncertainty quantification.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#ShieldsTHD15,https://doi.org/10.1016/j.ress.2015.05.023 +Madhav Mishra,Bayesian hierarchical model-based prognostics for lithium-ion batteries.,2018,172,Rel. Eng. and Sys. Safety,,db/journals/ress/ress172.html#MishraMRG18,https://doi.org/10.1016/j.ress.2017.11.020 +Hui Yin,An integrated model of statistical process control and maintenance based on the delayed monitoring.,2015,133,Rel. Eng. and Sys. Safety,,db/journals/ress/ress133.html#YinZZDH15,https://doi.org/10.1016/j.ress.2014.09.020 +Wei-Chang Yeh,A new algorithm for generating minimal cut sets in k-out-of-n networks.,2006,91,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress91.html#Yeh06,https://doi.org/10.1016/j.ress.2004.11.020 +B. John Garrick,Preface.,2004,86,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress86.html#Garrick04,https://doi.org/10.1016/j.ress.2004.04.004 +Stein Hauge,Common cause failures in safety-instrumented systems: Using field experience from the petroleum industry.,2016,151,Rel. Eng. and Sys. Safety,,db/journals/ress/ress151.html#HaugeHHL16,https://doi.org/10.1016/j.ress.2015.09.018 +Firoozeh Haghighi,Optimal design of accelerated life tests for an extension of the exponential distribution.,2014,131,Rel. Eng. and Sys. Safety,,db/journals/ress/ress131.html#Haghighi14,https://doi.org/10.1016/j.ress.2014.04.017 +Hai-Kun Wang,Near-extreme system condition and near-extreme remaining useful time for a group of products.,2017,162,Rel. Eng. and Sys. Safety,,db/journals/ress/ress162.html#WangLHJ17,https://doi.org/10.1016/j.ress.2017.01.023 +Hongyan Dui,Importance measures for optimal structure in linear consecutive-k-out-of-n systems.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#DuiSY18,https://doi.org/10.1016/j.ress.2017.09.015 +Gregory Levitin,Optimal series-parallel topology of multi-state system with two failure modes.,2002,77,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress77.html#Levitin02d,https://doi.org/10.1016/S0951-8320(02)00034-0 +Gregery T. Buzzard,Global sensitivity analysis using sparse grid interpolation and polynomial chaos.,2012,107,Rel. Eng. and Sys. Safety,,db/journals/ress/ress107.html#Buzzard12,https://doi.org/10.1016/j.ress.2011.07.011 +Jussi Lahtinen,Verifying large modular systems using iterative abstraction refinement.,2015,139,Rel. Eng. and Sys. Safety,,db/journals/ress/ress139.html#LahtinenKH15,https://doi.org/10.1016/j.ress.2015.03.012 +Marzio Marseguerra,Biased Monte Carlo unavailability analysis for systems with time-dependent failure rates.,2002,76,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress76.html#MarseguerraZC02,https://doi.org/10.1016/S0951-8320(01)00139-9 +Andrei Rodionov,Demonstration of statistical approaches to identify component's ageing by operational data analysis - A case study for the ageing PSA network.,2008,93,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress93.html#RodionovAKP08,https://doi.org/10.1016/j.ress.2007.09.009 +Wei Long,Quantification of sequential failure logic for fault tree analysis.,2000,67,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress67.html#LongSH00,https://doi.org/10.1016/S0951-8320(99)00075-7 +Nader M. Okasha,Redundancy of structural systems with and without maintenance: An approach based on lifetime functions.,2010,95,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress95.html#OkashaF10,https://doi.org/10.1016/j.ress.2010.01.003 +George J. Besseris,A methodology for product reliability enhancement via saturated-unreplicated fractional factorial designs.,2010,95,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress95.html#Besseris10,https://doi.org/10.1016/j.ress.2010.02.012 +Pengfei Wei,Regional sensitivity analysis using revised mean and variance ratio functions.,2014,121,Rel. Eng. and Sys. Safety,,db/journals/ress/ress121.html#WeiLRS14,https://doi.org/10.1016/j.ress.2013.08.001 +Renkuan Guo,Modeling imperfectly repaired system data via grey differential equations with unequal-gapped *.,2007,92,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress92.html#Guo07,https://doi.org/10.1016/j.ress.2006.04.009 +Robin P. Nicolai,A comparison of models for measurable deterioration: An application to coatings on steel structures.,2007,92,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress92.html#NicolaiDN07,https://doi.org/10.1016/j.ress.2006.09.021 +D. M. Karydas,A method for the efficient prioritization of infrastructure renewal projects.,2006,91,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress91.html#KarydasG06,https://doi.org/10.1016/j.ress.2004.11.016 +R. Jiang,A multivariate CBM model with a random and time-dependent failure threshold.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#Jiang13b,https://doi.org/10.1016/j.ress.2013.05.023 +Michelle Bensi,Efficient Bayesian network modeling of systems.,2013,112,Rel. Eng. and Sys. Safety,,db/journals/ress/ress112.html#BensiKS13,https://doi.org/10.1016/j.ress.2012.11.017 +Mihály Makai,Best estimate method and safety analysis II.,2006,91,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress91.html#MakaiP06,https://doi.org/10.1016/j.ress.2005.01.006 +Zongwen An,Reliability modeling for systems subject to multiple dependent competing failure processes with shock loads above a certain level.,2017,157,Rel. Eng. and Sys. Safety,,db/journals/ress/ress157.html#AnS17,https://doi.org/10.1016/j.ress.2016.08.025 +Simon Malinowski,Remaining useful life estimation based on discriminating shapelet extraction.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#MalinowskiCZ15,https://doi.org/10.1016/j.ress.2015.05.012 +Ivan Dimov,Monte Carlo sensitivity analysis of an Eulerian large-scale air pollution model.,2012,107,Rel. Eng. and Sys. Safety,,db/journals/ress/ress107.html#DimovGO12,https://doi.org/10.1016/j.ress.2011.06.007 +Angel Urbina,Quantification of margins and uncertainties of complex systems in the presence of aleatoric and epistemic uncertainty.,2011,96,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress96.html#UrbinaMP11,https://doi.org/10.1016/j.ress.2010.08.010 +Carlos Guedes Soares,Risk assessment in maritime transportation.,2001,74,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress74.html#SoaresT01,https://doi.org/10.1016/S0951-8320(01)00104-1 +Frank P. A. Coolen,The structure function for system reliability as predictive (imprecise) probability.,2016,154,Rel. Eng. and Sys. Safety,,db/journals/ress/ress154.html#CoolenC16,https://doi.org/10.1016/j.ress.2016.06.008 +G. Baumont,Quantifying human and organizational factors in accident management using decision trees: the HORAAM method.,2000,70,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress70.html#BaumontMSSV00,https://doi.org/10.1016/S0951-8320(00)00051-X +Cao Wang,Reliability assessment of aging structures subjected to gradual and shock deteriorations.,2017,161,Rel. Eng. and Sys. Safety,,db/journals/ress/ress161.html#WangZL17,https://doi.org/10.1016/j.ress.2017.01.014 +Mohammad Ali Azadeh,Condition-based maintenance effectiveness for series-parallel power generation system - A combined Markovian simulation model.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#AzadehASF15,https://doi.org/10.1016/j.ress.2015.04.009 +S. B. El-Ladan,Human reliability analysis - Taxonomy and praxes of human entropy boundary conditions for marine and offshore applications.,2012,98,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress98.html#El-LadanT12,https://doi.org/10.1016/j.ress.2011.10.001 +Kyungmee O. Kim,General model for the risk priority number in failure mode and effects analysis.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#KimZ18,https://doi.org/10.1016/j.ress.2017.09.010 +María Carmen Carnero,Modelling and forecasting occupational accidents of different severity levels in Spain.,2010,95,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress95.html#CarneroP10,https://doi.org/10.1016/j.ress.2010.07.003 +Gregory Levitin,Meeting a demand vs. enhancing protections in homogeneous parallel systems.,2009,94,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress94.html#LevitinH09b,https://doi.org/10.1016/j.ress.2009.05.011 +Hsien-Chung Wu,Bayesian system reliability assessment under fuzzy environments.,2004,83,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress83.html#Wu04,https://doi.org/10.1016/j.ress.2003.09.021 +Terje Aven,On the use of risk acceptance criteria in the offshore oil and gas industry.,2005,90,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress90.html#AvenV05,https://doi.org/10.1016/j.ress.2004.10.009 +J. P. C. Driessen,Maintenance optimization under non-constant probabilities of imperfect inspections.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#DriessenPH17,https://doi.org/10.1016/j.ress.2017.03.020 +Muhammad Masum Jujuly,LNG pool fire simulation for domino effect analysis.,2015,143,Rel. Eng. and Sys. Safety,,db/journals/ress/ress143.html#JujulyRAK15,https://doi.org/10.1016/j.ress.2015.02.010 +A. Abu-Samah,Bayesian based methodology for the extraction and validation of time bound failure signatures for online failure prediction.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#Abu-SamahSZ17,https://doi.org/10.1016/j.ress.2017.04.016 +Alexandre Muller,On the concept of e-maintenance: Review and current research.,2008,93,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress93.html#MullerMI08,https://doi.org/10.1016/j.ress.2007.08.006 +Vitali Volovoi,Modeling of system reliability Petri nets with aging tokens.,2004,84,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress84.html#Volovoi04,https://doi.org/10.1016/j.ress.2003.10.013 +C. Ariel Pinto,Configuration of inter-office switch for extreme traffic with zone configuration evaluator diagram.,2003,79,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress79.html#PintoL03,https://doi.org/10.1016/S0951-8320(02)00265-X +Kilian Zwirglmaier,Capturing cognitive causal paths in human reliability analysis with Bayesian network models.,2017,158,Rel. Eng. and Sys. Safety,,db/journals/ress/ress158.html#ZwirglmaierSG17,https://doi.org/10.1016/j.ress.2016.10.010 +Heungseob Kim,Reliability models for a nonrepairable system with heterogeneous components having a phase-type time-to-failure distribution.,2017,159,Rel. Eng. and Sys. Safety,,db/journals/ress/ress159.html#KimK17,https://doi.org/10.1016/j.ress.2016.10.019 +Gabriela Medina-Oliva,PRM-based patterns for knowledge formalisation of industrial systems to support maintenance strategies assessment.,2013,116,Rel. Eng. and Sys. Safety,,db/journals/ress/ress116.html#Medina-OlivaWI13,https://doi.org/10.1016/j.ress.2013.02.026 +Walid Mechri,Switching Markov chains for a holistic modeling of SIS unavailability.,2015,133,Rel. Eng. and Sys. Safety,,db/journals/ress/ress133.html#MechriSB15,https://doi.org/10.1016/j.ress.2014.09.005 +Maurizio Guida,The inverse Gamma process: A family of continuous stochastic models for describing state-dependent deterioration phenomena.,2013,120,Rel. Eng. and Sys. Safety,,db/journals/ress/ress120.html#GuidaP13,https://doi.org/10.1016/j.ress.2013.03.013 +Francesco Cadini,An improved adaptive kriging-based importance technique for sampling multiple failure regions of low probability.,2014,131,Rel. Eng. and Sys. Safety,,db/journals/ress/ress131.html#CadiniSZ14,https://doi.org/10.1016/j.ress.2014.06.023 +Royce A. Francis,A metric and frameworks for resilience analysis of engineered and infrastructure systems.,2014,121,Rel. Eng. and Sys. Safety,,db/journals/ress/ress121.html#FrancisB14,https://doi.org/10.1016/j.ress.2013.07.004 +Jan Erik Vinnem,On the development of failure models for hydrocarbon leaks during maintenance work in process plants on offshore petroleum installations.,2013,113,Rel. Eng. and Sys. Safety,,db/journals/ress/ress113.html#Vinnem13,https://doi.org/10.1016/j.ress.2012.12.016 +P. H. Lin,A paired comparison approach to improve the quantification of management influences in air transportation.,2013,113,Rel. Eng. and Sys. Safety,,db/journals/ress/ress113.html#LinHG13,https://doi.org/10.1016/j.ress.2012.12.001 +Emanuele Borgonovo,Comparison of global sensitivity analysis techniques and importance measures in PSA.,2003,79,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress79.html#BorgonovoATS03,https://doi.org/10.1016/S0951-8320(02)00228-4 +Liu Hong,Vulnerability assessment and mitigation for the Chinese railway system under floods.,2015,137,Rel. Eng. and Sys. Safety,,db/journals/ress/ress137.html#HongOPHY15,https://doi.org/10.1016/j.ress.2014.12.013 +Sebastián Martorell,Evaluation of risk impact of changes to surveillance requirements addressing model and parameter uncertainties.,2014,126,Rel. Eng. and Sys. Safety,,db/journals/ress/ress126.html#MartorellVMVCS14,https://doi.org/10.1016/j.ress.2014.02.003 +Claudio M. Rocco Sanseverino,Approximate multi-state reliability expressions using a new machine learning technique.,2005,89,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress89.html#SanseverinoM05,https://doi.org/10.1016/j.ress.2004.08.023 +Ahmed A. Soliman,Modified Weibull model: A Bayes study using MCMC approach based on progressive censoring data.,2012,100,Rel. Eng. and Sys. Safety,,db/journals/ress/ress100.html#SolimanAAA12,https://doi.org/10.1016/j.ress.2011.12.013 +Y. James Chang,The SACADA database for human reliability and human performance.,2014,125,Rel. Eng. and Sys. Safety,,db/journals/ress/ress125.html#ChangBCKMMNRRSZ14,https://doi.org/10.1016/j.ress.2013.07.014 +Nader Ebrahimi,Assessing the reliability of components with micro- and nano-structures when they are part a multi-scale system.,2015,138,Rel. Eng. and Sys. Safety,,db/journals/ress/ress138.html#EbrahimiS15,https://doi.org/10.1016/j.ress.2015.01.015 +Takeshi Matsuoka,An exact method for solving logical loops in reliability analysis.,2009,94,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress94.html#Matsuoka09,https://doi.org/10.1016/j.ress.2009.01.007 +M. Cocchiara,Integration of interlock system analysis with automated HAZOP analysis.,2001,74,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress74.html#CocchiaraBPG01,https://doi.org/10.1016/S0951-8320(01)00074-6 +He Yi,Stochastic properties and reliability measures of discrete-time semi-Markovian systems.,2018,176,Rel. Eng. and Sys. Safety,,db/journals/ress/ress176.html#YiCSL18,https://doi.org/10.1016/j.ress.2018.04.014 +Jean-François Aubry,Guest editorial.,2006,91,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress91.html#Aubry06,https://doi.org/10.1016/j.ress.2005.03.005 +C. Caroni,Failure limited data and TTT-based trend tests in multiple repairable systems.,2010,95,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress95.html#Caroni10,https://doi.org/10.1016/j.ress.2010.02.007 +Huiying Wang,A two-phase inspection model for a single component system with three-stage degradation.,2017,158,Rel. Eng. and Sys. Safety,,db/journals/ress/ress158.html#WangWP17,https://doi.org/10.1016/j.ress.2016.10.005 +Harsheel Shah,Quantification of margins and mixed uncertainties using evidence theory and stochastic expansions.,2015,138,Rel. Eng. and Sys. Safety,,db/journals/ress/ress138.html#ShahHW15,https://doi.org/10.1016/j.ress.2015.01.012 +Serkan Eryilmaz,The number of failed components in a k-out-of-n system consisting of multiple types of components.,2018,175,Rel. Eng. and Sys. Safety,,db/journals/ress/ress175.html#Eryilmaz18a,https://doi.org/10.1016/j.ress.2018.03.027 +Ji-Min Lu,Reliability analysis of large phased-mission systems with repairable components based on success-state sampling.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#LuWLL15,https://doi.org/10.1016/j.ress.2015.05.010 +Suh-Wen Chiou,A traffic-responsive signal control to enhance road network resilience with hazmat transportation in multiple periods.,2018,175,Rel. Eng. and Sys. Safety,,db/journals/ress/ress175.html#Chiou18,https://doi.org/10.1016/j.ress.2018.03.016 +Luciano Burgazzi,Thermal-hydraulic passive system reliability-based design approach.,2007,92,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress92.html#Burgazzi07a,https://doi.org/10.1016/j.ress.2006.07.008 +Lars Nordmann,Application of a performance measure reduction technique to categorical safety data.,2002,75,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress75.html#NordmannL02,https://doi.org/10.1016/S0951-8320(01)00111-9 +Kash Barker,Assessing uncertainty in extreme events: Applications to risk-based decision making in interdependent infrastructure sectors.,2009,94,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress94.html#BarkerH09,https://doi.org/10.1016/j.ress.2008.09.008 +I. Marton,Ageing PSA incorporating effectiveness of maintenance and testing.,2015,139,Rel. Eng. and Sys. Safety,,db/journals/ress/ress139.html#MartonSM15,https://doi.org/10.1016/j.ress.2015.03.022 +Chaonan Wang,Reliability analysis of multi-trigger binary systems subject to competing failures.,2013,111,Rel. Eng. and Sys. Safety,,db/journals/ress/ress111.html#WangXL13,https://doi.org/10.1016/j.ress.2012.10.001 +Jiajie Fan,Prognostics of lumen maintenance for High power white light emitting diodes using a nonlinear filter-based approach.,2014,123,Rel. Eng. and Sys. Safety,,db/journals/ress/ress123.html#FanYP14,https://doi.org/10.1016/j.ress.2013.10.005 +Luca Podofillini,A pilot study for errors of commission for a boiling water reactor using the CESA method.,2013,109,Rel. Eng. and Sys. Safety,,db/journals/ress/ress109.html#PodofilliniDND13,https://doi.org/10.1016/j.ress.2012.08.012 +Jing Li,Hard drive failure prediction using Decision Trees.,2017,164,Rel. Eng. and Sys. Safety,,db/journals/ress/ress164.html#LiSWLLX17,https://doi.org/10.1016/j.ress.2017.03.004 +Xiaolin Wang,Residual life estimation based on a generalized Wiener degradation process.,2014,124,Rel. Eng. and Sys. Safety,,db/journals/ress/ress124.html#WangBG14,https://doi.org/10.1016/j.ress.2013.11.011 +Paul H. Kvam,Common cause failure prediction using data mapping.,2002,76,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress76.html#KvamM02,https://doi.org/10.1016/S0951-8320(02)00025-X +Cuong Duc Dao,Optimal selective maintenance for multi-state systems in variable loading conditions.,2017,166,Rel. Eng. and Sys. Safety,,db/journals/ress/ress166.html#DaoZ17a,https://doi.org/10.1016/j.ress.2016.11.006 +G. Di Rito,Impacts of safety on the design of light remotely-piloted helicopter flight control systems.,2016,149,Rel. Eng. and Sys. Safety,,db/journals/ress/ress149.html#RitoS16,https://doi.org/10.1016/j.ress.2015.12.012 +Alexander Antonov,Application of generalised linear model for time-dependent trend assessment - A case study for the ageing PSA network.,2009,94,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress94.html#AntonovCPR09,https://doi.org/10.1016/j.ress.2008.11.005 +Géraud Blatman,Efficient computation of global sensitivity indices using sparse polynomial chaos expansions.,2010,95,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress95.html#BlatmanS10,https://doi.org/10.1016/j.ress.2010.06.015 +M. A. Maes,Influence of grade on the reliability of corroding pipelines.,2008,93,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress93.html#MaesDS08,https://doi.org/10.1016/j.ress.2006.12.009 +Marisol Koslowski,Uncertainty propagation in a multiscale model of nanocrystalline plasticity.,2011,96,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress96.html#KoslowskiS11,https://doi.org/10.1016/j.ress.2010.11.011 +Long Ding,A novel method for SIL verification based on system degradation using reliability block diagram.,2014,132,Rel. Eng. and Sys. Safety,,db/journals/ress/ress132.html#DingWKW14,https://doi.org/10.1016/j.ress.2014.07.005 +Sylvain Dubreuil,Construction of bootstrap confidence intervals on sensitivity indices computed by polynomial chaos expansion.,2014,121,Rel. Eng. and Sys. Safety,,db/journals/ress/ress121.html#DubreuilBPS14,https://doi.org/10.1016/j.ress.2013.09.011 +Jui-Sheng Chou,Reliability-based performance simulation for optimized pavement maintenance.,2011,96,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress96.html#ChouL11,https://doi.org/10.1016/j.ress.2011.05.005 +Mohamed-Chahir Fitouhi,Integrating noncyclical preventive maintenance scheduling and production planning for multi-state systems.,2014,121,Rel. Eng. and Sys. Safety,,db/journals/ress/ress121.html#FitouhiN14,https://doi.org/10.1016/j.ress.2013.07.009 +Najmus Saqib,Thresholds and goals for safety performance indicators for nuclear power plants.,2005,87,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress87.html#SaqibS05,https://doi.org/10.1016/j.ress.2004.05.006 +Martin L. Leuschen,Evaluating the reliability of prototype degradable systems.,2001,72,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress72.html#LeuschenWC01,https://doi.org/10.1016/S0951-8320(00)00097-1 +Gionata Carmignani,An integrated structural framework to cost-based FMECA: The priority-cost FMECA.,2009,94,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress94.html#Carmignani09,https://doi.org/10.1016/j.ress.2008.09.009 +Andrzej M. Rusin,Technical risk involved in long-term operation of steam turbines.,2007,92,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress92.html#Rusin07,https://doi.org/10.1016/j.ress.2006.07.007 +A. C. Torres-Echeverría,Design optimization of a safety-instrumented system based on RAMS+C addressing IEC 61508 requirements and diverse redundancy.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#Torres-EcheverriaMT09,https://doi.org/10.1016/j.ress.2008.02.010 +Manuel Kaegi,Analyzing maintenance strategies by agent-based simulations: A feasibility study.,2009,94,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress94.html#KaegiMK09,https://doi.org/10.1016/j.ress.2009.02.002 +Olga Fink,Predicting component reliability and level of degradation with complex-valued neural networks.,2014,121,Rel. Eng. and Sys. Safety,,db/journals/ress/ress121.html#FinkZW14,https://doi.org/10.1016/j.ress.2013.08.004 +Wenbin Dong,Fatigue reliability analysis of the jacket support structure for offshore wind turbine considering the effect of corrosion and inspection.,2012,106,Rel. Eng. and Sys. Safety,,db/journals/ress/ress106.html#DongMG12,https://doi.org/10.1016/j.ress.2012.06.011 +Fatemeh Anvarifar,An application of the Functional Resonance Analysis Method (FRAM) to risk analysis of multifunctional flood defences in the Netherlands.,2017,158,Rel. Eng. and Sys. Safety,,db/journals/ress/ress158.html#AnvarifarVZT17,https://doi.org/10.1016/j.ress.2016.10.004 +Gintare Vyzaite,Cause-consequence analysis of non-repairable phased missions.,2006,91,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress91.html#VyzaiteDA06,https://doi.org/10.1016/j.ress.2005.02.009 +Narayanaswamy Balakrishnan 0001,Gamma life* and one-shot device testing analysis.,2014,126,Rel. Eng. and Sys. Safety,,db/journals/ress/ress126.html#BalakrishnanL14,https://doi.org/10.1016/j.ress.2014.01.009 +B. Echard,A combined Importance Sampling and Kriging reliability method for small failure probabilities with time-demanding numerical models.,2013,111,Rel. Eng. and Sys. Safety,,db/journals/ress/ress111.html#EchardGLR13,https://doi.org/10.1016/j.ress.2012.10.008 +Vaclav Slimacek,Nonhomogeneous Poisson process with nonparametric frailty and covariates.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#SlimacekL17,https://doi.org/10.1016/j.ress.2017.05.026 +Kjell Hausken,Defense and attack of complex and dependent systems.,2010,95,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress95.html#Hausken10,https://doi.org/10.1016/j.ress.2009.07.006 +Jussi K. Vaurio,Extensions of the uncertainty quantification of common cause failure rates.,2002,78,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress78.html#Vaurio02,https://doi.org/10.1016/S0951-8320(02)00110-2 +Elnaz Kabir,Statistical modeling of tree failures during storms.,2018,177,Rel. Eng. and Sys. Safety,,db/journals/ress/ress177.html#KabirGK18,https://doi.org/10.1016/j.ress.2018.04.026 +Candice D. Griffith,Human reliability under sleep deprivation: Derivation of performance shaping factor multipliers from empirical data.,2015,144,Rel. Eng. and Sys. Safety,,db/journals/ress/ress144.html#GriffithM15,https://doi.org/10.1016/j.ress.2015.05.004 +Johannes O. Royset,Reliability-based optimal structural design by the decoupling approach.,2001,73,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress73.html#RoysetKP01,https://doi.org/10.1016/S0951-8320(01)00048-5 +Laurent Doyen 0002,On geometric reduction of age or intensity models for imperfect maintenance.,2017,168,Rel. Eng. and Sys. Safety,,db/journals/ress/ress168.html#DoyenGS17,https://doi.org/10.1016/j.ress.2017.03.015 +Gregory Levitin,Influence of attacker's target recognition ability on defense strategy in homogeneous parallel systems.,2010,95,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress95.html#LevitinH10,https://doi.org/10.1016/j.ress.2010.01.007 +Sungjin Lee,Prediction of the human response time with the similarity and quantity of information.,2006,91,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress91.html#LeeHC06,https://doi.org/10.1016/j.ress.2005.06.004 +Antonio Pievatolo,A Bayesian hidden Markov model for imperfect debugging.,2012,103,Rel. Eng. and Sys. Safety,,db/journals/ress/ress103.html#PievatoloRS12,https://doi.org/10.1016/j.ress.2012.03.003 +Serkan Eryilmaz,Dynamic assessment of multi-state systems using phase-type modeling.,2015,140,Rel. Eng. and Sys. Safety,,db/journals/ress/ress140.html#Eryilmaz15a,https://doi.org/10.1016/j.ress.2015.03.037 +Filipe Joel Soares,The STABALID project: Risk analysis of stationary Li-ion batteries for power system applications.,2015,140,Rel. Eng. and Sys. Safety,,db/journals/ress/ress140.html#SoaresCCIBJLRCS15,https://doi.org/10.1016/j.ress.2015.04.004 +Maria Fonoberova,Global sensitivity/uncertainty analysis for agent-based models.,2013,118,Rel. Eng. and Sys. Safety,,db/journals/ress/ress118.html#FonoberovaFM13,https://doi.org/10.1016/j.ress.2013.04.004 +Delia Montoro-Cazorla,A deteriorating two-system with two repair modes and sojourn * phase-type distributed.,2006,91,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress91.html#Montoro-CazorlaP06,https://doi.org/10.1016/j.ress.2003.12.013 +Francesco Di Maio,Safety margin sensitivity analysis for model selection in nuclear power plant probabilistic safety assessment.,2017,162,Rel. Eng. and Sys. Safety,,db/journals/ress/ress162.html#MaioPZR17,https://doi.org/10.1016/j.ress.2017.01.020 +Mustapha Nourelfath,Integrated load distribution and production planning in series-parallel multi-state systems with failure rate depending on load.,2012,106,Rel. Eng. and Sys. Safety,,db/journals/ress/ress106.html#NourelfathY12,https://doi.org/10.1016/j.ress.2012.06.006 +Gregory Levitin,Weighted voting systems: reliability versus rapidity.,2005,89,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress89.html#Levitin05,https://doi.org/10.1016/j.ress.2004.08.017 +Minh N. Nguyen,Probabilistic procedure for design of untreated timber piles under marine borer attack.,2008,93,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress93.html#NguyenLWC08,https://doi.org/10.1016/j.ress.2006.12.012 +Massimiliano Giorgio,Repairable system analysis in presence of covariates and random effects.,2014,131,Rel. Eng. and Sys. Safety,,db/journals/ress/ress131.html#GiorgioGP14,https://doi.org/10.1016/j.ress.2014.04.009 +Reza Ahmadi,A novel data-driven approach to optimizing replacement policy.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#AhmadiW17,https://doi.org/10.1016/j.ress.2017.06.027 +Anatoly Lisnianski,A multi-state Markov model for a short-term reliability analysis of a power generating unit.,2012,98,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress98.html#LisnianskiELH12,https://doi.org/10.1016/j.ress.2011.10.008 +Mohamed Bouali,Backward reachability of Colored Petri Nets for systems diagnosis.,2012,99,Rel. Eng. and Sys. Safety,,db/journals/ress/ress99.html#BoualiBS12,https://doi.org/10.1016/j.ress.2011.10.003 +Donnacha Bolger,Deriving the probability of a linear opinion pooling method being superior to a set of alternatives.,2017,158,Rel. Eng. and Sys. Safety,,db/journals/ress/ress158.html#BolgerH17,https://doi.org/10.1016/j.ress.2016.10.008 +Gregory Levitin,Individual vs. overarching protection for minimizing the expected damage caused by an attack.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#LevitinHD13,https://doi.org/10.1016/j.ress.2013.05.024 +Weichao Yu,A methodology to quantify the gas supply capacity of natural gas transmission pipeline system using reliability theory.,2018,175,Rel. Eng. and Sys. Safety,,db/journals/ress/ress175.html#YuWMHHG18,https://doi.org/10.1016/j.ress.2018.03.007 +Cecília Vale,Stochastic model for the geometrical rail track degradation process in the Portuguese railway Northern Line.,2013,116,Rel. Eng. and Sys. Safety,,db/journals/ress/ress116.html#ValeL13,https://doi.org/10.1016/j.ress.2013.02.010 +Rui Peng,Reliability of demand-based phased-mission systems subject to fault level coverage.,2014,121,Rel. Eng. and Sys. Safety,,db/journals/ress/ress121.html#PengZXY14,https://doi.org/10.1016/j.ress.2013.07.013 +David Moriarty,A systems perspective on the unstable approach in commercial aviation.,2014,131,Rel. Eng. and Sys. Safety,,db/journals/ress/ress131.html#MoriartyJ14,https://doi.org/10.1016/j.ress.2014.06.019 +Alireza Noroozi,The role of human error in risk analysis: Application to pre- and post-maintenance procedures of process facilities.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#NorooziKKMA13,https://doi.org/10.1016/j.ress.2013.06.038 +Gregory Levitin,Structure optimization of multi-state system with two failure modes.,2001,72,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress72.html#LevitinL01a,https://doi.org/10.1016/S0951-8320(00)00105-8 +Enrique López Droguett,The combined use of data and expert estimates in population variability analysis.,2004,83,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress83.html#DroguettGM04,https://doi.org/10.1016/j.ress.2003.10.007 +Luyi Li,A new kind of sensitivity index for multivariate output.,2016,147,Rel. Eng. and Sys. Safety,,db/journals/ress/ress147.html#LiLW16,https://doi.org/10.1016/j.ress.2015.11.006 +Maxim Finkelstein,On systems with shared resources and optimal switching strategies.,2009,94,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress94.html#Finkelstein09a,https://doi.org/10.1016/j.ress.2009.02.006 +Kpotissan Adjetey-Bahun,A model to quantify the resilience of mass railway transportation systems.,2016,153,Rel. Eng. and Sys. Safety,,db/journals/ress/ress153.html#Adjetey-BahunBC16,https://doi.org/10.1016/j.ress.2016.03.015 +Sandra Basnyat,Multidisciplinary perspective on accident investigation.,2006,91,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress91.html#BasnyatCP06,https://doi.org/10.1016/j.ress.2006.01.014 +Tong Zou,Reliability analysis of automotive body-door subsystem.,2002,78,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress78.html#ZouMMM02,https://doi.org/10.1016/S0951-8320(02)00178-3 +M. Cantoni,Genetic algorithms and Monte Carlo simulation for optimal plant design.,2000,68,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress68.html#CantoniMZ00,https://doi.org/10.1016/S0951-8320(99)00080-0 +Bo He,An additive modified Weibull distribution.,2016,145,Rel. Eng. and Sys. Safety,,db/journals/ress/ress145.html#HeCD16,https://doi.org/10.1016/j.ress.2015.08.010 +Lusine Mkrtchyan,Methods for building Conditional Probability Tables of Bayesian Belief Networks from limited judgment: An evaluation for Human Reliability Application.,2016,151,Rel. Eng. and Sys. Safety,,db/journals/ress/ress151.html#MkrtchyanPD16,https://doi.org/10.1016/j.ress.2016.01.004 +Gregory Levitin,Multi-state systems.,2017,166,Rel. Eng. and Sys. Safety,,db/journals/ress/ress166.html#LevitinX17,https://doi.org/10.1016/j.ress.2017.06.008 +Jie Liu 0005,Weighted-feature and cost-sensitive regression model for component continuous degradation assessment.,2017,168,Rel. Eng. and Sys. Safety,,db/journals/ress/ress168.html#LiuZ17a,https://doi.org/10.1016/j.ress.2017.03.012 +Adriaan J. M. Goossens,Exploring maintenance policy selection using the Analytic Hierarchy Process* An application for naval ships.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#GoossensB15,https://doi.org/10.1016/j.ress.2015.04.014 +Bruce Hallbert,The use of empirical data sources in HRA.,2004,83,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress83.html#HallbertGLMBB04,https://doi.org/10.1016/j.ress.2003.09.005 +Oswaldo Morales-Napoles,Analysis of axle and vehicle load properties through Bayesian Networks based on Weigh-in-Motion data.,2014,125,Rel. Eng. and Sys. Safety,,db/journals/ress/ress125.html#Morales-NapolesS14,https://doi.org/10.1016/j.ress.2014.01.018 +Qimiao Xie,An optimization method for the distance between exits of buildings considering uncertainties based on arbitrary polynomial chaos expansion.,2016,154,Rel. Eng. and Sys. Safety,,db/journals/ress/ress154.html#XieWLH16,https://doi.org/10.1016/j.ress.2016.04.018 +Alberto Pasquini,Evaluation of air traffic management procedures - safety assessment in an experimental environment.,2005,89,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress89.html#PasquiniP05,https://doi.org/10.1016/j.ress.2004.08.009 +Robin E. Bloomfield,Preliminary interdependency analysis: An approach to support critical-infrastructure risk-assessment.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#BloomfieldPSSW17,https://doi.org/10.1016/j.ress.2017.05.030 +Kaisa Simola,Comparison of approaches for estimating pipe rupture frequencies for risk-informed in-service inspections.,2004,84,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress84.html#SimolaPTKS04,https://doi.org/10.1016/j.ress.2003.10.008 +Ikenna Anthony Okaro,Reliability analysis and optimisation of subsea compression system facing operational covariate stresses.,2016,156,Rel. Eng. and Sys. Safety,,db/journals/ress/ress156.html#OkaroT16,https://doi.org/10.1016/j.ress.2016.07.018 +Abdullah Konak,Multi-objective optimization using genetic algorithms: A tutorial.,2006,91,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress91.html#KonakCS06,https://doi.org/10.1016/j.ress.2005.11.018 +Zeytu Gashaw Asfaw,Unobserved heterogeneity in the power law nonhomogeneous Poisson process.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#AsfawL15,https://doi.org/10.1016/j.ress.2014.10.005 +Marko Cepin,Optimization of safety equipment outages improves safety.,2002,77,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress77.html#Cepin02,https://doi.org/10.1016/S0951-8320(02)00030-3 +Do Guen Yoo,Optimal design of water supply networks for enhancing seismic reliability.,2016,146,Rel. Eng. and Sys. Safety,,db/journals/ress/ress146.html#YooKK16,https://doi.org/10.1016/j.ress.2015.10.001 +Knut øien,A framework for the establishment of organizational risk indicators.,2001,74,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress74.html#Oien01a,https://doi.org/10.1016/S0951-8320(01)00068-0 +C. Gong,Importance sampling-based system reliability analysis of corroding pipelines considering multiple failure modes.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#GongZ18,https://doi.org/10.1016/j.ress.2017.08.023 +X. Zhong,Reliability assessment of complex mechatronic systems using a modified nonparametric belief propagation algorithm.,2010,95,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress95.html#ZhongIS10,https://doi.org/10.1016/j.ress.2010.05.004 +Tongdan Jin,Approximating network reliability estimates using linear and quadratic unreliability of minimal cuts.,2003,82,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress82.html#JinC03,https://doi.org/10.1016/S0951-8320(03)00117-0 +Yifan Zhou,Maintenance optimisation of a parallel-series system with stochastic and economic dependence under limited maintenance capacity.,2016,155,Rel. Eng. and Sys. Safety,,db/journals/ress/ress155.html#ZhouLSM16,https://doi.org/10.1016/j.ress.2016.06.012 +Tong Zou,Reliability-based evaluation of automotive wind noise quality.,2003,82,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress82.html#ZouMM03,https://doi.org/10.1016/S0951-8320(03)00170-4 +Stephen C. Hora,A distribution-free test for the relationship between model input and output when using Latin hypercube sampling.,2003,79,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress79.html#HoraH03,https://doi.org/10.1016/S0951-8320(02)00240-5 +Siri Wiig,Applying different quality and safety models in healthcare improvement work: Boundary objects and system thinking.,2014,125,Rel. Eng. and Sys. Safety,,db/journals/ress/ress125.html#WiigRAPRMA14,https://doi.org/10.1016/j.ress.2014.01.008 +Rafael Pérez-Ocón,Two models for a repairable two-system with phase-type sojourn time distributions.,2004,84,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress84.html#Perez-OconR04,https://doi.org/10.1016/j.ress.2003.11.006 +Edoardo Patelli,Simulation methods for system reliability using the survival signature.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#PatelliFCC17,https://doi.org/10.1016/j.ress.2017.06.018 +R. F. Cameron,Use of risk assessment in the nuclear industry with specific reference to the Australian situation.,2001,74,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress74.html#CameronW01,https://doi.org/10.1016/S0951-8320(01)00078-3 +F. C. Gómez de León Hijes,Maintenance strategy based on a multicriterion classification of equipments.,2006,91,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress91.html#HijesC06,https://doi.org/10.1016/j.ress.2005.03.001 +Manuel R. Piña-Monarrez,Weibull and lognormal Taguchi analysis using multiple linear regression.,2015,144,Rel. Eng. and Sys. Safety,,db/journals/ress/ress144.html#Pina-MonarrezO15,https://doi.org/10.1016/j.ress.2015.08.004 +Mark G. Stewart,Probabilistic risk assessment and service life performance management of load bearing biomedical implants.,2012,108,Rel. Eng. and Sys. Safety,,db/journals/ress/ress108.html#StewartO12,https://doi.org/10.1016/j.ress.2012.06.012 +Yi-Kuei Lin,System reliability evaluation of a touch panel manufacturing system with defect rate and reworking.,2013,118,Rel. Eng. and Sys. Safety,,db/journals/ress/ress118.html#LinHC13,https://doi.org/10.1016/j.ress.2013.04.007 +Katerina Konakli,Global sensitivity analysis using low-rank tensor approximations.,2016,156,Rel. Eng. and Sys. Safety,,db/journals/ress/ress156.html#KonakliS16,https://doi.org/10.1016/j.ress.2016.07.012 +José Villén-Altamirano,Asymptotic optimality of RESTART estimators in highly dependable systems.,2014,130,Rel. Eng. and Sys. Safety,,db/journals/ress/ress130.html#Villen-Altamirano14,https://doi.org/10.1016/j.ress.2014.05.012 +Khac Tuan Huynh,A periodic inspection and replacement policy for systems subject to competing failure modes due to degradation and traumatic events.,2011,96,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress96.html#HuynhBBC11,https://doi.org/10.1016/j.ress.2010.12.018 +David Mendonça,Factors underlying organizational resilience: The case of electric power restoration in New York City after 11 September 2001.,2015,141,Rel. Eng. and Sys. Safety,,db/journals/ress/ress141.html#MendoncaW15,https://doi.org/10.1016/j.ress.2015.03.017 +Duy Minh Do,Dynamic analysis and reliability assessment of structures with uncertain-but-bounded parameters under stochastic process excitations.,2014,132,Rel. Eng. and Sys. Safety,,db/journals/ress/ress132.html#DoGST14,https://doi.org/10.1016/j.ress.2014.07.002 +Sundeep Samson,A review of different perspectives on uncertainty and risk and an alternative modeling paradigm.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#SamsonRW09,https://doi.org/10.1016/j.ress.2008.06.004 +Milan Stehlík,Homogeneity and scale testing of generalized gamma distribution.,2008,93,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress93.html#Stehlik08,https://doi.org/10.1016/j.ress.2008.03.012 +R. B. Belzer,Getting beyond 'grin and bear it' in the practice of risk management.,2001,72,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress72.html#Belzer01,https://doi.org/10.1016/S0951-8320(01)00015-1 +Marzio Marseguerra,Monte Carlo simulation for model-based fault diagnosis in dynamic systems.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#MarseguerraZ09,https://doi.org/10.1016/j.ress.2008.02.013 +Xiaomo Jiang,Bayesian inference method for stochastic damage accumulation modeling.,2013,111,Rel. Eng. and Sys. Safety,,db/journals/ress/ress111.html#JiangYL13,https://doi.org/10.1016/j.ress.2012.11.006 +Pauline Coolen-Schrijner,Nonparametric adaptive age replacement with a one-cycle criterion.,2007,92,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress92.html#Coolen-SchrijnerC07,https://doi.org/10.1016/j.ress.2005.11.002 +Andrea Saltelli,Screening important inputs in models with strong interaction properties.,2009,94,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress94.html#SaltelliCC09,https://doi.org/10.1016/j.ress.2008.10.007 +Xiaotian Zhuang,Enhancing product robustness in reliability-based design optimization.,2015,138,Rel. Eng. and Sys. Safety,,db/journals/ress/ress138.html#ZhuangPD15,https://doi.org/10.1016/j.ress.2015.01.026 +Gregory Levitin,Optimal service task partition and distribution in grid system with star topology.,2008,93,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress93.html#LevitinD08,https://doi.org/10.1016/j.ress.2006.11.006 +Delia Montoro-Cazorla,Matrix stochastic analysis of the maintainability of a machine under shocks.,2014,121,Rel. Eng. and Sys. Safety,,db/journals/ress/ress121.html#Montoro-CazorlaP14,https://doi.org/10.1016/j.ress.2013.07.002 +Christophe Simon,Bayesian networks inference algorithm to implement Dempster Shafer theory in reliability analysis.,2008,93,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress93.html#SimonWE08,https://doi.org/10.1016/j.ress.2007.03.012 +Waltraud Kahle,Optimal maintenance policies in incomplete repair models.,2007,92,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress92.html#Kahle07,https://doi.org/10.1016/j.ress.2006.05.004 +Maurizio Guida,Bayesian analysis of repairable systems showing a bounded failure intensity.,2006,91,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress91.html#GuidaP06,https://doi.org/10.1016/j.ress.2005.08.008 +Zhibin Tan,"Corrigendum to ""Minimal cut sets of s-t network with k-out-of-n nodes"" [Reliability Engineering and System Safety 82 (2003) 49-54].",2005,88,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress88.html#Tan05a,https://doi.org/10.1016/j.ress.2004.08.011 +Christoph A. Thieme,Safety performance monitoring of autonomous marine systems.,2017,159,Rel. Eng. and Sys. Safety,,db/journals/ress/ress159.html#ThiemeU17,https://doi.org/10.1016/j.ress.2016.11.024 +Xiangyong Kong,Solving the redundancy allocation problem with multiple strategy choices using a new simplified particle swarm optimization.,2015,144,Rel. Eng. and Sys. Safety,,db/journals/ress/ress144.html#KongGOL15,https://doi.org/10.1016/j.ress.2015.07.019 +R. Jiang,Age replacement policy: a multi-attribute value model.,2002,76,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress76.html#JiangJ02,https://doi.org/10.1016/S0951-8320(02)00021-2 +Serkan Eryilmaz,On reliability analysis of a k-out-of-n system with components having random weights.,2013,109,Rel. Eng. and Sys. Safety,,db/journals/ress/ress109.html#Eryilmaz13,https://doi.org/10.1016/j.ress.2012.07.010 +Luyi Li,A new method for model validation with multivariate output.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#LiL18,https://doi.org/10.1016/j.ress.2017.10.005 +Maurizio Bevilacqua,Human factor risk management in the process industry: A case study.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#BevilacquaC18,https://doi.org/10.1016/j.ress.2017.08.013 +Marco Gribaudo,Fluid Petri Nets and hybrid model-checking: a comparative case study.,2003,81,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress81.html#GribaudoHBTCM03,https://doi.org/10.1016/S0951-8320(03)00089-9 +Jon Ivar Håvold,Safety culture and safety management aboard tankers.,2010,95,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress95.html#Havold10,https://doi.org/10.1016/j.ress.2010.01.002 +Bertrand Iooss,Global sensitivity analysis of computer models with functional inputs.,2009,94,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress94.html#IoossR09,https://doi.org/10.1016/j.ress.2008.09.010 +Terje Aven,Practical implications of the new risk perspectives.,2013,115,Rel. Eng. and Sys. Safety,,db/journals/ress/ress115.html#Aven13a,https://doi.org/10.1016/j.ress.2013.02.020 +Oliver Sträter,Human reliability analysis: data issues and errors of commission.,2004,83,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress83.html#Strater04,https://doi.org/10.1016/j.ress.2003.09.003 +Mustapha Nourelfath,A combined approach to solve the redundancy optimization problem for multi-state systems under repair policies.,2004,86,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress86.html#NourelfathD04,https://doi.org/10.1016/j.ress.2004.01.008 +Charles Rougé,Relevance of control theory to design and maintenance problems in time-variant reliability: The case of stochastic viability.,2014,132,Rel. Eng. and Sys. Safety,,db/journals/ress/ress132.html#RougeMD14,https://doi.org/10.1016/j.ress.2014.07.025 +Enrico Zio,A data-driven fuzzy approach for predicting the remaining useful life in dynamic failure scenarios of a nuclear system.,2010,95,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress95.html#ZioM10,https://doi.org/10.1016/j.ress.2009.08.001 +Majid Asadi,Jensen-Shannon information of the coherent system lifetime.,2016,156,Rel. Eng. and Sys. Safety,,db/journals/ress/ress156.html#AsadiESZ16,https://doi.org/10.1016/j.ress.2016.07.015 +Jan Erik Vinnem,Major hazard risk indicators for monitoring of trends in the Norwegian offshore petroleum sector.,2006,91,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress91.html#VinnemAHST06,https://doi.org/10.1016/j.ress.2005.07.004 +Mashrura Musharraf,"Erratum to ""Assessing offshore emergency evacuation behavior in a virtual environment using a Bayesian Network approach"" [Reliability Engineering and System Safety 152 (2016) 28-37].",2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#MusharrafSKVM18,https://doi.org/10.1016/j.ress.2017.10.022 +Shijia Du,Reliability analysis of Markov history-dependent repairable systems with neglected failures.,2017,159,Rel. Eng. and Sys. Safety,,db/journals/ress/ress159.html#DuZCK17,https://doi.org/10.1016/j.ress.2016.10.030 +Naji Bricha,Critical supply network protection against intentional attacks: A game-theoretical model.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#BrichaN13,https://doi.org/10.1016/j.ress.2013.05.001 +Jeremy Novak,Safety outcomes for engineering asset management organizations: Old problem with new solutions?,2017,160,Rel. Eng. and Sys. Safety,,db/journals/ress/ress160.html#NovakFBSB17,https://doi.org/10.1016/j.ress.2016.12.004 +Mindaugas Valincius,Integrated assessment of failure probability of the district heating network.,2015,133,Rel. Eng. and Sys. Safety,,db/journals/ress/ress133.html#ValinciusZDRJB15,https://doi.org/10.1016/j.ress.2014.09.022 +Ferenc Szidarovszky,Incorporating risk seeking attitude into defense strategy.,2014,123,Rel. Eng. and Sys. Safety,,db/journals/ress/ress123.html#SzidarovszkyL14,https://doi.org/10.1016/j.ress.2013.11.002 +Magdi Sami Moustafa,Optimal major and minimal maintenance policies for deteriorating systems.,2004,83,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress83.html#MoustafaMS04,https://doi.org/10.1016/j.ress.2003.10.011 +Claudio M. Rocco Sanseverino,Identification of top contributors to system vulnerability via an ordinal optimization based method.,2013,114,Rel. Eng. and Sys. Safety,,db/journals/ress/ress114.html#SanseverinoR13,https://doi.org/10.1016/j.ress.2013.01.003 +Xiang Fang,Research of psychological characteristics and performance relativity of operators.,2008,93,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress93.html#FangHZ08,https://doi.org/10.1016/j.ress.2007.07.001 +Fariz Abdul Rahman,Application of fault tree analysis for customer reliability assessment of a distribution power system.,2013,111,Rel. Eng. and Sys. Safety,,db/journals/ress/ress111.html#RahmanVKL13,https://doi.org/10.1016/j.ress.2012.10.011 +I. A. Herrera,Comparing a multi-linear (STEP) and systemic (FRAM) method for accident analysis.,2010,95,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress95.html#HerreraW10,https://doi.org/10.1016/j.ress.2010.06.003 +Wolfgang Preischl,Human error probabilities from operational experience of German nuclear power plants.,2013,109,Rel. Eng. and Sys. Safety,,db/journals/ress/ress109.html#PreischlH13,https://doi.org/10.1016/j.ress.2012.08.004 +Liyang Xie,Time domain series system definition and gear set reliability modeling.,2016,155,Rel. Eng. and Sys. Safety,,db/journals/ress/ress155.html#XieWQ16,https://doi.org/10.1016/j.ress.2016.06.009 +Andrea Bobbio,Improving the analysis of dependable systems by mapping fault trees into Bayesian networks.,2001,71,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress71.html#BobbioPMC01,https://doi.org/10.1016/S0951-8320(00)00077-6 +Zeqi Zhao,Remaining useful life prediction of aircraft engine based on degradation pattern learning.,2017,164,Rel. Eng. and Sys. Safety,,db/journals/ress/ress164.html#ZhaoLWL17,https://doi.org/10.1016/j.ress.2017.02.007 +Lance Fiondella,Discrete and continuous reliability models for systems with identically distributed correlated components.,2015,133,Rel. Eng. and Sys. Safety,,db/journals/ress/ress133.html#FiondellaX15,https://doi.org/10.1016/j.ress.2014.08.004 +Y. X. Zhao,A methodology for strain-based fatigue reliability analysis.,2000,70,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress70.html#Zhao00,https://doi.org/10.1016/S0951-8320(00)00062-4 +J. B. Weathers,An exercise in model validation: Comparing univariate statistics and Monte Carlo-based multivariate statistics.,2009,94,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress94.html#WeathersLW09,https://doi.org/10.1016/j.ress.2009.04.007 +Cher Ming Tan,A framework to practical predictive maintenance modeling for multi-state systems.,2008,93,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress93.html#TanR08,https://doi.org/10.1016/j.ress.2007.09.003 +Maurizio Guida,A time-discrete extended gamma process for time-dependent degradation phenomena.,2012,105,Rel. Eng. and Sys. Safety,,db/journals/ress/ress105.html#GuidaPP12,https://doi.org/10.1016/j.ress.2011.12.016 +Yuchang Mo,MDD-based performability analysis of multi-state linear consecutive-k-out-of-n: F systems.,2017,166,Rel. Eng. and Sys. Safety,,db/journals/ress/ress166.html#MoXCS17,https://doi.org/10.1016/j.ress.2016.08.027 +Min Ouyang,Resilience assessment of interdependent infrastructure systems: With a focus on joint restoration modeling and analysis.,2015,141,Rel. Eng. and Sys. Safety,,db/journals/ress/ress141.html#OuyangW15,https://doi.org/10.1016/j.ress.2015.03.011 +Pierre-Etienne Labeau,Dynamic reliability: towards an integrated platform for probabilistic risk assessment.,2000,68,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress68.html#LabeauSS00,https://doi.org/10.1016/S0951-8320(00)00017-X +P. Martorell,Evaluation of risk impact of completion time changes combining PSA and DSA model insight and human reliability analysis.,2018,178,Rel. Eng. and Sys. Safety,,db/journals/ress/ress178.html#MartorellMSMSS18,https://doi.org/10.1016/j.ress.2018.05.008 +Rüdiger Rackwitz,Optimizing systematically renewed structures.,2001,73,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress73.html#Rackwitz01,https://doi.org/10.1016/S0951-8320(01)00050-3 +Irmela Zentner,Sensitivity analysis for reliable design verification of nuclear turbosets.,2011,96,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress96.html#ZentnerTR11,https://doi.org/10.1016/j.ress.2010.10.005 +Pingping Wang,Bayesian analysis of two-phase degradation data based on change-point Wiener process.,2018,170,Rel. Eng. and Sys. Safety,,db/journals/ress/ress170.html#WangTBH18,https://doi.org/10.1016/j.ress.2017.09.027 +Jan M. van Noortwijk,Explicit formulas for the variance of discounted life-cycle cost.,2003,80,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress80.html#Noortwijk03,https://doi.org/10.1016/S0951-8320(03)00023-1 +Yi-Ping Fang,Optimizing power system investments and resilience against attacks.,2017,159,Rel. Eng. and Sys. Safety,,db/journals/ress/ress159.html#FangS17,https://doi.org/10.1016/j.ress.2016.10.028 +Vassilis Tsagkas,A pragmatic mapping of factors behind deviating acts in aircraft maintenance.,2014,130,Rel. Eng. and Sys. Safety,,db/journals/ress/ress130.html#TsagkasNM14,https://doi.org/10.1016/j.ress.2014.05.011 +Adrian V. Gheorghe,Comprehensive risk assessment for rail transportation of dangerous goods: a validated platform for decision support.,2005,88,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress88.html#GheorgheBVPK05,https://doi.org/10.1016/j.ress.2004.07.017 +Bengt O. Y. Lydell,Pipe failure probability - the Thomas paper revisited.,2000,68,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress68.html#Lydell00,https://doi.org/10.1016/S0951-8320(00)00016-8 +Yuyin Li,Reliability analysis of subsea pipelines under spatially varying ground motions by using subset simulation.,2018,172,Rel. Eng. and Sys. Safety,,db/journals/ress/ress172.html#LiZK18,https://doi.org/10.1016/j.ress.2017.12.006 +Enrico Zio,Importance measures-based prioritization for improving the performance of multi-state systems: application to the railway industry.,2007,92,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress92.html#ZioMP07a,https://doi.org/10.1016/j.ress.2006.07.010 +Zequn Wang,A new approach for reliability analysis with time-variant performance characteristics.,2013,115,Rel. Eng. and Sys. Safety,,db/journals/ress/ress115.html#WangW13,https://doi.org/10.1016/j.ress.2013.02.017 +Rakesh Ranjan,A Bayes analysis of a competing risk model based on gamma and exponential failures.,2015,144,Rel. Eng. and Sys. Safety,,db/journals/ress/ress144.html#RanjanSU15,https://doi.org/10.1016/j.ress.2015.07.007 +Pengfei Wei,Time-dependent reliability sensitivity analysis of motion mechanisms.,2016,149,Rel. Eng. and Sys. Safety,,db/journals/ress/ress149.html#WeiSLY16,https://doi.org/10.1016/j.ress.2015.12.019 +Yang Hu 0003,A particle filtering and kernel smoothing-based approach for new design component prognostics.,2015,134,Rel. Eng. and Sys. Safety,,db/journals/ress/ress134.html#HuBMZ15,https://doi.org/10.1016/j.ress.2014.10.003 +Rob P. Rechard,Site selection and regulatory basis for the Yucca Mountain disposal system for spent nuclear fuel and high-level radioactive waste.,2014,122,Rel. Eng. and Sys. Safety,,db/journals/ress/ress122.html#RechardCV14,https://doi.org/10.1016/j.ress.2013.06.021 +A. Joanni,Cost-benefit optimization for maintained structures by a renewal model.,2008,93,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress93.html#JoanniR08,https://doi.org/10.1016/j.ress.2006.12.014 +Lei Shi,A new RBDO method using adaptive response surface and first-order score function for crashworthiness design.,2016,156,Rel. Eng. and Sys. Safety,,db/journals/ress/ress156.html#ShiL16,https://doi.org/10.1016/j.ress.2016.07.007 +Shinyoung Kwag,Probabilistic risk assessment based model validation method using Bayesian network.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#KwagGD18,https://doi.org/10.1016/j.ress.2017.09.013 +Seth D. Guikema,A proposal for including technical failure risk in market-based resource reallocation for spacecraft design.,2007,92,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress92.html#Guikema07a,https://doi.org/10.1016/j.ress.2006.03.002 +Gregory Levitin,Asymmetric weighted voting systems.,2002,76,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress76.html#Levitin02a,https://doi.org/10.1016/S0951-8320(02)00012-1 +So Young Sohn,Acceptance sampling based on reliability degradation data.,2001,73,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress73.html#SohnJ01,https://doi.org/10.1016/S0951-8320(01)00031-X +Xueli Gao,An approach for prediction of petroleum production facility performance considering Arctic influence factors.,2010,95,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress95.html#GaoBM10,https://doi.org/10.1016/j.ress.2010.03.011 +Barbara Gallina,Special section on: Reliability and Safety Certification of Software-Intensive Systems.,2017,158,Rel. Eng. and Sys. Safety,,db/journals/ress/ress158.html#GallinaN17,https://doi.org/10.1016/j.ress.2016.11.004 +Linda J. Bellamy,Risk horoscopes: Predicting the number and type of serious occupational accidents in The Netherlands for sectors and jobs.,2015,133,Rel. Eng. and Sys. Safety,,db/journals/ress/ress133.html#BellamyDMAPO15,https://doi.org/10.1016/j.ress.2014.09.012 +Nicola Paltrinieri,Hazard identification for innovative LNG regasification technologies.,2015,137,Rel. Eng. and Sys. Safety,,db/journals/ress/ress137.html#PaltrinieriTC15,https://doi.org/10.1016/j.ress.2014.12.006 +Shengnan Wu,Performance analysis for subsea blind shear ram preventers subject to testing strategies.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#WuZBZL18,https://doi.org/10.1016/j.ress.2017.08.022 +Kouroush Jenab,Operational reliability assessment of an aircraft environmental control system.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#JenabR09,https://doi.org/10.1016/j.ress.2008.05.003 +Guodong Wang 0003,Bootstrap analysis of designed experiments for reliability improvement with a non-constant scale parameter.,2017,160,Rel. Eng. and Sys. Safety,,db/journals/ress/ress160.html#WangHXCLZ17,https://doi.org/10.1016/j.ress.2016.12.006 +Tor Olav Grøtan,Scientific foundations of addressing risk in complex and dynamic environments.,2011,96,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress96.html#GrotanSA11,https://doi.org/10.1016/j.ress.2010.12.009 +Florent Brissaud,Using field feedback to estimate failure rates of safety-related systems.,2017,159,Rel. Eng. and Sys. Safety,,db/journals/ress/ress159.html#Brissaud17,https://doi.org/10.1016/j.ress.2016.11.003 +M. Imran Rafiq,Performance updating of concrete bridges using proactive health monitoring methods.,2004,86,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress86.html#RafiqCO04,https://doi.org/10.1016/j.ress.2004.01.012 +Wolfgang Weber,Enhancing software safety by fault trees: experiences from an application to flight critical software.,2005,89,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress89.html#WeberTB05,https://doi.org/10.1016/j.ress.2004.08.007 +Mark Bebbington,The discrete additive Weibull distribution: A bathtub-shaped hazard for discontinuous failure data.,2012,106,Rel. Eng. and Sys. Safety,,db/journals/ress/ress106.html#BebbingtonLWZ12,https://doi.org/10.1016/j.ress.2012.06.009 +Rodrigo Pascual,On the effect of downtime costs and budget constraint on preventive and replacement policies.,2008,93,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress93.html#PascualMR08,https://doi.org/10.1016/j.ress.2006.12.002 +O. Morales,Eliciting conditional and unconditional rank correlations from conditional probabilities.,2008,93,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress93.html#MoralesKR08,https://doi.org/10.1016/j.ress.2007.03.020 +Fausto P. García,Time series methods applied to failure prediction and detection.,2010,95,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress95.html#GarciaPR10,https://doi.org/10.1016/j.ress.2009.10.009 +Angelito Gabriel,Developments in SIL determination and calculation.,2018,177,Rel. Eng. and Sys. Safety,,db/journals/ress/ress177.html#GabrielOS18,https://doi.org/10.1016/j.ress.2018.04.028 +Stephen Gilmore,A unified tool for performance modelling and prediction.,2005,89,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress89.html#GilmoreK05,https://doi.org/10.1016/j.ress.2004.08.004 +Yan-Hui Lin,Uncertainty importance measures of dependent transition rates for transient and steady state probabilities.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#LinY17,https://doi.org/10.1016/j.ress.2017.05.008 +Yuri S. Petryna,Reliability of reinforced concrete structures under fatigue.,2002,77,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress77.html#PetrynaPSK02,https://doi.org/10.1016/S0951-8320(02)00058-3 +Qimi Jiang,A numerical algorithm of fuzzy reliability.,2003,80,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress80.html#JiangC03,https://doi.org/10.1016/S0951-8320(03)00055-3 +Min Ouyang,An approach to design interface topologies across interdependent urban infrastructure systems.,2011,96,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress96.html#OuyangD11,https://doi.org/10.1016/j.ress.2011.06.002 +Nur Ashida Salim,Risk assessment of dynamic system cascading collapse for determining the sensitive transmission lines and severity of total loading conditions.,2017,157,Rel. Eng. and Sys. Safety,,db/journals/ress/ress157.html#SalimOMSB17,https://doi.org/10.1016/j.ress.2016.08.002 +Alfredo López-Benito,A case study on global sensitivity analysis with dependent inputs: The natural gas transmission model.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#Lopez-BenitoB17,https://doi.org/10.1016/j.ress.2017.03.019 +Fabrice Guérin,Reliability estimation by Bayesian method: definition of prior distribution using dependability study.,2003,82,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress82.html#GuerinDU03,https://doi.org/10.1016/j.ress.2003.07.002 +John D. Andrews,Application of the cause-consequence diagram method to static systems.,2002,75,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress75.html#AndrewsR02,https://doi.org/10.1016/S0951-8320(01)00113-2 +Francesco Cadini,Monte Carlo simulation of radionuclide migration in fractured rock for the performance assessment of radioactive waste repositories.,2013,111,Rel. Eng. and Sys. Safety,,db/journals/ress/ress111.html#CadiniSBZ13,https://doi.org/10.1016/j.ress.2012.10.002 +Fábio Prataviera,A new generalized odd log-logistic flexible Weibull regression model with applications in repairable systems.,2018,176,Rel. Eng. and Sys. Safety,,db/journals/ress/ress176.html#PratavieraOCPV18,https://doi.org/10.1016/j.ress.2018.03.034 +Yongming Liu,Multiaxial fatigue reliability analysis of railroad wheels.,2008,93,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress93.html#LiuLSM08,https://doi.org/10.1016/j.ress.2006.12.021 +Fulvio Tonon,Reliability analysis of rock mass response by means of Random Set Theory.,2000,70,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress70.html#TononBM00a,https://doi.org/10.1016/S0951-8320(00)00059-4 +Jinyong Wang,Software reliability prediction using a deep learning model based on the RNN encoder-decoder.,2018,170,Rel. Eng. and Sys. Safety,,db/journals/ress/ress170.html#WangZ18,https://doi.org/10.1016/j.ress.2017.10.019 +Tim Bedford,Assessing parameter uncertainty on coupled models using minimum information methods.,2014,125,Rel. Eng. and Sys. Safety,,db/journals/ress/ress125.html#BedfordWD14,https://doi.org/10.1016/j.ress.2013.05.011 +Fausto Pedro García Márquez,A reliability centered approach to remote condition monitoring. A railway points case study.,2003,80,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress80.html#MarquezSC03,https://doi.org/10.1016/S0951-8320(02)00166-7 +Giovanni Mazzeo,SIL2 assessment of an Active/Standby COTS-based Safety-Related system.,2018,176,Rel. Eng. and Sys. Safety,,db/journals/ress/ress176.html#MazzeoCDMR18,https://doi.org/10.1016/j.ress.2018.04.009 +Peter G. Bishop,A conservative bound for the probability of failure of a 1-out-of-2 protection system with one hardware-only and one software-based protection train.,2014,130,Rel. Eng. and Sys. Safety,,db/journals/ress/ress130.html#BishopBLPPS14,https://doi.org/10.1016/j.ress.2014.04.002 +Karen B. Marais,Conceptualizing and communicating organizational risk dynamics in the thoroughness-efficiency space.,2008,93,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress93.html#MaraisS08,https://doi.org/10.1016/j.ress.2008.01.004 +Gianpaolo Pulcini,On the overhaul effect for repairable mechanical units: a Bayes approach.,2000,70,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress70.html#Pulcini00,https://doi.org/10.1016/S0951-8320(00)00046-6 +Steven J. Landry,State-based modeling of continuous human-integrated systems: An application to air traffic separation assurance.,2010,95,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress95.html#LandryLK10,https://doi.org/10.1016/j.ress.2009.11.004 +Jong Soo Choi,A practical method for accurate quantification of large fault trees.,2007,92,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress92.html#ChoiC07,https://doi.org/10.1016/j.ress.2006.07.005 +Minge Xie,Modeling the reliability of threshold weighted voting systems.,2005,87,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress87.html#XieP05,https://doi.org/10.1016/j.ress.2004.04.001 +Romain Cuer,A formal framework for the safe design of the Autonomous Driving supervision.,2018,174,Rel. Eng. and Sys. Safety,,db/journals/ress/ress174.html#CuerPNDED18,https://doi.org/10.1016/j.ress.2018.01.014 +Xuefei Guan,An efficient analytical Bayesian method for reliability and system response updating based on Laplace and inverse first-order reliability computations.,2012,97,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress97.html#GuanHJL12,https://doi.org/10.1016/j.ress.2011.09.008 +Radim Bris,Effective computing algorithm for maintenance optimization of highly reliable systems.,2013,109,Rel. Eng. and Sys. Safety,,db/journals/ress/ress109.html#BrisB13,https://doi.org/10.1016/j.ress.2012.08.010 +Chao Fang,Network theory-based analysis of risk interactions in large engineering projects.,2012,106,Rel. Eng. and Sys. Safety,,db/journals/ress/ress106.html#FangMZB12,https://doi.org/10.1016/j.ress.2012.04.005 +Lev V. Utkin,A new efficient algorithm for computing the imprecise reliability of monotone systems.,2004,86,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress86.html#Utkin04,https://doi.org/10.1016/j.ress.2003.12.008 +H. P. Hong,Optimal condition-based maintenance decisions for systems with dependent stochastic degradation of components.,2014,121,Rel. Eng. and Sys. Safety,,db/journals/ress/ress121.html#HongZZY14,https://doi.org/10.1016/j.ress.2013.09.004 +Ondrej Nývlt,Complex accident scenarios modelled and analysed by Stochastic Petri Nets.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#NyvltHF15,https://doi.org/10.1016/j.ress.2015.06.015 +Lexin Lin,On the perceived usefulness of risk descriptions for decision-making in disaster risk management.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#LinNSAT15,https://doi.org/10.1016/j.ress.2015.04.012 +Hai Canh Vu,Maintenance grouping strategy for multi-component systems with dynamic contexts.,2014,132,Rel. Eng. and Sys. Safety,,db/journals/ress/ress132.html#VuVBB14,https://doi.org/10.1016/j.ress.2014.08.002 +Vitali Volovoi,Universal failure model for multi-unit systems with shared functionality.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#Volovoi13,https://doi.org/10.1016/j.ress.2013.05.014 +Hongyan Dui,A cost-based integrated importance measure of system components for preventive maintenance.,2017,168,Rel. Eng. and Sys. Safety,,db/journals/ress/ress168.html#DuiSY17,https://doi.org/10.1016/j.ress.2017.05.025 +Francisco Germán Badía,Aging properties of the additive and proportional hazard mixing models.,2002,78,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress78.html#BadiaBC02a,https://doi.org/10.1016/S0951-8320(02)00156-4 +S. A. Patterson,Identification of critical locations across multiple infrastructures for terrorist actions.,2007,92,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress92.html#PattersonA07,https://doi.org/10.1016/j.ress.2006.08.004 +Jérôme Morio,Non-parametric adaptive importance sampling for the probability estimation of a launcher impact position.,2011,96,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress96.html#Morio11,https://doi.org/10.1016/j.ress.2010.08.006 +Luca Podofillini,A Bayesian approach to treat expert-elicited probabilities in human reliability analysis model construction.,2013,117,Rel. Eng. and Sys. Safety,,db/journals/ress/ress117.html#PodofilliniD13,https://doi.org/10.1016/j.ress.2013.03.015 +Massimiliano De Ambroggi,Modelling and assessment of dependent performance shaping factors through Analytic Network Process.,2011,96,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress96.html#AmbroggiT11,https://doi.org/10.1016/j.ress.2011.03.004 +Xiang Jia,Inference on the reliability of Weibull distribution with multiply Type-I censored data.,2016,150,Rel. Eng. and Sys. Safety,,db/journals/ress/ress150.html#JiaWJG16,https://doi.org/10.1016/j.ress.2016.01.025 +Philippe Weber,Complex system reliability modelling with Dynamic Object Oriented Bayesian Networks (DOOBN).,2006,91,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress91.html#WeberJ06,https://doi.org/10.1016/j.ress.2005.03.006 +So Young Sohn,Fuzzy QFD for supply chain management with reliability consideration.,2001,72,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress72.html#SohnC01,https://doi.org/10.1016/S0951-8320(01)00022-9 +Piotr Cholda,Towards risk-aware communications networking.,2013,109,Rel. Eng. and Sys. Safety,,db/journals/ress/ress109.html#CholdaFHKNN13,https://doi.org/10.1016/j.ress.2012.08.009 +Shankar Sankararaman,Likelihood-based representation of epistemic uncertainty due to sparse point data and/or interval data.,2011,96,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress96.html#SankararamanM11,https://doi.org/10.1016/j.ress.2011.02.003 +Alessandro Tugnoli,Mitigation of fire damage and escalation by fireproofing: A risk-based strategy.,2012,105,Rel. Eng. and Sys. Safety,,db/journals/ress/ress105.html#TugnoliCPBT12,https://doi.org/10.1016/j.ress.2011.11.002 +Diego J. Pedregal,Vibration analysis diagnostics by continuous-time models: A case study.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#PedregalC09,https://doi.org/10.1016/j.ress.2008.03.003 +Gh. A. Shirali,A new method for quantitative assessment of resilience engineering by PCA and NT approach: A case study in a process industry.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#ShiraliME13,https://doi.org/10.1016/j.ress.2013.05.003 +R. Jiang,Health state evaluation of an item: A general framework and graphical representation.,2008,93,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress93.html#JiangJ08,https://doi.org/10.1016/j.ress.2006.10.018 +Md. Tanjin Amin,Dynamic availability assessment of safety critical systems using a dynamic Bayesian network.,2018,178,Rel. Eng. and Sys. Safety,,db/journals/ress/ress178.html#AminKI18,https://doi.org/10.1016/j.ress.2018.05.017 +Matthew Grant,Modelling improvised explosive device attacks in the West - Assessing the hazard.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#GrantS17,https://doi.org/10.1016/j.ress.2017.04.007 +Emma Sheils,Development of a two-stage inspection process for the assessment of deteriorating infrastructure.,2010,95,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress95.html#SheilsOBSY10,https://doi.org/10.1016/j.ress.2009.09.008 +Marzio Marseguerra,A MC-PSO approach to the failure probability evaluation of risky plant components: The maintenance design.,2013,111,Rel. Eng. and Sys. Safety,,db/journals/ress/ress111.html#Marseguerra13,https://doi.org/10.1016/j.ress.2012.09.009 +Katrina Groth,Bridging the gap between HRA research and HRA practice: A Bayesian network version of SPAR-H.,2013,115,Rel. Eng. and Sys. Safety,,db/journals/ress/ress115.html#GrothS13,https://doi.org/10.1016/j.ress.2013.02.015 +Alexandros A. Taflanidis,Offshore wind turbine risk quantification/evaluation under extreme environmental conditions.,2013,115,Rel. Eng. and Sys. Safety,,db/journals/ress/ress115.html#TaflanidisLA13,https://doi.org/10.1016/j.ress.2013.02.003 +Xin-yang Wu,Extended object-oriented Petri net model for mission reliability simulation of repairable PMS with common cause failures.,2015,136,Rel. Eng. and Sys. Safety,,db/journals/ress/ress136.html#WuW15,https://doi.org/10.1016/j.ress.2014.11.012 +Quan Qin,Calibration of reliability index of RC beams for serviceability limit state of maximum crack width.,2002,75,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress75.html#QinZ02,https://doi.org/10.1016/S0951-8320(01)00133-8 +Xian-Xun Yuan,A nonlinear mixed-effects model for degradation data obtained from in-service inspections.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#YuanP09,https://doi.org/10.1016/j.ress.2008.06.013 +S. K. Yang,An experiment of state estimation for predictive maintenance using Kalman filter on a DC motor.,2002,75,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress75.html#Yang02,https://doi.org/10.1016/S0951-8320(01)00107-7 +Sung Deok Cha,Systematic evaluation of fault trees using real-time model checker UPPAAL.,2003,82,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress82.html#ChaSYJS03,https://doi.org/10.1016/S0951-8320(03)00059-0 +Andrija Volkanovski,Genetic algorithm optimisation of the maintenance scheduling of generating units in a power system.,2008,93,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress93.html#VolkanovskiMBCC08,https://doi.org/10.1016/j.ress.2007.03.027 +Pierre-Etienne Labeau,Procedures of Monte Carlo transport simulation for applications in system engineering.,2002,77,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress77.html#LabeauZ02,https://doi.org/10.1016/S0951-8320(02)00055-8 +F. A. Buijs,Time-dependent reliability analysis of flood defences.,2009,94,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress94.html#BuijsHSG09,https://doi.org/10.1016/j.ress.2009.06.012 +Binchao Chen,Two-terminal reliability of a mobile ad hoc network under the asymptotic spatial distribution of the random waypoint model.,2012,106,Rel. Eng. and Sys. Safety,,db/journals/ress/ress106.html#ChenPM12,https://doi.org/10.1016/j.ress.2012.05.005 +Dingzhou Cao,Efficient exact optimization of multi-objective redundancy allocation problems in series-parallel systems.,2013,111,Rel. Eng. and Sys. Safety,,db/journals/ress/ress111.html#CaoMC13,https://doi.org/10.1016/j.ress.2012.09.013 +Zhaoqiang Wang,A case study of remaining storage life prediction using stochastic filtering with the influence of condition monitoring.,2014,132,Rel. Eng. and Sys. Safety,,db/journals/ress/ress132.html#WangHWZS14,https://doi.org/10.1016/j.ress.2014.07.015 +Xiaoge Zhang,Reliability analysis with linguistic data: An evidential network approach.,2017,162,Rel. Eng. and Sys. Safety,,db/journals/ress/ress162.html#ZhangMD17,https://doi.org/10.1016/j.ress.2017.01.009 +Nita Yodo,A control-guided failure restoration framework for the design of resilient engineering systems.,2018,178,Rel. Eng. and Sys. Safety,,db/journals/ress/ress178.html#YodoW18,https://doi.org/10.1016/j.ress.2018.05.018 +Weiwen Peng,Reliability analysis of repairable systems with recurrent misuse-induced failures and normal-operation failures.,2018,171,Rel. Eng. and Sys. Safety,,db/journals/ress/ress171.html#PengSSS18,https://doi.org/10.1016/j.ress.2017.11.016 +Haritha Saranga,Reliability prediction for condition-based maintained systems.,2001,71,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress71.html#SarangaK01,https://doi.org/10.1016/S0951-8320(00)00094-6 +Pietro Turati,Advanced RESTART method for the estimation of the probability of failure of highly reliable hybrid dynamic systems.,2016,154,Rel. Eng. and Sys. Safety,,db/journals/ress/ress154.html#TuratiPZ16,https://doi.org/10.1016/j.ress.2016.04.020 +Kwang Yong Koh,SMV model-based safety analysis of software requirements.,2009,94,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress94.html#KohS09,https://doi.org/10.1016/j.ress.2008.03.025 +Gregory Levitin,Optimizing survivability of vulnerable series-parallel multi-state systems.,2003,79,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress79.html#LevitinL03,https://doi.org/10.1016/S0951-8320(02)00241-7 +V. Gregory Weirs,Sensitivity analysis techniques applied to a system of hyperbolic conservation laws.,2012,107,Rel. Eng. and Sys. Safety,,db/journals/ress/ress107.html#WeirsKSTRARE12,https://doi.org/10.1016/j.ress.2011.12.008 +Constantinos Heracleous,Hybrid systems modeling for critical infrastructures interdependency analysis.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#HeracleousKPEP17,https://doi.org/10.1016/j.ress.2017.03.028 +Iain Bate,Architectural considerations in the certification of modular systems.,2003,81,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress81.html#BateK03,https://doi.org/10.1016/S0951-8320(03)00094-2 +Rodrigo Pascual,Optimal repairable spare-parts procurement policy under total business volume discount environment.,2017,159,Rel. Eng. and Sys. Safety,,db/journals/ress/ress159.html#PascualSLVC17,https://doi.org/10.1016/j.ress.2016.10.034 +Liyang Xie,System-level load-strength interference based reliability modeling of k-out-of-n system.,2004,84,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress84.html#XieZH04,https://doi.org/10.1016/j.ress.2003.12.003 +Gregory Levitin,Reliability and performance analysis for fault-tolerant programs consisting of versions with different characteristics.,2004,86,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress86.html#Levitin04b,https://doi.org/10.1016/j.ress.2004.01.002 +Chun-Chen Huang,A two-stage preventive maintenance policy for a multi-state deterioration system.,2010,95,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress95.html#HuangY10,https://doi.org/10.1016/j.ress.2010.07.001 +Lisa M. Bartlett,Integrated system fault diagnostics utilising digraph and fault tree-based approaches.,2009,94,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress94.html#BartlettHK09,https://doi.org/10.1016/j.ress.2008.12.005 +Enrico Zio,Level Diagrams analysis of Pareto Front for multiobjective system redundancy allocation.,2011,96,Rel. Eng. and Sys. Safety,5,db/journals/ress/ress96.html#ZioB11,https://doi.org/10.1016/j.ress.2010.12.016 +Man Cheol Kim,A method for identifying instrument faults in nuclear power plants possibly leading to wrong situation assessment.,2008,93,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress93.html#KimS08,https://doi.org/10.1016/j.ress.2006.10.023 +Lei Xiao,Joint optimization of production scheduling and machine group preventive maintenance.,2016,146,Rel. Eng. and Sys. Safety,,db/journals/ress/ress146.html#XiaoSCC16,https://doi.org/10.1016/j.ress.2015.10.013 +Baichao Wu,Modeling cascading failures in interdependent infrastructures under terrorist attacks.,2016,147,Rel. Eng. and Sys. Safety,,db/journals/ress/ress147.html#WuTW16,https://doi.org/10.1016/j.ress.2015.10.019 +Chester J. Everline,Comparison of techniques for modeling accident progression in dynamic aerospace applications with and without repair.,2006,91,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress91.html#EverlineP06,https://doi.org/10.1016/j.ress.2005.01.016 +F. Salimi,Designing a bio-fuel network considering links reliability and risk-pooling effect in bio-refineries.,2018,174,Rel. Eng. and Sys. Safety,,db/journals/ress/ress174.html#SalimiV18,https://doi.org/10.1016/j.ress.2018.02.020 +Jiawen Hu,Preventive maintenance of a single machine system working under piecewise constant operating condition.,2017,168,Rel. Eng. and Sys. Safety,,db/journals/ress/ress168.html#HuJL17,https://doi.org/10.1016/j.ress.2017.05.014 +Narayanaswamy Balakrishnan 0001,EM algorithm for one-shot device testing with competing risks under exponential distribution.,2015,137,Rel. Eng. and Sys. Safety,,db/journals/ress/ress137.html#BalakrishnanSL15,https://doi.org/10.1016/j.ress.2014.12.014 +Ji-Min Lu,Reliability evaluation of generalized phased-mission systems with repairable components.,2014,121,Rel. Eng. and Sys. Safety,,db/journals/ress/ress121.html#LuW14,https://doi.org/10.1016/j.ress.2013.08.005 +Daniela M. Hanea,Quantitative and qualitative analysis of the expert and non-expert opinion in fire risk in buildings.,2010,95,Rel. Eng. and Sys. Safety,7,db/journals/ress/ress95.html#HaneaJAA10,https://doi.org/10.1016/j.ress.2010.02.011 +Weiwen Peng,Inverse Gaussian process models for degradation analysis: A Bayesian perspective.,2014,130,Rel. Eng. and Sys. Safety,,db/journals/ress/ress130.html#PengLYHZ14,https://doi.org/10.1016/j.ress.2014.06.005 +Liudong Xing,Reliability of k-out-of-n systems with phased-mission requirements and imperfect fault coverage.,2012,103,Rel. Eng. and Sys. Safety,,db/journals/ress/ress103.html#XingAW12,https://doi.org/10.1016/j.ress.2012.03.018 +Inseok Park,A Bayesian statistical method for quantifying model form uncertainty and two model combination methods.,2014,129,Rel. Eng. and Sys. Safety,,db/journals/ress/ress129.html#ParkG14,https://doi.org/10.1016/j.ress.2014.04.023 +Yuchang Mo,Efficient analysis of multi-state k-out-of-n systems.,2015,133,Rel. Eng. and Sys. Safety,,db/journals/ress/ress133.html#MoXAD15,https://doi.org/10.1016/j.ress.2014.09.006 +Kari Sentz,Probabilistic bounding analysis in the Quantification of Margins and Uncertainties.,2011,96,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress96.html#SentzF11,https://doi.org/10.1016/j.ress.2011.02.014 +Jianye Ching,Bayesian updating of reliability of civil infrastructure facilities based on condition-state data and fault-tree model.,2009,94,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress94.html#ChingL09,https://doi.org/10.1016/j.ress.2009.07.002 +Hector A. Jensen,A Stochastic Framework for Reliability and Sensitivity Analysis of Large Scale Water Distribution Networks.,2018,176,Rel. Eng. and Sys. Safety,,db/journals/ress/ress176.html#JensenJ18,https://doi.org/10.1016/j.ress.2018.04.001 +Teresa Gomes,An efficient algorithm for sequential generation of failure states in a network with multi-mode components.,2002,77,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress77.html#GomesCM02,https://doi.org/10.1016/S0951-8320(02)00006-6 +Sergio Contini,Analysis of large fault trees based on functional decomposition.,2011,96,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress96.html#ContiniM11,https://doi.org/10.1016/j.ress.2010.11.002 +Xiaoyan Zhu,Birnbaum importance based heuristics for multi-type component assignment problems.,2017,165,Rel. Eng. and Sys. Safety,,db/journals/ress/ress165.html#ZhuFYW17,https://doi.org/10.1016/j.ress.2017.04.018 +Enrico Zio,Monte Carlo simulation-based sensitivity analysis of the model of a thermal-hydraulic passive system.,2012,107,Rel. Eng. and Sys. Safety,,db/journals/ress/ress107.html#ZioP12,https://doi.org/10.1016/j.ress.2011.08.006 +Jaroslav Holý,Some insights from recent applications of HRA methods in PSA effort and plant operation feedback in Czech Republic.,2004,83,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress83.html#Holy04,https://doi.org/10.1016/j.ress.2003.09.008 +Mustapha Nourelfath,Optimization of series-parallel multi-state systems under maintenance policies.,2007,92,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress92.html#NourelfathA07,https://doi.org/10.1016/j.ress.2006.09.016 +Zhiqiang Sun,Estimating Human Error Probability using a modified CREAM.,2012,100,Rel. Eng. and Sys. Safety,,db/journals/ress/ress100.html#SunLGX12,https://doi.org/10.1016/j.ress.2011.12.017 +Antonio Eduardo Bier Longhi,Multiobjective optimization of strategies for operation and testing of low-demand safety instrumented systems using a genetic algorithm and fault trees.,2015,142,Rel. Eng. and Sys. Safety,,db/journals/ress/ress142.html#LonghiPG15,https://doi.org/10.1016/j.ress.2015.06.010 +Ahmad M. Aboalkhair,Nonparametric predictive inference for reliability of a k-out-of-m: G system with multiple component types.,2014,131,Rel. Eng. and Sys. Safety,,db/journals/ress/ress131.html#AboalkhairCM14,https://doi.org/10.1016/j.ress.2014.04.010 +Andrew Rae,Fixing the cracks in the crystal ball: A maturity model for quantitative risk assessment.,2014,125,Rel. Eng. and Sys. Safety,,db/journals/ress/ress125.html#RaeAM14,https://doi.org/10.1016/j.ress.2013.09.008 +Mark-Alexander Sujan,The role of dynamic trade-offs in creating safety - A qualitative study of handover across care boundaries in emergency care.,2015,141,Rel. Eng. and Sys. Safety,,db/journals/ress/ress141.html#SujanSC15,https://doi.org/10.1016/j.ress.2015.03.006 +Andrija Volkanovski,Application of the fault tree analysis for assessment of power system reliability.,2009,94,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress94.html#VolkanovskiCM09,https://doi.org/10.1016/j.ress.2009.01.004 +Shaomin Wu,Burn-in policies for products having dormant states.,2007,92,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress92.html#WuC07,https://doi.org/10.1016/j.ress.2006.04.003 +Claudio Rocco,Sensitivity and uncertainty analysis in optimization programs using an evolutionary approach: a maintenance application.,2000,67,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress67.html#RoccoMMCM00,https://doi.org/10.1016/S0951-8320(99)00065-4 +M. Mahsuli,Sensitivity measures for optimal mitigation of risk and reduction of model uncertainty.,2013,117,Rel. Eng. and Sys. Safety,,db/journals/ress/ress117.html#MahsuliH13,https://doi.org/10.1016/j.ress.2013.03.011 +Yaonan Kong,Goodness-of-fit tests in the multi-state Markov model.,2017,166,Rel. Eng. and Sys. Safety,,db/journals/ress/ress166.html#KongY17,https://doi.org/10.1016/j.ress.2017.02.010 +Baoping Cai,A multiphase dynamic Bayesian networks methodology for the determination of safety integrity levels.,2016,150,Rel. Eng. and Sys. Safety,,db/journals/ress/ress150.html#CaiLF16,https://doi.org/10.1016/j.ress.2016.01.018 +Marko Nagode,An alternative perspective on the mixture estimation problem.,2006,91,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress91.html#NagodeF06,https://doi.org/10.1016/j.ress.2005.02.005 +Jan Terje Kvaløy,An alternative approach to trend analysis in accident data.,2005,90,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress90.html#KvaloyA05,https://doi.org/10.1016/j.ress.2004.10.010 +Leif Jarle Gressgård,Knowledge exchange and learning from failures in distributed environments: The role of contractor relationship management and work characteristics.,2015,133,Rel. Eng. and Sys. Safety,,db/journals/ress/ress133.html#GressgardH15,https://doi.org/10.1016/j.ress.2014.09.010 +Rubén Mullor,Comparison between different uncertainty propagation methods in multivariate analysis: An application in the bivariate case.,2011,96,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress96.html#MullorSMM11,https://doi.org/10.1016/j.ress.2010.12.026 +Jinyuan Chen,An extended extreme shock maintenance model for a deteriorating system.,2008,93,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress93.html#ChenL08,https://doi.org/10.1016/j.ress.2007.09.008 +Maria D. Catrinu,Integrating risk analysis and multi-criteria decision support under uncertainty in electricity distribution system asset management.,2011,96,Rel. Eng. and Sys. Safety,6,db/journals/ress/ress96.html#CatrinuN11,https://doi.org/10.1016/j.ress.2010.12.028 +Won-Hee Kang,Matrix-based system reliability method and applications to bridge networks.,2008,93,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress93.html#KangSG08,https://doi.org/10.1016/j.ress.2008.02.011 +Felicita Di Giandomenico,Automated synthesis of dependable mediators for heterogeneous interoperable systems.,2014,132,Rel. Eng. and Sys. Safety,,db/journals/ress/ress132.html#GiandomenicoIMN14,https://doi.org/10.1016/j.ress.2014.08.001 +Stefano La Rovere,Investigation of the structure of a networked system.,2012,107,Rel. Eng. and Sys. Safety,,db/journals/ress/ress107.html#RovereV12,https://doi.org/10.1016/j.ress.2012.06.013 +David W. Coit,Dynamic k-out-of-n system reliability with component partnership.,2015,138,Rel. Eng. and Sys. Safety,,db/journals/ress/ress138.html#CoitCWK15,https://doi.org/10.1016/j.ress.2015.01.004 +Christopher W. Johnson 0001,What are emergent properties and how do they affect the engineering of complex systems?,2006,91,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress91.html#Johnson06,https://doi.org/10.1016/j.ress.2006.01.008 +S. Jbili,Integrated strategy of Vehicle Routing and Maintenance.,2018,170,Rel. Eng. and Sys. Safety,,db/journals/ress/ress170.html#JbiliCRK18,https://doi.org/10.1016/j.ress.2017.09.030 +Liang Tian,Evolutionary neural network modeling for software cumulative failure time prediction.,2005,87,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress87.html#TianN05,https://doi.org/10.1016/j.ress.2004.03.028 +Jonas Clausen,Generalizing the safety factor approach.,2006,91,Rel. Eng. and Sys. Safety,8,db/journals/ress/ress91.html#ClausenHN06,https://doi.org/10.1016/j.ress.2005.09.002 +Sayanti Mukherjee,A multi-hazard approach to assess severe weather-induced major power outage risks in the U.S.,2018,175,Rel. Eng. and Sys. Safety,,db/journals/ress/ress175.html#MukherjeeNH18,https://doi.org/10.1016/j.ress.2018.03.015 +Mostafa Abouei Ardakan,Multi-objective optimization of reliability-redundancy allocation problem with cold-standby strategy using NSGA-II.,2018,172,Rel. Eng. and Sys. Safety,,db/journals/ress/ress172.html#ArdakanR18,https://doi.org/10.1016/j.ress.2017.12.019 +Xuchao Yu,Risk assessment of the maintenance process for onshore oil and gas transmission pipelines under uncertainty.,2018,177,Rel. Eng. and Sys. Safety,,db/journals/ress/ress177.html#YuLZRL18,https://doi.org/10.1016/j.ress.2018.05.001 +Chaonan Wang,Explicit and implicit methods for probabilistic common-cause failure analysis.,2014,131,Rel. Eng. and Sys. Safety,,db/journals/ress/ress131.html#WangXL14,https://doi.org/10.1016/j.ress.2014.06.024 +G. Ripamonti,Uncertainty propagation in a model for the estimation of the ground level concentration of dioxin/furans emitted from a waste gasification plant.,2013,120,Rel. Eng. and Sys. Safety,,db/journals/ress/ress120.html#RipamontiLBCZ13,https://doi.org/10.1016/j.ress.2013.05.012 +Jose Emmanuel Ramirez-Marquez,Robustness in network community detection under links weights uncertainties.,2016,153,Rel. Eng. and Sys. Safety,,db/journals/ress/ress153.html#Ramirez-Marquez16,https://doi.org/10.1016/j.ress.2016.04.009 +John Quigley,Trading reliability targets within a supply chain using Shapley's value.,2007,92,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress92.html#QuigleyW07,https://doi.org/10.1016/j.ress.2006.09.019 +Candice D. Griffith,Inclusion of fatigue effects in human reliability analysis.,2011,96,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress96.html#GriffithM11,https://doi.org/10.1016/j.ress.2011.06.005 +R. Jiang,A new bathtub curve model with a finite support.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#Jiang13a,https://doi.org/10.1016/j.ress.2013.05.019 +Chris Jackson,Bayesian inference with overlapping data for systems with continuous life metrics.,2012,106,Rel. Eng. and Sys. Safety,,db/journals/ress/ress106.html#JacksonM12,https://doi.org/10.1016/j.ress.2012.04.006 +Kaveh Khalili Damghani,A new multi-objective particle swarm optimization method for solving reliability redundancy allocation problems.,2013,111,Rel. Eng. and Sys. Safety,,db/journals/ress/ress111.html#DamghaniAT13,https://doi.org/10.1016/j.ress.2012.10.009 +Purnendu Sinha,Architectural design and reliability analysis of a fail-operational brake-by-wire system from ISO 26262 perspectives.,2011,96,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress96.html#Sinha11,https://doi.org/10.1016/j.ress.2011.03.013 +Wei Huang,A reliability model of a warm standby configuration with two identical sets of units.,2015,133,Rel. Eng. and Sys. Safety,,db/journals/ress/ress133.html#HuangLS15,https://doi.org/10.1016/j.ress.2014.09.008 +Justin Pence,Methodology to evaluate the monetary benefit of Probabilistic Risk Assessment by modeling the net value of Risk-Informed Applications at nuclear power plants.,2018,175,Rel. Eng. and Sys. Safety,,db/journals/ress/ress175.html#PenceAMREK18,https://doi.org/10.1016/j.ress.2018.03.002 +Thomas Nilsen,Models and model uncertainty in the context of risk analysis.,2003,79,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress79.html#NilsenA03,https://doi.org/10.1016/S0951-8320(02)00239-9 +Arne Bang Huseby,Discrete event simulation methods applied to advanced importance measures of repairable components in multistate network flow systems.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#HusebyN13,https://doi.org/10.1016/j.ress.2013.05.025 +Rajesh Mishra,"Comments on ""An improved algorithm for connectivity analysis of distribution networks"" [Reliab Eng Syst Saf 2007*92(10): 1295-302].",2009,94,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress94.html#MishraC09,https://doi.org/10.1016/j.ress.2008.08.007 +Marko Cepin,Application of shutdown probabilistic safety assessment.,2018,178,Rel. Eng. and Sys. Safety,,db/journals/ress/ress178.html#Cepin18,https://doi.org/10.1016/j.ress.2018.05.012 +Jun Kanda,Influence of probability distribution of loads on optimum reliability.,2001,73,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress73.html#KandaA01,https://doi.org/10.1016/S0951-8320(01)00049-7 +Eirik Bjorheim Abrahamsen,Why risk acceptance criteria need to be defined by the authorities and not the industry?,2012,105,Rel. Eng. and Sys. Safety,,db/journals/ress/ress105.html#AbrahamsenA12,https://doi.org/10.1016/j.ress.2011.11.004 +Tony Rosqvist,Value-driven maintenance planning for a production plant.,2009,94,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress94.html#RosqvistLR09,https://doi.org/10.1016/j.ress.2007.03.018 +Terje Aven,On the allegations that small risks are treated out of proportion to their importance.,2015,140,Rel. Eng. and Sys. Safety,,db/journals/ress/ress140.html#Aven15b,https://doi.org/10.1016/j.ress.2015.04.001 +Antonio Pievatolo,UPS reliability analysis with non-exponential duration distribution.,2003,81,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress81.html#PievatoloV03,https://doi.org/10.1016/S0951-8320(03)00087-5 +Maxim S. Finkelstein,Why the mixture failure rate decreases.,2001,71,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress71.html#FinkelsteinE01,https://doi.org/10.1016/S0951-8320(00)00092-2 +Marzio Marseguerra,Monte Carlo estimation of the differential importance measure: application to the protection system of a nuclear reactor.,2004,86,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress86.html#MarseguerraZ04,https://doi.org/10.1016/j.ress.2003.12.011 +Lukas Schäfer,Simplification of inclusion-exclusion on intersections of unions with application to network systems reliability.,2018,173,Rel. Eng. and Sys. Safety,,db/journals/ress/ress173.html#SchaferGS18,https://doi.org/10.1016/j.ress.2018.01.003 +Marcello Braglia,Data classification and MTBF prediction with a multivariate analysis approach.,2012,97,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress97.html#BragliaCFZ12,https://doi.org/10.1016/j.ress.2011.09.010 +R. Mohsin,Safety distance between underground natural gas and water pipeline facilities.,2014,131,Rel. Eng. and Sys. Safety,,db/journals/ress/ress131.html#MohsinMY14,https://doi.org/10.1016/j.ress.2014.06.008 +Jinkyun Park,Comparing cultural profiles of MCR operators with those of non-MCR operators working in domestic Nuclear Power Plants.,2015,133,Rel. Eng. and Sys. Safety,,db/journals/ress/ress133.html#ParkJ15,https://doi.org/10.1016/j.ress.2014.09.011 +Bin Hu 0002,Pivotal decomposition for reliability analysis of fault tolerant control systems on unmanned aerial vehicles.,2015,140,Rel. Eng. and Sys. Safety,,db/journals/ress/ress140.html#HuS15,https://doi.org/10.1016/j.ress.2015.04.005 +Sebastián Martorell,An extended BEPU approach integrating probabilistic assumptions on the availability of safety systems in deterministic safety analyses.,2017,167,Rel. Eng. and Sys. Safety,,db/journals/ress/ress167.html#MartorellSVC17,https://doi.org/10.1016/j.ress.2017.06.020 +Ch. N. Stavropoulos,Non-stationary functional series modeling and analysis of hardware reliability series: a comparative study using rail vehicle interfailure *.,2000,68,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress68.html#StavropoulosF00,https://doi.org/10.1016/S0951-8320(00)00013-2 +Alfonso Mateos,Solving dominance and potential optimality in imprecise multi-attribute additive problems.,2003,79,Rel. Eng. and Sys. Safety,2,db/journals/ress/ress79.html#MateosJR03,https://doi.org/10.1016/S0951-8320(02)00237-5 +Shi Jian,Integrated availability model based on performance of computer networks.,2007,92,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress92.html#JianS07,https://doi.org/10.1016/j.ress.2006.04.012 +Qingqing Zhai,Aggregated combinatorial reliability model for non-repairable parallel phased-mission systems.,2018,176,Rel. Eng. and Sys. Safety,,db/journals/ress/ress176.html#ZhaiXPY18,https://doi.org/10.1016/j.ress.2018.04.017 +Nima Khakzad,Vulnerability of industrial plants to flood-induced natechs: A Bayesian network approach.,2018,169,Rel. Eng. and Sys. Safety,,db/journals/ress/ress169.html#KhakzadG18,https://doi.org/10.1016/j.ress.2017.09.016 +Terje Aven,ESREL 2007.,2009,94,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress94.html#AvenVS09,https://doi.org/10.1016/j.ress.2009.01.011 +A. Monferini,A compound methodology to assess the impact of human and organizational factors impact on the risk level of hazardous industrial plants.,2013,119,Rel. Eng. and Sys. Safety,,db/journals/ress/ress119.html#MonferiniKNWKKKLD13,https://doi.org/10.1016/j.ress.2013.04.012 +Alexander Rotshtein,Cause and effect analysis by fuzzy relational equations and a genetic algorithm.,2006,91,Rel. Eng. and Sys. Safety,9,db/journals/ress/ress91.html#RotshteinPR06,https://doi.org/10.1016/j.ress.2005.11.041 +Xingyu Zhao,"Modeling the probability of failure on demand (pfd) of a 1-out-of-2 system in which one channel is ""quasi-perfect"".",2017,158,Rel. Eng. and Sys. Safety,,db/journals/ress/ress158.html#ZhaoLPSW17,https://doi.org/10.1016/j.ress.2016.09.002 +Gregory Levitin,Optimal separation of elements in vulnerable multi-state systems.,2001,73,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress73.html#LevitinL01b,https://doi.org/10.1016/S0951-8320(01)00027-8 +Taeho Kim,Comment on: development of a safety critical software requirements verification method with combined CPN and PVS: a nuclear power plant protection system application.,2004,83,Rel. Eng. and Sys. Safety,1,db/journals/ress/ress83.html#KimC04,https://doi.org/10.1016/j.ress.2003.09.002 +K. Durga Rao,Dynamic fault tree analysis using Monte Carlo simulation in probabilistic safety assessment.,2009,94,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress94.html#RaoGRKVS09,https://doi.org/10.1016/j.ress.2008.09.007 +Mengfei Fan,A stochastic hybrid systems model of common-cause failures of degrading components.,2018,172,Rel. Eng. and Sys. Safety,,db/journals/ress/ress172.html#FanZZKC18,https://doi.org/10.1016/j.ress.2017.12.003 +Ulrich Hauptmanns,Analytical propagation of uncertainties through fault trees.,2002,76,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress76.html#Hauptmanns02,https://doi.org/10.1016/S0951-8320(02)00016-9 +Jingbo Guo,Improved inverse Gaussian process and bootstrap: Degradation and reliability metrics.,2018,178,Rel. Eng. and Sys. Safety,,db/journals/ress/ress178.html#GuoWCE18,https://doi.org/10.1016/j.ress.2018.06.013 +Jan M. van Noortwijk,Applications to continuous-time processes of computational techniques for discrete-time renewal processes.,2008,93,Rel. Eng. and Sys. Safety,12,db/journals/ress/ress93.html#NoortwijkW08,https://doi.org/10.1016/j.ress.2008.03.023 +Alessandro Aldini,A formal approach to the integrated analysis of security and QoS.,2007,92,Rel. Eng. and Sys. Safety,11,db/journals/ress/ress92.html#AldiniB07,https://doi.org/10.1016/j.ress.2006.10.003 +Dorin Drignei,A general statistical model for computer experiments with time series output.,2011,96,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress96.html#Drignei11,https://doi.org/10.1016/j.ress.2010.11.006 +Mojtaba Shivaie,A multistage framework for reliability-based distribution expansion planning considering distributed generations by a self-adaptive global-based harmony search algorithm.,2015,139,Rel. Eng. and Sys. Safety,,db/journals/ress/ress139.html#ShivaieASWV15,https://doi.org/10.1016/j.ress.2015.03.001 +Ho-Gon Lim,Fault tree conditioning methods to trace system configuration changes for the application to low-power/shutdown PSA.,2009,94,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress94.html#LimPHJ09,https://doi.org/10.1016/j.ress.2009.04.005 +Johannes A. M. van der Weide,Discounted cost model for condition-based maintenance optimization.,2010,95,Rel. Eng. and Sys. Safety,3,db/journals/ress/ress95.html#WeidePN10,https://doi.org/10.1016/j.ress.2009.10.004 +Mark Hoogendoorn,Formal analysis of empirical traces in incident management.,2008,93,Rel. Eng. and Sys. Safety,10,db/journals/ress/ress93.html#HoogendoornJMS08,https://doi.org/10.1016/j.ress.2007.11.001 +Javad Barabady,Reliability analysis of mining equipment: A case study of a crushing plant at Jajarm Bauxite Mine in Iran.,2008,93,Rel. Eng. and Sys. Safety,4,db/journals/ress/ress93.html#BarabadyK08,https://doi.org/10.1016/j.ress.2007.10.006 +Suzanne Schroer,An event classification schema for evaluating site risk in a multi-unit nuclear power plant probabilistic risk assessment.,2013,117,Rel. Eng. and Sys. Safety,,db/journals/ress/ress117.html#SchroerM13,https://doi.org/10.1016/j.ress.2013.03.005 +Xiujuan Zheng,An integrated unscented kalman filter and relevance vector regression approach for lithium-ion battery remaining useful life and short-term capacity prediction.,2015,144,Rel. Eng. and Sys. Safety,,db/journals/ress/ress144.html#ZhengF15,https://doi.org/10.1016/j.ress.2015.07.013 +Salim Hariri,Preface.,1998,1,Cluster Computing,1,db/journals/cluster/cluster1.html#HaririR98,https://doi.org/10.1023/A:1019052508673 +Guixian Xu,Semantic classification method for network Tibetan corpus.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#XuWWZLXH17,https://doi.org/10.1007/s10586-017-0742-6 +Shuwei Jing,The application of terms mining technique to clustering participant's character patterns in the enterprise management.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#JingNTH16,https://doi.org/10.1007/s10586-016-0654-x +Prashanth B. Bhat,Block-cyclic redistribution over heterogeneous networks.,2000,3,Cluster Computing,1,db/journals/cluster/cluster3.html#BhatPR00,https://doi.org/10.1023/A:1019059632297 +Azzedine Boukerche,An exact parallel algorithm to compare very long biological sequences in clusters of workstations.,2007,10,Cluster Computing,2,db/journals/cluster/cluster10.html#BoukercheMSA07,https://doi.org/10.1007/s10586-007-0020-0 +Chunchun Hu,Fast fuzzy trajectory clustering strategy based on data summarization and rough approximation.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#HuLZ16,https://doi.org/10.1007/s10586-016-0603-8 +Xiaosong Zhang,Cryptographic key protection against FROST for mobile devices.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#ZhangTXZLZZ17,https://doi.org/10.1007/s10586-016-0721-3 +Gabrielle Allen,Cactus Tools for Grid Applications.,2001,4,Cluster Computing,3,db/journals/cluster/cluster4.html#AllenBDGHLMRSS01,https://doi.org/10.1023/A:1011491422534 +Hyun-Woo Kim,An efficient character input scheme with a gyro sensor of smartphone on ubiquitous cluster computing.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#KimPJ15,https://doi.org/10.1007/s10586-014-0382-z +Chengtao Cai,A novel approach for marine diesel engine fault diagnosis.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#CaiWZ17,https://doi.org/10.1007/s10586-017-0748-0 +Daniel J. Dubois,OptiSpot: minimizing application deployment cost using spot cloud resources.,2016,19,Cluster Computing,2,db/journals/cluster/cluster19.html#DuboisC16,https://doi.org/10.1007/s10586-016-0568-7 +Jianhong Zhang,Efficient public verification proof of retrievability scheme in cloud.,2014,17,Cluster Computing,4,db/journals/cluster/cluster17.html#ZhangTM14,https://doi.org/10.1007/s10586-014-0394-8 +Mei Wen,High efficient sedimentary basin simulations on hybrid CPU-GPU clusters.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#WenSW0CZ14,https://doi.org/10.1007/s10586-013-0300-9 +Baoyu Xu,A memory-driven scheduling scheme and optimization for concurrent execution in GPU.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#XuZSW16,https://doi.org/10.1007/s10586-016-0656-8 +Najme Mansouri,A Threshold-based Dynamic Data Replication and Parallel Job Scheduling strategy to enhance Data Grid.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#Mansouri14,https://doi.org/10.1007/s10586-013-0330-3 +Charles E. Perkins,Route Optimization for Mobile IP.,1998,1,Cluster Computing,2,db/journals/cluster/cluster1.html#PerkinsJ98,https://doi.org/10.1023/A:1019033431871 +Song Fu,Distributed shared arrays: A distributed virtual machine with mobility support for reconfiguration.,2006,9,Cluster Computing,3,db/journals/cluster/cluster9.html#FuXWB06,https://doi.org/10.1007/s10586-006-9739-2 +Kalim Qureshi,Empirical performance evaluation of schedulers for cluster of workstations.,2011,14,Cluster Computing,2,db/journals/cluster/cluster14.html#QureshiSM11,https://doi.org/10.1007/s10586-010-0128-5 +Ian Whalley,Experience with collaborating managers: node group manager and provisioning manager.,2006,9,Cluster Computing,4,db/journals/cluster/cluster9.html#WhalleyTSSPDC06,https://doi.org/10.1007/s10586-006-0009-0 +,Special Issue on Communication Architecture for Clusters: Guest Editors Introduction.,2003,6,Cluster Computing,2,db/journals/cluster/cluster6.html#X03,https://doi.org/10.1023/A:1022813702907 +Yuxia Cheng,A practical cross-datacenter fault-tolerance algorithm in the cloud storage system.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#ChengYCCX17,https://doi.org/10.1007/s10586-017-0840-5 +Carlos Pérez-Miguel,Competition-based failure-aware scheduling for High-Throughput Computing systems on peer-to-peer networks.,2015,18,Cluster Computing,3,db/journals/cluster/cluster18.html#Perez-MiguelMM15,https://doi.org/10.1007/s10586-015-0473-5 +Liu Xiaojun,An improved clustering-based collaborative filtering recommendation algorithm.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#Xiaojun17,https://doi.org/10.1007/s10586-017-0807-6 +Diogo Caldeira Ferreira,A nanocommunication system for endocrine diseases.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#FerreiraRL17,https://doi.org/10.1007/s10586-017-0761-3 +Lijun Zhu,Mapping discovery modeling and its empirical research for the scientific and technological knowledge concept in unified concept space.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#ZhuSG15,https://doi.org/10.1007/s10586-013-0339-7 +Cao Ngoc Nguyen,Making a case for the on-demand multiple distributed message queue system in a Hadoop cluster.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#NguyenHK17,https://doi.org/10.1007/s10586-017-1031-0 +Chamseddine Hamdeni,Adaptive measurement method for data popularity in distributed systems.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#HamdeniHC16,https://doi.org/10.1007/s10586-016-0637-y +Dukun Ding,Design of integrated neural network model for weld seam tracking and penetration monitoring.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#Ding17,https://doi.org/10.1007/s10586-017-1084-0 +S. Raja Ratna,Scrutiny of unruly and abuse in wireless networks to mitigate physical layer threats using discriminate based misbehavior prevention.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#Ratna016,https://doi.org/10.1007/s10586-015-0529-6 +Michal Janosek,Knowledge discovery in dynamic data using neural networks.,2015,18,Cluster Computing,4,db/journals/cluster/cluster18.html#JanosekVK15,https://doi.org/10.1007/s10586-015-0491-3 +Ivan Tanev,Component Object Based Single System Image for Dependable Implementation of Genetic Programming on Clusters.,2004,7,Cluster Computing,4,db/journals/cluster/cluster7.html#TanevUA04,https://doi.org/10.1023/B:CLUS.0000039494.39217.c1 +Rasheed Hussain,PB-MII: replacing static RSUs with public buses-based mobile intermediary infrastructure in urban VANET-based clouds.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#HussainRSBKO17,https://doi.org/10.1007/s10586-017-0883-7 +Sanjay Kumar,Loosely coupled coordinated management in virtualized data centers.,2011,14,Cluster Computing,3,db/journals/cluster/cluster14.html#KumarTKRS11,https://doi.org/10.1007/s10586-010-0124-9 +Lonnie R. Welch,Load balancing for dynamic real-time systems.,2000,3,Cluster Computing,2,db/journals/cluster/cluster3.html#WelchWSCFHM00,https://doi.org/10.1023/A:1019028120001 +Shanwen Zhang,Two-stage plant species recognition by local mean clustering and Weighted sparse representation classification.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#ZhangWH17,https://doi.org/10.1007/s10586-017-0859-7 +Geyong Min,Guest Editorial.,2007,10,Cluster Computing,2,db/journals/cluster/cluster10.html#MinO07,https://doi.org/10.1007/s10586-007-0019-6 +Kun Zheng,Data storage optimization strategy in distributed column-oriented database by considering spatial adjacency.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#ZhengGFZZL17,https://doi.org/10.1007/s10586-017-1081-3 +R. Suganya Devi,Efficient indexing structure to handle durable queries through web crawling.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#DeviMS16,https://doi.org/10.1007/s10586-016-0595-4 +Yunliang Chen,Mining association rules in big data with NGEP.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#ChenLF15,https://doi.org/10.1007/s10586-014-0419-3 +Lamia Youseff,Paravirtualization effect on single- and multi-threaded memory-intensive linear algebra software.,2009,12,Cluster Computing,2,db/journals/cluster/cluster12.html#YouseffSYZDW09,https://doi.org/10.1007/s10586-009-0080-4 +Sumit Roy 0002,Design issues for a high-performance distributed shared memory on symmetrical multiprocessor clusters.,1999,2,Cluster Computing,3,db/journals/cluster/cluster2.html#RoyC99,https://doi.org/10.1023/A:1019030825936 +Jian Wang,XenLoop: a transparent high performance inter-VM network loopback.,2009,12,Cluster Computing,2,db/journals/cluster/cluster12.html#WangWG09,https://doi.org/10.1007/s10586-009-0079-x +E. Sivanantham,Energy-efficient sustainable cluster based neighbor discovery technique for wireless networks with directional antennas.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#SivananthamR17,https://doi.org/10.1007/s10586-017-0862-z +Jonghyuk Park,A text-based user interface scheme for low-tier embedded systems: an object-oriented approach.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#ParkBK16,https://doi.org/10.1007/s10586-016-0645-y +Qin Lu,A öN Dynamic Load Distribution Algorithm Using Anti-Tasks and Load State Vectors.,2004,7,Cluster Computing,1,db/journals/cluster/cluster7.html#LuLL04,https://doi.org/10.1023/B:CLUS.0000003943.34384.93 +Yongwei Wu,Service-oriented execution model supporting data sharing and adaptive query processing.,2010,13,Cluster Computing,2,db/journals/cluster/cluster13.html#WuLCFY10,https://doi.org/10.1007/s10586-009-0109-8 +Seoyoung Kim,Towards effective science cloud provisioning for a large-scale high-throughput computing.,2014,17,Cluster Computing,4,db/journals/cluster/cluster17.html#KimKHK14,https://doi.org/10.1007/s10586-014-0371-2 +Meiying Jiang,Internal model control for structured rank deficient system based on full rank decomposition.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#JiangJCDZH17,https://doi.org/10.1007/s10586-016-0685-3 +Qingfang Meng,Tree-based frequent itemsets mining for analysis of life-satisfaction and loneliness of retired athletes.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#MengS17,https://doi.org/10.1007/s10586-017-1080-4 +Guobao Zhang,Half-soft starting control of switched reluctance motor using discrete position signal processing.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#ZhangWHLZ17,https://doi.org/10.1007/s10586-017-1041-y +Seok-Woo Jang,An adaptive camera-selection algorithm to acquire higher-quality images.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#JangJ15,https://doi.org/10.1007/s10586-015-0432-1 +Jian Wu 0001,Selecting skyline services for QoS-aware composition by upgrading MapReduce paradigm.,2013,16,Cluster Computing,4,db/journals/cluster/cluster16.html#WuCYKWW13,https://doi.org/10.1007/s10586-012-0240-9 +Darrell C. Anderson,Failure-Atomic File Access in the Slice Interposed Network Storage System.,2002,5,Cluster Computing,4,db/journals/cluster/cluster5.html#AndersonC02,https://doi.org/10.1023/A:1019716406100 +Aura Ganz,Experimental measurements and design guidelines for real-time software encryption in multimedia wireless LANs.,1999,2,Cluster Computing,1,db/journals/cluster/cluster2.html#GanzPG99,https://doi.org/10.1023/A:1019062205464 +Alexandre Denis,Meta-communications in component-based communication frameworks for grids.,2007,10,Cluster Computing,3,db/journals/cluster/cluster10.html#Denis07,https://doi.org/10.1007/s10586-007-0036-5 +Fengshou Zhang,Fish swarm window selection algorithm based on cell microscopic automatic focus.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#ZhangLHD17,https://doi.org/10.1007/s10586-017-0752-4 +Jon B. Weissman,Scheduling parallel applications in distributed networks.,1998,1,Cluster Computing,1,db/journals/cluster/cluster1.html#WeissmanZ98,https://doi.org/10.1023/A:1019073113216 +Lei Wang,Context-aware edge similarity segmentation algorithm of time series.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#WangXYXZ16,https://doi.org/10.1007/s10586-016-0604-7 +Maurizio A. Bonuccelli,Mesh of Trees Topology for Output Queued Switches: Trading Speed-up with a Pipeline Technique.,2005,8,Cluster Computing,1,db/journals/cluster/cluster8.html#BonuccelliU05,https://doi.org/10.1007/s10586-004-4432-9 +Kenneth P. Birman,Navigating in the Storm: Using Astrolabe to Adaptively Configure Web Services and Their Clients.,2006,9,Cluster Computing,2,db/journals/cluster/cluster9.html#BirmanRV06,https://doi.org/10.1007/s10586-006-7559-z +Sunyoung Kang,The study of exercise and health services platform for prevention of dementia.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#KangK17,https://doi.org/10.1007/s10586-017-0775-x +Bing Chen,Cloud service platform of electronic identity in cyberspace.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#ChenTZ17,https://doi.org/10.1007/s10586-017-0731-9 +Daniel Becker,Extending the scope of the controlled logical clock.,2013,16,Cluster Computing,1,db/journals/cluster/cluster16.html#BeckerGRW13,https://doi.org/10.1007/s10586-011-0181-8 +Xiaoxi Fu,Research trends in sustainable operation: a bibliographic coupling clustering analysis from 1988 to 2016.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#FuNY16,https://doi.org/10.1007/s10586-016-0624-3 +Jian Wan,ORTHRUS: a lightweighted block-level cloud storage system.,2013,16,Cluster Computing,4,db/journals/cluster/cluster16.html#WanZZWJRW13,https://doi.org/10.1007/s10586-012-0234-7 +Jialun Pei,Effective algorithm for determining the number of clusters and its application in image segmentation.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#PeiZDD17,https://doi.org/10.1007/s10586-017-1083-1 +,Mobile Ad Hoc Networking - Editorial.,2002,5,Cluster Computing,2,db/journals/cluster/cluster5.html#X02, +Xiaoping Jiang,Predicting edge sign and finding prestige of nodes in networks.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#JiangLDS17,https://doi.org/10.1007/s10586-017-0865-9 +Long Zhao,Supervised feature selection method via potential value estimation.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#ZhaoJD16,https://doi.org/10.1007/s10586-016-0635-0 +Nasrin Akhter,Energy aware resource allocation of cloud data center: review and open issues.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#AkhterO16,https://doi.org/10.1007/s10586-016-0579-4 +Wenjing Ma,Optimizing tensor contraction expressions for hybrid CPU-GPU execution.,2013,16,Cluster Computing,1,db/journals/cluster/cluster16.html#MaKVKA13,https://doi.org/10.1007/s10586-011-0179-2 +Xu Ma,Outsourcing computation of modular exponentiations in cloud computing.,2013,16,Cluster Computing,4,db/journals/cluster/cluster16.html#MaLZ13,https://doi.org/10.1007/s10586-013-0252-0 +Ping Wang,The research of compression and generation of high-precision dynamic focusing delay data for ultrasound beamformer.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#WangJLLSC17,https://doi.org/10.1007/s10586-017-1008-z +Betül Demiröz,Particle simulation on the Cell BE architecture.,2011,14,Cluster Computing,4,db/journals/cluster/cluster14.html#DemirozTKT11,https://doi.org/10.1007/s10586-011-0169-4 +Jianhui Mou,A hybrid heuristic algorithm for flowshop inverse scheduling problem under a dynamic environment.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#MouGGM17,https://doi.org/10.1007/s10586-017-0734-6 +Jieun Choi,VM auto-scaling methods for high throughput computing on hybrid infrastructure.,2015,18,Cluster Computing,3,db/journals/cluster/cluster18.html#ChoiAKKC15,https://doi.org/10.1007/s10586-015-0462-8 +Arash Ghorbannia Delavar,HSGA: a hybrid heuristic algorithm for workflow scheduling in cloud systems.,2014,17,Cluster Computing,1,db/journals/cluster/cluster17.html#DelavarA14,https://doi.org/10.1007/s10586-013-0275-6 +Seo-Young Noh,vcluster: a framework for auto scalable virtual cluster system in heterogeneous clouds.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#NohTJ14,https://doi.org/10.1007/s10586-013-0292-5 +Shengtao Sun,A spreading activation algorithm of spatial big data retrieval based on the spatial ontology model.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#SunGHP15,https://doi.org/10.1007/s10586-014-0417-5 +Nabila Berkani,Towards a conceptualization of ETL and physical storage of semantic data warehouses as a service.,2013,16,Cluster Computing,4,db/journals/cluster/cluster16.html#BerkaniBK13,https://doi.org/10.1007/s10586-013-0266-7 +Wolfgang Bangerth,An Autonomic Reservoir Framework for the Stochastic Optimization of Well Placement.,2005,8,Cluster Computing,4,db/journals/cluster/cluster8.html#BangerthKMPW05,https://doi.org/10.1007/s10586-005-4093-3 +Yuan Tian,Managing performance and power consumption tradeoff for multiple heterogeneous servers in cloud computing.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#TianLL14,https://doi.org/10.1007/s10586-013-0326-z +Solomon Lasluisa,In-situ feature-based objects tracking for data-intensive scientific and enterprise analytics workflows.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#LasluisaZJRBP15,https://doi.org/10.1007/s10586-014-0396-6 +Eunji Hwang,On the role of application and resource characterizations in heterogeneous distributed computing systems.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#HwangKKHC16,https://doi.org/10.1007/s10586-016-0638-x +Musaed Alhussein,Automatic facial emotion recognition using weber local descriptor for e-Healthcare system.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#Alhussein16,https://doi.org/10.1007/s10586-016-0535-3 +Dong Hwi Lee,A study on abnormal event correlation analysis for convergence security monitor.,2013,16,Cluster Computing,2,db/journals/cluster/cluster16.html#LeeKK13,https://doi.org/10.1007/s10586-011-0191-6 +Jian Zhang 0005,Learning-aided predictor integration for system performance prediction.,2007,10,Cluster Computing,4,db/journals/cluster/cluster10.html#ZhangF07,https://doi.org/10.1007/s10586-007-0041-8 +Yoonsung Nam,Workload-aware resource management for software-defined compute.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#NamKSKE16,https://doi.org/10.1007/s10586-016-0613-6 +Min Bian,Robust and reliable estimation via recursive nonlinear dynamic data reconciliation based on cubature Kalman filter.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#BianWLQ17,https://doi.org/10.1007/s10586-017-0926-0 +Huang Ming,A topological enabled three-dimensional model based on constructive solid geometry and boundary representation.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#MingYJY16,https://doi.org/10.1007/s10586-016-0634-1 +Yichuan Wang,"From high-availability to collapse: quantitative analysis of ""Cloud-Droplet-Freezing"" attack threats to virtual machine migration in cloud computing.",2014,17,Cluster Computing,4,db/journals/cluster/cluster17.html#WangMLLZ14,https://doi.org/10.1007/s10586-014-0388-6 +Jung-Soo Han,A method of intelligent recommendation using task ontology.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#HanK14,https://doi.org/10.1007/s10586-013-0288-1 +Fanqi Meng,Nonlinear approach for estimating WCET during programming phase.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#MengSQ16,https://doi.org/10.1007/s10586-016-0606-5 +K. Mithra,Performance of coded STBC-IDMA system using polarization diversity for downlink transmission.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#MithraV17,https://doi.org/10.1007/s10586-017-0831-6 +Yonggang Liu,The dispatch time aligning I/O scheduling for parallel file systems.,2015,18,Cluster Computing,3,db/journals/cluster/cluster18.html#LiuQF15,https://doi.org/10.1007/s10586-015-0457-5 +A. K. Ilavarasi,An evolutionary feature set decomposition based anonymization for classification workloads: Privacy Preserving Data Mining.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#IlavarasiS17,https://doi.org/10.1007/s10586-017-1108-9 +Anthony T. C. Tam,Contention-Aware Communication Schedule for High-Speed Communication.,2003,6,Cluster Computing,4,db/journals/cluster/cluster6.html#TamW03,https://doi.org/10.1023/A:1025765910100 +Injong Rhee,Group communication support for distributed collaboration systems.,1999,2,Cluster Computing,1,db/journals/cluster/cluster2.html#RheeCHKS99,https://doi.org/10.1023/A:1019014322302 +Susanta Datta,Internal Node and Shortcut Based Routing with Guaranteed Delivery in Wireless Networks.,2002,5,Cluster Computing,2,db/journals/cluster/cluster5.html#DattaSW02,https://doi.org/10.1023/A:1013985610753 +José Costa-Requena,Application of Spatial Location Information to SIP.,2002,5,Cluster Computing,4,db/journals/cluster/cluster5.html#Costa-RequenaT02,https://doi.org/10.1023/A:1019764322030 +SeongMin Yoo,Ownership-guaranteed security framework for the private data in the entrusted management environment.,2015,18,Cluster Computing,3,db/journals/cluster/cluster18.html#YooKPNR15,https://doi.org/10.1007/s10586-015-0474-4 +Giorgio Valentini,An overview of energy efficiency techniques in cluster computing systems.,2013,16,Cluster Computing,1,db/journals/cluster/cluster16.html#ValentiniLKMMLZWGKLZXBVPPKB13,https://doi.org/10.1007/s10586-011-0171-x +Olaf Arndt,A comparative study of online scheduling algorithms for networks of workstations.,2000,3,Cluster Computing,2,db/journals/cluster/cluster3.html#ArndtFKT00,https://doi.org/10.1023/A:1019024019093 +Hamid Fadishei,Pre-execution power consumption prediction of computational multithreaded workloads.,2014,17,Cluster Computing,4,db/journals/cluster/cluster17.html#FadisheiDN14,https://doi.org/10.1007/s10586-014-0401-0 +Bo Yu,Generating test case for algebraic specification based on Tabu search and genetic algorithm.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#YuQ17,https://doi.org/10.1007/s10586-016-0681-7 +Angela C. Sodan,Service control with the preemptive parallel job scheduler Scojo-PECT.,2011,14,Cluster Computing,2,db/journals/cluster/cluster14.html#Sodan11,https://doi.org/10.1007/s10586-010-0141-8 +S. P. Malarvizhi,Frequent pagesets from web log by enhanced weighted association rule mining.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#MalarvizhiS16,https://doi.org/10.1007/s10586-015-0507-z +James D. Myers,A Collaborative Informatics Infrastructure for Multi-Scale Science.,2005,8,Cluster Computing,4,db/journals/cluster/cluster8.html#MyersABDFGHHKLLLMMNLMOPPPRRSSWWY05,https://doi.org/10.1007/s10586-005-4092-4 +Soonchoul Kim,A scheme of AR-based personalized interactive broadcasting service in terrestrial digital broadcasting system.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#KimKKCC17,https://doi.org/10.1007/s10586-017-0755-1 +Bruce Lowekamp,Direct queries for discovering network resource properties in a distributed environment.,2000,3,Cluster Computing,4,db/journals/cluster/cluster3.html#LowekampOG00,https://doi.org/10.1023/A:1019000808615 +Hao Wang 0007,New directly revocable attribute-based encryption scheme and its application in cloud storage environment.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#WangZWL17,https://doi.org/10.1007/s10586-016-0701-7 +Qi Zhang 0012,A regression-based analytic model for capacity planning of multi-tier applications.,2008,11,Cluster Computing,3,db/journals/cluster/cluster11.html#ZhangCMS08,https://doi.org/10.1007/s10586-008-0052-0 +Wlodzimierz Glazek,A Multistage Load Distribution Strategy for Three-Dimensional Meshes.,2003,6,Cluster Computing,1,db/journals/cluster/cluster6.html#Glazek03,https://doi.org/10.1023/A:1020962916217 +Carlos Santana,Power management by load forecasting in web server clusters.,2011,14,Cluster Computing,4,db/journals/cluster/cluster14.html#SantanaLM11,https://doi.org/10.1007/s10586-011-0187-2 +Samer Al-Kiswany,On GPU's viability as a middleware accelerator.,2009,12,Cluster Computing,2,db/journals/cluster/cluster12.html#Al-KiswanyGSR09,https://doi.org/10.1007/s10586-009-0076-0 +Charles Lefurgy,Power capping: a prelude to power shifting.,2008,11,Cluster Computing,2,db/journals/cluster/cluster11.html#LefurgyWW08,https://doi.org/10.1007/s10586-007-0045-4 +Peter A. Dinda,Host load prediction using linear models.,2000,3,Cluster Computing,4,db/journals/cluster/cluster3.html#DindaO00,https://doi.org/10.1023/A:1019048724544 +Tan Dat Trinh,Enhanced speaker verification using an adaptive multiple low-rank representation based on the modified adaptive Gaussian mixture model framework.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#TrinhMKK17,https://doi.org/10.1007/s10586-017-1051-9 +Ana C. R. Paiva,Multidimensional test coverage analysis: PARADIGM-COV tool.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#PaivaV17,https://doi.org/10.1007/s10586-017-0728-4 +Jinhong Yang,Serving a video into an image carousel: system design and implementation.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#YangPJJC16,https://doi.org/10.1007/s10586-016-0639-9 +Arjan Durresi,Anonymous communications in the Internet.,2007,10,Cluster Computing,1,db/journals/cluster/cluster10.html#Durresi07,https://doi.org/10.1007/s10586-007-0006-y +Yongseok Son,Design and evaluation of a user-level file system for fast storage devices.,2015,18,Cluster Computing,3,db/journals/cluster/cluster18.html#SonSHEY15,https://doi.org/10.1007/s10586-015-0465-5 +Najme Mansouri,QDR: a QoS-aware data replication algorithm for Data Grids considering security factors.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#Mansouri16,https://doi.org/10.1007/s10586-016-0576-7 +Vijay Shankar Rajanna,Explicit coordination to prevent congestion in data center networks.,2012,15,Cluster Computing,2,db/journals/cluster/cluster15.html#RajannaJSG12,https://doi.org/10.1007/s10586-011-0156-9 +Zhichao Li,Capture-removal model sampling estimation based on big data.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#LiGJF17,https://doi.org/10.1007/s10586-017-0867-7 +Zhaolan He,The mechanical arm control based on harmony search genetic algorithm.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#HePLT17,https://doi.org/10.1007/s10586-017-1053-7 +Jie Wan,Ultra-short-term wind speed prediction based on multi-scale predictability analysis.,2016,19,Cluster Computing,2,db/journals/cluster/cluster19.html#WanRLHY16,https://doi.org/10.1007/s10586-016-0554-0 +Yong Zhang,Distributed Gaussian mixture model-based particle filter method for chemical pollution source localization with sensor network.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#ZhangZHB17,https://doi.org/10.1007/s10586-017-0913-5 +Yan Ding,Explore virtual machine deployment to mobile cloud computing for multi-tenancy and energy conservation in wireless network.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#DingXWHZZ17,https://doi.org/10.1007/s10586-017-1054-6 +Yichuan Wang,A limited-trust capacity model for mitigating threats of internal malicious services in cloud computing.,2016,19,Cluster Computing,2,db/journals/cluster/cluster19.html#WangCSM16,https://doi.org/10.1007/s10586-016-0560-2 +Eduardo Rosales,Harvesting idle CPU resources for desktop grid computing while limiting the slowdown generated to end-users.,2015,18,Cluster Computing,4,db/journals/cluster/cluster18.html#RosalesSVDGC15,https://doi.org/10.1007/s10586-015-0482-4 +Yongseok Son,A low-latency storage stack for fast storage devices.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#SonSYH17,https://doi.org/10.1007/s10586-017-0776-9 +Emiliano Casalicchio,Energy-aware auto-scaling algorithms for Cassandra virtual data centers.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#CasalicchioLS17,https://doi.org/10.1007/s10586-017-0912-6 +Hai Jiang,Accelerating MapReduce framework on multi-GPU systems.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#JiangCQLRG14,https://doi.org/10.1007/s10586-013-0276-5 +Francisco Javier Ridruejo,Full-system simulation of distributed memory multicomputers.,2009,12,Cluster Computing,3,db/journals/cluster/cluster12.html#RidruejoMN09,https://doi.org/10.1007/s10586-009-0086-y +Diego Teijeiro,A cloud-based enhanced differential evolution algorithm for parameter estimation problems in computational systems biology.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#TeijeiroPPGBD17,https://doi.org/10.1007/s10586-017-0860-1 +Mahmoud Al-Ayyoub,Multi-agent based dynamic resource provisioning and monitoring for cloud computing systems infrastructure.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#Al-AyyoubJDA15,https://doi.org/10.1007/s10586-015-0449-5 +Stefano Bregni,Performance Evaluation of Deflection Routing in Optical IP Packet-Switched Networks.,2004,7,Cluster Computing,3,db/journals/cluster/cluster7.html#BregniP04,https://doi.org/10.1023/B:CLUS.0000028002.28138.3b +Jinhong Xu,Research on key technologies of technological service and management based on cluster load balancing.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#XuY17a,https://doi.org/10.1007/s10586-017-1103-1 +Timothy Mark Pinkston,"InfiniBand: The ""De Facto"" Future Standard for System and Local Area Networks or Just a Scalable Replacement for PCI Buses?",2003,6,Cluster Computing,2,db/journals/cluster/cluster6.html#PinkstonBKRS03,https://doi.org/10.1023/A:1022892120654 +Omar Batarfi,Large scale graph processing systems: survey and an experimental evaluation.,2015,18,Cluster Computing,3,db/journals/cluster/cluster18.html#BatarfiSFNBBS15,https://doi.org/10.1007/s10586-015-0472-6 +Nakhoon Baek,An artifact detection scheme with CUDA-based image operations.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#BaekK17,https://doi.org/10.1007/s10586-017-0760-4 +Ahmed Barnawi,Runtime self-monitoring approach of business process compliance in cloud environments.,2015,18,Cluster Computing,4,db/journals/cluster/cluster18.html#BarnawiAESAS15,https://doi.org/10.1007/s10586-015-0494-0 +Youngmoon Eom,Multi-dimensional multiple query scheduling with distributed semantic caching framework.,2015,18,Cluster Computing,3,db/journals/cluster/cluster18.html#EomKN15,https://doi.org/10.1007/s10586-015-0464-6 +Yujun Ma,Robot and cloud-assisted multi-modal healthcare system.,2015,18,Cluster Computing,3,db/journals/cluster/cluster18.html#MaZWZP15,https://doi.org/10.1007/s10586-015-0453-9 +K. Subramani,Distributed algorithms for partially clairvoyant dispatchers.,2008,11,Cluster Computing,2,db/journals/cluster/cluster11.html#SubramaniYO08,https://doi.org/10.1007/s10586-007-0027-6 +Weizhe Zhang,Predicting HPC parallel program performance based on LLVM compiler.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#ZhangHS17,https://doi.org/10.1007/s10586-016-0707-1 +Dae-Young Kim 0005,Dual-channel medium access control of low power wide area networks considering traffic characteristics in IoE.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#KimK17b,https://doi.org/10.1007/s10586-017-1023-0 +Bithika Khargharia,Autonomic power and performance management for computing systems.,2008,11,Cluster Computing,2,db/journals/cluster/cluster11.html#KharghariaHY08,https://doi.org/10.1007/s10586-007-0043-6 +Cheulwoo Ro,Modeling and analysis of memory virtualization in cloud computing.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#Ro15,https://doi.org/10.1007/s10586-014-0353-4 +Kashif Bilal,A survey on Green communications using Adaptive Link Rate.,2013,16,Cluster Computing,3,db/journals/cluster/cluster16.html#BilalKMHKMKWZC13,https://doi.org/10.1007/s10586-012-0225-8 +Keqiang Wu,An adaptive dual control framework for QoS design.,2007,10,Cluster Computing,2,db/journals/cluster/cluster10.html#WuLB07,https://doi.org/10.1007/s10586-007-0014-y +Nan Ni,Fair Scheduling for Input Buffered Switches.,2003,6,Cluster Computing,2,db/journals/cluster/cluster6.html#NiB03,https://doi.org/10.1023/A:1022848304724 +Ankur Kamthe,A stochastic approach to estimating earliest start * of nodes for scheduling DAGs on heterogeneous distributed computing systems.,2011,14,Cluster Computing,4,db/journals/cluster/cluster14.html#KamtheL11,https://doi.org/10.1007/s10586-011-0167-6 +D. Shalini Punithavathani,Surveillance of anomaly and misuse in critical networks to counter insider threats using computational intelligence.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#PunithavathaniS15,https://doi.org/10.1007/s10586-014-0403-y +Ioan Raicu,Middleware support for many-task computing.,2010,13,Cluster Computing,3,db/journals/cluster/cluster13.html#RaicuFWZIBZSCLa10,https://doi.org/10.1007/s10586-010-0132-9 +Guofei Jiang,Discovering likely invariants of distributed transaction systems for autonomic system management.,2006,9,Cluster Computing,4,db/journals/cluster/cluster9.html#JiangCY06,https://doi.org/10.1007/s10586-006-0008-1 +Junho Park,A data-centric storage scheme for high storage utilization in wireless sensor networks.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#ParkSKPLY15,https://doi.org/10.1007/s10586-014-0357-0 +Guangsen Zhang,Cooperative detection and protection against network attacks using decentralized information sharing.,2010,13,Cluster Computing,1,db/journals/cluster/cluster13.html#ZhangP10,https://doi.org/10.1007/s10586-009-0116-9 +Roger Karrer,Location Selection for Active Services.,2002,5,Cluster Computing,3,db/journals/cluster/cluster5.html#KarrerG02,https://doi.org/10.1023/A:1015673104402 +Parisa Pouladzadeh,A virtualization mechanism for real-time multimedia-assisted mobile food recognition application in cloud computing.,2015,18,Cluster Computing,3,db/journals/cluster/cluster18.html#PouladzadehPKYS15,https://doi.org/10.1007/s10586-015-0468-2 +Yujuan Tan,De-Frag: an efficient scheme to improve deduplication performance via reducing data placement de-linearization.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#TanYFHZY15,https://doi.org/10.1007/s10586-014-0397-5 +Koichi Wada,High Performance Network of PC Cluster Maestro.,2002,5,Cluster Computing,1,db/journals/cluster/cluster5.html#WadaYF02,https://doi.org/10.1023/A:1012788521068 +Vibhore Kumar,Middleware for enterprise scale data stream management using utility-driven self-adaptive information flows.,2007,10,Cluster Computing,4,db/journals/cluster/cluster10.html#KumarCCES07,https://doi.org/10.1007/s10586-007-0040-9 +Jia Wang,Task scheduling for MapReduce in heterogeneous networks.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#WangL16,https://doi.org/10.1007/s10586-015-0503-3 +Rajanikanth Batchu,MPI/FT: A Model-Based Approach to Low-Overhead Fault Tolerant Message-Passing Middleware.,2004,7,Cluster Computing,4,db/journals/cluster/cluster7.html#BatchuDSB04,https://doi.org/10.1023/B:CLUS.0000039491.64560.8a +An-Na Kang,A strengthening plan for enterprise information security based on cloud computing.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#KangBPJ14,https://doi.org/10.1007/s10586-013-0327-y +Juan José Escobar,Parallel high-dimensional multi-objective feature selection for EEG classification with dynamic workload balancing on CPU-GPU architectures.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#EscobarOGDD17,https://doi.org/10.1007/s10586-017-0980-7 +Dongyan Xu,QoS and Contention-Aware Multi-Resource Reservation.,2001,4,Cluster Computing,2,db/journals/cluster/cluster4.html#XuNW01,https://doi.org/10.1023/A:1011408729750 +Jianhui Mou,Multi-objective inverse scheduling optimization of single-machine shop system with uncertain due-dates and processing *.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#MouGLPM17,https://doi.org/10.1007/s10586-016-0717-z +Paulo André da Silva Gonçalves,Improving Feedback Merging for Source-Adaptive Layered Multicast Schemes.,2005,8,Cluster Computing,1,db/journals/cluster/cluster8.html#GoncalvesRDP05,https://doi.org/10.1007/s10586-004-4438-3 +Chuanhe Shen,A reduced pricing model for mezzanine financing based on options and support vector machines.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#ShenXY16,https://doi.org/10.1007/s10586-016-0671-9 +Ahmad Nurzid Rosli,Alleviating the cold-start problem by incorporating movies facebook pages.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#RosliYHCJ15,https://doi.org/10.1007/s10586-014-0355-2 +Hong Jun Choi,A novel memory management technique for cloud client devices.,2015,18,Cluster Computing,3,db/journals/cluster/cluster18.html#ChoiSKKK15,https://doi.org/10.1007/s10586-015-0470-8 +Xiaolu Song,Visual attention model based mining area recognition on massive high-resolution remote sensing images.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#SongHZLPW15,https://doi.org/10.1007/s10586-015-0438-8 +Ji-won Han,A collaborative recommender system for learning courses considering the relevance of a learner's learning skills.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#HanJJL16,https://doi.org/10.1007/s10586-016-0670-x +Siu-Cheung Chau,A Gracefully Degradable Declustered RAID Architecture.,2002,5,Cluster Computing,1,db/journals/cluster/cluster5.html#ChauF02,https://doi.org/10.1023/A:1012705007864 +Hyun Mi Jung,The integrated management method of heterogeneous WIPS sensors.,2016,19,Cluster Computing,2,db/journals/cluster/cluster19.html#JungJC16,https://doi.org/10.1007/s10586-015-0505-1 +Yanni Zou,Collision detection for virtual environment using particle swarm optimization with adaptive cauchy mutation.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#ZouLYLC17,https://doi.org/10.1007/s10586-017-0815-6 +Christian Kurmann,Speculative Defragmentation - Leading Gigabit Ethernet to True Zero-Copy Communication.,2001,4,Cluster Computing,1,db/journals/cluster/cluster4.html#KurmannRS01,https://doi.org/10.1023/A:1011456024871 +Yuetsu Kodama,Imbalance of CPU temperatures in a blade system and its impact for power consumption of fans.,2013,16,Cluster Computing,1,db/journals/cluster/cluster16.html#KodamaISSNM13,https://doi.org/10.1007/s10586-011-0174-7 +Yi-Chang Zhuang,Finding a suitable system scale to optimize program performance on software DSM systems.,2006,9,Cluster Computing,3,db/journals/cluster/cluster9.html#ZhuangCLSY06,https://doi.org/10.1007/s10586-006-9738-3 +Dae-Young Kim 0005,Radio resource management for data transmission in low power wide area networks integrated with large scale cyber physical systems.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#KimKHP17,https://doi.org/10.1007/s10586-017-0841-4 +Kimun Keum,GRAPPE : a system for determining optimal connecting route to target person based on mutual intimacy index.,2015,18,Cluster Computing,3,db/journals/cluster/cluster18.html#KeumNKK15,https://doi.org/10.1007/s10586-015-0458-4 +Seoyoung Kim,Adaptive application-aware job scheduling optimization strategy in heterogeneous infrastructures.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#KimCK16a,https://doi.org/10.1007/s10586-016-0588-3 +Haifei Zhang,An off-policy least square algorithms with eligibility trace based on importance reweighting.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#ZhangHQ17,https://doi.org/10.1007/s10586-017-1165-0 +Ali Fuat Alkaya,A task scheduling algorithm for arbitrarily-connected processors with awareness of link contention.,2006,9,Cluster Computing,4,db/journals/cluster/cluster9.html#AlkayaT06,https://doi.org/10.1007/s10586-006-0010-7 +Qussai Yaseen,An insider threat aware access control for cloud relational databases.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#YaseenJPA17,https://doi.org/10.1007/s10586-017-0810-y +R. Gowtham,PhishTackle - a web services architecture for anti-phishing.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#GowthamK14,https://doi.org/10.1007/s10586-013-0320-5 +Manish Parashar,Special issue: sixth international conference on autonomic computing and communications (ICAC 2009).,2011,14,Cluster Computing,3,db/journals/cluster/cluster14.html#Parashar11,https://doi.org/10.1007/s10586-011-0170-y +Jiannong Cao,A taxonomy of application scheduling tools for high performance cluster computing.,2006,9,Cluster Computing,3,db/journals/cluster/cluster9.html#CaoCSDG06,https://doi.org/10.1007/s10586-006-9747-2 +Ghulam Muhammad,Automatic speech recognition using interlaced derivative pattern for cloud based healthcare system.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#Muhammad15,https://doi.org/10.1007/s10586-015-0439-7 +Venkatraman Ramakrishna,An Active Self-Optimizing Multiplayer Gaming Architecture.,2006,9,Cluster Computing,2,db/journals/cluster/cluster9.html#RamakrishnaRER06,https://doi.org/10.1007/s10586-006-7564-2 +Sook-Youn Kwon,Design and implementation of an integrated management system in a plant factory to save energy.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#KwonRL14,https://doi.org/10.1007/s10586-013-0295-2 +Thibault Bernard,A distributed clustering algorithm for large-scale dynamic networks.,2012,15,Cluster Computing,4,db/journals/cluster/cluster15.html#BernardBPS12,https://doi.org/10.1007/s10586-011-0153-z +Yong-Young Kim,Emerging factors affecting the continuance of online gaming: the roles of bridging and bonding social factors.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#KimKO14,https://doi.org/10.1007/s10586-013-0316-1 +Pushpita Chatterjee,STACRP: a secure trusted auction oriented clustering based routing protocol for MANET.,2012,15,Cluster Computing,3,db/journals/cluster/cluster15.html#ChatterjeeSG12,https://doi.org/10.1007/s10586-012-0198-7 +Deger Cenk Erdil,Self-organized dynamic provisioning for big data.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#Erdil17,https://doi.org/10.1007/s10586-017-0822-7 +Kuinam J. Kim,A continuous playing scheme on RESTful web service.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#KimKWY16,https://doi.org/10.1007/s10586-015-0520-2 +Tao Yu,A data parallel approach to modelling and simulation of large crowd.,2015,18,Cluster Computing,3,db/journals/cluster/cluster18.html#YuDZ15,https://doi.org/10.1007/s10586-015-0451-y +Yanxin Lv,Discrete element method simulation of random Voronoi grain-based models.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#LvLZL17,https://doi.org/10.1007/s10586-016-0705-3 +Manish Parashar,AutoMate: Enabling Autonomic Applications on the Grid.,2006,9,Cluster Computing,2,db/journals/cluster/cluster9.html#ParasharLLMSZH06,https://doi.org/10.1007/s10586-006-7561-5 +Wei Wang,Design of a recursive single-bin DFT algorithm for sparse spectrum analysis.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#WangTZW17,https://doi.org/10.1007/s10586-017-0866-8 +Bharadwaj Veeravalli,Divisible Load Theory: A New Paradigm for Load Scheduling in Distributed Systems.,2003,6,Cluster Computing,1,db/journals/cluster/cluster6.html#BharadwajGR03,https://doi.org/10.1023/A:1020958815308 +Maciej Drozdowski,Divisible Load Scheduling in Systems with Limited Memory.,2003,6,Cluster Computing,1,db/journals/cluster/cluster6.html#DrozdowskiW03,https://doi.org/10.1023/A:1020910932147 +Zhuo Tang,A MapReduce task scheduling algorithm for deadline constraints.,2013,16,Cluster Computing,4,db/journals/cluster/cluster16.html#TangZLL13,https://doi.org/10.1007/s10586-012-0236-5 +Raed Karim,Incorporating service and user information and latent features to predict QoS for selecting and recommending cloud service compositions.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#KarimDMR16,https://doi.org/10.1007/s10586-016-0565-x +Gustavo M. D. Vieira,Seamless Paxos coordinators.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#VieiraGB14,https://doi.org/10.1007/s10586-013-0264-9 +Md. Mamun-ur-Rashid Khandker,Performance of Fast Routing Algorithms in Large Optical Switches Built on the Vertical Stacking of Banyan Structures.,2004,7,Cluster Computing,3,db/journals/cluster/cluster7.html#KhandkerJHHM04,https://doi.org/10.1023/B:CLUS.0000028000.94688.a1 +Patrick M. Widener,Open Metadata Formats: Efficient XML-Based Communication for High Performance Computing.,2002,5,Cluster Computing,3,db/journals/cluster/cluster5.html#WidenerESB02,https://doi.org/10.1023/A:1015637623058 +Bao Zhu,Cost estimation method based on parallel Monte Carlo simulation and market investigation for engineering construction project.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#ZhuYG16,https://doi.org/10.1007/s10586-016-0585-6 +Yuan Chen,Translating Service Level Objectives to lower level policies for multi-tier services.,2008,11,Cluster Computing,3,db/journals/cluster/cluster11.html#ChenILMS08,https://doi.org/10.1007/s10586-008-0059-6 +Qinghu Wang,Feature selection method based on multiple centrifuge models.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#WangLJJLP17,https://doi.org/10.1007/s10586-017-0812-9 +Noboru Tanabe,Low Latency High Bandwidth Message Transfer Mechanisms for a Network Interface Plugged into a Memory Slot.,2002,5,Cluster Computing,1,db/journals/cluster/cluster5.html#TanabeYNKHNA02,https://doi.org/10.1023/A:1012732403321 +Ira Pramanick,Preface.,2008,11,Cluster Computing,1,db/journals/cluster/cluster11.html#Pramanick08,https://doi.org/10.1007/s10586-007-0037-4 +Richard Wolski,Predicting the CPU availability of time-shared Unix systems on the computational grid.,2000,3,Cluster Computing,4,db/journals/cluster/cluster3.html#WolskiSH00,https://doi.org/10.1023/A:1019052825453 +Hanjo Jeong,An evaluation-committee recommendation system for national R and D projects using social network analysis.,2016,19,Cluster Computing,2,db/journals/cluster/cluster19.html#JeongKK16,https://doi.org/10.1007/s10586-016-0545-1 +Emmanuel N. Millán,Performance analysis and comparison of cellular automata GPU implementations.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#MillanWPGB17,https://doi.org/10.1007/s10586-017-0850-3 +Tipwimol Sooktip,Identifying preferred solutions for multi-objective optimization: application to capacitated vehicle routing problem.,2015,18,Cluster Computing,4,db/journals/cluster/cluster18.html#SooktipW15,https://doi.org/10.1007/s10586-015-0478-0 +Kun-Hee Han,Proposing and verifying a security-enhanced protocol for IoT-based communication for medical devices.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#HanB16a,https://doi.org/10.1007/s10586-016-0669-3 +Lei Xia,Fast VMM-based overlay networking for bridging the cloud and high performance computing.,2014,17,Cluster Computing,1,db/journals/cluster/cluster17.html#XiaCLTDB14,https://doi.org/10.1007/s10586-013-0274-7 +Kurt B. Ferreira,The impact of system design parameters on application noise sensitivity.,2013,16,Cluster Computing,1,db/journals/cluster/cluster16.html#FerreiraBBP13,https://doi.org/10.1007/s10586-011-0178-3 +Hejun Jiao,Immune optimization of task scheduling on multidimensional QoS constraints.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#JiaoZLSL15,https://doi.org/10.1007/s10586-015-0447-7 +Edward Walker,Personal adaptive clusters as containers for scientific jobs.,2007,10,Cluster Computing,3,db/journals/cluster/cluster10.html#WalkerGLT07,https://doi.org/10.1007/s10586-007-0028-5 +Zhifeng Yu,Failure-aware workflow scheduling in cluster environments.,2010,13,Cluster Computing,4,db/journals/cluster/cluster13.html#YuWS10,https://doi.org/10.1007/s10586-010-0126-7 +Rajath Subramanyam,Idempotent distributed counters using a forgetful bloom filter.,2016,19,Cluster Computing,2,db/journals/cluster/cluster19.html#SubramanyamGLW16,https://doi.org/10.1007/s10586-016-0567-8 +Ke Han,Image object tracking based on temporal context and MOSSE.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#Han17a,https://doi.org/10.1007/s10586-017-0800-0 +Zhenwen He,Decomposition tree: a spatio-temporal indexing method for movement big data.,2015,18,Cluster Computing,4,db/journals/cluster/cluster18.html#HeWLZT15,https://doi.org/10.1007/s10586-015-0475-3 +Kento Aida,Scheduling mixed-parallel applications with advance reservations.,2009,12,Cluster Computing,2,db/journals/cluster/cluster12.html#AidaC09,https://doi.org/10.1007/s10586-009-0073-3 +He Li,The computation of boundary spanning for the IT-enabled commercial ecosystem.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#LiO17,https://doi.org/10.1007/s10586-017-0994-1 +Hoill Jung,Associative context mining for ontology-driven hidden knowledge discovery.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#JungYC16,https://doi.org/10.1007/s10586-016-0672-8 +Ziyuan Sun,ER model based supervision system analysis using information disclosure.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#SunLWLWS17,https://doi.org/10.1007/s10586-017-0779-6 +Ioana Banicescu,On the Scalability of Dynamic Scheduling Scientific Applications with Adaptive Weighted Factoring.,2003,6,Cluster Computing,3,db/journals/cluster/cluster6.html#BanicescuVD03,https://doi.org/10.1023/A:1023588520138 +Ke Xu,An improved P2P lookup protocol model.,2010,13,Cluster Computing,2,db/journals/cluster/cluster13.html#XuSS10,https://doi.org/10.1007/s10586-009-0112-0 +Ying Guo,Quality evaluation of tourmaline red based on uniform color space.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#Guo17,https://doi.org/10.1007/s10586-017-1091-1 +Shengjun Xue,QET: a QoS-based energy-aware task scheduling method in cloud environment.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#XueZXXXJ17,https://doi.org/10.1007/s10586-017-1047-5 +Wenjie Tang,A hierarchical parallel discrete event simulation kernel for multicore platform.,2013,16,Cluster Computing,3,db/journals/cluster/cluster16.html#TangYZ13,https://doi.org/10.1007/s10586-012-0201-3 +Feng Wen,Evolutionary-based automatic clustering method for optimizing multilevel network.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#WenWZ17,https://doi.org/10.1007/s10586-017-1030-1 +Sridharan Ranganathan,Gossip-Style Failure Detection and Distributed Consensus for Scalable Heterogeneous Clusters.,2001,4,Cluster Computing,3,db/journals/cluster/cluster4.html#RanganathanGTC01,https://doi.org/10.1023/A:1011494323443 +Quanzhen Guan,The research of prediction model on intelligent vehicle based on driver's perception.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#GuanBX17,https://doi.org/10.1007/s10586-017-0946-9 +Tomás Cerný,On energy impact of web user interface approaches.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#CernyD16,https://doi.org/10.1007/s10586-016-0665-7 +Sukhpal Singh,SOCCER: Self-Optimization of Energy-efficient Cloud Resources.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#SinghCSB16,https://doi.org/10.1007/s10586-016-0623-4 +Karen Schuchardt,A Web-Based Data Architecture for Problem-Solving Environments: Application of Distributed Authoring and Versioning to the Extensible Computational Chemistry Environment.,2002,5,Cluster Computing,3,db/journals/cluster/cluster5.html#SchuchardtMS02,https://doi.org/10.1023/A:1015625205311 +éric Garcia,Groups Partitioning Over CORBA for Cooperative Work.,2006,9,Cluster Computing,1,db/journals/cluster/cluster9.html#GarciaGL06,https://doi.org/10.1007/s10586-006-4898-8 +Ming Zhu,Key Message Approach to Optimize Communication of Parallel Applications on Clusters.,2003,6,Cluster Computing,3,db/journals/cluster/cluster6.html#ZhuCL03,https://doi.org/10.1023/A:1023603505117 +Cosimo Anglano,Fair Scheduling of General-Purpose Workloads on Workstation Clusters.,2002,5,Cluster Computing,1,db/journals/cluster/cluster5.html#Anglano02,https://doi.org/10.1023/A:1012752923793 +Dejene Boru,Energy-efficient data replication in cloud computing datacenters.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#BoruKGBZ15,https://doi.org/10.1007/s10586-014-0404-x +Nhat-Phuong Tran,Parameter based tuning model for optimizing performance on GPU.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#TranLC17,https://doi.org/10.1007/s10586-017-1003-4 +Jyoti Batheja,A Framework for Adaptive Cluster Computing Using JavaSpaces.,2003,6,Cluster Computing,3,db/journals/cluster/cluster6.html#BathejaP03,https://doi.org/10.1023/A:1023536503299 +Wenjuan Li,Trust-driven and QoS demand clustering analysis based cloud workflow scheduling strategies.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#LiWZHL14,https://doi.org/10.1007/s10586-013-0340-1 +Lixia Qi,Workflow management system based on WEB technology.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#Qi17,https://doi.org/10.1007/s10586-017-0786-7 +Haibin Cong,Influence mechanism of multi-network embeddedness to enterprises innovation performance based on knowledge management perspective.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#CongZW17,https://doi.org/10.1007/s10586-017-0735-5 +Jeffrey K. Hollingsworth,Prediction and adaptation in Active Harmony.,1999,2,Cluster Computing,3,db/journals/cluster/cluster2.html#HollingsworthK99,https://doi.org/10.1023/A:1019034926845 +Bo Qiao,Building thesaurus-based knowledge graph based on schema layer.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#QiaoFCZ17,https://doi.org/10.1007/s10586-016-0725-z +Shuxiang Zhang,Estimating reliability of the retrieval systems effectiveness rank based on performance in multiple experiments.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#ZhangR17,https://doi.org/10.1007/s10586-016-0709-z +Motohiko Matsuda,The design and implementation of MPI collective operations for clusters in long-and-fast networks.,2008,11,Cluster Computing,1,db/journals/cluster/cluster11.html#MatsudaKKTI08,https://doi.org/10.1007/s10586-007-0050-7 +Hoill Jung,Mining-based associative image filtering using harmonic mean.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#JungC14,https://doi.org/10.1007/s10586-013-0318-z +Penghao Xu,DOA estimation of multiple sources in sparse space with an extended array technique.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#XuYH16,https://doi.org/10.1007/s10586-016-0605-6 +Nina Fei,Estimating linear causality in the presence of latent variables.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#FeiY17,https://doi.org/10.1007/s10586-017-0824-5 +Yoon Sang Kim,A frequency monitoring system development for wide-area power grid protection.,2013,16,Cluster Computing,2,db/journals/cluster/cluster16.html#KimKSKP13,https://doi.org/10.1007/s10586-012-0221-z +Yuhui Deng,Predictively booting nodes to minimize performance degradation of a power-aware web cluster.,2014,17,Cluster Computing,4,db/journals/cluster/cluster17.html#DengHMZZH14,https://doi.org/10.1007/s10586-014-0385-9 +Raffaele Montella,Virtualizing high-end GPGPUs on ARM clusters for the next generation of high performance cloud computing.,2014,17,Cluster Computing,1,db/journals/cluster/cluster17.html#MontellaGL14,https://doi.org/10.1007/s10586-013-0341-0 +Siew Yin Chan,The impact of heterogeneous multi-core clusters on graph partitioning: an empirical study.,2012,15,Cluster Computing,3,db/journals/cluster/cluster15.html#ChanLA12,https://doi.org/10.1007/s10586-012-0229-4 +Hongjian Li,Energy-efficient and QoS-aware model based resource consolidation in cloud data centers.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#LiZZDT17,https://doi.org/10.1007/s10586-017-0893-5 +Massimiliano De Benedetti,JarvSis: a distributed scheduler for IoT applications.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#BenedettiMPS17,https://doi.org/10.1007/s10586-017-0836-1 +Cícero Augusto de S. Camargo,Aproximating static list schedules in dynamic multithreaded applications.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#CamargoCPCF14,https://doi.org/10.1007/s10586-013-0322-3 +Farrukh Nadeem,Modeling and predicting execution time of scientific workflows in the Grid using radial basis function neural network.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#NadeemAMFAH17,https://doi.org/10.1007/s10586-017-1018-x +Johannes Gutleber,Software Architecture for Processing Clusters Based on I2O.,2002,5,Cluster Computing,1,db/journals/cluster/cluster5.html#GutleberO02,https://doi.org/10.1023/A:1012744721976 +Zhen Zhang,A new family of Cayley graph interconnection networks based on wreath product and its topological properties.,2011,14,Cluster Computing,4,db/journals/cluster/cluster14.html#ZhangX11,https://doi.org/10.1007/s10586-011-0189-0 +Hyuncheol Kim,Service platform and monitoring architecture for network function virtualization (NFV).,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#KimYJLK16,https://doi.org/10.1007/s10586-016-0640-3 +Giuseppe Valetto,Synthesis of application-level utility functions for autonomic self-assessment.,2011,14,Cluster Computing,3,db/journals/cluster/cluster14.html#ValettodS11,https://doi.org/10.1007/s10586-010-0130-y +Alexander Leonhardi,A Comparison of Protocols for Updating Location Information.,2001,4,Cluster Computing,4,db/journals/cluster/cluster4.html#LeonhardiR01,https://doi.org/10.1023/A:1011872831932 +Sufian Sudeng,A knee-based multi-objective evolutionary algorithm: an extension to network system optimization design problem.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#SudengW16,https://doi.org/10.1007/s10586-015-0492-2 +Andres Quiroz,Robust clustering analysis for the management of self-monitoring distributed systems.,2009,12,Cluster Computing,1,db/journals/cluster/cluster12.html#QuirozGPS09,https://doi.org/10.1007/s10586-008-0068-5 +Rajeev R. Raje,COBioSIFTER - A CORBA-Based Distributed Multi-Agent Biological Information Management System.,2004,7,Cluster Computing,4,db/journals/cluster/cluster7.html#RajeZMTPM04,https://doi.org/10.1023/B:CLUS.0000039496.64629.32 +Qiyu Liu,Computational optimal control for the time fractional convection-diffusion-reaction system.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#LiuZL17,https://doi.org/10.1007/s10586-017-0929-x +Hyangsook Lee,A freight network planning model in oligopolistic shipping markets.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#LeeBTCL14,https://doi.org/10.1007/s10586-013-0314-3 +Jie Zheng,Research on a cluster system for binary data frames of wireless sensor network.,2016,19,Cluster Computing,2,db/journals/cluster/cluster19.html#Zheng16,https://doi.org/10.1007/s10586-016-0559-8 +Shumei Zhang,A smartphone based real-time daily activity monitoring system.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#ZhangMZY14,https://doi.org/10.1007/s10586-013-0335-y +Hang Zhou 0006,P-Aware: a proportional multi-resource scheduling strategy in cloud data center.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#ZhouLTKZ16,https://doi.org/10.1007/s10586-016-0593-6 +Hamid Sarbazi-Azad,The performance of synchronous parallel polynomial root extraction on a ring multicomputer.,2007,10,Cluster Computing,2,db/journals/cluster/cluster10.html#Sarbazi-Azad07,https://doi.org/10.1007/s10586-007-0013-z +Athanasios Naskos,Cost-aware horizontal scaling of NoSQL databases using probabilistic model checking.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#NaskosGK17,https://doi.org/10.1007/s10586-017-0816-5 +Nakhoon Baek,Massively parallel acceleration methods for image handling operations.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#BaekY17,https://doi.org/10.1007/s10586-017-0788-5 +Cha-Hwa Lin,Mobile location estimation using density-based clustering technique for NLoS environments.,2007,10,Cluster Computing,1,db/journals/cluster/cluster10.html#LinCW07,https://doi.org/10.1007/s10586-007-0003-1 +Yanbin Wu,Trend analysis of variations in carbon stock using stock big data.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#WuGLHW17,https://doi.org/10.1007/s10586-017-0854-z +Lun-Chi Chen,Ontology-based library recommender system using MapReduce.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#ChenKL15,https://doi.org/10.1007/s10586-013-0342-z +Haluk Topcuoglu,The design and evaluation of a virtual distributed computing environment.,1998,1,Cluster Computing,1,db/journals/cluster/cluster1.html#TopcuogluHKKBYRV98,https://doi.org/10.1023/A:1019069012307 +Lei Wang,Group behavior time series anomaly detection in specific network space based on separation degree.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#WangXXZ16,https://doi.org/10.1007/s10586-016-0583-8 +Lan Wang,Performance analysis of buffer allocation schemes under MMPP and Poisson traffic with individual thresholds.,2007,10,Cluster Computing,1,db/journals/cluster/cluster10.html#WangMA07,https://doi.org/10.1007/s10586-007-0001-3 +Zhifeng Yun,DA-TC: a novel application execution model in multicluster systems.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#YunLAKR14,https://doi.org/10.1007/s10586-012-0228-5 +Jianqi Tang,A parallel programming interface for out-of-core cluster applications.,2006,9,Cluster Computing,3,db/journals/cluster/cluster9.html#TangFHZ06,https://doi.org/10.1007/s10586-006-9744-5 +Jeffrey J. Evans,Parallel application-level behavioral attributes for performance and energy management of high-performance computing systems.,2013,16,Cluster Computing,1,db/journals/cluster/cluster16.html#EvansL13,https://doi.org/10.1007/s10586-011-0193-4 +Dung Xuan Thi Le,A high performance integrated web data warehousing.,2007,10,Cluster Computing,2,db/journals/cluster/cluster10.html#LeRT07a,https://doi.org/10.1007/s10586-007-0024-9 +Hyuck Han,Aspect-oriented development of cluster computing software.,2011,14,Cluster Computing,4,db/journals/cluster/cluster14.html#HanJY11,https://doi.org/10.1007/s10586-011-0166-7 +Weiwu Hu,Optimizing Home-Based Software DSM Protocols.,2001,4,Cluster Computing,3,db/journals/cluster/cluster4.html#HuST01,https://doi.org/10.1023/A:1011450508422 +Li Yang 0005,Identifying opinion leaders in social networks with topic limitation.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#YangTLMZ17,https://doi.org/10.1007/s10586-017-0732-8 +Bruce Lowekamp,A resource query interface for network-aware applications.,1999,2,Cluster Computing,2,db/journals/cluster/cluster2.html#LowekampMGSSS99,https://doi.org/10.1023/A:1019074608189 +Jiangang Zhang,The invariant measure and stationary probability density computing model based analysis of the governor system.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#ZhangCDLL17,https://doi.org/10.1007/s10586-017-0817-4 +Rustem Dautov,Towards a framework for monitoring cloud application platforms as sensor networks.,2014,17,Cluster Computing,4,db/journals/cluster/cluster17.html#DautovPS14,https://doi.org/10.1007/s10586-014-0389-5 +Yong-Hyuk Moon,An integrated approach towards aggressive state-tracking migration for maximizing performance benefit in distributed computing.,2013,16,Cluster Computing,3,db/journals/cluster/cluster16.html#MoonY13,https://doi.org/10.1007/s10586-011-0197-0 +Chun-Yan Han,Improved SLIC imagine segmentation algorithm based on K-means.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#Han17,https://doi.org/10.1007/s10586-017-0792-9 +Md. Mohsin Ali,A parallel framework for software defect detection and metric selection on cloud computing.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#AliHAAAY17,https://doi.org/10.1007/s10586-017-0892-6 +Sevin Fide,A middleware approach for pipelining communications in clusters.,2007,10,Cluster Computing,4,db/journals/cluster/cluster10.html#FideJ07,https://doi.org/10.1007/s10586-007-0026-7 +Zhiqiang Chen,Ant colony optimization with different crossover schemes for global optimization.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#ChenW17,https://doi.org/10.1007/s10586-017-0793-8 +Jesús Carretero,Introduction to cloud computing: platforms and solutions.,2014,17,Cluster Computing,4,db/journals/cluster/cluster17.html#CarreteroB14,https://doi.org/10.1007/s10586-014-0352-5 +Claudia Canali,A Two-level distributed architecture for the support of content adaptation and delivery services.,2010,13,Cluster Computing,1,db/journals/cluster/cluster13.html#CanaliCL10,https://doi.org/10.1007/s10586-009-0094-y +Zheng Xu 0001,The big data analytics and applications of the surveillance system using video structured description technology.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#XuMHL16,https://doi.org/10.1007/s10586-016-0581-x +Chenn-Jung Huang,A self-healing clustering algorithm for underwater sensor networks.,2011,14,Cluster Computing,1,db/journals/cluster/cluster14.html#HuangWLCCSCCHY11,https://doi.org/10.1007/s10586-010-0139-2 +Lin Li,A comparison study of clustering algorithms for microblog posts.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#LiYDXZ16,https://doi.org/10.1007/s10586-016-0589-2 +Yong Ho Kang,On tradeoff between the two compromise factors in assigning tasks on a cluster computing.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#KangCKK14,https://doi.org/10.1007/s10586-013-0301-8 +Mohammad J. Rashti,Exploiting application buffer reuse to improve MPI small message transfer protocols over RDMA-enabled networks.,2011,14,Cluster Computing,4,db/journals/cluster/cluster14.html#RashtiA11,https://doi.org/10.1007/s10586-011-0165-8 +Bernabé Dorronsoro,Special issue on soft computing techniques in cluster and grid computing systems.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#DorronsoroN14,https://doi.org/10.1007/s10586-013-0336-x +Xiaofei Liao,Energy optimization schemes in cluster with virtual machines.,2010,13,Cluster Computing,2,db/journals/cluster/cluster13.html#LiaoHJ10,https://doi.org/10.1007/s10586-009-0110-2 +Peter Benner,Unleashing GPU acceleration for symmetric band linear algebra kernels and model reduction.,2015,18,Cluster Computing,4,db/journals/cluster/cluster18.html#BennerDEQR15,https://doi.org/10.1007/s10586-015-0489-x +Marty Humphrey,Security Implications of Typical Grid Computing Usage Scenarios.,2002,5,Cluster Computing,3,db/journals/cluster/cluster5.html#HumphreyT02,https://doi.org/10.1023/A:1015621120332 +Roy C. Park,M2M-based smart health service for human UI/UX using motion recognition.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#ParkJSKY15,https://doi.org/10.1007/s10586-014-0374-z +Xue-Gang Chen,A novel reliability estimation method of complex network based on Monte Carlo.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#Chen17,https://doi.org/10.1007/s10586-017-0826-3 +Kunfang Song,High-performance XML modeling of parallel queries based on MapReduce framework.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#SongL16,https://doi.org/10.1007/s10586-016-0628-z +Bruno Van Den Bossche,Design of distributed microcell-based MMOG hosting platforms: impact study of dynamic relocations.,2011,14,Cluster Computing,2,db/journals/cluster/cluster14.html#BosscheVTDD11,https://doi.org/10.1007/s10586-010-0140-9 +Oh-Keun Ha,Development of indicators of freight stations for digital convergence.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#HaCKKL15,https://doi.org/10.1007/s10586-014-0386-8 +Peter J. Keleher,Attacking the bottlenecks of backfilling schedulers.,2000,3,Cluster Computing,4,db/journals/cluster/cluster3.html#KeleherZP00,https://doi.org/10.1023/A:1019044623636 +Li Wei Yuan,Cloud-based learning system for answer ranking.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#YuanSZFS17,https://doi.org/10.1007/s10586-017-0888-2 +Harjot Gill,Declarative platform for high-performance network traffic analytics.,2014,17,Cluster Computing,4,db/journals/cluster/cluster17.html#GillLNGL14,https://doi.org/10.1007/s10586-014-0363-2 +Randy Butler,Cyberinfrastructure for the analysis of ecological acoustic sensor data: a use case study in grid deployment.,2007,10,Cluster Computing,3,db/journals/cluster/cluster10.html#ButlerSGBWBFDGBTF07,https://doi.org/10.1007/s10586-007-0033-8 +Alexander Thomasian,Mirrored disk rouing and scheduling.,2006,9,Cluster Computing,4,db/journals/cluster/cluster9.html#Thomasian06,https://doi.org/10.1007/s10586-006-0014-3 +Nader Mohamed,DDOps: dual-direction operations for load balancing on non-dedicated heterogeneous distributed systems.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#MohamedAJ14,https://doi.org/10.1007/s10586-013-0294-3 +Jianhong Zhang,Efficient chameleon hashing-based privacy-preserving auditing in cloud storage.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#ZhangZ16,https://doi.org/10.1007/s10586-015-0514-0 +Cosimo Anglano,A Performance Comparison of Coscheduling Strategies for Workstation Clusters.,2001,4,Cluster Computing,2,db/journals/cluster/cluster4.html#Anglano01,https://doi.org/10.1023/A:1011416914729 +Basel A. Mahafzah,Performance evaluation of broadcast and global combine operations in all-port wormhole-routed OTIS-Mesh interconnection networks.,2010,13,Cluster Computing,1,db/journals/cluster/cluster13.html#MahafzahTT10,https://doi.org/10.1007/s10586-009-0117-8 +,Introduction for the Special Issue on Grid Computing.,2002,5,Cluster Computing,3,db/journals/cluster/cluster5.html#X02a, +Zhigang Deng,Using priced timed automaton to analyse the energy consumption in cloud computing environment.,2014,17,Cluster Computing,4,db/journals/cluster/cluster17.html#DengZHZ014,https://doi.org/10.1007/s10586-014-0378-8 +Mohammed Rebbah,A decentralized fault tolerance model based on level of performance for grid environment.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#RebbahSBB16,https://doi.org/10.1007/s10586-015-0497-x +Chi-Yuan Chen,CogIMS: an active service-oriented cognitive networks over IP multimedia subsystems.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#ChenHC15,https://doi.org/10.1007/s10586-014-0409-5 +Erwin Adi,Distributed denial-of-service attacks against HTTP/2 services.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#AdiBHL16,https://doi.org/10.1007/s10586-015-0528-7 +Miguel A. Vega-Rodríguez,Parallelism-based approaches in computational biology: a view from diverse case studies.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#Vega-RodriguezS17,https://doi.org/10.1007/s10586-017-1037-7 +Jiwon Kim,A blog ranking algorithm using analysis of both blog influence and characteristics of blog posts.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#KimYPRLYR15,https://doi.org/10.1007/s10586-013-0337-9 +Steven A. Hofmeyr,Juggle: addressing extrinsic load imbalances in SPMD applications on multicore computers.,2013,16,Cluster Computing,2,db/journals/cluster/cluster16.html#HofmeyrCIK13,https://doi.org/10.1007/s10586-012-0204-0 +Damián A. Mallón,Scalable PGAS collective operations in NUMA clusters.,2014,17,Cluster Computing,4,db/journals/cluster/cluster17.html#MallonTTGGW14,https://doi.org/10.1007/s10586-014-0377-9 +Xiaochun Sheng,Motif identification method based on Gibbs sampling and genetic algorithm.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#ShengW17,https://doi.org/10.1007/s10586-016-0699-x +Saeed Parsa,Micro-economics based resource allocation in Grid-Federation environment.,2011,14,Cluster Computing,4,db/journals/cluster/cluster14.html#ParsaPN11,https://doi.org/10.1007/s10586-011-0172-9 +Christian Esposito,Interconnecting Federated Clouds by Using Publish-Subscribe Service.,2013,16,Cluster Computing,4,db/journals/cluster/cluster16.html#EspositoFPC13,https://doi.org/10.1007/s10586-013-0261-z +Yan Hu,PEDAL: a dynamic analysis tool for efficient concurrency bug reproduction in big data environment.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#HuYC16,https://doi.org/10.1007/s10586-016-0537-1 +Seung-Hoon Kang,DDoS avoidance strategy for service availability.,2013,16,Cluster Computing,2,db/journals/cluster/cluster16.html#KangPYK13,https://doi.org/10.1007/s10586-011-0185-4 +Pedro Diogo,An ideal IoT solution for real-time web monitoring.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#DiogoLR17,https://doi.org/10.1007/s10586-017-0861-0 +YoungHee Jung,A corpus-based approach to classifying emotions using Korean linguistic features.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#JungPLCJ17,https://doi.org/10.1007/s10586-017-0777-8 +JangYoung Kim,A highly-accurate and low-overhead prediction model for transfer throughput optimization.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#KimYK15,https://doi.org/10.1007/s10586-013-0305-4 +Xiaqing Liu,A value transfer GERT network model for carbon fiber industry chain based on input-output table.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#LiuFZ17,https://doi.org/10.1007/s10586-017-0960-y +Sang Yeob Oh,Target speech feature extraction using non-parametric correlation coefficient.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#OhC14,https://doi.org/10.1007/s10586-013-0284-5 +Seok-Woo Jang,Robust detection of mosaic regions in visual image data.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#JangJ16,https://doi.org/10.1007/s10586-016-0621-6 +Ionut Cardei,Resource Management for Ad-Hoc Wireless Networks with Cluster Organization.,2004,7,Cluster Computing,1,db/journals/cluster/cluster7.html#CardeiVPGCM04,https://doi.org/10.1023/B:CLUS.0000003946.65880.25 +Davi Teodoro Fernandes,A domain decomposition strategy for hybrid parallelization of moving particle semi-implicit (MPS) method for computer cluster.,2015,18,Cluster Computing,4,db/journals/cluster/cluster18.html#FernandesCFN15,https://doi.org/10.1007/s10586-015-0483-3 +Sara Ghanavati,Cloud-assisted IoT-based health status monitoring framework.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#GhanavatiAIA17,https://doi.org/10.1007/s10586-017-0847-y +Michael A. Frumkin,NAS Grid Benchmarks: A Tool for Grid Space Exploration.,2002,5,Cluster Computing,3,db/journals/cluster/cluster5.html#FrumkinW02,https://doi.org/10.1023/A:1015669003494 +Abhishek Verma,Breaking the MapReduce stage barrier.,2013,16,Cluster Computing,1,db/journals/cluster/cluster16.html#VermaCZGC13,https://doi.org/10.1007/s10586-011-0182-7 +Jian Chen,A study of formative and continuous models for umbrella water curtain based on wall-attaching jets.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#ChenWL17,https://doi.org/10.1007/s10586-017-0745-3 +Aniruddha G. Shet,A framework for characterizing overlap of communication and computation in parallel applications.,2008,11,Cluster Computing,1,db/journals/cluster/cluster11.html#ShetSBNT08,https://doi.org/10.1007/s10586-007-0046-3 +Seokhoon Kim,Performance analysis of non-PC/SC based mini-WiMAX connection manager.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#KimKC14,https://doi.org/10.1007/s10586-013-0317-0 +Wei Yan,A novel bi-subgroup adaptive evolutionary algorithm for optimizing degree of hybridization of HEV bus.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#YanSLH17,https://doi.org/10.1007/s10586-017-0753-3 +N. Jayapandian,Secure and efficient online data storage and sharing over cloud environment using probabilistic with homomorphic encryption.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#JayapandianR17,https://doi.org/10.1007/s10586-017-0809-4 +Zongming Zhang,Principal agent model based design and outsourcing of information value.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#ZhangX17,https://doi.org/10.1007/s10586-016-0724-0 +Adriana Iamnitchi,Workload characterization in a high-energy data grid and impact on resource management.,2009,12,Cluster Computing,2,db/journals/cluster/cluster12.html#IamnitchiDG09,https://doi.org/10.1007/s10586-009-0081-3 +Dara Kusic,Power and performance management of virtualized computing environments via lookahead control.,2009,12,Cluster Computing,1,db/journals/cluster/cluster12.html#KusicKHKJ09,https://doi.org/10.1007/s10586-008-0070-y +Nashat Mansour,Filtering intrusion detection alarms.,2010,13,Cluster Computing,1,db/journals/cluster/cluster13.html#MansourCF10,https://doi.org/10.1007/s10586-009-0096-9 +Lirong Qiu,Knowledge entity learning and representation for ontology matching based on deep neural networks.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#QiuYPX17,https://doi.org/10.1007/s10586-017-0844-1 +Bing Chen,Traffic load monitoring and load balancing for the Internet.,2000,3,Cluster Computing,2,db/journals/cluster/cluster3.html#ChenL00,https://doi.org/10.1023/A:1019080104072 +Youhei Tanaka,A mobile agent model for fault-tolerant manipulation on distributed objects.,2007,10,Cluster Computing,1,db/journals/cluster/cluster10.html#TanakaHET07,https://doi.org/10.1007/s10586-007-0007-x +Malika Mahoui,A Dynamic Workflow Approach for the Integration of Bioinformatics Services.,2005,8,Cluster Computing,4,db/journals/cluster/cluster8.html#MahouiLGLCBB05,https://doi.org/10.1007/s10586-005-4095-1 +Lajiao Chen,A review of parallel computing for large-scale remote sensing image mosaicking.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#ChenMLWJH15,https://doi.org/10.1007/s10586-015-0422-3 +Zhaoan Dong,Using hybrid algorithmic-crowdsourcing methods for academic knowledge acquisition.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#DongLLFC17,https://doi.org/10.1007/s10586-017-1089-8 +Hyoung Joong Kim,A Novel Optimal Load Distribution Algorithm for Divisible Loads.,2003,6,Cluster Computing,1,db/journals/cluster/cluster6.html#Kim03,https://doi.org/10.1023/A:1020915000287 +Aniruddha S. Gokhale,Towards Real-Time Fault-Tolerant CORBA Middleware.,2004,7,Cluster Computing,4,db/journals/cluster/cluster7.html#GokhaleNSC04,https://doi.org/10.1023/B:CLUS.0000039493.73008.13 +Arzhan Kinzhalin,Enabling dynamic data centers with a smart bare-metal server platform.,2011,14,Cluster Computing,3,db/journals/cluster/cluster14.html#KinzhalinKLM11,https://doi.org/10.1007/s10586-010-0125-8 +Aziz Nasridinov,A two-phase data space partitioning for efficient skyline computation.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#NasridinovCP17,https://doi.org/10.1007/s10586-017-1070-6 +Zhou Lei,Scalable and efficient workload hotspot detection in virtualized environment.,2014,17,Cluster Computing,4,db/journals/cluster/cluster17.html#LeiHGHSL14,https://doi.org/10.1007/s10586-014-0383-y +Fangzhe Chang,A Framework for Automatic Adaptation of Tunable Distributed Applications.,2001,4,Cluster Computing,1,db/journals/cluster/cluster4.html#ChangK01,https://doi.org/10.1023/A:1011464226688 +Hou Rui,Research on the two-way defense model of large data dynamic security SAT.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#RuiJW17,https://doi.org/10.1007/s10586-017-0791-x +Ziliang Zong,FastStor: improving the performance of a large scale hybrid storage system via caching and prefetching.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#ZongFRW14,https://doi.org/10.1007/s10586-013-0304-5 +Morris Riedel,Research advances by using interoperable e-science infrastructures.,2009,12,Cluster Computing,4,db/journals/cluster/cluster12.html#RiedelWKSL09,https://doi.org/10.1007/s10586-009-0102-2 +Giuseppe Di Modica,Matching the business perspectives of providers and customers in future cloud markets.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#ModicaT15,https://doi.org/10.1007/s10586-014-0364-1 +Andrew Chi-Sing Leung,Analysis and Design of an Agent Searching Algorithm for e-Marketplaces.,2004,7,Cluster Computing,1,db/journals/cluster/cluster7.html#LeungSSWY04,https://doi.org/10.1023/B:CLUS.0000003945.65015.81 +Jae-Il Cho,A fault tolerant channel allocation scheme in distributed cloud networks.,2015,18,Cluster Computing,4,db/journals/cluster/cluster18.html#ChoPKJLK15,https://doi.org/10.1007/s10586-015-0487-z +V. Saravanan,Maximizing QoS by cooperative vertical and horizontal handoff for tightly coupled WiMAX/WLAN overlay networks.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#SaravananR16,https://doi.org/10.1007/s10586-016-0601-x +Katarzyna Keahey,Grid Support for Collaborative Control Room in Fusion Science.,2005,8,Cluster Computing,4,db/journals/cluster/cluster8.html#KeaheyPPSAABFLKLMR05,https://doi.org/10.1007/s10586-005-4097-z +Hong Wang,Software model checking for resources race.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#WangZ17,https://doi.org/10.1007/s10586-017-0757-z +Alan D. George,Guest Editorial on Dependable Distributed Systems.,2004,7,Cluster Computing,4,db/journals/cluster/cluster7.html#GeorgeH04,https://doi.org/10.1023/B:CLUS.0000039535.86988.8f +George Candea,Autonomous recovery in componentized Internet applications.,2006,9,Cluster Computing,2,db/journals/cluster/cluster9.html#CandeaKKF06,https://doi.org/10.1007/s10586-006-7562-4 +Matthias Kühnemann,Optimizing MPI collective communication by orthogonal structures.,2006,9,Cluster Computing,3,db/journals/cluster/cluster9.html#KuhnemannRR06,https://doi.org/10.1007/s10586-006-9740-9 +Mohammed Hussain,Software quality in the clouds: a cloud-based solution.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#HussainA14,https://doi.org/10.1007/s10586-012-0233-8 +Fengping Hu,Power and environment aware control of Beowulf clusters.,2009,12,Cluster Computing,3,db/journals/cluster/cluster12.html#HuE09,https://doi.org/10.1007/s10586-009-0085-z +Zhenjun Luo,An improved CSMA/CA algorithm based on WSNs of the drug control system.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#LuoZMZW17,https://doi.org/10.1007/s10586-017-0828-1 +Junping Xiang,An adaptive traffic signal coordination optimization method based on vehicle-to-infrastructure communication.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#XiangC16,https://doi.org/10.1007/s10586-016-0620-7 +Xikai Tu,Iterative learning control applied to a hybrid rehabilitation exoskeleton system powered by PAM and FES.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#TuZLSSHJH17,https://doi.org/10.1007/s10586-017-0880-x +Nalan Gülpinar,Mean-variance performance optimization of response time in a tandem router network with batch arrivals.,2007,10,Cluster Computing,2,db/journals/cluster/cluster10.html#GulpinarHHFRP07,https://doi.org/10.1007/s10586-007-0016-9 +Yamuna Rajasekhar,Architecture and applications for an All-FPGA parallel computer.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#RajasekharS14,https://doi.org/10.1007/s10586-013-0278-3 +TaeHwan Kim,Dynamic partition lock method to reduce transaction abort rates of cloud database.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#KimS15,https://doi.org/10.1007/s10586-014-0387-7 +Junzhou Luo,A context-aware personalized resource recommendation for pervasive learning.,2010,13,Cluster Computing,2,db/journals/cluster/cluster13.html#LuoDCS10,https://doi.org/10.1007/s10586-009-0113-z +Jin-Mook Kim,A secure smart-work service model based OpenStack for Cloud computing.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#KimJCKP14,https://doi.org/10.1007/s10586-013-0251-1 +Andrzej M. Goscinski,A Cluster Operating System Supporting Parallel Computing.,2001,4,Cluster Computing,2,db/journals/cluster/cluster4.html#GoscinskiHS01,https://doi.org/10.1023/A:1011473016546 +Bin Hu,An optimal path finding strategy in networks based on random walk.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#HuQSY16,https://doi.org/10.1007/s10586-016-0674-6 +Björn Lohrmann,Nephele streaming: stream processing under QoS constraints at scale.,2014,17,Cluster Computing,1,db/journals/cluster/cluster17.html#LohrmannWK14,https://doi.org/10.1007/s10586-013-0281-8 +Joo-Chang Kim,Emerging risk forecast system using associative index mining analysis.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#KimC17,https://doi.org/10.1007/s10586-016-0702-6 +Jun Huang,Effects of channel bandwidth variation on performance of individual messages in spatially and temporally heterogeneous communication networks.,2009,12,Cluster Computing,3,db/journals/cluster/cluster12.html#HuangL09,https://doi.org/10.1007/s10586-008-0061-z +Mohammed M. Kadhum,Congestion-aware TCP-friendly system for multimedia transmission based on UDP.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#KadhumH15,https://doi.org/10.1007/s10586-015-0446-8 +Rajeev R. Raje,Homogeneous Agent-Based Distributed Information Filtering.,2002,5,Cluster Computing,4,db/journals/cluster/cluster5.html#RajeQMPPM02,https://doi.org/10.1023/A:1019760221121 +Kyungyong Chung,PHR open platform based smart health service using distributed object group framework.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#ChungP16,https://doi.org/10.1007/s10586-016-0531-7 +Munwar Ali Zardari,Data security rules/regulations based classification of file data using TsF-kNN algorithm.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#ZardariJ16,https://doi.org/10.1007/s10586-016-0539-z +Haibo Tian,A systematic method to design strong designated verifier signature without random oracles.,2013,16,Cluster Computing,4,db/journals/cluster/cluster16.html#TianJLW13,https://doi.org/10.1007/s10586-013-0255-x +Amit Kumar Das,Big media healthcare data processing in cloud: a collaborative resource management perspective.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#DasARAHUS17,https://doi.org/10.1007/s10586-017-0785-8 +S. Ramathilagam,Extended fuzzy c-means: an analyzing data clustering problems.,2013,16,Cluster Computing,3,db/journals/cluster/cluster16.html#RamathilagamDK13,https://doi.org/10.1007/s10586-012-0202-2 +Fabrizio Petrini,Performance Evaluation of the Quadrics Interconnection Network.,2003,6,Cluster Computing,2,db/journals/cluster/cluster6.html#PetriniFHC03,https://doi.org/10.1023/A:1022852505633 +Hao Zhu,A semantic enhanced Power Budget Calculator for distributed computing using IEEE 802.3az.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#ZhuVZGPSLL15,https://doi.org/10.1007/s10586-014-0395-7 +Bo Qin,Simultaneous authentication and secrecy in identity-based data upload to cloud.,2013,16,Cluster Computing,4,db/journals/cluster/cluster16.html#QinWWLD13,https://doi.org/10.1007/s10586-013-0258-7 +Chuluunsuren Damdinsuren,Lifetime extension based on residual energy for receiver-driven multi-hop wireless network.,2013,16,Cluster Computing,3,db/journals/cluster/cluster16.html#DamdinsurenKSMH13,https://doi.org/10.1007/s10586-012-0212-0 +Taehoon Kim,I/O access frequency-aware cache method on KVM/QEMU.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#KimNPY17,https://doi.org/10.1007/s10586-017-0937-x +Hassan Barjini,HybridFlood: minimizing the effects of redundant messages and maximizing search efficiency of unstructured peer-to-peer networks.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#BarjiniOIU14,https://doi.org/10.1007/s10586-013-0298-z +Mazin S. Yousif,Editorial.,1999,2,Cluster Computing,4,db/journals/cluster/cluster2.html#YousifM99,https://doi.org/10.1023/A:1019043128662 +Santiago D. Costarelli,GPGPU implementation of the BFECC algorithm for pure advection equations.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#CostarelliSPDI14,https://doi.org/10.1007/s10586-013-0329-9 +Terence J. Harmer,Gridcast - a next generation broadcast infrastructure?,2007,10,Cluster Computing,3,db/journals/cluster/cluster10.html#Harmer07,https://doi.org/10.1007/s10586-007-0030-y +Qinghua Wu,Research of pre-stack AVO elastic parameter inversion problem based on hybrid genetic algorithm.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#WuWZ17,https://doi.org/10.1007/s10586-017-1033-y +Marco Conti,QoS-based Architectures for Geographically Replicated Web Servers.,2001,4,Cluster Computing,2,db/journals/cluster/cluster4.html#ContiGP01,https://doi.org/10.1023/A:1011412830658 +Milosz Ciznicki,Energy aware scheduling model and online heuristics for stencil codes on heterogeneous computing architectures.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#CiznickiKW17,https://doi.org/10.1007/s10586-016-0686-2 +Mariana Mendina,A general purpose parallel block structured open source incompressible flow solver.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#MendinaDSNU14,https://doi.org/10.1007/s10586-013-0323-2 +Siyan Lai,A BSP model graph processing system on many cores.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#LaiLLSJL17,https://doi.org/10.1007/s10586-017-0829-0 +Taskin Koçak,Design and analysis of a distributed grid resource discovery protocol.,2012,15,Cluster Computing,1,db/journals/cluster/cluster15.html#KocakL12,https://doi.org/10.1007/s10586-010-0147-2 +Jiming Chen,Distributed sensor activation algorithm for target tracking with binary sensor networks.,2011,14,Cluster Computing,1,db/journals/cluster/cluster14.html#ChenCLS11,https://doi.org/10.1007/s10586-009-0092-0 +Tao Xie 0004,Stochastic scheduling for multiclass applications with availability requirements in heterogeneous clusters.,2008,11,Cluster Computing,1,db/journals/cluster/cluster11.html#XieQ08,https://doi.org/10.1007/s10586-007-0049-0 +Johnsi Merlin Benita,Road Gateways for femtocell clusters to enable communication and handover in dead zones.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#BenitaR17,https://doi.org/10.1007/s10586-017-0799-2 +Jia Zhu,An examination of on-line machine learning approaches for pseudo-random generated data.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#ZhuXLFLHH16,https://doi.org/10.1007/s10586-016-0586-5 +Li Guodong,A method analysis for hail cloudy prediction based on CNN.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#GuodongWBAX16,https://doi.org/10.1007/s10586-016-0632-3 +Rui Chang,MIPE: a practical memory integrity protection method in a trusted execution environment.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#ChangJCXCA17,https://doi.org/10.1007/s10586-017-0833-4 +S. Hossein Hosseini,Editorial.,2000,3,Cluster Computing,2,db/journals/cluster/cluster3.html#Hosseini00,https://doi.org/10.1023/A:1019015817276 +Ming Wei,Bi-level programming model for multi-modal regional bus timetable and vehicle dispatch with stochastic travel time.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#WeiS17,https://doi.org/10.1007/s10586-016-0719-x +Junsang Kim,Real-time data replication strategy for data grids.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#KimKJ17,https://doi.org/10.1007/s10586-016-0697-z +Hwa Gyoo Park,A methodology for developing clinical collaborative communication systems.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#ParkS16,https://doi.org/10.1007/s10586-015-0517-x +Dangui Hu,Spatiotemporal regression Kriging to predict precipitation using time-series MODIS data.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#HuSHX17,https://doi.org/10.1007/s10586-016-0708-0 +Brian Van Essen,DI-MMAP - a scalable memory-map runtime for out-of-core data-intensive applications.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#EssenHAPG15,https://doi.org/10.1007/s10586-013-0309-0 +Peter Steenkiste,Editorial.,2001,4,Cluster Computing,1,db/journals/cluster/cluster4.html#Steenkiste01,https://doi.org/10.1023/A:1011499808033 +Angelos Bilas,Using System Emulation to Model Next-Generation Shared Virtual Memory Clusters.,2003,6,Cluster Computing,4,db/journals/cluster/cluster6.html#BilasGACJ03,https://doi.org/10.1023/A:1025713926030 +X. M. Zhang,Spectral-spatial multi-feature classification of remote sensing big data based on a random forest classifier for land cover mapping.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#ZhangHZPL17,https://doi.org/10.1007/s10586-017-0950-0 +SookKyong Choi,Fault tolerance and QoS scheduling using CAN in mobile social cloud computing.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#ChoiCY14,https://doi.org/10.1007/s10586-013-0286-3 +Yacine Kessaci,A Pareto-based metaheuristic for scheduling HPC applications on a geographically distributed cloud federation.,2013,16,Cluster Computing,3,db/journals/cluster/cluster16.html#KessaciMT13,https://doi.org/10.1007/s10586-012-0210-2 +Giuseppe Ciaccio,Messaging on Gigabit Ethernet: Some Experiments with GAMMA and Other Systems.,2003,6,Cluster Computing,2,db/journals/cluster/cluster6.html#Ciaccio03,https://doi.org/10.1023/A:1022804622471 +Michael Russell,The Astrophysics Simulation Collaboratory: A Science Portal Enabling Community Software Development.,2002,5,Cluster Computing,3,db/journals/cluster/cluster5.html#RussellADFSNSL02,https://doi.org/10.1023/A:1015629422149 +Renato Lo Cigno,Sender-Side TCP Modifications: Performance Analysis and Design Guidelines.,2005,8,Cluster Computing,1,db/journals/cluster/cluster8.html#CignoPG05,https://doi.org/10.1007/s10586-004-4435-6 +Mario Lauria,Efficient layering for high speed communication: the MPI over Fast Messages (FM) experience.,1999,2,Cluster Computing,2,db/journals/cluster/cluster2.html#LauriaPC99,https://doi.org/10.1023/A:1019018423211 +Hongjian Li,Two-level parallelization of Ehrenfest force calculations in ab initio molecular dynamics simulation.,2012,15,Cluster Computing,3,db/journals/cluster/cluster15.html#LiSTDL12,https://doi.org/10.1007/s10586-012-0217-8 +Robert Andrei Buchmann,Domain-specific diagrammatic modelling: a source of machine-readable semantics for the Internet of Things.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#BuchmannK17,https://doi.org/10.1007/s10586-016-0695-1 +Jing Mei,Energy-aware task scheduling in heterogeneous computing environments.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#MeiLL14,https://doi.org/10.1007/s10586-013-0297-0 +Jun Wang,Reliability study on the common three methods of substitution parameter estimation.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#WangS17,https://doi.org/10.1007/s10586-017-1082-2 +Jun Dong,Research on peak shaving costs and allocation of wind power integration using scalable computing method.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#DongXLC17,https://doi.org/10.1007/s10586-016-0718-y +Jamal Toutouh,Fast energy-aware OLSR routing in VANETs by means of a parallel evolutionary algorithm.,2013,16,Cluster Computing,3,db/journals/cluster/cluster16.html#ToutouhNA13,https://doi.org/10.1007/s10586-012-0208-9 +Teng Fei,Application of BFO-AFSA to location of distribution centre.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#FeiZ17,https://doi.org/10.1007/s10586-017-1144-5 +Linchong Huang,The finite element method for the reliability analysis of lining structures based on Monte Carlo stochastic.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#HuangHTL17,https://doi.org/10.1007/s10586-017-1073-3 +Jeremy Kepner,Interfacing interpreted and compiled languages to support applications on a massively parallel network of workstations (MP-NOW).,2000,3,Cluster Computing,1,db/journals/cluster/cluster3.html#KepnerGMMD00,https://doi.org/10.1023/A:1019011716367 +Sanjay Kumar Dhurandher,Using ant-based agents for congestion control in ad-hoc wireless sensor networks.,2011,14,Cluster Computing,1,db/journals/cluster/cluster14.html#DhurandherMMAW11,https://doi.org/10.1007/s10586-009-0090-2 +Martin Duggan,A network aware approach for the scheduling of virtual machine migration during peak loads.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#DugganDHB17,https://doi.org/10.1007/s10586-017-0948-7 +Wonhee Cho,A basis of spatial big data analysis with map-matching system.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#ChoC17,https://doi.org/10.1007/s10586-017-1014-1 +Sriram Lakshminarasimhan,DIRAQ: scalable in situ data- and resource-aware indexing for optimized query performance.,2014,17,Cluster Computing,4,db/journals/cluster/cluster17.html#LakshminarasimhanZBPJVPKS14,https://doi.org/10.1007/s10586-014-0358-z +Thomas Ilsche,Optimizing I/O forwarding techniques for extreme-scale event tracing.,2014,17,Cluster Computing,1,db/journals/cluster/cluster17.html#IlscheSCKJKIRNP14,https://doi.org/10.1007/s10586-013-0272-9 +Josep L. Lérida,PSysCal: a parallel tool for calibration of ecosystem models.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#LeridaASC14,https://doi.org/10.1007/s10586-013-0310-7 +R. Gopi,Securing video cloud storage by ERBAC mechanisms in 5g enabled vehicular networks.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#GopiR17,https://doi.org/10.1007/s10586-017-0987-0 +Ebrahim Al Alkeem,New secure healthcare system using cloud of things.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#AlkeemSYZH17,https://doi.org/10.1007/s10586-017-0872-x +Kun-Hee Han,Proposing and verifying a security protocol for hash function-based IoT communication system.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#HanB16,https://doi.org/10.1007/s10586-015-0518-9 +DaeWon Lee,Proxy based seamless connection management method in mobile cloud computing.,2013,16,Cluster Computing,4,db/journals/cluster/cluster16.html#LeeLPJ13,https://doi.org/10.1007/s10586-013-0249-8 +Haitao Xu,Bus arrival time prediction with real-time and historic data.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#XuY17,https://doi.org/10.1007/s10586-017-1006-1 +Yuan Tian 0004,neCODEC: nearline data compression for scientific applications.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#TianXYVKLB14,https://doi.org/10.1007/s10586-013-0265-8 +Sanghyeok Kim,VNF-EQ: dynamic placement of virtual network functions for energy efficiency and QoS guarantee in NFV.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#KimPKKL17,https://doi.org/10.1007/s10586-017-1004-3 +Sven Karlsson,Priority Based Messaging for Software Distributed Shared Memory.,2003,6,Cluster Computing,2,db/journals/cluster/cluster6.html#KarlssonB03,https://doi.org/10.1023/A:1022808723380 +M. Poongodi,Stochastic model: reCAPTCHA controller based co-variance matrix analysis on frequency distribution using trust evaluation and re-eval by Aumann agreement theorem against DDoS attack in MANET.,2015,18,Cluster Computing,4,db/journals/cluster/cluster18.html#PoongodiB15,https://doi.org/10.1007/s10586-015-0496-y +Sang-Hoon Kim,Mobile image sensors for object detection using color segmentation.,2013,16,Cluster Computing,4,db/journals/cluster/cluster16.html#KimJ13,https://doi.org/10.1007/s10586-013-0267-6 +Lin Yang,Decision-making model based vertical transportation channel for super high-rise construction waste.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#YangHLZ17,https://doi.org/10.1007/s10586-016-0679-1 +Qiyu Liu,The numerical method for the optimal supporting position and related optimal control for the catalytic reaction system.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#LiuZYGL17,https://doi.org/10.1007/s10586-017-0898-0 +Hiro Gabriel Cerqueira Ferreira,Security analysis of a proposed internet of things middleware.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#FerreiraJ17,https://doi.org/10.1007/s10586-017-0729-3 +Zhuowei Wang,Energy cost evaluation of parallel algorithms for multiprocessor systems.,2013,16,Cluster Computing,1,db/journals/cluster/cluster16.html#WangXXYZ13,https://doi.org/10.1007/s10586-011-0188-1 +Javad Akbari Torkestani,A new approach to the job scheduling problem in computational grids.,2012,15,Cluster Computing,3,db/journals/cluster/cluster15.html#Torkestani12,https://doi.org/10.1007/s10586-011-0192-5 +Gemoh Maliva Tihfon,An efficient multi-task PaaS cloud infrastructure based on docker and AWS ECS for application deployment.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#TihfonPKK16,https://doi.org/10.1007/s10586-016-0599-0 +Hyun Mi Jung,A study of android malware detection techniques in virtual environment.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#JungKC16,https://doi.org/10.1007/s10586-016-0630-5 +Jungho Seok,An analysis of science and technology statistics trend and utilization: a case study in Korea.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#SeokKKC15,https://doi.org/10.1007/s10586-015-0445-9 +Gregory J. Follen,A CORBA-Based Distributed Component Environment for Wrapping and Coupling Legacy Scientific Codes.,2002,5,Cluster Computing,3,db/journals/cluster/cluster5.html#FollenKLST02,https://doi.org/10.1023/A:1015798021241 +Keqin Li,Parallel Processing of Divisible Loads on Partitionable Static Interconnection Networks.,2003,6,Cluster Computing,1,db/journals/cluster/cluster6.html#Li03,https://doi.org/10.1023/A:1020967017125 +Xingxing Liu,A novel DBSCAN with entropy and probability for mixed data.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#LiuYH17,https://doi.org/10.1007/s10586-017-0818-3 +Xingfu Wu,Design and Development of a Scalable Distributed Debugger for Cluster Computing.,2002,5,Cluster Computing,4,db/journals/cluster/cluster5.html#WuCS02,https://doi.org/10.1023/A:1019708204283 +Yunsick Sung,Beacon-based active media control interface in indoor ubiquitous computing environment.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#SungJP16,https://doi.org/10.1007/s10586-016-0532-6 +Farag Azzedin,A Synchronous Co-Allocation Mechanism for Grid Computing Systems.,2004,7,Cluster Computing,1,db/journals/cluster/cluster7.html#AzzedinMA04,https://doi.org/10.1023/B:CLUS.0000003942.73875.29 +Changlin Sun,Compositional reasoning of performance in component-based distributed systems.,2008,11,Cluster Computing,4,db/journals/cluster/cluster11.html#SunRTB08,https://doi.org/10.1007/s10586-008-0064-9 +Kyungyong Chung,Improvement of speech signal extraction method using detection filter of energy spectrum entropy.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#ChungO15,https://doi.org/10.1007/s10586-015-0429-9 +Ru Wang,High-performance social networking: microblog community detection based on efficient interactive characteristic clustering.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#WangRC17,https://doi.org/10.1007/s10586-017-0782-y +Liangxiu Han,Parallel data intensive applications using MapReduce: a data mining case study in biomedical sciences.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#HanO15,https://doi.org/10.1007/s10586-014-0405-9 +Shanliang Yang,Adaptive immune genetic algorithm for weapon system portfolio optimization in military big data environment.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#YangYWH16,https://doi.org/10.1007/s10586-016-0596-3 +Hui Zhu,PPAS: privacy protection authentication scheme for VANET.,2013,16,Cluster Computing,4,db/journals/cluster/cluster16.html#ZhuLWL13,https://doi.org/10.1007/s10586-013-0260-0 +Guofei Jiang,Profiling services for resource optimization and capacity planning in distributed systems.,2008,11,Cluster Computing,4,db/journals/cluster/cluster11.html#JiangCY08,https://doi.org/10.1007/s10586-008-0063-x +Michael J. Quinn,Editorial.,1998,1,Cluster Computing,1,db/journals/cluster/cluster1.html#Quinn98,https://doi.org/10.1023/A:1019056609581 +J. Octavio Gutiérrez-García,Agent-based load balancing in Cloud data centers.,2015,18,Cluster Computing,3,db/journals/cluster/cluster18.html#Gutierrez-Garcia15,https://doi.org/10.1007/s10586-015-0460-x +Enis Afgan,Exploiting performance characterization of BLAST in the grid.,2010,13,Cluster Computing,4,db/journals/cluster/cluster13.html#AfganB10,https://doi.org/10.1007/s10586-010-0121-z +Youngjae Kim,An empirical study of redundant array of independent solid-state drives (RAIS).,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#Kim15,https://doi.org/10.1007/s10586-015-0421-4 +Sanghyun Park,Dynamic multimedia transmission control virtual machine using weighted Round-Robin.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#ParkKTRK16,https://doi.org/10.1007/s10586-015-0524-y +Parveen Kumar,A security architecture for attacks detection and authentication in wireless mesh networks.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#KumarMK17,https://doi.org/10.1007/s10586-017-0970-9 +Sourabh Moharil,Load balancing on temporally heterogeneous cluster of workstations for parallel simulated annealing.,2011,14,Cluster Computing,4,db/journals/cluster/cluster14.html#MoharilL11,https://doi.org/10.1007/s10586-010-0148-1 +Athanasia Asiki,Distributing and searching concept hierarchies: an adaptive DHT-based system.,2010,13,Cluster Computing,3,db/journals/cluster/cluster13.html#AsikiTK10,https://doi.org/10.1007/s10586-010-0136-5 +Reza Moraveji,A general mathematical performance model for wormhole-switched irregular networks.,2009,12,Cluster Computing,3,db/journals/cluster/cluster12.html#MoravejiMS09,https://doi.org/10.1007/s10586-009-0084-0 +Alfredo Cuzzocrea,Introduction to special issue: ICISA 2010.,2012,15,Cluster Computing,1,db/journals/cluster/cluster15.html#CuzzocreaLLK12,https://doi.org/10.1007/s10586-011-0190-7 +Jinhui Qin,Job co-allocation strategies for multiple high performance computing clusters.,2009,12,Cluster Computing,3,db/journals/cluster/cluster12.html#QinB09,https://doi.org/10.1007/s10586-009-0087-x +Seyedeh Leili Mirtaheri,Dynamic load balancing in distributed exascale computing systems.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#MirtaheriG17,https://doi.org/10.1007/s10586-017-0902-8 +Andres J. Ramirez,Plato: a genetic algorithm approach to run-time reconfiguration in autonomic computing systems.,2011,14,Cluster Computing,3,db/journals/cluster/cluster14.html#RamirezKCM11,https://doi.org/10.1007/s10586-010-0122-y +Di Li 0001,A big data enabled load-balancing control for smart manufacturing of Industry 4.0.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#LiTWL17,https://doi.org/10.1007/s10586-017-0852-1 +Qinghua Wu,Multi-label classification algorithm research based on swarm intelligence.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#WuLY16,https://doi.org/10.1007/s10586-016-0646-x +Liping Gao,Consistency maintenance of Do and Undo/Redo operations in real-time collaborative bitmap editing systems.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#GaoYCX16,https://doi.org/10.1007/s10586-015-0499-8 +Jung-Kyu Choi,Application of big data analysis with decision tree for the foot disorder.,2015,18,Cluster Computing,4,db/journals/cluster/cluster18.html#ChoiJWK15,https://doi.org/10.1007/s10586-015-0480-6 +Salim Hariri,The Autonomic Computing Paradigm.,2006,9,Cluster Computing,1,db/journals/cluster/cluster9.html#HaririKCYZPL06,https://doi.org/10.1007/s10586-006-4893-0 +Tao Wu,Attack monitoring and localization in All-Optical Networks.,2006,9,Cluster Computing,4,db/journals/cluster/cluster9.html#WuS06,https://doi.org/10.1007/s10586-006-0013-4 +Jean-Pierre Goux,Master-Worker: An Enabling Framework for Applications on the Computational Grid.,2001,4,Cluster Computing,1,db/journals/cluster/cluster4.html#GouxKYL01,https://doi.org/10.1023/A:1011416310759 +Jia Zhao 0003,A heuristic placement selection approach of partitions of mobile applications in mobile cloud computing model based on community collaboration.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#ZhaoOHDX17,https://doi.org/10.1007/s10586-017-1011-4 +Marten van Sinderen,"Editorial for special section of grid computing journal on ""Cloud Computing and Services Science"".",2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#SinderenI15,https://doi.org/10.1007/s10586-014-0379-7 +Taehoon Yoo,A study of row-direction reconstruction algorithm in depth map.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#YooLJHL15,https://doi.org/10.1007/s10586-015-0423-2 +Junaid Shuja,Data center energy efficient resource scheduling.,2014,17,Cluster Computing,4,db/journals/cluster/cluster17.html#ShujaBMK14,https://doi.org/10.1007/s10586-014-0365-0 +Xiaohui Shen,A Distributed Multi-Storage Resource Architecture and I/O Performance Prediction for Scientific Computing.,2003,6,Cluster Computing,3,db/journals/cluster/cluster6.html#ShenCMS03,https://doi.org/10.1023/A:1023584319229 +Atakan Dogan,Genetic Algorithm Based Scheduling of Meta-Tasks with Stochastic Execution Times in Heterogeneous Computing Systemst1.,2004,7,Cluster Computing,2,db/journals/cluster/cluster7.html#DoganO04,https://doi.org/10.1023/B:CLUS.0000018566.13071.cb +Rajani Reddy Gorrepati,Hierarchical semantic information modeling and ontology for bird ecology.,2013,16,Cluster Computing,4,db/journals/cluster/cluster16.html#GorrepatiAK13,https://doi.org/10.1007/s10586-013-0269-4 +Alexander Thomasian,RAID level selection for heterogeneous disk arrays.,2011,14,Cluster Computing,2,db/journals/cluster/cluster14.html#ThomasianX11,https://doi.org/10.1007/s10586-010-0129-4 +Yushan Zhang,First hitting time analysis of continuous evolutionary algorithms based on average gain.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#ZhangHHH16,https://doi.org/10.1007/s10586-016-0587-4 +Kan Xie,A multilayer FOCUSS approach for sparse representation.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#XieSWXL17,https://doi.org/10.1007/s10586-017-0823-6 +Alaa Youssef,The architecture of a middleware layer for controlling the quality of multimedia sessions.,1999,2,Cluster Computing,3,db/journals/cluster/cluster2.html#YoussefAM99,https://doi.org/10.1023/A:1019082810007 +Xiao Chen,Study on similarity based on connection degree in social network.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#ChenGLZ17,https://doi.org/10.1007/s10586-017-0743-5 +Yang Sun Lee,High performance web server architecture with Kernel-level caching.,2013,16,Cluster Computing,3,db/journals/cluster/cluster16.html#LeeBC13,https://doi.org/10.1007/s10586-012-0203-1 +Deepak Eachempati,A Coarray Fortran implementation to support data-intensive application development.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#EachempatiRJLCC14,https://doi.org/10.1007/s10586-013-0302-7 +Seungkeun Lee,Design of hierarchical coordination model for ubiquitous application.,2012,15,Cluster Computing,1,db/journals/cluster/cluster15.html#LeeLL12,https://doi.org/10.1007/s10586-011-0184-5 +Afef Mdhaffar,Reactive performance monitoring of Cloud computing environments.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#MdhaffarHJF17,https://doi.org/10.1007/s10586-016-0676-4 +Martin Wolkerstorfer,Enabling greener DSL access networks by their stabilization with artificial noise and SNR margin.,2013,16,Cluster Computing,3,db/journals/cluster/cluster16.html#WolkerstorferSN13,https://doi.org/10.1007/s10586-012-0206-y +Xuehong Gan,LSMAC vs. LSNAT: Scalable cluster-based Web servers.,2000,3,Cluster Computing,3,db/journals/cluster/cluster3.html#GanSGR00,https://doi.org/10.1023/A:1019084304980 +D. Daniel,Distributed hybrid cloud for profit driven content provisioning using user requirements and content popularity.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#DanielR17,https://doi.org/10.1007/s10586-017-0778-7 +Roy Friedman,Symphony: An Infrastructure for Managing Virtual Servers.,2001,4,Cluster Computing,3,db/journals/cluster/cluster4.html#FriedmanBIS01,https://doi.org/10.1023/A:1011498424351 +Qaisar Ayub,DF++ : an adaptive buffer-aware probabilistic delegation forwarding protocol for Delay Tolerant Network.,2014,17,Cluster Computing,4,db/journals/cluster/cluster17.html#AyubZRA14,https://doi.org/10.1007/s10586-013-0331-2 +Chongmyung Park,Traffic-aware routing protocol for wireless sensor networks.,2012,15,Cluster Computing,1,db/journals/cluster/cluster15.html#ParkKJ12,https://doi.org/10.1007/s10586-010-0146-3 +Shengli Song,Multi-domain ontology mapping based on semantics.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#SongZQ17,https://doi.org/10.1007/s10586-017-1087-x +Min-Cheol Jeon,Evaluation of image reconstruction according to changing physical parameter.,2016,19,Cluster Computing,2,db/journals/cluster/cluster19.html#JeonHJKSKK16,https://doi.org/10.1007/s10586-016-0546-0 +Di Shen,Event energy clustering and evaluation based on shock wave model.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#ShenWL16,https://doi.org/10.1007/s10586-016-0627-0 +Keith D. Underwood,An Analysis of the Cost Effectiveness of an Adaptable Computing Cluster.,2004,7,Cluster Computing,4,db/journals/cluster/cluster7.html#UnderwoodLS04,https://doi.org/10.1023/B:CLUS.0000039495.40522.de +Mi Jung Rho,Factors influencing the acceptance of telemedicine for diabetes management.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#RhoKCC15,https://doi.org/10.1007/s10586-014-0356-1 +Xu Jianxuan,Performance Evaluation of TCP over Optical Channels and Heterogeneous Networks.,2004,7,Cluster Computing,3,db/journals/cluster/cluster7.html#JianxuanLG04,https://doi.org/10.1023/B:CLUS.0000028001.95993.e9 +Rajagopal Subramaniyan,GEMS: Gossip-Enabled Monitoring Service for Scalable Heterogeneous Distributed Systems.,2006,9,Cluster Computing,1,db/journals/cluster/cluster9.html#SubramaniyanRGR06,https://doi.org/10.1007/s10586-006-4900-5 +Sahar Ghazal,Traffic management based on token bucket mechanism for WiMAX networks.,2012,15,Cluster Computing,4,db/journals/cluster/cluster15.html#GhazalBC12,https://doi.org/10.1007/s10586-011-0159-6 +Elias Balafoutis,Clustered Scheduling Algorithms for Mixed-Media Disk Workloads in a Multimedia Server.,2003,6,Cluster Computing,1,db/journals/cluster/cluster6.html#BalafoutisPTNMW03,https://doi.org/10.1023/A:1020923202104 +Mohsin Fayyaz,Performance analysis of optical interconnects' architectures for data center networks.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#FayyazAM16,https://doi.org/10.1007/s10586-016-0592-7 +Lin Yang,The research of organization optimization and overall control mechanism in multi-projects network.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#YangZ17,https://doi.org/10.1007/s10586-017-0856-x +Jianhong Zhang,Efficient public key encryption with revocable keyword search in cloud computing.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#ZhangM16,https://doi.org/10.1007/s10586-016-0584-7 +Yiwei Zhu,Deep data analyzing algorithm based on scale space theory.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#ZhuG17,https://doi.org/10.1007/s10586-016-0677-3 +Yong-Ju Lee,Cell approximation method in quorum systems for minimizing access time.,2009,12,Cluster Computing,4,db/journals/cluster/cluster12.html#LeeKL09,https://doi.org/10.1007/s10586-009-0097-8 +Manish Parashar,Editorial.,2006,9,Cluster Computing,2,db/journals/cluster/cluster9.html#Parashar06,https://doi.org/10.1007/s10586-006-7558-0 +J. Jayanthi,A novel framework to facilitate personalized web search in a dual mode.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#JayanthiS17,https://doi.org/10.1007/s10586-017-1128-5 +Allen B. Downey,A parallel workload model and its implications for processor allocation.,1998,1,Cluster Computing,1,db/journals/cluster/cluster1.html#Downey98,https://doi.org/10.1023/A:1019077214124 +Jiemin Chen,CogTime_RMF: regularized matrix factorization with drifting cognition degree for collaborative filtering.,2016,19,Cluster Computing,2,db/journals/cluster/cluster19.html#ChenTXLHT16,https://doi.org/10.1007/s10586-016-0570-0 +Luping Zhuang,A bi-level optimization for an HVAC system.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#ZhuangCG17,https://doi.org/10.1007/s10586-017-1050-x +Ali Akoglu,Scalable and highly parallel implementation of Smith-Waterman on graphics processing unit using CUDA.,2009,12,Cluster Computing,3,db/journals/cluster/cluster12.html#AkogluS09,https://doi.org/10.1007/s10586-009-0089-8 +Heng He,A fine-grained and lightweight data access control scheme for WSN-integrated cloud computing.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#HeZGHX17,https://doi.org/10.1007/s10586-017-0863-y +Nakhoon Baek,Geometric primitive extraction from LiDAR-scanned point clouds.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#BaekSK17,https://doi.org/10.1007/s10586-017-0759-x +Amirreza Zarrabi,Task scheduling on computational Grids using Gravitational Search Algorithm.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#ZarrabiS14,https://doi.org/10.1007/s10586-013-0338-8 +Ian T. Foster,Editorial.,1999,2,Cluster Computing,2,db/journals/cluster/cluster2.html#Foster99,https://doi.org/10.1023/A:1019066306372 +Adam Barker,The Circulate architecture: avoiding workflow bottlenecks caused by centralised orchestration.,2009,12,Cluster Computing,2,db/journals/cluster/cluster12.html#BarkerWH09a,https://doi.org/10.1007/s10586-009-0083-1 +Michael A. Laurenzano,PEBIL: binary instrumentation for practical data-intensive program analysis.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#LaurenzanoPCTWC15,https://doi.org/10.1007/s10586-013-0307-2 +Irfan Awan,Guest Editorial.,2007,10,Cluster Computing,1,db/journals/cluster/cluster10.html#AwanYT07,https://doi.org/10.1007/s10586-007-0004-0 +Narissara Eiamkanitchat,Fundamental analysis and technical analysis integrated system for stock filtration.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#EiamkanitchatMR17,https://doi.org/10.1007/s10586-016-0694-2 +James Frey,Condor-G: A Computation Management Agent for Multi-Institutional Grids.,2002,5,Cluster Computing,3,db/journals/cluster/cluster5.html#FreyTLFT02,https://doi.org/10.1023/A:1015617019423 +Belgacem Ben Youssef,A parallel cellular automata algorithm for the deterministic simulation of 3-D multicellular tissue growth.,2015,18,Cluster Computing,4,db/journals/cluster/cluster18.html#Youssef15,https://doi.org/10.1007/s10586-015-0455-7 +Xuesong Yan,Hybrid genetic algorithm for engineering design problems.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#YanLZW17,https://doi.org/10.1007/s10586-016-0680-8 +Jelena Pjesivac-Grbovic,Performance analysis of MPI collective operations.,2007,10,Cluster Computing,2,db/journals/cluster/cluster10.html#Pjesivac-GrbovicABFGD07,https://doi.org/10.1007/s10586-007-0012-0 +João Emílio Almeida,Serious games for the human behaviour analysis in emergency evacuation scenarios.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#AlmeidaRJFC17,https://doi.org/10.1007/s10586-017-0765-z +Meng Fansheng,Energy efficiency evaluation method based on multi-model fusion strategy.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#FanshengBDZZ16,https://doi.org/10.1007/s10586-016-0673-7 +Tian Zhuo,Face recognition from a single image per person using deep architecture neural networks.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#Zhuo16,https://doi.org/10.1007/s10586-015-0513-1 +Sanem Arslan,Asymmetrically reliable caches for multicore architectures under performance and energy constraints.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#ArslanTKT16,https://doi.org/10.1007/s10586-016-0641-2 +Hajar Siar,An effective game theoretic static load balancing applied to distributed computing.,2015,18,Cluster Computing,4,db/journals/cluster/cluster18.html#SiarKC15,https://doi.org/10.1007/s10586-015-0486-0 +Warren Smith,An Evaluation of Alternative Designs for a Grid Information Service.,2001,4,Cluster Computing,1,db/journals/cluster/cluster4.html#SmithWMY01,https://doi.org/10.1023/A:1011460125780 +Hongyu Wang,Research on parallelized real-time map matching algorithm for massive GPS data.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#WangLHFMH17,https://doi.org/10.1007/s10586-017-0869-5 +Travis J. Desell,Malleable applications for scalable high performance computing.,2007,10,Cluster Computing,3,db/journals/cluster/cluster10.html#DesellMV07,https://doi.org/10.1007/s10586-007-0032-9 +Jong-Hun Kim,Recent trends on high-performance computing and security.,2013,16,Cluster Computing,2,db/journals/cluster/cluster16.html#KimR13,https://doi.org/10.1007/s10586-013-0271-x +Yanxin Lv,Bonded-cluster simulation of rock-cutting using PFC2D.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#LvLZT17,https://doi.org/10.1007/s10586-017-0808-5 +Fawaz Al Hazemi,LPC \(_\mathrm{FreqSchd}\) : A local power controller using the frequency scheduling approach for virtualized servers.,2016,19,Cluster Computing,2,db/journals/cluster/cluster19.html#Al-HazemiKKPNY16,https://doi.org/10.1007/s10586-016-0562-0 +Rong Wang,Low-complexity PTS PAPR reduction scheme for UFMC systems.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#WangCY17,https://doi.org/10.1007/s10586-017-1124-9 +Carolina Salto,Enhancing distributed EAs by a proactive strategy.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#SaltoLA14,https://doi.org/10.1007/s10586-013-0321-4 +Dan C. Marinescu,An approach for scaling cloud resource management.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#MarinescuPMO17,https://doi.org/10.1007/s10586-016-0700-8 +Wei Gao,Distance learning techniques for ontology similarity measuring and ontology mapping.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#GaoFAH17,https://doi.org/10.1007/s10586-017-0887-3 +Runqun Xiong,Optimizing data placement in heterogeneous Hadoop clusters.,2015,18,Cluster Computing,4,db/journals/cluster/cluster18.html#XiongLD15,https://doi.org/10.1007/s10586-015-0495-z +Zhen You,Unified formal derivation and automatic verification of three binary-tree traversal non-recursive algorithms.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#YouXZ16,https://doi.org/10.1007/s10586-016-0663-9 +Lee Nam Kwon,A study on semantic web design for global national R and D status analysis - Focusing on the use of LOD Cloud.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#KwonCKJK14,https://doi.org/10.1007/s10586-013-0299-y +Hasan Abbasi,DataStager: scalable data staging services for petascale applications.,2010,13,Cluster Computing,3,db/journals/cluster/cluster13.html#AbbasiWEKSZ10,https://doi.org/10.1007/s10586-010-0135-6 +Li Jia,The model and algorithm of distributing cooperation profits among operators of urban rail transit under PPP pattern.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#JiaLZZW17,https://doi.org/10.1007/s10586-017-0973-6 +Antonio Llanes,Dynamic load balancing on heterogeneous clusters for parallel ant colony optimization.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#LlanesCS0AU16,https://doi.org/10.1007/s10586-016-0534-4 +Ali Akoglu,FPGA based distributed self healing architecture for reusable systems.,2009,12,Cluster Computing,3,db/journals/cluster/cluster12.html#AkogluSJ09,https://doi.org/10.1007/s10586-009-0082-2 +Adil M. Hammadi,A framework for SLA management in cloud computing for informed decision making.,2013,16,Cluster Computing,4,db/journals/cluster/cluster16.html#HammadiHDH13,https://doi.org/10.1007/s10586-012-0232-9 +Muhammad Bilal 0003,A secure key agreement protocol for dynamic group.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#BilalK17,https://doi.org/10.1007/s10586-017-0853-0 +Ray Bair,Guest Editorial on Challenges of Large Applications in Distributed Environments (CLADE).,2005,8,Cluster Computing,4,db/journals/cluster/cluster8.html#BairBP05,https://doi.org/10.1007/s10586-005-4091-5 +Janak J. Parekh,Retrofitting Autonomic Capabilities onto Legacy Systems.,2006,9,Cluster Computing,2,db/journals/cluster/cluster9.html#ParekhKGV06,https://doi.org/10.1007/s10586-006-7560-6 +Hyeong-Cheol Ryu,MapReduce-based skyline query processing scheme using adaptive two-level grids.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#RyuJ17,https://doi.org/10.1007/s10586-017-1203-y +Giovanni Chiola,Selected Papers from the IEEE Cluster2000 Conference: Technology and Applications.,2002,5,Cluster Computing,1,db/journals/cluster/cluster5.html#Chiola02,https://doi.org/10.1023/A:1012710302412 +Yong Wang 0005,Improving the performance of GIS polygon overlay computation with MapReduce for spatial big data processing.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#WangLLL15,https://doi.org/10.1007/s10586-015-0428-x +Zakaria Maamar,Enabling ad-hoc collaboration between mobile users in the MESSENGER project.,2007,10,Cluster Computing,1,db/journals/cluster/cluster10.html#MaamarMD07,https://doi.org/10.1007/s10586-007-0009-8 +Héctor Montaner,A new degree of freedom for memory allocation in clusters.,2012,15,Cluster Computing,2,db/journals/cluster/cluster15.html#MontanerSFD12,https://doi.org/10.1007/s10586-010-0150-7 +Sergio Nesmachnow,Holistic multiobjective planning of datacenters powered by renewable energy.,2015,18,Cluster Computing,4,db/journals/cluster/cluster18.html#NesmachnowPG15,https://doi.org/10.1007/s10586-015-0485-1 +Weijia Jia,Object-Oriented Design of QoS Multicast Communications.,2001,4,Cluster Computing,3,db/journals/cluster/cluster4.html#JiaZ01,https://doi.org/10.1023/A:1011446407513 +Aad J. van der Steen,An Evaluation of Some Beowulf Clusters.,2003,6,Cluster Computing,4,db/journals/cluster/cluster6.html#Steen03,https://doi.org/10.1023/A:1025791808283 +Waleed Halboob,A framework to address inconstant user requirements in cloud SLAs management.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#HalboobAKKP15,https://doi.org/10.1007/s10586-014-0408-6 +Byungnam Lim,CATS: cache-aware task scheduling for Hadoop-based systems.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#LimKC17,https://doi.org/10.1007/s10586-017-0920-6 +Jianhong Zhang,IPad: ID-based public auditing for the outsourced data in the standard model.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#ZhangLM16,https://doi.org/10.1007/s10586-015-0511-3 +Josefina Lenis,A performance comparison of data and memory allocation strategies for sequence aligners on NUMA architectures.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#LenisS17,https://doi.org/10.1007/s10586-017-1015-0 +Ziyuan Sun,Machine learning based control rights analysis of critical resources and the optimal ownership for management integration.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#SunZLXLS16,https://doi.org/10.1007/s10586-016-0660-z +Wajdi Louati,Dynamic service deployment in a distributed heterogeneous cluster based router (DHCR).,2008,11,Cluster Computing,4,db/journals/cluster/cluster11.html#LouatiHKZK08,https://doi.org/10.1007/s10586-008-0056-9 +Darren Quick,Big forensic data reduction: digital forensic images and electronic evidence.,2016,19,Cluster Computing,2,db/journals/cluster/cluster19.html#QuickC16,https://doi.org/10.1007/s10586-016-0553-1 +Luu Ngoc Do,A multi-voxel-activity-based feature selection method for human cognitive states classification by functional magnetic resonance imaging data.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#DoYKLK15,https://doi.org/10.1007/s10586-014-0369-9 +Yiu-Fai Sit,Cyclone: A High-Performance Cluster-Based Web Server with Socket Cloning.,2004,7,Cluster Computing,1,db/journals/cluster/cluster7.html#SitWL04,https://doi.org/10.1023/B:CLUS.0000003941.07598.47 +Ranran Liu,Adaptive filtering for intelligent sensing speech based on multi-rate LMS algorithm.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#LiuXZJ17,https://doi.org/10.1007/s10586-017-0871-y +A. R. Shajina,A novel dual authentication protocol (DAP) for multi-owners in cloud computing.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#ShajinaV17,https://doi.org/10.1007/s10586-017-0774-y +Ray Bittner,Direct GPU/FPGA communication Via PCI express.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#BittnerRF14,https://doi.org/10.1007/s10586-013-0280-9 +Daniel Jünger,Speed and accuracy improvement of higher-order epistasis detection on CUDA-enabled GPUs.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#JungerHGS17,https://doi.org/10.1007/s10586-017-0938-9 +Matchy J. M. Ma,Delta Execution: A preemptive Java thread migration mechanism.,2000,3,Cluster Computing,2,db/journals/cluster/cluster3.html#MaWL00,https://doi.org/10.1023/A:1019071902255 +Yongseong Cho,Towards an integrated management system based on abstraction of heterogeneous virtual resources.,2014,17,Cluster Computing,4,db/journals/cluster/cluster17.html#ChoCCL14,https://doi.org/10.1007/s10586-014-0391-y +Chao Yang,A grid based simulation environment for agent-based models with vast parameter spaces.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#YangJOKT16,https://doi.org/10.1007/s10586-015-0500-6 +Hye-Kyung Choi,Development of effective pre-visualization authoring tool using conversion technologies - based on film storyboard application.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#ChoiC14,https://doi.org/10.1007/s10586-013-0303-6 +Teddy Surya Gunawan,Performance Analysis of a Myrinet-Based Cluster.,2003,6,Cluster Computing,4,db/journals/cluster/cluster6.html#GunawanC03,https://doi.org/10.1023/A:1025709825121 +André Monteiro,Sky Computing: exploring the aggregated Cloud resources.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#MonteiroTP17,https://doi.org/10.1007/s10586-017-0727-5 +Shweta Sinha,Adaptive System Sensitive Partitioning of AMR Applications on Heterogeneous Clusters.,2002,5,Cluster Computing,4,db/journals/cluster/cluster5.html#SinhaP02,https://doi.org/10.1023/A:1019786403374 +Haibin Cong,The research on the mechanism and spatial-temporal differentiation of the coupling coordination development based on industrial cluster agglomeration.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#CongZ17,https://doi.org/10.1007/s10586-017-0758-y +Md Shohidul Islam,GPU-based fast error recovery for high speed data communication in media technology.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#IslamK15,https://doi.org/10.1007/s10586-013-0319-y +Jiyuan Shi,Elastic resource provisioning for scientific workflow scheduling in cloud under budget and deadline constraints.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#ShiLDZZ16,https://doi.org/10.1007/s10586-015-0530-0 +Mihaela-Catalina Nita,MOMTH: multi-objective scheduling algorithm of many tasks in Hadoop.,2015,18,Cluster Computing,3,db/journals/cluster/cluster18.html#NitaPVDX15,https://doi.org/10.1007/s10586-015-0454-8 +Adnan Agbaria,Starfish: Fault-Tolerant Dynamic MPI Programs on Clusters of Workstations.,2003,6,Cluster Computing,3,db/journals/cluster/cluster6.html#AgbariaF03,https://doi.org/10.1023/A:1023540604208 +Suresh Chalasani,Parallel FFT on ATM-based networks of workstations.,1998,1,Cluster Computing,1,db/journals/cluster/cluster1.html#ChalasaniR98,https://doi.org/10.1023/A:1019008726420 +Lei Zhang,A novel fingerprinting using channel state information with MIMO-OFDM.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#ZhangDZHWZ17,https://doi.org/10.1007/s10586-017-1072-4 +Jeongmin Park,An autonomic control system for high-reliable CPS.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#ParkLYK15,https://doi.org/10.1007/s10586-014-0414-8 +Cauligi S. Raghavendra,Editorial.,1998,1,Cluster Computing,2,db/journals/cluster/cluster1.html#Raghavendra98,https://doi.org/10.1023/A:1019029330963 +AlAlaa N. Tashkandi,Cloud computing adoption by higher education institutions in Saudi Arabia: an exploratory study.,2015,18,Cluster Computing,4,db/journals/cluster/cluster18.html#TashkandiA15,https://doi.org/10.1007/s10586-015-0490-4 +Luciana Bezerra Arantes,An Effective Logical Cache for a Clustered LRC-Based DSM System.,2002,5,Cluster Computing,1,db/journals/cluster/cluster5.html#ArantesSF02,https://doi.org/10.1023/A:1012736520159 +IlKyu Yoon,The analysis and application of an educational programming language (RUR-PLE) for a pre-introductory computer science course.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#YoonKL16,https://doi.org/10.1007/s10586-016-0540-6 +Lei Gan,Coupling analysis of hydraulic fracturing computation base on element-free method.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#GanZZT17,https://doi.org/10.1007/s10586-017-1048-4 +John Strassner,The design of a novel context-aware policy model to support machine-based learning and reasoning.,2009,12,Cluster Computing,1,db/journals/cluster/cluster12.html#StrassnerSRSDB09,https://doi.org/10.1007/s10586-008-0069-4 +Dan Liao,The framework and algorithm for preserving user trajectory while using location-based services in IoT-cloud systems.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#LiaoSLYC17,https://doi.org/10.1007/s10586-017-0986-1 +Peter Triantafillou,Continuous Data Block Placement in and Elevation from Tertiary Storage in Hierarchical Storage Servers.,2001,4,Cluster Computing,2,db/journals/cluster/cluster4.html#TriantafillouP01,https://doi.org/10.1023/A:1011477100616 +Mohsen Guizani,Guest Editorial on Advances in Optical Network Switching and Routing.,2004,7,Cluster Computing,3,db/journals/cluster/cluster7.html#GuizaniG04,https://doi.org/10.1023/B:CLUS.0000028053.27939.fc +Yu-Kwong Kwok,Link contention-constrained scheduling and mapping of tasks and messages to a network of heterogeneous processors.,2000,3,Cluster Computing,2,db/journals/cluster/cluster3.html#KwokA00,https://doi.org/10.1023/A:1019076003163 +Kinam Park,Acquiring lexical knowledge using raw corpora and unsupervised clustering method.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#ParkL14,https://doi.org/10.1007/s10586-013-0306-3 +Xiaoyun Zhu,1000 islands: an integrated approach to resource management for virtualized data centers.,2009,12,Cluster Computing,1,db/journals/cluster/cluster12.html#ZhuYWWRSMHGGCC09,https://doi.org/10.1007/s10586-008-0067-6 +Yoon-Su Jeong,High-dimentional data authentication protocol based on hash chain for Hadoop systems.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#JeongSH16,https://doi.org/10.1007/s10586-015-0508-y +Wei Wang 0061,A cognition graph approach for insights generation from event sequences.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#WangZWGZ17,https://doi.org/10.1007/s10586-017-0744-4 +Moufida Maimour,DyRAM: An Active Reliable Multicast Framework for Data Distribution.,2004,7,Cluster Computing,2,db/journals/cluster/cluster7.html#MaimourP04,https://doi.org/10.1023/B:CLUS.0000018565.91711.6a +Kichang Kim,IP traceback with sparsely-tagged fragment marking scheme under massively multiple attack paths.,2013,16,Cluster Computing,2,db/journals/cluster/cluster16.html#KimKH13,https://doi.org/10.1007/s10586-011-0186-3 +Hyoung-Gook Kim,Robust audio fingerprinting using peak-pair-based hash of non-repeating foreground audio in a real environment.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#KimCK16,https://doi.org/10.1007/s10586-015-0523-z +Fereydoun Farrahi Moghaddam,Carbon-aware distributed cloud: multi-level grouping genetic algorithm.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#MoghaddamMC15,https://doi.org/10.1007/s10586-014-0359-y +Xiaoying Wang,An autonomic provisioning framework for outsourcing data center based on virtual appliances.,2008,11,Cluster Computing,3,db/journals/cluster/cluster11.html#WangDCLLWC08,https://doi.org/10.1007/s10586-008-0053-z +Masato Oguchi,Optimizing transport protocol parameters for large scale PC cluster and its evaluation with parallel data mining.,2000,3,Cluster Computing,1,db/journals/cluster/cluster3.html#OguchiK00,https://doi.org/10.1023/A:1019007615458 +Clovis Chapman,Software architecture definition for on-demand cloud provisioning.,2012,15,Cluster Computing,2,db/journals/cluster/cluster15.html#ChapmanEMCG12,https://doi.org/10.1007/s10586-011-0152-0 +Javad Akbari Torkestani,A mobility-based cluster formation algorithm for wireless mobile ad-hoc networks.,2011,14,Cluster Computing,4,db/journals/cluster/cluster14.html#TorkestaniM11,https://doi.org/10.1007/s10586-011-0161-z +Victoria Ungureanu,Deferred Assignment Scheduling in Cluster-Based Servers.,2006,9,Cluster Computing,1,db/journals/cluster/cluster9.html#UngureanuMKB06,https://doi.org/10.1007/s10586-006-4897-9 +Qiyuan Gong,A framework for utility enhanced incomplete microdata anonymization.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#GongYCWL17,https://doi.org/10.1007/s10586-017-0795-6 +Zeng Zeng,Operational cost-aware resource provisioning for continuous write applications in cloud-of-clouds.,2016,19,Cluster Computing,2,db/journals/cluster/cluster19.html#ZengHVT16,https://doi.org/10.1007/s10586-016-0543-3 +Javier Plaza,Parallel morphological/neural processing of hyperspectral images using heterogeneous and homogeneous platforms.,2008,11,Cluster Computing,1,db/journals/cluster/cluster11.html#PlazaPPMV08,https://doi.org/10.1007/s10586-007-0048-1 +Hui Zhang,Safety verification of finite real-time nonlinear hybrid systems using enhanced group preserving scheme.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#ZhangWLT16,https://doi.org/10.1007/s10586-016-0652-z +Juan Du 0004,Clustering and ontology-based information integration framework for surface subsidence risk mitigation in underground tunnels.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#DuHS16,https://doi.org/10.1007/s10586-016-0631-4 +Lior Amar,The MOSIX Direct File System Access Method for Supporting Scalable Cluster File Systems.,2004,7,Cluster Computing,2,db/journals/cluster/cluster7.html#AmarBS04,https://doi.org/10.1023/B:CLUS.0000018563.68085.4b +Chadi Assi,Performance Evaluation of Shared Mesh Protection in WDM Networks.,2004,7,Cluster Computing,3,db/journals/cluster/cluster7.html#AssiKGSA04,https://doi.org/10.1023/B:CLUS.0000028005.97093.ec +Hyung Soo Lee,A configuration scheme for connectivity-aware mobile P2P networks for efficient mobile cloud-based video streaming services.,2013,16,Cluster Computing,4,db/journals/cluster/cluster16.html#LeeLK13,https://doi.org/10.1007/s10586-013-0257-8 +Noppachai Anupongpaibool,Load balancing and optimization of distributed proximity effect correction on a temporally heterogeneous cluster.,2011,14,Cluster Computing,4,db/journals/cluster/cluster14.html#AnupongpaiboolL11,https://doi.org/10.1007/s10586-011-0183-6 +Driss Benhaddou,Photonic Switching Techniques and Architecture for Next Generation Optical Networks.,2004,7,Cluster Computing,3,db/journals/cluster/cluster7.html#BenhaddouC04,https://doi.org/10.1023/B:CLUS.0000028006.55610.61 +Alessandro Ferreira Leite,An architecture for P2P bag-of-tasks execution with multiple task allocation policies in desktop grids.,2012,15,Cluster Computing,4,db/journals/cluster/cluster15.html#LeiteMLMB12,https://doi.org/10.1007/s10586-011-0154-y +Bin Yang,Localization algorithm in wireless sensor networks based on semi-supervised manifold learning and its application.,2010,13,Cluster Computing,4,db/journals/cluster/cluster13.html#YangXYL10,https://doi.org/10.1007/s10586-009-0118-7 +Seong-Taek Park,Factors affecting the continuous use of cloud service: focused on security risks.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#ParkPSL16,https://doi.org/10.1007/s10586-015-0516-y +Yong Wang 0005,HBase storage schemas for massive spatial vector data.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#WangLLL17,https://doi.org/10.1007/s10586-017-1253-1 +Lydia Y. Chen,What to expect when you are consolidating: effective prediction models of application performance on multicores.,2014,17,Cluster Computing,1,db/journals/cluster/cluster17.html#ChenSASB14,https://doi.org/10.1007/s10586-013-0273-8 +Yizhi Liu,A zero-watermarking scheme with embedding *tamp in vector maps for Big Data computing.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#LiuYGDS17,https://doi.org/10.1007/s10586-017-1251-3 +Youngki Kim,Establishing the importance weight of appropriability mechanism by using AHP: the case of the China's electronic industry.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#KimKPJ16,https://doi.org/10.1007/s10586-016-0608-3 +Ekow J. Otoo,Impact of Admission and Cache Replacement Policies on Response Times of Jobs on Data Grids.,2005,8,Cluster Computing,4,db/journals/cluster/cluster8.html#OtooRS05,https://doi.org/10.1007/s10586-005-4096-0 +DongBum Seo,Cloud infrastructure for ubiquitous M2M and IoT environment mobile application.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#SeoJJL15,https://doi.org/10.1007/s10586-014-0415-7 +Jing Xiao 0004,Exploiting global redundancy in big surveillance video data for efficient coding.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#XiaoLHCH15,https://doi.org/10.1007/s10586-015-0434-z +Minseo Kang,An experimental analysis of limitations of MapReduce for iterative algorithms on Spark.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#KangL17,https://doi.org/10.1007/s10586-017-1167-y +Yanjun Li,A parallel text document clustering algorithm based on neighbors.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#LiLC15,https://doi.org/10.1007/s10586-015-0450-z +Ilgu Cho,Technological-level evaluation using patent statistics: model and application in mobile communications.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#ChoP15,https://doi.org/10.1007/s10586-014-0368-x +Xiaoqing Zuo,The atmospheric disturbance correction model in slope deformation monitoring using IBIS-L system.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#ZuoYZX16,https://doi.org/10.1007/s10586-016-0664-8 +Gabriel Antoniu,Combining data sharing with the master-worker paradigm in the common component architecture.,2007,10,Cluster Computing,3,db/journals/cluster/cluster10.html#AntoniuBJPP07,https://doi.org/10.1007/s10586-007-0034-7 +Ning An,Storing spatial data on a network of workstations.,1999,2,Cluster Computing,4,db/journals/cluster/cluster2.html#AnLQSK99,https://doi.org/10.1023/A:1019047229571 +Hui Li,A visualization method for multi-relation in dataset.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#LiCHMD17,https://doi.org/10.1007/s10586-017-0780-0 +Xiu Zhang,Shift based adaptive differential evolution for PID controller designs using swarm intelligence algorithm.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#ZhangZ17,https://doi.org/10.1007/s10586-016-0683-5 +Teruyoshi Zenmyo,A self-healing technique using reusable component-level operation knowledge.,2007,10,Cluster Computing,4,db/journals/cluster/cluster10.html#ZenmyoYK07,https://doi.org/10.1007/s10586-007-0025-8 +Hoill Jung,Sequential pattern profiling based bio-detection for smart health service.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#JungC15,https://doi.org/10.1007/s10586-014-0370-3 +Srdjan Capkun,GPS-free Positioning in Mobile Ad Hoc Networks.,2002,5,Cluster Computing,2,db/journals/cluster/cluster5.html#CapkunHH02,https://doi.org/10.1023/A:1013933626682 +Dae-Won Park,Syntactic-level integration and display of multiple domains' S-100-based data for e-navigation.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#ParkP17,https://doi.org/10.1007/s10586-017-0754-2 +Enzo Mingozzi,QoS Support by the HiperLAN/2 MAC Protocol: A Performance Evaluation.,2002,5,Cluster Computing,2,db/journals/cluster/cluster5.html#Mingozzi02,https://doi.org/10.1023/A:1013981509844 +Baker Abdalhaq,Between classical and ideal: enhancing wildland fire prediction using cluster computing.,2006,9,Cluster Computing,3,db/journals/cluster/cluster9.html#AbdalhaqCMBL06,https://doi.org/10.1007/s10586-006-9745-4 +Leewen Lin,Distributed volume morphing.,1999,2,Cluster Computing,3,db/journals/cluster/cluster2.html#LinLL99,https://doi.org/10.1023/A:1019039027754 +Mohammad Shojafar,FUGE: A joint meta-heuristic approach to cloud job scheduling algorithm using fuzzy theory and a genetic method.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#ShojafarJAC15,https://doi.org/10.1007/s10586-014-0420-x +Nils Knafla,An adaptable multithreaded prefetching technique for client-server object bases.,1998,1,Cluster Computing,1,db/journals/cluster/cluster1.html#Knafla98,https://doi.org/10.1023/A:1019060810490 +Xiao Wei,A multi-level text representation model within background knowledge based on human cognitive process for big data analysis.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#WeiZZL16,https://doi.org/10.1007/s10586-016-0616-3 +Roberto R. Expósito,FastMPJ: a scalable and efficient Java message-passing library.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#ExpositoRTTD14,https://doi.org/10.1007/s10586-014-0345-4 +Eun-Mi Park,The effects of leadership by types of soccer instruction on big data analysis.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#ParkSK16,https://doi.org/10.1007/s10586-016-0609-2 +Sujuan Li,Efficient leakage-resilient public key encryption from DDH assumption.,2013,16,Cluster Computing,4,db/journals/cluster/cluster16.html#LiZSS13,https://doi.org/10.1007/s10586-013-0253-z +Min Li,SparkBench: a spark benchmarking suite characterizing large-scale in-memory data analytics.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#LiTWZS17,https://doi.org/10.1007/s10586-016-0723-1 +Samia Loucif,A queueing model for predicting message latency in uni-directional k -ary n -cubes with deterministic routing and non-uniform traffic.,2007,10,Cluster Computing,2,db/journals/cluster/cluster10.html#LoucifOM07,https://doi.org/10.1007/s10586-007-0021-z +Reihane Abdolazimi,Connected components of big graphs in fixed MapReduce rounds.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#AbdolazimiNS17,https://doi.org/10.1007/s10586-016-0713-3 +H. Anandakumar,Supervised machine learning techniques in cognitive radio networks during cooperative spectrum handovers.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#AnandakumarU17,https://doi.org/10.1007/s10586-017-0798-3 +,Guest Editorial on Cluster Computing in the Internet.,2004,7,Cluster Computing,1,db/journals/cluster/cluster7.html#X04,https://doi.org/10.1023/B:CLUS.0000004028.17653.cb +Debasish Ghose,Foreword (Special Issue of Cluster Computing on Divisible Load Scheduling.,2003,6,Cluster Computing,1,db/journals/cluster/cluster6.html#GhoseR03,https://doi.org/10.1023/A:1020902731238 +Ripal Nathuji,Providing platform heterogeneity-awareness for data center power management.,2008,11,Cluster Computing,3,db/journals/cluster/cluster11.html#NathujiIGS08,https://doi.org/10.1007/s10586-008-0054-y +Wei Gao,Ontology algorithm using singular value decomposition and applied in multidisciplinary.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#GaoGW16,https://doi.org/10.1007/s10586-016-0651-0 +Simon Delamare,SpeQuloS: a QoS service for hybrid and elastic computing infrastructures.,2014,17,Cluster Computing,1,db/journals/cluster/cluster17.html#DelamareFKL14,https://doi.org/10.1007/s10586-013-0283-6 +Chao-Tung Yang,The implementation of a cloud city traffic state assessment system using a novel big data architecture.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#YangCY17,https://doi.org/10.1007/s10586-017-0846-z +Binbin Yong,Parallel GPU-based collision detection of irregular vessel wall for massive particles.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#YongSSCZ17,https://doi.org/10.1007/s10586-017-0741-7 +Tzu-Chi Huang,Adaptive Combiner for MapReduce on cloud computing.,2014,17,Cluster Computing,4,db/journals/cluster/cluster17.html#HuangCLH14,https://doi.org/10.1007/s10586-014-0362-3 +Thomas Kunz,Concurrent single stepping in event-visualization tools.,2000,3,Cluster Computing,3,db/journals/cluster/cluster3.html#KunzK00,https://doi.org/10.1023/A:1019092506798 +Aisha Siddiqa,SmallClient for big data: an indexing framework towards fast data retrieval.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#SiddiqaKC17,https://doi.org/10.1007/s10586-016-0712-4 +Xiang Li,Performance optimization algorithm of radar signal processing system.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#LiD17,https://doi.org/10.1007/s10586-016-0710-6 +Bikram Sengupta,Tracking transaction footprints for non-intrusive end-to-end monitoring.,2009,12,Cluster Computing,1,db/journals/cluster/cluster12.html#SenguptaBBH09,https://doi.org/10.1007/s10586-008-0066-7 +Karel Frajták,Exploratory testing supported by automated reengineering of model of the system under test.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#FrajtakBJ17,https://doi.org/10.1007/s10586-017-0773-z +Sanjeev Baskiyar,Energy aware DAG scheduling on heterogeneous systems.,2010,13,Cluster Computing,4,db/journals/cluster/cluster13.html#BaskiyarA10,https://doi.org/10.1007/s10586-009-0119-6 +Carlos M. Toledo,Similarity (range and kNN) queries processing on an Intel Xeon Phi coprocessor.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#ToledoBA16,https://doi.org/10.1007/s10586-015-0515-z +Qiang Zou,Reexamining anomaly temporal behaviors in SPEC CPU workloads: self-similar or not?,2014,17,Cluster Computing,4,db/journals/cluster/cluster17.html#Zou14,https://doi.org/10.1007/s10586-014-0380-1 +Seung-Ho Kang,A feature selection approach to find optimal feature subsets for the network intrusion detection system.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#KangK16,https://doi.org/10.1007/s10586-015-0527-8 +Patrick Geoffray,A Software Suite for High-Performance Communications on Clusters of SMPs.,2002,5,Cluster Computing,4,db/journals/cluster/cluster5.html#GeoffrayPT02,https://doi.org/10.1023/A:1019756120212 +Mainak Chatterjee,WCA: A Weighted Clustering Algorithm for Mobile Ad Hoc Networks.,2002,5,Cluster Computing,2,db/journals/cluster/cluster5.html#ChatterjeeDT02,https://doi.org/10.1023/A:1013941929408 +Xiao Liang,Dynamic path planning based on improved boundary value problem for unmanned aerial vehicle.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#LiangMLC16,https://doi.org/10.1007/s10586-016-0650-1 +Vasa Curcin,Analysing scientific workflows with Computational Tree Logic.,2009,12,Cluster Computing,4,db/journals/cluster/cluster12.html#CurcinGG09,https://doi.org/10.1007/s10586-009-0099-6 +Ying Xie,An immune-inspired political boycotts action prediction paradigm.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#XieCP17,https://doi.org/10.1007/s10586-017-0830-7 +Emiliano Casalicchio,Content-Aware Dispatching Algorithms for Cluster-Based Web Servers.,2002,5,Cluster Computing,1,db/journals/cluster/cluster5.html#CasalicchioCC02,https://doi.org/10.1023/A:1012796706047 +Dongmin Seo,Development of Korean spine database and ontology for realizing e-Spine.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#SeoJSKL14,https://doi.org/10.1007/s10586-013-0344-x +Douglas Thain,Multiple Bypass: Interposition Agents for Distributed Computing.,2001,4,Cluster Computing,1,db/journals/cluster/cluster4.html#ThainL01,https://doi.org/10.1023/A:1011412209850 +ByungRae Cha,Availability analysis and case study of mobile-OTP key generation using skip sampling of voice.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#ChaPK16,https://doi.org/10.1007/s10586-016-0666-6 +James Won-Ki Hong,Design and implementation of a distributed multimedia collaborative environment.,1999,2,Cluster Computing,1,db/journals/cluster/cluster2.html#HongSKKS99,https://doi.org/10.1023/A:1019058104555 +Yanbin Wu,Spatial-temporal allocation of regional land consolidation project based on landscape pattern and system dynamics.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#WuLLZLW17,https://doi.org/10.1007/s10586-017-1028-8 +Boris M. Chernyavsky,The Rutgers Computational Grid: A Distributed Linux PC Cluster.,2003,6,Cluster Computing,3,db/journals/cluster/cluster6.html#ChernyavskyGKLP03,https://doi.org/10.1023/A:1023544721955 +Nakhoon Baek,Emulating OpenGL ES 2.0 over the desktop OpenGL.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#BaekY15,https://doi.org/10.1007/s10586-014-0351-6 +Jinghui Zhang,A comparison of utility-oriented algorithms for scheduling parallel tasks in multi-cluster grid.,2009,12,Cluster Computing,4,db/journals/cluster/cluster12.html#ZhangL09,https://doi.org/10.1007/s10586-009-0100-4 +Randal C. Burns,Scalable Session Locking for a Distributed File System.,2001,4,Cluster Computing,4,db/journals/cluster/cluster4.html#BurnsRSL01,https://doi.org/10.1023/A:1011860527389 +Wenbing Zhao 0001,Design and Implementation of a Pluggable Fault-Tolerant CORBA Infrastructure.,2004,7,Cluster Computing,4,db/journals/cluster/cluster7.html#ZhaoMM04,https://doi.org/10.1023/B:CLUS.0000039492.80219.e5 +Jianzhe Tai,SLA-aware data migration in a shared hybrid storage cluster.,2015,18,Cluster Computing,4,db/journals/cluster/cluster18.html#TaiSYM15,https://doi.org/10.1007/s10586-015-0461-9 +Xiang Li,Coded-exposure camera and its circuits design.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#LiS17,https://doi.org/10.1007/s10586-017-0964-7 +Adam Barker,The Circulate architecture: avoiding workflow bottlenecks caused by centralised orchestration.,2009,12,Cluster Computing,2,db/journals/cluster/cluster12.html#BarkerWH09,https://doi.org/10.1007/s10586-009-0072-4 +Senthil Sengodan,A shared buffer architecture for interactive VOD servers.,1999,2,Cluster Computing,1,db/journals/cluster/cluster2.html#SengodanL99,https://doi.org/10.1023/A:1019002019576 +Hyuck Han,Performance evaluation of a remote memory system with commodity hardware for large-memory data processing.,2011,14,Cluster Computing,4,db/journals/cluster/cluster14.html#HanJKY11,https://doi.org/10.1007/s10586-011-0164-9 +Esmail Asyabi,Kani: a QoS-aware hypervisor-level scheduler for cloud computing environments.,2016,19,Cluster Computing,2,db/journals/cluster/cluster19.html#AsyabiADKSA16,https://doi.org/10.1007/s10586-016-0541-5 +Gonzalo Hernández,Heuristic quadratic approximation for the universality theorem.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#HernandezPS14,https://doi.org/10.1007/s10586-013-0312-5 +Ill-Woo Park,Teachers' views on the use of robots and cloud services in education for sustainable development.,2016,19,Cluster Computing,2,db/journals/cluster/cluster19.html#ParkH16,https://doi.org/10.1007/s10586-016-0558-9 +Im Young Jung,Distributed Electronic Commerce cluster for small enterprise.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#JungCEY14,https://doi.org/10.1007/s10586-013-0334-z +Arijit Ganguly,Improving peer connectivity in wide-area overlays of virtual workstations.,2009,12,Cluster Computing,2,db/journals/cluster/cluster12.html#GangulyBWF09,https://doi.org/10.1007/s10586-009-0075-1 +Hye-Young Kim,An energy-efficient load balancing scheme to extend lifetime in wireless sensor networks.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#Kim16,https://doi.org/10.1007/s10586-015-0526-9 +Weiwei Zheng,SPSRG: a prediction approach for correlated failures in distributed computing systems.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#ZhengWHMQ16,https://doi.org/10.1007/s10586-016-0633-2 +Dennis Gannon,On Building Parallel and Grid Applications: Component Technology and Distributed Services.,2005,8,Cluster Computing,4,db/journals/cluster/cluster8.html#GannonKFKSS05,https://doi.org/10.1007/s10586-005-4094-2 +Zhenjun Jin,A novel cloud scheduling algorithm optimization for energy consumption of data centres based on user QoS priori knowledge under the background of WSN and mobile communication.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#JinXLL17,https://doi.org/10.1007/s10586-017-0870-z +Guofei Jiang,Ranking the importance of alerts for problem determination in large computer systems.,2011,14,Cluster Computing,3,db/journals/cluster/cluster14.html#JiangCYS11,https://doi.org/10.1007/s10586-010-0120-0 +Yifeng Zhu,Exploiting redundancy to boost performance in a RAID-10 style cluster-based file system.,2006,9,Cluster Computing,4,db/journals/cluster/cluster9.html#ZhuJQFS06,https://doi.org/10.1007/s10586-006-0011-6 +Hemanta Kumar Bhuyan,Privacy preserving sub-feature selection based on fuzzy probabilities.,2014,17,Cluster Computing,4,db/journals/cluster/cluster17.html#BhuyanK14,https://doi.org/10.1007/s10586-014-0393-9 +Dan Chen 0001,Towards energy-efficient parallel analysis of neural signals.,2013,16,Cluster Computing,1,db/journals/cluster/cluster16.html#ChenLT0WTCL13,https://doi.org/10.1007/s10586-011-0175-6 +Yun-chuan Yang,The big data analysis of land use evolution and its ecological security responses in Silver Beach of China by the clustering of spatial patterns.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#YangLYHHX16,https://doi.org/10.1007/s10586-016-0659-5 +Jörg Nolte,Parallel Sequence Matching with TACO?s Distributed Object Groups - A Case Study from Molecular Biology.,2001,4,Cluster Computing,1,db/journals/cluster/cluster4.html#NolteH01,https://doi.org/10.1023/A:1011468427597 +Santi Caballé,Distributed-based massive processing of activity logs for efficient user modeling in a Virtual Campus.,2013,16,Cluster Computing,4,db/journals/cluster/cluster16.html#CaballeX13,https://doi.org/10.1007/s10586-013-0256-9 +Kashif Bilal,Power-aware resource allocation in computer clusters using dynamic threshold voltage scaling and dynamic voltage scaling: comparison and analysis.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#BilalFKU15,https://doi.org/10.1007/s10586-015-0437-9 +Evangelos Koukis,GMBlock: Optimizing data movement in a block-level storage sharing system over Myrinet.,2010,13,Cluster Computing,4,db/journals/cluster/cluster13.html#KoukisNK10,https://doi.org/10.1007/s10586-009-0106-y +Kyunghun Jang,Connection re-routing method for QoS guarantee in the ATM-based wired/wireless integrated network.,1998,1,Cluster Computing,2,db/journals/cluster/cluster1.html#JangK98,https://doi.org/10.1023/A:1019041700921 +Feng Zhang 0013,A distributed frequent itemset mining algorithm using Spark for Big Data analytics.,2015,18,Cluster Computing,4,db/journals/cluster/cluster18.html#ZhangLGSSM15,https://doi.org/10.1007/s10586-015-0477-1 +Christoforos Kachris,Power consumption evaluation of all-optical data center networks.,2013,16,Cluster Computing,3,db/journals/cluster/cluster16.html#KachrisT13,https://doi.org/10.1007/s10586-012-0227-6 +Bharadwaj Veeravalli,Scheduling Divisible Loads with Processor Release Times and Finite Size Buffer Capacity Constraints in Bus Networks.,2003,6,Cluster Computing,1,db/journals/cluster/cluster6.html#BharadwajB03,https://doi.org/10.1023/A:1020971118034 +Albert Y. Zomaya,Sequential and Parallel Meta-Heuristics for Solving the Single Row Routing Problem.,2004,7,Cluster Computing,2,db/journals/cluster/cluster7.html#ZomayaPO04,https://doi.org/10.1023/B:CLUS.0000018562.79898.9c +K. P. Swaraj,A fast approach to identify trending articles in hot topics from XML based big bibliographic datasets.,2016,19,Cluster Computing,2,db/journals/cluster/cluster19.html#SwarajM16,https://doi.org/10.1007/s10586-016-0561-1 +Zhenzhen Ge,Second-order continuous characteristic model based adaptive control for a class of linear systems.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#GeZ17,https://doi.org/10.1007/s10586-017-0827-2 +Raghupathy Sivakumar,Spine routing in ad hoc networks.,1998,1,Cluster Computing,2,db/journals/cluster/cluster1.html#SivakumarDB98,https://doi.org/10.1023/A:1019045801829 +Vladimir M. Vishnevsky,IEEE 802.11 Wireless LAN: Saturation Throughput Analysis with Seizing Effect Consideration.,2002,5,Cluster Computing,2,db/journals/cluster/cluster5.html#VishnevskyL02,https://doi.org/10.1023/A:1013977425774 +Rodrigo Fernandes de Mello,Comparative study of the server-initiated lowest algorithm using a load balancing index based on the process behavior for heterogeneous environment.,2006,9,Cluster Computing,3,db/journals/cluster/cluster9.html#MelloTPY06,https://doi.org/10.1007/s10586-006-9743-6 +Fred Kuhns,Supporting high-performance I/O in QoS-enabled ORB middleware.,2000,3,Cluster Computing,3,db/journals/cluster/cluster3.html#KuhnsLSO00,https://doi.org/10.1023/A:1019032220910 +Céline Boutrous-Saab,PHOENIX: A Self Adaptable Monitoring Platform for Cluster Management.,2002,5,Cluster Computing,1,db/journals/cluster/cluster5.html#SaabBF02,https://doi.org/10.1023/A:1012748806955 +Wassim Itani,SNUAGE: an efficient platform-as-a-service security framework for the cloud.,2013,16,Cluster Computing,4,db/journals/cluster/cluster16.html#ItaniKC13,https://doi.org/10.1007/s10586-012-0223-x +Wei Xing,A network approach for managing and processing big cancer data in clouds.,2015,18,Cluster Computing,3,db/journals/cluster/cluster18.html#XingJTG15,https://doi.org/10.1007/s10586-015-0456-6 +Li Liu 0001,Algorithms for energy efficient mobile object tracking in wireless sensor networks.,2010,13,Cluster Computing,2,db/journals/cluster/cluster13.html#LiuHL10,https://doi.org/10.1007/s10586-009-0108-9 +Xiujie Xu,Expansion slot backfill scheduling for concurrent workflows with deadline on heterogeneous resources.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#XuXTS17,https://doi.org/10.1007/s10586-017-0751-5 +Dong Oh Son,A dynamic CTA scheduling scheme for massive parallel computing.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#SonDCNK17,https://doi.org/10.1007/s10586-017-0768-9 +Chao Lu,Beijing Cultural and Creative Industry policy effect evaluation based on fuzzy comprehensive evaluation.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#LuC16,https://doi.org/10.1007/s10586-016-0662-x +Kejun Du,Handling conflicts of context-aware reminding system in sensorised home.,2011,14,Cluster Computing,1,db/journals/cluster/cluster14.html#DuZZH11,https://doi.org/10.1007/s10586-009-0091-1 +Bingchu Li,Predictive current control of a switched reluctance machine in the direct-drive manipulator of cloud robotics.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#LiLHGL17,https://doi.org/10.1007/s10586-017-0983-4 +Yuan Tao,Combining the big data analysis and the threat intelligence technologies for the classified protection model.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#TaoZMFLGX17,https://doi.org/10.1007/s10586-017-0813-8 +K. S. Arvind,Secure data classification using superior naive classifier in agent based mobile cloud computing.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#ArvindM17,https://doi.org/10.1007/s10586-017-0797-4 +Ming Zhao 0002,Distributed File System Virtualization Techniques Supporting On-Demand Virtual Machine Environments for Grid Computing.,2006,9,Cluster Computing,1,db/journals/cluster/cluster9.html#ZhaoZF06,https://doi.org/10.1007/s10586-006-4896-x +Hamzeh Mohammad Alabool,A novel evaluation framework for improving trust level of Infrastructure as a Service.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#AlaboolM16,https://doi.org/10.1007/s10586-015-0493-1 +Lijun Dong,Fast lightweight reconfiguration of virtual constellation for obtaining of earth observation big data.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#DongYRZP17,https://doi.org/10.1007/s10586-017-0905-5 +Jang-Mook Kang,A study for the mechanism of expression of individual creativity throughout the social learning platform in cluster computing environment (focus on scenario and data collection design).,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#KangLY15,https://doi.org/10.1007/s10586-015-0427-y +Ze Deng,A scalable and fast OPTICS for clustering trajectory big data.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#DengHZHD15,https://doi.org/10.1007/s10586-014-0413-9 +Jeffrey E. Wieselthier,Energy-Efficient Multicasting of Session Traffic in Bandwidth- and Transceiver-Limited Wireless Networks.,2002,5,Cluster Computing,2,db/journals/cluster/cluster5.html#WieselthierNE02,https://doi.org/10.1023/A:1013937711661 +Tao Yang 0010,Semi-supervised classification of multiple kernels embedding manifold information.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#YangFL17,https://doi.org/10.1007/s10586-017-1123-x +Zhaoquan Cai,Towards secure and flexible EHR sharing in mobile health cloud under static assumptions.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#CaiYLHG17,https://doi.org/10.1007/s10586-017-0796-5 +Zhegao Piao,Performance analysis of combined descriptors for similar crop disease image retrieval.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#PiaoAYGYJJC17,https://doi.org/10.1007/s10586-017-1145-4 +Ranran Liu,Multi-model recursive identification for nonlinear systems with non-uniformly sampling.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#LiuPL17,https://doi.org/10.1007/s10586-016-0688-0 +Chun-Hsi Huang,Finding Hamiltonian paths in tournaments on clusters.,2006,9,Cluster Computing,3,db/journals/cluster/cluster9.html#HuangRYH06,https://doi.org/10.1007/s10586-006-9746-3 +Harry Chen,Dynamic Service Discovery for Mobile Computing: Intelligent Agents Meet Jini in the Aether.,2001,4,Cluster Computing,4,db/journals/cluster/cluster4.html#ChenJF01,https://doi.org/10.1023/A:1011820829206 +Xiaohong Peng,Fuzzy neural network based prediction model applied in primary component analysis.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#PengXYW17,https://doi.org/10.1007/s10586-017-0738-2 +Xiao Zhang,MrHeter: improving MapReduce performance in heterogeneous environments.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#ZhangWZ16,https://doi.org/10.1007/s10586-016-0625-2 +Daesung Lee 0001,Improving web cache server performance through arbitral thread and delayed caching.,2012,15,Cluster Computing,1,db/journals/cluster/cluster15.html#LeeK12,https://doi.org/10.1007/s10586-010-0143-6 +Seoung-hyun Koh,Object-based dynamic influence measurement model (DIMM) using social data (on facebook).,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#KohYN16,https://doi.org/10.1007/s10586-016-0668-4 +Zhiping Peng,Random task scheduling scheme based on reinforcement learning in cloud computing.,2015,18,Cluster Computing,4,db/journals/cluster/cluster18.html#PengCZLXL15,https://doi.org/10.1007/s10586-015-0484-2 +Lingjun Zhao,Geographical information system parallelization for spatial big data processing: a review.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#ZhaoCRCH16,https://doi.org/10.1007/s10586-015-0512-2 +Sung-Ho Kim,Emergency situation monitoring service using context motion tracking of chronic disease patients.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#KimC15,https://doi.org/10.1007/s10586-015-0440-1 +Cheng-Chung Chen,A terms mining and clustering technique for surveying network and content analysis of academic groups exploration.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#ChenFC17,https://doi.org/10.1007/s10586-016-0711-5 +Pandi Vijayakumar,Computationally efficient privacy preserving authentication and key distribution techniques for vehicular ad hoc networks.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#VijayakumarACDB17,https://doi.org/10.1007/s10586-017-0848-x +Heithem Abbes,PGTrust: a decentralized free-riding prevention model for DG systems.,2016,19,Cluster Computing,2,db/journals/cluster/cluster19.html#AbbesL16,https://doi.org/10.1007/s10586-016-0542-4 +Jing Xu,Autonomic resource management in virtualized data centers using fuzzy logic-based approaches.,2008,11,Cluster Computing,3,db/journals/cluster/cluster11.html#XuZFCY08,https://doi.org/10.1007/s10586-008-0060-0 +Woong-Kee Loh,A parallel algorithm for robust fault detection in semiconductor manufacturing processes.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#LohY14,https://doi.org/10.1007/s10586-014-0366-z +Salvatore Orlando 0001,Mixed data and task parallelism with HPF and PVM.,2000,3,Cluster Computing,3,db/journals/cluster/cluster3.html#OrlandoPP00,https://doi.org/10.1023/A:1019088405889 +Yingshu Li,Sensor scheduling for p-percent coverage in wireless sensor networks.,2011,14,Cluster Computing,1,db/journals/cluster/cluster14.html#LiACB11,https://doi.org/10.1007/s10586-009-0088-9 +Somayeh Kianpisheh,Ant colony based constrained workflow scheduling for heterogeneous computing systems.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#KianpishehCK16,https://doi.org/10.1007/s10586-016-0575-8 +Hidetoshi Ueno,Performance Evaluation of WAP and Internet Protocols over W-CDMA Networks.,2005,8,Cluster Computing,1,db/journals/cluster/cluster8.html#UenoISST05,https://doi.org/10.1007/s10586-004-4434-7 +Cristiana Bentes,Towards an efficient parallel raycasting of unstructured volumetric data on distributed environments.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#BentesLDF14,https://doi.org/10.1007/s10586-013-0244-0 +Dmitry A. Zaitsev,Security of grid structures under disguised traffic attacks.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#ZaitsevSRP16,https://doi.org/10.1007/s10586-016-0582-9 +Jungsun Jang,A novel density-based clustering method using word embedding features for dialogue intention recognition.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#JangLLSKR16,https://doi.org/10.1007/s10586-016-0649-7 +Akira Nomoto,Distributed Shared Arrays: Portable Shared-Memory Programming Interface for Multiple Computer Systems.,2004,7,Cluster Computing,1,db/journals/cluster/cluster7.html#NomotoWKNS04,https://doi.org/10.1023/B:CLUS.0000003944.78311.72 +Prasanthi Sreekumari,A simple and efficient approach for reducing TCP timeouts due to lack of duplicate acknowledgments in data center networks.,2016,19,Cluster Computing,2,db/journals/cluster/cluster19.html#SreekumariJL16,https://doi.org/10.1007/s10586-016-0555-z +Xiao Qin 0001,Improving the performance of I/O-intensive applications on clusters of workstations.,2006,9,Cluster Computing,3,db/journals/cluster/cluster9.html#QinJZS06,https://doi.org/10.1007/s10586-006-9742-7 +óscar Torreño Tirado,Two level parallelism and I/O reduction in genome comparisons.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#TiradoT17,https://doi.org/10.1007/s10586-017-0873-9 +Pradip Kumar Sharma,DFA-AD: a distributed framework architecture for the detection of advanced persistent threats.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#SharmaMMP17,https://doi.org/10.1007/s10586-016-0716-0 +Jung-Soo Han,A method of unsupervised machine learning based on self-organizing map for BCI.,2016,19,Cluster Computing,2,db/journals/cluster/cluster19.html#HanK16,https://doi.org/10.1007/s10586-016-0550-4 +Abdul Aziz,On the use of meta-heuristics to increase the efficiency of online grid workflow scheduling algorithms.,2008,11,Cluster Computing,4,db/journals/cluster/cluster11.html#AzizE08,https://doi.org/10.1007/s10586-008-0062-y +Juan José Durillo,Multi-objective workflow scheduling in Amazon EC2.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#DurilloP14,https://doi.org/10.1007/s10586-013-0325-0 +Gregor von Laszewski,Using computational grid capabilities to enhance the capability of an X-ray source for structural biology.,2000,3,Cluster Computing,3,db/journals/cluster/cluster3.html#LaszewskiWBFW00,https://doi.org/10.1023/A:1019036421819 +Adam Ferrari,Heterogeneous process state capture and recovery through Process Introspection.,2000,3,Cluster Computing,2,db/journals/cluster/cluster3.html#FerrariCG00,https://doi.org/10.1023/A:1019067801346 +Jinlou Xie,Data mining based quality analysis on informants involved applied research.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#XieLZ16,https://doi.org/10.1007/s10586-016-0657-7 +Yanghee Nam,Designing interactive narratives for mobile augmented reality.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#Nam15,https://doi.org/10.1007/s10586-014-0354-3 +Hao Xu,The talent planning model and empirical research to the key disciplines in science and technology.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#XuWXH17,https://doi.org/10.1007/s10586-017-1060-8 +Changhee Cho,Detecting for high speed flying object using image processing on target place.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#ChoKKLK16,https://doi.org/10.1007/s10586-015-0525-x +Rajat Mehrotra,Towards autonomic performance management of large scale data centers using interaction balance principle.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#MehrotraA14,https://doi.org/10.1007/s10586-013-0333-0 +Tomás Cerný,On separation of platform-independent particles in user interfaces - Survey on separation of concerns in user interface design.,2015,18,Cluster Computing,3,db/journals/cluster/cluster18.html#CernyD15,https://doi.org/10.1007/s10586-015-0471-7 +Nirav H. Kapadia,PUNCH: An architecture for Web-enabled wide-area network-computing.,1999,2,Cluster Computing,2,db/journals/cluster/cluster2.html#KapadiaF99,https://doi.org/10.1023/A:1019026725028 +Sang Yeob Oh,An advanced taxi movement model in the working day movement for delay-tolerant networks.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#Oh14,https://doi.org/10.1007/s10586-013-0285-4 +Hao Liu 0005,On-line feedback-based automatic resource configuration for distributed applications.,2010,13,Cluster Computing,4,db/journals/cluster/cluster13.html#LiuS10,https://doi.org/10.1007/s10586-010-0123-x +Charles V. Trappey,Computer-supported portfolio analysis and comparison using ontology-based patent classification mapping scheme: the case of mobile communication patent pools.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#TrappeyTC17,https://doi.org/10.1007/s10586-016-0722-2 +Bharat K. Bhargava,A Study of Communication Delays for Web Transactions.,2001,4,Cluster Computing,4,db/journals/cluster/cluster4.html#Bhargava01,https://doi.org/10.1023/A:1011816728298 +Ljubica Blazevic,Self Organized Terminode Routing.,2002,5,Cluster Computing,2,db/journals/cluster/cluster5.html#BlazevicGB02,https://doi.org/10.1023/A:1013998030317 +Kai Li,Distance estimation by mining characteristics in anisotropic sensor networks.,2010,13,Cluster Computing,2,db/journals/cluster/cluster13.html#LiW10,https://doi.org/10.1007/s10586-009-0114-y +Ming Huang,An online gain tuning proxy-based sliding mode control using neural network for a gait training robotic orthosis.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#HuangHTLW16,https://doi.org/10.1007/s10586-016-0629-y +Richard John Anthony,A versatile policy toolkit supporting run-time policy reconfiguration.,2008,11,Cluster Computing,3,db/journals/cluster/cluster11.html#Anthony08,https://doi.org/10.1007/s10586-008-0058-7 +Kyung-shick Choi,Demographic variables and risk factors in computer-crime: an empirical assessment.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#ChoiCS16,https://doi.org/10.1007/s10586-015-0519-8 +Cynthia D. Rais,Studying vertical dependence to improve NFS performance in wireless networks.,1998,1,Cluster Computing,2,db/journals/cluster/cluster1.html#RaisT98,https://doi.org/10.1023/A:1019093717759 +Renato J. O. Figueiredo,Seamless Access to Decentralized Storage Services in Computational Grids via a Virtual File System.,2004,7,Cluster Computing,2,db/journals/cluster/cluster7.html#FigueiredoKF04,https://doi.org/10.1023/B:CLUS.0000018561.64239.d3 +Chien-Hua Chiu,A decentralized clustering scheme for transparent mode devices.,2012,15,Cluster Computing,3,db/journals/cluster/cluster15.html#ChiuL12,https://doi.org/10.1007/s10586-012-0218-7 +Laurence Tianruo Yang,Preface.,2006,9,Cluster Computing,3,db/journals/cluster/cluster9.html#YangPJ06,https://doi.org/10.1007/s10586-006-9737-4 +Ana Busic,Monotonicity and performance evaluation: applications to high speed and mobile networks.,2012,15,Cluster Computing,4,db/journals/cluster/cluster15.html#BusicF12,https://doi.org/10.1007/s10586-011-0160-0 +Yu Wang,Multi-CODP adjustment model and algorithm driven by customer requirements in dynamic environments.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#WangC16,https://doi.org/10.1007/s10586-016-0661-y +Marcel-Catalin Rosu,Supporting parallel applications on clusters of workstations: The Virtual Communication Machine-based architecture.,1998,1,Cluster Computing,1,db/journals/cluster/cluster1.html#RosuSF98,https://doi.org/10.1023/A:1019064911399 +Mohsen Guizani,Link Sizing for Multi-Media Traffic Transported over IP.,2001,4,Cluster Computing,4,db/journals/cluster/cluster4.html#GuizaniRA01,https://doi.org/10.1023/A:1011868712368 +George Teodoro,Optimizing dataflow applications on heterogeneous environments.,2012,15,Cluster Computing,2,db/journals/cluster/cluster15.html#TeodoroHCF12,https://doi.org/10.1007/s10586-010-0151-6 +Ricolindo Cariño,A Load Balancing Tool for Distributed Parallel Loops.,2005,8,Cluster Computing,4,db/journals/cluster/cluster8.html#CarinoB05,https://doi.org/10.1007/s10586-005-4098-y +Hai Jiang,Scaling up MapReduce-based Big Data Processing on Multi-GPU systems.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#JiangCQWL15,https://doi.org/10.1007/s10586-014-0400-1 +Jianhong Zhang,Achieving public verifiability and data dynamics for cloud data in the standard model.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#ZhangMY17,https://doi.org/10.1007/s10586-017-0804-9 +Hoill Jung,Ontology-driven slope modeling for disaster management service.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#JungC15a,https://doi.org/10.1007/s10586-015-0424-1 +Jingnan Yao,Design and Performance Analysis of Divisible Load Scheduling Strategies on Arbitrary Graphs.,2004,7,Cluster Computing,2,db/journals/cluster/cluster7.html#YaoV04,https://doi.org/10.1023/B:CLUS.0000018567.06753.de +Paul Stelling,A fault detection service for wide area distributed computations.,1999,2,Cluster Computing,2,db/journals/cluster/cluster2.html#StellingDFKLL99,https://doi.org/10.1023/A:1019070407281 +Atif Alamri,Nature-inspired multimedia service composition in a media cloud-based healthcare environment.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#Alamri16,https://doi.org/10.1007/s10586-016-0647-9 +Fawaz Al Hazemi,A MISO model for power consumption in virtualized servers.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#HazemiPY15,https://doi.org/10.1007/s10586-015-0436-x +Hwasung Kim,A BGP session takeover method for high availability based on virtualization technique.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#KimKRPK17,https://doi.org/10.1007/s10586-017-0771-1 +Anna Sikora,Automated and dynamic abstraction of MPI application performance.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#SikoraMJ16,https://doi.org/10.1007/s10586-016-0615-4 +Alin Zhong,Performance implications of non-uniform VCPU-PCPU mapping in virtualization environment.,2013,16,Cluster Computing,3,db/journals/cluster/cluster16.html#ZhongJWSG13,https://doi.org/10.1007/s10586-012-0199-6 +Seung-Mi Moon,Implementation of smartphone-based color temperature and wavelength control LED lighting system.,2016,19,Cluster Computing,2,db/journals/cluster/cluster19.html#MoonKL16,https://doi.org/10.1007/s10586-016-0548-y +Gergö Lovász,Performance tradeoffs of energy-aware virtual machine consolidation.,2013,16,Cluster Computing,3,db/journals/cluster/cluster16.html#LovaszNM13,https://doi.org/10.1007/s10586-012-0214-y +Hai Jin 0001,Aeneas: real-time performance evaluation approach for distributed programs with reliability-constrains.,2007,10,Cluster Computing,2,db/journals/cluster/cluster10.html#JinLHWQ07,https://doi.org/10.1007/s10586-007-0017-8 +Yingchong Situ,A communication-efficient linear system solver for large eddy simulation of jet engine noise.,2013,16,Cluster Computing,1,db/journals/cluster/cluster16.html#SituLMLLSBL13,https://doi.org/10.1007/s10586-011-0180-9 +Wujun Zhang,End-to-end security scheme for Machine Type Communication based on Generic Authentication Architecture.,2013,16,Cluster Computing,4,db/journals/cluster/cluster16.html#ZhangZCLW13,https://doi.org/10.1007/s10586-013-0259-6 +Aroon Nataraj,Integrated parallel performance views.,2008,11,Cluster Computing,1,db/journals/cluster/cluster11.html#NatarajMSM08,https://doi.org/10.1007/s10586-007-0051-6 +Yu-Hang Liu,Asymmetrical topology and entropy-based heterogeneous link for many-core massive data communication.,2013,16,Cluster Computing,4,db/journals/cluster/cluster16.html#LiuZXW13,https://doi.org/10.1007/s10586-012-0238-3 +Patricia Ruiz,Finding scalable configurations for AEDB broadcasting protocol using multi-objective evolutionary algorithms.,2013,16,Cluster Computing,3,db/journals/cluster/cluster16.html#RuizDB13,https://doi.org/10.1007/s10586-012-0220-0 +Luc Renambot,CAVEStudy: An Infrastructure for Computational Steering and Measuring in Virtual Reality Environments.,2001,4,Cluster Computing,1,db/journals/cluster/cluster4.html#RenambotBGS01,https://doi.org/10.1023/A:1011420511667 +Mauro Andreolini,A Cluster-Based Web System Providing Differentiated and Guaranteed Services.,2004,7,Cluster Computing,1,db/journals/cluster/cluster7.html#AndreoliniCCM04,https://doi.org/10.1023/B:CLUS.0000003940.34740.be +Jik-Soo Kim,Scalable and effective peer-to-peer desktop grid system.,2014,17,Cluster Computing,4,db/journals/cluster/cluster17.html#KimNS14,https://doi.org/10.1007/s10586-014-0390-z +Yuxiang Kuang,Extreme learning machine classification method for lower limb movement recognition.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#KuangWSWW17,https://doi.org/10.1007/s10586-017-0985-2 +Chao Lu,Herfindahl-Hirschman Index based performance analysis on the convergence development.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#LuQC17,https://doi.org/10.1007/s10586-017-0737-3 +Mohammed G. H. al Zamil,An ODT-based abstraction for mining closed sequential temporal patterns in IoT-cloud smart homes.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#ZamilSRH17,https://doi.org/10.1007/s10586-017-0837-0 +Hoill Jung,Evolutionary rule decision using similarity based associative chronic disease patients.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#JungYWLOCL15,https://doi.org/10.1007/s10586-014-0376-x +Peter A. Dinda,Online Prediction of the Running Time of Tasks.,2002,5,Cluster Computing,3,db/journals/cluster/cluster5.html#Dinda02,https://doi.org/10.1023/A:1015634802585 +Heshan Lin,Reliable MapReduce computing on opportunistic resources.,2012,15,Cluster Computing,2,db/journals/cluster/cluster15.html#LinMF12,https://doi.org/10.1007/s10586-011-0158-7 +Lei Zhao,Predictive performance modelling of parallel component compositions.,2007,10,Cluster Computing,2,db/journals/cluster/cluster10.html#ZhaoJ07,https://doi.org/10.1007/s10586-007-0010-2 +Rajinder Sandhu,Scheduling of big data applications on distributed cloud based on QoS parameters.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#SandhuS15,https://doi.org/10.1007/s10586-014-0416-6 +Richard Wolski,Dynamically forecasting network performance using the Network Weather Service.,1998,1,Cluster Computing,1,db/journals/cluster/cluster1.html#Wolski98,https://doi.org/10.1023/A:1019025230054 +Weimin Zheng,Design a cloud storage platform for pervasive computing environments.,2010,13,Cluster Computing,2,db/journals/cluster/cluster13.html#ZhengXHW10,https://doi.org/10.1007/s10586-009-0111-1 +Zhiang Wu 0001,SIMPLE: a simplifying-ensembling framework for parallel community detection from large networks.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#WuGBC16,https://doi.org/10.1007/s10586-015-0504-2 +Gerald Tesauro,On the use of hybrid reinforcement learning for autonomic resource allocation.,2007,10,Cluster Computing,3,db/journals/cluster/cluster10.html#TesauroJDB07,https://doi.org/10.1007/s10586-007-0035-6 +Lizhe Wang,Special issue on energy-aware computing and communications.,2013,16,Cluster Computing,1,db/journals/cluster/cluster16.html#WangKYX13,https://doi.org/10.1007/s10586-012-0243-6 +Wei Duan,Game modeling and policy research on the system dynamics-based tripartite evolution for government environmental regulation.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#DuanLZC16,https://doi.org/10.1007/s10586-016-0642-1 +David A. Monge,Ensemble learning of runtime prediction models for gene-expression analysis workflows.,2015,18,Cluster Computing,4,db/journals/cluster/cluster18.html#MongeHZG15,https://doi.org/10.1007/s10586-015-0481-5 +Jiaxuan Wu,A replicas placement approach of component services for service-based cloud application.,2016,19,Cluster Computing,2,db/journals/cluster/cluster19.html#WuZYWZ16,https://doi.org/10.1007/s10586-016-0552-2 +Constandinos X. Mavromoustakis,Dispersed information diffusion with level and schema-based coordination in mobile peer to peer networks.,2007,10,Cluster Computing,1,db/journals/cluster/cluster10.html#MavromoustakisK07,https://doi.org/10.1007/s10586-007-0005-z +Shigang Li 0002,Improved MPI collectives for MPI processes in shared address spaces.,2014,17,Cluster Computing,4,db/journals/cluster/cluster17.html#0002HHS14,https://doi.org/10.1007/s10586-014-0361-4 +Harold E. Castro,Green flexible opportunistic computing with task consolidation and virtualization.,2013,16,Cluster Computing,3,db/journals/cluster/cluster16.html#CastroVSDPB13,https://doi.org/10.1007/s10586-012-0222-y +André Turgeon,Object Placement Using Performance Surfaces.,2001,4,Cluster Computing,3,db/journals/cluster/cluster4.html#TurgeonSC01,https://doi.org/10.1023/A:1011406826169 +Jumi Kim,Optimized combinatorial clustering for stochastic processes.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#KimLSL17,https://doi.org/10.1007/s10586-017-0763-1 +Gonzalo Hernández,Detection of abnormal processes of wine fermentation by support vector machines.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#HernandezLU16,https://doi.org/10.1007/s10586-016-0594-5 +Ning Liu,Efficient push-based packet scheduling for Peer-to-Peer live streaming.,2013,16,Cluster Computing,4,db/journals/cluster/cluster16.html#LiuYCZC13,https://doi.org/10.1007/s10586-013-0268-5 +Juan Luis Jiménez Laredo,The sandpile scheduler - How self-organized criticality may lead to dynamic load-balancing.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#LaredoBGDF14,https://doi.org/10.1007/s10586-013-0328-x +Mohand Mezmaz,Solving the three dimensional quadratic assignment problem on a computational grid.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#MezmazMBMTT14,https://doi.org/10.1007/s10586-013-0313-4 +Deepali Arora,Enabling richer statistical MANET simulations through cluster computing.,2013,16,Cluster Computing,4,db/journals/cluster/cluster16.html#AroraMN13,https://doi.org/10.1007/s10586-013-0247-x +Mohammad Shojafar,Erratum to: FUGE: A joint meta-heuristic approach to cloud job scheduling algorithm using fuzzy theory and a genetic method.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#ShojafarJAC15a,https://doi.org/10.1007/s10586-015-0435-y +Sang-Hoon Kim,Erratum to: Mobile image sensors for object detection using color segmentation.,2013,16,Cluster Computing,4,db/journals/cluster/cluster16.html#KimJ13a,https://doi.org/10.1007/s10586-013-0287-2 +Chong Chen,A communication reduction approach to iteratively solve large sparse linear systems on a GPGPU cluster.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#ChenT14,https://doi.org/10.1007/s10586-013-0279-2 +Binh Minh Nguyen,Enhancing service capability with multiple finite capacity server queues in cloud data centers.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#NguyenTN16,https://doi.org/10.1007/s10586-016-0653-y +Dara Kusic,Risk-aware limited lookahead control for dynamic resource provisioning in enterprise computing systems.,2007,10,Cluster Computing,4,db/journals/cluster/cluster10.html#KusicK07,https://doi.org/10.1007/s10586-007-0022-y +Qinglong Hu,Cache algorithms based on adaptive invalidation reports for mobile environments.,1998,1,Cluster Computing,1,db/journals/cluster/cluster1.html#HuL98,https://doi.org/10.1023/A:1019012927328 +Ji Xue,Scheduling data analytics work with performance guarantees: queuing and machine learning models in synergy.,2016,19,Cluster Computing,2,db/journals/cluster/cluster19.html#XueYRS16,https://doi.org/10.1007/s10586-016-0563-z +Ziliang Zong,Energy efficient scheduling for parallel applications on mobile clusters.,2008,11,Cluster Computing,1,db/journals/cluster/cluster11.html#ZongNMQ08,https://doi.org/10.1007/s10586-007-0044-5 +Shuwei Jing,The development of a frame model for management strategies selection using fuzzy proximity.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#JingYHYH17,https://doi.org/10.1007/s10586-017-0739-1 +Xiaolu Zhang,A data transmission algorithm for distributed computing system based on maximum flow.,2015,18,Cluster Computing,3,db/journals/cluster/cluster18.html#ZhangJZW15,https://doi.org/10.1007/s10586-015-0467-3 +Gaowei Zhang,Model and forecast stock market behavior integrating investor sentiment analysis and transaction data.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#ZhangXX17,https://doi.org/10.1007/s10586-017-0803-x +Mary Thomas,Development of NPACI Grid Application Portals and Portal Web Services.,2003,6,Cluster Computing,3,db/journals/cluster/cluster6.html#ThomasBDMMM03,https://doi.org/10.1023/A:1023566402391 +Kyoo-Sung Noh,A study on the position of CDO for improving competitiveness based big data in cluster computing environment.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#Noh16,https://doi.org/10.1007/s10586-016-0610-9 +Qingyuan Zhou,Strategy optimization of resource scheduling based on cluster rendering.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#ZhouL16,https://doi.org/10.1007/s10586-016-0655-9 +Saad Alqahtany,A forensic acquisition and analysis system for IaaS.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#AlqahtanyCFR16,https://doi.org/10.1007/s10586-015-0509-x +Ron Oldfield,Improving Data Access for Computational Grid Applications.,2006,9,Cluster Computing,1,db/journals/cluster/cluster9.html#OldfieldK06,https://doi.org/10.1007/s10586-006-4899-7 +Michail Flouris,The Network RamDisk: Using remote memory on heterogeneous NOWs.,1999,2,Cluster Computing,4,db/journals/cluster/cluster2.html#FlourisM99,https://doi.org/10.1023/A:1019051330479 +Márton Nagy,Multicast scheduling algorithms in mobile networks.,1998,1,Cluster Computing,2,db/journals/cluster/cluster1.html#NagyS98,https://doi.org/10.1023/A:1019085415942 +Quan-Dong Feng,The model for improving big data sub-image retrieval performance using scalable vocabulary tree based on predictive clustering.,2016,19,Cluster Computing,2,db/journals/cluster/cluster19.html#FengXZ16,https://doi.org/10.1007/s10586-016-0551-3 +Brian Tierney,A Monitoring Sensor Management System for Grid Environments.,2001,4,Cluster Computing,1,db/journals/cluster/cluster4.html#TierneyCGLT01,https://doi.org/10.1023/A:1011408108941 +Joonsoo Jeong,A case study of Financial Statements Reporting System based on XBRL Taxonomy in accordance with Korean Public Institutions adoption of K-IFRS.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#JeongNY14,https://doi.org/10.1007/s10586-013-0293-4 +Bin Hu 0001,UWMAIS: ubiquitous water monitoring platform.,2010,13,Cluster Computing,2,db/journals/cluster/cluster13.html#HuHWZL10,https://doi.org/10.1007/s10586-009-0105-z +Hye-Young Kim,A load balancing scheme based on deep-learning in IoT.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#KimK17a,https://doi.org/10.1007/s10586-016-0667-5 +Won Il Seo,Implementation of context prediction system based on event recurrence time.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#SeoL16,https://doi.org/10.1007/s10586-016-0612-7 +Jessica Hartog,MapReduce framework energy adaptation via temperature awareness.,2014,17,Cluster Computing,1,db/journals/cluster/cluster17.html#HartogDG14,https://doi.org/10.1007/s10586-013-0270-y +Xiaoming Wang 0005,Priority queue based polling mechanism on seismic equipment cluster monitoring.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#WangDZZCT17,https://doi.org/10.1007/s10586-017-0726-6 +Marcos Dias de Assunção,A cost-benefit analysis of using cloud computing to extend the capacity of clusters.,2010,13,Cluster Computing,3,db/journals/cluster/cluster13.html#AssuncaoCB10,https://doi.org/10.1007/s10586-010-0131-x +Ping Wang 0007,A fuzzy outranking approach in risk analysis of web service security.,2007,10,Cluster Computing,1,db/journals/cluster/cluster10.html#WangCLHY07,https://doi.org/10.1007/s10586-007-0002-2 +Rajesh Raman,Matchmaking: An extensible framework for distributed resource management.,1999,2,Cluster Computing,2,db/journals/cluster/cluster2.html#RamanLS99,https://doi.org/10.1023/A:1019022624119 +Bin Hu 0001,Special issue: pervasive computing meets reality.,2010,13,Cluster Computing,2,db/journals/cluster/cluster13.html#Hu10,https://doi.org/10.1007/s10586-010-0127-6 +Chenggui Zhao,Efficient load balancing on biswapped networks.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#Zhao14,https://doi.org/10.1007/s10586-012-0241-8 +Lubomir Riha,An Adaptive Hybrid OLAP Architecture with optimized memory access patterns.,2013,16,Cluster Computing,4,db/journals/cluster/cluster16.html#RihaME13,https://doi.org/10.1007/s10586-012-0237-4 +Hwai-Tsu Hu,Efficient and robust frame-synchronized blind audio watermarking by featuring multilevel DWT and DCT.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#HuC17,https://doi.org/10.1007/s10586-017-0770-2 +B. R. Badrinath,On clustering in database servers for supporting mobile clients.,1998,1,Cluster Computing,2,db/journals/cluster/cluster1.html#BadrinathP98,https://doi.org/10.1023/A:1019081315033 +Mehdi Mahdavian,Multi-objective optimization and decision making for greenhouse climate control system considering user preference and data clustering.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#MahdavianSW17,https://doi.org/10.1007/s10586-017-0772-0 +Ajay Kumar Todimala,A Dynamic Partitioning Protection Routing Technique in WDM Networks.,2004,7,Cluster Computing,3,db/journals/cluster/cluster7.html#TodimalaR04,https://doi.org/10.1023/B:CLUS.0000028004.03413.6b +Qingyuan Zhou,Research on heterogeneous data integration model of group enterprise based on cluster computing.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#Zhou16,https://doi.org/10.1007/s10586-016-0580-y +Murali Vilayannur,Discretionary Caching for I/O on Clusters.,2006,9,Cluster Computing,1,db/journals/cluster/cluster9.html#VilayannurSKTR06,https://doi.org/10.1007/s10586-006-4895-y +Alina Patelli,An architecture for the autonomic curation of crowdsourced knowledge.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#PatelliLEWNBLC17,https://doi.org/10.1007/s10586-017-0908-2 +Mazin S. Yousif,Shared-storage clusters.,1999,2,Cluster Computing,4,db/journals/cluster/cluster2.html#Yousif99,https://doi.org/10.1023/A:1019095112733 +Yongseok Son,An empirical evaluation and analysis of the performance of NVM express solid state drive.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#SonKHY16,https://doi.org/10.1007/s10586-016-0591-8 +Amir Hosein Kashefi,RP2: a high-performance data center network architecture using projective planes.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#KashefiKS17,https://doi.org/10.1007/s10586-017-1024-z +Xianglong Li,An analytical study of blasting vibration using deep mining and drivage rules.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#LiHHL17,https://doi.org/10.1007/s10586-017-0736-4 +DongBum Seo,Cloud computing for ubiquitous computing on M2M and IoT environment mobile application.,2016,19,Cluster Computing,2,db/journals/cluster/cluster19.html#SeoJLL16,https://doi.org/10.1007/s10586-016-0573-x +Mostafa Ghobaei Arani,An autonomic approach for resource provisioning of cloud services.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#AraniJP16,https://doi.org/10.1007/s10586-016-0574-9 +Lei Xiong,A dynamic approach to tolerate soft errors.,2013,16,Cluster Computing,3,db/journals/cluster/cluster16.html#XiongT13,https://doi.org/10.1007/s10586-011-0196-1 +Yunpeng Zhang,An optimized DNA based encryption scheme with enforced secure key distribution.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#ZhangLMC17,https://doi.org/10.1007/s10586-017-1009-y +Xue Lv,A node coverage algorithm for a wireless-sensor-network-based water resources monitoring system.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#LvLL17,https://doi.org/10.1007/s10586-017-0989-y +Saebyok Lee,Developing a cognitive evaluation method for serious game engineers.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#LeeBNALOK14,https://doi.org/10.1007/s10586-013-0289-0 +Andrew Flahive,Ontology as a Service (OaaS): extracting and replacing sub-ontologies on the cloud.,2013,16,Cluster Computing,4,db/journals/cluster/cluster16.html#FlahiveTR13,https://doi.org/10.1007/s10586-012-0231-x +Jie Zhang,Infrastructures and services for remote sensing data production management across multiple satellite data centers.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#ZhangYMXLJ16,https://doi.org/10.1007/s10586-016-0577-6 +Chongdeuk Lee,A collaborative power control and resources allocation for D2D (device-to-device) communication underlaying LTE cellular networks.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#Lee17,https://doi.org/10.1007/s10586-016-0706-2 +Woochun Jun,An analysis work on correlation of internet addiction and school age groups.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#Jun17,https://doi.org/10.1007/s10586-016-0693-3 +Chuanliang Xia,Property preservation of refinement for Petri net based representation for embedded systems.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#Xia16,https://doi.org/10.1007/s10586-016-0597-2 +Gabriela Jacques-Silva,Self healing in System-S.,2008,11,Cluster Computing,3,db/journals/cluster/cluster11.html#Jacques-SilvaCDGW08,https://doi.org/10.1007/s10586-008-0057-8 +Ichiro Satoh,Configurable Network Processing for Mobile Agents on the Internet.,2004,7,Cluster Computing,1,db/journals/cluster/cluster7.html#Satoh04,https://doi.org/10.1023/B:CLUS.0000003947.03930.24 +Raouf Boutaba,Recent trends in interactive multimedia computing for industry.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#BoutabaCG14,https://doi.org/10.1007/s10586-014-0349-0 +Hoyoung Cheong,Belief propagation decoding assisted on-the-fly Gaussian elimination for short LT codes.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#CheongEKK16,https://doi.org/10.1007/s10586-015-0522-0 +Dzmitry Kliazovich,DENS: data center energy-efficient network-aware scheduling.,2013,16,Cluster Computing,1,db/journals/cluster/cluster16.html#KliazovichBK13,https://doi.org/10.1007/s10586-011-0177-4 +Jarek Nieplocha,One-Sided Communication on Clusters with Myrinet.,2003,6,Cluster Computing,2,db/journals/cluster/cluster6.html#NieplochaAJT03,https://doi.org/10.1023/A:1022800521563 +Tie-Jun Cui,The function structure analysis theory based on the factor space and space fault tree.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#CuiWL17,https://doi.org/10.1007/s10586-017-0835-2 +Mari Korkea-aho,A Common Data Set and Framework for Representing Spatial Location Information in the Internet.,2002,5,Cluster Computing,4,db/journals/cluster/cluster5.html#Korkea-ahoT02,https://doi.org/10.1023/A:1019712305191 +Pedro Alonso 0002,Energy-efficient execution of dense linear algebra algorithms on multi-core processors.,2013,16,Cluster Computing,3,db/journals/cluster/cluster16.html#AlonsoDMQ13,https://doi.org/10.1007/s10586-012-0215-x +Heng Zhang 0005,Towards a scalable and energy-efficient resource manager for coupling cluster computing with distributed embedded computing.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#ZhangHWL17,https://doi.org/10.1007/s10586-017-0936-y +Qingsheng Zhu,Weighted natural neighborhood graph: an adaptive structure for clustering and outlier detection with no neighborhood parameter.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#ZhuFH16,https://doi.org/10.1007/s10586-016-0598-1 +Tao Xie 0004,Security-driven scheduling for data-intensive applications on grids.,2007,10,Cluster Computing,2,db/journals/cluster/cluster10.html#XieQ07,https://doi.org/10.1007/s10586-007-0015-x +Intae Kim,Flexible authorization in home network environments.,2012,15,Cluster Computing,1,db/journals/cluster/cluster15.html#KimLKL12,https://doi.org/10.1007/s10586-010-0142-7 +Rodrigo Garcés,Collision avoidance and resolution multiple access (CARMA).,1998,1,Cluster Computing,2,db/journals/cluster/cluster1.html#GarcesG98,https://doi.org/10.1023/A:1019089616850 +Yuanyuan Pan,An analytical model for random pseudonym change scheme in VANETs.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#PanLFX14,https://doi.org/10.1007/s10586-012-0242-7 +Songchang Jin,Community structure mining in big data social media networks with MapReduce.,2015,18,Cluster Computing,3,db/journals/cluster/cluster18.html#JinLYYLD15,https://doi.org/10.1007/s10586-015-0452-x +Hak-Hyun Choi,An effective implementation scheme of a layer overlay representation of a hologram video technology in an M2M application environment.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#ChoiLJL15,https://doi.org/10.1007/s10586-015-0430-3 +Xiangyu Meng,A genetic algorithm using K-path initialization for community detection in complex networks.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#MengDLG17,https://doi.org/10.1007/s10586-016-0698-y +Adamantia Alexandraki,Performance Evaluation of the Deadline Credit Scheduling Algorithm for Soft-Real-Time Applications in Distributed Video-on-Demand Systems.,2005,8,Cluster Computing,1,db/journals/cluster/cluster8.html#AlexandrakiP05,https://doi.org/10.1007/s10586-004-4437-4 +Kyoungsoo Bok,An efficient distributed caching for accessing small files in HDFS.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#BokOLPCLY17,https://doi.org/10.1007/s10586-017-1147-2 +Bin Lin 0002,Time-sharing parallel applications through performance-targeted feedback-controlled real-time scheduling.,2008,11,Cluster Computing,3,db/journals/cluster/cluster11.html#LinSD08,https://doi.org/10.1007/s10586-008-0055-x +Abdulwahid Al Abdulwahid,Continuous and transparent multimodal authentication: reviewing the state of the art.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#AbdulwahidCSFR16,https://doi.org/10.1007/s10586-015-0510-4 +Kyoungsoo Bok,A multiple RSU collaborative scheduling scheme for data services in vehicular ad hoc networks.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#BokLHY17,https://doi.org/10.1007/s10586-017-0801-z +Haikun Liu,Performance and energy modeling for live migration of virtual machines.,2013,16,Cluster Computing,2,db/journals/cluster/cluster16.html#LiuJXL13,https://doi.org/10.1007/s10586-011-0194-3 +Hosung Jo,Fast prime number generation algorithms on smart mobile devices.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#JoP17,https://doi.org/10.1007/s10586-017-0992-3 +Vlado Stankovski,Developing a Model Driven Approach for engineering applications based on mOSAIC - Towards sharing elastic components in the Cloud.,2014,17,Cluster Computing,1,db/journals/cluster/cluster17.html#StankovskiP14,https://doi.org/10.1007/s10586-013-0263-x +Hai Jin 0001,Adaptive Sector Grouping to Reduce False Sharing in Distributed RAID.,2001,4,Cluster Computing,2,db/journals/cluster/cluster4.html#JinH01,https://doi.org/10.1023/A:1011468915637 +Xiaoyu Yang,Recent Research Advances in e-Science.,2009,12,Cluster Computing,4,db/journals/cluster/cluster12.html#YangWL09,https://doi.org/10.1007/s10586-009-0104-0 +Aitor Urbieta,Hybrid service matchmaking in ambient assisted living environments based on context-aware service modeling.,2015,18,Cluster Computing,3,db/journals/cluster/cluster18.html#UrbietaBMPCHAV15,https://doi.org/10.1007/s10586-015-0469-1 +Lavanya Ramakrishnan,Predictable quality of service atop degradable distributed systems.,2013,16,Cluster Computing,2,db/journals/cluster/cluster16.html#RamakrishnanR13,https://doi.org/10.1007/s10586-009-0078-y +Jamel Gafsi,Data striping and reliability aspects in distributed video servers.,1999,2,Cluster Computing,1,db/journals/cluster/cluster2.html#GafsiB99,https://doi.org/10.1023/A:1019054003646 +Nathan T. Weeks,Optimization of SAMtools sorting using OpenMP tasks.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#WeeksL17,https://doi.org/10.1007/s10586-017-0874-8 +Elias Balafoutis,Study of the Impact of Replacement Granularity and Associated Strategies on Video Caching.,2005,8,Cluster Computing,1,db/journals/cluster/cluster8.html#BalafoutisPLS05,https://doi.org/10.1007/s10586-004-4439-2 +Lizhe Wang,Link the remote sensing big data to the image features via wavelet transformation.,2016,19,Cluster Computing,2,db/journals/cluster/cluster19.html#WangSL16,https://doi.org/10.1007/s10586-016-0569-6 +Yu Su 0011,Effective and efficient data sampling using bitmap indices.,2014,17,Cluster Computing,4,db/journals/cluster/cluster17.html#SuAWMWA14,https://doi.org/10.1007/s10586-014-0360-5 +Jie-Yu Wang,Transportation route optimization with cost object in China.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#WangX16,https://doi.org/10.1007/s10586-016-0618-1 +Euihyeok Kim,Enhanced chained and Cuckoo hashing methods for multi-core CPUs.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#KimK14,https://doi.org/10.1007/s10586-013-0343-y +Xinyuan Huang,Research and implementation of animations evaluation system.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#HuangD17,https://doi.org/10.1007/s10586-017-0814-7 +Hoill Jung,Life style improvement mobile service for high risk chronic disease based on PHR platform.,2016,19,Cluster Computing,2,db/journals/cluster/cluster19.html#JungC16,https://doi.org/10.1007/s10586-016-0549-x +Gil Su Choi,Development of a quantitative analysis model of creative problem solving ability in computer textbooks.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#ChoiLY15,https://doi.org/10.1007/s10586-015-0433-0 +Shao Aijun,Analysis of the dynamic impact of Three-Gorge Project on regime of soil water and salt in Yangtze River Delta.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#AijunZS16,https://doi.org/10.1007/s10586-016-0636-z +Gaowei Xu,A user behavior prediction model based on parallel neural network and k-nearest neighbor algorithms.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#XuSLZS17,https://doi.org/10.1007/s10586-017-0749-z +Shridhar Diwan,Adaptive resource utilization and remote access capabilities in high-performance distributed systems: The Open HPC++ approach.,2000,3,Cluster Computing,1,db/journals/cluster/cluster3.html#DiwanG00,https://doi.org/10.1023/A:1019055531388 +Jeong-ile Jeong,A study on smart door lock control system.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#Jeong16,https://doi.org/10.1007/s10586-016-0617-2 +Hyangsook Lee,Bi-level optimization programming for the shipper-carrier network problem.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#LeeSCCL14,https://doi.org/10.1007/s10586-013-0311-6 +Neeraj Kumar 0001,An intelligent clustering scheme for distributed intrusion detection in vehicular cloud computing.,2015,18,Cluster Computing,3,db/journals/cluster/cluster18.html#KumarSBMU15,https://doi.org/10.1007/s10586-015-0463-7 +Mucheol Kim,Trust management on user behavioral patterns for a mobile cloud computing.,2013,16,Cluster Computing,4,db/journals/cluster/cluster16.html#KimP13,https://doi.org/10.1007/s10586-013-0248-9 +Md. Azam Hossain,Exploiting resource profiling mechanism for large-scale scientific computing on grids.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#HossainNKH16,https://doi.org/10.1007/s10586-016-0590-9 +Pilsung Kang 0002,Modular implementation of dynamic algorithm switching in parallel simulations.,2012,15,Cluster Computing,3,db/journals/cluster/cluster15.html#Kang12,https://doi.org/10.1007/s10586-012-0205-z +José Ignacio Aliaga,Assessing the impact of the CPU power-saving modes on the task-parallel solution of sparse linear systems.,2014,17,Cluster Computing,4,db/journals/cluster/cluster17.html#AliagaBDMMQ14,https://doi.org/10.1007/s10586-014-0402-z +Aftab Ahmed Chandio,A comparative study on resource allocation and energy efficient job scheduling strategies in large-scale parallel computing systems.,2014,17,Cluster Computing,4,db/journals/cluster/cluster17.html#ChandioBTYJKX14,https://doi.org/10.1007/s10586-014-0384-x +Hoang Bui,Experience with BXGrid: a data repository and computing grid for biometrics research.,2009,12,Cluster Computing,4,db/journals/cluster/cluster12.html#BuiKLPTFT09,https://doi.org/10.1007/s10586-009-0098-7 +Tien Dung Nguyen,Improving the performance of data center with real-time service image placement in mobile cloud environment.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#NguyenMH14,https://doi.org/10.1007/s10586-013-0324-1 +Giuseppe Anastasi,Dynamic Max-Min fairness in ring networks.,2000,3,Cluster Computing,3,db/journals/cluster/cluster3.html#AnastasiLPO00,https://doi.org/10.1023/A:1019040522727 +Valerie E. Taylor,Introduction: Performance Analysis and Modeling.,2003,6,Cluster Computing,4,db/journals/cluster/cluster6.html#TaylorS03,https://doi.org/10.1023/A:1025762405175 +Tadateru Ohkawara,Quorum-based synchronization protocols for multimedia replicas.,2013,16,Cluster Computing,4,db/journals/cluster/cluster16.html#OhkawaraAET13,https://doi.org/10.1007/s10586-012-0239-2 +Se-Hak Chun,Service models and pricing schemes for cloud computing.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#ChunC14,https://doi.org/10.1007/s10586-013-0296-1 +Federico Silla,Special issue on unconventional cluster architectures and applications.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#SillaF14,https://doi.org/10.1007/s10586-013-0291-6 +Xinyu Lei,Securely and efficiently perform large matrix rank decomposition computation via cloud computing.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#LeiLMF15,https://doi.org/10.1007/s10586-015-0444-x +Min-Wook Kang,Collecting large training dataset of actual facial images from facebook for developing a weighted bagging gender classifier.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#KangKK17,https://doi.org/10.1007/s10586-017-0958-5 +Ying Qian,Efficient shared memory and RDMA based collectives on multi-rail QsNetII SMP clusters.,2008,11,Cluster Computing,4,db/journals/cluster/cluster11.html#QianA08,https://doi.org/10.1007/s10586-008-0065-8 +Kan Xie,A new canonical polyadic decomposition algorithm with improved stability and its applications to biomedical signal processing.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#XieYL17,https://doi.org/10.1007/s10586-017-0858-8 +Yu He,An autonomic routing framework for sensor networks.,2006,9,Cluster Computing,2,db/journals/cluster/cluster9.html#HeRBB06,https://doi.org/10.1007/s10586-006-7563-3 +Na Li,Improved support vector machines model based on multi-spectral parameters.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#LiXZD17,https://doi.org/10.1007/s10586-017-0802-y +Kalyan S. Perumalla,Reverse computation for rollback-based fault tolerance in large parallel systems - Evaluating the potential gains and systems effects.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#PerumallaP14,https://doi.org/10.1007/s10586-013-0277-4 +Ahmed Abdelkhalek 0002,Behavior and Performance of Interactive Multi-Player Game Servers.,2003,6,Cluster Computing,4,db/journals/cluster/cluster6.html#AbdelkhalekBM03,https://doi.org/10.1023/A:1025718026938 +Qinghua Wu,Research on the parameter inversion problem of prestack seismic data based on improved differential evolution algorithm.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#WuZY17,https://doi.org/10.1007/s10586-017-0895-3 +Karel Cemus,Separation of concerns for distributed cross-platform context-aware user interfaces.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#CemusKKC17,https://doi.org/10.1007/s10586-017-0794-7 +Abdulhameed Alelaiwi,A collaborative resource management for big IoT data processing in Cloud.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#Alelaiwi17,https://doi.org/10.1007/s10586-017-0839-y +David J. Johnston,Performance of parallel communication and spawning primitives on a Linux cluster.,2006,9,Cluster Computing,4,db/journals/cluster/cluster9.html#JohnstonFLD06,https://doi.org/10.1007/s10586-006-0007-2 +Yan Su,Achieving self-aware parallelism in stream programs.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#SuSTWHW15,https://doi.org/10.1007/s10586-014-0412-x +Xiaoyu Shi,Power-aware performance management of virtualized enterprise servers via robust adaptive control.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#ShiBDWF15,https://doi.org/10.1007/s10586-014-0407-7 +Ying Liu 0008,OnlineElastMan: self-trained proactive elasticity manager for cloud-based storage services.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#LiuGAV17,https://doi.org/10.1007/s10586-017-0899-z +Cihan Tunc,Value of service based resource management for large-scale computing systems.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#TuncMKAHKS17,https://doi.org/10.1007/s10586-017-0901-9 +Tejal Shah,Investigating an ontology-based approach for Big Data analysis of inter-dependent medical and oral health conditions.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#ShahRR15,https://doi.org/10.1007/s10586-014-0406-8 +Alberto Bartoli,On-line self-checking of replication consistency for autonomic computing.,2006,9,Cluster Computing,4,db/journals/cluster/cluster9.html#BartoliM06,https://doi.org/10.1007/s10586-006-0012-5 +Tarandeep Kaur,Energy aware scheduling of deadline-constrained tasks in cloud computing.,2016,19,Cluster Computing,2,db/journals/cluster/cluster19.html#KaurC16,https://doi.org/10.1007/s10586-016-0566-9 +Dionisios N. Pnevmatikatos,On using network RAM as a non-volatile buffer.,1999,2,Cluster Computing,4,db/journals/cluster/cluster2.html#PnevmatikatosMMI99,https://doi.org/10.1023/A:1019003514550 +Soonju Park,Improved protocols for spreading vehicle emergency messages in mobile ad hoc networks.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#ParkLK17,https://doi.org/10.1007/s10586-017-0756-0 +Yanbin Wu,The energy emission computing of land consolidation from the dual perspectives clustering method.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#WuZGW17,https://doi.org/10.1007/s10586-017-0875-7 +Donghun Koo,Adaptive hybrid storage systems leveraging SSDs and HDDs in HPC cloud environments.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#KooKHEL17,https://doi.org/10.1007/s10586-017-1002-5 +Hukeun Kwak,Autonomous learning of load and traffic patterns to improve cluster utilization.,2011,14,Cluster Computing,4,db/journals/cluster/cluster14.html#KwakSC11,https://doi.org/10.1007/s10586-011-0168-5 +Kenn Slagter,SmartJoin: a network-aware multiway join for MapReduce.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#SlagterHCY14,https://doi.org/10.1007/s10586-014-0348-1 +Fengjun Shang,A strategy for scheduling reduce task based on intermediate data locality of the MapReduce.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#ShangCY17,https://doi.org/10.1007/s10586-017-0972-7 +Sandra Catalán,Architecture-aware configuration and scheduling of matrix multiplication on asymmetric multicore processors.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#CatalanIMRQ16,https://doi.org/10.1007/s10586-016-0611-8 +Gabriele Mencagli,Towards a systematic approach to the dynamic adaptation of structured parallel computations using model predictive control.,2014,17,Cluster Computing,4,db/journals/cluster/cluster17.html#MencagliV14,https://doi.org/10.1007/s10586-014-0346-3 +Lei Gan,New deformation back analysis method for the creep model parameters using finite element nonlinear method.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#GanSZ17,https://doi.org/10.1007/s10586-017-1049-3 +Sang-Hwa Chung,An SCI-Based PC Cluster Utilizing Coherent Network Cache.,2003,6,Cluster Computing,2,db/journals/cluster/cluster6.html#ChungO03,https://doi.org/10.1023/A:1022856606542 +Congfeng Jiang,VRAA: virtualized resource auction and allocation based on incentive and penalty.,2013,16,Cluster Computing,4,db/journals/cluster/cluster16.html#JiangDLWZ13,https://doi.org/10.1007/s10586-012-0235-6 +Ming Yang,Image 1D OMP sparse decomposition with modified fruit-fly optimization algorithm.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#YangLL17,https://doi.org/10.1007/s10586-017-0966-5 +Christophe René,MPI code encapsulating using parallel CORBA object.,2000,3,Cluster Computing,4,db/journals/cluster/cluster3.html#ReneP00,https://doi.org/10.1023/A:1019096607706 +Shih-Yung Wei,The clustering analysis of corporate ownership and control contestability based on Shapley value.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#WeiCY17,https://doi.org/10.1007/s10586-017-0820-9 +George Terzopoulos,Power-aware Bag-of-Tasks scheduling on heterogeneous platforms.,2016,19,Cluster Computing,2,db/journals/cluster/cluster19.html#TerzopoulosK16,https://doi.org/10.1007/s10586-016-0544-2 +Jun Huang,A heterogeneity-aware approach to load balancing of computational tasks: a theoretical and simulation study.,2008,11,Cluster Computing,2,db/journals/cluster/cluster11.html#HuangL08,https://doi.org/10.1007/s10586-007-0038-3 +Chengyu Hu,A Spark-based genetic algorithm for sensor placement in large scale drinking water distribution systems.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#HuRLLJ17,https://doi.org/10.1007/s10586-017-0838-z +Evjola Spaho,A fuzzy-based reliability system for knowledge sharing between robots in P2P JXTA-overlay platform.,2013,16,Cluster Computing,4,db/journals/cluster/cluster16.html#SpahoUBXY13,https://doi.org/10.1007/s10586-012-0230-y +Fang Chun Jiang,Study on a confidence machine learning method based on ensemble learning.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#Jiang17,https://doi.org/10.1007/s10586-017-1085-z +Hyuck Han,Scatter-Gather-Merge: An efficient star-join query processing algorithm for data-parallel frameworks.,2011,14,Cluster Computing,2,db/journals/cluster/cluster14.html#HanJEY11,https://doi.org/10.1007/s10586-010-0144-5 +Frédéric Pinel,A two-phase heuristic for the energy-efficient scheduling of independent tasks on computational grids.,2013,16,Cluster Computing,3,db/journals/cluster/cluster16.html#PinelDPBK13,https://doi.org/10.1007/s10586-012-0207-x +Shehzad Ashraf Chaudhry,A privacy preserving authentication scheme for roaming in ubiquitous networks.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#ChaudhryAXLS17,https://doi.org/10.1007/s10586-017-0783-x +Mohammad Mehedi Hassan,A scalable and elastic cloud-assisted publish/subscribe model for IPTV video surveillance system.,2015,18,Cluster Computing,4,db/journals/cluster/cluster18.html#HassanHAAAA15,https://doi.org/10.1007/s10586-015-0476-2 +Woo Sik Bae,Function-based connection protocol development and verification for secure communication in vehicle environment.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#Bae15,https://doi.org/10.1007/s10586-015-0441-0 +Chen Yang,Towards product customization and personalization in IoT-enabled cloud manufacturing.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#YangLSHWL17,https://doi.org/10.1007/s10586-017-0767-x +Kaijun Wu,Synchronization study of Hindmarsh-Rose neuron coupled system based on numerical simulation of time delay.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#WuZTDL17,https://doi.org/10.1007/s10586-017-1063-5 +Jason P. Jue,Design and analysis of a replicated server architecture for supporting IP-host mobility.,1998,1,Cluster Computing,2,db/journals/cluster/cluster1.html#JueG98,https://doi.org/10.1023/A:1019097818667 +Maria Toeroe,Performance Simulation of Cluster-Based Asynchronous Soft Real-Time Systems.,2003,6,Cluster Computing,4,db/journals/cluster/cluster6.html#Toeroe03,https://doi.org/10.1023/A:1025761809192 +Jaehyung Park,Cost-effective multicast routings in wireless mesh networks with multiple gateways.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#ParkJK16,https://doi.org/10.1007/s10586-016-0600-y +Wai-Kong Lee,Fast implementation of block ciphers and PRNGs in Maxwell GPU architecture.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#LeeCPG16,https://doi.org/10.1007/s10586-016-0536-2 +Wanfeng Dou,A fast parallel re-computation with redundancy mechanism for parallel digital terrain analysis.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#DouM16,https://doi.org/10.1007/s10586-016-0644-z +Carlos H. Gonzalez,A general and efficient divide-and-conquer algorithm framework for multi-core clusters.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#GonzalezF17,https://doi.org/10.1007/s10586-017-0766-y +Wei Zhou,SNB-index: a SkipNet and B+ tree based auxiliary Cloud index.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#ZhouLLWXY14,https://doi.org/10.1007/s10586-013-0246-y +Simon Kiertscher,CHERUB: power consumption aware cluster resource management.,2013,16,Cluster Computing,1,db/journals/cluster/cluster16.html#KiertscherZS13,https://doi.org/10.1007/s10586-011-0176-5 +Steven Newhouse,Grid user requirements - 2004: a perspective from the trenches.,2007,10,Cluster Computing,3,db/journals/cluster/cluster10.html#NewhouseS07,https://doi.org/10.1007/s10586-007-0031-x +Taher Ahmed Ghaleb,Techniques and countermeasures of website/wireless traffic analysis and fingerprinting.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#Ghaleb16,https://doi.org/10.1007/s10586-015-0502-4 +Xiangyu Luo,Superset: a non-uniform replica placement strategy towards perfect load balance and fine-grained power proportionality.,2015,18,Cluster Computing,3,db/journals/cluster/cluster18.html#LuoXWZW15,https://doi.org/10.1007/s10586-015-0459-3 +Yang Xiao 0001,Performance analysis of ALOHA and p-persistent ALOHA for multi-hop underwater acoustic sensor networks.,2011,14,Cluster Computing,1,db/journals/cluster/cluster14.html#XiaoZGXC11,https://doi.org/10.1007/s10586-009-0093-z +Ziad A. Al-Sharif,ACCRS: autonomic based cloud computing resource scaling.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#Al-SharifJAA17,https://doi.org/10.1007/s10586-016-0682-6 +Chen Yang,An efficient approach to collaborative simulation of variable structure systems on multi-core machines.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#YangCSLLC16,https://doi.org/10.1007/s10586-015-0498-9 +Leonardo Piga,Empirical and analytical approaches for web server power modeling.,2014,17,Cluster Computing,4,db/journals/cluster/cluster17.html#PigaBR14,https://doi.org/10.1007/s10586-014-0373-0 +Intae Ryoo,Information exchange architecture based on software defined networking for cooperative intelligent transportation systems.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#RyooNK15,https://doi.org/10.1007/s10586-015-0442-z +Ripal Nathuji,VPM tokens: virtual machine-aware power budgeting in datacenters.,2009,12,Cluster Computing,2,db/journals/cluster/cluster12.html#NathujiSSJ09,https://doi.org/10.1007/s10586-009-0077-z +Qian Zhu,An adaptive middleware for supporting time-critical event response.,2009,12,Cluster Computing,1,db/journals/cluster/cluster12.html#ZhuA09,https://doi.org/10.1007/s10586-008-0071-x +Syed Hamid Hussain Madni,Recent advancements in resource allocation techniques for cloud computing environment: a systematic review.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#MadniLCA17,https://doi.org/10.1007/s10586-016-0684-4 +Zhige Jia,Time series analysis of carrier phase differences for dual-frequency GPS high-accuracy positioning.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#JiaCWY16,https://doi.org/10.1007/s10586-016-0607-4 +Jeong Soo Kim,Two-dimensional numerical tunnel model using a Winkler-based beam element and its application into tunnel monitoring systems.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#KimKJ15,https://doi.org/10.1007/s10586-014-0418-4 +Jun-Hong Cui,Aggregated Multicast - A Comparative Study.,2005,8,Cluster Computing,1,db/journals/cluster/cluster8.html#CuiKMBG05,https://doi.org/10.1007/s10586-004-4433-8 +Bing Zhao,Two game-based solution concepts for a two-agent scheduling problem.,2016,19,Cluster Computing,2,db/journals/cluster/cluster19.html#ZhaoGRC16,https://doi.org/10.1007/s10586-016-0557-x +Jörg Dümmler,SEParAT: scheduling support environment for parallel application task graphs.,2012,15,Cluster Computing,3,db/journals/cluster/cluster15.html#DummlerKR12,https://doi.org/10.1007/s10586-012-0211-1 +Luca Sabatucci,Self-configuring cloud application mashup with goals and capabilities.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#SabatucciLC17,https://doi.org/10.1007/s10586-017-0911-7 +Eun-Young Jung,Mobile healthcare application with EMR interoperability for diabetes patients.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#JungKCP14,https://doi.org/10.1007/s10586-013-0315-2 +Xinghui Wang,Applying the locality principle to improve the shortest path algorithm.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#WangJLW17,https://doi.org/10.1007/s10586-016-0696-0 +Xiaoyong Tang,An effective reliability-driven technique of allocating tasks on heterogeneous cluster systems.,2014,17,Cluster Computing,4,db/journals/cluster/cluster17.html#TangLL14,https://doi.org/10.1007/s10586-014-0372-1 +Kristoffer Jensen,A big data analytics approach to combat telecommunication vulnerabilities.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#JensenNDA17,https://doi.org/10.1007/s10586-017-0811-x +Yongseok Son,Design and implementation of an efficient flushing scheme for cloud key-value storage.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#SonYH17,https://doi.org/10.1007/s10586-017-1101-3 +Shunxiang Zhang,Building associated semantic representation model for the ultra-short microblog text jumping in big data.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#ZhangWZZ16,https://doi.org/10.1007/s10586-016-0602-9 +Jae-Kwon Kim,Adaptive mining prediction model for content recommendation to coronary heart disease patients.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#KimLPLLJ14,https://doi.org/10.1007/s10586-013-0308-1 +Hua Yang,Neural networks for MANET AODV: an optimization approach.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#YangLL17a,https://doi.org/10.1007/s10586-017-1086-y +Edson L. Padoin,Evaluating application performance and energy consumption on hybrid CPU+GPU architecture.,2013,16,Cluster Computing,3,db/journals/cluster/cluster16.html#PadoinPBKVN13,https://doi.org/10.1007/s10586-012-0219-6 +Thorsten Kleinjung,A heterogeneous computing environment to solve the 768-bit RSA challenge.,2012,15,Cluster Computing,1,db/journals/cluster/cluster15.html#KleinjungBLOACFTJTLMTS12,https://doi.org/10.1007/s10586-010-0149-0 +Zhenzhong Zhang,Mvmotion: a metadata based virtual machine migration in cloud.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#ZhangXZR14,https://doi.org/10.1007/s10586-013-0245-z +Ajay K. Katangur,Analyzing the performance of optical multistage interconnection networks with limited crosstalk.,2007,10,Cluster Computing,2,db/journals/cluster/cluster10.html#KatangurAP07,https://doi.org/10.1007/s10586-007-0018-7 +Xuesong Yan,Research on contaminant sources identification of uncertainty water demand using genetic algorithm.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#YanJH17,https://doi.org/10.1007/s10586-017-0787-6 +Weirong Zhu,Performance portability on EARTH: a case study across several parallel architectures.,2007,10,Cluster Computing,2,db/journals/cluster/cluster10.html#ZhuNG07,https://doi.org/10.1007/s10586-007-0011-1 +Mahmoud Alewiwi,Efficient top-k similarity document search utilizing distributed file systems and cosine similarity.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#AlewiwiOS16,https://doi.org/10.1007/s10586-015-0506-0 +Jarek Nieplocha,Implementing noncollective parallel I/O in cluster environments using Active Message communication.,1999,2,Cluster Computing,4,db/journals/cluster/cluster2.html#NieplochaDF99,https://doi.org/10.1023/A:1019099213641 +Greg Eisenhauer,Event Services in High Performance Systems.,2001,4,Cluster Computing,3,db/journals/cluster/cluster4.html#EisenhauerBS01,https://doi.org/10.1023/A:1011402625260 +Jeongmin Kim,Design of user-centric semantic rights model for validation of user-generated content.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#KimCLCJS16,https://doi.org/10.1007/s10586-016-0578-5 +Sung-Yong Park,ACS: An adaptive communication system for heterogeneous wide-area ATM clusters.,1999,2,Cluster Computing,3,db/journals/cluster/cluster2.html#ParkH99,https://doi.org/10.1023/A:1019091011824 +Jieun Choi,Adaptive resource provisioning method using application-aware machine learning based on job history in heterogeneous infrastructures.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#ChoiK17,https://doi.org/10.1007/s10586-017-1148-1 +Myoungjin Kim,CloudDMSS: robust Hadoop-based multimedia streaming service architecture for a cloud computing environment.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#KimHCLCH14,https://doi.org/10.1007/s10586-014-0381-0 +Jong-Kook Kim,A flexible multi-dimensional QoS performance measure framework for distributed heterogeneous systems.,2006,9,Cluster Computing,3,db/journals/cluster/cluster9.html#KimHKSJILPPF06,https://doi.org/10.1007/s10586-006-9741-8 +Dae-Won Park,Multiple-domain marine data utilization structure for e-navigation.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#ParkP16,https://doi.org/10.1007/s10586-015-0521-1 +Viraj Bhat,A self-managing wide-area data streaming service.,2007,10,Cluster Computing,4,db/journals/cluster/cluster10.html#BhatPLKKKA07,https://doi.org/10.1007/s10586-007-0023-x +Thierry Villemur,Multimedia tools supporting the work of distributed synchronous cooperative groups.,1999,2,Cluster Computing,1,db/journals/cluster/cluster2.html#VillemurBOD99,https://doi.org/10.1023/A:1019006120485 +Songrong Luo,VPMCD based novelty detection method on and its application to fault identification for local characteristic-scale decomposition.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#LuoC17,https://doi.org/10.1007/s10586-017-0932-2 +Katarzyna Keahey,Developing and evaluating abstractions for distributed supercomputing.,1998,1,Cluster Computing,1,db/journals/cluster/cluster1.html#KeaheyG98,https://doi.org/10.1023/A:1019017028237 +Yong-Yeon Jo,High-performance data mining with intelligent SSD.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#JoKCBO17,https://doi.org/10.1007/s10586-017-0789-4 +Cláudio Sapateiro,Gathering big data for teamwork evaluation with microworlds.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#SapateiroAJP17,https://doi.org/10.1007/s10586-016-0715-1 +Bo Yang,A novel construction of SDVS with secure disavowability.,2013,16,Cluster Computing,4,db/journals/cluster/cluster16.html#YangYS13,https://doi.org/10.1007/s10586-013-0254-y +Bianca Schroeder,Evaluation of Task Assignment Policies for Supercomputing Servers: The Case for Load Unbalancing and Fairness.,2004,7,Cluster Computing,2,db/journals/cluster/cluster7.html#SchroderH04,https://doi.org/10.1023/B:CLUS.0000018564.05723.a2 +Youyuan Wang,An approach for Condition Based Maintenance strategy optimization oriented to multi-source data.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#WangLBWYZ16,https://doi.org/10.1007/s10586-016-0626-1 +Yuan Cheng,Meta-operation conflict resolution for human-human interaction in collaborative feature-based CAD systems.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#ChengHWZ16,https://doi.org/10.1007/s10586-016-0538-0 +Lynda Mokdad,"Special Issue: ""Performance evaluation of communications in distributed systems and Web based service architectures"".",2012,15,Cluster Computing,4,db/journals/cluster/cluster15.html#MokdadN12,https://doi.org/10.1007/s10586-011-0163-x +Xiaolong Xu,Distributed decentralized collaborative monitoring architecture for cloud infrastructures.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#XuCC17,https://doi.org/10.1007/s10586-016-0675-5 +Sung-Hwan Kim,An eigenvalue-based pivot selection strategy for efficient indexing and searching in metric spaces.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#KimLC17,https://doi.org/10.1007/s10586-017-1153-4 +Mark W. Burns,Simulative performance analysis of gossip failure detection for scalable distributed systems.,1999,2,Cluster Computing,3,db/journals/cluster/cluster2.html#BurnsGW99,https://doi.org/10.1023/A:1019086910915 +Nikela Papadopoulou,Predictive communication modeling for HPC applications.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#PapadopoulouGK17,https://doi.org/10.1007/s10586-017-0821-8 +Yosang Jeong,High performance parallelization of Boyer-Moore algorithm on many-core accelerators.,2015,18,Cluster Computing,3,db/journals/cluster/cluster18.html#JeongLNKH15,https://doi.org/10.1007/s10586-015-0466-4 +Daniela Rosu 0001,Web Proxy Acceleration.,2001,4,Cluster Computing,4,db/journals/cluster/cluster4.html#RosuID01,https://doi.org/10.1023/A:1011864611460 +Huaiming Song,Cost-intelligent application-specific data layout optimization for parallel file systems.,2013,16,Cluster Computing,2,db/journals/cluster/cluster16.html#SongYCS13,https://doi.org/10.1007/s10586-012-0200-4 +Sukhdeep Sodhi,Performance prediction with skeletons.,2008,11,Cluster Computing,2,db/journals/cluster/cluster11.html#SodhiSX08,https://doi.org/10.1007/s10586-007-0039-2 +T. Veeramakali,Intelligent dynamic spectrum allocation with bandwidth flexibility in cognitive radio network.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#VeeramakaliJP17,https://doi.org/10.1007/s10586-017-0864-x +Alok N. Choudhary,Data management for large-scale scientific computations in high performance distributed systems.,2000,3,Cluster Computing,1,db/journals/cluster/cluster3.html#ChoudharyKNMSLNMTTS00,https://doi.org/10.1023/A:1019063700437 +Han Zhao,A taxonomy of peer-to-peer desktop grid paradigms.,2011,14,Cluster Computing,2,db/journals/cluster/cluster14.html#ZhaoLL11,https://doi.org/10.1007/s10586-010-0138-3 +Dongjun Suh,Auto-localized multimedia platform based on a modular Cyber Physical System aligned in a two-dimensional grid.,2015,18,Cluster Computing,4,db/journals/cluster/cluster18.html#SuhJCKK15,https://doi.org/10.1007/s10586-015-0479-z +Alessandro Bogliolo,Self-adapting maximum flow routing for autonomous wireless sensor networks.,2011,14,Cluster Computing,1,db/journals/cluster/cluster14.html#BoglioloDLS11,https://doi.org/10.1007/s10586-009-0115-x +Jianfeng Li,A PR-quadtree based multi-dimensional indexing for complex query in a cloud system.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#LiCDN17,https://doi.org/10.1007/s10586-017-0928-y +Kwonyong Lee,A dynamic block device reconfiguration algorithm in virtual MapReduce cluster.,2014,17,Cluster Computing,4,db/journals/cluster/cluster17.html#LeeNKPLY14,https://doi.org/10.1007/s10586-014-0375-y +Yi Ding,Decision support based automatic container sequencing system using heuristic rules.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#DingWYG17,https://doi.org/10.1007/s10586-016-0678-2 +Felix Hupfeld,FaTLease: scalable fault-tolerant lease negotiation with Paxos.,2009,12,Cluster Computing,2,db/journals/cluster/cluster12.html#HupfeldKSHCMM09,https://doi.org/10.1007/s10586-009-0074-2 +Jörg Liebeherr,Editorial.,1999,2,Cluster Computing,1,db/journals/cluster/cluster2.html#Liebeherr99,https://doi.org/10.1023/A:1019049902738 +Zhuo Tang,CRFs based parallel biomedical named entity recognition algorithm employing MapReduce framework.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#TangJYLL15,https://doi.org/10.1007/s10586-015-0426-z +V. Mani,An Equivalent Tree Network Methodology for Efficient Utilization of Front-Ends in LinearNetwork.,2003,6,Cluster Computing,1,db/journals/cluster/cluster6.html#Mani03,https://doi.org/10.1023/A:1020919101196 +Jaehun Lee,Exploiting remote GPGPU in mobile devices.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#LeeCKHK16,https://doi.org/10.1007/s10586-016-0614-5 +Marco Conti,Content Delivery Policies in Replicated Web Services: Client-Side vs. Server-Side.,2005,8,Cluster Computing,1,db/journals/cluster/cluster8.html#ContiGL05,https://doi.org/10.1007/s10586-004-4436-5 +Amol Jaikar,Power efficient virtual machine migration in a scientific federated cloud.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#JaikarHKN15,https://doi.org/10.1007/s10586-015-0425-0 +Kyuman Jeong,Photo quality enhancement by relocating subjects.,2016,19,Cluster Computing,2,db/journals/cluster/cluster19.html#JeongC16,https://doi.org/10.1007/s10586-016-0547-z +Chunsheng Yang,Machine learning-based methods for analyzing grade crossing safety.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#YangTL17,https://doi.org/10.1007/s10586-016-0714-2 +Dieter Kranzlmüller,Preface.,2010,13,Cluster Computing,3,db/journals/cluster/cluster13.html#KranzlmullerCGS10,https://doi.org/10.1007/s10586-010-0137-4 +Sunyoung Kang,A healthcare information sharing scheme in distributed cloud networks.,2015,18,Cluster Computing,4,db/journals/cluster/cluster18.html#KangKJLK15,https://doi.org/10.1007/s10586-015-0488-y +Wassim Itani,G-Route: an energy-aware service routing protocol for green cloud computing.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#ItaniGKCE15,https://doi.org/10.1007/s10586-015-0443-y +Dung Xuan Thi Le,A high performance integrated web data warehousing.,2007,10,Cluster Computing,1,db/journals/cluster/cluster10.html#LeRT07,https://doi.org/10.1007/s10586-007-0008-9 +Lynda Mokdad,Stochastic bounds for composite Web services response *.,2012,15,Cluster Computing,4,db/journals/cluster/cluster15.html#MokdadY12,https://doi.org/10.1007/s10586-011-0155-x +Narendra Kumar Kamila,Pareto-based multi-objective optimization for classification in data mining.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#KamilaJB16,https://doi.org/10.1007/s10586-016-0643-0 +Kai Cui,Unsaturated dynamic constitutive model under cyclic loading.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#CuiZ17,https://doi.org/10.1007/s10586-017-0881-9 +Chao Jia,Susceptibility area regionalization of land subsidence based on extenics theory.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#JiaZHX17,https://doi.org/10.1007/s10586-016-0720-4 +Buseung Cho,CBR-based network performance management with multi-agent approach.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#ChoKC17,https://doi.org/10.1007/s10586-017-0762-2 +Joanna Kolodziej,Hierarchical genetic-based grid scheduling with energy optimization.,2013,16,Cluster Computing,3,db/journals/cluster/cluster16.html#KolodziejKWBMM13,https://doi.org/10.1007/s10586-012-0226-7 +Vikas Ashok Patil,Rack aware scheduling in HPC data centers: an energy conservation strategy.,2013,16,Cluster Computing,3,db/journals/cluster/cluster16.html#PatilC13,https://doi.org/10.1007/s10586-012-0224-9 +Hyungsoo Jung,PCS: a parity-based personal data recovery service in cloud.,2017,20,Cluster Computing,3,db/journals/cluster/cluster20.html#JungPSK17,https://doi.org/10.1007/s10586-017-0805-8 +Li Xu 0002,Software Service Signature (S3) for authentication in cloud computing.,2013,16,Cluster Computing,4,db/journals/cluster/cluster16.html#XuCZW13,https://doi.org/10.1007/s10586-013-0262-y +Antonio Gómez-Iglesias,Evolutionary computation and grid computing to optimise nuclear fusion devices.,2009,12,Cluster Computing,4,db/journals/cluster/cluster12.html#Gomez-IglesiasVCMM09,https://doi.org/10.1007/s10586-009-0101-3 +Qiang Huang,The risks assessment via a regional approach using multivariate regional frequency clustering method.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#HuangLG17,https://doi.org/10.1007/s10586-017-1126-7 +HwaMin Lee,FRASystem: fault tolerant system using agents in distributed computing systems.,2011,14,Cluster Computing,1,db/journals/cluster/cluster14.html#LeePYL11,https://doi.org/10.1007/s10586-009-0095-x +Wayne D. Grover,Combined Ring-Mesh Optical Transport Networks.,2004,7,Cluster Computing,3,db/journals/cluster/cluster7.html#GroverM04,https://doi.org/10.1023/B:CLUS.0000028003.65775.8d +Olivier Aumage,High Performance Computing on Heterogeneous Clusters with the Madeleine II Communication Library.,2002,5,Cluster Computing,1,db/journals/cluster/cluster5.html#AumageBEMNPDM02,https://doi.org/10.1023/A:1012792605138 +Mostafa I. Abd-El-Barr,A Heuristic-Based Wormhole Routing Algorithm for Hypercube Multicomputer Networks.,2001,4,Cluster Computing,3,db/journals/cluster/cluster4.html#Abd-El-BarrNA01,https://doi.org/10.1023/A:1011454709330 +Tatyana Ryutov,An authorization framework for metacomputing applications.,1999,2,Cluster Computing,2,db/journals/cluster/cluster2.html#RyutovGN99,https://doi.org/10.1023/A:1019078709098 +Ciprian Docan,DataSpaces: an interaction and coordination framework for coupled simulation workflows.,2012,15,Cluster Computing,2,db/journals/cluster/cluster15.html#DocanPK12,https://doi.org/10.1007/s10586-011-0162-y +Shunxiang Zhang,The automatic estimating method of the in-degree of nodes in associated semantic network oriented to big data.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#ZhangYH16,https://doi.org/10.1007/s10586-016-0658-6 +Jian-hua Huang,An energy-efficient multi-hop routing protocol based on grid clustering for wireless sensor networks.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#HuangHZY17,https://doi.org/10.1007/s10586-017-0993-2 +Long Zhao,K- local maximum margin feature extraction algorithm for churn prediction in telecom.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#ZhaoGDDD17,https://doi.org/10.1007/s10586-017-0843-2 +Yeong-Wha Sawng,Digital convergence service from the viewpoint of provider and user factors using technology acceptance and diffusion model.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#SawngLM15,https://doi.org/10.1007/s10586-014-0347-2 +Yanbing Liu,A behavioral anomaly detection strategy based on time series process portraits for desktop virtualization systems.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#LiuYXGXL15,https://doi.org/10.1007/s10586-015-0431-2 +Ming Tao,A multi-strategy collaborative prediction model for the runtime of online tasks in computing cluster/grid.,2011,14,Cluster Computing,2,db/journals/cluster/cluster14.html#TaoDZ11,https://doi.org/10.1007/s10586-010-0145-4 +Seong-Taek Park,Erratum to: Factors affecting the continuous use of cloud service: focused on security risks.,2016,19,Cluster Computing,2,db/journals/cluster/cluster19.html#ParkPSL16a,https://doi.org/10.1007/s10586-016-0572-y +FuYin Ni,UPQC voltage sag detection based on chaotic immune gentic algorithm.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#NiLWW17,https://doi.org/10.1007/s10586-016-0704-4 +Emmanuel N. Millán,Monte Carlo simulations of settlement dynamics in GPUs.,2016,19,Cluster Computing,1,db/journals/cluster/cluster19.html#MillanGPGAB16,https://doi.org/10.1007/s10586-015-0501-5 +Xinhui Xu,Research on spatial and temporal characteristics of drought based on GIS using Remote Sensing Big Data.,2016,19,Cluster Computing,2,db/journals/cluster/cluster19.html#XuXZ16,https://doi.org/10.1007/s10586-016-0556-y +Michal Kvet,Temporal transaction integrity constraints management.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#KvetM17,https://doi.org/10.1007/s10586-017-0740-8 +Shijian Wu,Optimal path for sustainable development under the dual constraints based on endogenous growth algorithm.,2017,20,Cluster Computing,4,db/journals/cluster/cluster20.html#WuZ17,https://doi.org/10.1007/s10586-017-0947-8 +Jun Ye,Secure outsourcing of modular exponentiations in cloud and cluster computing.,2016,19,Cluster Computing,2,db/journals/cluster/cluster19.html#YeXD16,https://doi.org/10.1007/s10586-016-0571-z +William E. Cohen,Hardware-Assisted Characterization of NAS Benchmarks.,2001,4,Cluster Computing,3,db/journals/cluster/cluster4.html#CohenGG01,https://doi.org/10.1023/A:1011442306605 +Wei Cao,CPU/GPU computing for a multi-block structured grid based high-order flow solver on a large heterogeneous system.,2014,17,Cluster Computing,2,db/journals/cluster/cluster17.html#CaoXWYL14,https://doi.org/10.1007/s10586-013-0332-1 +Jouni Markkula,Dynamic Geographic Personal Data - New Opportunity and Challenge Introduced by the Location-Aware Mobile Networks.,2001,4,Cluster Computing,4,db/journals/cluster/cluster4.html#Markkula01,https://doi.org/10.1023/A:1011885200073 +Zhengkai Wu,Classified power capping by network distribution trees for green computing.,2013,16,Cluster Computing,1,db/journals/cluster/cluster16.html#WuGW13,https://doi.org/10.1007/s10586-011-0173-8 +Min-Cheol Jeon,The analysis of doses and image at chest radiography using an Active Breathing Coordinator (ABC) system.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#JeonHLJYSK15,https://doi.org/10.1007/s10586-014-0410-z +Xiwei Zhao,Trend prediction of wear fault of wind generator high-speed gear using a fusion of UICA and PE method.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#ZhaoXZJL17,https://doi.org/10.1007/s10586-017-0733-7 +Peter H. Beckman,Benchmarking the effects of operating system interference on extreme-scale parallel machines.,2008,11,Cluster Computing,1,db/journals/cluster/cluster11.html#BeckmanIYCN08,https://doi.org/10.1007/s10586-007-0047-2 +Kyuman Jeong,Digital panning shot generator from photographs.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#JeongC15,https://doi.org/10.1007/s10586-014-0411-y +Salim Hariri,Cluster Computing - Editorial Organization.,1998,1,Cluster Computing,1,db/journals/cluster/cluster1.html#HaririR98a,https://doi.org/10.1023/A:1019004625511 +Mohamad Hoda,Cloud-based rehabilitation and recovery prediction system for stroke patients.,2015,18,Cluster Computing,2,db/journals/cluster/cluster18.html#HodaHHAE15,https://doi.org/10.1007/s10586-015-0448-6 +Heinz Stockinger,File and Object Replication in Data Grids.,2002,5,Cluster Computing,3,db/journals/cluster/cluster5.html#StockingerSHAFT02,https://doi.org/10.1023/A:1015681406220 +Xiaolin Li 0001,PPDD: scheduling multi-site divisible loads in single-level tree networks.,2010,13,Cluster Computing,1,db/journals/cluster/cluster13.html#LiV10,https://doi.org/10.1007/s10586-009-0103-1 +José Nelson Amaral,Exploiting Locality in Single Assignment Data Structures Updated Through Split-Phase Transactions.,2001,4,Cluster Computing,4,db/journals/cluster/cluster4.html#AmaralLGG01,https://doi.org/10.1023/A:1011808526481 +Kyeonah Yu,Efficient planning of NPC cluster movement in computer game environment.,2015,18,Cluster Computing,1,db/journals/cluster/cluster18.html#YuK15,https://doi.org/10.1007/s10586-014-0399-3 +S. Smys,Performance analysis of virtual clusters in personal communication networks.,2012,15,Cluster Computing,3,db/journals/cluster/cluster15.html#SmysB12,https://doi.org/10.1007/s10586-012-0209-8 +Sang Yeob Oh,Vocabulary optimization process using similar phoneme recognition and feature extraction.,2016,19,Cluster Computing,3,db/journals/cluster/cluster19.html#OhC16,https://doi.org/10.1007/s10586-016-0619-0 +Young-Seok Choi,Assessing multiscale permutation entropy for short electroencephalogram recordings.,2016,19,Cluster Computing,4,db/journals/cluster/cluster19.html#ChoiHC16,https://doi.org/10.1007/s10586-016-0648-8 +Yvan Peter,Object mobility in large scale systems.,2000,3,Cluster Computing,2,db/journals/cluster/cluster3.html#PeterG00,https://doi.org/10.1023/A:1019019918184 +Hans-Peter Dommel,Efficacy of floor control protocols in distributed multimedia collaboration.,1999,2,Cluster Computing,1,db/journals/cluster/cluster2.html#DommelG99,https://doi.org/10.1023/A:1019010221393 +Yoon-Su Jeong,High-dimensionality priority selection scheme of bioinformatics information using Bernoulli distribution.,2017,20,Cluster Computing,1,db/journals/cluster/cluster20.html#JeongSH17,https://doi.org/10.1007/s10586-016-0622-5 +Min Zhang,Fuzzy multi-objective and groups decision method in optimal selection of landslide treatment scheme.,2017,20,Cluster Computing,2,db/journals/cluster/cluster20.html#ZhangNLX17,https://doi.org/10.1007/s10586-017-0790-y +Namje Park,Implementation of load management application system using smart grid privacy policy in energy management service environment.,2014,17,Cluster Computing,3,db/journals/cluster/cluster17.html#ParkK14,https://doi.org/10.1007/s10586-014-0367-y +Konstantinos Chatzikokolakis 0001,Methods for Location Privacy: A comparative overview.,2017,1,Foundations and Trends in Privacy and Security,4,db/journals/ftsec/ftsec1.html#Chatzikokolakis17,https://doi.org/10.1561/3300000017 +Gang Tan,Principles and Implementation Techniques of Software-Based Fault Isolation.,2017,1,Foundations and Trends in Privacy and Security,3,db/journals/ftsec/ftsec1.html#Tan17,https://doi.org/10.1561/3300000013 +Sebastian Benthall,Contextual Integrity through the Lens of Computer Science.,2017,2,Foundations and Trends in Privacy and Security,1,db/journals/ftsec/ftsec2.html#BenthallGN17,https://doi.org/10.1561/3300000016 +Nancy A. Bonner,An Empirical Investigation of the Perceived Benefits of Agile Methodologies Using an Innovation-Theoretical model.,2016,27,J. Database Manag.,3,db/journals/jdm/jdm27.html#BonnerKNT16,https://doi.org/10.4018/JDM.2016070103 +Yeli Zhao,Cognitive Neuroscience in Information Systems Research.,2016,27,J. Database Manag.,1,db/journals/jdm/jdm27.html#ZhaoS16,https://doi.org/10.4018/JDM.2016010103 +Henry H. Bi,Toward a Formal Semantics for Control-Flow Process Models.,2012,23,J. Database Manag.,2,db/journals/jdm/jdm23.html#BiN12,https://doi.org/10.4018/jdm.2012040104 +Ramzi A. Haraty,Regression Testing of Database Applications.,2002,13,J. Database Manag.,2,db/journals/jdm/jdm13.html#HaratyMD02,https://doi.org/10.4018/jdm.2002040103 +Keng Siau,Mobile Collaboration Support for Virtual Teams: The Case of Virtual Information Systems Development Teams.,2017,28,J. Database Manag.,3,db/journals/jdm/jdm28.html#SiauL17,https://doi.org/10.4018/JDM.2017070103 +Myung Keun Shin,Relaxing Queries with Hierarchical Quantified Data Abstraction.,2008,19,J. Database Manag.,4,db/journals/jdm/jdm19.html#ShinHPL08,https://doi.org/10.4018/jdm.2008100103 +Colleen Cunningham,Data Warehouse Design to Support Customer Relationship Management Analysis.,2006,17,J. Database Manag.,2,db/journals/jdm/jdm17.html#CunninghamSC06,https://doi.org/10.4018/jdm.2006040104 +Markus Endres,Parallel Skyline Computation Exploiting the Lattice Structure.,2015,26,J. Database Manag.,4,db/journals/jdm/jdm26.html#EndresK15,https://doi.org/10.4018/JDM.2015100102 +Dov Dori,Object-Process Methodology Applied to Modeling Credit Card Transactions.,2001,12,J. Database Manag.,1,db/journals/jdm/jdm12.html#Dori01,https://doi.org/10.4018/jdm.2001010101 +Frédérique Laforest,Using Weakly Structured Documents to Fill in a Classical Database.,2001,12,J. Database Manag.,2,db/journals/jdm/jdm12.html#LaforestF01,https://doi.org/10.4018/jdm.2001040101 +Stefan Koch,Exploring the Effects of Process Characteristics on Products Quality in Open Source Software Development.,2008,19,J. Database Manag.,2,db/journals/jdm/jdm19.html#KochN08,https://doi.org/10.4018/jdm.2008040102 +Hiroshi Wada,Leveraging Early Aspects in End-to-End Model Driven Development for Non-Functional Properties in Service Oriented Architecture.,2011,22,J. Database Manag.,2,db/journals/jdm/jdm22.html#WadaSO11,https://doi.org/10.4018/jdm.2011040104 +Paul L. Bowen,Ex Ante Evaluations of Alternate Data Structures for End User Queries: Theory and Experimental Test.,2004,15,J. Database Manag.,4,db/journals/jdm/jdm15.html#BowenRB04,https://doi.org/10.4018/jdm.2004100103 +Yong Hu,Temporal Data Management and Processing with Column Oriented NoSQL Databases.,2015,26,J. Database Manag.,3,db/journals/jdm/jdm26.html#HuD15,https://doi.org/10.4018/JDM.2015070103 +Aymeric Dussart,An Evaluation of Inter-Organizational Workflow Modeling Formalisms.,2004,15,J. Database Manag.,2,db/journals/jdm/jdm15.html#DussartAP04,https://doi.org/10.4018/jdm.2004040104 +Marco Crasso,A Survey of Approaches to Web Service Discovery in Service-Oriented Architectures.,2011,22,J. Database Manag.,1,db/journals/jdm/jdm22.html#CrassoZC11,https://doi.org/10.4018/jdm.2011010105 +Youssef Amghar,Using Business Rules within a Design Process of Active Databases.,2000,11,J. Database Manag.,3,db/journals/jdm/jdm11.html#AmgharMF00,https://doi.org/10.4018/jdm.2000070101 +Gove N. Allen,Modeling Temporal Dynamics for Business Systems.,2003,14,J. Database Manag.,3,db/journals/jdm/jdm14.html#AllenM03,https://doi.org/10.4018/jdm.2003070102 +Dickson K. W. Chiu,Service Composition and Interaction in a SOC Middleware Supporting Separation of Concerns with Flows and Views.,2011,22,J. Database Manag.,2,db/journals/jdm/jdm22.html#ChiuLHSCYF11,https://doi.org/10.4018/jdm.2011040102 +Andrew Gemino,Use Case Diagrams in Support of Use Case Modeling: Deriving Understanding from the Picture.,2009,20,J. Database Manag.,1,db/journals/jdm/jdm20.html#GeminoP09,https://doi.org/10.4018/jdm.2009010101 +Yu Jiao,Application of Mobile Agents in Mobile Data Access Systems: A Prototype.,2004,15,J. Database Manag.,4,db/journals/jdm/jdm15.html#JiaoH04,https://doi.org/10.4018/jdm.2004100101 +Manhoi Choy,Distributed Database Design for Mobile Geographical Applications.,2000,11,J. Database Manag.,1,db/journals/jdm/jdm11.html#ChoyKL00,https://doi.org/10.4018/jdm.2000010101 +Z. M. Ma,A Conceptual Design Methodology for Fuzzy Relational Databases.,2005,16,J. Database Manag.,2,db/journals/jdm/jdm16.html#Ma05,https://doi.org/10.4018/jdm.2005040104 +Galia Shlezinger,Modeling Design Patterns for Semi-Automatic Reuse in System Design.,2010,21,J. Database Manag.,1,db/journals/jdm/jdm21.html#ShlezingerRD10,https://doi.org/10.4018/jdm.2010112302 +Mitchell L. Bostelman,The American Society for Engineering Education's Use of Web-based Technology to Promote Excellence in Engineering Education.,1998,9,J. Database Manag.,1,db/journals/jdm/jdm9.html#BostelmanC98, +Arijit Sengupta,Designing Document SQL (DSQL): An Accessible yet Comprehensive Ad-Hoc Querying Frontend for Query.,2009,20,J. Database Manag.,4,db/journals/jdm/jdm20.html#SenguptaR09,https://doi.org/10.4018/jdm.2009062502 +Zhiyuan Chen 0003,Semantic Integration and Knowledge Discovery for Environmental Research.,2007,18,J. Database Manag.,1,db/journals/jdm/jdm18.html#ChenGKMW07,https://doi.org/10.4018/jdm.2007010103 +Ramesh Subramanian,Processing III-Defined Spatial Operators in Geographic Databases: A Common Sense Approach.,1999,10,J. Database Manag.,1,db/journals/jdm/jdm10.html#Subramanian99,https://doi.org/10.4018/jdm.1999010102 +Paolo Atzeni,Database Cooperation: Classification and Middleware Tools.,2000,11,J. Database Manag.,2,db/journals/jdm/jdm11.html#AtzeniCM00,https://doi.org/10.4018/jdm.2000040101 +Amel Mammar,UB2SQL: A Tool for Building Database Applications Using UML and B Formal Method.,2006,17,J. Database Manag.,4,db/journals/jdm/jdm17.html#MammarL06,https://doi.org/10.4018/jdm.2006100104 +Balaji Rajagopalan,Benchmarking Data Mining Algorithms.,2002,13,J. Database Manag.,1,db/journals/jdm/jdm13.html#RajagopalanK02,https://doi.org/10.4018/jdm.2002010103 +Kyoung-Il Bae,Federated Process Framework in a Virtual Enterprise Using an Object-oriented Database and Extensible Markup Language.,2003,14,J. Database Manag.,1,db/journals/jdm/jdm14.html#BaeKH03,https://doi.org/10.4018/jdm.2003010102 +Fábio Porto,Modeling and Implementing Scientific Hypothesis.,2015,26,J. Database Manag.,2,db/journals/jdm/jdm26.html#PortoCMG15,https://doi.org/10.4018/JDM.2015040101 +Ryan H. Choi,Efficient Filtering of Branch Queries for High-Performance XML Data Services.,2009,20,J. Database Manag.,2,db/journals/jdm/jdm20.html#ChoiW09,https://doi.org/10.4018/jdm.2009040104 +Ladjel Bellatreche,Effectively and Efficiently Designing and Querying Parallel Relational Data Warehouses on Heterogeneous Database Clusters: The F and A Approach.,2012,23,J. Database Manag.,4,db/journals/jdm/jdm23.html#BellatrecheCB12,https://doi.org/10.4018/jdm.2012100102 +Soon-Young Huh,An Integrated Query Relaxation Approach Adopting Data Abstraction and Fuzzy Relation.,2010,21,J. Database Manag.,4,db/journals/jdm/jdm21.html#HuhMP10,https://doi.org/10.4018/jdm.2010100103 +Dinesh Batra,An Event-Oriented Data Modeling Technique Based on the Cognitive Semantics Theory.,2012,23,J. Database Manag.,4,db/journals/jdm/jdm23.html#Batra12,https://doi.org/10.4018/jdm.2012100103 +Rick L. Wilson,Protecting Data through Perturbation Techniques: The Impact on Knowledge Discovery in Databases.,2003,14,J. Database Manag.,2,db/journals/jdm/jdm14.html#WilsonR03,https://doi.org/10.4018/jdm.2003040102 +Carlo Batini,From Data Quality to Big Data Quality.,2015,26,J. Database Manag.,1,db/journals/jdm/jdm26.html#BatiniRSV15,https://doi.org/10.4018/JDM.2015010103 +Soon-Young Huh,Providing Approximate Answers Using a Knowledge Abstraction Database.,2001,12,J. Database Manag.,2,db/journals/jdm/jdm12.html#HuhL01,https://doi.org/10.4018/jdm.2001040102 +Juan Trujillo,Applying UML and XML for designing and interchanging information for data warehouses and OLAP applications.,2004,15,J. Database Manag.,1,db/journals/jdm/jdm15.html#TrujilloLS04,https://doi.org/10.4018/jdm.2004010102 +Ye Chen,Ontology-Supported Web Service Composition: An Approach to Service-Oriented Knowledge Management in Corporate Services.,2006,17,J. Database Manag.,1,db/journals/jdm/jdm17.html#ChenZZ06,https://doi.org/10.4018/jdm.2006010105 +Shirley A. Becker,A Practical Perspective on Data Quality Issues.,1998,9,J. Database Manag.,1,db/journals/jdm/jdm9.html#Becker98,https://doi.org/10.4018/jdm.1998010105 +Petri Selonen,Transformation Between UML Diagrams.,2003,14,J. Database Manag.,3,db/journals/jdm/jdm14.html#SelonenKS03,https://doi.org/10.4018/jdm.2003070103 +Christoph Rosenkranz,Using the Viable System Model for Methodical Assessment of Variety in Organizations: The Story of Designing a Method.,2013,24,J. Database Manag.,3,db/journals/jdm/jdm24.html#RosenkranzH13,https://doi.org/10.4018/jdm.2013070102 +Keng Siau,A Meta-Analysis Comparing Relational and Semantic Models.,2011,22,J. Database Manag.,4,db/journals/jdm/jdm22.html#SiauNC11,https://doi.org/10.4018/jdm.2011100103 +Te-Wei Wang,Semantic Heterogeneity in Multidatabase Systems: A Review and a Proposed Meta-Data Structure.,2004,15,J. Database Manag.,4,db/journals/jdm/jdm15.html#WangM04,https://doi.org/10.4018/jdm.2004100104 +Irit Askira Gelman,A Model of Error Propagation in Conjunctive Decisions and its Application to Database Quality Management.,2012,23,J. Database Manag.,1,db/journals/jdm/jdm23.html#Gelman12,https://doi.org/10.4018/jdm.2012010105 +Sandeep Purao,Truth or Dare: The Ontology Question in Design Science Research.,2013,24,J. Database Manag.,3,db/journals/jdm/jdm24.html#Purao13,https://doi.org/10.4018/jdm.2013070104 +Praveen Madiraju,Semantic Integrity Constraint Checking for Multiple XML Databases.,2006,17,J. Database Manag.,4,db/journals/jdm/jdm17.html#MadirajuSNW06,https://doi.org/10.4018/jdm.2006100101 +Keng Siau,Information Modeling and Method Engineering: A Psychological Perspective.,1999,10,J. Database Manag.,4,db/journals/jdm/jdm10.html#Siau99,https://doi.org/10.4018/jdm.1999100105 +Yang W. Lee,Process-Embedded Data Integrity.,2004,15,J. Database Manag.,1,db/journals/jdm/jdm15.html#LeePSW04,https://doi.org/10.4018/jdm.2004010104 +Mala Kaul,A Framework for Managing Complexity in Information Systems.,2017,28,J. Database Manag.,1,db/journals/jdm/jdm28.html#KaulSW17,https://doi.org/10.4018/JDM.2017010103 +Pnina Soffer,Refinement Equivalence in Model-Based Reuse: Overcoming Differences in Abstraction Level.,2005,16,J. Database Manag.,3,db/journals/jdm/jdm16.html#Soffer05,https://doi.org/10.4018/jdm.2005070102 +Alexander Hars,Natural Language-Enabled Data Modeling: Improving Validation and Integration.,1998,9,J. Database Manag.,2,db/journals/jdm/jdm9.html#Hars98,https://doi.org/10.4018/jdm.1998040102 +Scott J. Lloyd,RORIB: An Economic and Efficient Solution for Real-Time Online Remote Info Backup.,2003,14,J. Database Manag.,3,db/journals/jdm/jdm14.html#LloydPLY03,https://doi.org/10.4018/jdm.2003070104 +Palash Bera,Using Ontology Languages for Conceptual Modeling.,2010,21,J. Database Manag.,1,db/journals/jdm/jdm21.html#BeraKW10,https://doi.org/10.4018/jdm.2010112301 +Akhilesh Bajaj,CMU-WEB: A Conceptual Model for Designing Usable Web Applications.,1999,10,J. Database Manag.,4,db/journals/jdm/jdm10.html#BajajK99,https://doi.org/10.4018/jdm.1999100104 +Thomas Ernest Allen,A Personal Perspective on the Use of Computing Technology.,1998,9,J. Database Manag.,3,db/journals/jdm/jdm9.html#Allen98, +Yuan Long,Social Network Structures in Open Source Software Development Teams.,2007,18,J. Database Manag.,2,db/journals/jdm/jdm18.html#LongS07,https://doi.org/10.4018/jdm.2007040102 +Heeseok Lee,A View-Based Hypermedia Design Methodology.,1999,10,J. Database Manag.,2,db/journals/jdm/jdm10.html#LeeKK99,https://doi.org/10.4018/jdm.1999040101 +Terry A. Halpin,Data Modeling in UML and ORM: A Comparison.,1999,10,J. Database Manag.,4,db/journals/jdm/jdm10.html#HalpinB99,https://doi.org/10.4018/jdm.1999100101 +Dinesh Batra,Novice Designer Performance Comparison Between the Entity Relationship Event Network and the Event-Based Logical Relational Design Techniques.,2014,25,J. Database Manag.,3,db/journals/jdm/jdm25.html#BatraW14,https://doi.org/10.4018/jdm.2014070101 +Keng Siau,Theoretical vs. Practical Complexity: The Case of UML.,2005,16,J. Database Manag.,3,db/journals/jdm/jdm16.html#SiauEL05,https://doi.org/10.4018/jdm.2005070103 +Zina Ben-Miled,BACIIS: Biological and Chemical Information Integration System.,2005,16,J. Database Manag.,3,db/journals/jdm/jdm16.html#Ben-MiledLB05,https://doi.org/10.4018/jdm.2005070105 +Bijoy Bordoloi,Desirable Characteristics of Information Resource Dictionary Systems.,1998,9,J. Database Manag.,2,db/journals/jdm/jdm9.html#BordoloiSL98,https://doi.org/10.4018/jdm.1998040101 +Witold Andrzejewski,Parallel GPU-based Plane-Sweep Algorithm for Construction of iCPI-Trees.,2015,26,J. Database Manag.,3,db/journals/jdm/jdm26.html#AndrzejewskiB15,https://doi.org/10.4018/JDM.2015070101 +Athman Bouguettaya,A Scalable Middleware for Web Databases.,2006,17,J. Database Manag.,4,db/journals/jdm/jdm17.html#BouguettayaMRK06,https://doi.org/10.4018/jdm.2006100102 +G. C. Philip,Normalization of Relations with Nulls in Candidate Keys.,2002,13,J. Database Manag.,3,db/journals/jdm/jdm13.html#Philip02,https://doi.org/10.4018/jdm.2002070103 +K. Vidyasankar,Multi-Level Modeling of Web Service Compositions with Transactional Properties.,2011,22,J. Database Manag.,2,db/journals/jdm/jdm22.html#VidyasankarV11,https://doi.org/10.4018/jdm.2011040101 +Jun Liu 0032,Improving the Domain Independence of Data Provenance Ontologies: A Demonstration Using Conceptual Graphs and the W7 Model.,2017,28,J. Database Manag.,1,db/journals/jdm/jdm28.html#LiuR17,https://doi.org/10.4018/JDM.2017010104 +Kamal Masri,Using Iconic Graphics in Entity-Relationship Diagrams: The Impact on Understanding.,2008,19,J. Database Manag.,3,db/journals/jdm/jdm19.html#MasriPG08,https://doi.org/10.4018/jdm.2008070102 +Ismail H. Toroslu,View Maintenance for Materialized Transitive-Closure Relations.,1998,9,J. Database Manag.,1,db/journals/jdm/jdm9.html#Toroslu98,https://doi.org/10.4018/jdm.1998010101 +David Olsen,An Empirical Analysis of the Object-Oriented Database Concurrency Control Mechanism O2C2.,1999,10,J. Database Manag.,2,db/journals/jdm/jdm10.html#OlsenR99,https://doi.org/10.4018/jdm.1999040102 +João de Sousa Saraiva,Evaluation of MDE Tools from a Metamodeling Perspective.,2008,19,J. Database Manag.,4,db/journals/jdm/jdm19.html#SaraivaS08,https://doi.org/10.4018/jdm.2008100102 +Christopher Jones,Discovering Objects: Which Identification and Refinement Strategies Do Analysts Really Use?,1998,9,J. Database Manag.,3,db/journals/jdm/jdm9.html#JonesHL98,https://doi.org/10.4018/jdm.1998070101 +A. N. W. Dahanayake,Methodology Evaluation Framework for Component-Based System Development.,2003,14,J. Database Manag.,1,db/journals/jdm/jdm14.html#DahanayakeSS03,https://doi.org/10.4018/jdm.2003010101 +RadhaKanta Mahapatra,Adoption and Use of Open Source Infrastructure Software by Large Corporations: The Case of MySQL.,2015,26,J. Database Manag.,4,db/journals/jdm/jdm26.html#MahapatraMB15,https://doi.org/10.4018/JDM.2015100101 +Marko Junkkari,Path Expressions in SQL: A User Study on Query Formulation.,2016,27,J. Database Manag.,3,db/journals/jdm/jdm27.html#JunkkariVIAKK16,https://doi.org/10.4018/JDM.2016070101 +Matti Rossi,Design Science Research: The Road Traveled and the Road That Lies Ahead.,2013,24,J. Database Manag.,3,db/journals/jdm/jdm24.html#RossiHLS13,https://doi.org/10.4018/jdm.2013070101 +Francesco Di Tria,Benchmark for Approximate Query Answering Systems.,2015,26,J. Database Manag.,1,db/journals/jdm/jdm26.html#TriaLT15,https://doi.org/10.4018/JDM.2015010101 +Jian Cai,Knowledge Management Within Collaboration Processes: A Perspective Modeling and Analyzing Methodology.,2006,17,J. Database Manag.,1,db/journals/jdm/jdm17.html#Cai06,https://doi.org/10.4018/jdm.2006010103 +Joon-Ho Woo,Temporal Aggregation Using a Multidimensional Index.,2007,18,J. Database Manag.,2,db/journals/jdm/jdm18.html#WooLLLW07,https://doi.org/10.4018/jdm.2007040104 +Arlie Hall,Information Management and Lean Manufacturing.,1999,10,J. Database Manag.,1,db/journals/jdm/jdm10.html#Hall99, +Wim Laurier,Research Note: Ontology-Based Structuring of Conceptual Data Modeling Patterns.,2012,23,J. Database Manag.,3,db/journals/jdm/jdm23.html#LaurierP12,https://doi.org/10.4018/jdm.2012070103 +Fiona Fui-Hoon Nah,Impact of Flow and Brand Equity in 3D Virtual Worlds.,2010,21,J. Database Manag.,3,db/journals/jdm/jdm21.html#NahEDP10,https://doi.org/10.4018/jdm.2010070103 +Kamal Taha,OOXKSearch: A Search Engine for Answering XML Keyword and Loosely Structured Queries Using OO Techniques.,2009,20,J. Database Manag.,3,db/journals/jdm/jdm20.html#TahaE09,https://doi.org/10.4018/jdm.2009070102 +Mira Balaban,Enhancing the ER Model with Integrity Methods Information Management Systems.,1999,10,J. Database Manag.,4,db/journals/jdm/jdm10.html#BalabanS99,https://doi.org/10.4018/jdm.1999100102 +Keng Siau,Relationship Construct in Modeling Information Systems: Identifying Relationship Based on Relation Element Theory - Editorial Preface.,2004,15,J. Database Manag.,3,db/journals/jdm/jdm15.html#Siau04b, +Huimin Zhao,Elitist and Ensemble Strategies for Cascade Generalization.,2006,17,J. Database Manag.,3,db/journals/jdm/jdm17.html#ZhaoSR06,https://doi.org/10.4018/jdm.2006070105 +Keng Siau,Enterprise Resource Planning (ERP) Implementation Methodologies - Editorial Preface.,2004,15,J. Database Manag.,1,db/journals/jdm/jdm15.html#Siau04, +Geert Poels,Investigating Goal-Oriented Requirements Engineering for Business Processes.,2013,24,J. Database Manag.,2,db/journals/jdm/jdm24.html#PoelsDRS13,https://doi.org/10.4018/jdm.2013040103 +Wilfred Ng,The Development of Ordered SQL Packages to Support Data Warehousing.,2001,12,J. Database Manag.,4,db/journals/jdm/jdm12.html#NgL01,https://doi.org/10.4018/jdm.2001100103 +Fabio Grandi,Temporal Interoperability in Multi+ Temporal Databases.,1998,9,J. Database Manag.,1,db/journals/jdm/jdm9.html#Grandi98,https://doi.org/10.4018/jdm.1998010102 +Hong Zhang,Semantics of the MibML Conceptual Modeling Grammar: An Ontological Analysis Using the Bunge-Wang-Weber Framework.,2007,18,J. Database Manag.,1,db/journals/jdm/jdm18.html#ZhangKR07,https://doi.org/10.4018/jdm.2007010101 +Keng Siau,Co-creation and Collaboration in a Virtual World: A 3D Visualization Design Project in Second Life.,2010,21,J. Database Manag.,4,db/journals/jdm/jdm21.html#SiauNMS10,https://doi.org/10.4018/jdm.2010100101 +Ralph Foorthuis,Compliance Assessments of Projects Adhering to Enterprise Architecture.,2012,23,J. Database Manag.,2,db/journals/jdm/jdm23.html#FoorthuisHBB12,https://doi.org/10.4018/jdm.2012040103 +Heeseok Lee,A Metadata Oriented Architecture for Building Datawarehouse.,2001,12,J. Database Manag.,4,db/journals/jdm/jdm12.html#LeeKK01,https://doi.org/10.4018/jdm.2001100102 +Akhilesh Bajaj,IAIS: A Methodology to Enable Inter-Agency Information Sharing In eGovernment.,2003,14,J. Database Manag.,4,db/journals/jdm/jdm14.html#BajajR03,https://doi.org/10.4018/jdm.2003100104 +W. Suh,Hypermedia Document Management: A Metadata and Meta-Information System.,2001,12,J. Database Manag.,2,db/journals/jdm/jdm12.html#SuhL01,https://doi.org/10.4018/jdm.2001040103 +Huimin Zhou,Clustering Schema Elements for Semantic Integration of Heterogeneous Data Sources.,2004,15,J. Database Manag.,4,db/journals/jdm/jdm15.html#ZhouR04,https://doi.org/10.4018/jdm.2004100105 +Pericles Loucopoulos,BROOD: Business Rules-driven Object Oriented Design.,2008,19,J. Database Manag.,1,db/journals/jdm/jdm19.html#LoucopoulosW08,https://doi.org/10.4018/jdm.2008010103 +Qing Wang,Scaling with Confidence: Entity Resolution under Weighted Constraints.,2015,26,J. Database Manag.,3,db/journals/jdm/jdm26.html#WangS15,https://doi.org/10.4018/JDM.2015070104 +Aykut Firat,General Strategy for Querying Web Sources in a Data Federation Environment.,2009,20,J. Database Manag.,2,db/journals/jdm/jdm20.html#FiratWM09,https://doi.org/10.4018/jdm.2009092201 +Hock Chuan Chan,An Alternative Fit through Problem Representation in Cognitive Fit Theory.,2012,23,J. Database Manag.,2,db/journals/jdm/jdm23.html#ChanGK12,https://doi.org/10.4018/jdm.2012040102 +Palash Bera,The Effects of Construct Redundancy on Readers' Understanding of Conceptual Models.,2017,28,J. Database Manag.,3,db/journals/jdm/jdm28.html#BeraP17,https://doi.org/10.4018/JDM.2017070101 +Iris Reinhartz-Berger,Enhancing UML Models: A Domain Analysis Approach.,2008,19,J. Database Manag.,1,db/journals/jdm/jdm19.html#Reinhartz-BergerS08,https://doi.org/10.4018/jdm.2008010104 +William R. King,The Critical Role of Information Processing in Creating an Effective Knowledge Organization.,2006,17,J. Database Manag.,1,db/journals/jdm/jdm17.html#King06,https://doi.org/10.4018/jdm.2006010101 +Fred D. Rolland,The Essence of Databases.,1998,9,J. Database Manag.,3,db/journals/jdm/jdm9.html#Rolland98, +G. Daryl Nord,An Investigation of the Impact of Organization Size on Data Quality Issues.,2005,16,J. Database Manag.,3,db/journals/jdm/jdm16.html#NordNX05,https://doi.org/10.4018/jdm.2005070104 +Fiona Fui-Hoon Nah,Empirical Assessment of Factors Influencing Success of Enterprise Resource Planning Implementations.,2007,18,J. Database Manag.,4,db/journals/jdm/jdm18.html#NahIT07,https://doi.org/10.4018/jdm.2007100102 +Cecil Chua Eng Huang,Knowledge Representation: A Conceptual Modeling Approach.,2012,23,J. Database Manag.,1,db/journals/jdm/jdm23.html#HuangSC12,https://doi.org/10.4018/jdm.2012010101 +Keng Siau,Toward a Unified Model of Information Systems Development Success.,2010,21,J. Database Manag.,1,db/journals/jdm/jdm21.html#SiauLL10,https://doi.org/10.4018/jdm.2010112304 +Yair Wand,Thirty Years Later: Some Reflections on Ontological Analysis in Conceptual Modeling.,2017,28,J. Database Manag.,1,db/journals/jdm/jdm28.html#WandW17,https://doi.org/10.4018/JDM.2017010101 +Shi-Ming Huang,Enterprise Application System Reengineering: A Business Component Approach.,2006,17,J. Database Manag.,3,db/journals/jdm/jdm17.html#HuangHYLW06,https://doi.org/10.4018/jdm.2006070104 +Jun Pyo Park,Energy and Latency Efficient Access of Wireless XML Stream.,2010,21,J. Database Manag.,1,db/journals/jdm/jdm21.html#ParkPC10,https://doi.org/10.4018/jdm.2010112303 +Joerg Evermann,Ontology Based Object-Oriented Domain Modeling: Representing Behavior.,2009,20,J. Database Manag.,1,db/journals/jdm/jdm20.html#EvermannW09,https://doi.org/10.4018/jdm.2009010103 +Shi-Ming Huang,A Space-Efficient Protocol for Consistency of External View Maintenance on Data Warehouse Systems: A Proxy Approach.,2007,18,J. Database Manag.,3,db/journals/jdm/jdm18.html#HuangYH07,https://doi.org/10.4018/jdm.2007070102 +Yair Wand,Reflection: Ontology in Information Systems - Foreword.,2004,15,J. Database Manag.,2,db/journals/jdm/jdm15.html#WandW04, +Deepak Kulkarni,Integrated Functional and Executional Modeling of Software Using Web-Based Databases.,1998,9,J. Database Manag.,4,db/journals/jdm/jdm9.html#KulkarniM98,https://doi.org/10.4018/jdm.1998100102 +James E. Wyse,Location-Aware Query Resolution for Location-Based Mobile Commerce: Performance Evaluation and Optimization.,2006,17,J. Database Manag.,3,db/journals/jdm/jdm17.html#Wyse06,https://doi.org/10.4018/jdm.2006070103 +Ling He,Disclosure Control of Confidential Data by Applying Pac Learning Theory.,2010,21,J. Database Manag.,4,db/journals/jdm/jdm21.html#HeAK10,https://doi.org/10.4018/jdm.2010100106 +Asuman Dogac,Issues in Mobile Electronic Commerce.,2002,13,J. Database Manag.,1,db/journals/jdm/jdm13.html#DogacT02,https://doi.org/10.4018/jdm.2002010104 +Chiang Lee,A Prediction-Based Query Processing Strategy in Mobile Commerce Systems.,2001,12,J. Database Manag.,3,db/journals/jdm/jdm12.html#LeeK01,https://doi.org/10.4018/jdm.2001070102 +Mehmet N. Aydin,On the Adaptation of an Agile Information Systems Development Method.,2005,16,J. Database Manag.,4,db/journals/jdm/jdm16.html#AydinHSS05,https://doi.org/10.4018/jdm.2005100102 +András A. Benczúr,Towards a Normal Form and a Query Language for Extended Relations Defined by Regular Expressions.,2016,27,J. Database Manag.,2,db/journals/jdm/jdm27.html#BenczurS16,https://doi.org/10.4018/JDM.2016040102 +Veda C. Storey,The Quality of Online Privacy Policies: A Resource-Dependency Perspective.,2009,20,J. Database Manag.,2,db/journals/jdm/jdm20.html#StoreyKS09,https://doi.org/10.4018/jdm.2009040102 +Keng Siau,Informational and Computational Equivalence in Comparing Information Modeling Methods.,2004,15,J. Database Manag.,1,db/journals/jdm/jdm15.html#Siau04a,https://doi.org/10.4018/jdm.2004010103 +Brian Henderson-Sellers,The Use of Subtypes and Stereotypes in the UML Model.,2002,13,J. Database Manag.,2,db/journals/jdm/jdm13.html#Henderson-Sellers02,https://doi.org/10.4018/jdm.2002040104 +Venugopal Balijepally,Agility in Software Development and Project Value: An Empirical Investigation.,2017,28,J. Database Manag.,4,db/journals/jdm/jdm28.html#BalijepallyDSN17,https://doi.org/10.4018/JDM.2017100103 +Sutee Sujitparapitaya,The Contribution of IT Governance Solutions to the Implementation of Data Warehouse Practice.,2003,14,J. Database Manag.,2,db/journals/jdm/jdm14.html#SujitparapitayaJG03,https://doi.org/10.4018/jdm.2003040105 +Kaiping Liu,Automated Insertion of Exception Handling for Key and Referential Constraints.,2013,24,J. Database Manag.,1,db/journals/jdm/jdm24.html#LiuTC13,https://doi.org/10.4018/jdm.2013010101 +Jihae Suh,Effects of Domain Familiarity on Conceptual Modeling Performance.,2017,28,J. Database Manag.,2,db/journals/jdm/jdm28.html#SuhP17,https://doi.org/10.4018/JDM.2017040102 +Nenad Jukic,Enhancing Database Access Control by Facilitating Non-Key Related Cover Stories.,2005,16,J. Database Manag.,3,db/journals/jdm/jdm16.html#JukicNVP05,https://doi.org/10.4018/jdm.2005070101 +Shirley A. Becker,Initiating Change in Documentation Practices.,1998,9,J. Database Manag.,2,db/journals/jdm/jdm9.html#Becker98a,https://doi.org/10.4018/jdm.1998040104 +Ron Weber,Conceptual Modeling and Ontology: Possibilities and Pitfalls.,2003,14,J. Database Manag.,3,db/journals/jdm/jdm14.html#Weber03,https://doi.org/10.4018/jdm.2003070101 +Alejandro Maté,A Novel Multidimensional Approach to Integrate Big Data in Business Intelligence.,2015,26,J. Database Manag.,2,db/journals/jdm/jdm26.html#MateLGTGMT15,https://doi.org/10.4018/JDM.2015040102 +Kjetil Nørvåg,Issues in Transaction-Time Temporal Object Database Systems.,2001,12,J. Database Manag.,4,db/journals/jdm/jdm12.html#Norvag01,https://doi.org/10.4018/jdm.2001100104 +Christophe Nicolle,XML Integration and Toolkit for B2B Applications.,2003,14,J. Database Manag.,4,db/journals/jdm/jdm14.html#NicolleYS03,https://doi.org/10.4018/jdm.2003100103 +Mohammad Ali Jabbari Sabegh,Combined Use of Conceptual Models in Practice: An Exploratory Study.,2017,28,J. Database Manag.,2,db/journals/jdm/jdm28.html#SabeghR17,https://doi.org/10.4018/JDM.2017040103 +Mark L. Gillenson,Database and the Web.,1998,9,J. Database Manag.,3,db/journals/jdm/jdm9.html#Gillenson98,https://doi.org/10.4018/jdm.1998070105 +Hock Chuan Chan,Data Modeling: An Ontological Perspective of Pointers.,2014,25,J. Database Manag.,4,db/journals/jdm/jdm25.html#ChanTT14,https://doi.org/10.4018/JDM.2014100102 +Henry M. Kim,A Measurement Ontology Generalizable for Emerging Domain Applications on the Semantic Web.,2007,18,J. Database Manag.,1,db/journals/jdm/jdm18.html#KimSFD07,https://doi.org/10.4018/jdm.2007010102 +Chun Hung Cheng,Solving the Partitioning Problem in Database Design.,1999,10,J. Database Manag.,1,db/journals/jdm/jdm10.html#ChengGL99,https://doi.org/10.4018/jdm.1999010103 +Ratko Orlandic,Scalable QSF-Trees: Retrieving Regional Objects in High-Dimensional Spaces.,2004,15,J. Database Manag.,3,db/journals/jdm/jdm15.html#OrlandicY04,https://doi.org/10.4018/jdm.2004070103 +Sofia J. Athenikos,CAM: A Conceptual Modeling Framework based on the Analysis of Entity Classes and Association Types.,2013,24,J. Database Manag.,4,db/journals/jdm/jdm24.html#AthenikosS13,https://doi.org/10.4018/JDM.2013100103 +Latifur Khan,An Adaptive Probe-Based Technique to Optimize Join Queries in Distributed Internet Databases.,2001,12,J. Database Manag.,4,db/journals/jdm/jdm12.html#KhanMS01,https://doi.org/10.4018/jdm.2001100101 +Xiaofeng Chen,Technology-Mediated Synchronous Virtual Education: An Empirical Study.,2016,27,J. Database Manag.,4,db/journals/jdm/jdm27.html#ChenS16,https://doi.org/10.4018/JDM.2016100103 +Asuman Dogac,Electronic Commerce.,1998,9,J. Database Manag.,4,db/journals/jdm/jdm9.html#Dogac98, +Joseph Fong,XTOPO: An XML-Based Topology for Information Highway on the Internet.,2004,15,J. Database Manag.,3,db/journals/jdm/jdm15.html#FongW04,https://doi.org/10.4018/jdm.2004070102 +Geert Poels,Understanding Business Domain Models: The Effect of Recognizing Resource-Event-Agent Conceptual Modeling Structures.,2011,22,J. Database Manag.,1,db/journals/jdm/jdm22.html#Poels11,https://doi.org/10.4018/jdm.2011010104 +Harry J. Wang,Managing Data Security in E-Markets through Relationship Driven Access Control.,2012,23,J. Database Manag.,2,db/journals/jdm/jdm23.html#WangZC12,https://doi.org/10.4018/jdm.2012040101 +Fiona Fui-Hoon Nah,An Emergent Model of End-users' Acceptance of Enterprise Resource Planning Systems: A Grounded Theory Approach.,2015,26,J. Database Manag.,4,db/journals/jdm/jdm26.html#NahT15,https://doi.org/10.4018/JDM.2015100103 +Herbert Shiu,Reverse Engineering from an XML Document into an Extended DTD Graph.,2009,20,J. Database Manag.,2,db/journals/jdm/jdm20.html#ShiuF09,https://doi.org/10.4018/jdm.2009040103 +Pnina Soffer,Assigning Ontological Meaning to Workflow Nets.,2010,21,J. Database Manag.,3,db/journals/jdm/jdm21.html#SofferKW10,https://doi.org/10.4018/jdm.2010070101 +Stepan Kozak,Privacy-Preserving Outsourced Similarity Search.,2014,25,J. Database Manag.,3,db/journals/jdm/jdm25.html#KozakNZ14,https://doi.org/10.4018/jdm.2014070103 +Cecil Chua Eng Huang,On Conceptual Micro-Object Modeling.,2002,13,J. Database Manag.,3,db/journals/jdm/jdm13.html#CecilCL02,https://doi.org/10.4018/jdm.2002070101 +Huimin Zhao,Matching Attributes across Overlapping Heterogeneous Data Sources Using Mutual Information.,2010,21,J. Database Manag.,4,db/journals/jdm/jdm21.html#Zhao10,https://doi.org/10.4018/jdm.2010100105 +Mihhail Matskin,Mobile Commerce Agents in WAP-Based Services.,2001,12,J. Database Manag.,3,db/journals/jdm/jdm12.html#MatskinT01,https://doi.org/10.4018/jdm.2001070103 +Eleni Tousidou,Performance Evaluation of Parallel S-Trees.,2000,11,J. Database Manag.,3,db/journals/jdm/jdm11.html#TousidouVM00,https://doi.org/10.4018/jdm.2000070103 +Lawrence A. West Jr.,Relational Data Modeling for Geographic Information Systems.,1999,10,J. Database Manag.,2,db/journals/jdm/jdm10.html#WestM99,https://doi.org/10.4018/jdm.1999040103 +Elena Vasilyeva,Considering User Intention in Differential Graph Queries.,2015,26,J. Database Manag.,3,db/journals/jdm/jdm26.html#VasilyevaTBL15,https://doi.org/10.4018/JDM.2015070102 +Wookey Lee,An Asynchronous Differential Join in Distributed Data Replications.,1999,10,J. Database Manag.,3,db/journals/jdm/jdm10.html#LeePK99,https://doi.org/10.4018/jdm.1999070101 +Konstantinos Stamkopoulos,Accelerating Web Service Workflow Execution via Intelligent Allocation of Services to Servers.,2010,21,J. Database Manag.,4,db/journals/jdm/jdm21.html#StamkopoulosPVZ10,https://doi.org/10.4018/jdm.2010100104 +Marcela Genero,Research Review: A Systematic Literature Review on the Quality of UML Models.,2011,22,J. Database Manag.,3,db/journals/jdm/jdm22.html#GeneroFNPP11,https://doi.org/10.4018/jdm.2011070103 +Grady Booch,The Unified Modeling Language User Guide.,1999,10,J. Database Manag.,4,db/journals/jdm/jdm10.html#BoochRJ99, +Jeana Scheirer,Is the Webmaster Position Becoming Obsolete?,1998,9,J. Database Manag.,2,db/journals/jdm/jdm9.html#Scheirer98, +Hilkka Merisalo-Rantanen,Is Extreme Programming Just Old Wine in New Bottles: A Comparison of Two Cases.,2005,16,J. Database Manag.,4,db/journals/jdm/jdm16.html#Merisalo-RantanenTR05,https://doi.org/10.4018/jdm.2005100103 +Yuan An,Maintaining Mappings between Conceptual Models and Relational Schemas.,2010,21,J. Database Manag.,3,db/journals/jdm/jdm21.html#AnHS10,https://doi.org/10.4018/jdm.2010070102 +Carlos R. Rivero,Discovering and Analysing Ontological Models From Big RDF Data.,2015,26,J. Database Manag.,2,db/journals/jdm/jdm26.html#RiveroHRC15,https://doi.org/10.4018/JDM.2015040104 +Wang Chiew Tan,A Graphical Interface to Genome Multidatabases.,1998,9,J. Database Manag.,1,db/journals/jdm/jdm9.html#TanWW98,https://doi.org/10.4018/jdm.1998010103 +Bo Xu,A Study of Open Source Software Development from Control Perspective.,2011,22,J. Database Manag.,1,db/journals/jdm/jdm22.html#XuLX11,https://doi.org/10.4018/jdm.2011010102 +John Pestian,Preparing Clinical Text for Use in Biomedical Research.,2006,17,J. Database Manag.,2,db/journals/jdm/jdm17.html#PestianIAD06,https://doi.org/10.4018/jdm.2006040101 +Veda C. Storey,Common Sense Reasoning in Automated Database Design: An Empirical Test.,2002,13,J. Database Manag.,1,db/journals/jdm/jdm13.html#StoreyGD02,https://doi.org/10.4018/jdm.2002010101 +Wen-Chi Hou,A Dynamic Grid File for High-Dimensional Data Cube Storage and Range-Sum Querying.,2009,20,J. Database Manag.,4,db/journals/jdm/jdm20.html#HouYWLW09,https://doi.org/10.4018/jdm.2009062503 +Prabodha Tilakaratna,Evaluation of the Ontological Completeness and Clarity of Object-Oriented Conceptual Modelling Grammars.,2017,28,J. Database Manag.,2,db/journals/jdm/jdm28.html#TilakaratnaR17,https://doi.org/10.4018/JDM.2017040101 +Sergio Luján-Mora,Physical Modeling of Data Warehouses Using UML Component and Deployment Diagrams: Design and Implementation Issues.,2006,17,J. Database Manag.,2,db/journals/jdm/jdm17.html#Lujan-MoraT06,https://doi.org/10.4018/jdm.2006040102 +Alessandro Fiori,Information Extraction from Microarray Data: A Survey of Data Mining Techniques.,2014,25,J. Database Manag.,1,db/journals/jdm/jdm25.html#FioriGBBSB14,https://doi.org/10.4018/jdm.2014010102 +Fiona Fui-Hoon Nah,Information Search Patterns in E-Commerce Product Comparison Services.,2010,21,J. Database Manag.,2,db/journals/jdm/jdm21.html#NahHCL10,https://doi.org/10.4018/jdm.2010040102 +H. Lee,An Enterprise Model Repository: Architecture and System.,2000,11,J. Database Manag.,1,db/journals/jdm/jdm11.html#LeeJ00,https://doi.org/10.4018/jdm.2000010102 +Vikas Agrawal,View Materialization in a Data Cube: Optimization Models and Heuristics.,2007,18,J. Database Manag.,3,db/journals/jdm/jdm18.html#AgrawalSAN07,https://doi.org/10.4018/jdm.2007070101 +Roberto Hirsch,A Framework for Analyzing Mobile Transaction Models.,2001,12,J. Database Manag.,3,db/journals/jdm/jdm12.html#HirschCFR01,https://doi.org/10.4018/jdm.2001070104 +Heeseok Lee,A Comparative Study of Conceptual Data Modeling Techniques.,1998,9,J. Database Manag.,2,db/journals/jdm/jdm9.html#LeeC98,https://doi.org/10.4018/jdm.1998040103 +Tobias Bucher,Situational Method Engineering to Support Process-Oriented Information Logistics: Identification of Development Situations.,2012,23,J. Database Manag.,1,db/journals/jdm/jdm23.html#BucherD12,https://doi.org/10.4018/jdm.2012010102 +Y. Li,A Multiple-Bits Watermark for Relational Data.,2008,19,J. Database Manag.,3,db/journals/jdm/jdm19.html#LiGW08,https://doi.org/10.4018/jdm.2008070101 +Kevin Crowston,Bug Fixing Practices within Free/Libre Open Source Software Development Teams.,2008,19,J. Database Manag.,2,db/journals/jdm/jdm19.html#CrowstonS08,https://doi.org/10.4018/jdm.2008040101 +Jean-Paul Arcangeli,Mobile Agent Based Self-Adaptive Join for Wide-Area Distributed Query Processing.,2004,15,J. Database Manag.,4,db/journals/jdm/jdm15.html#ArcangeliHMM04,https://doi.org/10.4018/jdm.2004100102 +S.-M. Huang,Intelligent Cache Management for Mobile Data Warehouse Systems.,2005,16,J. Database Manag.,2,db/journals/jdm/jdm16.html#HuangLD05,https://doi.org/10.4018/jdm.2005040103 +Petra Budíková,Inherent Fusion: Towards Scalable Multi-Modal Similarity Search.,2016,27,J. Database Manag.,4,db/journals/jdm/jdm27.html#BudikovaBNZ16,https://doi.org/10.4018/JDM.2016100101 +Xuepeng Yin,Evaluating XML-Extened OLAP Queries Based on Physical Algebra.,2006,17,J. Database Manag.,2,db/journals/jdm/jdm17.html#YinP06,https://doi.org/10.4018/jdm.2006040105 +Anat Aharoni,Semi-Automatic Composition of Situational Methods.,2011,22,J. Database Manag.,4,db/journals/jdm/jdm22.html#AharoniR11,https://doi.org/10.4018/jdm.2011100101 +Brian Henderson-Sellers,Creating a Dual-Agility Method: The Value of Method Engineering.,2005,16,J. Database Manag.,4,db/journals/jdm/jdm16.html#Henderson-SellersS05,https://doi.org/10.4018/jdm.2005100101 +Keng Siau,Editorial Preface.,2004,15,J. Database Manag.,4,db/journals/jdm/jdm15.html#Siau04c, +Andreas L. Opdahl,A Template for Defining Enterprise Modeling Constructs.,2004,15,J. Database Manag.,2,db/journals/jdm/jdm15.html#OpdahlH04,https://doi.org/10.4018/jdm.2004040103 +Christoph Schlueter Langdon,Designing Information Systems Capabilities to Create Business Value: A Theoretical Conceptualization of the Role of Flexibility and Integration.,2006,17,J. Database Manag.,3,db/journals/jdm/jdm17.html#Langdon06,https://doi.org/10.4018/jdm.2006070101 +Fiona Fui-Hoon Nah,Understanding Gender Differences in Media Perceptions of Hedonic Systems: A Comparison of 2D versus 3D Media.,2016,27,J. Database Manag.,3,db/journals/jdm/jdm27.html#NahE16,https://doi.org/10.4018/JDM.2016070102 +Veda C. Storey,Conceptual Modeling Meets Domain Ontology Development: A Reconciliation.,2017,28,J. Database Manag.,1,db/journals/jdm/jdm28.html#Storey17,https://doi.org/10.4018/JDM.2017010102 +Robin S. Poston,Mindfully Experimenting with IT: Cases on Corporate Social Media Introduction.,2014,25,J. Database Manag.,2,db/journals/jdm/jdm25.html#PostonK14,https://doi.org/10.4018/jdm.2014040102 +Hee-Woong Kim,User Resistance to Software Migration: The Case on Linux.,2014,25,J. Database Manag.,1,db/journals/jdm/jdm25.html#KimCL14,https://doi.org/10.4018/jdm.2014010103 +Pnina Soffer,Complementing Business Process Verification by Validity Analysis: A Theoretical and Empirical Evaluation.,2011,22,J. Database Manag.,3,db/journals/jdm/jdm22.html#SofferK11,https://doi.org/10.4018/jdm.2011070101 +Irene Garrigós,A Conceptual Modeling Personalization Framework for OLAP.,2012,23,J. Database Manag.,4,db/journals/jdm/jdm23.html#GarrigosPMZTR12,https://doi.org/10.4018/jdm.2012100101 +David T. Caminer,LEO: The Incredible Story of the World's First Business Computer.,1999,10,J. Database Manag.,1,db/journals/jdm/jdm10.html#CaminerAHL99, +Seok Il Song,An Efficient Concurrency Control Algorithm for High-Dimensional Index Structures.,2004,15,J. Database Manag.,3,db/journals/jdm/jdm15.html#SongY04,https://doi.org/10.4018/jdm.2004070104 +Stef Joosten,A Rigorous Approach for Mapping Workflows to Object-Oriented IS Models.,2002,13,J. Database Manag.,4,db/journals/jdm/jdm13.html#JoostenP02,https://doi.org/10.4018/jdm.2002100101 +Jeong Seok Lim,A Methodology of Constructing Canonical Form Database Schemas in a Multiple Heterogeneous Database Environment.,1998,9,J. Database Manag.,4,db/journals/jdm/jdm9.html#LimS98,https://doi.org/10.4018/jdm.1998100101 +Patrick Martin 0001,Experimental Study of a Self-Tuning Algorithm for DBMS Buffer Pools.,2005,16,J. Database Manag.,2,db/journals/jdm/jdm16.html#MartinPZ05,https://doi.org/10.4018/jdm.2005040101 +Peter Kawalek,A Case Study Evaluation of the Use of the Viable System Model in Information Systems Development.,1999,10,J. Database Manag.,4,db/journals/jdm/jdm10.html#KawalekW99,https://doi.org/10.4018/jdm.1999100103 +Chih-Ping Wei,Semantic Enrichment in Knowledge Repositories: Anotating Semantic Relationships Between Discussion Documents.,2006,17,J. Database Manag.,1,db/journals/jdm/jdm17.html#WeiCP06,https://doi.org/10.4018/jdm.2006010104 +Jérôme Darmont,Benchmarking OODBs with a Generic Tool.,2000,11,J. Database Manag.,3,db/journals/jdm/jdm11.html#DarmontS00,https://doi.org/10.4018/jdm.2000070102 +Salwa M'barek,Model Driven Engineering for Quality of Service Management: A Research Note on the Case of Real-Time Database Management Systems.,2016,27,J. Database Manag.,4,db/journals/jdm/jdm27.html#MbarekBG16,https://doi.org/10.4018/JDM.2016100102 +Amit P. Sheth,Semantic Association Identification and Knowledge Discovery for National Security Applications.,2005,16,J. Database Manag.,1,db/journals/jdm/jdm16.html#ShethAABWRHAAAK05,https://doi.org/10.4018/jdm.2005010103 +Bhavani M. Thuraisingham,Privacy-Preserving Data Mining: Development and Directions.,2005,16,J. Database Manag.,1,db/journals/jdm/jdm16.html#Thuraisingham05,https://doi.org/10.4018/jdm.2005010106 +Fredrik Karlsson,Towards Structured Flexibility in Information Systems Development: Devising a Method for Method Configuration.,2009,20,J. Database Manag.,3,db/journals/jdm/jdm20.html#KarlssonA09,https://doi.org/10.4018/jdm.2009070103 +Kaushik Dutta,Enabling Resource Access Visibility for Automated Enterprise Services.,2014,25,J. Database Manag.,2,db/journals/jdm/jdm25.html#DuttaV14,https://doi.org/10.4018/jdm.2014040101 +Graeme G. Shanks,Representing Classes of Things and Properties in General in Conceptual Modelling: An Empirical Evaluation.,2010,21,J. Database Manag.,2,db/journals/jdm/jdm21.html#ShanksMNTW10,https://doi.org/10.4018/jdm.2010040101 +Won Kim 0001,On U.S. Homeland Security and Database Technology.,2005,16,J. Database Manag.,1,db/journals/jdm/jdm16.html#Kim05,https://doi.org/10.4018/jdm.2005010101 +Susanta Mitra,Design of a Data Model for Social Network Applications.,2007,18,J. Database Manag.,4,db/journals/jdm/jdm18.html#MitraBB07,https://doi.org/10.4018/jdm.2007100103 +Kaiping Liu,Aiding Maintenance of Database Applications Through Extracting Attribute Dependency Graph.,2013,24,J. Database Manag.,1,db/journals/jdm/jdm24.html#LiuTC13a,https://doi.org/10.4018/jdm.2013010102 +Satyadeep Patnaik,Transaction-Relationship Oriented Log Division for Data Recovery from Information Attacks.,2003,14,J. Database Manag.,2,db/journals/jdm/jdm14.html#PatnaikP03,https://doi.org/10.4018/jdm.2003040103 +Sufi Nazem,Data Mining: New Arsenal for Strategic Decision Making.,1999,10,J. Database Manag.,1,db/journals/jdm/jdm10.html#NazemS99,https://doi.org/10.4018/jdm.1999010104 +Sami Bhiri,Ensuring Customised Transactional Reliability of Composite Services.,2011,22,J. Database Manag.,2,db/journals/jdm/jdm22.html#BhiriGGPZD11,https://doi.org/10.4018/jdm.2011040103 +June Wei,Development of an E-Healthcare Information Security Risk Assessment Method.,2013,24,J. Database Manag.,1,db/journals/jdm/jdm24.html#WeiLL13,https://doi.org/10.4018/jdm.2013010103 +Luyin Zhao,Information Mediation Using Metamodels: An Approach Using XML and Common Warehouse Metamodel.,2007,18,J. Database Manag.,3,db/journals/jdm/jdm18.html#ZhaoS07,https://doi.org/10.4018/jdm.2007070104 +Randal Reid,Integrating Digital Signatures with Relational Databases: Issues and Organizational Implications.,2003,14,J. Database Manag.,2,db/journals/jdm/jdm14.html#ReidD03,https://doi.org/10.4018/jdm.2003040104 +Yongquan Yan,Predicting Software Abnormal State by using Classification Algorithm.,2016,27,J. Database Manag.,2,db/journals/jdm/jdm27.html#YanG16,https://doi.org/10.4018/JDM.2016040103 +Anteneh Ayanso,A Cost-Based Range Estimation for Mapping Top-k Selection Queries over Relational Databases.,2009,20,J. Database Manag.,4,db/journals/jdm/jdm20.html#AyansoGM09,https://doi.org/10.4018/jdm.2009062501 +Zongmin Ma,Reengineering Probabilistic Relational Databases with Fuzzy Probability Measures into XML Model.,2017,28,J. Database Manag.,3,db/journals/jdm/jdm28.html#MaLY17,https://doi.org/10.4018/JDM.2017070102 +Peter F. Green,Applying Ontologies to Business and Systems Modeling Techniques and Perspectives: Lessons Learned.,2004,15,J. Database Manag.,2,db/journals/jdm/jdm15.html#GreenR04a,https://doi.org/10.4018/jdm.2004040105 +M. Millie Kwan,The Knowledge Transfer Process: From Field Studies to Technology Development.,2006,17,J. Database Manag.,1,db/journals/jdm/jdm17.html#KwanC06,https://doi.org/10.4018/jdm.2006010102 +Jung-Ho Ahn 0001,The Soprano Extensible Object Storage System.,2002,13,J. Database Manag.,1,db/journals/jdm/jdm13.html#AhnK02,https://doi.org/10.4018/jdm.2002010102 +Richard Baskerville,A Possibility Theory Framework for Security Evaluation in National Infrastructure Protection.,2003,14,J. Database Manag.,2,db/journals/jdm/jdm14.html#BaskervilleP03,https://doi.org/10.4018/jdm.2003040101 +Yi Zhao,Antecedents of the Closeness of Human-Avatar Relationships in a Virtual World.,2010,21,J. Database Manag.,2,db/journals/jdm/jdm21.html#ZhaoWZ10,https://doi.org/10.4018/jdm.2010040103 +Kweku-Muata Osei-Bryson,An Exploration of a Set of Entropy-Based Hybrid Splitting Methods for Decision Tree Induction.,2004,15,J. Database Manag.,3,db/journals/jdm/jdm15.html#Osei-BrysonG04,https://doi.org/10.4018/jdm.2004070101 +Brian Dobing,Dimensions of UML Diagram Use: A Survey of Practitioners.,2008,19,J. Database Manag.,1,db/journals/jdm/jdm19.html#DobingP08,https://doi.org/10.4018/jdm.2008010101 +Russel Pears,Optimization of Multidimensional Aggregates in Data Warehouses.,2007,18,J. Database Manag.,1,db/journals/jdm/jdm18.html#PearsH07,https://doi.org/10.4018/jdm.2007010104 +Daniel E. Turk,Assumptions Underlying Agile Software-Development Processes.,2005,16,J. Database Manag.,4,db/journals/jdm/jdm16.html#TurkFR05,https://doi.org/10.4018/jdm.2005100104 +Michaël Verdonck,An Ontological Analysis Framework for Domain-Specific Modeling Languages.,2018,29,J. Database Manag.,1,db/journals/jdm/jdm29.html#VerdonckG18,https://doi.org/10.4018/JDM.2018010102 +Zhen He,Evaluating the Dynamic Behavior of Database Applications.,2005,16,J. Database Manag.,2,db/journals/jdm/jdm16.html#HeD05,https://doi.org/10.4018/jdm.2005040102 +Chun-Hee Lee,Compression Schemes with Data Reordering for Ordered Data.,2014,25,J. Database Manag.,1,db/journals/jdm/jdm25.html#LeeC14,https://doi.org/10.4018/jdm.2014010101 +Adolfo Lozano Tello,ONTOMETRIC: A Method to Choose the Appropriate Ontology.,2004,15,J. Database Manag.,2,db/journals/jdm/jdm15.html#TelloG04,https://doi.org/10.4018/jdm.2004040101 +Rong Liu,Transforming Activity-Centric Business Process Models into Information-Centric Models for SOA Solutions.,2010,21,J. Database Manag.,4,db/journals/jdm/jdm21.html#LiuWK10,https://doi.org/10.4018/jdm.2010100102 +Xihui Zhang 0001,The Impact of Conflict Judgments between Developers and Testers in Software Development.,2013,24,J. Database Manag.,4,db/journals/jdm/jdm24.html#ZhangDGS13,https://doi.org/10.4018/JDM.2013100102 +Salmin Sultana,A Distributed System for The Management of Fine-grained Provenance.,2015,26,J. Database Manag.,2,db/journals/jdm/jdm26.html#SultanaB15,https://doi.org/10.4018/JDM.2015040103 +Juan Manuel Gómez Reynoso,An Information Systems Design Theory for an Expert System for Training.,2013,24,J. Database Manag.,3,db/journals/jdm/jdm24.html#ReynosoORH13,https://doi.org/10.4018/jdm.2013070103 +Amber W. Lo,Knowledge-Based Systems as Database Design Tools: A Comparative Study.,1999,10,J. Database Manag.,3,db/journals/jdm/jdm10.html#LoC99,https://doi.org/10.4018/jdm.1999070103 +Roman Lukyanenko,Beyond Micro-Tasks: Research Opportunities in Observational Crowdsourcing.,2018,29,J. Database Manag.,1,db/journals/jdm/jdm29.html#LukyanenkoP18,https://doi.org/10.4018/JDM.2018010101 +Palash Bera,Analyzing the Cognitive Difficulties for Developing and Using UML Class Diagrams for Domain Understanding.,2012,23,J. Database Manag.,3,db/journals/jdm/jdm23.html#Bera12,https://doi.org/10.4018/jdm.2012070101 +Herbert Shiu,Reverse Engineering from an XML Document into an Extended DTD Graph.,2008,19,J. Database Manag.,4,db/journals/jdm/jdm19.html#ShiuF08,https://doi.org/10.4018/jdm.2008100104 +George Reese 0002,Database Programming with DBC and JAVA.,1999,10,J. Database Manag.,2,db/journals/jdm/jdm10.html#Reese99, +Jon Whittle,Formal Approaches to Systems Analysis Using UML: An Overview.,2000,11,J. Database Manag.,4,db/journals/jdm/jdm11.html#Whittle00,https://doi.org/10.4018/jdm.2000100101 +Peretz Shoval,FOOM: Functional and Object-Oriented Analysis and Design of Information Systems: An Integrated Methodology.,2001,12,J. Database Manag.,1,db/journals/jdm/jdm12.html#ShovalK01,https://doi.org/10.4018/jdm.2001010102 +Siwoo Byun,Fault-Tolerant Quorum Consensus Scheme for Replication Control in Mobile Distributed Database Systems.,1998,9,J. Database Manag.,3,db/journals/jdm/jdm9.html#ByunM98,https://doi.org/10.4018/jdm.1998070102 +Yongkwon Kim,SEDRIS Transmittal Storing and Retrieval System using Relational Databases.,2014,25,J. Database Manag.,4,db/journals/jdm/jdm25.html#KimYC14,https://doi.org/10.4018/JDM.2014100103 +Youngseok Choi,A Novel Approach to Managing the Dynamic Nature of Semantic Relatedness.,2016,27,J. Database Manag.,2,db/journals/jdm/jdm27.html#ChoiOP16,https://doi.org/10.4018/JDM.2016040101 +Dinesh Batra,Conceptual Data Modeling Patterns: Representation and Validation.,2005,16,J. Database Manag.,2,db/journals/jdm/jdm16.html#Batra05,https://doi.org/10.4018/jdm.2005040105 +Joseph Fong,An Interpreter Approach for Exporting Relational Data into XML Documents with Structured Export Markup Language.,2012,23,J. Database Manag.,1,db/journals/jdm/jdm23.html#FongS12,https://doi.org/10.4018/jdm.2012010103 +Shing-Han Li,Migrating Legacy Information Systems to Web Services Architecture.,2007,18,J. Database Manag.,4,db/journals/jdm/jdm18.html#LiHYC07,https://doi.org/10.4018/jdm.2007100101 +Pedro Furtado,Node Partitioned Data Warehouses: Experimental Evidence and Improvements.,2006,17,J. Database Manag.,2,db/journals/jdm/jdm17.html#Furtado06,https://doi.org/10.4018/jdm.2006040103 +Roy Gelbard,Representation and Storage of Motion Data.,2002,13,J. Database Manag.,3,db/journals/jdm/jdm13.html#GelbardS02,https://doi.org/10.4018/jdm.2002070104 +Chin-Hoong Chee,Improving Business Intelligence Traceability and Accountability: An Integrated Framework of BI Product and Metacontent Map.,2014,25,J. Database Manag.,3,db/journals/jdm/jdm25.html#Chee0GR14,https://doi.org/10.4018/jdm.2014070102 +Albert L. Lederer,What's New? The Challenges of Ermerging Information Technologies.,1998,9,J. Database Manag.,1,db/journals/jdm/jdm9.html#LedererB98,https://doi.org/10.4018/jdm.1998010104 +Chin-Wan Chung,Knowledge and Object-Oriented Approach for Interoperability of Heterogeneous Information Management Systems.,1999,10,J. Database Manag.,3,db/journals/jdm/jdm10.html#ChungK99,https://doi.org/10.4018/jdm.1999070102 +J. Fung,Online Analytical Mining of Path Traversal Patterns for Web Measurement.,2002,13,J. Database Manag.,4,db/journals/jdm/jdm13.html#FungW02,https://doi.org/10.4018/jdm.2002100103 +Larry P. English,Information Quality: Critical Ingredient for National Security.,2005,16,J. Database Manag.,1,db/journals/jdm/jdm16.html#English05,https://doi.org/10.4018/jdm.2005010102 +James A. Rodger,Mobile Computing at the Department of Defense.,2001,12,J. Database Manag.,2,db/journals/jdm/jdm12.html#RodgerPK01,https://doi.org/10.4018/jdm.2001040104 +Hock Chuan Chan,Database Interfaces: A Conceptual Framework and a Meta-Analysis on Natural Language Studies.,1998,9,J. Database Manag.,3,db/journals/jdm/jdm9.html#ChanL98,https://doi.org/10.4018/jdm.1998070103 +Alexander P. Pons,Data Protection Using Watermarking in E-Business.,2003,14,J. Database Manag.,4,db/journals/jdm/jdm14.html#PonsA03,https://doi.org/10.4018/jdm.2003100101 +Han Li,Evaluating Re-Identification Risks of Data Protected by Additive Data Perturbation.,2014,25,J. Database Manag.,2,db/journals/jdm/jdm25.html#LiMSL14,https://doi.org/10.4018/jdm.2014040103 +Jesús Pardillo,An MDA Approach and QVT Transformations for the Integrated Development of Goal-Oriented Data Warehouses and Data Marts.,2011,22,J. Database Manag.,1,db/journals/jdm/jdm22.html#PardilloMT11,https://doi.org/10.4018/jdm.2011010103 +Hai Wang,Ontology for Data Mining and its Application to Mining Incomplete Data.,2008,19,J. Database Manag.,4,db/journals/jdm/jdm19.html#WangW08,https://doi.org/10.4018/jdm.2008100105 +Reda Alhajj,Simplifying the Formulation of a Wide Range of Object-Oriented Complex Queries.,2000,11,J. Database Manag.,2,db/journals/jdm/jdm11.html#Alhajj00,https://doi.org/10.4018/jdm.2000040103 +Aristides Triantafillakis,Data Warehouse Interoperability for the Extended Enterprise.,2004,15,J. Database Manag.,3,db/journals/jdm/jdm15.html#TriantafillakisKM04,https://doi.org/10.4018/jdm.2004070105 +Amita Goyal Chin,Current Trends in Data Management Technology.,1999,10,J. Database Manag.,3,db/journals/jdm/jdm10.html#Chin99, +Edgar R. Weippl,A New Approach To Secure Federated Information Bases Using Agent Technology.,2003,14,J. Database Manag.,1,db/journals/jdm/jdm14.html#WeipplEKS03,https://doi.org/10.4018/jdm.2003010103 +Wassim Jaziri,Using Temporal Versioning and Integrity Constraints for Updating Geographic Databases and Maintaining Their Consistency.,2015,26,J. Database Manag.,1,db/journals/jdm/jdm26.html#JaziriSD15,https://doi.org/10.4018/JDM.2015010102 +Sree Nilakanta,Organizational Memory Management: Technological and Research Issues.,2006,17,J. Database Manag.,1,db/journals/jdm/jdm17.html#NilakantaMZ06,https://doi.org/10.4018/jdm.2006010106 +Ji Zhang,A Framework for Efficient Association Rule Mining in XML Data.,2006,17,J. Database Manag.,3,db/journals/jdm/jdm17.html#ZhangLLBT06,https://doi.org/10.4018/jdm.2006070102 +Dinesh Batra,Agility Facilitators for Contemporary Software Development.,2016,27,J. Database Manag.,1,db/journals/jdm/jdm27.html#BatraXR16,https://doi.org/10.4018/JDM.2016010101 +S.-W. Lee,Rich Base Schema: A Unified Framework for OODB Schema Version Management.,2000,11,J. Database Manag.,1,db/journals/jdm/jdm11.html#LeeK00,https://doi.org/10.4018/jdm.2000010103 +Hyunjung Park 0003,A Link-Based Ranking Algorithm for Semantic Web Resources: A Class-Oriented Approach Independent of Link Direction.,2011,22,J. Database Manag.,1,db/journals/jdm/jdm22.html#ParkRP11,https://doi.org/10.4018/jdm.2011010101 +Sungkwang Eom,Incorporating Spatial Queries into Semantic Sensor Streams on the Internet of Things.,2017,28,J. Database Manag.,4,db/journals/jdm/jdm28.html#EomL17,https://doi.org/10.4018/JDM.2017100102 +Adnan Yazici,Fuzzy Database Modeling.,1998,9,J. Database Manag.,4,db/journals/jdm/jdm9.html#YaziciG98, +Trevor H. Jones,Binary Equivalents of Ternary Relationships in Entity-Relationship Modeling: A Logical Decomposition Approach.,2000,11,J. Database Manag.,2,db/journals/jdm/jdm11.html#JonesS00,https://doi.org/10.4018/jdm.2000040102 +Tamara Babaian,Modeling Data for Enterprise Systems with Memories.,2013,24,J. Database Manag.,2,db/journals/jdm/jdm24.html#BabaianL13,https://doi.org/10.4018/jdm.2013040101 +Keng Siau,Unified Modeling Language: A Complexity Analysis.,2001,12,J. Database Manag.,1,db/journals/jdm/jdm12.html#SiauC01,https://doi.org/10.4018/jdm.2001010103 +Peter Aiken,Data Management and Data Administration: Assessing 25 Years of Practice.,2011,22,J. Database Manag.,3,db/journals/jdm/jdm22.html#AikenGZR11,https://doi.org/10.4018/jdm.2011070102 +Ying Jin 0001,Extending the OBJECTIVE Benchmark for Evaluation of Active Rules in a Distributed Component Integration Environment.,2006,17,J. Database Manag.,4,db/journals/jdm/jdm17.html#JinUD06,https://doi.org/10.4018/jdm.2006100103 +David Kang,Categorizing Post-Deployment IT Changes: An Empirical Investigation.,2007,18,J. Database Manag.,2,db/journals/jdm/jdm18.html#Kang07,https://doi.org/10.4018/jdm.2007040101 +Steven A. Conrad,Database Technology for Global Support of a Medical Registry: An Implementation Case.,2002,13,J. Database Manag.,4,db/journals/jdm/jdm13.html#ConradLR02,https://doi.org/10.4018/jdm.2002100104 +Ole J. Anfindsen,Conditional Conflict Serializability: An Application Oriented Correctness Criterion.,1998,9,J. Database Manag.,4,db/journals/jdm/jdm9.html#Anfindsen98,https://doi.org/10.4018/jdm.1998100103 +Kaunchin Chen,Antecedents of Online Game Dependency: The Implications of Multimedia Realism and Uses and Gratifications Theory.,2010,21,J. Database Manag.,2,db/journals/jdm/jdm21.html#ChenCR10,https://doi.org/10.4018/jdm.2010040104 +David S. Linthicum,Guide to Client/Server and Intranet Development.,1998,9,J. Database Manag.,2,db/journals/jdm/jdm9.html#Linthicum98, +G. Shankaranarayan,Managing Data Quality in Dynamic Decision Environments: An Information Product Approach.,2003,14,J. Database Manag.,4,db/journals/jdm/jdm14.html#ShankaranarayanZW03,https://doi.org/10.4018/jdm.2003100102 +Kris Ven,The Impact of Ideology on the Organizational Adoption of Open Source Software.,2008,19,J. Database Manag.,2,db/journals/jdm/jdm19.html#VenV08,https://doi.org/10.4018/jdm.2008040103 +Joseph Feller,Delivering the 'Whole Product': Business Model Impacts and Agility Challenges in a Network of Open Source Firms.,2008,19,J. Database Manag.,2,db/journals/jdm/jdm19.html#FellerFH08,https://doi.org/10.4018/jdm.2008040105 +Eladio Domínguez,Dynamic Semantics of UML State Machines: A Metamodeling Perspective.,2002,13,J. Database Manag.,4,db/journals/jdm/jdm13.html#DominguezRZ02,https://doi.org/10.4018/jdm.2002100102 +Fiona Fui-Hoon Nah,Collaboration in Virtual Worlds: Impact of Task Complexity on Team Trust and Satisfaction.,2017,28,J. Database Manag.,4,db/journals/jdm/jdm28.html#NahSMSES17,https://doi.org/10.4018/JDM.2017100104 +Brian Dobing,Understanding the Role of Use Cases in UML: A Review and Research Agenda.,2000,11,J. Database Manag.,4,db/journals/jdm/jdm11.html#DobingP00,https://doi.org/10.4018/jdm.2000100103 +Avichai Meged,A Unified Fuzzy Data Model: Representation and Processing.,2012,23,J. Database Manag.,1,db/journals/jdm/jdm23.html#MegedG12,https://doi.org/10.4018/jdm.2012010104 +Florian Daniel,An Open ECA Server for Active Applications.,2008,19,J. Database Manag.,4,db/journals/jdm/jdm19.html#DanielP08,https://doi.org/10.4018/jdm.2008100101 +Joerg Evermann,Theories of Meaning in Schema Matching: A Review.,2008,19,J. Database Manag.,3,db/journals/jdm/jdm19.html#Evermann08,https://doi.org/10.4018/jdm.2008070104 +Wai Yin Mok,Using Harel's Statecharts to Model Business Workflows.,2002,13,J. Database Manag.,3,db/journals/jdm/jdm13.html#MokP02,https://doi.org/10.4018/jdm.2002070102 +James Ma,Cross-Correlation Measure for Mining Spatio-Temporal Patterns.,2013,24,J. Database Manag.,2,db/journals/jdm/jdm24.html#MaZZL13,https://doi.org/10.4018/jdm.2013040102 +Kee-Young Kwahk,A Knowledge Integration Approach for Organizational Decision Support.,2007,18,J. Database Manag.,2,db/journals/jdm/jdm18.html#KwahkKC07,https://doi.org/10.4018/jdm.2007040103 +Kun-Woo Yang,Intelligent Search for Experts Using Fuzzy Abstraction Hierarchy in Knowledge Management Systems.,2007,18,J. Database Manag.,3,db/journals/jdm/jdm18.html#YangH07,https://doi.org/10.4018/jdm.2007070103 +Baoning Niu,Towards Autonomic Workload Management in DBMSs.,2009,20,J. Database Manag.,3,db/journals/jdm/jdm20.html#NiuMP09,https://doi.org/10.4018/jdm.2009070101 +Mathew Neville Smith,A Database Interface for Link Analysis.,2005,16,J. Database Manag.,1,db/journals/jdm/jdm16.html#SmithK05,https://doi.org/10.4018/jdm.2005010105 +Yurong Yao,Cost and Service Capability Considerations on the Intention to Adopt Application Service Provision Services.,2010,21,J. Database Manag.,3,db/journals/jdm/jdm21.html#YaoLL10,https://doi.org/10.4018/JDM.2010070104 +Simon K. Milton,An Ontology of Data Modeling Languages: A Study Using a Common-Sense Realistic Ontology.,2004,15,J. Database Manag.,2,db/journals/jdm/jdm15.html#MiltonK04,https://doi.org/10.4018/jdm.2004040102 +Shirley A. Becker,The Dissemination of Good Practices in Database Development Work.,1998,9,J. Database Manag.,3,db/journals/jdm/jdm9.html#Becker98b,https://doi.org/10.4018/jdm.1998070104 +Joseph Fong,Methodology of Schema Integration for New Database Applications: A Practitioner's Approach.,1999,10,J. Database Manag.,1,db/journals/jdm/jdm10.html#FongKLK99,https://doi.org/10.4018/jdm.1999010101 +Debra Van der Meer,Applying Learner-Centered Design Principles to UML Sequence Diagrams.,2009,20,J. Database Manag.,1,db/journals/jdm/jdm20.html#MeerD09,https://doi.org/10.4018/jdm.2009010102 +Xiaofeng Chen 0006,Empirical Comparison of 3-D Virtual World and Face-to-Face Classroom for Higher Education.,2012,23,J. Database Manag.,3,db/journals/jdm/jdm23.html#0006SN12,https://doi.org/10.4018/jdm.2012070102 +Sherif Sakr,Cardinality-Aware Purely Relational XQuery Processor.,2009,20,J. Database Manag.,3,db/journals/jdm/jdm20.html#Sakr09,https://doi.org/10.4018/jdm.2009070104 +Marcelo Fantinato,Applying a contest to improve learning in the information systems development - An interdisciplinary and extracurricular approach.,2011,10,Informatics in Education,2,db/journals/iie/iie10.html#FantinatoCMPT11,http://www.mii.lt/informatics_in_education/htm/INFE176.htm +Jeremiah D. Deng,Teaching Service Modelling to a Mixed Class: An Integrated Approach.,2015,14,Informatics in Education,1,db/journals/iie/iie14.html#DengP15,http://www.mii.lt/informatics_in_education/htm/infedu.2015.03.htm +Márta Turcsányi-Szabó,Aiming at sustainable innovation in teacher education - From theory to practice.,2012,11,Informatics in Education,1,db/journals/iie/iie11.html#Turcsanyi-Szabo12,http://www.mii.lt/informatics_in_education/htm/INFE197.htm +Eugenijus Kurilovas,Northern E-Dimension Action Plan: E-Skills Study in the Baltic Countries and Northwest Russia.,2003,2,Informatics in Education,2,db/journals/iie/iie2.html#Kurilovas03,http://www.mii.lt/informatics_in_education/htm/INFE013.htm +Wolfgang Pohl,Foreword.,2006,5,Informatics in Education,1,db/journals/iie/iie5.html#Pohl06,http://www.mii.lt/informatics_in_education/htm/INFE077.htm +Veljko Aleksic,Introductory Programming Subject in European Higher Education.,2016,15,Informatics in Education,2,db/journals/iie/iie15.html#AleksicI16,http://www.mii.lt/informatics_in_education/htm/infedu.2016.09.htm +Emily M. L. Wong,Is ICT a Lever for Educational Change? A Study of the Impact of ICT Implementation on Teaching and Learning in Hong Kong.,2006,5,Informatics in Education,2,db/journals/iie/iie5.html#WongL06,http://www.mii.lt/informatics_in_education/htm/INFE086.htm +Katalina Grigorova,Extracurricular training in informatics in ruse.,2010,9,Informatics in Education,2,db/journals/iie/iie9.html#GrigorovaH10,http://www.mii.lt/informatics_in_education/htm/INFE169.htm +Ján Záhorec,Assessment of Selected Aspects of Teaching Programming in SK and CZ.,2014,13,Informatics in Education,1,db/journals/iie/iie13.html#ZahorecHM14,http://www.mii.lt/informatics_in_education/htm/INFE238.htm +Lauri Malmi,Foreword to the Special Issue.,2005,4,Informatics in Education,1,db/journals/iie/iie4.html#Malmi05,http://www.mii.lt/informatics_in_education/htm/INFE058.htm +Christos Troussas,Collaborative Learning: Group Interaction in an Intelligent Mobile-Assisted Multiple Language Learning System.,2014,13,Informatics in Education,2,db/journals/iie/iie13.html#TroussasVA14,http://www.mii.lt/informatics_in_education/htm/INFE246.htm +Vytautas Stuikys,Teaching of Computer Science Topics Using Meta-Programming-Based GLOs and LEGO Robots.,2013,12,Informatics in Education,1,db/journals/iie/iie12.html#StuikysBD13,http://www.mii.lt/informatics_in_education/htm/INFE215.htm +Pavel Boytchev,Design and Implementation of a Logo-based Computer Graphics Course.,2007,6,Informatics in Education,2,db/journals/iie/iie6.html#Boytchev07,http://www.mii.lt/informatics_in_education/htm/INFE116.htm +Ronaldo R. Goldschmidt,MEMORE: an Environment for Data Collection and Analysis on the Use of Computers in Education.,2016,15,Informatics in Education,1,db/journals/iie/iie15.html#GoldschmidtSNPF16,http://www.mii.lt/informatics_in_education/htm/infedu.2016.04.htm +Boris Melnikov,Some Competition Programming Problems as the Beginning of Artificial Intelligence.,2007,6,Informatics in Education,2,db/journals/iie/iie6.html#MelnikovM07,http://www.mii.lt/informatics_in_education/htm/INFE110.htm +Michael Weigend,The Digital Woodlouse - Scaffolding in Science-Related Scratch Projects.,2014,13,Informatics in Education,2,db/journals/iie/iie13.html#Weigend14,http://www.mii.lt/informatics_in_education/htm/INFE247.htm +Vilhelmina Vaiciuniene,Students Learning Experience in the Integrated Information Literacy Course Constructed in Virtual Learning Environment.,2008,7,Informatics in Education,1,db/journals/iie/iie7.html#VaiciunieneG08,http://www.mii.lt/informatics_in_education/htm/INFE129.htm +Maryanne Fisher,Gender and Programming Contests: Mitigating Exclusionary Practices.,2006,5,Informatics in Education,1,db/journals/iie/iie5.html#FisherC06,http://www.mii.lt/informatics_in_education/htm/INFE073.htm +Jurate Skupiene,Improving the evaluation model for the lithuanian informatics olympiads.,2010,9,Informatics in Education,1,db/journals/iie/iie9.html#Skupiene10,http://www.mii.lt/informatics_in_education/htm/INFE155.htm +Sojung Yang,Teaching Some Informatics Concepts Using Formal System.,2014,13,Informatics in Education,2,db/journals/iie/iie13.html#YangP14,http://www.mii.lt/informatics_in_education/htm/INFE249.htm +Inga Zilinskiene,Use of GeoGebra in Primary Math Education in Lithuania: An Exploratory Study from Teachers' Perspective.,2015,14,Informatics in Education,1,db/journals/iie/iie14.html#ZilinskieneD15,http://www.mii.lt/informatics_in_education/htm/infedu.2015.08.htm +Daiva Vitkute-Adzgauskiene,Problems in Choosing Tools and Methods for Teaching Programming.,2012,11,Informatics in Education,2,db/journals/iie/iie11.html#Vitkute-AdzgauskieneV12,http://www.mii.lt/informatics_in_education/htm/INFE206.htm +Monica Vladoiu,State-of-the-art in open courseware initiatives worldwide.,2011,10,Informatics in Education,2,db/journals/iie/iie10.html#Vladoiu11,http://www.mii.lt/informatics_in_education/htm/INFE191.htm +Kleanthis Thramboulidis,A Sequence of Assignments to Teach Object-Oriented Programming: a Constructivism Design-First Approach.,2003,2,Informatics in Education,1,db/journals/iie/iie2.html#Thramboulidis03,http://www.mii.lt/informatics_in_education/htm/INFE016.htm +,Introduction.,2006,5,Informatics in Education,2,db/journals/iie/iie5.html#X06,http://www.mii.lt/informatics_in_education/htm/INFE091.htm +Fabiano A. Dorça,An Automatic and Dynamic Approach for Personalized Recommendation of Learning Objects Considering Students Learning Styles: An Experimental Analysis.,2016,15,Informatics in Education,1,db/journals/iie/iie15.html#DorcaACRC16,http://www.mii.lt/informatics_in_education/htm/infedu.2016.03.htm +David Ginat,Seeking or Skipping Regularities? Novice Tendencies and the Role of Invariants.,2003,2,Informatics in Education,2,db/journals/iie/iie2.html#Ginat03,http://www.mii.lt/informatics_in_education/htm/INFE022.htm +Johani Rautopuro,Towards the Information Society - the Case of Finnnish Teacher Education.,2006,5,Informatics in Education,2,db/journals/iie/iie5.html#RautopuroPK06,http://www.mii.lt/informatics_in_education/htm/INFE082.htm +Mojca Tomazin,Open Source Software in Slovenian Primary and Secondary Schools.,2007,6,Informatics in Education,2,db/journals/iie/iie6.html#TomazinG07,http://www.mii.lt/informatics_in_education/htm/INFE113.htm +Danijela Boberic Krsticev,Experience in Teaching OOAD to Various Students.,2013,12,Informatics in Education,1,db/journals/iie/iie12.html#KrsticevT13,http://www.mii.lt/informatics_in_education/htm/INFE214.htm +Javier Bilbao,MateOnLine: Web Application to Use Mathematica Locally.,2007,6,Informatics in Education,1,db/journals/iie/iie6.html#BilbaoBGC07,http://www.mii.lt/informatics_in_education/htm/INFE093.htm +Christos Troussas,Affect Recognition through Facebook for Effective Group Profiling Towards Personalized Instruction.,2016,15,Informatics in Education,1,db/journals/iie/iie15.html#TroussasEV16,http://www.mii.lt/informatics_in_education/htm/infedu.2016.08.htm +Simon,Informatics in Education and Koli Calling: a Comparative Analysis.,2009,8,Informatics in Education,1,db/journals/iie/iie8.html#Simon09,http://www.mii.lt/informatics_in_education/htm/INFE139.htm +Anu Haapala,Promoting Different Kinds of Learners towards Active Learning in the Web-Based Environment.,2006,5,Informatics in Education,2,db/journals/iie/iie5.html#Haapala06,http://www.mii.lt/informatics_in_education/htm/INFE085.htm +Liudvikas Kaklauskas,The Analysis of the Informatics Exam of Secondary Education in Lithuania.,2004,3,Informatics in Education,1,db/journals/iie/iie3.html#KaklauskasNM04,http://www.mii.lt/informatics_in_education/htm/INFE030.htm +Chronis Kynigos,Half-Baked Logo Microworlds as Boundary Objects in Integrated Design.,2007,6,Informatics in Education,2,db/journals/iie/iie6.html#Kynigos07,http://www.mii.lt/informatics_in_education/htm/INFE117.htm +Maris Vitins,Preparation of speciality-integrated assignments in informatics study courses at the higher education level.,2012,11,Informatics in Education,1,db/journals/iie/iie11.html#VitinsR12,http://www.mii.lt/informatics_in_education/htm/INFE196.htm +Chronis Kynigos,Turtle's Navigation and Manipulation of Geometrical Figures Constructed by Variable Processes in a 3d Simulated Space.,2007,6,Informatics in Education,2,db/journals/iie/iie6.html#KynigosL07,http://www.mii.lt/informatics_in_education/htm/INFE121.htm +Evgeniy Lavrov,Organizational Approach to the Ergonomic Examination of E-Learning Modules.,2013,12,Informatics in Education,1,db/journals/iie/iie12.html#LavrovKLB13,http://www.mii.lt/informatics_in_education/htm/INFE213.htm +Gordon V. Cormack,Random Factors in IOI 2005 Test Case Scoring.,2006,5,Informatics in Education,1,db/journals/iie/iie5.html#Cormack06,http://www.mii.lt/informatics_in_education/htm/INFE072.htm +Layla Hasan,Heuristic Evaluation of Three Jordanian University Websites.,2013,12,Informatics in Education,2,db/journals/iie/iie12.html#Hasan13,http://www.mii.lt/informatics_in_education/htm/INFE227.htm +Ján Záhorec,Impact of electronic teaching materials on process of education - Results of an experiment.,2010,9,Informatics in Education,2,db/journals/iie/iie9.html#ZahorecHM10,http://www.mii.lt/informatics_in_education/htm/INFE165.htm +Lina Markauskaite,Notions of ICT Literacy in Australian School Education.,2005,4,Informatics in Education,2,db/journals/iie/iie4.html#Markauskaite05,http://www.mii.lt/informatics_in_education/htm/INFE057.htm +Linda Mannila,Novices' Progress in Introductory Programming Courses.,2007,6,Informatics in Education,1,db/journals/iie/iie6.html#Mannila07,http://www.mii.lt/informatics_in_education/htm/INFE101.htm +Alexandre Neves Louzada,Validating the ACE Model for Evaluating Student Performance Using a Teaching-Learning Process Based on Computational Modeling Systems.,2014,13,Informatics in Education,1,db/journals/iie/iie13.html#LouzadaESV14,http://www.mii.lt/informatics_in_education/htm/INFE234.htm +Patrick Camilleri,Teachers' Interpretations of the Internet. An Applied Case Study for the Evaluation of Technological Frames of Reference.,2012,11,Informatics in Education,2,db/journals/iie/iie11.html#Camilleri12,http://www.mii.lt/informatics_in_education/htm/INFE211.htm +Sylvia Martinez,Student-Centered Support Systems to Sustain Logo-Like Learning.,2007,6,Informatics in Education,2,db/journals/iie/iie6.html#Martinez07,http://www.mii.lt/informatics_in_education/htm/INFE115.htm +Petri Ihantola,Creating and Visualizing Test Data from Programming Exercises.,2007,6,Informatics in Education,1,db/journals/iie/iie6.html#Ihantola07,http://www.mii.lt/informatics_in_education/htm/INFE102.htm +Ramunas Kubiliunas,A Formation Method of Flexible Learning Objects.,2009,8,Informatics in Education,1,db/journals/iie/iie8.html#KubiliunasB09,http://www.mii.lt/informatics_in_education/htm/INFE142.htm +Miriam Spodniaková Pfefferová,Computer Simulations and their Influence on Students' Understanding of Oscillatory Motion.,2015,14,Informatics in Education,2,db/journals/iie/iie14.html#Pfefferova15,http://www.mii.lt/informatics_in_education/htm/infedu.2015.16.htm +Eugenijus Kurilovas,Learning content and software evaluation and personalisation problems.,2010,9,Informatics in Education,1,db/journals/iie/iie9.html#KurilovasS10,http://www.mii.lt/informatics_in_education/htm/INFE156.htm +Sigitas Drasutis,A method for automated program code testing.,2010,9,Informatics in Education,2,db/journals/iie/iie9.html#DrasutisMN10,http://www.mii.lt/informatics_in_education/htm/INFE168.htm +Danijel Radosevic,Verificator: Educational Tool for Learning Programming.,2009,8,Informatics in Education,2,db/journals/iie/iie8.html#RadosevicOL09,http://www.mii.lt/informatics_in_education/htm/INFE154.htm +Ewa Kolczyk,Examiner's Remarks on Informatics Matura Examination in Poland.,2009,8,Informatics in Education,2,db/journals/iie/iie8.html#Kolczyk09,http://www.mii.lt/informatics_in_education/htm/INFE150.htm +Mihaela-Monica Vladoiu,Learning Objects Need Badly Instructional Digital Libraries Support.,2003,2,Informatics in Education,2,db/journals/iie/iie2.html#Vladoiu03,http://www.mii.lt/informatics_in_education/htm/INFE020.htm +Niko Myller,JeCo: Combining Program Visualization and Story Weaving.,2006,5,Informatics in Education,2,db/journals/iie/iie5.html#MyllerN06,http://www.mii.lt/informatics_in_education/htm/INFE089.htm +Gyula Horváth,Numerical Difficulties in Pre-University Informatics Education and Competitions.,2003,2,Informatics in Education,1,db/journals/iie/iie2.html#HorvathV03,http://www.mii.lt/informatics_in_education/htm/INFE012.htm +Sona Mardikyan,Analyzing teaching performance of instructors using data mining techniques.,2011,10,Informatics in Education,2,db/journals/iie/iie10.html#MardikyanB11,http://www.mii.lt/informatics_in_education/htm/INFE192.htm +Dragutin Kermek,Process Model Improvement for Source Code Plagiarism Detection in Student Programming Assignments.,2016,15,Informatics in Education,1,db/journals/iie/iie15.html#KermekN16,http://www.mii.lt/informatics_in_education/htm/infedu.2016.06.htm +Lubos Kristák,Interactive Methods of Teaching Physics at Technical Universities.,2014,13,Informatics in Education,1,db/journals/iie/iie13.html#KristakND14,http://www.mii.lt/informatics_in_education/htm/INFE233.htm +Ladislav Beranek,The Attitude of the College Students to Entrepreneurial Skills Development in the Subject E-commerce.,2015,14,Informatics in Education,1,db/journals/iie/iie14.html#Beranek15,http://www.mii.lt/informatics_in_education/htm/infedu.2015.01.htm +Sujin Yoo,An Educational Tool for Browsing the Semantic Web.,2013,12,Informatics in Education,1,db/journals/iie/iie12.html#YooKP13,http://www.mii.lt/informatics_in_education/htm/INFE221.htm +Justus J. Randolph,A Methodological Review of the Program Evaluations in K-12 Computer Science Education.,2008,7,Informatics in Education,2,db/journals/iie/iie7.html#Randolph08,http://www.mii.lt/informatics_in_education/htm/INFE125.htm +Hashim Habiballa,Mathematical Logic and Deduction in Computer Science Education.,2008,7,Informatics in Education,1,db/journals/iie/iie7.html#HabiballaK08,http://www.mii.lt/informatics_in_education/htm/INFE109.htm +David Ginat,The Overlooked Don't-Care Notion in Algorithmic Problem Solving.,2009,8,Informatics in Education,2,db/journals/iie/iie8.html#Ginat09,http://www.mii.lt/informatics_in_education/htm/INFE157.htm +Naeimeh Delavari,Data Mining Application in Higher Learning Institutions.,2008,7,Informatics in Education,1,db/journals/iie/iie7.html#DelavariPB08,http://www.mii.lt/informatics_in_education/htm/INFE111.htm +José Armando Valente,How Logo has Contributed to the Understanding of the Role of Informatics in Education and its Relation to the Learning Process.,2003,2,Informatics in Education,1,db/journals/iie/iie2.html#Valente03,http://www.mii.lt/informatics_in_education/htm/INFE007.htm +Jurate Skupiene,Score calculation in informatics contests using multiple criteria decision methods.,2011,10,Informatics in Education,1,db/journals/iie/iie10.html#Skupiene11,http://www.mii.lt/informatics_in_education/htm/INFE179.htm +Mareen Przybylla,Physical Computing and its Scope - Towards a Constructionist Computer Science Curriculum with Physical Computing.,2014,13,Informatics in Education,2,db/journals/iie/iie13.html#PrzybyllaR14,http://www.mii.lt/informatics_in_education/htm/INFE243.htm +Emilio García Roselló,Visual nnet: An educational ann's simulation environment reusing matlab neural networks toolbox.,2011,10,Informatics in Education,2,db/journals/iie/iie10.html#RoselloDLMPF11,http://www.mii.lt/informatics_in_education/htm/INFE186.htm +Regina Miseviciene,Educational Infrastructure Using Virtualization Technologies: Experience at Kaunas University of Technology.,2012,11,Informatics in Education,2,db/journals/iie/iie11.html#MisevicieneATP12,http://www.mii.lt/informatics_in_education/htm/INFE205.htm +Stanislava Nerute Kligiene,Digital footprints in the context of professional ethics.,2012,11,Informatics in Education,1,db/journals/iie/iie11.html#Kligiene12,http://www.mii.lt/informatics_in_education/htm/INFE199.htm +Palmira Peciuliauskiene,Would-Be Teachers' Competence in Applying ICT: Exposition and Preconditions for Development.,2007,6,Informatics in Education,2,db/journals/iie/iie6.html#PeciuliauskieneB07,http://www.mii.lt/informatics_in_education/htm/INFE118.htm +Lauri Malmi,Visual Algorithm Simulation Exercise System with Automatic Assessment: TRAKLA2.,2004,3,Informatics in Education,2,db/journals/iie/iie3.html#MalmiKKNSS04,http://www.mii.lt/informatics_in_education/htm/INFE048.htm +Said Hadjerrouit,Towards a Blended Learning Model for Teaching and Learning Computer Programming: A Case Study.,2008,7,Informatics in Education,2,db/journals/iie/iie7.html#Hadjerrouit08,http://www.mii.lt/informatics_in_education/htm/INFE127.htm +Filiz Kalelioglu,The Effects of Teaching Programming via Scratch on Problem Solving Skills: A Discussion from Learners' Perspective.,2014,13,Informatics in Education,1,db/journals/iie/iie13.html#KaleliogluG14,http://www.mii.lt/informatics_in_education/htm/INFE232.htm +André Luís Andrade Menolli,Improving Organizational Learning: Defining Units of Learning from Social Tools.,2013,12,Informatics in Education,2,db/journals/iie/iie12.html#MenolliRM13,http://www.mii.lt/informatics_in_education/htm/INFE229.htm +Carlos González,E-Teaching in Undergraduate University Education and Its Relationship to Approaches to Teaching.,2013,12,Informatics in Education,1,db/journals/iie/iie12.html#Gonzalez13,http://www.mii.lt/informatics_in_education/htm/INFE212.htm +Robert McCartney,Take Note: the Effectiveness of Novice Programmers' Annotations on Examinations.,2005,4,Informatics in Education,1,db/journals/iie/iie4.html#McCartneyMSS05,http://www.mii.lt/informatics_in_education/htm/INFE050.htm +Christopher P. Fuhrman,Exploiting Open-source Projects to Study Software Design.,2007,6,Informatics in Education,1,db/journals/iie/iie6.html#Fuhrman07,http://www.mii.lt/informatics_in_education/htm/INFE096.htm +Jinan Fiaidhi,Virtual SceneBean: a Learning Object Model for Collaborative Virtual Learning Environment.,2004,3,Informatics in Education,2,db/journals/iie/iie3.html#Fiaidhi04,http://www.mii.lt/informatics_in_education/htm/INFE043.htm +Stefan Karolcík,The Comprehensive Evaluation of Electronic Learning Tools and Educational Software (CEELTES).,2015,14,Informatics in Education,2,db/journals/iie/iie14.html#KarolcikCHV15,http://www.mii.lt/informatics_in_education/htm/infedu.2015.14.htm +Päivi Atjonen,Finnish Teachers and Pupils as Users of ICT.,2006,5,Informatics in Education,2,db/journals/iie/iie5.html#Atjonen06,http://www.mii.lt/informatics_in_education/htm/INFE079.htm +Peter Micheuz,Some Findings on Informatics Education in Austrian Academic Secondary Schools.,2008,7,Informatics in Education,2,db/journals/iie/iie7.html#Micheuz08,http://www.mii.lt/informatics_in_education/htm/INFE131.htm +Vida Drasute,A method for rational provision of learning syllabus.,2011,10,Informatics in Education,2,db/journals/iie/iie10.html#DrasuteDB11,http://www.mii.lt/informatics_in_education/htm/INFE188.htm +Nico van Diepen,Which way with informatics in high schools in the netherlands? The dutch dilemma.,2011,10,Informatics in Education,1,db/journals/iie/iie10.html#DiepenPZ11,http://www.mii.lt/informatics_in_education/htm/INFE185.htm +Markus Helfert,Characteristics of information systems and business informatics study programs.,2011,10,Informatics in Education,1,db/journals/iie/iie10.html#Helfert11,http://www.mii.lt/informatics_in_education/htm/INFE184.htm +Hee-Jung Jung,Fostering an English Teaching Environment: Factors Influencing English as a Foreign Language Teachers' Adoption of Mobile Learning.,2015,14,Informatics in Education,2,db/journals/iie/iie14.html#Jung15,http://www.mii.lt/informatics_in_education/htm/infedu.2015.13.htm +Linda Mannila,Invariant based programming in education - An analysis of student difficulties.,2010,9,Informatics in Education,1,db/journals/iie/iie9.html#Mannila10,http://www.mii.lt/informatics_in_education/htm/INFE163.htm +Olga Kosheleva,Egyptian Fractions Revisited.,2009,8,Informatics in Education,1,db/journals/iie/iie8.html#KoshelevaK09,http://www.mii.lt/informatics_in_education/htm/INFE145.htm +Angel Pretelín-Ricárdez,Videogame Construction by Engineering Students for Understanding Modelling Processes: The Case of Simulating Water Behaviour.,2015,14,Informatics in Education,2,db/journals/iie/iie14.html#Pretelin-Ricardez15,http://www.mii.lt/informatics_in_education/htm/infedu.2015.15.htm +Ala Kovieriene,Cognitive Personality Traits and Technical Knowledge of Young People in Lithuania.,2008,7,Informatics in Education,2,db/journals/iie/iie7.html#Kovieriene08,http://www.mii.lt/informatics_in_education/htm/INFE137.htm +Pedro Manuel Pinto Ribeiro,Teaching Artificial Intelligence and Logic Programming in a Competitive Environment.,2009,8,Informatics in Education,1,db/journals/iie/iie8.html#RibeiroSF09,http://www.mii.lt/informatics_in_education/htm/INFE143.htm +DuGyu Kim,Development of an Intelligent Instruction System for Mathematical Computation.,2013,12,Informatics in Education,1,db/journals/iie/iie12.html#KimL13,http://www.mii.lt/informatics_in_education/htm/INFE219.htm +Lina Markauskaite,Critical Review of Research Findings on Information Technology in Education.,2003,2,Informatics in Education,1,db/journals/iie/iie2.html#Markauskaite03,http://www.mii.lt/informatics_in_education/htm/INFE001.htm +Hagen Höpfner,Open Source Software in Education: a Report of Experience.,2003,2,Informatics in Education,1,db/journals/iie/iie2.html#Hopfner03,http://www.mii.lt/informatics_in_education/htm/INFE002.htm +Ernestas Filatovas,A decision support system for solving multiple criteria optimization problems.,2011,10,Informatics in Education,2,db/journals/iie/iie10.html#FilatovasK11,http://www.mii.lt/informatics_in_education/htm/INFE189.htm +Jan Benacka,Introduction to 3D graphics through Excel.,2013,12,Informatics in Education,2,db/journals/iie/iie12.html#Benacka13,http://www.mii.lt/informatics_in_education/htm/INFE226.htm +Said Hadjerrouit,Object-Oriented Software Development Education: a Constructivist Framework.,2005,4,Informatics in Education,2,db/journals/iie/iie4.html#Hadjerrouit05,http://www.mii.lt/informatics_in_education/htm/INFE060.htm +Zoltán Kátai,Dynamic Programming Strategies on the Decision Tree Hidden behind the Optimizing Problems.,2007,6,Informatics in Education,1,db/journals/iie/iie6.html#Katai07,http://www.mii.lt/informatics_in_education/htm/INFE092.htm +Zivana Komlenov,Introducing adaptivity features to a regular learning management system to support creation of advanced elessons.,2010,9,Informatics in Education,1,db/journals/iie/iie9.html#KomlenovBI10,http://www.mii.lt/informatics_in_education/htm/INFE158.htm +Stanislav Holec,Integrated Science through Computer-aided Experiments.,2004,3,Informatics in Education,2,db/journals/iie/iie3.html#HolecHR04,http://www.mii.lt/informatics_in_education/htm/INFE045.htm +Ján Stebila,Research and prediction of the application of multimedia teaching aid in teaching technical education on the 2nd level of primary schools.,2011,10,Informatics in Education,1,db/journals/iie/iie10.html#Stebila11,http://www.mii.lt/informatics_in_education/htm/INFE182.htm +Tom Verhoeff,Settling Multiple Debts Efficiently: An Invitation to Computing Science.,2004,3,Informatics in Education,1,db/journals/iie/iie3.html#Verhoeff04,http://www.mii.lt/informatics_in_education/htm/INFE023.htm +Valentina Dagiene,Web 2.0 technologies and applications in the best practice networks and communities.,2010,9,Informatics in Education,2,db/journals/iie/iie9.html#DagieneK10,http://www.mii.lt/informatics_in_education/htm/INFE175.htm +Stanislav Holec,Computer Simulations in Mechanics at the Secondary School.,2004,3,Informatics in Education,2,db/journals/iie/iie3.html#HolecPR04,http://www.mii.lt/informatics_in_education/htm/INFE047.htm +Abdellah Bennane,Adaptive Educational Software by Applying Reinforcement Learning.,2013,12,Informatics in Education,1,db/journals/iie/iie12.html#Bennane13,http://www.mii.lt/informatics_in_education/htm/INFE220.htm +Elizabeth Stacey,Research into Cyberbullying: Student Perspectives on Cybersafe Learning Environments.,2009,8,Informatics in Education,1,db/journals/iie/iie8.html#Stacey09,http://www.mii.lt/informatics_in_education/htm/INFE136.htm +Mihaela-Monica Vladoiu,Towards Building an Open Digital Library for Instructional Design that Facilitates Reflective e-Instruction.,2004,3,Informatics in Education,1,db/journals/iie/iie3.html#Vladoiu04,http://www.mii.lt/informatics_in_education/htm/INFE025.htm +Gintautas Dzemyda,Forecasting Models in the State Education System.,2003,2,Informatics in Education,1,db/journals/iie/iie2.html#DzemydaST03,http://www.mii.lt/informatics_in_education/htm/INFE008.htm +Jurgita Lieponiene,The grades transfer from one grading scale to other algorithmization.,2011,10,Informatics in Education,2,db/journals/iie/iie10.html#LieponieneK11,http://www.mii.lt/informatics_in_education/htm/INFE190.htm +Jacky Wai-cheong Pow,ICT Teaching Experience Sharing in Higher Education: an Education Development Approach.,2006,5,Informatics in Education,2,db/journals/iie/iie5.html#Pow06,http://www.mii.lt/informatics_in_education/htm/INFE084.htm +Fabiano Azevedo Dorça,A Stochastic Approach for Automatic and Dynamic Modeling of Students' Learning Styles in Adaptive Educational Systems.,2012,11,Informatics in Education,2,db/journals/iie/iie11.html#DorcaLFL12,http://www.mii.lt/informatics_in_education/htm/INFE202.htm +Juozas Adomavicius,Modernization of Information Technologies Studies at University Level.,2004,3,Informatics in Education,1,db/journals/iie/iie3.html#AdomaviciusBKS04,http://www.mii.lt/informatics_in_education/htm/INFE027.htm +Cristiane Neri Nobre,The Use of Geogebra Software as a Calculus Teaching and Learning Tool.,2016,15,Informatics in Education,2,db/journals/iie/iie15.html#NobreMJRCR16,http://www.mii.lt/informatics_in_education/htm/infedu.2016.13.htm +Izabella Foltynowicz,Recursion Versus Iteration with the List as a Data Structure.,2007,6,Informatics in Education,2,db/journals/iie/iie6.html#Foltynowicz07,http://www.mii.lt/informatics_in_education/htm/INFE107.htm +Afrooz Purarjomandlangrudi,Investigating the Drivers of Student Interaction and Engagement in Online Courses: A Study of State-of-the-art.,2016,15,Informatics in Education,2,db/journals/iie/iie15.html#Purarjomandlangrudi16,http://www.mii.lt/informatics_in_education/htm/infedu.2016.14.htm +Elmano Ramalho Cavalcanti,Detection and Evaluation of Cheating on College Exams using Supervised Classification.,2012,11,Informatics in Education,2,db/journals/iie/iie11.html#CavalcantiPCP12,http://www.mii.lt/informatics_in_education/htm/INFE203.htm +Attila Pásztor,Effects of using model robots in the education of programming.,2010,9,Informatics in Education,1,db/journals/iie/iie9.html#PasztorPT10,http://www.mii.lt/informatics_in_education/htm/INFE159.htm +Joana Lipeikiene,Virtual Learning Environments as a Supplement to Traditional Teaching.,2003,2,Informatics in Education,1,db/journals/iie/iie2.html#Lipeikiene03,http://www.mii.lt/informatics_in_education/htm/INFE017.htm +Eugenijus Valavicius,Knowledge of ICT of Secondary School Graduates.,2012,11,Informatics in Education,2,db/journals/iie/iie11.html#ValaviciusB12,http://www.mii.lt/informatics_in_education/htm/INFE204.htm +Said Hadjerrouit,Investigating technical and pedagogical usability issues of collaborative learning with wikis.,2012,11,Informatics in Education,1,db/journals/iie/iie11.html#Hadjerrouit12,http://www.mii.lt/informatics_in_education/htm/INFE200.htm +Darja Smite,Ethics and Law on the Electronic Frontier.,2004,3,Informatics in Education,1,db/journals/iie/iie3.html#Smite04,http://www.mii.lt/informatics_in_education/htm/INFE028.htm +Ala Kovieriene,The link between technical knowledge of the youth and their technical abilities: The role of gender.,2010,9,Informatics in Education,1,db/journals/iie/iie9.html#Kovieriene10,http://www.mii.lt/informatics_in_education/htm/INFE161.htm +,Editorial.,2007,6,Informatics in Education,2,db/journals/iie/iie6.html#X07,http://www.mii.lt/informatics_in_education/htm/INFE123.htm +Wolfgang Pohl,Computer Science Contests for Secondary School Students: Approaches to Classification.,2006,5,Informatics in Education,1,db/journals/iie/iie5.html#Pohl06a,http://www.mii.lt/informatics_in_education/htm/INFE075.htm +Vilma Kisnieriene,Information Technologies for Biology Education: Computerized Electrophysiology of Plant Cells.,2008,7,Informatics in Education,1,db/journals/iie/iie7.html#KisnierieneBSD08,http://www.mii.lt/informatics_in_education/htm/INFE124.htm +Martins Opmanis,Some Ways to Improve Olympiads in Informatics.,2006,5,Informatics in Education,1,db/journals/iie/iie5.html#Opmanis06,http://www.mii.lt/informatics_in_education/htm/INFE074.htm +Carlos Arturo Torres-Gastelú,Perceptions of Students towards ICT Competencies at the University.,2016,15,Informatics in Education,2,db/journals/iie/iie15.html#Torres-GasteluK16,http://www.mii.lt/informatics_in_education/htm/infedu.2016.16.htm +Khayrazad Kari Jabbour,An Analysis of the Effect of Mobile Learning on Lebanese Higher Education.,2014,13,Informatics in Education,1,db/journals/iie/iie13.html#Jabbour14,http://www.mii.lt/informatics_in_education/htm/INFE230.htm +Arthur van Bilsen,Understanding complex adaptive systems by playing games.,2010,9,Informatics in Education,1,db/journals/iie/iie9.html#BilsenBM10,http://www.mii.lt/informatics_in_education/htm/INFE160.htm +Vladimir Lubchak,Approach to Dynamic Assembling of Individualized Learning Paths.,2012,11,Informatics in Education,2,db/journals/iie/iie11.html#LubchakKK12,http://www.mii.lt/informatics_in_education/htm/INFE207.htm +Nives Mikelic Preradovic,Investigating Parents' Attitudes towards Digital Technology Use in Early Childhood: A Case Study from Croatia.,2016,15,Informatics in Education,1,db/journals/iie/iie15.html#PreradovicLS16,http://www.mii.lt/informatics_in_education/htm/infedu.2016.07.htm +Mirjana Devedzic,Towards Web-Based Education of Demography.,2003,2,Informatics in Education,2,db/journals/iie/iie2.html#DevedzicD03,http://www.mii.lt/informatics_in_education/htm/INFE005.htm +L'ubomír Zácok,Research examination of the options to increase the education effectiveness in the technical subjects at the 7th grade of elementary school using hypertext educational material.,2010,9,Informatics in Education,2,db/journals/iie/iie9.html#Zacok10,http://www.mii.lt/informatics_in_education/htm/INFE166.htm +Vanda Aramaviciute,Values of Upper Secondary Learners and Role of Mathematics in their Development.,2007,6,Informatics in Education,1,db/journals/iie/iie6.html#Aramaviciute07,http://www.mii.lt/informatics_in_education/htm/INFE094.htm +Päivi Atjonen,ICT in Education in Finland and Hong Kong. An Overview of the Present State of the Educational System at Various Levels.,2006,5,Informatics in Education,2,db/journals/iie/iie5.html#AtjonenL06,http://www.mii.lt/informatics_in_education/htm/INFE081.htm +Marcos Didonet Del Fabro,Teaching web application development: A case study in a computer science course.,2012,11,Informatics in Education,1,db/journals/iie/iie11.html#FabroAS12,http://www.mii.lt/informatics_in_education/htm/INFE201.htm +Natalija Ignatova,ICT-based Learning Personalization Affordance in the Context of Implementation of Constructionist Learning Activities.,2015,14,Informatics in Education,1,db/journals/iie/iie14.html#IgnatovaDK15,http://www.mii.lt/informatics_in_education/htm/infedu.2015.04.htm +Athanasis Karoulis,On motivation to apply odl in adult teachers' education.,2011,10,Informatics in Education,1,db/journals/iie/iie10.html#Karoulis11,http://www.mii.lt/informatics_in_education/htm/INFE180.htm +Gary S. Stager,Towards the Construction of a Language for Describing the Learning Potential of Computing Activities.,2007,6,Informatics in Education,2,db/journals/iie/iie6.html#Stager07,http://www.mii.lt/informatics_in_education/htm/INFE120.htm +Tom Verhoeff,The IOI is (not) a Science Olympiad.,2006,5,Informatics in Education,1,db/journals/iie/iie5.html#Verhoeff06,http://www.mii.lt/informatics_in_education/htm/INFE078.htm +Zoltán Kátai,Multi-Sensory Informatics Education.,2014,13,Informatics in Education,2,db/journals/iie/iie13.html#KataiTA14,http://www.mii.lt/informatics_in_education/htm/INFE242.htm +Jakub Swacha,Computer game design classes: The students' and professionals' perspectives.,2010,9,Informatics in Education,2,db/journals/iie/iie9.html#SwachaSS10,http://www.mii.lt/informatics_in_education/htm/INFE167.htm +Paula Mariza Zedu Alliprandini,Computer Use and Its Effect on the Memory Process in Young and Adults.,2013,12,Informatics in Education,1,db/journals/iie/iie12.html#AlliprandiniSBOS13,http://www.mii.lt/informatics_in_education/htm/INFE217.htm +Yuheng Helen Jiang,Data Mining of Undergraduate Course Evaluations.,2016,15,Informatics in Education,1,db/journals/iie/iie15.html#JiangSG16,http://www.mii.lt/informatics_in_education/htm/infedu.2016.05.htm +Bernard Cornu,New Media and Open and Distance Learning: New challenges for Education in a Knowledge Society.,2007,6,Informatics in Education,1,db/journals/iie/iie6.html#Cornu07,http://www.mii.lt/informatics_in_education/htm/INFE095.htm +Andrew K. Lui,A Study on the Perception of Students towards Educational Weblogs.,2006,5,Informatics in Education,2,db/journals/iie/iie5.html#LuiCCL06,http://www.mii.lt/informatics_in_education/htm/INFE087.htm +Christian Rinderknecht,A Survey on Teaching and Learning Recursive Programming.,2014,13,Informatics in Education,1,db/journals/iie/iie13.html#Rinderknecht14,http://www.mii.lt/informatics_in_education/htm/INFE235.htm +Eija Kärnä-Lin,Technology in Finnish Special Education - Toward Inclusion and Harmonized School Days.,2007,6,Informatics in Education,1,db/journals/iie/iie6.html#Karna-LinPSV07,http://www.mii.lt/informatics_in_education/htm/INFE090.htm +Vytautas Stuikys,Development of Generative Learning Objects Using Feature Diagrams and Generative Techniques.,2008,7,Informatics in Education,2,db/journals/iie/iie7.html#StuikysD08,http://www.mii.lt/informatics_in_education/htm/INFE135.htm +Mauricio Massaru Arimoto,AM-OER: An Agile Method for the Development of Open Educational Resources.,2016,15,Informatics in Education,2,db/journals/iie/iie15.html#ArimotoBB16,http://www.mii.lt/informatics_in_education/htm/infedu.2016.11.htm +Rajeev Ranjan,Performance Evaluation of Indian Technical Institutions Using PROMETHEE-GAIA Approach.,2015,14,Informatics in Education,1,db/journals/iie/iie14.html#RanjanC15,http://www.mii.lt/informatics_in_education/htm/infedu.2015.07.htm +Natasa Grgurina,The First Decade of Informatics in Dutch High Schools.,2008,7,Informatics in Education,1,db/journals/iie/iie7.html#GrgurinaT08,http://www.mii.lt/informatics_in_education/htm/INFE130.htm +Javier Bilbao,Teaching Mathematics in University Education through Internet.,2004,3,Informatics in Education,1,db/journals/iie/iie3.html#BilbaoBGM04,http://www.mii.lt/informatics_in_education/htm/INFE021.htm +Monique Snoeck,Computer Aided Modelling Exercises.,2007,6,Informatics in Education,1,db/journals/iie/iie6.html#SnoeckHBBM07,http://www.mii.lt/informatics_in_education/htm/INFE099.htm +Ivaylo Donchev,Experience in Teaching C++11 within the Undergraduate Informatics Curriculum.,2013,12,Informatics in Education,1,db/journals/iie/iie12.html#Donchev13,http://www.mii.lt/informatics_in_education/htm/INFE208.htm +Zahava Scherz,Mini-Projects Development in Computer Science - Students' Use of Organization Tools.,2005,4,Informatics in Education,2,db/journals/iie/iie4.html#ScherzH05,http://www.mii.lt/informatics_in_education/htm/INFE064.htm +Mara Saeli,Teaching programming in secondary school: A pedagogical content knowledge perspective.,2011,10,Informatics in Education,1,db/journals/iie/iie10.html#SaeliPJZ11,http://www.mii.lt/informatics_in_education/htm/INFE177.htm +Katalin Ternai,Integrated Systems in the Role of Integration of Education.,2003,2,Informatics in Education,2,db/journals/iie/iie2.html#Ternai03,http://www.mii.lt/informatics_in_education/htm/INFE019.htm +Athanasis Karoulis,The Cognitive Transfer and the Tutor's Role in a CBL Environment.,2003,2,Informatics in Education,2,db/journals/iie/iie2.html#KaroulisP03,http://www.mii.lt/informatics_in_education/htm/INFE011.htm +Lina Markauskaite,Framework for Educational Software Quality Assurance in Lithuania.,2004,3,Informatics in Education,2,db/journals/iie/iie3.html#Markauskaite04,http://www.mii.lt/informatics_in_education/htm/INFE040.htm +Said Hadjerrouit,Teaching and Learning School Informatics: A Concept-Based Pedagogical Approach.,2009,8,Informatics in Education,2,db/journals/iie/iie8.html#Hadjerrouit09,http://www.mii.lt/informatics_in_education/htm/INFE147.htm +Latifa Ben Arfa Rabai,Programming Language Use in US Academia and Industry.,2015,14,Informatics in Education,2,db/journals/iie/iie14.html#RabaiCM15,http://www.mii.lt/informatics_in_education/htm/infedu.2015.09.htm +Wolfgang Weber,SelMa - Self-guided Learning in Teaching Mathematics.,2004,3,Informatics in Education,1,db/journals/iie/iie3.html#Weber04,http://www.mii.lt/informatics_in_education/htm/INFE031.htm +Anita Juskeviciene,On Recommending Web 2.0 Tools to Personalise Learning.,2014,13,Informatics in Education,1,db/journals/iie/iie13.html#JuskevicieneK14,http://www.mii.lt/informatics_in_education/htm/INFE231.htm +Sami Surakka,Delphi Study of the Cognitive Skills of Experienced Software Developers.,2005,4,Informatics in Education,1,db/journals/iie/iie4.html#SurakkaM05,http://www.mii.lt/informatics_in_education/htm/INFE056.htm +Nazlena Mohamad Ali,Exploring the usage of a video application tool: Experiences in film studies.,2011,10,Informatics in Education,2,db/journals/iie/iie10.html#AliS11,http://www.mii.lt/informatics_in_education/htm/INFE193.htm +Christoph Steer,Comparing the efficiency of different approaches to teach informatics at secondary schools.,2010,9,Informatics in Education,2,db/journals/iie/iie9.html#SteerH10,http://www.mii.lt/informatics_in_education/htm/INFE174.htm +Giedrius Balbieris,Migration of E-Learning Objects from Database to IMS XML Standard.,2003,2,Informatics in Education,2,db/journals/iie/iie2.html#BalbierisR03,http://www.mii.lt/informatics_in_education/htm/INFE018.htm +David Ginat,The Unfortunate Novice Theme of Direct Transformation.,2008,7,Informatics in Education,2,db/journals/iie/iie7.html#Ginat08,http://www.mii.lt/informatics_in_education/htm/INFE138.htm +Despina Tsompanoudi,Distributed Pair Programming Using Collaboration Scripts: An Educational System and Initial Results.,2015,14,Informatics in Education,2,db/journals/iie/iie14.html#TsompanoudiSX15,http://www.mii.lt/informatics_in_education/htm/infedu.2015.17.htm +Valentina Dagiene,Teacher Training via Distance Learning Focussed on Educational Issues of Information Technology.,2004,3,Informatics in Education,2,db/journals/iie/iie3.html#DagieneV04,http://www.mii.lt/informatics_in_education/htm/INFE039.htm +Christian Rinderknecht,A didactic analysis of functional queues.,2011,10,Informatics in Education,1,db/journals/iie/iie10.html#Rinderknecht11,http://www.mii.lt/informatics_in_education/htm/INFE178.htm +Mara Saeli,Programming: Teachers and pedagogical content knowledge in the netherlands.,2012,11,Informatics in Education,1,db/journals/iie/iie11.html#SaeliPJZ12,http://www.mii.lt/informatics_in_education/htm/INFE198.htm +Analía Amandi,Intelligent Agents for Distance Learning.,2003,2,Informatics in Education,2,db/journals/iie/iie2.html#AmandiCAB03,http://www.mii.lt/informatics_in_education/htm/INFE014.htm +Sandy C. Li,Capacity Building for Lifelong Learning: A Study of Practitioners' Perceptions on Information Literacy Framework.,2006,5,Informatics in Education,2,db/journals/iie/iie5.html#LiKLH06,http://www.mii.lt/informatics_in_education/htm/INFE088.htm +Giora Alexandron,Teaching Nondeterminism Through Programming.,2016,15,Informatics in Education,1,db/journals/iie/iie15.html#AlexandronAGH16,http://www.mii.lt/informatics_in_education/htm/infedu.2016.01.htm +Spyros Doukakis,Measuring Students' Acceptance and Confidence on Algorithms and Programming: The Impact of the Engagement with CS on Secondary Education.,2013,12,Informatics in Education,2,db/journals/iie/iie12.html#DoukakisGKV13,http://www.mii.lt/informatics_in_education/htm/INFE225.htm +Erkki Sutinen,The Candle Scheme for Creating an on-line Computer Science Program - Experiences and Vision.,2003,2,Informatics in Education,1,db/journals/iie/iie2.html#SutinenT03,http://www.mii.lt/informatics_in_education/htm/INFE009.htm +Teodosi Teodosiev,Some Pitfalls in Introductory Programming Courses.,2012,11,Informatics in Education,2,db/journals/iie/iie11.html#TeodosievN12,http://www.mii.lt/informatics_in_education/htm/INFE210.htm +Vytautas Stuikys,Aggregating of Learning Object Units Derived from a Generative Learning Object.,2009,8,Informatics in Education,2,db/journals/iie/iie8.html#StuikysB09,http://www.mii.lt/informatics_in_education/htm/INFE148.htm +Elena Castro,An Empirical Perspective of Using Ternary Relationships in Database Conceptual Modelling.,2003,2,Informatics in Education,2,db/journals/iie/iie2.html#CastroCM03,http://www.mii.lt/informatics_in_education/htm/INFE010.htm +Sari Walldén,Educational Data Mining and Problem-Based Learning.,2014,13,Informatics in Education,1,db/journals/iie/iie13.html#WalldenM14,http://www.mii.lt/informatics_in_education/htm/INFE237.htm +Lina Tankeleviciene,Characteristics of Domain Ontologies for Web Based Learning and their Application for Quality Evaluation.,2009,8,Informatics in Education,1,db/journals/iie/iie8.html#TankelevicieneD09,http://www.mii.lt/informatics_in_education/htm/INFE140.htm +Regina Miseviciene,Application of cloud computing at KTU: MS live@edu case.,2011,10,Informatics in Education,2,db/journals/iie/iie10.html#MisevicieneBA11,http://www.mii.lt/informatics_in_education/htm/INFE194.htm +Matti Nykänen,Point-and-Click Logic.,2005,4,Informatics in Education,1,db/journals/iie/iie4.html#Nykanen05,http://www.mii.lt/informatics_in_education/htm/INFE051.htm +Uyanga Sambuu,Baseline Analysis on ICT in General Education of Mongolia.,2014,13,Informatics in Education,1,db/journals/iie/iie13.html#Sambuu14,http://www.mii.lt/informatics_in_education/htm/INFE236.htm +Olga Kosheleva,Pre-Service Teacher Training in Mathematics Using Tablet PC Technology.,2007,6,Informatics in Education,2,db/journals/iie/iie6.html#KoshelevaMI07,http://www.mii.lt/informatics_in_education/htm/INFE112.htm +Javier Bilbao,Future Quality in the Emergent European Higher Education Area Involves the Use of Informatics.,2008,7,Informatics in Education,1,db/journals/iie/iie7.html#BilbaoBGVRG08,http://www.mii.lt/informatics_in_education/htm/INFE128.htm +Raphael Winckler de Bettio,The Experience of Using the Scrum Process in the Production of Learning Objects for Blended Learning.,2013,12,Informatics in Education,1,db/journals/iie/iie12.html#BettioPMH13,http://www.mii.lt/informatics_in_education/htm/INFE216.htm +Somjin Phiakoksong,An Application of Structural Equation Modeling for Developing Good Teaching Characteristics Ontology.,2013,12,Informatics in Education,2,db/journals/iie/iie12.html#PhiakoksongNA13,http://www.mii.lt/informatics_in_education/htm/INFE228.htm +Dobilas Kirvelis,Neuroinformatics I: Fuzzy Neural Networks of More-Equal-Less Logic (Static).,2004,3,Informatics in Education,1,db/journals/iie/iie3.html#KirvelisD04,http://www.mii.lt/informatics_in_education/htm/INFE037.htm +Valentin P. Bakoev,The recurrence relations in teaching students of informatics.,2010,9,Informatics in Education,2,db/journals/iie/iie9.html#Bakoev10,http://www.mii.lt/informatics_in_education/htm/INFE171.htm +Ivan Kolarov,Computerized Laboratory in Science and Technology Teaching: Course in Machine Elements.,2005,4,Informatics in Education,1,db/journals/iie/iie4.html#Kolarov05,http://www.mii.lt/informatics_in_education/htm/INFE042.htm +Teemu Valtonen,High School Teachers' Course Designs and Their Professional Knowledge of Online Teaching.,2006,5,Informatics in Education,2,db/journals/iie/iie5.html#ValtonenKW06,http://www.mii.lt/informatics_in_education/htm/INFE083.htm +Leslie Schwartzman,Student Defensiveness as a Threshold to Reflective Learning in Software Design.,2007,6,Informatics in Education,1,db/journals/iie/iie6.html#Schwartzman07,http://www.mii.lt/informatics_in_education/htm/INFE100.htm +Michela Pedroni,Visualize and Open Up.,2007,6,Informatics in Education,1,db/journals/iie/iie6.html#PedroniB07,http://www.mii.lt/informatics_in_education/htm/INFE098.htm +Uyanga Sambuu,The Current Situation of Informatics Education in Mongolia.,2006,5,Informatics in Education,1,db/journals/iie/iie5.html#Sambuu06,http://www.mii.lt/informatics_in_education/htm/INFE068.htm +Mikko-Jussi Laakso,Multi-Perspective Study of Novice Learners Adopting the Visual Algorithm Simulation Exercise System TRAKLA2.,2005,4,Informatics in Education,1,db/journals/iie/iie4.html#LaaksoSGQKM05,http://www.mii.lt/informatics_in_education/htm/INFE053.htm +Ana Iglesias,An Experience Applying Reinforcement Learning in a Web-Based Adaptive and Intelligent Educational System.,2003,2,Informatics in Education,2,db/journals/iie/iie2.html#IglesiasMF03,http://www.mii.lt/informatics_in_education/htm/INFE004.htm +Valentina Dagiene,Information Technology Contests - Introduction to Computer Science in an Attractive Way.,2006,5,Informatics in Education,1,db/journals/iie/iie5.html#Dagiene06,http://www.mii.lt/informatics_in_education/htm/INFE069.htm +Bronius Skupas,Feedback improvement in automatic program evaluation systems.,2010,9,Informatics in Education,2,db/journals/iie/iie9.html#Skupas10,http://www.mii.lt/informatics_in_education/htm/INFE173.htm +Amita Goyal Chin,On Mobile Device Security Practices and Training Efficacy: An Empirical Study.,2016,15,Informatics in Education,2,db/journals/iie/iie15.html#ChinEH16,http://www.mii.lt/informatics_in_education/htm/infedu.2016.12.htm +Valentina Dagiene,Bebras - a Sustainable Community Building Model for the Concept Based Learning of Informatics and Computational Thinking.,2016,15,Informatics in Education,1,db/journals/iie/iie15.html#DagieneS16,http://www.mii.lt/informatics_in_education/htm/infedu.2016.02.htm +Hanna Kinnari-Korpela,Using Short Video Lectures to Enhance Mathematics Learning - Experiences on Differential and Integral Calculus Course for Engineering Students.,2015,14,Informatics in Education,1,db/journals/iie/iie14.html#Kinnari-Korpela15,http://www.mii.lt/informatics_in_education/htm/infedu.2015.05.htm +Maxim Mozgovoy,Desktop Tools for Offline Plagiarism Detection in Computer Programs.,2006,5,Informatics in Education,1,db/journals/iie/iie5.html#Mozgovoy06,http://www.mii.lt/informatics_in_education/htm/INFE067.htm +Katerina Glezou,Engaging students of senior high school in simulation development.,2010,9,Informatics in Education,1,db/journals/iie/iie9.html#GlezouG10,http://www.mii.lt/informatics_in_education/htm/INFE164.htm +Torsten Reiners,Six key topics for automated assessment utilisation and acceptance.,2011,10,Informatics in Education,1,db/journals/iie/iie10.html#ReinersDD11,http://www.mii.lt/informatics_in_education/htm/INFE181.htm +Athanasis Karoulis,Guidelines on the Design of Effective CBL Environments.,2006,5,Informatics in Education,1,db/journals/iie/iie5.html#Karoulis06,http://www.mii.lt/informatics_in_education/htm/INFE065.htm +Michal Forisek,On the Suitability of Programming Tasks for Automated Evaluation.,2006,5,Informatics in Education,1,db/journals/iie/iie5.html#Forisek06,http://www.mii.lt/informatics_in_education/htm/INFE076.htm +Raad A. Alturki,Measuring and Improving Student Performance in an Introductory Programming Course.,2016,15,Informatics in Education,2,db/journals/iie/iie15.html#Alturki16,http://www.mii.lt/informatics_in_education/htm/infedu.2016.10.htm +Aristea Theodoraki,Studying Students' Attitudes on Using Examples of Game Source Code for Learning Programming.,2014,13,Informatics in Education,2,db/journals/iie/iie13.html#TheodorakiX14,http://www.mii.lt/informatics_in_education/htm/INFE245.htm +David Passig,A Taxonomy of Future Higher Thinking Skills.,2003,2,Informatics in Education,1,db/journals/iie/iie2.html#Passig03,http://www.mii.lt/informatics_in_education/htm/INFE006.htm +Ivaylo Donchev,Object-Oriented Programming in Bulgarian Universities' Informatics and Computer Science Curricula.,2008,7,Informatics in Education,2,db/journals/iie/iie7.html#DonchevT08,http://www.mii.lt/informatics_in_education/htm/INFE133.htm +Lina Markauskaite,Exploring Individual and Collaborative Dimensions of Knowledge Building in an Online Learning Community of Practice.,2008,7,Informatics in Education,1,db/journals/iie/iie7.html#MarkauskaiteS08,http://www.mii.lt/informatics_in_education/htm/INFE119.htm +Dobilas Kirvelis,Extended Informatics Paradigm in Biological and Psychological Education.,2003,2,Informatics in Education,1,db/journals/iie/iie2.html#KirvelisB03,http://www.mii.lt/informatics_in_education/htm/INFE015.htm +Miriam Martínez Muñoz,Electrical Storm Simulation to Improve the Learning Physics Process.,2013,12,Informatics in Education,2,db/journals/iie/iie12.html#MunozJM13,http://www.mii.lt/informatics_in_education/htm/INFE224.htm +Tuukka M. Takala,Empowering Students to Create Better Virtual Reality Applications: A Longitudinal Study of a VR Capstone Course.,2016,15,Informatics in Education,2,db/journals/iie/iie15.html#TakalaMPT16,http://www.mii.lt/informatics_in_education/htm/infedu.2016.15.htm +Andreas A. Veglis,Comparison of Course Support Environments: Commercial Versus Open Source Software.,2005,4,Informatics in Education,2,db/journals/iie/iie4.html#Veglis05,http://www.mii.lt/informatics_in_education/htm/INFE059.htm +Jill Vincent,Mathematical Reasoning in a Technological Environment.,2003,2,Informatics in Education,1,db/journals/iie/iie2.html#Vincent03,http://www.mii.lt/informatics_in_education/htm/INFE003.htm +David Clark,Testing Programming Skills with Multiple Choice Questions.,2004,3,Informatics in Education,2,db/journals/iie/iie3.html#Clark04,http://www.mii.lt/informatics_in_education/htm/INFE041.htm +Maria Csernoch,Testing Algorithmic Skills in Traditional and Non-Traditional Programming Environments.,2015,14,Informatics in Education,2,db/journals/iie/iie14.html#CsernochBMA15,http://www.mii.lt/informatics_in_education/htm/infedu.2015.11.htm +Tsvetanka Georgieva-Trifonova,Development of an information system for diploma works management.,2011,10,Informatics in Education,1,db/journals/iie/iie10.html#Georgieva-Trifonova11,http://www.mii.lt/informatics_in_education/htm/INFE187.htm +Subbaraya Kuppuswami,The Effects of Pair Programming on Learning Efficiency in Short Programming Assignments.,2004,3,Informatics in Education,2,db/journals/iie/iie3.html#KuppuswamiV04,http://www.mii.lt/informatics_in_education/htm/INFE036.htm +Alessio Gaspar,Students' activity focus in online asynchronous peer learning forums.,2010,9,Informatics in Education,1,db/journals/iie/iie9.html#GasparLBA10,http://www.mii.lt/informatics_in_education/htm/INFE162.htm +Palmira Peciuliauskiene,Operation of Educational Software in the Process of Teaching Natural Sciences in Lithuanian Comprehensive School.,2005,4,Informatics in Education,2,db/journals/iie/iie4.html#PeciuliauskieneB05,http://www.mii.lt/informatics_in_education/htm/INFE063.htm +Justus J. Randolph,Program and Evaluation Planning Light: Planning in the Real World.,2007,6,Informatics in Education,1,db/journals/iie/iie6.html#RandolphE07,http://www.mii.lt/informatics_in_education/htm/INFE105.htm +Andrej Afonin,Distributed social bookmarking web service architecture. Soap vs. Icamp feedback.,2011,10,Informatics in Education,2,db/journals/iie/iie10.html#Afonin11,http://www.mii.lt/informatics_in_education/htm/INFE183.htm +Michael de Raadt,A System Employing Peer Review and Enhanced Computer Assisted Assessment of Querying Skills.,2007,6,Informatics in Education,1,db/journals/iie/iie6.html#RaadtDL07,http://www.mii.lt/informatics_in_education/htm/INFE104.htm +Athanasis Karoulis,The Heuristic Evaluation of Web-Sites Concerning the Evaluators' Expertise and the Appropriate Criteria List.,2004,3,Informatics in Education,1,db/journals/iie/iie3.html#KaroulisP04,http://www.mii.lt/informatics_in_education/htm/INFE026.htm +Dalia Baziukaite,Investigation of Q-Learning in the Context of a Virtual Learning Environment.,2007,6,Informatics in Education,2,db/journals/iie/iie6.html#Baziukaite07,http://www.mii.lt/informatics_in_education/htm/INFE106.htm +Luciana Vieira Castilho-Weinert,Computers in Physical Therapy Education: Interactive Multimedia Learning with MuStreT.,2009,8,Informatics in Education,2,db/journals/iie/iie8.html#Castilho-WeinertL09,http://www.mii.lt/informatics_in_education/htm/INFE149.htm +Mohamad Nizam Ayub,Development of Multimedia Authoring Tool for Educational Material Disseminations.,2005,4,Informatics in Education,1,db/journals/iie/iie4.html#AyubVN05,http://www.mii.lt/informatics_in_education/htm/INFE049.htm +Sami Surakka,Analysis of Technical Skills in Job Advertisements Targeted at Software Developers.,2005,4,Informatics in Education,1,db/journals/iie/iie4.html#Surakka05,http://www.mii.lt/informatics_in_education/htm/INFE055.htm +Eugenijus Kurilovas,Several Aspects of Technical and Pedagogical Evaluation of Virtual Learning Environments.,2005,4,Informatics in Education,2,db/journals/iie/iie4.html#Kurilovas05,http://www.mii.lt/informatics_in_education/htm/INFE061.htm +Joana Lipeikiene,Animation Tools of CAS for Dynamic Exploration of Mathematics.,2006,5,Informatics in Education,1,db/journals/iie/iie5.html#LipeikieneL06,http://www.mii.lt/informatics_in_education/htm/INFE066.htm +Juris Borzovs,What Computing Curricula is Needed: A Case at the University of Latvia.,2004,3,Informatics in Education,1,db/journals/iie/iie3.html#Borzovs04,http://www.mii.lt/informatics_in_education/htm/INFE024.htm +Elena Railean,Toward User Interfaces and Data Visualization Criteria for Learning Design of Digital Textbooks.,2014,13,Informatics in Education,2,db/journals/iie/iie13.html#Railean14,http://www.mii.lt/informatics_in_education/htm/INFE244.htm +Ján Záhorec,Results of a Research Evaluating Quality of Computer Science Education.,2012,11,Informatics in Education,2,db/journals/iie/iie11.html#ZahorecHM12,http://www.mii.lt/informatics_in_education/htm/INFE209.htm +Abdellah Bennane,Tutoring and multi-agent systems: Modeling from experiences.,2010,9,Informatics in Education,2,db/journals/iie/iie9.html#Bennane10,http://www.mii.lt/informatics_in_education/htm/INFE170.htm +Irit Hadar,An Iterative Methodology for Teaching Object Oriented Concepts.,2007,6,Informatics in Education,1,db/journals/iie/iie6.html#HadarH07,http://www.mii.lt/informatics_in_education/htm/INFE097.htm +Slavko Kocijancic,Real or Virtual Laboratories in Science Teaching - is this Actually a Dilemma?,2004,3,Informatics in Education,2,db/journals/iie/iie3.html#KocijancicO04,http://www.mii.lt/informatics_in_education/htm/INFE044.htm +Svetlana Kubilinskiene,Technology-based lesson plans: Preparation and description.,2010,9,Informatics in Education,2,db/journals/iie/iie9.html#KubilinskieneD10,http://www.mii.lt/informatics_in_education/htm/INFE172.htm +Rita Gaidukeviciene,Comparative Study of Profiled School Scheduling Programs in Lithuania.,2005,4,Informatics in Education,1,db/journals/iie/iie4.html#GaidukevicieneK05,http://www.mii.lt/informatics_in_education/htm/INFE054.htm +Deller James Ferreira,Scaffolding Online Discourse in Collaborative Ill-Structured Problem-Solving for Innovation.,2009,8,Informatics in Education,2,db/journals/iie/iie8.html#FerreiraS09,http://www.mii.lt/informatics_in_education/htm/INFE153.htm +Martin Bulla,Computerised Experiments in the Web Environment.,2004,3,Informatics in Education,2,db/journals/iie/iie3.html#BullaH04,http://www.mii.lt/informatics_in_education/htm/INFE046.htm +Simon,Variation in Approaches to Lab Practical Classes among Computing Academics.,2007,6,Informatics in Education,1,db/journals/iie/iie6.html#SimonRV07,http://www.mii.lt/informatics_in_education/htm/INFE103.htm +Bruria Haberman,Connectivity between Abstraction Layers in Declarative ADT-Based Problem-Solving Processes.,2009,8,Informatics in Education,1,db/journals/iie/iie8.html#HabermanS09,http://www.mii.lt/informatics_in_education/htm/INFE144.htm +Ken Kahn,Should LOGO Keep Going FORWARD 1?,2007,6,Informatics in Education,2,db/journals/iie/iie6.html#Kahn07,http://www.mii.lt/informatics_in_education/htm/INFE114.htm +Zoran Budimac,Conducting a Joint Course on Software Engineering Based on Teamwork of Students.,2008,7,Informatics in Education,1,db/journals/iie/iie7.html#BudimacPIBS08,http://www.mii.lt/informatics_in_education/htm/INFE126.htm +David Weintrop,Situating Programming Abstractions in a Constructionist Video Game.,2014,13,Informatics in Education,2,db/journals/iie/iie13.html#WeintropW14,http://www.mii.lt/informatics_in_education/htm/INFE248.htm +Carol L. Barry,In this issue.,2005,56,JASIST,11,db/journals/jasis/jasis56.html#Barry05,https://doi.org/10.1002/asi.20271 +Katriina Byström,Information and information sources in tasks of varying complexity.,2002,53,JASIST,7,db/journals/jasis/jasis53.html#Bystrom02,https://doi.org/10.1002/asi.10064 +Julie M. Neway,The correlation between pertinence and rate of citation duplication in multidatabase searches.,1983,34,JASIS,4,db/journals/jasis/jasis34.html#NewayL83,https://doi.org/10.1002/asi.4630340410 +Endre Száva-Kováts,Indirect-collective referencing (ICR) in the elite journal literature of physics. II. A literature science study on the level of communications.,2002,53,JASIST,1,db/journals/jasis/jasis53.html#Szava-Kovats02,https://doi.org/10.1002/asi.10004 +Petr Heneberg,Parallel worlds of citable documents and others: Inflated commissioned opinion articles enhance scientometric indicators.,2014,65,JASIST,3,db/journals/jasis/jasis65.html#Heneberg14,https://doi.org/10.1002/asi.22997 +Shifra Baruchson-Arbib,A view to the future of the library and information science profession: A Delphi study.,2002,53,JASIST,5,db/journals/jasis/jasis53.html#Baruchson-ArbibB02,https://doi.org/10.1002/asi.10051 +Saket S. R. Mengle,Detecting relationships among categories using text classification.,2010,61,JASIST,5,db/journals/jasis/jasis61.html#MengleG10,https://doi.org/10.1002/asi.21297 +Don R. Swanson,Online search for logically-related noninteractive medical literatures: A systematic trial-and-error strategy.,1989,40,JASIS,5,db/journals/jasis/jasis40.html#Swanson89, +Dangzhi Zhao,Dimensions and uncertainties of author citation rankings: Lessons learned from frequency-weighted in-text citation counting.,2016,67,JASIST,3,db/journals/jasis/jasis67.html#ZhaoS16,https://doi.org/10.1002/asi.23418 +Kevin L. Cook,Laws of scattering applied to popular music.,1989,40,JASIS,4,db/journals/jasis/jasis40.html#Cook89, +Lutz Bornmann,The problem of percentile rank scores used with small reference sets.,2013,64,JASIST,3,db/journals/jasis/jasis64.html#Bornmann13b,https://doi.org/10.1002/asi.22720 +Thiago Salles,A quantitative analysis of the temporal effects on automatic text classification.,2016,67,JASIST,7,db/journals/jasis/jasis67.html#SallesRGAMMV16,https://doi.org/10.1002/asi.23452 +Donald H. Kraft,Reducing the backlog in JASIS.,1989,40,JASIS,5,db/journals/jasis/jasis40.html#Kraft89, +Roger Cody,The effect of document ordering in rocchio's clustering algorithm.,1973,24,JASIS,3,db/journals/jasis/jasis24.html#Cody73,https://doi.org/10.1002/asi.4630240309 +Matthew S. Mayernik,Tracing the traces: The critical role of metadata within networked communications.,2018,69,JASIST,1,db/journals/jasis/jasis69.html#MayernikA18,https://doi.org/10.1002/asi.23927 +Jenny Fry,Towards an understanding of the relationship between disciplinary research cultures and open access repository behaviors.,2016,67,JASIST,11,db/journals/jasis/jasis67.html#FrySPC16,https://doi.org/10.1002/asi.23621 +M. B. Line,a library network model.,1977,28,JASIS,1,db/journals/jasis/jasis28.html#Line77,https://doi.org/10.1002/asi.4630280113 +Dimitrios Katsaros 0001,The f index: Quantifying the impact of coterminal citations on scientists' ranking.,2009,60,JASIST,5,db/journals/jasis/jasis60.html#KatsarosAB09,https://doi.org/10.1002/asi.21040 +E. B. Jackson,Perspectives on...,1981,32,JASIS,5,db/journals/jasis/jasis32.html#Jackson81,https://doi.org/10.1002/asi.4630320506 +Christopher C. Yang,Hierarchical summarization of large documents.,2008,59,JASIST,6,db/journals/jasis/jasis59.html#YangW08,https://doi.org/10.1002/asi.20781 +Jenna Hartel,An arts-informed study of information using the draw-and-write technique.,2014,65,JASIST,7,db/journals/jasis/jasis65.html#Hartel14,https://doi.org/10.1002/asi.23121 +S. G. Barry,Research Investigation into Experties Indexes.,1974,25,JASIS,4,db/journals/jasis/jasis25.html#Barry74,https://doi.org/10.1002/asi.4630250415 +Wee-Kek Tan,Conveying information effectively in a virtual world: Insights from synthesized task closure and media richness.,2012,63,JASIST,6,db/journals/jasis/jasis63.html#TanTT12,https://doi.org/10.1002/asi.22600 +Cheng Zhang 0001,Quality-structure index: A new metric to measure scientific journal influence.,2011,62,JASIST,4,db/journals/jasis/jasis62.html#ZhangLXW11,https://doi.org/10.1002/asi.21487 +Yu Liu,A fast method based on multiple clustering for name disambiguation in bibliographic citations.,2015,66,JASIST,3,db/journals/jasis/jasis66.html#LiuLHF15,https://doi.org/10.1002/asi.23183 +K. Leon Montgomery,Cost-Benefit Model of Library Acquisitions in Terms of Use: Progress Report.,1976,27,JASIS,1,db/journals/jasis/jasis27.html#MontgomeryBFK76,https://doi.org/10.1002/asi.4630270110 +Ari Pirkola,Employing the resolution power of search keys.,2001,52,JASIST,7,db/journals/jasis/jasis52.html#PirkolaJ01,https://doi.org/10.1002/asi.1106 +Maryam Alavi,Knowledge integration in virtual teams: The potential role of KMS.,2002,53,JASIST,12,db/journals/jasis/jasis53.html#AlaviT02,https://doi.org/10.1002/asi.10107 +Michail Tsikerdekis,The effects of perceived anonymity and anonymity states on conformity and groupthink in online communities: A Wikipedia study.,2013,64,JASIST,5,db/journals/jasis/jasis64.html#Tsikerdekis13,https://doi.org/10.1002/asi.22795 +Bernard J. Jansen,A temporal comparison of AltaVista Web searching.,2005,56,JASIST,6,db/journals/jasis/jasis56.html#JansenSP05,https://doi.org/10.1002/asi.20145 +Gloria Bordogna,A flexible content-based image retrieval model and a customizable system for the retrieval of shapes.,2010,61,JASIST,5,db/journals/jasis/jasis61.html#BordognaP10,https://doi.org/10.1002/asi.21286 +Gerard Salton,The measurement of term importance in automatic indexing.,1981,32,JASIS,3,db/journals/jasis/jasis32.html#SaltonWY81,https://doi.org/10.1002/asi.4630320304 +Arvind Karunakaran,Toward a model of collaborative information behavior in organizations.,2013,64,JASIST,12,db/journals/jasis/jasis64.html#KarunakaranRS13,https://doi.org/10.1002/asi.22943 +Christine Dufour,Understanding how webcasts are used as sources of information.,2011,62,JASIST,2,db/journals/jasis/jasis62.html#DufourBT11,https://doi.org/10.1002/asi.21445 +Robert V. Williams,Hans Peter Luhn and Herbert M. Ohlman: Their roles in the origins of keyword-in-context/permutation automatic indexing.,2010,61,JASIST,4,db/journals/jasis/jasis61.html#Williams10,https://doi.org/10.1002/asi.21265 +Julian Unkel,The effects of credibility cues on the selection of search engine results.,2017,68,JASIST,8,db/journals/jasis/jasis68.html#UnkelH17,https://doi.org/10.1002/asi.23820 +Rowena Li,The representation of national political freedom on Web interface design: The indicators.,2009,60,JASIST,6,db/journals/jasis/jasis60.html#Li09a,https://doi.org/10.1002/asi.21046 +Andrew Large,Developing a visual taxonomy: Children's views on aesthetics.,2009,60,JASIST,9,db/journals/jasis/jasis60.html#LargeBTN09,https://doi.org/10.1002/asi.21095 +Bilel Moulahi,iAggregator: Multidimensional relevance aggregation based on a fuzzy operator.,2014,65,JASIST,10,db/journals/jasis/jasis65.html#MoulahiTY14,https://doi.org/10.1002/asi.23094 +Daniele Rotolo,Matching Medline/PubMed data with Web of Science: A routine in R language.,2015,66,JASIST,10,db/journals/jasis/jasis66.html#RotoloL15,https://doi.org/10.1002/asi.23385 +Abebe Rorissa,A comparative study of Flickr tags and index terms in a general image collection.,2010,61,JASIST,11,db/journals/jasis/jasis61.html#Rorissa10,https://doi.org/10.1002/asi.21401 +Rianne Kaptein,Explicit extraction of topical context.,2011,62,JASIST,8,db/journals/jasis/jasis62.html#KapteinK11,https://doi.org/10.1002/asi.21563 +Mike Thelwall,Quantitative comparisons of search engine results.,2008,59,JASIST,11,db/journals/jasis/jasis59.html#Thelwall08b,https://doi.org/10.1002/asi.20834 +Charles Ess,Handbook of Research on Computer Mediated Communication.,2010,61,JASIST,8,db/journals/jasis/jasis61.html#Ess10,https://doi.org/10.1002/asi.21328 +Gerard Salton,On the development of information science.,1973,24,JASIS,3,db/journals/jasis/jasis24.html#Salton73,https://doi.org/10.1002/asi.4630240307 +Gerard Salton,Buck's prime number coding scheme.,1980,31,JASIS,3,db/journals/jasis/jasis31.html#SaltonC80,https://doi.org/10.1002/asi.4630310317 +Yuval Elovici,Detection of access to terror-related Web sites using an Advanced Terror Detection System (ATDS).,2010,61,JASIST,2,db/journals/jasis/jasis61.html#EloviciSLZFSK10,https://doi.org/10.1002/asi.21249 +Suleiman H. Mustafa,Word-oriented approximate string matching using occurrence heuristic tables: A heuristic for searching Arabic text.,2005,56,JASIST,14,db/journals/jasis/jasis56.html#Mustafa05,https://doi.org/10.1002/asi.20244 +Charles Cole 0001,A classification of mental models of undergraduates seeking information for a course essay in history and psychology: Preliminary investigations into aligning their mental models with online thesauri.,2007,58,JASIST,13,db/journals/jasis/jasis58.html#ColeLLLB07,https://doi.org/10.1002/asi.20668 +William B. Rouse,Assessing the impact of computer technology on the performance of interlibrary loan networks.,1977,28,JASIS,2,db/journals/jasis/jasis28.html#RouseR77,https://doi.org/10.1002/asi.4630280204 +Poovanalingam Murugesan,Variation of the nature of citation measures with journals and scientific specialties.,1978,29,JASIS,3,db/journals/jasis/jasis29.html#MurugesanM78,https://doi.org/10.1002/asi.4630290307 +Leanne Bowler,The self-regulation of curiosity and interest during the information search process of adolescent students.,2010,61,JASIST,7,db/journals/jasis/jasis61.html#Bowler10,https://doi.org/10.1002/asi.21334 +Yuxian Liu,Knowledge diffusion through publications and citations: A case study using ESI-fields as unit of diffusion.,2010,61,JASIST,2,db/journals/jasis/jasis61.html#LiuR10,https://doi.org/10.1002/asi.21248 +Francesco Bartolucci,On a possible decomposition of the h-index.,2012,63,JASIST,10,db/journals/jasis/jasis63.html#Bartolucci12,https://doi.org/10.1002/asi.22697 +Yunjie Xu,Relevance judgment in epistemic and hedonic information searches.,2007,58,JASIST,2,db/journals/jasis/jasis58.html#Xu07,https://doi.org/10.1002/asi.20461 +Edmond Mignon,Indexing and behavior.,1980,31,JASIS,4,db/journals/jasis/jasis31.html#Mignon80,https://doi.org/10.1002/asi.4630310414 +David Cooper,Compression of continuous prose texts using variety generation.,1980,31,JASIS,3,db/journals/jasis/jasis31.html#CooperELY80,https://doi.org/10.1002/asi.4630310312 +Jin Zhang,Visual health subject directory analysis based on users' traversal activities.,2009,60,JASIST,10,db/journals/jasis/jasis60.html#ZhangATH09,https://doi.org/10.1002/asi.21153 +Farag Ahmed,Evaluation of n-gram conflation approaches for Arabic text retrieval.,2009,60,JASIST,7,db/journals/jasis/jasis60.html#AhmedN09,https://doi.org/10.1002/asi.21063 +Wladmir C. Brandão,Learning to expand queries using entities.,2014,65,JASIST,9,db/journals/jasis/jasis65.html#BrandaoSZMS14,https://doi.org/10.1002/asi.23084 +Paul Baxter,The role of the British library R and D department in supporting library and information research in the United Kingdom.,1985,36,JASIS,4,db/journals/jasis/jasis36.html#Baxter85,https://doi.org/10.1002/asi.4630360411 +Kenneth R. Fleischmann,The Societal Responsibilities of Computational Modelers: Human Values and Professional Codes of Ethics.,2017,68,JASIST,3,db/journals/jasis/jasis68.html#FleischmannHW17,https://doi.org/10.1002/asi.23697 +De-Shin Liu,The optimization design of bump interconnections in flip chip packages from the electrical standpoint.,2002,42,Microelectronics Reliability,12,db/journals/mr/mr42.html#LiuN02a,https://doi.org/10.1016/S0026-2714(02)00262-7 +Neeraj Khera,Prognostics of aluminum electrolytic capacitors using artificial neural network approach.,2018,81,Microelectronics Reliability,,db/journals/mr/mr81.html#KheraK18,https://doi.org/10.1016/j.microrel.2017.11.002 +A. Haggag,Physical model for the power-law voltage and current acceleration of TDDB.,2005,45,Microelectronics Reliability,12,db/journals/mr/mr45.html#HaggagLMM05,https://doi.org/10.1016/j.microrel.2005.03.011 +Hide Murayama,Electromigration and electrochemical reaction mixed failure mechanism in gold interconnection system.,2001,41,Microelectronics Reliability,8,db/journals/mr/mr41.html#MurayamaYN01,https://doi.org/10.1016/S0026-2714(01)00112-3 +Thiago Hanna Both,Modeling and simulation of the charge trapping component of BTI and RTS.,2018,80,Microelectronics Reliability,,db/journals/mr/mr80.html#BothFW18,https://doi.org/10.1016/j.microrel.2017.11.009 +Benjamin Vianne,Thermo-mechanical characterization of passive stress sensors in Si interposer.,2015,55,Microelectronics Reliability,5,db/journals/mr/mr55.html#VianneBFGECEHT15,https://doi.org/10.1016/j.microrel.2015.02.005 +Golta Khatibi,Effect of aging on mechanical properties of high temperature Pb-rich solder joints.,2018,85,Microelectronics Reliability,,db/journals/mr/mr85.html#KhatibiKL18,https://doi.org/10.1016/j.microrel.2018.03.009 +Asiri Jayawardena,Analysis of electrical parameters of InGaN-based LED packages with aging.,2016,66,Microelectronics Reliability,,db/journals/mr/mr66.html#JayawardenaN16,https://doi.org/10.1016/j.microrel.2016.09.012 +Tim Henderson,Modeling gallium arsenide heterojunction bipolar transistor ledge variations for insight into device reliability.,2002,42,Microelectronics Reliability,7,db/journals/mr/mr42.html#Henderson02,https://doi.org/10.1016/S0026-2714(02)00065-3 +Tz-Cheng Chiu,Warpage simulation for the reconstituted wafer used in fan-out wafer level packaging.,2018,80,Microelectronics Reliability,,db/journals/mr/mr80.html#ChiuY18,https://doi.org/10.1016/j.microrel.2017.11.008 +William J. Roesch,The ROCS Workshop and 25©0*years of compound semiconductor reliability.,2011,51,Microelectronics Reliability,2,db/journals/mr/mr51.html#Roesch11,https://doi.org/10.1016/j.microrel.2010.09.005 +Eduardas Bareisa,Functional fault models for non-scan sequential circuits.,2011,51,Microelectronics Reliability,12,db/journals/mr/mr51.html#BareisaJMS11,https://doi.org/10.1016/j.microrel.2011.07.069 +Ernest Y. Wu,Power-law voltage acceleration: A key element for ultra-thin gate oxide reliability.,2005,45,Microelectronics Reliability,12,db/journals/mr/mr45.html#WuS05,https://doi.org/10.1016/j.microrel.2005.04.004 +K.-H. Allers,Intrinsic and extrinsic reliability of a serial connection of capacitors.,2010,50,Microelectronics Reliability,6,db/journals/mr/mr50.html#Allers10,https://doi.org/10.1016/j.microrel.2010.02.021 +Yung-Huei Lee,The impact of PMOST bias-temperature degradation on logic circuit reliability performance.,2005,45,Microelectronics Reliability,1,db/journals/mr/mr45.html#LeeJSMN05,https://doi.org/10.1016/j.microrel.2004.05.027 +Mile K. Stojcev,Analog IP blocks.,2005,45,Microelectronics Reliability,1,db/journals/mr/mr45.html#Stojcev05,https://doi.org/10.1016/j.microrel.2004.07.001 +C. T. Pan,TSV by 355 UV laser for 4G component packaging with micro-electroforming.,2017,78,Microelectronics Reliability,,db/journals/mr/mr78.html#PanCWCYLS17,https://doi.org/10.1016/j.microrel.2017.09.023 +Anton E. Chernyakov,Experimental study of electroluminescence and temperature distribution in high-power AlGaInN LEDs and LED arrays.,2017,79,Microelectronics Reliability,,db/journals/mr/mr79.html#ChernyakovAKZSS17,https://doi.org/10.1016/j.microrel.2017.04.035 +Bo-In Noh,Effect of surface finish material on printed circuit board for electrochemical migration.,2008,48,Microelectronics Reliability,4,db/journals/mr/mr48.html#NohLJ08,https://doi.org/10.1016/j.microrel.2007.09.006 +Raimund Ubar,Fast identification of true critical paths in sequential circuits.,2018,81,Microelectronics Reliability,,db/journals/mr/mr81.html#UbarKJRJ18,https://doi.org/10.1016/j.microrel.2017.11.027 +Vencislav Valchev,Accurate natural convection modelling for magnetic components.,2003,43,Microelectronics Reliability,5,db/journals/mr/mr43.html#ValchevB03,https://doi.org/10.1016/S0026-2714(03)00062-3 +Dae Up Kim,Effects of oxidation on reliability of screen-printed silver circuits for radio frequency applications.,2016,63,Microelectronics Reliability,,db/journals/mr/mr63.html#KimKJ16,https://doi.org/10.1016/j.microrel.2016.05.016 +Han-Chang Tsai,Reliable study of time- and frequency-domain EMI-induced noise in Wien bridge oscillator.,2012,52,Microelectronics Reliability,11,db/journals/mr/mr52.html#Tsai12,https://doi.org/10.1016/j.microrel.2012.04.015 +Ruihong Zhang,Interfacial reaction between the electroless nickel immersion gold substrate and Sn-based solders.,2009,49,Microelectronics Reliability,3,db/journals/mr/mr49.html#ZhangZGX09,https://doi.org/10.1016/j.microrel.2008.12.016 +Yi-Shao Lai,Recent research advances in Pb-free solders.,2009,49,Microelectronics Reliability,3,db/journals/mr/mr49.html#LaiTT09,https://doi.org/10.1016/j.microrel.2009.02.007 +Gilson I. Wirth,Compact modeling and simulation of Random Telegraph Noise under non-stationary conditions in the presence of random dopants.,2012,52,Microelectronics Reliability,12,db/journals/mr/mr52.html#WirthVABGS12,https://doi.org/10.1016/j.microrel.2012.07.011 +Stefan Rosch,MPSoC application resilience by hardware-assisted communication virtualization.,2016,61,Microelectronics Reliability,,db/journals/mr/mr61.html#RoschRWWH16,https://doi.org/10.1016/j.microrel.2016.02.009 +Mohd Khairuddin Md Arshad,Characterization of parasitic residual deposition on passivation layer in electroless nickel immersion gold process.,2007,47,Microelectronics Reliability,7,db/journals/mr/mr47.html#ArshadJA07,https://doi.org/10.1016/j.microrel.2006.07.003 +I. León,Evaluation of MUMPS polysilicon structures for thermal flow sensors.,2004,44,Microelectronics Reliability,4,db/journals/mr/mr44.html#LeonAK04,https://doi.org/10.1016/j.microrel.2003.10.011 +Nishad Patil,A prognostic approach for non-punch through and field stop IGBTs.,2012,52,Microelectronics Reliability,3,db/journals/mr/mr52.html#PatilDP12,https://doi.org/10.1016/j.microrel.2011.10.017 +Daniel L. Barton,Editorial.,2001,41,Microelectronics Reliability,8,db/journals/mr/mr41.html#BartonNV01,https://doi.org/10.1016/S0026-2714(01)00102-0 +Y. T. He,Prediction of crack growth in IC passivation layers.,2004,44,Microelectronics Reliability,12,db/journals/mr/mr44.html#HeGDZSE04,https://doi.org/10.1016/j.microrel.2004.05.022 +Gerhard Haubner,77 GHz automotive RADAR in eWLB package: From consumer to automotive packaging.,2016,64,Microelectronics Reliability,,db/journals/mr/mr64.html#HaubnerHPN16,https://doi.org/10.1016/j.microrel.2016.07.104 +Huaiyu Ye,Design of vertical fin arrays with heat pipes used for high-power light-emitting diodes.,2014,54,Microelectronics Reliability,11,db/journals/mr/mr54.html#YeLTZYZ14,https://doi.org/10.1016/j.microrel.2014.05.004 +Haithem Skima,A hybrid prognostics approach for MEMS: From real measurements to remaining useful life estimation.,2016,65,Microelectronics Reliability,,db/journals/mr/mr65.html#SkimaMVDB16,https://doi.org/10.1016/j.microrel.2016.07.142 +Y. W. Chang,Analysis of bump resistance and current distribution of ultra-fine-pitch microbumps.,2013,53,Microelectronics Reliability,1,db/journals/mr/mr53.html#ChangPYCCZJH13,https://doi.org/10.1016/j.microrel.2012.08.021 +Wei-Hung Yau,Luminescence properties of mechanically nanoindented ZnSe.,2011,51,Microelectronics Reliability,5,db/journals/mr/mr51.html#YauTWTC11,https://doi.org/10.1016/j.microrel.2011.01.005 +Gilson I. Wirth,Bulk built in current sensors for single event transient detection in deep-submicron technologies.,2008,48,Microelectronics Reliability,5,db/journals/mr/mr48.html#Wirth08,https://doi.org/10.1016/j.microrel.2008.01.002 +Cunbo Zhang,Damage effects on low noise amplifiers with microwave pulses.,2016,60,Microelectronics Reliability,,db/journals/mr/mr60.html#ZhangZWD16,https://doi.org/10.1016/j.microrel.2016.03.011 +Ling Xu,An optimal structural design to improve the reliability of Al2O3-DBC substrates under thermal cycling.,2016,56,Microelectronics Reliability,,db/journals/mr/mr56.html#XuWZQL16,https://doi.org/10.1016/j.microrel.2015.11.013 +C. D. Breach,A brief review of selected aspects of the materials science of ball bonding.,2010,50,Microelectronics Reliability,1,db/journals/mr/mr50.html#BreachW10,https://doi.org/10.1016/j.microrel.2009.08.003 +W. Heo,Effect of additive N2 and Ar gases on surface smoothening and fracture strength of Si wafers during high-speed chemical dry thinning.,2012,52,Microelectronics Reliability,2,db/journals/mr/mr52.html#HeoL12,https://doi.org/10.1016/j.microrel.2011.09.017 +Narjes Moghadam,Design and simulation of MOSCNT with band engineered source and drain regions.,2013,53,Microelectronics Reliability,4,db/journals/mr/mr53.html#MoghadamMA13,https://doi.org/10.1016/j.microrel.2012.11.007 +H. X. Xie,Mechanical shock behavior of Sn-3.9Ag-0.7Cu and Sn-3.9Ag-0.7Cu-0.5Ce solder joints.,2013,53,Microelectronics Reliability,5,db/journals/mr/mr53.html#XieC13,https://doi.org/10.1016/j.microrel.2012.12.010 +Sang Min Yang,Electromechanical reliability of a flexible metal-grid transparent electrode prepared by electrohydrodynamic (EHD) jet printing.,2016,65,Microelectronics Reliability,,db/journals/mr/mr65.html#YangLJBC16,https://doi.org/10.1016/j.microrel.2016.07.146 +Michal Tencer,"Deposition of aerosol (""hygroscopic dust"") on electronics - Mechanism and risk.",2008,48,Microelectronics Reliability,4,db/journals/mr/mr48.html#Tencer08,https://doi.org/10.1016/j.microrel.2007.10.003 +Xinjun Sheng,ACF-COG interconnection conductivity inspection system using conductive area.,2013,53,Microelectronics Reliability,4,db/journals/mr/mr53.html#ShengJXWD13,https://doi.org/10.1016/j.microrel.2012.11.004 +Mile K. Stojcev,Clock aligner based on delay locked loop with double edge synchronization.,2008,48,Microelectronics Reliability,1,db/journals/mr/mr48.html#StojcevJ08,https://doi.org/10.1016/j.microrel.2007.02.025 +Qiang Yu,Effect of process-induced voids on isothermal fatigue resistance of CSP lead-free solder joints.,2008,48,Microelectronics Reliability,3,db/journals/mr/mr48.html#YuSKKYS08,https://doi.org/10.1016/j.microrel.2007.08.008 +Rainer Dudek,Studies on the reliability of power packages based on strength and fracture criteria.,2012,52,Microelectronics Reliability,7,db/journals/mr/mr52.html#DudekPSM12,https://doi.org/10.1016/j.microrel.2012.03.018 +Dongyue Jin,Structure optimization of multi-finger power SiGe HBTs for thermal stability improvement.,2009,49,Microelectronics Reliability,4,db/journals/mr/mr49.html#JinZXCSH09,https://doi.org/10.1016/j.microrel.2009.01.008 +H. Tsukamoto,The influence of solder composition on the impact strength of lead-free solder ball grid array joints.,2011,51,Microelectronics Reliability,3,db/journals/mr/mr51.html#TsukamotoNSMSN11,https://doi.org/10.1016/j.microrel.2010.10.012 +Jiwon Shin,Non-conductive film with Zn-nanoparticles (Zn-NCF) for 40 and#956*m pitch Cu-pillar/Sn-Ag bump interconnection.,2015,55,Microelectronics Reliability,2,db/journals/mr/mr55.html#ShinKCKKJP15,https://doi.org/10.1016/j.microrel.2014.10.007 +M. C. Poon,SIMS study of silicon oxynitride prepared by oxidation of silicon-rich silicon nitride layer.,2001,41,Microelectronics Reliability,12,db/journals/mr/mr41.html#PoonGKMW01,https://doi.org/10.1016/S0026-2714(01)00216-5 +F. Alagi,Hot-carrier-induced time dependent dielectric breakdown in high voltage pMOSFETs.,2011,51,Microelectronics Reliability,8,db/journals/mr/mr51.html#Alagi11a,https://doi.org/10.1016/j.microrel.2011.03.036 +J. Lee,Influence of gold pick up on the hardness of copper free air ball.,2011,51,Microelectronics Reliability,1,db/journals/mr/mr51.html#LeeMZMP11,https://doi.org/10.1016/j.microrel.2010.03.014 +Yoshikuni Nakadaira,Growth of tin whiskers for lead-free plated leadframe packages in high humid environments and during thermal cycling.,2008,48,Microelectronics Reliability,1,db/journals/mr/mr48.html#NakadairaJSSMCKO08,https://doi.org/10.1016/j.microrel.2007.01.091 +Sheng-Lyang Jang,A 0.35 andmicro*m CMOS divide-by-2 quadrature injection-locked frequency divider based on voltage-current feedback topology.,2010,50,Microelectronics Reliability,5,db/journals/mr/mr50.html#JangLYSCY10,https://doi.org/10.1016/j.microrel.2010.01.020 +Chia-Tai Kuo,Time and temperature-dependent mechanical behavior of underfill materials in electronic packaging application.,2004,44,Microelectronics Reliability,4,db/journals/mr/mr44.html#KuoYC04,https://doi.org/10.1016/j.microrel.2003.10.005 +Olaf van der Sluis,Numerical analysis of delamination and cracking phenomena in multi-layered flexible electronics.,2009,49,Microelectronics Reliability,8,db/journals/mr/mr49.html#SluisETZ09,https://doi.org/10.1016/j.microrel.2009.03.013 +M. S. Kilijanski,Analysis of thermal stresses in metal interconnects with multilevel structures.,2002,42,Microelectronics Reliability,2,db/journals/mr/mr42.html#KilijanskiS02,https://doi.org/10.1016/S0026-2714(01)00239-6 +Mile K. Stojcev,Address generators for linear systolic array.,2010,50,Microelectronics Reliability,2,db/journals/mr/mr50.html#StojcevMMN10,https://doi.org/10.1016/j.microrel.2009.11.005 +Li-Cheng Shen,Development of three-dimensional chip stacking technology using a clamped through-silicon via interconnection.,2010,50,Microelectronics Reliability,4,db/journals/mr/mr50.html#ShenCCL10,https://doi.org/10.1016/j.microrel.2009.10.012 +Lucas Brusamarello,Fast and accurate statistical characterization of standard cell libraries.,2011,51,Microelectronics Reliability,12,db/journals/mr/mr51.html#BrusamarelloWRM11,https://doi.org/10.1016/j.microrel.2011.05.016 +B. Majkusiak,Investigation of double barrier MOS tunnel diodes with PECVD silicon quantum well.,2011,51,Microelectronics Reliability,7,db/journals/mr/mr51.html#MajkusiakBMG11,https://doi.org/10.1016/j.microrel.2011.03.018 +A. Pequegnat,Effect of gas type and flow rate on Cu free air ball formation in thermosonic wire bonding.,2011,51,Microelectronics Reliability,1,db/journals/mr/mr51.html#PequegnatKMZPM11,https://doi.org/10.1016/j.microrel.2010.02.023 +H. J. Hung,Gate tunneling leakage current behavior of 40 nm PD SOI NMOS device considering the floating body effect.,2010,50,Microelectronics Reliability,5,db/journals/mr/mr50.html#HungKCY10,https://doi.org/10.1016/j.microrel.2010.01.015 +Fei Chong Ng,Discrete phase method study of ball grid array underfill process using nano-silica filler-reinforced composite-encapsulant with varying filler loadings.,2017,72,Microelectronics Reliability,,db/journals/mr/mr72.html#NgAGAAA17,https://doi.org/10.1016/j.microrel.2017.03.034 +G. Jayaprasad,Analysis of low isolation problem in HMC using Ishikawa model: A case study.,2018,81,Microelectronics Reliability,,db/journals/mr/mr81.html#JayaprasadDBH18,https://doi.org/10.1016/j.microrel.2017.12.041 +Bing-Yue Tsui,Multi-gate non-volatile memories with nanowires as charge storage material.,2010,50,Microelectronics Reliability,5,db/journals/mr/mr50.html#TsuiWCC10,https://doi.org/10.1016/j.microrel.2010.01.040 +Hui-Wen Cheng,Optimization on configuration of surface conduction electron-emitters.,2010,50,Microelectronics Reliability,5,db/journals/mr/mr50.html#ChengL10,https://doi.org/10.1016/j.microrel.2010.01.011 +Sang Min Kim,Device instability of amorphous InGaZnO thin film transistors with transparent source and drain.,2016,64,Microelectronics Reliability,,db/journals/mr/mr64.html#KimACP16,https://doi.org/10.1016/j.microrel.2016.07.037 +Werner Muth,Bias temperature instability assessment of n- and p-channel MOS transistors using a polysilicon resistive heated scribe lane test structure.,2004,44,Microelectronics Reliability,8,db/journals/mr/mr44.html#MuthW04,https://doi.org/10.1016/j.microrel.2004.04.011 +M. Herms,Copper Through Silicon Vias Studied by Photo-elastic Scanning Infrared Microscopy.,2016,64,Microelectronics Reliability,,db/journals/mr/mr64.html#HermsWW16,https://doi.org/10.1016/j.microrel.2016.07.035 +Dao-Guo Yang,Reliability modeling on a MOSFET power package based on embedded die technology.,2010,50,Microelectronics Reliability,7,db/journals/mr/mr50.html#YangKPHD10,https://doi.org/10.1016/j.microrel.2010.02.026 +E. Nogueira,Lifetime of electret microphones by thermal degradation analysis via electroacoustic measurements.,2018,81,Microelectronics Reliability,,db/journals/mr/mr81.html#NogueiraGS18,https://doi.org/10.1016/j.microrel.2017.12.018 +C. Batunlu,Real-time system for monitoring the electro-thermal behaviour of power electronic devices used in boost converters.,2016,62,Microelectronics Reliability,,db/journals/mr/mr62.html#BatunluA16,https://doi.org/10.1016/j.microrel.2016.03.033 +Mingzhi Dai,Observation and mechanism explanation of the parasitic charge pumping current.,2010,50,Microelectronics Reliability,12,db/journals/mr/mr50.html#DaiY10,https://doi.org/10.1016/j.microrel.2010.07.004 +S. Lee,Suppression of Ge-O and Ge-N bonding at Ge-HfO2 and Ge-TiO2 interfaces by deposition onto plasma-nitrided passivated Ge substrates: Integration issues Ge gate stacks into advanced devices.,2008,48,Microelectronics Reliability,3,db/journals/mr/mr48.html#LeeLLWSL08,https://doi.org/10.1016/j.microrel.2007.07.068 +Hsien-Chin Chiu,AlGaN/GaN Schottky barrier diodes on silicon substrates with various Fe doping concentrations in the buffer layers.,2018,83,Microelectronics Reliability,,db/journals/mr/mr83.html#ChiuCCLWPWH18,https://doi.org/10.1016/j.microrel.2017.05.034 +Javier A. Salcedo,On-chip electrostatic discharge protection for CMOS gas sensor systems-on-a-chip (SoC).,2006,46,Microelectronics Reliability,8,db/journals/mr/mr46.html#SalcedoLAH06,https://doi.org/10.1016/j.microrel.2005.12.002 +J. S. Karppinen,Shock impact reliability characterization of a handheld product in accelerated tests and use environment.,2012,52,Microelectronics Reliability,1,db/journals/mr/mr52.html#KarppinenLPMP12,https://doi.org/10.1016/j.microrel.2011.09.001 +Xiang Zheng,Identifying the spatial position and properties of traps in GaN HEMTs using current transient spectroscopy.,2016,63,Microelectronics Reliability,,db/journals/mr/mr63.html#ZhengFZY16,https://doi.org/10.1016/j.microrel.2016.05.001 +Emre özkol,Improving the power cycling performance of the emitter contact of IGBT modules: Implementation and evaluation of stitch bond layouts.,2014,54,Microelectronics Reliability,12,db/journals/mr/mr54.html#OzkolHP14,https://doi.org/10.1016/j.microrel.2014.08.015 +Akram A. Salman,Improved inductive-system-level IEC ESD performance for automotive applications using mutual ballasted ESD protection technique.,2016,57,Microelectronics Reliability,,db/journals/mr/mr57.html#SalmanFCEB16,https://doi.org/10.1016/j.microrel.2015.12.011 +C. D. Breach,Oxidation of Au4Al in un-moulded gold ballbonds after high temperature storage (HTS) in air at 175degreeC.,2006,46,Microelectronics Reliability,12,db/journals/mr/mr46.html#BreachW06,https://doi.org/10.1016/j.microrel.2005.12.009 +S. F. Sufian,Thermal analysis of dual piezoelectric fans for cooling multi-LED packages.,2014,54,Microelectronics Reliability,8,db/journals/mr/mr54.html#SufianFZAM14,https://doi.org/10.1016/j.microrel.2014.03.016 +M. Khoshvaght-Aliabadi,Comparison of hydrothermal performance between plate fins and plate-pin fins subject to nanofluid-cooled corrugated miniature heat sinks.,2017,70,Microelectronics Reliability,,db/journals/mr/mr70.html#Khoshvaght-Aliabadi17,https://doi.org/10.1016/j.microrel.2017.01.005 +Dae Whan Kim,The effect of hygro-mechanical and thermo-mechanical stress on delamination of gold bump.,2006,46,Microelectronics Reliability,7,db/journals/mr/mr46.html#KimK06,https://doi.org/10.1016/j.microrel.2005.07.119 +Peng Fan,From chip to inverter: Electro-thermal modeling and design for paralleled power devices in high power application.,2018,87,Microelectronics Reliability,,db/journals/mr/mr87.html#FanHWLL18,https://doi.org/10.1016/j.microrel.2018.03.040 +Abhijit Biswas,Temperature dependent model for threshold voltage and subthreshold slope of strained-Si channel MOSFETs with a polysilicon gate.,2014,54,Microelectronics Reliability,8,db/journals/mr/mr54.html#BiswasB14,https://doi.org/10.1016/j.microrel.2014.03.009 +Uimin Choi,Power cycling test and failure analysis of molded Intelligent Power IGBT Module under different temperature swing durations.,2016,64,Microelectronics Reliability,,db/journals/mr/mr64.html#ChoiBJIWUM16,https://doi.org/10.1016/j.microrel.2016.07.020 +Cory D. Heath,A study of ageing effect at elevated temperature of flexible silicon diodes integrated using conductive adhesives.,2014,54,Microelectronics Reliability,5,db/journals/mr/mr54.html#HeathDDL14,https://doi.org/10.1016/j.microrel.2014.01.018 +Yi-Shao Lai,Evaluation of solder joint strengths under ball impact test.,2007,47,Microelectronics Reliability,12,db/journals/mr/mr47.html#LaiCY07,https://doi.org/10.1016/j.microrel.2006.11.015 +Syed Zafar Shazli,Using Boolean satisfiability for computing soft error rates in early design stages.,2010,50,Microelectronics Reliability,1,db/journals/mr/mr50.html#ShazliT10,https://doi.org/10.1016/j.microrel.2009.08.006 +Xiaowu Zhang,Thermo-mechanical finite element analysis in a multichip build up substrate based package design.,2004,44,Microelectronics Reliability,4,db/journals/mr/mr44.html#ZhangWLCMTPS04,https://doi.org/10.1016/j.microrel.2003.09.006 +Lei Song,Influences of silicon-rich shallow trench isolation on total ionizing dose hardening and gate oxide integrity in a 130 nm partially depleted SOI CMOS technology.,2017,74,Microelectronics Reliability,,db/journals/mr/mr74.html#SongHZLDZZ17,https://doi.org/10.1016/j.microrel.2017.05.007 +Mykola Blyzniuk,Probabilistic analysis of CMOS physical defects in VLSI circuits for test coverage improvement.,2001,41,Microelectronics Reliability,12,db/journals/mr/mr41.html#BlyzniukKKPRU01,https://doi.org/10.1016/S0026-2714(01)00092-0 +Anirban Sengupta,Rapid design space exploration by hybrid fuzzy search approach for optimal architecture determination of multi objective computing systems.,2011,51,Microelectronics Reliability,2,db/journals/mr/mr51.html#SenguptaSZ11,https://doi.org/10.1016/j.microrel.2010.08.003 +C. Gil,Determining DC/RF survivability limits of GaAs semiconductor circuits.,2009,49,Microelectronics Reliability,5,db/journals/mr/mr49.html#GilEL09,https://doi.org/10.1016/j.microrel.2009.02.004 +S. C. Tan,Thermal stability performance of anisotropic conductive film at different bonding temperatures.,2004,44,Microelectronics Reliability,3,db/journals/mr/mr44.html#TanCCT04,https://doi.org/10.1016/S0026-2714(03)00239-7 +Benkuan Wang,A hybrid approach for UAV flight data estimation and prediction based on flight mode recognition.,2018,84,Microelectronics Reliability,,db/journals/mr/mr84.html#WangLWP18,https://doi.org/10.1016/j.microrel.2018.03.032 +Keng Chen,Estimating the average junction temperature of AlGaInP LED arrays by spectral analysis.,2013,53,Microelectronics Reliability,5,db/journals/mr/mr53.html#ChenN13,https://doi.org/10.1016/j.microrel.2013.01.003 +Han-Kuei Fu,Evaluation of temperature distribution of LED module.,2013,53,Microelectronics Reliability,4,db/journals/mr/mr53.html#FuWCCCC13,https://doi.org/10.1016/j.microrel.2012.11.009 +Wen-Kuan Yeh,The impact of interface/border defect on performance and reliability of high-k/metal-gate CMOSFET.,2013,53,Microelectronics Reliability,2,db/journals/mr/mr53.html#YehCGWL13,https://doi.org/10.1016/j.microrel.2012.07.036 +Sung-Ho Park,Lifetime estimation of LED lamp using gamma process model.,2016,57,Microelectronics Reliability,,db/journals/mr/mr57.html#ParkK16,https://doi.org/10.1016/j.microrel.2015.12.006 +Robert Mroczynski,Reliability issues of double gate dielectric stacks based on hafnium dioxide (HfO2) layers for non-volatile semiconductor memory (NVSM) applications.,2012,52,Microelectronics Reliability,1,db/journals/mr/mr52.html#MroczynskiB12,https://doi.org/10.1016/j.microrel.2011.08.010 +Rajendra D. Pendse,Methodology for predicting solder joint reliability in semiconductor packages.,2002,42,Microelectronics Reliability,2,db/journals/mr/mr42.html#PendseZ02,https://doi.org/10.1016/S0026-2714(01)00130-5 +Rosana Rodríguez,Influence of a low field with opposite polarity to the stress on the degradation of 4.5 nm thick SiO2 films.,2001,41,Microelectronics Reliability,7,db/journals/mr/mr41.html#RodriguezPNA01,https://doi.org/10.1016/S0026-2714(01)00059-2 +Kyungbae Park,Statistical distributions of row-hammering induced failures in DDR3 components.,2016,67,Microelectronics Reliability,,db/journals/mr/mr67.html#ParkYB16,https://doi.org/10.1016/j.microrel.2016.10.014 +M. Kögel,Magnetic field and current density imaging using off-line lock-in analysis.,2016,64,Microelectronics Reliability,,db/journals/mr/mr64.html#KogelATB16,https://doi.org/10.1016/j.microrel.2016.07.083 +S. H. Fan,Effect of misalignment on electrical characteristics of ACF joints for flip chip on flex applications.,2002,42,Microelectronics Reliability,7,db/journals/mr/mr42.html#FanC02,https://doi.org/10.1016/S0026-2714(02)00069-0 +Limeng Yin,Microstructures and properties of Bi10Ag high temperature solder doped with Cu element.,2018,80,Microelectronics Reliability,,db/journals/mr/mr80.html#YinLYWB18,https://doi.org/10.1016/j.microrel.2017.11.013 +Seunghyun Cho,New dummy design and stiffener on warpage reduction in Ball Grid Array Printed Circuit Board.,2010,50,Microelectronics Reliability,2,db/journals/mr/mr50.html#ChoCLPKP10,https://doi.org/10.1016/j.microrel.2009.10.009 +Jianlin Huang,Optical degradation mechanisms of mid-power white-light LEDs in LM-80-08 tests.,2015,55,Microelectronics Reliability,12,db/journals/mr/mr55.html#HuangGKYLFZ15,https://doi.org/10.1016/j.microrel.2015.09.008 +Jianjun Chen,Radiation hardened by design techniques to reduce single event transient pulse width based on the physical mechanism.,2012,52,Microelectronics Reliability,6,db/journals/mr/mr52.html#ChenCLLL12,https://doi.org/10.1016/j.microrel.2011.12.002 +Thomas Pompl,Voltage acceleration of time-dependent breakdown of ultra-thin gate dielectrics.,2005,45,Microelectronics Reliability,12,db/journals/mr/mr45.html#PomplR05,https://doi.org/10.1016/j.microrel.2005.04.007 +Christian Schlünder,Effects of inhomogeneous negative bias temperature stress on p-channel MOSFETs of analog and RF circuits.,2005,45,Microelectronics Reliability,1,db/journals/mr/mr45.html#SchlunderBAGGT05,https://doi.org/10.1016/j.microrel.2004.03.017 +Bjorn Vermeersch,Dependency of thermal spreading resistance on convective heat transfer coefficient.,2008,48,Microelectronics Reliability,5,db/journals/mr/mr48.html#VermeerschM08,https://doi.org/10.1016/j.microrel.2008.01.009 +Anirban Sengupta,A high level synthesis design flow with a novel approach for efficient design space exploration in case of multi-parametric optimization objective.,2010,50,Microelectronics Reliability,3,db/journals/mr/mr50.html#SenguptaSZ10,https://doi.org/10.1016/j.microrel.2009.11.015 +Gilbert De Mey,Modelling and IR measurement of the electronic substrate thermal conductivity.,2015,55,Microelectronics Reliability,1,db/journals/mr/mr55.html#MeyFW15,https://doi.org/10.1016/j.microrel.2014.10.002 +Yukai Chen,Empirical derivation of upper and lower bounds of NBTI aging for embedded cores.,2018,80,Microelectronics Reliability,,db/journals/mr/mr80.html#ChenMP18,https://doi.org/10.1016/j.microrel.2017.07.067 +De-Shin Liu,Novel analysis model for investigation of contact force and scrub length for design of probe card.,2010,50,Microelectronics Reliability,6,db/journals/mr/mr50.html#LiuCLHT10,https://doi.org/10.1016/j.microrel.2010.02.011 +Rajni Gautam,Numerical analysis of localised charges impact on static and dynamic performance of nanoscale cylindrical surrounding gate MOSFET based CMOS inverter.,2013,53,Microelectronics Reliability,2,db/journals/mr/mr53.html#GautamSGG13,https://doi.org/10.1016/j.microrel.2012.08.009 +Jibin Fan,Physical properties and electrical characteristics of H2O-based and O3-based HfO2 films deposited by ALD.,2012,52,Microelectronics Reliability,6,db/journals/mr/mr52.html#FanLKGMH12,https://doi.org/10.1016/j.microrel.2012.01.010 +Reza Sedaghat,Transistor-level to gate-level comprehensive fault synthesis for n-input primitive gates.,2006,46,Microelectronics Reliability,12,db/journals/mr/mr46.html#SedaghatKAJ06,https://doi.org/10.1016/j.microrel.2005.12.005 +Y. Fu,Characterization and modeling of flicker noise in junction field-effect transistor with source and drain trench isolation.,2007,47,Microelectronics Reliability,1,db/journals/mr/mr47.html#FuWL07,https://doi.org/10.1016/j.microrel.2006.01.009 +P. J. van der Wel,Wear out failure mechanisms in aluminium and gold based LDMOS RF power applications.,2006,46,Microelectronics Reliability,8,db/journals/mr/mr46.html#WelTBLHGRBP06,https://doi.org/10.1016/j.microrel.2006.02.011 +Yuchen Song,Data-driven hybrid remaining useful life estimation approach for spacecraft lithium-ion battery.,2017,75,Microelectronics Reliability,,db/journals/mr/mr75.html#SongLYP17,https://doi.org/10.1016/j.microrel.2017.06.045 +V. Huard,NBTI degradation: From physical mechanisms to modelling.,2006,46,Microelectronics Reliability,1,db/journals/mr/mr46.html#HuardDP06,https://doi.org/10.1016/j.microrel.2005.02.001 +Andrzej Dziedzic,IMAPS Poland 2007 - Guest Editorial.,2008,48,Microelectronics Reliability,6,db/journals/mr/mr48.html#Dziedzic08,https://doi.org/10.1016/j.microrel.2008.04.014 +Hua-Chiang Wen,Using nanoindentation to investigate the temperature cycling of Sn-37Pb solders.,2017,78,Microelectronics Reliability,,db/journals/mr/mr78.html#WenCLJCCJC17,https://doi.org/10.1016/j.microrel.2017.05.004 +J. D. Wu,A study in flip-chip UBM/bump reliability with effects of SnPb solder composition.,2006,46,Microelectronics Reliability,1,db/journals/mr/mr46.html#WuZLHL06,https://doi.org/10.1016/j.microrel.2005.01.012 +Muhammad Aamir,Impact of thermal aging on the intermetallic compound particle size and mechanical properties of lead free solder for green electronics.,2017,78,Microelectronics Reliability,,db/journals/mr/mr78.html#AamirMAW17,https://doi.org/10.1016/j.microrel.2017.09.022 +Magali Estrada,Effect of interface charge on the dc bias stress-induced deformation and shift of the transfer characteristic of amorphous oxide thin-film transistors.,2012,52,Microelectronics Reliability,7,db/journals/mr/mr52.html#EstradaCI12,https://doi.org/10.1016/j.microrel.2012.02.026 +Gaudenzio Meneghesso,Trapping and reliability issues in GaN-based MIS HEMTs with partially recessed gate.,2016,58,Microelectronics Reliability,,db/journals/mr/mr58.html#MeneghessoMBRWH16,https://doi.org/10.1016/j.microrel.2015.11.024 +Paul Crosbie,Multiple impact characterization of wafer level packaging (WLP).,2010,50,Microelectronics Reliability,4,db/journals/mr/mr50.html#CrosbieL10,https://doi.org/10.1016/j.microrel.2009.11.012 +Y. P. Wu,Dynamic strength of anisotropic conductive joints in flip chip on glass and flip chip on flex packages.,2004,44,Microelectronics Reliability,2,db/journals/mr/mr44.html#WuACW04,https://doi.org/10.1016/S0026-2714(03)00214-2 +Qinghua Zhao,Effect of electroplating layer structure on shear property and microstructure of multilayer electroplated Sn-3.5Ag solder bumps.,2013,53,Microelectronics Reliability,2,db/journals/mr/mr53.html#ZhaoHLS13,https://doi.org/10.1016/j.microrel.2012.08.010 +Fábio Fedrizzi Vidor,Low temperature fabrication of a ZnO nanoparticle thin-film transistor suitable for flexible electronics.,2014,54,Microelectronics Reliability,12,db/journals/mr/mr54.html#VidorWH14,https://doi.org/10.1016/j.microrel.2014.07.147 +Michael Schenkel,Substrate potential shift due to parasitic minority carrier injection in smart-power ICs: measurements and full-chip 3D device simulation.,2001,41,Microelectronics Reliability,6,db/journals/mr/mr41.html#SchenkelPWAF01,https://doi.org/10.1016/S0026-2714(01)00028-2 +Marcello Traiola,Estimating dynamic power consumption for memristor-based CiM architecture.,2018,80,Microelectronics Reliability,,db/journals/mr/mr80.html#TraiolaBB18,https://doi.org/10.1016/j.microrel.2017.12.009 +Syed Mukulika Dinara,Potentiality of trap charge effects and SiON induced interface defects in a-Si3N4/SiON based MIS structure for resistive NVM device.,2015,55,Microelectronics Reliability,5,db/journals/mr/mr55.html#DinaraGHBBB15,https://doi.org/10.1016/j.microrel.2015.02.013 +Chie-In Lee,Investigation of geometry dependence on MOSFET linearity in the impact ionization region using Volterra series.,2015,55,Microelectronics Reliability,8,db/journals/mr/mr55.html#LeeLL15,https://doi.org/10.1016/j.microrel.2015.05.007 +Liang Zhang,Reliability study of Sn-Ag-Cu-Ce soldered joints in quad flat packages.,2010,50,Microelectronics Reliability,12,db/journals/mr/mr50.html#ZhangXGSYCDJG10,https://doi.org/10.1016/j.microrel.2010.05.008 +Lili Ding,Modeling the impact of well contacts on SEE response with bias-dependent Single-Event compact model.,2018,81,Microelectronics Reliability,,db/journals/mr/mr81.html#DingCGWCLZP18,https://doi.org/10.1016/j.microrel.2017.11.001 +O. Glushko,The effect of bending loading conditions on the reliability of inkjet printed and evaporated silver metallization on polymer substrates.,2016,56,Microelectronics Reliability,,db/journals/mr/mr56.html#GlushkoCKL16,https://doi.org/10.1016/j.microrel.2015.10.007 +Tommaso Brazzini,Study of hot electrons in AlGaN/GaN HEMTs under RF Class B and Class J operation using electroluminescence.,2015,55,Microelectronics Reliability,12,db/journals/mr/mr55.html#BrazziniCSULTJB15,https://doi.org/10.1016/j.microrel.2015.09.023 +Dario Nappa,Estimating activation energies for multi-mode failures.,2014,54,Microelectronics Reliability,2,db/journals/mr/mr54.html#NappaD14,https://doi.org/10.1016/j.microrel.2013.09.025 +Michael Reid,Testing method for measuring corrosion resistance of surface mount chip resistors.,2012,52,Microelectronics Reliability,7,db/journals/mr/mr52.html#ReidCDPT12,https://doi.org/10.1016/j.microrel.2012.02.020 +Clemens Ostermaier,Review of bias-temperature instabilities at the III-N/dielectric interface.,2018,82,Microelectronics Reliability,,db/journals/mr/mr82.html#OstermaierLRP18,https://doi.org/10.1016/j.microrel.2017.12.039 +Farshad Firouzi,An accurate model for soft error rate estimation considering dynamic voltage and frequency scaling effects.,2011,51,Microelectronics Reliability,2,db/journals/mr/mr51.html#FirouziSWF11,https://doi.org/10.1016/j.microrel.2010.08.016 +Y. Q. de Aguiar,Permanent and single event transient faults reliability evaluation EDA tool.,2016,64,Microelectronics Reliability,,db/journals/mr/mr64.html#AguiarZMR16,https://doi.org/10.1016/j.microrel.2016.07.072 +Chang-Lin Yeh,Empirical correlation between package-level ball impact test and board-level drop reliability.,2007,47,Microelectronics Reliability,7,db/journals/mr/mr47.html#YehLCC07,https://doi.org/10.1016/j.microrel.2006.07.093 +John J. H. Reche,Wafer level packaging having bump-on-polymer structure.,2003,43,Microelectronics Reliability,6,db/journals/mr/mr43.html#RecheK03,https://doi.org/10.1016/S0026-2714(03)00058-1 +Vassil Palankovski,Rigorous modeling of high-speed semiconductor devices.,2004,44,Microelectronics Reliability,6,db/journals/mr/mr44.html#PalankovskiS04,https://doi.org/10.1016/j.microrel.2004.02.009 +Albena Paskaleva,Polarity asymmetry of stress and charge trapping behavior of thin Hf- and Zr-silicate layers.,2007,47,Microelectronics Reliability,12,db/journals/mr/mr47.html#PaskalevaLB07,https://doi.org/10.1016/j.microrel.2006.11.018 +B. P. Yan,A reliability comparison of InGaP/GaAs HBTs with and without passivation ledge.,2001,41,Microelectronics Reliability,12,db/journals/mr/mr41.html#YanYHLY01,https://doi.org/10.1016/S0026-2714(01)00222-0 +Sarah Azimi,On the prediction of radiation-induced SETs in flash-based FPGAs.,2016,64,Microelectronics Reliability,,db/journals/mr/mr64.html#AzimiDS16,https://doi.org/10.1016/j.microrel.2016.07.106 +Michael Meeder,Application of Machine Model ESD tester to high volume capacitor reliability testing.,2011,51,Microelectronics Reliability,2,db/journals/mr/mr51.html#MeederMAFND11,https://doi.org/10.1016/j.microrel.2010.09.026 +Sanwi Kim,Adhesion improvement of silicon/underfill/polyimide interfaces by UV/ozone treatment and sol-gel derived hybrid layers.,2014,54,Microelectronics Reliability,4,db/journals/mr/mr54.html#KimK14,https://doi.org/10.1016/j.microrel.2013.11.008 +Yoshiteru Yamada,An example of fault site localization on a 0.18 mum CMOS device with combination of front and backside techniques.,2004,44,Microelectronics Reliability,5,db/journals/mr/mr44.html#YamadaK04,https://doi.org/10.1016/j.microrel.2004.01.011 +Sébastien Gallois-Garreignot,Fracture phenomena induced by Front-End/Back-End interactions: Dedicated failure analysis and numerical developments.,2010,50,Microelectronics Reliability,1,db/journals/mr/mr50.html#Gallois-GarreignotFN10,https://doi.org/10.1016/j.microrel.2009.09.009 +Améni Driss,Experimentation and modeling of the steady-state and transient thermal performances of a helicoidally grooved cylindrical heat pipe.,2016,62,Microelectronics Reliability,,db/journals/mr/mr62.html#DrissMZ16,https://doi.org/10.1016/j.microrel.2016.03.022 +Jianqun Yang,The effect of ionization and displacement damage on minority carrier lifetime.,2018,82,Microelectronics Reliability,,db/journals/mr/mr82.html#YangLLF18,https://doi.org/10.1016/j.microrel.2018.01.012 +Chien-Pan Liu,Facile chemical method of etching polyimide films for failure analysis (FA) applications and its etching mechanism studies.,2014,54,Microelectronics Reliability,5,db/journals/mr/mr54.html#LiuLLC14,https://doi.org/10.1016/j.microrel.2014.01.022 +Shengdong Hu,Realizing high breakdown voltage for a novel interface charges islands structure based on partial-SOI substrate.,2012,52,Microelectronics Reliability,4,db/journals/mr/mr52.html#HuLTZLZZGQZ12,https://doi.org/10.1016/j.microrel.2011.11.007 +Brahim Benbakhti,Impact of interface state trap density on the performance characteristics of different III-V MOSFET architectures.,2010,50,Microelectronics Reliability,3,db/journals/mr/mr50.html#BenbakhtiAKLHBMTA10,https://doi.org/10.1016/j.microrel.2009.11.017 +A. A. Dakhel,dc-Conduction mechanism in lanthanum-manganese oxide films grown on p-Si substrate.,2008,48,Microelectronics Reliability,3,db/journals/mr/mr48.html#Dakhel08,https://doi.org/10.1016/j.microrel.2007.08.003 +C. J. Hang,Growth behavior of Cu/Al intermetallic compounds and cracks in copper ball bonds during isothermal aging.,2008,48,Microelectronics Reliability,3,db/journals/mr/mr48.html#HangWMTZW08,https://doi.org/10.1016/j.microrel.2007.06.008 +A. Baïri,Thermal state of electronic assemblies applied to smart building equipped with QFN64 device subjected to natural convection.,2017,70,Microelectronics Reliability,,db/journals/mr/mr70.html#BairiRMAM17,https://doi.org/10.1016/j.microrel.2017.01.002 +Moon-Hwan Chang,Light emitting diodes reliability review.,2012,52,Microelectronics Reliability,5,db/journals/mr/mr52.html#ChangDVP12,https://doi.org/10.1016/j.microrel.2011.07.063 +K. N. Tu,Transition from flip chip solder joint to 3D IC microbump: Its effect on microstructure anisotropy.,2013,53,Microelectronics Reliability,1,db/journals/mr/mr53.html#TuHC13,https://doi.org/10.1016/j.microrel.2012.07.029 +Dario Ferreira Sanchez,In-situ X-ray and#956*Laue diffraction study of copper through-silicon vias.,2016,56,Microelectronics Reliability,,db/journals/mr/mr56.html#SanchezRWMRMGB16,https://doi.org/10.1016/j.microrel.2015.10.008 +Chun-Yu Lin,Design and implementation of configurable ESD protection cell for 60-GHz RF circuits in a 65-nm CMOS process.,2011,51,Microelectronics Reliability,8,db/journals/mr/mr51.html#LinCK11,https://doi.org/10.1016/j.microrel.2011.03.016 +Hailian Liang,Investigation on LDMOS-SCR with high holding current for high voltage ESD protection.,2016,61,Microelectronics Reliability,,db/journals/mr/mr61.html#LiangBGCZ16,https://doi.org/10.1016/j.microrel.2016.01.016 +Bernd Ebersberger,Scanning probe microscopy in semiconductor failure analysis.,2001,41,Microelectronics Reliability,8,db/journals/mr/mr41.html#EbersbergerOB01,https://doi.org/10.1016/S0026-2714(01)00109-3 +S. M. Hayes,Interfacial fracture toughness of Pb-free solders.,2009,49,Microelectronics Reliability,3,db/journals/mr/mr49.html#HayesCF09,https://doi.org/10.1016/j.microrel.2008.11.004 +Delong Qiu,Experimental and numerical study of 3D stacked dies under forced air cooling and water immersion cooling.,2017,74,Microelectronics Reliability,,db/journals/mr/mr74.html#QiuCWHW17,https://doi.org/10.1016/j.microrel.2017.02.016 +Surendra S. Rathod,A proposed DG-FinFET based SRAM cell design with RadHard capabilities.,2010,50,Microelectronics Reliability,8,db/journals/mr/mr50.html#RathodSD10,https://doi.org/10.1016/j.microrel.2010.04.020 +M. Lisiansky,Peculiarities of hole trapping in Al2O3-SiO2 gate dielectric stack.,2017,79,Microelectronics Reliability,,db/journals/mr/mr79.html#LisianskyRRMYS17,https://doi.org/10.1016/j.microrel.2017.05.035 +Laura Ciammaruchi,Acceleration factor for ageing measurement of dye solar cells.,2013,53,Microelectronics Reliability,2,db/journals/mr/mr53.html#CiammaruchiPRBC13,https://doi.org/10.1016/j.microrel.2012.08.016 +C. Andersson,Detection of cracks in multilayer ceramic capacitors by X-ray imaging.,2016,64,Microelectronics Reliability,,db/journals/mr/mr64.html#AnderssonIVK16,https://doi.org/10.1016/j.microrel.2016.07.110 +Wolfgang Gös,Identification of oxide defects in semiconductor devices: A systematic approach linking DFT to rate equations and experimental evidence.,2018,87,Microelectronics Reliability,,db/journals/mr/mr87.html#GosWERJSG18,https://doi.org/10.1016/j.microrel.2017.12.021 +Peisheng Liu,Challenges and developments of copper wire bonding technology.,2012,52,Microelectronics Reliability,6,db/journals/mr/mr52.html#LiuTWST12,https://doi.org/10.1016/j.microrel.2011.12.013 +Chul Seung Lim,Study of proton radiation effect to row hammer fault in DDR4 SDRAMs.,2018,80,Microelectronics Reliability,,db/journals/mr/mr80.html#LimPBYPBWW18,https://doi.org/10.1016/j.microrel.2017.11.018 +Fernanda Irrera,Reliability improvements in 50 nm MLC NAND flash memory using short voltage programming pulses.,2009,49,Microelectronics Reliability,2,db/journals/mr/mr49.html#IrreraPPRV09,https://doi.org/10.1016/j.microrel.2008.11.006 +William J. Roesch,Setting stress conditions that qualify application expectations.,2015,55,Microelectronics Reliability,12,db/journals/mr/mr55.html#Roesch15,https://doi.org/10.1016/j.microrel.2015.09.022 +Andrzej Dziedzic,Fodel microresistors-processing and basic electrical properties.,2003,43,Microelectronics Reliability,3,db/journals/mr/mr43.html#DziedzicRGW03,https://doi.org/10.1016/S0026-2714(02)00346-3 +F. Mondon,Electrical characterisation and reliability of HfO2 and Al2O3-HfO2 MIM capacitors.,2003,43,Microelectronics Reliability,8,db/journals/mr/mr43.html#MondonB03,https://doi.org/10.1016/S0026-2714(03)00181-1 +Ke Zhao,Performance evaluation for a novel optoelectronic device for noninvasive monitoring thrombosis.,2018,84,Microelectronics Reliability,,db/journals/mr/mr84.html#ZhaoPLZWL18,https://doi.org/10.1016/j.microrel.2018.03.021 +Po-Jen Zheng,Solder joint reliability of TFBGA assemblies with fresh and reworked solder balls.,2003,43,Microelectronics Reliability,6,db/journals/mr/mr43.html#ZhengLLWH03,https://doi.org/10.1016/S0026-2714(03)00072-6 +HungYang Leong,Insulated Cu wire free air ball characterization.,2014,54,Microelectronics Reliability,8,db/journals/mr/mr54.html#LeongYKIT14,https://doi.org/10.1016/j.microrel.2014.03.015 +Pramod Ghimire,On-state voltage drop based derating/uprating on a MW converter to improve reliability.,2016,58,Microelectronics Reliability,,db/journals/mr/mr58.html#GhimireTMR16,https://doi.org/10.1016/j.microrel.2015.11.032 +Jie-Hua Zhao,A three-parameter Weibull-like fitting function for flip-chip die strength data.,2004,44,Microelectronics Reliability,3,db/journals/mr/mr44.html#Zhao04,https://doi.org/10.1016/S0026-2714(03)00238-5 +Yao Ma,Analysis of deep level defects in bipolar junction transistors irradiated by 2 MeV electrons.,2017,79,Microelectronics Reliability,,db/journals/mr/mr79.html#MaXGBBGWWWN17,https://doi.org/10.1016/j.microrel.2017.10.023 +Amir Rajabzadeh,Transient detection in COTS processors using software approach.,2006,46,Microelectronics Reliability,1,db/journals/mr/mr46.html#RajabzadehM06,https://doi.org/10.1016/j.microrel.2004.10.013 +Yao Zhao,Effect of reverse substrate bias on ultra-thin gate oxide n-MOSFET degradation under different stress modes.,2006,46,Microelectronics Reliability,1,db/journals/mr/mr46.html#ZhaoXT06,https://doi.org/10.1016/j.microrel.2005.05.002 +Mohammad Maghsoudloo,Design space exploration of non-uniform cache access for soft-error vulnerability mitigation.,2015,55,Microelectronics Reliability,11,db/journals/mr/mr55.html#MaghsoudlooZ15,https://doi.org/10.1016/j.microrel.2015.07.049 +Bo Huang,Mechanical behavior and fatigue life estimation on fretting wear for micro-rectangular electrical connector.,2016,66,Microelectronics Reliability,,db/journals/mr/mr66.html#HuangLZC16,https://doi.org/10.1016/j.microrel.2016.09.013 +Xiao-Hong Zhao,Model of phonon contribution to nonionizing energy loss (NIEL) for InP/InGaAs heterojunction.,2017,78,Microelectronics Reliability,,db/journals/mr/mr78.html#ZhaoLZZ17,https://doi.org/10.1016/j.microrel.2017.07.097 +Peter Ersland,Editorial.,2011,51,Microelectronics Reliability,2,db/journals/mr/mr51.html#ErslandM11,https://doi.org/10.1016/j.microrel.2010.10.017 +F. Schwierz,Semiconductor devices for RF applications: evolution and current status.,2001,41,Microelectronics Reliability,2,db/journals/mr/mr41.html#SchwierzL01,https://doi.org/10.1016/S0026-2714(00)00076-7 +Yeong K. Kim,Warpage mechanism analyses of strip panel type PBGA chip packaging.,2010,50,Microelectronics Reliability,3,db/journals/mr/mr50.html#KimPC10,https://doi.org/10.1016/j.microrel.2009.12.010 +A. D. Trigg,Modular sensor chip design for package stress evaluation and reliability characterisation.,2012,52,Microelectronics Reliability,8,db/journals/mr/mr52.html#TriggCZCW12,https://doi.org/10.1016/j.microrel.2012.01.012 +Cheolgyu Kim,Voltage dependent degradation of HfSiON/SiO2 nMOSFETs under positive bias temperature instability.,2014,54,Microelectronics Reliability,11,db/journals/mr/mr54.html#KimKK14,https://doi.org/10.1016/j.microrel.2014.06.001 +Takuya Naoe,Via high resistance failure analysis of LSI devices induced by multiple factors related to process and design.,2012,52,Microelectronics Reliability,12,db/journals/mr/mr52.html#NaoeKIY12,https://doi.org/10.1016/j.microrel.2012.07.023 +Partha Sarkar,Study on the performance of sub 100 nm LACLATI MOSFETs for digital application.,2009,49,Microelectronics Reliability,4,db/journals/mr/mr49.html#SarkarMS09,https://doi.org/10.1016/j.microrel.2008.12.015 +Feng Wu,Current similarity based open-circuit fault diagnosis for induction motor drives with discrete wavelet transform.,2017,75,Microelectronics Reliability,,db/journals/mr/mr75.html#WuHZL17,https://doi.org/10.1016/j.microrel.2017.05.036 +M. Karilahti,Neural net analysis of integrated circuit yield dependence on CMOS process control parameters.,2003,43,Microelectronics Reliability,1,db/journals/mr/mr43.html#Karilahti03,https://doi.org/10.1016/S0026-2714(02)00277-9 +P. G. Whiting,Under-gate defect formation in Ni-gate AlGaN/GaN high electron mobility transistors.,2012,52,Microelectronics Reliability,11,db/journals/mr/mr52.html#WhitingRHPJLKR12,https://doi.org/10.1016/j.microrel.2012.05.015 +Markus P. K. Turunen,Pull-off test in the assessment of adhesion at printed wiring board metallisation/epoxy interface.,2004,44,Microelectronics Reliability,6,db/journals/mr/mr44.html#TurunenMPLK04,https://doi.org/10.1016/j.microrel.2004.01.001 +Olivér Krammer,Modelling the effect of uneven PWB surface on stencil bending during stencil printing process.,2012,52,Microelectronics Reliability,1,db/journals/mr/mr52.html#KrammerMJS12,https://doi.org/10.1016/j.microrel.2011.08.012 +Hongge Li,Low-power MicroVrms noise neural spike detector for implantable interface microsystem device.,2015,55,Microelectronics Reliability,5,db/journals/mr/mr55.html#LiBXX15,https://doi.org/10.1016/j.microrel.2015.02.001 +A. Pérez-Tomás,Temperature behavior and modeling of ohmic contacts to Si+ implanted n-type GaN.,2011,51,Microelectronics Reliability,8,db/journals/mr/mr51.html#Perez-TomasPFGJ11,https://doi.org/10.1016/j.microrel.2011.03.023 +Nhat Ly,More uniform Pd distribution in free-air balls of Pd-coated Cu bonding wire using movable flame-off electrode.,2015,55,Microelectronics Reliability,1,db/journals/mr/mr55.html#LyXSM15,https://doi.org/10.1016/j.microrel.2014.10.004 +Michael Edwards,The shear strength of nano-Ag sintered joints and the use of Ag interconnects in the design and manufacture of SiGe-based thermo-electric modules.,2015,55,Microelectronics Reliability,5,db/journals/mr/mr55.html#EdwardsBRBGSA15,https://doi.org/10.1016/j.microrel.2015.02.004 +Xiangfu Zhao,Exploration of baking temperature effects on 28 nm BEOL reliability.,2017,72,Microelectronics Reliability,,db/journals/mr/mr72.html#ZhaoC17,https://doi.org/10.1016/j.microrel.2017.03.019 +Thomas Polzer,Refined metastability characterization using a time-to-digital converter.,2018,80,Microelectronics Reliability,,db/journals/mr/mr80.html#PolzerHS18,https://doi.org/10.1016/j.microrel.2017.11.017 +Wen Zhao,Single-event multiple transients in guard-ring hardened inverter chains of different layout designs.,2018,87,Microelectronics Reliability,,db/journals/mr/mr87.html#ZhaoHCCCZWSZGD18,https://doi.org/10.1016/j.microrel.2018.06.014 +A. Khaled,Investigating stress measurement capabilities of GHz Scanning Acoustic Microscopy for 3D failure analysis.,2016,64,Microelectronics Reliability,,db/journals/mr/mr64.html#KhaledBKAW16,https://doi.org/10.1016/j.microrel.2016.07.061 +Michael W. Ruprecht,A review of ULSI failure analysis techniques for DRAMs. Part II: Defect isolation and visualization.,2003,43,Microelectronics Reliability,1,db/journals/mr/mr43.html#RuprechtBH03,https://doi.org/10.1016/S0026-2714(02)00295-0 +Jin He,Extraction of the lateral distribution of interface traps in MOSFETs by a novel combined gated-diode technique.,2001,41,Microelectronics Reliability,12,db/journals/mr/mr41.html#HeZHW01,https://doi.org/10.1016/S0026-2714(01)00235-9 +Kun Liu,The effect of external stress on the electrical characteristics of AlGaN/GaN HEMTs.,2015,55,Microelectronics Reliability,6,db/journals/mr/mr55.html#LiuZFSZG15,https://doi.org/10.1016/j.microrel.2015.03.012 +P. F. Marsh,Reliability of metamorphic HEMTs on GaAs substrates.,2002,42,Microelectronics Reliability,7,db/journals/mr/mr42.html#MarshWHLK02,https://doi.org/10.1016/S0026-2714(02)00063-X +Chunmeng Dou,Resistive switching behavior of a CeO2 based ReRAM cell incorporated with Si buffer layer.,2012,52,Microelectronics Reliability,4,db/journals/mr/mr52.html#DouKATNSNHI12,https://doi.org/10.1016/j.microrel.2011.10.019 +Min-Ching Chu,Plasma-enhanced flexible metal-insulator-metal capacitor using high-k ZrO2 film as gate dielectric with improved reliability.,2010,50,Microelectronics Reliability,8,db/journals/mr/mr50.html#ChuMCYCK10,https://doi.org/10.1016/j.microrel.2010.05.004 +Fuliang Wang,Modeling study of thermosonic flip chip bonding process.,2012,52,Microelectronics Reliability,11,db/journals/mr/mr52.html#WangC12a,https://doi.org/10.1016/j.microrel.2012.03.029 +Jin-Cheol Jeong,Life test of an X-band MMIC multi-function chip for active phased array radar applications.,2015,55,Microelectronics Reliability,5,db/journals/mr/mr55.html#JeongKYSJ15,https://doi.org/10.1016/j.microrel.2015.02.002 +Robert O'Connor,Reliability of thin ZrO2 gate dielectric layers.,2011,51,Microelectronics Reliability,6,db/journals/mr/mr51.html#OConnorHKR11,https://doi.org/10.1016/j.microrel.2011.02.006 +Ramin Rajaei,Highly reliable and low-power magnetic full-adder designs for nanoscale technologies.,2017,73,Microelectronics Reliability,,db/journals/mr/mr73.html#Rajaei17a,https://doi.org/10.1016/j.microrel.2017.04.033 +De-Shin Liu,Modeling of multi-layered structure containing heterogeneous material layer with randomly distributed particles using infinite element method.,2010,50,Microelectronics Reliability,1,db/journals/mr/mr50.html#LiuZCC10,https://doi.org/10.1016/j.microrel.2009.08.002 +Ming-Hung Shu,Using intuitionistic fuzzy sets for fault-tree analysis on printed circuit board assembly.,2006,46,Microelectronics Reliability,12,db/journals/mr/mr46.html#ShuCC06,https://doi.org/10.1016/j.microrel.2006.01.007 +Insu Jeon,Stress intensities at the triple junction of a multilevel thin film package.,2008,48,Microelectronics Reliability,5,db/journals/mr/mr48.html#JeonKI08,https://doi.org/10.1016/j.microrel.2007.12.004 +Meng Zhang,Water-enhanced negative bias temperature instability in p-type low temperature polycrystalline silicon thin film transistors.,2014,54,Microelectronics Reliability,1,db/journals/mr/mr54.html#ZhangZCWK14,https://doi.org/10.1016/j.microrel.2013.07.082 +V. Mikhelashvili,Optical and electrical characterization of the electron beam gun evaporated TiO2 film.,2001,41,Microelectronics Reliability,7,db/journals/mr/mr41.html#MikhelashviliE01,https://doi.org/10.1016/S0026-2714(01)00075-0 +A. T. Kollias,Analysis and design of thin film resonator ladder filters.,2002,42,Microelectronics Reliability,7,db/journals/mr/mr42.html#KolliasA02,https://doi.org/10.1016/S0026-2714(02)00056-2 +J. D. Wu,Board level reliability of a stacked CSP subjected to cyclic bending.,2002,42,Microelectronics Reliability,3,db/journals/mr/mr42.html#WuHHLZH02,https://doi.org/10.1016/S0026-2714(01)00241-4 +Mattia Borgarino,Reliability physics of compound semiconductor transistors for microwave applications.,2001,41,Microelectronics Reliability,1,db/journals/mr/mr41.html#BorgarinoMDCF01,https://doi.org/10.1016/S0026-2714(00)00206-7 +Shufeng Zhao,Investigation of delamination control in plastic package.,2009,49,Microelectronics Reliability,3,db/journals/mr/mr49.html#ZhaoP09,https://doi.org/10.1016/j.microrel.2009.01.001 +Yuelin Wu,Electrochemical studies of Pd-doped Cu and Pd-doped Cu-Al intermetallics for understanding corrosion behavior in wire-bonding packages.,2017,78,Microelectronics Reliability,,db/journals/mr/mr78.html#WuSBL17,https://doi.org/10.1016/j.microrel.2017.09.024 +Dimitar Nikolov,Evaluation of Level of Confidence and Optimization of Roll-back Recovery with Checkpointing for Real-Time Systems.,2014,54,Microelectronics Reliability,5,db/journals/mr/mr54.html#NikolovISL14,https://doi.org/10.1016/j.microrel.2014.02.004 +Yansong Tan,Fatigue and dwell-fatigue behavior of nano-silver sintered lap-shear joint at elevated temperature.,2014,54,Microelectronics Reliability,3,db/journals/mr/mr54.html#TanLC14,https://doi.org/10.1016/j.microrel.2013.12.007 +Walter E. Calienes Bartra,FDSOI and Bulk CMOS SRAM Cell Resilience to Radiation Effects.,2016,64,Microelectronics Reliability,,db/journals/mr/mr64.html#BartraVR16,https://doi.org/10.1016/j.microrel.2016.07.133 +Ko-Chun Lee,Investigation and comparison of analog figures-of-merit for TFET and FinFET considering work-function variation.,2015,55,Microelectronics Reliability,2,db/journals/mr/mr55.html#LeeFS15,https://doi.org/10.1016/j.microrel.2014.11.012 +Walter Smetana,Processing procedures for the realization of fine structured channel arrays and bridging elements by LTCC-Technology.,2009,49,Microelectronics Reliability,6,db/journals/mr/mr49.html#SmetanaBSLS09,https://doi.org/10.1016/j.microrel.2009.02.023 +Dao-Long Chen,A review of three-dimensional viscoelastic models with an application to viscoelasticity characterization using nanoindentation.,2012,52,Microelectronics Reliability,3,db/journals/mr/mr52.html#ChenYL12,https://doi.org/10.1016/j.microrel.2011.10.001 +Jie Wu,Comparative studies on microelectronic reliability issue of Sn whisker growth in Sn-0.3Ag-0.7Cu-1Pr solder under different environments.,2017,79,Microelectronics Reliability,,db/journals/mr/mr79.html#WuXWW17,https://doi.org/10.1016/j.microrel.2017.10.020 +Shipeng Yi,The influence of microwave pulse width on the thermal burnout effect of a PIN diode limiting-amplifying system.,2017,75,Microelectronics Reliability,,db/journals/mr/mr75.html#YiD17,https://doi.org/10.1016/j.microrel.2017.06.025 +P. S. Das,Charge trapping and reliability characteristics of ultra-thin HfYOx films on n-GaAs substrates.,2010,50,Microelectronics Reliability,12,db/journals/mr/mr50.html#DasB10,https://doi.org/10.1016/j.microrel.2010.07.009 +R. Mahmudi,Microstructure and elevated-temperature shear strength of Zn-4Al-3Mg-xSn high-temperature lead-free solders.,2014,54,Microelectronics Reliability,8,db/journals/mr/mr54.html#MahmudiF14,https://doi.org/10.1016/j.microrel.2014.03.008 +Nishad Patil,Anomaly detection for IGBTs using Mahalanobis distance.,2015,55,Microelectronics Reliability,7,db/journals/mr/mr55.html#PatilDP15,https://doi.org/10.1016/j.microrel.2015.04.001 +Y. Wang,A process-variation-resilient methodology of circuit design by using asymmetrical forward body bias in 28 nm FDSOI.,2016,64,Microelectronics Reliability,,db/journals/mr/mr64.html#WangCNZZSKZ16,https://doi.org/10.1016/j.microrel.2016.07.073 +Frank Stepniak,Failure criteria of flip chip joints during accelerated testing.,2002,42,Microelectronics Reliability,12,db/journals/mr/mr42.html#Stepniak02,https://doi.org/10.1016/S0026-2714(02)00121-X +Ee-Hua Wong,Correlation studies for component level ball impact shear test and board level drop test.,2008,48,Microelectronics Reliability,7,db/journals/mr/mr48.html#WongRSSDCZOTLELY08,https://doi.org/10.1016/j.microrel.2008.04.008 +Lech Z. Hasse,Quality assessment of ZnO-based varistors by 1/f noise.,2014,54,Microelectronics Reliability,1,db/journals/mr/mr54.html#HasseBKSS14,https://doi.org/10.1016/j.microrel.2013.09.007 +Masakatsu Maeda,Anomalous microstructure formed at the interface between copper ribbon and tin-deposited copper plate by ultrasonic bonding.,2011,51,Microelectronics Reliability,1,db/journals/mr/mr51.html#MaedaSIYT11,https://doi.org/10.1016/j.microrel.2010.05.009 +Yusuke Higashi,Mechanism of gate dielectric degradation by hydrogen migration from the cathode interface.,2017,70,Microelectronics Reliability,,db/journals/mr/mr70.html#HigashiTKSNTMMO17,https://doi.org/10.1016/j.microrel.2017.01.011 +Bing-Liang Yang,Ultra-shallow n+p junction formed by PH3 and AsH3 plasma immersion ion implantation.,2002,42,Microelectronics Reliability,12,db/journals/mr/mr42.html#YangCDSWLC02,https://doi.org/10.1016/S0026-2714(02)00099-9 +Melina Lofrano,Enhanced Cu pillar design to reduce thermomechanical stress induced during flip chip assembly.,2018,87,Microelectronics Reliability,,db/journals/mr/mr87.html#LofranoCGB18,https://doi.org/10.1016/j.microrel.2018.06.004 +Stanislav Popelka 0002,Operation of 4H-SiC high voltage normally-OFF V-JFET in radiation hard conditions: Simulations and experiment.,2017,74,Microelectronics Reliability,,db/journals/mr/mr74.html#PopelkaHZ17,https://doi.org/10.1016/j.microrel.2017.05.015 +Mohammad Gh. Mohammad,Analysis and test procedures for NOR flash memory defects.,2008,48,Microelectronics Reliability,5,db/journals/mr/mr48.html#MohammadS08,https://doi.org/10.1016/j.microrel.2008.01.004 +Jianfu Zhang,As-grown-generation (AG) model of NBTI: A shift from fitting test data to prediction.,2018,80,Microelectronics Reliability,,db/journals/mr/mr80.html#ZhangJZ18,https://doi.org/10.1016/j.microrel.2017.11.026 +Xi Liu,Failure analysis of through-silicon vias in free-standing wafer under thermal-shock test.,2013,53,Microelectronics Reliability,1,db/journals/mr/mr53.html#LiuCSTS13,https://doi.org/10.1016/j.microrel.2012.06.140 +Karol Nitsch,Microelectronic materials and structures characterization by impedance spectroscopy.,2011,51,Microelectronics Reliability,7,db/journals/mr/mr51.html#Nitsch11,https://doi.org/10.1016/j.microrel.2011.02.019 +M. K. Bera,Reliability of ultra thin ZrO2 films on strained-Si.,2008,48,Microelectronics Reliability,5,db/journals/mr/mr48.html#BeraM08,https://doi.org/10.1016/j.microrel.2008.01.001 +A. Sozza,Long-term reliability of Ti-Pt-Au metallization system for Schottky contact and first-level metallization on SiC MESFET.,2004,44,Microelectronics Reliability,7,db/journals/mr/mr44.html#SozzaDKBZ04,https://doi.org/10.1016/j.microrel.2004.01.017 +Dimitri Linten,A plug-and-play wideband RF circuit ESD protection methodology: T-diodes.,2009,49,Microelectronics Reliability,12,db/journals/mr/mr49.html#LintenTBDTSNWDG09,https://doi.org/10.1016/j.microrel.2009.10.011 +Warren R. Anderson,Reliability considerations for ESD protection under wire bonding pads.,2001,41,Microelectronics Reliability,3,db/journals/mr/mr41.html#AndersonGKF01,https://doi.org/10.1016/S0026-2714(00)00239-0 +Ming-Dou Ker,Overview on ESD protection design for mixed-voltage I/O interfaces with high-voltage-tolerant power-rail ESD clamp circuits in low-voltage thin-oxide CMOS technology.,2007,47,Microelectronics Reliability,1,db/journals/mr/mr47.html#KerC07,https://doi.org/10.1016/j.microrel.2006.03.012 +Aiman H. El-Maleh,A generalized modular redundancy scheme for enhancing fault tolerance of combinational circuits.,2014,54,Microelectronics Reliability,1,db/journals/mr/mr54.html#El-MalehO14,https://doi.org/10.1016/j.microrel.2013.09.002 +D. Weber,Impact of substituting SiO2 ILD by low k materials into AlCu RIE metallization.,2001,41,Microelectronics Reliability,7,db/journals/mr/mr41.html#WeberHHKSHBJNNF01,https://doi.org/10.1016/S0026-2714(01)00077-4 +John Kontoleon,Soft error recovery in simplex and triplex memory systems.,2009,49,Microelectronics Reliability,4,db/journals/mr/mr49.html#Kontoleon09,https://doi.org/10.1016/j.microrel.2008.12.009 +Julien Magnien,Parameter driven monitoring for a flip-chip LED module under power cycling condition.,2018,82,Microelectronics Reliability,,db/journals/mr/mr82.html#MagnienMRSHHDK18,https://doi.org/10.1016/j.microrel.2018.01.005 +Jagan Singh Meena,Flexible metal-insulator-metal capacitor using plasma enhanced binary hafnium-zirconium-oxide as gate dielectric layer.,2010,50,Microelectronics Reliability,5,db/journals/mr/mr50.html#MeenaCTYWK10,https://doi.org/10.1016/j.microrel.2010.01.046 +Tz-Cheng Chiu,A numerical procedure for simulating delamination growth on interfaces of interconnect structures.,2012,52,Microelectronics Reliability,7,db/journals/mr/mr52.html#ChiuC12,https://doi.org/10.1016/j.microrel.2012.03.006 +B. Pardo,Thermal resistance investigations on new leadframe-based LED packages and boards.,2013,53,Microelectronics Reliability,8,db/journals/mr/mr53.html#PardoGFJWPJVWB13,https://doi.org/10.1016/j.microrel.2013.02.016 +Gennady I. Zebrev,Physics-based modeling of TID induced global static leakage in different CMOS circuits.,2018,84,Microelectronics Reliability,,db/journals/mr/mr84.html#ZebrevOGD18,https://doi.org/10.1016/j.microrel.2018.03.014 +Jawar Singh,A highly reliable NBTI Resilient 6T SRAM cell.,2013,53,Microelectronics Reliability,4,db/journals/mr/mr53.html#SinghV13,https://doi.org/10.1016/j.microrel.2012.11.003 +Alireza Rohani,Two effective methods to mitigate soft error effects in SRAM-based FPGAs.,2010,50,Microelectronics Reliability,8,db/journals/mr/mr50.html#RohaniZ10,https://doi.org/10.1016/j.microrel.2010.04.021 +Min-Jung Kim,Effects of temperature and span amplitude on fretting corrosion behavior of tin-plated electrical contacts.,2017,69,Microelectronics Reliability,,db/journals/mr/mr69.html#KimK17,https://doi.org/10.1016/j.microrel.2016.12.014 +Barry O'Connell,Evaluation of performance-reliability trade-offs in a Si-Ge BiCMOS process using fast wafer level techniques.,2004,44,Microelectronics Reliability,8,db/journals/mr/mr44.html#OConnellCM04,https://doi.org/10.1016/j.microrel.2004.04.013 +S. Yamaguchi,Scalability comparison between raised- and embedded-SiGe source/drain structures for Si0.55Ge0.45 implant free quantum well pFET.,2018,83,Microelectronics Reliability,,db/journals/mr/mr83.html#YamaguchiWMEHHL18,https://doi.org/10.1016/j.microrel.2018.03.006 +X. D. Huang,Performance of nonvolatile memory by using band-engineered SrTiO3/HfON stack as charge-trapping layer.,2012,52,Microelectronics Reliability,11,db/journals/mr/mr52.html#HuangLS12,https://doi.org/10.1016/j.microrel.2012.04.006 +Anirban Sengupta,Low cost fault tolerance against kc-cycle and km-unit transient for loop based control data flow graphs during physically aware high level synthesis.,2017,74,Microelectronics Reliability,,db/journals/mr/mr74.html#SenguptaK17,https://doi.org/10.1016/j.microrel.2017.05.023 +Bharatwaj Ramakrishnan,Process capability indices and product reliability.,2001,41,Microelectronics Reliability,12,db/journals/mr/mr41.html#RamakrishnanSP01,https://doi.org/10.1016/S0026-2714(01)00227-X +H. C. Chen,Improvement of lumen efficiency in white light-emitting diodes with air-gap embedded package.,2012,52,Microelectronics Reliability,5,db/journals/mr/mr52.html#ChenCLWYTSK12,https://doi.org/10.1016/j.microrel.2012.02.011 +Alireza Tajary,Using instruction result locality and re-execution to mitigate silent data corruptions.,2016,62,Microelectronics Reliability,,db/journals/mr/mr62.html#TajaryZ16,https://doi.org/10.1016/j.microrel.2016.03.029 +Michal Tadeusiewicz,Diagnosis of a soft short and local variations of parameters occurring simultaneously in analog CMOS circuits.,2017,72,Microelectronics Reliability,,db/journals/mr/mr72.html#TadeusiewiczH17,https://doi.org/10.1016/j.microrel.2017.03.025 +R. K. Shiue,The reliability study of selected Sn-Zn based lead-free solders on Au/Ni-P/Cu substrate.,2003,43,Microelectronics Reliability,3,db/journals/mr/mr43.html#ShiueTLO03,https://doi.org/10.1016/S0026-2714(02)00259-7 +Qi-Lin Gu,A comparative study on electrothermal characteristics of nanoscale multiple gate MOSFETs.,2017,78,Microelectronics Reliability,,db/journals/mr/mr78.html#GuZRSZY17,https://doi.org/10.1016/j.microrel.2017.09.003 +Yong Ding,Effects of bonding force on contact pressure and frictional energy in wire bonding.,2006,46,Microelectronics Reliability,7,db/journals/mr/mr46.html#DingKT06,https://doi.org/10.1016/j.microrel.2005.09.010 +Frederic Monsieur,On the role of holes in oxide breakdown mechanism in inverted nMOSFETs.,2003,43,Microelectronics Reliability,8,db/journals/mr/mr43.html#MonsieurVHBRSPG03,https://doi.org/10.1016/S0026-2714(03)00172-0 +Yilong Chen,Development of numerical algorithm to guide solder joint structure and component structural design during manufacturing.,2017,71,Microelectronics Reliability,,db/journals/mr/mr71.html#ChenJFZ17,https://doi.org/10.1016/j.microrel.2017.02.007 +Yongguang Xiao,The influence of ferroelectric-electrode interface layer on the electrical characteristics of negative-capacitance ferroelectric double-gate field-effect transistors.,2012,52,Microelectronics Reliability,4,db/journals/mr/mr52.html#XiaoTLJH12,https://doi.org/10.1016/j.microrel.2011.11.006 +D. A. van den Ende,Large area flexible lighting foils using distributed bare LED dies on polyester substrates.,2013,53,Microelectronics Reliability,12,db/journals/mr/mr53.html#EndeKCWB13,https://doi.org/10.1016/j.microrel.2013.06.004 +O. Jeandupeux,Use of scanning capacitance microscopy for controlling wafer processing.,2002,42,Microelectronics Reliability,2,db/journals/mr/mr42.html#JeandupeuxMAFBK02,https://doi.org/10.1016/S0026-2714(01)00234-7 +Bruna Cardoso Paz,Drain current model for short-channel triple gate junctionless nanowire transistors.,2016,63,Microelectronics Reliability,,db/journals/mr/mr63.html#PazCBRFACP16,https://doi.org/10.1016/j.microrel.2016.05.006 +Juin J. Liou,Influence of polysilicon-gate depletion on the subthreshold behavior of submicron MOSFETs.,2002,42,Microelectronics Reliability,3,db/journals/mr/mr42.html#LiouSOSCGZH02,https://doi.org/10.1016/S0026-2714(01)00259-1 +Wing-Shan Tam,Modeling of terminal ring structures for high-voltage power MOSFETs.,2012,52,Microelectronics Reliability,8,db/journals/mr/mr52.html#TamSWKWF12,https://doi.org/10.1016/j.microrel.2011.10.015 +Xin-long Liu,Effect of roughness on electrical contact performance of electronic components.,2017,74,Microelectronics Reliability,,db/journals/mr/mr74.html#LiuCLPZ17,https://doi.org/10.1016/j.microrel.2017.05.024 +Yu Gu 0009,Interfacial delamination and fatigue life estimation of 3D solder bumps in flip-chip packages.,2004,44,Microelectronics Reliability,3,db/journals/mr/mr44.html#GuN04,https://doi.org/10.1016/j.microrel.2003.11.002 +Y. Y. Tan,Cu-Al intermetallic compound investigation using ex-situ post annealing and in-situ annealing.,2015,55,Microelectronics Reliability,11,db/journals/mr/mr55.html#TanYSSW15,https://doi.org/10.1016/j.microrel.2015.06.050 +Ee-Hua Wong,Advances in the drop-impact reliability of solder joints for mobile applications.,2009,49,Microelectronics Reliability,2,db/journals/mr/mr49.html#WongSDCOL09,https://doi.org/10.1016/j.microrel.2008.12.001 +D. Brazzelli,Optimization of WSi2 by SiH4 CVD: impact on oxide quality.,2001,41,Microelectronics Reliability,7,db/journals/mr/mr41.html#BrazzelliGR01,https://doi.org/10.1016/S0026-2714(01)00057-9 +Hsuan-Ling Kao,Characterization and reliability of nMOSFETs on flexible substrates under mechanical strain.,2012,52,Microelectronics Reliability,6,db/journals/mr/mr52.html#KaoYCCC12,https://doi.org/10.1016/j.microrel.2011.12.019 +Mile K. Stojcev,Implementation of self-checking two-level combinational logic on FPGA and CPLD circuits.,2004,44,Microelectronics Reliability,1,db/journals/mr/mr44.html#StojcevDS04,https://doi.org/10.1016/S0026-2714(03)00377-9 +Tibor Grasser,Stochastic charge trapping in oxides: From random telegraph noise to bias temperature instabilities.,2012,52,Microelectronics Reliability,1,db/journals/mr/mr52.html#Grasser12,https://doi.org/10.1016/j.microrel.2011.09.002 +Baozhen Li,Application of three-parameter lognormal distribution in EM data analysis.,2006,46,Microelectronics Reliability,12,db/journals/mr/mr46.html#LiYCGFS06,https://doi.org/10.1016/j.microrel.2006.01.001 +Mohammad Yunus,Effect of voids on the reliability of BGA/CSP solder joints.,2003,43,Microelectronics Reliability,12,db/journals/mr/mr43.html#YunusSPP03,https://doi.org/10.1016/S0026-2714(03)00124-0 +Gert Vogel,Creeping corrosion of copper on printed circuit board assemblies.,2016,64,Microelectronics Reliability,,db/journals/mr/mr64.html#Vogel16,https://doi.org/10.1016/j.microrel.2016.07.043 +Dong-Suk Han,Effects of zirconium doping on the characteristics of tin oxide thin film transistors.,2013,53,Microelectronics Reliability,12,db/journals/mr/mr53.html#HanPKP13,https://doi.org/10.1016/j.microrel.2013.07.001 +William J. Rowe,Reliability of 100 nm silicon nitride capacitors in an InP HEMT MMIC process.,2003,43,Microelectronics Reliability,6,db/journals/mr/mr43.html#RowePSWD03,https://doi.org/10.1016/S0026-2714(03)00069-6 +Zhaoyang Peng,Effects of combined NO and forming gas annealing on interfacial properties and oxide reliability of 4H-SiC MOS structures.,2016,58,Microelectronics Reliability,,db/journals/mr/mr58.html#PengWSLWBLL16,https://doi.org/10.1016/j.microrel.2015.11.022 +Chenyue Ma,A physical based model to predict performance degradation of FinFET accounting for interface state distribution effect due to hot carrier injection.,2011,51,Microelectronics Reliability,2,db/journals/mr/mr51.html#MaZZZHZ11,https://doi.org/10.1016/j.microrel.2010.08.023 +F. Kraemer,Assessment of long term reliability of photovoltaic glass-glass modules vs. glass-back sheet modules subjected to temperature cycles by FE-analysis.,2015,55,Microelectronics Reliability,5,db/journals/mr/mr55.html#KraemerW15,https://doi.org/10.1016/j.microrel.2015.02.007 +Anirban Sengupta,Swarm intelligence driven design space exploration of optimal k-cycle transient fault secured datapath during high level synthesis based on user power-delay budget.,2015,55,Microelectronics Reliability,6,db/journals/mr/mr55.html#SenguptaS15,https://doi.org/10.1016/j.microrel.2015.03.010 +Lixia Sun,Simulation and evaluation of the peak temperature in LED light bulb heatsink.,2016,61,Microelectronics Reliability,,db/journals/mr/mr61.html#SunZW16,https://doi.org/10.1016/j.microrel.2015.12.023 +W. Chen,Internal processes in power semiconductors at virtual junction temperature measurement.,2016,64,Microelectronics Reliability,,db/journals/mr/mr64.html#ChenFHBL16,https://doi.org/10.1016/j.microrel.2016.07.125 +Qinhan Guo,Comparison study on microstructure and mechanical properties of Sn-10Bi and Sn-Ag-Cu solder alloys and joints.,2017,78,Microelectronics Reliability,,db/journals/mr/mr78.html#GuoZS17,https://doi.org/10.1016/j.microrel.2017.08.004 +Xiaohui Tang,Influence of device geometry on SOI single-hole transistor characteristics.,2001,41,Microelectronics Reliability,11,db/journals/mr/mr41.html#TangBCLRB01,https://doi.org/10.1016/S0026-2714(01)00044-0 +C. K. Wong,The influence of solder volume and pad area on Sn-3.8Ag-0.7Cu and Ni UBM reaction in reflow soldering and isothermal aging.,2008,48,Microelectronics Reliability,4,db/journals/mr/mr48.html#WongPTLLNS08,https://doi.org/10.1016/j.microrel.2007.05.002 +Willem D. van Driel,Prediction of interfacial delamination in stacked IC structures using combined experimental and simulation methods.,2004,44,Microelectronics Reliability,12,db/journals/mr/mr44.html#DrielLZJSGE04,https://doi.org/10.1016/j.microrel.2004.05.002 +Anees Ullah,An FPGA-based dynamically reconfigurable platform for emulation of permanent faults in ASICs.,2017,75,Microelectronics Reliability,,db/journals/mr/mr75.html#UllahSSCF17,https://doi.org/10.1016/j.microrel.2017.06.032 +Yongwoo Kwon,Modeling of data retention statistics of phase-change memory with confined- and mushroom-type cells.,2016,63,Microelectronics Reliability,,db/journals/mr/mr63.html#KwonPYHKJS16,https://doi.org/10.1016/j.microrel.2016.04.007 +Markus P. J. Mergens,On-Chip ESD.,2002,42,Microelectronics Reliability,6,db/journals/mr/mr42.html#Mergens02,https://doi.org/10.1016/S0026-2714(02)00048-3 +A. S. Budiman,Measurement of stresses in Cu and Si around through-silicon via by synchrotron X-ray microdiffraction for 3-dimensional integrated circuits.,2012,52,Microelectronics Reliability,3,db/journals/mr/mr52.html#BudimanSKHSSCBTKJ12,https://doi.org/10.1016/j.microrel.2011.10.016 +Haiqing Nan,Low cost and highly reliable hardened latch design for nanoscale CMOS technology.,2012,52,Microelectronics Reliability,6,db/journals/mr/mr52.html#NanC12,https://doi.org/10.1016/j.microrel.2012.01.001 +Bahar J. Farahani,A cross-layer SER analysis in the presence of PVTA variations.,2015,55,Microelectronics Reliability,7,db/journals/mr/mr55.html#FarahaniHS15,https://doi.org/10.1016/j.microrel.2015.04.008 +Jianxin Zhu,High-precision Berenger modes of dual-layer micro-waveguides terminated with a perfectly matched layer for on-chip optical interconnections.,2013,53,Microelectronics Reliability,8,db/journals/mr/mr53.html#ZhuZ13,https://doi.org/10.1016/j.microrel.2013.04.008 +Yasuhiro Mitsui,Developments of new concept analytical instruments for failure analyses of sub-100 nm devices.,2001,41,Microelectronics Reliability,8,db/journals/mr/mr41.html#MitsuiYKSA01,https://doi.org/10.1016/S0026-2714(01)00105-6 +P. Quintero,Thermomechanical reliability of a silver nano-colloid die attach for high temperature applications.,2014,54,Microelectronics Reliability,1,db/journals/mr/mr54.html#QuinteroMK14,https://doi.org/10.1016/j.microrel.2013.08.002 +Yu-Qun Hu,Tensile tests of micro anchors anodically bonded between Pyrex glass and aluminum thin film coated on silicon wafer.,2008,48,Microelectronics Reliability,10,db/journals/mr/mr48.html#HuZY08,https://doi.org/10.1016/j.microrel.2008.04.016 +M. H. Lin,Effects of width scaling and layout variation on dual damascene copper interconnect electromigration.,2007,47,Microelectronics Reliability,12,db/journals/mr/mr47.html#LinCSW07,https://doi.org/10.1016/j.microrel.2006.10.004 +Shunfeng Cheng,A review of lead-free solders for electronics applications.,2017,75,Microelectronics Reliability,,db/journals/mr/mr75.html#ChengHP17,https://doi.org/10.1016/j.microrel.2017.06.016 +Matthias Jung 0001,A cross layer approach for efficient thermal management in 3D stacked SoCs.,2016,61,Microelectronics Reliability,,db/journals/mr/mr61.html#JungWW16,https://doi.org/10.1016/j.microrel.2015.12.025 +K. S. Kim,Isothermal aging characteristics of Sn-Pb micro solder bumps.,2003,43,Microelectronics Reliability,5,db/journals/mr/mr43.html#KimYKKCC03,https://doi.org/10.1016/S0026-2714(03)00060-X +Wei Chang,Reliability impacts of high-speed 3-bit/cell Schottky barrier nanowire charge-trapping memories.,2015,55,Microelectronics Reliability,1,db/journals/mr/mr55.html#ChangSLWL15,https://doi.org/10.1016/j.microrel.2014.09.004 +Michael Scheffler,A simplified yield modeling method for design rule trade-off in interconnection substrates.,2001,41,Microelectronics Reliability,6,db/journals/mr/mr41.html#SchefflerCT01,https://doi.org/10.1016/S0026-2714(01)00020-8 +Constance E. Schuster,Improved estimation of the resistivity of pure copper and electrical determination of thin copper film dimensions.,2001,41,Microelectronics Reliability,2,db/journals/mr/mr41.html#SchusterVS01,https://doi.org/10.1016/S0026-2714(00)00227-4 +Xiang Wang,Observer based dynamic adaptive cooling system for power modules.,2016,58,Microelectronics Reliability,,db/journals/mr/mr58.html#WangCZ16,https://doi.org/10.1016/j.microrel.2016.01.020 +Krzysztof Górecki,Parameter estimation of the electrothermal model of the ferromagnetic core.,2014,54,Microelectronics Reliability,5,db/journals/mr/mr54.html#GoreckiRZ14,https://doi.org/10.1016/j.microrel.2014.02.003 +Ales Chvála,Analysis of multifinger power HEMTs supported by effective 3-D device electrothermal simulation.,2017,78,Microelectronics Reliability,,db/journals/mr/mr78.html#ChvalaMPSSPDD17,https://doi.org/10.1016/j.microrel.2017.08.012 +Vitezslav Benda,The quest for optimum technology of power semiconductor devices.,2003,43,Microelectronics Reliability,4,db/journals/mr/mr43.html#Benda03,https://doi.org/10.1016/S0026-2714(03)00018-0 +Jiajie Fan,A design and qualification of LED flip Chip-on-Board module with tunable color temperatures.,2018,84,Microelectronics Reliability,,db/journals/mr/mr84.html#FanCYQFZ18,https://doi.org/10.1016/j.microrel.2018.03.033 +Lisa Mitterhuber,Thermal transient measurement and modelling of a power cycled flip-chip LED module.,2018,81,Microelectronics Reliability,,db/journals/mr/mr81.html#MitterhuberDMRH18,https://doi.org/10.1016/j.microrel.2017.10.032 +Joachim N. Burghartz,Status and trends of silicon RF technology.,2001,41,Microelectronics Reliability,1,db/journals/mr/mr41.html#Burghartz01,https://doi.org/10.1016/S0026-2714(00)00198-0 +S. C. Hung,Board level reliability of PBGA using flex substrate.,2001,41,Microelectronics Reliability,5,db/journals/mr/mr41.html#HungZHLCW01,https://doi.org/10.1016/S0026-2714(01)00003-8 +Yu Wang,Electrothermal model for simulation of bulk-Si and SOI diodes in ESD protection circuits.,2001,41,Microelectronics Reliability,11,db/journals/mr/mr41.html#WangJJR01,https://doi.org/10.1016/S0026-2714(01)00034-8 +Chong Leong Gan,3D Flash Memories.,2016,65,Microelectronics Reliability,,db/journals/mr/mr65.html#GanH16a,https://doi.org/10.1016/j.microrel.2016.08.013 +Yu-Ping Hsiao,Improving retention properties by thermal imidization for polyimide-based nonvolatile resistive random access memories.,2015,55,Microelectronics Reliability,11,db/journals/mr/mr55.html#HsiaoYLCLYW15,https://doi.org/10.1016/j.microrel.2015.08.013 +Erping Deng,Analysis on the difference of the characteristic between high power IGBT modules and press pack IGBTs.,2017,78,Microelectronics Reliability,,db/journals/mr/mr78.html#DengZXZH17,https://doi.org/10.1016/j.microrel.2017.07.095 +Feng-Renn Juang,Dependence of the Au/SnOx/n-LTPS/glass thin film MOS Schottky diode CO gas sensing performances on operating temperature.,2012,52,Microelectronics Reliability,2,db/journals/mr/mr52.html#JuangFC12,https://doi.org/10.1016/j.microrel.2011.10.002 +O. Hölck,Basic thermo-mechanical property estimation of a 3D-crosslinked epoxy/SiO2 interface using molecular modelling.,2011,51,Microelectronics Reliability,6,db/journals/mr/mr51.html#HolckDW0M11,https://doi.org/10.1016/j.microrel.2011.03.014 +Michél Simon-Najasek,Novel failure mode of chip corrosion at automotive HALL sensor devices under multiple stress conditions.,2016,64,Microelectronics Reliability,,db/journals/mr/mr64.html#Simon-NajasekLL16,https://doi.org/10.1016/j.microrel.2016.07.008 +P. G. Whiting,Nanocrack formation in AlGaN/GaN high electron mobility transistors utilizing Ti/Al/Ni/Au ohmic contacts.,2017,70,Microelectronics Reliability,,db/journals/mr/mr70.html#WhitingRHPJLKR17,https://doi.org/10.1016/j.microrel.2017.02.005 +Jan Pavelka,Noise and transport characterisation of tantalum capacitors.,2002,42,Microelectronics Reliability,6,db/journals/mr/mr42.html#PavelkaSVSTH02,https://doi.org/10.1016/S0026-2714(02)00013-6 +Marco Lanuzza,Comparative analysis of yield optimized pulsed flip-flops.,2012,52,Microelectronics Reliability,8,db/journals/mr/mr52.html#LanuzzaRFPC12,https://doi.org/10.1016/j.microrel.2012.03.024 +Francisco J. García-Sánchez,A unified look at the use of successive differentiation and integration in MOSFET model parameter extraction.,2015,55,Microelectronics Reliability,2,db/journals/mr/mr55.html#Garcia-SanchezO15,https://doi.org/10.1016/j.microrel.2014.11.013 +X. D. Huang,Charge-trapping characteristics of BaTiO3 with and without nitridation for nonvolatile memory applications.,2014,54,Microelectronics Reliability,11,db/journals/mr/mr54.html#HuangSLL14,https://doi.org/10.1016/j.microrel.2014.05.002 +Emil V. Jelenkovic,Degradation of RuO2 thin films in hydrogen atmosphere at temperatures between 150 and 250 degreeC.,2003,43,Microelectronics Reliability,1,db/journals/mr/mr43.html#JelenkovicTCW03,https://doi.org/10.1016/S0026-2714(02)00274-3 +W. L. Pearn,A reliable procedure for testing linear regulators with one-sided specification limits based on multiple samples.,2003,43,Microelectronics Reliability,4,db/journals/mr/mr43.html#PearnL03,https://doi.org/10.1016/S0026-2714(02)00323-2 +M. Yazdan Mehr,Accelerated life time testing and optical degradation of remote phosphor plates.,2014,54,Microelectronics Reliability,8,db/journals/mr/mr54.html#MehrDZ14,https://doi.org/10.1016/j.microrel.2014.03.014 +Hsien-Chin Chiu,A fully on-chip ESD protection UWB-band low noise amplifier using GaAs enhancement-mode dual-gate pHEMT technology.,2011,51,Microelectronics Reliability,12,db/journals/mr/mr51.html#ChiuCKFCL11,https://doi.org/10.1016/j.microrel.2011.07.007 +Partha Sarkar,Performance comparison of channel engineered deep sub-micrometer pseudo SOI n-MOSFETs.,2007,47,Microelectronics Reliability,6,db/journals/mr/mr47.html#SarkarMS07,https://doi.org/10.1016/j.microrel.2006.06.011 +Chia-Huai Ho,Employing vertical dielectric layers to improve the operation performance of flash memory devices.,2009,49,Microelectronics Reliability,4,db/journals/mr/mr49.html#HoCLLW09,https://doi.org/10.1016/j.microrel.2008.12.004 +C. H. Liu,Electrical characteristics and reliability properties of metal-oxide-semiconductor capacitors with HfZrLaO gate dielectrics.,2010,50,Microelectronics Reliability,5,db/journals/mr/mr50.html#LiuC10,https://doi.org/10.1016/j.microrel.2010.01.014 +Yongxin Zhu,A new creep-fatigue life model of lead-free solder joint.,2015,55,Microelectronics Reliability,7,db/journals/mr/mr55.html#ZhuLWG15,https://doi.org/10.1016/j.microrel.2015.03.019 +Yang Liu,Ku band damage characteristics of GaAs pHEMT induced by a front-door coupling microwave pulse.,2016,66,Microelectronics Reliability,,db/journals/mr/mr66.html#LiuCFSXYY16,https://doi.org/10.1016/j.microrel.2016.09.002 +Jong Hwa Choi,Thermal investigation of LED lighting module.,2012,52,Microelectronics Reliability,5,db/journals/mr/mr52.html#ChoiS12,https://doi.org/10.1016/j.microrel.2011.04.009 +Yiming Qu,Sub-1ns characterization methodology for transistor electrical parameter extraction.,2018,85,Microelectronics Reliability,,db/journals/mr/mr85.html#QuCLHLZ18,https://doi.org/10.1016/j.microrel.2018.03.022 +Fuchen Mu,Proportional difference estimate method of determining characteristic parameters of normal and log-normal distributions.,2001,41,Microelectronics Reliability,1,db/journals/mr/mr41.html#MuTX01,https://doi.org/10.1016/S0026-2714(00)00029-9 +Marcin Iwanowicz,Studies of the quality of GdSiO-Si interface.,2011,51,Microelectronics Reliability,7,db/journals/mr/mr51.html#IwanowiczJGLJGS11,https://doi.org/10.1016/j.microrel.2011.03.006 +Cong Ye,Influence of rapid thermal annealing temperature on structure and electrical properties of high permittivity HfTiO thin film used in MOSFET.,2014,54,Microelectronics Reliability,2,db/journals/mr/mr54.html#YeZZWDT14,https://doi.org/10.1016/j.microrel.2013.10.014 +H. W. Tseng,Electromigration-induced failures at Cu/Sn/Cu flip-chip joint interfaces.,2010,50,Microelectronics Reliability,8,db/journals/mr/mr50.html#TsengLHLCCL10,https://doi.org/10.1016/j.microrel.2010.05.002 +Blerina Aliaj,Self-protection capability of integrated NLDMOS power arrays in ESD pulse regimes.,2011,51,Microelectronics Reliability,12,db/journals/mr/mr51.html#AliajVSL11,https://doi.org/10.1016/j.microrel.2011.05.017 +Hongfei Liu,A voltage calibration technique of electro-optic probing for characterization internal to IC's chip.,2007,47,Microelectronics Reliability,1,db/journals/mr/mr47.html#LiuHZZY07,https://doi.org/10.1016/j.microrel.2006.05.007 +W. C. Leong,Application of flexible printed circuit board (FPCB) in personal computer motherboards: Focusing on mechanical performance.,2012,52,Microelectronics Reliability,4,db/journals/mr/mr52.html#LeongAK12,https://doi.org/10.1016/j.microrel.2011.11.003 +Xinhai Yu,Analysis of high power microwave induced degradation and damage effects in AlGaAs/InGaAs pHEMTs.,2015,55,Microelectronics Reliability,8,db/journals/mr/mr55.html#YuCLYF15,https://doi.org/10.1016/j.microrel.2015.06.002 +Bernhard Czerny,Fatigue testing method for fine bond wires in an LQFP package.,2016,64,Microelectronics Reliability,,db/journals/mr/mr64.html#CzernyMKWZ16,https://doi.org/10.1016/j.microrel.2016.07.068 +J. Barton,Reliability evaluation of a silicon-on-silicon MCM-D package.,2001,41,Microelectronics Reliability,6,db/journals/mr/mr41.html#BartonMDDCLCS01,https://doi.org/10.1016/S0026-2714(01)00014-2 +Guoshuai Yang,Microstructure and morphology of interfacial intermetallic compound CoSn3 in Sn-Pb/Co-P solder joints.,2015,55,Microelectronics Reliability,11,db/journals/mr/mr55.html#YangYL15,https://doi.org/10.1016/j.microrel.2015.06.056 +Christine Naito,The effects of curing parameters on the properties development of an epoxy encapsulant material.,2002,42,Microelectronics Reliability,1,db/journals/mr/mr42.html#NaitoT02,https://doi.org/10.1016/S0026-2714(01)00126-3 +W. S. Lau,A study of the linearity between Ion and log Ioff of modern MOS transistors and its application to stress engineering.,2008,48,Microelectronics Reliability,4,db/journals/mr/mr48.html#LauYEHLSVC08,https://doi.org/10.1016/j.microrel.2007.10.002 +Rashed Adnan Islam,Effect of microwave preheating on the bonding performance of flip chip on flex joint.,2004,44,Microelectronics Reliability,5,db/journals/mr/mr44.html#IslamC04,https://doi.org/10.1016/j.microrel.2003.08.014 +Hirotaka Komoda,Novel charge neutralization techniques applicable to wide current range of FIB processing in FIB-SEM combined system.,2006,46,Microelectronics Reliability,12,db/journals/mr/mr46.html#KomodaYYINWY06,https://doi.org/10.1016/j.microrel.2006.01.014 +Yoshiki Yonamoto,Recovery behavior in negative bias temperature instability.,2014,54,Microelectronics Reliability,3,db/journals/mr/mr54.html#Yonamoto14,https://doi.org/10.1016/j.microrel.2013.12.021 +Soojae Park,Thermal fracture toughness measurement for underfill during temperature change.,2011,51,Microelectronics Reliability,3,db/journals/mr/mr51.html#ParkF11,https://doi.org/10.1016/j.microrel.2010.10.015 +A. Cuadras,Leakage currents and dielectric breakdown of Si1-x-yGexCy thermal oxides.,2008,48,Microelectronics Reliability,10,db/journals/mr/mr48.html#CuadrasGMF08,https://doi.org/10.1016/j.microrel.2008.07.061 +Olli Salmela,Modified Engelmaier's model taking account of different stress levels.,2008,48,Microelectronics Reliability,5,db/journals/mr/mr48.html#SalmelaAPST08,https://doi.org/10.1016/j.microrel.2007.12.002 +Alexander N. Bubennikov,Investigations of impact ionization phenomena in advanced transistors and speed-power improvement of BiMOS SRAM cells based on reverse base current effect.,2001,41,Microelectronics Reliability,2,db/journals/mr/mr41.html#BubennikovZ01,https://doi.org/10.1016/S0026-2714(00)00092-5 +Mile K. Stojcev,Layout-mixed-signal.,2005,45,Microelectronics Reliability,1,db/journals/mr/mr45.html#Stojcev05a,https://doi.org/10.1016/j.microrel.2004.07.002 +Shanshan Liu,A method to recover critical bits under a double error in SEC-DED protected memories.,2017,73,Microelectronics Reliability,,db/journals/mr/mr73.html#LiuRXM17,https://doi.org/10.1016/j.microrel.2017.04.020 +Seok Hwan Moon,Experimental study on the thermal performance of micro-heat pipe with cross-section of polygon.,2004,44,Microelectronics Reliability,2,db/journals/mr/mr44.html#MoonHKK04,https://doi.org/10.1016/S0026-2714(03)00160-4 +Chang-Lin Yeh,Transient analysis of drop responses of board-level electronic packages using response spectra incorporated with modal superposition.,2007,47,Microelectronics Reliability,12,db/journals/mr/mr47.html#YehTL07,https://doi.org/10.1016/j.microrel.2006.09.040 +Jer-Chyi Wang,Gadolinium-based metal oxide for nonvolatile memory applications.,2012,52,Microelectronics Reliability,4,db/journals/mr/mr52.html#WangLCL12,https://doi.org/10.1016/j.microrel.2011.09.032 +D. Malagón,Soft error rate comparison of 6T and 8T SRAM ICs using mono-energetic proton and neutron irradiation sources.,2017,78,Microelectronics Reliability,,db/journals/mr/mr78.html#MalagonBTGPFMQS17,https://doi.org/10.1016/j.microrel.2017.07.093 +C.-T. Wu,Effect of nitridation on the reliability of thick gate oxides.,2003,43,Microelectronics Reliability,1,db/journals/mr/mr43.html#WuMRDGLR03,https://doi.org/10.1016/S0026-2714(02)00122-1 +A. Rydosz,A gas micropreconcentrator for low level acetone measurements.,2012,52,Microelectronics Reliability,11,db/journals/mr/mr52.html#RydoszMPDG12,https://doi.org/10.1016/j.microrel.2012.05.012 +Du Tang,Time dependent modeling of single particle displacement damage in silicon devices.,2016,60,Microelectronics Reliability,,db/journals/mr/mr60.html#TangMHZXLGZZ16,https://doi.org/10.1016/j.microrel.2016.03.004 +Olli Nousiainen,Thermal fatigue endurance of collapsible 95.5Sn4Ag0.5Cu spheres in LTCC/PWB assemblies.,2008,48,Microelectronics Reliability,4,db/journals/mr/mr48.html#NousiainenLKRV08,https://doi.org/10.1016/j.microrel.2007.11.001 +V. A. Gritsenko,Onefold coordinated oxygen atom: an electron trap in the silicon oxide.,2003,43,Microelectronics Reliability,4,db/journals/mr/mr43.html#GritsenkoSNBWZR03,https://doi.org/10.1016/S0026-2714(03)00030-1 +Juan A. Carrasco,Combinatorial methods for the evaluation of yield and operational reliability of fault-tolerant systems-on-chip.,2004,44,Microelectronics Reliability,2,db/journals/mr/mr44.html#CarrascoS04,https://doi.org/10.1016/S0026-2714(03)00216-6 +Chih-Chan Hu,Comparative study of low-frequency noise in 0.18 and#956*m and 0.35 and#956*m gate-length nMOSFETs with gate area of 1.1 and#956*m2.,2016,60,Microelectronics Reliability,,db/journals/mr/mr60.html#HuCLT16,https://doi.org/10.1016/j.microrel.2016.02.008 +Minru Hao,Influence of *-ray total dose radiation effect on the hot carrier gate current of the uniaxial strained Si nano-scale NMOSFET.,2017,75,Microelectronics Reliability,,db/journals/mr/mr75.html#HaoHLWKZ17,https://doi.org/10.1016/j.microrel.2017.06.018 +Kuniyuki Kakushima,Advantage of further scaling in gate dielectrics below 0.5 nm of equivalent oxide thickness with La2O3 gate dielectrics.,2010,50,Microelectronics Reliability,6,db/journals/mr/mr50.html#KakushimaTATSHI10,https://doi.org/10.1016/j.microrel.2010.02.001 +Zhongmin Lai,Microstructure and mechanical properties of Co/Sn-10Bi couple and Co/Sn-10Bi/Co joint.,2017,68,Microelectronics Reliability,,db/journals/mr/mr68.html#LaiKYC17,https://doi.org/10.1016/j.microrel.2016.11.008 +Peter J. Zampardi,Measuring seam/crack formation in interconnect metallization.,2012,52,Microelectronics Reliability,12,db/journals/mr/mr52.html#ZampardiCBL12,https://doi.org/10.1016/j.microrel.2012.08.025 +Charles S. Whitman,Methodology for predicting off-state reliability in GaN power transistors.,2014,54,Microelectronics Reliability,2,db/journals/mr/mr54.html#Whitman14,https://doi.org/10.1016/j.microrel.2013.09.010 +Keun-Soo Kim,Properties of low temperature Sn-Ag-Bi-In solder systems.,2007,47,Microelectronics Reliability,7,db/journals/mr/mr47.html#KimISUK07,https://doi.org/10.1016/j.microrel.2006.06.012 +C. Y. Khor,Investigation of the fluid/structure interaction phenomenon in IC packaging.,2012,52,Microelectronics Reliability,1,db/journals/mr/mr52.html#KhorATLR12,https://doi.org/10.1016/j.microrel.2011.09.013 +Preetpal Singh,A review on the humidity reliability of high power white light LEDs.,2016,61,Microelectronics Reliability,,db/journals/mr/mr61.html#SinghT16,https://doi.org/10.1016/j.microrel.2015.12.002 +Yisong Dai,Generation-recombination noise in bipolar transistors.,2001,41,Microelectronics Reliability,6,db/journals/mr/mr41.html#Dai01,https://doi.org/10.1016/S0026-2714(01)00042-7 +Klaus Fellner,Numerical simulation of the electrical performance of printed circuit boards under cyclic thermal loads.,2016,62,Microelectronics Reliability,,db/journals/mr/mr62.html#FellnerAFT16,https://doi.org/10.1016/j.microrel.2016.03.034 +Cheng-Yi Liu,Reliability of high-power LED packaging and assembly.,2012,52,Microelectronics Reliability,5,db/journals/mr/mr52.html#LiuLSL12,https://doi.org/10.1016/j.microrel.2012.02.023 +Tengfei Cui,Preparation and thermal properties of the graphene-polyolefin adhesive composites: Application in thermal interface materials.,2015,55,Microelectronics Reliability,12,db/journals/mr/mr55.html#CuiLXZ15,https://doi.org/10.1016/j.microrel.2015.07.036 +K. M. Chen,Effects of underfill materials on the reliability of low-K flip-chip packaging.,2006,46,Microelectronics Reliability,1,db/journals/mr/mr46.html#ChenJKL06,https://doi.org/10.1016/j.microrel.2005.05.001 +Vanco B. Litovski,Analogue electronic circuit diagnosis based on ANNs.,2006,46,Microelectronics Reliability,8,db/journals/mr/mr46.html#LitovskiAZ06,https://doi.org/10.1016/j.microrel.2005.11.008 +Myung Ju Kim,Effect of enhanced-mobility current path on the mobility of AOS TFT.,2012,52,Microelectronics Reliability,7,db/journals/mr/mr52.html#KimC12,https://doi.org/10.1016/j.microrel.2012.02.012 +Luka Kljucar,Evaluation of via density and low-k Young's modulus influence on mechanical performance of advanced node multi-level Back-End-Of-Line.,2016,56,Microelectronics Reliability,,db/journals/mr/mr56.html#KljucarGWCBT16,https://doi.org/10.1016/j.microrel.2015.11.012 +M. A. Matin,Microscale temperature sensing using novel reliable silicon vertical microprobe array: Computation and experiment.,2015,55,Microelectronics Reliability,12,db/journals/mr/mr55.html#MatinIKSI15,https://doi.org/10.1016/j.microrel.2015.09.003 +Wei He,State of charge estimation for electric vehicle batteries using unscented kalman filtering.,2013,53,Microelectronics Reliability,6,db/journals/mr/mr53.html#HeWCP13,https://doi.org/10.1016/j.microrel.2012.11.010 +Sadegh Abbasian,A new drain current model for short-channel MOSFETs.,2003,43,Microelectronics Reliability,2,db/journals/mr/mr43.html#AbbasianF03,https://doi.org/10.1016/S0026-2714(02)00272-X +Wasma Hanini,Electro thermal modeling of the power diode using Pspice.,2018,86,Microelectronics Reliability,,db/journals/mr/mr86.html#HaniniA18,https://doi.org/10.1016/j.microrel.2018.05.008 +Seong-Hun Na,Experimental study of bump void formation according to process conditions.,2013,53,Microelectronics Reliability,4,db/journals/mr/mr53.html#NaLKPOCS13,https://doi.org/10.1016/j.microrel.2012.12.006 +Jiunn Chen,Redistribution in wafer level chip size packaging technology for high power device applications: Process and design considerations.,2010,50,Microelectronics Reliability,4,db/journals/mr/mr50.html#ChenLHH10,https://doi.org/10.1016/j.microrel.2009.10.004 +Axel Sikora,Technologies and reliability of modern embedded flash cells.,2006,46,Microelectronics Reliability,12,db/journals/mr/mr46.html#SikoraPUP06,https://doi.org/10.1016/j.microrel.2006.01.003 +X. Y. Pang,Effects of Bi segregation on the tensile properties of Cu/Cu3Sn(1 0 0) interface.,2011,51,Microelectronics Reliability,12,db/journals/mr/mr51.html#PangLWS11,https://doi.org/10.1016/j.microrel.2011.04.012 +Lorenzo Codecasa,3-D thermal models calibration by parametric dynamic compact thermal models.,2017,79,Microelectronics Reliability,,db/journals/mr/mr79.html#CodecasadMR17,https://doi.org/10.1016/j.microrel.2017.04.025 +Tatjana R. Nikolic,CDMA bus-based on-chip interconnect infrastructure.,2009,49,Microelectronics Reliability,4,db/journals/mr/mr49.html#NikolicSD09,https://doi.org/10.1016/j.microrel.2009.02.002 +Fu-Kwun Wang,Lifetime predictions of LED-based light bars by accelerated degradation test.,2012,52,Microelectronics Reliability,7,db/journals/mr/mr52.html#WangC12,https://doi.org/10.1016/j.microrel.2012.02.019 +Petteri Palm,Reliability of 80 mum pitch flip chip attachment on flex.,2001,41,Microelectronics Reliability,5,db/journals/mr/mr41.html#PalmMTR01,https://doi.org/10.1016/S0026-2714(01)00009-9 +Masoomeh Karami,A cross-layer aging-aware task scheduling approach for multiprocessor embedded systems.,2018,85,Microelectronics Reliability,,db/journals/mr/mr85.html#KaramiAZ18,https://doi.org/10.1016/j.microrel.2018.04.015 +Young Woo Lee,Characteristics of Sn8Zn3Bi solder joints and crack resistance with various PCB and lead coatings.,2008,48,Microelectronics Reliability,4,db/journals/mr/mr48.html#LeeLZJ08,https://doi.org/10.1016/j.microrel.2007.10.005 +H. B. Qin,Geometry effect on mechanical performance and fracture behavior of micro-scale ball grid array structure Cu/Sn-3.0Ag-0.5Cu/Cu solder joints.,2015,55,Microelectronics Reliability,8,db/journals/mr/mr55.html#QinZZLM15,https://doi.org/10.1016/j.microrel.2015.05.013 +Michael G. Pecht,A prognostics and health management roadmap for information and electronics-rich systems.,2010,50,Microelectronics Reliability,3,db/journals/mr/mr50.html#PechtJ10,https://doi.org/10.1016/j.microrel.2010.01.006 +Sherry Suat Cheng Khoo,Microanalysis and electromigration reliability performance of high current transmission line pulse (TLP) stressed copper interconnects.,2003,43,Microelectronics Reliability,7,db/journals/mr/mr43.html#KhooTV03,https://doi.org/10.1016/S0026-2714(03)00133-1 +Hyuck In Kwon,Effects of electrical stress on mid-gap interface trap density and capture cross sections in n-MOSFETs characterized by pulsed interface probing measurements.,2004,44,Microelectronics Reliability,1,db/journals/mr/mr44.html#KwonKPLPAL04,https://doi.org/10.1016/S0026-2714(03)00161-6 +Han-Kuei Fu,Investigation of dynamic color deviation mechanisms of high power light-emitting diode.,2012,52,Microelectronics Reliability,5,db/journals/mr/mr52.html#FuLCCCS12,https://doi.org/10.1016/j.microrel.2011.04.025 +Youngrae Kim,Study of thinned Si wafer warpage in 3D stacked wafers.,2010,50,Microelectronics Reliability,12,db/journals/mr/mr50.html#KimKK10,https://doi.org/10.1016/j.microrel.2010.05.006 +Tong Yan Tee,Comprehensive board-level solder joint reliability modeling and testing of QFN and PowerQFN packages.,2003,43,Microelectronics Reliability,8,db/journals/mr/mr43.html#TeeNYZ03,https://doi.org/10.1016/S0026-2714(03)00184-7 +Piotr Zachariasz,Mössbauer studies of 6*→*α phase transition in Sn-rich solder alloys.,2018,82,Microelectronics Reliability,,db/journals/mr/mr82.html#ZachariaszSIZHW18,https://doi.org/10.1016/j.microrel.2018.01.016 +Mariem Slimani,Reliability analysis of hybrid spin transfer torque magnetic tunnel junction/CMOS majority voters.,2016,64,Microelectronics Reliability,,db/journals/mr/mr64.html#SlimaniBNWC16,https://doi.org/10.1016/j.microrel.2016.07.074 +Yufei Wu 0005,Activation energy of drain-current degradation in GaN HEMTs under high-power DC stress.,2014,54,Microelectronics Reliability,12,db/journals/mr/mr54.html#WuCA14,https://doi.org/10.1016/j.microrel.2014.09.019 +Yi-Hsin Weng,Design to suppress return-back leakage current of charge pump circuit in low-voltage CMOS process.,2011,51,Microelectronics Reliability,5,db/journals/mr/mr51.html#WengTK11,https://doi.org/10.1016/j.microrel.2010.12.016 +Bing-Liang Yang,Influence of TCE concentration in thermal oxidation on reliability of SiC MOS capacitors under Fowler-Nordheim electron injection.,2006,46,Microelectronics Reliability,12,db/journals/mr/mr46.html#YangKL06,https://doi.org/10.1016/j.microrel.2005.12.007 +Kil-Ho Kim,Electrostatic discharge (ESD) protection of N-type silicon controlled rectifier with P-type MOSFET pass structure for high voltage operating I/O application.,2013,53,Microelectronics Reliability,2,db/journals/mr/mr53.html#KimS13,https://doi.org/10.1016/j.microrel.2012.04.014 +D. Nirmal,Subthreshold performance of gate engineered FinFET devices and circuit with high-k dielectrics.,2013,53,Microelectronics Reliability,3,db/journals/mr/mr53.html#NirmalVTJM13,https://doi.org/10.1016/j.microrel.2012.09.008 +Cen Xiong,Hot carrier effect on a single SiGe HBT's EMI response.,2015,55,Microelectronics Reliability,12,db/journals/mr/mr55.html#XiongLLTZH15,https://doi.org/10.1016/j.microrel.2015.09.002 +Jin He,Application of forward gated-diode R-G current method in extracting F-N stress-induced interface traps in SOI NMOSFETs.,2002,42,Microelectronics Reliability,1,db/journals/mr/mr42.html#HeZHW02,https://doi.org/10.1016/S0026-2714(01)00122-6 +Kristian Bonderup Pedersen,Degradation mapping in high power IGBT modules using four-point probing.,2015,55,Microelectronics Reliability,8,db/journals/mr/mr55.html#PedersenOGPP15,https://doi.org/10.1016/j.microrel.2015.05.011 +P. F. Fuchs,PCB drop test lifetime assessment based on simulations and cyclic bend tests.,2013,53,Microelectronics Reliability,5,db/journals/mr/mr53.html#FuchsPM13,https://doi.org/10.1016/j.microrel.2013.01.001 +You Li,Investigation of diode geometry and metal line pattern for robust ESD protection applications.,2008,48,Microelectronics Reliability,10,db/journals/mr/mr48.html#LiLV08,https://doi.org/10.1016/j.microrel.2008.04.019 +Shuji Nishimoto,Novel silver die-attach technology on silver pre-sintered DBA substrates for high temperature applications.,2018,87,Microelectronics Reliability,,db/journals/mr/mr87.html#NishimotoMONM18,https://doi.org/10.1016/j.microrel.2018.06.010 +Shao-Chang Huang,Improving ESD protection of 5V NMOSFET large array device in 0.4λ6*m BCD process.,2018,84,Microelectronics Reliability,,db/journals/mr/mr84.html#HuangCYC18,https://doi.org/10.1016/j.microrel.2018.03.005 +Gregory Freeman,Reliability and performance scaling of very high speed SiGe HBTs.,2004,44,Microelectronics Reliability,3,db/journals/mr/mr44.html#FreemanRYG04,https://doi.org/10.1016/j.microrel.2003.11.003 +Lassaad Ben Fekih,Verification of empirical warp-based design criteria of space electronic boards.,2015,55,Microelectronics Reliability,12,db/journals/mr/mr55.html#FekihKV15,https://doi.org/10.1016/j.microrel.2015.09.031 +Roland Sorge,Implant dose monitoring by MOS C-V measurement.,2003,43,Microelectronics Reliability,1,db/journals/mr/mr43.html#Sorge03,https://doi.org/10.1016/S0026-2714(02)00266-4 +Cen Tang,Study of the leakage current suppression for hybrid-Schottky/ohmic drain AlGaN/GaN HEMT.,2015,55,Microelectronics Reliability,2,db/journals/mr/mr55.html#TangXS15,https://doi.org/10.1016/j.microrel.2014.10.018 +Luka Kljucar,Impact of via density and passivation thickness on the mechanical integrity of advanced Back-End-Of-Line interconnects.,2017,79,Microelectronics Reliability,,db/journals/mr/mr79.html#KljucarGCWMMNVB17,https://doi.org/10.1016/j.microrel.2017.07.017 +P. C. Adell,Single event transient effects in a voltage reference.,2005,45,Microelectronics Reliability,2,db/journals/mr/mr45.html#AdellSCHZBM05,https://doi.org/10.1016/j.microrel.2004.05.029 +Yuling Niu,A comprehensive solution for electronic packages' reliability assessment with digital image correlation (DIC) method.,2018,87,Microelectronics Reliability,,db/journals/mr/mr87.html#NiuWSWLP18,https://doi.org/10.1016/j.microrel.2018.06.006 +Y. H. Tian,Reliability and failure analysis of fine copper wire bonds encapsulated with commercial epoxy molding compound.,2011,51,Microelectronics Reliability,1,db/journals/mr/mr51.html#TianHWOYZ11,https://doi.org/10.1016/j.microrel.2010.06.004 +Xingsheng Liu,Stacked solder bumping technology for improved solder joint reliability.,2001,41,Microelectronics Reliability,12,db/journals/mr/mr41.html#LiuXLD01,https://doi.org/10.1016/S0026-2714(01)00117-2 +N. Lakhdar,New optimized Dual-Material (DM) gate design to improve the submicron GaN-MESFETs reliability in subthreshold regime.,2012,52,Microelectronics Reliability,6,db/journals/mr/mr52.html#LakhdarD12,https://doi.org/10.1016/j.microrel.2011.11.014 +J. D. Wu,Fracture strength characterization and failure analysis of silicon dies.,2003,43,Microelectronics Reliability,2,db/journals/mr/mr43.html#WuHL03,https://doi.org/10.1016/S0026-2714(02)00314-1 +Saurabh Kothawade,Analysis of intermittent timing fault vulnerability.,2012,52,Microelectronics Reliability,7,db/journals/mr/mr52.html#KothawadeCRH12,https://doi.org/10.1016/j.microrel.2012.03.003 +Hsien-Chin Chiu,A gold-free fully copper metalized AlGaN/GaN power HEMTs on Si substrate.,2012,52,Microelectronics Reliability,11,db/journals/mr/mr52.html#ChiuLKLCCCG12,https://doi.org/10.1016/j.microrel.2012.05.010 +Jacques Tardy,Stability of pentacene transistors under concomitant influence of water vapor and bias stress.,2013,53,Microelectronics Reliability,2,db/journals/mr/mr53.html#TardyE13,https://doi.org/10.1016/j.microrel.2012.08.007 +Yi-Wei Tseng,Effect of annealing on the microstructure and bonding interface properties of Ag-2Pd alloy wire.,2015,55,Microelectronics Reliability,8,db/journals/mr/mr55.html#TsengHLCH15,https://doi.org/10.1016/j.microrel.2015.05.012 +Min Yang,Mechanical and environmental durability of roll-to-roll printed silver nanoparticle film using a rapid laser annealing process for flexible electronics.,2014,54,Microelectronics Reliability,12,db/journals/mr/mr54.html#YangCKLJYKC14,https://doi.org/10.1016/j.microrel.2014.07.004 +Huixiang Huang,Hardening silicon-on-insulator nMOSFETs by multiple-step Si+ implantation.,2016,57,Microelectronics Reliability,,db/journals/mr/mr57.html#HuangHZWTBZ16,https://doi.org/10.1016/j.microrel.2015.12.015 +Stefan Oberhoff,Application of high frequency scanning acoustic microscopy for the failure analysis and reliability assessment of MEMS sensors.,2016,64,Microelectronics Reliability,,db/journals/mr/mr64.html#OberhoffGTZG16,https://doi.org/10.1016/j.microrel.2016.07.108 +Kou-Chen Liu,The resistive switching characteristics of a Ti/Gd2O3/Pt RRAM device.,2010,50,Microelectronics Reliability,5,db/journals/mr/mr50.html#LiuTCCKC10,https://doi.org/10.1016/j.microrel.2010.02.006 +Syed Askari,An on-chip sensor to measure and compensate static NBTI-induced degradation in analog circuits.,2013,53,Microelectronics Reliability,2,db/journals/mr/mr53.html#AskariN13,https://doi.org/10.1016/j.microrel.2012.08.014 +William J. Roesch,Volume impacts on GaAs reliability improvement.,2001,41,Microelectronics Reliability,8,db/journals/mr/mr41.html#Roesch01,https://doi.org/10.1016/S0026-2714(01)00084-1 +Leslie Marchut,Process reliability screening in situ.,2014,54,Microelectronics Reliability,2,db/journals/mr/mr54.html#MarchutMS14,https://doi.org/10.1016/j.microrel.2013.09.011 +Baozhen Li,Electromigration challenges for advanced on-chip Cu interconnects.,2014,54,Microelectronics Reliability,4,db/journals/mr/mr54.html#LiCBY14,https://doi.org/10.1016/j.microrel.2014.01.005 +T. Y. Lin,Surface topographical characterization of silver-plated film on the wedge bondability of leaded IC packages.,2003,43,Microelectronics Reliability,5,db/journals/mr/mr43.html#LinDLCYPCTT03,https://doi.org/10.1016/S0026-2714(03)00037-4 +Marco Rigamonti,Identification of the degradation state for condition-based maintenance of insulated gate bipolar transistors: A self-organizing map approach.,2016,60,Microelectronics Reliability,,db/journals/mr/mr60.html#RigamontiBZAAG16,https://doi.org/10.1016/j.microrel.2016.02.015 +Jiann-Shiun Yuan,NBTI reliability on high-k metal-gate SiGe transistor and circuit performances.,2011,51,Microelectronics Reliability,5,db/journals/mr/mr51.html#YuanYCH11,https://doi.org/10.1016/j.microrel.2010.12.015 +Chris J. Bleakley,Low-complexity Concurrent Error Detection for convolution with Fast Fourier Transforms.,2011,51,Microelectronics Reliability,6,db/journals/mr/mr51.html#BleakleyRM11,https://doi.org/10.1016/j.microrel.2011.02.010 +Sébastien Haendler,Improved analysis of low frequency noise in dynamic threshold MOS/SOI transistors.,2001,41,Microelectronics Reliability,6,db/journals/mr/mr41.html#HaendlerJGB01,https://doi.org/10.1016/S0026-2714(01)00021-X +V. S. Balderrama,Correlation between P3HT inter-chain structure and Jsc of P3HT: PC[70]BM blends for solar cells.,2013,53,Microelectronics Reliability,4,db/journals/mr/mr53.html#BalderramaEVFPFPM13,https://doi.org/10.1016/j.microrel.2012.11.006 +Guido Notermans,ESD protection for thin gate oxides in 65 nm.,2010,50,Microelectronics Reliability,1,db/journals/mr/mr50.html#NotermansSMJSZM10,https://doi.org/10.1016/j.microrel.2009.09.010 +Octavio A. Leon,Staggered heat sinks with aerodynamic cooling fins.,2004,44,Microelectronics Reliability,7,db/journals/mr/mr44.html#LeonMDV04,https://doi.org/10.1016/j.microrel.2004.03.003 +Simon Gousseau,Electromigration-induced failure in operando characterization of 3D interconnects: microstructure influence.,2015,55,Microelectronics Reliability,8,db/journals/mr/mr55.html#GousseauMBFMIBZ15,https://doi.org/10.1016/j.microrel.2015.05.019 +Georges Charitat,In memory of Pierre Rossel.,2001,41,Microelectronics Reliability,7,db/journals/mr/mr41.html#Charitat01,https://doi.org/10.1016/S0026-2714(01)00114-7 +Hyung-Giun Kim,Effects of alloying elements on microstructure and thermal aging properties of Au bonding wire.,2011,51,Microelectronics Reliability,12,db/journals/mr/mr51.html#KimLJKL11,https://doi.org/10.1016/j.microrel.2011.04.005 +Nian Yang,A study of the effects of tunneling currents and reliability of sub-2 nm gate oxides on scaled n-MOSFETs.,2001,41,Microelectronics Reliability,1,db/journals/mr/mr41.html#YangW01,https://doi.org/10.1016/S0026-2714(00)00099-8 +Harry A. Schafft,Early reliability assessment by using deep censoring.,2003,43,Microelectronics Reliability,1,db/journals/mr/mr43.html#SchafftHGS03,https://doi.org/10.1016/S0026-2714(02)00241-X +Gang Chen,A study on MIS Schottky diode based hydrogen sensor using La2O3 as gate insulator.,2012,52,Microelectronics Reliability,8,db/journals/mr/mr52.html#ChenYL12a,https://doi.org/10.1016/j.microrel.2012.03.022 +Shih-Hung Lin,Study of radiation hardness of HfO2-based resistive switching memory at nanoscale by conductive atomic force microscopy.,2015,55,Microelectronics Reliability,11,db/journals/mr/mr55.html#LinWHL15,https://doi.org/10.1016/j.microrel.2015.03.009 +Peter Meszmer,Stress imaging in structural challenging MEMS with high sensitivity using micro-Raman spectroscopy.,2017,79,Microelectronics Reliability,,db/journals/mr/mr79.html#MeszmerRSZW17,https://doi.org/10.1016/j.microrel.2017.10.010 +Marta Bagatin,Soft errors in floating gate memory cells: A review.,2015,55,Microelectronics Reliability,1,db/journals/mr/mr55.html#BagatinG15,https://doi.org/10.1016/j.microrel.2014.10.016 +Edwin Lillie,Assessing the value of a lead-free solder control plan using cost-based FMEA.,2015,55,Microelectronics Reliability,6,db/journals/mr/mr55.html#LillieSH15,https://doi.org/10.1016/j.microrel.2015.02.022 +N. Shiwakoti,The role of electronic energy loss in SHI irradiated Ni/oxide/n-GaP Schottky diode.,2017,69,Microelectronics Reliability,,db/journals/mr/mr69.html#ShiwakotiBAA17,https://doi.org/10.1016/j.microrel.2016.12.005 +Xiuyang Shan,Experimental and modeling study on viscosity of encapsulant for electronic packaging.,2018,80,Microelectronics Reliability,,db/journals/mr/mr80.html#ShanC18,https://doi.org/10.1016/j.microrel.2017.11.011 +Seyyed Javad Seyyed Mahdavi,Evolutionary derivation of optimal test sets for neural network based analog and mixed signal circuits fault diagnosis approach.,2009,49,Microelectronics Reliability,2,db/journals/mr/mr49.html#MahdaviM09,https://doi.org/10.1016/j.microrel.2008.12.002 +Ulrike Ganesh,Laser Voltage Probing (LVP) - Its value and the race against scaling.,2016,64,Microelectronics Reliability,,db/journals/mr/mr64.html#Ganesh16,https://doi.org/10.1016/j.microrel.2016.07.054 +Yi-Mu Lee,Breakdown and reliability of p-MOS devices with stacked RPECVD oxide/nitride gate dielectric under constant voltage stress.,2004,44,Microelectronics Reliability,2,db/journals/mr/mr44.html#LeeWL04,https://doi.org/10.1016/j.microrel.2003.07.002 +A. Alexeev,Multiple heat path dynamic thermal compact modeling for silicone encapsulated LEDs.,2018,87,Microelectronics Reliability,,db/journals/mr/mr87.html#AlexeevMO18,https://doi.org/10.1016/j.microrel.2018.05.014 +Xiaoli Ji,The promising multi-bit/level programming operations for nano-scaled SONOS memory.,2014,54,Microelectronics Reliability,1,db/journals/mr/mr54.html#JiWXLCMY14,https://doi.org/10.1016/j.microrel.2013.07.133 +Verena Hein,Reliability evaluation of tungsten donut-via as an element of the highly robust metallization.,2016,64,Microelectronics Reliability,,db/journals/mr/mr64.html#HeinESWB16,https://doi.org/10.1016/j.microrel.2016.07.136 +Che-Kai Lin,Investigation on the thermal behavior of 0.15 and#956*m gate-length In0.4Al0.6As/In0.4Ga0.6As MHEMT.,2012,52,Microelectronics Reliability,6,db/journals/mr/mr52.html#LinCLKC12,https://doi.org/10.1016/j.microrel.2011.12.032 +Fei Ma,Substrate-engineered GGNMOS for low trigger voltage ESD in 65 nm CMOS process.,2011,51,Microelectronics Reliability,12,db/journals/mr/mr51.html#MaHSDMZWZ11,https://doi.org/10.1016/j.microrel.2011.07.028 +YanLing Wang,Analytical parameter extraction for NBTI reaction diffusion and trapping/detrapping models.,2016,66,Microelectronics Reliability,,db/journals/mr/mr66.html#WangLQZSGHCZ16,https://doi.org/10.1016/j.microrel.2016.10.005 +ZhenYu Wu,Temperature-dependent stress-induced voiding in dual-damascene Cu interconnects.,2008,48,Microelectronics Reliability,4,db/journals/mr/mr48.html#WuYCLWLL08,https://doi.org/10.1016/j.microrel.2007.12.001 +Donagh O'Mahony,Thermal stability of SiC Schottky diode anode and cathode metalisations after 1000 h at 350 and#176*C.,2011,51,Microelectronics Reliability,5,db/journals/mr/mr51.html#OMahonyDCLCMWC11,https://doi.org/10.1016/j.microrel.2010.12.008 +J. B. Libot,Microstructural evolutions of Sn-3.0Ag-0.5Cu solder joints during thermal cycling.,2018,83,Microelectronics Reliability,,db/journals/mr/mr83.html#LibotADAMD18,https://doi.org/10.1016/j.microrel.2018.02.009 +A. Kumta,Design of field-plate terminated 4H-SiC Schottky diodes using high-k dielectrics.,2006,46,Microelectronics Reliability,8,db/journals/mr/mr46.html#KumtaRTA06,https://doi.org/10.1016/j.microrel.2005.11.009 +Wei Yan,Recovery behaviors in n-channel LTPS-TFTs under DC stress.,2018,81,Microelectronics Reliability,,db/journals/mr/mr81.html#YanYGSXX18,https://doi.org/10.1016/j.microrel.2017.12.026 +Mahdiar Hosein Ghadiry,An analytical approach to calculate effective channel length in graphene nanoribbon field effect transistors.,2013,53,Microelectronics Reliability,4,db/journals/mr/mr53.html#GhadirySBMKS13,https://doi.org/10.1016/j.microrel.2012.12.002 +R. H. Poelma,Effects of single vacancy defect position on the stability of carbon nanotubes.,2012,52,Microelectronics Reliability,7,db/journals/mr/mr52.html#PoelmaSKZ12,https://doi.org/10.1016/j.microrel.2012.03.015 +K. Jonnalagadda,Reliability of via-in-pad structures in mechanical cycling fatigue.,2002,42,Microelectronics Reliability,2,db/journals/mr/mr42.html#Jonnalagadda02,https://doi.org/10.1016/S0026-2714(01)00136-6 +Saqib A. Khan,An alternative approach to measure alpha-particle-induced SEU cross-section for flip-chip packaged SRAM devices: High energy alpha backside irradiation.,2017,69,Microelectronics Reliability,,db/journals/mr/mr69.html#KhanLBBL17,https://doi.org/10.1016/j.microrel.2016.12.004 +Vesselin K. Vassilev,ESD-RF co-design methodology for the state of the art RF-CMOS blocks.,2005,45,Microelectronics Reliability,2,db/journals/mr/mr45.html#VassilevTSWLGNMS05,https://doi.org/10.1016/j.microrel.2004.05.013 +Thomas Noulis,Comparison between BSIM4.X and HSPICE flicker noise models in NMOS and PMOS transistors in all operating regions.,2007,47,Microelectronics Reliability,8,db/journals/mr/mr47.html#NoulisSS07,https://doi.org/10.1016/j.microrel.2006.09.021 +F. Marcq,Carbon nanotubes and silver flakes filled epoxy resin for new hybrid conductive adhesives.,2011,51,Microelectronics Reliability,7,db/journals/mr/mr51.html#MarcqDMPLFCJ11,https://doi.org/10.1016/j.microrel.2011.03.020 +Seyed Amir Paknejad,Review of silver nanoparticle based die attach materials for high power/temperature applications.,2017,70,Microelectronics Reliability,,db/journals/mr/mr70.html#PaknejadM17,https://doi.org/10.1016/j.microrel.2017.01.010 +Lukasz Dowhan,An approach of numerical multi-objective optimization in stacked packaging.,2008,48,Microelectronics Reliability,6,db/journals/mr/mr48.html#DowhanWD08,https://doi.org/10.1016/j.microrel.2008.04.010 +Zhihui Yu,Comparative study of reliability degradation behaviors of LDMOS and LDMOS-SCR ESD protection devices.,2016,61,Microelectronics Reliability,,db/journals/mr/mr61.html#YuJDWZW16,https://doi.org/10.1016/j.microrel.2015.12.024 +Ming Yao,Self-consistent design issues for high frequency Cu interconnect reliability incorporating skin effect.,2011,51,Microelectronics Reliability,5,db/journals/mr/mr51.html#YaoZZM11,https://doi.org/10.1016/j.microrel.2010.12.011 +Somayeh Fotoohi,Transfer matrix model of multilayer graphene nanoribbon interconnects.,2017,79,Microelectronics Reliability,,db/journals/mr/mr79.html#FotoohiH17,https://doi.org/10.1016/j.microrel.2017.05.041 +Jenn-Ming Song,Influence of trace alloying elements on the ball impact test reliability of SnAgCu solder joints.,2012,52,Microelectronics Reliability,1,db/journals/mr/mr52.html#SongLLCL12,https://doi.org/10.1016/j.microrel.2011.09.003 +E. Suhir,Thermal stress in through-silicon-vias: Theory-of-elasticity approach.,2014,54,Microelectronics Reliability,5,db/journals/mr/mr54.html#Suhir14,https://doi.org/10.1016/j.microrel.2014.01.004 +Kyoungtae Eun,Electromechanical properties of printed copper ink film using a white flash light annealing process for flexible electronics.,2015,55,Microelectronics Reliability,5,db/journals/mr/mr55.html#EunCYSC15,https://doi.org/10.1016/j.microrel.2014.12.015 +Mario Gonzalez,Design and implementation of flexible and stretchable systems.,2011,51,Microelectronics Reliability,6,db/journals/mr/mr51.html#GonzalezVCHIBVST11,https://doi.org/10.1016/j.microrel.2011.03.012 +Artur Wymyslowski,Application of nanoindentation technique for investigation of elasto-plastic properties of the selected thin film materials.,2013,53,Microelectronics Reliability,3,db/journals/mr/mr53.html#WymyslowskiD13,https://doi.org/10.1016/j.microrel.2012.10.009 +Lei Jia,Particle on Bump (POB) technique for ultra-fine pitch chip on glass (COG) applications by conductive particles and adhesives.,2014,54,Microelectronics Reliability,4,db/journals/mr/mr54.html#JiaSXWD14,https://doi.org/10.1016/j.microrel.2013.11.015 +Anastasios A. Katsetos,Negative bias temperature instability (NBTI) recovery with bake.,2008,48,Microelectronics Reliability,10,db/journals/mr/mr48.html#Katsetos08,https://doi.org/10.1016/j.microrel.2008.04.012 +Ye Tian,Experimental evaluation of SnAgCu solder joint reliability in 100-λ6*m pitch flip-chip assemblies.,2014,54,Microelectronics Reliability,5,db/journals/mr/mr54.html#TianLCWS14,https://doi.org/10.1016/j.microrel.2014.01.011 +Florence Azaïs,A new multi-finger SCR-based structure for efficient on-chip ESD protection.,2005,45,Microelectronics Reliability,2,db/journals/mr/mr45.html#AzaisCDSN05,https://doi.org/10.1016/j.microrel.2004.05.011 +W. Hourani,Influence of the surrounding ambient on the reliability of the electrical characterization of thin oxide layers using an atomic force microscope.,2011,51,Microelectronics Reliability,12,db/journals/mr/mr51.html#HouraniGMADA11,https://doi.org/10.1016/j.microrel.2011.07.035 +Yi Shan,New substrate-triggered ESD protection structures in a 0.18-µ*m CMOS process without extra mask.,2009,49,Microelectronics Reliability,1,db/journals/mr/mr49.html#ShanHH09,https://doi.org/10.1016/j.microrel.2008.10.003 +Ralf Siemieniec,Stability and performance analysis of a SiC-based cascode switch and an alternative solution.,2012,52,Microelectronics Reliability,3,db/journals/mr/mr52.html#SiemieniecND12,https://doi.org/10.1016/j.microrel.2011.12.006 +Qingchuan He,Improved step stress accelerated life testing method for electronic product.,2012,52,Microelectronics Reliability,11,db/journals/mr/mr52.html#HeCPQ12,https://doi.org/10.1016/j.microrel.2012.04.003 +Hyun Jun Jang,Impact of work function of the silicon bottom-gates on electrical instability in InGaZnO thin film transistors.,2016,64,Microelectronics Reliability,,db/journals/mr/mr64.html#JangYP16,https://doi.org/10.1016/j.microrel.2016.07.010 +Junchao Liu,Defect detection of flip-chip solder joints using modal analysis.,2012,52,Microelectronics Reliability,12,db/journals/mr/mr52.html#LiuSWTL12,https://doi.org/10.1016/j.microrel.2012.06.135 +S. Nakajima,Sample preparation techniques for physical analysis of VLSIs.,2004,44,Microelectronics Reliability,3,db/journals/mr/mr44.html#NakajimaNUS04,https://doi.org/10.1016/j.microrel.2003.08.007 +Hong Wu,Devices' optimization against hot-carrier degradation in high voltage pLEDMOS transistor.,2010,50,Microelectronics Reliability,8,db/journals/mr/mr50.html#WuQLSS10,https://doi.org/10.1016/j.microrel.2010.04.009 +Kai F. Dombrowski,Investigation of stress in shallow trench isolation using UV micro-Raman spectroscopy.,2001,41,Microelectronics Reliability,4,db/journals/mr/mr41.html#DombrowskiDWRB01,https://doi.org/10.1016/S0026-2714(00)00260-2 +Nochang Park,Estimation of the degradation rate of multi-crystalline silicon photovoltaic module under thermal cycling stress.,2014,54,Microelectronics Reliability,8,db/journals/mr/mr54.html#ParkJH14,https://doi.org/10.1016/j.microrel.2014.03.021 +Nabi Nabiollahi,Microstructure simulation of grain growth in Cu through silicon vias using phase-field modeling.,2015,55,Microelectronics Reliability,5,db/journals/mr/mr55.html#NabiollahiMGMWC15,https://doi.org/10.1016/j.microrel.2015.02.009 +C. W. Tan,Behaviour of anisotropic conductive joints under mechanical loading.,2003,43,Microelectronics Reliability,3,db/journals/mr/mr43.html#TanCY03a,https://doi.org/10.1016/S0026-2714(02)00318-9 +James W. Miller,Layout and bias options for maximizing Vt1 in cascoded NMOS output buffers.,2001,41,Microelectronics Reliability,11,db/journals/mr/mr41.html#MillerKW01,https://doi.org/10.1016/S0026-2714(01)00031-2 +Wladyslaw Dabrowski,Design for good matching in multichannel low-noise amplifier for recording neuronal signals in modern neuroscience experiments.,2004,44,Microelectronics Reliability,2,db/journals/mr/mr44.html#DabrowskiGF04,https://doi.org/10.1016/S0026-2714(03)00217-8 +Ting-Hong Su,Temperature dependence of current-voltage characteristics of MoS2/Si devices prepared by the chemical vapor deposition method.,2017,78,Microelectronics Reliability,,db/journals/mr/mr78.html#SuCL17,https://doi.org/10.1016/j.microrel.2017.10.002 +Liang Zhang,Anand model and FEM analysis of SnAgCuZn lead-free solder joints in wafer level chip scale packaging devices.,2014,54,Microelectronics Reliability,1,db/journals/mr/mr54.html#ZhangHGH14,https://doi.org/10.1016/j.microrel.2013.07.100 +Rupendra Kumar Sharma,Dynamic performance of graded channel DG FD SOI n-MOSFETs for minimizing the gate misalignment effect.,2009,49,Microelectronics Reliability,7,db/journals/mr/mr49.html#SharmaGGG09,https://doi.org/10.1016/j.microrel.2009.03.023 +Jürgen Wilde,Design optimization of an eddy current sensor using the finite-elements method.,2003,43,Microelectronics Reliability,3,db/journals/mr/mr43.html#WildeL03,https://doi.org/10.1016/S0026-2714(02)00341-4 +Jin-Cherng Shyu,Cooling performance and characteristics of metal piezoelectric fans in a heat sink-equipped handheld projector.,2018,84,Microelectronics Reliability,,db/journals/mr/mr84.html#ShyuJ18,https://doi.org/10.1016/j.microrel.2018.03.012 +Lei Li,First principles calculations study of crystallographic orientation effects on SiC/Ti and SiC/Cr interfaces.,2018,83,Microelectronics Reliability,,db/journals/mr/mr83.html#LiJYGGPV18,https://doi.org/10.1016/j.microrel.2018.02.019 +Hyunwoo Kim,Acoustic noise and vibration analysis of solid state drive induced by multi-layer ceramic capacitors.,2018,83,Microelectronics Reliability,,db/journals/mr/mr83.html#KimKPP18,https://doi.org/10.1016/j.microrel.2018.01.021 +C. Y. Khor,Recent fluid-structure interaction modeling challenges in IC encapsulation - A review.,2014,54,Microelectronics Reliability,8,db/journals/mr/mr54.html#KhorALA14,https://doi.org/10.1016/j.microrel.2014.03.012 +Yi-Shao Lai,Effects of different drop test conditions on board-level reliability of chip-scale packages.,2008,48,Microelectronics Reliability,2,db/journals/mr/mr48.html#LaiYY08,https://doi.org/10.1016/j.microrel.2007.03.005 +S. F. Sufian,Heat transfer enhancement of LEDs with a combination of piezoelectric fans and a heat sink.,2017,68,Microelectronics Reliability,,db/journals/mr/mr68.html#SufianA17,https://doi.org/10.1016/j.microrel.2016.11.011 +Huang-Kuang Kung,A theoretical study to improve wire sag of ultra-long wire bond loops for 3D/MCM packaging.,2017,78,Microelectronics Reliability,,db/journals/mr/mr78.html#KungH17,https://doi.org/10.1016/j.microrel.2017.09.013 +Dayong Qiao,An exploration for the degradation behavior of 2-D electrostatic microscanners by accelerated lifetime test.,2018,80,Microelectronics Reliability,,db/journals/mr/mr80.html#QiaoZZXSY18,https://doi.org/10.1016/j.microrel.2017.07.062 +Yi Tao 0003,Selective bonding and encapsulation for wafer-level vacuum packaging of MEMS and related micro systems.,2004,44,Microelectronics Reliability,2,db/journals/mr/mr44.html#TaoMB04,https://doi.org/10.1016/S0026-2714(03)00192-6 +Bogdan Tudor,An accurate MOSFET aging model for 28 nm integrated circuit simulation.,2012,52,Microelectronics Reliability,8,db/journals/mr/mr52.html#TudorWCTLL12,https://doi.org/10.1016/j.microrel.2011.12.008 +I. Hernandez,Characterization of MIS structures and thin film transistors using RF-sputtered HfO2/HIZO layers.,2017,75,Microelectronics Reliability,,db/journals/mr/mr75.html#HernandezPGTME17,https://doi.org/10.1016/j.microrel.2017.06.003 +E. H. Wong,Interface and interconnection stresses in electronic assemblies - A critical review of analytical solutions.,2017,79,Microelectronics Reliability,,db/journals/mr/mr79.html#WongL17,https://doi.org/10.1016/j.microrel.2017.03.010 +W. S. Lau,Observation of halo implant from the drain side reaching the source side and vice versa in extremely short p-channel transistors.,2010,50,Microelectronics Reliability,3,db/journals/mr/mr50.html#LauYLTLLSC10,https://doi.org/10.1016/j.microrel.2009.12.006 +Zhouying Zhao,Annealing and thickness related performance and degradation of polymer solar cells.,2013,53,Microelectronics Reliability,1,db/journals/mr/mr53.html#ZhaoREH13,https://doi.org/10.1016/j.microrel.2012.08.002 +Petr Vasina,Failure modes of tantalum capacitors made by different technologies.,2002,42,Microelectronics Reliability,6,db/journals/mr/mr42.html#VasinaZSP02,https://doi.org/10.1016/S0026-2714(02)00034-3 +Michael J. Dion,Improved understanding of metal ion reservoirs within barrier-metal systems.,2001,41,Microelectronics Reliability,6,db/journals/mr/mr41.html#Dion01,https://doi.org/10.1016/S0026-2714(01)00036-1 +A. V. Gradoboev,The fast neutron irradiation influence on the AlGaAs IR-LEDs reliability.,2016,65,Microelectronics Reliability,,db/journals/mr/mr65.html#GradoboevOAS16,https://doi.org/10.1016/j.microrel.2016.07.143 +Hu Guojun,Interface delamination analysis of TQFP package during solder reflow.,2010,50,Microelectronics Reliability,7,db/journals/mr/mr50.html#GuojunRLB10,https://doi.org/10.1016/j.microrel.2010.03.012 +Hajime Sasaki,Ultra-high voltage electron microscopy investigation of irradiation induced displacement defects on AlGaN/GaN HEMTs.,2018,81,Microelectronics Reliability,,db/journals/mr/mr81.html#SasakiHKOOOTY18,https://doi.org/10.1016/j.microrel.2017.10.005 +Nadia Rezzak,The sensitivity of radiation-induced leakage to STI topology and sidewall doping.,2011,51,Microelectronics Reliability,5,db/journals/mr/mr51.html#RezzakASKMSB11,https://doi.org/10.1016/j.microrel.2010.12.013 +Han Seo Cho,Highly reliable processes for embedding discrete passive components into organic substrates.,2008,48,Microelectronics Reliability,5,db/journals/mr/mr48.html#ChoCJSKY08,https://doi.org/10.1016/j.microrel.2007.12.006 +Pavel Poliakov,Cross-cell interference variability aware model of fully planar NAND Flash memory including line edge roughness.,2011,51,Microelectronics Reliability,5,db/journals/mr/mr51.html#PoliakovBCHD11,https://doi.org/10.1016/j.microrel.2010.12.010 +Kin P. Cheung,Impact of ESD protection device trigger transient on the reliability of ultra-thin gate oxide.,2001,41,Microelectronics Reliability,5,db/journals/mr/mr41.html#Cheung01a,https://doi.org/10.1016/S0026-2714(01)00011-7 +S. Duman,Determination of contact parameters of Ni/n-GaP Schottky contacts.,2012,52,Microelectronics Reliability,6,db/journals/mr/mr52.html#DumanEYT12,https://doi.org/10.1016/j.microrel.2011.12.018 +Simon Kennedy,Susceptibility of flash ADCs to electromagnetic interference.,2018,81,Microelectronics Reliability,,db/journals/mr/mr81.html#KennedyYR18,https://doi.org/10.1016/j.microrel.2017.12.040 +Jiseok Kim,Thickness and temperature dependence of the leakage current in hafnium-based Si SOI MOSFETs.,2012,52,Microelectronics Reliability,12,db/journals/mr/mr52.html#KimKNCF12,https://doi.org/10.1016/j.microrel.2012.06.151 +F. Barlow,Low cost flex substrates for miniaturized electronic assemblies.,2002,42,Microelectronics Reliability,7,db/journals/mr/mr42.html#BarlowLE02,https://doi.org/10.1016/S0026-2714(02)00061-6 +T. Koyama,Locally delineating of junctions and defects by local cross-section electron-beam-induced-current technique.,2001,41,Microelectronics Reliability,8,db/journals/mr/mr41.html#KoyamaUSKM01,https://doi.org/10.1016/S0026-2714(01)00110-X +Yumi Kwon,Mechanical and wetting properties of epoxy resins: Amine-containing epoxy-terminated siloxane oligomer with or without reductant.,2011,51,Microelectronics Reliability,4,db/journals/mr/mr51.html#KwonYKK11a,https://doi.org/10.1016/j.microrel.2010.11.001 +Brook Huang-Lin Chao,Recent advances on kinetic analysis of electromigration enhanced intermetallic growth and damage formation in Pb-free solder joints.,2009,49,Microelectronics Reliability,3,db/journals/mr/mr49.html#ChaoZCH09,https://doi.org/10.1016/j.microrel.2009.01.006 +Jeong-Won Yoon,Electrical properties and electrochemical migration characteristics of directly printed Ag patterns with various sintering conditions.,2014,54,Microelectronics Reliability,2,db/journals/mr/mr54.html#YoonNJ14,https://doi.org/10.1016/j.microrel.2013.10.002 +M. N. Levin,X-ray and UV controlled adjustment of MOS VLSI circuits threshold voltages.,2001,41,Microelectronics Reliability,2,db/journals/mr/mr41.html#LevinGKOP01,https://doi.org/10.1016/S0026-2714(00)00096-2 +M. P. Rodriguez,Finite element simulation of thermal fatigue in multilayer structures: thermal and mechanical approach.,2001,41,Microelectronics Reliability,4,db/journals/mr/mr41.html#RodriguezS01,https://doi.org/10.1016/S0026-2714(00)00256-0 +Chisato Hashimoto,Observation of the internal waveforms in high-speed high-density LSIs using an EOS prober.,2001,41,Microelectronics Reliability,8,db/journals/mr/mr41.html#HashimotoTNSN01,https://doi.org/10.1016/S0026-2714(01)00107-X +Te-Kuang Chiang,A new two-dimensional subthreshold behavior model for the short-channel asymmetrical dual-material double-gate (ADMDG) MOSFET's.,2009,49,Microelectronics Reliability,7,db/journals/mr/mr49.html#Chiang09a,https://doi.org/10.1016/j.microrel.2009.05.006 +Haoran Ma,Study of electrochemical migration based transport kinetics of metal ions in Sn-9Zn alloy.,2018,83,Microelectronics Reliability,,db/journals/mr/mr83.html#MaKCQWSRMZ18,https://doi.org/10.1016/j.microrel.2018.02.013 +Zhaohui Chen,Fluid-solid coupling thermo-mechanical analysis of high power LED package during thermal shock testing.,2012,52,Microelectronics Reliability,8,db/journals/mr/mr52.html#ChenZWCL12,https://doi.org/10.1016/j.microrel.2012.03.021 +Tibor Rovensky,Stability of miniaturized non-trimmed thick- and thin-film resistors.,2018,84,Microelectronics Reliability,,db/journals/mr/mr84.html#RovenskyPVL18,https://doi.org/10.1016/j.microrel.2018.03.011 +Jürgen Auersperg,Effects of residual stresses on cracking and delamination risks of an avionics MEMS pressure sensor.,2016,64,Microelectronics Reliability,,db/journals/mr/mr64.html#AuerspergCDVW16,https://doi.org/10.1016/j.microrel.2016.07.084 +Derming Lian,Berkovich nanoindentation on single SiGe epitaxial films.,2016,56,Microelectronics Reliability,,db/journals/mr/mr56.html#LianL16,https://doi.org/10.1016/j.microrel.2015.11.001 +Stéphane Forster,Degradation mechanism of power devices under di/dt thermal shocks: turn-on of a TRIAC in Q3.,2003,43,Microelectronics Reliability,1,db/journals/mr/mr43.html#ForsterLJ03,https://doi.org/10.1016/S0026-2714(02)00261-5 +Shuang Fan,Bias dependence of TID induced single transistor latch for 0.13 and#956*m partially depleted SOI input/output NMOSFETs.,2016,56,Microelectronics Reliability,,db/journals/mr/mr56.html#FanNHZBPSD16,https://doi.org/10.1016/j.microrel.2015.10.024 +Byung-seung Yim,Characteristics of solderable electrically conductive adhesives (ECAs) for electronic packaging.,2012,52,Microelectronics Reliability,6,db/journals/mr/mr52.html#YimKOKSLK12,https://doi.org/10.1016/j.microrel.2011.12.004 +Dietmar Vogel,Fast and trusted intrinsic stress measurement to facilitate improved reliability assessments.,2016,64,Microelectronics Reliability,,db/journals/mr/mr64.html#VogelAGR16,https://doi.org/10.1016/j.microrel.2016.07.115 +J. Wu,Microcontroller susceptibility variations to EFT burst during accelerated aging.,2016,64,Microelectronics Reliability,,db/journals/mr/mr64.html#WuLLZW16,https://doi.org/10.1016/j.microrel.2016.07.099 +Chien-Yi Huang,Reliability assessment of RFID reader through prognostics and health management.,2013,53,Microelectronics Reliability,1,db/journals/mr/mr53.html#Huang13,https://doi.org/10.1016/j.microrel.2012.08.003 +Xiaowu Zhang,Board level solder joint reliability analysis of a fine pitch Cu post type wafer level package (WLP).,2008,48,Microelectronics Reliability,4,db/journals/mr/mr48.html#ZhangKCTP08,https://doi.org/10.1016/j.microrel.2007.05.009 +W. D. Zhuang,Effect of solder creep on the reliability of large area die attachment.,2001,41,Microelectronics Reliability,12,db/journals/mr/mr41.html#ZhuangCCS01,https://doi.org/10.1016/S0026-2714(01)00101-9 +E. Misra,Percolative approach for failure time prediction of thin film interconnects under high current stress.,2005,45,Microelectronics Reliability,2,db/journals/mr/mr45.html#MisraIHKA05,https://doi.org/10.1016/j.microrel.2004.09.009 +Atanu Kundu,Impact of gate metal work-function engineering for enhancement of subthreshold analog/RF performance of underlap dual material gate DG-FET.,2014,54,Microelectronics Reliability,12,db/journals/mr/mr54.html#KunduKDS14,https://doi.org/10.1016/j.microrel.2014.08.009 +Kyeonggon Choi,Joint reliability of various Pb-free solders under harsh vibration conditions for automotive electronics.,2018,86,Microelectronics Reliability,,db/journals/mr/mr86.html#ChoiYAKBK18,https://doi.org/10.1016/j.microrel.2018.05.006 +Janusz M. Smulko,Acoustic emission for detecting deterioration of capacitors under aging.,2011,51,Microelectronics Reliability,3,db/journals/mr/mr51.html#SmulkoJOH11,https://doi.org/10.1016/j.microrel.2010.10.013 +A. Dommann,Advanced X-ray analysis techniques to investigate aging of micromachined silicon actuators for space application.,2003,43,Microelectronics Reliability,7,db/journals/mr/mr43.html#DommannEO03,https://doi.org/10.1016/S0026-2714(03)00121-5 +Pradeep Lall,Feature extraction and damage-precursors for prognostication of lead-free electronics.,2007,47,Microelectronics Reliability,12,db/journals/mr/mr47.html#LallHBISL07,https://doi.org/10.1016/j.microrel.2007.02.022 +Wolfgang Stadler,Test circuits for fast and reliable assessment of CDM robustness of I/O stages.,2005,45,Microelectronics Reliability,2,db/journals/mr/mr45.html#StadlerERZGWWQME05,https://doi.org/10.1016/j.microrel.2004.05.014 +Olivér Krammer,Automatic characterisation method for statistical evaluation of tin whisker growth.,2017,73,Microelectronics Reliability,,db/journals/mr/mr73.html#KrammerIBD17,https://doi.org/10.1016/j.microrel.2017.04.007 +Chao Xia,A novel partial-SOI LDMOSFET (>*800 V) with n-type floating buried layer in substrate.,2014,54,Microelectronics Reliability,3,db/journals/mr/mr54.html#XiaCWCJZYS14,https://doi.org/10.1016/j.microrel.2013.10.021 +Zhen-Ying Hsieh,Trend transformation of drain-current degradation under drain-avalanche hot-carrier stress for CLC n-TFTs.,2009,49,Microelectronics Reliability,8,db/journals/mr/mr49.html#HsiehWCSLCH09,https://doi.org/10.1016/j.microrel.2009.05.011 +Jean-Baptiste Sauveplane,On the accurate determination of the thermomechanical properties of micro-scale material: Application to AlSi1% chip metallization of a power semiconductor device.,2009,49,Microelectronics Reliability,5,db/journals/mr/mr49.html#SauveplaneSD09,https://doi.org/10.1016/j.microrel.2009.02.012 +Shatil Haque,Effects of device passivation materials on solderable metallization of IGBTs.,2001,41,Microelectronics Reliability,5,db/journals/mr/mr41.html#HaqueL01,https://doi.org/10.1016/S0026-2714(01)00008-7 +Jad S. Rasul,Chip on paper technology utilizing anisotropically conductive adhesive for smart label applications.,2004,44,Microelectronics Reliability,1,db/journals/mr/mr44.html#Rasul04,https://doi.org/10.1016/S0026-2714(03)00240-3 +Kiyoshi Mizuuchi,Bimodal and monomodal diamond particle effect on the thermal properties of diamond-particle-dispersed Al-matrix composite fabricated by SPS.,2014,54,Microelectronics Reliability,11,db/journals/mr/mr54.html#MizuuchiIASTTTK14,https://doi.org/10.1016/j.microrel.2014.04.006 +I. Cortés,Analysis and optimization of lateral thin-film Silicon-on-insulator (SOI) MOSFET transistors.,2012,52,Microelectronics Reliability,3,db/journals/mr/mr52.html#CortesTMHVT12,https://doi.org/10.1016/j.microrel.2011.12.011 +Y. C. Lin,Effect of substrate flexibility on solder joint reliability. Part II: finite element modeling.,2005,45,Microelectronics Reliability,1,db/journals/mr/mr45.html#LinCLL05,https://doi.org/10.1016/j.microrel.2004.06.009 +Chan-Ching Lin,A new erase method for scaled NAND flash memory device.,2017,72,Microelectronics Reliability,,db/journals/mr/mr72.html#LinCHYK17,https://doi.org/10.1016/j.microrel.2017.03.031 +Ming-e Jing,Efficient parametric yield optimization of VLSI circuit by uniform design sampling method.,2005,45,Microelectronics Reliability,1,db/journals/mr/mr45.html#JingHZM05,https://doi.org/10.1016/j.microrel.2004.06.001 +Andrew J. G. Strandjord,Interconnecting to aluminum- and copper-based semiconductors (electroless-nickel/gold for solder bumping and wire bonding).,2002,42,Microelectronics Reliability,2,db/journals/mr/mr42.html#StrandjordPJ02,https://doi.org/10.1016/S0026-2714(01)00236-0 +Paul K. Hurley,Characterisation and passivation of interface defects in (1 0 0)-Si/SiO2/HfO2/TiN gate stacks.,2007,47,Microelectronics Reliability,8,db/journals/mr/mr47.html#HurleyCMHG07,https://doi.org/10.1016/j.microrel.2006.09.030 +Chih-Ting Yeh,PMOS-based power-rail ESD clamp circuit with adjustable holding voltage controlled by ESD detection circuit.,2013,53,Microelectronics Reliability,2,db/journals/mr/mr53.html#YehK13,https://doi.org/10.1016/j.microrel.2012.09.016 +Zhongfa Ma,A percolation study of RTS noise amplitudes in nano-MOSFETs by Monte Carlo simulation.,2010,50,Microelectronics Reliability,2,db/journals/mr/mr50.html#MaZWLZD10,https://doi.org/10.1016/j.microrel.2009.09.017 +Zhou Ming,Experimental study of multilayer SiCN barrier film in 45/40 nm technological node and beyond.,2016,57,Microelectronics Reliability,,db/journals/mr/mr57.html#MingYMSX16,https://doi.org/10.1016/j.microrel.2015.12.001 +Peter A. Sandborn,A maintenance planning and business case development model for the application of prognostics and health management (PHM) to electronic systems.,2007,47,Microelectronics Reliability,12,db/journals/mr/mr47.html#SandbornW07,https://doi.org/10.1016/j.microrel.2007.02.016 +Young-Pil Kim,Thermal characteristics and fabrication of silicon sub-mount based LED package.,2016,56,Microelectronics Reliability,,db/journals/mr/mr56.html#KimKK16,https://doi.org/10.1016/j.microrel.2015.10.010 +Hitoshi Sakurai,Effects of Cu contents in flux on microstructure and joint strength of Sn-3.5Ag soldering with electroless Ni-P/Au surface finish.,2012,52,Microelectronics Reliability,11,db/journals/mr/mr52.html#SakuraiKLKKS12,https://doi.org/10.1016/j.microrel.2012.05.005 +Frank Gao,High reliability in PHEMT MMICs with dual-etch-stop AlAs layers for high-speed RF switch applications.,2003,43,Microelectronics Reliability,6,db/journals/mr/mr43.html#Gao03,https://doi.org/10.1016/S0026-2714(03)00067-2 +Piotr Dziurdzia,Monitoring of power dissipated in microelectronic structures.,2001,41,Microelectronics Reliability,12,db/journals/mr/mr41.html#DziurdziaK01,https://doi.org/10.1016/S0026-2714(01)00123-8 +Chunyan Yin,The effect of reflow process on the contact resistance and reliability of anisotropic conductive film interconnection for flip chip on flex applications.,2003,43,Microelectronics Reliability,4,db/journals/mr/mr43.html#YinACBL03,https://doi.org/10.1016/S0026-2714(02)00348-7 +Tong Yan Tee,Advances in Wafer Level Packaging (WLP).,2010,50,Microelectronics Reliability,4,db/journals/mr/mr50.html#TeeFL10,https://doi.org/10.1016/j.microrel.2010.02.012 +Kow-Ming Chang,Investigation on the abnormal resistive switching induced by ultraviolet light exposure based on HfOx film.,2010,50,Microelectronics Reliability,12,db/journals/mr/mr50.html#ChangTLCK10,https://doi.org/10.1016/j.microrel.2010.05.012 +Daisuke Fukushi,Effect of oxygen vacancy in tungsten oxide on the photocatalytic activity for decomposition of organic materials in the gas phase.,2017,79,Microelectronics Reliability,,db/journals/mr/mr79.html#FukushiSHK17,https://doi.org/10.1016/j.microrel.2017.09.025 +Guoxuan Qin,On the configuration- and frequency-dependent linearity characteristics of SiGe HBTs under different impedance matching conditions.,2013,53,Microelectronics Reliability,3,db/journals/mr/mr53.html#QinWJMM13,https://doi.org/10.1016/j.microrel.2012.09.001 +Wen Lea Pearn,An algorithm for calculating the lower confidence bounds of CPU and CPL with application to low-drop-out linear regulators.,2003,43,Microelectronics Reliability,3,db/journals/mr/mr43.html#PearnS03,https://doi.org/10.1016/S0026-2714(02)00264-0 +Mads Brincker,Mechanisms of metallization degradation in high power diodes.,2016,64,Microelectronics Reliability,,db/journals/mr/mr64.html#BrinckerKPP16,https://doi.org/10.1016/j.microrel.2016.07.033 +Masaki Ohyama,Evaluation of hybrid bonding technology of single-micron pitch with planar structure for 3D interconnection.,2016,59,Microelectronics Reliability,,db/journals/mr/mr59.html#OhyamaNMSNSS16,https://doi.org/10.1016/j.microrel.2015.12.033 +J. Shen,Research advances in nano-composite solders.,2009,49,Microelectronics Reliability,3,db/journals/mr/mr49.html#ShenC09,https://doi.org/10.1016/j.microrel.2008.10.004 +Takuya Kadoguchi,Electromigration behavior in Cu/Ni-P/Sn-Cu based joint system with low current density.,2015,55,Microelectronics Reliability,12,db/journals/mr/mr55.html#KadoguchiGYNS15,https://doi.org/10.1016/j.microrel.2015.10.003 +Rihito Kuroda,Circuit level prediction of device performance degradation due to negative bias temperature stress.,2007,47,Microelectronics Reliability,6,db/journals/mr/mr47.html#KurodaTWMYSO07,https://doi.org/10.1016/j.microrel.2006.06.013 +Charles S. Whitman,Estimating effective dielectric thickness for capacitors with extrinsic defects by a statistical method.,2008,48,Microelectronics Reliability,7,db/journals/mr/mr48.html#Whitman08,https://doi.org/10.1016/j.microrel.2008.02.001 +Daniel Lau,Special Issue on Prognostics and Health Management.,2011,51,Microelectronics Reliability,2,db/journals/mr/mr51.html#LauF11,https://doi.org/10.1016/j.microrel.2010.10.004 +Lech Hasse,Classification of high-voltage varistors into groups of differentiated quality.,2009,49,Microelectronics Reliability,12,db/journals/mr/mr49.html#HasseKS09,https://doi.org/10.1016/j.microrel.2009.06.008 +Qianwen Chen,Reliability of through-silicon-vias (TSVs) with benzocyclobutene liners.,2013,53,Microelectronics Reliability,5,db/journals/mr/mr53.html#ChenYHTW13,https://doi.org/10.1016/j.microrel.2012.12.012 +J. Liu,Degradation behaviors of GaN light-emitting diodes under high-temperature and high-current stressing.,2012,52,Microelectronics Reliability,8,db/journals/mr/mr52.html#LiuWSKF12,https://doi.org/10.1016/j.microrel.2011.09.014 +Elena Atanassova,Effect of microwave radiation on the properties of Ta2O5-Si microstructures.,2005,45,Microelectronics Reliability,1,db/journals/mr/mr45.html#AtanassovaKMKLOSV05,https://doi.org/10.1016/j.microrel.2004.04.018 +Michael Merrett,Monte Carlo Static Timing Analysis with statistical sampling.,2014,54,Microelectronics Reliability,2,db/journals/mr/mr54.html#MerrettZ14,https://doi.org/10.1016/j.microrel.2013.10.016 +Dwayne R. Shirley,Effect of primary creep and plasticity in the modeling of thermal fatigue of SnPb and SnAgCu solder joints.,2008,48,Microelectronics Reliability,3,db/journals/mr/mr48.html#ShirleyGS08,https://doi.org/10.1016/j.microrel.2007.08.002 +Enrique Miranda 0002,A function-fit model for the hard breakdown I-V characteristics of ultra-thin oxides in MOS structures.,2005,45,Microelectronics Reliability,1,db/journals/mr/mr45.html#MirandaB05,https://doi.org/10.1016/j.microrel.2004.08.003 +Zbigniew Suszynski,Photoacoustic inspection of thermal properties of layered structure with pulse excitations.,2005,45,Microelectronics Reliability,12,db/journals/mr/mr45.html#SuszynskiD05,https://doi.org/10.1016/j.microrel.2005.03.003 +M. Saeidmanesh,Analytical model for threshold voltage of double gate bilayer graphene field effect transistors.,2014,54,Microelectronics Reliability,1,db/journals/mr/mr54.html#SaeidmaneshRKKI14,https://doi.org/10.1016/j.microrel.2013.08.003 +Martin Streibl,Harnessing the base-pushout effect for ESD protection in bipolar and BiCMOS technologies.,2003,43,Microelectronics Reliability,7,db/journals/mr/mr43.html#StreiblESSWSG03,https://doi.org/10.1016/S0026-2714(03)00126-4 +Erjuan Guo,The effect of annealing temperature on the electronic parameters and carrier transport mechanism of Pt/n-type Ge Schottky diode.,2016,62,Microelectronics Reliability,,db/journals/mr/mr62.html#GuoZZLZW16,https://doi.org/10.1016/j.microrel.2016.03.025 +Dominik Lorenz,Efficiently analyzing the impact of aging effects on large integrated circuits.,2012,52,Microelectronics Reliability,8,db/journals/mr/mr52.html#LorenzBS12,https://doi.org/10.1016/j.microrel.2011.12.029 +K. A. Karthigeyan,Study and analysis of DR-VCO for rad-hardness in type II third order CPLL.,2018,82,Microelectronics Reliability,,db/journals/mr/mr82.html#KarthigeyanC18,https://doi.org/10.1016/j.microrel.2018.01.018 +Hongge Li,Micropower fully integrated CMOS readout interface for neural recording application.,2010,50,Microelectronics Reliability,2,db/journals/mr/mr50.html#LiZZ10,https://doi.org/10.1016/j.microrel.2009.09.013 +Toni T. Mattila,An approach to adjust the board-level drop test conditions to improve the correlation with product-level drop impact.,2014,54,Microelectronics Reliability,4,db/journals/mr/mr54.html#MattilaRRHMHSH14,https://doi.org/10.1016/j.microrel.2013.11.017 +Kyoungsoon Cho,Numerical analysis of the warpage problem in TSOP.,2004,44,Microelectronics Reliability,4,db/journals/mr/mr44.html#ChoJ04,https://doi.org/10.1016/j.microrel.2003.12.009 +Ming He,Bias-temperature stress of Al on porous low-k dielectrics.,2011,51,Microelectronics Reliability,8,db/journals/mr/mr51.html#HeLWL11,https://doi.org/10.1016/j.microrel.2011.03.004 +Jackie Chan,Oxynitride gate dielectric prepared by thermal oxidation of low-pressure chemical vapor deposition silicon-rich silicon nitride.,2003,43,Microelectronics Reliability,4,db/journals/mr/mr43.html#ChanWPK03,https://doi.org/10.1016/S0026-2714(03)00031-3 +Kai Esmark,Advanced 2D/3D ESD device simulation - a powerful tool already used in a pre-Si phase.,2001,41,Microelectronics Reliability,11,db/journals/mr/mr41.html#EsmarkSWGGF01,https://doi.org/10.1016/S0026-2714(01)00032-4 +Bo Zhang,Modeling of board-level package by Finite Element Analysis and laser interferometer measurements.,2010,50,Microelectronics Reliability,7,db/journals/mr/mr50.html#ZhangLDC10,https://doi.org/10.1016/j.microrel.2010.03.009 +Se Young Yang,Chip warpage model for reliability prediction of delamination failures.,2012,52,Microelectronics Reliability,4,db/journals/mr/mr52.html#YangKL12,https://doi.org/10.1016/j.microrel.2011.11.013 +Hyungtak Kim,Hot electron induced degradation of undoped AlGaN/GaN HFETs.,2003,43,Microelectronics Reliability,6,db/journals/mr/mr43.html#KimVTTPSE03,https://doi.org/10.1016/S0026-2714(03)00066-0 +Gaudenzio Meneghesso,Positive and negative threshold voltage instabilities in GaN-based transistors.,2018,80,Microelectronics Reliability,,db/journals/mr/mr80.html#MeneghessoMSRZ18,https://doi.org/10.1016/j.microrel.2017.11.004 +Fei-Yi Hung,An investigation into the crystallization and electric flame-off characteristics of 20©0*λ6*m copper wires.,2011,51,Microelectronics Reliability,1,db/journals/mr/mr51.html#HungLCH11,https://doi.org/10.1016/j.microrel.2010.07.003 +Sun-Kyoung Seo,The evolution of microstructure and microhardness of Sn-Ag and Sn-Cu solders during high temperature aging.,2009,49,Microelectronics Reliability,3,db/journals/mr/mr49.html#SeoKSL09,https://doi.org/10.1016/j.microrel.2008.11.014 +Ravi Kandasamy,Thermal analysis of a flip chip ceramic ball grid array (CBGA) package.,2008,48,Microelectronics Reliability,2,db/journals/mr/mr48.html#KandasamyM08,https://doi.org/10.1016/j.microrel.2007.05.005 +Eun-Kyung Kim,Yield challenges in wafer stacking technology.,2008,48,Microelectronics Reliability,7,db/journals/mr/mr48.html#KimS08,https://doi.org/10.1016/j.microrel.2008.03.010 +C. Mukherjee,Random telegraph noise in SiGe HBTs: Reliability analysis close to SOA limit.,2017,73,Microelectronics Reliability,,db/journals/mr/mr73.html#MukherjeeJCZBAM17,https://doi.org/10.1016/j.microrel.2017.05.001 +Jungwoo Joh,Role of stress voltage on structural degradation of GaN high-electron-mobility transistors.,2011,51,Microelectronics Reliability,2,db/journals/mr/mr51.html#JohALXZ11,https://doi.org/10.1016/j.microrel.2010.08.021 +Steven H. Voldman,A review of latchup and electrostatic discharge (ESD) in BiCMOS RF silicon germanium technologies: Part I - ESD.,2005,45,Microelectronics Reliability,2,db/journals/mr/mr45.html#Voldman05,https://doi.org/10.1016/j.microrel.2004.10.017 +J. C. Tinoco,Conduction mechanisms of silicon oxide/titanium oxide MOS stack structures.,2008,48,Microelectronics Reliability,3,db/journals/mr/mr48.html#TinocoEIC08,https://doi.org/10.1016/j.microrel.2007.06.005 +Tong Yan Tee,Impact life prediction modeling of TFBGA packages under board level drop test.,2004,44,Microelectronics Reliability,7,db/journals/mr/mr44.html#TeeNLPZ04,https://doi.org/10.1016/j.microrel.2004.03.005 +Alina Caddemi,Microwave effects of UV light exposure of a GaN HEMT: Measurements and model extraction.,2016,65,Microelectronics Reliability,,db/journals/mr/mr65.html#CaddemiCSP16,https://doi.org/10.1016/j.microrel.2016.08.020 +S. Demirezen,On the profile of frequency and voltage dependent interface states and series resistance in (Ni/Au)/Al0.22Ga0.78N/AlN/GaN heterostructures by using current-voltage (I-V) and admittance spectroscopy methods.,2011,51,Microelectronics Reliability,12,db/journals/mr/mr51.html#DemirezenAOO11,https://doi.org/10.1016/j.microrel.2011.05.010 +Afaq Ahmad,Investigation of a constant behavior of aliasing errors in signature analysis due to the use of different ordered test-patterns in LFSR based testing techniques.,2002,42,Microelectronics Reliability,6,db/journals/mr/mr42.html#Ahmad02,https://doi.org/10.1016/S0026-2714(02)00018-5 +Matthias Kampmann,Design for Small Delay Test - A Simulation Study.,2018,80,Microelectronics Reliability,,db/journals/mr/mr80.html#KampmannH18,https://doi.org/10.1016/j.microrel.2017.11.019 +Mouhannad Dbeiss,Comparison of the electro-thermal constraints on SiC MOSFET and Si IGBT power modules in photovoltaic DC/AC inverters.,2017,78,Microelectronics Reliability,,db/journals/mr/mr78.html#DbeissAZ17,https://doi.org/10.1016/j.microrel.2017.07.087 +Arkadiusz Dabrowski,Stability of low ohmic thick-film resistors under pulsed operation.,2018,84,Microelectronics Reliability,,db/journals/mr/mr84.html#DabrowskiD18,https://doi.org/10.1016/j.microrel.2018.03.024 +E. Herth,Investigation of optical and chemical bond properties of hydrogenated amorphous silicon nitride for optoelectronics applications.,2012,52,Microelectronics Reliability,1,db/journals/mr/mr52.html#HerthDALL12,https://doi.org/10.1016/j.microrel.2011.09.004 +Haider Muhi Abbas,BTI mitigation by anti-ageing software patterns.,2017,79,Microelectronics Reliability,,db/journals/mr/mr79.html#AbbasHZ17,https://doi.org/10.1016/j.microrel.2017.10.009 +Jincan Zhang,The model parameter extraction and simulation for the effects of gamma irradiation on the DC characteristics of InGaP/GaAs single heterojunction bipolar transistors.,2012,52,Microelectronics Reliability,12,db/journals/mr/mr52.html#ZhangZLZY12,https://doi.org/10.1016/j.microrel.2012.07.020 +Udit Narula,Copper induced synthesis of graphene using amorphous carbon.,2016,61,Microelectronics Reliability,,db/journals/mr/mr61.html#NarulaTL16,https://doi.org/10.1016/j.microrel.2016.01.005 +J. T. Sagar,Elemental characterisation of sub 20 nm structures in devices using new SEM-EDS technology.,2016,64,Microelectronics Reliability,,db/journals/mr/mr64.html#SagarBML16,https://doi.org/10.1016/j.microrel.2016.07.080 +Tsung-Han Tsai,A hydrogen sensor based on a metamorphic high electron mobility transistor (MHEMT).,2010,50,Microelectronics Reliability,5,db/journals/mr/mr50.html#TsaiCLCHHL10,https://doi.org/10.1016/j.microrel.2010.01.009 +A. R. Maligno,Thermal fatigue life estimation and delamination mechanics studies of multilayered MEMS structures.,2012,52,Microelectronics Reliability,8,db/journals/mr/mr52.html#MalignoWS12,https://doi.org/10.1016/j.microrel.2012.03.023 +Minho Choi,Direct correlation between reliability and pH changes of phosphors for white light-emitting diodes.,2014,54,Microelectronics Reliability,12,db/journals/mr/mr54.html#ChoiKYKSK14,https://doi.org/10.1016/j.microrel.2014.07.141 +E. A. Douglas,AlGaN/GaN High Electron Mobility Transistor degradation under on- and off-state stress.,2011,51,Microelectronics Reliability,2,db/journals/mr/mr51.html#DouglasCCGLLHWJVKJRP11,https://doi.org/10.1016/j.microrel.2010.09.024 +Siva P. V. Nadimpalli,Prediction of pad cratering fracture at the copper pad - Printed circuit board interface.,2012,52,Microelectronics Reliability,7,db/journals/mr/mr52.html#NadimpalliS12,https://doi.org/10.1016/j.microrel.2012.02.015 +Changsoo Jang,Forward-stepwise regression analysis for fine leak batch testing of wafer-level hermetic MEMS packages.,2010,50,Microelectronics Reliability,4,db/journals/mr/mr50.html#JangYWHH10,https://doi.org/10.1016/j.microrel.2009.11.014 +Josef Watts,Including spatial correlations of channel length and threshold voltage variation in circuit simulations.,2012,52,Microelectronics Reliability,8,db/journals/mr/mr52.html#WattsT12,https://doi.org/10.1016/j.microrel.2011.10.023 +Asit Kumar Gain,Growth nature of in-situ Cu6Sn5-phase and their influence on creep and damping characteristics of Sn-Cu material under high-temperature and humidity.,2018,87,Microelectronics Reliability,,db/journals/mr/mr87.html#GainZ18a,https://doi.org/10.1016/j.microrel.2018.07.053 +Yu-Jung Huang,Reliability and routability consideration for MCM placement.,2002,42,Microelectronics Reliability,1,db/journals/mr/mr42.html#HuangGF02,https://doi.org/10.1016/S0026-2714(01)00228-1 +Leslie Marchut,Acceleration factors for THB induced degradation of AlGaAs/InGaAs pHEMT devices.,2008,48,Microelectronics Reliability,7,db/journals/mr/mr48.html#MarchutW08,https://doi.org/10.1016/j.microrel.2008.03.004 +Marise Bafleur,In the memory of Georges Charitat.,2002,42,Microelectronics Reliability,8,db/journals/mr/mr42.html#Bafleur02,https://doi.org/10.1016/S0026-2714(02)00093-8 +P. Jesudoss,Mechanical assessment of an anisotropic conductive adhesive joint of a direct access sensor on a flexible substrate for a swallowable capsule application.,2013,53,Microelectronics Reliability,3,db/journals/mr/mr53.html#JesudossMWS13,https://doi.org/10.1016/j.microrel.2012.09.014 +Ernest E. S. Ong,FSI implications of EMC rheological properties to 3D IC with TSV structures during plastic encapsulation process.,2013,53,Microelectronics Reliability,4,db/journals/mr/mr53.html#OngALOC13,https://doi.org/10.1016/j.microrel.2012.10.015 +Hyong Tae Kim,2-Step algorithm for automatic alignment in wafer dicing process.,2004,44,Microelectronics Reliability,7,db/journals/mr/mr44.html#KimSY04,https://doi.org/10.1016/j.microrel.2004.01.005 +Aiman H. El-Maleh,A finite state machine based fault tolerance technique for sequential circuits.,2014,54,Microelectronics Reliability,3,db/journals/mr/mr54.html#El-MalehA14,https://doi.org/10.1016/j.microrel.2013.10.022 +Steffen Wiese,Microstructure and creep behaviour of eutectic SnAg and SnAgCu solders.,2004,44,Microelectronics Reliability,12,db/journals/mr/mr44.html#WieseW04,https://doi.org/10.1016/j.microrel.2004.04.016 +Ying Wang,Improved performance of trench power MOSFET with SiGeC-based channel.,2011,51,Microelectronics Reliability,2,db/journals/mr/mr51.html#WangHC11,https://doi.org/10.1016/j.microrel.2010.07.149 +Simone Lee,Reliability testing of flexible printed circuit-based RF MEMS capacitive switches.,2004,44,Microelectronics Reliability,2,db/journals/mr/mr44.html#LeeRBBGL04,https://doi.org/10.1016/j.microrel.2003.09.002 +Jozsef Hegedus,Light output stabilisation of LED based streetlighting luminaires by adaptive current control.,2017,79,Microelectronics Reliability,,db/journals/mr/mr79.html#HegedusHP17,https://doi.org/10.1016/j.microrel.2017.06.060 +W. S. Lau,The application of polyimide/silicon nitride dual passivation to AlxGa1-xN/GaN high electron mobility transistors.,2008,48,Microelectronics Reliability,2,db/journals/mr/mr48.html#LauGTS08,https://doi.org/10.1016/j.microrel.2007.05.003 +Lingfeng Mao,"Erratum to ""The effect of image potential on electron transmission and electric current in the direct tunneling regime of ultra-thin MOS structures"" [Microelectronics Reliability 2001*41: 927-931].",2002,42,Microelectronics Reliability,6,db/journals/mr/mr42.html#MaoTX02,https://doi.org/10.1016/S0026-2714(02)00072-0 +Bruce M. Paine,Ka-band InP high electron mobility transistor monolithic microwave integrated circuit reliability.,2001,41,Microelectronics Reliability,8,db/journals/mr/mr41.html#PaineWSWNDH01,https://doi.org/10.1016/S0026-2714(01)00083-X +Saeed Mohammadi 0001,Compact modeling of short-channel effects in symmetric and asymmetric 3-T/4-T double gate MOSFETs.,2011,51,Microelectronics Reliability,3,db/journals/mr/mr51.html#MohammadiAM11,https://doi.org/10.1016/j.microrel.2010.10.014 +Bin Lu,Improved analytical model of surface potential with modified boundary conditions for double gate tunnel FETs.,2017,79,Microelectronics Reliability,,db/journals/mr/mr79.html#LuLZZCJL17,https://doi.org/10.1016/j.microrel.2017.05.013 +Viktor Gonda,Prediction of thermo-mechanical integrity of wafer backend processes.,2004,44,Microelectronics Reliability,12,db/journals/mr/mr44.html#GondaTBZDHE04,https://doi.org/10.1016/j.microrel.2004.05.021 +William J. Roesch,Separating HBT wearout from defects during early life operation.,2014,54,Microelectronics Reliability,2,db/journals/mr/mr54.html#RoeschR14,https://doi.org/10.1016/j.microrel.2013.09.012 +Jean-Yves Delétage,Reliability estimation of BGA and CSP assemblies using degradation law model and technological parameters deviations.,2003,43,Microelectronics Reliability,7,db/journals/mr/mr43.html#DeletageVPDBD03,https://doi.org/10.1016/S0026-2714(03)00101-X +Cho-Liang Chung,Influence of halogen-free compound and lead-free solder paste on on-board reliability of green CSP (chip scale package).,2005,45,Microelectronics Reliability,12,db/journals/mr/mr45.html#ChungLL05,https://doi.org/10.1016/j.microrel.2005.03.008 +Chunsheng Zhu,A novel mechanical diced trench structure for warpage reduction in wafer level packaging process.,2015,55,Microelectronics Reliability,2,db/journals/mr/mr55.html#ZhuLXL15,https://doi.org/10.1016/j.microrel.2014.11.006 +Kaj Lampio,Optimization of convectively cooled heat sinks.,2017,79,Microelectronics Reliability,,db/journals/mr/mr79.html#LampioK17,https://doi.org/10.1016/j.microrel.2017.06.011 +Koen G. Verhaege,Editorial.,2001,41,Microelectronics Reliability,3,db/journals/mr/mr41.html#Verhaege01,https://doi.org/10.1016/S0026-2714(00)00235-3 +Heinrich Wolf,Capacitively coupled transmission line pulsing cc-TLP--a traceable and reproducible stress method in the CDM-domain.,2005,45,Microelectronics Reliability,2,db/journals/mr/mr45.html#WolfGSW05,https://doi.org/10.1016/j.microrel.2004.05.015 +Peter Jacob,Failure mechanisms and precautions in plug connectors and relays.,2016,64,Microelectronics Reliability,,db/journals/mr/mr64.html#Jacob16a,https://doi.org/10.1016/j.microrel.2016.07.030 +Kuen-Suan Chen,Application of RPN analysis to parameter optimization of passive components.,2010,50,Microelectronics Reliability,12,db/journals/mr/mr50.html#ChenWWH10,https://doi.org/10.1016/j.microrel.2010.06.014 +Meiying Su,Warpage simulation and experimental verification for 320mm*320mm panel level fan-out packaging based on die-first process.,2018,83,Microelectronics Reliability,,db/journals/mr/mr83.html#SuCLCLCT18,https://doi.org/10.1016/j.microrel.2018.02.010 +A. Dehbi,High temperature reliability testing of aluminum and tantalum electrolytic capacitors.,2002,42,Microelectronics Reliability,6,db/journals/mr/mr42.html#DehbiWOD02,https://doi.org/10.1016/S0026-2714(02)00021-5 +L. Valdevit,Organic substrates for flip-chip design: A thermo-mechanical model that accounts for heterogeneity and anisotropy.,2008,48,Microelectronics Reliability,2,db/journals/mr/mr48.html#ValdevitKSSQS08,https://doi.org/10.1016/j.microrel.2007.03.006 +Henry J. H. Chen,Fabrication of Au/PEDOT stacked electrodes for organic thin film transistors by imprinting technology.,2010,50,Microelectronics Reliability,5,db/journals/mr/mr50.html#ChenHL10,https://doi.org/10.1016/j.microrel.2010.01.033 +Shyue-Kung Lu,Yield enhancement techniques for 3-dimensional random access memories.,2012,52,Microelectronics Reliability,6,db/journals/mr/mr52.html#LuCH12,https://doi.org/10.1016/j.microrel.2011.12.017 +Xiaoxiao Liu,Interconnect crosstalk noise evaluation in deep-submicron technologies.,2009,49,Microelectronics Reliability,2,db/journals/mr/mr49.html#LiuMSYW09,https://doi.org/10.1016/j.microrel.2008.11.013 +G. Casano,Experimental investigation of a Peltier cells cooling system for a Switch-Mode Power Supply.,2017,79,Microelectronics Reliability,,db/journals/mr/mr79.html#CasanoP17,https://doi.org/10.1016/j.microrel.2017.05.042 +Darko Belavic,Evaluation of compatibility of thick-film PTC thermistors and LTCC structures.,2005,45,Microelectronics Reliability,12,db/journals/mr/mr45.html#BelavicHKHCGD05,https://doi.org/10.1016/j.microrel.2005.03.002 +Peter Ersland,Lifetime acceleration model for HAST tests of a pHEMT process.,2004,44,Microelectronics Reliability,7,db/journals/mr/mr44.html#ErslandJY04,https://doi.org/10.1016/j.microrel.2004.03.009 +Jie Wu 0009,Breakdown and latent damage of ultra-thin gate oxides under ESD stress conditions.,2001,41,Microelectronics Reliability,11,db/journals/mr/mr41.html#WuJR01,https://doi.org/10.1016/S0026-2714(01)00033-6 +Yao Hsu,Quantitative reliability analysis of flip-chip packages under thermal-cyclic loading and in consideration of parameter uncertainties.,2011,51,Microelectronics Reliability,12,db/journals/mr/mr51.html#HsuSW11,https://doi.org/10.1016/j.microrel.2011.04.019 +Xiang Liu,Electro-thermal stress effect on InGaP/GaAs heterojunction bipolar low-noise amplifier performance.,2010,50,Microelectronics Reliability,3,db/journals/mr/mr50.html#LiuYL10,https://doi.org/10.1016/j.microrel.2009.12.007 +Ah-Young Park,Risk assessment of the crack propagation and delamination of the Cu-to-Cu direct bonded (CuDB) interface.,2016,66,Microelectronics Reliability,,db/journals/mr/mr66.html#ParkCP16,https://doi.org/10.1016/j.microrel.2016.09.015 +Wing-Shan Tam,Generating sub-1V reference voltages from a resistorless CMOS bandgap reference circuit by using a piecewise curvature temperature compensation technique.,2010,50,Microelectronics Reliability,8,db/journals/mr/mr50.html#TamWKW10,https://doi.org/10.1016/j.microrel.2010.04.012 +R. Ardito,The effect of nano-scale interaction forces on the premature pull-in of real-life Micro-Electro-Mechanical Systems.,2012,52,Microelectronics Reliability,1,db/journals/mr/mr52.html#ArditoFCMC12,https://doi.org/10.1016/j.microrel.2011.08.021 +G. Ghibaudo,Guest Editorial.,2003,43,Microelectronics Reliability,8,db/journals/mr/mr43.html#GhibaudoV03,https://doi.org/10.1016/S0026-2714(03)00168-9 +Hao-Chieh Lee,Improved reliability of large-sized a-Si thin-film-transistor by back channel treatment in H2.,2015,55,Microelectronics Reliability,11,db/journals/mr/mr55.html#LeeCL15,https://doi.org/10.1016/j.microrel.2015.09.001 +Olivér Krammer,Improved method for determining the shear strength of chip component solder joints.,2010,50,Microelectronics Reliability,2,db/journals/mr/mr50.html#KrammerS10,https://doi.org/10.1016/j.microrel.2009.10.016 +Juan Antonio Maestro,A method to eliminate the event accumulation problem from a memory affected by multiple bit upsets.,2009,49,Microelectronics Reliability,7,db/journals/mr/mr49.html#MaestroR09,https://doi.org/10.1016/j.microrel.2009.05.002 +Lutz Meinshausen,Electro- and thermomigration induced Cu3Sn and Cu6Sn5 formation in SnAg3.0Cu0.5 bumps.,2015,55,Microelectronics Reliability,1,db/journals/mr/mr55.html#MeinshausenFWP15,https://doi.org/10.1016/j.microrel.2014.09.030 +Sang Myung Lee,Crack-guided effect on dynamic mechanical stress for foldable low temperature polycrystalline silicon thin film transistors.,2016,64,Microelectronics Reliability,,db/journals/mr/mr64.html#LeePY16,https://doi.org/10.1016/j.microrel.2016.07.056 +Yongqiang Wan,Shear strength and fracture surface analysis of Sn58Bi/Cu solder joints under a wide range of strain rates.,2018,86,Microelectronics Reliability,,db/journals/mr/mr86.html#WanLHQXLJ18,https://doi.org/10.1016/j.microrel.2018.05.007 +Andrea Irace,200 V Fast Recovery Epitaxial Diode with superior ESD capability.,2016,64,Microelectronics Reliability,,db/journals/mr/mr64.html#IraceMMRBBCNBPS16,https://doi.org/10.1016/j.microrel.2016.07.022 +Chao-Ming Lin,Failure analysis of pad-height effects in the fine-pitch interconnection of the anisotropic conductive films.,2008,48,Microelectronics Reliability,7,db/journals/mr/mr48.html#LinLFC08,https://doi.org/10.1016/j.microrel.2008.03.014 +Jaakko Lenkkeri,Rapid power cycling of flip-chip and CSP components on ceramic substrates.,2001,41,Microelectronics Reliability,5,db/journals/mr/mr41.html#LenkkeriJ01,https://doi.org/10.1016/S0026-2714(01)00006-3 +Mohamed El-Koujok,Reducing arbitrary choices in model building for prognostics: An approach by applying parsimony principle on an evolving neuro-fuzzy system.,2011,51,Microelectronics Reliability,2,db/journals/mr/mr51.html#El-KoujokGZ11,https://doi.org/10.1016/j.microrel.2010.09.014 +Junsung Ma,Characterization of flip chip bonded structure with Cu ABL power bumps.,2014,54,Microelectronics Reliability,8,db/journals/mr/mr54.html#MaKK14,https://doi.org/10.1016/j.microrel.2014.03.022 +M. Y. Tsai,Thermal measurements and analyses of low-cost high-power LED packages and their modules.,2012,52,Microelectronics Reliability,5,db/journals/mr/mr52.html#TsaiCK12,https://doi.org/10.1016/j.microrel.2011.04.008 +Hyong Tae Kim,Iterative algorithm for automatic alignment by object transformation.,2007,47,Microelectronics Reliability,6,db/journals/mr/mr47.html#KimYB07,https://doi.org/10.1016/j.microrel.2006.06.008 +A. Ghetti,Anomalous gate oxide conduction on isolation edges: analysis and process optimization.,2003,43,Microelectronics Reliability,8,db/journals/mr/mr43.html#GhettiBBGP03,https://doi.org/10.1016/S0026-2714(03)00176-8 +Alexis Ramos,Characterizing a RISC-V SRAM-based FPGA implementation against Single Event Upsets using fault injection.,2017,78,Microelectronics Reliability,,db/journals/mr/mr78.html#RamosMR17,https://doi.org/10.1016/j.microrel.2017.09.007 +C. H. Chen,Strength determination of high-power LED die using point-load and line-load tests.,2012,52,Microelectronics Reliability,5,db/journals/mr/mr52.html#ChenT12,https://doi.org/10.1016/j.microrel.2011.06.028 +Jie Gu,Prognostics implementation of electronics under vibration loading.,2007,47,Microelectronics Reliability,12,db/journals/mr/mr47.html#GuBP07,https://doi.org/10.1016/j.microrel.2007.02.015 +C. Belda,Stability of solid electrolyte based thick-film CO2 sensors.,2009,49,Microelectronics Reliability,6,db/journals/mr/mr49.html#BeldaFFWJ09,https://doi.org/10.1016/j.microrel.2009.02.014 +Ru Huang,Hot carrier degradation behavior in SOI dynamic-threshold-voltage nMOSFET's (n-DTMOSFET) measured by gated-diode configuration.,2003,43,Microelectronics Reliability,5,db/journals/mr/mr43.html#HuangWHYZW03,https://doi.org/10.1016/S0026-2714(03)00038-6 +Hossein Mohammadi,A modified two dimensional analytical model for short-channel fully depleted SOI MESFET's.,2018,83,Microelectronics Reliability,,db/journals/mr/mr83.html#MohammadiADM18,https://doi.org/10.1016/j.microrel.2018.03.004 +N. H. Yeung,Bias-HAST on tape ball grid array (TBGA) test pattern.,2004,44,Microelectronics Reliability,4,db/journals/mr/mr44.html#YeungLC04,https://doi.org/10.1016/j.microrel.2003.08.008 +Yu-Feng Liu,Low temperature fabricated conductive lines on flexible substrate by inkjet printing.,2012,52,Microelectronics Reliability,2,db/journals/mr/mr52.html#LiuHPT12,https://doi.org/10.1016/j.microrel.2011.05.007 +Peter Ersland,Editorial.,2006,46,Microelectronics Reliability,8,db/journals/mr/mr46.html#ErslandM06,https://doi.org/10.1016/j.microrel.2006.02.003 +A. Sasikumar,Deep trap-induced dynamic on-resistance degradation in GaN-on-Si power MISHEMTs.,2016,56,Microelectronics Reliability,,db/journals/mr/mr56.html#SasikumarACJSZR16,https://doi.org/10.1016/j.microrel.2015.10.026 +Andreas Martin,Editorial.,2001,41,Microelectronics Reliability,7,db/journals/mr/mr41.html#Martin01,https://doi.org/10.1016/S0026-2714(01)00119-6 +David C. T. Or,Enhanced reliability for low-temperature gate dielectric of MOS devices by N2O or NO plasma nitridation.,2003,43,Microelectronics Reliability,1,db/journals/mr/mr43.html#OrLSKX03,https://doi.org/10.1016/S0026-2714(02)00284-6 +Yu-Ming Chang,Evaluating the abrasive wear of Zn1-xMnxO heteroepitaxial layers using a nanoscratch technique.,2010,50,Microelectronics Reliability,8,db/journals/mr/mr50.html#ChangWYLTWWC10,https://doi.org/10.1016/j.microrel.2010.05.003 +Masanori Usui,Effects of thermal aging on Cu nanoparticle/Bi-Sn solder hybrid bonding.,2017,78,Microelectronics Reliability,,db/journals/mr/mr78.html#UsuiSKTHSK17,https://doi.org/10.1016/j.microrel.2017.07.096 +Ondrej Novák,Test response compaction method with improved detection and diagnostic abilities.,2018,80,Microelectronics Reliability,,db/journals/mr/mr80.html#NovakP18,https://doi.org/10.1016/j.microrel.2017.10.016 +Min-Seok Jang,Adhesion of NCF to oxidized Si wafers after oxygen plasma treatment.,2017,78,Microelectronics Reliability,,db/journals/mr/mr78.html#JangMSSK17,https://doi.org/10.1016/j.microrel.2017.09.001 +S. Hu,Stable reduced order modeling of piezoelectric energy harvesting modules using implicit Schur complement.,2018,85,Microelectronics Reliability,,db/journals/mr/mr85.html#HuYCLBHB18,https://doi.org/10.1016/j.microrel.2018.03.026 +Thomas D. Moore,Improved reliability in small multichip ball grid arrays.,2001,41,Microelectronics Reliability,3,db/journals/mr/mr41.html#MooreJ01,https://doi.org/10.1016/S0026-2714(00)00230-4 +J. S. Hwang,Effects of bonding temperature on the properties and reliabilities of anisotropic conductive films (ACFs) for flip chip on organic substrate application.,2008,48,Microelectronics Reliability,2,db/journals/mr/mr48.html#HwangYP08,https://doi.org/10.1016/j.microrel.2006.07.097 +Thomas Wlanis,Cu-SiO2 hybrid bonding simulation including surface roughness and viscoplastic material modeling: A critical comparison of 2D and 3D modeling approach.,2018,86,Microelectronics Reliability,,db/journals/mr/mr86.html#WlanisHELSGRM18,https://doi.org/10.1016/j.microrel.2018.05.005 +Wolfgang Wondrak,Special Section on Reliability of Passive Components.,2002,42,Microelectronics Reliability,6,db/journals/mr/mr42.html#Wondrak02,https://doi.org/10.1016/S0026-2714(02)00074-4 +Jonathan L. Paulsen,Highly accelerated lifetesting of base-metal-electrode ceramic chip capacitors.,2002,42,Microelectronics Reliability,6,db/journals/mr/mr42.html#PaulsenR02,https://doi.org/10.1016/S0026-2714(02)00014-8 +William J. Roesch,Methods of reducing defects in GaAs ICs.,2002,42,Microelectronics Reliability,7,db/journals/mr/mr42.html#Roesch02,https://doi.org/10.1016/S0026-2714(02)00067-7 +Guanglan Liao,Using RBF networks for detection and prediction of flip chip with missing bumps.,2015,55,Microelectronics Reliability,12,db/journals/mr/mr55.html#LiaoDSZNS15,https://doi.org/10.1016/j.microrel.2015.09.030 +Zhi-Hao Zhang,Simulation study on thermo-fatigue failure behavior of solder joints in package-on-package structure.,2017,75,Microelectronics Reliability,,db/journals/mr/mr75.html#ZhangWRJY17,https://doi.org/10.1016/j.microrel.2017.06.033 +Hsien-Chin Chiu,Sidewall defects of AlGaN/GaN HEMTs evaluated by low frequency noise analysis.,2013,53,Microelectronics Reliability,12,db/journals/mr/mr53.html#ChiuCKCWGC13,https://doi.org/10.1016/j.microrel.2013.06.015 +Jen-Yu Jao,Electrical characterization of single cell in microfluidic device.,2011,51,Microelectronics Reliability,4,db/journals/mr/mr51.html#JaoLCCJ11,https://doi.org/10.1016/j.microrel.2010.12.001 +Yow-Jon Lin,Temperature-dependent resistive switching characteristics for Au/n-type CuAlOx/heavily doped p-type Si devices.,2016,63,Microelectronics Reliability,,db/journals/mr/mr63.html#LinC16,https://doi.org/10.1016/j.microrel.2016.05.012 +ákos Nemcsics,On the shape formation of the droplet epitaxial quantum dots.,2016,56,Microelectronics Reliability,,db/journals/mr/mr56.html#Nemcsics16,https://doi.org/10.1016/j.microrel.2015.11.010 +Peijian Zhang,A comparison of the effects of cobalt-60 * ray irradiation on DPSA bipolar transistors at high and low injection levels.,2017,71,Microelectronics Reliability,,db/journals/mr/mr71.html#ZhangWYCYZTZ17,https://doi.org/10.1016/j.microrel.2017.02.015 +Vlasta Sedlakova,Electro-ultrasonic spectroscopy of polymer-based thick film layers.,2008,48,Microelectronics Reliability,6,db/journals/mr/mr48.html#SedlakovaSTM08,https://doi.org/10.1016/j.microrel.2008.03.011 +Martin Sauter,Simulation and modelling of VDMOSFET self protection under TLP-stress.,2010,50,Microelectronics Reliability,2,db/journals/mr/mr50.html#SauterW10,https://doi.org/10.1016/j.microrel.2009.10.007 +Sakir Aydogan,Effect of temperature on the capacitance-frequency and conductance-voltage characteristics of polyaniline/p-Si/Al MIS device at high frequencies.,2012,52,Microelectronics Reliability,7,db/journals/mr/mr52.html#AydoganST12,https://doi.org/10.1016/j.microrel.2012.02.016 +Shinya Ito,Effect of mechanical stress induced by etch-stop nitride: impact on deep-submicron transistor performance.,2002,42,Microelectronics Reliability,2,db/journals/mr/mr42.html#ItoNHAKISSH02,https://doi.org/10.1016/S0026-2714(01)00238-4 +Jiri Jakovenko,Design methodologies for reliability of SSL LED boards.,2013,53,Microelectronics Reliability,8,db/journals/mr/mr53.html#JakovenkoFPJVWHKBBG13,https://doi.org/10.1016/j.microrel.2013.02.017 +Cédric Le Coq,Experimental study of WL-CSP reliability subjected to a four-point bend-test.,2010,50,Microelectronics Reliability,7,db/journals/mr/mr50.html#CoqTSB10,https://doi.org/10.1016/j.microrel.2010.03.015 +Yu Ying,Deformation measurement of RF MEMS switches by optical interference.,2004,44,Microelectronics Reliability,6,db/journals/mr/mr44.html#YingG04,https://doi.org/10.1016/j.microrel.2004.02.006 +Bladimir Ramos-Alvarado,On the assessment of voids in the thermal interface material on the thermal performance of a silicon chip package.,2013,53,Microelectronics Reliability,12,db/journals/mr/mr53.html#Ramos-AlvaradoBCFP13,https://doi.org/10.1016/j.microrel.2013.05.006 +K. S. Kim,Tin whisker formation of lead-free plated leadframes.,2006,46,Microelectronics Reliability,7,db/journals/mr/mr46.html#KimYY06,https://doi.org/10.1016/j.microrel.2005.08.007 +Ewa Klimiec,Piezoelectric polymer films as power converters for human powered electronics.,2008,48,Microelectronics Reliability,6,db/journals/mr/mr48.html#KlimiecZZGSP08,https://doi.org/10.1016/j.microrel.2008.04.001 +Aniruddha Pandey,Poisson shock models leading to new classes of non-monotonic aging life distributions.,2011,51,Microelectronics Reliability,12,db/journals/mr/mr51.html#PandeyM11,https://doi.org/10.1016/j.microrel.2011.04.001 +Liyu Yang,Assessment of acceleration models used for BGA solder joint reliability studies.,2009,49,Microelectronics Reliability,12,db/journals/mr/mr49.html#YangBK09,https://doi.org/10.1016/j.microrel.2009.07.054 +Stefan Kristofik,Hardware redundancy architecture based on reconfigurable logic blocks with persistent high reliability improvement.,2018,86,Microelectronics Reliability,,db/journals/mr/mr86.html#KristofikBM18,https://doi.org/10.1016/j.microrel.2018.04.010 +Toni T. Mattila,Evaluation of the drop response of handheld electronic products.,2014,54,Microelectronics Reliability,3,db/journals/mr/mr54.html#MattilaVHHMH14,https://doi.org/10.1016/j.microrel.2013.10.023 +Piotr Firek,MISFET structures with barium titanate as a dielectric layer for application in memory cells.,2011,51,Microelectronics Reliability,7,db/journals/mr/mr51.html#FirekS11,https://doi.org/10.1016/j.microrel.2011.03.001 +Bo Wang,New structure with SiO2-gate-dielectric select gates in vertical-channel three-dimensional (3D) NAND flash memory.,2017,78,Microelectronics Reliability,,db/journals/mr/mr78.html#WangGWQ17,https://doi.org/10.1016/j.microrel.2017.08.001 +Gábor Harsányi,Comparing migratory resistive short formation abilities of conductor systems applied in advanced interconnection systems.,2001,41,Microelectronics Reliability,2,db/journals/mr/mr41.html#HarsanyiI01,https://doi.org/10.1016/S0026-2714(00)00093-7 +Jie Chen,Understanding and modeling of internal transient latch-up susceptibility in CMOS inverters due to microwave pulses.,2013,53,Microelectronics Reliability,12,db/journals/mr/mr53.html#ChenD13a,https://doi.org/10.1016/j.microrel.2013.07.004 +Wei Guo,Multi-frequency weak signal detection based on multi-segment cascaded stochastic resonance for rolling bearings.,2017,75,Microelectronics Reliability,,db/journals/mr/mr75.html#GuoZCL17,https://doi.org/10.1016/j.microrel.2017.03.018 +Francesco Grasso,A symbolic approach to design centering of analog circuits.,2007,47,Microelectronics Reliability,8,db/journals/mr/mr47.html#GrassoMP07,https://doi.org/10.1016/j.microrel.2006.09.022 +Steffen Wiese,The effect of downscaling the dimensions of solder interconnects on their creep properties.,2008,48,Microelectronics Reliability,6,db/journals/mr/mr48.html#WieseRMW08,https://doi.org/10.1016/j.microrel.2008.03.026 +Edward Namkyu Cho,An analytical avalanche breakdown model for double gate MOSFET.,2015,55,Microelectronics Reliability,1,db/journals/mr/mr55.html#ChoSY15,https://doi.org/10.1016/j.microrel.2014.08.019 +Hui Huang Cheng,Heat dissipation design and analysis of high power LED array using the finite element method.,2012,52,Microelectronics Reliability,5,db/journals/mr/mr52.html#ChengHL12,https://doi.org/10.1016/j.microrel.2011.05.009 +Charles S. Whitman,Determining constant voltage life* for silicon nitride capacitors in a GaAs IC process by a step stress method.,2005,45,Microelectronics Reliability,12,db/journals/mr/mr45.html#WhitmanM05,https://doi.org/10.1016/j.microrel.2005.01.016 +Liansheng Liu,FESeR: A data-driven framework to enhance sensor reliability for the system condition monitoring.,2016,64,Microelectronics Reliability,,db/journals/mr/mr64.html#LiuPL16,https://doi.org/10.1016/j.microrel.2016.07.113 +Merlyne M. De Souza,A comparison of early stage hot carrier degradation behaviour in 5 and 3 V sub-micron low doped drain metal oxide semiconductor field effect transistors.,2001,41,Microelectronics Reliability,2,db/journals/mr/mr41.html#SouzaWMNO01,https://doi.org/10.1016/S0026-2714(00)00210-9 +Chao-Hung Chen,High thermal stability and low hysteresis dispersion AlGaN/GaN MOS-HEMTs with zirconia film design.,2012,52,Microelectronics Reliability,11,db/journals/mr/mr52.html#ChenCCCCG12,https://doi.org/10.1016/j.microrel.2012.05.006 +Jordi Suñé,Statistics of soft and hard breakdown in thin SiO2 gate oxides.,2003,43,Microelectronics Reliability,8,db/journals/mr/mr43.html#SuneWJL03,https://doi.org/10.1016/S0026-2714(03)00170-7 +Lei Zhang,Influence of carrier lifetime distribution on the current filament in high voltage diode.,2017,72,Microelectronics Reliability,,db/journals/mr/mr72.html#ZhangW17,https://doi.org/10.1016/j.microrel.2017.04.001 +C. Leyris,N-MOSFET oxide trap characterization induced by nitridation process using RTS noise analysis.,2007,47,Microelectronics Reliability,1,db/journals/mr/mr47.html#LeyrisMHVV07,https://doi.org/10.1016/j.microrel.2006.02.010 +Xingwei Ding,ZrO2 insulator modified by a thin Al2O3 film to enhance the performance of InGaZnO thin-film transistor.,2014,54,Microelectronics Reliability,11,db/journals/mr/mr54.html#DingZZDHLSJZ14,https://doi.org/10.1016/j.microrel.2014.06.011 +Shih-Chun Yang,Failure and degradation mechanisms of high-power white light emitting diodes.,2010,50,Microelectronics Reliability,7,db/journals/mr/mr50.html#YangLWHCCLC10,https://doi.org/10.1016/j.microrel.2010.03.007 +Qian Wang,Reliability of Au bump-Cu direct interconnections fabricated by means of surface activated bonding method.,2003,43,Microelectronics Reliability,5,db/journals/mr/mr43.html#WangHIS03,https://doi.org/10.1016/S0026-2714(03)00039-8 +Zhihua Wang,A generalized degradation model based on Gaussian process.,2018,85,Microelectronics Reliability,,db/journals/mr/mr85.html#WangWZWZLF18,https://doi.org/10.1016/j.microrel.2018.05.001 +Tadahiro Shibutani,Key reliability concerns with lead-free connectors.,2008,48,Microelectronics Reliability,10,db/journals/mr/mr48.html#ShibutaniWYP08,https://doi.org/10.1016/j.microrel.2008.06.004 +B. L. Yang,Improving the electrical characteristics of MOS transistors with CeO2/La2O3 stacked gate dielectric.,2012,52,Microelectronics Reliability,8,db/journals/mr/mr52.html#YangWKI12,https://doi.org/10.1016/j.microrel.2011.10.009 +Yu-Lung Lo,Wirebond profiles characterized by a modified linkage-spring model which includes a looping speed factor.,2002,42,Microelectronics Reliability,2,db/journals/mr/mr42.html#LoT02,https://doi.org/10.1016/S0026-2714(01)00246-3 +Serge Karboyan,On the origin of dynamic Ron in commercial GaN-on-Si HEMTs.,2018,81,Microelectronics Reliability,,db/journals/mr/mr81.html#KarboyanUMPK18,https://doi.org/10.1016/j.microrel.2017.10.006 +Giulio Torrente,Physically-based evaluation of aging contributions in HC/FN-programmed 40 nm NOR Flash technology.,2017,79,Microelectronics Reliability,,db/journals/mr/mr79.html#TorrenteCVORG17,https://doi.org/10.1016/j.microrel.2017.05.039 +Manfred E. Szabo,A categorical equivalence of proofs.,1974,15,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl15.html#Szabo74,https://doi.org/10.1305/ndjfl/1093891297 +Peter B. Andrews,Resolution and the consistency of analysis.,1974,15,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl15.html#Andrews74,https://doi.org/10.1305/ndjfl/1093891200 +Francesca Rivetti Barbò,A philosophical remark on Gödel's unprovability of consistency proof.,1968,9,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl9.html#Barbo68,https://doi.org/10.1305/ndjfl/1093893353 +Harry V. Stopes-Roe,An economy in the formation rules for quantification theory.,1969,10,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl10.html#Stopes-Roe69,https://doi.org/10.1305/ndjfl/1093893722 +Christopher Steinsvold,Being Wrong: Logics for False Belief.,2011,52,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl52.html#Steinsvold11,https://doi.org/10.1215/00294527-1435438 +Alberto Zanardo,"On the characterizability of the frames for the ""unpreventability of the present and the past"".",1986,27,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl27.html#Zanardo86,https://doi.org/10.1305/ndjfl/1093636769 +Nicholas J. DeLillo,A formal characterization of ordinal numbers.,1973,14,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl14.html#DeLillo73,https://doi.org/10.1305/ndjfl/1093891007 +Martin W. Bunder,Generalized restricted generality.,1979,20,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl20.html#Bunder79c,https://doi.org/10.1305/ndjfl/1093882669 +Kit Fine,Some Puzzles of Ground.,2010,51,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl51.html#Fine10,https://doi.org/10.1215/00294527-2010-007 +Richard L. Call,The Gödel-Herbrand theorems.,1972,13,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl13.html#Call72,https://doi.org/10.1305/ndjfl/1093894636 +Judith Gersting,Universal pairs of regressive isols.,1975,16,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl16.html#Gersting75,https://doi.org/10.1305/ndjfl/1093891805 +Francis J. Tytus,An elementary construction of the natural numbers.,1967,8,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl8.html#Tytus67a,https://doi.org/10.1305/ndjfl/1094068842 +Michael J. Lieberman,Rank Functions and Partial Stability Spectra for Tame Abstract Elementary Classes.,2013,54,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl54.html#Lieberman13,https://doi.org/10.1215/00294527-1960452 +Lee C. Archie,"A note on the truth-table for ""if p then q"".",1977,18,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl18.html#ArchieHT77,https://doi.org/10.1305/ndjfl/1093888125 +Agi Kurucz,"Bimodal Logics with a ""Weakly Connected"" Component without the Finite Model Property.",2017,58,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl58.html#Kurucz17,https://doi.org/10.1215/00294527-3870247 +Michael D. Resnik,A decision procedure for positive implication.,1962,3,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl3.html#Resnik62,https://doi.org/10.1305/ndjfl/1093957237 +J. C. E. Dekker,Projective bigraphs with recursive operations.,1978,19,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl19.html#Dekker78,https://doi.org/10.1305/ndjfl/1093888313 +Boleslaw Sobocinski,Errata: Three set-theoretical formulas.,1961,2,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl2.html#Sobocinski61g,http://projecteuclid.org/euclid.ndjfl/1093956981 +Ross T. Brady,The simple consistency of a set theory based on the logic CSQ.,1983,24,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl24.html#Brady83,https://doi.org/10.1305/ndjfl/1093870447 +Chris Mortensen,Model structures and set algebras for Sugihara matrices.,1982,23,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl23.html#Mortensen82,https://doi.org/10.1305/ndjfl/1093883569 +Paolo Lipparini,Decomposable Ultrafilters and Possible Cofinalities.,2008,49,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl49.html#Lipparini08,https://doi.org/10.1215/00294527-2008-014 +Vito F. Sinisi,Leśniewski's analysis of Russell's antinomy.,1976,17,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl17.html#Sinisi76,https://doi.org/10.1305/ndjfl/1093887422 +Tetsuya Ishiu,A Tail Club Guessing Ideal Can Be Saturated without Being a Restriction of the Nonstationary Ideal.,2005,46,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl46.html#Ishiu05,https://doi.org/10.1305/ndjfl/1125409331 +Tomasz Polacik,Pitts' Quantifiers Are Not Topological Quantification.,1998,39,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl39.html#Polacik98,https://doi.org/10.1305/ndjfl/1039118868 +Setsuo Saito,On the Leibnizian modal system.,1968,9,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl9.html#Saito68,https://doi.org/10.1305/ndjfl/1093893358 +Leon Harkleroad,Recursive equivalence types on recursive manifolds.,1979,20,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl20.html#Harkleroad79,https://doi.org/10.1305/ndjfl/1093882398 +Josep Maria Font,Modality and possibility in some intuitionistic modal logics.,1986,27,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl27.html#Font86,https://doi.org/10.1305/ndjfl/1093636766 +Vladeta Vuckovic,On a class of regular sets.,1964,5,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl5.html#Vuckovic64,https://doi.org/10.1305/ndjfl/1093957801 +Kwasi Wiredu,On the necessity of S4.,1979,20,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl20.html#Wiredu79,https://doi.org/10.1305/ndjfl/1093882679 +Jordan Howard Sobel,Alternative notations for Principia Mathematica description theory: possible modifications.,1976,17,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl17.html#Sobel76,https://doi.org/10.1305/ndjfl/1093887645 +Raymond Turner,Nominalization and Scott's domains. II.,1985,26,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl26.html#Turner85,https://doi.org/10.1305/ndjfl/1093870938 +Chris Mortensen,Peeking at the Impossible.,1997,38,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl38.html#Mortensen97,https://doi.org/10.1305/ndjfl/1039540768 +Robert E. Clay,The dependence of mereological axiom.,1970,11,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl11.html#Clay70a,https://doi.org/10.1305/ndjfl/1093894078 +Wayne D. Blizard,Negative Membership.,1990,31,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl31.html#Blizard90,https://doi.org/10.1305/ndjfl/1093635499 +William J. Frascella,Certain counterexamples to the construction of combinatorial designs on infinite sets.,1971,12,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl12.html#Frascella71,https://doi.org/10.1305/ndjfl/1093894369 +R. J. Baxter,On some models of modal logics.,1973,14,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl14.html#Baxter73,https://doi.org/10.1305/ndjfl/1093890818 +Lloyd Humberstone,Collapsing Modalities.,2009,50,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl50.html#Humberstone09,https://doi.org/10.1215/00294527-2009-001 +Roman Kossak,Arithmetically Saturated Models of Arithmetic.,1995,36,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl36.html#KossakS95,https://doi.org/10.1305/ndjfl/1040136914 +John T. Baldwin 0001,Model Companions of TAut for Stable T.,2001,42,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl42.html#BaldwinS01,https://doi.org/10.1305/ndjfl/1063372196 +Daniel Dzierzgowski,Many-sorted elementary equivalence.,1988,29,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl29.html#Dzierzgowski88,https://doi.org/10.1305/ndjfl/1093638017 +Serge Lapierre,A Functional Partial Semantics for Intensional Logic.,1992,33,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl33.html#Lapierre92,https://doi.org/10.1305/ndjfl/1093634484 +Saharon Shelah,On power of singular cardinals.,1986,27,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl27.html#Shelah86,https://doi.org/10.1305/ndjfl/1093636617 +Chrysafis Hartonas,An Algebraic Theory of Structured Objects.,1997,38,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl38.html#Hartonas97,https://doi.org/10.1305/ndjfl/1039700697 +Patricia A. Blanchette,Realism and Paradox.,2000,41,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl41.html#Blanchette00,https://doi.org/10.1305/ndjfl/1038336843 +Ulrich Meyer 0002,Times in Tense Logic.,2009,50,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl50.html#Meyer09,https://doi.org/10.1215/00294527-2009-007 +J. Christopher Maloney,Abailard's theory of universals.,1982,23,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl23.html#Maloney82,https://doi.org/10.1305/ndjfl/1093883563 +Timothy Smiley,On Ł*ukasiewicz's Ł*-modal system.,1961,2,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl2.html#Smiley61,https://doi.org/10.1305/ndjfl/1093956874 +Paul Horwich,"A formalization of ""nothing"".",1975,16,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl16.html#Horwich75,https://doi.org/10.1305/ndjfl/1093891796 +Czeslaw Lejewski,"Errata: ""Studies in the axiomatic foundations of Boolean algebra. I."".",1960,1,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl1.html#Lejewski60b,http://projecteuclid.org/euclid.ndjfl/1093956622 +Boleslaw Sobocinski,Pledger lemma and the modal system S3đeg.,1976,17,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl17.html#Sobocinski76,https://doi.org/10.1305/ndjfl/1093887531 +D. L. Székely,Die Theorie der Umgangssprache als interpretierter Kompositkalkül.,1960,1,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl1.html#Szekely60,https://doi.org/10.1305/ndjfl/1093956619 +Franco Montagna,Pathologies in Two Syntactic Categories of Partial Maps.,1989,30,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl30.html#Montagna89,https://doi.org/10.1305/ndjfl/1093634998 +George Englebretsen,Czeżowski on wild quantity.,1986,27,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl27.html#Englebretsen86,https://doi.org/10.1305/ndjfl/1093636523 +John T. Kearns,Three substitution-instance interpretations.,1978,19,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl19.html#Kearns78,https://doi.org/10.1305/ndjfl/1093888395 +Charles C. Davis,A note on the axiom of choice in Leśniewski's ontology.,1976,17,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl17.html#Davis76,https://doi.org/10.1305/ndjfl/1093887423 +James Cummings 0001,Notes on Singular Cardinal Combinatorics.,2005,46,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl46.html#Cummings05,https://doi.org/10.1305/ndjfl/1125409326 +Wilson E. Singletary,Results regarding the axiomatization of partial propositional calculi.,1968,9,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl9.html#Singletary68,https://doi.org/10.1305/ndjfl/1093893456 +Antonella Mancini,A Note on Recursive Models of Set Theories.,2001,42,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl42.html#ManciniZ01,https://doi.org/10.1305/ndjfl/1054837937 +Alessandra Carbone,Provable Fixed Points in I Δ0 + and#937*1.,1991,32,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl32.html#Carbone91,https://doi.org/10.1305/ndjfl/1093635928 +G. N. Georgacarakos,Additional extensions of S4.,1977,18,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl18.html#Georgacarakos77a,https://doi.org/10.1305/ndjfl/1093888023 +Wolfgang Lenzen,On some substitution instances of R1 and L1.,1978,19,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl19.html#Lenzen78,https://doi.org/10.1305/ndjfl/1093888221 +Benedetto Intrigila,Some Results on Numerical Systems in lambda-Calculus.,1994,35,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl35.html#Intrigila94,https://doi.org/10.1305/ndjfl/1040408610 +Kathleen Johnson Wu,On a tableau rule for identity.,1980,21,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl21.html#Wu80,https://doi.org/10.1305/ndjfl/1093882951 +Alan Baker,Book Review: Charles S. Chihara. A Structural Account of Mathematics.,2006,47,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl47.html#Baker06,https://doi.org/10.1305/ndjfl/1163775447 +Demetrius J. Hadgopoulos,The middle term.,1978,19,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl19.html#Hadgopoulos78,https://doi.org/10.1305/ndjfl/1093888328 +Daniel D. Merrill,On De Morgan's argument.,1977,18,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl18.html#Merrill77,https://doi.org/10.1305/ndjfl/1093887828 +Robert E. Clay,Boolean algebroids.,1964,5,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl5.html#ClayS64,https://doi.org/10.1305/ndjfl/1093957807 +Greg Restall,Subintuitionistic Logics.,1994,35,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl35.html#Restall94,https://doi.org/10.1305/ndjfl/1040609299 +Leo Simons,More logics without tautologies.,1978,19,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl19.html#Simons78,https://doi.org/10.1305/ndjfl/1093888502 +Kenneth M. Sayre,Propositional logic in Plato's Protagoras.,1963,4,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl4.html#Sayre63,https://doi.org/10.1305/ndjfl/1093957657 +Rolf A. Eberle,Some complete calculi of individuals.,1967,8,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl8.html#Eberle67,https://doi.org/10.1305/ndjfl/1094068838 +Boleslaw Sobocinski,Lattice-theoretical and mereological forms of Hauber's law.,1971,12,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl12.html#Sobocinski71,https://doi.org/10.1305/ndjfl/1093894154 +Lucio Chiaraviglio,The pragmatics of truth functions.,1964,5,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl5.html#ChiaraviglioS64,https://doi.org/10.1305/ndjfl/1093957878 +Alberto Zanardo,A Note about the Axioms for Branching-Time Logic.,1992,33,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl33.html#Zanardo92,https://doi.org/10.1305/ndjfl/1093636100 +David Charles McCarty,On Theorems of Gödel and Kreisel: Completeness and Markov's Principle.,1994,35,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl35.html#McCarty94,https://doi.org/10.1305/ndjfl/1040609297 +J. C. E. Dekker,Two notes on vector spaces with recursive operations.,1971,12,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl12.html#Dekker71,https://doi.org/10.1305/ndjfl/1093894296 +Sergey Sudoplatov,Semi-Isolation and the Strict Order Property.,2015,56,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl56.html#SudoplatovT15,https://doi.org/10.1215/00294527-3153579 +George Englebretsen,Singular/general.,1986,27,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl27.html#Englebretsen86a,https://doi.org/10.1305/ndjfl/1093636528 +Alexander Berenstein,Invariant Version of Cardinality Quantifiers in Superstable Theories.,2006,47,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl47.html#BerensteinS06,https://doi.org/10.1305/ndjfl/1163775441 +Roman Kossak,Recursively saturated ω*1-like models of arithmetic.,1985,26,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl26.html#Kossak85a,https://doi.org/10.1305/ndjfl/1093870932 +Francesco Orilia,A Contingent Russell's Paradox.,1996,37,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl37.html#Orilia96,https://doi.org/10.1305/ndjfl/1040067319 +Victor Pambuccian,A Reverse Analysis of the Sylvester-Gallai Theorem.,2009,50,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl50.html#Pambuccian09,https://doi.org/10.1215/00294527-2009-010 +Anna Silverstein,A generalization of combinatorial operators.,1978,19,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl19.html#Silverstein78,https://doi.org/10.1305/ndjfl/1093888514 +Jonathan Broido,On the eliminability of de re modalities in some systems.,1976,17,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl17.html#Broido76,https://doi.org/10.1305/ndjfl/1093887427 +Boleslaw Sobocinski,A note on the regular and irregular modal systems of Lewis.,1962,3,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl3.html#Sobocinski62a,https://doi.org/10.1305/ndjfl/1093957155 +Boleslaw Sobocinski,Atomistic mereology. II.,1971,12,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl12.html#Sobocinski71b,https://doi.org/10.1305/ndjfl/1093894220 +Charles E. Hughes,The general decision problem for Markov algorithms with axiom.,1975,16,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl16.html#Hughes75,https://doi.org/10.1305/ndjfl/1093891701 +Ignacio Angelelli,Leibniz's misunderstanding of Nisolius notion of 'multudino'.,1965,6,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl6.html#Angelelli65,https://doi.org/10.1305/ndjfl/1093958340 +William J. Frascella,The construction of a Steiner triple system on sets of the power of the continuum without the axiom of choice.,1966,7,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl7.html#Frascella66,https://doi.org/10.1305/ndjfl/1093958559 +Eric Rosen,On the First-Order Prefix Hierarchy.,2005,46,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl46.html#Rosen05,https://doi.org/10.1305/ndjfl/1117755146 +Anjan Shukla,The existence postulate and non-regular systems of modal logic.,1972,13,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl13.html#Shukla72,https://doi.org/10.1305/ndjfl/1093890624 +Michael J. White,The necessity of the past and modal-tense logic incompleteness.,1984,25,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl25.html#White84,https://doi.org/10.1305/ndjfl/1093870518 +Ian Mueller,The completeness of Stoic propositional logic.,1979,20,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl20.html#Mueller79,https://doi.org/10.1305/ndjfl/1093882418 +John Evenden,Generalised logic. II.,1980,21,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl21.html#Evenden80,https://doi.org/10.1305/ndjfl/1093883056 +Isabel Loureiro,Prime spectrum of a tetravalent modal algebra.,1983,24,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl24.html#Loureiro83,https://doi.org/10.1305/ndjfl/1093870382 +Gian Aldo Antonelli,A Revision-Theoretic Analysis of the Arithmetical Hierarchy.,1994,35,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl35.html#Antonelli94a,https://doi.org/10.1305/ndjfl/1094061861 +Vítezslav Svejdar,On Interpretability in the Theory of Concatenation.,2009,50,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl50.html#Svejdar09,https://doi.org/10.1215/00294527-2008-029 +Thomas F. Icard III,Provability and Interpretability Logics with Restricted Realizations.,2012,53,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl53.html#IcardJ12,https://doi.org/10.1215/00294527-1715653 +Jorge J. E. Gracia,Propositions as premises of syllogisms in medieval logic.,1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#Gracia75,https://doi.org/10.1305/ndjfl/1093891896 +William A. Wisdom,Possibility-elimination in natural deduction.,1964,5,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl5.html#Wisdom64,https://doi.org/10.1305/ndjfl/1093957978 +Eric Hammer,Reasoning with Sentences and Diagrams.,1994,35,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl35.html#Hammer94,https://doi.org/10.1305/ndjfl/1040609295 +Harry Deutsch,Relevance and conformity.,1985,26,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl26.html#Deutsch85,https://doi.org/10.1305/ndjfl/1093870937 +Alexander Bochman,Biconsequence Relations: A Four-Valued Formalism of Reasoning with Inconsistency and Incompleteness.,1998,39,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl39.html#Bochman98,https://doi.org/10.1305/ndjfl/1039293020 +Richard L. Mendelsohn,Objects and Existence: Reflections on Free Logic.,1989,30,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl30.html#Mendelsohn89,https://doi.org/10.1305/ndjfl/1093635243 +Scott K. Lehmann,A first-order logic of knowledge and belief with identity. I.,1976,17,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl17.html#Lehmann76,https://doi.org/10.1305/ndjfl/1093887425 +Luis M. Laita,A study of algebraic logic from the point of view of category theory.,1976,17,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl17.html#Laita76,https://doi.org/10.1305/ndjfl/1093887428 +Thomas Jager,De re and de dicto.,1988,29,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl29.html#Jager88,https://doi.org/10.1305/ndjfl/1093637772 +Gregory L. McColm,"Eventualy Periodicity and ""One-Dimensional"" Queries.",1992,33,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl33.html#McColm92,https://doi.org/10.1305/ndjfl/1093636105 +Katarina Britz,Computing Verisimilitude.,1995,36,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl36.html#BritzB95,https://doi.org/10.1305/ndjfl/1040308827 +Boleslaw Sobocinski,A note on certain set-theoretical formulas.,1965,6,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl6.html#Sobocinski65,https://doi.org/10.1305/ndjfl/1093958157 +George Englebretsen,The square of opposition.,1976,17,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl17.html#Englebretsen76,https://doi.org/10.1305/ndjfl/1093887725 +Saharon Shelah,On the nonaxiomatizability of some logics by finitely many schemas.,1986,27,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl27.html#ShelahS86,https://doi.org/10.1305/ndjfl/1093636517 +Zdzislaw Dywan,"A new variant of the Gödel-Mal'cev theorem for the classical propositional calculus and correction to my paper: ""The connective of necessity of modal logic S5 is metalogical"".",1986,27,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl27.html#Dywan86,https://doi.org/10.1305/ndjfl/1093636768 +Michael Detlefsen,Introduction to the Fiftieth Anniversary Issues.,2010,51,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl51.html#Detlefsen10,https://doi.org/10.1215/00294527-2010-001 +Ieke Moerdijk,On the Freyd cover of a topos.,1983,24,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl24.html#Moerdijk83,https://doi.org/10.1305/ndjfl/1093870454 +Sven Ove Hansson,"Defining ""Good"" and ""Bad"" in Terms of ""Better"".",1990,31,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl31.html#Hansson90,https://doi.org/10.1305/ndjfl/1093635338 +William C. Purdy,A Logic for Natural Language.,1991,32,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl32.html#Purdy91,https://doi.org/10.1305/ndjfl/1093635837 +J. Michael Dunn,R-mingle and beneath. Extensions of the Routley-Meyer semantics for R.,1979,20,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl20.html#Dunn79,https://doi.org/10.1305/ndjfl/1093882544 +Gary P. Shannon,Equivalent versions of a weak form of the axiom of choice.,1988,29,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl29.html#Shannon88,https://doi.org/10.1305/ndjfl/1093638021 +George Boolos,Trees and finite satisfiability: proof of a conjecture of Burgess.,1984,25,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl25.html#Boolos84,https://doi.org/10.1305/ndjfl/1093870624 +G. N. Georgacarakos,Abnormal worlds and the non-Lewis modal systems.,1977,18,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl18.html#Georgacarakos77,https://doi.org/10.1305/ndjfl/1093887823 +Philip Scowcroft,Generalized Halfspaces in the Mixed-Integer Realm.,2009,50,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl50.html#Scowcroft09,https://doi.org/10.1215/00294527-2008-026 +,Editorial Notice.,2017,58,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl58.html#X17,https://doi.org/10.1215/00294527-3833032 +John Hawthorn,Natural Deduction in Normal Modal Logic.,1990,31,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl31.html#Hawthorn90,https://doi.org/10.1305/ndjfl/1093635420 +Robert H. Cowen,Generalizing König's infinity lemma.,1977,18,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl18.html#Cowen77,https://doi.org/10.1305/ndjfl/1093887927 +Craig Kalicki,Infinitary propositional intuitionistic logic.,1980,21,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl21.html#Kalicki80,https://doi.org/10.1305/ndjfl/1093883041 +Boleslaw Sobocinski,A new formalization of Newman algebra.,1972,13,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl13.html#Sobocinski72c,https://doi.org/10.1305/ndjfl/1093894724 +Robert E. Clay,On the definition of mereological class.,1966,7,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl7.html#Clay66,https://doi.org/10.1305/ndjfl/1093958755 +Nino B. Cocchiarella,Fregean semantics for a realist ontology.,1974,15,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl15.html#Cocchiarella74,https://doi.org/10.1305/ndjfl/1093891489 +R. B. Redmon,Identity.,1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#Redmon75,https://doi.org/10.1305/ndjfl/1093891902 +Charles F. Kielkopf,The intensionality of the predicate '_ is recursive'.,1978,19,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl19.html#Kielkopf78,https://doi.org/10.1305/ndjfl/1093888222 +Yoshihiro Horihata,Weak Theories of Concatenation and Arithmetic.,2012,53,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl53.html#Horihata12,https://doi.org/10.1215/00294527-1715698 +Thomas W. Scharle,Axiomatization of fragments of S5.,1975,16,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl16.html#Scharle75,https://doi.org/10.1305/ndjfl/1093891611 +Yatir Halevi,Semigroups in Stable Structures.,2018,59,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl59.html#Halevi18,https://doi.org/10.1215/00294527-2018-0003 +John R. Myhill,Variations on a theme of Bernays.,1963,4,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl4.html#Myhill63,https://doi.org/10.1305/ndjfl/1093957653 +Allard M. Tamminga,A Natural Deduction System for First Degree Entailment.,1999,40,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl40.html#TammingaT99,https://doi.org/10.1305/ndjfl/1038949541 +Arthur Sullivan,Singular Propositions and Singular Thoughts.,1998,39,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl39.html#Sullivan98,https://doi.org/10.1305/ndjfl/1039293023 +Douglas Dorrough,A logical calculus of analogy involving functions of order 2.,1970,11,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl11.html#Dorrough70a,https://doi.org/10.1305/ndjfl/1093894002 +Rangaswamy V. Setlur,"Erratum: ""On the equivalence of strong and weak validity of rule schemes in the two-valued of rule schemes in the two-valued propositional calculus"".",1974,15,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl15.html#Setlur74,http://projecteuclid.org/euclid.ndjfl/1093891505 +Ivan Boh,Walter Burleigh's hypothetical syllogistic.,1963,4,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl4.html#Boh63,https://doi.org/10.1305/ndjfl/1093957651 +Dolph Ulrich,A five-valued model of the E-p-q-theses.,1988,29,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl29.html#Ulrich88,https://doi.org/10.1305/ndjfl/1093637777 +Juliusz Reichbach,"A note to my paper: ""On characterizations of the first-order functional calculus"".",1961,2,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl2.html#Reichbach61a,https://doi.org/10.1305/ndjfl/1093956977 +Ross T. Brady,The relative consistency of the class axioms of abstraction and extensionality and the axioms of NBG in a three-valued logic.,1972,13,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl13.html#Brady72,https://doi.org/10.1305/ndjfl/1093894712 +Alfred Dolich,Dp-Minimality: Basic Facts and Examples.,2011,52,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl52.html#DolichGL11,https://doi.org/10.1215/00294527-1435456 +Osamu Takaki,Strong Normalization Theorem for a Constructive Arithmetic with Definition by Transfinite Recursion and Bar Induction.,1997,38,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl38.html#Takaki97,https://doi.org/10.1305/ndjfl/1039700743 +Toshio Suzuki,Forcing Complexity: Minimum Sizes of Forcing Conditions.,2001,42,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl42.html#Suzuki01,https://doi.org/10.1305/ndjfl/1054837938 +R. A. Bull,On the extension of S4 with CLMpMLp.,1967,8,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl8.html#Bull67,https://doi.org/10.1305/ndjfl/1094068847 +Jeremy Avigad,Uncomputably Noisy Ergodic Limits.,2012,53,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl53.html#Avigad12,https://doi.org/10.1215/00294527-1716757 +Ildikó Sain,An Elementary Proof for Some Semantic Characterizations of Nondeterministic Floyd-Hoare Logic.,1989,30,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl30.html#Sain89,https://doi.org/10.1305/ndjfl/1093635239 +Simon Andrews,Definable Open Sets As Finite Unions of Definable Open Cells.,2010,51,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl51.html#Andrews10,https://doi.org/10.1215/00294527-2010-015 +E. William Chapin,The strong decidability of cut logics. II. Generalizations.,1971,12,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl12.html#Chapin71c,https://doi.org/10.1305/ndjfl/1093894363 +G. N. Georgacarakos,A modal system properly independent of both the Brouwerian system and S4.,1978,19,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl19.html#Georgacarakos78,https://doi.org/10.1305/ndjfl/1093888211 +Bruce White,A note on natural deduction in many-valued logic.,1974,15,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl15.html#White74,https://doi.org/10.1305/ndjfl/1093891211 +Sakaé Fuchino,On Potential Embedding and Versions of Martin's Axiom.,1992,33,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl33.html#Fuchino92,https://doi.org/10.1305/ndjfl/1093634482 +John P. Burgess,The decision problem for linear temporal logic.,1985,26,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl26.html#BurgessG85,https://doi.org/10.1305/ndjfl/1093870820 +John L. Bell,Elementary Propositions and Independence.,1996,37,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl37.html#BellD96,https://doi.org/10.1305/ndjfl/1040067320 +Robert Warren Button,Monads for regular and normal spaces.,1976,17,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl17.html#Button76,https://doi.org/10.1305/ndjfl/1093887640 +Jacek K. Kabzinski,An axiomatization of the equivalential fragment of the three-valued logic of Lukasiewicz.,1984,25,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl25.html#Kabzinski84,https://doi.org/10.1305/ndjfl/1093870687 +Bruce I. Rose,Model theory of alternative rings.,1978,19,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl19.html#Rose78,https://doi.org/10.1305/ndjfl/1093888315 +Boleslaw Sobocinski,A theorem on Hartogs' alephs.,1961,2,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl2.html#Sobocinski61e,https://doi.org/10.1305/ndjfl/1093956979 +Rangaswamy V. Setlur,The product of implication and counter-implication systems.,1970,11,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl11.html#Setlur70,https://doi.org/10.1305/ndjfl/1093893942 +Earline Jennifer Ashworth,Propositional logic in the sixteenth and early seventeenth centuries.,1968,9,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl9.html#Ashworth68,https://doi.org/10.1305/ndjfl/1093893415 +George L. Farre,Remarks on the linguistics foundations of physics.,1965,6,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl6.html#Farre65,https://doi.org/10.1305/ndjfl/1093958150 +Gian Aldo Antonelli,The Complexity of Revision.,1994,35,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl35.html#Antonelli94,https://doi.org/10.1305/ndjfl/1040609294 +Anton Dumitriu,La science de la logique.,1971,12,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl12.html#Dumitriu71,https://doi.org/10.1305/ndjfl/1093894360 +Craig Smorynski,A note on initial segment constructions in recursively saturated models of arithmetic.,1982,23,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl23.html#Smorynski82,https://doi.org/10.1305/ndjfl/1093870152 +Frank Wolter,A Counterexample in Tense Logic.,1996,37,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl37.html#Wolter96,https://doi.org/10.1305/ndjfl/1040046085 +Robert R. Tompkins,On Kleene's recursive realizability as an interpretation for intuitionistic elementary number theory.,1968,9,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl9.html#Tompkins68,https://doi.org/10.1305/ndjfl/1093893512 +Anand Pillay,ℵ*0-categoricity over a predicate.,1983,24,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl24.html#Pillay83,https://doi.org/10.1305/ndjfl/1093870455 +Gillman Payette,Level Compactness.,2006,47,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl47.html#Payetted06,https://doi.org/10.1305/ndjfl/1168352667 +Gerald J. Massey,The modal structure of the Prior-Rescher family of infinite product systems.,1972,13,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl13.html#Massey72,https://doi.org/10.1305/ndjfl/1093894718 +George Barmpalias,The Hypersimple-Free C.E. WTT Degrees Are Dense in the C.E. WTT Degrees.,2006,47,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl47.html#BarmpaliasL06a,https://doi.org/10.1305/ndjfl/1163775443 +John L. Hickman,A note on Conway multiplication of ordinals.,1983,24,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl24.html#Hickman83,https://doi.org/10.1305/ndjfl/1093870228 +Steven T. Kuhn,A Simple Embedding of T into Double S5.,2004,45,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl45.html#Kuhn04,https://doi.org/10.1305/ndjfl/1094155276 +Rodrigo A. Freire,On Existence in Set Theory.,2012,53,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl53.html#Freire12,https://doi.org/10.1215/00294527-1722737 +Thomas A. Sudkamp,An additional remark on self-conjugate functions of Boolean algebras.,1978,19,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl19.html#Sudkamp78a,https://doi.org/10.1305/ndjfl/1093888513 +Stephen Pollard,The Expressive Truth Conditions of Two-Valued Logic.,2002,43,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl43.html#Pollard02,https://doi.org/10.1305/ndjfl/1074396307 +Peter Forrest,Nonclassical Mereology and Its Application to Sets.,2002,43,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl43.html#Forrest02,https://doi.org/10.1305/ndjfl/1071509430 +John P. Burgess,On a Consistent Subsystem of Frege's Grundgesetze.,1998,39,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl39.html#Burgess98,https://doi.org/10.1305/ndjfl/1039293068 +David Seetapun,On the Strength of Ramsey's Theorem.,1995,36,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl36.html#SeetapunS95,https://doi.org/10.1305/ndjfl/1040136917 +Craig Fraser,Book Review: Paolo Mancuso. Philosophy of Mathematics and Mathematical Practice in the Seventeenth Century.,1999,40,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl40.html#Fraser99,https://doi.org/10.1305/ndjfl/1022615621 +Aladdin M. Yaqub,Book Review: Marian David. Correspondence and Disquotation: An Essay on the Nature of Truth.,1998,39,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl39.html#Yaqub98a,https://doi.org/10.1305/ndjfl/1039293069 +Mark F. Sharlow,Broadening the Iterative Conception of Set.,2001,42,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl42.html#Sharlow01,https://doi.org/10.1305/ndjfl/1063372198 +John L. Pollock,Henkin style completeness proofs in theories lacking negation.,1971,12,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl12.html#Pollock71,https://doi.org/10.1305/ndjfl/1093894377 +V. Frederick Rickey,Axiomatic inscriptional syntax. Part II. The syntax of protothetic.,1973,14,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl14.html#Rickey73,https://doi.org/10.1305/ndjfl/1093890806 +Takeshi Yamazaki,Reverse Mathematics and Completeness Theorems for Intuitionistic Logic.,2001,42,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl42.html#Yamazaki01,https://doi.org/10.1305/ndjfl/1063372197 +Sergio A. Celani,A New Semantics for Positive Modal Logic.,1997,38,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl38.html#CelaniJ97,https://doi.org/10.1305/ndjfl/1039700693 +Kathleen Johnson Wu,A basic free logic.,1988,29,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl29.html#Wu88,https://doi.org/10.1305/ndjfl/1093638018 +Fred Richman,Equivalence of Syllogisms.,2004,45,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl45.html#Richman04,https://doi.org/10.1305/ndjfl/1099238446 +Dolph Ulrich,Semantics for S4.1.2.,1978,19,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl19.html#Ulrich78,https://doi.org/10.1305/ndjfl/1093888408 +John A. Winnie,The completeness of Copi's system of natural deduction.,1970,11,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl11.html#Winnie70,https://doi.org/10.1305/ndjfl/1093894010 +Francis Jeffry Pelletier,"(X): comments on J. J. Katz's paper: ""Common sense in semantics"".",1982,23,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl23.html#Pelletier82,https://doi.org/10.1305/ndjfl/1093870091 +Elvin Rasof,The Carrollian matrix.,1970,11,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl11.html#Rasof70,https://doi.org/10.1305/ndjfl/1093894083 +Raymond E. Jennings,A Deontic Counterpart of Lewis's S1.,2005,46,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl46.html#JenningsL05,https://doi.org/10.1305/ndjfl/1117755151 +Dennis Duchhart,A unified approach to relative interpolation.,1988,29,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl29.html#Duchhart88,https://doi.org/10.1305/ndjfl/1093637937 +Lee C. Archie,A simple defense of material implication.,1979,20,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl20.html#Archie79,https://doi.org/10.1305/ndjfl/1093882549 +Katalin Bimbó,New Consecution Calculi for Rt->*.,2012,53,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl53.html#BimboD12,https://doi.org/10.1215/00294527-1722719 +Harry A. Nielsen,Language as existent.,1961,2,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl2.html#Nielsen61,https://doi.org/10.1305/ndjfl/1093956976 +Renling Jin,A model in which every Kurepa Tree is thinck.,1992,33,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl33.html#Jin92,https://doi.org/10.1305/ndjfl/1093636014 +Desmond Paul Henry,An Anselmian regress.,1962,3,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl3.html#Henry62,https://doi.org/10.1305/ndjfl/1093957239 +E. L. Marsden,A note on implicative models.,1973,14,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl14.html#Marsden73,https://doi.org/10.1305/ndjfl/1093890823 +Mark Ryan 0001,Belief Revision and Verisimilitude.,1995,36,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl36.html#RyanS95,https://doi.org/10.1305/ndjfl/1040308826 +Robert E. Clay,The relation of weakly discrete to set and equinumerosity in mereology.,1965,6,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl6.html#Clay65,https://doi.org/10.1305/ndjfl/1093958342 +Stephen L. Bloom,Investigations into the sentential calculus with identity.,1972,13,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl13.html#BloomS72,https://doi.org/10.1305/ndjfl/1093890617 +John Jones,The rule of procedure Re in Ł*ukasiewicz's many-valued propositional calculi.,1985,26,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl26.html#Jones85,https://doi.org/10.1305/ndjfl/1093870933 +David Meredith 0002,Combinatory and propositional logic.,1974,15,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl15.html#000274,https://doi.org/10.1305/ndjfl/1093891208 +C. A. Meredith,Equational logic.,1968,9,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl9.html#MeredithP68,https://doi.org/10.1305/ndjfl/1093893457 +Shalom Rosenberg,A note on propositional calculus.,1972,13,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl13.html#Rosenberg72,https://doi.org/10.1305/ndjfl/1093890713 +Earline Jennifer Ashworth,Multiple quantification and the use of special quantifiers in early sixteenth century logic.,1978,19,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl19.html#Ashworth78,https://doi.org/10.1305/ndjfl/1093888507 +T. C. Wesselkamper,"A correction to my paper ""A sole sufficient operator"".",1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#Wesselkamper75a,https://doi.org/10.1305/ndjfl/1093891899 +Paul J. Welsh,On the number of overlapping subsets of a set.,1973,14,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl14.html#Welsh73,https://doi.org/10.1305/ndjfl/1093890903 +Emily Michael,Peirce's paradoxical solution to the Liar's Paradox.,1975,16,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl16.html#Michael75,https://doi.org/10.1305/ndjfl/1093891797 +Bruce E. R. Thompson,Syllogisms with statistical quantifiers.,1986,27,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl27.html#Thompson86,https://doi.org/10.1305/ndjfl/1093636527 +René Lavendhomme,A note on intuitionistic models of ZF.,1983,24,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl24.html#LavendhommeL83,https://doi.org/10.1305/ndjfl/1093870220 +Shih-Chao Liu,Recursive linear orderings and hyperarithmetical functions.,1962,3,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl3.html#Liu62a,https://doi.org/10.1305/ndjfl/1093957229 +J. Jay Zeman,A study of some systems in the neighborhood of S4.4.,1971,12,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl12.html#Zeman71,https://doi.org/10.1305/ndjfl/1093894298 +Larry Henschen,Questions concerning possible shortest single axioms for the equivalential calculus: an application of automated theorem proving to infinite domains.,1983,24,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl24.html#HenschenSVWW83,https://doi.org/10.1305/ndjfl/1093870311 +Pierre Joray,A Completed System for Robin Smith's Incomplete Ecthetic Syllogistic.,2017,58,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl58.html#Joray17,https://doi.org/10.1215/00294527-3882234 +Nicholas Rescher,On modal renderings of intuitionistic propositional logic.,1966,7,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl7.html#Rescher66,https://doi.org/10.1305/ndjfl/1093958621 +Stanley J. Krolikoski,A second deduction theorem for rejection theses in Ł*ukasiewicz's system of modal logic.,1979,20,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl20.html#Krolikoski79b,https://doi.org/10.1305/ndjfl/1093882659 +Achille C. Varzi,Inconsistency without Contradiction.,1997,38,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl38.html#Varzi97,https://doi.org/10.1305/ndjfl/1039540773 +Riccardo Camerlo,Finiteness Axioms on Fragments of Intuitionistic Set Theory.,2007,48,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl48.html#Camerlo07,https://doi.org/10.1305/ndjfl/1193667705 +Charles H. Applebaum,A stronger definition of a recursively infinite set.,1973,14,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl14.html#Applebaum73,https://doi.org/10.1305/ndjfl/1093891011 +Juan Barba Escriba,Two formal systems for situation semantics.,1992,33,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl33.html#Escriba92,https://doi.org/10.1305/ndjfl/1093636010 +Charles C. Pinter,A simple algebra of first order logic.,1973,14,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl14.html#Pinter73,https://doi.org/10.1305/ndjfl/1093891000 +Roderic A. Girle,Possibility pre-supposition free logics.,1974,15,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl15.html#Girle74,https://doi.org/10.1305/ndjfl/1093891198 +Alberto Pettorossi,A property which guarantees termination in weak combinatory logic and subtree replacement systems.,1981,22,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl22.html#Pettorossi81,https://doi.org/10.1305/ndjfl/1093883514 +Stephen Pollard,Book Review: Penelope Maddy. Naturalism in Mathematics.,1999,40,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl40.html#Pollard99,https://doi.org/10.1305/ndjfl/1038949544 +Jan M. Smith,Propositional Functions and Families of Types.,1989,30,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl30.html#Smith89,https://doi.org/10.1305/ndjfl/1093635159 +Michael Evangelist,Nonstandard propositional logics and their application to complexity theory.,1982,23,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl23.html#Evangelist82,https://doi.org/10.1305/ndjfl/1093870151 +John L. Hickman,Critical points of normal functions. I.,1977,18,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl18.html#Hickman77a,https://doi.org/10.1305/ndjfl/1093888118 +Roman Kossak,Minimal Satisfaction Classes with an Application to Rigid Models of Peano Arithmetic.,1991,32,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl32.html#KossakS91,https://doi.org/10.1305/ndjfl/1093635835 +George F. Schumm,A Henkin-style completeness proof for the pure implicational calculus.,1975,16,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl16.html#Schumm75,https://doi.org/10.1305/ndjfl/1093891803 +R. L. Goodstein,Satisfiability in a larger domain.,1974,15,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl15.html#Goodstein74,https://doi.org/10.1305/ndjfl/1093891491 +Wim Ruitenburg,Inequality in Constructive Mathematics.,1991,32,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl32.html#Ruitenburg91,https://doi.org/10.1305/ndjfl/1093635926 +Albert Visser,Propositional Logics of Closed and Open Substitutions over Heyting's Arithmetic.,2006,47,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl47.html#Visser06,https://doi.org/10.1305/ndjfl/1163775437 +Charles D. Brown,The ontological theorem.,1978,19,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl19.html#Brown78,https://doi.org/10.1305/ndjfl/1093888505 +Bangs L. Tapscott,A simplified natural deduction approach to certain modal systems.,1987,28,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl28.html#Tapscott87,https://doi.org/10.1305/ndjfl/1093637557 +David Ripley,Blurring: An Approach to Conflation.,2018,59,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl59.html#Ripley18,https://doi.org/10.1215/00294527-2017-0025 +Wayne D. Blizard,Multiset Theory.,1989,30,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl30.html#Blizard89,https://doi.org/10.1305/ndjfl/1093634995 +John Williamson,S5 without modal axioms.,1979,20,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl20.html#Williamson79,https://doi.org/10.1305/ndjfl/1093882663 +Erik Ellentuck,Incompleteness via simple sets.,1971,12,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl12.html#Ellentuck71,https://doi.org/10.1305/ndjfl/1093894227 +Jody Azzouni,A Simple Axiomatizable Theory of Truth.,1991,32,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl32.html#Azzouni91,https://doi.org/10.1305/ndjfl/1093635841 +Krister Segerberg,Validity and Satisfaction in Imperative Logic.,1990,31,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl31.html#Segerberg90,https://doi.org/10.1305/ndjfl/1093635415 +Thomas Macaulay Ferguson,Notes on the Model Theory of DeMorgan Logics.,2012,53,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl53.html#Ferguson12,https://doi.org/10.1215/00294527-1626554 +Manuel García-Carpintero Sánchez-Miguel,The Grounds for the Model-theoretic Account of the Logical Properties.,1993,34,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl34.html#Sanchez-Miguel93,https://doi.org/10.1305/ndjfl/1093634568 +V. Frederick Rickey,On creative definitions in first order functional calculi.,1978,19,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl19.html#Rickey78,https://doi.org/10.1305/ndjfl/1093888327 +James Loveys,Linear Reducts of the Complex Field.,2004,45,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl45.html#Loveys04,https://doi.org/10.1305/ndjfl/1099080210 +David Marker,The Number of Countable Differentially Closed Fields.,2007,48,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl48.html#Marker07a,https://doi.org/10.1305/ndjfl/1172787548 +Boleslaw Sobocinski,On the propositional system A of Vučković and its extension. II.,1964,5,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl5.html#Sobocinski64d,https://doi.org/10.1305/ndjfl/1093957884 +Jonathan P. Seldin,"Corrigendum to my paper: ""Note on definitional reductions"".",1969,10,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl10.html#Seldin69,https://doi.org/10.1305/ndjfl/1093893790 +Armin Tatzel,Bolzano's Theory of Ground and Consequence.,2002,43,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl43.html#Tatzel02,https://doi.org/10.1305/ndjfl/1071505767 +William H. Friedman,Uncertainties over distribution dispelled.,1978,19,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl19.html#Friedman78,https://doi.org/10.1305/ndjfl/1093888516 +Greg Restall,Paraconsistency Everywhere.,2002,43,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl43.html#Restall02,https://doi.org/10.1305/ndjfl/1074290713 +Tapani Hyttinen,Forking in Finite Models.,2015,56,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl56.html#Hyttinen15,https://doi.org/10.1215/00294527-2864316 +Albert C. Lewis,Book Review: Geraldine Brady. From Peirce to Skolem: A Neglected Chapter in the History of Logic.,2004,45,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl45.html#Lewis04,https://doi.org/10.1305/ndjfl/1099238448 +Guram Bezhanishvili,An Algebraic Approach to Subframe Logics. Modal Case.,2011,52,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl52.html#BezhanishviliGJ11,https://doi.org/10.1215/00294527-1306190 +Ivo Thomas,The written liar and Thomas Oliver.,1965,6,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl6.html#Thomas65,https://doi.org/10.1305/ndjfl/1093958258 +Rosalie Iemhoff,Special Issue on Admissible Rules and Unification.,2016,57,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl57.html#IemhoffM16,https://doi.org/10.1215/00294527-3646685 +Grigor Sargsyan,An Inner Model Proof of the Strong Partition Property for 8*21.,2014,55,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl55.html#Sargsyan14,https://doi.org/10.1215/00294527-2798745 +Dasharath Singh,On Ackermann's theory of sets.,1977,18,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl18.html#Singh77,https://doi.org/10.1305/ndjfl/1093888124 +,Errata.,2018,59,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl59.html#X18,https://doi.org/10.1215/00294527-2017-0031 +J. Jay Zeman,The propostitional calculus MC and its modal analog.,1968,9,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl9.html#Zeman68,https://doi.org/10.1305/ndjfl/1093893513 +Robert P. McArthur,Anderson's deontic logic and relevant implication.,1981,22,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl22.html#McArthur81,https://doi.org/10.1305/ndjfl/1093883399 +Czeslaw Lejewski,Studies in the axiomatic foundations of Boolean algebra. III.,1961,2,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl2.html#Lejewski61,https://doi.org/10.1305/ndjfl/1093956832 +Ian M. Hodkinson,Hybrid Formulas and Elementarily Generated Modal Logics.,2006,47,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl47.html#Hodkinson06,https://doi.org/10.1305/ndjfl/1168352661 +Steven T. Kuhn,Minimal Non-contingency Logic.,1995,36,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl36.html#Kuhn95,https://doi.org/10.1305/ndjfl/1040248456 +Martin M. Zuckerman,Arithmetic operations on ordinals.,1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#Zuckerman75,https://doi.org/10.1305/ndjfl/1093891903 +William J. Mitchell 0002,Adding Closed Unbounded Subsets of ω*2 with Finite Forcing.,2005,46,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl46.html#Mitchell05,https://doi.org/10.1305/ndjfl/1125409334 +David Makinson,Some embedding theorems for modal logic.,1971,12,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl12.html#Makinson71,https://doi.org/10.1305/ndjfl/1093894226 +Wim Ruitenburg,Basic Predicate Calculus.,1998,39,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl39.html#Ruitenburg98,https://doi.org/10.1305/ndjfl/1039293019 +James C. Owings,"Corrigendum to ""Diagonalization and the Recursion Theorem"".",1989,30,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl30.html#Owings89,http://projecteuclid.org/euclid.ndjfl/1093635004 +Ivo Thomas,In memoriam A. N. Prior (1914-1969).,1971,12,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl12.html#Thomas71,https://doi.org/10.1305/ndjfl/1093894212 +Alberto Moreno,Propositional logic in Juan de Santo Tomás.,1963,4,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl4.html#Moreno63,https://doi.org/10.1305/ndjfl/1093957502 +A. N. Prior,"Corrigendum to C. A. Meredith's and my paper: ""Equational logic"".",1969,10,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl10.html#Prior69b,https://doi.org/10.1305/ndjfl/1093893794 +Bowman L. Clarke,"A calculus of individuals based on ""connection"".",1981,22,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl22.html#Clarke81,https://doi.org/10.1305/ndjfl/1093883455 +Wolfgang Lenzen,A rare accident.,1978,19,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl19.html#Lenzen78a,https://doi.org/10.1305/ndjfl/1093888317 +Edward Schuh,Many-valued logics and the Lewis paradoxes.,1973,14,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl14.html#Schuh73,https://doi.org/10.1305/ndjfl/1093890899 +Mark Reynolds,A Decidable Temporal Logic of Parallelism.,1997,38,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl38.html#Reynolds97,https://doi.org/10.1305/ndjfl/1039700748 +John Thomas Canty,Note on the singularies of S5.,1966,7,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl7.html#CantyS66,https://doi.org/10.1305/ndjfl/1093958484 +Cristina Coppola,Point-free Foundation of Geometry and Multivalued Logic.,2010,51,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl51.html#CoppolaGM10,https://doi.org/10.1215/00294527-2010-024 +Julian C. Cole,Book Review: Jody Azzouni. Deflating Existential Consequence: A Case for Nominalism.,2005,46,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl46.html#Cole05,https://doi.org/10.1305/ndjfl/1117755153 +John A. Paulos,A model-theoretic explication of the theses of Kuhn and Whorf.,1980,21,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl21.html#Paulos80,https://doi.org/10.1305/ndjfl/1093882949 +Richard Statman,Solution to a problem of Chang and Lee.,1980,21,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl21.html#Statman80,https://doi.org/10.1305/ndjfl/1093883175 +Stanley E. Hayes,Extensions of T0.,1972,13,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl13.html#Hayes72,https://doi.org/10.1305/ndjfl/1093890712 +Donald Nute,An incompleteness theorem for conditional logic.,1978,19,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl19.html#Nute78,https://doi.org/10.1305/ndjfl/1093888512 +Ivo Thomas,S1®6* and Brouwerian axioms.,1963,4,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl4.html#Thomas63,https://doi.org/10.1305/ndjfl/1093957507 +Edward A. Hacker,The octagon of opposition.,1975,16,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl16.html#Hacker75,https://doi.org/10.1305/ndjfl/1093891793 +Douglas Walton,Circular demonstration and von Wright-Geach entailment.,1979,20,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl20.html#WaltonW79,https://doi.org/10.1305/ndjfl/1093882799 +Charles G. Morgan,Note on a strong liberated modal logic and its relevance to possible world skepticism.,1979,20,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl20.html#Morgan79a,https://doi.org/10.1305/ndjfl/1093882791 +Judith L. Gersting,Infinite series of regressive isols under addition.,1977,18,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl18.html#Gersting77,https://doi.org/10.1305/ndjfl/1093887935 +Leonard Goddard,The nature of reflexive paradoxes. I.,1983,24,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl24.html#GoddardJ83,https://doi.org/10.1305/ndjfl/1093870452 +Henryk Kotlarski,Automorphisms of Models of True Arithmetic: Recognizing Some Basic Open Subgroups.,1994,35,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl35.html#KotlarskiK94,https://doi.org/10.1305/ndjfl/1040609291 +J. Jay Zeman,Semantics for S4.3.2.,1972,13,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl13.html#Zeman72a,https://doi.org/10.1305/ndjfl/1093890706 +John Corcoran,Logical consequence in modal logic: Natural deduction in S5.,1969,10,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl10.html#CorcoranW69,https://doi.org/10.1305/ndjfl/1093893787 +Russell Pannier,Mindful logic: how to resolve some paradoxes of identity.,1988,29,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl29.html#PannierS88,https://doi.org/10.1305/ndjfl/1093637875 +Mary Sirridge,"Buridan: ""every proposition is false"" is false.",1978,19,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl19.html#Sirridge78,https://doi.org/10.1305/ndjfl/1093888399 +Newton C. A. da Costa,On the theory of inconsistent formal systems.,1974,15,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl15.html#Costa74a,https://doi.org/10.1305/ndjfl/1093891487 +Jordan Howard Sobel,Principia Mathematica description theory: the classical and an alternative notation.,1974,15,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl15.html#Sobel74,https://doi.org/10.1305/ndjfl/1093891199 +Horst Herrlich,Finiteness Classes and Small Violations of Choice.,2016,57,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl57.html#HerrlichHT16,https://doi.org/10.1215/00294527-3490101 +Margarita Otero,Generic Models of the Theory of Normal Z-Rings.,1992,33,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl33.html#Otero92,https://doi.org/10.1305/ndjfl/1093634398 +Thomas H. Payne,Effective extendability and fixed points.,1973,14,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl14.html#Payne73,https://doi.org/10.1305/ndjfl/1093890819 +C. F. M. Vermeulen,Incremental Semantics for Propositional Texts.,1994,35,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl35.html#Vermeulen94,https://doi.org/10.1305/ndjfl/1094061863 +Alan Weir,Neo-Fregeanism: An Embarrassment of Riches.,2003,44,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl44.html#Weir03,https://doi.org/10.1305/ndjfl/1082637613 +Karim Nour,A Conjecture on Numeral Systems.,1997,38,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl38.html#Nour97,https://doi.org/10.1305/ndjfl/1039724890 +Howard C. Wasserman,A second-order axiomatic theory of strings.,1978,19,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl19.html#Wasserman78,https://doi.org/10.1305/ndjfl/1093888511 +Raymond E. Jennings,Probabilistic considerations on modal semantics.,1981,22,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl22.html#JenningsS81,https://doi.org/10.1305/ndjfl/1093883457 +Radek Honzik,A Lifting Argument for the Generalized Grigorieff Forcing.,2016,57,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl57.html#HonzikV16,https://doi.org/10.1215/00294527-3459833 +J. E. Helmreich,Expansions of Ultrahomogeneous Graphs.,1995,36,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl36.html#Helmreich95,https://doi.org/10.1305/ndjfl/1040149357 +Martin W. Bunder,Alternative forms of propositional calculus for a given deduction theorem.,1979,20,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl20.html#Bunder79b,https://doi.org/10.1305/ndjfl/1093882668 +Boleslaw Sobocinski,A note on the generalized continuum hypothesis. II.,1963,4,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl4.html#Sobocinski63,https://doi.org/10.1305/ndjfl/1093957396 +John P. Burgess,Relevance: a fallacy?,1981,22,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl22.html#Burgess81b,https://doi.org/10.1305/ndjfl/1093883393 +Vladeta Vuckovic,Combinatorial operators and their quasi-inverses.,1971,12,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl12.html#Vuckovic71,https://doi.org/10.1305/ndjfl/1093894293 +Emily Michael,An examination of the influence of Boole's algebra on Peirce's developments in logic.,1979,20,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl20.html#Michael79b,https://doi.org/10.1305/ndjfl/1093882804 +Peter Perkins,Unsolvable problems for equational theories.,1967,8,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl8.html#Perkins67,https://doi.org/10.1305/ndjfl/1093956081 +Ildikó Sain,Concerning some cylindric algebra versions of the downward Löwenheim-Skolem theorem.,1988,29,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl29.html#Sain88,https://doi.org/10.1305/ndjfl/1093637932 +Michael C. Laskowski,The Categoricity Spectrum of Pseudo-elementary Classes.,1992,33,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl33.html#Laskowski92,https://doi.org/10.1305/ndjfl/1093634399 +Graham Priest,Sylvan's Box: a Short Story and Ten Morals.,1997,38,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl38.html#Priest97a,https://doi.org/10.1305/ndjfl/1039540770 +Gregory M. Johnson,Abstract Elementary Classes with Löwenheim-Skolem Number Cofinal with ω*.,2010,51,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl51.html#Johnson10,https://doi.org/10.1215/00294527-2010-022 +Peter Cholak,Introduction to the Special Issue on Vaught's Conjecture.,2007,48,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl48.html#Cholak07,https://doi.org/10.1305/ndjfl/1172787540 +Kenneth M. Sayre,Syllogistic inference within the propositional calculus.,1964,5,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl5.html#Sayre64,https://doi.org/10.1305/ndjfl/1093957885 +K. E. Pledger,Location of some modal systems.,1980,21,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl21.html#Pledger80,https://doi.org/10.1305/ndjfl/1093883252 +Yvon Gauthier,Foundational problems of number theory.,1978,19,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl19.html#Gauthier78,https://doi.org/10.1305/ndjfl/1093888210 +José M. Méndez,A General Characterization of the Variable-Sharing Property by Means of Logical Matrices.,2012,53,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl53.html#MendezR12,https://doi.org/10.1215/00294527-1715707 +Albert Sade,Sur les axiomes de Götlind.,1970,11,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl11.html#Sade70,https://doi.org/10.1305/ndjfl/1093893861 +William Russell Belding,Induction on fields of binary relations.,1972,13,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl13.html#Belding72,https://doi.org/10.1305/ndjfl/1093894714 +Nathan C. Carter,Reflexive Intermediate First-Order Logics.,2008,49,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl49.html#Carter08,https://doi.org/10.1215/00294527-2007-005 +Hugues Leblanc,Structural rules of inference.,1962,3,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl3.html#Leblanc62,https://doi.org/10.1305/ndjfl/1093957241 +Martin W. Bunder,Deduction theorems in significance logics.,1979,20,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl20.html#Bunder79e,https://doi.org/10.1305/ndjfl/1093882680 +Roy A. Sorensen,Precisification by means of vague predicates.,1988,29,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl29.html#Sorensen88a,https://doi.org/10.1305/ndjfl/1093637876 +Ermanno Bencivenga,A free logic with simple and complex predicates.,1986,27,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl27.html#BencivengaL86,https://doi.org/10.1305/ndjfl/1093636615 +Boleslaw Sobocinski,On the single axioms of protothetic. II.,1961,2,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl2.html#Sobocinski61a,https://doi.org/10.1305/ndjfl/1093956834 +Richard E. Grandy,"Semantic intentions and linguistic structure: comments on Schiffer's paper: ""Intention-based semantics"".",1982,23,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl23.html#Grandy82,https://doi.org/10.1305/ndjfl/1093870092 +Fredrik Engström,Transplendent Models: Expansions Omitting a Type.,2012,53,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl53.html#EngstromK12,https://doi.org/10.1215/00294527-1716739 +Aldo Antonelli,Frege's New Science.,2000,41,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl41.html#AntonelliM00,https://doi.org/10.1305/ndjfl/1038336844 +David E. Cooper,Referential occurrence.,1980,21,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl21.html#Cooper80,https://doi.org/10.1305/ndjfl/1093882953 +Hugues Leblanc,Proof routines for the propositional calculus.,1963,4,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl4.html#Leblanc63,https://doi.org/10.1305/ndjfl/1093957500 +Nuel Belnap,Linear Logic Displayed.,1990,31,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl31.html#Belnap90,https://doi.org/10.1305/ndjfl/1093635329 +W. D. Hart,Skolem Redux.,2000,41,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl41.html#Hart00,https://doi.org/10.1305/ndjfl/1038336883 +Brian Weatherson,From Classical to Intuitionistic Probability.,2003,44,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl44.html#Weatherson03,https://doi.org/10.1305/ndjfl/1082637807 +Ivo Thomas,S1®6* and generalized S5-axioms.,1963,4,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl4.html#Thomas63a,https://doi.org/10.1305/ndjfl/1093957508 +Mariangiola Dezani-Ciancaglini,The Semantics of Entailment Omega.,2002,43,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl43.html#Dezani-CiancagliniMM02,https://doi.org/10.1305/ndjfl/1074290712 +Peter Schroeder-Heister,A model-theoretic reconstruction of Frege's permutation argument.,1987,28,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl28.html#Schroeder-Heister87,https://doi.org/10.1305/ndjfl/1093636847 +Tomoyuki Suzuki,The Distributivity on Bi-Approximation Semantics.,2016,57,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl57.html#Suzuki16,https://doi.org/10.1215/00294527-3542442 +Bernhard Heinemann,Topological Modal Logics Satisfying Finite Chain Conditions.,1998,39,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl39.html#Heinemann98,https://doi.org/10.1305/ndjfl/1039182254 +Michael Detlefsen,Introduction to Logicism and the Paradoxes: A Reappraisal.,2000,41,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl41.html#Detlefsen00,https://doi.org/10.1305/ndjfl/1038336840 +Charles F. Kielkopf,Kripke's axiomatization of S2.,1972,13,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl13.html#Kielkopf72a,https://doi.org/10.1305/ndjfl/1093890625 +Frank Fox,A note on a consistency proof.,1974,15,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl15.html#Fox74,https://doi.org/10.1305/ndjfl/1093891214 +Joost J. Joosten,The Closed Fragment of the Interpretability Logic of PRA with a Constant for.,2005,46,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl46.html#Joosten05,https://doi.org/10.1305/ndjfl/1117755145 +Ross T. Brady,The consistency of the axioms of abstraction and extensionality in a three-valued logic.,1971,12,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl12.html#Brady71,https://doi.org/10.1305/ndjfl/1093894366 +Joseph Jurcic,On defining sentential connectives.,1987,28,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl28.html#Jurcic87,https://doi.org/10.1305/ndjfl/1093636938 +John Lake,Two notes on Ackermann's set theory.,1976,17,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl17.html#Lake76,https://doi.org/10.1305/ndjfl/1093887639 +Wen Chean Teh,Ramsey Algebras and Formal Orderly Terms.,2017,58,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl58.html#Teh17,https://doi.org/10.1215/00294527-3800648 +Berndard D. Katz,The distribution of terms.,1976,17,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl17.html#KatzM76,https://doi.org/10.1305/ndjfl/1093887536 +Thomas E. Patton,A system of quantificational deduction.,1963,4,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl4.html#Patton63,https://doi.org/10.1305/ndjfl/1093957501 +Robert Cowen,Compactness via prime semilattices.,1983,24,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl24.html#Cowen83,https://doi.org/10.1305/ndjfl/1093870310 +Stewart Shapiro,Frege Meets Dedekind: A Neologicist Treatment of Real Analysis.,2000,41,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl41.html#Shapiro00,https://doi.org/10.1305/ndjfl/1038336880 +Stephen Croddy,Russell on the meaning of descriptions.,1976,17,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl17.html#Croddy76,https://doi.org/10.1305/ndjfl/1093887635 +Saharon Shelah,The Nonaxiomatizability of L(Q2ℵ*1) by Finitely Many Schemata.,1990,31,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl31.html#ShelahS90,https://doi.org/10.1305/ndjfl/1093635328 +Charles D. Parsons,"Corrigendum to my paper: ""A propositional calculus intermediate between the minimal calculus and the classical"".",1969,10,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl10.html#Parsons69,https://doi.org/10.1305/ndjfl/1093893727 +Gerald J. Massey,Binary closure-algebraic operations that are functionally complete.,1970,11,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl11.html#Massey70,https://doi.org/10.1305/ndjfl/1093894004 +Martin W. Bunder,Scott's models and illative combinatory logic.,1979,20,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl20.html#Bunder79a,https://doi.org/10.1305/ndjfl/1093882667 +Boleslaw Sobocinski,Certain formulas equivalent to the axiom of choice.,1961,2,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl2.html#Sobocinski61d,https://doi.org/10.1305/ndjfl/1093956974 +Ivo Thomas,A proof of a theorem of Ł*ukasiewicz.,1971,12,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl12.html#Thomas71a,https://doi.org/10.1305/ndjfl/1093894376 +Shimon Garti,On the Spectrum of Characters of Ultrafilters.,2018,59,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl59.html#GartiMS18,https://doi.org/10.1215/00294527-2018-0006 +Robert K. Meyer,A note on and#8477*->* matrices.,1983,24,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl24.html#Meyer83,https://doi.org/10.1305/ndjfl/1093870448 +Charles B. Daniels,An analysis of the subjunctive conditional.,1980,21,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl21.html#DanielsF80,https://doi.org/10.1305/ndjfl/1093883247 +Juliusz Reichbach,A note about connection of the first-order functional calculus with many-valued propositional calculi.,1964,5,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl5.html#Reichbach64,https://doi.org/10.1305/ndjfl/1093957808 +David Meredith 0002,On a property of certain propositional formulae.,1973,14,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl14.html#000273,https://doi.org/10.1305/ndjfl/1093890814 +Ross T. Brady,A theory of classes and individuals based on a 3-valued significance logic.,1980,21,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl21.html#Brady80b,https://doi.org/10.1305/ndjfl/1093883055 +David Atkinson,Justification by an Infinity of Conditional Probabilities.,2009,50,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl50.html#AtkinsonP09,https://doi.org/10.1215/00294527-2009-005 +Kyriakos Keremedis,On Sequentially Compact Subspaces of and#8477* without the Axiom of Choice.,2003,44,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl44.html#KeremedisT03,https://doi.org/10.1305/ndjfl/1091030855 +Jekeri Okee,Completeness of the algebra of species.,1976,17,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl17.html#Okee76a,https://doi.org/10.1305/ndjfl/1093887630 +George Leibman,The Consistency Strength of MPCCC(R).,2010,51,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl51.html#Leibman10,https://doi.org/10.1215/00294527-2010-011 +John P. Cleave,The axiomatisation of theories of material necessity.,1979,20,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl20.html#Cleave79,https://doi.org/10.1305/ndjfl/1093882415 +Pawel Garbacz,Logics of Relative Identity.,2002,43,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl43.html#Garbacz02,https://doi.org/10.1305/ndjfl/1071505768 +V. Frederick Rickey,Axiomatic inscriptional syntax. I. General syntax.,1972,13,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl13.html#Rickey72,https://doi.org/10.1305/ndjfl/1093894621 +Alfred Dolich,A Note on Weakly O-Minimal Structures and Definable Completeness.,2007,48,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl48.html#Dolich07,https://doi.org/10.1305/ndjfl/1179323268 +B. Davidson,Modal trees for T and S5.,1977,18,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl18.html#DavidsonJP77,https://doi.org/10.1305/ndjfl/1093888127 +Rodney G. Downey,On and#928*10 Classes and their Ranked Points.,1991,32,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl32.html#Downey91,https://doi.org/10.1305/ndjfl/1093635924 +Aladdin M. Yaqub,Book Review: Marian David. Correspondence and Disquotation: An Essay on the Nature of Truth.,1998,39,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl39.html#Yaqub98,https://doi.org/10.1305/ndjfl/1039293027 +Jim D. Mackenzie,How to stop talking to tortoises.,1979,20,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl20.html#Mackenzie79,https://doi.org/10.1305/ndjfl/1093882790 +E. William Chapin,Set-valued set theory. I.,1974,15,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl15.html#Chapin74,https://doi.org/10.1305/ndjfl/1093891496 +J. Donald Monk,On General Boundedness and Dominating Cardinals.,2004,45,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl45.html#Monk04,https://doi.org/10.1305/ndjfl/1099080208 +Gonzalo E. Reyes,A Topos-Theoretic Approach to Reference and Modality.,1991,32,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl32.html#Reyes91,https://doi.org/10.1305/ndjfl/1093635834 +S. Summersbee,Programming the functions of formal logic.,1962,3,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl3.html#SummersbeeW62,https://doi.org/10.1305/ndjfl/1093957230 +Saharon Shelah,Some notes on iterated forcing with 2ℵ*0>*ℵ*2.,1988,29,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl29.html#Shelah88,https://doi.org/10.1305/ndjfl/1093637766 +Sergei N. Artëmov,On propositional quantifiers in provability logic.,1993,34,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl34.html#ArtemovB93,https://doi.org/10.1305/ndjfl/1093634729 +Robert E. Clay,Two results in Leśniewski's mereology.,1973,14,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl14.html#Clay73,https://doi.org/10.1305/ndjfl/1093891110 +Frederick A. Johnson,Models for Modal Syllogisms.,1989,30,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl30.html#Johnson89,https://doi.org/10.1305/ndjfl/1093635084 +Michael Detlefsen,Introduction.,1989,30,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl30.html#Detlefsen89, +Daniel Gogol,Formulas with two generalized quantifiers.,1975,16,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl16.html#Gogol75,https://doi.org/10.1305/ndjfl/1093891621 +Peter Swiggart,Self reference in formal languages.,1974,15,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl15.html#Swiggart74,https://doi.org/10.1305/ndjfl/1093891493 +Ermanno Bencivenga,A weak free logic with the existence sign.,1980,21,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl21.html#Bencivenga80,https://doi.org/10.1305/ndjfl/1093883180 +Shih-Chao Liu,Four types of general recursive well-orderings.,1962,3,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl3.html#Liu62,https://doi.org/10.1305/ndjfl/1093957150 +Steven E. Boër,Attributive names.,1978,19,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl19.html#Boer78,https://doi.org/10.1305/ndjfl/1093888224 +Steven Awodey,Ultrasheaves and Double Negation.,2004,45,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl45.html#AwodeyE04,https://doi.org/10.1305/ndjfl/1099238447 +William K. Goosens,Alternative axiomatizations of elementary probability theory.,1979,20,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl20.html#Goosens79,https://doi.org/10.1305/ndjfl/1093882420 +Ian Pratt-Hartmann,More Fragments of Language.,2006,47,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl47.html#Pratt-HartmannT06,https://doi.org/10.1305/ndjfl/1153858644 +Pavlos Peppas,Constructive Modelings for Theory Change.,1995,36,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl36.html#PeppasW95,https://doi.org/10.1305/ndjfl/1040308831 +Tapani Hyttinen,A Remark on Algebraic Closure and Orthogonality.,1998,39,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl39.html#Hyttinen98,https://doi.org/10.1305/ndjfl/1039118867 +J. C. Beall,A Note on Freedom from Detachment in the Logic of Paradox.,2013,54,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl54.html#BeallFS13,https://doi.org/10.1215/00294527-1731353 +Mohammed Belkasmi,Positive Model Theory and Amalgamations.,2014,55,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl55.html#Belkasmi14,https://doi.org/10.1215/00294527-2420648 +Rohan French,A Note on the Logic of Eventual Permanence for Linear Time.,2008,49,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl49.html#French08,https://doi.org/10.1215/00294527-2008-003 +Arnon Avron,On purely relevant logics.,1986,27,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl27.html#Avron86,https://doi.org/10.1305/ndjfl/1093636610 +Bob Hale,Abstraction and Set Theory.,2000,41,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl41.html#Hale00,https://doi.org/10.1305/ndjfl/1038336882 +Leroy F. Meyers,Simultaneous versus successive quantification.,1973,14,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl14.html#Meyers73,https://doi.org/10.1305/ndjfl/1093890898 +Tomasz Kowalski,Self-implications in BCI.,2008,49,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl49.html#Kowalski08,https://doi.org/10.1215/00294527-2008-013 +Rohan French,Denumerably Many Post-Complete Normal Modal Logics with Propositional Constants.,2012,53,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl53.html#French12,https://doi.org/10.1215/00294527-1722746 +Earline Jennifer Ashworth,An early fifteenth century discussion of infinite sets.,1977,18,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl18.html#Ashworth77,https://doi.org/10.1305/ndjfl/1093887925 +Steven E. Boër,Logical truth and indeterminacy.,1977,18,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl18.html#Boer77,https://doi.org/10.1305/ndjfl/1093887822 +Theodore F. Sullivan,The name solid as primitive in projective geometry.,1972,13,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl13.html#Sullivan72,https://doi.org/10.1305/ndjfl/1093894627 +Alan H. Mekler,Stationary logic and its friends. I.,1985,26,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl26.html#MeklerS85,https://doi.org/10.1305/ndjfl/1093870821 +Robert E. Clay,A standard form for Ł*ukasiewicz many-valued logics.,1963,4,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl4.html#Clay63,https://doi.org/10.1305/ndjfl/1093957395 +Frederick A. Johnson,Counting Functions.,1992,33,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl33.html#Johnson92,https://doi.org/10.1305/ndjfl/1093634488 +Norwood Russell Hanson,A note on on the Gödel theorem.,1961,2,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl2.html#Hanson61a,https://doi.org/10.1305/ndjfl/1093956973 +Robert W. Murungi,Lewis' postulate of existence disarmed.,1980,21,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl21.html#Murungi80,https://doi.org/10.1305/ndjfl/1093882954 +Arthur W. Apter,On the Consistency Strength of Two Choiceless Cardinal Patterns.,1999,40,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl40.html#Apter99,https://doi.org/10.1305/ndjfl/1022615614 +Alan Bundy,A note on omitting the replacement schema.,1973,14,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl14.html#Bundy73,https://doi.org/10.1305/ndjfl/1093890817 +Giorgi Japaridze,The Propositional Logic of Elementary Tasks.,2000,41,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl41.html#Japaridze00,https://doi.org/10.1305/ndjfl/1038234610 +Juan Carlos Martínez,Decision procedure for a class of (Lχ9*1χ9*)t-types of T3 spaces.,1987,28,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl28.html#Martinez87,https://doi.org/10.1305/ndjfl/1093636945 +J. Michael Orenduff,Are modal contexts referentially opaque?,1977,18,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl18.html#Orenduff77,https://doi.org/10.1305/ndjfl/1093887827 +George Englebretsen,On propositional form.,1980,21,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl21.html#Englebretsen80,https://doi.org/10.1305/ndjfl/1093882942 +C. Anthony Anderson,Semantical antinomies in the logic of sense and denotation.,1987,28,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl28.html#Anderson87,https://doi.org/10.1305/ndjfl/1093636849 +Hugh S. Chandler,Logical continuity.,1968,9,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl9.html#Chandler68,https://doi.org/10.1305/ndjfl/1093893518 +Makoto Kikuchi,On Formalization of Model-Theoretic Proofs of Gödel's Theorems.,1994,35,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl35.html#KikuchiT94,https://doi.org/10.1305/ndjfl/1040511346 +A. N. Prior,Axiomatisations of the modal calculus Q.,1964,5,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl5.html#Prior64,https://doi.org/10.1305/ndjfl/1093957881 +John Baldwin,Upward Stability Transfer for Tame Abstract Elementary Classes.,2006,47,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl47.html#BaldwinKV06,https://doi.org/10.1305/ndjfl/1153858652 +Saharon Shelah,Incompactness in regular cardinals.,1985,26,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl26.html#Shelah85a,https://doi.org/10.1305/ndjfl/1093870869 +Luis E. Sanchis,Functionals defined by recursion.,1967,8,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl8.html#Sanchis67,https://doi.org/10.1305/ndjfl/1093956080 +Mojtaba Aghaei,Combinatorial Unprovability Proofs and Their Model-Theoretic Counterparts.,2014,55,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl55.html#AghaeiK14,https://doi.org/10.1215/00294527-2420654 +Michael C. Gemignani,On the independence of certain axioms in the definition of an m-arrangement.,1967,8,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl8.html#Gemignani67a,https://doi.org/10.1305/ndjfl/1093956086 +Alfred Horn,Free S5 algebras.,1978,19,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl19.html#Horn78,https://doi.org/10.1305/ndjfl/1093888226 +Juliusz Reichbach,On characterizations of the first-order functional calculus.,1961,2,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl2.html#Reichbach61,https://doi.org/10.1305/ndjfl/1093956749 +George Goe,A reconstruction of formal logic.,1966,7,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl7.html#Goe66,https://doi.org/10.1305/ndjfl/1093958555 +A. Burrieza,Modal trees: correction to a decision procedure for S5 (and T).,1987,28,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl28.html#BurriezaL87,https://doi.org/10.1305/ndjfl/1093637558 +Paolo Dau,Russell's first theory of denoting and quantification.,1986,27,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl27.html#Dau86,https://doi.org/10.1305/ndjfl/1093636532 +John Corcoran,Boole's criteria for validity and invalidity.,1980,21,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl21.html#CorcoranW80,https://doi.org/10.1305/ndjfl/1093883246 +Andrés R. Raggio,A simple proof of Herbrand's theorem.,1974,15,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl15.html#Raggio74,https://doi.org/10.1305/ndjfl/1093891413 +Albert Visser,Dynamic Bracketing and Discourse Representation.,1996,37,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl37.html#VisserV96,https://doi.org/10.1305/ndjfl/1040046091 +Charles H. Applebaum,Isomorphisms of ω*-groups.,1971,12,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl12.html#Applebaum71,https://doi.org/10.1305/ndjfl/1093894224 +Jean-François Pabion,Beth's tableaux for relevant logic.,1979,20,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl20.html#Pabion79,https://doi.org/10.1305/ndjfl/1093882811 +Silvia Barbina,Generic Expansions of Countable Models.,2012,53,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl53.html#BarbinaZ12,https://doi.org/10.1215/00294527-1722728 +Eduardo L. Fermé,Semi-Contraction: Axioms and Construction.,1998,39,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl39.html#FermeR98,https://doi.org/10.1305/ndjfl/1039182250 +James Andrew Fulton,Unary predicates.,1974,15,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl15.html#Fulton74,https://doi.org/10.1305/ndjfl/1093891497 +Nino B. Cocchiarella,The theory of homogeneous simple types as a second-order logic.,1979,20,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl20.html#Cocchiarella79,https://doi.org/10.1305/ndjfl/1093882656 +Florian Pelupessy,Phase Transition Results for Three Ramsey-Like Theorems.,2016,57,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl57.html#Pelupessy16,https://doi.org/10.1215/00294527-3452807 +Robert J. Farrell,A note on the truth-table for $p \supset q$.,1975,16,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl16.html#Farrell75,https://doi.org/10.1305/ndjfl/1093891713 +Paul Thom,Aristotle's syllogistic.,1979,20,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl20.html#Thom79,https://doi.org/10.1305/ndjfl/1093882796 +Noam Greenberg,Two More Characterizations of K-Triviality.,2018,59,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl59.html#GreenbergMMT18,https://doi.org/10.1215/00294527-2017-0021 +James Cain,The Theory of Computability Developed in Terms of Satisfaction.,1999,40,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl40.html#Cain99,https://doi.org/10.1305/ndjfl/1012429716 +Hajime Ishihara,Weak König's Lemma Implies Brouwer's Fan Theorem: A Direct Proof.,2006,47,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl47.html#Ishihara06,https://doi.org/10.1305/ndjfl/1153858649 +Boleslaw Sobocinski,Equational two axiom bases for Boolean algebras and some other lattice theories.,1979,20,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl20.html#Sobocinski79,https://doi.org/10.1305/ndjfl/1093882808 +Leonardo Pasini,Generalized Hardy fields in several variables.,1988,29,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl29.html#Pasini88,https://doi.org/10.1305/ndjfl/1093637868 +George F. Schumm,K and Z.,1974,15,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl15.html#Schumm74a,https://doi.org/10.1305/ndjfl/1093891305 +James Wilkinson Miller,The logic of the synthetic a priori.,1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#Miller75,https://doi.org/10.1305/ndjfl/1093891881 +John Grant,"Corrigendum to my paper: ""Recognizable algebras of formulas"".",1975,16,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl16.html#Grant75,https://doi.org/10.1305/ndjfl/1093891620 +Jean A. Larson,Ramsey Theory for Countable Binary Homogeneous Structures.,2005,46,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl46.html#Larson05,https://doi.org/10.1305/ndjfl/1125409332 +Satoshi Miura,A note on Thomason's representation of S5.,1977,18,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl18.html#MiuraO77,https://doi.org/10.1305/ndjfl/1093887836 +Metodej K. Chytil,Sémantique des formules logiques en forme d'équivalence n-aire (demi-modèles).,1977,18,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl18.html#Chytil77,https://doi.org/10.1305/ndjfl/1093888015 +Patrick Blackburn,Nominal Tense Logic.,1993,34,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl34.html#Blackburn93,https://doi.org/10.1305/ndjfl/1093634564 +Leon Harkleroad,Recursive Surreal Numbers.,1990,31,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl31.html#Harkleroad90,https://doi.org/10.1305/ndjfl/1093635498 +Martin W. Bunder,A paradox in illative combinatory logic.,1970,11,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl11.html#Bunder70,https://doi.org/10.1305/ndjfl/1093894077 +Stephen H. McCleary,Primitive recursive computations.,1967,8,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl8.html#McCleary67,https://doi.org/10.1305/ndjfl/1094068844 +Andrés R. Raggio,Propositional sequence-calculi for inconsistent systems.,1968,9,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl9.html#Raggio68,https://doi.org/10.1305/ndjfl/1093893524 +Timothy Williamson,An Alternative Rule of disjunction in modal logic.,1992,33,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl33.html#Williamson92,https://doi.org/10.1305/ndjfl/1093636011 +Mary Sirridge,William of Sherwood on propositions and their parts.,1974,15,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl15.html#Sirridge74,https://doi.org/10.1305/ndjfl/1093891407 +Norbert Brunner,Sequential compactness and the axiom of choice.,1983,24,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl24.html#Brunner83,https://doi.org/10.1305/ndjfl/1093870222 +Thomas W. Scharle,A diagram of the functors of the two-valued propositional calculus.,1962,3,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl3.html#Scharle62,https://doi.org/10.1305/ndjfl/1093957317 +Stephen L. Bloom,"Errata: ""Investigations into the sentential calculus with identity"".",1976,17,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl17.html#BloomS76,http://projecteuclid.org/euclid.ndjfl/1093887739 +Torsten Hahmann,Complementation in Representable Theories of Region-Based Space.,2013,54,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl54.html#HahmannG13,https://doi.org/10.1215/00294527-1731344 +Genoveva Martí,Rethinking Quine's Argument on the Collapse of Modal Distinctions.,1997,38,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl38.html#Marti97,https://doi.org/10.1305/ndjfl/1039724891 +Kit Fine,For so many individuals.,1972,13,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl13.html#Fine72a,https://doi.org/10.1305/ndjfl/1093890725 +Aleksandar Kron,A note on E.,1972,13,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl13.html#Kron72,https://doi.org/10.1305/ndjfl/1093890632 +Dorella Bellè,The Decidability of the and∀*∃* Class and the Axiom of Foundation.,2001,42,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl42.html#BelleP01,https://doi.org/10.1305/ndjfl/1054301354 +Carl H. Smith,A note on arbitrarily complex recursive functions.,1988,29,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl29.html#Smith88,https://doi.org/10.1305/ndjfl/1093637869 +Sergio A. Celani,A Closer Look at Some Subintuitionistic Logics.,2001,42,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl42.html#CelaniJ01,https://doi.org/10.1305/ndjfl/1063372244 +Rodney G. Downey,Decidability and Computability of Certain Torsion-Free Abelian Groups.,2010,51,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl51.html#DowneyGKKKMT10,https://doi.org/10.1215/00294527-2010-006 +Stephen Binns,Hyperimmunity in 2ℓ9*.,2007,48,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl48.html#Binns07,https://doi.org/10.1305/ndjfl/1179323269 +Dolph Ulrich,On a modal system of R. A. Bull's.,1976,17,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl17.html#Ulrich76,https://doi.org/10.1305/ndjfl/1093887646 +Charles McCarty,Subcountability under realizability.,1986,27,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl27.html#McCarty86,https://doi.org/10.1305/ndjfl/1093636613 +Bowman L. Clarke,Individuals and points.,1985,26,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl26.html#Clark85,https://doi.org/10.1305/ndjfl/1093870761 +Zachary Ernst,Shortest Axiomatizations of Implicational S4 and S5.,2002,43,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl43.html#ErnstFHW02,https://doi.org/10.1305/ndjfl/1074290715 +George C. Nelson,Isomorphism types of the hyperarithmetic sets Ha.,1978,19,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl19.html#Nelson78,https://doi.org/10.1305/ndjfl/1093888204 +William G. Lycan,Logical Constants and the Glory of Truth-Conditional Semantics.,1989,30,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl30.html#Lycan89,https://doi.org/10.1305/ndjfl/1093635156 +Alexander Paseau,Fitch's Argument and Typing Knowledge.,2008,49,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl49.html#Paseau08,https://doi.org/10.1215/00294527-2008-005 +B. Jack Copeland,Tense trees: a tree system for Kt.,1983,24,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl24.html#Copeland83,https://doi.org/10.1305/ndjfl/1093870374 +V. Yu. Shavrukov,Uniform Density in Lindenbaum Algebras.,2014,55,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl55.html#ShavrukovV14,https://doi.org/10.1215/00294527-2798754 +Karel Lambert,On logic an existence.,1965,6,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl6.html#Lambert65,https://doi.org/10.1305/ndjfl/1093958153 +Robert E. Tax,On the intuitionistic equivalential calculus.,1973,14,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl14.html#Tax73,https://doi.org/10.1305/ndjfl/1093891099 +Michael C. Gemignani,A characterization of a spherical m-arrangement.,1970,11,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl11.html#Gemignani70,https://doi.org/10.1305/ndjfl/1093893865 +Thomas E. Patton,A liberalized system of quantificational deduction.,1964,5,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl5.html#Patton64,https://doi.org/10.1305/ndjfl/1093957977 +Carsten Butz,Syntax and Semantics of the Logic Lλ*χ9*χ9*.,1997,38,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl38.html#Butz97,https://doi.org/10.1305/ndjfl/1039700744 +Robert D. Carnes,Intermediate Quantifiers Versus Percentages.,1991,32,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl32.html#CarnesP91,https://doi.org/10.1305/ndjfl/1093635754 +Czeslaw Lejewski,A single axiom for the mereological notion of proper part.,1967,8,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl8.html#Lejewski67,https://doi.org/10.1305/ndjfl/1094068839 +Alexandre V. Borovik,An Integer Construction of Infinitesimals: Toward a Theory of Eudoxus Hyperreals.,2012,53,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl53.html#BorovikJK12,https://doi.org/10.1215/00294527-1722755 +Wallace A. Murphree,The Numerical Syllogism and Existential Presupposition.,1997,38,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl38.html#Murphree97,https://doi.org/10.1305/ndjfl/1039700696 +Brian MacPherson,Is It Possible that Belief Isn't Necessary?,1993,34,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl34.html#Macpherson93,https://doi.org/10.1305/ndjfl/1093634560 +Joseph Vidal-Rosset,Why Intuitionistic Relevant Logic Cannot Be a Core Logic.,2017,58,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl58.html#Vidal-Rosset17,https://doi.org/10.1215/00294527-3839326 +Rangaswamy V. Setlur,Duality in finite many-valued logic.,1971,12,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl12.html#Setlur71,https://doi.org/10.1305/ndjfl/1093894218 +Leo Harrington,Some exact equiconsistency results in set theory.,1985,26,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl26.html#HarringtonS85,https://doi.org/10.1305/ndjfl/1093870823 +Tomasz F. Skura,Syntactic Refutations against Finite Models in Modal Logic.,1994,35,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl35.html#Skura94,https://doi.org/10.1305/ndjfl/1040408615 +John Williamson,An ambiguity in modal logic.,1978,19,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl19.html#Williamson78,https://doi.org/10.1305/ndjfl/1093888411 +Todd Eisworth,On Ideals Related to I[λ*].,2005,46,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl46.html#Eisworth05,https://doi.org/10.1305/ndjfl/1125409328 +Robert E. Clay,Single axioms for atomistic and atomless mereology.,1975,16,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl16.html#Clay75a,https://doi.org/10.1305/ndjfl/1093891792 +R. A. Bull,Survey of generalizations of Urquhart semantics.,1987,28,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl28.html#Bull87,https://doi.org/10.1305/ndjfl/1093636940 +Sibajiban,The middle term.,1968,9,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl9.html#Sibajiban68,https://doi.org/10.1305/ndjfl/1093893459 +Daisuke Ikegami,Boolean-Valued Second-Order Logic.,2015,56,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl56.html#IkegamiV15,https://doi.org/10.1215/00294527-2835065 +Mark A. Brown,Generalized quantifiers and the square of opposition.,1984,25,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl25.html#Brown84,https://doi.org/10.1305/ndjfl/1093870683 +George Englebretsen,Linear Diagrams for Syllogisms (with Relatitonals).,1992,33,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl33.html#Englebretsen92,https://doi.org/10.1305/ndjfl/1093636009 +Samuel R. Buss,The Modal Logic of Pure Provability.,1990,31,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl31.html#Buss90,https://doi.org/10.1305/ndjfl/1093635417 +Alberto Zanardo,Individual concepts as propositional variables in MLν+1.,1984,25,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl25.html#Zanardo84,https://doi.org/10.1305/ndjfl/1093870685 +Joel David Hamkins,Indestructible Strong Unfoldability.,2010,51,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl51.html#HamkinsJ10,https://doi.org/10.1215/00294527-2010-018 +Scott Soames,Incomplete definite descriptions.,1986,27,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl27.html#Soames86,https://doi.org/10.1305/ndjfl/1093636680 +Donald Nute,Extensional equivalence of simple and general utilitarian principles.,1979,20,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl20.html#Nute79,https://doi.org/10.1305/ndjfl/1093882399 +Stephen G. Simpson,Baire Categoricity and and#931*01-Induction.,2014,55,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl55.html#Simpson14,https://doi.org/10.1215/00294527-2377887 +Leonard Goddard,Towards a logic of significance.,1968,9,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl9.html#Goddard68,https://doi.org/10.1305/ndjfl/1093893460 +S. Summersbee,Programming the functions of formal logic. II. Multi-valued logics.,1963,4,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl4.html#SummersbeeW63,https://doi.org/10.1305/ndjfl/1093957656 +Kai Frederick Wehmeier,Wittgensteinian Predicate Logic.,2004,45,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl45.html#Wehmeier04,https://doi.org/10.1305/ndjfl/1094155275 +Allan Bäck,Syllogisms with reduplication in Aristotle.,1982,23,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl23.html#Back82,https://doi.org/10.1305/ndjfl/1093870157 +William H. Hanson,Validity in intensional languages: a new approach.,1985,26,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl26.html#HansonH85,https://doi.org/10.1305/ndjfl/1093870758 +Steffen Lempp,Filters on Computable Posets.,2006,47,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl47.html#LemppM06,https://doi.org/10.1305/ndjfl/1168352662 +Daisuke Souma,An Algebraic Approach to the Disjunction Property of Substructural Logics.,2007,48,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl48.html#Souma07,https://doi.org/10.1305/ndjfl/1193667706 +Xuegang Wang,A Variant of Thomason's First-Order Logic CF Based on Situations.,1998,39,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl39.html#WangM98,https://doi.org/10.1305/ndjfl/1039293021 +Noam Greenberg,Embedding and Coding below a 1-Generic Degree.,2003,44,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl44.html#GreenbergM03,https://doi.org/10.1305/ndjfl/1091122498 +Jean Drabbe,Sur une propriété de préservation.,1971,12,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl12.html#Drabbe71,https://doi.org/10.1305/ndjfl/1093894375 +Richard L. Poss,Weak forms of the axiom of constructibility.,1971,12,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl12.html#Poss71,https://doi.org/10.1305/ndjfl/1093894291 +John A. Barker,Presupposition and entailment.,1976,17,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl17.html#Barker76,https://doi.org/10.1305/ndjfl/1093887535 +Su Gao,Complexity Ranks of Countable Models.,2007,48,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl48.html#Gao07,https://doi.org/10.1305/ndjfl/1172787543 +Kenneth W. Collier,Physical modalities and the system E.,1973,14,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl14.html#Collier73,https://doi.org/10.1305/ndjfl/1093890892 +Claudio Pizzi,Decision Procedures for Logics of Consequential Implication.,1991,32,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl32.html#Pizzi91,https://doi.org/10.1305/ndjfl/1093635934 +Herbert E. Hendry,Does IPC have a binary indigenous Sheffer function?,1981,22,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl22.html#Hendry81,https://doi.org/10.1305/ndjfl/1093883402 +Raymond E. Jennings,Some remarks on (weakly) weak modal logics.,1981,22,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl22.html#JenningsS81a,https://doi.org/10.1305/ndjfl/1093883512 +Christopher P. Alfeld,Classifying the Branching Degrees in the Medvedev Lattice of and#928*01 Classes.,2008,49,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl49.html#Alfeld08,https://doi.org/10.1215/00294527-2008-009 +Stanley J. Krolikoski,On substitution for variable one-place functors.,1980,21,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl21.html#Krolikoski80,https://doi.org/10.1305/ndjfl/1093883043 +Franco Montagna,A Minimal Predicative Set Theory.,1994,35,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl35.html#MontagnaM94,https://doi.org/10.1305/ndjfl/1094061860 +Boleslaw Sobocinski,Remarks about axiomatizations of certain modal systems.,1964,5,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl5.html#Sobocinski64a,https://doi.org/10.1305/ndjfl/1093957741 +Christopher S. Hill,Rudiments of a theory of reference.,1987,28,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl28.html#Hill87,https://doi.org/10.1305/ndjfl/1093636939 +I. L. Humberstone,Halldén-completeness by gluing of Kripke frames.,1983,24,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl24.html#HumberstoneB83,https://doi.org/10.1305/ndjfl/1093870446 +Guido Küng,Concrete and abstract properties.,1964,5,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl5.html#Kung64,https://doi.org/10.1305/ndjfl/1093957736 +John Thomas Canty,A natural deduction system for modal logic.,1964,5,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl5.html#Canty64,https://doi.org/10.1305/ndjfl/1093957879 +Steven Garavaglia,Forking in modules.,1981,22,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl22.html#Garavaglia81,https://doi.org/10.1305/ndjfl/1093883400 +Juliusz Reichbach,Some examples of different methods of formal proofs with generalizations of the satisfiability definition.,1969,10,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl10.html#Reichbach69,https://doi.org/10.1305/ndjfl/1093893654 +Eli Dresner,Logical Consequence and First-Order Soundness and Completeness: A Bottom Up Approach.,2011,52,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl52.html#Dresner11,https://doi.org/10.1215/00294527-2010-038 +Allan M. Hart,Some observations on a method of McKinsey.,1978,19,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl19.html#HartH78,https://doi.org/10.1305/ndjfl/1093888398 +Gary P. Shannon,A note on some weak forms of the axiom of choise.,1992,33,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl33.html#Shannon92,https://doi.org/10.1305/ndjfl/1093636018 +Robert W. Murungi,On a nonthesis of classical modal logic.,1974,15,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl15.html#Murungi74,https://doi.org/10.1305/ndjfl/1093891416 +James Cargile,Proposition and Tense.,1999,40,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl40.html#Cargile99,https://doi.org/10.1305/ndjfl/1038949540 +J. Herbert Blackhurst,Syllogistic and non-syllogistic aspects of the comparative argument.,1970,11,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl11.html#Blackhurst70,https://doi.org/10.1305/ndjfl/1093893857 +Graham Priest,Modality as a meta-concept.,1976,17,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl17.html#Priest76,https://doi.org/10.1305/ndjfl/1093887632 +Max J. Cresswell,A Henkin completeness for T.,1967,8,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl8.html#Cresswell67,https://doi.org/10.1305/ndjfl/1093956082 +Erik C. W. Krabbe,Finite Kripke models of HA are locally PA.,1986,27,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl27.html#KrabbeMVD86,https://doi.org/10.1305/ndjfl/1093636765 +Pietro Galliani,General Models and Entailment Semantics for Independence Logic.,2013,54,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl54.html#Galliani13,https://doi.org/10.1215/00294527-1960506 +Robert K. Meyer,E and S4.,1970,11,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl11.html#Meyer70,https://doi.org/10.1305/ndjfl/1093893935 +Peter Swiggart,Domain restrictions in standard deductive logic.,1979,20,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl20.html#Swiggart79,https://doi.org/10.1305/ndjfl/1093882410 +Philip Hugly,Completeness theorems for two propositional logics in which identity diverges from mutual entailment.,1981,22,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl22.html#HuglyS81,https://doi.org/10.1305/ndjfl/1093883462 +Burton Dreben,The Craig interpolation lemma.,1967,8,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl8.html#DrebenP67,https://doi.org/10.1305/ndjfl/1093956088 +øystein Linnebo,Some Criteria for Acceptable Abstraction.,2011,52,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl52.html#Linnebo11,https://doi.org/10.1215/00294527-1435492 +Peter E. Lauer,Towards an axiomatization of value theory.,1980,21,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl21.html#Lauer80,https://doi.org/10.1305/ndjfl/1093882939 +Manfred E. Szabo,The logic of closed categories.,1977,18,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl18.html#Szabo77,https://doi.org/10.1305/ndjfl/1093888017 +Lloyd Humberstone,Minimally Congruential Contexts: Observations and Questions on Embedding E in K.,2012,53,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl53.html#Humberstone12,https://doi.org/10.1215/00294527-1722773 +Benjamin S. Hawkins,On certain incapacities claimed for logicians.,1978,19,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl19.html#Hawkins78,https://doi.org/10.1305/ndjfl/1093888401 +Harry Gonshor,Number theory for the ordinals with a new definition for multiplication.,1980,21,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl21.html#Gonshor80,https://doi.org/10.1305/ndjfl/1093883256 +George C. Nelson,Constructive Ultraproducts and Isomorphisms of Recursively Saturated Ultrapowers.,1992,33,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl33.html#Nelson92,https://doi.org/10.1305/ndjfl/1093634407 +Lloyd Humberstone,An Intriguing Logic with Two Implicational Connectives.,2000,41,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl41.html#Humberstone00,https://doi.org/10.1305/ndjfl/1027953481 +Bangs L. Tapscott,Correcting the tableau procedure for S4.,1984,25,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl25.html#Tapscott84,https://doi.org/10.1305/ndjfl/1093870631 +Ronald E. Nusenoff,"The closing passage of Frege's ""über Sinn und Bedeutung"".",1978,19,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl19.html#Nusenoff78,https://doi.org/10.1305/ndjfl/1093888321 +Boleslaw Sobocinski,"A note on Prior's systems in ""The theory of deduction"".",1964,5,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl5.html#Sobocinski64b,https://doi.org/10.1305/ndjfl/1093957805 +John P. Burgess,Read on relevance: a rejoinder.,1984,25,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl25.html#Burgess84,https://doi.org/10.1305/ndjfl/1093870627 +Ioannis A. Souldatos,Notes on Cardinals That Are Characterizable by a Complete (Scott) Sentence.,2014,55,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl55.html#Souldatos14,https://doi.org/10.1215/00294527-2798727 +Frederick A. Johnson,Rejection and Truth-Value Gaps.,1999,40,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl40.html#Johnson99a,https://doi.org/10.1305/ndjfl/1012429721 +John T. Kearns,Lesniewski's Strategy and Modal Logic.,1989,30,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl30.html#Kearns89,https://doi.org/10.1305/ndjfl/1093635086 +Andrew Bacon,A New Conditional for Naive Truth Theory.,2013,54,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl54.html#Bacon13,https://doi.org/10.1215/00294527-1731407 +Craig Smorynski,Commutativity and self-reference.,1982,23,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl23.html#Smorynski82a,https://doi.org/10.1305/ndjfl/1093870156 +Jeroen P. Goudsmit,The Admissible Rules of BD2 and GSc.,2018,59,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl59.html#Goudsmit18,https://doi.org/10.1215/00294527-3838972 +Rangaswamy V. Setlur,On the equivalence of strong and weak validity of rule schemes in the two-valued propositional calculus.,1970,11,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl11.html#Setlur70a,https://doi.org/10.1305/ndjfl/1093893943 +Jerry A. Fodor,Cognitive science and the twin-Earth problem.,1982,23,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl23.html#Fodor82,https://doi.org/10.1305/ndjfl/1093883623 +Tyler Burge,"Two thought experiments reviewed: comments on J. A. Fodor's paper: ""Cognitive science and the twin-Earth problem"".",1982,23,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl23.html#Burge82,https://doi.org/10.1305/ndjfl/1093870087 +Angelo Montanari,Decidability Results for Metric and Layered Temporal Logics.,1996,37,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl37.html#MontanariP96,https://doi.org/10.1305/ndjfl/1040046089 +Arthur M. Bullock,On generating the finitely satisfiable formulas.,1973,14,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl14.html#BullockS73,https://doi.org/10.1305/ndjfl/1093891002 +Anjan Shukla,A set of axioms for the propositional calculus with implication and converse non-implication.,1965,6,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl6.html#Shukla65,https://doi.org/10.1305/ndjfl/1093958151 +Robert Dwyer,The fundamental S-theorem - a corollary.,1983,24,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl24.html#DwyerMM83,https://doi.org/10.1305/ndjfl/1093870453 +Dirk Pattinson,Expressive Logics for Coalgebras via Terminal Sequence Induction.,2004,45,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl45.html#Pattinson04,https://doi.org/10.1305/ndjfl/1094155277 +C. A. Meredith,Notes on the axiomatics of the propositional calculus.,1963,4,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl4.html#MeredithP63,https://doi.org/10.1305/ndjfl/1093957574 +W. A. Verloren van Themaat,The confiramtion of sentences by instances with different truth-values of its atoms.,1975,16,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl16.html#Themaat75,https://doi.org/10.1305/ndjfl/1093891808 +Evangelos Kranakis,Definable partitions and reflection properties for regular cardinals.,1985,26,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl26.html#Kranakis85,https://doi.org/10.1305/ndjfl/1093870931 +John W. Dawson,The published work of Kurt Gödel: an annotated bibliography.,1983,24,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl24.html#Dawson83,https://doi.org/10.1305/ndjfl/1093870315 +Thomas Sudkamp,On full cylindric set algebras.,1979,20,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl20.html#Sudkamp79,https://doi.org/10.1305/ndjfl/1093882802 +Robert H. Cowen,A new proof of the compactness theorem for propositional logic.,1970,11,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl11.html#Cowen70,https://doi.org/10.1305/ndjfl/1093893860 +J. L. Shaw,The Nyāya on double negation.,1988,29,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl29.html#Shaw88,https://doi.org/10.1305/ndjfl/1093637778 +Balázs Biró,Isomorphic but Not Lower Base-Isomorphic Cylindric Algebras of Finite Dimension.,1989,30,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl30.html#Biro89,https://doi.org/10.1305/ndjfl/1093635082 +Raymond Turner,Logics of Truth.,1990,31,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl31.html#Turner90,https://doi.org/10.1305/ndjfl/1093635425 +Jaap van Oosten,A General Form of Relative Recursion.,2006,47,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl47.html#Oosten06,https://doi.org/10.1305/ndjfl/1163775438 +John Carson Simms,A realist semantics for Cocchiarella's T*.,1980,21,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl21.html#Simms80,https://doi.org/10.1305/ndjfl/1093882936 +Bryan Pickel,Syntax in Basic Laws paragraph paragraph 29-32.,2010,51,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl51.html#Pickel10,https://doi.org/10.1215/00294527-2010-016 +Wolfgang Lenzen,S4.1.4=S4.1.2 and S4.021=S4.04.,1978,19,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl19.html#Lenzen78b,https://doi.org/10.1305/ndjfl/1093888409 +Alexander Bochman,Concerted Instant-Interval Temporal Semantics I: Temporal Ontologies.,1990,31,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl31.html#Bochman90,https://doi.org/10.1305/ndjfl/1093635505 +Dale E. Lichtblau,Prior and the Barcan formula.,1976,17,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl17.html#Lichtblau76,https://doi.org/10.1305/ndjfl/1093887733 +Toby Meadows,Naive Infinitism: The Case for an Inconsistency Approach to Infinite Collections.,2015,56,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl56.html#Meadows15,https://doi.org/10.1215/00294527-2835074 +Roman Murawski,Pointwise definable substructures of models of Peano arithmetic.,1988,29,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl29.html#Murawski88,https://doi.org/10.1305/ndjfl/1093637930 +Martin W. Bunder,Illative combinatory logic without equality as a primitive predicate.,1982,23,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl23.html#Bunder82,https://doi.org/10.1305/ndjfl/1093883566 +Sune Kristian Jakobsen,Some Remarks on Real Numbers Induced by First-Order Spectra.,2016,57,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl57.html#JakobsenS16,https://doi.org/10.1215/00294527-3489987 +Benjamin S. Hawkins,A compendium of C. S. Peirce's 1866-1885 work.,1975,16,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl16.html#Hawkins75,https://doi.org/10.1305/ndjfl/1093891617 +Olivier Esser,Antifoundation and Transitive Closure in the System of Zermelo.,1999,40,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl40.html#EsserH99,https://doi.org/10.1305/ndjfl/1038949536 +Branislav R. Boricic,On certain normalizable natural deduction formulations of some propositional intermediate logics.,1988,29,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl29.html#Boricic88,https://doi.org/10.1305/ndjfl/1093638020 +Décio Krause,On a Quasi-Set Theory.,1992,33,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl33.html#Krause92,https://doi.org/10.1305/ndjfl/1093634404 +Thomas W. Satre,Natural deduction rules for S10-S40.,1972,13,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl13.html#Satre72a,https://doi.org/10.1305/ndjfl/1093890724 +Neil Tennant,Rule-Irredundancy and the Sequent Calculus for Core Logic.,2016,57,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl57.html#Tennant16,https://doi.org/10.1215/00294527-3346463 +Seiki Akama,The Gentzen-Kripke construction of the intermediate logic LQ.,1992,33,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl33.html#Akama92,https://doi.org/10.1305/ndjfl/1093636019 +Carlo Toffalori,Classifying Pairs of Equivalence Relations.,1991,32,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl32.html#Toffalori91a,https://doi.org/10.1305/ndjfl/1093635935 +Nathanael Leedom Ackerman,Vaught's Conjecture Without Equality.,2015,56,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl56.html#Ackerman15,https://doi.org/10.1215/00294527-3153588 +R. Chartrand,Deissler Rank Complexity of Powers of Indecomposable Injective Modules.,1994,35,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl35.html#ChartrandK94,https://doi.org/10.1305/ndjfl/1040511345 +François Lepage,Probabilistic Canonical Models for Partial Logics.,2003,44,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl44.html#LepageM03,https://doi.org/10.1305/ndjfl/1091030851 +Luisa Iturrioz,An axiom system for three-valued Ł*ukasiewicz propositional calculus.,1977,18,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl18.html#Iturrioz77,https://doi.org/10.1305/ndjfl/1093888131 +Chris Mortensen,The validity of disjunctive syllogism is not so easily proved.,1983,24,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl24.html#Mortensen83,https://doi.org/10.1305/ndjfl/1093870218 +Roy T. Cook,Iteration One More Time.,2003,44,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl44.html#Cook03,https://doi.org/10.1305/ndjfl/1082637805 +Thomas W. Scharle,"Note to my paper: ""A diagram of the functors of the two-valued propositional calculus"".",1962,3,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl3.html#Scharle62a,https://doi.org/10.1305/ndjfl/1093957324 +Marcus Kracht,Book Review: V. V. Rybakov. Admissibility of Logical Inference Rules.,1999,40,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl40.html#Kracht99a,https://doi.org/10.1305/ndjfl/1012429722 +Byeong-Uk Yi,Descending Chains and the Contextualist Approach to Semantic Paradoxes.,1999,40,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl40.html#Yi99,https://doi.org/10.1305/ndjfl/1012429719 +Ralf-Dieter Schindler,A Dilemma in the Philosophy of Set Theory.,1994,35,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl35.html#Schindler94,https://doi.org/10.1305/ndjfl/1040511351 +Jekeri Okee,On the independence of the fundamental operations of the algebra of species.,1976,17,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl17.html#Okee76b,https://doi.org/10.1305/ndjfl/1093887724 +Charles Steinhorn,The Boolean Spectrum of an o-Minimal Theory.,1989,30,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl30.html#SteinhornT89,https://doi.org/10.1305/ndjfl/1093635078 +Francis Jeffry Pelletier,Post's Functional Completeness Theorem.,1990,31,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl31.html#PelletierM90,https://doi.org/10.1305/ndjfl/1093635508 +Aleksandar Kron,"Erratum: ""A note on E"".",1974,15,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl15.html#Kron74,http://projecteuclid.org/euclid.ndjfl/1093891500 +George Boolos,A proof of the Löwenheim-Skolem theorem.,1970,11,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl11.html#Boolos70,https://doi.org/10.1305/ndjfl/1093893859 +Vladeta Vuckovic,Note on a theorem of W. Sierpiński.,1965,6,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl6.html#Vuckovic65,https://doi.org/10.1305/ndjfl/1093958254 +George Barmpalias,Relative Randomness and Cardinality.,2010,51,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl51.html#Barmpalias10,https://doi.org/10.1215/00294527-2010-012 +George F. Schumm,On some open questions of B. Sobociński.,1969,10,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl10.html#Schumm69,https://doi.org/10.1305/ndjfl/1093893711 +George Englebretsen,Sommers on empty domains and existence.,1972,13,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl13.html#Englebretsen72,https://doi.org/10.1305/ndjfl/1093890621 +T. C. Wesselkamper,A sole sufficient operator.,1975,16,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl16.html#Wesselkamper75,https://doi.org/10.1305/ndjfl/1093891614 +Thomas J. Grilliot,Selection functions for recursive functionals.,1969,10,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl10.html#Grilliot69,https://doi.org/10.1305/ndjfl/1093893706 +Ivo Thomas,Decision procedures for S20 and T0.,1964,5,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl5.html#Thomas64c,https://doi.org/10.1305/ndjfl/1093957982 +Alex Blum,Quine on an alleged non sequitur.,1981,22,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl22.html#Blum81,https://doi.org/10.1305/ndjfl/1093883459 +Bernard Linsky,"A note on the ""carving up content"" principle of Frege's theory of sense.",1992,33,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl33.html#Linsky92,https://doi.org/10.1305/ndjfl/1093636015 +Gregory Landini,Logic in Russell's Principles of Mathematics.,1996,37,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl37.html#Landini96,https://doi.org/10.1305/ndjfl/1040046142 +Stephen Schiffer,Intention-based semantics.,1982,23,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl23.html#Schiffer82,https://doi.org/10.1305/ndjfl/1093883624 +Costas Dimitracopoulos,End Extensions of Models of Weak Arithmetic Theories.,2016,57,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl57.html#Dimitracopoulos16,https://doi.org/10.1215/00294527-3452693 +Jafar S. Eivazloo,SCE-Cell Decomposition and OCP in Weakly O-Minimal Structures.,2016,57,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl57.html#EivazlooT16,https://doi.org/10.1215/00294527-3507270 +Jared Corduan,On the Indecomposability of ω*n.,2012,53,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl53.html#CorduanD12,https://doi.org/10.1215/00294527-1716784 +Zarko Mijajlovic,Submodels and definable points in models of Peano arithmetic.,1983,24,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl24.html#Mijajlovic83,https://doi.org/10.1305/ndjfl/1093870445 +George Gargov,An Approach to Uncertainty via Sets of Truth Values.,1995,36,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl36.html#Gargov95,https://doi.org/10.1305/ndjfl/1040248457 +Paul J. Welsh,Primitivity in mereology. II.,1978,19,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl19.html#Welsh78a,https://doi.org/10.1305/ndjfl/1093888396 +I. J. Heath,Omitting the replacement schema in recursive arithmetic.,1967,8,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl8.html#Heath67,https://doi.org/10.1305/ndjfl/1093956089 +Seth Catlin,Pathologies in the ed-regressive sets of order 2.,1977,18,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl18.html#Catlin77,https://doi.org/10.1305/ndjfl/1093888119 +Nino B. Cocchiarella,Book Review: Stewart Shapiro. Foundations with foundationalism..,1993,34,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl34.html#Cocchiarella93,https://doi.org/10.1305/ndjfl/1093634733 +Victoria Gitman,A Natural Model of the Multiverse Axioms.,2010,51,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl51.html#GitmanH10,https://doi.org/10.1215/00294527-2010-030 +Robert H. Cowen,A characterization of logical consequence in quantification theory.,1975,16,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl16.html#Cowen75,https://doi.org/10.1305/ndjfl/1093891798 +Kenneth W. Collier,A result of extending Bochvar's 3-valued logic.,1974,15,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl15.html#Collier74,https://doi.org/10.1305/ndjfl/1093891314 +Ulrich Meyer 0002,Worlds and Times.,2006,47,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl47.html#Meyer06,https://doi.org/10.1305/ndjfl/1143468309 +Nicolas Guzy,Geometrical Axiomatization for Model Complete Theories of Differential Topological Fields.,2006,47,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl47.html#GuzyR06,https://doi.org/10.1305/ndjfl/1163775440 +Kit Fine,Normal forms in modal logic.,1975,16,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl16.html#Fine75,https://doi.org/10.1305/ndjfl/1093891703 +Matt Kaufmann,The Hanf number of stationary logic.,1986,27,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl27.html#KaufmannS86,https://doi.org/10.1305/ndjfl/1093636530 +Laurence S. Gagnon,Three theories of dialectic.,1980,21,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl21.html#Gagnon80,https://doi.org/10.1305/ndjfl/1093883049 +Martin W. Bunder,Various systems of set theory based on combinatory logic.,1974,15,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl15.html#Bunder74a,https://doi.org/10.1305/ndjfl/1093891298 +Ivo Thomas,The rule of Peirce.,1968,9,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl9.html#Thomas68a,https://doi.org/10.1305/ndjfl/1093893350 +Ivo Thomas,Final word on a shortest implicational axiom.,1970,11,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl11.html#Thomas70,https://doi.org/10.1305/ndjfl/1093893855 +Robert H. Cowen,Superinductive classes in class-set theory.,1971,12,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl12.html#Cowen71,https://doi.org/10.1305/ndjfl/1093894151 +George F. Schumm,Some Compactness Results for Modal Logic.,1989,30,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl30.html#Schumm89,https://doi.org/10.1305/ndjfl/1093635085 +Takahiro Seki,General Frames for Relevant Modal Logics.,2003,44,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl44.html#Seki03,https://doi.org/10.1305/ndjfl/1082637806 +John P. Burgess,Axiomatizing the Logic of Comparative Probability.,2010,51,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl51.html#Burgess10,https://doi.org/10.1215/00294527-2010-008 +Donald Nute,Counterfactuals.,1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#Nute75,https://doi.org/10.1305/ndjfl/1093891882 +Joseph S. Ullian,A theorem on maximal sets.,1961,2,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl2.html#Ullian61,https://doi.org/10.1305/ndjfl/1093956971 +Kosta Dosen,Logical Constants as Punctuation Marks.,1989,30,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl30.html#Dosen89,https://doi.org/10.1305/ndjfl/1093635154 +Robert J. Titiev,On self-sustenance in systems of epistemic logic.,1980,21,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl21.html#Titiev80,https://doi.org/10.1305/ndjfl/1093883182 +Colwyn Williamson,Squares of opposition: Comparisons between syllogistic and propositional logic.,1972,13,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl13.html#Williamson72,https://doi.org/10.1305/ndjfl/1093890711 +J. Jay Zeman,"Modal systems in which necessity is ""factorable"".",1969,10,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl10.html#Zeman69,https://doi.org/10.1305/ndjfl/1093893709 +Saharon Shelah,On uncountable Boolean algebras with no uncountable pairwise comparable or incomparable sets of elements.,1981,22,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl22.html#Shelah81c,https://doi.org/10.1305/ndjfl/1093883511 +Kenneth A. Bowen,An Herbrand theorem for prenex formulas of LJ.,1976,17,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl17.html#Bowen76,https://doi.org/10.1305/ndjfl/1093887533 +Luis E. Sanchis,Types in combinatory logic.,1964,5,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl5.html#Sanchis64,https://doi.org/10.1305/ndjfl/1093957876 +Majid Alizadeh,Boolean Algebras in Visser Algebras.,2016,57,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl57.html#AlizadehAR16,https://doi.org/10.1215/00294527-3339473 +David Marker,The Borel Complexity of Isomorphism for Theories with Many Types.,2007,48,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl48.html#Marker07,https://doi.org/10.1305/ndjfl/1172787547 +Jean-Claude Volgo,Description theory: critical defense of a Russellian approach.,1974,15,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl15.html#Volgo74,https://doi.org/10.1305/ndjfl/1093891499 +John R. Chidgey,A note on transitivity.,1973,14,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl14.html#Chidgey73,https://doi.org/10.1305/ndjfl/1093890904 +Louis F. Goble,A simplified semantics for modal logic.,1973,14,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl14.html#Goble73,https://doi.org/10.1305/ndjfl/1093890890 +John R. Chidgey,Necessity and ticket entailment.,1972,13,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl13.html#ChidgeyP72,https://doi.org/10.1305/ndjfl/1093894719 +Hermann F. Schott,Generalizability of the propositional and predicate calculi to infinite-valued calculi.,1970,11,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl11.html#Schott70,https://doi.org/10.1305/ndjfl/1093893867 +Richard Cole 0001,Definitional Boolean calculi.,1968,9,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl9.html#Cole68,https://doi.org/10.1305/ndjfl/1093893522 +Ivo Thomas,A note on self-referential statements.,1964,5,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl5.html#Thomas64a,https://doi.org/10.1305/ndjfl/1093957882 +William N. Reinhardt,Epistemic set theory.,1988,29,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl29.html#Reinhardt88,https://doi.org/10.1305/ndjfl/1093637872 +Northrup Fowler III,Effective inner product spaces.,1978,19,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl19.html#Fowler78,https://doi.org/10.1305/ndjfl/1093888521 +N. Raja,A Negation-free Proof of Cantor's Theorem.,2005,46,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl46.html#Raja05,https://doi.org/10.1305/ndjfl/1117755152 +Bhavani M. Thuraisingham,Some elementary closure properties of n-cylinders.,1983,24,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl24.html#Thuraisingham83a,https://doi.org/10.1305/ndjfl/1093870314 +Tobias Chapman,A modal logic with temporal variables.,1978,19,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl19.html#Chapman78,https://doi.org/10.1305/ndjfl/1093888503 +Bernard A. Anderson,Degrees That Are Not Degrees of Categoricity.,2016,57,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl57.html#AndersonC16,https://doi.org/10.1215/00294527-3496154 +Greg Hjorth,Λ8*11 Wellfounded Relations.,1994,35,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl35.html#Hjorth94,https://doi.org/10.1305/ndjfl/1040408611 +Arend Heyting,In memoriam: Evert Willem Beth (1909-1964).,1966,7,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl7.html#Heyting66,https://doi.org/10.1305/ndjfl/1093958744 +Patricia Johann,Normal Forms in Combinatory Logic.,1994,35,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl35.html#Johann94,https://doi.org/10.1305/ndjfl/1040408614 +Zoran Majkic,Weakening of Intuitionistic Negation for Many-valued Paraconsistent da Costa System.,2008,49,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl49.html#Majkic08,https://doi.org/10.1215/00294527-2008-020 +Wenyan Xu,The Parallel versus Branching Recurrences in Computability Logic.,2013,54,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl54.html#XuL13,https://doi.org/10.1215/00294527-1731389 +John A. Paulos,A model-theoretic semantics for modal logic.,1976,17,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl17.html#Paulos76,https://doi.org/10.1305/ndjfl/1093887643 +Hugues Leblanc,On a recent allotment of probabilities to open and closed sentences.,1960,1,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl1.html#Leblanc60,https://doi.org/10.1305/ndjfl/1093956620 +Gary P. Shannon,Provable Forms of Martin's Axiom.,1990,31,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl31.html#Shannon90,https://doi.org/10.1305/ndjfl/1093635503 +Anjan Shukla,A set of axioms for the propositional calculus with implication and non-equivalence.,1966,7,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl7.html#Shukla66,https://doi.org/10.1305/ndjfl/1093958622 +Crispin Wright,Is Hume's Principle Analytic?,1999,40,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl40.html#Wright99,https://doi.org/10.1305/ndjfl/1039096303 +Timothy Williamson,Some admissible rules in nonnormal modal systems.,1993,34,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl34.html#Williamson93,https://doi.org/10.1305/ndjfl/1093634728 +Robert K. Meyer,First degree formulas in Curry's LD.,1977,18,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl18.html#Meyer77,https://doi.org/10.1305/ndjfl/1093887837 +Scott K. Lehmann,A first-order logic of knowledge and belief with identity. II.,1976,17,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl17.html#Lehmann76a,https://doi.org/10.1305/ndjfl/1093887524 +Ming Xu,Uncompactness of Stit Logics Containing Generalized Refref Conditionals.,1998,39,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl39.html#Xu98,https://doi.org/10.1305/ndjfl/1039118864 +Eugenio Giovanni Omodeo,Three existence principles in a modal calculus without descriptions contained in A. Bressan's MCν.,1980,21,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl21.html#Omodeo80,https://doi.org/10.1305/ndjfl/1093883257 +S. K. Sehgal,Jacobson theory of ringoids.,1963,4,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl4.html#Sehgal63,https://doi.org/10.1305/ndjfl/1093957578 +Yannis Stephanou,First-Order Modal Logic with an 'Actually' Operator.,2005,46,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl46.html#Stephanou05,https://doi.org/10.1305/ndjfl/1134397658 +Brian Rice,The Thin Set Theorem for Pairs Implies DNR.,2015,56,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl56.html#Rice15,https://doi.org/10.1215/00294527-3153606 +Boleslaw Sobocinski,Concerning the quantifier algebras in the sense of Pinter.,1973,14,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl14.html#Sobocinski73e,https://doi.org/10.1305/ndjfl/1093891108 +Sitansu S. Chakravarti,A note on Kripke's distinction between rigid designators and nonrigid designators.,1979,20,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl20.html#Chakravarti79,https://doi.org/10.1305/ndjfl/1093882537 +Jaroslaw Pykacz,"New Operations on Orthomodular Lattices: ""Disjunction"" and ""Conjunction"" Induced by Mackey Decompositions.",2000,41,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl41.html#Pykacz00,https://doi.org/10.1305/ndjfl/1027953484 +John P. Burgess,Why I am not a nominalist.,1983,24,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl24.html#Burgess83a,https://doi.org/10.1305/ndjfl/1093870223 +Kit Fine,Analytic implication.,1986,27,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl27.html#Fine86,https://doi.org/10.1305/ndjfl/1093636609 +Jack C. Boudreaux,Frames versus minimally restricted structures.,1980,21,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl21.html#Boudreaux80,https://doi.org/10.1305/ndjfl/1093883044 +Giorgio Germano,Incompleteness theorem via weak definability of truth: a short proof.,1973,14,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl14.html#Germano73,https://doi.org/10.1305/ndjfl/1093891003 +Martin M. Zuckerman,Sums of at least 9 ordinals.,1973,14,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl14.html#Zuckerman73a,https://doi.org/10.1305/ndjfl/1093890902 +Boleslaw Sobocinski,The axioms for latticoids and their associative extensions.,1976,17,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl17.html#Sobocinski76d,https://doi.org/10.1305/ndjfl/1093887734 +John Thomas Canty,Systems classically axiomatized and properly contained in Lewis's S3.,1965,6,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl6.html#Canty65a,https://doi.org/10.1305/ndjfl/1093958339 +Emily Michael,A note on the roots on Peirce's division of logic into three branches.,1977,18,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl18.html#Michael77,https://doi.org/10.1305/ndjfl/1093888135 +Albert A. Mullin,On new theorems for elementary number theory.,1967,8,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl8.html#Mullin67,https://doi.org/10.1305/ndjfl/1094068853 +Nelson Pole,A deductive argument with a specific premise and a general conclusion.,1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#Pole75,https://doi.org/10.1305/ndjfl/1093891895 +Bruce E. R. Thompson,Why is Conjunctive Simplication Invalid?,1991,32,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl32.html#Thompson91,https://doi.org/10.1305/ndjfl/1093635749 +Wilhelm K. Essler,über Intensionen und Modalitäten.,1970,11,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl11.html#Essler70a,https://doi.org/10.1305/ndjfl/1093894071 +Karen Lange,Computability of Homogeneous Models.,2007,48,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl48.html#LangeS07,https://doi.org/10.1305/ndjfl/1172787551 +Ronald F. Bustamante Medina,Rank and Dimension in Difference-Differential Fields.,2011,52,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl52.html#Medina11,https://doi.org/10.1215/00294527-1499363 +Rolf Schock,A note on subjunctive and counterfactual implication.,1962,3,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl3.html#Schock62,https://doi.org/10.1305/ndjfl/1093957325 +Desmond Paul Henry,Leśniewski's ontology and some medieval logicians.,1969,10,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl10.html#Henry69,https://doi.org/10.1305/ndjfl/1093893724 +Paulo Oliva,Unifying Functional Interpretations.,2006,47,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl47.html#Oliva06,https://doi.org/10.1305/ndjfl/1153858651 +Olivier Esser,A Strong Model of Paraconsistent Logic.,2003,44,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl44.html#Esser03,https://doi.org/10.1305/ndjfl/1091030853 +Charles G. Morgan,Local and global operators and many-valued modal logics.,1979,20,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl20.html#Morgan79,https://doi.org/10.1305/ndjfl/1093882548 +Kees Doets,On n-equivalence of binary trees.,1987,28,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl28.html#Doets87,https://doi.org/10.1305/ndjfl/1093636941 +Bernhard Banaschewski,The Dual Cantor-Bernstein Theorem and the Partition Principle.,1990,31,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl31.html#BanaschewskiM90,https://doi.org/10.1305/ndjfl/1093635502 +Hartry Field,Disarming a Paradox of Validity.,2017,58,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl58.html#Field17,https://doi.org/10.1215/00294527-3699865 +Heinrich Wansing,Semantics-based Nonmonotonic Inference.,1995,36,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl36.html#Wansing95,https://doi.org/10.1305/ndjfl/1040308828 +Earline Jennifer Ashworth,The treatment of semantic paradoxes from 1400 to 1700.,1972,13,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl13.html#Ashworth72,https://doi.org/10.1305/ndjfl/1093894622 +Michael E. Levin,A note on p=mv.,1979,20,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl20.html#Levin79,https://doi.org/10.1305/ndjfl/1093882674 +Frank Markham Brown,George Boole's Deductive System.,2009,50,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl50.html#Brown09,https://doi.org/10.1215/00294527-2009-013 +Gary Iseminger,Geach and the Lewis result.,1978,19,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl19.html#Iseminger78,https://doi.org/10.1305/ndjfl/1093888217 +L. Herman,Implication connectives in orthomodular lattices.,1975,16,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl16.html#HermanMP75,https://doi.org/10.1305/ndjfl/1093891789 +Hiroshi Aoyama,The Strong Completeness of a System Based on Kleene's Strong Three-Valued Logic.,1994,35,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl35.html#Aoyama94,https://doi.org/10.1305/ndjfl/1040511343 +Stephen Read,Burgess on relevance: a fallacy indeed.,1983,24,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl24.html#Read83,https://doi.org/10.1305/ndjfl/1093870449 +Steffen Lewitzka,∈*I: An Intuitionistic Logic without Fregean Axiom and with Predicates for Truth and Falsity.,2009,50,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl50.html#Lewitzka09,https://doi.org/10.1215/00294527-2009-012 +William McCune,Single Axioms for the Left Group and the Right Group Calculi.,1993,34,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl34.html#McCune93,https://doi.org/10.1305/ndjfl/1093634569 +George Boolos,Alphabetical order.,1988,29,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl29.html#Boolos88,https://doi.org/10.1305/ndjfl/1093637871 +John L. Hickman,Commutativity of generalized ordinals.,1978,19,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl19.html#Hickman78d,https://doi.org/10.1305/ndjfl/1093888522 +Hubert C. Kennedy,What Russell learned from Peano.,1973,14,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl14.html#Kennedy73,https://doi.org/10.1305/ndjfl/1093891001 +Harry A. Nielsen,The bearer of ontological commitment.,1964,5,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl5.html#Nielsen64,https://doi.org/10.1305/ndjfl/1093957804 +Claudio Bernardi,Topological duality for diagonalizable algebras.,1988,29,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl29.html#BernardiD88,https://doi.org/10.1305/ndjfl/1093637933 +D. Michael Miller,A ternary universal decision element.,1976,17,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl17.html#MillerM76,https://doi.org/10.1305/ndjfl/1093887735 +Jim Edwards,Reduction and Tarski's Definition of Logical Consequence.,2003,44,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl44.html#Edwards03,https://doi.org/10.1305/ndjfl/1082637614 +Pierangelo Miglioli,Some Results on Intermediate Constructive Logics.,1989,30,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl30.html#MiglioliMOQU89,https://doi.org/10.1305/ndjfl/1093635238 +Henryk Kotlarski,Full Satisfaction Classes: A Survey.,1991,32,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl32.html#Kotlarski91,https://doi.org/10.1305/ndjfl/1093635929 +Sakae Yaegasi,Tennenbaum's Theorem and Unary Functions.,2008,49,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl49.html#Yaegasi08,https://doi.org/10.1215/00294527-2008-006 +William J. Frascella,A stronger theorem concerning the non-existence of combinatorial designs on infinite sets.,1973,14,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl14.html#Frascella73,https://doi.org/10.1305/ndjfl/1093891109 +W. A. Verloren van Themaat,Right-divisive groups.,1978,19,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl19.html#Themaat78,https://doi.org/10.1305/ndjfl/1093888215 +Mirna Dzamonja,Club Guessing and the Universal Models.,2005,46,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl46.html#Dzamonja05,https://doi.org/10.1305/ndjfl/1125409327 +Jon C. Muzio,Classes of universal decision elements using negative substitutions.,1979,20,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl20.html#Muzio79,https://doi.org/10.1305/ndjfl/1093882538 +Alex Blum,A logic of belief.,1976,17,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl17.html#Blum76,https://doi.org/10.1305/ndjfl/1093887626 +Karol Habart,Bounds in Weak Truth-Table Reducibility.,1991,32,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl32.html#Habart91,https://doi.org/10.1305/ndjfl/1093635747 +Taras O. Banakh,Packing Index of Subsets in Polish Groups.,2009,50,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl50.html#BanakhLR09,https://doi.org/10.1215/00294527-2009-021 +Alasdair Urquhart,Simplified Lower Bounds for Propositional Proofs.,1996,37,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl37.html#UrquhartF96,https://doi.org/10.1305/ndjfl/1040046140 +Michaelis Michael,Binary Quantification Systems.,1995,36,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl36.html#MichaelT95,https://doi.org/10.1305/ndjfl/1040149354 +Joseph Barback,Analogous characterizations of finite and isolated sets.,1972,13,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl13.html#BarbackJP72,https://doi.org/10.1305/ndjfl/1093890720 +Martin W. Bunder,A deduction theorem for restricted generality.,1973,14,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl14.html#Bunder73a,https://doi.org/10.1305/ndjfl/1093890997 +Edwin M. Curley,The development of Lewis' theory of strict implication.,1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#Curley75,https://doi.org/10.1305/ndjfl/1093891890 +Alexander Hertel,A Sound and Complete Proof Theory for Propositional Logical Contingencies.,2007,48,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl48.html#HertelHM07,https://doi.org/10.1305/ndjfl/1193667709 +Jon C. Muzio,A note concerning a sole sufficient operator.,1978,19,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl19.html#Muzio78,https://doi.org/10.1305/ndjfl/1093888402 +John H. Harris,Indexings of sets.,1972,13,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl13.html#Harris72,https://doi.org/10.1305/ndjfl/1093890709 +Boleslaw Sobocinski,An equational axiomatization and a semi-lattice theoretical characterization of mixed associative Newman algebras.,1972,13,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl13.html#Sobocinski72f,https://doi.org/10.1305/ndjfl/1093890631 +Daniel H. Cohen,The problem of counterpossibles.,1988,29,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl29.html#Cohen88,https://doi.org/10.1305/ndjfl/1093637773 +Herman Rubin,"Corrigendum to our paper: ""A theorem on n-tuples which is equivalent to the well-ordering theorem"".",1970,11,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl11.html#RubinR70,https://doi.org/10.1305/ndjfl/1093893939 +Margaret Murphy Prullage,A theory of restricted variables without existence assumptions.,1976,17,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl17.html#Prullage76,https://doi.org/10.1305/ndjfl/1093887729 +Rodney G. Downey,Euclidean Functions of Computable Euclidean Domains.,2011,52,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl52.html#DowneyK11,https://doi.org/10.1215/00294527-1306172 +Bernard A. Anderson,A Bounded Jump for the Bounded Turing Degrees.,2014,55,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl55.html#AndersonC14,https://doi.org/10.1215/00294527-2420660 +Gregory Mellema,On measures and distinguishability.,1983,24,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl24.html#Mellema83,https://doi.org/10.1305/ndjfl/1093870230 +Wojciech Dzik,Modal Consequence Relations Extending S4.3: An Application of Projective Unification.,2016,57,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl57.html#DzikW16,https://doi.org/10.1215/00294527-3636512 +Steffen van Bakel,Cut-Elimination in the Strict Intersection Type Assignment System is Strongly Normalizing.,2004,45,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl45.html#Bakel04,https://doi.org/10.1305/ndjfl/1094155278 +Demetrius J. Hadgopoulos,The principle of the division into four figures in traditional logic.,1979,20,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl20.html#Hadgopoulos79,https://doi.org/10.1305/ndjfl/1093882406 +John R. Gregg,Two modes of deductive inference.,1971,12,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl12.html#Gregg71,https://doi.org/10.1305/ndjfl/1093894215 +Zane Parks,Semantics for contingent identity systems.,1974,15,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl15.html#Parks74,https://doi.org/10.1305/ndjfl/1093891312 +Itay Neeman,Forcing with Sequences of Models of Two Types.,2014,55,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl55.html#Neeman14,https://doi.org/10.1215/00294527-2420666 +Robert Cowen,BREAKUP: a preprocessing algorithm for satisfiability testing of CNF formulas.,1993,34,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl34.html#CowenW93,https://doi.org/10.1305/ndjfl/1093633909 +O. Bradley Bassler,Book Review: J. P. Mayberry. Foundations of Mathematics in the Theory of Sets.,2005,46,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl46.html#Bassler05,https://doi.org/10.1305/ndjfl/1107220677 +Theodore F. Sullivan,Affine geometry having a solid as primitive.,1971,12,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl12.html#Sullivan71,https://doi.org/10.1305/ndjfl/1093894150 +Philip G. Calabrese,The Menger algebras of 2-place functions in the 2-valued logic.,1966,7,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl7.html#Calabrese66,https://doi.org/10.1305/ndjfl/1093958750 +Ali Bleybel,The Field of LE-Series with a Nonstandard Analytic Structure.,2011,52,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl52.html#Bleybel11,https://doi.org/10.1215/00294527-1435447 +Mary Katherine Yntema,A detailed argument for the Post-Linial theorems.,1964,5,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl5.html#Yntema64,https://doi.org/10.1305/ndjfl/1093957737 +William C. Purdy,Decidability of Fluted Logic with Identity.,1996,37,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl37.html#Purdy96,https://doi.org/10.1305/ndjfl/1040067318 +Philip Hugly,Do we need quantification?,1984,25,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl25.html#HuglyS84,https://doi.org/10.1305/ndjfl/1093870682 +Loredana Biacino,Connection Structures.,1991,32,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl32.html#BiacinoG91,https://doi.org/10.1305/ndjfl/1093635748 +Sitansu S. Chakravarti,Kripke on contingent a priori truths.,1979,20,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl20.html#Chakravarti79a,https://doi.org/10.1305/ndjfl/1093882800 +Rolf Schock,On probability logics.,1965,6,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl6.html#Schock65a,https://doi.org/10.1305/ndjfl/1093958152 +Laurent Larouche,Examination of the axiomatic foundations of a theory of change. IV.,1971,12,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl12.html#Larouche71,https://doi.org/10.1305/ndjfl/1093894302 +William D. Jackson,A note on a theorem of C. Yates.,1973,14,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl14.html#Jackson73,https://doi.org/10.1305/ndjfl/1093890813 +John P. Burgess,Book Review: Kit Fine. The Limits of Abstraction.,2003,44,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl44.html#Burgess03a,https://doi.org/10.1305/ndjfl/1091122500 +Barry Loewer,"The role of ""Conceptual role semantics"": comments on Harman's paper.",1982,23,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl23.html#Loewer82,https://doi.org/10.1305/ndjfl/1093870090 +David Bennett,A Single Axiom for Set Theory.,2000,41,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl41.html#Bennett00,https://doi.org/10.1305/ndjfl/1038234609 +Josef Berger,Classifying Dini's Theorem.,2006,47,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl47.html#BergerS06,https://doi.org/10.1305/ndjfl/1153858650 +Theodore C. Denise,The two logics: traditional and modern.,1973,14,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl14.html#Denise73,https://doi.org/10.1305/ndjfl/1093891103 +Eugene W. Madison,Real fields with characterization of the natural numbers.,1972,13,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl13.html#Madison72,https://doi.org/10.1305/ndjfl/1093894717 +John P. Burgess,"Common sense and ""relevance"".",1983,24,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl24.html#Burgess83,https://doi.org/10.1305/ndjfl/1093870219 +Ignacio Angelelli,Note on Frege's Begriffsschrift.,1966,7,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl7.html#AngelelliB66,https://doi.org/10.1305/ndjfl/1093958759 +John T. Kearns,The logical concept of existence.,1968,9,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl9.html#Kearns68,https://doi.org/10.1305/ndjfl/1093893517 +William C. Wilcox,A mistake in Copi's discussion of completeness.,1971,12,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl12.html#Wilcox71,https://doi.org/10.1305/ndjfl/1093894368 +Maurice Machover,An independent statement about metric spaces.,1976,17,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl17.html#Machover76,https://doi.org/10.1305/ndjfl/1093887431 +Czeslaw Lejewski,On prosleptic premisses.,1976,17,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl17.html#Lejewski76,https://doi.org/10.1305/ndjfl/1093887421 +Philipp Gerhardy,Proof Mining in Topological Dynamics.,2008,49,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl49.html#Gerhardy08,https://doi.org/10.1215/00294527-2008-022 +C. G. McKay,Implicationless wffs. in IC.,1967,8,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl8.html#McKay67a,https://doi.org/10.1305/ndjfl/1093956087 +Newton C. A. da Costa,An Intensional Schrödinger Logic.,1997,38,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl38.html#CostaK97,https://doi.org/10.1305/ndjfl/1039724886 +Hoang-Vu Dang,A Single-Sorted Theory of Multisets.,2014,55,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl55.html#Dang14,https://doi.org/10.1215/00294527-2688042 +John Hayden Woods,Non-paradoxical paradoxes?,1967,8,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl8.html#Woods67,https://doi.org/10.1305/ndjfl/1094068852 +Oleksandr Petrenko,Thin Ultrafilters.,2012,53,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl53.html#PetrenkoP12,https://doi.org/10.1215/00294527-1626536 +Albert Visser,Rules and Arithmetics.,1999,40,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl40.html#Visser99,https://doi.org/10.1305/ndjfl/1039096308 +Michael C. Laskowski,An Old Friend Revisited: Countable Models of ω*-Stable Theories.,2007,48,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl48.html#Laskowski07,https://doi.org/10.1305/ndjfl/1172787550 +Arnold R. Vobach,The weak topology on logical calculi.,1977,18,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl18.html#Vobach77,https://doi.org/10.1305/ndjfl/1093888016 +Gabriel Uzquiano,Varieties of Indefinite Extensibility.,2015,56,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl56.html#Uzquiano15,https://doi.org/10.1215/00294527-2835056 +Roderic A. Girle,S1 and#8800* S0.9.,1975,16,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl16.html#Girle75,https://doi.org/10.1305/ndjfl/1093891791 +Michal Krynicki,Vector spaces and binary quantifiers.,1984,25,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl25.html#KrynickiLV84,https://doi.org/10.1305/ndjfl/1093870519 +James Rosenberg,The application of ternary semi-groups to the study of n-valued Sheffer functions.,1969,10,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl10.html#Rosenberg69,https://doi.org/10.1305/ndjfl/1093893589 +W. D. Hart,On propositions.,1978,19,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl19.html#HartM78,https://doi.org/10.1305/ndjfl/1093888326 +Paul Thom,De Re Modality and the New Essentialism: A Dilemma.,2003,44,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl44.html#Thom03,https://doi.org/10.1305/ndjfl/1091122497 +Robert G. Wengert,The logic of essentially ordered causes.,1971,12,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl12.html#Wengert71,https://doi.org/10.1305/ndjfl/1093894361 +Peter Gärdenfors,On the extensions of S5.,1973,14,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl14.html#Gardenfors73,https://doi.org/10.1305/ndjfl/1093890906 +John Corcoran,Strange arguments.,1972,13,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl13.html#Corcoran72,https://doi.org/10.1305/ndjfl/1093894716 +R. Beazer,Compactness in abstractions of Post algebras.,1975,16,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl16.html#Beazer75,https://doi.org/10.1305/ndjfl/1093891801 +Boleslaw Sobocinski,A proper subsystem of S4.O4..,1971,12,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl12.html#Sobocinski71f,https://doi.org/10.1305/ndjfl/1093894303 +Pierangelo Miglioli,A Constructivism Based on Classical Truth.,1989,30,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl30.html#MiglioliMOU89,https://doi.org/10.1305/ndjfl/1093634996 +David W. Bennett,An elementary completeness proof for a system of natural deduction.,1973,14,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl14.html#Bennett73,https://doi.org/10.1305/ndjfl/1093891017 +Kwame Gyekye,Aristotle and a modern notion of predication.,1974,15,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl15.html#Gyekye74,https://doi.org/10.1305/ndjfl/1093891495 +Richard Kaye,On Cofinal Extensions of Models of Fragments of Arithmetic.,1991,32,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl32.html#Kaye91,https://doi.org/10.1305/ndjfl/1093635836 +G. N. Georgacarakos,A new family of modal systems.,1978,19,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl19.html#Georgacarakos78a,https://doi.org/10.1305/ndjfl/1093888320 +Martin W. Bunder,Λ*-elimination in illative combinatory logic.,1979,20,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl20.html#Bunder79d,https://doi.org/10.1305/ndjfl/1093882671 +Hugues Leblanc,Matters of separation.,1972,13,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl13.html#LeblancM72,https://doi.org/10.1305/ndjfl/1093894721 +Richard Routley,Conventionalist and contingency-oriented modal logics.,1971,12,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl12.html#Routley71,https://doi.org/10.1305/ndjfl/1093894213 +Fabio Bellissima,A Distinguishable Model Theorem for the Minimal US-Tense Logic.,1995,36,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl36.html#BellissimaB95,https://doi.org/10.1305/ndjfl/1040136918 +Czeslaw Lejewski,A note on a problem concerning the axiomatic foundations of mereology.,1963,4,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl4.html#Lejewski63,https://doi.org/10.1305/ndjfl/1093957503 +Guus Broesterhuizen,Identities and indiscernibility.,1986,27,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl27.html#BroesterhuizenW86,https://doi.org/10.1305/ndjfl/1093636773 +Timothy G. McCarthy,Logical Form and Radical Interpretation.,1989,30,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl30.html#McCarthy89,https://doi.org/10.1305/ndjfl/1093635157 +Paul E. Howard,Maximal p-subgroups and the axiom of choice.,1987,28,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl28.html#HowardY87,https://doi.org/10.1305/ndjfl/1093636944 +Douglas Dorrough,A note on primary and secondary syncategoremata.,1970,11,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl11.html#Dorrough70,https://doi.org/10.1305/ndjfl/1093893863 +John W. Berry,A note on immune sets.,1972,13,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl13.html#Berry72,https://doi.org/10.1305/ndjfl/1093894628 +Florencio G. Asenjo,Weierstrass's final theorem of arithmetic is not final.,1972,13,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl13.html#AsenjoM72,https://doi.org/10.1305/ndjfl/1093894626 +John Donnelly,Some remarks on Geach's predicative and attributive adjectives.,1971,12,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl12.html#Donnelly71,https://doi.org/10.1305/ndjfl/1093894160 +Stefan Wintein,From Closure Games to Strong Kleene Truth.,2016,57,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl57.html#Wintein16,https://doi.org/10.1215/00294527-3346590 +Zoran Markovic,Some preservation results for classical and intuitionistic satisfiability in Kripke models.,1983,24,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl24.html#Markovic83,https://doi.org/10.1305/ndjfl/1093870383 +P. J. Fitzpatrick,An extension of Venn diagrams.,1973,14,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl14.html#Fitzpatrick73,https://doi.org/10.1305/ndjfl/1093890810 +George F. Schumm,A note on the structure of the power set.,1968,9,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl9.html#Schumm68,https://doi.org/10.1305/ndjfl/1093893515 +Boleslaw Sobocinski,A semi-lattice theoretical characterization of associative Newman algebras.,1972,13,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl13.html#Sobocinski72e,https://doi.org/10.1305/ndjfl/1093894729 +Daniel Nolan,Impossible Worlds: A Modest Approach.,1997,38,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl38.html#Nolan97,https://doi.org/10.1305/ndjfl/1039540769 +Bernhard Banaschewski,On G. Spencer Brown's laws of form.,1977,18,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl18.html#Banaschewski77,https://doi.org/10.1305/ndjfl/1093888028 +Charles McCarty,Variations on a thesis: intuitionism and computability.,1987,28,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl28.html#McCarty87,https://doi.org/10.1305/ndjfl/1093637648 +Anthony Willing,Buridan's Divided Modal Syllogistic.,1991,32,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl32.html#Willing91,https://doi.org/10.1305/ndjfl/1093635752 +Juliusz Reichbach,Some methods of formal proofs. III.,1971,12,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl12.html#Reichbach71,https://doi.org/10.1305/ndjfl/1093894371 +H. Julian Wadleigh,Expressibility in type theory.,1970,11,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl11.html#Wadleigh70,https://doi.org/10.1305/ndjfl/1093894000 +Fred S. Roberts,Tolerance geometry.,1973,14,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl14.html#Roberts73,https://doi.org/10.1305/ndjfl/1093890809 +Luis E. Sanchis,A generalization of the Gentzen Hauptsatz.,1971,12,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl12.html#Sanchis71,https://doi.org/10.1305/ndjfl/1093894374 +David Marker,End Extensions of Normal Models of Open Induction.,1991,32,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl32.html#Marker91,https://doi.org/10.1305/ndjfl/1093635838 +Jon Barwise,Information and Impossibilities.,1997,38,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl38.html#Barwise97,https://doi.org/10.1305/ndjfl/1039540766 +Richard G. Heck Jr.,Grundgesetze der Arithmetik I: Paragraphen 29-32.,1997,38,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl38.html#Heck97,https://doi.org/10.1305/ndjfl/1039700749 +Laurence S. Gagnon,NOR logic: a system of natural deduction.,1976,17,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl17.html#Gagnon76,https://doi.org/10.1305/ndjfl/1093887540 +Philip Hugly,A semantical account of the vicious circle principle.,1979,20,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl20.html#HuglyS79,https://doi.org/10.1305/ndjfl/1093882664 +Thomas S. Weston,The continuum hypothesis is independent of second-order ZF.,1977,18,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl18.html#Weston77,https://doi.org/10.1305/ndjfl/1093888026 +E. J. Lemmon,Some results on finite axiomatizability in modal logic.,1965,6,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl6.html#Lemmon65,https://doi.org/10.1305/ndjfl/1093958338 +Steven Garavaglia,Relative strength of Malitz quantifiers.,1978,19,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl19.html#Garavaglia78,https://doi.org/10.1305/ndjfl/1093888414 +Federico M. Sioson,Further axiomatizations of the Ł*ukasiewicz three-valued calculus.,1964,5,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl5.html#Sioson64,https://doi.org/10.1305/ndjfl/1093957740 +Audoënus Le Blanc,Investigations in protothetic.,1985,26,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl26.html#Blanc85b,https://doi.org/10.1305/ndjfl/1093870940 +J. Jay Zeman,Bases for S4 and S4.2 without added axioms.,1963,4,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl4.html#Zeman63,https://doi.org/10.1305/ndjfl/1093957581 +Robert Goldblatt,Concerning the proper axiom for S4.04 and some related systems.,1973,14,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl14.html#Goldblatt73,https://doi.org/10.1305/ndjfl/1093891006 +George F. Schumm,Remark on a logic of preference.,1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#Schumm75a,https://doi.org/10.1305/ndjfl/1093891888 +Kyriakos Keremedis,Nonconstructive Properties of Well-Ordered T2 topological Spaces.,1999,40,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl40.html#KeremedisT99,https://doi.org/10.1305/ndjfl/1012429718 +Zbigniew Bonikowski,A Certain Conception of the Calculus of Rough Sets.,1992,33,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl33.html#Bonikowski92,https://doi.org/10.1305/ndjfl/1093634405 +André Nies,A New Spectrum of Recursive Models.,1999,40,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl40.html#Nies99,https://doi.org/10.1305/ndjfl/1022615611 +Marie Goldstein,The historical development of group theoretical ideas in connection with Euclid's axiom of congruence.,1972,13,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl13.html#Goldstein72,https://doi.org/10.1305/ndjfl/1093890620 +John G. Stevenson,Donnelly on Geach.,1972,13,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl13.html#Stevenson72,https://doi.org/10.1305/ndjfl/1093890634 +E. William Chapin,A non-standard proof in the theory of integration.,1973,14,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl14.html#ChapinW73,https://doi.org/10.1305/ndjfl/1093890820 +Paul S. Strauss,Some systems of natural deduction.,1967,8,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl8.html#Strauss67,https://doi.org/10.1305/ndjfl/1094068840 +Jared Corduan,Reverse Mathematics and Ramsey Properties of Partial Orderings.,2016,57,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl57.html#CorduanG16,https://doi.org/10.1215/00294527-3314771 +Boleslaw Sobocinski,Certain sets of postulates for distributive lattices with the constant elements.,1972,13,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl13.html#Sobocinski72a,https://doi.org/10.1305/ndjfl/1093894633 +Kempachiro Ohashi,A stronger form of a theorem of Friedberg.,1964,5,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl5.html#Ohashi64,https://doi.org/10.1305/ndjfl/1093957732 +Charles M. Harris,On the Symmetric Enumeration Degrees.,2007,48,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl48.html#Harris07,https://doi.org/10.1305/ndjfl/1179323263 +Philip Kremer,The Gupta-Belnap systems S# and S* are not axiomatisable.,1993,34,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl34.html#Kremer93,https://doi.org/10.1305/ndjfl/1093633907 +George F. Schumm,The number of nonnormal extensions of S4.,1988,29,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl29.html#Schumm88,https://doi.org/10.1305/ndjfl/1093637775 +Dugald Macpherson,Finite Axiomatizability and Theories with Trivial Algebraic Closure.,1991,32,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl32.html#Macpherson91,https://doi.org/10.1305/ndjfl/1093635744 +John Thomas Canty,Completeness of Copi's method of deduction.,1963,4,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl4.html#Canty63,https://doi.org/10.1305/ndjfl/1093957505 +Richard L. Mendelsohn,"Frege's two senses of ""is"".",1987,28,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl28.html#Mendelsohn87,https://doi.org/10.1305/ndjfl/1093636852 +Thierry Lucas,Varying Modal Theories.,1990,31,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl31.html#LucasL90,https://doi.org/10.1305/ndjfl/1093635504 +Saeed Salehi,Polynomially Bounded Recursive Realizability.,2005,46,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl46.html#Salehi05,https://doi.org/10.1305/ndjfl/1134397659 +Albert Visser,Peano's Smart Children: A Provability Logical Study of Systems with Built-in Consistency.,1989,30,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl30.html#Visser89,https://doi.org/10.1305/ndjfl/1093635077 +Richard A. DeMillo,Some applications of model theory to the metatheory of program schemata.,1977,18,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl18.html#DeMillo77,https://doi.org/10.1305/ndjfl/1093888024 +Thomas P. Wilson,General models of set theory.,1981,22,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl22.html#Wilson81,https://doi.org/10.1305/ndjfl/1093883338 +Boleslaw Sobocinski,"Errata: ""On the single axioms of the protothetic. I."".",1960,1,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl1.html#Sobocinski60c,http://projecteuclid.org/euclid.ndjfl/1093956623 +Richard Statman,Solving functional equations at higher types: some examples and some theorems.,1986,27,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl27.html#Statman86,https://doi.org/10.1305/ndjfl/1093636524 +Noby-Yuki Suzuki,Some Syntactical Properties of Intermediate Predicate Logics.,1990,31,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl31.html#Suzuki90,https://doi.org/10.1305/ndjfl/1093635590 +Eugen Mihailescu,L'ordre d'incomplètitude pour le système d'équivalence la négation et la réciprocité.,1969,10,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl10.html#Mihailescu69,https://doi.org/10.1305/ndjfl/1093893793 +V. Frederick Rickey,On weak and strong validity of rules for the propositional calculus.,1971,12,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl12.html#Rickey71,https://doi.org/10.1305/ndjfl/1093894158 +V. Yu. Shavrukov,A Smart Child of Peano's.,1994,35,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl35.html#Shavrukov94,https://doi.org/10.1305/ndjfl/1094061859 +Chris Mortensen,Inconsistent number systems.,1988,29,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl29.html#Mortensen88,https://doi.org/10.1305/ndjfl/1093637770 +Mohini Mullick,Does Ockham accept material implication?,1971,12,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl12.html#Mullick71,https://doi.org/10.1305/ndjfl/1093894159 +Ori Simchen,Polyadic Quantification via Denoting Concepts.,2010,51,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl51.html#Simchen10,https://doi.org/10.1215/00294527-2010-023 +Robert D. Carnes,A reduction procedure for Sheffer stroke formulas.,1969,10,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl10.html#Carnes69,https://doi.org/10.1305/ndjfl/1093893726 +Juan Barba Escriba,A Multidimensional Modal Translation for a Formal System Motivated by Situation Semantics.,1991,32,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl32.html#Escriba91,https://doi.org/10.1305/ndjfl/1093635931 +Shigeo Ohama,Conjunctive normal forms and weak modal logics without the axiom of necessity.,1984,25,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl25.html#Ohama84,https://doi.org/10.1305/ndjfl/1093870574 +Jon C. Muzio,A complete classification of three-place functors in two-valued logic.,1976,17,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl17.html#Muzio76,https://doi.org/10.1305/ndjfl/1093887636 +Stephen L. Bloom,A semi-completeness theorem.,1969,10,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl10.html#Bloom69,https://doi.org/10.1305/ndjfl/1093893720 +George Englebretsen,Sommers' proof that something exists.,1975,16,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl16.html#Englebretsen75,https://doi.org/10.1305/ndjfl/1093891712 +Peter Roeper,Consequence and Confirmation.,1995,36,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl36.html#RoeperL95,https://doi.org/10.1305/ndjfl/1040149352 +Athanassios Tzouvaras,Periodicity of Negation.,2001,42,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl42.html#Tzouvaras01,https://doi.org/10.1305/ndjfl/1054837935 +Terrell Ward Bynum,On an alleged contradiction lurking in Frege's Begriffsschrift.,1973,14,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl14.html#Bynum73,https://doi.org/10.1305/ndjfl/1093890908 +Ramon Jansana,Some Logics Related to von Wright's Logic of Place.,1994,35,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl35.html#Jansana94,https://doi.org/10.1305/ndjfl/1040609296 +Mike S. Joy,NP-Completeness of a Combinator Optimization Problem.,1995,36,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl36.html#JoyR95,https://doi.org/10.1305/ndjfl/1040248462 +A. Ivanov,Automorphisms of Homogeneous Structures.,2005,46,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl46.html#Ivanov05,https://doi.org/10.1305/ndjfl/1134397660 +Stephen D. Comer,A new foundation for the theory of relations.,1983,24,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl24.html#Comer83,https://doi.org/10.1305/ndjfl/1093870308 +Claudio Cerrato,Cut-free modal sequents for normal modal logics.,1993,34,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl34.html#Cerrato93,https://doi.org/10.1305/ndjfl/1093633906 +C. A. Meredith,Modal logic with functorial variables and a contingent constant.,1965,6,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl6.html#MeredithP65,https://doi.org/10.1305/ndjfl/1093958149 +John Thomas Canty,Elementary logic without referential quantification.,1971,12,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl12.html#Canty71,https://doi.org/10.1305/ndjfl/1093894365 +Albert M. Sweet,A pragmatic theory of locally standard grammar.,1984,25,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl25.html#Sweet84,https://doi.org/10.1305/ndjfl/1093870689 +Francis J. Tytus,A theorem for deriving consequences of the axiom of choice.,1967,8,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl8.html#Tytus67,https://doi.org/10.1305/ndjfl/1094068841 +R. B. Redmon,A note on Linsky's Referring.,1972,13,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl13.html#Redmon72,https://doi.org/10.1305/ndjfl/1093890633 +Herbert E. Hendry,Minimally incomplete sets of Ł*ukasiewiczian truth functions.,1983,24,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl24.html#Hendry83,https://doi.org/10.1305/ndjfl/1093870229 +Jonathan P. Seldin,"A second corrigendum to my paper: ""Note on definitional reductions"".",1980,21,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl21.html#Seldin80,https://doi.org/10.1305/ndjfl/1093883258 +James H. Schmerl,PA(aa).,1995,36,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl36.html#Schmerl95,https://doi.org/10.1305/ndjfl/1040136916 +Alex Blum,A note on natural deduction.,1974,15,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl15.html#Blum74,https://doi.org/10.1305/ndjfl/1093891316 +Charles H. Lambros,A shortened proof of Sobociński's theorem concerning a restricted rule of substitution in the field of propositional calculi.,1979,20,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl20.html#Lambros79,https://doi.org/10.1305/ndjfl/1093882409 +Ludomir Newelski,On Type Definable Subgroups of a Stable Group.,1991,32,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl32.html#Newelski91,https://doi.org/10.1305/ndjfl/1093635743 +Ivo Thomas,Decision for K4.,1967,8,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl8.html#Thomas67b,https://doi.org/10.1305/ndjfl/1094068850 +Olgierd Narbutt,De quelques problèmes de la logique médiévale.,1976,17,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl17.html#Narbutt76,https://doi.org/10.1305/ndjfl/1093887628 +David Charles McCarty,Polymorphism and Apartness.,1991,32,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl32.html#McCarty91a,https://doi.org/10.1305/ndjfl/1093635925 +Seiki Akama,Constructive predicate logic with strong negation and model theory.,1988,29,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl29.html#Akama88,https://doi.org/10.1305/ndjfl/1093637767 +John T. Baldwin 0001,The Vaught Conjecture: Do Uncountable Models Count?,2007,48,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl48.html#Baldwin07,https://doi.org/10.1305/ndjfl/1172787546 +Richard L. Purtill,Four-valued tables and modal logic.,1970,11,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl11.html#Purtill70,https://doi.org/10.1305/ndjfl/1093894084 +David Meredith 0002,In memoriam: Carew Arthur Meredith (1904-1976).,1977,18,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl18.html#000277,https://doi.org/10.1305/ndjfl/1093888116 +Laurent Larouche,Examination of the axiomatic foundations of a theory of change. I.,1968,9,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl9.html#Larouche68,https://doi.org/10.1305/ndjfl/1093893526 +Luís Cruz-Filipe,The Finitistic Consistency of Heck's Predicative Fregean System.,2015,56,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl56.html#Cruz-FilipeF15,https://doi.org/10.1215/00294527-2835110 +J. Michael Dunn,Completeness of relevant quantification theories.,1974,15,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl15.html#DunnLM74,https://doi.org/10.1305/ndjfl/1093891202 +B. L. Bunch,Presupposition: an alternative approach.,1979,20,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl20.html#Bunch79,https://doi.org/10.1305/ndjfl/1093882541 +Christopher Steinsvold,A Note on Logics of Ignorance and Borders.,2008,49,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl49.html#Steinsvold08,https://doi.org/10.1215/00294527-2008-018 +Boleslaw Sobocinski,An equational axiomatization of associative Newman algebras.,1972,13,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl13.html#Sobocinski72d,https://doi.org/10.1305/ndjfl/1093894725 +John T. Kearns,Two views of variables.,1969,10,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl10.html#Kearns69,https://doi.org/10.1305/ndjfl/1093893652 +Anuj Dawar,Decidable Fragments of the Simple Theory of Types with Infinity and NF.,2017,58,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl58.html#DawarFM17,https://doi.org/10.1215/00294527-2017-0009 +Silvia Ghilezan,Strong Normalization and Typability with Intersection Types.,1996,37,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl37.html#Ghilezan96,https://doi.org/10.1305/ndjfl/1040067315 +James G. Raftery,Admissible Rules and the Leibniz Hierarchy.,2016,57,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl57.html#Raftery16,https://doi.org/10.1215/00294527-3671151 +Alberto M. Dou,Logical and historical remarks on Saccheri's geometry.,1970,11,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl11.html#Dou70,https://doi.org/10.1305/ndjfl/1093894070 +Cinzia Bonotto,A Generalization of the Adequacy Theorem for the Quasi-Senses.,1990,31,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl31.html#Bonotto90,https://doi.org/10.1305/ndjfl/1093635591 +James K. Feibleman,Professor Quine and real classes.,1974,15,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl15.html#Feibleman74,https://doi.org/10.1305/ndjfl/1093891299 +Mark Lance,On the logic of contingent relevant implication: a conceptual incoherence in the intuitive interpretation of R.,1988,29,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl29.html#Lance88,https://doi.org/10.1305/ndjfl/1093638016 +Rainer Güting,Subtractive abelian groups.,1975,16,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl16.html#Guting75,https://doi.org/10.1305/ndjfl/1093891809 +Charles E. Hughes,The one-one equivalence of some general combinatorial decision problems.,1977,18,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl18.html#HughesS77,https://doi.org/10.1305/ndjfl/1093887936 +Elias E. Savellos,On Defining Identity.,1990,31,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl31.html#Savellos90,https://doi.org/10.1305/ndjfl/1093635509 +Stuart G. Shanker,Wittgenstein versus Turing on the nature of Church's thesis.,1987,28,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl28.html#Shanker87,https://doi.org/10.1305/ndjfl/1093637650 +G. Y. Rainick,A formal system.,1960,1,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl1.html#Rainick60,https://doi.org/10.1305/ndjfl/1093956556 +Denis R. Hirschfeldt,Realizing Levels of the Hyperarithmetic Hierarchy as Degree Spectra of Relations on Computable Structures.,2002,43,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl43.html#HirschfeldtW02,https://doi.org/10.1305/ndjfl/1071505769 +Ivo Thomas,Functional completeness of Henkin's propositional fragments.,1960,1,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl1.html#Thomas60b,https://doi.org/10.1305/ndjfl/1093956551 +Mariangiola Dezani-Ciancaglini,"The ""Relevance"" of Intersection and Union Types.",1997,38,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl38.html#Dezani-CiancagliniGV97,https://doi.org/10.1305/ndjfl/1039724889 +John Lake,The approaches to set theory.,1979,20,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl20.html#Lake79,https://doi.org/10.1305/ndjfl/1093882550 +John T. Kearns,A more satisfactory description of the semantics of justification.,1981,22,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl22.html#Kearns81,https://doi.org/10.1305/ndjfl/1093883395 +Herbert B. Enderton,On provable recursive functions.,1968,9,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl9.html#Enderton68,https://doi.org/10.1305/ndjfl/1093893356 +George Voutsadakis,Categorical Abstract Algebraic Logic: More on Protoalgebraicity.,2006,47,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl47.html#Voutsadakis06,https://doi.org/10.1305/ndjfl/1168352663 +Kyriakos Keremedis,Powers of 2.,1999,40,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl40.html#Herrlich99,https://doi.org/10.1305/ndjfl/1022615615 +E. J. Lowe,A simplification of the logic of conditionals.,1983,24,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl24.html#Lowe83,https://doi.org/10.1305/ndjfl/1093870380 +Sven Ove Hansson,Levi Contractions and AGM Contractions: a Comparison.,1995,36,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl36.html#HanssonO95,https://doi.org/10.1305/ndjfl/1040308830 +John Bacon,Syllogistic without existence.,1967,8,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl8.html#Bacon67,https://doi.org/10.1305/ndjfl/1093956084 +Jack C. Boudreaux,Defining general structures.,1979,20,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl20.html#Boudreaux79,https://doi.org/10.1305/ndjfl/1093882654 +Luis Elpidio Sanchis,Nueva demostracion de la completicidad funcional del calculo proposicional bivalente.,1961,2,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl2.html#Sanchis61,https://doi.org/10.1305/ndjfl/1093956751 +E. William Chapin,The strong decidability of cut-logics. I. Partial propositional calculi.,1971,12,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl12.html#Chapin71b,https://doi.org/10.1305/ndjfl/1093894295 +Michael D. Resnik,A note on natural deduction.,1966,7,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl7.html#Resnik66,https://doi.org/10.1305/ndjfl/1093958561 +R. W. Knight,Categories of Topological Spaces and Scattered Theories.,2007,48,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl48.html#Knight07,https://doi.org/10.1305/ndjfl/1172787545 +György Serény,Isomorphisms of Finite Cylindrical Set Algebras of Characteristic Zero.,1993,34,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl34.html#Sereny93,https://doi.org/10.1305/ndjfl/1093634658 +T. A. McKee,Generalized equivalence and the foundations of quasigroups.,1980,21,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl21.html#McKee80,https://doi.org/10.1305/ndjfl/1093882946 +William J. Collins,Provably recursive real numbers.,1978,19,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl19.html#Collins78,https://doi.org/10.1305/ndjfl/1093888500 +Kenji Fukuzaki,Implicit Definability of Subfields.,2003,44,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl44.html#FukuzakiT03,https://doi.org/10.1305/ndjfl/1091122499 +Gert-Jan C. Lokhorst,Anderson's Relevant Deontic and Eubouliatic Systems.,2008,49,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl49.html#Lokhorst08,https://doi.org/10.1215/00294527-2007-004 +Richard Routley,Repairing proofs of Arrow's general impossibility theorem and enlarging the scope of the theorem.,1979,20,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl20.html#Routley79,https://doi.org/10.1305/ndjfl/1093882810 +Laurence Kirby,Finitary Set Theory.,2009,50,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl50.html#Kirby09,https://doi.org/10.1215/00294527-2009-009 +Hin Chung Hung,Entailment and proof.,1979,20,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl20.html#Hung79,https://doi.org/10.1305/ndjfl/1093882815 +Max A. Freund,Semantics for Two Second-Order Logical Systems: =RRC* and Cocchiarella's RRC*.,1996,37,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl37.html#Freund96,https://doi.org/10.1305/ndjfl/1039886523 +Ivo Thomas,On Meredith's sole positive axiom.,1974,15,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl15.html#Thomas74a,https://doi.org/10.1305/ndjfl/1093891409 +Oleksandr Petrenko,Selective and Ramsey Ultrafilters on G-spaces.,2017,58,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl58.html#PetrenkoP17,https://doi.org/10.1215/00294527-3839090 +Evan Goris,Interpolation and the Interpretability Logic of PA.,2006,47,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl47.html#Goris06,https://doi.org/10.1305/ndjfl/1153858645 +Jonathan Bennett,"Psychology and semantics: comments on Schiffer's ""Intention-based semantics"".",1982,23,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl23.html#Bennett82,https://doi.org/10.1305/ndjfl/1093870084 +Anjan Shukla,Finite model property for five modal calculi in the neighbourhood of S3.,1971,12,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl12.html#Shukla71,https://doi.org/10.1305/ndjfl/1093894152 +Stuart T. Smith,Quadratic residues and x3+y3=z3 in models of IE1 and IE2.,1993,34,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl34.html#Smith93,https://doi.org/10.1305/ndjfl/1093634730 +Robert J. Farrell,Implication and presupposition.,1986,27,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl27.html#Farrell86,https://doi.org/10.1305/ndjfl/1093636522 +Sibajiban,A remark on note on duality.,1970,11,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl11.html#Sibajiban70,https://doi.org/10.1305/ndjfl/1093893864 +Valentin Goranko,Modal Definability in Enriched Languages.,1990,31,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl31.html#Goranko90,https://doi.org/10.1305/ndjfl/1093635335 +Bakhadyr Khoussainov,An Uncountably Categorical Theory Whose Only Computably Presentable Model Is Saturated.,2006,47,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl47.html#KhoussainovHS06,https://doi.org/10.1305/ndjfl/1143468311 +Otto Bird,In memoriam: Ivo Thomas (1912-1976).,1977,18,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl18.html#Bird77,https://doi.org/10.1305/ndjfl/1093887921 +Patrizio Cintioli,Sets without Subsets of Higher Many-One Degree.,2005,46,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl46.html#Cintioli05,https://doi.org/10.1305/ndjfl/1117755150 +Roman Murawski,The Contribution of Zygmunt Ratajczyk to the Foundations of Arithmetic.,1995,36,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl36.html#Murawski95,https://doi.org/10.1305/ndjfl/1040136911 +Robert G. Wengert,Schematizing De Morgan's argument.,1974,15,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl15.html#Wengert74,https://doi.org/10.1305/ndjfl/1093891210 +John Grant,Classifications for inconsistent theories.,1978,19,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl19.html#Grant78,https://doi.org/10.1305/ndjfl/1093888404 +Laurent Larouche,Examination of the axiomatic foundations of a theory of change. II.,1969,10,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl10.html#Larouche69,https://doi.org/10.1305/ndjfl/1093893717 +D. L. Székely,On general purpose unifying automata.,1966,7,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl7.html#Szekely66,https://doi.org/10.1305/ndjfl/1093958747 +Gunter Fuchs,Iteratively Changing the Heights of Automorphism Towers.,2012,53,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl53.html#FuchsL12,https://doi.org/10.1215/00294527-1715662 +Norwood Russell Hanson,The Gödel theorem.,1961,2,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl2.html#Hanson61,https://doi.org/10.1305/ndjfl/1093956833 +Matthias Baaz,Kripke-type semantics for da Costa's paraconsistent logic Cχ9*.,1986,27,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl27.html#Baaz86,https://doi.org/10.1305/ndjfl/1093636764 +J. E. Wiredu,On the real logical structure of Lewis' independent proof.,1973,14,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl14.html#Wiredu73,https://doi.org/10.1305/ndjfl/1093891107 +Giangiacomo Gerla,Approximate Similarities and Poincaré Paradox.,2008,49,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl49.html#Gerla08,https://doi.org/10.1215/00294527-2008-008 +R. Zane Parks,On formalizing Aristotle's theory of modal syllogisms.,1972,13,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl13.html#Parks72a,https://doi.org/10.1305/ndjfl/1093890627 +Michael Byrd,Eventual permanence.,1980,21,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl21.html#Byrd80,https://doi.org/10.1305/ndjfl/1093883183 +Richard E. Grandy,On the relation between free description theories and standard quantification theory.,1976,17,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl17.html#Grandy76,https://doi.org/10.1305/ndjfl/1093887435 +William Demopoulos,On the Origin and Status of our Conception of Number.,2000,41,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl41.html#Demopoulos00,https://doi.org/10.1305/ndjfl/1038336842 +Marcel Crabbé,On NFU.,1992,33,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl33.html#Crabbe92,https://doi.org/10.1305/ndjfl/1093636013 +James H. Schmerl,Recursively saturated models generated by indiscernibles.,1985,26,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl26.html#Schmerl85,https://doi.org/10.1305/ndjfl/1093870818 +Frederick A. Johnson,Copi's method of deduction.,1979,20,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl20.html#Johnson79,https://doi.org/10.1305/ndjfl/1093882535 +Nicholas J. DeLillo,A note on Turing machine regularity and primitive recursion.,1978,19,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl19.html#DeLillo78,https://doi.org/10.1305/ndjfl/1093888323 +Thomas G. McLaughlin,A note on pseudo doubly creative pairs.,1964,5,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl5.html#McLaughlin64,https://doi.org/10.1305/ndjfl/1093957734 +Paula Marie Wilde,A new condition for a modular lattice.,1962,3,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl3.html#Wilde62,https://doi.org/10.1305/ndjfl/1093957323 +Gareth O. Jones,Mildness and the Density of Rational Points on Certain Transcendental Curves.,2011,52,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl52.html#JonesMT11,https://doi.org/10.1215/00294527-2010-037 +Boleslaw Sobocinski,A new class of modal systems.,1971,12,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl12.html#Sobocinski71e,https://doi.org/10.1305/ndjfl/1093894301 +Thomas M. Northon-Smith,A note on Philip Kitscher's analysis of mathematical truths.,1992,33,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl33.html#Northon-Smith92,https://doi.org/10.1305/ndjfl/1093636016 +Dolph Ulrich,"Erratum: ""Some results concerning finite models for sentential calculi"".",1974,15,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl15.html#Ulrich74,http://projecteuclid.org/euclid.ndjfl/1093891501 +Chris Mortensen,Models for Inconsistent and Incomplete Differential Calculus.,1990,31,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl31.html#Mortensen90,https://doi.org/10.1305/ndjfl/1093635421 +John N. Martin,Epistemic semantics for classical and intuitionistic logic.,1984,25,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl25.html#Martin84,https://doi.org/10.1305/ndjfl/1093870571 +George Weaver,Unifying Some Modifications of the Henkin Construction.,1992,33,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl33.html#Weaver92,https://doi.org/10.1305/ndjfl/1093634409 +Christian Delhommé,Dependent Choices and Weak Compactness.,1999,40,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl40.html#DelhommeM99,https://doi.org/10.1305/ndjfl/1012429720 +Józef Dudek,On Finite Models of Regular Identities.,1989,30,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl30.html#DudekK89,https://doi.org/10.1305/ndjfl/1093635244 +John Robert Baker,Essentialism and the modal semantics of J. Hintikka.,1978,19,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl19.html#Baker78,https://doi.org/10.1305/ndjfl/1093888209 +Martin W. Bunder,Proof-finding Algorithms for Classical and Subclassical Propositional Logics.,2009,50,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl50.html#BunderR09,https://doi.org/10.1215/00294527-2009-011 +John Staples,Truth in constructive metamathematics.,1978,19,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl19.html#Staples78,https://doi.org/10.1305/ndjfl/1093888413 +Hugues Leblanc,On Relativizing Kolmogorov's Absolute Probability Functions.,1989,30,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl30.html#LeblancR89,https://doi.org/10.1305/ndjfl/1093635234 +Pimpen Vejjajiva,A Note on Weakly Dedekind Finite Sets.,2014,55,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl55.html#VejjajivaP14,https://doi.org/10.1215/00294527-2688096 +Eugen Mihailescu,Decision problem in the classical logic.,1967,8,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl8.html#Mihailescu67,https://doi.org/10.1305/ndjfl/1093956090 +André Chauvin,Theory of objects and set theory: introduction and semantics.,1979,20,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl20.html#Chauvin79,https://doi.org/10.1305/ndjfl/1093882400 +Timothy Bays,The Fruits of Logicism.,2000,41,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl41.html#Bays00,https://doi.org/10.1305/ndjfl/1038336884 +George Englebretsen,Do we need relative identity?,1982,23,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl23.html#Englebretsen82,https://doi.org/10.1305/ndjfl/1093883570 +John Loader,The binary representation of m-valued logic with applications to universal decision elements.,1979,20,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl20.html#Loader79,https://doi.org/10.1305/ndjfl/1093882419 +Marcelo Finger,Combining Temporal Logic Systems.,1996,37,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl37.html#FingerG96,https://doi.org/10.1305/ndjfl/1040046087 +Lawrence Powers,Quantifier responsiveness.,1987,28,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl28.html#Powers87,https://doi.org/10.1305/ndjfl/1093637555 +Roy T. Cook,Cardinality and Acceptable Abstraction.,2018,59,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl59.html#CookL18,https://doi.org/10.1215/00294527-2017-0012 +Peter A. Facione,The logic of intending and believing.,1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#Facione75,https://doi.org/10.1305/ndjfl/1093891892 +Djordje Cubric,There are denumerably many ternary intuitionistic Sheffer functions.,1988,29,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl29.html#Cubric88,https://doi.org/10.1305/ndjfl/1093638023 +Michael C. Gemignani,A note on Bd X.,1966,7,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl7.html#Gemignani66b,https://doi.org/10.1305/ndjfl/1093958758 +Robert S. Wolf,"A highly efficient ""transfinite recursive definitions"" axiom for set theory.",1981,22,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl22.html#Wolf81,https://doi.org/10.1305/ndjfl/1093883340 +Isaac Goldbring,Definable Operators on Hilbert Spaces.,2012,53,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl53.html#Goldbring12,https://doi.org/10.1215/00294527-1715689 +P. Tosi,Normal derivability and first-order arithmetic.,1980,21,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl21.html#Tosi80,https://doi.org/10.1305/ndjfl/1093883058 +Alberto Zanardo,On the equivalence between the calculi MCν and ECν+1 of A. Bressan.,1983,24,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl24.html#Zanardo83,https://doi.org/10.1305/ndjfl/1093870381 +Audoënus Le Blanc,New axioms for mereology.,1985,26,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl26.html#Blanc85a,https://doi.org/10.1305/ndjfl/1093870935 +Alex Orenstein,Reconciling Aristotle and Frege.,1999,40,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl40.html#Orenstein99,https://doi.org/10.1305/ndjfl/1022615618 +Robert L. Wilson,The modal predicate logics PF* F.,1977,18,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl18.html#Wilson77,https://doi.org/10.1305/ndjfl/1093887923 +Hilary Putnam,Nonstandard Models and Kripke's Proof of the Gödel Theorem.,2000,41,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl41.html#Putnam00,https://doi.org/10.1305/ndjfl/1027953483 +Enrique Casanovas,On Elementary Equivalence for Equality-free Logic.,1996,37,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl37.html#CasanovasDJ96,https://doi.org/10.1305/ndjfl/1039886524 +Rich Blaylock,Infima in the Recursively Enumerable Weak Truth Table Degrees.,1997,38,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl38.html#BlaylockDL97,https://doi.org/10.1305/ndjfl/1039700747 +Gisèle Fischer Servi,The finite model property for MIPQ and some consequences.,1978,19,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl19.html#Servi78,https://doi.org/10.1305/ndjfl/1093888520 +La Verne Shelton,A diachronic semantics for inexact reference.,1983,24,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl24.html#Shelton83,https://doi.org/10.1305/ndjfl/1093870221 +Boleslaw Sobocinski,A new postulate-system for modular lattices.,1975,16,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl16.html#Sobocinski75,https://doi.org/10.1305/ndjfl/1093891613 +James H. Schmerl,Elementary Cuts in Saturated Models of Peano Arithmetic.,2012,53,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl53.html#Schmerl12,https://doi.org/10.1215/00294527-1626491 +Robert Warren Button,When do *continuous extensions exist?,1977,18,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl18.html#Button77,https://doi.org/10.1305/ndjfl/1093888012 +Jesús A. álvarez López,Nonreduction of Relations in the Gromov Space to Polish Actions.,2018,59,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl59.html#LopezC18,https://doi.org/10.1215/00294527-2017-0026 +Ivo Thomas,In memoriam: Edward John Lemmon (1930 - 1966).,1968,9,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl9.html#Thomas68,https://doi.org/10.1305/ndjfl/1093893347 +Miroslaw Szatkowski,Semantical analysis of superrelevant predicate logics with quantification.,1988,29,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl29.html#Szatkowski88,https://doi.org/10.1305/ndjfl/1093637929 +Jules Vuillemin,Sur les conditions qui permettent d'utiliser les matrices russelliennes des antinomies (1905) pour exprimer les théorèmes de limitations internes des formalismes.,1966,7,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl7.html#Vuillemin66,https://doi.org/10.1305/ndjfl/1093958477 +Rosalie Iemhoff,A Syntactic Approach to Unification in Transitive Reflexive Modal Logics.,2016,57,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl57.html#Iemhoff16,https://doi.org/10.1215/00294527-345997 +Laurence Kirby,Ordinal Exponentiations of Sets.,2015,56,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl56.html#Kirby15,https://doi.org/10.1215/00294527-3132806 +Boleslaw Sobocinski,A theorem concerning a restricted rule of substitution in the field of propositional calculi. II.,1974,15,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl15.html#Sobocinski74b,https://doi.org/10.1305/ndjfl/1093891486 +Carl G. Wagner,Aggregating subjective probabilities: some limitative theorems.,1984,25,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl25.html#Wagner84,https://doi.org/10.1305/ndjfl/1093870630 +Robert A. Alps,A predicate logic based on indefinite description and two notions of identity.,1981,22,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl22.html#AlpsN81,https://doi.org/10.1305/ndjfl/1093883460 +Joseph S. Wu,The problem of existental import (From George Boole to P. F. Strawson.,1969,10,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl10.html#Wu69,https://doi.org/10.1305/ndjfl/1093893792 +,Erratum.,2017,58,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl58.html#X17a,https://doi.org/10.1215/00294527-3784830 +Peter Roeper,The Aristotelian Continuum. A Formal Characterization.,2006,47,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl47.html#Roeper06,https://doi.org/10.1305/ndjfl/1153858647 +Nathaniel Miller,On the Inconsistency of Mumma's Eu.,2012,53,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl53.html#Miller12,https://doi.org/10.1215/00294527-1626509 +Hsing-chien Tsai,On the Decidability of Axiomatized Mereotopological Theories.,2015,56,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl56.html#Tsai15,https://doi.org/10.1215/00294527-2864307 +Alberto Marcone,Interval Orders and Reverse Mathematics.,2007,48,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl48.html#Marcone07,https://doi.org/10.1305/ndjfl/1187031412 +Ivo Thomas,Modal systems in the neighbourhood of T.,1964,5,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl5.html#Thomas64,https://doi.org/10.1305/ndjfl/1093957739 +Boleslaw Sobocinski,Modal system S4.4.,1964,5,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl5.html#Sobocinski64e,https://doi.org/10.1305/ndjfl/1093957980 +Jaap van Oosten,Partial Combinatory Algebras of Functions.,2011,52,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl52.html#Oosten11,https://doi.org/10.1215/00294527-1499381 +Wilfred G. Malcolm,Some results and algebraic applications in the theory of higher-order ultraproducts.,1974,15,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl15.html#Malcolm74,https://doi.org/10.1305/ndjfl/1093891194 +Balázs Biró,On Generalizations of a Theorem of Vaught.,1990,31,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl31.html#Biro90,https://doi.org/10.1305/ndjfl/1093635426 +Gregory Currie,Remarks on Frege's conception of inference.,1987,28,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl28.html#Currie87,https://doi.org/10.1305/ndjfl/1093636846 +Karen Lange,Classifications of Computable Structures.,2018,59,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl59.html#LangeMS18,https://doi.org/10.1215/00294527-2017-0015 +André Fuhrmann,Editor's Introduction.,1995,36,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl36.html#Fuhrmann95,https://doi.org/10.1305/ndjfl/1040308825 +Sy-David Friedman,On Absoluteness of Categoricity in Abstract Elementary Classes.,2011,52,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl52.html#FriedmanK11,https://doi.org/10.1215/00294527-1499354 +Augustín Rayo,Toward a Theory of Second-Order Consequence.,1999,40,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl40.html#RayoU99,https://doi.org/10.1305/ndjfl/1022615612 +Claribet Piña,A Partition Theorem of ω*χ9*α.,2018,59,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl59.html#Pina18,https://doi.org/10.1215/00294527-2018-0001 +Daniel R. Patten,Mereology on Topological and Convergence Spaces.,2013,54,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl54.html#Patten13,https://doi.org/10.1215/00294527-1731362 +Fabio Bellissima,Infinite Sets of Nonequivalent Modalities.,1989,30,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl30.html#Bellissima89,https://doi.org/10.1305/ndjfl/1093635240 +Verónica Becher,Program Size Complexity for Possibly Infinite Computations.,2005,46,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl46.html#BecherFNP05,https://doi.org/10.1305/ndjfl/1107220673 +Douglas Dunsmore Daye,Metalogical incompatibilities in the formal description of Buddhist logic (Nyāya).,1977,18,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl18.html#Daye77,https://doi.org/10.1305/ndjfl/1093887924 +Richard Routley,Some things do not exist.,1966,7,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl7.html#Routley66,https://doi.org/10.1305/ndjfl/1093958620 +Elliott Mendelson,On some recent criticism of Church's Thesis.,1963,4,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl4.html#Mendelson63,https://doi.org/10.1305/ndjfl/1093957577 +Victor Pambuccian,The Sum of Irreducible Fractions with Consecutive Denominators Is Never an Integer in PA-.,2008,49,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl49.html#Pambuccian08,https://doi.org/10.1215/00294527-2008-021 +Bakhadyr Khoussainov,Computable Models of Theories with Few Models.,1997,38,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl38.html#KhoussainovNS97,https://doi.org/10.1305/ndjfl/1039724885 +Charles B. Daniels,'Good' defined in terms of 'better'.,1993,34,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl34.html#Daniels93,https://doi.org/10.1305/ndjfl/1093634731 +Albert Visser,On the and#931*10-Conservativity of and#931*10-Completeness.,1991,32,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl32.html#Visser91,https://doi.org/10.1305/ndjfl/1093635927 +Paul E. Howard,The Axiom of Choice for Countable Collections of Countable Sets Does Not Imply the Countable Union Theorem.,1992,33,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl33.html#Howard92,https://doi.org/10.1305/ndjfl/1093636102 +Anton Dumitriu,Necessary and contingent deduction.,1979,20,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl20.html#Dumitriu79,https://doi.org/10.1305/ndjfl/1093882657 +Nathan C. Carter,Reflexive Intermediate Propositional Logics.,2006,47,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl47.html#Carter06,https://doi.org/10.1305/ndjfl/1143468310 +J. Michael Dunn,A modification of Parry's analytic implication.,1972,13,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl13.html#Dunn72,https://doi.org/10.1305/ndjfl/1093894715 +Florencio G. Asenjo,Generalized reals.,1970,11,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl11.html#Asenjo70,https://doi.org/10.1305/ndjfl/1093894079 +Penelope Maddy,Logic and the Discursive Intellect.,1999,40,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl40.html#Maddy99,https://doi.org/10.1305/ndjfl/1039096307 +Itay Kaplan,Witnessing Dp-Rank.,2014,55,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl55.html#KaplanS14,https://doi.org/10.1215/00294527-2688105 +Loredana Biacino,Connection Structures: Grzegorczyk's and Whitehead's Definitions of Point.,1996,37,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl37.html#BiacinoG96,https://doi.org/10.1305/ndjfl/1039886519 +Judy Green,Next P admissible sets are of cofinality ω*.,1977,18,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl18.html#Green77,https://doi.org/10.1305/ndjfl/1093887835 +Giorgi Japaridze,A Simple Proof of Arithmetical Completeness for and#928*1-conservativity Logic.,1994,35,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl35.html#Japaridze94,https://doi.org/10.1305/ndjfl/1040511342 +Thomas Sudkamp,Self-conjugate functions on Boolean algebras.,1978,19,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl19.html#Sudkamp78,https://doi.org/10.1305/ndjfl/1093888415 +Raymond E. Jennings,The n-adic first-order undefinability of the Geach formula.,1981,22,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl22.html#JenningsJS81,https://doi.org/10.1305/ndjfl/1093883516 +R. A. Bull,"Correction to ""Survey of generalizations of Urquhart semantics"".",1989,30,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl30.html#Bull89,http://projecteuclid.org/euclid.ndjfl/1093635002 +Aldo Antonelli,Frege's Other Program.,2005,46,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl46.html#AntonelliM05,https://doi.org/10.1305/ndjfl/1107220671 +Mingzhong Cai,A Hyperimmune Minimal Degree and an ANR 2-Minimal Degree.,2010,51,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl51.html#Cai10,https://doi.org/10.1215/00294527-2010-028 +Stephen Pollard,A Strengthening of Scott's ZF≦0* Result.,1990,31,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl31.html#Pollard90,https://doi.org/10.1305/ndjfl/1093635500 +Edward A. Hacker,Number system for the immediate inferences and the syllogism in Aristotelian logic.,1967,8,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl8.html#Hacker67,https://doi.org/10.1305/ndjfl/1094068845 +Michael E. Mytilinaios,Differences between Resource Bounded Degree Structures.,2003,44,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl44.html#MytilinaiosS03,https://doi.org/10.1305/ndjfl/1082637612 +Ralph L. Slaght,A concise method for translating propositional formulae containing the standard truth-functional connectives into a Sheffer stroke equivalent* plus an extension of the method.,1974,15,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl15.html#Slaght74,https://doi.org/10.1305/ndjfl/1093891209 +E. William Chapin,Gentzen-like systems for partial propositional calculi. II.,1971,12,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl12.html#Chapin71a,https://doi.org/10.1305/ndjfl/1093894216 +Anand Pillay,Classification theory over a predicate. I.,1985,26,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl26.html#PillayS85,https://doi.org/10.1305/ndjfl/1093870929 +Jonathan Stephenson,Controlling Effective Packing Dimension of Δ02 Degrees.,2016,57,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl57.html#Stephenson16,https://doi.org/10.1215/00294527-3328401 +William C. Nemitz,Semi-Boolean lattices.,1969,10,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl10.html#Nemitz69,https://doi.org/10.1305/ndjfl/1093893707 +Rolf Schock,A simple version of the generalized continuum hypothesis.,1966,7,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl7.html#Schock66,https://doi.org/10.1305/ndjfl/1093958623 +Xavier Caicedo,On extensions of Lχ9*χ9*(Q1).,1981,22,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl22.html#Caicedo81,https://doi.org/10.1305/ndjfl/1093883342 +Ladislav Beran,Three identities for ortholattices.,1976,17,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl17.html#Beran76,https://doi.org/10.1305/ndjfl/1093887530 +J. M. Bell,Two systems of presupposition logic.,1977,18,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl18.html#BellH77,https://doi.org/10.1305/ndjfl/1093888006 +Enrique Casanovas,A Supersimple Nonlow Theory.,1998,39,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl39.html#CasanovasK98,https://doi.org/10.1305/ndjfl/1039118865 +J. B. Beard,The modalities of KT4nMG.,1976,17,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl17.html#Beard76,https://doi.org/10.1305/ndjfl/1093887642 +Damir D. Dzhafarov,The Complexity of Primes in Computable Unique Factorization Domains.,2018,59,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl59.html#DzhafarovM18,https://doi.org/10.1215/00294527-2017-0024 +Alfred J. Freddoso,O-propositions and Ockham's theory of supposition.,1979,20,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl20.html#Freddoso79,https://doi.org/10.1305/ndjfl/1093882795 +Milton Fisk,Language and the having of concepts. I.,1961,2,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl2.html#Fisk61,https://doi.org/10.1305/ndjfl/1093956752 +John D. Clemens,Isomorphism of Homogeneous Structures.,2009,50,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl50.html#Clemens09,https://doi.org/10.1215/00294527-2008-024 +Brian F. Chellas,Modal Logics in the Vicinity of S1.,1996,37,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl37.html#ChellasS96,https://doi.org/10.1305/ndjfl/1040067312 +Jorge Baralt-Torrijos,The programmatic semantics of binary predicator calculi.,1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#Baralt-TorrijosCG75,https://doi.org/10.1305/ndjfl/1093891905 +David Harrah,Message semantics.,1986,27,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl27.html#Harrah86,https://doi.org/10.1305/ndjfl/1093636679 +Theodore F. Sullivan,The geometry of solids in Hilbert spaces.,1973,14,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl14.html#Sullivan73,https://doi.org/10.1305/ndjfl/1093891113 +Hartry Field,Prospects for a Naive Theory of Classes.,2017,58,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl58.html#FieldLO17,https://doi.org/10.1215/00294527-2017-0010 +William H. Friedman,Calculemus.,1980,21,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl21.html#Friedman80,https://doi.org/10.1305/ndjfl/1093882950 +John Fox,Motivation and Demotivation of a Four-Valued Logic.,1990,31,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl31.html#Fox90,https://doi.org/10.1305/ndjfl/1093635334 +Waclaw Sierpinski,L'axiome du choix.,1967,8,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl8.html#Sierpinski67,https://doi.org/10.1305/ndjfl/1094068837 +Alexander Abian,Passages between finite and infinite.,1978,19,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl19.html#Abian78,https://doi.org/10.1305/ndjfl/1093888406 +Tapani Hyttinen,Preservation by Homomorphisms and Infinitary Languages.,1991,32,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl32.html#Hyttinen91,https://doi.org/10.1305/ndjfl/1093635742 +Thomas J. McKay,His burning pants.,1986,27,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl27.html#McKay86,https://doi.org/10.1305/ndjfl/1093636682 +Zachari Gleit,Characters and Fixed Points in Provability Logic.,1990,31,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl31.html#GleitG90,https://doi.org/10.1305/ndjfl/1093635330 +John W. Dawson,"Addenda and corrigenda to: ""The published work of Kurt Gödel: an annotated bibliography"".",1984,25,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl25.html#Dawson84,https://doi.org/10.1305/ndjfl/1093870634 +J. C. E. Dekker,Automorphisms of ω*-cubes.,1981,22,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl22.html#Dekker81,https://doi.org/10.1305/ndjfl/1093883396 +Franco Barbanera,A Constructive Valuation Semantics for Classical Logic.,1996,37,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl37.html#BarbaneraB96,https://doi.org/10.1305/ndjfl/1039886522 +Earline Jennifer Ashworth,The theory of consequence in the late fifteenth and early sixteenth centuries.,1973,14,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl14.html#Ashworth73a,https://doi.org/10.1305/ndjfl/1093890993 +Tibor Katrinák,"Remarks on the W. C. Nemitz's paper ""Semi-Boolean lattices"".",1970,11,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl11.html#Katrinak70,https://doi.org/10.1305/ndjfl/1093894072 +Aris Noah,Non-Classical Syllogistic Inference and the Method of Resolution.,1993,34,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl34.html#Noah93,https://doi.org/10.1305/ndjfl/1093634653 +Reinhard Muskens,On Partial and Paraconsistent Logics.,1999,40,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl40.html#Muskens99,https://doi.org/10.1305/ndjfl/1022615616 +Rod Downey,There Are No Maximal Low D.C.E. Degrees.,2004,45,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl45.html#DowneyY04,https://doi.org/10.1305/ndjfl/1099080209 +Vladeta Vuckovic,Recursive and recursively enumerable manifolds. I.,1977,18,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl18.html#Vuckovic77,https://doi.org/10.1305/ndjfl/1093887932 +William Russell Belding,A note on the intuitionist fan theorem.,1970,11,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl11.html#Belding70,https://doi.org/10.1305/ndjfl/1093894081 +R. D. Lee,The substitution schema in recursive arithmetic.,1965,6,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl6.html#Lee65,https://doi.org/10.1305/ndjfl/1093958257 +Thomas Hofweber,Hyperreal-Valued Probability Measures Approximating a Real-Valued Measure.,2016,57,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl57.html#HofweberS16,https://doi.org/10.1215/00294527-3542210 +Roman Kossak,Four Problems Concerning Recursively Saturated Models of Arithmetic.,1995,36,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl36.html#Kossak95,https://doi.org/10.1305/ndjfl/1040136913 +Garrel Pottinger,Proofs of the normalization and Church-Rosser theorems for the typed and#955*-calculus.,1978,19,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl19.html#Pottinger78,https://doi.org/10.1305/ndjfl/1093888405 +David Diamondstone,Lowness for Difference Tests.,2014,55,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl55.html#DiamondstoneF14,https://doi.org/10.1215/00294527-2377878 +Edoardo Rivello,Beneš's Partial Model of NF: An Old Result Revisited.,2014,55,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl55.html#Rivello14,https://doi.org/10.1215/00294527-2688087 +Carlo Toffalori,Cantor-Bendixson spectra of ω*-stable theories.,1987,28,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl28.html#Toffalori87,https://doi.org/10.1305/ndjfl/1093636943 +Patrick Maher,Book Review: David Christensen. Putting Logic in its Place: Formal Constraints on Rational Belief.,2006,47,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl47.html#Maher06,https://doi.org/10.1305/ndjfl/1143468316 +John P. Burgess,Quick completeness proofs for some logics of conditionals.,1981,22,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl22.html#Burgess81a,https://doi.org/10.1305/ndjfl/1093883341 +Boleslaw Sobocinski,The modular latticoids.,1976,17,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl17.html#Sobocinski76c,https://doi.org/10.1305/ndjfl/1093887732 +Nicholas J. Moutafakis,A new look at erotetic communication.,1975,16,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl16.html#Moutafakis75,https://doi.org/10.1305/ndjfl/1093891702 +Michael Moses,The Block Relation in Computable Linear Orders.,2011,52,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl52.html#Moses11,https://doi.org/10.1215/00294527-1435465 +Martin W. Bunder,A more relevant relevance logic.,1979,20,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl20.html#Bunder79f,https://doi.org/10.1305/ndjfl/1093882681 +Josep Maria Font,Algebraic Study of Two Deductive Systems of Relevance Logic.,1994,35,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl35.html#FontR94,https://doi.org/10.1305/ndjfl/1040511344 +Douglas D. Smith,Non-recursiveness of the set of finite sets of equations whose theories are one-based.,1972,13,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl13.html#Smith72,https://doi.org/10.1305/ndjfl/1093894637 +Michael J. White,"An ""almost classical"" period-based tense logic.",1988,29,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl29.html#White88,https://doi.org/10.1305/ndjfl/1093637939 +Miodrag Kapetanovic,More on trees and finite satisfiability: the taming of terms.,1987,28,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl28.html#KapetanovicK87,https://doi.org/10.1305/ndjfl/1093637559 +D. Michael Miller,A class of two-place three-valued unary generators.,1980,21,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl21.html#MillerM80,https://doi.org/10.1305/ndjfl/1093882948 +Michael White,Incommensurables and Incomparables: On the Conceptual Status and the Philosophical Use of Hyperreal Numbers.,1999,40,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl40.html#White99,https://doi.org/10.1305/ndjfl/1022615620 +Matthew Foreman 0001,Introduction to the Special Issue on Singular Cardinals Combinatorics.,2005,46,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl46.html#Foreman05,https://doi.org/10.1305/ndjfl/1125409325 +John Evenden,Generalised logic.,1974,15,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl15.html#Evenden74,https://doi.org/10.1305/ndjfl/1093891197 +Hubert H. Schneider,Substitutions for predicate variables and functional variables.,1980,21,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl21.html#Schneider80,https://doi.org/10.1305/ndjfl/1093882937 +Thomas G. McLaughlin,Strong reducibility on hypersimple sets.,1965,6,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl6.html#McLaughlin65,https://doi.org/10.1305/ndjfl/1093958262 +Robert H. Cowen,Binary consistent choice on triples.,1977,18,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl18.html#Cowen77a,https://doi.org/10.1305/ndjfl/1093887937 +Johan van Benthem,Notes on Modal Definability.,1989,30,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl30.html#Benthem89,https://doi.org/10.1305/ndjfl/1093634994 +Franz von Kutschera,Zur semantischen Begründung der klassischen und der intuitionistischen Logik.,1966,7,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl7.html#Kutschera66,https://doi.org/10.1305/ndjfl/1093958478 +Douglas S. Bridges,Uniform Continuity Properties of Preference Relations.,2008,49,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl49.html#Bridges08,https://doi.org/10.1215/00294527-2007-006 +Léon Birnbaum,Algèbre et logique tripolaire.,1976,17,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl17.html#Birnbaum76,https://doi.org/10.1305/ndjfl/1093887727 +Melvin Fitting,A modal logic 9*-calculus.,1975,16,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl16.html#Fitting75,https://doi.org/10.1305/ndjfl/1093891609 +Ulrich Kohlenbach,Ramsey's Theorem for Pairs and Provably Recursive Functions.,2009,50,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl50.html#KohlenbachK09,https://doi.org/10.1215/00294527-2009-019 +Czeslaw Lejewski,A contribution to the study of extended mereologies.,1973,14,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl14.html#Lejewski73,https://doi.org/10.1305/ndjfl/1093890808 +Mauro Gattari,Finite and Physical Modalities.,2005,46,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl46.html#Gattari05,https://doi.org/10.1305/ndjfl/1134397661 +Manfred E. Szabo,"An addendum to my paper: ""A categorical equivalence of proofs"".",1976,17,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl17.html#Szabo76,https://doi.org/10.1305/ndjfl/1093887426 +George F. Schumm,S3.02=S3.03.,1974,15,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl15.html#Schumm74,https://doi.org/10.1305/ndjfl/1093891206 +Robert K. Meyer,Career induction for quantifiers.,1980,21,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl21.html#Meyer80,https://doi.org/10.1305/ndjfl/1093883178 +Robert V. Kohn,Some Post-complete extensions of S2 and S3.,1977,18,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl18.html#Kohn77,https://doi.org/10.1305/ndjfl/1093888020 +Boleslaw Sobocinski,A note on the generalized continuum hypothesis. III.,1963,4,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl4.html#Sobocinski63b,https://doi.org/10.1305/ndjfl/1093957583 +Martin W. Bunder,Propositional and predicate calculuses based on combinatory logic.,1974,15,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl15.html#Bunder74,https://doi.org/10.1305/ndjfl/1093891196 +Earline Jennifer Ashworth,Some notes on syllogistic in the sixteenth and seventeenth centuries.,1970,11,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl11.html#Ashworth70,https://doi.org/10.1305/ndjfl/1093893856 +Albert M. Sweet,The pragmatics of first order languages. I.,1972,13,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl13.html#Sweet72,https://doi.org/10.1305/ndjfl/1093894711 +Peter Milne,Minimal doxastic logic: probabilistic and other completeness theorems.,1993,34,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl34.html#Milne93,https://doi.org/10.1305/ndjfl/1093633903 +Wolfgang Stegmüller,Remarks on the completeness of logical systems relative to the validity-concepts of P. Lorenzen and K. Lorenz.,1964,5,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl5.html#Stegmuller64,https://doi.org/10.1305/ndjfl/1093957800 +Leslie Stevenson,A formal theory of sortal quantification.,1975,16,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl16.html#Stevenson75,https://doi.org/10.1305/ndjfl/1093891700 +Joanna Golinska-Pilarek,Non-Fregean Propositional Logic with Quantifiers.,2016,57,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl57.html#Golinska-Pilarek16,https://doi.org/10.1215/00294527-3470547 +Alberto M. Dou,"Erratum: ""Logical and historical remarks on Saccheri's geometry"".",1974,15,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl15.html#Dou74,http://projecteuclid.org/euclid.ndjfl/1093891507 +Michiro Kondo,Approximation Logic and Strong Bunge Algebra.,1995,36,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl36.html#Kondo95a,https://doi.org/10.1305/ndjfl/1040136919 +Samuel Coskey,Infinite Time Decidable Equivalence Relation Theory.,2011,52,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl52.html#CoskeyH11,https://doi.org/10.1215/00294527-1306199 +Philip Kremer,Propositional Quantification in the Topological Semantics for S4.,1997,38,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl38.html#Kremer97,https://doi.org/10.1305/ndjfl/1039724892 +Wallace A. Murphree,Numerical Term Logic.,1998,39,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl39.html#Murphree98,https://doi.org/10.1305/ndjfl/1039182251 +Paul Vincent Spade,On a conservative attitude toward some naive semantic principles.,1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#Spade75,https://doi.org/10.1305/ndjfl/1093891906 +Daniel W. Cunningham,A Covering Lemma for HOD of K(ℝ*).,2010,51,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl51.html#Cunningham10,https://doi.org/10.1215/00294527-2010-027 +Matthew Foreman 0001,Some Problems in Singular Cardinals Combinatorics.,2005,46,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl46.html#Foreman05a,https://doi.org/10.1305/ndjfl/1125409329 +Steven J. Wagner,Tonk.,1981,22,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl22.html#Wagner81,https://doi.org/10.1305/ndjfl/1093883510 +Martin W. Bunder,Significance and illative combinatory logics.,1980,21,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl21.html#Bunder80,https://doi.org/10.1305/ndjfl/1093883054 +Richmond Thomason,Independence of the Dual Axiom in Modal K with Primitive ω74*.,2018,59,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl59.html#Thomason18,https://doi.org/10.1215/00294527-3817906 +Nicholas J. DeLillo,Models of an extension of the theory ORD.,1979,20,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl20.html#DeLillo79,https://doi.org/10.1305/ndjfl/1093882793 +Alexander G. Melnikov,New Degree Spectra of Abelian Groups.,2017,58,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl58.html#Melnikov17,https://doi.org/10.1215/00294527-2017-0006 +Christopher Menzel,On an Unsound Proof of the Existence of Possible Worlds.,1989,30,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl30.html#Menzel89,https://doi.org/10.1305/ndjfl/1093635242 +Lloyd Humberstone,A Basic System of Congruential-to-Monotone Bimodal Logic and Two of its Extensions.,1996,37,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl37.html#Humberstone96,https://doi.org/10.1305/ndjfl/1040046144 +Henri J. Sarlet,Hintikka's free logic is not free.,1977,18,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl18.html#Sarlet77,https://doi.org/10.1305/ndjfl/1093888018 +Jerry A. Fodor,Information and association.,1986,27,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl27.html#Fodor86,https://doi.org/10.1305/ndjfl/1093636677 +T. A. McKee,Generalized equivalence and the phraseology of configuration theorems.,1980,21,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl21.html#McKee80a,https://doi.org/10.1305/ndjfl/1093882947 +Charles G. Werner,Frequencies and beliefs.,1977,18,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl18.html#Werner77,https://doi.org/10.1305/ndjfl/1093888025 +Tapani Hyttinen,On Non-wellfounded Sets as Fixed Points of Substitutions.,2001,42,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl42.html#HyttinenP01,https://doi.org/10.1305/ndjfl/1054301353 +Sebastiaan A. Terwijn,Constructive Logic and the Medvedev Lattice.,2006,47,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl47.html#Terwijn06,https://doi.org/10.1305/ndjfl/1143468312 +Domenico Zambella,On the Proofs of Arithmetical Completeness for Interpretability Logic.,1992,33,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl33.html#Zambella92,https://doi.org/10.1305/ndjfl/1093634485 +Carl Lyngholm,"Errata: ""A double-iteration property of Boolean functions"".",1961,2,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl2.html#LyngholmY61,http://projecteuclid.org/euclid.ndjfl/1093956984 +Vincenzo Manca,First-order theories as many-sorted algebras.,1984,25,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl25.html#MancaS84,https://doi.org/10.1305/ndjfl/1093870521 +Boleslaw Sobocinski,Concerning the postulate-systems of subtractive abelian groups.,1975,16,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl16.html#Sobocinski75b,https://doi.org/10.1305/ndjfl/1093891810 +Frederick A. Johnson,Parry Syllogisms.,1999,40,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl40.html#Johnson99,https://doi.org/10.1305/ndjfl/1022615619 +Gregory Mellema,An alternative semantics for knowledge.,1979,20,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl20.html#Mellema79,https://doi.org/10.1305/ndjfl/1093882531 +Thomas Jager,An actualistic semantics for quantified modal logic.,1982,23,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl23.html#Jager82,https://doi.org/10.1305/ndjfl/1093870093 +M. E. Adams,A Note on the Axiomatization of Equational Classes of n-Valued Lukasiewicz Algebras.,1990,31,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl31.html#AdamsC90,https://doi.org/10.1305/ndjfl/1093635424 +Robert P. McArthur,Non-assertoric inference.,1974,15,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl15.html#McArthurW74,https://doi.org/10.1305/ndjfl/1093891300 +John T. Baldwin 0001,Constructing ω*-stable Structures: Rank k-fields.,2003,44,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl44.html#BaldwinH03,https://doi.org/10.1305/ndjfl/1091030852 +Boleslaw Sobocinski,Note on Zeman's modal system S4.04.,1970,11,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl11.html#Sobocinski70b,https://doi.org/10.1305/ndjfl/1093894011 +William J. Thomas,A simple generalization of Turing computability.,1979,20,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl20.html#Thomas79,https://doi.org/10.1305/ndjfl/1093882407 +William Frank,A note on the adequacy of translations.,1976,17,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl17.html#Frank76,https://doi.org/10.1305/ndjfl/1093887529 +Ivo Thomas,A theorem on S4.2 and S4.4.,1967,8,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl8.html#Thomas67a,https://doi.org/10.1305/ndjfl/1094068849 +Boleslaw Sobocinski,A theorem of Sierpiński on triads and the axiom of choice.,1964,5,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl5.html#Sobocinski64,https://doi.org/10.1305/ndjfl/1093957738 +Wilson E. Singletary,Many-one degrees associated with partial propositional calculi.,1974,15,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl15.html#Singletary74,https://doi.org/10.1305/ndjfl/1093891313 +José Iovino,Definable Types Over Banach Spaces.,2005,46,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl46.html#Iovino05,https://doi.org/10.1305/ndjfl/1107220672 +Frederick S. Gass,Generalized ordinal notation.,1971,12,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl12.html#Gass71,https://doi.org/10.1305/ndjfl/1093894157 +Charles G. Morgan,Sentential calculus for logical falsehoods.,1973,14,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl14.html#Morgan73,https://doi.org/10.1305/ndjfl/1093890998 +Mingzhong Cai,Degrees of Relative Provability.,2012,53,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl53.html#Cai12,https://doi.org/10.1215/00294527-1722710 +Jeffry L. Hirst,Reverse Mathematics and Uniformity in Proofs without Excluded Middle.,2011,52,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl52.html#HirstM11,https://doi.org/10.1215/00294527-1306163 +Adrian W. Moore,Frege's permutation argument.,1987,28,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl28.html#MooreR87,https://doi.org/10.1305/ndjfl/1093636845 +Otto Bird,Topic and consequences in Ockham's logic.,1961,2,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl2.html#Bird61,https://doi.org/10.1305/ndjfl/1093956831 +Thomas H. Payne,General computability.,1980,21,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl21.html#Payne80,https://doi.org/10.1305/ndjfl/1093883047 +H. Naruse,A Syntactic Approach to Maksimova's Principle of Variable Separation for some Substructural Logics.,1998,39,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl39.html#NaruseSO98,https://doi.org/10.1305/ndjfl/1039293022 +John T. Kearns,The completeness of combinatory logic with discriminators.,1973,14,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl14.html#Kearns73,https://doi.org/10.1305/ndjfl/1093890995 +J. Jay Zeman,S4.6 is S4.9.,1972,13,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl13.html#Zeman72,https://doi.org/10.1305/ndjfl/1093894632 +T. Hecht,Equational classes of relative Stone algebras.,1972,13,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl13.html#HechtK72,https://doi.org/10.1305/ndjfl/1093894723 +C. G. McKay,"Correction to my paper ""Some completeness results for intermediate propositional logics"".",1968,9,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl9.html#McKay68,https://doi.org/10.1305/ndjfl/1093893528 +Rolf Schock,On induction.,1965,6,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl6.html#Schock65b,https://doi.org/10.1305/ndjfl/1093958263 +Max O. Hocutt,Is epistemic logic possible?,1972,13,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl13.html#Hocutt72,https://doi.org/10.1305/ndjfl/1093890705 +Michael Kaminski,The Expressive Power of Second-Order Propositional Modal Logic.,1996,37,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl37.html#KaminskiT96,https://doi.org/10.1305/ndjfl/1040067314 +Keng Meng Ng,On the Degrees of Diagonal Sets and the Failure of the Analogue of a Theorem of Martin.,2009,50,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl50.html#Ng09,https://doi.org/10.1215/00294527-2009-022 +Michael Makkai,On Gabbay's Proof of the Craig Interpolation Theorem for Intuitionistic Predicate Logic.,1995,36,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl36.html#Makkai95,https://doi.org/10.1305/ndjfl/1040149353 +Martin Kummer,Cuppability of Simple and Hypersimple Sets.,2007,48,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl48.html#KummerS07,https://doi.org/10.1305/ndjfl/1187031408 +Bruce M. Horowitz,Constructively nonpartial recursive functions.,1980,21,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl21.html#Horowitz80,https://doi.org/10.1305/ndjfl/1093883046 +Richard Routley,Existence and identity in quantified modal logics.,1969,10,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl10.html#Routley69,https://doi.org/10.1305/ndjfl/1093893650 +Thomas Jech,On the number of generators of an ideal.,1981,22,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl22.html#Jech81,https://doi.org/10.1305/ndjfl/1093883394 +Joseph Barback,A note on regressive isols.,1966,7,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl7.html#Barback66,https://doi.org/10.1305/ndjfl/1093958560 +Esa Saarinen,"Linguistic intuition and reductionism: comments on J. J. Katz's paper: ""Common sense in semantics"".",1982,23,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl23.html#Saarinen82,https://doi.org/10.1305/ndjfl/1093870089 +Arnon Avron,Gentzenizing Schroeder-Heister's Natural Extension of Natural Deduction.,1990,31,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl31.html#Avron90,https://doi.org/10.1305/ndjfl/1093635337 +William Russell Belding,Intuitionistic negation.,1971,12,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl12.html#Belding71,https://doi.org/10.1305/ndjfl/1093894217 +Craig Smorynski,Quantified modal logic and self-reference.,1987,28,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl28.html#Smorynski87,https://doi.org/10.1305/ndjfl/1093637556 +R. Zane Parks,A note on R-Mingle and Sobociński's three-valued logic.,1972,13,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl13.html#Parks72,https://doi.org/10.1305/ndjfl/1093894720 +Benedikt Löwe,Set Theory With and Without Urelements and Categories of Interpretations.,2006,47,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl47.html#Lowe06,https://doi.org/10.1305/ndjfl/1143468313 +Jeffrey R. Schatz,On the Status of Reflection and Conservativity in Replacement Theories of Truth.,2018,59,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl59.html#Schatz18,https://doi.org/10.1215/00294527-2018-0004 +Robert L. Wilson,Some remarks on metaphysics and the modal logics F* F.,1976,17,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl17.html#Wilson76a,https://doi.org/10.1305/ndjfl/1093887627 +John P. Burgess,Book Review: Stewart Shapiro. Philosophy of Mathematics: Structure and Ontology.,1999,40,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl40.html#Burgess99a,https://doi.org/10.1305/ndjfl/1038949543 +Earline Jennifer Ashworth,Petrus Fonseca and material implication.,1968,9,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl9.html#Ashworth68a,https://doi.org/10.1305/ndjfl/1093893458 +John Thomas Canty,Leśniewski's terminological explanations as recursive concepts.,1969,10,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl10.html#Canty69a,https://doi.org/10.1305/ndjfl/1093893786 +J. Jay Zeman,Two basic pure-implicational systems.,1979,20,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl20.html#Zeman79,https://doi.org/10.1305/ndjfl/1093882677 +Max J. Cresswell,The completeness of S1 and some related systems.,1972,13,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl13.html#Cresswell72,https://doi.org/10.1305/ndjfl/1093890710 +Alexander Abian,On the consistency and independence of some set-theoretical axioms.,1978,19,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl19.html#AbianL78,https://doi.org/10.1305/ndjfl/1093888220 +Dolph Ulrich,RMLC: solution to a problem left open by Lemmon.,1981,22,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl22.html#Ulrich81,https://doi.org/10.1305/ndjfl/1093883403 +Juan Carlos Martínez,Some Open Questions for Superatomic Boolean Algebras.,2005,46,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl46.html#Martinez05,https://doi.org/10.1305/ndjfl/1125409333 +G. N. Georgacarakos,Semantics for S4.03.,1977,18,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl18.html#Georgacarakos77b,https://doi.org/10.1305/ndjfl/1093888027 +Boleslaw Sobocinski,Certain extensions of modal system S4.,1970,11,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl11.html#Sobocinski70a,https://doi.org/10.1305/ndjfl/1093894006 +Anthony Bloesch,A Tableau Style Proof System for Two Paraconsistent Logics.,1993,34,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl34.html#Bloesch93,https://doi.org/10.1305/ndjfl/1093634659 +Otto Bird,The formalizing of the topics in mediaeval logic.,1960,1,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl1.html#Bird60,https://doi.org/10.1305/ndjfl/1093956618 +Leon Horsten,Modal-Epistemic Variants of Shapiro's System of Epistemic Arithmetic.,1994,35,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl35.html#Horsten94,https://doi.org/10.1305/ndjfl/1094061865 +T. C. Wesselkamper,A note on UDE's in an n-valued logic.,1974,15,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl15.html#Wesselkamper74,https://doi.org/10.1305/ndjfl/1093891412 +Nuel D. Belnap Jr.,Intuitionism reconsidered.,1962,3,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl3.html#BelnapL62,https://doi.org/10.1305/ndjfl/1093957151 +Rolf Schock,What is science?,1965,6,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl6.html#Schock65,https://doi.org/10.1305/ndjfl/1093958076 +Thomas W. Scharle,Single axiom schemata for D and S.,1966,7,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl7.html#Scharle66,https://doi.org/10.1305/ndjfl/1093958752 +Johan van Benthem,Logical Constants Across Varying Types.,1989,30,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl30.html#Benthem89a,https://doi.org/10.1305/ndjfl/1093635152 +Katalin Bimbó,Relational Semantics for Kleene Logic and Action Logic.,2005,46,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl46.html#BimboD05,https://doi.org/10.1305/ndjfl/1134397663 +A. Trew,Incompleteness of a logic of Routley's.,1968,9,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl9.html#Trew68,https://doi.org/10.1305/ndjfl/1093893527 +Bozena Piekart,On Closed Elementary Cuts in Recursively Saturated Models of Peano Arithmetic.,1993,34,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl34.html#Piekart93,https://doi.org/10.1305/ndjfl/1093634654 +Christina Goddard,Improving a Bounding Result That Constructs Models of High Scott Rank.,2016,57,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl57.html#Goddard16,https://doi.org/10.1215/00294527-3328289 +William J. Frascella,"Corrigendum and addendum to: ""A generalization of Sierpiński's theorem on Steiner triples and the axiom of choice"".",1965,6,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl6.html#Frascella65a,https://doi.org/10.1305/ndjfl/1093958341 +Saharon Shelah,Universal Structures.,2017,58,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl58.html#Shelah17,https://doi.org/10.1215/00294527-3800985 +Richard Blecksmith,Matrix Representation of Husserl's Part-Whole-Foundation Theory.,1991,32,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl32.html#BlecksmithN91,https://doi.org/10.1305/ndjfl/1093635670 +D. L. Székely,A preliminary report on the theory of unification of sciences and its concept transforming automation.,1962,3,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl3.html#Szekely62a,https://doi.org/10.1305/ndjfl/1093957316 +Frederick James Crosson,Formal logic and formal ontology in Husserl's phenomenology.,1962,3,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl3.html#Crosson62,https://doi.org/10.1305/ndjfl/1093957319 +George Englebretsen,Rescher on 'e!'.,1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#Englebretsen75a,https://doi.org/10.1305/ndjfl/1093891893 +Stephen Binns,Self-Embeddings of Computable Trees.,2008,49,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl49.html#BinnsKLSS08,https://doi.org/10.1215/00294527-2007-001 +Gabriele Lolli,On Ramsey's theorem and the axiom of choice.,1977,18,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl18.html#Lolli77,https://doi.org/10.1305/ndjfl/1093888126 +E. J. Lemmon,Errata: An extension algebra and the modal system T.,1960,1,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl1.html#Lemmon60a,http://projecteuclid.org/euclid.ndjfl/1093956621 +Leon Horsten,A Kripkean Approach to Unknowability and Truth.,1998,39,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl39.html#Horsten98,https://doi.org/10.1305/ndjfl/1039182253 +Katsuhiko Sano,Semantical Characterizations for Irreflexive and Generalized Modal Languages.,2007,48,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl48.html#SanoS07,https://doi.org/10.1305/ndjfl/1179323264 +James H. Schmerl,End Extensions of Models of Arithmetic.,1992,33,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl33.html#Schmerl92,https://doi.org/10.1305/ndjfl/1093636098 +A. J. Baker,Non-empty complex terms.,1966,7,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl7.html#Baker66,https://doi.org/10.1305/ndjfl/1093958479 +Wayne Wobcke,An Information-Based Theory of Conditionals.,2000,41,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl41.html#Wobcke00,https://doi.org/10.1305/ndjfl/1038234607 +John Rybak,Venn diagrams extended: map logic.,1976,17,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl17.html#RybakR76,https://doi.org/10.1305/ndjfl/1093887644 +Michael Anderson,Note on the mortality problem for shift state trees.,1969,10,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl10.html#Anderson69,https://doi.org/10.1305/ndjfl/1093893716 +Michael Dummett,More about Thoughts.,1989,30,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl30.html#Dummett89,https://doi.org/10.1305/ndjfl/1093634993 +David Bell,Thoughts.,1987,28,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl28.html#Bell87,https://doi.org/10.1305/ndjfl/1093636844 +Ralph C. Applebee,An unsolvable problem concerning implicational calculi.,1970,11,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl11.html#ApplebeeP70,https://doi.org/10.1305/ndjfl/1093893936 +Francisco J. Varela,The extended calculus of indications interpreted as a three-valued logic.,1979,20,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl20.html#Varela79,https://doi.org/10.1305/ndjfl/1093882412 +Zdzislaw Dywan,The connective of necessity of modal logic S5 is metalogical.,1983,24,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl24.html#Dywan83,https://doi.org/10.1305/ndjfl/1093870385 +Michael Zakharyaschev,A New Solution to a Problem of Hosoi and Ono.,1994,35,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl35.html#Zakharyaschev94,https://doi.org/10.1305/ndjfl/1040511350 +Krzysztof Krupinski,On Bounded Type-Definable Equivalence Relations.,2002,43,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl43.html#KrupinskiN02,https://doi.org/10.1305/ndjfl/1074396308 +Claudio Pizzi,"Consequential implication. A correction to: ""Decision procedures for logics of consequential implication"".",1993,34,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl34.html#Pizzi93,https://doi.org/10.1305/ndjfl/1093633911 +Tamás Gergely,Model theoretical investigation of theorem proving methods.,1978,19,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl19.html#GergelyV78,https://doi.org/10.1305/ndjfl/1093888501 +John K. Slaney,Reduced models for relevant logics without WI.,1987,28,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl28.html#Slaney87,https://doi.org/10.1305/ndjfl/1093637560 +G. Y. Rainich,Notes on foundations. II. On Galois connections.,1962,3,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl3.html#Rainich62,https://doi.org/10.1305/ndjfl/1093957060 +Lloyd Humberstone,Note on Supervenience and Definability.,1998,39,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl39.html#Humberstone98,https://doi.org/10.1305/ndjfl/1039293066 +Saharon Shelah,A pair of nonisomorphic and#8801*∞λ* models of power and#955* for and#955* singular with and#955*χ9*=λ*.,1984,25,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl25.html#Shelah84,https://doi.org/10.1305/ndjfl/1093870570 +Leonard Goddard,The nature of reflexive paradoxes. II.,1984,25,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl25.html#Goddard84,https://doi.org/10.1305/ndjfl/1093870517 +Jaime Gaspar,Factorization of the Shoenfield-like Bounded Functional Interpretation.,2009,50,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl50.html#Gaspar09,https://doi.org/10.1215/00294527-2008-027 +Earline Jennifer Ashworth,Strict and material implication in the early sixteenth century.,1972,13,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl13.html#Ashworth72a,https://doi.org/10.1305/ndjfl/1093890721 +Richard Butrick,A system of predicate logic with transatomic units.,1987,28,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl28.html#Butrick87,https://doi.org/10.1305/ndjfl/1093637564 +Terence Parsons,On the consistency of the first-order portion of Frege's logical system.,1987,28,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl28.html#Parsons87,https://doi.org/10.1305/ndjfl/1093636853 +A. Jánossy,Combining Algebraizable Logics.,1996,37,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl37.html#JanossyKE96,https://doi.org/10.1305/ndjfl/1040046092 +Denis R. Hirschfeldt,Order-Computable Sets.,2007,48,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl48.html#HirschfeldtMP07,https://doi.org/10.1305/ndjfl/1187031407 +Boleslaw Sobocinski,"Errata: ""An equational axiomatization of associative Newman algebras"".",1973,14,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl14.html#Sobocinski73f,http://projecteuclid.org/euclid.ndjfl/1093891116 +Robert L. Wilson,A note on metaphysics and the foundations of mathematics.,1977,18,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl18.html#Wilson77a,https://doi.org/10.1305/ndjfl/1093888008 +Gert-Jan C. Lokhorst,The modal status of antinomies.,1988,29,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl29.html#Lokhorst88,https://doi.org/10.1305/ndjfl/1093637774 +Robert K. Meyer,Negation disarmed.,1976,17,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl17.html#Meyer76,https://doi.org/10.1305/ndjfl/1093887522 +Jean Porte,Simplifying the axioms of the predicate calculus.,1980,21,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl21.html#Porte80,https://doi.org/10.1305/ndjfl/1093883051 +J. M. Lee,The form of Reductio ad Absurdum.,1973,14,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl14.html#Lee73,https://doi.org/10.1305/ndjfl/1093891004 +Arnon Avron,On an implication connective of RM.,1986,27,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl27.html#Avron86a,https://doi.org/10.1305/ndjfl/1093636612 +Anne Lehman,Two sets of perfect syllogisms.,1973,14,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl14.html#Lehman73,https://doi.org/10.1305/ndjfl/1093891016 +Gert-Jan C. Lokhorst,Ernst Mally's Deontik (1926).,1999,40,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl40.html#Lokhorst99,https://doi.org/10.1305/ndjfl/1038949542 +Vladeta Vuckovic,Local recursive theory.,1973,14,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl14.html#Vuckovic73,https://doi.org/10.1305/ndjfl/1093890897 +Zlatan Damnjanovic,Elementary Functions and LOOP Programs.,1994,35,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl35.html#Damnjanovic94,https://doi.org/10.1305/ndjfl/1040408609 +Brooke M. Andersen,Grigorieff Forcing on Uncountable Cardinals Does Not Add a Generic of Minimal Degree.,2009,50,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl50.html#AndersenG09,https://doi.org/10.1215/00294527-2009-006 +Melvin Fitting,A tableau proof method admitting the empty domain.,1971,12,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl12.html#Fitting71,https://doi.org/10.1305/ndjfl/1093894222 +Chung-ying Cheng,On referentiality and its conditions.,1974,15,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl15.html#Cheng74,https://doi.org/10.1305/ndjfl/1093891301 +K. E. Pledger,Some extensions of S3.,1975,16,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl16.html#Pledger75,https://doi.org/10.1305/ndjfl/1093891709 +Gerald E. Sacks,Bounds on Weak Scattering.,2007,48,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl48.html#Sacks07,https://doi.org/10.1305/ndjfl/1172787542 +Klaus Mainzer,Is the intuitionistic bar-induction a constructive principle?,1977,18,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl18.html#Mainzer77,https://doi.org/10.1305/ndjfl/1093888122 +Edwin D. Mares,Who's Afraid of Impossible Worlds?,1997,38,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl38.html#Mares97,https://doi.org/10.1305/ndjfl/1039540767 +Richard L. Poss,Measurable cardinals and constructibility without regularity.,1971,12,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl12.html#Poss71a,https://doi.org/10.1305/ndjfl/1093894292 +Charles F. Kielkopf,Premisses are not axioms.,1972,13,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl13.html#Kielkopf72,https://doi.org/10.1305/ndjfl/1093894635 +Claude Sureson,Rumely Domains with Atomic Constructible Boolean Algebra. An Effective Viewpoint.,2007,48,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl48.html#Sureson07,https://doi.org/10.1305/ndjfl/1187031411 +A. P. Rao,A note on universally free description theory.,1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#Rao75,https://doi.org/10.1305/ndjfl/1093891894 +John L. Hickman,Doubly transitive sets.,1978,19,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl19.html#Hickman78b,https://doi.org/10.1305/ndjfl/1093888397 +Reed Solomon,Reverse Mathematics and Fully Ordered Groups.,1998,39,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl39.html#Solomon98,https://doi.org/10.1305/ndjfl/1039293061 +Tapani Hyttinen,Remarks on Strong Nonstructure Theorems.,1993,34,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl34.html#HyttinenST93,https://doi.org/10.1305/ndjfl/1093634649 +Boleslaw Sobocinski,Six new sets of independent axioms for distributive lattices with O and I.,1962,3,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl3.html#Sobocinski62d,https://doi.org/10.1305/ndjfl/1093957238 +Hugues Leblanc,Duals of Smullyan trees.,1972,13,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl13.html#LeblancS72,https://doi.org/10.1305/ndjfl/1093890628 +Jekeri Okee,A semantical proof of the undecidability of the monadic intuitionistic predicate calculus of the first order.,1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#Okee75,https://doi.org/10.1305/ndjfl/1093891900 +Earl McLane,On the possibility of epistemic logic.,1979,20,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl20.html#McLane79,https://doi.org/10.1305/ndjfl/1093882661 +James B. Davant,Wittgenstein on Russell's theory of types.,1975,16,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl16.html#Davant75,https://doi.org/10.1305/ndjfl/1093891616 +David Meredith 0002,A calculus of matrical descriptors.,1976,17,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl17.html#000276,https://doi.org/10.1305/ndjfl/1093887723 +Albert M. Sweet,The pragmatics of monadic quantification.,1969,10,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl10.html#Sweet69,https://doi.org/10.1305/ndjfl/1093893585 +Marcus Kracht,Modal Logics That Need Very Large Frames.,1999,40,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl40.html#Kracht99,https://doi.org/10.1305/ndjfl/1038949533 +N. L. Wilson,The transitivity of implication in tree logic.,1983,24,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl24.html#Wilson83,https://doi.org/10.1305/ndjfl/1093870224 +George Barmpalias,A C.E. Real That Cannot Be SW-Computed by Any and#937* Number.,2006,47,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl47.html#BarmpaliasL06,https://doi.org/10.1305/ndjfl/1153858646 +Hugues Leblanc,A strong completeness theorem for 3-valued logic. II.,1977,18,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl18.html#Leblanc77,https://doi.org/10.1305/ndjfl/1093887825 +Alex Citkin,Algebraic Logic Perspective on Prucnal's Substitution.,2016,57,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl57.html#Citkin16,https://doi.org/10.1215/00294527-3659423 +Stewart Shapiro,Book Review: John P. Burgess and Gideon Rose. A Subject with No Object: Strategies for Nominalistic Interpretation of Mathematics.,1998,39,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl39.html#Shapiro98,https://doi.org/10.1305/ndjfl/1039118873 +Donald H. Pelletier,A note on defining the Rudin-Keisler ordering of ultrafilters.,1976,17,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl17.html#Pelletier76,https://doi.org/10.1305/ndjfl/1093887537 +Lorenzo Sacchetti,The Fixed Point Property in Modal Logic.,2001,42,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl42.html#Sacchetti01,https://doi.org/10.1305/ndjfl/1054837934 +Desmond Paul Henry,The truncation of truth-functional calculation.,1961,2,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl2.html#Henry61,https://doi.org/10.1305/ndjfl/1093956969 +Steven J. Wagner,California semantics meets the great fact.,1986,27,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl27.html#Wagner86,https://doi.org/10.1305/ndjfl/1093636684 +Awad A. Iskander,An Isomorphism Between Rings and Groups.,1989,30,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl30.html#Iskander89,https://doi.org/10.1305/ndjfl/1093635235 +James Andrew Fulton,An intensional logic of predicates and predicate modifiers without modal operators.,1979,20,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl20.html#Fulton79,https://doi.org/10.1305/ndjfl/1093882805 +J. Zimbarg Sobrinho,Definability in self-referential systems.,1988,29,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl29.html#Sobrinho88,https://doi.org/10.1305/ndjfl/1093638022 +Martin W. Bunder,Variable binding term operators in and#955*-calculus.,1979,20,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl20.html#Bunder79g,https://doi.org/10.1305/ndjfl/1093882809 +J. Michael Dunn,A relational representation of quasi-Boolean algebras.,1982,23,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl23.html#Dunn82,https://doi.org/10.1305/ndjfl/1093870147 +Andreja Prijatelj,Free Algebras Corresponding to Multiplicative Classical Linear Logic and Some of Its Extensions.,1996,37,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl37.html#Prijatelj96,https://doi.org/10.1305/ndjfl/1040067316 +Sister Mary Justin Markham,A group-theoretic characterization of the ordinary and isotropic Euclidean planes.,1966,7,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl7.html#Markham66,https://doi.org/10.1305/ndjfl/1093958618 +John Bryant,The logic of relative modality and the paradoxes of deontic logic.,1980,21,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl21.html#Bryant80,https://doi.org/10.1305/ndjfl/1093882940 +Claudio Cerrato,Natural Deduction Based upon Strict Implication for Normal Modal Logics.,1994,35,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl35.html#Cerrato94,https://doi.org/10.1305/ndjfl/1040408608 +Nathan Salmon,Reflexivity.,1986,27,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl27.html#Salmon86,https://doi.org/10.1305/ndjfl/1093636683 +Boleslaw Sobocinski,On the propositional system A of Vučković* and its extension. I.,1964,5,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl5.html#Sobocinski64c,https://doi.org/10.1305/ndjfl/1093957806 +John C. Simms,Another Characterization of Alephs: Decompositions of Hyperspace.,1997,38,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl38.html#Simms97,https://doi.org/10.1305/ndjfl/1039700694 +William G. Lycan,Does quotation some* permit substitution?,1979,20,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl20.html#Lycan79,https://doi.org/10.1305/ndjfl/1093882532 +Setsuo Saito,A theory of categorical syllogism.,1969,10,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl10.html#Saito69,https://doi.org/10.1305/ndjfl/1093893725 +Charles Silver,A simple strong completeness proof for sentential logic.,1980,21,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl21.html#Silver80,https://doi.org/10.1305/ndjfl/1093882952 +Laurence Foss,Quine on translational indeterminacy.,1971,12,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl12.html#Foss71,https://doi.org/10.1305/ndjfl/1093894219 +George F. Schumm,Expressive Completeness and Decidability.,1990,31,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl31.html#SchummS90,https://doi.org/10.1305/ndjfl/1093635592 +Jean Porte,The and#937*-system and the Ł*-system of modal logic.,1979,20,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl20.html#Porte79,https://doi.org/10.1305/ndjfl/1093882814 +Michael C. Gemignani,Parallel 1-flats in 2-arrangements.,1972,13,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl13.html#Gemignani72,https://doi.org/10.1305/ndjfl/1093894727 +Diego Rojas-Rebolledo,Bounds on the Strength of Ordinal Definable Determinacy in Small Admissible Sets.,2012,53,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl53.html#Rojas-Rebolledo12,https://doi.org/10.1215/00294527-1716766 +H. Julian Wadleigh,Translation of the simple theory of types into a first order language.,1974,15,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl15.html#Wadleigh74,https://doi.org/10.1305/ndjfl/1093891404 +Walter Alexandre Carnielli,Limits for Paraconsistent Calculi.,1999,40,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl40.html#CarnielliM99,https://doi.org/10.1305/ndjfl/1022615617 +Elia Zardini,Restriction by Noncontraction.,2016,57,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl57.html#Zardini16,https://doi.org/10.1215/00294527-3429057 +Norman D. Megill,A Finitely Axiomatized Formalization of Predicate Calculus with Equality.,1995,36,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl36.html#Megill95,https://doi.org/10.1305/ndjfl/1040149359 +Bjørn Kjos-Hanssen,Superhighness.,2009,50,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl50.html#Kjos-HanssenN09,https://doi.org/10.1215/00294527-2009-020 +M. J. Cresswell,Alternative completeness theorems for modal systems.,1967,8,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl8.html#Cresswell67a,https://doi.org/10.1305/ndjfl/1094068851 +John Corcoran,Logical consequence in modal logic. II. Some semantic systems for S4.,1974,15,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl15.html#CorcoranW74,https://doi.org/10.1305/ndjfl/1093891400 +Peter W. Woodruff,Set Theory with Indeterminacy of Identity.,1999,40,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl40.html#WoodruffP99,https://doi.org/10.1305/ndjfl/1012429714 +Inge Dapunt,Zur Frage der Existenzvoraussetzungen in der Logik.,1970,11,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl11.html#Dapunt70,https://doi.org/10.1305/ndjfl/1093893862 +A. P. Rao,The concept of logic.,1973,14,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl14.html#Rao73,https://doi.org/10.1305/ndjfl/1093890893 +S. K. Wertz,"Not both p and q, therefore if p then q is a valid form of argument.",1977,18,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl18.html#Wertz77,https://doi.org/10.1305/ndjfl/1093888129 +Hassan Sfouli,On the Elementary Theory of Restricted Real and Imaginary Parts of Holomorphic Functions.,2012,53,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl53.html#Sfouli12,https://doi.org/10.1215/00294527-1626527 +Michael J. Loux,Quine on the inscrutability and relativity of reference.,1974,15,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl15.html#LouxS74,https://doi.org/10.1305/ndjfl/1093891195 +Lloyd Humberstone,Note on Extending Congruential Modal Logics.,2016,57,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl57.html#Humberstone16,https://doi.org/10.1215/00294527-3315588 +A. N. Prior,On a family of paradoxes.,1961,2,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl2.html#Prior61,https://doi.org/10.1305/ndjfl/1093956750 +Leo Simons,A reduction in the number of independent axiom schemata for S4.,1962,3,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl3.html#Simons62,https://doi.org/10.1305/ndjfl/1093957318 +Bhavani M. Thuraisingham,Cylindrical decision problems for system functions.,1983,24,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl24.html#Thuraisingham83,https://doi.org/10.1305/ndjfl/1093870309 +Peter Clote,Editor's Introduction.,1995,36,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl36.html#Clote95,https://doi.org/10.1305/ndjfl/1040136910 +Ralph H. Moon,Correction of the semantics for S4.03 and a note on literal disjunctive symmetry.,1983,24,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl24.html#Moon83,https://doi.org/10.1305/ndjfl/1093870377 +Norbert Brunner,The axiom of choice in topology.,1983,24,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl24.html#Brunner83a,https://doi.org/10.1305/ndjfl/1093870373 +A. N. Prior,Quantification and Ł*-modality.,1962,3,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl3.html#Prior62,https://doi.org/10.1305/ndjfl/1093957231 +Florencio G. Asenjo,Logic of antinomies.,1975,16,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl16.html#AsenjoT75,https://doi.org/10.1305/ndjfl/1093891610 +Daniel J. Dougherty,Closed Categories and Categorial Grammar.,1993,34,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl34.html#Dougherty93,https://doi.org/10.1305/ndjfl/1093634562 +Boleslaw Sobocinski,A simple formula equivalent to the axiom of choice.,1960,1,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl1.html#Sobocinski60a,https://doi.org/10.1305/ndjfl/1093956553 +Janet Rybak,Mechanizing logic. II. Automated map logic method for relational arguments on paper and by computer.,1984,25,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl25.html#RybakR84a,https://doi.org/10.1305/ndjfl/1093870633 +Boleslaw Sobocinski,Atomistic mereology. I.,1971,12,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl12.html#Sobocinski71a,https://doi.org/10.1305/ndjfl/1093894156 +Northrup Fowler III,Sums of α-spaces.,1975,16,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl16.html#Fowler75,https://doi.org/10.1305/ndjfl/1093891800 +Boleslaw Sobocinski,A theorem concerning a restricted rule of substitution in the field of propositional calculi. I.,1974,15,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl15.html#Sobocinski74a,https://doi.org/10.1305/ndjfl/1093891408 +George F. Schumm,Putting K in its place.,1978,19,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl19.html#Schumm78,https://doi.org/10.1305/ndjfl/1093888510 +Marilyn McCord Adams,What does Ockham mean by 'supposition'?,1976,17,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl17.html#Adams76,https://doi.org/10.1305/ndjfl/1093887629 +Xizhong Zheng,On the Maximality of Some Pairs of p-t Degrees.,1993,34,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl34.html#Zheng93,https://doi.org/10.1305/ndjfl/1093634561 +J. David Wald,Geach on atomicity and singular propositions.,1979,20,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl20.html#Wald79,https://doi.org/10.1305/ndjfl/1093882534 +Boleslaw Sobocinski,Note on G. J. Massey's closure-algebraic operation.,1970,11,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl11.html#Sobocinski70,https://doi.org/10.1305/ndjfl/1093894005 +Heikki Tuuri,Relative Speration Theorems for Lλ4*+λ4*.,1992,33,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl33.html#Tuuri92,https://doi.org/10.1305/ndjfl/1093634403 +Arthur W. Apter,Consecutive Singular Cardinals and the Continuum Function.,2013,54,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl54.html#ApterC13,https://doi.org/10.1215/00294527-1960434 +C. A. Meredith,Equational postulates for the Sheffer stroke.,1969,10,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl10.html#Meredith69,https://doi.org/10.1305/ndjfl/1093893713 +Johan van Benthem,Tense logic and time.,1984,25,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl25.html#Benthem84,https://doi.org/10.1305/ndjfl/1093870515 +Frederick S. Gass,A note on ω0*11 ordinals.,1972,13,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl13.html#Gass72,https://doi.org/10.1305/ndjfl/1093894630 +Sam Butchart,A Note on Monothetic BCI.,2006,47,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl47.html#ButchartK06,https://doi.org/10.1305/ndjfl/1168352666 +Laurent Larouche,Examination of the axiomatic foundations of a theory of change. V.,1972,13,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl13.html#Larouche72,https://doi.org/10.1305/ndjfl/1093894623 +John G. Stevenson,"Erratum: ""Donnelly on Geach"".",1974,15,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl15.html#Stevenson74,http://projecteuclid.org/euclid.ndjfl/1093891506 +John Corcoran,Identity logics.,1979,20,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl20.html#CorcoranZ79,https://doi.org/10.1305/ndjfl/1093882801 +Wilfred G. Malcolm,Variations in definition of ultraproducts of a family of first order relational structures.,1972,13,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl13.html#Malcolm72,https://doi.org/10.1305/ndjfl/1093890629 +Ekaterina B. Fokina,Categoricity Spectra for Rigid Structures.,2016,57,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl57.html#FokinaFK16,https://doi.org/10.1215/00294527-3322017 +David Marans,A note on reflexiveness.,1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#Marans75,https://doi.org/10.1305/ndjfl/1093891886 +Richard L. Purtill,Doing logic by computer.,1969,10,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl10.html#Purtill69,https://doi.org/10.1305/ndjfl/1093893651 +Peter Perkins,An unsolvable provability problem for one variable groupoid equations.,1972,13,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl13.html#Perkins72,https://doi.org/10.1305/ndjfl/1093890622 +Dorella Bellè,Decidability of and#8707**∀*∀*-sentences in HF.,2008,49,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl49.html#BelleP08,https://doi.org/10.1215/00294527-2007-003 +Charles D. Parsons,George Boolos.,1999,40,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl40.html#Parsons99,https://doi.org/10.1305/ndjfl/1039096302 +François Lepage,Partial Functions in Type Theory.,1992,33,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl33.html#Lepage92,https://doi.org/10.1305/ndjfl/1093634483 +Alexander Abian,On the use of more than two-element Boolean valued models.,1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#Abian75,https://doi.org/10.1305/ndjfl/1093891901 +Raouf Doss,On Gödel's proof that V=L implies the generalized continuum hypothesis.,1963,4,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl4.html#Doss63,https://doi.org/10.1305/ndjfl/1093957654 +Ralph L. Slaght,Modal tree constructions.,1977,18,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl18.html#Slaght77,https://doi.org/10.1305/ndjfl/1093888117 +Andreas Blass,Near Coherence of Filters III: A Simplified Consistency Proof.,1989,30,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl30.html#BlassS89,https://doi.org/10.1305/ndjfl/1093635236 +Teruyuki Yorioka,Club-Isomorphisms of Aronszajn Trees in the Extension with a Suslin Tree.,2017,58,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl58.html#Yorioka17,https://doi.org/10.1215/00294527-3882335 +Alexander Abian,Rado's theorem and solvability of systems of equations.,1973,14,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl14.html#Abian73,https://doi.org/10.1305/ndjfl/1093890889 +Yudit Rosenberg,In defense of Copi.,1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#Rosenberg75,https://doi.org/10.1305/ndjfl/1093891909 +Giovanna Corsi,Quantified Modal Logics of Positive Rational Numbers and Some Related Systems.,1993,34,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl34.html#Corsi93,https://doi.org/10.1305/ndjfl/1093634657 +Raymond D. Gumb,An extended joint consistency theorem for free logic with equality.,1979,20,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl20.html#Gumb79,https://doi.org/10.1305/ndjfl/1093882539 +David Pearce 0001,On the methodology of possible worlds semantics. I. Correspondence theory.,1988,29,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl29.html#PearceW88,https://doi.org/10.1305/ndjfl/1093638013 +Yde Venema,Expressiveness and Completeness of an Interval Tense Logic.,1990,31,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl31.html#Venema90,https://doi.org/10.1305/ndjfl/1093635589 +Stewart Shapiro,Acceptable notation.,1982,23,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl23.html#Shapiro82,https://doi.org/10.1305/ndjfl/1093883561 +Claro R. Ceniza,Material implication and entailment.,1988,29,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl29.html#Ceniza88,https://doi.org/10.1305/ndjfl/1093638015 +John P. Burgess,Careful choices - a last word on Borel selectors.,1981,22,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl22.html#Burgess81c,https://doi.org/10.1305/ndjfl/1093883456 +Peter W. Woodruff,On compactness in many-valued logic. I.,1973,14,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl14.html#Woodruff73,https://doi.org/10.1305/ndjfl/1093891009 +Boleslaw Sobocinski,Family K of the non-Lewis modal systems.,1964,5,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl5.html#Sobocinski64f,https://doi.org/10.1305/ndjfl/1093957981 +Alexander Abian,Completeness of the generalized propositional calculus.,1970,11,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl11.html#Abian70,https://doi.org/10.1305/ndjfl/1093894075 +Juliusz Reichbach,"Errata: ""On characterizations of the first-order functional calculus"".",1961,2,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl2.html#Reichbach61b,http://projecteuclid.org/euclid.ndjfl/1093956982 +Nino B. Cocchiarella,A substitution free axiom set for second order logic.,1969,10,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl10.html#Cocchiarella69,https://doi.org/10.1305/ndjfl/1093893584 +Francesc Tomàs,An Open Formalism against Incompleteness.,1999,40,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl40.html#Tomas99,https://doi.org/10.1305/ndjfl/1038949537 +M. Gordon Beavers,Extensions of the and#8501*0-Valued Lukasiewicz Propositional Logic.,1993,34,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl34.html#Beavers93,https://doi.org/10.1305/ndjfl/1093634656 +Charles B. Daniels,A story semantics for implication.,1986,27,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl27.html#Daniels86,https://doi.org/10.1305/ndjfl/1093636614 +Brice Halimi,Models as Universes.,2017,58,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl58.html#Halimi17,https://doi.org/10.1215/00294527-3716058 +George Englebretsen,A note on contrariety.,1974,15,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl15.html#Englebretsen74,https://doi.org/10.1305/ndjfl/1093891494 +J. Jay Zeman,Complete modalization in S4.4 and S4.0.4.,1969,10,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl10.html#Zeman69a,https://doi.org/10.1305/ndjfl/1093893710 +Henryk Fast,A remark on continuous selectors.,1966,7,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl7.html#Fast66,https://doi.org/10.1305/ndjfl/1093958483 +Hugh Alexander Montgomery,Algebraic semantics for S20 and necessitated extensions.,1976,17,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl17.html#MontgomeryR76,https://doi.org/10.1305/ndjfl/1093887424 +Saharon Shelah,On saturation for a predicate.,1981,22,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl22.html#Shelah81b,https://doi.org/10.1305/ndjfl/1093883458 +Kosta Dosen,Ancestral Kripke Models and Nonhereditary Kripke Models for the Heyting Propositional Calculus.,1991,32,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl32.html#Dosen91,https://doi.org/10.1305/ndjfl/1093635930 +Max J. Cresswell,Some proofs of relative completeness in modal logic.,1968,9,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl9.html#Cresswell68,https://doi.org/10.1305/ndjfl/1093893352 +Howard Becker,Strange Structures from Computable Model Theory.,2017,58,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl58.html#Becker17,https://doi.org/10.1215/00294527-3767941 +Saharon Shelah,On Fleissner's diamond.,1981,22,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl22.html#Shelah81a,https://doi.org/10.1305/ndjfl/1093883337 +Tapani Hyttinen,Remarks on Structure Theorems for ω*1-Saturated Models.,1995,36,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl36.html#Hyttinen95,https://doi.org/10.1305/ndjfl/1040248458 +Boleslaw Sobocinski,Errata: On the single axioms of protothetic. III.,1961,2,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl2.html#Sobocinski61f,http://projecteuclid.org/euclid.ndjfl/1093956980 +R. D. Lee,An application of mathematical logic to the integer linear programming problem.,1972,13,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl13.html#Lee72,https://doi.org/10.1305/ndjfl/1093894728 +Joel David Hamkins,Is the Dream Solution of the Continuum Hypothesis Attainable?,2015,56,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl56.html#Hamkins15,https://doi.org/10.1215/00294527-2835047 +Steve Giambrone,Real Reduced Models for Relevant Logics without WI.,1992,33,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl33.html#Giambrone92,https://doi.org/10.1305/ndjfl/1093634408 +Martin W. Bunder,A generalised Kleene-Rosser paradox for a system containing the combinator K.,1973,14,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl14.html#Bunder73,https://doi.org/10.1305/ndjfl/1093890807 +A. J. Dale,Material equivalence and tautological entailment.,1982,23,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl23.html#Dale82,https://doi.org/10.1305/ndjfl/1093870155 +Kees Doets,Uniform Short Proofs for Classical Theorems.,2001,42,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl42.html#Doets01,https://doi.org/10.1305/ndjfl/1054837939 +C. W. Leininger,Concerning some proposals for quantum logic.,1969,10,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl10.html#Leininger69,https://doi.org/10.1305/ndjfl/1093893590 +Domenico Zambella,Shavrukov's Theorem on the Subalgebras of Diagonalizable Algebras for Theories Containing I Δ0s + exp.,1994,35,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl35.html#Zambella94,https://doi.org/10.1305/ndjfl/1040609301 +Paul Vincent Spade,An alternative to Brian Skyrms' approach to the Liar.,1976,17,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl17.html#Spade76,https://doi.org/10.1305/ndjfl/1093887433 +Wallace A. Murphree,The Irrelevance of Distribution for the Syllogism.,1994,35,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl35.html#Murphree94,https://doi.org/10.1305/ndjfl/1040511349 +Lawrence J. Pozsgay,Semi-intuitionistic set theory.,1972,13,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl13.html#Pozsgay72,https://doi.org/10.1305/ndjfl/1093890719 +Forbes D. Lewis,On unsolvability in subrecursive classes of predicates.,1979,20,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl20.html#Lewis79,https://doi.org/10.1305/ndjfl/1093882401 +George F. Schumm,On a modal system of D. C. Makinson and B. Sobociński.,1969,10,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl10.html#Schumm69a,https://doi.org/10.1305/ndjfl/1093893712 +Douglas Dunsmore Daye,Metalogical cliches (proto-variables) and their restricted substitution in sixth century Buddhist logic.,1979,20,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl20.html#Daye79,https://doi.org/10.1305/ndjfl/1093882660 +Karl Schlechta,Theory Revision and Probability.,1991,32,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl32.html#Schlechta91,https://doi.org/10.1305/ndjfl/1093635755 +T. Y. Pak,McCawley and logic.,1974,15,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl15.html#Pak74,https://doi.org/10.1305/ndjfl/1093891213 +Sven Ove Hansson,Past Probabilities.,2010,51,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl51.html#Hansson10,https://doi.org/10.1215/00294527-2010-013 +Diana Brignole,Equational characterization of Nelson algebra.,1969,10,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl10.html#Brignole69,https://doi.org/10.1305/ndjfl/1093893718 +Mike Townsend,Complexity for Type-2 Relations.,1990,31,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl31.html#Townsend90,https://doi.org/10.1305/ndjfl/1093635419 +Florian Steinberger,On the Equivalence Conjecture for Proof-Theoretic Harmony.,2013,54,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl54.html#Steinberger13,https://doi.org/10.1215/00294527-1731398 +Ivo Thomas,A final note on S1®6* and the Brouwerian axioms.,1963,4,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl4.html#Thomas63b,https://doi.org/10.1305/ndjfl/1093957582 +Osvaldo Guzmán González,Canjar Filters.,2017,58,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl58.html#GonzalezHM17,https://doi.org/10.1215/00294527-3496040 +Mark A. Brown,Generalized S2-like systems of propositional modal logic.,1982,23,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl23.html#Brown82,https://doi.org/10.1305/ndjfl/1093883565 +Boleslaw Sobocinski,A remark concerning the third theorem about the existence of successors of cardinals.,1962,3,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl3.html#Sobocinski62g,https://doi.org/10.1305/ndjfl/1093957322 +Ermanno Bencivenga,Finitary consistency of a free arithmetic.,1984,25,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl25.html#Bencivenga84,https://doi.org/10.1305/ndjfl/1093870628 +Simon Thomas Hewitt,"A Note on Gabriel Uzquiano's ""Varieties of Indefinite Extensibility"".",2018,59,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl59.html#Hewitt18,https://doi.org/10.1215/00294527-2018-0005 +Jirí Adámek,On the logic of continuous algebras.,1988,29,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl29.html#AdamekMNR88,https://doi.org/10.1305/ndjfl/1093637934 +George Englebretsen,Opposition.,1984,25,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl25.html#Englebretsen84,https://doi.org/10.1305/ndjfl/1093870520 +Asher M. Kach,Embeddings of Computable Structures.,2010,51,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl51.html#KachLS10,https://doi.org/10.1215/00294527-2010-004 +Karim Zahidi,Hilbert's Tenth Problem for Rings of Rational Functions.,2002,43,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl43.html#Zahidi02,https://doi.org/10.1305/ndjfl/1074290716 +David Auerbach,Saying it with Numerals.,1994,35,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl35.html#Auerbach94,https://doi.org/10.1305/ndjfl/1040609300 +Jan A. Bergstra,Discourse between processes.,1980,21,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl21.html#Bergstra80,https://doi.org/10.1305/ndjfl/1093882945 +Garrel Pottinger,The Church-Rosser theorem for the typed and#955*-calculus with surjective pairing.,1981,22,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl22.html#Pottinger81,https://doi.org/10.1305/ndjfl/1093883461 +Christopher C. Leary,The Structure of Pleasant Ideals.,1994,35,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl35.html#Leary94,https://doi.org/10.1305/ndjfl/1094061866 +Jordan Howard Sobel,Sentential notations: unique decomposition.,1979,20,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl20.html#Sobel79,https://doi.org/10.1305/ndjfl/1093882545 +Will Harris,A formal metasystem for Frege's semantics.,1975,16,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl16.html#Harris75,https://doi.org/10.1305/ndjfl/1093891615 +Guram Bezhanishvili,Locally Finite Reducts of Heyting Algebras and Canonical Formulas.,2017,58,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl58.html#BezhanishviliB17,https://doi.org/10.1215/00294527-3691563 +E. William Chapin,Set-valued set theory. II.,1975,16,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl16.html#Chapin75,https://doi.org/10.1305/ndjfl/1093891706 +Tommaso Cortonesi,Quantifier Elimination and Other Model-Theoretic Properties of BL-Algebras.,2011,52,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl52.html#CortonesiMM11,https://doi.org/10.1215/00294527-1499336 +James George Kowalski,Leśniewski's ontology extended with the axiom of choice.,1977,18,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl18.html#Kowalski77,https://doi.org/10.1305/ndjfl/1093887820 +Katherine Thompson,Universality for Orders and Graphs Which Omit Large Substructures.,2006,47,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl47.html#Thompson06,https://doi.org/10.1305/ndjfl/1153858648 +Adriane A. Rini,Is There a Modal Syllogistic?,1998,39,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl39.html#Rini98,https://doi.org/10.1305/ndjfl/1039118870 +Diderik Batens,A completeness-proof method for extensions of the implicational fragment of the propositional calculus.,1980,21,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl21.html#Batens80,https://doi.org/10.1305/ndjfl/1093883174 +Norman M. Martin,Direct analogues of the Sheffer stroke in m-valued logic.,1976,17,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl17.html#Martin76,https://doi.org/10.1305/ndjfl/1093887633 +Chung-ying Chang,On explanation of number progression.,1968,9,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl9.html#Chang68,https://doi.org/10.1305/ndjfl/1093893519 +Boleslaw Sobocinski,A note on modal systems.,1963,4,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl4.html#Sobocinski63a,https://doi.org/10.1305/ndjfl/1093957509 +Ivo Thomas,Simple implicational development.,1975,16,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl16.html#Thomas75,https://doi.org/10.1305/ndjfl/1093891707 +Alexander Abian,An Equivalent of the Axiom of Choice in Finite Models of the Powerset Axiom.,1990,31,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl31.html#AbianA90,https://doi.org/10.1305/ndjfl/1093635501 +Friedemann Tuttas,An Arithmetical Completeness Theorem for Pre-permutations.,1993,34,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl34.html#Tuttas93,https://doi.org/10.1305/ndjfl/1093634565 +M. B. Smyth,Involution as a basis for propositional calculi.,1974,15,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl15.html#Smyth74,https://doi.org/10.1305/ndjfl/1093891490 +Christopher C. Leary,Pleasant Ideals.,1991,32,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl32.html#Leary91,https://doi.org/10.1305/ndjfl/1093635933 +Jekeri Okee,A species-algebraic interpretation of the intuitionistic propositional calculus.,1976,17,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl17.html#Okee76,https://doi.org/10.1305/ndjfl/1093887525 +Eugen Mihailescu,Les propriétés du foncteur Nicod par rapport à le réciprocité et conjonction. II.,1974,15,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl15.html#Mihailescu74,https://doi.org/10.1305/ndjfl/1093891201 +Dorothy Bollman,A set-theoretic model for nonassociative number theory.,1973,14,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl14.html#BollmanL73,https://doi.org/10.1305/ndjfl/1093890815 +Gary M. Hardegree,Material implication in orthomodular (and Boolean) lattices.,1981,22,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl22.html#Hardegree81,https://doi.org/10.1305/ndjfl/1093883401 +Richard Kaye,On Interpretations of Arithmetic and Set Theory.,2007,48,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl48.html#KayeW07,https://doi.org/10.1305/ndjfl/1193667707 +Ruggero Pagnan,Concrete Fibrations.,2017,58,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl58.html#Pagnan17,https://doi.org/10.1215/00294527-3817788 +Raymond J. Nelson,Church's thesis and cognitive science.,1987,28,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl28.html#Nelson87,https://doi.org/10.1305/ndjfl/1093637649 +Gary H. Merrill,On an enduring non sequitur of Quine's.,1977,18,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl18.html#Merrill77a,https://doi.org/10.1305/ndjfl/1093888130 +Gilles Dowek,A Simple Proof that Super-Consistency Implies Cut Elimination.,2012,53,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl53.html#DowekH12,https://doi.org/10.1215/00294527-1722692 +Ivo Thomas,On the infinity of positive logic.,1962,3,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl3.html#Thomas62a,https://doi.org/10.1305/ndjfl/1093957154 +Czeslaw Lejewski,On prosleptic syllogisms.,1961,2,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl2.html#Lejewski61a,https://doi.org/10.1305/ndjfl/1093956876 +Kristine Harjes,Functional Dependence in Strategic Games.,2016,57,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl57.html#HarjesN16,https://doi.org/10.1215/00294527-3479096 +Robert Cowen,Two Hypergraph Theorems Equivalent to BPI.,1990,31,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl31.html#Cowen90,https://doi.org/10.1305/ndjfl/1093635418 +Roman Suszko,Ontology in the Tractatus of L. Wittgenstein.,1968,9,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl9.html#Suszko68,https://doi.org/10.1305/ndjfl/1093893349 +Ivan Boh,"The ""conditionatim""-clause: one of the problems of existential import in the history of logic.",1977,18,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl18.html#Boh77,https://doi.org/10.1305/ndjfl/1093888019 +Alexander Paseau,Pure Second-Order Logic with Second-Order Identity.,2010,51,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl51.html#Paseau10,https://doi.org/10.1215/00294527-2010-021 +Russell W. Myers,Complexity of model-theoretic notions.,1980,21,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl21.html#Myers80,https://doi.org/10.1305/ndjfl/1093883248 +Daniel Palacín,On Superstable Expansions of Free Abelian Groups.,2018,59,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl59.html#PalacinS18,https://doi.org/10.1215/00294527-2017-0023 +Edwin D. Mares,The Fact Semantics for Ramified Type Theory and the Axiom of Reducibility.,2007,48,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl48.html#Mares07,https://doi.org/10.1305/ndjfl/1179323266 +Juliette Kennedy,Regular Ultrapowers at Regular Cardinals.,2015,56,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl56.html#KennedySV15,https://doi.org/10.1215/00294527-3132788 +Saharon Shelah,The Hanf numbers of stationary logic II: Comparison with other logics.,1992,33,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl33.html#Shelah92,https://doi.org/10.1305/ndjfl/1093636007 +Carlo Toffalori,Lattice Ordered O-Minimal Structures.,1998,39,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl39.html#Toffalori98,https://doi.org/10.1305/ndjfl/1039118862 +Fabio Pianesi,Refining Temporal Reference in Event Structures.,1996,37,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl37.html#PianesiV96,https://doi.org/10.1305/ndjfl/1040067317 +Harry J. Gensler,A simplified decision procedure for categorical syllogisms.,1973,14,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl14.html#Gensler73,https://doi.org/10.1305/ndjfl/1093891100 +Mark Ressler,Thoroughly Relativistic Perspectives.,2012,53,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl53.html#Ressler12,https://doi.org/10.1215/00294527-1626545 +Greg Restall,Ways Things Can't Be.,1997,38,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl38.html#Restall97,https://doi.org/10.1305/ndjfl/1039540771 +Per Lindström,Partially generic formulas in arithmetic.,1988,29,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl29.html#Lindstrom88,https://doi.org/10.1305/ndjfl/1093637867 +Vito F. Sinisi,Leśniewski and Frege on collective classes.,1969,10,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl10.html#Sinisi69,https://doi.org/10.1305/ndjfl/1093893708 +Michael C. Gemignani,On eliminating an unwanted axiom in the characterization of Rm using topological geometries.,1966,7,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl7.html#Gemignani66a,https://doi.org/10.1305/ndjfl/1093958757 +Leonard Goddard,An augmented modal logic.,1965,6,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl6.html#Goddard65,https://doi.org/10.1305/ndjfl/1093958148 +Graham Priest,Intensional Paradoxes.,1991,32,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl32.html#Priest91,https://doi.org/10.1305/ndjfl/1093635745 +Hugues Leblanc,Generalization in first-order logic.,1979,20,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl20.html#Leblanc79,https://doi.org/10.1305/ndjfl/1093882806 +Sabine Koppelberg,Homogeneous Boolean algebras with very nonsymmetric subalgebras.,1983,24,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl24.html#KoppelbergM83,https://doi.org/10.1305/ndjfl/1093870379 +Katalin Bimbó,Dual Gaggle Semantics for Entailment.,2009,50,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl50.html#Bimbo09,https://doi.org/10.1215/00294527-2008-025 +Mauricio Osorio 0001,Revisiting ™4*.,2014,55,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl55.html#OsorioCZ14,https://doi.org/10.1215/00294527-2377905 +Charles C. Pinter,Algebraic logic with generalized quantifiers.,1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#Pinter75,https://doi.org/10.1305/ndjfl/1093891889 +øystein Linnebo,Frege's Proof of Referentiality.,2004,45,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl45.html#Linnebo04,https://doi.org/10.1305/ndjfl/1095386645 +Antonio Montalbán,Coding and Definability in Computable Structures.,2018,59,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl59.html#Montalban18,https://doi.org/10.1215/00294527-2017-0032 +Bhavani M. Thuraisingham,The concept of n-cylinder and its relationship to simple sets.,1983,24,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl24.html#Thuraisingham83b,https://doi.org/10.1305/ndjfl/1093870376 +Fred Sommers,Predication in the Logic of Terms.,1990,31,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl31.html#Sommers90,https://doi.org/10.1305/ndjfl/1093635336 +B. van Rootselaar,A class of models for intermediate logics.,1971,12,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl12.html#Rootselaar71,https://doi.org/10.1305/ndjfl/1093894299 +Theodore Hailperin,Infinite truth-functional logic.,1988,29,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl29.html#Hailperin88,https://doi.org/10.1305/ndjfl/1093637768 +Robert Cogan,A criticism of Sommers' language tree.,1976,17,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl17.html#Cogan76,https://doi.org/10.1305/ndjfl/1093887544 +Albert Visser,The Arithmetics of a Theory.,2015,56,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl56.html#Visser15,https://doi.org/10.1215/00294527-2835029 +Katsumasa Ishii,Sequent Calculi for Visser's Propositional Logics.,2001,42,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl42.html#IshiiKK01,https://doi.org/10.1305/ndjfl/1054301352 +Philip Scowcroft,More on Generic Dimension Groups.,2015,56,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl56.html#Scowcroft15,https://doi.org/10.1215/00294527-3153570 +Isaac Goldbring,Pseudofinite and Pseudocompact Metric Structures.,2015,56,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl56.html#GoldbringL15,https://doi.org/10.1215/00294527-3132833 +Damir D. Dzhafarov,Stable Ramsey's Theorem and Measure.,2011,52,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl52.html#Dzhafarov11,https://doi.org/10.1215/00294527-2010-039 +Erez Shochat,Automorphisms of Countable Short Recursively Saturated Models of PA.,2008,49,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl49.html#Shochat08,https://doi.org/10.1215/00294527-2008-016 +Boleslaw Sobocinski,A short postulate-system for ortholattices.,1975,16,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl16.html#Sobocinski75a,https://doi.org/10.1305/ndjfl/1093891623 +Nicholas Rescher,On the formalization of two modal theses.,1961,2,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl2.html#Rescher61,https://doi.org/10.1305/ndjfl/1093956875 +Ivo Thomas,On a passage of Aristotle.,1974,15,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl15.html#Thomas74,https://doi.org/10.1305/ndjfl/1093891315 +James Cain,Arithmetic With Satisfaction.,1995,36,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl36.html#Cain95,https://doi.org/10.1305/ndjfl/1040248460 +Boleslaw Sobocinski,"Errata: ""On the single axioms of protothetic. I."".",1961,2,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl2.html#Sobocinski61h,http://projecteuclid.org/euclid.ndjfl/1093956983 +Patrick Reeder,Infinitesimal Comparisons: Homomorphisms between Giordano's Ring and the Hyperreal Field.,2017,58,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl58.html#Reeder17,https://doi.org/10.1215/00294527-3839208 +Evelyn M. Barker,Unneeded surgery on Aristotle's Prior analytics.,1984,25,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl25.html#Barker84,https://doi.org/10.1305/ndjfl/1093870684 +Chung-ying Cheng,Referential involvements of number words.,1970,11,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl11.html#Cheng70,https://doi.org/10.1305/ndjfl/1093894082 +Xavier Caicedo Ferrer,A formal system for the non-theorems of the propositional calculus.,1978,19,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl19.html#Ferrer78,https://doi.org/10.1305/ndjfl/1093888218 +Robert W. Murungi,Necessitas consequentis in a singleton possible world.,1977,18,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl18.html#Murungi77,https://doi.org/10.1305/ndjfl/1093888134 +Setsuo Saito,Modality and preference relation.,1973,14,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl14.html#Saito73,https://doi.org/10.1305/ndjfl/1093891005 +John Chisholm,An Undecidable Linear Order That Is n-Decidable for All n.,1998,39,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl39.html#ChisholmM98,https://doi.org/10.1305/ndjfl/1039118866 +William Demopoulos,The Homogeneous Form of Logic Programs with Equality.,1990,31,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl31.html#Demopoulos90,https://doi.org/10.1305/ndjfl/1093635423 +Peter A. Facione,A modal truth-tabular interpretation for necessary and sufficient conditons.,1972,13,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl13.html#Facione72,https://doi.org/10.1305/ndjfl/1093894726 +Barry E. Jacobs,α-naming and α-speedup theorems.,1979,20,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl20.html#Jacobs79,https://doi.org/10.1305/ndjfl/1093882529 +Leo Harrington,"An exposition of Shelah's ""main gap"": counting uncountable models of ω*-stable and superstable theories.",1985,26,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl26.html#HarringtonM85,https://doi.org/10.1305/ndjfl/1093870822 +Christopher Gauker,Semantics without Reference.,1990,31,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl31.html#Gauker90,https://doi.org/10.1305/ndjfl/1093635507 +Ian P. Gent,A Sequent- or Tableau-style System for Lewis's Counterfactual Logic VC.,1992,33,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl33.html#Gent92,https://doi.org/10.1305/ndjfl/1093634402 +Nadejda Georgieva,Independence of the axioms and rules of inference of one system of the extended propositional calculus.,1971,12,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl12.html#Georgieva71,https://doi.org/10.1305/ndjfl/1093894221 +William C. Purdy,"On the Question ""Do we Need Indentity?"".",1992,33,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl33.html#Purdy92b,https://doi.org/10.1305/ndjfl/1093634491 +Georges Kalinowski,Obligation dérivée et logique déontique relationnelle. Remarques sur le système de G. H. von Wright et sur le développement de la logique déontique.,1964,5,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl5.html#Kalinowski64,https://doi.org/10.1305/ndjfl/1093957877 +Alexei D. Kolesnikov,Morley Rank in Homogeneous Models.,2006,47,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl47.html#KolesnikovK06,https://doi.org/10.1305/ndjfl/1163775439 +Martin Koerwien,Comparing Borel Reducibility and Depth of an omega-Stable Theory.,2009,50,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl50.html#Koerwien09,https://doi.org/10.1215/00294527-2009-016 +Michael J. Duffy,Modal interpretations of three-valued logics. II.,1979,20,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl20.html#Duffy79a,https://doi.org/10.1305/ndjfl/1093882676 +Timothy Williamson,Continuum Many Maximal Consistent Normal Bimodal Logics with Inverses.,1998,39,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl39.html#Williamson98,https://doi.org/10.1305/ndjfl/1039293024 +Stephen Pollard,The Expressive Unary Truth Functions of n-valued Logic.,2005,46,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl46.html#Pollard05,https://doi.org/10.1305/ndjfl/1107220676 +M. B. Smyth,A diagrammatic treatment of syllogistic.,1971,12,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl12.html#Smyth71,https://doi.org/10.1305/ndjfl/1093894372 +David R. Bélanger,On the Jumps of the Degrees Below a Recursively Enumerable Degree.,2018,59,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl59.html#BelangerS18,https://doi.org/10.1215/00294527-2017-0014 +Stewart Shapiro,The Lindenbaum construction and decidability.,1988,29,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl29.html#Shapiro88,https://doi.org/10.1305/ndjfl/1093637870 +John P. Burgess,Axioms for tense logic. II. Time periods.,1982,23,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl23.html#Burgess82a,https://doi.org/10.1305/ndjfl/1093870150 +Boleslaw Sobocinski,A new axiomatization of the mixed associative Newman algebras.,1978,19,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl19.html#Sobocinski78b,https://doi.org/10.1305/ndjfl/1093888410 +Robert B. Brandom,A binary Sheffer operator which does the work of quantifiers and sentential connectives.,1979,20,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl20.html#Brandom79,https://doi.org/10.1305/ndjfl/1093882530 +Charles C. Davis,An investigation concerning the Hilbert-Sierpiński logical form of the axiom of choice.,1975,16,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl16.html#Davis75,https://doi.org/10.1305/ndjfl/1093891699 +Jonathan Payne,Extensionalizing Intensional Second-Order Logic.,2015,56,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl56.html#Payne15,https://doi.org/10.1215/00294527-2835092 +Jonathan P. Seldin,Note on definitional reductions.,1968,9,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl9.html#Seldin68,https://doi.org/10.1305/ndjfl/1093893348 +Albert A. Mullin,On differences of certain structured sets.,1963,4,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl4.html#Mullin63,https://doi.org/10.1305/ndjfl/1093957510 +John P. Burgess,Which Modal Logic Is the Right One?,1999,40,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl40.html#Burgess99,https://doi.org/10.1305/ndjfl/1039096306 +Ludomir Newelski,Relative Vaught's Conjecture for Some Meager Groups.,2007,48,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl48.html#Newelski07,https://doi.org/10.1305/ndjfl/1172787549 +Volker Halbach,A System of Complete and Consistent Truth.,1994,35,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl35.html#Halbach94,https://doi.org/10.1305/ndjfl/1040511340 +Robert K. Meyer,On conserving positive logics.,1973,14,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl14.html#Meyer73,https://doi.org/10.1305/ndjfl/1093890896 +Su Gao,On Polynomial-Time Relation Reducibility.,2017,58,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl58.html#GaoZ17,https://doi.org/10.1215/00294527-3867118 +M. D. Gladstone,On the number of variables in the axioms.,1970,11,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl11.html#Gladstone70,https://doi.org/10.1305/ndjfl/1093893854 +George F. Schumm,Solutions to four modal problems of Sobociński.,1971,12,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl12.html#Schumm71,https://doi.org/10.1305/ndjfl/1093894297 +Hunter Johnson,dp-Rank and Forbidden Configurations.,2013,54,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl54.html#Johnson13,https://doi.org/10.1215/00294527-1731335 +Merrie Bergmann,Finite Tree Property for First-Order Logic with Identity and Functions.,2005,46,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl46.html#Bergmann05,https://doi.org/10.1305/ndjfl/1117755148 +Newton C. A. da Costa,"Erratum: ""On the theory of inconsistent formal systems"".",1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#Costa75,http://projecteuclid.org/euclid.ndjfl/1093891911 +Stephen L. Bloom,A note on the arithmetical hierarchy.,1968,9,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl9.html#Bloom68,https://doi.org/10.1305/ndjfl/1093893357 +Boleslaw Sobocinski,"Errata: ""Note on G. J. Massey's closure-algebraic operation"".",1973,14,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl14.html#Sobocinski73g,http://projecteuclid.org/euclid.ndjfl/1093891117 +Herbert E. Hendry,Functional completeness and non-Łukasiewiczian truth functions.,1980,21,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl21.html#Hendry80,https://doi.org/10.1305/ndjfl/1093883177 +Hilary Putnam,"Comment on J. A. Fodor's ""Cognitive science and the twin-Earth problem"".",1982,23,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl23.html#Putnam82,https://doi.org/10.1305/ndjfl/1093870088 +Giangiacomo Gerla,A note on the principle of predication.,1982,23,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl23.html#Gerla82,https://doi.org/10.1305/ndjfl/1093870159 +Joseph J. Sikora,Some thomistic reflections on the foundations of formal logic.,1965,6,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl6.html#Sikora65,https://doi.org/10.1305/ndjfl/1093958074 +David Charles McCarty,Intuitionistic Completeness and Classical Logic.,2002,43,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl43.html#McCarty02,https://doi.org/10.1305/ndjfl/1074396309 +James Cargile,Moore's proposition W.,1972,13,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl13.html#Cargile72,https://doi.org/10.1305/ndjfl/1093894631 +William H. Hanson,First-degree entailments and information.,1980,21,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl21.html#Hanson80,https://doi.org/10.1305/ndjfl/1093883249 +Albert A. Mullin,Mathematico-philosophical remarks on new theorems analogous to the fundamental theorem of arithmetic.,1965,6,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl6.html#Mullin65,https://doi.org/10.1305/ndjfl/1093958260 +John Loader,Second order and higher order universal decision elements in m-valued logic.,1977,18,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl18.html#Loader77,https://doi.org/10.1305/ndjfl/1093887938 +Boleslaw Sobocinski,Note about the Boolean parts of the extended Boolean algebras.,1973,14,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl14.html#Sobocinski73d,https://doi.org/10.1305/ndjfl/1093891014 +Philip D. Welch,Some Open Problems in Mutual Stationarity Involving Inner Model Theory: A Commentary.,2005,46,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl46.html#Welch05,https://doi.org/10.1305/ndjfl/1125409336 +Charles F. Kielkopf,"K1 as a Dawson modeling of A. R. Anderson's sense of ""ought"".",1974,15,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl15.html#Kielkopf74,https://doi.org/10.1305/ndjfl/1093891402 +Richard A. DeMillo,Non-definability of certain semantic properties of programs.,1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#DeMillo75,https://doi.org/10.1305/ndjfl/1093891904 +Fred Coppotelli,On two first order type theories for the theory of sets.,1977,18,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl18.html#Coppotelli77,https://doi.org/10.1305/ndjfl/1093887831 +John Grant,Recognizable algebras of formulas.,1972,13,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl13.html#Grant72,https://doi.org/10.1305/ndjfl/1093890716 +Kenshi Miyabe,An Extension of van Lambalgen's Theorem to Infinitely Many Relative 1-Random Reals.,2010,51,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl51.html#Miyabe10,https://doi.org/10.1215/00294527-2010-020 +D. W. Kuecker,On Generic Structures.,1992,33,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl33.html#KueckerL92,https://doi.org/10.1305/ndjfl/1093636094 +Mohammad Ardeshir,Intuitionistic Open Induction and Least Number Principle and the Buss Operator.,1998,39,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl39.html#ArdeshirM98,https://doi.org/10.1305/ndjfl/1039293063 +Boleslaw Sobocinski,A short equational axiomatization of orthomodular lattices.,1976,17,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl17.html#Sobocinski76b,https://doi.org/10.1305/ndjfl/1093887546 +S. V. Bhave,Situations in Which Disjunctive Syllogism Can Lead from True Premises to a False Conclusion.,1997,38,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl38.html#Bhave97,https://doi.org/10.1305/ndjfl/1039700746 +Eunsuk Yang,Substructural Fuzzy-Relevance Logic.,2015,56,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl56.html#Yang15,https://doi.org/10.1215/00294527-3132824 +Allen Hazen,Actuality and Quantification.,1990,31,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl31.html#Hazen90,https://doi.org/10.1305/ndjfl/1093635586 +Kai Brünnler,Locality for Classical Logic.,2006,47,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl47.html#Brunnler06,https://doi.org/10.1305/ndjfl/1168352668 +Stephanie Cawthorne,Essential Forcing Generics.,2000,41,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl41.html#CawthorneK00,https://doi.org/10.1305/ndjfl/1027953482 +Boleslaw Sobocinski,A note on Newman's algebraic systems.,1973,14,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl14.html#Sobocinski73a,https://doi.org/10.1305/ndjfl/1093890821 +George Voutsadakis,Categorical Abstract Algebraic Logic: Models of ω0*-Institutions.,2005,46,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl46.html#Voutsadakis05,https://doi.org/10.1305/ndjfl/1134397662 +Jon C. Muzio,The cosubstitution condition.,1973,14,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl14.html#Muzio73,https://doi.org/10.1305/ndjfl/1093890811 +George Englebretsen,Formatives.,1989,30,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl30.html#Englebretsen89,https://doi.org/10.1305/ndjfl/1093635155 +Gemma Robles,Generalizing the Depth Relevance Condition: Deep Relevant Logics Not Included in R-Mingle.,2014,55,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl55.html#RoblesM14,https://doi.org/10.1215/00294527-1960461 +George Englebretsen,Preliminary notes on a new modal syllogistic.,1988,29,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl29.html#Englebretsen88,https://doi.org/10.1305/ndjfl/1093637935 +Max J. Cresswell,Completeness without the Barcan formula.,1968,9,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl9.html#Cresswell68a,https://doi.org/10.1305/ndjfl/1093893354 +Robert V. Kohn,Generalization of a result of Halldén.,1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#Kohn75,https://doi.org/10.1305/ndjfl/1093891908 +Chandler Works,Note on duality in propositional calculus.,1968,9,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl9.html#WorksY68,https://doi.org/10.1305/ndjfl/1093893463 +Hugues Leblanc,Henkin's Completeness Proof: Forty Years Later.,1991,32,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl32.html#LeblancRTW91,https://doi.org/10.1305/ndjfl/1093635746 +Andrea Sorbi,Embedding Brouwer Algebras in the Medvedev Lattice.,1991,32,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl32.html#Sorbi91,https://doi.org/10.1305/ndjfl/1093635751 +Stephen G. Simpson,Mass Problems and Intuitionism.,2008,49,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl49.html#Simpson08,https://doi.org/10.1215/00294527-2008-002 +Steven J. Wagner,Frege's definition of number.,1983,24,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl24.html#Wagner83,https://doi.org/10.1305/ndjfl/1093870216 +Günther Frei-Imfeld,über eine Erweiterung der algebraischen Operationen.,1974,15,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl15.html#Frei-Imfeld74,https://doi.org/10.1305/ndjfl/1093891303 +John L. Hickman,The ideal of orderable subsets of a set.,1978,19,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl19.html#Hickman78c,https://doi.org/10.1305/ndjfl/1093888506 +Roland Hinnion,Naive Set Theory with Extensionality in Partial Logic and in Paradoxical Logic.,1994,35,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl35.html#Hinnion94,https://doi.org/10.1305/ndjfl/1040609292 +David Marker,A model theoretic proof of Feferman's preservation theorem.,1984,25,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl25.html#Marker84,https://doi.org/10.1305/ndjfl/1093870626 +Hugues Leblanc,Two separation theorems for natural deduction.,1966,7,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl7.html#Leblanc66,https://doi.org/10.1305/ndjfl/1093958557 +G. White,Are we finite?,1993,34,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl34.html#White93,https://doi.org/10.1305/ndjfl/1093634726 +Albert M. Sweet,The pragmatics of first order languages. II.,1975,16,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl16.html#Sweet75,https://doi.org/10.1305/ndjfl/1093891619 +Sean Cox,PFA and Ideals on ω*2 Whose Associated Forcings Are Proper.,2012,53,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl53.html#Cox12,https://doi.org/10.1215/00294527-1716793 +John K. Stanley,A Structurally Complete Fragment of Relevant Logic.,1992,33,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl33.html#StanleyM92,https://doi.org/10.1305/ndjfl/1093634487 +Ermanno Bencivenga,Analyticity and analytical truth.,1986,27,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl27.html#Bencivenga86,https://doi.org/10.1305/ndjfl/1093636519 +Matt Kaufmann,Some remarks on equivalence in infinitary and stationary logic.,1984,25,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl25.html#Kaufmann84,https://doi.org/10.1305/ndjfl/1093870690 +A. Ivanov,Ages of Expansions of ω*-Categorical Structures.,2007,48,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl48.html#IvanovM07,https://doi.org/10.1305/ndjfl/1187031409 +Patrick Blackburn,Special Issue on Combining Logics - Editor's Introduction.,1996,37,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl37.html#BlackburnR96,https://doi.org/10.1305/ndjfl/1040046084 +Fred Coppotelli,A first order type theory for the theory of sets.,1968,9,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl9.html#Coppotelli68,https://doi.org/10.1305/ndjfl/1093893525 +Richard Tursman,The shortest axioms of the implicational calculus.,1968,9,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl9.html#Tursman68,https://doi.org/10.1305/ndjfl/1093893523 +John Cantwell,The Logic of Conditional Negation.,2008,49,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl49.html#Cantwell08,https://doi.org/10.1215/00294527-2008-010 +Jan Jaspars,Partial Up and Down Logic.,1995,36,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl36.html#Jaspars95,https://doi.org/10.1305/ndjfl/1040308832 +E. J. Lemmon,A note on Halldén-incompleteness.,1966,7,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl7.html#Lemmon66,https://doi.org/10.1305/ndjfl/1093958745 +John Grant,Imcomplete models.,1974,15,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl15.html#Grant74,https://doi.org/10.1305/ndjfl/1093891492 +John K. Slaney,On the Structure of De Morgan Monoids with Corollaries on Relevant Logic and Theories.,1989,30,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl30.html#Slaney89,https://doi.org/10.1305/ndjfl/1093634999 +Alex Blum,A correction in Copi's account of Boolean normal forms.,1973,14,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl14.html#Blum73,https://doi.org/10.1305/ndjfl/1093890909 +M. Adrian Carpentier,Creative sequences and double sequences.,1968,9,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl9.html#Carpentier68,https://doi.org/10.1305/ndjfl/1093893351 +Saharon Shelah,On the number of nonisomorphic models of cardinality and#955* L∞λ*-equivalent to a fixed model.,1981,22,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl22.html#Shelah81,https://doi.org/10.1305/ndjfl/1093883334 +George E. Collins,On the interpretability of arithmetic in set theory.,1970,11,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl11.html#CollinsH70,https://doi.org/10.1305/ndjfl/1093894080 +Gilbert Harman,Conceptual role semantics.,1982,23,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl23.html#Harman82,https://doi.org/10.1305/ndjfl/1093883628 +Czeslaw Lejewski,"Postscript: ""A note concerning the notion of mereological class"".",1980,21,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl21.html#Lejewski80,https://doi.org/10.1305/ndjfl/1093883251 +Jean-Pierre Marquis,Approximations and Logic.,1992,33,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl33.html#Marquis92,https://doi.org/10.1305/ndjfl/1093636095 +Ivo Thomas,Solutions of five modal problems of Sobociński.,1962,3,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl3.html#Thomas62c,https://doi.org/10.1305/ndjfl/1093957240 +Albert A. Mullin,On a proper class and related matters.,1966,7,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl7.html#Mullin66,https://doi.org/10.1305/ndjfl/1093958481 +George Englebretsen,Noncategorical syllogisms in the Analytics.,1980,21,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl21.html#Englebretsen80a,https://doi.org/10.1305/ndjfl/1093883184 +Bruce M. Horowitz,Elementary formal systems as a framework for relative recursion theory.,1982,23,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl23.html#Horowitz82,https://doi.org/10.1305/ndjfl/1093883564 +Juliusz Reichbach,A note on theses of the first-order functional calculus.,1968,9,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl9.html#Reichbach68,https://doi.org/10.1305/ndjfl/1093893520 +James D. Sharp,Uniformization Problems and the Cofinality of the Infinite Symmetric Group.,1994,35,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl35.html#SharpT94,https://doi.org/10.1305/ndjfl/1040511341 +Richard L. Purtill,Paradox-free deontic logics.,1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#Purtill75,https://doi.org/10.1305/ndjfl/1093891883 +Woodrow Jaffee,The syntax of projective geometry.,1966,7,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl7.html#Jaffee66,https://doi.org/10.1305/ndjfl/1093958749 +Martin W. Bunder,Equivalences between Pure Type Systems and Systems of Illative Combinatory Logic.,2005,46,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl46.html#BunderD05,https://doi.org/10.1305/ndjfl/1117755149 +J. Jay Zeman,Quantum logic with implication.,1979,20,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl20.html#Zeman79b,https://doi.org/10.1305/ndjfl/1093882792 +Ivo Thomas,Shorter development of an axiom.,1975,16,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl16.html#Thomas75a,https://doi.org/10.1305/ndjfl/1093891799 +Karl Menger,Postulates for the substitutive algebra of the 2-place functors in the 2-valued calculus of propositions.,1963,4,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl4.html#MengerS63,https://doi.org/10.1305/ndjfl/1093957575 +Richard Vesley,On strengthening intuitionistic logic.,1963,4,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl4.html#Vesley63,https://doi.org/10.1305/ndjfl/1093957397 +Shimon Garti,Many Normal Measures.,2014,55,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl55.html#Garti14,https://doi.org/10.1215/00294527-2688060 +Boleslaw Sobocinski,A note concerning the many-valued propositional calculi.,1961,2,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl2.html#Sobocinski61b,https://doi.org/10.1305/ndjfl/1093956835 +Jaime Bohórquez V.,Intuitionistic Logic according to Dijkstra's Calculus of Equational Deduction.,2008,49,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl49.html#V08,https://doi.org/10.1215/00294527-2008-017 +Kai Frederick Wehmeier,Classical and Intuitionistic Models of Arithmetic.,1996,37,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl37.html#Wehmeier96,https://doi.org/10.1305/ndjfl/1039886521 +Claudio Bernardi,A shorter proof of a recent result by R. Di Paola.,1984,25,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl25.html#Bernardi84,https://doi.org/10.1305/ndjfl/1093870691 +Charles H. Lambros,A generalized theorem concerning a restricted rule of substitution in the field of propositional calculi.,1979,20,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl20.html#Lambros79a,https://doi.org/10.1305/ndjfl/1093882797 +John T. Baldwin 0001,Second-order quantifiers and the complexity of theories.,1985,26,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl26.html#BaldwinS85,https://doi.org/10.1305/ndjfl/1093870870 +Melven R. Krom,Equivalents of a weak axiom of choice.,1981,22,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl22.html#Krom81,https://doi.org/10.1305/ndjfl/1093883463 +Roman Kossak,A note on satisfaction classes.,1985,26,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl26.html#Kossak85,https://doi.org/10.1305/ndjfl/1093870757 +Wolfgang Stegmüller,Eine modelltheoretische Präzisierung der Wittgensteinschen Bildtheorie.,1966,7,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl7.html#Stegmuller66,https://doi.org/10.1305/ndjfl/1093958558 +Wilhelm K. Essler,Ein nichtkonstruktiver Beweis des ersten 9*-theorems.,1970,11,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl11.html#Essler70,https://doi.org/10.1305/ndjfl/1093894007 +David R. Bélanger,Weak Truth Table Degrees of Structures.,2015,56,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl56.html#Belanger15,https://doi.org/10.1215/00294527-2864298 +Charles B. Daniels,A first-order logic with no logical constants.,1987,28,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl28.html#Daniels87,https://doi.org/10.1305/ndjfl/1093637561 +Alan Rose,Simplified formalizations of fragments of the propositional calculus.,1977,18,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl18.html#Rose77,https://doi.org/10.1305/ndjfl/1093887930 +Romane Clark,When is a fallacy valid? Reflections on backward reasoning.,1982,23,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl23.html#Clark82,https://doi.org/10.1305/ndjfl/1093883560 +Alex Citkin,Metalogic of Intuitionistic Propositional Calculus.,2010,51,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl51.html#Citkin10,https://doi.org/10.1215/00294527-2010-031 +David Ballard,Independence in higher-order subclassical logic.,1985,26,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl26.html#Ballard85,https://doi.org/10.1305/ndjfl/1093870936 +George Boolos,1-consistency and the diamond.,1985,26,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl26.html#Boolos85,https://doi.org/10.1305/ndjfl/1093870927 +Jan A. Bergstra,Bochvar-McCarthy Logic and Process Algebra.,1998,39,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl39.html#BergstraP98,https://doi.org/10.1305/ndjfl/1039118863 +Walter H. O'Briant,Leibnitz's preference for an intensional logic (A reply to Mr. Parkinson).,1967,8,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl8.html#OBriant67,https://doi.org/10.1305/ndjfl/1093956091 +John Robert Baker,On two immediate inferences by limitation.,1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#Baker75,https://doi.org/10.1305/ndjfl/1093891885 +I. L. Humberstone,Operational semantics for positive R.,1988,29,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl29.html#Humberstone88,https://doi.org/10.1305/ndjfl/1093637771 +Bonnie Gold,Relatively Diophantine correct models of arithmetic.,1987,28,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl28.html#Gold87,https://doi.org/10.1305/ndjfl/1093636946 +Melven R. Krom,A property of sentences that define quasi-order.,1966,7,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl7.html#Krom66,https://doi.org/10.1305/ndjfl/1093958753 +Stanley J. Krolikoski,A deduction theorem for rejection theses in Ł*ukasiewicz's system of modal logic.,1979,20,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl20.html#Krolikoski79a,https://doi.org/10.1305/ndjfl/1093882554 +Charles C. Davis,Temporal modalities and the future.,1976,17,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl17.html#DavisM76,https://doi.org/10.1305/ndjfl/1093887526 +Barry Burd,Decomposable collections of sets.,1984,25,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl25.html#Burd84,https://doi.org/10.1305/ndjfl/1093870516 +Barbara F. Csima,Degrees of Categoricity and the Hyperarithmetic Hierarchy.,2013,54,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl54.html#CsimaFS13,https://doi.org/10.1215/00294527-1960479 +Melvin Fitting,Notes on the mathematical aspects of Kripke's theory of truth.,1986,27,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl27.html#Fitting86,https://doi.org/10.1305/ndjfl/1093636525 +William J. Frascella,A generalization of Sierpiński's theorem on Steiner triples and the axiom of choice.,1965,6,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl6.html#Frascella65,https://doi.org/10.1305/ndjfl/1093958253 +R. L. Goodstein,On recursive transcendence.,1960,1,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl1.html#GoodsteinH60,https://doi.org/10.1305/ndjfl/1093956617 +Gerald Vision,Why Correspondence Truth Will Not Go Away.,1997,38,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl38.html#Vision97,https://doi.org/10.1305/ndjfl/1039700700 +George Goe,Reconstructing formal logic: Further developments and considerations.,1970,11,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl11.html#Goe70,https://doi.org/10.1305/ndjfl/1093893858 +Richard Routley,Non-existence does not exist.,1970,11,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl11.html#Routley70,https://doi.org/10.1305/ndjfl/1093894001 +Albert A. Mullin,A note on a weakened Goldbach-like conjecture.,1962,3,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl3.html#Mullin62,https://doi.org/10.1305/ndjfl/1093957157 +C. Barry Jay,Coherence in category theory and the Church-Rosser property.,1992,33,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl33.html#Jay92,https://doi.org/10.1305/ndjfl/1093636017 +Greg Hjorth,A Note on Counterexamples to the Vaught Conjecture.,2007,48,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl48.html#Hjorth07,https://doi.org/10.1305/ndjfl/1172787544 +Hitoshi Omori,A Note on Majkic's Systems.,2010,51,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl51.html#OmoriW10,https://doi.org/10.1215/00294527-2010-032 +I. Susan Russinoff,On the brink of a paradox?,1987,28,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl28.html#Russinoff87,https://doi.org/10.1305/ndjfl/1093636850 +Dolph Ulrich,Some results concerning finite models for sentential calculi.,1972,13,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl13.html#Ulrich72,https://doi.org/10.1305/ndjfl/1093890623 +Wilfrid Hodges,The Laws of Distribution for Syllogisms.,1998,39,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl39.html#Hodges98,https://doi.org/10.1305/ndjfl/1039293064 +Melvin Fitting,A tableau system for propositional S5.,1977,18,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl18.html#Fitting77,https://doi.org/10.1305/ndjfl/1093887933 +Richard Sylvan,On Interpreting Thruth Tables and Relevant Truth Table Logic.,1992,33,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl33.html#Sylvan92,https://doi.org/10.1305/ndjfl/1093636097 +Richard Butrick,Systems of sentence logic with trans-atomic units.,1986,27,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl27.html#Butrick86,https://doi.org/10.1305/ndjfl/1093636770 +David W. Bennett,A note on the completeness proof for natural deduction.,1977,18,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl18.html#Bennett77,https://doi.org/10.1305/ndjfl/1093887830 +A. N. Prior,On the calculus MCC.,1969,10,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl10.html#Prior69a,https://doi.org/10.1305/ndjfl/1093893715 +Hilary Putnam,A note on constructible sets of integers.,1963,4,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl4.html#Putnam63,https://doi.org/10.1305/ndjfl/1093957652 +Ivo Thomas,Universal variable non-Tarskian functors.,1964,5,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl5.html#Thomas64b,https://doi.org/10.1305/ndjfl/1093957883 +Boleslaw Sobocinski,On the generalized Brouwerian axioms.,1962,3,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl3.html#Sobocinski62b,https://doi.org/10.1305/ndjfl/1093957159 +Richard Beatty,Peirce's development of quantifiers and of predicate logic.,1969,10,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl10.html#Beatty69,https://doi.org/10.1305/ndjfl/1093893587 +Renling Jin,Some Independence Results Related to the Kurepa Tree.,1991,32,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl32.html#Jin91,https://doi.org/10.1305/ndjfl/1093635840 +Philip Scowcroft,The Complexity of Bounded Quantifiers in Some Ordered Abelian Groups.,2007,48,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl48.html#Scowcroft07,https://doi.org/10.1305/ndjfl/1193667710 +C. G. McKay,Some completeness results for intermediate propositional logics.,1967,8,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl8.html#McKay67,https://doi.org/10.1305/ndjfl/1093956083 +Henryk Hiz,"Errata: ""A completeness proof for C-calculus"".",1976,17,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl17.html#Hiz76,http://projecteuclid.org/euclid.ndjfl/1093887740 +Jean Porte,Congruences in Lemmon's S0.5.,1980,21,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl21.html#Porte80a,https://doi.org/10.1305/ndjfl/1093883250 +Melvin Fitting,Nested Sequents for Intuitionistic Logics.,2014,55,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl55.html#Fitting14,https://doi.org/10.1215/00294527-2377869 +Leo Simons,Logic without tautologies.,1974,15,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl15.html#Simons74,https://doi.org/10.1305/ndjfl/1093891403 +Tom Skura,Maximality and Refutability.,2004,45,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl45.html#Skura04,https://doi.org/10.1305/ndjfl/1095386644 +Laurent Larouche,Examination of the axiomatic foundations of a theory of change. III.,1969,10,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl10.html#Larouche69a,https://doi.org/10.1305/ndjfl/1093893788 +Rolf Schock,A note on the axiom of choice and the continuum hypothesis.,1977,18,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl18.html#Schock77,https://doi.org/10.1305/ndjfl/1093888013 +Michael Anderson,Approximation to a decision procedure for the halting problem.,1968,9,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl9.html#Anderson68,https://doi.org/10.1305/ndjfl/1093893516 +Ross T. Brady,Significance range theory.,1980,21,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl21.html#Brady80a,https://doi.org/10.1305/ndjfl/1093883050 +Maarten Marx,Failure of Interpolation in Combined Modal Logics.,1998,39,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl39.html#MarxA98,https://doi.org/10.1305/ndjfl/1039293067 +Louis F. Goble,Gentzen systems for modal logic.,1974,15,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl15.html#Goble74,https://doi.org/10.1305/ndjfl/1093891406 +Kit Fine,In so many possible worlds.,1972,13,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl13.html#Fine72,https://doi.org/10.1305/ndjfl/1093890715 +Vito F. Sinisi,Leśniewski's analysis of Whitehead's theory of events.,1966,7,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl7.html#Sinisi66,https://doi.org/10.1305/ndjfl/1093958748 +Petr Cintula,Structural Completeness in Fuzzy Logics.,2009,50,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl50.html#CintulaM09,https://doi.org/10.1215/00294527-2009-004 +Gerald J. Massey,An extension of Venn diagrams.,1966,7,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl7.html#Massey66,https://doi.org/10.1305/ndjfl/1093958619 +Victor Pambuccian,A Problem in Pythagorean Arithmetic.,2018,59,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl59.html#Pambuccian18a,https://doi.org/10.1215/00294527-2017-0028 +Juliusz Reichbach,On the connection of the first-order functional calculus with many-valued propositional calculi.,1962,3,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl3.html#Reichbach62,https://doi.org/10.1305/ndjfl/1093957153 +Paul Thom,Apodeictic Ecthesis.,1993,34,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl34.html#Thom93,https://doi.org/10.1305/ndjfl/1093634652 +Alexander Abian,The Cardinality of Powersets in Finite Models of the Powerset Axiom.,1991,32,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl32.html#AbianA91,https://doi.org/10.1305/ndjfl/1093635753 +Mitio Takano,Cut-Free Systems for Three-Valued Modal Logics.,1992,33,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl33.html#Takano92,https://doi.org/10.1305/ndjfl/1093634401 +George F. Schumm,Some failures of interpolation in modal logic.,1986,27,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl27.html#Schumm86,https://doi.org/10.1305/ndjfl/1093636529 +Timothy Williamson,First-order logics for comparative similarity.,1988,29,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl29.html#Williamson88,https://doi.org/10.1305/ndjfl/1093638012 +Boleslaw Sobocinski,A short equational axiomatization of modular ortholattices.,1976,17,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl17.html#Sobocinski76a,https://doi.org/10.1305/ndjfl/1093887545 +Ernest Schimmerling,A Question about Suslin Trees and the Weak Square Hierarchy.,2005,46,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl46.html#Schimmerling05,https://doi.org/10.1305/ndjfl/1125409335 +Robin Smith,Completeness of an ecthetic syllogistic.,1983,24,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl24.html#Smith83,https://doi.org/10.1305/ndjfl/1093870312 +Nino B. Cocchiarella,Two and#955*-extensions of the theory of homogeneous simple types as a second-order logic.,1985,26,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl26.html#Cocchiarella85,https://doi.org/10.1305/ndjfl/1093870930 +James C. Owings,Diagonalization and the recursion theorem.,1973,14,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl14.html#Owings73,https://doi.org/10.1305/ndjfl/1093890812 +Andrzej Orlicki,Multimorphisms over enumerated sets.,1993,34,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl34.html#Orlicki93,https://doi.org/10.1305/ndjfl/1093633904 +Merrie Bergmann,Expressibility in two-dimensional languages for presupposition.,1982,23,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl23.html#Bergmann82,https://doi.org/10.1305/ndjfl/1093870158 +Milton Fisk,The logic of either-or.,1965,6,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl6.html#Fisk65,https://doi.org/10.1305/ndjfl/1093958075 +Matt Kaufmann,A note on the Hanf number of second-order logic.,1985,26,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl26.html#Kaufmann85,https://doi.org/10.1305/ndjfl/1093870925 +Saharon Shelah,Definability of Initial Segments.,2002,43,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl43.html#ShelahT02,https://doi.org/10.1305/ndjfl/1071509428 +Paul T. Sagal,On how best to make sense of Leśniewski's ontology.,1973,14,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl14.html#Sagal73,https://doi.org/10.1305/ndjfl/1093890901 +Johannes Czermak,A remark on Gentzen's calculus of sequents.,1977,18,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl18.html#Czermak77,https://doi.org/10.1305/ndjfl/1093888021 +Charles Leonard Hamblin,A felicitous fragment of the predicate calculus.,1973,14,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl14.html#Hamblin73,https://doi.org/10.1305/ndjfl/1093891098 +Stephen G. Simpson,Implicit Definability in Arithmetic.,2016,57,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl57.html#Simpson16,https://doi.org/10.1215/00294527-3507386 +Graham Priest,A refoundation of modal logic.,1977,18,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl18.html#Priest77,https://doi.org/10.1305/ndjfl/1093888007 +John H. Harris,On a problem of Th. Skolem.,1970,11,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl11.html#Harris70,https://doi.org/10.1305/ndjfl/1093894008 +George Edward Hughes,Equivalence relations and S5.,1980,21,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl21.html#Hughes80,https://doi.org/10.1305/ndjfl/1093883181 +Jerrold J. Katz,Common sense in semantics.,1982,23,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl23.html#Katz82,https://doi.org/10.1305/ndjfl/1093883626 +Mitchell O. Locks,Logical and probability analysis of systems.,1978,19,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl19.html#Locks78,https://doi.org/10.1305/ndjfl/1093888214 +Uwe Lück,Continu'ous Time Goes by Russell.,2006,47,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl47.html#Luck06,https://doi.org/10.1305/ndjfl/1163775446 +Joël Combase,A Silver-like Perfect Set Theorem with an Application to Borel Model Theory.,2011,52,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl52.html#Combase11,https://doi.org/10.1215/00294527-1499372 +Léon Birnbaum,n-polar logic of classes.,1980,21,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl21.html#Birnbaum80,https://doi.org/10.1305/ndjfl/1093883053 +John A. Kalman,A shortest single axiom for the classical equivalential calculus.,1978,19,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl19.html#Kalman78,https://doi.org/10.1305/ndjfl/1093888216 +Jonathan P. Seldin,The Q-consistency of F22.,1977,18,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl18.html#Seldin77,https://doi.org/10.1305/ndjfl/1093887826 +Ermanno Bencivenga,A semantics for a weak free logic.,1978,19,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl19.html#Bencivenga78,https://doi.org/10.1305/ndjfl/1093888515 +Vladeta Vuckovic,Recursive and recursively enumerable manifolds. II.,1977,18,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl18.html#Vuckovic77a,https://doi.org/10.1305/ndjfl/1093888011 +John Thomas Canty,On symbolizing singulary S5 functions.,1968,9,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl9.html#Canty68,https://doi.org/10.1305/ndjfl/1093893521 +Boleslaw Sobocinski,A note on an axiom-system of atomistic mereology.,1971,12,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl12.html#Sobocinski71c,https://doi.org/10.1305/ndjfl/1093894225 +David Kaplan,A paradox regained.,1960,1,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl1.html#KaplanM60,https://doi.org/10.1305/ndjfl/1093956549 +John Nolt,A Fully Logical Inductive Logic.,1990,31,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl31.html#Nolt90,https://doi.org/10.1305/ndjfl/1093635506 +E. A. Nemesszeghy,Note on an independence proof of Johansson.,1976,17,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl17.html#Nemesszeghy76,https://doi.org/10.1305/ndjfl/1093887637 +Alexander Kreuzer,Primitive Recursion and the Chain Antichain Principle.,2012,53,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl53.html#Kreuzer12,https://doi.org/10.1215/00294527-1715716 +Veikko Rantala,Facts and the choice of logical foundations.,1984,25,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl25.html#Rantala84,https://doi.org/10.1305/ndjfl/1093870686 +Richard Guhl,Two notes on recursively enumerable vector spaces.,1977,18,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl18.html#Guhl77,https://doi.org/10.1305/ndjfl/1093887934 +Craig Smorynski,Elementary extensions of recursively saturated models of arithmetic.,1981,22,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl22.html#Smorynski81a,https://doi.org/10.1305/ndjfl/1093883454 +James W. van Evra,A reassessment of George Boole's theory of logic.,1977,18,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl18.html#Evra77,https://doi.org/10.1305/ndjfl/1093888009 +Kenneth Loewen,Modified strong reduction in combinatory logic.,1968,9,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl9.html#Loewen68,https://doi.org/10.1305/ndjfl/1093893461 +Boleslaw Sobocinski,Three set-theoretical formulas.,1961,2,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl2.html#Sobocinski61,https://doi.org/10.1305/ndjfl/1093956753 +Nicholas Rescher,"Avicenna on the logic of ""conditional"" propositions.",1963,4,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl4.html#Rescher63,https://doi.org/10.1305/ndjfl/1093957394 +Oliver Lemon,On the Insufficiency of Linear Diagrams for Syllogisms.,1998,39,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl39.html#LemonP98,https://doi.org/10.1305/ndjfl/1039118871 +Carl Lyngholm,A double-iteration property of Boolean functions.,1960,1,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl1.html#LyngholmY60,https://doi.org/10.1305/ndjfl/1093956552 +John Thomas Canty,The numerical epsilon.,1969,10,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl10.html#Canty69,https://doi.org/10.1305/ndjfl/1093893586 +Gary Gilford Gleason,Normal and skew systems.,1974,15,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl15.html#Gleason74,https://doi.org/10.1305/ndjfl/1093891401 +Charles E. Caton,A stipulation of a modal propositional calculus in terms of modalized truth-values.,1963,4,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl4.html#Caton63,https://doi.org/10.1305/ndjfl/1093957580 +Joel David Hamkins,Algebraicity and Implicit Definability in Set Theory.,2016,57,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl57.html#HamkinsL16,https://doi.org/10.1215/00294527-3542326 +Hartmut Höft,Well Ordered Subsets of Linearly Ordered Sets.,1994,35,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl35.html#HoftH94,https://doi.org/10.1305/ndjfl/1040511347 +Giovanna D'Agostino,Topological Structure of Diagonalizable Algebras and Corresponding Logical Properties of Theories.,1994,35,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl35.html#DAgostino94,https://doi.org/10.1305/ndjfl/1040408613 +Albert A. Mullin,C. S. S. Peirce and E. G. A. Husserl on the nature of logic.,1966,7,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl7.html#Mullin66a,https://doi.org/10.1305/ndjfl/1093958746 +Wolfgang Leopold Gombocz,Leśniewski und Mally.,1979,20,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl20.html#Gombocz79,https://doi.org/10.1305/ndjfl/1093882816 +John A. Paulos,A model-theoretic account of confirmation.,1979,20,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl20.html#Paulos79,https://doi.org/10.1305/ndjfl/1093882552 +Thomas W. Scharle,Axiomatization of propositional calculus with Sheffer functors.,1965,6,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl6.html#Scharle65,https://doi.org/10.1305/ndjfl/1093958259 +John P. Burgess,Predicative Logic and Formal Arithmetic.,1998,39,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl39.html#BurgessH98,https://doi.org/10.1305/ndjfl/1039293018 +Michael Root,Meaning and interpretation.,1982,23,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl23.html#RootW82,https://doi.org/10.1305/ndjfl/1093883625 +Eric J. Hall,Permutation Models and SVC.,2007,48,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl48.html#Hall07,https://doi.org/10.1305/ndjfl/1179323265 +Paul E. Howard,The Strenght of the Delta-system Lemma.,1993,34,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl34.html#HowardS93,https://doi.org/10.1305/ndjfl/1093634567 +François G. Dorais,Classical Consequences of Continuous Choice Principles from Intuitionistic Analysis.,2014,55,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl55.html#Dorais14,https://doi.org/10.1215/00294527-2377860 +Günther Frei-Imfeld,über Kongruenzen höherer Operationen.,1976,17,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl17.html#Frei-Imfeld76,https://doi.org/10.1305/ndjfl/1093887430 +Anand Pillay,On Lovely Pairs and the (∃* y and∈* P) Quantifier.,2005,46,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl46.html#PillayV05,https://doi.org/10.1305/ndjfl/1134397664 +Andreas Blass,Near coherence of filters. I. Cofinal equivalence of models of arithmetic.,1986,27,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl27.html#Blass86,https://doi.org/10.1305/ndjfl/1093636772 +Bohuslav T. Peklo,Erweiterte deontische Logik (EDL). Ein Versuch um weitere formale Ausbildung der deontischen Modallogik.,1975,16,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl16.html#Peklo75,https://doi.org/10.1305/ndjfl/1093891612 +Ivan Boh,A study in Burleigh: Tractatus de regulis generalibus consequentiarum.,1962,3,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl3.html#Boh62,https://doi.org/10.1305/ndjfl/1093957152 +William J. Frascella,The non-existence of a certain combinatorial design on an infinite set.,1969,10,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl10.html#Frascella69,https://doi.org/10.1305/ndjfl/1093893723 +M. K. Rennie,Theory of procedures. I. Simple conditionals.,1969,10,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl10.html#Rennie69,https://doi.org/10.1305/ndjfl/1093893591 +Nuel D. Belnap Jr.,On not strengthening intuitionistic logic.,1963,4,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl4.html#BelnapLT63,https://doi.org/10.1305/ndjfl/1093957658 +Howard C. Wasserman,An analysis of the counterfactual conditional.,1976,17,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl17.html#Wasserman76,https://doi.org/10.1305/ndjfl/1093887631 +W. D. Hart,Probability as degree of possibility.,1972,13,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl13.html#Hart72,https://doi.org/10.1305/ndjfl/1093894730 +Osamu Morikawa,Extended Gentzen-type Formulations of Two Temporal Logics Based on Incomplete Knowledge Systems.,2001,42,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl42.html#Morikawa01,https://doi.org/10.1305/ndjfl/1054301355 +Martin Zeman,Two Upper Bounds on Consistency Strength of and#172*χ33*ℵ*χ9* and Stationary Set Reflection at Two Successive and#8501*n.,2017,58,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl58.html#Zeman17,https://doi.org/10.1215/00294527-2017-0005 +Fabio Bellissima,On the relationship between one-point frames and degrees of unsatisfiability of modal formulas.,1984,25,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl25.html#Bellissima84,https://doi.org/10.1305/ndjfl/1093870572 +William Tuthill Parry,In memoriam: Clarence Irving Lewis (1883-1964).,1970,11,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl11.html#Parry70,https://doi.org/10.1305/ndjfl/1093893933 +Yannis Stephanou,Investigations into Quantified Modal Logic.,2002,43,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl43.html#Stephanou02,https://doi.org/10.1305/ndjfl/1074396306 +Richard Zach,Book Review: Michael Potter. Reason's Nearest Kin. Philosophies of Arithmetic from Kant to Carnap.,2005,46,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl46.html#Zach05,https://doi.org/10.1305/ndjfl/1134397665 +Joel David Hamkins,The Halting Problem Is Decidable on a Set of Asymptotic Probability One.,2006,47,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl47.html#HamkinsM06,https://doi.org/10.1305/ndjfl/1168352664 +Robert K. Meyer,Metacompleteness.,1976,17,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl17.html#Meyer76a,https://doi.org/10.1305/ndjfl/1093887722 +R. A. Bull,On three related extensions of S4.,1967,8,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl8.html#Bull67a,https://doi.org/10.1305/ndjfl/1094068848 +G. Y. Rainich,Notes on foundations. I.,1961,2,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl2.html#Rainich61,https://doi.org/10.1305/ndjfl/1093956972 +Eric J. Hall,A Characterization of Permutation Models in Terms of Forcing.,2002,43,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl43.html#Hall02,https://doi.org/10.1305/ndjfl/1074290714 +William C. Purdy,A Variable Free Logic for Mass Terms.,1992,33,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl33.html#Purdy92a,https://doi.org/10.1305/ndjfl/1093634400 +Graham Priest,Impossible Worlds - Editor's Introduction.,1997,38,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl38.html#Priest97,https://doi.org/10.1305/ndjfl/1039540765 +Julius B. Barbanel,Almost Hugeness and a Related Notion.,1991,32,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl32.html#Barbanel91,https://doi.org/10.1305/ndjfl/1093635750 +Alan C. Wilde,A substitution property.,1974,15,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl15.html#Wilde74a,https://doi.org/10.1305/ndjfl/1093891498 +Patric Cean Nolan,A semantics model for imperatives.,1977,18,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl18.html#Nolan77,https://doi.org/10.1305/ndjfl/1093887821 +Thomas Macaulay Ferguson,Dunn-Priest Quotients of Many-Valued Structures.,2017,58,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl58.html#Ferguson17,https://doi.org/10.1215/00294527-3838853 +Shahram Mohsenipour,Set Mappings on 4-Tuples.,2018,59,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl59.html#MohsenipourS18,https://doi.org/10.1215/00294527-2018-0002 +Craig Smorynski,Fifty years of self-reference in arithmetic.,1981,22,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl22.html#Smorynski81b,https://doi.org/10.1305/ndjfl/1093883515 +Helen L. Skala,The irreducible generating sets of 2-place functions in the 2-valued logic.,1966,7,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl7.html#Skala66,https://doi.org/10.1305/ndjfl/1093958751 +O. Bradley Bassler,Book Review: Mark van Atten. On Brouwer.,2006,47,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl47.html#Bassler06,https://doi.org/10.1305/ndjfl/1168352669 +J. C. E. Dekker,Automorphisms of ω*-octahedral graphs.,1982,23,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl23.html#Dekker82,https://doi.org/10.1305/ndjfl/1093870154 +Maarten Marx,Multi-Dimensional Semantics for Modal Logics.,1996,37,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl37.html#Marx96,https://doi.org/10.1305/ndjfl/1040067313 +James R. Bode,The possibility of a conditional logic.,1979,20,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl20.html#Bode79,https://doi.org/10.1305/ndjfl/1093882413 +D. L. Székely,The principles of the theory of the unification of sciences.,1969,10,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl10.html#Szekely69,https://doi.org/10.1305/ndjfl/1093893653 +Gerald J. Massey,Normal form generation of S5 functions via truth functions.,1968,9,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl9.html#Massey68,https://doi.org/10.1305/ndjfl/1093893355 +Charles Turek,Lehmann on the rules of the invalid syllogisms.,1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#Turek75,https://doi.org/10.1305/ndjfl/1093891907 +Richard G. Heck Jr.,The Logical Strength of Compositional Principles.,2018,59,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl59.html#Heck18,https://doi.org/10.1215/00294527-2017-0011 +Laurent Bienvenu,Randomness and Semimeasures.,2017,58,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl58.html#BienvenuHPS17,https://doi.org/10.1215/00294527-3839446 +D. L. Székely,A theory of translation and transformation of languages.,1962,3,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl3.html#Szekely62,https://doi.org/10.1305/ndjfl/1093957233 +Elias Dahlhaus,On the existence of polynomial time algorithms for interpolation problems in propositional logic.,1988,29,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl29.html#DahlhausIM88,https://doi.org/10.1305/ndjfl/1093638014 +Rosalie Iemhoff,Intermediate Logics and Visser's Rules.,2005,46,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl46.html#Iemhoff05,https://doi.org/10.1305/ndjfl/1107220674 +Glen Helman,On the equivalence of proofs involving identity.,1987,28,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl28.html#Helman87,https://doi.org/10.1305/ndjfl/1093637554 +Charles C. Davis,"Erratum: ""An investigation concerning the Hilbert-Sierpiński logical form of the axiom of choice"".",1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#Davis75a,http://projecteuclid.org/euclid.ndjfl/1093891910 +Klemens Döpp,Bermerkungen zu Henkins Beweis für die Nichtstandard-Vollständigkeit der Typentheorie.,1972,13,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl13.html#Dopp72,https://doi.org/10.1305/ndjfl/1093890722 +Solomon Feferman,Set-theoretical Invariance Criteria for Logicality.,2010,51,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl51.html#Feferman10,https://doi.org/10.1215/00294527-2010-002 +Stefan Hetzl,The Computational Content of Arithmetical Proofs.,2012,53,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl53.html#Hetzl12,https://doi.org/10.1215/00294527-1716811 +Robert P. McArthur,S5 with the CBF.,1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#McArthur75,https://doi.org/10.1305/ndjfl/1093891891 +Matthew Jura,Reverse Mathematics and the Coloring Number of Graphs.,2016,57,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl57.html#Jura16,https://doi.org/10.1215/00294527-3321905 +T. A. McKee,Forbidden subgraphs in terms of forbidden quantifiers.,1978,19,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl19.html#McKee78,https://doi.org/10.1305/ndjfl/1093888225 +Boleslaw Sobocinski,A note concerning the axiom of choice.,1960,1,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl1.html#Sobocinski60b,https://doi.org/10.1305/ndjfl/1093956555 +A. S. Troelstra,Strong normalization for typed terms with surjective pairing.,1986,27,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl27.html#Troelstra86,https://doi.org/10.1305/ndjfl/1093636767 +Victor Pambuccian,Simplicity.,1988,29,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl29.html#Pambuccian88,https://doi.org/10.1305/ndjfl/1093637936 +Boleslaw Sobocinski,A new axiomatization of modal system K1.2.,1973,14,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl14.html#Sobocinski73b,https://doi.org/10.1305/ndjfl/1093891012 +Kenneth Loewen,The Church Rosser theorem for strong reduction in combinatory logic.,1968,9,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl9.html#Loewen68b,https://doi.org/10.1305/ndjfl/1093893514 +Andrzej Pietruszczak,A General Concept of Being a Part of a Whole.,2014,55,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl55.html#Pietruszczak14,https://doi.org/10.1215/00294527-2688069 +Marie La Palme Reyes,Functoriality and Grammatical Role in Syllogisms.,1994,35,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl35.html#ReyesMR94,https://doi.org/10.1305/ndjfl/1040609293 +Jonathan Fleischmann,Syntactic Preservation Theorems for Intuitionistic Predicate Logic.,2010,51,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl51.html#Fleischmann10,https://doi.org/10.1215/00294527-2010-014 +Chris Brink,The algebra of relatives.,1979,20,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl20.html#Brink79,https://doi.org/10.1305/ndjfl/1093882812 +Shimon Garti,Depth of Boolean Algebras.,2011,52,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl52.html#GartiS11,https://doi.org/10.1215/00294527-1435474 +Kevin L. Flannery,A rationale for Aristotle's notion of perfect syllogisms.,1987,28,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl28.html#Flannery87,https://doi.org/10.1305/ndjfl/1093637566 +Robert E. Clay,"Corrections for my paper: ""A model for Leśniewski's mereology in functions"".",1975,16,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl16.html#Clay75,https://doi.org/10.1305/ndjfl/1093891708 +Franco Montagna,The predicate modal logic of provability.,1984,25,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl25.html#Montagna84,https://doi.org/10.1305/ndjfl/1093870577 +Michael C. Laskowski,Characterizing Model Completeness Among Mutually Algebraic Structures.,2015,56,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl56.html#Laskowski15,https://doi.org/10.1215/00294527-3132815 +Francis Jeffry Pelletier,On proving functional incompleteness in symbolic logic classes.,1988,29,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl29.html#PelletierS88,https://doi.org/10.1305/ndjfl/1093637874 +Chris Brink,Two axiom systems for relation algebras.,1979,20,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl20.html#Brink79a,https://doi.org/10.1305/ndjfl/1093882813 +Ahti-Veikko Pietarinen,Propositional Logic of Imperfect Information: Foundations and Applications.,2001,42,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl42.html#Pietarinen01,https://doi.org/10.1305/ndjfl/1063372242 +Arnold W. Miller,On the Borel classification of the isomorphism class of a countable model.,1983,24,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl24.html#Miller83,https://doi.org/10.1305/ndjfl/1093870217 +Alexandra Shlapentokh,A Diophantine Definition of Rational Integers over Some Rings of Algebraic Numbers.,1992,33,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl33.html#Shlapentokh92,https://doi.org/10.1305/ndjfl/1093634397 +Paola D'Aquino,Toward the Limits of the Tennebaum Phenomenon.,1997,38,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl38.html#DAquino97,https://doi.org/10.1305/ndjfl/1039700698 +Gerald J. Massey,Note on Copi's system.,1963,4,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl4.html#Massey63,https://doi.org/10.1305/ndjfl/1093957504 +Peter A. Fejer,Infima of recursively enumerable truth table degrees.,1988,29,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl29.html#FejerS88,https://doi.org/10.1305/ndjfl/1093637938 +A. J. Baker,Classical logical relations.,1977,18,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl18.html#Baker77,https://doi.org/10.1305/ndjfl/1093887833 +Peter Jablon,A generalised propositional calculus.,1975,16,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl16.html#Jablon75,https://doi.org/10.1305/ndjfl/1093891711 +John E. Cooley,Theories of types and ordered pairs.,1975,16,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl16.html#Cooley75,https://doi.org/10.1305/ndjfl/1093891807 +Judith L. Gersting,Infinite series of T-regressive isols.,1973,14,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl14.html#Gersting73,https://doi.org/10.1305/ndjfl/1093891104 +Richard Butrick,The numeral axioms.,1977,18,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl18.html#Butrick77,https://doi.org/10.1305/ndjfl/1093888022 +Akito Tsuboi,On Interpretability of Almost Linear Orderings.,1998,39,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl39.html#TsuboiW98,https://doi.org/10.1305/ndjfl/1039182249 +H. Paul Williams,A formalisation of the arithmetic of the ordinals less than Wχ9*.,1969,10,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl10.html#Williams69,https://doi.org/10.1305/ndjfl/1093893588 +Richard Guhl,A theorem on recursively enumerable vector spaces.,1975,16,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl16.html#Guhl75,https://doi.org/10.1305/ndjfl/1093891795 +Herbert E. Hendry,Another system of natural deduction.,1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#Hendry75,https://doi.org/10.1305/ndjfl/1093891884 +Jon Barwise,Information and circumstance.,1986,27,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl27.html#Barwise86,https://doi.org/10.1305/ndjfl/1093636678 +Milton Fisk,Language and the having of concepts. II.,1961,2,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl2.html#Fisk61a,https://doi.org/10.1305/ndjfl/1093956877 +Rolf Schock,A natural deduction system of indexical logic.,1980,21,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl21.html#Schock80a,https://doi.org/10.1305/ndjfl/1093883052 +Kim B. Bruce,Model constructions in stationary logic. II. Definable ultrapowers.,1986,27,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl27.html#Bruce86,https://doi.org/10.1305/ndjfl/1093636616 +Nuel Belnap,Every functionally complete m-valued logic has a Post-complete axiomatization.,1970,11,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl11.html#BelnapM70,https://doi.org/10.1305/ndjfl/1093893866 +Luis E. Sanchis,Hyperenumeration reducibility.,1978,19,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl19.html#Sanchis78,https://doi.org/10.1305/ndjfl/1093888400 +Robert Ackermann,Matrix satisfiability and axiomatization.,1971,12,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl12.html#Ackermann71,https://doi.org/10.1305/ndjfl/1093894294 +Adrian Larner,A matrix decision procedure for three modal logics.,1979,20,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl20.html#Larner79,https://doi.org/10.1305/ndjfl/1093882665 +Oleg V. Belegradek,Higman's Embedding Theorem in a General Setting and Its Application to Existentially Closed Algebras.,1996,37,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl37.html#Belegradek96,https://doi.org/10.1305/ndjfl/1040046145 +V. Frederick Rickey,The one variable implicational calculus.,1974,15,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl15.html#Rickey74,https://doi.org/10.1305/ndjfl/1093891410 +José Martínez-Fernández,Maximal Three-Valued Clones with the Gupta-Belnap Fixed-Point Property.,2007,48,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl48.html#Martinez-Fernandez07,https://doi.org/10.1305/ndjfl/1193667704 +Boleslaw Sobocinski,A note on the generalized continuum hypothesis. I.,1962,3,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl3.html#Sobocinski62f,https://doi.org/10.1305/ndjfl/1093957321 +M. J. Cresswell,KM and the finite model property.,1983,24,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl24.html#Cresswell83,https://doi.org/10.1305/ndjfl/1093870375 +Richard Milton Martin,Some thomistic properties of primordiality.,1977,18,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl18.html#Martin77a,https://doi.org/10.1305/ndjfl/1093888121 +James H. Schmerl,Recursive Models and the Divisibility Poset.,1998,39,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl39.html#Schmerl98,https://doi.org/10.1305/ndjfl/1039293026 +Hans Sluga,Frege against the Booleans.,1987,28,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl28.html#Sluga87,https://doi.org/10.1305/ndjfl/1093636848 +John Riser,A simplification procedure for alternational normal schemata.,1979,20,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl20.html#Riser79,https://doi.org/10.1305/ndjfl/1093882798 +Achilles Beros,Normal Numbers and Limit Computable Cantor Series.,2017,58,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl58.html#BerosB17,https://doi.org/10.1215/00294527-2017-0004 +Steven T. Kuhn,An axiomatization of predicate functor logic.,1983,24,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl24.html#Kuhn83,https://doi.org/10.1305/ndjfl/1093870313 +William H. Cornish,On Nachbin's characterization of a Boolean lattice.,1976,17,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl17.html#Cornish76,https://doi.org/10.1305/ndjfl/1093887437 +Richard Peters,Two remarks concerning Menger's and Schultz' postulates for the substitutive algebra of the 2-place functors in the 2-valued calculus of propositions.,1964,5,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl5.html#Peters64,https://doi.org/10.1305/ndjfl/1093957802 +Jürgen Schmidt,Algebraic studies of first-order enlargements.,1981,22,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl22.html#Schmidt81,https://doi.org/10.1305/ndjfl/1093883513 +Michael Kaminski,The Modal Logic of Cluster-Decomposable Kripke Interpretations.,2007,48,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl48.html#KaminskiT07,https://doi.org/10.1305/ndjfl/1193667708 +Alexander Bochman,Concerted Instant-Interval Temporal Semantics II: Temporal Valuations and Logics of Change.,1990,31,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl31.html#Bochman90a,https://doi.org/10.1305/ndjfl/1093635593 +Florencio G. Asenjo,A calculus of antinomies.,1966,7,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl7.html#Asenjo66,https://doi.org/10.1305/ndjfl/1093958482 +Franz Baader,Deciding Unifiability and Computing Local Unifiers in the Description Logic EL without Top Constructor.,2016,57,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl57.html#BaaderNBM16,https://doi.org/10.1215/00294527-3555507 +Joseph A. Novak,Some recent work on the assertoric syllogistic.,1980,21,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl21.html#Novak80,https://doi.org/10.1305/ndjfl/1093883042 +Kwame Gyekye,Aristotle on predication: an analysis of Anal. Post. 83a.,1979,20,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl20.html#Gyekye79,https://doi.org/10.1305/ndjfl/1093882416 +Peter Roeper,Indiscernability and Identiy in Probability Theory.,1991,32,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl32.html#RoeperL91,https://doi.org/10.1305/ndjfl/1093635668 +Marcel Crabbé,The 3-Stratifiable Theorems of NFU∞.,1999,40,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl40.html#Crabbe99,https://doi.org/10.1305/ndjfl/1038949534 +Charles F. Kielkopf,The specific reading of A-propositions in a defense of William of Sherwood.,1979,20,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl20.html#Kielkopf79,https://doi.org/10.1305/ndjfl/1093882794 +Thomas W. Satre,Natural deduction rules for modal logics.,1972,13,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl13.html#Satre72,https://doi.org/10.1305/ndjfl/1093890707 +James E. Baumgartner,Maximal Subsets of Infinite Symmetric Groups.,1993,34,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl34.html#BaumgartnerST93,https://doi.org/10.1305/ndjfl/1093634559 +Stephen L. Bloom,Extensions of Gödel's completeness theorem and the Löwenheim-Skolem theorem.,1973,14,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl14.html#Bloom73,https://doi.org/10.1305/ndjfl/1093891010 +Anjan Shukla,Decision procedures for Lewis system S1 and related modal systems.,1970,11,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl11.html#Shukla70,https://doi.org/10.1305/ndjfl/1093893934 +Charles Francis Quinn,An analysis of the concept of constructive categoricity.,1974,15,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl15.html#Quinn74,https://doi.org/10.1305/ndjfl/1093891488 +Robert Goldblatt,Solution to a completeness problem of Lemmon and Scott.,1975,16,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl16.html#Goldblatt75,https://doi.org/10.1305/ndjfl/1093891804 +John L. Hickman,Regressive order-types.,1977,18,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl18.html#Hickman77,https://doi.org/10.1305/ndjfl/1093887834 +Tomasz Kowalski,An Abelian Rule for BCI - and Variations.,2016,57,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl57.html#KowalskiH16,https://doi.org/10.1215/00294527-3679398 +Georg Kreisel,Church's thesis and the ideal of informal rigour.,1987,28,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl28.html#Kreisel87,https://doi.org/10.1305/ndjfl/1093637646 +Ivo Thomas,Finite limitations on Dummet's LC.,1962,3,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl3.html#Thomas62b,https://doi.org/10.1305/ndjfl/1093957235 +Charles E. Hughes,Combinatorial systems with axiom.,1973,14,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl14.html#HughesS73,https://doi.org/10.1305/ndjfl/1093890999 +Paul Weingartner,Modal logics with two kinds of necessity and possibility.,1968,9,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl9.html#Weingartner68,https://doi.org/10.1305/ndjfl/1093893411 +David Meredith 0002,Axiomatics for implication.,1979,20,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl20.html#000279,https://doi.org/10.1305/ndjfl/1093882405 +Sven Ove Hansson,The Difference Model of Voting.,1992,33,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl33.html#Hansson92,https://doi.org/10.1305/ndjfl/1093634490 +Zane Parks,The inadequacy of Hughes and Cresswell's semantics for the CI systems.,1974,15,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl15.html#ParksS74,https://doi.org/10.1305/ndjfl/1093891311 +Otto Bird,What Pierce means by leading principles.,1962,3,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl3.html#Bird62,https://doi.org/10.1305/ndjfl/1093957236 +Pieter A. M. Seuren,The Cognitive Ontogenesis of Predicate Logic.,2014,55,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl55.html#Seuren14,https://doi.org/10.1215/00294527-2798718 +Charles J. Kelly,The Logic of the Liar from the Standpoint of the Aristotelian Syllogistic.,1991,32,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl32.html#Kelly91,https://doi.org/10.1305/ndjfl/1093635672 +Simon Thomas Hewitt,The Logic of Finite Order.,2012,53,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl53.html#Hewitt12,https://doi.org/10.1215/00294527-1716820 +Ivo Thomas,One dimension in PS and PSI.,1976,17,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl17.html#Thomas76b,https://doi.org/10.1305/ndjfl/1093887634 +Luis E. Sanchis,Formally defined operations in Kripke models.,1973,14,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl14.html#Sanchis73,https://doi.org/10.1305/ndjfl/1093891101 +Deirdre La Porte,Bibliography of Ivo Thomas.,1977,18,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl18.html#Porte77,https://doi.org/10.1305/ndjfl/1093887922 +Biswambhar Pahi,Maximal full matrices.,1972,13,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl13.html#Pahi72,https://doi.org/10.1305/ndjfl/1093894639 +Alberto Peruzzi,The Theory of Descriptions Revisited.,1989,30,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl30.html#Peruzzi89,https://doi.org/10.1305/ndjfl/1093634997 +Boleslaw Sobocinski,Awkward axiom-systems.,1978,19,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl19.html#Sobocinski78,https://doi.org/10.1305/ndjfl/1093888329 +Peter Simons,Combinators and Categorial Grammar.,1989,30,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl30.html#Simons89,https://doi.org/10.1305/ndjfl/1093635081 +Robert Charles Koons,Book Review: Scott Soames. Understanding Truth.,2000,41,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl41.html#Koons00,https://doi.org/10.1305/ndjfl/1027953485 +Melven R. Krom,A linearly ordered topological space that is not normal.,1986,27,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl27.html#Krom86,https://doi.org/10.1305/ndjfl/1093636518 +Richard L. Call,Constructing sequent rules for generalized propositional logics.,1984,25,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl25.html#Call84,https://doi.org/10.1305/ndjfl/1093870576 +John Robert Baker,Some remarks on Quine's arguments against modal logic.,1978,19,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl19.html#Baker78a,https://doi.org/10.1305/ndjfl/1093888517 +R. A. Bull,An axiomatization of Prior's modal calculus Q.,1964,5,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl5.html#Bull64,https://doi.org/10.1305/ndjfl/1093957880 +Kenneth Loewen,A standardization theorem for strong reduction.,1968,9,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl9.html#Loewen68a,https://doi.org/10.1305/ndjfl/1093893462 +Roland Hinnion,Topological Models for Extensional Partial Set Theory.,2008,49,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl49.html#HinnionL08,https://doi.org/10.1215/00294527-2007-002 +Philip Hugly,Indenumerability and substitutional quantification.,1982,23,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl23.html#HuglyS82,https://doi.org/10.1305/ndjfl/1093870148 +Mitchell Ginsberg,The entailment-presupposition relationship.,1972,13,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl13.html#Ginsberg72,https://doi.org/10.1305/ndjfl/1093890714 +Paul Vincent Spade,John Buridan on the liar: a study and reconstruction.,1978,19,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl19.html#Spade78,https://doi.org/10.1305/ndjfl/1093888504 +Boleslaw Sobocinski,An abbreviation of Croisot's axiom-system for distributive lattices with I.,1972,13,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl13.html#Sobocinski72b,https://doi.org/10.1305/ndjfl/1093894638 +John L. Hickman,An independence result concerning infinite products of alephs.,1978,19,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl19.html#Hickman78a,https://doi.org/10.1305/ndjfl/1093888316 +Ann H. Ihrig,The Post-Lineal theorems for arbitrary recursively enumerable degrees of unsolvability.,1965,6,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl6.html#Ihrig65,https://doi.org/10.1305/ndjfl/1093958077 +Héctor-Neri Castañeda,Leibniz's syllogistico-propositional calculus.,1976,17,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl17.html#Castaneda76,https://doi.org/10.1305/ndjfl/1093887721 +Claudio Bernardi,A Topological Approach to Yablo's Paradox.,2009,50,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl50.html#Bernardi09,https://doi.org/10.1215/00294527-2009-014 +David Atkinson,Fractal Patterns in Reasoning.,2012,53,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl53.html#AtkinsonP12,https://doi.org/10.1215/00294527-1626500 +A. J. Baker,Syllogistic with complex terms.,1972,13,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl13.html#Baker72,https://doi.org/10.1305/ndjfl/1093894624 +Fred Wilson,The distribution of terms: a defense of the traditional doctrine.,1987,28,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl28.html#Wilson87,https://doi.org/10.1305/ndjfl/1093637565 +R. L. Goodstein,A new proof of completeness.,1972,13,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl13.html#Goodstein72,https://doi.org/10.1305/ndjfl/1093890723 +A. N. Prior,Propositional calculus in implication and non-equivalence.,1969,10,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl10.html#Prior69,https://doi.org/10.1305/ndjfl/1093893714 +William J. Thomas,Consistency of n-order logics.,1976,17,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl17.html#Thomas76a,https://doi.org/10.1305/ndjfl/1093887532 +Philip Hugly,Do we need models?,1987,28,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl28.html#HuglyS87,https://doi.org/10.1305/ndjfl/1093637562 +Eugenio Chinchilla,A Model of R23 inside a Subexponential Time Resource.,1998,39,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl39.html#Chinchilla98,https://doi.org/10.1305/ndjfl/1039182248 +Roy A. Sorensen,Are enthymemes arguments?,1988,29,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl29.html#Sorensen88,https://doi.org/10.1305/ndjfl/1093637779 +Hajnal Andréka,Representations for Small Relation Algebras.,1994,35,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl35.html#AndrekaM94,https://doi.org/10.1305/ndjfl/1040408612 +Tomasz F. Skura,Refutation Calculi for Certain Intermediate Propositional Logics.,1992,33,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl33.html#Skura92,https://doi.org/10.1305/ndjfl/1093634486 +Robert E. Clay,The number of moduli in n-ary relations.,1960,1,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl1.html#Clay60,https://doi.org/10.1305/ndjfl/1093956554 +Carl E. Bredlau,Regressive functions and combinatorial functions.,1967,8,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl8.html#Bredlau67,https://doi.org/10.1305/ndjfl/1094068843 +Teodor Stihi,Une généralisation du carré logique.,1973,14,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl14.html#Stihi73,https://doi.org/10.1305/ndjfl/1093890895 +Peter Schroeder-Heister,Ekman's Paradox.,2017,58,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl58.html#Schroeder-Heister17,https://doi.org/10.1215/00294527-2017-0017 +Philip Hugly,Reflections on an extensionality theorem.,1980,21,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl21.html#Hugly80,https://doi.org/10.1305/ndjfl/1093882938 +Brian Skyrms,Definitions of semantical reference and self-reference.,1976,17,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl17.html#Skyrms76,https://doi.org/10.1305/ndjfl/1093887434 +Martin M. Zuckerman,Sums of finitely many ordinals of various kinds.,1986,27,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl27.html#Zuckerman86,https://doi.org/10.1305/ndjfl/1093636771 +R. Michael Canjar,Cofinalities of Countable Ultraproducts: The Existence Theorem.,1989,30,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl30.html#Canjar89,https://doi.org/10.1305/ndjfl/1093635237 +Masasi Higasikawa,Partition Principles and Infinite Sums of Cardinal Numbers.,1995,36,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl36.html#Higasikawa95,https://doi.org/10.1305/ndjfl/1040149358 +Michael Detlefsen,Introduction to Special Issue on George S. Boolos.,1999,40,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl40.html#Detlefsen99,https://doi.org/10.1305/ndjfl/1039096301 +Philip L. Peterson,Higher quantity syllogisms.,1985,26,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl26.html#Peterson85,https://doi.org/10.1305/ndjfl/1093870928 +Ralph C. Applebee,Some results on generalized truth-tables.,1971,12,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl12.html#ApplebeeP71,https://doi.org/10.1305/ndjfl/1093894364 +James F. Zartman,Another way of diagramming switching circuits.,1979,20,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl20.html#Zartman79,https://doi.org/10.1305/ndjfl/1093882536 +Peter A. Facione,The entailment operator.,1977,18,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl18.html#Facione77,https://doi.org/10.1305/ndjfl/1093888014 +David Charles McCarty,Incompleteness in Intuitionistic Metamathematics.,1991,32,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl32.html#McCarty91,https://doi.org/10.1305/ndjfl/1093635833 +Albert A. Mullin,Some theorems on the structure of mutant sets and their applications to group and ring theories.,1962,3,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl3.html#Mullin62a,https://doi.org/10.1305/ndjfl/1093957232 +Edwin D. Mares,The Admissibility of * in R4.,1992,33,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl33.html#MaresM92,https://doi.org/10.1305/ndjfl/1093636096 +Stephen Cole Kleene,Reflections on Church's thesis.,1987,28,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl28.html#Kleene87,https://doi.org/10.1305/ndjfl/1093637645 +Luiz Monteiro,Les algèbres de Heyting et de Lukasiewicz trivalentes.,1970,11,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl11.html#Monteiro70,https://doi.org/10.1305/ndjfl/1093894076 +Bohuslav T. Peklo,Sind die deontischen Funktoren distributiv?,1974,15,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl15.html#Peklo74,https://doi.org/10.1305/ndjfl/1093891307 +Osamu Morikawa,Some Modal Logics Based on a Three-Valued Logic.,1989,30,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl30.html#Morikawa89,https://doi.org/10.1305/ndjfl/1093635000 +Thomas M. Hearne,Boolean subtractive algebras.,1974,15,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl15.html#HearneW74,https://doi.org/10.1305/ndjfl/1093891309 +John P. Burgess,The completeness of intuitionistic propositional calculus for its intended interpretation.,1981,22,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl22.html#Burgess81,https://doi.org/10.1305/ndjfl/1093883336 +Daniel Bonevac,Skolem fragments.,1984,25,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl25.html#Bonevac84,https://doi.org/10.1305/ndjfl/1093870629 +Lloyd Humberstone,Variations on a Theme of Curry.,2006,47,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl47.html#Humberstone06,https://doi.org/10.1305/ndjfl/1143468315 +Richard Kaye,The Theory of and#954*-like Models of Arithmetic.,1995,36,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl36.html#Kaye95,https://doi.org/10.1305/ndjfl/1040136915 +William C. Purdy,Surface reasoning.,1992,33,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl33.html#Purdy92,https://doi.org/10.1305/ndjfl/1093636008 +Norbert Brunner,Set-Mappings on Dedekind Sets.,1989,30,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl30.html#Brunner89,https://doi.org/10.1305/ndjfl/1093635083 +Hannes Leitgeb,On the Ramsey Test without Triviality.,2010,51,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl51.html#Leitgeb10,https://doi.org/10.1215/00294527-2010-003 +Melvin Fitting,9*-calculus based axiom systems for some propositional modal logics.,1972,13,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl13.html#Fitting72a,https://doi.org/10.1305/ndjfl/1093890626 +Ross T. Brady,Significance logics.,1976,17,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl17.html#Brady76,https://doi.org/10.1305/ndjfl/1093887521 +Richard Butrick,A deduction rule for VBTO( )ni=1.,1977,18,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl18.html#Butrick77a,https://doi.org/10.1305/ndjfl/1093888029 +Jeffry L. Hirst,Infinite Versions of Some Problems From Finite Complexity Theory.,1996,37,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl37.html#HirstL96,https://doi.org/10.1305/ndjfl/1040046141 +Barbara Jeffcott,Decomposable orthologics.,1975,16,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl16.html#Jeffcott75,https://doi.org/10.1305/ndjfl/1093891790 +Henry Towsner,A Simple Proof and Some Difficult Examples for Hindman's Theorem.,2012,53,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl53.html#Towsner12,https://doi.org/10.1215/00294527-1626518 +Alexei Y. Muravitsky,The Embedding Theorem: Its Further Developments and Consequences. Part 1.,2006,47,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl47.html#Muravitsky06,https://doi.org/10.1305/ndjfl/1168352665 +M. Bekkali,Pseudo Treealgebras.,2001,42,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl42.html#Bekkali01,https://doi.org/10.1305/ndjfl/1054837936 +Toshio Suzuki,Complexity of the r-query Tautologies in the Presence of a Generic Oracle.,2000,41,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl41.html#Suzuki00,https://doi.org/10.1305/ndjfl/1038234608 +David Asperó,Bounded Martin's Maximum with an Asterisk.,2014,55,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl55.html#AsperoS14,https://doi.org/10.1215/00294527-2688051 +Akito Tsuboi,Models Omitting Given Complete Types.,2008,49,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl49.html#Tsuboi08,https://doi.org/10.1215/00294527-2008-019 +Robert Brandom,Semantic paradox of material implication.,1981,22,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl22.html#Brandom81,https://doi.org/10.1305/ndjfl/1093883397 +Per Lindström,On certain lattices of degrees of interpretability.,1984,25,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl25.html#Lindstrom84,https://doi.org/10.1305/ndjfl/1093870573 +Tobias Chapman,Prior's criticism of the Barcan formula.,1975,16,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl16.html#Chapman75,https://doi.org/10.1305/ndjfl/1093891618 +Fabio Bellissima,Duality and Completeness for US-Logics.,1998,39,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl39.html#BellissimaC98,https://doi.org/10.1305/ndjfl/1039293065 +Stanley J. Krolikoski,Łukasiewicz's twin possibility functors.,1979,20,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl20.html#Krolikoski79,https://doi.org/10.1305/ndjfl/1093882553 +Albert M. Sweet,Intended model theory.,1979,20,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl20.html#Sweet79,https://doi.org/10.1305/ndjfl/1093882662 +Stephen G. Simpson,A Nonstandard Counterpart of WWKL.,2011,52,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl52.html#SimpsonY11,https://doi.org/10.1215/00294527-1435429 +Domenico Zambella,Algebraic Methods and Bounded Formulas.,1997,38,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl38.html#Zambella97,https://doi.org/10.1305/ndjfl/1039700695 +Boleslaw Sobocinski,Modal system S3 and the proper axioms of S4.02 and S4.04.,1973,14,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl14.html#Sobocinski73c,https://doi.org/10.1305/ndjfl/1093891013 +Giorgio Germano,An arithmetical reconstruction of the liar's antinomy using addition and multiplication.,1976,17,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl17.html#Germano76,https://doi.org/10.1305/ndjfl/1093887641 +Ermek S. Nurkhaidarov,Closed Normal Subgroups of the Automorphism Group of a Saturated Model of Peano Arithmetic.,2016,57,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl57.html#NurkhaidarovS16,https://doi.org/10.1215/00294527-3339587 +Robert E. Clay,A simple proof of functional completeness in many-valued logics based on Ł*ukasiewicz's C and N.,1962,3,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl3.html#Clay62,https://doi.org/10.1305/ndjfl/1093957156 +László Csirmaz,A completeness theorem for dynamic logic.,1985,26,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl26.html#Csirmaz85,https://doi.org/10.1305/ndjfl/1093870760 +Mihai Prunescu,An Undecidable Property of Recurrent Double Sequences.,2008,49,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl49.html#Prunescu08,https://doi.org/10.1215/00294527-2008-004 +Robert J. Cosgrove,A three-valued free logic for presuppositional languages.,1980,21,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl21.html#Cosgrove80,https://doi.org/10.1305/ndjfl/1093883179 +Dorella Bellè,Decidability and Completeness for Open Formulas of Membership Theories.,1995,36,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl36.html#BelleP95,https://doi.org/10.1305/ndjfl/1040248461 +Boleslaw Sobocinski,Additional note on lattice-theoretical form of Hauber's law.,1972,13,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl13.html#Sobocinski72,https://doi.org/10.1305/ndjfl/1093894629 +Kees Doets,Monadic and#928*11-Theories of and#928*11-Properties.,1989,30,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl30.html#Doets89,https://doi.org/10.1305/ndjfl/1093635080 +Carlo Toffalori,Stability for Pairs of Equivalence Relations.,1991,32,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl32.html#Toffalori91,https://doi.org/10.1305/ndjfl/1093635671 +Carl E. Bredlau,Admissible sets and recursive equivalence types.,1979,20,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl20.html#Bredlau79,https://doi.org/10.1305/ndjfl/1093882542 +Richard Dietz,On Generalizing Kolmogorov.,2010,51,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl51.html#Dietz10,https://doi.org/10.1215/00294527-2010-019 +Gerald J. Massey,Concerning an alleged Sheffer function.,1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#Massey75,https://doi.org/10.1305/ndjfl/1093891898 +Richard L. Poss,A note on a lemma of J. W. Addison.,1970,11,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl11.html#Poss70,https://doi.org/10.1305/ndjfl/1093894003 +Charles D. Parsons,A propositional calculus intermediate between the minimal calculus and the classical.,1966,7,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl7.html#Parsons66,https://doi.org/10.1305/ndjfl/1093958754 +Frank O. Wagner,More on R.,1992,33,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl33.html#Wagner92,https://doi.org/10.1305/ndjfl/1093636093 +Peter Forrest,The logic of free acts and the powers of God.,1986,27,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl27.html#Forrest86,https://doi.org/10.1305/ndjfl/1093636520 +Ken Akiba,Field on the Notion of Consistency.,1996,37,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl37.html#Akiba96,https://doi.org/10.1305/ndjfl/1040046146 +Emily Michael,A note on Peirce on Boole's algebra of logic.,1979,20,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl20.html#Michael79,https://doi.org/10.1305/ndjfl/1093882673 +Leon Harkleroad,Iterated images on manifolds.,1986,27,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl27.html#Harkleroad86,https://doi.org/10.1305/ndjfl/1093636526 +Leon Harkleroad,Manifolds allowing RET arithmetic.,1983,24,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl24.html#Harkleroad83,https://doi.org/10.1305/ndjfl/1093870450 +Storrs McCall,The strong future tense.,1979,20,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl20.html#McCall79,https://doi.org/10.1305/ndjfl/1093882655 +Czeslaw Lejewski,Studies in the axiomatic foundations of Boolean algebra. II.,1960,1,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl1.html#Lejewski60a,https://doi.org/10.1305/ndjfl/1093956550 +William Russell Belding,Incidence rings of pre-ordered sets.,1973,14,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl14.html#Belding73,https://doi.org/10.1305/ndjfl/1093891102 +Jacob Manuel Plotkin,The expected complexity of analytic tableaux analyses in propositional calculus.,1982,23,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl23.html#PlotkinR82,https://doi.org/10.1305/ndjfl/1093870153 +Nuel D. Belnap Jr.,A rule-completeness theorem.,1963,4,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl4.html#BelnapT63,https://doi.org/10.1305/ndjfl/1093957392 +Eduardo Mizraji,Modalities in Vector Logic.,1994,35,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl35.html#Mizraji94,https://doi.org/10.1305/ndjfl/1094061864 +Michael J. Duffy,Modal interpretations of three-valued logics. I.,1979,20,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl20.html#Duffy79,https://doi.org/10.1305/ndjfl/1093882675 +Christian Espíndola,Semantic Completeness of First-Order Theories in Constructive Reverse Mathematics.,2016,57,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl57.html#Espindola16,https://doi.org/10.1215/00294527-3470433 +Xuegang Wang,The minimal System L'0.,1992,33,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl33.html#Wang92,https://doi.org/10.1305/ndjfl/1093634489 +Thomas G. McLaughlin,Degrees of unsolvability and strong forms of and#923*R + and#923*R and#8840* and#923*R.,1977,18,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl18.html#McLaughlin77,https://doi.org/10.1305/ndjfl/1093888120 +David A. Vander Laan,The Ontology of Impossible Worlds.,1997,38,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl38.html#Laan97,https://doi.org/10.1305/ndjfl/1039540772 +Howard Pospesel,"Note on Carney's ""Introduction to symbolic logic"".",1972,13,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl13.html#PospeselR72,https://doi.org/10.1305/ndjfl/1093890635 +J. L. Mackie,Conditionally-restricted operations.,1961,2,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl2.html#Mackie61,https://doi.org/10.1305/ndjfl/1093956975 +Dorothy Bollman,On the recursive unsolvability of the provability of the deduction theorem in partial propositional calculi.,1972,13,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl13.html#BollmanT72,https://doi.org/10.1305/ndjfl/1093894634 +R. Hori,Extending Intuitionistic Linear Logic with Knotted Structural Rules.,1994,35,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl35.html#HoriOS94,https://doi.org/10.1305/ndjfl/1094061862 +Czeslaw Lejewski,A note concerning the notion of mereological class.,1978,19,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl19.html#Lejewski78,https://doi.org/10.1305/ndjfl/1093888318 +Storrs McCall,A simple decision procedure for one-variable implicational/negation formulae in intuitionist logic.,1962,3,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl3.html#McCall62,https://doi.org/10.1305/ndjfl/1093957158 +Hugues Leblanc,Truth-value semantics for a logic of existence.,1971,12,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl12.html#Leblanc71,https://doi.org/10.1305/ndjfl/1093894214 +Martin W. Bunder,"Some notes on: ""A deduction theorem for restricted generality"".",1976,17,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl17.html#Bunder76,https://doi.org/10.1305/ndjfl/1093887436 +Nino B. Cocchiarella,Nominalism and conceptualism as predicative second-order theories of predication.,1980,21,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl21.html#Cocchiarella80,https://doi.org/10.1305/ndjfl/1093883172 +Patrick Cégielski,The Elementary Theory of the Natural Lattice Is Finitely Axiomatizable.,1989,30,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl30.html#Cegielski89,https://doi.org/10.1305/ndjfl/1093635001 +M. Randall Holmes,"Subsystems of Quine's ""New Foundations"" with Predicativity Restrictions.",1999,40,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl40.html#Holmes99,https://doi.org/10.1305/ndjfl/1038949535 +Jeremy George Peterson,Shortest single axioms for the classical equivalential calculus.,1976,17,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl17.html#Peterson76,https://doi.org/10.1305/ndjfl/1093887534 +Lloyd Humberstone,The Logic of Non-contingency.,1995,36,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl36.html#Humberstone95,https://doi.org/10.1305/ndjfl/1040248455 +Hugues Leblanc,Probabilistic semantics for intuitionistic logic.,1983,24,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl24.html#LeblancM83,https://doi.org/10.1305/ndjfl/1093870307 +Michael Katz,Inexact geometry.,1980,21,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl21.html#Katz80,https://doi.org/10.1305/ndjfl/1093883176 +Robert Goldblatt,A new extension of S4.,1973,14,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl14.html#Goldblatt73a,https://doi.org/10.1305/ndjfl/1093891112 +Merlin Carl,Infinite Computations with Random Oracles.,2017,58,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl58.html#CarlS17,https://doi.org/10.1215/00294527-3832619 +Stewart Shapiro,Incomplete translations of complete logics.,1977,18,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl18.html#Shapiro77,https://doi.org/10.1305/ndjfl/1093887928 +R. A. Bull,A modal extension of intuitionist logic.,1965,6,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl6.html#Bull65,https://doi.org/10.1305/ndjfl/1093958154 +William C. Wilcox,On infinite matrices and the paradoxes of material implication.,1970,11,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl11.html#Wilcox70,https://doi.org/10.1305/ndjfl/1093893944 +Harry Gonshor,Effective density types.,1976,17,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl17.html#Gonshor76,https://doi.org/10.1305/ndjfl/1093887543 +Timothy J. Suredonk,A Lemma in the Logic of Action.,1990,31,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl31.html#Suredonk90,https://doi.org/10.1305/ndjfl/1093635416 +Joost J. Joosten,Propositional Proof Systems and Fast Consistency Provers.,2007,48,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl48.html#Joosten07,https://doi.org/10.1305/ndjfl/1187031410 +Juliusz Reichbach,On the connection of the first-order functional calculus with and#8501*0 propositional calculus.,1965,6,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl6.html#Reichbach65,https://doi.org/10.1305/ndjfl/1093958078 +Robert A. Herrmann,Point monads and P-closed spaces.,1979,20,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl20.html#Herrmann79,https://doi.org/10.1305/ndjfl/1093882547 +Tobias Chapman,Note on Rescher's formalization of Aristotelian indeterminism.,1972,13,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl13.html#Chapman72,https://doi.org/10.1305/ndjfl/1093890726 +Kosta Dosen,An intuitionistic Sheffer function.,1985,26,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl26.html#Dosen85,https://doi.org/10.1305/ndjfl/1093870939 +Rod Downey,Effective Packing Dimension and Traceability.,2010,51,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl51.html#DowneyN10,https://doi.org/10.1215/00294527-2010-017 +Marilyn Milberger,The minimal modal logic: a cautionary tale about primitives and definitions.,1978,19,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl19.html#Milberger78,https://doi.org/10.1305/ndjfl/1093888412 +Robert Goldblatt,A study of Z modal systems.,1974,15,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl15.html#Goldblatt74,https://doi.org/10.1305/ndjfl/1093891304 +Zbigniew Jordan,Logical determinism.,1963,4,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl4.html#Jordan63,https://doi.org/10.1305/ndjfl/1093957391 +James Palermo,Apodictic truth: Husserl's eidetic reduction versus induction.,1978,19,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl19.html#Palermo78,https://doi.org/10.1305/ndjfl/1093888208 +Boleslaw Sobocinski,"Erratum: ""Modal system S3 and the proper axioms of S4.02 and S4.04"".",1974,15,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl15.html#Sobocinski74c,http://projecteuclid.org/euclid.ndjfl/1093891504 +Samuel Alexander,The First-Order Syntax of Variadic Functions.,2013,54,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl54.html#Alexander13,https://doi.org/10.1215/00294527-1731380 +Michael C. Gemignani,A characterization of Sm by means of topological geometries.,1967,8,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl8.html#Gemignani67,https://doi.org/10.1305/ndjfl/1093956085 +Aris Noah,Predicate-functors and the limits of decidability in logic.,1980,21,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl21.html#Noah80,https://doi.org/10.1305/ndjfl/1093883255 +Rolf Schock,A complete system of indexical logic.,1980,21,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl21.html#Schock80,https://doi.org/10.1305/ndjfl/1093883048 +Takahiro Seki,Halldén Completeness for Relevant Modal Logics.,2015,56,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl56.html#Seki15,https://doi.org/10.1215/00294527-2864334 +Tomasz Kowalski,BCK is not Structurally Complete.,2014,55,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl55.html#Kowalski14,https://doi.org/10.1215/00294527-2420642 +John L. Hickman,Critical points of normal functions. II.,1978,19,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl19.html#Hickman78,https://doi.org/10.1305/ndjfl/1093888205 +Mario Gómez-Torrente,Tarski on Logical Consequence.,1996,37,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl37.html#Gomez-Torrente96,https://doi.org/10.1305/ndjfl/1040067321 +Sebastien Vasey,Indiscernible Extraction and Morley Sequences.,2017,58,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl58.html#Vasey17,https://doi.org/10.1215/00294527-3800865 +Mitsuru Yasuhara,Extensionality in Bernays set theory.,1984,25,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl25.html#Yasuhara84,https://doi.org/10.1305/ndjfl/1093870688 +Patrice Bailhache,Several possible systems of deontic weak and strong norms.,1980,21,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl21.html#Bailhache80,https://doi.org/10.1305/ndjfl/1093882941 +Jaakko Hintikka,Game-theoretical semantics: insights and prospects.,1982,23,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl23.html#Hintikka82,https://doi.org/10.1305/ndjfl/1093883627 +Morten Heine Sørensen,A Syntactic Embedding of Predicate Logic into Second-Order Propositional Logic.,2010,51,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl51.html#SorensenU10,https://doi.org/10.1215/00294527-2010-029 +Howard Burdick,On syntactical characterization of logical expressions.,1974,15,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl15.html#Burdick74,https://doi.org/10.1305/ndjfl/1093891414 +James W. Garson,Modularity and Relevant Logic.,1989,30,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl30.html#Garson89,https://doi.org/10.1305/ndjfl/1093635079 +Steven K. Thomason,A new representation of S5.,1973,14,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl14.html#Thomason73,https://doi.org/10.1305/ndjfl/1093890907 +Boleslaw Sobocinski,Solution to the problem concerning the Boolean bases for cylindric algebras.,1972,13,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl13.html#Sobocinski72g,https://doi.org/10.1305/ndjfl/1093890718 +Nick Bezhanishvili,Stable Formulas in Intuitionistic Logic.,2018,59,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl59.html#BezhanishviliJ18,https://doi.org/10.1215/00294527-2017-0030 +Daniel W. Cunningham,A Diamond Principle Consistent with AD.,2017,58,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl58.html#Cunningham17,https://doi.org/10.1215/00294527-2017-0008 +Harold T. Hodes,Why Ramify?,2015,56,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl56.html#Hodes15,http://projecteuclid.org/euclid.ndjfl/1429277357 +Chris Miller,Expansions of o-Minimal Structures by Iteration Sequences.,2006,47,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl47.html#MillerT06,https://doi.org/10.1305/ndjfl/1143468314 +Harold Goldberg,A strong completeness theorem for 3-valued logic.,1974,15,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl15.html#GoldbergLW74,https://doi.org/10.1305/ndjfl/1093891310 +Timothy G. McCarthy,Turing projectability.,1987,28,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl28.html#McCarthyS87,https://doi.org/10.1305/ndjfl/1093637647 +Edith Hemaspaandra,The Price of Universality.,1996,37,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl37.html#Hemaspaandra96,https://doi.org/10.1305/ndjfl/1040046086 +Ivo Thomas,Unusual feature of $S3^\ast$.,1973,14,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl14.html#Thomas73,https://doi.org/10.1305/ndjfl/1093890905 +Yale N. Patt,Independent necessary conditions for functional completeness in m-valued logic.,1977,18,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl18.html#Patt77,https://doi.org/10.1305/ndjfl/1093887939 +Athanassios Tzouvaras,Worlds of Homogeneous Artifacts.,1995,36,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl36.html#Tzouvaras95,https://doi.org/10.1305/ndjfl/1040149360 +Robert Goldblatt,"Erratum: ""Concerning the proper axiom for S4.04 and some related systems"".",1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#Goldblatt75a,http://projecteuclid.org/euclid.ndjfl/1093891912 +Stephen Pollard,Homeomorphism and the Equivalence of Logical Systems.,1998,39,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl39.html#Pollard98,https://doi.org/10.1305/ndjfl/1039182255 +Franco Parlamento,Truth-Value Semantics and Functional Extensions for Classical Logic of Partial Terms Based on Equality.,2014,55,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl55.html#Parlamento14,https://doi.org/10.1215/00294527-2688078 +Jennifer Brown,Cellularity of Pseudo-Tree Algebras.,2006,47,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl47.html#Brown06,https://doi.org/10.1305/ndjfl/1163775442 +Henry C. Byerly,New algorithms for the statement and class calculi.,1970,11,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl11.html#ByerlyM70,https://doi.org/10.1305/ndjfl/1093893941 +Anthony F. Peressini,Cumulative versus Noncumulative Ramified Types.,1997,38,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl38.html#Peressini97,https://doi.org/10.1305/ndjfl/1039700745 +Andrés R. Raggio,Direct consistency proof of Gentzen's system of natural deduction.,1964,5,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl5.html#Raggio64,https://doi.org/10.1305/ndjfl/1093957735 +Margarita Otero,The Amalgamation Property in Normal Open Induction.,1993,34,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl34.html#Otero93,https://doi.org/10.1305/ndjfl/1093634563 +Vladimir V. Rybakov,A Modal Analog for Glivenko's Theorem and its Applications.,1992,33,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl33.html#Rybakov92,https://doi.org/10.1305/ndjfl/1093636103 +Tapani Hyttinen,Lascar Types and Lascar Automorphisms in Abstract Elementary Classes.,2011,52,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl52.html#HyttinenK11,https://doi.org/10.1215/00294527-2010-035 +Setsuo Saito,Truth value assignment in predicate calculus of first order.,1963,4,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl4.html#Saito63,https://doi.org/10.1305/ndjfl/1093957579 +Michael C. Gemignani,Topological geometries and a new characterization of Rm.,1966,7,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl7.html#Gemignani66,https://doi.org/10.1305/ndjfl/1093958480 +Allen Hazen,Semantics for S4.2.,1972,13,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl13.html#Hazen72,https://doi.org/10.1305/ndjfl/1093890717 +Paul Vincent Spade,Ockham on self-reference.,1974,15,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl15.html#Spade74,https://doi.org/10.1305/ndjfl/1093891306 +Henryk Hiz,A completeness proof for C-calculus.,1973,14,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl14.html#Hiz73,https://doi.org/10.1305/ndjfl/1093890900 +Anjan Shukla,"Errata: ""Decision procedures for Lewis system S1 and related modal systems"".",1973,14,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl14.html#Shukla73,http://projecteuclid.org/euclid.ndjfl/1093891118 +Thomas E. Patton,"On begging the question ""Who is N?"".",1988,29,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl29.html#Patton88,https://doi.org/10.1305/ndjfl/1093638019 +J. Kent Minichiello,An extension of negationless logic.,1969,10,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl10.html#Minichiello69,https://doi.org/10.1305/ndjfl/1093893719 +Kenneth G. Lucey,The ancestral relation without classes.,1979,20,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl20.html#Lucey79,https://doi.org/10.1305/ndjfl/1093882533 +Mario Coppo,An extension of the basic functionality theory for the and#955*-calculus.,1980,21,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl21.html#CoppoD80,https://doi.org/10.1305/ndjfl/1093883253 +Chris Mortensen,Reply to Burgess and to Read.,1986,27,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl27.html#Mortensen86,https://doi.org/10.1305/ndjfl/1093636611 +Robert E. Clay,Some mereological models.,1974,15,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl15.html#Clay74,https://doi.org/10.1305/ndjfl/1093891205 +M. C. Bradley,"Errata: ""Copi's method of deduction again"".",1973,14,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl14.html#Bradley73,http://projecteuclid.org/euclid.ndjfl/1093891119 +Dag Westerståhl,Some results on quantifiers.,1984,25,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl25.html#Westerstahl84,https://doi.org/10.1305/ndjfl/1093870575 +Jill Humphries,Gödel's proof and the liar paradox.,1979,20,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl20.html#Humphries79,https://doi.org/10.1305/ndjfl/1093882658 +Nicholas J. Moutafakis,The extensional pragmatics of commands.,1971,12,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl12.html#Moutafakis71,https://doi.org/10.1305/ndjfl/1093894373 +Charles W. Werner,Deductive inferences from particular to general.,1974,15,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl15.html#Werner74,https://doi.org/10.1305/ndjfl/1093891317 +Peter Lavers,Relevance and disjunctive syllogism.,1988,29,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl29.html#Lavers88,https://doi.org/10.1305/ndjfl/1093637769 +Shirley Dowdy,A quaternary relation as the primitive notion in several geometries.,1965,6,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl6.html#Dowdy65,https://doi.org/10.1305/ndjfl/1093958336 +Fabrice Correia,Adequacy Results for Some Priorean Modal Propositional Logics.,1999,40,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl40.html#Correia99,https://doi.org/10.1305/ndjfl/1038949539 +John Trentman,Leśniewski's ontology and some medieval logicians.,1966,7,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl7.html#Trentman66,https://doi.org/10.1305/ndjfl/1093958756 +Piero Pagliani,Remarks on Special Lattices and Related Constructive Logics with Strong Negation.,1990,31,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl31.html#Pagliani90,https://doi.org/10.1305/ndjfl/1093635588 +Ambar Chowdhury,An Unclassifiable Unidimensional Theory without OTOP.,1997,38,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl38.html#ChowdhuryH97,https://doi.org/10.1305/ndjfl/1039700699 +V. Frederick Rickey,Creative definitions in propositional calculi.,1975,16,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl16.html#Rickey75,https://doi.org/10.1305/ndjfl/1093891710 +Robert E. Clay,Note on inductive finiteness in mereology.,1972,13,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl13.html#Clay72,https://doi.org/10.1305/ndjfl/1093894625 +Holger Sturm,Interpolation and Preservation in MLχ9*1.,1998,39,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl39.html#Sturm98,https://doi.org/10.1305/ndjfl/1039293062 +Robert E. Clay,A model for Leśniewski's mereology in functions.,1971,12,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl12.html#Clay71,https://doi.org/10.1305/ndjfl/1093894370 +István Németi,The class of neat-reducts of cylindric algebras is not a variety but is closed with respect to HP.,1983,24,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl24.html#Nemeti83,https://doi.org/10.1305/ndjfl/1093870384 +Janet Folina,Book Review: Michael Resnik. Mathematics as a Science of Patterns.,1999,40,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl40.html#Folina99,https://doi.org/10.1305/ndjfl/1022615622 +Timothy Williamson,Invertible definitions.,1987,28,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl28.html#Williamson87,https://doi.org/10.1305/ndjfl/1093636942 +Richard Pettigrew,On Interpretations of Bounded Arithmetic and Bounded Set Theory.,2009,50,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl50.html#Pettigrew09,https://doi.org/10.1215/00294527-2009-003 +Zuhair Al-Johar,The Axiom Scheme of Acyclic Comprehension.,2014,55,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl55.html#Al-JoharHB14,https://doi.org/10.1215/00294527-2377851 +George Englebretsen,Aristotle on the subject of predication.,1978,19,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl19.html#Englebretsen78,https://doi.org/10.1305/ndjfl/1093888508 +John Bacon,Kripke's deontic semantics again.,1973,14,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl14.html#Bacon73,https://doi.org/10.1305/ndjfl/1093891114 +Nicholas Rescher,An intuitive interpretation of systems of four-valued logic.,1965,6,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl6.html#Rescher65,https://doi.org/10.1305/ndjfl/1093958156 +James W. Garson,The completeness of an intensional logic: definite topological logic.,1973,14,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl14.html#Garson73,https://doi.org/10.1305/ndjfl/1093890891 +Aldo Bressan,New Semantics for the Extensional but Hyper-intensional Part Lα of the Modal Sense Language SLαν.,1991,32,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl32.html#Bressan91,https://doi.org/10.1305/ndjfl/1093635669 +Leon Horsten,Book Review: Stewart Shapiro. Vagueness in Context.,2009,50,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl50.html#Horsten09,https://doi.org/10.1215/00294527-2009-008 +Emily Michael,Some considerations in medieval tense logic.,1979,20,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl20.html#Michael79a,https://doi.org/10.1305/ndjfl/1093882803 +Erik Ellentuck,Degrees of isolic theories.,1973,14,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl14.html#Ellentuck73,https://doi.org/10.1305/ndjfl/1093890996 +Chris Mortensen,Every quotient algebra for C1 is trivial.,1980,21,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl21.html#Mortensen80,https://doi.org/10.1305/ndjfl/1093883254 +Mario Savio,AE (Aristotle-Euler) Diagrams: An Alternative Complete Method for the Categorical Syllogism.,1998,39,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl39.html#Savio98,https://doi.org/10.1305/ndjfl/1039118872 +Ruth Manor,Modal elaborations of propositional logics.,1972,13,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl13.html#ManorR72,https://doi.org/10.1305/ndjfl/1093890619 +Wlodzimierz Rabinowicz,Some remarks about the family K of modal systems.,1980,21,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl21.html#Rabinowicz80,https://doi.org/10.1305/ndjfl/1093883057 +Craig Smorynski,Cofinal extensions of nonstandard models of arithmetic.,1981,22,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl22.html#Smorynski81,https://doi.org/10.1305/ndjfl/1093883398 +Olga Ambas,Anshakov-Rychkov Algebras.,2001,42,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl42.html#Ambas01,https://doi.org/10.1305/ndjfl/1063372243 +Evgeni E. Zolin,Completeness and Definability in the Logic of Noncontingency.,1999,40,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl40.html#Zolin99,https://doi.org/10.1305/ndjfl/1012429717 +Michael Byrd,A formal interpretation of Ł*ukasiewicz' logics.,1979,20,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl20.html#Byrd79,https://doi.org/10.1305/ndjfl/1093882543 +M. Randall Holmes,The Usual Model Construction for NFU Preserves Information.,2012,53,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl53.html#Holmes12,https://doi.org/10.1215/00294527-1722764 +Boleslaw Sobocinski,Concerning the proper axioms of S4.02.,1974,15,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl15.html#Sobocinski74,https://doi.org/10.1305/ndjfl/1093891212 +Uwe Meixner,Ontologically Minimal Logical Semantics.,1995,36,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl36.html#Meixner95,https://doi.org/10.1305/ndjfl/1040248459 +Gunter Fuchs,Ehrenfeucht's Lemma in Set Theory.,2018,59,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl59.html#FuchsGH18,https://doi.org/10.1215/00294527-2018-0007 +Alan C. Wilde,Generalizations of the distributive and associative laws.,1974,15,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl15.html#Wilde74,https://doi.org/10.1305/ndjfl/1093891415 +Victor Pambuccian,Negation-Free and Contradiction-Free Proof of the Steiner-Lehmus Theorem.,2018,59,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl59.html#Pambuccian18,https://doi.org/10.1215/00294527-2017-0019 +John T. Kearns,Propositional Logic of Supposition and Assertion.,1997,38,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl38.html#Kearns97,https://doi.org/10.1305/ndjfl/1039700742 +Romane Clark,Predication and paronymous modifiers.,1986,27,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl27.html#Clark86,https://doi.org/10.1305/ndjfl/1093636681 +Yun Lu,Reducts of the Random Bipartite Graph.,2013,54,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl54.html#Lu13,https://doi.org/10.1215/00294527-1731371 +David Marker,Enumerations of Turing Ideals with Applications.,1990,31,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl31.html#Marker90,https://doi.org/10.1305/ndjfl/1093635587 +Florencio G. Asenjo,The arithmetic of the term-relation number theory.,1965,6,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl6.html#Asenjo65,https://doi.org/10.1305/ndjfl/1093958261 +Michael A. Gilbert,A heuristic procedure for natural deduction derivations using reductio ad absurdum.,1976,17,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl17.html#Gilbert76,https://doi.org/10.1305/ndjfl/1093887736 +Louis F. Goble,A system of modality.,1971,12,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl12.html#Goble71,https://doi.org/10.1305/ndjfl/1093894223 +Cyril F. A. Hoormann,"A further examination of Saccheri's use of the ""consequentia mirabilis"".",1976,17,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl17.html#Hoormann76,https://doi.org/10.1305/ndjfl/1093887527 +Janusz Ciuciura,A Quasi-Discursive System ND2+.,2006,47,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl47.html#Ciuciura06,https://doi.org/10.1305/ndjfl/1163775444 +Karel Lambert,Existential import revisited.,1963,4,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl4.html#Lambert63,https://doi.org/10.1305/ndjfl/1093957655 +Michael Rescorla,Church's Thesis and the Conceptual Analysis of Computability.,2007,48,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl48.html#Rescorla07,https://doi.org/10.1305/ndjfl/1179323267 +Guram Bezhanishvili,More on d-Logics of Subspaces of the Rational Numbers.,2012,53,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl53.html#BezhanishviliL12,https://doi.org/10.1215/00294527-1716748 +James Higginbotham,"Comments on J. Hintikka's paper: ""Game-theoretical semantics: insights and prospects"".",1982,23,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl23.html#Higginbotham82,https://doi.org/10.1305/ndjfl/1093870085 +Thomas G. McLaughlin,On an extension of a theorem of Friedberg.,1962,3,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl3.html#McLaughlin62,https://doi.org/10.1305/ndjfl/1093957320 +John P. Burgess,From preference to utility: a problem of descriptive set theory.,1985,26,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl26.html#Burgess85,https://doi.org/10.1305/ndjfl/1093870819 +Brian Loar,"Conceptual role and truth-conditions: comments on Harman's paper: ""Conceptual role semantics"".",1982,23,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl23.html#Loar82,https://doi.org/10.1305/ndjfl/1093870086 +Roman Kossak,On Cofinal Submodels and Elementary Interstices.,2012,53,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl53.html#KossakS12,https://doi.org/10.1215/00294527-1716802 +Ivo Thomas,Further extensions of $S3^\ast$.,1973,14,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl14.html#Thomas73a,https://doi.org/10.1305/ndjfl/1093891015 +Palle Yourgrau,Frege on truth and reference.,1987,28,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl28.html#Yourgrau87,https://doi.org/10.1305/ndjfl/1093636851 +Edward N. Zalta,A Classically-Based Theory of Impossible Worlds.,1997,38,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl38.html#Zalta97,https://doi.org/10.1305/ndjfl/1039540774 +Ivo Thomas,Nice implicational axioms.,1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#Thomas75b,https://doi.org/10.1305/ndjfl/1093891887 +Paul Shafer,Characterizing the Join-Irreducible Medvedev Degrees.,2011,52,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl52.html#Shafer11,https://doi.org/10.1215/00294527-2010-034 +Barry Coburn,Two comments on Lemmon's Beginning logic.,1977,18,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl18.html#CoburnM77,https://doi.org/10.1305/ndjfl/1093888128 +Robert C. Flagg,On the independence of the Bigos-Kalmár axioms for sentential calculus.,1978,19,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl19.html#Flagg78,https://doi.org/10.1305/ndjfl/1093888322 +Kent Bendall,Negation as a sign of negative judgment.,1979,20,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl20.html#Bendall79,https://doi.org/10.1305/ndjfl/1093882402 +Kieron O'Hara,Avoiding Omnidoxasticity in Logics of Belief: A Reply to MacPherson.,1995,36,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl36.html#OHaraRS95,https://doi.org/10.1305/ndjfl/1040149361 +Jonathan P. Seldin,Arithmetic as a study of formal systems.,1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#Seldin75,https://doi.org/10.1305/ndjfl/1093891880 +Ivo Thomas,The rule of excision in positive implication.,1962,3,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl3.html#Thomas62,https://doi.org/10.1305/ndjfl/1093957061 +S. Michael Webb,Nonstandard probability.,1975,16,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl16.html#Webb75,https://doi.org/10.1305/ndjfl/1093891802 +Erik C. W. Krabbe,The adequacy of material dialogue-games.,1978,19,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl19.html#Krabbe78,https://doi.org/10.1305/ndjfl/1093888394 +Jouko A. Väänänen,Internal Categoricity in Arithmetic and Set Theory.,2015,56,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl56.html#VaananenW15,https://doi.org/10.1215/00294527-2835038 +David Atkinson,Justification by Infinite Loops.,2010,51,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl51.html#AtkinsonP10,https://doi.org/10.1215/00294527-2010-025 +Paul S. Strauss,Number-theoretic set theories.,1985,26,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl26.html#Strauss85,https://doi.org/10.1305/ndjfl/1093870763 +Robert E. Clay,"Affine geometry with S. Dowdy's ""trapezoid"" as primitive.",1970,11,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl11.html#Clay70,https://doi.org/10.1305/ndjfl/1093893938 +Krister Segerberg,Modal logics with functional alternative relations.,1986,27,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl27.html#Segerberg86,https://doi.org/10.1305/ndjfl/1093636763 +Maarten de Rijke,Unary Interpretation Logic.,1992,33,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl33.html#Rijke92,https://doi.org/10.1305/ndjfl/1093636104 +Allen Hazen,The interpretability of Robinson arithmentic in the rafified second-order theory of dense linear order.,1992,33,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl33.html#Hazen92,https://doi.org/10.1305/ndjfl/1093636012 +Thomas S. Weston,Approximate truth and Ł*ukasiewicz logic.,1988,29,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl29.html#Weston88,https://doi.org/10.1305/ndjfl/1093637873 +Leonardo Cabrer,Unification on Subvarieties of Pseudocomplemented Distributive Lattices.,2016,57,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl57.html#Cabrer16,https://doi.org/10.1215/00294527-3659307 +John Rybak,Mechanizing logic. I. Map logic extended formally to relational arguments.,1984,25,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl25.html#RybakR84,https://doi.org/10.1305/ndjfl/1093870632 +Kenneth Weston,On predicate letter formulas which have no substitution instances provable in a first order language.,1965,6,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl6.html#Weston65,https://doi.org/10.1305/ndjfl/1093958337 +Paul J. Welsh,Primitivity in mereology. I.,1978,19,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl19.html#Welsh78,https://doi.org/10.1305/ndjfl/1093888206 +Koichiro Ikeda,A Note on Generic Projective Planes.,2002,43,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl43.html#Ikeda02,https://doi.org/10.1305/ndjfl/1074396310 +Craig Boutilier,On the Revision of Probabilistic Belief States.,1995,36,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl36.html#Boutilier95,https://doi.org/10.1305/ndjfl/1040308833 +Thomas E. Patton,Church's theorem on the decision problem.,1965,6,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl6.html#Patton65,https://doi.org/10.1305/ndjfl/1093958155 +Newton C. A. da Costa,α-models and the systems T and T*.,1974,15,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl15.html#Costa74,https://doi.org/10.1305/ndjfl/1093891405 +William G. Lycan,Eternal existence and necessary existence.,1976,17,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl17.html#Lycan76,https://doi.org/10.1305/ndjfl/1093887538 +Hugues Leblanc,"Erratum: ""Duals of Smullyan trees"".",1974,15,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl15.html#LeblancS74,http://projecteuclid.org/euclid.ndjfl/1093891503 +O. A. Robinson,A modal natural deduction system for S4.,1979,20,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl20.html#Robinson79,https://doi.org/10.1305/ndjfl/1093882670 +Judy Green,A note on P-admissible sets with urelements.,1975,16,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl16.html#Green75,https://doi.org/10.1305/ndjfl/1093891806 +Cyril F. A. Hoormann,On Hauber's statement of his theorem.,1971,12,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl12.html#Hoormann71,https://doi.org/10.1305/ndjfl/1093894155 +Michiro Kondo,Classification of Weak DeMorgan Algebras.,1995,36,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl36.html#Kondo95,https://doi.org/10.1305/ndjfl/1040149355 +Michael A. Tychonievich,The Set of Restricted Complex Exponents for Expansions of the Reals.,2012,53,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl53.html#Tychonievich12,https://doi.org/10.1215/00294527-1715671 +Henry A. Pogorzelski,Commutative recursive word arithmetic in the alphabet of prime numbers.,1964,5,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl5.html#Pogorzelski64,https://doi.org/10.1305/ndjfl/1093957733 +Robert E. Kirk,A result on propositional logics having the disjunction property.,1982,23,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl23.html#Kirk82,https://doi.org/10.1305/ndjfl/1093883567 +Boleslaw Sobocinski,On the single axioms of protothetic. III.,1961,2,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl2.html#Sobocinski61c,https://doi.org/10.1305/ndjfl/1093956873 +Arnold vander Nat,Beyond nonnormal possible worlds.,1979,20,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl20.html#Nat79,https://doi.org/10.1305/ndjfl/1093882672 +Martin M. Zuckerman,Locating vertices of trees.,1970,11,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl11.html#Zuckerman70,https://doi.org/10.1305/ndjfl/1093894009 +Thoralf Skolem,Proof of some theorems on recursively enumerable sets.,1962,3,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl3.html#Skolem62,https://doi.org/10.1305/ndjfl/1093957149 +Melvin Fitting,Tableau methods of proof for modal logics.,1972,13,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl13.html#Fitting72,https://doi.org/10.1305/ndjfl/1093894722 +Eugen Mihailescu,Les propriétés du foncteur Nicod par rapport à la réciprocité et conjonction. I.,1973,14,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl14.html#Mihailescu73,https://doi.org/10.1305/ndjfl/1093891105 +Patrizio Cintioli, Σ11-Completeness of a Fragment of the Theory of Trees With Subtree Relation.,1994,35,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl35.html#CintioliT94,https://doi.org/10.1305/ndjfl/1040511348 +Yoshihito Tanaka,Kripke Completeness of Infinitary Predicate Multimodal Logics.,1999,40,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl40.html#Tanaka99,https://doi.org/10.1305/ndjfl/1022615613 +Thoralf Skolem,Studies on the axiom of comprehension.,1963,4,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl4.html#Skolem63a,https://doi.org/10.1305/ndjfl/1093957573 +Martin M. Zuckerman,Formation sequences for propositional formulas.,1973,14,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl14.html#Zuckerman73,https://doi.org/10.1305/ndjfl/1093890822 +Salvatore Florio,Introduction.,2015,56,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl56.html#FlorioLWW15,https://doi.org/10.1215/00294527-2835020 +R. Beazer,Axioms for generalized Newman algebras.,1978,19,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl19.html#Beazer78,https://doi.org/10.1305/ndjfl/1093888518 +Ivo Thomas,Axiom sets equivalent to syllogism and Peirce.,1976,17,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl17.html#Thomas76,https://doi.org/10.1305/ndjfl/1093887528 +Robert P. McArthur,Three-valued free tense logic.,1977,18,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl18.html#McArthur77,https://doi.org/10.1305/ndjfl/1093887824 +Isabel Loureiro,Principal congruences of tetravalent modal algebras.,1985,26,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl26.html#Loureiro85,https://doi.org/10.1305/ndjfl/1093870762 +Alex Blum,The missing premiss.,1970,11,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl11.html#Blum70,https://doi.org/10.1305/ndjfl/1093893937 +Igor Urbas,Dual-Intuitionistic Logic.,1996,37,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl37.html#Urbas96,https://doi.org/10.1305/ndjfl/1039886520 +Nicholas Griffin,Supervaluations and Tarski.,1978,19,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl19.html#Griffin78,https://doi.org/10.1305/ndjfl/1093888325 +George Voutsadakis,Categorical Abstract Algebraic Logic: Truth-Equational ω0*-Institutions.,2015,56,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl56.html#Voutsadakis15,https://doi.org/10.1215/00294527-2864343 +J. G. Anderson,A note on finite intermediate logics.,1974,15,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl15.html#Anderson74,https://doi.org/10.1305/ndjfl/1093891207 +John N. Martin,An axiomatization of Herzberger's 2-dimensional presuppositional semantics.,1977,18,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl18.html#Martin77,https://doi.org/10.1305/ndjfl/1093888010 +Alan Weir,Classical harmony.,1986,27,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl27.html#Weir86,https://doi.org/10.1305/ndjfl/1093636761 +Greg Restall,A Note on Naive Set Theory in LP.,1992,33,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl33.html#Restall92,https://doi.org/10.1305/ndjfl/1093634406 +John Thomas Canty,A note on the axiomatization of Rubin's system (S).,1965,6,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl6.html#Canty65,https://doi.org/10.1305/ndjfl/1093958256 +Johannes Czermak,Matrix calculi SS1M and SS1I compared with axiomatic systems.,1974,15,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl15.html#Czermak74,https://doi.org/10.1305/ndjfl/1093891308 +Heike Mildenberger,On Milliken-Taylor Ultrafilters.,2011,52,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl52.html#Mildenberger11,https://doi.org/10.1215/00294527-1499345 +Piergiorgio Odifreddi,A note on Suzuki's chain of hyperdegrees.,1977,18,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl18.html#Odifreddi77,https://doi.org/10.1305/ndjfl/1093888123 +Johanna N. Y. Franklin,Van Lambalgen's Theorem and High Degrees.,2011,52,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl52.html#FranklinS11,https://doi.org/10.1215/00294527-1306181 +Lloyd Humberstone,The Modal Logic of Agreement and Noncontingency.,2002,43,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl43.html#Humberstone02,https://doi.org/10.1305/ndjfl/1071509431 +Lyman C. D. Kulathungam,Reductio-ad-absurdum: a family feud between Copi and Scherer.,1975,16,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl16.html#Kulathungam75,https://doi.org/10.1305/ndjfl/1093891705 +Michael Kaminski,Nonstandard connectives of intuitionistic propositional logic.,1988,29,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl29.html#Kaminski88,https://doi.org/10.1305/ndjfl/1093637931 +Grigori Mints,The Completeness of Provable Realizability.,1989,30,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl30.html#Mints89,https://doi.org/10.1305/ndjfl/1093635158 +John F. Phillips,A Note on the Modal and Temporal Logics for N-Dimensional Spacetime.,1998,39,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl39.html#Phillips98,https://doi.org/10.1305/ndjfl/1039118869 +Allen Hazen,The eliminability of the actuality operator in propositional modal logic.,1978,19,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl19.html#Hazen78,https://doi.org/10.1305/ndjfl/1093888509 +Frank Stephan 0001,Immunity and Hyperimmunity for Sets of Minimal Indices.,2008,49,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl49.html#StephanT08,https://doi.org/10.1215/00294527-2008-001 +Arend Rensink,Algebra and Theory of Order-Deterministic Pomsets.,1996,37,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl37.html#Rensink96,https://doi.org/10.1305/ndjfl/1040046090 +Daniel Dzierzgowski,Finite Sets and Natural Numbers in Intuitionistic TT.,1996,37,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl37.html#Dzierzgowski96,https://doi.org/10.1305/ndjfl/1040046143 +Juha Kontinen,A Remark on Negation in Dependence Logic.,2011,52,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl52.html#KontinenV11,https://doi.org/10.1215/00294527-2010-036 +Jean-Yves Béziau,Idempotent Full Paraconsistent Negations are not Algebraizable.,1998,39,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl39.html#Beziau98,https://doi.org/10.1305/ndjfl/1039293025 +Gian Aldo Antonelli,Numerical Abstraction via the Frege Quantifier.,2010,51,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl51.html#Antonelli10,https://doi.org/10.1215/00294527-2010-010 +O. Anshakov,On Finite-Valued Propositional Logical Calculi.,1995,36,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl36.html#AnshakovR95,https://doi.org/10.1305/ndjfl/1040136920 +Johanna N. Y. Franklin,Subclasses of the Weakly Random Reals.,2010,51,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl51.html#Franklin10,https://doi.org/10.1215/00294527-2010-026 +Jon C. Muzio,Partial universal decision elements.,1974,15,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl15.html#Muzio74,https://doi.org/10.1305/ndjfl/1093891204 +Tero Tulenheimo,Classical Negation and Game-Theoretical Semantics.,2014,55,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl55.html#Tulenheimo14,https://doi.org/10.1215/00294527-2798709 +Tapani Hyttinen,Types in Abstract Elementary Classes.,2004,45,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl45.html#Hyttinen04,https://doi.org/10.1305/ndjfl/1095386646 +Nicholas J. DeLillo,"Erratum: ""A formal characterization of ordinal numbers"".",1974,15,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl15.html#DeLillo74,http://projecteuclid.org/euclid.ndjfl/1093891502 +R. L. Goodstein,Polynomials with computable coefficients.,1970,11,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl11.html#Goodstein70,https://doi.org/10.1305/ndjfl/1093894074 +Constantin Milici,Note on the C-calculus.,1975,16,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl16.html#Milici75,https://doi.org/10.1305/ndjfl/1093891897 +Paul J. Campbell,"An answer to Armstrong's question about incompleteness in Copi: ""A question about incompleteness"".",1977,18,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl18.html#Campbell77,https://doi.org/10.1305/ndjfl/1093887931 +Owen Griffiths,Inferentialism and Quantification.,2017,58,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl58.html#Griffiths17,https://doi.org/10.1215/00294527-3768059 +Hubert H. Schneider,A deduction system for the full first-order predicate logic.,1976,17,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl17.html#Schneider76,https://doi.org/10.1305/ndjfl/1093887638 +E. William Chapin,Gentzen-like systems for partial propositional calculi. I.,1971,12,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl12.html#Chapin71,https://doi.org/10.1305/ndjfl/1093894153 +I. L. Humberstone,The modal logic of 'all and only'.,1987,28,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl28.html#Humberstone87,https://doi.org/10.1305/ndjfl/1093636937 +Boleslaw Sobocinski,Note about Ł*ukasiewicz's theorem concerning the system of axioms of the implicational propositional calculus.,1978,19,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl19.html#Sobocinski78a,https://doi.org/10.1305/ndjfl/1093888407 +Anjan Shukla,A note on independence.,1969,10,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl10.html#Shukla69,https://doi.org/10.1305/ndjfl/1093893789 +Gabriel Conant,Forking and Dividing in Henson Graphs.,2017,58,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl58.html#Conant17,https://doi.org/10.1215/00294527-2017-0016 +Stephen Pollard,Contractions of Closure Systems.,1994,35,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl35.html#PollardM94,https://doi.org/10.1305/ndjfl/1040609298 +Steve Firebaugh,A parity-based Frege proof for the symmetric pigeonhole principle.,1993,34,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl34.html#Firebaugh93,https://doi.org/10.1305/ndjfl/1093633908 +M. Richard Diaz,Deductive completeness and conditionalization in systems of weak implication.,1980,21,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl21.html#Diaz80,https://doi.org/10.1305/ndjfl/1093882944 +James M. Dickey,De Finetti Coherence and Logical Consistency.,2009,50,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl50.html#DickeyES09,https://doi.org/10.1215/00294527-2009-002 +I. L. Humberstone,Inaccessible worlds.,1983,24,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl24.html#Humberstone83,https://doi.org/10.1305/ndjfl/1093870378 +Hannes Leitgeb,Truth and the Liar in De Morgan-Valued Models.,1999,40,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl40.html#Leitgeb99,https://doi.org/10.1305/ndjfl/1012429715 +Henryk Kotlarski,Automorphisms of Countable Recursively Saturated Models of PA: a Survey.,1995,36,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl36.html#Kotlarski95,https://doi.org/10.1305/ndjfl/1040136912 +Karel L. de Bouvère,Remarks on classification of theories by their complete extensions.,1969,10,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl10.html#Bouvere69,https://doi.org/10.1305/ndjfl/1093893583 +Philip L. Peterson,Intermediate Quantifiers for Finch's Proportions.,1993,34,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl34.html#Peterson93,https://doi.org/10.1305/ndjfl/1093634570 +Ermek S. Nurkhaidarov,Automorphisms of Saturated and Boundedly Saturated Models of Arithmetic.,2011,52,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl52.html#NurkhaidarovS11,https://doi.org/10.1215/00294527-1435483 +Amar Hadzihasanovic,Nonstandard Functional Interpretations and Categorical Models.,2017,58,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl58.html#HadzihasanovicB17,https://doi.org/10.1215/00294527-3870348 +Jorgen B. Jensen,A note on three-valued modal logic.,1978,19,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl19.html#JensenLMS78,https://doi.org/10.1305/ndjfl/1093888207 +Robert L. Wilson,On some modal logics related to the Ł*-modal system.,1976,17,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl17.html#Wilson76,https://doi.org/10.1305/ndjfl/1093887523 +Athanassios Tzouvaras,Significant parts and identity of artifacts.,1993,34,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl34.html#Tzouvaras93,https://doi.org/10.1305/ndjfl/1093634732 +Bruce Lercher,Lambda-calculus terms that reduce to themselves.,1976,17,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl17.html#Lercher76,https://doi.org/10.1305/ndjfl/1093887539 +James B. Nation,Lattices of Theories in Languages without Equality.,2013,54,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl54.html#Nation13,https://doi.org/10.1215/00294527-1960470 +Will Boney,Computing the Number of Types of Infinite Length.,2017,58,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl58.html#Boney17,https://doi.org/10.1215/00294527-3768177 +C. A. Meredith,Terminal functors permissible with syllogistic.,1969,10,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl10.html#Meredith69a,https://doi.org/10.1305/ndjfl/1093893721 +Jan A. Bergstra,Degrees of partial functions.,1978,19,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl19.html#Bergstra78,https://doi.org/10.1305/ndjfl/1093888219 +E. H. Alves,A semantical analysis of the calculi Cn.,1977,18,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl18.html#AlvesC77,https://doi.org/10.1305/ndjfl/1093888132 +James McLelland,Epistemic logic with identifiers.,1976,17,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl17.html#McLelland76,https://doi.org/10.1305/ndjfl/1093887625 +Kanzo Hino,On Yablonskii theory concerning functional completeness of k-valued logic.,1977,18,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl18.html#Hino77,https://doi.org/10.1305/ndjfl/1093887929 +David Isles,What Evidence is There that 265536 is a Natural Number?,1992,33,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl33.html#Isles92,https://doi.org/10.1305/ndjfl/1093634481 +Philipp Gerhardy,The Role of Quantifier Alternations in Cut Elimination.,2005,46,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl46.html#Gerhardy05,https://doi.org/10.1305/ndjfl/1117755147 +Boleslaw Sobocinski,Concerning some extensions of S4.,1971,12,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl12.html#Sobocinski71d,https://doi.org/10.1305/ndjfl/1093894300 +John-Jules Ch. Meyer,A different approach to deontic logic: deontic logic viewed as a variant of dynamic logic.,1988,29,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl29.html#Meyer88,https://doi.org/10.1305/ndjfl/1093637776 +John Lake,Ordered pairs and cardinality in new foundations.,1974,15,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl15.html#Lake74,https://doi.org/10.1305/ndjfl/1093891411 +Fernando Ferreira,A Simple Proof of Parsons' Theorem.,2005,46,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl46.html#Ferreira05,https://doi.org/10.1305/ndjfl/1107220675 +John Cowles,Generalized Archimedean fields.,1983,24,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl24.html#CowlesL83,https://doi.org/10.1305/ndjfl/1093870226 +George Goe,Three axiom negation-alternation formulations of the truth-functional calculus.,1964,5,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl5.html#Goe64,https://doi.org/10.1305/ndjfl/1093957803 +M. D. Gladstone,The decidability of one-variable propositional calculi.,1979,20,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl20.html#Gladstone79,https://doi.org/10.1305/ndjfl/1093882551 +David F. Siemens,Fitch-style rules for many modal logics.,1977,18,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl18.html#Siemens77,https://doi.org/10.1305/ndjfl/1093888133 +Lisa Reidhaar-Olson,A New Proof of the Fixed-Point Theorem of Probability Logic.,1990,31,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl31.html#Reidhaar-Olson90,https://doi.org/10.1305/ndjfl/1093635331 +Waclaw Sierpinski,Sur un théorème équivalent à l'axiome du choix.,1965,6,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl6.html#Sierpinski65,https://doi.org/10.1305/ndjfl/1093958252 +John P. Burgess,A Remark on Henkin Sentences and Their Contraries.,2003,44,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl44.html#Burgess03,https://doi.org/10.1305/ndjfl/1091030856 +Paul R. Graves,Argument deletion without events.,1993,34,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl34.html#Graves93,https://doi.org/10.1305/ndjfl/1093633910 +John R. Chidgey,"Errata: ""A note on transitivity"".",1976,17,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl17.html#Chidgey76,http://projecteuclid.org/euclid.ndjfl/1093887738 +Alan H. Mekler,Stationary logic and its friends. II.,1986,27,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl27.html#MeklerS86,https://doi.org/10.1305/ndjfl/1093636521 +Thomas Forster,An Order-Theoretic Account of Some Set-Theoretic Paradoxes.,2011,52,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl52.html#ForsterL11,https://doi.org/10.1215/00294527-2010-033 +Boudewijn de Bruin,Common Knowledge of Rationality in Extensive Games.,2008,49,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl49.html#Bruin08,https://doi.org/10.1215/00294527-2008-011 +John P. Burgess,"Axioms for tense logic. I. ""Since"" and ""until"".",1982,23,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl23.html#Burgess82,https://doi.org/10.1305/ndjfl/1093870149 +Albert M. Sweet,Toward a pragmatical explication of epistemic modalities.,1963,4,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl4.html#Sweet63,https://doi.org/10.1305/ndjfl/1093957506 +Richard Bosley,Modus tollens.,1979,20,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl20.html#Bosley79,https://doi.org/10.1305/ndjfl/1093882408 +Boleslaw Sobocinski,A set-theoretical formula equivalent to the axiom of choice.,1962,3,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl3.html#Sobocinski62c,https://doi.org/10.1305/ndjfl/1093957234 +Stephen Binns,Compressibility and Kolmogorov Complexity.,2013,54,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl54.html#BinnsN13,https://doi.org/10.1215/00294527-1731416 +Robert L. Armstrong,A question about incompleteness.,1976,17,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl17.html#Armstrong76,https://doi.org/10.1305/ndjfl/1093887541 +José M. Méndez,Urquhart's C with Intuitionistic Negation: Dummett's LC without the Contraction Axiom.,1995,36,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl36.html#MendezS95,https://doi.org/10.1305/ndjfl/1040149356 +Scott K. Lehmann,A general propositional logic of conditionals.,1979,20,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl20.html#Lehmann79,https://doi.org/10.1305/ndjfl/1093882403 +Michael Hand,Other and else: restrictions on quantifier domains in game-theoretical semantics.,1987,28,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl28.html#Hand87,https://doi.org/10.1305/ndjfl/1093637563 +Thoralf Skolem,"Addendum to my article: ""Proof of some theorems on recursively enumerable sets"".",1963,4,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl4.html#Skolem63,https://doi.org/10.1305/ndjfl/1093957393 +Crispin Wright,Neo-Fregean Foundations for Real Analysis: Some Reflections on Frege's Constraint.,2000,41,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl41.html#Wright00,https://doi.org/10.1305/ndjfl/1038336879 +Albert Visser,Growing Commas. A Study of Sequentiality and Concatenation.,2009,50,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl50.html#Visser09,https://doi.org/10.1215/00294527-2008-028 +Toshiyasu Arai,Derivability Conditions on Rosser's Provability Predicates.,1990,31,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl31.html#Arai90,https://doi.org/10.1305/ndjfl/1093635585 +David W. Bennett,Junctions.,1980,21,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl21.html#Bennett80,https://doi.org/10.1305/ndjfl/1093882943 +Bertram C. Bruce,A logic for unknown outcomes.,1976,17,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl17.html#Bruce76,https://doi.org/10.1305/ndjfl/1093887726 +Martin W. Bunder,On the equivalence of systems of rules and systems of axioms in illative combinatory logic.,1979,20,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl20.html#Bunder79,https://doi.org/10.1305/ndjfl/1093882666 +Krister Segerberg,Irrevocable Belief Revision in Dynamic Doxastic Logic.,1998,39,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl39.html#Segerberg98,https://doi.org/10.1305/ndjfl/1039182247 +Daniel H. Cohen,A new axiomatization of Belnap's conditional assertion.,1986,27,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl27.html#Cohen86,https://doi.org/10.1305/ndjfl/1093636531 +Robert Warren Button,A note on the Q-topology.,1978,19,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl19.html#Button78,https://doi.org/10.1305/ndjfl/1093888519 +John L. Hickman,Semi-monotone series of ordinals.,1979,20,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl20.html#Hickman79,https://doi.org/10.1305/ndjfl/1093882417 +George Goe,A reconstruction of formal logic.,1966,7,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl7.html#Goe66a,https://doi.org/10.1305/ndjfl/1093958556 +Florencio G. Asenjo,Relations irreducible to classes.,1963,4,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl4.html#Asenjo63,https://doi.org/10.1305/ndjfl/1093957576 +Andrea Cantini,Levels of Truth.,1995,36,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl36.html#Cantini95,https://doi.org/10.1305/ndjfl/1040248454 +John R. Gregg,Axiomatic quasi-natural deduction.,1970,11,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl11.html#Gregg70,https://doi.org/10.1305/ndjfl/1093893940 +Nocholas Denyer,Pure Second-Order Logic.,1992,33,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl33.html#Denyer92,https://doi.org/10.1305/ndjfl/1093636099 +Thomas H. Payne,Concrete computability.,1975,16,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl16.html#Payne75,https://doi.org/10.1305/ndjfl/1093891704 +K. K. Hickin,A patching lemma.,1976,17,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl17.html#HickinP76,https://doi.org/10.1305/ndjfl/1093887438 +Renato A. Lewin,C1 Is Not Algebraizable.,1991,32,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl32.html#LewinMS91,https://doi.org/10.1305/ndjfl/1093635932 +Theodore Hailperin,Probability logic.,1984,25,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl25.html#Hailperin84,https://doi.org/10.1305/ndjfl/1093870625 +David F. Austin,Plantinga's theory of proper names.,1983,24,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl24.html#Austin83,https://doi.org/10.1305/ndjfl/1093870225 +Frans Voorbraak,A Simplification of the Completeness Proofs for Guaspari and Solovay's R.,1990,31,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl31.html#Voorbraak90,https://doi.org/10.1305/ndjfl/1093635332 +Edward A. Hacker,Pure numerical Boolean syllogisms.,1967,8,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl8.html#HackerP67,https://doi.org/10.1305/ndjfl/1094068846 +Steven J. Wagner,The rationalist conception of logic.,1987,28,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl28.html#Wagner87,https://doi.org/10.1305/ndjfl/1093636843 +Boleslaw Sobocinski,A contribution to the axiomatization of Lewis' system S5.,1962,3,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl3.html#Sobocinski62,https://doi.org/10.1305/ndjfl/1093957059 +Thomas A. Sudkamp,A proof of Sobociński's conjecture concerning a certain set of lattice-theoretical formulas.,1976,17,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl17.html#Sudkamp76,https://doi.org/10.1305/ndjfl/1093887731 +Howard C. Wasserman,A note on evaluation mappings.,1976,17,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl17.html#Wasserman76a,https://doi.org/10.1305/ndjfl/1093887730 +Mladen Vukovic,The Principles of Interpretability.,1999,40,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl40.html#Vukovic99,https://doi.org/10.1305/ndjfl/1038949538 +Giovanni Boniolo,Objects: A Study in Kantian Formal Epistemology.,2012,53,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl53.html#BonioloV12,https://doi.org/10.1215/00294527-1722701 +Joeri Engelfriet,Minimal Temporal Epistemic Logic.,1996,37,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl37.html#Engelfriet96,https://doi.org/10.1305/ndjfl/1040046088 +John H. Harris,Ordinal theory in a conservative extension of predicate calculus.,1971,12,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl12.html#Harris71,https://doi.org/10.1305/ndjfl/1093894362 +Ehud Hrushovski,A Note on Generically Stable Measures and fsg Groups.,2012,53,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl53.html#HrushovskiPS12,https://doi.org/10.1215/00294527-1814705 +Jeremy George Peterson,An automatic theorem prover for substitution and detachment systems.,1978,19,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl19.html#Peterson78,https://doi.org/10.1305/ndjfl/1093888213 +Thomas H. Payne,Computability on finite linear configurations.,1975,16,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl16.html#Payne75a,https://doi.org/10.1305/ndjfl/1093891794 +Ben Ellison,Quantifier Elimination for a Class of Intuitionistic Theories.,2008,49,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl49.html#EllisonFMR08,https://doi.org/10.1215/00294527-2008-012 +Luisa Iturrioz,Les algèbres de Heyting-Brouwer et de Ł*ukasiewicz trivalentes.,1976,17,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl17.html#Iturrioz76,https://doi.org/10.1305/ndjfl/1093887429 +Kosta Dosen,A note on the law of identity and the converse Parry property.,1978,19,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl19.html#Dosen78,https://doi.org/10.1305/ndjfl/1093888223 +Tin Lok Wong,Constant Regions in Models of Arithmetic.,2015,56,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl56.html#Wong15,https://doi.org/10.1215/00294527-3153615 +Boleslaw Sobocinski,An axiom-system for {K*N}-propositional calculus related to Simons' axiomatization of S3.,1962,3,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl3.html#Sobocinski62e,https://doi.org/10.1305/ndjfl/1093957242 +Trevor Evans,An unsolvable problem concerning identities.,1969,10,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl10.html#Evans69,https://doi.org/10.1305/ndjfl/1093893791 +Moti Gitik,Around Silver's Theorem.,2005,46,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl46.html#Gitik05,https://doi.org/10.1305/ndjfl/1125409330 +M. C. Bradley,Copi's method of deduction again.,1971,12,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl12.html#Bradley71,https://doi.org/10.1305/ndjfl/1093894367 +James W. Garson,The substitution interpretation and the expressive power of intensional logics.,1979,20,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl20.html#Garson79,https://doi.org/10.1305/ndjfl/1093882807 +Biswambhar Pahi,Necessity and some non-modal propositional calculi.,1973,14,Notre Dame Journal of Formal Logic,3,db/journals/ndjfl/ndjfl14.html#Pahi73,https://doi.org/10.1305/ndjfl/1093891008 +Earline Jennifer Ashworth,Andreas Kesler and the later theory of consequence.,1973,14,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl14.html#Ashworth73,https://doi.org/10.1305/ndjfl/1093890894 +Audoënus Le Blanc,Axioms for mereology.,1985,26,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl26.html#Blanc85,https://doi.org/10.1305/ndjfl/1093870934 +Andrea Sorbi,Generalizations of the Weak Law of the Excluded Middle.,2015,56,Notre Dame Journal of Formal Logic,2,db/journals/ndjfl/ndjfl56.html#SorbiT15,https://doi.org/10.1215/00294527-2864325 +Robert K. Meyer,On relevantly derivable disjunctions.,1972,13,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl13.html#Meyer72,https://doi.org/10.1305/ndjfl/1093890708 +Igor Urbas,Paraconsistency and the andℂ*-Systems of da Costa.,1989,30,Notre Dame Journal of Formal Logic,4,db/journals/ndjfl/ndjfl30.html#Urbas89,https://doi.org/10.1305/ndjfl/1093635241 +Frederick Michael,Peirce on the nature of logic.,1979,20,Notre Dame Journal of Formal Logic,1,db/journals/ndjfl/ndjfl20.html#MichaelM79,https://doi.org/10.1305/ndjfl/1093882404 +Gertjan van Noord,Finite State Transducers with Predicates and Identities.,2001,4,Grammars,3,db/journals/grammars/grammars4.html#NoordG01,https://doi.org/10.1023/A:1012291501330 +Liviu Petrisor Dinu,An Approach to Syllables via some Extensions of Marcus Contextual Grammars.,2003,6,Grammars,1,db/journals/grammars/grammars6.html#Dinu03,https://doi.org/10.1023/A:1024089129146 +Renate Klempien-Hinrichs,The Generative Power of Context-free Node Rewriting in Hypergraphs.,1999,2,Grammars,3,db/journals/grammars/grammars2.html#Klempien-Hinrichs99,https://doi.org/10.1023/A:1009962417549 +Pieter W. Adriaans,Introduction to the Special Issue on Grammar Induction.,2004,7,Grammars,,db/journals/grammars/grammars7.html#AdriaansFHZ04,http://grammars.grlmc.com/special1.asp +Christopher Culy,Statistical Distribution and the Grammatical/Ungrammatical Distinction.,1998,1,Grammars,1,db/journals/grammars/grammars1.html#Culy98,https://doi.org/10.1023/A:1009926918246 +Joachim Lambek,Type Grammars as Pregroups.,2001,4,Grammars,1,db/journals/grammars/grammars4.html#Lambek01,https://doi.org/10.1023/A:1011444711686 +Artiom Alhazov,Polarizationless P Systems with Active Membranes.,2004,7,Grammars,,db/journals/grammars/grammars7.html#AlhazovP04,http://grammars.grlmc.com/1stschool_artiom.asp +Jose F. Quesada,Lexical Object Theory: Specification Level.,1998,1,Grammars,1,db/journals/grammars/grammars1.html#Quesada98,https://doi.org/10.1023/A:1009978900499 +Paul John King,The Automatic Deduction of Classificatory Systems from Linguistic Theories.,1998,1,Grammars,2,db/journals/grammars/grammars1.html#KingS98,https://doi.org/10.1023/A:1009909418521 +Radu Gramatovici,Shuffle-Based Multilanguages.,1999,2,Grammars,3,db/journals/grammars/grammars2.html#Gramatovici99,https://doi.org/10.1023/A:1009974704345 +Madhu Mutyam,A Note on Hybrid P Systems.,2002,5,Grammars,3,db/journals/grammars/grammars5.html#MadhuK02,https://doi.org/10.1023/A:1022172312591 +Joan Busquets,The Polarity Parameter for Ellipsis Coherence.,1999,2,Grammars,2,db/journals/grammars/grammars2.html#Busquets99,https://doi.org/10.1023/A:1009915125562 +Paul Kay,An Informal Sketch of a Formal Architecture for Construction Grammar.,2002,5,Grammars,1,db/journals/grammars/grammars5.html#Kay02,https://doi.org/10.1023/A:1014293330198 +Manfred Kudlek,Multiple Pattern Interpretations.,2002,5,Grammars,3,db/journals/grammars/grammars5.html#KudlekMM02,https://doi.org/10.1023/A:1022175314408 +Carlos Martín-Vide,Structured Contextual Grammars.,1998,1,Grammars,1,db/journals/grammars/grammars1.html#Martin-VideP98,https://doi.org/10.1023/A:1009978902317 +Georgios Petasis,e-GRIDS: Computationally Efficient Gramatical Inference from Positive Examples.,2004,7,Grammars,,db/journals/grammars/grammars7.html#PetasisPKHS04,http://grammars.grlmc.com/special4.asp +Gregory M. Kobele,Formalizing Mirror Theory.,2002,5,Grammars,3,db/journals/grammars/grammars5.html#Kobele02,https://doi.org/10.1023/A:1022104104992 +Pedro García,Learning k-Testable and k-Piecewise Testable Languages from Positive Data.,2004,7,Grammars,,db/journals/grammars/grammars7.html#GarciaR04,http://grammars.grlmc.com/special6.asp +Vladimir A. Zakharov,On the Decidability of the Equivalence Problem for Orthogonal Sequential Programs.,1999,2,Grammars,3,db/journals/grammars/grammars2.html#Zakharov99,https://doi.org/10.1023/A:1009954232570 +Michal Zemlicka,Run-time Extensible Deterministic Top-Down Parsing.,1999,2,Grammars,3,db/journals/grammars/grammars2.html#ZemlickaK99,https://doi.org/10.1023/A:1009914518458 +Mihai Ionescu,P Systems with Symport/Antiport Rules: The Traces of Objects.,2002,5,Grammars,2,db/journals/grammars/grammars5.html#IonescuMP02,https://doi.org/10.1023/A:1016372801811 +Michael Böttner,Peirce Grammar.,2001,4,Grammars,1,db/journals/grammars/grammars4.html#Bottner01,https://doi.org/10.1023/A:1011403527615 +José M. Sempere,A Note on the Equivalence and Complexity of Linear Grammars.,2003,6,Grammars,2,db/journals/grammars/grammars6.html#Sempere03,https://doi.org/10.1023/A:1026142613465 +Victor Mitrana,Patterns and Languages: An Overview.,1999,2,Grammars,2,db/journals/grammars/grammars2.html#Mitrana99,https://doi.org/10.1023/A:1009956010735 +Christian Wartena,On the Concatenation of One-Turn Pushdowns.,1999,2,Grammars,3,db/journals/grammars/grammars2.html#Wartena99,https://doi.org/10.1023/A:1009924903938 +Marc Bezem,Black Box and White Box Identification of Formal Languages Using Test Sets.,2004,7,Grammars,,db/journals/grammars/grammars7.html#BezemSL04,http://grammars.grlmc.com/special5.asp +Andrei Popescu 0001,Languages Generated Using an Abstract Catenation.,2004,7,Grammars,,db/journals/grammars/grammars7.html#Popescu04,http://grammars.grlmc.com/paper_popescu.asp +Tore Langholm,A Descriptive Characterisation of Even Linear Languages.,2003,6,Grammars,3,db/journals/grammars/grammars6.html#LangholmB03,https://doi.org/10.1023/B:GRAM.0000016586.10841.cd +Judit Csima,On Hybrid Eco-rewriting Systems.,1999,1,Grammars,3,db/journals/grammars/grammars1.html#Csima99,https://doi.org/10.1023/A:1009947632572 +Tore Langholm,A Descriptive Characterisation of Indexed Grammars.,2001,4,Grammars,3,db/journals/grammars/grammars4.html#Langholm01,https://doi.org/10.1023/A:1012228321223 +Claudia Casadio,Non-Commutative Linear Logic in Linguistics.,2001,4,Grammars,3,db/journals/grammars/grammars4.html#Casadio01,https://doi.org/10.1023/A:1012429728354 +Gennaro Costagliola,Using Linear Positional Grammars for the LR Parsing of 2-D Symbolic Languages.,1999,2,Grammars,1,db/journals/grammars/grammars2.html#CostagliolaC99,https://doi.org/10.1023/A:1006926614934 +Petra Dünges,Eventualities in Time.,2000,3,Grammars,1,db/journals/grammars/grammars3.html#Dunges00,https://doi.org/10.1023/A:1009962908164 +Frantisek Mráz,On Special Forms of Restarting Automata.,1999,2,Grammars,3,db/journals/grammars/grammars2.html#MrazPP99,https://doi.org/10.1023/A:1009918602528 +Gennaro Costagliola,Using Alternating Words to Describe Symbolic Pictures.,2004,7,Grammars,,db/journals/grammars/grammars7.html#CostagliolaFFG04,http://grammars.grlmc.com/paper_costagl.asp +Henning Fernau,Regulated Grammars under Leftmost Derivation.,2000,3,Grammars,1,db/journals/grammars/grammars3.html#Fernau00,https://doi.org/10.1023/A:1009954606346 +Khalil Sima'an,Computational Complexity of Probabilistic Disambiguation.,2002,5,Grammars,2,db/journals/grammars/grammars5.html#Simaan02,https://doi.org/10.1023/A:1016340700671 +Alexander Okhotin,LR Parsing for Conjunctive Grammars.,2002,5,Grammars,2,db/journals/grammars/grammars5.html#Okhotin02a,https://doi.org/10.1023/A:1016329527130 +Petr Sosík,Conditional Tabled Eco-Grammar Systems: the Scattered Contexts.,1999,2,Grammars,3,db/journals/grammars/grammars2.html#Sosik99a,https://doi.org/10.1023/A:1009958300711 +Petra Dünges,Eventualities in Time: The localization of eventualities in the Platonist and the Reductionist picture of time.,2001,4,Grammars,1,db/journals/grammars/grammars4.html#Dunges01,https://doi.org/10.1023/A:1011432030488 +Marcin Skowron,Interactive Graph Grammar.,2003,6,Grammars,3,db/journals/grammars/grammars6.html#Skowron03,https://doi.org/10.1023/B:GRAM.0000016638.15089.91 +Pieter W. Adriaans,Computational Grammar Induction for Linguists.,2004,7,Grammars,,db/journals/grammars/grammars7.html#AdriaansZ04,http://grammars.grlmc.com/special3.asp +Alexander Okhotin,Top-Down Parsing of Conjunctive Languages.,2002,5,Grammars,1,db/journals/grammars/grammars5.html#Okhotin02,https://doi.org/10.1023/A:1014219530875 +Erzsébet Csuhaj-Varjú,Parallel Communicating Grammar Systems with Incomplete Information Communication.,2002,5,Grammars,3,db/journals/grammars/grammars5.html#Csuhaj-VarjuV02,https://doi.org/10.1023/A:1022122330042 +Adrian-Horia Dediu,Derived Trees Evolution for Tree Adjoining Grammars Parsing.,2004,7,Grammars,,db/journals/grammars/grammars7.html#DediuM04,http://grammars.grlmc.com/1stschool_adrian.asp +György Vaszil,Communication in Parallel Communicating Lindenmayer Systems.,1999,1,Grammars,3,db/journals/grammars/grammars1.html#Vaszil99,https://doi.org/10.1023/A:1009999616642 +Petr Sosík,On the Hierarchy of Extended Conditional Tabled Eco-Grammar Systems.,1999,1,Grammars,3,db/journals/grammars/grammars1.html#Sosik99,https://doi.org/10.1023/A:1009995515733 +Carlos Martín-Vide,New Topics in Colonies Theory.,1999,1,Grammars,3,db/journals/grammars/grammars1.html#Martin-VideP99,https://doi.org/10.1023/A:1009943531663 +Relja Vulanovic,Grammar Efficiency and Complexity.,2003,6,Grammars,2,db/journals/grammars/grammars6.html#Vulanovic03,https://doi.org/10.1023/A:1026189411761 +Martin Kappes,On the Generative Capacity of Bracketed Contextual Grammars.,1998,1,Grammars,2,db/journals/grammars/grammars1.html#Kappes98,https://doi.org/10.1023/A:1009987701682 +Rudolf Freund,Generalized P-Systems with Splicing and Cutting/Recombination.,1999,2,Grammars,3,db/journals/grammars/grammars2.html#Freund99,https://doi.org/10.1023/A:1009970603437 +Henning Fernau,Parallel Grammars: A Phenomenology.,2003,6,Grammars,1,db/journals/grammars/grammars6.html#Fernau03,https://doi.org/10.1023/A:1024087118762 +Petr Sosík,The Power of Catalysts and Priorities in Membrane Systems.,2003,6,Grammars,1,db/journals/grammars/grammars6.html#Sosik03,https://doi.org/10.1023/A:1024057002599 +Shuly Wintner,On the Semantics of Unification Grammars.,2003,6,Grammars,2,db/journals/grammars/grammars6.html#Wintner03,https://doi.org/10.1023/A:1026123106658 +Henning Fernau,Grammar Induction: An Invitation to Formal Language Theorists.,2004,7,Grammars,,db/journals/grammars/grammars7.html#FernauH04,http://grammars.grlmc.com/special2.asp +Alica Kelemenová,Determinism in Eco-Grammar Systems.,1999,1,Grammars,3,db/journals/grammars/grammars1.html#Kelemenova99,https://doi.org/10.1023/A:1009961513916 +Marcus Kracht,Constraints on Derivations.,2003,6,Grammars,2,db/journals/grammars/grammars6.html#Kracht03,https://doi.org/10.1023/A:1026178112344 +Laura Kallmeyer,Local Tree Description Grammars.,2001,4,Grammars,2,db/journals/grammars/grammars4.html#Kallmeyer01,https://doi.org/10.1023/A:1011431526022 +Jozef Kelemen,Why Grammar Systems?,1999,1,Grammars,3,db/journals/grammars/grammars1.html#Kelemen99,https://doi.org/10.1023/A:1009951700712 +Jia Lee,Uniquely Parsable Unification Grammars and Their Parser Implemented in Prolog.,2000,3,Grammars,1,db/journals/grammars/grammars3.html#LeeMAI00,https://doi.org/10.1023/A:1009922905438 +Wolfgang Minker,Stochastically-Based Semantic Analysis for ARISE - Automatic Railway Information Systems for Europe.,1999,2,Grammars,2,db/journals/grammars/grammars2.html#Minker99,https://doi.org/10.1023/A:1009943728288 +Patrick Juola,On Psycholinguistic Grammars.,1998,1,Grammars,1,db/journals/grammars/grammars1.html#Juola98,https://doi.org/10.1023/A:1009922701408 +Jozef Kelemen,Towards Biolinguistics.,2001,4,Grammars,3,db/journals/grammars/grammars4.html#KelemenKM01,https://doi.org/10.1023/A:1012254917260 +Henning Bordihn,Parallel Communicating Grammar Systems As Language Analyzers.,2000,3,Grammars,1,db/journals/grammars/grammars3.html#BordihnDV00,https://doi.org/10.1023/A:1009958707255 +Victor Mitrana,Chomsky-Schutzenberger Type Characterizations Based on Contextual Languages.,1998,1,Grammars,2,db/journals/grammars/grammars1.html#Mitrana98,https://doi.org/10.1023/A:1009963414305 +Sebastian Maneth,Cooperating Distributed Hyperedge Replacement Grammars.,1999,1,Grammars,3,db/journals/grammars/grammars1.html#Maneth99,https://doi.org/10.1023/A:1009939414825 +Joanna Jedrzejowicz,Structural Properties of Shuffle Automata.,1999,2,Grammars,1,db/journals/grammars/grammars2.html#Jedrzejowicz99,https://doi.org/10.1023/A:1009973609765 +Rodica Ceterchi,Cut-and-Paste Languages.,1999,2,Grammars,3,db/journals/grammars/grammars2.html#Ceterchi99,https://doi.org/10.1023/A:1009919019868 +Eberhard Bertsch,Gap Parsing with LL(1) Grammars.,2005,8,Grammars,,db/journals/grammars/grammars8.html#BertschN05,http://grammars.grlmc.com/paper_nederhof.asp +Ludwig Staiger,On the Power of Reading the Whole Infinite Input Tape.,1999,2,Grammars,3,db/journals/grammars/grammars2.html#Staiger99,https://doi.org/10.1023/A:1009976931662 +Peter Leupold,Languages of Partial Words - How to Obtain Them and What Properties They Have.,2004,7,Grammars,,db/journals/grammars/grammars7.html#Leupold04,http://grammars.grlmc.com/1stschool_peter.asp +Stefan Müller 0006,An HPSG-Analysis for Free Relative Clauses in German.,1999,2,Grammars,1,db/journals/grammars/grammars2.html#Muller99,https://doi.org/10.1023/A:1004564801304 +Hans-Ulrich Krieger,Greatest Model Semantics for Typed Feature Structures.,2001,4,Grammars,2,db/journals/grammars/grammars4.html#Krieger01,https://doi.org/10.1023/A:1011477925113 +Vitor Rocio,Tabulation for Multi-Purpose Partial Parsing.,2001,4,Grammars,1,db/journals/grammars/grammars4.html#RocioLC01,https://doi.org/10.1023/A:1011493212459 +Shuly Wintner,Modular Context-Free Grammars.,2002,5,Grammars,1,db/journals/grammars/grammars5.html#Wintner02,https://doi.org/10.1023/A:1014216630973 +András Kornai,Quantitative Comparison of Languages.,1998,1,Grammars,2,db/journals/grammars/grammars1.html#Kornai98,https://doi.org/10.1023/A:1009931011618 +Koichi Tokuno,Codesign-Oriented and User-Perceived Service Availability Measurement for Hardware/Software System.,2012,29,APJOR,3,db/journals/apjor/apjor29.html#Tokuno12,https://doi.org/10.1142/S0217595912400246 +Martin Branda,Optimization Approaches to Multiplicative Tariff of Rates Estimation in Non-Life Insurance.,2014,31,APJOR,5,db/journals/apjor/apjor31.html#Branda14,https://doi.org/10.1142/S0217595914500328 +M. A. Yaghoobi,Weighted Additive Models for Solving Fuzzy Goal Programming Problems.,2008,25,APJOR,5,db/journals/apjor/apjor25.html#YaghoobiJT08,https://doi.org/10.1142/S0217595908001973 +Yiwei Jiang,Optimal Preemptive Semi-Online Algorithm for Scheduling Tightly-Grouped Jobs on Two Uniform Machines.,2006,23,APJOR,1,db/journals/apjor/apjor23.html#JiangH06,https://doi.org/10.1142/S0217595906000772 +Chih-Ching Yang,A DEA-Based Approach for Evaluating the Opportunity Cost of Environmental Regulations.,2013,30,APJOR,2,db/journals/apjor/apjor30.html#Yang13,https://doi.org/10.1142/S0217595912500492 +Suxiang He,The Rate of Convergence of a NLM Based on F-B NCP for Constrained Optimization Problems Without Strict Complementarity.,2015,32,APJOR,3,db/journals/apjor/apjor32.html#HeZZ15,https://doi.org/10.1142/S0217595915500128 +Wenjie Wang,Stein-Rule Combination Forecasting on RFID Based Supply Chain.,2018,35,APJOR,2,db/journals/apjor/apjor35.html#WangXF18,https://doi.org/10.1142/S0217595918400018 +Tomonari Kitahara,An Upper Bound for the Number of Different solutions Generated by the Primal Simplex Method with any Selection Rule of entering Variables.,2013,30,APJOR,3,db/journals/apjor/apjor30.html#KitaharaM13,https://doi.org/10.1142/S0217595913400125 +Khalil Paryab,An Improved Model for Assessing the FDH-Cost Efficiency.,2012,29,APJOR,4,db/journals/apjor/apjor29.html#ParyabSJ12,https://doi.org/10.1142/S0217595912500224 +Kun-Jen Chung,The Optimal Cycle Time for deteriorating Items with Limited Storage Capacity under permissible Delay in Payments.,2006,23,APJOR,3,db/journals/apjor/apjor23.html#ChungH06,https://doi.org/10.1142/S0217595906000814 +Ning Zhao,Analysis of a MAP/PH/1 Queue with Discretionary Priority Based on Service Stages.,2015,32,APJOR,6,db/journals/apjor/apjor32.html#ZhaoLW15,https://doi.org/10.1142/S0217595915500426 +Xin Fang,Analysis of Double Marginalization Effect on the Wholesale Price Contract Coordination.,2018,35,APJOR,2,db/journals/apjor/apjor35.html#Fang18,https://doi.org/10.1142/S0217595918400055 +R. Kapoor,Linearization of 0-1 Multi-Quadratic fractional Programming Problem.,2009,26,APJOR,1,db/journals/apjor/apjor26.html#KapoorA09,https://doi.org/10.1142/S0217595909002092 +Reza Farzipoor Saen,A Decision Model for Selecting Third-Party Reverse Logistics Providers in the Presence of Both Dual-Role Factors and Imprecise Data.,2011,28,APJOR,2,db/journals/apjor/apjor28.html#Saen11,https://doi.org/10.1142/S0217595911003156 +Donglei Du,Guest Editorial.,2015,32,APJOR,1,db/journals/apjor/apjor32.html#DuXX15,https://doi.org/10.1142/S0217595915020017 +Yong Wang,A Two-Echelon Neighborhood Search Algorithm for a Forwarder's Job Assignment in a Multi-Agent Logistics Network.,2015,32,APJOR,3,db/journals/apjor/apjor32.html#WangHHL15,https://doi.org/10.1142/S0217595915500189 +Zhe Duan,A note on Infinite-Server Markov modulated and Single-Server retrial Queues.,2014,31,APJOR,2,db/journals/apjor/apjor31.html#DuanB14,https://doi.org/10.1142/S021759591440003X +José Roberto Dale Luche,Combining Process Selection and lot sizing Models for Production Scheduling of Electrofused Grains.,2009,26,APJOR,3,db/journals/apjor/apjor26.html#LucheMP09,https://doi.org/10.1142/S0217595909002286 +Mohammad Reza Alirezaee,A Note on an Extended Numeration Method for Solving Free disposal Hull Models in DEA.,2010,27,APJOR,5,db/journals/apjor/apjor27.html#AlirezaeeS10,https://doi.org/10.1142/S0217595910002880 +Surjeet Kaur Suneja,Cone Convex and Related Functions in Optimization over Topological Vector Spaces.,2007,24,APJOR,6,db/journals/apjor/apjor24.html#SunejaB07,https://doi.org/10.1142/S0217595907001504 +Yan-An Hwang,Potential in Multi-Choice Cooperative TU Games.,2008,25,APJOR,5,db/journals/apjor/apjor25.html#HwangL08,https://doi.org/10.1142/S0217595908001900 +Shuenn-Ren Cheng,Scheduling Two-Agents with a Time-Dependent Deterioration to Minimize the Minsum Earliness Measures.,2014,31,APJOR,5,db/journals/apjor/apjor31.html#Cheng14,https://doi.org/10.1142/S0217595914500407 +Wei-Min Ma,Parallel-Machine Scheduling with Delivery Times and Deteriorating Maintenance.,2015,32,APJOR,4,db/journals/apjor/apjor32.html#MaSLW15,https://doi.org/10.1142/S0217595915500293 +Mahmood Shafiee,Warranty and Optimal Upgrade Strategy for Used Systems: an Electric Drill Case Study.,2012,29,APJOR,4,db/journals/apjor/apjor29.html#ShafieeCF12,https://doi.org/10.1142/S0217595912500236 +Wen-Hua Yang,A Batching Problem with Learning Effect Considerations.,2009,26,APJOR,2,db/journals/apjor/apjor26.html#Yang09,https://doi.org/10.1142/S0217595909002213 +Jun Zhang,A Scatter Search for Multi-Depot Vehicle Routing Problem with Weight-Related Cost.,2011,28,APJOR,3,db/journals/apjor/apjor28.html#ZhangTF11,https://doi.org/10.1142/S0217595911003260 +Selçuk Kürsat Isleyen,An Efficiently Novel Model for Vehicle Routing Problems with Stochastic Demands.,2009,26,APJOR,2,db/journals/apjor/apjor26.html#IsleyenB09,https://doi.org/10.1142/S021759590900216X +Srinivas R. Chakravarthy,A Finite Capacity Resequencing Model with Markovian arrivals.,2005,22,APJOR,3,db/journals/apjor/apjor22.html#ChakravarthyC05,https://doi.org/10.1142/S0217595905000613 +Chun-Cheng Lin,Modeling the Material Allocation System for TFT-LCD Module Factories Based on Make-to-Stock Production.,2014,31,APJOR,6,db/journals/apjor/apjor31.html#LinKC14,https://doi.org/10.1142/S021759591450047X +Hua Ke,Competitive Pricing and Remanufacturing Problem in an Uncertain Closed-Loop Supply Chain with Risk-Sensitive Retailers.,2018,35,APJOR,1,db/journals/apjor/apjor35.html#KeWH18,https://doi.org/10.1142/S0217595918500033 +Alagar Rangan,Some Results on a New Class of Shock Models.,2010,27,APJOR,4,db/journals/apjor/apjor27.html#RanganT10,https://doi.org/10.1142/S021759591000282X +J. L. Corner,Scheduling the Harvesting Operations of a Forest Block: a Case Study.,2005,22,APJOR,3,db/journals/apjor/apjor22.html#CornerF05,https://doi.org/10.1142/S0217595905000674 +L. Salahaldin,A Real options Framework for Dealing with Uncertainty in Sustainable Transport Investments.,2013,30,APJOR,4,db/journals/apjor/apjor30.html#SalahaldinG13,https://doi.org/10.1142/S0217595913500024 +Byung Soo Kim,Scheduling Trucks in Multi-Door Cross Docking Systems: An Adaptive Genetic Algorithm with a Dispatching Rule.,2015,32,APJOR,3,db/journals/apjor/apjor32.html#KimJ15,https://doi.org/10.1142/S0217595915500165 +R. R. K. Sharma,A New Formulation and Relaxation of the Simple Plant Location Problem.,2009,26,APJOR,1,db/journals/apjor/apjor26.html#SharmaM09,https://doi.org/10.1142/S0217595909002122 +Maryam Zangiabadi,A Method for Solving Linear Programming Problems with Fuzzy Parameters Based on Multiobjective Linear Programming Technique.,2007,24,APJOR,4,db/journals/apjor/apjor24.html#ZangiabadiM07,https://doi.org/10.1142/S0217595907001395 +Ji-Bo Wang,Single-Machine Due-Window Assignment and Scheduling with Learning Effect and Resource-Dependent Processing Times.,2014,31,APJOR,5,db/journals/apjor/apjor31.html#WangW14,https://doi.org/10.1142/S0217595914500365 +Chan-Kyoo Park,Positive sensitivity Analysis in Linear Programming.,2004,21,APJOR,1,db/journals/apjor/apjor21.html#ParkKLP04,https://doi.org/10.1142/S0217595904000059 +Jianbin Li,Optimal Remanufacturing and Pricing Strategies Under Name-Your-Own-Price Auctions and Stochastic Demand.,2016,33,APJOR,1,db/journals/apjor/apjor33.html#LiWYZ16,https://doi.org/10.1142/S0217595916500044 +Prerna Manik,A Goal Programming Model for Selection and Scheduling of Advertisements on Online News Media.,2016,33,APJOR,2,db/journals/apjor/apjor33.html#ManikGJG16,https://doi.org/10.1142/S0217595916500123 +Xuemei Zhang,Product Design Strategy with Commonality by Considering Customer-Choice Behavior in Supply Chain.,2015,32,APJOR,5,db/journals/apjor/apjor32.html#ZhangWLC15,https://doi.org/10.1142/S0217595915500372 +Chun-Tao Chang,Inventory Models with Stock-Dependent Demand and nonlinear Holding Costs for deteriorating items.,2004,21,APJOR,4,db/journals/apjor/apjor21.html#Chang04,https://doi.org/10.1142/S0217595904000321 +M. Mathirajan,Experimental Analysis of some Variants of Vogel's Approximation Method.,2004,21,APJOR,4,db/journals/apjor/apjor21.html#MathirajanM04,https://doi.org/10.1142/S0217595904000333 +Hongxia Yin,An Adaptive Smoothing Method for Continuous Minimax Problems.,2015,32,APJOR,1,db/journals/apjor/apjor32.html#Yin15,https://doi.org/10.1142/S0217595915400011 +Ivo J. B. F. Adan,Reducing Costs of Spare Parts Supply Systems via Static Priorities.,2009,26,APJOR,4,db/journals/apjor/apjor26.html#AdanSH09,https://doi.org/10.1142/S0217595909002377 +Toshiyuki Sueyoshi,A Methodological Comparison between Standard and Two Stage Mixed Integer Approaches for Discriminant Analysis.,2005,22,APJOR,4,db/journals/apjor/apjor22.html#Sueyoshi05a,https://doi.org/10.1142/S0217595905000704 +Iris-Pandora Krommyda,Optimal Pricing and replenishment Policy for Noninstantaneous deteriorating items and Two Levels of Storage.,2013,30,APJOR,4,db/journals/apjor/apjor30.html#KrommydaSKG13,https://doi.org/10.1142/S0217595913500012 +Weimin Ma,Online Work-Break Problem and its Competitive Analysis.,2016,33,APJOR,2,db/journals/apjor/apjor33.html#MaJ16,https://doi.org/10.1142/S0217595916500111 +Hongjun Peng,Supply Chain Coordination with Uncertainty in Two-echelon Yields.,2013,30,APJOR,1,db/journals/apjor/apjor30.html#PengZQ13,https://doi.org/10.1142/S0217595912500443 +Shibaji Panda,An EOQ Model with Generalized Ramp-Type Demand and Weibull Distribution deterioration.,2007,24,APJOR,1,db/journals/apjor/apjor24.html#PandaSB07,https://doi.org/10.1142/S0217595907001152 +Qian-Yun Tan,The Hesitant Fuzzy Linguistic TOPSIS Method Based on Novel Information Measures.,2016,33,APJOR,5,db/journals/apjor/apjor33.html#TanWLF16,https://doi.org/10.1142/S0217595916500354 +Sheng-Yi Cai,Semi-Online Machine Covering.,2007,24,APJOR,3,db/journals/apjor/apjor24.html#Cai07,https://doi.org/10.1142/S0217595907001255 +Kaizhou Gao,A Hybrid Harmony Search Algorithm for the no-Wait Flow-shop Scheduling Problems.,2012,29,APJOR,2,db/journals/apjor/apjor29.html#GaoPLWL12,https://doi.org/10.1142/S0217595912500121 +Jian Luo,Soft Quadratic Surface Support Vector Machine for Binary Classification.,2016,33,APJOR,6,db/journals/apjor/apjor33.html#LuoFDG16,https://doi.org/10.1142/S0217595916500469 +Jorge M. S. Valente,Beam Search Heuristics for the Single Machine Scheduling Problem with Linear earliness and Quadratic tardiness Costs.,2009,26,APJOR,3,db/journals/apjor/apjor26.html#Valente09,https://doi.org/10.1142/S0217595909002225 +Yiwei Jiang,An Optimal Preemptive Algorithm for Online MapReduce Scheduling on Two Parallel Machines.,2018,35,APJOR,3,db/journals/apjor/apjor35.html#JiangZZ18,https://doi.org/10.1142/S0217595918500136 +Joaquin Sicilia,Deterministic inventory Systems with Power Demand Pattern.,2012,29,APJOR,5,db/journals/apjor/apjor29.html#SiciliaFR12,https://doi.org/10.1142/S021759591250025X +Mohammad Izadikhah,How to Assess Sustainability of Suppliers in the Presence of Dual-Role Factor and Volume Discounts? A Data Envelopment Analysis Approach.,2017,34,APJOR,3,db/journals/apjor/apjor34.html#IzadikhahSA17,https://doi.org/10.1142/S0217595917400164 +Junfeng Dong,Futures and Option Contracts of the Supply Chain Influenced by e-Business Market.,2014,31,APJOR,5,db/journals/apjor/apjor31.html#DongSL14,https://doi.org/10.1142/S0217595914500353 +Andrea Raiconi,Tactical Production and Lot Size Planning with Lifetime Constraints: A Comparison of Model Formulations.,2017,34,APJOR,5,db/journals/apjor/apjor34.html#RaiconiPGVC17,https://doi.org/10.1142/S0217595917500191 +Shuren Liu,Optimal Inventory Control and Allocation for Sequential Internet Auctions.,2015,32,APJOR,2,db/journals/apjor/apjor32.html#LiuZH15,https://doi.org/10.1142/S0217595915500037 +Yinping Mu,Integrating Early Sales with production Decisions and its effect on budgetary Constraint.,2013,30,APJOR,6,db/journals/apjor/apjor30.html#MuF13,https://doi.org/10.1142/S0217595913500255 +Gongbing Bi,Joint Operational and Financial Collaboration in a Capital-Constrained Supply Chain Under Manufacturer Collateral.,2018,35,APJOR,3,db/journals/apjor/apjor35.html#BiFYW18,https://doi.org/10.1142/S0217595918500100 +Pam Norton,Optimal Strategies in One-Day Cricket.,2008,25,APJOR,4,db/journals/apjor/apjor25.html#NortonP08,https://doi.org/10.1142/S0217595908001833 +Hongbo Zhang,Explicit solution for Queue Length Distribution of M/T-SPH/1 Queue.,2014,31,APJOR,1,db/journals/apjor/apjor31.html#ZhangSH14,https://doi.org/10.1142/S0217595914500018 +Chefi Triki,Solving the Periodic Edge Routing Problem in the Municipal Waste Collection.,2017,34,APJOR,3,db/journals/apjor/apjor34.html#Triki17,https://doi.org/10.1142/S0217595917400152 +German Bernhart,Asset Correlations in Turbulent Markets and the Impact of Different Regimes on Asset Management.,2011,28,APJOR,1,db/journals/apjor/apjor28.html#BernhartHNNZ11,https://doi.org/10.1142/S0217595911003028 +Min Sun,Non-interior Continuation Method for complementarity Problems in Absence of Strict complementarity.,2006,23,APJOR,1,db/journals/apjor/apjor23.html#SunS06,https://doi.org/10.1142/S0217595906000838 +Haijun Wang,A Convex Approximation Method for Large Scale Linear inequality Constrained Minimization.,2010,27,APJOR,1,db/journals/apjor/apjor27.html#WangN10,https://doi.org/10.1142/S0217595910002557 +Mohammad Saeid Atabaki,Hybrid Genetic Algorithm and Invasive Weed Optimization via Priority Based Encoding for Location-Allocation Decisions in a Three-Stage Supply Chain.,2017,34,APJOR,2,db/journals/apjor/apjor34.html#AtabakiMN17,https://doi.org/10.1142/S0217595917500087 +Maryam Esmaeili,Seller-Buyer Relationship when End Demand is Sensitive to Price and Promotion.,2009,26,APJOR,5,db/journals/apjor/apjor26.html#EsmaeiliAA09,https://doi.org/10.1142/S0217595909002353 +Grzegorz Waligóra,Comparative Analysis of Some Metaheuristics for Discrete-Continuous Project Scheduling with Activities of Identical Processing Rates.,2016,33,APJOR,3,db/journals/apjor/apjor33.html#Waligora16,https://doi.org/10.1142/S0217595916500159 +Shi-Sheng Li,Proportionate Flow Shop Scheduling with Rejection.,2017,34,APJOR,4,db/journals/apjor/apjor34.html#LiQC17,https://doi.org/10.1142/S0217595917500154 +Xujin Chen,Balancing Load via Small Coalitions in Selfish Ring Routing Games.,2015,32,APJOR,1,db/journals/apjor/apjor32.html#ChenHM15,https://doi.org/10.1142/S0217595915400035 +Sungmook Lim,A Study on Sensitivity Analysis for Convex Quadratic Programs.,2006,23,APJOR,4,db/journals/apjor/apjor23.html#Lim06a,https://doi.org/10.1142/S0217595906001078 +Haresh Gurnani,Optimal Procurement Strategy under Supply Risk.,2012,29,APJOR,1,db/journals/apjor/apjor29.html#GurnaniGRR12,https://doi.org/10.1142/S0217595912400064 +Nguyen Khac Minh,Efficiency and Super-Efficiency of Commercial banks in Vietnam: Performances and Determinants.,2013,30,APJOR,1,db/journals/apjor/apjor30.html#MinhLH13,https://doi.org/10.1142/S0217595912500479 +özlem Aydin,Multi-Channel Fuzzy Queuing Systems and Membership Functions of Related Fuzzy Services and Fuzzy Inter-Arrival Times.,2008,25,APJOR,5,db/journals/apjor/apjor25.html#AydinA08,https://doi.org/10.1142/S0217595908001961 +Xiangpei Hu,Inventory Decisions with Decreasing purchasing Costs.,2012,29,APJOR,1,db/journals/apjor/apjor29.html#HuWW12,https://doi.org/10.1142/S0217595912400027 +Hsu-Hwa Chang,Dynamic Parameter Design by Ant Colony Optimization and Neural Networks.,2007,24,APJOR,3,db/journals/apjor/apjor24.html#ChangCC07,https://doi.org/10.1142/S0217595907001280 +Lei Yang,Supply Chain Coordination with CVaR Criterion.,2009,26,APJOR,1,db/journals/apjor/apjor26.html#YangXYZ09,https://doi.org/10.1142/S0217595909002109 +T. Godwin,Freight Train Routing and Scheduling in a passenger rail Network: Computational Complexity and the Stepwise Dispatching Heuristic.,2007,24,APJOR,4,db/journals/apjor/apjor24.html#GodwinGN07,https://doi.org/10.1142/S0217595907001358 +Chunqiao Tan,Choquet Extension of Cooperative Games.,2013,30,APJOR,4,db/journals/apjor/apjor30.html#TanJC13,https://doi.org/10.1142/S021759591350005X +Cheng-Ru Wu,Optimizing Location among n-Countries under Exchange Rate Uncertainty: Applying Real Options.,2007,24,APJOR,1,db/journals/apjor/apjor24.html#WuL07,https://doi.org/10.1142/S0217595907001103 +Linet özdamar,New Simulated Annealing Algorithms for Constrained Optimization.,2010,27,APJOR,3,db/journals/apjor/apjor27.html#OzdamarP10,https://doi.org/10.1142/S0217595910002740 +Mahdi Mirjaberi,On the Calculation of Directional Scale Elasticity in Data Envelopment Analysis.,2016,33,APJOR,4,db/journals/apjor/apjor33.html#MirjaberiM16,https://doi.org/10.1142/S0217595916500263 +Delia Montoro-Cazorla,Maintenance of Systems by Means of Replacements and Repairs: the Case of Phase-Type Distributions.,2007,24,APJOR,3,db/journals/apjor/apjor24.html#Montoro-CazorlaP07,https://doi.org/10.1142/S0217595907001279 +Kuo-Hsiung Wang,Cost Analysis of the R-Unreliable-Unloader Queueing System.,2008,25,APJOR,1,db/journals/apjor/apjor25.html#WangOK08,https://doi.org/10.1142/S0217595908001638 +Xiaoxia Fu,Forecasting and Analyzing Internet Users of China with Lotka-Volterra Model.,2017,34,APJOR,1,db/journals/apjor/apjor34.html#FuZZ17,https://doi.org/10.1142/S0217595917400061 +Cheng He,Some Improved Algorithms on the Single Machine Hierarchical Scheduling with Total tardiness as the Primary Criterion.,2010,27,APJOR,5,db/journals/apjor/apjor27.html#HeLY10,https://doi.org/10.1142/S0217595910002867 +Kimitoshi Sato,Optimal Ordering Policies with Stochastic Demand and Price Processes.,2012,29,APJOR,6,db/journals/apjor/apjor29.html#SatoS12,https://doi.org/10.1142/S0217595912500376 +Weihua Zhou,An Efficient Optimal Solution of a Two-Crane Scheduling Problem.,2009,26,APJOR,1,db/journals/apjor/apjor26.html#ZhouW09,https://doi.org/10.1142/S0217595909002146 +Chan-Kyoo Park,On the Properties of and∈4*-sensitivity Analysis for Linear Programming.,2005,22,APJOR,2,db/journals/apjor/apjor22.html#ParkKP05,https://doi.org/10.1142/S0217595905000467 +Lin Lin,Parallel Machine Scheduling with a Simultaneity Constraint and Unit-Length Jobs to minimize the makespan.,2010,27,APJOR,6,db/journals/apjor/apjor27.html#LinLZF10,https://doi.org/10.1142/S0217595910002934 +Toshikazu Kimura,Alternative Randomization for Valuing American Options.,2010,27,APJOR,2,db/journals/apjor/apjor27.html#Kimura10,https://doi.org/10.1142/S0217595910002624 +P. Chandrasekhar,A Study on a Two Unit standby System with Erlangian Repair Time.,2004,21,APJOR,3,db/journals/apjor/apjor21.html#ChandrasekharNY04,https://doi.org/10.1142/S0217595904000242 +Liang Yin,Global convergence of Two Kinds of Three-Term conjugate Gradient Methods without Line Search.,2013,30,APJOR,1,db/journals/apjor/apjor30.html#YinC13,https://doi.org/10.1142/S0217595912500431 +Yao Chen,Imprecise DEA - envelopment and Multiplier Model Approaches.,2007,24,APJOR,2,db/journals/apjor/apjor24.html#Chen07,https://doi.org/10.1142/S0217595907001243 +Tadeusz Antczak,An eta-Approximation Approach in Nonlinear Vector Optimization with Univex Functions.,2006,23,APJOR,4,db/journals/apjor/apjor23.html#Antczak06,https://doi.org/10.1142/S0217595906001029 +Kyong Joo Oh,Developing Time-Based Clustering Neural Networks to Use Change-Point Detection: Application to Financial Time Series.,2005,22,APJOR,1,db/journals/apjor/apjor22.html#OhRM05,https://doi.org/10.1142/S0217595905000431 +Jie Xu 0004,MO2TOS: Multi-Fidelity Optimization with Ordinal Transformation and Optimal Sampling.,2016,33,APJOR,3,db/journals/apjor/apjor33.html#XuZHCLC16,https://doi.org/10.1142/S0217595916500172 +Anulekha Dhara,Sequential Lagrange Multiplier Conditions for minimax Programming Problems.,2008,25,APJOR,2,db/journals/apjor/apjor25.html#DharaM08,https://doi.org/10.1142/S0217595908001729 +Weidong Li 0002,Two Approximation Schemes for Scheduling on Parallel Machines under a grade of Service Provision.,2012,29,APJOR,5,db/journals/apjor/apjor29.html#LiLZ12,https://doi.org/10.1142/S0217595912500297 +An Zhang,Online and Semi-Online Scheduling on capacitated Two-Parallel Machines.,2011,28,APJOR,2,db/journals/apjor/apjor28.html#ZhangJT11,https://doi.org/10.1142/S0217595911003119 +Taiyong Li,ELEMENT OF -Strictly Efficient Solutions of Vector Optimization Problems with Set-Valued Maps.,2007,24,APJOR,6,db/journals/apjor/apjor24.html#LiXZ07,https://doi.org/10.1142/S0217595907001577 +Ling-Huey Su,A Two-Stage flowshop Scheduling with Limited Buffer Storage.,2009,26,APJOR,4,db/journals/apjor/apjor26.html#SuYC09,https://doi.org/10.1142/S0217595909002328 +Ram Ramakrishnan,Analytical Approximations for kitting Systems with Multiple Inputs.,2008,25,APJOR,2,db/journals/apjor/apjor25.html#RamakrishnanK08,https://doi.org/10.1142/S0217595908001742 +Panpan Yu,Ordinal Distance Metric Learning with MDS for Image Ranking.,2018,35,APJOR,1,db/journals/apjor/apjor35.html#YuL18,https://doi.org/10.1142/S0217595918500070 +C. T. Ng,Two-Machine Flow-Shop Minimum-Length Scheduling with Interval Processing Times.,2009,26,APJOR,6,db/journals/apjor/apjor26.html#NgMSC09,https://doi.org/10.1142/S0217595909002432 +Daniel Cosmin Porumbel,Informed Reactive Tabu Search for Graph Coloring.,2013,30,APJOR,4,db/journals/apjor/apjor30.html#PorumbelHK13,https://doi.org/10.1142/S0217595913500103 +Yukihiro Maruyama,Strong Representation of a Discrete Decision Process by Positively/negatively Bitone Sequential Decision Process.,2007,24,APJOR,2,db/journals/apjor/apjor24.html#Maruyama07,https://doi.org/10.1142/S0217595907001218 +Saman Babaie-Kafaki,An Efficient and Practically Robust Hybrid Metaheuristic Algorithm for Solving Fuzzy Bus Terminal Location Problems.,2012,29,APJOR,2,db/journals/apjor/apjor29.html#Babaie-KafakiGM12,https://doi.org/10.1142/S0217595912500091 +Herminia I. Calvete,A penalty Method for Solving bilevel Linear fractional/Linear Programming Problems.,2004,21,APJOR,2,db/journals/apjor/apjor21.html#CalveteG04,https://doi.org/10.1142/S0217595904000205 +Jeffrey J. Hunter,Markovian Queues with Correlated Arrival Processes.,2007,24,APJOR,4,db/journals/apjor/apjor24.html#Hunter07,https://doi.org/10.1142/S021759590700136X +Maziar Salahi,A Hybrid Adaptive Algorithm for Linear Optimization.,2009,26,APJOR,2,db/journals/apjor/apjor26.html#SalahiT09,https://doi.org/10.1142/S0217595909002183 +Zhuping Liu,Modeling the Impact of Partial Information Sharing in a Three-echelon Supply Chain.,2013,30,APJOR,5,db/journals/apjor/apjor30.html#LiuZWS13,https://doi.org/10.1142/S0217595913500206 +Juan Du 0001,Data Envelopment Analysis with Output-Bounded Data.,2016,33,APJOR,6,db/journals/apjor/apjor33.html#DuHZ16,https://doi.org/10.1142/S0217595916500500 +Miao-Sheng Chen,A Note on the Optimal Supply Cycle when the Whole Period is Stockout.,2010,27,APJOR,5,db/journals/apjor/apjor27.html#ChenC10,https://doi.org/10.1142/S0217595910002892 +Jianfeng Ren,The Supplying Chain Scheduling with Outsourcing and Transportation.,2017,34,APJOR,2,db/journals/apjor/apjor34.html#RenSZ17,https://doi.org/10.1142/S0217595917500099 +B. L. Hollis,Real-Life Vehicle Routing with Time Windows for Visual attractiveness and Operational Robustness.,2012,29,APJOR,4,db/journals/apjor/apjor29.html#HollisG12,https://doi.org/10.1142/S0217595912500170 +Rafael Pérez-Ocón,Transient Analysis of a Multi-Component System Modeled by a General Markov Process.,2006,23,APJOR,3,db/journals/apjor/apjor23.html#Perez-OconMR06,https://doi.org/10.1142/S0217595906000954 +Songlin Nie,Robust Interval-Based minimax-Regret Analysis Method for filter Management of fluid Power System.,2013,30,APJOR,6,db/journals/apjor/apjor30.html#NieJHHL13,https://doi.org/10.1142/S0217595913500218 +Dilip Kumar Sen,A TODIM-Based Decision Support Framework for G-Resilient Supplier Selection in Fuzzy Environment.,2016,33,APJOR,5,db/journals/apjor/apjor33.html#SenDM16,https://doi.org/10.1142/S0217595916500330 +Ming Liu 0008,Optimal Semi-Online Algorithm for Scheduling on Two Parallel Batch Processing Machines.,2014,31,APJOR,5,db/journals/apjor/apjor31.html#LiuZZC14,https://doi.org/10.1142/S0217595914500389 +Andrew Ensor,Colored-Edge Graph Approach for the Modeling of Multimodal Transportation Systems.,2016,33,APJOR,1,db/journals/apjor/apjor33.html#EnsorL16,https://doi.org/10.1142/S0217595916500056 +Mingchih Chen,Optimal Scheduling of Random Works with Reliability Application.,2012,29,APJOR,5,db/journals/apjor/apjor29.html#ChenN12,https://doi.org/10.1142/S0217595912500273 +Virtue U. Ekhosuehi,A Proposed Formula for Horizontal Revenue Allocation in Nigeria.,2012,29,APJOR,6,db/journals/apjor/apjor29.html#EkhosuehiO12,https://doi.org/10.1142/S0217595912500339 +I. T. Castro,The Type I Delayed Repair Policy.,2007,24,APJOR,1,db/journals/apjor/apjor24.html#CastroS07,https://doi.org/10.1142/S0217595907001061 +Stefanka Chukova,Preface.,2012,29,APJOR,3,db/journals/apjor/apjor29.html#ChukovaH12,http://www.worldscinet.com/apjor/29/2903/S0217595912020010.html +Yumei Hou,Performance Analysis on a Complex remanufacturing System.,2005,22,APJOR,3,db/journals/apjor/apjor22.html#HouZ05,https://doi.org/10.1142/S0217595905000650 +Gholam Reza Jahanshahloo,A Method for Generating All the Efficient solutions of a 0-1 Multi-objective Linear Programming Problem.,2004,21,APJOR,1,db/journals/apjor/apjor21.html#JahanshahlooLST04,https://doi.org/10.1142/S0217595904000096 +Shinn Sun,Evaluating the Performance of the Taiwanese Hotel Industry using a Weight slacks-Based Measure.,2005,22,APJOR,4,db/journals/apjor/apjor22.html#SunL05,https://doi.org/10.1142/S0217595905000595 +Leqin Wu,Stability and Allocation in a Three-Player Game.,2013,30,APJOR,3,db/journals/apjor/apjor30.html#WuCLY13,https://doi.org/10.1142/S0217595913400149 +Timo Kubach,Greedy Algorithms for Packing Unequal Spheres into a Cuboidal Strip or a Cuboid.,2011,28,APJOR,6,db/journals/apjor/apjor28.html#KubachBTG11,https://doi.org/10.1142/S0217595911003326 +Ta-Wei Pan,Dea Performance Measurement of the National Innovation System in Asia and Europe.,2010,27,APJOR,3,db/journals/apjor/apjor27.html#PanHL10,https://doi.org/10.1142/S0217595910002752 +Shey-Huei Sheu,Monitoring autocorrelated Process Mean and Variance Using a Gwma Chart Based on residuals.,2008,25,APJOR,6,db/journals/apjor/apjor25.html#SheuL08,https://doi.org/10.1142/S0217595908002012 +Qi Zhao,An SQP-type Method with Superlinear Convergence for Nonlinear Semidefinite Programming.,2018,35,APJOR,3,db/journals/apjor/apjor35.html#ZhaoC18,https://doi.org/10.1142/S0217595918500094 +Abbas Aghajani Bazzazi,A New Fuzzy Multi Criteria Decision Making Model for Open PIT Mines Equipment Selection.,2011,28,APJOR,3,db/journals/apjor/apjor28.html#BazzaziOK11,https://doi.org/10.1142/S0217595911003247 +Longcheng Liu,A Weighted Inverse Minimum Cut Problem under the Bottleneck Type Hamming Distance.,2007,24,APJOR,5,db/journals/apjor/apjor24.html#LiuY07,https://doi.org/10.1142/S0217595907001474 +Ni-Na Yan,Optimal Stackelberg Strategies for Closed-Loop Supply Chain with Third-Party Reverse Logistics.,2012,29,APJOR,5,db/journals/apjor/apjor29.html#YanS12,https://doi.org/10.1142/S0217595912500261 +Tal Avinadav,An EOQ Model for Items with a Fixed Shelf-Life and a declining Demand Rate Based on Time-to-expiry Technical Note.,2009,26,APJOR,6,db/journals/apjor/apjor26.html#AvinadavA09,https://doi.org/10.1142/S0217595909002456 +Byung-Cheon Choi,Outsourcing Decisions in M-Machine Permutation Flow shop Scheduling Problems with Machine-dependent Processing *.,2014,31,APJOR,4,db/journals/apjor/apjor31.html#ChoiP14,https://doi.org/10.1142/S0217595914500286 +Ruiyue Lin,New DEA Performance Evaluation Indices and their Applications in the American Fund Market.,2008,25,APJOR,4,db/journals/apjor/apjor25.html#LinC08,https://doi.org/10.1142/S0217595908001882 +Hao Liu,A Class of modified BFGS Methods with Function Value Information for unconstrained Optimization.,2013,30,APJOR,6,db/journals/apjor/apjor30.html#LiuWQS13,https://doi.org/10.1142/S0217595913500243 +Na Xu,Improved Convergence Properties of the Relaxation Schemes of Kadrani et al. and Kanzow and Schwartz for MPEC.,2018,35,APJOR,1,db/journals/apjor/apjor35.html#XuZPL18,https://doi.org/10.1142/S0217595918500082 +Gopinath Panda,Equilibrium and Socially Optimal Balking Strategies in Markovian Queues with Vacations and Sequential Abandonment.,2016,33,APJOR,5,db/journals/apjor/apjor33.html#PandaGB16,https://doi.org/10.1142/S0217595916500366 +V. S. S. Yadavalli,Bayesian Study of a Two-Component System with Common-Cause shock Failures.,2005,22,APJOR,1,db/journals/apjor/apjor22.html#YadavalliBP05,https://doi.org/10.1142/S0217595905000480 +Antonio Rodrigo,Estimators of the Retrial Rate in M/G/1 Retrial Queues.,2006,23,APJOR,2,db/journals/apjor/apjor23.html#Rodrigo06,https://doi.org/10.1142/S0217595906000887 +Javier Salmerón,A Convex submodel with Application to System Design.,2004,21,APJOR,1,db/journals/apjor/apjor21.html#SalmeronM04,https://doi.org/10.1142/S0217595904000047 +Kiatkajohn Worapradya,Proactive Scheduling for Steelmaking-Continuous Casting Plant with Uncertain Machine Breakdown Using Distribution-Based Robustness and Decomposed Artificial Neural Network.,2015,32,APJOR,2,db/journals/apjor/apjor32.html#WorapradyaT15,https://doi.org/10.1142/S0217595915500104 +Wen-Hsiang Wu,Genetic Algorithm for a Two-Agent Scheduling Problem with Truncated Learning Consideration.,2014,31,APJOR,6,db/journals/apjor/apjor31.html#WuYCHW14,https://doi.org/10.1142/S0217595914500468 +Su-Min Yu,A Multi-Criteria Decision-Making Method Based on Heronian Mean Operators Under a Linguistic Hesitant Fuzzy Environment.,2015,32,APJOR,5,db/journals/apjor/apjor32.html#YuZCW15,https://doi.org/10.1142/S0217595915500359 +Chao Ding,A Computable Characterization of the Extrinsic Mean of Reflection Shapes and Its Asymptotic Properties.,2015,32,APJOR,1,db/journals/apjor/apjor32.html#DingQ15,https://doi.org/10.1142/S0217595915400059 +Robert L. Burdett,The Assignment of Individual Renewable Resources in Scheduling.,2004,21,APJOR,3,db/journals/apjor/apjor21.html#BurdettK04,https://doi.org/10.1142/S021759590400028X +Yong-Jin Liu,Some Properties of a Class of Merit Functions for Symmetric Cone complementarity Problems.,2006,23,APJOR,4,db/journals/apjor/apjor23.html#LiuZW06,https://doi.org/10.1142/S0217595906000991 +Hao Zhou,Improved Algorithms for Online Scheduling of Malleable Parallel Jobs on Two Identical Machines.,2015,32,APJOR,5,db/journals/apjor/apjor32.html#ZhouZJ15,https://doi.org/10.1142/S0217595915500347 +Jinjiang Yuan,Single Machine Scheduling with Forbidden Intervals and Job Delivery Times.,2008,25,APJOR,3,db/journals/apjor/apjor25.html#YuanSO08,https://doi.org/10.1142/S0217595908001778 +Wenjie Li,A Best Possible Online Algorithm for the Parallel-Machine Scheduling to Minimize the Maximum Weighted Completion Time.,2015,32,APJOR,4,db/journals/apjor/apjor32.html#Li15a,https://doi.org/10.1142/S021759591550030X +Xiaoxiao Luo,Optimal Design on Customized Bundling Strategy of Information Goods for Customers with Two-Dimensional Heterogeneity.,2017,34,APJOR,2,db/journals/apjor/apjor34.html#LuoLFC17,https://doi.org/10.1142/S0217595917500075 +Anita Schöbel,The Continuous Stop Location Problem in Public Transportation Networks.,2009,26,APJOR,1,db/journals/apjor/apjor26.html#SchobelHLW09,https://doi.org/10.1142/S0217595909002080 +Lu Liu,Convergence of and#8467*2/3 Regularization for Sparse Signal Recovery.,2015,32,APJOR,4,db/journals/apjor/apjor32.html#LiuC15,https://doi.org/10.1142/S0217595915500232 +Chun-Yuan Cheng,The Periodic Maintenance Policy for a Weibull Life-Time System with Degradation Rate Reduction under Reliability Limit.,2008,25,APJOR,6,db/journals/apjor/apjor25.html#ChengC08,https://doi.org/10.1142/S0217595908002024 +Pao-Long Chang,Bibliometric Overview of Operations Research/Management Science Research in Asia.,2008,25,APJOR,2,db/journals/apjor/apjor25.html#ChangH08,https://doi.org/10.1142/S0217595908001705 +Min Li,A Convergent 3-Block Semi-Proximal ADMM for Convex Minimization Problems with One Strongly Convex Block.,2015,32,APJOR,4,db/journals/apjor/apjor32.html#LiST15,https://doi.org/10.1142/S0217595915500244 +Yu-Ping Niu,A Note on Scheduling Jobs with Extended Sum-of-Processing-Times-Based and Position-Based Learning Effect.,2015,32,APJOR,2,db/journals/apjor/apjor32.html#NiuWW15,https://doi.org/10.1142/S0217595915500013 +Byung-Gyoo Kim,Two-Machine and Two-Agent Flow Shop with Special Processing Times Structures.,2017,34,APJOR,4,db/journals/apjor/apjor34.html#KimCP17,https://doi.org/10.1142/S0217595917500178 +Horng-Jinh Chang,An EOQ Model with Controllable Selling Rate.,2008,25,APJOR,2,db/journals/apjor/apjor25.html#ChangC08,https://doi.org/10.1142/S0217595908001687 +Jein-Shan Chen,On Some NCP-Functions Based on the Generalized Fischer-burmeister Function.,2007,24,APJOR,3,db/journals/apjor/apjor24.html#Chen07a,https://doi.org/10.1142/S0217595907001292 +Deng-Feng Li,"Notes on ""Linear Programming Technique to Solve Two-Person Matrix Games with Interval Pay-Offs"".",2011,28,APJOR,6,db/journals/apjor/apjor28.html#Li11a,https://doi.org/10.1142/S021759591100351X +Hua He,Revenue Share Contract Design with Marketing Strategy Types of Supplier.,2018,35,APJOR,2,db/journals/apjor/apjor35.html#HeM18,https://doi.org/10.1142/S021759591840002X +Chin-Tsai Lin,Real Options: batch Process and Market entry/Exit Decisions under Uncertainty.,2004,21,APJOR,1,db/journals/apjor/apjor21.html#LinW04,https://doi.org/10.1142/S0217595904000023 +Madhu Jain,Software Reliability Issues under Operational and Testing Constraints.,2005,22,APJOR,1,db/journals/apjor/apjor22.html#JainP05,https://doi.org/10.1142/S021759590500042X +Shidong Wang,Decomposition Algorithms for the Interval Scheduling Problem.,2010,27,APJOR,4,db/journals/apjor/apjor27.html#WangZZ10,https://doi.org/10.1142/S0217595910002831 +Chin-Tsai Lin,The cutoff Transaction Size of a Quadratic Concave Holding and Penalty Cost Functions to the Information Value Applying to the newsboy Model.,2006,23,APJOR,1,db/journals/apjor/apjor23.html#LinT06,https://doi.org/10.1142/S0217595906000784 +Xiaoying Cheng,Optimal Pricing Decisions for the Online Video Platform Under Customer Choice.,2018,35,APJOR,1,db/journals/apjor/apjor35.html#ChengMSB18,https://doi.org/10.1142/S0217595918500021 +Juanjuan Qin,Retail Order-Taking Strategies Under Competing Trade Credit Policies With Varying Demands.,2017,34,APJOR,1,db/journals/apjor/apjor34.html#QinZXL17,https://doi.org/10.1142/S0217595917400103 +B. Ramaseshan,A Retail Category Management Model Integrating Shelf Space and inventory Levels.,2009,26,APJOR,4,db/journals/apjor/apjor26.html#RamaseshanAC09,https://doi.org/10.1142/S0217595909002304 +Ning Zhang,No Gap Second-order Optimality Conditions for a Matrix Cone Programming Induced by the Nuclear Norm.,2016,33,APJOR,2,db/journals/apjor/apjor33.html#ZhangZ16,https://doi.org/10.1142/S021759591650010X +Yung-Ho Chiu,Measuring the Repair Performance for stricken Cultivated Land and Agricultural Efficiency in China with a Modified Two-Stage DEA Model.,2011,28,APJOR,5,db/journals/apjor/apjor28.html#ChiuHT11,https://doi.org/10.1142/S021759591100348X +Srinivas R. Chakravarthy,"Erratum: ""Analysis of a Multi-Server Queue with Markovian Arrivals and Synchronous Phase Type vacations"".",2010,27,APJOR,6,db/journals/apjor/apjor27.html#Chakravarthy10,https://doi.org/10.1142/S0217595910002995 +Nirmal Kumar Mahapatra,Production-inventory Model for a deteriorating Item with Imprecise Preparation Time for Production in a Finite Time Horizon.,2006,23,APJOR,2,db/journals/apjor/apjor23.html#MahapatraM06,https://doi.org/10.1142/S0217595906000826 +Guiyi Wei,Scheduling with Position-Based deteriorating jobs and Multiple deteriorating rate-Modifying Activities.,2014,31,APJOR,1,db/journals/apjor/apjor31.html#WeiQJ14,https://doi.org/10.1142/S0217595914500092 +Yi Wang,A Chance-Constrained Portfolio Selection Problem under T-Distribution.,2007,24,APJOR,4,db/journals/apjor/apjor24.html#WangCZ07,https://doi.org/10.1142/S0217595907001401 +Jianxin Chen,A Risk-Averse Newsvendor Model Under Trade Credit Contract with CVaR.,2017,34,APJOR,3,db/journals/apjor/apjor34.html#ChenZ17,https://doi.org/10.1142/S0217595917400127 +Aristotelis E. Thanos,An Evolutionary Sequential Sampling Algorithm for Multi-Objective Optimization.,2016,33,APJOR,1,db/journals/apjor/apjor33.html#ThanosCS16,https://doi.org/10.1142/S0217595916500068 +Horng-Jinh Chang,A Simple Solution Method for the Finite horizon EOQ Model for deteriorating Items with Cost Changes.,2011,28,APJOR,6,db/journals/apjor/apjor28.html#ChangL11,https://doi.org/10.1142/S0217595911003314 +özlem Aydin,Fmcdm for personnel Assignment in Turkish Armed Forces.,2008,25,APJOR,1,db/journals/apjor/apjor25.html#Aydin08,https://doi.org/10.1142/S021759590800164X +Ata Allah Taleizadeh,Stochastic Multi-Objectives Supply Chain Optimization with Forecasting Partial Backordering Rate: A Novel Hybrid Method of Meta Goal Programming and Evolutionary Algorithms.,2017,34,APJOR,4,db/journals/apjor/apjor34.html#Taleizadeh17,https://doi.org/10.1142/S021759591750021X +Wenjie Li,An Improved Online Algorithm for the Online Preemptive Scheduling of Equal-Length Intervals on a Single Machine with Lookahead.,2015,32,APJOR,6,db/journals/apjor/apjor32.html#LiY15,https://doi.org/10.1142/S0217595915500475 +Kyoko Yagi,The Valuation of Callable-Puttable Reverse Convertible bonds.,2010,27,APJOR,2,db/journals/apjor/apjor27.html#YagiS10,https://doi.org/10.1142/S0217595910002636 +Leonid Churilov,Hyper sensitivity Analysis of portfolio Optimization Problems.,2004,21,APJOR,3,db/journals/apjor/apjor21.html#ChurilovBSR04,https://doi.org/10.1142/S0217595904000175 +Chenchen Wu,Safe Approximations for Distributionally Robust Joint Chance Constrained Program.,2015,32,APJOR,1,db/journals/apjor/apjor32.html#WuXZ15,https://doi.org/10.1142/S0217595915400047 +Amal Abdel Razzac,A Game Theoretical Real Options Framework for Investment Decisions in Mobile TV Infrastructure.,2017,34,APJOR,4,db/journals/apjor/apjor34.html#RazzacSEHC17,https://doi.org/10.1142/S0217595917500142 +Jesus R. Artalejo,Preface - retrial Queues: Methodological Advances and Applications.,2014,31,APJOR,2,db/journals/apjor/apjor31.html#ArtalejoM14,https://doi.org/10.1142/S0217595914020011 +Chung-Lun Li,Polynomial-Time Solvability of Dynamic Lot Size Problems.,2016,33,APJOR,3,db/journals/apjor/apjor33.html#LiL16,https://doi.org/10.1142/S0217595916500184 +Serkan Eryilmaz,Reliability Evaluation of Linear Consecutive-Weighted-k-Out-of-n: F System.,2009,26,APJOR,6,db/journals/apjor/apjor26.html#EryilmazT09,https://doi.org/10.1142/S0217595909002481 +Ning-Rong Tao,Spatial Scheduling and workforce Assignment Problem in Block assembly shop of Shipbuilding.,2014,31,APJOR,1,db/journals/apjor/apjor31.html#TaoJZ14,https://doi.org/10.1142/S0217595914500067 +S. Y. Teng,An Integer L-shaped Algorithm for Time-Constrained Traveling Salesman Problem with Stochastic Travel and Service *.,2004,21,APJOR,2,db/journals/apjor/apjor21.html#TengOH04,https://doi.org/10.1142/S0217595904000229 +Qiulan Zhao,Rescheduling to Minimize the Maximum Lateness Under the Sequence Disruptions of Original Jobs.,2017,34,APJOR,5,db/journals/apjor/apjor34.html#ZhaoY17,https://doi.org/10.1142/S0217595917500245 +Lijuan Zhao,A Conic Affine Scaling Dogleg Method for nonlinear Optimization with Bound Constraints.,2013,30,APJOR,3,db/journals/apjor/apjor30.html#ZhaoS13,https://doi.org/10.1142/S0217595913400113 +Xin Liu,A Sequential Subspace Projection Method for Linear Symmetric Eigenvalue Problem.,2013,30,APJOR,3,db/journals/apjor/apjor30.html#LiuHC13,https://doi.org/10.1142/S0217595913400034 +Gendao Li,Robust Dynamic Pricing over Infinite Horizon in the Presence of Model Uncertainty.,2009,26,APJOR,6,db/journals/apjor/apjor26.html#LiXX09,https://doi.org/10.1142/S021759590900247X +G. Q. Wang,A New Polynomial Interior-Point Algorithm for the Monotone Linear complementarity Problem over Symmetric cones with Full NT-Steps.,2012,29,APJOR,2,db/journals/apjor/apjor29.html#Wang12,https://doi.org/10.1142/S0217595912500157 +Ling-Yun Chung,Alternative Reductions and Axiomatizations of the Unit-Level-Core.,2016,33,APJOR,6,db/journals/apjor/apjor33.html#ChungLHCL16,https://doi.org/10.1142/S0217595916500524 +Tsan-Ming Choi,Preface.,2017,34,APJOR,1,db/journals/apjor/apjor34.html#ChoiCY17,https://doi.org/10.1142/S0217595917020018 +V. S. S. Yadavalli,Two Commodity Coordinated inventory System with Markovian Demand.,2006,23,APJOR,4,db/journals/apjor/apjor23.html#YadavalliAA06,https://doi.org/10.1142/S0217595906001005 +Kjell Hausken,Combined Series and Parallel Systems subject to Individual versus Overarching Defense and Attack.,2013,30,APJOR,2,db/journals/apjor/apjor30.html#Hausken13,https://doi.org/10.1142/S021759591250056X +Keyvan Amini,Combination Adaptive Trust Region Method by Non-Monotone Strategy for unconstrained nonlinear Programming.,2011,28,APJOR,5,db/journals/apjor/apjor28.html#AminiA11,https://doi.org/10.1142/S0217595911003454 +Jian-Teng Xu,Decision Analysis for supplier in Two-echelon Supply Chain with discrete demand via Dynamic Game.,2014,31,APJOR,4,db/journals/apjor/apjor31.html#XuQ14,https://doi.org/10.1142/S0217595914500237 +Mohamed Abd Allah El-Hadidy,On Maximum Discounted Effort Reward Search Problem.,2016,33,APJOR,3,db/journals/apjor/apjor33.html#El-Hadidy16,https://doi.org/10.1142/S0217595916500196 +Ruhul A. Sarker,Differential Evolution for Solving multiobjective Optimization Problems.,2004,21,APJOR,2,db/journals/apjor/apjor21.html#SarkerA04,https://doi.org/10.1142/S0217595904000217 +M. R. Alirezaee,Proportional Production Trade-Offs in DEA.,2012,29,APJOR,6,db/journals/apjor/apjor29.html#AlirezaeeB12,https://doi.org/10.1142/S0217595912500352 +Dragan Vasiljevic,A Novel Linear Algorithm for Shortest Paths in Networks.,2013,30,APJOR,2,db/journals/apjor/apjor30.html#VasiljevicD13,https://doi.org/10.1142/S0217595912500546 +Jae-Hak Lim,Optimal Periodic Preventive Maintenance Schedules with Improvement Factors Depending on Number of Preventive Maintenances.,2007,24,APJOR,1,db/journals/apjor/apjor24.html#LimP07,https://doi.org/10.1142/S0217595907001139 +Farhad Shams,Improving Consistency Evaluation in fuzzy Multi-Attribute Pairwise Comparison-Based Decision-Making Methods.,2014,31,APJOR,4,db/journals/apjor/apjor31.html#ShamsMF14,https://doi.org/10.1142/S0217595914500249 +Lingfa Lu,Single Machine Scheduling with Job Delivery to minimize makespan.,2008,25,APJOR,1,db/journals/apjor/apjor25.html#LuY08,https://doi.org/10.1142/S0217595908001596 +J. Vakili,New Models for Computing the Distance of DMUs to the Weak Efficient Boundary of Convex and Nonconvex PPSs in DEA.,2017,34,APJOR,6,db/journals/apjor/apjor34.html#Vakili17,https://doi.org/10.1142/S021759591750035X +Lishun Zeng,On the generalized Mirrored Scheme for Double Round Robin tournaments in Sports Scheduling.,2013,30,APJOR,3,db/journals/apjor/apjor30.html#ZengM13,https://doi.org/10.1142/S0217595913400083 +Francesca Guerriero,A Hybrid Greedy Randomized Adaptive Search Heuristic to Solve the Dial-a-Ride Problem.,2013,30,APJOR,1,db/journals/apjor/apjor30.html#GuerrieroBG13,https://doi.org/10.1142/S0217595912500467 +Marc Sevaux,Tabu Search for Multiprocessor Scheduling: Application to High Level Synthesis.,2011,28,APJOR,2,db/journals/apjor/apjor28.html#SevauxSR11,https://doi.org/10.1142/S0217595911003132 +Srinivas R. Chakravarthy,Analysis of a Multi-Server Queue with Markovian Arrivals and Synchronous Phase Type vacations.,2009,26,APJOR,1,db/journals/apjor/apjor26.html#Chakravarthy09,https://doi.org/10.1142/S0217595909002134 +Luis A. San-José,An inventory System with Partial backlogging Modeled According to a Linear Function.,2005,22,APJOR,2,db/journals/apjor/apjor22.html#JoseSG05,https://doi.org/10.1142/S0217595905000571 +V. S. S. Yadavalli,Multi-Item Deterministic Fuzzy inventory Model.,2005,22,APJOR,3,db/journals/apjor/apjor22.html#YadavalliJR05,https://doi.org/10.1142/S0217595905000637 +Binfeng Li,A generalized Stochastic Petri-Net Model for Performance Analysis and Allocation Optimization of a Particular Repair System.,2013,30,APJOR,1,db/journals/apjor/apjor30.html#LiLGW13,https://doi.org/10.1142/S021759591250042X +Jianli Shi,Particle Swarm Optimization for Split Delivery Vehicle Routing Problem.,2018,35,APJOR,2,db/journals/apjor/apjor35.html#ShiZWF18,https://doi.org/10.1142/S0217595918400067 +Michi Nishihara,Computing Bounds on Risk-neutral Distributions from the Observed Prices of Call Options.,2010,27,APJOR,2,db/journals/apjor/apjor27.html#NishiharaYI10,https://doi.org/10.1142/S0217595910002648 +Zheng Liu,Optimal Independent Pricing Strategies of Dual-Channel Supply Chain Based on Risk-Aversion Attitudes.,2018,35,APJOR,2,db/journals/apjor/apjor35.html#LiuXY18,https://doi.org/10.1142/S0217595918400043 +Tingting Xiao,Tax Evasion: a Two-period Model.,2014,31,APJOR,3,db/journals/apjor/apjor31.html#XiaoLL14,https://doi.org/10.1142/S0217595914500171 +Fethi Jarray,A 4-Day or a 3-Day workweeks Scheduling Problem with a Given workforce Size.,2009,26,APJOR,5,db/journals/apjor/apjor26.html#Jarray09,https://doi.org/10.1142/S0217595909002419 +Chun-Jen Chung,Economic replenishment Plan with Imperfect Production Process and Business-Return Dependent Demand.,2012,29,APJOR,6,db/journals/apjor/apjor29.html#ChungW12,https://doi.org/10.1142/S0217595912500364 +Yan Zhang,A Nonmonotone Filter Barzilai-Borwein Method for Optimization.,2010,27,APJOR,1,db/journals/apjor/apjor27.html#ZhangSQ10,https://doi.org/10.1142/S0217595910002582 +Martin Mevissen,Sdp Relaxations for Quadratic Optimization Problems Derived from Polynomial Optimization Problems.,2010,27,APJOR,1,db/journals/apjor/apjor27.html#MevissenK10,https://doi.org/10.1142/S0217595910002533 +Yichi Shen,Stability of a GI/G/1 Queue: A Survey.,2018,35,APJOR,3,db/journals/apjor/apjor35.html#ShenW18,https://doi.org/10.1142/S021759591850015X +Yi Tao,Quantifying the Effect of Sharing Information in a Supply Chain Facing Supply Disruptions.,2016,33,APJOR,4,db/journals/apjor/apjor33.html#TaoLC16,https://doi.org/10.1142/S0217595916500299 +Wenxun Xing,Canonical Dual Solutions to Quadratic Optimization over One Quadratic Constraint.,2015,32,APJOR,1,db/journals/apjor/apjor32.html#XingFSZ15,https://doi.org/10.1142/S0217595915400072 +Qinghua Wu,An Extraction and Expansion Approach for Graph Coloring.,2013,30,APJOR,5,db/journals/apjor/apjor30.html#WuH13,https://doi.org/10.1142/S0217595913500188 +Brian Q. Rieksts,A Compounding Algorithm for 1-Fault Tolerant Broadcast Networks.,2007,24,APJOR,5,db/journals/apjor/apjor24.html#RiekstsV07,https://doi.org/10.1142/S0217595907001450 +Cheng-Ru Wu,The Choice of Foreign Production Strategy and Timing of Decision among Three Countries under Exchange Rate Uncertainty.,2004,21,APJOR,4,db/journals/apjor/apjor21.html#WuL04,https://doi.org/10.1142/S0217595904000369 +Sakib A. Mondal,Improved Algorithm for Resource Allocation Problems.,2018,35,APJOR,1,db/journals/apjor/apjor35.html#Mondal18,https://doi.org/10.1142/S0217595918500069 +Fanyong Meng 0001,Cooperative Fuzzy Games with Convex Combination Form.,2016,33,APJOR,1,db/journals/apjor/apjor33.html#0001C16,https://doi.org/10.1142/S021759591650007X +Yuelin Gao,Hybrid Coding PSO-ACO Co-Evolutionary Algorithm for Solving mixed-Integer Programming Problems.,2013,30,APJOR,3,db/journals/apjor/apjor30.html#GaoW13,https://doi.org/10.1142/S0217595913400010 +Subrata Mitra,An Algorithm for the generalized Vehicle Routing Problem with Backhauling.,2005,22,APJOR,2,db/journals/apjor/apjor22.html#Mitra05,https://doi.org/10.1142/S0217595905000522 +M. Suresh,Resource Constrained Multi-Project Scheduling Problem with Resource Transfer Times.,2015,32,APJOR,6,db/journals/apjor/apjor32.html#SureshDJ15,https://doi.org/10.1142/S0217595915500487 +Li-Wei Zhang,A Class of Nonlinear Lagrangians: Theory and Algorithm.,2008,25,APJOR,3,db/journals/apjor/apjor25.html#ZhangRWX08,https://doi.org/10.1142/S021759590800178X +Desheng Dash Wu,"Introduction to the Special Issue on ""Operational Research and Asia Risk Management"".",2011,28,APJOR,1,db/journals/apjor/apjor28.html#WuOSB11,https://doi.org/10.1142/S0217595911003016 +Juanjuan Qin,Carbon Emission Reduction and Pricing Strategies of Supply Chain under Various Demand Forecasting Scenarios.,2017,34,APJOR,1,db/journals/apjor/apjor34.html#QinRX17,https://doi.org/10.1142/S021759591740005X +Dae-Young Chung,Just-in-Time Scheduling under Scenario-Based Uncertainty.,2013,30,APJOR,2,db/journals/apjor/apjor30.html#ChungC13,https://doi.org/10.1142/S0217595912500558 +Anastasios Xanthopoulos,Optimal Sourcing Decisions for Unreliable Reverse Supply Chains.,2011,28,APJOR,1,db/journals/apjor/apjor28.html#XanthopoulosVI11,https://doi.org/10.1142/S0217595911003090 +Abhijeet Singh,A Vendor Managed Two-echelon inventory System for an Integrated Production Procurement Case.,2011,28,APJOR,3,db/journals/apjor/apjor28.html#SinghKA11,https://doi.org/10.1142/S0217595911003259 +Dharmendra Yadav,Application of minimax Distribution Free Procedure and Chebyshev Approach in mixed inventory Model involving Reducible lead-Time and setup Cost with Imprecise Demand.,2013,30,APJOR,4,db/journals/apjor/apjor30.html#YadavSK13,https://doi.org/10.1142/S0217595913500097 +Francisca Miguel,A Decomposition-Coordination Method for Complex Multi-Objective Systems.,2009,26,APJOR,6,db/journals/apjor/apjor26.html#MiguelGLRC09,https://doi.org/10.1142/S0217595909002444 +Utku Yildirim,Stability in Queueing Networks via the Finite Decomposition Property.,2008,25,APJOR,3,db/journals/apjor/apjor25.html#YildirimH08,https://doi.org/10.1142/S0217595908001808 +Xiangfeng Chen,The Effect of financing on a Budget-Constrained Supply Chain under Wholesale Price Contract.,2011,28,APJOR,4,db/journals/apjor/apjor28.html#ChenW11,https://doi.org/10.1142/S0217595911003193 +Lianbiao Cui,Designing and Forecasting the Differentiated Carbon Tax Scheme Based on the Principle of Ability to Pay.,2017,34,APJOR,1,db/journals/apjor/apjor34.html#CuiS17,https://doi.org/10.1142/S0217595917400048 +Vaithilingam Jeyakumar,Conditions for Global Optimality of Quadratic Minimization Problems with LMI Constraints.,2007,24,APJOR,2,db/journals/apjor/apjor24.html#JeyakumarW07,https://doi.org/10.1142/S021759590700119X +Xuefeng Wang,Genetic Algorithm Solution for Multi-Period Two-echelon Integrated Competitive/Uncompetitive Facility Location Problem.,2008,25,APJOR,1,db/journals/apjor/apjor25.html#WangSF08,https://doi.org/10.1142/S0217595908001626 +T. R. Gulati,A Note on Mond-Weir Type Second-Order Symmetric duality.,2007,24,APJOR,5,db/journals/apjor/apjor24.html#GulatiG07,https://doi.org/10.1142/S0217595907001486 +Javid Jouzdani,Applying Simulated Annealing to a generalized Cell Formation Problem considering Alternative Routings and Machine reliability.,2014,31,APJOR,4,db/journals/apjor/apjor31.html#JouzdaniBSF14,https://doi.org/10.1142/S0217595914500213 +Dragan Pamucar,Application of Adaptive Neuro Fuzzy Inference System in the Process of Transportation Support.,2013,30,APJOR,2,db/journals/apjor/apjor30.html#PamucarLP13,https://doi.org/10.1142/S0217595912500534 +Nicholas Beaumont,Fitting a Table to a Page using nonlinear Optimization.,2004,21,APJOR,2,db/journals/apjor/apjor21.html#Beaumont04,https://doi.org/10.1142/S0217595904000230 +Wei Liu,Equilibrium Conditions of a Logistics Service Supply Chain with a New Smoothing Algorithm.,2018,35,APJOR,2,db/journals/apjor/apjor35.html#LiuH18,https://doi.org/10.1142/S0217595918400031 +Saman Babaie-Kafaki,Descent Symmetrization of the Dai-Liao Conjugate Gradient Method.,2016,33,APJOR,2,db/journals/apjor/apjor33.html#Babaie-KafakiG16,https://doi.org/10.1142/S0217595916500081 +Chuanli Zhao,Single Machine Scheduling with a Learning Effect and a Rate-Modifying Activity.,2011,28,APJOR,4,db/journals/apjor/apjor28.html#ZhaoT11a,https://doi.org/10.1142/S0217595911003211 +Sajjad Zahir,Planning Relocation of People for Developing Surface Mines in Densely Populated Areas: Optimization of Multiple Objectives.,2011,28,APJOR,5,db/journals/apjor/apjor28.html#ZahirS11,https://doi.org/10.1142/S0217595911003442 +Ji-Bo Wang,Scheduling Problems with the Effects of deterioration and Learning.,2007,24,APJOR,2,db/journals/apjor/apjor24.html#WangC07,https://doi.org/10.1142/S021759590700122X +Dimitar Christozov,On Two Types of Warranties: warranty of Malfunctioning and warranty of Misinforming.,2009,26,APJOR,3,db/journals/apjor/apjor26.html#ChristozovCM09,https://doi.org/10.1142/S0217595909002274 +Yongjiang Guo,Stability of a 2-Station-5-Class Re-Entrant Line with Infinite Supply of Work.,2008,25,APJOR,4,db/journals/apjor/apjor25.html#GuoYW08,https://doi.org/10.1142/S0217595908001821 +Xiaofeng Hu,A Tabu Search Algorithm for a Pipe-Processing flowshop Scheduling Problem Minimizing Total tardiness in a Shipyard.,2009,26,APJOR,6,db/journals/apjor/apjor26.html#HuBJ09,https://doi.org/10.1142/S0217595909002493 +Wan-Yu Liu,On the Three-Dimensional Container Packing Problem under Home Delivery Service.,2011,28,APJOR,5,db/journals/apjor/apjor28.html#LiuLY11,https://doi.org/10.1142/S0217595911003466 +Kensaku Kikuta,A Search Game with unknown Examination Costs and Travel *.,2014,31,APJOR,3,db/journals/apjor/apjor31.html#Kikuta14,https://doi.org/10.1142/S0217595914500134 +Wei Liu,An Evolutionary Behavior Forecasting Model for Online Lenders and Borrowers in Peer-to-Peer Lending.,2017,34,APJOR,1,db/journals/apjor/apjor34.html#LiuX17,https://doi.org/10.1142/S0217595917400085 +Chin-Chia Wu,A Single-Machine deteriorating Job Scheduling Problem with a Non-Regular Criterion.,2011,28,APJOR,3,db/journals/apjor/apjor28.html#WuLS11,https://doi.org/10.1142/S0217595911003272 +Turan Arslan,A Weighted Euclidean Distance based TOPSIS Method for Modeling Public Subjective Judgments.,2017,34,APJOR,3,db/journals/apjor/apjor34.html#Arslan17,https://doi.org/10.1142/S021759591750004X +Tuan Phung-Duc,Multiserver retrial Queues with Two Types of nonpersistent Customers.,2014,31,APJOR,2,db/journals/apjor/apjor31.html#Phung-Duc14,https://doi.org/10.1142/S0217595914400090 +Masatoshi Miyake,Option Pricing for Weighted Average of Asset Prices.,2011,28,APJOR,5,db/journals/apjor/apjor28.html#MiyakeIT11,https://doi.org/10.1142/S0217595911003491 +Konstantin Avrachenkov,Stability Analysis and Simulation of n-class retrial System with Constant retrial rates and Poisson inputs.,2014,31,APJOR,2,db/journals/apjor/apjor31.html#AvrachenkovMNS14,https://doi.org/10.1142/S0217595914400028 +Liying Wang,Performance Evaluation of Aggregated Markov repairable Systems with Multi-Operating Levels.,2013,30,APJOR,4,db/journals/apjor/apjor30.html#WangC13,https://doi.org/10.1142/S0217595913500036 +Hardik N. Soni,An EOQ Model for Progressive Payment Scheme under DCF Approach.,2006,23,APJOR,4,db/journals/apjor/apjor23.html#SoniGS06,https://doi.org/10.1142/S0217595906001017 +Zhicong Zhang,Flow shop Scheduling with Reinforcement Learning.,2013,30,APJOR,5,db/journals/apjor/apjor30.html#ZhangWZH13,https://doi.org/10.1142/S0217595913500140 +Moss Anjuman Ara Begum,Implementation of fertilizer Policy in Bangladesh under Alternative Scenarios: an Application of multicriteria Analysis Modeling.,2007,24,APJOR,6,db/journals/apjor/apjor24.html#BegumMM07,https://doi.org/10.1142/S0217595907001528 +Jiang Zhang,Financially Optimal inventory Policies with Non-Linear replenishment Costs.,2010,27,APJOR,4,db/journals/apjor/apjor27.html#ZhangS10,https://doi.org/10.1142/S0217595910002806 +Reynold Byers,Atm Pricing and Location Games in the Retail Banking Industry.,2012,29,APJOR,1,db/journals/apjor/apjor29.html#ByersYZ12,https://doi.org/10.1142/S0217595912400015 +Liying Liu,A Modified Non-Monotone BFGS Method for Non-Convex Unconstrained Optimization.,2014,31,APJOR,5,db/journals/apjor/apjor31.html#LiuYW14,https://doi.org/10.1142/S021759591450033X +Barry Stannard,Application of Analytic Hierarchy Process in Multi-Objective Mixed Integer Programming for airlift Capacity Planning.,2006,23,APJOR,1,db/journals/apjor/apjor23.html#StannardZR06,https://doi.org/10.1142/S0217595906000760 +Yu-Jun Gong,On Sufficient Global Optimality Conditions for Bivalent Quadratic Programs with Quadratic Constraints.,2015,32,APJOR,4,db/journals/apjor/apjor32.html#GongX15,https://doi.org/10.1142/S0217595915500256 +Hiroshi Kunita,Average Options for Jump Diffusion Models.,2010,27,APJOR,2,db/journals/apjor/apjor27.html#KunitaY10,https://doi.org/10.1142/S0217595910002612 +Chunlei Xu,Uniqueness Conditions for A Class of and#8467*0-Minimization Problems.,2015,32,APJOR,1,db/journals/apjor/apjor32.html#XuZ15,https://doi.org/10.1142/S0217595915400023 +Prasenjit Mondal,Linear Programming and Zero-Sum Two-Person Undiscounted Semi-Markov Games.,2015,32,APJOR,6,db/journals/apjor/apjor32.html#Mondal15,https://doi.org/10.1142/S0217595915500438 +Xixi Yang,An Optimal Control Problem in a Risk Model with Stochastic Premiums and Periodic Dividend Payments.,2017,34,APJOR,3,db/journals/apjor/apjor34.html#YangTZL17,https://doi.org/10.1142/S0217595917400139 +Gendao Li,Optimal Dynamic Pricing for used Products in remanufacturing over an Infinite horizon.,2014,31,APJOR,3,db/journals/apjor/apjor31.html#LiS14,https://doi.org/10.1142/S0217595914500122 +Koichi Tokuno,Performance Analysis Based on the Number of Debuggings for Software System with Processing Time Limit Using Reliability Growth Model.,2008,25,APJOR,6,db/journals/apjor/apjor25.html#TokunoY08,https://doi.org/10.1142/S0217595908002000 +Yong Yin,Some Underlying Mathematical Definitions and Principles for Cellular manufacturing.,2014,31,APJOR,1,db/journals/apjor/apjor31.html#YinLK14,https://doi.org/10.1142/S0217595914500080 +Shuhui Ji,An Improved Convex 0-1 quadratic Program Reformulation for Chance-Constrained quadratic Knapsack Problems.,2013,30,APJOR,3,db/journals/apjor/apjor30.html#JiZS13,https://doi.org/10.1142/S0217595913400095 +Guosheng Ding,Single Machine Family Scheduling with Two Competing Agents to minimize makespan.,2011,28,APJOR,6,db/journals/apjor/apjor28.html#DingS11,https://doi.org/10.1142/S021759591100334X +Ming-Kuen Wang,Using FAHP Methods Evaluation and Screening of Intellectual Property Rights Managers in Taiwan.,2014,31,APJOR,6,db/journals/apjor/apjor31.html#WangH14,https://doi.org/10.1142/S0217595914500481 +Chun-Tao Chang,Inventory lot-Size Models under Trade Credits: a Review.,2008,25,APJOR,1,db/journals/apjor/apjor25.html#ChangTG08,https://doi.org/10.1142/S0217595908001651 +Ratapol Wudhikarn,Use of an Analytic Network Process and Monte Carlo Analysis in New Product Formula Selection Decisions.,2015,32,APJOR,2,db/journals/apjor/apjor32.html#WudhikarnCN15,https://doi.org/10.1142/S0217595915500074 +Jonas C. P. Yu,Optimal deteriorating Items inventory Model with a Three-echelon Supply Chain Strategic Alliance.,2010,27,APJOR,6,db/journals/apjor/apjor27.html#Yu10,https://doi.org/10.1142/S0217595910002958 +Marcos Escobar,Risk Management under a Factor Stochastic volatility Model.,2011,28,APJOR,1,db/journals/apjor/apjor28.html#EscobarO11,https://doi.org/10.1142/S0217595911003053 +R. Arumuganathan,Analysis of a Bulk Queue with Fast and Slow Service Rates and Multiple vacations.,2005,22,APJOR,2,db/journals/apjor/apjor22.html#ArumuganathanR05,https://doi.org/10.1142/S0217595905000534 +Alok Singh 0001,A Hybrid Heuristic for the Minimum Weight Vertex Cover Problem.,2006,23,APJOR,2,db/journals/apjor/apjor23.html#SinghG06,https://doi.org/10.1142/S0217595906000905 +Fang-Chuan Lee,A Heuristic Approach for Solving Serially Distributed Storage Depots under General-Integer Policy.,2007,24,APJOR,4,db/journals/apjor/apjor24.html#LeeW07,https://doi.org/10.1142/S0217595907001346 +Jie Wei,Pricing Decisions for a Closed-Loop Supply Chain in a Fuzzy Environment.,2012,29,APJOR,1,db/journals/apjor/apjor29.html#WeiZL12,https://doi.org/10.1142/S0217595912400039 +Enrique Ballestero,Selecting Textile Products by manufacturing Companies under Uncertainty.,2004,21,APJOR,2,db/journals/apjor/apjor21.html#Ballestero04,https://doi.org/10.1142/S0217595904000102 +P. K. Kapur,Optimal Allocation of Testing Resource for a Modular Software.,2004,21,APJOR,3,db/journals/apjor/apjor21.html#KapurJB04,https://doi.org/10.1142/S0217595904000278 +Canrong Zhang,Simultaneous Allocation of Berths and Quay Cranes under Discrete Berth Situation.,2018,35,APJOR,3,db/journals/apjor/apjor35.html#ZhangWQM18,https://doi.org/10.1142/S0217595918500112 +Longmin He,A Hybrid Two-Stage flowshop Scheduling Problem.,2007,24,APJOR,1,db/journals/apjor/apjor24.html#HeSL07,https://doi.org/10.1142/S0217595907001036 +Bum Hwan Park,Column Generation Approach to Line Planning with Various Halting Patterns - Application to the Korean High-Speed Railway.,2013,30,APJOR,4,db/journals/apjor/apjor30.html#ParkSHR13,https://doi.org/10.1142/S0217595913500061 +Ke Chen,Scheduling Position-Based deteriorating jobs with Multiple rate-Modifying Activities and Past-sequence-dependent Delivery *.,2014,31,APJOR,3,db/journals/apjor/apjor31.html#ChenJGW14,https://doi.org/10.1142/S0217595914500183 +Tai-Yue Wang,Comparison of Scheduling Efficiency in Two/Three-Machine no-Wait Flow Shop Problem Using Simulated Annealing and Genetic Algorithm.,2006,23,APJOR,1,db/journals/apjor/apjor23.html#WangYL06,https://doi.org/10.1142/S0217595906000802 +I-Lin Wang,On Solving Shortest Paths with a Least-Squares primal-Dual Algorithm.,2008,25,APJOR,2,db/journals/apjor/apjor25.html#Wang08,https://doi.org/10.1142/S0217595908001699 +Wade D. Cook,Efficiency Measurement of Multistage Processes: Context Dependent Numbers of Stages.,2017,34,APJOR,6,db/journals/apjor/apjor34.html#CookGLLLZ17,https://doi.org/10.1142/S0217595917500324 +Zhongwen Chen,A Penalty-Free Method with Trust Region for Nonlinear Semidefinite Programming.,2015,32,APJOR,1,db/journals/apjor/apjor32.html#ChenM15,https://doi.org/10.1142/S0217595915400060 +Yu-Bin Wu,"A note on ""Scheduling Problems with the effects of deterioration and Learning"".",2014,31,APJOR,3,db/journals/apjor/apjor31.html#WuHLJ14,https://doi.org/10.1142/S0217595914500110 +Srinivas R. Chakravarthy,A Multi-Server Queueing Model with Markovian Arrivals and Multiple Thresholds.,2007,24,APJOR,2,db/journals/apjor/apjor24.html#Chakravarthy07,https://doi.org/10.1142/S0217595907001164 +Jinjiang Yuan,Rescheduling with Release dates to minimize Total Sequence Disruption under a Limit on the makespan.,2007,24,APJOR,6,db/journals/apjor/apjor24.html#YuanMLL07,https://doi.org/10.1142/S021759590700153X +Shang-Chia Liu,A Faster FPTAS for a Supply Chain Scheduling Problem to Minimize Holding Costs with Outsourcing.,2016,33,APJOR,5,db/journals/apjor/apjor33.html#LiuW16a,https://doi.org/10.1142/S0217595916500391 +Subrata Saha,Integrated Dynamic Pricing for Seasonal Products with Price and Time Dependent Demand.,2010,27,APJOR,3,db/journals/apjor/apjor27.html#SahaB10,https://doi.org/10.1142/S0217595910002764 +Narender Kumar,Approximate Efficiency for n-Set multiobjective fractional Programming.,2004,21,APJOR,2,db/journals/apjor/apjor21.html#KumarBM04,https://doi.org/10.1142/S0217595904000199 +Zhongming Wu,A Symmetric Alternating Direction Method of Multipliers for Separable Nonconvex Minimization Problems.,2017,34,APJOR,6,db/journals/apjor/apjor34.html#WuLWH17,https://doi.org/10.1142/S0217595917500300 +Cheng He,Batching Machine Scheduling with bicriteria: Maximum Cost and makespan.,2014,31,APJOR,4,db/journals/apjor/apjor31.html#HeLYM14,https://doi.org/10.1142/S0217595914500250 +Chuanli Zhao,Single Machine Scheduling with an Availability Constraint and Rejection.,2014,31,APJOR,5,db/journals/apjor/apjor31.html#ZhaoT14,https://doi.org/10.1142/S0217595914500377 +Sami El-Ferik,Integrated Production Maintenance Model under Imperfect Age-Based Maintenance Policy and Non-Negligible Maintenance Times.,2010,27,APJOR,4,db/journals/apjor/apjor27.html#el-FerikB10,https://doi.org/10.1142/S0217595910002843 +Jesus R. Artalejo,Mean Value Analysis of Single Server retrial Queues.,2010,27,APJOR,3,db/journals/apjor/apjor27.html#ArtalejoR10,https://doi.org/10.1142/S0217595910002739 +Mariusz Krzak,"The Evaluation of an Ore deposit Development Prospect through Application of the ""Games against Nature"" Approach.",2013,30,APJOR,6,db/journals/apjor/apjor30.html#Krzak13,https://doi.org/10.1142/S0217595913500292 +Shan Gao 0002,Discrete-Time GIX/Geo/1/n Queue with Working vacations and vacation interruption.,2014,31,APJOR,1,db/journals/apjor/apjor31.html#GaoLD14,https://doi.org/10.1142/S0217595914500031 +H. Goto,Multi-Item newsvendor Problem with an Equality Resource Constraint.,2013,30,APJOR,1,db/journals/apjor/apjor30.html#Goto13,https://doi.org/10.1142/S0217595912500418 +Chinho Lin,A Joint EOQ Model for supplier and retailer with deteriorating items.,2004,21,APJOR,2,db/journals/apjor/apjor21.html#LinL04,https://doi.org/10.1142/S0217595904000114 +Neville J. Curtis,A Dynamic Conceptual Model to Explore Technology-Based perturbations to a Complex System: the land Force.,2004,21,APJOR,4,db/journals/apjor/apjor21.html#CurtisD04,https://doi.org/10.1142/S0217595904000345 +Sen-Kuei Liao,Optimal Selection of Program Suppliers for TV Companies Using an Analytic Network Process (ANP) Approach.,2010,27,APJOR,6,db/journals/apjor/apjor27.html#LiaoCT10,https://doi.org/10.1142/S0217595910002983 +Chuan-Li Zhao,Single Machine Scheduling with Linear deteriorating Jobs under Predictive Disruption.,2011,28,APJOR,3,db/journals/apjor/apjor28.html#ZhaoT11,https://doi.org/10.1142/S0217595911003302 +Alireza Eydi,A Multi-Period Multiple Objective Uncertain Programming Model to Allocate Order for Supplier Selection Problem.,2016,33,APJOR,6,db/journals/apjor/apjor33.html#EydiF16,https://doi.org/10.1142/S0217595916500457 +Babu Zachariah,A multicriteria Optimization Model for Quality of Modular Software Systems.,2007,24,APJOR,6,db/journals/apjor/apjor24.html#ZachariahR07,https://doi.org/10.1142/S0217595907001541 +Wentao Wu 0002,Identifying a Set of Key Members in Social Networks Using SDP-Based Stochastic Search and Integer Programming Algorithms.,2017,34,APJOR,3,db/journals/apjor/apjor34.html#WuCCG17,https://doi.org/10.1142/S0217595917500026 +Xinhong Lu,Estimating bivariate GARCH-Jump Model Based on High Frequency Data: the Case of Revaluation of the Chinese Yuan in July 2005.,2010,27,APJOR,2,db/journals/apjor/apjor27.html#LuKM10,https://doi.org/10.1142/S0217595910002697 +J. H. Park,An Optimal Block preventive Maintenance Policy for a Multi-Unit System Considering Imperfect Maintenance.,2009,26,APJOR,6,db/journals/apjor/apjor26.html#ParkLHL09,https://doi.org/10.1142/S021759590900250X +Jian-Wen Fang,Research on Innovation Efficiency and Technology Gap in China Economic Development.,2017,34,APJOR,2,db/journals/apjor/apjor34.html#FangC17,https://doi.org/10.1142/S0217595917500051 +Wensi Zhang,Impact of Emergency Order in Price-Dependent Newsvendor Problems.,2017,34,APJOR,2,db/journals/apjor/apjor34.html#ZhangLZC17,https://doi.org/10.1142/S0217595917500014 +Quan-Lin Li,Tail Probabilities in Queueing Processes.,2014,31,APJOR,2,db/journals/apjor/apjor31.html#Li14,https://doi.org/10.1142/S0217595914400077 +Hailin Sun,A smoothing penalized Sample Average Approximation Method for Stochastic Programs with Second-Order Stochastic Dominance Constraints.,2013,30,APJOR,3,db/journals/apjor/apjor30.html#SunXW13,https://doi.org/10.1142/S0217595913400022 +Arnt-Gunnar Lium,Correlations in Stochastic Programming: a Case from Stochastic Service Network Design.,2007,24,APJOR,2,db/journals/apjor/apjor24.html#LiumCW07,https://doi.org/10.1142/S0217595907001206 +Shi-Sheng Li,Scheduling with Rejection and a Deteriorating Maintenance Activity on a Single Machine.,2017,34,APJOR,2,db/journals/apjor/apjor34.html#LiC17,https://doi.org/10.1142/S0217595917500105 +Shibaji Panda,A Note on EPQ Model for Seasonal perishable Products with Stock Dependent Demand.,2008,25,APJOR,3,db/journals/apjor/apjor25.html#PandaSB08,https://doi.org/10.1142/S0217595908001766 +Shih-Fang Lo,Does Size Matter? Finding the Profitability and Marketability Benchmark of Financial Holding Companies.,2006,23,APJOR,2,db/journals/apjor/apjor23.html#LoL06,https://doi.org/10.1142/S0217595906000930 +Zhenyou Wang,Single Machine Two-Agent Scheduling with Deteriorating Jobs.,2016,33,APJOR,5,db/journals/apjor/apjor33.html#WangWW16,https://doi.org/10.1142/S0217595916500342 +Qi Xu,The Influence of Online Subsidies Service on Online-to-Offline Supply Chain.,2018,35,APJOR,2,db/journals/apjor/apjor35.html#XuWLT18,https://doi.org/10.1142/S0217595918400079 +Shibaji Panda,Determination of EOQ of Multi-Item inventory Problems through nonlinear Goal Programming with penalty Function.,2005,22,APJOR,4,db/journals/apjor/apjor22.html#PandaBB05,https://doi.org/10.1142/S0217595905000728 +Kazuki Iwamoto,Discrete Repair-Cost Limit Replacement Policies with/without Imperfect Repair.,2008,25,APJOR,6,db/journals/apjor/apjor25.html#IwamotoDK08,https://doi.org/10.1142/S0217595908001985 +Kebing Chen,Information Disclosure Model Under Supply Chain Competition with Asymmetric Demand Disruption.,2016,33,APJOR,6,db/journals/apjor/apjor33.html#ChenXF16,https://doi.org/10.1142/S0217595916500433 +Qiang Gao,Two-Machine Flow shop Scheduling with Individual Operation's rejection.,2014,31,APJOR,1,db/journals/apjor/apjor31.html#GaoL14,https://doi.org/10.1142/S021759591450002X +Jie Xu 0004,Simulation Optimization: A Review and Exploration in the New Era of Cloud Computing and Big Data.,2015,32,APJOR,3,db/journals/apjor/apjor32.html#XuHCL15,https://doi.org/10.1142/S0217595915500190 +Izhar Ahmad,Nondifferentiable Second-Order Symmetric duality.,2005,22,APJOR,1,db/journals/apjor/apjor22.html#AhmadH05,https://doi.org/10.1142/S0217595905000406 +Jeffrey J. Hunter,Simple Procedures for Finding Mean First Passage Times in Markov Chains.,2007,24,APJOR,6,db/journals/apjor/apjor24.html#Hunter07a,https://doi.org/10.1142/S0217595907001553 +Prakash L. Abad,Quantity Restrictions and the Reseller's Response to a Temporary Price Reduction or an Announced Price Increase.,2006,23,APJOR,1,db/journals/apjor/apjor23.html#Abad06,https://doi.org/10.1142/S021759590600084X +Zhuo Fu,A Branch-and-Bound Algorithm for Finding All Optimal Solutions of the Assignment Problem.,2007,24,APJOR,6,db/journals/apjor/apjor24.html#FuEW07,https://doi.org/10.1142/S0217595907001565 +Jozef Kratica,Solving the uncapacitated Multiple Allocation P-Hub Center Problem by Genetic Algorithm.,2006,23,APJOR,4,db/journals/apjor/apjor23.html#KraticaS06,https://doi.org/10.1142/S0217595906001042 +Chengwen Jiao,A Best Possible Online Algorithm for Scheduling to minimize Maximum Flow-Time on Bounded batch Machines.,2014,31,APJOR,4,db/journals/apjor/apjor31.html#JiaoLY14,https://doi.org/10.1142/S0217595914500304 +Chi-Jen Lin,Sensitivity Analysis of Objective Function Coefficients of the Assignment Problem.,2007,24,APJOR,2,db/journals/apjor/apjor24.html#LinW07,https://doi.org/10.1142/S0217595907001115 +Sungmook Lim,A New Admissible Pivot Method for Linear Programming.,2004,21,APJOR,4,db/journals/apjor/apjor21.html#LimP04,https://doi.org/10.1142/S0217595904000394 +Chyan Yang,Performance Measurement in Military Provisions: the Case of Retail Stores of Taiwan's General Welfare Service Ministry.,2007,24,APJOR,3,db/journals/apjor/apjor24.html#YangWL07,https://doi.org/10.1142/S0217595907001267 +Yanshuang Zhang,Development of a Multi-period Output Model for Considering Time Lag Effect.,2016,33,APJOR,3,db/journals/apjor/apjor33.html#ZhangJ16,https://doi.org/10.1142/S0217595916500214 +Suresh Kumar Goyal,Economic Order quantity under Conditions of a One-Time-only Extended permissible Delay Period in Payments.,2008,25,APJOR,2,db/journals/apjor/apjor25.html#GoyalC08,https://doi.org/10.1142/S0217595908001675 +Zhen-Jun Shi,Convergence Property and Modifications of a Memory Gradient Method.,2005,22,APJOR,4,db/journals/apjor/apjor22.html#ShiS05,https://doi.org/10.1142/S0217595905000625 +Jianwei Lin,The Valuation of the Basket CDS in a Primary-Subsidiary Model.,2011,28,APJOR,2,db/journals/apjor/apjor28.html#LinLWZ11,https://doi.org/10.1142/S0217595911003144 +Wim Hordijk,A Genetic Algorithm for Finding Good Balanced Sequences in a Customer Assignment Problem with no State Information.,2015,32,APJOR,3,db/journals/apjor/apjor32.html#HordijkHH15,https://doi.org/10.1142/S0217595915500153 +Wei Geng,Error Analysis of an Approximate Optimal Policy for an inventory System with Stochastic and continuous Demands.,2012,29,APJOR,6,db/journals/apjor/apjor29.html#GengLZ12,https://doi.org/10.1142/S021759591250039X +Andrey Garnaev,A Searcher versus Hider Game with Incomplete Information about Search Resources.,2013,30,APJOR,2,db/journals/apjor/apjor30.html#GarnaevF13,https://doi.org/10.1142/S0217595912500522 +S. Q. Liu,Metaheuristics for the Mixed shop Scheduling Problem.,2004,21,APJOR,1,db/journals/apjor/apjor21.html#LiuO04,https://doi.org/10.1142/S0217595904000072 +Lele Zhang,On-Line Scheduling of Empty Containers.,2012,29,APJOR,4,db/journals/apjor/apjor29.html#ZhangW12,https://doi.org/10.1142/S0217595912500182 +Tom Van Woensel,Modeling Traffic Flows with Queueing Models: a Review.,2007,24,APJOR,4,db/journals/apjor/apjor24.html#WoenselV07,https://doi.org/10.1142/S0217595907001383 +Yeh-Chun Juan,A Constraint Satisfaction Coordination Approach for Distributed Supply Chain Production Planning.,2014,31,APJOR,6,db/journals/apjor/apjor31.html#JuanP14,https://doi.org/10.1142/S0217595914500419 +Lixin Tang,Preface of Special Issue of APJOR Operational Research (OR) and Environment.,2017,34,APJOR,3,db/journals/apjor/apjor34.html#TangMO17,https://doi.org/10.1142/S021759591702002X +Jing Hou,Comparative Studies of Three Backup Contracts Under Supply Disruptions.,2015,32,APJOR,2,db/journals/apjor/apjor32.html#HouH15,https://doi.org/10.1142/S0217595915500062 +Shisheng Li,Scheduling Proportionally deteriorating Jobs in Two-Machine Open shop with a Non-Bottleneck Machine.,2011,28,APJOR,5,db/journals/apjor/apjor28.html#Li11,https://doi.org/10.1142/S0217595911003478 +Xiang Chu,Triage Scheduling Optimization for Mass Casualty and Disaster Response.,2015,32,APJOR,6,db/journals/apjor/apjor32.html#ChuZK15,https://doi.org/10.1142/S0217595915500414 +Robert Cuckler,Optimal Parallel Machine Allocation Problem in IC Packaging Using IC-PSO: An Empirical Study.,2017,34,APJOR,6,db/journals/apjor/apjor34.html#CucklerCH17,https://doi.org/10.1142/S0217595917500348 +Horng-Jinh Chang,The Effect of Credit Period on the Optimal lot Size for deteriorating items with Time varying Demand and deterioration Rates.,2005,22,APJOR,2,db/journals/apjor/apjor22.html#ChangD05,https://doi.org/10.1142/S0217595905000546 +Gholam Reza Jahanshahloo,Finding the Reference Set of a Decision Making Unit.,2008,25,APJOR,4,db/journals/apjor/apjor25.html#JahanshahlooSM08,https://doi.org/10.1142/S0217595908001869 +Bermawi P. Iskandar,Two New Servicing Strategies for Products sold with warranty.,2012,29,APJOR,3,db/journals/apjor/apjor29.html#IskandarJM12,https://doi.org/10.1142/S0217595912400222 +Wei Sun 0018,The Allocation of Customers in a Discrete-Time Multi-Server Queueing System.,2010,27,APJOR,6,db/journals/apjor/apjor27.html#SunTL10,https://doi.org/10.1142/S0217595910002922 +Chung-Ho Chen,Economic Production Run Length and warranty Period for Product with Weibull Lifetime.,2008,25,APJOR,6,db/journals/apjor/apjor25.html#Chen08,https://doi.org/10.1142/S0217595908001997 +Yu Zhou,An Edge-Turbulence Algorithm for the 2-MRS Problem on Trees with Unreliable Edges.,2015,32,APJOR,1,db/journals/apjor/apjor32.html#ZhouDWC15,https://doi.org/10.1142/S0217595915400102 +Congjun Rao,Bidding Behavior and Equilibrium Excursion of Uniform Price Auction Mechanism.,2017,34,APJOR,6,db/journals/apjor/apjor34.html#RaoZZGW17,https://doi.org/10.1142/S0217595917500282 +Lele Zhang,Online Machine Scheduling with Family Setups.,2016,33,APJOR,4,db/journals/apjor/apjor33.html#ZhangW16,https://doi.org/10.1142/S0217595916500275 +Run H. Niu,Pricing and inventory Strategies for a Two-Stage Dual-Channel Supply Chain.,2012,29,APJOR,1,db/journals/apjor/apjor29.html#NiuZCJ12,https://doi.org/10.1142/S0217595912400040 +Vadlamani Ravi,Optimization of Complex System Reliability by a Modified Great Deluge Algorithm.,2004,21,APJOR,4,db/journals/apjor/apjor21.html#Ravi04,https://doi.org/10.1142/S0217595904000357 +Shu-Xia Zhang,Scheduling with Discretely Compressible Release dates to minimize makespan.,2010,27,APJOR,4,db/journals/apjor/apjor27.html#ZhangCZ10,https://doi.org/10.1142/S0217595910002818 +Philip Y. L. Wong,Portfolio Performance Benchmarking with Data envelopment Analysis.,2013,30,APJOR,5,db/journals/apjor/apjor30.html#WongLG13,https://doi.org/10.1142/S0217595913500115 +Kefeng Wang,Achieving Better Solutions for Vehicle Routing Problem Involving Split Deliveries and Pickups Using a Competitive Decision Algorithm.,2015,32,APJOR,4,db/journals/apjor/apjor32.html#WangYN15,https://doi.org/10.1142/S0217595915500220 +Wei Li 0042,Optimal Design of a Multi-State Weighted Series-Parallel System Using Physical Programming and Genetic Algorithms.,2011,28,APJOR,4,db/journals/apjor/apjor28.html#LiZM11,https://doi.org/10.1142/S0217595911003235 +Alexander Engau,Some Experiences with Solving Semidefinite Programming Relaxations of Binary quadratic Optimization Models in Computational Biology.,2014,31,APJOR,4,db/journals/apjor/apjor31.html#Engau14,https://doi.org/10.1142/S0217595914500225 +Noam Paz,An M/M/1 Queue in Random Environment with disasters.,2014,31,APJOR,3,db/journals/apjor/apjor31.html#PazY14,https://doi.org/10.1142/S021759591450016X +Yu Cao,Predicting Financial Distress of Chinese Listed Companies Using Rough Set Theory and Support Vector Machine.,2011,28,APJOR,1,db/journals/apjor/apjor28.html#CaoWW11,https://doi.org/10.1142/S0217595911003077 +Gholam Reza Jahanshahloo,Using the Minimum Distance of DMUs from the Frontier of the PPS for Evaluating Group Performance of DMUs in DEA.,2012,29,APJOR,2,db/journals/apjor/apjor29.html#JahanshahlooVM12,https://doi.org/10.1142/S0217595912500108 +Alireza Ghaffari Hadigheh,Matrix Perturbation and Optimal Partition Invariancy in Linear Optimization.,2015,32,APJOR,3,db/journals/apjor/apjor32.html#HadighehM15,https://doi.org/10.1142/S021759591550013X +Shabnam Razavyan,A Method for Generating a Well-Distributed Pareto Set in Multiple Objective Mixed Integer Linear Programs Based on the Decision Maker's Initial Aspiration Level.,2016,33,APJOR,4,db/journals/apjor/apjor33.html#Razavyan16,https://doi.org/10.1142/S0217595916500317 +Weiwei Zhang,Effect of the Return Policy in a Continuous-Time Newsvendor Problem.,2017,34,APJOR,6,db/journals/apjor/apjor34.html#ZhangLFW17,https://doi.org/10.1142/S0217595917500312 +Yongrok Choi,The Efficiency of major Ports under Logistics Risk in Northeast Asia.,2011,28,APJOR,1,db/journals/apjor/apjor28.html#Choi11,https://doi.org/10.1142/S0217595911003089 +Supachai Pathumnakul,Locating Sugar cane Loading Stations under Variations in cane Supply.,2012,29,APJOR,5,db/journals/apjor/apjor29.html#PathumnakulSEP12,https://doi.org/10.1142/S0217595912500285 +Chuanli Zhao,Due-Window Assignment for a Single Machine Scheduling with Both Deterioration and Positional Effects.,2015,32,APJOR,3,db/journals/apjor/apjor32.html#ZhaoT15,https://doi.org/10.1142/S0217595915500141 +Miantao Chao,A Linearized Alternating Direction Method of Multipliers with Substitution Procedure.,2015,32,APJOR,3,db/journals/apjor/apjor32.html#ChaoCZ15,https://doi.org/10.1142/S0217595915500116 +L. N. Pradeep Kumar Rallabandi,Improved Consistency Ratio for Pairwise Comparison Matrix in Analytic Hierarchy Processes.,2016,33,APJOR,3,db/journals/apjor/apjor33.html#RallabandiVR16,https://doi.org/10.1142/S0217595916500202 +Ivan Atencia,A Discrete-Time Geo/G/1 Retrial Queue with Server Breakdowns.,2006,23,APJOR,2,db/journals/apjor/apjor23.html#AtenciaM06,https://doi.org/10.1142/S0217595906000929 +Alan Lee,Adaptive Resource Allocation to Maximize Run-Out *.,2012,29,APJOR,3,db/journals/apjor/apjor29.html#LeeZ12,https://doi.org/10.1142/S0217595912400179 +Yongchao Liu,Stability Analysis of parametric generalized equations and Applications.,2013,30,APJOR,5,db/journals/apjor/apjor30.html#Liu13,https://doi.org/10.1142/S0217595913500176 +Chunlin Luo,Coordinating Supply Chain with Buy-Back Contracts in the Presence of Risk Aversion.,2018,35,APJOR,2,db/journals/apjor/apjor35.html#LuoTMC18,https://doi.org/10.1142/S0217595918400080 +Toshiyuki Sueyoshi,A Use of nonparametric Tests for DEA-Discriminant Analysis: a Methodological Comparison.,2004,21,APJOR,2,db/journals/apjor/apjor21.html#SueyoshiH04a,https://doi.org/10.1142/S0217595904000126 +Manabendra N. Pal,Exploring the Dimensionality of Service Quality: an Application of TOPSIS in the Indian Banking Industry.,2009,26,APJOR,1,db/journals/apjor/apjor26.html#PalC09,https://doi.org/10.1142/S0217595909002110 +Dharma Lesmono,Stochastic Dynamic Programming for Election Timing: a Game Theory Approach.,2006,23,APJOR,3,db/journals/apjor/apjor23.html#LesmonoT06,https://doi.org/10.1142/S0217595906000942 +Chun-Jen Chung,Optimal replenishment Policy for an Integrated Supplier-buyer deteriorating inventory Model Considering Multiple JIT Delivery and Other Cost Functions.,2007,24,APJOR,1,db/journals/apjor/apjor24.html#ChungW07,https://doi.org/10.1142/S0217595907001127 +Yuan-Yuan Lu,Scheduling Jobs with Truncated Exponential Sum-of-Logarithm-Processing-Times Based and Position-based Learning Effects.,2015,32,APJOR,4,db/journals/apjor/apjor32.html#LuTF15,https://doi.org/10.1142/S0217595915500268 +Weihua Liu,Capacity Procurement in Logistics Service Supply Chain with Demand Updating and Rational Expectation Behavior.,2017,34,APJOR,6,db/journals/apjor/apjor34.html#LiuZW17,https://doi.org/10.1142/S0217595917500294 +Bo Xu,Weighted Constrained Position Shift Model for Aircraft Arrival Sequencing and Scheduling Problem.,2016,33,APJOR,4,db/journals/apjor/apjor33.html#XuMHY16,https://doi.org/10.1142/S0217595916500287 +Bhavin J. Shah,Eoq Model for Time-Dependent deterioration Rate with a temporary Price discount.,2005,22,APJOR,4,db/journals/apjor/apjor22.html#ShahSS05,https://doi.org/10.1142/S0217595905000649 +G. Bajwa,Effectiveness Analysis of Deriving Priority Vectors from Reciprocal Pairwise Comparison Matrices.,2008,25,APJOR,3,db/journals/apjor/apjor25.html#BajwaCW08,https://doi.org/10.1142/S0217595908001754 +Jianfeng Ren,The NP-Hardness of Minimizing the Total Late Work on an Unbounded Batch Machine.,2009,26,APJOR,3,db/journals/apjor/apjor26.html#RenZS09,https://doi.org/10.1142/S0217595909002249 +Qinhong Zhang,Coordination of a Buyer-Vendor Supply Chain for a perishable Product under Symmetric and Asymmetric Information.,2011,28,APJOR,5,db/journals/apjor/apjor28.html#ZhangL11,https://doi.org/10.1142/S0217595911003508 +Chirag Surti,Pricing and inventory Decisions with uncertain Supply and stochastic demand.,2013,30,APJOR,6,db/journals/apjor/apjor30.html#SurtiHA13,https://doi.org/10.1142/S0217595913500309 +Yu Zhao,Grain Price Forecasting Using a Hybrid Stochastic Method.,2017,34,APJOR,5,db/journals/apjor/apjor34.html#ZhaoZSH17,https://doi.org/10.1142/S0217595917500208 +Xia Zhao,Coordination of Agri-Food Chain with Revenue-Sharing Contract under Stochastic Output and Stochastic Demand.,2011,28,APJOR,4,db/journals/apjor/apjor28.html#ZhaoW11,https://doi.org/10.1142/S021759591100320X +Yun-Shan Fu,Improved Projected Gradient Algorithms for Singly Linearly Constrained Quadratic Programs Subject to Lower and Upper Bounds.,2010,27,APJOR,1,db/journals/apjor/apjor27.html#FuD10,https://doi.org/10.1142/S0217595910002594 +Lujin Gong,A Trust Region Subspace Method for Large-Scale unconstrained Optimization.,2012,29,APJOR,4,db/journals/apjor/apjor29.html#Gong12,https://doi.org/10.1142/S0217595912500212 +Lanting Lu,Evaluation of the Arrows Method for Classification of Data.,2010,27,APJOR,1,db/journals/apjor/apjor27.html#LuC10,https://doi.org/10.1142/S0217595910002600 +Pei-Leen Liu,A System Dynamics Model for Modern AirLand Battle.,2014,31,APJOR,5,db/journals/apjor/apjor31.html#LiuSY14,https://doi.org/10.1142/S0217595914500316 +Lin Chen 0009,Approximating the Optimal Algorithm for Online Scheduling Problems via Dynamic Programming.,2015,32,APJOR,1,db/journals/apjor/apjor32.html#ChenYZ15,https://doi.org/10.1142/S0217595915400114 +Shang-Chia Liu,Common Due-Window Assignment and Group Scheduling with Position-Dependent Processing Times.,2015,32,APJOR,6,db/journals/apjor/apjor32.html#Liu15,https://doi.org/10.1142/S0217595915500451 +Byungho Jeong,A New Ranking Approach with a modified Cross Evaluation Matrix.,2013,30,APJOR,4,db/journals/apjor/apjor30.html#JeongO13,https://doi.org/10.1142/S0217595913500085 +Lei Yang,A Splitting Augmented Lagrangian Method for Low Multilinear-Rank Tensor Recovery.,2015,32,APJOR,1,db/journals/apjor/apjor32.html#YangHL15,https://doi.org/10.1142/S0217595915400084 +Bin Shen,Forecast Information Sharing for Managing Supply Chains in the Big Data Era: Recent Development and Future Research.,2017,34,APJOR,1,db/journals/apjor/apjor34.html#ShenC17,https://doi.org/10.1142/S0217595917400012 +Daisuke Ito,Pricing and Calibration of a Chooser Flexible CAP.,2010,27,APJOR,2,db/journals/apjor/apjor27.html#ItoOT10,https://doi.org/10.1142/S0217595910002661 +Jia Wu,A Sequential Convex Program Approach to an Inverse Linear Semidefinite Programming Problem.,2016,33,APJOR,4,db/journals/apjor/apjor33.html#WuZZL16,https://doi.org/10.1142/S0217595916500251 +Liang Wei,Three Optimization Models for multisplitting Preconditioner.,2013,30,APJOR,3,db/journals/apjor/apjor30.html#WeiW13,https://doi.org/10.1142/S0217595913400071 +Lingchen Kong,Vector-Valued Implicit Lagrangian for Symmetric Cone complementarity Problems.,2009,26,APJOR,2,db/journals/apjor/apjor26.html#KongTX09,https://doi.org/10.1142/S0217595909002171 +Runzi Luo,Semi-on-Line Scheduling Problem for Maximizing the Minimum Machine Completion Time on Three Special Uniform Machines.,2005,22,APJOR,2,db/journals/apjor/apjor22.html#LuoS05,https://doi.org/10.1142/S0217595905000558 +Tien Van Do,A New Finite-Source Queueing Model for Mobile Cellular Networks Applying Spectrum Renting.,2014,31,APJOR,2,db/journals/apjor/apjor31.html#DoWBSM14,https://doi.org/10.1142/S0217595914400041 +Safi Ur Rehman,A Mixed-Integer Linear Programming (MILP) Model for Short-Range Production Scheduling of Cement Quarry Operations.,2010,27,APJOR,3,db/journals/apjor/apjor27.html#RehmanA10,https://doi.org/10.1142/S0217595910002727 +Tyrone T. Lin,Applying Real Options and the Maximum NPV Rule to Market entry/Exit Strategies.,2005,22,APJOR,1,db/journals/apjor/apjor22.html#LinS05,https://doi.org/10.1142/S0217595905000443 +Philip Y. L. Wong,Facility Management Benchmarking: an Application of Data envelopment Analysis in Hong Kong.,2013,30,APJOR,5,db/journals/apjor/apjor30.html#WongLG13a,https://doi.org/10.1142/S0217595913500139 +Roberto Cordone,A Relax-and-Cut Algorithm for the Knapsack Node Weighted Steiner Tree Problem.,2008,25,APJOR,3,db/journals/apjor/apjor25.html#CordoneT08,https://doi.org/10.1142/S0217595908001791 +Hark-Chin Hwang,A posterior Competitiveness for List Scheduling Algorithm on Machines with Eligibility Constraints.,2004,21,APJOR,1,db/journals/apjor/apjor21.html#HwangCH04,https://doi.org/10.1142/S0217595904000084 +Yung-Hsiang Lu,Two-Stage Efficiency Measurement and Technological Heterogeneity: Evidence from the Biotechnological Industry in Taiwan.,2014,31,APJOR,1,db/journals/apjor/apjor31.html#LuCCH14,https://doi.org/10.1142/S0217595914500079 +S. K. Peer,A Multi-Criteria Procedure for the User Interface Components Layout Problem.,2009,26,APJOR,2,db/journals/apjor/apjor26.html#PeerSRN09,https://doi.org/10.1142/S0217595909002195 +Jiankui Yang,Stability of the Multi-Type reentrant Lines with Type Priority Service Discipline.,2009,26,APJOR,3,db/journals/apjor/apjor26.html#Yang09a,https://doi.org/10.1142/S0217595909002237 +Zhihong Jin,An Efficient Approach for the Three-Dimensional Container Packing Problem with Practical Constraints.,2004,21,APJOR,3,db/journals/apjor/apjor21.html#JinOD04,https://doi.org/10.1142/S0217595904000254 +Chun-an Liu,New Dynamic Multi-Objective Constrained Optimization Evolutionary Algorithm.,2015,32,APJOR,5,db/journals/apjor/apjor32.html#LiuWR15,https://doi.org/10.1142/S0217595915500360 +Antonio Sedeño-Noda,Shortest Path Simplex Algorithm with a Multiple Pivot Rule: a Comparative Study.,2010,27,APJOR,6,db/journals/apjor/apjor27.html#Sedeno-NodaG10,https://doi.org/10.1142/S0217595910002946 +Lkhamsuren Altangerel,On the Construction of Gap Functions for Variational Inequalities via Conjugate duality.,2007,24,APJOR,3,db/journals/apjor/apjor24.html#AltangerelBW07,https://doi.org/10.1142/S0217595907001309 +Guolin Yu,Optimality of Global Proper Efficiency for cone-Arcwise Connected Set-Valued Optimization using Contingent Epiderivative.,2013,30,APJOR,3,db/journals/apjor/apjor30.html#Yu13,https://doi.org/10.1142/S0217595913400046 +Regina Berretta,Metaheuristic Approaches for the Multilevel Resource-Constrained lot-sizing Problem with setup and lead *.,2005,22,APJOR,2,db/journals/apjor/apjor22.html#BerrettaFA05,https://doi.org/10.1142/S0217595905000510 +Ting Zhang,Demand Forecasting and Pricing Decision with the Entry of Store Brand under Various Information Sharing Scenarios.,2017,34,APJOR,2,db/journals/apjor/apjor34.html#ZhangZG17,https://doi.org/10.1142/S0217595917400188 +Xiang Li,Multi-Objective Optimization Approaches to Software Release Time Determination.,2012,29,APJOR,3,db/journals/apjor/apjor29.html#LiXN12,https://doi.org/10.1142/S0217595912400192 +Jong-Ryul Kim,Enhancing Internet Network Reliability with Integrated Framework of Multi-Objective Genetic Algorithm and Monte Carlo Simulation.,2008,25,APJOR,6,db/journals/apjor/apjor25.html#KimK08,https://doi.org/10.1142/S021759590800205X +Maw-Sheng Chern,A Comparison among Various inventory shortage Models for deteriorating items on the Basis of Maximizing Profit.,2005,22,APJOR,1,db/journals/apjor/apjor22.html#ChernCT05,https://doi.org/10.1142/S0217595905000455 +J. MacGregor Smith,M/G/C/k Performance Models in Manufacturing and Service Systems.,2008,25,APJOR,4,db/journals/apjor/apjor25.html#Smith08,https://doi.org/10.1142/S0217595908001857 +Wai Kin (Victor) Chan,Linear Programming Formulation of Idle Times for Single-Server Discrete-Event Simulation Models.,2016,33,APJOR,5,db/journals/apjor/apjor33.html#Chan16,https://doi.org/10.1142/S021759591650038X +Byung-Wook Wie,Open-Loop and Closed-Loop Models of Dynamic oligopoly in the Cruise Line Industry.,2004,21,APJOR,4,db/journals/apjor/apjor21.html#Wie04,https://doi.org/10.1142/S0217595904000187 +Byung-Cheon Choi,Min-Max Regret Version of the Linear Time-Cost Tradeoff Problem with Multiple Milestones and Completely Ordered Jobs.,2015,32,APJOR,5,db/journals/apjor/apjor32.html#ChoiP15,https://doi.org/10.1142/S0217595915500396 +Byung-Cheon Choi,An Ordered Flow Shop with Two Agents.,2016,33,APJOR,5,db/journals/apjor/apjor33.html#ChoiP16,https://doi.org/10.1142/S0217595916500378 +Yuxiang Yang,A Mathematical Programming Model with Equilibrium Constraints for Competitive Closed-Loop Supply Chain Network Design.,2017,34,APJOR,5,db/journals/apjor/apjor34.html#YangHQZ17,https://doi.org/10.1142/S0217595917500269 +Xiaona Zheng,Distribution Channel Strategies and Retailer Collusion in a Supply Chain with Multiple Retailers.,2018,35,APJOR,3,db/journals/apjor/apjor35.html#ZhengST18,https://doi.org/10.1142/S0217595918500148 +Byung-Cheon Choi,A Batch Scheduling Problem with Two Agents.,2015,32,APJOR,6,db/journals/apjor/apjor32.html#ChoiP15a,https://doi.org/10.1142/S021759591550044X +Fengmin Xu,A Continuation Approach Using NCP Function for Solving Max-Cut Problem.,2009,26,APJOR,4,db/journals/apjor/apjor26.html#XuXR09,https://doi.org/10.1142/S0217595909002298 +Rostislav Razumchik,Analysis of Finite Capacity Queue with Negative Customers and bunker for Ousted Customers using Chebyshev and Gegenbauer polynomials.,2014,31,APJOR,4,db/journals/apjor/apjor31.html#Razumchik14,https://doi.org/10.1142/S0217595914500298 +Tae Hyoung Kang,An Analysis of Accelerated Performance Degradation Tests Assuming the Arrhenius Stress-Relationship.,2008,25,APJOR,6,db/journals/apjor/apjor25.html#KangCY08,https://doi.org/10.1142/S0217595908002061 +Tal Avinadav,Stochastic Periodic-Review Models with Duration- and Quantity-Dependent Inventory Costs: Properties and Approximations.,2016,33,APJOR,4,db/journals/apjor/apjor33.html#Avinadav16,https://doi.org/10.1142/S0217595916500305 +Atsuo Suzuki,The Valuation of Russian Options for Double Exponential Jump Diffusion Processes.,2010,27,APJOR,2,db/journals/apjor/apjor27.html#SuzukiS10,https://doi.org/10.1142/S021759591000265X +Tyrone T. Lin,An Optimal Market entry/Exit Evaluation Model with Partial financing Funds.,2010,27,APJOR,2,db/journals/apjor/apjor27.html#LinKL10,https://doi.org/10.1142/S0217595910002673 +Hui Zhu,Global Convergence of a Special Case of the DAI-Yuan Family without Line Search.,2008,25,APJOR,3,db/journals/apjor/apjor25.html#ZhuC08,https://doi.org/10.1142/S0217595908001663 +Abolfazl Keshvari,An Extended Numeration Method for Solving Free disposal Hull Models in DEA.,2008,25,APJOR,5,db/journals/apjor/apjor25.html#KeshvariH08,https://doi.org/10.1142/S021759590800195X +Liang-Hsuan Chen,Multi-Objective Optimization in Reliability System Using Genetic Algorithm and Neural Network.,2008,25,APJOR,5,db/journals/apjor/apjor25.html#ChenC08,https://doi.org/10.1142/S0217595908001936 +Yoshihiro Takaya,A Maximal Predictability Portfolio Subject to a turnover Constraint.,2010,27,APJOR,1,db/journals/apjor/apjor27.html#TakayaK10,https://doi.org/10.1142/S0217595910002521 +Yong Xia,Convex Hull Presentation of a quadratically Constrained Set and its Application in Solving Quadratic Programming Problems.,2009,26,APJOR,6,db/journals/apjor/apjor26.html#Xia09,https://doi.org/10.1142/S0217595909002468 +Xi Gang Yuan,Bullwhip Effect Analysis in Two-Level Supply Chain Distribution Network Using Different Demand Forecasting Technology.,2016,33,APJOR,3,db/journals/apjor/apjor33.html#YuanZ16,https://doi.org/10.1142/S0217595916500160 +James R. Foulds,Bridge Lane Direction Specification for Sustainable Traffic Management.,2006,23,APJOR,2,db/journals/apjor/apjor23.html#FouldsF06,https://doi.org/10.1142/S0217595906000875 +Mohammad H. Almomani,Ordinal Optimization with Computing Budget Allocation for Selecting an Optimal Subset.,2016,33,APJOR,2,db/journals/apjor/apjor33.html#AlmomaniA16,https://doi.org/10.1142/S0217595916500093 +Bereket T. Tesfaldet,Automated Lecture Timetabling Using a Memetic Algorithm.,2008,25,APJOR,4,db/journals/apjor/apjor25.html#Tesfaldet08,https://doi.org/10.1142/S021759590800181X +Ching-Ter Chang,Efficient Structures of Achievement Functions for Goal Programming Models.,2007,24,APJOR,6,db/journals/apjor/apjor24.html#Chang07a,https://doi.org/10.1142/S0217595907001516 +Mehdi Ghazanfari,Educing Inconsistency in Fuzzy AHP by Mathematical Programming Models.,2004,21,APJOR,3,db/journals/apjor/apjor21.html#GhazanfariN04,https://doi.org/10.1142/S0217595904000291 +Lingchen Kong,Exact Low-Rank Matrix Recovery via Nonconvex Schatten P-Minimization.,2013,30,APJOR,3,db/journals/apjor/apjor30.html#KongX13,https://doi.org/10.1142/S0217595913400101 +Gang Qian,A Progressive equilibration Algorithm for General Market equilibrium Problems under Constraints.,2013,30,APJOR,3,db/journals/apjor/apjor30.html#QianHH13,https://doi.org/10.1142/S021759591340006X +Tuan Phung-Duc,An Efficient Method for Performance Analysis of Blended Call Centers with redial.,2014,31,APJOR,2,db/journals/apjor/apjor31.html#Phung-DucK14,https://doi.org/10.1142/S0217595914400089 +Pai Liu,Simulation Optimization for MRO Systems Operations.,2017,34,APJOR,2,db/journals/apjor/apjor34.html#LiuZSH17,https://doi.org/10.1142/S0217595917500038 +Hongyan Sang,An Iterated Local Search Algorithm for the Lot-Streaming Flow Shop Scheduling Problem.,2014,31,APJOR,6,db/journals/apjor/apjor31.html#SangGL14,https://doi.org/10.1142/S0217595914500456 +Jeffrey J. Hunter,The Distribution of Mixing * in Markov Chains.,2013,30,APJOR,1,db/journals/apjor/apjor30.html#Hunter13,https://doi.org/10.1142/S0217595912500455 +Ho Woo Lee,A Maintenance Model for Manufacturing lead Time in a Production System with BMAP Input and bilevel setup Control.,2008,25,APJOR,6,db/journals/apjor/apjor25.html#LeeP08,https://doi.org/10.1142/S0217595908002036 +Canrong Zhang,A Decision Support System for the Allocation of Yard Cranes and Blocks in Container Terminals.,2011,28,APJOR,6,db/journals/apjor/apjor28.html#ZhangZZM11,https://doi.org/10.1142/S0217595911003351 +Vincent Charles,Identification of Redundant Objective Functions in Multi-Objective Stochastic fractional Programming Problems.,2006,23,APJOR,2,db/journals/apjor/apjor23.html#CharlesD06,https://doi.org/10.1142/S0217595906000863 +Juan Du 0001,DEA Models for Parallel Systems: Game-Theoretic Approaches.,2015,32,APJOR,2,db/journals/apjor/apjor32.html#DuZCH15,https://doi.org/10.1142/S0217595915500086 +Yang Woo Shin,Fundamental Matrix of Transient QBD Generator with Finite States and Level Dependent Transitions.,2009,26,APJOR,5,db/journals/apjor/apjor26.html#Shin09,https://doi.org/10.1142/S0217595909002407 +Qian Cao,Online Order Scheduling Problem with the Same Order Size on Two Identical Machines.,2017,34,APJOR,2,db/journals/apjor/apjor34.html#CaoLW17,https://doi.org/10.1142/S0217595917500063 +Tao Li,A Bi-Level Model to Estimate the US Air Travel Demand.,2015,32,APJOR,2,db/journals/apjor/apjor32.html#Li15,https://doi.org/10.1142/S0217595915500098 +Dmitry Efrosinin,Confidence Intervals for Performance Measures of M/M/1 Queue with Constant Retrial Policy.,2015,32,APJOR,6,db/journals/apjor/apjor32.html#EfrosininWM15,https://doi.org/10.1142/S0217595915500463 +Xiao Min,Online Preemptive Hierarchical Scheduling on Two Uniform Machines with Rejection.,2015,32,APJOR,4,db/journals/apjor/apjor32.html#MinLDJ15,https://doi.org/10.1142/S021759591550027X +Wlodzimierz Ogryczak,On Dual Approaches to Efficient Optimization of LP Computable Risk Measures for Portfolio Selection.,2011,28,APJOR,1,db/journals/apjor/apjor28.html#OgryczakS11,https://doi.org/10.1142/S0217595911003041 +Mike Hewitt,Planning Strategies for Home Health Care Delivery.,2016,33,APJOR,5,db/journals/apjor/apjor33.html#HewittNN16,https://doi.org/10.1142/S021759591650041X +P. Sunil Dharmapala,Market- and Merit-Based Adjustment of faculty Salaries.,2007,24,APJOR,1,db/journals/apjor/apjor24.html#DharmapalaGS07,https://doi.org/10.1142/S0217595907001176 +Sebastian Sitarz,Sensitivity Analysis of Weak Efficiency in Multiple Objective Linear Programming.,2011,28,APJOR,4,db/journals/apjor/apjor28.html#Sitarz11,https://doi.org/10.1142/S0217595911003181 +Jan-Yee Kung,Some Scheduling Problems on a Single Machine with General Job Effects of Position-Dependent Learning and Start-Time-Dependent Deterioration.,2015,32,APJOR,2,db/journals/apjor/apjor32.html#KungS15,https://doi.org/10.1142/S0217595915500025 +Roza Azizi,Ranking Two-Stage Production Units in Data Envelopment Analysis.,2016,33,APJOR,1,db/journals/apjor/apjor33.html#AziziM16,https://doi.org/10.1142/S0217595916500020 +Yumei Hou,The Optimal inventory Control of a System with Random lead Time Where Random Supply interruptions Affect the replenishment.,2009,26,APJOR,4,db/journals/apjor/apjor26.html#HouZ09,https://doi.org/10.1142/S0217595909002341 +Pisut Pongchairerks,A Particle Swarm Optimization Algorithm on Job-Shop Scheduling Problems with Multi-Purpose Machines.,2009,26,APJOR,2,db/journals/apjor/apjor26.html#PongchairerksK09,https://doi.org/10.1142/S0217595909002158 +Mao Q. Li,Some Properties of Optimal multifunctions in parametric multiobjective Optimization with Set-Valued Maps.,2004,21,APJOR,1,db/journals/apjor/apjor21.html#LiC04,https://doi.org/10.1142/S0217595904000035 +Jianghua Wu,Information Sharing across Multiple Buyers in a Supply Chain.,2012,29,APJOR,1,db/journals/apjor/apjor29.html#WuIPZ12,https://doi.org/10.1142/S0217595912400052 +Zhenyou Wang,Permutation Flow Shop Problem with Shortening Job Processing Times.,2016,33,APJOR,4,db/journals/apjor/apjor33.html#WangWL16,https://doi.org/10.1142/S0217595916500329 +Zon-Yau Lee,Applying Improved DEA and VIKOR Methods to Evaluate the Operation Performance for World's Major TFT-LCD Manufacturers.,2015,32,APJOR,3,db/journals/apjor/apjor32.html#LeeP15,https://doi.org/10.1142/S0217595915500207 +Shuenn-Ren Cheng,A Single-Machine Two-Agent Scheduling Problem by GA Approach.,2012,29,APJOR,2,db/journals/apjor/apjor29.html#Cheng12,https://doi.org/10.1142/S0217595912500133 +Helena Gaspars-Wieloch,The Impact of the Structure of the Payoff Matrix on the Final Decision made Under Uncertainty.,2018,35,APJOR,1,db/journals/apjor/apjor35.html#Gaspars-Wieloch18,https://doi.org/10.1142/S021759591850001X +Changkyu Park,A Partial Backordering Inventory Model with a Drop-Shipping Option Under Purchase Dependence.,2017,34,APJOR,4,db/journals/apjor/apjor34.html#Park17,https://doi.org/10.1142/S0217595917500166 +Subrata Saha,Supply Chain Coordination Under Ramp-Type Price and Effort Induced Demand Considering Revenue Sharing Contract.,2015,32,APJOR,2,db/journals/apjor/apjor32.html#SahaS15,https://doi.org/10.1142/S0217595915500049 +Yun-Chia Liang,Supplier Productivity and Quality Performance Evaluation in the TFT-LCD Industry.,2011,28,APJOR,6,db/journals/apjor/apjor28.html#LiangF11,https://doi.org/10.1142/S0217595911003521 +Jang Hyun Baek,Modeling and Optimization of Zone-Based Registration for Mobile Communication Network.,2007,24,APJOR,5,db/journals/apjor/apjor24.html#BaekKS07,https://doi.org/10.1142/S0217595907001449 +Vladimir M. Popovic,Application of New Decision Making Model Based on Modified Cost-Benefit Analysis - a Case Study: Belgrade tramway Transit.,2012,29,APJOR,6,db/journals/apjor/apjor29.html#PopovicVLG12,https://doi.org/10.1142/S0217595912500340 +Shisheng Li,Single-Machine Scheduling with Proportionally deteriorating Jobs subject to Availability Constraints.,2012,29,APJOR,4,db/journals/apjor/apjor29.html#LiF12,https://doi.org/10.1142/S0217595912500194 +Yiwei Jiang,An Optimal Preemptive Algorithm for the Single-Server Parallel-Machine Scheduling with Loading and Unloading Times.,2014,31,APJOR,5,db/journals/apjor/apjor31.html#JiangWZ14,https://doi.org/10.1142/S0217595914500390 +A. J. Higgins,A Percentile Search Heuristic for generalized Assignment Problems with a Very Large Number of Jobs.,2005,22,APJOR,2,db/journals/apjor/apjor22.html#Higgins05,https://doi.org/10.1142/S0217595905000492 +Qing Wang,A Novel Weighting Method for Finding Common Weights in DEA.,2017,34,APJOR,5,db/journals/apjor/apjor34.html#WangLZ17,https://doi.org/10.1142/S0217595917500270 +Xiaoming Yan,On Cournot Competition under Random Yield.,2013,30,APJOR,4,db/journals/apjor/apjor30.html#YanW13,https://doi.org/10.1142/S0217595913500073 +Liang-Yuh Ouyang,An EOQ Model with Limited Storage Capacity under Trade Credits.,2007,24,APJOR,4,db/journals/apjor/apjor24.html#OuyangWY07,https://doi.org/10.1142/S0217595907001371 +Antonio Sedeño-Noda,Ranking One Million Simple Paths in Road Networks.,2016,33,APJOR,5,db/journals/apjor/apjor33.html#Sedeno-Noda16,https://doi.org/10.1142/S0217595916500421 +Zi Xu,Simulation-Based Optimization by New stochastic Approximation Algorithm.,2014,31,APJOR,4,db/journals/apjor/apjor31.html#XuLZ14,https://doi.org/10.1142/S0217595914500262 +Anisur Rahman,Modeling Manufacturers' and Customers' Costs for Cost Sharing Lifetime warranty.,2012,29,APJOR,4,db/journals/apjor/apjor29.html#RahmanC12,https://doi.org/10.1142/S0217595912500248 +Genjiu Xu,Axiomatizations and a Noncooperative Interpretation of the α-CIS Value.,2015,32,APJOR,5,db/journals/apjor/apjor32.html#XuDS15,https://doi.org/10.1142/S0217595915500311 +Thanh An Phan,Stability of excess Demand Functions with Respect to a Strong Version of Wald's Axiom.,2009,26,APJOR,4,db/journals/apjor/apjor26.html#AnB09,https://doi.org/10.1142/S021759590900233X +Jonas C. P. Yu,The Effects of inflation and Time Value of Money on a Production Model with a Random Product Life Cycle.,2010,27,APJOR,4,db/journals/apjor/apjor27.html#YuWWC10,https://doi.org/10.1142/S0217595910002788 +Byungjun You,An Improved Reduction Method for the Robust Optimization of the Assignment Problem.,2012,29,APJOR,5,db/journals/apjor/apjor29.html#YouYY12,https://doi.org/10.1142/S0217595912500327 +Xufeng Zhao,Optimal Tenuring and Major Collection * for a Generational Garbage Collector.,2012,29,APJOR,3,db/journals/apjor/apjor29.html#ZhaoNN12,https://doi.org/10.1142/S0217595912400180 +Tahmina Ferdousi Lipi,Reliability Centered Multi Objective Hybrid Flow Shop Scheduling.,2009,26,APJOR,5,db/journals/apjor/apjor26.html#LipiHN09,https://doi.org/10.1142/S0217595909002389 +Dengsheng Wu,A Systematic Overview of Operations Research/Management Science Research in Mainland China: Bibliometric Analysis of the Period 2001-2013.,2016,33,APJOR,6,db/journals/apjor/apjor33.html#WuXDL16,https://doi.org/10.1142/S0217595916500445 +Chuanli Zhao,Scheduling Deteriorating Jobs with Availability Constraints to Minimize the Makespan.,2016,33,APJOR,6,db/journals/apjor/apjor33.html#ZhaoT16,https://doi.org/10.1142/S0217595916500482 +Miao-Sheng Chen,The Pricing Strategy of Complete Pre-Ordered merchandise under Discounted Profit for Maximizing.,2008,25,APJOR,5,db/journals/apjor/apjor25.html#ChenT08,https://doi.org/10.1142/S0217595908001912 +Soheila Seyedboveir,Cost Efficiency Measurement in Data Envelopment Analysis with Dynamic Network Structures: A Relational Model.,2017,34,APJOR,5,db/journals/apjor/apjor34.html#SeyedboveirKDA17,https://doi.org/10.1142/S0217595917500233 +T. M. Chan,Heuristics with Stochastic Neighborhood Structures for Two-Dimensional Bin Packing and Cutting Stock Problems.,2011,28,APJOR,2,db/journals/apjor/apjor28.html#ChanASC11,https://doi.org/10.1142/S0217595911003168 +Soheila Abdi,The Minimum Cost Flow Problem of Uncertain Random Network.,2018,35,APJOR,3,db/journals/apjor/apjor35.html#AbdiBA18,https://doi.org/10.1142/S0217595918500161 +H. Hassanpour,A Goal Programming Approach to Fuzzy Linear Regression with Non-Fuzzy Input and Fuzzy Output Data.,2009,26,APJOR,5,db/journals/apjor/apjor26.html#HassanpourMY09,https://doi.org/10.1142/S0217595909002420 +Xinrong Lu,Online Hierarchical Scheduling on Two Uniform Machines with Bounded Job Sizes.,2015,32,APJOR,5,db/journals/apjor/apjor32.html#LuL15,https://doi.org/10.1142/S0217595915500323 +Yi-Kuei Lin,Estimated and Accurate System Reliabilities of a Maintainable Computer Network subject to Maintenance Budget.,2012,29,APJOR,3,db/journals/apjor/apjor29.html#LinC12,https://doi.org/10.1142/S0217595912400210 +Valentina I. Klimenok,A BMAP/PH/n System with Impatient Repeated Calls.,2007,24,APJOR,3,db/journals/apjor/apjor24.html#KlimenokOD07,https://doi.org/10.1142/S0217595907001310 +Vikas Sharma,Capacitated Two-Stage Time Minimization Transportation Problem.,2010,27,APJOR,4,db/journals/apjor/apjor27.html#SharmaDV10,https://doi.org/10.1142/S021759591000279X +Min Pan,Option Pricing and Executive Stock Option Incentives: an Empirical Investigation under General Error Distribution Stochastic volatility Model.,2011,28,APJOR,1,db/journals/apjor/apjor28.html#PanT11,https://doi.org/10.1142/S0217595911003065 +M. N. Azaiez,An Integrated DP-MIP Model for Optimal Crop Mix Selection with Deficit Irrigation.,2008,25,APJOR,5,db/journals/apjor/apjor25.html#Azaiez08,https://doi.org/10.1142/S0217595908001924 +Jorge M. S. Valente,An Exact Approach for the Single Machine Scheduling Problem with Linear Early and Quadratic tardy penalties.,2008,25,APJOR,2,db/journals/apjor/apjor25.html#Valente08,https://doi.org/10.1142/S0217595908001730 +Han-Lin Li,Adjusting Ordinal and Cardinal Inconsistencies in Decision Preferences Based on Gower Plots.,2006,23,APJOR,3,db/journals/apjor/apjor23.html#LiM06,https://doi.org/10.1142/S0217595906000966 +Guo Li,Impacts of Leader-Follower Structure on Pricing and Production Strategies in a Decentralized Assembly System.,2017,34,APJOR,1,db/journals/apjor/apjor34.html#LiMX17,https://doi.org/10.1142/S0217595917400036 +Chia-Hsien Su,Retailer's inventory Policy and supplier's Delivery Policy under Two-Level Trade Credit Strategy.,2007,24,APJOR,5,db/journals/apjor/apjor24.html#SuOHC07,https://doi.org/10.1142/S0217595907001413 +Alok Singh 0001,New Metaheuristic Approaches for the Leaf-Constrained Minimum Spanning Tree Problem.,2008,25,APJOR,4,db/journals/apjor/apjor25.html#SinghB08,https://doi.org/10.1142/S0217595908001870 +Fu-Min Chang,Optimal Discrete-Time periodic Replacement Policy for repairable Products under Free Minimal Repair warranty.,2012,29,APJOR,3,db/journals/apjor/apjor29.html#ChangC12,https://doi.org/10.1142/S0217595912400209 +Efrat Perel,On Customers Acting as Servers.,2013,30,APJOR,5,db/journals/apjor/apjor30.html#PerelY13,https://doi.org/10.1142/S021759591350019X +Patrizia Beraldi,Efficient Neighborhood Search for the Probabilistic Multi-Vehicle Pickup and Delivery Problem.,2010,27,APJOR,3,db/journals/apjor/apjor27.html#BeraldiGMV10,https://doi.org/10.1142/S0217595910002715 +Bing Lin,The Joint Stock and Capacity Rationings of a Make-To-Stock System with Flexible Demand.,2018,35,APJOR,1,db/journals/apjor/apjor35.html#LinCFX18,https://doi.org/10.1142/S0217595918500045 +Sanjiv Kumar,A Fast Approach to Solve Matrix Games with Payoffs of Trapezoidal Fuzzy Numbers.,2016,33,APJOR,6,db/journals/apjor/apjor33.html#KumarCS16,https://doi.org/10.1142/S0217595916500470 +Lingfa Lu,Online Single Machine Scheduling to Minimize the Maximum Starting Time.,2017,34,APJOR,5,db/journals/apjor/apjor34.html#LuZ17,https://doi.org/10.1142/S0217595917500221 +Jiawen Hu,Joint Optimization of Production Plan and Preventive Maintenance Schedule by Stackelberg Game.,2017,34,APJOR,4,db/journals/apjor/apjor34.html#HuJW17,https://doi.org/10.1142/S0217595917500129 +Leiyang Wang,Single Machine Scheduling with batch Delivery to Multiple Customers in a Star-shaped Network.,2013,30,APJOR,1,db/journals/apjor/apjor30.html#WangL13,https://doi.org/10.1142/S0217595912500480 +I. T. Castro,An Age-Based Maintenance Strategy for a degradation-Threshold-shock-Model for a System subjected to Multiple Defects.,2013,30,APJOR,5,db/journals/apjor/apjor30.html#Castro13,https://doi.org/10.1142/S0217595913500164 +Wenhua Li,Online-List Scheduling on a Single Bounded Parallel-Batch Machine to Minimize Makespan.,2015,32,APJOR,4,db/journals/apjor/apjor32.html#LiGY15,https://doi.org/10.1142/S0217595915500281 +Na Yin,Minimizing Makespan in Permutation Flow Shop Scheduling with Proportional Deterioration.,2015,32,APJOR,6,db/journals/apjor/apjor32.html#YinK15,https://doi.org/10.1142/S0217595915500505 +Xing-Long Qu,Repeated Sequential Prisoner's Dilemma: The Stackleberg Variant.,2015,32,APJOR,1,db/journals/apjor/apjor32.html#QuCMY15,https://doi.org/10.1142/S0217595915400096 +Jong Hun Park,Modeling and Analysis of Zone-Based Registration in Mobile Communication Network by Considering Busy-Line Effect and Implicit Registration.,2016,33,APJOR,4,db/journals/apjor/apjor33.html#ParkJB16,https://doi.org/10.1142/S021759591650024X +Youkyung Won,Dominance Relationship Among the Retailer's Strategies Under the Semi-Stackelberg Newsvendor Situation with Quantity Discounts.,2016,33,APJOR,2,db/journals/apjor/apjor33.html#Won16,https://doi.org/10.1142/S0217595916500147 +Bin Zhang 0006,Heuristic and Exact Solution Method for Convex nonlinear Knapsack Problem.,2012,29,APJOR,5,db/journals/apjor/apjor29.html#ZhangC12,https://doi.org/10.1142/S0217595912500315 +Yongjian Li,Optimal manpower Planning Decision with Single Employee Type Considering Minimal Employment Period Constraint.,2010,27,APJOR,3,db/journals/apjor/apjor27.html#LiCCT10,https://doi.org/10.1142/S0217595910002776 +Li Cui,Recovery of Low Rank Symmetric Matrices via Schatten p Norm Minimization.,2016,33,APJOR,1,db/journals/apjor/apjor33.html#CuiLCX16,https://doi.org/10.1142/S0217595916500032 +Prasun Kumar Nayak,Linear Programming Technique to Solve Two Person Matrix Games with Interval Pay-Offs.,2009,26,APJOR,2,db/journals/apjor/apjor26.html#NayakP09,https://doi.org/10.1142/S0217595909002201 +Gary Yu-Hsin Chen,Dynamic Facility Layout with Multi-Objectives.,2014,31,APJOR,4,db/journals/apjor/apjor31.html#ChenL14,https://doi.org/10.1142/S0217595914500274 +Dong-Won Seo,An Approximation Method for Blocking Probabilities in M/D/1/K1 and#8594* and#8901*/D/1/K2 Queues.,2015,32,APJOR,3,db/journals/apjor/apjor32.html#SeoLC15,https://doi.org/10.1142/S0217595915500177 +Jason Chao-Hsien Pan,The Learning Effect on setup Cost Reduction for Mixture inventory Models with Variable lead Time.,2008,25,APJOR,4,db/journals/apjor/apjor25.html#PanL08,https://doi.org/10.1142/S0217595908001845 +Alok Singh 0001,A Hybrid Permutation-Coded Evolutionary Algorithm for the Early/tardy Scheduling Problem.,2010,27,APJOR,6,db/journals/apjor/apjor27.html#Singh10,https://doi.org/10.1142/S021759591000296X +Guowei Hua,Preface.,2018,35,APJOR,2,db/journals/apjor/apjor35.html#HuaCWT18,https://doi.org/10.1142/S0217595918020013 +Bing-Chang OuYang,An Economic Production lot Size for Continuous Decrease in Unit Production Cost.,2008,25,APJOR,5,db/journals/apjor/apjor25.html#OuYangR08,https://doi.org/10.1142/S0217595908001948 +Mei-Ju Luo,Sample Average Approximation Method for Solving a Deterministic Formulation for Box Constrained Stochastic variational inequality Problems.,2012,29,APJOR,2,db/journals/apjor/apjor29.html#LuoL12,https://doi.org/10.1142/S0217595912500145 +Hasmukh K. Gajjar,A Dynamic Programming Heuristic for Retail Shelf Space Allocation Problem.,2011,28,APJOR,2,db/journals/apjor/apjor28.html#GajjarA11,https://doi.org/10.1142/S0217595911003120 +M. Reza Peyghami,An interior Point Approach for Semidefinite Optimization Using New Proximity Functions.,2009,26,APJOR,3,db/journals/apjor/apjor26.html#Peyghami09,https://doi.org/10.1142/S0217595909002250 +Subir S. Rao,Class-Based Storage Assignment in a Unit-Load Warehouse Employing AS/RS with Inventory Space Allocation Considering Product Specific Setup to Holding Cost Ratio.,2014,31,APJOR,5,db/journals/apjor/apjor31.html#RaoA14,https://doi.org/10.1142/S0217595914500341 +Toshiyuki Sueyoshi,Financial Ratio Analysis of the Electric Power Industry.,2005,22,APJOR,3,db/journals/apjor/apjor22.html#Sueyoshi05,https://doi.org/10.1142/S0217595905000509 +Ka Ching Chan,Modeling Competition over Product Life Cycles.,2015,32,APJOR,4,db/journals/apjor/apjor32.html#ChanM15,https://doi.org/10.1142/S0217595915500219 +Kai Wang,Remanufacturer-Manufacturer Collaboration in a Supply Chain: The Manufacturer Plays the Leader Role.,2015,32,APJOR,5,db/journals/apjor/apjor32.html#WangXXY15,https://doi.org/10.1142/S0217595915500402 +Gregory Levitin,Active and Passive Defense against Multiple Attack Facilities.,2011,28,APJOR,4,db/journals/apjor/apjor28.html#LevitinHB11,https://doi.org/10.1142/S021759591100317X +Shibaji Panda,Coordinating Two-echelon Supply Chains under Stock and Price dependent Demand rate.,2013,30,APJOR,2,db/journals/apjor/apjor30.html#Panda13,https://doi.org/10.1142/S0217595912500510 +Xia Li,Global convergence of Shortest-Residual Family of conjugate Gradient Methods without Line Search.,2005,22,APJOR,4,db/journals/apjor/apjor22.html#LiC05,https://doi.org/10.1142/S0217595905000716 +Yongchao Liu,Convergence Analysis of a Regularized Sample Average Approximation Method for Stochastic Mathematical Programs with complementarity Constraints.,2011,28,APJOR,6,db/journals/apjor/apjor28.html#LiuL11,https://doi.org/10.1142/S0217595911003338 +Carole Bernard,Algorithms for Finding Copulas Minimizing Convex Functions of Sums.,2016,33,APJOR,5,db/journals/apjor/apjor33.html#BernardM16,https://doi.org/10.1142/S0217595916500408 +Behrouz Kheirfam,A modified Full-Newton Step Infeasible interior-Point Algorithm for Linear Optimization.,2013,30,APJOR,6,db/journals/apjor/apjor30.html#KheirfamAH13,https://doi.org/10.1142/S0217595913500279 +Sainan Zhang,Hadamard Directional Differentiability of the Optimal Value Function of a Quadratic Programming Problem.,2018,35,APJOR,3,db/journals/apjor/apjor35.html#ZhangZZD18,https://doi.org/10.1142/S0217595918500124 +Ying Shi,Optimization of an M/M/∞ Queueing System with Free Experience Service.,2016,33,APJOR,6,db/journals/apjor/apjor33.html#ShiLF16,https://doi.org/10.1142/S0217595916500512 +Li-Ching Ma,A Broad Case-Based Distance Approach for Screening with Different Target Points.,2017,34,APJOR,4,db/journals/apjor/apjor34.html#Ma17,https://doi.org/10.1142/S0217595917500130 +Tadeusz Antczak,The L1 Penalty Function Method for Nonconvex differentiable Optimization Problems with inequality Constraints.,2010,27,APJOR,5,db/journals/apjor/apjor27.html#Antczak10,https://doi.org/10.1142/S0217595910002855 +Shine-Der Lee,Economic production lot sizing Model with stochastic demand.,2014,31,APJOR,3,db/journals/apjor/apjor31.html#LeeLY14,https://doi.org/10.1142/S0217595914500158 +Wen-Wei Wang,Two-Stage flowshop Scheduling Problems with Identical and Batch Processors.,2010,27,APJOR,5,db/journals/apjor/apjor27.html#WangHC10,https://doi.org/10.1142/S0217595910002909 +Yong He,Online Algorithms for Scheduling with Machine Activation Cost.,2007,24,APJOR,2,db/journals/apjor/apjor24.html#HeHJ07,https://doi.org/10.1142/S0217595907001231 +Xuejun Ding,Predicting Retweeting Behavior Based on BPNN in Emergency Incidents.,2017,34,APJOR,1,db/journals/apjor/apjor34.html#DingT17,https://doi.org/10.1142/S0217595917400115 +Gregory Levitin,Optimal Version sequencing in Fault-Tolerant Programs.,2005,22,APJOR,1,db/journals/apjor/apjor22.html#Levitin05,https://doi.org/10.1142/S0217595905000376 +Yi Feng,The Optimal Order Policy for a Capacitated Multiple Product Inventory System Under Symmetry.,2015,32,APJOR,2,db/journals/apjor/apjor32.html#FengCD15,https://doi.org/10.1142/S0217595915500050 +Chun-Lai Liu,Unrelated Parallel-Machine Scheduling with Controllable Processing Times and Impact of Deteriorating Maintenance Activities under Consideration.,2016,33,APJOR,1,db/journals/apjor/apjor33.html#LiuW16,https://doi.org/10.1142/S0217595916500019 +Xingong Zhang,Common due-Window Assignment and Scheduling of Job-dependent deteriorating jobs and Multiple deteriorating Maintenance Activities.,2014,31,APJOR,1,db/journals/apjor/apjor31.html#Zhang14,https://doi.org/10.1142/S0217595914500043 +Bertrand M. T. Lin,A Simple Lower Bound for total Completion Time Minimization in a Two-Machine flowshop.,2005,22,APJOR,3,db/journals/apjor/apjor22.html#LinW05,https://doi.org/10.1142/S0217595905000601 +Jinshi Zhao,Coordination Mechanism Combining Supply Chain Optimization and Rule in Exchange.,2013,30,APJOR,5,db/journals/apjor/apjor30.html#ZhaoH13,https://doi.org/10.1142/S0217595913500152 +Shuang Xiao,Estimating the Constant Elasticity of Variance Model with Data-Driven Markov Chain Monte Carlo Methods.,2017,34,APJOR,1,db/journals/apjor/apjor34.html#XiaoLJ17,https://doi.org/10.1142/S0217595917400097 +Jau-Chuan Ke,A Markov repairable System involving an Imperfect Service Station with Multiple vacations.,2005,22,APJOR,4,db/journals/apjor/apjor22.html#KeL05,https://doi.org/10.1142/S021759590500073X +Yang Liu,On Low Rank Approximation of Linear Operators in p-Norms and Some Algorithms.,2016,33,APJOR,4,db/journals/apjor/apjor33.html#Liu16,https://doi.org/10.1142/S0217595916500238 +Moawia Alghalith,Input Demand Under Joint Energy and Output Prices Uncertainties.,2017,34,APJOR,4,db/journals/apjor/apjor34.html#AlghalithGNW17,https://doi.org/10.1142/S021759591750018X +Grit Claßen,Robust Metric Inequalities for Network Loading Under Demand Uncertainty.,2015,32,APJOR,5,db/journals/apjor/apjor32.html#ClassenKKT15,https://doi.org/10.1142/S0217595915500384 +Yongjiang Guo,Rate of Convergence of Fluid Approximation for Re-Entrant Lines under Fbfs Discipline.,2011,28,APJOR,3,db/journals/apjor/apjor28.html#Guo11,https://doi.org/10.1142/S0217595911003296 +Amin Mostafaee,Some Conditions for Characterizing Anchor Points.,2016,33,APJOR,2,db/journals/apjor/apjor33.html#MostafaeeS16,https://doi.org/10.1142/S0217595916500135 +Fu-Sheng Bai,A Novel monotonization Transformation for Some Classes of Global Optimization Problems.,2006,23,APJOR,3,db/journals/apjor/apjor23.html#BaiW06,https://doi.org/10.1142/S0217595906000899 +Velika I. Dragieva,Number of retrials in a Finite Source retrial Queue with Unreliable Server.,2014,31,APJOR,2,db/journals/apjor/apjor31.html#Dragieva14,https://doi.org/10.1142/S0217595914400053 +Bin Dan,Pareto Improvement Strategy for Service-Based Free-Riding in a Dual-Channel Supply Chain.,2014,31,APJOR,6,db/journals/apjor/apjor31.html#DanLXZ14,https://doi.org/10.1142/S021759591450050X +Lotfi Tadj,An Unreliable Quorum Queueing System with Single and Multiple Vacations.,2017,34,APJOR,6,db/journals/apjor/apjor34.html#Tadj17,https://doi.org/10.1142/S0217595917500361 +Minyi Yue,Upon the 80th Birthday of Professor Jiye Han.,2015,32,APJOR,1,db/journals/apjor/apjor32.html#Yue15,https://doi.org/10.1142/S0217595915020029 +Chungen Shen,An infeasible Ssle Filter Algorithm for General Constrained Optimization without Strict complementarity.,2011,28,APJOR,3,db/journals/apjor/apjor28.html#ShenXP11,https://doi.org/10.1142/S0217595911003284 +Sohrab Effati,A Novel Recurrent Neural Network for Solving Mlcps and its Application to Linear and Quadratic Programming Problems.,2011,28,APJOR,4,db/journals/apjor/apjor28.html#EffatiGA11,https://doi.org/10.1142/S0217595911003223 +Hua Gong,Bicriteria Scheduling on a Single Batching Machine with Transportation and Deterioration to Minimize Total Completion Time and Production Costs.,2017,34,APJOR,3,db/journals/apjor/apjor34.html#GongZL17,https://doi.org/10.1142/S0217595917400140 +Yanfei Lan,Pricing and Design of After-Sales Service Contract: The Value of Mining Asymmetric Sales Cost Information.,2017,34,APJOR,1,db/journals/apjor/apjor34.html#LanLN17,https://doi.org/10.1142/S0217595917400024 +C. S. Lalitha,A Note on Pseudolinearity in Terms of Bifunctions.,2007,24,APJOR,1,db/journals/apjor/apjor24.html#LalithaM07,https://doi.org/10.1142/S0217595907001140 +James T. Lin,A Multi-Fidelity Model Approach for Simultaneous Scheduling of Machines and Vehicles in Flexible Manufacturing Systems.,2018,35,APJOR,1,db/journals/apjor/apjor35.html#LinCHC18,https://doi.org/10.1142/S0217595918500057 +Anisur Rahman,Review of Long-Term warranty Policies.,2006,23,APJOR,4,db/journals/apjor/apjor23.html#RahmanC06,https://doi.org/10.1142/S021759590600108X +Shi-Sheng Li,Group Scheduling with Two Competing Agents on a Single Machine.,2014,31,APJOR,6,db/journals/apjor/apjor31.html#LiC14,https://doi.org/10.1142/S0217595914500432 +Huifu Xu,Sample Average Approximation Methods for a Class of Stochastic Variational inequality Problems.,2010,27,APJOR,1,db/journals/apjor/apjor27.html#Xu10,https://doi.org/10.1142/S0217595910002569 +Jun Tong,A Computational Algorithm for Equilibrium Asset Pricing Under Heterogeneous Information and Short-Sale Constraints.,2017,34,APJOR,5,db/journals/apjor/apjor34.html#TongHH17,https://doi.org/10.1142/S0217595917500257 +Ji-Bo Wang,Makespan Minimization on Three-Machine Flow shop with deteriorating jobs.,2013,30,APJOR,6,db/journals/apjor/apjor30.html#WangW13,https://doi.org/10.1142/S021759591350022X +Jorge M. S. Valente,A Hybrid Genetic Algorithm for the Early/tardy Scheduling Problem.,2006,23,APJOR,3,db/journals/apjor/apjor23.html#ValenteGA06,https://doi.org/10.1142/S0217595906000978 +Hark-Chin Hwang,A 4/3-Approximation Algorithm for Cassette Packing in Steel Industry.,2007,24,APJOR,5,db/journals/apjor/apjor24.html#Hwang07,https://doi.org/10.1142/S0217595907001462 +Ke Fu,On Planar medianoid Competitive Location Problems with Manhattan Distance.,2013,30,APJOR,2,db/journals/apjor/apjor30.html#FuMX13,https://doi.org/10.1142/S0217595912500509 +Ying Shi,Equilibrium Strategies and Optimal Control for a Double-Ended Queue.,2016,33,APJOR,3,db/journals/apjor/apjor33.html#ShiL16,https://doi.org/10.1142/S0217595916500226 +Subhashis Chatterjee,An Ideal Software Release Policy for an Improved Software Reliability Growth Model Incorporating Imperfect Debugging with Fault Removal Efficiency and Change Point.,2017,34,APJOR,3,db/journals/apjor/apjor34.html#ChatterjeeS17,https://doi.org/10.1142/S0217595917400176 +P. Kaelo,Numerical Studies of Some Generalized Controlled Random Search Algorithms.,2012,29,APJOR,2,db/journals/apjor/apjor29.html#KaeloA12,https://doi.org/10.1142/S0217595912500169 +Yuhua Cai,A Semi-on-Line Scheduling Problem of Two Parallel Machines with Common Maintenance Time.,2012,29,APJOR,4,db/journals/apjor/apjor29.html#CaiFL12,https://doi.org/10.1142/S0217595912500200 +Mohammed A. Awadallah 0001,Harmony Search with Novel Selection Methods in Memory consideration for Nurse Rostering Problem.,2014,31,APJOR,3,db/journals/apjor/apjor31.html#AwadallahKAB14,https://doi.org/10.1142/S0217595914500146 +Gholam Reza Jahanshahloo,A Linear bilevel Programming Problem for Obtaining the Closest Targets and Minimum Distance of a Unit from the Strong Efficient Frontier.,2012,29,APJOR,2,db/journals/apjor/apjor29.html#JahanshahlooVZ12,https://doi.org/10.1142/S021759591250011X +Okan örsan özener,Near-Optimal modified Base Stock Policies for the capacitated inventory Problem with stochastic demand and Fixed Cost.,2014,31,APJOR,3,db/journals/apjor/apjor31.html#OzenerGE14,https://doi.org/10.1142/S0217595914500195 +Chyi-Bao Yang,Delay Guarantee Backup Route Planning for Multicast Networks.,2006,23,APJOR,1,db/journals/apjor/apjor23.html#YangWS06,https://doi.org/10.1142/S0217595906000759 +S. N. Kuan,Applying Metaheuristics to Feeder Bus Network Design Problem.,2004,21,APJOR,4,db/journals/apjor/apjor21.html#KuanON04,https://doi.org/10.1142/S0217595904000382 +Shin-Guang Chen,Optimal Component Quality Planning in Multi-State Computer Networks.,2014,31,APJOR,6,db/journals/apjor/apjor31.html#Chen14,https://doi.org/10.1142/S0217595914500493 +Kristiaan Kerstens,Solution Methods for nonconvex Free disposal Hull Models: a Review and some Critical Comments.,2014,31,APJOR,1,db/journals/apjor/apjor31.html#KerstensW14,https://doi.org/10.1142/S0217595914500109 +Jamshid Aghaei,Stochastic Market-Clearing of Joint Energy and Reserves Auctions.,2010,27,APJOR,5,db/journals/apjor/apjor27.html#AghaeiSA10,https://doi.org/10.1142/S0217595910002879 +Toshiyuki Sueyoshi,Parallel Network Computing Approach for DEA-RAM Measurement.,2004,21,APJOR,1,db/journals/apjor/apjor21.html#SueyoshiH04,https://doi.org/10.1142/S0217595904000060 +Yongjian Li,Optimal Solution Structure for Multi-Period Production Planning with Returned Products remanufacturing.,2010,27,APJOR,5,db/journals/apjor/apjor27.html#LiZCC10,https://doi.org/10.1142/S0217595910002910 +Yang Woo Shin,Approximation of pH/pH/C retrial Queue with pH-retrial Time.,2014,31,APJOR,2,db/journals/apjor/apjor31.html#ShinM14,https://doi.org/10.1142/S0217595914400107 +Rudrani Banerjee,Warranty Servicing with a Brown-Proschan Repair Option.,2012,29,APJOR,3,db/journals/apjor/apjor29.html#BanerjeeB12,https://doi.org/10.1142/S0217595912400234 +Duanbing Chen,A New Heuristic Algorithm for Constrained Rectangle-Packing Problem.,2007,24,APJOR,4,db/journals/apjor/apjor24.html#ChenH07,https://doi.org/10.1142/S0217595907001334 +Changchun Liu,A Decision Model for Berth Allocation Under Uncertainty Considering Service Level Using an Adaptive Differential Evolution Algorithm.,2016,33,APJOR,6,db/journals/apjor/apjor33.html#LiuXZZ16,https://doi.org/10.1142/S0217595916500494 +Ali Abbasi Molai,Minimizing a Linear Objective Function Subject to Fuzzy Relation Equations Constraints with Max-Hamacher Product Composition.,2008,25,APJOR,2,db/journals/apjor/apjor25.html#MolaiK08,https://doi.org/10.1142/S0217595908001717 +Tien-Yu Lin,A Two-Warehouse inventory Model for Items with Imperfect Quality and quantity discounts.,2011,28,APJOR,2,db/journals/apjor/apjor28.html#Lin11,https://doi.org/10.1142/S0217595911003107 +Othonas Zacharias,Project Risk Ranking in Large-Scale Programs: a fuzzy Set Based Approach.,2014,31,APJOR,3,db/journals/apjor/apjor31.html#ZachariasPAV14,https://doi.org/10.1142/S0217595914500201 +Nita H. Shah,Probabilistic Order Level System when items in inventory Deteriorate and Delay in Payments is permissible.,2004,21,APJOR,3,db/journals/apjor/apjor21.html#Shah04,https://doi.org/10.1142/S0217595904000266 +Naoto Katayama,A Combined Matheuristic for the Piecewise Linear Multicommodity Network Flow Problem.,2017,34,APJOR,6,db/journals/apjor/apjor34.html#Katayama17,https://doi.org/10.1142/S0217595917500336 +Wanyou Cheng,An Adaptive Gradient Algorithm for Large-Scale nonlinear Bound Constrained Optimization.,2013,30,APJOR,3,db/journals/apjor/apjor30.html#ChengC13,https://doi.org/10.1142/S0217595913400058 +Yuichi Takano,Metric-Preserving Reduction of Earth Mover's Distance.,2010,27,APJOR,1,db/journals/apjor/apjor27.html#TakanoY10,https://doi.org/10.1142/S0217595910002545 +David L. Olson,Multiple Criteria Analysis for Evaluation of Information System Risk.,2011,28,APJOR,1,db/journals/apjor/apjor28.html#OlsonW11,https://doi.org/10.1142/S021759591100303X +L. Zeng,An Assignment-Based Local Search Method for Solving Vehicle Routing Problems.,2005,22,APJOR,1,db/journals/apjor/apjor22.html#ZengON05,https://doi.org/10.1142/S0217595905000479 +Maria Albareda-Sambola,Variable Neighborhood Search for Order Batching in a Warehouse.,2009,26,APJOR,5,db/journals/apjor/apjor26.html#Albareda-SambolaAMB09,https://doi.org/10.1142/S0217595909002390 +Jian Li,Forecasting Oil Price Trends with Sentiment of Online News Articles.,2017,34,APJOR,2,db/journals/apjor/apjor34.html#LiXXTY17,https://doi.org/10.1142/S021759591740019X +Jae-Hak Lim,Bootstrap confidence Intervals for steady-State Availability.,2004,21,APJOR,3,db/journals/apjor/apjor21.html#LimSKP04,https://doi.org/10.1142/S021759590400031X +Cui-Hua Zhang,Optimal Strategy of Social Responsibility and Quality Effort in Service Supply Chain with Quality Preference.,2018,35,APJOR,3,db/journals/apjor/apjor35.html#ZhangXL18,https://doi.org/10.1142/S0217595918500185 +Yuh-Wen Chen,A Group Game of Multiple Attribute Decision Making.,2007,24,APJOR,5,db/journals/apjor/apjor24.html#Chen07b,https://doi.org/10.1142/S0217595907001425 +Huaqing Wu,Ranking and Benchmarking of the Asian Games Achievements Based on DEA: the Case of Guangzhou 2010.,2013,30,APJOR,6,db/journals/apjor/apjor30.html#WuCXZ13,https://doi.org/10.1142/S0217595913500280 +Yi Feng,Option Contract Design and Risk Analysis: Supplier's Perspective.,2018,35,APJOR,3,db/journals/apjor/apjor35.html#FengW18,https://doi.org/10.1142/S0217595918500173 +Hidefumi Kawasaki,An Application of a discrete Fixed Point Theorem to a Game in Expansive Form.,2013,30,APJOR,3,db/journals/apjor/apjor30.html#KawasakiKK13,https://doi.org/10.1142/S0217595913400137 +Madhu Jain,Generalized Renewal Process (Grp) for the Analysis of Software Reliability Growth Model.,2006,23,APJOR,2,db/journals/apjor/apjor23.html#JainM06,https://doi.org/10.1142/S0217595906000917 +Siqing Shan,Blog Recommendation and Management Implications in an Emergency Context: An Information Entropy Perspective.,2017,34,APJOR,1,db/journals/apjor/apjor34.html#ShanSY17,https://doi.org/10.1142/S0217595917400073 +Yue Dai,Capacity Allocation and inventory Policy in a Distribution System.,2006,23,APJOR,4,db/journals/apjor/apjor23.html#DaiCFN06,https://doi.org/10.1142/S0217595906001054 +Xuyin Wang,Scheduling with Deteriorating Jobs and Non-Simultaneous Machine Available Times.,2015,32,APJOR,6,db/journals/apjor/apjor32.html#WangHL15,https://doi.org/10.1142/S0217595915500499 +Liangpeng Chen,Joint Maintenance and spare Component Provisioning Policy for k-out-of-n Systems.,2013,30,APJOR,6,db/journals/apjor/apjor30.html#ChenYX13,https://doi.org/10.1142/S0217595913500231 +Adiel Teixeira de Almeida,Additive-veto Models for Choice and Ranking multicriteria Decision Problems.,2013,30,APJOR,6,db/journals/apjor/apjor30.html#Almeida13,https://doi.org/10.1142/S0217595913500267 +Liang-Yuh Ouyang,The Single-Vendor Single-Buyer Integrated inventory Problem with Quality Improvement and lead Time Reduction - minimax Distribution-Free Approach.,2006,23,APJOR,3,db/journals/apjor/apjor23.html#OuyangWH06,https://doi.org/10.1142/S021759590600098X +Bin Liu,One Improved Agent Genetic Algorithm - Ring-like Agent Genetic Algorithm for Global Numerical Optimization.,2009,26,APJOR,4,db/journals/apjor/apjor26.html#LiuDL09,https://doi.org/10.1142/S0217595909002316 +Ashley Davis,Nurse Staffing under demand Uncertainty to Reduce Costs and Enhance Patient Safety.,2014,31,APJOR,1,db/journals/apjor/apjor31.html#DavisMHD14,https://doi.org/10.1142/S0217595914500055 +Yakov Zinder,Preemptive Scheduling on Parallel Processors with due dates.,2005,22,APJOR,4,db/journals/apjor/apjor22.html#ZinderS05,https://doi.org/10.1142/S0217595905000662 +Antonín Posusta,Control of word processing environment using myoelectric signals.,2015,9,J. Multimodal User Interfaces,4,db/journals/jmui/jmui9.html#PosustaSPRO15,https://doi.org/10.1007/s12193-015-0200-9 +Mengyi Liu,Video modeling and learning on Riemannian manifold for emotion recognition in the wild.,2016,10,J. Multimodal User Interfaces,2,db/journals/jmui/jmui10.html#LiuWLHSC16,https://doi.org/10.1007/s12193-015-0204-5 +Manas Kamal Bhuyan,A novel set of features for continuous hand gesture recognition.,2014,8,J. Multimodal User Interfaces,4,db/journals/jmui/jmui8.html#BhuyanKMI14,https://doi.org/10.1007/s12193-014-0165-0 +Spyros Raptis,A framework towards expressive speech analysis and synthesis with preliminary results.,2015,9,J. Multimodal User Interfaces,4,db/journals/jmui/jmui9.html#RaptisKCT15,https://doi.org/10.1007/s12193-015-0186-3 +Lue-Feng Chen,Multi-robot behavior adaptation to local and global communication atmosphere in humans-robots interaction.,2014,8,J. Multimodal User Interfaces,3,db/journals/jmui/jmui8.html#ChenL0DYH14,https://doi.org/10.1007/s12193-014-0156-1 +Elena Vildjiounaite,Prediction of interface preferences with a classifier selection approach.,2013,7,J. Multimodal User Interfaces,4,db/journals/jmui/jmui7.html#VildjiounaiteSK13,https://doi.org/10.1007/s12193-013-0127-y +Areti Andreopoulou,Subjective HRTF evaluations for obtaining global similarity metrics of assessors and assessees.,2016,10,J. Multimodal User Interfaces,3,db/journals/jmui/jmui10.html#AndreopoulouK16,https://doi.org/10.1007/s12193-016-0214-y +Albert Ali Salah,Multimodal identification and localization of users in a smart environment.,2008,2,J. Multimodal User Interfaces,2,db/journals/jmui/jmui2.html#SalahMLSHASP08,https://doi.org/10.1007/s12193-008-0008-y +Felix Schüssel,Influencing factors on multimodal interaction during selection tasks.,2013,7,J. Multimodal User Interfaces,4,db/journals/jmui/jmui7.html#SchusselH013,https://doi.org/10.1007/s12193-012-0117-5 +Akihito Nakai,Investigating the effects of motion-based Kinect game system on user cognition.,2015,9,J. Multimodal User Interfaces,4,db/journals/jmui/jmui9.html#NakaiPLHVS15,https://doi.org/10.1007/s12193-015-0197-0 +Mahmoud Ghorbel,Multimodal notification framework for elderly and professional in a smart nursing home.,2013,7,J. Multimodal User Interfaces,4,db/journals/jmui/jmui7.html#GhorbelBDKPRV13,https://doi.org/10.1007/s12193-012-0116-6 +Eunil Park,Does panel type affect haptic experience? An empirical comparison of touch screen panels for smartphones.,2014,8,J. Multimodal User Interfaces,4,db/journals/jmui/jmui8.html#ParkKO14,https://doi.org/10.1007/s12193-014-0167-y +ágnes Abuczki,On the disambiguation of multifunctional discourse markers in multimodal interaction.,2014,8,J. Multimodal User Interfaces,2,db/journals/jmui/jmui8.html#Abuczki14,https://doi.org/10.1007/s12193-013-0136-x +Thi Thuong Huyen Nguyen,VR-based operating modes and metaphors for collaborative ergonomic design of industrial workstations.,2017,11,J. Multimodal User Interfaces,1,db/journals/jmui/jmui11.html#NguyenPHDD17,https://doi.org/10.1007/s12193-016-0231-x +Stefan Kopp,An architecture for fluid real-time conversational agents: integrating incremental output generation and input processing.,2014,8,J. Multimodal User Interfaces,1,db/journals/jmui/jmui8.html#KoppWYB14,https://doi.org/10.1007/s12193-013-0130-3 +Xiaoming Nan,vDesign: a CAVE-based virtual design environment using hand interactions.,2014,8,J. Multimodal User Interfaces,4,db/journals/jmui/jmui8.html#NanZZGHG14,https://doi.org/10.1007/s12193-014-0168-x +Augusto Celentano,Evaluating metaphor reification in tangible interfaces.,2015,9,J. Multimodal User Interfaces,3,db/journals/jmui/jmui9.html#CelentanoD15,https://doi.org/10.1007/s12193-015-0198-z +Randy Klaassen,User preferences for multi-device context-aware feedback in a digital coaching system.,2013,7,J. Multimodal User Interfaces,3,db/journals/jmui/jmui7.html#KlaassenALW13,https://doi.org/10.1007/s12193-013-0125-0 +Costanza Navarretta,Feedback facial expressions and emotions.,2014,8,J. Multimodal User Interfaces,2,db/journals/jmui/jmui8.html#Navarretta14,https://doi.org/10.1007/s12193-013-0145-9 +M. Shamim Hossain,Audio-visual emotion recognition using multi-directional regression and Ridgelet transform.,2016,10,J. Multimodal User Interfaces,4,db/journals/jmui/jmui10.html#HossainM16,https://doi.org/10.1007/s12193-015-0207-2 +Alan Del Piccolo,Non-speech voice for sonic interaction: a catalogue.,2017,11,J. Multimodal User Interfaces,1,db/journals/jmui/jmui11.html#PiccoloR17,https://doi.org/10.1007/s12193-016-0227-6 +Benoît Macq,Preface.,2007,1,J. Multimodal User Interfaces,2,db/journals/jmui/jmui1.html#Macq07,https://doi.org/10.1007/BF02910053 +Charles Pontonnier,Designing and evaluating a workstation in real and virtual environment: toward virtual reality based ergonomic design sessions.,2014,8,J. Multimodal User Interfaces,2,db/journals/jmui/jmui8.html#PontonnierDSMB14,https://doi.org/10.1007/s12193-013-0138-8 +Marek Hrúz,Automatic fingersign-to-speech translation system.,2011,4,J. Multimodal User Interfaces,2,db/journals/jmui/jmui4.html#HruzCDKKRSSYAAK11,https://doi.org/10.1007/s12193-011-0059-3 +Luca Chittaro,Distinctive aspects of mobile interaction and their implications for the design of multimodal interfaces.,2010,3,J. Multimodal User Interfaces,3,db/journals/jmui/jmui3.html#Chittaro10,https://doi.org/10.1007/s12193-010-0036-2 +Michele Geronazzo,Auditory navigation with a tubular acoustic model for interactive distance cues and personalized head-related transfer functions.,2016,10,J. Multimodal User Interfaces,3,db/journals/jmui/jmui10.html#GeronazzoAF16,https://doi.org/10.1007/s12193-016-0221-z +Herwin van Welbergen,Elckerlyc.,2009,3,J. Multimodal User Interfaces,4,db/journals/jmui/jmui3.html#WelbergenRRZ09,https://doi.org/10.1007/s12193-010-0051-3 +Jesús Gallardo,A framework for the descriptive specification of awareness support in multimodal user interfaces for collaborative activities.,2018,12,J. Multimodal User Interfaces,2,db/journals/jmui/jmui12.html#GallardoBD18,https://doi.org/10.1007/s12193-017-0255-x +S. Devadethan,An ICA based head movement classification system using video signals.,2017,11,J. Multimodal User Interfaces,3,db/journals/jmui/jmui11.html#DevadethanT17,https://doi.org/10.1007/s12193-017-0244-0 +Deborah A. Dahl,The W3C multimodal architecture and interfaces standard.,2013,7,J. Multimodal User Interfaces,3,db/journals/jmui/jmui7.html#Dahl13,https://doi.org/10.1007/s12193-013-0120-5 +Guillaume Rivière,The activation of modality in virtual objects assembly.,2010,3,J. Multimodal User Interfaces,3,db/journals/jmui/jmui3.html#RiviereCR10,https://doi.org/10.1007/s12193-010-0038-0 +Iulia Lefter,An audio-visual dataset of human-human interactions in stressful situations.,2014,8,J. Multimodal User Interfaces,1,db/journals/jmui/jmui8.html#LefterBR14,https://doi.org/10.1007/s12193-014-0150-7 +Andrew Ramsay,Tilt and go: exploring multimodal mobile maps in the field.,2010,3,J. Multimodal User Interfaces,3,db/journals/jmui/jmui3.html#RamsayMWGGT10,https://doi.org/10.1007/s12193-010-0037-1 +Marissa Milne,Personalisation and automation in a virtual conversation skills tutor for children with autism.,2018,12,J. Multimodal User Interfaces,3,db/journals/jmui/jmui12.html#MilneRLP18,https://doi.org/10.1007/s12193-018-0272-4 +Byung-Kil Han,Typing performance evaluation with multimodal soft keyboard completely integrated in commercial mobile devices.,2015,9,J. Multimodal User Interfaces,3,db/journals/jmui/jmui9.html#HanK15,https://doi.org/10.1007/s12193-015-0177-4 +Tea Marasovic,LMNN metric learning and fuzzy nearest neighbour classifier for hand gesture recognition.,2015,9,J. Multimodal User Interfaces,3,db/journals/jmui/jmui9.html#MarasovicPZ15,https://doi.org/10.1007/s12193-015-0194-3 +Péter Baranyi,Special issue on multimodal interfaces in cognitive infocommunication systems.,2014,8,J. Multimodal User Interfaces,2,db/journals/jmui/jmui8.html#BaranyiC14,https://doi.org/10.1007/s12193-014-0155-2 +Oussama Metatla,Audio-haptic interfaces for digital audio workstations.,2016,10,J. Multimodal User Interfaces,3,db/journals/jmui/jmui10.html#MetatlaMPBST16,https://doi.org/10.1007/s12193-016-0217-8 +Yuya Chiba,Cluster-based approach to discriminate the user's state whether a user is embarrassed or thinking to an answer to a prompt.,2017,11,J. Multimodal User Interfaces,2,db/journals/jmui/jmui11.html#ChibaNI17,https://doi.org/10.1007/s12193-017-0238-y +Jianlong Zhou,DecisionMind: revealing human cognition states in data analytics-driven decision making with a multimodal interface.,2018,12,J. Multimodal User Interfaces,2,db/journals/jmui/jmui12.html#ZhouC18,https://doi.org/10.1007/s12193-017-0249-8 +ágoston Török,Effect of stimulus intensity on response time distribution in multisensory integration.,2014,8,J. Multimodal User Interfaces,2,db/journals/jmui/jmui8.html#TorokKVHC14,https://doi.org/10.1007/s12193-013-0135-y +Albert Ali Salah,Enriching the user experience with multimodal interfaces.,2011,4,J. Multimodal User Interfaces,2,db/journals/jmui/jmui4.html#SalahD11,https://doi.org/10.1007/s12193-011-0061-9 +Thierry Duval,Improving awareness for 3D virtual collaboration by embedding the features of users' physical environments and by augmenting interaction tools with cognitive feedback cues.,2014,8,J. Multimodal User Interfaces,2,db/journals/jmui/jmui8.html#DuvalNFCDG14,https://doi.org/10.1007/s12193-013-0134-z +Youngwon R. Kim,Evaluation of hand-foot coordinated quadruped interaction for mobile applications.,2017,11,J. Multimodal User Interfaces,4,db/journals/jmui/jmui11.html#KimAK17,https://doi.org/10.1007/s12193-017-0254-y +Ronald Poppe,From multimodal analysis to real-time interactions with virtual agents.,2014,8,J. Multimodal User Interfaces,1,db/journals/jmui/jmui8.html#PoppeBBCKT14,https://doi.org/10.1007/s12193-014-0152-5 +Hamdi Dibeklioglu,Design and implementation of an affect-responsive interactive photo frame.,2011,4,J. Multimodal User Interfaces,2,db/journals/jmui/jmui4.html#DibekliogluHKZS11,https://doi.org/10.1007/s12193-011-0057-5 +Ravikiran B. Singapogu,Perceptually salient haptic rendering for enhancing kinesthetic perception in virtual environments.,2014,8,J. Multimodal User Interfaces,3,db/journals/jmui/jmui8.html#SingapoguPBDZL14,https://doi.org/10.1007/s12193-014-0164-1 +Bart Joosten,Voice activity detection based on facial movement.,2015,9,J. Multimodal User Interfaces,3,db/journals/jmui/jmui9.html#JoostenPK15,https://doi.org/10.1007/s12193-015-0187-2 +Ugan Yasavur,Let's talk! speaking virtual counselor offers you a brief intervention.,2014,8,J. Multimodal User Interfaces,4,db/journals/jmui/jmui8.html#YasavurLR14,https://doi.org/10.1007/s12193-014-0169-9 +Laura Montanini,Low complexity head tracking on portable android devices for real time message composition.,2015,9,J. Multimodal User Interfaces,2,db/journals/jmui/jmui9.html#MontaniniCGS15,https://doi.org/10.1007/s12193-015-0174-7 +Franca-Alexandra Rupprecht,Improving collaboration efficiency via diverse networked mobile devices.,2018,12,J. Multimodal User Interfaces,2,db/journals/jmui/jmui12.html#RupprechtKAHE18,https://doi.org/10.1007/s12193-017-0251-1 +László Lengyel,Open issues in model transformations for multimodal applications.,2015,9,J. Multimodal User Interfaces,4,db/journals/jmui/jmui9.html#LengyelC15,https://doi.org/10.1007/s12193-015-0192-5 +Merel M. Jung,Automatic recognition of touch gestures in the corpus of social touch.,2017,11,J. Multimodal User Interfaces,1,db/journals/jmui/jmui11.html#JungPPH17,https://doi.org/10.1007/s12193-016-0232-9 +Pedro Luis Mateo Navarro,Run-time model based framework for automatic evaluation of multimodal interfaces.,2014,8,J. Multimodal User Interfaces,4,db/journals/jmui/jmui8.html#NavarroHMRP14,https://doi.org/10.1007/s12193-014-0170-3 +Konstantinos Kostopoulos,Haptic access to conventional 2D maps for the visually impaired.,2007,1,J. Multimodal User Interfaces,2,db/journals/jmui/jmui1.html#KostopoulosMTNT07,https://doi.org/10.1007/BF02910055 +Maurizio Mancini,Generating distinctive behavior for Embodied Conversational Agents.,2009,3,J. Multimodal User Interfaces,4,db/journals/jmui/jmui3.html#ManciniP09,https://doi.org/10.1007/s12193-010-0048-y +Damien Tardieu,Browsing a dance video collection: dance analysis and interface design.,2010,4,J. Multimodal User Interfaces,1,db/journals/jmui/jmui4.html#TardieuSMCDDVV10,https://doi.org/10.1007/s12193-010-0049-x +Rifat Muhammad Mueid,Pedestrian activity classification using patterns of motion and histogram of oriented gradient.,2016,10,J. Multimodal User Interfaces,4,db/journals/jmui/jmui10.html#MueidAA16,https://doi.org/10.1007/s12193-015-0178-3 +Hajer Fradi,Spatial and temporal variations of feature tracks for crowd behavior analysis.,2016,10,J. Multimodal User Interfaces,4,db/journals/jmui/jmui10.html#FradiD16,https://doi.org/10.1007/s12193-015-0179-2 +Jan Balata,KoalaPhone: touchscreen mobile phone UI for active seniors.,2015,9,J. Multimodal User Interfaces,4,db/journals/jmui/jmui9.html#BalataMS15,https://doi.org/10.1007/s12193-015-0188-1 +László Kundra,Orientation estimation in modern wearables with visual feature tracking.,2015,9,J. Multimodal User Interfaces,4,db/journals/jmui/jmui9.html#KundraEC15,https://doi.org/10.1007/s12193-015-0180-9 +Leman Figen Gül,Studying gesture-based interaction on a mobile augmented reality application for co-design activity.,2018,12,J. Multimodal User Interfaces,2,db/journals/jmui/jmui12.html#Gul18,https://doi.org/10.1007/s12193-017-0252-0 +Alexy Bhowmick,An insight into assistive technology for the visually impaired and blind people: state-of-the-art and future trends.,2017,11,J. Multimodal User Interfaces,2,db/journals/jmui/jmui11.html#BhowmickH17,https://doi.org/10.1007/s12193-016-0235-6 +Abhinav Dhall,Emotion recognition in the wild.,2016,10,J. Multimodal User Interfaces,2,db/journals/jmui/jmui10.html#DhallGGS16,https://doi.org/10.1007/s12193-016-0213-z +Lazlo Ring,Social support agents for older adults: longitudinal affective computing in the home.,2015,9,J. Multimodal User Interfaces,1,db/journals/jmui/jmui9.html#RingSTB15,https://doi.org/10.1007/s12193-014-0157-0 +Andrea Sanna,A kinect-based interface to animate virtual characters.,2013,7,J. Multimodal User Interfaces,4,db/journals/jmui/jmui7.html#SannaLPR13,https://doi.org/10.1007/s12193-012-0113-9 +Jamil Hussain,Model-based adaptive user interface based on context and user experience evaluation.,2018,12,J. Multimodal User Interfaces,1,db/journals/jmui/jmui12.html#HussainHBAAHBBL18,https://doi.org/10.1007/s12193-018-0258-2 +Julián García,Prototyping and evaluating glove-based multimodal interfaces.,2008,2,J. Multimodal User Interfaces,1,db/journals/jmui/jmui2.html#GarciaMMGGV08,https://doi.org/10.1007/s12193-008-0005-1 +Alejandro Moreno,Automatic behavior analysis in tag games: from traditional spaces to interactive playgrounds.,2016,10,J. Multimodal User Interfaces,1,db/journals/jmui/jmui10.html#MorenoP16,https://doi.org/10.1007/s12193-016-0211-1 +Dirk Schnelle-Walka,JVoiceXML as a modality component in the W3C multimodal architecture.,2013,7,J. Multimodal User Interfaces,3,db/journals/jmui/jmui7.html#Schnelle-WalkaR13,https://doi.org/10.1007/s12193-013-0119-y +Jaedong Lee,Vouch: multimodal touch-and-voice input for smart watches under difficult operating conditions.,2017,11,J. Multimodal User Interfaces,3,db/journals/jmui/jmui11.html#LeeLK17,https://doi.org/10.1007/s12193-017-0246-y +Martin Schels,Using unlabeled data to improve classification of emotional states in human computer interaction.,2014,8,J. Multimodal User Interfaces,1,db/journals/jmui/jmui8.html#SchelsKGH0S14,https://doi.org/10.1007/s12193-013-0133-0 +Ayoung Hong,Multimodal feedback for teleoperation of multiple mobile robots in an outdoor environment.,2017,11,J. Multimodal User Interfaces,1,db/journals/jmui/jmui11.html#HongLBS17,https://doi.org/10.1007/s12193-016-0230-y +Justin Mathew,Survey and implications for the design of new 3D audio production and authoring tools.,2017,11,J. Multimodal User Interfaces,3,db/journals/jmui/jmui11.html#MathewHK17,https://doi.org/10.1007/s12193-017-0245-z +Cédric Camier,On the robustness of upper limits for circular auditory motion perception.,2016,10,J. Multimodal User Interfaces,3,db/journals/jmui/jmui10.html#CamierBG16,https://doi.org/10.1007/s12193-016-0225-8 +Stefano Mottura,A virtual reality system for strengthening awareness and participation in rehabilitation for post-stroke patients.,2015,9,J. Multimodal User Interfaces,4,db/journals/jmui/jmui9.html#MotturaFAZRS15,https://doi.org/10.1007/s12193-015-0184-5 +Qijie Zhao,Eye moving behaviors identification for gaze tracking interaction.,2015,9,J. Multimodal User Interfaces,2,db/journals/jmui/jmui9.html#ZhaoYTL15,https://doi.org/10.1007/s12193-014-0171-2 +ádám Csapó,A survey of assistive technologies and applications for blind users on mobile platforms: a review and foundation for research.,2015,9,J. Multimodal User Interfaces,4,db/journals/jmui/jmui9.html#CsapoWNS15,https://doi.org/10.1007/s12193-015-0182-7 +Bo-Kyeong Kim,Hierarchical committee of deep convolutional neural networks for robust facial expression recognition.,2016,10,J. Multimodal User Interfaces,2,db/journals/jmui/jmui10.html#KimRDL16,https://doi.org/10.1007/s12193-015-0209-0 +Avinash Parnandi,A comparative study of game mechanics and control laws for an adaptive physiological game.,2015,9,J. Multimodal User Interfaces,1,db/journals/jmui/jmui9.html#ParnandiG15,https://doi.org/10.1007/s12193-014-0159-y +Stéphanie Buisine,Empirical investigation of the temporal relations between speech and facial expressions of emotion.,2009,3,J. Multimodal User Interfaces,4,db/journals/jmui/jmui3.html#BuisineWG09,https://doi.org/10.1007/s12193-010-0050-4 +Hernán F. García,Dynamic facial landmarking selection for emotion recognition using Gaussian processes.,2017,11,J. Multimodal User Interfaces,4,db/journals/jmui/jmui11.html#GarciaAO17,https://doi.org/10.1007/s12193-017-0256-9 +Dong Seon Cheng,Predicting online lecture ratings based on gesturing and vocal behavior.,2014,8,J. Multimodal User Interfaces,2,db/journals/jmui/jmui8.html#ChengSSCVM14,https://doi.org/10.1007/s12193-013-0142-z +Marcos Serrano,A wizard of oz component-based approach for rapidly prototyping and testing input multimodal interfaces.,2010,3,J. Multimodal User Interfaces,3,db/journals/jmui/jmui3.html#SerranoN10,https://doi.org/10.1007/s12193-010-0042-4 +Jeffrey R. Blum,Real-time emergency response: improved management of real-time information during crisis situations.,2014,8,J. Multimodal User Interfaces,2,db/journals/jmui/jmui8.html#BlumESSC14,https://doi.org/10.1007/s12193-013-0139-7 +Nicolas D'Alessandro,RAMCESS 2.X framework - expressive voice analysis for realtime and accurate synthesis of singing.,2008,2,J. Multimodal User Interfaces,2,db/journals/jmui/jmui2.html#DAlessandroBBDH08,https://doi.org/10.1007/s12193-008-0010-4 +Mathieu Jégou,A computational model for the emergence of turn-taking behaviors in user-agent interactions.,2018,12,J. Multimodal User Interfaces,3,db/journals/jmui/jmui12.html#JegouC18,https://doi.org/10.1007/s12193-018-0265-3 +Robbie Schaefer,Assessment of a multimodal interaction and rendering system against established design principles.,2008,2,J. Multimodal User Interfaces,1,db/journals/jmui/jmui2.html#Schaefer008,https://doi.org/10.1007/s12193-008-0003-3 +Radu-Daniel Vatavu,Characterizing gesture knowledge transfer across multiple contexts of use.,2017,11,J. Multimodal User Interfaces,4,db/journals/jmui/jmui11.html#Vatavu17,https://doi.org/10.1007/s12193-017-0247-x +Lynne Baillie,An investigation of user responses to specifically designed activities in a multimodal location based game.,2010,3,J. Multimodal User Interfaces,3,db/journals/jmui/jmui3.html#BaillieMUM10,https://doi.org/10.1007/s12193-010-0039-z +Bruno Dumas,Description languages for multimodal interaction: a set of guidelines and its illustration with SMUIML.,2010,3,J. Multimodal User Interfaces,3,db/journals/jmui/jmui3.html#DumasLI10,https://doi.org/10.1007/s12193-010-0043-3 +Jérémy Lacoche,Providing plasticity and redistribution for 3D user interfaces using the D3PART model.,2017,11,J. Multimodal User Interfaces,2,db/journals/jmui/jmui11.html#LacocheDAMR17,https://doi.org/10.1007/s12193-017-0239-x +ágoston Török,It sounds real when you see it. Realistic sound source simulation in multimodal virtual environments.,2015,9,J. Multimodal User Interfaces,4,db/journals/jmui/jmui9.html#TorokMHMPC15,https://doi.org/10.1007/s12193-015-0185-4 +Youngsun Kim,Design and application of 2D illusory vibrotactile feedback for hand-held tablets.,2017,11,J. Multimodal User Interfaces,2,db/journals/jmui/jmui11.html#KimLK17,https://doi.org/10.1007/s12193-016-0234-7 +Roman Hak,Consistent categorization of multimodal integration patterns during human-computer interaction.,2017,11,J. Multimodal User Interfaces,3,db/journals/jmui/jmui11.html#HakZ17,https://doi.org/10.1007/s12193-017-0243-1 +éva Székely,Facial expression-based affective speech translation.,2014,8,J. Multimodal User Interfaces,1,db/journals/jmui/jmui8.html#SzekelySAC14,https://doi.org/10.1007/s12193-013-0128-x +Dmytro Prylipko,Analysis of significant dialog events in realistic human-computer interaction.,2014,8,J. Multimodal User Interfaces,1,db/journals/jmui/jmui8.html#PrylipkoRSGFHVW14,https://doi.org/10.1007/s12193-013-0144-x +Tawhidul Islam Khan,Integrity analysis of knee joint by acoustic emission technique.,2016,10,J. Multimodal User Interfaces,4,db/journals/jmui/jmui10.html#KhanY16,https://doi.org/10.1007/s12193-015-0206-3 +Alin Gavril Chitu,Comparison between different feature extraction techniques for audio-visual speech recognition.,2007,1,J. Multimodal User Interfaces,1,db/journals/jmui/jmui1.html#ChituRWW07,https://doi.org/10.1007/BF02884428 +Christian Peter,AGNES: Connecting people in a multimodal way.,2013,7,J. Multimodal User Interfaces,3,db/journals/jmui/jmui7.html#PeterKSKBOHWWB13,https://doi.org/10.1007/s12193-013-0118-z +Brandon Paulson,MARQS: retrieving sketches learned from a single example using a dual-classifier.,2008,2,J. Multimodal User Interfaces,1,db/journals/jmui/jmui2.html#PaulsonH08,https://doi.org/10.1007/s12193-008-0006-0 +Bülent Sankur,Guest Editorial of the special eNTERFACE issue.,2008,2,J. Multimodal User Interfaces,2,db/journals/jmui/jmui2.html#Sankur08,https://doi.org/10.1007/s12193-008-0013-1 +Nadia Elouali,Multimodal interaction: a survey from model driven engineering and mobile perspectives.,2013,7,J. Multimodal User Interfaces,4,db/journals/jmui/jmui7.html#EloualiRPT13,https://doi.org/10.1007/s12193-013-0126-z +Bartlomiej P. Walus,Sonification and music as support to the communication of alcohol-related health risks to young people.,2016,10,J. Multimodal User Interfaces,3,db/journals/jmui/jmui10.html#WalusPM16,https://doi.org/10.1007/s12193-016-0220-0 +Cristian A. Torres-Valencia,SVM-based feature selection methods for emotion recognition from multimodal data.,2017,11,J. Multimodal User Interfaces,1,db/journals/jmui/jmui11.html#Torres-Valencia17,https://doi.org/10.1007/s12193-016-0222-y +Landry Delphin Chapwouo Tchakouté,Use of tactons to communicate a risk level through an enactive shoe.,2018,12,J. Multimodal User Interfaces,1,db/journals/jmui/jmui12.html#TchakouteGM18,https://doi.org/10.1007/s12193-018-0260-8 +Pedro Alves Nogueira,Vanishing scares: biofeedback modulation of affective player experiences in a procedural horror game.,2016,10,J. Multimodal User Interfaces,1,db/journals/jmui/jmui10.html#NogueiraTRON16,https://doi.org/10.1007/s12193-015-0208-1 +Daniel Schreiber,Web based evaluation of proactive user interfaces.,2008,2,J. Multimodal User Interfaces,1,db/journals/jmui/jmui2.html#SchreiberHFMGZ08,https://doi.org/10.1007/s12193-008-0001-5 +Marie-Luce Bourguet,Design and usability evaluation of multimodal interaction with finite state machines: a conceptual framework.,2008,2,J. Multimodal User Interfaces,1,db/journals/jmui/jmui2.html#BourguetC08,https://doi.org/10.1007/s12193-008-0004-2 +Olivier Martin,Synthesis of expressive facial animations: A multimodal caricatural mirror.,2007,1,J. Multimodal User Interfaces,1,db/journals/jmui/jmui1.html#MartinKPSAHS07,https://doi.org/10.1007/BF02884429 +Marine Taffou,Judging crowds' size by ear and by eye in virtual reality.,2017,11,J. Multimodal User Interfaces,1,db/journals/jmui/jmui11.html#TaffouOOWV17,https://doi.org/10.1007/s12193-016-0228-5 +Jan Balata,Landmark-enhanced route itineraries for navigation of blind pedestrians in urban environment.,2018,12,J. Multimodal User Interfaces,3,db/journals/jmui/jmui12.html#BalataMS18,https://doi.org/10.1007/s12193-018-0263-5 +Myunghee Lee,Empathetic video clip experience through timely multimodal interaction.,2014,8,J. Multimodal User Interfaces,3,db/journals/jmui/jmui8.html#LeeK14,https://doi.org/10.1007/s12193-014-0151-6 +Dennis Reidsma,Continuous interaction with a virtual human.,2011,4,J. Multimodal User Interfaces,2,db/journals/jmui/jmui4.html#ReidsmaKNPSTW11,https://doi.org/10.1007/s12193-011-0060-x +Michael Glodek,Combination of sequential class distributions from multiple channels using Markov fusion networks.,2014,8,J. Multimodal User Interfaces,3,db/journals/jmui/jmui8.html#GlodekSSP14,https://doi.org/10.1007/s12193-014-0149-0 +Ferda Ofli,An audio-driven dancing avatar.,2008,2,J. Multimodal User Interfaces,2,db/journals/jmui/jmui2.html#OfliDYETBKACTBE08,https://doi.org/10.1007/s12193-008-0009-x +Alaeddine Mihoub,Learning multimodal behavioral models for face-to-face social interaction.,2015,9,J. Multimodal User Interfaces,3,db/journals/jmui/jmui9.html#MihoubB0E15,https://doi.org/10.1007/s12193-015-0190-7 +Savvas Argyropoulos,Multimodal user interface for the communication of the disabled.,2008,2,J. Multimodal User Interfaces,2,db/journals/jmui/jmui2.html#ArgyropoulosMKA08,https://doi.org/10.1007/s12193-008-0012-2 +Alexandre Benoit,Multimodal signal processing and interaction for a driving simulator: Component-based architecture.,2007,1,J. Multimodal User Interfaces,1,db/journals/jmui/jmui1.html#BenoitBCJNSDTL07,https://doi.org/10.1007/BF02884432 +Gérard Bailly,"Critical review of the book ""Gaze in Human-Robot Communication"".",2017,11,J. Multimodal User Interfaces,1,db/journals/jmui/jmui11.html#Bailly17,https://doi.org/10.1007/s12193-016-0219-6 +Hans-Peter Brückner,Design space exploration of hardware platforms for interactive low latency movement sonification.,2016,10,J. Multimodal User Interfaces,1,db/journals/jmui/jmui10.html#BrucknerLTB16,https://doi.org/10.1007/s12193-015-0199-y +Bálint Sövény,Blind guide.,2015,9,J. Multimodal User Interfaces,4,db/journals/jmui/jmui9.html#SovenyKK15,https://doi.org/10.1007/s12193-015-0191-6 +Adriana Peña Pérez Negrón,Nonverbal interaction contextualized in collaborative virtual environments.,2015,9,J. Multimodal User Interfaces,3,db/journals/jmui/jmui9.html#NegronBL15,https://doi.org/10.1007/s12193-015-0193-4 +Amira Bouabid,Study on generic tangible objects used to collaborate remotely on RFID tabletops.,2018,12,J. Multimodal User Interfaces,3,db/journals/jmui/jmui12.html#BouabidLK18,https://doi.org/10.1007/s12193-018-0262-6 +Md. Atiqur Rahman Ahad,Action recognition based on binary patterns of action-history and histogram of oriented gradient.,2016,10,J. Multimodal User Interfaces,4,db/journals/jmui/jmui10.html#AhadIJ16,https://doi.org/10.1007/s12193-016-0229-4 +Christian Mühl,Bacteria Hunt.,2010,4,J. Multimodal User Interfaces,1,db/journals/jmui/jmui4.html#MuhlGBTSDEKPH10,https://doi.org/10.1007/s12193-010-0046-0 +Suzanne Kieffer,How really effective are multimodal hints in enhancing visual target spotting? Some evidence from a usability study.,2007,1,J. Multimodal User Interfaces,1,db/journals/jmui/jmui1.html#KiefferC07,https://doi.org/10.1007/BF02884427 +Giota Stratou,Automatic nonverbal behavior indicators of depression and PTSD: the effect of gender.,2015,9,J. Multimodal User Interfaces,1,db/journals/jmui/jmui9.html#StratouSGM15,https://doi.org/10.1007/s12193-014-0161-4 +Samer Al Moubayed,Auditory visual prominence.,2009,3,J. Multimodal User Interfaces,4,db/journals/jmui/jmui3.html#MoubayedBG09,https://doi.org/10.1007/s12193-010-0054-0 +Merijn Bruijnes,The recognition of acted interpersonal stance in police interrogations and the influence of actor proficiency.,2015,9,J. Multimodal User Interfaces,4,db/journals/jmui/jmui9.html#BruijnesASSF15,https://doi.org/10.1007/s12193-015-0189-0 +Nicolas D'Alessandro,Realtime and accurate musical control of expression in singing synthesis.,2007,1,J. Multimodal User Interfaces,1,db/journals/jmui/jmui1.html#DAlessandroWFDB07,https://doi.org/10.1007/BF02884430 +David Díaz Pardo de Vera,Non-verbal communication strategies to improve robustness in dialogue systems: a comparative study.,2009,3,J. Multimodal User Interfaces,4,db/journals/jmui/jmui3.html#VeraLTG09,https://doi.org/10.1007/s12193-010-0052-2 +Christopher McMurrough,A dataset for point of gaze detection using head poses and eye images.,2013,7,J. Multimodal User Interfaces,3,db/journals/jmui/jmui7.html#McMurroughMKMM13,https://doi.org/10.1007/s12193-013-0121-4 +Jyoti Joshi,Multimodal assistive technologies for depression diagnosis and monitoring.,2013,7,J. Multimodal User Interfaces,3,db/journals/jmui/jmui7.html#JoshiGAD0EPB13,https://doi.org/10.1007/s12193-013-0123-2 +Xiao-Li Guo,Gesture recognition based on HMM-FNN model using a Kinect.,2017,11,J. Multimodal User Interfaces,1,db/journals/jmui/jmui11.html#GuoY17,https://doi.org/10.1007/s12193-016-0215-x +Christoffer Holmgård,Multimodal PTSD characterization via the StartleMart game.,2015,9,J. Multimodal User Interfaces,1,db/journals/jmui/jmui9.html#HolmgardYMKA15,https://doi.org/10.1007/s12193-014-0160-5 +Maurizio Mancini,Human movement expressivity for mobile active music listening.,2010,4,J. Multimodal User Interfaces,1,db/journals/jmui/jmui4.html#ManciniVKVC10,https://doi.org/10.1007/s12193-010-0047-z +Iwan de Kok,Iterative perceptual learning for social behavior synthesis.,2014,8,J. Multimodal User Interfaces,3,db/journals/jmui/jmui8.html#KokPH14,https://doi.org/10.1007/s12193-013-0132-1 +Ronald Poppe,Switching Wizard of Oz for the online evaluation of backchannel behavior.,2014,8,J. Multimodal User Interfaces,1,db/journals/jmui/jmui8.html#PoppeMH14,https://doi.org/10.1007/s12193-013-0131-2 +Mohammad Soleymani,Best of affective computing and intelligent interaction 2013 in multimodal interactions.,2015,9,J. Multimodal User Interfaces,1,db/journals/jmui/jmui9.html#SoleymaniPN15,https://doi.org/10.1007/s12193-014-0163-2 +Anastasios G. Bakaoukas,Examining brain activity while playing computer games.,2016,10,J. Multimodal User Interfaces,1,db/journals/jmui/jmui10.html#BakaoukasCL16,https://doi.org/10.1007/s12193-015-0205-4 +Paola Salomoni,Diegetic user interfaces for virtual environments with HMDs: a user experience study with oculus rift.,2017,11,J. Multimodal User Interfaces,2,db/journals/jmui/jmui11.html#SalomoniPRCMM17,https://doi.org/10.1007/s12193-016-0236-5 +Luca Szegletes,Socio-cognitive gamification: general framework for educational games.,2015,9,J. Multimodal User Interfaces,4,db/journals/jmui/jmui9.html#SzegletesKF15,https://doi.org/10.1007/s12193-015-0183-6 +Sascha Schimke,Similarity searching for on-line handwritten documents.,2007,1,J. Multimodal User Interfaces,2,db/journals/jmui/jmui1.html#SchimkeV07,https://doi.org/10.1007/BF02910058 +Raúl A. Herrera Acuña,A Kinect-based 3D hand-gesture interface for 3D databases.,2015,9,J. Multimodal User Interfaces,2,db/journals/jmui/jmui9.html#AcunaAV15,https://doi.org/10.1007/s12193-014-0173-0 +Hari Singh,Real-time eye blink and wink detection for object selection in HCI systems.,2018,12,J. Multimodal User Interfaces,1,db/journals/jmui/jmui12.html#SinghS18,https://doi.org/10.1007/s12193-018-0261-7 +Benjamin Stahl,Design and evaluation of the effectiveness of a sonification technique for real time heart-rate data.,2016,10,J. Multimodal User Interfaces,3,db/journals/jmui/jmui10.html#StahlT16,https://doi.org/10.1007/s12193-016-0218-7 +Oya Aran,Speech and sliding text aided sign retrieval from hearing impaired sign news videos.,2008,2,J. Multimodal User Interfaces,2,db/journals/jmui/jmui2.html#AranAADPSCH08,https://doi.org/10.1007/s12193-008-0007-z +Weidong Huang 0001,Augmented 3D hands: a gesture-based mixed reality system for distributed collaboration.,2018,12,J. Multimodal User Interfaces,2,db/journals/jmui/jmui12.html#HuangATD18,https://doi.org/10.1007/s12193-017-0250-2 +Benjamin Weiss 0001,Multimodal HCI: exploratory studies on effects of first impression and single modality ratings in retrospective evaluation.,2017,11,J. Multimodal User Interfaces,2,db/journals/jmui/jmui11.html#WeissWHM17,https://doi.org/10.1007/s12193-016-0233-8 +Idan Almog,Mediated telemedicine vs. face-to-face medicine: efficiency in distress reduction.,2015,9,J. Multimodal User Interfaces,4,db/journals/jmui/jmui9.html#AlmogWAWL15,https://doi.org/10.1007/s12193-015-0181-8 +Ingo Siegert,Inter-rater reliability for emotion annotation in human-computer interaction: comparison and methodological improvements.,2014,8,J. Multimodal User Interfaces,1,db/journals/jmui/jmui8.html#SiegertBW14,https://doi.org/10.1007/s12193-013-0129-9 +Hansol Kim,Multi-modal user interface combining eye tracking and hand gesture recognition.,2017,11,J. Multimodal User Interfaces,3,db/journals/jmui/jmui11.html#KimSL17,https://doi.org/10.1007/s12193-017-0242-2 +Joren Six,Synchronizing multimodal recordings using audio-to-audio alignment.,2015,9,J. Multimodal User Interfaces,3,db/journals/jmui/jmui9.html#SixL15,https://doi.org/10.1007/s12193-015-0196-1 +Matthieu Courgeon,MARC: a framework that features emotion models for facial animation during human-computer interaction.,2013,7,J. Multimodal User Interfaces,4,db/journals/jmui/jmui7.html#CourgeonC13,https://doi.org/10.1007/s12193-013-0124-1 +Brian F. G. Katz,Advances in auditory display research.,2016,10,J. Multimodal User Interfaces,3,db/journals/jmui/jmui10.html#KatzM16,https://doi.org/10.1007/s12193-016-0226-7 +Bo Sun,Combining feature-level and decision-level fusion in a hierarchical classifier for emotion recognition in the wild.,2016,10,J. Multimodal User Interfaces,2,db/journals/jmui/jmui10.html#SunLWZCZHZ16,https://doi.org/10.1007/s12193-015-0203-6 +Péter Baranyi,Preface.,2015,9,J. Multimodal User Interfaces,4,db/journals/jmui/jmui9.html#BaranyiCEFM15,https://doi.org/10.1007/s12193-015-0201-8 +Mohamed Yassine Tsalamlal,Haptic communication of dimensions of emotions using air jet based tactile stimulation.,2015,9,J. Multimodal User Interfaces,1,db/journals/jmui/jmui9.html#TsalamlalOMA15,https://doi.org/10.1007/s12193-014-0162-3 +Jan Balata,Collaborative navigation of visually impaired.,2014,8,J. Multimodal User Interfaces,2,db/journals/jmui/jmui8.html#BalataFMS14,https://doi.org/10.1007/s12193-013-0137-9 +Jérôme Urbain,AVLaughterCycle.,2010,4,J. Multimodal User Interfaces,1,db/journals/jmui/jmui4.html#UrbainNBDMPPTW10,https://doi.org/10.1007/s12193-010-0053-1 +Georgios N. Stamou,A monocular system for person tracking: Implementation and testing.,2007,1,J. Multimodal User Interfaces,2,db/journals/jmui/jmui1.html#StamouKNP07,https://doi.org/10.1007/BF02910057 +Francesco Tordini,Prioritizing foreground selection of natural chirp sounds by tempo and spectral centroid.,2016,10,J. Multimodal User Interfaces,3,db/journals/jmui/jmui10.html#TordiniBC16,https://doi.org/10.1007/s12193-016-0223-x +Donato Fiorella,Multi-touch user interface evaluation for 3D object manipulation on mobile devices.,2010,4,J. Multimodal User Interfaces,1,db/journals/jmui/jmui4.html#FiorellaSL10,https://doi.org/10.1007/s12193-009-0034-4 +István Szekrényes,Annotation and interpretation of prosodic data in the HuComTech corpus for multimodal user interfaces.,2014,8,J. Multimodal User Interfaces,2,db/journals/jmui/jmui8.html#Szekrenyes14,https://doi.org/10.1007/s12193-013-0140-1 +Donald Glowinski,Expressive non-verbal interaction in a string quartet: an analysis through head movements.,2015,9,J. Multimodal User Interfaces,1,db/journals/jmui/jmui9.html#GlowinskiDGPC15,https://doi.org/10.1007/s12193-014-0154-3 +Sunil Kumar,Extraction of texture and geometrical features from informative facial regions for sign language recognition.,2017,11,J. Multimodal User Interfaces,2,db/journals/jmui/jmui11.html#KumarBC17,https://doi.org/10.1007/s12193-017-0241-3 +Yuan Zong,Emotion recognition in the wild via sparse transductive transfer linear discriminant analysis.,2016,10,J. Multimodal User Interfaces,2,db/journals/jmui/jmui10.html#ZongZHYYZ16,https://doi.org/10.1007/s12193-015-0210-7 +Marilyn Rose McGee-Lennon,The challenges of engineering multimodal interaction.,2010,3,J. Multimodal User Interfaces,3,db/journals/jmui/jmui3.html#McGee-LennonNG10,https://doi.org/10.1007/s12193-010-0045-1 +Jean Vanderdonckt,Editorial.,2008,2,J. Multimodal User Interfaces,1,db/journals/jmui/jmui2.html#Vanderdonckt08,https://doi.org/10.1007/s12193-008-0011-3 +Laura Cohen,A natural interface based on intention prediction for semi-autonomous micromanipulation.,2018,12,J. Multimodal User Interfaces,1,db/journals/jmui/jmui12.html#CohenCRH18,https://doi.org/10.1007/s12193-018-0259-1 +Markus Kächele,Revisiting the EmotiW challenge: how wild is it really?,2016,10,J. Multimodal User Interfaces,2,db/journals/jmui/jmui10.html#KacheleSMPS16,https://doi.org/10.1007/s12193-015-0202-7 +Héctor Olmedo-Rodríguez,Multimodal interaction with virtual worlds XMMVR: eXtensible language for MultiModal interaction with virtual reality worlds.,2015,9,J. Multimodal User Interfaces,3,db/journals/jmui/jmui9.html#Olmedo-Rodriguez15,https://doi.org/10.1007/s12193-015-0176-5 +Thomas Visser,A model for incremental grounding in spoken dialogue systems.,2014,8,J. Multimodal User Interfaces,1,db/journals/jmui/jmui8.html#VisserTDA14,https://doi.org/10.1007/s12193-013-0147-7 +Rosen Ivanov,Blind-environment interaction through voice augmented objects.,2014,8,J. Multimodal User Interfaces,4,db/journals/jmui/jmui8.html#Ivanov14,https://doi.org/10.1007/s12193-014-0166-z +Werner A. König,Interactive design of multimodal user interfaces.,2010,3,J. Multimodal User Interfaces,3,db/journals/jmui/jmui3.html#KonigRR10,https://doi.org/10.1007/s12193-010-0044-2 +Berardina De Carolis,Recognizing signals of social attitude in interacting with Ambient Conversational Systems.,2014,8,J. Multimodal User Interfaces,1,db/journals/jmui/jmui8.html#CarolisN14,https://doi.org/10.1007/s12193-013-0143-y +B. Estrany,Multimodal human-machine interface devices in the cloud.,2018,12,J. Multimodal User Interfaces,2,db/journals/jmui/jmui12.html#EstranyMMBL18,https://doi.org/10.1007/s12193-017-0253-z +Hung-Hsuan Huang,An agent based multicultural tour guide system with nonverbal user interface.,2007,1,J. Multimodal User Interfaces,1,db/journals/jmui/jmui1.html#HuangTNCLZPN07,https://doi.org/10.1007/BF02884431 +Pedro Alves Nogueira,Multi-modal natural interaction in game design: a comparative analysis of player experience in a large scale role-playing game.,2015,9,J. Multimodal User Interfaces,2,db/journals/jmui/jmui9.html#NogueiraTS15,https://doi.org/10.1007/s12193-014-0172-1 +Samira Ebrahimi Kahou,EmoNets: Multimodal deep learning approaches for emotion recognition in video.,2016,10,J. Multimodal User Interfaces,2,db/journals/jmui/jmui10.html#KahouBLGMKJFDBF16,https://doi.org/10.1007/s12193-015-0195-2 +Dimitra Anastasiou,Gesture analysis in a case study with a tangible user interface for collaborative problem solving.,2014,8,J. Multimodal User Interfaces,3,db/journals/jmui/jmui8.html#AnastasiouMR14,https://doi.org/10.1007/s12193-014-0158-z +Jean-Sébastien Sottet,A language perspective on the development of plastic multimodal user interfaces.,2007,1,J. Multimodal User Interfaces,2,db/journals/jmui/jmui1.html#SottetCCFVSL07,https://doi.org/10.1007/BF02910054 +Tim Vets,Gamified music improvisation with BilliArT: a multimodal installation with balls.,2017,11,J. Multimodal User Interfaces,1,db/journals/jmui/jmui11.html#VetsNLMBCLWL17,https://doi.org/10.1007/s12193-016-0224-9 +Diego Arnone,An open source integrated framework for rapid prototyping of multimodal affective applications in digital entertainment.,2010,3,J. Multimodal User Interfaces,3,db/journals/jmui/jmui3.html#ArnoneRB10,https://doi.org/10.1007/s12193-010-0035-3 +Brian Horsak,SONIGait: a wireless instrumented insole device for real-time sonification of gait.,2016,10,J. Multimodal User Interfaces,3,db/journals/jmui/jmui10.html#HorsakDIGKGSD16,https://doi.org/10.1007/s12193-016-0216-9 +Mohamed M. Saad,Ultrasonic hand gesture recognition for mobile devices.,2018,12,J. Multimodal User Interfaces,1,db/journals/jmui/jmui12.html#SaadBNK18,https://doi.org/10.1007/s12193-017-0257-8 +Alexey Karpov 0001,ICANDO: Low cost multimodal interface for hand disabled people.,2007,1,J. Multimodal User Interfaces,2,db/journals/jmui/jmui1.html#KarpovR07,https://doi.org/10.1007/BF02910056 +Heysem Kaya,Combining modality-specific extreme learning machines for emotion recognition in the wild.,2016,10,J. Multimodal User Interfaces,2,db/journals/jmui/jmui10.html#KayaS16,https://doi.org/10.1007/s12193-015-0175-6 +Vanus Vachiratamporn,An analysis of player affect transitions in survival horror games.,2015,9,J. Multimodal User Interfaces,1,db/journals/jmui/jmui9.html#VachiratampornL15,https://doi.org/10.1007/s12193-014-0153-4 +Joyeeta Singha,Recognition of global hand gestures using self co-articulation information and classifier fusion.,2016,10,J. Multimodal User Interfaces,1,db/journals/jmui/jmui10.html#SinghaL16,https://doi.org/10.1007/s12193-016-0212-0 +Gualtiero Volpe,Cross-disciplinary approaches to multimodal user interfaces.,2010,4,J. Multimodal User Interfaces,1,db/journals/jmui/jmui4.html#VolpeCDM10,https://doi.org/10.1007/s12193-010-0055-z +Elisabeth André,Lifelike Interface Agents - Guest Editorial.,2000,13,AI Commun.,3,db/journals/aicom/aicom13.html#Andre00,http://content.iospress.com/articles/ai-communications/aic215 +Ishfaq Hussain,Ant Colony Optimization for multicore re-configurable architecture.,2016,29,AI Commun.,5,db/journals/aicom/aicom29.html#HussainAQQA16,https://doi.org/10.3233/AIC-160708 +Thorsten Belker,Learning of plan execution policies for indoor navigation.,2002,15,AI Commun.,1,db/journals/aicom/aicom15.html#BelkerBC02,http://content.iospress.com/articles/ai-communications/aic251 +Marco Porta,A Mobile Robot Multimedia Interaction System Based on CPP-TRS Methodology and Language.,1997,10,AI Commun.,1,db/journals/aicom/aicom10.html#Porta97,http://content.iospress.com/articles/ai-communications/aic110 +Roberto Asín,Improving IntSat by expressing disjunctions of bounds as linear constraints.,2016,29,AI Commun.,1,db/journals/aicom/aicom29.html#AsinBN15,https://doi.org/10.3233/AIC-150684 +Gérard Ligozat,Frank D. Anger (1939-2004).,2004,17,AI Commun.,4,db/journals/aicom/aicom17.html#Ligozat04,http://content.iospress.com/articles/ai-communications/aic330 +,Calendar.,2000,13,AI Commun.,4,db/journals/aicom/aicom13.html#X00c,http://content.iospress.com/articles/ai-communications/aic234ca +Marco Gavanelli,"18th RCRA International Workshop on ""Experimental evaluation of algorithms for solving problems with combinatorial explosion"".",2012,25,AI Commun.,2,db/journals/aicom/aicom25.html#GavanelliM12,https://doi.org/10.3233/AIC-2012-0528 +Douglas E. Appelt,Introduction to Information Extraction.,1999,12,AI Commun.,3,db/journals/aicom/aicom12.html#Appelt99,http://content.iospress.com/articles/ai-communications/aic184 +Martijn Kagie,Including item characteristics in the probabilistic latent semantic analysis model for collaborative filtering.,2009,22,AI Commun.,4,db/journals/aicom/aicom22.html#KagieLW09,https://doi.org/10.3233/AIC-2009-0467 +Francisco Azevedo,Thesis: Constraint solving over multi-valued logics - application to digital circuits.,2003,16,AI Commun.,2,db/journals/aicom/aicom16.html#Azevedo03,http://content.iospress.com/articles/ai-communications/aic278 +Khalil el Hindi,Specific-class distance measures for nominal attributes.,2013,26,AI Commun.,3,db/journals/aicom/aicom26.html#Hindi13,https://doi.org/10.3233/AIC-130565 +Silvano Cincotti,Modeling and forecasting of electricity spot-prices: Computational intelligence vs classical econometrics.,2014,27,AI Commun.,3,db/journals/aicom/aicom27.html#CincottiGPR14,https://doi.org/10.3233/AIC-140599 +Anton Belov,Towards efficient MUS extraction.,2012,25,AI Commun.,2,db/journals/aicom/aicom25.html#BelovLM12,https://doi.org/10.3233/AIC-2012-0523 +John Bell,Why the Frame Problem is not a Problem.,1990,3,AI Commun.,1,db/journals/aicom/aicom3.html#Bell90,https://doi.org/10.3233/AIC-1990-3101 +Luca Mancini,Self regulating mechanisms for network immunization.,2016,29,AI Commun.,2,db/journals/aicom/aicom29.html#ManciniMPC16,https://doi.org/10.3233/AIC-150693 +John Balder,TheME: an Environment for Building Formal KADS-II Models of Expertise.,1992,5,AI Commun.,3,db/journals/aicom/aicom5.html#BalderA92,https://doi.org/10.3233/AIC-1992-5302 +,Thesis summaries.,2014,27,AI Commun.,4,db/journals/aicom/aicom27.html#X14a,https://doi.org/10.3233/AIC-140610 +Heiko Milde,Integrating Model-based Diagnosis Techniques into Current Work Processes - Three Case Studies from the INDIA Project.,2000,13,AI Commun.,2,db/journals/aicom/aicom13.html#MildeGMNS00,http://content.iospress.com/articles/ai-communications/aic213 +Raúl Giráldez,Improving the performance of evolutionary algorithms for decision rule learning.,2005,18,AI Commun.,1,db/journals/aicom/aicom18.html#Giraldez05,http://content.iospress.com/articles/ai-communications/aic329 +Luis Fernando Fraga-Gonzalez,Adaptive simulated annealing for tuning PID controllers.,2017,30,AI Commun.,5,db/journals/aicom/aicom30.html#Fraga-GonzalezF17,https://doi.org/10.3233/AIC-170741 +Maarten van Someren,The Belgian Dutch Artificial Intelligence Association (Belgisch-Nederlandse Verebiging voor Kunstmatige Intelligentie).,2000,13,AI Commun.,1,db/journals/aicom/aicom13.html#SomerenH00,http://content.iospress.com/articles/ai-communications/aic203 +Alexander Felfernig,Automated repair of scoring rules in constraint-based recommender systems.,2013,26,AI Commun.,1,db/journals/aicom/aicom26.html#FelfernigSLRIMBN13,https://doi.org/10.3233/AIC-120543 +Natalia Criado,Using norms to control open multi-agent systems.,2013,26,AI Commun.,3,db/journals/aicom/aicom26.html#Criado13,https://doi.org/10.3233/AIC-130560 +Foto N. Afrati,Rewriting queries using views with negation.,2006,19,AI Commun.,3,db/journals/aicom/aicom19.html#AfratiP06,http://content.iospress.com/articles/ai-communications/aic375 +Ulises Cortés,Guest editorial: Binding Environmental Sciences and Artificial Intelligence.,2003,16,AI Commun.,4,db/journals/aicom/aicom16.html#CortesSW03,http://content.iospress.com/articles/ai-communications/aic292 +Claudia Picardi,An introduction to model-based systems.,2007,20,AI Commun.,1,db/journals/aicom/aicom20.html#PicardiSW07,http://content.iospress.com/articles/ai-communications/aic389 +C. Agees Kumar,Multiobjective robust PID controller design for various industrial processes.,2015,28,AI Commun.,3,db/journals/aicom/aicom28.html#KumarN15,https://doi.org/10.3233/AIC-140639 +Jesús García,Optimization of airport ground operations integrating genetic and dynamic flow management algorithms.,2005,18,AI Commun.,2,db/journals/aicom/aicom18.html#GarciaBMC05,http://content.iospress.com/articles/ai-communications/aic340 +Zoe Falomir,Qualitative distances and qualitative description of images for indoor scene description and recognition in robotics.,2012,25,AI Commun.,4,db/journals/aicom/aicom25.html#Falomir12,https://doi.org/10.3233/AIC-2012-0535 +Mario Alviano,Dynamic Magic Sets and super-coherent answer set programs.,2011,24,AI Commun.,2,db/journals/aicom/aicom24.html#AlvianoF11,https://doi.org/10.3233/AIC-2011-0492 +Geoff Sutcliffe,The 7th IJCAR automated theorem proving system competition - CASC-J7.,2015,28,AI Commun.,4,db/journals/aicom/aicom28.html#Sutcliffe15,https://doi.org/10.3233/AIC-150668 +Anastasios Alexiadis,Optimizing individual activity personal plans through local search.,2016,29,AI Commun.,1,db/journals/aicom/aicom29.html#AlexiadisR15,https://doi.org/10.3233/AIC-150680 +Giulia Andrighetto,Norm internalization in artificial societies.,2010,23,AI Commun.,4,db/journals/aicom/aicom23.html#AndrighettoVC10,https://doi.org/10.3233/AIC-2010-0477 +Alexander Birch Jensen,Programming and verifying a declarative first-order prover in Isabelle/HOL.,2018,31,AI Commun.,3,db/journals/aicom/aicom31.html#JensenLSV18,https://doi.org/10.3233/AIC-180764 +Marcello Balduccini,Special issue on answer set programming.,2011,24,AI Commun.,2,db/journals/aicom/aicom24.html#BalducciniW11,https://doi.org/10.3233/AIC-2011-0497 +Geoff Sutcliffe,The 8th IJCAR automated theorem proving system competition - CASC-J8.,2016,29,AI Commun.,5,db/journals/aicom/aicom29.html#Sutcliffe16,https://doi.org/10.3233/AIC-160709 +Pedro Pereira Rodrigues,Learning from ubiquitous data streams: Clustering data and data sources.,2012,25,AI Commun.,1,db/journals/aicom/aicom25.html#Rodrigues12,https://doi.org/10.3233/AIC-2011-0510 +Fabio Marfia,A framework for managing data provider and data consumer semantic obligations for access control.,2017,30,AI Commun.,1,db/journals/aicom/aicom30.html#MarfiaFN17,https://doi.org/10.3233/AIC-170725 +Erik Sandewall,Towards the Validation of High-Level Action Descriptions from Their Low-Level Definitions.,1996,9,AI Commun.,4,db/journals/aicom/aicom9.html#Sandewall96,https://doi.org/10.3233/AIC-1996-9403 +G. Guiho,Chairman's Message.,1987,0,AI Commun.,1,db/journals/aicom/aicom0.html#Guiho87,https://doi.org/10.3233/AIC-1987-0102 +Bert Bredeweg,Using exogenous quantities in qualitative models about environmental sustainability.,2007,20,AI Commun.,1,db/journals/aicom/aicom20.html#BredewegSN07,http://content.iospress.com/articles/ai-communications/390 +Noël Conruyt,Knowledge engineering in environmental sciences with IKBS: Application to Systematics of corals of the Mascarene Archipelago.,2003,16,AI Commun.,4,db/journals/aicom/aicom16.html#ConruytG03,http://content.iospress.com/articles/ai-communications/aic296 +Ulises Cortés,Knowledge Management in Environmental Decision Support Systems.,2001,14,AI Commun.,1,db/journals/aicom/aicom14.html#CortesSSCRR01,http://content.iospress.com/articles/ai-communications/aic230 +Rui Prada,Teaming up humans with autonomous synthetic characters.,2008,21,AI Commun.,1,db/journals/aicom/aicom21.html#Prada08,http://content.iospress.com/articles/ai-communications/aic407 +Nikos I. Karacapilidis,A Computational Approach for Argumentative Discourse in Multi-Agent Decision Making Environments.,1998,11,AI Commun.,1,db/journals/aicom/aicom11.html#KaracapilidisP98,http://content.iospress.com/articles/ai-communications/aic142 +Javier Larrosa,A Framework for Abductive Rule Formation.,1995,8,AI Commun.,2,db/journals/aicom/aicom8.html#LarrosaC95,https://doi.org/10.3233/AIC-1995-8204 +Kewen Wang,Artificial Intelligence Advances in China.,2003,16,AI Commun.,1,db/journals/aicom/aicom16.html#WangL03,http://content.iospress.com/articles/ai-communications/aic274 +Pedro Cabalar,A logical characterisation of ordered disjunction.,2011,24,AI Commun.,2,db/journals/aicom/aicom24.html#Cabalar11,https://doi.org/10.3233/AIC-2011-0494 +Rami Puzis,Finding the most prominent group in complex networks.,2007,20,AI Commun.,4,db/journals/aicom/aicom20.html#PuzisED07,http://content.iospress.com/articles/ai-communications/aic411 +Cristina Cabanillas,Enhancing the management of resource-aware business processes.,2016,29,AI Commun.,1,db/journals/aicom/aicom29.html#Cabanillas15,https://doi.org/10.3233/AIC-150656 +Mark A. Wilson,Goal reasoning for autonomous underwater vehicles: Responding to unexpected agents.,2018,31,AI Commun.,2,db/journals/aicom/aicom31.html#WilsonMWAH18,https://doi.org/10.3233/AIC-180755 +Daniela Godoy,A conceptual clustering approach for user profiling in personal information agents.,2006,19,AI Commun.,3,db/journals/aicom/aicom19.html#GodoyA06,http://content.iospress.com/articles/ai-communications/aic374 +Juan José Palacios,A particle swarm solution based on lexicographical goal programming for a multiobjective fuzzy open shop problem.,2015,28,AI Commun.,2,db/journals/aicom/aicom28.html#PalaciosGVP15,https://doi.org/10.3233/AIC-140637 +Markus Stumptner,A Survey of Intelligent Debugging.,1998,11,AI Commun.,1,db/journals/aicom/aicom11.html#StumptnerW98,http://content.iospress.com/articles/ai-communications/aic141 +Laura Climent,Uncertainty in dynamic constraint satisfaction problems.,2016,29,AI Commun.,1,db/journals/aicom/aicom29.html#ClimentSWB15,https://doi.org/10.3233/AIC-150657 +José Ranilla,A heuristic for learning decision trees and pruning them into classification rules.,2003,16,AI Commun.,2,db/journals/aicom/aicom16.html#RanillaLB03,http://content.iospress.com/articles/ai-communications/aic276 +Gianluca Torta,Exploiting abstractions in cost-sensitive abductive problem solving with observations and actions.,2014,27,AI Commun.,3,db/journals/aicom/aicom27.html#TortaAD14,https://doi.org/10.3233/AIC-140593 +Francesco Amigoni,Multiagent systems for cardiac pacing simulation and control.,2005,18,AI Commun.,3,db/journals/aicom/aicom18.html#AmigoniBG05,http://content.iospress.com/articles/ai-communications/aic343 +Jürgen Dorn,Iterative Improvement Methods for Knowledge-Based Scheduling.,1995,8,AI Commun.,1,db/journals/aicom/aicom8.html#Dorn95,https://doi.org/10.3233/AIC-1995-8102 +Anna Perini,AI in support of Plant Disease Management.,2005,18,AI Commun.,4,db/journals/aicom/aicom18.html#PeriniS05,http://content.iospress.com/articles/ai-communications/aic350 +Deborah East,Tools for modeling and solving search problems.,2006,19,AI Commun.,4,db/journals/aicom/aicom19.html#EastIMT06,http://content.iospress.com/articles/ai-communications/aic377 +Marco Gavanelli,Scheduling countermeasures to contamination events by genetic algorithms.,2015,28,AI Commun.,2,db/journals/aicom/aicom28.html#GavanelliNPAF15,https://doi.org/10.3233/AIC-140638 +Lars Karlsson,To secure an anchor - a recovery planning approach to ambiguity in perceptual anchoring.,2008,21,AI Commun.,1,db/journals/aicom/aicom21.html#KarlssonBBCS08,http://content.iospress.com/articles/ai-communications/aic406 +Gladys Castillo,Adaptive learning algorithms for Bayesian network classifiers.,2008,21,AI Commun.,1,db/journals/aicom/aicom21.html#Castillo08,http://content.iospress.com/articles/ai-communications/aic414 +Hiroshi Hosobe,Speculative constraint processing for hierarchical agents.,2010,23,AI Commun.,4,db/journals/aicom/aicom23.html#HosobeSMRB10,https://doi.org/10.3233/AIC-2010-0480 +Thomas Eiter,A First-Order Representation of Stable Models.,1998,11,AI Commun.,1,db/journals/aicom/aicom11.html#EiterLS98,http://content.iospress.com/articles/ai-communications/aic144 +Jean-Jacques Ducret,A New Theory of Mental Functioning: The Society of Mind.,1988,1,AI Commun.,3,db/journals/aicom/aicom1.html#Ducret88,https://doi.org/10.3233/AIC-1988-1302 +Daniela Godoy,Learning user interests for user profiling in personal information agents.,2006,19,AI Commun.,4,db/journals/aicom/aicom19.html#Godoy06,http://content.iospress.com/articles/ai-communications/aic384 +Anjo Anjewierden,Knowledge Acquisition Tools.,1987,0,AI Commun.,1,db/journals/aicom/aicom0.html#Anjewierden87,https://doi.org/10.3233/AIC-1987-0106 +Karina Gibert,A survey on pre-processing techniques: Relevant issues in the context of environmental data mining.,2016,29,AI Commun.,6,db/journals/aicom/aicom29.html#GibertSI16,https://doi.org/10.3233/AIC-160710 +Luca Pulina,Challenging SMT solvers to verify neural networks.,2012,25,AI Commun.,2,db/journals/aicom/aicom25.html#PulinaT12,https://doi.org/10.3233/AIC-2012-0525 +Pan Tang,Anytime heuristic search in temporal HTN planning for developing incident action plans.,2012,25,AI Commun.,4,db/journals/aicom/aicom25.html#TangWQW12,https://doi.org/10.3233/AIC-2012-0539 +Marina Cidotã,A Multinomial Hidden Markov Model and its training by a combined iterative procedure.,2014,27,AI Commun.,2,db/journals/aicom/aicom27.html#CidotaD14,https://doi.org/10.3233/AIC-130589 +Xiangfu Zhao,Reasoning on partially-ordered observations in online diagnosis of DESs.,2012,25,AI Commun.,4,db/journals/aicom/aicom25.html#ZhaoOZWM12,https://doi.org/10.3233/AIC-2012-0518 +Nada Lavrac,Inductive Logic Programming: A Survey of European Research.,1995,8,AI Commun.,1,db/journals/aicom/aicom8.html#LavracR95,https://doi.org/10.3233/AIC-1995-8101 +Luca Pulina,Engineering portfolios of Machine Learning algorithms to solve complex tasks in Robotics and Automated Reasoning.,2010,23,AI Commun.,1,db/journals/aicom/aicom23.html#Pulina10,https://doi.org/10.3233/AIC-2010-0471 +Matti Järvisalo,Structure-based satisfiability checkingAnalyzing and harnessing the potential.,2009,22,AI Commun.,2,db/journals/aicom/aicom22.html#Jarvisalo09,https://doi.org/10.3233/AIC-2009-0445 +Sangwoo Kang,A dialogue management system using a corpus-based framework and a dynamic dialogue transition model.,2013,26,AI Commun.,2,db/journals/aicom/aicom26.html#KangKS13,https://doi.org/10.3233/AIC-130552 +Kristian Kersting,An inductive logic programming approach to statistical relational learning.,2006,19,AI Commun.,4,db/journals/aicom/aicom19.html#Kersting06,http://content.iospress.com/articles/ai-communications/aic383 +Javier Ignacio Carbó Rubiera,Fuzzy referral based cooperation in social networks of agents.,2005,18,AI Commun.,1,db/journals/aicom/aicom18.html#CarboMM05,http://content.iospress.com/articles/ai-communications/aic318 +Marin Lujak,Evacuation route optimization architecture considering human factor.,2017,30,AI Commun.,1,db/journals/aicom/aicom30.html#LujakO17,https://doi.org/10.3233/AIC-170721 +Mark Hoogendoorn,Preferences of agents in decentralized task allocation.,2009,22,AI Commun.,3,db/journals/aicom/aicom22.html#HoogendoornG09,https://doi.org/10.3233/AIC-2009-0451 +Alexander Felfernig,Intelligent engineering techniques for knowledge bases.,2013,26,AI Commun.,1,db/journals/aicom/aicom26.html#FelfernigW13,https://doi.org/10.3233/AIC-2012-0541 +Pere Martí-Puig,A rotation-invariant feature space according to environmental applications needs in a data mining system using fish otoliths.,2016,29,AI Commun.,6,db/journals/aicom/aicom29.html#Marti-PuigB16,https://doi.org/10.3233/AIC-160715 +Juan M. Corchado,Evaluating the air-sea interactions and fluxes using an instance-based reasoning system.,2005,18,AI Commun.,4,db/journals/aicom/aicom18.html#CorchadoACR05,http://content.iospress.com/articles/ai-communications/aic347 +Dimitris Vrakas,HAPRC: an automatically configurable planning system.,2005,18,AI Commun.,1,db/journals/aicom/aicom18.html#VrakasTBV05,http://content.iospress.com/articles/ai-communications/aic335 +Markus Stumptner,An Overview of Knowledge-Based Configuration.,1997,10,AI Commun.,2,db/journals/aicom/aicom10.html#Stumptner97,http://content.iospress.com/articles/ai-communications/aic123 +Yannick Loiseau,Qualitative pattern matching with linguistic terms.,2004,17,AI Commun.,1,db/journals/aicom/aicom17.html#LoiseauPB04,http://content.iospress.com/articles/ai-communications/aic302 +,Applied Semiotics: Control Problems (ASC 2000).,2001,14,AI Commun.,2,db/journals/aicom/aicom14.html#X01,http://content.iospress.com/articles/ai-communications/235 +Bob J. Wielinga,Editorial.,1987,0,AI Commun.,1,db/journals/aicom/aicom0.html#WielingaS87,https://doi.org/10.3233/AIC-1987-0101 +R. Devi Priya,BAGEL - A novel hybrid technique for missing value estimation in mixed attribute datasets.,2016,29,AI Commun.,2,db/journals/aicom/aicom29.html#Priya16,https://doi.org/10.3233/AIC-150660 +Kathrin Grosse,Integrating argumentation and sentiment analysis for mining opinions from Twitter.,2015,28,AI Commun.,3,db/journals/aicom/aicom28.html#GrosseGCM15,https://doi.org/10.3233/AIC-140627 +Justin Karneeb,Distributed discrepancy detection for a goal reasoning agent in beyond-visual-range air combat.,2018,31,AI Commun.,2,db/journals/aicom/aicom31.html#KarneebFMA18,https://doi.org/10.3233/AIC-180757 +Valentino Santucci,Solving permutation flowshop scheduling problems with a discrete differential evolution algorithm.,2016,29,AI Commun.,2,db/journals/aicom/aicom29.html#SantucciBM16,https://doi.org/10.3233/AIC-150695 +Michèle Sebag,A tour of machine learning: An AI perspective.,2014,27,AI Commun.,1,db/journals/aicom/aicom27.html#Sebag14,https://doi.org/10.3233/AIC-130580 +Thomas Bittner,Endurants and perdurants in directly depicting ontologies.,2004,17,AI Commun.,4,db/journals/aicom/aicom17.html#BittnerDS04,http://content.iospress.com/articles/ai-communications/aic320 +Joost Vennekens,Algebraic and logical study of constructive processes in knowledge representation.,2008,21,AI Commun.,1,db/journals/aicom/aicom21.html#Vennekens08,http://content.iospress.com/articles/ai-communications/aic418 +Hermann Kaindl,Book Review: Scalable Search in computer chess - algorithmic enhancements and experiments at high search depth.,2000,13,AI Commun.,4,db/journals/aicom/aicom13.html#Kaindl00,http://content.iospress.com/articles/ai-communications/aic225 +Eva Millán,Thesis: Bayesian system for student modeling.,2000,13,AI Commun.,4,db/journals/aicom/aicom13.html#Valldeperas00,http://content.iospress.com/articles/ai-communications/aic223 +Berthe Y. Choueiry,An efficient consistency algorithm for the Temporal Constraint Satisfaction Problem.,2004,17,AI Commun.,4,db/journals/aicom/aicom17.html#ChoueiryX04,http://content.iospress.com/articles/ai-communications/aic321 +Radu-Casian Mihailescu,A framework for fraud discovery via illicit agreements in energy markets.,2015,28,AI Commun.,4,db/journals/aicom/aicom28.html#MihailescuO15,https://doi.org/10.3233/AIC-140625 +Ljiljana Seric,Engineering of holonic multi agent intelligent forest fire monitoring system.,2013,26,AI Commun.,3,db/journals/aicom/aicom26.html#SericSS13,https://doi.org/10.3233/AIC-130567 +Christoph Koch 0001,Query rewriting with symmetric constraints.,2004,17,AI Commun.,2,db/journals/aicom/aicom17.html#Koch04,http://content.iospress.com/articles/ai-communications/aic300 +Cristina Urdiales,The bare necessities: Adaptive assistance for wheelchair control.,2011,24,AI Commun.,4,db/journals/aicom/aicom24.html#Urdiales11,https://doi.org/10.3233/AIC-2011-0500 +Yin Zhang 0006,Applying probabilistic latent semantic analysis to multi-criteria recommender system.,2009,22,AI Commun.,2,db/journals/aicom/aicom22.html#ZhangZWZ09,https://doi.org/10.3233/AIC-2009-0446 +Johan Wittocx,Finite domain and symbolic inference methods for extensions of first-order logic.,2011,24,AI Commun.,1,db/journals/aicom/aicom24.html#Wittocx11,https://doi.org/10.3233/AIC-2010-0474 +Jacobijn Sandberg,ECAI '90: The Invited Speakers.,1990,3,AI Commun.,4,db/journals/aicom/aicom3.html#Sandberg90,https://doi.org/10.3233/AIC-1990-3403 +Shashank Pathak,Evaluating probabilistic model checking tools for verification of robot control policies.,2016,29,AI Commun.,2,db/journals/aicom/aicom29.html#PathakPT16,https://doi.org/10.3233/AIC-150689 +Viviane Jonckers,A Framework for Modeling Programming Knowledge.,1989,2,AI Commun.,2,db/journals/aicom/aicom2.html#Jonckers89,https://doi.org/10.3233/AIC-1989-2203 +Mihaela Oprea,Binding Environmental Sciences and Artificial Intelligence.,2005,18,AI Commun.,4,db/journals/aicom/aicom18.html#OpreaSW05,http://content.iospress.com/articles/ai-communications/aic346 +Martin C. Cooper,A weighted CSP approach to cost-optimal planning.,2011,24,AI Commun.,1,db/journals/aicom/aicom24.html#CooperRR11,https://doi.org/10.3233/AIC-2010-0473 +Brice Lepape,Achievements and Results of the Knowledge Engineering Area in ESPRIT I.,1990,3,AI Commun.,2,db/journals/aicom/aicom3.html#Lepape90,https://doi.org/10.3233/AIC-1990-3205 +Marcela D. Rodríguez,Agent-based ambient intelligence for healthcare.,2005,18,AI Commun.,3,db/journals/aicom/aicom18.html#RodriguezFPV05,http://content.iospress.com/articles/ai-communications/aic344 +Wolfgang Bibel,Artificial Intelligence in a historical perspective.,2014,27,AI Commun.,1,db/journals/aicom/aicom27.html#Bibel14,https://doi.org/10.3233/AIC-130576 +Chan Le Duc,A Compact Representation for Least Common Subsumers in the description logic ALE.,2006,19,AI Commun.,3,db/journals/aicom/aicom19.html#DucTR06,http://content.iospress.com/articles/ai-communications/aic376 +Yugal Kumar,A hybrid data clustering approach based on improved cat swarm optimization and K-harmonic mean algorithm.,2015,28,AI Commun.,4,db/journals/aicom/aicom28.html#KumarS15,https://doi.org/10.3233/AIC-150677 +Ulises Cortés,A conceptual model to facilitate knowledge sharing for bulking solving in wastewater treatment plants.,2003,16,AI Commun.,4,db/journals/aicom/aicom16.html#CortesMCSPR03,http://content.iospress.com/articles/ai-communications/aic297 +Paulo Gomes,Using WordNet for case-based retrieval of UML models.,2004,17,AI Commun.,1,db/journals/aicom/aicom17.html#GomesPPSCFB04,http://content.iospress.com/articles/ai-communications/aic301 +Marta Domingo,Using qualitative information to predict citizens' satisfaction.,2007,20,AI Commun.,1,db/journals/aicom/aicom20.html#DomingoAPSA07,http://content.iospress.com/articles/ai-communications/aic393 +Geoff Sutcliffe,The 4th IJCAR Automated Theorem Proving System Competition - CASC-J4.,2009,22,AI Commun.,1,db/journals/aicom/aicom22.html#Sutcliffe09,https://doi.org/10.3233/AIC-2009-0441 +Emanuele Di Rosa,Combining approaches for solving satisfiability problems with qualitative preferences.,2013,26,AI Commun.,4,db/journals/aicom/aicom26.html#RosaG13,https://doi.org/10.3233/AIC-130575 +Paola Rizzo,Personalities in Believable Agents: a goal-based model and its realization with an integrated planning architecture.,1999,12,AI Commun.,3,db/journals/aicom/aicom12.html#Rizzo99,http://content.iospress.com/articles/ai-communications/aic185 +Carlos Linares López,Demonstrations Track of the 25th International Joint Conference on Artificial Intelligence.,2018,31,AI Commun.,1,db/journals/aicom/aicom31.html#Lopez18,https://doi.org/10.3233/AIC-180750 +Jacobijn Sandberg,Interviews on AI and Education: Education and Technology: What do we know? And where is AI?,1993,6,AI Commun.,1,db/journals/aicom/aicom6.html#SandbergB93,https://doi.org/10.3233/AIC-1993-6104 +Nada Abdallah,Non-conservative extension of a peer in a P2P inference system.,2009,22,AI Commun.,4,db/journals/aicom/aicom22.html#AbdallahG09,https://doi.org/10.3233/AIC-2009-0452 +Guy Shani,Tutorial on application-oriented evaluation of recommendation systems.,2013,26,AI Commun.,2,db/journals/aicom/aicom26.html#ShaniG13,https://doi.org/10.3233/AIC-130551 +Sara Ceschia,Local search algorithms for integrated logistics.,2013,26,AI Commun.,3,db/journals/aicom/aicom26.html#Ceschia13,https://doi.org/10.3233/AIC-130563 +Knut Hinkelmann,Knowledge-Base Evolution for Product and Production Planning.,1994,7,AI Commun.,2,db/journals/aicom/aicom7.html#HinkelmannMS94,https://doi.org/10.3233/AIC-1994-7203 +Amin Nikanjam,Efficient model building in competent genetic algorithms using DSM clustering.,2011,24,AI Commun.,3,db/journals/aicom/aicom24.html#NikanjamSR11,https://doi.org/10.3233/AIC-2011-0498 +Ivan Bratko,Attribute-Based Learning.,1996,9,AI Commun.,1,db/journals/aicom/aicom9.html#BratkoCK96,https://doi.org/10.3233/AIC-1996-9104 +David Camacho,A Multi-Agent architecture for intelligent gathering systems.,2005,18,AI Commun.,1,db/journals/aicom/aicom18.html#CamachoABM05,http://content.iospress.com/articles/ai-communications/aic327 +Alaa Tharwat,Linear discriminant analysis: A detailed tutorial.,2017,30,AI Commun.,2,db/journals/aicom/aicom30.html#TharwatGIH17,https://doi.org/10.3233/AIC-170729 +David Quintana,Soft computing in finance and economics.,2014,27,AI Commun.,2,db/journals/aicom/aicom27.html#QuintanaI14,https://doi.org/10.3233/AIC-140595 +R. Sivaraj,Novel techniques for enhancing performance of genetic algorithms.,2016,29,AI Commun.,4,db/journals/aicom/aicom29.html#Sivaraj15,https://doi.org/10.3233/AIC-150661 +Gianluca Torta,An on-line approach to the computation and presentation of preferred diagnoses for dynamic systems.,2007,20,AI Commun.,2,db/journals/aicom/aicom20.html#TortaT07a,http://content.iospress.com/articles/ai-communications/aic400 +Geoff Sutcliffe,The CADE-22 automated theorem proving system competition - CASC-22.,2010,23,AI Commun.,1,db/journals/aicom/aicom23.html#Sutcliffe10,https://doi.org/10.3233/AIC-2010-0469 +Francesco Ricca,A backjumping technique for Disjunctive Logic Programming.,2006,19,AI Commun.,2,db/journals/aicom/aicom19.html#RiccaFL06,http://content.iospress.com/articles/ai-communications/aic369 +Luca Console,Toward a social web of intelligent things.,2011,24,AI Commun.,3,db/journals/aicom/aicom24.html#ConsoleLPS11,https://doi.org/10.3233/AIC-2011-0503 +Sathees Kumar Nataraj,Statistical cross-correlation band features based thought controlled communication system.,2016,29,AI Commun.,4,db/journals/aicom/aicom29.html#NatarajPYA15,https://doi.org/10.3233/AIC-160703 +José Salvador Sánchez,Neighbourhood-Based Learning and Classification: Alternative Methods and Comparative Analysis.,1998,11,AI Commun.,1,db/journals/aicom/aicom11.html#Sanchez98,http://content.iospress.com/articles/ai-communications/aic143 +Paola Forcheri,Informational Logic in Knowledge Representation and Automated Deduction.,1999,12,AI Commun.,4,db/journals/aicom/aicom12.html#ForcheriGM99,http://content.iospress.com/articles/ai-communications/aic188 +Mikolás Janota,Algorithms for computing backbones of propositional formulae.,2015,28,AI Commun.,2,db/journals/aicom/aicom28.html#JanotaLM15,https://doi.org/10.3233/AIC-140640 +Michael Katz 0001,Implicit abstraction heuristics for cost-optimal planning.,2011,24,AI Commun.,4,db/journals/aicom/aicom24.html#Katz11,https://doi.org/10.3233/AIC-2011-0504 +Han Reichgelt,"A Review of McDermott's ""Critique of Pure Reason"".",1987,0,AI Commun.,1,db/journals/aicom/aicom0.html#Reichgelt87,https://doi.org/10.3233/AIC-1987-0107 +Lars Kotthoff,An evaluation of machine learning in algorithm selection for search problems.,2012,25,AI Commun.,3,db/journals/aicom/aicom25.html#KotthoffGM12,https://doi.org/10.3233/AIC-2012-0533 +Michael Leuschel,Advanced Techniques for Logic Program Specialisation.,1997,10,AI Commun.,2,db/journals/aicom/aicom10.html#Leuschel97,http://content.iospress.com/articles/ai-communications/aic126 +Ignacio Herrero,A guided learning strategy for vision based navigation of 4-legged robots.,2006,19,AI Commun.,2,db/journals/aicom/aicom19.html#HerreroUPSS06,http://content.iospress.com/articles/ai-communications/aic364 +Luc De Raedt,Benelearn: The First 10 Years.,2000,13,AI Commun.,1,db/journals/aicom/aicom13.html#RaedtS00,http://content.iospress.com/articles/ai-communications/aic201 +Mariano Rico,Simplifying Semantic Web application development and semantic data usage.,2010,23,AI Commun.,1,db/journals/aicom/aicom23.html#Rico10,https://doi.org/10.3233/AIC-2010-0472 +Sadaqat ur Rehman,CSFL: A novel unsupervised convolution neural network approach for visual pattern classification.,2017,30,AI Commun.,5,db/journals/aicom/aicom30.html#RehmanTHL17,https://doi.org/10.3233/AIC-170739 +Abraham Otero,Fuzzy constraint satisfaction approach for landmark recognition in mobile robotics.,2006,19,AI Commun.,3,db/journals/aicom/aicom19.html#OteroFRRB06,http://content.iospress.com/articles/ai-communications/aic382 +Carme Torras,From Geometric Motion Planning to Neural Motor Control in Robotics.,1993,6,AI Commun.,1,db/journals/aicom/aicom6.html#Torras93,https://doi.org/10.3233/AIC-1993-6101 +Martin D. Beer,An agent-based architecture for managing the provision of community care - the INCA (Intelligent Community Alarm) experience.,2003,16,AI Commun.,3,db/journals/aicom/aicom16.html#BeerHHS03,http://content.iospress.com/articles/ai-communications/aic287 +Hector Geffner,Artificial Intelligence: From programs to solvers.,2014,27,AI Commun.,1,db/journals/aicom/aicom27.html#Geffner14,https://doi.org/10.3233/AIC-130581 +Enrico Scala,Robust plan execution via reconfiguration and replanning.,2015,28,AI Commun.,3,db/journals/aicom/aicom28.html#ScalaMT15,https://doi.org/10.3233/AIC-140629 +Bart de Boer,Emergence of Vowel Systems Through Self-Organisation.,2000,13,AI Commun.,1,db/journals/aicom/aicom13.html#Boer00,http://content.iospress.com/articles/ai-communications/aic198 +Attilio Giordana,Genetic Algorithms in Machine Learning.,1996,9,AI Commun.,1,db/journals/aicom/aicom9.html#GiordanaN96,https://doi.org/10.3233/AIC-1996-9103 +Gianluca Torta,Automatic component abstraction for Model-Based Diagnosis on relational models.,2013,26,AI Commun.,2,db/journals/aicom/aicom26.html#TortaT13,https://doi.org/10.3233/AIC-130558 +Masaki Suwa,PCLEARN: A Computer Model for Learning Perceptual Chunks.,1994,7,AI Commun.,2,db/journals/aicom/aicom7.html#SssuwaM94,https://doi.org/10.3233/AIC-1994-7204 +Keyun Hu,Feature ranking in rough sets.,2003,16,AI Commun.,1,db/journals/aicom/aicom16.html#HuLS03,http://content.iospress.com/articles/ai-communications/aic271 +Rezvan Mohamadi-Baghmolaei,Continuous states latency aware influence maximization in social networks.,2017,30,AI Commun.,2,db/journals/aicom/aicom30.html#Mohamadi-Baghmolaei17,https://doi.org/10.3233/AIC-170720 +Brahim Hnich,Thesis: Function variables for constraint programming.,2003,16,AI Commun.,2,db/journals/aicom/aicom16.html#Hnich03,http://content.iospress.com/articles/ai-communications/aic281 +Juha Tiihonen,WeCoTin - A practical logic-based sales configurator.,2013,26,AI Commun.,1,db/journals/aicom/aicom26.html#TiihonenHAS13,https://doi.org/10.3233/AIC-2012-0547 +Roberto Micalizio,On-line monitoring and diagnosis of a team of service robots: A model-based approach.,2006,19,AI Commun.,4,db/journals/aicom/aicom19.html#MicalizioTT06,http://content.iospress.com/articles/ai-communications/aic379 +Manuel Herrera,Graph constrained label propagation on water supply networks.,2015,28,AI Commun.,1,db/journals/aicom/aicom28.html#HerreraRIP15,https://doi.org/10.3233/AIC-140618 +Fatima Zahra Aazi,Feature selection for multiclass support vector machines.,2016,29,AI Commun.,5,db/journals/aicom/aicom29.html#AaziAAE16,https://doi.org/10.3233/AIC-160707 +Miguel A. González 0001,"Metaheuristic solutions to the ""Job shop scheduling problem with sequence-dependent setup *"".",2013,26,AI Commun.,4,db/journals/aicom/aicom26.html#Gonzalez13,https://doi.org/10.3233/AIC-130571 +Daniel Bilar,Callgraph properties of executables.,2007,20,AI Commun.,4,db/journals/aicom/aicom20.html#Bilar07,http://content.iospress.com/articles/ai-communications/aic412 +Zhang Mingyi,On the expressive power of semi-normal defaults in some semantic variants of default logic.,2003,16,AI Commun.,1,db/journals/aicom/aicom16.html#MingyiY03,http://content.iospress.com/articles/ai-communications/aic279 +Markus Stumptner,Industrial Applications of Model-based Reasoning - Guest Editorial.,2000,13,AI Commun.,2,db/journals/aicom/aicom13.html#StumptnerW00,http://content.iospress.com/articles/ai-communications/aic211 +Anton Eliëns,Distributed Logic Programming for Artificial Intelligence.,1991,4,AI Commun.,1,db/journals/aicom/aicom4.html#Eliens91,https://doi.org/10.3233/AIC-1991-4103 +Alan Bundy,IJCAI Policy on Multiple Publication of Papers.,1988,1,AI Commun.,4,db/journals/aicom/aicom1.html#Bundy88,https://doi.org/10.3233/AIC-1988-1401 +Pablo Chamoso,Agreement technologies applied to transmission towers maintenance.,2017,30,AI Commun.,1,db/journals/aicom/aicom30.html#ChamosoPPP17,https://doi.org/10.3233/AIC-170726 +Jesús Aransay,Mechanized reasoning in Homological Algebra.,2008,21,AI Commun.,4,db/journals/aicom/aicom21.html#Aransay08,https://doi.org/10.3233/AIC-2008-0427 +Ana Granados,Analysis and study on text representation to improve the accuracy of the normalized compression distance.,2012,25,AI Commun.,4,db/journals/aicom/aicom25.html#Granados12,https://doi.org/10.3233/AIC-2012-0529 +Javier Vázquez-Salceda,Thesis: The role of norms and electronic institutions in multi-agent systems applied to complex domains. The HARMONIA framework.,2003,16,AI Commun.,3,db/journals/aicom/aicom16.html#Vazquez-Salceda03,http://content.iospress.com/articles/ai-communications/aic289 +Robert Jäschke,Tag recommendations in social bookmarking systems.,2008,21,AI Commun.,4,db/journals/aicom/aicom21.html#JaschkeMHSS08,https://doi.org/10.3233/AIC-2008-0438 +Joaquim Comas,Knowledge acquisition in the STREAMES project: the key process in the Environmental Decision Support System development.,2003,16,AI Commun.,4,db/journals/aicom/aicom16.html#ComasLMPRSP03,http://content.iospress.com/articles/ai-communications/aic295 +Yueling Zhang,Towards backbone computing: A Greedy-Whitening based approach.,2018,31,AI Commun.,3,db/journals/aicom/aicom31.html#ZhangZPSL18,https://doi.org/10.3233/AIC-180763 +Mario Lenz,CBR for Diagnosis and Decision Support.,1996,9,AI Commun.,3,db/journals/aicom/aicom9.html#LenzBPAM96,https://doi.org/10.3233/AIC-1996-9306 +Joaquim Comas,Knowledge discovery by means of inductive methods in wastewater treatment plannt data.,2001,14,AI Commun.,1,db/journals/aicom/aicom14.html#ComasDGRS01,http://content.iospress.com/articles/ai-communications/aic232 +Fabrizio Angiulli,Enumerating consistent metaquery instantiations.,2005,18,AI Commun.,2,db/journals/aicom/aicom18.html#Angiulli05,http://content.iospress.com/articles/ai-communications/aic339 +Bert Bredeweg,The 4th international workshop on Qualitative Physics.,1990,3,AI Commun.,4,db/journals/aicom/aicom3.html#BredewegG90,https://doi.org/10.3233/AIC-1990-3404 +Jacobijn Sandberg,Interviews on AI and Education: John Anderson and Clotile Pontecorvo.,1992,5,AI Commun.,1,db/journals/aicom/aicom5.html#SandbergB92,https://doi.org/10.3233/AIC-1992-5104 +Maarten van Someren,Learning Prolog from a Book - A Review of Five Prolog Textbooks.,1987,0,AI Commun.,1,db/journals/aicom/aicom0.html#Someren87,https://doi.org/10.3233/AIC-1987-0108 +Alfredo Milani,Community of scientist optimization: An autonomy oriented approach to distributed optimization.,2012,25,AI Commun.,2,db/journals/aicom/aicom25.html#MilaniS12,https://doi.org/10.3233/AIC-2012-0526 +Lei Zhang,Cost optimal planning with multi-valued landmarks.,2015,28,AI Commun.,3,db/journals/aicom/aicom28.html#ZhangWX15,https://doi.org/10.3233/AIC-140622 +Silvia Miksch,Plan Management in the Medical Domain.,1999,12,AI Commun.,4,db/journals/aicom/aicom12.html#Miksch99,http://content.iospress.com/articles/ai-communications/aic189 +B. Hoda Helmi,Maximum spanning tree based linkage learner.,2014,27,AI Commun.,3,db/journals/aicom/aicom27.html#HelmiR14,https://doi.org/10.3233/AIC-140594 +Ralf Küsters,Approximating most specific concepts in description logics with existential restrictions.,2002,15,AI Commun.,1,db/journals/aicom/aicom15.html#KustersM02,http://content.iospress.com/articles/ai-communications/aic253 +Vicente Ruiz de Angulo,A Framework to Deal with Interference in Connectionist Systems.,2000,13,AI Commun.,4,db/journals/aicom/aicom13.html#AnguloT00,http://content.iospress.com/articles/ai-communications/aic224 +Silvana Badaloni,Integrating quantitative and qualitative fuzzy temporal constraints.,2004,17,AI Commun.,4,db/journals/aicom/aicom17.html#BadaloniFG04,http://content.iospress.com/articles/ai-communications/aic319 +Robert C. Holte,Automatic move pruning for single-agent search.,2014,27,AI Commun.,4,db/journals/aicom/aicom27.html#HolteB14,https://doi.org/10.3233/AIC-140605 +Massimo Narizzano,Evaluating and certifying QBFs: A comparison of state-of-the-art tools.,2009,22,AI Commun.,4,db/journals/aicom/aicom22.html#NarizzanoPPT09,https://doi.org/10.3233/AIC-2009-0468 +Joana Urbano,An approach to computational social trust.,2014,27,AI Commun.,2,db/journals/aicom/aicom27.html#UrbanoRO14,https://doi.org/10.3233/AIC-130587 +Laura Sebastia,Decomposition of planning problems.,2006,19,AI Commun.,1,db/journals/aicom/aicom19.html#SebastiaOM06,http://content.iospress.com/articles/ai-communications/aic361 +Francesco Buccafurri,An ASP-based approach to dealing with agent perception failure.,2008,21,AI Commun.,1,db/journals/aicom/aicom21.html#BuccafurriCR08,http://content.iospress.com/articles/ai-communications/aic424 +Federico Heras,MaxSAT-based encodings for Group MaxSAT.,2015,28,AI Commun.,2,db/journals/aicom/aicom28.html#HerasMM15,https://doi.org/10.3233/AIC-140636 +Nicola Policella,Scheduling with uncertainty: A proactive approach using Partial Order Schedules.,2005,18,AI Commun.,2,db/journals/aicom/aicom18.html#Policella05,http://content.iospress.com/articles/ai-communications/aic338 +Andrea Marrella,Supporting adaptiveness of cyber-physical processes through action-based formalisms.,2018,31,AI Commun.,1,db/journals/aicom/aicom31.html#MarrellaMS18,https://doi.org/10.3233/AIC-170748 +Francesco Calimeri,Finitely recursive programs: Decidability and bottom-up computation.,2011,24,AI Commun.,4,db/journals/aicom/aicom24.html#CalimeriCIL11,https://doi.org/10.3233/AIC-2011-0509 +Antonio Moreno,Avoiding Logical Omniscience and Perfect Reasoning: A Survey.,1998,11,AI Commun.,2,db/journals/aicom/aicom11.html#Moreno98,http://content.iospress.com/articles/ai-communications/aic150 +Ulises Cortés,Guest-editorial: Environmental Decision Support Systems.,2001,14,AI Commun.,1,db/journals/aicom/aicom14.html#CortesS01,http://content.iospress.com/articles/ai-communications/aic231 +Ricardo João Cruz Correia,Integration of hospital data using agent technologies - A case study.,2005,18,AI Commun.,3,db/journals/aicom/aicom18.html#Cruz-CorreiaVCFOAC05,http://content.iospress.com/articles/ai-communications/aic342 +Luigi Palopoli,Modeling Web-search scenarios exploiting user and source profiles.,2001,14,AI Commun.,4,db/journals/aicom/aicom14.html#PalopoliRTU01,http://content.iospress.com/articles/ai-communications/aic249 +Erion Plaku,Motion planning with temporal-logic specifications: Progress and challenges.,2016,29,AI Commun.,1,db/journals/aicom/aicom29.html#PlakuK15,https://doi.org/10.3233/AIC-150682 +Alfred Kobsa,AI in the German Democratic Republic.,1988,1,AI Commun.,3,db/journals/aicom/aicom1.html#Kobsa88,https://doi.org/10.3233/AIC-1988-1303 +Carlos Mencía,Solving the job shop scheduling problem with operators by depth-first heuristic search enhanced with global pruning rules.,2015,28,AI Commun.,2,db/journals/aicom/aicom28.html#MenciaSSEV15,https://doi.org/10.3233/AIC-140630 +Gerhard Widmer,Using AI and machine learning to study expressive music performance: project survey and first report.,2001,14,AI Commun.,3,db/journals/aicom/aicom14.html#Widmer01,http://content.iospress.com/articles/ai-communications/aic243 +Pere Martí-Puig,Features extraction based on the Discrete Hartley Transform for closed contour.,2015,28,AI Commun.,1,db/journals/aicom/aicom28.html#Marti-PuigBD15,https://doi.org/10.3233/AIC-140620 +Dat Quoc Nguyen,A robust transformation-based learning approach using ripple down rules for part-of-speech tagging.,2016,29,AI Commun.,3,db/journals/aicom/aicom29.html#NguyenNPP15,https://doi.org/10.3233/AIC-150698 +Karina Gibert,Preface.,2015,28,AI Commun.,1,db/journals/aicom/aicom28.html#GibertS15,https://doi.org/10.3233/AIC-140642 +Geoff Sutcliffe,The CADE-20 Automated Theorem Proving Competition.,2006,19,AI Commun.,2,db/journals/aicom/aicom19.html#Sutcliffe06,http://content.iospress.com/articles/ai-communications/aic370 +Karina Gibert,aTLP: A color-based model of uncertainty to evaluate the risk of decisions based on prototypes.,2015,28,AI Commun.,1,db/journals/aicom/aicom28.html#GibertC15,https://doi.org/10.3233/AIC-140611 +Gerhard Brewka,Nonmonotonic Logics - A Brief Overview.,1989,2,AI Commun.,2,db/journals/aicom/aicom2.html#Brewka89,https://doi.org/10.3233/AIC-1989-2204 +Domenico Lembo,Drawing OWL 2 ontologies with Eddy the editor.,2018,31,AI Commun.,1,db/journals/aicom/aicom31.html#LemboPSS18,https://doi.org/10.3233/AIC-180751 +Kamal Amroun,A compressed Generalized Hypertree Decomposition-based solving technique for non-binary Constraint Satisfaction Problems.,2016,29,AI Commun.,2,db/journals/aicom/aicom29.html#AmrounHA16,https://doi.org/10.3233/AIC-150694 +Mansour M. Alghamdi,A hybrid automatic scoring system for Arabic essays.,2014,27,AI Commun.,2,db/journals/aicom/aicom27.html#AlghamdiAAAAA14,https://doi.org/10.3233/AIC-130586 +Ciro Cattuto,Network properties of folksonomies.,2007,20,AI Commun.,4,db/journals/aicom/aicom20.html#CattutoSBSLHGS07,http://content.iospress.com/articles/ai-communications/aic410 +Francesco Calimeri,Template programs for Disjunctive Logic Programming: An operational semantics.,2006,19,AI Commun.,3,db/journals/aicom/aicom19.html#CalimeriI06,http://content.iospress.com/articles/ai-communications/aic373 +John Nealon,Agents applied in health care.,2005,18,AI Commun.,3,db/journals/aicom/aicom18.html#Nealon05,http://content.iospress.com/articles/ai-communications/aic354 +Filippo Neri,Agent-based modeling under partial and full knowledge learning settings to simulate financial markets.,2012,25,AI Commun.,4,db/journals/aicom/aicom25.html#Neri12,https://doi.org/10.3233/AIC-2012-0537 +Alberto Poncela,Cooperative behaviour-based complete exploration for an autonomous robot.,2009,22,AI Commun.,3,db/journals/aicom/aicom22.html#Poncela09,https://doi.org/10.3233/AIC-2009-0449 +Sriram Gopalakrishnan,Learning task hierarchies using statistical semantics and goal reasoning.,2018,31,AI Commun.,2,db/journals/aicom/aicom31.html#GopalakrishnanM18,https://doi.org/10.3233/AIC-180756 +Carlos Linares López,Vectorial Pattern Databases.,2015,28,AI Commun.,3,db/journals/aicom/aicom28.html#Lopez15,https://doi.org/10.3233/AIC-150666 +Sergio Flesca,Web wrapper induction: a brief survey.,2004,17,AI Commun.,2,db/journals/aicom/aicom17.html#FlescaMM04,http://content.iospress.com/articles/ai-communications/aic307 +Cristinel Mateis,Quantitative Disjunctive Logic Programming: Semantics and Computation.,2000,13,AI Commun.,4,db/journals/aicom/aicom13.html#Mateis00,http://content.iospress.com/articles/ai-communications/aic220 +David Riaño 0001,Automatic Construction of Descriptive Rules.,1998,11,AI Commun.,1,db/journals/aicom/aicom11.html#Riano98,http://content.iospress.com/articles/ai-communications/aic138 +Jonathan Rubin,Case-based strategies in computer poker.,2012,25,AI Commun.,1,db/journals/aicom/aicom25.html#RubinW12,https://doi.org/10.3233/AIC-2012-0513 +Stephen Muggleton,Alan Turing and the development of Artificial Intelligence.,2014,27,AI Commun.,1,db/journals/aicom/aicom27.html#Muggleton14,https://doi.org/10.3233/AIC-130579 +Antonio Moreno,Thesis: Modelling rational inquiry in non-idela agents.,2001,14,AI Commun.,1,db/journals/aicom/aicom14.html#Moreno01,http://content.iospress.com/articles/ai-communications/aic229 +Hojjat Emami,Election algorithm: A new socio-politically inspired strategy.,2015,28,AI Commun.,3,db/journals/aicom/aicom28.html#EmamiD15,https://doi.org/10.3233/AIC-140652 +Roberto Ruiz,New heuristics in feature selection for high dimensional data (thesis abstract).,2007,20,AI Commun.,2,db/journals/aicom/aicom20.html#Ruiz07,http://content.iospress.com/articles/ai-communications/aic398 +Antonella Guzzo,Semi-Inflationary DATALOG: A declarative database language with procedural features.,2005,18,AI Commun.,2,db/journals/aicom/aicom18.html#GuzzoS05,http://content.iospress.com/articles/ai-communications/aic336 +Francesca Carmagnola,From user models to interoperable user models.,2009,22,AI Commun.,2,db/journals/aicom/aicom22.html#Carmagnola09,https://doi.org/10.3233/AIC-2009-0448 +Geoff Sutcliffe,The 6th IJCAR automated theorem proving system competition - CASC-J6.,2013,26,AI Commun.,2,db/journals/aicom/aicom26.html#Sutcliffe13,https://doi.org/10.3233/AIC-130550 +Janelcy Alferes,Efficient automated quality assessment: Dealing with faulty on-line water quality sensors.,2016,29,AI Commun.,6,db/journals/aicom/aicom29.html#AlferesV16,https://doi.org/10.3233/AIC-160713 +Lothar Hotz,Beyond physical product configuration - Configuration in unusual domains.,2013,26,AI Commun.,1,db/journals/aicom/aicom26.html#HotzW13,https://doi.org/10.3233/AIC-2012-0545 +Jochen Renz,Spatial and temporal reasoning.,2004,17,AI Commun.,4,db/journals/aicom/aicom17.html#RenzG04,http://content.iospress.com/articles/ai-communications/aic331 +Jakob Mauss,A constraint solver for model-based engineering.,2004,17,AI Commun.,2,db/journals/aicom/aicom17.html#MaussST04,http://content.iospress.com/articles/ai-communications/aic310 +Ian P. Gent,An empirical study of learning and forgetting constraints.,2012,25,AI Commun.,2,db/journals/aicom/aicom25.html#GentMM12,https://doi.org/10.3233/AIC-2012-0524 +Alfredo Garro,Exploiting agents in e-learning and skills management context.,2006,19,AI Commun.,2,db/journals/aicom/aicom19.html#GarroPR06,http://content.iospress.com/articles/ai-communications/aic367 +Robert Milne,TIGER: Knowledge Based Gas Turbine Condition Monitoring.,1996,9,AI Commun.,3,db/journals/aicom/aicom9.html#MilneNTQ96,https://doi.org/10.3233/AIC-1996-9302 +Giovambattista Ianni,Intelligent anticipated exploration of Web sites.,2001,14,AI Commun.,4,db/journals/aicom/aicom14.html#Ianni01,http://content.iospress.com/articles/ai-communications/aic248 +Félix Ingrand,Robotics and artificial intelligence: A perspective on deliberation functions.,2014,27,AI Commun.,1,db/journals/aicom/aicom27.html#IngrandG14,https://doi.org/10.3233/AIC-130578 +Erkan Tin,Situated Nonmonotonic Temporal Reasoning with BABY-SIT.,1997,10,AI Commun.,2,db/journals/aicom/aicom10.html#TinA97,http://content.iospress.com/articles/ai-communications/aic121 +Joël Plisson,Ripple Down Rule learning for automated word lemmatisation.,2008,21,AI Commun.,1,db/journals/aicom/aicom21.html#PlissonLME08,http://content.iospress.com/articles/ai-communications/aic416 +Pedro Meseguer,Constraint Satisfaction Problems: An Overview.,1989,2,AI Commun.,1,db/journals/aicom/aicom2.html#Meseguer89,https://doi.org/10.3233/AIC-1989-2101 +Marco Lippi 0001,Optimally solving permutation sorting problems with efficient partial expansion bidirectional heuristic search.,2016,29,AI Commun.,4,db/journals/aicom/aicom29.html#LippiEF15,https://doi.org/10.3233/AIC-160704 +Luc De Raedt,AI Research in the Benelux - Guest Editorial.,2000,13,AI Commun.,1,db/journals/aicom/aicom13.html#RaedtPV00,http://content.iospress.com/articles/ai-communications/aic200 +Elvira Albert,Partial evaluation of multi-paradigm declarative languages.,2001,14,AI Commun.,4,db/journals/aicom/aicom14.html#Albert01,http://content.iospress.com/articles/ai-communications/aic247 +Josep Roure Alcobé,Incremental methods for Bayesian network structure learning.,2005,18,AI Commun.,1,db/journals/aicom/aicom18.html#Alcobe05,http://content.iospress.com/articles/ai-communications/aic326 +Tanja Urbancic,Web-based analysis of data mining and decision support education.,2002,15,AI Commun.,4,db/journals/aicom/aicom15.html#UrbancicSF02,http://content.iospress.com/articles/ai-communications/aic268 +F. Javier Ortega,Detection of dishonest behaviors in on-line networks using graph-based ranking techniques.,2013,26,AI Commun.,3,db/journals/aicom/aicom26.html#Ortega13,https://doi.org/10.3233/AIC-130564 +Roberta Annicchiarico,Thesis: New methodology for disability assessment: analysis of WHO-Disability Assessment Schedule II with clustering based on rules.,2003,16,AI Commun.,3,db/journals/aicom/aicom16.html#Annicchiarico03,http://content.iospress.com/articles/ai-communications/aic290 +Francisco G. Bulnes,Classification of periodical defects in inspection systems based on computer vision.,2012,25,AI Commun.,4,db/journals/aicom/aicom25.html#Bulnes12,https://doi.org/10.3233/AIC-2012-0534 +Gérard Ligozat,Spatial and temporal reasoning: beyond Allen's calculus.,2004,17,AI Commun.,4,db/journals/aicom/aicom17.html#LigozatMC04,http://content.iospress.com/articles/ai-communications/aic324 +Francesco M. Donini,Using Terminological Reasoning in Hybrid Systems.,1990,3,AI Commun.,3,db/journals/aicom/aicom3.html#DoniniLN90,https://doi.org/10.3233/AIC-1990-3304 +Jon A. Elorriaga,Instructional Planning in Intelligent Evolutive Tutoring Systems from a Case-Based Reasoning Approach.,1999,12,AI Commun.,4,db/journals/aicom/aicom12.html#Elorriaga99,http://content.iospress.com/articles/ai-communications/aic190 +Philippe Besnard,DRUMS: Defeasible Reasoning and Uncertainty Management Systems.,1993,6,AI Commun.,1,db/journals/aicom/aicom6.html#BensardMPCWDMCDPCLAFKDFMMGMBPKPSSHSKXUSW93,https://doi.org/10.3233/AIC-1993-6103 +Maryam Sorkhi,Effective team formation in collaboration networks using vertex and proficiency similarity measures.,2015,28,AI Commun.,4,db/journals/aicom/aicom28.html#SorkhiH15,https://doi.org/10.3233/AIC-140628 +H. Tolba,Representing and Propagating Constraints in Temporal Reasoning.,1991,4,AI Commun.,4,db/journals/aicom/aicom4.html#TolbaCH91,https://doi.org/10.3233/AIC-1991-4403 +Isabella Poggi,Eye Communication in a Conversational 3D Synthetic Agent.,2000,13,AI Commun.,3,db/journals/aicom/aicom13.html#PoggiPR00,http://content.iospress.com/articles/ai-communications/aic217 +Gerhard Schmitt,Multi-Agent Interaction in a Complex Virtual Design Environment.,1996,9,AI Commun.,2,db/journals/aicom/aicom9.html#SchmittEKFM96,https://doi.org/10.3233/AIC-1996-9206 +Andreas Wichert,Artificial intelligence and a universal quantum computer.,2016,29,AI Commun.,4,db/journals/aicom/aicom29.html#Wichert15,https://doi.org/10.3233/AIC-160699 +Gianluigi Greco,Collaborative Filtering Supporting Web Site Navigation.,2004,17,AI Commun.,3,db/journals/aicom/aicom17.html#GrecoGZ04,http://content.iospress.com/articles/ai-communications/aic316 +Massimiliano Cattafi,An application of constraint solving for home health care.,2015,28,AI Commun.,2,db/journals/aicom/aicom28.html#CattafiHGNM15,https://doi.org/10.3233/AIC-140632 +Charles Perez,REPLOT: REtrieving Profile Links On Twitter for malicious campaign discovery.,2016,29,AI Commun.,1,db/journals/aicom/aicom29.html#PerezBLLW15,https://doi.org/10.3233/AIC-150659 +Hans Tompits,Expressing default abduction problems as quantified Boolean formulas.,2003,16,AI Commun.,2,db/journals/aicom/aicom16.html#Tompits03,http://content.iospress.com/articles/ai-communications/aic277 +Susanne Hoche,Network analysis in natural sciences and engineering.,2007,20,AI Commun.,4,db/journals/aicom/aicom20.html#HocheNF07,http://content.iospress.com/articles/ai-communications/aic415 +Malek Mouhoub,Systematic versus non systematic techniques for solving temporal constraints in a dynamic environment.,2004,17,AI Commun.,4,db/journals/aicom/aicom17.html#Mouhoub04,http://content.iospress.com/articles/ai-communications/aic325 +Geoff Sutcliffe,The CADE-23 Automated Theorem Proving System Competition - CASC-23.,2012,25,AI Commun.,1,db/journals/aicom/aicom25.html#Sutcliffe12,https://doi.org/10.3233/AIC-2012-0512 +Karina Gibert,Cluster discovery in environmental databases using GESCONDA: The added value of comparisons.,2005,18,AI Commun.,4,db/journals/aicom/aicom18.html#GibertSF05,http://content.iospress.com/articles/ai-communications/aic353 +Mahsa Badami,An ensemble game theoretic approach for multi-objective optimization.,2015,28,AI Commun.,3,db/journals/aicom/aicom28.html#BadamiMHH15,https://doi.org/10.3233/AIC-140653 +Mauro Vallati,Efficient planning through automatic configuration and machine learning.,2013,26,AI Commun.,3,db/journals/aicom/aicom26.html#Vallati13,https://doi.org/10.3233/AIC-130561 +Jan Ramon,Clustering and instance based learning in first order logic.,2002,15,AI Commun.,4,db/journals/aicom/aicom15.html#Ramon02,http://content.iospress.com/articles/ai-communications/aic270 +Josefa Z. Hernández,Environmental emergency management supported by knowledge modelling techniques.,2001,14,AI Commun.,1,db/journals/aicom/aicom14.html#HernandezS01,http://content.iospress.com/articles/ai-communications/aic228 +Hyunjung Lee,Domain action classification using a maximum entropy model in a schedule management domain.,2008,21,AI Commun.,4,db/journals/aicom/aicom21.html#LeeKS08,https://doi.org/10.3233/AIC-2008-0425 +Marco Maratea,Solving disjunctive temporal problems with preferences using maximum satisfiability.,2012,25,AI Commun.,2,db/journals/aicom/aicom25.html#MarateaP12,https://doi.org/10.3233/AIC-2012-0527 +Natalia Criado,Open issues for normative multi-agent systems.,2011,24,AI Commun.,3,db/journals/aicom/aicom24.html#CriadoAB11,https://doi.org/10.3233/AIC-2011-0502 +Jose M. Such,Enhancing privacy in Multi-agent Systems.,2012,25,AI Commun.,4,db/journals/aicom/aicom25.html#Such12,https://doi.org/10.3233/AIC-2012-0521 +Jürgen Wiese,Applying and optimizing case-based reasoning for wastewater treatment systems.,2005,18,AI Commun.,4,db/journals/aicom/aicom18.html#WieseSH05,http://content.iospress.com/articles/ai-communications/aic349 +Diego Magro,F: Conceptual language-based configuration.,2010,23,AI Commun.,1,db/journals/aicom/aicom23.html#Magro10,https://doi.org/10.3233/AIC-2010-0470 +Zeynep Kiziltan,Symmetry breaking ordering constraints.,2004,17,AI Commun.,3,db/journals/aicom/aicom17.html#Kiziltan04,http://content.iospress.com/articles/ai-communications/aic311 +José Hernández-Orallo,Reframing in context: A systematic approach for model reuse in machine learning.,2016,29,AI Commun.,5,db/journals/aicom/aicom29.html#Hernandez-Orallo16,https://doi.org/10.3233/AIC-160705 +David Hirschberg,Europace AI and Expert Systems Programme.,1989,2,AI Commun.,2,db/journals/aicom/aicom2.html#Hirschberg89,https://doi.org/10.3233/AIC-1989-2206 +Pedro Meseguer,Towards a Conceptual Framework for Expert System Validation.,1992,5,AI Commun.,3,db/journals/aicom/aicom5.html#Meseguer92,https://doi.org/10.3233/AIC-1992-5301 +Matthew Dixon,A Bayesian approach to ranking private companies based on predictive indicators.,2014,27,AI Commun.,2,db/journals/aicom/aicom27.html#DixonC14,https://doi.org/10.3233/AIC-140596 +Luigi Palopoli,Agents' roles in B2C e-commerce.,2006,19,AI Commun.,2,db/journals/aicom/aicom19.html#PalopoliRU06,http://content.iospress.com/articles/ai-communications/aic363 +Martin Sachenbacher,A Prototype for Model-based On-board Diagnosis of Automotive Systems.,2000,13,AI Commun.,2,db/journals/aicom/aicom13.html#SachenbacherSC00,http://content.iospress.com/articles/ai-communications/aic209 +Fabio Mercorio,Model checking for universal planning in deterministic and non-deterministic domains.,2013,26,AI Commun.,2,db/journals/aicom/aicom26.html#Mercorio13,https://doi.org/10.3233/AIC-130556 +Foto N. Afrati,Efficient lineage for SUM aggregate queries.,2015,28,AI Commun.,4,db/journals/aicom/aicom28.html#AfratiFV15,https://doi.org/10.3233/AIC-140647 +Pascal Fontaine,Foreword to the Special Issue on Automated Reasoning.,2018,31,AI Commun.,3,db/journals/aicom/aicom31.html#FontaineKSU18,https://doi.org/10.3233/AIC-180765 +Ian P. Gent,Search in the patience game 'Black Hole'.,2007,20,AI Commun.,3,db/journals/aicom/aicom20.html#GentJKLMNST07,http://content.iospress.com/articles/ai-communications/aic405 +Jue Wang 0004,"Multilevel data summarization from information systems: a ""rule + exception"" approach.",2003,16,AI Commun.,1,db/journals/aicom/aicom16.html#WangZZH03,http://content.iospress.com/articles/ai-communications/aic275 +Antonio Moreno,Personalised recommendations based on novel semantic similarity and clustering procedures.,2015,28,AI Commun.,1,db/journals/aicom/aicom28.html#MorenoVMVMM15,https://doi.org/10.3233/AIC-140612 +Javier Carbó,Evolutionary-inspired approach to compare trust models in agent simulations.,2015,28,AI Commun.,3,db/journals/aicom/aicom28.html#CarboL15,https://doi.org/10.3233/AIC-140654 +Frank van Harmelen,Truth and Modality for Knowledge Representation.,1990,3,AI Commun.,2,db/journals/aicom/aicom3.html#Harmelen90a,https://doi.org/10.3233/AIC-1990-3207 +Miguel Miranda,Inferring phylogenetic trees using pseudo-Boolean optimization.,2014,27,AI Commun.,3,db/journals/aicom/aicom27.html#MirandaLM14,https://doi.org/10.3233/AIC-140592 +Yonghong Tian 0001,Context-based statistical relational learning.,2006,19,AI Commun.,3,db/journals/aicom/aicom19.html#Tian06,http://content.iospress.com/articles/ai-communications/aic368 +Pierre Gançarski,Use of symbolic dynamic time warping in hierarchical clustering of urban fabric evolutions extracted from spatiotemporal topographic databases.,2016,29,AI Commun.,6,db/journals/aicom/aicom29.html#GancarskiPP16,https://doi.org/10.3233/AIC-160717 +Frederico T. Fonseca,Space and time in eco-ontologies.,2004,17,AI Commun.,4,db/journals/aicom/aicom17.html#FonsecaM04,http://content.iospress.com/articles/ai-communications/aic323 +Ramón López de Mántaras,Case-Based Reasoning: An Overview.,1997,10,AI Commun.,1,db/journals/aicom/aicom10.html#MantarasP97,http://content.iospress.com/articles/ai-communications/aic106 +Odd Jarl Borch,STRATEX - a Knowledge-Based System for Strategic Market Planning in Small Firms.,1990,3,AI Commun.,1,db/journals/aicom/aicom3.html#BorchH90,https://doi.org/10.3233/AIC-1990-3102 +Thomas Eiter,Comparing environments for developing software agents.,2002,15,AI Commun.,4,db/journals/aicom/aicom15.html#EiterM02,http://content.iospress.com/articles/ai-communications/aic264 +Raquel Fuentetaja,Anticipation of goals in automated planning.,2018,31,AI Commun.,2,db/journals/aicom/aicom31.html#FuentetajaBR18,https://doi.org/10.3233/AIC-180753 +Nicola Stokes,SeLeCT: a lexical cohesion based news story segmentation system.,2004,17,AI Commun.,1,db/journals/aicom/aicom17.html#StokesCS04,http://content.iospress.com/articles/ai-communications/aic303 +Philip Swann,Cognitive Science and Wittgenstein's Tractatus.,1992,5,AI Commun.,2,db/journals/aicom/aicom5.html#Swann92,https://doi.org/10.3233/AIC-1992-5203 +Khalil el Hindi,Fine tuning the Naïve Bayesian learning algorithm.,2014,27,AI Commun.,2,db/journals/aicom/aicom27.html#Hindi14,https://doi.org/10.3233/AIC-130588 +Liliana Ardissono,An adaptive system for the personalized access to news.,2001,14,AI Commun.,3,db/journals/aicom/aicom14.html#ArdissonoCT01,http://content.iospress.com/articles/ai-communications/aic242 +Marco Maratea,Efficient decision procedures for the integration of planning and formal verification in advanced systems.,2006,19,AI Commun.,1,db/journals/aicom/aicom19.html#Maratea06,http://content.iospress.com/articles/ai-communications/aic358 +,A review of ESPRIT I.,1990,3,AI Commun.,2,db/journals/aicom/aicom3.html#X90,https://doi.org/10.3233/AIC-1990-3202 +Mihaela Oprea,ABVE-Frame: An agent-based virtual enterprise development framework.,2017,30,AI Commun.,2,db/journals/aicom/aicom30.html#Oprea17,https://doi.org/10.3233/AIC-160719 +Cristian Gratie,General directionality and the local behavior of argumentation semantics.,2016,29,AI Commun.,1,db/journals/aicom/aicom29.html#GratieFM15,https://doi.org/10.3233/AIC-140623 +Boi Faltings,Working Group in Model-Based Design and Reasoning. Part I: Modeling and Diagnosis.,1996,9,AI Commun.,2,db/journals/aicom/aicom9.html#Faltings96,https://doi.org/10.3233/AIC-1996-9204 +Xishun Zhao,Complexity of argument-based default reasoning with specificity.,2003,16,AI Commun.,2,db/journals/aicom/aicom16.html#Zhao03,http://content.iospress.com/articles/ai-communications/aic282 +Eivind Jahren,Resizing cardinality constraints for MaxSAT.,2018,31,AI Commun.,4,db/journals/aicom/aicom31.html#JahrenA18,https://doi.org/10.3233/AIC-180768 +Marco Maratea,Planning as satisfiability with IPC simple preferences and action costs.,2012,25,AI Commun.,4,db/journals/aicom/aicom25.html#Maratea12,https://doi.org/10.3233/AIC-2012-0540 +Alberto Pozanco,Learning-driven goal generation.,2018,31,AI Commun.,2,db/journals/aicom/aicom31.html#PozancoFB18,https://doi.org/10.3233/AIC-180754 +Andreas A. Falkner,Challenges of knowledge evolution in practice.,2013,26,AI Commun.,1,db/journals/aicom/aicom26.html#FalknerH13,https://doi.org/10.3233/AIC-120542 +,Thesis summaries.,2014,27,AI Commun.,3,db/journals/aicom/aicom27.html#X14,https://doi.org/10.3233/AIC-140598 +David Camacho,Thesis: Coordination of planning agents to solve problems in the Web.,2003,16,AI Commun.,4,db/journals/aicom/aicom16.html#Camacho03,http://content.iospress.com/articles/ai-communications/aic291 +Iván Dotú,Scheduling social tournaments locally.,2007,20,AI Commun.,3,db/journals/aicom/aicom20.html#DotuH07,http://content.iospress.com/articles/ai-communications/aic402 +Zhi-Hua Zhou,Extracting symbolic rules from trained neural network ensembles.,2003,16,AI Commun.,1,db/journals/aicom/aicom16.html#ZhouJC03,http://content.iospress.com/articles/ai-communications/aic272 +Lina Khatib,Solving and learning a tractable class of soft temporal constraints: Theoretical and experimental results.,2007,20,AI Commun.,3,db/journals/aicom/aicom20.html#KhatibMMRSV07,http://content.iospress.com/articles/ai-communications/aic404 +David Griol,A statistical simulation technique to develop and evaluate conversational agents.,2013,26,AI Commun.,4,db/journals/aicom/aicom26.html#GriolCM13,https://doi.org/10.3233/AIC-130573 +Zohreh A. Dannenhauer,Rationale-based perceptual monitors.,2018,31,AI Commun.,2,db/journals/aicom/aicom31.html#DannenhauerC18,https://doi.org/10.3233/AIC-180758 +Christophe G. Giraud-Carrier,A Note on the Utility of Incremental Learning.,2000,13,AI Commun.,4,db/journals/aicom/aicom13.html#Giraud-Carrier00,http://content.iospress.com/articles/ai-communications/aic193 +Goran Z. Markovic,Routing and wavelength assignment in all-optical networks based on the bee colony optimization.,2007,20,AI Commun.,4,db/journals/aicom/aicom20.html#MarkovicTA07,http://content.iospress.com/articles/ai-communications/aic413 +Thanh Nguyen 0005,Two-phase selective decentralization to improve reinforcement learning systems with MDP.,2018,31,AI Commun.,4,db/journals/aicom/aicom31.html#NguyenM18,https://doi.org/10.3233/AIC-180766 +Toni Mancini,Experimental evaluation of algorithms for solving problems with combinatorial explosion.,2016,29,AI Commun.,2,db/journals/aicom/aicom29.html#ManciniMR16,https://doi.org/10.3233/AIC-160701 +Geoff Sutcliffe,The CADE-24 automated theorem proving system competition - CASC-24.,2014,27,AI Commun.,4,db/journals/aicom/aicom27.html#Sutcliffe14,https://doi.org/10.3233/AIC-140606 +Daan Fierens,Learning directed probabilistic logical models from relational data.,2008,21,AI Commun.,4,db/journals/aicom/aicom21.html#Fierens08,https://doi.org/10.3233/AIC-2008-0428 +Kurt Driessens,Relational reinforcement learning.,2005,18,AI Commun.,1,db/journals/aicom/aicom18.html#Driessens05,http://content.iospress.com/articles/ai-communications/aic334 +Chen Avin,An upper bound on computing all X-minimal models.,2007,20,AI Commun.,2,db/journals/aicom/aicom20.html#AvinB07,http://content.iospress.com/articles/ai-communications/aic396 +Elham Bavafaye Haghighi,Mapping to optimal regions* A new method for multi-class classification task to reduce complexity.,2014,27,AI Commun.,4,db/journals/aicom/aicom27.html#HaghighiRGP14,https://doi.org/10.3233/AIC-140607 +Luís Moniz Pereira,Book Review.,2012,25,AI Commun.,4,db/journals/aicom/aicom25.html#Pereira12,https://doi.org/10.3233/AIC-2012-0515 +Ramon Sangüesa,Learning Causal Networks from Data: A Survey and a New Algorithm for Recovering Possibilistic Causal Networks.,1997,10,AI Commun.,1,db/journals/aicom/aicom10.html#SanguesaC97,http://content.iospress.com/articles/ai-communications/aic113 +Franz Schmalhofer,The Model-Based Construction of a Case-Oriented Expert System.,1992,5,AI Commun.,1,db/journals/aicom/aicom5.html#SchhmalhoferT92,https://doi.org/10.3233/AIC-1992-5101 +Jacobijn Sandberg,Interviews on AI and Education: Allan Collins and Stellan Ohlsson.,1991,4,AI Commun.,4,db/journals/aicom/aicom4.html#SandbergB91,https://doi.org/10.3233/AIC-1991-4402 +Maria Fox,Introduction to the Special Issue on the ECAI 2012 Turing and Anniversary Track.,2014,27,AI Commun.,1,db/journals/aicom/aicom27.html#FoxR14,https://doi.org/10.3233/AIC-130577 +Geoff Sutcliffe,The IJCAR-2004 Automated Theorem Proving Competition.,2005,18,AI Commun.,1,db/journals/aicom/aicom18.html#Sutcliffe05,http://content.iospress.com/articles/ai-communications/aic333 +Antonio Moreno,Provision of agent-based health care services.,2003,16,AI Commun.,3,db/journals/aicom/aicom16.html#MorenoIS03,http://content.iospress.com/articles/ai-communications/aic286 +Stan Franklin,Building Life-like 'Conscious' Software Agents.,2000,13,AI Commun.,3,db/journals/aicom/aicom13.html#Franklin00,http://content.iospress.com/articles/ai-communications/aic218 +Sergio Greco,Combining inductive and deductive tools for data analysis.,2001,14,AI Commun.,2,db/journals/aicom/aicom14.html#GrecoMP01,http://content.iospress.com/articles/ai-communications/237 +Di Wang,Bank failure prediction using an accurate and interpretable neural fuzzy inference system.,2016,29,AI Commun.,4,db/journals/aicom/aicom29.html#WangQN15,https://doi.org/10.3233/AIC-160702 +Nigel R. Seel,The Second European Workshop on Modelling Autonomous Agents and Multi-Agent Worlds.,1990,3,AI Commun.,4,db/journals/aicom/aicom3.html#Seel90,https://doi.org/10.3233/AIC-1990-3405 +Bob J. Wielinga,Editorial.,1990,3,AI Commun.,2,db/journals/aicom/aicom3.html#Wielinga90,https://doi.org/10.3233/AIC-1990-3201 +Silvana Badaloni,Bayesian Network structure learning: Hybridizing complete search with independence tests.,2015,28,AI Commun.,2,db/journals/aicom/aicom28.html#BadaloniSV15,https://doi.org/10.3233/AIC-140634 +Luc Steels,The Deepening of Expert Systems.,1987,0,AI Commun.,1,db/journals/aicom/aicom0.html#Steels87,https://doi.org/10.3233/AIC-1987-0104 +Nicoletta Fornara,Representation and monitoring of commitments and norms using OWL.,2010,23,AI Commun.,4,db/journals/aicom/aicom23.html#FornaraC10,https://doi.org/10.3233/AIC-2010-0478 +,Calls for Papers / Calendar.,2000,13,AI Commun.,1,db/journals/aicom/aicom13.html#X00, +Olivier Trullier,Biomimetic Navigation Models and Strategies in Animats.,1997,10,AI Commun.,2,db/journals/aicom/aicom10.html#TrullierM97,http://content.iospress.com/articles/ai-communications/aic118 +Arindam Chaudhuri,Modified fuzzy support vector machine for credit approval classification.,2014,27,AI Commun.,2,db/journals/aicom/aicom27.html#Chaudhuri14,https://doi.org/10.3233/AIC-140597 +Cristina Rubio-Escudero,Fusion of knowledge towards the identification of genetic profiles.,2012,25,AI Commun.,1,db/journals/aicom/aicom25.html#Rubio-Escudero12,https://doi.org/10.3233/AIC-2011-0506 +Nicola Policella,From precedence constraint posting to partial order schedules: A CSP approach to Robust Scheduling.,2007,20,AI Commun.,3,db/journals/aicom/aicom20.html#PolicellaCOS07,http://content.iospress.com/articles/ai-communications/aic403 +Gianluca Torta,Parametric abstraction of behavioral modes for model-based diagnosis.,2009,22,AI Commun.,2,db/journals/aicom/aicom22.html#TortaT09,https://doi.org/10.3233/AIC-2009-0444 +Seyed Naser Razavi,A genetic programming based learning system to derive multipole and local expansions for the fast multipole method.,2012,25,AI Commun.,4,db/journals/aicom/aicom25.html#RazaviGKM12,https://doi.org/10.3233/AIC-2012-0538 +Verónica Dahl,Understanding and Translating Language - Challenges of the 90s.,1995,8,AI Commun.,2,db/journals/aicom/aicom8.html#Dahl95,https://doi.org/10.3233/AIC-1995-8201 +Daniel Villatoro,Social norms for self-policing multi-agent systems and virtual societies.,2013,26,AI Commun.,2,db/journals/aicom/aicom26.html#Villatoro13,https://doi.org/10.3233/AIC-130555 +Hamidreza Alvari,Discovering overlapping communities in social networks: A novel game-theoretic approach.,2013,26,AI Commun.,2,db/journals/aicom/aicom26.html#AlvariHH13,https://doi.org/10.3233/AIC-130557 +Martín O. Moguillansky,Ontology reasoning and evolution with inconsistency tolerance.,2016,29,AI Commun.,2,db/journals/aicom/aicom29.html#Moguillansky16,https://doi.org/10.3233/AIC-150662 +Brian Knight,A General Temporal Model Supporting Duration Reasoning.,1992,5,AI Commun.,2,db/journals/aicom/aicom5.html#KnightM92,https://doi.org/10.3233/AIC-1992-5204 +Alicia Villanueva,Model checking for the concurrent constraint paradigm.,2004,17,AI Commun.,2,db/journals/aicom/aicom17.html#Villanueva04,http://content.iospress.com/articles/ai-communications/aic305 +Lars Otten,Anytime AND/OR depth-first search for combinatorial optimization.,2012,25,AI Commun.,3,db/journals/aicom/aicom25.html#OttenD12,https://doi.org/10.3233/AIC-2012-0531 +Massimo Quadrana,An efficient closed frequent itemset miner for the MOA stream mining system.,2015,28,AI Commun.,1,db/journals/aicom/aicom28.html#QuadranaBG15,https://doi.org/10.3233/AIC-140615 +Mark Roberts,Special issue on goal reasoning.,2018,31,AI Commun.,2,db/journals/aicom/aicom31.html#RobertsBCY18,https://doi.org/10.3233/AIC-180760 +Carles Sierra,AI Communications track on agreement technologies.,2015,28,AI Commun.,3,db/journals/aicom/aicom28.html#SierraT15,https://doi.org/10.3233/AIC-150678 +Geoff Sutcliffe,The CADE-19 ATP System Competition.,2004,17,AI Commun.,3,db/journals/aicom/aicom17.html#SutcliffeS04,http://content.iospress.com/articles/ai-communications/aic312 +Jacky Montmain,Supervision Applied to Nuclear Fuel Reprocessing.,2000,13,AI Commun.,2,db/journals/aicom/aicom13.html#Montmain00,http://content.iospress.com/articles/ai-communications/aic205 +Axel J. Soto,On the use of machine learning methods for modern drug discovery.,2011,24,AI Commun.,1,db/journals/aicom/aicom24.html#Soto11,https://doi.org/10.3233/AIC-2010-0487 +Walter Daelemans,A Model of Dutch Morphophonology and its Applications.,1988,1,AI Commun.,2,db/journals/aicom/aicom1.html#Daelemans88,https://doi.org/10.3233/AIC-1988-1203 +Inma Hernández,Enterprise information integration.,2016,29,AI Commun.,2,db/journals/aicom/aicom29.html#Hernandez16,https://doi.org/10.3233/AIC-150670 +Aleksander Pivk,Automatic ontology generation from Web tabular structures.,2006,19,AI Commun.,1,db/journals/aicom/aicom19.html#Pivk06,http://content.iospress.com/articles/ai-communications/aic360 +Santiago Escobar,Thesis: Strategies and analysis techniques in functional program optimization.,2004,17,AI Commun.,1,db/journals/aicom/aicom17.html#Escobar04,http://content.iospress.com/articles/ai-communications/aic299 +Franz Wotawa,On classification and modeling issues in distributed model-based diagnosis.,2013,26,AI Commun.,1,db/journals/aicom/aicom26.html#WotawaP13,https://doi.org/10.3233/AIC-2012-0548 +Han The Anh,State-of-the-art of intention recognition and its use in decision making.,2013,26,AI Commun.,2,db/journals/aicom/aicom26.html#AnhP13,https://doi.org/10.3233/AIC-130559 +Takuya Matsuzaki,Can an A.I. win a medal in the mathematical olympiad? - Benchmarking mechanized mathematics on pre-university problems.,2018,31,AI Commun.,3,db/journals/aicom/aicom31.html#MatsuzakiIKZFKA18,https://doi.org/10.3233/AIC-180762 +Gero Iwan,History-based diagnosis templates in the framework of the situation calculus.,2002,15,AI Commun.,1,db/journals/aicom/aicom15.html#Iwan02,http://content.iospress.com/articles/ai-communications/aic252 +Roni Stern,Finding patterns in an unknown graph.,2012,25,AI Commun.,3,db/journals/aicom/aicom25.html#SternKF12,https://doi.org/10.3233/AIC-2012-0532 +Carlo Bach,Case-Based Reasoning in Diagnostic Expert Systems.,1996,9,AI Commun.,2,db/journals/aicom/aicom9.html#BachA96,https://doi.org/10.3233/AIC-1996-9202 +Jacopo Mantovani,Automatic software verification for robotics.,2008,21,AI Commun.,4,db/journals/aicom/aicom21.html#Mantovani08,https://doi.org/10.3233/AIC-2008-0426 +Santiago Ontañón,Refinement-based disintegration: An approach to re-representation in relational learning.,2015,28,AI Commun.,1,db/journals/aicom/aicom28.html#OntanonP15,https://doi.org/10.3233/AIC-140621 +Christian Miller,Verification of partial designs using incremental QBF.,2015,28,AI Commun.,2,db/journals/aicom/aicom28.html#MillerMB15,https://doi.org/10.3233/AIC-140633 +Montserrat Batet,Ontology-based semantic clustering.,2011,24,AI Commun.,3,db/journals/aicom/aicom24.html#Batet11,https://doi.org/10.3233/AIC-2011-0501 +Rachel Ben-Eliyahu-Zohary,Monotonic qualitative logic programs: Computation and applications.,2014,27,AI Commun.,3,db/journals/aicom/aicom27.html#Ben-Eliyahu-ZoharyGCG14,https://doi.org/10.3233/AIC-140591 +Mauro Dragoni,Combining argumentation and aspect-based opinion mining: The SMACk system.,2018,31,AI Commun.,1,db/journals/aicom/aicom31.html#DragoniPTV18,https://doi.org/10.3233/AIC-180752 +Carlos Linares López,Automating the evaluation of planning systems.,2013,26,AI Commun.,4,db/journals/aicom/aicom26.html#LopezJH13,https://doi.org/10.3233/AIC-130572 +George Macleod Coghill,On the specification of multiple models for diagnosis of dynamic systems.,2001,14,AI Commun.,2,db/journals/aicom/aicom14.html#CoghillS01,http://content.iospress.com/articles/ai-communications/aic241 +Daniel Nikolaev Nikovski,Barycentric quantization for planning in continuous domains.,2015,28,AI Commun.,3,db/journals/aicom/aicom28.html#Nikovski15,https://doi.org/10.3233/AIC-150675 +Peter Bloodsworth,COSMOA an ontology-centric multi-agent system for co-ordinating medical responses to large-scale disasters.,2005,18,AI Commun.,3,db/journals/aicom/aicom18.html#BloodsworthG05,http://content.iospress.com/articles/ai-communications/aic341 +Neil Rayner,Learning is neither sufficient nor necessary: An agent-based model of long memory in financial markets.,2014,27,AI Commun.,4,db/journals/aicom/aicom27.html#RaynerPC14,https://doi.org/10.3233/AIC-140608 +Domingo S. Rodríguez-Baena,Extracting and validating biclusters from binary datasets.,2013,26,AI Commun.,4,db/journals/aicom/aicom26.html#Rodriguez-Baena13,https://doi.org/10.3233/AIC-130570 +Katarzyna Musial,Social Network Analysis in Applications.,2016,29,AI Commun.,1,db/journals/aicom/aicom29.html#MusialBM15,https://doi.org/10.3233/AIC-150688 +Paulo Salles,Qualitative models of interactions between two populations.,2003,16,AI Commun.,4,db/journals/aicom/aicom16.html#SallesBAN03,http://content.iospress.com/articles/ai-communications/aic298 +Raquel Fuentetaja,Compiling irrelevant objects to counters. Special case of creation planning.,2016,29,AI Commun.,3,db/journals/aicom/aicom29.html#FuentetajaR15,https://doi.org/10.3233/AIC-150692 +Gianfranco Lamperti,Incremental processing of temporal observations in Model-Based Reasoning.,2007,20,AI Commun.,1,db/journals/aicom/aicom20.html#LampertiZZ07,http://content.iospress.com/articles/ai-communications/aic394 +Geoff Sutcliffe,The CADE-26 automated theorem proving system competition - CASC-26.,2017,30,AI Commun.,6,db/journals/aicom/aicom30.html#Sutcliffe17,https://doi.org/10.3233/AIC-170744 +Andrea Tagarelli,Combining linear programming and clustering techniques for the classification of research centers.,2004,17,AI Commun.,3,db/journals/aicom/aicom17.html#TagarelliTG04,http://content.iospress.com/articles/ai-communications/aic314 +Rafael Ceballos,A compiled model for faults diagnosis based on different techniques.,2007,20,AI Commun.,1,db/journals/aicom/aicom20.html#CeballosGGV07,http://content.iospress.com/articles/ai-communications/aic392 +Elizabeth Pollitzer,Engineering Cognitive Systems: Japan's Real-World Computing Programme.,1992,5,AI Commun.,2,db/journals/aicom/aicom5.html#Pollitzer92,https://doi.org/10.3233/AIC-1992-5202 +Isabel A. Nepomuceno-Chamorro,Model tree to improve the inference of gene association networks.,2016,29,AI Commun.,4,db/journals/aicom/aicom29.html#Nepomuceno-Chamorro15,https://doi.org/10.3233/AIC-160700 +José Antonio Parejo,MOSES: A Metaheuristic Optimization Software EcoSystem.,2016,29,AI Commun.,1,db/journals/aicom/aicom29.html#Parejo15,https://doi.org/10.3233/AIC-140646 +Gregory M. P. O'Hare,Exploiting Multi-Agent Systems in realizing adaptivity in the Mobile Tourist Domain.,2009,22,AI Commun.,2,db/journals/aicom/aicom22.html#OHareOPT09,https://doi.org/10.3233/AIC-2009-0447 +Miguel Rebollo,Towards building Agreement Spaces using consensus networks.,2016,29,AI Commun.,1,db/journals/aicom/aicom29.html#RebolloPC15,https://doi.org/10.3233/AIC-150667 +Geoff Sutcliffe,The 3rd IJCAR Automated Theorem Proving Competition.,2007,20,AI Commun.,2,db/journals/aicom/aicom20.html#Sutcliffe07,http://content.iospress.com/articles/ai-communications/aic388 +George A. Vouros,Decentralized semantic coordination of interconnected entities via belief propagation.,2015,28,AI Commun.,4,db/journals/aicom/aicom28.html#Vouros15,https://doi.org/10.3233/AIC-140624 +Alain Heuerding,A Logics Workbench.,1996,9,AI Commun.,2,db/journals/aicom/aicom9.html#HeuerdingJSS96,https://doi.org/10.3233/AIC-1996-9203 +Thierry Vidal,Guest editorial: STAIRS 2002 (http: //stairs2002.univ-lyon1.fr/).,2004,17,AI Commun.,1,db/journals/aicom/aicom17.html#VidalL04,http://content.iospress.com/articles/ai-communications/aic304 +John Fox,Understanding intelligent agents: analysis and synthesis.,2003,16,AI Commun.,3,db/journals/aicom/aicom16.html#FoxBG03,http://content.iospress.com/articles/ai-communications/aic284 +Lledó Museros Cabedo,Sketch retrieval based on qualitative shape similarity matching: Towards a tool for teaching geometry to children.,2015,28,AI Commun.,1,db/journals/aicom/aicom28.html#CabedoFSA15,https://doi.org/10.3233/AIC-140614 +Christian Drescher,Symmetry-breaking answer set solving.,2011,24,AI Commun.,2,db/journals/aicom/aicom24.html#DrescherTW11,https://doi.org/10.3233/AIC-2011-0495 +,Calls for Papers / Calendar.,2000,13,AI Commun.,2,db/journals/aicom/aicom13.html#X00a, +Richard J. Wallace,SAC and neighbourhood SAC.,2015,28,AI Commun.,2,db/journals/aicom/aicom28.html#Wallace15,https://doi.org/10.3233/AIC-140635 +Csaba Szepesvári,Efficient approximate planning in continuous space Markovian Decision Problems.,2001,14,AI Commun.,3,db/journals/aicom/aicom14.html#Szepesvari01,http://content.iospress.com/articles/ai-communications/aic244 +Javier M. Moya,Transforming agent-actions into reputational images with probabilistic planning and a fuzzy cognitive map.,2015,28,AI Commun.,4,db/journals/aicom/aicom28.html#MoyaC15,https://doi.org/10.3233/AIC-150676 +Albert Gatt,From data to text in the Neonatal Intensive Care Unit: Using NLG technology for decision support and information management.,2009,22,AI Commun.,3,db/journals/aicom/aicom22.html#GattPRHMMS09,https://doi.org/10.3233/AIC-2009-0453 +Jacobijn Sandberg,Invited Speaker: Bill Clancey.,1991,4,AI Commun.,1,db/journals/aicom/aicom4.html#Sandberg91a,https://doi.org/10.3233/AIC-1991-4102 +Meir Goldenberg,The compressed differential heuristic.,2017,30,AI Commun.,6,db/journals/aicom/aicom30.html#GoldenbergFPSS17,https://doi.org/10.3233/AIC-170743 +Alfonso Emilio Gerevini,Exploiting macro-actions and predicting plan length in planning as satisfiability.,2015,28,AI Commun.,2,db/journals/aicom/aicom28.html#GereviniSV15,https://doi.org/10.3233/AIC-140641 +Cyrus F. Nourani,Slalom Tree Computing - A Tree Computing Theory for Artificial Intelligence.,1996,9,AI Commun.,4,db/journals/aicom/aicom9.html#Nourani96,https://doi.org/10.3233/AIC-1996-9402 +Sambarta Dasgupta,On stability and convergence of the population-dynamics in differential evolution.,2009,22,AI Commun.,1,db/journals/aicom/aicom22.html#DasguptaDBA09,https://doi.org/10.3233/AIC-2009-0440 +Diana Borrego,Diagnostic reasoning with structural analysis and constraint programming for quality improvement of business process management systems.,2013,26,AI Commun.,4,db/journals/aicom/aicom26.html#Borrego13,https://doi.org/10.3233/AIC-130568 +Geoff Sutcliffe,The CADE-25 Automated Theorem Proving system competition - CASC-25.,2016,29,AI Commun.,3,db/journals/aicom/aicom29.html#SutcliffeU15,https://doi.org/10.3233/AIC-150691 +Keith Bell,The role of AI planning as a decision support tool in power substation management.,2009,22,AI Commun.,1,db/journals/aicom/aicom22.html#BellCCFL09,https://doi.org/10.3233/AIC-2009-0443 +,Calendar.,2000,13,AI Commun.,3,db/journals/aicom/aicom13.html#X00b,http://content.iospress.com/articles/ai-communications/aic133ca +Erik Arnold,Artificial Intelligence in the UK: The Alvey Intelligent Knowledge-Based Systems (IKBS) Programme.,1989,2,AI Commun.,1,db/journals/aicom/aicom2.html#Arnold89,https://doi.org/10.3233/AIC-1989-2102 +Nils Bulling,Verifying agents with memory is harder than it seemed.,2010,23,AI Commun.,4,db/journals/aicom/aicom23.html#BullingJ10,https://doi.org/10.3233/AIC-2010-0481 +Arne Løkketangen,Tabu Search - Using the Search Experience to Guide the Search Process. An Introduction with Examples.,1995,8,AI Commun.,2,db/journals/aicom/aicom8.html#Lokketangen95,https://doi.org/10.3233/AIC-1995-8202 +Sergio González-Martín,Development and assessment of the SHARP and RandSHARP algorithms for the arc routing problem.,2012,25,AI Commun.,2,db/journals/aicom/aicom25.html#Gonzalez-MartinJRCMP12,https://doi.org/10.3233/AIC-2012-0522 +Juan J. Flores,Efficient Modeling of Linear Circuits to Perform Qualitative Reasoning Tasks.,2000,13,AI Commun.,2,db/journals/aicom/aicom13.html#FloresC00,http://content.iospress.com/articles/ai-communications/aic212 +Barry Smyth,ECAI 2000.,2001,14,AI Commun.,2,db/journals/aicom/aicom14.html#SmythMF01,http://content.iospress.com/articles/ai-communications/aic238 +Paola Rizzo,Realizing Believable Agents: An Integration of the 'Author-based' and the 'Model-based' Approaches.,2000,13,AI Commun.,3,db/journals/aicom/aicom13.html#Rizzo00,http://content.iospress.com/articles/ai-communications/aic216 +María R. Sierra,Improving heuristic search algorithms by means of pruning by dominance. Application to scheduling problems.,2013,26,AI Commun.,3,db/journals/aicom/aicom26.html#Sierra13,https://doi.org/10.3233/AIC-130562 +Elias Kalapanidas,Feature selection for air quality forecasting: a genetic algorithm approach.,2003,16,AI Commun.,4,db/journals/aicom/aicom16.html#KalapanidasA03,http://content.iospress.com/articles/ai-communications/aic294 +José Manuel Berutich,On the quest for robust technical trading strategies using multi-objective optimization.,2014,27,AI Commun.,4,db/journals/aicom/aicom27.html#BerutichLL14,https://doi.org/10.3233/AIC-140609 +Daniel Borrajo,The Fifth Annual Symposium on Combinatorial Search.,2014,27,AI Commun.,4,db/journals/aicom/aicom27.html#BorrajoFKLLRS14,https://doi.org/10.3233/AIC-140602 +Gerhard Fleischanderl,DiKe - a model-based diagnosis kernel and its application.,2002,15,AI Commun.,1,db/journals/aicom/aicom15.html#FleischanderlHSSW02,http://content.iospress.com/articles/ai-communications/aic255 +María Pérez Catalán,Semantic-based approach for the discovery of Life Sciences web resources driven by rich user's requirements.,2016,29,AI Commun.,1,db/journals/aicom/aicom29.html#Catalan15,https://doi.org/10.3233/AIC-140649 +Christine Task,Investigating the solution space for online iterative explanation in goal reasoning agents.,2018,31,AI Commun.,2,db/journals/aicom/aicom31.html#TaskWMA18,https://doi.org/10.3233/AIC-180759 +Francesco Buccafurri,On the Expressive Power of Ordered Logic.,1996,9,AI Commun.,1,db/journals/aicom/aicom9.html#BuccafuriLS96,https://doi.org/10.3233/AIC-1996-9101 +Aïda Valls,Thesis: ClusDM: a Multiple Criteria Decision Method for heterogeneous data sets.,2003,16,AI Commun.,2,db/journals/aicom/aicom16.html#Valls03,http://content.iospress.com/articles/ai-communications/aic280 +Angel Jesus Varela-Vaca,OPBUS: A framework for improving the dependability of risk-aware business processes.,2016,29,AI Commun.,1,db/journals/aicom/aicom29.html#Varela-Vaca15,https://doi.org/10.3233/AIC-140651 +Darian Reyes Fernández de Bulnes,High-Level Synthesis through metaheuristics and LUTs optimization in FPGA devices.,2017,30,AI Commun.,2,db/journals/aicom/aicom30.html#BulnesDMT17,https://doi.org/10.3233/AIC-170727 +Antonia Hadjimichael,Do machine learning methods used in data mining enhance the potential of decision support systems? A review for the urban water sector.,2016,29,AI Commun.,6,db/journals/aicom/aicom29.html#HadjimichaelCC16,https://doi.org/10.3233/AIC-160714 +Ronald L. Westra,The pattern memory of gene-protein networks.,2007,20,AI Commun.,4,db/journals/aicom/aicom20.html#WestraHBGT07,http://content.iospress.com/articles/ai-communications/aic409 +Moser Silva Fagundes,Using Normative Markov Decision Processes for evaluating electronic contracts.,2012,25,AI Commun.,1,db/journals/aicom/aicom25.html#FagundesOLM12,https://doi.org/10.3233/AIC-2012-0511 +Jarad Cannon,Real-time heuristic search for motion planning with dynamic obstacles.,2014,27,AI Commun.,4,db/journals/aicom/aicom27.html#CannonRR14,https://doi.org/10.3233/AIC-140604 +Mehdi Sagheb-Tehrani,Expert Systems in Sweden.,1990,3,AI Commun.,4,db/journals/aicom/aicom3.html#Sagheb-Tehrani90,https://doi.org/10.3233/AIC-1990-3406 +D. D. Geetha,Agent based trusted neighbor identification in Wireless Sensor Networks.,2015,28,AI Commun.,4,db/journals/aicom/aicom28.html#GeethaNB15,https://doi.org/10.3233/AIC-150673 +Ruben Martins,Parallel search for maximum satisfiability.,2012,25,AI Commun.,2,db/journals/aicom/aicom25.html#MartinsML12,https://doi.org/10.3233/AIC-2012-0517 +David Sánchez 0001,Pattern-based automatic taxonomy learning from the Web.,2008,21,AI Commun.,1,db/journals/aicom/aicom21.html#SanchezM08,http://content.iospress.com/articles/ai-communications/aic417 +Cèsar Ferri Ramirez,Multi-paradigm learning of declarative models.,2004,17,AI Commun.,2,db/journals/aicom/aicom17.html#Ramirez04,http://content.iospress.com/articles/ai-communications/aic306 +Daniel Schneider,The Programming Language Scheme.,1987,0,AI Commun.,1,db/journals/aicom/aicom0.html#Schneider87,https://doi.org/10.3233/AIC-1987-0105 +Hans-Werner Kelbassa,Optimal refinement of rule bases.,2004,17,AI Commun.,3,db/journals/aicom/aicom17.html#Kelbassa04,http://content.iospress.com/articles/ai-communications/aic315 +Jacobijn Sandberg,In the Office of Brice Lepape: A view on Research and Development in Information Technology at the European Level.,1991,4,AI Commun.,1,db/journals/aicom/aicom4.html#Sandberg91b,https://doi.org/10.3233/AIC-1991-4104 +Ricardo Gamelas Sousa,The data replication method for the classification with reject option.,2013,26,AI Commun.,3,db/journals/aicom/aicom26.html#SousaC13,https://doi.org/10.3233/AIC-130566 +Dietmar Jannach,Fast computation of query relaxations for knowledge-based recommenders.,2009,22,AI Commun.,4,db/journals/aicom/aicom22.html#Jannach09,https://doi.org/10.3233/AIC-2009-0454 +Marcos Aurélio Domingues,Exploiting multidimensional data for web site automation.,2011,24,AI Commun.,3,db/journals/aicom/aicom24.html#Domingues11,https://doi.org/10.3233/AIC-2011-0499 +Verónica Dahl,What the Study of Language Can Contribute to AI.,1993,6,AI Commun.,2,db/journals/aicom/aicom6.html#Dahl93,https://doi.org/10.3233/AIC-1993-6202 +Alicia Troncoso Lora,Advances in optimization and prediction techniques: Real-world applications.,2006,19,AI Commun.,3,db/journals/aicom/aicom19.html#Lora06,http://content.iospress.com/articles/ai-communications/aic372 +Leander Schietgat,Graph-based data mining for biological applications.,2011,24,AI Commun.,1,db/journals/aicom/aicom24.html#Schietgat11,https://doi.org/10.3233/AIC-2010-0482 +Giorgos Flouris,On belief change in ontology evolution.,2006,19,AI Commun.,4,db/journals/aicom/aicom19.html#Flouris06,http://content.iospress.com/articles/ai-communications/aic385 +Elliot Soloway,Panel at AAAI-90: Why Hasn't AI Had More of an Impact on Software Engineering.,1990,3,AI Commun.,4,db/journals/aicom/aicom3.html#Soloway90,https://doi.org/10.3233/AIC-1990-3401 +Andreas Herzig,How to share knowledge by gossiping.,2017,30,AI Commun.,1,db/journals/aicom/aicom30.html#HerzigM17,https://doi.org/10.3233/AIC-170723 +Bart de Boer,Artificial Intelligence Research in Belgium and The Netherlands.,2000,13,AI Commun.,1,db/journals/aicom/aicom13.html#BoerP00,http://content.iospress.com/articles/ai-communications/aic204 +Lluís Vila,A Survey on Temporal Reasoning in Artificial Intelligence.,1994,7,AI Commun.,1,db/journals/aicom/aicom7.html#Vila94,https://doi.org/10.3233/AIC-1994-7102 +Holger Billhardt,Coordinating open fleets. A taxi assignment example.,2017,30,AI Commun.,1,db/journals/aicom/aicom30.html#BillhardtFLOJPH17,https://doi.org/10.3233/AIC-170722 +Florentino Fernández Riverola,Forecasting red tides using an hybrid neuro-symbolic system.,2003,16,AI Commun.,4,db/journals/aicom/aicom16.html#Fdez-RiverolaC03,http://content.iospress.com/articles/ai-communications/aic293 +Christine Largouët,Improving the landcover classification using domain knowledge.,2001,14,AI Commun.,1,db/journals/aicom/aicom14.html#LargouetC01,http://content.iospress.com/articles/ai-communications/aic226 +Sharad Gupta,INNAMP: An incremental neural network architecture with monitor perceptron.,2018,31,AI Commun.,4,db/journals/aicom/aicom31.html#GuptaS18,https://doi.org/10.3233/AIC-180767 +Norberto Díaz-Díaz,Genes functional coherence based on actual biological knowledge.,2013,26,AI Commun.,2,db/journals/aicom/aicom26.html#Diaz-Diaz13,https://doi.org/10.3233/AIC-130553 +Mihaela Oprea,A case study of knowledge modelling in an air pollution control decision support system.,2005,18,AI Commun.,4,db/journals/aicom/aicom18.html#Oprea05,http://content.iospress.com/articles/ai-communications/aic351 +Pascual Julián Iranzo,Thesis: Partial evaluation of lazy functional logic programs.,2003,16,AI Commun.,2,db/journals/aicom/aicom16.html#Iranzo03,http://content.iospress.com/articles/ai-communications/aic273 +Jesús S. Aguilar-Ruiz,Removing examples and discovering Hierarchical Decision Rules: With Evolutionary Algorithms.,2001,14,AI Commun.,4,db/journals/aicom/aicom14.html#Aguilar-Ruiz01,http://content.iospress.com/articles/ai-communications/aic250 +William R. Murray,Control for Intelligent Tutoring Systems: A Blackboard-based Dynamic Instructional Planer.,1989,2,AI Commun.,2,db/journals/aicom/aicom2.html#Murray89,https://doi.org/10.3233/AIC-1989-2201 +Jürgen Dix,The Logic Programming Paradigm.,1998,11,AI Commun.,2,db/journals/aicom/aicom11.html#Dix98,http://content.iospress.com/articles/ai-communications/aic151 +Antonio Garrido Tejero,Domain-independent temporal planning in a planning-graph-based approach.,2006,19,AI Commun.,4,db/journals/aicom/aicom19.html#GarridoO06,http://content.iospress.com/articles/ai-communications/aic380 +Francisco Martínez-álvarez,Clustering preprocessing to improve time series forecasting.,2011,24,AI Commun.,1,db/journals/aicom/aicom24.html#Martinez-Alvarez11,https://doi.org/10.3233/AIC-2010-0485 +Javier Vázquez-Salceda,Normative Agents in Health Care: Uses and challenges.,2005,18,AI Commun.,3,db/journals/aicom/aicom18.html#Vazquez-Salceda05,http://content.iospress.com/articles/ai-communications/aic345 +Javier Vázquez-Salceda,The organ allocation process: a natural extension of the Carrel Agent-Mediated Electronic Institution.,2003,16,AI Commun.,3,db/journals/aicom/aicom16.html#Vazquez-SalcedaCPLC03,http://content.iospress.com/articles/ai-communications/aic285 +Clemente Rubio-Manzano,Design and implementation of a fuzzy logic programming language using weak unification.,2012,25,AI Commun.,4,db/journals/aicom/aicom25.html#Rubio-Manzano12,https://doi.org/10.3233/AIC-2012-0514 +Peter Van den Besselaar,Research Performance in Artificial Intelligence and Robotics: An International Comparison.,1993,6,AI Commun.,2,db/journals/aicom/aicom6.html#BesselaarL93,https://doi.org/10.3233/AIC-1993-6201 +Guy Alain Narboni,On rule systems whose consistency can be locally maintained.,2013,26,AI Commun.,1,db/journals/aicom/aicom26.html#Narboni13,https://doi.org/10.3233/AIC-2012-0546 +Gianluca Bontempi,A Model Selection Approach for Local Learning.,2000,13,AI Commun.,1,db/journals/aicom/aicom13.html#BontempiBB00,http://content.iospress.com/articles/ai-communications/aic197 +Gabriela Calderón-Espinoza,Dynamic diagnosis based on interval analytical redundancy relations and signs of the symptoms.,2007,20,AI Commun.,1,db/journals/aicom/aicom20.html#Calderon-EspinozaAVG07,http://content.iospress.com/articles/ai-communications/aic391 +Federico Divina,Evolutionary concept learning in First Order Logic: An overview.,2006,19,AI Commun.,1,db/journals/aicom/aicom19.html#Divina06,http://content.iospress.com/articles/ai-communications/aic357 +Marc de la Asunción,SIADEX: An interactive knowledge-based planner for decision support in forest fire fighting.,2005,18,AI Commun.,4,db/journals/aicom/aicom18.html#AsuncionCFGGP05,http://content.iospress.com/articles/ai-communications/aic348 +Mauro Javier Gómez Lucero,Formalization of argument accrual: Acceptability semantics and dialectical proof procedure.,2013,26,AI Commun.,4,db/journals/aicom/aicom26.html#Lucero13,https://doi.org/10.3233/AIC-130569 +James L. Caldwell,Generalized support and formal development of constraint propagators.,2017,30,AI Commun.,5,db/journals/aicom/aicom30.html#CaldwellGN17,https://doi.org/10.3233/AIC-170740 +Ramón López de Mántaras,Comparing Information-Theoretic Attribute Selection Measures: A Statistical Approach.,1998,11,AI Commun.,2,db/journals/aicom/aicom11.html#MantarasCG98,http://content.iospress.com/articles/ai-communications/aic148 +Claudio Castellini,Automated reasoning in quantified modal and temporal logics.,2006,19,AI Commun.,2,db/journals/aicom/aicom19.html#Castellini06,http://content.iospress.com/articles/ai-communications/aic365 +Huang Guoxing,AI Research in the People's Republic of China.,1995,8,AI Commun.,2,db/journals/aicom/aicom8.html#GuoxingM95,https://doi.org/10.3233/AIC-1995-8203 +Danny De Schreye,Project Report on LP+: A Second Generation Logic Programming Language.,2000,13,AI Commun.,1,db/journals/aicom/aicom13.html#SchreyeBDDJM00,http://content.iospress.com/articles/ai-communications/aic199 +Alvaro Cepero,Automatic non-verbal communication skills analysis: A quantitative evaluation.,2015,28,AI Commun.,1,db/journals/aicom/aicom28.html#CeperoCE15,https://doi.org/10.3233/AIC-140617 +Dangdang Niu,New stochastic local search approaches for computing preferred extensions of abstract argumentation.,2018,31,AI Commun.,4,db/journals/aicom/aicom31.html#NiuLL18,https://doi.org/10.3233/AIC-180769 +Edwin Cleton,Reply to William J. Clancey.,1992,5,AI Commun.,4,db/journals/aicom/aicom5.html#Cleton92,https://doi.org/10.3233/AIC-1992-5404 +Brian H. Mayoh,"Review of ""Intelligent Behaviour in Animals and Robots"" by David McFarland and Thomas Bvsser.",1997,10,AI Commun.,1,db/journals/aicom/aicom10.html#Mayoh97,http://content.iospress.com/articles/ai-communications/aic114 +Beatriz López,Knowledge Based Systems Validation: A State of the Art.,1990,3,AI Commun.,2,db/journals/aicom/aicom3.html#LopezMP90,https://doi.org/10.3233/AIC-1990-3204 +Nicolas B. Ponieman,Mobility and sociocultural events in mobile phone data records.,2016,29,AI Commun.,1,db/journals/aicom/aicom29.html#PoniemanSMTZS15,https://doi.org/10.3233/AIC-150687 +Lukás Chrpa,On the completeness of replacing primitive actions with macro-actions and its generalization to planning operators and macro-operators.,2016,29,AI Commun.,1,db/journals/aicom/aicom29.html#ChrpaMO15,https://doi.org/10.3233/AIC-150679 +Jacobo Rouces,Addressing structural and linguistic heterogeneity in the Web.,2018,31,AI Commun.,1,db/journals/aicom/aicom31.html#RoucesMH18,https://doi.org/10.3233/AIC-170745 +Oscar Sapena,FLAP: Applying least-commitment in forward-chaining planning.,2015,28,AI Commun.,1,db/journals/aicom/aicom28.html#SapenaOT15,https://doi.org/10.3233/AIC-140613 +Kristina Höök,Evaluating Users' Experience of a Character-enhanced Information Space.,2000,13,AI Commun.,3,db/journals/aicom/aicom13.html#HookPS00,http://content.iospress.com/articles/ai-communications/aic219 +Maurice Bruynooghe,Benelog.,2000,13,AI Commun.,1,db/journals/aicom/aicom13.html#Bruynooghe00,http://content.iospress.com/articles/ai-communications/aic202 +Victoria Nebot Romero,Scalable methods to analyze Semantic Web data.,2016,29,AI Commun.,3,db/journals/aicom/aicom29.html#Romero15,https://doi.org/10.3233/AIC-150669 +Joakim Eriksson,Evolution of a supply chain management game for the Trading Agent Competition.,2006,19,AI Commun.,1,db/journals/aicom/aicom19.html#ErikssonFJ06,http://content.iospress.com/articles/ai-communications/aic355 +Nello Cristianini,On the current paradigm in artificial intelligence.,2014,27,AI Commun.,1,db/journals/aicom/aicom27.html#Cristianini14,https://doi.org/10.3233/AIC-130582 +Hojjat Emami,A semantic approach to cross-document person profiling in Web.,2017,30,AI Commun.,6,db/journals/aicom/aicom30.html#EmamiSB17,https://doi.org/10.3233/AIC-170742 +Marie Anne Eurie Forio,Analysing the effects of water quality on the occurrence of freshwater macroinvertebrate taxa among tropical river basins from different continents.,2016,29,AI Commun.,6,db/journals/aicom/aicom29.html#ForioEDMAHBG16,https://doi.org/10.3233/AIC-160712 +Maarten van Someren,Analogy and Induction as Inference.,1990,3,AI Commun.,2,db/journals/aicom/aicom3.html#Someren90,https://doi.org/10.3233/AIC-1990-3208 +Adam Pease,Sigma: An integrated development environment for formal ontology.,2013,26,AI Commun.,1,db/journals/aicom/aicom26.html#PeaseB13,https://doi.org/10.3233/AIC-120549 +Zahy Bnaya,Repeated-task Canadian Traveler Problem.,2015,28,AI Commun.,3,db/journals/aicom/aicom28.html#BnayaFFMS15,https://doi.org/10.3233/AIC-150665 +Carlos Müller,On the automated analysis of WS-Agreement documents: Applications to the processes of creating and monitoring agreements.,2016,29,AI Commun.,1,db/journals/aicom/aicom29.html#Muller15,https://doi.org/10.3233/AIC-140648 +Jürgen Dix,Detailed Report on the First LP and NMR Retreat.,1995,8,AI Commun.,1,db/journals/aicom/aicom8.html#Dix95,https://doi.org/10.3233/AIC-1995-8106 +Federico Divina,Relational Inductive Learning with a Hybrid Evolutionary Algorithm.,2005,18,AI Commun.,1,db/journals/aicom/aicom18.html#Divina05,http://content.iospress.com/articles/ai-communications/aic332 +Kostas Stergiou,Heuristics for dynamically adapting propagation in constraint satisfaction problems.,2009,22,AI Commun.,3,db/journals/aicom/aicom22.html#Stergiou09,https://doi.org/10.3233/AIC-2009-0450 +Alexey Ignatiev,Maximal falsifiability.,2016,29,AI Commun.,2,db/journals/aicom/aicom29.html#IgnatievMPM16,https://doi.org/10.3233/AIC-150685 +Klaus-Dieter Althoff,Relating Case-Based Problem Solving and Learning Methods to Task and Domain Characteristics: Towards an Analytic Framework.,1996,9,AI Commun.,3,db/journals/aicom/aicom9.html#AlthoffA96,https://doi.org/10.3233/AIC-1996-9303 +Thomas Ragg,Bayesian learning and evolutionary parameter optimization.,2002,15,AI Commun.,1,db/journals/aicom/aicom15.html#Ragg02,http://content.iospress.com/articles/ai-communications/aic254 +Martin Gebser,An incremental answer set programming based system for finite model computation.,2011,24,AI Commun.,2,db/journals/aicom/aicom24.html#GebserSS11,https://doi.org/10.3233/AIC-2011-0496 +Agapito Ledezma,OMBO: An opponent modeling approach.,2009,22,AI Commun.,1,db/journals/aicom/aicom22.html#LedezmaASB09,https://doi.org/10.3233/AIC-2009-0442 +Alan Bundy,European collaboration on automated reasoning.,2014,27,AI Commun.,1,db/journals/aicom/aicom27.html#Bundy14,https://doi.org/10.3233/AIC-130584 +Bert Bredeweg,The Ants' Garden: Complex interactions between populations and the scalability of qualitative models.,2005,18,AI Commun.,4,db/journals/aicom/aicom18.html#BredewegS05,http://content.iospress.com/articles/ai-communications/aic352 +Roy Leitch,Coping with Complexity in Physical System Modelling.,1990,3,AI Commun.,2,db/journals/aicom/aicom3.html#LeitchWQ90,https://doi.org/10.3233/AIC-1990-3203 +Derek Doran,Social media enabled human sensing for smart cities.,2016,29,AI Commun.,1,db/journals/aicom/aicom29.html#DoranSGD15,https://doi.org/10.3233/AIC-150683 +Gianluca Torta,On the role of modeling causal independence for system model compilation with OBDDs.,2007,20,AI Commun.,1,db/journals/aicom/aicom20.html#TortaT07,http://content.iospress.com/articles/ai-communications/395 +Jorge Rodas,Knowledge discovery in repeated and very short serial measures with a blocking factor.,2004,17,AI Commun.,3,db/journals/aicom/aicom17.html#Rodas04,http://content.iospress.com/articles/ai-communications/aic317 +Alberto Freitas,Building cost-sensitive decision trees for medical applications.,2011,24,AI Commun.,3,db/journals/aicom/aicom24.html#Freitas11,https://doi.org/10.3233/AIC-2011-0490 +Paula Rodríguez,An educational recommender system based on argumentation theory.,2017,30,AI Commun.,1,db/journals/aicom/aicom30.html#RodriguezHPPDJ17,https://doi.org/10.3233/AIC-170724 +Wolfgang Bibel,ECCAI and the European Malaise.,1987,0,AI Commun.,1,db/journals/aicom/aicom0.html#Bibel87,https://doi.org/10.3233/AIC-1987-0103 +Franz Wotawa,Deriving qualitative rules from neural networks - a case study for ozone forecasting.,2001,14,AI Commun.,1,db/journals/aicom/aicom14.html#WotawaW01,http://content.iospress.com/articles/ai-communications/aic227 +Ivan López-Arévalo,Redesign support framework for complex technical processes (thesis abstract).,2007,20,AI Commun.,2,db/journals/aicom/aicom20.html#Lopez-Arevalo07,http://content.iospress.com/articles/ai-communications/aic387 +Stephan Gspandl,Maintaining consistency in a robot's knowledge-base via diagnostic reasoning.,2013,26,AI Commun.,1,db/journals/aicom/aicom26.html#GspandlPRS13,https://doi.org/10.3233/AIC-2012-0544 +Rivka Oxman,CBR in Design.,1996,9,AI Commun.,3,db/journals/aicom/aicom9.html#OxmanV96,https://doi.org/10.3233/AIC-1996-9304 +Kevin Warwick,Assumption of knowledge and the Chinese Room in Turing test interrogation.,2014,27,AI Commun.,3,db/journals/aicom/aicom27.html#WarwickS14,https://doi.org/10.3233/AIC-140601 +Roberto Carbone,LTL model-checking for security protocols.,2011,24,AI Commun.,3,db/journals/aicom/aicom24.html#Carbone11,https://doi.org/10.3233/AIC-2010-0489 +João Gama,Thesis: Inductive learning classification algorithms.,2000,13,AI Commun.,2,db/journals/aicom/aicom13.html#Gama00,http://content.iospress.com/articles/ai-communications/aic206 +Erik Sandewall,A perspective on the early history of artificial intelligence in Europe.,2014,27,AI Commun.,1,db/journals/aicom/aicom27.html#Sandewall14,https://doi.org/10.3233/AIC-130585 +Jordi Sabater-Mir,Preface.,2010,23,AI Commun.,4,db/journals/aicom/aicom23.html#Sabater-MirD10,https://doi.org/10.3233/AIC-2010-0475 +Siddharth Srivastava,Foundations and applications of generalized planning.,2011,24,AI Commun.,4,db/journals/aicom/aicom24.html#Srivastava11,https://doi.org/10.3233/AIC-2011-0508 +Matthias Gutknecht,An Approach to Integrating Expert Systems with Connectionist Networks.,1990,3,AI Commun.,3,db/journals/aicom/aicom3.html#GutknechtP90,https://doi.org/10.3233/AIC-1990-3303 +Manuel Herrera,SAX-quantile based multiresolution approach for finding heatwave events in summer temperature time series.,2016,29,AI Commun.,6,db/journals/aicom/aicom29.html#HerreraFCA16,https://doi.org/10.3233/AIC-160716 +Patrik Floréen,Compiling Object Declarations into Connectionist Networks.,1990,3,AI Commun.,4,db/journals/aicom/aicom3.html#FloreenMOT90,https://doi.org/10.3233/AIC-1990-3402 +José Hernández-Orallo,Thesis: Computational measures of information gain and reinforcement in inference processes.,2000,13,AI Commun.,1,db/journals/aicom/aicom13.html#Hernandez-Orallo00,http://content.iospress.com/articles/ai-communications/aic195 +Tomasz Kajdanowicz,Learning in unlabeled networks - An active learning and inference approach.,2016,29,AI Commun.,1,db/journals/aicom/aicom29.html#KajdanowiczMMK15,https://doi.org/10.3233/AIC-150686 +Angi Voß,Competence Assessment in Configuration Tasks.,1990,3,AI Commun.,3,db/journals/aicom/aicom3.html#VossKDL90,https://doi.org/10.3233/AIC-1990-3301 +Teresa Alsinet,Solving the Routing and Wavelength Assignment problem with conflict-driven ASP solvers.,2015,28,AI Commun.,1,db/journals/aicom/aicom28.html#AlsinetBFGM15,https://doi.org/10.3233/AIC-140619 +Albert Prat,A Separable Architecture for the Construction of Knowledge Based Front Ends.,1992,5,AI Commun.,4,db/journals/aicom/aicom5.html#PratCLFGS92,https://doi.org/10.3233/AIC-1992-5402 +Floor Verdenius,Applications of Inductive Learning Techniques: A Survey in the Netherlands.,1997,10,AI Commun.,1,db/journals/aicom/aicom10.html#VerdeniusS97,http://content.iospress.com/articles/ai-communications/aic105 +Vidal Alcázar,Using random sampling trees for automated planning.,2015,28,AI Commun.,4,db/journals/aicom/aicom28.html#AlcazarFBV15,https://doi.org/10.3233/AIC-150658 +Juan Carlos Augusto,A Temporal Argumentative System.,1999,12,AI Commun.,4,db/journals/aicom/aicom12.html#AugustoS99,http://content.iospress.com/articles/ai-communications/aic192 +Ouiem Bchir,Verbal offense detection in social network comments using novel fusion approach.,2015,28,AI Commun.,4,db/journals/aicom/aicom28.html#BchirI15,https://doi.org/10.3233/AIC-150674 +E. Poupaert,Simulated Annealing with Estimated Temperature.,2000,13,AI Commun.,1,db/journals/aicom/aicom13.html#PoupaertD00,http://content.iospress.com/articles/ai-communications/aic196 +Toni Mancini,Experimental evaluation of algorithms for solving problems with combinatorial explosion.,2015,28,AI Commun.,2,db/journals/aicom/aicom28.html#ManciniO15,https://doi.org/10.3233/AIC-140655 +Irene Barba 0001,Constraint-based planning and scheduling techniques for the optimized management of business processes.,2013,26,AI Commun.,2,db/journals/aicom/aicom26.html#Barba13,https://doi.org/10.3233/AIC-130554 +Fernando de la Prieta,Real-time agreement and fulfilment of SLAs in Cloud Computing environments.,2015,28,AI Commun.,3,db/journals/aicom/aicom28.html#PrietaBCRBJ15,https://doi.org/10.3233/AIC-140626 +Peter A. Flach,Database Dependency Discovery: A Machine Learning Approach.,1999,12,AI Commun.,3,db/journals/aicom/aicom12.html#FlachS99,http://content.iospress.com/articles/ai-communications/aic182 +Gianfranco Lamperti,From diagnosis of active systems to incremental determinization of finite acyclic automata.,2013,26,AI Commun.,4,db/journals/aicom/aicom26.html#LampertiS13,https://doi.org/10.3233/AIC-130574 +Zhang Kai,Particle swarm optimization algorithm with multi methods argument.,2016,29,AI Commun.,5,db/journals/aicom/aicom29.html#KaiSRJ16,https://doi.org/10.3233/AIC-160706 +Boi Faltings,Working Group in Model-Based Design and Reasoning. Part II: Design.,1996,9,AI Commun.,2,db/journals/aicom/aicom9.html#Faltings96a,https://doi.org/10.3233/AIC-1996-9205 +Pelayo Nuño Huergo,Design and evaluation of an autonomic platform for the development of synchronous e-learning activities.,2016,29,AI Commun.,2,db/journals/aicom/aicom29.html#HuergoC16,https://doi.org/10.3233/AIC-150663 +Josep Argelich,Max-SAT formalisms with hard and soft constraints.,2011,24,AI Commun.,1,db/journals/aicom/aicom24.html#Argelich11,https://doi.org/10.3233/AIC-2010-0488 +José María Valls,LRBNN: A Lazy Radial Basis Neural Network model.,2007,20,AI Commun.,2,db/journals/aicom/aicom20.html#VallsGI07,http://content.iospress.com/articles/ai-communications/aic397 +Marcello Balduccini,Learning and using domain-specific heuristics in ASP solvers.,2011,24,AI Commun.,2,db/journals/aicom/aicom24.html#Balduccini11,https://doi.org/10.3233/AIC-2011-0493 +,Thesis summaries.,2014,27,AI Commun.,2,db/journals/aicom/aicom27.html#SimariSMV14,https://doi.org/10.3233/AIC-130590 +Helen Kwong,Detection of imperative and declarative question-answer pairs in email conversations.,2012,25,AI Commun.,4,db/journals/aicom/aicom25.html#KwongY12,https://doi.org/10.3233/AIC-2012-0516 +Lorenza Saitta,Representation Change in Machine Learning.,1996,9,AI Commun.,1,db/journals/aicom/aicom9.html#Saitta96,https://doi.org/10.3233/AIC-1996-9102 +Johannes Gärtner,Rota: a research project on algorithms for workforce scheduling and shift design optimization.,2001,14,AI Commun.,2,db/journals/aicom/aicom14.html#GartnerMS01,http://content.iospress.com/articles/ai-communications/aic240 +Ulises Cortés,Assistive technologies for the disabled and for the new generation of senior citizens: the e-Tools architecture.,2003,16,AI Commun.,3,db/journals/aicom/aicom16.html#CortesAVUCLSC03,http://content.iospress.com/articles/ai-communications/aic288 +Sneha Chaudhari,An entity graph based Recommender System.,2017,30,AI Commun.,2,db/journals/aicom/aicom30.html#ChaudhariAM17,https://doi.org/10.3233/AIC-170728 +Sigmund Akselsen,Knowledge-Based Systems for Commercial Line Insurance. An Exciting Application of AI-Techniques in the Service Field.,1989,2,AI Commun.,2,db/journals/aicom/aicom2.html#AkselsenHR89,https://doi.org/10.3233/AIC-1989-2205 +Aviad Elyashar,Guided socialbots: Infiltrating the social networks of specific organizations' employees.,2016,29,AI Commun.,1,db/journals/aicom/aicom29.html#ElyasharFKE15,https://doi.org/10.3233/AIC-140650 +Marc Domenig,Concepts and Tools for Lexical Knowledge Acquisition.,1996,9,AI Commun.,2,db/journals/aicom/aicom9.html#DomenigH96,https://doi.org/10.3233/AIC-1996-9207 +Muhammad Rizwan Saeed,ASQFor: Automatic SPARQL query formulation for the non-expert.,2018,31,AI Commun.,1,db/journals/aicom/aicom31.html#SaeedCP18,https://doi.org/10.3233/AIC-170746 +Federica Cena,Integrating heterogeneous adaptation techniques to build a flexible and usable mobile tourist guide.,2006,19,AI Commun.,4,db/journals/aicom/aicom19.html#CenaCGGLMT06,http://content.iospress.com/articles/ai-communications/aic386 +Bradford Starkie,Progressing the state-of-the-art in grammatical inference by competition: The Omphalos Context-Free Language Learning Competition.,2005,18,AI Commun.,2,db/journals/aicom/aicom18.html#StarkieCZ05,http://content.iospress.com/articles/ai-communications/aic337 +Jacobijn Sandberg,Interviews on AI and Education: Jan Elshout.,1992,5,AI Commun.,4,db/journals/aicom/aicom5.html#SandbergB92c,https://doi.org/10.3233/AIC-1992-5403 +Yan Zhang 0003,Implementing prioritized logic programming.,2001,14,AI Commun.,4,db/journals/aicom/aicom14.html#ZhangWB01,http://content.iospress.com/articles/ai-communications/aic245 +Harjot Kaur,Dynamics of Artificial Agent Societies: A survey and an agent migration perspective.,2015,28,AI Commun.,3,db/journals/aicom/aicom28.html#KaurK15,https://doi.org/10.3233/AIC-150664 +Olli Kamarainen,A framework for constructing complete algorithms based on local search.,2007,20,AI Commun.,3,db/journals/aicom/aicom20.html#KamarainenS07,http://content.iospress.com/articles/ai-communications/aic401 +Esra Erdem 0001,A systematic analysis of levels of integration between high-level task planning and low-level feasibility checks.,2016,29,AI Commun.,2,db/journals/aicom/aicom29.html#ErdemPS16,https://doi.org/10.3233/AIC-150697 +Karina Gibert,Special Issue on Environmental Data Mining.,2016,29,AI Commun.,6,db/journals/aicom/aicom29.html#Gibert16,https://doi.org/10.3233/AIC-160718 +Sandra García-Rodríguez,Extended mean-variance model for reliable evolutionary portfolio optimization.,2014,27,AI Commun.,3,db/journals/aicom/aicom27.html#GarciaQGI14,https://doi.org/10.3233/AIC-140600 +Ivo Düntsch,Construction of Boolean contact algebras.,2004,17,AI Commun.,4,db/journals/aicom/aicom17.html#DuntschW04,http://content.iospress.com/articles/ai-communications/aic322 +Simone Gabbriellini,Microdebates: Structuring debates without a structuring tool.,2016,29,AI Commun.,1,db/journals/aicom/aicom29.html#GabbrielliniT15,https://doi.org/10.3233/AIC-150690 +Martin Gebser,Potassco: The Potsdam Answer Set Solving Collection.,2011,24,AI Commun.,2,db/journals/aicom/aicom24.html#GebserKKOSS11,https://doi.org/10.3233/AIC-2011-0491 +Geoff Sutcliffe,The 5th IJCAR automated theorem proving system competition - CASC-J5.,2011,24,AI Commun.,1,db/journals/aicom/aicom24.html#Sutcliffe11,https://doi.org/10.3233/AIC-2010-0483 +Xiangfu Zhao,On-line diagnosis of discrete event systems with two successive temporal windows.,2008,21,AI Commun.,4,db/journals/aicom/aicom21.html#ZhaoO08,https://doi.org/10.3233/AIC-2008-0439 +Geoff Sutcliffe,The CADE-21 automated theorem proving system competition.,2008,21,AI Commun.,1,db/journals/aicom/aicom21.html#Sutcliffe08,http://content.iospress.com/articles/ai-communications/aic423 +Antonio J. Tallón-Ballesteros,Contemporary training methodologies based on evolutionary artificial neural networks with product and sigmoid neurons for classification.,2016,29,AI Commun.,3,db/journals/aicom/aicom29.html#Tallon-Ballesteros15,https://doi.org/10.3233/AIC-150681 +Michael A. McRobbie,Artificial Intelligence: Perspectives and Predictions.,1988,1,AI Commun.,4,db/journals/aicom/aicom1.html#McRobbieS88,https://doi.org/10.3233/AIC-1988-1403 +Jacobijn Sandberg,Interviews on AI and Education: Beverly Woolf and Roger Schank.,1992,5,AI Commun.,3,db/journals/aicom/aicom5.html#SandbergB92b,https://doi.org/10.3233/AIC-1992-5303 +Xiaofang Wang,Constraint-based methods for scheduling discretionary services.,2011,24,AI Commun.,1,db/journals/aicom/aicom24.html#WangPSO11,https://doi.org/10.3233/AIC-2010-0486 +Luís Torgo,Thesis: Inductive learning to tree-based regression models.,2000,13,AI Commun.,2,db/journals/aicom/aicom13.html#Torgo00,http://content.iospress.com/articles/ai-communications/aic210 +éric Rutten,Temporal Planner = Nonlinear Planner + Time Map Manager.,1993,6,AI Commun.,1,db/journals/aicom/aicom6.html#RuttenH93,https://doi.org/10.3233/AIC-1993-6102 +Stefan Kramer 0001,Thesis: Relational learning vs. propositionalization.,2000,13,AI Commun.,4,db/journals/aicom/aicom13.html#Kramer00,http://content.iospress.com/articles/ai-communications/aic222 +Richard J. Wallace,Neighbourhood SAC: Extensions and new algorithms.,2016,29,AI Commun.,2,db/journals/aicom/aicom29.html#Wallace16,https://doi.org/10.3233/AIC-150696 +Juan A. Rodríguez-Aguilar,Towards a Test-Bed for Trading Agents in Electronic Auction Markets.,1998,11,AI Commun.,1,db/journals/aicom/aicom11.html#Rodriguez-AguilarMNGS98,http://content.iospress.com/articles/ai-communications/aic146 +Alan Bundy,IJCAI Policy on Multiple Publication of Papers Revisited.,1990,3,AI Commun.,3,db/journals/aicom/aicom3.html#Bundy90,https://doi.org/10.3233/AIC-1990-3302 +Miguel A. González 0001,An advanced scatter search algorithm for solving job shops with sequence dependent and non-anticipatory setups.,2015,28,AI Commun.,2,db/journals/aicom/aicom28.html#GonzalezVVR15,https://doi.org/10.3233/AIC-140631 +Jirí Wiedermann,The emergent computational potential of evolving artificial living systems.,2002,15,AI Commun.,4,db/journals/aicom/aicom15.html#WiedermannL02,http://content.iospress.com/articles/ai-communications/aic269 +Ulises Cortés,Binding Environmental Sciences and Artificial Intelligence on ECAI'98.,1999,12,AI Commun.,4,db/journals/aicom/aicom12.html#CortesRR99,http://content.iospress.com/articles/ai-communications/aic187 +Simona Perri,Parametric connectives in Disjunctive Logic Programming.,2004,17,AI Commun.,2,db/journals/aicom/aicom17.html#PerriL04,http://content.iospress.com/articles/ai-communications/aic308 +Daniel Borrajo,The Symposium on Combinatorial Search.,2012,25,AI Commun.,3,db/journals/aicom/aicom25.html#BorrajoLL12,https://doi.org/10.3233/AIC-2012-0530 +Antonio Moreno,Guest editorial: Agents applied in health care.,2003,16,AI Commun.,3,db/journals/aicom/aicom16.html#Moreno03,http://content.iospress.com/articles/ai-communications/aic283 +Manuela M. Veloso,Case-Based Planning: Selected Methods and Systems.,1996,9,AI Commun.,3,db/journals/aicom/aicom9.html#VelosoMB96,https://doi.org/10.3233/AIC-1996-9305 +Hemant Kumar Singh,Development of optimization methods to deal with current challenges in engineering design optimization.,2016,29,AI Commun.,1,db/journals/aicom/aicom29.html#Singh15,https://doi.org/10.3233/AIC-140645 +Jacobijn Sandberg,Interviews on AI and Education: Kurt Vanlehn and David Merrill.,1992,5,AI Commun.,2,db/journals/aicom/aicom5.html#SandbergB92a,https://doi.org/10.3233/AIC-1992-5205 +Derek H. Sleeman,Towards a Technology and a Science of Machine Learning.,1994,7,AI Commun.,1,db/journals/aicom/aicom7.html#Sleeman94,https://doi.org/10.3233/AIC-1994-7103 +Norman Salazar,Robust coordination in large convention spaces.,2010,23,AI Commun.,4,db/journals/aicom/aicom23.html#SalazarRA10,https://doi.org/10.3233/AIC-2010-0479 +Javier Morales,Using IRON to build frictionless on-line communities.,2015,28,AI Commun.,1,db/journals/aicom/aicom28.html#MoralesMSLR15,https://doi.org/10.3233/AIC-140616 +Nicola Dragoni,Fault tolerant knowledge level inter-agent communication in open Multi-Agent Systems.,2006,19,AI Commun.,4,db/journals/aicom/aicom19.html#Dragoni06,http://content.iospress.com/articles/ai-communications/aic378 +éric Grégoire,Consensus-finding that preserves mutually conflicting hypothetical information from a same agent.,2018,31,AI Commun.,3,db/journals/aicom/aicom31.html#GregoireLZ18,https://doi.org/10.3233/AIC-170749 +Jan Jakubuv,Hierarchical invention of theorem proving strategies.,2018,31,AI Commun.,3,db/journals/aicom/aicom31.html#JakubuvU18,https://doi.org/10.3233/AIC-180761 +Jorge García-Gutiérrez,Improving models for environmental applications of LiDAR: Novel approaches based on soft computing.,2016,29,AI Commun.,1,db/journals/aicom/aicom29.html#Garcia-Gutierrez15,https://doi.org/10.3233/AIC-140643 +Xishun Zhao,Complexity Results for Restricted Credulous Default Reasoning.,2000,13,AI Commun.,4,db/journals/aicom/aicom13.html#ZhaoDB00,http://content.iospress.com/articles/ai-communications/aic221 +Yann-Michaël De Hauwere,Generalized learning automata for multi-agent reinforcement learning.,2010,23,AI Commun.,4,db/journals/aicom/aicom23.html#HauwereVN10,https://doi.org/10.3233/AIC-2010-0476 +Takao Terano,On-the-Fly Knowledge Base Refinement by a Classifier System.,1994,7,AI Commun.,2,db/journals/aicom/aicom7.html#TeranoM94,https://doi.org/10.3233/AIC-1994-7202 +Geoff Sutcliffe,The state of CASC.,2006,19,AI Commun.,1,db/journals/aicom/aicom19.html#SutcliffeS06,http://content.iospress.com/articles/ai-communications/aic359 +Ustun Yildiz,Modeling Evidence-Based Medicine Applications with Provenance Data in Pathways.,2015,2,EAI Endorsed Trans. Ubiquitous Environments,7,db/journals/ue/ue2.html#YildizBG15,https://doi.org/10.4108/icst.pervasivehealth.2015.260251 +Jieyu Lin,Scalable Monitoring Analytics Architecture in Software-Defined Infrastructure.,2015,2,EAI Endorsed Trans. Ubiquitous Environments,6,db/journals/ue/ue2.html#LinPZBL15,https://doi.org/10.4108/icst.tridentcom.2015.260151 +Tlou M. Ramoroka,Modernizing African Townships using TV White Space Networks: A Case study of Mankweng Township in South Africa.,2016,3,EAI Endorsed Trans. Ubiquitous Environments,8,db/journals/ue/ue3.html#RamorokaMK16,https://doi.org/10.4108/eai.18-5-2016.151252 +Rivo Sitraka A. Randriatsiferana,Weighted Route Selection in Cluster-Based Protocol forWireless Sensor Networks.,2016,3,EAI Endorsed Trans. Ubiquitous Environments,8,db/journals/ue/ue3.html#Randriatsiferana16,https://doi.org/10.4108/eai.18-5-2016.151249 +Viktoriya Degeler,Reduced Context Consistency Diagrams for Resolving Inconsistent Data.,2012,1,EAI Endorsed Trans. Ubiquitous Environments,2,db/journals/ue/ue2.html#DegelerL12,https://doi.org/10.4108/trans.ubienv.2012.10-12.e2 +Soumendu Kumar Ghosh,CEEDS: A Cost Effective Event Detection System for Energy Efficient Railway Bridge Monitoring with Wireless Sensor Network.,2016,3,EAI Endorsed Trans. Ubiquitous Environments,8,db/journals/ue/ue3.html#GhoshSDB16,https://doi.org/10.4108/eai.18-5-2016.151251 +Nishtha Chopra,Characterization of Human Skin Using THz Time Domain Spectroscopy for In-Body Nanonetworks.,2016,3,EAI Endorsed Trans. Ubiquitous Environments,9,db/journals/ue/ue3.html#ChopraYAQPA16,https://doi.org/10.4108/eai.3-12-2015.2262500 +Hatim Lokhandwala,Phantom Cell Architecture for LTE and its Application in Vehicular IoT Environments.,2015,2,EAI Endorsed Trans. Ubiquitous Environments,5,db/journals/ue/ue2.html#LokhandwalaST15,https://doi.org/10.4108/ue.2.5.e5 +Jori Selen,Approximate performance analysis of generalized join the shortest queue routing.,2016,3,EAI Endorsed Trans. Ubiquitous Environments,10,db/journals/ue/ue3.html#SelenAK16,https://doi.org/10.4108/eai.14-12-2015.2262695 +Mohamed Darqaoui,High availability of charging and Billing In Vehicular ad hoc Network.,2017,4,EAI Endorsed Trans. Ubiquitous Environments,12,db/journals/ue/ue4.html#DarqaouiBS17,https://doi.org/10.4108/eai.21-12-2017.153505 +Jianjun Wen,MobiLab: A Testbed for Evaluating Mobility Management Protocols in Wireless Sensor Networks.,2017,4,EAI Endorsed Trans. Ubiquitous Environments,12,db/journals/ue/ue4.html#WenAD17,https://doi.org/10.4108/eai.21-12-2017.153504 +Chonlatee Khorakhun,Remote Health Monitoring Using Online Social Media.,2014,1,EAI Endorsed Trans. Ubiquitous Environments,3,db/journals/ue/ue3.html#KhorakhunB14,https://doi.org/10.4108/ue.1.3.e2 +Wendy Ellens,Routing policies for a partially observable two-server queueing system.,2016,3,EAI Endorsed Trans. Ubiquitous Environments,11,db/journals/ue/ue3.html#EllensKNB16,https://doi.org/10.4108/eai.14-12-2015.2262697 +Peng Xiao,An Efficient Elephant Flow Detection with Cost-Sensitive in SDN.,2015,2,EAI Endorsed Trans. Ubiquitous Environments,7,db/journals/ue/ue2.html#XiaoQQXL15,https://doi.org/10.4108/icst.iniscom.2015.258274 +Michael A. Beck,Window Flow Control in Stochastic Network Calculus - The General Service Case.,2016,3,EAI Endorsed Trans. Ubiquitous Environments,10,db/journals/ue/ue3.html#BeckS16,https://doi.org/10.4108/eai.14-12-2015.2262722 +Lin Lin 0002,Offset and Skew Estimation for Clock Synchronization in Molecular Communication Systems.,2016,3,EAI Endorsed Trans. Ubiquitous Environments,9,db/journals/ue/ue3.html#LinYM16,https://doi.org/10.4108/eai.3-12-2015.2262509 +Andrea S. Atzeni,Android Apps Risk Evaluation: a methodology.,2015,1,EAI Endorsed Trans. Ubiquitous Environments,4,db/journals/ue/ue4.html#AtzeniSBDP15,https://doi.org/10.4108/ue.1.4.e5 +Venkatraman Ramakrishna,An Un-tethered Mobile Shopping Experience.,2014,1,EAI Endorsed Trans. Ubiquitous Environments,3,db/journals/ue/ue3.html#RamakrishnaSW14,https://doi.org/10.4108/ue.1.3.e1 +Kazutomo Kobayashi,Asymptotic End-to-end Backlog Evaluation in a Packet Network with a Wide Range of Traffic Flows Including Fractional Brownian Motions.,2016,3,EAI Endorsed Trans. Ubiquitous Environments,10,db/journals/ue/ue3.html#KobayashiT16,https://doi.org/10.4108/eai.14-12-2015.2262603 +Andrei Iu. Bejan,Capacity bounds and robustness in multipath networks.,2016,3,EAI Endorsed Trans. Ubiquitous Environments,10,db/journals/ue/ue3.html#BejanGHT16,https://doi.org/10.4108/eai.14-12-2015.2262625 +Henda Ben Cheikh,Integration of streaming and elastic traffic: Modeling and Performance Analysis.,2016,3,EAI Endorsed Trans. Ubiquitous Environments,11,db/journals/ue/ue3.html#Cheikh16,https://doi.org/10.4108/eai.14-12-2015.2262692 +Andy C. Bavier,The GENI Experiment Engine.,2015,2,EAI Endorsed Trans. Ubiquitous Environments,6,db/journals/ue/ue2.html#BavierCMMMNORTC15,https://doi.org/10.4108/icst.tridentcom.2015.259974 +Loïc Baron,OneLab Tutorial: A Single Portal to Heterogeneous Testbeds.,2015,2,EAI Endorsed Trans. Ubiquitous Environments,6,db/journals/ue/ue2.html#BaronKRSKFF15,https://doi.org/10.4108/icst.tridentcom.2015.259876 +Michael Faath,A GLIMPSE of the Internet's Fabric.,2016,3,EAI Endorsed Trans. Ubiquitous Environments,11,db/journals/ue/ue3.html#FaathW16,https://doi.org/10.4108/eai.14-12-2015.2262670 +Daouda Ahmat,A Survey on Secure and Resilient Session Schemes: Technical Comparison and Assessment.,2018,4,EAI Endorsed Trans. Ubiquitous Environments,13,db/journals/ue/ue4.html#AhmatM18,https://doi.org/10.4108/eai.12-1-2018.153558 +Yanwei Xu,The Development of China's Next Generation Network and National Service Testbed.,2015,2,EAI Endorsed Trans. Ubiquitous Environments,6,db/journals/ue/ue2.html#XuLZ15,https://doi.org/10.4108/icst.tridentcom.2015.259723 +Stefano Marchesani,A Middleware Approach for IEEE 802.15.4 Wireless Sensor Networks Security.,2015,2,EAI Endorsed Trans. Ubiquitous Environments,5,db/journals/ue/ue2.html#MarchesaniPPS15,https://doi.org/10.4108/ue.2.5.e1 +Jie Zhang 0015,Galileo E1 and E5a Link-level Performance for Dual Frequency Overlay Structure.,2012,1,EAI Endorsed Trans. Ubiquitous Environments,1,db/journals/ue/ue1.html#ZhangL12,https://doi.org/10.4108/trans.ubienv.2012.e3 +Joshua Kraunelis,On Malware Leveraging the Android Accessibility Framework.,2015,1,EAI Endorsed Trans. Ubiquitous Environments,4,db/journals/ue/ue4.html#KraunelisCLFZ15,https://doi.org/10.4108/ue.1.4.e1 +Davy Preuveneers,Towards energy-aware semantic publish/subscribe for wireless embedded systems.,2012,1,EAI Endorsed Trans. Ubiquitous Environments,2,db/journals/ue/ue2.html#PreuveneersB12,https://doi.org/10.4108/trans.ubienv.2012.10-12.e1 +Lorenz Schauer,Analyzing Pedestrian Flows Based on Wi-Fi and Bluetooth Captures.,2015,1,EAI Endorsed Trans. Ubiquitous Environments,4,db/journals/ue/ue4.html#Schauer015,https://doi.org/10.4108/ue.1.4.e4 +Kevin Wiesner,PRICAPS: A System for Privacy-Preserving Calibration in Participatory Sensing Networks.,2014,1,EAI Endorsed Trans. Ubiquitous Environments,3,db/journals/ue/ue3.html#WiesnerDL14,https://doi.org/10.4108/ue.1.3.e5 +Giovanni Giambene,TCP Performance Issues in Satellite and WiFi Hybrid Networks for High-Speed Trains.,2012,1,EAI Endorsed Trans. Ubiquitous Environments,1,db/journals/ue/ue1.html#GiambeneMK12,https://doi.org/10.4108/trans.ubienv.2012.e5 +Joao Paulo Miranda,On massive MIMO and its applications to machine type communications and FBMC-based networks.,2015,2,EAI Endorsed Trans. Ubiquitous Environments,5,db/journals/ue/ue2.html#MirandaFMFCF15,https://doi.org/10.4108/ue.2.5.e3 +Pierre-Ugo Tournoux,A packet error recovery scheme for vertical handovers mobility management protocols.,2012,1,EAI Endorsed Trans. Ubiquitous Environments,2,db/journals/ue/ue2.html#TournouxLPL12,https://doi.org/10.4108/trans.ue.1.2.e3 +Ahmad M. Mustafa,Evaluation of a Traffic-Aware Smart Highway Lighting System.,2017,4,EAI Endorsed Trans. Ubiquitous Environments,12,db/journals/ue/ue4.html#MustafaADAM17,https://doi.org/10.4108/eai.21-12-2017.153508 +Artur Henrique Kronbauer,The analysis of contextual factors on the use of smartphones applications.,2015,1,EAI Endorsed Trans. Ubiquitous Environments,4,db/journals/ue/ue4.html#KronbauerS15,https://doi.org/10.4108/ue.1.4.e2 +Qiao Qu,FuPlex: A Full Duplex MAC for the Next Generation WLAN.,2015,2,EAI Endorsed Trans. Ubiquitous Environments,7,db/journals/ue/ue2.html#QuLYYZ15,https://doi.org/10.4108/eai.19-8-2015.2259756 +H. Kamdem Fezeu,Approaching decentralized non-repudiation.,2018,4,EAI Endorsed Trans. Ubiquitous Environments,13,db/journals/ue/ue4.html#FezeuDT18,https://doi.org/10.4108/eai.12-1-2018.153559 +Abraham Rodriguez-Mota,Reassessing Android Malware Analysis: From Apps to IoT System Modelling.,2018,4,EAI Endorsed Trans. Ubiquitous Environments,13,db/journals/ue/ue4.html#Rodriguez-MotaE18,https://doi.org/10.4108/eai.12-1-2018.153565 +Akshay Gadre,Network Function Virtualization: A Primer.,2016,3,EAI Endorsed Trans. Ubiquitous Environments,8,db/journals/ue/ue3.html#GadreS16,https://doi.org/10.4108/eai.18-5-2016.151253 +Nuno Cruz,MobIPLity: A trace-based mobility scenario generator for mobile applications.,2015,2,EAI Endorsed Trans. Ubiquitous Environments,5,db/journals/ue/ue2.html#CruzM15,https://doi.org/10.4108/ue.2.5.e2 +Vanlin Sathya,On Femto placement and decoupled access for downlink and uplink in enterprise environments.,2016,3,EAI Endorsed Trans. Ubiquitous Environments,8,db/journals/ue/ue3.html#SathyaRTT16,https://doi.org/10.4108/eai.18-5-2016.151250 +Godwin Ansa,An Energy-Efficient Technique to Combat DOS Attacks in Delay Tolerant Networks.,2012,1,EAI Endorsed Trans. Ubiquitous Environments,1,db/journals/ue/ue1.html#AnsaCS12,https://doi.org/10.4108/trans.ubienv.2012.e6 +Okta Nurika,Implementation of Network Cards Optimizations in Hadoop Cluster Data Transmissions.,2017,4,EAI Endorsed Trans. Ubiquitous Environments,12,db/journals/ue/ue4.html#NurikaHZ17,https://doi.org/10.4108/eai.21-12-2017.153506 +Nico Beierle,Combining profiling and monitoring to analyze test coverage and identify performance problems.,2016,3,EAI Endorsed Trans. Ubiquitous Environments,11,db/journals/ue/ue3.html#BeierleK16,https://doi.org/10.4108/eai.14-12-2015.2262590 +Qi Zhang,Virtual Small Cell Selection Schemes Based on Sum Rate Analysis in Ultra-Dense Network.,2017,4,EAI Endorsed Trans. Ubiquitous Environments,12,db/journals/ue/ue4.html#ZhangZSRX17,https://doi.org/10.4108/eai.21-12-2017.153507 +Ying-Dar Lin,PCT and IOT in LTE Networks: A Study on Test Cases and Test Results.,2015,2,EAI Endorsed Trans. Ubiquitous Environments,6,db/journals/ue/ue2.html#LinTLK15,https://doi.org/10.4108/icst.tridentcom.2015.259957 +Steffen Bondorf,Calculating Accurate End-to-End Delay Bounds - You Better Know Your Cross-Traffic.,2016,3,EAI Endorsed Trans. Ubiquitous Environments,11,db/journals/ue/ue3.html#BondorfS16,https://doi.org/10.4108/eai.14-12-2015.2262565 +Krishna M. Sivalingam,Welcome Message from the Editor-in-Chief.,2012,1,EAI Endorsed Trans. Ubiquitous Environments,1,db/journals/ue/ue1.html#Sivalingam12,https://doi.org/10.4108/trans.ubienv.2012.e1 +Dennis J. A. Bijwaard,Reuse of pervasive system architectures.,2014,1,EAI Endorsed Trans. Ubiquitous Environments,3,db/journals/ue/ue3.html#BijwaardZMDEH14,https://doi.org/10.4108/ue.1.3.e3 +Chetna Singhal,User-Centric Energy-Efficient Multimedia Multicast/Broadcast Solutions: A Survey.,2015,2,EAI Endorsed Trans. Ubiquitous Environments,5,db/journals/ue/ue2.html#SinghalD15,https://doi.org/10.4108/ue.2.5.e4 +Jim Baddoo,Integration and Management of Multiple Radios in Satellite-Terrestrial based Aeronautical Communication Networks.,2012,1,EAI Endorsed Trans. Ubiquitous Environments,1,db/journals/ue/ue1.html#BaddooGPMNWSXA012,https://doi.org/10.4108/trans.ubienv.2012.e4 +Igor Bisio,Personal Satellite Services.,2012,1,EAI Endorsed Trans. Ubiquitous Environments,1,db/journals/ue/ue1.html#BisioH12,https://doi.org/10.4108/trans.ubienv.2012.e2 +Guillaume Chapuis,GPU Performance Prediction Through Parallel Discrete Event Simulation and Common Sense.,2016,3,EAI Endorsed Trans. Ubiquitous Environments,10,db/journals/ue/ue3.html#ChapuisES16,https://doi.org/10.4108/eai.14-12-2015.2262575 +Louis H. Kauffman,Remembrance of Things Past.,2016,23,Cybernetics and Human Knowing,1,db/journals/chk/chk23.html#Kauffman16,http://www.ingentaconnect.com/contentone/imp/chk/2016/00000023/00000001/art00009 +Lars Qvortrup,Structural Coupling-a Problematic Concept.,2006,13,Cybernetics and Human Knowing,2,db/journals/chk/chk13.html#Qvortrup06,http://www.ingentaconnect.com/content/imp/chk/2006/00000013/00000002/art00005 +Jeanette Bopry,Convergence toward enaction within educational technology: Design for learners and learning.,2001,8,Cybernetics and Human Knowing,4,db/journals/chk/chk8.html#Bopry01,http://www.ingentaconnect.com/content/imp/chk/2001/00000008/00000004/99 +Timothy Jachna,Reclaiming The Cyber(netic) City.,2012,19,Cybernetics and Human Knowing,3,db/journals/chk/chk19.html#Jachna12,http://www.ingentaconnect.com/content/imp/chk/2012/00000019/00000003/art00005 +Louis H. Kauffman,Virtual logic - The Flagg Resolution.,1999,6,Cybernetics and Human Knowing,1,db/journals/chk/chk6.html#Kauffman99,http://www.ingentaconnect.com/content/imp/chk/1999/00000006/00000001/32 +Christina Waters,Invitation to dance - a conversation with Heinz von Foerster.,1999,6,Cybernetics and Human Knowing,4,db/journals/chk/chk6.html#Waters99,http://www.ingentaconnect.com/content/imp/chk/1999/00000006/00000004/50 +Frank Galuszka,Circle of Learning A Review of Ecological Thinking: A New Approach to Educational Change.,2004,11,Cybernetics and Human Knowing,2,db/journals/chk/chk11.html#Galuszka04,http://www.ingentaconnect.com/content/imp/chk/2004/00000011/00000002/art00009 +Søren Brier,Varela's Contribution to the Creation of Cybersemiotics: The calculus of self-reference.,2002,9,Cybernetics and Human Knowing,2,db/journals/chk/chk9.html#Brier02,http://www.ingentaconnect.com/content/imp/chk/2002/00000009/00000002/117 +Louis Kauffman,Laws of Form and Form Dynamics.,2002,9,Cybernetics and Human Knowing,2,db/journals/chk/chk9.html#Kauffman02,http://www.ingentaconnect.com/content/imp/chk/2002/00000009/00000002/115 +Peter Bøgh Andersen,WWW as self-organizing system.,1998,5,Cybernetics and Human Knowing,2,db/journals/chk/chk5.html#Andersen98,http://www.ingentaconnect.com/content/imp/chk/1998/00000005/00000002/8 +Louis H. Kauffman,Virtual logic - formal arithmetic.,2000,7,Cybernetics and Human Knowing,4,db/journals/chk/chk7.html#Kauffman00a,http://www.ingentaconnect.com/content/imp/chk/2000/00000007/00000004/73 +Leslie P. Steffe,Individual constructive activity: an experimental analysis.,1999,6,Cybernetics and Human Knowing,1,db/journals/chk/chk6.html#Steffe99,http://www.ingentaconnect.com/content/imp/chk/1999/00000006/00000001/27 +Egon Noe,Combining Luhmann and Actor-Network Theory to See Farm Enterprises as Self-organizing Systems.,2006,13,Cybernetics and Human Knowing,1,db/journals/chk/chk13.html#NoeA06,http://www.ingentaconnect.com/content/imp/chk/2006/00000013/00000001/art00004 +G. Michael Bowen,Understanding the Development of Competent Practice in Biology Field Research.,2003,10,Cybernetics and Human Knowing,2,db/journals/chk/chk10.html#Bowen03,http://www.ingentaconnect.com/content/imp/chk/2003/00000010/00000002/art00004 +John Mingers,Can the Laws of Form Represent Syllogisms?,2014,21,Cybernetics and Human Knowing,4,db/journals/chk/chk21.html#Mingers14a,http://www.ingentaconnect.com/content/imp/chk/2014/00000021/00000004/art00002 +Frederick Steier,Dialogue and second-order cybernetics: A mutual affinity.,1998,5,Cybernetics and Human Knowing,3,db/journals/chk/chk5.html#Steier98,http://www.ingentaconnect.com/content/imp/chk/1998/00000005/00000003/15 +Louis H. Kauffman,Virtual Logic-The Yablo Paradox.,2014,21,Cybernetics and Human Knowing,4,db/journals/chk/chk21.html#Kauffman14b,http://www.ingentaconnect.com/content/imp/chk/2014/00000021/00000004/art00004 +Paul Cobley,Paradigm Shifts in Cultural Systems: A Review of Understanding Media Semiotics.,2004,11,Cybernetics and Human Knowing,2,db/journals/chk/chk11.html#Cobley04,http://www.ingentaconnect.com/content/imp/chk/2004/00000011/00000002/art00008 +Phillip Guddemi,Foreword: Laws of Form: New Perspectives.,2014,21,Cybernetics and Human Knowing,4,db/journals/chk/chk21.html#Guddemi14b,http://www.ingentaconnect.com/content/imp/chk/2014/00000021/00000004/art00001 +Phillip Guddemi,Foreword: Re-informings.,2010,17,Cybernetics and Human Knowing,3,db/journals/chk/chk17.html#GuddemiBB10,http://www.ingentaconnect.com/content/imp/chk/2010/00000017/00000003/art00001 +Phillip Guddemi,Foreword: 25th Anniversary Issue: High Abstraction and Skillful Application.,2018,25,Cybernetics and Human Knowing,1,db/journals/chk/chk25.html#GuddemiBJ18,http://www.ingentaconnect.com/contentone/imp/chk/2018/00000025/00000001/art00001 +Ranulph Glanville,Radical Constructivism = Second-order Cybernetics.,2012,19,Cybernetics and Human Knowing,4,db/journals/chk/chk19.html#Glanville12,http://www.ingentaconnect.com/content/imp/chk/2012/00000019/00000004/art00003 +Phillip Guddemi,Biosemiotic Theses on the Door of Conventional Biology.,2015,22,Cybernetics and Human Knowing,1,db/journals/chk/chk22.html#Guddemi15a,http://www.ingentaconnect.com/content/imp/chk/2015/00000022/00000001/art00006 +K. B. Laursen,The Paradox of Stability and Dynamics in Organizational Couplings.,2018,25,Cybernetics and Human Knowing,1,db/journals/chk/chk25.html#LaursenN18,http://www.ingentaconnect.com/contentone/imp/chk/2018/00000025/00000001/art00005 +Phillip Guddemi,The Systems Cybernetician: Stafford Beer and the Cybernetics of Thinking Before You Think.,2010,17,Cybernetics and Human Knowing,4,db/journals/chk/chk17.html#Guddemi10c,http://www.ingentaconnect.com/content/imp/chk/2010/00000017/00000004/art00007 +Tom Froese,Life After Ashby: Ultrastability and the Autopoietic Foundations of Biological Autonomy.,2010,17,Cybernetics and Human Knowing,4,db/journals/chk/chk17.html#FroeseS10,http://www.ingentaconnect.com/content/imp/chk/2010/00000017/00000004/art00002 +Bruce Clarke,Book Review.,2008,15,Cybernetics and Human Knowing,2,db/journals/chk/chk15.html#ClarkeT08,http://www.ingentaconnect.com/content/imp/chk/2008/00000015/00000002/art00008 +Mary C. Bateson,Living in Cybernetics-Making it Personal.,2016,23,Cybernetics and Human Knowing,1,db/journals/chk/chk23.html#Bateson16,http://www.ingentaconnect.com/contentone/imp/chk/2016/00000023/00000001/art00011 +Louis Kauffman,Virtual Logic: The Berry Paradox and Chaitin's Theory of Algorithmic Complexity.,2008,15,Cybernetics and Human Knowing,2,db/journals/chk/chk15.html#Kauffman08,http://www.ingentaconnect.com/content/imp/chk/2008/00000015/00000002/art00006 +Torkild Thellefsen,The Concept of Information in Library and Information Science A Field in Search of Its Boundaries: 8 Short Comments Concerning Information.,2015,22,Cybernetics and Human Knowing,1,db/journals/chk/chk22.html#ThellefsenTS15,http://www.ingentaconnect.com/content/imp/chk/2015/00000022/00000001/art00004 +Stanley N. Salthe,On the Origin of Semiosis.,2012,19,Cybernetics and Human Knowing,3,db/journals/chk/chk19.html#Salthe12,http://www.ingentaconnect.com/content/imp/chk/2012/00000019/00000003/art00004 +Stuart A. Umpleby,What comes after second order cybernetics?,2001,8,Cybernetics and Human Knowing,3,db/journals/chk/chk8.html#Umpleby01,http://www.ingentaconnect.com/content/imp/chk/2001/00000008/00000003/92 +Ranulph Glanville,A (cybernetic) musing: language and science in the language of science.,1998,5,Cybernetics and Human Knowing,4,db/journals/chk/chk5.html#GlanvilleSF98,http://www.ingentaconnect.com/content/imp/chk/1998/00000005/00000004/23 +Bogdan Nicolescu,Column on Transdisciplinary Realism.,2016,23,Cybernetics and Human Knowing,2,db/journals/chk/chk23.html#Nicolescus16,http://www.ingentaconnect.com/contentone/imp/chk/2016/00000023/00000002/art00006 +Phillip Guddemi,Foreword: Batesonian Facets.,2016,23,Cybernetics and Human Knowing,3,db/journals/chk/chk23.html#Guddemi16a,http://www.ingentaconnect.com/contentone/imp/chk/2016/00000023/00000003/art00001 +M. Engel,The Path to Steps to an Ecology of Mind.,2016,23,Cybernetics and Human Knowing,3,db/journals/chk/chk23.html#Engel16,http://www.ingentaconnect.com/contentone/imp/chk/2016/00000023/00000003/art00008 +Jacob Dahl Rendtorff,Religion and Economics: Legitimacy of Corporations in Modern Society.,2007,14,Cybernetics and Human Knowing,1,db/journals/chk/chk14.html#Rendtorff07,http://www.ingentaconnect.com/content/imp/chk/2007/00000014/00000001/art00004 +Paul Downes,Schema Structure - Content Relativity.,2010,17,Cybernetics and Human Knowing,3,db/journals/chk/chk17.html#Downes10a,http://www.ingentaconnect.com/content/imp/chk/2010/00000017/00000003/art00002 +Wolfgang Hofkirchner,A New Way of Thinking and a New World View: On the Philosophy of Self-Organisation.,2004,11,Cybernetics and Human Knowing,1,db/journals/chk/chk11.html#Hofkirchner04,http://www.ingentaconnect.com/content/imp/chk/2004/00000011/00000001/art00005 +Louis H. Kauffman,Virtual Logic - symbolic logic and the calculus of indications.,1998,5,Cybernetics and Human Knowing,3,db/journals/chk/chk5.html#Kauffman98b,http://www.ingentaconnect.com/content/imp/chk/1998/00000005/00000003/18 +Pille Bunnell,Reflections on the Ontology of Observing.,2004,11,Cybernetics and Human Knowing,4,db/journals/chk/chk11.html#Bunnell04a,http://www.ingentaconnect.com/content/imp/chk/2004/00000011/00000004/art00005 +J. E. Brenner,Stanislaw Lem's Summa Technologiae: Cybernetics and Machine Knowing?,2015,22,Cybernetics and Human Knowing,1,db/journals/chk/chk22.html#Brenner15,http://www.ingentaconnect.com/content/imp/chk/2015/00000022/00000001/art00007 +Rudi Laermans,Mass Media in Contemporary Society: A Critical Appraisal of Niklas Luhmann's Systems View.,2005,12,Cybernetics and Human Knowing,4,db/journals/chk/chk12.html#Laermans05,http://www.ingentaconnect.com/content/imp/chk/2005/00000012/00000004/art00004 +Menno Hulswit,A Semiotic Account of Causation.,2006,13,Cybernetics and Human Knowing,1,db/journals/chk/chk13.html#Hulswit06,http://www.ingentaconnect.com/content/imp/chk/2006/00000013/00000001/art00002 +Dirk Baecker,The Joker in the Box or The Theory Form of the System.,2002,9,Cybernetics and Human Knowing,1,db/journals/chk/chk9.html#Baecker02,http://www.ingentaconnect.com/content/imp/chk/2002/00000009/00000001/108 +Nora Bateson,Knowledge and Complexity International Bateson Institute Column.,2016,23,Cybernetics and Human Knowing,3,db/journals/chk/chk23.html#Bateson16a,http://www.ingentaconnect.com/contentone/imp/chk/2016/00000023/00000003/art00007 +Chris Miles,The Excluded Environment: Preliminary remarks towards a systems theory of literature.,2006,13,Cybernetics and Human Knowing,1,db/journals/chk/chk13.html#Miles06,http://www.ingentaconnect.com/content/imp/chk/2006/00000013/00000001/art00003 +Phillip Guddemi,Foreword: Networks in the Mirror.,2008,15,Cybernetics and Human Knowing,1,db/journals/chk/chk15.html#Guddemi08,http://www.ingentaconnect.com/content/imp/chk/2008/00000015/00000001/art00001 +Phillip Guddemi,Foreword: Evolution and Communication Heterodox Rethinkings.,2017,24,Cybernetics and Human Knowing,1,db/journals/chk/chk24.html#Guddemi17,http://www.ingentaconnect.com/contentone/imp/chk/2017/00000024/00000001/art00001 +Søren Brier,Biosemiotic Anti-Humanism: Why Culture Is an Extension of Biology and a Self-Organizing System of Meaning.,2017,24,Cybernetics and Human Knowing,2,db/journals/chk/chk24.html#Brier17a,http://www.ingentaconnect.com/contentone/imp/chk/2017/00000024/00000002/art00007 +S. Miller,An Esoteric Guide to Spencer-Brown's Laws Of Form.,2014,21,Cybernetics and Human Knowing,4,db/journals/chk/chk21.html#Miller14,http://www.ingentaconnect.com/content/imp/chk/2014/00000021/00000004/art00003 +Stephen Kinsella,Reconciling Newtonian and Simonian Concepts of Space.,2008,15,Cybernetics and Human Knowing,2,db/journals/chk/chk15.html#Kinsella08,http://www.ingentaconnect.com/content/imp/chk/2008/00000015/00000002/art00005 +Ranulph Glanville,A (Cybernetic) Musing: Cybernetics and Human Knowing.,2002,9,Cybernetics and Human Knowing,1,db/journals/chk/chk9.html#Glanville02,http://www.ingentaconnect.com/content/imp/chk/2002/00000009/00000001/109 +Steffen Roth,Foreword: Trends in Functional Differentiation.,2015,22,Cybernetics and Human Knowing,4,db/journals/chk/chk22.html#RothB15,http://www.ingentaconnect.com/content/imp/chk/2015/00000022/00000004/art00001 +Louis H. Kauffman,Virtual logic - the calculus of indications.,1998,5,Cybernetics and Human Knowing,1,db/journals/chk/chk5.html#Kauffman98,http://www.ingentaconnect.com/content/imp/chk/1998/00000005/00000001/7 +Ranulph Glanville,A (Cybernetic) Musing: Cybernetics and Circularities.,2012,19,Cybernetics and Human Knowing,4,db/journals/chk/chk19.html#Glanville12a,http://www.ingentaconnect.com/content/imp/chk/2012/00000019/00000004/art00007 +Ole Thyssen,Constructivism Revisited.,2004,11,Cybernetics and Human Knowing,3,db/journals/chk/chk11.html#Thyssen04a,http://www.ingentaconnect.com/content/imp/chk/2004/00000011/00000003/art00007 +Ern Reynolds,The Heaviest Hammer in Your Bag.,2006,13,Cybernetics and Human Knowing,1,db/journals/chk/chk13.html#Reynolds06,http://www.ingentaconnect.com/content/imp/chk/2006/00000013/00000001/art00007 +Christiane M. Herr,Foreword: 50th Anniversary Retrospective of the ASC: The Past Presidents' Day of the 2014 Conference of the American Society for Cybernetics.,2016,23,Cybernetics and Human Knowing,1,db/journals/chk/chk23.html#HerrFG16,http://www.ingentaconnect.com/contentone/imp/chk/2016/00000023/00000001/art00001 +Phillip Guddemi,Biosemiotic Expectations.,2016,23,Cybernetics and Human Knowing,4,db/journals/chk/chk23.html#Guddemi16c,http://www.ingentaconnect.com/contentone/imp/chk/2016/00000023/00000004/art00008 +G. G. Scarrott,The formulation of a science of information: an engineering perspective on the natural properties of information.,1998,5,Cybernetics and Human Knowing,4,db/journals/chk/chk5.html#Scarrott98,http://www.ingentaconnect.com/content/imp/chk/1998/00000005/00000004/19 +J. Rawel,The Relationship Between Social and Biotic Evolution: The Evolution of Autopoietic Systems.,2017,24,Cybernetics and Human Knowing,1,db/journals/chk/chk24.html#Rawel17,http://www.ingentaconnect.com/contentone/imp/chk/2017/00000024/00000001/art00003 +Robert Woog,The life cycle of a postmodern paradigm: social ecology as a case study in second-order cybernetics.,2000,7,Cybernetics and Human Knowing,4,db/journals/chk/chk7.html#WoogH00,http://www.ingentaconnect.com/content/imp/chk/2000/00000007/00000004/69 +Kalevi Kull,Thomas A. Sebeok and biology: Building biosemiotics.,2003,10,Cybernetics and Human Knowing,1,db/journals/chk/chk10.html#Kull03,http://www.ingentaconnect.com/content/imp/chk/2003/00000010/00000001/art00002 +Michael Schiltz,Power and the Third Paradox.,2006,13,Cybernetics and Human Knowing,1,db/journals/chk/chk13.html#Schiltz06,http://www.ingentaconnect.com/content/imp/chk/2006/00000013/00000001/art00005 +Seiichi Imoto,Nothing as Plenum: Lao-tzu's Way and Maturana's Substratum.,2005,12,Cybernetics and Human Knowing,4,db/journals/chk/chk12.html#Imoto05,http://www.ingentaconnect.com/content/imp/chk/2005/00000012/00000004/art00007 +Torkild Thellefsen,A Semiotic Note on Branding.,2007,14,Cybernetics and Human Knowing,4,db/journals/chk/chk14.html#ThellefsenSA07,http://www.ingentaconnect.com/content/imp/chk/2007/00000014/00000004/art00004 +Herbert Brün,... to hold discourse at least with a computer...,2000,7,Cybernetics and Human Knowing,4,db/journals/chk/chk7.html#Brun00,http://www.ingentaconnect.com/content/imp/chk/2000/00000007/00000004/72 +N. Nomura,Synchronicity as Time: E-Series Time for Living Formations.,2016,23,Cybernetics and Human Knowing,3,db/journals/chk/chk23.html#NomuraM16,http://www.ingentaconnect.com/contentone/imp/chk/2016/00000023/00000003/art00005 +Erminia Vaccari,Knowledge as modelling.,1998,5,Cybernetics and Human Knowing,2,db/journals/chk/chk5.html#Vaccari98,http://www.ingentaconnect.com/content/imp/chk/1998/00000005/00000002/10 +Søren Brier,Biosemiotics as a possible bridge between embodiment in cognitive semantics and the motivation concept of animal cognition in ethology.,2000,7,Cybernetics and Human Knowing,1,db/journals/chk/chk7.html#Brier00,http://www.ingentaconnect.com/content/imp/chk/2000/00000007/00000001/55 +Pamela Lyon,Autopoiesis and knowing: Reflections on Maturana's Biogenic Explanation of Cognition.,2004,11,Cybernetics and Human Knowing,4,db/journals/chk/chk11.html#Lyon04,http://www.ingentaconnect.com/content/imp/chk/2004/00000011/00000004/art00002 +Eberhard von Goldammer,Contemplations ON A KNOWN UNKNOWN: Time.,2005,12,Cybernetics and Human Knowing,3,db/journals/chk/chk12.html#GoldammerT05,http://www.ingentaconnect.com/content/imp/chk/2005/00000012/00000003/art00003 +Ranulph Glanville,A (Cybernetic) Musing: Architecture of Distinction and the Distinction of Architecture.,2010,17,Cybernetics and Human Knowing,3,db/journals/chk/chk17.html#Glanville10,http://www.ingentaconnect.com/content/imp/chk/2010/00000017/00000003/art00005 +Ernst von Glasersfeld,Reflections on cybernetics.,2000,7,Cybernetics and Human Knowing,1,db/journals/chk/chk7.html#Glasersfeld00,http://www.ingentaconnect.com/content/imp/chk/2000/00000007/00000001/57 +Thomas Fischer 0001,In Ranulph's Terms.,2016,23,Cybernetics and Human Knowing,1,db/journals/chk/chk23.html#Fischer16,http://www.ingentaconnect.com/contentone/imp/chk/2016/00000023/00000001/art00010 +Christian Fuchs,The Internet as a Self-Organizing Socio-Technological System.,2005,12,Cybernetics and Human Knowing,3,db/journals/chk/chk12.html#Fuchs05,http://www.ingentaconnect.com/content/imp/chk/2005/00000012/00000003/art00004 +B. Seaman,ASC science of human understanding a society for the art and American Society for Cybernetics.,2018,25,Cybernetics and Human Knowing,1,db/journals/chk/chk25.html#Seaman18,http://www.ingentaconnect.com/contentone/imp/chk/2018/00000025/00000001/art00006 +Lars Qvortrup,Foreword: Post-Ontological Theory?,2004,11,Cybernetics and Human Knowing,3,db/journals/chk/chk11.html#QvortrupB04,http://www.ingentaconnect.com/content/imp/chk/2004/00000011/00000003/art00001 +Ranulph Glanville,Inventing the new millennium.,1999,6,Cybernetics and Human Knowing,4,db/journals/chk/chk6.html#Glanville99a,http://www.ingentaconnect.com/content/imp/chk/1999/00000006/00000004/48 +Cristina Besio,Niklas Luhmann as an Empirical Sociologist: Methodological Implications of the System Theory of Society.,2008,15,Cybernetics and Human Knowing,2,db/journals/chk/chk15.html#BesioP08,http://www.ingentaconnect.com/content/imp/chk/2008/00000015/00000002/art00002 +Louis H. Kauffman,Virtual Logic-George Spencer-Brown (2 April 1923 - 25 August 2016).,2016,23,Cybernetics and Human Knowing,3,db/journals/chk/chk23.html#Kauffman16b,http://www.ingentaconnect.com/contentone/imp/chk/2016/00000023/00000003/art00006 +Katherine Anker,Instances of Consciousness An Essay on the Signs of Evolution.,2012,19,Cybernetics and Human Knowing,4,db/journals/chk/chk19.html#Anker12,http://www.ingentaconnect.com/content/imp/chk/2012/00000019/00000004/art00004 +Ole Thyssen,The Environment in Systems Theory: Response to Anders la Cour.,2006,13,Cybernetics and Human Knowing,2,db/journals/chk/chk13.html#Thyssen06a,http://www.ingentaconnect.com/content/imp/chk/2006/00000013/00000002/art00006 +Ranulph Glanville,Desirable Ethics.,2004,11,Cybernetics and Human Knowing,2,db/journals/chk/chk11.html#Glanville04,http://www.ingentaconnect.com/content/imp/chk/2004/00000011/00000002/art00007 +Bent Sørensen,'Man Is a Bundle of Habits' in a Universe with an Inherent Tendency to Habit Formation.,2018,25,Cybernetics and Human Knowing,1,db/journals/chk/chk25.html#SorensenTB18,http://www.ingentaconnect.com/contentone/imp/chk/2018/00000025/00000001/art00002 +Steffen Roth,Ten Systems: Toward a Canon of Function Systems.,2015,22,Cybernetics and Human Knowing,4,db/journals/chk/chk22.html#RothA15,http://www.ingentaconnect.com/content/imp/chk/2015/00000022/00000004/art00002 +Joy Murray,Who am I? and will you still love me when my memory enhancer forgets your birthday?,2001,8,Cybernetics and Human Knowing,3,db/journals/chk/chk8.html#Murray01,http://www.ingentaconnect.com/content/imp/chk/2001/00000008/00000003/94 +Andy Bilson,Escaping from Intrinsically Unstable and Untrustful Relations: Implications of a Constitutive Ontology for Responding to Issues of Power.,2004,11,Cybernetics and Human Knowing,2,db/journals/chk/chk11.html#Bilson04,http://www.ingentaconnect.com/content/imp/chk/2004/00000011/00000002/art00003 +Joy Murray,Systems for Social Sustainability: Global Connectedness and the Tuvalu Test.,2007,14,Cybernetics and Human Knowing,1,db/journals/chk/chk14.html#MurrayDL07,http://www.ingentaconnect.com/content/imp/chk/2007/00000014/00000001/art00005 +Louis Kauffman,Virtual Logic-Syllogisms.,2004,11,Cybernetics and Human Knowing,3,db/journals/chk/chk11.html#Kauffman04a,http://www.ingentaconnect.com/content/imp/chk/2004/00000011/00000003/art00005 +W. J. Reckmeyer,Reflections on Constructing a Reality: The American Society for Cybernetics in the 1980s.,2016,23,Cybernetics and Human Knowing,1,db/journals/chk/chk23.html#Reckmeyer16,http://www.ingentaconnect.com/contentone/imp/chk/2016/00000023/00000001/art00004 +Louis H. Kauffman,Virtual logic - infinitesimals and zero numbers.,2000,7,Cybernetics and Human Knowing,1,db/journals/chk/chk7.html#Kauffman00,http://www.ingentaconnect.com/content/imp/chk/2000/00000007/00000001/56 +Wolff-Michael Roth,The evolution of umwelt and communication.,1999,6,Cybernetics and Human Knowing,4,db/journals/chk/chk6.html#Roth99,http://www.ingentaconnect.com/content/imp/chk/1999/00000006/00000004/44 +Claudia Cecchi,Answering Cuvier: Notes on the systemic/historic nature of living beings.,2004,11,Cybernetics and Human Knowing,4,db/journals/chk/chk11.html#CecchiVVM04,http://www.ingentaconnect.com/content/imp/chk/2004/00000011/00000004/art00001 +Alberto Cevolini,Operational Closure and Self-Referentiality Hume's Theory of Causal Inference from the Standpoint of Second-order Cybernetics.,2012,19,Cybernetics and Human Knowing,3,db/journals/chk/chk19.html#Cevolini12,http://www.ingentaconnect.com/content/imp/chk/2012/00000019/00000003/art00002 +C. M. de Almeida,Art: A First-Person Science.,2016,23,Cybernetics and Human Knowing,4,db/journals/chk/chk23.html#Almeida16,http://www.ingentaconnect.com/contentone/imp/chk/2016/00000023/00000004/art00003 +Jesper Hoffmeyer,Surfaces inside surfaces. On the origin of agency and life.,1998,5,Cybernetics and Human Knowing,1,db/journals/chk/chk5.html#Hoffmeyer98,http://www.ingentaconnect.com/content/imp/chk/1998/00000005/00000001/3 +Louis H. Kauffman,Virtual logic - self-reference and the calculus of indications.,1998,5,Cybernetics and Human Knowing,2,db/journals/chk/chk5.html#Kauffman98a,http://www.ingentaconnect.com/content/imp/chk/1998/00000005/00000002/11 +Phillip Guddemi,Foreword: Significant Ideas and Ongoing Debates.,2012,19,Cybernetics and Human Knowing,4,db/journals/chk/chk19.html#Guddemi12a,http://www.ingentaconnect.com/content/imp/chk/2012/00000019/00000004/art00001 +Dirk Baecker,The Network Synthesis of Social Action I: Towards a Sociological Theory of Next Society.,2007,14,Cybernetics and Human Knowing,4,db/journals/chk/chk14.html#Baecker07,http://www.ingentaconnect.com/content/imp/chk/2007/00000014/00000004/art00002 +Ray Paton,The ecologies of hereditary information.,1998,5,Cybernetics and Human Knowing,4,db/journals/chk/chk5.html#Paton98,http://www.ingentaconnect.com/content/imp/chk/1998/00000005/00000004/21 +Terry Marks-Tarlow,Semiotic Seams: Fractal Dynamics of Re-entry.,2004,11,Cybernetics and Human Knowing,1,db/journals/chk/chk11.html#Marks-Tarlow04,http://www.ingentaconnect.com/content/imp/chk/2004/00000011/00000001/art00004 +Mary C. Bateson,The wisdom of recognition.,2001,8,Cybernetics and Human Knowing,4,db/journals/chk/chk8.html#Bateson01,http://www.ingentaconnect.com/content/imp/chk/2001/00000008/00000004/98 +Shilpy Tayal,An integrated production inventory model for perishable products with trade credit period and investment in preservation technology.,2016,8,IJMOR,2,db/journals/ijmor/ijmor8.html#TayalSS16,https://doi.org/10.1504/IJMOR.2016.074852 +Mohamed Abd El-Hady Kassem,On duality of fuzzy multiobjective optimisation problems: application to a multiplicative search technique.,2018,12,IJMOR,3,db/journals/ijmor/ijmor12.html#KassemE18,https://doi.org/10.1504/IJMOR.2018.10010956 +Shibaji Panda,Optimal pricing and replenishment policy in a declining price sensitive environment under continuous unit cost decrease.,2011,3,IJMOR,4,db/journals/ijmor/ijmor3.html#Panda11,https://doi.org/10.1504/IJMOR.2011.040877 +M. Karimi-Nasab,Working time evaluation in assembly lines.,2012,4,IJMOR,1,db/journals/ijmor/ijmor4.html#Karimi-NasabBFS12,https://doi.org/10.1504/IJMOR.2012.044469 +Antara Kundu,A production lot-size model with Fuzzy-Ramp type demand and fuzzy deterioration rate under permissible delay in payments.,2011,3,IJMOR,5,db/journals/ijmor/ijmor3.html#KunduC11,https://doi.org/10.1504/IJMOR.2011.042442 +S. R. Singh,Inventory model with multivariate demands in different phases with customer returns and inflation.,2016,8,IJMOR,4,db/journals/ijmor/ijmor8.html#SinghSS16,https://doi.org/10.1504/IJMOR.2016.076788 +Francesca Guerriero,Modelling and solving a car rental revenue optimisation problem.,2011,3,IJMOR,2,db/journals/ijmor/ijmor3.html#GuerrieroO11,https://doi.org/10.1504/IJMOR.2011.038911 +Seyed Mojtaba Sajadi,A new fuzzy multi-objective multi-mode resource-constrained project scheduling model.,2017,11,IJMOR,1,db/journals/ijmor/ijmor11.html#SajadiAGR17,https://doi.org/10.1504/IJMOR.2017.10006267 +Sameer Sharma,Bicriteria scheduling on parallel machines: total tardiness and weighted flowtime in fuzzy environment.,2013,5,IJMOR,4,db/journals/ijmor/ijmor5.html#SharmaGS13,https://doi.org/10.1504/IJMOR.2013.054733 +Giuseppe De Marco,On the genericity of the finite number of equilibria in multicriteria games: a counterexample.,2013,5,IJMOR,6,db/journals/ijmor/ijmor5.html#Marco13,https://doi.org/10.1504/IJMOR.2013.057494 +Amit Kumar 0003,A new approach for fuzzy critical path analysis.,2011,3,IJMOR,3,db/journals/ijmor/ijmor3.html#0003K11,https://doi.org/10.1504/IJMOR.2011.040030 +Amit Choudhury,Balking and reneging in multiserver Markovian queuing system.,2011,3,IJMOR,4,db/journals/ijmor/ijmor3.html#ChoudhuryP11,https://doi.org/10.1504/IJMOR.2011.040874 +A. K. Shaw,Trapezoidal intuitionistic fuzzy number with some arithmetic operations and its application on reliability evaluation.,2013,5,IJMOR,1,db/journals/ijmor/ijmor5.html#ShawR13,https://doi.org/10.1504/IJMOR.2013.050512 +Kailash Lachhwani,Uncertain multi-objective programming model: a genetic algorithm approach.,2017,11,IJMOR,2,db/journals/ijmor/ijmor11.html#Lachhwani17,https://doi.org/10.1504/IJMOR.2017.10007429 +R. Sudhesh,Stationary and transient analysis of M/M/1 G-queues.,2013,5,IJMOR,2,db/journals/ijmor/ijmor5.html#SudheshV13,https://doi.org/10.1504/IJMOR.2013.052457 +Arun Jotshi,Approximation algorithm for optimal location of concentrators and design of Capacitated Survivable Backbone Networks.,2011,3,IJMOR,1,db/journals/ijmor/ijmor3.html#JotshiPZ11,https://doi.org/10.1504/IJMOR.2011.037311 +Ibrahim Yusuf,Stochastic modelling and analysis of a repairable 2-out-of-4 system.,2014,6,IJMOR,1,db/journals/ijmor/ijmor6.html#YusufSBA14,https://doi.org/10.1504/IJMOR.2014.057850 +David Liu,Study on Model-Free Implied Volatility of Hang Seng Index options.,2012,4,IJMOR,2,db/journals/ijmor/ijmor4.html#LiuLZ12,https://doi.org/10.1504/IJMOR.2012.046377 +Javier Martinez Gomez,Material selection for multi-tubular fixed bed reactor Fischer-Tropsch reactor.,2018,13,IJMOR,1,db/journals/ijmor/ijmor13.html#GomezC18,https://doi.org/10.1504/IJMOR.2018.10013167 +Tomás Talásek,Two-step method for multiple criteria investment decision making: mutual funds selection using FuzzME software.,2016,9,IJMOR,4,db/journals/ijmor/ijmor9.html#TalasekBT16,https://doi.org/10.1504/IJMOR.2016.10000360 +Emanuele Borgonovo,Sensitivity analysis of portfolio properties with budget constraints.,2011,3,IJMOR,3,db/journals/ijmor/ijmor3.html#BorgonovoP11,https://doi.org/10.1504/IJMOR.2011.040028 +Pitam Singh,Fuzzy efficient and Pareto-optimal solution for multi-objective linear fractional programming problems.,2014,6,IJMOR,3,db/journals/ijmor/ijmor6.html#SinghKS14,https://doi.org/10.1504/IJMOR.2014.060854 +Neetu Singh,Economic lot sizing for unreliable production system with shortages.,2015,7,IJMOR,4,db/journals/ijmor/ijmor7.html#SinghJA15,https://doi.org/10.1504/IJMOR.2015.070198 +P. Vijaya Laxmi,Ant colony optimisation for impatient customer queue under N-policy and Bernoulli schedule vacation interruption.,2017,10,IJMOR,2,db/journals/ijmor/ijmor10.html#LaxmiI17,https://doi.org/10.1504/IJMOR.2017.10002020 +Abdulqader Othman Hamadameen,A reciprocated result using an approach of multiobjective stochastic linear programming models with partial uncertainty.,2015,7,IJMOR,4,db/journals/ijmor/ijmor7.html#HamadameenZ15,https://doi.org/10.1504/IJMOR.2015.070200 +Sudhansu Khanra,An EOQ model for perishable item with stock and price dependent demand rate.,2010,2,IJMOR,3,db/journals/ijmor/ijmor2.html#KhanraSC10,https://doi.org/10.1504/IJMOR.2010.032721 +R. P. Tripathi,EOQ model with linear time dependent demand and different holding cost functions.,2016,9,IJMOR,4,db/journals/ijmor/ijmor9.html#TripathiM16,https://doi.org/10.1504/IJMOR.2016.10000333 +Charanjeet Singh,Queueing model with state-dependent bulk arrival and second optional service.,2011,3,IJMOR,3,db/journals/ijmor/ijmor3.html#SinghJK11,https://doi.org/10.1504/IJMOR.2011.040029 +Noureddine Jilani Ben Naouara,Boundary classification and simulation of one-dimensional diffusion processes.,2017,11,IJMOR,1,db/journals/ijmor/ijmor11.html#NaouaraT17,https://doi.org/10.1504/IJMOR.2017.10006270 +Deepa Khurana,An order level inventory model for deteriorating stock product and time dependent demand under shortages.,2018,12,IJMOR,3,db/journals/ijmor/ijmor12.html#KhuranaC18,https://doi.org/10.1504/IJMOR.2018.10010954 +Mohamed Boualem,Multi-station manufacturing system analysis: theoretical and simulation study.,2017,10,IJMOR,2,db/journals/ijmor/ijmor10.html#BoualemBCA17,https://doi.org/10.1504/IJMOR.2017.10002022 +Amit Kumar 0003,Sensitivity analysis for fuzzy linear programming problems based on interval-valued fuzzy numbers.,2012,4,IJMOR,5,db/journals/ijmor/ijmor4.html#0003B12,https://doi.org/10.1504/IJMOR.2012.048930 +Ming Zhou,A Bayesian model of design imperfections in online feedback systems and their relative impacts.,2011,3,IJMOR,4,db/journals/ijmor/ijmor3.html#ZhouC11,https://doi.org/10.1504/IJMOR.2011.040878 +Amiya Biswas,Multi-objective unbalanced assignment problem with restriction of jobs to agents via NSGA-II.,2018,13,IJMOR,1,db/journals/ijmor/ijmor13.html#BiswasBS18,https://doi.org/10.1504/IJMOR.2018.10013178 +Mei Lee Sam,Comparison between linear programming and integer linear programming: a review.,2018,13,IJMOR,1,db/journals/ijmor/ijmor13.html#SamSSM18,https://doi.org/10.1504/IJMOR.2018.10013176 +Hossein Arsham,An interior boundary pivotal solution algorithm for linear programmes with the optimal solution-based sensitivity region.,2013,5,IJMOR,6,db/journals/ijmor/ijmor5.html#ArshamG13,https://doi.org/10.1504/IJMOR.2013.057489 +Mohamed Abd Allah El-Hadidy,An optimal two-stages search plan for a random walk target motion in the plane.,2017,10,IJMOR,4,db/journals/ijmor/ijmor10.html#El-Hadidy17,https://doi.org/10.1504/IJMOR.2017.10005078 +A. K. Ojha,A hybrid method for solving multi-objective geometric programming problem.,2015,7,IJMOR,2,db/journals/ijmor/ijmor7.html#OjhaO15,https://doi.org/10.1504/IJMOR.2015.068288 +Nirmal Kumar Duari,An EPQ (economic production lot size) model for product life cycle (maturity stage) of deteriorating items with increasing demand rate and shortages.,2016,8,IJMOR,3,db/journals/ijmor/ijmor8.html#DuariC16,https://doi.org/10.1504/IJMOR.2016.075522 +Pankaj Sharma,Optimal flow control of multi server time sharing queueing network with priority.,2016,9,IJMOR,3,db/journals/ijmor/ijmor9.html#Sharma16,https://doi.org/10.1504/IJMOR.2016.10000134 +S. Morteza Mirdehghan,Characterisations of the production possibility set in data envelopment analysis: an MOLP approach.,2018,12,IJMOR,1,db/journals/ijmor/ijmor12.html#MirdehghanH18,https://doi.org/10.1504/IJMOR.2018.10009184 +Virtue U. Ekhosuehi,On the asymptotic effect of examination malpractice on the structure of a Markovian multi-echelon educational system.,2011,3,IJMOR,6,db/journals/ijmor/ijmor3.html#EkhosuehiO11,https://doi.org/10.1504/IJMOR.2011.043013 +Shantanu Shankar Bagchi,Optimal order split between local and global suppliers under stochastic yield and demand.,2017,11,IJMOR,2,db/journals/ijmor/ijmor11.html#BagchiS17,https://doi.org/10.1504/IJMOR.2017.10007426 +R. Sudhesh,Stationary and transient solution of Markovian queues - an alternate approach.,2013,5,IJMOR,3,db/journals/ijmor/ijmor5.html#SudheshR13,https://doi.org/10.1504/IJMOR.2013.053627 +Massimiliano Caramia,An asymptotic worst case analysis of the effectiveness of the Harmonic 3D-shelf algorithm for online 3D-strip packing.,2010,2,IJMOR,3,db/journals/ijmor/ijmor2.html#CaramiaG10,https://doi.org/10.1504/IJMOR.2010.032722 +Adrijit Goswami,Optimal retailer replenishment decisions in the EPQ model for deteriorating items with two level of trade credit financing.,2010,2,IJMOR,1,db/journals/ijmor/ijmor2.html#GoswamiMP10,https://doi.org/10.1504/IJMOR.2010.029688 +ömür Tosun,Hybrid bat algorithm for flow shop scheduling problems.,2016,9,IJMOR,1,db/journals/ijmor/ijmor9.html#TosunM16,https://doi.org/10.1504/IJMOR.2016.077560 +Jin Shang,Solution techniques for a crane sequencing problem.,2009,1,IJMOR,4,db/journals/ijmor/ijmor1.html#ShangM09,https://doi.org/10.1504/IJMOR.2009.026276 +Vladimir Polotski,Failure-prone manufacturing systems with setups: feasibility and optimality under various hypotheses about perturbations and setup interplay.,2015,7,IJMOR,6,db/journals/ijmor/ijmor7.html#PolotskiKG15,https://doi.org/10.1504/IJMOR.2015.072277 +Seyed Hojat Pakzad Moghadam,A new mathematical model for single machine scheduling with learning effect: continuous approach.,2015,7,IJMOR,3,db/journals/ijmor/ijmor7.html#MoghadamMIK15,https://doi.org/10.1504/IJMOR.2015.069153 +Ahmed Bensalma,Testing the fractional integration parameter revisited: a fractional Dickey-Fuller test.,2018,12,IJMOR,4,db/journals/ijmor/ijmor12.html#Bensalma18,https://doi.org/10.1504/IJMOR.2018.10011879 +Nilgun Ferhatosmanoglu,Vector space search engines that maximise expected user utility.,2009,1,IJMOR,3,db/journals/ijmor/ijmor1.html#Ferhatosmanoglu09,https://doi.org/10.1504/IJMOR.2009.024287 +Negash G. Medhin,Leader-follower games in marketing: a differential game approach.,2010,2,IJMOR,2,db/journals/ijmor/ijmor2.html#MedhinW10,https://doi.org/10.1504/IJMOR.2010.030815 +A. Banerjee,Analysis of finite-buffer bulk-arrival bulk-service queue with variable service capacity and batch-size-dependent service: MX/GYr/1/N.,2013,5,IJMOR,3,db/journals/ijmor/ijmor5.html#BanerjeeGS13,https://doi.org/10.1504/IJMOR.2013.053629 +Zeina Mueen,A single server fuzzy queues with priority and unequal service rates.,2017,11,IJMOR,3,db/journals/ijmor/ijmor11.html#MueenRZ17,https://doi.org/10.1504/IJMOR.2017.10007864 +P. Sunil Dharmapala,The issue of input/output slacks in validating data envelopment analysis-based Malmquist productivity index: an example from banking.,2010,2,IJMOR,3,db/journals/ijmor/ijmor2.html#Dharmapala10,https://doi.org/10.1504/IJMOR.2010.032720 +Chiranjit Changdar,A modified ant colony optimisation based approach to solve sub-tour constant travelling salesman problem.,2017,11,IJMOR,3,db/journals/ijmor/ijmor11.html#ChangdarMP17,https://doi.org/10.1504/IJMOR.2017.10007860 +Prashanta Majee,New generalised mixed vector variational-like inequalities with semi-λ1*-pseudomonotonicity.,2018,13,IJMOR,1,db/journals/ijmor/ijmor13.html#MajeeN18,https://doi.org/10.1504/IJMOR.2018.10013171 +Aditya Shastri,Integrated defective production model for impatient customers with price dependent demand under the effect of learning.,2014,6,IJMOR,5,db/journals/ijmor/ijmor6.html#ShastriSG14,https://doi.org/10.1504/IJMOR.2014.064840 +M. Valliathal,An EOQ model for rebate value and selling-price-dependent demand rate with shortages.,2011,3,IJMOR,1,db/journals/ijmor/ijmor3.html#ValliathalU11,https://doi.org/10.1504/IJMOR.2011.037315 +Ibrahim Yusuf,Availability modelling and evaluation of a repairable system subject to minor deterioration under imperfect repairs.,2015,7,IJMOR,1,db/journals/ijmor/ijmor7.html#Yusuf15,https://doi.org/10.1504/IJMOR.2015.065955 +B. Krishna Kumar,Transient and steady-state analysis of queueing systems with catastrophes and impatient customers.,2014,6,IJMOR,5,db/journals/ijmor/ijmor6.html#KumarLAM14,https://doi.org/10.1504/IJMOR.2014.064838 +Lucas Létocart,Dantzig-Wolfe and Lagrangian decompositions in integer linear programming.,2012,4,IJMOR,3,db/journals/ijmor/ijmor4.html#LetocartNM12,https://doi.org/10.1504/IJMOR.2012.046686 +Joseph M. Elble,A review of LU factorisation in the simplex algorithm.,2012,4,IJMOR,4,db/journals/ijmor/ijmor4.html#ElbleS12,https://doi.org/10.1504/IJMOR.2012.048900 +Yuheng Cao,A stochastic linear programming modelling and solution approach for planning the supply of rewards in Loyalty Reward Programs.,2012,4,IJMOR,4,db/journals/ijmor/ijmor4.html#CaoND12,https://doi.org/10.1504/IJMOR.2012.048902 +Mohsen Okazi,Application of Differential Transformation Methods to non-linear natural frequencies of an elastically restrained tapered beam.,2011,3,IJMOR,5,db/journals/ijmor/ijmor3.html#OkaziG11,https://doi.org/10.1504/IJMOR.2011.042444 +Yidong Zhang,Longer term strategic decision making for coal-based power systems incorporating CO2 sequestration.,2017,11,IJMOR,2,db/journals/ijmor/ijmor11.html#ZhangK17,https://doi.org/10.1504/IJMOR.2017.10007428 +Anand Chauhan,Optimal replenishment and ordering policy for time dependent demand and deterioration with discounted cash flow analysis.,2014,6,IJMOR,4,db/journals/ijmor/ijmor6.html#ChauhanS14,https://doi.org/10.1504/IJMOR.2014.063155 +Konstantinos Papapanagiotou,Managing supply chain disruption risks: a game-theoretical approach.,2012,4,IJMOR,5,db/journals/ijmor/ijmor4.html#PapapanagiotouV12,https://doi.org/10.1504/IJMOR.2012.048929 +Mohd. Nishat Faisal,An analytic process model for selection of infectious waste management contractors.,2011,3,IJMOR,4,db/journals/ijmor/ijmor3.html#FaisalKF11,https://doi.org/10.1504/IJMOR.2011.040873 +Avik Pradhan,Multi-level linear programming problem involving some multi-choice parameters.,2015,7,IJMOR,3,db/journals/ijmor/ijmor7.html#PradhanB15a,https://doi.org/10.1504/IJMOR.2015.069150 +Soumia Kharfouchi,Conditions for the existence of stationary and causal space-time bilinear model and central limit theorem.,2012,4,IJMOR,6,db/journals/ijmor/ijmor4.html#KharfouchiM12,https://doi.org/10.1504/IJMOR.2012.049937 +Wakhid Ahmad Jauhari,A supply chain inventory model for vendor-buyer system with defective items and imperfect inspection process.,2017,11,IJMOR,4,db/journals/ijmor/ijmor11.html#JauhariWR17,https://doi.org/10.1504/IJMOR.2017.10008664 +Abd El-Moneim AnwarMohamed Teamah,Random search in a bounded area.,2017,10,IJMOR,2,db/journals/ijmor/ijmor10.html#TeamahGE17,https://doi.org/10.1504/IJMOR.2017.10002018 +Prabhakar Tiwari,Enumeration of spanning trees of graph: alternative methods.,2011,3,IJMOR,2,db/journals/ijmor/ijmor3.html#TiwariIS11,https://doi.org/10.1504/IJMOR.2011.038909 +Noureddine Jilani Ben Naouara,General undiscounted nonlinear optimal multiple stopping of linear diffusions with boundary classification.,2015,7,IJMOR,6,db/journals/ijmor/ijmor7.html#NaouaraT15,https://doi.org/10.1504/IJMOR.2015.072275 +Hossein Khanjarpanah,A fuzzy robust programming approach to multi-objective portfolio optimisation problem under uncertainty.,2018,12,IJMOR,1,db/journals/ijmor/ijmor12.html#KhanjarpanahP18,https://doi.org/10.1504/IJMOR.2018.10009194 +P. Rajadurai,Analysis of M[X]/G/1 retrial queue with two phase service under Bernoulli vacation schedule and random breakdown.,2015,7,IJMOR,1,db/journals/ijmor/ijmor7.html#RajaduraiVSC15,https://doi.org/10.1504/IJMOR.2015.065946 +X. Zhang,Optimality conditions and solution methodology for parameter selection in DEA.,2011,3,IJMOR,3,db/journals/ijmor/ijmor3.html#ZhangE11,https://doi.org/10.1504/IJMOR.2011.040025 +Mohammad Nikzamir,Applying a hybrid transportation system to design an agile multi-product and multi-echelon dynamic supply chain.,2017,10,IJMOR,3,db/journals/ijmor/ijmor10.html#Nikzamir17,https://doi.org/10.1504/IJMOR.2017.10003340 +Aliakbar Montazer-Haghighi,Single-server Poisson queueing system with splitting and delayed-feedback: Part I.,2011,3,IJMOR,1,db/journals/ijmor/ijmor3.html#Montazer-Haghighi11,https://doi.org/10.1504/IJMOR.2011.037310 +Martin Gavalec,Optimal consistent approximation of a preference matrix in decision making.,2016,9,IJMOR,4,db/journals/ijmor/ijmor9.html#GavalecT16,https://doi.org/10.1504/IJMOR.2016.10000359 +S. K. Gupta,Mond-Weir type nondifferentiable multiobjective second-order symmetric duality with cone constraints.,2011,3,IJMOR,4,db/journals/ijmor/ijmor3.html#GuptaKS11,https://doi.org/10.1504/IJMOR.2011.040876 +Shreyasi Jana,Equilibrium and mixed equilibrium problems on Hadamard manifolds.,2017,11,IJMOR,4,db/journals/ijmor/ijmor11.html#JanaN17,https://doi.org/10.1504/IJMOR.2017.10008666 +Lamia Benothman,Asymptotic analysis of European and American options with jumps in the underlying.,2012,4,IJMOR,5,db/journals/ijmor/ijmor4.html#BenothmanT12,https://doi.org/10.1504/IJMOR.2012.048931 +Madhu Jain,Transient analysis of hardware and software systems with warm standbys and switching failures.,2014,6,IJMOR,1,db/journals/ijmor/ijmor6.html#JainR14,https://doi.org/10.1504/IJMOR.2014.057842 +Kaj-Mikael Björk,A heuristical solution method to separable nonlinear programming problems.,2016,9,IJMOR,2,db/journals/ijmor/ijmor9.html#BjorkM16,https://doi.org/10.1504/IJMOR.2016.10000112 +Subrata Saha,Optimal pricing and production lot-sizing for seasonal products over a finite horizon.,2010,2,IJMOR,5,db/journals/ijmor/ijmor2.html#SahaDB10,https://doi.org/10.1504/IJMOR.2010.034340 +P. Vijaya Laxmi,Performance analysis of variant working vacation queue with balking and reneging.,2014,6,IJMOR,4,db/journals/ijmor/ijmor6.html#LaxmiJ14,https://doi.org/10.1504/IJMOR.2014.063158 +Madhu Jain,Availability analysis of repairable redundant system with three types of failures subject to common cause failure.,2014,6,IJMOR,3,db/journals/ijmor/ijmor6.html#JainG14,https://doi.org/10.1504/IJMOR.2014.060849 +Mohamed Abd Allah El-Hadidy,Searching for a d-dimensional Brownian target with multiple sensors.,2016,9,IJMOR,3,db/journals/ijmor/ijmor9.html#El-Hadidy16,https://doi.org/10.1504/IJMOR.2016.10000114 +Lila Rasekh,A two-level interior-point decomposition algorithm for multi-stage stochastic capacity planning and technology acquisition.,2011,3,IJMOR,3,db/journals/ijmor/ijmor3.html#RasekhD11,https://doi.org/10.1504/IJMOR.2011.040027 +P. K. Kapur,Testing-effort-dependent software reliability growth model for a distributed environment using debugging time lag functions.,2012,4,IJMOR,1,db/journals/ijmor/ijmor4.html#KapurJK12,https://doi.org/10.1504/IJMOR.2012.044470 +Ronald G. McGarvey,Determining the location and capacity of competitive facilities.,2010,2,IJMOR,6,db/journals/ijmor/ijmor2.html#McGarveyC10,https://doi.org/10.1504/IJMOR.2010.035495 +Chinnasamy Parthasarathy,Existence and stability solutions of nonlinear stochastic functional partial integrodifferential equations with infinite delay.,2016,9,IJMOR,1,db/journals/ijmor/ijmor9.html#ParthasarathyAV16,https://doi.org/10.1504/IJMOR.2016.077561 +R. Sebasthi Priya,Transient analysis of a discrete-time infinite server queue with system disaster.,2018,12,IJMOR,1,db/journals/ijmor/ijmor12.html#PriyaS18,https://doi.org/10.1504/IJMOR.2018.10009198 +Yvel Javel,Measurement of clients' satisfaction on appointment assignment.,2010,2,IJMOR,5,db/journals/ijmor/ijmor2.html#JavelRP10,https://doi.org/10.1504/IJMOR.2010.034344 +Gour Chandra Mahata,An integrated production-inventory model with backorder and lot for lot policy in fuzzy sense.,2015,7,IJMOR,1,db/journals/ijmor/ijmor7.html#Mahata15,https://doi.org/10.1504/IJMOR.2015.065958 +Shweta Upadhyaya,Admission control of bulk retrial feedback queue with K-optional vacations.,2015,7,IJMOR,2,db/journals/ijmor/ijmor7.html#Upadhyaya15,https://doi.org/10.1504/IJMOR.2015.068293 +Shweta Upadhyaya,Performance analysis of a batch arrival retrial queue with Bernoulli feedback.,2014,6,IJMOR,6,db/journals/ijmor/ijmor6.html#Upadhyaya14,https://doi.org/10.1504/IJMOR.2014.065423 +Kamran Azimi,A heuristic method to solve the location and machine selection problem in a two-dimensional continuous area.,2016,8,IJMOR,4,db/journals/ijmor/ijmor8.html#AzimiS16,https://doi.org/10.1504/IJMOR.2016.076786 +Nirbhay Mathur,Algorithms for solving fuzzy transportation problem.,2018,12,IJMOR,2,db/journals/ijmor/ijmor12.html#MathurSP18,https://doi.org/10.1504/IJMOR.2018.10010216 +Michel Gourgand,Metaheuristic for the capacitated lot-sizing problem: a software tool for MPS elaboration.,2010,2,IJMOR,6,db/journals/ijmor/ijmor2.html#GourgandLN10,https://doi.org/10.1504/IJMOR.2010.035496 +T. Vijayalakshmi,Transient analysis of a fluid queue driven by a chain sequenced birth and death process with catastrophes.,2016,8,IJMOR,2,db/journals/ijmor/ijmor8.html#VijayalakshmiT16,https://doi.org/10.1504/IJMOR.2016.074853 +Mohammad Mahmoudi Maymand,Using of FAHP and fuzzy TOPSIS techniques for prioritising of Iranian banks to customer relationship management factors.,2017,11,IJMOR,3,db/journals/ijmor/ijmor11.html#MaymandK17,https://doi.org/10.1504/IJMOR.2017.10007863 +M. Venkataramana,Ant colony-based algorithms for scheduling parallel batch processors with incompatible job families.,2010,2,IJMOR,1,db/journals/ijmor/ijmor2.html#VenkataramanaR10,https://doi.org/10.1504/IJMOR.2010.029691 +Ming Liu,Mixed-collaborative distribution mode for emergency resources in an anti-bioterrorism system.,2011,3,IJMOR,2,db/journals/ijmor/ijmor3.html#LiuZS11,https://doi.org/10.1504/IJMOR.2011.038908 +Mehdi Seifbarghy,A tabu search-based heuristic for a new capacitated cyclic inventory routing problem.,2014,6,IJMOR,4,db/journals/ijmor/ijmor6.html#SeifbarghyS14,https://doi.org/10.1504/IJMOR.2014.063159 +Luiz Paulo Lopes Fávero,The zero-inflated negative binomial multilevel model: demonstrated by a Brazilian dataset.,2017,11,IJMOR,1,db/journals/ijmor/ijmor11.html#Favero17,https://doi.org/10.1504/IJMOR.2017.10006269 +Madhu Jain,Maximum Entropy Approach for discrete-time unreliable server GeoX/Geo/1 queue with working vacation.,2012,4,IJMOR,1,db/journals/ijmor/ijmor4.html#JainSS12,https://doi.org/10.1504/IJMOR.2012.044473 +Xiangling Hu,Adjusting service performance criteria based on categorised information from previous reports.,2013,5,IJMOR,3,db/journals/ijmor/ijmor5.html#HuM13,https://doi.org/10.1504/IJMOR.2013.053628 +T. Jayanth Kumar,An exact algorithm for multi-constrained minimum spanning tree problem.,2018,12,IJMOR,3,db/journals/ijmor/ijmor12.html#KumarS18,https://doi.org/10.1504/IJMOR.2018.10010953 +K. Antony Arokia Durai Raj,Meta-heuristic to estimate parameters in Non-Linear Regression Models.,2011,3,IJMOR,5,db/journals/ijmor/ijmor3.html#RajKA11,https://doi.org/10.1504/IJMOR.2011.042439 +P. C. Jha,Bi-criterion release time problem for a discrete SRGM under fuzzy environment.,2011,3,IJMOR,6,db/journals/ijmor/ijmor3.html#JhaISG11,https://doi.org/10.1504/IJMOR.2011.043016 +Faouzi Trabelsi,Study of undiscounted non-linear optimal multiple stopping problems on unbounded intervals.,2013,5,IJMOR,2,db/journals/ijmor/ijmor5.html#Trabelsi13,https://doi.org/10.1504/IJMOR.2013.052462 +Madhu Jain,Load sharing M-out of-N: G system with non-identical components subject to common cause failure.,2012,4,IJMOR,5,db/journals/ijmor/ijmor4.html#JainG12,https://doi.org/10.1504/IJMOR.2012.048932 +B. C. Giri,A vendor-buyer supply chain model for time-dependent deteriorating item with preservation technology investment.,2017,10,IJMOR,4,db/journals/ijmor/ijmor10.html#GiriPM17,https://doi.org/10.1504/IJMOR.2017.10005073 +Jiang Zhang,Interchanging fill rate constraints and backorder costs in inventory models.,2012,4,IJMOR,4,db/journals/ijmor/ijmor4.html#ZhangS12,https://doi.org/10.1504/IJMOR.2012.048905 +Roshli Aniyeri,Passengers queue analysis in international airports terminals in Kerala using multiphase queuing system.,2018,12,IJMOR,1,db/journals/ijmor/ijmor12.html#AniyeriN18,https://doi.org/10.1504/IJMOR.2018.10005038 +Pisut Pongchairerks,Efficient local search algorithms for job-shop scheduling problems.,2016,9,IJMOR,2,db/journals/ijmor/ijmor9.html#Pongchairerks16,https://doi.org/10.1504/IJMOR.2016.10000043 +Kartik Patra,Risk analysis in a production system using fuzzy cognitive map.,2017,11,IJMOR,1,db/journals/ijmor/ijmor11.html#PatraM17,https://doi.org/10.1504/IJMOR.2017.10006266 +P. Lakshmi,Exploring the usage of econometric techniques in nonlinear machine learning and data mining.,2016,9,IJMOR,3,db/journals/ijmor/ijmor9.html#LakshmiV16,https://doi.org/10.1504/IJMOR.2016.10000130 +Madhu Jain,Unreliable server M/G/1 queue with multi-optional services and multi-optional vacations.,2013,5,IJMOR,2,db/journals/ijmor/ijmor5.html#JainSS13,https://doi.org/10.1504/IJMOR.2013.052458 +P. V. Ushakumari,A retrial inventory system with an unreliable server.,2017,10,IJMOR,2,db/journals/ijmor/ijmor10.html#Ushakumari17,https://doi.org/10.1504/IJMOR.2017.10002021 +Soumendra Kumar Patra,Designing a computational tool for supplier selection using analytical hierarchy process.,2015,7,IJMOR,4,db/journals/ijmor/ijmor7.html#PatraD15,https://doi.org/10.1504/IJMOR.2015.070187 +Ayeley P. Tchangani,Quantitative modelling of benchmarking process.,2010,2,IJMOR,5,db/journals/ijmor/ijmor2.html#Tchangani10,https://doi.org/10.1504/IJMOR.2010.034343 +Mohamed H. Gadallah,Computer simulation-based optimisation: hybrid branch and bound and orthogonal array-based enumeration algorithm.,2010,2,IJMOR,5,db/journals/ijmor/ijmor2.html#Gadallah10,https://doi.org/10.1504/IJMOR.2010.034341 +Maged G. Iskander,A suggested approach for solving fuzzy stochastic multiobjective programming problems in the case of discrete random variables.,2014,6,IJMOR,2,db/journals/ijmor/ijmor6.html#Iskander14,https://doi.org/10.1504/IJMOR.2014.059535 +Laith A. Hadidi,An integrated cost model for production scheduling and perfect maintenance.,2011,3,IJMOR,4,db/journals/ijmor/ijmor3.html#HadidiAR11,https://doi.org/10.1504/IJMOR.2011.040875 +Madhu Jain,Queueing analysis and channel assignment scheme for cellular radio system with GPRS services.,2014,6,IJMOR,6,db/journals/ijmor/ijmor6.html#JainSM14,https://doi.org/10.1504/IJMOR.2014.065424 +Ioane Muni Toke,On completion * in a two-class priority queue with impatience.,2014,6,IJMOR,3,db/journals/ijmor/ijmor6.html#Toke14,https://doi.org/10.1504/IJMOR.2014.060855 +Deo Datta Aarya,A production inventory model with selling price and stock sensitive demand under partial backlogging.,2018,12,IJMOR,3,db/journals/ijmor/ijmor12.html#AaryaK18,https://doi.org/10.1504/IJMOR.2018.10010955 +Adel Hatami-Marbini,An extension of the linear programming method with fuzzy parameters.,2011,3,IJMOR,1,db/journals/ijmor/ijmor3.html#Hatami-MarbiniT11,https://doi.org/10.1504/IJMOR.2011.037312 +Alireza Amirteimoori,Multi-period efficiency analysis in data envelopment analysis.,2010,2,IJMOR,1,db/journals/ijmor/ijmor2.html#AmirteimooriK10,https://doi.org/10.1504/IJMOR.2010.029693 +Seyed Hamid Reza Pasandideh,A multi objective model for determining ordering strategy within different constraints.,2015,7,IJMOR,1,db/journals/ijmor/ijmor7.html#PasandidehK15,https://doi.org/10.1504/IJMOR.2015.065957 +Lihui Bai,An incentive-based method for hospital capacity management in a pandemic: the assignment approach.,2014,6,IJMOR,4,db/journals/ijmor/ijmor6.html#BaiZ14,https://doi.org/10.1504/IJMOR.2014.063157 +Rakesh P. Badoni,A new approach for university timetabling problems.,2014,6,IJMOR,2,db/journals/ijmor/ijmor6.html#BadoniGL14,https://doi.org/10.1504/IJMOR.2014.059537 +Reza Hassanzadeh,An α-cut approach for fuzzy product and its use in computing solutions of fully fuzzy linear systems.,2018,12,IJMOR,2,db/journals/ijmor/ijmor12.html#HassanzadehMMT18,https://doi.org/10.1504/IJMOR.2018.10010214 +Selma Jayech,A copula-based approach to financial contagion in the foreign exchange markets.,2011,3,IJMOR,6,db/journals/ijmor/ijmor3.html#JayechZ11,https://doi.org/10.1504/IJMOR.2011.043014 +P. Phani Bushan Rao,Fuzzy critical path analysis based on centroid of centroids of fuzzy numbers and new subtraction method.,2013,5,IJMOR,2,db/journals/ijmor/ijmor5.html#RaoS13,https://doi.org/10.1504/IJMOR.2013.052461 +A. Tsoularis,Deterministic and stochastic optimal inventory control with logistic stock-dependent demand rate.,2014,6,IJMOR,1,db/journals/ijmor/ijmor6.html#Tsoularis14,https://doi.org/10.1504/IJMOR.2014.057851 +Tseng-Chang Yen,Cost benefit analysis of three systems with imperfect coverage and standby switching failures.,2018,12,IJMOR,2,db/journals/ijmor/ijmor12.html#YenW18,https://doi.org/10.1504/IJMOR.2018.10010220 +Archana Khurana,On a class of capacitated transshipment problems with bounds on rim conditions.,2015,7,IJMOR,3,db/journals/ijmor/ijmor7.html#KhuranaV15,https://doi.org/10.1504/IJMOR.2015.069142 +Hardik N. Soni,Optimal policies for vendor-buyer inventory system involving defective items with variable lead time and service level constraint.,2014,6,IJMOR,3,db/journals/ijmor/ijmor6.html#SoniP14,https://doi.org/10.1504/IJMOR.2014.060851 +Trevor S. Hale,Some more average distance results.,2017,10,IJMOR,3,db/journals/ijmor/ijmor10.html#HaleLH17,https://doi.org/10.1504/IJMOR.2017.10003343 +Mohammed A. Darwish,Vendor Managed Inventory models under contractual agreement.,2012,4,IJMOR,2,db/journals/ijmor/ijmor4.html#DarwishOG12,https://doi.org/10.1504/IJMOR.2012.046376 +M. Valliathal,Optimal replenishment policies of an EOQ model for non-instantaneous Weibull deteriorating items with ramp-type of demand under shortages.,2016,8,IJMOR,1,db/journals/ijmor/ijmor8.html#ValliathalU16,https://doi.org/10.1504/IJMOR.2016.073279 +Ali Azadeh,A novel hybrid fuzzy logic-genetic algorithm-data envelopment approach for simulation optimisation of pressure vessel design problems.,2012,4,IJMOR,6,db/journals/ijmor/ijmor4.html#AzadehAHA12,https://doi.org/10.1504/IJMOR.2012.049940 +Aziz Kutlar,Efficiency of commercial banks in Turkey and their comparison: application of DEA with Tobit analysis.,2017,10,IJMOR,1,db/journals/ijmor/ijmor10.html#KutlarKE17,https://doi.org/10.1504/IJMOR.2017.10000859 +Biswajit Sarkar,A finite replenishment model with increasing demand under inflation.,2010,2,IJMOR,3,db/journals/ijmor/ijmor2.html#SarkarSC10,https://doi.org/10.1504/IJMOR.2010.032723 +H. Salehi Fathabadi,Reliability evaluation of network flows with stochastic capacity and cost constraint.,2012,4,IJMOR,4,db/journals/ijmor/ijmor4.html#FathabadiK12,https://doi.org/10.1504/IJMOR.2012.048904 +Nasser Shahsavari-Pour,A novel method for ranking fuzzy numbers based on the different areas fuzzy number.,2017,11,IJMOR,4,db/journals/ijmor/ijmor11.html#Shahsavari-Pour17a,https://doi.org/10.1504/IJMOR.2017.10008669 +David Booth,On the mathematics behind the entropy diversification measure in strategic management.,2009,1,IJMOR,4,db/journals/ijmor/ijmor1.html#BoothB09,https://doi.org/10.1504/IJMOR.2009.026280 +Anurag Jayswal,Second order duality for non-differentiable minimax programming problems involving generalised α-type-I functions.,2014,6,IJMOR,3,db/journals/ijmor/ijmor6.html#JayswalK14,https://doi.org/10.1504/IJMOR.2014.060852 +Satyajit Das,Similarity measure of intuitionistic fuzzy numbers and its application to clustering.,2017,10,IJMOR,4,db/journals/ijmor/ijmor10.html#DasG17,https://doi.org/10.1504/IJMOR.2017.10005072 +Nedal Tahat,A proxy partially blind signature approach using elliptic curve cryptosystem.,2016,8,IJMOR,1,db/journals/ijmor/ijmor8.html#TahatA16,https://doi.org/10.1504/IJMOR.2016.073280 +Masoumeh Kazemi Zanjani,A stochastic programming approach for sawmill production planning.,2013,5,IJMOR,1,db/journals/ijmor/ijmor5.html#ZanjaniAN13,https://doi.org/10.1504/IJMOR.2013.050604 +Robert A. Nehmer,Accounting systems as first order axiomatic models: consequences for information theory.,2010,2,IJMOR,1,db/journals/ijmor/ijmor2.html#Nehmer10,https://doi.org/10.1504/IJMOR.2010.029692 +A. Baskar,Analysing a few trigonometric solutions for the Fermat-Weber facility location triangle problem with and without repulsion and generalising the solutions.,2017,10,IJMOR,2,db/journals/ijmor/ijmor10.html#Baskar17,https://doi.org/10.1504/IJMOR.2017.10002019 +Ananya Chakraborty,Duality in fuzzy multi objective linear programming problem with multi constraint.,2014,6,IJMOR,3,db/journals/ijmor/ijmor6.html#ChakrabortyTCC14,https://doi.org/10.1504/IJMOR.2014.060850 +Rohit Kapoor,A simulation- and genetic algorithm-based optimisation of closed-loop multi-echelon inventory system.,2016,8,IJMOR,1,db/journals/ijmor/ijmor8.html#KapoorSS16,https://doi.org/10.1504/IJMOR.2016.073278 +Frederic Pereyrol,A multi-level technical data model for production planning.,2010,2,IJMOR,5,db/journals/ijmor/ijmor2.html#PereyrolDAB10,https://doi.org/10.1504/IJMOR.2010.034342 +S. K. Ghosh,An inventory model for a deteriorating item with two levels of storage and stock-dependent demand.,2011,3,IJMOR,2,db/journals/ijmor/ijmor3.html#GhoshKC11,https://doi.org/10.1504/IJMOR.2011.038910 +S. K. Padhan,Second- and higher-order generalised invexity and duality in mathematical programming.,2013,5,IJMOR,2,db/journals/ijmor/ijmor5.html#PadhanN13,https://doi.org/10.1504/IJMOR.2013.052459 +Mojtaba Kaveh,A simulated annealing algorithm for aggregate production planning with considering of ancillary costs.,2014,6,IJMOR,4,db/journals/ijmor/ijmor6.html#KavehD14,https://doi.org/10.1504/IJMOR.2014.063163 +Mijanur Rahaman Seikh,Notes on triangular intuitionistic fuzzy numbers.,2013,5,IJMOR,4,db/journals/ijmor/ijmor5.html#SeikhNP13,https://doi.org/10.1504/IJMOR.2013.054730 +Ali Khaleel Dhaiban,An optimal inventory control in hybrid manufacturing/remanufacturing system with deteriorating and defective items.,2018,12,IJMOR,1,db/journals/ijmor/ijmor12.html#DhaibanBA18,https://doi.org/10.1504/IJMOR.2018.10009193 +Bheeman Radhakrishnan,A compensatory approach to fuzzy fractional transportation problem.,2014,6,IJMOR,2,db/journals/ijmor/ijmor6.html#RadhakrishnanA14,https://doi.org/10.1504/IJMOR.2014.059527 +Armaghan Heidarzade,Multiple attribute group decision making method using a new similarity measure in interval type-2 fuzzy sets: a case study.,2016,9,IJMOR,2,db/journals/ijmor/ijmor9.html#HeidarzadeMM16,https://doi.org/10.1504/IJMOR.2016.10000052 +N. W. Khobragade,Approximation algorithm for optimal solution to the linear programming problem.,2014,6,IJMOR,2,db/journals/ijmor/ijmor6.html#KhobragadeVL14,https://doi.org/10.1504/IJMOR.2014.059528 +Ming Zhou,An empirical test of Tobit model robustness in estimating online auction prices over various distributions.,2017,10,IJMOR,4,db/journals/ijmor/ijmor10.html#ZhouTP17,https://doi.org/10.1504/IJMOR.2017.10005074 +Geeta Sachdev,Symmetric duality for multi-objective second-order fractional programs.,2018,12,IJMOR,2,db/journals/ijmor/ijmor12.html#Sachdev18,https://doi.org/10.1504/IJMOR.2018.10010218 +Guichang Zhang,Infinite-server queues with time-varying rates.,2013,5,IJMOR,1,db/journals/ijmor/ijmor5.html#ZhangS13,https://doi.org/10.1504/IJMOR.2013.050514 +Joseph M. Elble,A review of the LU update in the simplex algorithm.,2012,4,IJMOR,4,db/journals/ijmor/ijmor4.html#ElbleS12a,https://doi.org/10.1504/IJMOR.2012.048901 +Jaroslav Ramík,Incomplete preference matrix on Alo-group and its application to ranking of alternatives.,2016,9,IJMOR,4,db/journals/ijmor/ijmor9.html#Ramik16,https://doi.org/10.1504/IJMOR.2016.10000337 +Yan Ni,A Markov decision process model of allocating emergency medical resource among multi-priority injuries.,2017,10,IJMOR,1,db/journals/ijmor/ijmor10.html#NiWZ17,https://doi.org/10.1504/IJMOR.2017.10000854 +Debiprasad Acharya,On logarithmic fixed-charge transportation problem.,2018,12,IJMOR,4,db/journals/ijmor/ijmor12.html#AcharyaBD18,https://doi.org/10.1504/IJMOR.2018.10011880 +Kenneth Barroga,A mathematical investigation of Rao diversity coefficients among the communities according to species morphometry and species taxonomy.,2018,12,IJMOR,4,db/journals/ijmor/ijmor12.html#Barroga18,https://doi.org/10.1504/IJMOR.2018.10011881 +C. Patvardhan,Novel quantum-inspired evolutionary algorithms for the quadratic knapsack problem.,2012,4,IJMOR,2,db/journals/ijmor/ijmor4.html#PatvardhanPS12,https://doi.org/10.1504/IJMOR.2012.046373 +Rajeev Kumar,Cost-benefit and performance analysis of a stochastic model on printed circuit boards manufacturing process.,2016,8,IJMOR,4,db/journals/ijmor/ijmor8.html#KumarB16,https://doi.org/10.1504/IJMOR.2016.076789 +Mohammed A. Hajeeh,Availability of a system with different repair options.,2012,4,IJMOR,1,db/journals/ijmor/ijmor4.html#Hajeeh12,https://doi.org/10.1504/IJMOR.2012.044472 +Dilbagh Panchal,Fuzzy methodology application for failure analysis of transmission system.,2018,12,IJMOR,2,db/journals/ijmor/ijmor12.html#PanchalJSKS18,https://doi.org/10.1504/IJMOR.2018.10010217 +Gökhan Akyüz,Coordinating a three-stage closed-loop supply chain considering the effects of changes in the return rates and number of plants.,2011,3,IJMOR,5,db/journals/ijmor/ijmor3.html#AkyuzUK11,https://doi.org/10.1504/IJMOR.2011.042443 +Pavan Kumar,Multi-objective linear fractional inventory model of multi-products with price-dependant demand rate in fuzzy environment.,2015,7,IJMOR,5,db/journals/ijmor/ijmor7.html#KumarD15,https://doi.org/10.1504/IJMOR.2015.071280 +G. Srinivasa Rao,Estimation of stress-strength reliability from truncated type-I generalised logistic distribution.,2015,7,IJMOR,4,db/journals/ijmor/ijmor7.html#Rao15,https://doi.org/10.1504/IJMOR.2015.070188 +Madhu Jain,Quasi renewal analysis of software reliability growth model incorporating testing efforts and time delay.,2013,5,IJMOR,6,db/journals/ijmor/ijmor5.html#JainJ13,https://doi.org/10.1504/IJMOR.2013.057490 +Seyed Hamid Reza Pasandideh,A multiproduct EOQ model with permissible delay in payments and shortage within warehouse space constraint: a genetic algorithm approach.,2017,10,IJMOR,3,db/journals/ijmor/ijmor10.html#PasandidehNF17,https://doi.org/10.1504/IJMOR.2017.10003342 +Pravash Kumar Giri,A solid transportation problem with fuzzy random costs and constraints.,2012,4,IJMOR,6,db/journals/ijmor/ijmor4.html#GiriMM12,https://doi.org/10.1504/IJMOR.2012.049938 +Ririn Diar Astanti,A repetitive forward rolling technique for inventory policy with non-linear increasing demand pattern considering shortage.,2014,6,IJMOR,2,db/journals/ijmor/ijmor6.html#AstantiL14,https://doi.org/10.1504/IJMOR.2014.059524 +Samayan Narayanamoorthy,Fuzzy transportation problem with hyperbolic function.,2013,5,IJMOR,5,db/journals/ijmor/ijmor5.html#Narayanamoorthy13,https://doi.org/10.1504/IJMOR.2013.056120 +David Koloseni,Feature-wise differential evolution classifier with an OWA-based multi-distance aggregation.,2016,9,IJMOR,4,db/journals/ijmor/ijmor9.html#KoloseniFLCL16,https://doi.org/10.1504/IJMOR.2016.10000347 +Aliakbar Montazer-Haghighi,Busy period of a single-server Poisson queueing system with splitting and batch delayed-feedback.,2016,8,IJMOR,2,db/journals/ijmor/ijmor8.html#Montazer-Haghighi16,https://doi.org/10.1504/IJMOR.2016.074859 +Arnaud Pêcher,Polynomial time computability of some graph parameters for superclasses of perfect graphs.,2012,4,IJMOR,3,db/journals/ijmor/ijmor4.html#PecherW12,https://doi.org/10.1504/IJMOR.2012.046687 +Sarat Kumar Acharya,Maximum likelihood estimates in an M/M/c queue with heterogeneous servers.,2013,5,IJMOR,4,db/journals/ijmor/ijmor5.html#AcharyaRV13,https://doi.org/10.1504/IJMOR.2013.054735 +Anamika Jain,Multi server machine repair problem with unreliable server and two types of spares under asynchronous vacation policy.,2017,10,IJMOR,3,db/journals/ijmor/ijmor10.html#JainJ17,https://doi.org/10.1504/IJMOR.2017.10003341 +I. Venkat Appal Raju,Growth Optimal Portfolio for unobservable Markov-modulated markets.,2012,4,IJMOR,1,db/journals/ijmor/ijmor4.html#RajuS12,https://doi.org/10.1504/IJMOR.2012.044471 +Salim Haddadi,A two-phase heuristic for set covering.,2018,13,IJMOR,1,db/journals/ijmor/ijmor13.html#HaddadiCS18,https://doi.org/10.1504/IJMOR.2018.10013170 +Shilpy Tayal,Two echelon supply chain model for deteriorating items with effective investment in preservation technology.,2014,6,IJMOR,1,db/journals/ijmor/ijmor6.html#TayalSSC14,https://doi.org/10.1504/IJMOR.2014.057854 +Nima Safaei,An integrated storage space and berth allocation problem in a container terminal.,2010,2,IJMOR,6,db/journals/ijmor/ijmor2.html#SafaeiBA10,https://doi.org/10.1504/IJMOR.2010.035494 +Mhand Hifi,Beam search and non-linear programming tools for the circular packing problem.,2009,1,IJMOR,4,db/journals/ijmor/ijmor1.html#HifiM09,https://doi.org/10.1504/IJMOR.2009.026278 +R. P. Tripathi,Economic order quantity model for deteriorating items with time-dependent demand rate under time varying shortages.,2015,7,IJMOR,6,db/journals/ijmor/ijmor7.html#TripathiU15,https://doi.org/10.1504/IJMOR.2015.072278 +Sumit Raut,A novel constraint propagation approach for airline schedule design problem.,2017,10,IJMOR,4,db/journals/ijmor/ijmor10.html#RautGJ17,https://doi.org/10.1504/IJMOR.2017.10005076 +Anthony D. Ross,Repositioning of reusable containers in a sustainable global supply chain environment.,2010,2,IJMOR,2,db/journals/ijmor/ijmor2.html#RossJRM10,https://doi.org/10.1504/IJMOR.2010.030816 +Sahar Khoshfetrat,Efficiency improvement of decision making units: a new data envelopment analysis model.,2015,7,IJMOR,6,db/journals/ijmor/ijmor7.html#KhoshfetratG15,https://doi.org/10.1504/IJMOR.2015.072279 +Masoud Mohammadzadeh,A new agile fuzzy multi-objective model for selecting/eliminating supplier.,2016,8,IJMOR,3,db/journals/ijmor/ijmor8.html#MohammadzadehK16,https://doi.org/10.1504/IJMOR.2016.075516 +Taniya Sarkar Roy,An economic production quantity model for items with time proportional deterioration under permissible delay in payments.,2013,5,IJMOR,3,db/journals/ijmor/ijmor5.html#RoyGC13,https://doi.org/10.1504/IJMOR.2013.053625 +Reza Kiani Mavi,A group decision-making method for target setting in data envelopment analysis.,2010,2,IJMOR,4,db/journals/ijmor/ijmor2.html#MaviMA10,https://doi.org/10.1504/IJMOR.2010.033436 +Promila Kumar,Duality for non-differentiable multi-objective semi-infinite programming for higher order invex functions.,2018,12,IJMOR,4,db/journals/ijmor/ijmor12.html#KumarJ18,https://doi.org/10.1504/IJMOR.2018.10011878 +Viet Hung Nguyen,Approximating the asymmetric profitable tour.,2012,4,IJMOR,3,db/journals/ijmor/ijmor4.html#NguyenN12,https://doi.org/10.1504/IJMOR.2012.046689 +Sathi Mukherjee,Fuzzy programming technique for solving the shortest path problem on networks under triangular and trapezoidal fuzzy environment.,2015,7,IJMOR,5,db/journals/ijmor/ijmor7.html#Mukherjee15,https://doi.org/10.1504/IJMOR.2015.071282 +Pisut Pongchairerks,Variable neighbourhood search algorithms applied to job-shop scheduling problems.,2014,6,IJMOR,6,db/journals/ijmor/ijmor6.html#Pongchairerks14,https://doi.org/10.1504/IJMOR.2014.065421 +Charanjeet Singh,Analysis of single server finite queueing model with reneging.,2016,9,IJMOR,1,db/journals/ijmor/ijmor9.html#SinghJK16,https://doi.org/10.1504/IJMOR.2016.077558 +Rodolfo Garza-Morales,Measurable order and simulation.,2016,9,IJMOR,1,db/journals/ijmor/ijmor9.html#Garza-MoralesGV16,https://doi.org/10.1504/IJMOR.2016.077562 +Arindum Mukhopadhyay,Stockout aversion in retailing supply chain using newsvendor models.,2016,8,IJMOR,2,db/journals/ijmor/ijmor8.html#MukhopadhyayG16,https://doi.org/10.1504/IJMOR.2016.074854 +Nasser Shahsavari-Pour,A new method for ranking of fuzzy numbers based on dual areas.,2016,8,IJMOR,2,db/journals/ijmor/ijmor8.html#Shahsavari-Pour16,https://doi.org/10.1504/IJMOR.2016.074858 +Mushtaq Ahmad Lone,Allocation problem in the presence of non-response: a mathematical programming approach.,2018,12,IJMOR,3,db/journals/ijmor/ijmor12.html#LoneMK18,https://doi.org/10.1504/IJMOR.2018.10004127 +Atanu Das,An algorithm for finding time-cost trade-off pairs in generalised bi-criterion capacitated transportation problem.,2015,7,IJMOR,4,db/journals/ijmor/ijmor7.html#DasAB15,https://doi.org/10.1504/IJMOR.2015.070196 +Ali Azadeh,Estimating and improving electricity demand function in residential sector with imprecise data by fuzzy regression.,2010,2,IJMOR,4,db/journals/ijmor/ijmor2.html#AzadehSGG10,https://doi.org/10.1504/IJMOR.2010.033437 +Z. A. Al-Hemyari,Optimised Shrinkage Testimator of reliability function in a failure-time model.,2012,4,IJMOR,6,db/journals/ijmor/ijmor4.html#Al-HemyariA12,https://doi.org/10.1504/IJMOR.2012.049935 +Avik Pradhan,A bi-level multi-choice programming problem.,2015,7,IJMOR,1,db/journals/ijmor/ijmor7.html#PradhanB15,https://doi.org/10.1504/IJMOR.2015.065945 +Ernest Croot III,Threshold results for the inventory cycle offsetting problem.,2013,5,IJMOR,2,db/journals/ijmor/ijmor5.html#CrootH13,https://doi.org/10.1504/IJMOR.2013.052463 +Sunil Kawale,A review on inventory models under trade credit.,2017,11,IJMOR,4,db/journals/ijmor/ijmor11.html#KawaleS17,https://doi.org/10.1504/IJMOR.2017.10008668 +Yasmina Djabali,Approximating service-time distributions by phase-type distributions in single-server queues: a strong stability approach.,2018,12,IJMOR,4,db/journals/ijmor/ijmor12.html#DjabaliRA18,https://doi.org/10.1504/IJMOR.2018.10005095 +M. Jain,Optimal repairable MX/G/1 queue with Bernoulli feedback and setup.,2012,4,IJMOR,6,db/journals/ijmor/ijmor4.html#JainU12,https://doi.org/10.1504/IJMOR.2012.049939 +K. Kalidass,Transient analysis of an M/M/1 queue with a repairable server and multiple vacations.,2014,6,IJMOR,2,db/journals/ijmor/ijmor6.html#KalidassGNK14,https://doi.org/10.1504/IJMOR.2014.059522 +Barun Das,A volume flexible fuzzy production inventory model under interactive and simulation approach.,2012,4,IJMOR,4,db/journals/ijmor/ijmor4.html#DasM12,https://doi.org/10.1504/IJMOR.2012.048903 +Xiaolu Wang,Patent-related decision-making with fuzzy real option analysis.,2016,9,IJMOR,4,db/journals/ijmor/ijmor9.html#WangC16,https://doi.org/10.1504/IJMOR.2016.10000340 +Moustapha Diaby,Linear programming formulation of the vertex colouring problem.,2010,2,IJMOR,3,db/journals/ijmor/ijmor2.html#Diaby10,https://doi.org/10.1504/IJMOR.2010.032718 +Arvind Kumar,Duality results for a second-order multiobjective fractional programming problem with generalised convexity.,2017,11,IJMOR,4,db/journals/ijmor/ijmor11.html#KumarG17,https://doi.org/10.1504/IJMOR.2017.10008663 +Anurag Jayswal,Optimality and duality in multiobjective programming involving higher order semilocally strong convexity.,2017,11,IJMOR,2,db/journals/ijmor/ijmor11.html#JayswalSA17,https://doi.org/10.1504/IJMOR.2017.10007430 +Sergei P. Sidorov,Algorithms for l1-norm minimisation of index tracking error and their performance.,2017,11,IJMOR,4,db/journals/ijmor/ijmor11.html#SidorovFK17,https://doi.org/10.1504/IJMOR.2017.10008667 +Pavla Rotterová,Probabilities of fuzzy events and their use in decision matrices.,2016,9,IJMOR,4,db/journals/ijmor/ijmor9.html#RotterovaP16,https://doi.org/10.1504/IJMOR.2016.10000341 +Rakesh Kumar,Economic analysis of M/M/c/N queue with retention of impatient customers.,2013,5,IJMOR,6,db/journals/ijmor/ijmor5.html#KumarS13,https://doi.org/10.1504/IJMOR.2013.057488 +M. Palanivel,Finite horizon EOQ model for non-instantaneous deteriorating items with probabilistic deterioration and partial backlogging under inflation.,2016,8,IJMOR,4,db/journals/ijmor/ijmor8.html#PalanivelU16,https://doi.org/10.1504/IJMOR.2016.076784 +Veena Goswami,Discrete-time batch service GI/Geo#47*1#47*N queue with accessible and non-accessible batches.,2010,2,IJMOR,2,db/journals/ijmor/ijmor2.html#GoswamiS10,https://doi.org/10.1504/IJMOR.2010.030818 +Parvaneh Loni,Impacts of quality and transportation on environmental costs in multi-stage multi-product green supply chain.,2016,9,IJMOR,3,db/journals/ijmor/ijmor9.html#LoniK16,https://doi.org/10.1504/IJMOR.2016.10000128 +P. Vijaya Laxmi,Renewal input infinite buffer batch service queue with single exponential working vacation and accessibility to batches.,2011,3,IJMOR,2,db/journals/ijmor/ijmor3.html#LaxmiM11,https://doi.org/10.1504/IJMOR.2011.038912 +Lev V. Utkin,Fuzzy decision making using the imprecise Dirichlet model.,2013,5,IJMOR,1,db/journals/ijmor/ijmor5.html#UtkinZ13,https://doi.org/10.1504/IJMOR.2013.050513 +Trevor S. Hale,On the expected distance of a random walk.,2015,7,IJMOR,3,db/journals/ijmor/ijmor7.html#HaleHLM15,https://doi.org/10.1504/IJMOR.2015.069135 +Elif Kongar,Solving the disassembly-to-order problem using linear physical programming.,2009,1,IJMOR,4,db/journals/ijmor/ijmor1.html#KongarG09,https://doi.org/10.1504/IJMOR.2009.026279 +Charanjeet Singh,MX/G/1 queuing model with state dependent arrival and Second Optional Vacation.,2012,4,IJMOR,1,db/journals/ijmor/ijmor4.html#SinghJK12,https://doi.org/10.1504/IJMOR.2012.044474 +Alessandro Persona,Systemability function to optimisation reliability in random environment.,2009,1,IJMOR,3,db/journals/ijmor/ijmor1.html#PersonaSP09,https://doi.org/10.1504/IJMOR.2009.024292 +Jomon Aliyas Paul,Efficient operating room redesign through process improvement and optimal management of scheduled and emergent surgeries.,2013,5,IJMOR,3,db/journals/ijmor/ijmor5.html#PaulJ13,https://doi.org/10.1504/IJMOR.2013.053626 +M. Haridass,Analysis of a batch arrival general bulk service queueing system with variant threshold policy for secondary jobs.,2011,3,IJMOR,1,db/journals/ijmor/ijmor3.html#HaridassA11,https://doi.org/10.1504/IJMOR.2011.037313 +Abdesslem Layeb,A novel greedy quantum inspired cuckoo search algorithm for variable sized bin packing problem.,2014,6,IJMOR,6,db/journals/ijmor/ijmor6.html#LayebB14,https://doi.org/10.1504/IJMOR.2014.065420 +Chandra Shekhar,Transient analysis of machining system with spare provisioning and geometric reneging.,2017,11,IJMOR,3,db/journals/ijmor/ijmor11.html#ShekharJR17,https://doi.org/10.1504/IJMOR.2017.10002701 +Sivuyile W. Mgobhozi,Optimal combined dividend and reinsurance policies under interest rate in Lévy markets.,2017,10,IJMOR,1,db/journals/ijmor/ijmor10.html#MgobhoziC17,https://doi.org/10.1504/IJMOR.2017.10000858 +Ramu Dubey,Symmetric duality in non-differentiable programming using G-invexity.,2016,9,IJMOR,3,db/journals/ijmor/ijmor9.html#DubeyG16,https://doi.org/10.1504/IJMOR.2016.10000149 +Soodabeh Asadi,An interior-point algorithm for horizontal linear complementarity problems.,2018,13,IJMOR,1,db/journals/ijmor/ijmor13.html#AsadiMZ18,https://doi.org/10.1504/IJMOR.2018.10013168 +Said Toumi,Branch-and-bound algorithm for solving blocking flowshop scheduling problems with makespan criterion.,2017,10,IJMOR,1,db/journals/ijmor/ijmor10.html#ToumiJER17,https://doi.org/10.1504/IJMOR.2017.10000856 +A. Tsoularis,An optimal inventory pricing and ordering strategy subject to demand dependent on stock level and price.,2015,7,IJMOR,5,db/journals/ijmor/ijmor7.html#Tsoularis15,https://doi.org/10.1504/IJMOR.2015.071283 +Nasser Shahsavari-Pour,A new method for fuzzy numbers ranking on the basis of hypotenuse set.,2017,10,IJMOR,3,db/journals/ijmor/ijmor10.html#Shahsavari-Pour17,https://doi.org/10.1504/IJMOR.2017.10003344 +S. Jeyakumar,Steady state analysis of bulk arrival and bulk service queueing model with multiple working vacations.,2016,9,IJMOR,3,db/journals/ijmor/ijmor9.html#JeyakumarS16,https://doi.org/10.1504/IJMOR.2016.10000144 +S. K. Ghosh,An EOQ model for a deteriorating item with time-varying demand and time-dependent partial backlogging.,2011,3,IJMOR,3,db/journals/ijmor/ijmor3.html#GhoshKC11a,https://doi.org/10.1504/IJMOR.2011.040026 +Ibrahim Zeghaiton Chaloob,A new multi-interval weights approach in fuzzy goal programming for a multi-criteria problem.,2016,9,IJMOR,2,db/journals/ijmor/ijmor9.html#ChaloobRN16,https://doi.org/10.1504/IJMOR.2016.10000082 +Archana Khurana,An algorithm for solving three-dimensional trans-shipment problem.,2012,4,IJMOR,2,db/journals/ijmor/ijmor4.html#KhuranaA12,https://doi.org/10.1504/IJMOR.2012.046372 +Bijay Baran Pal,A linear Goal Programming approach to multiobjective fractional programming with interval parameter sets.,2011,3,IJMOR,6,db/journals/ijmor/ijmor3.html#PalMS11,https://doi.org/10.1504/IJMOR.2011.043017 +Srikumar Acharya,Solving multi-choice multi-objective transportation problem.,2016,8,IJMOR,4,db/journals/ijmor/ijmor8.html#AcharyaB16,https://doi.org/10.1504/IJMOR.2016.076787 +S. K. Gupta,Duality for second-order symmetric multiobjective programming with cone constraints.,2012,4,IJMOR,2,db/journals/ijmor/ijmor4.html#GuptaD12,https://doi.org/10.1504/IJMOR.2012.046374 +Seyed Hojat Pakzad Moghadam,A hierarchical cellular manufacturing system.,2018,13,IJMOR,1,db/journals/ijmor/ijmor13.html#MoghadamSHM18,https://doi.org/10.1504/IJMOR.2018.10013169 +Allen H. Tai,Hidden Markov models for inventory systems with deteriorating items.,2015,7,IJMOR,2,db/journals/ijmor/ijmor7.html#Tai15,https://doi.org/10.1504/IJMOR.2015.068289 +Chun-Hung Cheng,An algorithm using Lagrangean relaxation and decomposition for solving a capacitated lot-sizing problem.,2010,2,IJMOR,2,db/journals/ijmor/ijmor2.html#ChengMGY10,https://doi.org/10.1504/IJMOR.2010.030817 +Mansoureh Ramezani Farani,The issue of maintenance and repairment of machines in a production system with the possibility of enhancing the performance of workers: a numerical illustration.,2017,10,IJMOR,4,db/journals/ijmor/ijmor10.html#FaraniMG17,https://doi.org/10.1504/IJMOR.2017.10005075 +Manije Sanei Tabass,The generalised maximum α entropy principle.,2018,12,IJMOR,1,db/journals/ijmor/ijmor12.html#TabassB18,https://doi.org/10.1504/IJMOR.2018.10009201 +Yamin Alizadeh,A new multi-objective model for a capacitated hub covering problem solving by two multi-objective evolutionary algorithms.,2016,9,IJMOR,1,db/journals/ijmor/ijmor9.html#AlizadehTE16,https://doi.org/10.1504/IJMOR.2016.077559 +Hardik N. Soni,EOQ model with backorders under linear combination of possibility and necessity measure.,2015,7,IJMOR,2,db/journals/ijmor/ijmor7.html#SoniJ15,https://doi.org/10.1504/IJMOR.2015.068292 +Panagiotis Xidonas,A multicriteria decision making approach for the evaluation of equity portfolios.,2010,2,IJMOR,1,db/journals/ijmor/ijmor2.html#XidonasMP10,https://doi.org/10.1504/IJMOR.2010.029689 +T. R. Gulati,Second-order symmetric duality in non-differentiable multiobjective programming over cones.,2015,7,IJMOR,4,db/journals/ijmor/ijmor7.html#GulatiSV15,https://doi.org/10.1504/IJMOR.2015.070199 +Amit Choudhury,Customer impatience in a service facility with limited waiting space.,2013,5,IJMOR,3,db/journals/ijmor/ijmor5.html#ChoudhuryP13,https://doi.org/10.1504/IJMOR.2013.053630 +Pavel Holecek,Human resources management at universities - a fuzzy classification approach.,2016,9,IJMOR,4,db/journals/ijmor/ijmor9.html#HolecekST16,https://doi.org/10.1504/IJMOR.2016.10000338 +Moustapha Diaby,Limits to the scope of applicability of extended formulations theory for LP models of combinatorial optimisation problems.,2017,10,IJMOR,1,db/journals/ijmor/ijmor10.html#DiabyK17,https://doi.org/10.1504/IJMOR.2017.10000855 +Fatiha Bendali,Composition of graphs and the Hop-constrained Path Problem.,2012,4,IJMOR,3,db/journals/ijmor/ijmor4.html#BendaliMT12,https://doi.org/10.1504/IJMOR.2012.046685 +Najib M. Najid,An efficient algorithm for the multi-mode resource constrained project scheduling problem with resource flexibility.,2010,2,IJMOR,6,db/journals/ijmor/ijmor2.html#NajidA10,https://doi.org/10.1504/IJMOR.2010.035497 +Boutheina Bannour,Statistical inference and#167* parametric approximation of non-parametric frontier: the case of Tunisian banking sector.,2015,7,IJMOR,5,db/journals/ijmor/ijmor7.html#BannourL15,https://doi.org/10.1504/IJMOR.2015.071272 +Abdulqader Othman Hamadameen,Pareto optimal solution for multiobjective stochastic linear programming problems with partial uncertainty.,2018,12,IJMOR,2,db/journals/ijmor/ijmor12.html#HamadameenH18,https://doi.org/10.1504/IJMOR.2018.10010212 +Abd El-Moneim Anwar Teamah,M-states search problem for a lost target with multiple sensors.,2017,10,IJMOR,1,db/journals/ijmor/ijmor10.html#TeamahKE17,https://doi.org/10.1504/IJMOR.2017.10000860 +Chafik Abid,Optimal policy of a hybrid queueing system.,2010,2,IJMOR,4,db/journals/ijmor/ijmor2.html#AbidT10,https://doi.org/10.1504/IJMOR.2010.033438 +Uttam Kumar Bera,An imperfect fuzzy production-inventory model over a finite time horizon under the effect of learning.,2009,1,IJMOR,3,db/journals/ijmor/ijmor1.html#BeraMM09,https://doi.org/10.1504/IJMOR.2009.024290 +Aliakbar Montazer-Haghighi,Stepwise explicit solution for the joint distribution of queue length of a MAP single-server service queueing system with splitting and varying batch size delayed-feedback.,2016,9,IJMOR,1,db/journals/ijmor/ijmor9.html#Montazer-Haghighi16a,https://doi.org/10.1504/IJMOR.2016.077557 +Gautam Choudhury,A batch arrival unreliable Bernoulli vacation model with two phases of service and general retrial *.,2015,7,IJMOR,3,db/journals/ijmor/ijmor7.html#ChoudhuryD15,https://doi.org/10.1504/IJMOR.2015.069151 +Shibaji Panda,Optimal production rate and production stopping time for perishable seasonal products with ramp-type time-dependent demand.,2010,2,IJMOR,6,db/journals/ijmor/ijmor2.html#PandaS10,https://doi.org/10.1504/IJMOR.2010.035493 +S. Priyan,Economic design of an inventory system involving probabilistic deterioration and variable setup cost through mathematical approach.,2016,8,IJMOR,3,db/journals/ijmor/ijmor8.html#PriyanU16,https://doi.org/10.1504/IJMOR.2016.075519 +Javier Ribal,Truncated distributions of valuation multiples: an application to European food firms.,2009,1,IJMOR,4,db/journals/ijmor/ijmor1.html#RibalBS09,https://doi.org/10.1504/IJMOR.2009.026275 +Sanjay Singh,A partially backlogged EPQ model with demand dependent production and non-instantaneous deterioration.,2017,10,IJMOR,2,db/journals/ijmor/ijmor10.html#SinghSS17,https://doi.org/10.1504/IJMOR.2017.10002024 +Shweta Upadhyaya,Queueing systems with vacation: an overview.,2016,9,IJMOR,2,db/journals/ijmor/ijmor9.html#Upadhyaya16,https://doi.org/10.1504/IJMOR.2016.10000081 +Debashis Dutta,A partial backlogging inventory model for deteriorating items with time-varying demand and holding cost.,2015,7,IJMOR,3,db/journals/ijmor/ijmor7.html#DuttaK15,https://doi.org/10.1504/IJMOR.2015.069144 +Nicola Apollonio,On the maximum q-colourable induced subgraph problem in perfect graphs.,2010,2,IJMOR,1,db/journals/ijmor/ijmor2.html#ApollonioC10,https://doi.org/10.1504/IJMOR.2010.029686 +K. Hamdi,An application of DEA in efficiency evaluation of universities.,2014,6,IJMOR,5,db/journals/ijmor/ijmor6.html#HamdiLM14,https://doi.org/10.1504/IJMOR.2014.064841 +Maurizio Faccio,Simulated annealing approach to solve dual resource constrained job shop scheduling problems: layout impact analysis on solution quality.,2015,7,IJMOR,6,db/journals/ijmor/ijmor7.html#FaccioRS15,https://doi.org/10.1504/IJMOR.2015.072274 +Mijanur Rahaman Seikh,Matrix games in intuitionistic fuzzy environment.,2013,5,IJMOR,6,db/journals/ijmor/ijmor5.html#SeikhNP13a,https://doi.org/10.1504/IJMOR.2013.057491 +V. V. Singh,Stochastic analysis of a complex system under preemptive resume repair policy using Gumbel-Hougaard family copula.,2018,12,IJMOR,2,db/journals/ijmor/ijmor12.html#SinghA18,https://doi.org/10.1504/IJMOR.2018.10010221 +A. Thangam,Dominant retailer's optimal policy in a supply chain under Advance Payment scheme and trade credit.,2011,3,IJMOR,6,db/journals/ijmor/ijmor3.html#Thangam11,https://doi.org/10.1504/IJMOR.2011.043015 +Majid Zohrehbandian,A mathematical model for supplier selection in quantity discount environments.,2010,2,IJMOR,4,db/journals/ijmor/ijmor2.html#ZohrehbandianS10,https://doi.org/10.1504/IJMOR.2010.033440 +Reeta Bhardwaj,Analysis of service surrender queue model in fuzzy system.,2017,11,IJMOR,4,db/journals/ijmor/ijmor11.html#BhardwajSK17,https://doi.org/10.1504/IJMOR.2017.10008665 +Moncef Abbas,Efficient cuts for generating the non-dominated vectors for Multiple Objective Integer Linear Programming.,2012,4,IJMOR,3,db/journals/ijmor/ijmor4.html#AbbasCM12,https://doi.org/10.1504/IJMOR.2012.046690 +Pikkala Vijaya Laxmi,On renewal input state dependent working vacations queue with impatient customers.,2015,7,IJMOR,6,db/journals/ijmor/ijmor7.html#LaxmiJ15,https://doi.org/10.1504/IJMOR.2015.072276 +Artak Hakobyan,A hybrid heuristic for the unequal-area dynamic facility layout problem.,2013,5,IJMOR,6,db/journals/ijmor/ijmor5.html#HakobyanM13,https://doi.org/10.1504/IJMOR.2013.057492 +Sajjad Zahir,An interactive decision support system for implementing sustainable relocation strategies for adaptation to climate change: a multi-objective optimisation approach.,2009,1,IJMOR,3,db/journals/ijmor/ijmor1.html#ZahirSA09,https://doi.org/10.1504/IJMOR.2009.024289 +Dharmendra Kumar Gupta,Semilocal convergence of Stirling's method for fixed points in Banach spaces.,2016,9,IJMOR,2,db/journals/ijmor/ijmor9.html#GuptaPS16,https://doi.org/10.1504/IJMOR.2016.078003 +Madhu Jain,Queueing analysis of two unreliable servers machining system with switching and common cause failure.,2013,5,IJMOR,4,db/journals/ijmor/ijmor5.html#JainSS13a,https://doi.org/10.1504/IJMOR.2013.054732 +Parakramaweera Sunil Dharmapala,Bias-correction in DEA efficiency scores using simulated beta samples: an alternative view of bootstrapping in DEA.,2018,12,IJMOR,4,db/journals/ijmor/ijmor12.html#Dharmapala18,https://doi.org/10.1504/IJMOR.2018.10011877 +Partha Guchhait,Imperfect production policy of a breakable item with variable breakability and demand in random planning horizon.,2012,4,IJMOR,6,db/journals/ijmor/ijmor4.html#GuchhaitMM12,https://doi.org/10.1504/IJMOR.2012.049936 +C. D. Nandakumar,Evaluation of reordering time in a manufacturing inventory division.,2018,13,IJMOR,1,db/journals/ijmor/ijmor13.html#NandakumarSS18,https://doi.org/10.1504/IJMOR.2018.10013180 +Taraneh Sowlati,Developing a mathematical programming model for sensitivity analysis in analytic hierarchy process.,2010,2,IJMOR,3,db/journals/ijmor/ijmor2.html#SowlatiAP10,https://doi.org/10.1504/IJMOR.2010.032719 +Sanjay Dutta,Genetic algorithm approach for solving multi-objective fuzzy stochastic programming problem.,2017,11,IJMOR,1,db/journals/ijmor/ijmor11.html#DuttaAM17,https://doi.org/10.1504/IJMOR.2017.10006265 +Morteza Kiani,Scheduling multi-skilled manpower with considering teams replacement and site-dependent vehicles routing.,2017,10,IJMOR,1,db/journals/ijmor/ijmor10.html#KianiSM17,https://doi.org/10.1504/IJMOR.2017.10000857 +Deepa Khurana,An EPQ model for deteriorating items with variable demand rate and allowable shortages.,2018,12,IJMOR,1,db/journals/ijmor/ijmor12.html#KhuranaTS18,https://doi.org/10.1504/IJMOR.2018.10009200 +Kuan Yew Wong,A genetic ant colony optimisation system (GenANT) for quadratic assignment problems.,2009,1,IJMOR,4,db/journals/ijmor/ijmor1.html#WongS09,https://doi.org/10.1504/IJMOR.2009.026277 +Lila Rasekh,Solving multi-stage stochastic in-house production and outsourcing planning by two-level decomposition.,2010,2,IJMOR,2,db/journals/ijmor/ijmor2.html#RasekhD10,https://doi.org/10.1504/IJMOR.2010.030814 +Walid Ben-Ameur,A gradient-based randomised heuristic for the maximum cut problem.,2012,4,IJMOR,3,db/journals/ijmor/ijmor4.html#Ben-AmeurN12,https://doi.org/10.1504/IJMOR.2012.046688 +A. Lakshmana Rao,Studies on inventory model for deteriorating items with Weibull replenishment and generalised Pareto decay having time dependent demand.,2016,8,IJMOR,1,db/journals/ijmor/ijmor8.html#RaoR16,https://doi.org/10.1504/IJMOR.2016.073282 +Sarat Kumar Acharya,Change point estimation of service rate in an M/M/1/m queue.,2013,5,IJMOR,1,db/journals/ijmor/ijmor5.html#AcharyaV13,https://doi.org/10.1504/IJMOR.2013.050515 +Izhar Ahmad,Optimality and duality in non-differentiable interval valued multiobjective programming.,2017,11,IJMOR,3,db/journals/ijmor/ijmor11.html#AhmadSD17,https://doi.org/10.1504/IJMOR.2017.10007861 +Faramak Zandi,An optimisation model for traffic distribution forecasting in packet-switching networks.,2010,2,IJMOR,5,db/journals/ijmor/ijmor2.html#ZandiT10,https://doi.org/10.1504/IJMOR.2010.034339 +K. S. Ramaswami,Non-Markovian bulk queueing system with state dependent arrivals and multiple vacations - a simulation approach.,2014,6,IJMOR,3,db/journals/ijmor/ijmor6.html#RamaswamiJ14,https://doi.org/10.1504/IJMOR.2014.060853 +Suvra Kanti Chakraborty,Golden section search over hyper-rectangle: a direct search method.,2016,8,IJMOR,3,db/journals/ijmor/ijmor8.html#ChakrabortyP16,https://doi.org/10.1504/IJMOR.2016.075517 +Massimiliano Caramia,On the choice of the penalty parameter for discrete-continuous linear bi-level problems reformulation.,2015,7,IJMOR,1,db/journals/ijmor/ijmor7.html#CaramiaM15,https://doi.org/10.1504/IJMOR.2015.065959 +Mohamed Esseghir Lalami,A procedure-based heuristic for 0-1 Multiple Knapsack Problems.,2012,4,IJMOR,3,db/journals/ijmor/ijmor4.html#LalamiEB012,https://doi.org/10.1504/IJMOR.2012.046684 +Adarsh Anand,Queuing theory-based innovation diffusion modelling incorporating change in adoption rate.,2018,12,IJMOR,1,db/journals/ijmor/ijmor12.html#AnandAAS18,https://doi.org/10.1504/IJMOR.2018.10009199 +Arun Kumar Tripathy,Dealing with inconsistency in a linear programming problems under fuzzy environment.,2015,7,IJMOR,5,db/journals/ijmor/ijmor7.html#Tripathy15,https://doi.org/10.1504/IJMOR.2015.071281 +Mohammed Mékidiche,Application of tolerance approach to fuzzy goal programming to aggregate production planning.,2013,5,IJMOR,2,db/journals/ijmor/ijmor5.html#MekidicheMS13,https://doi.org/10.1504/IJMOR.2013.052460 +Jun-Yeon Lee,Incremental quantity discounts in a periodic-review stochastic inventory model with a general demand distribution.,2015,7,IJMOR,2,db/journals/ijmor/ijmor7.html#LeeB15,https://doi.org/10.1504/IJMOR.2015.068291 +Mohammad Tavassoli,A joint measurement of efficiency and effectiveness for the best supplier selection using integrated data envelopment analysis approach.,2014,6,IJMOR,1,db/journals/ijmor/ijmor6.html#TavassoliFS14,https://doi.org/10.1504/IJMOR.2014.057861 +Imen Ome Ezzine,Polynomial formulation and heuristic based approach for the k-travelling repairman problem.,2012,4,IJMOR,5,db/journals/ijmor/ijmor4.html#EzzineE12,https://doi.org/10.1504/IJMOR.2012.048928 +Sovan Mitra,Optimisation of stochastic programming by hidden Markov modelling based scenario generation.,2010,2,IJMOR,4,db/journals/ijmor/ijmor2.html#MitraJ10,https://doi.org/10.1504/IJMOR.2010.033439 +Ekaterina Tuchnolobova,A linear dynamic model of production-inventory with debt repayment: optimal-choice management strategies.,2014,6,IJMOR,5,db/journals/ijmor/ijmor6.html#TuchnolobovaTV14,https://doi.org/10.1504/IJMOR.2014.064846 +M. Nandhini,Design of GAmut-Lssahc: a solver for course timetabling problem.,2011,3,IJMOR,6,db/journals/ijmor/ijmor3.html#NandhiniK11,https://doi.org/10.1504/IJMOR.2011.043012 +Jiaxiang Hu,Emergency logistics strategy in response to anthrax attacks based on system dynamics.,2011,3,IJMOR,5,db/journals/ijmor/ijmor3.html#HuZ11,https://doi.org/10.1504/IJMOR.2011.042440 +M. L. Mittal,Scheduling of multiple projects with resource transfers.,2009,1,IJMOR,3,db/journals/ijmor/ijmor1.html#MittalK09,https://doi.org/10.1504/IJMOR.2009.024288 +Sukhjit Singh Dhaliwal,New iterative methods for nonlinear equations in R.,2016,8,IJMOR,3,db/journals/ijmor/ijmor8.html#SinghG16,https://doi.org/10.1504/IJMOR.2016.075521 +Tzu-Chun Weng,Complete search procedure for replenishment and collection policies in a product life cycle for a retailer.,2016,8,IJMOR,3,db/journals/ijmor/ijmor8.html#Weng16,https://doi.org/10.1504/IJMOR.2016.075518 +P. Vijaya Laxmi,An inventory model with negative customers and service interruptions.,2016,9,IJMOR,1,db/journals/ijmor/ijmor9.html#LaxmiLJ16,https://doi.org/10.1504/IJMOR.2016.077556 +Ali Ebrahimnejad,A dual simplex method for bounded linear programmes with fuzzy numbers.,2010,2,IJMOR,6,db/journals/ijmor/ijmor2.html#EbrahimnejadN10,https://doi.org/10.1504/IJMOR.2010.035498 +C. Velmurugan,Optimal shipment policy with ordering constraint for multi items in healthcare industries.,2016,8,IJMOR,2,db/journals/ijmor/ijmor8.html#VelmuruganU16,https://doi.org/10.1504/IJMOR.2016.074855 +Imen Ben Abdelwahed,On convergence of the utility indifference pricing in the model preserving the CGMY minimal entropy martingale measure.,2015,7,IJMOR,4,db/journals/ijmor/ijmor7.html#AbdelwahedT15,https://doi.org/10.1504/IJMOR.2015.070197 +Rakesh P. Badoni,A graph edge colouring approach for school timetabling problems.,2014,6,IJMOR,1,db/journals/ijmor/ijmor6.html#BadoniG14,https://doi.org/10.1504/IJMOR.2014.057853 +Nita H. Shah,Optimal ordering policy for deteriorating items under down-stream trade credit dependent quadratic demand with full up-stream trade credit and partial down-stream trade credit.,2018,12,IJMOR,3,db/journals/ijmor/ijmor12.html#ShahJC18,https://doi.org/10.1504/IJMOR.2018.10010957 +Seyed Hamid Reza Pasandideh,Multiobjective optimisation of stochastic problems using a mixed metaheuristic and regression technique.,2016,8,IJMOR,1,db/journals/ijmor/ijmor8.html#PasandidehM16,https://doi.org/10.1504/IJMOR.2016.073281 +Eduardo Fernández 0002,An integrated mathematical-computer approach for R and D project selection in large public organisations.,2009,1,IJMOR,3,db/journals/ijmor/ijmor1.html#FernandezINVL09,https://doi.org/10.1504/IJMOR.2009.024291 +Dharmendra Yadav,A fuzzy multi-item production model with reliability and flexibility under limited storage capacity with deterioration via geometric programming.,2011,3,IJMOR,1,db/journals/ijmor/ijmor3.html#YadavPK11,https://doi.org/10.1504/IJMOR.2011.037314 +Chandra K. Jaggi,Supply chain model for deteriorating items with stock-dependent consumption rate and shortages under inflation and permissible delay in payment.,2010,2,IJMOR,4,db/journals/ijmor/ijmor2.html#JaggiK10,https://doi.org/10.1504/IJMOR.2010.033442 +Madhu Jain,Imperfect debugging study of SRGM with fault reduction factor and multiple change point.,2014,6,IJMOR,2,db/journals/ijmor/ijmor6.html#JainMG14,https://doi.org/10.1504/IJMOR.2014.059526 +Animesh Biswas,A fuzzy goal programming technique for multi-objective chance constrained programming with normally distributed fuzzy random variables and fuzzy numbers.,2013,5,IJMOR,5,db/journals/ijmor/ijmor5.html#BiswasM13,https://doi.org/10.1504/IJMOR.2013.056116 +Guoqi Qian,Semisupervised Clustering by Iterative Partition and Regression with Neuroscience Applications.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#QianWFQH16,https://doi.org/10.1155/2016/4037380 +Pongsagorn Chalearnnetkul,Multiview Layer Fusion Model for Action Recognition Using RGBD Images.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#ChalearnnetkulS18,https://doi.org/10.1155/2018/9032945 +Songyun Xie,Stimulator Selection in SSVEP-Based Spatial Selective Attention Study.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#XieLOZWXW16,https://doi.org/10.1155/2016/6410718 +Mohammad S. Islam,Decoding of Human Movements Based on Deep Brain Local Field Potentials Using Ensemble Neural Networks.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#IslamMD17,https://doi.org/10.1155/2017/5151895 +Augustine Yongwhi Kim,Automated Text Analysis Based on Skip-Gram Model for Food Evaluation in Predicting Consumer Acceptance.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#KimHCM18,https://doi.org/10.1155/2018/9293437 +Md. Rabiul Islam 0001,Feature and Score Fusion Based Multiple Classifier Selection for Iris Recognition.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#Islam14,https://doi.org/10.1155/2014/380585 +Jianfang Cao,Implementing a Parallel Image Edge Detection Algorithm Based on the Otsu-Canny Operator on the Hadoop Platform.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#CaoCWT18,https://doi.org/10.1155/2018/3598284 +Enea Cippitelli,A Human Activity Recognition System Using Skeleton Data from RGBD Sensors.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#CippitelliGGS16,https://doi.org/10.1155/2016/4351435 +Danilo DonGiovanni,Select and Cluster: A Method for Finding Functional Networks of Clustered Voxels in fMRI.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#DonGiovanniV16,https://doi.org/10.1155/2016/4705162 +Hongbing Liu,Granular Computing Classification Algorithms Based on Distance Measures between Granules from the View of Set.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#LiuLW14,https://doi.org/10.1155/2014/656790 +Tran Binh Long,Multimodal Personal Verification Using Likelihood Ratio for the Match Score Fusion.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#LongT17,https://doi.org/10.1155/2017/9345969 +Yahia Kourd,Neural Networks and Fault Probability Evaluation for Diagnosis Issues.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#KourdLG14,https://doi.org/10.1155/2014/370486 +Junying Zhang,Pattern Expression Nonnegative Matrix Factorization: Algorithm and Applications to Blind Source Separation.,2008,2008,Comp. Int. and Neurosc.,,db/journals/cin/cin2008.html#ZhangWFMW08,https://doi.org/10.1155/2008/168769 +Ching-Hsue Cheng,A Seasonal Time-Series Model Based on Gene Expression Programming for Predicting Financial Distress.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#ChengCY18,https://doi.org/10.1155/2018/1067350 +Othman M.-K. Alsmadi,A Robust Computational Technique for Model Order Reduction of Two-Time-Scale Discrete Systems via Genetic Algorithms.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#AlsmadiA15,https://doi.org/10.1155/2015/615079 +Mikhail V. Kiselev,Homogenous Chaotic Network Serving as a Rate/Population Code to Temporal Code Converter.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#Kiselev14,https://doi.org/10.1155/2014/476580 +Zong-Sheng Wu,Nonlinear Inertia Weighted Teaching-Learning-Based Optimization for Solving Global Optimization Problem.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#WuFX15,https://doi.org/10.1155/2015/292576 +Yang Honghong,Online Hierarchical Sparse Representation of Multifeature for Robust Object Tracking.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#HonghongQ16,https://doi.org/10.1155/2016/5894639 +Simon X. Yang,Theory and Applications of Bioinspired Neural Intelligence for Robotics and Control.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#YangLLNZ16,https://doi.org/10.1155/2016/5089767 +Yongsheng Qian,Numerical Simulation of Nonperiodic Rail Operation Diagram Characteristics.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#QianWZW14,https://doi.org/10.1155/2014/194975 +Lin Li 0020,A Tensor-Product-Kernel Framework for Multiscale Neural Activity Decoding and Control.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#LiBCFSP14,https://doi.org/10.1155/2014/870160 +Yan Pei,Algorithmic Mechanism Design of Evolutionary Computation.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#Pei15,https://doi.org/10.1155/2015/591954 +Gerolf Vanacker,Context-Based Filtering for Assisted Brain-Actuated Wheelchair Driving.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#VanackerMLFGPBN07,https://doi.org/10.1155/2007/25130 +Jorge H. Soletta,Identification of Functionally Interconnected Neurons Using Factor Analysis.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#SolettaFAPLF17,https://doi.org/10.1155/2017/8056141 +Junmin Li,Gait Planning and Stability Control of a Quadruped Robot.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#LiWYKH16,https://doi.org/10.1155/2016/9853070 +Alauddin Bhuiyan,Retinal Image Matching Using Hierarchical Vascular Features.,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#BhuiyanLNRW11,https://doi.org/10.1155/2011/749054 +Min Jing,A Novel Constrained Topographic Independent Component Analysis for Separation of Epileptic Seizure Signals.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#JingS07,https://doi.org/10.1155/2007/21315 +Enrique Dorronzoro Zubiete,Evaluation of a Home Biomonitoring Autonomous Mobile Robot.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ZubieteNISSGY16,https://doi.org/10.1155/2016/9845816 +Hussain Shareef,Random Forest-Based Approach for Maximum Power Point Tracking of Photovoltaic Systems Operating under Actual Environmental Conditions.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#ShareefMM17,https://doi.org/10.1155/2017/1673864 +David Picado-Muiño,Test Statistics for the Identification of Assembly Neurons in Parallel Spike Trains.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#Picado-MuinoB15,https://doi.org/10.1155/2015/427829 +Kai Chen 0020,Ranking Support Vector Machine with Kernel Approximation.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#ChenLDLL17,https://doi.org/10.1155/2017/4629534 +Alexandre Gramfort,Forward Field Computation with OpenMEEG.,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#GramfortPOC11,https://doi.org/10.1155/2011/923703 +Qizhou Hu,High Speed Railway Environment Safety Evaluation Based on Measurement Attribute Recognition Model.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#HuGZ14,https://doi.org/10.1155/2014/470758 +Yanlong Sun,The Parietal Cortex in Sensemaking: The Dissociation of Multiple Types of Spatial Information.,2013,2013,Comp. Int. and Neurosc.,,db/journals/cin/cin2013.html#SunW13,https://doi.org/10.1155/2013/152073 +Krzysztof Wiktorowicz,Predictive Modeling in Race Walking.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#WiktorowiczPLK15,https://doi.org/10.1155/2015/735060 +Nicola Vanello,Analysis of Residual Dependencies of Independent Components Extracted from fMRI Data.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#VanelloRL16,https://doi.org/10.1155/2016/2961727 +Deepa Sinha,Characterization of 2-Path Product Signed Graphs with Its Properties.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#SinhaS17,https://doi.org/10.1155/2017/1235715 +Adnan O. M. Abuassba,Improving Classification Performance through an Advanced Ensemble Based Heterogeneous Extreme Learning Machines.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#AbuassbaZLSA17,https://doi.org/10.1155/2017/3405463 +Fernando Cervantes-Sanchez,Segmentation of Coronary Angiograms Using Gabor Filters and Boltzmann Univariate Marginal Distribution Algorithm.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#Cervantes-Sanchez16,https://doi.org/10.1155/2016/2420962 +Xigao Shao,Single Directional SMO Algorithm for Least Squares Support Vector Machines.,2013,2013,Comp. Int. and Neurosc.,,db/journals/cin/cin2013.html#ShaoWL13,https://doi.org/10.1155/2013/968438 +Pankaj Kumar Singh,The Role of Computational Fluid Dynamics in the Management of Unruptured Intracranial Aneurysms: A Clinicians' View.,2009,2009,Comp. Int. and Neurosc.,,db/journals/cin/cin2009.html#SinghMCBBLVRMFPH09,https://doi.org/10.1155/2009/760364 +Jihye Bae,Kernel Temporal Differences for Neural Decoding.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#BaeGPFSP15,https://doi.org/10.1155/2015/481375 +Nikos Fazakis,Self-Trained LMT for Semisupervised Learning.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#FazakisKKS16,https://doi.org/10.1155/2016/3057481 +Yuanyuan Wang,A Novel Feature Selection Method Based on Extreme Learning Machine and Fractional-Order Darwinian PSO.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#WangZQX18,https://doi.org/10.1155/2018/5078268 +Kai Zeng 0005,Feature Selection with Neighborhood Entropy-Based Cooperative Game Theory.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#ZengSN14,https://doi.org/10.1155/2014/479289 +Toly Chen,Enhancing Scheduling Performance for a Wafer Fabrication Factory: The Biobjective Slack-Diversifying Nonlinear Fluctuation-Smoothing Rule.,2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#ChenW12,https://doi.org/10.1155/2012/404806 +Sarah N. McClung,Characterization of Visual Scanning Patterns in Air Traffic Control.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#McClungK16,https://doi.org/10.1155/2016/8343842 +N. Ghadiri Hedeshi,Coronary Artery Disease Detection Using a Fuzzy-Boosting PSO Approach.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#HedeshiA14,https://doi.org/10.1155/2014/783734 +Ram Krips,Prediction of Human's Ability in Sound Localization Based on the Statistical Properties of Spike Trains along the Brainstem Auditory Pathway.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#KripsF14,https://doi.org/10.1155/2014/575716 +Haryati Jaafar,A Robust and Fast Computation Touchless Palm Print Recognition System Using LHEAT and the IFkNCN Classifier.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#JaafarIR15,https://doi.org/10.1155/2015/360217 +Maria Marcella Laganà,DTI Parameter Optimisation for Acquisition at 1.5T: SNR Analysis and Clinical Application.,2010,2010,Comp. Int. and Neurosc.,,db/journals/cin/cin2010.html#LaganaRCVMB10,https://doi.org/10.1155/2010/254032 +Caihong Deng,Liraglutide Activates the Nrf2/HO-1 Antioxidant Pathway and Protects Brain Nerve Cells against Cerebral Ischemia in Diabetic Rats.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#DengCHLLSH18,https://doi.org/10.1155/2018/3094504 +Bing Han,An Approach to Linguistic Multiple Attribute Decision-Making Based on Unbalanced Linguistic Generalized Heronian Mean Aggregation Operator.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#HanCZL18,https://doi.org/10.1155/2018/1404067 +Armando Freitas da Rocha,Combining Different Tools for EEG Analysis to Study the Distributed Character of Language Processing.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#RochaFP15,https://doi.org/10.1155/2015/865974 +Adriënne M. Mendrik,MRBrainS Challenge: Online Evaluation Framework for Brain Image Segmentation in 3T MRI Scans.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#MendrikVKBBBABC15,https://doi.org/10.1155/2015/813696 +Tao Wu 0008,Image-Guided Rendering with an Evolutionary Algorithm Based on Cloud Model.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#Wu18,https://doi.org/10.1155/2018/4518265 +Ali Bülent Usakli,Improvement of EEG Signal Acquisition: An Electrical Aspect for State of the Art of Front End.,2010,2010,Comp. Int. and Neurosc.,,db/journals/cin/cin2010.html#Usakli10,https://doi.org/10.1155/2010/630649 +Alexandros T. Tzallas,Automatic Seizure Detection Based on Time-Frequency Analysis and Artificial Neural Networks.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#TzallasTF07,https://doi.org/10.1155/2007/80510 +Brett Matthews,Spike Sorting by Joint Probabilistic Modeling of Neural Spike Trains and Waveforms.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#MatthewsC14,https://doi.org/10.1155/2014/643059 +Zhe Chen 0003,An Overview of Bayesian Methods for Neural Spike Train Analysis.,2013,2013,Comp. Int. and Neurosc.,,db/journals/cin/cin2013.html#Chen13,https://doi.org/10.1155/2013/251905 +Jae-Hoon Kim 0002,Evaluating a Pivot-Based Approach for Bilingual Lexicon Extraction.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#KimKS15, +Jiao Cheng,Comparison of the BCI Performance between the Semitransparent Face Pattern and the Traditional Face Pattern.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#ChengJW17,https://doi.org/10.1155/2017/1323985 +Peng Xu,Analysis of the Contribution of the Road Traffic Industry to the PM2.5 Emission for Different Land-Use Types.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#XuWJY14,https://doi.org/10.1155/2014/821973 +Elisa Magosso,Crossmodal Links between Vision and Touch in Spatial Attention: A Computational Modelling Study.,2010,2010,Comp. Int. and Neurosc.,,db/journals/cin/cin2010.html#MagossoSPU10,https://doi.org/10.1155/2010/304941 +Mahmoud El-Banna,Modified Mahalanobis Taguchi System for Imbalance Data Classification.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#El-Banna17,https://doi.org/10.1155/2017/5874896 +Peter Peyk,ElectroMagnetic EncephaloGraphy Software: Overview and Integration with Other EEG/MEG Toolboxes.,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#PeykCJ11,https://doi.org/10.1155/2011/861705 +Said Ali El-Qulity,A Generalized National Planning Approach for Admission Capacity in Higher Education: A Nonlinear Integer Goal Programming Model with a Novel Differential Evolution Algorithm.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#El-QulityM16,https://doi.org/10.1155/2016/5207362 +Paolo Massimo Buscema,The Implicit Function as Squashing Time Model: A Novel Parallel Nonlinear EEG Analysis Technique Distinguishing Mild Cognitive Impairment and Alzheimer's Disease Subjects with High Degree of Accuracy.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#BuscemaCBBRG07,https://doi.org/10.1155/2007/35021 +Vincent Vigneron,Sparse Data Analysis Strategy for Neural Spike Classification.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#VigneronC14,https://doi.org/10.1155/2014/757068 +Weiwei Zhang 0003,A Novel Hybrid Clonal Selection Algorithm with Combinatorial Recombination and Modified Hypermutation Operators for Global Optimization.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ZhangLJZ16,https://doi.org/10.1155/2016/6204728 +Trong Hai Duong,Smart Data: Where the Big Data Meets the Semantics.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#DuongNJ17,https://doi.org/10.1155/2017/6925138 +Giovanni Vecchiato,On the Use of EEG or MEG Brain Imaging Tools in Neuromarketing Research.,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#VecchiatoAFTABWKDCMB11,https://doi.org/10.1155/2011/643489 +Jun-He Yang,A Time-Series Water Level Forecasting Model Based on Imputation and Variable Selection Method.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#YangCC17,https://doi.org/10.1155/2017/8734214 +Ondrej Dostal,Permutation Entropy and Signal Energy Increase the Accuracy of Neuropathic Change Detection in Needle EMG.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#DostalVPPKKV18,https://doi.org/10.1155/2018/5276161 +Livia Campo,Retreatment Predictions in Odontology by means of CBR Systems.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#CampoAPGBVC16,https://doi.org/10.1155/2016/7485250 +Zhaowei Liu,Cutting Cycles of Conditional Preference Networks with Feedback Set Approach.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#LiuLH18,https://doi.org/10.1155/2018/2082875 +Nurettin Yorek,Using Self-Organizing Neural Network Map Combined with Ward's Clustering Algorithm for Visualization of Students' Cognitive Structural Models about Aliveness Concept.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#YorekUA16,https://doi.org/10.1155/2016/2476256 +Rafael D. de C. Silva,Reducing the Schizophrenia Stigma: A New Approach Based on Augmented Reality.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#SilvaAMFRPA17,https://doi.org/10.1155/2017/2721846 +Patrick Greene,Hippocampal Anatomy Supports the Use of Context in Object Recognition: A Computational Model.,2013,2013,Comp. Int. and Neurosc.,,db/journals/cin/cin2013.html#GreeneHBF13,https://doi.org/10.1155/2013/294878 +Onur Ferhat,Low Cost Eye Tracking: The Current Panorama.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#FerhatV16,https://doi.org/10.1155/2016/8680541 +M. Rajeswari,Directed Bee Colony Optimization Algorithm to Solve the Nurse Rostering Problem.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#RajeswariASD17,https://doi.org/10.1155/2017/6563498 +Takashi Watanabe,A Preliminary Test of Measurement of Joint Angles and Stride Length with Wireless Inertial Sensors for Wearable Gait Evaluation System.,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#WatanabeSKN11,https://doi.org/10.1155/2011/975193 +Qibin Zhao,Temporal and Spatial Features of Single-Trial EEG for Brain-Computer Interface.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#ZhaoZ07,https://doi.org/10.1155/2007/37695 +Alan Díaz-Manríquez,A Review of Surrogate Assisted Multiobjective Evolutionary Algorithms.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#Diaz-ManriquezP16,https://doi.org/10.1155/2016/9420460 +Dragan Pamucar,Planning the City Logistics Terminal Location by Applying the Green p-Median Model and Type-2 Neurofuzzy Network.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#PamucarVAM16,https://doi.org/10.1155/2016/6972818 +,Retracted: Analysis of Pull-In Instability of Geometrically Nonlinear Microbeam Using Radial Basis Artificial Neural Network Based on Couple Stress Theory.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#X18,https://doi.org/10.1155/2018/4030684 +André Lourenço,Unveiling the Biometric Potential of Finger-Based ECG Signals.,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#LourencoSF11,https://doi.org/10.1155/2011/720971 +Xiaoqian Mao,Object Extraction in Cluttered Environments via a P300-Based IFCE.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#MaoLHXZZNC17,https://doi.org/10.1155/2017/5468208 +Liangji Zhou,Image Classification Using Biomimetic Pattern Recognition with Convolutional Neural Networks Features.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#ZhouLHZ17,https://doi.org/10.1155/2017/3792805 +Min Ren,A Self-Adaptive Fuzzy c-Means Algorithm for Determining the Optimal Number of Clusters.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#RenLWY16,https://doi.org/10.1155/2016/2647389 +Ran Li 0003,Adaptive Compressive Sensing of Images Using Spatial Entropy.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#LiDGHL17,https://doi.org/10.1155/2017/9059204 +Robertas Damasevicius,Combining Cryptography with EEG Biometrics.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#DamaseviciusMKW18,https://doi.org/10.1155/2018/1867548 +Cuicui Wang,A Neuroeconomics Analysis of Investment Process with Money Flow Information: The Error-Related Negativity.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#WangVM15,https://doi.org/10.1155/2015/701237 +Rashad R. Aliev,Expected Utility Based Decision Making under Z-Information and Its Application.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#AlievMH15,https://doi.org/10.1155/2015/364512 +Li Wang 0032,Rail Mounted Gantry Crane Scheduling Optimization in Railway Container Terminal Based on Hybrid Handling Mode.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#WangZ14,https://doi.org/10.1155/2014/682486 +Chien-Feng Huang,An Evolutionary Method for Financial Forecasting in Microscopic High-Speed Trading Environment.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#HuangL17,https://doi.org/10.1155/2017/9580815 +Bernardo Dal Seno,Online Detection of P300 and Error Potentials in a BCI Speller.,2010,2010,Comp. Int. and Neurosc.,,db/journals/cin/cin2010.html#SenoMM10,https://doi.org/10.1155/2010/307254 +Alyssa M. Batula,Comparison of Brain Activation during Motor Imagery and Motor Movement Using fNIRS.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#BatulaMKA17,https://doi.org/10.1155/2017/5491296 +Basant Agarwal,Sentiment Analysis Using Common-Sense and Context Information.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#AgarwalMBG15,https://doi.org/10.1155/2015/715730 +Si-Yao Fu,A Spiking Neural Network Based Cortex-Like Mechanism and Application to Facial Expression Recognition.,2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#FuYK12,https://doi.org/10.1155/2012/946589 +Addisson Salazar,Fusion Methods for Biosignal Analysis: Theory and Applications.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#SalazarZRV17,https://doi.org/10.1155/2017/7152546 +Linghong Zou,Research on Assessment Methods for Urban Public Transport Development in China.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#ZouDYJG14,https://doi.org/10.1155/2014/941347 +Louis Massey,Mental Mechanisms for Topics Identification.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#Massey14,https://doi.org/10.1155/2014/920892 +Zhong-qi Wang,Development of a Prediction Model Based on RBF Neural Network for Sheet Metal Fixture Locating Layout Design and Optimization.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#WangYKY16,https://doi.org/10.1155/2016/7620438 +Xin Wang 0035,Exploring the Combination of Dempster-Shafer Theory and Neural Network for Predicting Trust and Distrust.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#WangWS16,https://doi.org/10.1155/2016/5403105 +Cong Bai,Dynamic Bus Travel Time Prediction Models on Road with Multiple Bus Routes.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#BaiPLS15,https://doi.org/10.1155/2015/432389 +Wenfen Liu,Fast Constrained Spectral Clustering and Cluster Ensemble with Random Projection.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#LiuYWH17,https://doi.org/10.1155/2017/2658707 +Kai Zeng 0007,Preference Mining Using Neighborhood Rough Set Model on Two Universes.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#Zeng16,https://doi.org/10.1155/2016/6975458 +Yoshi Nishitani,Detection of M-Sequences from Spike Sequence in Neuronal Networks.,2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#NishitaniHMMST12,https://doi.org/10.1155/2012/862579 +Xiaoyong Liu,Support Vector Machine with Ensemble Tree Kernel for Relation Extraction.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#LiuFD16,https://doi.org/10.1155/2016/8495754 +Abid Hussain,Genetic Algorithm for Traveling Salesman Problem with Modified Cycle Crossover Operator.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#HussainMSHSG17,https://doi.org/10.1155/2017/7430125 +Jinhua Zhang,Volitional and Real-Time Control Cursor Based on Eye Movement Decoding Using a Linear Decoding Model.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ZhangWZH16,https://doi.org/10.1155/2016/4069790 +Dan Wu,Music Composition from the Brain Signal: Representing the Mental State by Music.,2010,2010,Comp. Int. and Neurosc.,,db/journals/cin/cin2010.html#WuLYZY10,https://doi.org/10.1155/2010/267671 +Satoru Hiwa,Analyzing Brain Functions by Subject Classification of Functional Near-Infrared Spectroscopy Data Using Convolutional Neural Networks Analysis.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#HiwaHTHH16,https://doi.org/10.1155/2016/1841945 +Roberto Colombo,Development of a System Architecture for Evaluation and Training of Proprioceptive Deficits of the Upper Limb.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#ColomboMDP18,https://doi.org/10.1155/2018/4132820 +Xiaohui Zhao 0003,Automatic Target Recognition Strategy for Synthetic Aperture Radar Images Based on Combined Discrimination Trees.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#ZhaoJS17,https://doi.org/10.1155/2017/7186120 +Jan Ehlers,Age-Specific Mechanisms in an SSVEP-Based BCI Scenario: Evidences from Spontaneous Rhythms and Neuronal Oscillators.,2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#EhlersVSG12,https://doi.org/10.1155/2012/967305 +Shinichi Tamura,Why People Play: Artificial Lives Acquiring Play Instinct to Stabilize Productivity.,2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#TamuraIHYMT12,https://doi.org/10.1155/2012/197262 +Mustafa Bozdemir,Prediction of Surface Roughness considering Cutting Parameters and Humidity Condition in End Milling of Polyamide Materials.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#Bozdemir18,https://doi.org/10.1155/2018/5850432 +Jiangfan Feng,Bag of Visual Words Model with Deep Spatial Features for Geographical Scene Classification.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#FengLW17,https://doi.org/10.1155/2017/5169675 +Hyun Jun Park,An Effective Color Quantization Method Using Octree-Based Self-Organizing Maps.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ParkKC16,https://doi.org/10.1155/2016/5302957 +Bei-bei Miao,Main Trend Extraction Based on Irregular Sampling Estimation and Its Application in Storage Volume of Internet Data Center.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#MiaoCJ16,https://doi.org/10.1155/2016/9328062 +Cristina Campi,Highly Automated Dipole EStimation (HADES).,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#CampiPSP11,https://doi.org/10.1155/2011/982185 +Danish Shehzad,Optimizing NEURON Simulation Environment Using Remote Memory Access with Recursive Doubling on Distributed Memory Systems.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ShehzadB16,https://doi.org/10.1155/2016/3676582 +Guan Wang,Automatic Image-Based Plant Disease Severity Estimation Using Deep Learning.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#WangSW17,https://doi.org/10.1155/2017/2917536 +Chunfeng Wang,A Novel Particle Swarm Optimization Algorithm for Global Optimization.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#WangL16,https://doi.org/10.1155/2016/9482073 +Leandro J. Moreira,Prototype Generation Using Self-Organizing Maps for Informativeness-Based Classifier.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#MoreiraS17,https://doi.org/10.1155/2017/4263064 +Chaolong Jia,Study of Track Irregularity Time Series Calibration and Variation Pattern at Unit Section.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#JiaWWY14,https://doi.org/10.1155/2014/727948 +Kab-Mun Cha,Novel Methods for Measuring Depth of Anesthesia by Quantifying Dominant Information Flow in Multichannel EEGs.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#ChaCNS17,https://doi.org/10.1155/2017/3521261 +Zhenquan Shi,A New Knowledge Characteristics Weighting Method Based on Rough Set and Knowledge Granulation.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#ShiC18,https://doi.org/10.1155/2018/1838639 +Srdjan Sladojevic,Deep Neural Networks Based Recognition of Plant Diseases by Leaf Image Classification.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#SladojevicAACS16,https://doi.org/10.1155/2016/3289801 +Zhibin Yu 0002,Underwater Inherent Optical Properties Estimation Using a Depth Aided Deep Neural Network.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#YuWZZWG17,https://doi.org/10.1155/2017/8351232 +Xuan Zhou,CyberPsychological Computation on Social Community of Ubiquitous Learning.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#ZhouDHSHHI15,https://doi.org/10.1155/2015/812650 +Facundo Carrillo,Fast Distributed Dynamics of Semantic Networks via Social Media.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#CarrilloCSS15,https://doi.org/10.1155/2015/712835 +Vojtech Uher,Utilization of the Discrete Differential Evolution for Optimization in Multidimensional Point Clouds.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#UherGRS16,https://doi.org/10.1155/2016/6329530 +Ronald Phlypo,Removing Ocular Movement Artefacts by a Joint Smoothened Subspace Estimator.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#PhlypoBDL07,https://doi.org/10.1155/2007/75079 +Jorge Humberto Moreno-Scott,Experimental Matching of Instances to Heuristics for Constraint Satisfaction Problems.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#Moreno-ScottOTC16,https://doi.org/10.1155/2016/7349070 +Yongrui Huang,Fusion of Facial Expressions and EEG for Multimodal Emotion Recognition.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#HuangYLP17,https://doi.org/10.1155/2017/2107451 +Kyle G. Horn,Emergent Central Pattern Generator Behavior in Gap-Junction-Coupled Hodgkin-Huxley Style Neuron Model.,2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#HornMS12,https://doi.org/10.1155/2012/173910 +Yunlong Yu,A Two-Stream Deep Fusion Framework for High-Resolution Aerial Scene Classification.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#YuL18,https://doi.org/10.1155/2018/8639367 +Antonio Novellino,Connecting Neurons to a Mobile Robot: An In Vitro Bidirectional Neural Interface.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#NovellinoDCCSM07,https://doi.org/10.1155/2007/12725 +Pengfei Li,A Red-Light Running Prevention System Based on Artificial Neural Network and Vehicle Trajectory Data.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#LiLG14,https://doi.org/10.1155/2014/892132 +Shafaatunnur Hasan,Multistrategy Self-Organizing Map Learning for Classification Problems.,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#HasanS11,https://doi.org/10.1155/2011/121787 +Jack Zito,"Application of a ""Staggered Walk"" Algorithm for Generating Large-Scale Morphological Neuronal Networks.",2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#ZitoMHSW12,https://doi.org/10.1155/2012/876357 +Xiang Zhao,AITSO: A Tool for Spatial Optimization Based on Artificial Immune Systems.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#ZhaoLLM15,https://doi.org/10.1155/2015/549832 +Arif Budiman,Adaptive Online Sequential ELM for Concept Drift Tackling.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#BudimanFB16,https://doi.org/10.1155/2016/8091267 +Jukka Kortelainen,High-Frequency Electroencephalographic Activity in Left Temporal Area Is Associated with Pleasant Emotion Induced by Video Clips.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#KortelainenVS15,https://doi.org/10.1155/2015/762769 +Wenjia Niu,Efficient Multiple Kernel Learning Algorithms Using Low-Rank Representation.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#NiuXZB17,https://doi.org/10.1155/2017/3678487 +Mauro Castelli,Controlling Individuals Growth in Semantic Genetic Programming through Elitist Replacement.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#CastelliVP16,https://doi.org/10.1155/2016/8326760 +João Wellington M. Souza,A New Approach to Diagnose Parkinson's Disease Using a Structural Cooccurrence Matrix for a Similarity Analysis.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#SouzaARAF18,https://doi.org/10.1155/2018/7613282 +Harlei Miguel de Arruda Leite,Analysis of User Interaction with a Brain-Computer Interface Based on Steady-State Visually Evoked Potentials: Case Study of a Game.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#LeiteCCAHA18,https://doi.org/10.1155/2018/4920132 +Selin Metin,From Occasional Choices to Inevitable Musts: A Computational Model of Nicotine Addiction.,2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#MetinS12,https://doi.org/10.1155/2012/817485 +Yen-Wei Chen,Computational Intelligence in Biomedical Science and Engineering.,2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#ChenNTLJ12,https://doi.org/10.1155/2012/160356 +Victor Hugo C. de Albuquerque,Recent Advances in Brain Signal Analysis: Methods and Applications.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#AlbuquerquePPTM16,https://doi.org/10.1155/2016/2742943 +Nadia Rasheed,Developmental and Evolutionary Lexicon Acquisition in Cognitive Agents/Robots with Grounding Principle: A Short Review.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#RasheedA16,https://doi.org/10.1155/2016/8571265 +Simone G. O. Fiori,Asymmetric Variate Generation via a Parameterless Dual Neural Learning Algorithm.,2008,2008,Comp. Int. and Neurosc.,,db/journals/cin/cin2008.html#Fiori08,https://doi.org/10.1155/2008/426080 +Saeed Bamatraf,A System for True and False Memory Prediction Based on 2D and 3D Educational Contents and EEG Brain Signals.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#BamatrafHAEMAMM16,https://doi.org/10.1155/2016/8491046 +Aurel A. Lazar,Consistent Recovery of Sensory Stimuli Encoded with MIMO Neural Circuits.,2010,2010,Comp. Int. and Neurosc.,,db/journals/cin/cin2010.html#LazarP10,https://doi.org/10.1155/2010/469658 +Singh Vijendra,Symmetry Based Automatic Evolution of Clusters: A New Approach to Data Clustering.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#VijendraS15, +Qinghua Su,Color Image Quantization Algorithm Based on Self-Adaptive Differential Evolution.,2013,2013,Comp. Int. and Neurosc.,,db/journals/cin/cin2013.html#SuH13,https://doi.org/10.1155/2013/231916 +Chunhua Li,Refining Automatically Extracted Knowledge Bases Using Crowdsourcing.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#LiZSXWC17,https://doi.org/10.1155/2017/4092135 +Jian-Fang Cao,Fuzzy Emotional Semantic Analysis and Automated Annotation of Scene Images.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#CaoC15,https://doi.org/10.1155/2015/971039 +Rafik Aliev,Application of Z-Number Based Modeling in Psychological Research.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#AlievM15,https://doi.org/10.1155/2015/760403 +Shipra Banik,Hybrid Machine Learning Technique for Forecasting Dhaka Stock Market Timing Decisions.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#BanikKA14,https://doi.org/10.1155/2014/318524 +Thomas Koenig,Ragu: A Free Tool for the Analysis of EEG and MEG Event-Related Scalp Field Data Using Global Randomization Statistics.,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#KoenigKSM11,https://doi.org/10.1155/2011/938925 +Zhongxiang Feng,Combined Prediction Model of Death Toll for Road Traffic Accidents Based on Independent and Dependent Variables.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#FengL|Z14,https://doi.org/10.1155/2014/103196 +Hsien-Tsung Chang,ATIPS: Automatic Travel Itinerary Planning System for Domestic Areas.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ChangCT16,https://doi.org/10.1155/2016/1281379 +Laura Astolfi,Processing of Brain Signals by Using Hemodynamic and Neuroelectromagnetic Modalities.,2010,2010,Comp. Int. and Neurosc.,,db/journals/cin/cin2010.html#AstolfiAFB10,https://doi.org/10.1155/2010/934180 +Giulia Regalia,A Framework for the Comparative Assessment of Neuronal Spike Sorting Algorithms towards More Accurate Off-Line and On-Line Microelectrode Arrays Data Analysis.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#RegaliaCBFP16,https://doi.org/10.1155/2016/8416237 +Simona Denisia Iftime Nielsen,Learning Arm/Hand Coordination with an Altered Visual Input.,2010,2010,Comp. Int. and Neurosc.,,db/journals/cin/cin2010.html#NielsenDPP10,https://doi.org/10.1155/2010/520781 +Antonino Laudani,On Training Efficiency and Computational Costs of a Feed Forward Neural Network: A Review.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#LaudaniLFS15,https://doi.org/10.1155/2015/818243 +Xuefeng Xian,Stratification-Based Outlier Detection over the Deep Web.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#XianZSFGYC16,https://doi.org/10.1155/2016/7386517 +Kevin Heinrich,Gene Tree Labeling Using Nonnegative Matrix Factorization on Biomedical Literature.,2008,2008,Comp. Int. and Neurosc.,,db/journals/cin/cin2008.html#HeinrichBH08,https://doi.org/10.1155/2008/276535 +L. M. Rasdi Rere,Metaheuristic Algorithms for Convolution Neural Network.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#RereFA16,https://doi.org/10.1155/2016/1537325 +Jia Gao,Explore Interregional EEG Correlations Changed by Sport Training Using Feature Selection.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#GaoWZ16,https://doi.org/10.1155/2016/6184823 +Youchuan Wan,"A ""Tuned"" Mask Learnt Approach Based on Gravitational Search Algorithm.",2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#WanWYL16,https://doi.org/10.1155/2016/8179670 +Chunyuan Zhang,Kernel Recursive Least-Squares Temporal Difference Algorithms with Sparsification and Regularization.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ZhangZN16,https://doi.org/10.1155/2016/2305854 +L. Andrew Coward,Using the Change Manager Model for the Hippocampal System to Predict Connectivity and Neurophysiological Parameters in the Perirhinal Cortex.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#CowardG16,https://doi.org/10.1155/2016/8625875 +Hidetoshi Ikeno,Development of a Scheme and Tools to Construct a Standard Moth Brain for Neural Network Simulations.,2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#IkenoKNMSHNK12,https://doi.org/10.1155/2012/795291 +Lun Zhang,Golden Ratio Genetic Algorithm Based Approach for Modelling and Analysis of the Capacity Expansion of Urban Road Traffic Network.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#ZhangZYD15,https://doi.org/10.1155/2015/512715 +Thomas Hinze,Biochemical Frequency Control by Synchronisation of Coupled Repressilators: An In Silico Study of Modules for Circadian Clock Systems.,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#HinzeSBHS11,https://doi.org/10.1155/2011/262189 +Wei Wei 0009,Weighted Feature Gaussian Kernel SVM for Emotion Recognition.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#WeiJ16,https://doi.org/10.1155/2016/7696035 +Lin Lu,Almost Periodic Dynamics for Memristor-Based Shunting Inhibitory Cellular Neural Networks with Leakage Delays.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#LuL16,https://doi.org/10.1155/2016/3587271 +Noman Naseer,Analysis of Different Classification Techniques for Two-Class Functional Near-Infrared Spectroscopy-Based Brain-Computer Interface.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#NaseerQNH16,https://doi.org/10.1155/2016/5480760 +Kai Li,BrainK for Structural Image Processing: Creating Electrical Models of the Human Head.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#LiPT16,https://doi.org/10.1155/2016/1349851 +Qianwang Deng,A Bee Evolutionary Guiding Nondominated Sorting Genetic Algorithm II for Multiobjective Flexible Job-Shop Scheduling.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#DengGGZLR17,https://doi.org/10.1155/2017/5232518 +Bin Xu 0010,Motivation Classification and Grade Prediction for MOOCs Learners.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#XuY16,https://doi.org/10.1155/2016/2174613 +Kangho Paek,Log-Spiral Keypoint: A Robust Approach toward Image Patch Matching.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#PaekYLK15,https://doi.org/10.1155/2015/457495 +Alan Díaz-Manríquez,R2-Based Multi/Many-Objective Particle Swarm Optimization.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#Diaz-ManriquezP16a,https://doi.org/10.1155/2016/1898527 +Chunyan Shuai,A Novel Accuracy and Similarity Search Structure Based on Parallel Bloom Filters.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ShuaiYOLC16,https://doi.org/10.1155/2016/4075257 +Xiaoping Yang,Automatic Construction and Global Optimization of a Multisentiment Lexicon.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#YangZZMLYZ16,https://doi.org/10.1155/2016/2093406 +Björn Wahlund,Seizure (Ictal) - EEG Characteristics in Subgroups of Depressive Disorder in Patients Receiving Electroconvulsive Therapy (ECT) - A Preliminary Study and Multivariate Approach.,2009,2009,Comp. Int. and Neurosc.,,db/journals/cin/cin2009.html#WahlundPRLL09,https://doi.org/10.1155/2009/965209 +Shuang Huang,Neural Cognition and Affective Computing on Cyber Language.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#HuangZXWYXIY15,https://doi.org/10.1155/2015/749326 +Wan-li Xiang,An Enhanced Differential Evolution Algorithm Based on Multiple Mutation Strategies.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#XiangMALG15,https://doi.org/10.1155/2015/285730 +Fabio Babiloni,Selected Papers from the 4th International Conference on Bioinspired Systems and Cognitive Signal Processing.,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#BabiloniCSACA11,https://doi.org/10.1155/2011/913040 +Mourad Turki,Extracting T-S Fuzzy Models Using the Cuckoo Search Algorithm.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#TurkiS17,https://doi.org/10.1155/2017/8942394 +Phuoc Tran,A Character Level Based and Word Level Based Approach for Chinese-Vietnamese Machine Translation.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#TranDN16,https://doi.org/10.1155/2016/9821608 +Guillaume Marrelec,A Theoretical Investigation of the Relationship between Structural Equation Modeling and Partial Correlation in Functional MRI Effective Connectivity.,2009,2009,Comp. Int. and Neurosc.,,db/journals/cin/cin2009.html#MarrelecB09,https://doi.org/10.1155/2009/369341 +Mohammed M. Abdelsamea,On the Relationship between Variational Level Set-Based and SOM-Based Active Contours.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#AbdelsameaGGE15, +Dalton Meitei Thounaojam,A Genetic Algorithm and Fuzzy Logic Approach for Video Shot Boundary Detection.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ThounaojamKSR16,https://doi.org/10.1155/2016/8469428 +Dakuo He,Optimization Control of the Color-Coating Production Process for Model Uncertainty.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#HeWYM16,https://doi.org/10.1155/2016/9731823 +Lida Barba,A Novel Multilevel-SVD Method to Improve Multistep Ahead Forecasting in Traffic Accidents Domain.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#BarbaR17,https://doi.org/10.1155/2017/7951395 +Ningyu Zhang,ELM Meets Urban Big Data Analysis: Case Studies.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ZhangCCC16a,https://doi.org/10.1155/2016/4970246 +Xu Yu 0001,A Cross-Domain Collaborative Filtering Algorithm Based on Feature Construction and Locally Weighted Linear Regression.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#YuLJDH18,https://doi.org/10.1155/2018/1425365 +Birgitta Dresp-Langley,2D Geometry Predicts Perceived Visual Curvature in Context-Free Viewing.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#Dresp-Langley15, +Chiwen Qu,A Modified Sine-Cosine Algorithm Based on Neighborhood Search and Greedy Levy Mutation.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#QuZDYH18,https://doi.org/10.1155/2018/4231647 +Zhiyong He,Saliency Mapping Enhanced by Structure Tensor.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#HeCS15,https://doi.org/10.1155/2015/875735 +Zhen Yang,Genetic Algorithm for Multiple Bus Line Coordination on Urban Arterial.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#YangWCDL15,https://doi.org/10.1155/2015/868521 +Xi-Guang Li,New Dandelion Algorithm Optimizes Extreme Learning Machine for Biomedical Classification Problems.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#LiHZGL17,https://doi.org/10.1155/2017/4523754 +José Carlos Ortiz-Bayliss,Exploring the Impact of Early Decisions in Variable Ordering for Constraint Satisfaction Problems.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#Ortiz-BaylissAC18,https://doi.org/10.1155/2018/6103726 +Anan Banharnsakun,Object Detection Based on Template Matching through Use of Best-So-Far ABC.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#BanharnsakunT14,https://doi.org/10.1155/2014/919406 +Wei-Der Chang,Phase Response Design of Recursive All-Pass Digital Filters Using a Modified PSO Algorithm.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#Chang15,https://doi.org/10.1155/2015/638068 +Gustavo P. Sudre,rtMEG: A Real-Time Software Interface for Magnetoencephalography.,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#SudrePBBWW11,https://doi.org/10.1155/2011/327953 +Jie-Sheng Wang,Cuckoo Search Algorithm Based on Repeat-Cycle Asymptotic Self-Learning and Self-Evolving Disturbance for Function Optimization.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#WangLJ15,https://doi.org/10.1155/2015/374873 +Seth A. Herd,Strategic Cognitive Sequencing: A Computational Cognitive Neuroscience Approach.,2013,2013,Comp. Int. and Neurosc.,,db/journals/cin/cin2013.html#HerdKKHHO13,https://doi.org/10.1155/2013/149329 +Laura Astolfi,NeuroMath: Advanced Methods for the Estimation of Human Brain Activity and Connectivity.,2009,2009,Comp. Int. and Neurosc.,,db/journals/cin/cin2009.html#AstolfiCB09,https://doi.org/10.1155/2009/275638 +Qazi Zia Ullah,Adaptive Resource Utilization Prediction System for Infrastructure as a Service Cloud.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#UllahSK17,https://doi.org/10.1155/2017/4873459 +Federico Raimondo,CUDAICA: GPU Optimization of Infomax-ICA EEG Analysis.,2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#RaimondoKSS12,https://doi.org/10.1155/2012/206972 +Rafal Zdunek,Fast Nonnegative Matrix Factorization Algorithms Using Projected Gradient Approaches for Large-Scale Problems.,2008,2008,Comp. Int. and Neurosc.,,db/journals/cin/cin2008.html#ZdunekC08,https://doi.org/10.1155/2008/939567 +Tom Eichele,EEGIFT: Group Independent Component Analysis for Event-Related EEG Data.,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#EicheleRBEC11,https://doi.org/10.1155/2011/129365 +Andrea Villagra,A Methodology for the Hybridization Based in Active Components: The Case of cGA and Scatter Search.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#VillagraAL16,https://doi.org/10.1155/2016/8289237 +Binglian Zhu,A Novel Quantum-Behaved Bat Algorithm with Mean Best Position Directed for Numerical Optimization.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ZhuZLDC16,https://doi.org/10.1155/2016/6097484 +Shi-hua Zhan,List-Based Simulated Annealing Algorithm for Traveling Salesman Problem.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ZhanLZZ16,https://doi.org/10.1155/2016/1712630 +Feng Zou,An Improved Teaching-Learning-Based Optimization with the Social Character of PSO for Global Optimization.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ZouCW16,https://doi.org/10.1155/2016/4561507 +Xigao Shao,ℓ*p-Norm Multikernel Learning Approach for Stock Market Price Forecasting.,2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#ShaoWL12,https://doi.org/10.1155/2012/601296 +Emilia Biffi,Development and Validation of a Spike Detection and Classification Algorithm Aimed at Implementation on Hardware Devices.,2010,2010,Comp. Int. and Neurosc.,,db/journals/cin/cin2010.html#BiffiGPF10,https://doi.org/10.1155/2010/659050 +Hongzhi Hu,Information Dissemination of Public Health Emergency on Social Networks and Intelligent Computation.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#HuMHHSJD15,https://doi.org/10.1155/2015/181038 +Sebastian Halder 0001,Online Artifact Removal for Brain-Computer Interfaces Using Support Vector Machines and Blind Source Separation.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#HalderBMBKBR07,https://doi.org/10.1155/2007/82069 +Xue-Bai Zhang,Eye Tracking Based Control System for Natural Human-Computer Interaction.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#ZhangLYL17,https://doi.org/10.1155/2017/5739301 +Kittasil Silanon,Thai Finger-Spelling Recognition Using a Cascaded Classifier Based on Histogram of Orientation Gradient Features.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#Silanon17,https://doi.org/10.1155/2017/9026375 +Robert Leeb,Self-Paced (Asynchronous) BCI Control of a Wheelchair in Virtual Environments: A Case Study with a Tetraplegic.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#LeebFMSSP07,https://doi.org/10.1155/2007/79642 +Michael W. Spratling,Unsupervised Learning of Overlapping Image Components Using Divisive Input Modulation.,2009,2009,Comp. Int. and Neurosc.,,db/journals/cin/cin2009.html#SpratlingMK09,https://doi.org/10.1155/2009/381457 +Jacopo Lamanna,Detection of Fractal Behavior in Temporal Series of Synaptic Quantal Release Events: A Feasibility Study.,2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#LamannaMCS12,https://doi.org/10.1155/2012/704673 +Reinhold Scherer,The Self-Paced Graz Brain-Computer Interface: Methods and Applications.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#SchererSLBJP07,https://doi.org/10.1155/2007/79826 +Julien Stamatakis,Finger Tapping Clinimetric Score Prediction in Parkinson's Disease Using Low-Cost Accelerometers.,2013,2013,Comp. Int. and Neurosc.,,db/journals/cin/cin2013.html#StamatakisACSDMG13,https://doi.org/10.1155/2013/717853 +Xiaohua Nie,Chaos Quantum-Behaved Cat Swarm Optimization Algorithm and Its Application in the PV MPPT.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#NieWN17,https://doi.org/10.1155/2017/1583847 +Hyoungnyoun Kim,Hypergraph-Based Recognition Memory Model for Lifelong Experience.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#KimP14,https://doi.org/10.1155/2014/354703 +Ming-Yuan Cho,Feature Selection and Parameters Optimization of SVM Using Particle Swarm Optimization for Fault Classification in Power Distribution Systems.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#ChoH17,https://doi.org/10.1155/2017/4135465 +Jiancheng Weng,Freeway Travel Speed Calculation Model Based on ETC Transaction Data.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#WengYWW14,https://doi.org/10.1155/2014/174123 +Hui-yuan Tian,An Extreme Learning Machine Based on Artificial Immune System.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#TianLWY18,https://doi.org/10.1155/2018/3635845 +Rensong Liu,Identification of Anisomerous Motor Imagery EEG Signals Based on Complex Algorithms.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#LiuZDZM17,https://doi.org/10.1155/2017/2727856 +Lili A. Wulandhari,Improvement of Adaptive GAs and Back Propagation ANNs Performance in Condition Diagnosis of Multiple Bearing System Using Grey Relational Analysis.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#WulandhariWD14,https://doi.org/10.1155/2014/419743 +Geng Lin,An Integrated Method Based on PSO and EDA for the Max-Cut Problem.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#LinG16,https://doi.org/10.1155/2016/3420671 +Mengmeng Wang,A Multilayer Naïve Bayes Model for Analyzing User's Retweeting Sentiment Tendency.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#WangZW15,https://doi.org/10.1155/2015/510281 +Jussi Tohka,Simulation and Validation in Brain Image Analysis.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#TohkaBGR16,https://doi.org/10.1155/2016/1041058 +Fabio Babiloni,The Estimation of Cortical Activity for Brain-Computer Interface: Applications in a Domotic Context.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#BabiloniCMSATAF07,https://doi.org/10.1155/2007/091651 +Tai-Xiang Jiang,Patch-Based Principal Component Analysis for Face Recognition.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#JiangHZM17,https://doi.org/10.1155/2017/5317850 +Jong-Wook Park,Advanced Fuzzy Potential Field Method for Mobile Robot Obstacle Avoidance.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ParkKKK16,https://doi.org/10.1155/2016/6047906 +Gauthier Doquire,Feature Selection for Interpatient Supervised Heart Beat Classification.,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#DoquireLFV11,https://doi.org/10.1155/2011/643816 +Muhammad Asif Zahoor Raja,A New Stochastic Technique for Painlevé Equation-I Using Neural Network Optimized with Swarm Intelligence.,2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#RajaKAQ12,https://doi.org/10.1155/2012/721867 +Weihui Dai,Recent Advances in Learning Theory.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#DaiDAXC15,https://doi.org/10.1155/2015/395948 +Valentín Osuna-Enciso,A Multiobjective Approach to Homography Estimation.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#Osuna-EncisoCOZ16,https://doi.org/10.1155/2016/3629174 +Juha Pajula,How Many Is Enough? Effect of Sample Size in Inter-Subject Correlation Analysis of fMRI.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#PajulaT16,https://doi.org/10.1155/2016/2094601 +Xiaoqing Wang,Unsupervised Domain Adaptation for Facial Expression Recognition Using Generative Adversarial Networks.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#WangWN18,https://doi.org/10.1155/2018/7208794 +Gian Luca Breschi,Characterizing the Input-Output Function of the Olfactory-Limbic Pathway in the Guinea Pig.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#BreschiCNRTCP15,https://doi.org/10.1155/2015/359590 +Jie Wang,Financial Time Series Prediction Using Elman Recurrent Random Neural Networks.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#WangWFN16,https://doi.org/10.1155/2016/4742515 +Valeria Mondini,EEG-Based BCI System Using Adaptive Features Extraction and Classification Procedures.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#MondiniMC16,https://doi.org/10.1155/2016/4562601 +Gaoli Sang,Pose-Invariant Face Recognition via RGB-D Images.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#SangLZ16,https://doi.org/10.1155/2016/3563758 +Jun Wang,Forecasting Nonlinear Chaotic Time Series with Function Expression Method Based on an Improved Genetic-Simulated Annealing Algorithm.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#WangZZZ15,https://doi.org/10.1155/2015/341031 +Changqiao Shao,Valuation of Travel Time Savings in Viewpoint of WTA.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#ShaoLX14,https://doi.org/10.1155/2014/305285 +Ana-Sofía Hincapié,MEG Connectivity and Power Detections with Minimum Norm Estimates Require Different Regularization Parameters.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#HincapieKMSDMCJ16,https://doi.org/10.1155/2016/3979547 +Jagendra Singh,Relevance Feedback Based Query Expansion Model Using Borda Count and Semantic Similarity Approach.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#SinghS15,https://doi.org/10.1155/2015/568197 +Hani A. Omar,A Hybrid Neural Network Model for Sales Forecasting Based on ARIMA and Search Popularity of Article Titles.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#OmarHL16,https://doi.org/10.1155/2016/9656453 +Haimin Yang,Robust and Adaptive Online Time Series Prediction with Long Short-Term Memory.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#YangPT17,https://doi.org/10.1155/2017/9478952 +Xin Zhou,An Opinion Interactive Model Based on Individual Persuasiveness.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#ZhouCLMQ15,https://doi.org/10.1155/2015/345160 +Yongquan Xie,A Multiuser Manufacturing Resource Service Composition Method Based on the Bees Algorithm.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#XieZPXJ15,https://doi.org/10.1155/2015/780352 +Zhen-Lun Yang,An Improved Quantum-Behaved Particle Swarm Optimization Algorithm with Elitist Breeding for Unconstrained Optimization.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#YangWM15,https://doi.org/10.1155/2015/326431 +Guihua Wen,Random Deep Belief Networks for Recognizing Emotions from Speech Signals.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#WenLHLX17,https://doi.org/10.1155/2017/1945630 +Bin Xu 0010,Study Partners Recommendation for xMOOCs Learners.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#XuY15,https://doi.org/10.1155/2015/832093 +Iman Sadeghkhani,Radial Basis Function Neural Network Application to Power System Restoration Studies.,2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#SadeghkhaniKF12,https://doi.org/10.1155/2012/654895 +Jinxing Lai,Prediction of Soil Deformation in Tunnelling Using Artificial Neural Networks.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#LaiQFCF16,https://doi.org/10.1155/2016/6708183 +Andrey Zhdanov,Inferring Functional Brain States Using Temporal Evolution of Regularized Classifiers.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#ZhdanovHUI07,https://doi.org/10.1155/2007/52609 +Yanping Du,Risk Evaluation of Bogie System Based on Extension Theory and Entropy Weight Method.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#DuZZW14,https://doi.org/10.1155/2014/195752 +Mingan Wang,Cloud Model-Based Artificial Immune Network for Complex Optimization Problem.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#WangFLLXG17,https://doi.org/10.1155/2017/5901258 +Masaki Kobayashi,Fast Recall for Complex-Valued Hopfield Neural Networks with Projection Rules.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#Kobayashi17,https://doi.org/10.1155/2017/4894278 +Logesh Ravi,A Collaborative Location Based Travel Recommendation System through Enhanced Rating Prediction for the Group of Users.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#RaviV16,https://doi.org/10.1155/2016/1291358 +Ying Yu,Statistical Modeling and Prediction for Tourism Economy Using Dendritic Neural Network.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#YuWGT17,https://doi.org/10.1155/2017/7436948 +Shiwang Hou,Intelligent Process Abnormal Patterns Recognition and Diagnosis Based on Fuzzy Logic.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#HouFW16,https://doi.org/10.1155/2016/8289508 +Yanhua Wang,GA-Based Membrane Evolutionary Algorithm for Ensemble Clustering.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#WangLX17,https://doi.org/10.1155/2017/4367342 +Zahra Sadeghi,A Computational Approach towards Visual Object Recognition at Taxonomic Levels of Concepts.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#SadeghiAA15, +Sotir Sotirov,Application of the Intuitionistic Fuzzy InterCriteria Analysis Method with Triples to a Neural Network Preprocessing Procedure.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#SotirovASDBMT17,https://doi.org/10.1155/2017/2157852 +Qing Ye,A Framework for Final Drive Simultaneous Failure Diagnosis Based on Fuzzy Entropy and Sparse Bayesian Extreme Learning Machine.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#YeHL15,https://doi.org/10.1155/2015/427965 +Roberto Antonio Vázquez,Training Spiking Neural Models Using Artificial Bee Colony.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#VazquezG15,https://doi.org/10.1155/2015/947098 +Jianlin Zhu,CDMBE: A Case Description Model Based on Evidence.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#ZhuYZ15,https://doi.org/10.1155/2015/470818 +Sanne P. Roels,Evaluation of Second-Level Inference in fMRI Analysis.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#RoelsLM16,https://doi.org/10.1155/2016/1068434 +Hongfang Zhou,A Feature Selection Approach Based on Interclass and Intraclass Relative Contributions of Terms.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ZhouGWZ16,https://doi.org/10.1155/2016/1715780 +Haijian Chen,Design of Automatic Extraction Algorithm of Knowledge Points for MOOCs.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#ChenHDZ15,https://doi.org/10.1155/2015/123028 +Errikos M. Ventouras,Independent Component Analysis for Source Localization of EEG Sleep Spindle Components.,2010,2010,Comp. Int. and Neurosc.,,db/journals/cin/cin2010.html#VentourasKTPKS10,https://doi.org/10.1155/2010/329436 +Laura Kauhanen,EEG-Based Brain-Computer Interface for Tetraplegics.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#KauhanenJLRAS07,https://doi.org/10.1155/2007/23864 +Jaehong Yoon,Spatial and Time Domain Feature of ERP Speller System Extracted via Convolutional Neural Network.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#YoonLW18,https://doi.org/10.1155/2018/6058065 +Shuqiu Tan,A Robust Shape Reconstruction Method for Facial Feature Point Detection.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#TanCGH17,https://doi.org/10.1155/2017/4579398 +Amine Khadmaoui,MEG Analysis of Neural Interactions in Attention-Deficit/Hyperactivity Disorder.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#KhadmaouiGPBFQH16,https://doi.org/10.1155/2016/8450241 +Zhao Kang,LogDet Rank Minimization with Application to Subspace Clustering.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#KangPCC15,https://doi.org/10.1155/2015/824289 +Cheng Xu 0003,Recurrent Transformation of Prior Knowledge Based Model for Human Motion Recognition.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#XuHZCDTL18,https://doi.org/10.1155/2018/4160652 +Athanasios Voulodimos,Deep Learning for Computer Vision: A Brief Review.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#VoulodimosDDP18,https://doi.org/10.1155/2018/7068349 +Jonathan-Hernando Rosales,Search for an Appropriate Behavior within the Emotional Regulation in Virtual Creatures Using a Learning Classifier System.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#RosalesRRC17,https://doi.org/10.1155/2017/5204083 +Chi Guo,A Lane-Level LBS System for Vehicle Network with High-Precision BDS/GPS Positioning.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#GuoGCD15,https://doi.org/10.1155/2015/531321 +Yi Zhang,Combining MLC and SVM Classifiers for Learning Based Decision Making: Analysis and Evaluations.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#ZhangRJ15,https://doi.org/10.1155/2015/423581 +Zhongbo Hu,Multiobjective Image Color Quantization Algorithm Based on Self-Adaptive Hybrid Differential Evolution.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#HuSX16,https://doi.org/10.1155/2016/2450431 +Ranganatha Sitaram,fMRI Brain-Computer Interface: A Tool for Neuroscientific Research and Treatment.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#SitaramCVGRKB07,https://doi.org/10.1155/2007/25487 +Tinggui Chen,Modeling Design Iteration in Product Design and Development and Its Solution by a Novel Artificial Bee Colony Algorithm.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#ChenX14,https://doi.org/10.1155/2014/240828 +Benjamin Chandler,Mitigation of Effects of Occlusion on Object Recognition with Deep Neural Networks through Low-Level Image Completion.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ChandlerM16,https://doi.org/10.1155/2016/6425257 +Lamyaa Sadouk,A Novel Deep Learning Approach for Recognizing Stereotypical Motor Movements within and across Subjects on the Autism Spectrum Disorder.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#SadoukGE18,https://doi.org/10.1155/2018/7186762 +N. Firat Ozkan,Classification of BCI Users Based on Cognition.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#OzkanK18,https://doi.org/10.1155/2018/6315187 +Chi-Chung Chen,Enhanced Ant Colony Optimization with Dynamic Mutation and Ad Hoc Initialization for Improving the Design of TSK-Type Fuzzy System.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#ChenL18,https://doi.org/10.1155/2018/9485478 +Yang Zhou 0002,A Model of Generating Visual Place Cells Based on Environment Perception and Similar Measure.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ZhouW16,https://doi.org/10.1155/2016/3253678 +Ying Niu,Image Encryption Algorithm Based on Hyperchaotic Maps and Nucleotide Sequences Database.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#NiuZH17,https://doi.org/10.1155/2017/4079793 +Zhaolu Guo,An Enhanced Differential Evolution with Elite Chaotic Local Search.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#GuoHDYW15,https://doi.org/10.1155/2015/583759 +Jian Xiong 0003,A Novel Method of Failure Sample Selection for Electrical Systems Using Ant Colony Optimization.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#XiongTYL16,https://doi.org/10.1155/2016/4238734 +Tao Zhang 0020,The Artificial Neural Networks Based on Scalarization Method for a Class of Bilevel Biobjective Programming Problem.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#ZhangCLL17,https://doi.org/10.1155/2017/1853131 +Jun Wang,An Improved Cuckoo Search Optimization Algorithm for the Problem of Chaotic Systems Parameter Estimation.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#WangZZ16,https://doi.org/10.1155/2016/2959370 +Ernest Nlandu Kamavuako,Comparison of Features for Movement Prediction from Single-Trial Movement-Related Cortical Potentials in Healthy Subjects and Stroke Patients.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#KamavuakoJND15,https://doi.org/10.1155/2015/858015 +Wei Li 0086,A Novel Brain Network Construction Method for Exploring Age-Related Functional Reorganization.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#LiWLHC16,https://doi.org/10.1155/2016/2429691 +Maarten De Vos,Canonical Decomposition of Ictal Scalp EEG and Accurate Source Localisation: Principles and Simulation Study.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#VosLVHP07,https://doi.org/10.1155/2007/58253 +Peng Wang,Multiscale Quantum Harmonic Oscillator Algorithm for Multimodal Optimization.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#WangCHLYC18,https://doi.org/10.1155/2018/8430175 +Jihyun Kim 0005,"Corrigendum to ""Nonintrusive Load Monitoring Based on Advanced Deep Learning and Novel Signature"".",2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#KimLK18,https://doi.org/10.1155/2018/7080564 +Anant Hegde,Clustering Approach to Quantify Long-Term Spatio-Temporal Interactions in Epileptic Intracranial Electroencephalography.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#HegdeESPS07,https://doi.org/10.1155/2007/83416 +Debotosh Bhattacharjee,A Comparative Study of Human Thermal Face Recognition Based on Haar Wavelet Transform and Local Binary Pattern.,2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#BhattacharjeeSGNB12,https://doi.org/10.1155/2012/261089 +Ju-Chi Liu,Time-Shift Correlation Algorithm for P300 Event Related Potential Brain-Computer Interface Implementation.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#LiuCCLK16,https://doi.org/10.1155/2016/3039454 +Shan Zhong,Efficient Actor-Critic Algorithm with Hierarchical Model Learning and Planning.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ZhongLF16,https://doi.org/10.1155/2016/4824072 +M. A. Porta-Garcia,Assessment of Multivariate Neural Time Series by Phase Synchrony Clustering in a Time-Frequency-Topography Representation.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#Porta-GarciaVY18,https://doi.org/10.1155/2018/2406909 +Yang Liu 0010,Parallelizing Backpropagation Neural Network Using MapReduce and Cascading Model.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#LiuJX16,https://doi.org/10.1155/2016/2842780 +Xuncai Zhang,Chaotic Image Encryption Algorithm Based on Bit Permutation and Dynamic DNA Encoding.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#ZhangHN17,https://doi.org/10.1155/2017/6919675 +Jinguo Liu,An Interactive Astronaut-Robot System with Gesture Control.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#LiuLJ16,https://doi.org/10.1155/2016/7845102 +Juliana M. de Oliveira,Novel Virtual Environment for Alternative Treatment of Children with Cerebral Palsy.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#OliveiraFPPRA16,https://doi.org/10.1155/2016/8984379 +Montri Inthachot,Artificial Neural Network and Genetic Algorithm Hybrid Intelligence for Predicting Thai Stock Price Index Trend.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#InthachotBI16,https://doi.org/10.1155/2016/3045254 +Weiwei Qi,Game Theory Model of Traffic Participants within Amber Time at Signalized Intersection.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#QiWFS14,https://doi.org/10.1155/2014/756235 +Gabriel Recchia,Encoding Sequential Information in Semantic Space Models: Comparing Holographic Reduced Representation and Random Permutation.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#RecchiaSKJ15,https://doi.org/10.1155/2015/986574 +Miquel L. Alomar,FPGA-Based Stochastic Echo State Networks for Time-Series Forecasting.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#AlomarCPMR16,https://doi.org/10.1155/2016/3917892 +Intissar Khoja,Cuckoo Search Approach for Parameter Identification of an Activated Sludge Process.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#KhojaLMS18,https://doi.org/10.1155/2018/3476851 +Taegu Kim,Box Office Forecasting considering Competitive Environment and Word-of-Mouth in Social Networks: A Case Study of Korean Film Market.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#KimHK17,https://doi.org/10.1155/2017/4315419 +Nikolay V. Manyakov,Comparison of Classification Methods for P300 Brain-Computer Interface on Disabled Subjects.,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#ManyakovCCH11,https://doi.org/10.1155/2011/519868 +Muhammad Taimoor Khan,Online Knowledge-Based Model for Big Data Topic Extraction.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#KhanDKA16,https://doi.org/10.1155/2016/6081804 +Keiko Sakurai,Gaze Estimation Method Using Analysis of Electrooculogram Signals and Kinect Sensor.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#SakuraiYTT17,https://doi.org/10.1155/2017/2074752 +Shuangshuang Xiao,Numerical Computation of Homogeneous Slope Stability.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#XiaoLDL15,https://doi.org/10.1155/2015/802835 +Chengcai Leng,Robust Adaptive Principal Component Analysis Based on Intergraph Matrix for Medical Image Registration.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#LengXLZ15,https://doi.org/10.1155/2015/829528 +Qi Shi,Rhythmic Oscillations of Excitatory Bursting Hodkin-Huxley Neuronal Network with Synaptic Learning.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ShiHWL16,https://doi.org/10.1155/2016/6023547 +Carmen Vidaurre,BioSig: The Free and Open Source Software Library for Biomedical Signal Processing.,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#VidaurreSS11,https://doi.org/10.1155/2011/935364 +Hajer Omrane,Fuzzy Logic Based Control for Autonomous Mobile Robot Navigation.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#OmraneMM16,https://doi.org/10.1155/2016/9548482 +Luís Costa,Application of Machine Learning in Postural Control Kinematics for the Diagnosis of Alzheimer's Disease.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#CostaGYFSRSB16,https://doi.org/10.1155/2016/3891253 +Yuxian Zhang,An Allele Real-Coded Quantum Evolutionary Algorithm Based on Hybrid Updating Strategy.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ZhangQPW16,https://doi.org/10.1155/2016/9891382 +Karen Alicia Aguilar Cruz,n-Iterative Exponential Forgetting Factor for EEG Signals Parameter Estimation.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#CruzAPJ18,https://doi.org/10.1155/2018/4613740 +Fei Gao 0005,A Novel Active Semisupervised Convolutional Neural Network Algorithm for SAR Image Recognition.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#GaoYWSYZ17,https://doi.org/10.1155/2017/3105053 +Rong Cheng,Initialization by a Novel Clustering for Wavelet Neural Network as Time Series Predictor.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#ChengHTB15, +Subha Danushika Fernando,Spike-Timing-Dependent Plasticity and Short-Term Plasticity Jointly Control the Excitation of Hebbian Plasticity without Weight Constraints in Neural Networks.,2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#FernandoY12,https://doi.org/10.1155/2012/968272 +Jihyun Kim 0005,Nonintrusive Load Monitoring Based on Advanced Deep Learning and Novel Signature.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#KimLK17,https://doi.org/10.1155/2017/4216281 +Vangelis Sakkalis,Parametric and Nonparametric EEG Analysis for the Evaluation of EEG Activity in Young Children with Controlled Epilepsy.,2008,2008,Comp. Int. and Neurosc.,,db/journals/cin/cin2008.html#SakkalisCZCFBKM08,https://doi.org/10.1155/2008/462593 +Xing Tian,TopoToolbox: Using Sensor Topography to Calculate Psychologically Meaningful Measures from Event-Related EEG/MEG.,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#TianPH11,https://doi.org/10.1155/2011/674605 +Shuang Li,Regularized Embedded Multiple Kernel Dimensionality Reduction for Mine Signal Processing.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#LiLZ16,https://doi.org/10.1155/2016/4920670 +Shibli Nisar,An Efficient Adaptive Window Size Selection Method for Improving Spectrogram Visualization.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#NisarKT16,https://doi.org/10.1155/2016/6172453 +Andrzej Cichocki,EEG/MEG Signal Processing.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#CichockiS07,https://doi.org/10.1155/2007/97026 +Shinichi Tamura,Spike Code Flow in Cultured Neuronal Networks.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#TamuraNHMSKYMC16,https://doi.org/10.1155/2016/7267691 +Ju-Chi Liu,"Corrigendum to ""Time-Shift Correlation Algorithm for P300 Event Related Potential Brain-Computer Interface Implementation"".",2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#LiuCCLK17,https://doi.org/10.1155/2017/8012547 +Ruimin Li,Incident Duration Modeling Using Flexible Parametric Hazard-Based Models.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#LiS14,https://doi.org/10.1155/2014/723427 +Stanislav Popelka 0001,EyeTribe Tracker Data Accuracy Evaluation and Its Interconnection with Hypothesis Software for Cartographic Purposes.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#PopelkaSSD16,https://doi.org/10.1155/2016/9172506 +Lei Shi,Feature Selection for Object-Based Classification of High-Resolution Remote Sensing Images Based on the Combination of a Genetic Algorithm and Tabu Search.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#ShiWGW18,https://doi.org/10.1155/2018/6595792 +Katrina Wendel,The Influence of Age and Skull Conductivity on Surface and Subdermal Bipolar EEG Leads.,2010,2010,Comp. Int. and Neurosc.,,db/journals/cin/cin2010.html#WendelVSHM10,https://doi.org/10.1155/2010/397272 +Hiroki Tamura,EOG-sEMG Human Interface for Communication.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#TamuraYST16,https://doi.org/10.1155/2016/7354082 +Junqing Shi,A New Cellular Automaton Model for Urban Two-Way Road Networks.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#ShiCLL14,https://doi.org/10.1155/2014/685047 +Ahmed R. J. Almusawi,A New Artificial Neural Network Approach in Solving Inverse Kinematics of Robotic Arm (Denso VP6242).,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#AlmusawiDK16,https://doi.org/10.1155/2016/5720163 +Ken Yano,A Novel Fixed Low-Rank Constrained EEG Spatial Filter Estimation with Application to Movie-Induced Emotion Recognition.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#YanoS16,https://doi.org/10.1155/2016/6734720 +Shanwen Zhang,Discriminant WSRC for Large-Scale Plant Species Recognition.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#ZhangZZY17,https://doi.org/10.1155/2017/9581292 +Jie Yang 0025,Analysis of Vehicle-Following Heterogeneity Using Self-Organizing Feature Maps.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#YangCGR14,https://doi.org/10.1155/2014/561036 +Bing-kun Wang,A Fuzzy Computing Model for Identifying Polarity of Chinese Sentiment Words.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#WangHWL15,https://doi.org/10.1155/2015/525437 +Laura Astolfi,The Track of Brain Activity during the Observation of TV Commercials with the High-Resolution EEG Technology.,2009,2009,Comp. Int. and Neurosc.,,db/journals/cin/cin2009.html#AstolfiVFSCAMMBSB09,https://doi.org/10.1155/2009/652078 +Forrest Sheng Bao,PyEEG: An Open Source Python Module for EEG/MEG Feature Extraction.,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#BaoLZ11,https://doi.org/10.1155/2011/406391 +Lei Peng,Memetic Differential Evolution with an Improved Contraction Criterion.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#PengZDW17,https://doi.org/10.1155/2017/1395025 +Sergio Parini,A Robust and Self-Paced BCI System Based on a Four Class SSVEP Paradigm: Algorithms and Protocols for a High-Transfer-Rate Direct Brain Communication.,2009,2009,Comp. Int. and Neurosc.,,db/journals/cin/cin2009.html#PariniMTA09,https://doi.org/10.1155/2009/864564 +Dilek Göksel,Determination of Neural Fiber Connections Based on Data Structure Algorithm.,2010,2010,Comp. Int. and Neurosc.,,db/journals/cin/cin2010.html#GokselO10,https://doi.org/10.1155/2010/251928 +Ming-jun Deng,Fuzzy State Transition and Kalman Filter Applied in Short-Term Traffic Flow Forecasting.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#DengQ15,https://doi.org/10.1155/2015/875243 +Fei Teng,Square or Sine: Finding a Waveform with High Success Rate of Eliciting SSVEP.,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#TengCCGRLW11,https://doi.org/10.1155/2011/364385 +Frank Klefenz,Modeling the Formation Process of Grouping Stimuli Sets through Cortical Columns and Microcircuits to Feature Neurons.,2013,2013,Comp. Int. and Neurosc.,,db/journals/cin/cin2013.html#KlefenzW13,https://doi.org/10.1155/2013/290358 +Chao Tan,An Improved Genetic Fuzzy Logic Control Method to Reduce the Enlargement of Coal Floor Deformation in Shearer Memory Cutting Process.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#TanXWSL16,https://doi.org/10.1155/2016/3973627 +Jan Faigl,An Application of Self-Organizing Map for Multirobot Multigoal Path Planning with Minmax Objective.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#Faigl16,https://doi.org/10.1155/2016/2720630 +Tarik çakar,Solving Single Machine Total Weighted Tardiness Problem with Unequal Release Date Using Neurohybrid Particle Swarm Optimization Approach.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#CakarK15,https://doi.org/10.1155/2015/838925 +Jian Xie,A Novel Bat Algorithm Based on Differential Operator and Lévy Flights Trajectory.,2013,2013,Comp. Int. and Neurosc.,,db/journals/cin/cin2013.html#XieZC13,https://doi.org/10.1155/2013/453812 +Duc-Thuan Vo,Exploiting Language Models to Classify Events from Twitter.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#VoHO15,https://doi.org/10.1155/2015/401024 +Petr Máca,Forecasting SPEI and SPI Drought Indices Using the Integrated Artificial Neural Networks.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#MacaP16,https://doi.org/10.1155/2016/3868519 +Ali Bülent Usakli,On the Use of Electrooculogram for Efficient Human Computer Interfaces.,2010,2010,Comp. Int. and Neurosc.,,db/journals/cin/cin2010.html#UsakliGAVB10,https://doi.org/10.1155/2010/135629 +Xiangjuan Yao,Genetic Algorithm-Based Test Data Generation for Multiple Paths via Individual Sharing.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#YaoG14,https://doi.org/10.1155/2014/591294 +Yanqiu Liu,Applying Cost-Sensitive Extreme Learning Machine and Dissimilarity Integration to Gene Expression Data Classification.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#LiuLYXA16,https://doi.org/10.1155/2016/8056253 +G. S. Vijay,Evaluation of Effectiveness of Wavelet Based Denoising Schemes Using ANN and SVM for Bearing Condition Classification.,2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#VijayKPSR12,https://doi.org/10.1155/2012/582453 +Yu Sun 0015,Deep Learning for Plant Identification in Natural Environment.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#SunLWZ17,https://doi.org/10.1155/2017/7361042 +Haibo Shi,Dynamical Motor Control Learned with Deep Deterministic Policy Gradient.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#ShiSL18,https://doi.org/10.1155/2018/8535429 +Yongkai Ye,Consensus Kernel K-Means Clustering for Incomplete Multiview Data.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#YeLLY17,https://doi.org/10.1155/2017/3961718 +Mao Ye 0003,Modeling the Commuting Travel Activities within Historic Districts in Chinese Cities.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#YeYLYH14,https://doi.org/10.1155/2014/253289 +Muhammad Naeem 0003,Dimensionality Reduction and Channel Selection of Motor Imagery Electroencephalographic Data.,2009,2009,Comp. Int. and Neurosc.,,db/journals/cin/cin2009.html#NaeemBP09,https://doi.org/10.1155/2009/537504 +Jin-Peng Qi,A Fast Framework for Abrupt Change Detection Based on Binary Search Trees and Kolmogorov Statistic.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#QiQZ16,https://doi.org/10.1155/2016/8343187 +Yong-Jin Han,A Natural Language Interface Concordant with a Knowledge Base.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#HanPP16,https://doi.org/10.1155/2016/9174683 +Rahib Hidayat Abiyev,Fusion of Computational Intelligence Techniques and Their Practical Applications.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#AbiyevAKTB15,https://doi.org/10.1155/2015/463147 +Jianjun Ni,Bioinspired Intelligent Algorithm and Its Applications for Mobile Robot Control: A Survey.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#NiWFY16,https://doi.org/10.1155/2016/3810903 +Jingjing Wang,MapReduce Based Personalized Locality Sensitive Hashing for Similarity Joins on Large Scale Data.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#WangL15,https://doi.org/10.1155/2015/217216 +Andrzej Cichocki,Advances in Nonnegative Matrix and Tensor Factorization.,2008,2008,Comp. Int. and Neurosc.,,db/journals/cin/cin2008.html#CichockiMSWZ08,https://doi.org/10.1155/2008/852187 +Francisco Martínez-álvarez,Applications of Computational Intelligence in Time Series.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#Martinez-Alvarez17,https://doi.org/10.1155/2017/9361749 +Hashim A. Hashim,Fuzzy Controller Design Using Evolutionary Techniques for Twin Rotor MIMO System: A Comparative Study.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#HashimA15,https://doi.org/10.1155/2015/704301 +Denise Berger,Efficient Identification of Assembly Neurons within Massively Parallel Spike Trains.,2010,2010,Comp. Int. and Neurosc.,,db/journals/cin/cin2010.html#BergerBLMG10,https://doi.org/10.1155/2010/439648 +Heraldo Memelli,Analyzing the Effects of Gap Junction Blockade on Neural Synchrony via a Motoneuron Network Computational Model.,2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#MemelliHWS12,https://doi.org/10.1155/2012/575129 +Bin Ran,Traffic Speed Data Imputation Method Based on Tensor Completion.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#RanTFLW15,https://doi.org/10.1155/2015/364089 +Andrés Espinal,Quadrupedal Robot Locomotion: A Biologically Inspired Approach and Its Hardware Implementation.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#EspinalRVGOSSM16,https://doi.org/10.1155/2016/5615618 +Xing-cai Liu,Robust Optimization Model and Algorithm for Railway Freight Center Location Problem in Uncertain Environment.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#LiuHSSL14,https://doi.org/10.1155/2014/607159 +Denis Brunet,Spatiotemporal Analysis of Multichannel EEG: CARTOOL.,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#BrunetMM11,https://doi.org/10.1155/2011/813870 +Turky N. Alotaiby,Epileptic Seizure Prediction Using CSP and LDA for Scalp EEG Signals.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#AlotaibyAAA17,https://doi.org/10.1155/2017/1240323 +Rolando Grave de Peralta Menendez,The Neuroelectromagnetic Inverse Problem and the Zero Dipole Localization Error.,2009,2009,Comp. Int. and Neurosc.,,db/journals/cin/cin2009.html#MenendezHA09,https://doi.org/10.1155/2009/659247 +Valeria Mondini,Sinc-Windowing and Multiple Correlation Coefficients Improve SSVEP Recognition Based on Canonical Correlation Analysis.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#MondiniMTC18,https://doi.org/10.1155/2018/4278782 +Maryamossadat Aghili,Mining Big Neuron Morphological Data.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#AghiliF18,https://doi.org/10.1155/2018/8234734 +Xiang-ming Gao,Optimal Parameter Selection for Support Vector Machine Based on Artificial Bee Colony Algorithm: A Case Study of Grid-Connected PV System Power Prediction.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#GaoYP17,https://doi.org/10.1155/2017/7273017 +Wee Loon Lim,A Biogeography-Based Optimization Algorithm Hybridized with Tabu Search for the Quadratic Assignment Problem.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#LimWDH16,https://doi.org/10.1155/2016/5803893 +Bai Li,Research on WNN Modeling for Gold Price Forecasting Based on Improved Artificial Bee Colony Algorithm.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#Li14,https://doi.org/10.1155/2014/270658 +Yang Liu,Hybrid Artificial Root Foraging Optimizer Based Multilevel Threshold for Image Segmentation.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#LiuLTM16,https://doi.org/10.1155/2016/1476838 +Avijit Kumar Datta,The P300 as a Marker of Waning Attention and Error Propensity.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#DattaCHHRRM07,https://doi.org/10.1155/2007/93968 +Athanasios Voulodimos,Recent Developments in Deep Learning for Engineering Applications.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#VoulodimosDBS18,https://doi.org/10.1155/2018/8141259 +Melissa Zavaglia,A Neural Mass Model to Simulate Different Rhythms in a Cortical Region.,2010,2010,Comp. Int. and Neurosc.,,db/journals/cin/cin2010.html#ZavagliaCU10,https://doi.org/10.1155/2010/456140 +Bin Wang 0005,Reversible Data Hiding Based on DNA Computing.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#WangXZZZ17,https://doi.org/10.1155/2017/7276084 +Zhehuang Huang,Log-Linear Model Based Behavior Selection Method for Artificial Fish Swarm Algorithm.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#HuangC15,https://doi.org/10.1155/2015/685404 +Hongbing Liu,Image Superresolution Reconstruction via Granular Computing Clustering.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#LiuZWH14,https://doi.org/10.1155/2014/219636 +Girish Singhal,Ensemble Fractional Sensitivity: A Quantitative Approach to Neuron Selection for Decoding Motor Tasks.,2010,2010,Comp. Int. and Neurosc.,,db/journals/cin/cin2010.html#SinghalAAAHT10,https://doi.org/10.1155/2010/648202 +Elisa Visani,Simultaneous EEG-fMRI in Patients with Unverricht-Lundborg Disease: Event-Related Desynchronization/Synchronization and Hemodynamic Response Analysis.,2010,2010,Comp. Int. and Neurosc.,,db/journals/cin/cin2010.html#VisaniMCGSVFABFP10,https://doi.org/10.1155/2010/164278 +Guoqi Li,Memory Dynamics in Attractor Networks.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#LiRNSW15,https://doi.org/10.1155/2015/191745 +Penglin Zhang,Composite Match Index with Application of Interior Deformation Field Measurement from Magnetic Resonance Volumetric Images of Human Tissues.,2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#ZhangZC12,https://doi.org/10.1155/2012/135204 +Tao Geng,A Novel Design of 4-Class BCI Using Two Binary Classifiers and Parallel Mental Tasks.,2008,2008,Comp. Int. and Neurosc.,,db/journals/cin/cin2008.html#GengGDTS08,https://doi.org/10.1155/2008/437306 +Bartosz Binias,A Machine Learning Approach to the Detection of Pilot's Reaction to Unexpected Events Based on EEG Signals.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#BiniasMC18,https://doi.org/10.1155/2018/2703513 +Jing Huang 0003,A Cognitive Model Based on Neuromodulated Plasticity.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#HuangRYFLC16,https://doi.org/10.1155/2016/4296356 +Quang Hung Do,A Neuro-Fuzzy Approach in the Classification of Students' Academic Performance.,2013,2013,Comp. Int. and Neurosc.,,db/journals/cin/cin2013.html#DoC13,https://doi.org/10.1155/2013/179097 +Juan Meng,Generalization Bounds Derived IPM-Based Regularization for Domain Adaptation.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#MengHLZP16,https://doi.org/10.1155/2016/7046563 +Yanhong Feng,An Effective Hybrid Cuckoo Search Algorithm with Improved Shuffled Frog Leaping Algorithm for 0-1 Knapsack Problems.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#FengWFZ14,https://doi.org/10.1155/2014/857254 +Chao Tan,A Pressure Control Method for Emulsion Pump Station Based on Elman Neural Network.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#TanQZLYWS15,https://doi.org/10.1155/2015/684096 +Narúsci S. Bastos,Discovering Patterns in Brain Signals Using Decision Trees.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#BastosAB16,https://doi.org/10.1155/2016/6391807 +Benjamin A. Shimray,Ranking of Sites for Installation of Hydropower Plant Using MLP Neural Network Trained with GA: A MADM Approach.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#ShimraySKM17,https://doi.org/10.1155/2017/4152140 +Xiaoping Yang,A Long-Term Prediction Model of Beijing Haze Episodes Using Time Series Analysis.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#YangZZSXY16,https://doi.org/10.1155/2016/6459873 +Junichi Hori,High-Resolution Cortical Dipole Imaging Using Spatial Inverse Filter Based on Filtering Property.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#HoriT16,https://doi.org/10.1155/2016/8404565 +Yong-Hyuk Kim,Improved Correction of Atmospheric Pressure Data Obtained by Smartphones through Machine Learning.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#KimHYKISC16,https://doi.org/10.1155/2016/9467878 +Wei Wu 0006,Modeling and Analysis of Neural Spike Trains.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#WuACK14,https://doi.org/10.1155/2014/161203 +Hongfei Ji,EEG Classification for Hybrid Brain-Computer Interface Using a Tensor Based Multiclass Multimodal Analysis Scheme.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#JiLLGCG16,https://doi.org/10.1155/2016/1732836 +Mingyu Fu,Bioinspired Coordinated Path Following for Vessels with Speed Saturation Based on Virtual Leader.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#FuX16,https://doi.org/10.1155/2016/6054791 +Nouar AlDahoul,Real-Time Human Detection for Aerial Captured Video Sequences via Deep Models.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#AlDahoulSM18,https://doi.org/10.1155/2018/1639561 +Charles E. Martin,Fusing Swarm Intelligence and Self-Assembly for Optimizing Echo State Networks.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#MartinR15,https://doi.org/10.1155/2015/642429 +Jun Wu,Safety Assessment of Dangerous Goods Transport Enterprise Based on the Relative Entropy Aggregation in Group Decision Making Model.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#WuLH14,https://doi.org/10.1155/2014/571058 +Marsel Fazlyyyakhmatov,The EEG Activity during Binocular Depth Perception of 2D Images.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#Fazlyyyakhmatov18,https://doi.org/10.1155/2018/5623165 +Shinichi Tamura,Random Bin for Analyzing Neuron Spike Trains.,2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#TamuraMSM12,https://doi.org/10.1155/2012/153496 +Chunlei Chen,On the Accuracy and Parallelism of GPGPU-Powered Incremental Clustering Algorithms.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#ChenHZZW17,https://doi.org/10.1155/2017/2519782 +Julius Beneoluchi Odili,Solving the Traveling Salesman's Problem Using the African Buffalo Optimization.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#OdiliK16,https://doi.org/10.1155/2016/1510256 +Zhe Chen 0001,Statistical Modeling and Analysis of Laser-Evoked Potentials of Electrocorticogram Recordings from Awake Humans.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#ChenOCVLC07,https://doi.org/10.1155/2007/10479 +Fangzhao Li,A Composite Model of Wound Segmentation Based on Traditional Methods and Deep Neural Networks.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#LiWLPJ18,https://doi.org/10.1155/2018/4149103 +Atcharin Klomsae,String Grammar Unsupervised Possibilistic Fuzzy C-Medians for Gait Pattern Classification in Patients with Neurodegenerative Diseases.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#KlomsaeAT18,https://doi.org/10.1155/2018/1869565 +Md. Rafiul Hassan,Moisture Damage Modeling in Lime and Chemically Modified Asphalt at Nanolevel Using Ensemble Computational Intelligence.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#HassanMHA18,https://doi.org/10.1155/2018/7525789 +François Tadel,Brainstorm: A User-Friendly Application for MEG/EEG Analysis.,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#TadelBMPL11,https://doi.org/10.1155/2011/879716 +Michael P. McAssey,Coupling among Electroencephalogram Gamma Signals on a Short Time Scale.,2010,2010,Comp. Int. and Neurosc.,,db/journals/cin/cin2010.html#McAsseyHS10,https://doi.org/10.1155/2010/946089 +Piotr Borkowski,Inference Engine in an Intelligent Ship Course-Keeping System.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#Borkowski17,https://doi.org/10.1155/2017/2561383 +Aurel Vasile Martiniuc,Interspike Interval Based Filtering of Directional Selective Retinal Ganglion Cells Spike Trains.,2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#MartiniucK12,https://doi.org/10.1155/2012/918030 +Bing-kun Wang,Combining Review Text Content and Reviewer-Item Rating Matrix to Predict Review Rating.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#WangHL16,https://doi.org/10.1155/2016/5968705 +Xianfeng Yuan,A Novel Mittag-Leffler Kernel Based Hybrid Fault Diagnosis Method for Wheeled Robot Driving System.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#YuanSZCL15,https://doi.org/10.1155/2015/606734 +Yange Sun,A Classifier Graph Based Recurring Concept Detection and Prediction Approach.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#SunWBDN18,https://doi.org/10.1155/2018/4276291 +Yajiao Tang,A Pruning Neural Network Model in Credit Classification Analysis.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#TangJGDYT18,https://doi.org/10.1155/2018/9390410 +Betania Hernández-Ocaña,Two-Swim Operators in the Modified Bacterial Foraging Algorithm for the Optimal Synthesis of Four-Bar Mechanisms.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#Hernandez-Ocana16,https://doi.org/10.1155/2016/4525294 +Liping Sun,A Novel Artificial Immune Algorithm for Spatial Clustering with Obstacle Constraint and Its Applications.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#SunLDZ14,https://doi.org/10.1155/2014/160730 +Hongfang Zhou,A Global-Relationship Dissimilarity Measure for the k-Modes Clustering Algorithm.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#ZhouZL17,https://doi.org/10.1155/2017/3691316 +Jia Hou,New Algorithms for Computing the Time-to-Collision in Freeway Traffic Simulation Models.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#HouLG14,https://doi.org/10.1155/2014/761047 +Marta Parazzini,Effect of the Interindividual Variability on Computational Modeling of Transcranial Direct Current Stimulation.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#ParazziniFLR15,https://doi.org/10.1155/2015/963293 +Maria Gabriella Tana,Exploring Cortical Attentional System by Using fMRI during a Continuous Perfomance Test.,2010,2010,Comp. Int. and Neurosc.,,db/journals/cin/cin2010.html#TanaMCB10,https://doi.org/10.1155/2010/329213 +Wlodzimierz Klonowski,Some Computational Aspects of the Brain Computer Interfaces Based on Inner Music.,2009,2009,Comp. Int. and Neurosc.,,db/journals/cin/cin2009.html#KlonowskiDPJ09,https://doi.org/10.1155/2009/950403 +Ali Taylan Cemgil,Bayesian Inference for Nonnegative Matrix Factorisation Models.,2009,2009,Comp. Int. and Neurosc.,,db/journals/cin/cin2009.html#Cemgil09,https://doi.org/10.1155/2009/785152 +Julius Gelsvartas,User Adaptive Text Predictor for Mentally Disabled Huntington's Patients.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#GelsvartasSM16,https://doi.org/10.1155/2016/3054258 +,Analysis of Pull-In Instability of Geometrically Nonlinear Microbeam Using Radial Basis Artificial Neural Network Based on Couple Stress Theory.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#HeidariHH14,https://doi.org/10.1155/2014/571632 +Li Deng,Operating Comfort Prediction Model of Human-Machine Interface Layout for Cabin Based on GEP.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#DengWC15, +Kenneth Ball,PWC-ICA: A Method for Stationary Ordered Blind Source Separation with Application to EEG.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#BallSMR16,https://doi.org/10.1155/2016/9754813 +Dan X. Zhang,An Algorithm for Idle-State Detection in Motor-Imagery-Based Brain-Computer Interface.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#ZhangWGHG07,https://doi.org/10.1155/2007/39714 +Linguo Li,Modified Discrete Grey Wolf Optimizer Algorithm for Multilevel Image Thresholding.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#LiSGQXL17,https://doi.org/10.1155/2017/3295769 +Linpeng Jin,Ensemble Deep Learning for Biomedical Time Series Classification.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#JinD16,https://doi.org/10.1155/2016/6212684 +Xiaochun Zou,Learning-Based Visual Saliency Model for Detecting Diabetic Macular Edema in Retinal Image.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ZouZYL16,https://doi.org/10.1155/2016/7496735 +Theodore W. Berger,Signal Processing for Neural Spike Trains.,2010,2010,Comp. Int. and Neurosc.,,db/journals/cin/cin2010.html#BergerCCOQT10,https://doi.org/10.1155/2010/698751 +Edwin Daniel Oña,Effectiveness of Serious Games for Leap Motion on the Functionality of the Upper Limb in Parkinson's Disease: A Feasibility Study.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#OnaBCCJ18,https://doi.org/10.1155/2018/7148427 +Mauro Castelli,Energy Consumption Forecasting Using Semantic-Based Genetic Programming with Local Search Optimizer.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#CastelliTV15,https://doi.org/10.1155/2015/971908 +Jinyi Long,An Efficient Framework for EEG Analysis with Application to Hybrid Brain Computer Interfaces Based on Motor Imagery and P300.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#LongWY17,https://doi.org/10.1155/2017/9528097 +Jianli Liu,Toward Model Building for Visual Aesthetic Perception.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#LiuLZ17,https://doi.org/10.1155/2017/1292801 +B. L. Mayer,On Synchronizing Coupled Retinogeniculocortical Pathways: A Toy Model.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#MayerM18,https://doi.org/10.1155/2018/6858176 +Jialiang Kou,Multiobjective Optimization of Evacuation Routes in Stadium Using Superposed Potential Field Network Based ACO.,2013,2013,Comp. Int. and Neurosc.,,db/journals/cin/cin2013.html#KouXFZC13,https://doi.org/10.1155/2013/369016 +Kuo-Wei Hsu,A Theoretical Analysis of Why Hybrid Ensembles Work.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#Hsu17,https://doi.org/10.1155/2017/1930702 +Jérémy Frey,Classifying EEG Signals during Stereoscopic Visualization to Estimate Visual Comfort.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#FreyALH16,https://doi.org/10.1155/2016/2758103 +Jing Zhao,A General Fuzzy Cerebellar Model Neural Network Multidimensional Classifier Using Intuitionistic Fuzzy Sets for Medical Identification.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ZhaoLL16,https://doi.org/10.1155/2016/8073279 +João-Batista Destro-Filho,Quantitative Estimation of the Nonstationary Behavior of Neural Spontaneous Activity.,2010,2010,Comp. Int. and Neurosc.,,db/journals/cin/cin2010.html#Destro-FilhoEMMCMN10,https://doi.org/10.1155/2010/785919 +Xiaoyan Wang 0005,A Modified MinMax k-Means Algorithm Based on PSO.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#WangB16,https://doi.org/10.1155/2016/4606384 +Chih-Feng Chao,The Construction of Support Vector Machine Classifier Using the Firefly Algorithm.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#ChaoH15,https://doi.org/10.1155/2015/212719 +Shan Pang,Deep Convolutional Extreme Learning Machine and Its Application in Handwritten Digit Classification.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#PangY16,https://doi.org/10.1155/2016/3049632 +Tomás E. Ward,A Concept for Extending the Applicability of Constraint-Induced Movement Therapy through Motor Cortex Activity Feedback Using a Neural Prosthesis.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#WardSMM07,https://doi.org/10.1155/2007/51363 +Francesco Cavrini,A Fuzzy Integral Ensemble Method in Visual P300 Brain-Computer Interface.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#CavriniBQS16,https://doi.org/10.1155/2016/9845980 +Xuan Li,An Efficient Robust Eye Localization by Learning the Convolution Distribution Using Eye Template.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#LiDNXX15,https://doi.org/10.1155/2015/709072 +Cota Navin Gupta,Enhanced Detection of Visual-Evoked Potentials in Brain-Computer Interface Using Genetic Algorithm and Cyclostationary Analysis.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#GuptaP07,https://doi.org/10.1155/2007/28692 +Xiuli Zhao,An Extended Affinity Propagation Clustering Method Based on Different Data Density Types.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#ZhaoX15,https://doi.org/10.1155/2015/828057 +Fabio Babiloni,Brain-Computer Interfaces: Towards Practical Implementations and Potential Applications.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#BabiloniCG07,https://doi.org/10.1155/2007/62637 +Wei Li 0068,Differential Cloud Particles Evolution Algorithm Based on Data-Driven Mechanism for Applications of ANN.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#Li17,https://doi.org/10.1155/2017/8469103 +Stephen V. David,Decoupling Action Potential Bias from Cortical Local Field Potentials.,2010,2010,Comp. Int. and Neurosc.,,db/journals/cin/cin2010.html#DavidMS10,https://doi.org/10.1155/2010/393019 +Xiaopeng Wei,Multiswarm Particle Swarm Optimization with Transfer of the Best Particle.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#WeiZZZ15, +Mohammed Goryawala,Inclusion of Neuropsychological Scores in Atrophy Models Improves Diagnostic Classification of Alzheimer's Disease and Mild Cognitive Impairment.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#GoryawalaZBLDA15, +Pavel Skrabánek,Robust Grape Detector Based on SVMs and HOG Features.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#SkrabanekD17,https://doi.org/10.1155/2017/3478602 +Erik Marchi,Deep Recurrent Neural Network-Based Autoencoders for Acoustic Novelty Detection.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#MarchiVSS17,https://doi.org/10.1155/2017/4694860 +Jingyu Zhou,Test Generation Algorithm for Fault Detection of Analog Circuits Based on Extreme Learning Machine.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#ZhouTYR14,https://doi.org/10.1155/2014/740838 +Khawla El Bendadi,An Improved Kernel Credal Classification Algorithm Based on Regularized Mahalanobis Distance: Application to Microarray Data Analysis.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#BendadiLS18,https://doi.org/10.1155/2018/7525786 +Jiaxi Wang,Optimizing the Shunting Schedule of Electric Multiple Units Depot Using an Enhanced Particle Swarm Optimization Algorithm.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#WangLJ16,https://doi.org/10.1155/2016/5804626 +Giulia Cartocci,Gender and Age Related Effects While Watching TV Advertisements: An EEG Study.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#CartocciCRMMFB16,https://doi.org/10.1155/2016/3795325 +Weikuan Jia,Study on Optimized Elman Neural Network Classification Algorithm Based on PLS and CA.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#JiaZSTZ14,https://doi.org/10.1155/2014/724317 +Shuangping Gong,Emotion Analysis of Telephone Complaints from Customer Based on Affective Computing.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#GongDJWS15,https://doi.org/10.1155/2015/506905 +Lucas L. Neves,A Linear Analysis of Coupled Wilson-Cowan Neuronal Populations.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#NevesM16,https://doi.org/10.1155/2016/8939218 +Lin Chen 0005,Online Sequential Projection Vector Machine with Adaptive Data Mean Update.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ChenJZDW16,https://doi.org/10.1155/2016/5197932 +Karim El-Laithy,A Reinforcement Learning Framework for Spiking Networks with Dynamic Synapses.,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#El-LaithyB11,https://doi.org/10.1155/2011/869348 +Mads Jochumsen,Classification of Hand Grasp Kinetics and Types Using Movement-Related Cortical Potentials and EEG Rhythms.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#JochumsenRRNDK17,https://doi.org/10.1155/2017/7470864 +Zhongbin Wang,A Dynamic Health Assessment Approach for Shearer Based on Artificial Immune Algorithm.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#WangXSJLT16,https://doi.org/10.1155/2016/9674942 +Abdu Gumaei,An Improved Multispectral Palmprint Recognition System Using Autoencoder with Regularized Extreme Learning Machine.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#GumaeiSAA18,https://doi.org/10.1155/2018/8041609 +David Griol,A Neural Network Approach to Intention Modeling for User-Adapted Conversational Agents.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#GriolC16,https://doi.org/10.1155/2016/8402127 +Nour-Eddine el Harchaoui,Unsupervised Approach Data Analysis Based on Fuzzy Possibilistic Clustering: Application to Medical Image MRI.,2013,2013,Comp. Int. and Neurosc.,,db/journals/cin/cin2013.html#HarchaouiKHOA13,https://doi.org/10.1155/2013/435497 +Myungwon Lee,An Incremental Radial Basis Function Network Based on Information Granules and Its Application.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#LeeK16,https://doi.org/10.1155/2016/3207627 +Zhisong Wang,Single-Trial Decoding of Bistable Perception Based on Sparse Nonnegative Tensor Decomposition.,2008,2008,Comp. Int. and Neurosc.,,db/journals/cin/cin2008.html#WangMLL08,https://doi.org/10.1155/2008/642387 +Xiao Wang 0009,MultiP-Apo: A Multilabel Predictor for Identifying Subcellular Locations of Apoptosis Proteins.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#WangLWZZG17,https://doi.org/10.1155/2017/9183796 +Shan Guan,Multiclass Motor Imagery Recognition of Single Joint in Upper Limb Based on NSGA- II OVO TWSVM.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#GuanZW18,https://doi.org/10.1155/2018/6265108 +Awatef Aouf,TLBO-Based Adaptive Neurofuzzy Controller for Mobile Robot Navigation in a Strange Environment.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#AoufBS18,https://doi.org/10.1155/2018/3145436 +Christian Lebiere,A Functional Model of Sensemaking in a Neurocognitive Architecture.,2013,2013,Comp. Int. and Neurosc.,,db/journals/cin/cin2013.html#LebierePTPRSA13,https://doi.org/10.1155/2013/921695 +Panagiotis G. Asteris,Prediction of the Fundamental Period of Infilled RC Frame Structures Using Artificial Neural Networks.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#AsterisTCRPTK16,https://doi.org/10.1155/2016/5104907 +Arup Ghosh,PLAT: An Automated Fault and Behavioural Anomaly Detection Tool for PLC Controlled Manufacturing Systems.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#GhoshSLW16,https://doi.org/10.1155/2016/1652475 +Shuangqing Chen,PS-FW: A Hybrid Algorithm Based on Particle Swarm and Fireworks for Global Optimization.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#ChenLWG18,https://doi.org/10.1155/2018/6094685 +Jianzhao Qin,A Semisupervised Support Vector Machines Algorithm for BCI Systems.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#QinLS07,https://doi.org/10.1155/2007/94397 +Yves Leclercq,fMRI Artefact Rejection and Sleep Scoring Toolbox.,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#LeclercqSNMP11,https://doi.org/10.1155/2011/598206 +Suogang Wang,Extracting Rhythmic Brain Activity for Brain-Computer Interfacing through Constrained Independent Component Analysis.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#WangJ07,https://doi.org/10.1155/2007/41468 +Zhuping Zhou,Modeling Pedestrian's Conformity Violation Behavior: A Complex Network Based Approach.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#ZhouHW14,https://doi.org/10.1155/2014/865750 +Kang Zhou,Optimization for Service Routes of Pallet Service Center Based on the Pallet Pool Mode.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ZhouHS16,https://doi.org/10.1155/2016/5691735 +Valeri A. Makarov,Stability of Neural Firing in the Trigeminal Nuclei under Mechanical Whisker Stimulation.,2010,2010,Comp. Int. and Neurosc.,,db/journals/cin/cin2010.html#MakarovPTPM10,https://doi.org/10.1155/2010/340541 +Ji-Hwan Hwang,Advanced Interval Type-2 Fuzzy Sliding Mode Control for Robot Manipulator.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#HwangKPK17,https://doi.org/10.1155/2017/9640849 +Haiqiang Liu,An Intelligent Grey Wolf Optimizer Algorithm for Distributed Compressed Sensing.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#LiuHYX18,https://doi.org/10.1155/2018/1723191 +Xiao Zhi Gao,Harmony Search Method: Theory and Applications.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#GaoGXWZ15,https://doi.org/10.1155/2015/258491 +Piotr Stawicki,Driving a Semiautonomous Mobile Robotic Car Controlled by an SSVEP-Based BCI.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#StawickiGV16,https://doi.org/10.1155/2016/4909685 +Tina Geweniger,Clustering by Fuzzy Neural Gas and Evaluation of Fuzzy Clusters.,2013,2013,Comp. Int. and Neurosc.,,db/journals/cin/cin2013.html#GewenigerFKLV13,https://doi.org/10.1155/2013/165248 +Giulio Rosati,On the Role of Auditory Feedback in Robot-Assisted Movement Training after Stroke: Review of the Literature.,2013,2013,Comp. Int. and Neurosc.,,db/journals/cin/cin2013.html#RosatiRAM13,https://doi.org/10.1155/2013/586138 +Qiang Lu,Using Genetic Programming with Prior Formula Knowledge to Solve Symbolic Regression Problem.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#LuRW16,https://doi.org/10.1155/2016/1021378 +Wei Mao,A New Modified Artificial Bee Colony Algorithm with Exponential Function Adaptive Steps.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#MaoLL16,https://doi.org/10.1155/2016/9820294 +Michael Bensch,Nessi: An EEG-Controlled Web Browser for Severely Paralyzed Patients.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#BenschKMHTBRB07,https://doi.org/10.1155/2007/71863 +Weifeng Li,A Framework for Spatial Interaction Analysis Based on Large-Scale Mobile Phone Data.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#LiCDYG14,https://doi.org/10.1155/2014/363502 +Justin Lines,Dorsoventral and Proximodistal Hippocampal Processing Account for the Influences of Sleep and Context on Memory (Re)consolidation: A Connectionist Model.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#LinesNF17,https://doi.org/10.1155/2017/8091780 +Dejie Xu,Theory and Simulation for Traffic Characteristics on the Highway with a Slowdown Section.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#XuMRW15,https://doi.org/10.1155/2015/757823 +Valery Solovyev,Knowledge-Driven Event Extraction in Russian: Corpus-Based Linguistic Resources.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#SolovyevI16,https://doi.org/10.1155/2016/4183760 +Ibrahim Hossain,Multiclass Informative Instance Transfer Learning Framework for Motor Imagery-Based Brain-Computer Interface.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#HossainKHN18,https://doi.org/10.1155/2018/6323414 +Qi Wang 0005,A Novel Ensemble Method for Imbalanced Data Learning: Bagging of Extrapolation-SMOTE SVM.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#WangLHFL17,https://doi.org/10.1155/2017/1827016 +Gaining Han,The Study of Intelligent Vehicle Navigation Path Based on Behavior Coordination of Particle Swarm.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#HanFW16,https://doi.org/10.1155/2016/6540807 +Andrea De Cesarei,Can the Outputs of LGN Y-Cells Support Emotion Recognition? A Computational Study.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#CesareiC15,https://doi.org/10.1155/2015/695921 +Li Jia Wang,Visual Tracking Based on an Improved Online Multiple Instance Learning Algorithm.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#WangH16,https://doi.org/10.1155/2016/3472184 +Ramana Vinjamuri,Candidates for Synergies: Linear Discriminants versus Principal Components.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#VinjamuriPPMC14,https://doi.org/10.1155/2014/373957 +Qing-Yan Yin,Ensembling Variable Selectors by Stability Selection for the Cox Model.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#YinLZ17,https://doi.org/10.1155/2017/2747431 +Jia Jin,Neural Basis of Intrinsic Motivation: Evidence from Event-Related Potentials.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#JinYM15,https://doi.org/10.1155/2015/698725 +Chaolong Zhang,Prognostics of Lithium-Ion Batteries Based on Wavelet Denoising and DE-RVM.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#ZhangHYXW15,https://doi.org/10.1155/2015/918305 +Yan Yan 0004,Learning Document Semantic Representation with Hybrid Deep Belief Network.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#YanYLYH15,https://doi.org/10.1155/2015/650527 +Jinfeng Yang,A Fast Clustering Algorithm for Data with a Few Labeled Instances.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#YangXWMS15,https://doi.org/10.1155/2015/196098 +Xi Long,Effects of Between- and Within-Subject Variability on Autonomic Cardiorespiratory Activity during Sleep and Their Limitations on Sleep Staging: A Multilevel Analysis.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#LongHLFA15,https://doi.org/10.1155/2015/583620 +Ehsan Lotfi,A Novel Single Neuron Perceptron with Universal Approximation and XOR Computation Properties.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#LotfiA14,https://doi.org/10.1155/2014/746376 +Haorui Liu,Adaptive Grouping Cloud Model Shuffled Frog Leaping Algorithm for Solving Continuous Optimization Problems.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#LiuYY16,https://doi.org/10.1155/2016/5675349 +Hohyun Cho,Herbal Extracts That Reduce Ocular Oxidative Stress May Enhance Attentive Performance in Humans.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ChoKJLYJ16,https://doi.org/10.1155/2016/4292145 +Zhijia Chen,Self-Adaptive Prediction of Cloud Resource Demands Using Ensemble Model and Subtractive-Fuzzy Clustering Based Fuzzy Neural Network.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#ChenZDF15,https://doi.org/10.1155/2015/919805 +Hongtao Ye,Convergence Analysis of Particle Swarm Optimizer and Its Improved Algorithm Based on Velocity Differential Evolution.,2013,2013,Comp. Int. and Neurosc.,,db/journals/cin/cin2013.html#YeLL13,https://doi.org/10.1155/2013/384125 +Piotr J. Durka,Information Infrastructure for Cooperative Research in Neuroscience.,2009,2009,Comp. Int. and Neurosc.,,db/journals/cin/cin2009.html#DurkaBKMKB09,https://doi.org/10.1155/2009/409624 +Chong Wu,AMOBH: Adaptive Multiobjective Black Hole Algorithm.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#WuWFZLHT17,https://doi.org/10.1155/2017/6153951 +YanBin Liu,Neural-Based Compensation of Nonlinearities in an Airplane Longitudinal Model with Dynamic-Inversion Control.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#LiuLJ17,https://doi.org/10.1155/2017/8575703 +Kun Liu,Analysis of Human Standing Balance by Largest Lyapunov Exponent.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#LiuWXT15,https://doi.org/10.1155/2015/158478 +Huiyan Jiang,Medical Image Compression Based on Vector Quantization with Variable Block Sizes in Wavelet Domain.,2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#JiangMHYZ12,https://doi.org/10.1155/2012/541890 +Jie Wang,A Novel Multiple Instance Learning Method Based on Extreme Learning Machine.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#WangCPJ15,https://doi.org/10.1155/2015/405890 +Massimo Pacella,On the Use of Self-Organizing Map for Text Clustering in Engineering Change Process Analysis: A Case Study.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#PacellaGB16,https://doi.org/10.1155/2016/5139574 +Zhengkui Weng,Research of Hubs Location Method for Weighted Brain Network Based on NoS-FA.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#WengWXYLX17,https://doi.org/10.1155/2017/6174090 +Tian Lan,Channel Selection and Feature Projection for Cognitive Load Estimation Using Ambulatory EEG.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#LanEAMP07,https://doi.org/10.1155/2007/74895 +Qiang Lan,High Performance Implementation of 3D Convolutional Neural Networks on a GPU.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#LanWWZW17,https://doi.org/10.1155/2017/8348671 +Yoonseok Shin,Application of Boosting Regression Trees to Preliminary Cost Estimation in Building Construction Projects.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#Shin15, +Stevine Obura Onyango,A Driving Behaviour Model of Electrical Wheelchair Users.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#OnyangoHDDS16,https://doi.org/10.1155/2016/7189267 +Yipeng Yu,Automatic Training of Rat Cyborgs for Navigation.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#YuWXGZZP16,https://doi.org/10.1155/2016/6459251 +Yan Chen,Decoding Pigeon Behavior Outcomes Using Functional Connections among Local Field Potentials.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#ChenLLW18,https://doi.org/10.1155/2018/3505371 +Nasser Talebi,Robust Fault Detection of Wind Energy Conversion Systems Based on Dynamic Neural Networks.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#TalebiSD14,https://doi.org/10.1155/2014/580972 +Hongchao Song,A Hybrid Semi-Supervised Anomaly Detection Model for High-Dimensional Data.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#SongJMY17,https://doi.org/10.1155/2017/8501683 +Mahmoud Barghash,An Effective and Novel Neural Network Ensemble for Shift Pattern Detection in Control Charts.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#Barghash15,https://doi.org/10.1155/2015/939248 +Christian Mayr,On the Relation between Bursts and Dynamic Synapse Properties: A Modulation-Based Ansatz.,2009,2009,Comp. Int. and Neurosc.,,db/journals/cin/cin2009.html#MayrPS09,https://doi.org/10.1155/2009/658474 +Satoru Hiwa,Automated Extraction of Human Functional Brain Network Properties Associated with Working Memory Load through a Machine Learning-Based Feature Selection Algorithm.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#HiwaOH18,https://doi.org/10.1155/2018/4835676 +Niels Trusbak Haumann,Comparing the Performance of Popular MEG/EEG Artifact Correction Methods in an Evoked-Response Study.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#HaumannPKVB16,https://doi.org/10.1155/2016/7489108 +Nannan Yu,Single-Trial Evoked Potential Estimating Based on Sparse Coding under Impulsive Noise Environment.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#YuCWL18,https://doi.org/10.1155/2018/9672871 +Amarita Ritthipakdee,Firefly Mating Algorithm for Continuous Optimization Problems.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#RitthipakdeeTPJ17,https://doi.org/10.1155/2017/8034573 +Mohammad Daneshzand,Hyperbolic Modeling of Subthalamic Nucleus Cells to Investigate the Effect of Dopamine Depletion.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#DaneshzandFB17,https://doi.org/10.1155/2017/5472752 +Chenghao Cai,Deep Neural Networks with Multistate Activation Functions.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#CaiXKS15,https://doi.org/10.1155/2015/721367 +Yun Wang 0004,Study of the Bus Dynamic Coscheduling Optimization Method under Urban Rail Transit Line Emergency.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#WangYZWC14,https://doi.org/10.1155/2014/174369 +Hongyao Deng,A Decision-Based Modified Total Variation Diffusion Method for Impulse Noise Removal.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#DengZST17,https://doi.org/10.1155/2017/2024396 +Lijun Xu,Global Exponential Stability of Almost Periodic Solution for Neutral-Type Cohen-Grossberg Shunting Inhibitory Cellular Neural Networks with Distributed Delays and Impulses.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#XuJG16,https://doi.org/10.1155/2016/6508734 +Haizhou Wu,Training Feedforward Neural Networks Using Symbiotic Organisms Search Algorithm.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#WuZLB16,https://doi.org/10.1155/2016/9063065 +Hitoshi Tsunashima,Measurement of Brain Function of Car Driver Using Functional Near-Infrared Spectroscopy (fNIRS).,2009,2009,Comp. Int. and Neurosc.,,db/journals/cin/cin2009.html#TsunashimaY09,https://doi.org/10.1155/2009/164958 +Aurel A. Lazar,Channel Identification Machines.,2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#LazarS12,https://doi.org/10.1155/2012/209590 +Yanhong Feng,An Improved Hybrid Encoding Cuckoo Search Algorithm for 0-1 Knapsack Problems.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#FengJH14,https://doi.org/10.1155/2014/970456 +Vu H. Nguyen,n-Gram-Based Text Compression.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#NguyenNDS16,https://doi.org/10.1155/2016/9483646 +Federica Vatta,Realistic and Spherical Head Modeling for EEG Forward Problem Solution: A Comparative Cortex-Based Analysis.,2010,2010,Comp. Int. and Neurosc.,,db/journals/cin/cin2010.html#VattaMEMS10,https://doi.org/10.1155/2010/972060 +Anne C. Smith,State-Space Algorithms for Estimating Spike Rate Functions.,2010,2010,Comp. Int. and Neurosc.,,db/journals/cin/cin2010.html#SmithSWYSB10,https://doi.org/10.1155/2010/426539 +Zheng Wang 0032,Shape Completion Using Deep Boltzmann Machine.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#WangW17,https://doi.org/10.1155/2017/5705693 +Chang Liu 0005,Incremental Discriminant Analysis in Tensor Space.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#LiuZYPD15,https://doi.org/10.1155/2015/587923 +Wei Gao,Improved Ant Colony Clustering Algorithm and Its Performance Study.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#Gao16,https://doi.org/10.1155/2016/4835932 +Vladimir Litvak,EEG and MEG Data Analysis in SPM8.,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#LitvakMKPHKBODFPF11,https://doi.org/10.1155/2011/852961 +Tiejun Yang,A Forecasting Model for Feed Grain Demand Based on Combined Dynamic Model.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#YangYZ16,https://doi.org/10.1155/2016/5329870 +Alan D. Degenhart,Craniux: A LabVIEW-Based Modular Software Framework for Brain-Machine Interface Research.,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#DegenhartKACTWW11,https://doi.org/10.1155/2011/363565 +Gülsüm Akdeniz,Complexity Analysis of Resting-State fMRI in Adult Patients with Attention Deficit Hyperactivity Disorder: Brain Entropy.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#Akdeniz17,https://doi.org/10.1155/2017/3091815 +Hailong Wang,Modified Backtracking Search Optimization Algorithm Inspired by Simulated Annealing for Constrained Engineering Optimization Problems.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#WangHSSX18,https://doi.org/10.1155/2018/9167414 +Xiaochun Zou,Learning to Model Task-Oriented Attention.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ZouZWY16,https://doi.org/10.1155/2016/2381451 +Lei Wang,P300 and Decision Making under Risk and Ambiguity.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#WangZHS15, +Xiao Xu,Constructing Temporally Extended Actions through Incremental Community Detection.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#XuYL18,https://doi.org/10.1155/2018/2085721 +Febo Cincotti,Vibrotactile Feedback for Brain-Computer Interface Operation.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#CincottiKAPCJMB07,https://doi.org/10.1155/2007/048937 +Chunmei Liu,Adaptive Shape Kernel-Based Mean Shift Tracker in Robot Vision System.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#LiuWG16,https://doi.org/10.1155/2016/6040232 +Roberto Muñoz-Soto,Using Black Hole Algorithm to Improve EEG-Based Emotion Recognition.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#Munoz-SotoOTVSB18,https://doi.org/10.1155/2018/3050214 +Vandana Sakhre,Fuzzy Counter Propagation Neural Network Control for a Class of Nonlinear Dynamical Systems.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#SakhreJSA15,https://doi.org/10.1155/2015/719620 +Rui-jun Guo,Estimation of Critical Gap Based on Raff's Definition.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#GuoWW14,https://doi.org/10.1155/2014/236072 +S. Narayanamoorthy,The Intelligence of Dual Simplex Method to Solve Linear Fractional Fuzzy Transportation Problem.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#Narayanamoorthy15,https://doi.org/10.1155/2015/103618 +Jinxing Lai,Application of Wireless Intelligent Control System for HPS Lamps and LEDs Combined Illumination in Road Tunnel.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#LaiQCWF14,https://doi.org/10.1155/2014/429657 +Wei Li 0006,Cognitive-Based EEG BCIs and Human Brain-Robot Interactions.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#LiJD17,https://doi.org/10.1155/2017/9471841 +Jie Wang,Mexican Hat Wavelet Kernel ELM for Multiclass Classification.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#WangSM17,https://doi.org/10.1155/2017/7479140 +Hiroki Tamura,Robot and Neuroscience Technology: Computational and Engineering Approaches in Medicine.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#TamuraGCLYS16,https://doi.org/10.1155/2016/5204510 +Helena Gómez-Adorno,Improving Feature Representation Based on a Neural Network for Author Profiling in Social Media Texts.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#Gomez-AdornoMSP16,https://doi.org/10.1155/2016/1638936 +Carlos Hugo López-Caraballo,Impact of Noise on a Dynamical System: Prediction and Uncertainties from a Swarm-Optimized Neural Network.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#Lopez-Caraballo15,https://doi.org/10.1155/2015/145874 +Jakub Stastný,High-Resolution Movement EEG Classification.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#StastnyS07,https://doi.org/10.1155/2007/54925 +Linyi Li,Fuzzy Classification of High Resolution Remote Sensing Scenes Using Visual Attention Features.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#LiXC17,https://doi.org/10.1155/2017/9858531 +Xusheng Ai,Immune Centroids Oversampling Method for Binary Classification.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#AiWSZC15,https://doi.org/10.1155/2015/109806 +Stefanos Georgiadis,A Subspace Method for Dynamical Estimation of Evoked Potentials.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#GeorgiadisRTK07,https://doi.org/10.1155/2007/61916 +Hans Laurberg,Theorems on Positive Data: On the Uniqueness of NMF.,2008,2008,Comp. Int. and Neurosc.,,db/journals/cin/cin2008.html#LaurbergCPHJ08,https://doi.org/10.1155/2008/764206 +Na Li,Objects Classification by Learning-Based Visual Saliency Model and Convolutional Neural Network.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#LiZYZ16,https://doi.org/10.1155/2016/7942501 +Xiangzhu He,Chaotic Teaching-Learning-Based Optimization with Lévy Flight for Global Numerical Optimization.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#HeHRG16,https://doi.org/10.1155/2016/8341275 +Feng Sun,Study on the Calculation Models of Bus Delay at Bays Using Queueing Theory and Markov Chain.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#SunSSW15,https://doi.org/10.1155/2015/750304 +Youngjoo Kim,Motor Imagery Classification Using Mu and Beta Rhythms of EEG with Strong Uncorrelating Transform Based Complex Common Spatial Patterns.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#KimRKTMP16,https://doi.org/10.1155/2016/1489692 +Haijing Tang,Key Technology of Real-Time Road Navigation Method Based on Intelligent Data Research.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#TangLHWHDYD16,https://doi.org/10.1155/2016/1874945 +Bin Li 0004,Histogram of Oriented Gradient Based Gist Feature for Building Recognition.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#LiCY16,https://doi.org/10.1155/2016/6749325 +Xiaodan Yan,Dissociated Emergent-Response System and Fine-Processing System in Human Neural Network and a Heuristic Neural Architecture for Autonomous Humanoid Robots.,2010,2010,Comp. Int. and Neurosc.,,db/journals/cin/cin2010.html#Yan10,https://doi.org/10.1155/2010/314932 +Yushan Zhang,An Analytical Framework for Runtime of a Class of Continuous Evolutionary Algorithms.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#ZhangH15,https://doi.org/10.1155/2015/485215 +Tingsong Du,Improved Quantum Artificial Fish Algorithm Application to Distributed Network Considering Distributed Generation.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#DuHK15,https://doi.org/10.1155/2015/851863 +Mei-Quan Xie,Forecasting the Short-Term Passenger Flow on High-Speed Railway with Neural Networks.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#XieLZF14,https://doi.org/10.1155/2014/375487 +Dieter Devlaminck,Multisubject Learning for Common Spatial Patterns in Motor-Imagery BCI.,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#DevlaminckWGOS11,https://doi.org/10.1155/2011/217987 +Yuebin Su,A Novel Strategy for Minimum Attribute Reduction Based on Rough Set Theory and Fish Swarm Algorithm.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#SuG17,https://doi.org/10.1155/2017/6573623 +Amin Mousavi,Context Transfer in Reinforcement Learning Using Action-Value Functions.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#MousaviAA14,https://doi.org/10.1155/2014/428567 +Yajun Li,New Results on Passivity Analysis of Stochastic Neural Networks with Time-Varying Delay and Leakage Delay.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#LiH15, +Leonid I. Perlovsky,Language and Cognition Interaction Neural Mechanisms.,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#Perlovsky11,https://doi.org/10.1155/2011/454587 +Mehrdad Fatourechi,Performance of a Self-Paced Brain Computer Interface on Data Contaminated with Eye-Movement Artifacts and on Data Recorded in a Subsequent Session.,2008,2008,Comp. Int. and Neurosc.,,db/journals/cin/cin2008.html#FatourechiWB08,https://doi.org/10.1155/2008/749204 +Wenshan Wang,Ubiquitous Robotic Technology for Smart Manufacturing System.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#WangZWQC16,https://doi.org/10.1155/2016/6018686 +Hubert J. Banville,Mental Task Evaluation for Hybrid NIRS-EEG Brain-Computer Interfaces.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#BanvilleGF17,https://doi.org/10.1155/2017/3524208 +Jiehao Chen,A New Approach for Mobile Advertising Click-Through Rate Estimation Based on Deep Belief Nets.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#ChenZSZ17,https://doi.org/10.1155/2017/7259762 +Victor Hugo C. de Albuquerque,EEG-Based Biometrics: Challenges And Applications.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#AlbuquerqueDTP18,https://doi.org/10.1155/2018/5483921 +Qingshan She,Multiclass Posterior Probability Twin SVM for Motor Imagery EEG Classification.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#SheMML15,https://doi.org/10.1155/2015/251945 +Keite Lira de Almeida França,Enhanced Synaptic Connectivity in the Dentate Gyrus during Epileptiform Activity: Network Simulation.,2013,2013,Comp. Int. and Neurosc.,,db/journals/cin/cin2013.html#FrancaAIDSSACR13,https://doi.org/10.1155/2013/949816 +Wei Wei 0009,Emotion Recognition Based on Weighted Fusion Strategy of Multichannel Physiological Signals.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#WeiJFC18,https://doi.org/10.1155/2018/5296523 +Zhe Chen 0001,Estimating Latent Attentional States Based on Simultaneous Binary and Continuous Behavioral Measures.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#Chen15,https://doi.org/10.1155/2015/493769 +Hyun-Chul Choi,Nonparametric Facial Feature Localization Using Segment-Based Eigenfeatures.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ChoiSK16,https://doi.org/10.1155/2016/6730249 +Ricardo Soto,A Hybrid alldifferent-Tabu Search Algorithm for Solving Sudoku Puzzles.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#SotoCGPN15,https://doi.org/10.1155/2015/286354 +Hyun-Soo Park,Active Player Modeling in the Iterated Prisoner's Dilemma.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ParkK16,https://doi.org/10.1155/2016/7420984 +Juan Antonio Martínez León,Feature Selection Applying Statistical and Neurofuzzy Methods to EEG-Based BCI.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#LeonCI15,https://doi.org/10.1155/2015/781207 +Zhuorong Li,Image Translation by Domain-Adversarial Training.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#LiWZ18,https://doi.org/10.1155/2018/8974638 +Wei Gao,Gradient Learning Algorithms for Ontology Computing.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#GaoZ14,https://doi.org/10.1155/2014/438291 +Shinichi Tamura,Simulation of Code Spectrum and Code Flow of Cultured Neuronal Networks.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#TamuraNHMS16,https://doi.org/10.1155/2016/7186092 +Xiaoping Fang,Understanding Attitudes towards Proenvironmental Travel: An Empirical Study from Tangshan City in China.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#FangXC14,https://doi.org/10.1155/2014/963683 +Wei Lee Woon,Novel Features for Brain-Computer Interfaces.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#WoonC07,https://doi.org/10.1155/2007/82827 +Tengjiao Wang,PAIRS: Prediction of Activation/Inhibition Regulation Signaling Pathway.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#WangFW17,https://doi.org/10.1155/2017/7024516 +Yanpu Yang,Consumers' Kansei Needs Clustering Method for Product Emotional Design Based on Numerical Design Structure Matrix and Genetic Algorithms.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#YangCGGY16,https://doi.org/10.1155/2016/5083213 +Jie-Sheng Wang,Feed-Forward Neural Network Soft-Sensor Modeling of Flotation Process Based on Particle Swarm Optimization and Gravitational Search Algorithm.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#WangH15,https://doi.org/10.1155/2015/147843 +Abdelkader Nasreddine Belkacem,Real-Time Control of a Video Game Using Eye Movements and Two Temporal EEG Sensors.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#BelkacemSZSKYBK15,https://doi.org/10.1155/2015/653639 +Baokai Zu,A Novel Graph Constructor for Semisupervised Discriminant Analysis: Combined Low-Rank and k-Nearest Neighbor Graph.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#ZuXPN17,https://doi.org/10.1155/2017/9290230 +Sylvain Baillet,Academic Software Applications for Electromagnetic Brain Mapping Using MEG and EEG.,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#BailletFO11,https://doi.org/10.1155/2011/972050 +Wei Wang 0033,A Modified Sparse Representation Method for Facial Expression Recognition.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#WangX16,https://doi.org/10.1155/2016/5687602 +Hui Li 0010,Tracking Algorithm of Multiple Pedestrians Based on Particle Filters in Video Sequences.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#LiLWZC16,https://doi.org/10.1155/2016/8163878 +Erik Cuevas,A Method for Estimating View Transformations from Image Correspondences Based on the Harmony Search Algorithm.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#CuevasD15,https://doi.org/10.1155/2015/434263 +Cameron Wellock,Quantitative Tools for Examining the Vocalizations of Juvenile Songbirds.,2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#WellockR12,https://doi.org/10.1155/2012/261010 +Yang Liu 0010,MapReduce Based Parallel Neural Networks in Enabling Large Scale Machine Learning.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#LiuYHXLQ15,https://doi.org/10.1155/2015/297672 +Timothé Collet,Optimism in Active Learning.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#ColletP15,https://doi.org/10.1155/2015/973696 +Filippo Cona,Changes in EEG Power Spectral Density and Cortical Connectivity in Healthy and Tetraplegic Patients during a Motor Imagery Task.,2009,2009,Comp. Int. and Neurosc.,,db/journals/cin/cin2009.html#ConaZABU09,https://doi.org/10.1155/2009/279515 +Cuicui Wang,Antiherding in Financial Decision Increases Valuation of Return on Investment: An Event-Related Potential Study.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#WangJVM17,https://doi.org/10.1155/2017/4760930 +Karen Alicia Aguilar Cruz,Equivalent Neural Network Optimal Coefficients Using Forgetting Factor with Sliding Modes.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#CruzJP16,https://doi.org/10.1155/2016/4642052 +Size Bi,Fracture Mechanics Method for Word Embedding Generation of Neural Probabilistic Linguistic Model.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#BiLH16,https://doi.org/10.1155/2016/3506261 +Noha Abdelkarim,A New Hybrid BFOA-PSO Optimization Technique for Decoupling and Robust Control of Two-Coupled Distillation Column Process.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#AbdelkarimMED16,https://doi.org/10.1155/2016/8985425 +Yuntian Feng,Joint Extraction of Entities and Relations Using Reinforcement Learning and Deep Learning.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#FengZHC17,https://doi.org/10.1155/2017/7643065 +Yan Li,Optimization of the Design of Pre-Signal System Using Improved Cellular Automaton.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#LiLTWC14,https://doi.org/10.1155/2014/926371 +Luz María Alonso-Valerdi,Enrichment of Human-Computer Interaction in Brain-Computer Interfaces via Virtual Environments.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#MariaR17,https://doi.org/10.1155/2017/6076913 +Qingwu Li,Human Action Recognition Using Improved Salient Dense Trajectories.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#LiCZH16,https://doi.org/10.1155/2016/6750459 +Jiangfan Feng,Intelligent Context-Aware and Adaptive Interface for Mobile LBS.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#FengL15,https://doi.org/10.1155/2015/489793 +Hua Guo,SGB-ELM: An Advanced Stochastic Gradient Boosting-Based Ensemble Scheme for Extreme Learning Machine.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#GuoWAH18,https://doi.org/10.1155/2018/4058403 +Xiao Sun,Localized Ambient Solidity Separation Algorithm Based Computer User Segmentation.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#SunZCL15,https://doi.org/10.1155/2015/829201 +Chi Jin,A Community Detection Approach to Cleaning Extremely Large Face Database.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#JinJCD18,https://doi.org/10.1155/2018/4512473 +Weikuan Jia,A New Optimized GA-RBF Neural Network Algorithm.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#JiaZSSHZ14,https://doi.org/10.1155/2014/982045 +Gang Hu,Deep Learning Methods for Underwater Target Feature Extraction and Recognition.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#HuWPQSL18,https://doi.org/10.1155/2018/1214301 +Aurel A. Lazar,A Motion Detection Algorithm Using Local Phase Information.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#LazarUZ16,https://doi.org/10.1155/2016/7915245 +Hiroshi Higashi,Common Spatio-Time-Frequency Patterns for Motor Imagery-Based Brain Machine Interfaces.,2013,2013,Comp. Int. and Neurosc.,,db/journals/cin/cin2013.html#HigashiT13,https://doi.org/10.1155/2013/537218 +Cyril R. Pernet,LIMO EEG: A Toolbox for Hierarchical LInear MOdeling of ElectroEncephaloGraphic Data.,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#PernetCGR11,https://doi.org/10.1155/2011/831409 +Ningyu Zhang,Social Media Meets Big Urban Data: A Case Study of Urban Waterlogging Analysis.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ZhangCCC16,https://doi.org/10.1155/2016/3264587 +Mehmet Simsir,Real-Time Monitoring and Fault Diagnosis of a Low Power Hub Motor Using Feedforward Neural Network.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#SimsirBU16,https://doi.org/10.1155/2016/7129376 +Fuming Fang,Improving Eye Motion Sequence Recognition Using Electrooculography Based on Context-Dependent HMM.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#FangSHKFM16,https://doi.org/10.1155/2016/6898031 +Ahmed Fazle Rabbi,A Fuzzy Logic System for Seizure Onset Detection in Intracranial EEG.,2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#RabbiF12,https://doi.org/10.1155/2012/705140 +Manuela Petti,EEG Resting-State Brain Topological Reorganization as a Function of Age.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#PettiTBCMA16,https://doi.org/10.1155/2016/6243694 +Madhusudana V. S. Shashanka,Probabilistic Latent Variable Models as Nonnegative Factorizations.,2008,2008,Comp. Int. and Neurosc.,,db/journals/cin/cin2008.html#ShashankaRS08,https://doi.org/10.1155/2008/947438 +Zahra Sajedinia,A New Computational Model for Astrocytes and Their Role in Biologically Realistic Neural Networks.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#SajediniaH18,https://doi.org/10.1155/2018/3689487 +Fei Dou,Fuzzy Temporal Logic Based Railway Passenger Flow Forecast Model.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#DouJWXH14,https://doi.org/10.1155/2014/950371 +Beatriz A. Garro,Designing Artificial Neural Networks Using Particle Swarm Optimization Algorithms.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#GarroV15,https://doi.org/10.1155/2015/369298 +Yu Zhang,A Comparison Study on Multidomain EEG Features for Sleep Stage Classification.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#ZhangWJZZN17,https://doi.org/10.1155/2017/4574079 +Dejan Brkic,Intelligent Flow Friction Estimation.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#BrkicC16,https://doi.org/10.1155/2016/5242596 +Daniela Sánchez,A Grey Wolf Optimizer for Modular Granular Neural Networks for Human Recognition.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#SanchezMC17,https://doi.org/10.1155/2017/4180510 +Renata De Paris,Clustering Molecular Dynamics Trajectories for Optimizing Docking Experiments.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#ParisQRSB15,https://doi.org/10.1155/2015/916240 +Youngjoo Kim,Correlation Assisted Strong Uncorrelating Transform Complex Common Spatial Patterns for Spatially Distant Channel Data.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#KimYLLP18,https://doi.org/10.1155/2018/4281230 +Simone G. O. Fiori,Neural Systems with Numerically Matched Input-Output Statistic: Isotonic Bivariate Statistical Modeling.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#Fiori07,https://doi.org/10.1155/2007/71859 +Jing Zhang 0033,Brain State Decoding Based on fMRI Using Semisupervised Sparse Representation Classifications.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#ZhangZYZL18,https://doi.org/10.1155/2018/3956536 +Zhenjie Wang,Patch Based Multiple Instance Learning Algorithm for Object Tracking.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#WangWZ17,https://doi.org/10.1155/2017/2426475 +George A. Papakostas,Emerging Trends in Machine Learning for Signal Processing.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#PapakostasDP17,https://doi.org/10.1155/2017/6521367 +Chiara Baston,A Biologically Inspired Computational Model of Basal Ganglia in Action Selection.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#BastonU15,https://doi.org/10.1155/2015/187417 +Xiangkui Jiang,Forest Pruning Based on Branch Importance.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#JiangWG17,https://doi.org/10.1155/2017/3162571 +Yuebin Su,A Simple Fitness Function for Minimum Attribute Reduction.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#SuGL15, +Vladimir M. Krasnopolsky,Neural Networks Technique for Filling Gaps in Satellite Measurements: Application to Ocean Color Observations.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#KrasnopolskyNMB16,https://doi.org/10.1155/2016/6156513 +Abdulqader M. Mohsen,Annealing Ant Colony Optimization with Mutation Operator for Solving TSP.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#Mohsen16,https://doi.org/10.1155/2016/8932896 +Sannasi Ganapathy,Intelligent Agent-Based Intrusion Detection System Using Enhanced Multiclass SVM.,2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#GanapathyPK12,https://doi.org/10.1155/2012/850259 +Jinshan Qi,A Multiple Kernel Learning Model Based on p-Norm.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#QiLX18,https://doi.org/10.1155/2018/1018789 +Yanpu Yang,A Method for Consensus Reaching in Product Kansei Evaluation Using Advanced Particle Swarm Optimization.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#Yang17,https://doi.org/10.1155/2017/9740278 +Chunhui Bao,Fractional-Order Deep Backpropagation Neural Network.,2018,2018,Comp. Int. and Neurosc.,,db/journals/cin/cin2018.html#BaoPZ18,https://doi.org/10.1155/2018/7361628 +Jianjun Ni,A Dynamic Bioinspired Neural Network Based Real-Time Path Planning Method for Autonomous Underwater Vehicles.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#NiWSY17,https://doi.org/10.1155/2017/9269742 +Mauro Ursino,A Semantic Model to Study Neural Organization of Language in Bilingualism.,2010,2010,Comp. Int. and Neurosc.,,db/journals/cin/cin2010.html#UrsinoCM10,https://doi.org/10.1155/2010/350269 +ángeles Tepper,Selection of the Optimal Algorithm for Real-Time Estimation of Beta Band Power during DBS Surgeries in Patients with Parkinson's Disease.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#TepperHSMGG17,https://doi.org/10.1155/2017/1512504 +Alkin Yurtkuran,An Enhanced Artificial Bee Colony Algorithm with Solution Acceptance Rule and Probabilistic Multisearch.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#YurtkuranE16,https://doi.org/10.1155/2016/8085953 +Rolando Grave de Peralta Menendez,Modern Electrophysiological Methods for Brain-Computer Interfaces.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#MenendezNCMAA07,https://doi.org/10.1155/2007/56986 +Chaitanya Medini,Modeling Spike-Train Processing in the Cerebellum Granular Layer and Changes in Plasticity Reveal Single Neuron Effects in Neural Ensembles.,2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#MediniNDND12,https://doi.org/10.1155/2012/359529 +Pablo Martinez,Fully Online Multicommand Brain-Computer Interface with Visual Neurofeedback Using SSVEP Paradigm.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#MartinezBC07,https://doi.org/10.1155/2007/94561 +Liyun Zhuang,Image Enhancement via Subimage Histogram Equalization Based on Mean and Variance.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#ZhuangG17,https://doi.org/10.1155/2017/6029892 +Mauro Castelli,An Artificial Intelligence System to Predict Quality of Service in Banking Organizations.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#CastelliMP16,https://doi.org/10.1155/2016/9139380 +Alev Dilek Aydin,Two Different Points of View through Artificial Intelligence and Vector Autoregressive Models for Ex Post and Ex Ante Forecasting.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#AydinC15,https://doi.org/10.1155/2015/409361 +Milan Djilas,Spike Sorting of Muscle Spindle Afferent Nerve Activity Recorded with Thin-Film Intrafascicular Electrodes.,2010,2010,Comp. Int. and Neurosc.,,db/journals/cin/cin2010.html#DjilasAGY10,https://doi.org/10.1155/2010/836346 +Qizhou Hu,A Study on Urban Road Traffic Safety Based on Matter Element Analysis.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#HuZX14,https://doi.org/10.1155/2014/458483 +Andrea Mannini,Accelerometry-Based Classification of Human Activities Using Markov Modeling.,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#ManniniS11,https://doi.org/10.1155/2011/647858 +Meng Hu,Noise-Assisted Instantaneous Coherence Analysis of Brain Connectivity.,2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#HuL12,https://doi.org/10.1155/2012/275073 +Shuqiu Tan,Extra Facial Landmark Localization via Global Shape Reconstruction.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#TanCGH17a,https://doi.org/10.1155/2017/8710492 +Xiaowei Jiang,A Study of Driver's Route Choice Behavior Based on Evolutionary Game Theory.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#JiangJDD14,https://doi.org/10.1155/2014/124716 +Huu Hiep Nguyen,Clustering Categorical Data Using Community Detection Techniques.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#Nguyen17,https://doi.org/10.1155/2017/8986360 +Zuo-wei Wang,A Self-Organizing Incremental Spatiotemporal Associative Memory Networks Model for Problems with Hidden State.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#Wang16,https://doi.org/10.1155/2016/7158507 +Kyung-Jin You,Spectral Gini Index for Quantifying the Depth of Consciousness.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#YouNS16,https://doi.org/10.1155/2016/2304356 +Xiaoqian Mao,Progress in EEG-Based Brain Robot Interaction Systems.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#MaoLLNXZC17,https://doi.org/10.1155/2017/1742862 +Mikkel N. Schmidt,Nonnegative Matrix Factorization with Gaussian Process Priors.,2008,2008,Comp. Int. and Neurosc.,,db/journals/cin/cin2008.html#SchmidtL08,https://doi.org/10.1155/2008/361705 +Sadikin Mujiono,A New Data Representation Based on Training Data Characteristics to Extract Drug Name Entity in Medical Text.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#MujionoFB16,https://doi.org/10.1155/2016/3483528 +Ali Bashashati,Towards Development of a 3-State Self-Paced Brain-Computer Interface.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#BashashatiWB07,https://doi.org/10.1155/2007/84386 +Jaroslaw Szkola,Recurrent Neural Networks in Computer-Based Clinical Decision Support for Laryngopathies: An Experimental Study.,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#SzkolaPW11,https://doi.org/10.1155/2011/289398 +Li Yao,Extract the Relational Information of Static Features and Motion Features for Human Activities Recognition in Videos.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#Yao16,https://doi.org/10.1155/2016/1760172 +Yuanxia Shen,Particle Swarm Optimization with Double Learning Patterns.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ShenWZC16,https://doi.org/10.1155/2016/6510303 +Florin Leon,Stabilization Methods for a Multiagent System with Complex Behaviours.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#Leon15,https://doi.org/10.1155/2015/236285 +Chien-Feng Huang,An Intelligent Model for Pairs Trading Using Genetic Algorithms.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#HuangHCCL15, +Irma Nayeli Angulo-Sherman,A Link between the Increase in Electroencephalographic Coherence and Performance Improvement in Operating a Brain-Computer Interface.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#Angulo-ShermanG15,https://doi.org/10.1155/2015/824175 +Xuejun Li,A Chaotic Particle Swarm Optimization-Based Heuristic for Market-Oriented Task-Level Scheduling in Cloud Workflow Systems.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#LiXY15,https://doi.org/10.1155/2015/718689 +Jian Zhang,An Improved Fuzzy c-Means Clustering Algorithm Based on Shadowed Sets and PSO.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#ZhangS14,https://doi.org/10.1155/2014/368628 +Manousos A. Klados,A Framework Combining Delta Event-Related Oscillations (EROs) and Synchronisation Effects (ERD/ERS) to Study Emotional Processing.,2009,2009,Comp. Int. and Neurosc.,,db/journals/cin/cin2009.html#KladosFVPLPB09,https://doi.org/10.1155/2009/549419 +Widodo Budiharto,Intelligent Surveillance Robot with Obstacle Avoidance Capabilities Using Neural Network.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#Budiharto15,https://doi.org/10.1155/2015/745823 +Xiaojian Hu,Traffic Signal Synchronization in the Saturated High-Density Grid Road Network.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#HuLWY15,https://doi.org/10.1155/2015/532960 +Junjia Yuan,Course Control of Underactuated Ship Based on Nonlinear Robust Neural Network Backstepping Method.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#YuanMZZ16,https://doi.org/10.1155/2016/3013280 +Seyed Mahmud Rabiee,Prediction of the Setting Properties of Calcium Phosphate Bone Cement.,2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#RabieeB12,https://doi.org/10.1155/2012/809235 +Qing Ye,Enhancement of ELM by Clustering Discrimination Manifold Regularization and Multiobjective FOA for Semisupervised Classification.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#YeHL15a,https://doi.org/10.1155/2015/731494 +Gensheng Wang,Research on Hotspot Discovery in Internet Public Opinions Based on Improved K-Means.,2013,2013,Comp. Int. and Neurosc.,,db/journals/cin/cin2013.html#Wang13,https://doi.org/10.1155/2013/230946 +Rahib Hidayat Abiyev,Optimization of High-Dimensional Functions through Hypercube Evaluation.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#AbiyevT15,https://doi.org/10.1155/2015/967320 +Lei Si,A Novel Adjustment Method for Shearer Traction Speed through Integration of T-S Cloud Inference Network and Improved PSO.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#SiWLYZ14,https://doi.org/10.1155/2014/865349 +Marc Ebner,Lateral Information Processing by Spiking Neurons: A Theoretical Model of the Neural Correlate of Consciousness.,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#EbnerH11,https://doi.org/10.1155/2011/247879 +Zhihua Zhang,Inversion for Refractivity Parameters Using a Dynamic Adaptive Cuckoo Search with Crossover Operator Algorithm.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ZhangZSF16,https://doi.org/10.1155/2016/3208724 +Yu Dang,Analysis of the Seismic Performance of Isolated Buildings according to Life-Cycle Cost.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#DangHL15,https://doi.org/10.1155/2015/495042 +Pietro Piu,A Two-Layered Diffusion Model Traces the Dynamics of Information Processing in the Valuation-and-Choice Circuit of Decision Making.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#PiuFIR14,https://doi.org/10.1155/2014/383790 +Hong-Gi Yeom,Macroscopic Neural Oscillation during Skilled Reaching Movements in Humans.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#YeomKC16,https://doi.org/10.1155/2016/2714052 +Elmar Wolfgang Lang,Brain Connectivity Analysis: A Short Survey.,2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#LangTKSP12,https://doi.org/10.1155/2012/412512 +Danhua Zhu,A Survey of Stimulation Methods Used in SSVEP-Based BCIs.,2010,2010,Comp. Int. and Neurosc.,,db/journals/cin/cin2010.html#ZhuBMA10,https://doi.org/10.1155/2010/702357 +Eftychios Protopapadakis,Stacked Autoencoders for Outlier Detection in Over-the-Horizon Radar Signals.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#ProtopapadakisV17,https://doi.org/10.1155/2017/5891417 +Dongmei Han,Explore Awareness of Information Security: Insights from Cognitive Neuromechanism.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#HanDHD15,https://doi.org/10.1155/2015/762403 +Seul-Kee Kim,An Analysis of the Effects of Smartphone Push Notifications on Task Performance with regard to Smartphone Overuse Using ERP.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#KimKK16,https://doi.org/10.1155/2016/5718580 +Li Deng,Layout Design of Human-Machine Interaction Interface of Cabin Based on Cognitive Ergonomics and GA-ACA.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#DengWY16,https://doi.org/10.1155/2016/1032139 +Peng Zhang,The Large Scale Machine Learning in an Artificial Society: Prediction of the Ebola Outbreak in Beijing.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#ZhangCMLSDQ15, +Ziho Kang,Designs and Algorithms to Map Eye Tracking Data with Dynamic Multielement Moving Objects.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#KangMCMM16,https://doi.org/10.1155/2016/9354760 +Xingwang Huang,Dynamic Inertia Weight Binary Bat Algorithm with Neighborhood Search.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#HuangZH17,https://doi.org/10.1155/2017/3235720 +Yi-xiang Yue,Improved Fractal Space Filling Curves Hybrid Optimization Algorithm for Vehicle Routing Problem.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#YueZY15, +Gert Pfurtscheller,Discrimination of Motor Imagery-Induced EEG Patterns in Patients with Complete Spinal Cord Injury.,2009,2009,Comp. Int. and Neurosc.,,db/journals/cin/cin2009.html#PfurtschellerLWKM09,https://doi.org/10.1155/2009/104180 +Arindam Kar,A Gabor-Block-Based Kernel Discriminative Common Vector Approach Using Cosine Kernels for Human Face Recognition.,2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#KarBBNK12,https://doi.org/10.1155/2012/421032 +Suraj,Classification of Two Class Motor Imagery Tasks Using Hybrid GA-PSO Based K-Means Clustering.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#TGS15,https://doi.org/10.1155/2015/945729 +Wenchang Zhang,Low-Rank Linear Dynamical Systems for Motor Imagery EEG.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ZhangSTL16,https://doi.org/10.1155/2016/2637603 +Alexei V. Samsonovich,"Augmenting Weak Semantic Cognitive Maps with an ""Abstractness"" Dimension.",2013,2013,Comp. Int. and Neurosc.,,db/journals/cin/cin2013.html#SamsonovichA13,https://doi.org/10.1155/2013/308176 +Milka Culic,Signatures of Depression in Non-Stationary Biometric Time Series.,2009,2009,Comp. Int. and Neurosc.,,db/journals/cin/cin2009.html#CulicGHJKLPPRW09,https://doi.org/10.1155/2009/989824 +Huaping Guo,Imbalanced Learning Based on Logistic Discrimination.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#GuoZLX16,https://doi.org/10.1155/2016/5423204 +Loris Nanni,Toward a General-Purpose Heterogeneous Ensemble for Pattern Classification.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#NanniBGL15,https://doi.org/10.1155/2015/909123 +Gwen A. Frishkoff,A Framework to Support Automated Classification and Labeling of Brain Electromagnetic Patterns.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#FrishkoffFRDDH07,https://doi.org/10.1155/2007/14567 +Long Cheng 0006,Modeling Mode Choice Behavior Incorporating Household and Individual Sociodemographics and Travel Attributes Based on Rough Sets Theory.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#ChengCWWH14,https://doi.org/10.1155/2014/560919 +Le Song,Classifying EEG for Brain-Computer Interface: Learning Optimal Filters for Dynamical System Features.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#SongE07,https://doi.org/10.1155/2007/57180 +Leilei Cao,A Guiding Evolutionary Algorithm with Greedy Strategy for Global Optimization Problems.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#CaoXG16,https://doi.org/10.1155/2016/2565809 +Heli Sun,Label Propagation with α-Degree Neighborhood Impact for Network Community Detection.,2014,2014,Comp. Int. and Neurosc.,,db/journals/cin/cin2014.html#SunHZLZS14,https://doi.org/10.1155/2014/130689 +Michael Krumin,Multivariate Autoregressive Modeling and Granger Causality Analysis of Multiple Spike Trains.,2010,2010,Comp. Int. and Neurosc.,,db/journals/cin/cin2010.html#KruminS10,https://doi.org/10.1155/2010/752428 +Karen Alicia Aguilar Cruz,Neural Net Gains Estimation Based on an Equivalent Model.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#CruzJMV16,https://doi.org/10.1155/2016/1690924 +Jérémie Mattout,Canonical Source Reconstruction for MEG.,2007,2007,Comp. Int. and Neurosc.,,db/journals/cin/cin2007.html#MattoutHF07,https://doi.org/10.1155/2007/67613 +Eleni G. Christodoulou,BrainNetVis: An Open-Access Tool to Effectively Quantify and Visualize Brain Networks.,2011,2011,Comp. Int. and Neurosc.,,db/journals/cin/cin2011.html#ChristodoulouSTT11,https://doi.org/10.1155/2011/747290 +Ting Li 0005,Development of a Novel Motor Imagery Control Technique and Application in a Gaming Environment.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#LiZXW17,https://doi.org/10.1155/2017/5863512 +Diego Droghini,A Combined One-Class SVM and Template-Matching Approach for User-Aided Human Fall Detection by Means of Floor Acoustic Features.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#DroghiniFPSP17,https://doi.org/10.1155/2017/1512670 +Ignas Martisius,A Prototype SSVEP Based Real Time BCI Gaming System.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#MartisiusD16,https://doi.org/10.1155/2016/3861425 +Zhiwei Ye,An Adaptive Image Enhancement Technique by Combining Cuckoo Search and Particle Swarm Optimization Algorithm.,2015,2015,Comp. Int. and Neurosc.,,db/journals/cin/cin2015.html#YeWHL15,https://doi.org/10.1155/2015/825398 +Tao Sun,A Swarm Optimization Genetic Algorithm Based on Quantum-Behaved Particle Swarm Optimization.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#SunX17,https://doi.org/10.1155/2017/2782679 +Wen Zhang 0001,Using SVD on Clusters to Improve Precision of Interdocument Similarity Measure.,2016,2016,Comp. Int. and Neurosc.,,db/journals/cin/cin2016.html#ZhangXLZ16,https://doi.org/10.1155/2016/1096271 +Chen-Lun Lin,Hybrid Particle Swarm Optimization and Its Application to Multimodal 3D Medical Image Registration.,2012,2012,Comp. Int. and Neurosc.,,db/journals/cin/cin2012.html#LinMC12,https://doi.org/10.1155/2012/561406 +Derry Fitzgerald,Extended Nonnegative Tensor Factorisation Models for Musical Sound Source Separation.,2008,2008,Comp. Int. and Neurosc.,,db/journals/cin/cin2008.html#FitzgeraldCC08,https://doi.org/10.1155/2008/872425 +Eduardo Carabez,Convolutional Neural Networks with 3D Input for P300 Identification in Auditory Brain-Computer Interfaces.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#CarabezSNW17,https://doi.org/10.1155/2017/8163949 +Daniel Soukup,Robust Object Recognition under Partial Occlusions Using NMF.,2008,2008,Comp. Int. and Neurosc.,,db/journals/cin/cin2008.html#SoukupB08,https://doi.org/10.1155/2008/857453 +Patricia Batres-Mendoza,Improving EEG-Based Motor Imagery Classification for Real-Time Applications Using the QSA Method.,2017,2017,Comp. Int. and Neurosc.,,db/journals/cin/cin2017.html#Batres-MendozaI17,https://doi.org/10.1155/2017/9817305 +Heeseok Lee,"Guest editor's introduction to the special issue ""Knowledge Management Technique"".",2004,36,Decision Support Systems,4,db/journals/dss/dss36.html#LeeLK04,https://doi.org/10.1016/S0167-9236(03)00024-1 +Joni L. Jones,Price discovery in combinatorial auctions using Gibbs Sampling.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#JonesA06,https://doi.org/10.1016/j.dss.2004.10.011 +Indranil Bose,Multi-period design of survivable wireless access networks under capacity constraints.,2005,38,Decision Support Systems,4,db/journals/dss/dss38.html#BoseEH05,https://doi.org/10.1016/j.dss.2003.09.004 +Jie Han,Does director interlock impact corporate R and D investment?,2015,71,Decision Support Systems,,db/journals/dss/dss71.html#HanBHQT15,https://doi.org/10.1016/j.dss.2015.01.001 +Susan Standing,A review of research on e-marketplaces 1997-2008.,2010,49,Decision Support Systems,1,db/journals/dss/dss49.html#StandingSL10,https://doi.org/10.1016/j.dss.2009.12.008 +Gary F. Templeton,Leader personal influences on membership decisions in moderated online social networking groups.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#TempletonLGC12,https://doi.org/10.1016/j.dss.2012.08.011 +Henk G. Sol,Conflicting experiences with DSS.,1987,3,Decision Support Systems,3,db/journals/dss/dss3.html#Sol87a,https://doi.org/10.1016/0167-9236(87)90175-8 +Gerald F. Smith,Towards a theory of managerial problem solving.,1992,8,Decision Support Systems,1,db/journals/dss/dss8.html#Smith92,https://doi.org/10.1016/0167-9236(92)90035-N +Yuliang Yao,Pricing for shipping services of online retailers: Analytical and empirical approaches.,2012,53,Decision Support Systems,2,db/journals/dss/dss53.html#YaoZ12,https://doi.org/10.1016/j.dss.2012.01.014 +Zhunga Liu,Combination of sources of evidence with different discounting factors based on a new dissimilarity measure.,2011,52,Decision Support Systems,1,db/journals/dss/dss52.html#LiuDPM11,https://doi.org/10.1016/j.dss.2011.06.002 +David Geiger,Personalized task recommendation in crowdsourcing information systems - Current state of the art.,2014,65,Decision Support Systems,,db/journals/dss/dss65.html#GeigerS14,https://doi.org/10.1016/j.dss.2014.05.007 +Nancy K. Lankton,Internet-based knowledge acquisition: Task complexity and performance.,2012,53,Decision Support Systems,1,db/journals/dss/dss53.html#LanktonSW12,https://doi.org/10.1016/j.dss.2011.12.004 +Vijay Karan,Information technology support for collaborative decision making in auditing: An experimental investigation.,1996,16,Decision Support Systems,3,db/journals/dss/dss16.html#KaranKMV96,https://doi.org/10.1016/0167-9236(95)00007-0 +Jean-Charles Huet,A new reengineering methodology for the product-driven system applied to the medication-use process.,2013,55,Decision Support Systems,2,db/journals/dss/dss55.html#HuetPKG13,https://doi.org/10.1016/j.dss.2012.10.018 +Samuel Shu Kin Kwan,Risk of using pirated software and its impact on software protection strategies.,2008,45,Decision Support Systems,3,db/journals/dss/dss45.html#KwanJT08,https://doi.org/10.1016/j.dss.2007.06.014 +Sukanto Bhattacharya,An ANN-based auditor decision support system using Benford's law.,2011,50,Decision Support Systems,3,db/journals/dss/dss50.html#BhattacharyaXK11,https://doi.org/10.1016/j.dss.2010.08.011 +Yan Huang 0019,A kernel entropy manifold learning approach for financial data analysis.,2014,64,Decision Support Systems,,db/journals/dss/dss64.html#HuangK14,https://doi.org/10.1016/j.dss.2014.04.004 +Ashutosh Deshmukh,Performance analysis of filtering software using Signal Detection Theory.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#DeshmukhR06,https://doi.org/10.1016/j.dss.2005.08.002 +Stefan Seuring,A review of modeling approaches for sustainable supply chain management.,2013,54,Decision Support Systems,4,db/journals/dss/dss54.html#Seuring13,https://doi.org/10.1016/j.dss.2012.05.053 +Jerry Fjermestad,An analysis of communication mode in group support systems research.,2004,37,Decision Support Systems,2,db/journals/dss/dss37.html#Fjermestad04,https://doi.org/10.1016/S0167-9236(03)00021-6 +Alessandro Avenali,Brokering infrastructure for minimum cost data procurement based on quality-quantity models.,2008,45,Decision Support Systems,1,db/journals/dss/dss45.html#AvenaliBBM08,https://doi.org/10.1016/j.dss.2007.10.012 +Josef Bauer,Recommender systems based on quantitative implicit customer feedback.,2014,68,Decision Support Systems,,db/journals/dss/dss68.html#BauerN14,https://doi.org/10.1016/j.dss.2014.09.005 +Swanand Deodhar,Geography of online network ties: A predictive modelling approach.,2017,99,Decision Support Systems,,db/journals/dss/dss99.html#DeodharSZ17,https://doi.org/10.1016/j.dss.2017.05.010 +Thomas Abraham,Supporting decision support: Where information on DSS is located.,1995,14,Decision Support Systems,4,db/journals/dss/dss14.html#AbrahamW95,https://doi.org/10.1016/0167-9236(94)00025-N +Julia Sancho,Design and implementation of a decision support system for competitive electricity markets.,2008,44,Decision Support Systems,4,db/journals/dss/dss44.html#SanchoSCA08,https://doi.org/10.1016/j.dss.2007.09.008 +Wei-Ming Wang,An integrated decision making model for district revitalization and regeneration project selection.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#WangLPW13,https://doi.org/10.1016/j.dss.2012.10.035 +Feng-Yang Kuo,Managerial intuition and the development of executive support systems.,1998,24,Decision Support Systems,2,db/journals/dss/dss24.html#Kuo98,https://doi.org/10.1016/S0167-9236(98)00056-6 +Makoto Yokoo,Robust double auction protocol against false-name bids.,2005,39,Decision Support Systems,2,db/journals/dss/dss39.html#YokooSM05,https://doi.org/10.1016/j.dss.2003.10.009 +Seokcheon Lee,The role of centrality in ambulance dispatching.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#Lee12,https://doi.org/10.1016/j.dss.2012.05.036 +Wendy Hui,Sell by bundle or unit?: Pure bundling versus mixed bundling of information goods.,2012,53,Decision Support Systems,3,db/journals/dss/dss53.html#HuiYCT12,https://doi.org/10.1016/j.dss.2012.02.008 +Simo Makkonen,Analysis of power pools in the deregulated energy market through simulation.,2001,30,Decision Support Systems,3,db/journals/dss/dss30.html#MakkonenL01,https://doi.org/10.1016/S0167-9236(00)00106-8 +Yan Li 0018,A snail shell process model for knowledge discovery via data analytics.,2016,91,Decision Support Systems,,db/journals/dss/dss91.html#LiTO16,https://doi.org/10.1016/j.dss.2016.07.003 +Motaz Khorshid,Towards a computer-aided economic planning support system.,1995,13,Decision Support Systems,2,db/journals/dss/dss13.html#Khorshid95,https://doi.org/10.1016/0167-9236(93)E0038-F +Alan S. Abrahams,A decision support system for patient scheduling in travel vaccine administration.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#AbrahamsR12,https://doi.org/10.1016/j.dss.2012.05.007 +Chen-Lu Meng,The Iterated Prisoner's Dilemma: early experiences with Learning Classifier System-based simple agents.,2001,31,Decision Support Systems,4,db/journals/dss/dss31.html#MengP01,https://doi.org/10.1016/S0167-9236(00)00137-8 +Omar F. El-Gayar,A semantic service-oriented architecture for distributed model management systems.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#El-GayarD13,https://doi.org/10.1016/j.dss.2012.05.046 +Jerome Yen,Multi-agent approach to the planning of power transmission expansion.,2000,28,Decision Support Systems,3,db/journals/dss/dss28.html#YenYCMW00,https://doi.org/10.1016/S0167-9236(99)00092-5 +Atish P. Sinha,Incorporating domain knowledge into data mining classifiers: An application in indirect lending.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#SinhaZ08,https://doi.org/10.1016/j.dss.2008.06.013 +Shui-Lung Chuang,Enriching Web taxonomies through subject categorization of query terms from search engine logs.,2003,35,Decision Support Systems,1,db/journals/dss/dss35.html#ChuangC03,https://doi.org/10.1016/S0167-9236(02)00099-4 +Chang-Sup Park,Finding an efficient rewriting of OLAP queries using materialized views in data warehouses.,2002,32,Decision Support Systems,4,db/journals/dss/dss32.html#ParkKL02,https://doi.org/10.1016/S0167-9236(01)00123-3 +Wooju Kim,Agent and e-business models.,2003,34,Decision Support Systems,2,db/journals/dss/dss34.html#KimL03,https://doi.org/10.1016/S0167-9236(02)00075-1 +Dongyuan Lu,A graph-based action network framework to identify prestigious members through member's prestige evolution.,2012,53,Decision Support Systems,1,db/journals/dss/dss53.html#LuLL12,https://doi.org/10.1016/j.dss.2011.12.003 +Jinie Pak,Social structural behavior of deception in computer-mediated communication.,2014,63,Decision Support Systems,,db/journals/dss/dss63.html#PakZ14,https://doi.org/10.1016/j.dss.2013.08.010 +Rahul C. Basole,Visual analysis of supply network risks: Insights from the electronics industry.,2014,67,Decision Support Systems,,db/journals/dss/dss67.html#BasoleB14,https://doi.org/10.1016/j.dss.2014.08.008 +Kevin Meijer,A semantic approach for extracting domain taxonomies from text.,2014,62,Decision Support Systems,,db/journals/dss/dss62.html#MeijerFH14,https://doi.org/10.1016/j.dss.2014.03.006 +Christy M. K. Cheung,A theoretical model of intentional social action in online social networks.,2010,49,Decision Support Systems,1,db/journals/dss/dss49.html#CheungL10,https://doi.org/10.1016/j.dss.2009.12.006 +Qing Cao,Neural network earnings per share forecasting models: A comparison of backward propagation and the genetic algorithm.,2009,47,Decision Support Systems,1,db/journals/dss/dss47.html#CaoP09,https://doi.org/10.1016/j.dss.2008.12.011 +Sumit Sarkar,A probabilistic reasoning model: Formulation and control strategy.,1996,17,Decision Support Systems,4,db/journals/dss/dss17.html#SarkarG96,https://doi.org/10.1016/0167-9236(96)00010-3 +Pier Luigi Conti,Detection of anomalous bids in procurement auctions.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#ContiN08,https://doi.org/10.1016/j.dss.2008.08.002 +Pei-Chen Sun,Critical functionalities of a successful e-learning system - An analysis from instructors' cognitive structure toward system usage.,2009,48,Decision Support Systems,1,db/journals/dss/dss48.html#SunCF09,https://doi.org/10.1016/j.dss.2009.08.007 +Sanjay K. Singh,EIS support for the strategic management process.,2002,33,Decision Support Systems,1,db/journals/dss/dss33.html#SinghWW02,https://doi.org/10.1016/S0167-9236(01)00129-4 +Rick L. Wilson,A neural network approach to decision alternative prioritization.,1994,11,Decision Support Systems,5,db/journals/dss/dss11.html#Wilson94,https://doi.org/10.1016/0167-9236(94)90017-5 +Hans-Herbert Wagschal,New perspectives in decision support for port planning.,1985,1,Decision Support Systems,4,db/journals/dss/dss1.html#Wagschal85,https://doi.org/10.1016/0167-9236(85)90168-X +Parviz Ghandforoush,A decision support system for electric utilities: compliance with Clean Air Act.,1999,26,Decision Support Systems,4,db/journals/dss/dss26.html#GhandforoushSW99,https://doi.org/10.1016/S0167-9236(99)00056-1 +Josep Freixas,The Shapley-Shubik power index for games with several levels of approval in the input and output.,2005,39,Decision Support Systems,2,db/journals/dss/dss39.html#Freixas05,https://doi.org/10.1016/j.dss.2003.10.006 +Olivier Glassey,A case study on process modelling - Three questions and three techniques.,2008,44,Decision Support Systems,4,db/journals/dss/dss44.html#Glassey08,https://doi.org/10.1016/j.dss.2007.10.004 +Atsushi Iwasaki,A robust open ascending-price multi-unit auction protocol against false-name bids.,2005,39,Decision Support Systems,1,db/journals/dss/dss39.html#IwasakiYT05,https://doi.org/10.1016/j.dss.2004.08.005 +Yosimar O. Serrano-Silva,Automatic feature weighting for improving financial Decision Support Systems.,2018,107,Decision Support Systems,,db/journals/dss/dss107.html#Serrano-SilvaVY18,https://doi.org/10.1016/j.dss.2018.01.005 +Seng-cho Timothy Chou,Migrating to the Web: a Web financial information system server.,1998,23,Decision Support Systems,1,db/journals/dss/dss23.html#Chou98,https://doi.org/10.1016/S0167-9236(98)00034-7 +Peter C. Verhoef,Predicting customer potential value an application in the insurance industry.,2001,32,Decision Support Systems,2,db/journals/dss/dss32.html#VerhoefD01,https://doi.org/10.1016/S0167-9236(01)00110-5 +Min-Seok Pang,IT governance and business value in the public sector organizations - The role of elected representatives in IT governance and its impact on IT value in U.S. state governments.,2014,59,Decision Support Systems,,db/journals/dss/dss59.html#Pang14,https://doi.org/10.1016/j.dss.2013.12.006 +Shuang Cang,Mutual information based input feature selection for classification problems.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#CangY12,https://doi.org/10.1016/j.dss.2012.08.014 +Benoit A. Aubert,IT as enabler of sustainable farming: An empirical analysis of farmers' adoption decision of precision agriculture technology.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#AubertSG12,https://doi.org/10.1016/j.dss.2012.07.002 +Siddhartha Bhattacharyya,Data mining for credit card fraud: A comparative study.,2011,50,Decision Support Systems,3,db/journals/dss/dss50.html#BhattacharyyaJTW11,https://doi.org/10.1016/j.dss.2010.08.008 +Nenad Jukic,Comprehensive data warehouse exploration with qualified association-rule mining.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#JukicN06,https://doi.org/10.1016/j.dss.2005.07.009 +Robert G. Jeroslow,Computation-oriented reductions of predicate to propositional logic.,1988,4,Decision Support Systems,2,db/journals/dss/dss4.html#Jeroslow88b,https://doi.org/10.1016/0167-9236(88)90128-5 +Monica Lam,Neural network techniques for financial performance prediction: integrating fundamental and technical analysis.,2004,37,Decision Support Systems,4,db/journals/dss/dss37.html#Lam04,https://doi.org/10.1016/S0167-9236(03)00088-5 +Atanu Lahiri,Revisiting the incentive to tolerate illegal distribution of software products.,2012,53,Decision Support Systems,2,db/journals/dss/dss53.html#Lahiri12,https://doi.org/10.1016/j.dss.2012.01.007 +Fu-ren Lin,The enhancement of solving the distributed constraint satisfaction problem for cooperative supply chains using multi-agent systems.,2008,45,Decision Support Systems,4,db/journals/dss/dss45.html#LinKL08,https://doi.org/10.1016/j.dss.2008.02.001 +Qing Cao,Forecasting medical cost inflation rates: A model comparison approach.,2012,53,Decision Support Systems,1,db/journals/dss/dss53.html#CaoET12,https://doi.org/10.1016/j.dss.2011.12.012 +Yung-Ming Li,A diffusion mechanism for social advertising over microblogs.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#LiS12,https://doi.org/10.1016/j.dss.2012.02.012 +Solomon R. Antony,The use of a knowledge-based system in conceptual data modeling.,2005,41,Decision Support Systems,1,db/journals/dss/dss41.html#AntonyBS05,https://doi.org/10.1016/j.dss.2004.05.011 +Xin Tan,Using service responsibility tables to supplement UML in analyzing e-service systems.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#TanAS11,https://doi.org/10.1016/j.dss.2011.01.001 +Les R. Foulds,SlotManager: a microcomputer-based decision support system for university timetabling.,2000,27,Decision Support Systems,4,db/journals/dss/dss27.html#FouldsJ00,https://doi.org/10.1016/S0167-9236(99)00082-2 +Yon Dohn Chung,A wireless data clustering method for multipoint queries.,2001,30,Decision Support Systems,4,db/journals/dss/dss30.html#ChungK01,https://doi.org/10.1016/S0167-9236(00)00145-7 +Sherry X. Sun,Formal workflow design analytics using data flow modeling.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#SunZ13,https://doi.org/10.1016/j.dss.2013.01.028 +Reimund Belz,Combining knowledge-based systems and simulation to solve rescheduling problems.,1996,17,Decision Support Systems,2,db/journals/dss/dss17.html#BelzM96,https://doi.org/10.1016/0167-9236(95)00029-1 +João Carlos Lourenço,PROBE - A multicriteria decision support system for portfolio robustness evaluation.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#LourencoMC12,https://doi.org/10.1016/j.dss.2012.08.001 +Moe Thandar Wynn,ProcessProfiler3D: A visualisation framework for log-based process performance comparison.,2017,100,Decision Support Systems,,db/journals/dss/dss100.html#WynnPXHBPA17,https://doi.org/10.1016/j.dss.2017.04.004 +Chao-Min Chiu,"Introduction to the Special Issue on ""Crowdsourcing and Social Networks Analysis"".",2014,65,Decision Support Systems,,db/journals/dss/dss65.html#ChiuLT14,https://doi.org/10.1016/j.dss.2014.05.001 +Kem Z. K. Zhang,Examining the influence of online reviews on consumers' decision-making: A heuristic-systematic model.,2014,67,Decision Support Systems,,db/journals/dss/dss67.html#ZhangZCL14,https://doi.org/10.1016/j.dss.2014.08.005 +Yang Xiang,Visualizing criminal relationships: comparison of a hyperbolic tree and a hierarchical list.,2005,41,Decision Support Systems,1,db/journals/dss/dss41.html#XiangCAC05,https://doi.org/10.1016/j.dss.2004.02.006 +Yifei Xue,Spatial analysis with preference specification of latent decision makers for criminal event prediction.,2006,41,Decision Support Systems,3,db/journals/dss/dss41.html#XueB06,https://doi.org/10.1016/j.dss.2004.06.007 +David C. Novak,Managing bandwidth allocations between competing recreational and non-recreational traffic on campus networks.,2008,45,Decision Support Systems,2,db/journals/dss/dss45.html#Novak08,https://doi.org/10.1016/j.dss.2008.01.005 +Frederic H. Murphy,An intelligent system for formulating linear programs.,1986,2,Decision Support Systems,1,db/journals/dss/dss2.html#MurphyS86,https://doi.org/10.1016/0167-9236(86)90119-3 +Denise Lindstrom Bandeira,A DSS for integrated distribution of empty and full containers.,2009,47,Decision Support Systems,4,db/journals/dss/dss47.html#BandeiraBB09,https://doi.org/10.1016/j.dss.2009.04.003 +Matthias Jarke,OR in decision support and expert systems.,1989,5,Decision Support Systems,4,db/journals/dss/dss5.html#Jarke89,https://doi.org/10.1016/0167-9236(89)90012-2 +Arunabha Mukhopadhyay,Cyber-risk decision models: To insure IT or not?,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#MukhopadhyayCSMS13,https://doi.org/10.1016/j.dss.2013.04.004 +Kristine de Valck,Virtual communities: A marketing perspective.,2009,47,Decision Support Systems,3,db/journals/dss/dss47.html#ValckBW09,https://doi.org/10.1016/j.dss.2009.02.008 +Peng Liu 0005,Avoiding loss of fairness owing to failures in fair data exchange systems.,2001,31,Decision Support Systems,3,db/journals/dss/dss31.html#LiuNJ01,https://doi.org/10.1016/S0167-9236(00)00141-X +Hsin-Jung Cheng,Process mining on noisy logs - Can log sanitization help to improve performance?,2015,79,Decision Support Systems,,db/journals/dss/dss79.html#ChengK15,https://doi.org/10.1016/j.dss.2015.08.003 +Dau-Cheng Lyu,Cross-lingual audio-to-text alignment for multimedia content management.,2008,45,Decision Support Systems,3,db/journals/dss/dss45.html#LyuLCH08,https://doi.org/10.1016/j.dss.2007.07.003 +Yong Sik Chang,Case-based modification for optimization agents: AGENT-OPT.,2004,36,Decision Support Systems,4,db/journals/dss/dss36.html#ChangL04,https://doi.org/10.1016/S0167-9236(03)00026-5 +Matthijs Meire,The added value of social media data in B2B customer acquisition systems: A real-life experiment.,2017,104,Decision Support Systems,,db/journals/dss/dss104.html#MeireBP17,https://doi.org/10.1016/j.dss.2017.09.010 +Aixin Sun,On strategies for imbalanced text classification using SVM: A comparative study.,2009,48,Decision Support Systems,1,db/journals/dss/dss48.html#SunLL09,https://doi.org/10.1016/j.dss.2009.07.011 +M. Bartusch,Design aspects of an advanced model-oriented DSS for scheduling problems in civil engineering.,1989,5,Decision Support Systems,4,db/journals/dss/dss5.html#BartuschMR89,https://doi.org/10.1016/0167-9236(89)90013-4 +Holger Schrödl,Risk management in hybrid value creation.,2014,58,Decision Support Systems,,db/journals/dss/dss58.html#SchrodlT14,https://doi.org/10.1016/j.dss.2012.12.042 +Steven Walczak,Improving prognosis and reducing decision regret for pancreatic cancer treatment using artificial neural networks.,2018,106,Decision Support Systems,,db/journals/dss/dss106.html#WalczakV18,https://doi.org/10.1016/j.dss.2017.12.007 +Yanhong Sun,Mitigating bankruptcy propagation through contractual incentive schemes.,2012,53,Decision Support Systems,3,db/journals/dss/dss53.html#SunXH12,https://doi.org/10.1016/j.dss.2012.02.003 +Ashish Gupta 0004,Improving the science of healthcare delivery and informatics using modeling approaches.,2013,55,Decision Support Systems,2,db/journals/dss/dss55.html#0004S13,https://doi.org/10.1016/j.dss.2012.10.001 +Ali Dag,A probabilistic data-driven framework for scoring the preoperative recipient-donor heart transplant survival.,2016,86,Decision Support Systems,,db/journals/dss/dss86.html#DagTOBM16,https://doi.org/10.1016/j.dss.2016.02.007 +Michael Wessel,The emergence and effects of fake social information: Evidence from crowdfunding.,2016,90,Decision Support Systems,,db/journals/dss/dss90.html#WesselTB16,https://doi.org/10.1016/j.dss.2016.06.021 +Annapurna Valluri,Agent learning in supplier selection models.,2005,39,Decision Support Systems,2,db/journals/dss/dss39.html#ValluriC05,https://doi.org/10.1016/j.dss.2003.10.008 +Dmitry Mouromtsev,Semantic and structural delineation of market scenarios by the event bush method.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#MouromtsevPY14,https://doi.org/10.1016/j.dss.2013.07.008 +Terry R. Rakes,A decision support system for post-disaster interim housing.,2014,66,Decision Support Systems,,db/journals/dss/dss66.html#RakesDRF14,https://doi.org/10.1016/j.dss.2014.06.012 +R. J. Kuo,Application of a hybrid of genetic algorithm and particle swarm optimization algorithm for order clustering.,2010,49,Decision Support Systems,4,db/journals/dss/dss49.html#KuoL10,https://doi.org/10.1016/j.dss.2010.05.006 +Zhengrui Jiang,How to give away software with successive versions.,2010,49,Decision Support Systems,4,db/journals/dss/dss49.html#Jiang10,https://doi.org/10.1016/j.dss.2010.05.004 +Yulei Zhang,Automatic online news monitoring and classification for syndromic surveillance.,2009,47,Decision Support Systems,4,db/journals/dss/dss47.html#ZhangDCTL09,https://doi.org/10.1016/j.dss.2009.04.016 +Suprasith Jarupathirun,Dialectic decision support systems: System design and empirical evaluation.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#JarupathirunZ07a,https://doi.org/10.1016/j.dss.2006.03.002 +Sudip Bhattacharjee,Economic sustainability of closed loop supply chains: A holistic model for decision and policy analysis.,2015,77,Decision Support Systems,,db/journals/dss/dss77.html#BhattacharjeeC15,https://doi.org/10.1016/j.dss.2015.05.011 +Hyun Jung Lee,An effective customization procedure with configurable standard models.,2005,41,Decision Support Systems,1,db/journals/dss/dss41.html#LeeL05,https://doi.org/10.1016/j.dss.2004.06.010 +JinKyu Lee,Group value and intention to use - A study of multi-agency disaster management information systems for public safety.,2011,50,Decision Support Systems,2,db/journals/dss/dss50.html#LeeBYJR11,https://doi.org/10.1016/j.dss.2010.10.002 +Meditya Wasesa,The seaport service rate prediction system: Using drayage truck trajectory data to predict seaport service rates.,2017,95,Decision Support Systems,,db/journals/dss/dss95.html#WasesaSH17,https://doi.org/10.1016/j.dss.2016.11.008 +Nancy M. Arratia Martínez,Static R and D project portfolio selection in public organizations.,2016,84,Decision Support Systems,,db/journals/dss/dss84.html#MartinezISR16,https://doi.org/10.1016/j.dss.2016.01.006 +B. Recio,A decision support system for farm planning using AgriSupport II.,2003,36,Decision Support Systems,2,db/journals/dss/dss36.html#RecioRC03,https://doi.org/10.1016/S0167-9236(02)00134-3 +Randolph B. Cooper,So close yet no agreement: The effects of threats to self-esteem when using instant messaging and audio during seller-buyer negotiations.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#CooperJ14,https://doi.org/10.1016/j.dss.2013.08.005 +S. Kamal Chaharsooghi,A reinforcement learning model for supply chain ordering management: An application to the beer game.,2008,45,Decision Support Systems,4,db/journals/dss/dss45.html#ChaharsooghiHZ08,https://doi.org/10.1016/j.dss.2008.03.007 +Donggill Jung,Connectionist approaches to inexact reasoning and learning systems for executive and decision support : Conceptual design.,1993,10,Decision Support Systems,1,db/journals/dss/dss10.html#JungB93,https://doi.org/10.1016/0167-9236(93)90004-M +Dylan F. Jones,Intelligent solution and analysis of goal programmes: the GPSYS system.,1998,23,Decision Support Systems,4,db/journals/dss/dss23.html#JonesTM98,https://doi.org/10.1016/S0167-9236(98)00052-9 +Eldon Y. Li,Collaborative work and knowledge management in electronic business.,2005,39,Decision Support Systems,4,db/journals/dss/dss39.html#LiL05,https://doi.org/10.1016/j.dss.2004.03.001 +Chien-Ming Chen,Undesirable factors in integer-valued DEA: Evaluating the operational efficiencies of city bus systems considering safety records.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#ChenDHZ12,https://doi.org/10.1016/j.dss.2012.05.040 +Anteneh Ayanso,A practical approach for efficiently answering top-k relational queries.,2007,44,Decision Support Systems,1,db/journals/dss/dss44.html#AyansoGM07,https://doi.org/10.1016/j.dss.2007.04.005 +Young U. Ryu,Constraint logic programming framework for integrated decision supports.,1998,22,Decision Support Systems,2,db/journals/dss/dss22.html#Ryu98,https://doi.org/10.1016/S0167-9236(97)00053-5 +Shimon Schocken,Neural networks for decision support: : Problems and opportunities.,1994,11,Decision Support Systems,5,db/journals/dss/dss11.html#SchockenA94,https://doi.org/10.1016/0167-9236(94)90015-9 +Yung-Ming Li,A social route recommender mechanism for store shopping support.,2017,94,Decision Support Systems,,db/journals/dss/dss94.html#LiLH17,https://doi.org/10.1016/j.dss.2016.11.004 +James R. Marsden,Decision-making under time pressure with different information sources and performance-based financial incentives - Part 2.,2002,34,Decision Support Systems,1,db/journals/dss/dss34.html#MarsdenPW02a,https://doi.org/10.1016/S0167-9236(01)00136-1 +Hasan Pirkul,Configuring distributed computer systems with online database backups.,1987,3,Decision Support Systems,1,db/journals/dss/dss3.html#Pirkul87,https://doi.org/10.1016/0167-9236(87)90034-0 +Parviz Ghandforoush,A DSS to manage platelet production supply chain for regional blood centers.,2010,50,Decision Support Systems,1,db/journals/dss/dss50.html#GhandforoushS10,https://doi.org/10.1016/j.dss.2010.06.005 +Ritu Agarwal,Knowledge-based model validation support for end-user computing environments.,1995,15,Decision Support Systems,1,db/journals/dss/dss15.html#AgarwalTZ95,https://doi.org/10.1016/0167-9236(94)00039-U +Xin Li 0004,Recommendation as link prediction in bipartite graphs: A graph kernel-based machine learning approach.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#LiC13,https://doi.org/10.1016/j.dss.2012.09.019 +Ellen Konstantinova Stancheva,What can we do with distributed discrete event simulation in design analysis of distributed database systems.,1991,7,Decision Support Systems,2,db/journals/dss/dss7.html#Stancheva91,https://doi.org/10.1016/0167-9236(91)90050-L +Sahar Karimi,Online review helpfulness: Impact of reviewer profile image.,2017,96,Decision Support Systems,,db/journals/dss/dss96.html#KarimiW17,https://doi.org/10.1016/j.dss.2017.02.001 +Hui Wang 0001,Data Mining for Financial Decision Making.,2002,32,Decision Support Systems,4,db/journals/dss/dss32.html#WangW02, +Sean B. Eom,The intellectual structure of decision support systems (1971-1989).,1993,10,Decision Support Systems,1,db/journals/dss/dss10.html#EomLK93,https://doi.org/10.1016/0167-9236(93)90003-L +Mukun Cao,Automated negotiation for e-commerce decision making: A goal deliberated agent architecture for multi-strategy selection.,2015,73,Decision Support Systems,,db/journals/dss/dss73.html#CaoLLD15,https://doi.org/10.1016/j.dss.2015.02.012 +Peter G. W. Keen,Decision support systems: The next decade.,1987,3,Decision Support Systems,3,db/journals/dss/dss3.html#Keen87,https://doi.org/10.1016/0167-9236(87)90180-1 +João Manuel Coutinho-Rodrigues,A GIS-based multicriteria spatial decision support system for planning urban infrastructures.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#Coutinho-RodriguesSA11,https://doi.org/10.1016/j.dss.2011.02.010 +Sofie De Cnudde,Loyal to your city? A data mining analysis of a public service loyalty program.,2015,73,Decision Support Systems,,db/journals/dss/dss73.html#CnuddeM15,https://doi.org/10.1016/j.dss.2015.03.004 +Hendrik Reefke,Sustainable supply chain management: Decision models for transformation and maturity.,2018,113,Decision Support Systems,,db/journals/dss/dss113.html#ReefkeS18,https://doi.org/10.1016/j.dss.2018.07.002 +Christopher V. Jones,Developments in graph-based modeling for decision support.,1995,13,Decision Support Systems,1,db/journals/dss/dss13.html#Jones95a,https://doi.org/10.1016/0167-9236(93)E0031-8 +Jae Kyu Lee,Interaction of strategic planning and short-term planning: An intelligent DSS by the post-model analysis approach.,1987,3,Decision Support Systems,2,db/journals/dss/dss3.html#LeeL87,https://doi.org/10.1016/0167-9236(87)90073-X +Henrik Leopold,Detection of naming convention violations in process models for different languages.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#LeopoldEMAB13,https://doi.org/10.1016/j.dss.2013.06.014 +Monica Adya,Development and validation of a rule-based time series complexity scoring technique to support design of adaptive forecasting DSS.,2016,83,Decision Support Systems,,db/journals/dss/dss83.html#AdyaL16,https://doi.org/10.1016/j.dss.2015.12.009 +Christoph Dorsch,Combining models of capacity supply to handle volatile demand: The economic impact of surplus capacity in cloud service environments.,2014,58,Decision Support Systems,,db/journals/dss/dss58.html#DorschH14,https://doi.org/10.1016/j.dss.2013.01.011 +Choon-Ling Sia,Effects of GSS interface and task type on group interaction: An empirical study.,1997,19,Decision Support Systems,4,db/journals/dss/dss19.html#SiaTW97,https://doi.org/10.1016/S0167-9236(96)00060-7 +Jie Zhang,Strategic alliance via co-opetition: Supply chain partnership with a competitor.,2011,51,Decision Support Systems,4,db/journals/dss/dss51.html#ZhangF11,https://doi.org/10.1016/j.dss.2011.02.004 +Hee-Woong Kim,Value-based Adoption of Mobile Internet: An empirical investigation.,2007,43,Decision Support Systems,1,db/journals/dss/dss43.html#KimCG07,https://doi.org/10.1016/j.dss.2005.05.009 +Jürgen Moormann,An approach for an integrated DSS for strategic planning.,1993,10,Decision Support Systems,4,db/journals/dss/dss10.html#MoormannL93,https://doi.org/10.1016/0167-9236(93)90070-J +Shin-Yuan Hung,Regret avoidance as a measure of DSS success: An exploratory study.,2007,42,Decision Support Systems,4,db/journals/dss/dss42.html#HungKLL07,https://doi.org/10.1016/j.dss.2006.05.006 +Johannes Gettinger,A comparison of representations for discrete multi-criteria decision problems.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#GettingerKSV13,https://doi.org/10.1016/j.dss.2012.10.023 +J. J. Brennan,Understanding and validating results in model-based decision support systems.,1986,2,Decision Support Systems,1,db/journals/dss/dss2.html#BrennanE86,https://doi.org/10.1016/0167-9236(86)90120-X +Kholekile L. Gwebu,Adoption of Open Source Software: The role of social identification.,2011,51,Decision Support Systems,1,db/journals/dss/dss51.html#GwebuW11,https://doi.org/10.1016/j.dss.2010.12.010 +Kenneth E. Kendall,Decentralizing decision support systems a field experiment with drug and criminal investigators.,1993,9,Decision Support Systems,3,db/journals/dss/dss9.html#KendallS93,https://doi.org/10.1016/0167-9236(93)90057-A +Man Leung Wong,A flexible knowledge discovery system using genetic programming and logic grammars.,2001,31,Decision Support Systems,4,db/journals/dss/dss31.html#Wong01,https://doi.org/10.1016/S0167-9236(01)00092-6 +Anteneh Ayanso,Range query estimation with data skewness for top-k retrieval.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#AyansoGM14,https://doi.org/10.1016/j.dss.2013.09.005 +Thomas Chesney,The influence of influence: The effect of task repetition on persuaders and persuadees.,2017,94,Decision Support Systems,,db/journals/dss/dss94.html#ChesneyCHL17,https://doi.org/10.1016/j.dss.2016.10.001 +Matthew L. Nelson,Business rules management in healthcare: A lifecycle approach.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#NelsonS14,https://doi.org/10.1016/j.dss.2012.10.044 +Ozlem Ayaz Arda,An analytic approach to assessing organizational citizenship behavior.,2017,103,Decision Support Systems,,db/journals/dss/dss103.html#ArdaDTZ17,https://doi.org/10.1016/j.dss.2017.08.004 +John Benamati,Decision support systems unfrastructure: The root problems of the management of changing IT.,2008,45,Decision Support Systems,4,db/journals/dss/dss45.html#BenamatiL08,https://doi.org/10.1016/j.dss.2008.02.003 +Murat Köksalan,Improving efficiency in multiple-unit combinatorial auctions: Bundling bids from multiple bidders.,2009,48,Decision Support Systems,1,db/journals/dss/dss48.html#KoksalanLWW09,https://doi.org/10.1016/j.dss.2009.07.001 +Tzu-An Chiang,A decision-making methodology for low-carbon electronic product design.,2015,71,Decision Support Systems,,db/journals/dss/dss71.html#ChiangC15,https://doi.org/10.1016/j.dss.2015.01.004 +Wenjing Duan,Special issue on social media: An editorial introduction.,2013,55,Decision Support Systems,4,db/journals/dss/dss55.html#Duan13,https://doi.org/10.1016/j.dss.2012.12.021 +Hemant K. Bhargava,Decision support on demand: Emerging electronic markets for decision technologies.,1997,19,Decision Support Systems,3,db/journals/dss/dss19.html#BhargavaKM97,https://doi.org/10.1016/S0167-9236(96)00056-5 +Han Li,Examining the decision to use standalone personal health record systems as a trust-enabled fair social contract.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#Li0ZS14,https://doi.org/10.1016/j.dss.2012.10.043 +Toshiyuki Sueyoshi,An agent-based decision support system for wholesale electricity market.,2008,44,Decision Support Systems,2,db/journals/dss/dss44.html#SueyoshiT08,https://doi.org/10.1016/j.dss.2007.05.007 +Dale Mackrell,A qualitative case study of the adoption and use of an agricultural decision support system in the Australian cotton industry: The socio-technical view.,2009,47,Decision Support Systems,2,db/journals/dss/dss47.html#MackrellKH09,https://doi.org/10.1016/j.dss.2009.02.004 +Henk G. Sol,Decision support systems: A decade in perspective.,1987,3,Decision Support Systems,3,db/journals/dss/dss3.html#Sol87,https://doi.org/10.1016/0167-9236(87)90173-4 +Ya-Han Hu,Mining association rules with multiple minimum supports: a new mining algorithm and a support tuning mechanism.,2006,42,Decision Support Systems,1,db/journals/dss/dss42.html#HuC06,https://doi.org/10.1016/j.dss.2004.09.007 +Siddharth Kaza,Evaluating ontology mapping techniques: An experiment in public safety information sharing.,2008,45,Decision Support Systems,4,db/journals/dss/dss45.html#KazaC08,https://doi.org/10.1016/j.dss.2007.12.007 +Mingxin Gan,COUSIN: A network-based regression model for personalized recommendations.,2016,82,Decision Support Systems,,db/journals/dss/dss82.html#Gan16,https://doi.org/10.1016/j.dss.2015.12.001 +Michael Chau,Building a scientific knowledge web portal: The NanoPort experience.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#ChauHQZC06,https://doi.org/10.1016/j.dss.2006.01.004 +Yanjun Zuo,Two-level trust-based decision model for information assurance in a virtual organization.,2008,45,Decision Support Systems,2,db/journals/dss/dss45.html#ZuoP08,https://doi.org/10.1016/j.dss.2007.12.014 +Qiuzhen Wang,An eye-tracking study of website complexity from cognitive load perspective.,2014,62,Decision Support Systems,,db/journals/dss/dss62.html#WangYLCM14,https://doi.org/10.1016/j.dss.2014.02.007 +Olivia R. Liu Sheng,Decision support for healthcare in a new information age.,2000,30,Decision Support Systems,2,db/journals/dss/dss30.html#Sheng00,https://doi.org/10.1016/S0167-9236(00)00091-9 +Lawrence F. Young,The metaphor machine: A database method for creativity support.,1987,3,Decision Support Systems,4,db/journals/dss/dss3.html#Young87,https://doi.org/10.1016/0167-9236(87)90102-3 +Gérald Collaud,A hypertext environment for linear optimisation.,1998,23,Decision Support Systems,2,db/journals/dss/dss23.html#Collaud98,https://doi.org/10.1016/S0167-9236(98)00039-6 +Evan E. Anderson,Microcomputer software evaluation: An econometric model.,1997,19,Decision Support Systems,2,db/journals/dss/dss19.html#AndersonC97,https://doi.org/10.1016/S0167-9236(96)00042-5 +Angappa Gunasekaran,Decision support systems for logistics and supply chain management.,2012,52,Decision Support Systems,4,db/journals/dss/dss52.html#GunasekaranN12,https://doi.org/10.1016/j.dss.2011.11.012 +Guoqing Chen,Guest Editorial: Business applications of Web of Things.,2014,63,Decision Support Systems,,db/journals/dss/dss63.html#ChenGZWW14,https://doi.org/10.1016/j.dss.2013.09.011 +José Jesús Castro-Schez,Using fuzzy repertory table-based technique for decision support.,2005,39,Decision Support Systems,3,db/journals/dss/dss39.html#Castro-SchezJMR05,https://doi.org/10.1016/j.dss.2003.11.001 +Wil M. P. van der Aalst,Re-engineering knock-out processes.,2001,30,Decision Support Systems,4,db/journals/dss/dss30.html#Aalst01,https://doi.org/10.1016/S0167-9236(00)00136-6 +Allen S. Parrish,Optimizing disk storage to support statistical analysis operations.,2005,38,Decision Support Systems,4,db/journals/dss/dss38.html#ParrishVDN05,https://doi.org/10.1016/j.dss.2003.09.005 +Zoe Yan Zhuang,A framework for an intelligent decision support system: A case in pathology test ordering.,2013,55,Decision Support Systems,2,db/journals/dss/dss55.html#ZhuangWC13,https://doi.org/10.1016/j.dss.2012.10.006 +Albert L. Lederer,The technology acceptance model and the World Wide Web.,2000,29,Decision Support Systems,3,db/journals/dss/dss29.html#LedererMSZ00,https://doi.org/10.1016/S0167-9236(00)00076-2 +Izak Benbasat,An evaluation of empirical research in managerial support systems.,1990,6,Decision Support Systems,3,db/journals/dss/dss6.html#BenbasatN90,https://doi.org/10.1016/0167-9236(90)90015-J +Rahul C. Basole,Healthcare management through organizational simulation.,2013,55,Decision Support Systems,2,db/journals/dss/dss55.html#BasoleBR13,https://doi.org/10.1016/j.dss.2012.10.012 +Jaeki Song,Application discoverability and user satisfaction in mobile application stores: An environmental psychology perspective.,2014,59,Decision Support Systems,,db/journals/dss/dss59.html#SongKJBC14,https://doi.org/10.1016/j.dss.2013.10.004 +Piero Migliarese,Improved communications and collaborations among tasks induced by Groupware.,1995,14,Decision Support Systems,3,db/journals/dss/dss14.html#MigliareseP95,https://doi.org/10.1016/0167-9236(94)00019-O +Dengpan Liu,Knowledge sharing and investment decisions in information security.,2011,52,Decision Support Systems,1,db/journals/dss/dss52.html#LiuJM11,https://doi.org/10.1016/j.dss.2011.05.007 +Vicente Salas-Fumás,Organisational structure and performance of consensus decisions through mutual influences: A computer simulation approach.,2016,86,Decision Support Systems,,db/journals/dss/dss86.html#Salas-FumasSL16,https://doi.org/10.1016/j.dss.2016.03.008 +Amrit Tiwana,A design knowledge management system to support collaborative information product evolution.,2001,31,Decision Support Systems,2,db/journals/dss/dss31.html#TiwanaR01,https://doi.org/10.1016/S0167-9236(00)00134-2 +Charles L. Gardner,The design and use of laboratory experiments for DSS evaluation.,1993,9,Decision Support Systems,4,db/journals/dss/dss9.html#GardnerMP93,https://doi.org/10.1016/0167-9236(93)90047-7 +Jürgen Wolff von Gudenberg,Arithmetic for vector and parallel computers.,1991,7,Decision Support Systems,3,db/journals/dss/dss7.html#Gudenberg91,https://doi.org/10.1016/0167-9236(91)90045-D +Rui Chen 0002,Member use of social networking sites - an empirical examination.,2013,54,Decision Support Systems,3,db/journals/dss/dss54.html#Chen13,https://doi.org/10.1016/j.dss.2012.10.028 +Yong-Soon Kang,Do visitors' interest level and perceived quantity of web page content matter in shaping the attitude toward a web site?,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#KangK06,https://doi.org/10.1016/j.dss.2005.10.004 +Kai R. Larsen,Analyzing unstructured text data: Using latent categorization to identify intellectual communities in information systems.,2008,45,Decision Support Systems,4,db/journals/dss/dss45.html#LarsenMHB08,https://doi.org/10.1016/j.dss.2008.02.009 +Tony Cheng-Kui Huang,Change detection model for sequential cause-and-effect relationships.,2018,106,Decision Support Systems,,db/journals/dss/dss106.html#HuangYT18,https://doi.org/10.1016/j.dss.2017.11.007 +Rupinder P. Jindal,Factors influencing hospital readmission penalties: Are they really under hospitals' control?,2018,110,Decision Support Systems,,db/journals/dss/dss110.html#JindalGSN18,https://doi.org/10.1016/j.dss.2018.03.006 +André L. V. Coelho,Multi-objective design of hierarchical consensus functions for clustering ensembles via genetic programming.,2011,51,Decision Support Systems,4,db/journals/dss/dss51.html#CoelhoFF11,https://doi.org/10.1016/j.dss.2011.01.014 +Zafer D. Ozdemir,Second opinions and online consultations.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#OzdemirAA06,https://doi.org/10.1016/j.dss.2006.03.011 +S. Raghunathan,A structured modeling based methodology to design decision support systems.,1996,17,Decision Support Systems,4,db/journals/dss/dss17.html#Raghunathan96,https://doi.org/10.1016/0167-9236(96)00006-1 +Stefan Feuerriegel,Long-term stock index forecasting based on text mining of regulatory disclosures.,2018,112,Decision Support Systems,,db/journals/dss/dss112.html#FeuerriegelG18,https://doi.org/10.1016/j.dss.2018.06.008 +Vicente Salas-Fumás,Information and trust in hierarchies.,2013,55,Decision Support Systems,4,db/journals/dss/dss55.html#Salas-FumasS13,https://doi.org/10.1016/j.dss.2013.01.008 +Ralph H. Sprague Jr.,DSS in context.,1987,3,Decision Support Systems,3,db/journals/dss/dss3.html#Sprague87,https://doi.org/10.1016/0167-9236(87)90174-6 +Ee-Peng Lim,The integration of relationship instances from heterogeneous databases.,2000,29,Decision Support Systems,2,db/journals/dss/dss29.html#LimC00,https://doi.org/10.1016/S0167-9236(00)00070-1 +Ewa Maslowska,Do customer reviews drive purchase decisions? The moderating roles of review exposure and price.,2017,98,Decision Support Systems,,db/journals/dss/dss98.html#MaslowskaMV17,https://doi.org/10.1016/j.dss.2017.03.010 +Jose-Norberto Mazón,An MDA approach for the development of data warehouses.,2008,45,Decision Support Systems,1,db/journals/dss/dss45.html#MazonT08,https://doi.org/10.1016/j.dss.2006.12.003 +Alexander I. Mechitov,Problems of decision rule elicitation in a classification task.,1994,12,Decision Support Systems,2,db/journals/dss/dss12.html#MechitovMO94,https://doi.org/10.1016/0167-9236(94)90011-6 +Xiaorui Hu,The effects of Web assurance seals on consumers' initial trust in an online vendor: A functional perspective.,2010,48,Decision Support Systems,2,db/journals/dss/dss48.html#HuWWZ10,https://doi.org/10.1016/j.dss.2009.10.004 +Mei-Chun Wu,Process-induced decision costs on sequential value judgments.,2013,55,Decision Support Systems,3,db/journals/dss/dss55.html#WuK13,https://doi.org/10.1016/j.dss.2013.03.007 +Tzu-Chuan Chou,Exploring the collective actions of public servants in e-government development.,2008,45,Decision Support Systems,2,db/journals/dss/dss45.html#ChouCP08,https://doi.org/10.1016/j.dss.2007.02.005 +Lingyun Qiu,Effects of conflicting aggregated rating on eWOM review credibility and diagnosticity: The moderating role of review valence.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#QiuPL12,https://doi.org/10.1016/j.dss.2012.08.020 +Salvatore T. March,Integrated decision support systems: A data warehousing perspective.,2007,43,Decision Support Systems,3,db/journals/dss/dss43.html#MarchH07,https://doi.org/10.1016/j.dss.2005.05.029 +Xu Guan,Hierarchical quality disclosure in a supply chain with cost heterogeneity.,2015,76,Decision Support Systems,,db/journals/dss/dss76.html#GuanC15,https://doi.org/10.1016/j.dss.2015.01.002 +Manish Agrawal,Matching intermediaries for information goods in the presence of direct search: an examination of switching costs and obsolescence of information.,2005,41,Decision Support Systems,1,db/journals/dss/dss41.html#AgrawalHKR05,https://doi.org/10.1016/j.dss.2004.05.002 +Yen-Chun Chou,Performance evaluation of production of IT capital goods across OECD countries: A stochastic frontier approach to Malmquist index.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#ChouSL12,https://doi.org/10.1016/j.dss.2012.05.003 +Daniel J. Power,Model-driven decision support systems: Concepts and research directions.,2007,43,Decision Support Systems,3,db/journals/dss/dss43.html#PowerS07,https://doi.org/10.1016/j.dss.2005.05.030 +Daniel R. Dolk,Model integration and a theory of models.,1993,9,Decision Support Systems,1,db/journals/dss/dss9.html#DolkK93,https://doi.org/10.1016/0167-9236(93)90022-U +Yu-Jen Wu,An employee performance estimation model for the logistics industry.,2010,48,Decision Support Systems,4,db/journals/dss/dss48.html#WuH10,https://doi.org/10.1016/j.dss.2009.11.007 +Yoshinori Suzuki,A decision support system of dynamic vehicle refueling.,2009,46,Decision Support Systems,2,db/journals/dss/dss46.html#Suzuki09,https://doi.org/10.1016/j.dss.2008.09.005 +Seungwoo Kwon,Reservation price reporting mechanisms for online negotiations.,2009,46,Decision Support Systems,4,db/journals/dss/dss46.html#KwonYKSL09,https://doi.org/10.1016/j.dss.2008.11.006 +Shimon Schocken,Meta-interpreters for rule-based inference under uncertainty.,1990,6,Decision Support Systems,2,db/journals/dss/dss6.html#SchockenF90,https://doi.org/10.1016/0167-9236(90)90006-D +Georgia Alexouda,A user-friendly marketing decision support system for the product line design using evolutionary algorithms.,2005,38,Decision Support Systems,4,db/journals/dss/dss38.html#Alexouda05,https://doi.org/10.1016/j.dss.2003.09.002 +Dingfei Liu,Integrated object-oriented framework for MCDM and DSS modelling.,2004,38,Decision Support Systems,3,db/journals/dss/dss38.html#LiuS04a,https://doi.org/10.1016/j.dss.2003.09.001 +Michael P. Johnson,Modeling the longitudinality of user acceptance of technology with an evidence-adaptive clinical decision support system.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#JohnsonZP14,https://doi.org/10.1016/j.dss.2012.10.049 +Muhammad Adeel Zaffar,Diffusion dynamics of open source software: An agent-based computational economics (ACE) approach.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#ZaffarKZ11,https://doi.org/10.1016/j.dss.2010.11.034 +Qimi Jiang,A multi-dimensional fuzzy decision support strategy.,2005,38,Decision Support Systems,4,db/journals/dss/dss38.html#JiangC05,https://doi.org/10.1016/j.dss.2003.08.003 +Rudolf Vetschera,MCView: An integrated graphical system to support multi-attribute decisions.,1994,11,Decision Support Systems,4,db/journals/dss/dss11.html#Vetschera94,https://doi.org/10.1016/0167-9236(94)90081-7 +Russell W. Robbins,Decision support for ethical problem solving: A multi-agent approach.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#RobbinsW07,https://doi.org/10.1016/j.dss.2006.03.003 +Kate A. Smith,Web page clustering using a self-organizing map of user navigation patterns.,2003,35,Decision Support Systems,2,db/journals/dss/dss35.html#SmithN03,https://doi.org/10.1016/S0167-9236(02)00109-4 +Csaba Mészáros,On sensitivity analysis for a class of decision systems.,1996,16,Decision Support Systems,3,db/journals/dss/dss16.html#MeszarosR96,https://doi.org/10.1016/0167-9236(95)00012-7 +Yan Li 0018,Designing utilization-based spatial healthcare accessibility decision support systems: A case of a regional health plan.,2017,99,Decision Support Systems,,db/journals/dss/dss99.html#LiVRF17,https://doi.org/10.1016/j.dss.2017.05.011 +Pediredla Ravisankar,Detection of financial statement fraud and feature selection using data mining techniques.,2011,50,Decision Support Systems,2,db/journals/dss/dss50.html#RavisankarRRB11,https://doi.org/10.1016/j.dss.2010.11.006 +Richard C. Hicks,The no inference engine theory - Performing conflict resolution during development.,2007,43,Decision Support Systems,2,db/journals/dss/dss43.html#Hicks07,https://doi.org/10.1016/j.dss.2006.11.001 +Alan R. Dennis,Communication requirements and network evaluation within electronic meeting system environments.,1991,7,Decision Support Systems,1,db/journals/dss/dss7.html#DennisARN91,https://doi.org/10.1016/0167-9236(91)90074-L +I-Chiu Chang,Factors affecting the adoption of electronic signature: Executives' perspective of hospital information department.,2007,44,Decision Support Systems,1,db/journals/dss/dss44.html#ChangHHLY07,https://doi.org/10.1016/j.dss.2007.04.006 +Alexander Dreiling,From conceptual process models to running systems: A holistic approach for the configuration of enterprise system processes.,2008,45,Decision Support Systems,2,db/journals/dss/dss45.html#DreilingRAS08,https://doi.org/10.1016/j.dss.2007.02.007 +Prashant Palvia,Contextual constraints in media choice: Beyond information richness.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#PalviaPCJ11,https://doi.org/10.1016/j.dss.2011.03.006 +Chin-Sheng Yang,Predicting the length of hospital stay of burn patients: Comparisons of prediction accuracy among different clinical stages.,2010,50,Decision Support Systems,1,db/journals/dss/dss50.html#YangWYS10,https://doi.org/10.1016/j.dss.2010.09.001 +Charles B. Stabell,Decision support systems: Alternative perspectives and schools.,1987,3,Decision Support Systems,3,db/journals/dss/dss3.html#Stabell87,https://doi.org/10.1016/0167-9236(87)90179-5 +Mike P. Papazoglou,Integrated value chains and their implications from a business and technology standpoint.,2000,29,Decision Support Systems,4,db/journals/dss/dss29.html#PapazoglouRT00,https://doi.org/10.1016/S0167-9236(00)00081-6 +Youwei Wang,Store survival in online marketplace: An empirical investigation.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#WangWFC13,https://doi.org/10.1016/j.dss.2012.11.005 +Nahk Hyun Sung,Knowledge assisted dynamic pricing for large-scale retailers.,2000,28,Decision Support Systems,4,db/journals/dss/dss28.html#SungL00,https://doi.org/10.1016/S0167-9236(99)00095-0 +S. Keyvan Mirrazavi,MultiGen: an integrated multiple-objective solution system.,2003,36,Decision Support Systems,2,db/journals/dss/dss36.html#MirrazaviJT03,https://doi.org/10.1016/S0167-9236(02)00135-5 +Hsin Hsin Chang,The effects of response strategies and severity of failure on consumer attribution with regard to negative word-of-mouth.,2015,71,Decision Support Systems,,db/journals/dss/dss71.html#ChangTWWC15,https://doi.org/10.1016/j.dss.2015.01.007 +Geert-Jan Houben,A knowledge-based SWOT-analysis system as an instrument for strategic planning in small and medium sized enterprises.,1999,26,Decision Support Systems,2,db/journals/dss/dss26.html#HoubenLV99,https://doi.org/10.1016/S0167-9236(99)00024-X +Seyed Pouyan Eslami,Which online reviews do consumers find most helpful? A multi-method investigation.,2018,113,Decision Support Systems,,db/journals/dss/dss113.html#EslamiGH18,https://doi.org/10.1016/j.dss.2018.06.012 +Christopher V. Jones,Introduction to the special issue of decision support systems on user interfaces.,1995,13,Decision Support Systems,1,db/journals/dss/dss13.html#Jones95,https://doi.org/10.1016/0167-9236(95)90019-5 +Jong-Jin Jung,Brokerage between buyer and seller agents using Constraint Satisfaction Problem models.,2000,28,Decision Support Systems,4,db/journals/dss/dss28.html#JungJ00,https://doi.org/10.1016/S0167-9236(99)00093-7 +Nanda Kumar,Locking the door but leaving the computer vulnerable: Factors inhibiting home users' adoption of software firewalls.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#KumarMH08,https://doi.org/10.1016/j.dss.2008.06.010 +James F. Courtney,Studies in managerial problem formulation systems.,1993,9,Decision Support Systems,4,db/journals/dss/dss9.html#CourtneyP93,https://doi.org/10.1016/0167-9236(93)90050-D +Ying-Ming Wang,An approach to avoiding rank reversal in AHP.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#WangE06,https://doi.org/10.1016/j.dss.2005.12.002 +Vasant Dhar,On modeling processes.,1993,9,Decision Support Systems,1,db/journals/dss/dss9.html#DharJ93,https://doi.org/10.1016/0167-9236(93)90021-T +Carlos Serrano-Cinca,Partial Least Square Discriminant Analysis for bankruptcy prediction.,2013,54,Decision Support Systems,3,db/journals/dss/dss54.html#Serrano-CincaG13,https://doi.org/10.1016/j.dss.2012.11.015 +Jef Van Meensel,Effect of a participatory approach on the successful development of agricultural decision support systems: The case of Pigs2win.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#MeenselLKDH12,https://doi.org/10.1016/j.dss.2012.05.002 +Zan Huang,Expertise visualization: An implementation and study based on cognitive fit theory.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#HuangCGXWC06,https://doi.org/10.1016/j.dss.2006.01.006 +John A. A. Sillince,Argumentation and contract models for strategic organization support systems.,1996,16,Decision Support Systems,3,db/journals/dss/dss16.html#Sillince96,https://doi.org/10.1016/0167-9236(95)00027-5 +Manning Li,Outcomes of effective explanations: Empowering citizens through online advice.,2011,52,Decision Support Systems,1,db/journals/dss/dss52.html#LiG11,https://doi.org/10.1016/j.dss.2011.06.001 +Abraham Seidmann,"Introduction to the Special Issue on ""Analyzing the impacts of advanced information technologies on business operations"".",2015,76,Decision Support Systems,,db/journals/dss/dss76.html#SeidmannJZ15,https://doi.org/10.1016/j.dss.2015.05.005 +Jonathan Wilkenfeld,GENIE: A decision support system for crisis negotiations.,1995,14,Decision Support Systems,4,db/journals/dss/dss14.html#WilkenfeldKHH95,https://doi.org/10.1016/0167-9236(94)00027-P +HsiuJu Rebecca Yen,Service innovation readiness: Dimensions and performance outcome.,2012,53,Decision Support Systems,4,db/journals/dss/dss53.html#YenWWHC12,https://doi.org/10.1016/j.dss.2012.05.015 +Thomas L. Ngo-Ye,The influence of reviewer engagement characteristics on online review helpfulness: A text regression model.,2014,61,Decision Support Systems,,db/journals/dss/dss61.html#Ngo-YeS14,https://doi.org/10.1016/j.dss.2014.01.011 +M. Xu,Modeling daily patient arrivals at Emergency Department and quantifying the relative importance of contributing variables using artificial neural network.,2013,54,Decision Support Systems,3,db/journals/dss/dss54.html#XuWC13,https://doi.org/10.1016/j.dss.2012.12.019 +Odd Jarl Borch,Knowledge-based systems for strategic market planning in small firms.,1991,7,Decision Support Systems,2,db/journals/dss/dss7.html#BorchH91,https://doi.org/10.1016/0167-9236(91)90053-E +Zhongju Zhang,Price competition with service level guarantee in web services.,2009,47,Decision Support Systems,2,db/journals/dss/dss47.html#ZhangTD09,https://doi.org/10.1016/j.dss.2009.01.004 +Chunhui Liu,An empirical investigation on the impact of XBRL adoption on information asymmetry: Evidence from Europe.,2017,93,Decision Support Systems,,db/journals/dss/dss93.html#LiuLW17,https://doi.org/10.1016/j.dss.2016.09.004 +J. Yannis Bakos,Recent applications of economic theory in information Technology research.,1992,8,Decision Support Systems,5,db/journals/dss/dss8.html#BakosK92,https://doi.org/10.1016/0167-9236(92)90024-J +Jussi Hakanen,Wastewater treatment: New insight provided by interactive multiobjective optimization.,2011,51,Decision Support Systems,2,db/journals/dss/dss51.html#HakanenMS11,https://doi.org/10.1016/j.dss.2010.11.026 +Milosz Kadzinski,Parametric evaluation of research units with respect to reference profiles.,2015,72,Decision Support Systems,,db/journals/dss/dss72.html#KadzinskiS15,https://doi.org/10.1016/j.dss.2015.02.004 +Qi Wang 0011,A context-aware researcher recommendation system for university-industry collaboration on R and D projects.,2017,103,Decision Support Systems,,db/journals/dss/dss103.html#WangMLD17,https://doi.org/10.1016/j.dss.2017.09.001 +Veda C. Storey,Data quality: Setting organizational policies.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#StoreyDF12,https://doi.org/10.1016/j.dss.2012.06.004 +Gerhard Fischer,A conceptual framework for knowledge-based critic systems.,1991,7,Decision Support Systems,4,db/journals/dss/dss7.html#FischerM91,https://doi.org/10.1016/0167-9236(91)90064-I +Xin (Robert) Luo,Examining multi-dimensional trust and multi-faceted risk in initial acceptance of emerging technologies: An empirical study of mobile banking services.,2010,49,Decision Support Systems,2,db/journals/dss/dss49.html#LuoLZS10,https://doi.org/10.1016/j.dss.2010.02.008 +Nádia Félix F. da Silva,Tweet sentiment analysis with classifier ensembles.,2014,66,Decision Support Systems,,db/journals/dss/dss66.html#SilvaHH14,https://doi.org/10.1016/j.dss.2014.07.003 +O. Byung Kwon,RMT: A modeling support system for model reuse.,1996,16,Decision Support Systems,2,db/journals/dss/dss16.html#KwonP96,https://doi.org/10.1016/0167-9236(95)00006-2 +Wei Zhou 0001,RFID-enabled item-level retail pricing.,2009,48,Decision Support Systems,1,db/journals/dss/dss48.html#ZhouTP09,https://doi.org/10.1016/j.dss.2009.07.008 +Gülsah Karakaya,An interactive approach for multi-attribute auctions.,2011,51,Decision Support Systems,2,db/journals/dss/dss51.html#KarakayaK11,https://doi.org/10.1016/j.dss.2010.11.023 +Francisco Maciá Pérez,Algorithm for the detection of outliers based on the theory of rough sets.,2015,75,Decision Support Systems,,db/journals/dss/dss75.html#PerezBOO15,https://doi.org/10.1016/j.dss.2015.05.002 +Mark N. Frolick,EIS information requirements determination: Using a group support system to enhance the strategic business objectives method.,1995,14,Decision Support Systems,2,db/journals/dss/dss14.html#FrolickR95,https://doi.org/10.1016/0167-9236(94)00009-H +Gerd J. Hahn,A perspective on applications of in-memory analytics in supply chain management.,2015,76,Decision Support Systems,,db/journals/dss/dss76.html#HahnP15,https://doi.org/10.1016/j.dss.2015.01.003 +Joshua Introne,Improving decision-making performance through argumentation: An argument-based decision support system to compute with evidence.,2014,64,Decision Support Systems,,db/journals/dss/dss64.html#IntroneI14,https://doi.org/10.1016/j.dss.2014.04.005 +Kwei Tang,Context-based market basket analysis in a multiple-store environment.,2008,45,Decision Support Systems,1,db/journals/dss/dss45.html#TangCH08,https://doi.org/10.1016/j.dss.2007.12.016 +C. Derrick Huang,Optimal information security investment in a Healthcare Information Exchange: An economic analysis.,2014,61,Decision Support Systems,,db/journals/dss/dss61.html#HuangBG14,https://doi.org/10.1016/j.dss.2013.10.011 +Puay Siew Tan,Multi-criteria decision techniques for context-aware B2B collaboration in supply chains.,2012,52,Decision Support Systems,4,db/journals/dss/dss52.html#TanLG12,https://doi.org/10.1016/j.dss.2011.11.013 +Donald J. Berndt,The role of data warehousing in bioterrorism surveillance.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#BerndtFCHLS07,https://doi.org/10.1016/j.dss.2006.04.009 +Sean Marston,Cloud computing - The business perspective.,2011,51,Decision Support Systems,1,db/journals/dss/dss51.html#MarstonLBZG11,https://doi.org/10.1016/j.dss.2010.12.006 +Guilherme G. Schardong,Visual interactive support for selecting scenarios from time-series ensembles.,2018,113,Decision Support Systems,,db/journals/dss/dss113.html#SchardongRBL18,https://doi.org/10.1016/j.dss.2018.08.001 +Bo Huang 0001,A GIS supported Ant algorithm for the linear feature covering problem with distance constraints.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#HuangLC06,https://doi.org/10.1016/j.dss.2005.09.002 +Jennifer Jie Xu,Fighting organized crimes: using shortest-path algorithms to identify associations in criminal networks.,2004,38,Decision Support Systems,3,db/journals/dss/dss38.html#XuC04,https://doi.org/10.1016/S0167-9236(03)00117-9 +Lyubov A. Kurkalova,Sustainable production: Using simulation modeling to identify the benefits of green information systems.,2017,96,Decision Support Systems,,db/journals/dss/dss96.html#KurkalovaC17,https://doi.org/10.1016/j.dss.2017.02.006 +Chen-Huei Chou,Commercial Internet filters: Perils and opportunities.,2010,48,Decision Support Systems,4,db/journals/dss/dss48.html#ChouSZ10,https://doi.org/10.1016/j.dss.2009.11.002 +James R. Marsden,Theory of decision support systems portfolio evaluation.,1993,9,Decision Support Systems,2,db/journals/dss/dss9.html#MarsdenP93,https://doi.org/10.1016/0167-9236(93)90011-Q +Ned Kock,Media naturalness and compensatory encoding: The burden of electronic media obstacles is on senders.,2007,44,Decision Support Systems,1,db/journals/dss/dss44.html#Kock07,https://doi.org/10.1016/j.dss.2007.03.011 +Masahito Yamamoto,A reduction method for theorem proving based on the partial-instantiation technique.,1998,23,Decision Support Systems,2,db/journals/dss/dss23.html#YamamotoO98,https://doi.org/10.1016/S0167-9236(98)00044-X +Gang Wang 0003,Sentiment classification: The contribution of ensemble learning.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#WangSMXG14,https://doi.org/10.1016/j.dss.2013.08.002 +Joerg Evermann,Predicting process behaviour using deep learning.,2017,100,Decision Support Systems,,db/journals/dss/dss100.html#EvermannRF17,https://doi.org/10.1016/j.dss.2017.04.003 +Tung-Ching Lin,The integration of value-based adoption and expectation-confirmation models: An example of IPTV continuance intention.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#LinWHC12,https://doi.org/10.1016/j.dss.2012.04.004 +Niek Althuizen,Help that is not recognized: Harmful neglect of decision support systems.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#AlthuizenRW12,https://doi.org/10.1016/j.dss.2012.08.016 +Jieun Son,Academic paper recommender system using multilevel simultaneous citation networks.,2018,105,Decision Support Systems,,db/journals/dss/dss105.html#SonK18,https://doi.org/10.1016/j.dss.2017.10.011 +Angela Liew,Flexible modelling and support of interrelated decisions.,2009,46,Decision Support Systems,4,db/journals/dss/dss46.html#LiewS09,https://doi.org/10.1016/j.dss.2008.11.016 +B. Besharati,A decision support system for product design selection: A generalized purchase modeling approach.,2006,42,Decision Support Systems,1,db/journals/dss/dss42.html#BesharatiAK06,https://doi.org/10.1016/j.dss.2005.01.002 +Robert W. Blanning,A framework for conducting political event analysis using group support systems.,2005,38,Decision Support Systems,4,db/journals/dss/dss38.html#BlanningR05,https://doi.org/10.1016/j.dss.2003.09.006 +Angelo Monfroglio,Logic decisions under constraints.,1994,11,Decision Support Systems,3,db/journals/dss/dss11.html#Monfroglio94,https://doi.org/10.1016/0167-9236(94)90076-0 +Indrajit Ray,An anonymous and failure resilient fair-exchange e-commerce protocol.,2005,39,Decision Support Systems,3,db/journals/dss/dss39.html#RayRN05,https://doi.org/10.1016/j.dss.2003.10.011 +Nigel Melville,The productivity impact of information technology across competitive regimes: The role of industry concentration and dynamism.,2007,43,Decision Support Systems,1,db/journals/dss/dss43.html#MelvilleGK07,https://doi.org/10.1016/j.dss.2006.09.009 +Corey M. Angst,Information technology and voluntary quality disclosure by hospitals.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#AngstAGKM14,https://doi.org/10.1016/j.dss.2012.10.042 +YongSeog Kim,An intelligent system for customer targeting: a data mining approach.,2004,37,Decision Support Systems,2,db/journals/dss/dss37.html#KimS04,https://doi.org/10.1016/S0167-9236(03)00008-3 +Jorge A. Colazo,Performance implications of stage-wise lead user participation in software development problem solving.,2014,67,Decision Support Systems,,db/journals/dss/dss67.html#Colazo14,https://doi.org/10.1016/j.dss.2014.08.007 +Shifeng Zhang,A software architecture and framework for Web-based distributed Decision Support Systems.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#ZhangG07,https://doi.org/10.1016/j.dss.2005.06.001 +Seokjoo Andrew Chang,Multiple overlapping online auction market: Bidder strategic mixture analysis using entropy.,2014,64,Decision Support Systems,,db/journals/dss/dss64.html#Chang14a,https://doi.org/10.1016/j.dss.2014.04.008 +Dobrila Petrovic,Decision support tool for multi-objective job shop scheduling problems with linguistically quantified decision functions.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#PetrovicDP07,https://doi.org/10.1016/j.dss.2006.06.006 +Cliff T. Ragsdale,Fashioning fair foursomes for the fairway (using a spreadsheet-based DSS as the driver).,2008,45,Decision Support Systems,4,db/journals/dss/dss45.html#RagsdaleST08,https://doi.org/10.1016/j.dss.2008.03.009 +Bilge Atasoy,Optimal inventory policies with non-stationary supply disruptions and advance supply information.,2012,53,Decision Support Systems,2,db/journals/dss/dss53.html#AtasoyGT12,https://doi.org/10.1016/j.dss.2012.01.005 +Sumanta Singha,On computing probabilities of dismissal of 10b-5 securities class-action cases.,2017,94,Decision Support Systems,,db/journals/dss/dss94.html#SinghaHS17,https://doi.org/10.1016/j.dss.2016.10.004 +P. A. Leal de Matos,Decision support for flight re-routing in Europe.,2003,34,Decision Support Systems,4,db/journals/dss/dss34.html#MatosP03,https://doi.org/10.1016/S0167-9236(02)00066-0 +Wei Zhou 0001,Simultaneous multi-level RFID tag ownership and transfer in health care environments.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#ZhouYP12,https://doi.org/10.1016/j.dss.2012.04.006 +Yen-Liang Chen,A data mining approach for retail knowledge discovery with consideration of the effect of shelf-space adjacency on sales.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#ChenCT06,https://doi.org/10.1016/j.dss.2005.12.004 +Dario Maio,A modular user-oriented decision support for physical database design.,1987,3,Decision Support Systems,2,db/journals/dss/dss3.html#MaioSS87,https://doi.org/10.1016/0167-9236(87)90074-1 +Insu Park,Short Term and Total Life Impact analysis of email worms in computer systems.,2007,43,Decision Support Systems,3,db/journals/dss/dss43.html#ParkSRU07,https://doi.org/10.1016/j.dss.2006.12.014 +Ana Rosa Pereira Borges,A weight space-based approach to fuzzy multiple-objective linear programming.,2003,34,Decision Support Systems,4,db/journals/dss/dss34.html#BorgesA03,https://doi.org/10.1016/S0167-9236(02)00068-4 +Antonino Abbruzzo,Scad-elastic net and the estimation of individual tourism expenditure determinants.,2014,66,Decision Support Systems,,db/journals/dss/dss66.html#AbbruzzoBS14,https://doi.org/10.1016/j.dss.2014.06.003 +Krishnan S. Anand,An economic view of information systems.,2006,41,Decision Support Systems,4,db/journals/dss/dss41.html#AnandH06,https://doi.org/10.1016/j.dss.2004.10.002 +Upkar Varshney,Guest editorial: Wireless in the healthcare.,2009,46,Decision Support Systems,3,db/journals/dss/dss46.html#Varshney09,https://doi.org/10.1016/j.dss.2008.11.002 +Thompson S. H. Teo,Meeting the challenges of knowledge management at the Housing and Development Board.,2005,41,Decision Support Systems,1,db/journals/dss/dss41.html#Teo05,https://doi.org/10.1016/j.dss.2004.05.013 +Jerzy Józefczyk,Decision-making algorithms in two-level complex operation system.,2004,38,Decision Support Systems,2,db/journals/dss/dss38.html#Jozefczyk04,https://doi.org/10.1016/S0167-9236(03)00098-8 +Xiangbai Gu,Fuzzy multi-attribute decision-making method based on eigenvector of fuzzy attribute evaluation space.,2006,41,Decision Support Systems,2,db/journals/dss/dss41.html#GuZ06,https://doi.org/10.1016/j.dss.2004.08.001 +Ralph L. Keeney,Design aspects of advanced decision support systems.,1988,4,Decision Support Systems,4,db/journals/dss/dss4.html#KeeneyMORR88,https://doi.org/10.1016/0167-9236(88)90001-2 +Jaime Miranda,udpSkeduler: A Web architecture based decision support system for course and classroom scheduling.,2012,52,Decision Support Systems,2,db/journals/dss/dss52.html#MirandaRR12,https://doi.org/10.1016/j.dss.2011.10.011 +Robert J. Kauffman,Guest editorial: Market transformation to an IT-enabled services-oriented economy.,2015,78,Decision Support Systems,,db/journals/dss/dss78.html#KauffmanMY15,https://doi.org/10.1016/j.dss.2015.05.012 +Navid Sahebjamnia,A hybrid decision support system for managing humanitarian relief chains.,2017,95,Decision Support Systems,,db/journals/dss/dss95.html#SahebjamniaTM17,https://doi.org/10.1016/j.dss.2016.11.006 +Nathalie T. M. Demoulin,Marketing decision support system openness: A means of improving managers' understanding of marketing phenomena.,2007,44,Decision Support Systems,1,db/journals/dss/dss44.html#Demoulin07,https://doi.org/10.1016/j.dss.2007.03.002 +Anthony J. T. Lee,Discovering content-based behavioral roles in social networks.,2014,59,Decision Support Systems,,db/journals/dss/dss59.html#LeeYTL14,https://doi.org/10.1016/j.dss.2013.12.004 +Kun Chang Lee,A cognitive map-driven avatar design recommendation DSS and its empirical validity.,2008,45,Decision Support Systems,3,db/journals/dss/dss45.html#LeeK08,https://doi.org/10.1016/j.dss.2007.06.008 +Yun Zhou 0001,An empirical study of Bayesian network parameter learning with monotonic influence constraints.,2016,87,Decision Support Systems,,db/journals/dss/dss87.html#ZhouFZ16,https://doi.org/10.1016/j.dss.2016.05.001 +Samuel W. K. Chan,Unsupervised clustering for nontextual web document classification.,2004,37,Decision Support Systems,3,db/journals/dss/dss37.html#ChanC04,https://doi.org/10.1016/S0167-9236(03)00035-6 +Edoardo M. Airoldi,Network sampling and classification: An investigation of network model representations.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#AiroldiBC11,https://doi.org/10.1016/j.dss.2011.02.014 +Dimitris A. Papakiriakopoulos,A decision support system for detecting products missing from the shelf based on heuristic rules.,2009,46,Decision Support Systems,3,db/journals/dss/dss46.html#PapakiriakopoulosPD09,https://doi.org/10.1016/j.dss.2008.11.004 +Nan Hu,Fraud detection in online consumer reviews.,2011,50,Decision Support Systems,3,db/journals/dss/dss50.html#HuLS11,https://doi.org/10.1016/j.dss.2010.08.012 +Esther David,Bidding in sealed-bid and English multi-attribute auctions.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#DavidAK06,https://doi.org/10.1016/j.dss.2005.02.007 +Anthony Costa Constantinou,Causal inference for violence risk management and decision support in forensic psychiatry.,2015,80,Decision Support Systems,,db/journals/dss/dss80.html#ConstantinouFMC15,https://doi.org/10.1016/j.dss.2015.09.006 +Huaxia Rui,Whose and what chatter matters? The effect of tweets on movie sales.,2013,55,Decision Support Systems,4,db/journals/dss/dss55.html#RuiLW13,https://doi.org/10.1016/j.dss.2012.12.022 +James F. Courtney,Decision making and knowledge management in inquiring organizations: toward a new decision-making paradigm for DSS.,2001,31,Decision Support Systems,1,db/journals/dss/dss31.html#Courtney01,https://doi.org/10.1016/S0167-9236(00)00117-2 +Anya C. (Savikhin) Samak,An experimental study of reputation with heterogeneous goods.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#Samak13,https://doi.org/10.1016/j.dss.2012.10.039 +Bin Zhu 0001,Using 3D interfaces to facilitate the spatial knowledge retrieval: a geo-referenced knowledge repository system.,2005,40,Decision Support Systems,2,db/journals/dss/dss40.html#ZhuC05,https://doi.org/10.1016/j.dss.2004.01.007 +Olivier Lavastre,Supply chain risk management in French companies.,2012,52,Decision Support Systems,4,db/journals/dss/dss52.html#LavastreGS12,https://doi.org/10.1016/j.dss.2011.11.017 +Indranil Bose,Tradeoff decisions in the design of a backbone computer network using visualization.,2003,35,Decision Support Systems,3,db/journals/dss/dss35.html#BoseAC03,https://doi.org/10.1016/S0167-9236(02)00112-4 +Tyge-F. Kummer,Enhancing understandability of process models through cultural-dependent color adjustments.,2016,87,Decision Support Systems,,db/journals/dss/dss87.html#KummerRM16,https://doi.org/10.1016/j.dss.2016.04.004 +Izak Benbasat,The effects of decision support and task contingencies on model formulation: A cognitive perspective.,1996,17,Decision Support Systems,4,db/journals/dss/dss17.html#BenbasatT96,https://doi.org/10.1016/0167-9236(96)00003-6 +Dennis van Heijst,A support system for predicting eBay end prices.,2008,44,Decision Support Systems,4,db/journals/dss/dss44.html#HeijstPW08,https://doi.org/10.1016/j.dss.2007.11.004 +Christopher C. Yang,Intelligent internet searching agent based on hybrid simulated annealing.,2000,28,Decision Support Systems,3,db/journals/dss/dss28.html#YangYC00,https://doi.org/10.1016/S0167-9236(99)00091-3 +Ting-Peng Liang,An empirical study on consumer acceptance of products in electronic markets: a transaction cost model.,1998,24,Decision Support Systems,1,db/journals/dss/dss24.html#LiangH98,https://doi.org/10.1016/S0167-9236(98)00061-X +Chao-Min Chiu,What can crowdsourcing do for decision support?,2014,65,Decision Support Systems,,db/journals/dss/dss65.html#ChiuLT14a,https://doi.org/10.1016/j.dss.2014.05.010 +G. Vinué,Looking for representative fit models for apparel sizing.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#VinueLAA14,https://doi.org/10.1016/j.dss.2013.07.007 +Cynthia LeRouge,It's more than just use: An exploration of telemedicine use quality.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#LeRougeHC07,https://doi.org/10.1016/j.dss.2006.02.007 +Jose-Norberto Mazón,Introduction to the special issue of Business Intelligence and the Web.,2012,52,Decision Support Systems,4,db/journals/dss/dss52.html#MazonGDT12,https://doi.org/10.1016/j.dss.2011.11.007 +Sami Smadi,Detection of online phishing email using dynamic evolving neural network based on reinforcement learning.,2018,107,Decision Support Systems,,db/journals/dss/dss107.html#SmadiAZ18,https://doi.org/10.1016/j.dss.2018.01.001 +Jaeung Lee 0003,Use of online information and suitability of target in shoplifting: A routine activity based analysis.,2018,110,Decision Support Systems,,db/journals/dss/dss110.html#LeeGTKSR18,https://doi.org/10.1016/j.dss.2018.03.001 +Ugochukwu O. Etudo,Financial Concept Element Mapper (FinCEM) for XBRL interoperability: Utilizing the M3 Plus method.,2017,98,Decision Support Systems,,db/journals/dss/dss98.html#EtudoYL17,https://doi.org/10.1016/j.dss.2017.04.006 +Stathis Plitsos,Energy-aware decision support for production scheduling.,2017,93,Decision Support Systems,,db/journals/dss/dss93.html#PlitsosRMT17,https://doi.org/10.1016/j.dss.2016.09.017 +Xin Robert Luo,Special issue introduction: A comprehensive perspective on information systems security - technical advances and behavioral issues.,2016,92,Decision Support Systems,,db/journals/dss/dss92.html#LuoZ16,https://doi.org/10.1016/j.dss.2016.10.003 +Robert W. Blanning,The sensitivity properties of hierarchical logic-based models.,1990,6,Decision Support Systems,2,db/journals/dss/dss6.html#Blanning90,https://doi.org/10.1016/0167-9236(90)90002-9 +Nico Vandaele,Sustainable R and D portfolio assessment.,2013,54,Decision Support Systems,4,db/journals/dss/dss54.html#VandaeleD13,https://doi.org/10.1016/j.dss.2012.05.054 +Guiwu Wei,Potential optimality and robust optimality in multiattribute decision analysis with incomplete information: A comparative study.,2013,55,Decision Support Systems,3,db/journals/dss/dss55.html#WeiWC13,https://doi.org/10.1016/j.dss.2013.02.005 +Fernando L. Alvarado,Solving power flow problems with a Matlab implementation of the Power System Applications Data Dictionary.,2001,30,Decision Support Systems,3,db/journals/dss/dss30.html#Alvarado01,https://doi.org/10.1016/S0167-9236(00)00102-0 +A. K. Choudhury,Consensus-based intelligent group decision-making model for the selection of advanced technology.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#ChoudhuryST06,https://doi.org/10.1016/j.dss.2005.05.001 +Kannan Mohan,Traceability-based knowledge integration in group decision and negotiation activities.,2007,43,Decision Support Systems,3,db/journals/dss/dss43.html#MohanR07,https://doi.org/10.1016/j.dss.2005.05.026 +Vamsi Vallurupalli,Business intelligence for performance measurement: A case based analysis.,2018,111,Decision Support Systems,,db/journals/dss/dss111.html#VallurupalliB18,https://doi.org/10.1016/j.dss.2018.05.002 +Anitesh Barua,Decision support for managing organizational design dynamics.,1998,22,Decision Support Systems,1,db/journals/dss/dss22.html#BaruaW98,https://doi.org/10.1016/S0167-9236(96)00059-0 +Stefano Cresci,Fame for sale: Efficient detection of fake Twitter followers.,2015,80,Decision Support Systems,,db/journals/dss/dss80.html#CresciPPST15,https://doi.org/10.1016/j.dss.2015.09.003 +Parag C. Pendharkar,Hybrid approaches for classification under information acquisition cost constraint.,2005,41,Decision Support Systems,1,db/journals/dss/dss41.html#Pendharkar05,https://doi.org/10.1016/j.dss.2004.07.001 +Steven O. Kimbrough,A graph representation for management of logic models.,1986,2,Decision Support Systems,1,db/journals/dss/dss2.html#Kimbrough86,https://doi.org/10.1016/0167-9236(86)90118-1 +Iris A. Junglas,Task-technology fit for mobile locatable information systems.,2008,45,Decision Support Systems,4,db/journals/dss/dss45.html#JunglasAW08,https://doi.org/10.1016/j.dss.2008.02.007 +Ruth C. King,Social responsibility and stakeholder influence: Does technology matter during stakeholder deliberation with high-impact decisions?,2010,48,Decision Support Systems,4,db/journals/dss/dss48.html#KingHSMM10,https://doi.org/10.1016/j.dss.2009.11.004 +Zhenfeng Zhu,Inverse matrix-free incremental proximal support vector machine.,2012,53,Decision Support Systems,3,db/journals/dss/dss53.html#ZhuZGYX12,https://doi.org/10.1016/j.dss.2012.02.007 +Monica Chiarini Tremblay,Design of an information volatility measure for health care decision making.,2012,52,Decision Support Systems,2,db/journals/dss/dss52.html#TremblayHB12,https://doi.org/10.1016/j.dss.2011.08.009 +Thierry Moyaux,A supply chain as a network of auctions.,2010,50,Decision Support Systems,1,db/journals/dss/dss50.html#MoyauxMW10,https://doi.org/10.1016/j.dss.2010.07.013 +Ling Zhao 0001,Assessing the effects of service quality and justice on customer satisfaction and the continuance intention of mobile value-added services: An empirical test of a multidimensional model.,2012,52,Decision Support Systems,3,db/journals/dss/dss52.html#ZhaoLZC12,https://doi.org/10.1016/j.dss.2011.10.022 +Tina Comes,Decision maps: A framework for multi-criteria decision support under severe uncertainty.,2011,52,Decision Support Systems,1,db/journals/dss/dss52.html#ComesHWS11,https://doi.org/10.1016/j.dss.2011.05.008 +Takashi Mihara,Information sharing using entangled states and its applications to quantum card tricks.,2011,50,Decision Support Systems,2,db/journals/dss/dss50.html#Mihara11,https://doi.org/10.1016/j.dss.2010.11.010 +Moutaz Khouja,Application of complex adaptive systems to pricing of reproducible information goods.,2008,44,Decision Support Systems,3,db/journals/dss/dss44.html#KhoujaHRT08,https://doi.org/10.1016/j.dss.2007.10.005 +Beatriz Abdul-Jalbar,Policies for a single-vendor multi-buyer system with finite production rate.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#Abdul-JalbarGS08,https://doi.org/10.1016/j.dss.2008.05.002 +Qian Zhang,A cross-domain recommender system with consistent information transfer.,2017,104,Decision Support Systems,,db/journals/dss/dss104.html#ZhangWLLZ17,https://doi.org/10.1016/j.dss.2017.10.002 +Ross A. Malaga,The effect of stimulus modes and associative distance in individual creativity support systems.,2000,29,Decision Support Systems,2,db/journals/dss/dss29.html#Malaga00,https://doi.org/10.1016/S0167-9236(00)00067-1 +Ze-Han Fang,A novel trend surveillance system using the information from web search engines.,2016,88,Decision Support Systems,,db/journals/dss/dss88.html#FangC16,https://doi.org/10.1016/j.dss.2016.06.001 +Alok R. Chaturvedi,Supporting complex real-time decision making through machine learning.,1993,10,Decision Support Systems,2,db/journals/dss/dss10.html#ChaturvediHN93,https://doi.org/10.1016/0167-9236(93)90039-6 +Wen-Yau Liang,Agent-based demand forecast in multi-echelon supply chain.,2006,42,Decision Support Systems,1,db/journals/dss/dss42.html#LiangH06,https://doi.org/10.1016/j.dss.2005.01.009 +Chris Jones,An integrated modeling environment based on attributed graphs and graph-grammars.,1993,10,Decision Support Systems,3,db/journals/dss/dss10.html#Jones93,https://doi.org/10.1016/0167-9236(93)90063-9 +M. Bellone,ISPM: A DSS for personnel career management.,1995,15,Decision Support Systems,3,db/journals/dss/dss15.html#BelloneMP95,https://doi.org/10.1016/0167-9236(94)00063-X +Adnan Duric,Feature selection for sentiment analysis based on content and syntax models.,2012,53,Decision Support Systems,4,db/journals/dss/dss53.html#DuricS12,https://doi.org/10.1016/j.dss.2012.05.023 +Wei Zhou 0001,Effects of ticket-switching on inventory management: Actual vs. information system-based data.,2015,77,Decision Support Systems,,db/journals/dss/dss77.html#ZhouP15a,https://doi.org/10.1016/j.dss.2015.05.010 +Rui Pedro Lourenço,Incorporating citizens' views in local policy decision making processes.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#LourencoC07,https://doi.org/10.1016/j.dss.2006.06.004 +Rafael Caballero,MOPEN: A computational package for Linear Multiobjective and Goal Programming problems.,2005,41,Decision Support Systems,1,db/journals/dss/dss41.html#CaballeroLMR05,https://doi.org/10.1016/j.dss.2004.06.002 +Sucheta Nadkarni,A causal mapping approach to constructing Bayesian networks.,2004,38,Decision Support Systems,2,db/journals/dss/dss38.html#NadkarniS04,https://doi.org/10.1016/S0167-9236(03)00095-2 +Piet van der Vlist,Note on supply chain integration in vendor-managed inventory.,2007,44,Decision Support Systems,1,db/journals/dss/dss44.html#VlistKV07,https://doi.org/10.1016/j.dss.2007.03.003 +Raymond R. Panko,Revising the Panko-Halverson taxonomy of spreadsheet errors.,2010,49,Decision Support Systems,2,db/journals/dss/dss49.html#PankoA10,https://doi.org/10.1016/j.dss.2010.02.009 +Robert Fourer,Database structures for mathematical programming models.,1997,20,Decision Support Systems,4,db/journals/dss/dss20.html#Fourer97,https://doi.org/10.1016/S0167-9236(97)00007-9 +Ayeley P. Tchangani,A satisficing game theory approach for group evaluation of production units.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#Tchangani06,https://doi.org/10.1016/j.dss.2005.05.010 +Huigang Liang,Web-based intervention support system for health promotion.,2006,42,Decision Support Systems,1,db/journals/dss/dss42.html#LiangXB06,https://doi.org/10.1016/j.dss.2005.02.001 +Bengisu Tulu,Internet-based telemedicine: An empirical investigation of objective and subjective video quality.,2008,45,Decision Support Systems,4,db/journals/dss/dss45.html#TuluC08,https://doi.org/10.1016/j.dss.2007.12.009 +Carol Xiaojuan Ou,Interactive or interruptive? Instant messaging at work.,2011,52,Decision Support Systems,1,db/journals/dss/dss52.html#OuD11,https://doi.org/10.1016/j.dss.2011.05.004 +HyoungDo Kim,An XML-based modeling language for the open interchange of decision models.,2001,31,Decision Support Systems,4,db/journals/dss/dss31.html#Kim01,https://doi.org/10.1016/S0167-9236(01)00093-8 +Andrew B. Whinston,Editorial.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#WhinstonW13,https://doi.org/10.1016/j.dss.2012.12.011 +Jean-Charles Pomerol,Scenario development and practical decision making under uncertainty.,2001,31,Decision Support Systems,2,db/journals/dss/dss31.html#Pomerol01,https://doi.org/10.1016/S0167-9236(00)00131-7 +Te-Wei Wang,Simulating Internet-based collaboration: A cost-benefit case study using a multi-agent model.,2007,43,Decision Support Systems,2,db/journals/dss/dss43.html#WangT07,https://doi.org/10.1016/j.dss.2005.05.020 +Jae Kyu Lee,Judgmental adjustment in time series forecasting using neural networks.,1998,22,Decision Support Systems,2,db/journals/dss/dss22.html#LeeY98,https://doi.org/10.1016/S0167-9236(97)00050-X +Andreas Gregoriades,A socio-technical approach to business process simulation.,2008,45,Decision Support Systems,4,db/journals/dss/dss45.html#GregoriadesS08,https://doi.org/10.1016/j.dss.2008.04.003 +Snehamay Banerjee,Model type selection in an integrated DSS environment.,1993,9,Decision Support Systems,1,db/journals/dss/dss9.html#BanerjeeB93,https://doi.org/10.1016/0167-9236(93)90024-W +Stephen X. Zhang,An evolutionary real options framework for the design and management of projects and systems with complex real options and exercising conditions.,2011,51,Decision Support Systems,1,db/journals/dss/dss51.html#ZhangB11,https://doi.org/10.1016/j.dss.2010.12.001 +Michael M. Richter,AI-Concepts and OR-tools in advanced DSS.,1988,4,Decision Support Systems,4,db/journals/dss/dss4.html#Richter88,https://doi.org/10.1016/0167-9236(88)90007-3 +Yang Chen,Omnichannel business research: Opportunities and challenges.,2018,109,Decision Support Systems,,db/journals/dss/dss109.html#ChenCT18,https://doi.org/10.1016/j.dss.2018.03.007 +Manfred A. Jeusfeld,Distributed decision support and organizational connectivity: A case study.,1997,19,Decision Support Systems,3,db/journals/dss/dss19.html#JeusfeldB97,https://doi.org/10.1016/S0167-9236(96)00057-7 +Upkar Varshney,Mobile health: Four emerging themes of research.,2014,66,Decision Support Systems,,db/journals/dss/dss66.html#Varshney14a,https://doi.org/10.1016/j.dss.2014.06.001 +Yung-Ming Li,Pricing digital content distribution over heterogeneous channels.,2010,50,Decision Support Systems,1,db/journals/dss/dss50.html#Li10,https://doi.org/10.1016/j.dss.2010.08.027 +Xingquan Zhu,CLAP: Collaborative pattern mining for distributed information systems.,2011,52,Decision Support Systems,1,db/journals/dss/dss52.html#ZhuLWHZ11,https://doi.org/10.1016/j.dss.2011.05.002 +Chao Fang,A simulation-based risk network model for decision support in project risk management.,2012,52,Decision Support Systems,3,db/journals/dss/dss52.html#FangM12,https://doi.org/10.1016/j.dss.2011.10.021 +Sérgio Francisco da Silva,Improving the ranking quality of medical image retrieval using a genetic feature selection method.,2011,51,Decision Support Systems,4,db/journals/dss/dss51.html#SilvaRNTT11,https://doi.org/10.1016/j.dss.2011.01.015 +Eric Lefèvre,How to preserve the conflict as an alarm in the combination of belief functions?,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#LefevreE13,https://doi.org/10.1016/j.dss.2013.06.012 +Dongsong Zhang,Social Media Use in Decision Making: Special issue of Decision Support Systems for the 10th Workshop on E-Business.,2014,63,Decision Support Systems,,db/journals/dss/dss63.html#ZhangY14,https://doi.org/10.1016/j.dss.2013.08.007 +Martijn Mes,Design choices for agent-based control of AGVs in the dough making process.,2008,44,Decision Support Systems,4,db/journals/dss/dss44.html#MesHH08,https://doi.org/10.1016/j.dss.2007.11.005 +Shawn D. Bird,Conceptualizing a shared language subsystem for distributed decision support systems.,1997,19,Decision Support Systems,4,db/journals/dss/dss19.html#Bird97,https://doi.org/10.1016/S0167-9236(96)00049-8 +Jianping Peng,Impacts of essential elements of management on IT application maturity - A perspective from firms in China.,2011,51,Decision Support Systems,1,db/journals/dss/dss51.html#PengZCT11,https://doi.org/10.1016/j.dss.2010.11.031 +Z. X. Guo,A multivariate intelligent decision-making model for retail sales forecasting.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#GuoWL13,https://doi.org/10.1016/j.dss.2013.01.026 +Hao Wang,From clicking to consideration: A business intelligence approach to estimating consumers' consideration probabilities.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#WangWC13,https://doi.org/10.1016/j.dss.2012.10.052 +Selwyn Piramuthu,On sensor-based solutions for simultaneous presence of multiple RFID tags.,2017,95,Decision Support Systems,,db/journals/dss/dss95.html#PiramuthuD17,https://doi.org/10.1016/j.dss.2017.01.003 +David Mendonça,Decision support for improvisation in response to extreme events: Learning from the response to the 2001 World Trade Center attack.,2007,43,Decision Support Systems,3,db/journals/dss/dss43.html#Mendonca07,https://doi.org/10.1016/j.dss.2005.05.025 +Daniel E. O'Leary,The relationship between citations and number of downloads in Decision Support Systems.,2008,45,Decision Support Systems,4,db/journals/dss/dss45.html#OLeary08a,https://doi.org/10.1016/j.dss.2008.03.008 +Anol Bhattacherjee,An empirical analysis of the antecedents of electronic commerce service continuance.,2001,32,Decision Support Systems,2,db/journals/dss/dss32.html#Bhattacherjee01,https://doi.org/10.1016/S0167-9236(01)00111-7 +Ming M. Wang,A hypermedia expert system for advanced cardiac life support management.,1994,12,Decision Support Systems,3,db/journals/dss/dss12.html#WangCYVW94,https://doi.org/10.1016/0167-9236(94)90001-9 +Giampiero E. G. Beroggi,A prototype decision support system in hypermedia for operational control of hazardous material shipments.,1994,12,Decision Support Systems,1,db/journals/dss/dss12.html#BeroggiW94,https://doi.org/10.1016/0167-9236(94)90070-1 +F. Strozzi,Beer game order policy optimization under changing customer demand.,2007,42,Decision Support Systems,4,db/journals/dss/dss42.html#StrozziBZ07,https://doi.org/10.1016/j.dss.2006.06.001 +Kyung-shik Shin,A case-based approach using inductive indexing for corporate bond rating.,2001,32,Decision Support Systems,1,db/journals/dss/dss32.html#ShinH01,https://doi.org/10.1016/S0167-9236(01)00099-9 +Cemil Kuzey,The impact of multinationality on firm value: A comparative analysis of machine learning techniques.,2014,59,Decision Support Systems,,db/journals/dss/dss59.html#KuzeyUD14,https://doi.org/10.1016/j.dss.2013.11.001 +Indranil Bose,Assessing anti-phishing preparedness: A study of online banks in Hong Kong.,2008,45,Decision Support Systems,4,db/journals/dss/dss45.html#BoseL08,https://doi.org/10.1016/j.dss.2008.03.001 +Eric K. Clemons,The complex problem of monetizing virtual electronic social networks.,2009,48,Decision Support Systems,1,db/journals/dss/dss48.html#Clemons09,https://doi.org/10.1016/j.dss.2009.05.003 +Chih-Ping Wei,Effective spam filtering: A single-class learning and ensemble approach.,2008,45,Decision Support Systems,3,db/journals/dss/dss45.html#WeiCC08,https://doi.org/10.1016/j.dss.2007.06.010 +Rachael Kwai Fun Ip,Weblogging: A study of social computing and its impact on organizations.,2008,45,Decision Support Systems,2,db/journals/dss/dss45.html#IpW08,https://doi.org/10.1016/j.dss.2007.02.004 +Zhiping D. Walter,Physician acceptance of information technologies: Role of perceived threat to professional autonomy.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#WalterL08,https://doi.org/10.1016/j.dss.2008.06.004 +Jay F. Nunamaker Jr.,Experience at IBM with group support systems: A field study.,1989,5,Decision Support Systems,2,db/journals/dss/dss5.html#NunamakerVHMGM89,https://doi.org/10.1016/0167-9236(89)90006-7 +Jorge Juan Boj,An ANP-multi-criteria-based methodology to link intangible assets and organizational performance in a Balanced Scorecard context.,2014,68,Decision Support Systems,,db/journals/dss/dss68.html#BojRS14,https://doi.org/10.1016/j.dss.2014.10.002 +Borja Ponte,Holism versus reductionism in supply chain management: An economic analysis.,2016,86,Decision Support Systems,,db/journals/dss/dss86.html#PonteCPFP16,https://doi.org/10.1016/j.dss.2016.03.010 +Mieke Defraeye,Controlling excessive waiting * in small service systems with time-varying demand: An extension of the ISA algorithm.,2013,54,Decision Support Systems,4,db/journals/dss/dss54.html#DefraeyeN13,https://doi.org/10.1016/j.dss.2012.05.058 +Chenlian Hu,A bi-objective two-stage robust location model for waste-to-energy facilities under uncertainty.,2017,99,Decision Support Systems,,db/journals/dss/dss99.html#HuLL17,https://doi.org/10.1016/j.dss.2017.05.009 +Balasubramaniam Ramesh,Multimedia in a design rationale decision support system.,1995,15,Decision Support Systems,3,db/journals/dss/dss15.html#RameshS95,https://doi.org/10.1016/0167-9236(94)00060-6 +Jean-Philippe Cordier,Towards a centralised appointments system to optimise the length of patient stay.,2013,55,Decision Support Systems,2,db/journals/dss/dss55.html#CordierR13,https://doi.org/10.1016/j.dss.2012.10.017 +Han G. van Dissel,Task-allocation between DSS and problem owner: The example of box and Jenkins time-series analysis.,1990,6,Decision Support Systems,4,db/journals/dss/dss6.html#DisselBB90,https://doi.org/10.1016/0167-9236(90)90028-P +Yuanfeng Cai,Reputation in an open source software community: Antecedents and impacts.,2016,91,Decision Support Systems,,db/journals/dss/dss91.html#CaiZ16,https://doi.org/10.1016/j.dss.2016.08.004 +Rudolf Vetschera,Integrating databases and preference evaluations in group decision support : A feedback-oriented approach.,1991,7,Decision Support Systems,1,db/journals/dss/dss7.html#Vetschera91,https://doi.org/10.1016/0167-9236(91)90078-P +Clyde W. Holsapple,Knowledge management support of decision making.,2001,31,Decision Support Systems,1,db/journals/dss/dss31.html#Holsapple01,https://doi.org/10.1016/S0167-9236(00)00115-9 +KayLiang Ong,A decision support system for bureaucratic policy administration: An abductive logic programming approach.,1996,16,Decision Support Systems,1,db/journals/dss/dss16.html#OngL96,https://doi.org/10.1016/0167-9236(94)00054-9 +Anshul Kothari,Approximately-strategyproof and tractable multiunit auctions.,2005,39,Decision Support Systems,1,db/journals/dss/dss39.html#KothariPS05,https://doi.org/10.1016/j.dss.2004.08.009 +Andrey Volkov,Incorporating sequential information in bankruptcy prediction with predictors based on Markov for discrimination.,2017,98,Decision Support Systems,,db/journals/dss/dss98.html#VolkovBP17,https://doi.org/10.1016/j.dss.2017.04.008 +Kaushal Chari,A decision support system for partial drug testing: DSS-DT.,1998,23,Decision Support Systems,3,db/journals/dss/dss23.html#ChariBL98,https://doi.org/10.1016/S0167-9236(98)00047-5 +Siddhartha Bhattacharyya,Special issue introduction.,2003,35,Decision Support Systems,2,db/journals/dss/dss35.html#BhattacharyyaK03,https://doi.org/10.1016/S0167-9236(02)00105-7 +Xia Zhao,An economic mechanism for better Internet security.,2008,45,Decision Support Systems,4,db/journals/dss/dss45.html#ZhaoFW08,https://doi.org/10.1016/j.dss.2008.02.006 +HyungSeon Oh,Nonlinear time series analysis on the offer behaviors observed in an electricity market.,2010,49,Decision Support Systems,2,db/journals/dss/dss49.html#OhT10,https://doi.org/10.1016/j.dss.2010.01.008 +Michael Brydon,Economic metaphors for solving intrafirm allocation problems: What does a market buy us?,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#Brydon06,https://doi.org/10.1016/j.dss.2006.02.009 +Samira Abbasgholizadeh Rahimi,A new dynamic integrated framework for surgical patients' prioritization considering risks and uncertainties.,2016,88,Decision Support Systems,,db/journals/dss/dss88.html#RahimiJRA16,https://doi.org/10.1016/j.dss.2016.06.003 +Hing-Yin Mak,Building online crisis management support using workflow systems.,1999,25,Decision Support Systems,3,db/journals/dss/dss25.html#MakMBA99,https://doi.org/10.1016/S0167-9236(99)00007-X +Yong Shi,A computer-aided system for linear production designs.,1994,12,Decision Support Systems,2,db/journals/dss/dss12.html#ShiYZZ94,https://doi.org/10.1016/0167-9236(94)90012-4 +Frank S. C. Tseng,The concept of document warehousing for multi-dimensional modeling of textual-based business intelligence.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#TsengC06,https://doi.org/10.1016/j.dss.2005.02.011 +Rahul C. Basole,Topological analysis and visualization of interfirm collaboration networks in the electronics industry.,2016,83,Decision Support Systems,,db/journals/dss/dss83.html#Basole16,https://doi.org/10.1016/j.dss.2015.12.005 +Won Jun Lee,A meta decision support system approach to coordinating production/marketing decisions.,1999,25,Decision Support Systems,3,db/journals/dss/dss25.html#LeeL99,https://doi.org/10.1016/S0167-9236(99)00009-3 +William G. Chismar,A model of competing interorganizational systems and its application to airline reservation systems.,1992,8,Decision Support Systems,5,db/journals/dss/dss8.html#ChismarM92,https://doi.org/10.1016/0167-9236(92)90028-N +Daniel E. O'Leary,User participation in a corporate prediction market.,2015,78,Decision Support Systems,,db/journals/dss/dss78.html#OLeary15,https://doi.org/10.1016/j.dss.2015.07.004 +Behrouz H. Far,Merging CASE tools with knowledge-based technology for automatic software design.,1996,18,Decision Support Systems,1,db/journals/dss/dss18.html#FarOBYK96,https://doi.org/10.1016/0167-9236(96)00019-X +David Jingjun Xu,Combining empirical experimentation and modeling techniques: A design research approach for personalized mobile advertising applications.,2008,44,Decision Support Systems,3,db/journals/dss/dss44.html#XuLL08,https://doi.org/10.1016/j.dss.2007.10.002 +Chetan S. Sankar,A DSS user interface model to provide consistency and adaptability.,1995,13,Decision Support Systems,1,db/journals/dss/dss13.html#SankarFB95,https://doi.org/10.1016/0167-9236(93)E0033-A +Marko Bohanec,A function-decomposition method for development of hierarchical multi-attribute decision models.,2004,36,Decision Support Systems,3,db/journals/dss/dss36.html#BohanecZ04,https://doi.org/10.1016/S0167-9236(02)00148-3 +Chen-Fu Chien,A container packing support system for determining and visualizing container packing patterns.,2004,37,Decision Support Systems,1,db/journals/dss/dss37.html#ChienD04,https://doi.org/10.1016/S0167-9236(02)00192-6 +Elliot N. Maltz,Decision support for university enrollment management: Implementation and experience.,2007,44,Decision Support Systems,1,db/journals/dss/dss44.html#MaltzMH07,https://doi.org/10.1016/j.dss.2007.03.008 +Bengt G. Lundberg,On the evaluation of heuristic information systems.,1990,6,Decision Support Systems,3,db/journals/dss/dss6.html#Lundberg90,https://doi.org/10.1016/0167-9236(90)90018-M +Dawn G. Gregg,Developing a collective intelligence application for special education.,2009,47,Decision Support Systems,4,db/journals/dss/dss47.html#Gregg09,https://doi.org/10.1016/j.dss.2009.04.012 +Jong Soo Kim,An effective data clustering measure for temporal selection and projection queries.,2000,30,Decision Support Systems,1,db/journals/dss/dss30.html#KimK00,https://doi.org/10.1016/S0167-9236(00)00088-9 +Julie Cowie,Quality of data model for supporting mobile decision making.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#CowieB07,https://doi.org/10.1016/j.dss.2006.09.010 +Shih-Wei Chou,Understanding the formation of software-as-a-service (SaaS) satisfaction from the perspective of service quality.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#ChouC13,https://doi.org/10.1016/j.dss.2013.05.013 +Huimin Zhao,A multi-objective genetic programming approach to developing Pareto optimal decision trees.,2007,43,Decision Support Systems,3,db/journals/dss/dss43.html#Zhao07,https://doi.org/10.1016/j.dss.2006.12.011 +Paulo Cortez 0001,Modeling wine preferences by data mining from physicochemical properties.,2009,47,Decision Support Systems,4,db/journals/dss/dss47.html#CortezCAMR09,https://doi.org/10.1016/j.dss.2009.05.016 +R. E. Hornby,SDP: A strategic DSS.,1994,11,Decision Support Systems,1,db/journals/dss/dss11.html#HornbyGW94,https://doi.org/10.1016/0167-9236(94)90064-7 +Hsinchun Chen,CI Spider: a tool for competitive intelligence on the Web.,2002,34,Decision Support Systems,1,db/journals/dss/dss34.html#ChenCZ02,https://doi.org/10.1016/S0167-9236(02)00002-7 +Matthew S. Gerber,Predicting crime using Twitter and kernel density estimation.,2014,61,Decision Support Systems,,db/journals/dss/dss61.html#Gerber14,https://doi.org/10.1016/j.dss.2014.02.003 +Steven J. Landry,A decision support methodology for dynamic taxiway and runway conflict prevention.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#LandryCN13,https://doi.org/10.1016/j.dss.2013.01.016 +M. Holocher,MIDA: An open systems architecture for model-oriented integration of data and algorithms.,1997,20,Decision Support Systems,2,db/journals/dss/dss20.html#HolocherMSV97,https://doi.org/10.1016/S0167-9236(96)00064-4 +David A. Gaines,An examination of evolved behavior in two reinforcement learning systems.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#GainesP13,https://doi.org/10.1016/j.dss.2013.01.019 +Sabine Matook,Improving the quality of process reference models: A quality function deployment-based approach.,2009,47,Decision Support Systems,1,db/journals/dss/dss47.html#MatookI09,https://doi.org/10.1016/j.dss.2008.12.006 +A. P. Sakis Meliopoulos,Issues for reactive power and voltage control pricing in a deregulated environment.,2001,30,Decision Support Systems,3,db/journals/dss/dss30.html#MeliopoulosCA01,https://doi.org/10.1016/S0167-9236(00)00107-X +Kem Z. K. Zhang,Consumer behavior in social commerce: A literature review.,2016,86,Decision Support Systems,,db/journals/dss/dss86.html#ZhangB16,https://doi.org/10.1016/j.dss.2016.04.001 +Terence M. Barron,A semiotics framework for information systems classification and development.,1999,25,Decision Support Systems,1,db/journals/dss/dss25.html#BarronCS99,https://doi.org/10.1016/S0167-9236(98)00088-8 +Rong Liu,A formal modeling approach for supply chain event management.,2007,43,Decision Support Systems,3,db/journals/dss/dss43.html#LiuKA07,https://doi.org/10.1016/j.dss.2006.12.009 +Marvin D. Troutt,Aggregating multiple expert data for linear case valuation models using the MDE principle.,1997,21,Decision Support Systems,2,db/journals/dss/dss21.html#TrouttRT97,https://doi.org/10.1016/S0167-9236(97)00018-3 +Peter R. Wurman,Flexible double auctions for electronic commerce: theory and implementation.,1998,24,Decision Support Systems,1,db/journals/dss/dss24.html#WurmanWW98,https://doi.org/10.1016/S0167-9236(98)00060-8 +Steffen Zimmermann,Exposing and selling the use of web services - an option to be considered in make-or-buy decision-making.,2016,89,Decision Support Systems,,db/journals/dss/dss89.html#ZimmermannMH16,https://doi.org/10.1016/j.dss.2016.06.006 +Tong-Seng Quah,Towards integrating rule-based expert systems and neural networks.,1996,17,Decision Support Systems,2,db/journals/dss/dss17.html#QuahTRS96,https://doi.org/10.1016/0167-9236(95)00016-X +Michel Benaroch,Controlling the complexity of investment decisions using qualitative reasoning techniques.,1995,15,Decision Support Systems,2,db/journals/dss/dss15.html#BenarochD95,https://doi.org/10.1016/0167-9236(94)00031-M +George Wright,A general purpose computer aid to judgemental forecasting: Rationale and procedures.,1985,1,Decision Support Systems,4,db/journals/dss/dss1.html#WrightAW85,https://doi.org/10.1016/0167-9236(85)90173-3 +Hsin-Min Lu,Detecting short-term cyclical topic dynamics in the user-generated content and news.,2015,70,Decision Support Systems,,db/journals/dss/dss70.html#Lu15,https://doi.org/10.1016/j.dss.2014.11.006 +Jonathan P. Caulkins,A method for managing access to web pages: Filtering by Statistical Classification (FSC) applied to text.,2006,42,Decision Support Systems,1,db/journals/dss/dss42.html#CaulkinsDDKN06,https://doi.org/10.1016/j.dss.2004.11.015 +Rudolf Vetschera,"Comment on ""Logical representation of integer programming models"".",1998,22,Decision Support Systems,4,db/journals/dss/dss22.html#Vetschera98,https://doi.org/10.1016/S0167-9236(97)00057-2 +óscar González-Benito,Retail pricing decisions and product category competitive structure.,2010,49,Decision Support Systems,1,db/journals/dss/dss49.html#Gonzalez-BenitoMM10,https://doi.org/10.1016/j.dss.2010.01.009 +Bonnie Rubenstein-Montano,A systems thinking framework for knowledge management.,2001,31,Decision Support Systems,1,db/journals/dss/dss31.html#Rubenstein-MontanoLBMNR01,https://doi.org/10.1016/S0167-9236(00)00116-0 +Brian L. Dos Santos,A framework for designing adaptive DSS interfaces.,1989,5,Decision Support Systems,1,db/journals/dss/dss5.html#SantosH89,https://doi.org/10.1016/0167-9236(89)90024-9 +Shi-Jie Deng,Exotic electricity options and the valuation of electricity generation and transmission assets.,2001,30,Decision Support Systems,3,db/journals/dss/dss30.html#DengJS01,https://doi.org/10.1016/S0167-9236(00)00112-3 +Bingchiang Jeng,FILM: a fuzzy inductive learning method for automated knowledge acquisition.,1997,21,Decision Support Systems,2,db/journals/dss/dss21.html#JengJL97,https://doi.org/10.1016/S0167-9236(97)00019-5 +Evrim Ursavas,A decision support system for quayside operations in a container terminal.,2014,59,Decision Support Systems,,db/journals/dss/dss59.html#Ursavas14,https://doi.org/10.1016/j.dss.2014.01.003 +Heng Xu,The personalization privacy paradox: An exploratory study of decision making process for location-aware marketing.,2011,51,Decision Support Systems,1,db/journals/dss/dss51.html#XuLCR11,https://doi.org/10.1016/j.dss.2010.11.017 +Benjamin B. M. Shao,Organizing knowledge workforce for specified iterative software development tasks.,2014,59,Decision Support Systems,,db/journals/dss/dss59.html#ShaoYC14,https://doi.org/10.1016/j.dss.2013.10.002 +Yen-Liang Chen,An approach to group ranking decisions in a dynamic environment.,2010,48,Decision Support Systems,4,db/journals/dss/dss48.html#ChenC10,https://doi.org/10.1016/j.dss.2009.12.003 +Sigi Goode,Detecting complex account fraud in the enterprise: The role of technical and non-technical controls.,2011,50,Decision Support Systems,4,db/journals/dss/dss50.html#GoodeL11,https://doi.org/10.1016/j.dss.2010.08.018 +Xue Bai,Predicting consumer sentiments from online text.,2011,50,Decision Support Systems,4,db/journals/dss/dss50.html#Bai11,https://doi.org/10.1016/j.dss.2010.08.024 +Dong Cao,Modifying inconsistent comparison matrix in analytic hierarchy process: A heuristic approach.,2008,44,Decision Support Systems,4,db/journals/dss/dss44.html#CaoLL08,https://doi.org/10.1016/j.dss.2007.11.002 +Carlos Ordonez 0001,Referential integrity quality metrics.,2008,44,Decision Support Systems,2,db/journals/dss/dss44.html#OrdonezG08,https://doi.org/10.1016/j.dss.2007.06.004 +Andrzej Karbowski,A hybrid analytic/rule-based approach to reservoir system management during flood.,2005,38,Decision Support Systems,4,db/journals/dss/dss38.html#KarbowskiMN05,https://doi.org/10.1016/j.dss.2003.10.001 +Dennis D. Fehrenbacher,Information systems and task demand: An exploratory pupillometry study of computerized decision making.,2017,97,Decision Support Systems,,db/journals/dss/dss97.html#FehrenbacherD17,https://doi.org/10.1016/j.dss.2017.02.007 +Suranjan De,Decision support in computer-integrated manufacturing.,1985,1,Decision Support Systems,1,db/journals/dss/dss1.html#DeNW85,https://doi.org/10.1016/0167-9236(85)90196-4 +Shi-Ming Huang,An investigation of Zipf's Law for fraud detection (DSS#06-10-1826R(2)).,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#HuangYYH08,https://doi.org/10.1016/j.dss.2008.05.003 +Fu-ren Lin,Integrating information retrieval and data mining to discover project team coordination patterns.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#LinHC06,https://doi.org/10.1016/j.dss.2005.04.003 +Rudolf Vetschera,Preference structures and negotiator behavior in electronic negotiations.,2007,44,Decision Support Systems,1,db/journals/dss/dss44.html#Vetschera07,https://doi.org/10.1016/j.dss.2007.03.007 +Dursun Delen,A comparative analysis of machine learning systems for measuring the impact of knowledge management practices.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#DelenZKZ13,https://doi.org/10.1016/j.dss.2012.10.040 +Neal G. Shaw,A comprehensive agent-based architecture for intelligent information retrieval in a distributed heterogeneous environment.,2002,32,Decision Support Systems,4,db/journals/dss/dss32.html#ShawMY02,https://doi.org/10.1016/S0167-9236(01)00128-2 +Shen-Tsu Wang,Integrating KPSO and C5.0 to analyze the omnichannel solutions for optimizing telecommunication retail.,2018,109,Decision Support Systems,,db/journals/dss/dss109.html#Wang18,https://doi.org/10.1016/j.dss.2017.12.009 +Giorgio Guariso,An integrated simulation and optimization modelling environment for decision support.,1996,16,Decision Support Systems,2,db/journals/dss/dss16.html#GuarisoHW96,https://doi.org/10.1016/0167-9236(94)00058-1 +Hans-Jochen Schneider,Editorial.,1985,1,Decision Support Systems,1,db/journals/dss/dss1.html#SchneiderW85,https://doi.org/10.1016/0167-9236(85)90193-9 +Hangjung Zo,Security and performance in service-oriented applications: Trading off competing objectives.,2010,50,Decision Support Systems,1,db/journals/dss/dss50.html#ZoNJ10,https://doi.org/10.1016/j.dss.2010.09.002 +Jean-Sébastien Tancrez,Assessing the impact of stochasticity for operating theater sizing.,2013,55,Decision Support Systems,2,db/journals/dss/dss55.html#TancrezRCR13,https://doi.org/10.1016/j.dss.2012.10.021 +William Benjamin Martz Jr.,Electronic meeting systems: Results from the field.,1992,8,Decision Support Systems,2,db/journals/dss/dss8.html#MartzVN92,https://doi.org/10.1016/0167-9236(92)90005-A +A. Bosman,Relations between specific decision support systems.,1987,3,Decision Support Systems,3,db/journals/dss/dss3.html#Bosman87,https://doi.org/10.1016/0167-9236(87)90176-X +Alexander W. Röhm,COPS: a model and infrastructure for secure and fair electronic markets.,2000,29,Decision Support Systems,4,db/journals/dss/dss29.html#RohmP00,https://doi.org/10.1016/S0167-9236(00)00082-8 +Hassan Qudrat-Ullah,Yes we can: Improving performance in dynamic tasks.,2014,61,Decision Support Systems,,db/journals/dss/dss61.html#Qudrat-Ullah14,https://doi.org/10.1016/j.dss.2014.01.009 +Emma Williams,Press accept to update now: Individual differences in susceptibility to malevolent interruptions.,2017,96,Decision Support Systems,,db/journals/dss/dss96.html#WilliamsMJ17,https://doi.org/10.1016/j.dss.2017.02.014 +Timothy R. Huerta,Electronic health record implementation and hospitals' total factor productivity.,2013,55,Decision Support Systems,2,db/journals/dss/dss55.html#HuertaTFF13,https://doi.org/10.1016/j.dss.2012.10.004 +Suresh Sridhar,Decision support using the Intranet.,1998,23,Decision Support Systems,1,db/journals/dss/dss23.html#Sridhar98,https://doi.org/10.1016/S0167-9236(98)00033-5 +Liang-Chih Yu,Independent component analysis for near-synonym choice.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#YuC13,https://doi.org/10.1016/j.dss.2012.12.038 +John H. Heinrichs,Integrating web-based data mining tools with business models for knowledge management.,2003,35,Decision Support Systems,1,db/journals/dss/dss35.html#HeinrichsL03,https://doi.org/10.1016/S0167-9236(02)00098-2 +Van-Hau Trieu,Getting value from Business Intelligence systems: A review and research agenda.,2017,93,Decision Support Systems,,db/journals/dss/dss93.html#Trieu17,https://doi.org/10.1016/j.dss.2016.09.019 +Yuval Lirov,Algorithmic multi-objective heuristics construction in the A * search.,1991,7,Decision Support Systems,2,db/journals/dss/dss7.html#Lirov91,https://doi.org/10.1016/0167-9236(91)90054-F +Andrzej Lewandowski,SCDAS - Decision support system for group decision making: Decision theoretic framework.,1989,5,Decision Support Systems,4,db/journals/dss/dss5.html#Lewandowski89,https://doi.org/10.1016/0167-9236(89)90019-5 +Malgorzata Plaza,A model-based DSS for integrating the impact of learning in project control.,2009,47,Decision Support Systems,4,db/journals/dss/dss47.html#PlazaT09,https://doi.org/10.1016/j.dss.2009.04.010 +Mouna Chebbah,Combining partially independent belief functions.,2015,73,Decision Support Systems,,db/journals/dss/dss73.html#ChebbahMY15,https://doi.org/10.1016/j.dss.2015.02.017 +Bernd Heinrich,Metric-based data quality assessment - Developing and evaluating a probability-based currency metric.,2015,72,Decision Support Systems,,db/journals/dss/dss72.html#HeinrichK15,https://doi.org/10.1016/j.dss.2015.02.009 +Deqiang Han,Sequential weighted combination for unreliable evidence based on evidence variance.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#HanDH13,https://doi.org/10.1016/j.dss.2013.05.004 +Sridhar A. Raghavan,A paradigm for active decision support.,1991,7,Decision Support Systems,4,db/journals/dss/dss7.html#Raghavan91,https://doi.org/10.1016/0167-9236(91)90065-J +Weiling Ke,Organizational culture and leadership in ERP implementation.,2008,45,Decision Support Systems,2,db/journals/dss/dss45.html#KeW08,https://doi.org/10.1016/j.dss.2007.02.002 +Qian Candy Tang,Optimal location and pricing of Web services intermediary.,2005,40,Decision Support Systems,1,db/journals/dss/dss40.html#TangC05,https://doi.org/10.1016/j.dss.2004.04.007 +Nanda Kumar,Do search terms matter for online consumers? The interplay between search engine query specification and topical organization.,2007,44,Decision Support Systems,1,db/journals/dss/dss44.html#KumarL07,https://doi.org/10.1016/j.dss.2007.03.010 +Yan Dang,Knowledge mapping for rapidly evolving domains: A design science approach.,2011,50,Decision Support Systems,2,db/journals/dss/dss50.html#DangZHBC11,https://doi.org/10.1016/j.dss.2010.10.003 +Yannis Siskos,An integrated DSS for financing firms by an industrial development bank in Greece.,1994,12,Decision Support Systems,2,db/journals/dss/dss12.html#SiskosZP94,https://doi.org/10.1016/0167-9236(94)90013-2 +M. Dale Stoel,Online word of mouth: Implications for the name-your-own-price channel.,2016,91,Decision Support Systems,,db/journals/dss/dss91.html#StoelM16,https://doi.org/10.1016/j.dss.2016.07.006 +Shi-Ming Huang,Building the evaluation model of the IT general control for CPAs under enterprise risk management.,2011,50,Decision Support Systems,4,db/journals/dss/dss50.html#HuangHYCJ11,https://doi.org/10.1016/j.dss.2010.08.015 +Prabhudev Konana,The Social-Economic-Psychological model of technology adoption and usage: an application to online investing.,2005,39,Decision Support Systems,3,db/journals/dss/dss39.html#KonanaB05,https://doi.org/10.1016/j.dss.2003.12.003 +Feng-Yang Kuo,An investigation of effort-accuracy trade-off and the impact of self-efficacy on Web searching behaviors.,2004,37,Decision Support Systems,3,db/journals/dss/dss37.html#KuoCHH04,https://doi.org/10.1016/S0167-9236(03)00032-0 +Wil M. P. van der Aalst,Conceptual model for online auditing.,2011,50,Decision Support Systems,3,db/journals/dss/dss50.html#AalstHWKV11,https://doi.org/10.1016/j.dss.2010.08.014 +Xinwei Zhu,Enabling flexible location-aware business process modeling and execution.,2016,83,Decision Support Systems,,db/journals/dss/dss83.html#ZhuBZVB16,https://doi.org/10.1016/j.dss.2015.12.003 +Yaojin Lin,Mining stable patterns in multiple correlated databases.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#LinHLW13,https://doi.org/10.1016/j.dss.2013.06.003 +San-Yih Hwang,Reliable Web service selection in choreographed environments.,2013,54,Decision Support Systems,3,db/journals/dss/dss54.html#HwangL13,https://doi.org/10.1016/j.dss.2012.12.017 +Leiser Silva,Resistance and power in a security certification scheme: The case of c: cure.,2016,92,Decision Support Systems,,db/journals/dss/dss92.html#SilvaHBM16,https://doi.org/10.1016/j.dss.2016.09.014 +Kun Chang Lee,Decision support systems special issue on PACIS 2006.,2008,45,Decision Support Systems,3,db/journals/dss/dss45.html#LeeY08,https://doi.org/10.1016/j.dss.2007.06.006 +Asil Oztekin,Development of a structural equation modeling-based decision tree methodology for the analysis of lung transplantations.,2011,51,Decision Support Systems,1,db/journals/dss/dss51.html#OztekinKD11,https://doi.org/10.1016/j.dss.2010.12.004 +Donald E. Brown,Data association methods with applications to law enforcement.,2003,34,Decision Support Systems,4,db/journals/dss/dss34.html#BrownH03,https://doi.org/10.1016/S0167-9236(02)00064-7 +Bongsug (Kevin) Chae,A complexity theory approach to IT-enabled services (IESs) and service innovation: Business analytics as an illustration of IES.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#Chae14,https://doi.org/10.1016/j.dss.2013.07.005 +Jeroen Colin,A multivariate approach for top-down project control using earned value management.,2015,79,Decision Support Systems,,db/journals/dss/dss79.html#ColinMVW15,https://doi.org/10.1016/j.dss.2015.08.002 +Raquel Benbunan-Fich,A comparative content analysis of face-to-face vs. asynchronous group decision making.,2003,34,Decision Support Systems,4,db/journals/dss/dss34.html#Benbunan-FichHT03,https://doi.org/10.1016/S0167-9236(02)00072-6 +Milton Shen,Emergency management information systems: Could decision makers be supported in choosing display formats?,2012,52,Decision Support Systems,2,db/journals/dss/dss52.html#ShenCSB12,https://doi.org/10.1016/j.dss.2011.08.008 +Kaiquan Xu,Mining comparative opinions from customer reviews for Competitive Intelligence.,2011,50,Decision Support Systems,4,db/journals/dss/dss50.html#XuLLS11,https://doi.org/10.1016/j.dss.2010.08.021 +Zhangxi Lin,Reputation distribution and consumer-to-consumer online auction market structure: an exploratory study.,2006,41,Decision Support Systems,2,db/journals/dss/dss41.html#LinLJH06,https://doi.org/10.1016/j.dss.2004.07.006 +Paolo Roma,The role of the distribution platform in price formation of paid apps.,2016,91,Decision Support Systems,,db/journals/dss/dss91.html#RomaZP16,https://doi.org/10.1016/j.dss.2016.07.004 +Kaile Su,A logical framework for identifying quality knowledge from different data sources.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#SuHWZ06,https://doi.org/10.1016/j.dss.2006.02.012 +Kathleen M. Carley,Toward an interoperable dynamic network analysis toolkit.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#CarleyDRT07,https://doi.org/10.1016/j.dss.2006.04.003 +Bay Arinze,A knowledge based decision support system for computer performance management.,1992,8,Decision Support Systems,6,db/journals/dss/dss8.html#ArinzeIY92,https://doi.org/10.1016/0167-9236(92)90043-O +Ai-Mei Chang,Model management issues and directions.,1993,9,Decision Support Systems,1,db/journals/dss/dss9.html#ChangHW93,https://doi.org/10.1016/0167-9236(93)90020-4 +R. J. Kuo,Part family formation through fuzzy ART2 neural network.,2006,42,Decision Support Systems,1,db/journals/dss/dss42.html#KuoSCCT06,https://doi.org/10.1016/j.dss.2004.10.012 +Merrill Warkentin,Continuance of protective security behavior: A longitudinal study.,2016,92,Decision Support Systems,,db/journals/dss/dss92.html#WarkentinJSB16,https://doi.org/10.1016/j.dss.2016.09.013 +Nathan C. Perry,Can reduced processing decision support interfaces improve the decision-making of less-experienced incident commanders?,2012,52,Decision Support Systems,2,db/journals/dss/dss52.html#PerryWCF12,https://doi.org/10.1016/j.dss.2011.10.010 +Runyu Chen,Secondhand seller reputation in online markets: A text analytics framework.,2018,108,Decision Support Systems,,db/journals/dss/dss108.html#ChenZXLW18,https://doi.org/10.1016/j.dss.2018.02.008 +Edward M. Condon,A visualization model based on adjacency data.,2002,33,Decision Support Systems,4,db/journals/dss/dss33.html#CondonGLRW02,https://doi.org/10.1016/S0167-9236(02)00003-9 +James V. Hansen,Developing knowledge structures: A comparison of a qualitative-response model and two machine-learning algorithms.,1993,10,Decision Support Systems,2,db/journals/dss/dss10.html#HansenKMM93,https://doi.org/10.1016/0167-9236(93)90040-A +Michael Goul,Enterprise model management and next generation decision support.,2007,43,Decision Support Systems,3,db/journals/dss/dss43.html#GoulC07,https://doi.org/10.1016/j.dss.2005.05.023 +S. Swamynathan,Composite event monitoring in XML repositories using generic rule framework for providing reactive e-services.,2006,42,Decision Support Systems,1,db/journals/dss/dss42.html#SwamynathanKG06,https://doi.org/10.1016/j.dss.2004.10.001 +Ming Zhou,Online reputation systems: Design and strategic practices.,2008,44,Decision Support Systems,4,db/journals/dss/dss44.html#ZhouDW08,https://doi.org/10.1016/j.dss.2007.10.001 +Nirup M. Menon,Cost control and production performance enhancement by IT investment and regulation changes: evidence from the healthcare industry.,2000,30,Decision Support Systems,2,db/journals/dss/dss30.html#MenonL00,https://doi.org/10.1016/S0167-9236(00)00095-6 +Fergus Bolger,Assessing the quality of expert judgment: Issues and analysis.,1994,11,Decision Support Systems,1,db/journals/dss/dss11.html#BolgerW94,https://doi.org/10.1016/0167-9236(94)90061-2 +Duen-Ren Liu,Discovering role-based virtual knowledge flows for organizational knowledge support.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#LiuLC13,https://doi.org/10.1016/j.dss.2012.11.018 +Gregg Elofson,Performing organizational learning with machine apprentices.,1993,10,Decision Support Systems,2,db/journals/dss/dss10.html#ElofsonK93,https://doi.org/10.1016/0167-9236(93)90033-Y +Iris A. Junglas,Mobile technology at the frontlines of patient care: Understanding fit and human drives in utilization decisions and performance.,2009,46,Decision Support Systems,3,db/journals/dss/dss46.html#JunglasAI09,https://doi.org/10.1016/j.dss.2008.11.012 +Oliver Günther,Implementation of heuristic search in an expert database system.,1991,7,Decision Support Systems,3,db/journals/dss/dss7.html#Gunther91,https://doi.org/10.1016/0167-9236(91)90040-I +De Liu,Designing online auctions with past performance information.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#LiuC06,https://doi.org/10.1016/j.dss.2005.10.012 +Madan G. Singh,A new class of intelligent knowledge-based systems with an optimisation-based inference engine.,1985,1,Decision Support Systems,4,db/journals/dss/dss1.html#SinghC85,https://doi.org/10.1016/0167-9236(85)90170-8 +Javier Andrade Garda,Formal conceptualisation as a basis for a more procedural knowledge management.,2008,45,Decision Support Systems,1,db/journals/dss/dss45.html#GardaCGPYS08,https://doi.org/10.1016/j.dss.2007.12.015 +Christy M. K. Cheung,What drives consumers to spread electronic word of mouth in online consumer-opinion platforms.,2012,53,Decision Support Systems,1,db/journals/dss/dss53.html#CheungL12,https://doi.org/10.1016/j.dss.2012.01.015 +Halasya Siva Subramania,Pattern classification driven enhancements for human-in-the-loop decision support systems.,2011,50,Decision Support Systems,2,db/journals/dss/dss50.html#SubramaniaK11,https://doi.org/10.1016/j.dss.2010.11.003 +HyungSeon Oh,A method for identifying market power.,2013,54,Decision Support Systems,3,db/journals/dss/dss54.html#OhT13,https://doi.org/10.1016/j.dss.2012.12.007 +Hsing Kenneth Cheng,Pricing and capacity decisions of clustered twin-computer systems subject to breakdowns.,1999,25,Decision Support Systems,1,db/journals/dss/dss25.html#Cheng99,https://doi.org/10.1016/S0167-9236(98)00089-X +Mayuram S. Krishnan,An empirical analysis of customer satisfaction for Intranet marketing systems.,1998,24,Decision Support Systems,1,db/journals/dss/dss24.html#KrishnanR98,https://doi.org/10.1016/S0167-9236(98)00062-1 +Xin Li,The technology and economic determinants of cryptocurrency exchange rates: The case of Bitcoin.,2017,95,Decision Support Systems,,db/journals/dss/dss95.html#LiW17,https://doi.org/10.1016/j.dss.2016.12.001 +Chen-Ya Wang,Using peer-to-peer technology for knowledge sharing in communities of practices.,2008,45,Decision Support Systems,3,db/journals/dss/dss45.html#WangYC08,https://doi.org/10.1016/j.dss.2007.06.012 +San-Yih Hwang,On the discovery of process models from their instances.,2002,34,Decision Support Systems,1,db/journals/dss/dss34.html#HwangY02,https://doi.org/10.1016/S0167-9236(02)00008-8 +Xiangpei Hu,A PAM approach to handling disruptions in real-time vehicle routing problems.,2013,54,Decision Support Systems,3,db/journals/dss/dss54.html#HuSL13,https://doi.org/10.1016/j.dss.2012.12.014 +Yi Cai,Object typicality for effective Web of Things recommendations.,2014,63,Decision Support Systems,,db/journals/dss/dss63.html#CaiLLLLM14,https://doi.org/10.1016/j.dss.2013.09.008 +Seonyoung Shim,Sustainable competitive advantage of a system goods innovator in a market with network effects and entry threats.,2012,52,Decision Support Systems,2,db/journals/dss/dss52.html#ShimL12,https://doi.org/10.1016/j.dss.2011.08.007 +Michael V. Mannino,Efficiency evaluation of data warehouse operations.,2008,44,Decision Support Systems,4,db/journals/dss/dss44.html#ManninoHC08,https://doi.org/10.1016/j.dss.2007.10.011 +Salem Chakhar,Dominance-based rough set approach for groups in multicriteria classification problems.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#ChakharS12,https://doi.org/10.1016/j.dss.2012.05.050 +Lida Xu,A decision support system for product design in concurrent engineering.,2007,42,Decision Support Systems,4,db/journals/dss/dss42.html#XuLLT07,https://doi.org/10.1016/j.dss.2004.11.007 +M. Carmen Carnero,Selection of diagnostic techniques and instrumentation in a predictive maintenance program. A case study.,2005,38,Decision Support Systems,4,db/journals/dss/dss38.html#Carnero05,https://doi.org/10.1016/j.dss.2003.09.003 +Knut Hinkelmann,Context-sensitive office tasks a generative approach.,1992,8,Decision Support Systems,3,db/journals/dss/dss8.html#HinkelmannK92,https://doi.org/10.1016/0167-9236(92)90018-K +Gang Peng,Impact of network effects and diffusion channels on home computer adoption.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#PengFD11,https://doi.org/10.1016/j.dss.2011.01.004 +Michael J. Denton,Market power in a deregulated electrical industry.,2001,30,Decision Support Systems,3,db/journals/dss/dss30.html#DentonRSB01,https://doi.org/10.1016/S0167-9236(00)00111-1 +Fang Fang,An analysis of consumer training for feature rich products.,2011,52,Decision Support Systems,1,db/journals/dss/dss52.html#FangX11,https://doi.org/10.1016/j.dss.2011.07.001 +J. Randall Brown,Solving linear design problems using a linear-fractional value function.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#BrownI13,https://doi.org/10.1016/j.dss.2012.12.037 +Ergin Erdem,Rescheduling of elective patients upon the arrival of emergency patients.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#ErdemQS12,https://doi.org/10.1016/j.dss.2012.08.002 +Weiguo Fan,An integrated two-stage model for intelligent information routing.,2006,42,Decision Support Systems,1,db/journals/dss/dss42.html#FanGP06,https://doi.org/10.1016/j.dss.2005.01.007 +Arun Vishwanath,Getting phished on social media.,2017,103,Decision Support Systems,,db/journals/dss/dss103.html#Vishwanath17,https://doi.org/10.1016/j.dss.2017.09.004 +Patrick Y. K. Chau,Examining the effects of malfunctioning personalized services on online users' distrust and behaviors.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#ChauHHY13,https://doi.org/10.1016/j.dss.2013.05.023 +Michael Bruhn Barfod,Composite decision support by combining cost-benefit and multi-criteria decision analysis.,2011,51,Decision Support Systems,1,db/journals/dss/dss51.html#BarfodSL11,https://doi.org/10.1016/j.dss.2010.12.005 +S. Gaglio,Some problems on uncertain knowledge acquisition for rule based systems.,1988,4,Decision Support Systems,3,db/journals/dss/dss4.html#GaglioPPP88,https://doi.org/10.1016/0167-9236(88)90018-8 +Ling-Jing Kao,A hybrid approach by integrating wavelet-based feature extraction with MARS and SVR for stock index forecasting.,2013,54,Decision Support Systems,3,db/journals/dss/dss54.html#KaoCLC13,https://doi.org/10.1016/j.dss.2012.11.012 +Juan Manuel Pérez-Martínez,Contextualizing data warehouses with documents.,2008,45,Decision Support Systems,1,db/journals/dss/dss45.html#Perez-MartinezLCP08,https://doi.org/10.1016/j.dss.2006.12.005 +Filip Caron,Comprehensive rule-based compliance checking and risk management with process mining.,2013,54,Decision Support Systems,3,db/journals/dss/dss54.html#CaronVB13,https://doi.org/10.1016/j.dss.2012.12.012 +Neli P. Zlatareva,Verification of non-monotonic knowledge bases.,1997,21,Decision Support Systems,4,db/journals/dss/dss21.html#Zlatareva97,https://doi.org/10.1016/S0167-9236(97)00044-4 +Alan R. Dennis,"Information foraging on the web: The effects of ""acceptable"" Internet delays on multi-page information search behavior.",2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#DennisT06,https://doi.org/10.1016/j.dss.2005.05.032 +Sulin Ba,Using client-broker-server architecture for Intranet decision support.,1997,19,Decision Support Systems,3,db/journals/dss/dss19.html#BaKW97,https://doi.org/10.1016/S0167-9236(96)00055-3 +Chunhui Liu,The impact of XBRL adoption in PR China.,2014,59,Decision Support Systems,,db/journals/dss/dss59.html#LiuLSOT14,https://doi.org/10.1016/j.dss.2013.12.003 +Salvatore T. March,Design and natural science research on information technology.,1995,15,Decision Support Systems,4,db/journals/dss/dss15.html#MarchS95,https://doi.org/10.1016/0167-9236(94)00041-2 +Peijian Song,Brand extension of online technology products: Evidence from search engine to virtual communities and online news.,2010,49,Decision Support Systems,1,db/journals/dss/dss49.html#SongZXH10,https://doi.org/10.1016/j.dss.2010.01.005 +Robert W. Blanning,An entity-relationship approach to model management.,1986,2,Decision Support Systems,1,db/journals/dss/dss2.html#Blanning86,https://doi.org/10.1016/0167-9236(86)90122-3 +Yilu Zhou,CMedPort: An integrated approach to facilitating Chinese medical information seeking.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#ZhouQC06,https://doi.org/10.1016/j.dss.2005.11.006 +Jianan Wu,Review popularity and review helpfulness: A model for user review effectiveness.,2017,97,Decision Support Systems,,db/journals/dss/dss97.html#Wu17,https://doi.org/10.1016/j.dss.2017.03.008 +Heinz K. Klein,Fundamental issues of decision support systems: A consequentialist perspective.,1985,1,Decision Support Systems,1,db/journals/dss/dss1.html#KleinH85,https://doi.org/10.1016/0167-9236(85)90194-0 +Chia-Hui Chang,Automatic information extraction from semi-structured Web pages by pattern discovery.,2003,35,Decision Support Systems,1,db/journals/dss/dss35.html#ChangHL03,https://doi.org/10.1016/S0167-9236(02)00100-8 +Omar F. El-Gayar,An XML-based schema definition for model sharing and reuse in a distributed environment.,2007,43,Decision Support Systems,3,db/journals/dss/dss43.html#El-GayarT07,https://doi.org/10.1016/j.dss.2006.12.010 +Qing Cao,"Exploring determinants of voting for the ""helpfulness"" of online user reviews: A text mining approach.",2011,50,Decision Support Systems,2,db/journals/dss/dss50.html#CaoDG11,https://doi.org/10.1016/j.dss.2010.11.009 +Robert P. Schumaker,Predicting wins and spread in the Premier League using a sentiment analysis of twitter.,2016,88,Decision Support Systems,,db/journals/dss/dss88.html#SchumakerJL16,https://doi.org/10.1016/j.dss.2016.05.010 +T. C. Wong,A two-stage analysis of the influences of employee alignment on effecting business-IT alignment.,2012,53,Decision Support Systems,3,db/journals/dss/dss53.html#WongNCC12,https://doi.org/10.1016/j.dss.2012.03.008 +Julian J. Ray,A web-based spatial decision support system optimizes routes for oversize/overweight vehicles in Delaware.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#Ray07,https://doi.org/10.1016/j.dss.2005.07.007 +Dianne Hall,Engaging multiple perspectives: A value-based decision-making model.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#HallD07,https://doi.org/10.1016/j.dss.2006.03.004 +Sven S. Groth,How to enable automated trading engines to cope with news-related liquidity shocks? Extracting signals from unstructured data.,2014,62,Decision Support Systems,,db/journals/dss/dss62.html#GrothSG14,https://doi.org/10.1016/j.dss.2014.03.002 +Leslie L. Miller,The design and implementation of a data extraction scheme to facilitate model-database communication.,1993,9,Decision Support Systems,2,db/journals/dss/dss9.html#MillerN93,https://doi.org/10.1016/0167-9236(93)90012-R +Kun Chang Lee,An intelligent approach to time series identification by a neural network-driven decision tree classifier.,1996,17,Decision Support Systems,3,db/journals/dss/dss17.html#LeeO96,https://doi.org/10.1016/0167-9236(95)00031-3 +Alan Burns,A distributed decision-making system.,1987,3,Decision Support Systems,2,db/journals/dss/dss3.html#BurnsRT87,https://doi.org/10.1016/0167-9236(87)90071-6 +Jie Zhang,Dynamic dual adjustment of daily budgets and bids in sponsored search auctions.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#ZhangYLQZ14,https://doi.org/10.1016/j.dss.2013.08.004 +Jorge E. Mendoza,An evolutionary-based decision support system for vehicle routing: The case of a public utility.,2009,46,Decision Support Systems,3,db/journals/dss/dss46.html#MendozaMV09,https://doi.org/10.1016/j.dss.2008.11.019 +Philip L. Powell,Gender and DSS design: the research implications.,1995,14,Decision Support Systems,1,db/journals/dss/dss14.html#PowellJ95,https://doi.org/10.1016/0167-9236(94)00014-J +Young U. Ryu,A logic-based modeling of resource consumption and production.,1998,22,Decision Support Systems,3,db/journals/dss/dss22.html#Ryu98a,https://doi.org/10.1016/S0167-9236(97)00061-4 +Fan Wang,A multi-objective optimization for green supply chain network design.,2011,51,Decision Support Systems,2,db/journals/dss/dss51.html#WangLS11,https://doi.org/10.1016/j.dss.2010.11.020 +Bengt G. Lundberg,On actions due to lack of information.,1986,2,Decision Support Systems,2,db/journals/dss/dss2.html#Lundberg86,https://doi.org/10.1016/0167-9236(86)90094-1 +Pantea Alirezazadeh,Identity matching and information acquisition: Estimation of optimal threshold parameters.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#AlirezazadehBGGG14,https://doi.org/10.1016/j.dss.2013.08.014 +Chuleeporn Changchit,Supporting managers' internal control evaluations: an expert system and experimental results.,2001,30,Decision Support Systems,4,db/journals/dss/dss30.html#ChangchitHM01,https://doi.org/10.1016/S0167-9236(00)00127-5 +Hsinchun Chen,"Special issue: ""Web retrieval and mining"".",2003,35,Decision Support Systems,1,db/journals/dss/dss35.html#Chen03,https://doi.org/10.1016/S0167-9236(02)00104-5 +Jason D. Papastavrou,Analytic procedures for optimizing engineering task integration topologies.,1996,17,Decision Support Systems,3,db/journals/dss/dss17.html#PapastavrouN96,https://doi.org/10.1016/0167-9236(95)00028-3 +Robert W. Blanning,Model management systems : An overview.,1993,9,Decision Support Systems,1,db/journals/dss/dss9.html#Blanning93,https://doi.org/10.1016/0167-9236(93)90019-Y +Chih-Ping Wei,A Latent Semantic Indexing-based approach to multilingual document clustering.,2008,45,Decision Support Systems,3,db/journals/dss/dss45.html#WeiYL08,https://doi.org/10.1016/j.dss.2007.07.008 +Anne-Sophie Hoffait,Early detection of university students with potential difficulties.,2017,101,Decision Support Systems,,db/journals/dss/dss101.html#HoffaitS17,https://doi.org/10.1016/j.dss.2017.05.003 +Mercedes Ruiz,Using simulation-based optimization in the context of IT service management change process.,2018,112,Decision Support Systems,,db/journals/dss/dss112.html#RuizMDR18,https://doi.org/10.1016/j.dss.2018.06.004 +Samuel W. K. Chan,A text-based decision support system for financial sequence prediction.,2011,52,Decision Support Systems,1,db/journals/dss/dss52.html#ChanF11,https://doi.org/10.1016/j.dss.2011.07.003 +Chetan Kumar,A new approach for a proxy-level web caching mechanism.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#KumarN08,https://doi.org/10.1016/j.dss.2008.05.001 +Shan Jiang,Analyzing firm-specific social media and market: A stakeholder-based event analysis framework.,2014,67,Decision Support Systems,,db/journals/dss/dss67.html#JiangCNZ14,https://doi.org/10.1016/j.dss.2014.08.001 +Andrea L. Houston,Exploring the use of concept spaces to improve medical information retrieval.,2000,30,Decision Support Systems,2,db/journals/dss/dss30.html#HoustonCSHSN00,https://doi.org/10.1016/S0167-9236(00)00097-X +Edward Hartono,Factors that contribute to management support system success: An analysis of field studies.,2007,43,Decision Support Systems,1,db/journals/dss/dss43.html#HartonoSH07,https://doi.org/10.1016/j.dss.2006.09.012 +Timothy Mount,Market power and price volatility in restructured markets for electricity.,2001,30,Decision Support Systems,3,db/journals/dss/dss30.html#Mount01,https://doi.org/10.1016/S0167-9236(00)00108-1 +Saeed Piri,A synthetic informative minority over-sampling (SIMO) algorithm leveraging support vector machine to enhance learning from imbalanced datasets.,2018,106,Decision Support Systems,,db/journals/dss/dss106.html#PiriDL18,https://doi.org/10.1016/j.dss.2017.11.006 +Georgios Askalidis,Understanding and overcoming biases in online review systems.,2017,97,Decision Support Systems,,db/journals/dss/dss97.html#AskalidisKM17,https://doi.org/10.1016/j.dss.2017.03.002 +Ningning Wu,Factor-analysis based anomaly detection and clustering.,2006,42,Decision Support Systems,1,db/journals/dss/dss42.html#WuZ06,https://doi.org/10.1016/j.dss.2005.01.005 +Jia Hao,Knowledge map-based method for domain knowledge browsing.,2014,61,Decision Support Systems,,db/journals/dss/dss61.html#HaoYGWL14,https://doi.org/10.1016/j.dss.2014.02.001 +Jun Li,Optimal keyword auctions for optimal user experiences.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#LiLL13,https://doi.org/10.1016/j.dss.2012.11.002 +Benjamin P.-C. Yen,The design and evaluation of accessibility on web navigation.,2007,42,Decision Support Systems,4,db/journals/dss/dss42.html#Yen07,https://doi.org/10.1016/j.dss.2006.07.002 +Ray M. Chang,Understanding the paradigm shift to computational social science in the presence of big data.,2014,63,Decision Support Systems,,db/journals/dss/dss63.html#ChangKK14,https://doi.org/10.1016/j.dss.2013.08.008 +Kamalendu Pal,A decision-support system for business acquisitions.,2000,27,Decision Support Systems,4,db/journals/dss/dss27.html#PalP00,https://doi.org/10.1016/S0167-9236(99)00083-4 +Dara G. Schniederjans,Enhancing financial performance with social media: An impression management perspective.,2013,55,Decision Support Systems,4,db/journals/dss/dss55.html#SchniederjansCS13,https://doi.org/10.1016/j.dss.2012.12.027 +Barrie R. Nault,Agent-intermediated electronic markets in international freight transportation.,2006,41,Decision Support Systems,4,db/journals/dss/dss41.html#NaultD06,https://doi.org/10.1016/j.dss.2004.10.008 +Wee-Kek Tan,Consumer-based decision aid that explains which to buy: Decision confirmation or overconfidence bias?,2012,53,Decision Support Systems,1,db/journals/dss/dss53.html#TanTT12,https://doi.org/10.1016/j.dss.2011.12.010 +Pekka Mild,Selecting infrastructure maintenance projects with Robust Portfolio Modeling.,2015,77,Decision Support Systems,,db/journals/dss/dss77.html#MildLS15,https://doi.org/10.1016/j.dss.2015.05.001 +Feng-Yang Kuo,An exploratory study of cognitive effort involved in decision under Framing - an application of the eye-tracking technology.,2009,48,Decision Support Systems,1,db/journals/dss/dss48.html#KuoHD09,https://doi.org/10.1016/j.dss.2009.06.011 +Hemant K. Bhargava,Editor's introduction to the special issue on logic modeling.,1994,11,Decision Support Systems,2,db/journals/dss/dss11.html#BhargavaK94,https://doi.org/10.1016/0167-9236(94)90027-2 +Matej David,A generic ballast water discharge assessment model as a decision supporting tool in ballast water management.,2012,53,Decision Support Systems,1,db/journals/dss/dss53.html#DavidPSG12,https://doi.org/10.1016/j.dss.2012.01.002 +Petr Hájek 0002,Municipal credit rating modelling by neural networks.,2011,51,Decision Support Systems,1,db/journals/dss/dss51.html#Hajek11,https://doi.org/10.1016/j.dss.2010.11.033 +Juyoung Kang 0001,Rule identification from Web pages by the XRML approach.,2005,41,Decision Support Systems,1,db/journals/dss/dss41.html#KangL05,https://doi.org/10.1016/j.dss.2005.01.004 +R. J. Kuo,Integration of ART2 neural network and genetic K-means algorithm for analyzing Web browsing paths in electronic commerce.,2005,40,Decision Support Systems,2,db/journals/dss/dss40.html#KuoLT05,https://doi.org/10.1016/j.dss.2004.04.010 +James A. McCart,Goal attainment on long tail web sites: An information foraging approach.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#McCartPB13,https://doi.org/10.1016/j.dss.2013.01.025 +Marianna Tracey,Interactive graphical computer application for large-scale cattle feed distribution management.,1997,19,Decision Support Systems,1,db/journals/dss/dss19.html#TraceyD97,https://doi.org/10.1016/S0167-9236(96)00046-2 +Jia-Lang Seng,Requirements-driven database systems benchmark method.,2005,38,Decision Support Systems,4,db/journals/dss/dss38.html#SengYH05,https://doi.org/10.1016/j.dss.2003.06.002 +Clyde W. Holsapple,Adapting demons to knowledge management environments.,1987,3,Decision Support Systems,4,db/journals/dss/dss3.html#Holsapple87,https://doi.org/10.1016/0167-9236(87)90100-X +Sara Casolari,Short-term prediction models for server management in Internet-based contexts.,2009,48,Decision Support Systems,1,db/journals/dss/dss48.html#CasolariC09,https://doi.org/10.1016/j.dss.2009.07.014 +Shankar Sundaresan,Parallel teams for knowledge creation: Role of collaboration and incentives.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#SundaresanZ12,https://doi.org/10.1016/j.dss.2012.04.008 +Yuefeng Li,A two-stage decision model for information filtering.,2012,52,Decision Support Systems,3,db/journals/dss/dss52.html#LiZBXL12,https://doi.org/10.1016/j.dss.2011.11.005 +Paul Gray,Group decision support systems.,1987,3,Decision Support Systems,3,db/journals/dss/dss3.html#Gray87,https://doi.org/10.1016/0167-9236(87)90178-3 +Mike P. Papazoglou,Business to business electronic commerce issues and solutions.,2000,29,Decision Support Systems,4,db/journals/dss/dss29.html#PapazoglouT00,https://doi.org/10.1016/S0167-9236(00)00079-8 +Juan Trujillo,New Trends in Data Warehousing and OLAP.,2008,45,Decision Support Systems,1,db/journals/dss/dss45.html#TrujilloS08,https://doi.org/10.1016/j.dss.2006.12.006 +John Y. Sayah,On-demand business collaboration enablement with web services.,2005,40,Decision Support Systems,1,db/journals/dss/dss40.html#SayahZ05,https://doi.org/10.1016/j.dss.2004.04.011 +Yipeng Liu,Optimal software pricing in the presence of piracy and word-of-mouth effect.,2011,51,Decision Support Systems,1,db/journals/dss/dss51.html#LiuCTE11,https://doi.org/10.1016/j.dss.2010.11.032 +Rolf Bühner,Reflections on the architecture of a decision support system for personnel assignment scheduling in production cell technology.,1988,4,Decision Support Systems,4,db/journals/dss/dss4.html#BuhnerK88,https://doi.org/10.1016/0167-9236(88)90010-3 +Gregory Dobson,Optimizing the timing and number of batches for compounded sterile products in an in-hospital pharmacy.,2015,76,Decision Support Systems,,db/journals/dss/dss76.html#DobsonTT15,https://doi.org/10.1016/j.dss.2015.02.013 +Ixchel M. Faniel,Innovating by accessing knowledge across departments.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#FanielM07,https://doi.org/10.1016/j.dss.2006.09.005 +Peter J. van Baalen,Instantiating global crisis networks: The case of SARS.,2009,47,Decision Support Systems,4,db/journals/dss/dss47.html#BaalenF09,https://doi.org/10.1016/j.dss.2009.05.005 +Haimonti Dutta,A system for intergroup prejudice detection: The case of microblogging under terrorist attacks.,2018,113,Decision Support Systems,,db/journals/dss/dss113.html#DuttaKR18,https://doi.org/10.1016/j.dss.2018.06.003 +Ying-Hsun Hung,Knowledge management adoption and assessment for SMEs by a novel MCDM approach.,2011,51,Decision Support Systems,2,db/journals/dss/dss51.html#HungCT11,https://doi.org/10.1016/j.dss.2010.11.021 +Shih-Fen Cheng,Walverine: a Walrasian trading agent.,2005,39,Decision Support Systems,2,db/journals/dss/dss39.html#ChengLLORSW05,https://doi.org/10.1016/j.dss.2003.10.005 +Siaw Ling Lo,Ranking of high-value social audiences on Twitter.,2016,85,Decision Support Systems,,db/journals/dss/dss85.html#LoCC16,https://doi.org/10.1016/j.dss.2016.02.010 +Lauri Puro,Borrower Decision Aid for people-to-people lending.,2010,49,Decision Support Systems,1,db/journals/dss/dss49.html#PuroTWW10,https://doi.org/10.1016/j.dss.2009.12.009 +Jai Asundi,Competitive implications of software open-sourcing.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#AsundiCD12,https://doi.org/10.1016/j.dss.2012.05.001 +Julika Siemer,A comprehensive method for the evaluation of complete intelligent tutoring systems.,1998,22,Decision Support Systems,1,db/journals/dss/dss22.html#SiemerA98,https://doi.org/10.1016/S0167-9236(97)00033-X +Albert Douma,Design and evaluation of a simulation game to introduce a Multi-Agent system for barge handling in a seaport.,2012,53,Decision Support Systems,3,db/journals/dss/dss53.html#DoumaHS12,https://doi.org/10.1016/j.dss.2012.02.013 +Hugh J. Watson,Development practices for executive information systems: findings of a field study.,1995,14,Decision Support Systems,2,db/journals/dss/dss14.html#WatsonWSH95,https://doi.org/10.1016/0167-9236(94)00010-P +Ned Kock,Communication flow orientation in business process modeling and its effect on redesign success: Results from a field study.,2009,46,Decision Support Systems,2,db/journals/dss/dss46.html#KockVDD09,https://doi.org/10.1016/j.dss.2008.10.002 +Ravi Mantena,Literature survey: Mathematical models in the analysis of durable goods with emphasis on information systems and operations management issues.,2012,53,Decision Support Systems,2,db/journals/dss/dss53.html#MantenaTZ12,https://doi.org/10.1016/j.dss.2012.01.012 +Seok-Ju Chun,Space-efficient cubes for OLAP range-sum queries.,2004,37,Decision Support Systems,1,db/journals/dss/dss37.html#ChunCL04,https://doi.org/10.1016/S0167-9236(03)00003-4 +Edward J. Lusk,Email: Its decision support systems inroads - An update.,2006,42,Decision Support Systems,1,db/journals/dss/dss42.html#Lusk06,https://doi.org/10.1016/j.dss.2005.01.001 +Amit Basu,Online support for commerce processes by web retailers.,2003,34,Decision Support Systems,4,db/journals/dss/dss34.html#BasuM03,https://doi.org/10.1016/S0167-9236(02)00065-9 +Morteza Haghir Chehreghani,Density link-based methods for clustering web pages.,2009,47,Decision Support Systems,4,db/journals/dss/dss47.html#ChehreghaniAC09,https://doi.org/10.1016/j.dss.2009.04.002 +Mika Goto,Financial performance analysis of US and world telecommunications companies: Importance of Information Technology in the telecommunications industry after the AT and T breakup and the NTT divestiture.,2010,48,Decision Support Systems,3,db/journals/dss/dss48.html#Goto10,https://doi.org/10.1016/j.dss.2009.06.003 +Therani Madhusudan,A declarative approach to composing web services in dynamic environments.,2006,41,Decision Support Systems,2,db/journals/dss/dss41.html#MadhusudanU06,https://doi.org/10.1016/j.dss.2004.07.003 +Steven Walczak,Reducing surgical patient costs through use of an artificial neural network to predict transfusion requirements.,2000,30,Decision Support Systems,2,db/journals/dss/dss30.html#WalczakS00,https://doi.org/10.1016/S0167-9236(00)00093-2 +Deepinder S. Bajwa,Key antecedents of Executive Information System success: a path analytic approach.,1998,22,Decision Support Systems,1,db/journals/dss/dss22.html#BajwaRB98,https://doi.org/10.1016/S0167-9236(97)00032-8 +Hyunwoo Park,Visual analytics for supply network management: System design and evaluation.,2016,91,Decision Support Systems,,db/journals/dss/dss91.html#ParkBB16,https://doi.org/10.1016/j.dss.2016.08.003 +Mohammad Al-Marzouq,Taxing the development structure of open source communities: An information processing view.,2015,80,Decision Support Systems,,db/journals/dss/dss80.html#Al-MarzouqGT15,https://doi.org/10.1016/j.dss.2015.09.004 +Dale Ganley,The ties that bind: Social network principles in online communities.,2009,47,Decision Support Systems,3,db/journals/dss/dss47.html#GanleyL09,https://doi.org/10.1016/j.dss.2009.02.013 +G. Alan Wang,A hierarchical Naïve Bayes model for approximate identity matching.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#WangAC11,https://doi.org/10.1016/j.dss.2011.01.007 +Debabrata Dey,Entity matching in heterogeneous databases: A logistic regression approach.,2008,44,Decision Support Systems,3,db/journals/dss/dss44.html#Dey08,https://doi.org/10.1016/j.dss.2007.10.007 +Roger Debreceny,New tools for the determination of e-commerce inhibitors.,2003,34,Decision Support Systems,2,db/journals/dss/dss34.html#DebrecenyPTG03,https://doi.org/10.1016/S0167-9236(02)00080-5 +John Zeleznikow,Using soft computing to build real world intelligent decision support systems in uncertain domains.,2001,31,Decision Support Systems,2,db/journals/dss/dss31.html#ZeleznikowN01,https://doi.org/10.1016/S0167-9236(00)00135-4 +Bhaba Krishna Mohanty,Product classification in the Internet business - a fuzzy approach.,2005,38,Decision Support Systems,4,db/journals/dss/dss38.html#MohantyB05,https://doi.org/10.1016/j.dss.2003.10.002 +Ori Marom,"Using ""last-minute"" sales for vertical differentiation on the Internet.",2011,51,Decision Support Systems,4,db/journals/dss/dss51.html#MaromS11,https://doi.org/10.1016/j.dss.2011.02.008 +Anne-Marie Barthe-Delanoë,Event-driven agility of interoperability during the Run-time of collaborative processes.,2014,59,Decision Support Systems,,db/journals/dss/dss59.html#Barthe-DelanoeTBP14,https://doi.org/10.1016/j.dss.2013.11.005 +Kasper Bislev Kallestrup,Decision support in hierarchical planning systems: The case of procurement planning in oil refining industries.,2014,68,Decision Support Systems,,db/journals/dss/dss68.html#KallestrupLAO14,https://doi.org/10.1016/j.dss.2014.09.003 +Jianghua Wu,A randomized pricing decision support system in electronic commerce.,2014,58,Decision Support Systems,,db/journals/dss/dss58.html#WuLX14,https://doi.org/10.1016/j.dss.2013.01.015 +Victoria Nebot,Building data warehouses with semantic web data.,2012,52,Decision Support Systems,4,db/journals/dss/dss52.html#NebotL12,https://doi.org/10.1016/j.dss.2011.11.009 +Véronique Van Vlasselaer,APATE: A novel approach for automated credit card transaction fraud detection using network-based extensions.,2015,75,Decision Support Systems,,db/journals/dss/dss75.html#VlasselaerBCEAS15,https://doi.org/10.1016/j.dss.2015.04.013 +Matthias Jarke,Knowledge sharing and negotiation support in multiperson decision support systems.,1986,2,Decision Support Systems,1,db/journals/dss/dss2.html#Jarke86,https://doi.org/10.1016/0167-9236(86)90125-9 +Shi-Ming Huang,A study on decision factors in adopting an online stock trading system by brokers in Taiwan.,2005,40,Decision Support Systems,2,db/journals/dss/dss40.html#HuangHY05,https://doi.org/10.1016/j.dss.2004.02.004 +Frédéric Adam,A framework for the classification of DSS usage across organizations.,1998,22,Decision Support Systems,1,db/journals/dss/dss22.html#AdamFM98,https://doi.org/10.1016/S0167-9236(97)00039-0 +Christopher C. Yang,An associate constraint network approach to extract multi-lingual information for crime analysis.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#YangL07,https://doi.org/10.1016/j.dss.2006.04.011 +Stéphane Meng-Feng Yen,Profitability of technical analysis in financial and commodity futures markets - A reality check.,2010,50,Decision Support Systems,1,db/journals/dss/dss50.html#YenH10,https://doi.org/10.1016/j.dss.2010.07.008 +Souad Djelassi,How self-service technology experience evaluation affects waiting time and customer satisfaction? A moderated mediation model.,2018,111,Decision Support Systems,,db/journals/dss/dss111.html#DjelassiDZ18,https://doi.org/10.1016/j.dss.2018.04.004 +Y. Kamijo,Bidding behaviors for a keyword auction in a sealed-bid environment.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#Kamijo13,https://doi.org/10.1016/j.dss.2013.07.003 +Maurizio Naldi,Optimal sequence of free traffic offers in mixed fee-consumption pricing packages.,2010,50,Decision Support Systems,1,db/journals/dss/dss50.html#NaldiP10,https://doi.org/10.1016/j.dss.2010.08.030 +Ikpe Justice Akpan,Experimental evaluation of user performance on two-dimensional and three-dimensional perspective displays in discrete-event simulation.,2014,64,Decision Support Systems,,db/journals/dss/dss64.html#AkpanB14,https://doi.org/10.1016/j.dss.2014.04.002 +Jacques Wainer,Scheduling meetings through multi-agent negotiations.,2007,44,Decision Support Systems,1,db/journals/dss/dss44.html#WainerFC07,https://doi.org/10.1016/j.dss.2007.03.015 +Maryam Ghasemaghaei,Increasing firm agility through the use of data analytics: The role of fit.,2017,101,Decision Support Systems,,db/journals/dss/dss101.html#GhasemaghaeiHT17,https://doi.org/10.1016/j.dss.2017.06.004 +Yucheng Dong,Integrating experts' weights generated dynamically into the consensus reaching process and its applications in managing non-cooperative behaviors.,2016,84,Decision Support Systems,,db/journals/dss/dss84.html#DongZH16,https://doi.org/10.1016/j.dss.2016.01.002 +Valentina Ferretti,Key challenges and meta-choices in designing and applying multi-criteria spatial decision support systems.,2016,84,Decision Support Systems,,db/journals/dss/dss84.html#FerrettiM16,https://doi.org/10.1016/j.dss.2016.01.005 +Xin Liu,Towards a highly effective and robust Web credibility evaluation system.,2015,79,Decision Support Systems,,db/journals/dss/dss79.html#LiuNAWA15,https://doi.org/10.1016/j.dss.2015.07.010 +John P. Davis,A software-supported process for assembling evidence and handling uncertainty in decision-making.,2003,35,Decision Support Systems,3,db/journals/dss/dss35.html#DavisH03,https://doi.org/10.1016/S0167-9236(02)00117-3 +Tim Baarslag,Effective acceptance conditions in real-time automated negotiation.,2014,60,Decision Support Systems,,db/journals/dss/dss60.html#BaarslagHJ14,https://doi.org/10.1016/j.dss.2013.05.021 +Dawei Song 0001,An intelligent information agent for document title classification and filtering in document-intensive domains.,2007,44,Decision Support Systems,1,db/journals/dss/dss44.html#SongLBWC07,https://doi.org/10.1016/j.dss.2007.04.001 +Christopher W. Zobel,Representing perceived tradeoffs in defining disaster resilience.,2011,50,Decision Support Systems,2,db/journals/dss/dss50.html#Zobel11,https://doi.org/10.1016/j.dss.2010.10.001 +Paul K. Bergey,A decision support system for the electrical power districting problem.,2003,36,Decision Support Systems,1,db/journals/dss/dss36.html#BergeyRH03,https://doi.org/10.1016/S1344-6223(02)00033-0 +Joseph Barjis,A sustainable and affordable support system for rural healthcare delivery.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#BarjisKM13,https://doi.org/10.1016/j.dss.2013.06.005 +Li Zhang 0013,Feature selection using firefly optimization for classification and regression models.,2018,106,Decision Support Systems,,db/journals/dss/dss106.html#ZhangMLN18,https://doi.org/10.1016/j.dss.2017.12.001 +Michael Siering,Explaining and predicting online review helpfulness: The role of content and reviewer-related signals.,2018,108,Decision Support Systems,,db/journals/dss/dss108.html#SieringMR18,https://doi.org/10.1016/j.dss.2018.01.004 +Munir Mandviwalla,Improving the peer review process with information technology.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#MandviwallaPS08,https://doi.org/10.1016/j.dss.2008.04.005 +PoPo Poon,Critical success factors revisited: success and failure cases of information systems for senior executives.,2001,30,Decision Support Systems,4,db/journals/dss/dss30.html#PoonW01,https://doi.org/10.1016/S0167-9236(00)00069-5 +Weiguo Fan,Genetic-based approaches in ranking function discovery and optimization in information retrieval - A framework.,2009,47,Decision Support Systems,4,db/journals/dss/dss47.html#FanPZ09,https://doi.org/10.1016/j.dss.2009.04.005 +Eitel J. M. Lauría,A Bayesian Belief Network for IT implementation decision support.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#LauriaD06,https://doi.org/10.1016/j.dss.2006.01.003 +Thomas J. Overbye,Analysis and visualization of market power in electric power systems.,2001,30,Decision Support Systems,3,db/journals/dss/dss30.html#OverbyeWP01,https://doi.org/10.1016/S0167-9236(00)00101-9 +Raffaele Conforti,A recommendation system for predicting risks across multiple business process instances.,2015,69,Decision Support Systems,,db/journals/dss/dss69.html#ConfortiLRAH15,https://doi.org/10.1016/j.dss.2014.10.006 +Gangshu (George) Cai,Design of online auctions: Proxy versus non-proxy settings.,2012,52,Decision Support Systems,2,db/journals/dss/dss52.html#CaiCG12,https://doi.org/10.1016/j.dss.2011.09.005 +Sulin Ba,Enterprise decision support using Intranet technology.,1997,20,Decision Support Systems,2,db/journals/dss/dss20.html#BaLW97,https://doi.org/10.1016/S0167-9236(96)00068-1 +Kazuo Miyashita,Modeling ill-structured optimization tasks through cases.,1996,17,Decision Support Systems,4,db/journals/dss/dss17.html#MiyashitaSM96,https://doi.org/10.1016/0167-9236(96)00009-7 +Paul Freedman,SAGE: A decision support system for the sequencing of operations within a robotic workcell.,1988,4,Decision Support Systems,3,db/journals/dss/dss4.html#FreedmanM88,https://doi.org/10.1016/0167-9236(88)90020-6 +Jörg H. Siekmann,Unification theory.,1990,6,Decision Support Systems,4,db/journals/dss/dss6.html#Siekmann90,https://doi.org/10.1016/0167-9236(90)90027-O +Javier Busquets,Adaptability in smart business networks: An exploratory case in the insurance industry.,2009,47,Decision Support Systems,4,db/journals/dss/dss47.html#BusquetsRW09,https://doi.org/10.1016/j.dss.2009.05.006 +Antonio Fernández 0002,Answering queries in hybrid Bayesian networks using importance sampling.,2012,53,Decision Support Systems,3,db/journals/dss/dss53.html#FernandezRS12,https://doi.org/10.1016/j.dss.2012.03.007 +Robert S. Garfinkel,Design of a shopbot and recommender system for bundle purchases.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#GarfinkelGTY06,https://doi.org/10.1016/j.dss.2006.05.005 +Insu Park,The effect of pre- and post-service performance on consumer evaluation of online retailers.,2012,52,Decision Support Systems,2,db/journals/dss/dss52.html#ParkCR12,https://doi.org/10.1016/j.dss.2011.10.001 +Hyunjung Shin,Prediction of movement direction in crude oil prices based on semi-supervised learning.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#ShinHPPC13,https://doi.org/10.1016/j.dss.2012.11.009 +Stefan Schönig,A framework for efficiently mining the organisational perspective of business processes.,2016,89,Decision Support Systems,,db/journals/dss/dss89.html#SchonigCJM16,https://doi.org/10.1016/j.dss.2016.06.012 +Hans Weigand,Cross-organizational workflow integration using contracts.,2002,33,Decision Support Systems,3,db/journals/dss/dss33.html#WeigandH02,https://doi.org/10.1016/S0167-9236(02)00015-5 +Alfred Castillo,ExUP recommendations: Inferring user's product metadata preferences from single-criterion rating systems.,2018,108,Decision Support Systems,,db/journals/dss/dss108.html#CastilloVC18,https://doi.org/10.1016/j.dss.2018.02.006 +Wietse Z. Venema,Systematic modeling and model handling for manpower planning systems.,1988,4,Decision Support Systems,4,db/journals/dss/dss4.html#VenemaW88,https://doi.org/10.1016/0167-9236(88)90013-9 +Donald R. Jones,The division of labor between human and computer in the presence of decision support system advice.,2002,33,Decision Support Systems,4,db/journals/dss/dss33.html#JonesB02,https://doi.org/10.1016/S0167-9236(02)00005-2 +Shaokun Fan,A framework for transformation from conceptual to logical workflow models.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#FanZDL12,https://doi.org/10.1016/j.dss.2012.09.006 +Beatriz Andrés,A decision support system for the collaborative selection of strategies in enterprise networks.,2016,91,Decision Support Systems,,db/journals/dss/dss91.html#AndresP16,https://doi.org/10.1016/j.dss.2016.08.005 +Trevor T. Moores,Towards an integrated model of IT acceptance in healthcare.,2012,53,Decision Support Systems,3,db/journals/dss/dss53.html#Moores12,https://doi.org/10.1016/j.dss.2012.04.014 +Arup Kumar Mukherjee,Heuristic perturbation of optimization results in a DSS for instructor scheduling.,1994,11,Decision Support Systems,1,db/journals/dss/dss11.html#Mukherjee94,https://doi.org/10.1016/0167-9236(94)90066-3 +Shan Wang,Small and medium sized manufacturer performance on third party B2B electronic marketplaces: The role of enabling and IT capabilities.,2015,79,Decision Support Systems,,db/journals/dss/dss79.html#WangC15,https://doi.org/10.1016/j.dss.2015.08.006 +Yongqiang Sun,Understanding sustained participation in transactional virtual communities.,2012,53,Decision Support Systems,1,db/journals/dss/dss53.html#SunFL12,https://doi.org/10.1016/j.dss.2011.10.006 +David McSherry,Knowledge discovery by inspection.,1997,21,Decision Support Systems,1,db/journals/dss/dss21.html#McSherry97,https://doi.org/10.1016/S0167-9236(97)00012-2 +Jiaqi Zhao,Multiobjective sparse ensemble learning by means of evolutionary algorithms.,2018,111,Decision Support Systems,,db/journals/dss/dss111.html#ZhaoJXFYZE18,https://doi.org/10.1016/j.dss.2018.05.003 +Bongsug Chae,Incorporating an ethical perspective into problem formulation: implications for decision support systems design.,2005,40,Decision Support Systems,2,db/journals/dss/dss40.html#ChaePCC05,https://doi.org/10.1016/j.dss.2004.02.002 +Li-Chiou Chen,Model alignment of anthrax attack simulations.,2006,41,Decision Support Systems,3,db/journals/dss/dss41.html#ChenCFKY06,https://doi.org/10.1016/j.dss.2004.06.012 +Alireza Amirteimoori,Optimal input/output reduction in production processes.,2012,52,Decision Support Systems,3,db/journals/dss/dss52.html#AmirteimooriE12,https://doi.org/10.1016/j.dss.2011.11.020 +Jie Zhao,Extracting and reasoning about implicit behavioral evidences for detecting fraudulent online transactions in e-Commerce.,2016,86,Decision Support Systems,,db/journals/dss/dss86.html#ZhaoLZZCT16,https://doi.org/10.1016/j.dss.2016.04.003 +Samuel W. K. Chan,Sentiment analysis in financial texts.,2017,94,Decision Support Systems,,db/journals/dss/dss94.html#ChanC17,https://doi.org/10.1016/j.dss.2016.10.006 +Xiao Zou,Leveraging location-based services for couponing and infomediation.,2015,78,Decision Support Systems,,db/journals/dss/dss78.html#ZouH15,https://doi.org/10.1016/j.dss.2015.05.007 +Anthony G. McCloskey,A user-centred corporate acquisition system: a dynamic fuzzy membership functions approach.,2006,42,Decision Support Systems,1,db/journals/dss/dss42.html#McCloskeyMMHO06,https://doi.org/10.1016/j.dss.2004.11.013 +Ting-Peng Liang,A framework for applying intelligent agents to support electronic trading.,2000,28,Decision Support Systems,4,db/journals/dss/dss28.html#LiangH00,https://doi.org/10.1016/S0167-9236(99)00098-6 +Paul Alpar,Market share analysis and prognosis using qualitative reasoning.,1995,15,Decision Support Systems,2,db/journals/dss/dss15.html#AlparD95,https://doi.org/10.1016/0167-9236(94)00032-N +Wil M. P. van der Aalst,Matching observed behavior and modeled behavior: An approach based on Petri nets and integer programming.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#Aalst06,https://doi.org/10.1016/j.dss.2006.03.013 +Alexander Tuzhilin,Editor's introduction to the special issue on knowledge discovery and its applications to business decision-making.,1997,21,Decision Support Systems,1,db/journals/dss/dss21.html#Tuzhilin97,https://doi.org/10.1016/S0167-9236(97)00008-0 +Xiaolin Zheng,Capturing the essence of word-of-mouth for social commerce: Assessing the quality of online e-commerce reviews by a semi-supervised approach.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#ZhengZL13,https://doi.org/10.1016/j.dss.2013.06.002 +Barbaros Yet,Decision support system for Warfarin therapy management using Bayesian networks.,2013,55,Decision Support Systems,2,db/journals/dss/dss55.html#YetBRLMB13,https://doi.org/10.1016/j.dss.2012.10.007 +Fletcher H. Glancy,A computational model for financial reporting fraud detection.,2011,50,Decision Support Systems,3,db/journals/dss/dss50.html#GlancyY11,https://doi.org/10.1016/j.dss.2010.08.010 +Zhi-Hua Hu,A decision support system for public logistics information service management and optimization.,2014,59,Decision Support Systems,,db/journals/dss/dss59.html#HuS14,https://doi.org/10.1016/j.dss.2013.12.001 +Thomi Pilioura,Using Web Services for supporting the users of wireless devices.,2007,43,Decision Support Systems,1,db/journals/dss/dss43.html#PiliouraHTS07,https://doi.org/10.1016/j.dss.2005.05.007 +R. J. Peckham,A computer-based system for risk management support.,1988,4,Decision Support Systems,4,db/journals/dss/dss4.html#PeckhamHO88,https://doi.org/10.1016/0167-9236(88)90011-5 +Sik Choi,Decision models for designing and planning private communication networks.,1995,15,Decision Support Systems,4,db/journals/dss/dss15.html#ChoiSS95,https://doi.org/10.1016/0167-9236(94)00048-5 +Ting Li,Adaptive learning in service operations.,2012,53,Decision Support Systems,2,db/journals/dss/dss53.html#LiK12,https://doi.org/10.1016/j.dss.2012.01.011 +Jack P. C. Kleijnen,Simulation and optimization in production planning: A case study.,1993,9,Decision Support Systems,3,db/journals/dss/dss9.html#Kleijnen93,https://doi.org/10.1016/0167-9236(93)90058-B +Amitava Dutta,Computer based support of reasoning in the presence of fuzziness and uncertainty.,1986,2,Decision Support Systems,4,db/journals/dss/dss2.html#DuttaB86,https://doi.org/10.1016/0167-9236(86)90004-7 +Nianxin Wang,Cloud computing research in the IS discipline: A citation/co-citation analysis.,2016,86,Decision Support Systems,,db/journals/dss/dss86.html#WangLJGXW16,https://doi.org/10.1016/j.dss.2016.03.006 +Suranjan De,Providing effective decision support: Modeling users and their requirements.,1986,2,Decision Support Systems,4,db/journals/dss/dss2.html#De86,https://doi.org/10.1016/0167-9236(86)90002-3 +Patrick Valente,The evolution of web-based optimisation: From ASP to e-Services.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#ValenteM07,https://doi.org/10.1016/j.dss.2005.07.003 +Frank Witlox,Introducing functional classification theory to land use planning by means of decision tables.,2009,46,Decision Support Systems,4,db/journals/dss/dss46.html#WitloxABMDNAW09,https://doi.org/10.1016/j.dss.2008.12.001 +Saul I. Gass,A note on synthesizing group decisions.,1998,22,Decision Support Systems,1,db/journals/dss/dss22.html#GassR98,https://doi.org/10.1016/S0167-9236(96)00061-9 +Zhengxin Chen,Interacting with software system components.,1995,14,Decision Support Systems,4,db/journals/dss/dss14.html#Chen95,https://doi.org/10.1016/0167-9236(94)00023-L +Chih-Ping Wei,Exploiting poly-lingual documents for improving text categorization effectiveness.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#WeiYLSY14,https://doi.org/10.1016/j.dss.2013.08.001 +Ned Kock,The three threats of action research: a discussion of methodological antidotes in the context of an information systems study.,2004,37,Decision Support Systems,2,db/journals/dss/dss37.html#Kock04,https://doi.org/10.1016/S0167-9236(03)00022-8 +Tawfik Jelassi,The emerging role of DSS: From passive to active.,1987,3,Decision Support Systems,4,db/journals/dss/dss3.html#JelassiWF87,https://doi.org/10.1016/0167-9236(87)90101-1 +Han Li,Understanding compliance with internet use policy from the perspective of rational choice theory.,2010,48,Decision Support Systems,4,db/journals/dss/dss48.html#LiZS10,https://doi.org/10.1016/j.dss.2009.12.005 +Louis E. Caporaletti,A decision support system for in-sample simultaneous equation systems forecasting using artificial neural systems.,1994,11,Decision Support Systems,5,db/journals/dss/dss11.html#CaporalettiDJP94,https://doi.org/10.1016/0167-9236(94)90020-5 +Peter Stecher,An 'intelligent' extraction and aggregation tool for company data bases.,1986,2,Decision Support Systems,2,db/journals/dss/dss2.html#StecherH86,https://doi.org/10.1016/0167-9236(86)90092-8 +Dan Jong Kim,Revisiting the role of web assurance seals in business-to-consumer electronic commerce.,2008,44,Decision Support Systems,4,db/journals/dss/dss44.html#KimSL08,https://doi.org/10.1016/j.dss.2007.11.007 +Steven D. Silver,Designing technology for managing the information exchange of decision making teams.,2014,61,Decision Support Systems,,db/journals/dss/dss61.html#Silver14,https://doi.org/10.1016/j.dss.2014.02.005 +R. J. Kuo,A decision support system for sales forecasting through fuzzy neural networks with asymmetric fuzzy weights.,1998,24,Decision Support Systems,2,db/journals/dss/dss24.html#KuoX98,https://doi.org/10.1016/S0167-9236(98)00067-0 +Sérgio Moro,A data-driven approach to predict the success of bank telemarketing.,2014,62,Decision Support Systems,,db/journals/dss/dss62.html#MoroCR14,https://doi.org/10.1016/j.dss.2014.03.001 +Shankar Chakraborty,Real time statistical process advisor for effective quality control.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#ChakrabortyT06,https://doi.org/10.1016/j.dss.2005.03.008 +Choong Nyoung Kim,Human decision-making behavior and modeling effects.,2008,45,Decision Support Systems,3,db/journals/dss/dss45.html#KimYK08,https://doi.org/10.1016/j.dss.2007.06.011 +Bouchaib Bahli,Cost escalation in information technology outsourcing: A moderated mediation study.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#BahliR13,https://doi.org/10.1016/j.dss.2013.04.007 +Marco Gagliardi,BLOOMS: A prototype modeling language with object oriented features.,1997,19,Decision Support Systems,1,db/journals/dss/dss19.html#GagliardiS97,https://doi.org/10.1016/S0167-9236(96)00040-1 +Thian-Huat Ong,Newsmap: a knowledge map for online news.,2005,39,Decision Support Systems,4,db/journals/dss/dss39.html#OngCSZ05,https://doi.org/10.1016/j.dss.2004.03.008 +Mike Uschold,Expert systems: A decision support approach with applications in management and finance Authors: Klein and Methlie.,1993,10,Decision Support Systems,1,db/journals/dss/dss10.html#Uschold93,https://doi.org/10.1016/0167-9236(93)90005-N +Daniel E. O'Leary,Inference engine greediness: subsumption and suboptimality.,1997,21,Decision Support Systems,4,db/journals/dss/dss21.html#OLeary97,https://doi.org/10.1016/S0167-9236(97)00042-0 +Ing-Long Wu,Examining the diffusion of electronic supply chain management with external antecedents and firm performance: A multi-stage analysis.,2010,50,Decision Support Systems,1,db/journals/dss/dss50.html#WuC10,https://doi.org/10.1016/j.dss.2010.07.006 +Torsten Dierkes,Estimating the effect of word of mouth on churn and cross-buying in the mobile phone market with Markov logic networks.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#DierkesBK11,https://doi.org/10.1016/j.dss.2011.01.002 +Hua Yuan,Towards controlling virus propagation in information systems with point-to-group information sharing.,2009,48,Decision Support Systems,1,db/journals/dss/dss48.html#YuanCWX09,https://doi.org/10.1016/j.dss.2009.05.014 +Ojelanki K. Ngwenyama,Supporting facilitation in group support systems: Techniques for analyzing consensus relevant data.,1996,16,Decision Support Systems,2,db/journals/dss/dss16.html#NgwenyamaBM96,https://doi.org/10.1016/0167-9236(95)00004-6 +Seonyoung Shim,Internet portals' strategic utilization of UCC and Web 2.0 Ecology.,2009,47,Decision Support Systems,4,db/journals/dss/dss47.html#ShimL09,https://doi.org/10.1016/j.dss.2009.04.008 +Eduardo Natividade-Jesus,A multicriteria decision support system for housing evaluation.,2007,43,Decision Support Systems,3,db/journals/dss/dss43.html#Natividade-JesusCA07,https://doi.org/10.1016/j.dss.2006.03.014 +Levent V. Orman,Constraint by example.,1996,17,Decision Support Systems,1,db/journals/dss/dss17.html#Orman96,https://doi.org/10.1016/0167-9236(95)00019-4 +M. Daud Ahmed,Knowledge-based scenario management - Process and support.,2010,49,Decision Support Systems,4,db/journals/dss/dss49.html#AhmedSP10,https://doi.org/10.1016/j.dss.2010.06.004 +Henry S. Weigel,The Army's personnel decision support system.,1993,9,Decision Support Systems,3,db/journals/dss/dss9.html#WeigelW93,https://doi.org/10.1016/0167-9236(93)90059-C +Tadeusz Sawik,Selection of optimal countermeasure portfolio in IT security planning.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#Sawik13,https://doi.org/10.1016/j.dss.2013.01.001 +Donald R. Jones,Understanding and attenuating decision bias in the use of model advice and other relevant information.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#JonesWAS06,https://doi.org/10.1016/j.dss.2006.05.001 +Andrew D. Fernandes,"Risking ""trust"" in a public key infrastructure: old techniques of managing risk applied to new technology.",2001,31,Decision Support Systems,3,db/journals/dss/dss31.html#Fernandes01,https://doi.org/10.1016/S0167-9236(00)00139-1 +Kuo-Tay Chen,Giving context to accounting numbers: The role of news coverage.,2011,50,Decision Support Systems,4,db/journals/dss/dss50.html#ChenLCLLC11,https://doi.org/10.1016/j.dss.2010.08.025 +Jie Liu,Information revelation and customer decision-making process of repeat-bidding name-your-own-price auction.,2016,90,Decision Support Systems,,db/journals/dss/dss90.html#LiuDWL16,https://doi.org/10.1016/j.dss.2016.06.018 +Ninoslav Malekovic,Manipulative Imputation in Distributed Decision Support Settings: The Implications of Information Asymmetry and Aggregation Complexity.,2016,85,Decision Support Systems,,db/journals/dss/dss85.html#MalekovicSG16,https://doi.org/10.1016/j.dss.2016.02.004 +Marcin Czajkowski,Cost-sensitive Global Model Trees applied to loan charge-off forecasting.,2015,74,Decision Support Systems,,db/journals/dss/dss74.html#CzajkowskiCK15,https://doi.org/10.1016/j.dss.2015.03.009 +Anthony J. T. Lee,Mining perceptual maps from consumer reviews.,2016,82,Decision Support Systems,,db/journals/dss/dss82.html#LeeYCWS16,https://doi.org/10.1016/j.dss.2015.11.002 +Michael P. Johnson,Spatial decision support for assisted housing mobility counseling.,2005,41,Decision Support Systems,1,db/journals/dss/dss41.html#Johnson05,https://doi.org/10.1016/j.dss.2004.08.013 +Li-Ching Ma,Using Gower Plots and Decision Balls to rank alternatives involving inconsistent preferences.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#MaL11,https://doi.org/10.1016/j.dss.2011.04.004 +Kalyan Moy Gupta,A connectionist approach for similarity assessment in case-based reasoning systems.,1997,19,Decision Support Systems,4,db/journals/dss/dss19.html#GuptaM97,https://doi.org/10.1016/S0167-9236(96)00063-2 +Love Ekenberg,Imposing security constraints on agent-based decision support.,1997,20,Decision Support Systems,1,db/journals/dss/dss20.html#EkenbergDB97,https://doi.org/10.1016/S0167-9236(96)00072-3 +Kee-Young Kwahk,Supporting business process redesign using cognitive maps.,1999,25,Decision Support Systems,2,db/journals/dss/dss25.html#KwahkK99,https://doi.org/10.1016/S0167-9236(99)00003-2 +Christian Meilicke,Overcoming individual process model matcher weaknesses using ensemble matching.,2017,100,Decision Support Systems,,db/journals/dss/dss100.html#MeilickeLKSR17,https://doi.org/10.1016/j.dss.2017.02.013 +Dursun Delen,A comparative analysis of machine learning techniques for student retention management.,2010,49,Decision Support Systems,4,db/journals/dss/dss49.html#Delen10,https://doi.org/10.1016/j.dss.2010.06.003 +David Bodoff,Corporate disclosure dissemination: when more is less.,2003,35,Decision Support Systems,4,db/journals/dss/dss35.html#BodoffZ03,https://doi.org/10.1016/S0167-9236(02)00129-X +Yen-Liang Chen,Mining consensus preference graphs from users' ranking data.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#ChenCH13,https://doi.org/10.1016/j.dss.2012.10.031 +Yu-Ju Tu,Identifying RFID-embedded objects in pervasive healthcare applications.,2009,46,Decision Support Systems,2,db/journals/dss/dss46.html#TuZP09,https://doi.org/10.1016/j.dss.2008.10.001 +Paul Michael Di Gangi,Steal my idea! Organizational adoption of user innovations from a user innovation community: A case study of Dell IdeaStorm.,2009,48,Decision Support Systems,1,db/journals/dss/dss48.html#GangiW09,https://doi.org/10.1016/j.dss.2009.04.004 +Der-Chiang Li,Improving learning accuracy by using synthetic samples for small datasets with non-linear attribute dependency.,2014,59,Decision Support Systems,,db/journals/dss/dss59.html#LiLP14,https://doi.org/10.1016/j.dss.2013.12.007 +Matthias Jarke,The AI potential of model management and its central role in decision support.,1988,4,Decision Support Systems,4,db/journals/dss/dss4.html#JarkeR88,https://doi.org/10.1016/0167-9236(88)90002-4 +Vicky Ching Gu,Unified Modeling Language (UML) IT adoption - A holistic model of organizational capabilities perspective.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#GuCD12,https://doi.org/10.1016/j.dss.2012.05.034 +Andreas Oberweis,An integrated approach for the specification of processes and related complex structured objects in business applications.,1996,17,Decision Support Systems,1,db/journals/dss/dss17.html#Oberweis96,https://doi.org/10.1016/0167-9236(95)00021-6 +Damir Vandic,Faceted product search powered by the Semantic Web.,2012,53,Decision Support Systems,3,db/journals/dss/dss53.html#VandicDF12,https://doi.org/10.1016/j.dss.2012.02.010 +Kristof Coussement,Improving customer complaint management by automatic email classification using linguistic style features as predictors.,2008,44,Decision Support Systems,4,db/journals/dss/dss44.html#CoussementP08,https://doi.org/10.1016/j.dss.2007.10.010 +F. T. Dweiri,Using fuzzy decision making for the evaluation of the project management internal efficiency.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#DweiriK06,https://doi.org/10.1016/j.dss.2005.04.001 +Danny Weathers,Can online product reviews be more helpful? Examining characteristics of information content by product type.,2015,79,Decision Support Systems,,db/journals/dss/dss79.html#WeathersSG15,https://doi.org/10.1016/j.dss.2015.07.009 +Riyaz T. Sikora,Learning bidding strategies with autonomous agents in environments with unstable equilibrium.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#SikoraS08,https://doi.org/10.1016/j.dss.2008.05.005 +Guisseppi A. Forgionne,HMSS: a management support system for concurrent hospital decision making.,1996,16,Decision Support Systems,3,db/journals/dss/dss16.html#ForgionneK96,https://doi.org/10.1016/0167-9236(95)00011-9 +Bonnie Brinton Anderson,Your memory is working against you: How eye tracking and memory explain habituation to security warnings.,2016,92,Decision Support Systems,,db/journals/dss/dss92.html#AndersonJVKE16,https://doi.org/10.1016/j.dss.2016.09.010 +Debanjan Ghosh,Self-healing systems - survey and synthesis.,2007,42,Decision Support Systems,4,db/journals/dss/dss42.html#GhoshSRU07,https://doi.org/10.1016/j.dss.2006.06.011 +Cocky Hilhorst,Using Dempster-Shafer theory and real options theory to assess competing strategies for implementing IT infrastructures: A case study.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#HilhorstRHS08,https://doi.org/10.1016/j.dss.2008.07.006 +Amit Basu,Computer based support of reasoning in the presence of fuzziness.,1986,2,Decision Support Systems,3,db/journals/dss/dss2.html#BasuD86,https://doi.org/10.1016/0167-9236(86)90031-X +Steven O. Kimbrough,Why nonmonotonic logic?,1988,4,Decision Support Systems,1,db/journals/dss/dss4.html#KimbroughA88,https://doi.org/10.1016/0167-9236(88)90101-7 +René van den Brink,Union values for games with coalition structure.,2014,66,Decision Support Systems,,db/journals/dss/dss66.html#BrinkD14,https://doi.org/10.1016/j.dss.2014.04.010 +Costas P. Pappis,Applying the service level criterion in a location-allocation problem.,1994,11,Decision Support Systems,1,db/journals/dss/dss11.html#PappisK94,https://doi.org/10.1016/0167-9236(94)90067-1 +Juheng Zhang,Voluntary information disclosure on social media.,2015,73,Decision Support Systems,,db/journals/dss/dss73.html#Zhang15,https://doi.org/10.1016/j.dss.2015.02.018 +Victor Pillac,An event-driven optimization framework for dynamic vehicle routing.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#PillacGM12,https://doi.org/10.1016/j.dss.2012.06.007 +Pak-Keung Cheung,Does knowledge reuse make a creative person more creative?,2008,45,Decision Support Systems,2,db/journals/dss/dss45.html#CheungCA08,https://doi.org/10.1016/j.dss.2007.02.006 +Arun Sen,Decision support systems: An expert systems approach.,1985,1,Decision Support Systems,3,db/journals/dss/dss1.html#SenB85,https://doi.org/10.1016/0167-9236(85)90239-8 +Akhil Kumar 0001,Meta workflows as a control and coordination mechanism for exception handling in workflow systems.,2005,40,Decision Support Systems,1,db/journals/dss/dss40.html#KumarW05,https://doi.org/10.1016/j.dss.2004.04.006 +Joni L. Jones,Combinatorial auctions using rule-based bids.,2002,34,Decision Support Systems,1,db/journals/dss/dss34.html#JonesK02,https://doi.org/10.1016/S0167-9236(02)00004-0 +Cecil Chua Eng Huang,Developing maintainable software: The Readable approach.,2006,42,Decision Support Systems,1,db/journals/dss/dss42.html#ChuaPS06,https://doi.org/10.1016/j.dss.2005.04.002 +Gary H. Hua,On hypermedia-based argumentation decision support systems.,1998,22,Decision Support Systems,3,db/journals/dss/dss22.html#HuaK98,https://doi.org/10.1016/S0167-9236(97)00062-6 +Eduardo Fernández-Medina,Access control and audit model for the multidimensional modeling of data warehouses.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#Fernandez-MedinaTVP06,https://doi.org/10.1016/j.dss.2005.10.008 +Min-Yuh Day,Reference metadata extraction using a hierarchical knowledge representation framework.,2007,43,Decision Support Systems,1,db/journals/dss/dss43.html#DayTSHLWWOH07,https://doi.org/10.1016/j.dss.2006.08.006 +Mohsen Farhadloo,Modeling customer satisfaction from unstructured data using a Bayesian approach.,2016,90,Decision Support Systems,,db/journals/dss/dss90.html#FarhadlooPR16,https://doi.org/10.1016/j.dss.2016.06.010 +Helge Langseth,Scalable learning of probabilistic latent models for collaborative filtering.,2015,74,Decision Support Systems,,db/journals/dss/dss74.html#LangsethN15,https://doi.org/10.1016/j.dss.2015.03.006 +Bernd Heinrich,Automated planning of process models: Design of a novel approach to construct exclusive choices.,2015,78,Decision Support Systems,,db/journals/dss/dss78.html#HeinrichKZ15,https://doi.org/10.1016/j.dss.2015.07.005 +Ari P. J. Vepsäläinen,A relational view of activities for systems analysis and design.,1988,4,Decision Support Systems,2,db/journals/dss/dss4.html#Vepsalainen88,https://doi.org/10.1016/0167-9236(88)90130-3 +Jyri Mustajoki,Interactive computer support in decision conferencing: Two cases on off-site nuclear emergency management.,2007,42,Decision Support Systems,4,db/journals/dss/dss42.html#MustajokiHS07,https://doi.org/10.1016/j.dss.2006.07.003 +Erik R. Larsen,The growth of service and the service of growth: Using system dynamics to understand service quality and capital allocation.,1997,19,Decision Support Systems,4,db/journals/dss/dss19.html#LarsenAW97,https://doi.org/10.1016/S0167-9236(96)00065-6 +Hau-Ling Chan,RFID versus bar-coding systems: Transactions errors in health care apparel inventory control.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#ChanCH12,https://doi.org/10.1016/j.dss.2012.08.004 +Ling Liu,Systematic analysis of centralized online reputation systems.,2012,52,Decision Support Systems,2,db/journals/dss/dss52.html#LiuM12,https://doi.org/10.1016/j.dss.2011.10.003 +Florentino Fdez-Riverola,SpamHunting: An instance-based reasoning system for spam labelling and filtering.,2007,43,Decision Support Systems,3,db/journals/dss/dss43.html#Fdez-RiverolaIDMC07,https://doi.org/10.1016/j.dss.2006.11.012 +Hannu Kivijärvi,A substance-theory-oriented approach to the implementation of organizational DSS.,1997,20,Decision Support Systems,3,db/journals/dss/dss20.html#Kivijarvi97,https://doi.org/10.1016/S0167-9236(96)00069-3 +Anindya Datta,The cube data model: a conceptual model and algebra for on-line analytical processing in data warehouses.,1999,27,Decision Support Systems,3,db/journals/dss/dss27.html#DattaT99,https://doi.org/10.1016/S0167-9236(99)00052-4 +Wim Laurier,Invariant conditions in value system simulation models.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#LaurierP13,https://doi.org/10.1016/j.dss.2013.06.009 +Kai Chun Chiu,Arbitrage pricing theory-based Gaussian temporal factor analysis for adaptive portfolio management.,2004,37,Decision Support Systems,4,db/journals/dss/dss37.html#ChiuX04,https://doi.org/10.1016/S0167-9236(03)00082-4 +Jae Sik Lee,A model base for identifying mathematical programming structures.,1991,7,Decision Support Systems,2,db/journals/dss/dss7.html#Lee91,https://doi.org/10.1016/0167-9236(91)90049-H +Martin Wiener,Omnichannel businesses in the publishing and retailing industries: Synergies and tensions between coexisting online and offline business models.,2018,109,Decision Support Systems,,db/journals/dss/dss109.html#WienerHS18,https://doi.org/10.1016/j.dss.2018.01.008 +Marvin Belzer,A conditional logic for defeasible beliefs.,1988,4,Decision Support Systems,1,db/journals/dss/dss4.html#BelzerL88,https://doi.org/10.1016/0167-9236(88)90102-9 +Tapio Levä,Comparing the cost-efficiency of CoAP and HTTP in Web of Things applications.,2014,63,Decision Support Systems,,db/journals/dss/dss63.html#LevaMS14,https://doi.org/10.1016/j.dss.2013.09.009 +Gianluca Campanella,A framework for dynamic multiple-criteria decision making.,2011,52,Decision Support Systems,1,db/journals/dss/dss52.html#CampanellaR11,https://doi.org/10.1016/j.dss.2011.05.003 +Ruhai Wu,A generalized model of partial resale.,2012,53,Decision Support Systems,1,db/journals/dss/dss53.html#WuGW12,https://doi.org/10.1016/j.dss.2011.12.008 +Ye-Sho Chen,An entity-relationship approach to decision support and expert systems.,1988,4,Decision Support Systems,2,db/journals/dss/dss4.html#Chen88,https://doi.org/10.1016/0167-9236(88)90131-5 +Sarv Devaraj,Examination of online channel preference: Using the structure-conduct-outcome framework.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#DevarajFK06,https://doi.org/10.1016/j.dss.2005.09.004 +Chao-Hsien Chu,Neural network system for forecasting method selection.,1994,12,Decision Support Systems,1,db/journals/dss/dss12.html#ChuW94,https://doi.org/10.1016/0167-9236(94)90071-X +Jay F. Nunamaker Jr.,Interaction of task and technology to support large groups.,1989,5,Decision Support Systems,2,db/journals/dss/dss5.html#NunamakerVK89,https://doi.org/10.1016/0167-9236(89)90003-1 +Rita A. Ribeiro,Uncertainty in decision-making: An abductive perspective.,1995,13,Decision Support Systems,2,db/journals/dss/dss13.html#RibeiroPB95,https://doi.org/10.1016/0167-9236(94)00011-G +Zan Huang,Large-scale regulatory network analysis from microarray data: modified Bayesian network learning and association rule mining.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#HuangLSWC07,https://doi.org/10.1016/j.dss.2006.02.002 +M. Sinan Gönül,The effects of structural characteristics of explanations on use of a DSS.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#GonulOL06,https://doi.org/10.1016/j.dss.2005.12.003 +Johny Ghattas,Improving business process decision making based on past experience.,2014,59,Decision Support Systems,,db/journals/dss/dss59.html#GhattasSP14,https://doi.org/10.1016/j.dss.2013.10.009 +Yucheng Dong,Consensus models for AHP group decision making under row geometric mean prioritization method.,2010,49,Decision Support Systems,3,db/journals/dss/dss49.html#DongZHX10,https://doi.org/10.1016/j.dss.2010.03.003 +Yong Jick Lee,Profit-maximizing firm investments in customer information security.,2011,51,Decision Support Systems,4,db/journals/dss/dss51.html#LeeKS11,https://doi.org/10.1016/j.dss.2011.02.009 +Nico Di Domenica,Stochastic programming and scenario generation within a simulation framework: An information systems perspective.,2007,42,Decision Support Systems,4,db/journals/dss/dss42.html#DomenicaMVB07,https://doi.org/10.1016/j.dss.2006.06.013 +Pierfrancesco Reverberi,A probabilistic model for interactive decision-making.,1999,25,Decision Support Systems,4,db/journals/dss/dss25.html#ReverberiT99,https://doi.org/10.1016/S0167-9236(99)00013-5 +Amir Hassan Zadeh,Modeling brand post popularity dynamics in online social networks.,2014,65,Decision Support Systems,,db/journals/dss/dss65.html#ZadehS14,https://doi.org/10.1016/j.dss.2014.05.003 +Pari Delir Haghighi,Development and evaluation of ontology for intelligent decision support in medical emergency management for mass gatherings.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#HaghighiBZA13,https://doi.org/10.1016/j.dss.2012.11.013 +Tsan-Ming Choi,Fast fashion sales forecasting with limited data and time.,2014,59,Decision Support Systems,,db/journals/dss/dss59.html#ChoiHLNY14,https://doi.org/10.1016/j.dss.2013.10.008 +Se-Joon Hong,How old are you really? Cognitive age in technology acceptance.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#HongLHMK13,https://doi.org/10.1016/j.dss.2013.05.008 +Min Soo Suh,Evaluation of ordering strategies for constraint satisfaction reactive scheduling.,1998,22,Decision Support Systems,2,db/journals/dss/dss22.html#SuhLLK98,https://doi.org/10.1016/S0167-9236(97)00052-3 +Indranil Bose,Design of a web site for guaranteed delay and blocking probability bounds.,2004,38,Decision Support Systems,1,db/journals/dss/dss38.html#BoseA04,https://doi.org/10.1016/S0167-9236(03)00080-0 +Weiguo Fan,Effective profiling of consumer information retrieval needs: a unified framework and empirical comparison.,2005,40,Decision Support Systems,2,db/journals/dss/dss40.html#FanGP05,https://doi.org/10.1016/j.dss.2004.02.003 +Hualong Yang,Exploring the influence of the online physician service delivery process on patient satisfaction.,2015,78,Decision Support Systems,,db/journals/dss/dss78.html#YangGW15,https://doi.org/10.1016/j.dss.2015.05.006 +Ashish Gupta 0004,Improving rounding in critical care environments through management of interruptions.,2013,55,Decision Support Systems,2,db/journals/dss/dss55.html#0004SDSAP13,https://doi.org/10.1016/j.dss.2012.10.009 +Josef Steinberger,Creating sentiment dictionaries via triangulation.,2012,53,Decision Support Systems,4,db/journals/dss/dss53.html#SteinbergerEEHKLSTVZ12,https://doi.org/10.1016/j.dss.2012.05.029 +Hee-Woong Kim,A comparison of purchase decision calculus between potential and repeat customers of an online store.,2009,47,Decision Support Systems,4,db/journals/dss/dss47.html#KimG09,https://doi.org/10.1016/j.dss.2009.04.014 +Ramón Flores,Assessment of groups in a network organization based on the Shapley group value.,2016,83,Decision Support Systems,,db/journals/dss/dss83.html#FloresMT16,https://doi.org/10.1016/j.dss.2016.01.001 +Alok Gupta,Risk profile and consumer shopping behavior in electronic and traditional channels.,2004,38,Decision Support Systems,3,db/journals/dss/dss38.html#GuptaSW04,https://doi.org/10.1016/j.dss.2003.08.002 +Boon-Yuen Ng,Studying users' computer security behavior: A health belief perspective.,2009,46,Decision Support Systems,4,db/journals/dss/dss46.html#NgKX09,https://doi.org/10.1016/j.dss.2008.11.010 +Chad Lin,A model to develop effective virtual teams.,2008,45,Decision Support Systems,4,db/journals/dss/dss45.html#LinSL08,https://doi.org/10.1016/j.dss.2008.04.002 +Hyeseon Lee,Mining churning behaviors and developing retention strategies based on a partial least squares (PLS) model.,2011,52,Decision Support Systems,1,db/journals/dss/dss52.html#LeeLCIK11,https://doi.org/10.1016/j.dss.2011.07.005 +Arun Sen,Deductive data modeling: A new trend in database management for decision support systems.,1990,6,Decision Support Systems,1,db/journals/dss/dss6.html#SenC90,https://doi.org/10.1016/0167-9236(90)90013-H +Narasimha Bolloju,Formulation of qualitative models using fuzzy logic.,1996,17,Decision Support Systems,4,db/journals/dss/dss17.html#Bolloju96,https://doi.org/10.1016/0167-9236(96)00005-X +Sungsoon Park,Towards an interdisciplinary perspective of training intervention for negotiations: Developing strategic negotiation support contents.,2010,49,Decision Support Systems,2,db/journals/dss/dss49.html#ParkBRB10,https://doi.org/10.1016/j.dss.2010.02.007 +Rahat Ullah,From valence to emotions: Exploring the distribution of emotions in online product reviews.,2016,81,Decision Support Systems,,db/journals/dss/dss81.html#UllahAKL16,https://doi.org/10.1016/j.dss.2015.10.007 +Massimiliano de Leoni,Visual support for work assignment in process-aware information systems: Framework formalisation and implementation.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#LeoniAAH12,https://doi.org/10.1016/j.dss.2012.05.042 +Yung-Ming Li,A social appraisal mechanism for online purchase decision support in the micro-blogosphere.,2014,59,Decision Support Systems,,db/journals/dss/dss59.html#LiL14,https://doi.org/10.1016/j.dss.2013.11.007 +Fernando Ramos,Soccer strategies that live in the B2B world of negotiation and decision-making.,2003,35,Decision Support Systems,3,db/journals/dss/dss35.html#RamosJE03,https://doi.org/10.1016/S0167-9236(02)00083-0 +Georgios I. Doukidis,Decision support system concepts in expert systems: An empirical study.,1988,4,Decision Support Systems,3,db/journals/dss/dss4.html#Doukidis88,https://doi.org/10.1016/0167-9236(88)90021-8 +Christoph Lohrmann,A novel similarity classifier with multiple ideal vectors based on k-means clustering.,2018,111,Decision Support Systems,,db/journals/dss/dss111.html#LohrmannL18,https://doi.org/10.1016/j.dss.2018.04.003 +Saif M. Mohammad,From once upon a time to happily ever after: Tracking emotions in mail and books.,2012,53,Decision Support Systems,4,db/journals/dss/dss53.html#Mohammad12,https://doi.org/10.1016/j.dss.2012.05.030 +Oh Byung Kwon,Applying case-based reasoning and multi-agent intelligent system to context-aware comparative shopping.,2004,37,Decision Support Systems,2,db/journals/dss/dss37.html#KwonS04,https://doi.org/10.1016/S0167-9236(03)00007-1 +M. Daud Ahmed,Sustainability modelling and reporting: From roadmap to implementation.,2012,53,Decision Support Systems,3,db/journals/dss/dss53.html#AhmedS12,https://doi.org/10.1016/j.dss.2012.02.004 +Donald Nute,Defeasible logic graphs: II. Implementation.,1998,22,Decision Support Systems,3,db/journals/dss/dss22.html#NuteHH98,https://doi.org/10.1016/S0167-9236(97)00064-X +Christiane Rosen,An auction design for local reserve energy markets.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#RosenM13,https://doi.org/10.1016/j.dss.2013.05.022 +Jung Lee,The long tail or the short tail: The category-specific impact of eWOM on sales distribution.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#LeeLS11,https://doi.org/10.1016/j.dss.2011.02.011 +Dionysios S. Demetis,Fighting money laundering with technology: A case study of Bank X in the UK.,2018,105,Decision Support Systems,,db/journals/dss/dss105.html#Demetis18,https://doi.org/10.1016/j.dss.2017.11.005 +Chetan Kumar,Performance evaluation for implementations of a network of proxy caches.,2009,46,Decision Support Systems,2,db/journals/dss/dss46.html#Kumar09,https://doi.org/10.1016/j.dss.2008.09.002 +María-José Verdecho,Prioritization and management of inter-enterprise collaborative performance.,2012,53,Decision Support Systems,1,db/journals/dss/dss53.html#VerdechoAR12,https://doi.org/10.1016/j.dss.2011.12.011 +Ranadeep Mukherjee,Classifying and detecting anomalies in hybrid knowledge-based systems.,1997,21,Decision Support Systems,4,db/journals/dss/dss21.html#MukherjeeGP97,https://doi.org/10.1016/S0167-9236(97)00043-2 +Ping Zhang 0002,An image construction method for visualizing managerial data.,1998,23,Decision Support Systems,4,db/journals/dss/dss23.html#Zhang98,https://doi.org/10.1016/S0167-9236(98)00050-5 +Parag C. Pendharkar,The theory and experiments of designing cooperative intelligent systems.,2007,43,Decision Support Systems,3,db/journals/dss/dss43.html#Pendharkar07,https://doi.org/10.1016/j.dss.2005.05.028 +Yi Peng 0001,A Multi-criteria Convex Quadratic Programming model for credit data analysis.,2008,44,Decision Support Systems,4,db/journals/dss/dss44.html#PengKSC08,https://doi.org/10.1016/j.dss.2007.12.001 +Hemant K. Bhargava,Editor's introduction to the special issue on logic modelling.,1996,16,Decision Support Systems,1,db/journals/dss/dss16.html#Bhargava96,https://doi.org/10.1016/S0167-9236(96)90009-3 +Jürgen Antes,SYNOPSE: a model-based decision support system for the evaluation of flight schedules for cargo airlines.,1998,22,Decision Support Systems,4,db/journals/dss/dss22.html#AntesCDTW98,https://doi.org/10.1016/S0167-9236(98)00027-X +Leo B. Hartman,Application of Markov decision processes to search problems.,1995,14,Decision Support Systems,3,db/journals/dss/dss14.html#HartmanH95,https://doi.org/10.1016/0167-9236(94)00021-J +Anitesh Barua,Introduction to the special issue on economics of information systems.,1997,19,Decision Support Systems,2,db/journals/dss/dss19.html#BaruaR97,https://doi.org/10.1016/S0167-9236(96)00041-3 +Youngohc Yoon,Integrating artificial neural networks with rule-based expert systems.,1994,11,Decision Support Systems,5,db/journals/dss/dss11.html#YoonGS94,https://doi.org/10.1016/0167-9236(94)90021-3 +W. S. Shen,A DSS for empty container distribution planning.,1995,15,Decision Support Systems,1,db/journals/dss/dss15.html#ShenK95,https://doi.org/10.1016/0167-9236(94)00037-S +Robert P. Schumaker,An evaluation of the chat and knowledge delivery components of a low-level dialog system: The AZ-ALICE experiment.,2007,42,Decision Support Systems,4,db/journals/dss/dss42.html#SchumakerGCL07,https://doi.org/10.1016/j.dss.2006.07.001 +Benjamin Ngugi,Biometric keypads: Improving accuracy through optimal PIN selection.,2011,50,Decision Support Systems,4,db/journals/dss/dss50.html#NgugiTT11,https://doi.org/10.1016/j.dss.2010.08.016 +Jae-Cheol Kim,Cannibalization and competition effects on a manufacturer's retail channel strategies: Implications on an omni-channel business model.,2018,109,Decision Support Systems,,db/journals/dss/dss109.html#KimC18,https://doi.org/10.1016/j.dss.2018.01.007 +David Veganzones,An investigation of bankruptcy prediction in imbalanced datasets.,2018,112,Decision Support Systems,,db/journals/dss/dss112.html#VeganzonesS18,https://doi.org/10.1016/j.dss.2018.06.011 +Roger McHaney,Multivariate regression metamodel: A DSS application in industry.,1997,19,Decision Support Systems,1,db/journals/dss/dss19.html#McHaneyD97,https://doi.org/10.1016/S0167-9236(96)00037-1 +Marilyn M. Mantei,Observation of executives using a computer supported meeting environment.,1989,5,Decision Support Systems,2,db/journals/dss/dss5.html#Mantei89,https://doi.org/10.1016/0167-9236(89)90004-3 +Parag C. Pendharkar,Technical efficiency-based selection of learning cases to improve forecasting accuracy of neural networks under monotonicity assumption.,2003,36,Decision Support Systems,1,db/journals/dss/dss36.html#PendharkarR03,https://doi.org/10.1016/S0167-9236(02)00138-0 +Frank van Harmelen,Applying rule-base anomalies to KADS inference structures.,1997,21,Decision Support Systems,4,db/journals/dss/dss21.html#Harmelen97,https://doi.org/10.1016/S0167-9236(97)00045-6 +Zan Huang,Credit rating analysis with support vector machines and neural networks: a market comparative study.,2004,37,Decision Support Systems,4,db/journals/dss/dss37.html#HuangCHCW04,https://doi.org/10.1016/S0167-9236(03)00086-1 +David B. Skillicorn,Novel information discovery for intelligence and counterterrorism.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#SkillicornV07,https://doi.org/10.1016/j.dss.2006.04.005 +Fan Wang,A stochastic beam search for the berth allocation problem.,2007,42,Decision Support Systems,4,db/journals/dss/dss42.html#WangL07,https://doi.org/10.1016/j.dss.2006.06.008 +Robert W. Blanning,Preface.,1993,9,Decision Support Systems,1,db/journals/dss/dss9.html#BlanningHW93,https://doi.org/10.1016/0167-9236(93)90018-X +Sanghee Lim,Loyalty programs and dynamic consumer preference in online markets.,2015,78,Decision Support Systems,,db/journals/dss/dss78.html#LimL15,https://doi.org/10.1016/j.dss.2015.05.008 +M. Brian Blake,Agent-oriented compositional approaches to services-based cross-organizational workflow.,2005,40,Decision Support Systems,1,db/journals/dss/dss40.html#BlakeG05,https://doi.org/10.1016/j.dss.2004.04.003 +Denis Borenstein,Towards a practical method to validate decision support systems.,1998,23,Decision Support Systems,3,db/journals/dss/dss23.html#Borenstein98,https://doi.org/10.1016/S0167-9236(98)00046-3 +Olga Ivanova,How can online marketplaces reduce rating manipulation? A new approach on dynamic aggregation of online ratings.,2017,104,Decision Support Systems,,db/journals/dss/dss104.html#IvanovaS17,https://doi.org/10.1016/j.dss.2017.10.003 +James H. Gerlach,An approach to dialog management for presentation and manipulation of composite models in decision support systems.,1990,6,Decision Support Systems,3,db/journals/dss/dss6.html#GerlachK90,https://doi.org/10.1016/0167-9236(90)90016-K +Steven O. Kimbrough,Logic modeling: A tool for management science.,1988,4,Decision Support Systems,1,db/journals/dss/dss4.html#KimbroughL88a,https://doi.org/10.1016/0167-9236(88)90094-2 +Ming-Tsang Lu,Improving RFID adoption in Taiwan's healthcare industry based on a DEMATEL technique with a hybrid MCDM model.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#LuLT13,https://doi.org/10.1016/j.dss.2013.06.006 +James Y. L. Thong,Introduction to the PACIS2007 special issue for decision support systems.,2009,46,Decision Support Systems,4,db/journals/dss/dss46.html#ThongT09,https://doi.org/10.1016/j.dss.2008.11.011 +Vasco Furtado,A bio-inspired crime simulation model.,2009,48,Decision Support Systems,1,db/journals/dss/dss48.html#FurtadoMCMP09,https://doi.org/10.1016/j.dss.2009.08.008 +Chunyan Miao,Balancing quality and budget considerations in mobile crowdsourcing.,2016,90,Decision Support Systems,,db/journals/dss/dss90.html#MiaoYSL16,https://doi.org/10.1016/j.dss.2016.06.019 +Tony Yu-Ju Tu,Lightweight non-distance-bounding means to address RFID relay attacks.,2017,102,Decision Support Systems,,db/journals/dss/dss102.html#TuP17,https://doi.org/10.1016/j.dss.2017.06.008 +Michael Scholz,Dynamic effects of user- and marketer-generated content on consumer purchase behavior: Modeling the hierarchical structure of social media websites.,2018,113,Decision Support Systems,,db/journals/dss/dss113.html#ScholzSHDLP18,https://doi.org/10.1016/j.dss.2018.07.001 +Ee-Peng Lim,Accommodating instance heterogeneities in database integration.,2004,38,Decision Support Systems,2,db/journals/dss/dss38.html#LimC04,https://doi.org/10.1016/S0167-9236(03)00103-9 +Cecil Chua Eng Huang,Deriving knowledge representation guidelines by analyzing knowledge engineer behavior.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#HuangSC12,https://doi.org/10.1016/j.dss.2012.05.038 +Qijia Tian,An organizational decision support system for effective R and D project selection.,2005,39,Decision Support Systems,3,db/journals/dss/dss39.html#TianMLKL05,https://doi.org/10.1016/j.dss.2003.08.005 +Laura Grosswiele,A decision framework for the consolidation of performance measurement systems.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#GrosswieleRF13,https://doi.org/10.1016/j.dss.2012.10.027 +Walter Didimo,A visual analytics system to support tax evasion discovery.,2018,110,Decision Support Systems,,db/journals/dss/dss110.html#DidimoGLMP18,https://doi.org/10.1016/j.dss.2018.03.008 +Benjamin Edelman,Strategic bidder behavior in sponsored search auctions.,2007,43,Decision Support Systems,1,db/journals/dss/dss43.html#EdelmanO07,https://doi.org/10.1016/j.dss.2006.08.008 +Melody Y. Kiang,The application of SOM as a decision support tool to identify AACSB peer schools.,2009,47,Decision Support Systems,1,db/journals/dss/dss47.html#KiangFCFC09,https://doi.org/10.1016/j.dss.2008.12.010 +Yen-Chun Chou,Total factor productivity growth in information technology services industries: A multi-theoretical perspective.,2014,62,Decision Support Systems,,db/journals/dss/dss62.html#ChouS14,https://doi.org/10.1016/j.dss.2014.03.009 +Dan Jong Kim,A multidimensional trust formation model in B-to-C e-commerce: a conceptual framework and content analyses of academia/practitioner perspectives.,2005,40,Decision Support Systems,2,db/journals/dss/dss40.html#KimSBR05,https://doi.org/10.1016/j.dss.2004.01.066 +Carlo Dell'Aquila,Architecture of a relational decision support system.,1989,5,Decision Support Systems,1,db/journals/dss/dss5.html#DellAquilaLTC89,https://doi.org/10.1016/0167-9236(89)90029-8 +Abraham Seidmann,"Introduction to the special issue on ""information issues in supply chain and in service system design"".",2011,51,Decision Support Systems,4,db/journals/dss/dss51.html#SeidmannJZ11,https://doi.org/10.1016/j.dss.2011.02.001 +Michael J. Shaw,Machine learning methods for intelligent decision support An introduction.,1993,10,Decision Support Systems,2,db/journals/dss/dss10.html#Shaw93,https://doi.org/10.1016/0167-9236(93)90031-W +Sangjae Lee,EDI controls design support system using relational database system.,2000,29,Decision Support Systems,2,db/journals/dss/dss29.html#LeeH00,https://doi.org/10.1016/S0167-9236(00)00071-3 +Stephen Shaoyi Liao,Coalition formation based on marginal contributions and the Markov process.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#LiaoZLW14,https://doi.org/10.1016/j.dss.2013.09.019 +Karl Reiner Lang,A design of a DSS intermediary for electronic markets.,1999,25,Decision Support Systems,3,db/journals/dss/dss25.html#LangW99,https://doi.org/10.1016/S0167-9236(99)00005-6 +Vidyanand Choudhary,Economic incentives to adopt electronic payment schemes under competition.,2009,46,Decision Support Systems,2,db/journals/dss/dss46.html#ChoudharyT09,https://doi.org/10.1016/j.dss.2008.10.006 +Steven D. Silver,A dual-motive heuristic for member information initiation in group decision making: Managing risk and commitment.,1995,15,Decision Support Systems,1,db/journals/dss/dss15.html#Silver95,https://doi.org/10.1016/0167-9236(94)00050-3 +Hefu Liu,The impact of IT capabilities on firm performance: The mediating roles of absorptive capacity and supply chain agility.,2013,54,Decision Support Systems,3,db/journals/dss/dss54.html#LiuKWH13,https://doi.org/10.1016/j.dss.2012.12.016 +Bruce R. Hartsough,A streamlined approach for calculating expected utility and expected value of perfect information.,1990,6,Decision Support Systems,1,db/journals/dss/dss6.html#HartsoughT90,https://doi.org/10.1016/0167-9236(90)90010-O +Sang C. Park,Dynamic rule refinement in knowledge-based data mining systems.,2001,31,Decision Support Systems,2,db/journals/dss/dss31.html#ParkPS01,https://doi.org/10.1016/S0167-9236(00)00132-9 +Qiu-Hong Wang,Delayed product introduction.,2012,53,Decision Support Systems,4,db/journals/dss/dss53.html#WangH12,https://doi.org/10.1016/j.dss.2012.05.013 +Krzysztof Ciomek,Predictive analytics and disused railways requalification: Insights from a Post Factum Analysis perspective.,2018,105,Decision Support Systems,,db/journals/dss/dss105.html#CiomekFK18,https://doi.org/10.1016/j.dss.2017.10.010 +Abdellah Sadki,Planning oncologists of ambulatory care units.,2013,55,Decision Support Systems,2,db/journals/dss/dss55.html#SadkiXC13,https://doi.org/10.1016/j.dss.2012.10.020 +Paul Raj Devadoss,Structurational analysis of e-government initiatives: a case study of SCO.,2003,34,Decision Support Systems,3,db/journals/dss/dss34.html#DevadossPH03,https://doi.org/10.1016/S0167-9236(02)00120-3 +Yu You,Meeting others - supporting situation awareness on the WWW.,2001,32,Decision Support Systems,1,db/journals/dss/dss32.html#YouP01,https://doi.org/10.1016/S0167-9236(01)00101-4 +Carolyn F. Holton,Identifying disgruntled employee systems fraud risk through text mining: A simple solution for a multi-billion dollar problem.,2009,46,Decision Support Systems,4,db/journals/dss/dss46.html#Holton09,https://doi.org/10.1016/j.dss.2008.11.013 +Katta G. Murty,A decision support system for operations in a container terminal.,2005,39,Decision Support Systems,3,db/journals/dss/dss39.html#MurtyLWL05,https://doi.org/10.1016/j.dss.2003.11.002 +Nelson Lau,Newsvendor pull-to-center reconsidered.,2014,58,Decision Support Systems,,db/journals/dss/dss58.html#LauHB14,https://doi.org/10.1016/j.dss.2012.12.041 +Mohsen Naderpour,An intelligent situation awareness support system for safety-critical environments.,2014,59,Decision Support Systems,,db/journals/dss/dss59.html#NaderpourLZ14,https://doi.org/10.1016/j.dss.2014.01.004 +Hongwei Zhu 0002,Assessing the quality of large-scale data standards: A case of XBRL GAAP Taxonomy.,2014,59,Decision Support Systems,,db/journals/dss/dss59.html#0002W14,https://doi.org/10.1016/j.dss.2014.01.006 +Aimo A. Törn,Decision support by rapid simulation using simulation nets.,1990,6,Decision Support Systems,4,db/journals/dss/dss6.html#Torn90,https://doi.org/10.1016/0167-9236(90)90025-M +Kai Li,Building a targeted mobile advertising system for location-based services.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#LiD12,https://doi.org/10.1016/j.dss.2012.02.002 +Jae Kyu Lee,Intelligent agents and pricing in electronic commerce.,2000,28,Decision Support Systems,4,db/journals/dss/dss28.html#Lee00,https://doi.org/10.1016/S0167-9236(99)00090-1 +David Arnott,Executive information systems development in an emerging economy.,2007,42,Decision Support Systems,4,db/journals/dss/dss42.html#ArnottJO07,https://doi.org/10.1016/j.dss.2004.11.010 +S. H. Kwok,Content-based object organization for efficient image retrieval in image databases.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#KwokZ06,https://doi.org/10.1016/j.dss.2006.04.013 +Ilke Onur,Impact of ending rules in online auctions: The case of Yahoo.com.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#OnurT06,https://doi.org/10.1016/j.dss.2006.03.010 +Wingyan Chung,Fighting cybercrime: a review and the Taiwan experience.,2006,41,Decision Support Systems,3,db/journals/dss/dss41.html#ChungCCC06,https://doi.org/10.1016/j.dss.2004.06.006 +Shiu-Li Huang,Designing a cross-language comparison-shopping agent.,2011,50,Decision Support Systems,2,db/journals/dss/dss50.html#HuangT11,https://doi.org/10.1016/j.dss.2010.10.004 +Yuan-Chun Jiang,Maximizing customer satisfaction through an online recommendation system: A novel associative classification model.,2010,48,Decision Support Systems,3,db/journals/dss/dss48.html#JiangSL10,https://doi.org/10.1016/j.dss.2009.06.006 +Mario T. Tabucanon,Microcomputer-based heuristic approach to vehicle routing for after-sales servicing.,1995,13,Decision Support Systems,2,db/journals/dss/dss13.html#TabucanonKM95,https://doi.org/10.1016/0167-9236(93)E0040-K +Upkar Varshney,A framework for supporting emergency messages in wireless patient monitoring.,2008,45,Decision Support Systems,4,db/journals/dss/dss45.html#Varshney08,https://doi.org/10.1016/j.dss.2008.03.006 +Pei-Chann Chang,A hybrid system by evolving case-based reasoning with genetic algorithm in wholesaler's returning book forecasting.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#ChangLL06,https://doi.org/10.1016/j.dss.2006.02.014 +Hong Xu,Valuation-based systems for decision analysis using belief functions.,1997,20,Decision Support Systems,2,db/journals/dss/dss20.html#Xu97,https://doi.org/10.1016/S0167-9236(96)00062-0 +Zhaoran Xu,Understanding the formation of reciprocal hyperlinks between e-marketplace sellers.,2017,98,Decision Support Systems,,db/journals/dss/dss98.html#XuWFTS17,https://doi.org/10.1016/j.dss.2017.05.001 +Jyri Mustajoki,Smart-Swaps - A decision support system for multicriteria decision analysis with the even swaps method.,2007,44,Decision Support Systems,1,db/journals/dss/dss44.html#MustajokiH07,https://doi.org/10.1016/j.dss.2007.04.004 +Manoj Parameswaran,A market-based allocation mechanism for the DiffServ framework.,2001,31,Decision Support Systems,3,db/journals/dss/dss31.html#ParameswaranSW01,https://doi.org/10.1016/S0167-9236(00)00143-3 +Thomas Verbraken,Predicting online channel acceptance with social network data.,2014,63,Decision Support Systems,,db/journals/dss/dss63.html#VerbrakenGVB14,https://doi.org/10.1016/j.dss.2013.08.011 +William B. Richmond,Incomplete contracting issues in information systems development outsourcing.,1992,8,Decision Support Systems,5,db/journals/dss/dss8.html#RichmondSW92,https://doi.org/10.1016/0167-9236(92)90029-O +Varghese S. Jacob,A framework for supporting distributed group decision-making.,1992,8,Decision Support Systems,1,db/journals/dss/dss8.html#JacobP92,https://doi.org/10.1016/0167-9236(92)90034-M +Gilbert G. Karuga,AdPalette: an algorithm for customizing online advertisements on the fly.,2001,32,Decision Support Systems,2,db/journals/dss/dss32.html#KarugaKNR01,https://doi.org/10.1016/S0167-9236(01)00104-X +Ta-Tao Chuang,The development of an adaptive decision support system.,1998,24,Decision Support Systems,2,db/journals/dss/dss24.html#ChuangY98,https://doi.org/10.1016/S0167-9236(98)00065-7 +Pavel M. Brusilovskiy,Incorporating expert judgement into multivariate polynomial modeling Topic department: Decision support systems foundations.,1996,18,Decision Support Systems,2,db/journals/dss/dss18.html#BrusilovskiyT96,https://doi.org/10.1016/0167-9236(96)00039-5 +Eugenia Y. Huang,Exploring the effect of boundary objects on knowledge interaction.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#HuangH13,https://doi.org/10.1016/j.dss.2013.05.012 +Yunhong Xu,Combining social network and semantic concept analysis for personalized academic researcher recommendation.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#XuGHMLX12,https://doi.org/10.1016/j.dss.2012.08.003 +Saeed Piri,A data analytics approach to building a clinical decision support system for diabetic retinopathy: Developing and deploying a model ensemble.,2017,101,Decision Support Systems,,db/journals/dss/dss101.html#PiriDLZ17,https://doi.org/10.1016/j.dss.2017.05.012 +Shigeo Kaneda,INTERFACER: A user interface tool for interactive expert-systems.,1996,18,Decision Support Systems,1,db/journals/dss/dss18.html#KanedaIHK96,https://doi.org/10.1016/0167-9236(96)00022-X +Donald Nute,Defeasible logic graphs: I. Theory.,1998,22,Decision Support Systems,3,db/journals/dss/dss22.html#NuteE98,https://doi.org/10.1016/S0167-9236(97)00063-8 +Yong Lu,Information exchange in virtual communities under extreme disaster conditions.,2011,50,Decision Support Systems,2,db/journals/dss/dss50.html#LuY11,https://doi.org/10.1016/j.dss.2010.11.011 +M. A. H. Farquad,Preprocessing unbalanced data using support vector machine.,2012,53,Decision Support Systems,1,db/journals/dss/dss53.html#FarquadB12,https://doi.org/10.1016/j.dss.2012.01.016 +Hans-Martin Krolzig,Multiperiod forecasting in stock markets: a paradox solved.,2004,37,Decision Support Systems,4,db/journals/dss/dss37.html#KrolzigT04,https://doi.org/10.1016/S0167-9236(03)00085-X +Robert S. Garfinkel,Design of an interactive spell checker: optimizing the list of offered words.,2003,35,Decision Support Systems,3,db/journals/dss/dss35.html#GarfinkelFL03,https://doi.org/10.1016/S0167-9236(02)00115-X +Xiaolin Du,OpinionRings: Inferring and visualizing the opinion tendency of socially connected users.,2015,75,Decision Support Systems,,db/journals/dss/dss75.html#DuYLL15,https://doi.org/10.1016/j.dss.2015.04.007 +Vishal Midha,Governance practices and software maintenance: A study of open source projects.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#MidhaB12,https://doi.org/10.1016/j.dss.2012.03.002 +Mounir Ben Ayed,A user-centered approach for the design and implementation of KDD-based DSS: A case study in the healthcare domain.,2010,50,Decision Support Systems,1,db/journals/dss/dss50.html#AyedLKA10,https://doi.org/10.1016/j.dss.2010.07.003 +Aviv Segev,Enhancing portability with multilingual ontology-based knowledge management.,2008,45,Decision Support Systems,3,db/journals/dss/dss45.html#SegevG08,https://doi.org/10.1016/j.dss.2007.07.011 +E. W. T. Ngai,Design and development of a context-aware decision support system for real-time accident handling in logistics.,2012,52,Decision Support Systems,4,db/journals/dss/dss52.html#NgaiLWLCC12,https://doi.org/10.1016/j.dss.2011.11.016 +Weiquan Wang,Effects of rational and social appeals of online recommendation agents on cognition- and affect-based trust.,2016,86,Decision Support Systems,,db/journals/dss/dss86.html#WangQKB16,https://doi.org/10.1016/j.dss.2016.03.007 +Abderrahim Bourouis,An intelligent mobile based decision support system for retinal disease diagnosis.,2014,59,Decision Support Systems,,db/journals/dss/dss59.html#BourouisFHZ14,https://doi.org/10.1016/j.dss.2014.01.005 +Rick L. Wilson,Bankruptcy prediction using neural networks.,1994,11,Decision Support Systems,5,db/journals/dss/dss11.html#WilsonS94,https://doi.org/10.1016/0167-9236(94)90024-8 +Mogens Kühn Pedersen,Distributed knowledge management based on product state models - the case of decision support in health care administration.,2001,31,Decision Support Systems,1,db/journals/dss/dss31.html#PedersenL01,https://doi.org/10.1016/S0167-9236(00)00124-X +Sangmi Chai,Firms' information security investment decisions: Stock market evidence of investors' behavior.,2011,50,Decision Support Systems,4,db/journals/dss/dss50.html#ChaiKR11,https://doi.org/10.1016/j.dss.2010.08.017 +Timothy R. Hill,Neural network models for intelligent support of managerial decision making.,1994,11,Decision Support Systems,5,db/journals/dss/dss11.html#HillR94,https://doi.org/10.1016/0167-9236(94)90018-3 +Dianne Hall,Extending Unbounded Systems Thinking with agent-oriented modeling: conceptualizing a multiple perspective decision-making support system.,2005,41,Decision Support Systems,1,db/journals/dss/dss41.html#HallGDC05,https://doi.org/10.1016/j.dss.2004.06.009 +Jungduck Kim,A survey of knowledge acquisition techniques and their relevance to managerial problem domains.,1988,4,Decision Support Systems,3,db/journals/dss/dss4.html#KimC88,https://doi.org/10.1016/0167-9236(88)90016-4 +Amir H. Khataie,Activity-Based Costing and Management applied in a hybrid Decision Support System for order management.,2011,52,Decision Support Systems,1,db/journals/dss/dss52.html#KhataieBS11,https://doi.org/10.1016/j.dss.2011.06.003 +Vittorio Maniezzo,Decision support for siting problems.,1998,23,Decision Support Systems,3,db/journals/dss/dss23.html#ManiezzoMP98,https://doi.org/10.1016/S0167-9236(98)00042-6 +Raja Nadiminti,Risk aversion and the value of information.,1996,16,Decision Support Systems,3,db/journals/dss/dss16.html#NadimintiMK96,https://doi.org/10.1016/0167-9236(95)00023-2 +Harvey J. Greenberg,Views of mathematical programming models and their instances.,1995,13,Decision Support Systems,1,db/journals/dss/dss13.html#GreenbergM95,https://doi.org/10.1016/0167-9236(93)E0029-D +Gerardine DeSanctis,The meaning of the interface : A functional and holistic evaluation of a meeting software system.,1994,11,Decision Support Systems,4,db/journals/dss/dss11.html#DeSanctisSP94,https://doi.org/10.1016/0167-9236(94)90079-5 +Khairul Nizam B.,Efficient identity matching using static pruning q-gram indexing approach.,2015,73,Decision Support Systems,,db/journals/dss/dss73.html#BN15,https://doi.org/10.1016/j.dss.2015.02.015 +Thomas Chesney,Networked individuals predict a community wide outcome from their local information.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#Chesney14,https://doi.org/10.1016/j.dss.2013.07.006 +Yuan Li 0002,Theories in online information privacy research: A critical review and an integrated framework.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#Li12,https://doi.org/10.1016/j.dss.2012.06.010 +Jyhshyan Lan,An investigation of neural network classifiers with unequal misclassification costs and group sizes.,2010,48,Decision Support Systems,4,db/journals/dss/dss48.html#LanHPZ10,https://doi.org/10.1016/j.dss.2009.11.008 +Edward Hartono,The role of technological know-how in c-commerce success.,2011,51,Decision Support Systems,1,db/journals/dss/dss51.html#HartonoHJ11,https://doi.org/10.1016/j.dss.2010.11.030 +Hyun Soo Kim,Supply chain formation using agent negotiation.,2010,49,Decision Support Systems,1,db/journals/dss/dss49.html#KimC10,https://doi.org/10.1016/j.dss.2010.01.004 +Marvin Fleischmann,The role of software updates in information systems continuance - An experimental study from a user perspective.,2016,83,Decision Support Systems,,db/journals/dss/dss83.html#FleischmannAGBH16,https://doi.org/10.1016/j.dss.2015.12.010 +Fei-Fei Cheng,Debiasing the framing effect: The effect of warning and involvement.,2010,49,Decision Support Systems,3,db/journals/dss/dss49.html#ChengW10,https://doi.org/10.1016/j.dss.2010.04.002 +Eric K. Clemons,An economic analysis of interorganizational information technology.,1992,8,Decision Support Systems,5,db/journals/dss/dss8.html#ClemonsK92,https://doi.org/10.1016/0167-9236(92)90027-M +Heidi D. Owens,Inductive consistency in knowledge-based decision support systems.,1995,13,Decision Support Systems,2,db/journals/dss/dss13.html#OwensP95,https://doi.org/10.1016/0167-9236(93)E0039-G +Ronald M. Lee,Direct manipulation of graph-based decision models.,1993,9,Decision Support Systems,4,db/journals/dss/dss9.html#Lee93,https://doi.org/10.1016/0167-9236(93)90049-9 +Salvatore Greco,Robust ordinal regression for multiple criteria group decision: UTAGMS-GROUP and UTADISGMS-GROUP.,2012,52,Decision Support Systems,3,db/journals/dss/dss52.html#GrecoKMS12,https://doi.org/10.1016/j.dss.2011.10.005 +Robert W. Blanning,A relational algebra for propositional logic.,1994,11,Decision Support Systems,2,db/journals/dss/dss11.html#Blanning94,https://doi.org/10.1016/0167-9236(94)90032-9 +Kathleen M. Swigger,Introduction.,2001,31,Decision Support Systems,3,db/journals/dss/dss31.html#Swigger01,https://doi.org/10.1016/S0167-9236(00)00138-X +Kshiti D. Joshi,Knowledge transfer within information systems development teams: Examining the role of knowledge source attributes.,2007,43,Decision Support Systems,2,db/journals/dss/dss43.html#JoshiSS07,https://doi.org/10.1016/j.dss.2006.10.003 +Daning Hu,Ontology-based scenario modeling and analysis for bank stress testing.,2014,63,Decision Support Systems,,db/journals/dss/dss63.html#HuYZH14,https://doi.org/10.1016/j.dss.2013.08.009 +Christian Gerber,A simulation and test of OptiMark's electronic matching algorithm and its simple variations for institutional block trading.,2004,36,Decision Support Systems,3,db/journals/dss/dss36.html#GerberTWW04,https://doi.org/10.1016/S0167-9236(02)00146-X +Nan Wang,Transition of electronic word-of-mouth services from web to mobile context: A trust transfer perspective.,2013,54,Decision Support Systems,3,db/journals/dss/dss54.html#WangSS13,https://doi.org/10.1016/j.dss.2012.12.015 +E. W. T. Ngai,The application of data mining techniques in financial fraud detection: A classification framework and an academic review of literature.,2011,50,Decision Support Systems,3,db/journals/dss/dss50.html#NgaiHWCS11,https://doi.org/10.1016/j.dss.2010.08.006 +Claudia V. Goldman,On experimental equilibria strategies for selecting sellers and satisfying buyers.,2004,38,Decision Support Systems,3,db/journals/dss/dss38.html#GoldmanKS04,https://doi.org/10.1016/S0167-9236(03)00119-2 +Jun Chen,Consumers' decisions in social commerce context: An empirical investigation.,2015,79,Decision Support Systems,,db/journals/dss/dss79.html#ChenS15,https://doi.org/10.1016/j.dss.2015.07.012 +Jungpil Hahn,Knowledge management systems and organizational knowledge processing challenges: A field experiment.,2009,47,Decision Support Systems,4,db/journals/dss/dss47.html#HahnW09,https://doi.org/10.1016/j.dss.2009.03.001 +Frada Burstein,Decision support in an uncertain and complex world.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#BursteinW07,https://doi.org/10.1016/j.dss.2006.09.001 +Harry Jiannan Wang,Policy-Driven Process Mapping (PDPM): Discovering process models from business policies.,2009,48,Decision Support Systems,1,db/journals/dss/dss48.html#WangZZ09,https://doi.org/10.1016/j.dss.2009.08.006 +Ramayya Krishnan,PDM: a knowledge-based tool for model construction.,1991,7,Decision Support Systems,4,db/journals/dss/dss7.html#Krishnan91,https://doi.org/10.1016/0167-9236(91)90060-O +Kar Yan Tam,Neural networks for decision support.,1994,11,Decision Support Systems,5,db/journals/dss/dss11.html#Tam94,https://doi.org/10.1016/0167-9236(94)90014-0 +Eric van Heck,Smart business networks: Concepts and empirical evidence.,2009,47,Decision Support Systems,4,db/journals/dss/dss47.html#HeckV09,https://doi.org/10.1016/j.dss.2009.05.002 +Wooje Cho,Vendors' incentives to invest in software quality in enterprise systems.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#ChoSX13,https://doi.org/10.1016/j.dss.2013.04.005 +Zhen Hong,A decision support system for procurement risk management in the presence of spot market.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#HongL13,https://doi.org/10.1016/j.dss.2012.12.031 +Gerd J. Hahn,Designing decision support systems for value-based management: A survey and an architecture.,2012,53,Decision Support Systems,3,db/journals/dss/dss53.html#HahnK12,https://doi.org/10.1016/j.dss.2012.02.016 +Dae-Young Choi,Enhancing the power of Web search engines by means of fuzzy query.,2003,35,Decision Support Systems,1,db/journals/dss/dss35.html#Choi03,https://doi.org/10.1016/S0167-9236(02)00095-7 +Xiao-Bai Li,A scalable decision tree system and its application in pattern recognition and intrusion detection.,2005,41,Decision Support Systems,1,db/journals/dss/dss41.html#Li05,https://doi.org/10.1016/j.dss.2004.06.016 +Edward Hartono,Measuring perceived security in B2C electronic commerce website usage: A respecification and validation.,2014,62,Decision Support Systems,,db/journals/dss/dss62.html#HartonoHKNS14,https://doi.org/10.1016/j.dss.2014.02.006 +Mark Vroblefski,Managing user relationships in hierarchies for information system security.,2007,43,Decision Support Systems,2,db/journals/dss/dss43.html#VroblefskiCSS07,https://doi.org/10.1016/j.dss.2006.11.010 +Steven O. Kimbrough,On representation schemes for promising electronically.,1990,6,Decision Support Systems,2,db/journals/dss/dss6.html#Kimbrough90,https://doi.org/10.1016/0167-9236(90)90003-A +Wen-Hsiang Lu,Using Web resources to construct multilingual medical thesaurus for cross-language medical information retrieval.,2008,45,Decision Support Systems,3,db/journals/dss/dss45.html#LuLCC08,https://doi.org/10.1016/j.dss.2007.07.004 +Serkan Ada,Impact of meta-analytic decisions on the conclusions drawn on the business value of information technology.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#AdaSB12,https://doi.org/10.1016/j.dss.2012.07.001 +Christy M. K. Cheung,The impact of electronic word-of-mouth communication: A literature analysis and integrative model.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#CheungT12,https://doi.org/10.1016/j.dss.2012.06.008 +Marcos R. S. Borges,Dealing with the effects of context mismatch in group work.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#BorgesBPP07,https://doi.org/10.1016/j.dss.2006.09.006 +Xiang Fang,An empirical study of web site navigation structures' impacts on web site usability.,2007,43,Decision Support Systems,2,db/journals/dss/dss43.html#FangH07,https://doi.org/10.1016/j.dss.2006.11.004 +Taedong Han,Generating large-scale repositories of reusable artifacts for conceptual design of information systems.,2008,45,Decision Support Systems,4,db/journals/dss/dss45.html#HanPS08,https://doi.org/10.1016/j.dss.2007.12.004 +Ling Liu,Core versus peripheral information technology employees and their impact on firm performance.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#LiuCBHB13,https://doi.org/10.1016/j.dss.2013.01.018 +Ivan Marsá-Maestre,From problems to protocols: Towards a negotiation handbook.,2014,60,Decision Support Systems,,db/journals/dss/dss60.html#Marsa-MaestreKJA14,https://doi.org/10.1016/j.dss.2013.05.019 +David Martens,Predicting going concern opinion with data mining.,2008,45,Decision Support Systems,4,db/journals/dss/dss45.html#MartensBBWV08,https://doi.org/10.1016/j.dss.2008.01.003 +Omar F. El-Gayar,A web-based multi-perspective decision support system for information security planning.,2010,50,Decision Support Systems,1,db/journals/dss/dss50.html#El-GayarF10,https://doi.org/10.1016/j.dss.2010.07.001 +Robb Klashner,A DSS Design Model for complex problems: Lessons from mission critical infrastructure.,2007,43,Decision Support Systems,3,db/journals/dss/dss43.html#KlashnerS07,https://doi.org/10.1016/j.dss.2005.05.027 +Nadine Meskens,Decision making in healthcare.,2013,55,Decision Support Systems,2,db/journals/dss/dss55.html#MeskensG13,https://doi.org/10.1016/j.dss.2012.10.014 +Sandra M. Richardson,Theoretical principles for knowledge management system design: Application to pediatric bipolar disorder.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#RichardsonCH06,https://doi.org/10.1016/j.dss.2005.11.001 +Jin-Xing Hao,Predicting problem-solving performance with concept maps: An information-theoretic approach.,2010,48,Decision Support Systems,4,db/journals/dss/dss48.html#HaoKLY10,https://doi.org/10.1016/j.dss.2009.12.001 +Steve Thompson,A model to support IT infrastructure planning and the allocation of IT governance authority.,2014,59,Decision Support Systems,,db/journals/dss/dss59.html#ThompsonESW14,https://doi.org/10.1016/j.dss.2013.10.010 +Rajiv Kishore,Enterprise integration using the agent paradigm: foundations of multi-agent-based integrative business information systems.,2006,42,Decision Support Systems,1,db/journals/dss/dss42.html#KishoreZR06,https://doi.org/10.1016/j.dss.2004.09.011 +Howard Hao-Chun Chuang,Mathematical modeling and Bayesian estimation for error-prone retail shelf audits.,2015,80,Decision Support Systems,,db/journals/dss/dss80.html#Chuang15,https://doi.org/10.1016/j.dss.2015.10.003 +Md. Dulal Hossain,Impact of psychological traits on user performance in information systems delivering customer service: IS management perspective.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#HossainMYC12,https://doi.org/10.1016/j.dss.2012.05.035 +Sumit Sarkar,An information theoretic technique to design belief network based expert systems.,1996,17,Decision Support Systems,1,db/journals/dss/dss17.html#SarkarSJM96,https://doi.org/10.1016/0167-9236(95)00020-8 +Herbjørn Nysveen,An exploratory study of customers' perception of company web sites offering various interactive applications: moderating effects of customers' Internet experience.,2004,37,Decision Support Systems,1,db/journals/dss/dss37.html#NysveenP04,https://doi.org/10.1016/S0167-9236(02)00212-9 +Zining Guo,A paradigmatic and methodological examination of knowledge management research: 2000 to 2004.,2008,44,Decision Support Systems,3,db/journals/dss/dss44.html#GuoS08,https://doi.org/10.1016/j.dss.2007.09.006 +Wen Yao,CONFlexFlow: Integrating Flexible clinical pathways into clinical decision support systems using context and rules.,2013,55,Decision Support Systems,2,db/journals/dss/dss55.html#YaoK13,https://doi.org/10.1016/j.dss.2012.10.008 +David Schuff,Comparing the understandability of alternative data warehouse schemas: An empirical study.,2011,52,Decision Support Systems,1,db/journals/dss/dss52.html#SchuffCT11,https://doi.org/10.1016/j.dss.2011.04.003 +Jane Fedorowicz,Representing modeling knowledge in an intelligent decision support system.,1986,2,Decision Support Systems,1,db/journals/dss/dss2.html#FedorowiczW86,https://doi.org/10.1016/0167-9236(86)90116-8 +Milosz Kadzinski,Stochastic ordinal regression for multiple criteria sorting problems.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#KadzinskiT13,https://doi.org/10.1016/j.dss.2012.12.030 +Bryan Hosack,The effect of system feedback and decision context on value-based decision-making behavior.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#Hosack07,https://doi.org/10.1016/j.dss.2006.03.005 +Alain Yee-Loong Chong,Predicting consumer decisions to adopt mobile commerce: Cross country empirical examination between China and Malaysia.,2012,53,Decision Support Systems,1,db/journals/dss/dss53.html#ChongCO12,https://doi.org/10.1016/j.dss.2011.12.001 +David C. Novak,A link-focused methodology for evaluating accessibility to emergency services.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#NovakS14,https://doi.org/10.1016/j.dss.2013.09.015 +James C. Moore,A model of decision-making with sequential information-acquisition (Part 1).,1986,2,Decision Support Systems,4,db/journals/dss/dss2.html#MooreW86,https://doi.org/10.1016/0167-9236(86)90001-1 +Tzu-Liang (Bill) Tseng,Design support systems: A case study of modular design of the set-top box from design knowledge externalization perspective.,2008,44,Decision Support Systems,4,db/journals/dss/dss44.html#TsengH08,https://doi.org/10.1016/j.dss.2007.10.013 +Stephen Murrell,A survey of tools for the validation and verification of knowledge-based systems: 1985-1995.,1997,21,Decision Support Systems,4,db/journals/dss/dss21.html#MurrellP97,https://doi.org/10.1016/S0167-9236(97)00047-X +Chun-Che Huang,Measurement of analytical knowledge-based corporate memory and its application.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#HuangFCY13,https://doi.org/10.1016/j.dss.2012.09.010 +J. Yen,Special issue of decision supports systems - intelligent agents and digital community.,2000,28,Decision Support Systems,3,db/journals/dss/dss28.html#Yen00,https://doi.org/10.1016/S0167-9236(99)00086-X +Javad Akbari Torkestani,An adaptive learning to rank algorithm: Learning automata approach.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#Torkestani12,https://doi.org/10.1016/j.dss.2012.08.005 +Gang Kou,Multiple criteria decision making and decision support systems - Guest editor's introduction.,2011,51,Decision Support Systems,2,db/journals/dss/dss51.html#KouSW11,https://doi.org/10.1016/j.dss.2010.11.027 +Sang Won Yoon,Transportation security decision support system for emergency response: A training prototype.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#YoonVPN08,https://doi.org/10.1016/j.dss.2008.06.002 +Jiangtao Qiu,A framework for exploring organizational structure in dynamic social networks.,2011,51,Decision Support Systems,4,db/journals/dss/dss51.html#QiuL11,https://doi.org/10.1016/j.dss.2011.01.011 +Jay F. Nunamaker Jr.,Experience with and future challenges in GDSS (group decision support systems): Preface.,1989,5,Decision Support Systems,2,db/journals/dss/dss5.html#Nunamaker89,https://doi.org/10.1016/0167-9236(89)90001-8 +David L. Olson,Capturing the high-risk environment of the transition economy in Bulgaria - a simulation-based DSS.,2007,42,Decision Support Systems,4,db/journals/dss/dss42.html#OlsonSJY07,https://doi.org/10.1016/j.dss.2004.11.005 +Alessandro Copetti,A decision-making mechanism for context inference in pervasive healthcare environments.,2013,55,Decision Support Systems,2,db/journals/dss/dss55.html#CopettiLLN13,https://doi.org/10.1016/j.dss.2012.10.010 +Damir Vandic,A semantic-based approach for searching and browsing tag spaces.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#VandicDF12a,https://doi.org/10.1016/j.dss.2012.08.010 +Mingyue Zhang,Prediction uncertainty in collaborative filtering: Enhancing personalized online product ranking.,2016,83,Decision Support Systems,,db/journals/dss/dss83.html#ZhangGC16,https://doi.org/10.1016/j.dss.2015.12.004 +Namo Kang,Agent-based e-marketplace system for more fair and efficient transaction.,2003,34,Decision Support Systems,2,db/journals/dss/dss34.html#KangH03,https://doi.org/10.1016/S0167-9236(02)00078-7 +Mark Klein,High-speed idea filtering with the bag of lemons.,2015,78,Decision Support Systems,,db/journals/dss/dss78.html#KleinG15,https://doi.org/10.1016/j.dss.2015.06.005 +Jan Mendling,Challenges of smart business process management: An introduction to the special issue.,2017,100,Decision Support Systems,,db/journals/dss/dss100.html#MendlingBBF17,https://doi.org/10.1016/j.dss.2017.06.009 +Noyan Ilk,Workforce management in omnichannel service centers with heterogeneous channel response urgencies.,2018,105,Decision Support Systems,,db/journals/dss/dss105.html#IlkBG18,https://doi.org/10.1016/j.dss.2017.10.008 +Pascal Urien,Elliptic curve-based RFID/NFC authentication with temperature sensor input for relay attacks.,2014,59,Decision Support Systems,,db/journals/dss/dss59.html#UrienP14,https://doi.org/10.1016/j.dss.2013.10.003 +James A. Rodger,A field study of database communication issues peculiar to users of a voice activated medical tracking application.,2007,43,Decision Support Systems,1,db/journals/dss/dss43.html#RodgerP07,https://doi.org/10.1016/j.dss.2006.08.005 +Anita Prinzie,Predicting home-appliance acquisition sequences: Markov/Markov for Discrimination and survival analysis for modeling sequential information in NPTB models.,2007,44,Decision Support Systems,1,db/journals/dss/dss44.html#PrinzieP07,https://doi.org/10.1016/j.dss.2007.02.008 +C.-H. Kung,High parallelism and a proof procedure I: Theoretical considerations.,1985,1,Decision Support Systems,4,db/journals/dss/dss1.html#Kung85,https://doi.org/10.1016/0167-9236(85)90172-1 +Jun He 0008,Scalable and noise tolerant web knowledge extraction for search task simplification.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#HeGLYC13,https://doi.org/10.1016/j.dss.2013.05.014 +Yan Dang,An integrated framework for analyzing multilingual content in Web 2.0 social media.,2014,61,Decision Support Systems,,db/journals/dss/dss61.html#DangZHBKWC14,https://doi.org/10.1016/j.dss.2014.02.004 +T. S. Raghu,A business process context for Knowledge Management.,2007,43,Decision Support Systems,3,db/journals/dss/dss43.html#RaghuV07,https://doi.org/10.1016/j.dss.2005.05.031 +Ali Dag,Predicting heart transplantation outcomes through data analytics.,2017,94,Decision Support Systems,,db/journals/dss/dss94.html#DagOYBM17,https://doi.org/10.1016/j.dss.2016.10.005 +Christos Giannoulis,A Web-based decision support system with ELECTRE III for a personalised ranking of British universities.,2010,48,Decision Support Systems,3,db/journals/dss/dss48.html#GiannoulisI10,https://doi.org/10.1016/j.dss.2009.06.008 +Aldo Franco Dragoni,Distributed decision support systems under limited degrees of competence: A simulation study.,1997,20,Decision Support Systems,1,db/journals/dss/dss20.html#Dragoni97,https://doi.org/10.1016/S0167-9236(96)00073-5 +Asil Oztekin,A machine learning-based usability evaluation method for eLearning systems.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#OztekinDTZ13,https://doi.org/10.1016/j.dss.2013.05.003 +Bala Iyer,Model management decision environment: a Web service prototype for spreadsheet models.,2005,40,Decision Support Systems,2,db/journals/dss/dss40.html#IyerSL05,https://doi.org/10.1016/j.dss.2004.01.008 +Timon C. Du,Managing knowledge on the Web - Extracting ontology from HTML Web.,2009,47,Decision Support Systems,4,db/journals/dss/dss47.html#DuLK09,https://doi.org/10.1016/j.dss.2009.02.011 +Tung X. Bui,Decision support in the future tense.,1997,19,Decision Support Systems,3,db/journals/dss/dss19.html#Bui97,https://doi.org/10.1016/S0167-9236(96)00053-X +Fulvio Buffa,MACRAME: A modelling methodology in multiactor contexts.,1996,17,Decision Support Systems,4,db/journals/dss/dss17.html#BuffaMN96,https://doi.org/10.1016/0167-9236(96)00008-5 +Tony Van Gestel,A process model to develop an internal rating system: Sovereign credit ratings.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#GestelBDGSV06,https://doi.org/10.1016/j.dss.2005.10.001 +Shengsheng Xiao,Investors' inertia behavior and their repeated decision-making in online reward-based crowdfunding market.,2018,111,Decision Support Systems,,db/journals/dss/dss111.html#XiaoY18,https://doi.org/10.1016/j.dss.2018.05.005 +Anteneh Ayanso,The moderating effects of keyword competition on the determinants of ad position in sponsored search advertising.,2015,70,Decision Support Systems,,db/journals/dss/dss70.html#AyansoK15,https://doi.org/10.1016/j.dss.2014.11.009 +Mustafa özbayrak,A knowledge-based decision support system for the management of parts and tools in FMS.,2003,35,Decision Support Systems,4,db/journals/dss/dss35.html#OzbayrakB03,https://doi.org/10.1016/S0167-9236(02)00128-8 +Amitava Dutta,Information systems architecture to support managed care business processes.,2000,30,Decision Support Systems,2,db/journals/dss/dss30.html#DuttaH00,https://doi.org/10.1016/S0167-9236(00)00098-1 +Jeffrey E. Teich,Multiple-issue auction and market algorithms for the world wide web.,1999,26,Decision Support Systems,1,db/journals/dss/dss26.html#TeichWW99,https://doi.org/10.1016/S0167-9236(99)00016-0 +Cecil Chua Eng Huang,An intelligent middleware for linear correlation discovery.,2002,32,Decision Support Systems,4,db/journals/dss/dss32.html#ChuaCL02,https://doi.org/10.1016/S0167-9236(01)00127-0 +Chuang Wang 0003,A theory of social media dependence: Evidence from microblog users.,2015,69,Decision Support Systems,,db/journals/dss/dss69.html#WangLH15,https://doi.org/10.1016/j.dss.2014.11.002 +Ming-Chi Lee,Predicting and explaining the adoption of online trading: An empirical study in Taiwan.,2009,47,Decision Support Systems,2,db/journals/dss/dss47.html#Lee09,https://doi.org/10.1016/j.dss.2009.02.003 +A. özaygen,Idea evaluation in innovation contest platforms: A network perspective.,2018,112,Decision Support Systems,,db/journals/dss/dss112.html#OzaygenB18,https://doi.org/10.1016/j.dss.2018.06.001 +Richard G. Ramirez,Independence and mappings in model-based decision support systems.,1993,10,Decision Support Systems,3,db/journals/dss/dss10.html#RamirezCL93,https://doi.org/10.1016/0167-9236(93)90067-D +ChoongWan Koo,A decision support system for determining the optimal size of a new expressway service area: Focused on the profitability.,2014,67,Decision Support Systems,,db/journals/dss/dss67.html#KooHK14,https://doi.org/10.1016/j.dss.2014.07.005 +Xuefei (Nancy) Deng,Knowledge boundary spanning and productivity in information systems support community.,2015,80,Decision Support Systems,,db/journals/dss/dss80.html#DengC15,https://doi.org/10.1016/j.dss.2015.09.005 +Eric W. T. Ngai,Fuzzy decision support system for risk analysis in e-commerce development.,2005,40,Decision Support Systems,2,db/journals/dss/dss40.html#NgaiW05,https://doi.org/10.1016/j.dss.2003.12.002 +Detlof von Winterfeldt,Expert systems and behavioral decision research.,1988,4,Decision Support Systems,4,db/journals/dss/dss4.html#Winterfeldt88,https://doi.org/10.1016/0167-9236(88)90009-7 +Jie Zhang,Feedback reviews and bidding in online auctions: An integrated hedonic regression and fuzzy logic expert system approach.,2013,55,Decision Support Systems,4,db/journals/dss/dss55.html#ZhangPL13,https://doi.org/10.1016/j.dss.2012.12.025 +Michael V. Mannino,The cost-minimizing inverse classification problem: a genetic algorithm approach.,2000,29,Decision Support Systems,3,db/journals/dss/dss29.html#ManninoK00,https://doi.org/10.1016/S0167-9236(00)00077-4 +S. Kingsley Gnanendran,Alternative model representations and computing capacity: Implications for model management.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#GnanendranS06,https://doi.org/10.1016/j.dss.2005.11.008 +Ryan Porter,On cheating in sealed-bid auctions.,2005,39,Decision Support Systems,1,db/journals/dss/dss39.html#PorterS05,https://doi.org/10.1016/j.dss.2004.08.006 +Lennart J. Nederstigt,FLOPPIES: A Framework for Large-Scale Ontology Population of Product Information from Tabular Data in E-commerce Stores.,2014,59,Decision Support Systems,,db/journals/dss/dss59.html#NederstigtAVF14,https://doi.org/10.1016/j.dss.2014.01.001 +Vincent S. Lai,The impact of transborder data flow restrictions on international information systems management.,1998,22,Decision Support Systems,2,db/journals/dss/dss22.html#LaiF98,https://doi.org/10.1016/S0167-9236(97)00049-3 +Luis A. Guardiola,Cooperation and profit allocation in distribution chains.,2007,44,Decision Support Systems,1,db/journals/dss/dss44.html#GuardiolaMT07,https://doi.org/10.1016/j.dss.2006.12.015 +Nasir Ghiaseddin,An environment for development of decision support systems.,1986,2,Decision Support Systems,3,db/journals/dss/dss2.html#Ghiaseddin86,https://doi.org/10.1016/0167-9236(86)90028-X +Marilyn A. Walker,That is your evidence?: Classifying stance in online political debate.,2012,53,Decision Support Systems,4,db/journals/dss/dss53.html#WalkerAATMK12,https://doi.org/10.1016/j.dss.2012.05.032 +Choon Yeul Lee,A knowledge management scheme for meta-data: an information structure graph.,2004,36,Decision Support Systems,4,db/journals/dss/dss36.html#Lee04,https://doi.org/10.1016/S0167-9236(03)00025-3 +Rajiv M. Dewan,An economics perspective on the usefulness of decision support systems.,1992,8,Decision Support Systems,4,db/journals/dss/dss8.html#Dewan92,https://doi.org/10.1016/0167-9236(92)90051-P +Ali Amiri 0001,Dare to share: Protecting sensitive knowledge with data sanitization.,2007,43,Decision Support Systems,1,db/journals/dss/dss43.html#Amiri07,https://doi.org/10.1016/j.dss.2006.08.007 +Surya B. Yadav,Subjective understanding in strategic decision making : An information systems perspective.,1992,8,Decision Support Systems,1,db/journals/dss/dss8.html#YadavK92,https://doi.org/10.1016/0167-9236(92)90037-P +Nenad Jukic,Expediting analytical databases with columnar approach.,2017,95,Decision Support Systems,,db/journals/dss/dss95.html#JukicJSNA17,https://doi.org/10.1016/j.dss.2016.12.002 +Atreyi Kankanhalli,Cross-cultural differences and information systems developer values.,2004,38,Decision Support Systems,2,db/journals/dss/dss38.html#KankanhalliTWH04,https://doi.org/10.1016/S0167-9236(03)00101-5 +Huaiqing Wang,Modeling constraint-based negotiating agents.,2002,33,Decision Support Systems,2,db/journals/dss/dss33.html#WangLL02,https://doi.org/10.1016/S0167-9236(01)00138-5 +Antonio Pietrabissa,Optimal planning of sensor networks for asset tracking in hospital environments.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#PietrabissaPFG13,https://doi.org/10.1016/j.dss.2013.01.031 +Heung-Nam Kim,Collaborative user modeling for enhanced content filtering in recommender systems.,2011,51,Decision Support Systems,4,db/journals/dss/dss51.html#KimHLJE11,https://doi.org/10.1016/j.dss.2011.01.012 +Kuhn Yeom,Answer to comment on logical representation of integer programming models.,1998,22,Decision Support Systems,4,db/journals/dss/dss22.html#YeomL98,https://doi.org/10.1016/S0167-9236(97)00055-9 +Gilberto Montibeller,Supporting factoring transactions in Brazil using reasoning maps: a language-based DSS for evaluating accounts receivable.,2007,42,Decision Support Systems,4,db/journals/dss/dss42.html#MontibellerBL07,https://doi.org/10.1016/j.dss.2004.11.011 +Hemant K. Bhargava,Model management : An embedded languages approach.,1993,10,Decision Support Systems,3,db/journals/dss/dss10.html#BhargavaK93,https://doi.org/10.1016/0167-9236(93)90064-A +Indranil Bose,The impact of adoption of identity theft countermeasures on firm value.,2013,55,Decision Support Systems,3,db/journals/dss/dss55.html#BoseL13,https://doi.org/10.1016/j.dss.2013.03.001 +Nicolas Pröllochs,Negation scope detection in sentiment analysis: Decision support for news-driven trading.,2016,88,Decision Support Systems,,db/journals/dss/dss88.html#ProllochsFN16,https://doi.org/10.1016/j.dss.2016.05.009 +Wolfgang Ketter,Detecting and forecasting economic regimes in multi-agent automated exchanges.,2009,47,Decision Support Systems,4,db/journals/dss/dss47.html#KetterCGGS09,https://doi.org/10.1016/j.dss.2009.05.012 +Beomsoo Kim,Virtual field experiments for a digital economy: a new research methodology for exploring an information economy.,2002,32,Decision Support Systems,3,db/journals/dss/dss32.html#KimBW02,https://doi.org/10.1016/S0167-9236(01)00094-X +Sandeep Purao,Evaluating the adoption potential of design science efforts: The case of APSARA.,2008,44,Decision Support Systems,2,db/journals/dss/dss44.html#PuraoS08,https://doi.org/10.1016/j.dss.2007.04.007 +Martha Mendoza,Multidimensional analysis model for a document warehouse that includes textual measures.,2015,72,Decision Support Systems,,db/journals/dss/dss72.html#MendozaAMCL15,https://doi.org/10.1016/j.dss.2015.02.008 +Duen-Ren Liu,Collaborative relevance assessment for task-based knowledge support.,2008,44,Decision Support Systems,2,db/journals/dss/dss44.html#LiuW08,https://doi.org/10.1016/j.dss.2007.06.015 +Debabrata Dey,A conceptual model for the logical design of temporal databases.,1995,15,Decision Support Systems,4,db/journals/dss/dss15.html#DeyBS95,https://doi.org/10.1016/0167-9236(94)00044-8 +Reza Barkhi,Evaluating decision making performance in the GDSS environment using data envelopment analysis.,2010,49,Decision Support Systems,2,db/journals/dss/dss49.html#BarkhiK10,https://doi.org/10.1016/j.dss.2010.02.002 +Marco Antônio Amaral Féris,QPLAN: Decision support for evaluating planning quality in software development projects.,2017,96,Decision Support Systems,,db/journals/dss/dss96.html#FerisZG17,https://doi.org/10.1016/j.dss.2017.02.008 +Yi Sun,A location model for a web service intermediary.,2006,42,Decision Support Systems,1,db/journals/dss/dss42.html#SunK06,https://doi.org/10.1016/j.dss.2004.11.016 +Xian Yang,Integrating rich and heterogeneous information to design a ranking system for multiple products.,2016,84,Decision Support Systems,,db/journals/dss/dss84.html#YangYW16,https://doi.org/10.1016/j.dss.2016.02.009 +Yongjae Shin,Integration of heterogeneous CAD databases using STEP and the Internet.,2000,28,Decision Support Systems,4,db/journals/dss/dss28.html#ShinHB00,https://doi.org/10.1016/S0167-9236(99)00097-4 +Niki Panteli,Trust and conflict within virtual inter-organizational alliances: a framework for facilitating knowledge sharing.,2005,39,Decision Support Systems,4,db/journals/dss/dss39.html#PanteliS05,https://doi.org/10.1016/j.dss.2004.03.003 +Lu Zhen,Recommender system based on workflow.,2009,48,Decision Support Systems,1,db/journals/dss/dss48.html#ZhenHJ09,https://doi.org/10.1016/j.dss.2009.08.002 +Matthew D. Bailey,MeetOpt: A multi-event coaching decision support system.,2018,112,Decision Support Systems,,db/journals/dss/dss112.html#BaileyN18,https://doi.org/10.1016/j.dss.2018.06.007 +Heng Xu,A Value Sensitive Design Investigation of Privacy Enhancing Tools in Web Browsers.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#XuCB12,https://doi.org/10.1016/j.dss.2012.06.003 +Mark Schneider,Risk aversion and loss aversion in core-selecting auctions.,2015,79,Decision Support Systems,,db/journals/dss/dss79.html#SchneiderDG15,https://doi.org/10.1016/j.dss.2015.08.007 +Luís Santos,A web spatial decision support system for vehicle routing using Google Maps.,2011,51,Decision Support Systems,1,db/journals/dss/dss51.html#SantosCA11,https://doi.org/10.1016/j.dss.2010.11.008 +Mikel álvarez-Mozos,Parallel characterizations of a generalized Shapley value and a generalized Banzhaf value for cooperative games with level structure of cooperation.,2011,52,Decision Support Systems,1,db/journals/dss/dss52.html#Alvarez-MozosT11,https://doi.org/10.1016/j.dss.2011.04.005 +Mark Keil,Usefulness and ease of use: field study evidence regarding task considerations.,1995,13,Decision Support Systems,1,db/journals/dss/dss13.html#KeilBK95,https://doi.org/10.1016/0167-9236(94)E0032-M +Christopher C. Yang,Visualization of large category map for Internet browsing.,2003,35,Decision Support Systems,1,db/journals/dss/dss35.html#YangCH03,https://doi.org/10.1016/S0167-9236(02)00101-X +Hsin-Lu Chang,Will firm's marketing efforts on owned social media payoff? A quasi-experimental analysis of tourism products.,2018,107,Decision Support Systems,,db/journals/dss/dss107.html#ChangCWW18,https://doi.org/10.1016/j.dss.2017.12.011 +Tony Cheng-Kui Huang,A novel recommendation model with Google similarity.,2016,89,Decision Support Systems,,db/journals/dss/dss89.html#HuangCC16,https://doi.org/10.1016/j.dss.2016.06.005 +Kun Chang Lee,Hybrid neural network models for bankruptcy predictions.,1996,18,Decision Support Systems,1,db/journals/dss/dss18.html#LeeHK96,https://doi.org/10.1016/0167-9236(96)00018-8 +Fereidoun Ghasemzadeh,Project portfolio selection through decision support.,2000,29,Decision Support Systems,1,db/journals/dss/dss29.html#GhasemzadehA00,https://doi.org/10.1016/S0167-9236(00)00065-8 +Chinho Lin,A fuzzy decision support system for strategic portfolio management.,2004,38,Decision Support Systems,3,db/journals/dss/dss38.html#LinH04,https://doi.org/10.1016/S0167-9236(03)00118-0 +J. Leon Zhao,Process-driven collaboration support for intra-agency crime analysis.,2006,41,Decision Support Systems,3,db/journals/dss/dss41.html#ZhaoBCZLC06,https://doi.org/10.1016/j.dss.2004.06.014 +Alessandro Avenali,Simulating combinatorial auctions with dominance requirement and loll bids through automated agents.,2007,43,Decision Support Systems,1,db/journals/dss/dss43.html#AvenaliB07,https://doi.org/10.1016/j.dss.2006.09.008 +Duen-Ren Liu,Business-to-business workflow interoperation based on process-views.,2004,38,Decision Support Systems,3,db/journals/dss/dss38.html#LiuS04,https://doi.org/10.1016/S0167-9236(03)00116-7 +Jae-Hyeon Ahn,Decision support for real-time telemarketing operations through Bayesian network learning.,1997,21,Decision Support Systems,1,db/journals/dss/dss21.html#AhnE97,https://doi.org/10.1016/S0167-9236(97)00009-2 +Ozgur M. Araz,Simulation modeling for pandemic decision making: A case study with bi-criteria analysis on school closures.,2013,55,Decision Support Systems,2,db/journals/dss/dss55.html#ArazLFJ13,https://doi.org/10.1016/j.dss.2012.10.013 +Melody Y. Kiang,Self-organizing map network as an interactive clustering tool - An application to group technology.,1995,15,Decision Support Systems,4,db/journals/dss/dss15.html#KiangKT95,https://doi.org/10.1016/0167-9236(94)00046-1 +Selwyn Piramuthu,A classification approach using multi-layered neural networks.,1994,11,Decision Support Systems,5,db/journals/dss/dss11.html#PiramuthuSG94,https://doi.org/10.1016/0167-9236(94)90022-1 +Alan R. Hevner,Guest editors' remarks.,1996,17,Decision Support Systems,1,db/journals/dss/dss17.html#HevnerKS96,https://doi.org/10.1016/0167-9236(95)00018-6 +Zhongyun Zhou,Moderating role of gender in the relationships between perceived benefits and satisfaction in social virtual world continuance.,2014,65,Decision Support Systems,,db/journals/dss/dss65.html#ZhouJF14,https://doi.org/10.1016/j.dss.2014.05.004 +Anne T. McCartt,Evaluating group decision support system effectiveness: A performance study of decision conferencing.,1989,5,Decision Support Systems,2,db/journals/dss/dss5.html#McCarttR89,https://doi.org/10.1016/0167-9236(89)90010-9 +Jan Muntermann,Towards ubiquitous information supply for individual investors: A decision support system design.,2009,47,Decision Support Systems,2,db/journals/dss/dss47.html#Muntermann09,https://doi.org/10.1016/j.dss.2009.01.003 +Solomon R. Antony,Determinants of escrow service adoption in consumer-to-consumer online auction market: An experimental study.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#AntonyLX06,https://doi.org/10.1016/j.dss.2006.04.012 +Brent Kitchens,Quality of health-related online search results.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#KitchensHL14,https://doi.org/10.1016/j.dss.2012.10.050 +Asim Roy,From what if to what's best in DSS.,1987,3,Decision Support Systems,1,db/journals/dss/dss3.html#Roy87,https://doi.org/10.1016/0167-9236(87)90033-9 +Sébastien Thomassey,A hybrid sales forecasting system based on clustering and decision trees.,2006,42,Decision Support Systems,1,db/journals/dss/dss42.html#ThomasseyF06,https://doi.org/10.1016/j.dss.2005.01.008 +Mark Adkins,Using group support systems for strategic planning with the United States Air Force.,2003,34,Decision Support Systems,3,db/journals/dss/dss34.html#AdkinsBN03,https://doi.org/10.1016/S0167-9236(02)00124-0 +Norman A. Johnson,Anger and flaming in computer-mediated negotiation among strangers.,2009,46,Decision Support Systems,3,db/journals/dss/dss46.html#JohnsonCC09,https://doi.org/10.1016/j.dss.2008.10.008 +Ming Fan,"Introduction to the special issue on ""Mechanism Design in E-commerce and Information Systems"".",2013,56,Decision Support Systems,,db/journals/dss/dss56.html#FanLL13,https://doi.org/10.1016/j.dss.2012.10.051 +Kjetil Fagerholt,A computer-based decision support system for vessel fleet scheduling - experience and future research.,2004,37,Decision Support Systems,1,db/journals/dss/dss37.html#Fagerholt04,https://doi.org/10.1016/S0167-9236(02)00193-8 +Liang-Chuan Wu,Knowledge-based organization evaluation.,2008,45,Decision Support Systems,3,db/journals/dss/dss45.html#WuOH08,https://doi.org/10.1016/j.dss.2007.06.013 +Joyce J. Elam,Guest editors' introduction.,1986,2,Decision Support Systems,1,db/journals/dss/dss2.html#ElamL86,https://doi.org/10.1016/0167-9236(86)90115-6 +Clyde W. Holsapple,ERP plans and decision-support benefits.,2005,38,Decision Support Systems,4,db/journals/dss/dss38.html#HolsappleS05,https://doi.org/10.1016/j.dss.2003.07.001 +Robert P. Schumaker,Leveraging Question Answer technology to address terrorism inquiry.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#SchumakerC07,https://doi.org/10.1016/j.dss.2006.04.007 +Akram Dehnokhalaji,Convex cone-based partial order for multiple criteria alternatives.,2011,51,Decision Support Systems,2,db/journals/dss/dss51.html#DehnokhalajiKKNW11,https://doi.org/10.1016/j.dss.2010.11.019 +Di Zhu 0005,Unsupervised tip-mining from customer reviews.,2018,107,Decision Support Systems,,db/journals/dss/dss107.html#ZhuLZ18,https://doi.org/10.1016/j.dss.2018.01.011 +Hemant K. Bhargava,Improving recruit distribution decisions in the US Marine Corps.,2003,36,Decision Support Systems,1,db/journals/dss/dss36.html#BhargavaS03,https://doi.org/10.1016/S0167-9236(02)00136-7 +Hong Zhang,Agile Integration Modeling Language (AIML): A conceptual modeling grammar for agile integrative business information systems.,2007,44,Decision Support Systems,1,db/journals/dss/dss44.html#ZhangKSR07,https://doi.org/10.1016/j.dss.2007.04.009 +Donald Nute,Defeasible reasoning and decision support systems.,1988,4,Decision Support Systems,1,db/journals/dss/dss4.html#Nute88,https://doi.org/10.1016/0167-9236(88)90100-5 +Aryya Gangopadhyay,An image-based system for electronic retailing.,2001,32,Decision Support Systems,2,db/journals/dss/dss32.html#Gangopadhyay01,https://doi.org/10.1016/S0167-9236(01)00105-1 +Thomas Kämpke,About assessing and evaluating uncertain inferences within the theory of evidence.,1988,4,Decision Support Systems,4,db/journals/dss/dss4.html#Kampke88,https://doi.org/10.1016/0167-9236(88)90006-1 +Richard E. Schuler,Analytic and experimentally derived estimates of market power in deregulated electricity systems: policy implications for the management and institutional evolution of the industry.,2001,30,Decision Support Systems,3,db/journals/dss/dss30.html#Schuler01,https://doi.org/10.1016/S0167-9236(00)00110-X +Jennifer Shang,A decision support system for managing inventory at GlaxoSmithKline.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#ShangTKB08,https://doi.org/10.1016/j.dss.2008.04.004 +Daniel E. O'Leary,Empirical analysis of the evolution of a taxonomy for best practices.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#OLeary07,https://doi.org/10.1016/j.dss.2006.09.004 +In Lee,Modeling the benefit of e-recruiting process integration.,2011,51,Decision Support Systems,1,db/journals/dss/dss51.html#Lee11a,https://doi.org/10.1016/j.dss.2010.12.011 +Chuda B. Basnet,IPManager: a microcomputer-based DSS for intellectual property management.,2006,41,Decision Support Systems,2,db/journals/dss/dss41.html#BasnetFP06,https://doi.org/10.1016/j.dss.2004.05.014 +Ninghua Du,Can online trading survive bad-mouthing? An experimental investigation.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#DuHL13,https://doi.org/10.1016/j.dss.2012.10.054 +Jianping Li,An evolution strategy-based multiple kernels multi-criteria programming approach: The case of credit decision making.,2011,51,Decision Support Systems,2,db/journals/dss/dss51.html#LiWLX11,https://doi.org/10.1016/j.dss.2010.11.022 +Henk W. Volberda,FARSYS: a knowledge-based system for managing strategic change.,1999,26,Decision Support Systems,2,db/journals/dss/dss26.html#VolberdaR99,https://doi.org/10.1016/S0167-9236(99)00023-8 +Chuk Yau,Using multi-criteria analysis for tenant selection.,1994,12,Decision Support Systems,3,db/journals/dss/dss12.html#YauD94,https://doi.org/10.1016/0167-9236(94)90007-8 +Philippe du Jardin,Predicting corporate bankruptcy using a self-organizing map: An empirical study to improve the forecasting horizon of a financial failure model.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#JardinS11,https://doi.org/10.1016/j.dss.2011.04.001 +Wei-Tsong Wang,The influences of knowledge exchange on organizational c-commerce success and crisis readiness: The case of the crisis of an automobile manufacturing and merchandising group.,2014,68,Decision Support Systems,,db/journals/dss/dss68.html#WangH14,https://doi.org/10.1016/j.dss.2014.10.001 +Wingyan Chung,Supporting non-English Web searching: An experiment on the Spanish business and the Arabic medical intelligence portals.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#ChungBLXC06,https://doi.org/10.1016/j.dss.2006.02.015 +Barbara Dinter,Success factors for information logistics strategy - An empirical investigation.,2013,54,Decision Support Systems,3,db/journals/dss/dss54.html#Dinter13,https://doi.org/10.1016/j.dss.2012.09.001 +Zhiyong Yang,Differential effects of social influence sources on self-reported music piracy.,2015,69,Decision Support Systems,,db/journals/dss/dss69.html#YangW15,https://doi.org/10.1016/j.dss.2014.11.007 +Terry Barron,Data requirements in statistical decision support systems: formulation and some results in choosing summaries.,1995,15,Decision Support Systems,4,db/journals/dss/dss15.html#BarronS95,https://doi.org/10.1016/0167-9236(94)00047-3 +Daniel R. Dolk,Data as models: An approach to implementing model management.,1986,2,Decision Support Systems,1,db/journals/dss/dss2.html#Dolk86,https://doi.org/10.1016/0167-9236(86)90123-5 +Lina Zhou,Typing or messaging? Modality effect on deception detection in computer-mediated communication.,2007,44,Decision Support Systems,1,db/journals/dss/dss44.html#ZhouZ07,https://doi.org/10.1016/j.dss.2007.03.012 +Vidhyacharan Bhaskar,Queuing network model of uniformly distributed arrivals in a distributed supply chain using subcontracting.,2011,51,Decision Support Systems,1,db/journals/dss/dss51.html#BhaskarL11,https://doi.org/10.1016/j.dss.2010.11.029 +Ying Sai,Transparent Safe.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#Sai08,https://doi.org/10.1016/j.dss.2008.04.007 +Peng Zhang 0001,Robust ensemble learning for mining noisy data streams.,2011,50,Decision Support Systems,2,db/journals/dss/dss50.html#ZhangZSGW11,https://doi.org/10.1016/j.dss.2010.11.004 +Shin-Yuan Hung,Successful implementation of collaborative product commerce: An organizational fit perspective.,2011,50,Decision Support Systems,2,db/journals/dss/dss50.html#HungCYKK11,https://doi.org/10.1016/j.dss.2010.11.007 +Fu-Shiung Hsieh,"Corrections to ""Combinatorial reverse auction based on revelation of Lagrangian multipliers"".",2016,85,Decision Support Systems,,db/journals/dss/dss85.html#Hsieh16,https://doi.org/10.1016/j.dss.2016.03.003 +Adrian Paschke,Knowledge representation concepts for automated SLA management.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#PaschkeB08,https://doi.org/10.1016/j.dss.2008.06.008 +Bharat Ruparel,A dedicated shell for designing expert credit support systems.,1992,8,Decision Support Systems,4,db/journals/dss/dss8.html#RuparelS92,https://doi.org/10.1016/0167-9236(92)90055-T +Hyung-Su Kim,Integration of firm's resource and capability to implement enterprise CRM: A case study of a retail bank in Korea.,2010,48,Decision Support Systems,2,db/journals/dss/dss48.html#KimKP10,https://doi.org/10.1016/j.dss.2009.07.006 +Chih-Yuan Sun,Tour recommendations by mining photo sharing social media.,2017,101,Decision Support Systems,,db/journals/dss/dss101.html#SunL17,https://doi.org/10.1016/j.dss.2017.05.013 +Demitrios E. Pournarakis,A computational model for mining consumer perceptions in social media.,2017,93,Decision Support Systems,,db/journals/dss/dss93.html#PournarakisSG17,https://doi.org/10.1016/j.dss.2016.09.018 +Guoqing Chen,A new approach to classification based on association rule mining.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#ChenLYWZ06,https://doi.org/10.1016/j.dss.2005.03.005 +Ling Xue,Governance-knowledge fit and strategic risk taking in supply chain digitization.,2014,62,Decision Support Systems,,db/journals/dss/dss62.html#Xue14,https://doi.org/10.1016/j.dss.2014.03.003 +Jing Yang,The effect of product review balance and volume on online Shoppers' risk perception and purchase intention.,2016,89,Decision Support Systems,,db/journals/dss/dss89.html#YangSL16,https://doi.org/10.1016/j.dss.2016.06.009 +Myron Hatcher,Introduction to multimedia supported group/organizational decision systems.,1995,15,Decision Support Systems,3,db/journals/dss/dss15.html#Hatcher95,https://doi.org/10.1016/0167-9236(94)00059-2 +Mary C. Jones,Exploring knowledge sharing in ERP implementation: an organizational culture framework.,2006,41,Decision Support Systems,2,db/journals/dss/dss41.html#JonesCR06,https://doi.org/10.1016/j.dss.2004.06.017 +Li-Hui Tsai,The accuracy of concepts learned from induction.,1993,10,Decision Support Systems,2,db/journals/dss/dss10.html#TsaiK93,https://doi.org/10.1016/0167-9236(93)90036-3 +Lixiang Shen,Applying rough sets to market timing decisions.,2004,37,Decision Support Systems,4,db/journals/dss/dss37.html#ShenL04,https://doi.org/10.1016/S0167-9236(03)00089-7 +Hongyan Liu,New approach for the sequential pattern mining of high-dimensional sequence databases.,2010,50,Decision Support Systems,1,db/journals/dss/dss50.html#LiuLHC10,https://doi.org/10.1016/j.dss.2010.08.029 +Eric T. G. Wang,Effects of internal support and consultant quality on the consulting process and ERP system quality.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#WangC06a,https://doi.org/10.1016/j.dss.2005.08.005 +Tung Bui,Supporting cognitive feedback using system dynamics: A demand model of the global system of mobile telecommunication.,1996,17,Decision Support Systems,2,db/journals/dss/dss17.html#BuiL96,https://doi.org/10.1016/0167-9236(95)00017-8 +Goutam Dutta,Database structure for a class of multi-period mathematical programming models.,2008,45,Decision Support Systems,4,db/journals/dss/dss45.html#DuttaF08,https://doi.org/10.1016/j.dss.2008.02.010 +Yen-Liang Chen,Market basket analysis in a multiple store environment.,2005,40,Decision Support Systems,2,db/journals/dss/dss40.html#ChenTSH05,https://doi.org/10.1016/j.dss.2004.04.009 +Mathias Kraus,Decision support from financial disclosures with deep neural networks and transfer learning.,2017,104,Decision Support Systems,,db/journals/dss/dss104.html#KrausF17,https://doi.org/10.1016/j.dss.2017.10.001 +Ching-Shen James Dong,Agent-enabled service-oriented decision support systems.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#DongS13,https://doi.org/10.1016/j.dss.2012.05.047 +Zhiling Guo,Supply chain information sharing in a macro prediction market.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#GuoFW06,https://doi.org/10.1016/j.dss.2006.05.003 +N. C. Simpson,Conceptualization and demonstration of the Incident Controller's Problem.,2016,90,Decision Support Systems,,db/journals/dss/dss90.html#SimpsonM16,https://doi.org/10.1016/j.dss.2016.07.002 +Christer Carlsson,DSS: directions for the next decade.,2002,33,Decision Support Systems,2,db/journals/dss/dss33.html#CarlssonT02,https://doi.org/10.1016/S0167-9236(01)00137-3 +Hardeep Venkataramani Johar,SoftCord: an intelligent agent for coordination in software development projects.,1997,20,Decision Support Systems,1,db/journals/dss/dss20.html#Johar97,https://doi.org/10.1016/S0167-9236(96)00075-9 +K. Dharini Amitha Peiris,Building and evaluating ESET: A tool for assessing the support given by an enterprise system to supply chain management.,2015,77,Decision Support Systems,,db/journals/dss/dss77.html#PeirisJG15,https://doi.org/10.1016/j.dss.2015.05.004 +William G. W. Magill,Uncertainty techniques in expert system software.,1991,7,Decision Support Systems,1,db/journals/dss/dss7.html#MagillL91,https://doi.org/10.1016/0167-9236(91)90077-O +Daniel G. Conway,Interface agents: caveat mercator in electronic commerce.,2000,27,Decision Support Systems,4,db/journals/dss/dss27.html#ConwayK00,https://doi.org/10.1016/S0167-9236(99)00046-9 +Gaurav Bansal,Trust violation and repair: The information privacy perspective.,2015,71,Decision Support Systems,,db/journals/dss/dss71.html#BansalZ15,https://doi.org/10.1016/j.dss.2015.01.009 +Ilze Zigurs,Interaction analysis in GDSS research: description of an experience and some recommendations.,1989,5,Decision Support Systems,2,db/journals/dss/dss5.html#Zigurs89,https://doi.org/10.1016/0167-9236(89)90009-2 +Michael Szu-Yuan Wang,An investigation on the nature of decision support system software.,1987,3,Decision Support Systems,4,db/journals/dss/dss3.html#WangY87,https://doi.org/10.1016/0167-9236(87)90099-6 +Filippo Menczer,Complementing search engines with online web mining agents.,2003,35,Decision Support Systems,2,db/journals/dss/dss35.html#Menczer03,https://doi.org/10.1016/S0167-9236(02)00106-9 +Kazim Topuz,Predicting graft survival among kidney transplant recipients: A Bayesian decision support model.,2018,106,Decision Support Systems,,db/journals/dss/dss106.html#TopuzZDAY18,https://doi.org/10.1016/j.dss.2017.12.004 +Mao-Jium J. Wang,A knowledge based system for controls-displays selection.,1991,7,Decision Support Systems,2,db/journals/dss/dss7.html#WangT91,https://doi.org/10.1016/0167-9236(91)90056-H +Christie M. Fuller,Decision support for determining veracity via linguistic-based cues.,2009,46,Decision Support Systems,3,db/journals/dss/dss46.html#FullerBW09,https://doi.org/10.1016/j.dss.2008.11.001 +Michael Goul,Requirements for the design of a protocol suite to automate DSS deployment on the World Wide Web: A client/ server approach.,1997,19,Decision Support Systems,3,db/journals/dss/dss19.html#GoulPKFO97,https://doi.org/10.1016/S0167-9236(96)00054-1 +Jaeki Song,The effects of incorporating compensatory choice strategies in Web-based consumer decision support systems.,2007,43,Decision Support Systems,2,db/journals/dss/dss43.html#SongJG07,https://doi.org/10.1016/j.dss.2006.10.007 +Karen L. Dowling,Asynchronous implementation of the nominal group technique: is it effective?,2000,29,Decision Support Systems,3,db/journals/dss/dss29.html#DowlingL00,https://doi.org/10.1016/S0167-9236(00)00073-7 +Matthieu Lauras,Towards a multi-dimensional project Performance Measurement System.,2010,48,Decision Support Systems,2,db/journals/dss/dss48.html#LaurasMG10,https://doi.org/10.1016/j.dss.2009.09.002 +Haluk Demirkan,Leveraging the capabilities of service-oriented decision support systems: Putting analytics and big data in cloud.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#DemirkanD13,https://doi.org/10.1016/j.dss.2012.05.048 +Song Lin,An outlier-based data association method for linking criminal incidents.,2006,41,Decision Support Systems,3,db/journals/dss/dss41.html#LinB06,https://doi.org/10.1016/j.dss.2004.06.005 +Helen-Tadesse Moges,Determining the use of data quality metadata (DQM) for decision making purposes and its impact on decision outcomes - An exploratory study.,2016,83,Decision Support Systems,,db/journals/dss/dss83.html#MogesVLB16,https://doi.org/10.1016/j.dss.2015.12.006 +James Y. L. Thong,Decision-making and e-commerce systems.,2001,32,Decision Support Systems,1,db/journals/dss/dss32.html#ThongCT01,https://doi.org/10.1016/S0167-9236(01)00096-3 +Daniel E. O'Leary,"Blog mining-review and extensions: ""From each according to his opinion"".",2011,51,Decision Support Systems,4,db/journals/dss/dss51.html#OLeary11,https://doi.org/10.1016/j.dss.2011.01.016 +Suprasith Jarupathirun,Exploring the influence of perceptual factors in the success of web-based spatial DSS.,2007,43,Decision Support Systems,3,db/journals/dss/dss43.html#JarupathirunZ07,https://doi.org/10.1016/j.dss.2005.05.024 +Jonghun Park,An adaptive coordination framework for fast atomic multi-business transactions using web services.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#ParkC06,https://doi.org/10.1016/j.dss.2006.05.004 +Lev Kuandykov,Impact of social neighborhood on diffusion of innovation S-curve.,2010,48,Decision Support Systems,4,db/journals/dss/dss48.html#KuandykovS10,https://doi.org/10.1016/j.dss.2009.11.003 +Sérgio Fernandes,A DSS for bicriteria location problems.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#FernandesCC14,https://doi.org/10.1016/j.dss.2013.09.014 +Martin Charles Golumbic,A knowledge representation language for university requirements.,1991,7,Decision Support Systems,1,db/journals/dss/dss7.html#GolumbicMT91,https://doi.org/10.1016/0167-9236(91)90075-M +Han Zhang,Factors affecting payment choices in online auctions: A study of eBay traders.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#ZhangL06,https://doi.org/10.1016/j.dss.2005.09.003 +Malú Castellanos,A platform for situational awareness in operational BI.,2012,52,Decision Support Systems,4,db/journals/dss/dss52.html#CastellanosGWDD12,https://doi.org/10.1016/j.dss.2011.11.011 +K. Nadia Papamichail,Design and evaluation of an intelligent decision support system for nuclear emergencies.,2005,41,Decision Support Systems,1,db/journals/dss/dss41.html#PapamichailF05,https://doi.org/10.1016/j.dss.2004.04.014 +,Editorial.,1998,23,Decision Support Systems,1,db/journals/dss/dss23.html#X98,https://doi.org/10.1016/S0167-9236(98)00031-1 +Avinoam Lazarov,A rule-based system for automatic assignment of technicians to service faults.,2002,32,Decision Support Systems,4,db/journals/dss/dss32.html#LazarovS02,https://doi.org/10.1016/S0167-9236(01)00122-1 +Shuai Ding,Multi-objective optimization based ranking prediction for cloud service recommendation.,2017,101,Decision Support Systems,,db/journals/dss/dss101.html#DingXWWZ17,https://doi.org/10.1016/j.dss.2017.06.005 +William L. Kuechler Jr.,Supporting optimization of business-to-business e-commerce relationships.,2001,31,Decision Support Systems,3,db/journals/dss/dss31.html#KuechlerVK01,https://doi.org/10.1016/S0167-9236(00)00142-1 +Han Li,The role of affect and cognition on online consumers' decision to disclose personal information to unfamiliar online vendors.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#LiSX11,https://doi.org/10.1016/j.dss.2011.01.017 +R. Ramesh,An integrated framework for decision support in corporate planning.,1988,4,Decision Support Systems,3,db/journals/dss/dss4.html#RameshS88,https://doi.org/10.1016/0167-9236(88)90023-1 +Juan Antonio Morente-Molinera,A linguistic mobile Decision Support System based on fuzzy ontology to facilitate knowledge mobilization.,2016,81,Decision Support Systems,,db/journals/dss/dss81.html#Morente-Molinera16,https://doi.org/10.1016/j.dss.2015.09.001 +Xiaoge Zhang,Aircraft re-routing optimization and performance assessment under uncertainty.,2017,96,Decision Support Systems,,db/journals/dss/dss96.html#ZhangM17,https://doi.org/10.1016/j.dss.2017.02.005 +Guannan Liu,An approach to finding the cost-effective immunization targets for information assurance.,2014,67,Decision Support Systems,,db/journals/dss/dss67.html#LiuZC14,https://doi.org/10.1016/j.dss.2014.08.002 +Yao-Hua Tan,Formal aspects of a generic model of trust for electronic commerce.,2002,33,Decision Support Systems,3,db/journals/dss/dss33.html#TanT02,https://doi.org/10.1016/S0167-9236(02)00014-3 +Hsiangchu Lai,A system architecture for intelligent browsing on the Web.,2000,28,Decision Support Systems,3,db/journals/dss/dss28.html#LaiY00,https://doi.org/10.1016/S0167-9236(99)00087-1 +Bo Hsiao,Measuring the relative efficiency of IC design firms using the directional distance function and a meta-frontier approach.,2012,53,Decision Support Systems,4,db/journals/dss/dss53.html#HsiaoCY12,https://doi.org/10.1016/j.dss.2012.05.017 +Paolo d'Alessandro,Issues in design and architecture of advanced dynamic model management for decision support systems.,1989,5,Decision Support Systems,4,db/journals/dss/dss5.html#dAlessandroMS89,https://doi.org/10.1016/0167-9236(89)90016-X +Younghwa Lee,Avatar e-mail versus traditional e-mail: Perceptual difference and media selection difference.,2009,46,Decision Support Systems,2,db/journals/dss/dss46.html#LeeKL09,https://doi.org/10.1016/j.dss.2007.11.008 +Giorgos Zacharia,Collaborative reputation mechanisms for electronic marketplaces.,2000,29,Decision Support Systems,4,db/journals/dss/dss29.html#ZachariaMM00,https://doi.org/10.1016/S0167-9236(00)00084-1 +Wil M. P. van der Aalst,Deadline-based escalation in process-aware information systems.,2007,43,Decision Support Systems,2,db/journals/dss/dss43.html#AalstRD07,https://doi.org/10.1016/j.dss.2006.11.005 +Eldon Y. Li,Access control in collaborative commerce.,2007,43,Decision Support Systems,2,db/journals/dss/dss43.html#LiDW07,https://doi.org/10.1016/j.dss.2005.05.022 +Miroslav Begovic,Trends in power system protection and control.,2001,30,Decision Support Systems,3,db/journals/dss/dss30.html#BegovicNM01,https://doi.org/10.1016/S0167-9236(00)00104-4 +Michael J. Shaw,Applying inductive learning to enhance knowledge-based expert systems.,1987,3,Decision Support Systems,4,db/journals/dss/dss3.html#Shaw87,https://doi.org/10.1016/0167-9236(87)90103-5 +Liangfei Qiu,Social network-embedded prediction markets: The effects of information acquisition and communication on predictions.,2013,55,Decision Support Systems,4,db/journals/dss/dss55.html#QiuRW13,https://doi.org/10.1016/j.dss.2013.01.007 +Ali Keyhani,Market monitoring and control of ancillary services.,2001,30,Decision Support Systems,3,db/journals/dss/dss30.html#KeyhaniKCS01,https://doi.org/10.1016/S0167-9236(00)00103-2 +Fenghui Ren,Bilateral single-issue negotiation model considering nonlinear utility and time constraint.,2014,60,Decision Support Systems,,db/journals/dss/dss60.html#RenZ14,https://doi.org/10.1016/j.dss.2013.05.018 +Ariel Monteserin,Argumentation-based negotiation planning for autonomous agents.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#MonteserinA11,https://doi.org/10.1016/j.dss.2011.02.016 +Dan Zhu,Identity disclosure protection: A data reconstruction approach for privacy-preserving data mining.,2009,48,Decision Support Systems,1,db/journals/dss/dss48.html#ZhuLW09,https://doi.org/10.1016/j.dss.2009.07.003 +G. Alan Wang,ExpertRank: A topic-aware expert finding algorithm for online knowledge communities.,2013,54,Decision Support Systems,3,db/journals/dss/dss54.html#WangJAFZ13,https://doi.org/10.1016/j.dss.2012.12.020 +M. Desrochers,Towards a model and algorithm management system for vehicle routing and scheduling problems.,1999,25,Decision Support Systems,2,db/journals/dss/dss25.html#DesrochersJLSS99,https://doi.org/10.1016/S0167-9236(98)00090-6 +Vijay Gurbaxani,An empirical analysis of software and hardware spending.,1992,8,Decision Support Systems,1,db/journals/dss/dss8.html#GurbaxaniM92,https://doi.org/10.1016/0167-9236(92)90033-L +Bernard Grabot,A decision support system for production activity control.,1996,16,Decision Support Systems,2,db/journals/dss/dss16.html#GrabotBB96,https://doi.org/10.1016/0167-9236(95)00003-8 +Harris Wu,Collective taxonomizing: A collaborative approach to organizing document repositories.,2010,50,Decision Support Systems,1,db/journals/dss/dss50.html#WuGF10,https://doi.org/10.1016/j.dss.2010.08.031 +Bruce W. Weber,Adoption of electronic trading at the International Securities Exchange.,2006,41,Decision Support Systems,4,db/journals/dss/dss41.html#Weber06,https://doi.org/10.1016/j.dss.2004.10.006 +Surya Pathak,A framework for designing policies for networked systems with uncertainty.,2010,49,Decision Support Systems,2,db/journals/dss/dss49.html#PathakMM10,https://doi.org/10.1016/j.dss.2010.01.006 +James R. Marsden,Transition II.,2014,64,Decision Support Systems,,db/journals/dss/dss64.html#Marsden14,https://doi.org/10.1016/j.dss.2014.07.001 +Jeffery K. Cochran,An integrated multicomputer DSS design for transport planning using embedded computer simulation and database tools.,1991,7,Decision Support Systems,2,db/journals/dss/dss7.html#CochranC91,https://doi.org/10.1016/0167-9236(91)90048-G +Alison Parkes,The effect of task-individual-technology fit on user attitude and performance: An experimental investigation.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#Parkes13,https://doi.org/10.1016/j.dss.2012.10.025 +John A. A. Sillince,Computer-mediated communication: problems and potentials of argumentation support systems.,1999,26,Decision Support Systems,4,db/journals/dss/dss26.html#SillinceS99,https://doi.org/10.1016/S0167-9236(99)00058-5 +Dursun Delen,Movie forecast Guru: A Web-based DSS for Hollywood managers.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#DelenSK07,https://doi.org/10.1016/j.dss.2005.07.005 +Ubaldo M. García-Palomares,Novel linear programming approach for building a piecewise nonlinear binary classifier with a priori accuracy.,2012,52,Decision Support Systems,3,db/journals/dss/dss52.html#Garcia-PalomaresM12,https://doi.org/10.1016/j.dss.2011.11.006 +Selçuk çebi,Determining importance degrees of website design parameters based on interactions and types of websites.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#Cebi13,https://doi.org/10.1016/j.dss.2012.10.036 +Nicolas Prat,A UML-based data warehouse design method.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#PratAC06,https://doi.org/10.1016/j.dss.2005.12.001 +Konstantina Valogianni,Effective demand response for smart grids: Evidence from a real-world pilot.,2016,91,Decision Support Systems,,db/journals/dss/dss91.html#ValogianniK16,https://doi.org/10.1016/j.dss.2016.07.007 +éliane M.-F. Moreau,The impact of intelligent decision support systems on intellectual task success: An empirical investigation.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#Moreau06,https://doi.org/10.1016/j.dss.2005.02.008 +Mitsuhiko Toda,Information structuring and its implementations on a research decision support system.,1991,7,Decision Support Systems,2,db/journals/dss/dss7.html#TodaHSK91,https://doi.org/10.1016/0167-9236(91)90055-G +Belén Vela,A practical application of our MDD approach for modeling secure XML data warehouses.,2012,52,Decision Support Systems,4,db/journals/dss/dss52.html#VelaBFM12,https://doi.org/10.1016/j.dss.2011.11.008 +Roger Jianxin Jiao,Identifying generic routings for product families based on text mining and tree matching.,2007,43,Decision Support Systems,3,db/journals/dss/dss43.html#JiaoZPH07,https://doi.org/10.1016/j.dss.2007.01.001 +Zhiling Guo,Optimal decision making for online referral marketing.,2012,52,Decision Support Systems,2,db/journals/dss/dss52.html#Guo12,https://doi.org/10.1016/j.dss.2011.09.004 +Selwyn Piramuthu,On learning to predict Web traffic.,2003,35,Decision Support Systems,2,db/journals/dss/dss35.html#Piramuthu03,https://doi.org/10.1016/S0167-9236(02)00107-0 +Jian Chen,A public procurement combinatorial auction mechanism with quality assignment.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#ChenHK11,https://doi.org/10.1016/j.dss.2011.02.012 +Timon C. Du,Mobile agents for a brokering service in the electronic marketplace.,2005,39,Decision Support Systems,3,db/journals/dss/dss39.html#DuLW05,https://doi.org/10.1016/j.dss.2004.01.003 +Erhan Kozan,A demand-responsive decision support system for coal transportation.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#KozanL12,https://doi.org/10.1016/j.dss.2012.08.012 +Jahyun Goo,Facilitating relational governance through service level agreements in IT outsourcing: An application of the commitment-trust theory.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#GooH08,https://doi.org/10.1016/j.dss.2008.06.005 +Meira Levy,Studying decision processes via a knowledge management lens: The Columbia space shuttle case.,2010,48,Decision Support Systems,4,db/journals/dss/dss48.html#LevyPR10,https://doi.org/10.1016/j.dss.2009.11.006 +Byron Marshall,Matching knowledge elements in concept maps using a similarity flooding algorithm.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#MarshallCM06,https://doi.org/10.1016/j.dss.2005.10.009 +Michele Fornaciari,Evaluation of on-line trading systems: Markov-switching vs time-varying parameter models.,2017,93,Decision Support Systems,,db/journals/dss/dss93.html#FornaciariG17,https://doi.org/10.1016/j.dss.2016.09.005 +Kannan Mohan,Knowledge networking to support medical new product development.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#MohanJR07,https://doi.org/10.1016/j.dss.2006.02.005 +Diane E. Snediker,Decision support for network disruption mitigation.,2008,44,Decision Support Systems,4,db/journals/dss/dss44.html#SnedikerMM08,https://doi.org/10.1016/j.dss.2007.11.003 +Ronald M. Lee,Automated generation of electronic procedures: procedure constraint grammars.,2002,33,Decision Support Systems,3,db/journals/dss/dss33.html#Lee02,https://doi.org/10.1016/S0167-9236(02)00017-9 +Alkis Simitsis,A method for the mapping of conceptual designs to logical blueprints for ETL processes.,2008,45,Decision Support Systems,1,db/journals/dss/dss45.html#SimitsisV08,https://doi.org/10.1016/j.dss.2006.12.002 +Fenghui Ren,A single issue negotiation model for agents bargaining in dynamic electronic markets.,2014,60,Decision Support Systems,,db/journals/dss/dss60.html#RenZ14a,https://doi.org/10.1016/j.dss.2013.05.020 +Juheng Zhang,Real option valuation on grid computing.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#ZhangBP08,https://doi.org/10.1016/j.dss.2008.07.003 +Michael Lewis 0001,Assessing decision heuristics using machine learning.,1993,10,Decision Support Systems,2,db/journals/dss/dss10.html#Lewis93,https://doi.org/10.1016/0167-9236(93)90038-5 +Hasan Dinçer,A fuzzy-hybrid analytic model to assess investors' perceptions for industry selection.,2016,86,Decision Support Systems,,db/journals/dss/dss86.html#DincerHTD16,https://doi.org/10.1016/j.dss.2016.03.005 +Mei Lin,A cost-effective critical path approach for service priority selections in grid computing economy.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#LinL06,https://doi.org/10.1016/j.dss.2006.02.010 +Molly McLure Wasko,The provision of online public goods: Examining social structure in an electronic network of practice.,2009,47,Decision Support Systems,3,db/journals/dss/dss47.html#WaskoTF09,https://doi.org/10.1016/j.dss.2009.02.012 +Heiko Angermann,Taxo-Semantics: Assessing similarity between multi-word expressions for extending e-catalogs.,2017,98,Decision Support Systems,,db/journals/dss/dss98.html#AngermannPR17,https://doi.org/10.1016/j.dss.2017.04.001 +Arti Mann,Are there contagion effects in information technology and business process outsourcing?,2011,51,Decision Support Systems,4,db/journals/dss/dss51.html#MannKHN11,https://doi.org/10.1016/j.dss.2011.02.005 +Tony Bellotti,A note comparing support vector machines and ordered choice models' predictions of international banks' ratings.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#BellottiMS11,https://doi.org/10.1016/j.dss.2011.03.008 +Kui Du,The impact of multi-channel and multi-product strategies on firms' risk-return performance.,2018,109,Decision Support Systems,,db/journals/dss/dss109.html#Du18,https://doi.org/10.1016/j.dss.2018.01.009 +Juha Näsi,Information systems and strategy design: The knowledge creation function in three modes of strategy-making.,1999,26,Decision Support Systems,2,db/journals/dss/dss26.html#Nasi99,https://doi.org/10.1016/S0167-9236(99)00025-1 +Prashant Palvia,Information requirements of a global EIS: An exploratory macro assessment.,1996,16,Decision Support Systems,2,db/journals/dss/dss16.html#PalviaKKH96,https://doi.org/10.1016/0167-9236(95)00005-4 +Ting-Peng Liang,Modeling by analogy : Use of analogical reasoning in model management systems.,1993,9,Decision Support Systems,1,db/journals/dss/dss9.html#LiangK93,https://doi.org/10.1016/0167-9236(93)90026-Y +Karl Reiner Lang,Introduction to the special section on information product markets.,2009,48,Decision Support Systems,1,db/journals/dss/dss48.html#LangW09,https://doi.org/10.1016/j.dss.2009.05.004 +Zhe Qu,Determinants of online merchant rating: Content analysis of consumer comments about Yahoo merchants.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#QuZL08,https://doi.org/10.1016/j.dss.2008.08.004 +Catherine K. Murphy,Combining belief functions when evidence conflicts.,2000,29,Decision Support Systems,1,db/journals/dss/dss29.html#Murphy00,https://doi.org/10.1016/S0167-9236(99)00084-6 +Ronald Hochreiter,"Discussion of ""The evolution of web-based optimization: From ASP to e-Services"".",2009,47,Decision Support Systems,1,db/journals/dss/dss47.html#HochreiterWW09,https://doi.org/10.1016/j.dss.2008.12.007 +Robert W. Blanning,Relational division in information management.,1993,9,Decision Support Systems,4,db/journals/dss/dss9.html#Blanning93a,https://doi.org/10.1016/0167-9236(93)90044-4 +Rebecca Reuber,Management experience and management expertise.,1997,21,Decision Support Systems,2,db/journals/dss/dss21.html#Reuber97,https://doi.org/10.1016/S0167-9236(97)00017-1 +Chuda B. Basnet,FleetManager: a microcomputer-based decision support system for vehicle routing.,1996,16,Decision Support Systems,3,db/journals/dss/dss16.html#BasnetFI96,https://doi.org/10.1016/0167-9236(95)00010-0 +Kunihiko Hiraishi,A constraint logic programming language keyed CLP and its applications to decision making problems in OR/MS.,1995,14,Decision Support Systems,3,db/journals/dss/dss14.html#Hiraishi95,https://doi.org/10.1016/0167-9236(94)00020-S +Lara Khansa,Predicting stock market returns from malicious attacks: A comparative analysis of vector autoregression and time-delayed neural networks.,2011,51,Decision Support Systems,4,db/journals/dss/dss51.html#KhansaL11,https://doi.org/10.1016/j.dss.2011.01.010 +Hao-Ting Pai,A relative patterns discovery for enhancing outlier detection in categorical data.,2014,67,Decision Support Systems,,db/journals/dss/dss67.html#PaiWH14,https://doi.org/10.1016/j.dss.2014.08.006 +Milan Lovric,Sustainable revenue management: A smart card enabled agent-based modeling approach.,2013,54,Decision Support Systems,4,db/journals/dss/dss54.html#LovricLV13,https://doi.org/10.1016/j.dss.2012.05.061 +Barry R. Cobb,Efficiency of influence diagram models with continuous decision variables.,2009,48,Decision Support Systems,1,db/journals/dss/dss48.html#Cobb09,https://doi.org/10.1016/j.dss.2009.08.004 +Bin Guo,Invention or incremental improvement? Simulation modeling and empirical testing of firm patenting behavior under performance aspiration.,2017,102,Decision Support Systems,,db/journals/dss/dss102.html#GuoD17,https://doi.org/10.1016/j.dss.2017.07.001 +Hsing Kenneth Cheng,Customer-centric marketing with Internet coupons.,2008,44,Decision Support Systems,3,db/journals/dss/dss44.html#ChengD08,https://doi.org/10.1016/j.dss.2007.09.001 +Akhil Kumar 0001,Workflow support for electronic commerce applications.,2002,32,Decision Support Systems,3,db/journals/dss/dss32.html#KumarZ02,https://doi.org/10.1016/S0167-9236(01)00114-2 +B. Recio,A decision support system for analysing the impact of water restriction policies.,2005,39,Decision Support Systems,3,db/journals/dss/dss39.html#RecioIRC05,https://doi.org/10.1016/j.dss.2003.11.003 +Pasquale Legato,A decision support system for integrated container handling in a transshipment hub.,2018,108,Decision Support Systems,,db/journals/dss/dss108.html#LegatoM18,https://doi.org/10.1016/j.dss.2018.02.004 +Milam W. Aiken,A group decision support system for multicultural and multilingual communication.,1994,12,Decision Support Systems,2,db/journals/dss/dss12.html#AikenMSS94,https://doi.org/10.1016/0167-9236(94)90009-4 +J. Christopher Westland,The cost behavior of software defects.,2004,37,Decision Support Systems,2,db/journals/dss/dss37.html#Westland04,https://doi.org/10.1016/S0167-9236(03)00020-4 +Dara G. Schniederjans,Cloud computing and its impact on economic and environmental performance: A transaction cost economics perspective.,2016,86,Decision Support Systems,,db/journals/dss/dss86.html#SchniederjansH16,https://doi.org/10.1016/j.dss.2016.03.009 +Jian Cai,Improving supply chain performance management: A systematic approach to analyzing iterative KPI accomplishment.,2009,46,Decision Support Systems,2,db/journals/dss/dss46.html#CaiLXL09,https://doi.org/10.1016/j.dss.2008.09.004 +Erin Cody,Security in grid computing: A review and synthesis.,2008,44,Decision Support Systems,4,db/journals/dss/dss44.html#CodySRU08,https://doi.org/10.1016/j.dss.2007.09.007 +D. Petkov,Mixing Multiple Criteria Decision Making with soft systems thinking techniques for decision support in complex situations.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#PetkovPAN07,https://doi.org/10.1016/j.dss.2006.03.006 +Tony Cheng-Kui Huang,A novel summarization technique for the support of resolving multi-criteria decision making problems.,2015,79,Decision Support Systems,,db/journals/dss/dss79.html#HuangCC15,https://doi.org/10.1016/j.dss.2015.08.004 +Jeevan Jaisingh,Impact of piracy on innovation at software firms and implications for piracy policy.,2009,46,Decision Support Systems,4,db/journals/dss/dss46.html#Jaisingh09,https://doi.org/10.1016/j.dss.2008.11.018 +Melody Y. Kiang,Marketing on the Internet - who can benefit from an online marketing approach?,2000,27,Decision Support Systems,4,db/journals/dss/dss27.html#KiangRS00,https://doi.org/10.1016/S0167-9236(99)00062-7 +Mehrdad Koohikamali,Location disclosure on LB-SNAs: The role of incentives on sharing behavior.,2015,71,Decision Support Systems,,db/journals/dss/dss71.html#KoohikamaliGM15,https://doi.org/10.1016/j.dss.2015.01.008 +Robert W. Blanning,Sensitivity analysis in logic-based models.,1987,3,Decision Support Systems,4,db/journals/dss/dss3.html#Blanning87,https://doi.org/10.1016/0167-9236(87)90105-9 +W. P. A. van der Heyden,A decision support system for the planning of the workload on a grain terminal.,1985,1,Decision Support Systems,4,db/journals/dss/dss1.html#HeydenO85,https://doi.org/10.1016/0167-9236(85)90169-1 +H. J. Gómez-Vallejo,A case-based reasoning system for aiding detection and classification of nosocomial infections.,2016,84,Decision Support Systems,,db/journals/dss/dss84.html#Gomez-VallejoUS16,https://doi.org/10.1016/j.dss.2016.02.005 +Christy M. K. Cheung,Do actions speak louder than voices? The signaling role of social information cues in influencing consumer purchase decisions.,2014,65,Decision Support Systems,,db/journals/dss/dss65.html#CheungXL14,https://doi.org/10.1016/j.dss.2014.05.002 +Troy J. Strader,Characteristics of electronic markets.,1997,21,Decision Support Systems,3,db/journals/dss/dss21.html#StraderS97,https://doi.org/10.1016/S0167-9236(97)00028-6 +Chieh-Yuan Tsai,A personalized route recommendation service for theme parks using RFID information and tourist behavior.,2012,52,Decision Support Systems,2,db/journals/dss/dss52.html#TsaiC12,https://doi.org/10.1016/j.dss.2011.10.013 +Richard G. Ramirez,Representing generalizations and exceptions in expert database systems.,1990,6,Decision Support Systems,1,db/journals/dss/dss6.html#RamirezDC90,https://doi.org/10.1016/0167-9236(90)90012-G +Helder Coelho,Towards knowledge-based infolog specifications A case study of information engineering.,1985,1,Decision Support Systems,2,db/journals/dss/dss1.html#CoelhoRS85,https://doi.org/10.1016/0167-9236(85)90064-8 +Francesc Carreras,A note on decisive symmetric games.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#CarrerasFP11,https://doi.org/10.1016/j.dss.2010.10.005 +Sweta Sneha,A framework for enabling patient monitoring via mobile ad hoc network.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#SnehaV13,https://doi.org/10.1016/j.dss.2013.01.024 +David Arnott,Eight key issues for the decision support systems discipline.,2008,44,Decision Support Systems,3,db/journals/dss/dss44.html#ArnottP08,https://doi.org/10.1016/j.dss.2007.09.003 +Eric W. T. Ngai,A review for mobile commerce research and applications.,2007,43,Decision Support Systems,1,db/journals/dss/dss43.html#NgaiG07a,https://doi.org/10.1016/j.dss.2005.05.003 +Sébastien Damart,Supporting groups in sorting decisions: Methodology and use of a multi-criteria aggregation/disaggregation DSS.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#DamartDM07,https://doi.org/10.1016/j.dss.2006.06.002 +Mario Fedrizzi,An interactive multi-user decision support system for consensus reaching processes using fuzzy logic with linguistic quantifiers.,1988,4,Decision Support Systems,3,db/journals/dss/dss4.html#FedrizziKZ88,https://doi.org/10.1016/0167-9236(88)90019-X +Michael J. Shaw,Applying machine learning to model management in decision support systems.,1988,4,Decision Support Systems,3,db/journals/dss/dss4.html#ShawTD88,https://doi.org/10.1016/0167-9236(88)90017-6 +Benjamin P.-C. Yen,Design and evaluation of improvement method on the web information navigation - A stochastic search approach.,2010,49,Decision Support Systems,1,db/journals/dss/dss49.html#YenW10,https://doi.org/10.1016/j.dss.2009.12.004 +Yong Hu,An integrative framework for intelligent software project risk planning.,2013,55,Decision Support Systems,4,db/journals/dss/dss55.html#HuDZHNFL13,https://doi.org/10.1016/j.dss.2012.12.029 +Amelia K. Y. Tong,An empirical model for tutoring strategy selection in multimedia tutoring systems.,2000,29,Decision Support Systems,1,db/journals/dss/dss29.html#TongA00,https://doi.org/10.1016/S0167-9236(00)00061-0 +Nikolaos Papakostas,An approach to operational aircraft maintenance planning.,2010,48,Decision Support Systems,4,db/journals/dss/dss48.html#PapakostasPXMC10,https://doi.org/10.1016/j.dss.2009.11.010 +Qing Cao,Organizational adoption of supply chain management system: A multi-theoretic investigation.,2013,55,Decision Support Systems,3,db/journals/dss/dss55.html#CaoGT13,https://doi.org/10.1016/j.dss.2013.02.003 +Roberto Chavez,Customer integration and operational performance: The mediating role of information quality.,2015,80,Decision Support Systems,,db/journals/dss/dss80.html#ChavezYGFW15,https://doi.org/10.1016/j.dss.2015.10.001 +Christopher C. Yang,Cross-lingual thesaurus for multilingual knowledge management.,2008,45,Decision Support Systems,3,db/journals/dss/dss45.html#YangWL08,https://doi.org/10.1016/j.dss.2007.07.005 +Chao-Hsien Chu,An improved neural network for manufacturing cell formation.,1997,20,Decision Support Systems,4,db/journals/dss/dss20.html#Chu97,https://doi.org/10.1016/S0167-9236(97)00015-8 +Ufuk Yolcu,A new linear and nonlinear artificial neural network model for time series forecasting.,2013,54,Decision Support Systems,3,db/journals/dss/dss54.html#YolcuEA13,https://doi.org/10.1016/j.dss.2012.12.006 +Steve Muylle,Online support for commerce processes and survivability of web retailers.,2004,38,Decision Support Systems,1,db/journals/dss/dss38.html#MuylleB04,https://doi.org/10.1016/S0167-9236(03)00074-5 +Choong N. Kim,Inductive modeling of expert decision making in loan evaluation: a decision strategy perspective.,1997,21,Decision Support Systems,2,db/journals/dss/dss21.html#KimCP97,https://doi.org/10.1016/S0167-9236(97)00022-5 +Chen-Yao Chung,6*P6*P: A novel approach to filter out malicious rating profiles from recommender systems.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#ChungHH13,https://doi.org/10.1016/j.dss.2013.01.020 +Ho-Suk Lee,An abusive text detection system based on enhanced abusive and non-abusive word lists.,2018,113,Decision Support Systems,,db/journals/dss/dss113.html#LeeLPH18,https://doi.org/10.1016/j.dss.2018.06.009 +Robert Fildes,The design features of forecasting support systems and their effectiveness.,2006,42,Decision Support Systems,1,db/journals/dss/dss42.html#FildesGL06,https://doi.org/10.1016/j.dss.2005.01.003 +Thomas C. O'Connell,Mechanism design for software agents with complete information.,2005,39,Decision Support Systems,2,db/journals/dss/dss39.html#OConnellS05,https://doi.org/10.1016/j.dss.2003.10.007 +Cristovão Silva,MAPP - A web-based decision support system for the mould industry.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#SilvaRA06,https://doi.org/10.1016/j.dss.2005.08.001 +Ronald L. Hess,Geographic information systems as a marketing information system technology.,2004,38,Decision Support Systems,2,db/journals/dss/dss38.html#HessRW04,https://doi.org/10.1016/S0167-9236(03)00102-7 +Urs Buehlmann,A spreadsheet-based decision support system for wood panel manufacturing.,2000,29,Decision Support Systems,3,db/journals/dss/dss29.html#BuehlmannRG00,https://doi.org/10.1016/S0167-9236(00)00072-5 +Guangzhi Ma,Multiple costs based decision making with back-propagation neural networks.,2012,52,Decision Support Systems,3,db/journals/dss/dss52.html#MaSHSH12,https://doi.org/10.1016/j.dss.2011.10.023 +Sokratis Vavilis,A reference model for reputation systems.,2014,61,Decision Support Systems,,db/journals/dss/dss61.html#VavilisPZ14,https://doi.org/10.1016/j.dss.2014.02.002 +Waleed A. Muhanna,An object-oriented framework for model management and DSS development.,1993,9,Decision Support Systems,2,db/journals/dss/dss9.html#Muhanna93,https://doi.org/10.1016/0167-9236(93)90013-S +Jan Mendling,Factors of process model comprehension - Findings from a series of experiments.,2012,53,Decision Support Systems,1,db/journals/dss/dss53.html#MendlingSR12,https://doi.org/10.1016/j.dss.2011.12.013 +Kuldeep Kumar,Interaction technology: Speech act based information technology support for building collaborative relationships and trust.,2007,43,Decision Support Systems,2,db/journals/dss/dss43.html#KumarB07,https://doi.org/10.1016/j.dss.2005.05.017 +Hyung-Min Michael Chung,Introduction: expertise and modeling expert decision making.,1997,21,Decision Support Systems,2,db/journals/dss/dss21.html#ChungJT97,https://doi.org/10.1016/S0167-9236(97)00016-X +Yang Yu,The impact of social and conventional media on firm equity value: A sentiment analysis approach.,2013,55,Decision Support Systems,4,db/journals/dss/dss55.html#YuDC13,https://doi.org/10.1016/j.dss.2012.12.028 +Sandeep Purao,Supporting decision making in combinatorially explosive multicriteria situations.,1999,26,Decision Support Systems,3,db/journals/dss/dss26.html#PuraoJN99,https://doi.org/10.1016/S0167-9236(99)00029-9 +Chi-Bin Cheng,Intelligent agents for e-marketplace: Negotiation with issue trade-offs by fuzzy inference systems.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#ChengCL06,https://doi.org/10.1016/j.dss.2005.02.009 +Deng Yong,Combining belief functions based on distance of evidence.,2004,38,Decision Support Systems,3,db/journals/dss/dss38.html#YongWZQ04,https://doi.org/10.1016/j.dss.2004.04.015 +Magnus Boman,Implementing an agent trade server.,2006,42,Decision Support Systems,1,db/journals/dss/dss42.html#BomanS06,https://doi.org/10.1016/j.dss.2005.01.006 +Mingguo Li,Which ideas are more likely to be implemented in online user innovation communities? An empirical analysis.,2016,84,Decision Support Systems,,db/journals/dss/dss84.html#LiKK16,https://doi.org/10.1016/j.dss.2016.01.004 +Marshall W. Van Alstyne,Why not one big database? Principles for data ownership.,1995,15,Decision Support Systems,4,db/journals/dss/dss15.html#AlstyneBM95,https://doi.org/10.1016/0167-9236(94)00042-4 +G. J. Wyatt,Qualitative and quantitative simulation of interacting markets.,1995,15,Decision Support Systems,2,db/journals/dss/dss15.html#WyattLS95,https://doi.org/10.1016/0167-9236(94)00030-V +Goele Aerts,The platform shapes the message: How website design affects abstraction and valence of online consumer reviews.,2017,104,Decision Support Systems,,db/journals/dss/dss104.html#AertsSV17,https://doi.org/10.1016/j.dss.2017.10.006 +Yevgeniy Vorobeychik,Average-case analysis of VCG with approximate resource allocation algorithms.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#VorobeychikE11,https://doi.org/10.1016/j.dss.2011.03.005 +Asil Oztekin,An RFID network design methodology for asset tracking in healthcare.,2010,49,Decision Support Systems,1,db/journals/dss/dss49.html#OztekinPDS10,https://doi.org/10.1016/j.dss.2010.01.007 +Artem Polyvyanyy,Process querying: Enabling business intelligence through query-based process analytics.,2017,100,Decision Support Systems,,db/journals/dss/dss100.html#PolyvyanyyOBA17,https://doi.org/10.1016/j.dss.2017.04.011 +Jongmyoung Kim,Late payment prediction models for fair allocation of customer contact lists to call center agents.,2016,85,Decision Support Systems,,db/journals/dss/dss85.html#KimK16,https://doi.org/10.1016/j.dss.2016.03.002 +Dan Zhu,A hybrid approach for efficient ensembles.,2010,48,Decision Support Systems,3,db/journals/dss/dss48.html#Zhu10,https://doi.org/10.1016/j.dss.2009.06.007 +Stefan Strecker,Information revelation in multiattribute English auctions: A laboratory study.,2010,49,Decision Support Systems,3,db/journals/dss/dss49.html#Strecker10,https://doi.org/10.1016/j.dss.2010.03.002 +Farhan Hassan Khan,TOM: Twitter opinion mining framework using hybrid classification scheme.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#KhanBQ14,https://doi.org/10.1016/j.dss.2013.09.004 +Panos Constantopoulos,Decision support for massive personnel assignment.,1989,5,Decision Support Systems,4,db/journals/dss/dss5.html#Constantopoulos89,https://doi.org/10.1016/0167-9236(89)90015-8 +Randall S. Sexton,Simultaneous optimization of neural network function and architecture algorithm.,2004,36,Decision Support Systems,3,db/journals/dss/dss36.html#SextonDS04,https://doi.org/10.1016/S0167-9236(02)00147-1 +Raymond Y. K. Lau,Social analytics: Learning fuzzy product ontologies for aspect-oriented sentiment analysis.,2014,65,Decision Support Systems,,db/journals/dss/dss65.html#LauLL14,https://doi.org/10.1016/j.dss.2014.05.005 +Sandra K. Dewitz,Defeasible reasoning in law.,1994,11,Decision Support Systems,2,db/journals/dss/dss11.html#DewitzRL94,https://doi.org/10.1016/0167-9236(94)90029-9 +Karl Reiner Lang,Designing markets for co-production of digital culture goods.,2009,48,Decision Support Systems,1,db/journals/dss/dss48.html#LangSV09,https://doi.org/10.1016/j.dss.2009.05.010 +Ki Yong Lee,Reducing the cost of accessing relations in incremental view maintenance.,2007,43,Decision Support Systems,2,db/journals/dss/dss43.html#LeeSK07,https://doi.org/10.1016/j.dss.2006.11.006 +Dickson K. W. Chiu,Developing e-Negotiation support with a meta-modeling approach in a Web services environment.,2005,40,Decision Support Systems,1,db/journals/dss/dss40.html#ChiuCHCC05,https://doi.org/10.1016/j.dss.2004.04.004 +Donald E. Brown,An information theoretic interface for a stochastic model management system.,1987,3,Decision Support Systems,1,db/journals/dss/dss3.html#Brown87,https://doi.org/10.1016/0167-9236(87)90036-4 +I. Böckenholt,A knowledge-based system for supporting data analysis problems.,1989,5,Decision Support Systems,4,db/journals/dss/dss5.html#BockenholtBG89,https://doi.org/10.1016/0167-9236(89)90014-6 +Kaushal Chari,Model composition in a distributed environment.,2003,35,Decision Support Systems,3,db/journals/dss/dss35.html#Chari03,https://doi.org/10.1016/S0167-9236(02)00116-1 +Yuan Li,Decision support for risk analysis on dynamic alliance.,2007,42,Decision Support Systems,4,db/journals/dss/dss42.html#LiL07,https://doi.org/10.1016/j.dss.2004.11.008 +Quan Zhang,Decision consolidation: criteria weight determination using multiple preference formats.,2004,38,Decision Support Systems,2,db/journals/dss/dss38.html#ZhangCC04,https://doi.org/10.1016/S0167-9236(03)00094-0 +Jeroen D'Haen,Integrating expert knowledge and multilingual web crawling data in a lead qualification system.,2016,82,Decision Support Systems,,db/journals/dss/dss82.html#DHaenPTB16,https://doi.org/10.1016/j.dss.2015.12.002 +Paulo A. S. Veloso,On the concepts of problem and problem-solving method.,1987,3,Decision Support Systems,2,db/journals/dss/dss3.html#Veloso87,https://doi.org/10.1016/0167-9236(87)90072-8 +Zhijie Lin,An empirical investigation of user and system recommendations in e-commerce.,2014,68,Decision Support Systems,,db/journals/dss/dss68.html#Lin14,https://doi.org/10.1016/j.dss.2014.10.003 +Michael Scholz,Effects of decision space information on MAUT-based systems that support purchase decision processes.,2017,97,Decision Support Systems,,db/journals/dss/dss97.html#ScholzFH17,https://doi.org/10.1016/j.dss.2017.03.004 +Marcos R. S. Borges,Key issues in the design of an asynchronous system to support meeting preparation.,1999,27,Decision Support Systems,3,db/journals/dss/dss27.html#BorgesPFS99,https://doi.org/10.1016/S0167-9236(99)00051-2 +Jie Zhang,The roles of players and reputation: Evidence from eBay online auctions.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#Zhang06,https://doi.org/10.1016/j.dss.2006.03.008 +Bernard Le Roux,Knowledge acquisition as a constructive process a methodological issue.,1996,18,Decision Support Systems,1,db/journals/dss/dss18.html#Roux96,https://doi.org/10.1016/0167-9236(96)00016-4 +Maybin K. Muyeba,A hybrid heuristic approach for attribute-oriented mining.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#MuyebaCWK14,https://doi.org/10.1016/j.dss.2013.08.012 +Sheryl Brahnam,Machine assessment of neonatal facial expressions of acute pain.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#BrahnamCSS07,https://doi.org/10.1016/j.dss.2006.02.004 +Kholekile L. Gwebu,Continued usage intention of multifunctional friend networking services: A test of a dual-process model using Facebook.,2014,67,Decision Support Systems,,db/journals/dss/dss67.html#GwebuWG14,https://doi.org/10.1016/j.dss.2014.08.004 +Clyde W. Holsapple,An elusive antecedent of superior firm performance: The knowledge management factor.,2011,52,Decision Support Systems,1,db/journals/dss/dss52.html#HolsappleW11,https://doi.org/10.1016/j.dss.2011.08.003 +özden Gür-Ali,Bridging the gap between business objectives and parameters of data mining algorithms.,1997,21,Decision Support Systems,1,db/journals/dss/dss21.html#Gur-AliW97,https://doi.org/10.1016/S0167-9236(97)00010-9 +Hardy Hanappi,Collect now-consume later on innovative products in electronic commerce.,2003,34,Decision Support Systems,2,db/journals/dss/dss34.html#HanappiK03,https://doi.org/10.1016/S0167-9236(02)00082-9 +Andrew N. K. Chen,Database design in the modern organization - identifying robust structures under changing query patterns and arrival rate conditions.,2004,37,Decision Support Systems,3,db/journals/dss/dss37.html#ChenGGM04,https://doi.org/10.1016/S0167-9236(03)00048-4 +Gowtham Ramesh,An efficacious method for detecting phishing webpages through target domain identification.,2014,61,Decision Support Systems,,db/journals/dss/dss61.html#RameshKK14,https://doi.org/10.1016/j.dss.2014.01.002 +Chiang Kao,Efficiency measurement for network systems: IT impact on firm performance.,2010,48,Decision Support Systems,3,db/journals/dss/dss48.html#KaoH10,https://doi.org/10.1016/j.dss.2009.06.002 +Peiwei Mi,A meta-model for formulating knowledge-based models of software development.,1996,17,Decision Support Systems,4,db/journals/dss/dss17.html#MiS96,https://doi.org/10.1016/0167-9236(96)00007-3 +Yen-Hsien Lee,A cost-sensitive technique for positive-example learning supporting content-based product recommendations in B-to-C e-commerce.,2012,53,Decision Support Systems,1,db/journals/dss/dss53.html#LeeHCH12,https://doi.org/10.1016/j.dss.2012.01.018 +Wenchao Wei,Test sequencing for sequential system diagnosis with precedence constraints and imperfect tests.,2017,103,Decision Support Systems,,db/journals/dss/dss103.html#WeiLL17,https://doi.org/10.1016/j.dss.2017.09.009 +W. Hu,Corporate dashboards for integrated business and engineering decisions in oil refineries: An agent-based approach.,2012,52,Decision Support Systems,3,db/journals/dss/dss52.html#HuAKAW12,https://doi.org/10.1016/j.dss.2011.11.019 +Joseph G. Szmerekovsky,Analytical model of adoption of item level RFID in a two-echelon supply chain with shelf-space and price-dependent demand.,2011,51,Decision Support Systems,4,db/journals/dss/dss51.html#SzmerekovskyTZ11,https://doi.org/10.1016/j.dss.2011.02.002 +L. F. Pau,Inference of the structure of economic reasoning from natural language analysis.,1985,1,Decision Support Systems,4,db/journals/dss/dss1.html#Pau85,https://doi.org/10.1016/0167-9236(85)90171-X +Jianhui Huang,Pricing strategy for cloud computing: A damaged services perspective.,2015,78,Decision Support Systems,,db/journals/dss/dss78.html#HuangKM15,https://doi.org/10.1016/j.dss.2014.11.001 +Audun Jøsang,A survey of trust and reputation systems for online service provision.,2007,43,Decision Support Systems,2,db/journals/dss/dss43.html#JosangIB07,https://doi.org/10.1016/j.dss.2005.05.019 +W. Lee Meeks,Geospatial information utility: an estimation of the relevance of geospatial information to users.,2004,38,Decision Support Systems,1,db/journals/dss/dss38.html#MeeksD04,https://doi.org/10.1016/S0167-9236(03)00076-9 +Ralph L. Keeney,Value-driven expert systems for decision support.,1988,4,Decision Support Systems,4,db/journals/dss/dss4.html#Keeney88,https://doi.org/10.1016/0167-9236(88)90003-6 +Weiling Ke,How do mediated and non-mediated power affect electronic supply chain management system adoption? The mediating effects of trust and institutional pressures.,2009,46,Decision Support Systems,4,db/journals/dss/dss46.html#KeLWGC09,https://doi.org/10.1016/j.dss.2008.11.008 +Hela Ltifi,Combination of cognitive and HCI modeling for the design of KDD-based DSS used in dynamic situations.,2015,78,Decision Support Systems,,db/journals/dss/dss78.html#LtifiKA15,https://doi.org/10.1016/j.dss.2015.07.003 +Yanjie Fu,Fused latent models for assessing product return propensity in online commerce.,2016,91,Decision Support Systems,,db/journals/dss/dss91.html#FuLPXLC16,https://doi.org/10.1016/j.dss.2016.08.002 +Siddharth Kaza,Enhancing border security: Mutual information analysis to identify suspect vehicles.,2007,43,Decision Support Systems,1,db/journals/dss/dss43.html#KazaWC07,https://doi.org/10.1016/j.dss.2006.09.007 +Shengsheng Xiao,Hidden semi-Markov model-based reputation management system for online to offline (O2O) e-commerce markets.,2015,77,Decision Support Systems,,db/journals/dss/dss77.html#XiaoD15,https://doi.org/10.1016/j.dss.2015.05.013 +Soussan Djamasbi,Affect and acceptance: Examining the effects of positive mood on the technology acceptance model.,2010,48,Decision Support Systems,2,db/journals/dss/dss48.html#DjamasbiSD10,https://doi.org/10.1016/j.dss.2009.10.002 +Dieter Langen,An (interactive) decision support system for bank asset liability management.,1989,5,Decision Support Systems,4,db/journals/dss/dss5.html#Langen89,https://doi.org/10.1016/0167-9236(89)90018-3 +Lorna Doucet,The effects of positive affect and personal information search on outcomes in call centers: An empirical study.,2012,52,Decision Support Systems,3,db/journals/dss/dss52.html#DoucetTT12,https://doi.org/10.1016/j.dss.2011.11.001 +Hung-Yi Lin,Efficient classifiers for multi-class classification problems.,2012,53,Decision Support Systems,3,db/journals/dss/dss53.html#Lin12,https://doi.org/10.1016/j.dss.2012.02.014 +Gautam Pant,Visibility of corporate websites: The role of information prosociality.,2018,106,Decision Support Systems,,db/journals/dss/dss106.html#PantP18,https://doi.org/10.1016/j.dss.2017.12.006 +Adam Westerski,Classifying and comparing community innovation in Idea Management Systems.,2013,54,Decision Support Systems,3,db/journals/dss/dss54.html#WesterskiDI13,https://doi.org/10.1016/j.dss.2012.12.004 +Shin'ichiro Takizawa,Analysis of the decision to invest for constructing a nuclear power plant under regulation of electricity price.,2004,37,Decision Support Systems,3,db/journals/dss/dss37.html#TakizawaS04,https://doi.org/10.1016/S0167-9236(03)00045-9 +Gary P. Moynihan,DSSALM: A decision support system for asset and liability management.,2002,33,Decision Support Systems,1,db/journals/dss/dss33.html#MoynihanPMN02,https://doi.org/10.1016/S0167-9236(01)00131-2 +Eugen Stripling,Isolation-based conditional anomaly detection on mixed-attribute data to uncover workers' compensation fraud.,2018,111,Decision Support Systems,,db/journals/dss/dss111.html#StriplingBCB18,https://doi.org/10.1016/j.dss.2018.04.001 +Bijan Fazlollahi,Adaptive decision support systems.,1997,20,Decision Support Systems,4,db/journals/dss/dss20.html#FazlollahiPV97,https://doi.org/10.1016/S0167-9236(97)00014-6 +Franz Schober,How much to spend on flexibility? Determining the value of information system flexibility.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#SchoberG11,https://doi.org/10.1016/j.dss.2011.03.004 +J. Christopher Zimmer,Knowing your customers: Using a reciprocal relationship to enhance voluntary information disclosure.,2010,48,Decision Support Systems,2,db/journals/dss/dss48.html#ZimmerAAMG10,https://doi.org/10.1016/j.dss.2009.10.003 +Paul Mangiameli,Model selection for medical diagnosis decision support systems.,2004,36,Decision Support Systems,3,db/journals/dss/dss36.html#MangiameliWR04,https://doi.org/10.1016/S0167-9236(02)00143-4 +Dionysis D. Bochtis,A DSS for planning of soil-sensitive field operations.,2012,53,Decision Support Systems,1,db/journals/dss/dss53.html#BochtisSG12,https://doi.org/10.1016/j.dss.2011.12.005 +Shuyuan Deng,Adapting sentiment lexicons to domain-specific social media texts.,2017,94,Decision Support Systems,,db/journals/dss/dss94.html#DengSZ17,https://doi.org/10.1016/j.dss.2016.11.001 +Geoffrey Lamptey,Decision support for optimal scheduling of highway pavement preventive maintenance within resurfacing cycle.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#LampteyLL08,https://doi.org/10.1016/j.dss.2008.07.004 +Sulin Ba,Establishing online trust through a community responsibility system.,2001,31,Decision Support Systems,3,db/journals/dss/dss31.html#Ba01,https://doi.org/10.1016/S0167-9236(00)00144-5 +Shankhadeep Banerjee,Whose online reviews to trust? Understanding reviewer trustworthiness and its impact on business.,2017,96,Decision Support Systems,,db/journals/dss/dss96.html#BanerjeeBB17,https://doi.org/10.1016/j.dss.2017.01.006 +Juan A. Aledo,Utopia in the solution of the Bucket Order Problem.,2017,97,Decision Support Systems,,db/journals/dss/dss97.html#AledoGR17,https://doi.org/10.1016/j.dss.2017.03.006 +Jae Heon Park,Agent-based merchandise management in Business-to-Business Electronic Commerce.,2003,35,Decision Support Systems,3,db/journals/dss/dss35.html#ParkP03,https://doi.org/10.1016/S0167-9236(02)00111-2 +Tong Bao,Why Amazon uses both the New York Times Best Seller List and customer reviews: An empirical study of multiplier effects on product sales from multiple earned media.,2014,67,Decision Support Systems,,db/journals/dss/dss67.html#BaoC14,https://doi.org/10.1016/j.dss.2014.07.004 +Kees M. van Hee,OR and AI approaches to decision support systems.,1988,4,Decision Support Systems,4,db/journals/dss/dss4.html#HeeL88,https://doi.org/10.1016/0167-9236(88)90008-5 +Alan S. Abrahams,Vehicle defect discovery from social media.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#AbrahamsJWF12,https://doi.org/10.1016/j.dss.2012.04.005 +Jean-Yves Potvin,A microcomputer assistant for the development of vehicle routing and scheduling heuristics.,1994,12,Decision Support Systems,1,db/journals/dss/dss12.html#PotvinLR94,https://doi.org/10.1016/0167-9236(94)90073-6 +Michael A. Eierman,DSS theory: A model of constructs and relationships.,1995,14,Decision Support Systems,1,db/journals/dss/dss14.html#EiermanNA95,https://doi.org/10.1016/0167-9236(94)00012-H +Michael L. Littman,A polynomial-time Nash equilibrium algorithm for repeated games.,2005,39,Decision Support Systems,1,db/journals/dss/dss39.html#LittmanS05,https://doi.org/10.1016/j.dss.2004.08.007 +Robert P. Schumaker,Prediction from regional angst - A study of NFL sentiment in Twitter using technical stock market charting.,2017,98,Decision Support Systems,,db/journals/dss/dss98.html#SchumakerLJB17,https://doi.org/10.1016/j.dss.2017.04.010 +Solomon R. Antony,Could the use of a knowledge-based system lead to implicit learning?,2007,43,Decision Support Systems,1,db/journals/dss/dss43.html#AntonyS07,https://doi.org/10.1016/j.dss.2006.08.004 +Wei Chang,A stack-based prospective spatio-temporal data analysis approach.,2008,45,Decision Support Systems,4,db/journals/dss/dss45.html#ChangZC08,https://doi.org/10.1016/j.dss.2007.12.008 +Johannes Gettinger,Shall we dance? - The effect of information presentations on negotiation processes and outcomes.,2012,53,Decision Support Systems,1,db/journals/dss/dss53.html#GettingerKS12,https://doi.org/10.1016/j.dss.2012.01.001 +Otto R. Koppius,The importance of product representation online: empirical results and implications for electronic markets.,2004,38,Decision Support Systems,2,db/journals/dss/dss38.html#KoppiusHW04,https://doi.org/10.1016/S0167-9236(03)00097-6 +John Yearwood,The generic/actual argument model of practical reasoning.,2006,41,Decision Support Systems,2,db/journals/dss/dss41.html#YearwoodS06,https://doi.org/10.1016/j.dss.2004.07.004 +Rui Chen 0002,Living a private life in public social networks: An exploration of member self-disclosure.,2013,55,Decision Support Systems,3,db/journals/dss/dss55.html#Chen13b,https://doi.org/10.1016/j.dss.2012.12.003 +Jenny Hands,An inclusive and extensible architecture for electronic brokerage.,2000,29,Decision Support Systems,4,db/journals/dss/dss29.html#HandsBBPS00,https://doi.org/10.1016/S0167-9236(00)00080-4 +Evelyn H. Thrasher,An empirical investigation of integration in healthcare alliance networks.,2010,50,Decision Support Systems,1,db/journals/dss/dss50.html#ThrasherCB10,https://doi.org/10.1016/j.dss.2010.07.007 +J. B. Arbaugh,The importance of participant interaction in online environments.,2007,43,Decision Support Systems,3,db/journals/dss/dss43.html#ArbaughB07,https://doi.org/10.1016/j.dss.2006.12.013 +Upkar Varshney,Smart medication management system and multiple interventions for medication adherence.,2013,55,Decision Support Systems,2,db/journals/dss/dss55.html#Varshney13,https://doi.org/10.1016/j.dss.2012.10.011 +George R. Widmeyer,Logic modeling with partially ordered preferences.,1988,4,Decision Support Systems,1,db/journals/dss/dss4.html#Widmeyer88,https://doi.org/10.1016/0167-9236(88)90099-1 +Clyde W. Holsapple,Organizational knowledge resources.,2001,31,Decision Support Systems,1,db/journals/dss/dss31.html#HolsappleJ01,https://doi.org/10.1016/S0167-9236(00)00118-4 +Hoon S. Choi,The effect of intrinsic and extrinsic quality cues of digital video games on sales: An empirical investigation.,2018,106,Decision Support Systems,,db/journals/dss/dss106.html#ChoiKMC18,https://doi.org/10.1016/j.dss.2017.12.005 +Edward J. Garrity,An experimental investigation of web-based information systems success in the context of electronic commerce.,2005,39,Decision Support Systems,3,db/journals/dss/dss39.html#GarrityGKSS05,https://doi.org/10.1016/j.dss.2004.06.015 +Hsin Hsin Chang,The effects of customer relationship management relational information processes on customer-based performance.,2014,66,Decision Support Systems,,db/journals/dss/dss66.html#ChangWF14,https://doi.org/10.1016/j.dss.2014.06.010 +Ritu Agarwal,The antecedents and consequents of user perceptions in information technology adoption.,1998,22,Decision Support Systems,1,db/journals/dss/dss22.html#AgarwalP98,https://doi.org/10.1016/S0167-9236(97)00006-7 +Michael J. Shaw,Introduction to the special issue.,1997,21,Decision Support Systems,3,db/journals/dss/dss21.html#ShawT97,https://doi.org/10.1016/S0167-9236(97)00031-6 +Henk G. Sol,Aggregating data for decision support.,1985,1,Decision Support Systems,2,db/journals/dss/dss1.html#Sol85,https://doi.org/10.1016/0167-9236(85)90062-4 +Robin G. Qiu,Integration design of material flow management in an e-business manufacturing environment.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#QiuTX06,https://doi.org/10.1016/j.dss.2005.10.005 +James R. Marsden,Decision making under time pressure with different information sources and performance-based financial incentives: part 3.,2006,42,Decision Support Systems,1,db/journals/dss/dss42.html#MarsdenPW06,https://doi.org/10.1016/j.dss.2004.09.013 +Kuanchin Chen,An exploratory study of the selection of communication media: The relationship between flow and communication outcomes.,2008,45,Decision Support Systems,4,db/journals/dss/dss45.html#ChenYHH08,https://doi.org/10.1016/j.dss.2008.02.002 +J. Leon Zhao,Web services and process management: a union of convenience or a new area of research? Editorial.,2005,40,Decision Support Systems,1,db/journals/dss/dss40.html#ZhaoC05,https://doi.org/10.1016/j.dss.2004.04.002 +Seung Kyoon Shin,Can knowledge be more accessible in a virtual network?: Collective dynamics of knowledge transfer in a virtual knowledge organization network.,2014,59,Decision Support Systems,,db/journals/dss/dss59.html#ShinK14,https://doi.org/10.1016/j.dss.2013.11.006 +Winston T. Lin,The complementarity and substitutability relationships between information technology and benefits and duration of unemployment.,2016,90,Decision Support Systems,,db/journals/dss/dss90.html#LinKCSS16,https://doi.org/10.1016/j.dss.2016.06.015 +Lynda M. Applegate,Model management systems: Design for decision support.,1986,2,Decision Support Systems,1,db/journals/dss/dss2.html#ApplegateKN86,https://doi.org/10.1016/0167-9236(86)90124-7 +Fidan Boylu,Principal-agent learning.,2009,47,Decision Support Systems,2,db/journals/dss/dss47.html#BoyluAK09,https://doi.org/10.1016/j.dss.2009.01.001 +Tiago Pinto,Six thinking hats: A novel metalearner for intelligent decision support in electricity markets.,2015,79,Decision Support Systems,,db/journals/dss/dss79.html#PintoBPSVP15,https://doi.org/10.1016/j.dss.2015.07.011 +Alfonso Rodríguez,Secure business process model specification through a UML 2.0 activity diagram profile.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#RodriguezFTP11,https://doi.org/10.1016/j.dss.2011.01.018 +Frédéric Cuppens,Extending answers to neighbour entities in a cooperative answering context.,1991,7,Decision Support Systems,1,db/journals/dss/dss7.html#CuppensD91,https://doi.org/10.1016/0167-9236(91)90073-K +Ioannis Petrakis,On the impact of real-time information on field service scheduling.,2012,53,Decision Support Systems,2,db/journals/dss/dss53.html#PetrakisHB12,https://doi.org/10.1016/j.dss.2012.01.013 +Zeljko Deljac,Early detection of network element outages based on customer trouble calls.,2015,73,Decision Support Systems,,db/journals/dss/dss73.html#DeljacRK15,https://doi.org/10.1016/j.dss.2015.02.014 +Dirk Baldwin,Toward representing management-domain knowledge.,1986,2,Decision Support Systems,2,db/journals/dss/dss2.html#BaldwinK86,https://doi.org/10.1016/0167-9236(86)90093-X +Shan Ling Pan,Customer relationship management (CRM) in e-government: a relational perspective.,2006,42,Decision Support Systems,1,db/journals/dss/dss42.html#PanTL06,https://doi.org/10.1016/j.dss.2004.12.001 +Dmitri Roussinov,Automatic discovery of similarity relationships through Web mining.,2003,35,Decision Support Systems,1,db/journals/dss/dss35.html#RoussinovZ03,https://doi.org/10.1016/S0167-9236(02)00102-1 +Sungjune Park,Sustaining Web 2.0 services: A survival analysis of a live crowd-casting service.,2013,54,Decision Support Systems,3,db/journals/dss/dss54.html#ParkLL13,https://doi.org/10.1016/j.dss.2012.11.016 +Lila Rao,Building ontology based knowledge maps to assist business process re-engineering.,2012,52,Decision Support Systems,3,db/journals/dss/dss52.html#RaoMO12,https://doi.org/10.1016/j.dss.2011.10.014 +Yi-Kuei Lin,Network reliability based decision of Internet with multiple sources and multiple sinks.,2013,54,Decision Support Systems,3,db/journals/dss/dss54.html#LinY13,https://doi.org/10.1016/j.dss.2012.12.018 +Sven S. Groth,An intraday market risk management approach based on textual analysis.,2011,50,Decision Support Systems,4,db/journals/dss/dss50.html#GrothM11,https://doi.org/10.1016/j.dss.2010.08.019 +Salvatore Greco,Putting Dominance-based Rough Set Approach and robust ordinal regression together.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#GrecoSZ13,https://doi.org/10.1016/j.dss.2012.09.013 +David Martens,Performance of classification models from a user perspective.,2011,51,Decision Support Systems,4,db/journals/dss/dss51.html#MartensVVB11,https://doi.org/10.1016/j.dss.2011.01.013 +Hyung Jun Ahn,Utilizing knowledge context in virtual collaborative work.,2005,39,Decision Support Systems,4,db/journals/dss/dss39.html#AhnLCP05,https://doi.org/10.1016/j.dss.2004.03.005 +Fabio A. Schreiber,Dynamic user profiles and flexible queries in office document retrieval systems.,1989,5,Decision Support Systems,1,db/journals/dss/dss5.html#SchreiberBM89,https://doi.org/10.1016/0167-9236(89)90025-0 +James Soo Keng Ang,Management issues in data warehousing: insights from the Housing and Development Board.,2000,29,Decision Support Systems,1,db/journals/dss/dss29.html#AngT00,https://doi.org/10.1016/S0167-9236(99)00085-8 +Hans W. Gottinger,Intelligent inference systems based on influence diagrams.,1995,15,Decision Support Systems,1,db/journals/dss/dss15.html#GottingerW95,https://doi.org/10.1016/0167-9236(94)00049-X +Weiguo Fan,DIRECT: a system for mining data value conversion rules from disparate data sources.,2002,34,Decision Support Systems,1,db/journals/dss/dss34.html#FanLMC02,https://doi.org/10.1016/S0167-9236(02)00006-4 +Wei Zhou 0001,Detecting evolutionary financial statement fraud.,2011,50,Decision Support Systems,3,db/journals/dss/dss50.html#ZhouK11,https://doi.org/10.1016/j.dss.2010.08.007 +S. L. Chan,A dynamic decision support system to predict the value of customer for new product development.,2011,52,Decision Support Systems,1,db/journals/dss/dss52.html#ChanI11,https://doi.org/10.1016/j.dss.2011.07.002 +Bonnie Rubenstein-Montano,Agent learning in the multi-agent contracting system [MACS].,2008,45,Decision Support Systems,1,db/journals/dss/dss45.html#Rubenstein-MontanoYDL08,https://doi.org/10.1016/j.dss.2007.12.013 +Sudip Bhattacharjee,"To theme or not to theme: Can theme strength be the music industry's ""killer app""?",2009,48,Decision Support Systems,1,db/journals/dss/dss48.html#BhattacharjeeGMST09,https://doi.org/10.1016/j.dss.2009.07.005 +Rajiv M. Dewan,The role of user capability and incentives in group and individual decision support systems: An economics perspective.,1994,12,Decision Support Systems,1,db/journals/dss/dss12.html#DewanH94,https://doi.org/10.1016/0167-9236(94)90072-8 +Robert W. Blanning,Postscript.,1993,9,Decision Support Systems,1,db/journals/dss/dss9.html#BlanningHW93a,https://doi.org/10.1016/0167-9236(93)90028-2 +Clyde W. Holsapple,A unified foundation for business analytics.,2014,64,Decision Support Systems,,db/journals/dss/dss64.html#HolsappleLP14,https://doi.org/10.1016/j.dss.2014.05.013 +Nelson F. Granados,à la carte pricing and price elasticity of demand in air travel.,2012,53,Decision Support Systems,2,db/journals/dss/dss53.html#GranadosKLL12,https://doi.org/10.1016/j.dss.2012.01.009 +Yao-Chuan Tsai,Model integration using SML.,1998,22,Decision Support Systems,4,db/journals/dss/dss22.html#Tsai98,https://doi.org/10.1016/S0167-9236(97)00065-1 +Melody Y. Kiang,A service-oriented analysis of online product classification methods.,2011,52,Decision Support Systems,1,db/journals/dss/dss52.html#KiangYHCL11,https://doi.org/10.1016/j.dss.2011.05.001 +Dorit Nevo,Primary vendor capabilities in a mediated outsourcing model: Can IT service providers leverage crowdsourcing?,2014,65,Decision Support Systems,,db/journals/dss/dss65.html#NevoK14,https://doi.org/10.1016/j.dss.2014.05.008 +Durk-Jouke van der Zee,Conceptual modeling for simulation-based serious gaming.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#ZeeHR12,https://doi.org/10.1016/j.dss.2012.03.006 +Eric K. Clemons,Carrying your long tail: Delighting your consumers and managing your operations.,2011,51,Decision Support Systems,4,db/journals/dss/dss51.html#ClemonsN11,https://doi.org/10.1016/j.dss.2011.02.007 +Suzanne Pinson,A distributed decision support system for strategic planning.,1997,20,Decision Support Systems,1,db/journals/dss/dss20.html#PinsonLM97,https://doi.org/10.1016/S0167-9236(96)00074-7 +R. Jiang,Comments on: a new aggregation method in a fuzzy environment.,2003,35,Decision Support Systems,3,db/journals/dss/dss35.html#JiangJL03,https://doi.org/10.1016/S0167-9236(02)00070-2 +Wei T. Yue,A cost-based analysis of intrusion detection system configuration under active or passive response.,2010,50,Decision Support Systems,1,db/journals/dss/dss50.html#YueC10,https://doi.org/10.1016/j.dss.2010.06.001 +Ramanath Subramanyam,Free/Libre Open Source Software development in developing and developed countries: A conceptual framework with an exploratory study.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#SubramanyamX08,https://doi.org/10.1016/j.dss.2008.06.006 +Kemal Altinkemer,Cost and benefit analysis of authentication systems.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#AltinkemerW11,https://doi.org/10.1016/j.dss.2011.01.005 +Martin Swobodzinski,Evaluating user interaction with a web-based group decision support system: A comparison between two clustering methods.,2015,77,Decision Support Systems,,db/journals/dss/dss77.html#SwobodzinskiJ15,https://doi.org/10.1016/j.dss.2015.07.001 +Jhih-Hua Jhang-Li,Resource allocation and revenue optimization for cloud service providers.,2015,77,Decision Support Systems,,db/journals/dss/dss77.html#Jhang-LiC15,https://doi.org/10.1016/j.dss.2015.04.008 +Luz Minerva González,Knowledge management-centric help desk: specification and performance evaluation.,2005,40,Decision Support Systems,2,db/journals/dss/dss40.html#GonzalezGR05,https://doi.org/10.1016/j.dss.2004.04.013 +Bin Srinidhi,Allocation of resources to cyber-security: The effect of misalignment of interest between managers and investors.,2015,75,Decision Support Systems,,db/journals/dss/dss75.html#SrinidhiYT15,https://doi.org/10.1016/j.dss.2015.04.011 +Kees M. van Hee,A modeling environment for decision support systems.,1991,7,Decision Support Systems,3,db/journals/dss/dss7.html#HeeSV91,https://doi.org/10.1016/0167-9236(91)90041-9 +S. K. Deb,Fuzzy decision support system for manufacturing facilities layout planning.,2005,40,Decision Support Systems,2,db/journals/dss/dss40.html#DebB05,https://doi.org/10.1016/j.dss.2003.12.007 +Arie Segev,Internet-based EDI strategy.,1997,21,Decision Support Systems,3,db/journals/dss/dss21.html#SegevPR97,https://doi.org/10.1016/S0167-9236(97)00026-2 +M. Ramesh,Software resue: Issues and an example.,1994,12,Decision Support Systems,1,db/journals/dss/dss12.html#RameshR94,https://doi.org/10.1016/0167-9236(94)90074-4 +Heung-Nam Kim,Collaborative error-reflected models for cold-start recommender systems.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#KimEJ11,https://doi.org/10.1016/j.dss.2011.02.015 +Hai Zhuge,Component-based workflow systems development.,2003,35,Decision Support Systems,4,db/journals/dss/dss35.html#Zhuge03,https://doi.org/10.1016/S0167-9236(02)00127-6 +Tal Ben-Zvi,Measuring the perceived effectiveness of decision support systems and their impact on performance.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#Ben-Zvi12,https://doi.org/10.1016/j.dss.2012.05.033 +Johannes Paefgen,Evaluation and aggregation of pay-as-you-drive insurance rate factors: A classification analysis approach.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#PaefgenST13,https://doi.org/10.1016/j.dss.2013.06.001 +Mukul Gupta,Matching information security vulnerabilities to organizational security profiles: a genetic algorithm approach.,2006,41,Decision Support Systems,3,db/journals/dss/dss41.html#GuptaRCC06,https://doi.org/10.1016/j.dss.2004.06.004 +Kumar Mehta,Adequacy of training data for evolutionary mining of trading rules.,2004,37,Decision Support Systems,4,db/journals/dss/dss37.html#MehtaB04,https://doi.org/10.1016/S0167-9236(03)00091-5 +Zhiyong Liu,Enabling effective workflow model reuse: A data-centric approach.,2017,93,Decision Support Systems,,db/journals/dss/dss93.html#LiuFWZ17,https://doi.org/10.1016/j.dss.2016.09.002 +Paul L. Bowen,Selecting optimal instantiations of data models - Theory and validation of an ex ante approach.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#BowenDRB06,https://doi.org/10.1016/j.dss.2005.10.002 +Hemant K. Bhargava,The benefit of information asymmetry: When to sell to informed customers?,2012,53,Decision Support Systems,2,db/journals/dss/dss53.html#BhargavaC12,https://doi.org/10.1016/j.dss.2012.01.006 +Nitin Aggarwal,Intellectual Property Bundle (IPB) theory: Managing transaction costs in technology development through network governance.,2009,48,Decision Support Systems,1,db/journals/dss/dss48.html#AggarwalW09,https://doi.org/10.1016/j.dss.2009.05.008 +Dianne Hall,Philosophical foundations for a learning-oriented knowledge management system for decision support.,2005,39,Decision Support Systems,3,db/journals/dss/dss39.html#HallP05,https://doi.org/10.1016/j.dss.2004.01.005 +Anne P. Massey,Re-engineering the customer relationship: leveraging knowledge assets at IBM.,2001,32,Decision Support Systems,2,db/journals/dss/dss32.html#MasseyMH01,https://doi.org/10.1016/S0167-9236(01)00108-7 +Jim McGovern,Knowledge acquisition for intelligent decision systems.,1991,7,Decision Support Systems,3,db/journals/dss/dss7.html#McGovernSW91,https://doi.org/10.1016/0167-9236(91)90043-B +Shib Sankar Sana,A production-inventory model of imperfect quality products in a three-layer supply chain.,2011,50,Decision Support Systems,2,db/journals/dss/dss50.html#Sana11,https://doi.org/10.1016/j.dss.2010.11.012 +Cristina Fierbinteanu,A decision support systems generator for transportation demand forecasting implemented by constraint logic programming.,1999,26,Decision Support Systems,3,db/journals/dss/dss26.html#Fierbinteanu99,https://doi.org/10.1016/S0167-9236(99)00030-5 +Han Zhang,Service science in information systems research.,2012,53,Decision Support Systems,4,db/journals/dss/dss53.html#ZhangWC12,https://doi.org/10.1016/j.dss.2012.05.010 +Sean B. Eom,Leading U.S. universities and most influential contributors in decision support systems research (1971-1989) a citation analysis.,1993,9,Decision Support Systems,3,db/journals/dss/dss9.html#EomL93,https://doi.org/10.1016/0167-9236(93)90055-8 +Hsieh-Chang Tu,An architecture and category knowledge for intelligent information retrieval agents.,2000,28,Decision Support Systems,3,db/journals/dss/dss28.html#TuH00,https://doi.org/10.1016/S0167-9236(99)00089-5 +H. Raghav Rao,An active intelligent decision support system - Architecture and simulation.,1994,12,Decision Support Systems,1,db/journals/dss/dss12.html#RaoSN94,https://doi.org/10.1016/0167-9236(94)90075-2 +Joaquín Benítez,An approach to AHP decision in a dynamic context.,2012,53,Decision Support Systems,3,db/journals/dss/dss53.html#BenitezDIP12,https://doi.org/10.1016/j.dss.2012.04.015 +Jae Kyu Lee,AI and ES research for DSS.,1996,18,Decision Support Systems,1,db/journals/dss/dss18.html#LeeM96,https://doi.org/10.1016/0167-9236(96)00013-9 +Wolfgang Maass 0002,Design and evaluation of Ubiquitous Information Systems and use in healthcare.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#MaassV12,https://doi.org/10.1016/j.dss.2012.08.007 +Wei Zhou 0001,Effect of ticket-switching on inventory and shelf-space allocation.,2015,69,Decision Support Systems,,db/journals/dss/dss69.html#ZhouP15,https://doi.org/10.1016/j.dss.2014.11.004 +Jie Lu 0001,Recommender system application developments: A survey.,2015,74,Decision Support Systems,,db/journals/dss/dss74.html#LuWMWZ15,https://doi.org/10.1016/j.dss.2015.03.008 +R. P. Sundarraj,A Web-based AHP approach to standardize the process of managing service-contracts.,2004,37,Decision Support Systems,3,db/journals/dss/dss37.html#Sundarraj04,https://doi.org/10.1016/S0167-9236(03)00033-2 +Jyun-Cheng Wang,Social interaction and continuance intention in online auctions: A social capital perspective.,2009,47,Decision Support Systems,4,db/journals/dss/dss47.html#WangC09,https://doi.org/10.1016/j.dss.2009.04.013 +Der-Chiang Li,Rebuilding sample distributions for small dataset learning.,2018,105,Decision Support Systems,,db/journals/dss/dss105.html#LiLCCL18,https://doi.org/10.1016/j.dss.2017.10.013 +Kuo-Hao Chang,A decision support system for planning and coordination of hybrid renewable energy systems.,2014,64,Decision Support Systems,,db/journals/dss/dss64.html#Chang14,https://doi.org/10.1016/j.dss.2014.04.001 +Jessica Pu Li,A case study of private-public collaboration for humanitarian free and open source disaster management software deployment.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#LiCLR13,https://doi.org/10.1016/j.dss.2012.10.030 +Jingguo Wang,An exploration of risk information search via a search engine: Queries and clicks in healthcare and information security.,2012,52,Decision Support Systems,2,db/journals/dss/dss52.html#WangXR12,https://doi.org/10.1016/j.dss.2011.09.006 +Shola Adeyemi,Towards an evidence-based decision making healthcare system management: Modelling patient pathways to improve clinical outcomes.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#AdeyemiDC13,https://doi.org/10.1016/j.dss.2012.12.039 +Lara Vomfell,Improving crime count forecasts using Twitter and taxi data.,2018,113,Decision Support Systems,,db/journals/dss/dss113.html#VomfellHL18,https://doi.org/10.1016/j.dss.2018.07.003 +Huseyin Ince,A hybrid model for exchange rate prediction.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#InceT06,https://doi.org/10.1016/j.dss.2005.09.001 +Lean Yu,A distance-based group decision-making methodology for multi-person multi-criteria emergency decision support.,2011,51,Decision Support Systems,2,db/journals/dss/dss51.html#YuL11,https://doi.org/10.1016/j.dss.2010.11.024 +Arne Løkketangen,A distance function to support optimized selection decisions.,2005,39,Decision Support Systems,3,db/journals/dss/dss39.html#LokketangenW05,https://doi.org/10.1016/j.dss.2004.01.001 +Myron Hatcher,A video conferencing system for the United States Army: Group decision making in a geographically distributed environment.,1992,8,Decision Support Systems,2,db/journals/dss/dss8.html#Hatcher92a,https://doi.org/10.1016/0167-9236(92)90008-D +Kihoon Kim,Dynamic search engine competition with a knowledge-sharing service.,2012,52,Decision Support Systems,2,db/journals/dss/dss52.html#KimT12,https://doi.org/10.1016/j.dss.2011.10.002 +John Gerdes Jr.,EDGAR-Analyzer: automating the analysis of corporate data contained in the SEC's EDGAR database.,2003,35,Decision Support Systems,1,db/journals/dss/dss35.html#Gerdes03,https://doi.org/10.1016/S0167-9236(02)00096-9 +Youzhong Liu,A Cost-Benefit Evaluation Server for decision support in e-business.,2003,36,Decision Support Systems,1,db/journals/dss/dss36.html#LiuYSL03,https://doi.org/10.1016/S0167-9236(02)00133-1 +Eui-Ho Suh,"Use of a dialogbase for integrated ""relational"" decision support systems.",1989,5,Decision Support Systems,3,db/journals/dss/dss5.html#SuhH89,https://doi.org/10.1016/0167-9236(89)90035-3 +Yohan J. Roh,Efficient construction of histograms for multidimensional data using quad-trees.,2011,52,Decision Support Systems,1,db/journals/dss/dss52.html#RohKSK11,https://doi.org/10.1016/j.dss.2011.05.006 +Sai Ho Kwok,Integration of digital rights management into the Internet Open Trading Protocol.,2003,34,Decision Support Systems,4,db/journals/dss/dss34.html#KwokCWTLT03,https://doi.org/10.1016/S0167-9236(02)00067-2 +Rustam M. Vahidov,Decision station: situating decision support systems.,2004,38,Decision Support Systems,2,db/journals/dss/dss38.html#VahidovK04,https://doi.org/10.1016/S0167-9236(03)00099-X +Vincent S. Lai,Evaluation of intranets in a distributed environment.,1998,23,Decision Support Systems,4,db/journals/dss/dss23.html#LaiM98,https://doi.org/10.1016/S0167-9236(98)00064-5 +Hai Zhuge,Inheritance rules for flexible model retrieval.,1998,22,Decision Support Systems,4,db/journals/dss/dss22.html#Zhuge98,https://doi.org/10.1016/S0167-9236(98)00026-8 +Suh-Wen Chiou,A bi-level decision support system for uncertain network design with equilibrium flow.,2015,69,Decision Support Systems,,db/journals/dss/dss69.html#Chiou15,https://doi.org/10.1016/j.dss.2014.12.004 +Gondy Leroy,Introduction to the special issue on decision support in medicine.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#LeroyC07,https://doi.org/10.1016/j.dss.2006.02.001 +Adolfo Crespo Marquez,A Decision Support System for evaluating operations investments in high-technology business.,2006,41,Decision Support Systems,2,db/journals/dss/dss41.html#MarquezB06,https://doi.org/10.1016/j.dss.2004.08.012 +Hayden Wimmer,Counterfeit product detection: Bridging the gap between design science and behavioral science in information systems research.,2017,104,Decision Support Systems,,db/journals/dss/dss104.html#WimmerY17,https://doi.org/10.1016/j.dss.2017.09.005 +Suriadi Suriadi,Event interval analysis: Why do processes take time?,2015,79,Decision Support Systems,,db/journals/dss/dss79.html#SuriadiOAH15,https://doi.org/10.1016/j.dss.2015.07.007 +Clyde W. Holsapple,An empirical assessment and categorization of journals relevant to DSS research.,1995,14,Decision Support Systems,4,db/journals/dss/dss14.html#HolsappleJMT95,https://doi.org/10.1016/0167-9236(94)00022-K +Hsien-Tung Tsai,Why do newcomers participate in virtual communities? An integration of self-determination and relationship management theories.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#TsaiP14,https://doi.org/10.1016/j.dss.2013.09.001 +Paul Jen-Hwa Hu,Evaluating a decision support system for patient image pre-fetching: An experimental study.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#HuWS06,https://doi.org/10.1016/j.dss.2006.02.016 +Yeu-Shiang Huang,Efficient maintenance of basic statistical functions in data warehouses.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#HuangDF14,https://doi.org/10.1016/j.dss.2013.08.003 +Zhongming Ma,Can visible cues in search results indicate vendors' reliability?,2012,52,Decision Support Systems,3,db/journals/dss/dss52.html#MaSPI12,https://doi.org/10.1016/j.dss.2011.12.002 +Juan A. Recio-García,Including social factors in an argumentative model for Group Decision Support Systems.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#Recio-GarciaSD13,https://doi.org/10.1016/j.dss.2013.05.007 +Yuliang Yao,An interorganizational perspective on the use of electronically-enabled supply chains.,2007,43,Decision Support Systems,3,db/journals/dss/dss43.html#YaoPD07,https://doi.org/10.1016/j.dss.2007.01.002 +Jie Du,Improving financial data quality using ontologies.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#DuZ12,https://doi.org/10.1016/j.dss.2012.04.016 +Indranil Chakraborty,Examining the effects of cognitive style in individuals' technology use decision making.,2008,45,Decision Support Systems,2,db/journals/dss/dss45.html#ChakrabortyHC08,https://doi.org/10.1016/j.dss.2007.02.003 +Bettina von Helversen,Influence of consumer reviews on online purchasing decisions in older and younger adults.,2018,113,Decision Support Systems,,db/journals/dss/dss113.html#HelversenAKN18,https://doi.org/10.1016/j.dss.2018.05.006 +Indranil Bose,Do phishing alerts impact global corporations? A firm value analysis.,2014,64,Decision Support Systems,,db/journals/dss/dss64.html#BoseL14,https://doi.org/10.1016/j.dss.2014.04.006 +Dorit Nevo,The knowledge demands of expertise seekers in two different contexts: Knowledge allocation versus knowledge retrieval.,2012,53,Decision Support Systems,3,db/journals/dss/dss53.html#NevoBW12,https://doi.org/10.1016/j.dss.2012.03.005 +Brent Vickers,Designing layered functionality within group decision support systems.,1994,11,Decision Support Systems,1,db/journals/dss/dss11.html#Vickers94,https://doi.org/10.1016/0167-9236(94)90068-X +Jennifer Kreie,Applications development by end-users: can quality be improved?,2000,29,Decision Support Systems,2,db/journals/dss/dss29.html#KreieCPR00,https://doi.org/10.1016/S0167-9236(00)00068-3 +Daniel Boley,Partitioning-based clustering for Web document categorization.,1999,27,Decision Support Systems,3,db/journals/dss/dss27.html#BoleyGGHHKKMM99,https://doi.org/10.1016/S0167-9236(99)00055-X +Dae-Young Choi,A new aggregation method in a fuzzy environment.,1999,25,Decision Support Systems,1,db/journals/dss/dss25.html#Choi99,https://doi.org/10.1016/S0167-9236(98)00087-6 +Michael Doumpos,A multicriteria decision support system for bank rating.,2010,50,Decision Support Systems,1,db/journals/dss/dss50.html#DoumposZ10,https://doi.org/10.1016/j.dss.2010.07.002 +Dale Fitch,Structural equation modeling the use of a risk assessment instrument in child protective services.,2007,42,Decision Support Systems,4,db/journals/dss/dss42.html#Fitch07,https://doi.org/10.1016/j.dss.2006.05.008 +Peter C. Scott,Requirements analysis assisted by logic modelling.,1988,4,Decision Support Systems,1,db/journals/dss/dss4.html#Scott88,https://doi.org/10.1016/0167-9236(88)90095-4 +Lai Lai Tung,Cultural differences explaining the differences in results in GSS: implications for the next decade.,2002,33,Decision Support Systems,2,db/journals/dss/dss33.html#TungQ02,https://doi.org/10.1016/S0167-9236(01)00143-9 +Piotr J. Gmytrasiewicz,Editorial: decision theory and game theory in agent design.,2005,39,Decision Support Systems,2,db/journals/dss/dss39.html#GmytrasiewiczP05,https://doi.org/10.1016/j.dss.2003.10.003 +Brian L. Dos Santos,Minimizing information acquisition costs.,1993,9,Decision Support Systems,2,db/journals/dss/dss9.html#SantosM93,https://doi.org/10.1016/0167-9236(93)90010-Z +Ali R. Montazemi,On the effectiveness of decisional guidance.,1996,18,Decision Support Systems,2,db/journals/dss/dss18.html#MontazemiWNB96,https://doi.org/10.1016/0167-9236(96)00038-3 +Octavio Glorio,A personalization process for spatial data warehouse development.,2012,52,Decision Support Systems,4,db/journals/dss/dss52.html#GlorioMGT12,https://doi.org/10.1016/j.dss.2011.11.010 +Michael Khalemsky,Emergency Response Community Effectiveness: A simulation modeler for comparing Emergency Medical Services with smartphone-based Samaritan response.,2017,102,Decision Support Systems,,db/journals/dss/dss102.html#KhalemskyS17,https://doi.org/10.1016/j.dss.2017.07.003 +Peijian Song,Online information product design: The influence of product integration on brand extension.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#SongZZ13,https://doi.org/10.1016/j.dss.2012.09.008 +Eduardo Fernández 0002,Core: A decision support system for regional competitiveness analysis based on multi-criteria sorting.,2013,54,Decision Support Systems,3,db/journals/dss/dss54.html#FernandezNDI13,https://doi.org/10.1016/j.dss.2012.12.009 +Andy Luse,The blocking effect of preconceived bias.,2018,108,Decision Support Systems,,db/journals/dss/dss108.html#LuseTM18,https://doi.org/10.1016/j.dss.2018.02.002 +J. Shreve,A methodology for comparing classification methods through the assessment of model stability and validity in variable selection.,2011,52,Decision Support Systems,1,db/journals/dss/dss52.html#ShreveSS11,https://doi.org/10.1016/j.dss.2011.08.001 +Christopher C. Yang,Editors' introduction special issue on multilingual knowledge management.,2008,45,Decision Support Systems,3,db/journals/dss/dss45.html#YangWC08,https://doi.org/10.1016/j.dss.2007.07.002 +Bartel Van de Walle,A fuzzy decision support system for IT Service Continuity threat assessment.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#WalleR06,https://doi.org/10.1016/j.dss.2006.05.002 +Katia P. Sycara,Machine learning for intelligent support of conflict resolution.,1993,10,Decision Support Systems,2,db/journals/dss/dss10.html#Sycara93,https://doi.org/10.1016/0167-9236(93)90034-Z +Moez Limayem,Impact of GDSS: Opening the black box.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#LimayemBM06,https://doi.org/10.1016/j.dss.2005.08.004 +Daniel E. O'Leary,A multilingual knowledge management system: A case study of FAO and WAICENT.,2008,45,Decision Support Systems,3,db/journals/dss/dss45.html#OLeary08,https://doi.org/10.1016/j.dss.2007.07.007 +Mo Wei,Game-theoretic modeling and control of military operations with partially emotional civilian players.,2008,44,Decision Support Systems,3,db/journals/dss/dss44.html#WeiCCHKB08,https://doi.org/10.1016/j.dss.2007.07.010 +Robert P. Schumaker,Machine learning the harness track: Crowdsourcing and varying race history.,2013,54,Decision Support Systems,3,db/journals/dss/dss54.html#Schumaker13,https://doi.org/10.1016/j.dss.2012.12.013 +Pei-Chann Chang,A hybrid model by clustering and evolving fuzzy rules for sales decision supports in printed circuit board industry.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#ChangLW06,https://doi.org/10.1016/j.dss.2005.10.013 +Meltem öztürk,Modelling uncertain positive and negative reasons in decision aiding.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#OzturkT07,https://doi.org/10.1016/j.dss.2006.06.005 +Sung Joo Park,Constraint-based metaview approach for modeling environment generation.,1993,9,Decision Support Systems,4,db/journals/dss/dss9.html#ParkK93,https://doi.org/10.1016/0167-9236(93)90045-5 +Henry C. W. Lau,A pragmatic stochastic decision model for supporting goods trans-shipments in a supply chain environment.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#LauN12,https://doi.org/10.1016/j.dss.2012.04.012 +Toshiyuki Sueyoshi,Beyond economics for guiding large public policy issues: Lessons from the Bell System divestiture and the California electricity crisis.,2010,48,Decision Support Systems,3,db/journals/dss/dss48.html#Sueyoshi10,https://doi.org/10.1016/j.dss.2009.06.005 +George Wright,Eliciting and modelling expert knowledge.,1987,3,Decision Support Systems,1,db/journals/dss/dss3.html#WrightA87,https://doi.org/10.1016/0167-9236(87)90032-7 +Hing Kai Chan,Comparative study of adaptability and flexibility in distributed manufacturing supply chains.,2010,48,Decision Support Systems,2,db/journals/dss/dss48.html#ChanC10,https://doi.org/10.1016/j.dss.2009.09.001 +Lei Wang,On the brink: Predicting business failure with mobile location-based checkins.,2015,76,Decision Support Systems,,db/journals/dss/dss76.html#WangGSP15,https://doi.org/10.1016/j.dss.2015.04.010 +Ing-Long Wu,Using the balanced scorecard in assessing the performance of e-SCM diffusion: A multi-stage perspective.,2012,52,Decision Support Systems,2,db/journals/dss/dss52.html#WuC12,https://doi.org/10.1016/j.dss.2011.10.008 +Zhongfeng Zhang,User community discovery from multi-relational networks.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#ZhangLZG13,https://doi.org/10.1016/j.dss.2012.09.012 +Angela Fabregues,HANA: A Human-Aware Negotiation Architecture.,2014,60,Decision Support Systems,,db/journals/dss/dss60.html#FabreguesS14,https://doi.org/10.1016/j.dss.2013.05.017 +Daniela Fogli,Knowledge-centered design of decision support systems for emergency management.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#FogliG13,https://doi.org/10.1016/j.dss.2013.01.022 +Rahul C. Basole,IT innovation adoption by enterprises: Knowledge discovery through text analytics.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#BasoleSR13,https://doi.org/10.1016/j.dss.2012.10.029 +Yuliang Yao,Supply chain integration in vendor-managed inventory.,2007,43,Decision Support Systems,2,db/journals/dss/dss43.html#YaoED07,https://doi.org/10.1016/j.dss.2005.05.021 +Robert W. Blanning,Introduction.,1991,7,Decision Support Systems,4,db/journals/dss/dss7.html#BlanningK91,https://doi.org/10.1016/0167-9236(91)90059-K +Ganesh D. Bhatt,The enabling role of decision support systems in organizational learning.,2002,32,Decision Support Systems,3,db/journals/dss/dss32.html#BhattZ02,https://doi.org/10.1016/S0167-9236(01)00120-8 +Hemant K. Bhargava,Computer-aided model construction.,1993,9,Decision Support Systems,1,db/journals/dss/dss9.html#BhargavaK93a,https://doi.org/10.1016/0167-9236(93)90025-X +Mercedes Boncompte,The expected value of perfect information in unrepeatable decision-making.,2018,110,Decision Support Systems,,db/journals/dss/dss110.html#Boncompte18,https://doi.org/10.1016/j.dss.2018.03.003 +Chao-Min Chiu,Re-examining the influence of trust on online repeat purchase intention: The moderating role of habit and its antecedents.,2012,53,Decision Support Systems,4,db/journals/dss/dss53.html#ChiuHLC12,https://doi.org/10.1016/j.dss.2012.05.021 +Elisabetta Fersini,Sentiment analysis: Bayesian Ensemble Learning.,2014,68,Decision Support Systems,,db/journals/dss/dss68.html#FersiniMP14,https://doi.org/10.1016/j.dss.2014.10.004 +Dieter Ehrenberg,Expert systems for inventory control.,1990,6,Decision Support Systems,4,db/journals/dss/dss6.html#Ehrenberg90,https://doi.org/10.1016/0167-9236(90)90024-L +Man Leung Wong,Data mining of Bayesian networks using cooperative coevolution.,2004,38,Decision Support Systems,3,db/journals/dss/dss38.html#WongLL04,https://doi.org/10.1016/S0167-9236(03)00115-5 +Bojan Furlan,Semantic similarity of short texts in languages with a deficient natural language processing support.,2013,55,Decision Support Systems,3,db/journals/dss/dss55.html#FurlanBN13,https://doi.org/10.1016/j.dss.2013.02.002 +Boris A. Galitsky,A novel approach for classifying customer complaints through graphs similarities in argumentative dialogues.,2009,46,Decision Support Systems,3,db/journals/dss/dss46.html#GalitskyGC09,https://doi.org/10.1016/j.dss.2008.11.015 +Arash Barfar,Applying behavioral economics in predictive analytics for B2B churn: Findings from service quality data.,2017,101,Decision Support Systems,,db/journals/dss/dss101.html#BarfarPH17,https://doi.org/10.1016/j.dss.2017.06.006 +P. Gokul Chander,Using goals to design and verify rule bases.,1997,21,Decision Support Systems,4,db/journals/dss/dss21.html#ChanderSR97,https://doi.org/10.1016/S0167-9236(97)00046-8 +Madjid Tavana,A novel entropy-based decision support framework for uncertainty resolution in the initial subjective evaluations of experts: The NATO enlargement problem.,2015,74,Decision Support Systems,,db/journals/dss/dss74.html#TavanaCSO15,https://doi.org/10.1016/j.dss.2015.04.001 +Fionn Murtagh,On neuro-wavelet modeling.,2004,37,Decision Support Systems,4,db/journals/dss/dss37.html#MurtaghSR04,https://doi.org/10.1016/S0167-9236(03)00092-7 +Jinn-Yi Yeh,Using data mining techniques to predict hospitalization of hemodialysis patients.,2011,50,Decision Support Systems,2,db/journals/dss/dss50.html#YehWT11,https://doi.org/10.1016/j.dss.2010.11.001 +Ting-Peng Liang,A semantic-expansion approach to personalized knowledge recommendation.,2008,45,Decision Support Systems,3,db/journals/dss/dss45.html#LiangYCK08,https://doi.org/10.1016/j.dss.2007.05.004 +Ayhan Demiriz,Re-mining item associations: Methodology and a case study in apparel retailing.,2011,52,Decision Support Systems,1,db/journals/dss/dss52.html#DemirizEAK11,https://doi.org/10.1016/j.dss.2011.08.004 +Stefan Koch,Software project effort estimation with voting rules.,2009,46,Decision Support Systems,4,db/journals/dss/dss46.html#KochM09,https://doi.org/10.1016/j.dss.2008.12.002 +Robert W. Day,A combinatorial procurement auction featuring bundle price revelation without free-riding.,2008,44,Decision Support Systems,3,db/journals/dss/dss44.html#DayR08,https://doi.org/10.1016/j.dss.2007.09.002 +Harris Wu,Mining web navigations for intelligence.,2006,41,Decision Support Systems,3,db/journals/dss/dss41.html#WuGDF06,https://doi.org/10.1016/j.dss.2004.06.011 +I-Tung Yang,Utility-based decision support system for schedule optimization.,2008,44,Decision Support Systems,3,db/journals/dss/dss44.html#Yang08,https://doi.org/10.1016/j.dss.2007.08.001 +Paul Gray,The user interface in group decision support systems.,1989,5,Decision Support Systems,2,db/journals/dss/dss5.html#GrayO89,https://doi.org/10.1016/0167-9236(89)90002-X +Shuai Ding,Utilizing customer satisfaction in ranking prediction for personalized cloud service selection.,2017,93,Decision Support Systems,,db/journals/dss/dss93.html#DingWWO17,https://doi.org/10.1016/j.dss.2016.09.001 +Indranil R. Bardhan,Health information technology and its impact on the quality and cost of healthcare delivery.,2013,55,Decision Support Systems,2,db/journals/dss/dss55.html#BardhanT13,https://doi.org/10.1016/j.dss.2012.10.003 +Charles Ling-yu Chou,Continuous auditing with a multi-agent system.,2007,42,Decision Support Systems,4,db/journals/dss/dss42.html#ChouDL07,https://doi.org/10.1016/j.dss.2006.08.002 +Frank K. Y. Chan,Acceptance of agile methodologies: A critical review and conceptual framework.,2009,46,Decision Support Systems,4,db/journals/dss/dss46.html#ChanT09,https://doi.org/10.1016/j.dss.2008.11.009 +William Groves,Agent-assisted supply chain management: Analysis and lessons learned.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#GrovesCGK14,https://doi.org/10.1016/j.dss.2013.09.006 +Juliana Sutanto,Uncovering the relationship between OSS user support networks and OSS popularity.,2014,64,Decision Support Systems,,db/journals/dss/dss64.html#SutantoKT14,https://doi.org/10.1016/j.dss.2014.05.014 +Danièle Thomassin Singh,Incorporating cognitive aids into decision support systems: the case of the strategy execution process.,1998,24,Decision Support Systems,2,db/journals/dss/dss24.html#Singh98,https://doi.org/10.1016/S0167-9236(98)00066-9 +Concha Bielza,Modeling challenges with influence diagrams: Constructing probability and utility models.,2010,49,Decision Support Systems,4,db/journals/dss/dss49.html#BielzaGS10,https://doi.org/10.1016/j.dss.2010.04.003 +Joel Brynielsson,Using AI and games for decision support in command and control.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#Brynielsson07,https://doi.org/10.1016/j.dss.2006.06.012 +Tung X. Bui,An agent-based framework for building decision support systems.,1999,25,Decision Support Systems,3,db/journals/dss/dss25.html#BuiL99,https://doi.org/10.1016/S0167-9236(99)00008-1 +Xiaorui Hu,"Erratum to ""The effects of third-party web assurance seals on consumers' initial trust in online vendors: A functional perspective"" [Decision Support Systems Volume (48/2) 407-418].",2010,49,Decision Support Systems,2,db/journals/dss/dss49.html#HuWWZ10a,https://doi.org/10.1016/j.dss.2010.01.001 +Dinko Bacic,Business information visualization intellectual contributions: An integrative framework of visualization capabilities and dimensions of visual intelligence.,2016,89,Decision Support Systems,,db/journals/dss/dss89.html#BacicF16,https://doi.org/10.1016/j.dss.2016.06.011 +Surya B. Yadav,An expert modeling support system for modeling an object system to specify its information requirements.,1989,5,Decision Support Systems,1,db/journals/dss/dss5.html#YadavC89,https://doi.org/10.1016/0167-9236(89)90026-2 +Adir Even,Evaluating a model for cost-effective data quality management in a real-world CRM setting.,2010,50,Decision Support Systems,1,db/journals/dss/dss50.html#EvenSB10,https://doi.org/10.1016/j.dss.2010.07.011 +Jan-Willem van Dam,Online profiling and clustering of Facebook users.,2015,70,Decision Support Systems,,db/journals/dss/dss70.html#DamV15,https://doi.org/10.1016/j.dss.2014.12.001 +Jingguo Wang,Visual e-mail authentication and identification services: An investigation of the effects on e-mail use.,2009,48,Decision Support Systems,1,db/journals/dss/dss48.html#WangCHR09,https://doi.org/10.1016/j.dss.2009.06.012 +Xinggang Luo,Optimal product positioning with consideration of negative utility effect on consumer choice rule.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#LuoKTT12,https://doi.org/10.1016/j.dss.2012.06.002 +Clyde W. Holsapple,Introduction to ISDSS research contributions.,1993,9,Decision Support Systems,4,db/journals/dss/dss9.html#HolsappleW93,https://doi.org/10.1016/0167-9236(93)90043-3 +Dawn G. Gregg,Distributing decision support systems on the WWW: the verification of a DSS metadata model.,2002,32,Decision Support Systems,3,db/journals/dss/dss32.html#GreggGP02,https://doi.org/10.1016/S0167-9236(01)00095-1 +Lucian L. Visinescu,Orthogonal rotations in latent semantic analysis: An empirical study.,2014,62,Decision Support Systems,,db/journals/dss/dss62.html#VisinescuE14,https://doi.org/10.1016/j.dss.2014.03.010 +S. Alireza Hashemi Golpayegani,Designing work breakdown structures using modular neural networks.,2007,44,Decision Support Systems,1,db/journals/dss/dss44.html#GolpayeganiE07,https://doi.org/10.1016/j.dss.2007.03.013 +Sanjay Goel,Service-based P2P overlay network for collaborative problem solving.,2007,43,Decision Support Systems,2,db/journals/dss/dss43.html#GoelTS07,https://doi.org/10.1016/j.dss.2005.05.015 +Jie Gu,Privacy concerns for mobile app download: An elaboration likelihood model perspective.,2017,94,Decision Support Systems,,db/journals/dss/dss94.html#GuXXZL17,https://doi.org/10.1016/j.dss.2016.10.002 +Nadine Meskens,Multi-objective operating room scheduling considering desiderata of the surgical team.,2013,55,Decision Support Systems,2,db/journals/dss/dss55.html#MeskensDH13,https://doi.org/10.1016/j.dss.2012.10.019 +Hsieh-Hong Huang,Understanding the role of computer-mediated counter-argument in countering confirmation bias.,2012,53,Decision Support Systems,3,db/journals/dss/dss53.html#HuangHK12,https://doi.org/10.1016/j.dss.2012.03.009 +Mohammed Quaddus,Management policies and the diffusion of data warehouse: a case study using system dynamics-based decision support system.,2001,31,Decision Support Systems,2,db/journals/dss/dss31.html#QuaddusI01,https://doi.org/10.1016/S0167-9236(00)00133-0 +Peter Bajcsy,Understanding documentation and reconstruction requirements for computer-assisted decision processes.,2010,50,Decision Support Systems,1,db/journals/dss/dss50.html#BajcsyKL10,https://doi.org/10.1016/j.dss.2010.08.033 +John B. Norris,An empirical investigation into factors affecting patient cancellations and no-shows at outpatient clinics.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#NorrisKCMSW14,https://doi.org/10.1016/j.dss.2012.10.048 +Yao-Hua Tan,INCAS: a legal expert system for contract terms in electronic commerce.,2000,29,Decision Support Systems,4,db/journals/dss/dss29.html#TanT00,https://doi.org/10.1016/S0167-9236(00)00085-3 +Olli-Pekka Hilmola,Foreword.,2013,54,Decision Support Systems,4,db/journals/dss/dss54.html#HilmolaRV13,https://doi.org/10.1016/j.dss.2012.05.052 +Antonio Jiménez,Contracting cleaning services in a European public underground transportation company with the aid of a DSS.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#JimenezMRR07,https://doi.org/10.1016/j.dss.2006.06.010 +Sudip Bhattacharjee,Whatever happened to payola? An empirical analysis of online music sharing.,2006,42,Decision Support Systems,1,db/journals/dss/dss42.html#BhattacharjeeGLM06,https://doi.org/10.1016/j.dss.2004.11.001 +Carina Hallin,Harnessing the frontline employee sensing of capabilities for decision support.,2017,97,Decision Support Systems,,db/journals/dss/dss97.html#HallinAT17,https://doi.org/10.1016/j.dss.2017.03.009 +Peng Su,Mining actionable behavioral rules.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#SuMZZ12,https://doi.org/10.1016/j.dss.2012.04.013 +YiMing Zheng,The impacts of information quality and system quality on users' continuance intention in information-exchange virtual communities: An empirical investigation.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#ZhengZS13,https://doi.org/10.1016/j.dss.2012.11.008 +Randall S. Sexton,Toward global optimization of neural networks: A comparison of the genetic algorithm and backpropagation.,1998,22,Decision Support Systems,2,db/journals/dss/dss22.html#SextonDJ98,https://doi.org/10.1016/S0167-9236(97)00040-7 +A. A. Zaidan,Multi-criteria analysis for OS-EMR software selection problem: A comparative study.,2015,78,Decision Support Systems,,db/journals/dss/dss78.html#ZaidanZHHKA15,https://doi.org/10.1016/j.dss.2015.07.002 +Jeroen Beliën,Optimizing the facility location design of organ transplant centers.,2013,54,Decision Support Systems,4,db/journals/dss/dss54.html#BelienBCDB13,https://doi.org/10.1016/j.dss.2012.05.059 +Soon-Young Huh,A real-time synchronization mechanism for collaborative model management.,2004,37,Decision Support Systems,3,db/journals/dss/dss37.html#HuhK04,https://doi.org/10.1016/S0167-9236(03)00031-9 +Hai Zhuge,Conflict decision training through multi-space co-operation.,2000,29,Decision Support Systems,2,db/journals/dss/dss29.html#Zhuge00,https://doi.org/10.1016/S0167-9236(00)00064-6 +Ran M. Bittmann,Visualization of multi-algorithm clustering for better economic decisions - The case of car pricing.,2009,47,Decision Support Systems,1,db/journals/dss/dss47.html#BittmannG09,https://doi.org/10.1016/j.dss.2008.12.012 +Gholamreza Torkzadeh,Identifying issues in customer relationship management at Merck-Medco.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#TorkzadehCH06,https://doi.org/10.1016/j.dss.2005.10.003 +Ting-Peng Liang,Analogical reasoning and case-based learning in model management systems.,1993,10,Decision Support Systems,2,db/journals/dss/dss10.html#Liang93,https://doi.org/10.1016/0167-9236(93)90035-2 +Romilla Chowdhuri,Ontology based integration of XBRL filings for financial decision making.,2014,68,Decision Support Systems,,db/journals/dss/dss68.html#ChowdhuriYRE14,https://doi.org/10.1016/j.dss.2014.09.004 +Michael J. Davern,Knowledge matters: Restrictiveness and performance with decision support.,2010,49,Decision Support Systems,4,db/journals/dss/dss49.html#DavernK10,https://doi.org/10.1016/j.dss.2010.04.001 +Soussan Djamasbi,Does positive affect influence the effective usage of a Decision Support System?,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#Djamasbi07,https://doi.org/10.1016/j.dss.2006.09.002 +Shasha Zhou,The order effect on online review helpfulness: A social influence perspective.,2017,93,Decision Support Systems,,db/journals/dss/dss93.html#ZhouG17,https://doi.org/10.1016/j.dss.2016.09.016 +Michael Y. Hu,Modeling consumer situational choice of long distance communication with neural networks.,2008,44,Decision Support Systems,4,db/journals/dss/dss44.html#HuSZH08,https://doi.org/10.1016/j.dss.2007.10.009 +Arun Sen,IT alignment strategies for customer relationship management.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#SenS11,https://doi.org/10.1016/j.dss.2010.12.014 +Margaret Meiling Luo,Web-based information service adoption: A comparison of the motivational model and the uses and gratifications theory.,2011,51,Decision Support Systems,1,db/journals/dss/dss51.html#LuoCC11,https://doi.org/10.1016/j.dss.2010.11.015 +Shih-Wei Chou,The implementation factors that influence the ERP (enterprise resource planning) benefits.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#ChouC08,https://doi.org/10.1016/j.dss.2008.06.003 +Aspassia Daskalopulu,Computational aspects of the FLBC framework.,2002,33,Decision Support Systems,3,db/journals/dss/dss33.html#DaskalopuluS02,https://doi.org/10.1016/S0167-9236(02)00016-7 +Xueqi (David) Wei,"Experience information goods: ""Version-to-upgrade"".",2013,56,Decision Support Systems,,db/journals/dss/dss56.html#WeiN13,https://doi.org/10.1016/j.dss.2012.11.006 +Chaitanya Singh,Rental software valuation in IT investment decisions.,2004,38,Decision Support Systems,1,db/journals/dss/dss38.html#SinghSJK04,https://doi.org/10.1016/S0167-9236(03)00081-2 +Minseok Song 0001,Towards comprehensive support for organizational mining.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#SongA08,https://doi.org/10.1016/j.dss.2008.07.002 +Young Hee Joh,Buyer's customized directory management over sellers' e-catalogs: logic programming approach.,2003,34,Decision Support Systems,2,db/journals/dss/dss34.html#JohL03,https://doi.org/10.1016/S0167-9236(02)00081-7 +Stephen F. Roehrig,Probabilistic inference and path analysis.,1996,16,Decision Support Systems,1,db/journals/dss/dss16.html#Roehrig96,https://doi.org/10.1016/0167-9236(94)00056-5 +Bo K. Wong,Neural network applications in business: A review and analysis of the literature (1988-1995).,1997,19,Decision Support Systems,4,db/journals/dss/dss19.html#WongBS97,https://doi.org/10.1016/S0167-9236(96)00070-X +Vijay Gurbaxani,The demand for information technology capital An empirical analysis.,1992,8,Decision Support Systems,5,db/journals/dss/dss8.html#Gurbaxani92,https://doi.org/10.1016/0167-9236(92)90025-K +Michael zur Muehlen,Developing web services choreography standards - the case of REST vs. SOAP.,2005,40,Decision Support Systems,1,db/journals/dss/dss40.html#MuehlenNS05,https://doi.org/10.1016/j.dss.2004.04.008 +Kristof Coussement,A comparative analysis of data preparation algorithms for customer churn prediction: A case study in the telecommunication industry.,2017,95,Decision Support Systems,,db/journals/dss/dss95.html#CoussementLV17,https://doi.org/10.1016/j.dss.2016.11.007 +Shuk Ying Ho,The effects of location personalization on individuals' intention to use mobile services.,2012,53,Decision Support Systems,4,db/journals/dss/dss53.html#Ho12,https://doi.org/10.1016/j.dss.2012.05.012 +Michel R. Klein,SIMAR: a software environment to define and test strategic management knowledge bases.,1999,26,Decision Support Systems,2,db/journals/dss/dss26.html#Klein99,https://doi.org/10.1016/S0167-9236(99)00026-3 +Gert van Valkenhoef,ADDIS: A decision support system for evidence-based medicine.,2013,55,Decision Support Systems,2,db/journals/dss/dss55.html#ValkenhoefTZBH13,https://doi.org/10.1016/j.dss.2012.10.005 +Dong-Jun Wu,Cooperation in multi-agent bidding.,2002,33,Decision Support Systems,3,db/journals/dss/dss33.html#WuS02,https://doi.org/10.1016/S0167-9236(02)00020-9 +Hong Guo,A survey of quantum games.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#GuoZK08,https://doi.org/10.1016/j.dss.2008.07.001 +Evangelos Markakis,On the core of the multicommodity flow game.,2005,39,Decision Support Systems,1,db/journals/dss/dss39.html#MarkakisS05,https://doi.org/10.1016/j.dss.2004.08.003 +Richard G. Ramirez,Derived data for decision support systems.,1996,17,Decision Support Systems,2,db/journals/dss/dss17.html#RamirezKM96,https://doi.org/10.1016/0167-9236(95)00008-9 +Thiagarajan Ramakrishnan,Factors influencing business intelligence (BI) data collection strategies: An empirical investigation.,2012,52,Decision Support Systems,2,db/journals/dss/dss52.html#RamakrishnanJS12,https://doi.org/10.1016/j.dss.2011.10.009 +Robert W. Blanning,National information infrastructure in Pacific Asia.,1997,21,Decision Support Systems,3,db/journals/dss/dss21.html#BlanningBT97,https://doi.org/10.1016/S0167-9236(97)00030-4 +Nikitas-Spiros Koutsoukis,Adapting on-line analytical processing for decision modelling: the interaction of information and decision technologies.,1999,26,Decision Support Systems,1,db/journals/dss/dss26.html#KoutsoukisML99,https://doi.org/10.1016/S0167-9236(99)00021-4 +Boris Jukic,Congestion based resource sharing in multi-service networks.,2004,37,Decision Support Systems,3,db/journals/dss/dss37.html#JukicSC04,https://doi.org/10.1016/S0167-9236(03)00046-0 +Wout van Wezel,The SEC-system reuse: support for scheduling system development.,1999,26,Decision Support Systems,1,db/journals/dss/dss26.html#WezelJ99,https://doi.org/10.1016/S0167-9236(99)00018-4 +San-Yih Hwang,Consulting past exceptions to facilitate workflow exception handling.,2004,37,Decision Support Systems,1,db/journals/dss/dss37.html#HwangT04,https://doi.org/10.1016/S0167-9236(02)00194-X +Hak-Jin Kim,Dynamic faceted navigation in decision making using Semantic Web technology.,2014,61,Decision Support Systems,,db/journals/dss/dss61.html#KimZKS14,https://doi.org/10.1016/j.dss.2014.01.010 +Dongming Xu,Intelligent agent supported personalization for virtual learning environments.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#XuW06,https://doi.org/10.1016/j.dss.2005.05.033 +Fu-ren Lin,Storyline-based summarization for news topic retrospection.,2008,45,Decision Support Systems,3,db/journals/dss/dss45.html#LinL08,https://doi.org/10.1016/j.dss.2007.06.009 +Rey-Long Liu,Distributed agents for cost-effective monitoring of critical success factors.,2003,35,Decision Support Systems,3,db/journals/dss/dss35.html#LiuL03,https://doi.org/10.1016/S0167-9236(02)00113-6 +Helen M. Moshkovich,Data influences the result more than preferences: Some lessons from implementation of multiattribute techniques in a real decision task.,1998,22,Decision Support Systems,1,db/journals/dss/dss22.html#MoshkovichSO98,https://doi.org/10.1016/S0167-9236(97)00024-9 +Hasan Pirkul,VisOpt: a visual interactive optimization tool for P-median problems.,1999,26,Decision Support Systems,3,db/journals/dss/dss26.html#PirkulGR99,https://doi.org/10.1016/S0167-9236(99)00032-9 +Augusto Pianese,Dynamic immigration control improving inverse old-age dependency ratio in a pay-as-you-go pension system.,2014,64,Decision Support Systems,,db/journals/dss/dss64.html#PianeseAV14,https://doi.org/10.1016/j.dss.2014.04.009 +Hoi-Ming Chi,Machine learning and genetic algorithms in pharmaceutical development and manufacturing processes.,2009,48,Decision Support Systems,1,db/journals/dss/dss48.html#ChiMEAGHO09,https://doi.org/10.1016/j.dss.2009.06.010 +Stefan Morana,A review of the nature and effects of guidance design features.,2017,97,Decision Support Systems,,db/journals/dss/dss97.html#MoranaSSM17,https://doi.org/10.1016/j.dss.2017.03.003 +Sherry M. B. Thatcher,Individual creativity in teams: The importance of communication media mix.,2010,49,Decision Support Systems,3,db/journals/dss/dss49.html#ThatcherB10,https://doi.org/10.1016/j.dss.2010.03.004 +Wei-yu Kevin Chiang,Predicting and explaining patronage behavior toward web and traditional stores using neural networks: a comparative analysis with logistic regression.,2006,41,Decision Support Systems,2,db/journals/dss/dss41.html#ChiangZZ06,https://doi.org/10.1016/j.dss.2004.08.016 +Chen-Yuan Chang,A knowledge-based operation support system for network traffic management.,1994,11,Decision Support Systems,1,db/journals/dss/dss11.html#ChangC94,https://doi.org/10.1016/0167-9236(94)90062-0 +Marcus Grum,A decision maxim for efficient task realization within analytical network infrastructures.,2018,112,Decision Support Systems,,db/journals/dss/dss112.html#GrumBAG18,https://doi.org/10.1016/j.dss.2018.06.005 +Manuel Chica,Identimod: Modeling and managing brand value using soft computing.,2016,89,Decision Support Systems,,db/journals/dss/dss89.html#ChicaCDIM16,https://doi.org/10.1016/j.dss.2016.06.007 +Laureano F. Escudero,A branch-and-cut algorithm for the Winner Determination Problem.,2009,46,Decision Support Systems,3,db/journals/dss/dss46.html#EscuderoLM09,https://doi.org/10.1016/j.dss.2008.10.009 +Venkat Srinivasan,Decision support for integrated cash management.,1986,2,Decision Support Systems,4,db/journals/dss/dss2.html#SrinivasanK86,https://doi.org/10.1016/0167-9236(86)90005-9 +Wojtek Michalowski,Mobile clinical support system for pediatric emergencies.,2003,36,Decision Support Systems,2,db/journals/dss/dss36.html#MichalowskiRSW03,https://doi.org/10.1016/S0167-9236(02)00140-9 +Stephanie Watts,Data quality assessment in context: A cognitive perspective.,2009,48,Decision Support Systems,1,db/journals/dss/dss48.html#WattsSE09,https://doi.org/10.1016/j.dss.2009.07.012 +özden Engin çakici,Using RFID for the management of pharmaceutical inventory - system optimization and shrinkage control.,2011,51,Decision Support Systems,4,db/journals/dss/dss51.html#CakiciGS11,https://doi.org/10.1016/j.dss.2011.02.003 +M. C. Er,The anonymity and proximity factors in group decision support systems.,1995,14,Decision Support Systems,1,db/journals/dss/dss14.html#ErN95,https://doi.org/10.1016/0167-9236(94)00013-I +Mei Alonzo,Flaming in electronic communication.,2004,36,Decision Support Systems,3,db/journals/dss/dss36.html#AlonzoA04,https://doi.org/10.1016/S0167-9236(02)00190-2 +Gauri Kulkarni,Using online search data to forecast new product sales.,2012,52,Decision Support Systems,3,db/journals/dss/dss52.html#KulkarniKM12,https://doi.org/10.1016/j.dss.2011.10.017 +Yohanes Kristianto,A decision support system for integrating manufacturing and product design into the reconfiguration of the supply chain networks.,2012,52,Decision Support Systems,4,db/journals/dss/dss52.html#KristiantoGHS12,https://doi.org/10.1016/j.dss.2011.11.014 +Y. Alex Tung,HypEs: an architecture for hypermedia-enabled expert systems.,1999,26,Decision Support Systems,4,db/journals/dss/dss26.html#TungGM99,https://doi.org/10.1016/S0167-9236(99)00057-3 +Rathindra Sarathy,Secure and useful data sharing.,2006,42,Decision Support Systems,1,db/journals/dss/dss42.html#SarathyM06,https://doi.org/10.1016/j.dss.2004.10.013 +Kaushal Chari,An implementation of a graph-based modeling system for structured modeling (GBMS/SM).,1998,22,Decision Support Systems,2,db/journals/dss/dss22.html#ChariS98,https://doi.org/10.1016/S0167-9236(97)00056-0 +Bo Xiao,An empirical examination of the influence of biased personalized product recommendations on consumers' decision making outcomes.,2018,110,Decision Support Systems,,db/journals/dss/dss110.html#XiaoB18,https://doi.org/10.1016/j.dss.2018.03.005 +Linda Leon,A spreadsheet life cycle analysis and the impact of Sarbanes-Oxley.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#LeonKCA12,https://doi.org/10.1016/j.dss.2012.06.006 +Young-Gul Kim,Building an organizational decision support system for Korea Telecom: A process redesign approach.,1997,19,Decision Support Systems,4,db/journals/dss/dss19.html#KimKYR97,https://doi.org/10.1016/S0167-9236(96)00066-8 +Michael V. Mannino,Classification algorithm sensitivity to training data with non representative attribute noise.,2009,46,Decision Support Systems,3,db/journals/dss/dss46.html#ManninoYR09,https://doi.org/10.1016/j.dss.2008.11.021 +Yanjuan Yang,An experimental comparison of real and artificial deception using a deception generation model.,2012,53,Decision Support Systems,3,db/journals/dss/dss53.html#YangM12,https://doi.org/10.1016/j.dss.2012.04.009 +Yuh-Jen Chen,On technology for functional requirement-based reference design retrieval in engineering knowledge management.,2008,44,Decision Support Systems,4,db/journals/dss/dss44.html#ChenCCK08,https://doi.org/10.1016/j.dss.2007.10.003 +Adedeji B. Badiru,DDM: Decision support system for hierarchical dynamic decision making.,1993,10,Decision Support Systems,1,db/journals/dss/dss10.html#BadiruPK93,https://doi.org/10.1016/0167-9236(93)90002-K +George Sakellaropoulos,Prognostic performance of two expert systems based on Bayesian belief networks.,2000,27,Decision Support Systems,4,db/journals/dss/dss27.html#SakellaropoulosN00,https://doi.org/10.1016/S0167-9236(99)00059-7 +Lai-Huat Lim,Interacting effects of GDSS and leadership.,1994,12,Decision Support Systems,3,db/journals/dss/dss12.html#LimRW94,https://doi.org/10.1016/0167-9236(94)90004-3 +Johan Frishammar,Digital strategies for two-sided markets: A case study of shopping malls.,2018,108,Decision Support Systems,,db/journals/dss/dss108.html#FrishammarCCHC18,https://doi.org/10.1016/j.dss.2018.02.003 +Xia Zhao,Service design of consumer data intermediary for competitive individual targeting.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#Zhao12,https://doi.org/10.1016/j.dss.2012.08.015 +James J. Jiang,A marketing category management system: a decision support system using scanner data.,1998,23,Decision Support Systems,3,db/journals/dss/dss23.html#JiangKP98,https://doi.org/10.1016/S0167-9236(98)00053-0 +Xiaoyan Liu,A local social network approach for research management.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#LiuGLM13,https://doi.org/10.1016/j.dss.2012.10.055 +Reza Barkhi,A study of the effect of communication channel and authority on group decision processes and outcomes.,1998,23,Decision Support Systems,3,db/journals/dss/dss23.html#BarkhiJPP98,https://doi.org/10.1016/S0167-9236(98)00048-7 +Mark Keith,The influence of collaborative technology knowledge on advice network structures.,2010,50,Decision Support Systems,1,db/journals/dss/dss50.html#KeithDG10,https://doi.org/10.1016/j.dss.2010.07.010 +Upkar Varshney,A model for improving quality of decisions in mobile health.,2014,62,Decision Support Systems,,db/journals/dss/dss62.html#Varshney14,https://doi.org/10.1016/j.dss.2014.03.005 +Lai Lai Tung,A proposed research framework for distributed group support systems.,1998,23,Decision Support Systems,2,db/journals/dss/dss23.html#TungT98,https://doi.org/10.1016/S0167-9236(98)00040-2 +Suhong Li,Accessing information sharing and information quality in supply chain management.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#LiL06,https://doi.org/10.1016/j.dss.2006.02.011 +Waiman Cheung,Prediction of Internet and World Wide Web usage at work: a test of an extended Triandis model.,2000,30,Decision Support Systems,1,db/journals/dss/dss30.html#CheungCL00,https://doi.org/10.1016/S0167-9236(00)00125-1 +Zhengxin Chen,Generating suggestions through document structure mapping.,1996,16,Decision Support Systems,4,db/journals/dss/dss16.html#Chen96,https://doi.org/10.1016/0167-9236(95)00024-0 +Eldon Y. Li,Editorial.,2007,43,Decision Support Systems,2,db/journals/dss/dss43.html#LiD07,https://doi.org/10.1016/j.dss.2005.05.013 +Han-Lin Li,Abductive reasoning by constructing probabilistic deduction graphs for solving the diagnosis problem.,1991,7,Decision Support Systems,2,db/journals/dss/dss7.html#LiY91,https://doi.org/10.1016/0167-9236(91)90051-C +Keun-Woo Lee,A model-solver integration framework for autonomous and intelligent model solution.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#LeeH06,https://doi.org/10.1016/j.dss.2005.08.003 +Qingtian Zeng,Cross-organizational collaborative workflow mining from a multi-source log.,2013,54,Decision Support Systems,3,db/journals/dss/dss54.html#ZengSDLW13,https://doi.org/10.1016/j.dss.2012.12.001 +Subhajyoti Bandyopadhyay,Simulating sellers in online exchanges.,2006,41,Decision Support Systems,2,db/journals/dss/dss41.html#BandyopadhyayRB06,https://doi.org/10.1016/j.dss.2004.08.015 +Helen Hasan,Support for the sense-making activity of managers.,2001,31,Decision Support Systems,1,db/journals/dss/dss31.html#HasanG01,https://doi.org/10.1016/S0167-9236(00)00120-2 +Qing Li 0005,Media-aware quantitative trading based on public Web information.,2014,61,Decision Support Systems,,db/journals/dss/dss61.html#LiWGCLS14,https://doi.org/10.1016/j.dss.2014.01.013 +Sushil,Interactive decision support system for organisational analysis.,1994,11,Decision Support Systems,3,db/journals/dss/dss11.html#SushilR94,https://doi.org/10.1016/0167-9236(94)90077-9 +Paul Goodwin,Feedback-labelling synergies in judgmental stock price forecasting.,2004,37,Decision Support Systems,1,db/journals/dss/dss37.html#GoodwinOTPM04,https://doi.org/10.1016/S0167-9236(03)00002-2 +Chun-Che Huang,An agile approach to logical network analysis in decision support systems.,1999,25,Decision Support Systems,1,db/journals/dss/dss25.html#Huang99,https://doi.org/10.1016/S0167-9236(98)00091-8 +Huimin Zhao,An extended tuning method for cost-sensitive regression and forecasting.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#ZhaoSB11,https://doi.org/10.1016/j.dss.2011.01.003 +Hartmut Hoehle,Three decades of research on consumer adoption and utilization of electronic banking channels: A literature analysis.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#HoehleSH12,https://doi.org/10.1016/j.dss.2012.04.010 +Ravi Bapna,Price formation and its dynamics in online auctions.,2008,44,Decision Support Systems,3,db/journals/dss/dss44.html#BapnaJS08,https://doi.org/10.1016/j.dss.2007.09.004 +Jin Hyun Son,An analysis of the optimal number of servers in distributed client/server environments.,2004,36,Decision Support Systems,3,db/journals/dss/dss36.html#SonK04,https://doi.org/10.1016/S0167-9236(02)00142-2 +Uk Jung,An ANP approach for R and D project evaluation based on interdependencies between research objectives and evaluation criteria.,2010,49,Decision Support Systems,3,db/journals/dss/dss49.html#JungS10,https://doi.org/10.1016/j.dss.2010.04.005 +Melanie J. Ashleigh,Trust and technologies: Implications for organizational work practices.,2007,43,Decision Support Systems,2,db/journals/dss/dss43.html#AshleighN07,https://doi.org/10.1016/j.dss.2005.05.018 +Eric W. T. Ngai,Mobile commerce integrated with RFID technology in a container depot.,2007,43,Decision Support Systems,1,db/journals/dss/dss43.html#NgaiCAL07,https://doi.org/10.1016/j.dss.2005.05.006 +Younghwa Lee,Understanding of website usability: Specifying and measuring constructs and their relationships.,2012,52,Decision Support Systems,2,db/journals/dss/dss52.html#LeeK12,https://doi.org/10.1016/j.dss.2011.10.004 +Rajarshi Chakraborty,Online shopping intention in the context of data breach in online retail stores: An examination of older and younger adults.,2016,83,Decision Support Systems,,db/journals/dss/dss83.html#ChakrabortyLBUR16,https://doi.org/10.1016/j.dss.2015.12.007 +John Yen,Agents with shared mental models for enhancing team decision makings.,2006,41,Decision Support Systems,3,db/journals/dss/dss41.html#YenFSHD06,https://doi.org/10.1016/j.dss.2004.06.008 +Angsana A. Techatassanasoontorn,Examining the growth of digital wireless phone technology: A take-off theory analysis.,2014,58,Decision Support Systems,,db/journals/dss/dss58.html#TechatassanasoontornK14,https://doi.org/10.1016/j.dss.2013.01.014 +Harvey J. Greenberg,A natural language discourse model to explain linear programming models and solutions.,1987,3,Decision Support Systems,4,db/journals/dss/dss3.html#Greenberg87,https://doi.org/10.1016/0167-9236(87)90104-7 +Rustam M. Vahidov,An experimental study of software agent negotiations with humans.,2014,66,Decision Support Systems,,db/journals/dss/dss66.html#VahidovKS14,https://doi.org/10.1016/j.dss.2014.06.009 +James V. Hansen,Genetic programming for prevention of cyberterrorism through dynamic and evolving intrusion detection.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#HansenLMM07,https://doi.org/10.1016/j.dss.2006.04.004 +Shmuel S. Oren,Integrating real and financial options in demand-side electricity contracts.,2001,30,Decision Support Systems,3,db/journals/dss/dss30.html#Oren01,https://doi.org/10.1016/S0167-9236(00)00105-6 +Hak-Jin Kim,Semantic Web Constraint Language and its application to an intelligent shopping agent.,2009,46,Decision Support Systems,4,db/journals/dss/dss46.html#KimKL09,https://doi.org/10.1016/j.dss.2008.12.004 +Alexander Hogenboom,Polarity classification using structure-based vector representations of text.,2015,74,Decision Support Systems,,db/journals/dss/dss74.html#HogenboomFJK15,https://doi.org/10.1016/j.dss.2015.04.002 +Loren Paul Rees,Decision support for Cybersecurity risk planning.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#ReesDRB11,https://doi.org/10.1016/j.dss.2011.02.013 +Ray Tsaih,Credit scoring system for small business loans.,2004,38,Decision Support Systems,1,db/journals/dss/dss38.html#TsaihLLL04,https://doi.org/10.1016/S0167-9236(03)00079-4 +Jose M. Cruz,The impact of corporate social responsibility in supply chain management: Multicriteria decision-making approach.,2009,48,Decision Support Systems,1,db/journals/dss/dss48.html#Cruz09,https://doi.org/10.1016/j.dss.2009.07.013 +Bill Fulkerson,A response to dynamic change in the market place.,1997,21,Decision Support Systems,3,db/journals/dss/dss21.html#Fulkerson97,https://doi.org/10.1016/S0167-9236(97)00029-8 +Lance Fortnow,Betting Boolean-style: a framework for trading in securities based on logical formulas.,2005,39,Decision Support Systems,1,db/journals/dss/dss39.html#FortnowKPW05,https://doi.org/10.1016/j.dss.2004.08.010 +David Dreyfus,Managing architectural emergence: A conceptual model and simulation.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#DreyfusI08,https://doi.org/10.1016/j.dss.2008.05.004 +Stefano Fazi,A decision support system tool for the transportation by barge of import containers: A case study.,2015,79,Decision Support Systems,,db/journals/dss/dss79.html#FaziFW15,https://doi.org/10.1016/j.dss.2015.08.001 +Peter Trkman,The impact of business analytics on supply chain performance.,2010,49,Decision Support Systems,3,db/journals/dss/dss49.html#TrkmanMOL10,https://doi.org/10.1016/j.dss.2010.03.007 +Zafer D. Ozdemir,Adoption of technology-mediated learning in the U.S.,2008,45,Decision Support Systems,2,db/journals/dss/dss45.html#OzdemirAB08,https://doi.org/10.1016/j.dss.2008.01.001 +Sulin Ba,Oligopolistic price competition and adverse price effect in online retailing markets.,2008,45,Decision Support Systems,4,db/journals/dss/dss45.html#BaSZ08,https://doi.org/10.1016/j.dss.2008.02.008 +Riikka-Leena Leskelä,Decision support for multi-unit combinatorial bundle auctions.,2007,43,Decision Support Systems,2,db/journals/dss/dss43.html#LeskelaTWW07,https://doi.org/10.1016/j.dss.2006.10.009 +Monica Chiarini Tremblay,Doing more with more information: Changing healthcare planning with OLAP tools.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#TremblayFBS07,https://doi.org/10.1016/j.dss.2006.02.008 +Kyoung Jun Lee,Time-bound negotiation framework for electronic commerce agents.,2000,28,Decision Support Systems,4,db/journals/dss/dss28.html#LeeCL00,https://doi.org/10.1016/S0167-9236(99)00096-2 +Pei Xu,Will video be the next generation of e-commerce product reviews? Presentation format and the role of product type.,2015,73,Decision Support Systems,,db/journals/dss/dss73.html#XuCS15,https://doi.org/10.1016/j.dss.2015.03.001 +Mee Chi So,Using a transactor/revolver scorecard to make credit and pricing decisions.,2014,59,Decision Support Systems,,db/journals/dss/dss59.html#SoTSM14,https://doi.org/10.1016/j.dss.2013.11.002 +Robert W. Day,Improving patient flow in a hospital through dynamic allocation of cardiac diagnostic testing time slots.,2010,49,Decision Support Systems,4,db/journals/dss/dss49.html#DayDGT10,https://doi.org/10.1016/j.dss.2010.05.007 +Meurig Beynon,A new paradigm for computer-based decision support.,2002,33,Decision Support Systems,2,db/journals/dss/dss33.html#BeynonRR02,https://doi.org/10.1016/S0167-9236(01)00140-3 +David Dery,Information support systems for problem solving.,1985,1,Decision Support Systems,2,db/journals/dss/dss1.html#DeryM85,https://doi.org/10.1016/0167-9236(85)90061-2 +Shi-Ming Huang,A business process gap detecting mechanism between information system process flow and internal control flow.,2009,47,Decision Support Systems,4,db/journals/dss/dss47.html#HuangYHZH09,https://doi.org/10.1016/j.dss.2009.04.011 +Jitendra Madaan,Decision and information interoperability for improving performance of product recovery systems.,2012,53,Decision Support Systems,3,db/journals/dss/dss53.html#MadaanKC12,https://doi.org/10.1016/j.dss.2012.02.011 +S. Arunkumar,Knowledge based approach to productivity management in rayon industry.,1991,7,Decision Support Systems,3,db/journals/dss/dss7.html#ArunkumarJ91,https://doi.org/10.1016/0167-9236(91)90038-D +Choon Lin Tan,PhishWHO: Phishing webpage detection via identity keywords extraction and target domain name finder.,2016,88,Decision Support Systems,,db/journals/dss/dss88.html#TanCWS16,https://doi.org/10.1016/j.dss.2016.05.005 +Pedro Losco Takecian,Methodological guidelines for reducing the complexity of data warehouse development for transactional blood bank systems.,2013,55,Decision Support Systems,3,db/journals/dss/dss55.html#TakecianOBRLKSAPSCBF13,https://doi.org/10.1016/j.dss.2013.02.008 +Yao Liu,Using contextual features and multi-view ensemble learning in product defect identification from online discussion forums.,2018,105,Decision Support Systems,,db/journals/dss/dss105.html#LiuJZ18,https://doi.org/10.1016/j.dss.2017.10.009 +Keshav P. Dahal,Decision support for coordinated road traffic control actions.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#DahalAH13,https://doi.org/10.1016/j.dss.2012.10.022 +José M. Alonso-Meijide,A comparative axiomatic characterization of the Banzhaf-Owen coalitional value.,2007,43,Decision Support Systems,3,db/journals/dss/dss43.html#Alonso-MeijideCFO07,https://doi.org/10.1016/j.dss.2006.11.008 +Stephen Russell 0002,Assisting decision making in the event-driven enterprise using wavelets.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#RussellGY08,https://doi.org/10.1016/j.dss.2008.04.006 +Chien Chin Chen,Quality evaluation of product reviews using an information quality framework.,2011,50,Decision Support Systems,4,db/journals/dss/dss50.html#ChenT11,https://doi.org/10.1016/j.dss.2010.08.023 +Akhilesh Chandra,Representational congruence and information retrieval: Towards an extended model of cognitive fit.,1999,25,Decision Support Systems,4,db/journals/dss/dss25.html#ChandraK99,https://doi.org/10.1016/S0167-9236(99)00014-7 +Melody Y. Kiang,A comparative assessment of classification methods.,2003,35,Decision Support Systems,4,db/journals/dss/dss35.html#Kiang03,https://doi.org/10.1016/S0167-9236(02)00110-0 +Boo-Sik Kang,Integrated machine learning approaches for complementing statistical process control procedures.,2000,29,Decision Support Systems,1,db/journals/dss/dss29.html#KangP00,https://doi.org/10.1016/S0167-9236(00)00063-4 +Alexander Benlian,Opportunities and risks of software-as-a-service: Findings from a survey of IT executives.,2011,52,Decision Support Systems,1,db/journals/dss/dss52.html#BenlianH11,https://doi.org/10.1016/j.dss.2011.07.007 +M. Millie Kwan,KnowledgeScope: managing knowledge in context.,2003,35,Decision Support Systems,4,db/journals/dss/dss35.html#KwanB03,https://doi.org/10.1016/S0167-9236(02)00126-4 +Donald Nute,Controlling expert system recommendations with defeasible logic.,1990,6,Decision Support Systems,2,db/journals/dss/dss6.html#NuteMB90,https://doi.org/10.1016/0167-9236(90)90005-C +P. Balasubramanian,Using query-driven simulations for querying outcomes of business processes.,1996,16,Decision Support Systems,4,db/journals/dss/dss16.html#Balasubramanian96,https://doi.org/10.1016/0167-9236(95)00025-9 +Tawfik Jelassi,Negotiation support systems: an overview of design issues and existing software.,1989,5,Decision Support Systems,2,db/journals/dss/dss5.html#JelassiF89,https://doi.org/10.1016/0167-9236(89)90005-5 +Hsinchun Chen,Intelligence and security informatics: information systems perspective.,2006,41,Decision Support Systems,3,db/journals/dss/dss41.html#Chen06,https://doi.org/10.1016/j.dss.2004.06.003 +Su Dong,Understanding key issues in designing and using knowledge flow networks: An optimization-based managerial benchmarking approach.,2012,53,Decision Support Systems,3,db/journals/dss/dss53.html#DongJK12,https://doi.org/10.1016/j.dss.2012.04.007 +Katsuhide Fujita,Efficient issue-grouping approach for multiple interdependent issues negotiation between exaggerator agents.,2014,60,Decision Support Systems,,db/journals/dss/dss60.html#FujitaIK14,https://doi.org/10.1016/j.dss.2013.05.016 +Meng-Xiang Li,Effects of product learning aids on the breadth and depth of recall.,2012,53,Decision Support Systems,4,db/journals/dss/dss53.html#LiTTW12,https://doi.org/10.1016/j.dss.2012.05.016 +Maria Fasli,e-Game: A platform for developing auction-based market simulations.,2008,44,Decision Support Systems,2,db/journals/dss/dss44.html#FasliM08,https://doi.org/10.1016/j.dss.2007.06.003 +Xuan-hua Xu,Consensus model for multi-criteria large-group emergency decision making considering non-cooperative behaviors and minority opinions.,2015,79,Decision Support Systems,,db/journals/dss/dss79.html#XuDC15,https://doi.org/10.1016/j.dss.2015.08.009 +Philippe du Jardin,Failure pattern-based ensembles applied to bankruptcy forecasting.,2018,107,Decision Support Systems,,db/journals/dss/dss107.html#Jardin18,https://doi.org/10.1016/j.dss.2018.01.003 +Caroline Lancelot Miltgen,"Determinants of end-user acceptance of biometrics: Integrating the ""Big 3"" of technology acceptance with privacy context.",2013,56,Decision Support Systems,,db/journals/dss/dss56.html#MiltgenPO13,https://doi.org/10.1016/j.dss.2013.05.010 +Ronald M. Lee,A logic programming framework for planning and simulation.,1986,2,Decision Support Systems,1,db/journals/dss/dss2.html#LeeM86,https://doi.org/10.1016/0167-9236(86)90117-X +Martin D. Crossland,Spatial decision support systems: An overview of technology and a test of efficacy.,1995,14,Decision Support Systems,3,db/journals/dss/dss14.html#CrosslandWP95,https://doi.org/10.1016/0167-9236(94)00018-N +Dusan Vujosevic,A comparison of the usability of performing ad hoc querying on dimensionally modeled data versus operationally modeled data.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#VujosevicKSL12,https://doi.org/10.1016/j.dss.2012.05.004 +Ravi C. Vellore,Use of cognitive process modeling in knowledge base systems integration.,1996,16,Decision Support Systems,4,db/journals/dss/dss16.html#VelloreSV96,https://doi.org/10.1016/0167-9236(95)00015-1 +Karma Sherif,Domain engineering for developing software repositories: a case study.,2002,33,Decision Support Systems,1,db/journals/dss/dss33.html#SherifV02,https://doi.org/10.1016/S0167-9236(01)00130-0 +Carmen J. Trammell,The incremental development process in Cleanroom software engineering.,1996,17,Decision Support Systems,1,db/journals/dss/dss17.html#TrammellPLH96,https://doi.org/10.1016/0167-9236(95)00022-4 +Clyde W. Holsapple,Business social media analytics: Characterization and conceptual framework.,2018,110,Decision Support Systems,,db/journals/dss/dss110.html#HolsappleHP18,https://doi.org/10.1016/j.dss.2018.03.004 +Yixiang Zhang,Cognitive elaboration during wiki use in project teams: An empirical study.,2013,55,Decision Support Systems,3,db/journals/dss/dss55.html#ZhangFWH13,https://doi.org/10.1016/j.dss.2013.03.004 +Adel Yazdanmehr,Employees' information security policy compliance: A norm activation perspective.,2016,92,Decision Support Systems,,db/journals/dss/dss92.html#YazdanmehrW16,https://doi.org/10.1016/j.dss.2016.09.009 +Yen-Liang Chen,Constraint-based sequential pattern mining: The consideration of recency and compactness.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#ChenH06,https://doi.org/10.1016/j.dss.2005.10.006 +Iris Roelens,Identifying influencers in a social network: The value of real referral data.,2016,91,Decision Support Systems,,db/journals/dss/dss91.html#RoelensBB16,https://doi.org/10.1016/j.dss.2016.07.005 +Robert F. Dyer,Group decision support with the Analytic Hierarchy Process.,1992,8,Decision Support Systems,2,db/journals/dss/dss8.html#DyerF92,https://doi.org/10.1016/0167-9236(92)90003-8 +Clyde W. Holsapple,Learning by problem processors: Adaptive decision support systems.,1993,10,Decision Support Systems,2,db/journals/dss/dss10.html#HolsapplePJZ93,https://doi.org/10.1016/0167-9236(93)90032-X +Maris G. Martinsons,The balanced scorecard: a foundation for the strategic management of information systems.,1999,25,Decision Support Systems,1,db/journals/dss/dss25.html#MartinsonsDT99,https://doi.org/10.1016/S0167-9236(98)00086-4 +Yu Andy Wu,Governing the fiduciary relationship in information security services.,2016,92,Decision Support Systems,,db/journals/dss/dss92.html#YuS16,https://doi.org/10.1016/j.dss.2016.09.008 +Bernard J. Jansen,Factors relating to the decision to click on a sponsored link.,2007,44,Decision Support Systems,1,db/journals/dss/dss44.html#JansenBR07,https://doi.org/10.1016/j.dss.2007.02.009 +Otto Rauh,Modeling deductive information systems using ERMded.,1996,18,Decision Support Systems,2,db/journals/dss/dss18.html#RauhS96,https://doi.org/10.1016/0167-9236(96)00011-5 +Zhongsheng Hua,Operational causes of bankruptcy propagation in supply chain.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#HuaSX11,https://doi.org/10.1016/j.dss.2011.03.007 +Wenjing Duan,Do online reviews matter? - An empirical investigation of panel data.,2008,45,Decision Support Systems,4,db/journals/dss/dss45.html#DuanGW08,https://doi.org/10.1016/j.dss.2008.04.001 +Concha Bielza,Explaining clinical decisions by extracting regularity patterns.,2008,44,Decision Support Systems,2,db/journals/dss/dss44.html#BielzaPL08,https://doi.org/10.1016/j.dss.2007.05.002 +Michael J. Shaw,Knowledge-based manufacturing quality management: A qualitative reasoning approach.,1990,6,Decision Support Systems,1,db/journals/dss/dss6.html#ShawM90,https://doi.org/10.1016/0167-9236(90)90014-I +Srinivasan Raghunathan,Impact of information quality and decision-maker quality on decision quality: a theoretical model and simulation analysis.,1999,26,Decision Support Systems,4,db/journals/dss/dss26.html#Raghunathan99,https://doi.org/10.1016/S0167-9236(99)00060-3 +Shulamit Reches,Efficiently gathering information in costly domains.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#RechesGK13,https://doi.org/10.1016/j.dss.2013.01.021 +Alexander Hogenboom,Multi-lingual support for lexicon-based sentiment analysis guided by semantics.,2014,62,Decision Support Systems,,db/journals/dss/dss62.html#HogenboomHFKJ14,https://doi.org/10.1016/j.dss.2014.03.004 +Na Yang,Decision support for preference elicitation in multi-attribute electronic procurement auctions through an agent-based intermediary.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#YangLH14,https://doi.org/10.1016/j.dss.2013.08.006 +Ruiliang Yan,Incentive information sharing in various market structures.,2015,76,Decision Support Systems,,db/journals/dss/dss76.html#YanP15,https://doi.org/10.1016/j.dss.2015.03.003 +Zhan-Li Sun,Sales forecasting using extreme learning machine with applications in fashion retailing.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#SunCAY08,https://doi.org/10.1016/j.dss.2008.07.009 +S. Mitropoulos,Two-dimensional colour pattern load analysis: A tool supporting demand-side management.,1995,13,Decision Support Systems,2,db/journals/dss/dss13.html#MitropoulosAC95,https://doi.org/10.1016/0167-9236(93)E0054-H +Jongsawas Chongwatpol,SNAP: A DSS to analyze network service pricing for state networks.,2010,50,Decision Support Systems,1,db/journals/dss/dss50.html#ChongwatpolS10,https://doi.org/10.1016/j.dss.2010.05.009 +Peter B. Keenan,Spatial decision support systems for vehicle routing.,1998,22,Decision Support Systems,1,db/journals/dss/dss22.html#Keenan98,https://doi.org/10.1016/S0167-9236(97)00054-7 +Martin Kowalczyk,An ambidextrous perspective on business intelligence and analytics support in decision processes: Insights from a multiple case study.,2015,80,Decision Support Systems,,db/journals/dss/dss80.html#KowalczykB15,https://doi.org/10.1016/j.dss.2015.08.010 +Patrizia Beraldi,A decision support system for strategic asset allocation.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#BeraldiVS11,https://doi.org/10.1016/j.dss.2011.02.017 +Fu-Shiung Hsieh,Combinatorial reverse auction based on revelation of Lagrangian multipliers.,2010,48,Decision Support Systems,2,db/journals/dss/dss48.html#Hsieh10,https://doi.org/10.1016/j.dss.2009.08.009 +Rania Shibl,Factors influencing decision support system acceptance.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#ShiblLD13,https://doi.org/10.1016/j.dss.2012.09.018 +Pengkun Wu,Toward a real-time and budget-aware task package allocation in spatial crowdsourcing.,2018,110,Decision Support Systems,,db/journals/dss/dss110.html#WuNW18,https://doi.org/10.1016/j.dss.2018.03.010 +Qusai Shambour,A trust-semantic fusion-based recommendation approach for e-business applications.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#ShambourL12,https://doi.org/10.1016/j.dss.2012.09.005 +Mohammad Mehdi Rajaeian,A systematic literature review and critical assessment of model-driven decision support for IT outsourcing.,2017,102,Decision Support Systems,,db/journals/dss/dss102.html#RajaeianCL17,https://doi.org/10.1016/j.dss.2017.07.002 +Adrie J. M. Beulens,The use of expert system technology in DSS.,1988,4,Decision Support Systems,4,db/journals/dss/dss4.html#BeulensN88,https://doi.org/10.1016/0167-9236(88)90005-X +Marco Better,Classification by vertical and cutting multi-hyperplane decision tree induction.,2010,48,Decision Support Systems,3,db/journals/dss/dss48.html#BetterGS10,https://doi.org/10.1016/j.dss.2009.06.004 +Raymond Y. K. Lau,Knowledge discovery for adaptive negotiation agents in e-marketplaces.,2008,45,Decision Support Systems,2,db/journals/dss/dss45.html#LauLSK08,https://doi.org/10.1016/j.dss.2007.12.018 +Nan Li,Using text mining and sentiment analysis for online forums hotspot detection and forecast.,2010,48,Decision Support Systems,2,db/journals/dss/dss48.html#LiW10,https://doi.org/10.1016/j.dss.2009.09.003 +Michael Chau,SpidersRUs: Creating specialized search engines in multiple languages.,2008,45,Decision Support Systems,3,db/journals/dss/dss45.html#ChauQZTC08,https://doi.org/10.1016/j.dss.2007.07.006 +Edoardo M. Airoldi,An entropy approach to disclosure risk assessment: Lessons from real applications and simulated domains.,2011,51,Decision Support Systems,1,db/journals/dss/dss51.html#AiroldiBM11,https://doi.org/10.1016/j.dss.2010.11.014 +Emna Benzarti,Operations management applied to home care services: Analysis of the districting problem.,2013,55,Decision Support Systems,2,db/journals/dss/dss55.html#BenzartiSD13,https://doi.org/10.1016/j.dss.2012.10.015 +Alexander McLeod,Cyber-analytics: Modeling factors associated with healthcare data breaches.,2018,108,Decision Support Systems,,db/journals/dss/dss108.html#McLeodD18,https://doi.org/10.1016/j.dss.2018.02.007 +Chi-Jie Lu,Sales forecasting for computer wholesalers: A comparison of multivariate adaptive regression splines and artificial neural networks.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#LuLL12a,https://doi.org/10.1016/j.dss.2012.08.006 +Shyi-Ming Chen,A weighted fuzzy reasoning algorithm for medical diagnosis.,1994,11,Decision Support Systems,1,db/journals/dss/dss11.html#Chen94,https://doi.org/10.1016/0167-9236(94)90063-9 +Arthur Carvalho,On a participation structure that ensures representative prices in prediction markets.,2017,104,Decision Support Systems,,db/journals/dss/dss104.html#Carvalho17,https://doi.org/10.1016/j.dss.2017.09.008 +Tong Wu,Can irrelevant benchmark information help when making business decisions under uncertainty? An empirical investigation of the newsvendor game.,2018,107,Decision Support Systems,,db/journals/dss/dss107.html#WuS18,https://doi.org/10.1016/j.dss.2017.12.014 +Donald J. Berndt,The Catch data warehouse: support for community health care decision-making.,2003,35,Decision Support Systems,3,db/journals/dss/dss35.html#BerndtHS03,https://doi.org/10.1016/S0167-9236(02)00114-8 +Robert W. Blanning,A relational framework for assertion management.,1985,1,Decision Support Systems,2,db/journals/dss/dss1.html#Blanning85a,https://doi.org/10.1016/0167-9236(85)90065-X +Sohail S. Chaudhry,Decision support systems in emerging economies.,2007,42,Decision Support Systems,4,db/journals/dss/dss42.html#ChaudhryLXZ07,https://doi.org/10.1016/j.dss.2004.11.003 +Nicole Lang Beebe,Post-retrieval search hit clustering to improve information retrieval effectiveness: Two digital forensics case studies.,2011,51,Decision Support Systems,4,db/journals/dss/dss51.html#BeebeCDKK11,https://doi.org/10.1016/j.dss.2011.01.009 +Paolo Giorgini,GRAnD: A goal-oriented approach to requirement analysis in data warehouses.,2008,45,Decision Support Systems,1,db/journals/dss/dss45.html#GiorginiRG08,https://doi.org/10.1016/j.dss.2006.12.001 +Yucong Liu,Evaluating the effects of task-individual-technology fit in multi-DSS models context: A two-phase view.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#LiuLC11,https://doi.org/10.1016/j.dss.2011.03.009 +Chia-Wen Liao,Discovery of unapparent association rules based on extracted probability.,2009,47,Decision Support Systems,4,db/journals/dss/dss47.html#LiaoPC09,https://doi.org/10.1016/j.dss.2009.04.006 +Hugh J. Watson,Data warehouse governance: best practices at Blue Cross and Blue Shield of North Carolina.,2004,38,Decision Support Systems,3,db/journals/dss/dss38.html#WatsonFA04,https://doi.org/10.1016/j.dss.2003.06.001 +Rustam M. Vahidov,Incorporating critique and argumentation in DSS.,1999,26,Decision Support Systems,3,db/journals/dss/dss26.html#VahidovE99,https://doi.org/10.1016/S0167-9236(99)00031-7 +Francisco P. Maturana,Distributed decision-making using the contract net within a mediator architecture.,1997,20,Decision Support Systems,1,db/journals/dss/dss20.html#MaturanaN97,https://doi.org/10.1016/S0167-9236(96)00076-0 +Dong Yang,Decision support to product configuration considering component replenishment uncertainty: A stochastic programming approach.,2018,105,Decision Support Systems,,db/journals/dss/dss105.html#YangLJW18,https://doi.org/10.1016/j.dss.2017.11.004 +Julien Aligon,A collaborative filtering approach for recommending OLAP sessions.,2015,69,Decision Support Systems,,db/journals/dss/dss69.html#AligonGGMR15,https://doi.org/10.1016/j.dss.2014.11.003 +V. Venugopal,An interactive procedure for multiobjective optimization using nash bargaining principle.,1990,6,Decision Support Systems,3,db/journals/dss/dss6.html#VenugopalN90,https://doi.org/10.1016/0167-9236(90)90019-N +Theresa Edgington,Using process mining to identify coordination patterns in IT service management.,2010,49,Decision Support Systems,2,db/journals/dss/dss49.html#EdgingtonRV10,https://doi.org/10.1016/j.dss.2010.02.003 +Younghwa Lee,Investigating the effect of website quality on e-business success: An analytic hierarchy process (AHP) approach.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#LeeK06,https://doi.org/10.1016/j.dss.2005.11.005 +Houtao Deng,CBC: An associative classifier with a small number of rules.,2014,59,Decision Support Systems,,db/journals/dss/dss59.html#DengRTB14,https://doi.org/10.1016/j.dss.2013.11.004 +Selwyn Piramuthu,Input online review data and related bias in recommender systems.,2012,53,Decision Support Systems,3,db/journals/dss/dss53.html#PiramuthuKZM12,https://doi.org/10.1016/j.dss.2012.02.006 +Chih-Hsuan Wang,Integrating decision tree with back propagation network to conduct business diagnosis and performance simulation for solar companies.,2016,81,Decision Support Systems,,db/journals/dss/dss81.html#WangC16,https://doi.org/10.1016/j.dss.2015.10.004 +Wai Yin Mok,On the computability of agent-based workflows.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#MokPP06,https://doi.org/10.1016/j.dss.2005.10.010 +Amit Basu,Metagraphs in workflow support systems.,1999,25,Decision Support Systems,3,db/journals/dss/dss25.html#BasuB99,https://doi.org/10.1016/S0167-9236(99)00006-8 +Ohbyung Kwon,A pervasive P3P-based negotiation mechanism for privacy-aware pervasive e-commerce.,2010,50,Decision Support Systems,1,db/journals/dss/dss50.html#Kwon10,https://doi.org/10.1016/j.dss.2010.08.002 +Sung-Ho Kim 0002,Stochastic ordering and robustness in classification from a Bayesian network.,2005,39,Decision Support Systems,3,db/journals/dss/dss39.html#Kim05,https://doi.org/10.1016/j.dss.2003.10.010 +Matthias Bogaert,The added value of Facebook friends data in event attendance prediction.,2016,82,Decision Support Systems,,db/journals/dss/dss82.html#BogaertBP16,https://doi.org/10.1016/j.dss.2015.11.003 +Harry Jiannan Wang,Constraint-centric workflow change analytics.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#WangZ11,https://doi.org/10.1016/j.dss.2011.03.001 +Bonnie Brinton Anderson,Model checking for design and assurance of e-Business processes.,2005,39,Decision Support Systems,3,db/journals/dss/dss39.html#AndersonHLS05,https://doi.org/10.1016/j.dss.2003.12.001 +Yun Huang 0001,Distance matters: Exploring proximity and homophily in virtual world networks.,2013,55,Decision Support Systems,4,db/journals/dss/dss55.html#HuangSC13,https://doi.org/10.1016/j.dss.2013.01.006 +Animesh Adhikari,Efficient clustering of databases induced by local patterns.,2008,44,Decision Support Systems,4,db/journals/dss/dss44.html#AdhikariR08,https://doi.org/10.1016/j.dss.2007.11.001 +Waiman Cheung,An intelligent decision support system for service network planning.,2005,39,Decision Support Systems,3,db/journals/dss/dss39.html#CheungLT05,https://doi.org/10.1016/j.dss.2003.09.007 +Didier Dubois,A decision engine based on rational aggregation of heuristic knowledge.,1994,11,Decision Support Systems,4,db/journals/dss/dss11.html#DuboisK94,https://doi.org/10.1016/0167-9236(94)90080-9 +Bin Zhu 0001,Communication-Garden System: Visualizing a computer-mediated communication process.,2008,45,Decision Support Systems,4,db/journals/dss/dss45.html#ZhuC08,https://doi.org/10.1016/j.dss.2008.02.004 +Bahareh Bina,Simple decision forests for multi-relational classification.,2013,54,Decision Support Systems,3,db/journals/dss/dss54.html#BinaSCQX13,https://doi.org/10.1016/j.dss.2012.11.017 +Josep Freixas,Voting games with abstention: Linking completeness and weightedness.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#FreixasTT14,https://doi.org/10.1016/j.dss.2013.08.015 +Jonathan Liebenau,Organizational reconciliation and its implications for organizational decision support systems: a semiotic approach.,2002,33,Decision Support Systems,4,db/journals/dss/dss33.html#LiebenauH02,https://doi.org/10.1016/S0167-9236(02)00007-6 +Henry C. W. Lau,A demand forecast model using a combination of surrogate data analysis and optimal neural network approach.,2013,54,Decision Support Systems,3,db/journals/dss/dss54.html#LauHZ13,https://doi.org/10.1016/j.dss.2012.12.008 +Yeu-Shiang Huang,A study on coordination of capacity allocation for different types of contractual retailers.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#HuangCL13,https://doi.org/10.1016/j.dss.2012.09.015 +Kem Z. K. Zhang,Understanding the role of gender in bloggers' switching behavior.,2009,47,Decision Support Systems,4,db/journals/dss/dss47.html#ZhangLCC09,https://doi.org/10.1016/j.dss.2009.05.013 +Shu-Feng Tseng,Diverse reasoning in automated model formulation.,1997,20,Decision Support Systems,4,db/journals/dss/dss20.html#Tseng97,https://doi.org/10.1016/S0167-9236(97)00013-4 +Hong Chen,The interplay between free sampling and word of mouth in the online software market.,2017,95,Decision Support Systems,,db/journals/dss/dss95.html#ChenDZ17,https://doi.org/10.1016/j.dss.2017.01.001 +József Mezei,Aggregating expert knowledge for the measurement of systemic risk.,2016,88,Decision Support Systems,,db/journals/dss/dss88.html#MezeiS16,https://doi.org/10.1016/j.dss.2016.05.007 +Minsu Cho,Evaluating the effect of best practices for business process redesign: An evidence-based approach based on process mining techniques.,2017,104,Decision Support Systems,,db/journals/dss/dss104.html#ChoSCY17,https://doi.org/10.1016/j.dss.2017.10.004 +JinKyu Lee,Task complexity and different decision criteria for online service acceptance: A comparison of two e-government compliance service domains.,2009,47,Decision Support Systems,4,db/journals/dss/dss47.html#LeeR09,https://doi.org/10.1016/j.dss.2009.04.009 +Julie Moeyersoms,Including high-cardinality attributes in predictive models: A case study in churn prediction in the energy sector.,2015,72,Decision Support Systems,,db/journals/dss/dss72.html#MoeyersomsM15,https://doi.org/10.1016/j.dss.2015.02.007 +Aimin Yu,Pricing strategies for tied digital contents and devices.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#YuHF11,https://doi.org/10.1016/j.dss.2011.01.006 +Edward C. Cheng,An object-oriented organizational model to support dynamic role-based access control in electronic commerce.,2000,29,Decision Support Systems,4,db/journals/dss/dss29.html#Cheng00,https://doi.org/10.1016/S0167-9236(00)00083-X +Gokul Bhandari,"Corrigendum to ""Debiasing investors with decision support systems: An experimental investigation"" [Decision Support Systems Volume (46/1) 399-410].",2009,47,Decision Support Systems,1,db/journals/dss/dss47.html#BhandariDH09,https://doi.org/10.1016/j.dss.2009.01.002 +Carlos Serrano-Cinca,Self organizing neural networks for financial diagnosis.,1996,17,Decision Support Systems,3,db/journals/dss/dss17.html#Serrano-Cinca96,https://doi.org/10.1016/0167-9236(95)00033-X +Anita Prinzie,Incorporating sequential information into traditional classification models by using an element/position-sensitive SAM.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#PrinzieP06,https://doi.org/10.1016/j.dss.2005.02.004 +Colin E. Bell,Analysis of the behavior of logic-based computation for deductive databases and default reasoning.,1992,8,Decision Support Systems,6,db/journals/dss/dss8.html#BellL92,https://doi.org/10.1016/0167-9236(92)90044-P +Hao Hu,Cognitive-based evaluation of consumption fads: An analytical approach.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#HuL13,https://doi.org/10.1016/j.dss.2013.05.001 +Alessandro Mattiussi,A decision support system for sustainable energy supply combining multi-objective and multi-attribute analysis: An Australian case study.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#MattiussiRS14,https://doi.org/10.1016/j.dss.2013.08.013 +Chih-Fong Tsai,Towards high dimensional instance selection: An evolutionary approach.,2014,61,Decision Support Systems,,db/journals/dss/dss61.html#TsaiC14,https://doi.org/10.1016/j.dss.2014.01.012 +Hsinchun Chen,An intelligent personal spider (agent) for dynamic Internet/Intranet searching.,1998,23,Decision Support Systems,1,db/journals/dss/dss23.html#ChenCRY98,https://doi.org/10.1016/S0167-9236(98)00035-9 +Indranil Bose,Performance models of a firm's proxy cache server.,2000,29,Decision Support Systems,1,db/journals/dss/dss29.html#BoseC00,https://doi.org/10.1016/S0167-9236(00)00062-2 +Yung-Ming Li,Deriving market intelligence from microblogs.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#LiL13,https://doi.org/10.1016/j.dss.2013.01.023 +George R. Widmeyer,Reasoning with preferences and values.,1990,6,Decision Support Systems,2,db/journals/dss/dss6.html#Widmeyer90,https://doi.org/10.1016/0167-9236(90)90007-E +Jifeng Luo,Information technology and organizational capabilities: A longitudinal study of the apparel industry.,2012,53,Decision Support Systems,1,db/journals/dss/dss53.html#LuoFZ12,https://doi.org/10.1016/j.dss.2012.01.003 +Philippe Baecke,The value of vehicle telematics data in insurance risk selection processes.,2017,98,Decision Support Systems,,db/journals/dss/dss98.html#BaeckeB17,https://doi.org/10.1016/j.dss.2017.04.009 +Soussan Djamasbi,Do men and women use feedback provided by their Decision Support Systems (DSS) differently.,2008,44,Decision Support Systems,4,db/journals/dss/dss44.html#DjamasbiL08,https://doi.org/10.1016/j.dss.2007.10.008 +Bongsug (Kevin) Chae,The impact of advanced analytics and data accuracy on operational performance: A contingent resource based theory (RBT) perspective.,2014,59,Decision Support Systems,,db/journals/dss/dss59.html#ChaeYOS14,https://doi.org/10.1016/j.dss.2013.10.012 +Les R. Foulds,LayoutManager: A microcomputer-based decision support system for facilities layout.,1997,20,Decision Support Systems,3,db/journals/dss/dss20.html#Foulds97,https://doi.org/10.1016/S0167-9236(97)00003-1 +Abdallah Mohamed,A decision support model for long-term course planning.,2015,74,Decision Support Systems,,db/journals/dss/dss74.html#Mohamed15,https://doi.org/10.1016/j.dss.2015.03.002 +Dong-Ling Xu,Intelligent decision system and its application in business innovation self assessment.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#XuMY06,https://doi.org/10.1016/j.dss.2005.03.004 +Jaeki Song,Platform adoption by mobile application developers: A multimethodological approach.,2018,107,Decision Support Systems,,db/journals/dss/dss107.html#SongBWCB18,https://doi.org/10.1016/j.dss.2017.12.013 +John N. Hooker,A quantitative approach to logical inference.,1988,4,Decision Support Systems,1,db/journals/dss/dss4.html#Hooker88,https://doi.org/10.1016/0167-9236(88)90097-8 +Jian Ma,An object-oriented framework for model management.,1995,13,Decision Support Systems,2,db/journals/dss/dss13.html#Ma95,https://doi.org/10.1016/0167-9236(93)E0036-D +Durk-Jouke van der Zee,Building insightful simulation models using Petri Nets - A structured approach.,2011,51,Decision Support Systems,1,db/journals/dss/dss51.html#Zee11,https://doi.org/10.1016/j.dss.2010.11.028 +Wenqi Zhou,An empirical study of how third-party websites influence the feedback mechanism between online Word-of-Mouth and retail sales.,2015,76,Decision Support Systems,,db/journals/dss/dss76.html#ZhouD15,https://doi.org/10.1016/j.dss.2015.03.010 +Guisseppi A. Forgionne,An experiment on the effectiveness of creativity enhancing decision-making support systems.,2007,42,Decision Support Systems,4,db/journals/dss/dss42.html#ForgionneN07,https://doi.org/10.1016/j.dss.2006.05.009 +Preetam Basu,A decision support system for mean-variance analysis in multi-period inventory control.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#BasuN14,https://doi.org/10.1016/j.dss.2013.09.012 +Luis A. Guerrero,A Web-based OO platform for the development of multimedia collaborative applications.,1999,27,Decision Support Systems,3,db/journals/dss/dss27.html#GuerreroF99,https://doi.org/10.1016/S0167-9236(99)00050-0 +Ralph E. Steuer,Comparative issues in large-scale mean-variance efficient frontier computation.,2011,51,Decision Support Systems,2,db/journals/dss/dss51.html#SteuerQH11,https://doi.org/10.1016/j.dss.2010.11.018 +Souren Paul,Collective memory support and cognitive-conflict group decision-making: an experimental investigation.,2004,36,Decision Support Systems,3,db/journals/dss/dss36.html#PaulHR04,https://doi.org/10.1016/S0167-9236(02)00144-6 +M. Tolga Akçura,Drug prescription behavior and decision support systems.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#AkcuraO14,https://doi.org/10.1016/j.dss.2012.10.045 +Chih-Yang Tsai,On supply chain cash flow risks.,2008,44,Decision Support Systems,4,db/journals/dss/dss44.html#Tsai08,https://doi.org/10.1016/j.dss.2007.12.006 +Mohammad Salehan,Predicting the performance of online consumer reviews: A sentiment mining approach to big data analytics.,2016,81,Decision Support Systems,,db/journals/dss/dss81.html#SalehanK16,https://doi.org/10.1016/j.dss.2015.10.006 +M. Brian Blake,Workflow composition of service level agreements for web services.,2012,53,Decision Support Systems,1,db/journals/dss/dss53.html#BlakeCBB12,https://doi.org/10.1016/j.dss.2012.01.017 +P. Ninios,OO/DEVS: A platform for industry simulation and strategic modelling.,1995,15,Decision Support Systems,3,db/journals/dss/dss15.html#NiniosVB95,https://doi.org/10.1016/0167-9236(95)00013-V +Marta E. Zorrilla,A service oriented architecture to provide data mining services for non-expert data miners.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#ZorrillaG13,https://doi.org/10.1016/j.dss.2012.05.045 +Wayne Wei Huang,Supporting virtual team-building with a GSS: an empirical investigation.,2003,34,Decision Support Systems,4,db/journals/dss/dss34.html#HuangWWT03,https://doi.org/10.1016/S0167-9236(02)00009-X +Ravi Sen,Open source software success: Measures and analysis.,2012,52,Decision Support Systems,2,db/journals/dss/dss52.html#SenSB12,https://doi.org/10.1016/j.dss.2011.09.003 +Yoshinori Suzuki,A decision support system of vehicle routing and refueling for motor carriers with time-sensitive demands.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#Suzuki12,https://doi.org/10.1016/j.dss.2012.09.004 +Brandon A. Beemer,Dynamic interaction in knowledge based systems: An exploratory investigation and empirical evaluation.,2010,49,Decision Support Systems,4,db/journals/dss/dss49.html#BeemerG10,https://doi.org/10.1016/j.dss.2010.04.007 +Jibin Lan,Group decision making based on induced uncertain linguistic OWA operators.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#LanSCW13,https://doi.org/10.1016/j.dss.2013.01.030 +Jie Zhang 0001,Digital certificate management: Optimal pricing and CRL releasing strategies.,2014,58,Decision Support Systems,,db/journals/dss/dss58.html#ZhangHR14,https://doi.org/10.1016/j.dss.2012.12.043 +Zoltán Hidvégi,Binary Vickrey auction - A robust and efficient multi-unit sealed-bid online auction protocol against buyer multi-identity bidding.,2007,43,Decision Support Systems,2,db/journals/dss/dss43.html#HidvegiWW07,https://doi.org/10.1016/j.dss.2006.09.013 +Bojan Srdjevic,Linking analytic hierarchy process and social choice methods to support group decision-making in water management.,2007,42,Decision Support Systems,4,db/journals/dss/dss42.html#Srdjevic07,https://doi.org/10.1016/j.dss.2006.08.001 +Rina Azoulay-Schwartz,Exploitation vs. exploration: choosing a supplier in an environment of incomplete information.,2004,38,Decision Support Systems,1,db/journals/dss/dss38.html#Azoulay-SchwartzKW04,https://doi.org/10.1016/S0167-9236(03)00061-7 +Pekka J. Korhonen,A multiple objective linear programming decision support system.,1990,6,Decision Support Systems,3,db/journals/dss/dss6.html#KorhonenW90,https://doi.org/10.1016/0167-9236(90)90017-L +Sulin Ba,DSS special issue on the Theory and Applications of Social Networks.,2013,55,Decision Support Systems,4,db/journals/dss/dss55.html#BaR13,https://doi.org/10.1016/j.dss.2013.01.002 +Andrey Temko,Clinical implementation of a neonatal seizure detection algorithm.,2015,70,Decision Support Systems,,db/journals/dss/dss70.html#TemkoMBL15,https://doi.org/10.1016/j.dss.2014.12.006 +Saike He,A model-free scheme for meme ranking in social media.,2016,81,Decision Support Systems,,db/journals/dss/dss81.html#HeZZ16,https://doi.org/10.1016/j.dss.2015.10.002 +Sumit Sarkar,Criteria to evaluate approximate belief network representations in expert systems.,1995,15,Decision Support Systems,4,db/journals/dss/dss15.html#SarkarM95,https://doi.org/10.1016/0167-9236(94)00045-X +S. Kanungo,Evaluation of a decision support system for credit management decisions.,2001,30,Decision Support Systems,4,db/journals/dss/dss30.html#KanungoSJ01,https://doi.org/10.1016/S0167-9236(00)00126-3 +Xiaohong Chen 0001,Credit risk measurement and early warning of SMEs: An empirical study of listed SMEs in China.,2010,49,Decision Support Systems,3,db/journals/dss/dss49.html#ChenWW10,https://doi.org/10.1016/j.dss.2010.03.005 +Zhenjiao Chen,How to satisfy citizens? Using mobile government to reengineer fair government processes.,2016,82,Decision Support Systems,,db/journals/dss/dss82.html#ChenVW16,https://doi.org/10.1016/j.dss.2015.11.005 +Indu Shekhar Singh,A support system for optimization modelling.,1987,3,Decision Support Systems,2,db/journals/dss/dss3.html#SinghS87,https://doi.org/10.1016/0167-9236(87)90075-3 +Johannes De Smedt,Fusion Miner: Process discovery for mixed-paradigm models.,2015,77,Decision Support Systems,,db/journals/dss/dss77.html#SmedtWV15,https://doi.org/10.1016/j.dss.2015.06.002 +G. Shankaranarayanan,Supporting data quality management in decision-making.,2006,42,Decision Support Systems,1,db/journals/dss/dss42.html#ShankaranarayananC06,https://doi.org/10.1016/j.dss.2004.12.006 +Rajiv Kohli,Contribution of institutional DSS to organizational performance: evidence from a longitudinal study.,2004,37,Decision Support Systems,1,db/journals/dss/dss37.html#KohliD04,https://doi.org/10.1016/S0167-9236(02)00211-7 +David M. Goldberg,A Tabu search heuristic for smoke term curation in safety defect discovery.,2018,105,Decision Support Systems,,db/journals/dss/dss105.html#GoldbergA18,https://doi.org/10.1016/j.dss.2017.10.012 +Rodrigo C. Brasileiro,Automatic trading method based on piecewise aggregate approximation and multi-swarm of improved self-adaptive particle swarm optimization with validation.,2017,104,Decision Support Systems,,db/journals/dss/dss104.html#BrasileiroSO17,https://doi.org/10.1016/j.dss.2017.10.005 +Hina Arora,Resource allocation for demand surge mitigation during disaster response.,2010,50,Decision Support Systems,1,db/journals/dss/dss50.html#AroraRV10,https://doi.org/10.1016/j.dss.2010.08.032 +Bin Gu,The influence of online word-of-mouth on long tail formation.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#GuTW13,https://doi.org/10.1016/j.dss.2012.11.004 +Oleg I. Larichev,Decision support system for classification of a finite set of multicriteria alternatives.,2002,33,Decision Support Systems,1,db/journals/dss/dss33.html#LarichevKK02,https://doi.org/10.1016/S0167-9236(01)00132-4 +Behrang Assemi,Retraction notice to: Provider Feedback Information and Customer Choice Decisions on Crowdsourcing Marketplaces: Evidence from Two Discrete Choice Experiments [Decision Support Systems 82 (2016) 1-11].,2017,95,Decision Support Systems,,db/journals/dss/dss95.html#AssemiS17,https://doi.org/10.1016/j.dss.2017.02.009 +Sai Ho Kwok,SDMI-based rights management systems.,2004,38,Decision Support Systems,1,db/journals/dss/dss38.html#KwokYTW04,https://doi.org/10.1016/S0167-9236(03)00075-7 +Michael Hagenau,Automated news reading: Stock price prediction based on financial news using context-capturing features.,2013,55,Decision Support Systems,3,db/journals/dss/dss55.html#HagenauLN13,https://doi.org/10.1016/j.dss.2013.02.006 +Francesco Gardin,Liquidity management with fuzzy qualitative constraints.,1995,15,Decision Support Systems,2,db/journals/dss/dss15.html#GardinPM95,https://doi.org/10.1016/0167-9236(94)00033-O +Michael Chau,Design and evaluation of a multi-agent collaborative Web mining system.,2003,35,Decision Support Systems,1,db/journals/dss/dss35.html#ChauZCHH03,https://doi.org/10.1016/S0167-9236(02)00103-3 +Hua Yuan,Human mobility discovering and movement intention detection with GPS trajectories.,2014,63,Decision Support Systems,,db/journals/dss/dss63.html#YuanQYR14,https://doi.org/10.1016/j.dss.2013.09.010 +Bala Iyer,"Corrigendum to ""Model management decision environment: A Web service prototype for spreadsheet models"" [Decision Support Systems 40 (2005) 283-304].",2005,41,Decision Support Systems,1,db/journals/dss/dss41.html#IyerSL05a,https://doi.org/10.1016/j.dss.2005.03.003 +Wei Wang,Member contribution-based group recommender system.,2016,87,Decision Support Systems,,db/journals/dss/dss87.html#WangZL16,https://doi.org/10.1016/j.dss.2016.05.002 +Yong-Kee Paek,An expert system with case-based reasoning for database schema design.,1996,18,Decision Support Systems,1,db/journals/dss/dss18.html#PaekSK96,https://doi.org/10.1016/0167-9236(96)00020-6 +Michael Chau,Designing the user interface and functions of a search engine development tool.,2010,48,Decision Support Systems,2,db/journals/dss/dss48.html#ChauW10,https://doi.org/10.1016/j.dss.2009.10.001 +Hung-Tso Lin,An efficiency-driven approach for setting revenue target.,2010,49,Decision Support Systems,3,db/journals/dss/dss49.html#Lin10,https://doi.org/10.1016/j.dss.2010.03.006 +Thomas Chesney,Agent based modelling as a decision support system for shadow accounting.,2017,95,Decision Support Systems,,db/journals/dss/dss95.html#ChesneyGT17,https://doi.org/10.1016/j.dss.2017.01.004 +Dae-Young Choi,"Erratum to ""Enhancing the power of Web search engines by means of fuzzy query"".",2003,35,Decision Support Systems,1,db/journals/dss/dss35.html#Choi03a,https://doi.org/10.1016/S0167-9236(02)00189-6 +Greg Elofson,An intelligent agent community approach to knowledge sharing.,1997,20,Decision Support Systems,1,db/journals/dss/dss20.html#ElofsonBT97,https://doi.org/10.1016/S0167-9236(96)00077-2 +Hans van der Heijden,Mobile decision support for in-store purchase decisions.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#Heijden06,https://doi.org/10.1016/j.dss.2005.03.006 +Indranil Bose,A framework for context sensitive services: A knowledge discovery based approach.,2009,48,Decision Support Systems,1,db/journals/dss/dss48.html#BoseC09,https://doi.org/10.1016/j.dss.2009.07.009 +M. A. H. Dempster,Object-oriented model integration in a financial decision support system.,1991,7,Decision Support Systems,4,db/journals/dss/dss7.html#DempsterI91,https://doi.org/10.1016/0167-9236(91)90062-G +I-Chin Wu,WNavis: Navigating Wikipedia semantically with an SNA-based summarization technique.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#WuL12,https://doi.org/10.1016/j.dss.2012.04.002 +Tao Zhou 0007,An empirical examination of continuance intention of mobile payment services.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#Zhou13,https://doi.org/10.1016/j.dss.2012.10.034 +Hyunwoo Park,Bicentric diagrams: Design and applications of a graph-based relational set visualization technique.,2016,84,Decision Support Systems,,db/journals/dss/dss84.html#ParkB16,https://doi.org/10.1016/j.dss.2016.02.001 +Yoshiyuki Takaoka,Identification of ontologies to reuse knowledge for substation fault recovery support system.,1996,18,Decision Support Systems,1,db/journals/dss/dss18.html#TakaokaM96,https://doi.org/10.1016/0167-9236(96)00014-0 +Esra çinar,An inventory model with capacity flexibility in the existence of advance capacity information.,2012,53,Decision Support Systems,2,db/journals/dss/dss53.html#CinarG12,https://doi.org/10.1016/j.dss.2012.01.008 +Nikhil R. Devanur,Strategyproof cost-sharing mechanisms for set cover and facility location games.,2005,39,Decision Support Systems,1,db/journals/dss/dss39.html#DevanurMV05,https://doi.org/10.1016/j.dss.2004.08.004 +Xin Fu,User segmentation for retention management in online social games.,2017,101,Decision Support Systems,,db/journals/dss/dss101.html#FuCSBC17,https://doi.org/10.1016/j.dss.2017.05.015 +Benn R. Konsynski,Future research directions in model management.,1986,2,Decision Support Systems,1,db/journals/dss/dss2.html#KonsynskiS86,https://doi.org/10.1016/0167-9236(86)90126-0 +Soung Hie Kim,Interactive group decision process with evolutionary database.,1998,23,Decision Support Systems,4,db/journals/dss/dss23.html#KimCA98,https://doi.org/10.1016/S0167-9236(98)00054-2 +Wei Zhou 0001,Preventing ticket-switching of RFID-tagged items in apparel retail stores.,2013,55,Decision Support Systems,3,db/journals/dss/dss55.html#ZhouP13,https://doi.org/10.1016/j.dss.2013.03.005 +Keshnee Padayachee,An assessment of opportunity-reducing techniques in information security: An insider threat perspective.,2016,92,Decision Support Systems,,db/journals/dss/dss92.html#Padayachee16,https://doi.org/10.1016/j.dss.2016.09.012 +Hee-Dong Yang,It's all about attitude: revisiting the technology acceptance model.,2004,38,Decision Support Systems,1,db/journals/dss/dss38.html#YangY04,https://doi.org/10.1016/S0167-9236(03)00062-9 +Yannick Meiller,Adaptive knowledge-based system for health care applications with RFID-generated information.,2011,51,Decision Support Systems,1,db/journals/dss/dss51.html#MeillerBZP11,https://doi.org/10.1016/j.dss.2010.12.008 +Ronald M. Lee,A logic model for electronic contracting.,1988,4,Decision Support Systems,1,db/journals/dss/dss4.html#Lee88,https://doi.org/10.1016/0167-9236(88)90096-6 +Mohan Tanniru,Knowledge-based GDSS to support reciprocally interdependent decisions.,1989,5,Decision Support Systems,3,db/journals/dss/dss5.html#TanniruJ89,https://doi.org/10.1016/0167-9236(89)90036-5 +Wen-Hsien Tsai,An empirical investigation of the impacts of internal/external facilitators on the project success of ERP: A structural equation model.,2011,50,Decision Support Systems,2,db/journals/dss/dss50.html#TsaiSFLLC11,https://doi.org/10.1016/j.dss.2010.11.005 +Thomas Kämpke,Supporting preference elicitation : The FAW preference elicitation tool.,1993,9,Decision Support Systems,4,db/journals/dss/dss9.html#KampkeRW93,https://doi.org/10.1016/0167-9236(93)90048-8 +Xiao Fu,Trust based decisions in supply chains with an agent.,2016,82,Decision Support Systems,,db/journals/dss/dss82.html#FuDLH16,https://doi.org/10.1016/j.dss.2015.11.004 +Hsinchun Chen,COPLINK Connect: information and knowledge management for law enforcement.,2003,34,Decision Support Systems,3,db/journals/dss/dss34.html#ChenSHRAGBRC03,https://doi.org/10.1016/S0167-9236(02)00121-5 +H. Chen,Digital Government: technologies and practices.,2003,34,Decision Support Systems,3,db/journals/dss/dss34.html#Chen03a,https://doi.org/10.1016/S0167-9236(02)00118-5 +Hayden Wimmer,A multi-agent system to support evidence based medicine and clinical decision making via data sharing and data privacy.,2016,88,Decision Support Systems,,db/journals/dss/dss88.html#WimmerYS16,https://doi.org/10.1016/j.dss.2016.05.008 +J. Siskos,A DSS oriented method for multiobjective linear programming problems.,1989,5,Decision Support Systems,1,db/journals/dss/dss5.html#SiskosD89,https://doi.org/10.1016/0167-9236(89)90027-4 +Ram D. Gopal,Online keyword based advertising: Impact of ad impressions on own-channel and cross-channel click-through rates.,2011,52,Decision Support Systems,1,db/journals/dss/dss52.html#GopalLS11,https://doi.org/10.1016/j.dss.2011.04.002 +K. A. Andersen,A linear programming framework for logics of uncertainty.,1996,16,Decision Support Systems,1,db/journals/dss/dss16.html#AndersenH96,https://doi.org/10.1016/0167-9236(94)00055-7 +Long Flory,A new web personalization decision-support artifact for utility-sensitive customer review analysis.,2017,94,Decision Support Systems,,db/journals/dss/dss94.html#FloryOT17,https://doi.org/10.1016/j.dss.2016.11.003 +Nader Mahmoudi,Deep neural networks understand investors better.,2018,112,Decision Support Systems,,db/journals/dss/dss112.html#MahmoudiDM18,https://doi.org/10.1016/j.dss.2018.06.002 +K. Ramamurthy,An empirical investigation of the key determinants of data warehouse adoption.,2008,44,Decision Support Systems,4,db/journals/dss/dss44.html#RamamurthySS08,https://doi.org/10.1016/j.dss.2007.10.006 +Yuliang Yao,"Response to ""Note on supply chain integration in vendor managed inventory"".",2007,44,Decision Support Systems,1,db/journals/dss/dss44.html#YaoED07a,https://doi.org/10.1016/j.dss.2007.03.004 +Raymond R. Panko,Hitting the wall: errors in developing and code inspecting a 'simple' spreadsheet model.,1998,22,Decision Support Systems,4,db/journals/dss/dss22.html#PankoS98,https://doi.org/10.1016/S0167-9236(97)00038-9 +Steven Orla Kimbrough,Computers play the beer game: can artificial agents manage supply chains?,2002,33,Decision Support Systems,3,db/journals/dss/dss33.html#KimbroughWZ02,https://doi.org/10.1016/S0167-9236(02)00019-2 +Eunju Kim,Combination of multiple classifiers for the customer's purchase behavior prediction.,2003,34,Decision Support Systems,2,db/journals/dss/dss34.html#KimKL03,https://doi.org/10.1016/S0167-9236(02)00079-9 +Suriadi Suriadi,Discovering work prioritisation patterns from event logs.,2017,100,Decision Support Systems,,db/journals/dss/dss100.html#SuriadiWXAH17,https://doi.org/10.1016/j.dss.2017.02.002 +Sangjae Lee,Using data envelopment analysis and decision trees for efficiency analysis and recommendation of B2C controls.,2010,49,Decision Support Systems,4,db/journals/dss/dss49.html#Lee10,https://doi.org/10.1016/j.dss.2010.06.002 +Jac M. Anthonisse,Behind the screen: DSS from an OR point of view.,1988,4,Decision Support Systems,4,db/journals/dss/dss4.html#AnthonisseLS88,https://doi.org/10.1016/0167-9236(88)90004-8 +Sumali J. Conlon,The economics of natural language interfaces: natural language processing technology as a scarce resource.,2004,38,Decision Support Systems,1,db/journals/dss/dss38.html#ConlonCJ04,https://doi.org/10.1016/S0167-9236(03)00096-4 +Hardik N. Soni,Optimal strategy for an integrated inventory system involving variable production and defective items under retailer partial trade credit policy.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#SoniP12,https://doi.org/10.1016/j.dss.2012.05.009 +Narasimha Bolloju,Integrating knowledge management into enterprise environments for the next generation decision support.,2002,33,Decision Support Systems,2,db/journals/dss/dss33.html#BollojuKT02,https://doi.org/10.1016/S0167-9236(01)00142-7 +G. Michael McGrath,The Greta system: organizational politics introduced to the garbage can.,2001,31,Decision Support Systems,2,db/journals/dss/dss31.html#McGrathM01,https://doi.org/10.1016/S0167-9236(00)00130-5 +Bin Zhu 0001,Visualizing social network concepts.,2010,49,Decision Support Systems,2,db/journals/dss/dss49.html#ZhuWC10,https://doi.org/10.1016/j.dss.2010.02.001 +Waleed Ali,Intelligent Web proxy caching approaches based on machine learning techniques.,2012,53,Decision Support Systems,3,db/journals/dss/dss53.html#AliSI12,https://doi.org/10.1016/j.dss.2012.04.011 +Olivia R. Liu Sheng,IOIS: A knowledge-based approach to an integrated office information system.,1992,8,Decision Support Systems,3,db/journals/dss/dss8.html#ShengAAN92,https://doi.org/10.1016/0167-9236(92)90019-L +G. R. Rao,A hypermedia-based group decision support system to support collaborative medical decision-making.,2000,30,Decision Support Systems,2,db/journals/dss/dss30.html#RaoT00,https://doi.org/10.1016/S0167-9236(00)00096-8 +Kannan Mohan,Improving change management in software development: Integrating traceability and software configuration management.,2008,45,Decision Support Systems,4,db/journals/dss/dss45.html#MohanXCR08,https://doi.org/10.1016/j.dss.2008.03.003 +Levent Orman,Flexible management of computational models.,1986,2,Decision Support Systems,3,db/journals/dss/dss2.html#Orman86,https://doi.org/10.1016/0167-9236(86)90030-8 +Xiuli Qu,A mean-variance model to optimize the fixed versus open appointment percentages in open access scheduling systems.,2012,53,Decision Support Systems,3,db/journals/dss/dss53.html#QuRW12,https://doi.org/10.1016/j.dss.2012.04.003 +Hsin-Ginn Hwang,Critical factors influencing the adoption of data warehouse technology: a study of the banking industry in Taiwan.,2004,37,Decision Support Systems,1,db/journals/dss/dss37.html#HwangKYC04,https://doi.org/10.1016/S0167-9236(02)00191-4 +Xi Chen,Assessing the severity of phishing attacks: A hybrid data mining approach.,2011,50,Decision Support Systems,4,db/journals/dss/dss50.html#ChenBLG11,https://doi.org/10.1016/j.dss.2010.08.020 +Ruben Mancha,Finite mixture partial least squares for segmentation and behavioral characterization of auction bidders.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#ManchaLCS14,https://doi.org/10.1016/j.dss.2013.09.003 +Bin Gu,"Corrigendum to ""Identifying consumer consideration set at the purchase time from aggregate purchase data in online retailing"" [Decis. Support Syst. 53/3 (2012) 625-633].",2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#GuKC12a,https://doi.org/10.1016/j.dss.2012.08.019 +Nelson F. Granados,Designing online selling mechanisms: Transparency levels and prices.,2008,45,Decision Support Systems,4,db/journals/dss/dss45.html#GranadosGK08,https://doi.org/10.1016/j.dss.2007.12.005 +Feng Li,Who is talking? An ontology-based opinion leader identification framework for word-of-mouth marketing in online social blogs.,2011,51,Decision Support Systems,1,db/journals/dss/dss51.html#LiD11,https://doi.org/10.1016/j.dss.2010.12.007 +Michael J. Shaw,Knowledge management and data mining for marketing.,2001,31,Decision Support Systems,1,db/journals/dss/dss31.html#ShawSTW01,https://doi.org/10.1016/S0167-9236(00)00123-8 +Sujoy Chakravarty,A hedonic study of network effects in the market for word processing software.,2006,41,Decision Support Systems,4,db/journals/dss/dss41.html#ChakravartyDT06,https://doi.org/10.1016/j.dss.2004.10.010 +Yair Wand,Theoretical foundations for conceptual modelling in information systems development.,1995,15,Decision Support Systems,4,db/journals/dss/dss15.html#WandMPW95,https://doi.org/10.1016/0167-9236(94)00043-6 +Lakshmi Goel,Decision-making in-socio and in-situ: Facilitation in virtual worlds.,2012,52,Decision Support Systems,2,db/journals/dss/dss52.html#GoelJIJ12,https://doi.org/10.1016/j.dss.2011.09.001 +Mohsen Moghaddam,Best-matching with interdependent preferences - implications for capacitated cluster formation and evolution.,2015,79,Decision Support Systems,,db/journals/dss/dss79.html#MoghaddamN15,https://doi.org/10.1016/j.dss.2015.08.005 +Harvey J. Greenberg,Rule-based intelligence to support linear programming analysis.,1993,9,Decision Support Systems,4,db/journals/dss/dss9.html#Greenberg93,https://doi.org/10.1016/0167-9236(93)90051-4 +Jörg Gottschlich,A decision support system for stock investment recommendations using collective wisdom.,2014,59,Decision Support Systems,,db/journals/dss/dss59.html#GottschlichH14,https://doi.org/10.1016/j.dss.2013.10.005 +Kim Bang Salling,Modelling decision support and uncertainty for large transport infrastructure projects: The CLG-DSS model of the øresund Fixed Link.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#SallingLJ07,https://doi.org/10.1016/j.dss.2006.06.009 +Yoshinori Suzuki,DSS of vehicle refueling: A new enhanced approach with fuel weight considerations.,2014,68,Decision Support Systems,,db/journals/dss/dss68.html#SuzukiML14,https://doi.org/10.1016/j.dss.2014.10.005 +Chuan Luo,Impact of informational factors on online recommendation credibility: The moderating role of source credibility.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#LuoLSS13,https://doi.org/10.1016/j.dss.2013.05.005 +Meral Binbasioglu,Process-based reconstructive approach to model building.,1994,12,Decision Support Systems,2,db/journals/dss/dss12.html#Binbasioglu94,https://doi.org/10.1016/0167-9236(94)90010-8 +Chandrasekar Subramaniam,Determinants of open source software project success: A longitudinal study.,2009,46,Decision Support Systems,2,db/journals/dss/dss46.html#SubramaniamSN09,https://doi.org/10.1016/j.dss.2008.10.005 +Victor L. Berardi,A principled approach for building and evaluating neural network classification models.,2004,38,Decision Support Systems,2,db/journals/dss/dss38.html#BerardiPH04,https://doi.org/10.1016/S0167-9236(03)00093-9 +Flávio E. A. Horita,Bridging the gap between decision-making and emerging big data sources: An application of a model-based framework to disaster management in Brazil.,2017,97,Decision Support Systems,,db/journals/dss/dss97.html#HoritaAMM17,https://doi.org/10.1016/j.dss.2017.03.001 +Zeshui Xu,An approach based on the uncertain LOWG and induced uncertain LOWG operators to group decision making with uncertain multiplicative linguistic preference relations.,2006,41,Decision Support Systems,2,db/journals/dss/dss41.html#Xu06,https://doi.org/10.1016/j.dss.2004.08.011 +Robert G. Jeroslow,On monotone chaining procedures of the CF type.,1988,4,Decision Support Systems,2,db/journals/dss/dss4.html#Jeroslow88a,https://doi.org/10.1016/0167-9236(88)90127-3 +Jian Chen,An interactive neural network-based approach for solving multiple criteria decision-making problems.,2003,36,Decision Support Systems,2,db/journals/dss/dss36.html#ChenL03,https://doi.org/10.1016/S0167-9236(02)00141-0 +Tarun K. Sen,An organizational decision support system for managing the DOE hazardous waste cleanup program.,2000,29,Decision Support Systems,1,db/journals/dss/dss29.html#SenMH00,https://doi.org/10.1016/S0167-9236(00)00066-X +Krisztina Demeter,Time-based competition - the aspect of partner proximity.,2013,54,Decision Support Systems,4,db/journals/dss/dss54.html#Demeter13,https://doi.org/10.1016/j.dss.2012.05.055 +S. K. Das,A logical reasoning with preference.,1995,15,Decision Support Systems,1,db/journals/dss/dss15.html#Das95,https://doi.org/10.1016/0167-9236(94)00028-Q +Gopalakrishna Reddy Tadiparthi,A novel steganographic algorithm using animations as cover.,2008,45,Decision Support Systems,4,db/journals/dss/dss45.html#TadiparthiS08,https://doi.org/10.1016/j.dss.2008.03.005 +Wei Zhou 0001,RFID-enabled flexible warehousing.,2017,98,Decision Support Systems,,db/journals/dss/dss98.html#ZhouPCC17,https://doi.org/10.1016/j.dss.2017.05.002 +Timo P. Kunz,The effect of data preprocessing on a retail price optimization system.,2016,84,Decision Support Systems,,db/journals/dss/dss84.html#KunzCM16,https://doi.org/10.1016/j.dss.2016.01.003 +Kevin P. Scheibe,Going the last mile: A spatial decision support system for wireless broadband communications.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#ScheibeCRR06,https://doi.org/10.1016/j.dss.2005.02.010 +Ritu Agarwal,A structured methodology for developing production systems.,1992,8,Decision Support Systems,6,db/journals/dss/dss8.html#AgarwalT92,https://doi.org/10.1016/0167-9236(92)90042-N +Hyung Rim Choi,A sales agent for part manufacturers: VMSA.,2000,28,Decision Support Systems,4,db/journals/dss/dss28.html#ChoiKPKJS00,https://doi.org/10.1016/S0167-9236(99)00094-9 +Pauline Ratnasingam,Trust in inter-organizational exchanges: a case study in business to business electronic commerce.,2005,39,Decision Support Systems,3,db/journals/dss/dss39.html#Ratnasingam05,https://doi.org/10.1016/j.dss.2003.12.005 +Yuchen Pan,Online to offline (O2O) service recommendation method based on multi-dimensional similarity measurement.,2017,103,Decision Support Systems,,db/journals/dss/dss103.html#PanWO17,https://doi.org/10.1016/j.dss.2017.08.003 +Richard Gruss,By the numbers: The magic of numerical intelligence in text analytic systems.,2018,113,Decision Support Systems,,db/journals/dss/dss113.html#GrussAFW18,https://doi.org/10.1016/j.dss.2018.07.004 +Srikanth Chari,Towards a logical reconstruction of structured modeling.,1993,10,Decision Support Systems,3,db/journals/dss/dss10.html#ChariK93,https://doi.org/10.1016/0167-9236(93)90065-B +Khaled Amailef,Ontology-supported case-based reasoning approach for intelligent m-Government emergency response services.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#AmailefL13,https://doi.org/10.1016/j.dss.2012.12.034 +William E. Pracht,Model visualization: Graphical support for DSS problem structuring and knowledge organization.,1990,6,Decision Support Systems,1,db/journals/dss/dss6.html#Pracht90,https://doi.org/10.1016/0167-9236(90)90011-F +Isa Maks,A lexicon model for deep sentiment analysis and opinion mining applications.,2012,53,Decision Support Systems,4,db/journals/dss/dss53.html#MaksV12,https://doi.org/10.1016/j.dss.2012.05.025 +Dmitri Roussinov,Applying question answering technology to locating malevolent online content.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#RoussinovR07,https://doi.org/10.1016/j.dss.2006.04.006 +Karina Sokolova,Android application classification and anomaly detection with graph-based permission patterns.,2017,93,Decision Support Systems,,db/journals/dss/dss93.html#SokolovaPL17,https://doi.org/10.1016/j.dss.2016.09.006 +Ye Chen,Screening in multiple criteria decision analysis.,2008,45,Decision Support Systems,2,db/journals/dss/dss45.html#ChenKH08,https://doi.org/10.1016/j.dss.2007.12.017 +Ellen Tobback,Bankruptcy prediction for SMEs using relational data.,2017,102,Decision Support Systems,,db/journals/dss/dss102.html#TobbackBMSM17,https://doi.org/10.1016/j.dss.2017.07.004 +Se-Joon Hong,Understanding continued information technology usage behavior: A comparison of three models in the context of mobile internet.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#HongTT06,https://doi.org/10.1016/j.dss.2006.03.009 +Melanie L. Lenard,An object-oriented approach to model management.,1993,9,Decision Support Systems,1,db/journals/dss/dss9.html#Lenard93,https://doi.org/10.1016/0167-9236(93)90023-V +Hsiao-Hui Lee,The role of innovation in inventory turnover performance.,2015,76,Decision Support Systems,,db/journals/dss/dss76.html#LeeZH15,https://doi.org/10.1016/j.dss.2015.02.010 +Xianghua Lu,Know who to give: Enhancing the effectiveness of online product sampling.,2018,105,Decision Support Systems,,db/journals/dss/dss105.html#LuPBY18,https://doi.org/10.1016/j.dss.2017.11.002 +Matthijs Meire,The added value of auxiliary data in sentiment analysis of Facebook posts.,2016,89,Decision Support Systems,,db/journals/dss/dss89.html#MeireBP16,https://doi.org/10.1016/j.dss.2016.06.013 +Stefan Minner,Bargaining for cooperative economic ordering.,2007,43,Decision Support Systems,2,db/journals/dss/dss43.html#Minner07,https://doi.org/10.1016/j.dss.2005.05.016 +Jörg Leukel,Formal correctness of supply chain design.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#LeukelS13,https://doi.org/10.1016/j.dss.2013.06.008 +Jacob L. Lee,An ontological and semantical approach to source-receiver interoperability.,1996,18,Decision Support Systems,2,db/journals/dss/dss18.html#LeeS96,https://doi.org/10.1016/0167-9236(96)00012-7 +Christopher C. Yang,An information delivery system with automatic summarization for mobile commerce.,2007,43,Decision Support Systems,1,db/journals/dss/dss43.html#YangW07,https://doi.org/10.1016/j.dss.2005.05.012 +Gaurav Kapoor,Multi-tag and multi-owner RFID ownership transfer in supply chains.,2011,52,Decision Support Systems,1,db/journals/dss/dss52.html#KapoorZP11,https://doi.org/10.1016/j.dss.2011.08.002 +Miguel Camacho-Collados,A Decision Support System for predictive police patrolling.,2015,75,Decision Support Systems,,db/journals/dss/dss75.html#Camacho-Collados15,https://doi.org/10.1016/j.dss.2015.04.012 +Jack Shih-Chieh Hsu,Understanding the role of satisfaction in the formation of perceived switching value.,2014,59,Decision Support Systems,,db/journals/dss/dss59.html#Hsu14,https://doi.org/10.1016/j.dss.2013.11.003 +Kay M. Nelson,Virtual auditing agents: the EDGAR Agent challenge.,2000,28,Decision Support Systems,3,db/journals/dss/dss28.html#NelsonKSVL00,https://doi.org/10.1016/S0167-9236(99)00088-3 +Chao-Min Chiu,Understanding knowledge sharing in virtual communities: An integration of social capital and social cognitive theories.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#ChiuHW06,https://doi.org/10.1016/j.dss.2006.04.001 +Steven O. Kimbrough,Introduction.,1988,4,Decision Support Systems,1,db/journals/dss/dss4.html#KimbroughL88,https://doi.org/10.1016/0167-9236(88)90093-0 +Christopher Klinkmüller,Analyzing control flow information to improve the effectiveness of process model matching techniques.,2017,100,Decision Support Systems,,db/journals/dss/dss100.html#KlinkmullerW17,https://doi.org/10.1016/j.dss.2017.06.002 +Wolfgang Kratsch,Data-driven Process Prioritization in Process Networks.,2017,100,Decision Support Systems,,db/journals/dss/dss100.html#KratschMRR17,https://doi.org/10.1016/j.dss.2017.02.011 +Reina Y. Arakji,Exploring contributions of public resources in social bookmarking systems.,2009,47,Decision Support Systems,3,db/journals/dss/dss47.html#ArakjiBK09,https://doi.org/10.1016/j.dss.2009.02.007 +Hongyun Bao,A new temporal and social PMF-based method to predict users' interests in micro-blogging.,2013,55,Decision Support Systems,3,db/journals/dss/dss55.html#BaoLLSG13,https://doi.org/10.1016/j.dss.2013.02.007 +France Belanger,POCKET: A tool for protecting children's privacy online.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#BelangerCH0H13,https://doi.org/10.1016/j.dss.2012.11.010 +Felix T. S. Chan,Multicriterion genetic optimization for due date assigned distribution network problems.,2005,39,Decision Support Systems,4,db/journals/dss/dss39.html#ChanC05,https://doi.org/10.1016/j.dss.2004.03.004 +Antonella Certa,ELECTRE III to dynamically support the decision maker about the periodic replacements configurations for a multi-component system.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#CertaEL13,https://doi.org/10.1016/j.dss.2012.12.044 +Yong Jin Kim,Strategic actions in information technology investment based on real option theory.,2002,33,Decision Support Systems,1,db/journals/dss/dss33.html#KimS02,https://doi.org/10.1016/S0167-9236(01)00134-8 +Elliot Bendoly,A framework for investments in support building activities (SBAs): support mechanisms and strategic scenarios.,2000,27,Decision Support Systems,4,db/journals/dss/dss27.html#Bendoly00,https://doi.org/10.1016/S0167-9236(99)00063-9 +Sean B. Eom,Mapping the intellectual structure of research in decision support systems through author cocitation analysis (1971-1993).,1996,16,Decision Support Systems,4,db/journals/dss/dss16.html#Eom96,https://doi.org/10.1016/0167-9236(95)00026-7 +Cuneyd C. Kaya,An admission-control technique for delay reduction in proxy caching.,2009,46,Decision Support Systems,2,db/journals/dss/dss46.html#KayaZTM09,https://doi.org/10.1016/j.dss.2008.10.004 +Santiago Grijalva,Reactive power considerations in ATC computation.,2001,30,Decision Support Systems,3,db/journals/dss/dss30.html#GrijalvaS01,https://doi.org/10.1016/S0167-9236(00)00109-3 +Daniel Moonkee Min,IBRS: Intelligent bank reengineering system.,1996,18,Decision Support Systems,1,db/journals/dss/dss18.html#MinKKMK96,https://doi.org/10.1016/0167-9236(96)00021-8 +Shuang Sun,Merging workflows: A new perspective on connecting business processes.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#SunKY06,https://doi.org/10.1016/j.dss.2005.07.001 +Taedong Han,Recent advances in information technology and systems in the Internet-era: Introduction to the WITS'05 special issue for decision support systems.,2008,45,Decision Support Systems,4,db/journals/dss/dss45.html#HanWZ08,https://doi.org/10.1016/j.dss.2007.12.003 +Andrew N. K. Chen,Strategies for effective Web services adoption for dynamic e-businesses.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#ChenSS06,https://doi.org/10.1016/j.dss.2005.05.011 +Shung-Kuang Kung,A methodology and experimental shell for formally addressing centralized/distributed decision making choices.,1995,15,Decision Support Systems,1,db/journals/dss/dss15.html#KungM95,https://doi.org/10.1016/0167-9236(94)00038-T +Paulo B. Góes,Query evaluation management design and prototype implementation.,1997,19,Decision Support Systems,1,db/journals/dss/dss19.html#GoesGC97,https://doi.org/10.1016/S0167-9236(96)00047-4 +Gleiber Fernandes Royes,Uncertainty analysis in political forecasting.,2006,42,Decision Support Systems,1,db/journals/dss/dss42.html#RoyesB06,https://doi.org/10.1016/j.dss.2004.09.009 +Maurice Landry,Can DSS evolve without changing our view of the concept of 'problem'?,1985,1,Decision Support Systems,1,db/journals/dss/dss1.html#LandryPB85,https://doi.org/10.1016/0167-9236(85)90195-2 +Arqum Mateen,Vendor managed inventory for single-vendor multi-retailer supply chains.,2015,70,Decision Support Systems,,db/journals/dss/dss70.html#MateenC15,https://doi.org/10.1016/j.dss.2014.12.002 +Myron Hatcher,A tool kit for multimedia supported group/organizational decision systems (MSGDS).,1995,15,Decision Support Systems,3,db/journals/dss/dss15.html#Hatcher95a,https://doi.org/10.1016/0167-9236(94)00062-W +Selwyn Piramuthu,Protocols for RFID tag/reader authentication.,2007,43,Decision Support Systems,3,db/journals/dss/dss43.html#Piramuthu07,https://doi.org/10.1016/j.dss.2007.01.003 +Bin Gu,Identifying consumer consideration set at the purchase time from aggregate purchase data in online retailing.,2012,53,Decision Support Systems,3,db/journals/dss/dss53.html#GuKC12,https://doi.org/10.1016/j.dss.2012.02.015 +Stefan Feuerriegel,News-based trading strategies.,2016,90,Decision Support Systems,,db/journals/dss/dss90.html#FeuerriegelP16,https://doi.org/10.1016/j.dss.2016.06.020 +Alok Gupta,Managing computing resources in intranets: an electronic commerce perspective.,1998,24,Decision Support Systems,1,db/journals/dss/dss24.html#GuptaSW98,https://doi.org/10.1016/S0167-9236(98)00063-3 +Shuliang Li,The development of a hybrid intelligent system for developing marketing strategy.,2000,27,Decision Support Systems,4,db/journals/dss/dss27.html#Li00,https://doi.org/10.1016/S0167-9236(99)00061-5 +David L. Olson,Direct marketing decision support through predictive customer response modeling.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#OlsonC12,https://doi.org/10.1016/j.dss.2012.06.005 +Ching-Chang Lee,An empirical study of mobile commerce in insurance industry: Task-technology fit and individual differences.,2007,43,Decision Support Systems,1,db/journals/dss/dss43.html#LeeCC07,https://doi.org/10.1016/j.dss.2005.05.008 +Paul Pao-Yen Wu,A framework for model integration and holistic modelling of socio-technical systems.,2015,71,Decision Support Systems,,db/journals/dss/dss71.html#WuFPM15,https://doi.org/10.1016/j.dss.2015.01.006 +Bart van Riessen,Real-time container transport planning with decision trees based on offline obtained optimal solutions.,2016,89,Decision Support Systems,,db/journals/dss/dss89.html#RiessenND16,https://doi.org/10.1016/j.dss.2016.06.004 +Marijana Petrovic,An ELECTRE-based decision aid tool for stepwise benchmarking: An application over EU Digital Agenda targets.,2014,59,Decision Support Systems,,db/journals/dss/dss59.html#PetrovicBASP14,https://doi.org/10.1016/j.dss.2013.12.002 +Rajarshi Chakraborty,Privacy preserving actions of older adults on social media: Exploring the behavior of opting out of information sharing.,2013,55,Decision Support Systems,4,db/journals/dss/dss55.html#ChakrabortyVR13,https://doi.org/10.1016/j.dss.2013.01.004 +Zhibin Wu,A consistency and consensus based decision support model for group decision making with multiplicative preference relations.,2012,52,Decision Support Systems,3,db/journals/dss/dss52.html#WuX12,https://doi.org/10.1016/j.dss.2011.11.022 +Tong Bao,Finding disseminators via electronic word of mouth message for effective marketing communications.,2014,67,Decision Support Systems,,db/journals/dss/dss67.html#BaoC14a,https://doi.org/10.1016/j.dss.2014.07.006 +Hyung Rim Choi,An agent for selecting optimal order set in EC marketplace.,2004,36,Decision Support Systems,4,db/journals/dss/dss36.html#ChoiKPPW04,https://doi.org/10.1016/S0167-9236(03)00027-7 +Andreas Gregoriades,Unifying business objects and system dynamics as a paradigm for developing decision support systems.,2004,37,Decision Support Systems,2,db/journals/dss/dss37.html#GregoriadesK04,https://doi.org/10.1016/S0167-9236(03)00004-6 +Nadine Schröder,Comparing alternatives to account for unobserved heterogeneity in direct marketing models.,2017,103,Decision Support Systems,,db/journals/dss/dss103.html#SchroderH17,https://doi.org/10.1016/j.dss.2017.08.005 +Hyun-Kyu Lee,Effects of task-modality fit on user performance.,2001,32,Decision Support Systems,1,db/journals/dss/dss32.html#LeeSB01,https://doi.org/10.1016/S0167-9236(01)00098-7 +Jing Wang,An application of agent-based simulation to knowledge sharing.,2009,46,Decision Support Systems,2,db/journals/dss/dss46.html#WangGST09,https://doi.org/10.1016/j.dss.2008.09.006 +Jaegeol Yim,Extended Kalman Filter for wireless LAN based indoor positioning.,2008,45,Decision Support Systems,4,db/journals/dss/dss45.html#YimPJJ08,https://doi.org/10.1016/j.dss.2008.03.004 +Basilio Sierra,Histogram distance-based Bayesian Network structure learning: A supervised classification specific approach.,2009,48,Decision Support Systems,1,db/journals/dss/dss48.html#SierraLJI09,https://doi.org/10.1016/j.dss.2009.07.010 +Dayong Ye,Self-organization in an agent network: A mechanism and a potential application.,2012,53,Decision Support Systems,3,db/journals/dss/dss53.html#YeZS12,https://doi.org/10.1016/j.dss.2012.02.009 +Heng Tang,A prediction framework based on contextual data to support Mobile Personalized Marketing.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#TangLS13,https://doi.org/10.1016/j.dss.2013.06.004 +Benjamin Ryder,Preventing traffic accidents with in-vehicle decision support systems - The impact of accident hotspot warnings on driver behaviour.,2017,99,Decision Support Systems,,db/journals/dss/dss99.html#RyderGEDW17,https://doi.org/10.1016/j.dss.2017.05.004 +Paul Jackson,Transactive memory systems in organizations: Implications for knowledge directories.,2008,44,Decision Support Systems,2,db/journals/dss/dss44.html#JacksonK08,https://doi.org/10.1016/j.dss.2007.05.001 +Rosina Weber,Intelligent delivery of military lessons learned.,2003,34,Decision Support Systems,3,db/journals/dss/dss34.html#WeberA03,https://doi.org/10.1016/S0167-9236(02)00122-7 +Yi-Cheng Ku,To whom should I listen? Finding reputable reviewers in opinion-sharing communities.,2012,53,Decision Support Systems,3,db/journals/dss/dss53.html#KuWH12,https://doi.org/10.1016/j.dss.2012.03.003 +Andrew B. Whinston,Intelligent agents as a basis for decision support systems.,1997,20,Decision Support Systems,1,db/journals/dss/dss20.html#Whinston97,https://doi.org/10.1016/S0167-9236(96)00071-1 +Hamed Majidi Zolbanin,Predicting overall survivability in comorbidity of cancers: A data mining approach.,2015,74,Decision Support Systems,,db/journals/dss/dss74.html#ZolbaninDZ15,https://doi.org/10.1016/j.dss.2015.04.003 +David Ben-Arieh,Multi-criteria group consensus under linear cost opinion elasticity.,2007,43,Decision Support Systems,3,db/journals/dss/dss43.html#Ben-AriehE07,https://doi.org/10.1016/j.dss.2006.11.009 +Faruk Hasic,Augmenting processes with decision intelligence: Principles for integrated modelling.,2018,107,Decision Support Systems,,db/journals/dss/dss107.html#HasicSV18,https://doi.org/10.1016/j.dss.2017.12.008 +Enes Eryarsoy,Using domain-specific knowledge in generalization error bounds for support vector machine learning.,2009,46,Decision Support Systems,2,db/journals/dss/dss46.html#EryarsoyKA09,https://doi.org/10.1016/j.dss.2008.09.001 +Yosef Beeri,Synergetic expert systems.,1996,17,Decision Support Systems,2,db/journals/dss/dss17.html#BeeriS96,https://doi.org/10.1016/0167-9236(95)00014-3 +Efraim Turban,Executive information systems - a special issue.,1995,14,Decision Support Systems,2,db/journals/dss/dss14.html#TurbanW95,https://doi.org/10.1016/0167-9236(94)00003-B +Pengzhu Zhang,Flexible planning and dynamic integration for problem solving in SXSES-DSS.,1998,24,Decision Support Systems,2,db/journals/dss/dss24.html#ZhangW98,https://doi.org/10.1016/S0167-9236(98)00055-4 +R. J. Niehaus,Evolution of the strategy and structure of a human resource planning DSS application.,1995,14,Decision Support Systems,3,db/journals/dss/dss14.html#Niehaus95,https://doi.org/10.1016/0167-9236(94)00016-L +Olivier Brandouy,Algorithmic determination of the maximum possible earnings for investment strategies.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#BrandouyMV13,https://doi.org/10.1016/j.dss.2012.09.020 +Slava Kisilevich,A GIS-based decision support system for hotel room rate estimation and temporal price prediction: The hotel brokers' context.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#KisilevichKR13,https://doi.org/10.1016/j.dss.2012.10.038 +Robert J. Thomas,Restructuring the electric power business - a marriage of power engineering and market economics.,2001,30,Decision Support Systems,3,db/journals/dss/dss30.html#Thomas01,https://doi.org/10.1016/S0167-9236(00)00099-3 +Catherine Combes,Clustering using principal component analysis applied to autonomy-disability of elderly people.,2013,55,Decision Support Systems,2,db/journals/dss/dss55.html#CombesA13,https://doi.org/10.1016/j.dss.2012.10.016 +Mark Cecchini,Making words work: Using financial text as a predictor of financial events.,2010,50,Decision Support Systems,1,db/journals/dss/dss50.html#CecchiniAKP10,https://doi.org/10.1016/j.dss.2010.07.012 +Hemant K. Bhargava,Simulating belief systems of autonomous agents.,1995,14,Decision Support Systems,4,db/journals/dss/dss14.html#BhargavaB95,https://doi.org/10.1016/0167-9236(94)00036-R +HongGirl Lee,Telework vs. central work: A comparative view of knowledge accessibility.,2007,43,Decision Support Systems,3,db/journals/dss/dss43.html#LeeSH07,https://doi.org/10.1016/j.dss.2006.11.007 +Joseph S. Valacich,"Understanding risk-taking behavior of groups: A ""decision analysis"" perspective.",2009,46,Decision Support Systems,4,db/journals/dss/dss46.html#ValacichSPG09,https://doi.org/10.1016/j.dss.2008.12.003 +Daniel M. Reeves,Exploring bidding strategies for market-based scheduling.,2005,39,Decision Support Systems,1,db/journals/dss/dss39.html#ReevesWMO05,https://doi.org/10.1016/j.dss.2004.08.014 +Wei Zhou 0001,A social network matrix for implicit and explicit social network plates.,2014,68,Decision Support Systems,,db/journals/dss/dss68.html#ZhouDP14,https://doi.org/10.1016/j.dss.2014.09.006 +Sahar Karimi,The effect of prior knowledge and decision-making style on the online purchase decision-making process: A typology of consumer shopping behaviour.,2015,77,Decision Support Systems,,db/journals/dss/dss77.html#KarimiPH15,https://doi.org/10.1016/j.dss.2015.06.004 +Gregor Jost,Improving cognitive effectiveness of business process diagrams with opacity-driven graphical highlights.,2017,103,Decision Support Systems,,db/journals/dss/dss103.html#JostHHP17,https://doi.org/10.1016/j.dss.2017.09.003 +Shounak Basak,"A game theoretic analysis of multichannel retail in the context of ""showrooming"".",2017,103,Decision Support Systems,,db/journals/dss/dss103.html#BasakBAS17,https://doi.org/10.1016/j.dss.2017.09.002 +Wenjing Duan,Special issue on online communities and social network: An editorial introduction.,2009,47,Decision Support Systems,3,db/journals/dss/dss47.html#Duan09,https://doi.org/10.1016/j.dss.2009.02.010 +Karen Corral,The impact of alternative diagrams on the accuracy of recall: A comparison of star-schema diagrams and entity-relationship diagrams.,2006,42,Decision Support Systems,1,db/journals/dss/dss42.html#CorralSL06,https://doi.org/10.1016/j.dss.2005.02.003 +Tsan-Ming Choi,Will a supplier benefit from sharing good information with a retailer?,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#ChoiLW13,https://doi.org/10.1016/j.dss.2013.05.011 +Ofir Ben-Assuli,Assessing the perception of information components in financial decision support systems.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#Ben-Assuli12,https://doi.org/10.1016/j.dss.2012.09.007 +Zachary E. Bowden,The truck driver scheduling problem with fatigue monitoring.,2018,110,Decision Support Systems,,db/journals/dss/dss110.html#BowdenR18,https://doi.org/10.1016/j.dss.2018.03.002 +Bong-Keun Jeong,The impacts of piracy and supply chain contracts on digital music channel performance.,2012,52,Decision Support Systems,3,db/journals/dss/dss52.html#JeongKZ12,https://doi.org/10.1016/j.dss.2011.10.016 +Der-Chiang Li,Generating information for small data sets with a multi-modal distribution.,2014,66,Decision Support Systems,,db/journals/dss/dss66.html#LiL14a,https://doi.org/10.1016/j.dss.2014.06.004 +Sumali P. Conlon,A natural language processing based group decision support system.,1994,12,Decision Support Systems,3,db/journals/dss/dss12.html#ConlonRAS94,https://doi.org/10.1016/0167-9236(94)90002-7 +Di He,Online learning for auction mechanism in bandit setting.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#HeCWL13,https://doi.org/10.1016/j.dss.2013.07.004 +Amitava Dutta,A hybrid AI/OR decision support tool for backbone communications network design.,1993,10,Decision Support Systems,4,db/journals/dss/dss10.html#DuttaM93,https://doi.org/10.1016/0167-9236(93)90068-E +Alfred Zhu Liu,How do competitive environments moderate CRM value?,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#LiuLX13,https://doi.org/10.1016/j.dss.2012.11.003 +Cheng-Chieh Hsiao,The effect of social capital on community loyalty in a virtual community: Test of a tripartite-process model.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#HsiaoC12,https://doi.org/10.1016/j.dss.2012.09.003 +Cenk Koças,A system for pricing the sales distribution from blockbusters to the long tail.,2016,89,Decision Support Systems,,db/journals/dss/dss89.html#KocasA16,https://doi.org/10.1016/j.dss.2016.06.008 +Hans-Jürgen Sebastian,Knowledge based discrete control problems: A decision support approach.,1990,6,Decision Support Systems,4,db/journals/dss/dss6.html#Sebastian90,https://doi.org/10.1016/0167-9236(90)90023-K +Scott A. Moore,Categorizing automated messages.,1998,22,Decision Support Systems,3,db/journals/dss/dss22.html#Moore98,https://doi.org/10.1016/S0167-9236(97)00060-2 +Jun Ma 0002,A three-level-similarity measuring method of participant opinions in multiple-criteria group decision supports.,2014,59,Decision Support Systems,,db/journals/dss/dss59.html#MaLZ14,https://doi.org/10.1016/j.dss.2013.10.007 +Yiqun Liu,Constructing a reliable Web graph with information on browsing behavior.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#LiuXXCZMR12,https://doi.org/10.1016/j.dss.2012.06.001 +Bernard Kamsu-Foguem,User-centered visual analysis using a hybrid reasoning architecture for intensive care units.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#Kamsu-FoguemTAZVMZHLR12,https://doi.org/10.1016/j.dss.2012.06.009 +I-Chiu Chang,Critical factors for adopting PACS in Taiwan: Views of radiology department directors.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#ChangHYL06,https://doi.org/10.1016/j.dss.2005.08.007 +Kwok-Wai Cheung,Mining customer product ratings for personalized marketing.,2003,35,Decision Support Systems,2,db/journals/dss/dss35.html#CheungKLT03,https://doi.org/10.1016/S0167-9236(02)00108-2 +Jeffrey Gainer Proudfoot,Man vs. machine: Investigating the effects of adversarial system use on end-user behavior in automated deception detection interviews.,2016,85,Decision Support Systems,,db/journals/dss/dss85.html#ProudfootBS16,https://doi.org/10.1016/j.dss.2016.02.008 +Shuihua Han,Category role aided market segmentation approach to convenience store chain category management.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#HanYFC14,https://doi.org/10.1016/j.dss.2013.09.017 +Alan R. Dennis,Breaking the rules: success and failure in groupware-supported business process reengineering.,2003,36,Decision Support Systems,1,db/journals/dss/dss36.html#DennisCK03,https://doi.org/10.1016/S0167-9236(02)00132-X +Gregory S. Dawson,How are C-suite executives different? A comparative empirical study of the survival of American chief information officers.,2015,74,Decision Support Systems,,db/journals/dss/dss74.html#DawsonHK15,https://doi.org/10.1016/j.dss.2015.03.005 +Yabing Jiang,Capacity planning and performance contracting for service facilities.,2014,58,Decision Support Systems,,db/journals/dss/dss58.html#JiangS14,https://doi.org/10.1016/j.dss.2013.01.010 +Germán Creamer,Learning a board Balanced Scorecard to improve corporate performance.,2010,49,Decision Support Systems,4,db/journals/dss/dss49.html#CreamerF10,https://doi.org/10.1016/j.dss.2010.04.004 +Yonggui Wang,Testing the moderating effects of toolkits and user communities in personalization: The case of social networking service.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#WangL13,https://doi.org/10.1016/j.dss.2012.12.045 +Alexandra Balahur,Detecting implicit expressions of emotion in text: A comparative analysis.,2012,53,Decision Support Systems,4,db/journals/dss/dss53.html#BalahurHM12,https://doi.org/10.1016/j.dss.2012.05.024 +Yung-Ming Li,Creating social intelligence for product portfolio design.,2014,66,Decision Support Systems,,db/journals/dss/dss66.html#LiCLL14,https://doi.org/10.1016/j.dss.2014.06.013 +Gavin R. Finnie,Sequencing nonprocedural financial models.,1985,1,Decision Support Systems,3,db/journals/dss/dss1.html#Finnie85,https://doi.org/10.1016/0167-9236(85)90243-X +Bernhard J. Angerhofer,A model and a performance measurement system for collaborative supply chains.,2006,42,Decision Support Systems,1,db/journals/dss/dss42.html#AngerhoferA06,https://doi.org/10.1016/j.dss.2004.12.005 +Ali Amiri 0001,Customer-oriented catalog segmentation: Effective solution approaches.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#Amiri06,https://doi.org/10.1016/j.dss.2006.04.010 +Hila Etzion,Managing online sales with posted price and open-bid auctions.,2013,54,Decision Support Systems,3,db/journals/dss/dss54.html#EtzionM13,https://doi.org/10.1016/j.dss.2012.12.005 +Ravindra Mantena,Platform-based information goods: The economics of exclusivity.,2010,50,Decision Support Systems,1,db/journals/dss/dss50.html#MantenaSV10,https://doi.org/10.1016/j.dss.2010.07.004 +Michael D. Wolfe,A theoretical justification for Japanese nemawashi / ringi group decision making and an implementation of a nemawashi / ringi group decision support system.,1992,8,Decision Support Systems,2,db/journals/dss/dss8.html#Wolfe92,https://doi.org/10.1016/0167-9236(92)90004-9 +Se-Hak Chun,Pricing strategies in B2C electronic commerce: analytical and empirical approaches.,2005,40,Decision Support Systems,2,db/journals/dss/dss40.html#ChunK05,https://doi.org/10.1016/j.dss.2004.04.012 +Selwyn Piramuthu,RFID mutual authentication protocols.,2011,50,Decision Support Systems,2,db/journals/dss/dss50.html#Piramuthu11,https://doi.org/10.1016/j.dss.2010.09.005 +A. Faye Borthick,The effects of information request ambiguity and construct incongruence on query development.,2001,32,Decision Support Systems,1,db/journals/dss/dss32.html#BorthickBJT01,https://doi.org/10.1016/S0167-9236(01)00097-5 +Peter L. Hammer,Essential and redundant rules in Horn knowledge bases.,1996,16,Decision Support Systems,2,db/journals/dss/dss16.html#HammerK96,https://doi.org/10.1016/0167-9236(95)00002-X +Ramayya Krishnan,A logic modeling language for automated model construction.,1990,6,Decision Support Systems,2,db/journals/dss/dss6.html#Krishnan90,https://doi.org/10.1016/0167-9236(90)90004-B +Kristin M. Tolle,Estimating drug/plasma concentration levels by applying neural networks to pharmacokinetic data sets.,2000,30,Decision Support Systems,2,db/journals/dss/dss30.html#TolleCC00,https://doi.org/10.1016/S0167-9236(00)00094-4 +Chien Chin Chen,Who should you follow? Combining learning to rank with social influence for informative friend recommendation.,2016,90,Decision Support Systems,,db/journals/dss/dss90.html#ChenSL16,https://doi.org/10.1016/j.dss.2016.06.017 +Louis W. Miller,A model management system to support policy analysis.,1986,2,Decision Support Systems,1,db/journals/dss/dss2.html#MillerK86,https://doi.org/10.1016/0167-9236(86)90121-1 +Constantin Zopounidis,On the use of knowledge-based decision support systems in financial management: A survey.,1997,20,Decision Support Systems,3,db/journals/dss/dss20.html#ZopounidisDM97,https://doi.org/10.1016/S0167-9236(97)00002-X +Gokul Bhandari,Debiasing investors with decision support systems: An experimental investigation.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#BhandariHD08,https://doi.org/10.1016/j.dss.2008.07.010 +Silvia Figini,Solvency prediction for small and medium enterprises in banking.,2017,102,Decision Support Systems,,db/journals/dss/dss102.html#FiginiBG17,https://doi.org/10.1016/j.dss.2017.08.001 +Martijn Kagie,A graphical shopping interface based on product attributes.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#KagieWG08,https://doi.org/10.1016/j.dss.2008.06.011 +Anne Collinot,Adapting the behavior of a job-shop scheduling system.,1991,7,Decision Support Systems,4,db/journals/dss/dss7.html#CollinotP91,https://doi.org/10.1016/0167-9236(91)90063-H +Fu-ren Lin,Visualized cognitive knowledge map integration for P2P networks.,2009,46,Decision Support Systems,4,db/journals/dss/dss46.html#LinY09,https://doi.org/10.1016/j.dss.2008.11.020 +Steven Orla Kimbrough,FMEC: Formal Modeling for Electronic Commerce.,2002,33,Decision Support Systems,3,db/journals/dss/dss33.html#KimbroughT02,https://doi.org/10.1016/S0167-9236(02)00012-X +Hajo A. Reijers,Syntax highlighting in business process models.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#ReijersFME11,https://doi.org/10.1016/j.dss.2010.12.013 +Judy E. Scott,Organizational knowledge and the Intranet.,1998,23,Decision Support Systems,1,db/journals/dss/dss23.html#Scott98,https://doi.org/10.1016/S0167-9236(98)00032-3 +Antuela A. Tako,The application of discrete event simulation and system dynamics in the logistics and supply chain context.,2012,52,Decision Support Systems,4,db/journals/dss/dss52.html#TakoR12,https://doi.org/10.1016/j.dss.2011.11.015 +David Arnott,Patterns of business intelligence systems use in organizations.,2017,97,Decision Support Systems,,db/journals/dss/dss97.html#ArnottLS17,https://doi.org/10.1016/j.dss.2017.03.005 +Jae Kyu Lee,Knowledge-assisted optimization model formulation: UNIK-OPT.,1995,13,Decision Support Systems,2,db/journals/dss/dss13.html#LeeK95,https://doi.org/10.1016/0167-9236(93)E0028-C +Guido L. Geerts,A supply chain of things: The EAGLET ontology for highly visible supply chains.,2014,63,Decision Support Systems,,db/journals/dss/dss63.html#GeertsO14,https://doi.org/10.1016/j.dss.2013.09.007 +Sean L. Humpherys,Identification of fraudulent financial statements using linguistic credibility analysis.,2011,50,Decision Support Systems,3,db/journals/dss/dss50.html#HumpherysMBBF11,https://doi.org/10.1016/j.dss.2010.08.009 +Hamed Majidi Zolbanin,Processing electronic medical records to improve predictive analytics outcomes for hospital readmissions.,2018,112,Decision Support Systems,,db/journals/dss/dss112.html#ZolbaninD18,https://doi.org/10.1016/j.dss.2018.06.010 +Yulei Zhang,Research note: Examining gender emotional differences in Web forum communication.,2013,55,Decision Support Systems,3,db/journals/dss/dss55.html#ZhangDC13,https://doi.org/10.1016/j.dss.2013.04.003 +Christine Kiss,Identification of influencers - Measuring influence in customer networks.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#KissB08,https://doi.org/10.1016/j.dss.2008.06.007 +Subhajyoti Bandyopadhyay,Introduction to special issue.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#BandyopadhyayHP14,https://doi.org/10.1016/j.dss.2012.10.041 +Sukumar Rathnam,Tools for building the human-computer interface of a decision support system.,1995,13,Decision Support Systems,1,db/journals/dss/dss13.html#RathnamM95,https://doi.org/10.1016/0167-9236(93)E0030-H +Victoria Y. Yoon,Assessing the moderating effect of consumer product knowledge and online shopping experience on using recommendation agents for customer loyalty.,2013,55,Decision Support Systems,4,db/journals/dss/dss55.html#YoonHGG13,https://doi.org/10.1016/j.dss.2012.12.024 +Andreas Solti,Misplaced product detection using sensor data without planograms.,2018,112,Decision Support Systems,,db/journals/dss/dss112.html#SoltiRRM18,https://doi.org/10.1016/j.dss.2018.06.006 +Paul J. Krause,Formal specification and decision support.,1994,12,Decision Support Systems,3,db/journals/dss/dss12.html#KrauseBH94,https://doi.org/10.1016/0167-9236(94)90003-5 +Anantaram Balakrishnan,Circuit diagnosis support system for electronics assembly operations.,1999,25,Decision Support Systems,4,db/journals/dss/dss25.html#BalakrishnanS99,https://doi.org/10.1016/S0167-9236(99)00015-9 +Ting-Peng Liang,Recommendation systems for decision support: An editorial introduction.,2008,45,Decision Support Systems,3,db/journals/dss/dss45.html#Liang08,https://doi.org/10.1016/j.dss.2007.05.003 +Juan Feng,Simultaneous vs. sequential sales: Bidder competition and supply uncertainty.,2010,49,Decision Support Systems,3,db/journals/dss/dss49.html#FengC10,https://doi.org/10.1016/j.dss.2010.02.011 +Ron Berndsen,Causal ordering in economic models.,1995,15,Decision Support Systems,2,db/journals/dss/dss15.html#Berndsen95,https://doi.org/10.1016/0167-9236(94)00034-P +Irit Askira Gelman,Setting priorities for data accuracy improvements in satisficing decision-making scenarios: A guiding theory.,2010,48,Decision Support Systems,4,db/journals/dss/dss48.html#Gelman10,https://doi.org/10.1016/j.dss.2009.11.001 +Selwyn Piramuthu,Integration of simulation modeling and inductive learning in an adaptive decision support system.,1993,9,Decision Support Systems,1,db/journals/dss/dss9.html#PiramuthuRSP93,https://doi.org/10.1016/0167-9236(93)90027-Z +Kazuo Watabe,Coordinator support in a nemawashi decision process.,1992,8,Decision Support Systems,2,db/journals/dss/dss8.html#WatabeHW92,https://doi.org/10.1016/0167-9236(92)90002-7 +Niall M. Fraser,An architecture for integrating expert systems.,1989,5,Decision Support Systems,3,db/journals/dss/dss5.html#FraserHKMS89,https://doi.org/10.1016/0167-9236(89)90034-1 +Ariel Monteserin,Whom should I persuade during a negotiation? An approach based on social influence maximization.,2015,77,Decision Support Systems,,db/journals/dss/dss77.html#MonteserinA15,https://doi.org/10.1016/j.dss.2015.05.003 +J. Michael Pearson,An empirical investigation into DSS structures and environments.,1995,13,Decision Support Systems,2,db/journals/dss/dss13.html#PearsonS95,https://doi.org/10.1016/0167-9236(93)E0042-C +Tal Ben-Zvi,The efficacy of business simulation games in creating Decision Support Systems: An experimental investigation.,2010,49,Decision Support Systems,1,db/journals/dss/dss49.html#Ben-Zvi10,https://doi.org/10.1016/j.dss.2010.01.002 +YongSeog Kim,Weighted order-dependent clustering and visualization of web navigation patterns.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#Kim07,https://doi.org/10.1016/j.dss.2006.03.007 +Samuel W. K. Chan,Beyond keyword and cue-phrase matching: A sentence-based abstraction technique for information extraction.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#Chan06,https://doi.org/10.1016/j.dss.2004.11.017 +Wei-Hsi Hung,Relationship bonding for a better knowledge transfer climate: An ERP implementation research.,2012,52,Decision Support Systems,2,db/journals/dss/dss52.html#HungHJK12,https://doi.org/10.1016/j.dss.2011.09.007 +Stephen G. Powell,Impact of errors in operational spreadsheets.,2009,47,Decision Support Systems,2,db/journals/dss/dss47.html#PowellBL09,https://doi.org/10.1016/j.dss.2009.02.002 +Damon Daylamani Zad,Lu-Lu: A framework for collaborative decision making games.,2016,85,Decision Support Systems,,db/journals/dss/dss85.html#ZadAA16,https://doi.org/10.1016/j.dss.2016.02.011 +Daning Hu,Reputation management in an open source developer social network: An empirical study on determinants of positive evaluations.,2012,53,Decision Support Systems,3,db/journals/dss/dss53.html#HuZC12,https://doi.org/10.1016/j.dss.2012.02.005 +F. Cazzola,Diagnosis and correction of office system communication.,1992,8,Decision Support Systems,3,db/journals/dss/dss8.html#CazzolaGP92,https://doi.org/10.1016/0167-9236(92)90017-J +Ming Zhou,Reference price effect and its implications for decision making in online auctions: An empirical study.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#Zhou12,https://doi.org/10.1016/j.dss.2012.05.051 +Paul Benjamin Lowry,Evolutionary development and research on Internet-based collaborative writing tools and processes to enhance eWriting in an eGovernment setting.,2003,34,Decision Support Systems,3,db/journals/dss/dss34.html#LowryANL03,https://doi.org/10.1016/S0167-9236(02)00119-7 +Kristof Coussement,A Bayesian approach for incorporating expert opinions into decision support systems: A case study of online consumer-satisfaction detection.,2015,79,Decision Support Systems,,db/journals/dss/dss79.html#CoussementBA15,https://doi.org/10.1016/j.dss.2015.07.006 +Tom Narock,A provenance-based approach to semantic web service description and discovery.,2014,64,Decision Support Systems,,db/journals/dss/dss64.html#NarockYM14,https://doi.org/10.1016/j.dss.2014.04.007 +Valeria Sadovykh,Do decision-making structure and sequence exist in health online social networks?,2015,74,Decision Support Systems,,db/journals/dss/dss74.html#SadovykhSP15a,https://doi.org/10.1016/j.dss.2015.03.007 +David B. Paradice,Expanding the boundaries of DSS.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#Paradice07,https://doi.org/10.1016/j.dss.2006.03.001 +Chih-Ping Wei,A collaborative filtering-based approach to personalized document clustering.,2008,45,Decision Support Systems,3,db/journals/dss/dss45.html#WeiYH08,https://doi.org/10.1016/j.dss.2007.05.008 +I. Robert Chiang,Periodic cache replacement policy for dynamic content at application server.,2007,43,Decision Support Systems,2,db/journals/dss/dss43.html#ChiangGZ07,https://doi.org/10.1016/j.dss.2006.10.004 +María Teresa Escobar,Some extensions of the precise consistency consensus matrix.,2015,74,Decision Support Systems,,db/journals/dss/dss74.html#EscobarAM15,https://doi.org/10.1016/j.dss.2015.04.005 +Christopher C. Yang,Intelligent infomediary for web financial information.,2004,38,Decision Support Systems,1,db/journals/dss/dss38.html#YangC04,https://doi.org/10.1016/S0167-9236(03)00078-2 +T. S. Raghu,Dynamic profiling of consumers for customized offerings over the Internet: a model and analysis.,2001,32,Decision Support Systems,2,db/journals/dss/dss32.html#RaghuKRW01,https://doi.org/10.1016/S0167-9236(01)00106-3 +Ram D. Gopal,Economics of first-contact email advertising.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#GopalTW06,https://doi.org/10.1016/j.dss.2005.11.004 +G. van der Hoek,A case study on decision support in a non-linear world.,1988,4,Decision Support Systems,4,db/journals/dss/dss4.html#HoekD88,https://doi.org/10.1016/0167-9236(88)90012-7 +Yuanyuan Gao,Incorporating association rule networks in feature category-weighted naive Bayes model to support weaning decision making.,2017,96,Decision Support Systems,,db/journals/dss/dss96.html#GaoXHC17,https://doi.org/10.1016/j.dss.2017.01.007 +Winston T. Lin,The business value of information technology as measured by technical efficiency: Evidence from country-level data.,2009,46,Decision Support Systems,4,db/journals/dss/dss46.html#Lin09,https://doi.org/10.1016/j.dss.2008.11.017 +Evangelos Triantaphyllou,An examination of the effectiveness of multi-dimensional decision-making methods: A decision-making paradox.,1989,5,Decision Support Systems,3,db/journals/dss/dss5.html#TriantaphyllouM89,https://doi.org/10.1016/0167-9236(89)90037-7 +Timon C. Du,Building an automatic e-tendering system on the Semantic Web.,2009,47,Decision Support Systems,1,db/journals/dss/dss47.html#Du09,https://doi.org/10.1016/j.dss.2008.12.009 +Nan Hu,Manipulation in digital word-of-mouth: A reality check for book reviews.,2011,50,Decision Support Systems,3,db/journals/dss/dss50.html#HuBGL11,https://doi.org/10.1016/j.dss.2010.08.013 +Alan S. Abrahams,Concept comparison engines: A new frontier of search.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#AbrahamsB13,https://doi.org/10.1016/j.dss.2012.09.014 +Amitava Dutta,A DSS for distributed computer system design in the presence of multiple conflicting objectives.,1985,1,Decision Support Systems,3,db/journals/dss/dss1.html#DuttaJ85,https://doi.org/10.1016/0167-9236(85)90242-8 +Jahyun Goo,An investigation of factors that influence the duration of IT outsourcing relationships.,2007,42,Decision Support Systems,4,db/journals/dss/dss42.html#GooKNRS07,https://doi.org/10.1016/j.dss.2006.05.007 +Hakan Tarakci,On the staffing policy and technology investment in a specialty hospital offering telemedicine.,2009,46,Decision Support Systems,2,db/journals/dss/dss46.html#TarakciOS09,https://doi.org/10.1016/j.dss.2008.08.001 +Dursun Delen,An analytic approach to better understanding and management of coronary surgeries.,2012,52,Decision Support Systems,3,db/journals/dss/dss52.html#DelenOT12,https://doi.org/10.1016/j.dss.2011.11.004 +Jian Chen,Comparison of the group-buying auction and the fixed pricing mechanism.,2007,43,Decision Support Systems,2,db/journals/dss/dss43.html#ChenCS07,https://doi.org/10.1016/j.dss.2006.11.002 +Lin-Chih Chen,Building a term suggestion and ranking system based on a probabilistic analysis model and a semantic analysis graph.,2012,53,Decision Support Systems,1,db/journals/dss/dss53.html#Chen12,https://doi.org/10.1016/j.dss.2012.02.001 +Dorit Nevo,A temporal approach to expectations and desires from knowledge management systems.,2007,44,Decision Support Systems,1,db/journals/dss/dss44.html#NevoC07,https://doi.org/10.1016/j.dss.2007.04.003 +Galit Shmueli,Exploring auction databases through interactive visualization.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#ShmueliJAPS06,https://doi.org/10.1016/j.dss.2006.01.001 +Kris Lieckens,Optimization of a stochastic remanufacturing network with an exchange option.,2013,54,Decision Support Systems,4,db/journals/dss/dss54.html#LieckensCL13,https://doi.org/10.1016/j.dss.2012.05.057 +Thushari Silva,A social network-empowered research analytics framework for project selection.,2013,55,Decision Support Systems,4,db/journals/dss/dss55.html#SilvaGMJC13,https://doi.org/10.1016/j.dss.2013.01.005 +Oded Nov,A social capital perspective on meta-knowledge contribution and social computing.,2012,53,Decision Support Systems,1,db/journals/dss/dss53.html#NovYK12,https://doi.org/10.1016/j.dss.2011.12.009 +Hui Yuan,The determinants of crowdfunding success: A semantic text analytics approach.,2016,91,Decision Support Systems,,db/journals/dss/dss91.html#YuanLX16,https://doi.org/10.1016/j.dss.2016.08.001 +Baojun Gao,Follow the herd or be myself? An analysis of consistency in behavior of reviewers and helpfulness of their reviews.,2017,95,Decision Support Systems,,db/journals/dss/dss95.html#GaoHB17,https://doi.org/10.1016/j.dss.2016.11.005 +Samo Bobek,A framework for integrating decision support systems into office information systems.,1992,8,Decision Support Systems,3,db/journals/dss/dss8.html#Bobek92,https://doi.org/10.1016/0167-9236(92)90015-H +Tuncay Gürbüz,A hybrid MCDM methodology for ERP selection problem with interacting criteria.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#GurbuzAA12,https://doi.org/10.1016/j.dss.2012.05.006 +Navin Kumar,Measuring interestingness of discovered skewed patterns in data cubes.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#KumarGBKC08,https://doi.org/10.1016/j.dss.2008.08.003 +Kihoon Kim,Search engine competition with a knowledge-sharing service.,2014,66,Decision Support Systems,,db/journals/dss/dss66.html#KimT14,https://doi.org/10.1016/j.dss.2014.07.002 +Hai Zhuge,Knowledge flow network planning and simulation.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#Zhuge06,https://doi.org/10.1016/j.dss.2005.03.007 +Moshe Dror,Multiobjective linear programming : Another DSS.,1991,7,Decision Support Systems,3,db/journals/dss/dss7.html#DrorSY91,https://doi.org/10.1016/0167-9236(91)90039-E +David L. Olson,Comparative analysis of data mining methods for bankruptcy prediction.,2012,52,Decision Support Systems,2,db/journals/dss/dss52.html#OlsonDM12,https://doi.org/10.1016/j.dss.2011.10.007 +Pekka Korhonen,Using harmonious houses for visual pairwise comparison of multiple criteria alternatives.,1991,7,Decision Support Systems,1,db/journals/dss/dss7.html#Korhonen91,https://doi.org/10.1016/0167-9236(91)90076-N +Minder Chen,Empowering collaborative commerce with Web services enabled business process management systems.,2007,43,Decision Support Systems,2,db/journals/dss/dss43.html#ChenZZ07,https://doi.org/10.1016/j.dss.2005.05.014 +Malak Al-hassan,A semantic enhanced hybrid recommendation approach: A case study of e-Government tourism service recommendation system.,2015,72,Decision Support Systems,,db/journals/dss/dss72.html#Al-hassanLL15,https://doi.org/10.1016/j.dss.2015.02.001 +Jochen Malinowski,Decision support for team staffing: An automated relational recommendation approach.,2008,45,Decision Support Systems,3,db/journals/dss/dss45.html#MalinowskiWK08,https://doi.org/10.1016/j.dss.2007.05.005 +Tamilla Mavlanova,The role of external and internal signals in E-commerce.,2016,87,Decision Support Systems,,db/journals/dss/dss87.html#MavlanovaBL16,https://doi.org/10.1016/j.dss.2016.04.009 +Fernando Borrajo,SIMBA: A simulator for business education and research.,2010,48,Decision Support Systems,3,db/journals/dss/dss48.html#BorrajoBPSFGS10,https://doi.org/10.1016/j.dss.2009.06.009 +Cheryl Aasheim,Scanning World Wide Web documents with the vector space model.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#AasheimK06,https://doi.org/10.1016/j.dss.2005.03.002 +Indranil Bose,Do green supply chain management initiatives impact stock prices of firms?,2012,52,Decision Support Systems,3,db/journals/dss/dss52.html#BoseP12,https://doi.org/10.1016/j.dss.2011.10.020 +Amanda M. Y. Chu,Development and validation of instruments of information security deviant behavior.,2014,66,Decision Support Systems,,db/journals/dss/dss66.html#ChuC14,https://doi.org/10.1016/j.dss.2014.06.008 +Roger McHaney,Using LIWC to choose simulation approaches: A feasibility study.,2018,111,Decision Support Systems,,db/journals/dss/dss111.html#McHaneyTR18,https://doi.org/10.1016/j.dss.2018.04.002 +Cuihong Li,Combinatorial Coalition Formation for multi-item group-buying with heterogeneous customers.,2010,49,Decision Support Systems,1,db/journals/dss/dss49.html#LiSS10,https://doi.org/10.1016/j.dss.2009.12.002 +Dunja Mladenic,Feature selection on hierarchy of web documents.,2003,35,Decision Support Systems,1,db/journals/dss/dss35.html#MladenicG03,https://doi.org/10.1016/S0167-9236(02)00097-0 +Gina Colarelli O'Connor,Viewing the Web as a marketplace: the case of small companies.,1997,21,Decision Support Systems,3,db/journals/dss/dss21.html#OConnorO97,https://doi.org/10.1016/S0167-9236(97)00027-4 +Gregory E. Kersten,A procedure for negotiating efficient and non-efficient compromises.,1988,4,Decision Support Systems,2,db/journals/dss/dss4.html#Kersten88,https://doi.org/10.1016/0167-9236(88)90126-1 +Valeria Sadovykh,Do online social networks support decision-making?,2015,70,Decision Support Systems,,db/journals/dss/dss70.html#SadovykhSP15,https://doi.org/10.1016/j.dss.2014.11.011 +Steve H. Barr,Effectiveness of decision support systems: development or reliance effect?,1997,21,Decision Support Systems,2,db/journals/dss/dss21.html#BarrS97,https://doi.org/10.1016/S0167-9236(97)00021-3 +James R. Marsden,Decision making under time pressure with different information sources and performance-based financial incentives - Part 1.,2002,34,Decision Support Systems,1,db/journals/dss/dss34.html#MarsdenPW02,https://doi.org/10.1016/S0167-9236(01)00135-X +Feng Li,Listen to me - Evaluating the influence of micro-blogs.,2014,62,Decision Support Systems,,db/journals/dss/dss62.html#LiD14,https://doi.org/10.1016/j.dss.2014.03.008 +Yannis Vassiliou,Access to specific declarative knowledge by expert systems: The impact of logic programming.,1985,1,Decision Support Systems,2,db/journals/dss/dss1.html#VassiliouCJ85,https://doi.org/10.1016/0167-9236(85)90063-6 +John Hawgood,Analysis of future development opportunities for OIS methods and tools.,1992,8,Decision Support Systems,3,db/journals/dss/dss8.html#HawgoodKPN92,https://doi.org/10.1016/0167-9236(92)90014-G +Razvan Petrusel,How visual cognition influences process model comprehension.,2017,96,Decision Support Systems,,db/journals/dss/dss96.html#PetruselMR17,https://doi.org/10.1016/j.dss.2017.01.005 +Dorothy E. Leidner,Improving student learning of conceptual information: GSS supported collaborative learning vs. individual constructive learning.,1997,20,Decision Support Systems,2,db/journals/dss/dss20.html#LeidnerF97,https://doi.org/10.1016/S0167-9236(97)00004-3 +Deqiang Han,"Erratum to ""Combining belief functions based on distance of evidence"" [Decision Support Systems Volume(38/3)489-493].",2010,50,Decision Support Systems,1,db/journals/dss/dss50.html#HanDL10,https://doi.org/10.1016/j.dss.2010.09.003 +R. Eric Hostler,Assessing the impact of internet agent on end users' performance.,2005,41,Decision Support Systems,1,db/journals/dss/dss41.html#HostlerYG05,https://doi.org/10.1016/j.dss.2004.07.002 +Kar Yan Tam,Applying conceptual clustering to knowledge-bases construction.,1993,10,Decision Support Systems,2,db/journals/dss/dss10.html#Tam93,https://doi.org/10.1016/0167-9236(93)90037-4 +Duen-Ren Liu,Mining group-based knowledge flows for sharing task knowledge.,2011,50,Decision Support Systems,2,db/journals/dss/dss50.html#LiuL11,https://doi.org/10.1016/j.dss.2010.09.004 +Heshan Sun,Consuming information systems: An economic model of user satisfaction.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#SunFH14,https://doi.org/10.1016/j.dss.2013.09.002 +Paul Jen-Hwa Hu,Examining the role of learning engagement in technology-mediated learning and its effects on learning effectiveness and satisfaction.,2012,53,Decision Support Systems,4,db/journals/dss/dss53.html#HuH12,https://doi.org/10.1016/j.dss.2012.05.014 +Juntao Liu,Bayesian Probabilistic Matrix Factorization with Social Relations and Item Contents for recommendation.,2013,55,Decision Support Systems,3,db/journals/dss/dss55.html#LiuWL13,https://doi.org/10.1016/j.dss.2013.04.002 +Hock Chuan Chan,Support for mobile communications planning.,1998,23,Decision Support Systems,2,db/journals/dss/dss23.html#ChanL98,https://doi.org/10.1016/S0167-9236(98)00038-4 +Chetan Kumar,Location and time do matter: A long tail study of website requests.,2009,47,Decision Support Systems,4,db/journals/dss/dss47.html#KumarNS09,https://doi.org/10.1016/j.dss.2009.04.015 +Lina Zhou,Harmonized authentication based on ThumbStroke dynamics on touch screen mobile phones.,2016,92,Decision Support Systems,,db/journals/dss/dss92.html#ZhouKZL16,https://doi.org/10.1016/j.dss.2016.09.007 +Subhajyoti Bandyopadhyay,Knowledge sharing and cooperation in outsourcing projects - A game theoretic analysis.,2007,43,Decision Support Systems,2,db/journals/dss/dss43.html#BandyopadhyayP07,https://doi.org/10.1016/j.dss.2006.10.006 +Chao Ding,"The power of the ""like"" button: The impact of social media on box office.",2017,94,Decision Support Systems,,db/journals/dss/dss94.html#DingCDJ17,https://doi.org/10.1016/j.dss.2016.11.002 +Fujun Lai,Fighting identity theft: The coping perspective.,2012,52,Decision Support Systems,2,db/journals/dss/dss52.html#LaiLH12,https://doi.org/10.1016/j.dss.2011.09.002 +Han-Lin Li,Visualizing decision process on spheres based on the even swap concept.,2008,45,Decision Support Systems,2,db/journals/dss/dss45.html#LiM08,https://doi.org/10.1016/j.dss.2008.01.004 +Julian David Hunt,A new integrated tool for complex decision making: Application to the UK energy sector.,2013,54,Decision Support Systems,3,db/journals/dss/dss54.html#HuntBH13,https://doi.org/10.1016/j.dss.2012.12.010 +Zhenbin Yang,Analyzing the enabling factors for the organizational decision to adopt healthcare information systems.,2013,55,Decision Support Systems,3,db/journals/dss/dss55.html#YangKNL13,https://doi.org/10.1016/j.dss.2013.03.002 +Liping Liu,Representing asymmetric decision problems using coarse valuations.,2004,37,Decision Support Systems,1,db/journals/dss/dss37.html#LiuS04b,https://doi.org/10.1016/S0167-9236(02)00210-5 +Min Chen,Improving website structure through reducing information overload.,2018,110,Decision Support Systems,,db/journals/dss/dss110.html#Chen18,https://doi.org/10.1016/j.dss.2018.03.009 +Younghwa Lee,Understanding anti-plagiarism software adoption: An extended protection motivation theory perspective.,2011,50,Decision Support Systems,2,db/journals/dss/dss50.html#Lee11,https://doi.org/10.1016/j.dss.2010.07.009 +Bo Fan,Spatially enabled customer segmentation using a data classification method with uncertain predicates.,2009,47,Decision Support Systems,4,db/journals/dss/dss47.html#FanZ09,https://doi.org/10.1016/j.dss.2009.03.002 +Gautam Biswas,An expert decision support system for production control.,1988,4,Decision Support Systems,2,db/journals/dss/dss4.html#BiswasOS88,https://doi.org/10.1016/0167-9236(88)90132-7 +Peng Jiang,A framework based on hidden Markov model with adaptive weighting for microcystin forecasting and early-warning.,2016,84,Decision Support Systems,,db/journals/dss/dss84.html#JiangLZY16,https://doi.org/10.1016/j.dss.2016.02.003 +Diane M. Strong,Decision support for exception handling and quality control in office operations.,1992,8,Decision Support Systems,3,db/journals/dss/dss8.html#Strong92,https://doi.org/10.1016/0167-9236(92)90016-I +Mingxin Gan,Improving accuracy and diversity of personalized recommendation through power law adjustments of user similarities.,2013,55,Decision Support Systems,3,db/journals/dss/dss55.html#GanJ13,https://doi.org/10.1016/j.dss.2013.03.006 +Cathy Macharis,Multi actor multi criteria analysis (MAMCA) as a tool to support sustainable decisions: State of use.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#MacharisTL12,https://doi.org/10.1016/j.dss.2012.08.008 +Alain Pinsonneault,The impact of technological support on groups: An assessment of the empirical research.,1989,5,Decision Support Systems,2,db/journals/dss/dss5.html#PinsonneaultK89,https://doi.org/10.1016/0167-9236(89)90007-9 +Linda A. Volonino,Using EIS to respond to dynamic business conditions.,1995,14,Decision Support Systems,2,db/journals/dss/dss14.html#VoloninoWR95,https://doi.org/10.1016/0167-9236(94)00005-D +Robert S. Garfinkel,Shopbot 2.0: Integrating recommendations and promotions with comparison shopping.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#GarfinkelGPY08,https://doi.org/10.1016/j.dss.2008.05.006 +Ying-Ming Wang,A data envelopment analysis method with assurance region for weight generation in the analytic hierarchy process.,2008,45,Decision Support Systems,4,db/journals/dss/dss45.html#WangCP08,https://doi.org/10.1016/j.dss.2008.03.002 +Bezalel Gavish,Anonymous mechanisms in group decision support systems communication.,1998,23,Decision Support Systems,4,db/journals/dss/dss23.html#GavishG98,https://doi.org/10.1016/S0167-9236(98)00057-8 +Josef Bauer,Optimal pricing in e-commerce based on sparse and noisy data.,2018,106,Decision Support Systems,,db/journals/dss/dss106.html#BauerJ18,https://doi.org/10.1016/j.dss.2017.12.002 +Alessandro Colantonio,A new role mining framework to elicit business roles and to mitigate enterprise risk.,2011,50,Decision Support Systems,4,db/journals/dss/dss50.html#ColantonioPOV11,https://doi.org/10.1016/j.dss.2010.08.022 +Tu Bao Ho,Discovering and using knowledge from unsupervised data.,1997,21,Decision Support Systems,1,db/journals/dss/dss21.html#Ho97,https://doi.org/10.1016/S0167-9236(97)00011-0 +Daniel G. Conway,Caveat mercator in electronic commerce: An update.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#ConwayK08,https://doi.org/10.1016/j.dss.2008.06.009 +Jun Tian,DSS development and applications in China.,2007,42,Decision Support Systems,4,db/journals/dss/dss42.html#TianWLLW07,https://doi.org/10.1016/j.dss.2004.11.009 +Joey F. George,Information technology for organizational change.,1992,8,Decision Support Systems,4,db/journals/dss/dss8.html#GeorgeNV92,https://doi.org/10.1016/0167-9236(92)90052-Q +Matje van de Camp,The socialist network.,2012,53,Decision Support Systems,4,db/journals/dss/dss53.html#CampB12,https://doi.org/10.1016/j.dss.2012.05.031 +,Provider feedback information and customer choice decisions on crowdsourcing marketplaces: Evidence from two discrete choice experiments.,2016,82,Decision Support Systems,,db/journals/dss/dss82.html#AssemiS16,https://doi.org/10.1016/j.dss.2015.11.001 +Soe-Tsyr Yuan,A personalized and integrative comparison-shopping engine and its applications.,2003,34,Decision Support Systems,2,db/journals/dss/dss34.html#Yuan03,https://doi.org/10.1016/S0167-9236(02)00077-5 +Jiangnan Qiu,Modeling method of cascading crisis events based on merging Bayesian Network.,2014,62,Decision Support Systems,,db/journals/dss/dss62.html#QiuWYLD14,https://doi.org/10.1016/j.dss.2014.03.007 +Troy J. Strader,Information infrastructure for electronic virtual organization management.,1998,23,Decision Support Systems,1,db/journals/dss/dss23.html#StraderLS98,https://doi.org/10.1016/S0167-9236(98)00037-2 +Zhaoli Meng,The value of IT to firms in a developing country in the catch-up process: An empirical comparison of China and the United States.,2007,43,Decision Support Systems,3,db/journals/dss/dss43.html#MengL07,https://doi.org/10.1016/j.dss.2006.12.007 +Rajiv Kohli,Managing customer relationships through E-business decision support applications: a case of hospital-physician collaboration.,2001,32,Decision Support Systems,2,db/journals/dss/dss32.html#KohliPEVSB01,https://doi.org/10.1016/S0167-9236(01)00109-9 +Guus Wolf,Schedule management: An object oriented approach.,1994,11,Decision Support Systems,4,db/journals/dss/dss11.html#Wolf94,https://doi.org/10.1016/0167-9236(94)90082-5 +Yen-Liang Chen,Emotion classification of YouTube videos.,2017,101,Decision Support Systems,,db/journals/dss/dss101.html#ChenCY17,https://doi.org/10.1016/j.dss.2017.05.014 +Shengli Li,Network effects in online two-sided market platforms: A research note.,2010,49,Decision Support Systems,2,db/journals/dss/dss49.html#LiLB10,https://doi.org/10.1016/j.dss.2010.02.004 +Oh Byung Kwon,Multi-agent system approach to context-aware coordinated web services under general market mechanism.,2006,41,Decision Support Systems,2,db/journals/dss/dss41.html#Kwon06,https://doi.org/10.1016/j.dss.2004.07.005 +Pradeep Kumar 0001,An upper approximation based community detection algorithm for complex networks.,2017,96,Decision Support Systems,,db/journals/dss/dss96.html#KumarGB17,https://doi.org/10.1016/j.dss.2017.02.010 +Upkar Varshney,A middleware framework for managing transactions in group-oriented mobile commerce services.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#Varshney08a,https://doi.org/10.1016/j.dss.2008.07.005 +Vishal Midha,Impact of consumer empowerment on online trust: An examination across genders.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#Midha12,https://doi.org/10.1016/j.dss.2012.05.005 +Felix T. S. Chan,A SEM-neural network approach for understanding determinants of interorganizational system standard adoption and performances.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#ChanC12,https://doi.org/10.1016/j.dss.2012.08.009 +Randall S. Sexton,Reliable classification using neural networks: a genetic algorithm and backpropagation comparison.,2000,30,Decision Support Systems,1,db/journals/dss/dss30.html#SextonD00,https://doi.org/10.1016/S0167-9236(00)00086-5 +Andrew J. I. Jones,On the concept of trust.,2002,33,Decision Support Systems,3,db/journals/dss/dss33.html#Jones02,https://doi.org/10.1016/S0167-9236(02)00013-1 +P. K. Kannan,Introduction to the special issue: decision support issues in customer relationship management and interactive marketing for e-commerce.,2001,32,Decision Support Systems,2,db/journals/dss/dss32.html#KannanR01,https://doi.org/10.1016/S0167-9236(01)00103-8 +T. Vámos,Judea pearl: Probabilistic reasoning in intelligent systems.,1992,8,Decision Support Systems,1,db/journals/dss/dss8.html#Vamos92,https://doi.org/10.1016/0167-9236(92)90038-Q +Xin Li 0004,A multi-theoretical kernel-based approach to social network-based recommendation.,2014,65,Decision Support Systems,,db/journals/dss/dss65.html#LiWL14,https://doi.org/10.1016/j.dss.2014.05.006 +Akhilesh Bajaj,AWSM: Allocation of workflows utilizing social network metrics.,2010,50,Decision Support Systems,1,db/journals/dss/dss50.html#BajajR10,https://doi.org/10.1016/j.dss.2010.07.014 +Kun Chang Lee,Decision support in time series modeling by pattern recognition.,1988,4,Decision Support Systems,2,db/journals/dss/dss4.html#LeeP88,https://doi.org/10.1016/0167-9236(88)90129-7 +Jianan Wu,User reviews and uncertainty assessment: A two stage model of consumers' willingness-to-pay in online markets.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#WuWSY13,https://doi.org/10.1016/j.dss.2013.01.017 +Charles E. Downing,Implementing and testing a complex interactive MOLP algorithm.,2002,33,Decision Support Systems,4,db/journals/dss/dss33.html#DowningR02,https://doi.org/10.1016/S0167-9236(02)00011-8 +Weiguo Fan,Nonlinear ranking function representations in genetic programming-based ranking discovery for personalized search.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#FanPW06,https://doi.org/10.1016/j.dss.2005.11.002 +Antonio Jiménez,A decision support system for multiattribute utility evaluation based on imprecise assignments.,2003,36,Decision Support Systems,1,db/journals/dss/dss36.html#JimenezRM03,https://doi.org/10.1016/S0167-9236(02)00137-9 +Edward F. Watson,A user-access model-driven approach to proxy cache performance analysis.,1999,25,Decision Support Systems,4,db/journals/dss/dss25.html#WatsonSC99,https://doi.org/10.1016/S0167-9236(99)00017-2 +Tanya J. McGill,The role of spreadsheet knowledge in user-developed application success.,2005,39,Decision Support Systems,3,db/journals/dss/dss39.html#McGillK05,https://doi.org/10.1016/j.dss.2004.01.002 +Flavien Balbo,Dynamic modeling of a disturbance in a multi-agent system for traffic regulation.,2005,41,Decision Support Systems,1,db/journals/dss/dss41.html#BalboP05,https://doi.org/10.1016/j.dss.2004.06.001 +Cataldo Musto,Personalized finance advisory through case-based recommender systems and diversification strategies.,2015,77,Decision Support Systems,,db/journals/dss/dss77.html#MustoSLGL15,https://doi.org/10.1016/j.dss.2015.06.001 +Hitoshi Tsubone,Decision support system for production planning - Concept and prototype.,1995,13,Decision Support Systems,2,db/journals/dss/dss13.html#TsuboneMK95,https://doi.org/10.1016/0167-9236(93)E0037-E +Yijun Liu,Superedge prediction: What opinions will be mined based on an opinion supernetwork model?,2014,64,Decision Support Systems,,db/journals/dss/dss64.html#LiuLTMT14,https://doi.org/10.1016/j.dss.2014.05.011 +Réal André Carbonneau,Pairwise issue modeling for negotiation counteroffer prediction using neural networks.,2011,50,Decision Support Systems,2,db/journals/dss/dss50.html#CarbonneauKV11,https://doi.org/10.1016/j.dss.2010.11.002 +William Leigh,A computational implementation of stock charting: abrupt volume increase as signal for movement in New York Stock Exchange Composite Index.,2004,37,Decision Support Systems,4,db/journals/dss/dss37.html#LeighMH04,https://doi.org/10.1016/S0167-9236(03)00084-8 +Frada Burstein,Decision support in the new millennium.,2001,31,Decision Support Systems,2,db/journals/dss/dss31.html#BursteinBA01,https://doi.org/10.1016/S0167-9236(00)00128-7 +David C. Novak,A decision support methodology for stochastic multi-criteria linear programming using spreadsheets.,2003,36,Decision Support Systems,1,db/journals/dss/dss36.html#NovakR03,https://doi.org/10.1016/S0167-9236(02)00130-6 +Jengchung Victor Chen,Facebook C2C social commerce: A study of online impulse buying.,2016,83,Decision Support Systems,,db/journals/dss/dss83.html#ChenSW16,https://doi.org/10.1016/j.dss.2015.12.008 +William K. McHenry,Using knowledge management to reform the Russian Criminal Procedural Codex.,2003,34,Decision Support Systems,3,db/journals/dss/dss34.html#McHenry03,https://doi.org/10.1016/S0167-9236(02)00125-2 +Michael Scholz,Measuring consumers' willingness to pay with utility-based recommendation systems.,2015,72,Decision Support Systems,,db/journals/dss/dss72.html#ScholzDFH15,https://doi.org/10.1016/j.dss.2015.02.006 +Hemantha S. B. Herath,IT security auditing: A performance evaluation decision model.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#HerathH14,https://doi.org/10.1016/j.dss.2013.07.010 +Li Chen,"Reliability (or ""lack thereof"") of on-line preference revelation: A controlled experimental analysis.",2013,56,Decision Support Systems,,db/journals/dss/dss56.html#ChenMZ13,https://doi.org/10.1016/j.dss.2013.06.010 +K. A. Andersen,Bayesian logic.,1994,11,Decision Support Systems,2,db/journals/dss/dss11.html#AndersenH94,https://doi.org/10.1016/0167-9236(94)90031-0 +Jaeki Song,Trust in health infomediaries.,2007,43,Decision Support Systems,2,db/journals/dss/dss43.html#SongZ07,https://doi.org/10.1016/j.dss.2006.11.011 +Jichang Dong,A framework of Web-based Decision Support Systems for portfolio selection with OLAP and PVM.,2004,37,Decision Support Systems,3,db/journals/dss/dss37.html#DongDWCD04,https://doi.org/10.1016/S0167-9236(03)00034-4 +Yan Li 0001,It is all about what we have: A discriminant analysis of organizations' decision to adopt open source software.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#LiTY13,https://doi.org/10.1016/j.dss.2013.05.006 +Abraham Seidmann,"Introduction to the Special Issue on ""Information Issues in Supply Chain and in Service System Design"".",2012,53,Decision Support Systems,2,db/journals/dss/dss53.html#SeidmannJZ12,https://doi.org/10.1016/j.dss.2012.01.004 +Vincent S. Lai,What influences ERP beliefs - Logical evaluation or imitation?,2010,50,Decision Support Systems,1,db/journals/dss/dss50.html#LaiLLW10,https://doi.org/10.1016/j.dss.2010.08.001 +Chih-Ping Wei,Event detection from online news documents for supporting environmental scanning.,2004,36,Decision Support Systems,4,db/journals/dss/dss36.html#WeiL04,https://doi.org/10.1016/S0167-9236(03)00028-9 +Peter C. Verhoef,The commercial use of segmentation and predictive modeling techniques for database marketing in the Netherlands.,2003,34,Decision Support Systems,4,db/journals/dss/dss34.html#VerhoefSHL03,https://doi.org/10.1016/S0167-9236(02)00069-6 +Antonio Reyes,Making objective decisions from subjective data: Detecting irony in customer reviews.,2012,53,Decision Support Systems,4,db/journals/dss/dss53.html#ReyesR12,https://doi.org/10.1016/j.dss.2012.05.027 +Katsutoshi Yada,Is this brand ephemeral? A multivariate tree-based decision analysis of new product sustainability.,2007,44,Decision Support Systems,1,db/journals/dss/dss44.html#YadaIK07,https://doi.org/10.1016/j.dss.2007.03.014 +Benjamín Barán,An open-data approach for quantifying the potential of taxi ridesharing.,2017,99,Decision Support Systems,,db/journals/dss/dss99.html#BaranBM17,https://doi.org/10.1016/j.dss.2017.05.008 +José María Alonso-Meijide,A new power index based on minimal winning coalitions without any surplus.,2010,49,Decision Support Systems,1,db/journals/dss/dss49.html#Alonso-MeijideF10,https://doi.org/10.1016/j.dss.2010.01.003 +Boualem Rabta,A hybrid analysis method for multi-class queueing networks with multi-server nodes.,2013,54,Decision Support Systems,4,db/journals/dss/dss54.html#RabtaSRF13,https://doi.org/10.1016/j.dss.2012.05.056 +Namchul Shin,The impact of information technology on the financial performance of diversified firms.,2006,41,Decision Support Systems,4,db/journals/dss/dss41.html#Shin06,https://doi.org/10.1016/j.dss.2004.10.003 +Thadthong Bhrammanee,ODDM: A framework for modelbases.,2008,44,Decision Support Systems,3,db/journals/dss/dss44.html#BhrammaneeW08,https://doi.org/10.1016/j.dss.2007.09.005 +Ulrich Güntzer,Retrieval for decision support resources by structured models.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#GuntzerMMS07,https://doi.org/10.1016/j.dss.2005.07.004 +Nikolaos D. Goumagias,A decision support model for tax revenue collection in Greece.,2012,53,Decision Support Systems,1,db/journals/dss/dss53.html#GoumagiasHS12,https://doi.org/10.1016/j.dss.2011.12.006 +Raz Lin,Training with automated agents improves people's behavior in negotiation and coordination tasks.,2014,60,Decision Support Systems,,db/journals/dss/dss60.html#LinGKM14,https://doi.org/10.1016/j.dss.2013.05.015 +Robert W. Blanning,A relational framework for join implementation in model management systems.,1985,1,Decision Support Systems,1,db/journals/dss/dss1.html#Blanning85,https://doi.org/10.1016/0167-9236(85)90198-8 +Xin Fu,Designing an intelligent decision support system for effective negotiation pricing: A systematic and learning approach.,2017,96,Decision Support Systems,,db/journals/dss/dss96.html#FuZLWXF17,https://doi.org/10.1016/j.dss.2017.02.003 +Kexin Zhao,Predicting users' continuance intention in virtual communities: The dual intention-formation processes.,2013,55,Decision Support Systems,4,db/journals/dss/dss55.html#ZhaoSZ13,https://doi.org/10.1016/j.dss.2012.12.026 +Hsiu-Yu Liao,Virtual friend recommendations in virtual worlds.,2015,69,Decision Support Systems,,db/journals/dss/dss69.html#LiaoCL15,https://doi.org/10.1016/j.dss.2014.11.005 +Jan Claes,The Structured Process Modeling Method (SPMM) what is the best way for me to construct a process model?,2017,100,Decision Support Systems,,db/journals/dss/dss100.html#ClaesVGGP17,https://doi.org/10.1016/j.dss.2017.02.004 +Rui Chen 0002,Members' site use continuance on Facebook: Examining the role of relational capital.,2016,90,Decision Support Systems,,db/journals/dss/dss90.html#ChenSR16,https://doi.org/10.1016/j.dss.2016.07.001 +Petri A. Jokinen,Visualization of multivariate processes using principal component analysis and nonlinear inverse modelling.,1994,11,Decision Support Systems,1,db/journals/dss/dss11.html#Jokinen94,https://doi.org/10.1016/0167-9236(94)90065-5 +Shana Dardan,An application of the learning curve and the nonconstant-growth dividend model: IT investment valuations at Intel® Corporation.,2006,41,Decision Support Systems,4,db/journals/dss/dss41.html#DardanBS06,https://doi.org/10.1016/j.dss.2004.10.004 +Vincent T'Kindt,The e-OCEA project: towards an Internet decision system for scheduling problems.,2005,40,Decision Support Systems,2,db/journals/dss/dss40.html#TkindtBBLMNPT05,https://doi.org/10.1016/j.dss.2004.04.001 +Balaji Padmanabhan,Knowledge refinement based on the discovery of unexpected patterns in data mining.,2002,33,Decision Support Systems,3,db/journals/dss/dss33.html#PadmanabhanT02,https://doi.org/10.1016/S0167-9236(02)00018-0 +I. Contreras,Emphasizing the rank positions in a distance-based aggregation procedure.,2011,51,Decision Support Systems,1,db/journals/dss/dss51.html#Contreras11,https://doi.org/10.1016/j.dss.2010.12.012 +Ibrahim Cil,A new collaborative system framework based on a multiple perspective approach: InteliTeam.,2005,39,Decision Support Systems,4,db/journals/dss/dss39.html#CilAY05,https://doi.org/10.1016/j.dss.2004.03.007 +Taracad Sivasankaran,Logic-based formula management strategies in an actuarial consulting system.,1985,1,Decision Support Systems,3,db/journals/dss/dss1.html#SivasankaranJ85,https://doi.org/10.1016/0167-9236(85)90244-1 +Dorit Nevo,Organizational memory information systems: a transactive memory approach.,2005,39,Decision Support Systems,4,db/journals/dss/dss39.html#NevoW05,https://doi.org/10.1016/j.dss.2004.03.002 +Kunihiko Higa,An approach to improving the maintainability of existing rule bases.,1996,18,Decision Support Systems,1,db/journals/dss/dss18.html#Higa96,https://doi.org/10.1016/0167-9236(96)00015-2 +James C. Moore,A model of decision-making with sequential information-acquisition (part 2).,1987,3,Decision Support Systems,1,db/journals/dss/dss3.html#MooreW87,https://doi.org/10.1016/0167-9236(87)90035-2 +Jae-Hyeon Ahn,Assessing the contribution of knowledge to business performance: the KP3 methodology.,2004,36,Decision Support Systems,4,db/journals/dss/dss36.html#AhnC04,https://doi.org/10.1016/S0167-9236(03)00029-0 +Ming Lei,DEA analysis of FDI attractiveness for sustainable development: Evidence from Chinese provinces.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#LeiZDT13,https://doi.org/10.1016/j.dss.2012.10.053 +Mao-Jiun J. Wang,A decision support system for robot selection.,1991,7,Decision Support Systems,3,db/journals/dss/dss7.html#WangSH91,https://doi.org/10.1016/0167-9236(91)90044-C +Rong-Fuh Day,Examining the validity of the Needleman-Wunsch algorithm in identifying decision strategy with eye-movement data.,2010,49,Decision Support Systems,4,db/journals/dss/dss49.html#Day10,https://doi.org/10.1016/j.dss.2010.05.001 +Annette C. Easton,Interactive versus stand-alone group decision support systems for stakeholder identification and assumption surfacing in small groups.,1992,8,Decision Support Systems,2,db/journals/dss/dss8.html#EastonVN92,https://doi.org/10.1016/0167-9236(92)90006-B +Joa Sang Lim,Judgmental forecasting with interactive forecasting support systems.,1996,16,Decision Support Systems,4,db/journals/dss/dss16.html#LimO96,https://doi.org/10.1016/0167-9236(95)00009-7 +Ying Liu 0004,Workflow simulation for operational decision support using event graph through process mining.,2012,52,Decision Support Systems,3,db/journals/dss/dss52.html#LiuZLJ12,https://doi.org/10.1016/j.dss.2011.11.003 +Uladzimir Radkevitch,Portfolios of buyer-supplier exchange relationships in an online marketplace for IT services.,2009,47,Decision Support Systems,4,db/journals/dss/dss47.html#RadkevitchHK09,https://doi.org/10.1016/j.dss.2009.05.007 +Robert T. H. Chi,Distributed intelligent executive information systems.,1995,14,Decision Support Systems,2,db/journals/dss/dss14.html#ChiT95,https://doi.org/10.1016/0167-9236(94)00006-E +Hailiang Chen,Exploring optimization of semantic relationship graph for multi-relational Bayesian classification.,2009,48,Decision Support Systems,1,db/journals/dss/dss48.html#ChenLHYH09,https://doi.org/10.1016/j.dss.2009.07.004 +Thomas L. Dean,Handling shared resources in a temporal data base management system.,1986,2,Decision Support Systems,2,db/journals/dss/dss2.html#Dean86,https://doi.org/10.1016/0167-9236(86)90091-6 +William E. Remus,Anchor-and-adjustment behaviour in a dynamic decision environment.,1995,15,Decision Support Systems,1,db/journals/dss/dss15.html#RemusK95,https://doi.org/10.1016/0167-9236(94)00051-S +Beihong Jin,Specifying and detecting spatio-temporal events in the internet of things.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#JinZHCY13,https://doi.org/10.1016/j.dss.2013.01.027 +Desheng Wu,Disaster early warning and damage assessment analysis using social media data and geo-location information.,2018,111,Decision Support Systems,,db/journals/dss/dss111.html#WuC18,https://doi.org/10.1016/j.dss.2018.04.005 +P. Geerts,Ordered logic: defeasible reasoning for multiple agents.,1994,11,Decision Support Systems,2,db/journals/dss/dss11.html#GeertsVN94,https://doi.org/10.1016/0167-9236(94)90030-2 +Ross R. Farrell,A relational database approach to a linear programming-based decision support system for production planning in secondary wood product manufacturing.,2005,40,Decision Support Systems,2,db/journals/dss/dss40.html#FarrellM05,https://doi.org/10.1016/j.dss.2004.02.001 +Jun Wang 0002,Artificial neural networks versus natural neural networks: A connectionist paradigm for preference assessment.,1994,11,Decision Support Systems,5,db/journals/dss/dss11.html#Wang94,https://doi.org/10.1016/0167-9236(94)90016-7 +Robert P. Schumaker,Evaluating sentiment in financial news articles.,2012,53,Decision Support Systems,3,db/journals/dss/dss53.html#SchumakerZHC12,https://doi.org/10.1016/j.dss.2012.03.001 +T. C. Edwin Cheng,Adoption of internet banking: An empirical study in Hong Kong.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#ChengLY06,https://doi.org/10.1016/j.dss.2006.01.002 +Wendy Hui,Economics of shareware: How do uncertainty and piracy affect shareware quality and brand premium?,2008,44,Decision Support Systems,3,db/journals/dss/dss44.html#HuiYT08,https://doi.org/10.1016/j.dss.2007.07.009 +Yabing Jiang,Integrated capacity and marketing incentive contracting for capital-intensive service systems.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#JiangS11,https://doi.org/10.1016/j.dss.2011.01.019 +Donald E. Brown,Conflicting information integration for decision support.,1986,2,Decision Support Systems,4,db/journals/dss/dss2.html#BrownD86,https://doi.org/10.1016/0167-9236(86)90003-5 +Edward Bernroider,Profile distance method - a multi-attribute decision making approach for information system investments.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#BernroiderS06,https://doi.org/10.1016/j.dss.2005.02.006 +Pengzhu Zhang,Frame-based argumentation for group decision task generation and identification.,2005,39,Decision Support Systems,4,db/journals/dss/dss39.html#ZhangSC05,https://doi.org/10.1016/j.dss.2004.03.006 +Andrés Montoyo,Subjectivity and sentiment analysis: An overview of the current state of the area and envisaged developments.,2012,53,Decision Support Systems,4,db/journals/dss/dss53.html#MontoyoMB12,https://doi.org/10.1016/j.dss.2012.05.022 +Partha Saha,A knowledge based scheme for risk assessment in loan processing by banks.,2016,84,Decision Support Systems,,db/journals/dss/dss84.html#SahaBM16,https://doi.org/10.1016/j.dss.2016.02.002 +Chong (Alex) Wang,Sampling of information goods.,2009,48,Decision Support Systems,1,db/journals/dss/dss48.html#WangZ09,https://doi.org/10.1016/j.dss.2009.05.011 +Ravi Bapna,Comparative analysis of multi-item online auctions: evidence from the laboratory.,2001,32,Decision Support Systems,2,db/journals/dss/dss32.html#BapnaGG01,https://doi.org/10.1016/S0167-9236(01)00107-5 +Ningrong Lei,A Decision Support System for market-driven product positioning and design.,2015,69,Decision Support Systems,,db/journals/dss/dss69.html#LeiM15,https://doi.org/10.1016/j.dss.2014.11.010 +Gabriella Laatikainen,Role of acquisition intervals in private and public cloud storage costs.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#LaatikainenMT14,https://doi.org/10.1016/j.dss.2013.09.020 +Dennis Eilers,Intelligent trading of seasonal effects: A decision support algorithm based on reinforcement learning.,2014,64,Decision Support Systems,,db/journals/dss/dss64.html#EilersDMB14,https://doi.org/10.1016/j.dss.2014.04.011 +Kathrin Figl,A study on the effects of routing symbol design on process model comprehension.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#FiglRM13,https://doi.org/10.1016/j.dss.2012.10.037 +Radhika Santhanam,An empirical investigation of ODSS impact on individuals and organizations.,2000,30,Decision Support Systems,1,db/journals/dss/dss30.html#SanthanamGG00,https://doi.org/10.1016/S0167-9236(00)00089-0 +Hemant K. Bhargava,Special issue of Decision Support Systems on web-based decision support.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#BhargavaPS07,https://doi.org/10.1016/j.dss.2005.07.006 +Robert J. Kauffman,Are online auction markets efficient? An empirical study of market liquidity and abnormal returns.,2009,48,Decision Support Systems,1,db/journals/dss/dss48.html#KauffmanSW09,https://doi.org/10.1016/j.dss.2009.05.009 +Melody Y. Kiang,An extended self-organizing map network for market segmentation - a telecommunication example.,2006,42,Decision Support Systems,1,db/journals/dss/dss42.html#KiangHF06,https://doi.org/10.1016/j.dss.2004.09.012 +Tung X. Bui,Design considerations for a virtual information center for humanitarian assistance/disaster relief using workflow modeling.,2001,31,Decision Support Systems,2,db/journals/dss/dss31.html#BuiS01,https://doi.org/10.1016/S0167-9236(00)00129-9 +Anna Lukkarinen,Success drivers of online equity crowdfunding campaigns.,2016,87,Decision Support Systems,,db/journals/dss/dss87.html#LukkarinenTWW16,https://doi.org/10.1016/j.dss.2016.04.006 +Olivia R. Liu Sheng,Automated learning of patient image retrieval knowledge: neural networks versus inductive decision trees.,2000,30,Decision Support Systems,2,db/journals/dss/dss30.html#ShengWHC00,https://doi.org/10.1016/S0167-9236(00)00092-0 +Salvatore Corrente,"Erratum to ""Multiple Criteria Hierarchy Process in Robust Ordinal Regression"" [Decis. Support Syst. 53/3 (2012) 660-674].",2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#CorrenteGS12a,https://doi.org/10.1016/j.dss.2012.08.018 +Seungkyoon Shin,Denormalization strategies for data retrieval from data warehouses.,2006,42,Decision Support Systems,1,db/journals/dss/dss42.html#ShinS06,https://doi.org/10.1016/j.dss.2004.12.004 +Balaji Padmanabhan,Unexpectedness as a measure of interestingness in knowledge discovery.,1999,27,Decision Support Systems,3,db/journals/dss/dss27.html#PadmanabhanT99,https://doi.org/10.1016/S0167-9236(99)00053-6 +Nan Xiao,Factors influencing online health information search: An empirical analysis of a national cancer-related survey.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#XiaoSRU14,https://doi.org/10.1016/j.dss.2012.10.047 +Jean Couillard,A decision support system for vehicle fleet planning.,1993,9,Decision Support Systems,2,db/journals/dss/dss9.html#Couillard93,https://doi.org/10.1016/0167-9236(93)90009-R +Ling Chen 0004,Personal health indexing based on medical examinations: A data mining approach.,2016,81,Decision Support Systems,,db/journals/dss/dss81.html#ChenLYKSHH16,https://doi.org/10.1016/j.dss.2015.10.008 +Xiao-Bai Li,Pricing and disseminating customer data with privacy awareness.,2014,59,Decision Support Systems,,db/journals/dss/dss59.html#LiR14,https://doi.org/10.1016/j.dss.2013.10.006 +Zhongming Ma,Discovering company revenue relations from news: A network approach.,2009,47,Decision Support Systems,4,db/journals/dss/dss47.html#MaSP09,https://doi.org/10.1016/j.dss.2009.04.007 +Sebastián Maldonado,Integrated framework for profit-based feature selection and SVM classification in credit scoring.,2017,104,Decision Support Systems,,db/journals/dss/dss104.html#MaldonadoBLP17,https://doi.org/10.1016/j.dss.2017.10.007 +Qiang Ye,Learning from other buyers: The effect of purchase history records in online marketplaces.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#YeCF13,https://doi.org/10.1016/j.dss.2012.11.007 +J. Leon Zhao,Schema coordination in federated database management: a comparison with schema integration.,1997,20,Decision Support Systems,3,db/journals/dss/dss20.html#Zhao97,https://doi.org/10.1016/S0167-9236(97)00005-5 +Rajhans Mishra,A web recommendation system considering sequential information.,2015,75,Decision Support Systems,,db/journals/dss/dss75.html#MishraKB15,https://doi.org/10.1016/j.dss.2015.04.004 +Arun Sen,Introduction: DSS on model formulation.,1996,17,Decision Support Systems,4,db/journals/dss/dss17.html#SenV96,https://doi.org/10.1016/0167-9236(96)00002-4 +Ronald M. Lee,Database inferencing for decision support.,1985,1,Decision Support Systems,1,db/journals/dss/dss1.html#Lee85,https://doi.org/10.1016/0167-9236(85)90197-6 +Marianela Garcia Lozano,Tracking geographical locations using a geo-aware topic model for analyzing social media data.,2017,99,Decision Support Systems,,db/journals/dss/dss99.html#LozanoSB17,https://doi.org/10.1016/j.dss.2017.05.006 +ShengYun Yang,Information transparency in prediction markets.,2015,78,Decision Support Systems,,db/journals/dss/dss78.html#YangLH15,https://doi.org/10.1016/j.dss.2015.05.009 +Xue Bai,How e-WOM and local competition drive local retailers' decisions about daily deal offerings.,2017,101,Decision Support Systems,,db/journals/dss/dss101.html#BaiMRW17,https://doi.org/10.1016/j.dss.2017.06.003 +Leandro G. M. Alvim,Trading team composition for the intraday multistock market.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#AlvimM13,https://doi.org/10.1016/j.dss.2012.09.009 +Thin Nguyen,Kernel-based features for predicting population health indices from geocoded social media data.,2017,102,Decision Support Systems,,db/journals/dss/dss102.html#NguyenLONYPVC17,https://doi.org/10.1016/j.dss.2017.06.010 +Ray Tsaih,Forecasting S and P 500 stock index futures with a hybrid AI system.,1998,23,Decision Support Systems,2,db/journals/dss/dss23.html#TsaihHL98,https://doi.org/10.1016/S0167-9236(98)00028-1 +Yen-Hsien Lee,Nearest-neighbor-based approach to time-series classification.,2012,53,Decision Support Systems,1,db/journals/dss/dss53.html#LeeWCY12,https://doi.org/10.1016/j.dss.2011.12.014 +Obi Ogbanufe,Comparing fingerprint-based biometrics authentication versus traditional authentication methods for e-payment.,2018,106,Decision Support Systems,,db/journals/dss/dss106.html#OgbanufeK18,https://doi.org/10.1016/j.dss.2017.11.003 +Deepak Kumar,The SNePS BDI architecture.,1996,16,Decision Support Systems,1,db/journals/dss/dss16.html#Kumar96,https://doi.org/10.1016/0167-9236(94)00053-0 +Matteo Golfarelli,A characterization of hierarchical computable distance functions for data warehouse systems.,2014,62,Decision Support Systems,,db/journals/dss/dss62.html#GolfarelliT14,https://doi.org/10.1016/j.dss.2014.03.011 +Dean C. Chatfield,SISCO: An object-oriented supply chain simulation system.,2006,42,Decision Support Systems,1,db/journals/dss/dss42.html#ChatfieldHH06,https://doi.org/10.1016/j.dss.2005.02.002 +Gee-Woo Bock,The progression of online trust in the multi-channel retailer context and the role of product uncertainty.,2012,53,Decision Support Systems,1,db/journals/dss/dss53.html#BockLKK12,https://doi.org/10.1016/j.dss.2011.12.007 +Martin Bichler,An experimental analysis of multi-attribute auctions.,2000,29,Decision Support Systems,3,db/journals/dss/dss29.html#Bichler00,https://doi.org/10.1016/S0167-9236(00)00075-0 +Young U. Ryu,Defeasible deontic reasoning and its applications to normative systems.,1995,14,Decision Support Systems,1,db/journals/dss/dss14.html#RyuL95,https://doi.org/10.1016/0167-9236(94)00002-A +Ting-Peng Liang,Integrating model management with data management in decision support systems.,1985,1,Decision Support Systems,3,db/journals/dss/dss1.html#Liang85,https://doi.org/10.1016/0167-9236(85)90241-6 +Yinghui (Catherine) Yang,Toward user patterns for online security: Observation time and online user identification.,2010,48,Decision Support Systems,4,db/journals/dss/dss48.html#YangP10,https://doi.org/10.1016/j.dss.2009.11.005 +Jasmien Lismont,Predicting tax avoidance by means of social network analytics.,2018,108,Decision Support Systems,,db/journals/dss/dss108.html#LismontCBGBLV18,https://doi.org/10.1016/j.dss.2018.02.001 +Yibo Wang,Leveraging deep learning with LDA-based text analytics to detect automobile insurance fraud.,2018,105,Decision Support Systems,,db/journals/dss/dss105.html#WangX18,https://doi.org/10.1016/j.dss.2017.11.001 +Yung-Ming Li,Pricing schemes for digital content with DRM mechanisms.,2009,47,Decision Support Systems,4,db/journals/dss/dss47.html#LiL09,https://doi.org/10.1016/j.dss.2009.05.015 +Pieter W. G. Bots,An environment to support problem solving.,1987,3,Decision Support Systems,3,db/journals/dss/dss3.html#BotsS87,https://doi.org/10.1016/0167-9236(87)90177-1 +Ying-Ju Chen,Optimal mediated auctions with endogenous participation.,2013,54,Decision Support Systems,3,db/journals/dss/dss54.html#Chen13a,https://doi.org/10.1016/j.dss.2012.12.002 +Zhisheng Wang,Saliency effects of online reviews embedded in the description on sales: Moderating role of reputation.,2016,87,Decision Support Systems,,db/journals/dss/dss87.html#WangLYL16,https://doi.org/10.1016/j.dss.2016.04.008 +J. Todd Hamill,Evaluating information assurance strategies.,2005,39,Decision Support Systems,3,db/journals/dss/dss39.html#HamillDK05,https://doi.org/10.1016/j.dss.2003.11.004 +Jackie Rees,Leadership and group search in group decision support systems.,2000,30,Decision Support Systems,1,db/journals/dss/dss30.html#ReesK00,https://doi.org/10.1016/S0167-9236(00)00090-7 +Michael Bieber,On integrating hypermedia into decision support and other information systems.,1995,14,Decision Support Systems,3,db/journals/dss/dss14.html#Bieber95,https://doi.org/10.1016/0167-9236(93)E0026-A +Bernd Heinrich,Assessing data quality - A probability-based metric for semantic consistency.,2018,110,Decision Support Systems,,db/journals/dss/dss110.html#HeinrichKSW18,https://doi.org/10.1016/j.dss.2018.03.011 +Tridas Mukhopadhyay,Assessing the impact of information technology on labor productivity A field study.,1997,19,Decision Support Systems,2,db/journals/dss/dss19.html#MukhopadhyayLM97,https://doi.org/10.1016/S0167-9236(96)00044-9 +Adam Wierzbicki,Improving computational trust representation based on Internet auction traces.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#WierzbickiKNAD13,https://doi.org/10.1016/j.dss.2012.09.016 +Yuh-Jen Chen,Development of a method for ontology-based empirical knowledge representation and reasoning.,2010,50,Decision Support Systems,1,db/journals/dss/dss50.html#Chen10,https://doi.org/10.1016/j.dss.2010.02.010 +Youwei Wang,Website browsing aid: A navigation graph-based recommendation system.,2008,45,Decision Support Systems,3,db/journals/dss/dss45.html#WangDY08,https://doi.org/10.1016/j.dss.2007.05.006 +Aleck C. H. Lin,Understanding web enjoyment experiences and informal learning: A study in a museum context.,2012,53,Decision Support Systems,4,db/journals/dss/dss53.html#LinFG12,https://doi.org/10.1016/j.dss.2012.05.020 +Ozgur Turetken,Development of a fisheye-based information search processing aid (FISPA) for managing information overload in the web environment.,2004,37,Decision Support Systems,3,db/journals/dss/dss37.html#TuretkenS04,https://doi.org/10.1016/S0167-9236(03)00047-2 +Carlos Serrano-Cinca,Measuring DEA efficiency in Internet companies.,2005,38,Decision Support Systems,4,db/journals/dss/dss38.html#Serrano-CincaFM05,https://doi.org/10.1016/j.dss.2003.08.004 +Kwai-Sang Chin,Failure mode and effects analysis by data envelopment analysis.,2009,48,Decision Support Systems,1,db/journals/dss/dss48.html#ChinWPY09,https://doi.org/10.1016/j.dss.2009.08.005 +Ling Zhao 0001,Enhancing perceived interactivity through network externalities: An empirical study on micro-blogging service satisfaction and continuance intention.,2012,53,Decision Support Systems,4,db/journals/dss/dss53.html#ZhaoL12,https://doi.org/10.1016/j.dss.2012.05.019 +Aysegül Engin,Information representation in decision making: The impact of cognitive style and depletion effects.,2017,103,Decision Support Systems,,db/journals/dss/dss103.html#EnginV17,https://doi.org/10.1016/j.dss.2017.09.007 +Jian Ma,Type and inheritance theory for model management.,1997,19,Decision Support Systems,1,db/journals/dss/dss19.html#Ma97,https://doi.org/10.1016/S0167-9236(96)00052-8 +Waiman Cheung,A metadatabase-enabled executive information system (Part B): Methods for dynamic multidimensional data analysis.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#CheungB06a,https://doi.org/10.1016/j.dss.2006.01.008 +Ziang Li,An ontology-based Web mining method for unemployment rate prediction.,2014,66,Decision Support Systems,,db/journals/dss/dss66.html#LiXZL14,https://doi.org/10.1016/j.dss.2014.06.007 +Anuj Prakash,Network optimization in supply chain: A KBGA approach.,2012,52,Decision Support Systems,2,db/journals/dss/dss52.html#PrakashCLD12,https://doi.org/10.1016/j.dss.2011.10.024 +Rui Borges Lopes,A decision-support tool for a capacitated location-routing problem.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#LopesBFS08,https://doi.org/10.1016/j.dss.2008.07.007 +Stefan Guericke,A stochastic model for the implementation of postponement strategies in global distribution networks.,2012,53,Decision Support Systems,2,db/journals/dss/dss53.html#GuerickeKSV12,https://doi.org/10.1016/j.dss.2012.01.010 +Elena Orta,Decision-making in IT service management: a simulation based approach.,2014,66,Decision Support Systems,,db/journals/dss/dss66.html#OrtaRHG14,https://doi.org/10.1016/j.dss.2014.06.002 +Gerrit H. van Bruggen,Prediction Markets as institutional forecasting support systems.,2010,49,Decision Support Systems,4,db/journals/dss/dss49.html#BruggenSLS10,https://doi.org/10.1016/j.dss.2010.05.002 +Michael Siering,Disentangling consumer recommendations: Explaining and predicting airline recommendations based on online reviews.,2018,107,Decision Support Systems,,db/journals/dss/dss107.html#SieringDJ18,https://doi.org/10.1016/j.dss.2018.01.002 +Hsing K. Cheng,Optimal internal pricing and backup capacity of computer systems subject to breakdowns.,1997,19,Decision Support Systems,2,db/journals/dss/dss19.html#Cheng97,https://doi.org/10.1016/S0167-9236(96)00043-7 +Trent J. Spaulding,Event sequence modeling of IT adoption in healthcare.,2013,55,Decision Support Systems,2,db/journals/dss/dss55.html#SpauldingFRV13,https://doi.org/10.1016/j.dss.2012.10.002 +Helan Liang,Business value-aware task scheduling for hybrid IaaS cloud.,2018,112,Decision Support Systems,,db/journals/dss/dss112.html#LiangDL18,https://doi.org/10.1016/j.dss.2018.05.007 +Jingquan Li,A strategic analysis of inter organizational information sharing.,2006,42,Decision Support Systems,1,db/journals/dss/dss42.html#LiSST06,https://doi.org/10.1016/j.dss.2004.12.003 +Michael Chau,A machine learning approach to web page filtering using content and structure analysis.,2008,44,Decision Support Systems,2,db/journals/dss/dss44.html#ChauC08,https://doi.org/10.1016/j.dss.2007.06.002 +Saisakul Chernbumroong,A practical multi-sensor activity recognition system for home-based care.,2014,66,Decision Support Systems,,db/journals/dss/dss66.html#ChernbumroongCY14,https://doi.org/10.1016/j.dss.2014.06.005 +Bing Jing,Finance sourcing in a supply chain.,2014,58,Decision Support Systems,,db/journals/dss/dss58.html#JingS14,https://doi.org/10.1016/j.dss.2013.01.013 +Massimo Paolucci 0002,Allocating crude oil supply to port and refinery tanks: a simulation-based decision support system.,2002,33,Decision Support Systems,1,db/journals/dss/dss33.html#PaolucciSB02,https://doi.org/10.1016/S0167-9236(01)00133-6 +Dae-Young Choi,Personalized local internet in the location-based mobile web search.,2007,43,Decision Support Systems,1,db/journals/dss/dss43.html#Choi07,https://doi.org/10.1016/j.dss.2005.05.005 +Ales Popovic,Towards business intelligence systems success: Effects of maturity and culture on analytical decision making.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#PopovicHCJ12,https://doi.org/10.1016/j.dss.2012.08.017 +Thilini Ariyachandra,Key organizational factors in data warehouse architecture selection.,2010,49,Decision Support Systems,2,db/journals/dss/dss49.html#AriyachandraW10,https://doi.org/10.1016/j.dss.2010.02.006 +Sabine Matook,Measuring the performance of electronic marketplaces: An external goal approach study.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#Matook13,https://doi.org/10.1016/j.dss.2012.10.032 +Hossein Haghighat,The role of market pricing mechanism under imperfect competition.,2008,45,Decision Support Systems,2,db/journals/dss/dss45.html#HaghighatSK08,https://doi.org/10.1016/j.dss.2007.12.011 +Robert G. Jeroslow,Spatial imbeddings for linear and for logic structures.,1988,4,Decision Support Systems,1,db/journals/dss/dss4.html#Jeroslow88,https://doi.org/10.1016/0167-9236(88)90098-X +Tetsuya Shimokawa,A brain information-aided intelligent investment system.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#ShimokawaKMM12,https://doi.org/10.1016/j.dss.2012.05.041 +Lawrence A. West Jr.,Metadata as a knowledge management tool: supporting intelligent agent and end user access to spatial data.,2002,32,Decision Support Systems,3,db/journals/dss/dss32.html#WestH02,https://doi.org/10.1016/S0167-9236(01)00102-6 +Vasant Dhar,A truth maintenance system for supporting constraint-based reasoning.,1989,5,Decision Support Systems,4,db/journals/dss/dss5.html#Dhar89,https://doi.org/10.1016/0167-9236(89)90017-1 +Raymond G. Hunt,Propaedeutics of decision-making: Supporting managerial learning and innovation.,1986,2,Decision Support Systems,2,db/journals/dss/dss2.html#HuntS86,https://doi.org/10.1016/0167-9236(86)90090-4 +Gary S. C. Pan,Examining the coalition dynamics affecting IS project abandonment decision-making.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#PanP06,https://doi.org/10.1016/j.dss.2005.03.001 +James M. Bloodgood,Understanding the influence of organizational change strategies on information technology and knowledge management strategies.,2001,31,Decision Support Systems,1,db/journals/dss/dss31.html#BloodgoodS01,https://doi.org/10.1016/S0167-9236(00)00119-6 +Roberto Pinto,Managing supplier delivery reliability risk under limited information: Foundations for a human-in-the-loop DSS.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#PintoMT13,https://doi.org/10.1016/j.dss.2012.10.033 +Mehdi Ghods,Contributors to quality during software maintenance.,1998,23,Decision Support Systems,4,db/journals/dss/dss23.html#GhodsN98,https://doi.org/10.1016/S0167-9236(98)00051-7 +Hüseyin Selçuk Kiliç,Development of a hybrid methodology for ERP system selection: The case of Turkish Airlines.,2014,66,Decision Support Systems,,db/journals/dss/dss66.html#KilicZD14,https://doi.org/10.1016/j.dss.2014.06.011 +Yong Hu,Software project risk analysis using Bayesian networks with causality constraints.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#HuZNCL13,https://doi.org/10.1016/j.dss.2012.11.001 +Wooju Kim,UNIK-OPT/NN Neural network based adaptive optimal controller on optimization models.,1996,18,Decision Support Systems,1,db/journals/dss/dss18.html#KimL96,https://doi.org/10.1016/0167-9236(96)00017-6 +Tomer Geva,Empirical evaluation of an automated intraday stock recommendation system incorporating both market data and textual news.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#GevaZ14,https://doi.org/10.1016/j.dss.2013.09.013 +Tamás Rapcsák,Evaluation of tenders in information technology.,2000,30,Decision Support Systems,1,db/journals/dss/dss30.html#RapcsakSTK00,https://doi.org/10.1016/S0167-9236(00)00078-6 +R. Kelly Rainer Jr.,What does it take for successful executive information systems?,1995,14,Decision Support Systems,2,db/journals/dss/dss14.html#RainerW95,https://doi.org/10.1016/0167-9236(94)00008-G +Ing-Long Wu,Model management system for IRT-based test construction decision support system.,2000,27,Decision Support Systems,4,db/journals/dss/dss27.html#Wu00,https://doi.org/10.1016/S0167-9236(99)00047-0 +Xue Bai,A decision methodology for managing operational efficiency and information disclosure risk in healthcare processes.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#BaiGNZ14,https://doi.org/10.1016/j.dss.2012.10.046 +Michael V. Mannino,A framework for data warehouse refresh policies.,2006,42,Decision Support Systems,1,db/journals/dss/dss42.html#ManninoW06,https://doi.org/10.1016/j.dss.2004.11.002 +Sabiölla Hosseini,Mindfully going omni-channel: An economic decision model for evaluating omni-channel strategies.,2018,109,Decision Support Systems,,db/journals/dss/dss109.html#HosseiniMRW18,https://doi.org/10.1016/j.dss.2018.01.010 +Eunjin Kim,An economic analysis of customer selection and leveraging strategies in a market where network externalities exist.,2007,44,Decision Support Systems,1,db/journals/dss/dss44.html#KimL07,https://doi.org/10.1016/j.dss.2007.03.006 +Yi Sun,Syndicating Web Services: A QoS and user-driven approach.,2007,43,Decision Support Systems,1,db/journals/dss/dss43.html#SunHL07,https://doi.org/10.1016/j.dss.2006.09.011 +Hsin Hsin Chang,An examination of negative e-WOM adoption: Brand commitment as a moderator.,2014,59,Decision Support Systems,,db/journals/dss/dss59.html#ChangW14,https://doi.org/10.1016/j.dss.2013.11.008 +Nivedita Mukherji,A decision support model for optimal timing of investments in information technology upgrades.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#MukherjiRT06,https://doi.org/10.1016/j.dss.2006.02.013 +Hyun B. Eom,DSS Applications developments research: Leading institutions and most frequent contributors (1971 - April 1988).,1990,6,Decision Support Systems,3,db/journals/dss/dss6.html#EomL90,https://doi.org/10.1016/0167-9236(90)90020-R +Yen-Liang Chen,From data to global generalized knowledge.,2012,52,Decision Support Systems,2,db/journals/dss/dss52.html#ChenWC12,https://doi.org/10.1016/j.dss.2011.08.005 +Sulin Ba,Building trust in online auction markets through an economic incentive mechanism.,2003,35,Decision Support Systems,3,db/journals/dss/dss35.html#BaWZ03,https://doi.org/10.1016/S0167-9236(02)00074-X +Jin Baek Kim,A Web Services-enabled marketplace architecture for negotiation process management.,2005,40,Decision Support Systems,1,db/journals/dss/dss40.html#KimS05,https://doi.org/10.1016/j.dss.2004.04.005 +Long Pham,NegotiAuction: An experimental study.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#PhamZST13,https://doi.org/10.1016/j.dss.2013.06.011 +K. O. Willis,Multi-objective simulation optimization through search heuristics and relational database analysis.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#WillisJ08,https://doi.org/10.1016/j.dss.2008.06.012 +Lauri Puro,Bidding strategies for real-life small loan auctions.,2011,51,Decision Support Systems,1,db/journals/dss/dss51.html#PuroTWW11,https://doi.org/10.1016/j.dss.2010.11.016 +Michael Reusens,A note on explicit versus implicit information for job recommendation.,2017,98,Decision Support Systems,,db/journals/dss/dss98.html#ReusensLBS17,https://doi.org/10.1016/j.dss.2017.04.002 +Rita Almeida Ribeiro,Hybrid assessment method for software engineering decisions.,2011,51,Decision Support Systems,1,db/journals/dss/dss51.html#RibeiroMBP11,https://doi.org/10.1016/j.dss.2010.12.009 +Sang Won Yoon,Demand and capacity sharing decisions and protocols in a collaborative network of enterprises.,2010,49,Decision Support Systems,4,db/journals/dss/dss49.html#YoonN10,https://doi.org/10.1016/j.dss.2010.05.005 +Weiguo Fan,On linear mixture of expert approaches to information retrieval.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#FanGP06a,https://doi.org/10.1016/j.dss.2004.11.014 +Winston T. Lin,The business value of information technology and inputs substitution: The productivity paradox revisited.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#LinS06,https://doi.org/10.1016/j.dss.2005.10.011 +Stephan Olariu,A probabilistic model of integration.,2008,45,Decision Support Systems,4,db/journals/dss/dss45.html#OlariuN08,https://doi.org/10.1016/j.dss.2007.12.010 +Reza Barkhi,Decision Support System induced guidance for model formulation and solution.,2005,40,Decision Support Systems,2,db/journals/dss/dss40.html#BarkhiRBF05,https://doi.org/10.1016/j.dss.2003.12.006 +Sutirtha Chatterjee,Examining the success factors for mobile work in healthcare: A deductive study.,2009,46,Decision Support Systems,3,db/journals/dss/dss46.html#ChatterjeeCSSL09,https://doi.org/10.1016/j.dss.2008.11.003 +Madan G. Singh,A group decision tool for combining subjective estimates based on an optimisation approach.,1992,8,Decision Support Systems,6,db/journals/dss/dss8.html#SinghBC92,https://doi.org/10.1016/0167-9236(92)90046-R +Graeme Horsman,A case-based reasoning method for locating evidence during digital forensic device triage.,2014,61,Decision Support Systems,,db/journals/dss/dss61.html#HorsmanLV14,https://doi.org/10.1016/j.dss.2014.01.007 +Ramarathnam Ravichandran,A decision support system for stochastic cost-volume-profit analysis.,1993,10,Decision Support Systems,4,db/journals/dss/dss10.html#Ravichandran93,https://doi.org/10.1016/0167-9236(93)90069-F +,Sentiment analysis in decision sciences research: An illustration to IT governance.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#CaoTY13,https://doi.org/10.1016/j.dss.2012.10.026 +Punit Ahluwalia,Composite quality of service and decision making perspectives in wireless networks.,2009,46,Decision Support Systems,2,db/journals/dss/dss46.html#AhluwaliaV09,https://doi.org/10.1016/j.dss.2008.10.003 +Christoph Willing,Moving in time and space - Location intelligence for carsharing decision support.,2017,99,Decision Support Systems,,db/journals/dss/dss99.html#WillingKBN17,https://doi.org/10.1016/j.dss.2017.05.005 +Michael Chau,Using 3D virtual environments to facilitate students in constructivist learning.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#ChauWWLCLCCS13,https://doi.org/10.1016/j.dss.2013.05.009 +William E. Spangler,A model of distributed knowledge and action in complex systems.,2001,31,Decision Support Systems,1,db/journals/dss/dss31.html#SpanglerP01,https://doi.org/10.1016/S0167-9236(00)00122-6 +António Palma-dos-Reis,Designing personalized intelligent financial decision support systems.,1999,26,Decision Support Systems,1,db/journals/dss/dss26.html#Palma-dos-ReisZ99,https://doi.org/10.1016/S0167-9236(99)00027-5 +Yauheniya Shynkevich,Forecasting movements of health-care stock prices based on different categories of news articles using multiple kernel learning.,2016,85,Decision Support Systems,,db/journals/dss/dss85.html#ShynkevichMCB16,https://doi.org/10.1016/j.dss.2016.03.001 +Kuan-Pin Lin,Causal reasoning in econometric models.,1995,15,Decision Support Systems,2,db/journals/dss/dss15.html#LinF95,https://doi.org/10.1016/0167-9236(94)00035-Q +Steve Muylle,Online support for business processes by electronic intermediaries.,2008,45,Decision Support Systems,4,db/journals/dss/dss45.html#MuylleB08,https://doi.org/10.1016/j.dss.2008.02.005 +Reza Barkhi,The influence of communication mode and incentive structure on GDSS process and outcomes.,2004,37,Decision Support Systems,2,db/journals/dss/dss37.html#BarkhiJP04,https://doi.org/10.1016/S0167-9236(03)00023-X +Fangzhao Wu,Towards building a high-quality microblog-specific Chinese sentiment lexicon.,2016,87,Decision Support Systems,,db/journals/dss/dss87.html#WuHSL16,https://doi.org/10.1016/j.dss.2016.04.007 +Richard Yuewen Liu,Negative price premium effect in online market - The impact of competition and buyer informativeness on the pricing strategies of sellers with different reputation levels.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#LiuFW12,https://doi.org/10.1016/j.dss.2012.08.013 +Cuiqing Jiang,Hybrid collaborative filtering for high-involvement products: A solution to opinion sparsity and dynamics.,2015,79,Decision Support Systems,,db/journals/dss/dss79.html#JiangDJLL15,https://doi.org/10.1016/j.dss.2015.09.002 +Daniel R. Dolk,An introduction to model integration and integrated modeling environments.,1993,10,Decision Support Systems,3,db/journals/dss/dss10.html#Dolk93,https://doi.org/10.1016/0167-9236(93)90062-8 +Georgios Sermpinis,Forecasting and trading the EUR/USD exchange rate with stochastic Neural Network combination and time-varying leverage.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#SermpinisDLS12,https://doi.org/10.1016/j.dss.2012.05.039 +Claudio Di Ciccio,Detecting flight trajectory anomalies and predicting diversions in freight transportation.,2016,88,Decision Support Systems,,db/journals/dss/dss88.html#CiccioACMP16,https://doi.org/10.1016/j.dss.2016.05.004 +Byung Cho Kim,Security versus convenience? An experimental study of user misperceptions of wireless internet service quality.,2012,53,Decision Support Systems,1,db/journals/dss/dss53.html#KimP12,https://doi.org/10.1016/j.dss.2011.08.006 +Pei-Fang Hsu,Integrating ERP and e-business: Resource complementarity in business value creation.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#Hsu13,https://doi.org/10.1016/j.dss.2013.06.013 +Han Yu,Filtering trust opinions through reinforcement learning.,2014,66,Decision Support Systems,,db/journals/dss/dss66.html#YuSMAL14,https://doi.org/10.1016/j.dss.2014.06.006 +Linda L. Zhang,A graph rewriting system for process platform planning.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#ZhangJ13,https://doi.org/10.1016/j.dss.2012.11.011 +Andrew Fielder,Decision support approaches for cyber security investment.,2016,86,Decision Support Systems,,db/journals/dss/dss86.html#FielderPMHS16,https://doi.org/10.1016/j.dss.2016.02.012 +John Lim,A study of group support systems and the intergroup setting.,2008,45,Decision Support Systems,3,db/journals/dss/dss45.html#LimG08,https://doi.org/10.1016/j.dss.2007.06.007 +Hemant K. Bhargava,Progress in Web-based decision support technologies.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#BhargavaPS07a,https://doi.org/10.1016/j.dss.2005.07.002 +Dimitrios A. Tsamboulas,TRANS-POL: A mediator between transportation models and decision makers' policies.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#TsamboulasM06,https://doi.org/10.1016/j.dss.2005.07.010 +Abraham Seidmann,"Introduction to the Special Issue on ""Integrating Information Systems and Operations Management"".",2014,58,Decision Support Systems,,db/journals/dss/dss58.html#SeidmannJZ14,https://doi.org/10.1016/j.dss.2012.12.040 +Marc Wennink,Towards a planning board generator.,1996,17,Decision Support Systems,3,db/journals/dss/dss17.html#WenninkS96,https://doi.org/10.1016/0167-9236(95)00032-1 +Zhongzhi Shi,MSMiner - a developing platform for OLAP.,2007,42,Decision Support Systems,4,db/journals/dss/dss42.html#ShiHHXLQJLHZ07,https://doi.org/10.1016/j.dss.2004.11.006 +Lin Lin,A decision support system for lower back pain diagnosis: Uncertainty management and clinical evaluations.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#LinHS06,https://doi.org/10.1016/j.dss.2005.10.007 +Chaang-Yung Kung,Applying Grey Relational Analysis and Grey Decision-Making to evaluate the relationship between company attributes and its financial performance - A case study of venture capital enterprises in Taiwan.,2007,43,Decision Support Systems,3,db/journals/dss/dss43.html#KungW07,https://doi.org/10.1016/j.dss.2006.12.012 +James Christopher Westland,Self-organizing executive information networks.,1992,8,Decision Support Systems,1,db/journals/dss/dss8.html#Westland92,https://doi.org/10.1016/0167-9236(92)90036-O +Michael Wolfe,Development of the city of quality: A hypertext-based group decision support system for quality function deployment.,1994,11,Decision Support Systems,3,db/journals/dss/dss11.html#Wolfe94,https://doi.org/10.1016/0167-9236(94)90078-7 +Hsing Kenneth Cheng,Optimal pricing policies of web-enabled application services.,2003,35,Decision Support Systems,3,db/journals/dss/dss35.html#ChengK03,https://doi.org/10.1016/S0167-9236(02)00073-8 +Eyup Basti,Analyzing initial public offerings' short-term performance using decision trees and SVMs.,2015,73,Decision Support Systems,,db/journals/dss/dss73.html#BastiKD15,https://doi.org/10.1016/j.dss.2015.02.011 +Nikos I. Karacapilidis,Building an agent-mediated electronic commerce system with decision analysis features.,2001,32,Decision Support Systems,1,db/journals/dss/dss32.html#KaracapilidisM01,https://doi.org/10.1016/S0167-9236(01)00100-2 +Jedid-Jah Jonker,A decision support system for direct mailing decisions.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#JonkerPP06,https://doi.org/10.1016/j.dss.2005.08.006 +Rajan Srikanth,The design of knowledge-based systems for managing Ill-structured software projects.,1989,5,Decision Support Systems,4,db/journals/dss/dss5.html#SrikanthJ89,https://doi.org/10.1016/0167-9236(89)90020-1 +Berend Wierenga,Hierarchical scaling of marketing decision support systems.,1994,12,Decision Support Systems,3,db/journals/dss/dss12.html#WierengaOHC94,https://doi.org/10.1016/0167-9236(94)90006-X +Benjamin Fabian,Secure federation of semantic information services.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#FabianKMG13,https://doi.org/10.1016/j.dss.2012.05.049 +Andrea Emilio Rizzoli,Model and data integration and re-use in environmental decision support systems.,1998,24,Decision Support Systems,2,db/journals/dss/dss24.html#RizzoliDA98,https://doi.org/10.1016/S0167-9236(98)00068-2 +Thomas A. Weber 0001,Delayed multiattribute product differentiation.,2008,44,Decision Support Systems,2,db/journals/dss/dss44.html#Weber08,https://doi.org/10.1016/j.dss.2007.06.001 +W. E. Cundiff,Database organisation: An algorithmic framework for decision support systems in APL.,1989,5,Decision Support Systems,1,db/journals/dss/dss5.html#Cundiff89,https://doi.org/10.1016/0167-9236(89)90028-6 +Chul Woo Yoo,Exploring the effect of e-WOM participation on e-Loyalty in e-commerce.,2013,55,Decision Support Systems,3,db/journals/dss/dss55.html#YooSM13,https://doi.org/10.1016/j.dss.2013.02.001 +Shuai Ding,Time-aware cloud service recommendation using similarity-enhanced collaborative filtering and ARIMA model.,2018,107,Decision Support Systems,,db/journals/dss/dss107.html#DingLWZY18,https://doi.org/10.1016/j.dss.2017.12.012 +Chung-En Yen,Decision support to customer decrement detection at the early stage for theme parks.,2017,102,Decision Support Systems,,db/journals/dss/dss102.html#YenHWW17,https://doi.org/10.1016/j.dss.2017.07.005 +Michael J. Davern,Diagnosing decision quality.,2008,45,Decision Support Systems,1,db/journals/dss/dss45.html#DavernMS08,https://doi.org/10.1016/j.dss.2007.12.012 +Mark L. DeFond,Capital markets valuation and accounting performance of Most Admired Knowledge Enterprise (MAKE) award winners.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#DeFondKMO13,https://doi.org/10.1016/j.dss.2013.07.001 +Matt Winkler,Toy safety surveillance from online reviews.,2016,90,Decision Support Systems,,db/journals/dss/dss90.html#WinklerAGE16,https://doi.org/10.1016/j.dss.2016.06.016 +Jaffar Ahmad Alalwan,Decision support capabilities of enterprise content management systems: An empirical investigation.,2014,68,Decision Support Systems,,db/journals/dss/dss68.html#AlalwanTW14,https://doi.org/10.1016/j.dss.2014.09.002 +Joung Yeon Kim,Yield management of workforce for IT service providers.,2012,53,Decision Support Systems,1,db/journals/dss/dss53.html#KimAB12,https://doi.org/10.1016/j.dss.2011.10.015 +Tom Narock,"Corrigendum to ""A provenance-based approach to semantic web service description and discovery"" [Decis. Support. Syst. (64C) (2014) 90-99].",2016,87,Decision Support Systems,,db/journals/dss/dss87.html#NarockYM16,https://doi.org/10.1016/j.dss.2016.04.002 +Oliver Hinz,Managing information diffusion in Name-Your-Own-Price auctions.,2010,49,Decision Support Systems,4,db/journals/dss/dss49.html#HinzS10,https://doi.org/10.1016/j.dss.2010.05.008 +Peter Kaomea,A flexible information manufacturing system for the generation of tailored information products.,1997,20,Decision Support Systems,4,db/journals/dss/dss20.html#KaomeaP97,https://doi.org/10.1016/S0167-9236(96)00067-X +Marc J. Schniederjans,A heuristic job scheduling decision support system A case study.,1996,18,Decision Support Systems,2,db/journals/dss/dss18.html#SchniederjansC96,https://doi.org/10.1016/0167-9236(96)00024-3 +Chi-San Ho,The time-varying nature of social media sentiments in modeling stock returns.,2017,101,Decision Support Systems,,db/journals/dss/dss101.html#HoDGK17,https://doi.org/10.1016/j.dss.2017.06.001 +Javier Contreras,An incentive-based mechanism for transmission asset investment.,2009,47,Decision Support Systems,1,db/journals/dss/dss47.html#ContrerasGAM09,https://doi.org/10.1016/j.dss.2008.12.005 +Seppe K. L. M. vanden Broucke,Fodina: A robust and flexible heuristic process discovery technique.,2017,100,Decision Support Systems,,db/journals/dss/dss100.html#BrouckeW17,https://doi.org/10.1016/j.dss.2017.04.005 +Mohammadreza Mousavizadeh,Effects of assurance mechanisms and consumer concerns on online purchase decisions: An empirical study.,2016,92,Decision Support Systems,,db/journals/dss/dss92.html#MousavizadehKC16,https://doi.org/10.1016/j.dss.2016.09.011 +Nihat Kasap,Provider selection and task allocation issues in networks with different QoS levels and all you can send pricing.,2007,43,Decision Support Systems,2,db/journals/dss/dss43.html#KasapAE07,https://doi.org/10.1016/j.dss.2006.10.008 +David C. Parkes,Special Issue of Decision Support Systems on the Fourth ACM Conference on Electronic Commerce.,2005,39,Decision Support Systems,1,db/journals/dss/dss39.html#Parkes05,https://doi.org/10.1016/j.dss.2004.08.002 +Hermann Krallmann,Syntactic and semantic postprocessing for speech recognition.,1991,7,Decision Support Systems,3,db/journals/dss/dss7.html#KrallmannM91,https://doi.org/10.1016/0167-9236(91)90042-A +Yuval Zak,Development and evaluation of a continuous-time Markov chain model for detecting and handling data currency declines.,2017,103,Decision Support Systems,,db/journals/dss/dss103.html#ZakE17,https://doi.org/10.1016/j.dss.2017.09.006 +Clyde W. Holsapple,Introduction.,1995,14,Decision Support Systems,3,db/journals/dss/dss14.html#HolsappleW95,https://doi.org/10.1016/0167-9236(95)90005-5 +Zhengping Wu,Price discount and capacity planning under demand postponement with opaque selling.,2015,76,Decision Support Systems,,db/journals/dss/dss76.html#WuW15,https://doi.org/10.1016/j.dss.2015.02.002 +Z. Chen,User responsibility and exception handling in decision support systems.,1992,8,Decision Support Systems,6,db/journals/dss/dss8.html#Chen92,https://doi.org/10.1016/0167-9236(92)90045-Q +Eric T. G. Wang,The influence of governance equilibrium on ERP project success.,2006,41,Decision Support Systems,4,db/journals/dss/dss41.html#WangC06,https://doi.org/10.1016/j.dss.2004.10.005 +Yong Hu,Cost-sensitive and ensemble-based prediction model for outsourced software project risk prediction.,2015,72,Decision Support Systems,,db/journals/dss/dss72.html#HuFMZNFL15,https://doi.org/10.1016/j.dss.2015.02.003 +Hua Dai,Explaining consumer satisfaction of services: The role of innovativeness and emotion in an electronic mediated environment.,2015,70,Decision Support Systems,,db/journals/dss/dss70.html#DaiLLC15,https://doi.org/10.1016/j.dss.2014.12.003 +Mary E. Schramm,An agent-based diffusion model with consumer and brand agents.,2010,50,Decision Support Systems,1,db/journals/dss/dss50.html#SchrammTSH10,https://doi.org/10.1016/j.dss.2010.08.004 +R. Kelly Rainer Jr.,The evolution of executive information system software.,1992,8,Decision Support Systems,4,db/journals/dss/dss8.html#RainerSW92,https://doi.org/10.1016/0167-9236(92)90054-S +Matt E. Thatcher,Welfare analysis of alternative patent policies for software innovations.,2006,41,Decision Support Systems,4,db/journals/dss/dss41.html#ThatcherKP06,https://doi.org/10.1016/j.dss.2004.10.009 +Yong Liu 0010,Website attributes in urging online impulse purchase: An empirical investigation on consumer perceptions.,2013,55,Decision Support Systems,3,db/journals/dss/dss55.html#LiuLH13,https://doi.org/10.1016/j.dss.2013.04.001 +Navin Kumar,Supporting mobile decision making with association rules and multi-layered caching.,2007,43,Decision Support Systems,1,db/journals/dss/dss43.html#KumarGK07,https://doi.org/10.1016/j.dss.2005.05.004 +Martijn R. Hoogeweegen,Strategizing for mass customization by playing the business networking game.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#HoogeweegenLVML06,https://doi.org/10.1016/j.dss.2005.11.007 +Jorge Castro,An empirical study of natural noise management in group recommendation systems.,2017,94,Decision Support Systems,,db/journals/dss/dss94.html#CastroTM17,https://doi.org/10.1016/j.dss.2016.09.020 +Hui Wang 0001,Data mining for financial decision making.,2004,37,Decision Support Systems,4,db/journals/dss/dss37.html#WangW04,https://doi.org/10.1016/S0167-9236(03)00090-3 +Feng Shan,Assessing the impacts of South-to-North Water Transfer Project with decision support systems.,2007,42,Decision Support Systems,4,db/journals/dss/dss42.html#ShanLDZ07,https://doi.org/10.1016/j.dss.2004.11.004 +François Marmier,A risk oriented model to assess strategic decisions in new product development projects.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#MarmierGL13,https://doi.org/10.1016/j.dss.2013.05.002 +Blanca L. Delgado-Márquez,The dynamic nature of trust transfer: Measurement and the influence of reciprocity.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#Delgado-MarquezHA12,https://doi.org/10.1016/j.dss.2012.05.008 +Paulo B. Góes,Seller heterogeneity in electronic marketplaces: A study of new and experienced sellers in eBay.,2013,56,Decision Support Systems,,db/journals/dss/dss56.html#GoesTT13,https://doi.org/10.1016/j.dss.2013.06.007 +JungHoon Ha,A secure double auction protocol against false bids.,2007,44,Decision Support Systems,1,db/journals/dss/dss44.html#HaZM07,https://doi.org/10.1016/j.dss.2007.03.009 +Der-Chiang Li,Using structure-based data transformation method to improve prediction accuracies for small data sets.,2012,52,Decision Support Systems,3,db/journals/dss/dss52.html#LiCL12,https://doi.org/10.1016/j.dss.2011.11.021 +Lara Quijano Sánchez,The BIG CHASE: A decision support system for client acquisition applied to financial networks.,2017,98,Decision Support Systems,,db/journals/dss/dss98.html#SanchezL17,https://doi.org/10.1016/j.dss.2017.04.007 +Tanguy Kervahut,An interactive-graphic environment for automatic generation of decision trees.,1996,18,Decision Support Systems,2,db/journals/dss/dss18.html#KervahutP96,https://doi.org/10.1016/0167-9236(95)00030-5 +Terry Barron,Some new results in testing for economies of scale in computing 1985 and 1988 data.,1992,8,Decision Support Systems,5,db/journals/dss/dss8.html#Barron92,https://doi.org/10.1016/0167-9236(92)90026-L +Irene S. Y. Kwan,An e-customer behavior model with online analytical mining for internet marketing planning.,2005,41,Decision Support Systems,1,db/journals/dss/dss41.html#KwanFW05,https://doi.org/10.1016/j.dss.2004.11.012 +Mohamed Khalifa,Remote learning technologies: effectiveness of hypertext and GSS.,1999,26,Decision Support Systems,3,db/journals/dss/dss26.html#KhalifaK99,https://doi.org/10.1016/S0167-9236(99)00028-7 +Jim Q. Chen,An exploratory cognitive DSS for strategic decision making.,2003,36,Decision Support Systems,2,db/journals/dss/dss36.html#ChenL03a,https://doi.org/10.1016/S0167-9236(02)00139-2 +Joey F. George,Countering the anchoring and adjustment bias with decision support systems.,2000,29,Decision Support Systems,2,db/journals/dss/dss29.html#GeorgeDA00,https://doi.org/10.1016/S0167-9236(00)00074-9 +Boray Huang,"The effects of lumpy demand and shipment size constraint: A response to ""Revisit the note on supply chain integration in vendor-managed inventory"".",2010,48,Decision Support Systems,2,db/journals/dss/dss48.html#HuangY10,https://doi.org/10.1016/j.dss.2009.08.003 +Dawn G. Gregg,Auction Advisor: an agent-based online-auction decision support system.,2006,41,Decision Support Systems,2,db/journals/dss/dss41.html#GreggW06,https://doi.org/10.1016/j.dss.2004.07.007 +Jason Deane,Ontological analysis of web surf history to maximize the click-through probability of web advertisements.,2009,47,Decision Support Systems,4,db/journals/dss/dss47.html#DeaneP09,https://doi.org/10.1016/j.dss.2009.04.001 +Mansoor Aminilari,Searching for information in a time-pressured setting: experiences with a Text-based and an Image-based decision support system.,2005,41,Decision Support Systems,1,db/journals/dss/dss41.html#AminilariP05,https://doi.org/10.1016/j.dss.2004.02.005 +Paul Jen-Hwa Hu,Predicting adequacy of vancomycin regimens: A learning-based classification approach to improving clinical decision making.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#HuWCC07,https://doi.org/10.1016/j.dss.2006.02.003 +Hui Fang 0002,Multi-faceted trust and distrust prediction for recommender systems.,2015,71,Decision Support Systems,,db/journals/dss/dss71.html#FangGZ15,https://doi.org/10.1016/j.dss.2015.01.005 +Cai-Nicolas Ziegler,Investigating interactions of trust and interest similarity.,2007,43,Decision Support Systems,2,db/journals/dss/dss43.html#ZieglerG07,https://doi.org/10.1016/j.dss.2006.11.003 +Se-Hak Chun,Transaction security investments in online marketplaces: An analytical examination of financial liabilities.,2016,92,Decision Support Systems,,db/journals/dss/dss92.html#ChunCS16,https://doi.org/10.1016/j.dss.2016.09.015 +Michael P. Bieber,On the logic of generalized hypertext.,1994,11,Decision Support Systems,2,db/journals/dss/dss11.html#BieberK94,https://doi.org/10.1016/0167-9236(94)90034-5 +Wolfgang Burgholzer,Analysing the impact of disruptions in intermodal transport networks: A micro simulation-based model.,2013,54,Decision Support Systems,4,db/journals/dss/dss54.html#BurgholzerBPJ13,https://doi.org/10.1016/j.dss.2012.05.060 +Esteban Alfaro Cortés,Bankruptcy forecasting: An empirical comparison of AdaBoost and neural networks.,2008,45,Decision Support Systems,1,db/journals/dss/dss45.html#CortesRGE08,https://doi.org/10.1016/j.dss.2007.12.002 +Peter H. Gray,A problem-solving perspective on knowledge management practices.,2001,31,Decision Support Systems,1,db/journals/dss/dss31.html#Gray01,https://doi.org/10.1016/S0167-9236(00)00121-4 +Daniel E. O'Leary,On the relationship between number of votes and sentiment in crowdsourcing ideas and comments for innovation: A case study of Canada's digital compass.,2016,88,Decision Support Systems,,db/journals/dss/dss88.html#OLeary16,https://doi.org/10.1016/j.dss.2016.05.006 +Jac M. Anthonisse,Resource-constrained project scheduling: an international exercise in DSS development.,1988,4,Decision Support Systems,2,db/journals/dss/dss4.html#AnthonisseHL88,https://doi.org/10.1016/0167-9236(88)90133-9 +Rui Chen 0002,An investigation of email processing from a risky decision making perspective.,2011,52,Decision Support Systems,1,db/journals/dss/dss52.html#ChenWHR11,https://doi.org/10.1016/j.dss.2011.05.005 +Jehoshua Eliashberg,Evolutionary approach to the development of decision support systems in the movie industry.,2009,47,Decision Support Systems,1,db/journals/dss/dss47.html#EliashbergSWW09,https://doi.org/10.1016/j.dss.2008.12.008 +Tim Chenoweth,Convincing DSS users that complex models are worth the effort.,2004,37,Decision Support Systems,1,db/journals/dss/dss37.html#ChenowethDL04,https://doi.org/10.1016/S0167-9236(03)00005-8 +Gregory Dobson,On the impact of analyzing customer information and prioritizing in a service system.,2011,51,Decision Support Systems,4,db/journals/dss/dss51.html#DobsonS11,https://doi.org/10.1016/j.dss.2011.02.006 +Sudip Bhattacharjee,An approach to identify influential building blocks and linkages in an information resource network.,2011,52,Decision Support Systems,1,db/journals/dss/dss52.html#BhattacharjeeMS11,https://doi.org/10.1016/j.dss.2011.07.006 +Jae Dong Yang,Characterization of unknown values with implicit predicate.,1991,7,Decision Support Systems,2,db/journals/dss/dss7.html#YangL91,https://doi.org/10.1016/0167-9236(91)90052-D +Leo Guelman,A decision support framework to implement optimal personalized marketing interventions.,2015,72,Decision Support Systems,,db/journals/dss/dss72.html#GuelmanGP15,https://doi.org/10.1016/j.dss.2015.01.010 +Cosmin Condea,RFID-enabled shelf replenishment with backroom monitoring in retail stores.,2012,52,Decision Support Systems,4,db/journals/dss/dss52.html#CondeaTF12,https://doi.org/10.1016/j.dss.2011.11.018 +Michael Bieber,Text editing and beyond a study in logic modeling.,1994,11,Decision Support Systems,2,db/journals/dss/dss11.html#BieberI94,https://doi.org/10.1016/0167-9236(94)90033-7 +Jae Kyu Lee,A two-stage neural network approach for ARMA model identification with ESACF.,1994,11,Decision Support Systems,5,db/journals/dss/dss11.html#LeeJ94,https://doi.org/10.1016/0167-9236(94)90019-1 +Seokjoo Andrew Chang,An analytical approach to bundling in the presence of customer transition effects.,2009,48,Decision Support Systems,1,db/journals/dss/dss48.html#ChangT09,https://doi.org/10.1016/j.dss.2009.07.002 +Peter C. Lockemann,Object-oriented information management.,1989,5,Decision Support Systems,1,db/journals/dss/dss5.html#Lockemann89,https://doi.org/10.1016/0167-9236(89)90030-4 +Chi-Jie Lu,Financial time series forecasting using independent component analysis and support vector regression.,2009,47,Decision Support Systems,2,db/journals/dss/dss47.html#LuLC09,https://doi.org/10.1016/j.dss.2009.02.001 +Ivan Mesko,Fractional piecewise linear optimization of the business process including investments.,1994,12,Decision Support Systems,3,db/journals/dss/dss12.html#MeskoM94,https://doi.org/10.1016/0167-9236(94)90005-1 +Yinghui (Catherine) Yang,Web user behavioral profiling for user identification.,2010,49,Decision Support Systems,3,db/journals/dss/dss49.html#Yang10,https://doi.org/10.1016/j.dss.2010.03.001 +Adalbert Mayer,Online social networks in economics.,2009,47,Decision Support Systems,3,db/journals/dss/dss47.html#Mayer09,https://doi.org/10.1016/j.dss.2009.02.009 +Robert L. Causey,EVID: A system for interactive defeasible reasoning.,1994,11,Decision Support Systems,2,db/journals/dss/dss11.html#Causey94,https://doi.org/10.1016/0167-9236(94)90028-0 +Nuno Carneiro,A data mining based system for credit-card fraud detection in e-tail.,2017,95,Decision Support Systems,,db/journals/dss/dss95.html#CarneiroFC17,https://doi.org/10.1016/j.dss.2017.01.002 +Sorel Reisman,Group decision program A videodisc-based group decision support system.,1992,8,Decision Support Systems,2,db/journals/dss/dss8.html#ReismanJM92,https://doi.org/10.1016/0167-9236(92)90007-C +Toshiyuki Sueyoshi,A use of DEA-DA to measure importance of R and D expenditure in Japanese information technology industry.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#SueyoshiG13,https://doi.org/10.1016/j.dss.2012.09.017 +Ing-Long Wu,The adoption of mobile healthcare by hospital's professionals: An integrative perspective.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#WuLF11,https://doi.org/10.1016/j.dss.2011.03.003 +Frederick Kaefer,The adoption of electronic data interchange: a model and practical tool for managers.,2000,30,Decision Support Systems,1,db/journals/dss/dss30.html#KaeferB00,https://doi.org/10.1016/S0167-9236(00)00087-7 +Sigi Goode,Rethinking the role of security in client satisfaction with Software-as-a-Service (SaaS) providers.,2015,70,Decision Support Systems,,db/journals/dss/dss70.html#GoodeLTJ15,https://doi.org/10.1016/j.dss.2014.12.005 +Tim Chenoweth,Automatic ARMA identification using neural networks and the extended sample autocorrelation function: a reevaluation.,2000,29,Decision Support Systems,1,db/journals/dss/dss29.html#ChenowethHL00,https://doi.org/10.1016/S0167-9236(00)00058-0 +Amir Parssian,Managerial decision support with knowledge of accuracy and completeness of the relational aggregate functions.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#Parssian06,https://doi.org/10.1016/j.dss.2005.12.005 +Michael Leyer,Would you like to know who knows? Connecting employees based on process-oriented knowledge mapping.,2016,87,Decision Support Systems,,db/journals/dss/dss87.html#LeyerSC16,https://doi.org/10.1016/j.dss.2016.05.003 +Hans W. Gottinger,Intelligent decision support systems.,1992,8,Decision Support Systems,4,db/journals/dss/dss8.html#GottingerW92,https://doi.org/10.1016/0167-9236(92)90053-R +Michael M. Delaney,An empirical study of the efficacy of a computerized negotiation support system (NSS).,1997,20,Decision Support Systems,3,db/journals/dss/dss20.html#DelaneyFP97,https://doi.org/10.1016/S0167-9236(96)00051-6 +Dan Ma,Use of RSS feeds to push online content to users.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#Ma12,https://doi.org/10.1016/j.dss.2012.09.002 +Niels Martin,Retrieving batch organisation of work insights from event logs.,2017,100,Decision Support Systems,,db/journals/dss/dss100.html#MartinSDJCV17,https://doi.org/10.1016/j.dss.2017.02.012 +Jen-Her Wu,A methodology for designing form-based decision support systems.,2004,36,Decision Support Systems,3,db/journals/dss/dss36.html#WuDLHL04,https://doi.org/10.1016/S0167-9236(02)00145-8 +Frederik Hogenboom,A Survey of event extraction methods from text for decision support systems.,2016,85,Decision Support Systems,,db/journals/dss/dss85.html#HogenboomFKJC16,https://doi.org/10.1016/j.dss.2016.02.006 +Albert Pla,eXiT*CBR.v2: Distributed case-based reasoning tool for medical prognosis.,2013,54,Decision Support Systems,3,db/journals/dss/dss54.html#PlaLGP13,https://doi.org/10.1016/j.dss.2012.12.033 +Jian Yang,Effects of a reputation feedback system on an online consumer-to-consumer auction market.,2007,44,Decision Support Systems,1,db/journals/dss/dss44.html#YangHZ07,https://doi.org/10.1016/j.dss.2007.03.005 +Stephen G. Powell,A critical review of the literature on spreadsheet errors.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#PowellBL08,https://doi.org/10.1016/j.dss.2008.06.001 +Tsan-Ming Choi,A hybrid SARIMA wavelet transform method for sales forecasting.,2011,51,Decision Support Systems,1,db/journals/dss/dss51.html#ChoiYA11,https://doi.org/10.1016/j.dss.2010.12.002 +Ye Chen,A maximum entropy approach to feature selection in knowledge-based authentication.,2008,46,Decision Support Systems,1,db/journals/dss/dss46.html#ChenL08,https://doi.org/10.1016/j.dss.2008.07.008 +Munir Mandviwalla,Collaborative Object Workspaces (COWS): exploring the integration of collaboration technology.,1999,27,Decision Support Systems,3,db/journals/dss/dss27.html#MandviwallaK99,https://doi.org/10.1016/S0167-9236(99)00049-4 +Sascha Dahl,Cooperative planning in express carrier networks - An empirical study on the effectiveness of a real-time Decision Support System.,2011,51,Decision Support Systems,3,db/journals/dss/dss51.html#DahlD11,https://doi.org/10.1016/j.dss.2011.02.018 +Jin Ki Kim,Efficiency of critical incident management systems: Instrument development and validation.,2007,44,Decision Support Systems,1,db/journals/dss/dss44.html#KimSRU07,https://doi.org/10.1016/j.dss.2007.04.002 +Michael H. Zack,The role of decision support systems in an indeterminate world.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#Zack07,https://doi.org/10.1016/j.dss.2006.09.003 +Jia Zhai,Computational intelligent hybrid model for detecting disruptive trading activity.,2017,93,Decision Support Systems,,db/journals/dss/dss93.html#ZhaiCYDL17,https://doi.org/10.1016/j.dss.2016.09.003 +Michael J. Shaw,Research opportunities in electronic commerce.,1997,21,Decision Support Systems,3,db/journals/dss/dss21.html#ShawGT97,https://doi.org/10.1016/S0167-9236(97)00025-0 +Gaurav Tewari,Personalized location-based brokering using an agent-based intermediary architecture.,2003,34,Decision Support Systems,2,db/journals/dss/dss34.html#TewariYM03,https://doi.org/10.1016/S0167-9236(02)00076-3 +Amol Dattatraya Mali,On quantified weighted MAX-SAT.,2005,40,Decision Support Systems,2,db/journals/dss/dss40.html#Mali05,https://doi.org/10.1016/j.dss.2003.12.004 +J. Christopher Westland,Transaction risk in electronic commerce.,2002,33,Decision Support Systems,1,db/journals/dss/dss33.html#Westland02,https://doi.org/10.1016/S0167-9236(02)00010-6 +Pratyush Bharati,An empirical investigation of decision-making satisfaction in web-based decision support systems.,2004,37,Decision Support Systems,2,db/journals/dss/dss37.html#BharatiC04,https://doi.org/10.1016/S0167-9236(03)00006-X +Daniel Schall 0001,A multi-criteria ranking framework for partner selection in scientific collaboration environments.,2014,59,Decision Support Systems,,db/journals/dss/dss59.html#Schall14,https://doi.org/10.1016/j.dss.2013.10.001 +Salvatore Corrente,Multiple Criteria Hierarchy Process in Robust Ordinal Regression.,2012,53,Decision Support Systems,3,db/journals/dss/dss53.html#CorrenteGS12,https://doi.org/10.1016/j.dss.2012.03.004 +Waiman Cheung,A metadatabase-enabled executive information system (Part A): A flexible and adaptable architecture.,2006,42,Decision Support Systems,3,db/journals/dss/dss42.html#CheungB06,https://doi.org/10.1016/j.dss.2006.01.005 +Bartosz Swiderski,Multistage classification by using logistic regression and neural networks for assessment of financial condition of company.,2012,52,Decision Support Systems,2,db/journals/dss/dss52.html#SwiderskiKO12,https://doi.org/10.1016/j.dss.2011.10.018 +Shin-Yuan Hung,Critical factors of hospital adoption on CRM system: Organizational and information system perspectives.,2010,48,Decision Support Systems,4,db/journals/dss/dss48.html#HungHTJ10,https://doi.org/10.1016/j.dss.2009.11.009 +Chieh-Yuan Tsai,A change detection method for sequential patterns.,2009,46,Decision Support Systems,2,db/journals/dss/dss46.html#TsaiS09,https://doi.org/10.1016/j.dss.2008.09.003 +Jeffrey May,Defining value-based objectives for ERP systems planning.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#MayDC13,https://doi.org/10.1016/j.dss.2012.12.036 +Carlos Henggeler Antunes,Managing uncertainty in decision support models foreword to the special issue.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#AntunesD07,https://doi.org/10.1016/j.dss.2006.06.007 +Sheldon Shen,Knowledge management in decision support systems.,1987,3,Decision Support Systems,1,db/journals/dss/dss3.html#Shen87,https://doi.org/10.1016/0167-9236(87)90031-5 +Han-Lin Li,Solving discrete multicriteria decision problems based on logic-based decision support systems.,1987,3,Decision Support Systems,2,db/journals/dss/dss3.html#Li87,https://doi.org/10.1016/0167-9236(87)90070-4 +Simon Véronneau,Maintaining robust decision capabilities: An integrative human-systems approach.,2007,43,Decision Support Systems,1,db/journals/dss/dss43.html#VeronneauC07,https://doi.org/10.1016/j.dss.2006.08.003 +Margaret K. Mayer,Future trends in model management systems: parallel and distributed extensions.,1998,22,Decision Support Systems,4,db/journals/dss/dss22.html#Mayer98,https://doi.org/10.1016/S0167-9236(98)00025-6 +Alan S. Abrahams,What's buzzing in the blizzard of buzz? Automotive component isolation in social media postings.,2013,55,Decision Support Systems,4,db/journals/dss/dss55.html#AbrahamsJFWZ13,https://doi.org/10.1016/j.dss.2012.12.023 +Joy Wei He,What drives continued knowledge sharing? An investigation of knowledge-contribution and -seeking beliefs.,2009,46,Decision Support Systems,4,db/journals/dss/dss46.html#HeW09,https://doi.org/10.1016/j.dss.2008.11.007 +Koray özpolat,Getting the most out of third party trust seals: An empirical analysis.,2015,73,Decision Support Systems,,db/journals/dss/dss73.html#OzpolatJ15,https://doi.org/10.1016/j.dss.2015.02.016 +Nuno Oliveira 0002,Stock market sentiment lexicon acquisition using microblogging data and statistical measures.,2016,85,Decision Support Systems,,db/journals/dss/dss85.html#Oliveira0A16,https://doi.org/10.1016/j.dss.2016.02.013 +V. Srinivas,Strategic decision-making processes: network-based representation and stochastic simulation.,1997,21,Decision Support Systems,2,db/journals/dss/dss21.html#SrinivasS97,https://doi.org/10.1016/S0167-9236(97)00023-7 +María N. Moreno García,Building knowledge discovery-driven models for decision support in project management.,2004,38,Decision Support Systems,2,db/journals/dss/dss38.html#GarciaQPM04,https://doi.org/10.1016/S0167-9236(03)00100-3 +Hong Hong,Understanding the determinants of online review helpfulness: A meta-analytic investigation.,2017,102,Decision Support Systems,,db/journals/dss/dss102.html#HongXWF17,https://doi.org/10.1016/j.dss.2017.06.007 +Daniel E. O'Leary,Internet-based information and retrieval systems.,1999,27,Decision Support Systems,3,db/journals/dss/dss27.html#OLeary99,https://doi.org/10.1016/S0167-9236(99)00054-8 +Jinwoo Kim 0001,Hierarchical Structure of Intranet Functions and Their Relative Importance: : Using the Analytic Hierarchy Process for Virtual Organizations.,1998,23,Decision Support Systems,1,db/journals/dss/dss23.html#Kim98,https://doi.org/10.1016/S0167-9236(98)00036-0 +Michael C. Chen,On the use and internal structure of logic-based decision support systems.,1985,1,Decision Support Systems,3,db/journals/dss/dss1.html#ChenH85,https://doi.org/10.1016/0167-9236(85)90240-4 +P. V. (Sundar) Balakrishnan,Triangulation in decision support systems: Algorithms for product design.,1995,14,Decision Support Systems,4,db/journals/dss/dss14.html#BalakrishnanJ95,https://doi.org/10.1016/0167-9236(94)00026-O +Steven Walczak,A decision support tool for allocating hospital bed resources and determining required acuity of care.,2003,34,Decision Support Systems,4,db/journals/dss/dss34.html#WalczakPS03,https://doi.org/10.1016/S0167-9236(02)00071-4 +David Arnott,A note on an experimental study of DSS and forecasting exponential growth.,2008,45,Decision Support Systems,1,db/journals/dss/dss45.html#ArnottO08,https://doi.org/10.1016/j.dss.2007.11.006 +Alina M. Chircu,Managing electronic commerce retail transaction costs for customer value.,2006,42,Decision Support Systems,2,db/journals/dss/dss42.html#ChircuM06,https://doi.org/10.1016/j.dss.2005.07.011 +Shuiqing Yang,Why do consumers adopt online channel? An empirical investigation of two channel extension mechanisms.,2013,54,Decision Support Systems,2,db/journals/dss/dss54.html#YangLC13,https://doi.org/10.1016/j.dss.2012.09.011 +Mutaz M. Al-Debei,Why people keep coming back to Facebook: Explaining and predicting continuance participation from an extended theory of planned behaviour perspective.,2013,55,Decision Support Systems,1,db/journals/dss/dss55.html#Al-DebeiAP13,https://doi.org/10.1016/j.dss.2012.12.032 +Jianheng Zhou,Double moral hazard in a supply chain with consumer learning.,2012,54,Decision Support Systems,1,db/journals/dss/dss54.html#ZhouZXG12,https://doi.org/10.1016/j.dss.2012.06.011 +G. B. Tanna,Information assurance metric development framework for electronic bill presentment and payment systems using transaction and workflow analysis.,2005,41,Decision Support Systems,1,db/journals/dss/dss41.html#TannaGRU05,https://doi.org/10.1016/j.dss.2004.06.013 +Lin Ma,A new aspect on P2P online lending default prediction using meta-level phone usage data in China.,2018,111,Decision Support Systems,,db/journals/dss/dss111.html#MaZZL18,https://doi.org/10.1016/j.dss.2018.05.001 +Man Leung Wong,Learning Bayesian networks from incomplete databases using a novel evolutionary algorithm.,2008,45,Decision Support Systems,2,db/journals/dss/dss45.html#WongG08,https://doi.org/10.1016/j.dss.2008.01.002 +Sulin Ba,Digital health communities: The effect of their motivation mechanisms.,2013,55,Decision Support Systems,4,db/journals/dss/dss55.html#BaW13,https://doi.org/10.1016/j.dss.2013.01.003 +Eduardo Fernández 0002,An agent model based on ideas of concordance and discordance for group ranking problems.,2005,39,Decision Support Systems,3,db/journals/dss/dss39.html#FernandezO05,https://doi.org/10.1016/j.dss.2004.01.004 +Meral Binbasioglu,Domain specific DSS tools for knowledge-based model building.,1986,2,Decision Support Systems,3,db/journals/dss/dss2.html#BinbasiogluJ86,https://doi.org/10.1016/0167-9236(86)90029-1 +Ho Geun Lee,Constraint logic programming for qualitative and quantitative constraint satisfaction problems.,1996,16,Decision Support Systems,1,db/journals/dss/dss16.html#LeeLY96,https://doi.org/10.1016/0167-9236(94)00057-3 +Valentina Viduto,A novel risk assessment and optimisation model for a multi-objective network security countermeasure selection problem.,2012,53,Decision Support Systems,3,db/journals/dss/dss53.html#VidutoMHL12,https://doi.org/10.1016/j.dss.2012.04.001 +Wan-Tsu Wang,Revisiting the note on supply chain integration in vendor-managed inventory.,2010,48,Decision Support Systems,2,db/journals/dss/dss48.html#WangWT10,https://doi.org/10.1016/j.dss.2009.08.001 +Elena Karahanna,Individual differences and relative advantage: the case of GSS.,2002,32,Decision Support Systems,4,db/journals/dss/dss32.html#KarahannaASG02,https://doi.org/10.1016/S0167-9236(01)00124-5 +Daniel R. Dolk,An active modeling system for econometric analysis.,1991,7,Decision Support Systems,4,db/journals/dss/dss7.html#DolkK91,https://doi.org/10.1016/0167-9236(91)90061-F +Shin-Yuan Hung,Investigating primary health care nurses' intention to use information technology: An empirical study in Taiwan.,2014,57,Decision Support Systems,,db/journals/dss/dss57.html#HungTC14,https://doi.org/10.1016/j.dss.2013.09.016 +Soumitra Dutta,Decision support in non-conservative domains: Generalization with neural networks.,1994,11,Decision Support Systems,5,db/journals/dss/dss11.html#DuttaSW94,https://doi.org/10.1016/0167-9236(94)90023-X +Der-Chiang Li,The data complexity index to construct an efficient cross-validation method.,2010,50,Decision Support Systems,1,db/journals/dss/dss50.html#LiFF10,https://doi.org/10.1016/j.dss.2010.07.005 +Anteneh Ayanso,Understanding continuance intentions of physicians with electronic medical records (EMR): An expectancy-confirmation perspective.,2015,77,Decision Support Systems,,db/journals/dss/dss77.html#AyansoHO15,https://doi.org/10.1016/j.dss.2015.06.003 +Carlos Serrano-Cinca,The use of profit scoring as an alternative to credit scoring systems in peer-to-peer (P2P) lending.,2016,89,Decision Support Systems,,db/journals/dss/dss89.html#Serrano-CincaG16,https://doi.org/10.1016/j.dss.2016.06.014 +Timon Chih-Ting Du,Constructing federated databases in coordinated supply chains.,2003,36,Decision Support Systems,1,db/journals/dss/dss36.html#DuLC03,https://doi.org/10.1016/S0167-9236(02)00131-8 +Dan Tufis,Experiments with a differential semantics annotation for WordNet 3.0.,2012,53,Decision Support Systems,4,db/journals/dss/dss53.html#TufisS12,https://doi.org/10.1016/j.dss.2012.05.026 +Steven L. Alter,A work system view of DSS in its fourth decade.,2004,38,Decision Support Systems,3,db/journals/dss/dss38.html#Alter04,https://doi.org/10.1016/j.dss.2003.04.001 +Shijia Gao,An intelligent agent-assisted decision support system for family financial planning.,2007,44,Decision Support Systems,1,db/journals/dss/dss44.html#GaoWXW07,https://doi.org/10.1016/j.dss.2007.03.001 +Yves A. Lussier,Partitioning knowledge bases between advanced notification and clinical decision support systems.,2007,43,Decision Support Systems,4,db/journals/dss/dss43.html#LussierWLJBSK07,https://doi.org/10.1016/j.dss.2006.02.006 +Meng Hsiang Hsu,Internet self-efficacy and electronic service acceptance.,2004,38,Decision Support Systems,3,db/journals/dss/dss38.html#HsuC04,https://doi.org/10.1016/j.dss.2003.08.001 +Berndt Böhme,Knowledge representation in expert systems for process control.,1990,6,Decision Support Systems,4,db/journals/dss/dss6.html#BohmeW90,https://doi.org/10.1016/0167-9236(90)90026-N +Sathasivam Mathiyalakan,A methodology for controlled empirical investigation of membership continuity and change in GDSS groups.,2002,32,Decision Support Systems,3,db/journals/dss/dss32.html#Mathiyalakan02,https://doi.org/10.1016/S0167-9236(01)00115-4 +Krishnamurty Muralidhar,Secure attribute sharing of linked microdata.,2016,81,Decision Support Systems,,db/journals/dss/dss81.html#MuralidharSL16,https://doi.org/10.1016/j.dss.2015.10.005 +A. R. Hatami,Hedging risks with interruptible load programs for a load serving entity.,2009,48,Decision Support Systems,1,db/journals/dss/dss48.html#HatamiSS09,https://doi.org/10.1016/j.dss.2009.07.007 +Andy Pasley,Distribution forecasting of high frequency time series.,2004,37,Decision Support Systems,4,db/journals/dss/dss37.html#PasleyA04,https://doi.org/10.1016/S0167-9236(03)00083-6 +Hyun-Soo Han,Complementarity between client and vendor IT capabilities: An empirical investigation in IT outsourcing projects.,2013,55,Decision Support Systems,3,db/journals/dss/dss55.html#HanLCS13,https://doi.org/10.1016/j.dss.2013.03.003 +Rasmeh Al-Huneiti,Nurses' Attitudes Towards E-Learning for E-health Education.,2016,7,IJHCR,1,db/journals/ijhcr/ijhcr7.html#Al-HuneitiHABM16,https://doi.org/10.4018/IJHCR.2016010104 +Anirban Mondal,A Collaborative Replication Approach for Mobile-P2P Networks.,2010,1,IJHCR,2,db/journals/ijhcr/ijhcr1.html#MondalMK10,https://doi.org/10.4018/jhcr.2010040105 +Keith Cheverst,Supporting the Mobile In-situ Authoring of Locative Media in Rural Places: Design and Expert Evaluation of the SMAT app.,2015,6,IJHCR,1,db/journals/ijhcr/ijhcr6.html#CheverstDF15,https://doi.org/10.4018/IJHCR.2015010101 +Yanxiao Zhao,Interference Modeling and Analysis in Cognitive Radio Networks.,2013,4,IJHCR,4,db/journals/ijhcr/ijhcr4.html#ZhaoPSW13,https://doi.org/10.4018/ijhcr.2013100101 +Osamah Ali Abdullah,Convex Optimization Via Jensen-Bregman Divergence for WLAN Indoor Positioning System.,2017,8,IJHCR,1,db/journals/ijhcr/ijhcr8.html#AbdullahAB17,https://doi.org/10.4018/IJHCR.2017010103 +Ankita Kohli,Automatic Usability Evaluation of Mobile Web Pages with XML.,2013,4,IJHCR,3,db/journals/ijhcr/ijhcr4.html#KohliZK13,https://doi.org/10.4018/jhcr.2013070102 +Avraham Klausner,An Overview of the Capabilities and Limitations of Smartphone Sensors.,2013,4,IJHCR,2,db/journals/ijhcr/ijhcr4.html#KlausnerTSH13,https://doi.org/10.4018/jhcr.2013040105 +Lei Chen,Mobile Multimedia Streaming Using Secure Multipath in Wireless Ad Hoc Networks.,2010,1,IJHCR,2,db/journals/ijhcr/ijhcr1.html#ChenL10,https://doi.org/10.4018/jhcr.2010040104 +Karin Leichtenstern,Tool-Supported User-Centred Prototyping of Mobile Applications.,2011,2,IJHCR,3,db/journals/ijhcr/ijhcr2.html#LeichtensternAR11,https://doi.org/10.4018/jhcr.2011070101 +Yanjun Zuo,Survivability Enhancing Techniques for RFID Systems.,2011,2,IJHCR,1,db/journals/ijhcr/ijhcr2.html#Zuo11,https://doi.org/10.4018/jhcr.2011010102 +Been-Chian Chien,A Generic Context Interpreter for Pervasive Context-Aware Systems.,2011,2,IJHCR,2,db/journals/ijhcr/ijhcr2.html#ChienH11,https://doi.org/10.4018/jhcr.2011040105 +Bimal Aklesh Kumar,Heuristic Based User Interface Evaluation of Mobile Money Application: A Case Study.,2014,5,IJHCR,2,db/journals/ijhcr/ijhcr5.html#KumarH14,https://doi.org/10.4018/ijhcr.2014040105 +Timothy Dougan,Detection of Social Interaction Using Mobile Phones via Device Free Passive Localisation.,2014,5,IJHCR,4,db/journals/ijhcr/ijhcr5.html#DouganC14,https://doi.org/10.4018/IJHCR.2014100102 +Christian Prause,MICA: A Mobile Support System for Warehouse Workers.,2011,2,IJHCR,1,db/journals/ijhcr/ijhcr2.html#PrauseJE11,https://doi.org/10.4018/jhcr.2011010101 +Dongsong Zhang,Hype or Ready for Prime Time?: Speech Recognition on Mobile Handheld Devices (MASR).,2012,3,IJHCR,4,db/journals/ijhcr/ijhcr3.html#ZhangCZ12,https://doi.org/10.4018/jhcr.2012100103 +Toshiaki Miyazaki,Dynamic Function Alternation to Realize Robust Wireless Sensor Network.,2012,3,IJHCR,3,db/journals/ijhcr/ijhcr3.html#Miyazaki12,https://doi.org/10.4018/jhcr.2012070102 +Athanasios Plessas,Using Communication Frequency and Recency Context to Facilitate Mobile Contact List Retrieval.,2013,4,IJHCR,4,db/journals/ijhcr/ijhcr4.html#PlessasSKG13,https://doi.org/10.4018/ijhcr.2013100104 +Mohammad Al Nabhan,Client-Server Based LBS Architecture: A Novel Positioning Module for Improved Positioning Performance.,2010,1,IJHCR,3,db/journals/ijhcr/ijhcr1.html#NabhanMGBH10,https://doi.org/10.4018/jhcr.2010070101 +A. Van Nieuwenhuyse,Analysis of the Realistic Resolution with Angle of Arrival for Indoor Positioning.,2013,4,IJHCR,2,db/journals/ijhcr/ijhcr4.html#NieuwenhuyseSSGN13,https://doi.org/10.4018/jhcr.2013040101 +Faisal Taher,Exploring Personal Mobile Phones and Digital Display Systems to Support Indoor Navigation by Formative Study Methods.,2010,1,IJHCR,3,db/journals/ijhcr/ijhcr1.html#TaherCH10,https://doi.org/10.4018/jhcr.2010070103 +Fatemeh Afghah,Game Theoretic Study of Cooperative Spectrum Leasing in Cognitive Radio Networks.,2014,5,IJHCR,2,db/journals/ijhcr/ijhcr5.html#AfghahR14,https://doi.org/10.4018/ijhcr.2014040104 +Suleiman Al Masri,The Impact of Zoning Concept on Data-Flow Management within LBS System Components.,2010,1,IJHCR,1,db/journals/ijhcr/ijhcr1.html#MasriH10,https://doi.org/10.4018/jhcr.2010090903 +Srinivasa K. G.,Know Your World Better: Cloud Based Augmented Reality Android Application.,2016,7,IJHCR,2,db/journals/ijhcr/ijhcr7.html#GJN16,https://doi.org/10.4018/IJHCR.2016040101 +Thomas Cochrane,Mobile Web 2.0 Integration.,2013,4,IJHCR,3,db/journals/ijhcr/ijhcr4.html#CochraneF13,https://doi.org/10.4018/jhcr.2013070101 +Yu Cai,Mobile Agent Based Network Defense System in Enterprise Network.,2011,2,IJHCR,1,db/journals/ijhcr/ijhcr2.html#Cai11,https://doi.org/10.4018/jhcr.2011010103 +Monika Rajendra Astonkar,Rolopanel: Tracking Game Behaviour through Mobile Analytics.,2014,5,IJHCR,4,db/journals/ijhcr/ijhcr5.html#AstonkarB14,https://doi.org/10.4018/IJHCR.2014100104 +Josephine Antoniou,Session and Network Support for Autonomous Context-Aware Multiparty Communications in Heterogeneous Mobile Systems.,2010,1,IJHCR,4,db/journals/ijhcr/ijhcr1.html#AntoniouCNSPCMSP10,https://doi.org/10.4018/jhcr.2010100101 +Md. Maruf Ahamed,LTE Cellular Network Planning for Urban Area.,2013,4,IJHCR,4,db/journals/ijhcr/ijhcr4.html#AhamedIHF13,https://doi.org/10.4018/ijhcr.2013100102 +Flora S. Tsai,Mobile E-Health Information System.,2011,2,IJHCR,4,db/journals/ijhcr/ijhcr2.html#Tsai11,https://doi.org/10.4018/jhcr.2011100101 +Benjamin Sanda,Reducing Tracking Error in RFID Real-Time Localization Systems Using Kalman Filters.,2014,5,IJHCR,3,db/journals/ijhcr/ijhcr5.html#SandaAA14,https://doi.org/10.4018/IJHCR.2014070101 +Ernesto Rivera,Advanced Mobile Lecture Viewing: Summarization and Two-Way Navigation.,2012,3,IJHCR,2,db/journals/ijhcr/ijhcr3.html#RiveraN12,https://doi.org/10.4018/jhcr.2012040104 +Jongil Lim,Indoor Localization and Navigation for a Mobile Robot Equipped with Rotating Ultrasonic Sensors Using a Smartphone as the Robot's Brain.,2016,7,IJHCR,1,db/journals/ijhcr/ijhcr7.html#LimLTK16,https://doi.org/10.4018/IJHCR.2016010101 +Nan Jing,A Research Approach to Detect Unreliable Information in Online Professional Social Networks: Using LinkedIn Mobile as an Example.,2015,6,IJHCR,4,db/journals/ijhcr/ijhcr6.html#JingLZ15,https://doi.org/10.4018/IJHCR.2015100103 +Alex Garcia Goncalves,Expressive Audiovisual Message Presenter for Mobile Devices.,2013,4,IJHCR,1,db/journals/ijhcr/ijhcr4.html#GoncalvesM13,https://doi.org/10.4018/jhcr.2013010105 +Robert G. Farrell,A Picture and a Thousand Words: Visual Scaffolding for Mobile Communication in Developing Regions.,2010,1,IJHCR,4,db/journals/ijhcr/ijhcr1.html#FarrellDEECBK10,https://doi.org/10.4018/jhcr.2010100105 +Maria Andréia F. Rodrigues,Interactive Navigation and Exploration of Virtual Environments on Handheld Devices.,2012,3,IJHCR,3,db/journals/ijhcr/ijhcr3.html#RodriguesBM12,https://doi.org/10.4018/jhcr.2012070105 +Thomas G. Pratt,Towards Efficient Spectrum Utilization with Polarization-Based Architectures.,2015,6,IJHCR,2,db/journals/ijhcr/ijhcr6.html#PrattCT15,https://doi.org/10.4018/IJHCR.2015040101 +Pavan Kumar Pandey,Design and Implementation of Binary Tree Based Proactive Routing Protocols for Large MANETS.,2011,2,IJHCR,4,db/journals/ijhcr/ijhcr2.html#PandeyB11,https://doi.org/10.4018/jhcr.2011100105 +Wen-Chen Hu,Contemporary Issues in Handheld Computing Research.,2010,1,IJHCR,1,db/journals/ijhcr/ijhcr1.html#HuZCY10,https://doi.org/10.4018/jhcr.2010090901 +Eliamani Sedoyeka,WiMAX Networks: Operations and QoS in Developing Countries.,2012,3,IJHCR,4,db/journals/ijhcr/ijhcr3.html#SedoyekaH12,https://doi.org/10.4018/jhcr.2012100105 +Roel Peeters,Threshold-Based Location-Aware Access Control.,2011,2,IJHCR,3,db/journals/ijhcr/ijhcr2.html#PeetersSP11,https://doi.org/10.4018/jhcr.2011070102 +Kenta Oku,Geographical Recommender System Using User Interest Model Based on Map Operation and Category Selection.,2012,3,IJHCR,3,db/journals/ijhcr/ijhcr3.html#OkuKKS12,https://doi.org/10.4018/jhcr.2012070101 +Lambert Spaanenburg,Health Diagnosis by Single Smartphone.,2015,6,IJHCR,2,db/journals/ijhcr/ijhcr6.html#Spaanenburg15,https://doi.org/10.4018/IJHCR.2015040104 +Vlad Stirbu,Panoramic Street-View Exploration using a Multi-Display Mobile Application.,2013,4,IJHCR,1,db/journals/ijhcr/ijhcr4.html#StirbuB13,https://doi.org/10.4018/jhcr.2013010101 +Duck Hee Lee,A Heart Monitoring System for a Mobile Device.,2012,3,IJHCR,4,db/journals/ijhcr/ijhcr3.html#LeeRRFCLW12,https://doi.org/10.4018/jhcr.2012100102 +Jing Wang 0005,A Distributed Computing Algorithm for Deployment of Mobile Robotic Agents with Limited Sensing Ranges.,2015,6,IJHCR,3,db/journals/ijhcr/ijhcr6.html#WangS15,https://doi.org/10.4018/IJHCR.2015070104 +Steve Saed,Decentralized Average Consensus in Wireless Sensor Networks with Unreliable Communication Channels.,2012,3,IJHCR,3,db/journals/ijhcr/ijhcr3.html#SaedLK12,https://doi.org/10.4018/jhcr.2012070103 +Noah P. Svoboda,Biocompatible Implanted Dielectric Sensors for Breast Cancer Detection.,2014,5,IJHCR,4,db/journals/ijhcr/ijhcr5.html#SvobodaS14,https://doi.org/10.4018/IJHCR.2014100101 +Sunil Kumar,Securing Mobile Ad Hoc Networks: Challenges and Solutions.,2016,7,IJHCR,1,db/journals/ijhcr/ijhcr7.html#KumarD16,https://doi.org/10.4018/IJHCR.2016010103 +Malintha Amarasinghe,Cloud-based Driver Monitoring and Vehicle Diagnostic with OBD2 Telematics.,2015,6,IJHCR,4,db/journals/ijhcr/ijhcr6.html#AmarasingheMKAB15,https://doi.org/10.4018/IJHCR.2015100104 +Guillermo Cueva-Fernandez,Voice Application Generator Platform for Real Time Multimedia Vehicle Sensor based Notifications.,2015,6,IJHCR,1,db/journals/ijhcr/ijhcr6.html#Cueva-Fernandez15,https://doi.org/10.4018/IJHCR.2015010102 +Thomas Cochrane,An mLearning Journey: Mobile Web 2.0 Critical Success Factors.,2012,3,IJHCR,2,db/journals/ijhcr/ijhcr3.html#Cochrane12,https://doi.org/10.4018/jhcr.2012040103 +Fan Wu,Imperceptible Simplification on Mobile Displays.,2012,3,IJHCR,1,db/journals/ijhcr/ijhcr3.html#WuALC12,https://doi.org/10.4018/jhcr.2012010103 +Najeeb Elahi,Ontology-Based Image Annotation by Leveraging Social Context.,2012,3,IJHCR,3,db/journals/ijhcr/ijhcr3.html#ElahiKY12,https://doi.org/10.4018/jhcr.2012070104 +Nigel McKelvey,Drones and Privacy.,2015,6,IJHCR,1,db/journals/ijhcr/ijhcr6.html#McKelveyDC15,https://doi.org/10.4018/IJHCR.2015010104 +Ahmed Abdelgawad,Butterworth Filter Application for Structural Health Monitoring.,2016,7,IJHCR,4,db/journals/ijhcr/ijhcr7.html#AbdelgawadMY16,https://doi.org/10.4018/IJHCR.2016100102 +Sanjay Kumar Biswash,A Device Centric Communication System for 5G Networks.,2014,5,IJHCR,3,db/journals/ijhcr/ijhcr5.html#BiswashNS14,https://doi.org/10.4018/IJHCR.2014070104 +John D. Garofalakis,A Framework for the Quality Evaluation of B2C M-Commerce Services.,2011,2,IJHCR,3,db/journals/ijhcr/ijhcr2.html#GarofalakisSS11,https://doi.org/10.4018/jhcr.2011070105 +Ali K. Jaber,A Hybrid Feature Extraction Framework for Face Recognition: HOG and Compressive Sensing.,2017,8,IJHCR,1,db/journals/ijhcr/ijhcr8.html#JaberA17,https://doi.org/10.4018/IJHCR.2017010101 +Yuhong Zhang,Modeling and Analysis of a Hybrid CAC Scheme in Heterogeneous Multimedia Wireless Networks.,2012,3,IJHCR,1,db/journals/ijhcr/ijhcr3.html#ZhangS12,https://doi.org/10.4018/jhcr.2012010102 +David Kuo,A 2D Barcode Validation System for Mobile Commerce.,2011,2,IJHCR,2,db/journals/ijhcr/ijhcr2.html#KuoWGC11,https://doi.org/10.4018/jhcr.2011040101 +Jussi Ruutu,Energy Efficiency of Mobile Device Recharging.,2013,4,IJHCR,1,db/journals/ijhcr/ijhcr4.html#RuutuNR13,https://doi.org/10.4018/jhcr.2013010104 +Alexander Forde,Depth-Vision Coordinated Robust Architecture for Obstacle Detection and Haptic Feedback.,2015,6,IJHCR,2,db/journals/ijhcr/ijhcr6.html#FordeLY15,https://doi.org/10.4018/IJHCR.2015040102 +Cristinel Ababei,Open Source Digital Camera on Field Programmable Gate Arrays.,2016,7,IJHCR,4,db/journals/ijhcr/ijhcr7.html#AbabeiDEMMS16,https://doi.org/10.4018/IJHCR.2016100103 +Juuso Karikoski,Handset-Based Data Collection Process and Participant Attitudes.,2012,3,IJHCR,4,db/journals/ijhcr/ijhcr3.html#Karikoski12,https://doi.org/10.4018/jhcr.2012100101 +Edidiong Attang,Network Codes Based on Symmetric Matrices.,2016,7,IJHCR,4,db/journals/ijhcr/ijhcr7.html#AttangWNA16,https://doi.org/10.4018/IJHCR.2016100101 +Julius Mueller,Peer Assist Live Streaming Overlay for Next-Generation-Networks.,2010,1,IJHCR,4,db/journals/ijhcr/ijhcr1.html#MullerMF10,https://doi.org/10.4018/jhcr.2010100102 +Amal Ellouze,A Novel Application Offloading Algorithm and an Optimized Application Servers Placement for Mobile Cloud Computing.,2015,6,IJHCR,4,db/journals/ijhcr/ijhcr6.html#EllouzeG15,https://doi.org/10.4018/IJHCR.2015100102 +Xun Li 0001,A Study of Reusing Smartphones to Augment Elementary School Education.,2012,3,IJHCR,2,db/journals/ijhcr/ijhcr3.html#0001OBFOGZC12,https://doi.org/10.4018/jhcr.2012040105 +Sami Oweis,Illustration of Centralized Command and Control for Flocking Behavior.,2014,5,IJHCR,2,db/journals/ijhcr/ijhcr5.html#OweisGC14,https://doi.org/10.4018/ijhcr.2014040101 +Ismail Amin Ali,Congestion Resiliency for Data-Partitioned H.264/AVC Video Streaming Over IEEE 802.11e Wireless Networks.,2012,3,IJHCR,1,db/journals/ijhcr/ijhcr3.html#AliMFG12,https://doi.org/10.4018/jhcr.2012010104 +Jing Wang 0005,A Distributed Least-Squares Algorithm in Wireless Sensor Networks With Unknown and Limited Communications.,2017,8,IJHCR,3,db/journals/ijhcr/ijhcr8.html#WangALYS17,https://doi.org/10.4018/IJHCR.2017070102 +Caterina Lazaro Martinez,Hardware and Software Implementation of an Artificial Pancreas System on a Mobile Device.,2017,8,IJHCR,1,db/journals/ijhcr/ijhcr8.html#MartinezOSTC17,https://doi.org/10.4018/IJHCR.2017010102 +Andrei Papliatseyeu,Indoor Positioning Using FM Radio.,2010,1,IJHCR,3,db/journals/ijhcr/ijhcr1.html#PapliatseyeuOM10,https://doi.org/10.4018/jhcr.2010070102 +Moussa Ouedraogo,Security Assurance Evaluation and IT Systems' Context of Use Security Criticality.,2011,2,IJHCR,4,db/journals/ijhcr/ijhcr2.html#OuedraogoMDK11,https://doi.org/10.4018/jhcr.2011100104 +Frédéric Guidec,Opportunistic Software Deployment in Disconnected Mobile Ad Hoc Networks.,2010,1,IJHCR,1,db/journals/ijhcr/ijhcr1.html#GuidecSM10,https://doi.org/10.4018/jhcr.2010090902 +Wendel Bezerra Silva,Interactive Rendering of Indoor and Urban Environments on Handheld Devices by Combining Visibility Algorithms with Spatial Data Structures.,2011,2,IJHCR,1,db/journals/ijhcr/ijhcr2.html#SilvaR11,https://doi.org/10.4018/jhcr.2011010104 +Seok Ju Lee,Vision Based Localization for Multiple Mobile Robots Using Low-cost Vision Sensor.,2016,7,IJHCR,1,db/journals/ijhcr/ijhcr7.html#LeeTLK16,https://doi.org/10.4018/IJHCR.2016010102 +Srinivasa K. G.,Microsense: Sensor Framework for IoT System-on-Chip.,2016,7,IJHCR,3,db/journals/ijhcr/ijhcr7.html#GHMSKD16,https://doi.org/10.4018/IJHCR.2016070104 +Mohamed H. Abdel Meniem,GSM-Based Positioning Technique Using Relative Received Signal Strength.,2013,4,IJHCR,4,db/journals/ijhcr/ijhcr4.html#MeniemHS13,https://doi.org/10.4018/ijhcr.2013100103 +Abdurhman Albasir,Performance Testing of Mobile Applications on Smartphones.,2014,5,IJHCR,4,db/journals/ijhcr/ijhcr5.html#AlbasirMNAGP14,https://doi.org/10.4018/IJHCR.2014100103 +Hannu Verkasalo,A Measurement Framework of Mobile Service Adoption.,2010,1,IJHCR,2,db/journals/ijhcr/ijhcr1.html#Verkasalo10,https://doi.org/10.4018/jhcr.2010040102 +Taimoor Asim,Development of an Information Quality Framework for Mechanical Engineering Modules with Enhanced Treatment for Pedagogical Content.,2016,7,IJHCR,3,db/journals/ijhcr/ijhcr7.html#AsimMA16,https://doi.org/10.4018/IJHCR.2016070102 +Johan Eliasson,Design Guidelines for Location-Based and Contextual Learning Supported by Mobile Devices.,2012,3,IJHCR,2,db/journals/ijhcr/ijhcr3.html#EliassonR12,https://doi.org/10.4018/jhcr.2012040102 +Nan Jing,Modeling and Analyzing User Contexts for Mobile Advertising.,2011,2,IJHCR,3,db/journals/ijhcr/ijhcr2.html#JingYR11,https://doi.org/10.4018/jhcr.2011070103 +Caterina Lazaro Martinez,Cyber-Physical Platform Development for Multivariable Artificial Pancreas Systems.,2015,6,IJHCR,3,db/journals/ijhcr/ijhcr6.html#MartinezOC15,https://doi.org/10.4018/IJHCR.2015070101 +Gregory Bock,Experimental Validation of Distributed Cooperative Control of Multiple Mobile Robots via Local Information Exchange.,2017,8,IJHCR,2,db/journals/ijhcr/ijhcr8.html#BockHLDWA17,https://doi.org/10.4018/IJHCR.2017040102 +William C. Barott,Coherent Passive Backscatter Communications Using Ambient Transmitters.,2014,5,IJHCR,2,db/journals/ijhcr/ijhcr5.html#BarottS14,https://doi.org/10.4018/ijhcr.2014040102 +Nicola Carbonaro,Psychometric Assessment of Cardio-Respiratory Activity Using a Mobile Platform.,2014,5,IJHCR,1,db/journals/ijhcr/ijhcr5.html#CarbonaroCTARPGR14,https://doi.org/10.4018/ijhcr.2014010102 +Filipe Cabral Pinto,Context-Aware Multimedia Distribution to Mobile Social Communities.,2013,4,IJHCR,3,db/journals/ijhcr/ijhcr4.html#PintoCVFH13,https://doi.org/10.4018/jhcr.2013070104 +Wen-Chen Hu,Privacy-Preserving Spatial Trajectory Prediction Based on a Novel Matrix Representation.,2014,5,IJHCR,1,db/journals/ijhcr/ijhcr5.html#HuKYM14,https://doi.org/10.4018/ijhcr.2014010105 +Mohammad Alnabhan,Ubiquity and Context-Aware M-Learning Model: A Mobile Virtual Community Approach.,2014,5,IJHCR,1,db/journals/ijhcr/ijhcr5.html#Alnabhan14,https://doi.org/10.4018/ijhcr.2014010104 +Jochen Meyer,Technologies for Wellbeing and Healthy Living: Perspectives and Challenges.,2014,5,IJHCR,1,db/journals/ijhcr/ijhcr5.html#Meyer14,https://doi.org/10.4018/ijhcr.2014010103 +Sultan Al-masaeed,Mobile Government in Jordan: Is It a Step in the Right Direction?,2013,4,IJHCR,3,db/journals/ijhcr/ijhcr4.html#Al-masaeedL13,https://doi.org/10.4018/jhcr.2013070105 +Bilal Muhammad Khan,Mobility Adaptive Energy Efficient and Low Latency MAC for Wireless Sensor Networks.,2013,4,IJHCR,2,db/journals/ijhcr/ijhcr4.html#KhanB13,https://doi.org/10.4018/jhcr.2013040103 +Sara Henriques,The Value of Mobile Communication for Social Belonging: Mobile Apps and the Impact on Social Interaction.,2016,7,IJHCR,2,db/journals/ijhcr/ijhcr7.html#HenriquesD16,https://doi.org/10.4018/IJHCR.2016040104 +Tapio Soikkeli,Characterizing Smartphone Usage: Diversity and End User Context.,2013,4,IJHCR,1,db/journals/ijhcr/ijhcr4.html#SoikkeliKH13,https://doi.org/10.4018/jhcr.2013010102 +Hongyu Guo,Analysis and Resolution of Semantic Ambiguity of Toggle Buttons by Standardizing the Design in Software GUI and Mobile Apps.,2017,8,IJHCR,2,db/journals/ijhcr/ijhcr8.html#GuoNH17,https://doi.org/10.4018/IJHCR.2017040101 +Lambert Spaanenburg,Commanding the Cloud by Moving a Camera Phone.,2010,1,IJHCR,3,db/journals/ijhcr/ijhcr1.html#SpaanenburgZCR10,https://doi.org/10.4018/jhcr.2010070105 +Eric Chan-Tin,Secure Routing and Scheduling in Ad-Hoc Cognitive Radio Networks for Public Safety.,2014,5,IJHCR,2,db/journals/ijhcr/ijhcr5.html#Chan-TinC14,https://doi.org/10.4018/ijhcr.2014040103 +Ji Gu,Reducing Power and Energy Overhead in Instruction Prefetching for Embedded Processor Systems.,2011,2,IJHCR,4,db/journals/ijhcr/ijhcr2.html#GuG11,https://doi.org/10.4018/jhcr.2011100103 +Ranjana Joshi,A Joint Power Harvesting and Communication Technology for Smartphone Centric Ubiquitous Sensing Applications.,2015,6,IJHCR,2,db/journals/ijhcr/ijhcr6.html#JoshiN15,https://doi.org/10.4018/IJHCR.2015040103 +Nikolaos Batalas,Meet your Users in Situ Data Collection from within Apps in Large-Scale Deployments.,2015,6,IJHCR,3,db/journals/ijhcr/ijhcr6.html#BatalasQMM15,https://doi.org/10.4018/IJHCR.2015070102 +Ziad Hunaiti,Digital Learning Technologies: Subjective and Objective Effectiveness Evaluation in Higher Education Settings.,2017,8,IJHCR,2,db/journals/ijhcr/ijhcr8.html#Hunaiti17,https://doi.org/10.4018/IJHCR.2017040103 +Oscar Mayora,Mobile Health Systems for Bipolar Disorder: The Relevance of Non-Functional Requirements in MONARCA Project.,2014,5,IJHCR,1,db/journals/ijhcr/ijhcr5.html#MayoraFAGGMOPRST14,https://doi.org/10.4018/ijhcr.2014010101 +Asif Iqbal Baba,Energy-Accuracy Trade-off in Wireless Sensor Network Localization.,2015,6,IJHCR,4,db/journals/ijhcr/ijhcr6.html#BabaW15,https://doi.org/10.4018/IJHCR.2015100101 +Xiaoxin Wu,A Novel Energy Saving Approach through Mobile Collaborative Computing Systems.,2010,1,IJHCR,2,db/journals/ijhcr/ijhcr1.html#WuCLZ10,https://doi.org/10.4018/jhcr.2010040101 +Janne Lindqvist,Enterprise Network Packet Filtering for Mobile Cryptographic Identities.,2010,1,IJHCR,1,db/journals/ijhcr/ijhcr1.html#LindqvistVKM10,https://doi.org/10.4018/jhcr.2010090905 +Andreu Castellet,What If Devices Take Command: Content Innovation Perspectives for Smart Wearables in the Mobile Ecosystem.,2016,7,IJHCR,2,db/journals/ijhcr/ijhcr7.html#Castellet16,https://doi.org/10.4018/IJHCR.2016040102 +Jie Sun 0005,A Petri-Net Based Context Representation in Smart Car Environment.,2011,2,IJHCR,2,db/journals/ijhcr/ijhcr2.html#SunZF11,https://doi.org/10.4018/jhcr.2011040103 +Ching-Long Yeh,Ontology-Based Personal Annotation Management on Semantic Peer Network to Facilitating Collaborations in e-Learning.,2011,2,IJHCR,2,db/journals/ijhcr/ijhcr2.html#YehCL11,https://doi.org/10.4018/jhcr.2011040102 +Sergio Gómez,Context-Aware and Adaptive Units of Learning in mLearning.,2012,3,IJHCR,2,db/journals/ijhcr/ijhcr3.html#GomezF12,https://doi.org/10.4018/jhcr.2012040101 +Yaswanth Potla,Adapting Web Page Tables on Mobile Devices.,2012,3,IJHCR,1,db/journals/ijhcr/ijhcr3.html#PotlaAKWN12,https://doi.org/10.4018/jhcr.2012010101 +Luis U. Hernandez Munoz,A Personal Handheld Device to Support People with Life-Threatening Anaphylactic Allergies (PervaLaxis).,2010,1,IJHCR,1,db/journals/ijhcr/ijhcr1.html#MunozW10,https://doi.org/10.4018/jhcr.2010090904 +Wenbing Zhao 0001,LiftingDoneRight: A Privacy-Aware Human Motion Tracking System for Healthcare Professionals.,2016,7,IJHCR,3,db/journals/ijhcr/ijhcr7.html#ZhaoLGFEREGNLL16,https://doi.org/10.4018/IJHCR.2016070101 +Arab AlSharif,A Piecewise Linear Time-Varying Model for Modeling the Charging and Discharging Processes of a Lithium-Ion Battery.,2014,5,IJHCR,2,db/journals/ijhcr/ijhcr5.html#AlSharifD14,https://doi.org/10.4018/ijhcr.2014040106 +Mark Bruce Freeman,Using the Wii Remote for Mobile Device Application Testing: A Proof-of-Concept.,2015,6,IJHCR,1,db/journals/ijhcr/ijhcr6.html#Freeman15,https://doi.org/10.4018/IJHCR.2015010103 +Panos Markopoulos,Sampling and Reconstructing User Experience.,2011,2,IJHCR,3,db/journals/ijhcr/ijhcr2.html#MarkopoulosK11,https://doi.org/10.4018/jhcr.2011070104 +Jesus David Terrazas Gonzalez,Zero-Crossing Analysis and Information Divergence of Lévy Walks for Real-Time Feature Extraction.,2016,7,IJHCR,4,db/journals/ijhcr/ijhcr7.html#GonzalezK16,https://doi.org/10.4018/IJHCR.2016100104 +Mohamed Ben Belgacem,Virtual EZ Grid: A Volunteer Computing Infrastructure for Scientific Medical Applications.,2012,3,IJHCR,1,db/journals/ijhcr/ijhcr3.html#BelgacemAN12,https://doi.org/10.4018/jhcr.2012010105 +Marco Mamei,Applying Commonsense Reasoning to Place Identification.,2010,1,IJHCR,2,db/journals/ijhcr/ijhcr1.html#Mamei10,https://doi.org/10.4018/jhcr.2010040103 +Sandro Moiron,Intelligent Bandwidth Allocation of IPTV Streams with Bitstream Complexity Measures.,2013,4,IJHCR,3,db/journals/ijhcr/ijhcr4.html#MoironRFG13,https://doi.org/10.4018/jhcr.2013070103 +Dongfeng Fang,A Cloud-Based Incentive Mechanism for Sensing in Mobile Sensor Networks.,2017,8,IJHCR,3,db/journals/ijhcr/ijhcr8.html#FangYQS17,https://doi.org/10.4018/IJHCR.2017070101 +Rachad Nassar,Semantic Handover among Distributed Coverage Zones for an Ambient Continuous Service Session.,2013,4,IJHCR,1,db/journals/ijhcr/ijhcr4.html#NassarS13,https://doi.org/10.4018/jhcr.2013010103 +Sophia Shabani Baruti,Proposed Framework for Mobile Decision Support Systems for Higher Learning Institutions: Mobile Decision Support Systems.,2016,7,IJHCR,3,db/journals/ijhcr/ijhcr7.html#Baruti16,https://doi.org/10.4018/IJHCR.2016070103 +Abdussalam Baryun,A Hybrid Network Emergency Communication Model.,2013,4,IJHCR,2,db/journals/ijhcr/ijhcr4.html#BaryunAV13,https://doi.org/10.4018/jhcr.2013040102 +Enrica Zola,Characterizing User Behavior in a European Academic WiFi Network.,2013,4,IJHCR,2,db/journals/ijhcr/ijhcr4.html#ZolaB13,https://doi.org/10.4018/jhcr.2013040104 +Ashraf Mostafa,A Study of Recursive Techniques for Robust Identification of Time-Varying Electrical Equivalent Circuit Models of Li-Ion Batteries.,2017,8,IJHCR,3,db/journals/ijhcr/ijhcr8.html#MostafaD17,https://doi.org/10.4018/IJHCR.2017070104 +Yanjun Zuo,Toward an RFID Scheme for Secure Material Flow Tracing and Verification in Supply Chains.,2013,4,IJHCR,4,db/journals/ijhcr/ijhcr4.html#Zuo13,https://doi.org/10.4018/ijhcr.2013100105 +Sara Nouh,WSN Lifetime and Reliability Analysis From the Death Criterion Perspective.,2017,8,IJHCR,3,db/journals/ijhcr/ijhcr8.html#NouhEKSDA17,https://doi.org/10.4018/IJHCR.2017070103 +Fabricio Nogueira Buzeto,DSOA: A Service Oriented Architecture for Ubiquitous Applications.,2011,2,IJHCR,2,db/journals/ijhcr/ijhcr2.html#BuzetoFCJ11,https://doi.org/10.4018/jhcr.2011040104 +Yuki Arase,Annotation and Auto-Scrolling for Web Page Overview in Mobile Web Browsing.,2010,1,IJHCR,4,db/journals/ijhcr/ijhcr1.html#AraseHUN10,https://doi.org/10.4018/jhcr.2010100104 +Mohammed Al-Masarweh,A Study of Performance Factors in the Brunel Remote Guidance System for Visually Impaired Pedestrians.,2012,3,IJHCR,4,db/journals/ijhcr/ijhcr3.html#Al-MasarwehGB12,https://doi.org/10.4018/jhcr.2012100104 +Pannel Chindalo,Health Apps by Design: A Reference Architecture for Mobile Engagement.,2016,7,IJHCR,2,db/journals/ijhcr/ijhcr7.html#ChindaloKBSK16,https://doi.org/10.4018/IJHCR.2016040103 +Lawrence R. Weatherford,Using Prices More Realistically as Decision Variables in Perishable-Asset Revenue Management Problems.,1997,1,J. Comb. Optim.,3,db/journals/jco/jco1.html#Weatherford97,https://doi.org/10.1023/A:1009728426728 +Lidong Wu,PTAS for routing-cost constrained minimum connected dominating set in growth bounded graphs.,2015,30,J. Comb. Optim.,1,db/journals/jco/jco30.html#WuDWZWL15,https://doi.org/10.1007/s10878-013-9626-8 +Shivkumar Sabesan,Measuring resetting of brain dynamics at epileptic seizures: application of global optimization and spatial synchronization techniques.,2009,17,J. Comb. Optim.,1,db/journals/jco/jco17.html#SabesanCTPI09,https://doi.org/10.1007/s10878-008-9181-x +Mutsunori Yagiura,Analyses on the 2 and 3-Flip Neighborhoods for the MAX SAT.,1999,3,J. Comb. Optim.,1,db/journals/jco/jco3.html#YagiuraI99,https://doi.org/10.1023/A:1009873324187 +Yancai Zhao,An efficient algorithm for distance total domination in block graphs.,2016,31,J. Comb. Optim.,1,db/journals/jco/jco31.html#ZhaoS16,https://doi.org/10.1007/s10878-014-9758-5 +Ramkumar Chinchani,On the Hardness of Approximating the Min-Hack Problem.,2005,9,J. Comb. Optim.,3,db/journals/jco/jco9.html#ChinchaniHINU05,https://doi.org/10.1007/s10878-005-1413-8 +Xinlu Zhang,Two new error-correcting pooling designs from d -bounded distance-regular graphs.,2009,17,J. Comb. Optim.,3,db/journals/jco/jco17.html#ZhangGG09,https://doi.org/10.1007/s10878-007-9115-z +Longkun Guo,Improved approximation algorithms for computing k disjoint paths subject to two constraints.,2015,29,J. Comb. Optim.,1,db/journals/jco/jco29.html#GuoSL15,https://doi.org/10.1007/s10878-013-9693-x +Chenchen Wu,An improved semidefinite programming hierarchies rounding approximation algorithm for maximum graph bisection problems.,2015,29,J. Comb. Optim.,1,db/journals/jco/jco29.html#WuDX15,https://doi.org/10.1007/s10878-013-9673-1 +Reinhard Bürgy,Optimal job insertion in the no-wait job shop.,2013,26,J. Comb. Optim.,2,db/journals/jco/jco26.html#BurgyG13,https://doi.org/10.1007/s10878-012-9466-y +Hengzhe Li,2-Edge connected dominating sets and 2-Connected dominating sets of a graph.,2016,31,J. Comb. Optim.,2,db/journals/jco/jco31.html#LiYW16,https://doi.org/10.1007/s10878-014-9783-4 +Zengfu Wang,An accelerated continuous greedy algorithm for maximizing strong submodular functions.,2015,30,J. Comb. Optim.,4,db/journals/jco/jco30.html#Wang0WP15,https://doi.org/10.1007/s10878-013-9685-x +Bin Wang,A modified firefly algorithm based on light intensity difference.,2016,31,J. Comb. Optim.,3,db/journals/jco/jco31.html#WangLJL16,https://doi.org/10.1007/s10878-014-9809-y +Shihyen Chen,An improved algorithm for tree edit distance with applications for RNA secondary structure comparison.,2014,27,J. Comb. Optim.,4,db/journals/jco/jco27.html#ChenZ14,https://doi.org/10.1007/s10878-012-9552-1 +Zhewei Liang,Algorithms for local similarity between forests.,2014,27,J. Comb. Optim.,1,db/journals/jco/jco27.html#LiangZ14,https://doi.org/10.1007/s10878-013-9613-0 +Andrzej Zak,General lower bound on the size of (H*k)-stable graphs.,2015,29,J. Comb. Optim.,2,db/journals/jco/jco29.html#Zak15,https://doi.org/10.1007/s10878-013-9595-y +James J. Cochran,Bayesian coverage optimization models.,2010,19,J. Comb. Optim.,2,db/journals/jco/jco19.html#CochranLC10,https://doi.org/10.1007/s10878-008-9172-y +György Dósa,"Bin packing with ""Largest In Bottom"" constraint: tighter bounds and generalizations.",2013,26,J. Comb. Optim.,3,db/journals/jco/jco26.html#DosaTY13,https://doi.org/10.1007/s10878-011-9408-0 +Giovanni Felici,Zero-Lifting for Integer Block Structured Problems.,2003,7,J. Comb. Optim.,2,db/journals/jco/jco7.html#FeliciG03,https://doi.org/10.1023/A:1024423013607 +Rainer E. Burkard,The Travelling Salesman Problem on Permuted Monge Matrices.,1998,2,J. Comb. Optim.,4,db/journals/jco/jco2.html#BurkardDW98,https://doi.org/10.1023/A:1009768317347 +Xinyun Wu,Multi-neighborhood based iterated tabu search for routing and wavelength assignment problem.,2016,32,J. Comb. Optim.,2,db/journals/jco/jco32.html#WuYWL16,https://doi.org/10.1007/s10878-015-9962-y +Zhen-Kun Zhang,Characterizations of k-cutwidth critical trees.,2017,34,J. Comb. Optim.,1,db/journals/jco/jco34.html#ZhangL17,https://doi.org/10.1007/s10878-016-0061-5 +Hanyuan Deng,Multiplicatively weighted Harary index of graphs.,2015,30,J. Comb. Optim.,4,db/journals/jco/jco30.html#DengKVB15,https://doi.org/10.1007/s10878-013-9698-5 +Stefan S. Dantchev,Sublinear-time algorithms for tournament graphs.,2011,22,J. Comb. Optim.,3,db/journals/jco/jco22.html#DantchevFN11,https://doi.org/10.1007/s10878-010-9325-7 +Shi Ping Chen,3-Partitioning Problems for Maximizing the Minimum Load.,2002,6,J. Comb. Optim.,1,db/journals/jco/jco6.html#ChenHL02,https://doi.org/10.1023/A:1013370208101 +Eranda çela,Linearizable special cases of the QAP.,2016,31,J. Comb. Optim.,3,db/journals/jco/jco31.html#CelaDW16,https://doi.org/10.1007/s10878-014-9821-2 +Min Chen 0012,Some results on the injective chromatic number of graphs.,2012,24,J. Comb. Optim.,3,db/journals/jco/jco24.html#ChenHRW12,https://doi.org/10.1007/s10878-011-9386-2 +Matthew Aldridge,Almost separable matrices.,2017,33,J. Comb. Optim.,1,db/journals/jco/jco33.html#AldridgeBG17,https://doi.org/10.1007/s10878-015-9951-1 +Minghui Jiang 0001,Flipping triangles and rectangles.,2013,26,J. Comb. Optim.,4,db/journals/jco/jco26.html#Jiang13,https://doi.org/10.1007/s10878-012-9480-0 +Yunfang Tang,Total weight choosability of Mycielski graphs.,2017,33,J. Comb. Optim.,1,db/journals/jco/jco33.html#TangZ17,https://doi.org/10.1007/s10878-015-9943-1 +Guo Wei,Optimization Model and Algorithm for Crew Management During Airline Irregular Operations.,1997,1,J. Comb. Optim.,3,db/journals/jco/jco1.html#WeiYS97,https://doi.org/10.1023/A:1009780410798 +Ali Dehghan 0001,On strongly planar not-all-equal 3SAT.,2016,32,J. Comb. Optim.,3,db/journals/jco/jco32.html#Dehghan16,https://doi.org/10.1007/s10878-015-9894-6 +Sanguthevar Rajasekaran,Efficient Algorithms for Similarity Search.,2001,5,J. Comb. Optim.,1,db/journals/jco/jco5.html#RajasekaranHLNPSS01,https://doi.org/10.1023/A:1009897903540 +Dongyue Liang,Approximation algorithms for minimum weight partial connected set cover problem.,2016,31,J. Comb. Optim.,2,db/journals/jco/jco31.html#LiangZL0J16,https://doi.org/10.1007/s10878-014-9782-5 +Valmir Carneiro Barbosa,A Novel Evolutionary Formulation of the Maximum Independent Set Problem.,2004,8,J. Comb. Optim.,4,db/journals/jco/jco8.html#BarbosaC04,https://doi.org/10.1007/s10878-004-4835-9 +Falk Hüffner,Separator-based data reduction for signed graph balancing.,2010,20,J. Comb. Optim.,4,db/journals/jco/jco20.html#HuffnerBN10,https://doi.org/10.1007/s10878-009-9212-2 +Odile Favaron,On the total domination subdivision number in some classes of graphs.,2010,20,J. Comb. Optim.,1,db/journals/jco/jco20.html#FavaronKKS10,https://doi.org/10.1007/s10878-008-9193-6 +Natalia Vanetik,On the fractionality of the path packing problem.,2012,24,J. Comb. Optim.,4,db/journals/jco/jco24.html#Vanetik12,https://doi.org/10.1007/s10878-011-9405-3 +Jianping Li,Maximizing Profits of Routing in WDM Networks.,2005,10,J. Comb. Optim.,2,db/journals/jco/jco10.html#LiLWZ05,https://doi.org/10.1007/s10878-005-2263-0 +Lopamudra Mukherjee,Generalized median graphs and applications.,2009,17,J. Comb. Optim.,1,db/journals/jco/jco17.html#MukherjeeSPXZB09,https://doi.org/10.1007/s10878-008-9184-7 +Fatiha Bendali,Half integer extreme points in the linear relaxation of the 2-edge-connected subgraph polyhedron.,2009,18,J. Comb. Optim.,1,db/journals/jco/jco18.html#BendaliM09,https://doi.org/10.1007/s10878-007-9134-9 +Wenming Zhang,Optimal algorithms for online time series search and one-way trading with interrelated prices.,2012,23,J. Comb. Optim.,2,db/journals/jco/jco23.html#ZhangXZD12,https://doi.org/10.1007/s10878-010-9344-4 +Leah Epstein,The cost of selfishness for maximizing the minimum load on uniformly related machines.,2014,27,J. Comb. Optim.,4,db/journals/jco/jco27.html#EpsteinKS14,https://doi.org/10.1007/s10878-012-9555-y +Lili Mei,Approximation strategy-proof mechanisms for obnoxious facility location on a line.,2018,36,J. Comb. Optim.,2,db/journals/jco/jco36.html#MeiYZ18,https://doi.org/10.1007/s10878-016-0105-x +Vincenzo Cutello,An immune algorithm with stochastic aging and kullback entropy for the chromatic number problem.,2007,14,J. Comb. Optim.,1,db/journals/jco/jco14.html#CutelloNP07,https://doi.org/10.1007/s10878-006-9036-2 +Borut Luzar,On vertex-parity edge-colorings.,2018,35,J. Comb. Optim.,2,db/journals/jco/jco35.html#LuzarPS18,https://doi.org/10.1007/s10878-017-0178-1 +Federico Della Croce,Efficient algorithms for the max k-vertex cover problem.,2014,28,J. Comb. Optim.,3,db/journals/jco/jco28.html#CroceP14,https://doi.org/10.1007/s10878-012-9575-7 +Saïd Hanafi,Resolution Search and Dynamic Branch-and-Bound.,2002,6,J. Comb. Optim.,4,db/journals/jco/jco6.html#HanafiG02,https://doi.org/10.1023/A:1019573820792 +Ilias S. Kotsireas,Competent genetic algorithms for weighing matrices.,2012,24,J. Comb. Optim.,4,db/journals/jco/jco24.html#KotsireasKPS12,https://doi.org/10.1007/s10878-011-9404-4 +Wun-Tat Chan,Efficient algorithms for finding a longest common increasing subsequence.,2007,13,J. Comb. Optim.,3,db/journals/jco/jco13.html#ChanZFYZ07,https://doi.org/10.1007/s10878-006-9031-7 +Hung Q. Ngo 0001,A linear programming duality approach to analyzing strictly nonblocking d-ary multilog networks under general crosstalk constraints.,2011,21,J. Comb. Optim.,1,db/journals/jco/jco21.html#NgoLW11,https://doi.org/10.1007/s10878-009-9240-y +Ilias S. Kotsireas,A modified power spectral density test applied to weighing matrices with small weight.,2011,22,J. Comb. Optim.,4,db/journals/jco/jco22.html#KotsireasKP11,https://doi.org/10.1007/s10878-010-9335-5 +Panos M. Pardalos,Preface.,2002,6,J. Comb. Optim.,3,db/journals/jco/jco6.html#PardalosW02,https://doi.org/10.1023/A:1014834024774 +Roman E. Shangin,Heuristics for the network design problem with connectivity requirements.,2016,31,J. Comb. Optim.,4,db/journals/jco/jco31.html#ShanginP16,https://doi.org/10.1007/s10878-015-9834-5 +Huilan Chang,Strongly 2-shape-sortability of vector partitions.,2006,11,J. Comb. Optim.,4,db/journals/jco/jco11.html#ChangG06,https://doi.org/10.1007/s10878-006-8209-3 +Huijuan Wang,Total coloring of planar graphs without adjacent short cycles.,2017,33,J. Comb. Optim.,1,db/journals/jco/jco33.html#WangLGZWG17,https://doi.org/10.1007/s10878-015-9954-y +Mauro Dell'Amico,Reduction of the Three-Partition Problem.,1999,3,J. Comb. Optim.,1,db/journals/jco/jco3.html#DellAmicoM99,https://doi.org/10.1023/A:1009856820553 +Pratik Worah,Rank bounds for a hierarchy of Lovász and Schrijver.,2015,30,J. Comb. Optim.,3,db/journals/jco/jco30.html#Worah15,https://doi.org/10.1007/s10878-013-9662-4 +Jizhu Nan,New error-correcting pooling designs associated with finite vector spaces.,2010,20,J. Comb. Optim.,1,db/journals/jco/jco20.html#NanG10,https://doi.org/10.1007/s10878-008-9197-2 +Jie Wang,Medial Axis and Optimal Locations for Min-Max Sphere Packing.,2000,4,J. Comb. Optim.,4,db/journals/jco/jco4.html#Wang00,https://doi.org/10.1023/A:1009889628489 +Ming Liu 0008,An FPTAS for uniform machine scheduling to minimize makespan with linear deterioration.,2012,23,J. Comb. Optim.,4,db/journals/jco/jco23.html#LiuZCZ12,https://doi.org/10.1007/s10878-010-9364-0 +Chun-Hung Liu,Roman domination on strongly chordal graphs.,2013,26,J. Comb. Optim.,3,db/journals/jco/jco26.html#LiuC13,https://doi.org/10.1007/s10878-012-9482-y +Ulrich Pferschy,Approximation of knapsack problems with conflict and forcing graphs.,2017,33,J. Comb. Optim.,4,db/journals/jco/jco33.html#PferschyS17,https://doi.org/10.1007/s10878-016-0035-7 +Natashia Boland,Scheduling arc shut downs in a network to maximize flow over time with a bounded number of jobs per time period.,2016,32,J. Comb. Optim.,3,db/journals/jco/jco32.html#BolandKK16,https://doi.org/10.1007/s10878-015-9910-x +Victor Loumngam Kamga,2-Distance vertex-distinguishing index of subcubic graphs.,2018,36,J. Comb. Optim.,1,db/journals/jco/jco36.html#KamgaWWC18,https://doi.org/10.1007/s10878-018-0288-4 +Yannis Marinakis,A Hybrid Genetic-GRASP Algorithm Using Lagrangean Relaxation for the Traveling Salesman Problem.,2005,10,J. Comb. Optim.,4,db/journals/jco/jco10.html#MarinakisMP05,https://doi.org/10.1007/s10878-005-4921-7 +Rom Pinchasi,Crossing edges and faces of line arrangements in the plane.,2016,31,J. Comb. Optim.,2,db/journals/jco/jco31.html#Pinchasi16,https://doi.org/10.1007/s10878-014-9769-2 +Nanda Piersma,A Probabilistic Analysis of the Capacitated Facility Location Problem.,1999,3,J. Comb. Optim.,1,db/journals/jco/jco3.html#Piersma99,https://doi.org/10.1023/A:1009861004623 +Ming Liu 0008,An optimal online algorithm for single machine scheduling to minimize total general completion time.,2012,23,J. Comb. Optim.,2,db/journals/jco/jco23.html#LiuCXH12,https://doi.org/10.1007/s10878-010-9348-0 +Chao Li,Expected computations on color spanning sets.,2015,29,J. Comb. Optim.,3,db/journals/jco/jco29.html#LiFLZZ15,https://doi.org/10.1007/s10878-014-9764-7 +Yuehua Bu,An optimal square coloring of planar graphs.,2012,24,J. Comb. Optim.,4,db/journals/jco/jco24.html#BuZ12,https://doi.org/10.1007/s10878-011-9409-z +Foto N. Afrati,Scheduling in Switching Networks with Set-Up Delays.,2005,9,J. Comb. Optim.,1,db/journals/jco/jco9.html#AfratiABM05,https://doi.org/10.1007/s10878-005-5483-4 +Stéphane Bessy,Enumerating the edge-colourings and total colourings of a regular graph.,2013,25,J. Comb. Optim.,4,db/journals/jco/jco25.html#BessyH13,https://doi.org/10.1007/s10878-011-9448-5 +Yuni Iwamasa,On a general framework for network representability in discrete optimization.,2018,36,J. Comb. Optim.,3,db/journals/jco/jco36.html#Iwamasa18,https://doi.org/10.1007/s10878-017-0136-y +Etienne de Klerk,On Approximate Graph Colouring and MAX-k-CUT Algorithms Based on the theta-Function.,2004,8,J. Comb. Optim.,3,db/journals/jco/jco8.html#KlerkPW04,https://doi.org/10.1023/B:JOCO.0000038911.67280.3f +Joaquim Gabarró,The computational complexity of QoS measures for orchestrations - The computational complexity of QoS measures.,2017,34,J. Comb. Optim.,4,db/journals/jco/jco34.html#GabarroGS17,https://doi.org/10.1007/s10878-017-0146-9 +Wei Ding 0006,An FPTAS for generalized absolute 1-center problem in vertex-weighted graphs.,2017,34,J. Comb. Optim.,4,db/journals/jco/jco34.html#DingQ17,https://doi.org/10.1007/s10878-017-0130-4 +Dongxiao Yu,Distributed wireless link scheduling in the SINR model.,2016,32,J. Comb. Optim.,1,db/journals/jco/jco32.html#YuWHYL16,https://doi.org/10.1007/s10878-015-9876-8 +Zhigang Cao,A note on anti-coordination and social interactions.,2013,26,J. Comb. Optim.,4,db/journals/jco/jco26.html#CaoY13,https://doi.org/10.1007/s10878-012-9486-7 +Anna Angelucci,On the sequential price of anarchy of isolation games.,2015,29,J. Comb. Optim.,1,db/journals/jco/jco29.html#AngelucciBFM15,https://doi.org/10.1007/s10878-013-9694-9 +Guifu Su,Maximally edge-connected graphs and Zeroth-order general Randić* index for α and#8804* -1.,2016,31,J. Comb. Optim.,1,db/journals/jco/jco31.html#SuXSL16,https://doi.org/10.1007/s10878-014-9728-y +Akira Suzuki,Reconfiguration of dominating sets.,2016,32,J. Comb. Optim.,4,db/journals/jco/jco32.html#SuzukiMN16,https://doi.org/10.1007/s10878-015-9947-x +Serafino Cicerone,Recoverable robust timetabling for single delay: Complexity and polynomial algorithms for special cases.,2009,18,J. Comb. Optim.,3,db/journals/jco/jco18.html#CiceroneDSFN09,https://doi.org/10.1007/s10878-009-9247-4 +Roger Z. Ríos-Mercado,The Flow Shop Scheduling Polyhedron with Setup Time.,2003,7,J. Comb. Optim.,3,db/journals/jco/jco7.html#Rios-MercadoB03,https://doi.org/10.1023/A:1027372722187 +Yong Zhang 0001,Online algorithms for 1-space bounded multi dimensional bin packing and hypercube packing.,2013,26,J. Comb. Optim.,2,db/journals/jco/jco26.html#ZhangCTH13,https://doi.org/10.1007/s10878-012-9457-z +Ping Zhao,A generalization of Macula's disjunct matrices.,2011,22,J. Comb. Optim.,4,db/journals/jco/jco22.html#ZhaoDW11,https://doi.org/10.1007/s10878-010-9294-x +François Le Gall,Property testing for cyclic groups and beyond.,2013,26,J. Comb. Optim.,4,db/journals/jco/jco26.html#GallY13,https://doi.org/10.1007/s10878-011-9445-8 +Anja Feldmann,Optimal On-Line Scheduling of Parallel Jobs with Dependencies.,1998,1,J. Comb. Optim.,4,db/journals/jco/jco1.html#FeldmannKST98,https://doi.org/10.1023/A:1009794729459 +Cong Tian,Transformation from PLTL to automata via NFGs.,2015,29,J. Comb. Optim.,2,db/journals/jco/jco29.html#TianDY15,https://doi.org/10.1007/s10878-013-9601-4 +Hiroshi Nagamochi,An Edge-Splitting Algorithm in Planar Graphs.,2003,7,J. Comb. Optim.,2,db/journals/jco/jco7.html#NagamochiE03,https://doi.org/10.1023/A:1024470929537 +Chihao Zhang,Radiation hybrid map construction problem parameterized.,2014,27,J. Comb. Optim.,1,db/journals/jco/jco27.html#ZhangJZ14,https://doi.org/10.1007/s10878-013-9608-x +Aimal Rextin,Computing maximum upward planar subgraphs of single-source embedded digraphs.,2013,25,J. Comb. Optim.,3,db/journals/jco/jco25.html#RextinH13,https://doi.org/10.1007/s10878-010-9373-z +Chaomin Luo,A nonlinear optimization methodology for VLSI fixed-outline floorplanning.,2008,16,J. Comb. Optim.,4,db/journals/jco/jco16.html#LuoAV08,https://doi.org/10.1007/s10878-008-9148-y +çigdem Güler,Capacity inverse minimum cost flow problem.,2010,19,J. Comb. Optim.,1,db/journals/jco/jco19.html#GulerH10,https://doi.org/10.1007/s10878-008-9159-8 +Muhuo Liu,On judicious partitions of graphs.,2016,31,J. Comb. Optim.,4,db/journals/jco/jco31.html#LiuX16,https://doi.org/10.1007/s10878-015-9828-3 +Zhi-Li Zhang,Closed-Form Deterministic End-to-End Performance Bounds for the Generalized Processor Sharing Scheduling Discipline.,1998,1,J. Comb. Optim.,4,db/journals/jco/jco1.html#ZhangLT98,https://doi.org/10.1023/A:1009707231276 +Yinfeng Xu,The canadian traveller problem and its competitive analysis.,2009,18,J. Comb. Optim.,2,db/journals/jco/jco18.html#XuHSZZ09,https://doi.org/10.1007/s10878-008-9156-y +Ioannis Mourtos,Cardinality constraints and systems of restricted representatives.,2016,31,J. Comb. Optim.,3,db/journals/jco/jco31.html#Mourtos16,https://doi.org/10.1007/s10878-014-9810-5 +Weiya Zhong,Single machine scheduling problems with subcontracting options.,2013,26,J. Comb. Optim.,3,db/journals/jco/jco26.html#ZhongH13,https://doi.org/10.1007/s10878-011-9442-y +Xin Chen,On sorting unsigned permutations by double-cut-and-joins.,2013,25,J. Comb. Optim.,3,db/journals/jco/jco25.html#Chen13,https://doi.org/10.1007/s10878-010-9369-8 +Gerard Jennhwa Chang,On the k-power domination of hypergraphs.,2015,30,J. Comb. Optim.,4,db/journals/jco/jco30.html#ChangR15,https://doi.org/10.1007/s10878-013-9688-7 +Donghyun Kim 0001,Computing an effective decision making group of a society using social network analysis.,2014,28,J. Comb. Optim.,3,db/journals/jco/jco28.html#KimLALTO14,https://doi.org/10.1007/s10878-013-9687-8 +Chung Keung Poon,Opportunistic data structures for range queries.,2006,11,J. Comb. Optim.,2,db/journals/jco/jco11.html#PoonY06,https://doi.org/10.1007/s10878-006-7122-0 +Hongzhuan Wang,Further properties on the degree distance of graphs.,2016,31,J. Comb. Optim.,1,db/journals/jco/jco31.html#WangK16,https://doi.org/10.1007/s10878-014-9757-6 +Hakim Akeb,A hybrid beam search looking-ahead algorithm for the circular packing problem.,2010,20,J. Comb. Optim.,2,db/journals/jco/jco20.html#AkebH10,https://doi.org/10.1007/s10878-008-9191-8 +Wei-Fan Wang,The entire choosability of plane graphs.,2016,31,J. Comb. Optim.,3,db/journals/jco/jco31.html#WangWH016,https://doi.org/10.1007/s10878-014-9819-9 +Wei Liu 0008,Energy conservation through resource-aware movement in heterogeneous mobile ad hoc networks.,2006,11,J. Comb. Optim.,1,db/journals/jco/jco11.html#LiuZFL06,https://doi.org/10.1007/s10878-006-5974-y +Eduardo G. Pardo,Embedding signed graphs in the line - Heuristics to solve MinSA problem.,2015,29,J. Comb. Optim.,2,db/journals/jco/jco29.html#PardoST15,https://doi.org/10.1007/s10878-013-9604-1 +Dimitri Watel,A practical greedy approximation for the directed Steiner tree problem.,2016,32,J. Comb. Optim.,4,db/journals/jco/jco32.html#WatelW16,https://doi.org/10.1007/s10878-016-0074-0 +Qingqiong Cai,The 3-rainbow index and connected dominating sets.,2016,31,J. Comb. Optim.,3,db/journals/jco/jco31.html#CaiLZ16,https://doi.org/10.1007/s10878-014-9815-0 +Mourad El Ouali,An approximation algorithm for the partial vertex cover problem in hypergraphs.,2016,31,J. Comb. Optim.,2,db/journals/jco/jco31.html#OualiFS16,https://doi.org/10.1007/s10878-014-9793-2 +Clément Charpentier,Trinque problem: covering complete graphs by plane degree-bounded hypergraphs.,2017,33,J. Comb. Optim.,2,db/journals/jco/jco33.html#CharpentierGL17,https://doi.org/10.1007/s10878-015-9978-3 +Boaz Farbstein,Maximum coverage problem with group budget constraints.,2017,34,J. Comb. Optim.,3,db/journals/jco/jco34.html#FarbsteinL17,https://doi.org/10.1007/s10878-016-0102-0 +Tim Wylie,Enabling high-dimensional range queries using kNN indexing techniques: approaches and empirical results.,2016,32,J. Comb. Optim.,4,db/journals/jco/jco32.html#WylieSA16,https://doi.org/10.1007/s10878-015-9927-1 +Qian Cao,Semi-online scheduling with known maximum job size on two uniform machines.,2010,20,J. Comb. Optim.,4,db/journals/jco/jco20.html#CaoL10,https://doi.org/10.1007/s10878-009-9214-0 +Xiaohan Cheng,The adjacent vertex distinguishing total choosability of planar graphs with maximum degree at least eleven.,2018,35,J. Comb. Optim.,1,db/journals/jco/jco35.html#ChengW18,https://doi.org/10.1007/s10878-017-0149-6 +Yuichi Asahiro,Approximation algorithms for the graph orientation minimizing the maximum weighted outdegree.,2011,22,J. Comb. Optim.,1,db/journals/jco/jco22.html#AsahiroJMOZ11,https://doi.org/10.1007/s10878-009-9276-z +Gautam Appa,The Wheels of the Orthogonal Latin Squares Polytope: Classification and Valid Inequalities.,2005,10,J. Comb. Optim.,4,db/journals/jco/jco10.html#AppaMM05,https://doi.org/10.1007/s10878-005-4924-4 +John P. Georges,On zero-sum ™4*2jk -magic graphs.,2017,34,J. Comb. Optim.,1,db/journals/jco/jco34.html#GeorgesMW17,https://doi.org/10.1007/s10878-016-0069-x +Yingfan L. Du,A new bound on maximum independent set and minimum connected dominating set in unit disk graphs.,2015,30,J. Comb. Optim.,4,db/journals/jco/jco30.html#DuD15,https://doi.org/10.1007/s10878-013-9690-0 +Robert W. Irving,Approximation algorithms for hard variants of the stable marriage and hospitals/residents problems.,2008,16,J. Comb. Optim.,3,db/journals/jco/jco16.html#IrvingM08,https://doi.org/10.1007/s10878-007-9133-x +Sheng-Chyang Liaw,Generalized Diameters and Rabin Numbers of Networks.,1998,2,J. Comb. Optim.,4,db/journals/jco/jco2.html#LiawC98,https://doi.org/10.1023/A:1009728720073 +Niranjan Chakravarthy,Controlling epileptic seizures in a neural mass model.,2009,17,J. Comb. Optim.,1,db/journals/jco/jco17.html#ChakravarthySTI09,https://doi.org/10.1007/s10878-008-9182-9 +Michael Holzhauser,Budget-constrained minimum cost flows.,2016,31,J. Comb. Optim.,4,db/journals/jco/jco31.html#HolzhauserKT16,https://doi.org/10.1007/s10878-015-9865-y +Jay Mahadeokar,Faster algorithm to find anti-risk path between two nodes of an undirected graph.,2014,27,J. Comb. Optim.,4,db/journals/jco/jco27.html#MahadeokarS14,https://doi.org/10.1007/s10878-012-9553-0 +Gerold Jäger,Improved Approximation Algorithms for Maximum Graph Partitioning Problems.,2005,10,J. Comb. Optim.,2,db/journals/jco/jco10.html#JagerS05,https://doi.org/10.1007/s10878-005-2269-7 +Li-ying Hou,Online scheduling on uniform machines with two hierarchies.,2012,24,J. Comb. Optim.,4,db/journals/jco/jco24.html#HouK12,https://doi.org/10.1007/s10878-011-9410-6 +Fei Li 0001,Scheduling Packets with Values and Deadlines in Size-Bounded Buffers.,2013,25,J. Comb. Optim.,2,db/journals/jco/jco25.html#Li13,https://doi.org/10.1007/s10878-011-9419-x +B. S. Panda,Minimum paired-dominating set in chordal bipartite graphs and perfect elimination bipartite graphs.,2013,26,J. Comb. Optim.,4,db/journals/jco/jco26.html#PandaP13,https://doi.org/10.1007/s10878-012-9483-x +Qilong Feng,Randomized parameterized algorithms for P2-Packing and Co-Path Packing problems.,2015,29,J. Comb. Optim.,1,db/journals/jco/jco29.html#FengWLC15,https://doi.org/10.1007/s10878-013-9691-z +Corinna Gottschalk,Optimization problems with color-induced budget constraints.,2018,36,J. Comb. Optim.,3,db/journals/jco/jco36.html#GottschalkLPW18,https://doi.org/10.1007/s10878-017-0182-5 +Nadia Brauner,Lawler's minmax cost problem under uncertainty.,2017,34,J. Comb. Optim.,1,db/journals/jco/jco34.html#BraunerFS17,https://doi.org/10.1007/s10878-016-0051-7 +Jing Ai,Coverage by directional sensors in randomly deployed wireless sensor networks.,2006,11,J. Comb. Optim.,1,db/journals/jco/jco11.html#AiA06,https://doi.org/10.1007/s10878-006-5975-x +Limin Wang,A PTAS for minimum weighted connected vertex cover $$P_3$$ P 3 problem in 3-dimensional wireless sensor networks.,2017,33,J. Comb. Optim.,1,db/journals/jco/jco33.html#WangDZZ17,https://doi.org/10.1007/s10878-015-9937-z +Mingen Lin,Almost optimal solutions for bin coloring problems.,2008,16,J. Comb. Optim.,1,db/journals/jco/jco16.html#LinLX08,https://doi.org/10.1007/s10878-007-9094-0 +Y. Y. Li,Efficient Heuristics for Orientation Metric and Euclidean Steiner Tree Problems.,2000,4,J. Comb. Optim.,1,db/journals/jco/jco4.html#LiLW00,https://doi.org/10.1023/A:1009837006569 +Juan Liu 0001,On domination number of Cartesian product of directed paths.,2011,22,J. Comb. Optim.,4,db/journals/jco/jco22.html#LiuZM11,https://doi.org/10.1007/s10878-010-9314-x +Junxing Wang,A simple Byzantine Generals protocol.,2014,27,J. Comb. Optim.,3,db/journals/jco/jco27.html#Wang14,https://doi.org/10.1007/s10878-012-9534-3 +Shou-Jun Xu,Complete forcing numbers of primitive coronoids.,2016,32,J. Comb. Optim.,1,db/journals/jco/jco32.html#XuLCZ16,https://doi.org/10.1007/s10878-015-9881-y +Roberto Montemanni,Ant Colony System for a Dynamic Vehicle Routing Problem.,2005,10,J. Comb. Optim.,4,db/journals/jco/jco10.html#MontemanniGRD05,https://doi.org/10.1007/s10878-005-4922-6 +Guifu Su,Some results on the reciprocal sum-degree distance of graphs.,2015,30,J. Comb. Optim.,3,db/journals/jco/jco30.html#SuXSC15,https://doi.org/10.1007/s10878-013-9645-5 +Wenqi Ju,Largest area convex hull of imprecise data based on axis-aligned squares.,2013,26,J. Comb. Optim.,4,db/journals/jco/jco26.html#JuLZD13,https://doi.org/10.1007/s10878-012-9488-5 +Virginie Gabrel,Strengthened 0-1 linear formulation for the daily satellite mission planning.,2006,11,J. Comb. Optim.,3,db/journals/jco/jco11.html#Gabrel06,https://doi.org/10.1007/s10878-006-7912-4 +Babak Samadi,A solution to an open problem on lower against number in graphs.,2016,31,J. Comb. Optim.,3,db/journals/jco/jco31.html#Samadi16,https://doi.org/10.1007/s10878-014-9813-2 +Jaromír Kukal,Quantile and mean value measures of search process complexity.,2018,35,J. Comb. Optim.,4,db/journals/jco/jco35.html#KukalM18,https://doi.org/10.1007/s10878-018-0251-4 +Liangyu Chen,An upper bound of Heilbronn number for eight points in triangles.,2014,28,J. Comb. Optim.,4,db/journals/jco/jco28.html#ChenZZ14,https://doi.org/10.1007/s10878-012-9585-5 +Elena Fernández,Even Cycles and Perfect Matching Problems with Side Constraints.,2004,8,J. Comb. Optim.,3,db/journals/jco/jco8.html#FernandezM04,https://doi.org/10.1023/B:JOCO.0000038916.51082.5e +Imed Kacem,Efficient approximation schemes for the maximum lateness minimization on a single machine with a fixed operator or machine non-availability interval.,2016,32,J. Comb. Optim.,3,db/journals/jco/jco32.html#KacemKS16,https://doi.org/10.1007/s10878-015-9924-4 +Leah Epstein,Separating online scheduling algorithms with the relative worst order ratio.,2006,12,J. Comb. Optim.,4,db/journals/jco/jco12.html#EpsteinFK06,https://doi.org/10.1007/s10878-006-9005-9 +Cui Wang,An improved approximation algorithm for the shortest link scheduling in wireless networks under SINR and hypergraph models.,2016,32,J. Comb. Optim.,4,db/journals/jco/jco32.html#WangYYHY16,https://doi.org/10.1007/s10878-015-9908-4 +Zheng Fang,Efficient identifications of structural similarities for graphs.,2014,27,J. Comb. Optim.,2,db/journals/jco/jco27.html#FangW14,https://doi.org/10.1007/s10878-012-9505-8 +Chen Liao,Approximation scheme for restricted discrete gate sizing targeting delay minimization.,2011,21,J. Comb. Optim.,4,db/journals/jco/jco21.html#LiaoH11,https://doi.org/10.1007/s10878-009-9267-0 +Weifan Wang,Planar graphs without chordal 5-cycles are 2-good.,2018,35,J. Comb. Optim.,3,db/journals/jco/jco35.html#WangWHW18,https://doi.org/10.1007/s10878-017-0243-9 +Xiangtao Li,Modified differential evolution with self-adaptive parameters method.,2016,31,J. Comb. Optim.,2,db/journals/jco/jco31.html#LiY16,https://doi.org/10.1007/s10878-014-9773-6 +Yongjie Yang,Possible winner problems on partial tournaments: a parameterized study.,2017,33,J. Comb. Optim.,3,db/journals/jco/jco33.html#YangG17,https://doi.org/10.1007/s10878-016-0012-1 +Ioannis Caragiannis,A 6/5-approximation algorithm for the maximum 3-cover problem.,2013,25,J. Comb. Optim.,1,db/journals/jco/jco25.html#CaragiannisM13,https://doi.org/10.1007/s10878-011-9417-z +Seyed Mahmoud Sheikholeslami,Signed Roman domination in digraphs.,2015,30,J. Comb. Optim.,3,db/journals/jco/jco30.html#SheikholeslamiV15,https://doi.org/10.1007/s10878-013-9648-2 +Karuvachery Pravas,Convex median and anti-median at prescribed distance.,2017,33,J. Comb. Optim.,3,db/journals/jco/jco33.html#PravasV17,https://doi.org/10.1007/s10878-016-0022-z +Yan Zhang,Efficient accuracy evaluation for multi-modal sensed data.,2016,32,J. Comb. Optim.,4,db/journals/jco/jco32.html#ZhangWGL16,https://doi.org/10.1007/s10878-015-9920-8 +Hongyu He,Resource constrained scheduling with general truncated job-dependent learning effect.,2017,33,J. Comb. Optim.,2,db/journals/jco/jco33.html#HeLW17,https://doi.org/10.1007/s10878-015-9984-5 +Shyong Jian Shyu,The Minimal Spanning Tree Preservation Approaches for DNA Multiple Sequence Alignment and Evolutionary Tree Construction.,2004,8,J. Comb. Optim.,4,db/journals/jco/jco8.html#ShyuTL04,https://doi.org/10.1007/s10878-004-4837-7 +Ning Chen,On revenue maximization with sharp multi-unit demands.,2016,31,J. Comb. Optim.,3,db/journals/jco/jco31.html#ChenDGZ16,https://doi.org/10.1007/s10878-014-9817-y +Chiang Lin,Minimum statuses of connected graphs with fixed maximum degree and order.,2012,24,J. Comb. Optim.,3,db/journals/jco/jco24.html#LinTSZ12,https://doi.org/10.1007/s10878-011-9412-4 +Kenneth A. Berman,Why locally-fair maximal flows in client-server networks perform well.,2011,22,J. Comb. Optim.,3,db/journals/jco/jco22.html#BermanY11,https://doi.org/10.1007/s10878-010-9321-y +Alireza Rahimi-Vahed,A multi-objective particle swarm for a flow shop scheduling problem.,2007,13,J. Comb. Optim.,1,db/journals/jco/jco13.html#Rahimi-VahedM07,https://doi.org/10.1007/s10878-006-9015-7 +Bang Ye Wu,On the clustered Steiner tree problem.,2015,30,J. Comb. Optim.,2,db/journals/jco/jco30.html#WuL15,https://doi.org/10.1007/s10878-014-9772-7 +Zhengnan Shi,An online distributed gossiping protocol for mobile networks.,2006,11,J. Comb. Optim.,1,db/journals/jco/jco11.html#ShiS06,https://doi.org/10.1007/s10878-006-5979-6 +Shouling Ji,Practical unicast and convergecast scheduling schemes for cognitive radio networks.,2013,26,J. Comb. Optim.,1,db/journals/jco/jco26.html#JiUBC13,https://doi.org/10.1007/s10878-011-9446-7 +Neethi K. S.,Maximum cardinality neighbourly sets in quadrilateral free graphs.,2017,33,J. Comb. Optim.,2,db/journals/jco/jco33.html#SS17a,https://doi.org/10.1007/s10878-015-9972-9 +Yong He,Ordinal On-Line Scheduling for Maximizing the Minimum Machine Completion Time.,2002,6,J. Comb. Optim.,2,db/journals/jco/jco6.html#HeT02,https://doi.org/10.1023/A:1013855712183 +Qiang Zhang,Strategyproof mechanism design for facility location games with weighted agents on a line.,2014,28,J. Comb. Optim.,4,db/journals/jco/jco28.html#ZhangL14a,https://doi.org/10.1007/s10878-013-9598-8 +Sergey Bereg,Optimizing some constructions with bars: new geometric knapsack problems.,2016,31,J. Comb. Optim.,3,db/journals/jco/jco31.html#BeregDFLPU16,https://doi.org/10.1007/s10878-014-9816-z +You Lu,On the p-reinforcement and the complexity.,2015,29,J. Comb. Optim.,2,db/journals/jco/jco29.html#LuHX15,https://doi.org/10.1007/s10878-013-9597-9 +Wu-Hsiung Lin,Resource-sharing systems and hypergraph colorings.,2011,22,J. Comb. Optim.,4,db/journals/jco/jco22.html#LinC11,https://doi.org/10.1007/s10878-010-9295-9 +Hiroshi Fujiwara,Average-case competitive analyses for one-way trading.,2011,21,J. Comb. Optim.,1,db/journals/jco/jco21.html#FujiwaraIS11,https://doi.org/10.1007/s10878-009-9239-4 +Khaled M. Elbassioni,On the readability of monotone Boolean formulae.,2011,22,J. Comb. Optim.,3,db/journals/jco/jco22.html#ElbassioniMR11,https://doi.org/10.1007/s10878-009-9283-0 +Hans Kellerer,Improved Dynamic Programming in Connection with an FPTAS for the Knapsack Problem.,2004,8,J. Comb. Optim.,1,db/journals/jco/jco8.html#KellererP04,https://doi.org/10.1023/B:JOCO.0000021934.29833.6b +Guohui Lin,An Improved Approximation Algorithm for Multicast k-Tree Routing.,2005,9,J. Comb. Optim.,4,db/journals/jco/jco9.html#Lin05,https://doi.org/10.1007/s10878-005-1776-x +J. Hyam Rubinstein,Compression Theorems and Steiner Ratios on Spheres.,1997,1,J. Comb. Optim.,1,db/journals/jco/jco1.html#RubinsteinW97,https://doi.org/10.1023/A:1009711003807 +Xiaotie Deng,Robot Map Verification of a Graph World.,2001,5,J. Comb. Optim.,4,db/journals/jco/jco5.html#DengMM01,https://doi.org/10.1023/A:1011688823715 +Qian Ma,Linear time-dependent constraints programming with MSVL.,2014,27,J. Comb. Optim.,4,db/journals/jco/jco27.html#MaD14,https://doi.org/10.1007/s10878-012-9551-2 +Chuangyin Dang,Batch-Processing Scheduling with Setup Times.,2004,8,J. Comb. Optim.,2,db/journals/jco/jco8.html#DangK04,https://doi.org/10.1023/B:JOCO.0000031415.55216.2a +Xiaohua Jia,Power Assignment for k-Connectivity in Wireless Ad Hoc Networks.,2005,9,J. Comb. Optim.,2,db/journals/jco/jco9.html#JiaKMWY05,https://doi.org/10.1007/s10878-005-6858-2 +Tadao Takaoka,A simplified algorithm for the all pairs shortest path problem with O(n 2logn) expected time.,2013,25,J. Comb. Optim.,2,db/journals/jco/jco25.html#Takaoka13,https://doi.org/10.1007/s10878-012-9550-3 +Jianer Chen,Special Issue for FAW 2014.,2016,32,J. Comb. Optim.,1,db/journals/jco/jco32.html#ChenH16,https://doi.org/10.1007/s10878-016-0042-8 +Qilong Feng,Kernelization and randomized Parameterized algorithms for Co-path Set problem.,2016,32,J. Comb. Optim.,1,db/journals/jco/jco32.html#FengZW16,https://doi.org/10.1007/s10878-015-9901-y +Shan Wang,Resource-constrained machine scheduling with machine eligibility restriction and its applications to surgical operations scheduling.,2015,30,J. Comb. Optim.,4,db/journals/jco/jco30.html#WangSW15,https://doi.org/10.1007/s10878-015-9860-3 +Hai Du,An incremental version of the k-center problem on boundary of a convex polygon.,2015,30,J. Comb. Optim.,4,db/journals/jco/jco30.html#DuXZ15,https://doi.org/10.1007/s10878-015-9933-3 +Refael Hassin,Approximation algorithms and hardness results for labeled connectivity problems.,2007,14,J. Comb. Optim.,4,db/journals/jco/jco14.html#HassinMS07,https://doi.org/10.1007/s10878-007-9044-x +Vicky H. Mak-Hau,On the kidney exchange problem: cardinality constrained cycle and chain problems on directed graphs: a survey of integer programming approaches.,2017,33,J. Comb. Optim.,1,db/journals/jco/jco33.html#Mak-Hau17,https://doi.org/10.1007/s10878-015-9932-4 +Reinhard Bürgy,The no-wait job shop with regular objective: a method based on optimal job insertion.,2017,33,J. Comb. Optim.,3,db/journals/jco/jco33.html#BurgyG17,https://doi.org/10.1007/s10878-016-0020-1 +Seyed Mahmoud Sheikholeslami,The total {k}-domatic number of a graph.,2012,23,J. Comb. Optim.,2,db/journals/jco/jco23.html#SheikholeslamiV12,https://doi.org/10.1007/s10878-010-9352-4 +Manouchehr Zaker,First-Fit colorings of graphs with no cycles of a prescribed even length.,2016,32,J. Comb. Optim.,3,db/journals/jco/jco32.html#ZakerS16,https://doi.org/10.1007/s10878-015-9900-z +Vittorio Bilò,On the performance of mildly greedy players in cut games.,2016,32,J. Comb. Optim.,4,db/journals/jco/jco32.html#BiloP16,https://doi.org/10.1007/s10878-015-9898-2 +Jie Ma,Approximate min-max relations on plane graphs.,2013,26,J. Comb. Optim.,1,db/journals/jco/jco26.html#MaYZ13,https://doi.org/10.1007/s10878-011-9440-0 +Frank K. Hwang,The Incremental Group Testing Model for Gap Closing in Sequencing Long Molecules.,2003,7,J. Comb. Optim.,4,db/journals/jco/jco7.html#HwangL03,https://doi.org/10.1023/B:JOCO.0000017381.11696.c6 +Sun-Yuan Hsieh,Edge-fault-tolerant hamiltonicity of locally twisted cubes under conditional edge faults.,2010,19,J. Comb. Optim.,1,db/journals/jco/jco19.html#HsiehW10,https://doi.org/10.1007/s10878-008-9157-x +Sun-Yuan Hsieh,Fault-free mutually independent Hamiltonian cycles in hypercubes with faulty edges.,2007,13,J. Comb. Optim.,2,db/journals/jco/jco13.html#HsiehY07,https://doi.org/10.1007/s10878-006-9018-4 +Jian Tang 0008,Reliable Ad Hoc Routing Based on Mobility Prediction.,2006,11,J. Comb. Optim.,1,db/journals/jco/jco11.html#TangXZ06,https://doi.org/10.1007/s10878-006-5978-7 +Reuven Cohen,On nonlinear multi-covering problems.,2017,33,J. Comb. Optim.,2,db/journals/jco/jco33.html#CohenGLO17,https://doi.org/10.1007/s10878-015-9985-4 +Xiao-Feng Xie,Graph coloring by multiagent fusion search.,2009,18,J. Comb. Optim.,2,db/journals/jco/jco18.html#XieL09,https://doi.org/10.1007/s10878-008-9140-6 +Tzu-Liang Kung,On the maximum number of fault-free mutually independent Hamiltonian cycles in the faulty hypercube.,2014,27,J. Comb. Optim.,2,db/journals/jco/jco27.html#KungLH14,https://doi.org/10.1007/s10878-012-9528-1 +Michael Holzhauser,Maximum flows in generalized processing networks.,2017,33,J. Comb. Optim.,4,db/journals/jco/jco33.html#HolzhauserKT17,https://doi.org/10.1007/s10878-016-0031-y +Wenbin Chen,On the parameterized complexity of the Multi-MCT and Multi-MCST problems.,2011,21,J. Comb. Optim.,2,db/journals/jco/jco21.html#ChenSS11,https://doi.org/10.1007/s10878-009-9220-2 +Fei-Huang Chang,Pooling designs for clone library screening in the inhibitor complex model.,2011,22,J. Comb. Optim.,2,db/journals/jco/jco22.html#ChangCH11,https://doi.org/10.1007/s10878-009-9279-9 +Bo Chen 0002,On-Line Scheduling a Batch Processing System to Minimize Total Weighted Job Completion Time.,2004,8,J. Comb. Optim.,1,db/journals/jco/jco8.html#ChenDZ04,https://doi.org/10.1023/B:JOCO.0000021939.01674.1f +Biao Wu,A polynomially solvable case of optimal linear extension problem of a poset.,2010,20,J. Comb. Optim.,4,db/journals/jco/jco20.html#WuYL10,https://doi.org/10.1007/s10878-009-9218-9 +Telikepalli Kavitha,Popularity at minimum cost.,2014,27,J. Comb. Optim.,3,db/journals/jco/jco27.html#KavithaNN14,https://doi.org/10.1007/s10878-012-9537-0 +Hiroshi Nagamochi,Deterministic õ(nm) Time Edge-Splitting in Undirected Graphs.,1997,1,J. Comb. Optim.,1,db/journals/jco/jco1.html#NagamochiI97,https://doi.org/10.1023/A:1009739202898 +Jun Guo 0004,Metric dimension of some distance-regular graphs.,2013,26,J. Comb. Optim.,1,db/journals/jco/jco26.html#GuoWL13,https://doi.org/10.1007/s10878-012-9459-x +Bettina Klinz,The Steiner Tree Problem in Kalmanson Matrices and in Circulant Matrices.,1999,3,J. Comb. Optim.,1,db/journals/jco/jco3.html#KlinzW99,https://doi.org/10.1023/A:1009881510868 +Andrzej Kisielewicz,Computing the shortest reset words of synchronizing automata.,2015,29,J. Comb. Optim.,1,db/journals/jco/jco29.html#KisielewiczKS15,https://doi.org/10.1007/s10878-013-9682-0 +Ivan Belik,Critical objective function values in linear sum assignment problems.,2018,35,J. Comb. Optim.,3,db/journals/jco/jco35.html#BelikJ18,https://doi.org/10.1007/s10878-017-0240-z +Michael A. Henning,A short proof of a result on a Vizing-like problem for integer total domination.,2010,20,J. Comb. Optim.,3,db/journals/jco/jco20.html#Henning10,https://doi.org/10.1007/s10878-008-9201-x +Bader F. AlBdaiwi,Data aggregation for p-median problems.,2011,21,J. Comb. Optim.,3,db/journals/jco/jco21.html#AlBdaiwiGG11,https://doi.org/10.1007/s10878-009-9251-8 +Shi-Sheng Li,Scheduling two job families on a single machine with two competitive agents.,2016,32,J. Comb. Optim.,3,db/journals/jco/jco32.html#LiCF16,https://doi.org/10.1007/s10878-015-9902-x +Johannes H. Hattingh,Equality in a bound that relates the size and the restrained domination number of a graph.,2016,31,J. Comb. Optim.,4,db/journals/jco/jco31.html#HattinghJ16,https://doi.org/10.1007/s10878-015-9843-4 +Andrei A. Gladky,Flow Shop Scheduling Problems Under Machine-Dependent Precedence Constraints.,2004,8,J. Comb. Optim.,1,db/journals/jco/jco8.html#GladkySS04,https://doi.org/10.1023/B:JOCO.0000021935.66577.09 +Han Xiao 0003,Packing feedback arc sets in reducible flow graphs.,2016,32,J. Comb. Optim.,3,db/journals/jco/jco32.html#Xiao16,https://doi.org/10.1007/s10878-015-9922-6 +Xiaotie Deng,Center and Distinguisher for Strings with Unbounded Alphabet.,2002,6,J. Comb. Optim.,4,db/journals/jco/jco6.html#DengLW02,https://doi.org/10.1023/A:1019545003953 +Xiaoguang Yang,Some inverse min-max network problems under weighted l1 and linfinity norms with bound constraints on changes.,2007,13,J. Comb. Optim.,2,db/journals/jco/jco13.html#YangZ07,https://doi.org/10.1007/s10878-006-9016-6 +Hyunwoo Jung,A 6.55 factor primal-dual approximation algorithm for the connected facility location problem.,2009,18,J. Comb. Optim.,3,db/journals/jco/jco18.html#JungHC09,https://doi.org/10.1007/s10878-009-9227-8 +Jian Cheng,Even factors of graphs.,2017,33,J. Comb. Optim.,4,db/journals/jco/jco33.html#ChengZZ17,https://doi.org/10.1007/s10878-016-0038-4 +Lasse Kiviluoto,Algorithms for finding maximum transitive subtournaments.,2016,31,J. Comb. Optim.,2,db/journals/jco/jco31.html#KiviluotoOV16,https://doi.org/10.1007/s10878-014-9788-z +Deying Li,Approximation algorithms for multicast routing in ad hoc wireless networks.,2011,21,J. Comb. Optim.,3,db/journals/jco/jco21.html#LiZ11,https://doi.org/10.1007/s10878-009-9245-6 +Natalia Vanetik,Path packing and a related optimization problem.,2009,17,J. Comb. Optim.,2,db/journals/jco/jco17.html#Vanetik09,https://doi.org/10.1007/s10878-007-9107-z +Zhaoming Yin,Exemplar or matching: modeling DCJ problems with unequal content genome data.,2016,32,J. Comb. Optim.,4,db/journals/jco/jco32.html#YinTSB16,https://doi.org/10.1007/s10878-015-9940-4 +Yijie Han,Tight bound for matching.,2012,23,J. Comb. Optim.,3,db/journals/jco/jco23.html#Han12,https://doi.org/10.1007/s10878-010-9299-5 +Yiwei Jiang,Online scheduling on parallel machines with two GoS levels.,2008,16,J. Comb. Optim.,1,db/journals/jco/jco16.html#Jiang08,https://doi.org/10.1007/s10878-007-9095-z +Chen Liao,Polynomial time approximation schemes for minimum disk cover problems.,2010,20,J. Comb. Optim.,4,db/journals/jco/jco20.html#LiaoH10,https://doi.org/10.1007/s10878-009-9216-y +Cao An Wang,A New Subgraph of Minimum Weight Triangulations.,1997,1,J. Comb. Optim.,2,db/journals/jco/jco1.html#WangCX97,https://doi.org/10.1023/A:1009796113861 +Dongdong Ge,Geometric rounding: a dependent randomized rounding scheme.,2011,22,J. Comb. Optim.,4,db/journals/jco/jco22.html#GeHYZ11,https://doi.org/10.1007/s10878-010-9320-z +Xiaolan Hu,Neighbor sum distinguishing index of 2-degenerate graphs.,2017,34,J. Comb. Optim.,3,db/journals/jco/jco34.html#HuCLM17,https://doi.org/10.1007/s10878-017-0110-8 +Ling Gai,Blocking Rumor by Cut.,2018,36,J. Comb. Optim.,2,db/journals/jco/jco36.html#GaiDWZB18,https://doi.org/10.1007/s10878-018-0304-8 +Jihong Yan,Optimizing word set coverage for multi-event summarization.,2015,30,J. Comb. Optim.,4,db/journals/jco/jco30.html#YanCWLGZ15,https://doi.org/10.1007/s10878-015-9855-0 +Jie Wang,Optimization Problems in Medical Applications.,2001,5,J. Comb. Optim.,1,db/journals/jco/jco5.html#Wang01,https://doi.org/10.1023/A:1009842914927 +Yingshu Li,On the construction of k-connected m-dominating sets in wireless networks.,2012,23,J. Comb. Optim.,1,db/journals/jco/jco23.html#LiWAB12,https://doi.org/10.1007/s10878-010-9346-2 +Eric Angel,An exponential (matching based) neighborhood for the vehicle routing problem.,2008,15,J. Comb. Optim.,2,db/journals/jco/jco15.html#AngelBP08,https://doi.org/10.1007/s10878-007-9075-3 +John E. Mitchell 0001,Restarting after Branching in the SDP Approach to MAX-CUT and Similar Combinatorial Optimization Problems.,2001,5,J. Comb. Optim.,2,db/journals/jco/jco5.html#Mitchell01,https://doi.org/10.1023/A:1011416130639 +Yongxi Cheng,An efficient FPRAS type group testing procedure to approximate the number of defectives.,2014,27,J. Comb. Optim.,2,db/journals/jco/jco27.html#ChengX14,https://doi.org/10.1007/s10878-012-9516-5 +Joachim Gudmundsson,Close Approximations of Minimum Rectangular Coverings.,1999,3,J. Comb. Optim.,4,db/journals/jco/jco3.html#GudmundssonL99,https://doi.org/10.1023/A:1009879504783 +Ilias S. Kotsireas,Periodic complementary binary sequences and Combinatorial Optimization algorithms.,2010,20,J. Comb. Optim.,1,db/journals/jco/jco20.html#KotsireasKPS10,https://doi.org/10.1007/s10878-008-9194-5 +Zhipeng Cai,Delay efficient opportunistic routing in asynchronous multi-channel cognitive radio networks.,2015,29,J. Comb. Optim.,4,db/journals/jco/jco29.html#CaiDB15,https://doi.org/10.1007/s10878-013-9623-y +Lele Zhang,On-line machine scheduling with batch setups.,2010,20,J. Comb. Optim.,3,db/journals/jco/jco20.html#ZhangW10,https://doi.org/10.1007/s10878-009-9211-3 +Changcun Ma,Hardness of k-Vertex-Connected Subgraph Augmentation Problem.,2010,20,J. Comb. Optim.,3,db/journals/jco/jco20.html#MaKWWSW10,https://doi.org/10.1007/s10878-008-9206-5 +Stefano Coniglio,Lot sizing with storage losses under demand uncertainty.,2018,36,J. Comb. Optim.,3,db/journals/jco/jco36.html#ConiglioKS18,https://doi.org/10.1007/s10878-017-0147-8 +Pinar Heggernes,Strongly chordal and chordal bipartite graphs are sandwich monotone.,2011,22,J. Comb. Optim.,3,db/journals/jco/jco22.html#HeggernesMPS11,https://doi.org/10.1007/s10878-010-9322-x +Liwei Zhong,Preface.,2015,30,J. Comb. Optim.,4,db/journals/jco/jco30.html#ZhongT15,https://doi.org/10.1007/s10878-015-9866-x +Minming Li,Analysis and approximation for bank selection instruction minimization on partitioned memory architecture.,2012,23,J. Comb. Optim.,2,db/journals/jco/jco23.html#LiLXZ12,https://doi.org/10.1007/s10878-010-9365-z +Hai Liu,On optimal placement of relay nodes for reliable connectivity in wireless sensor networks.,2006,11,J. Comb. Optim.,2,db/journals/jco/jco11.html#LiuWJ06,https://doi.org/10.1007/s10878-006-7140-y +Rupaj Kumar Nayak,A low complexity semidefinite relaxation for large-scale MIMO detection.,2018,35,J. Comb. Optim.,2,db/journals/jco/jco35.html#NayakB18,https://doi.org/10.1007/s10878-017-0186-1 +Liying Kang,The p-maxian problem on block graphs.,2010,20,J. Comb. Optim.,2,db/journals/jco/jco20.html#KangC10,https://doi.org/10.1007/s10878-008-9198-1 +Dieter Vandenbussche,The 2-Edge-Connected Subgraph Polyhedron.,2005,9,J. Comb. Optim.,4,db/journals/jco/jco9.html#VandenbusscheN05,https://doi.org/10.1007/s10878-005-1777-9 +Markus Behle,On threshold BDDs and the optimal variable ordering problem.,2008,16,J. Comb. Optim.,2,db/journals/jco/jco16.html#Behle08,https://doi.org/10.1007/s10878-007-9123-z +Arkadii G. D'yachkov,Exordium for DNA Codes.,2003,7,J. Comb. Optim.,4,db/journals/jco/jco7.html#DyachkovEMRTTVW03,https://doi.org/10.1023/B:JOCO.0000017385.39168.0d +Tsan-sheng Hsu,Two Variations of the Minimum Steiner Problem.,2005,9,J. Comb. Optim.,1,db/journals/jco/jco9.html#HsuTWL05,https://doi.org/10.1007/s10878-005-5487-0 +C. Chatzinakos,Optimization techniques for robust multivariate location and scatter estimation.,2016,31,J. Comb. Optim.,4,db/journals/jco/jco31.html#ChatzinakosPZ16,https://doi.org/10.1007/s10878-015-9833-6 +Julien Bensmail,On the complexity of partitioning a graph into a few connected subgraphs.,2015,30,J. Comb. Optim.,1,db/journals/jco/jco30.html#Bensmail15,https://doi.org/10.1007/s10878-013-9642-8 +Bing Lu,Polynomial Time Approximation Scheme for the Rectilinear Steiner Arborescence Problem.,2000,4,J. Comb. Optim.,3,db/journals/jco/jco4.html#LuR00,https://doi.org/10.1023/A:1009826311973 +Eric McDermid,Popular matchings: structure and algorithms.,2011,22,J. Comb. Optim.,3,db/journals/jco/jco22.html#McDermidI11,https://doi.org/10.1007/s10878-009-9287-9 +Zihan Tan,On the computational complexity of bridgecard.,2016,31,J. Comb. Optim.,1,db/journals/jco/jco31.html#Tan16,https://doi.org/10.1007/s10878-014-9725-1 +Xiao Min,Optimal semi-online algorithm for scheduling with rejection on two uniform machines.,2011,22,J. Comb. Optim.,4,db/journals/jco/jco22.html#MinLW11,https://doi.org/10.1007/s10878-010-9316-8 +Tinaz Ekim,On Split-Coloring Problems.,2005,10,J. Comb. Optim.,3,db/journals/jco/jco10.html#EkimW05,https://doi.org/10.1007/s10878-005-4103-7 +Chunlin Xin,Robust optimization for the hazardous materials transportation network design problem.,2015,30,J. Comb. Optim.,2,db/journals/jco/jco30.html#XinLWZ15,https://doi.org/10.1007/s10878-014-9751-z +Xin Feng 0001,Online leasing problem with price fluctuations under the consumer price index.,2018,36,J. Comb. Optim.,2,db/journals/jco/jco36.html#FengXND18,https://doi.org/10.1007/s10878-018-0305-7 +Xiao Zhou,Algorithm for the Cost Edge-Coloring of Trees.,2004,8,J. Comb. Optim.,1,db/journals/jco/jco8.html#ZhouN04,https://doi.org/10.1023/B:JOCO.0000021940.40066.0c +Bin Fu,Separating NE from some nonuniform nondeterministic complexity classes.,2011,22,J. Comb. Optim.,3,db/journals/jco/jco22.html#FuLZ11,https://doi.org/10.1007/s10878-010-9327-5 +Guangting Chen,The web proxy location problem in general tree of rings networks.,2006,12,J. Comb. Optim.,4,db/journals/jco/jco12.html#ChenZB06,https://doi.org/10.1007/s10878-006-9002-z +Kan Yu,2-Distance paired-dominating number of graphs.,2014,28,J. Comb. Optim.,4,db/journals/jco/jco28.html#YuL14,https://doi.org/10.1007/s10878-012-9584-6 +Isaac Saias,Optimal Randomized Scheduling by Replacement.,1998,1,J. Comb. Optim.,4,db/journals/jco/jco1.html#Saias98,https://doi.org/10.1023/A:1009703014438 +Ming-Yang Kao,Simple and Efficient Graph Compression Schemes for Dense and Complement Graphs.,1998,2,J. Comb. Optim.,4,db/journals/jco/jco2.html#KaoOT98,https://doi.org/10.1023/A:1009720402326 +Ján Plesník,Minimum Cost Edge Subset Covering Exactly k Vertices of a Graph.,2001,5,J. Comb. Optim.,3,db/journals/jco/jco5.html#Plesnik01,https://doi.org/10.1023/A:1011457225589 +Jing Shen,Bounding the scaling window of random constraint satisfaction problems.,2016,31,J. Comb. Optim.,2,db/journals/jco/jco31.html#ShenR16,https://doi.org/10.1007/s10878-014-9789-y +Toshihiro Fujito,On Combinatorial Approximation of Covering 0-1 Integer Programs and Partial Set Cover.,2004,8,J. Comb. Optim.,4,db/journals/jco/jco8.html#Fujito04,https://doi.org/10.1007/s10878-004-4836-8 +Takehiro Ito,Approximability of the subset sum reconfiguration problem.,2014,28,J. Comb. Optim.,3,db/journals/jco/jco28.html#ItoD14,https://doi.org/10.1007/s10878-012-9562-z +Piotr Krysta,Approximation Algorithms for Bounded Facility Location Problems.,2001,5,J. Comb. Optim.,2,db/journals/jco/jco5.html#KrystaS01,https://doi.org/10.1023/A:1011465419252 +David Bremner,Foreword: selected papers from the Franco-Canadian workshop on combinatorial algorithms.,2008,16,J. Comb. Optim.,4,db/journals/jco/jco16.html#BremnerDS08,https://doi.org/10.1007/s10878-008-9155-z +Jun-Ming Xu,Wide Diameters of Cartesian Product Graphs and Digraphs.,2004,8,J. Comb. Optim.,2,db/journals/jco/jco8.html#Xu04,https://doi.org/10.1023/B:JOCO.0000031418.45051.8b +Eric Angel,Improved local search for universal facility location.,2015,29,J. Comb. Optim.,1,db/journals/jco/jco29.html#AngelTR15,https://doi.org/10.1007/s10878-014-9711-7 +Zongxu Mu,DVS scheduling in a line or a star network of processors.,2015,29,J. Comb. Optim.,1,db/journals/jco/jco29.html#MuL15,https://doi.org/10.1007/s10878-013-9668-y +Rex K. Kincaid,Quelling Cabin Noise in Turboprop Aircraft via Active Control.,1997,1,J. Comb. Optim.,3,db/journals/jco/jco1.html#KincaidLP97,https://doi.org/10.1023/A:1009724325820 +Qingqiong Cai,Some extremal results on the colorful monochromatic vertex-connectivity of a graph.,2018,35,J. Comb. Optim.,4,db/journals/jco/jco35.html#CaiLW18,https://doi.org/10.1007/s10878-018-0258-x +Jing Fan,Supply chain scheduling problem in the hospital with periodic working time on a single machine.,2015,30,J. Comb. Optim.,4,db/journals/jco/jco30.html#FanL15,https://doi.org/10.1007/s10878-015-9857-y +Yingli Ran,Approximation algorithm for partial positive influence problem in social network.,2017,33,J. Comb. Optim.,2,db/journals/jco/jco33.html#RanZDZ17,https://doi.org/10.1007/s10878-016-0005-0 +Maw-Shang Chang,An O∗*(1.4366n)-time exact algorithm for maximum P2-packing in cubic graphs.,2016,32,J. Comb. Optim.,2,db/journals/jco/jco32.html#ChangCH16,https://doi.org/10.1007/s10878-015-9884-8 +Hong Gao,Construction of d(H)-disjunct matrix for group testing in hypergraphs.,2006,12,J. Comb. Optim.,3,db/journals/jco/jco12.html#GaoHTWZ06,https://doi.org/10.1007/s10878-006-9634-z +Marcus Randall,A Simulated Annealing Approach to Communication Network Design.,2002,6,J. Comb. Optim.,1,db/journals/jco/jco6.html#RandallMS02,https://doi.org/10.1023/A:1013337324030 +Xin Chen,Centralized and decentralized rumor blocking problems.,2017,34,J. Comb. Optim.,1,db/journals/jco/jco34.html#ChenNFCGFK17,https://doi.org/10.1007/s10878-016-0067-z +Gerard J. Chang,Localizing Combinatorial Properties for Partitions on Block Graphs.,1998,2,J. Comb. Optim.,4,db/journals/jco/jco2.html#ChangHY98,https://doi.org/10.1023/A:1009730825062 +Abdo Y. Alfakih,Facets of an Assignment Problem with 0-1 Side Constraint.,2000,4,J. Comb. Optim.,3,db/journals/jco/jco4.html#AlfakihYM00,https://doi.org/10.1023/A:1009878328812 +Nicolas Sonnerat,Galaxy cutsets in graphs.,2010,19,J. Comb. Optim.,3,db/journals/jco/jco19.html#SonneratV10,https://doi.org/10.1007/s10878-009-9258-1 +Arman Boyaci,The maximum cardinality cut problem in co-bipartite chain graphs.,2018,35,J. Comb. Optim.,1,db/journals/jco/jco35.html#BoyaciES18,https://doi.org/10.1007/s10878-015-9963-x +Cunquan Qu,Neighbor sum distinguishing total choosability of planar graphs.,2016,32,J. Comb. Optim.,3,db/journals/jco/jco32.html#QuWYY16,https://doi.org/10.1007/s10878-015-9911-9 +Amitai Armon,Mobile facility location: combinatorial filtering via weighted occupancy.,2014,28,J. Comb. Optim.,2,db/journals/jco/jco28.html#ArmonGS14,https://doi.org/10.1007/s10878-012-9558-8 +Guang Xu,An improved approximation algorithm for uncapacitated facility location problem with penalties.,2009,17,J. Comb. Optim.,4,db/journals/jco/jco17.html#XuX09,https://doi.org/10.1007/s10878-007-9127-8 +Xin Feng 0001,Online integrated production-distribution scheduling problems without preemption.,2016,31,J. Comb. Optim.,4,db/journals/jco/jco31.html#FengCZX16,https://doi.org/10.1007/s10878-015-9841-6 +Kolos Csaba ágoston,Integer programming methods for special college admissions problems.,2016,32,J. Comb. Optim.,4,db/journals/jco/jco32.html#AgostonBM16,https://doi.org/10.1007/s10878-016-0085-x +Zemin Jin,Anti-Ramsey coloring for matchings in complete bipartite graphs.,2017,33,J. Comb. Optim.,1,db/journals/jco/jco33.html#JinZ17,https://doi.org/10.1007/s10878-015-9926-2 +Marcin Anholcer,Group irregularity strength of connected graphs.,2015,30,J. Comb. Optim.,1,db/journals/jco/jco30.html#AnholcerCM15,https://doi.org/10.1007/s10878-013-9628-6 +Xueliang Li 0001,The (vertex-)monochromatic index of a graph.,2017,33,J. Comb. Optim.,4,db/journals/jco/jco33.html#LiW17,https://doi.org/10.1007/s10878-016-0048-2 +Hans van Maaren,Simplicial Pivoting Algorithms for a Tractable Class of Integer Programs.,2002,6,J. Comb. Optim.,2,db/journals/jco/jco6.html#MaarenD02,https://doi.org/10.1023/A:1013847510365 +Longjiang Guo,An Approximation for Minimum Multicast Route in Optical Networks with Nonsplitting Nodes.,2005,10,J. Comb. Optim.,4,db/journals/jco/jco10.html#GuoWWT05,https://doi.org/10.1007/s10878-005-4925-3 +Corinna Heßler,Discrete parallel machine makespan ScheLoc problem.,2017,34,J. Comb. Optim.,4,db/journals/jco/jco34.html#HesslerD17,https://doi.org/10.1007/s10878-017-0138-9 +Eugene Shragowitz,Iterative Converging Algorithms for Computing Bounds on Durations of Activities in Pert and Pert-Like Models.,2003,7,J. Comb. Optim.,1,db/journals/jco/jco7.html#ShragowitzYL03,https://doi.org/10.1023/A:1021964105322 +Haili Pan,On total weight choosability of graphs.,2013,25,J. Comb. Optim.,4,db/journals/jco/jco25.html#PanY13,https://doi.org/10.1007/s10878-012-9491-x +Steve Lu,Visual cryptography on graphs.,2011,21,J. Comb. Optim.,1,db/journals/jco/jco21.html#LuMO11,https://doi.org/10.1007/s10878-009-9241-x +Hiroki Arimura,An efficient polynomial space and polynomial delay algorithm for enumeration of maximal motifs in a sequence.,2007,13,J. Comb. Optim.,3,db/journals/jco/jco13.html#ArimuraU07,https://doi.org/10.1007/s10878-006-9029-1 +Ping Deng,Improved construction for pooling design.,2008,15,J. Comb. Optim.,1,db/journals/jco/jco15.html#DengHWMWZ08,https://doi.org/10.1007/s10878-007-9093-1 +Shayan Ehsani,Optimal space coverage with white convex polygons.,2016,32,J. Comb. Optim.,2,db/journals/jco/jco32.html#EhsaniFGS16,https://doi.org/10.1007/s10878-014-9822-1 +Zi Xu,Improved approximation algorithms for the max-bisection and the disjoint 2-catalog segmentation problems.,2014,27,J. Comb. Optim.,2,db/journals/jco/jco27.html#XuDX14,https://doi.org/10.1007/s10878-012-9526-3 +Bang Ye Wu,Algorithms for the minimum non-separating path and the balanced connected bipartition problems on grid graphs.,2013,26,J. Comb. Optim.,3,db/journals/jco/jco26.html#Wu13,https://doi.org/10.1007/s10878-012-9481-z +Debajyoti Mondal,Minimum-segment convex drawings of 3-connected cubic plane graphs.,2013,25,J. Comb. Optim.,3,db/journals/jco/jco25.html#MondalNB013,https://doi.org/10.1007/s10878-011-9390-6 +Jiao Zhou,A greedy algorithm for the fault-tolerant connected dominating set in a general graph.,2014,28,J. Comb. Optim.,1,db/journals/jco/jco28.html#ZhouZWX14,https://doi.org/10.1007/s10878-013-9638-4 +Lin Sun,The adjacent vertex distinguishing total coloring of planar graphs without adjacent 4-cycles.,2017,33,J. Comb. Optim.,2,db/journals/jco/jco33.html#SunCW17,https://doi.org/10.1007/s10878-016-0004-1 +Mee Yee Chan,Construction of the nearest neighbor embracing graph of a point set.,2006,11,J. Comb. Optim.,4,db/journals/jco/jco11.html#ChanCCW06,https://doi.org/10.1007/s10878-006-8459-0 +Egon Balas,Logical Constraints as Cardinality Rules: Tight Representation.,2004,8,J. Comb. Optim.,2,db/journals/jco/jco8.html#Balas04,https://doi.org/10.1023/B:JOCO.0000031413.33955.62 +Carlos A. S. Oliveira,An Algorithm for the Maximum Likelihood Problem on Evolutionary Trees.,2005,10,J. Comb. Optim.,1,db/journals/jco/jco10.html#Oliveira05,https://doi.org/10.1007/s10878-005-1860-2 +Xiao Zhou,Small grid drawings of planar graphs with balanced partition.,2012,24,J. Comb. Optim.,2,db/journals/jco/jco24.html#ZhouHN12,https://doi.org/10.1007/s10878-011-9381-7 +Klaus Jansen,An Approximation Scheme for Bin Packing with Conflicts.,1999,3,J. Comb. Optim.,4,db/journals/jco/jco3.html#Jansen99,https://doi.org/10.1023/A:1009871302966 +Chiuyuan Chen,Any Maximal Planar Graph with Only One Separating Triangle is Hamiltonian.,2003,7,J. Comb. Optim.,1,db/journals/jco/jco7.html#Chen03,https://doi.org/10.1023/A:1021998507140 +Wai Lam Fong,The game chromatic index of some trees with maximum degree four and adjacent degree-four vertices.,2018,36,J. Comb. Optim.,1,db/journals/jco/jco36.html#FongCN18,https://doi.org/10.1007/s10878-018-0277-7 +Antonio Frangioni,A Multi-Exchange Neighborhood for Minimum Makespan Parallel Machine Scheduling Problems.,2004,8,J. Comb. Optim.,2,db/journals/jco/jco8.html#FrangioniNS04,https://doi.org/10.1023/B:JOCO.0000031420.05971.29 +Dmitry V. Gribanov,FPT-algorithms for some problems related to integer programming.,2018,35,J. Comb. Optim.,4,db/journals/jco/jco35.html#GribanovMPV18,https://doi.org/10.1007/s10878-018-0264-z +Teresa W. Haynes,Progress on the Murty-Simon Conjecture on diameter-2 critical graphs: a survey.,2015,30,J. Comb. Optim.,3,db/journals/jco/jco30.html#HaynesHMY15,https://doi.org/10.1007/s10878-013-9651-7 +Yingqian Wang,Improved upper bound for acyclic chromatic index of planar graphs without 4-cycles.,2014,27,J. Comb. Optim.,3,db/journals/jco/jco27.html#WangS14,https://doi.org/10.1007/s10878-012-9524-5 +Chang-Chia Liu,Quantitative complexity analysis in multi-channel intracranial EEG recordings form epilepsy brains.,2008,15,J. Comb. Optim.,3,db/journals/jco/jco15.html#LiuPCSGSS08,https://doi.org/10.1007/s10878-007-9118-9 +Wei Xu,Performances of pure random walk algorithms on constraint satisfaction problems with growing domains.,2016,32,J. Comb. Optim.,1,db/journals/jco/jco32.html#XuG16,https://doi.org/10.1007/s10878-015-9891-9 +Yang Wang 0030,Solving the maximum vertex weight clique problem via binary quadratic programming.,2016,32,J. Comb. Optim.,2,db/journals/jco/jco32.html#WangHGLW16,https://doi.org/10.1007/s10878-016-9990-2 +Chung-Shou Liao,Power domination with bounded time constraints.,2016,31,J. Comb. Optim.,2,db/journals/jco/jco31.html#Liao16,https://doi.org/10.1007/s10878-014-9785-2 +Lei Wang,A quasi-human algorithm for the two dimensional rectangular strip packing problem: in memory of Prof. Wenqi Huang.,2016,32,J. Comb. Optim.,2,db/journals/jco/jco32.html#WangY16,https://doi.org/10.1007/s10878-015-9961-z +Panos M. Pardalos,Preface.,1998,2,J. Comb. Optim.,1,db/journals/jco/jco2.html#PardalosW98,https://doi.org/10.1023/A:1009791708378 +Mingqiang An,Extremal polyomino chains with respect to general Randić* index.,2016,31,J. Comb. Optim.,2,db/journals/jco/jco31.html#AnX16,https://doi.org/10.1007/s10878-014-9781-6 +Farzad Farnoud,Approximate sorting of data streams with limited storage.,2016,32,J. Comb. Optim.,4,db/journals/jco/jco32.html#FarnoudYB16,https://doi.org/10.1007/s10878-015-9930-6 +Anja Fischer,An extended approach for lifting clique tree inequalities.,2015,30,J. Comb. Optim.,3,db/journals/jco/jco30.html#FischerF15,https://doi.org/10.1007/s10878-013-9647-3 +Hua Cai,Total coloring of planar graphs without short cycles.,2016,31,J. Comb. Optim.,4,db/journals/jco/jco31.html#CaiWS16,https://doi.org/10.1007/s10878-015-9859-9 +Thang N. Dinh,A near-optimal adaptive algorithm for maximizing modularity in dynamic scale-free networks.,2015,30,J. Comb. Optim.,3,db/journals/jco/jco30.html#DinhNAT15,https://doi.org/10.1007/s10878-013-9665-1 +Panos M. Pardalos,Editorial.,2005,10,J. Comb. Optim.,1,db/journals/jco/jco10.html#Pardalos05,https://doi.org/10.1007/s10878-005-3696-1 +Chung-Shou Liao,Generalized Canadian traveller problems.,2015,29,J. Comb. Optim.,4,db/journals/jco/jco29.html#LiaoH15,https://doi.org/10.1007/s10878-013-9614-z +Wyatt J. Desormeaux,Lower bounds on the total domination number of a graph.,2016,31,J. Comb. Optim.,1,db/journals/jco/jco31.html#DesormeauxH16,https://doi.org/10.1007/s10878-014-9708-2 +Guanghui Wang,The r-acyclic chromatic number of planar graphs.,2015,29,J. Comb. Optim.,4,db/journals/jco/jco29.html#WangYYZ15,https://doi.org/10.1007/s10878-013-9619-7 +Sanguthevar Rajasekaran,Efficient Algorithms for Local Alignment Search.,2001,5,J. Comb. Optim.,1,db/journals/jco/jco5.html#RajasekaranNPSS01,https://doi.org/10.1023/A:1009893719470 +Leonidas D. Iasemidis,Quadratic Binary Programming and Dynamical System Approach to Determine the Predictability of Epileptic Seizures.,2001,5,J. Comb. Optim.,1,db/journals/jco/jco5.html#IasemidisPSS01,https://doi.org/10.1023/A:1009877331765 +Alexander A. Ageev,Pipage Rounding: A New Method of Constructing Algorithms with Proven Performance Guarantee.,2004,8,J. Comb. Optim.,3,db/journals/jco/jco8.html#AgeevS04,https://doi.org/10.1023/B:JOCO.0000038913.96607.c2 +Iskander Aliev,LLL-reduction for integer knapsacks.,2012,24,J. Comb. Optim.,4,db/journals/jco/jco24.html#AlievH12,https://doi.org/10.1007/s10878-011-9411-5 +Guang-Siang Lee,An extension of Stein-Lovász theorem and some of its applications.,2013,25,J. Comb. Optim.,1,db/journals/jco/jco25.html#Lee13,https://doi.org/10.1007/s10878-011-9413-3 +Nikita Boyko,Robust multi-sensor scheduling for multi-site surveillance.,2011,22,J. Comb. Optim.,1,db/journals/jco/jco22.html#BoykoTBJUZP11,https://doi.org/10.1007/s10878-009-9271-4 +Jingjing Yao,Neighbor sum distinguishing total coloring of 2-degenerate graphs.,2017,34,J. Comb. Optim.,1,db/journals/jco/jco34.html#YaoYWX17,https://doi.org/10.1007/s10878-016-0053-5 +Hossein Abdollahzadeh Ahangar,Signed mixed Roman domination numbers in graphs.,2016,32,J. Comb. Optim.,1,db/journals/jco/jco32.html#AhangarASV16,https://doi.org/10.1007/s10878-015-9879-5 +Paul Dorbec,Paired-domination in generalized claw-free graphs.,2007,14,J. Comb. Optim.,1,db/journals/jco/jco14.html#DorbecGH07,https://doi.org/10.1007/s10878-006-9022-8 +Fatima Affif Chaouche,Objective functions with redundant domains.,2013,26,J. Comb. Optim.,2,db/journals/jco/jco26.html#ChaoucheRW13,https://doi.org/10.1007/s10878-012-9468-9 +Vahan Mkrtchyan,A tight lower bound for the hardness of clutters.,2018,35,J. Comb. Optim.,1,db/journals/jco/jco35.html#MkrtchyanS18,https://doi.org/10.1007/s10878-017-0151-z +Manki Min,Optimal solutions to minimum total energy broadcasting problem in wireless ad hoc networks.,2006,11,J. Comb. Optim.,1,db/journals/jco/jco11.html#MinPP06,https://doi.org/10.1007/s10878-006-5977-8 +Huili Zhang,Optimal shortest path set problem in undirected graphs.,2015,29,J. Comb. Optim.,3,db/journals/jco/jco29.html#ZhangXW15,https://doi.org/10.1007/s10878-014-9766-5 +Guiwu Xiong,Best routes selection in multimodal networks using multi-objective genetic algorithm.,2014,28,J. Comb. Optim.,3,db/journals/jco/jco28.html#XiongW14,https://doi.org/10.1007/s10878-012-9574-8 +Lidong Wu,On strongly planar 3SAT.,2016,32,J. Comb. Optim.,1,db/journals/jco/jco32.html#Wu16,https://doi.org/10.1007/s10878-015-9878-6 +Peng Zhang 0008,Approximation and hardness results for label cut and related problems.,2011,21,J. Comb. Optim.,2,db/journals/jco/jco21.html#ZhangCTZ11,https://doi.org/10.1007/s10878-009-9222-0 +Guangting Chen,Relay node placement in two-tiered wireless sensor networks with base stations.,2013,26,J. Comb. Optim.,3,db/journals/jco/jco26.html#ChenC13,https://doi.org/10.1007/s10878-012-9451-5 +Renyu Xu,Neighbor sum distinguishing total coloring of graphs embedded in surfaces of nonnegative Euler characteristic.,2016,31,J. Comb. Optim.,4,db/journals/jco/jco31.html#XuWX16,https://doi.org/10.1007/s10878-015-9832-7 +Satoshi Fujita,Introduction.,2012,24,J. Comb. Optim.,2,db/journals/jco/jco24.html#FujitaR12,https://doi.org/10.1007/s10878-012-9517-4 +Monica K. Hurdal,Shape analysis for automated sulcal classification and parcellation of MRI data.,2008,15,J. Comb. Optim.,3,db/journals/jco/jco15.html#HurdalGLS08,https://doi.org/10.1007/s10878-007-9096-y +Ming-Yang Kao,The Enhanced Double Digest Problem for DNA Physical Mapping.,2003,7,J. Comb. Optim.,1,db/journals/jco/jco7.html#KaoSS03,https://doi.org/10.1023/A:1021946523069 +Meng Han,Neighborhood-based uncertainty generation in social networks.,2014,28,J. Comb. Optim.,3,db/journals/jco/jco28.html#HanYLJL14,https://doi.org/10.1007/s10878-013-9684-y +Yiqiao Wang 0002,Adjacent vertex distinguishing total colorings of outerplanar graphs.,2010,19,J. Comb. Optim.,2,db/journals/jco/jco19.html#WangW10,https://doi.org/10.1007/s10878-008-9165-x +Keith D. Gremban,Moments of Inertia and Graph Separators.,1997,1,J. Comb. Optim.,1,db/journals/jco/jco1.html#GrembanMT97,https://doi.org/10.1023/A:1009763020645 +Nadia Brauner,A Framework for the Complexity of High-Multiplicity Scheduling Problems.,2005,9,J. Comb. Optim.,3,db/journals/jco/jco9.html#BraunerCGK05,https://doi.org/10.1007/s10878-005-1414-7 +Kejia Zhang,OFDP: a distributed algorithm for finding disjoint paths with minimum total length in wireless sensor networks.,2016,31,J. Comb. Optim.,4,db/journals/jco/jco31.html#ZhangHYP16,https://doi.org/10.1007/s10878-015-9845-2 +Feifeng Zheng,NF-based algorithms for online bin packing with buffer and bounded item size.,2015,30,J. Comb. Optim.,2,db/journals/jco/jco30.html#ZhengLZ15,https://doi.org/10.1007/s10878-014-9771-8 +Xiang-Yang Li 0001,Cost sharing and strategyproof mechanisms for set cover games.,2010,20,J. Comb. Optim.,3,db/journals/jco/jco20.html#LiSWL10,https://doi.org/10.1007/s10878-009-9209-x +Wanpracha Art Chaovalitwongse,Novel quadratic programming approach for time series clustering with biomedical application.,2008,15,J. Comb. Optim.,3,db/journals/jco/jco15.html#Chaovalitwongse08,https://doi.org/10.1007/s10878-007-9117-x +Wenkai Ma,Algorithms for the minimum weight k-fold (connected) dominating set problem.,2012,23,J. Comb. Optim.,4,db/journals/jco/jco23.html#MaLZ12,https://doi.org/10.1007/s10878-010-9372-0 +Li-Hsuan Chen,Parameterized algorithms for min-max 2-cluster editing.,2017,34,J. Comb. Optim.,1,db/journals/jco/jco34.html#ChenW17,https://doi.org/10.1007/s10878-016-0059-z +Nguyen Bao Nguyen,Fast algorithms for computing the tripartition-based distance between phylogenetic networks.,2007,13,J. Comb. Optim.,3,db/journals/jco/jco13.html#NguyenNS07,https://doi.org/10.1007/s10878-006-9025-5 +Jian Yang,On the Robust Single Machine Scheduling Problem.,2002,6,J. Comb. Optim.,1,db/journals/jco/jco6.html#YangY02,https://doi.org/10.1023/A:1013333232691 +Stanley P. Y. Fung,Online interval scheduling: randomized and multiprocessor cases.,2008,16,J. Comb. Optim.,3,db/journals/jco/jco16.html#FungPZ08,https://doi.org/10.1007/s10878-007-9131-z +Xiaozhou He,The longest commonly positioned increasing subsequences problem.,2018,35,J. Comb. Optim.,2,db/journals/jco/jco35.html#HeX18,https://doi.org/10.1007/s10878-017-0170-9 +Lucas de O. Bastos,Efficient algorithms for cluster editing.,2016,31,J. Comb. Optim.,1,db/journals/jco/jco31.html#BastosOPSMP16,https://doi.org/10.1007/s10878-014-9756-7 +Hiroshi Fujiwara,On the best possible competitive ratio for the multislope ski-rental problem.,2016,31,J. Comb. Optim.,2,db/journals/jco/jco31.html#FujiwaraKF16,https://doi.org/10.1007/s10878-014-9762-9 +Andrea Lodi 0001,Models and Bounds for Two-Dimensional Level Packing Problems.,2004,8,J. Comb. Optim.,3,db/journals/jco/jco8.html#LodiMV04,https://doi.org/10.1023/B:JOCO.0000038915.62826.79 +Weili Wu,Decoding in Pooling Designs.,2003,7,J. Comb. Optim.,4,db/journals/jco/jco7.html#WuLWH03,https://doi.org/10.1023/B:JOCO.0000017387.34879.58 +Hsiang-Chun Hsu,Graphs with small balanced decomposition numbers.,2014,28,J. Comb. Optim.,2,db/journals/jco/jco28.html#HsuC14,https://doi.org/10.1007/s10878-012-9576-6 +Danny Z. Chen,Flattening topologically spherical surface.,2012,23,J. Comb. Optim.,3,db/journals/jco/jco23.html#ChenM12,https://doi.org/10.1007/s10878-010-9296-8 +Jinjiang Yuan,A best on-line algorithm for the single machine parallel-batch scheduling with restricted delivery *.,2009,17,J. Comb. Optim.,2,db/journals/jco/jco17.html#YuanLTF09,https://doi.org/10.1007/s10878-007-9108-y +Haiying Wang,List-edge-coloring of planar graphs without 6-cycles with three chords.,2018,35,J. Comb. Optim.,2,db/journals/jco/jco35.html#WangW18,https://doi.org/10.1007/s10878-017-0193-2 +Yuan-Hsiang Teng,The paths embedding of the arrangement graphs with prescribed vertices in given position.,2012,24,J. Comb. Optim.,4,db/journals/jco/jco24.html#TengTTH12,https://doi.org/10.1007/s10878-011-9418-y +Ran Gu,Some Motzkin-Straus type results for non-uniform hypergraphs.,2016,31,J. Comb. Optim.,1,db/journals/jco/jco31.html#GuLPS16,https://doi.org/10.1007/s10878-014-9736-y +Andrea Valsecchi,A study of search algorithms' optimization speed.,2014,27,J. Comb. Optim.,2,db/journals/jco/jco27.html#ValsecchiVM14,https://doi.org/10.1007/s10878-012-9514-7 +Wei Ding 0006,Minimum diameter cost-constrained Steiner trees.,2014,27,J. Comb. Optim.,1,db/journals/jco/jco27.html#DingX14,https://doi.org/10.1007/s10878-013-9611-2 +Edith Cohen,Structure Prediction and Computation of Sparse Matrix Products.,1998,2,J. Comb. Optim.,4,db/journals/jco/jco2.html#Cohen98,https://doi.org/10.1023/A:1009716300509 +Ernst Althaus,A Lagrangian relaxation approach for the multiple sequence alignment problem.,2008,16,J. Comb. Optim.,2,db/journals/jco/jco16.html#AlthausC08,https://doi.org/10.1007/s10878-008-9139-z +M. H. Akhbari,On the outer-connected domination in graphs.,2013,26,J. Comb. Optim.,1,db/journals/jco/jco26.html#AkhbariHFKS13,https://doi.org/10.1007/s10878-011-9427-x +Elisabeth Günther,Scheduling and packing malleable and parallel tasks with precedence constraints of bounded width.,2014,27,J. Comb. Optim.,1,db/journals/jco/jco27.html#GuntherKM14,https://doi.org/10.1007/s10878-012-9498-3 +Guohui Lin,Editorial: In memoriam: Yong He (1969-2005).,2006,12,J. Comb. Optim.,4,db/journals/jco/jco12.html#LinT06,https://doi.org/10.1007/s10878-006-9007-7 +Pierluigi Crescenzi,On Approximating a Scheduling Problem.,2001,5,J. Comb. Optim.,3,db/journals/jco/jco5.html#CrescenziDP01,https://doi.org/10.1023/A:1011441109660 +Jiansheng Cai,Improved upper bound for the degenerate and star chromatic numbers of graphs.,2017,34,J. Comb. Optim.,2,db/journals/jco/jco34.html#CaiLY17,https://doi.org/10.1007/s10878-016-0076-y +Yuzhong Zhang,An asymptotic PTAS for batch scheduling with nonidentical job sizes to minimize makespan.,2008,16,J. Comb. Optim.,2,db/journals/jco/jco16.html#ZhangC08,https://doi.org/10.1007/s10878-007-9128-7 +Michael A. Henning,Disjunctive total domination in graphs.,2016,31,J. Comb. Optim.,3,db/journals/jco/jco31.html#HenningN16,https://doi.org/10.1007/s10878-014-9811-4 +Mikita Hradovich,Recoverable robust spanning tree problem under interval uncertainty representations.,2017,34,J. Comb. Optim.,2,db/journals/jco/jco34.html#HradovichKZ17,https://doi.org/10.1007/s10878-016-0089-6 +Jiansheng Cai,Acyclic coloring of graphs with some girth restriction.,2016,31,J. Comb. Optim.,4,db/journals/jco/jco31.html#CaiFY16,https://doi.org/10.1007/s10878-015-9829-2 +Shuchao Li,Some extremal properties of the multiplicatively weighted Harary index of a graph.,2016,31,J. Comb. Optim.,3,db/journals/jco/jco31.html#LiZ16,https://doi.org/10.1007/s10878-014-9802-5 +Stanislav Busygin,A Heuristic for the Maximum Independent Set Problem Based on Optimization of a Quadratic Over a Sphere.,2002,6,J. Comb. Optim.,3,db/journals/jco/jco6.html#BusyginBP02,https://doi.org/10.1023/A:1014899909753 +Nodari Vakhania,Tight Performance Bounds of CP-Scheduling on Out-Trees.,2001,5,J. Comb. Optim.,4,db/journals/jco/jco5.html#Vakhania01,https://doi.org/10.1023/A:1011676725533 +Mauro Dell'Amico,Combining Linear and Non-Linear Objectives in Spanning Tree Problems.,2000,4,J. Comb. Optim.,2,db/journals/jco/jco4.html#DellAmicoM00,https://doi.org/10.1023/A:1009854922371 +B. S. Panda,Algorithmic aspects of b-disjunctive domination in graphs.,2018,36,J. Comb. Optim.,2,db/journals/jco/jco36.html#PandaPP18,https://doi.org/10.1007/s10878-017-0112-6 +Peng Zhao,A Heuristic Algorithm for Multiple Sequence Alignment Based on Blocks.,2001,5,J. Comb. Optim.,1,db/journals/jco/jco5.html#ZhaoJ01,https://doi.org/10.1023/A:1009841718561 +Boting Yang,Minimal Tetrahedralizations of a Class of Polyhedra.,2004,8,J. Comb. Optim.,3,db/journals/jco/jco8.html#YangW04,https://doi.org/10.1023/B:JOCO.0000038910.06360.0a +Pawan Aurora,The QAP-polytope and the graph isomorphism problem.,2018,36,J. Comb. Optim.,3,db/journals/jco/jco36.html#AuroraM18,https://doi.org/10.1007/s10878-018-0266-x +Zengfu Wang,Approximation for maximizing monotone non-decreasing set functions with a greedy method.,2016,31,J. Comb. Optim.,1,db/journals/jco/jco31.html#WangMWP16,https://doi.org/10.1007/s10878-014-9707-3 +Alexey Sorokin,Computational risk management techniques for fixed charge network flow problems with uncertain arc failures.,2013,25,J. Comb. Optim.,1,db/journals/jco/jco25.html#SorokinBNP13,https://doi.org/10.1007/s10878-011-9422-2 +Gasper Kosmrlj,Realizations of the game domination number.,2014,28,J. Comb. Optim.,2,db/journals/jco/jco28.html#Kosmrlj14,https://doi.org/10.1007/s10878-012-9572-x +Geng-sheng Zhang,The arrangement of subspaces in the orthogonal spaces and tighter analysis of an error-tolerant pooling design.,2010,20,J. Comb. Optim.,2,db/journals/jco/jco20.html#ZhangY10,https://doi.org/10.1007/s10878-008-9199-0 +Deshi Ye,A note on online strip packing.,2009,17,J. Comb. Optim.,4,db/journals/jco/jco17.html#YeHZ09,https://doi.org/10.1007/s10878-007-9125-x +Yanming Chang,Connection between a class of polynomial optimization problems and maximum cliques of non-uniform hypergraphs.,2016,31,J. Comb. Optim.,2,db/journals/jco/jco31.html#ChangPY16,https://doi.org/10.1007/s10878-014-9798-x +Xiaoming Wang 0001,EiSIRS: a formal model to analyze the dynamics of worm propagation in wireless sensor networks.,2010,20,J. Comb. Optim.,1,db/journals/jco/jco20.html#WangLL10,https://doi.org/10.1007/s10878-008-9190-9 +Ruyan Fu,An optimal online algorithm for the parallel-batch scheduling with job processing time compatibilities.,2017,34,J. Comb. Optim.,4,db/journals/jco/jco34.html#FuTLY17,https://doi.org/10.1007/s10878-017-0139-8 +Wayne Goddard,Independent dominating sets in triangle-free graphs.,2012,23,J. Comb. Optim.,1,db/journals/jco/jco23.html#GoddardL12,https://doi.org/10.1007/s10878-010-9336-4 +Walter Kern,A tight analysis of Brown-Baker-Katseff sequences for online strip packing.,2013,26,J. Comb. Optim.,2,db/journals/jco/jco26.html#KernP13,https://doi.org/10.1007/s10878-012-9463-1 +Cong Chen,Online MapReduce scheduling problem of minimizing the makespan.,2017,33,J. Comb. Optim.,2,db/journals/jco/jco33.html#ChenXZS17,https://doi.org/10.1007/s10878-015-9982-7 +Xing Chai,Online scheduling with chain precedence constraints of equal-length jobs on parallel machines to minimize makespan.,2018,36,J. Comb. Optim.,2,db/journals/jco/jco36.html#ChaiL18,https://doi.org/10.1007/s10878-018-0309-3 +Yusuke Aoki,The minimum vulnerability problem on specific graph classes.,2016,32,J. Comb. Optim.,4,db/journals/jco/jco32.html#AokiHHIKZ16,https://doi.org/10.1007/s10878-015-9950-2 +Aleck C. Johnsen,A manually-checkable proof for the NP-hardness of 11-color pattern self-assembly tileset synthesis.,2017,33,J. Comb. Optim.,2,db/journals/jco/jco33.html#JohnsenKS17,https://doi.org/10.1007/s10878-015-9975-6 +Andrzej Dudek,Subhypergraph counts in extremal and random hypergraphs and the fractional q-independence.,2010,19,J. Comb. Optim.,2,db/journals/jco/jco19.html#DudekPR10,https://doi.org/10.1007/s10878-008-9174-9 +Robert Benkoczi,Data relaying with constraints in hierarchical sensor networks.,2006,11,J. Comb. Optim.,1,db/journals/jco/jco11.html#BenkocziHAT06,https://doi.org/10.1007/s10878-006-5981-z +Tian Liu 0001,Large hypertree width for sparse random hypergraphs.,2015,29,J. Comb. Optim.,3,db/journals/jco/jco29.html#LiuWX15,https://doi.org/10.1007/s10878-013-9704-y +Shisheng Li,Parallel-machine parallel-batching scheduling with family jobs and release dates to minimize makespan.,2010,19,J. Comb. Optim.,1,db/journals/jco/jco19.html#LiY10,https://doi.org/10.1007/s10878-008-9163-z +Chunmei Liu,Algorithms and time complexity of the request-service problem.,2010,20,J. Comb. Optim.,2,db/journals/jco/jco20.html#LiuBB10,https://doi.org/10.1007/s10878-008-9202-9 +Jirí Fink,Long cycles in hypercubes with optimal number of faulty vertices.,2012,24,J. Comb. Optim.,3,db/journals/jco/jco24.html#FinkG12,https://doi.org/10.1007/s10878-011-9379-1 +Huaming Zhang,Improved floor-planning of graphs via adjacency-preserving transformations.,2011,22,J. Comb. Optim.,4,db/journals/jco/jco22.html#ZhangS11,https://doi.org/10.1007/s10878-010-9324-8 +Q. Q. Nong,Bin packing game with a price of anarchy of 3/2.,2018,35,J. Comb. Optim.,2,db/journals/jco/jco35.html#NongSCF18,https://doi.org/10.1007/s10878-017-0201-6 +Randeep Bhatia,Facility Location with Dynamic Distance Functions.,1998,2,J. Comb. Optim.,3,db/journals/jco/jco2.html#BhatiaGKS98,https://doi.org/10.1023/A:1009796525600 +Lisa Hollermann,Scheduling Problems in a Practical Allocation Model.,1997,1,J. Comb. Optim.,2,db/journals/jco/jco1.html#HollermannHLV97,https://doi.org/10.1023/A:1009799631608 +Stanislav Busygin,Feature Selection for Consistent Biclustering via Fractional 0-1 Programming.,2005,10,J. Comb. Optim.,1,db/journals/jco/jco10.html#BusyginPP05,https://doi.org/10.1007/s10878-005-1856-y +Xiangzhong Xiang,Prompt mechanism for online auctions with multi-unit demands.,2015,30,J. Comb. Optim.,2,db/journals/jco/jco30.html#Xiang15,https://doi.org/10.1007/s10878-014-9754-9 +Maria Liazi,The densest k-subgraph problem on clique graphs.,2007,14,J. Comb. Optim.,4,db/journals/jco/jco14.html#LiaziMPZ07,https://doi.org/10.1007/s10878-007-9069-1 +Zhi-Zhong Chen,Faster exact computation of rSPR distance.,2015,29,J. Comb. Optim.,3,db/journals/jco/jco29.html#ChenFW15,https://doi.org/10.1007/s10878-013-9695-8 +Sonia Toubaline,Complexity and inapproximability results for the Power Edge Set problem.,2018,35,J. Comb. Optim.,3,db/journals/jco/jco35.html#ToubalineDLPSS18,https://doi.org/10.1007/s10878-017-0241-y +Xiaonong Lu,A reinforcement-learning approach for admission control in distributed network service systems.,2016,31,J. Comb. Optim.,3,db/journals/jco/jco31.html#LuYZ16,https://doi.org/10.1007/s10878-014-9820-3 +Hiroshi Fujiwara,Improved lower bounds for the online bin packing problem with cardinality constraints.,2015,29,J. Comb. Optim.,1,db/journals/jco/jco29.html#FujiwaraK15,https://doi.org/10.1007/s10878-013-9679-8 +Hosein Karami,The total domination subdivision number in graphs with no induced 3-cycle and 5-cycle.,2013,25,J. Comb. Optim.,1,db/journals/jco/jco25.html#KaramiKS13,https://doi.org/10.1007/s10878-011-9421-3 +Chenchen Fu,Race to idle or not: balancing the memory sleep time with DVS for energy minimization.,2018,35,J. Comb. Optim.,3,db/journals/jco/jco35.html#FuCLX18,https://doi.org/10.1007/s10878-017-0229-7 +Binwu Zhang,The Center Location Improvement Problem Under the Hamming Distance.,2005,9,J. Comb. Optim.,2,db/journals/jco/jco9.html#ZhangZH05,https://doi.org/10.1007/s10878-005-6856-4 +Mengzhuo Bai,A note of reduced dimension optimization algorithm of assignment problem.,2015,30,J. Comb. Optim.,4,db/journals/jco/jco30.html#BaiRL15,https://doi.org/10.1007/s10878-015-9851-4 +Haitao Jiang,Exact and approximation algorithms for the complementary maximal strip recovery problem.,2012,23,J. Comb. Optim.,4,db/journals/jco/jco23.html#JiangLLWZ12,https://doi.org/10.1007/s10878-010-9366-y +Nan Zhang 0001,Verifying safety critical task scheduling systems in PPTL axiom system.,2016,31,J. Comb. Optim.,2,db/journals/jco/jco31.html#ZhangYGDT16,https://doi.org/10.1007/s10878-014-9776-3 +Mohan Li,A minimized-rule based approach for improving data currency.,2016,32,J. Comb. Optim.,3,db/journals/jco/jco32.html#LiL16,https://doi.org/10.1007/s10878-015-9904-8 +Haiyan Lu,Dynamic-objective particle swarm optimization for constrained optimization problems.,2006,12,J. Comb. Optim.,4,db/journals/jco/jco12.html#LuC06,https://doi.org/10.1007/s10878-006-9004-x +Anja Fischer,The traveling salesman problem on grids with forbidden neighborhoods.,2017,34,J. Comb. Optim.,3,db/journals/jco/jco34.html#FischerH17,https://doi.org/10.1007/s10878-017-0119-z +Jin-Xin Zhou,Super-cyclically edge-connected regular graphs.,2013,26,J. Comb. Optim.,2,db/journals/jco/jco26.html#ZhouF13,https://doi.org/10.1007/s10878-012-9472-0 +Gruia Calinescu,The Polymatroid Steiner Problems.,2005,9,J. Comb. Optim.,3,db/journals/jco/jco9.html#CalinescuZ05,https://doi.org/10.1007/s10878-005-1412-9 +Yuya Higashikawa,Online graph exploration algorithms for cycles and trees by multiple searchers.,2014,28,J. Comb. Optim.,2,db/journals/jco/jco28.html#HigashikawaKLT14,https://doi.org/10.1007/s10878-012-9571-y +Neethi K. S.,Maximal independent sets in a generalisation of caterpillar graph.,2017,33,J. Comb. Optim.,1,db/journals/jco/jco33.html#SS17,https://doi.org/10.1007/s10878-015-9960-0 +Guosong Yu,A new upper bound for the online square packing problem in a strip.,2017,33,J. Comb. Optim.,4,db/journals/jco/jco33.html#YuMX17,https://doi.org/10.1007/s10878-016-0046-4 +Ming Liu 0008,Semi-online scheduling on 2 machines under a grade of service provision with bounded processing *.,2011,21,J. Comb. Optim.,1,db/journals/jco/jco21.html#LiuCXZ11,https://doi.org/10.1007/s10878-009-9231-z +Michael A. Henning,Graphs with large paired-domination number.,2007,13,J. Comb. Optim.,1,db/journals/jco/jco13.html#Henning07,https://doi.org/10.1007/s10878-006-9014-8 +Nicolas Bourgeois,Probabilistic graph-coloring in bipartite and split graphs.,2009,17,J. Comb. Optim.,3,db/journals/jco/jco17.html#BourgeoisCEMP09,https://doi.org/10.1007/s10878-007-9112-2 +Zhaohui Liu,Minimizing the Number of Late Jobs under the Group Technology Assumption.,1999,3,J. Comb. Optim.,1,db/journals/jco/jco3.html#LiuY99,https://doi.org/10.1023/A:1009841719644 +Tsan-sheng Hsu,A Unifying Augmentation Algorithm for Two-Edge Connectivity and Biconnectivity.,1998,2,J. Comb. Optim.,3,db/journals/jco/jco2.html#HsuK98,https://doi.org/10.1023/A:1009746026508 +Nicolas Bourgeois,The max quasi-independent set problem.,2012,23,J. Comb. Optim.,1,db/journals/jco/jco23.html#BourgeoisGLMPP12,https://doi.org/10.1007/s10878-010-9343-5 +Yusheng Li,Lower bounds for independence numbers of some locally sparse graphs.,2014,28,J. Comb. Optim.,4,db/journals/jco/jco28.html#LiL14,https://doi.org/10.1007/s10878-012-9578-4 +Jianhua Tu,On the vertex cover P3 problem parameterized by treewidth.,2017,34,J. Comb. Optim.,2,db/journals/jco/jco34.html#TuWYC17,https://doi.org/10.1007/s10878-016-9999-6 +Xianzhao Zhang,Approximation algorithms for precedence-constrained identical machine scheduling with rejection.,2018,35,J. Comb. Optim.,1,db/journals/jco/jco35.html#ZhangXDW18,https://doi.org/10.1007/s10878-016-0044-6 +Yaodong Cui,Exact and heuristic algorithms for the circle cutting problem in the manufacturing industry of electric motors.,2007,14,J. Comb. Optim.,1,db/journals/jco/jco14.html#CuiW07,https://doi.org/10.1007/s10878-006-9039-z +Guihua Huang,The expected values of Hosoya index and Merrifield-Simmons index in a random polyphenylene chain.,2016,32,J. Comb. Optim.,2,db/journals/jco/jco32.html#HuangKD16,https://doi.org/10.1007/s10878-015-9882-x +Ehab Morsy,Approximating capacitated tree-routings in networks.,2011,21,J. Comb. Optim.,2,db/journals/jco/jco21.html#MorsyN11,https://doi.org/10.1007/s10878-009-9238-5 +Alberto Caprara,Improved Approximation for Breakpoint Graph Decomposition and Sorting by Reversals.,2002,6,J. Comb. Optim.,2,db/journals/jco/jco6.html#CapraraR02,https://doi.org/10.1023/A:1013851611274 +Lidong Wu,On single machine scheduling with resource constraint.,2016,31,J. Comb. Optim.,2,db/journals/jco/jco31.html#WuC16,https://doi.org/10.1007/s10878-014-9721-5 +Lu Han,A local search approximation algorithm for the uniform capacitated k-facility location problem.,2018,35,J. Comb. Optim.,2,db/journals/jco/jco35.html#HanXDZ18,https://doi.org/10.1007/s10878-017-0179-0 +Mathieu Bouchard,Lower bounds and a tabu search algorithm for the minimum deficiency problem.,2009,17,J. Comb. Optim.,2,db/journals/jco/jco17.html#BouchardHD09,https://doi.org/10.1007/s10878-007-9106-0 +Rainer E. Burkard,Polynomially solvable special cases of the quadratic bottleneck assignment problem.,2011,22,J. Comb. Optim.,4,db/journals/jco/jco22.html#BurkardR11,https://doi.org/10.1007/s10878-010-9333-7 +Clayton W. Commander,The wireless network jamming problem.,2007,14,J. Comb. Optim.,4,db/journals/jco/jco14.html#CommanderPRUZ07,https://doi.org/10.1007/s10878-007-9071-7 +Easton Li Xu,The minimum number of hubs in networks.,2015,30,J. Comb. Optim.,4,db/journals/jco/jco30.html#XuH15,https://doi.org/10.1007/s10878-013-9697-6 +Christian Desrosiers,Using heuristics to find minimal unsatisfiable subformulas in satisfiability problems.,2009,18,J. Comb. Optim.,2,db/journals/jco/jco18.html#DesrosiersGHP09,https://doi.org/10.1007/s10878-008-9142-4 +Yanhong Gu,Maximum latency scheduling problem on two-person cooperative games.,2013,26,J. Comb. Optim.,1,db/journals/jco/jco26.html#GuFTZ13,https://doi.org/10.1007/s10878-011-9434-y +Jianping Li,The subdivision-constrained routing requests problem.,2014,27,J. Comb. Optim.,1,db/journals/jco/jco27.html#LiLL14,https://doi.org/10.1007/s10878-012-9497-4 +Qizhong Lin,Sparse multipartite graphs as partition universal for graphs with bounded degree.,2018,35,J. Comb. Optim.,3,db/journals/jco/jco35.html#LinL18,https://doi.org/10.1007/s10878-017-0214-1 +Jan Hackfeld,The matching extension problem in general graphs is co-NP-complete.,2018,35,J. Comb. Optim.,3,db/journals/jco/jco35.html#HackfeldK18,https://doi.org/10.1007/s10878-017-0226-x +Haiying Wang,On the adjacent vertex-distinguishing total chromatic numbers of the graphs with Delta (G) = 3.,2007,14,J. Comb. Optim.,1,db/journals/jco/jco14.html#Wang07,https://doi.org/10.1007/s10878-006-9038-0 +Jan Baumbach,Covering tree with stars.,2015,29,J. Comb. Optim.,1,db/journals/jco/jco29.html#BaumbachGI15,https://doi.org/10.1007/s10878-013-9692-y +Sándor P. Fekete,Minimum covering with travel cost.,2012,24,J. Comb. Optim.,1,db/journals/jco/jco24.html#FeketeMS12,https://doi.org/10.1007/s10878-010-9303-0 +Rashika Gupta,Penalty guided genetic search for redundancy optimization in multi-state series-parallel power system.,2006,12,J. Comb. Optim.,3,db/journals/jco/jco12.html#GuptaA06,https://doi.org/10.1007/s10878-006-9632-1 +Qingqin Nong,The weighted link ring loading problem.,2009,18,J. Comb. Optim.,1,db/journals/jco/jco18.html#NongYL09,https://doi.org/10.1007/s10878-007-9136-7 +Tayuan Huang,A class of error-correcting pooling designs over complexes.,2010,19,J. Comb. Optim.,4,db/journals/jco/jco19.html#HuangWW10,https://doi.org/10.1007/s10878-008-9179-4 +Andrew C. Trapp,Finding checkerboard patterns via fractional 0-1 programming.,2010,20,J. Comb. Optim.,1,db/journals/jco/jco20.html#TrappPB10,https://doi.org/10.1007/s10878-008-9186-5 +Ante Custic,A characterization of linearizable instances of the quadratic minimum spanning tree problem.,2018,35,J. Comb. Optim.,2,db/journals/jco/jco35.html#CusticP18,https://doi.org/10.1007/s10878-017-0184-3 +Bin Ma,A new quartet approach for reconstructing phylogenetic trees: quartet joining method.,2008,16,J. Comb. Optim.,3,db/journals/jco/jco16.html#MaXZ08,https://doi.org/10.1007/s10878-008-9145-1 +John W. Estes,Sharp bounds of the Zagreb indices of k-trees.,2014,27,J. Comb. Optim.,2,db/journals/jco/jco27.html#EstesW14,https://doi.org/10.1007/s10878-012-9515-6 +Baruch Mor,A two-agent single machine scheduling problem with due-window assignment and a common flow-allowance.,2017,33,J. Comb. Optim.,4,db/journals/jco/jco33.html#MorM17,https://doi.org/10.1007/s10878-016-0049-1 +Viet Hung Nguyen,A primal-dual approximation algorithm for the Asymmetric Prize-Collecting TSP.,2013,25,J. Comb. Optim.,2,db/journals/jco/jco25.html#Nguyen13,https://doi.org/10.1007/s10878-012-9501-z +Marjan Marzban,New analysis and computational study for the planar connected dominating set problem.,2016,32,J. Comb. Optim.,1,db/journals/jco/jco32.html#MarzbanGJ16,https://doi.org/10.1007/s10878-015-9871-0 +Donald Stanley,Fast searching games on graphs.,2011,22,J. Comb. Optim.,4,db/journals/jco/jco22.html#StanleyY11,https://doi.org/10.1007/s10878-010-9328-4 +Wun-Tat Chan,Online bin packing of fragile objects with application in cellular networks.,2007,14,J. Comb. Optim.,4,db/journals/jco/jco14.html#ChanCYZZ07,https://doi.org/10.1007/s10878-007-9043-y +Xiaotie Deng,On Multiprocessor System Scheduling.,1998,1,J. Comb. Optim.,4,db/journals/jco/jco1.html#DengD98,https://doi.org/10.1023/A:1009790611712 +Wayne Pullan,Construction of optimal constant-dimension subspace codes.,2016,31,J. Comb. Optim.,4,db/journals/jco/jco31.html#PullanWL16,https://doi.org/10.1007/s10878-015-9864-z +Yunlong Liu,An effective branching strategy based on structural relationship among multiple forbidden induced subgraphs.,2015,29,J. Comb. Optim.,1,db/journals/jco/jco29.html#LiuWXGC15,https://doi.org/10.1007/s10878-014-9733-1 +Neng Fan,A rearrangement of adjacency matrix based approach for solving the crossing minimization problem.,2011,22,J. Comb. Optim.,4,db/journals/jco/jco22.html#FanP11,https://doi.org/10.1007/s10878-010-9326-6 +Henning Fernau,A parameterized perspective on packing paths of length two.,2009,18,J. Comb. Optim.,4,db/journals/jco/jco18.html#FernauR09,https://doi.org/10.1007/s10878-009-9230-0 +Shou-Jun Xu,Complete forcing numbers of catacondensed hexagonal systems.,2015,29,J. Comb. Optim.,4,db/journals/jco/jco29.html#XuZC15,https://doi.org/10.1007/s10878-013-9624-x +Frédéric Roupin,From Linear to Semidefinite Programming: An Algorithm to Obtain Semidefinite Relaxations for Bivalent Quadratic Problems.,2004,8,J. Comb. Optim.,4,db/journals/jco/jco8.html#Roupin04,https://doi.org/10.1007/s10878-004-4838-6 +Mohammad A. Raayatpanah,Reliability evaluation of a multicast over coded packet networks.,2018,35,J. Comb. Optim.,3,db/journals/jco/jco35.html#RaayatpanahP18,https://doi.org/10.1007/s10878-017-0242-x +Alain Billionnet,A Branch and Bound algorithm for general mixed-integer quadratic programs based on quadratic convex relaxation.,2014,28,J. Comb. Optim.,2,db/journals/jco/jco28.html#BillionnetEL14,https://doi.org/10.1007/s10878-012-9560-1 +Yiwei Jiang,Algorithms with limited number of preemptions for scheduling on parallel machines.,2014,27,J. Comb. Optim.,4,db/journals/jco/jco27.html#JiangWH14,https://doi.org/10.1007/s10878-012-9545-0 +Arindam Karmakar,Some variations on constrained minimum enclosing circle problem.,2013,25,J. Comb. Optim.,2,db/journals/jco/jco25.html#KarmakarDNB13,https://doi.org/10.1007/s10878-012-9452-4 +Wayne Goddard,A note on domination and total domination in prisms.,2018,35,J. Comb. Optim.,1,db/journals/jco/jco35.html#GoddardH18,https://doi.org/10.1007/s10878-017-0150-0 +Qijia Liu,Online tradeoff scheduling on a single machine to minimize makespan and maximum lateness.,2016,32,J. Comb. Optim.,2,db/journals/jco/jco32.html#LiuY16,https://doi.org/10.1007/s10878-015-9918-2 +C. L. Stabler,Modeling and in vitro and in vivo characterization of a tissue engineered pancreatic substitute.,2009,17,J. Comb. Optim.,1,db/journals/jco/jco17.html#StablerFPCS09,https://doi.org/10.1007/s10878-008-9183-8 +Mario Leston Rey,Integral packing of branchings in capacitaded digraphs.,2016,31,J. Comb. Optim.,2,db/journals/jco/jco31.html#Rey16,https://doi.org/10.1007/s10878-014-9768-3 +Gang Yu,Local Optimality and Its Application on Independent Sets for k-claw Free Graphs.,1997,1,J. Comb. Optim.,2,db/journals/jco/jco1.html#YuG97,https://doi.org/10.1023/A:1009755815678 +José Miguel Díaz-Báñez,Min-energy broadcast in mobile ad hoc networks with restricted motion.,2012,24,J. Comb. Optim.,4,db/journals/jco/jco24.html#Diaz-BanezMFHU12,https://doi.org/10.1007/s10878-011-9397-z +Yi-Ping Cui,Triple-solution approach for the strip packing problem with two-staged patterns.,2017,34,J. Comb. Optim.,2,db/journals/jco/jco34.html#CuiZC17,https://doi.org/10.1007/s10878-016-0088-7 +Tz-Liang Kueng,A note on fault-free mutually independent Hamiltonian cycles in hypercubes with faulty edges.,2009,17,J. Comb. Optim.,3,db/journals/jco/jco17.html#KuengLLTH09,https://doi.org/10.1007/s10878-007-9113-1 +Ding-Zhu Du,Book Review: Discrete Analysis and Operation Research.,1997,1,J. Comb. Optim.,1,db/journals/jco/jco1.html#Du97,https://doi.org/10.1023/A:1009715104715 +Liang Zhao,Approximating the Minimum k-way Cut in a Graph via Minimum 3-way Cuts.,2001,5,J. Comb. Optim.,4,db/journals/jco/jco5.html#ZhaoNI01,https://doi.org/10.1023/A:1011620607786 +Günter Schmidt 0002,Competitive analysis of bi-directional non-preemptive conversion.,2017,34,J. Comb. Optim.,4,db/journals/jco/jco34.html#Schmidt17,https://doi.org/10.1007/s10878-017-0131-3 +Li-Da Tong,Hamiltonian numbers in oriented graphs.,2017,34,J. Comb. Optim.,4,db/journals/jco/jco34.html#TongY17,https://doi.org/10.1007/s10878-017-0141-1 +Bernard Gendron,On edge orienting methods for graph coloring.,2007,13,J. Comb. Optim.,2,db/journals/jco/jco13.html#GendronHS07,https://doi.org/10.1007/s10878-006-9019-3 +Chen Ting,Optimal algorithms for uncovering synteny problem.,2006,12,J. Comb. Optim.,4,db/journals/jco/jco12.html#TingY06,https://doi.org/10.1007/s10878-006-9008-6 +Qinghua Wu,An adaptive multistart tabu search approach to solve the maximum clique problem.,2013,26,J. Comb. Optim.,1,db/journals/jco/jco26.html#WuH13,https://doi.org/10.1007/s10878-011-9437-8 +Igor S. Litvinchev,A Lagrangian bound for many-to-many assignment problems.,2010,19,J. Comb. Optim.,3,db/journals/jco/jco19.html#LitvinchevRS10,https://doi.org/10.1007/s10878-008-9196-3 +Tak Wah Lam,A Tighter Extra-Resource Analysis of Online Deadline Scheduling.,2005,9,J. Comb. Optim.,2,db/journals/jco/jco9.html#LamNT05,https://doi.org/10.1007/s10878-005-6854-6 +Martin Birks,Online algorithms for maximizing weighted throughput of unit jobs with temperature constraints.,2013,26,J. Comb. Optim.,2,db/journals/jco/jco26.html#BirksCFX13,https://doi.org/10.1007/s10878-012-9543-2 +Mohammad J. Nadjafi-Arani,Characterisation of forests with trivial game domination numbers.,2016,32,J. Comb. Optim.,3,db/journals/jco/jco32.html#Nadjafi-AraniSS16,https://doi.org/10.1007/s10878-015-9903-9 +Konstantin Moiseev,The complexity of VLSI power-delay optimization by interconnect resizing.,2012,23,J. Comb. Optim.,2,db/journals/jco/jco23.html#MoiseevKW12,https://doi.org/10.1007/s10878-010-9355-1 +Wanpracha Art Chaovalitwongse,Special Issue on Combinatorial Optimization in Data Mining.,2008,15,J. Comb. Optim.,3,db/journals/jco/jco15.html#ChaovalitwongseS08,https://doi.org/10.1007/s10878-008-9147-z +Benjamin McClosky,Co-2-plex vertex partitions.,2015,30,J. Comb. Optim.,3,db/journals/jco/jco30.html#McCloskyAH15,https://doi.org/10.1007/s10878-013-9664-2 +Jihui Wang,A proper total coloring distinguishing adjacent vertices by sums of planar graphs without intersecting triangles.,2016,32,J. Comb. Optim.,2,db/journals/jco/jco32.html#WangMHW16,https://doi.org/10.1007/s10878-015-9886-6 +Frans Schalekamp,Clustering with or without the approximation.,2013,25,J. Comb. Optim.,3,db/journals/jco/jco25.html#SchalekampYZ13,https://doi.org/10.1007/s10878-011-9382-6 +Guohui Lin,A Further Improved Approximation Algorithm for Breakpoint Graph Decomposition.,2004,8,J. Comb. Optim.,2,db/journals/jco/jco8.html#LinJ04,https://doi.org/10.1023/B:JOCO.0000031419.12290.2b +Donglei Du,An approximation algorithm for the k-level capacitated facility location problem.,2010,20,J. Comb. Optim.,4,db/journals/jco/jco20.html#DuWX10,https://doi.org/10.1007/s10878-009-9213-1 +Oleg A. Prokopyev,On Approximability of Boolean Formula Minimization.,2004,8,J. Comb. Optim.,2,db/journals/jco/jco8.html#ProkopyevP04,https://doi.org/10.1023/B:JOCO.0000031414.39556.3a +Wojciech Kazmierczak,The best choice problem for posets* colored complete binary trees.,2016,31,J. Comb. Optim.,1,db/journals/jco/jco31.html#Kazmierczak16,https://doi.org/10.1007/s10878-014-9705-5 +Thang N. Dinh,Bound and exact methods for assessing link vulnerability in complex networks.,2014,28,J. Comb. Optim.,1,db/journals/jco/jco28.html#DinhTN14,https://doi.org/10.1007/s10878-014-9742-0 +Zhang Xingong,Two-agent scheduling problems on a single-machine to minimize the total weighted late work.,2017,33,J. Comb. Optim.,3,db/journals/jco/jco33.html#XingongY17,https://doi.org/10.1007/s10878-016-0017-9 +Tamás Király,Base polyhedra and the linking property.,2018,36,J. Comb. Optim.,3,db/journals/jco/jco36.html#Kiraly18,https://doi.org/10.1007/s10878-017-0133-1 +Shuxin Cai,Approximating soft-capacitated facility location problem with uncertainty.,2014,28,J. Comb. Optim.,2,db/journals/jco/jco28.html#CaiYT14,https://doi.org/10.1007/s10878-012-9573-9 +Vladimir G. Deineko,Robotic-Cell Scheduling: Special Polynomially Solvable Cases of the Traveling Salesman Problem on Permuted Monge Matrices.,2005,9,J. Comb. Optim.,4,db/journals/jco/jco9.html#DeinekoSX05,https://doi.org/10.1007/s10878-005-1778-8 +Zhixiang Chen,A quadratic lower bound for Rocchio's similarity-based relevance feedback algorithm with a fixed query updating factor.,2010,19,J. Comb. Optim.,2,db/journals/jco/jco19.html#ChenFA10,https://doi.org/10.1007/s10878-008-9169-6 +Xiang-Yang Li 0001,Practical Human-Machine Identification over Insecure Channels.,1999,3,J. Comb. Optim.,4,db/journals/jco/jco3.html#LiT99,https://doi.org/10.1023/A:1009894418895 +Charles J. Colbourn,Locating and detecting arrays for interaction faults.,2008,15,J. Comb. Optim.,1,db/journals/jco/jco15.html#ColbournM08,https://doi.org/10.1007/s10878-007-9082-4 +Donghyun Kim 0001,A joint optimization of data ferry trajectories and communication powers of ground sensors for long-term environmental monitoring.,2016,31,J. Comb. Optim.,4,db/journals/jco/jco31.html#KimWLLWT16,https://doi.org/10.1007/s10878-015-9840-7 +Tobias Harks,Uniqueness of equilibria in atomic splittable polymatroid congestion games.,2018,36,J. Comb. Optim.,3,db/journals/jco/jco36.html#HarksT18,https://doi.org/10.1007/s10878-017-0166-5 +Iyad A. Kanj,On certain geometric properties of the Yao-Yao graphs.,2014,27,J. Comb. Optim.,1,db/journals/jco/jco27.html#KanjX14,https://doi.org/10.1007/s10878-012-9570-z +Minming Li,Min-energy voltage allocation for tree-structured tasks.,2006,11,J. Comb. Optim.,3,db/journals/jco/jco11.html#LiLY06,https://doi.org/10.1007/s10878-006-7910-6 +Amir Daneshgar,On the odd girth and the circular chromatic number of generalized Petersen graphs.,2017,33,J. Comb. Optim.,3,db/journals/jco/jco33.html#DaneshgarM17,https://doi.org/10.1007/s10878-016-0013-0 +Lusheng Wang,Introduction to the special issue.,2006,11,J. Comb. Optim.,2,db/journals/jco/jco11.html#Wang06,https://doi.org/10.1007/s10878-006-7118-9 +Peter Damaschke,Parameterizations of hitting set of bundles and inverse scope.,2015,29,J. Comb. Optim.,4,db/journals/jco/jco29.html#Damaschke15,https://doi.org/10.1007/s10878-013-9629-5 +Marco Bender,An optimal randomized online algorithm for the k-Canadian Traveller Problem on node-disjoint paths.,2015,30,J. Comb. Optim.,1,db/journals/jco/jco30.html#BenderW15,https://doi.org/10.1007/s10878-013-9634-8 +Zhao Zhang,Super cyclically edge connected transitive graphs.,2011,22,J. Comb. Optim.,4,db/journals/jco/jco22.html#ZhangW11,https://doi.org/10.1007/s10878-010-9304-z +Yaochun Huang,A better constant-factor approximation for weighted dominating set in unit disk graph.,2009,18,J. Comb. Optim.,2,db/journals/jco/jco18.html#HuangGZW09,https://doi.org/10.1007/s10878-008-9146-0 +Jing Gao,Approximate event detection over multi-modal sensing data.,2016,32,J. Comb. Optim.,4,db/journals/jco/jco32.html#GaoLL16,https://doi.org/10.1007/s10878-015-9847-0 +Feng Zou,Node-weighted Steiner tree approximation in unit disk graphs.,2009,18,J. Comb. Optim.,4,db/journals/jco/jco18.html#ZouLGW09,https://doi.org/10.1007/s10878-009-9229-6 +Weifan Wang,On backbone coloring of graphs.,2012,23,J. Comb. Optim.,1,db/journals/jco/jco23.html#WangBMR12,https://doi.org/10.1007/s10878-010-9342-6 +Chan-Wei Chang,F3-domination problem of graphs.,2014,28,J. Comb. Optim.,2,db/journals/jco/jco28.html#ChangKLY14,https://doi.org/10.1007/s10878-012-9563-y +Qing Zhao,Semidefinite Programming Relaxations for the Quadratic Assignment Problem.,1998,2,J. Comb. Optim.,1,db/journals/jco/jco2.html#ZhaoKRW98,https://doi.org/10.1023/A:1009795911987 +Ailian Wang,On Bharathi-Kempe-Salek conjecture for influence maximization on arborescence.,2016,31,J. Comb. Optim.,4,db/journals/jco/jco31.html#WangWC16,https://doi.org/10.1007/s10878-016-9991-1 +Diana Fanghänel,A bilevel programming problem with maximization of a supermodular function in the lower level.,2013,26,J. Comb. Optim.,3,db/journals/jco/jco26.html#Fanghanel13,https://doi.org/10.1007/s10878-012-9478-7 +C. T. Ng,A note on the complexity of the problem of two-agent scheduling on a single machine.,2006,12,J. Comb. Optim.,4,db/journals/jco/jco12.html#NgCY06,https://doi.org/10.1007/s10878-006-9001-0 +Bhaskar DasGupta,Inapproximability results for the lateral gene transfer problem.,2006,11,J. Comb. Optim.,4,db/journals/jco/jco11.html#DasguptaFGP06,https://doi.org/10.1007/s10878-006-8212-8 +Ricardo M. A. Silva,A Python/C++ library for bound-constrained global optimization using a biased random-key genetic algorithm.,2015,30,J. Comb. Optim.,3,db/journals/jco/jco30.html#SilvaRP15,https://doi.org/10.1007/s10878-013-9659-z +Peter Sussner,On Integer Programming Approaches for Morphological Template Decomposition Problems in Computer Vision.,1997,1,J. Comb. Optim.,2,db/journals/jco/jco1.html#SussnerPR97,https://doi.org/10.1023/A:1009707932516 +Hejiao Huang,Handling least privilege problem and role mining in RBAC.,2015,30,J. Comb. Optim.,1,db/journals/jco/jco30.html#HuangSLD15,https://doi.org/10.1007/s10878-013-9633-9 +Odile Favaron,Game domination subdivision number of a graph.,2015,30,J. Comb. Optim.,1,db/journals/jco/jco30.html#FavaronKS15,https://doi.org/10.1007/s10878-013-9636-6 +Yingshu Li,Designing k-coverage schedules in wireless sensor networks.,2008,15,J. Comb. Optim.,2,db/journals/jco/jco15.html#LiG08,https://doi.org/10.1007/s10878-007-9072-6 +Cynthia A. Phillips,Improved Bounds on Relaxations of a Parallel Machine Scheduling Problem.,1998,1,J. Comb. Optim.,4,db/journals/jco/jco1.html#PhillipsSSSW98,https://doi.org/10.1023/A:1009750913529 +Jakub Przybylo,On colour-blind distinguishing colour pallets in regular graphs.,2014,28,J. Comb. Optim.,2,db/journals/jco/jco28.html#Przybylo14,https://doi.org/10.1007/s10878-012-9556-x +Haiyan Li,On minimum balanced bipartitions of triangle-free graphs.,2014,27,J. Comb. Optim.,3,db/journals/jco/jco27.html#LiLLX14,https://doi.org/10.1007/s10878-012-9539-y +Guoqiang Bai 0002,Constraint bipartite vertex cover: simpler exact algorithms and implementations.,2012,23,J. Comb. Optim.,3,db/journals/jco/jco23.html#BaiF12,https://doi.org/10.1007/s10878-010-9289-7 +Hongxing Jiang,Total restrained domination in claw-free graphs.,2010,19,J. Comb. Optim.,1,db/journals/jco/jco19.html#JiangK10,https://doi.org/10.1007/s10878-008-9161-1 +H. Edwin Romeijn,A Probabilistic Feasibility and Value Analysis of the Generalized Assignment Problem.,2000,4,J. Comb. Optim.,3,db/journals/jco/jco4.html#RomeijnP00,https://doi.org/10.1023/A:1009874227903 +Binhai Zhu,New Approximation Algorithms for Map Labeling with Sliding Labels.,2002,6,J. Comb. Optim.,1,db/journals/jco/jco6.html#ZhuQ02,https://doi.org/10.1023/A:1013326409918 +Guangjun Xu,On the power domination number of the generalized Petersen graphs.,2011,22,J. Comb. Optim.,2,db/journals/jco/jco22.html#XuK11,https://doi.org/10.1007/s10878-010-9293-y +Hossein Abdollahzadeh Ahangar,Signed Roman edge domination numbers in graphs.,2016,31,J. Comb. Optim.,1,db/journals/jco/jco31.html#AhangarASVZ16,https://doi.org/10.1007/s10878-014-9747-8 +Dominique Quadri,Exact solution method to solve large scale integer quadratic multidimensional knapsack problems.,2009,17,J. Comb. Optim.,2,db/journals/jco/jco17.html#QuadriST09,https://doi.org/10.1007/s10878-007-9105-1 +Petr Gregor,Note on incidence chromatic number of subquartic graphs.,2017,34,J. Comb. Optim.,1,db/journals/jco/jco34.html#GregorLS17,https://doi.org/10.1007/s10878-016-0072-2 +Jan Florek,On Barnette's conjecture and the H+- property.,2016,31,J. Comb. Optim.,3,db/journals/jco/jco31.html#Florek16,https://doi.org/10.1007/s10878-014-9797-y +Mikhail Y. Kovalyov,Optimal testing and repairing a failed series system.,2006,12,J. Comb. Optim.,3,db/journals/jco/jco12.html#KovalyovPO06,https://doi.org/10.1007/s10878-006-9633-0 +Mohammad Reza Oboudi,Majorization and the spectral radius of starlike trees.,2018,36,J. Comb. Optim.,1,db/journals/jco/jco36.html#Oboudi18,https://doi.org/10.1007/s10878-018-0287-5 +Qin Chen,Packing cycles exactly in polynomial time.,2012,23,J. Comb. Optim.,2,db/journals/jco/jco23.html#ChenC12,https://doi.org/10.1007/s10878-010-9347-1 +Ingela Nyström,Skeletonization of Volumetric Vascular Images - Distance Information Utilized for Visualization.,2001,5,J. Comb. Optim.,1,db/journals/jco/jco5.html#NystromS01,https://doi.org/10.1023/A:1009829415835 +Lasse Nisted,Optimal wafer cutting in shuttle layout problems.,2011,22,J. Comb. Optim.,2,db/journals/jco/jco22.html#NistedPA11,https://doi.org/10.1007/s10878-009-9284-z +Minyue Fu,Approximation Algorithms for Quadratic Programming.,1998,2,J. Comb. Optim.,1,db/journals/jco/jco2.html#FuLY98,https://doi.org/10.1023/A:1009739827008 +Xiaotie Deng,Approximation Algorithms in Batch Processing.,2003,7,J. Comb. Optim.,3,db/journals/jco/jco7.html#DengPZ03,https://doi.org/10.1023/A:1027316504440 +Longcheng Liu,Minimizing the sum cost in linear extensions of a poset.,2011,21,J. Comb. Optim.,2,db/journals/jco/jco21.html#LiuWY11,https://doi.org/10.1007/s10878-009-9237-6 +Marc Hellmuth,On tree representations of relations and graphs: symbolic ultrametrics and cograph edge decompositions.,2018,36,J. Comb. Optim.,2,db/journals/jco/jco36.html#HellmuthW18,https://doi.org/10.1007/s10878-017-0111-7 +Wei Zhang 0050,Polynomial time approximation scheme for t-latency bounded information propagation problem in wireless networks.,2012,23,J. Comb. Optim.,4,db/journals/jco/jco23.html#ZhangZWZL12,https://doi.org/10.1007/s10878-010-9359-x +Guangting Chen,Preface.,2013,26,J. Comb. Optim.,3,db/journals/jco/jco26.html#ChenLT13,https://doi.org/10.1007/s10878-012-9453-3 +Andrzej Kozik,Handling precedence constraints in scheduling problems by the sequence pair representation.,2017,33,J. Comb. Optim.,2,db/journals/jco/jco33.html#Kozik17,https://doi.org/10.1007/s10878-015-9973-8 +Chunmei Luo,The Wiener index of Sierpiński-like graphs.,2018,35,J. Comb. Optim.,3,db/journals/jco/jco35.html#LuoZZ18,https://doi.org/10.1007/s10878-017-0235-9 +Kinkar Chandra Das,On maximum Wiener index of trees and graphs with given radius.,2017,34,J. Comb. Optim.,2,db/journals/jco/jco34.html#DasN17,https://doi.org/10.1007/s10878-016-0092-y +Subhash C. Sarin,Equal Processing Time Bicriteria Scheduling on Parallel Machines.,2004,8,J. Comb. Optim.,3,db/journals/jco/jco8.html#SarinP04,https://doi.org/10.1023/B:JOCO.0000038909.06086.ed +Jiayin Pan,Online integrated allocation of berths and quay cranes in container terminals with 1-lookahead.,2018,36,J. Comb. Optim.,2,db/journals/jco/jco36.html#PanXZ18,https://doi.org/10.1007/s10878-017-0113-5 +Zhi-Zhong Chen,Improved approximation algorithms for metric MaxTSP.,2007,13,J. Comb. Optim.,4,db/journals/jco/jco13.html#ChenN07,https://doi.org/10.1007/s10878-006-9023-7 +Hovhannes A. Harutyunyan,On broadcasting in unicyclic graphs.,2008,16,J. Comb. Optim.,3,db/journals/jco/jco16.html#HarutyunyanM08,https://doi.org/10.1007/s10878-008-9160-2 +Defu Zhang,A hybrid algorithm based on variable neighbourhood for the strip packing problem.,2016,32,J. Comb. Optim.,2,db/journals/jco/jco32.html#ZhangCYSL16,https://doi.org/10.1007/s10878-016-0036-6 +Jinwei Gu,Asymptotically optimal policy for stochastic job shop scheduling problem to minimize makespan.,2018,36,J. Comb. Optim.,1,db/journals/jco/jco36.html#GuGLZ18,https://doi.org/10.1007/s10878-018-0294-6 +Huilan Chang,A new approach to solve open-partition problems.,2012,23,J. Comb. Optim.,1,db/journals/jco/jco23.html#ChangHR12,https://doi.org/10.1007/s10878-010-9341-7 +Zhengxing Zou,Harsanyi power solution for games with restricted cooperation.,2018,35,J. Comb. Optim.,1,db/journals/jco/jco35.html#ZouZ18,https://doi.org/10.1007/s10878-017-0152-y +Saman Eskandarzadeh,An extension of the relaxation algorithm for solving a special case of capacitated arc routing problems.,2009,17,J. Comb. Optim.,2,db/journals/jco/jco17.html#EskandarzadehTA09,https://doi.org/10.1007/s10878-007-9109-x +Nhat X. Lam,Dual power assignment optimization and fault tolerance in WSNs.,2015,30,J. Comb. Optim.,1,db/journals/jco/jco30.html#LamNAH15,https://doi.org/10.1007/s10878-013-9637-5 +Robert W. Irving,Stable matching problems with exchange restrictions.,2008,16,J. Comb. Optim.,4,db/journals/jco/jco16.html#Irving08,https://doi.org/10.1007/s10878-008-9153-1 +An Zhang,Optimal online algorithms on two hierarchical machines with tightly-grouped processing *.,2015,29,J. Comb. Optim.,4,db/journals/jco/jco29.html#ZhangJFH15,https://doi.org/10.1007/s10878-013-9627-7 +Ling Gai,On lazy bureaucrat scheduling with common deadlines.,2008,15,J. Comb. Optim.,2,db/journals/jco/jco15.html#GaiZ08,https://doi.org/10.1007/s10878-007-9076-2 +Egon Balas,Job Shop Scheduling With Deadlines.,1998,1,J. Comb. Optim.,4,db/journals/jco/jco1.html#BalasLSV98,https://doi.org/10.1023/A:1009750409895 +Davide Bilò,New bounds for the balloon popping problem.,2015,29,J. Comb. Optim.,1,db/journals/jco/jco29.html#BiloB15,https://doi.org/10.1007/s10878-013-9696-7 +Mhand Hifi,Dynamic Programming and Hill-Climbing Techniques for Constrained Two-Dimensional Cutting Stock Problems.,2004,8,J. Comb. Optim.,1,db/journals/jco/jco8.html#Hifi04,https://doi.org/10.1023/B:JOCO.0000021938.49750.91 +Grigory Pastukhov,Optimal design and augmentation of strongly attack-tolerant two-hop clusters in directed networks.,2014,27,J. Comb. Optim.,3,db/journals/jco/jco27.html#PastukhovVBP14,https://doi.org/10.1007/s10878-012-9523-6 +Diana Fanghänel,Optimality conditions for a bilevel matroid problem.,2011,22,J. Comb. Optim.,4,db/journals/jco/jco22.html#Fanghanel11,https://doi.org/10.1007/s10878-010-9307-9 +J. John,Total and forcing total edge-to-vertex monophonic number of a graph.,2018,35,J. Comb. Optim.,1,db/journals/jco/jco35.html#JohnS18,https://doi.org/10.1007/s10878-017-0160-y +Eranda çela,Heuristics for the data arrangement problem on regular trees.,2015,30,J. Comb. Optim.,3,db/journals/jco/jco30.html#CelaS15,https://doi.org/10.1007/s10878-013-9666-0 +Lehilton L. C. Pedrosa,Approximation algorithms for the bus evacuation problem.,2018,36,J. Comb. Optim.,1,db/journals/jco/jco36.html#PedrosaS18,https://doi.org/10.1007/s10878-018-0290-x +Zofia Stepien,The Cartesian product of cycles with small 2-rainbow domination number.,2015,30,J. Comb. Optim.,3,db/journals/jco/jco30.html#StepienSZ15,https://doi.org/10.1007/s10878-013-9658-0 +Xingang Wen,Online traveling salesman problem with deadlines and service flexibility.,2015,30,J. Comb. Optim.,3,db/journals/jco/jco30.html#WenXZ15,https://doi.org/10.1007/s10878-013-9654-4 +Ming-Yang Kao,Efficient Detection and Protection of Information in Cross Tabulated Tables II: Minimal Linear Invariants.,1997,1,J. Comb. Optim.,2,db/journals/jco/jco1.html#Kao97,https://doi.org/10.1023/A:1009712000657 +Paola Bonizzoni,Anonymizing binary and small tables is hard to approximate.,2011,22,J. Comb. Optim.,1,db/journals/jco/jco22.html#BonizzoniVD11,https://doi.org/10.1007/s10878-009-9277-y +Rongheng Li,Semi-online scheduling for jobs with release *.,2013,26,J. Comb. Optim.,3,db/journals/jco/jco26.html#LiYHCC13,https://doi.org/10.1007/s10878-011-9425-z +Jianzhong Zhang 0001,Solution Structure of Some Inverse Combinatorial Optimization Problems.,1999,3,J. Comb. Optim.,1,db/journals/jco/jco3.html#ZhangM99,https://doi.org/10.1023/A:1009829525096 +Naoyuki Kamiyama,The popular matching and condensation problems under matroid constraints.,2016,32,J. Comb. Optim.,4,db/journals/jco/jco32.html#Kamiyama16,https://doi.org/10.1007/s10878-015-9965-8 +Yi Hong 0003,Maximizing target-temporal coverage of mission-driven camera sensor networks.,2017,34,J. Comb. Optim.,1,db/journals/jco/jco34.html#HongLKCYT17,https://doi.org/10.1007/s10878-016-0071-3 +Masoud T. Omran,Finding paths with minimum shared edges.,2013,26,J. Comb. Optim.,4,db/journals/jco/jco26.html#OmranSZ13,https://doi.org/10.1007/s10878-012-9462-2 +Yong Zhang 0001,Constrained pairwise and center-star sequences alignment problems.,2016,32,J. Comb. Optim.,1,db/journals/jco/jco32.html#ZhangCCTYZS16,https://doi.org/10.1007/s10878-015-9914-6 +Annalisa De Bonis,New combinatorial structures with applications to efficient group testing with inhibitors.,2008,15,J. Comb. Optim.,1,db/journals/jco/jco15.html#Bonis08,https://doi.org/10.1007/s10878-007-9085-1 +Yinfeng Xu,How much the grid network and rescuers' communication can improve the rescue efficiency in worst-case analysis.,2015,30,J. Comb. Optim.,4,db/journals/jco/jco30.html#XuZ15,https://doi.org/10.1007/s10878-013-9681-1 +Caterina De Simone,Edge-colouring of joins of regular graphs II.,2013,25,J. Comb. Optim.,1,db/journals/jco/jco25.html#SimoneG13,https://doi.org/10.1007/s10878-011-9420-4 +Chunfang Zheng,Genome rearrangements with partially ordered chromosomes.,2006,11,J. Comb. Optim.,2,db/journals/jco/jco11.html#ZhengS06,https://doi.org/10.1007/s10878-006-7120-2 +B. Chaluvaraju,Generalized perfect domination in graphs.,2014,27,J. Comb. Optim.,2,db/journals/jco/jco27.html#ChaluvarajuV14,https://doi.org/10.1007/s10878-012-9510-y +Don A. Grundel,On the number of local minima for the multidimensional assignment problem.,2007,13,J. Comb. Optim.,1,db/journals/jco/jco13.html#GrundelKOP07,https://doi.org/10.1007/s10878-006-9009-5 +Davood Shiri,On the online multi-agent O-D k-Canadian Traveler Problem.,2017,34,J. Comb. Optim.,2,db/journals/jco/jco34.html#ShiriS17,https://doi.org/10.1007/s10878-016-0079-8 +Q. Q. Nong,A coordination mechanism for a scheduling game with parallel-batching machines.,2017,33,J. Comb. Optim.,2,db/journals/jco/jco33.html#NongFF17,https://doi.org/10.1007/s10878-015-9980-9 +Jianzhong Zhang 0001,A General Model of Some Inverse Combinatorial Optimization Problems and Its Solution Method Under l-Norm.,2002,6,J. Comb. Optim.,2,db/journals/jco/jco6.html#ZhangL02,https://doi.org/10.1023/A:1013807829021 +Vadim E. Levit,Computing unique maximum matchings in O(m) time for König-Egerváry graphs and unicyclic graphs.,2016,32,J. Comb. Optim.,1,db/journals/jco/jco32.html#LevitM16,https://doi.org/10.1007/s10878-015-9875-9 +Wanpracha Art Chaovalitwongse,GRASP with a New Local Search Scheme for Vehicle Routing Problems with Time Windows.,2003,7,J. Comb. Optim.,2,db/journals/jco/jco7.html#ChaovalitwongseKP03,https://doi.org/10.1023/A:1024427114516 +Filipa D. Carvalho,The triangle k-club problem.,2017,33,J. Comb. Optim.,3,db/journals/jco/jco33.html#CarvalhoA17,https://doi.org/10.1007/s10878-016-0009-9 +Weifan Wang,The adjacent vertex distinguishing total coloring of planar graphs.,2014,27,J. Comb. Optim.,2,db/journals/jco/jco27.html#WangH14,https://doi.org/10.1007/s10878-012-9527-2 +Maxim A. Babenko,Min-cost multiflows in node-capacitated undirected networks.,2012,24,J. Comb. Optim.,3,db/journals/jco/jco24.html#BabenkoK12,https://doi.org/10.1007/s10878-011-9377-3 +Zhigang Cao,Approximation algorithms for pricing with negative network externalities.,2017,33,J. Comb. Optim.,2,db/journals/jco/jco33.html#CaoCHW17,https://doi.org/10.1007/s10878-015-9988-1 +Benjamin McClosky,Co-2-plex polynomials.,2011,22,J. Comb. Optim.,4,db/journals/jco/jco22.html#McCloskySH11,https://doi.org/10.1007/s10878-010-9313-y +Feifeng Zheng,On-line production order scheduling with preemption penalties.,2007,13,J. Comb. Optim.,2,db/journals/jco/jco13.html#ZhengXZ07,https://doi.org/10.1007/s10878-006-9027-3 +Ushnish Sarkar,A new graph parameter and a construction of larger graph without increasing radio k-chromatic number.,2017,33,J. Comb. Optim.,4,db/journals/jco/jco33.html#SarkarA17,https://doi.org/10.1007/s10878-016-0041-9 +Robert Janczewski,An O(n log n) algorithm for finding edge span of cacti.,2016,31,J. Comb. Optim.,4,db/journals/jco/jco31.html#JanczewskiT16,https://doi.org/10.1007/s10878-015-9827-4 +Yann Disser,Degree-constrained orientations of embedded graphs.,2016,31,J. Comb. Optim.,2,db/journals/jco/jco31.html#DisserM16,https://doi.org/10.1007/s10878-014-9786-1 +Yuefang Sun,On the difference of two generalized connectivities of a graph.,2017,33,J. Comb. Optim.,1,db/journals/jco/jco33.html#SunL17,https://doi.org/10.1007/s10878-015-9956-9 +Xiaoming Sun,Near optimal algorithms for online weighted bipartite matching in adversary model.,2017,34,J. Comb. Optim.,3,db/journals/jco/jco34.html#SunZZ17,https://doi.org/10.1007/s10878-016-0100-2 +Sheng-Yi Cai,Semi-online scheduling on two uniform machines with the known largest size.,2011,21,J. Comb. Optim.,4,db/journals/jco/jco21.html#CaiY11,https://doi.org/10.1007/s10878-009-9254-5 +Liang Song,Approximation schemes for Euclidean vehicle routing problems with time windows.,2016,32,J. Comb. Optim.,4,db/journals/jco/jco32.html#SongHD16,https://doi.org/10.1007/s10878-015-9931-5 +David Avis,Computing monotone disjoint paths on polytopes.,2008,16,J. Comb. Optim.,4,db/journals/jco/jco16.html#AvisK08,https://doi.org/10.1007/s10878-008-9151-3 +Zhixiang Chen,On recovering syntenic blocks from comparative maps.,2009,18,J. Comb. Optim.,3,db/journals/jco/jco18.html#ChenFJZ09,https://doi.org/10.1007/s10878-009-9233-x +Chen Wang,On dual power assignment optimization for biconnectivity.,2010,19,J. Comb. Optim.,2,db/journals/jco/jco19.html#WangWPFW10,https://doi.org/10.1007/s10878-008-9173-x +Huilan Chang,Reconstruction of hidden graphs and threshold group testing.,2011,22,J. Comb. Optim.,2,db/journals/jco/jco22.html#ChangCFS11,https://doi.org/10.1007/s10878-010-9291-0 +Hongxu Cai,On Approximation Ratios of Minimum-Energy Multicast Routing in Wireless Networks.,2005,9,J. Comb. Optim.,3,db/journals/jco/jco9.html#CaiZ05,https://doi.org/10.1007/s10878-005-1409-4 +Domingos Moreira Cardoso,Maximum k -regular induced subgraphs.,2007,14,J. Comb. Optim.,4,db/journals/jco/jco14.html#CardosoKL07,https://doi.org/10.1007/s10878-007-9045-9 +Anthony J. Macula,Group Testing with Relatively Small Pools and DNA Library Screening.,1998,2,J. Comb. Optim.,4,db/journals/jco/jco2.html#Macula98,https://doi.org/10.1023/A:1009732820981 +Maciej Rysz,On risk-averse maximum weighted subgraph problems.,2014,28,J. Comb. Optim.,1,db/journals/jco/jco28.html#RyszMKP14,https://doi.org/10.1007/s10878-014-9718-0 +Xiaoling Ma,Edge-disjoint spanning trees and the number of maximum state circles of a graph.,2018,35,J. Comb. Optim.,4,db/journals/jco/jco35.html#MaWJ18,https://doi.org/10.1007/s10878-018-0249-y +David Avis,On the directed cut cone and polytope.,2016,31,J. Comb. Optim.,4,db/journals/jco/jco31.html#AvisM16,https://doi.org/10.1007/s10878-015-9863-0 +Enock Chisonge Mofya,Exact and heuristic algorithms for solving the generalized minimum filter placement problem.,2006,12,J. Comb. Optim.,3,db/journals/jco/jco12.html#MofyaS06,https://doi.org/10.1007/s10878-006-9631-2 +Markus Chimani,A tighter insertion-based approximation of the crossing number.,2017,33,J. Comb. Optim.,4,db/journals/jco/jco33.html#ChimaniH17,https://doi.org/10.1007/s10878-016-0030-z +Thang N. Dinh,On the approximability of positive influence dominating set in social networks.,2014,27,J. Comb. Optim.,3,db/journals/jco/jco27.html#DinhSNT14,https://doi.org/10.1007/s10878-012-9530-7 +Nachshon Cohen,Approximating minimum power edge-multi-covers.,2015,30,J. Comb. Optim.,3,db/journals/jco/jco30.html#CohenN15,https://doi.org/10.1007/s10878-013-9652-6 +Jian Li 0006,Multi-depot vehicle routing problem with time windows under shared depot resources.,2016,31,J. Comb. Optim.,2,db/journals/jco/jco31.html#LiLP16,https://doi.org/10.1007/s10878-014-9767-4 +Hans Kellerer,Preemptive scheduling on two identical parallel machines with a single transporter.,2013,25,J. Comb. Optim.,2,db/journals/jco/jco25.html#KellererSS13,https://doi.org/10.1007/s10878-012-9511-x +J. Amjadi,Nordhaus-Gaddum bounds for total Roman domination.,2018,35,J. Comb. Optim.,1,db/journals/jco/jco35.html#AmjadiSS18,https://doi.org/10.1007/s10878-017-0158-5 +Jun Guo 0004,Pooling designs associated with unitary space and ratio efficiency comparison.,2010,19,J. Comb. Optim.,4,db/journals/jco/jco19.html#Guo10,https://doi.org/10.1007/s10878-008-9185-6 +Luís A. C. Roque,A hybrid biased random key genetic algorithm approach for the unit commitment problem.,2014,28,J. Comb. Optim.,1,db/journals/jco/jco28.html#RoqueFF14,https://doi.org/10.1007/s10878-014-9710-8 +Huajun Zhang,A method combining genetic algorithm with simultaneous perturbation stochastic approximation for linearly constrained stochastic optimization problems.,2016,31,J. Comb. Optim.,3,db/journals/jco/jco31.html#ZhangZL16,https://doi.org/10.1007/s10878-014-9803-4 +Patrizio Angelini,Acyclically 3-colorable planar graphs.,2012,24,J. Comb. Optim.,2,db/journals/jco/jco24.html#AngeliniF12,https://doi.org/10.1007/s10878-011-9385-3 +Chunjie Su,Online LPT algorithms for parallel machines scheduling with a single server.,2013,26,J. Comb. Optim.,3,db/journals/jco/jco26.html#Su13,https://doi.org/10.1007/s10878-011-9441-z +Michel Mollard,The domination number of Cartesian product of two directed paths.,2014,27,J. Comb. Optim.,1,db/journals/jco/jco27.html#Mollard14,https://doi.org/10.1007/s10878-012-9494-7 +Ailin Hou,Sharp bounds for Zagreb indices of maximal outerplanar graphs.,2011,22,J. Comb. Optim.,2,db/journals/jco/jco22.html#HouLSW11,https://doi.org/10.1007/s10878-010-9288-8 +Jun Guo,Deterministic construction of compressed sensing matrices based on semilattices.,2018,35,J. Comb. Optim.,1,db/journals/jco/jco35.html#GuoL18,https://doi.org/10.1007/s10878-017-0162-9 +Boris I. Goldengorin,A tolerance-based heuristic approach for the weighted independent set problem.,2015,29,J. Comb. Optim.,2,db/journals/jco/jco29.html#GoldengorinMPZ15,https://doi.org/10.1007/s10878-013-9606-z +Leo Liberti,Mathematical programming: Turing completeness and applications to software analysis.,2014,28,J. Comb. Optim.,1,db/journals/jco/jco28.html#LibertiM14,https://doi.org/10.1007/s10878-014-9715-3 +Adam Kurpisz,Sum-of-squares rank upper bounds for matching problems.,2018,36,J. Comb. Optim.,3,db/journals/jco/jco36.html#KurpiszLM18,https://doi.org/10.1007/s10878-017-0169-2 +Xing Feng,An O(|E(G)|2) algorithm for recognizing Pfaffian graphs of a type of bipartite graphs.,2018,35,J. Comb. Optim.,3,db/journals/jco/jco35.html#FengZZ18,https://doi.org/10.1007/s10878-017-0207-0 +Wayne Goddard,Restricted domination parameters in graphs.,2007,13,J. Comb. Optim.,4,db/journals/jco/jco13.html#GoddardH07,https://doi.org/10.1007/s10878-006-9037-1 +Mustafa ç. Pinar,Robust trading mechanisms over 0/1 polytopes.,2018,36,J. Comb. Optim.,3,db/journals/jco/jco36.html#Pinar18,https://doi.org/10.1007/s10878-017-0177-2 +Asaf Levin,Lower bounds on the adaptivity gaps in variants of the stochastic knapsack problem.,2018,35,J. Comb. Optim.,3,db/journals/jco/jco35.html#LevinV18,https://doi.org/10.1007/s10878-017-0234-x +Bumtle Kang,On consecutive edge magic total labelings of connected bipartite graphs.,2017,33,J. Comb. Optim.,1,db/journals/jco/jco33.html#KangKP17,https://doi.org/10.1007/s10878-015-9928-0 +Sourour Elloumi,A tighter formulation of the p-median problem.,2010,19,J. Comb. Optim.,1,db/journals/jco/jco19.html#Elloumi10,https://doi.org/10.1007/s10878-008-9162-0 +Yi Xu,The connected disk covering problem.,2018,35,J. Comb. Optim.,2,db/journals/jco/jco35.html#XuPWZ18,https://doi.org/10.1007/s10878-017-0195-0 +Mhand Hifi,Approximate and Exact Algorithms for Constrained (Un) Weighted Two-dimensional Two-staged Cutting Stock Problems.,2001,5,J. Comb. Optim.,4,db/journals/jco/jco5.html#HifiR01,https://doi.org/10.1023/A:1011628809603 +Boting Yang,Monotonicity of strong searching on digraphs.,2007,14,J. Comb. Optim.,4,db/journals/jco/jco14.html#YangC07,https://doi.org/10.1007/s10878-007-9042-z +Costas K. Constantinou,Minimal path decomposition of complete bipartite graphs.,2018,35,J. Comb. Optim.,3,db/journals/jco/jco35.html#ConstantinouE18,https://doi.org/10.1007/s10878-017-0200-7 +Jing Li,How patient compliance impacts the recommendations for colorectal cancer screening.,2015,30,J. Comb. Optim.,4,db/journals/jco/jco30.html#LiDRY15,https://doi.org/10.1007/s10878-015-9849-y +Yufeng Wu,A new recombination lower bound and the minimum perfect phylogenetic forest problem.,2008,16,J. Comb. Optim.,3,db/journals/jco/jco16.html#WuG08,https://doi.org/10.1007/s10878-007-9129-6 +Lidan Fan,An individual-based model of information diffusion combining friends' influence.,2014,28,J. Comb. Optim.,3,db/journals/jco/jco28.html#FanLWBWT14,https://doi.org/10.1007/s10878-013-9677-x +Enqiang Zhu,Acyclic 3-coloring of generalized Petersen graphs.,2016,31,J. Comb. Optim.,2,db/journals/jco/jco31.html#ZhuLSXL16,https://doi.org/10.1007/s10878-014-9799-9 +Byung-Cheon Choi,Two-stage proportionate flexible flow shop to minimize the makespan.,2013,25,J. Comb. Optim.,1,db/journals/jco/jco25.html#ChoiL13,https://doi.org/10.1007/s10878-011-9423-1 +Maya Maimon,A simulation tool for modeling the influence of anatomy on information flow using discrete integrate and fire neurons.,2008,15,J. Comb. Optim.,3,db/journals/jco/jco15.html#MaimonM08,https://doi.org/10.1007/s10878-007-9103-3 +Zhixiang Chen,Approximating multilinear monomial coefficients and maximum multilinear monomials in multivariate polynomials.,2013,25,J. Comb. Optim.,2,db/journals/jco/jco25.html#ChenF13,https://doi.org/10.1007/s10878-012-9496-5 +Bugra Caskurlu,"On approximating optimal weight ""no""-certificates in weighted difference constraint systems.",2018,36,J. Comb. Optim.,2,db/journals/jco/jco36.html#CaskurluWSM18,https://doi.org/10.1007/s10878-018-0292-8 +Mekkia Kouider,On the b-coloring of tight graphs.,2017,33,J. Comb. Optim.,1,db/journals/jco/jco33.html#KouiderZ17,https://doi.org/10.1007/s10878-015-9946-y +Jin Liu,An extended strange planet protocol.,2015,30,J. Comb. Optim.,2,db/journals/jco/jco30.html#LiuDTZ15,https://doi.org/10.1007/s10878-014-9750-0 +Joseph Wun-Tat Chan,Online tree node assignment with resource augmentation.,2011,22,J. Comb. Optim.,3,db/journals/jco/jco22.html#ChanCTZ11,https://doi.org/10.1007/s10878-010-9292-z +Paola Bonizzoni,Parameterized complexity of k-anonymity: hardness and tractability.,2013,26,J. Comb. Optim.,1,db/journals/jco/jco26.html#BonizzoniVDP13,https://doi.org/10.1007/s10878-011-9428-9 +Guoliang Xue,An Efficient Algorithm for Delay Buffer Minimization.,2000,4,J. Comb. Optim.,2,db/journals/jco/jco4.html#XueSDS00,https://doi.org/10.1023/A:1009850721462 +Shuchao Li,Further results on the reciprocal degree distance of graphs.,2016,31,J. Comb. Optim.,2,db/journals/jco/jco31.html#LiZZ16,https://doi.org/10.1007/s10878-014-9780-7 +Hanyuan Deng,A unified linear-programming modeling of some topological indices.,2015,30,J. Comb. Optim.,3,db/journals/jco/jco30.html#DengHJ15,https://doi.org/10.1007/s10878-013-9672-2 +Dana Angluin,Network construction with subgraph connectivity constraints.,2015,29,J. Comb. Optim.,2,db/journals/jco/jco29.html#AngluinAR15,https://doi.org/10.1007/s10878-013-9603-2 +Lan Qin,Fibonacci helps to evacuate from a convex region in a grid network.,2017,34,J. Comb. Optim.,2,db/journals/jco/jco34.html#QinX17,https://doi.org/10.1007/s10878-016-9998-7 +Jon Lee 0001,All-Different Polytopes.,2002,6,J. Comb. Optim.,3,db/journals/jco/jco6.html#Lee02,https://doi.org/10.1023/A:1014804110661 +Bruno Courcelle,Compact labelings for efficient first-order model-checking.,2011,21,J. Comb. Optim.,1,db/journals/jco/jco21.html#CourcelleGK11,https://doi.org/10.1007/s10878-009-9260-7 +Danny Z. Chen,Computing Optimal Beams in Two and Three Dimensions.,2003,7,J. Comb. Optim.,2,db/journals/jco/jco7.html#ChenHX03,https://doi.org/10.1023/A:1024484412699 +Wei Ding 0006,Algorithms for the minimum diameter terminal Steiner tree problem.,2014,28,J. Comb. Optim.,4,db/journals/jco/jco28.html#DingQ14,https://doi.org/10.1007/s10878-012-9591-7 +Luis A. Dupont,Algebraic and combinatorial properties of ideals and algebras of uniform clutters of TDI systems.,2011,21,J. Comb. Optim.,3,db/journals/jco/jco21.html#DupontV11,https://doi.org/10.1007/s10878-009-9244-7 +Wei Dong,2-Distance coloring of planar graphs with girth 5.,2017,34,J. Comb. Optim.,4,db/journals/jco/jco34.html#DongX17,https://doi.org/10.1007/s10878-017-0148-7 +Gerard J. Chang,Vertex and Tree Arboricities of Graphs.,2004,8,J. Comb. Optim.,3,db/journals/jco/jco8.html#ChangCC04,https://doi.org/10.1023/B:JOCO.0000038912.82046.17 +Chunyan Liu,Optimal RSUs placement with delay bounded message dissemination in vehicular networks.,2017,33,J. Comb. Optim.,4,db/journals/jco/jco33.html#LiuHDJ17,https://doi.org/10.1007/s10878-016-0034-8 +Michael A. Henning,Which trees have a differentiating-paired dominating set?,2011,22,J. Comb. Optim.,1,db/journals/jco/jco22.html#HenningM11,https://doi.org/10.1007/s10878-009-9268-z +Ye Tian 0006,A new effective branch-and-bound algorithm to the high order MIMO detection problem.,2017,33,J. Comb. Optim.,4,db/journals/jco/jco33.html#TianLYL17,https://doi.org/10.1007/s10878-016-0045-5 +Dongyue Liang,A simple greedy approximation algorithm for the minimum connected k-Center problem.,2016,31,J. Comb. Optim.,4,db/journals/jco/jco31.html#LiangMW016,https://doi.org/10.1007/s10878-015-9831-8 +Yu-Ki Chan,Optimal tree structure with loyal users and batch updates.,2011,22,J. Comb. Optim.,4,db/journals/jco/jco22.html#ChanLW11,https://doi.org/10.1007/s10878-010-9312-z +Chun-Ying Chiang,Some results on the target set selection problem.,2013,25,J. Comb. Optim.,4,db/journals/jco/jco25.html#ChiangHLWY13,https://doi.org/10.1007/s10878-012-9518-3 +Rommel M. Barbosa,On the efficiency index of a graph.,2016,31,J. Comb. Optim.,3,db/journals/jco/jco31.html#BarbosaS16,https://doi.org/10.1007/s10878-014-9814-1 +Biao Wu,Two extremal problems related to orders.,2018,35,J. Comb. Optim.,2,db/journals/jco/jco35.html#WuP18,https://doi.org/10.1007/s10878-017-0196-z +Sandi Klavzar,Structure of Fibonacci cubes: a survey.,2013,25,J. Comb. Optim.,4,db/journals/jco/jco25.html#Klavzar13,https://doi.org/10.1007/s10878-011-9433-z +György Dósa,Scheduling with machine cost and rejection.,2006,12,J. Comb. Optim.,4,db/journals/jco/jco12.html#DosaH06,https://doi.org/10.1007/s10878-006-9003-y +Chenxia Zhao,Approximation algorithms on 0-1 linear knapsack problem with a single continuous variable.,2014,28,J. Comb. Optim.,4,db/journals/jco/jco28.html#ZhaoL14,https://doi.org/10.1007/s10878-012-9579-3 +Ron Adar,The k-metric dimension.,2017,34,J. Comb. Optim.,1,db/journals/jco/jco34.html#AdarE17,https://doi.org/10.1007/s10878-016-0073-1 +Yi Zhou,A three-phased local search approach for the clique partitioning problem.,2016,32,J. Comb. Optim.,2,db/journals/jco/jco32.html#ZhouHG16,https://doi.org/10.1007/s10878-015-9964-9 +Pu Cai,Efficient Algorithms for a Scheduling Problem and its Applications to Illicit Drug Market Crackdowns.,1998,1,J. Comb. Optim.,4,db/journals/jco/jco1.html#CaiCN98,https://doi.org/10.1023/A:1009738610804 +Onur Seref,Selective support vector machines.,2009,17,J. Comb. Optim.,1,db/journals/jco/jco17.html#SerefKPP09,https://doi.org/10.1007/s10878-008-9189-2 +Xi Chen,A two-stage method for member selection of emergency medical service.,2015,30,J. Comb. Optim.,4,db/journals/jco/jco30.html#ChenFLHZJ15,https://doi.org/10.1007/s10878-015-9856-z +Yuehua Bu,List 2-distance coloring of planar graphs.,2015,30,J. Comb. Optim.,4,db/journals/jco/jco30.html#BuY15,https://doi.org/10.1007/s10878-013-9700-2 +Liwei Zhong,A two-stage approach for surgery scheduling.,2014,27,J. Comb. Optim.,3,db/journals/jco/jco27.html#ZhongLWXYT14,https://doi.org/10.1007/s10878-012-9535-2 +Huili Zhang,Online covering salesman problem.,2018,35,J. Comb. Optim.,3,db/journals/jco/jco35.html#ZhangX18,https://doi.org/10.1007/s10878-017-0227-9 +Giorgio Lucarelli,On the max-weight edge coloring problem.,2010,20,J. Comb. Optim.,4,db/journals/jco/jco20.html#LucarelliMP10,https://doi.org/10.1007/s10878-009-9223-z +Hong Jie Song,Neighbor sum distinguishing total coloring of planar graphs without 4-cycles.,2017,34,J. Comb. Optim.,4,db/journals/jco/jco34.html#SongX17,https://doi.org/10.1007/s10878-017-0137-x +Min Chen 0012,Star list chromatic number of planar subcubic graphs.,2014,27,J. Comb. Optim.,3,db/journals/jco/jco27.html#ChenRW14,https://doi.org/10.1007/s10878-012-9522-7 +Chia-Mao Huang,Tree edge decomposition with an application to minimum ultrametric tree approximation.,2006,12,J. Comb. Optim.,3,db/journals/jco/jco12.html#HuangWY06,https://doi.org/10.1007/s10878-006-9626-z +Jin-yi Cai,Honeynet games: a game theoretic approach to defending network monitors.,2011,22,J. Comb. Optim.,3,db/journals/jco/jco22.html#CaiYAB11,https://doi.org/10.1007/s10878-009-9285-y +Chao Wang,k-Power domination in block graphs.,2016,31,J. Comb. Optim.,2,db/journals/jco/jco31.html#Wang0L16,https://doi.org/10.1007/s10878-014-9795-0 +Ran Ma,Online scheduling to minimize the total weighted completion time plus the rejection cost.,2017,34,J. Comb. Optim.,2,db/journals/jco/jco34.html#MaY17,https://doi.org/10.1007/s10878-016-0083-z +Djangir A. Babayev,The bandpass problem: combinatorial optimization and library of problems.,2009,18,J. Comb. Optim.,2,db/journals/jco/jco18.html#BabayevBN09,https://doi.org/10.1007/s10878-008-9143-3 +Adar A. Kalir,Constructing Near Optimal Schedules for the Flow-Shop Lot Streaming Problem with Sublot-Attached Setups.,2003,7,J. Comb. Optim.,1,db/journals/jco/jco7.html#KalirS03,https://doi.org/10.1023/A:1021942422161 +Feifeng Zheng,Competitive analysis for make-to-order scheduling with reliable lead time quotation.,2014,27,J. Comb. Optim.,1,db/journals/jco/jco27.html#ZhengZXH14,https://doi.org/10.1007/s10878-012-9502-y +Yam Ki Cheung,Line facility location in weighted regions.,2011,22,J. Comb. Optim.,1,db/journals/jco/jco22.html#CheungD11,https://doi.org/10.1007/s10878-009-9272-3 +Frédéric Havet,The game Grundy number of graphs.,2013,25,J. Comb. Optim.,4,db/journals/jco/jco25.html#HavetZ13,https://doi.org/10.1007/s10878-012-9513-8 +Leah Epstein,Selfish bin coloring.,2011,22,J. Comb. Optim.,4,db/journals/jco/jco22.html#EpsteinKLS11,https://doi.org/10.1007/s10878-010-9302-1 +Can Huang,Tabu search for the real-world carpooling problem.,2016,32,J. Comb. Optim.,2,db/journals/jco/jco32.html#HuangZSL16,https://doi.org/10.1007/s10878-016-0015-y +Yinfeng Xu,The online k-server problem with max-distance objective.,2015,29,J. Comb. Optim.,4,db/journals/jco/jco29.html#XuLHL15,https://doi.org/10.1007/s10878-013-9621-0 +Chao Peng,Complexity analysis and algorithms for the Program Download Problem.,2015,29,J. Comb. Optim.,1,db/journals/jco/jco29.html#PengZZZ15,https://doi.org/10.1007/s10878-013-9702-0 +Tian Xie,A tractable discrete fractional programming: application to constrained assortment optimization.,2018,36,J. Comb. Optim.,2,db/journals/jco/jco36.html#XieG18,https://doi.org/10.1007/s10878-018-0302-x +Guohui Lin,Preface.,2014,27,J. Comb. Optim.,1,db/journals/jco/jco27.html#Lin14,https://doi.org/10.1007/s10878-013-9600-5 +Ernst J. Joubert,An inequality that relates the size of a bipartite graph with its order and restrained domination number.,2016,31,J. Comb. Optim.,1,db/journals/jco/jco31.html#Joubert16,https://doi.org/10.1007/s10878-014-9709-1 +Junlei Zhu,Upper bounds for adjacent vertex-distinguishing edge coloring.,2018,35,J. Comb. Optim.,2,db/journals/jco/jco35.html#ZhuBD18,https://doi.org/10.1007/s10878-017-0187-0 +Steffen Rebennack,Complexity analysis for maximum flow problems with arc reversals.,2010,19,J. Comb. Optim.,2,db/journals/jco/jco19.html#RebennackAEP10,https://doi.org/10.1007/s10878-008-9175-8 +Maja Cevnik,Broadcasting on cactus graphs.,2017,33,J. Comb. Optim.,1,db/journals/jco/jco33.html#CevnikZ17,https://doi.org/10.1007/s10878-015-9957-8 +Yuichi Asahiro,(1+9*)-competitive algorithm for online OVSF code assignment with resource augmentation.,2013,26,J. Comb. Optim.,4,db/journals/jco/jco26.html#AsahiroKM13,https://doi.org/10.1007/s10878-012-9454-2 +Jianming Dong,An improved two-machine flowshop scheduling with intermediate transportation.,2016,31,J. Comb. Optim.,3,db/journals/jco/jco31.html#DongWHL16,https://doi.org/10.1007/s10878-014-9825-y +D. Pradhan,On computing a minimum secure dominating set in block graphs.,2018,35,J. Comb. Optim.,2,db/journals/jco/jco35.html#PradhanJ18,https://doi.org/10.1007/s10878-017-0197-y +Bin Fu,Constant time approximation scheme for largest well predicted subset.,2013,25,J. Comb. Optim.,3,db/journals/jco/jco25.html#FuW13,https://doi.org/10.1007/s10878-010-9371-1 +Aritra Banik,Optimal strategies for the one-round discrete Voronoi game on a line.,2013,26,J. Comb. Optim.,4,db/journals/jco/jco26.html#BanikBD13,https://doi.org/10.1007/s10878-011-9447-6 +Hervé Hocquard,Adjacent vertex-distinguishing edge coloring of graphs with maximum degree Δ.,2013,26,J. Comb. Optim.,1,db/journals/jco/jco26.html#HocquardM13,https://doi.org/10.1007/s10878-011-9444-9 +Nelson Castañeda,Embedded paths and cycles in faulty hypercubes.,2010,20,J. Comb. Optim.,3,db/journals/jco/jco20.html#CastanedaG10,https://doi.org/10.1007/s10878-008-9205-6 +Martin Kochol,Linear algebraic approach to an edge-coloring result.,2014,28,J. Comb. Optim.,2,db/journals/jco/jco28.html#Kochol14,https://doi.org/10.1007/s10878-012-9561-0 +Weifan Wang,Adjacent vertex distinguishing edge-colorings of graphs with smaller maximum average degree.,2010,19,J. Comb. Optim.,4,db/journals/jco/jco19.html#WangW10a,https://doi.org/10.1007/s10878-008-9178-5 +Yongxi Cheng,Solving haplotype inference problem with non-genotyped founders via integer linear programming.,2012,23,J. Comb. Optim.,1,db/journals/jco/jco23.html#ChengL12,https://doi.org/10.1007/s10878-010-9340-8 +Fei Huang,Upper bounds of proper connection number of graphs.,2017,34,J. Comb. Optim.,1,db/journals/jco/jco34.html#HuangLW17,https://doi.org/10.1007/s10878-016-0056-2 +Zhenbo Wang,Worst-case analysis for on-line service policies.,2010,19,J. Comb. Optim.,1,db/journals/jco/jco19.html#WangX10,https://doi.org/10.1007/s10878-008-9170-0 +Xujin Chen,Inapproximability and approximability of maximal tree routing and coloring.,2006,11,J. Comb. Optim.,2,db/journals/jco/jco11.html#ChenHS06,https://doi.org/10.1007/s10878-006-7135-8 +Yanjun Jiang,An approximation algorithm for soft capacitated k-facility location problem.,2018,35,J. Comb. Optim.,2,db/journals/jco/jco35.html#JiangXDWZ18,https://doi.org/10.1007/s10878-017-0192-3 +Nima Anari,Euclidean movement minimization.,2016,32,J. Comb. Optim.,2,db/journals/jco/jco32.html#AnariFGS16,https://doi.org/10.1007/s10878-015-9842-5 +Huijuan Wang,Minimum choosability of planar graphs.,2018,36,J. Comb. Optim.,1,db/journals/jco/jco36.html#WangLGDW18,https://doi.org/10.1007/s10878-018-0280-z +Rafael S. Coelho,The k-hop connected dominating set problem: approximation and hardness.,2017,34,J. Comb. Optim.,4,db/journals/jco/jco34.html#CoelhoMW17,https://doi.org/10.1007/s10878-017-0128-y +Hongying Li,An optimal semi-online algorithm for 2-machine scheduling with an availability constraint.,2011,22,J. Comb. Optim.,2,db/journals/jco/jco22.html#LiS11,https://doi.org/10.1007/s10878-009-9280-3 +Paul Dorbec,Upper paired-domination in claw-free graphs.,2011,22,J. Comb. Optim.,2,db/journals/jco/jco22.html#DorbecH11,https://doi.org/10.1007/s10878-009-9275-0 +Weifan Wang,Acyclic edge coloring of planar graphs without 4-cycles.,2013,25,J. Comb. Optim.,4,db/journals/jco/jco25.html#WangS013,https://doi.org/10.1007/s10878-012-9474-y +Michael A. Henning,k-tuple total domination in cross products of graphs.,2012,24,J. Comb. Optim.,3,db/journals/jco/jco24.html#HenningK12,https://doi.org/10.1007/s10878-011-9389-z +Fatiha Bendali,Composition of Graphs and the Triangle-Free Subgraph Polytope.,2002,6,J. Comb. Optim.,4,db/journals/jco/jco6.html#BendaliMM02,https://doi.org/10.1023/A:1019518830361 +Gopinath Mishra,Improved algorithms for the evacuation route planning problem.,2018,36,J. Comb. Optim.,1,db/journals/jco/jco36.html#MishraMP18,https://doi.org/10.1007/s10878-016-0082-0 +Adam N. Letchford,On Disjunctive Cuts for Combinatorial Optimization.,2001,5,J. Comb. Optim.,3,db/journals/jco/jco5.html#Letchford01,https://doi.org/10.1023/A:1011493126498 +Iliya Bluskov,Problem dependent optimization (PDO).,2016,31,J. Comb. Optim.,3,db/journals/jco/jco31.html#Bluskov16,https://doi.org/10.1007/s10878-014-9826-x +Andrey O. Matveev,Relative blocking in posets.,2007,13,J. Comb. Optim.,4,db/journals/jco/jco13.html#Matveev07,https://doi.org/10.1007/s10878-006-9028-2 +Justin Southey,A characterization of graphs with disjoint dominating and paired-dominating sets.,2011,22,J. Comb. Optim.,2,db/journals/jco/jco22.html#SoutheyH11,https://doi.org/10.1007/s10878-009-9274-1 +Hans L. Bodlaender,Necessary Edges in k-Chordalisations of Graphs.,2003,7,J. Comb. Optim.,3,db/journals/jco/jco7.html#Bodlaender03,https://doi.org/10.1023/A:1027320705349 +Hiroshi Nagamochi,A Faster Algorithm for Computing Minimum 5-Way and 6-Way Cuts in Graphs.,2000,4,J. Comb. Optim.,2,db/journals/jco/jco4.html#NagamochiKI00,https://doi.org/10.1023/A:1009804919645 +Jianming Dong,A new three-machine shop scheduling: complexity and approximation algorithm.,2013,26,J. Comb. Optim.,4,db/journals/jco/jco26.html#DongCZY13,https://doi.org/10.1007/s10878-012-9485-8 +Shenwei Huang,Perfect matchings in paired domination vertex critical graphs.,2012,23,J. Comb. Optim.,4,db/journals/jco/jco23.html#HuangSK12,https://doi.org/10.1007/s10878-010-9368-9 +Lidan Fan,PTAS for minimum weighted connected vertex cover problem with c-local condition in unit disk graphs.,2011,22,J. Comb. Optim.,4,db/journals/jco/jco22.html#FanZW11,https://doi.org/10.1007/s10878-010-9315-9 +Liqin Huang,A 0.5358-approximation for Bandpass-2.,2015,30,J. Comb. Optim.,3,db/journals/jco/jco30.html#HuangTGLL15,https://doi.org/10.1007/s10878-013-9656-2 +Piotr Berman,Multi-phase Algorithms for Throughput Maximization for Real-Time Scheduling.,2000,4,J. Comb. Optim.,3,db/journals/jco/jco4.html#BermanD00,https://doi.org/10.1023/A:1009822211065 +Teresa W. Haynes,Domination and total domination in complementary prisms.,2009,18,J. Comb. Optim.,1,db/journals/jco/jco18.html#HaynesHM09,https://doi.org/10.1007/s10878-007-9135-8 +Dengju Ma,$$\lambda $$ -numbers of several classes of snarks.,2014,28,J. Comb. Optim.,4,db/journals/jco/jco28.html#MaZH14,https://doi.org/10.1007/s10878-012-9589-1 +Yongxi Cheng,A new randomized algorithm for group testing with unknown number of defective items.,2015,30,J. Comb. Optim.,1,db/journals/jco/jco30.html#ChengGZ15,https://doi.org/10.1007/s10878-013-9640-x +Mauricio G. C. Resende,Mobile Networks and Computing.,2001,5,J. Comb. Optim.,4,db/journals/jco/jco5.html#Resende01,https://doi.org/10.1023/A:1011633010511 +Peng Xiao,Finding an anti-risk path between two nodes in undirected graphs.,2009,17,J. Comb. Optim.,3,db/journals/jco/jco17.html#XiaoXS09,https://doi.org/10.1007/s10878-007-9110-4 +Mohammed-Albarra Hassan Abdel-Jabbar,On the m-clique free interval subgraphs polytope: polyhedral analysis and applications.,2018,36,J. Comb. Optim.,3,db/journals/jco/jco36.html#Abdel-JabbarKMO18,https://doi.org/10.1007/s10878-018-0291-9 +Wlodzimierz Bielecki,Using basis dependence distance vectors in the modified Floyd-Warshall algorithm.,2015,30,J. Comb. Optim.,2,db/journals/jco/jco30.html#BieleckiKK15,https://doi.org/10.1007/s10878-014-9740-2 +Toshimasa Ishii,Optimal Augmentation of a 2-Vertex-Connected Multigraph to a k-Edge-Connected and 3-Vertex-Connected Multigraph.,2000,4,J. Comb. Optim.,1,db/journals/jco/jco4.html#IshiiNI00,https://doi.org/10.1023/A:1009884922499 +Morgan A. Bishop,Hypothesis group testing for disjoint pairs.,2008,15,J. Comb. Optim.,1,db/journals/jco/jco15.html#BishopMRU08,https://doi.org/10.1007/s10878-007-9081-5 +Dmitriy S. Malyshev,Two cases of polynomial-time solvability for the coloring problem.,2016,31,J. Comb. Optim.,2,db/journals/jco/jco31.html#Malyshev16,https://doi.org/10.1007/s10878-014-9792-3 +Hao Hu,Special cases of the quadratic shortest path problem.,2018,35,J. Comb. Optim.,3,db/journals/jco/jco35.html#HuS18,https://doi.org/10.1007/s10878-017-0219-9 +Yang Wang 0014,Constructions of given-depth and optimal multirate rearrangeably nonblocking distributors.,2012,24,J. Comb. Optim.,4,db/journals/jco/jco24.html#0014NN12,https://doi.org/10.1007/s10878-011-9402-6 +Liang Song,A lower bound for the adaptive two-echelon capacitated vehicle routing problem.,2017,33,J. Comb. Optim.,4,db/journals/jco/jco33.html#SongGH17,https://doi.org/10.1007/s10878-016-0028-6 +Zejun Huang,Sizes and transmissions of digraphs with a given clique number.,2016,31,J. Comb. Optim.,4,db/journals/jco/jco31.html#HuangL16,https://doi.org/10.1007/s10878-015-9850-5 +Stefan Steinerberger,Random restricted matching and lower bounds for combinatorial optimization.,2012,24,J. Comb. Optim.,3,db/journals/jco/jco24.html#Steinerberger12,https://doi.org/10.1007/s10878-011-9384-4 +Xinsheng Xiong,A computational approach to the multi-period many-to-one matching with ties.,2017,33,J. Comb. Optim.,1,db/journals/jco/jco33.html#XiongZC17,https://doi.org/10.1007/s10878-015-9944-0 +Yijie Han,Erratum to: Tight bound for matching.,2013,26,J. Comb. Optim.,2,db/journals/jco/jco26.html#Han13,https://doi.org/10.1007/s10878-012-9566-8 +Michael A. Henning,Distance domination in graphs with given minimum and maximum degree.,2017,34,J. Comb. Optim.,2,db/journals/jco/jco34.html#HenningL17,https://doi.org/10.1007/s10878-016-0091-z +Jin-yi Cai,On zero error algorithms having oracle access to one query.,2006,11,J. Comb. Optim.,2,db/journals/jco/jco11.html#CaiC06,https://doi.org/10.1007/s10878-006-7130-0 +Xujin Chen,Perfect Circular Arc Coloring.,2005,9,J. Comb. Optim.,3,db/journals/jco/jco9.html#ChenHZ05,https://doi.org/10.1007/s10878-005-1411-x +Zhao Zhang,Editorial for Special Issue: COCOA2014.,2016,32,J. Comb. Optim.,4,db/journals/jco/jco32.html#Zhang16,https://doi.org/10.1007/s10878-016-0087-8 +Weili Wu,On general threshold and general cascade models of social influence.,2018,35,J. Comb. Optim.,1,db/journals/jco/jco35.html#WuDWWDT18,https://doi.org/10.1007/s10878-017-0165-6 +Huijuan Wang,Minimum number of disjoint linear forests covering a planar graph.,2014,28,J. Comb. Optim.,1,db/journals/jco/jco28.html#WangWWW14,https://doi.org/10.1007/s10878-013-9680-2 +Mehdi Ghiyasvand,Finding a contra-risk path between two nodes in undirected graphs.,2016,32,J. Comb. Optim.,3,db/journals/jco/jco32.html#GhiyasvandK16,https://doi.org/10.1007/s10878-015-9912-8 +Dongxiao Niu,Power load forecasting by wavelet least squares support vector machine with improved fruit fly optimization algorithm.,2017,33,J. Comb. Optim.,3,db/journals/jco/jco33.html#NiuML17,https://doi.org/10.1007/s10878-016-0027-7 +Steffen Goebbels,Change-making problems revisited: a parameterized point of view.,2017,34,J. Comb. Optim.,4,db/journals/jco/jco34.html#GoebbelsGRY17,https://doi.org/10.1007/s10878-017-0143-z +Celia A. Glass,Genetic Algorithm for Graph Coloring: Exploration of Galinier and Hao's Algorithm.,2003,7,J. Comb. Optim.,3,db/journals/jco/jco7.html#GlassP03,https://doi.org/10.1023/A:1027312403532 +Xiaotie Deng,A PTAS for Semiconductor Burn-in Scheduling.,2005,9,J. Comb. Optim.,1,db/journals/jco/jco9.html#DengFLS05,https://doi.org/10.1007/s10878-005-5480-7 +Renzo Zamprogno,An efficient approach for large scale graph partitioning.,2007,13,J. Comb. Optim.,4,db/journals/jco/jco13.html#ZamprognoA07,https://doi.org/10.1007/s10878-006-9026-4 +Véronique Bruyère,Fibonacci index and stability number of graphs: a polyhedral study.,2009,18,J. Comb. Optim.,3,db/journals/jco/jco18.html#BruyereM09,https://doi.org/10.1007/s10878-009-9228-7 +Prahalad Venkateshan,An efficient generalized network-simplex-based algorithm for manufacturing network flows.,2008,15,J. Comb. Optim.,4,db/journals/jco/jco15.html#VenkateshanMB08,https://doi.org/10.1007/s10878-007-9080-6 +Chung Keung Poon,On-Line Scheduling Algorithms for a Batch Machine with Finite Capacity.,2005,9,J. Comb. Optim.,2,db/journals/jco/jco9.html#PoonY05,https://doi.org/10.1007/s10878-005-6855-5 +Yuli Ye,Priority algorithms for the subset-sum problem.,2008,16,J. Comb. Optim.,3,db/journals/jco/jco16.html#YeB08,https://doi.org/10.1007/s10878-007-9126-9 +Danica Vukadinovic Greetham,On the radius of centrality in evolving communication networks.,2014,28,J. Comb. Optim.,3,db/journals/jco/jco28.html#GreethamSG14,https://doi.org/10.1007/s10878-014-9726-0 +Xiaodong Gu,Average-Case Performance Analysis of a 2D Strip Packing Algorithm-NFDH.,2005,9,J. Comb. Optim.,1,db/journals/jco/jco9.html#GuCX05,https://doi.org/10.1007/s10878-005-5481-6 +My T. Thai,Preface.,2014,28,J. Comb. Optim.,3,db/journals/jco/jco28.html#ThaiD14,https://doi.org/10.1007/s10878-014-9770-9 +Julien Schleich,Solving the minimum M-dominating set problem by a continuous optimization approach based on DC programming and DCA.,2012,24,J. Comb. Optim.,4,db/journals/jco/jco24.html#SchleichTB12,https://doi.org/10.1007/s10878-011-9396-0 +Hossein Abdollahzadeh Ahangar,Signed Roman domination in graphs.,2014,27,J. Comb. Optim.,2,db/journals/jco/jco27.html#AhangarHLZS14,https://doi.org/10.1007/s10878-012-9500-0 +Yan Zhao,GPU implementation of a cellular genetic algorithm for scheduling dependent tasks of physical system simulation programs.,2018,35,J. Comb. Optim.,1,db/journals/jco/jco35.html#ZhaoCXZD18,https://doi.org/10.1007/s10878-016-0007-y +Dániel Gerbner,Smart elements in combinatorial group testing problems.,2018,35,J. Comb. Optim.,4,db/journals/jco/jco35.html#GerbnerV18,https://doi.org/10.1007/s10878-018-0248-z +Guoliang Hao,Bounds on the domination number of a digraph.,2018,35,J. Comb. Optim.,1,db/journals/jco/jco35.html#HaoQ18,https://doi.org/10.1007/s10878-017-0154-9 +Valmir Carneiro Barbosa,Two Novel Evolutionary Formulations of the Graph Coloring Problem.,2004,8,J. Comb. Optim.,1,db/journals/jco/jco8.html#BarbosaAN04,https://doi.org/10.1023/B:JOCO.0000021937.26468.b2 +Frank K. Hwang,On the number of separable partitions.,2011,21,J. Comb. Optim.,4,db/journals/jco/jco21.html#HwangR11,https://doi.org/10.1007/s10878-009-9263-4 +T. Cole,A 75®6* Angle Constraint for Plane Minimal T1 Trees.,2000,4,J. Comb. Optim.,2,db/journals/jco/jco4.html#Cole00,https://doi.org/10.1023/A:1009807006441 +F. H. Chang,One-dimensional optimal bounded-shape partitions for Schur convex sum objective functions.,2006,11,J. Comb. Optim.,3,db/journals/jco/jco11.html#ChangCGHR06,https://doi.org/10.1007/s10878-006-7911-5 +Wenqi Ju,On some geometric problems of color-spanning sets.,2013,26,J. Comb. Optim.,2,db/journals/jco/jco26.html#JuFLZD13,https://doi.org/10.1007/s10878-012-9458-y +Le Thi Hoai An,A Combined D.C. Optimization - Ellipsoidal Branch-and-Bound Algorithm for Solving Nonconvex Quadratic Programming Problems.,1998,2,J. Comb. Optim.,1,db/journals/jco/jco2.html#AnTM98,https://doi.org/10.1023/A:1009777410170 +Yanqin Bai,Quadratic kernel-free least squares support vector machine for target diseases classification.,2015,30,J. Comb. Optim.,4,db/journals/jco/jco30.html#BaiHCY15,https://doi.org/10.1007/s10878-015-9848-z +Laihao Ding,Generalized acyclic edge colorings via entropy compression.,2018,35,J. Comb. Optim.,3,db/journals/jco/jco35.html#DingWW18,https://doi.org/10.1007/s10878-017-0244-8 +B. S. Panda,Strong minimum energy 2-hop rooted topology for hierarchical wireless sensor networks.,2015,30,J. Comb. Optim.,4,db/journals/jco/jco30.html#PandaS15,https://doi.org/10.1007/s10878-013-9683-z +Imed Kacem,Approximation algorithms for the makespan minimization with positive tails on a single machine with a fixed non-availability interval.,2009,17,J. Comb. Optim.,2,db/journals/jco/jco17.html#Kacem09,https://doi.org/10.1007/s10878-007-9102-4 +Huan Ma,Loyalty improvement beyond the seeds in social networks.,2015,29,J. Comb. Optim.,4,db/journals/jco/jco29.html#MaZLLW15,https://doi.org/10.1007/s10878-013-9616-x +Jie Wang,Packing of Unequal Spheres and Automated Radiosurgical Treatment Planning.,1999,3,J. Comb. Optim.,4,db/journals/jco/jco3.html#Wang99,https://doi.org/10.1023/A:1009831621621 +Tong Li,Neighbor product distinguishing total colorings.,2017,33,J. Comb. Optim.,1,db/journals/jco/jco33.html#LiQWY17,https://doi.org/10.1007/s10878-015-9952-0 +Yu Yan,Bounded information dissemination in multi-channel wireless networks.,2016,31,J. Comb. Optim.,3,db/journals/jco/jco31.html#YanYWYL16,https://doi.org/10.1007/s10878-014-9804-3 +Maksim Barketau,Scheduling dedicated jobs with variative processing *.,2016,31,J. Comb. Optim.,2,db/journals/jco/jco31.html#BarketauPS16,https://doi.org/10.1007/s10878-014-9787-0 +Lutz Volkmann,Signed total Roman domination in graphs.,2016,32,J. Comb. Optim.,3,db/journals/jco/jco32.html#Volkmann16,https://doi.org/10.1007/s10878-015-9906-6 +Linda S. Moonen,Partitioning a weighted partial order.,2008,15,J. Comb. Optim.,4,db/journals/jco/jco15.html#MoonenS08,https://doi.org/10.1007/s10878-007-9086-0 +Niaz A. Wassan,A reactive tabu search algorithm for the vehicle routing problem with simultaneous pickups and deliveries.,2008,15,J. Comb. Optim.,4,db/journals/jco/jco15.html#WassanWN08,https://doi.org/10.1007/s10878-007-9090-4 +Yaron Leyvand,Just-in-time scheduling with controllable processing * on parallel machines.,2010,19,J. Comb. Optim.,3,db/journals/jco/jco19.html#LeyvandSSY10,https://doi.org/10.1007/s10878-009-9270-5 +Tianji Yang,Closed-loop supply chain inventory management with recovery information of reusable containers.,2018,35,J. Comb. Optim.,1,db/journals/jco/jco35.html#YangFLPLP18,https://doi.org/10.1007/s10878-015-9987-2 +József Békési,Tight bounds for NF-based bounded-space online bin packing algorithms.,2018,35,J. Comb. Optim.,2,db/journals/jco/jco35.html#BekesiG18,https://doi.org/10.1007/s10878-017-0175-4 +Sabine Büttner,The Canadian Tour Operator Problem on paths: tight bounds and resource augmentation.,2016,32,J. Comb. Optim.,3,db/journals/jco/jco32.html#ButtnerK16,https://doi.org/10.1007/s10878-015-9905-7 +Bor-Liang Chen,Equivalence of two conjectures on equitable coloring of graphs.,2013,25,J. Comb. Optim.,4,db/journals/jco/jco25.html#ChenLY13,https://doi.org/10.1007/s10878-011-9429-8 +Keqin Li,Analysis of the List Scheduling Algorithm for Precedence Constrained Parallel Tasks.,1999,3,J. Comb. Optim.,1,db/journals/jco/jco3.html#Li99,https://doi.org/10.1023/A:1009817206440 +Van Bang Le,On the complete width and edge clique cover problems.,2018,36,J. Comb. Optim.,2,db/journals/jco/jco36.html#LeP18,https://doi.org/10.1007/s10878-016-0106-9 +Hiroshi Iida,A Note on the Max-Min 0-1 Knapsack Problem.,1999,3,J. Comb. Optim.,1,db/journals/jco/jco3.html#Iida99,https://doi.org/10.1023/A:1009821323279 +Huiqiu Lin,Maximum size of digraphs with some parameters.,2016,32,J. Comb. Optim.,3,db/journals/jco/jco32.html#LinSW16,https://doi.org/10.1007/s10878-015-9916-4 +Michel Vasquez,Upper Bounds for the SPOT 5 Daily Photograph Scheduling Problem.,2003,7,J. Comb. Optim.,1,db/journals/jco/jco7.html#VasquezH03,https://doi.org/10.1023/A:1021950608048 +Sheng Yu,An optimal single-machine scheduling with linear deterioration rate and rate-modifying activities.,2015,30,J. Comb. Optim.,2,db/journals/jco/jco30.html#Yu15,https://doi.org/10.1007/s10878-014-9739-8 +Tetsuo Asano,A New Approximation Algorithm for the Capacitated Vehicle Routing Problem on a Tree.,2001,5,J. Comb. Optim.,2,db/journals/jco/jco5.html#AsanoKK01,https://doi.org/10.1023/A:1011461300596 +Wenan Zang,Proof of Toft's Conjecture: Every Graph Containing No Fully Odd K4 is 3-Colorable.,1998,2,J. Comb. Optim.,2,db/journals/jco/jco2.html#Zang98,https://doi.org/10.1023/A:1009784115916 +Jueliang Hu,Total completion time minimization in online hierarchical scheduling of unit-size jobs.,2017,33,J. Comb. Optim.,3,db/journals/jco/jco33.html#HuJZZZ17,https://doi.org/10.1007/s10878-016-0011-2 +Beibei Li,Fitting α 6*-crystalline structure onto electron microscopy based on SO(3) rotation group theory.,2015,30,J. Comb. Optim.,4,db/journals/jco/jco30.html#LiZSXZ15,https://doi.org/10.1007/s10878-015-9858-x +Jing Chen,Large even factors of graphs.,2018,35,J. Comb. Optim.,1,db/journals/jco/jco35.html#ChenF18,https://doi.org/10.1007/s10878-017-0161-x +Vittorio Bilò,On the performances of Nash equilibria in isolation games.,2011,22,J. Comb. Optim.,3,db/journals/jco/jco22.html#BiloFMM11,https://doi.org/10.1007/s10878-010-9300-3 +Jason Hedetniemi,On identifying codes in the Cartesian product of a path and a complete graph.,2016,31,J. Comb. Optim.,4,db/journals/jco/jco31.html#Hedetniemi16,https://doi.org/10.1007/s10878-015-9830-9 +Reinhard Bürgy,The blocking job shop with rail-bound transportation.,2016,31,J. Comb. Optim.,1,db/journals/jco/jco31.html#BurgyG16,https://doi.org/10.1007/s10878-014-9723-3 +Danny Segev,Approximating k-generalized connectivity via collapsing HSTs.,2011,21,J. Comb. Optim.,3,db/journals/jco/jco21.html#Segev11,https://doi.org/10.1007/s10878-009-9256-3 +Zaixin Lu,The complexity of influence maximization problem in the deterministic linear threshold model.,2012,24,J. Comb. Optim.,3,db/journals/jco/jco24.html#LuZWKF12,https://doi.org/10.1007/s10878-011-9393-3 +Babak Moazzez,Integer programming approach to static monopolies in graphs.,2018,35,J. Comb. Optim.,4,db/journals/jco/jco35.html#MoazzezS18,https://doi.org/10.1007/s10878-018-0256-z +Wenchao Zhang,The game Grundy indices of graphs.,2015,30,J. Comb. Optim.,3,db/journals/jco/jco30.html#ZhangZ15,https://doi.org/10.1007/s10878-013-9657-1 +Pawan Aurora,Partial degree bounded edge packing problem for graphs and k-uniform hypergraphs.,2016,32,J. Comb. Optim.,1,db/journals/jco/jco32.html#AuroraSM16,https://doi.org/10.1007/s10878-015-9868-8 +Haiyan Lu,Some further results on minimum distribution cost flow problems.,2006,11,J. Comb. Optim.,4,db/journals/jco/jco11.html#LuYQ06,https://doi.org/10.1007/s10878-006-8211-9 +Tami Tamir,Algorithms for storage allocation based on client preferences.,2010,19,J. Comb. Optim.,3,db/journals/jco/jco19.html#TamirV10,https://doi.org/10.1007/s10878-009-9259-0 +Leigh E. Hodge,Multiple objective optimization of bluetooth scatternets.,2006,11,J. Comb. Optim.,1,db/journals/jco/jco11.html#HodgeWH06,https://doi.org/10.1007/s10878-006-5976-9 +Frank K. Hwang,Random Pooling Designs Under Various Structures.,2003,7,J. Comb. Optim.,4,db/journals/jco/jco7.html#HwangL03a,https://doi.org/10.1023/B:JOCO.0000017382.83399.0b +Minming Li,Dispatching design for storage-centric wireless sensor networks.,2012,24,J. Comb. Optim.,4,db/journals/jco/jco24.html#LiLWZ12,https://doi.org/10.1007/s10878-011-9403-5 +Vikraman Arvind,The orbit problem is in the GapL hierarchy.,2011,21,J. Comb. Optim.,1,db/journals/jco/jco21.html#ArvindV11,https://doi.org/10.1007/s10878-009-9243-8 +Kai Cai,On the Langberg-Médard multiple unicast conjecture.,2017,34,J. Comb. Optim.,4,db/journals/jco/jco34.html#CaiH17,https://doi.org/10.1007/s10878-017-0132-2 +Shahram Shahinpour,Algorithms for the maximum k-club problem in graphs.,2013,26,J. Comb. Optim.,3,db/journals/jco/jco26.html#ShahinpourB13,https://doi.org/10.1007/s10878-012-9473-z +Ning Li,On the total {k}-domination number of Cartesian products of graphs.,2009,18,J. Comb. Optim.,2,db/journals/jco/jco18.html#LiH09,https://doi.org/10.1007/s10878-008-9144-2 +Kenneth Carling,On statistical bounds of heuristic solutions to location problems.,2016,31,J. Comb. Optim.,4,db/journals/jco/jco31.html#CarlingM16,https://doi.org/10.1007/s10878-015-9839-0 +Liying Kang,Algorithms for connected p-centdian problem on block graphs.,2018,36,J. Comb. Optim.,1,db/journals/jco/jco36.html#KangZS18,https://doi.org/10.1007/s10878-016-0058-0 +Wil Michiels,Performance ratios of the Karmarkar-Karp differencing method.,2007,13,J. Comb. Optim.,1,db/journals/jco/jco13.html#MichielsKAL07,https://doi.org/10.1007/s10878-006-9010-z +D. J. Guan,Preface: optimization in graphs.,2013,25,J. Comb. Optim.,4,db/journals/jco/jco25.html#GuanLZ13,https://doi.org/10.1007/s10878-013-9602-3 +Bin Fu,Separating sublinear time computations by approximate diameter.,2009,18,J. Comb. Optim.,4,db/journals/jco/jco18.html#FuZ09,https://doi.org/10.1007/s10878-009-9248-3 +Daniel Li Li,Cost sharing on prices for games on graphs.,2017,34,J. Comb. Optim.,3,db/journals/jco/jco34.html#LiS17,https://doi.org/10.1007/s10878-016-0099-4 +Maggie Xiaoyan Cheng,Editorial.,2006,11,J. Comb. Optim.,1,db/journals/jco/jco11.html#Cheng06,https://doi.org/10.1007/s10878-006-5982-y +Lei Chen 0007,Vertices in all minimum paired-dominating sets of block graphs.,2012,24,J. Comb. Optim.,3,db/journals/jco/jco24.html#ChenLZ12,https://doi.org/10.1007/s10878-011-9375-5 +Yi-Ching Chen,On the generalized constrained longest common subsequence problems.,2011,21,J. Comb. Optim.,3,db/journals/jco/jco21.html#ChenC11,https://doi.org/10.1007/s10878-009-9262-5 +M. Ericsson,A Genetic Algorithm for the Weight Setting Problem in OSPF Routing.,2002,6,J. Comb. Optim.,3,db/journals/jco/jco6.html#EricssonRP02,https://doi.org/10.1023/A:1014852026591 +Yijie Han,Algorithms for testing occurrences of length 4 patterns in permutations.,2018,35,J. Comb. Optim.,1,db/journals/jco/jco35.html#HanS18,https://doi.org/10.1007/s10878-017-0163-8 +Huili Zhang,The k-Canadian Travelers Problem with communication.,2013,26,J. Comb. Optim.,2,db/journals/jco/jco26.html#ZhangXQ13,https://doi.org/10.1007/s10878-012-9503-x +Zhiyi Tan,A note on hierarchical scheduling on two uniform machines.,2010,20,J. Comb. Optim.,1,db/journals/jco/jco20.html#TanZ10,https://doi.org/10.1007/s10878-008-9195-4 +Boting Yang,Strong-mixed searching and pathwidth.,2007,13,J. Comb. Optim.,1,db/journals/jco/jco13.html#Yang07,https://doi.org/10.1007/s10878-006-9013-9 +Yingmo Jie,Newly deterministic construction of compressed sensing matrices via singular linear spaces over finite fields.,2017,34,J. Comb. Optim.,1,db/journals/jco/jco34.html#JieGF17,https://doi.org/10.1007/s10878-016-0068-y +M. A. Shalu,On the algorithmic aspects of strong subcoloring.,2018,35,J. Comb. Optim.,4,db/journals/jco/jco35.html#ShaluVYS18,https://doi.org/10.1007/s10878-018-0272-z +Qizhi Fang,A Note on Balancedness of Dominating Set Games.,2005,10,J. Comb. Optim.,4,db/journals/jco/jco10.html#FangK05,https://doi.org/10.1007/s10878-005-4920-8 +Mahdi Sohrabi-Haghighat,The minimum value of geometric-arithmetic index of graphs with minimum degree 2.,2017,34,J. Comb. Optim.,1,db/journals/jco/jco34.html#Sohrabi-Haghighat17,https://doi.org/10.1007/s10878-016-0062-4 +Dimitri Watel,Directed Steiner trees with diffusion costs.,2016,32,J. Comb. Optim.,4,db/journals/jco/jco32.html#WatelWBB16,https://doi.org/10.1007/s10878-015-9925-3 +Fouad Kharroubi,Evaluation performance of genetic algorithm and tabu search algorithm for solving the Max-RWA problem in all-optical networks.,2015,30,J. Comb. Optim.,4,db/journals/jco/jco30.html#KharroubiHTCC15,https://doi.org/10.1007/s10878-013-9676-y +Zemin Jin,Heterochromatic tree partition number in complete multipartite graphs.,2014,28,J. Comb. Optim.,2,db/journals/jco/jco28.html#JinZ14,https://doi.org/10.1007/s10878-012-9557-9 +Ying Yang,A surgical scheduling method considering surgeons' preferences.,2015,30,J. Comb. Optim.,4,db/journals/jco/jco30.html#YangSGLZ15,https://doi.org/10.1007/s10878-015-9853-2 +Martin Böhm,Erratum to: A two-phase algorithm for bin stretching with stretching factor 1.5.,2017,34,J. Comb. Optim.,3,db/journals/jco/jco34.html#BohmSSV17a,https://doi.org/10.1007/s10878-017-0116-2 +Jianping Wang 0001,Traffic regulation with single- and dual-homed ISPs under a percentile-based pricing policy.,2009,17,J. Comb. Optim.,3,db/journals/jco/jco17.html#WangCYZ09,https://doi.org/10.1007/s10878-007-9111-3 +Chunmei Liu,Parameterized dominating set problem in chordal graphs: complexity and lower bound.,2009,18,J. Comb. Optim.,1,db/journals/jco/jco18.html#LiuS09,https://doi.org/10.1007/s10878-008-9141-5 +Leah Epstein,"Semi-online scheduling with ""end of sequence"" information.",2007,14,J. Comb. Optim.,1,db/journals/jco/jco14.html#EpsteinY07,https://doi.org/10.1007/s10878-006-9040-6 +Bang Ye Wu,An improved parameterized algorithm for the p-cluster vertex deletion problem.,2017,33,J. Comb. Optim.,2,db/journals/jco/jco33.html#WuC17,https://doi.org/10.1007/s10878-015-9969-4 +Dmitriy S. Malyshev,Boundary graph classes for some maximum induced subgraph problems.,2014,27,J. Comb. Optim.,2,db/journals/jco/jco27.html#Malyshev14,https://doi.org/10.1007/s10878-012-9529-0 +Glencora Borradaile,Improving robustness of next-hop routing.,2016,31,J. Comb. Optim.,3,db/journals/jco/jco31.html#BorradaileKWZ16,https://doi.org/10.1007/s10878-014-9818-x +Qiaojun Shu,Acyclic chromatic indices of planar graphs with girth at least five.,2012,23,J. Comb. Optim.,1,db/journals/jco/jco23.html#ShuW12,https://doi.org/10.1007/s10878-010-9354-2 +Demetrios Kazakos,When are two multivariate random processes indistinguishable.,2006,11,J. Comb. Optim.,3,db/journals/jco/jco11.html#KazakosM06,https://doi.org/10.1007/s10878-006-7907-1 +Zhenhua Duan,Unconditional secure communication: a Russian Cards protocol.,2010,19,J. Comb. Optim.,4,db/journals/jco/jco19.html#DuanY10,https://doi.org/10.1007/s10878-009-9252-7 +Cristina Bazgan,Complexity of determining the most vital elements for the p-median and p-center location problems.,2013,25,J. Comb. Optim.,2,db/journals/jco/jco25.html#BazganTV13,https://doi.org/10.1007/s10878-012-9469-8 +Tongliang Shi,Fault-tolerant diameter for three family interconnection networks.,2012,23,J. Comb. Optim.,4,db/journals/jco/jco23.html#ShiL12,https://doi.org/10.1007/s10878-010-9362-2 +Gintaras Palubeckis,A branch-and-bound algorithm for the minimum cut linear arrangement problem.,2012,24,J. Comb. Optim.,4,db/journals/jco/jco24.html#PalubeckisR12,https://doi.org/10.1007/s10878-011-9406-2 +MohammadAmin Fazli,Team selection for prediction tasks.,2016,31,J. Comb. Optim.,2,db/journals/jco/jco31.html#FazliGHH16,https://doi.org/10.1007/s10878-014-9784-3 +Peter Tsyurmasto,Value-at-risk support vector machine: stability to outliers.,2014,28,J. Comb. Optim.,1,db/journals/jco/jco28.html#TsyurmastoZU14,https://doi.org/10.1007/s10878-013-9678-9 +Ahmad-Saher Azizi-Sultan,Pseudo-automatic beam orientations in multi-criteria intensity-modulated radiation therapy.,2016,31,J. Comb. Optim.,4,db/journals/jco/jco31.html#Azizi-Sultan16,https://doi.org/10.1007/s10878-015-9867-9 +Erdong Chen,Improved algorithms for largest cardinality 2-interval pattern problem.,2007,13,J. Comb. Optim.,3,db/journals/jco/jco13.html#ChenYY07,https://doi.org/10.1007/s10878-006-9030-8 +B. S. Panda,Strong minimum energy hierarchical topology in wireless sensor networks.,2016,32,J. Comb. Optim.,1,db/journals/jco/jco32.html#PandaS16,https://doi.org/10.1007/s10878-015-9869-7 +Xu Zhu,A PTAS for the minimum weighted dominating set problem with smooth weights on unit disk graphs.,2012,23,J. Comb. Optim.,4,db/journals/jco/jco23.html#ZhuWSWW12,https://doi.org/10.1007/s10878-010-9357-z +Li Wang,Noise-tolerance community detection and evolution in dynamic social networks.,2014,28,J. Comb. Optim.,3,db/journals/jco/jco28.html#WangWBWXL14,https://doi.org/10.1007/s10878-014-9719-z +Daniel W. Cranston,Modified linear programming and class 0 bounds for graph pebbling.,2017,34,J. Comb. Optim.,1,db/journals/jco/jco34.html#CranstonPXY17,https://doi.org/10.1007/s10878-016-0060-6 +René Brandenberg,New algorithms for k-center and extensions.,2009,18,J. Comb. Optim.,4,db/journals/jco/jco18.html#BrandenbergR09,https://doi.org/10.1007/s10878-009-9226-9 +Ananya Christman,From theory to practice: maximizing revenues for on-line dial-a-ride.,2018,35,J. Comb. Optim.,2,db/journals/jco/jco35.html#ChristmanFP18,https://doi.org/10.1007/s10878-017-0188-z +Mingyu Xiao,A refined algorithm for maximum independent set in degree-4 graphs.,2017,34,J. Comb. Optim.,3,db/journals/jco/jco34.html#XiaoN17,https://doi.org/10.1007/s10878-017-0115-3 +Zhenbo Wang,A successive approximation algorithm for the multiple knapsack problem.,2009,17,J. Comb. Optim.,4,db/journals/jco/jco17.html#WangX09,https://doi.org/10.1007/s10878-007-9116-y +Liqi Zhang,New results on two-machine flow-shop scheduling with rejection.,2016,31,J. Comb. Optim.,4,db/journals/jco/jco31.html#ZhangLL16,https://doi.org/10.1007/s10878-015-9836-3 +Teresa W. Haynes,Perfect graphs involving semitotal and semipaired domination.,2018,36,J. Comb. Optim.,2,db/journals/jco/jco36.html#HaynesH18,https://doi.org/10.1007/s10878-018-0303-9 +Gruia Calinescu,Traffic Partition in WDM/SONET Rings to Minimize SONET ADMs.,2002,6,J. Comb. Optim.,4,db/journals/jco/jco6.html#CalinescuW02,https://doi.org/10.1023/A:1019525904862 +Binwu Zhang,The shortest path improvement problems under Hamming distance.,2006,12,J. Comb. Optim.,4,db/journals/jco/jco12.html#ZhangZQ06,https://doi.org/10.1007/s10878-006-9000-1 +Vicky Mak,Polyhedral combinatorics of the cardinality constrained quadratic knapsack problem and the quadratic selective travelling salesman problem.,2006,11,J. Comb. Optim.,4,db/journals/jco/jco11.html#MakT06,https://doi.org/10.1007/s10878-006-8462-5 +Zhaoyang Yang,Multi-neighborhood based path relinking for two-sided assembly line balancing problem.,2016,32,J. Comb. Optim.,2,db/journals/jco/jco32.html#YangZZ16,https://doi.org/10.1007/s10878-015-9959-6 +Huaming Zhang,Optimal st -orientations for plane triangulations.,2009,17,J. Comb. Optim.,4,db/journals/jco/jco17.html#ZhangH09,https://doi.org/10.1007/s10878-007-9119-8 +Jinhui Xu 0001,Efficient Algorithms for Determining 3-D Bi-Plane Imaging Geometry.,2005,10,J. Comb. Optim.,2,db/journals/jco/jco10.html#XuXCSH05,https://doi.org/10.1007/s10878-005-2266-x +Yu-Huei Chang,Construction independent spanning trees on locally twisted cubes in parallel.,2017,33,J. Comb. Optim.,3,db/journals/jco/jco33.html#ChangYHCW17,https://doi.org/10.1007/s10878-016-0018-8 +Theodoros P. Gevezes,A greedy randomized adaptive search procedure with path relinking for the shortest superstring problem.,2015,29,J. Comb. Optim.,4,db/journals/jco/jco29.html#GevezesP15,https://doi.org/10.1007/s10878-013-9622-z +Dmitriy S. Malyshev,Polynomial-time approximation algorithms for the coloring problem in some cases.,2017,33,J. Comb. Optim.,3,db/journals/jco/jco33.html#Malyshev17,https://doi.org/10.1007/s10878-016-0008-x +Bing Su,Finding the anti-block vital edge of a shortest path between two nodes.,2008,16,J. Comb. Optim.,2,db/journals/jco/jco16.html#SuXX08,https://doi.org/10.1007/s10878-007-9120-2 +Hong-Bin Chen,A survey on nonadaptive group testing algorithms through the angle of decoding.,2008,15,J. Comb. Optim.,1,db/journals/jco/jco15.html#ChenH08,https://doi.org/10.1007/s10878-007-9083-3 +Shuchao Li,On the coefficients of the independence polynomial of graphs.,2017,33,J. Comb. Optim.,4,db/journals/jco/jco33.html#LiLW17,https://doi.org/10.1007/s10878-016-0037-5 +Hung-Lin Fu,A note on optimal pebbling of hypercubes.,2013,25,J. Comb. Optim.,4,db/journals/jco/jco25.html#FuHS13,https://doi.org/10.1007/s10878-012-9492-9 +Tien Tran,Establishing symmetric connectivity in directional wireless sensor networks equipped with 2χ0*/3 antennas.,2017,34,J. Comb. Optim.,4,db/journals/jco/jco34.html#TranAH17,https://doi.org/10.1007/s10878-017-0126-0 +Tayuan Huang,A Note on Decoding of Superimposed Codes.,2003,7,J. Comb. Optim.,4,db/journals/jco/jco7.html#HuangW03,https://doi.org/10.1023/B:JOCO.0000017386.09330.70 +Yiwei Jiang,Online coupon consumption problem.,2008,16,J. Comb. Optim.,1,db/journals/jco/jco16.html#JiangZT08,https://doi.org/10.1007/s10878-007-9091-3 +Zofia Stepien,Arcs in ™4*2p2.,2018,35,J. Comb. Optim.,2,db/journals/jco/jco35.html#StepienS18,https://doi.org/10.1007/s10878-017-0171-8 +Tingting Wu,The 2-surviving rate of planar graphs without 5-cycles.,2016,31,J. Comb. Optim.,4,db/journals/jco/jco31.html#WuKW16,https://doi.org/10.1007/s10878-015-9835-4 +Hiroshi Eto,Distance- $$d$$ independent set problems for bipartite and chordal graphs.,2014,27,J. Comb. Optim.,1,db/journals/jco/jco27.html#EtoGM14,https://doi.org/10.1007/s10878-012-9594-4 +Eric McDermid,Keeping partners together: algorithmic results for the hospitals/residents problem with couples.,2010,19,J. Comb. Optim.,3,db/journals/jco/jco19.html#McDermidM10,https://doi.org/10.1007/s10878-009-9257-2 +Xiang-Sun Zhang,A combinatorial model and algorithm for globally searching community structure in complex networks.,2012,23,J. Comb. Optim.,4,db/journals/jco/jco23.html#ZhangLWW12,https://doi.org/10.1007/s10878-010-9356-0 +Hung-Lin Fu,On 3-Stage Clos Networks with Different Nonblocking Requirements on Two Types of Calls.,2005,9,J. Comb. Optim.,3,db/journals/jco/jco9.html#FuH05,https://doi.org/10.1007/s10878-005-1410-y +Barbara M. Anthony,Online bottleneck matching.,2014,27,J. Comb. Optim.,1,db/journals/jco/jco27.html#AnthonyC14,https://doi.org/10.1007/s10878-012-9581-9 +Walid Ben-Ameur,Extended cuts.,2016,31,J. Comb. Optim.,3,db/journals/jco/jco31.html#Ben-AmeurB16,https://doi.org/10.1007/s10878-014-9808-z +Jun Guo 0004,Constructing error-correcting pooling designs with symplectic space.,2010,20,J. Comb. Optim.,4,db/journals/jco/jco20.html#GuoWGYW10,https://doi.org/10.1007/s10878-009-9217-x +Michael J. Hirsch,Multi-depot vessel routing problem in a direction dependent wavefield.,2014,28,J. Comb. Optim.,1,db/journals/jco/jco28.html#HirschSMD14,https://doi.org/10.1007/s10878-014-9732-2 +Imran A. Pirwani,Shifting strategy for geometric graphs without geometry.,2012,24,J. Comb. Optim.,1,db/journals/jco/jco24.html#Pirwani12,https://doi.org/10.1007/s10878-010-9319-5 +Weimin Ma,Dynamic work hour optimization for casual workers.,2018,35,J. Comb. Optim.,4,db/journals/jco/jco35.html#MaSJ18,https://doi.org/10.1007/s10878-018-0263-0 +Hervé Kerivin,Models for the single-vehicle preemptive pickup and delivery problem.,2012,23,J. Comb. Optim.,2,db/journals/jco/jco23.html#KerivinLM12,https://doi.org/10.1007/s10878-010-9349-z +Eddie Cheng,The edge-centered surface area of the arrangement graph.,2014,27,J. Comb. Optim.,1,db/journals/jco/jco27.html#ChengQS14,https://doi.org/10.1007/s10878-012-9590-8 +Byeong Moon Kim,Lambda number for the direct product of some family of graphs.,2017,33,J. Comb. Optim.,4,db/journals/jco/jco33.html#KimRS17,https://doi.org/10.1007/s10878-016-0032-x +Michael F. Argüello,A Grasp for Aircraft Routing in Response to Groundings and Delays.,1997,1,J. Comb. Optim.,3,db/journals/jco/jco1.html#ArguelloBY97,https://doi.org/10.1023/A:1009772208981 +Hsing-Yen Ann,Efficient polynomial-time algorithms for the constrained LCS problem with strings exclusion.,2014,28,J. Comb. Optim.,4,db/journals/jco/jco28.html#AnnYT14,https://doi.org/10.1007/s10878-012-9588-2 +Dmitry Dagaev,Competitive intensity and quality maximizing seedings in knock-out tournaments.,2018,35,J. Comb. Optim.,1,db/journals/jco/jco35.html#DagaevS18,https://doi.org/10.1007/s10878-017-0164-7 +Glaydston Mattos Ribeiro,Column generation approach for the point-feature cartographic label placement problem.,2008,15,J. Comb. Optim.,2,db/journals/jco/jco15.html#RibeiroL08,https://doi.org/10.1007/s10878-007-9073-5 +Shu-Fei Wu,Partitioning dense uniform hypergraphs.,2018,35,J. Comb. Optim.,1,db/journals/jco/jco35.html#WuH18,https://doi.org/10.1007/s10878-017-0153-x +Xinzhong Lv,Greedy Nimk Game.,2018,35,J. Comb. Optim.,4,db/journals/jco/jco35.html#LvXZ18,https://doi.org/10.1007/s10878-018-0265-y +Margaret-Ellen Messinger,The robot cleans up.,2009,18,J. Comb. Optim.,4,db/journals/jco/jco18.html#MessingerN09,https://doi.org/10.1007/s10878-009-9236-7 +Hongjie Du,Constructing weakly connected dominating set for secure clustering in distributed sensor network.,2012,23,J. Comb. Optim.,2,db/journals/jco/jco23.html#DuWSKL12,https://doi.org/10.1007/s10878-010-9358-y +Geng-sheng Zhang,Error-correcting pooling designs associated with the dual space of unitary space and ratio efficiency comparison.,2009,18,J. Comb. Optim.,1,db/journals/jco/jco18.html#ZhangSL09,https://doi.org/10.1007/s10878-007-9137-6 +Madalina M. Drugan,Generating QAP instances with known optimum solution and additively decomposable cost function.,2015,30,J. Comb. Optim.,4,db/journals/jco/jco30.html#Drugan15,https://doi.org/10.1007/s10878-013-9689-6 +Daphne Der-Fen Liu,A combinatorial proof for the circular chromatic number of Kneser graphs.,2016,32,J. Comb. Optim.,3,db/journals/jco/jco32.html#LiuZ16,https://doi.org/10.1007/s10878-015-9897-3 +Laura Bahiense,Solving Steiner Tree Problems in Graphs with Lagrangian Relaxation.,2003,7,J. Comb. Optim.,3,db/journals/jco/jco7.html#BahienseBP03,https://doi.org/10.1023/A:1027368621279 +Onur Seref,Guest Editorial.,2009,17,J. Comb. Optim.,1,db/journals/jco/jco17.html#SerefX09,https://doi.org/10.1007/s10878-008-9192-7 +Lan Liu 0001,A linear-time algorithm for reconstructing zero-recombinant haplotype configuration on pedigrees without mating loops.,2010,19,J. Comb. Optim.,2,db/journals/jco/jco19.html#LiuJ10,https://doi.org/10.1007/s10878-008-9180-y +Carlos J. Luz,Improving an upper bound on the size of k-regular induced subgraphs.,2011,22,J. Comb. Optim.,4,db/journals/jco/jco22.html#Luz11,https://doi.org/10.1007/s10878-010-9345-3 +Sayaka Kamei,A self-stabilizing 3-approximation for the maximum leaf spanning tree problem in arbitrary networks.,2013,25,J. Comb. Optim.,3,db/journals/jco/jco25.html#KameiKDT13,https://doi.org/10.1007/s10878-011-9383-5 +Huiling Zhang,Robustness of power-law networks: its assessment and optimization.,2016,32,J. Comb. Optim.,3,db/journals/jco/jco32.html#ZhangST16,https://doi.org/10.1007/s10878-015-9893-7 +Jieliang Zhou,Graph Algorithms with Small Communication Costs.,2000,4,J. Comb. Optim.,3,db/journals/jco/jco4.html#ZhouDD00,https://doi.org/10.1023/A:1009859026994 +Wei Xiong 0002,Spanning 3-connected index of graphs.,2014,27,J. Comb. Optim.,1,db/journals/jco/jco27.html#XiongZL14,https://doi.org/10.1007/s10878-012-9583-7 +Huijuan Wang,List edge and list total coloring of planar graphs with maximum degree 8.,2016,32,J. Comb. Optim.,1,db/journals/jco/jco32.html#WangLZWWG16,https://doi.org/10.1007/s10878-015-9870-1 +Michael Hallaway,On metric dimension of permutation graphs.,2014,28,J. Comb. Optim.,4,db/journals/jco/jco28.html#HallawayKY14,https://doi.org/10.1007/s10878-012-9587-3 +Refael Hassin,Multiple facility location on a network with linear reliability order of edges.,2017,34,J. Comb. Optim.,3,db/journals/jco/jco34.html#HassinRS17,https://doi.org/10.1007/s10878-017-0121-5 +Wenhua Li,A note on special optimal batching structures to minimize total weighted completion time.,2007,14,J. Comb. Optim.,4,db/journals/jco/jco14.html#LiYL07,https://doi.org/10.1007/s10878-007-9070-8 +Miroslav Chlebík,Approximation hardness of edge dominating set problems.,2006,11,J. Comb. Optim.,3,db/journals/jco/jco11.html#ChlebikC06,https://doi.org/10.1007/s10878-006-7908-0 +Min Ji,Single-machine scheduling with deteriorating jobs and aging effects under an optional maintenance activity consideration.,2013,26,J. Comb. Optim.,3,db/journals/jco/jco26.html#JiHY13,https://doi.org/10.1007/s10878-011-9415-1 +Cao An Wang,On Some Polyhedra Covering Problems.,2000,4,J. Comb. Optim.,4,db/journals/jco/jco4.html#WangYZ00,https://doi.org/10.1023/A:1009833410742 +Jing Huang,Relation between the skew-rank of an oriented graph and the independence number of its underlying graph.,2018,36,J. Comb. Optim.,1,db/journals/jco/jco36.html#HuangLW18,https://doi.org/10.1007/s10878-018-0282-x +Indra Rajasingh,Embeddings of circulant networks.,2013,26,J. Comb. Optim.,1,db/journals/jco/jco26.html#RajasinghMAR13,https://doi.org/10.1007/s10878-011-9443-x +Harold N. Gabow,Incrementing Bipartite Digraph Edge-Connectivity.,2000,4,J. Comb. Optim.,4,db/journals/jco/jco4.html#GabowJ00,https://doi.org/10.1023/A:1009885511650 +Huiqiu Lin,Nordhaus-Gaddum type result for the matching number of a graph.,2017,34,J. Comb. Optim.,3,db/journals/jco/jco34.html#LinSW17,https://doi.org/10.1007/s10878-017-0120-6 +Tao Wang 0005,Total coloring of 1-toroidal graphs with maximum degree at least 11 and no adjacent triangles.,2017,33,J. Comb. Optim.,3,db/journals/jco/jco33.html#Wang17,https://doi.org/10.1007/s10878-016-0025-9 +Yan Liu,Fractional matching preclusion of graphs.,2017,34,J. Comb. Optim.,2,db/journals/jco/jco34.html#LiuL17,https://doi.org/10.1007/s10878-016-0077-x +Eranda çela,Polynomially solvable cases of the constant rank unconstrained quadratic 0-1 programming problem.,2006,12,J. Comb. Optim.,3,db/journals/jco/jco12.html#CelaKM06,https://doi.org/10.1007/s10878-006-9625-0 +Leah Epstein,Min-Sum Bin Packing.,2018,36,J. Comb. Optim.,2,db/journals/jco/jco36.html#EpsteinJL18,https://doi.org/10.1007/s10878-018-0310-x +Leah Epstein,Online scheduling with rejection and reordering: exact algorithms for unit size jobs.,2014,28,J. Comb. Optim.,4,db/journals/jco/jco28.html#EpsteinZ14,https://doi.org/10.1007/s10878-012-9593-5 +D. Pradhan,On the complexity of the minimum outer-connected dominating set problem in graphs.,2016,31,J. Comb. Optim.,1,db/journals/jco/jco31.html#Pradhan16,https://doi.org/10.1007/s10878-013-9703-z +Chenchen Wu,An approximation algorithm for the balanced Max-3-Uncut problem using complex semidefinite programming rounding.,2016,32,J. Comb. Optim.,4,db/journals/jco/jco32.html#WuXDX16,https://doi.org/10.1007/s10878-015-9880-z +Wei Yang,Paired-domination number of claw-free odd-regular graphs.,2017,33,J. Comb. Optim.,4,db/journals/jco/jco33.html#YangAW17,https://doi.org/10.1007/s10878-016-0033-9 +Jinchang Wang,The fastest itinerary in time-dependent decentralized travel information systems.,2006,12,J. Comb. Optim.,3,db/journals/jco/jco12.html#WangK06,https://doi.org/10.1007/s10878-006-9624-1 +Li Sheng 0001,Tagged Probe Interval Graphs.,2001,5,J. Comb. Optim.,1,db/journals/jco/jco5.html#ShengWZ01,https://doi.org/10.1023/A:1009850020378 +Manzhan Gu,An asymptotically optimal algorithm for large-scale mixed job shop scheduling to minimize the makespan.,2017,33,J. Comb. Optim.,2,db/journals/jco/jco33.html#GuLG17,https://doi.org/10.1007/s10878-015-9974-7 +Yingli Ran,Local ratio method on partial set multi-cover.,2017,34,J. Comb. Optim.,1,db/journals/jco/jco34.html#RanSZ17,https://doi.org/10.1007/s10878-016-0066-0 +You Lu,Neighbor sum distinguishing list total coloring of subcubic graphs.,2018,35,J. Comb. Optim.,3,db/journals/jco/jco35.html#LuXM18,https://doi.org/10.1007/s10878-017-0239-5 +Azadeh Tabatabaei,Walking in streets with minimal sensing.,2015,30,J. Comb. Optim.,2,db/journals/jco/jco30.html#TabatabaeiG15,https://doi.org/10.1007/s10878-014-9791-4 +Binhai Zhu,A combinatorial theorem on labeling squares with points and its application.,2006,11,J. Comb. Optim.,4,db/journals/jco/jco11.html#ZhuJ06,https://doi.org/10.1007/s10878-006-8461-6 +Taoqing Zhou,Multi-start iterated tabu search for the minimum weight vertex cover problem.,2016,32,J. Comb. Optim.,2,db/journals/jco/jco32.html#ZhouLWDP16,https://doi.org/10.1007/s10878-015-9909-3 +Fei-Huang Chang,Are there more almost separable partitions than separable partitions?,2014,27,J. Comb. Optim.,3,db/journals/jco/jco27.html#ChangCH14,https://doi.org/10.1007/s10878-012-9536-1 +Xiaohan Cheng,The adjacent vertex distinguishing total chromatic numbers of planar graphs Δ = 10.,2017,34,J. Comb. Optim.,2,db/journals/jco/jco34.html#ChengWW17,https://doi.org/10.1007/s10878-016-9995-x +Xianmin Liu,Algorithms and complexity results for labeled correlation clustering problem.,2015,29,J. Comb. Optim.,2,db/journals/jco/jco29.html#LiuL15a,https://doi.org/10.1007/s10878-013-9607-y +Guiqing Zhang,A randomized competitive group testing procedure.,2018,35,J. Comb. Optim.,3,db/journals/jco/jco35.html#ZhangCX18,https://doi.org/10.1007/s10878-017-0190-5 +Yan Qiang,Improvement of path analysis algorithm in social networks based on HBase.,2014,28,J. Comb. Optim.,3,db/journals/jco/jco28.html#QiangPWZZLW14,https://doi.org/10.1007/s10878-013-9675-z +Masoud Yaghini,A set covering approach for multi-depot train driver scheduling.,2015,29,J. Comb. Optim.,3,db/journals/jco/jco29.html#YaghiniKR15,https://doi.org/10.1007/s10878-013-9612-1 +Shlomo Karhi,On the optimality of the TLS algorithm for solving the online-list scheduling problem with two job types on a set of multipurpose machines.,2013,26,J. Comb. Optim.,1,db/journals/jco/jco26.html#KarhiS13,https://doi.org/10.1007/s10878-012-9460-4 +Jidan Huang,Online MapReduce processing on two identical parallel machines.,2018,35,J. Comb. Optim.,1,db/journals/jco/jco35.html#HuangZXL18,https://doi.org/10.1007/s10878-017-0167-4 +Wei Dong,An improved bound on 2-distance coloring plane graphs with girth 5.,2016,32,J. Comb. Optim.,2,db/journals/jco/jco32.html#DongL16,https://doi.org/10.1007/s10878-015-9888-4 +Yakov Zinder,Discrete optimization with polynomially detectable boundaries and restricted level sets.,2013,25,J. Comb. Optim.,2,db/journals/jco/jco25.html#ZinderMS13,https://doi.org/10.1007/s10878-012-9546-z +Mingyu Xiao,An improved exact algorithm for undirected feedback vertex set.,2015,30,J. Comb. Optim.,2,db/journals/jco/jco30.html#XiaoN15,https://doi.org/10.1007/s10878-014-9737-x +Jon Lee 0001,Separating Type-I Odd-Cycle Inequalities for a Binary-Encoded Edge-Coloring Formulation.,2005,9,J. Comb. Optim.,1,db/journals/jco/jco9.html#LeeLV05,https://doi.org/10.1007/s10878-005-5484-3 +Elisabeth Gassner,The inverse 1-maxian problem with edge length modification.,2008,16,J. Comb. Optim.,1,db/journals/jco/jco16.html#Gassner08,https://doi.org/10.1007/s10878-007-9098-9 +Jingjing Huo,Neighbor-sum-distinguishing edge choosability of subcubic graphs.,2017,34,J. Comb. Optim.,3,db/journals/jco/jco34.html#HuoWW17,https://doi.org/10.1007/s10878-016-0104-y +Danny Z. Chen,Determining an Optimal Penetration Among Weighted Regions in Two and Three Dimensions.,2001,5,J. Comb. Optim.,1,db/journals/jco/jco5.html#ChenDHWX01,https://doi.org/10.1023/A:1009885517653 +Neng Fan,Multi-way clustering and biclustering by the Ratio cut and Normalized cut in graphs.,2012,23,J. Comb. Optim.,2,db/journals/jco/jco23.html#FanP12,https://doi.org/10.1007/s10878-010-9351-5 +B. S. Panda,Hardness results and approximation algorithm for total liar's domination in graphs.,2014,27,J. Comb. Optim.,4,db/journals/jco/jco27.html#PandaP14,https://doi.org/10.1007/s10878-012-9542-3 +Shannon L. Fitzpatrick,Well paired-dominated graphs.,2010,20,J. Comb. Optim.,2,db/journals/jco/jco20.html#FitzpatrickH10,https://doi.org/10.1007/s10878-008-9203-8 +Maurizio Bruglieri,A two-phase optimization method for a multiobjective vehicle relocation problem in electric carsharing systems.,2018,36,J. Comb. Optim.,1,db/journals/jco/jco36.html#BruglieriPP18,https://doi.org/10.1007/s10878-018-0295-5 +Wenbin Chen,An improved lower bound for approximating the Minimum Integral Solution Problem with Preprocessing over and#8467*∞ norm.,2015,30,J. Comb. Optim.,3,db/journals/jco/jco30.html#ChenPWLTXW15,https://doi.org/10.1007/s10878-013-9646-4 +Yichao Chen,The thickness of the complete multipartite graphs and the join of graphs.,2017,34,J. Comb. Optim.,1,db/journals/jco/jco34.html#ChenY17,https://doi.org/10.1007/s10878-016-0057-1 +Xueliang Li 0001,A Combinatorial Algorithm for Minimum Weighted Colorings of Claw-Free Perfect Graphs.,2005,9,J. Comb. Optim.,4,db/journals/jco/jco9.html#LiZ05,https://doi.org/10.1007/s10878-005-1775-y +Canh V. Pham,Maximizing misinformation restriction within time and budget constraints.,2018,35,J. Comb. Optim.,4,db/journals/jco/jco35.html#PhamTDBH18,https://doi.org/10.1007/s10878-018-0252-3 +Milind Dawande,Approximation Algorithms for the Multiple Knapsack Problem with Assignment Restrictions.,2000,4,J. Comb. Optim.,2,db/journals/jco/jco4.html#DawandeKKSR00,https://doi.org/10.1023/A:1009894503716 +Qingsong Tang,On Motzkin-Straus type results for non-uniform hypergraphs.,2017,34,J. Comb. Optim.,2,db/journals/jco/jco34.html#TangPZZ17,https://doi.org/10.1007/s10878-016-0084-y +Sergey Polyakovskiy,The three-dimensional matching problem in Kalmanson matrices.,2013,26,J. Comb. Optim.,1,db/journals/jco/jco26.html#PolyakovskiySW13,https://doi.org/10.1007/s10878-011-9426-y +Liying Kang,Matching and domination numbers in r-uniform hypergraphs.,2017,34,J. Comb. Optim.,2,db/journals/jco/jco34.html#KangLDS17,https://doi.org/10.1007/s10878-016-0098-5 +Diego Recalde,An exact approach for the balanced k-way partitioning problem with weight constraints and its application to sports team realignment.,2018,36,J. Comb. Optim.,3,db/journals/jco/jco36.html#RecaldeSTV18,https://doi.org/10.1007/s10878-018-0254-1 +Zhi-Zhong Chen,An approximation algorithm for maximum internal spanning tree.,2018,35,J. Comb. Optim.,3,db/journals/jco/jco35.html#ChenHGW18,https://doi.org/10.1007/s10878-017-0245-7 +Martin Kochol,Polynomial algorithms for canonical forms of orientations.,2016,31,J. Comb. Optim.,1,db/journals/jco/jco31.html#Kochol16,https://doi.org/10.1007/s10878-014-9735-z +Qizhi Fang,Path cooperative games.,2018,36,J. Comb. Optim.,1,db/journals/jco/jco36.html#FangLSS18,https://doi.org/10.1007/s10878-018-0296-4 +Barbara M. Anthony,Serve or skip: the power of rejection in online bottleneck matching.,2016,32,J. Comb. Optim.,4,db/journals/jco/jco32.html#AnthonyC16,https://doi.org/10.1007/s10878-015-9948-9 +Yaodong Cui,Simplest optimal guillotine cutting patterns for strips of identical circles.,2008,15,J. Comb. Optim.,4,db/journals/jco/jco15.html#CuiGH08,https://doi.org/10.1007/s10878-007-9089-x +Céline Engelbeen,A closest vector problem arising in radiation therapy planning.,2011,22,J. Comb. Optim.,4,db/journals/jco/jco22.html#EngelbeenFK11,https://doi.org/10.1007/s10878-010-9308-8 +Daya Ram Gaur,Simple Approximation Algorithms for MAXNAESP and Hypergraph 2-colorability.,2001,5,J. Comb. Optim.,2,db/journals/jco/jco5.html#GaurK01,https://doi.org/10.1023/A:1011453115618 +Mao-cheng Cai,Inverse Polymatroidal Flow Problem.,1999,3,J. Comb. Optim.,1,db/journals/jco/jco3.html#CaiYL99,https://doi.org/10.1023/A:1009877408258 +Boram Park,On the cores of games arising from integer edge covering functions of graphs.,2013,26,J. Comb. Optim.,4,db/journals/jco/jco26.html#ParkKK13,https://doi.org/10.1007/s10878-012-9484-9 +Asaf Levin,Local search algorithms for multiple-depot vehicle routing and for multiple traveling salesman problems with proved performance guarantees.,2014,28,J. Comb. Optim.,4,db/journals/jco/jco28.html#LevinY14,https://doi.org/10.1007/s10878-012-9580-x +Brendan Mumey,Discovering classes in microarray data using island counts.,2007,13,J. Comb. Optim.,3,db/journals/jco/jco13.html#MumeySS07,https://doi.org/10.1007/s10878-006-9021-9 +Lina Chen,A simpler PTAS for connected k-path vertex cover in homogeneous wireless sensor network.,2018,36,J. Comb. Optim.,1,db/journals/jco/jco36.html#ChenHZ18,https://doi.org/10.1007/s10878-018-0283-9 +Mao-cheng Cai,Inverse Problems of Matroid Intersection.,1999,3,J. Comb. Optim.,4,db/journals/jco/jco3.html#Cai99,https://doi.org/10.1023/A:1009883605691 +José D. P. Rolim,A Case Study of De-randomization Methods for Combinatorial Approximation Algorithms.,1998,2,J. Comb. Optim.,3,db/journals/jco/jco2.html#RolimT98,https://doi.org/10.1023/A:1009793909670 +Mong-Jen Kao,The density maximization problem in graphs.,2013,26,J. Comb. Optim.,4,db/journals/jco/jco26.html#KaoKKLRW13,https://doi.org/10.1007/s10878-012-9465-z +Kazutoshi Ando,An algorithm for finding a representation of a subtree distance.,2018,36,J. Comb. Optim.,3,db/journals/jco/jco36.html#AndoS18,https://doi.org/10.1007/s10878-017-0145-x +Karen Aardal,Comments on the Paper: Attacking the Market Split Problem with Lattice Point Enumeration.,2004,8,J. Comb. Optim.,2,db/journals/jco/jco8.html#Aardal04,https://doi.org/10.1023/B:JOCO.0000031416.70875.00 +Marin Bougeret,Approximability and exact resolution of the multidimensional binary vector assignment problem.,2018,36,J. Comb. Optim.,3,db/journals/jco/jco36.html#BougeretDG18,https://doi.org/10.1007/s10878-018-0276-8 +Mohamed Didi Biha,Steiner k-Edge Connected Subgraph Polyhedra.,2000,4,J. Comb. Optim.,1,db/journals/jco/jco4.html#BihaM00,https://doi.org/10.1023/A:1009893108387 +Dan Yin,Minimized-cost cube query on heterogeneous information networks.,2017,33,J. Comb. Optim.,1,db/journals/jco/jco33.html#YinGZL17,https://doi.org/10.1007/s10878-015-9967-6 +Laurent Gourvès,Subset sum problems with digraph constraints.,2018,36,J. Comb. Optim.,3,db/journals/jco/jco36.html#GourvesMT18,https://doi.org/10.1007/s10878-018-0262-1 +Jing He,Improved approximation for spanning star forest in dense graphs.,2013,25,J. Comb. Optim.,2,db/journals/jco/jco25.html#HeL13,https://doi.org/10.1007/s10878-012-9499-2 +Zhixiang Chen,A PTAS for a disc covering problem using width-bounded separators.,2006,11,J. Comb. Optim.,2,db/journals/jco/jco11.html#ChenFTZ06,https://doi.org/10.1007/s10878-006-7132-y +Márcio Antônio Duarte,Complexity properties of complementary prisms.,2017,33,J. Comb. Optim.,2,db/journals/jco/jco33.html#DuartePRS17,https://doi.org/10.1007/s10878-015-9968-5 +Hua Cai,Vertex arboricity of planar graphs without intersecting 5-cycles.,2018,35,J. Comb. Optim.,2,db/journals/jco/jco35.html#CaiWS18,https://doi.org/10.1007/s10878-017-0168-3 +Duc Manh Nguyen,Solving the Multidimensional Assignment Problem by a Cross-Entropy method.,2014,27,J. Comb. Optim.,4,db/journals/jco/jco27.html#NguyenTD14,https://doi.org/10.1007/s10878-012-9554-z +Oswin Aichholzer,Constant-Level Greedy Triangulations Approximate the MWT Well.,1998,2,J. Comb. Optim.,4,db/journals/jco/jco2.html#AichholzerARX98,https://doi.org/10.1023/A:1009776619164 +Sven Oliver Krumke,Approximation Algorithms for Certain Network Improvement Problems.,1998,2,J. Comb. Optim.,3,db/journals/jco/jco2.html#KrumkeMNRR98,https://doi.org/10.1023/A:1009798010579 +Longkun Guo,Efficient approximation algorithms for computing k disjoint constrained shortest paths.,2016,32,J. Comb. Optim.,1,db/journals/jco/jco32.html#Guo16,https://doi.org/10.1007/s10878-015-9934-2 +Hsun-Wen Chang,The Structural Birnbaum Importance of Consecutive-k Systems.,2002,6,J. Comb. Optim.,2,db/journals/jco/jco6.html#ChangCH02,https://doi.org/10.1023/A:1013803728112 +Federico Della Croce,Improving an exact approach for solving separable integer quadratic knapsack problems.,2012,23,J. Comb. Optim.,1,db/journals/jco/jco23.html#CroceQ12,https://doi.org/10.1007/s10878-010-9337-3 +Domingos M. Cardoso,A simplex like approach based on star sets for recognizing convex-QP adverse graphs.,2016,31,J. Comb. Optim.,1,db/journals/jco/jco31.html#CardosoL16,https://doi.org/10.1007/s10878-014-9745-x +Daniela Ferrero,Note on power propagation time and lower bounds for the power domination number.,2017,34,J. Comb. Optim.,3,db/journals/jco/jco34.html#FerreroHKY17,https://doi.org/10.1007/s10878-016-0103-z +Woo-Lahm Kwak,Order consolidation for hierarchical product lines.,2014,27,J. Comb. Optim.,3,db/journals/jco/jco27.html#KwakC14,https://doi.org/10.1007/s10878-012-9538-z +Xiuzhen Cheng,A Polynomial Time Approximation Scheme for the Problem of Interconnecting Highways.,2001,5,J. Comb. Optim.,3,db/journals/jco/jco5.html#ChengKL01,https://doi.org/10.1023/A:1011497227406 +Manki Min,Total energy optimal multicasting in wireless ad hoc networks.,2007,13,J. Comb. Optim.,4,db/journals/jco/jco13.html#MinP07,https://doi.org/10.1007/s10878-006-9033-5 +Peng-Jun Wan,Near-Optimal Conflict-Free Channel Set Assignments for an Optical Cluster-Based Hypercube Network.,1997,1,J. Comb. Optim.,2,db/journals/jco/jco1.html#Wan97,https://doi.org/10.1023/A:1009759916586 +Mohammad A. Raayatpanah,Optimal-constrained multicast sub-graph over coded packet networks.,2015,29,J. Comb. Optim.,4,db/journals/jco/jco29.html#RaayatpanahFBP15,https://doi.org/10.1007/s10878-013-9617-9 +Mohammad Khairul Hasan,Approximation algorithms for connected facility location problems.,2008,16,J. Comb. Optim.,2,db/journals/jco/jco16.html#HasanJC08,https://doi.org/10.1007/s10878-007-9130-0 +Zhipeng Cai,Clustering Binary Oligonucleotide Fingerprint Vectors for DNA Clone Classification Analysis.,2005,9,J. Comb. Optim.,2,db/journals/jco/jco9.html#CaiHL05,https://doi.org/10.1007/s10878-005-6857-3 +Kai Deng,Anti-forcing spectra of perfect matchings of graphs.,2017,33,J. Comb. Optim.,2,db/journals/jco/jco33.html#DengZ17,https://doi.org/10.1007/s10878-015-9986-3 +Minghui Zhang,Online bin packing problem with buffer and bounded size revisited.,2017,33,J. Comb. Optim.,2,db/journals/jco/jco33.html#ZhangHLT17,https://doi.org/10.1007/s10878-015-9976-5 +Xiao Wang,Upper bounds on the chromatic number of triangle-free graphs with a forbidden subtree.,2017,33,J. Comb. Optim.,1,db/journals/jco/jco33.html#WangW17,https://doi.org/10.1007/s10878-015-9929-z +Dvir Shabtay,A bicriteria approach to scheduling a single machine with job rejection and positional penalties.,2012,23,J. Comb. Optim.,4,db/journals/jco/jco23.html#ShabtayGY12,https://doi.org/10.1007/s10878-010-9350-6 +Sachin B. Patkar,Fast On-Line/Off-Line Algorithms for Optimal Reinforcement of a Network and its Connections with Principal Partition.,2003,7,J. Comb. Optim.,1,db/journals/jco/jco7.html#PatkarN03,https://doi.org/10.1023/A:1021994406231 +Peter Hall,On the Addition and Comparison of Graphs Labeled with Stochastic Variables: Learnable Anatomical Catalogs.,2001,5,J. Comb. Optim.,1,db/journals/jco/jco5.html#Hall01,https://doi.org/10.1023/A:1009881416744 +Haiyang Zhu,On list r-hued coloring of planar graphs.,2017,34,J. Comb. Optim.,3,db/journals/jco/jco34.html#ZhuCML17,https://doi.org/10.1007/s10878-017-0118-0 +Guiqing Zhang,An improved online evacuation strategy from a convex region on grid networks.,2018,36,J. Comb. Optim.,1,db/journals/jco/jco36.html#ZhangCQ18,https://doi.org/10.1007/s10878-018-0284-8 +Johannes H. Hattingh,A Nordhaus-Gaddum-type result for the induced path number.,2012,24,J. Comb. Optim.,3,db/journals/jco/jco24.html#HattinghSMW12,https://doi.org/10.1007/s10878-011-9388-0 +Yingli Ran,An approximation algorithm for maximum weight budgeted connected set cover.,2016,31,J. Comb. Optim.,4,db/journals/jco/jco31.html#RanZKL16,https://doi.org/10.1007/s10878-015-9838-1 +Lu Ruan,Broadcast Routing with Minimum Wavelength Conversion in WDM Optical Networks.,2005,9,J. Comb. Optim.,2,db/journals/jco/jco9.html#RuanW05,https://doi.org/10.1007/s10878-005-6859-1 +Mirko Ruokokoski,Elevator dispatching problem: a mixed integer linear programming formulation and polyhedral results.,2015,29,J. Comb. Optim.,4,db/journals/jco/jco29.html#RuokokoskiEP15,https://doi.org/10.1007/s10878-013-9620-1 +Bo Chen 0002,On-Line Scheduling of Two-Machine Open Shops Where Jobs Arrive Over Time.,1998,1,J. Comb. Optim.,4,db/journals/jco/jco1.html#ChenVW98,https://doi.org/10.1023/A:1009786526733 +Joanna Skowronek-Kaziów,Graphs with multiplicative vertex-coloring 2-edge-weightings.,2017,33,J. Comb. Optim.,1,db/journals/jco/jco33.html#Skowronek-Kaziow17,https://doi.org/10.1007/s10878-015-9966-7 +Odile Favaron,On the total outer-connected domination in graphs.,2014,27,J. Comb. Optim.,3,db/journals/jco/jco27.html#FavaronKS14,https://doi.org/10.1007/s10878-012-9531-6 +Hongmei Li,Minimax regret vertex 2-sink location problem in dynamic path networks.,2016,31,J. Comb. Optim.,1,db/journals/jco/jco31.html#LiXN16,https://doi.org/10.1007/s10878-014-9716-2 +Federico Della Croce,Minimizing the number of tardy jobs in two-machine settings with common due date.,2017,34,J. Comb. Optim.,1,db/journals/jco/jco34.html#CroceKT17,https://doi.org/10.1007/s10878-016-0054-4 +Xiaotie Deng,Finding nucleolus of flow game.,2009,18,J. Comb. Optim.,1,db/journals/jco/jco18.html#DengFS09,https://doi.org/10.1007/s10878-008-9138-0 +Sergey Bereg,The Maximum Box Problem for moving points in the plane.,2011,22,J. Comb. Optim.,4,db/journals/jco/jco22.html#BeregDPV11,https://doi.org/10.1007/s10878-010-9301-2 +Zaixin Lu,Solution of Bharathi-Kempe-Salek conjecture for influence maximization on arborescence.,2017,33,J. Comb. Optim.,2,db/journals/jco/jco33.html#LuZW17,https://doi.org/10.1007/s10878-016-0006-z +Hark-Chin Hwang,Order Consolidation for Batch Processing.,2005,9,J. Comb. Optim.,1,db/journals/jco/jco9.html#HwangC05,https://doi.org/10.1007/s10878-005-5488-z +Sebastian Abshoff,Towards the price of leasing online.,2016,32,J. Comb. Optim.,4,db/journals/jco/jco32.html#AbshoffKMHP16,https://doi.org/10.1007/s10878-015-9915-5 +K. Subramani,A certifying algorithm for lattice point feasibility in a system of UTVPI constraints.,2018,35,J. Comb. Optim.,2,db/journals/jco/jco35.html#SubramaniW18,https://doi.org/10.1007/s10878-017-0176-3 +Oleg A. Prokopyev,Minimum elsilon-equivalent Circuit Size Problem.,2004,8,J. Comb. Optim.,4,db/journals/jco/jco8.html#ProkopyevP04a,https://doi.org/10.1007/s10878-004-4839-5 +Xin Zhang 0017,On total colorings of 1-planar graphs.,2015,30,J. Comb. Optim.,1,db/journals/jco/jco30.html#ZhangHL15,https://doi.org/10.1007/s10878-013-9641-9 +Fu-Tao Hu,Total and paired domination numbers of toroidal meshes.,2014,27,J. Comb. Optim.,2,db/journals/jco/jco27.html#HuX14,https://doi.org/10.1007/s10878-012-9519-2 +Sven Mallach,Improved mixed-integer programming models for the multiprocessor scheduling problem with communication delays.,2018,36,J. Comb. Optim.,3,db/journals/jco/jco36.html#Mallach18,https://doi.org/10.1007/s10878-017-0199-9 +Marwan Al-Jubeh,Convex partitions with 2-edge connected dual graphs.,2011,22,J. Comb. Optim.,3,db/journals/jco/jco22.html#Al-JubehHIST11,https://doi.org/10.1007/s10878-010-9310-1 +Kameng Nip,A combination of flow shop scheduling and the shortest path problem.,2015,29,J. Comb. Optim.,1,db/journals/jco/jco29.html#NipWNL15,https://doi.org/10.1007/s10878-013-9670-4 +Ivona Bezáková,On the Diaconis-Gangolli Markov chain for sampling contingency tables with cell-bounded entries.,2011,22,J. Comb. Optim.,3,db/journals/jco/jco22.html#BezakovaBR11,https://doi.org/10.1007/s10878-010-9323-9 +Massinissa Merabet,ILP formulation of the degree-constrained minimum spanning hierarchy problem.,2018,36,J. Comb. Optim.,3,db/journals/jco/jco36.html#MerabetMD18,https://doi.org/10.1007/s10878-017-0159-4 +Yang Fang,Optimal on-line algorithms for one batch machine with grouped processing *.,2011,22,J. Comb. Optim.,4,db/journals/jco/jco22.html#FangLL11,https://doi.org/10.1007/s10878-010-9298-6 +Amotz Bar-Noy,Online maximum directed cut.,2012,24,J. Comb. Optim.,1,db/journals/jco/jco24.html#Bar-NoyL12,https://doi.org/10.1007/s10878-010-9318-6 +Qian Cao,Semi-online scheduling with combined information on two identical machines in parallel.,2016,31,J. Comb. Optim.,2,db/journals/jco/jco31.html#CaoW16,https://doi.org/10.1007/s10878-014-9778-1 +Yu Li,A unified dual-fitting approximation algorithm for the facility location problems with linear/submodular penalties.,2014,27,J. Comb. Optim.,3,db/journals/jco/jco27.html#LiDXX14,https://doi.org/10.1007/s10878-012-9540-5 +Rung-Ren Lin,Finding a Length-Constrained Maximum-Density Path in a Tree.,2005,9,J. Comb. Optim.,2,db/journals/jco/jco9.html#LinKC05,https://doi.org/10.1007/s10878-005-6853-7 +Sen-Peng Eu,A combinatorial proof of the cyclic sieving phenomenon for faces of Coxeterhedra.,2013,25,J. Comb. Optim.,4,db/journals/jco/jco25.html#EuFP13,https://doi.org/10.1007/s10878-012-9495-6 +Roberto Rossi,Scheduling internal audit activities: a stochastic combinatorial optimization problem.,2010,19,J. Comb. Optim.,3,db/journals/jco/jco19.html#RossiTHPK10,https://doi.org/10.1007/s10878-009-9207-z +Cheng-Hsiao Tsou,The broadcast median problem in heterogeneous postal model.,2013,25,J. Comb. Optim.,4,db/journals/jco/jco25.html#TsouCYL13,https://doi.org/10.1007/s10878-012-9493-8 +Feng Shi,Improved approximation algorithm for maximum agreement forest of two rooted binary phylogenetic trees.,2016,32,J. Comb. Optim.,1,db/journals/jco/jco32.html#ShiFYW16,https://doi.org/10.1007/s10878-015-9921-7 +Yiwei Jiang,Preemptive Machine Covering on Parallel Machines.,2005,10,J. Comb. Optim.,4,db/journals/jco/jco10.html#JiangTH05,https://doi.org/10.1007/s10878-005-4923-5 +Tinaz Ekim,Erratum.,2006,11,J. Comb. Optim.,1,db/journals/jco/jco11.html#EkimW06,https://doi.org/10.1007/s10878-006-6267-1 +Michael Malmros Sørensen,b-Tree Facets for the Simple Graph Partitioning Polytope.,2004,8,J. Comb. Optim.,2,db/journals/jco/jco8.html#Sorensen04,https://doi.org/10.1023/B:JOCO.0000031417.96218.26 +Zhenhong Liu,On Inverse Problems of Optimum Perfect Matching.,2003,7,J. Comb. Optim.,3,db/journals/jco/jco7.html#LiuZ03,https://doi.org/10.1023/A:1027305419461 +Shiyan Hu,An almost four-approximation algorithm for maximum weight triangulation.,2010,19,J. Comb. Optim.,1,db/journals/jco/jco19.html#Hu10,https://doi.org/10.1007/s10878-008-9158-9 +Hai Du,An approximation algorithm for k-center problem on a convex polygon.,2014,27,J. Comb. Optim.,3,db/journals/jco/jco27.html#DuX14,https://doi.org/10.1007/s10878-012-9532-5 +Vladimir D. Tonchev,Steiner systems for two-stage disjunctive testing.,2008,15,J. Comb. Optim.,1,db/journals/jco/jco15.html#Tonchev08,https://doi.org/10.1007/s10878-007-9079-z +Guantao Chen,Equitable vertex arboricity of 5-degenerate graphs.,2017,34,J. Comb. Optim.,2,db/journals/jco/jco34.html#ChenGSWW17,https://doi.org/10.1007/s10878-016-9997-8 +Adam Woryna,The solution of a generalized secretary problem via analytic expressions.,2017,33,J. Comb. Optim.,4,db/journals/jco/jco33.html#Woryna17,https://doi.org/10.1007/s10878-016-0050-8 +Yuqing Zhu,Better approximation algorithms for influence maximization in online social networks.,2015,30,J. Comb. Optim.,1,db/journals/jco/jco30.html#ZhuWBWJX15,https://doi.org/10.1007/s10878-013-9635-7 +Beat Gfeller,Single machine batch scheduling with release *.,2009,17,J. Comb. Optim.,3,db/journals/jco/jco17.html#GfellerPWW09,https://doi.org/10.1007/s10878-007-9114-0 +Naoyuki Kamiyama,Covering directed graphs by in-trees.,2011,21,J. Comb. Optim.,1,db/journals/jco/jco21.html#KamiyamaK11,https://doi.org/10.1007/s10878-009-9242-9 +Orion Chassid,The hierarchical model for load balancing on two machines.,2008,15,J. Comb. Optim.,4,db/journals/jco/jco15.html#ChassidE08,https://doi.org/10.1007/s10878-007-9078-0 +Kien Trung Nguyen,The inverse 1-center problem on trees with variable edge lengths under Chebyshev norm and Hamming distance.,2016,32,J. Comb. Optim.,3,db/journals/jco/jco32.html#NguyenS16,https://doi.org/10.1007/s10878-015-9907-5 +Ho Ki Fung,Computational Comparison Studies of Quadratic Assignment Like Formulations for the In Silico Sequence Selection Problem in De Novo Protein Design.,2005,10,J. Comb. Optim.,1,db/journals/jco/jco10.html#FungRFPPR05,https://doi.org/10.1007/s10878-005-1859-8 +Benjamin McClosky,Combinatorial algorithms for the maximum k-plex problem.,2012,23,J. Comb. Optim.,1,db/journals/jco/jco23.html#McCloskyH12,https://doi.org/10.1007/s10878-010-9338-2 +Jin-Xin Zhou,Atoms of cyclic edge connectivity in regular graphs.,2016,31,J. Comb. Optim.,1,db/journals/jco/jco31.html#Zhou16,https://doi.org/10.1007/s10878-014-9759-4 +Brian Borchers,A Two-Phase Exact Algorithm for MAX-SAT and Weighted MAX-SAT Problems.,1998,2,J. Comb. Optim.,4,db/journals/jco/jco2.html#BorchersF98,https://doi.org/10.1023/A:1009725216438 +Yiwei Jiang,Single-server parallel-machine scheduling with loading and unloading *.,2015,30,J. Comb. Optim.,2,db/journals/jco/jco30.html#JiangZHDJ15,https://doi.org/10.1007/s10878-014-9727-z +Hiroshi Hirai,A compact representation for minimizers of k-submodular functions.,2018,36,J. Comb. Optim.,3,db/journals/jco/jco36.html#HiraiO18,https://doi.org/10.1007/s10878-017-0142-0 +Shuchao Li,Four edge-grafting theorems on the reciprocal degree distance of graphs and their applications.,2015,30,J. Comb. Optim.,3,db/journals/jco/jco30.html#LiM15,https://doi.org/10.1007/s10878-013-9649-1 +Byeong Moon Kim,Radio number for the product of a path and a complete graph.,2015,30,J. Comb. Optim.,1,db/journals/jco/jco30.html#KimHS15,https://doi.org/10.1007/s10878-013-9639-3 +Zhao Zhang 0002,A novel approach for detecting multiple rumor sources in networks with partial observations.,2017,33,J. Comb. Optim.,1,db/journals/jco/jco33.html#ZhangXWD17,https://doi.org/10.1007/s10878-015-9939-x +Tamon Stephen,A quadratic lower bound for colourful simplicial depth.,2008,16,J. Comb. Optim.,4,db/journals/jco/jco16.html#StephenT08,https://doi.org/10.1007/s10878-008-9149-x +Mhand Hifi,The Knapsack Sharing Problem: An Exact Algorithm.,2002,6,J. Comb. Optim.,1,db/journals/jco/jco6.html#HifiS02,https://doi.org/10.1023/A:1013385216761 +Jian Guan,Three conjectures on the signed cycle domination in graphs.,2013,25,J. Comb. Optim.,4,db/journals/jco/jco25.html#GuanLLM13,https://doi.org/10.1007/s10878-012-9506-7 +Zahra Pooranian,An efficient meta-heuristic algorithm for grid computing.,2015,30,J. Comb. Optim.,3,db/journals/jco/jco30.html#PooranianSAA15,https://doi.org/10.1007/s10878-013-9644-6 +Arash Ahadi,Is there any polynomial upper bound for the universal labeling of graphs?,2017,34,J. Comb. Optim.,3,db/journals/jco/jco34.html#AhadiDS17,https://doi.org/10.1007/s10878-016-0107-8 +Johannes H. Hattingh,Restrained domination in cubic graphs.,2011,22,J. Comb. Optim.,2,db/journals/jco/jco22.html#HattinghJ11,https://doi.org/10.1007/s10878-009-9281-2 +Lingfa Lu,Single-machine scheduling with production and rejection costs to minimize the maximum earliness.,2017,34,J. Comb. Optim.,2,db/journals/jco/jco34.html#LuZ17,https://doi.org/10.1007/s10878-016-9992-0 +Balabhaskar Balasundaram,Novel Approaches for Analyzing Biological Networks.,2005,10,J. Comb. Optim.,1,db/journals/jco/jco10.html#BalasundaramBT05,https://doi.org/10.1007/s10878-005-1857-x +Yuejian Peng,On Lagrangians of r-uniform hypergraphs.,2015,30,J. Comb. Optim.,3,db/journals/jco/jco30.html#PengTZ15,https://doi.org/10.1007/s10878-013-9671-3 +Muhammad Kamran Siddiqui,Total edge irregularity strength of accordion graphs.,2017,34,J. Comb. Optim.,2,db/journals/jco/jco34.html#SiddiquiAF17,https://doi.org/10.1007/s10878-016-0090-0 +Abdelkader Sbihi,A best first search exact algorithm for the Multiple-choice Multidimensional Knapsack Problem.,2007,13,J. Comb. Optim.,4,db/journals/jco/jco13.html#Sbihi07,https://doi.org/10.1007/s10878-006-9035-3 +Longjiang Guo,Minimum-latency aggregation scheduling in wireless sensor network.,2016,31,J. Comb. Optim.,1,db/journals/jco/jco31.html#GuoLC16,https://doi.org/10.1007/s10878-014-9748-7 +Xueling Zhong,Scheduling with release * and rejection on two parallel machines.,2017,33,J. Comb. Optim.,3,db/journals/jco/jco33.html#ZhongPJ17,https://doi.org/10.1007/s10878-016-0016-x +Chunyan Liu,Optimal RSUs deployment with delay bound along highways in VANET.,2017,33,J. Comb. Optim.,4,db/journals/jco/jco33.html#LiuHD17,https://doi.org/10.1007/s10878-016-0029-5 +Jean Cardinal,Minimum entropy coloring.,2008,16,J. Comb. Optim.,4,db/journals/jco/jco16.html#CardinalFJ08,https://doi.org/10.1007/s10878-008-9152-2 +Hend Bouziri,The k-coloring fitness landscape.,2011,21,J. Comb. Optim.,3,db/journals/jco/jco21.html#BouziriMT11,https://doi.org/10.1007/s10878-009-9249-2 +Steffen Rebennack,A Branch and Cut solver for the maximum stable set problem.,2011,21,J. Comb. Optim.,4,db/journals/jco/jco21.html#RebennackOTSRP11,https://doi.org/10.1007/s10878-009-9264-3 +David R. Morrison,Characteristics of the maximal independent set ZDD.,2014,28,J. Comb. Optim.,1,db/journals/jco/jco28.html#MorrisonSJ14,https://doi.org/10.1007/s10878-014-9722-4 +J. Amjadi,An upper bound on the double Roman domination number.,2018,36,J. Comb. Optim.,1,db/journals/jco/jco36.html#AmjadiNSV18,https://doi.org/10.1007/s10878-018-0286-6 +János Balogh,On-line bin packing with restricted repacking.,2014,27,J. Comb. Optim.,1,db/journals/jco/jco27.html#BaloghBGR14,https://doi.org/10.1007/s10878-012-9489-4 +Jinjiang Yuan,Multi-agent scheduling on a single machine with a fixed number of competing agents to minimize the weighted sum of number of tardy jobs and makespans.,2017,34,J. Comb. Optim.,2,db/journals/jco/jco34.html#Yuan17,https://doi.org/10.1007/s10878-016-0078-9 +Guangyan Zhou,On the lower bounds of random Max 3 and 4-SAT.,2018,35,J. Comb. Optim.,4,db/journals/jco/jco35.html#ZhouG18,https://doi.org/10.1007/s10878-018-0267-9 +Guang Zhang,Two efficient values of cooperative games with graph structure based on ω4*-values.,2017,34,J. Comb. Optim.,2,db/journals/jco/jco34.html#ZhangSKD17,https://doi.org/10.1007/s10878-016-0081-1 +Hualong Li,Neighbor sum distinguishing total colorings of planar graphs.,2015,30,J. Comb. Optim.,3,db/journals/jco/jco30.html#LiDLW15,https://doi.org/10.1007/s10878-013-9660-6 +Mohammad Reza Oboudi,Correction to: Majorization and the spectral radius of starlike trees.,2018,36,J. Comb. Optim.,1,db/journals/jco/jco36.html#Oboudi18a,https://doi.org/10.1007/s10878-018-0301-y +Sergiy Butenko,Preface.,2014,28,J. Comb. Optim.,1,db/journals/jco/jco28.html#ButenkoDR14,https://doi.org/10.1007/s10878-014-9752-y +Wyatt J. Desormeaux,Edge lifting and total domination in graphs.,2013,25,J. Comb. Optim.,1,db/journals/jco/jco25.html#DesormeauxHH13,https://doi.org/10.1007/s10878-011-9416-0 +Ghaith M. Jaradat,On the performance of Scatter Search for post-enrolment course timetabling problems.,2014,27,J. Comb. Optim.,3,db/journals/jco/jco27.html#JaradatAA14,https://doi.org/10.1007/s10878-012-9521-8 +Yi Wang,Adjacent vertex-distinguishing edge coloring of 2-degenerate graphs.,2016,31,J. Comb. Optim.,2,db/journals/jco/jco31.html#WangCLM16,https://doi.org/10.1007/s10878-014-9796-z +Qiang Zhu 0003,A diagnosis algorithm by using graph-coloring under the PMC model.,2016,32,J. Comb. Optim.,3,db/journals/jco/jco32.html#ZhuGTZ16,https://doi.org/10.1007/s10878-015-9923-5 +Quan Zu,Dynamic matchings in left vertex weighted convex bipartite graphs.,2016,32,J. Comb. Optim.,1,db/journals/jco/jco32.html#ZuZY16,https://doi.org/10.1007/s10878-015-9890-x +Amiyne Zakouni,Genetic algorithm and tabu search algorithm for solving the static manycast RWA problem in optical networks.,2017,33,J. Comb. Optim.,2,db/journals/jco/jco33.html#ZakouniLK17,https://doi.org/10.1007/s10878-016-0002-3 +Julie Haviland,Independent dominating sets in regular graphs.,2013,26,J. Comb. Optim.,1,db/journals/jco/jco26.html#Haviland13,https://doi.org/10.1007/s10878-011-9439-6 +Xiaodong Gu,Performance Analysis and Improvement for Some Linear On-Line Bin-Packing Algorithms.,2002,6,J. Comb. Optim.,4,db/journals/jco/jco6.html#GuCGHJ02,https://doi.org/10.1023/A:1019577921700 +Shasha Ma,Equitable colorings of Cartesian products of square of cycles and paths with complete bipartite graphs.,2016,32,J. Comb. Optim.,3,db/journals/jco/jco32.html#MaZ16,https://doi.org/10.1007/s10878-015-9895-5 +ágnes Cseh,Improved algorithmic results for unsplittable stable allocation problems.,2016,32,J. Comb. Optim.,3,db/journals/jco/jco32.html#CsehD16,https://doi.org/10.1007/s10878-015-9889-3 +Jose M. G. Salmerón,Generating a smallest binary tree by proper selection of the longest edges to bisect in a unit simplex refinement.,2017,33,J. Comb. Optim.,2,db/journals/jco/jco33.html#SalmeronACGHG17,https://doi.org/10.1007/s10878-015-9970-y +Dennis F. X. Mathaisel,Decision Support for Airline Schedule Planning.,1997,1,J. Comb. Optim.,3,db/journals/jco/jco1.html#Mathaisel97,https://doi.org/10.1023/A:1009776309890 +Sumit Ganguly,Estimating hybrid frequency moments of data streams.,2012,23,J. Comb. Optim.,3,db/journals/jco/jco23.html#GangulyBD12,https://doi.org/10.1007/s10878-010-9339-1 +Xiaodong Liang,Code for polyomino and computer search of isospectral polyominoes.,2017,33,J. Comb. Optim.,1,db/journals/jco/jco33.html#LiangWM17,https://doi.org/10.1007/s10878-015-9953-z +Dongjing Miao,Approximation for vertex cover in 6*-conflict graphs.,2017,34,J. Comb. Optim.,4,db/journals/jco/jco34.html#MiaoCTL17,https://doi.org/10.1007/s10878-017-0127-z +Xiang Li,On the union of intermediate nodes of shortest paths.,2013,26,J. Comb. Optim.,1,db/journals/jco/jco26.html#LiHL13,https://doi.org/10.1007/s10878-011-9436-9 +Alfred Wassermann,Attacking the Market Split Problem with Lattice Point Enumeration.,2002,6,J. Comb. Optim.,1,db/journals/jco/jco6.html#Wassermann02,https://doi.org/10.1023/A:1013355015853 +Ariela Bilitzky,Efficient Solutions for Special Zero-One Programming Problems.,2005,10,J. Comb. Optim.,3,db/journals/jco/jco10.html#BilitzkyS05,https://doi.org/10.1007/s10878-005-4104-6 +Ling Luo,A structural transformation from p-χ0* to MSVL.,2015,29,J. Comb. Optim.,1,db/journals/jco/jco29.html#LuoDTW15,https://doi.org/10.1007/s10878-014-9779-0 +Yusheng Li,The Independence Number of Graphs with a Forbidden Cycle and Ramsey Numbers.,2003,7,J. Comb. Optim.,4,db/journals/jco/jco7.html#LiZ03,https://doi.org/10.1023/B:JOCO.0000017383.13275.17 +Haitao Jiang,Minimum common string partition revisited.,2012,23,J. Comb. Optim.,4,db/journals/jco/jco23.html#JiangZZZ12,https://doi.org/10.1007/s10878-010-9370-2 +Zhenbo Wang,Bin packing under linear constraints.,2017,34,J. Comb. Optim.,4,db/journals/jco/jco34.html#WangN17,https://doi.org/10.1007/s10878-017-0140-2 +Wenchang Luo,Approximation schemes for two-machine flow shop scheduling with two agents.,2012,24,J. Comb. Optim.,3,db/journals/jco/jco24.html#LuoCZ12,https://doi.org/10.1007/s10878-011-9378-2 +Mohamed Saad,Packing trees in communication networks.,2008,16,J. Comb. Optim.,4,db/journals/jco/jco16.html#SaadTVZ08,https://doi.org/10.1007/s10878-008-9150-4 +Hung Q. Ngo 0001,On a hyperplane arrangement problem and tighter analysis of an error-tolerant pooling design.,2008,15,J. Comb. Optim.,1,db/journals/jco/jco15.html#Ngo08,https://doi.org/10.1007/s10878-007-9084-2 +Hui Jiang,Upper bounds for the total rainbow connection of graphs.,2016,32,J. Comb. Optim.,1,db/journals/jco/jco32.html#JiangLZ16,https://doi.org/10.1007/s10878-015-9874-x +Brad Ballinger,Coverage with k-transmitters in the presence of obstacles.,2013,25,J. Comb. Optim.,2,db/journals/jco/jco25.html#BallingerBBDDDFHILMASU13,https://doi.org/10.1007/s10878-012-9475-x +Zhuqi Miao,An exact algorithm for the maximum probabilistic clique problem.,2014,28,J. Comb. Optim.,1,db/journals/jco/jco28.html#MiaoBP14,https://doi.org/10.1007/s10878-013-9699-4 +Theodoros P. Gevezes,Recognition of overlap graphs.,2014,28,J. Comb. Optim.,1,db/journals/jco/jco28.html#GevezesP14,https://doi.org/10.1007/s10878-013-9663-3 +Juanjuan Zhao,A short-term trend prediction model of topic over Sina Weibo dataset.,2014,28,J. Comb. Optim.,3,db/journals/jco/jco28.html#ZhaoWZQLW14,https://doi.org/10.1007/s10878-013-9674-0 +J. C. James,A Tabu Search Heuristic for the Location of Multi-Type Protection Devices on Electrical Supply Tree Networks.,2002,6,J. Comb. Optim.,1,db/journals/jco/jco6.html#JamesS02,https://doi.org/10.1023/A:1013322309009 +Shiho Morishita,Parametric power supply networks.,2015,29,J. Comb. Optim.,1,db/journals/jco/jco29.html#MorishitaN15,https://doi.org/10.1007/s10878-013-9661-5 +Zepeng Li,Weak {2}-domination number of Cartesian products of cycles.,2018,35,J. Comb. Optim.,1,db/journals/jco/jco35.html#LiSX18,https://doi.org/10.1007/s10878-017-0157-6 +Min-Jen Jou,The second largest number of maximal independent sets in connected graphs with at most one cycle.,2012,24,J. Comb. Optim.,3,db/journals/jco/jco24.html#Jou12,https://doi.org/10.1007/s10878-011-9376-4 +Gary A. Kochenberger,The unconstrained binary quadratic programming problem: a survey.,2014,28,J. Comb. Optim.,1,db/journals/jco/jco28.html#KochenbergerHGLLWW14,https://doi.org/10.1007/s10878-014-9734-0 +Gerard J. Chang,Hamiltonian numbers of Möbius double loop networks.,2012,23,J. Comb. Optim.,4,db/journals/jco/jco23.html#ChangCT12,https://doi.org/10.1007/s10878-010-9360-4 +Weiping Shang,On minimum m -connected k -dominating set problem in unit disc graphs.,2008,16,J. Comb. Optim.,2,db/journals/jco/jco16.html#ShangYWH08,https://doi.org/10.1007/s10878-007-9124-y +A. Bahremandpour,Roman game domination number of a graph.,2017,33,J. Comb. Optim.,2,db/journals/jco/jco33.html#BahremandpourSV17,https://doi.org/10.1007/s10878-016-0001-4 +Huijuan Wang,Total coloring of planar graphs without adjacent chordal 6-cycles.,2017,34,J. Comb. Optim.,1,db/journals/jco/jco34.html#WangLWTWG17,https://doi.org/10.1007/s10878-016-0063-3 +Laleh Behjat,A Novel Eigenvector Technique for Large Scale Combinatorial Problems in VLSI Layout.,2002,6,J. Comb. Optim.,3,db/journals/jco/jco6.html#BehjatKV02,https://doi.org/10.1023/A:1014847925683 +Larisa Komosko,A fast greedy sequential heuristic for the vertex colouring problem based on bitwise operations.,2016,31,J. Comb. Optim.,4,db/journals/jco/jco31.html#KomoskoBSP16,https://doi.org/10.1007/s10878-015-9862-1 +Kejun Zhao,Two approximation algorithms for two-agent scheduling on parallel machines to minimize makespan.,2016,31,J. Comb. Optim.,1,db/journals/jco/jco31.html#ZhaoL16,https://doi.org/10.1007/s10878-014-9744-y +Fatiha Bendali,The weakly connected independent set polytope in corona and join of graphs.,2018,36,J. Comb. Optim.,3,db/journals/jco/jco36.html#BendaliM18,https://doi.org/10.1007/s10878-018-0275-9 +Mehdi Ghiyasvand,A faster strongly polynomial time algorithm to solve the minimum cost tension problem.,2017,34,J. Comb. Optim.,1,db/journals/jco/jco34.html#Ghiyasvand17,https://doi.org/10.1007/s10878-016-0070-4 +Yichao He,Algorithms for randomized time-varying knapsack problems.,2016,31,J. Comb. Optim.,1,db/journals/jco/jco31.html#HeZLLWG16,https://doi.org/10.1007/s10878-014-9717-1 +Guantao Chen,Approximating the chromatic index of multigraphs.,2011,21,J. Comb. Optim.,2,db/journals/jco/jco21.html#ChenYZ11,https://doi.org/10.1007/s10878-009-9232-y +Patricia A. Evans,Fixed-parameter tractability of anonymizing data by suppressing entries.,2009,18,J. Comb. Optim.,4,db/journals/jco/jco18.html#EvansWC09,https://doi.org/10.1007/s10878-009-9253-6 +Jianer Chen,On the computational hardness based on linear FPT-reductions.,2006,11,J. Comb. Optim.,2,db/journals/jco/jco11.html#ChenHKX06,https://doi.org/10.1007/s10878-006-7137-6 +Cheng He,Two-agent scheduling of time-dependent jobs.,2017,34,J. Comb. Optim.,2,db/journals/jco/jco34.html#HeL17a,https://doi.org/10.1007/s10878-016-9994-y +Diana Fanghänel,A fast exact algorithm for the problem of optimum cooperation and the structure of its solutions.,2010,19,J. Comb. Optim.,3,db/journals/jco/jco19.html#FanghanelL10,https://doi.org/10.1007/s10878-009-9208-y +Chen-Wan Lin,On the minimum routing cost clustered tree problem.,2017,33,J. Comb. Optim.,3,db/journals/jco/jco33.html#LinW17,https://doi.org/10.1007/s10878-016-0026-8 +Michael Krivelevich,Approximating the Independence Number and the Chromatic Number in Expected Polynomial Time.,2002,6,J. Comb. Optim.,2,db/journals/jco/jco6.html#KrivelevichV02,https://doi.org/10.1023/A:1013899527204 +Lili Liu,Two-person cooperative games on scheduling problems in outpatient pharmacy dispensing process.,2015,30,J. Comb. Optim.,4,db/journals/jco/jco30.html#LiuTFW15,https://doi.org/10.1007/s10878-015-9854-1 +Fu-Tao Hu,Total and paired domination numbers of Cm bundles over a cycle Cn.,2016,32,J. Comb. Optim.,2,db/journals/jco/jco32.html#HuSC16,https://doi.org/10.1007/s10878-015-9885-7 +Shyh-In Hwang,Combinatorial Optimization in Real-Time Scheduling: Theory and Algorithms.,2001,5,J. Comb. Optim.,3,db/journals/jco/jco5.html#HwangC01,https://doi.org/10.1023/A:1011449311477 +Imed Kacem,Approximation algorithms for maximizing the weighted number of early jobs on a single machine with non-availability intervals.,2015,30,J. Comb. Optim.,3,db/journals/jco/jco30.html#KacemKL15,https://doi.org/10.1007/s10878-013-9643-7 +Wanpracha Art Chaovalitwongse,Revised GRASP with path-relinking for the linear ordering problem.,2011,22,J. Comb. Optim.,4,db/journals/jco/jco22.html#ChaovalitwongseOCPR11,https://doi.org/10.1007/s10878-010-9306-x +Robert D. Carr,A 2\frac{1}{10}-Approximation Algorithm for a Generalization of the Weighted Edge-Dominating Set Problem.,2001,5,J. Comb. Optim.,3,db/journals/jco/jco5.html#CarrFKP01,https://doi.org/10.1023/A:1011445210568 +Panos M. Pardalos,A Greedy Randomized Adaptive Search Procedure for the Feedback Vertex Set Problem.,1998,2,J. Comb. Optim.,4,db/journals/jco/jco2.html#PardalosQR98,https://doi.org/10.1023/A:1009736921890 +Lucas P. Melo,Approximation algorithms for k-level stochastic facility location problems.,2017,34,J. Comb. Optim.,1,db/journals/jco/jco34.html#MeloMPS17,https://doi.org/10.1007/s10878-016-0064-2 +Hanno Lefmann,Point sets in the unit square and large areas of convex hulls of subsets of points.,2008,16,J. Comb. Optim.,2,db/journals/jco/jco16.html#Lefmann08,https://doi.org/10.1007/s10878-008-9168-7 +Xiufeng Du,On Shortest k-Edge-Connected Steiner Networks in Metric Spaces.,2000,4,J. Comb. Optim.,1,db/journals/jco/jco4.html#DuHJ00,https://doi.org/10.1023/A:1009889023408 +György Dósa,Online scheduling with a buffer on related machines.,2010,20,J. Comb. Optim.,2,db/journals/jco/jco20.html#DosaE10,https://doi.org/10.1007/s10878-008-9200-y +William S. Kennedy,Linear time construction of 5-phylogenetic roots for tree chordal graphs.,2010,19,J. Comb. Optim.,1,db/journals/jco/jco19.html#KennedyKLY10,https://doi.org/10.1007/s10878-008-9164-y +Y. H. Gu,A new two-party bargaining mechanism.,2013,25,J. Comb. Optim.,1,db/journals/jco/jco25.html#GuGCST13,https://doi.org/10.1007/s10878-011-9424-0 +Qingsong Tang,A continuous characterization of the maximum vertex-weighted clique in hypergraphs.,2018,35,J. Comb. Optim.,4,db/journals/jco/jco35.html#TangZWZ18,https://doi.org/10.1007/s10878-018-0259-9 +Lei Chen 0007,Labelling algorithms for paired-domination problems in block and interval graphs.,2010,19,J. Comb. Optim.,4,db/journals/jco/jco19.html#ChenLZ10,https://doi.org/10.1007/s10878-008-9177-6 +Ulrich Pferschy,The maximum flow problem with disjunctive constraints.,2013,26,J. Comb. Optim.,1,db/journals/jco/jco26.html#PferschyS13,https://doi.org/10.1007/s10878-011-9438-7 +Fuliang Lu,The Pfaffian property of Cartesian products of graphs.,2014,27,J. Comb. Optim.,3,db/journals/jco/jco27.html#LuZ14,https://doi.org/10.1007/s10878-012-9533-4 +Manouchehr Zaker,A note on orientation and chromatic number of graphs.,2017,34,J. Comb. Optim.,2,db/journals/jco/jco34.html#Zaker17,https://doi.org/10.1007/s10878-016-0094-9 +Gary A. Kochenberger,Clustering of Microarray data via Clique Partitioning.,2005,10,J. Comb. Optim.,1,db/journals/jco/jco10.html#KochenbergerGAW05,https://doi.org/10.1007/s10878-005-1861-1 +Michele Garraffa,An exact semidefinite programming approach for the max-mean dispersion problem.,2017,34,J. Comb. Optim.,1,db/journals/jco/jco34.html#GarraffaCS17,https://doi.org/10.1007/s10878-016-0065-1 +Tonguç ünlüyurt,Testing Systems of Identical Components.,2005,10,J. Comb. Optim.,3,db/journals/jco/jco10.html#Unluyurt05,https://doi.org/10.1007/s10878-005-4106-4 +Bo-Jr Li,The competition number of a graph with exactly two holes.,2012,23,J. Comb. Optim.,1,db/journals/jco/jco23.html#LiC12,https://doi.org/10.1007/s10878-010-9331-9 +Hongwei Du,A Note on Optical Network with Nonsplitting Nodes.,2005,10,J. Comb. Optim.,2,db/journals/jco/jco10.html#DuJWTL05,https://doi.org/10.1007/s10878-005-2273-y +Marie-Christine Costa,Minimum d-blockers and d-transversals in graphs.,2011,22,J. Comb. Optim.,4,db/journals/jco/jco22.html#CostaWP11,https://doi.org/10.1007/s10878-010-9334-6 +Huilan Chang,The decycling number of outerplanar graphs.,2013,25,J. Comb. Optim.,4,db/journals/jco/jco25.html#ChangFL13,https://doi.org/10.1007/s10878-012-9455-1 +Bing Wang 0002,Predictive-reactive scheduling for single surgical suite subject to random emergency surgery.,2015,30,J. Comb. Optim.,4,db/journals/jco/jco30.html#WangHZZ15,https://doi.org/10.1007/s10878-015-9861-2 +Sheng-Long Hu,Algebraic connectivity of an even uniform hypergraph.,2012,24,J. Comb. Optim.,4,db/journals/jco/jco24.html#HuQ12,https://doi.org/10.1007/s10878-011-9407-1 +Yiping Lu,Packing cubes into a cube is NP-complete in the strong sense.,2015,29,J. Comb. Optim.,1,db/journals/jco/jco29.html#LuCC15,https://doi.org/10.1007/s10878-013-9701-1 +Bang Ye Wu,Constructing the Maximum Consensus Tree from Rooted Triples.,2004,8,J. Comb. Optim.,1,db/journals/jco/jco8.html#Wu04,https://doi.org/10.1023/B:JOCO.0000021936.04215.68 +Yiqiao Wang 0002,Acyclic edge coloring of planar graphs without a 3-cycle adjacent to a 6-cycle.,2014,28,J. Comb. Optim.,3,db/journals/jco/jco28.html#0002SWZ14,https://doi.org/10.1007/s10878-014-9765-6 +Heinz Gröflin,The flexible blocking job shop with transfer and set-up *.,2011,22,J. Comb. Optim.,2,db/journals/jco/jco22.html#GroflinPB11,https://doi.org/10.1007/s10878-009-9278-x +Walid Ben-Ameur,On the most imbalanced orientation of a graph.,2018,36,J. Comb. Optim.,2,db/journals/jco/jco36.html#Ben-AmeurGN18,https://doi.org/10.1007/s10878-017-0117-1 +álvaro Martínez-Pérez,New lower bounds for the second variable Zagreb index.,2018,36,J. Comb. Optim.,1,db/journals/jco/jco36.html#Martinez-PerezR18,https://doi.org/10.1007/s10878-018-0293-7 +Jianping Li,A polynomial time approximation scheme for embedding a directed hypergraph on a weighted ring.,2012,24,J. Comb. Optim.,3,db/journals/jco/jco24.html#LiLW12,https://doi.org/10.1007/s10878-011-9387-1 +Honghai Li,The extremal spectral radii of k -uniform supertrees.,2016,32,J. Comb. Optim.,3,db/journals/jco/jco32.html#LiSQ16,https://doi.org/10.1007/s10878-015-9896-4 +Hans Kellerer,A New Fully Polynomial Time Approximation Scheme for the Knapsack Problem.,1999,3,J. Comb. Optim.,1,db/journals/jco/jco3.html#KellererP99,https://doi.org/10.1023/A:1009813105532 +Zofia Stepien,2-Rainbow domination number of Cartesian products: $$C_{n}\square C_{3}$$ and $$C_{n}\square C_{5}$$.,2014,28,J. Comb. Optim.,4,db/journals/jco/jco28.html#StepienZ14,https://doi.org/10.1007/s10878-012-9582-8 +Glenn Hurlbert,The Weight Function Lemma for graph pebbling.,2017,34,J. Comb. Optim.,2,db/journals/jco/jco34.html#Hurlbert17,https://doi.org/10.1007/s10878-016-9993-z +Manki Min,OMEGa: an optimistic most energy gain method for minimum energy multicasting in wireless ad hoc networks.,2008,16,J. Comb. Optim.,1,db/journals/jco/jco16.html#MinP08,https://doi.org/10.1007/s10878-007-9100-6 +Andreas W. M. Dress,Preface.,2008,16,J. Comb. Optim.,2,db/journals/jco/jco16.html#DressXZ08,https://doi.org/10.1007/s10878-008-9166-9 +Yu Wang 0003,Minimum power assignment in wireless ad hoc networks with spanner property.,2006,11,J. Comb. Optim.,1,db/journals/jco/jco11.html#WangL06,https://doi.org/10.1007/s10878-006-5980-0 +Xin Zhang,Total coloring of outer-1-planar graphs with near-independent crossings.,2017,34,J. Comb. Optim.,3,db/journals/jco/jco34.html#Zhang17,https://doi.org/10.1007/s10878-016-0093-x +Robert D. Carr,Some Results on Node Lifting of TSP Inequalities.,2000,4,J. Comb. Optim.,4,db/journals/jco/jco4.html#Carr00,https://doi.org/10.1023/A:1009830409833 +Wenqiang Dai,Incremental Facility Location Problem and Its Competitive Algorithms.,2010,20,J. Comb. Optim.,3,db/journals/jco/jco20.html#DaiZ10,https://doi.org/10.1007/s10878-009-9219-8 +Máté Hegyháti,Colorability of mixed hypergraphs and their chromatic inversions.,2013,25,J. Comb. Optim.,4,db/journals/jco/jco25.html#HegyhatiT13,https://doi.org/10.1007/s10878-012-9559-7 +Naoki Katoh,A rooted-forest partition with uniform vertex demand.,2012,24,J. Comb. Optim.,2,db/journals/jco/jco24.html#KatohT12,https://doi.org/10.1007/s10878-010-9367-x +Kiruthika Ramanathan,Clustering and combinatorial optimization in recursive supervised learning.,2007,13,J. Comb. Optim.,2,db/journals/jco/jco13.html#RamanathanG07,https://doi.org/10.1007/s10878-006-9017-5 +Hannes Moser,Exact combinatorial algorithms and experiments for finding maximum k-plexes.,2012,24,J. Comb. Optim.,3,db/journals/jco/jco24.html#MoserNS12,https://doi.org/10.1007/s10878-011-9391-5 +Paul Dorbec,On the upper total domination number of Cartesian products of graphs.,2008,16,J. Comb. Optim.,1,db/journals/jco/jco16.html#DorbecHR08,https://doi.org/10.1007/s10878-007-9099-8 +György Dósa,Two uniform machines with nearly equal speeds: unified approach to known sum and known optimum in semi on-line scheduling.,2011,21,J. Comb. Optim.,4,db/journals/jco/jco21.html#DosaST11,https://doi.org/10.1007/s10878-009-9265-2 +Yannick Vimont,Reduced costs propagation in an efficient implicit enumeration for the 01 multidimensional knapsack problem.,2008,15,J. Comb. Optim.,2,db/journals/jco/jco15.html#VimontBV08,https://doi.org/10.1007/s10878-007-9074-4 +Weifan Wang,A lower bound of the surviving rate of a planar graph with girth at least seven.,2014,27,J. Comb. Optim.,4,db/journals/jco/jco27.html#WangFW14,https://doi.org/10.1007/s10878-012-9541-4 +Jingui Huang,A simple linear time approximation algorithm for multi-processor job scheduling on four processors.,2007,13,J. Comb. Optim.,1,db/journals/jco/jco13.html#HuangCCW07,https://doi.org/10.1007/s10878-006-9011-y +Miaomiao Han,Neighbor sum distinguishing total coloring of graphs with bounded treewidth.,2018,36,J. Comb. Optim.,1,db/journals/jco/jco36.html#HanLLM18,https://doi.org/10.1007/s10878-018-0271-0 +Weidong Chen,Introduction: Special issue dedicated to the memory of professor Wenqi Huang.,2016,32,J. Comb. Optim.,2,db/journals/jco/jco32.html#ChenC16,https://doi.org/10.1007/s10878-016-0040-x +Yilin Shen,Staying safe and visible via message sharing in online social networks.,2014,28,J. Comb. Optim.,1,db/journals/jco/jco28.html#ShenDTN14,https://doi.org/10.1007/s10878-013-9667-z +Masaki Yamamoto 0001,A polynomial-time perfect sampler for the Q-Ising with a vertex-independent noise.,2011,22,J. Comb. Optim.,3,db/journals/jco/jco22.html#YamamotoKM11,https://doi.org/10.1007/s10878-010-9309-7 +Martin Böhm,A two-phase algorithm for bin stretching with stretching factor 1.5.,2017,34,J. Comb. Optim.,3,db/journals/jco/jco34.html#BohmSSV17,https://doi.org/10.1007/s10878-017-0114-4 +Amine Lamine,Solving constrained optimization problems by solution-based decomposition search.,2016,32,J. Comb. Optim.,3,db/journals/jco/jco32.html#LamineKHC16,https://doi.org/10.1007/s10878-015-9892-8 +My T. Thai,On the complexity and approximation of non-unique probe selection using d -disjunct matrix.,2009,17,J. Comb. Optim.,1,db/journals/jco/jco17.html#ThaiZ09,https://doi.org/10.1007/s10878-008-9188-3 +Yueshi Wu,Distributed algorithms for barrier coverage via sensor rotation in wireless sensor networks.,2018,36,J. Comb. Optim.,1,db/journals/jco/jco36.html#WuC18,https://doi.org/10.1007/s10878-016-0055-3 +Zhenming Chen,Efficient Job Scheduling Algorithms with Multi-Type Contentions.,2005,10,J. Comb. Optim.,2,db/journals/jco/jco10.html#ChenSX05,https://doi.org/10.1007/s10878-005-2272-z +Zonghao Gu,Sequence Independent Lifting in Mixed Integer Programming.,2000,4,J. Comb. Optim.,1,db/journals/jco/jco4.html#GuNS00,https://doi.org/10.1023/A:1009841107478 +Hui Lei,Rainbow vertex connection of digraphs.,2018,35,J. Comb. Optim.,1,db/journals/jco/jco35.html#LeiLLS18,https://doi.org/10.1007/s10878-017-0156-7 +Peng Zhang 0008,A new approximation algorithm for the Selective Single-Sink Buy-at-Bulk problem in network design.,2014,27,J. Comb. Optim.,4,db/journals/jco/jco27.html#Zhang14,https://doi.org/10.1007/s10878-012-9544-1 +Odile Favaron,Bounding the total domination subdivision number of a graph in terms of its order.,2011,21,J. Comb. Optim.,2,db/journals/jco/jco21.html#FavaronKS11,https://doi.org/10.1007/s10878-009-9224-y +Dongmei Zhang,A local search approximation algorithm for a squared metric k-facility location problem.,2018,35,J. Comb. Optim.,4,db/journals/jco/jco35.html#ZhangXWZZ18,https://doi.org/10.1007/s10878-018-0261-2 +Cristina Bazgan,Critical edges/nodes for the minimum spanning tree problem: complexity and approximation.,2013,26,J. Comb. Optim.,1,db/journals/jco/jco26.html#BazganTV13a,https://doi.org/10.1007/s10878-011-9449-4 +Lily Chen,A solution to a conjecture on the generalized connectivity of graphs.,2017,33,J. Comb. Optim.,1,db/journals/jco/jco33.html#ChenLLM17,https://doi.org/10.1007/s10878-015-9955-x +Da Huang,On cyclic vertex-connectivity of Cartesian product digraphs.,2012,24,J. Comb. Optim.,3,db/journals/jco/jco24.html#HuangZ12,https://doi.org/10.1007/s10878-011-9395-1 +Yu-Chi Liu,On the vertex characterization of single-shape partition polytopes.,2011,22,J. Comb. Optim.,4,db/journals/jco/jco22.html#LiuP11,https://doi.org/10.1007/s10878-010-9305-y +Sourav Chakraborty 0001,Hardness and algorithms for rainbow connection.,2011,21,J. Comb. Optim.,3,db/journals/jco/jco21.html#ChakrabortyFMY11,https://doi.org/10.1007/s10878-009-9250-9 +Marek Karpinski,New Approximation Algorithms for the Steiner Tree Problems.,1997,1,J. Comb. Optim.,1,db/journals/jco/jco1.html#KarpinskiZ97,https://doi.org/10.1023/A:1009758919736 +Mauricio G. C. Resende,Multichannel Optical Networks: Theory and Practice.,2001,5,J. Comb. Optim.,4,db/journals/jco/jco5.html#Resende01a,https://doi.org/10.1023/A:1011680926441 +Eduardo C. Xavier,Scheduling with task replication on desktop grids: theoretical and experimental analysis.,2015,30,J. Comb. Optim.,3,db/journals/jco/jco30.html#XavierPS15,https://doi.org/10.1007/s10878-013-9650-8 +Zhi-Zhong Chen,An Improved Randomized Approximation Algorithm for Max TSP.,2005,9,J. Comb. Optim.,4,db/journals/jco/jco9.html#ChenW05,https://doi.org/10.1007/s10878-005-1779-7 +Qingqiong Cai,Erdō*7*s-Gallai-type results for colorful monochromatic connectivity of a graph.,2017,33,J. Comb. Optim.,1,db/journals/jco/jco33.html#CaiLW17,https://doi.org/10.1007/s10878-015-9938-y +Paul C. Bell,Multiprocessor speed scaling for jobs with arbitrary sizes and deadlines.,2015,29,J. Comb. Optim.,4,db/journals/jco/jco29.html#BellW15,https://doi.org/10.1007/s10878-013-9618-8 +Yubai Zhang,A simple approximation algorithm for minimum weight partial connected set cover.,2017,34,J. Comb. Optim.,3,db/journals/jco/jco34.html#ZhangRZ17,https://doi.org/10.1007/s10878-017-0122-4 +Boting Yang,Lower bounds for positive semidefinite zero forcing and their applications.,2017,33,J. Comb. Optim.,1,db/journals/jco/jco33.html#Yang17,https://doi.org/10.1007/s10878-015-9936-0 +Cem Evrendilek,Task assignment in tree-like hierarchical structures.,2017,34,J. Comb. Optim.,2,db/journals/jco/jco34.html#EvrendilekTH17,https://doi.org/10.1007/s10878-016-0097-6 +Kelin Luo,Creating an acceptable consensus ranking for group decision making.,2018,36,J. Comb. Optim.,1,db/journals/jco/jco36.html#LuoXZZ18,https://doi.org/10.1007/s10878-016-0086-9 +Moshe Dror,Generalized Steiner Problems and Other Variants.,2000,4,J. Comb. Optim.,4,db/journals/jco/jco4.html#DrorH00,https://doi.org/10.1023/A:1009881326671 +Christoph Helmberg,A Semidefinite Programming Approach to the Quadratic Knapsack Problem.,2000,4,J. Comb. Optim.,2,db/journals/jco/jco4.html#HelmbergRW00,https://doi.org/10.1023/A:1009898604624 +Miguel F. Anjos,Geometry of Semidefinite Max-Cut Relaxations via Matrix Ranks.,2002,6,J. Comb. Optim.,3,db/journals/jco/jco6.html#AnjosW02,https://doi.org/10.1023/A:1014895808844 +Marthe Bonamy,Reconfiguration graphs for vertex colourings of chordal and chordal bipartite graphs.,2014,27,J. Comb. Optim.,1,db/journals/jco/jco27.html#Bonamy0LPP14,https://doi.org/10.1007/s10878-012-9490-y +Bin Fu,Sublinear time width-bounded separators and their application to the protein side-chain packing problem.,2008,15,J. Comb. Optim.,4,db/journals/jco/jco15.html#FuC08,https://doi.org/10.1007/s10878-007-9092-2 +Scott Diehl,An improved time-space lower bound for tautologies.,2011,22,J. Comb. Optim.,3,db/journals/jco/jco22.html#DiehlMW11,https://doi.org/10.1007/s10878-009-9286-x +Michael T. Goodrich,Improved adaptive group testing algorithms with applications to multiple access channels and dead sensor diagnosis.,2008,15,J. Comb. Optim.,1,db/journals/jco/jco15.html#GoodrichH08,https://doi.org/10.1007/s10878-007-9087-z +Geng Lin,An effective discrete dynamic convexized method for solving the winner determination problem.,2016,32,J. Comb. Optim.,2,db/journals/jco/jco32.html#LinZA16,https://doi.org/10.1007/s10878-015-9883-9 +Steven S. Seiden,Randomized Online Scheduling with Delivery Times.,1999,3,J. Comb. Optim.,4,db/journals/jco/jco3.html#Seiden99,https://doi.org/10.1023/A:1009875403874 +Oliver G. Czibula,Planning personnel retraining: column generation heuristics.,2018,36,J. Comb. Optim.,3,db/journals/jco/jco36.html#CzibulaGZ18,https://doi.org/10.1007/s10878-018-0253-2 +Hu Ding,Chromatic kernel and its applications.,2016,31,J. Comb. Optim.,3,db/journals/jco/jco31.html#DingSCH0FSBX16,https://doi.org/10.1007/s10878-014-9824-z +Gruia Calinescu,1.61-approximation for min-power strong connectivity with two power levels.,2016,31,J. Comb. Optim.,1,db/journals/jco/jco31.html#Calinescu16,https://doi.org/10.1007/s10878-014-9738-9 +Jinghao Sun,An integer programming approach for the Chinese postman problem with time-dependent travel time.,2015,29,J. Comb. Optim.,3,db/journals/jco/jco29.html#SunMT15,https://doi.org/10.1007/s10878-014-9755-8 +Gruia Calinescu,On Ring Grooming in optical networks.,2007,13,J. Comb. Optim.,2,db/journals/jco/jco13.html#CalinescuW07,https://doi.org/10.1007/s10878-006-9012-x +Mikhail Batsyn,Improvements to MCS algorithm for the maximum clique problem.,2014,27,J. Comb. Optim.,2,db/journals/jco/jco27.html#BatsynGMP14,https://doi.org/10.1007/s10878-012-9592-6 +J. MacGregor Smith,Quadratic Assignment Problems and M/G/C/C/ State Dependent Network Flows.,2001,5,J. Comb. Optim.,4,db/journals/jco/jco5.html#SmithL01,https://doi.org/10.1023/A:1011624708694 +Ling Gai,Online lazy bureaucrat scheduling with a machine deadline.,2018,35,J. Comb. Optim.,2,db/journals/jco/jco35.html#GaiZ18,https://doi.org/10.1007/s10878-017-0180-7 +Rainer E. Burkard,Median problems with positive and negative weights on cycles and cacti.,2010,20,J. Comb. Optim.,1,db/journals/jco/jco20.html#BurkardH10,https://doi.org/10.1007/s10878-008-9187-4 +Ioannis Caragiannis,Tight approximation bounds for combinatorial frugal coverage algorithms.,2013,26,J. Comb. Optim.,2,db/journals/jco/jco26.html#CaragiannisKK13,https://doi.org/10.1007/s10878-012-9464-0 +David A. Cohen,Algorithms for the workflow satisfiability problem engineered for counting constraints.,2016,32,J. Comb. Optim.,1,db/journals/jco/jco32.html#CohenCGGJ16,https://doi.org/10.1007/s10878-015-9877-7 +Haitao Wang 0001,New algorithms for online rectangle filling with k-lookahead.,2011,21,J. Comb. Optim.,1,db/journals/jco/jco21.html#WangCC11,https://doi.org/10.1007/s10878-009-9246-5 +Raka Jovanovic,Partitioning of supply/demand graphs with capacity limitations: an ant colony approach.,2018,35,J. Comb. Optim.,1,db/journals/jco/jco35.html#JovanovicBV18,https://doi.org/10.1007/s10878-015-9945-z +Karine Deschinkel,SIRALINA: efficient two-steps heuristic for storage optimisation in single period task scheduling.,2011,22,J. Comb. Optim.,4,db/journals/jco/jco22.html#DeschinkelTB11,https://doi.org/10.1007/s10878-010-9332-8 +Francis Sourd,Lexicographically minimizing axial motions for the Euclidean TSP.,2010,19,J. Comb. Optim.,1,db/journals/jco/jco19.html#Sourd10,https://doi.org/10.1007/s10878-008-9154-0 +Jean Cardinal,The Stackelberg minimum spanning tree game on planar and bounded-treewidth graphs.,2013,25,J. Comb. Optim.,1,db/journals/jco/jco25.html#CardinalDFJNW13,https://doi.org/10.1007/s10878-011-9414-2 +Sheng-Long Hu,The Laplacian of a uniform hypergraph.,2015,29,J. Comb. Optim.,2,db/journals/jco/jco29.html#HuQ15,https://doi.org/10.1007/s10878-013-9596-x +Alan Kuhnle,Online set multicover algorithms for dynamic D2D communications.,2017,34,J. Comb. Optim.,4,db/journals/jco/jco34.html#KuhnleLST17,https://doi.org/10.1007/s10878-017-0144-y +Deying Li,An improved distributed data aggregation scheduling in wireless sensor networks.,2014,27,J. Comb. Optim.,2,db/journals/jco/jco27.html#LiZDL14,https://doi.org/10.1007/s10878-012-9504-9 +Xia Zhang,Disconnected gc -critical graphs.,2017,34,J. Comb. Optim.,3,db/journals/jco/jco34.html#Zhang17a,https://doi.org/10.1007/s10878-016-0108-7 +Chengchao Yan,Adjacent vertex distinguishing edge colorings of planar graphs with girth at least five.,2014,28,J. Comb. Optim.,4,db/journals/jco/jco28.html#YanHCW14,https://doi.org/10.1007/s10878-012-9569-5 +Agostinho Agra,Implicit cover inequalities.,2016,31,J. Comb. Optim.,3,db/journals/jco/jco31.html#AgraRS16,https://doi.org/10.1007/s10878-014-9812-3 +Jing Chen,The total {k}-domatic number of wheels and complete graphs.,2012,24,J. Comb. Optim.,3,db/journals/jco/jco24.html#ChenHL12,https://doi.org/10.1007/s10878-010-9374-y +Elisabeth Gassner,An inverse approach to convex ordered median problems in trees.,2012,23,J. Comb. Optim.,2,db/journals/jco/jco23.html#Gassner12,https://doi.org/10.1007/s10878-010-9353-3 +Hongyu Liang,On the complexity of connectivity in cognitive radio networks through spectrum assignment.,2015,29,J. Comb. Optim.,2,db/journals/jco/jco29.html#LiangLTWY15,https://doi.org/10.1007/s10878-013-9605-0 +Wensong Lin,Distance two edge labelings of lattices.,2013,25,J. Comb. Optim.,4,db/journals/jco/jco25.html#LinW13,https://doi.org/10.1007/s10878-012-9508-5 +Zengti Li,Two constructions of new error-correcting pooling designs from orthogonal spaces over a finite field of characteristic 2.,2010,20,J. Comb. Optim.,4,db/journals/jco/jco20.html#LiGDZW10,https://doi.org/10.1007/s10878-009-9210-4 +Gerard Jennhwa Chang,Bandwidth sums of block graphs and cacti.,2014,27,J. Comb. Optim.,4,db/journals/jco/jco27.html#ChangCKLY14,https://doi.org/10.1007/s10878-012-9548-x +Giuliana Carello,"A ""maximum node clustering"" problem.",2006,11,J. Comb. Optim.,4,db/journals/jco/jco11.html#CarelloCGL06,https://doi.org/10.1007/s10878-006-8210-x +Yoshiyuki Kusakari,Finding a Noncrossing Steiner Forest in Plane Graphs Under a 2-Face Condition.,2001,5,J. Comb. Optim.,2,db/journals/jco/jco5.html#KusakariMN01,https://doi.org/10.1023/A:1011425821069 +Srinath Doss,An optimal Tate pairing computation using Jacobi quartic elliptic curves.,2018,35,J. Comb. Optim.,4,db/journals/jco/jco35.html#DossK18,https://doi.org/10.1007/s10878-018-0257-y +Peter Brown,A heuristic for the time constrained asymmetric linear sum assignment problem.,2017,33,J. Comb. Optim.,2,db/journals/jco/jco33.html#BrownYZP17,https://doi.org/10.1007/s10878-015-9979-2 +Mehdy Roayaei,Augmenting weighted graphs to establish directed point-to-point connectivity.,2017,33,J. Comb. Optim.,3,db/journals/jco/jco33.html#RoayaeiR17,https://doi.org/10.1007/s10878-016-0023-y +Ruixue Zhang,The minimum chromatic spectrum of 3-uniform C-hypergraphs.,2015,29,J. Comb. Optim.,4,db/journals/jco/jco29.html#ZhangZDL15,https://doi.org/10.1007/s10878-013-9625-9 +Yuepeng Wang 0001,Information exchange with collision detection on multiple channels.,2016,31,J. Comb. Optim.,1,db/journals/jco/jco31.html#WangWYYL16,https://doi.org/10.1007/s10878-014-9713-5 +J. Sun,A Parametric Approach for a Nonlinear Discrete Location Problem.,2002,6,J. Comb. Optim.,2,db/journals/jco/jco6.html#SunG02,https://doi.org/10.1023/A:1013802826295 +Dariusz Dereniowski,Zero-visibility cops and robber and the pathwidth of a graph.,2015,29,J. Comb. Optim.,3,db/journals/jco/jco29.html#DereniowskiDTY15,https://doi.org/10.1007/s10878-014-9712-6 +Shmuel Wimer,Optimal weight allocation in rooted trees.,2016,31,J. Comb. Optim.,3,db/journals/jco/jco31.html#Wimer16,https://doi.org/10.1007/s10878-014-9807-0 +Yuanjun Bi,A nature-inspired influence propagation model for the community expansion problem.,2014,28,J. Comb. Optim.,3,db/journals/jco/jco28.html#BiWZFW14,https://doi.org/10.1007/s10878-013-9686-9 +Junlei Zhu,Minimum 2-distance coloring of planar graphs and channel assignment.,2018,36,J. Comb. Optim.,1,db/journals/jco/jco36.html#ZhuB18,https://doi.org/10.1007/s10878-018-0285-7 +Sergey Bereg,RNA multiple structural alignment with longest common subsequences.,2007,13,J. Comb. Optim.,2,db/journals/jco/jco13.html#BeregKWZ07,https://doi.org/10.1007/s10878-006-9020-x +Wenbin Chen,A primal-dual online algorithm for the k-server problem on weighted HSTs.,2017,34,J. Comb. Optim.,4,db/journals/jco/jco34.html#ChenLWQTW17,https://doi.org/10.1007/s10878-017-0135-z +Wayne J. Pullan,Phased local search for the maximum clique problem.,2006,12,J. Comb. Optim.,3,db/journals/jco/jco12.html#Pullan06,https://doi.org/10.1007/s10878-006-9635-y +Igor E. Zverovich,Penta-Extensions of Hereditary Classes of Graphs.,2005,10,J. Comb. Optim.,2,db/journals/jco/jco10.html#ZverovichZ05,https://doi.org/10.1007/s10878-005-2271-0 +Donatella Granata,On the complexity of path problems in properly colored directed graphs.,2012,24,J. Comb. Optim.,4,db/journals/jco/jco24.html#GranataBP12,https://doi.org/10.1007/s10878-011-9401-7 +Luis Evaristo Caraballo,Matching colored points with rectangles.,2017,33,J. Comb. Optim.,2,db/journals/jco/jco33.html#CaraballoOPR17,https://doi.org/10.1007/s10878-015-9971-x +H. Y. Lau,The Greedier the Better: An Efficient Algorithm for Approximating Maximum Independent.,2001,5,J. Comb. Optim.,4,db/journals/jco/jco5.html#LauT01,https://doi.org/10.1023/A:1011672624624 +Sylvain Béal,Two-step values for games with two-level communication structure.,2018,35,J. Comb. Optim.,2,db/journals/jco/jco35.html#BealKS18,https://doi.org/10.1007/s10878-017-0194-1 +Wei Niu,Applications of extension grey prediction model for power system forecasting.,2013,26,J. Comb. Optim.,3,db/journals/jco/jco26.html#NiuCW13,https://doi.org/10.1007/s10878-012-9477-8 +Lusheng Wang,Near optimal solutions for maximum quasi-bicliques.,2013,25,J. Comb. Optim.,3,db/journals/jco/jco25.html#Wang13,https://doi.org/10.1007/s10878-011-9392-4 +Weiya Zhong,Two-stage no-wait hybrid flowshop scheduling with inter-stage flexibility.,2018,35,J. Comb. Optim.,1,db/journals/jco/jco35.html#ZhongS18,https://doi.org/10.1007/s10878-017-0155-8 +J. Orestes Cerdeira,Requiring Connectivity in the Set Covering Problem.,2005,9,J. Comb. Optim.,1,db/journals/jco/jco9.html#CerdeiraP05,https://doi.org/10.1007/s10878-005-5482-5 +Kang Ning,The multiple sequence sets: problem and heuristic algorithms.,2011,22,J. Comb. Optim.,4,db/journals/jco/jco22.html#NingL11,https://doi.org/10.1007/s10878-010-9329-3 +Jean-Charles Créput,Self-organizing maps in population based metaheuristic to the dynamic vehicle routing problem.,2012,24,J. Comb. Optim.,4,db/journals/jco/jco24.html#CreputHKK12,https://doi.org/10.1007/s10878-011-9400-8 +Francisco J. Aragón Artacho,A feasibility approach for constructing combinatorial designs of circulant type.,2018,35,J. Comb. Optim.,4,db/journals/jco/jco35.html#ArtachoCKT18,https://doi.org/10.1007/s10878-018-0250-5 +Philippe Galinier,Hybrid Evolutionary Algorithms for Graph Coloring.,1999,3,J. Comb. Optim.,4,db/journals/jco/jco3.html#GalinierH99,https://doi.org/10.1023/A:1009823419804 +Peter Damaschke,Multiple hypernode hitting sets and smallest two-cores with targets.,2009,18,J. Comb. Optim.,3,db/journals/jco/jco18.html#Damaschke09,https://doi.org/10.1007/s10878-009-9234-9 +Bo Chen 0002,The price of atomic selfish ring routing.,2010,19,J. Comb. Optim.,3,db/journals/jco/jco19.html#ChenCH10,https://doi.org/10.1007/s10878-008-9171-z +Hailing Liu,Online scheduling of equal length jobs on unbounded parallel batch processing machines with limited restart.,2016,31,J. Comb. Optim.,4,db/journals/jco/jco31.html#LiuYL16,https://doi.org/10.1007/s10878-015-9844-3 +Pascale Bendotti,The min-up/min-down unit commitment polytope.,2018,36,J. Comb. Optim.,3,db/journals/jco/jco36.html#BendottiFR18,https://doi.org/10.1007/s10878-018-0273-y +Xiaofeng Gu,Packing spanning trees and spanning 2-connected k-edge-connected essentially (2k-1)-edge-connected subgraphs.,2017,33,J. Comb. Optim.,3,db/journals/jco/jco33.html#Gu17,https://doi.org/10.1007/s10878-016-0014-z +Longcheng Liu,Inverse maximum flow problems under the weighted Hamming distance.,2006,12,J. Comb. Optim.,4,db/journals/jco/jco12.html#LiuZ06,https://doi.org/10.1007/s10878-006-9006-8 +Emlee W. Nicholson,Degree conditions for weakly geodesic pancyclic graphs and their exceptions.,2016,31,J. Comb. Optim.,2,db/journals/jco/jco31.html#NicholsonW16,https://doi.org/10.1007/s10878-014-9800-7 +Hongwei Liu,A Tight Semidefinite Relaxation of the MAX CUT Problem.,2003,7,J. Comb. Optim.,3,db/journals/jco/jco7.html#LiuLX03,https://doi.org/10.1023/A:1027364420370 +David Liben-Nowell,Finding longest increasing and common subsequences in streaming data.,2006,11,J. Comb. Optim.,2,db/journals/jco/jco11.html#Liben-NowellVZ06,https://doi.org/10.1007/s10878-006-7125-x +Etienne de Klerk,Polynomial Primal-Dual Affine Scaling Algorithms in Semidefinite Programming.,1998,2,J. Comb. Optim.,1,db/journals/jco/jco2.html#KlerkRT98,https://doi.org/10.1023/A:1009791827917 +Xiao Min,Semi-online scheduling on two identical machines with rejection.,2013,26,J. Comb. Optim.,3,db/journals/jco/jco26.html#MinWLJ13,https://doi.org/10.1007/s10878-011-9435-x +Johannes H. Hattingh,An upper bound on the total restrained domination number of a tree.,2010,20,J. Comb. Optim.,3,db/journals/jco/jco20.html#HattinghJJ10,https://doi.org/10.1007/s10878-008-9204-7 +Hiroshi Nagamochi,Augmenting a Submodular and Posi-modular Set Function by a Multigraph.,2001,5,J. Comb. Optim.,2,db/journals/jco/jco5.html#NagamochiSI01,https://doi.org/10.1023/A:1011409332456 +Vadim V. Lozin,Coloring vertices of claw-free graphs in three colors.,2014,28,J. Comb. Optim.,2,db/journals/jco/jco28.html#LozinP14,https://doi.org/10.1007/s10878-012-9577-5 +Yong Xia,On improving convex quadratic programming relaxation for the quadratic assignment problem.,2015,30,J. Comb. Optim.,3,db/journals/jco/jco30.html#XiaG15,https://doi.org/10.1007/s10878-013-9655-3 +Shawn T. O'Neil,The topology aware file distribution problem.,2013,26,J. Comb. Optim.,4,db/journals/jco/jco26.html#ONeilCCW13,https://doi.org/10.1007/s10878-011-9430-2 +Seyed Farid Ghannadpour,A multi-objective vehicle routing and scheduling problem with uncertainty in customers' request and priority.,2014,28,J. Comb. Optim.,2,db/journals/jco/jco28.html#GhannadpourNT14,https://doi.org/10.1007/s10878-012-9564-x +Hsiang-Chun Hsu,Parity and strong parity edge-colorings of graphs.,2012,24,J. Comb. Optim.,4,db/journals/jco/jco24.html#HsuC12,https://doi.org/10.1007/s10878-011-9398-y +Juha Kortelainen,Unavoidable regularities in long words with bounded number of symbol occurrences.,2013,26,J. Comb. Optim.,4,db/journals/jco/jco26.html#KortelainenKV13,https://doi.org/10.1007/s10878-012-9450-6 +Shasha Li,Note on the hardness of generalized connectivity.,2012,24,J. Comb. Optim.,3,db/journals/jco/jco24.html#LiL12,https://doi.org/10.1007/s10878-011-9399-x +Alexander Veremyev,An integer programming framework for critical elements detection in graphs.,2014,28,J. Comb. Optim.,1,db/journals/jco/jco28.html#VeremyevPP14,https://doi.org/10.1007/s10878-014-9730-4 +Jie Wang 0002,Efficient point coverage in wireless sensor networks.,2006,11,J. Comb. Optim.,3,db/journals/jco/jco11.html#WangZ06,https://doi.org/10.1007/s10878-006-7909-z +Minghui Jiang 0001,A 2-approximation for the preceding-and-crossing structured 2-interval pattern problem.,2007,13,J. Comb. Optim.,3,db/journals/jco/jco13.html#Jiang07,https://doi.org/10.1007/s10878-006-9024-6 +Dujuan Wang,Prioritized surgery scheduling in face of surgeon tiredness and fixed off-duty period.,2015,30,J. Comb. Optim.,4,db/journals/jco/jco30.html#WangLYWW15,https://doi.org/10.1007/s10878-015-9846-1 +Guohui Lin,On the Bandpass problem.,2011,22,J. Comb. Optim.,1,db/journals/jco/jco22.html#Lin11,https://doi.org/10.1007/s10878-009-9273-2 +Mhand Hifi,Sensitivity of the Optimum to Perturbations of the Profit or Weight of an Item in the Binary Knapsack Problem.,2005,10,J. Comb. Optim.,3,db/journals/jco/jco10.html#HifiMS05,https://doi.org/10.1007/s10878-005-4105-5 +Yong He,Weighted Inverse Minimum Spanning Tree Problems Under Hamming Distance.,2005,9,J. Comb. Optim.,1,db/journals/jco/jco9.html#HeZY05,https://doi.org/10.1007/s10878-005-5486-1 +Jerrold R. Griggs,The partition method for poset-free families.,2013,25,J. Comb. Optim.,4,db/journals/jco/jco25.html#GriggsL13,https://doi.org/10.1007/s10878-012-9476-9 +Sascha Wörz,On global integer extrema of real-valued box-constrained multivariate quadratic functions.,2017,34,J. Comb. Optim.,3,db/journals/jco/jco34.html#Worz17,https://doi.org/10.1007/s10878-017-0123-3 +Zemin Jin,Extremal coloring for the anti-Ramsey problem of matchings in complete graphs.,2017,34,J. Comb. Optim.,4,db/journals/jco/jco34.html#JinSYZ17,https://doi.org/10.1007/s10878-017-0125-1 +Hong Liu 0001,On the generalized multiway cut in trees problem.,2014,27,J. Comb. Optim.,1,db/journals/jco/jco27.html#LiuZ14,https://doi.org/10.1007/s10878-012-9565-9 +Tian Liu 0001,Tractable connected domination for restricted bipartite graphs.,2015,29,J. Comb. Optim.,1,db/journals/jco/jco29.html#LiuLX15,https://doi.org/10.1007/s10878-014-9729-x +Piotr Borowiecki,Computational aspects of greedy partitioning of graphs.,2018,35,J. Comb. Optim.,2,db/journals/jco/jco35.html#Borowiecki18,https://doi.org/10.1007/s10878-017-0185-2 +Anthony J. Macula,Trivial Two-Stage Group Testing with High Error Rates.,2003,7,J. Comb. Optim.,4,db/journals/jco/jco7.html#Macula03,https://doi.org/10.1023/B:JOCO.0000017384.94868.45 +Daniel J. Rosenkrantz,Facility Dispersion Problems Under Capacity and Cost Constraints.,2000,4,J. Comb. Optim.,1,db/journals/jco/jco4.html#RosenkrantzTR00,https://doi.org/10.1023/A:1009802105661 +Tian-Ming Bu,Multi-bidding strategy in sponsored search auctions.,2012,23,J. Comb. Optim.,3,db/journals/jco/jco23.html#BuDQ12,https://doi.org/10.1007/s10878-010-9297-7 +Ding-Zhu Du,Editorial.,2000,4,J. Comb. Optim.,1,db/journals/jco/jco4.html#Du00,https://doi.org/10.1023/A:1009897221361 +Subhash C. Sarin,Analytic evaluation of the expectation and variance of different performance measures of a schedule on a single machine under processing time variability.,2009,17,J. Comb. Optim.,4,db/journals/jco/jco17.html#SarinNJL09,https://doi.org/10.1007/s10878-007-9122-0 +Chunmei Liu,Parameterized lower bound and inapproximability of polylogarithmic string barcoding.,2008,16,J. Comb. Optim.,1,db/journals/jco/jco16.html#LiuSB08,https://doi.org/10.1007/s10878-007-9097-x +Shuo Zhang,Efficient algorithms for supergraph query processing on graph databases.,2011,21,J. Comb. Optim.,2,db/journals/jco/jco21.html#ZhangGWLG11,https://doi.org/10.1007/s10878-009-9221-1 +Xianmin Liu,On the hardness of learning queries from tree structured data.,2015,29,J. Comb. Optim.,3,db/journals/jco/jco29.html#LiuL15b,https://doi.org/10.1007/s10878-013-9609-9 +Jon Lee 0001,Cropped Cubes.,2003,7,J. Comb. Optim.,2,db/journals/jco/jco7.html#Lee03,https://doi.org/10.1023/A:1024475030446 +Guangyan Zhou,On the constraint length of random k-CSP.,2015,30,J. Comb. Optim.,1,db/journals/jco/jco30.html#ZhouGL15,https://doi.org/10.1007/s10878-014-9731-3 +Teresa Gomes,An effective algorithm for obtaining the whole set of minimal cost pairs of disjoint paths with dual arc costs.,2010,19,J. Comb. Optim.,3,db/journals/jco/jco19.html#GomesCJ10,https://doi.org/10.1007/s10878-009-9255-4 +Houcine Boumediene Merouane,An algorithm for the dominator chromatic number of a tree.,2015,30,J. Comb. Optim.,1,db/journals/jco/jco30.html#MerouaneC15,https://doi.org/10.1007/s10878-013-9631-y +Wun-Tat Chan,A dynamic programming approach of finding an optimal broadcast schedule in minimizing total flow time.,2006,11,J. Comb. Optim.,2,db/journals/jco/jco11.html#ChanCZZSW06,https://doi.org/10.1007/s10878-006-7128-7 +Wei-Chu Weng,A special combinatorial problem: pitch arrangement for pneumatic tires.,2011,22,J. Comb. Optim.,1,db/journals/jco/jco22.html#Weng11,https://doi.org/10.1007/s10878-009-9269-y +Bin Ma,Efficient estimation of the accuracy of the maximum likelihood method for ancestral state reconstruction.,2011,21,J. Comb. Optim.,4,db/journals/jco/jco21.html#MaZ11,https://doi.org/10.1007/s10878-009-9261-6 +Yishuo Shi,A greedy algorithm for the minimum 2-connected m-fold dominating set problem.,2016,31,J. Comb. Optim.,1,db/journals/jco/jco31.html#ShiZZW16,https://doi.org/10.1007/s10878-014-9720-6 +Byung-Cheon Choi,Minimizing makespan in an ordered flow shop with machine-dependent processing *.,2011,22,J. Comb. Optim.,4,db/journals/jco/jco22.html#ChoiLP11,https://doi.org/10.1007/s10878-010-9330-x +Telikepalli Kavitha,Max-coloring paths: tight bounds and extensions.,2012,24,J. Comb. Optim.,1,db/journals/jco/jco24.html#KavithaM12,https://doi.org/10.1007/s10878-010-9290-1 +Huijuan Wang,A note on the minimum number of choosability of planar graphs.,2016,31,J. Comb. Optim.,3,db/journals/jco/jco31.html#WangWZWL16,https://doi.org/10.1007/s10878-014-9805-2 +Chunmei Liu,Parameterized complexity and inapproximability of dominating set problem in chordal and near chordal graphs.,2011,22,J. Comb. Optim.,4,db/journals/jco/jco22.html#LiuS11,https://doi.org/10.1007/s10878-010-9317-7 +Glaydston Mattos Ribeiro,Strong formulation for the spot 5 daily photograph scheduling problem.,2010,20,J. Comb. Optim.,4,db/journals/jco/jco20.html#RibeiroCL10,https://doi.org/10.1007/s10878-009-9215-z +Xiao Zhang 0006,Minimizing the total cost of barrier coverage in a linear domain.,2018,36,J. Comb. Optim.,2,db/journals/jco/jco36.html#ZhangFLLZL18,https://doi.org/10.1007/s10878-018-0306-6 +Yuehua Bu,Two smaller upper bounds of list injective chromatic number.,2015,29,J. Comb. Optim.,2,db/journals/jco/jco29.html#BuLY15,https://doi.org/10.1007/s10878-013-9599-7 +Neeldhara Misra,FPT algorithms for Connected Feedback Vertex Set.,2012,24,J. Comb. Optim.,2,db/journals/jco/jco24.html#MisraPRSS12,https://doi.org/10.1007/s10878-011-9394-2 +Shasha Li,On minimally 2-connected graphs with generalized connectivity and#954*3 = 2.,2017,34,J. Comb. Optim.,1,db/journals/jco/jco34.html#LiLSS17,https://doi.org/10.1007/s10878-016-0075-z +Xingong Zhang,Patients scheduling problems with deferred deteriorated functions.,2015,30,J. Comb. Optim.,4,db/journals/jco/jco30.html#ZhangWW15,https://doi.org/10.1007/s10878-015-9852-3 +Maren Martens,Flows with unit path capacities and related packing and covering problems.,2009,18,J. Comb. Optim.,3,db/journals/jco/jco18.html#MartensS09,https://doi.org/10.1007/s10878-009-9225-x +Zixing Tang,More bounds for the Grundy number of graphs.,2017,33,J. Comb. Optim.,2,db/journals/jco/jco33.html#TangWHZ17,https://doi.org/10.1007/s10878-015-9981-8 +Dmitriy S. Malyshev,A complexity dichotomy and a new boundary class for the dominating set problem.,2016,32,J. Comb. Optim.,1,db/journals/jco/jco32.html#Malyshev16a,https://doi.org/10.1007/s10878-015-9872-z +Yishui Wang,An approximation algorithm for k-facility location problem with linear penalties using local search scheme.,2018,36,J. Comb. Optim.,1,db/journals/jco/jco36.html#WangXDW18,https://doi.org/10.1007/s10878-016-0080-2 +Robert Scheidweiler,A note on the duality between matchings and vertex covers in balanced hypergraphs.,2016,32,J. Comb. Optim.,2,db/journals/jco/jco32.html#ScheidweilerT16,https://doi.org/10.1007/s10878-015-9887-5 +Kerui Weng,Approximation algorithm for uniform bounded facility location problem.,2013,26,J. Comb. Optim.,2,db/journals/jco/jco26.html#Weng13,https://doi.org/10.1007/s10878-012-9461-3 +Zhixiang Chen,On the inapproximability of the exemplar conserved interval distance problem of genomes.,2008,15,J. Comb. Optim.,2,db/journals/jco/jco15.html#ChenFFZ08,https://doi.org/10.1007/s10878-007-9077-1 +George Zioutas,Optimization techniques for multivariate least trimmed absolute deviation estimation.,2017,34,J. Comb. Optim.,3,db/journals/jco/jco34.html#ZioutasCNP17,https://doi.org/10.1007/s10878-017-0109-1 +L. Bayón,The Best-or-Worst and the Postdoc problems.,2018,35,J. Comb. Optim.,3,db/journals/jco/jco35.html#BayonAGOR18,https://doi.org/10.1007/s10878-017-0203-4 +Peihai Liu,Online scheduling on two parallel machines with release dates and delivery *.,2015,30,J. Comb. Optim.,2,db/journals/jco/jco30.html#LiuL15c,https://doi.org/10.1007/s10878-014-9760-y +Sergey Bereg,Computing the k-resilience of a synchronized multi-robot system.,2018,36,J. Comb. Optim.,2,db/journals/jco/jco36.html#BeregCDL18,https://doi.org/10.1007/s10878-018-0297-3 +Zuosong Liang,A linear-time algorithm for clique-coloring problem in circular-arc graphs.,2017,33,J. Comb. Optim.,1,db/journals/jco/jco33.html#LiangSZ17,https://doi.org/10.1007/s10878-015-9941-3 +Yingbin Ma,Rainbow connection numbers of Cayley graphs.,2017,34,J. Comb. Optim.,1,db/journals/jco/jco34.html#MaL17,https://doi.org/10.1007/s10878-016-0052-6 +Biao Wu,Minimizing the maximum bump cost in linear extensions of a poset.,2013,26,J. Comb. Optim.,3,db/journals/jco/jco26.html#WuLY13,https://doi.org/10.1007/s10878-012-9456-0 +Michael A. Henning,Vertices Contained in all or in no Minimum Paired-Dominating Set of a Tree.,2005,10,J. Comb. Optim.,3,db/journals/jco/jco10.html#HenningP05,https://doi.org/10.1007/s10878-005-4107-3 +Salim Haddadi,Benders decomposition for set covering problems - Almost satisfying the consecutive ones property.,2017,33,J. Comb. Optim.,1,db/journals/jco/jco33.html#Haddadi17,https://doi.org/10.1007/s10878-015-9935-1 +Yongtang Shi,Coupon coloring of some special graphs.,2017,33,J. Comb. Optim.,1,db/journals/jco/jco33.html#ShiWYZ17,https://doi.org/10.1007/s10878-015-9942-2 +Xiaodong Hu,Preface.,2011,21,J. Comb. Optim.,1,db/journals/jco/jco21.html#HuW11,https://doi.org/10.1007/s10878-010-9361-3 +José Fernando Gonçalves,A parallel multi-population genetic algorithm for a constrained two-dimensional orthogonal packing problem.,2011,22,J. Comb. Optim.,2,db/journals/jco/jco22.html#GoncalvesR11,https://doi.org/10.1007/s10878-009-9282-1 +Ting-Pang Chang,The hamiltonian numbers in digraphs.,2013,25,J. Comb. Optim.,4,db/journals/jco/jco25.html#ChangT13,https://doi.org/10.1007/s10878-012-9512-9 +Marcus Brazil,On the Complexity of the Steiner Problem.,2000,4,J. Comb. Optim.,2,db/journals/jco/jco4.html#BrazilTW00,https://doi.org/10.1023/A:1009846620554 +Weiwei Wu,Optimal key tree structure for two-user replacement and deletion problems.,2013,26,J. Comb. Optim.,1,db/journals/jco/jco26.html#WuLC13,https://doi.org/10.1007/s10878-011-9431-1 +Jinbo Xu,Protein Threading by Linear Programming: Theoretical Analysis and Computational Results.,2004,8,J. Comb. Optim.,4,db/journals/jco/jco8.html#XuLX04,https://doi.org/10.1007/s10878-004-4834-x +Boting Yang,Standard directed search strategies and their applications.,2009,17,J. Comb. Optim.,4,db/journals/jco/jco17.html#YangC09,https://doi.org/10.1007/s10878-007-9121-1 +Peihai Liu,Online unbounded batch scheduling on parallel machines with delivery *.,2015,29,J. Comb. Optim.,1,db/journals/jco/jco29.html#LiuL15,https://doi.org/10.1007/s10878-014-9706-4 +Tao Zhang 0022,Integrated Ant Colony and Tabu Search approach for time dependent vehicle routing problems with simultaneous pickup and delivery.,2014,28,J. Comb. Optim.,1,db/journals/jco/jco28.html#ZhangCZ14,https://doi.org/10.1007/s10878-014-9741-1 +Florian Pausinger,Bounds for the traveling salesman paths of two-dimensional modular lattices.,2017,33,J. Comb. Optim.,4,db/journals/jco/jco33.html#Pausinger17,https://doi.org/10.1007/s10878-016-0043-7 +Lingli Li,Evaluating entity-description conflict on duplicated data.,2016,31,J. Comb. Optim.,2,db/journals/jco/jco31.html#LiLG16,https://doi.org/10.1007/s10878-014-9801-6 +Jeremy Lyle,A note on the annihilation number and 2-domination number of a tree.,2017,33,J. Comb. Optim.,3,db/journals/jco/jco33.html#LyleP17,https://doi.org/10.1007/s10878-016-0019-7 +Gerard J. Chang,Sortabilities of Partition Properties.,1998,2,J. Comb. Optim.,4,db/journals/jco/jco2.html#ChangCHHNRSWY98,https://doi.org/10.1023/A:1009737108224 +Gruia Calinescu,Improved approximation algorithms for single-tiered relay placement.,2016,31,J. Comb. Optim.,3,db/journals/jco/jco31.html#CalinescuGMTXZ16,https://doi.org/10.1007/s10878-014-9823-0 +Dorian Amiet,FPGA-based Accelerator for Post-Quantum Signature Scheme SPHINCS-256.,2018,2018,IACR Trans. Cryptogr. Hardw. Embed. Syst.,1,db/journals/tches/tches2018.html#AmietCZ18,https://doi.org/10.13154/tches.v2018.i1.18-39 +Jean-Sébastien Coron,High Order Masking of Look-up Tables with Common Shares.,2018,2018,IACR Trans. Cryptogr. Hardw. Embed. Syst.,1,db/journals/tches/tches2018.html#CoronRZ18,https://doi.org/10.13154/tches.v2018.i1.40-72 +Kai-Hsin Chuang,A Cautionary Note When Looking for a Truly Reconfigurable Resistive RAM PUF.,2018,2018,IACR Trans. Cryptogr. Hardw. Embed. Syst.,1,db/journals/tches/tches2018.html#ChuangDFGLV18,https://doi.org/10.13154/tches.v2018.i1.98-117 +Daniel Dinu,EM Analysis in the IoT Context: Lessons Learned from an Attack on Thread.,2018,2018,IACR Trans. Cryptogr. Hardw. Embed. Syst.,1,db/journals/tches/tches2018.html#DinuK18,https://doi.org/10.13154/tches.v2018.i1.73-97 +Max Hoffmann 0001,Stealthy Opaque Predicates in Hardware - Obfuscating Constant Expressions at Negligible Overhead.,2018,2018,IACR Trans. Cryptogr. Hardw. Embed. Syst.,2,db/journals/tches/tches2018.html#HoffmannP18,https://doi.org/10.13154/tches.v2018.i2.277-297 +Christopher Hicks,Dismantling the AUT64 Automotive Cipher.,2018,2018,IACR Trans. Cryptogr. Hardw. Embed. Syst.,2,db/journals/tches/tches2018.html#HicksGO18,https://doi.org/10.13154/tches.v2018.i2.46-69 +Hannes Groß,Generic Low-Latency Masking in Hardware.,2018,2018,IACR Trans. Cryptogr. Hardw. Embed. Syst.,2,db/journals/tches/tches2018.html#GrossIB18,https://doi.org/10.13154/tches.v2018.i2.1-21 +Léo Ducas,CRYSTALS-Dilithium: A Lattice-Based Digital Signature Scheme.,2018,2018,IACR Trans. Cryptogr. Hardw. Embed. Syst.,1,db/journals/tches/tches2018.html#DucasKLLSSS18,https://doi.org/10.13154/tches.v2018.i1.238-268 +Philipp Koppermann,Fast FPGA Implementations of Diffie-Hellman on the Kummer Surface of a Genus-2 Curve.,2018,2018,IACR Trans. Cryptogr. Hardw. Embed. Syst.,1,db/journals/tches/tches2018.html#KoppermannSHS18,https://doi.org/10.13154/tches.v2018.i1.1-17 +Axel Mathieu-Mahias,Mixing Additive and Multiplicative Masking for Probing Secure Polynomial Evaluation Methods.,2018,2018,IACR Trans. Cryptogr. Hardw. Embed. Syst.,1,db/journals/tches/tches2018.html#Mathieu-MahiasQ18,https://doi.org/10.13154/tches.v2018.i1.175-208 +Arash Reyhani-Masoleh,Smashing the Implementation Records of AES S-box.,2018,2018,IACR Trans. Cryptogr. Hardw. Embed. Syst.,2,db/journals/tches/tches2018.html#Reyhani-Masoleh18,https://doi.org/10.13154/tches.v2018.i2.298-336 +Ahmad Al Badawi,High-Performance FV Somewhat Homomorphic Encryption on GPUs: An Implementation using CUDA.,2018,2018,IACR Trans. Cryptogr. Hardw. Embed. Syst.,2,db/journals/tches/tches2018.html#BadawiVMA18,https://doi.org/10.13154/tches.v2018.i2.70-95 +Victor Arribas,Rhythmic Keccak: SCA Security and Low Latency in HW.,2018,2018,IACR Trans. Cryptogr. Hardw. Embed. Syst.,1,db/journals/tches/tches2018.html#ArribasBPNR18,https://doi.org/10.13154/tches.v2018.i1.269-290 +Fergus Dall,CacheQuote: Efficiently Recovering Long-term Secrets of SGX EPID via Cache Attacks.,2018,2018,IACR Trans. Cryptogr. Hardw. Embed. Syst.,2,db/journals/tches/tches2018.html#DallMEGHMY18,https://doi.org/10.13154/tches.v2018.i2.171-191 +Tobias Oder,Practical CCA2-Secure and Masked Ring-LWE Implementation.,2018,2018,IACR Trans. Cryptogr. Hardw. Embed. Syst.,1,db/journals/tches/tches2018.html#OderSPG18,https://doi.org/10.13154/tches.v2018.i1.142-174 +Sayandeep Saha,ExpFault: An Automated Framework for Exploitable Fault Characterization in Block Ciphers.,2018,2018,IACR Trans. Cryptogr. Hardw. Embed. Syst.,2,db/journals/tches/tches2018.html#SahaMD18,https://doi.org/10.13154/tches.v2018.i2.242-276 +Gildas Avoine,Attacking GlobalPlatform SCP02-compliant Smart Cards Using a Padding Oracle Attack.,2018,2018,IACR Trans. Cryptogr. Hardw. Embed. Syst.,2,db/journals/tches/tches2018.html#AvoineF18,https://doi.org/10.13154/tches.v2018.i2.149-170 +Avik Chakraborti,Beetle Family of Lightweight and Secure Authenticated Encryption Ciphers.,2018,2018,IACR Trans. Cryptogr. Hardw. Embed. Syst.,2,db/journals/tches/tches2018.html#ChakrabortiDNY18,https://doi.org/10.13154/tches.v2018.i2.218-241 +Luk Bettale,Improved High-Order Conversion From Boolean to Arithmetic Masking.,2018,2018,IACR Trans. Cryptogr. Hardw. Embed. Syst.,2,db/journals/tches/tches2018.html#BettaleCZ18,https://doi.org/10.13154/tches.v2018.i2.22-45 +Jakub Breier,Fault Attacks Made Easy: Differential Fault Analysis Automation on Assembly Code.,2018,2018,IACR Trans. Cryptogr. Hardw. Embed. Syst.,2,db/journals/tches/tches2018.html#BreierHL18,https://doi.org/10.13154/tches.v2018.i2.96-122 +Hervé Chabanne,Linear Repairing Codes and Side-Channel Attacks.,2018,2018,IACR Trans. Cryptogr. Hardw. Embed. Syst.,1,db/journals/tches/tches2018.html#ChabanneMP18,https://doi.org/10.13154/tches.v2018.i1.118-141 +Amir Moradi 0001,Leakage Detection with the x2-Test.,2018,2018,IACR Trans. Cryptogr. Hardw. Embed. Syst.,1,db/journals/tches/tches2018.html#MoradiRSS18,https://doi.org/10.13154/tches.v2018.i1.209-237 +Yusuke Naito 0001,SAEB: A Lightweight Blockcipher-Based AEAD Mode of Operation.,2018,2018,IACR Trans. Cryptogr. Hardw. Embed. Syst.,2,db/journals/tches/tches2018.html#NaitoMSS18,https://doi.org/10.13154/tches.v2018.i2.192-217 +Richard George,Observations from a Cyber Tabletop.,2014,7,IJCIP,2,db/journals/ijcip/ijcip7.html#George14,https://doi.org/10.1016/j.ijcip.2014.04.004 +Béla Genge,Analysis of the effects of distributed denial-of-service attacks on MPLS networks.,2013,6,IJCIP,2,db/journals/ijcip/ijcip6.html#GengeS13,https://doi.org/10.1016/j.ijcip.2013.04.001 +Aaron Hansen,Security analysis of an advanced metering infrastructure.,2017,18,IJCIP,,db/journals/ijcip/ijcip18.html#HansenSS17,https://doi.org/10.1016/j.ijcip.2017.03.004 +Richard White,Towards comparable cross-sector risk analyses: A re-examination of the Risk Analysis and Management for Critical Asset Protection (RAMCAP) methodology.,2016,14,IJCIP,,db/journals/ijcip/ijcip14.html#WhiteBGBC16,https://doi.org/10.1016/j.ijcip.2016.05.001 +Richard Piggin,Cyber security trends: What should keep CEOs awake at night.,2016,13,IJCIP,,db/journals/ijcip/ijcip13.html#Piggin16,https://doi.org/10.1016/j.ijcip.2016.02.001 +Mark Hartong,Security and the US rail infrastructure.,2008,1,IJCIP,,db/journals/ijcip/ijcip1.html#HartongGW08,https://doi.org/10.1016/j.ijcip.2008.08.006 +Jakub Harasta,Legally critical: Defining critical infrastructure in an interconnected world.,2018,21,IJCIP,,db/journals/ijcip/ijcip21.html#Harasta18,https://doi.org/10.1016/j.ijcip.2018.05.007 +Anas Abou El Kalam,PolyOrBAC: A security framework for Critical Infrastructures.,2009,2,IJCIP,4,db/journals/ijcip/ijcip2.html#KalamDBK09,https://doi.org/10.1016/j.ijcip.2009.08.005 +Marco Beccuti,Quantification of dependencies between electrical and information infrastructures.,2012,5,IJCIP,1,db/journals/ijcip/ijcip5.html#BeccutiCGDDF12,https://doi.org/10.1016/j.ijcip.2012.01.003 +Chris Bronk,Two securities: How contemporary cyber geopolitics impacts critical infrastructure protection.,2015,8,IJCIP,,db/journals/ijcip/ijcip8.html#Bronk15,https://doi.org/10.1016/j.ijcip.2014.12.001 +Sujeet Shenoi,Editorial.,2013,6,IJCIP,1,db/journals/ijcip/ijcip6.html#Shenoi13,https://doi.org/10.1016/j.ijcip.2013.02.003 +Martijn Warnier,Distributed monitoring for the prevention of cascading failures in operational power grids.,2017,17,IJCIP,,db/journals/ijcip/ijcip17.html#WarnierDKP17,https://doi.org/10.1016/j.ijcip.2017.03.003 +Carl J. Clavadetscher,Building national resilience capabilities.,2010,3,IJCIP,1,db/journals/ijcip/ijcip3.html#Clavadetscher10,https://doi.org/10.1016/j.ijcip.2009.08.001 +Sujeet Shenoi,Editorial.,2017,19,IJCIP,,db/journals/ijcip/ijcip19.html#Shenoi17c,https://doi.org/10.1016/j.ijcip.2017.11.001 +Tyler Moore,On the harms arising from the Equifax data breach of 2017.,2017,19,IJCIP,,db/journals/ijcip/ijcip19.html#Moore17,https://doi.org/10.1016/j.ijcip.2017.10.004 +Xiaoxue Liu,Modeling cyber-physical attacks based on probabilistic colored Petri nets and mixed-strategy game theory.,2017,16,IJCIP,,db/journals/ijcip/ijcip16.html#LiuZZ17,https://doi.org/10.1016/j.ijcip.2016.11.002 +Antonio De Nicola 0001,A methodology for modeling and measuring interdependencies of information and communications systems used for public administration and eGovernment services.,2016,14,IJCIP,,db/journals/ijcip/ijcip14.html#NicolaVBD16,https://doi.org/10.1016/j.ijcip.2016.06.001 +Cindy Finke,Enhancing the security of aircraft surveillance in the next generation air traffic control system.,2013,6,IJCIP,1,db/journals/ijcip/ijcip6.html#FinkeBMG13,https://doi.org/10.1016/j.ijcip.2013.02.001 +Marianthi Theoharidou,A CBK for Information Security and Critical Information and Communication Infrastructure Protection.,2008,1,IJCIP,,db/journals/ijcip/ijcip1.html#TheoharidouXG08,https://doi.org/10.1016/j.ijcip.2008.08.007 +Thomas H. Morris,A control system testbed to validate critical infrastructure protection concepts.,2011,4,IJCIP,2,db/journals/ijcip/ijcip4.html#MorrisSRGPR11,https://doi.org/10.1016/j.ijcip.2011.06.005 +Sujeet Shenoi,Editorial.,2016,14,IJCIP,,db/journals/ijcip/ijcip14.html#Shenoi16b,https://doi.org/10.1016/j.ijcip.2016.07.002 +Hannes Tschofenig,How secure is the next generation of IP-based emergency services architecture?,2010,3,IJCIP,1,db/journals/ijcip/ijcip3.html#TschofenigASA10,https://doi.org/10.1016/j.ijcip.2010.02.001 +Jacek Jarmakiewicz,Cybersecurity protection for power grid control infrastructures.,2017,18,IJCIP,,db/journals/ijcip/ijcip18.html#JarmakiewiczPM17,https://doi.org/10.1016/j.ijcip.2017.07.002 +Cen Nan,Multilayer hybrid modeling framework for the performance assessment of interdependent critical infrastructures.,2015,10,IJCIP,,db/journals/ijcip/ijcip10.html#NanS15,https://doi.org/10.1016/j.ijcip.2015.04.003 +Pramode Verma,The role of the network in implementing security and privacy.,2013,6,IJCIP,1,db/journals/ijcip/ijcip6.html#Verma13,https://doi.org/10.1016/j.ijcip.2012.12.001 +Jacek Skorupski,A fuzzy model for evaluating metal detection equipment at airport security screening checkpoints.,2017,16,IJCIP,,db/journals/ijcip/ijcip16.html#SkorupskiU17,https://doi.org/10.1016/j.ijcip.2016.11.001 +Rick Nunes-Vaz,Designing physical security for complex infrastructures.,2014,7,IJCIP,3,db/journals/ijcip/ijcip7.html#Nunes-VazL14,https://doi.org/10.1016/j.ijcip.2014.06.003 +Jill Rowland,The anatomy of a cyber power.,2014,7,IJCIP,1,db/journals/ijcip/ijcip7.html#RowlandRS14,https://doi.org/10.1016/j.ijcip.2014.01.001 +Hamed Okhravi,Creating a cyber moving target for critical infrastructure applications using platform diversity.,2012,5,IJCIP,1,db/journals/ijcip/ijcip5.html#OkhraviCRH12,https://doi.org/10.1016/j.ijcip.2012.01.002 +Arthur Gerstenfeld,A decision-analysis approach for optimal airport security.,2011,4,IJCIP,1,db/journals/ijcip/ijcip4.html#GerstenfeldB11,https://doi.org/10.1016/j.ijcip.2011.01.002 +Margarita Tsavdaroglou,Proposed methodology for risk analysis of interdependent critical infrastructures to extreme weather events.,2018,21,IJCIP,,db/journals/ijcip/ijcip21.html#TsavdaroglouABH18,https://doi.org/10.1016/j.ijcip.2018.04.002 +Robert A. Miller,Standing in line for swine flu vaccine.,2009,2,IJCIP,4,db/journals/ijcip/ijcip2.html#Miller09a,https://doi.org/10.1016/j.ijcip.2009.09.003 +Eliot H. Rich,Emergent vulnerabilities in Integrated Operations: A proactive simulation study of economic risk.,2009,2,IJCIP,3,db/journals/ijcip/ijcip2.html#RichGQSRH09,https://doi.org/10.1016/j.ijcip.2009.07.002 +Daniel Guernsey,Implementing novel reactive defense functionality in MPLS networks using hyperspeed signaling.,2012,5,IJCIP,1,db/journals/ijcip/ijcip5.html#GuernseyRS12,https://doi.org/10.1016/j.ijcip.2012.02.001 +Kenneth G. Crowther,Risk-informed assessment of regional preparedness: A case study of emergency potable water for hurricane response in Southeast Virginia.,2010,3,IJCIP,2,db/journals/ijcip/ijcip3.html#Crowther10,https://doi.org/10.1016/j.ijcip.2010.03.001 +Richard George,Critical infrastructure protection.,2008,1,IJCIP,,db/journals/ijcip/ijcip1.html#George08,https://doi.org/10.1016/j.ijcip.2008.08.010 +Diego F. Rueda,Using interdependency matrices to mitigate targeted attacks on interdependent networks: A case study involving a power grid and backbone telecommunications networks.,2017,16,IJCIP,,db/journals/ijcip/ijcip16.html#RuedaC17,https://doi.org/10.1016/j.ijcip.2016.11.004 +Benjamin W. P. Ramsey,Wireless infrastructure protection using low-cost radio frequency fingerprinting receivers.,2015,8,IJCIP,,db/journals/ijcip/ijcip8.html#RamseySMTB15,https://doi.org/10.1016/j.ijcip.2014.11.002 +Sujeet Shenoi,Editorial.,2015,11,IJCIP,,db/journals/ijcip/ijcip11.html#Shenoi15c,https://doi.org/10.1016/j.ijcip.2015.10.001 +Denise Grayson,Analysis of security threats to MPLS virtual private networks.,2009,2,IJCIP,4,db/journals/ijcip/ijcip2.html#GraysonGBSS09,https://doi.org/10.1016/j.ijcip.2009.08.002 +Jose R. Gutierrez del Arroyo,Enabling Bluetooth Low Energy auditing through synchronized tracking of multiple connections.,2017,18,IJCIP,,db/journals/ijcip/ijcip18.html#ArroyoBGR17,https://doi.org/10.1016/j.ijcip.2017.03.006 +Matthew H. Henry,Coupled Petri nets for computer network risk analysis.,2010,3,IJCIP,2,db/journals/ijcip/ijcip3.html#HenryLZ10,https://doi.org/10.1016/j.ijcip.2010.05.002 +Rafael Ramos Regis Barbosa,Exploiting traffic periodicity in industrial control networks.,2016,13,IJCIP,,db/journals/ijcip/ijcip13.html#BarbosaSP16,https://doi.org/10.1016/j.ijcip.2016.02.004 +Sujeet Shenoi,Editorial.,2010,3,IJCIP,2,db/journals/ijcip/ijcip3.html#Shenoi10a,https://doi.org/10.1016/j.ijcip.2010.06.004 +William J. Tolone,Interactive visualizations for critical infrastructure analysis.,2009,2,IJCIP,3,db/journals/ijcip/ijcip2.html#Tolone09,https://doi.org/10.1016/j.ijcip.2009.07.004 +Mark G. Stewart,Risk-informed decision support for assessing the costs and benefits of counter-terrorism protective measures for infrastructure.,2010,3,IJCIP,1,db/journals/ijcip/ijcip3.html#Stewart10,https://doi.org/10.1016/j.ijcip.2009.09.001 +Jungsang Yoon,Evaluating the readiness of cyber first responders responsible for critical infrastructure protection.,2016,13,IJCIP,,db/journals/ijcip/ijcip13.html#YoonDBRR16,https://doi.org/10.1016/j.ijcip.2016.02.003 +Richard George,Why we should worry about the supply chain.,2015,11,IJCIP,,db/journals/ijcip/ijcip11.html#George15,https://doi.org/10.1016/j.ijcip.2015.05.002 +Ian Stine,A cyber risk scoring system for medical devices.,2017,19,IJCIP,,db/journals/ijcip/ijcip19.html#StineRDP17,https://doi.org/10.1016/j.ijcip.2017.04.001 +Sujeet Shenoi,Editorial.,2014,7,IJCIP,1,db/journals/ijcip/ijcip7.html#Shenoi14,https://doi.org/10.1016/j.ijcip.2014.02.002 +Pio Lombardi,Information and power terminals: A reliable microgrid infrastructure for use in disaster scenarios.,2017,19,IJCIP,,db/journals/ijcip/ijcip19.html#LombardiHAK17,https://doi.org/10.1016/j.ijcip.2017.10.005 +Gianmarco Baldini,Regulated applications for the road transportation infrastructure: The case study of the smart tachograph in the European Union.,2018,21,IJCIP,,db/journals/ijcip/ijcip21.html#BaldiniSCM18,https://doi.org/10.1016/j.ijcip.2018.02.001 +Marco Castrucci,Design and implementation of a mediation system enabling secure communication among Critical Infrastructures.,2012,5,IJCIP,2,db/journals/ijcip/ijcip5.html#CastrucciNCAKAHSSC12,https://doi.org/10.1016/j.ijcip.2012.04.001 +Marc R. Fialkoff,Using geographic information science to evaluate legal restrictions on freight transportation routing in disruptive scenarios.,2017,17,IJCIP,,db/journals/ijcip/ijcip17.html#FialkoffOPT17,https://doi.org/10.1016/j.ijcip.2016.12.001 +Claudio Urrea,Implementation of error detection and correction in the Modbus-RTU serial protocol.,2016,15,IJCIP,,db/journals/ijcip/ijcip15.html#UrreaMK16,https://doi.org/10.1016/j.ijcip.2016.07.001 +Niv Goldenberg,Accurate modeling of Modbus/TCP for intrusion detection in SCADA systems.,2013,6,IJCIP,2,db/journals/ijcip/ijcip6.html#GoldenbergW13,https://doi.org/10.1016/j.ijcip.2013.05.001 +Alessandro Armando,Security considerations related to the use of mobile devices in the operation of critical infrastructures.,2014,7,IJCIP,4,db/journals/ijcip/ijcip7.html#ArmandoMV14,https://doi.org/10.1016/j.ijcip.2014.10.002 +Sujeet Shenoi,Editorial.,2016,15,IJCIP,,db/journals/ijcip/ijcip15.html#Shenoi16c,https://doi.org/10.1016/j.ijcip.2016.10.002 +Charlotte Brown,Measuring the organizational resilience of critical infrastructure providers: A New Zealand case study.,2017,18,IJCIP,,db/journals/ijcip/ijcip18.html#BrownSV17,https://doi.org/10.1016/j.ijcip.2017.05.002 +Abhishek Narain Singh,Identifying critical infrastructure sectors and their dependencies: An Indian scenario.,2014,7,IJCIP,2,db/journals/ijcip/ijcip7.html#SinghGO14,https://doi.org/10.1016/j.ijcip.2014.04.003 +George Stergiopoulos,Risk mitigation strategies for critical infrastructures based on graph centrality analysis.,2015,10,IJCIP,,db/journals/ijcip/ijcip10.html#StergiopoulosKT15,https://doi.org/10.1016/j.ijcip.2015.05.003 +Zachry Basnight,Firmware modification attacks on programmable logic controllers.,2013,6,IJCIP,2,db/journals/ijcip/ijcip6.html#BasnightBLD13,https://doi.org/10.1016/j.ijcip.2013.04.004 +Kenneth G. Crowther,Decentralized risk management for strategic preparedness of critical infrastructure through decomposition of the inoperability input-output model.,2008,1,IJCIP,,db/journals/ijcip/ijcip1.html#Crowther08,https://doi.org/10.1016/j.ijcip.2008.08.009 +Mason Rice,An analysis of the legality of government-mandated computer inoculations.,2010,3,IJCIP,1,db/journals/ijcip/ijcip3.html#RiceBMS10,https://doi.org/10.1016/j.ijcip.2010.02.002 +H. A. M. (Eric) Luiijf,Smart grids: And the bad news is?,2017,18,IJCIP,,db/journals/ijcip/ijcip18.html#Luiijf17,https://doi.org/10.1016/j.ijcip.2017.07.003 +Marjorie Windelberg,Objectives for managing cyber supply chain risk.,2016,12,IJCIP,,db/journals/ijcip/ijcip12.html#Windelberg16,https://doi.org/10.1016/j.ijcip.2015.11.003 +Zhili Zhang,A quantitative approach for assessing the critical nodal and linear elements of a railway infrastructure.,2015,8,IJCIP,,db/journals/ijcip/ijcip8.html#ZhangLL15,https://doi.org/10.1016/j.ijcip.2014.11.001 +Sujeet Shenoi,Editorial.,2017,17,IJCIP,,db/journals/ijcip/ijcip17.html#Shenoi17a,https://doi.org/10.1016/j.ijcip.2017.05.001 +Luca Faramondi,Finding critical nodes in infrastructure networks.,2018,20,IJCIP,,db/journals/ijcip/ijcip20.html#FaramondiSPPO18,https://doi.org/10.1016/j.ijcip.2017.11.004 +Theo van Ruijven,Multidisciplinary coordination of on-scene command teams in virtual emergency exercises.,2015,9,IJCIP,,db/journals/ijcip/ijcip9.html#RuijvenMB15,https://doi.org/10.1016/j.ijcip.2015.02.005 +Annarita Giani,Phasor measurement unit selection for unobservable electric power data integrity attack detection.,2014,7,IJCIP,3,db/journals/ijcip/ijcip7.html#GianiBP14,https://doi.org/10.1016/j.ijcip.2014.06.001 +Carl Schuett,An evaluation of modification attacks on programmable logic controllers.,2014,7,IJCIP,1,db/journals/ijcip/ijcip7.html#SchuettBD14,https://doi.org/10.1016/j.ijcip.2014.01.004 +Tyler Moore,The dangers of cyber security folk wisdom.,2016,12,IJCIP,,db/journals/ijcip/ijcip12.html#Moore16,https://doi.org/10.1016/j.ijcip.2015.11.001 +Yu-Lun Huang,Understanding the physical and economic consequences of attacks on control systems.,2009,2,IJCIP,3,db/journals/ijcip/ijcip2.html#HuangCALTS09,https://doi.org/10.1016/j.ijcip.2009.06.001 +Hoda Jannati,An improved authentication protocol for distributed mobile cloud computing services.,2017,19,IJCIP,,db/journals/ijcip/ijcip19.html#JannatiB17,https://doi.org/10.1016/j.ijcip.2017.10.003 +Samuel J. Stone,Radio-frequency-based anomaly detection for programmable logic controllers in the critical infrastructure.,2012,5,IJCIP,2,db/journals/ijcip/ijcip5.html#StoneT12,https://doi.org/10.1016/j.ijcip.2012.05.001 +Daniel Arce,WikiLeaks and the risks to critical foreign dependencies.,2015,11,IJCIP,,db/journals/ijcip/ijcip11.html#Arce15,https://doi.org/10.1016/j.ijcip.2015.07.004 +Sujeet Shenoi,Editorial.,2012,5,IJCIP,1,db/journals/ijcip/ijcip5.html#Shenoi12,https://doi.org/10.1016/j.ijcip.2012.02.003 +Sujeet Shenoi,Editorial.,2014,7,IJCIP,4,db/journals/ijcip/ijcip7.html#Shenoi14c,https://doi.org/10.1016/j.ijcip.2014.10.004 +Chris Bronk,Imagining the limits of complexity in computerized critical infrastructure.,2016,15,IJCIP,,db/journals/ijcip/ijcip15.html#Bronk16,https://doi.org/10.1016/j.ijcip.2016.08.001 +Donald McCallie,Security analysis of the ADS-B implementation in the next generation air transportation system.,2011,4,IJCIP,2,db/journals/ijcip/ijcip4.html#McCallieBM11,https://doi.org/10.1016/j.ijcip.2011.06.001 +Robert A. Miller,Cyber war realities - What lies ahead.,2012,5,IJCIP,2,db/journals/ijcip/ijcip5.html#Miller12,https://doi.org/10.1016/j.ijcip.2011.08.003 +Austen D. Givens,Realizing the promise of public-private partnerships in U.S. critical infrastructure protection.,2013,6,IJCIP,1,db/journals/ijcip/ijcip6.html#GivensB13,https://doi.org/10.1016/j.ijcip.2013.02.002 +Gabriele Oliva,Agent-based input-output interdependency model.,2010,3,IJCIP,2,db/journals/ijcip/ijcip3.html#OlivaPS10,https://doi.org/10.1016/j.ijcip.2010.05.001 +Marina Krotofil,Vulnerabilities of cyber-physical systems to stale data - Determining the optimal time to launch attacks.,2014,7,IJCIP,4,db/journals/ijcip/ijcip7.html#KrotofilCLG14,https://doi.org/10.1016/j.ijcip.2014.10.003 +Kyle Siler-Evans,Analysis of pipeline accidents in the United States from 1968 to 2009.,2014,7,IJCIP,4,db/journals/ijcip/ijcip7.html#Siler-EvansHSLT14,https://doi.org/10.1016/j.ijcip.2014.09.002 +Kendal Smith,Designing flexible curricula to enhance critical infrastructure security and resilience.,2014,7,IJCIP,1,db/journals/ijcip/ijcip7.html#Smith14,https://doi.org/10.1016/j.ijcip.2014.01.002 +Ra'ed M. Jaradat,Fragility of oil as a critical infrastructure problem.,2014,7,IJCIP,2,db/journals/ijcip/ijcip7.html#JaradatK14,https://doi.org/10.1016/j.ijcip.2014.04.005 +Sujeet Shenoi,Editorial.,2015,9,IJCIP,,db/journals/ijcip/ijcip9.html#Shenoi15a,https://doi.org/10.1016/j.ijcip.2015.02.004 +Qin-Ying Sun,Designing an emergency continuity plan for a megacity government: A conceptual framework for coping with natural catastrophes.,2016,13,IJCIP,,db/journals/ijcip/ijcip13.html#SunLY16,https://doi.org/10.1016/j.ijcip.2016.03.001 +Daniel J. Ryan,Regulating the safety and security of the critical information commons.,2015,10,IJCIP,,db/journals/ijcip/ijcip10.html#Ryan15,https://doi.org/10.1016/j.ijcip.2015.04.004 +Cesario Di Sarno,A novel security information and event management system for enhancing cyber security in a hydroelectric dam.,2016,13,IJCIP,,db/journals/ijcip/ijcip13.html#SarnoGMV16,https://doi.org/10.1016/j.ijcip.2016.03.002 +Richard Piggin,Are industrial control systems ready for the cloud?,2015,9,IJCIP,,db/journals/ijcip/ijcip9.html#Piggin15,https://doi.org/10.1016/j.ijcip.2014.12.005 +Roberto Setola,Critical infrastructure dependency assessment using the input-output inoperability model.,2009,2,IJCIP,4,db/journals/ijcip/ijcip2.html#SetolaPS09,https://doi.org/10.1016/j.ijcip.2009.09.002 +Leon Strous,Editorial.,2008,1,IJCIP,,db/journals/ijcip/ijcip1.html#StrousR08,https://doi.org/10.1016/j.ijcip.2008.11.002 +Sujeet Shenoi,Editorial.,2016,12,IJCIP,,db/journals/ijcip/ijcip12.html#Shenoi16,https://doi.org/10.1016/j.ijcip.2016.01.001 +Florian Kauer,A dual-radio approach for reliable emergency signaling in critical infrastructure assets with large wireless networks.,2018,21,IJCIP,,db/journals/ijcip/ijcip21.html#KauerKT18,https://doi.org/10.1016/j.ijcip.2018.02.002 +Sujeet Shenoi,Editorial.,2011,4,IJCIP,2,db/journals/ijcip/ijcip4.html#Shenoi11a,https://doi.org/10.1016/j.ijcip.2011.08.001 +Sujeet Shenoi,Editorial.,2014,7,IJCIP,3,db/journals/ijcip/ijcip7.html#Shenoi14b,https://doi.org/10.1016/j.ijcip.2014.07.004 +Ludovic Piètre-Cambacédès,"The SEMA referential framework: Avoiding ambiguities in the terms ""security"" and ""safety"".",2010,3,IJCIP,2,db/journals/ijcip/ijcip3.html#Pietre-CambacedesC10,https://doi.org/10.1016/j.ijcip.2010.06.003 +Tarek Cherifi,A practical implementation of unconditional security for the IEC 60780-5-101 SCADA protocol.,2018,20,IJCIP,,db/journals/ijcip/ijcip20.html#CherifiH18,https://doi.org/10.1016/j.ijcip.2017.12.001 +Jeffrey L. Hieb,A security-hardened appliance for implementing authentication and access control in SCADA infrastructures with legacy field devices.,2013,6,IJCIP,1,db/journals/ijcip/ijcip6.html#HiebSG13,https://doi.org/10.1016/j.ijcip.2013.01.001 +Finn Olav Sveen,Blind information security strategy.,2009,2,IJCIP,3,db/journals/ijcip/ijcip2.html#SveenTS09,https://doi.org/10.1016/j.ijcip.2009.07.003 +Andrew Chaves,Improving the cyber resilience of industrial control systems.,2017,17,IJCIP,,db/journals/ijcip/ijcip17.html#ChavesRDP17,https://doi.org/10.1016/j.ijcip.2017.03.005 +Cristina Alcaraz,Critical infrastructure protection: Requirements and challenges for the 21st century.,2015,8,IJCIP,,db/journals/ijcip/ijcip8.html#AlcarazZ15,https://doi.org/10.1016/j.ijcip.2014.12.002 +Sujeet Shenoi,Editorial.,2016,13,IJCIP,,db/journals/ijcip/ijcip13.html#Shenoi16a,https://doi.org/10.1016/j.ijcip.2016.04.002 +Jason Reeves,Intrusion detection for resource-constrained embedded control systems in the power grid.,2012,5,IJCIP,2,db/journals/ijcip/ijcip5.html#ReevesRLBS12,https://doi.org/10.1016/j.ijcip.2012.02.002 +Henri Bouma,Integrated roadmap for the rapid finding and tracking of people at large airports.,2016,12,IJCIP,,db/journals/ijcip/ijcip12.html#BoumaRBJH16,https://doi.org/10.1016/j.ijcip.2015.11.002 +Sujeet Shenoi,Editorial.,2014,7,IJCIP,2,db/journals/ijcip/ijcip7.html#Shenoi14a,https://doi.org/10.1016/j.ijcip.2014.04.006 +Pramode Verma,George Orwell's Nineteen Eighty-Four - A retrospective and prospective twenty-five years later.,2009,2,IJCIP,3,db/journals/ijcip/ijcip2.html#Verma09,https://doi.org/10.1016/j.ijcip.2009.08.003 +Stephen Dunlap,Using timing-based side channels for anomaly detection in industrial control systems.,2016,15,IJCIP,,db/journals/ijcip/ijcip15.html#DunlapBLRM16,https://doi.org/10.1016/j.ijcip.2016.07.003 +Polinpapilinho F. Katina,Interdependency-induced risk with applications to healthcare.,2014,7,IJCIP,1,db/journals/ijcip/ijcip7.html#KatinaPBH14,https://doi.org/10.1016/j.ijcip.2014.01.005 +Mark Hagerott,Stuxnet and the vital role of critical infrastructure operators and engineers.,2014,7,IJCIP,4,db/journals/ijcip/ijcip7.html#Hagerott14,https://doi.org/10.1016/j.ijcip.2014.09.001 +Leon Strous,IJCIP Editorial June 2018.,2018,21,IJCIP,,db/journals/ijcip/ijcip21.html#Strous18,https://doi.org/10.1016/j.ijcip.2018.05.003 +Igor Nai Fovino,An experimental investigation of malware attacks on SCADA systems.,2009,2,IJCIP,4,db/journals/ijcip/ijcip2.html#FovinoCMT09,https://doi.org/10.1016/j.ijcip.2009.10.001 +Sujeet Shenoi,Editorial.,2017,16,IJCIP,,db/journals/ijcip/ijcip16.html#Shenoi17,https://doi.org/10.1016/j.ijcip.2017.02.001 +Maria Bartnes Line,Current practices and challenges in industrial control organizations regarding information security incident management - Does size matter? Information security incident management in large and small industrial control organizations.,2016,12,IJCIP,,db/journals/ijcip/ijcip12.html#LineTJ16,https://doi.org/10.1016/j.ijcip.2015.12.003 +Samuel J. Stone,Detecting anomalous programmable logic controller behavior using RF-based Hilbert transform features and a correlation-based verification process.,2015,9,IJCIP,,db/journals/ijcip/ijcip9.html#StoneTB15,https://doi.org/10.1016/j.ijcip.2015.02.001 +Sujeet Shenoi,Editorial.,2009,2,IJCIP,4,db/journals/ijcip/ijcip2.html#Shenoi09b,https://doi.org/10.1016/j.ijcip.2009.10.003 +Sujeet Shenoi,Editorial.,2009,2,IJCIP,3,db/journals/ijcip/ijcip2.html#Shenoi09a,https://doi.org/10.1016/j.ijcip.2009.08.004 +Robert A. Miller,Cyber war and the dangers of preemption.,2011,4,IJCIP,1,db/journals/ijcip/ijcip4.html#Miller11,https://doi.org/10.1016/j.ijcip.2011.01.001 +Athol Yates,A framework for studying mortality arising from critical infrastructure loss.,2014,7,IJCIP,2,db/journals/ijcip/ijcip7.html#Yates14,https://doi.org/10.1016/j.ijcip.2014.04.002 +Luigi Coppolino,Exposing vulnerabilities in electric power grids: An experimental approach.,2014,7,IJCIP,1,db/journals/ijcip/ijcip7.html#CoppolinoDR14,https://doi.org/10.1016/j.ijcip.2014.01.003 +Roland Bodenheim,Evaluation of the ability of the Shodan search engine to identify Internet-facing industrial control devices.,2014,7,IJCIP,2,db/journals/ijcip/ijcip7.html#BodenheimBDM14,https://doi.org/10.1016/j.ijcip.2014.03.001 +Hamed Okhravi,Application of trusted network technology to industrial control networks.,2009,2,IJCIP,3,db/journals/ijcip/ijcip2.html#OkhraviN09,https://doi.org/10.1016/j.ijcip.2009.07.001 +Sujeet Shenoi,Editorial.,2017,18,IJCIP,,db/journals/ijcip/ijcip18.html#Shenoi17b,https://doi.org/10.1016/j.ijcip.2017.08.001 +Carol J. Romanowski,Regional response to large-scale emergency events: Building on historical data.,2015,11,IJCIP,,db/journals/ijcip/ijcip11.html#RomanowskiRSMSA15,https://doi.org/10.1016/j.ijcip.2015.07.003 +David Rehak,Quantitative evaluation of the synergistic effects of failures in a critical infrastructure system.,2016,14,IJCIP,,db/journals/ijcip/ijcip14.html#RehakMHB16,https://doi.org/10.1016/j.ijcip.2016.06.002 +Paul Vincent Craven,Modeling the NAJPTC network using NS-2.,2008,1,IJCIP,,db/journals/ijcip/ijcip1.html#CravenO08,https://doi.org/10.1016/j.ijcip.2008.08.002 +Sujeet Shenoi,Editorial.,2018,20,IJCIP,,db/journals/ijcip/ijcip20.html#Shenoi18,https://doi.org/10.1016/j.ijcip.2018.02.004 +Janne Merete Hagen,Cyber security - The Norwegian way.,2016,14,IJCIP,,db/journals/ijcip/ijcip14.html#Hagen16,https://doi.org/10.1016/j.ijcip.2016.05.002 +Necibe Tuncer,Effect of air travel on the spread of an avian influenza pandemic to the United States.,2014,7,IJCIP,1,db/journals/ijcip/ijcip7.html#TuncerL14,https://doi.org/10.1016/j.ijcip.2014.02.001 +Pramode Verma,Unconditional security through quantum uncertainty.,2017,16,IJCIP,,db/journals/ijcip/ijcip16.html#Verma17,https://doi.org/10.1016/j.ijcip.2016.09.001 +Sujeet Shenoi,Editorial.,2015,10,IJCIP,,db/journals/ijcip/ijcip10.html#Shenoi15b,https://doi.org/10.1016/j.ijcip.2015.07.001 +Mason Rice,A signaling framework to deter aggression in cyberspace.,2011,4,IJCIP,2,db/journals/ijcip/ijcip4.html#RiceBS11,https://doi.org/10.1016/j.ijcip.2011.03.003 +Erik Jenelius,Critical infrastructure protection under imperfect attacker perception.,2010,3,IJCIP,1,db/journals/ijcip/ijcip3.html#JeneliusWH10,https://doi.org/10.1016/j.ijcip.2009.10.002 +Sujeet Shenoi,Editorial.,2010,3,IJCIP,1,db/journals/ijcip/ijcip3.html#Shenoi10,https://doi.org/10.1016/j.ijcip.2010.03.002 +Muhammad Nomani Kabir,A connection probability model for communications networks under regional failures.,2018,20,IJCIP,,db/journals/ijcip/ijcip20.html#KabirRAAB18,https://doi.org/10.1016/j.ijcip.2017.11.002 +Mark Yampolskiy,A language for describing attacks on cyber-physical systems.,2015,8,IJCIP,,db/journals/ijcip/ijcip8.html#YampolskiyHKXS15,https://doi.org/10.1016/j.ijcip.2014.09.003 +Artemis Psaltoglou,Enhanced connectivity index - A new measure for identifying critical points in urban public transportation networks.,2018,21,IJCIP,,db/journals/ijcip/ijcip21.html#PsaltoglouC18,https://doi.org/10.1016/j.ijcip.2018.02.003 +Vicki Johansson,Policy networks - A threat to procedural and expert-based decision making and the quality of public risk decisions?,2015,9,IJCIP,,db/journals/ijcip/ijcip9.html#Johansson15,https://doi.org/10.1016/j.ijcip.2015.02.003 +Anita Kumari,Infrastructure financing and development: A bibliometric review.,2017,16,IJCIP,,db/journals/ijcip/ijcip16.html#KumariS17,https://doi.org/10.1016/j.ijcip.2016.11.005 +Samir Puuska,Nationwide critical infrastructure monitoring using a common operating picture framework.,2018,20,IJCIP,,db/journals/ijcip/ijcip20.html#PuuskaRTLKOV18,https://doi.org/10.1016/j.ijcip.2017.11.005 +Florian Adamsky,Integrated protection of industrial control systems from cyber-attacks: the ATENA approach.,2018,21,IJCIP,,db/journals/ijcip/ijcip21.html#AdamskyABCCCGFG18,https://doi.org/10.1016/j.ijcip.2018.04.004 +Adam Hahn,A multi-layered and kill-chain based security analysis framework for cyber-physical systems.,2015,11,IJCIP,,db/journals/ijcip/ijcip11.html#HahnTLC15,https://doi.org/10.1016/j.ijcip.2015.08.003 +Béla Genge,A framework for designing resilient distributed intrusion detection systems for critical infrastructures.,2016,15,IJCIP,,db/journals/ijcip/ijcip15.html#GengeHK16,https://doi.org/10.1016/j.ijcip.2016.06.003 +Fred Cohen,What makes critical infrastructures Critical?,2010,3,IJCIP,2,db/journals/ijcip/ijcip3.html#Cohen10,https://doi.org/10.1016/j.ijcip.2010.06.002 +Julian L. Rrushi,An exploration of defensive deception in industrial communication networks.,2011,4,IJCIP,2,db/journals/ijcip/ijcip4.html#Rrushi11,https://doi.org/10.1016/j.ijcip.2011.06.002 +Dan Assaf,Models of critical information infrastructure protection.,2008,1,IJCIP,,db/journals/ijcip/ijcip1.html#Assaf08,https://doi.org/10.1016/j.ijcip.2008.08.004 +Hassan Fareed M. Lahza,Applying domain-specific knowledge to construct features for detecting distributed denial-of-service attacks on the GOOSE and MMS protocols.,2018,20,IJCIP,,db/journals/ijcip/ijcip20.html#LahzaRF18,https://doi.org/10.1016/j.ijcip.2017.12.002 +Sujeet Shenoi,Editorial.,2015,8,IJCIP,,db/journals/ijcip/ijcip8.html#Shenoi15,https://doi.org/10.1016/j.ijcip.2014.12.003 +Mark Yampolskiy,Using 3D printers as weapons.,2016,14,IJCIP,,db/journals/ijcip/ijcip14.html#YampolskiySKOSY16,https://doi.org/10.1016/j.ijcip.2015.12.004 +Sujeet Shenoi,Editorial.,2011,4,IJCIP,1,db/journals/ijcip/ijcip4.html#Shenoi11,https://doi.org/10.1016/j.ijcip.2011.03.004 +Ginger Armbruster,Are we prepared for the economic risk resulting from telecom hotel disruptions?,2012,5,IJCIP,2,db/journals/ijcip/ijcip5.html#ArmbrusterEW12,https://doi.org/10.1016/j.ijcip.2012.05.003 +Neil Robinson,Where policy and preferences diverge.,2010,3,IJCIP,1,db/journals/ijcip/ijcip3.html#Robinson10,https://doi.org/10.1016/j.ijcip.2010.02.003 +Ryan Farley,Exploiting VoIP softphone vulnerabilities to disable host computers: Attacks and mitigation.,2014,7,IJCIP,3,db/journals/ijcip/ijcip7.html#FarleyW14,https://doi.org/10.1016/j.ijcip.2014.07.001 +Michael Spainhower,Security analysis of RSVP-TE signaling in MPLS networks.,2008,1,IJCIP,,db/journals/ijcip/ijcip1.html#SpainhowerBGS08,https://doi.org/10.1016/j.ijcip.2008.08.005 +William R. Mahoney,An integrated framework for control system simulation and regulatory compliance monitoring.,2011,4,IJCIP,1,db/journals/ijcip/ijcip4.html#MahoneyG11,https://doi.org/10.1016/j.ijcip.2011.03.002 +Mason Rice,May the US government monitor private critical infrastructure assets to combat foreign cyberspace threats?,2011,4,IJCIP,1,db/journals/ijcip/ijcip4.html#RiceMS11,https://doi.org/10.1016/j.ijcip.2011.02.001 +Bilge Karabacak,A vulnerability-driven cyber security maturity model for measuring national critical infrastructure protection preparedness.,2016,15,IJCIP,,db/journals/ijcip/ijcip15.html#KarabacakYB16,https://doi.org/10.1016/j.ijcip.2016.10.001 +Myriam Dunn Cavelty,Public-Private Partnerships are no silver bullet: An expanded governance model for Critical Infrastructure Protection.,2009,2,IJCIP,4,db/journals/ijcip/ijcip2.html#CaveltyS09,https://doi.org/10.1016/j.ijcip.2009.08.006 +Richard White,A computational asset vulnerability model for the strategic protection of the critical infrastructure.,2014,7,IJCIP,3,db/journals/ijcip/ijcip7.html#WhiteBC14,https://doi.org/10.1016/j.ijcip.2014.06.002 +Stephen M. Papa,Securing wastewater facilities from accidental and intentional harm: A cost-benefit analysis.,2013,6,IJCIP,2,db/journals/ijcip/ijcip6.html#PapaCM13,https://doi.org/10.1016/j.ijcip.2013.05.002 +Ada S. Peter,Cyber resilience preparedness of Africa's top-12 emerging economies.,2017,17,IJCIP,,db/journals/ijcip/ijcip17.html#Peter17,https://doi.org/10.1016/j.ijcip.2017.03.002 +David Ward,Trust building and the European Reference Network for Critical Infrastructure Protection community.,2014,7,IJCIP,3,db/journals/ijcip/ijcip7.html#WardKLC14,https://doi.org/10.1016/j.ijcip.2014.07.003 +Sanaz Rahimi,Analysis of the security of VPN configurations in industrial control environments.,2012,5,IJCIP,1,db/journals/ijcip/ijcip5.html#RahimiZ12,https://doi.org/10.1016/j.ijcip.2012.01.001 +Thomas E. Palmatier,Building secure critical infrastructures.,2013,6,IJCIP,2,db/journals/ijcip/ijcip6.html#Palmatier13,https://doi.org/10.1016/j.ijcip.2013.04.003 +David Romero-Faz,Risk assessment of critical infrastructures - New parameters for commercial ports.,2017,18,IJCIP,,db/journals/ijcip/ijcip18.html#Romero-FazC17,https://doi.org/10.1016/j.ijcip.2017.07.001 +Sujeet Shenoi,Editorial.,2012,5,IJCIP,2,db/journals/ijcip/ijcip5.html#Shenoi12a,https://doi.org/10.1016/j.ijcip.2012.06.001 +Béla Genge,Experimental assessment of network design approaches for protecting industrial control systems.,2015,11,IJCIP,,db/journals/ijcip/ijcip11.html#GengeGH15,https://doi.org/10.1016/j.ijcip.2015.07.005 +Busyairah Syd Ali,System specifications for developing an Automatic Dependent Surveillance-Broadcast (ADS-B) monitoring system.,2016,15,IJCIP,,db/journals/ijcip/ijcip15.html#Ali16,https://doi.org/10.1016/j.ijcip.2016.06.004 +Peter Huitsing,Attack taxonomies for the Modbus protocols.,2008,1,IJCIP,,db/journals/ijcip/ijcip1.html#HuitsingCPS08,https://doi.org/10.1016/j.ijcip.2008.08.003 +George Stergiopoulos,Time-based critical infrastructure dependency analysis for large-scale and cross-sectoral failures.,2016,12,IJCIP,,db/journals/ijcip/ijcip12.html#StergiopoulosKT16,https://doi.org/10.1016/j.ijcip.2015.12.002 +Ebisa Negeri,Designing reliable and resilient smart low-voltage grids.,2015,9,IJCIP,,db/journals/ijcip/ijcip9.html#NegeriKB15,https://doi.org/10.1016/j.ijcip.2014.12.006 +Debin Liu,Game-theoretic modeling and analysis of insider threats.,2008,1,IJCIP,,db/journals/ijcip/ijcip1.html#LiuWC08,https://doi.org/10.1016/j.ijcip.2008.08.001 +Ruijin Zhu,A methodology for determining the image base of ARM-based industrial control system firmware.,2017,16,IJCIP,,db/journals/ijcip/ijcip16.html#ZhuZMZT17,https://doi.org/10.1016/j.ijcip.2016.12.002 +Shih-Hsu Wang,An analytical model for benchmarking the development of national infrastructure items against those in similar countries.,2016,13,IJCIP,,db/journals/ijcip/ijcip13.html#Wang16,https://doi.org/10.1016/j.ijcip.2016.02.002 +Michael Winn,Constructing cost-effective and targetable industrial control system honeypots for production networks.,2015,10,IJCIP,,db/journals/ijcip/ijcip10.html#WinnRDLM15,https://doi.org/10.1016/j.ijcip.2015.04.002 +Béla Genge,A system dynamics approach for assessing the impact of cyber attacks on critical infrastructures.,2015,10,IJCIP,,db/journals/ijcip/ijcip10.html#GengeKH15,https://doi.org/10.1016/j.ijcip.2015.04.001 +William Arthur Conklin,Control systems personnel are from Mars* IT personnel are from Venus.,2011,4,IJCIP,2,db/journals/ijcip/ijcip4.html#Conklin11,https://doi.org/10.1016/j.ijcip.2011.06.004 +Daniel J. Ryan,Engineering sustainable critical infrastructures.,2017,17,IJCIP,,db/journals/ijcip/ijcip17.html#Ryan17,https://doi.org/10.1016/j.ijcip.2016.11.003 +Luis Martín-Liras,Comparative analysis of the security of configuration protocols for industrial control devices.,2017,19,IJCIP,,db/journals/ijcip/ijcip19.html#Martin-LirasPFA17,https://doi.org/10.1016/j.ijcip.2017.10.001 +Jill Rowland,Whither cyberpower?,2014,7,IJCIP,2,db/journals/ijcip/ijcip7.html#RowlandRS14a,https://doi.org/10.1016/j.ijcip.2014.04.001 +Eric A. M. Luiijf,Are we in love with cyber insecurity?,2014,7,IJCIP,3,db/journals/ijcip/ijcip7.html#Luiijf14,https://doi.org/10.1016/j.ijcip.2014.07.002 +Adam M. Lewis,European Reference Network for Critical Infrastructure Protection.,2013,6,IJCIP,1,db/journals/ijcip/ijcip6.html#LewisWCK13,https://doi.org/10.1016/j.ijcip.2013.02.004 +Sujeet Shenoi,Editorial.,2013,6,IJCIP,2,db/journals/ijcip/ijcip6.html#Shenoi13a,https://doi.org/10.1016/j.ijcip.2013.05.003 +Derek Young,A framework for incorporating insurance in critical infrastructure cyber risk strategies.,2016,14,IJCIP,,db/journals/ijcip/ijcip14.html#YoungLRRM16,https://doi.org/10.1016/j.ijcip.2016.04.001 +Pravin Chopade,New centrality measures for assessing smart grid vulnerabilities and predicting brownouts and blackouts.,2016,12,IJCIP,,db/journals/ijcip/ijcip12.html#ChopadeB16,https://doi.org/10.1016/j.ijcip.2015.12.001 +Antonia Rana,Implementation of security and privacy in ePassports and the extended access control infrastructure.,2014,7,IJCIP,4,db/journals/ijcip/ijcip7.html#RanaS14,https://doi.org/10.1016/j.ijcip.2014.10.001 +Aditya K. Sood,Crimeware-as-a-service - A survey of commoditized crimeware in the underground market.,2013,6,IJCIP,1,db/journals/ijcip/ijcip6.html#SoodE13,https://doi.org/10.1016/j.ijcip.2013.01.002 +Janne Merete Hagen,Building resilience against cyber threats in the energy sector.,2018,20,IJCIP,,db/journals/ijcip/ijcip20.html#Hagen18,https://doi.org/10.1016/j.ijcip.2017.11.003 +William Knowles,A survey of cyber security management in industrial control systems.,2015,9,IJCIP,,db/journals/ijcip/ijcip9.html#KnowlesPHDJ15,https://doi.org/10.1016/j.ijcip.2015.02.002 +Sujeet Shenoi,Editorial.,2008,1,IJCIP,,db/journals/ijcip/ijcip1.html#Shenoi08,https://doi.org/10.1016/j.ijcip.2008.11.001 +Margaret Schedel,Simon Emmerson: Living Electronic Music.,2008,32,Computer Music Journal,4,db/journals/comj/comj32.html#Schedel08,https://doi.org/10.1162/comj.2008.32.4.83 +Michael Boyd,Matthew Ostrowski: vertebra.,2009,33,Computer Music Journal,3,db/journals/comj/comj33.html#Boyd09,https://doi.org/10.1162/comj.2009.33.3.68 +Robert Tubb,A Zoomable Mapping of a Musical Parameter Space Using Hilbert Curves.,2014,38,Computer Music Journal,3,db/journals/comj/comj38.html#TubbD14,https://doi.org/10.1162/COMJ_a_00254 +Stefan Bilbao,Direct Simulation of Reed Wind Instruments.,2009,33,Computer Music Journal,4,db/journals/comj/comj33.html#Bilbao09,https://doi.org/10.1162/comj.2009.33.4.43 +Christopher Riggs,Reed Evan Rosenberg: At the End of an Endless Stream.,2012,36,Computer Music Journal,2,db/journals/comj/comj36.html#Riggs12,https://doi.org/10.1162/COMJ_r_00123 +Yiorgos Vassilandonakis,An Interview with Trevor Wishart.,2009,33,Computer Music Journal,2,db/journals/comj/comj33.html#Vassilandonakis09,https://doi.org/10.1162/comj.2009.33.2.8 +Michael Gogins,Global Guaranty Orchestra: Weltmeister.,2000,24,Computer Music Journal,4,db/journals/comj/comj24.html#Gogins00c,https://doi.org/10.1162/comj.2000.24.4.71a +Jon Appleton,My Friend Max.,2009,33,Computer Music Journal,3,db/journals/comj/comj33.html#Appleton09,https://doi.org/10.1162/comj.2009.33.3.23 +Ellen Waterman,Open Ears Festival of Music and Sound.,1999,23,Computer Music Journal,1,db/journals/comj/comj23.html#WatermanH99,https://doi.org/10.1162/comj.1999.23.1.79 +Steven M. Miller,David Mahler: Hearing Voices.,2001,25,Computer Music Journal,4,db/journals/comj/comj25.html#Miller01,https://doi.org/10.1162/comj.2001.25.4.98 +Matthew Dotson,Seventeenth Florida Electroacoustic Music Festival.,2008,32,Computer Music Journal,4,db/journals/comj/comj32.html#Dotson08,https://doi.org/10.1162/comj.2008.32.4.79 +John Chowning,Wave Studies: Sailing an Ocean with Max and Marjorie Mathews.,2009,33,Computer Music Journal,3,db/journals/comj/comj33.html#Chowning09,https://doi.org/10.1162/comj.2009.33.3.35 +Patricia L. Dirks,Hildegard Westerkamp: Transformations.,1999,23,Computer Music Journal,1,db/journals/comj/comj23.html#Dirks99a,https://doi.org/10.1162/comj.1999.23.1.91 +Patricia L. Dirks,Hans Tutschku: Moment.,2001,25,Computer Music Journal,4,db/journals/comj/comj25.html#Dirks01a,https://doi.org/10.1162/comj.2001.25.4.100 +Till Bovermann,Computation as Material in Live Coding.,2014,38,Computer Music Journal,1,db/journals/comj/comj38.html#BovermannG14,https://doi.org/10.1162/COMJ_a_00228 +Eduardo Reck Miranda,Computer Music Meets Unconventional Computing: Towards Sound Synthesis with In Vitro Neuronal Networks.,2009,33,Computer Music Journal,1,db/journals/comj/comj33.html#MirandaBGU09,https://doi.org/10.1162/comj.2009.33.1.9 +Giuseppe Torre,The Hands: The Making of a Digital Musical Instrument.,2016,40,Computer Music Journal,2,db/journals/comj/comj40.html#TorreAB16,https://doi.org/10.1162/COMJ_a_00356 +Margaret Schedel,Curtis Roads: Microsound.,2003,27,Computer Music Journal,1,db/journals/comj/comj27.html#Schedel03,https://doi.org/10.1162/comj.2003.27.1.88 +Denis Baggi,First International Conference on Musical Application Using XML.,2003,27,Computer Music Journal,2,db/journals/comj/comj27.html#Baggi03,https://doi.org/10.1162/comj.2003.27.2.105 +Seth Aaron Rozanoff,David Rothenberg and Korhan Erel: Berlin Bülbül.,2016,40,Computer Music Journal,3,db/journals/comj/comj40.html#Rozanoff16a,https://doi.org/10.1162/COMJ_r_00377 +Ross Feller,Drew Krause: Powder.,2009,33,Computer Music Journal,2,db/journals/comj/comj33.html#Feller09a,https://doi.org/10.1162/comj.2009.33.2.105 +Brian Evans,Foundations of a Visual Music.,2005,29,Computer Music Journal,4,db/journals/comj/comj29.html#Evans05,https://doi.org/10.1162/014892605775179955 +Tony S. Verma,Extending Spectral Modeling Synthesis with Transient Modeling Synthesis.,2000,24,Computer Music Journal,2,db/journals/comj/comj24.html#VermaM00,https://doi.org/10.1162/014892600559317 +Ross Feller,Elizabeth Hoffman: Intérieurs Harmoniques.,2013,37,Computer Music Journal,2,db/journals/comj/comj37.html#Feller13a,https://doi.org/10.1162/COMJ_r_00170 +Mary Simoni,Tara Rodgers: Pink Noises: Women on Electronic Music and Sound.,2011,35,Computer Music Journal,3,db/journals/comj/comj35.html#Simoni11,https://doi.org/10.1162/COMJ_r_00074 +Charles Roberts,Designing Musical Instruments for the Browser.,2015,39,Computer Music Journal,1,db/journals/comj/comj39.html#RobertsWWK15,https://doi.org/10.1162/COMJ_a_00283 +Iroro Orife,Tae Hong Park: Introduction to Digital Signal Processing: Computer Musically Speaking.,2009,33,Computer Music Journal,1,db/journals/comj/comj33.html#Orife09,https://doi.org/10.1162/comj.2009.33.1.74 +Larry Austin,Sound Diffusion in Composition and Performance: An Interview with Denis Smalley.,2000,24,Computer Music Journal,2,db/journals/comj/comj24.html#Austin00a,https://doi.org/10.1162/014892600559272 +Roberto Morales-Manzanares,SICIB: An Interactive Music Composition System Using Body Movements.,2001,25,Computer Music Journal,2,db/journals/comj/comj25.html#Morales-Manzanares01,https://doi.org/10.1162/014892601750302561 +Andrea Cremaschi,Parrrole: Berio's Words on Music Technology.,2004,28,Computer Music Journal,1,db/journals/comj/comj28.html#CremaschiG04,https://doi.org/10.1162/014892604322970625 +Daniel Hosken,Howard W. Ferstler: The Digital Audio Music List: A Critical Guide to Listening.,2000,24,Computer Music Journal,3,db/journals/comj/comj24.html#Hosken00,https://doi.org/10.1162/comj.2000.24.3.76 +Kjetil Falkenberg Hansen,The Skipproof Virtual Turntable for High-Level Control of Scratching.,2010,34,Computer Music Journal,2,db/journals/comj/comj34.html#HansenB10,https://doi.org/10.1162/comj.2010.34.2.39 +Tae Hong Park,Perry R. Cook: Real Sound Synthesis for Interactive Applications.,2003,27,Computer Music Journal,3,db/journals/comj/comj27.html#Park03,https://doi.org/10.1162/014892603322482556 +Freya Bailes,When Is Noise Speech? A Survey in Sonic Ambiguity.,2009,33,Computer Music Journal,1,db/journals/comj/comj33.html#BailesD09,https://doi.org/10.1162/comj.2009.33.1.57 +Patricia L. Dirks,Various: Harangue II.,2004,28,Computer Music Journal,4,db/journals/comj/comj28.html#Dirks04a,https://doi.org/10.1162/comj.2004.28.4.98 +George Tzanetakis,A Scalable Peer-to-Peer System for Music Information Retrieval.,2004,28,Computer Music Journal,2,db/journals/comj/comj28.html#TzanetakisGS04,https://doi.org/10.1162/014892604323112220 +Alfio Fazio,The PRIE MIDI Environment.,2000,24,Computer Music Journal,3,db/journals/comj/comj24.html#Fazio00,https://doi.org/10.1162/014892600559416 +Christopher Jette,Decompartmental: Conversing with Clarence Barlow.,2009,33,Computer Music Journal,4,db/journals/comj/comj33.html#Jette09,https://doi.org/10.1162/comj.2009.33.4.10 +Roger B. Dannenberg,Active Scores: Representation and Synchronization in Human-Computer Performance of Popular Music.,2014,38,Computer Music Journal,2,db/journals/comj/comj38.html#DannenbergGLX14a,https://doi.org/10.1162/COMJ_a_00239 +Robert M. Keller,Automating the Explanation of Jazz Chord Progressions Using Idiomatic Analysis.,2013,37,Computer Music Journal,4,db/journals/comj/comj37.html#KellerSTME13,https://doi.org/10.1162/COMJ_a_00201 +Frode Holm,NAMM 2009.,2009,33,Computer Music Journal,3,db/journals/comj/comj33.html#Holm09,https://doi.org/10.1162/comj.2009.33.3.61 +Trevor Wishart,Letter.,1999,23,Computer Music Journal,3,db/journals/comj/comj23.html#Wishart99,https://doi.org/10.1162/014892699559823 +David Cope,A Musical Learning Algorithm.,2004,28,Computer Music Journal,3,db/journals/comj/comj28.html#Cope04,https://doi.org/10.1162/0148926041790685 +Mary Simoni,Barry Truax: Acoustic Communication and Compositional Techniques.,2010,34,Computer Music Journal,2,db/journals/comj/comj34.html#SimoniF10,https://doi.org/10.1162/comj.2010.34.2.96 +Bob L. Sturm,Alexander Lerch: An Introduction to Audio Content Analysis: Applications in Signal Processing and Music Informatics.,2013,37,Computer Music Journal,4,db/journals/comj/comj37.html#Sturm13,https://doi.org/10.1162/COMJ_r_00208 +Gretchen C. Foley,Computer-Assisted Analysis of Music in George Perle's System of Twelve-Tone Tonality.,2006,30,Computer Music Journal,3,db/journals/comj/comj30.html#FoleyC06,https://doi.org/10.1162/comj.2006.30.3.53 +Bill Sack,DSP: Digital Sound Processing.,2003,27,Computer Music Journal,1,db/journals/comj/comj27.html#Sack03,https://doi.org/10.1162/comj.2003.27.1.92 +Hank Heijink,Make Me a Match: An Evaluation of Different Approaches to Score - Performance Matching.,2000,24,Computer Music Journal,1,db/journals/comj/comj24.html#HeijinkDHW00,https://doi.org/10.1162/014892600559173 +Andrew J. Milne,Computational Creation and Morphing of Multilevel Rhythms by Control of Evenness.,2016,40,Computer Music Journal,1,db/journals/comj/comj40.html#MilneD16,https://doi.org/10.1162/COMJ_a_00343 +Ross Feller,Zenial: Minotaur.,2017,41,Computer Music Journal,2,db/journals/comj/comj41.html#Feller17a,https://doi.org/10.1162/COMJ_r_00415 +Steven R. Livingstone,Changing Musical Emotion: A Computational Rule System for Modifying Score and Performance.,2010,34,Computer Music Journal,1,db/journals/comj/comj34.html#LivingstoneMBT10,https://doi.org/10.1162/comj.2010.34.1.41 +Eric S. Strother,Sonic Implants Amps + Pickups SoundFonts.,2003,27,Computer Music Journal,1,db/journals/comj/comj27.html#Strother03,https://doi.org/10.1162/comj.2003.27.1.105a +Juniana Grimm,Waves Gold Native Bundle Version 3.0.,2001,25,Computer Music Journal,4,db/journals/comj/comj25.html#GrimmSH01,https://doi.org/10.1162/comj.2001.25.4.102 +Andrew Kaiser,William Kleinsasser: Available Instruments.,2003,27,Computer Music Journal,4,db/journals/comj/comj27.html#Kaiser03a,https://doi.org/10.1162/comj.2003.27.4.100 +Brigitte Robindoré,Forays into Uncharted Territories: An Interview with Curtis Roads.,2005,29,Computer Music Journal,1,db/journals/comj/comj29.html#Robindore05,https://doi.org/10.1162/comj.2005.29.1.11 +Georg Hajdu,Disposable Music.,2016,40,Computer Music Journal,1,db/journals/comj/comj40.html#Hajdu16,https://doi.org/10.1162/COMJ_a_00342 +R. Benjamin Shapiro,Tangible Distributed Computer Music for Youth.,2017,41,Computer Music Journal,2,db/journals/comj/comj41.html#ShapiroKAJPF17,https://doi.org/10.1162/COMJ_a_00420 +Horacio Vaggione,Some Ontological Remarks about Music Composition Processes.,2001,25,Computer Music Journal,1,db/journals/comj/comj25.html#Vaggione01,https://doi.org/10.1162/014892601300126115 +Amy K. Hoover,Functional Scaffolding for Composing Additional Musical Voices.,2014,38,Computer Music Journal,4,db/journals/comj/comj38.html#HooverSS14,https://doi.org/10.1162/COMJ_a_00269 +Ronald B. Smith,An Interview with Tristan Murail.,2000,24,Computer Music Journal,1,db/journals/comj/comj24.html#Smith00,https://doi.org/10.1162/014892600559146 +Ross Feller,Matthew Burtner: Noise Plays Burtner.,2014,38,Computer Music Journal,3,db/journals/comj/comj38.html#Feller14b,https://doi.org/10.1162/COMJ_r_00258 +Elainie Lillios,Barry Schrader: Fallen Sparrow* Barry Schrader: Monkey King.,2010,34,Computer Music Journal,1,db/journals/comj/comj34.html#Lillios10,https://doi.org/10.1162/comj.2010.34.1.112 +David Bessell,The Instrumental Remodeling of Elements of Musical Electronics in Moon Veiled by Clouds.,2005,29,Computer Music Journal,1,db/journals/comj/comj29.html#Bessell05,https://doi.org/10.1162/comj.2005.29.1.21 +Francesco Giomi,Live Electronics in Luciano Berio's Music.,2003,27,Computer Music Journal,2,db/journals/comj/comj27.html#GiomiMS03,https://doi.org/10.1162/014892603322022655 +Ge Wang 0002,Ocarina: Designing the iPhone's Magic Flute.,2014,38,Computer Music Journal,2,db/journals/comj/comj38.html#Wang14,https://doi.org/10.1162/COMJ_a_00236 +Don Damborg,GRM Tools.,2003,27,Computer Music Journal,4,db/journals/comj/comj27.html#DamborgH03,https://doi.org/10.1162/comj.2003.27.4.103 +Dan Overholt,A Multimodal System for Gesture Recognition in Interactive Music Performance.,2009,33,Computer Music Journal,4,db/journals/comj/comj33.html#OverholtTPBKSK09,https://doi.org/10.1162/comj.2009.33.4.69 +Ofer Dor,An Evaluation of Musical Score Characteristics for Automatic Classification of Composers.,2011,35,Computer Music Journal,3,db/journals/comj/comj35.html#DorR11,https://doi.org/10.1162/COMJ_a_00071 +Emmanuelle Loubet,International Computer Music Festival.,1999,23,Computer Music Journal,2,db/journals/comj/comj23.html#Loubet99,https://doi.org/10.1162/comj.1999.23.2.88 +Scott Smallwood,Composing for Laptop Orchestra.,2008,32,Computer Music Journal,1,db/journals/comj/comj32.html#SmallwoodTCW08,https://doi.org/10.1162/comj.2008.32.1.9 +Nico Schüler,Francisco Kröpfl: Música Electroacústica 1988-2000.,2003,27,Computer Music Journal,3,db/journals/comj/comj27.html#Schuler03a,https://doi.org/10.1162/comj.2003.27.3.101 +Jøran Rudi,Computer Music Video: A Composer's Perspective.,2005,29,Computer Music Journal,4,db/journals/comj/comj29.html#Rudi05,https://doi.org/10.1162/014892605775179937 +Kim S. Courchene,A Conversation with Beatriz Ferreyra.,2001,25,Computer Music Journal,3,db/journals/comj/comj25.html#Courchene01,https://doi.org/10.1162/014892601753189501 +Yiorgos Vassilandonakis,An Interview with Philippe Leroux.,2008,32,Computer Music Journal,3,db/journals/comj/comj32.html#Vassilandonakis08,https://doi.org/10.1162/comj.2008.32.3.11 +Felipe Otondo,Creating Sonic Spaces: An Interview with Natasha Barrett.,2007,31,Computer Music Journal,2,db/journals/comj/comj31.html#Otondo07,https://doi.org/10.1162/comj.2007.31.2.10 +Michael Gogins,Douglas A. Lyon and Hayagriva V. Rao: Java Digital Signal Processing.,1999,23,Computer Music Journal,2,db/journals/comj/comj23.html#Gogins99,https://doi.org/10.1162/comj.1999.23.2.96 +Miroslav Zivanovic,Adaptive Threshold Determination for Spectral Peak Classification.,2008,32,Computer Music Journal,2,db/journals/comj/comj32.html#ZivanovicRR08,https://doi.org/10.1162/comj.2008.32.2.57 +Barry Moon,Electrotap Teabox Sensor Interface.,2005,29,Computer Music Journal,3,db/journals/comj/comj29.html#Moon05,https://doi.org/10.1162/comj.2005.29.3.104 +Heinrich Taube,Automatic Tonal Analysis: Toward the Implementation of a Music Theory Workbench.,1999,23,Computer Music Journal,4,db/journals/comj/comj23.html#Taube99,https://doi.org/10.1162/014892699559977 +Wei Li 0012,An Audio Watermarking Technique That Is Robust Against Random Cropping.,2003,27,Computer Music Journal,4,db/journals/comj/comj27.html#0012X03,https://doi.org/10.1162/014892603322730505 +Anna Rubin,Ned Bouhalassa: Aérosol.,2000,24,Computer Music Journal,3,db/journals/comj/comj24.html#Rubin00a,https://doi.org/10.1162/comj.2000.24.3.90 +Silvia Matheus,KISS 2010: Kyma International Sound Symposium.,2011,35,Computer Music Journal,2,db/journals/comj/comj35.html#Matheus11,https://doi.org/10.1162/COMJ_r_00059 +Maxwell J. Wells,Third International Conference on Music Information Retrieval.,2003,27,Computer Music Journal,2,db/journals/comj/comj27.html#Wells03,https://doi.org/10.1162/comj.2003.27.2.108 +Carlos Palombini,The Fifth Brazilian Symposium on Computer Music: Super and Parallel Computing Applied to Music.,1999,23,Computer Music Journal,1,db/journals/comj/comj23.html#Palombini99,https://doi.org/10.1162/comj.1999.23.1.82 +Nico Schüler,Daniel R. Raichel: The Science and Applications of Acoustics.,2001,25,Computer Music Journal,4,db/journals/comj/comj25.html#Schuler01a,https://doi.org/10.1162/comj.2001.25.4.92 +Kate Sicchio,Hacking Choreography: Dance and Live Coding.,2014,38,Computer Music Journal,1,db/journals/comj/comj38.html#Sicchio14,https://doi.org/10.1162/COMJ_a_00218 +Koray Tahiroglu,Facilitating the Musician's Engagement with New Musical Interfaces: Counteractions in Music Performance.,2017,41,Computer Music Journal,2,db/journals/comj/comj41.html#TahirogluVK17,https://doi.org/10.1162/COMJ_a_00413 +Gascia Ouzounian,An Interview with Paul DeMarinis.,2010,34,Computer Music Journal,4,db/journals/comj/comj34.html#Ouzounian10,https://doi.org/10.1162/COMJ_a_00022 +Christopher Haworth,Sound Synthesis Procedures as Texts: An Ontological Politics in Electroacoustic and Computer Music.,2015,39,Computer Music Journal,1,db/journals/comj/comj39.html#Haworth15,https://doi.org/10.1162/COMJ_a_00284 +Oliver Bown,Experiments in Modular Design for the Creative Composition of Live Algorithms.,2011,35,Computer Music Journal,3,db/journals/comj/comj35.html#Bown11,https://doi.org/10.1162/COMJ_a_00070 +Patricia L. Dirks,Mary Lee Roberts: Six Compositions.,2000,24,Computer Music Journal,3,db/journals/comj/comj24.html#Dirks00,https://doi.org/10.1162/comj.2000.24.3.87 +Heidi-Maria Lehtonen,Canceling and Selecting Partials from Musical Tones Using Fractional-Delay Filters.,2008,32,Computer Music Journal,2,db/journals/comj/comj32.html#LehtonenVL08,https://doi.org/10.1162/comj.2008.32.2.43 +Olivier Baudouin,A Reconstruction of Stria.,2007,31,Computer Music Journal,3,db/journals/comj/comj31.html#Baudouin07,https://doi.org/10.1162/comj.2007.31.3.75 +Roger B. Dannenberg,The MUSART Testbed for Query-by-Humming Evaluation.,2004,28,Computer Music Journal,2,db/journals/comj/comj28.html#DannenbergBTMHP04,https://doi.org/10.1162/014892604323112239 +Ross Feller,Bone: Uses Wrist Grab.,2005,29,Computer Music Journal,4,db/journals/comj/comj29.html#Feller05a,https://doi.org/10.1162/comj.2005.29.4.87 +Steven M. Miller,Robert Rowe: Machine Musicianship.,2003,27,Computer Music Journal,1,db/journals/comj/comj27.html#Miller03,https://doi.org/10.1162/comj.2003.27.1.89 +James Harley,softVNS 2 Real Time Video Processing and Tracking Software.,2005,29,Computer Music Journal,4,db/journals/comj/comj29.html#Harley05e,https://doi.org/10.1162/comj.2005.29.4.97 +Carlos Agón,OMChroma: Compositional Control of Sound Synthesis.,2011,35,Computer Music Journal,2,db/journals/comj/comj35.html#AgonBS11,https://doi.org/10.1162/COMJ_a_00057 +Elizabeth Hoffman,I-Tunes: Multiple Subjectivities and Narrative Method in Computer Music.,2012,36,Computer Music Journal,4,db/journals/comj/comj36.html#Hoffman12,https://doi.org/10.1162/COMJ_a_00152 +Luca Mion,Modeling Expression with Perceptual Audio Features to Enhance User Interaction.,2010,34,Computer Music Journal,1,db/journals/comj/comj34.html#MionDGR10,https://doi.org/10.1162/comj.2010.34.1.65 +James Harley,Various: Presence IIIVarious: DISContact! III.,2004,28,Computer Music Journal,4,db/journals/comj/comj28.html#Harley04d,https://doi.org/10.1162/comj.2004.28.4.100 +James Harley,Howard Sandroff: Tephillah* Pierre Boulez: Dialogue de l'ombre double* Rami Levin: A New Leaf.,2000,24,Computer Music Journal,4,db/journals/comj/comj24.html#Harley00c,https://doi.org/10.1162/comj.2000.24.4.76 +Victor Zappi,Extended Playing Techniques on an Augmented Virtual Percussion Instrument.,2018,42,Computer Music Journal,2,db/journals/comj/comj42.html#ZappiAF18,https://doi.org/10.1162/comj_a_00457 +James Harley,Editor's Notes.,2002,26,Computer Music Journal,1,db/journals/comj/comj26.html#Harley02,https://doi.org/10.1162/014892602753633470 +Alicia Lieu,Bill Purse: The Finale Primer: Mastering the Art of Music Notation with Finale 97.,1999,23,Computer Music Journal,2,db/journals/comj/comj23.html#Lieu99,https://doi.org/10.1162/comj.1999.23.2.99 +Dave Phillips,Heinrich K. Taube: Notes from the Metalevel: Introduction to Algorithmic Music Composition.,2005,29,Computer Music Journal,3,db/journals/comj/comj29.html#Phillips05,https://doi.org/10.1162/comj.2005.29.3.91 +Stephen Travis Pope,The 1998 Home Theater and Specialty Audio Show (HiFi' 98).,1999,23,Computer Music Journal,1,db/journals/comj/comj23.html#PopeK99,https://doi.org/10.1162/014892699559562 +Nick Bailey,Perceptually Smooth Timbral Guides by State-Space Analysis of Phase-Vocoder Parameters.,2000,24,Computer Music Journal,1,db/journals/comj/comj24.html#BaileyC00,https://doi.org/10.1162/014892600559164 +Cory Kasprzyk,SEAMUS 2012: The National Conference of the Society for Electro-Acoustic Music in the United States.,2012,36,Computer Music Journal,4,db/journals/comj/comj36.html#Kasprzyk12,https://doi.org/10.1162/COMJ_r_00144 +Victor Lazzarini,New Perspectives on Distortion Synthesis for Virtual Analog Oscillators.,2010,34,Computer Music Journal,1,db/journals/comj/comj34.html#LazzariniT10,https://doi.org/10.1162/comj.2010.34.1.28 +Ilias Anagnostopoulos,Qubais Reed Ghazala: Circuit-Bending: Build Your Own Alien Instruments.,2008,32,Computer Music Journal,4,db/journals/comj/comj32.html#Anagnostopoulos08,https://doi.org/10.1162/comj.2008.32.4.84 +D. Gareth Loy,Mars in 3D.,2013,37,Computer Music Journal,3,db/journals/comj/comj37.html#Loy13b,https://doi.org/10.1162/COMJ_r_00188 +Ge Wang 0002,The Laptop Orchestra as Classroom.,2008,32,Computer Music Journal,1,db/journals/comj/comj32.html#WangTSC08,https://doi.org/10.1162/comj.2008.32.1.26 +Andriy Biletskyy,Doctor Webern: A Visual Environment for Computer-Assisted Composition Based on Linear Thematism.,2000,24,Computer Music Journal,3,db/journals/comj/comj24.html#Biletskyy00,https://doi.org/10.1162/014892600559425 +Simon Emmerson,"From Dance! to ""Dance"": Distance and Digits.",2001,25,Computer Music Journal,1,db/journals/comj/comj25.html#Emmerson01,https://doi.org/10.1162/014892601300126070 +Andrew P. McPherson,The Problem of the Second Performer: Building a Community Around an Augmented Piano.,2012,36,Computer Music Journal,4,db/journals/comj/comj36.html#McPhersonK12,https://doi.org/10.1162/COMJ_a_00149 +Curtis Roads,Nicolas Isherwood: The Techniques of Singing.,2014,38,Computer Music Journal,4,db/journals/comj/comj38.html#Roads14,https://doi.org/10.1162/COMJ_r_00271 +Esteban Maestre,Expressive Concatenative Synthesis by Reusing Samples from Real Performance Recordings.,2009,33,Computer Music Journal,4,db/journals/comj/comj33.html#MaestreRKS09,https://doi.org/10.1162/comj.2009.33.4.23 +Marc Chemillier,Fourth Annual Mathematical Diderot Forum: Mathematics and Music.,2000,24,Computer Music Journal,3,db/journals/comj/comj24.html#Chemillier00,https://doi.org/10.1162/comj.2000.24.3.70 +Michael Gogins,Nick Peck: Positive Signal Flow.,1999,23,Computer Music Journal,2,db/journals/comj/comj23.html#Gogins99a,https://doi.org/10.1162/comj.1999.23.2.107 +Jordan B. L. Smith,The Third International Conference on Mathematics and Computation in Music.,2011,35,Computer Music Journal,4,db/journals/comj/comj35.html#SmithS11,https://doi.org/10.1162/COMJ_r_00093 +Xavier Rodet,Nonlinear Dynamics in Physical Models: Simple Feedback-Loop Systems and Properties.,1999,23,Computer Music Journal,3,db/journals/comj/comj23.html#RodetV99,https://doi.org/10.1162/014892699559869 +James Harley,Jan Boerman: The Complete Tape Music Dick Raaijmakers: The Complete Tape Music.,2000,24,Computer Music Journal,4,db/journals/comj/comj24.html#Harley00d,https://doi.org/10.1162/comj.2000.24.4.79 +Michael Fingerhut,Letters.,2003,27,Computer Music Journal,2,db/journals/comj/comj27.html#Fingerhut03,https://doi.org/10.1162/014892603322022619 +Valerio Velardo,Symbolic Melodic Similarity: State of the Art and Future Challenges.,2016,40,Computer Music Journal,2,db/journals/comj/comj40.html#VelardoVJ16,https://doi.org/10.1162/COMJ_a_00359 +Laurie Radford,SOUNDS!,2000,24,Computer Music Journal,4,db/journals/comj/comj24.html#Radford00,https://doi.org/10.1162/comj.2000.24.4.74 +Keeril Makan,An Interview With Edmund Campion.,2004,28,Computer Music Journal,4,db/journals/comj/comj28.html#Makan04,https://doi.org/10.1162/0148926042728430 +Ge Wang 0002,Erratum: The Laptop Orchestra as Classroom.,2008,32,Computer Music Journal,2,db/journals/comj/comj32.html#WangTSC08a,https://doi.org/10.1162/comj.2008.32.2.4a +Lonce Wyse,The Viability of the Web Browser as a Computer Music Platform.,2013,37,Computer Music Journal,4,db/journals/comj/comj37.html#WyseS13,https://doi.org/10.1162/COMJ_a_00213 +Srikanth Cherla,Automatic Phrase Continuation from Guitar and Bass Guitar Melodies.,2013,37,Computer Music Journal,3,db/journals/comj/comj37.html#CherlaPM13,https://doi.org/10.1162/COMJ_a_00184 +Ian Whalley,BitHeadz Unity DS-1 Software Sampler and Retro AS-1 Software Synthesizer.,2003,27,Computer Music Journal,1,db/journals/comj/comj27.html#Whalley03a,https://doi.org/10.1162/comj.2003.27.1.103 +Laurie Radford,Esther Lamneck: Tárogató: A Folk Instrument With a Contemporary Sound.,2005,29,Computer Music Journal,4,db/journals/comj/comj29.html#Radford05,https://doi.org/10.1162/comj.2005.29.4.84 +Axel Röbel,Synthesizing Natural Sounds Using Dynamic Models of Sound Attractors.,2001,25,Computer Music Journal,2,db/journals/comj/comj25.html#Robel01,https://doi.org/10.1162/014892601750302589 +Stan Link,The Work of Reproduction in the Mechanical Aging of an Art: Listening to Noise.,2001,25,Computer Music Journal,1,db/journals/comj/comj25.html#Link01,https://doi.org/10.1162/014892601300126098 +Steve Benford,Performing Musical Interaction: Lessons from the Study of Extended Theatrical Performances.,2010,34,Computer Music Journal,4,db/journals/comj/comj34.html#Benford10,https://doi.org/10.1162/COMJ_a_00025 +Jim Purbrick,Automatic Synthesizer Articulation.,2000,24,Computer Music Journal,1,db/journals/comj/comj24.html#Purbrick00,https://doi.org/10.1162/014892600559155 +Eduardo Reck Miranda,On Harnessing the Electroencephalogram for the Musical Braincap.,2003,27,Computer Music Journal,2,db/journals/comj/comj27.html#MirandaSKD03,https://doi.org/10.1162/014892603322022682 +Robert J. Gluck,The Columbia - Princeton Electronic Music Center: Educating International Composers.,2007,31,Computer Music Journal,2,db/journals/comj/comj31.html#Gluck07,https://doi.org/10.1162/comj.2007.31.2.20 +Ken Déguernel,Probabilistic Factor Oracles for Multidimensional Machine Improvisation.,2018,42,Computer Music Journal,2,db/journals/comj/comj42.html#DeguernelVA18,https://doi.org/10.1162/comj_a_00460 +Ross Feller,Erdem Helvacioglu: Resonating Universes.,2012,36,Computer Music Journal,3,db/journals/comj/comj36.html#Feller12b,https://doi.org/10.1162/COMJ_r_00130 +Antonio Camurri,EyesWeb: Toward Gesture and Affect Recognition in Interactive Dance and Music Systems.,2000,24,Computer Music Journal,1,db/journals/comj/comj24.html#CamurriHRRSTV00,https://doi.org/10.1162/014892600559182 +Robert S. Thompson,Eric Lyon: Designing Audio Objects for Max/MSP and Pd.,2014,38,Computer Music Journal,2,db/journals/comj/comj38.html#Thompson14,https://doi.org/10.1162/COMJ_r_00243 +Eric D. Lyon,Compositional and Performance Mapping in Computer Chamber Music: A Case Study.,2014,38,Computer Music Journal,3,db/journals/comj/comj38.html#LyonKO14,https://doi.org/10.1162/COMJ_a_00257 +Tim Perkis,Digital Music under the Stars.,1999,23,Computer Music Journal,1,db/journals/comj/comj23.html#Perkis99,https://doi.org/10.1162/comj.1999.23.1.78 +Matthew McCabe,Dan Trueman: Machine Language.,2009,33,Computer Music Journal,4,db/journals/comj/comj33.html#McCabe09,https://doi.org/10.1162/comj.2009.33.4.90 +Kevin Dahan,Surface Tensions: Dynamics of Stria.,2007,31,Computer Music Journal,3,db/journals/comj/comj31.html#Dahan07,https://doi.org/10.1162/comj.2007.31.3.65 +Sandy Nordahl,Deborah Thurlow: I Am.,2003,27,Computer Music Journal,3,db/journals/comj/comj27.html#Nordahl03,https://doi.org/10.1162/comj.2003.27.3.105 +Margaret Schedel,Chris Salter: Entangled: Technology and the Transformation of Performance.,2011,35,Computer Music Journal,3,db/journals/comj/comj35.html#Schedel11a,https://doi.org/10.1162/COMJ_r_00073 +Sølvi Ystad,A Virtually Real Flute.,2001,25,Computer Music Journal,2,db/journals/comj/comj25.html#YstadV01,https://doi.org/10.1162/014892601750302552 +Victor Lazzarini,Erratum: New Digital Musical Instruments: Control and Interaction Beyond the Keyboard.,2008,32,Computer Music Journal,2,db/journals/comj/comj32.html#Lazzarini08,https://doi.org/10.1162/comj.2008.32.2.4b +Mika Kuuskankare,Expressive Notation Package.,2006,30,Computer Music Journal,4,db/journals/comj/comj30.html#KuuskankareL06,https://doi.org/10.1162/comj.2006.30.4.67 +Jeremy C. Baguyos,Seoul International Computer Music Festival 2008.,2009,33,Computer Music Journal,2,db/journals/comj/comj33.html#Baguyos09,https://doi.org/10.1162/comj.2009.33.2.101 +Arthur Wooten,David M. Howard and James Angus: Acoustics and Psychoacoustics.,1999,23,Computer Music Journal,2,db/journals/comj/comj23.html#Wooten99,https://doi.org/10.1162/comj.1999.23.2.99a +Larry Austin,Sound Diffusion in Composition and Performance Practice II: An Interview with Ambrose Field.,2001,25,Computer Music Journal,4,db/journals/comj/comj25.html#Austin01,https://doi.org/10.1162/01489260152815260 +Vesa Norilo,Kronos: A Declarative Metaprogramming Language for Digital Signal Processing.,2015,39,Computer Music Journal,4,db/journals/comj/comj39.html#Norilo15,https://doi.org/10.1162/COMJ_a_00330 +Ali Momeni,Dynamic Independent Mapping Layers for Concurrent Control of Audio and Video Synthesis.,2006,30,Computer Music Journal,1,db/journals/comj/comj30.html#MomeniH06,https://doi.org/10.1162/comj.2006.30.1.49 +Patricia L. Dirks,Frances White: Centre Bridge: Electroacoustic Works.,2009,33,Computer Music Journal,3,db/journals/comj/comj33.html#Dirks09,https://doi.org/10.1162/comj.2009.33.3.69 +Matthew Duignan,Abstraction and Activity in Computer-Mediated Music Production.,2010,34,Computer Music Journal,4,db/journals/comj/comj34.html#DuignanNB10,https://doi.org/10.1162/COMJ_a_00023 +Amalia de Götzen,Rondà da Passeggio.,2009,33,Computer Music Journal,1,db/journals/comj/comj33.html#Gotzen09,https://doi.org/10.1162/comj.2009.33.1.68 +Anthony Prechtl,A MIDI Sequencer That Widens Access to the Compositional Possibilities of Novel Tunings.,2012,36,Computer Music Journal,1,db/journals/comj/comj36.html#PrechtlMHLS12,https://doi.org/10.1162/COMJ_a_00104 +Ricardo Dal Farra,CD Program Notes.,1999,23,Computer Music Journal,4,db/journals/comj/comj23.html#Farra99,https://doi.org/10.1162/014892699559922 +Paul Doornbusch,Computer Sound Synthesis in 1951: The Music of CSIRAC.,2004,28,Computer Music Journal,1,db/journals/comj/comj28.html#Doornbusch04,https://doi.org/10.1162/014892604322970616 +Hiroki Nishino,The Microsound Synthesis Framework in the LC Computer Music Programming Language.,2015,39,Computer Music Journal,4,db/journals/comj/comj39.html#NishinoON15,https://doi.org/10.1162/COMJ_a_00331 +Steffen Brandorff,A Tutorial on Design Patterns for Music Notation Software.,2005,29,Computer Music Journal,3,db/journals/comj/comj29.html#BrandorffLC05,https://doi.org/10.1162/0148926054798179 +Aaron Einbond,Mapping the Klangdom Live: Cartographies for Piano with Two Performers and Electronics.,2017,41,Computer Music Journal,1,db/journals/comj/comj41.html#Einbond17,https://doi.org/10.1162/COMJ_a_00397 +Dalia El-Shimy,User-Driven Techniques for the Design and Evaluation of New Musical Interfaces.,2016,40,Computer Music Journal,2,db/journals/comj/comj40.html#El-ShimyC16,https://doi.org/10.1162/COMJ_a_00357 +Natasha Barrett,Little Animals: Compositional Structuring Processes.,1999,23,Computer Music Journal,2,db/journals/comj/comj23.html#Barrett99,https://doi.org/10.1162/014892699559724 +Fernando Benadon,An Interview with Martin Matalon.,2005,29,Computer Music Journal,2,db/journals/comj/comj29.html#Benadon05,https://doi.org/10.1162/0148926054094387 +Christopher Raphael,A Classifier-Based Approach to Score-Guided Source Separation of Musical Audio.,2008,32,Computer Music Journal,1,db/journals/comj/comj32.html#Raphael08,https://doi.org/10.1162/comj.2008.32.1.51 +Bret Battey,Bézier Spline Modeling of Pitch-Continuous Melodic Expression and Ornamentation.,2004,28,Computer Music Journal,4,db/journals/comj/comj28.html#Battey04,https://doi.org/10.1162/0148926042728377 +D. Gareth Loy,Life and Times of the Samson Box.,2013,37,Computer Music Journal,3,db/journals/comj/comj37.html#Loy13,https://doi.org/10.1162/COMJ_a_00192 +Andrew Lambert,The Second International Workshop on Cross-Disciplinary and Multicultural Perspectives on Musical Rhythm and Improvisation.,2015,39,Computer Music Journal,2,db/journals/comj/comj39.html#LambertK15,https://doi.org/10.1162/COMJ_r_00301 +Nico Schüler,Zack Browning: Breakpoint Screamer* Eun-Bae Kim: Sounds of Pusan.,2000,24,Computer Music Journal,4,db/journals/comj/comj24.html#Schuler00,https://doi.org/10.1162/comj.2000.24.4.75 +Dimitri Voudouris,EMusic Indaba 2010: Home Made - Hand Made.,2011,35,Computer Music Journal,3,db/journals/comj/comj35.html#Voudouris11,https://doi.org/10.1162/COMJ_r_00072 +Matthew McCabe,Andrew R. Brown: Computers in Music Education: Amplifying Musicality.,2008,32,Computer Music Journal,3,db/journals/comj/comj32.html#McCabe08,https://doi.org/10.1162/comj.2008.32.3.105 +Nils Peters,Current Technologies and Compositional Practices for Spatialization: A Qualitative and Quantitative Analysis.,2011,35,Computer Music Journal,1,db/journals/comj/comj35.html#PetersMM11,https://doi.org/10.1162/COMJ_a_00037 +Caroline Park,Collaborative Resonances and Obstinate Interfaces: An Interview with Butch Rovan.,2016,40,Computer Music Journal,3,db/journals/comj/comj40.html#Park16,https://doi.org/10.1162/COMJ_a_00371 +Guillaume Boutard,Following Gesture Following: Grounding the Documentation of a Multi-Agent Music Creation Process.,2012,36,Computer Music Journal,4,db/journals/comj/comj36.html#BoutardG12,https://doi.org/10.1162/COMJ_a_00147 +Tae Hong Park,Sibelius 2 Notation Software.,2003,27,Computer Music Journal,3,db/journals/comj/comj27.html#Park03a,https://doi.org/10.1162/comj.2003.27.3.106 +Dimitrios Tzimeas,Dynamic Techniques for Genetic Algorithm-Based Music Systems.,2009,33,Computer Music Journal,3,db/journals/comj/comj33.html#TzimeasM09,https://doi.org/10.1162/comj.2009.33.3.45 +Mark Feldmeier,An Interactive Music Environment for Large Groups with Giveaway Wireless Motion Sensors.,2007,31,Computer Music Journal,1,db/journals/comj/comj31.html#FeldmeierP07,https://doi.org/10.1162/comj.2007.31.1.50 +James Forrest,Curtis Bahn: r!g.,2003,27,Computer Music Journal,3,db/journals/comj/comj27.html#Forrest03,https://doi.org/10.1162/comj.2003.27.3.97b +Christopher Raphael,Functional Harmonic Analysis Using Probabilistic Models.,2004,28,Computer Music Journal,3,db/journals/comj/comj28.html#RaphaelS04,https://doi.org/10.1162/0148926041790676 +Alexandre Bouënard,Virtual Gesture Control and Synthesis of Music Performances: Qualitative Evaluation of Synthesized Timpani Exercises.,2011,35,Computer Music Journal,3,db/journals/comj/comj35.html#BouenardWGM11,https://doi.org/10.1162/COMJ_a_00069 +Elizabeth Hinkle-Turner,Priscilla McLean: Cries and Echoes.,2011,35,Computer Music Journal,4,db/journals/comj/comj35.html#Hinkle-Turner11,https://doi.org/10.1162/COMJ_r_00095 +Martin Supper,A Few Remarks on Algorithmic Composition.,2001,25,Computer Music Journal,1,db/journals/comj/comj25.html#Supper01,https://doi.org/10.1162/014892601300126106 +Antti Jylhä,Design and Evaluation of Human-Computer Rhythmic Interaction in a Tutoring System.,2011,35,Computer Music Journal,2,db/journals/comj/comj35.html#JylhaEET11,https://doi.org/10.1162/COMJ_a_00055 +Paul Nauert,Division- and Addition-Based Models of Rhythm in a Computer-Assisted Composition System.,2007,31,Computer Music Journal,4,db/journals/comj/comj31.html#Nauert07,https://doi.org/10.1162/comj.2007.31.4.59 +Rodolphe Koehly,In-House Development of Paper Force Sensors for Musical Applications.,2014,38,Computer Music Journal,2,db/journals/comj/comj38.html#KoehlyWVC14,https://doi.org/10.1162/COMJ_a_00237 +Akira Maezawa,Automated Violin Fingering Transcription Through Analysis of an Audio Recording.,2012,36,Computer Music Journal,3,db/journals/comj/comj36.html#MaezawaIKOO12,https://doi.org/10.1162/COMJ_a_00129 +Joseph Thibodeau,Trumpet Augmentation and Technological Symbiosis.,2013,37,Computer Music Journal,3,db/journals/comj/comj37.html#ThibodeauW13,https://doi.org/10.1162/COMJ_a_00185 +Rodrigo F. Cádiz,A Fuzzy-Logic Mapper for Audiovisual Media.,2006,30,Computer Music Journal,1,db/journals/comj/comj30.html#Cadiz06,https://doi.org/10.1162/comj.2006.30.1.67 +KatieAnna Wolf,The Eleventh International Society for Music Information Retrieval Conference (ISMIR 2010).,2011,35,Computer Music Journal,2,db/journals/comj/comj35.html#Wolf11,https://doi.org/10.1162/COMJ_r_00058 +Tae Hong Park,Editor's Notes.,2009,33,Computer Music Journal,3,db/journals/comj/comj33.html#Park09,https://doi.org/10.1162/comj.2009.33.3.4 +Thor Magnusson,Designing Constraints: Composing and Performing with Digital Musical Systems.,2010,34,Computer Music Journal,4,db/journals/comj/comj34.html#Magnusson10,https://doi.org/10.1162/COMJ_a_00026 +Alexis Kirke,Wireless Interactive Sonification of Large Water Waves to Demonstrate the Facilities of a Large-Scale Research Wave Tank.,2015,39,Computer Music Journal,3,db/journals/comj/comj39.html#KirkeFM15,https://doi.org/10.1162/COMJ_a_00315 +Jeffrey Treviño,Zbigniew Karkowski/Atsuko Nojiri: Continuity.,2009,33,Computer Music Journal,2,db/journals/comj/comj33.html#Trevino09,https://doi.org/10.1162/comj.2009.33.2.107 +Allan J. Cronin,Paul Dolden: Who Has the Biggest Sound?,2015,39,Computer Music Journal,1,db/journals/comj/comj39.html#Cronin15,https://doi.org/10.1162/COMJ_r_00288 +Rosemary Mountain,From Wire to Computer: Francis Dhomont at 80.,2006,30,Computer Music Journal,3,db/journals/comj/comj30.html#Mountain06,https://doi.org/10.1162/comj.2006.30.3.10 +Joel Chadabe,Remarks on Computer Music Culture.,2000,24,Computer Music Journal,4,db/journals/comj/comj24.html#Chadabe00,https://doi.org/10.1162/014892600559470 +Seth Aaron Rozanoff,Masayoshi Fujita and Jan Jelinek: Schaum.,2016,40,Computer Music Journal,4,db/journals/comj/comj40.html#Rozanoff16b,https://doi.org/10.1162/COMJ_r_00386 +Ross Feller,Cathy van Eck: Between Air and Electricity: Microphones and Loudspeakers as Musical Instruments.,2017,41,Computer Music Journal,4,db/journals/comj/comj41.html#Feller17d,https://doi.org/10.1162/COMJ_r_00442 +Robert Hasegawa,James Tenney: From Scratch: Writings in Music Theory.,2016,40,Computer Music Journal,3,db/journals/comj/comj40.html#Hasegawa16,https://doi.org/10.1162/COMJ_r_00376 +Pieter-Jan Maes,"The ""One-Person Choir"": A Multidisciplinary Approach to the Development of an Embodied Human-Computer Interface.",2011,35,Computer Music Journal,2,db/journals/comj/comj35.html#MaesLKLD11,https://doi.org/10.1162/COMJ_a_00054 +L. Roy Hubble,Micromat SoundMaker with SoundMagic FX for Mac OS.,1999,23,Computer Music Journal,1,db/journals/comj/comj23.html#Hubble99,https://doi.org/10.1162/comj.1999.23.1.93 +J. Stephen Downie,The Scientific Evaluation of Music Information Retrieval Systems: Foundations and Future.,2004,28,Computer Music Journal,2,db/journals/comj/comj28.html#Downie04,https://doi.org/10.1162/014892604323112211 +Laurie Radford,Eric Chasalow: Left to His Own Devices.,2009,33,Computer Music Journal,4,db/journals/comj/comj33.html#Radford09,https://doi.org/10.1162/comj.2009.33.4.87 +Ryan Nikolaidis,Generative Musical Tension Modeling and Its Application to Dynamic Sonification.,2012,36,Computer Music Journal,1,db/journals/comj/comj36.html#NikolaidisWW12,https://doi.org/10.1162/COMJ_a_00105 +Steven Gelineck,A Practical Approach towards an Exploratory Framework for Physical Modeling.,2010,34,Computer Music Journal,2,db/journals/comj/comj34.html#GelineckS10,https://doi.org/10.1162/comj.2010.34.2.51 +David Temperley,An Evaluation System for Metrical Models.,2004,28,Computer Music Journal,3,db/journals/comj/comj28.html#Temperley04,https://doi.org/10.1162/0148926041790621 +Pietro Polotti,Fractal Additive Synthesis via Harmonic-Band Wavelets.,2001,25,Computer Music Journal,3,db/journals/comj/comj25.html#PolottiE01,https://doi.org/10.1162/014892601753189510 +Patricia L. Dirks,Natasha Barrett/Tanja Orning: DR.OX.,2010,34,Computer Music Journal,1,db/journals/comj/comj34.html#Dirks10a,https://doi.org/10.1162/comj.2010.34.1.116 +Margaret Cahill,CreativeSynth/Cycling '74: MODE Plug-Ins.,2005,29,Computer Music Journal,2,db/journals/comj/comj29.html#Cahill05a,https://doi.org/10.1162/comj.2005.29.2.99 +David Løberg Code,Groven.Max: An Adaptive Tuning System for MIDI Pianos.,2002,26,Computer Music Journal,2,db/journals/comj/comj26.html#Code02,https://doi.org/10.1162/014892602760137176 +Donald G. Dansereau,Predicting an Orchestral Conductor's Baton Movements Using Machine Learning.,2013,37,Computer Music Journal,2,db/journals/comj/comj37.html#DansereauBC13,https://doi.org/10.1162/COMJ_a_00173 +Kristine H. Burns,Uli Aumüller: My Cinema for the Ears: The Musique Concrète of Francis Dhomont and Paul Lansky.,2003,27,Computer Music Journal,2,db/journals/comj/comj27.html#BurnsL03,https://doi.org/10.1162/comj.2003.27.2.115 +Jon Gillick,Machine Learning of Jazz Grammars.,2010,34,Computer Music Journal,3,db/journals/comj/comj34.html#GillickTK10,https://doi.org/10.1162/COMJ_a_00006 +Patricia L. Dirks,Natasha Barrett: Trade Winds.,2010,34,Computer Music Journal,1,db/journals/comj/comj34.html#Dirks10,https://doi.org/10.1162/comj.2010.34.1.114 +Pierfrancesco Bellini,Assessing Optical Music Recognition Tools.,2007,31,Computer Music Journal,1,db/journals/comj/comj31.html#BelliniBN07,https://doi.org/10.1162/comj.2007.31.1.68 +Juan Pablo Cáceres,JackTrip/SoundWIRE Meets Server Farm.,2010,34,Computer Music Journal,3,db/journals/comj/comj34.html#CaceresC10,https://doi.org/10.1162/COMJ_a_00001 +Emilia Gómez,Towards Computer-Assisted Flamenco Transcription: An Experimental Comparison of Automatic Transcription Algorithms as Applied to A Cappella Singing.,2013,37,Computer Music Journal,2,db/journals/comj/comj37.html#GomezB13,https://doi.org/10.1162/COMJ_a_00180 +Steve Benner,Lawrence Casserley: The Edge of Chaos.,2004,28,Computer Music Journal,2,db/journals/comj/comj28.html#Benner04,https://doi.org/10.1162/comj.2004.28.2.92 +Charles Turner,Guerino Mazzola: Elemente der Musikinformatik: Ausgearbeitet von Roland Bärtschi unter Mitarbeit von Stefan Göller.,2008,32,Computer Music Journal,2,db/journals/comj/comj32.html#Turner08,https://doi.org/10.1162/comj.2008.32.2.80 +Baris Bozkurt,A System for Tuning Instruments Using Recorded Music Instead of Theory-Based Frequency Presets.,2012,36,Computer Music Journal,3,db/journals/comj/comj36.html#Bozkurt12,https://doi.org/10.1162/COMJ_a_00128 +Miroslav Spasov,Using Strange Attractors to Control Sound Processing in Live Electroacoustic Composition.,2015,39,Computer Music Journal,3,db/journals/comj/comj39.html#Spasov15,https://doi.org/10.1162/COMJ_a_00313 +James Harley,Trevor Pinch and Frank Trocco: Analog Days: The Invention and Impact of the Moog Synthesizer.,2005,29,Computer Music Journal,4,db/journals/comj/comj29.html#Harley05b,https://doi.org/10.1162/comj.2005.29.4.82 +Ketty Nez,An Interview with Hans Tutschku.,2003,27,Computer Music Journal,4,db/journals/comj/comj27.html#Nez03,https://doi.org/10.1162/014892603322730479 +Elisavet K. Stathopoulou,An Architect Draws Sound and Light: New Perspectives on Iannis Xenakis's Diatope and La Légende d'Eer (1978).,2017,41,Computer Music Journal,4,db/journals/comj/comj41.html#Stathopoulou17,https://doi.org/10.1162/comj_a_00437 +Michael Gogins,Michael Kallstrom: Stories.,2000,24,Computer Music Journal,3,db/journals/comj/comj24.html#Gogins00,https://doi.org/10.1162/comj.2000.24.3.91 +John Phillips,Mark Ballora: The Essentials of Music Technology.,2003,27,Computer Music Journal,4,db/journals/comj/comj27.html#Phillips03a,https://doi.org/10.1162/comj.2003.27.4.93 +Jaime Serquera,Histogram Mapping Synthesis: A Cellular Automata-Based Technique for Flexible Sound Design.,2014,38,Computer Music Journal,4,db/journals/comj/comj38.html#SerqueraM14,https://doi.org/10.1162/COMJ_a_00267 +James Harley,Sound in Space 2000 Symposium.,2000,24,Computer Music Journal,4,db/journals/comj/comj24.html#Harley00b,https://doi.org/10.1162/comj.2000.24.4.66 +Sinan Bökesoy,Stochos: Software for Real-Time Synthesis of Stochastic Music.,2003,27,Computer Music Journal,3,db/journals/comj/comj27.html#BokesoyP03,https://doi.org/10.1162/014892603322482510 +Steve Benner,Carya Amara: Vestigial Digital.,2003,27,Computer Music Journal,3,db/journals/comj/comj27.html#Benner03,https://doi.org/10.1162/comj.2003.27.3.97a +Ching-Hua Chuan,Generating and Evaluating Musical Harmonizations That Emulate Style.,2011,35,Computer Music Journal,4,db/journals/comj/comj35.html#ChuanC11,https://doi.org/10.1162/COMJ_a_00091 +Anders Friberg,Generating Musical Performances with Director Musices.,2000,24,Computer Music Journal,3,db/journals/comj/comj24.html#FribergCFS00,https://doi.org/10.1162/014892600559407 +Ross Feller,David A. Jaffe: Wildlife.,2012,36,Computer Music Journal,3,db/journals/comj/comj36.html#Feller12a,https://doi.org/10.1162/COMJ_r_00131 +Richard Karpen,An Interview with James Dashow.,2003,27,Computer Music Journal,2,db/journals/comj/comj27.html#Karpen03,https://doi.org/10.1162/014892603322022646 +Eric S. Strother,ChordWizard Chord Reference Software.,2003,27,Computer Music Journal,1,db/journals/comj/comj27.html#Strother03a,https://doi.org/10.1162/comj.2003.27.1.105b +Silvia Matheus,The Seventh KYMA International Sound Symposium (KISS).,2016,40,Computer Music Journal,1,db/journals/comj/comj40.html#Matheus16,https://doi.org/10.1162/COMJ_r_00345 +Nick Collins,klipp av: Live Algorithmic Splicing and Audiovisual Event Capture.,2006,30,Computer Music Journal,2,db/journals/comj/comj30.html#CollinsO06,https://doi.org/10.1162/comj.2006.30.2.8 +Paul Rhys,Smart Interfaces for Granular Synthesis of Sound by Fractal Organization.,2016,40,Computer Music Journal,3,db/journals/comj/comj40.html#Rhys16,https://doi.org/10.1162/COMJ_a_00374 +Alexander Refsum Jensenius,Performing the Electric Violin in a Sonic Space.,2012,36,Computer Music Journal,4,db/journals/comj/comj36.html#JenseniusJ12,https://doi.org/10.1162/COMJ_a_00148 +Eric S. Strother,DVD Creation/Duplication Software.,2005,29,Computer Music Journal,2,db/journals/comj/comj29.html#Strother05,https://doi.org/10.1162/comj.2005.29.2.103 +Vincenzo Lombardo,A Virtual-Reality Reconstruction of Poème électronique Based on Philological Research.,2009,33,Computer Music Journal,2,db/journals/comj/comj33.html#LombardoVFTWB09,https://doi.org/10.1162/comj.2009.33.2.24 +Jörg Langner,Visualizing Expressive Performance in Tempo - Loudness Space.,2003,27,Computer Music Journal,4,db/journals/comj/comj27.html#LangnerG03,https://doi.org/10.1162/014892603322730514 +Peter Hoffmann,The New GENDYN Program.,2000,24,Computer Music Journal,2,db/journals/comj/comj24.html#Hoffmann00,https://doi.org/10.1162/014892600559290 +Myriam Desainte-Catherine,Towards a Hybrid Temporal Paradigm for Musical Composition and Performance: The Case of Musical Interpretation.,2013,37,Computer Music Journal,2,db/journals/comj/comj37.html#Desainte-CatherineAA13,https://doi.org/10.1162/COMJ_a_00179 +James Harley,Hans Fjellestad: Moog.,2005,29,Computer Music Journal,4,db/journals/comj/comj29.html#Harley05c,https://doi.org/10.1162/comj.2005.29.4.94 +Christopher Ariza,The Xenakis Sieve as Object: A New Model and a Complete Implementation.,2005,29,Computer Music Journal,2,db/journals/comj/comj29.html#Ariza05,https://doi.org/10.1162/0148926054094396 +Natasha Barrett,A Musical Journey towards Permanent High-Density Loudspeaker Arrays.,2016,40,Computer Music Journal,4,db/journals/comj/comj40.html#Barrett16a,https://doi.org/10.1162/COMJ_a_00381 +Elainie Lillios,The SEAMUS National Conference 1998.,1999,23,Computer Music Journal,1,db/journals/comj/comj23.html#Lillios99,https://doi.org/10.1162/comj.1999.23.1.75 +Michael Boyd,Amnon Wolman: The Marilyn Series.,2010,34,Computer Music Journal,1,db/journals/comj/comj34.html#Boyd10,https://doi.org/10.1162/comj.2010.34.1.111 +Mikhail Gorman,A Camera-Based Music-Making Tool for Physical Rehabilitation.,2007,31,Computer Music Journal,2,db/journals/comj/comj31.html#GormanLSB07,https://doi.org/10.1162/comj.2007.31.2.39 +Roger B. Dannenberg,Methods and Prospects for Human-Computer Performance of Popular Music.,2014,38,Computer Music Journal,2,db/journals/comj/comj38.html#DannenbergGLX14,https://doi.org/10.1162/COMJ_a_00238 +Margaret Schedel,Interface: ./swank.,2003,27,Computer Music Journal,1,db/journals/comj/comj27.html#SchedelY03a,https://doi.org/10.1162/comj.2003.27.1.100 +Cat Hope,Electronic Scores for Music: The Possibilities of Animated Notation.,2017,41,Computer Music Journal,3,db/journals/comj/comj41.html#Hope17,https://doi.org/10.1162/comj_a_00427 +Axel Berndt,The Sonic Affordances of a System for Multitouch Manipulation of Stereophonic Noise Spectra.,2017,41,Computer Music Journal,4,db/journals/comj/comj41.html#BerndtAD17,https://doi.org/10.1162/comj_a_00438 +Cordelia V. Hall,Regular Expressions as Violin Bowing Patterns.,2012,36,Computer Music Journal,2,db/journals/comj/comj36.html#HallO12,https://doi.org/10.1162/COMJ_a_00120 +Aengus Martin,Design and Evaluation of Agents that Sequence and Juxtapose Short Musical Patterns in Real Time.,2017,41,Computer Music Journal,4,db/journals/comj/comj41.html#MartinJB17,https://doi.org/10.1162/comj_a_00439 +Andreas Stefik,An Automatic Translator for Semantically Encoded Musical Languages.,2007,31,Computer Music Journal,4,db/journals/comj/comj31.html#StefikSC07,https://doi.org/10.1162/comj.2007.31.4.33 +Adam Berenzweig,A Large-Scale Evaluation of Acoustic and Subjective Music-Similarity Measures.,2004,28,Computer Music Journal,2,db/journals/comj/comj28.html#BerenzweigLEW04,https://doi.org/10.1162/014892604323112257 +Trevor Wishart,Sonic Composition in Tongues of Fire.,2000,24,Computer Music Journal,2,db/journals/comj/comj24.html#Wishart00,https://doi.org/10.1162/014892600559281 +Nadine Kroher,Audio-Based Melody Categorization: Exploring Signal Representations and Evaluation Strategies.,2017,41,Computer Music Journal,4,db/journals/comj/comj41.html#KroherD17,https://doi.org/10.1162/comj_a_00440 +Fernando Lopez-Lezcano,Searching for the GRAIL.,2016,40,Computer Music Journal,4,db/journals/comj/comj40.html#Lopez-Lezcano16,https://doi.org/10.1162/COMJ_a_00393 +Keeril Makan,An Interview with Gerard Pape.,2003,27,Computer Music Journal,3,db/journals/comj/comj27.html#Makan03,https://doi.org/10.1162/014892603322482501 +Keiji Hirata,Computational Music Representation Based on the Generative Theory of Tonal Music and the Deductive Object-Oriented Database.,2003,27,Computer Music Journal,3,db/journals/comj/comj27.html#HirataA03,https://doi.org/10.1162/014892603322482547 +Darrell Conklin,Feature Set Patterns in Music.,2008,32,Computer Music Journal,1,db/journals/comj/comj32.html#ConklinB08,https://doi.org/10.1162/comj.2008.32.1.60 +David Wessel,Problems and Prospects for Intimate Musical Control of Computers.,2002,26,Computer Music Journal,3,db/journals/comj/comj26.html#WesselW02,https://doi.org/10.1162/014892602320582945 +Guy E. Garnett,The Aesthetics of Interactive Computer Music.,2001,25,Computer Music Journal,1,db/journals/comj/comj25.html#Garnett01a,https://doi.org/10.1162/014892601300126089 +Douglas Keislar,Editor's Notes.,2001,25,Computer Music Journal,2,db/journals/comj/comj25.html#Keislar01,https://doi.org/10.1162/014892601750302525 +Greg Surges,Generative Audio Systems Using Power-Preserving All-Pass Filters.,2016,40,Computer Music Journal,1,db/journals/comj/comj40.html#SurgesSP16,https://doi.org/10.1162/COMJ_a_00344 +Christopher Ariza,Automata Bending: Applications of Dynamic Mutation and Dynamic Rules in Modular One-Dimensional Cellular Automata.,2007,31,Computer Music Journal,1,db/journals/comj/comj31.html#Ariza07,https://doi.org/10.1162/comj.2007.31.1.29 +Steven M. Miller,Chris Brown: Talking Drum.,2005,29,Computer Music Journal,2,db/journals/comj/comj29.html#Miller05,https://doi.org/10.1162/comj.2005.29.2.97 +Meg Schedel,Cycling '74 radiaL Loop-Based Performance Software.,2005,29,Computer Music Journal,1,db/journals/comj/comj29.html#Schedel05a,https://doi.org/10.1162/comj.2005.29.1.101 +Victor Lazzarini,Synthesis of Resonance by Nonlinear Distortion Methods.,2013,37,Computer Music Journal,1,db/journals/comj/comj37.html#LazzariniT13,https://doi.org/10.1162/COMJ_a_00160 +Rudi Cilibrasi,Algorithmic Clustering of Music Based on String Compression.,2004,28,Computer Music Journal,4,db/journals/comj/comj28.html#CilibrasiVW04,https://doi.org/10.1162/0148926042728449 +Anthony Richard Burton,Generation of Musical Sequences with Genetic Techniques.,1999,23,Computer Music Journal,4,db/journals/comj/comj23.html#BurtonV99,https://doi.org/10.1162/014892699560001 +Jim Hearon,New Zealand Sonic Art.,2003,27,Computer Music Journal,1,db/journals/comj/comj27.html#Hearon03,https://doi.org/10.1162/comj.2003.27.1.101 +Fabien Gouyon,A Review of Automatic Rhythm Description Systems.,2005,29,Computer Music Journal,1,db/journals/comj/comj29.html#GouyonD05,https://doi.org/10.1162/comj.2005.29.1.34 +James Bohn,Bob Gluck: Stories Heard and Retold.,1999,23,Computer Music Journal,2,db/journals/comj/comj23.html#Bohn99a,https://doi.org/10.1162/comj.1999.23.2.106 +Jia Zhu,Complexity-Scalable Beat Detection with MP3 Audio Bitstreams.,2008,32,Computer Music Journal,1,db/journals/comj/comj32.html#ZhuW08,https://doi.org/10.1162/comj.2008.32.1.71 +Kyung Ae Lim,InTune: A System to Support an Instrumentalist's Visualization of Intonation.,2010,34,Computer Music Journal,3,db/journals/comj/comj34.html#LimR10,https://doi.org/10.1162/COMJ_a_00005 +Maja Trochimczyk,From Circles to Nets: On the Signification of Spatial Sound Imagery in New Music.,2001,25,Computer Music Journal,4,db/journals/comj/comj25.html#Trochimczyk01,https://doi.org/10.1162/01489260152815288 +Laurie Radford,Mario Verandi: orillas distantes/distant shores.,2005,29,Computer Music Journal,4,db/journals/comj/comj29.html#Radford05a,https://doi.org/10.1162/comj.2005.29.4.85 +Andrew Sorensen,The Many Meanings of Live Coding.,2014,38,Computer Music Journal,1,db/journals/comj/comj38.html#SorensenSR14,https://doi.org/10.1162/COMJ_a_00230 +Greg Aloupis,Algorithms for Computing Geometric Measures of Melodic Similarity.,2006,30,Computer Music Journal,3,db/journals/comj/comj30.html#AloupisFLMMRRT06,https://doi.org/10.1162/comj.2006.30.3.67 +Natasha Barrett,Interactive Spatial Sonification of Multidimensional Data for Composition and Auditory Display.,2016,40,Computer Music Journal,2,db/journals/comj/comj40.html#Barrett16,https://doi.org/10.1162/COMJ_a_00358 +Jukka Rauhala,A Parametric Piano Synthesizer.,2008,32,Computer Music Journal,4,db/journals/comj/comj32.html#RauhalaLVLN08,https://doi.org/10.1162/comj.2008.32.4.17 +Hugh Lynch,A Perceptual Investigation into Spatialization Techniques Used in Multichannel Electroacoustic Music for Envelopment and Engulfment.,2017,41,Computer Music Journal,1,db/journals/comj/comj41.html#LynchS17,https://doi.org/10.1162/COMJ_a_00401 +Ross Feller,Barry Schrader: The Barnum Museum (2009-2012).,2014,38,Computer Music Journal,1,db/journals/comj/comj38.html#Feller14,https://doi.org/10.1162/COMJ_r_00220 +Curtis Roads,Jacqueline Caux: Almost Nothing with Luc Ferrari (Critical Ear Volume 5).,2015,39,Computer Music Journal,2,db/journals/comj/comj39.html#Roads15,https://doi.org/10.1162/COMJ_r_00302 +Jonathan Segel,Native Instruments: Reaktor 3 Software SynthesizerLen Sasso: Native Instruments Reaktor 3 - Wizoo Guide.,2003,27,Computer Music Journal,1,db/journals/comj/comj27.html#Segel03,https://doi.org/10.1162/comj.2003.27.1.109 +Jared Dunne,DaevlMakr.Plugs Audio Software Effects.,2008,32,Computer Music Journal,3,db/journals/comj/comj32.html#Dunne08,https://doi.org/10.1162/comj.2008.32.3.113 +Torsten Anders,Constraint Application with Higher-Order Programming for Modeling Music Theories.,2010,34,Computer Music Journal,2,db/journals/comj/comj34.html#AndersM10,https://doi.org/10.1162/comj.2010.34.2.25 +Kenneth McAlpine,Making Music with Algorithms: A Case-Study System.,1999,23,Computer Music Journal,2,db/journals/comj/comj23.html#McAlpineMH99,https://doi.org/10.1162/014892699559733 +Barry Truax,Powers of Two.,2007,31,Computer Music Journal,3,db/journals/comj/comj31.html#Truax07,https://doi.org/10.1162/comj.2007.31.3.4 +Randy Jones,Creating Visual Music in Jitter: Approaches and Techniques.,2005,29,Computer Music Journal,4,db/journals/comj/comj29.html#JonesN05,https://doi.org/10.1162/014892605775179900 +Michael Gurevich,Playing with Constraints: Stylistic Variation with a Simple Electronic Instrument.,2012,36,Computer Music Journal,1,db/journals/comj/comj36.html#GurevichMS12,https://doi.org/10.1162/COMJ_a_00103 +Holger H. Hoos,Editors' Notes.,2004,28,Computer Music Journal,2,db/journals/comj/comj28.html#HoosB04,https://doi.org/10.1162/014892604323112185 +Elizabeth Hinkle-Turner,Priscilla McLean: Symphony of Seasons.,2010,34,Computer Music Journal,3,db/journals/comj/comj34.html#Hinkle-Turner10,https://doi.org/10.1162/COMJ_r_00012 +David Temperley,Modeling Meter and Harmony: A Preference-Rule Approach.,1999,23,Computer Music Journal,1,db/journals/comj/comj23.html#TemperleyS99,https://doi.org/10.1162/014892699559616 +Miller Puckette,Max at Seventeen.,2002,26,Computer Music Journal,4,db/journals/comj/comj26.html#Puckette02,https://doi.org/10.1162/014892602320991356 +Gil Weinberg,Toward Robotic Musicianship.,2006,30,Computer Music Journal,4,db/journals/comj/comj30.html#WeinbergD06,https://doi.org/10.1162/comj.2006.30.4.28 +Arne Eigenfeldt,International Computer Music Conference 2007: Live Electronics.,2008,32,Computer Music Journal,1,db/journals/comj/comj32.html#Eigenfeldt08,https://doi.org/10.1162/comj.2008.32.1.91 +Margaret Cahill,Litter.,2003,27,Computer Music Journal,4,db/journals/comj/comj27.html#Cahill03,https://doi.org/10.1162/comj.2003.27.4.108 +Eduardo Reck Miranda,Artificial Evolution of Expressive Performance of Music: An Imitative Multi-Agent Systems Approach.,2010,34,Computer Music Journal,1,db/journals/comj/comj34.html#MirandaKZ10,https://doi.org/10.1162/comj.2010.34.1.80 +François Déchelle,jMax: An Environment for Real-Time Musical Applications.,1999,23,Computer Music Journal,3,db/journals/comj/comj23.html#DechelleBCMRS99,https://doi.org/10.1162/014892699559887 +W. Bas de Haas,Automatic Functional Harmonic Analysis.,2013,37,Computer Music Journal,4,db/journals/comj/comj37.html#HaasMWV13,https://doi.org/10.1162/COMJ_a_00209 +Stefan Müller 0010,The Extraction of Expressive Shaping in Performance.,2003,27,Computer Music Journal,1,db/journals/comj/comj27.html#0010M03,https://doi.org/10.1162/01489260360613335 +Stephen McAdams,Perspectives on the Contribution of Timbre to Musical Structure.,1999,23,Computer Music Journal,3,db/journals/comj/comj23.html#McAdams99,https://doi.org/10.1162/014892699559797 +Kim Cascone,"The Aesthetics of Failure: ""Post-Digital"" Tendencies in Contemporary Computer Music.",2000,24,Computer Music Journal,4,db/journals/comj/comj24.html#Cascone00b,https://doi.org/10.1162/014892600559489 +Rolf Wöhrmann,Design and Architecture of Distributed Sound Processing and Database Systems for Web-Based Computer Music Applications.,1999,23,Computer Music Journal,3,db/journals/comj/comj23.html#WohrmannB99,https://doi.org/10.1162/014892699559788 +Patricia L. Dirks,Robert Normandeau: Claire de terre.,2005,29,Computer Music Journal,2,db/journals/comj/comj29.html#Dirks05,https://doi.org/10.1162/comj.2005.29.2.94 +Konstantinos Trohidis,Tempo Induction from Music Recordings Using Ensemble Empirical Mode Decomposition Analysis.,2011,35,Computer Music Journal,4,db/journals/comj/comj35.html#TrohidisH11,https://doi.org/10.1162/COMJ_a_00092 +Peter V. Swendsen,Matthew Burtner: Metasaxophone Colossus.,2005,29,Computer Music Journal,4,db/journals/comj/comj29.html#Swendsen05,https://doi.org/10.1162/comj.2005.29.4.90 +Jeffrey Treviño,Neil Rolnick: Shadow Quartet.,2008,32,Computer Music Journal,1,db/journals/comj/comj32.html#Trevino08,https://doi.org/10.1162/comj.2008.32.1.97 +Miriam Richter,From Radios to Biocomputers: An Interview with Eduardo Reck Miranda.,2018,42,Computer Music Journal,1,db/journals/comj/comj42.html#Richter18,https://doi.org/10.1162/comj_a_00448 +Bob L. Sturm,Adaptive Concatenative Sound Synthesis and Its Application to Micromontage Composition.,2006,30,Computer Music Journal,4,db/journals/comj/comj30.html#Sturm06,https://doi.org/10.1162/comj.2006.30.4.46 +Joyce Shintani,Art | 40 | Basel: Media Art with Music.,2010,34,Computer Music Journal,1,db/journals/comj/comj34.html#Shintani10,https://doi.org/10.1162/comj.2010.34.1.97 +Jean-Claude Risset,Max Mathews's Influence on (My) Music.,2009,33,Computer Music Journal,3,db/journals/comj/comj33.html#Risset09,https://doi.org/10.1162/comj.2009.33.3.26 +Linda Seltzer,Dave Phillips: The Book of Linux Music and Sound.,2004,28,Computer Music Journal,1,db/journals/comj/comj28.html#Seltzer04,https://doi.org/10.1162/comj.2004.28.1.70 +Andrew Kaiser,Tetsu Inoue and Carl Stone: pict.soul.,2003,27,Computer Music Journal,1,db/journals/comj/comj27.html#Kaiser03,https://doi.org/10.1162/comj.2003.27.1.99 +Laura Maes,The Man and Machine Robot Orchestra at Logos.,2011,35,Computer Music Journal,4,db/journals/comj/comj35.html#MaesRR11,https://doi.org/10.1162/COMJ_a_00089 +Emmanouil Benetos,A Shift-Invariant Latent Variable Model for Automatic Music Transcription.,2012,36,Computer Music Journal,4,db/journals/comj/comj36.html#BenetosD12,https://doi.org/10.1162/COMJ_a_00146 +Douglas Keislar,About This Issue.,2014,38,Computer Music Journal,3,db/journals/comj/comj38.html#Keislar14,https://doi.org/10.1162/COMJ_e_00251 +Michael Gogins,Xopher Davidson: Antimatter.,2000,24,Computer Music Journal,4,db/journals/comj/comj24.html#Gogins00b,https://doi.org/10.1162/comj.2000.24.4.71 +Amelie Anglade,Demos and Late-Breaking Session of the Thirteenth International Society for Music Information Retrieval Conference (ISMIR 2012).,2013,37,Computer Music Journal,2,db/journals/comj/comj37.html#AngladeHSSS13,https://doi.org/10.1162/COMJ_r_00171 +Maximos A. Kaliakatsos-Papakostas,A Clustering Strategy for the Key Segmentation of Musical Audio.,2013,37,Computer Music Journal,1,db/journals/comj/comj37.html#Kaliakatsos-PapakostasFV13,https://doi.org/10.1162/COMJ_a_00168 +Desmond K. Phillips,Multirate Additive Synthesis.,1999,23,Computer Music Journal,1,db/journals/comj/comj23.html#Phillips99,https://doi.org/10.1162/014892699559625 +Laura Zattra,The Assembling of Stria by John Chowning: A Philological Investigation.,2007,31,Computer Music Journal,3,db/journals/comj/comj31.html#Zattra07,https://doi.org/10.1162/comj.2007.31.3.38 +Patrick Zanon,Estimation of Parameters in Rule Systems for Expressive Rendering of Musical Performance.,2003,27,Computer Music Journal,1,db/journals/comj/comj27.html#ZanonP03,https://doi.org/10.1162/01489260360613326 +Seth Aaron Rozanoff,Sebastian Lexer + Steve Noble: Muddy Ditch.,2017,41,Computer Music Journal,3,db/journals/comj/comj41.html#Rozanoff17b,https://doi.org/10.1162/comj_r_00430 +Ross Feller,Juan Blanco: Nuestro Tiempo/Our Time.,2014,38,Computer Music Journal,2,db/journals/comj/comj38.html#Feller14a,https://doi.org/10.1162/COMJ_r_00241 +D. Gareth Loy,The Systems Concepts Digital Synthesizer: An Architectural Retrospective.,2013,37,Computer Music Journal,3,db/journals/comj/comj37.html#Loy13a,https://doi.org/10.1162/COMJ_a_00193 +Andrew Choi,Jazz Harmonic Analysis as Optimal Tonality Segmentation.,2011,35,Computer Music Journal,2,db/journals/comj/comj35.html#Choi11,https://doi.org/10.1162/COMJ_a_00056 +Reginald Langford Harrison,An Environment for Physical Modeling of Articulated Brass Instruments.,2015,39,Computer Music Journal,4,db/journals/comj/comj39.html#HarrisonBPW15,https://doi.org/10.1162/COMJ_a_00332 +Gustavo Colmenares,Computational Modeling of Reproducing-Piano Rolls.,2011,35,Computer Music Journal,1,db/journals/comj/comj35.html#ColmenaresESS11,https://doi.org/10.1162/COMJ_a_00040 +Roberto Bresin,Emotional Coloring of Computer-Controlled Music Performances.,2000,24,Computer Music Journal,4,db/journals/comj/comj24.html#BresinF00,https://doi.org/10.1162/014892600559515 +Jim Hearon,Lexikon Musikautomaten: Die Welt der selbstspielenden Musikinstrumente.,2005,29,Computer Music Journal,1,db/journals/comj/comj29.html#Hearon05a,https://doi.org/10.1162/comj.2005.29.1.100 +David Meredith 0001,Optimizing Chew and Chen's Pitch-Spelling Algorithm.,2007,31,Computer Music Journal,2,db/journals/comj/comj31.html#Meredith07,https://doi.org/10.1162/comj.2007.31.2.54 +Ian Whalley,Future Perfect: The Nature of Time.,2003,27,Computer Music Journal,1,db/journals/comj/comj27.html#Whalley03,https://doi.org/10.1162/comj.2003.27.1.97 +Corey I. Cheng,Moving Sound Source Synthesis for Binaural Electroacoustic Music Using Interpolated Head-Related Transfer Functions (HRTFs).,2001,25,Computer Music Journal,4,db/journals/comj/comj25.html#ChengW01,https://doi.org/10.1162/01489260152815297 +Andrew Fletcher,Pimmon: Electronic Tax Return* Pimmon: Secret Sleeping Birds.,2008,32,Computer Music Journal,1,db/journals/comj/comj32.html#Fletcher08,https://doi.org/10.1162/comj.2008.32.1.98 +Ross Feller,Neil Leonard: For Kounellis.,2015,39,Computer Music Journal,2,db/journals/comj/comj39.html#Feller15a,https://doi.org/10.1162/COMJ_r_00303 +Holly Day,Mnemonists: Horde.,2000,24,Computer Music Journal,3,db/journals/comj/comj24.html#Day00,https://doi.org/10.1162/comj.2000.24.3.92 +Ross Feller,Paul Fretwell and Ambrose Field: Northern Loop.,2015,39,Computer Music Journal,1,db/journals/comj/comj39.html#Feller15,https://doi.org/10.1162/COMJ_r_00289 +Andrew R. Brown,Techniques for Generative Melodies Inspired by Music Cognition.,2015,39,Computer Music Journal,1,db/journals/comj/comj39.html#BrownGD15,https://doi.org/10.1162/COMJ_a_00282 +Douglas Keislar,Editor's Notes.,2000,24,Computer Music Journal,2,db/journals/comj/comj24.html#Keislar00,https://doi.org/10.1162/014892600559245 +Nico Schüler,David Cope: Virtual Mozart: Experiments in Musical Intelligence.,2000,24,Computer Music Journal,4,db/journals/comj/comj24.html#Schuler00a,https://doi.org/10.1162/comj.2000.24.4.80 +Patrick Hill,An Introduction to Aspect-Oriented Music Representation.,2007,31,Computer Music Journal,4,db/journals/comj/comj31.html#HillHL07,https://doi.org/10.1162/comj.2007.31.4.47 +Barry Schrader,Elainie Lillios: Entre Espaces.,2012,36,Computer Music Journal,3,db/journals/comj/comj36.html#Schrader12,https://doi.org/10.1162/COMJ_r_00132 +Louis Bigo,MCM 2013: The Fourth International Conference on Mathematics and Computation in Music.,2014,38,Computer Music Journal,3,db/journals/comj/comj38.html#Bigo14,https://doi.org/10.1162/COMJ_r_00259 +Gary S. Kendall,Sound Synthesis with Auditory Distortion Products.,2014,38,Computer Music Journal,4,db/journals/comj/comj38.html#KendallHC14,https://doi.org/10.1162/COMJ_a_00265 +Jim Hearon,Musical Dice Games.,2005,29,Computer Music Journal,1,db/journals/comj/comj29.html#Hearon05,https://doi.org/10.1162/comj.2005.29.1.99 +Brian Bemman,Generating New Musical Works in the Style of Milton Babbitt.,2018,42,Computer Music Journal,1,db/journals/comj/comj42.html#BemmanM18,https://doi.org/10.1162/comj_a_00451 +Andy K. K. Wong,Design and Implementation of a Real-Time Digital Resonator for the Electric Cello.,1999,23,Computer Music Journal,4,db/journals/comj/comj23.html#WongLL99,https://doi.org/10.1162/014892699559995 +Dominic Robson,PLAY!: Sound Toys for Non-Musicians.,2002,26,Computer Music Journal,3,db/journals/comj/comj26.html#Robson02,https://doi.org/10.1162/014892602320582972 +Luke Dahl,Studying the Timing of Discrete Musical Air Gestures.,2015,39,Computer Music Journal,2,db/journals/comj/comj39.html#Dahl15,https://doi.org/10.1162/COMJ_a_00298 +Bob L. Sturm,International Conference on Auditory Display 2002.,2003,27,Computer Music Journal,1,db/journals/comj/comj27.html#Sturm03,https://doi.org/10.1162/comj.2003.27.1.84 +Kim Cascone,Iara Lee: Modulations.,1999,23,Computer Music Journal,2,db/journals/comj/comj23.html#Cascone99a,https://doi.org/10.1162/comj.1999.23.2.112 +Ross Feller,Neil Leonard: Timaeus.,2005,29,Computer Music Journal,2,db/journals/comj/comj29.html#Feller05,https://doi.org/10.1162/comj.2005.29.2.96 +Janko Gravner,Coupled Map Lattices as Musical Instruments.,2018,42,Computer Music Journal,2,db/journals/comj/comj42.html#GravnerJ18,https://doi.org/10.1162/comj_a_00458 +Rodrigo F. Cádiz,Sound Synthesis of a Gaussian Quantum Particle in an Infinite Square Well.,2014,38,Computer Music Journal,4,db/journals/comj/comj38.html#CadizR14,https://doi.org/10.1162/COMJ_a_00268 +Christine Anderson,Dynamic Networks of Sonic Interactions: An Interview with Agostino Di Scipio.,2005,29,Computer Music Journal,3,db/journals/comj/comj29.html#Anderson05,https://doi.org/10.1162/0148926054798142 +Jim Hearon,Virtos Noise Wizard Noise Reduction DirectX Plug-Ins.,2003,27,Computer Music Journal,3,db/journals/comj/comj27.html#Hearon03b,https://doi.org/10.1162/comj.2003.27.3.110 +Andrew Robertson,Synchronizing Sequencing Software to a Live Drummer.,2013,37,Computer Music Journal,2,db/journals/comj/comj37.html#RobertsonP13,https://doi.org/10.1162/COMJ_a_00178 +Camille Goudeseune,Ossatura and Tim Hodgkinson: Dentro.,1999,23,Computer Music Journal,2,db/journals/comj/comj23.html#Goudeseune99,https://doi.org/10.1162/comj.1999.23.2.108 +Katerina Kosta,2013 Performance Studies Network International Conference.,2014,38,Computer Music Journal,2,db/journals/comj/comj38.html#KostaL14,https://doi.org/10.1162/COMJ_r_00242 +Tae Hong Park,Paul Lansky: Alphabet Book.,2008,32,Computer Music Journal,2,db/journals/comj/comj32.html#Park08,https://doi.org/10.1162/comj.2008.32.2.84 +Jon Appleton,Bits and Pieces: EMS 30 Years.,1999,23,Computer Music Journal,2,db/journals/comj/comj23.html#Appleton99,https://doi.org/10.1162/comj.1999.23.2.100 +Mitsuko Aramaki,A Percussive Sound Synthesizer Based on Physical and Perceptual Attributes.,2006,30,Computer Music Journal,2,db/journals/comj/comj30.html#AramakiKVY06,https://doi.org/10.1162/comj.2006.30.2.32 +David Evan Jones,A Computational Composer's Assistant for Atonal Counterpoint.,2000,24,Computer Music Journal,4,db/journals/comj/comj24.html#Jones00,https://doi.org/10.1162/014892600559506 +Annea Lockwood,Thomas Clark: Larry Austin: Life and Works of an Experimental Composer.,2014,38,Computer Music Journal,1,db/journals/comj/comj38.html#Lockwood14,https://doi.org/10.1162/COMJ_r_00221 +Elizabeth Hoffman,Various: [re].,2008,32,Computer Music Journal,2,db/journals/comj/comj32.html#Hoffman08,https://doi.org/10.1162/comj.2008.32.2.82 +Valerio Velardo,Study Day on Computer Simulation of Musical Creativity.,2015,39,Computer Music Journal,4,db/journals/comj/comj39.html#VelardoJ15,https://doi.org/10.1162/COMJ_r_00326 +Kim Cascone,Simon Reynolds: Generation Ecstasy: Into the World of Techno and Rave Culture.,2000,24,Computer Music Journal,4,db/journals/comj/comj24.html#Cascone00c,https://doi.org/10.1162/comj.2000.24.4.69 +Ludger Brümmer,Two Reviews of Synthèse 98: The 28th International Festival of Electroacoustic Music.,1999,23,Computer Music Journal,1,db/journals/comj/comj23.html#Brummer99,https://doi.org/10.1162/comj.1999.23.1.72 +Rafael Ramírez 0001,A Genetic Rule-Based Model of Expressive Performance for Jazz Saxophone.,2008,32,Computer Music Journal,1,db/journals/comj/comj32.html#RamirezHMS08,https://doi.org/10.1162/comj.2008.32.1.38 +Freya Bailes,The Perceived Affective Expression of Computer-Manipulated Sung Sounds.,2011,35,Computer Music Journal,1,db/journals/comj/comj35.html#BailesD11,https://doi.org/10.1162/COMJ_a_00042 +Stefano Fasciani,Vocal Control of Sound Synthesis Personalized by Unsupervised Machine Listening and Learning.,2018,42,Computer Music Journal,1,db/journals/comj/comj42.html#FascianiW18,https://doi.org/10.1162/comj_a_00450 +Barton McLean,KYMA 7: The Search for the Ultimate Sound Creation Instrument.,2015,39,Computer Music Journal,3,db/journals/comj/comj39.html#McLean15,https://doi.org/10.1162/COMJ_r_00319 +Jacob Gotlib,Andrey Smirnov: Sound in Z: Experiments in Sound and Electronic Music in Early 20th Century Russia.,2014,38,Computer Music Journal,4,db/journals/comj/comj38.html#Gotlib14,https://doi.org/10.1162/COMJ_r_00272 +Ross Feller,Ian Fredericks: Sunrise: The Acousmatic Music of Ian Fredericks.,2017,41,Computer Music Journal,3,db/journals/comj/comj41.html#Feller17c,https://doi.org/10.1162/comj_r_00431 +Ian Whalley,David Temperley: The Cognition of Basic Music Structures.,2003,27,Computer Music Journal,2,db/journals/comj/comj27.html#Whalley03b,https://doi.org/10.1162/comj.2003.27.2.113 +Matthew Burtner,Sound Anthology: Program Notes.,2018,42,Computer Music Journal,1,db/journals/comj/comj42.html#BurtnerGBCGWDSJ18,https://doi.org/10.1162/comj_e_00452 +Ross Feller,Andrew May: Imaginary Friends.,2013,37,Computer Music Journal,3,db/journals/comj/comj37.html#Feller13b,https://doi.org/10.1162/COMJ_r_00187 +Nick Collins,Automatic Composition of Electroacoustic Art Music Utilizing Machine Listening.,2012,36,Computer Music Journal,3,db/journals/comj/comj36.html#Collins12,https://doi.org/10.1162/COMJ_a_00135 +Olivier Lartillot,A Musical Pattern Discovery System Founded on a Modeling of Listening Strategies.,2004,28,Computer Music Journal,3,db/journals/comj/comj28.html#Lartillot04,https://doi.org/10.1162/0148926041790694 +Bill Alves,Digital Harmony of Sound and Light.,2005,29,Computer Music Journal,4,db/journals/comj/comj29.html#Alves05,https://doi.org/10.1162/014892605775179982 +Arthur Flexer,Effects of Album and Artist Filters in Audio Similarity Computed for Very Large Music Databases.,2010,34,Computer Music Journal,3,db/journals/comj/comj34.html#FlexerS10,https://doi.org/10.1162/COMJ_a_00004 +Michael Gogins,Ricercare 1.,2000,24,Computer Music Journal,4,db/journals/comj/comj24.html#Gogins00d,https://doi.org/10.1162/comj.2000.24.4.74a +Niklas Lindroos,Parametric Electric Guitar Synthesis.,2011,35,Computer Music Journal,3,db/journals/comj/comj35.html#LindroosPV11,https://doi.org/10.1162/COMJ_a_00066 +Wei-Ho Tsai,Blind Clustering of Popular Music Recordings Based on Singer Voice Characteristics.,2004,28,Computer Music Journal,3,db/journals/comj/comj28.html#TsaiRW04,https://doi.org/10.1162/0148926041790630 +Hugues Vinet,Recent Research and Development at IRCAM.,1999,23,Computer Music Journal,3,db/journals/comj/comj23.html#Vinet99,https://doi.org/10.1162/014892699559850 +Henkjan Honing,From Time to Time: The Representation of Timing and Tempo.,2001,25,Computer Music Journal,3,db/journals/comj/comj25.html#Honing01,https://doi.org/10.1162/014892601753189538 +Baptiste Caramiaux,Mapping Through Listening.,2014,38,Computer Music Journal,3,db/journals/comj/comj38.html#CaramiauxFSB14,https://doi.org/10.1162/COMJ_a_00255 +R. Brent Gillespie,Characterizing the Feel of the Piano Action.,2011,35,Computer Music Journal,1,db/journals/comj/comj35.html#GillespieYGA11,https://doi.org/10.1162/COMJ_a_00039 +Markus Zaunschirm,A Sub-Band Approach to Modification of Musical Transients.,2012,36,Computer Music Journal,2,db/journals/comj/comj36.html#ZaunschirmRK12,https://doi.org/10.1162/COMJ_a_00117 +Michael Boyd,Dexter Morrill: Music for Stanford.,2008,32,Computer Music Journal,3,db/journals/comj/comj32.html#Boyd08,https://doi.org/10.1162/comj.2008.32.3.108 +Barton McLean,Experimental Media and Performing Arts Center: Coming of Age.,2010,34,Computer Music Journal,2,db/journals/comj/comj34.html#McLean10,https://doi.org/10.1162/comj.2010.34.2.84 +Karen Sunabacka,Electroacoustic Music Studies Network 2008: Musique concrète - 60 Years Later.,2009,33,Computer Music Journal,1,db/journals/comj/comj33.html#Sunabacka09,https://doi.org/10.1162/comj.2009.33.1.70 +Wibke Bantelmann,trans_canada Festival: Trends in Acousmatics and Soundscapes.,2005,29,Computer Music Journal,3,db/journals/comj/comj29.html#Bantelmann05,https://doi.org/10.1162/0148926054798151 +Ross Feller,Christopher Bailey: Immolation Ritual.,2012,36,Computer Music Journal,1,db/journals/comj/comj36.html#Feller12,https://doi.org/10.1162/COMJ_r_00109 +Pauline Minevich,Esther Lamneck: Cigar Smoke.,2010,34,Computer Music Journal,3,db/journals/comj/comj34.html#Minevich10,https://doi.org/10.1162/COMJ_r_00011 +Osvaldo Budón,Jorge Antunes: Musica Eletronica 70's I* Musica Eletronica 70's II* Musica Eletronica 90's I.,2000,24,Computer Music Journal,3,db/journals/comj/comj24.html#Budon00a,https://doi.org/10.1162/comj.2000.24.3.86 +Ian Whalley,Robert Reigle and Paul Whitehead (Editors): Spectral World Musics: Proceedings of the Istanbul Spectral Music Conference.,2010,34,Computer Music Journal,2,db/journals/comj/comj34.html#Whalley10a,https://doi.org/10.1162/comj.2010.34.2.93 +Andrés Cabrera,The Evolution of Spatial Audio in the AlloSphere.,2016,40,Computer Music Journal,4,db/journals/comj/comj40.html#CabreraKR16,https://doi.org/10.1162/COMJ_a_00382 +Thibaut Carpentier,Holophonic Sound in IRCAM's Concert Hall: Technological and Aesthetic Practices.,2016,40,Computer Music Journal,4,db/journals/comj/comj40.html#CarpentierBGN16,https://doi.org/10.1162/COMJ_a_00383 +Bob L. Sturm,International Computer Music Conference 2002.,2003,27,Computer Music Journal,2,db/journals/comj/comj27.html#Sturm03a,https://doi.org/10.1162/014892603322022691 +Seth Aaron Rozanoff,Sylvain Pohu and Pierre-Alexandre Tremblay: We Make Ourselves [...] By Making Each Other [...].,2017,41,Computer Music Journal,1,db/journals/comj/comj41.html#Rozanoff17,https://doi.org/10.1162/COMJ_r_00400 +Gérard Assayag,Computer-Assisted Composition at IRCAM: From PatchWork to OpenMusic.,1999,23,Computer Music Journal,3,db/journals/comj/comj23.html#AssayagRLAD99,https://doi.org/10.1162/014892699559896 +Dionysios Politis,Emulation of Ancient Greek Music Using Sound Synthesis and Historical Notation.,2008,32,Computer Music Journal,4,db/journals/comj/comj32.html#PolitisMLPBV08,https://doi.org/10.1162/comj.2008.32.4.48 +Guy E. Garnett,Two Reviews of the 1998 International Computer Music Conference.,1999,23,Computer Music Journal,2,db/journals/comj/comj23.html#GarnettG99,https://doi.org/10.1162/014892699559670 +Eric S. Strother,Beatnik Mixman StudioPro 4.0 Remix Software DM2 Digital Music Mixer.,2003,27,Computer Music Journal,1,db/journals/comj/comj27.html#Strother03b,https://doi.org/10.1162/comj.2003.27.1.107 +Ross Feller,Melia Watras: Prestidigitation.,2011,35,Computer Music Journal,1,db/journals/comj/comj35.html#Feller11,https://doi.org/10.1162/COMJ_r_00045 +John M. Snell,How Did Computer Music Journal Come to Exist?,2006,30,Computer Music Journal,1,db/journals/comj/comj30.html#Snell06,https://doi.org/10.1162/comj.2006.30.1.10 +Ajay Kapur,The Machine Orchestra: An Ensemble of Human Laptop Performers and Robotic Musical Instruments.,2011,35,Computer Music Journal,4,db/journals/comj/comj35.html#KapurDDMHVB11,https://doi.org/10.1162/COMJ_a_00090 +Tae Hong Park,Toronto Electroacoustic Symposium.,2009,33,Computer Music Journal,1,db/journals/comj/comj33.html#ParkH09,https://doi.org/10.1162/comj.2009.33.1.73 +Doug Van Nort,Mapping Control Structures for Sound Synthesis: Functional and Topological Perspectives.,2014,38,Computer Music Journal,3,db/journals/comj/comj38.html#NortWD14,https://doi.org/10.1162/COMJ_a_00253 +Eric Lee,Toward a Framework for Interactive Systems to Conduct Digital Audio and Video Streams.,2006,30,Computer Music Journal,1,db/journals/comj/comj30.html#LeeKB06,https://doi.org/10.1162/comj.2006.30.1.21 +Jason Freeman,Collaborative Textual Improvisation in a Laptop Ensemble.,2011,35,Computer Music Journal,2,db/journals/comj/comj35.html#FreemanT11,https://doi.org/10.1162/COMJ_a_00053 +Luc Döbereiner,Models of Constructed Sound: Nonstandard Synthesis as an Aesthetic Perspective.,2011,35,Computer Music Journal,3,db/journals/comj/comj35.html#Dobereiner11,https://doi.org/10.1162/COMJ_a_00067 +Jared Dunne,Max 5 Programming Language Update.,2008,32,Computer Music Journal,4,db/journals/comj/comj32.html#Dunne08a,https://doi.org/10.1162/comj.2008.32.4.89 +Ian Stevenson,EMS 2014: The Twelfth Electroacoustic Music Studies Network Conference.,2014,38,Computer Music Journal,4,db/journals/comj/comj38.html#Stevenson14,https://doi.org/10.1162/COMJ_r_00270 +Marcelo M. Wanderley,Editors' Notes.,2014,38,Computer Music Journal,3,db/journals/comj/comj38.html#WanderleyM14,https://doi.org/10.1162/COMJ_e_00252 +Elaine Chew,Real-Time Pitch Spelling Using the Spiral Array.,2005,29,Computer Music Journal,2,db/journals/comj/comj29.html#ChewC05,https://doi.org/10.1162/0148926054094378 +Louis Bigo,Representation of Musical Structures and Processes in Simplicial Chord Spaces.,2015,39,Computer Music Journal,3,db/journals/comj/comj39.html#BigoGSA15,https://doi.org/10.1162/COMJ_a_00312 +William A. Sethares,Spectral Tools for Dynamic Tonality and Audio Morphing.,2009,33,Computer Music Journal,2,db/journals/comj/comj33.html#SetharesMTPP09,https://doi.org/10.1162/comj.2009.33.2.71 +Nick Collins,Karlheinz Stockhausen: Cosmic Pulses.,2008,32,Computer Music Journal,1,db/journals/comj/comj32.html#Collins08,https://doi.org/10.1162/comj.2008.32.1.88 +Mikael Laurson,PWGLSynth: A Visual Synthesis Language for Virtual Instrument Design and Control.,2005,29,Computer Music Journal,3,db/journals/comj/comj29.html#LaursonNK05,https://doi.org/10.1162/0148926054798223 +Ali Taylan Cemgil,Rhythm Quantization for Transcription.,2000,24,Computer Music Journal,2,db/journals/comj/comj24.html#CemgilDK00,https://doi.org/10.1162/014892600559218 +Ron Parks,Todd Winkler: Composing Interactive Music: Techniques and Ideas Using Max.,1999,23,Computer Music Journal,1,db/journals/comj/comj23.html#Parks99,https://doi.org/10.1162/comj.1999.23.1.84 +Douglas Geers,Dan Hosken: An Introduction to Music Technology.,2011,35,Computer Music Journal,4,db/journals/comj/comj35.html#Geers11,https://doi.org/10.1162/COMJ_r_00094 +Daniel Hosken,Steven M. Martin: Theremin: An Electronic Odyssey.,1999,23,Computer Music Journal,2,db/journals/comj/comj23.html#Hosken99,https://doi.org/10.1162/comj.1999.23.2.110 +Israel Neuman,Generative Tools for Interactive Composition: Real-Time Musical Structures Based on Schaeffer's TARTYP and on Klumpenhouwer Networks.,2014,38,Computer Music Journal,2,db/journals/comj/comj38.html#Neuman14,https://doi.org/10.1162/COMJ_a_00240 +Elainie Lillios,Paul Lansky: Conversation Pieces.,2003,27,Computer Music Journal,2,db/journals/comj/comj27.html#Lillios03,https://doi.org/10.1162/comj.2003.27.2.116 +James Harley,évelyne Gayou: GRM - Le Groupe de Recherches Musicales: Cinquante ans d'histoire.,2009,33,Computer Music Journal,2,db/journals/comj/comj33.html#Harley09,https://doi.org/10.1162/comj.2009.33.2.103 +Georg Essl,Musical Applications of Banded Waveguides.,2004,28,Computer Music Journal,1,db/journals/comj/comj28.html#EsslSCS04a,https://doi.org/10.1162/014892604322970643 +Paul Doornbusch,Gerhard Nierhaus: Algorithmic Composition: Paradigms of Automated Music Generation.,2010,34,Computer Music Journal,3,db/journals/comj/comj34.html#Doornbusch10,https://doi.org/10.1162/COMJ_r_00008 +Guy E. Garnett,Editor's Notes.,2001,25,Computer Music Journal,1,db/journals/comj/comj25.html#Garnett01,https://doi.org/10.1162/014892601300126034 +Ross Feller,CJ Symon: Twelve Day Today Preludes and Fugues.,2015,39,Computer Music Journal,4,db/journals/comj/comj39.html#Feller15b,https://doi.org/10.1162/COMJ_r_00327 +Jyri Pakarinen,Virtual Slide Guitar.,2008,32,Computer Music Journal,3,db/journals/comj/comj32.html#PakarinenPV08,https://doi.org/10.1162/comj.2008.32.3.42 +Ross Feller,Sonic Circuits 2012: A Festival of Experimental Music.,2013,37,Computer Music Journal,1,db/journals/comj/comj37.html#Feller13,https://doi.org/10.1162/COMJ_r_00155 +Kunal Jathal,Real-Time Timbre Classification for Tabletop Hand Drumming.,2017,41,Computer Music Journal,2,db/journals/comj/comj41.html#Jathal17,https://doi.org/10.1162/COMJ_a_00419 +James Harley,Various: Recovery/Discovery - 40 Years of Surround Electronic Music in the UK.,2010,34,Computer Music Journal,4,db/journals/comj/comj34.html#Harley10a,https://doi.org/10.1162/COMJ_r_00029 +Ross Feller,Mara Helmuth and Allen Otte: Implements of Actuation.,2003,27,Computer Music Journal,3,db/journals/comj/comj27.html#Feller03,https://doi.org/10.1162/comj.2003.27.3.99 +Nick Collins,Radiohead: Kid ARadiohead: AmnesiacRadiohead: Hail to the Thief.,2004,28,Computer Music Journal,1,db/journals/comj/comj28.html#Collins04,https://doi.org/10.1162/comj.2004.28.1.73 +Brett Terry,Editor's Notes.,2005,29,Computer Music Journal,4,db/journals/comj/comj29.html#Terry05,https://doi.org/10.1162/014892605775179919 +Grégoire Carpentier,Automatic Orchestration in Practice.,2012,36,Computer Music Journal,3,db/journals/comj/comj36.html#CarpentierDVSV12,https://doi.org/10.1162/COMJ_a_00136 +James Harley,Henk Badings: More Electronic Music.,2011,35,Computer Music Journal,1,db/journals/comj/comj35.html#Harley11a,https://doi.org/10.1162/COMJ_r_00046 +Andrew Fletcher,Crusher-X Live! Granular Synthesis Software.,2008,32,Computer Music Journal,4,db/journals/comj/comj32.html#Fletcher08a,https://doi.org/10.1162/comj.2008.32.4.91 +Michael Boyd,Society for Electro-Acoustic Music in the United States 2010 National Conference.,2010,34,Computer Music Journal,4,db/journals/comj/comj34.html#Boyd10a,https://doi.org/10.1162/COMJ_r_00027 +Marcelo M. Wanderley,Evaluation of Input Devices for Musical Expression: Borrowing Tools from HCI.,2002,26,Computer Music Journal,3,db/journals/comj/comj26.html#WanderleyO02,https://doi.org/10.1162/014892602320582981 +Bryan Pardo,Algorithms for Chordal Analysis.,2002,26,Computer Music Journal,2,db/journals/comj/comj26.html#PardoB02,https://doi.org/10.1162/014892602760137167 +Parag Chordia,Joint Recognition of Raag and Tonic in North Indian Music.,2013,37,Computer Music Journal,3,db/journals/comj/comj37.html#ChordiaS13,https://doi.org/10.1162/COMJ_a_00194 +Eduardo Reck Miranda,Emergent Sound Repertoires in Virtual Societies.,2002,26,Computer Music Journal,2,db/journals/comj/comj26.html#Miranda02,https://doi.org/10.1162/014892602760137194 +Warren Burt,Pauline Oliveros: Alien Bog/Beautiful Soop.,2003,27,Computer Music Journal,3,db/journals/comj/comj27.html#Burt03,https://doi.org/10.1162/comj.2003.27.3.102 +Javier Alejandro Garavaglia,"Creating Multiple Spatial Settings with ""Granular Spatialisation"" in the High-Density Loudspeaker Array of the Cube Concert Hall.",2016,40,Computer Music Journal,4,db/journals/comj/comj40.html#Garavaglia16,https://doi.org/10.1162/COMJ_a_00384 +Thierry Carron,Modularing: A Suite of MIDI Applications Modeled on the Analog Studio.,1999,23,Computer Music Journal,1,db/journals/comj/comj23.html#CarronF99,https://doi.org/10.1162/014892699559553 +James Harley,Paul D. Miller aka DJ Spooky That Subliminal Kid: Rhythm Science.,2005,29,Computer Music Journal,3,db/journals/comj/comj29.html#Harley05,https://doi.org/10.1162/comj.2005.29.3.94 +Ian Whalley,International Computer Music Conference 2004: Papers.,2005,29,Computer Music Journal,2,db/journals/comj/comj29.html#Whalley05,https://doi.org/10.1162/comj.2005.29.2.83 +Vesa Välimäki,Commuted Waveguide Synthesis of the Clavichord.,2003,27,Computer Music Journal,1,db/journals/comj/comj27.html#ValimakiE03,https://doi.org/10.1162/01489260360613353 +Xavier Rodet,Nonlinear Dynamics in Physical Models: From Basic Models to True Musical-Instrument Models.,1999,23,Computer Music Journal,3,db/journals/comj/comj23.html#RodetV99a,https://doi.org/10.1162/014892699559878 +Hubert Howe,Two Reviews of Hannah B. Higgins and Douglas Kahn (Eds.): Mainframe Experimentalism: Early Computing and the Foundations of the Digital Arts.,2013,37,Computer Music Journal,2,db/journals/comj/comj37.html#Howe13,https://doi.org/10.1162/COMJ_r_00172 +Lance Putnam,Echo Shaping Using Sums of Damped Complex Sinusoids.,2015,39,Computer Music Journal,2,db/journals/comj/comj39.html#Putnam15,https://doi.org/10.1162/COMJ_a_00299 +Eric Lyon,Genesis of the Cube: The Design and Deployment of an HDLA-Based Performance and Research Facility.,2016,40,Computer Music Journal,4,db/journals/comj/comj40.html#LyonCBBNRU16,https://doi.org/10.1162/COMJ_a_00394 +Dorien Herremans,Classification and Generation of Composer-Specific Music Using Global Feature Models and Variable Neighborhood Search.,2015,39,Computer Music Journal,3,db/journals/comj/comj39.html#HerremansSM15,https://doi.org/10.1162/COMJ_a_00316 +Qi Yang,Evaluating Gesture-Augmented Keyboard Performance.,2014,38,Computer Music Journal,4,db/journals/comj/comj38.html#YangE14,https://doi.org/10.1162/COMJ_a_00277 +Ross Feller,Andrew J. Nelson: The Sound of Innovation - Stanford and the Computer Music Revolution.,2016,40,Computer Music Journal,1,db/journals/comj/comj40.html#Feller16,https://doi.org/10.1162/COMJ_r_00346 +Christian Clozier,The Gmebaphone Concept and the Cybernéphone Instrument.,2001,25,Computer Music Journal,4,db/journals/comj/comj25.html#Clozier01,https://doi.org/10.1162/01489260152815305 +Elias Pampalk,Exploring Music Collections by Browsing Different Views.,2004,28,Computer Music Journal,2,db/journals/comj/comj28.html#PampalkDW04,https://doi.org/10.1162/014892604323112248 +Nyssim Lefford,An Interview with Barry Vercoe.,1999,23,Computer Music Journal,4,db/journals/comj/comj23.html#Lefford99,https://doi.org/10.1162/014892699559968 +Michael Theodore,Altiverb Reverberation Software.,2004,28,Computer Music Journal,2,db/journals/comj/comj28.html#Theodore04,https://doi.org/10.1162/comj.2004.28.2.101 +Kelly Fitz,Cell-Utes and Flutter-Tongued Cats: Sound Morphing Using Loris and the Reassigned Bandwidth-Enhanced Model.,2003,27,Computer Music Journal,3,db/journals/comj/comj27.html#FitzHLCO03,https://doi.org/10.1162/014892603322482529 +Katie Wilkie,What Can the Language of Musicians Tell Us about Music Interaction Design?,2010,34,Computer Music Journal,4,db/journals/comj/comj34.html#WilkieHM10,https://doi.org/10.1162/COMJ_a_00024 +Eric S. Strother,Bob Starrett and Josh McDaniel: The Little Audio CD Book.,2001,25,Computer Music Journal,4,db/journals/comj/comj25.html#Strother01c,https://doi.org/10.1162/comj.2001.25.4.94 +James Harley,FURT: defekt.,2004,28,Computer Music Journal,1,db/journals/comj/comj28.html#Harley04a,https://doi.org/10.1162/comj.2004.28.1.71 +Scott Spiegelberg,Coda Music Technology Finale 2000.,2000,24,Computer Music Journal,4,db/journals/comj/comj24.html#Spiegelberg00,https://doi.org/10.1162/comj.2000.24.4.81 +Margaret Schedel,Freight Elevator Quartet: Fix It In Post.,2003,27,Computer Music Journal,1,db/journals/comj/comj27.html#SchedelY03,https://doi.org/10.1162/comj.2003.27.1.94 +Thor Magnusson,Herding Cats: Observing Live Coding in the Wild.,2014,38,Computer Music Journal,1,db/journals/comj/comj38.html#Magnusson14,https://doi.org/10.1162/COMJ_a_00216 +Vesa Välimäki,Oscillator and Filter Algorithms for Virtual Analog Synthesis.,2006,30,Computer Music Journal,2,db/journals/comj/comj30.html#ValimakiH06,https://doi.org/10.1162/comj.2006.30.2.19 +Brian Belet,The Second Santa Fe International Festival of Electroacoustic Music.,1999,23,Computer Music Journal,1,db/journals/comj/comj23.html#Belet99,https://doi.org/10.1162/comj.1999.23.1.69 +Susan E. George,Online Pen-Based Recognition of Music Notation with Artificial Neural Networks.,2003,27,Computer Music Journal,2,db/journals/comj/comj27.html#George03,https://doi.org/10.1162/014892603322022673 +Chris Kennett,"John Palmer: Jonathan Harvey's ""Bhakti"" for Chamber Ensemble and Electronics.",2003,27,Computer Music Journal,2,db/journals/comj/comj27.html#Kennett03,https://doi.org/10.1162/comj.2003.27.2.111 +Kim Courchene,Letters.,2002,26,Computer Music Journal,4,db/journals/comj/comj26.html#Courchene02,https://doi.org/10.1162/014892602320991310 +Douglas Geers,Dan Hosken: Music Technology and the Project Studio: Synthesis and Sampling.,2013,37,Computer Music Journal,4,db/journals/comj/comj37.html#Geers13,https://doi.org/10.1162/COMJ_r_00207 +Gerard Pape,"Iannis Xenakis and the ""Real"" of Musical Composition.",2002,26,Computer Music Journal,1,db/journals/comj/comj26.html#Pape02,https://doi.org/10.1162/014892602753633515 +John Chowning,Stria: Lines to Its Reconstruction.,2007,31,Computer Music Journal,3,db/journals/comj/comj31.html#Chowning07,https://doi.org/10.1162/comj.2007.31.3.23 +Warren Burt,Henry Gwiazda: noTnoTesnoTrhyThms.,2000,24,Computer Music Journal,4,db/journals/comj/comj24.html#Burt00b,https://doi.org/10.1162/comj.2000.24.4.73 +Seth Aaron Rozanoff,Benjamin O'Brien: For In-Between Times.,2017,41,Computer Music Journal,4,db/journals/comj/comj41.html#Rozanoff17c,https://doi.org/10.1162/COMJ_r_00441 +Ludger Brümmer,Composition and Perception in Spatial Audio.,2017,41,Computer Music Journal,1,db/journals/comj/comj41.html#Brummer17,https://doi.org/10.1162/COMJ_a_00402 +Roger B. Dannenberg,Letters.,2002,26,Computer Music Journal,2,db/journals/comj/comj26.html#Dannenberg02,https://doi.org/10.1162/014892602760137121 +Linda M. Arsenault,Iannis Xenakis's Achorripsis: The Matrix Game.,2002,26,Computer Music Journal,1,db/journals/comj/comj26.html#Arsenault02,https://doi.org/10.1162/014892602753633542 +Ian Whalley,Mike E. Collins: A Professional Guide to Audio Plug-Ins and Virtual Instruments.,2005,29,Computer Music Journal,3,db/journals/comj/comj29.html#Whalley05a,https://doi.org/10.1162/comj.2005.29.3.93 +Nikolaos Stefanakis,Sound Synthesis Based on Ordinary Differential Equations.,2015,39,Computer Music Journal,3,db/journals/comj/comj39.html#StefanakisAB15,https://doi.org/10.1162/COMJ_a_00314 +Eric D. Lyon,Dartmouth Symposium on the Future of Computer Music Software: A Panel Discussion.,2002,26,Computer Music Journal,4,db/journals/comj/comj26.html#Lyon02,https://doi.org/10.1162/014892602320991347 +Christopher Ariza,The Interrogator as Critic: The Turing Test and the Evaluation of Generative Music Systems.,2009,33,Computer Music Journal,2,db/journals/comj/comj33.html#Ariza09,https://doi.org/10.1162/comj.2009.33.2.48 +Michael Gogins,John Oliver: Icicle Blue Avalanche.,2000,24,Computer Music Journal,3,db/journals/comj/comj24.html#Gogins00a,https://doi.org/10.1162/comj.2000.24.3.92a +Ross Feller,Russell Pinkston: Balancing Acts.,2017,41,Computer Music Journal,1,db/journals/comj/comj41.html#Feller17,https://doi.org/10.1162/COMJ_r_00399 +Ian Whalley,Ron Herrema: Changing Weights.,2011,35,Computer Music Journal,3,db/journals/comj/comj35.html#Whalley11,https://doi.org/10.1162/COMJ_r_00075 +Michael Boyd,Thomas DeLio: Selected Compositions (1991-2013).,2015,39,Computer Music Journal,1,db/journals/comj/comj39.html#Boyd15,https://doi.org/10.1162/COMJ_r_00287 +Mark Wagy,Various: Foro De Comunicaciones Electroacústicas Vol. III.,2005,29,Computer Music Journal,1,db/journals/comj/comj29.html#Wagy05a,https://doi.org/10.1162/comj.2005.29.1.98 +Jonas Braasch,A Loudspeaker-Based Projection Technique for Spatial Music Applications Using Virtual Microphone Control.,2008,32,Computer Music Journal,3,db/journals/comj/comj32.html#BraaschPV08,https://doi.org/10.1162/comj.2008.32.3.55 +Camille Goudeseune,Jon Welstead and Yehuda Yannay: The Ghost in the Machine.,2000,24,Computer Music Journal,3,db/journals/comj/comj24.html#Goudeseune00,https://doi.org/10.1162/comj.2000.24.3.88 +David G. Malham,Toward Reality Equivalence in Spatial Sound Diffusion.,2001,25,Computer Music Journal,4,db/journals/comj/comj25.html#Malham01,https://doi.org/10.1162/01489260152815279 +Nick Collins,A Funny Thing Happened on the Way to the Formula: Algorithmic Composition for Musical Theater.,2016,40,Computer Music Journal,3,db/journals/comj/comj40.html#Collins16,https://doi.org/10.1162/COMJ_a_00373 +Matthew L. Cooper,Visualization in Audio-Based Music Information Retrieval.,2006,30,Computer Music Journal,2,db/journals/comj/comj30.html#CooperFPT06,https://doi.org/10.1162/comj.2006.30.2.42 +James Harley,Trevor Wishart: voiceprints.,2003,27,Computer Music Journal,4,db/journals/comj/comj27.html#Harley03,https://doi.org/10.1162/comj.2003.27.4.101 +Robert Cummings,The Frog Peak Collaborations Project.,1999,23,Computer Music Journal,2,db/journals/comj/comj23.html#Cummings99c,https://doi.org/10.1162/comj.1999.23.2.104 +Nico Schüler,Alternating Currents: Electronic Music from The University of Michigan.,2003,27,Computer Music Journal,2,db/journals/comj/comj27.html#Schuler03,https://doi.org/10.1162/comj.2003.27.2.119 +M. Sile O'Modhrain,A Framework for the Evaluation of Digital Musical Instruments.,2011,35,Computer Music Journal,1,db/journals/comj/comj35.html#OModhrain11,https://doi.org/10.1162/COMJ_a_00038 +James McCartney,Rethinking the Computer Music Language: SuperCollider.,2002,26,Computer Music Journal,4,db/journals/comj/comj26.html#McCartney02,https://doi.org/10.1162/014892602320991383 +Peter F. Driessen,The Effects of Network Delay on Tempo in Musical Performance.,2011,35,Computer Music Journal,1,db/journals/comj/comj35.html#DriessenDP11,https://doi.org/10.1162/COMJ_a_00041 +Jean-François Charles,A Tutorial on Spectral Sound Processing Using Max/MSP and Jitter.,2008,32,Computer Music Journal,3,db/journals/comj/comj32.html#Charles08,https://doi.org/10.1162/comj.2008.32.3.87 +Joseph Reinsel,Jon Rose: The Hyperstring Project. The New Dynamic of Rogue Counterpoint.,2001,25,Computer Music Journal,4,db/journals/comj/comj25.html#Reinsel01,https://doi.org/10.1162/comj.2001.25.4.99 +Jônatas Manzolli,Roboser: A Real-World Composition System.,2005,29,Computer Music Journal,3,db/journals/comj/comj29.html#ManzolliV05,https://doi.org/10.1162/0148926054798133 +Jyri Pakarinen,A Review of Digital Techniques for Modeling Vacuum-Tube Guitar Amplifiers.,2009,33,Computer Music Journal,2,db/journals/comj/comj33.html#PakarinenY09,https://doi.org/10.1162/comj.2009.33.2.85 +Michael Gogins,Dmitri Tymoczko: A Geometry of Music: Harmony and Counterpoint in the Extended Common Practice.,2012,36,Computer Music Journal,1,db/journals/comj/comj36.html#Gogins12,https://doi.org/10.1162/COMJ_r_00108 +Scott Wilson,Free as in BEER: Some Explorations into Structured Improvisation Using Networked Live-Coding Systems.,2014,38,Computer Music Journal,1,db/journals/comj/comj38.html#WilsonLCVM14,https://doi.org/10.1162/COMJ_a_00229 +José Luis Triviño-Rodriguez,Using Multiattribute Prediction Suffix Graphs to Predict and Generate Music.,2001,25,Computer Music Journal,3,db/journals/comj/comj25.html#Trivino-Rodriguez01,https://doi.org/10.1162/014892601753189547 +Dominic Mazzoni,A Fast Data Structure for Disk-Based Audio Editing.,2002,26,Computer Music Journal,2,db/journals/comj/comj26.html#MazzoniD02,https://doi.org/10.1162/014892602760137185 +Eliot Handelman,David Cope: Virtual Bach.,2005,29,Computer Music Journal,1,db/journals/comj/comj29.html#Handelman05,https://doi.org/10.1162/comj.2005.29.1.91 +Jim W. Murphy,Expressive Robotic Guitars: Developments in Musical Robotics for Chordophones.,2015,39,Computer Music Journal,1,db/journals/comj/comj39.html#MurphyMMCK15,https://doi.org/10.1162/COMJ_a_00285 +Seth Aaron Rozanoff,Peter Evans Quintet: Genesis.,2017,41,Computer Music Journal,2,db/journals/comj/comj41.html#Rozanoff17a,https://doi.org/10.1162/COMJ_r_00416 +Mikael Laurson,Methods for Modeling Realistic Playing in Acoustic Guitar Synthesis.,2001,25,Computer Music Journal,3,db/journals/comj/comj25.html#LaursonEVK01,https://doi.org/10.1162/014892601753189529 +James Bohn,David Cope: Classical Music Composed by Computer: Experiments in Musical Intelligence.,1999,23,Computer Music Journal,1,db/journals/comj/comj23.html#Bohn99,https://doi.org/10.1162/comj.1999.23.1.86 +Evan Jones,An Acoustic Analysis of Col Legno Articulation in Iannis Xenakis's Nomos Alpha.,2002,26,Computer Music Journal,1,db/journals/comj/comj26.html#Jones02,https://doi.org/10.1162/014892602753633551 +D. Gareth Loy,Stephen Travis Pope: Ritual and Memory.,2010,34,Computer Music Journal,3,db/journals/comj/comj34.html#LoyS10,https://doi.org/10.1162/COMJ_r_00010 +David Zicarelli,How I Learned to Love a Program That Does Nothing.,2002,26,Computer Music Journal,4,db/journals/comj/comj26.html#Zicarelli02,https://doi.org/10.1162/014892602320991365 +Ross Feller,Felipe Otondo: Tutuguri.,2013,37,Computer Music Journal,4,db/journals/comj/comj37.html#Feller13c,https://doi.org/10.1162/COMJ_r_00205 +Michael Krzyzaniak,Interactive Learning of Timbral Rhythms for Percussion Robots.,2018,42,Computer Music Journal,2,db/journals/comj/comj42.html#Krzyzaniak18,https://doi.org/10.1162/comj_a_00459 +Michael Boyd,John Luther Adams: The Place Where You Go to Listen: In Search of an Ecology of Music.,2011,35,Computer Music Journal,2,db/journals/comj/comj35.html#Boyd11,https://doi.org/10.1162/COMJ_r_00061 +Gil Weinberg,Interconnected Musical Networks: Toward a Theoretical Framework.,2005,29,Computer Music Journal,2,db/journals/comj/comj29.html#Weinberg05,https://doi.org/10.1162/0148926054094350 +Shlomo Dubnov,Spectral Anticipations.,2006,30,Computer Music Journal,2,db/journals/comj/comj30.html#Dubnov06,https://doi.org/10.1162/comj.2006.30.2.63 +Jonathan Brown,Alexander Berne and The Abandoned Orchestra: Self Referentials Volumes 1 and 2.,2013,37,Computer Music Journal,4,db/journals/comj/comj37.html#Brown13,https://doi.org/10.1162/COMJ_r_00204 +Dave Phillips,Computer Music and the Linux Operating System: A Report from the Front.,2003,27,Computer Music Journal,4,db/journals/comj/comj27.html#Phillips03,https://doi.org/10.1162/014892603322730488 +Laurie Radford,Meta Duo: Korea-Sax.,2009,33,Computer Music Journal,4,db/journals/comj/comj33.html#Radford09a,https://doi.org/10.1162/comj.2009.33.4.88 +Sean Soraghan,A New Timbre Visualization Technique Based on Semantic Descriptors.,2018,42,Computer Music Journal,1,db/journals/comj/comj42.html#SoraghanFRS18,https://doi.org/10.1162/comj_a_00449 +Goktug T. Cinar,A Study of Musical Pitch Distance Using a Self-Organized Hierarchical Linear Dynamical System on Acoustic Signals.,2016,40,Computer Music Journal,3,db/journals/comj/comj40.html#CinarSP16,https://doi.org/10.1162/COMJ_a_00375 +Takebumi Itagaki,The 108th Audio Engineering Society Convention.,2000,24,Computer Music Journal,4,db/journals/comj/comj24.html#Itagaki00,https://doi.org/10.1162/014892600559524 +Jeffrey Treviño,Simon Emmerson: Spaces and Places.,2008,32,Computer Music Journal,4,db/journals/comj/comj32.html#Trevino08a,https://doi.org/10.1162/comj.2008.32.4.88 +Laurie Radford,Gonzalo Biffarella: Mestizaje.,2000,24,Computer Music Journal,4,db/journals/comj/comj24.html#Radford00a,https://doi.org/10.1162/comj.2000.24.4.78 +Alcides Lanza,Barry Truax: Islands: Soundscape CompositionsBarry Truax: Twin Souls: Text-Based Electroacoustic Music.,2003,27,Computer Music Journal,2,db/journals/comj/comj27.html#Lanza03,https://doi.org/10.1162/comj.2003.27.2.118 +James Harley,The Electroacoustic Music of Iannis Xenakis.,2002,26,Computer Music Journal,1,db/journals/comj/comj26.html#Harley02a,https://doi.org/10.1162/014892602753633533 +Victor Lazzarini,The Generation of Natural-Synthetic Spectra by Means of Adaptive Frequency Modulation.,2008,32,Computer Music Journal,2,db/journals/comj/comj32.html#LazzariniTL08,https://doi.org/10.1162/comj.2008.32.2.9 +Margaret Cahill,Bill Purse: The PrintMusic! Primer - Mastering the Art of Music Notation with Finale PrintMusic!,2005,29,Computer Music Journal,2,db/journals/comj/comj29.html#Cahill05,https://doi.org/10.1162/comj.2005.29.2.93 +Ross Feller,Nicolas Collins: Salvaged - Compositions 1986-2014.,2016,40,Computer Music Journal,4,db/journals/comj/comj40.html#Feller16b,https://doi.org/10.1162/COMJ_r_00385 +Cynthia Bruyns,Modal Synthesis for Arbitrarily Shaped Objects.,2006,30,Computer Music Journal,3,db/journals/comj/comj30.html#Bruyns06,https://doi.org/10.1162/comj.2006.30.3.22 +Sasha Leitman,Trimpin: An Interview.,2011,35,Computer Music Journal,4,db/journals/comj/comj35.html#Leitman11,https://doi.org/10.1162/COMJ_a_00088 +Shlomo Dubnov,Martin Russ: Sound Synthesis and Sampling.,2000,24,Computer Music Journal,3,db/journals/comj/comj24.html#Dubnov00,https://doi.org/10.1162/comj.2000.24.3.71 +Carlos Guedes,Reflections on Music Programming for Conferences: The Case of SMC 2009.,2010,34,Computer Music Journal,3,db/journals/comj/comj34.html#GuedesR10,https://doi.org/10.1162/COMJ_a_00003 +Tae Hong Park,An Interview with Max Mathews.,2009,33,Computer Music Journal,3,db/journals/comj/comj33.html#Park09a,https://doi.org/10.1162/comj.2009.33.3.9 +Florian Wendt,Perception of Spatial Sound Phenomena Created by the Icosahedral Loudspeaker.,2017,41,Computer Music Journal,1,db/journals/comj/comj41.html#WendtSFZH17,https://doi.org/10.1162/COMJ_a_00396 +Werner Goebl,Investigations of Between-Hand Synchronization in Magaloff's Chopin.,2010,34,Computer Music Journal,3,db/journals/comj/comj34.html#GoeblFW10,https://doi.org/10.1162/COMJ_a_00002 +Colby Leider,Society for Electro-Acoustic Music in the United States National Conference 2000.,2000,24,Computer Music Journal,4,db/journals/comj/comj24.html#Leider00a,https://doi.org/10.1162/comj.2000.24.4.65 +Matteo Meneghini,An Analysis of the Compositional Techniques in John Chowning's Stria.,2007,31,Computer Music Journal,3,db/journals/comj/comj31.html#Meneghini07,https://doi.org/10.1162/comj.2007.31.3.26 +Martin Alejandro Fumarola,Electroacoustic Music Practice in Latin America: An Interview with Juan Amenábar.,1999,23,Computer Music Journal,1,db/journals/comj/comj23.html#Fumarola99,https://doi.org/10.1162/014892699559634 +François Pachet,Description-Based Design of Melodies.,2009,33,Computer Music Journal,4,db/journals/comj/comj33.html#Pachet09,https://doi.org/10.1162/comj.2009.33.4.56 +Mathieu Giraud,Computational Fugue Analysis.,2015,39,Computer Music Journal,2,db/journals/comj/comj39.html#GiraudGLL15,https://doi.org/10.1162/COMJ_a_00300 +Ryan Ulyate,The Interactive Dance Club: Avoiding Chaos in a Multi-Participant Environment.,2002,26,Computer Music Journal,3,db/journals/comj/comj26.html#UlyateB02,https://doi.org/10.1162/014892602320582963 +Nico Schüler,Renee Timmers: Freedom and Constraints in Timing and Ornamentation.,2004,28,Computer Music Journal,1,db/journals/comj/comj28.html#Schuler04,https://doi.org/10.1162/comj.2004.28.1.68 +Ge Wang 0002,ChucK: A Strongly Timed Computer Music Language.,2015,39,Computer Music Journal,4,db/journals/comj/comj39.html#WangCS15,https://doi.org/10.1162/COMJ_a_00324 +Perry Cook,Eduardo Reck Miranda: Mother Tongue.,2004,28,Computer Music Journal,4,db/journals/comj/comj28.html#Cook04,https://doi.org/10.1162/comj.2004.28.4.95 +Bob L. Sturm,Lutz Trautmann and Rudolf Rabenstein: Digital Sound Synthesis by Physical Modeling Using the Functional Transformation Method.,2005,29,Computer Music Journal,2,db/journals/comj/comj29.html#Sturm05,https://doi.org/10.1162/comj.2005.29.2.91 +Michael Berry,An Introduction to Grain Wave.,1999,23,Computer Music Journal,1,db/journals/comj/comj23.html#Berry99,https://doi.org/10.1162/014892699559652 +Seth Aaron Rozanoff,Yannis Kyriakides and Andy Moor: A Life Is a Billion Heartbeats.,2016,40,Computer Music Journal,2,db/journals/comj/comj40.html#Rozanoff16,https://doi.org/10.1162/COMJ_r_00361 +James Harley,Institut National de l'Audiovisuel: Portraits Polychromes: Max Mathews.,2008,32,Computer Music Journal,1,db/journals/comj/comj32.html#Harley08,https://doi.org/10.1162/comj.2008.32.1.95 +Mark Wagy,Halou: Wholeness E.P.,2005,29,Computer Music Journal,1,db/journals/comj/comj29.html#Wagy05,https://doi.org/10.1162/comj.2005.29.1.96 +Martin Eckart,Percussa AudioCubes Sensors/Controllers.,2009,33,Computer Music Journal,4,db/journals/comj/comj33.html#Eckart09,https://doi.org/10.1162/comj.2009.33.4.93 +Axel Röbel,Frequency-Slope Estimation and Its Application to Parameter Estimation for Non-Stationary Sinusoids.,2008,32,Computer Music Journal,2,db/journals/comj/comj32.html#Robel08,https://doi.org/10.1162/comj.2008.32.2.68 +Jonathan Bragg,Mathematics and Computation in Music 2009: John Clough Memorial Conference.,2010,34,Computer Music Journal,1,db/journals/comj/comj34.html#BraggH10,https://doi.org/10.1162/comj.2010.34.1.100 +Georg Essl,Theory of Banded Waveguides.,2004,28,Computer Music Journal,1,db/journals/comj/comj28.html#EsslSCS04,https://doi.org/10.1162/014892604322970634 +Roger B. Dannenberg,Interactive Visual Music: A Personal Perspective.,2005,29,Computer Music Journal,4,db/journals/comj/comj29.html#Dannenberg05,https://doi.org/10.1162/014892605775179964 +Eric D. Scheirer,SAOL: The MPEG-4 Structured Audio Orchestra Language.,1999,23,Computer Music Journal,2,db/journals/comj/comj23.html#ScheirerV99,https://doi.org/10.1162/014892699559742 +Adriana Olmos,A High-Fidelity Orchestra Simulator for Individual Musicians' Practice.,2012,36,Computer Music Journal,2,db/journals/comj/comj36.html#OlmosBKMRC12,https://doi.org/10.1162/COMJ_a_00119 +Guillermo Pozzati,Gen: A Lisp Music Environment.,2000,24,Computer Music Journal,3,db/journals/comj/comj24.html#Pozzati00,https://doi.org/10.1162/014892600559443 +Anders Friberg,pDM: An Expressive Sequencer with Real-Time Control of the KTH Music-Performance Rules.,2006,30,Computer Music Journal,1,db/journals/comj/comj30.html#Friberg06,https://doi.org/10.1162/comj.2006.30.1.37 +James Bohn,Erik Belgum: Strange Neonatal Cry.,2003,27,Computer Music Journal,4,db/journals/comj/comj27.html#Bohn03,https://doi.org/10.1162/comj.2003.27.4.99 +Jan C. Schacher,The Map and the Flock: Emergence in Mapping with Swarm Algorithms.,2014,38,Computer Music Journal,3,db/journals/comj/comj38.html#SchacherBK14,https://doi.org/10.1162/COMJ_a_00256 +Adam Linson,A Subsumption Agent for Collaborative Free Improvisation.,2015,39,Computer Music Journal,4,db/journals/comj/comj39.html#LinsonDLL15,https://doi.org/10.1162/COMJ_a_00323 +Donald Byrd,A Music Representation Requirement Specification for Academia.,2003,27,Computer Music Journal,4,db/journals/comj/comj27.html#ByrdI03,https://doi.org/10.1162/014892603322730497 +Douglas Geers,Jennifer A. Lennon: Hypermedia Systems and Applications: World Wide Web and Beyond.,2000,24,Computer Music Journal,3,db/journals/comj/comj24.html#Geers00,https://doi.org/10.1162/comj.2000.24.3.79 +Andrea Agostini,A Max Library for Musical Notation and Computer-Aided Composition.,2015,39,Computer Music Journal,2,db/journals/comj/comj39.html#AgostiniG15,https://doi.org/10.1162/COMJ_a_00296 +Ian Whalley,David Temperley: Music and Probability.,2010,34,Computer Music Journal,1,db/journals/comj/comj34.html#Whalley10,https://doi.org/10.1162/comj.2010.34.1.102 +Franz Zotter,A Beamformer to Play with Wall Reflections: The Icosahedral Loudspeaker.,2017,41,Computer Music Journal,3,db/journals/comj/comj41.html#ZotterZFK17,https://doi.org/10.1162/comj_a_00429 +Patrick J. Donnelly,Classification of Musical Timbre Using Bayesian Networks.,2013,37,Computer Music Journal,4,db/journals/comj/comj37.html#DonnellyS13,https://doi.org/10.1162/COMJ_a_00210 +Meg Schedel,Natasha Barrett: Isostasie.,2003,27,Computer Music Journal,4,db/journals/comj/comj27.html#Schedel03a,https://doi.org/10.1162/comj.2003.27.4.98 +Hubert Howe,My Experiences with Max Mathews in the Early Days of Computer Music.,2009,33,Computer Music Journal,3,db/journals/comj/comj33.html#Howe09,https://doi.org/10.1162/comj.2009.33.3.41 +Thierry Delatour,Molecular Music: The Acoustic Conversion of Molecular Vibrational Spectra.,2000,24,Computer Music Journal,3,db/journals/comj/comj24.html#Delatour00,https://doi.org/10.1162/014892600559335 +Stephen Lilly,Agostino Di Scipio: Paysages historiques: musique électroacoustique 1998-2005.,2008,32,Computer Music Journal,3,db/journals/comj/comj32.html#Lilly08,https://doi.org/10.1162/comj.2008.32.3.110 +David Cope,Computer Analysis of Musical Allusions.,2003,27,Computer Music Journal,1,db/journals/comj/comj27.html#Cope03,https://doi.org/10.1162/01489260360613317 +Gil Weinberg,The Squeezables: Toward an Expressive and Interdependent Multi-player Musical Instrument.,2001,25,Computer Music Journal,2,db/journals/comj/comj25.html#WeinbergG01,https://doi.org/10.1162/014892601750302570 +Eliot Handelman,Geert Lovink: Uncanny Networks: Dialogs with the Virtual Intelligentsia.,2004,28,Computer Music Journal,2,db/journals/comj/comj28.html#Handelman04,https://doi.org/10.1162/comj.2004.28.2.86 +Bob Gluck,Nurturing Young Composers: Morton Subotnick's Late-1960s Studio in New York City.,2012,36,Computer Music Journal,1,db/journals/comj/comj36.html#Gluck12,https://doi.org/10.1162/COMJ_a_00106 +James Harley,XVIII Colloquio di Informatica Musicale: Prossime distanze.,2011,35,Computer Music Journal,2,db/journals/comj/comj35.html#Harley11b,https://doi.org/10.1162/COMJ_r_00060 +Ross Feller,Hubert Howe: Clusters.,2012,36,Computer Music Journal,4,db/journals/comj/comj36.html#Feller12c,https://doi.org/10.1162/COMJ_r_00143 +Dario Sanfilippo,Feedback Systems: An Analytical Framework.,2013,37,Computer Music Journal,2,db/journals/comj/comj37.html#SanfilippoV13,https://doi.org/10.1162/COMJ_a_00176 +Sang Won Lee 0002,Real-Time Music Notation in Mixed Laptop-Acoustic Ensembles.,2013,37,Computer Music Journal,4,db/journals/comj/comj37.html#LeeF13,https://doi.org/10.1162/COMJ_a_00202 +Benny Sluchin,A Computer-Assisted Version of Stockhausen's Solo for a Melody Instrument with Feedback.,2000,24,Computer Music Journal,2,db/journals/comj/comj24.html#Sluchin00,https://doi.org/10.1162/014892600559308 +Patricia L. Dirks,Annette Vande Gorne: Impalpables: Poèmes de Werner Lambersy.,1999,23,Computer Music Journal,1,db/journals/comj/comj23.html#Dirks99,https://doi.org/10.1162/comj.1999.23.1.90 +Andrew J. Milne,Isomorphic Controllers and Dynamic Tuning: Invariant Fingering over a Tuning Continuum.,2007,31,Computer Music Journal,4,db/journals/comj/comj31.html#MilneSP07,https://doi.org/10.1162/comj.2007.31.4.15 +Jorge Solis,The Waseda Flutist Robot WF-4RII in Comparison with a Professional Flutist.,2006,30,Computer Music Journal,4,db/journals/comj/comj30.html#SolisCTHST06,https://doi.org/10.1162/comj.2006.30.4.12 +Lorenzo J. Tardón,A Multidimensional Environment for the Exploration of Musical Content.,2012,36,Computer Music Journal,3,db/journals/comj/comj36.html#TardonSBB12,https://doi.org/10.1162/COMJ_a_00137 +Keith Muscutt,Composing with Algorithms: An Interview with David Cope.,2007,31,Computer Music Journal,3,db/journals/comj/comj31.html#Muscutt07,https://doi.org/10.1162/comj.2007.31.3.10 +Eric Wallin,Delta-Sigma Waveguides for Music Synthesis.,1999,23,Computer Music Journal,4,db/journals/comj/comj23.html#WallinWS99,https://doi.org/10.1162/014892699559986 +Bruce Quaglia,Charles Madden: Fractals in Music: Introductory Mathematics for Musical Analysis.,2000,24,Computer Music Journal,3,db/journals/comj/comj24.html#Quaglia00,https://doi.org/10.1162/comj.2000.24.3.84 +Eric S. Strother,Sony Media Acid 5.0 Music Studio and Acid 5.0 Pro.,2005,29,Computer Music Journal,3,db/journals/comj/comj29.html#Strother05a,https://doi.org/10.1162/comj.2005.29.3.106 +Christopher Ariza,Two Pioneering Projects from the Early History of Computer-Aided Algorithmic Composition.,2011,35,Computer Music Journal,3,db/journals/comj/comj35.html#Ariza11,https://doi.org/10.1162/COMJ_a_00068 +Andrew Fletcher,Dennis Miller: Seven Animations.,2009,33,Computer Music Journal,1,db/journals/comj/comj33.html#Fletcher09,https://doi.org/10.1162/comj.2009.33.1.80 +David T. Yeh,Numerical Methods for Simulation of Guitar Distortion Circuits.,2008,32,Computer Music Journal,2,db/journals/comj/comj32.html#YehAVS08,https://doi.org/10.1162/comj.2008.32.2.23 +Joyce Shintani,Sónar in 2009: 16th Barcelona International Festival of Advanced Music and Multimedia Art.,2010,34,Computer Music Journal,3,db/journals/comj/comj34.html#ShintaniK10a,https://doi.org/10.1162/COMJ_r_00007 +Chrisoula Alexandraki,Exploring New Perspectives in Network Music Performance: The DIAMOUSES Framework.,2010,34,Computer Music Journal,2,db/journals/comj/comj34.html#AlexandrakiA10,https://doi.org/10.1162/comj.2010.34.2.66 +François Rose,Enhancing Orchestration Technique via Spectrally Based Linear Algebra Methods.,2009,33,Computer Music Journal,1,db/journals/comj/comj33.html#RoseH09,https://doi.org/10.1162/comj.2009.33.1.32 +Carmine Sellitto,A study of journal publication attributes: Some considerations for academics in the information systems discipline.,2009,6,Webology,1,db/journals/webology/webology6.html#Sellitto09,http://www.webology.org/2009/v6n1/a66.html +Leila Dehghani,Citations to highly-cited researchers by their co-authors and their self-citations: How these factors affect highly-cited researchers' h-index in Scopus.,2011,8,Webology,2,db/journals/webology/webology8.html#DehghaniJG11,http://www.webology.org/2011/v8n2/a91.html +Neeraj Kumar Singh,Citation Analysis of Journal of Documentation.,2011,8,Webology,1,db/journals/webology/webology8.html#SinghSK11,http://www.webology.org/2011/v8n1/a86.html +Isabella Peters,Tag Gardening for Folksonomy Enrichment and Maintenance.,2008,5,Webology,3,db/journals/webology/webology5.html#PetersW08,http://www.webology.ir/2008/v5n3/a58.html +Andrey A. Pechnikov,Webometric analysis of Nigerian university web sites.,2012,9,Webology,1,db/journals/webology/webology9.html#PechnikovN12,http://www.webology.org/2012/v9n1/a95.html +Emilie Steele Giustozzi,"The new competitive intelligence agents: ""Programming"" competitive intelligence ethics into corporate cultures.",2011,8,Webology,2,db/journals/webology/webology8.html#GiustozziM11,http://www.webology.org/2011/v8n2/a88.html +Alireza Noruzi,The International Scope of Webology.,2007,4,Webology,3,db/journals/webology/webology4.html#Noruzi07a,http://www.webology.org/2007/v4n3/editorial13.html +Osaheni Oni,Cataloguers' Awareness and Perception of Resource Description and Access (RDA) Rules for Cataloguing Practice in Some Selected Libraries in Bauchi State of Nigeria.,2018,15,Webology,1,db/journals/webology/webology15.html#OniOA18,http://www.webology.org/2018/v15n1/a168.pdf +Musfiq Mannan Choudhury,Identification of the characteristics of e-commerce websites.,2010,7,Webology,1,db/journals/webology/webology7.html#ChoudhuryC10,http://www.webology.org/2010/v7n1/a77.html +Megan Alessandrini,Getting Connected: Can Social Capital be Virtual?,2006,3,Webology,4,db/journals/webology/webology3.html#Alessandrini06,http://www.webology.org/2006/v3n4/a33.html +Shima Moradi,Analysis of citation rate of papers with titles containing a country name.,2016,13,Webology,2,db/journals/webology/webology13.html#MoradiA16,http://www.webology.org/2016/v13n2/a151.pdf +William F. Birdsall,Web 2.0 as a Social Movement.,2007,4,Webology,2,db/journals/webology/webology4.html#Birdsall07,http://www.webology.org/2007/v4n2/a40.html +Yazdan Mansourian,Similarities and differences between Web search procedure and searching in the pre-web information retrieval systems.,2004,1,Webology,1,db/journals/webology/webology1.html#Mansourian04,http://www.webology.org/2004/v1n1/a3.html +Karen Okamoto,What is being done with open government data? An exploratory analysis of public uses of New York City open data.,2016,13,Webology,1,db/journals/webology/webology13.html#Okamoto16,http://www.webology.org/2016/v13n1/a142.pdf +Alireza Abbasi,E-Commerce Development in Iran.,2007,4,Webology,4,db/journals/webology/webology4.html#Abbasi07,http://www.webology.org/2007/v4n4/a49.html +Rajni Jindal,Techniques for text classification: Literature review and current trends.,2015,12,Webology,2,db/journals/webology/webology12.html#JindalMJ15,http://www.webology.org/2015/v12n2/a139.pdf +Sven Bittner,Social networking tools and research information systems: Do they compete?,2011,8,Webology,1,db/journals/webology/webology8.html#BittnerM11,http://www.webology.org/2011/v8n1/a82.html +Leon James,A discourse analysis technique for charting the flow of interactions in online activity.,2014,11,Webology,2,db/journals/webology/webology11.html#JamesN14a,http://www.webology.org/2014/v11n2/a123.pdf +Babak Sohrabi,Designing a Predictive Analytics Solution for Evaluating the Scientific Trends in Information Systems Domain.,2017,14,Webology,1,db/journals/webology/webology14.html#SohrabiVS17,http://www.webology.org/2017/v14n1/a154.pdf +Ravi S. Sharma,The impact of electronic word-of-mouth in the distribution of digital goods.,2011,8,Webology,1,db/journals/webology/webology8.html#SharmaP11,http://www.webology.org/2011/v8n1/a84.html +Elizaveta E. Tarasova,Improvement of methodical approaches to higher schools' marketing activity assessment on the basis of internet technologies application.,2014,11,Webology,1,db/journals/webology/webology11.html#TarasovaS14,http://www.webology.org/2014/v11n1/a121.pdf +Alireza Noruzi,Editorial: Hyperlinks and Their Roles in Web Information Retrieval.,2005,2,Webology,3,db/journals/webology/webology2.html#Noruzi05b,http://www.webology.org/2005/v2n3/editorial5.html +Mehrnoush Mozaffarian,The Indexing Companion / Glenda Browne and Jon Jermey.,2007,4,Webology,4,db/journals/webology/webology4.html#Mozaffarian07,http://www.webology.org/2007/v4n4/bookreview9.html +Umberto Panniello,How to use recommender systems in e-business domains.,2014,11,Webology,2,db/journals/webology/webology11.html#Panniello14,http://www.webology.org/2014/v11n2/a127.pdf +Vladimir M. Moskovkin,What is the cost of bibliometric games to taxpayers?,2016,13,Webology,2,db/journals/webology/webology13.html#MoskovkinS16,http://www.webology.org/2016/v13n2/a148.pdf +Louise Spiteri,Structure and form of folksonomy tags: The road to the public library catalogue.,2007,4,Webology,2,db/journals/webology/webology4.html#Spiteri07,http://www.webology.org/2007/v4n2/a41.html +Maryam Sarrafzadeh,Instruction of Citation Management Tools by Academic Librarians: The Need for Training the Trainers.,2017,14,Webology,1,db/journals/webology/webology14.html#SarrafzadehK17,http://www.webology.org/2017/v14n1/a155.pdf +Shushan Rana,Bibliometric analysis of output and visibility of science and technology in Singapore during 2000-2009.,2012,9,Webology,1,db/journals/webology/webology9.html#Rana12,http://www.webology.org/2012/v9n1/a96.html +Mansoor Al-A'Ali,A Study of Email Spam and How to Effectively Combat It.,2007,4,Webology,1,db/journals/webology/webology4.html#Al-AAli07,http://www.webology.org/2007/v4n1/a37.html +Veronica F. McGowan,Web page publishing policy: Developing taxonomy for private higher education settings based on current practice.,2011,8,Webology,2,db/journals/webology/webology8.html#McGowan11,http://www.webology.org/2011/v8n2/a89.html +Ina Fourie,Digital Consumers Reshaping the Information Profession / David Nicholas and Ian Rowlands.,2008,5,Webology,4,db/journals/webology/webology5.html#Fourie08,http://www.webology.ir/2008/v5n4/bookreview17.html +Alireza Noruzi,Webotherapy and Beyond.,2006,3,Webology,3,db/journals/webology/webology3.html#Noruzi06b,http://www.webology.org/2006/v3n3/editorial9.html +Chihli Hung,A Personalized Word of Mouth Recommender Model.,2008,5,Webology,3,db/journals/webology/webology5.html#Hung08,http://www.webology.ir/2008/v5n3/a61.html +Kirsty Young,Adult Friendships in the Facebook Era.,2013,10,Webology,1,db/journals/webology/webology10.html#Young13,http://www.webology.org/2013/v10n1/a103.html +Alireza Noruzi,Educational Impact and Open Access Journals.,2007,4,Webology,4,db/journals/webology/webology4.html#Noruzi07b,http://www.webology.org/2007/v4n4/editorial14.html +Mohammadamin Erfanmanesh,Internet and Social Media Addiction.,2015,12,Webology,2,db/journals/webology/webology12.html#ErfanmaneshH15,http://www.webology.org/2015/v12n2/bookreview25.pdf +Veronica F. McGowan,Perspectives of academic web content managers on the effectiveness of web publishing and web hosting policies.,2013,10,Webology,2,db/journals/webology/webology10.html#McGowanM13,http://www.webology.org/2013/v10n2/a112.pdf +Maja van der Velden,Organising Development Knowledge: Towards Situated Classification Work on the Web.,2008,5,Webology,3,db/journals/webology/webology5.html#Velden08,http://www.webology.ir/2008/v5n3/a60.html +Ifeanyi J. Ezema,Trends in electronic journal publishing in Africa: an analysis of African Journal Online (AJOL).,2010,7,Webology,1,db/journals/webology/webology7.html#Ezema10,http://www.webology.org/2010/v7n1/a74.html +Renuka S. Mulimani,Pharmacy and Pharmacology Research in the BRICS Countries: A Scientometric Analysis.,2018,15,Webology,1,db/journals/webology/webology15.html#MulimaniH18,http://www.webology.org/2018/v15n1/a166.pdf +Isabel Galina,Institutional Repositories: Content and Culture in an Open Access Environment / Catherine Jones.,2007,4,Webology,4,db/journals/webology/webology4.html#Galina07a,http://www.webology.org/2007/v4n4/bookreview10.html +Solomia Fedushko,Development of a software for computer-linguistic verification of socio-demographic profile of web-community member.,2014,11,Webology,2,db/journals/webology/webology11.html#Fedushko14,http://www.webology.org/2014/v11n2/a126.pdf +Mehdi Safari,Search Engines and Resource Discovery on the Web: Is Dublin Core an Impact Factor?,2005,2,Webology,2,db/journals/webology/webology2.html#Safari05,http://www.webology.org/2005/v2n2/a13.html +Amanda Spink,A Study of Web Search Trends.,2004,1,Webology,2,db/journals/webology/webology1.html#SpinkJ04,http://www.webology.org/2004/v1n2/a4.html +David Nicholas,Have digital repositories come of age? The views of library directors.,2013,10,Webology,2,db/journals/webology/webology10.html#NicholasRWBRJ13,http://www.webology.org/2013/v10n2/a111.pdf +Marya Butt,Result-oriented e-government evaluation: Citizen's perspective.,2014,11,Webology,2,db/journals/webology/webology11.html#Butt14,http://www.webology.org/2014/v11n2/a124.pdf +Sepideh Fahimifar,Visualizing Subjective Mapping in the Field of E-book Publishing in the Context of Users and Librarians.,2018,15,Webology,1,db/journals/webology/webology15.html#FahimifarHC18,http://www.webology.org/2018/v15n1/a167.pdf +Laurie A. Henry,Information Search Strategies on the Internet: A Critical Component of New Literacies.,2005,2,Webology,1,db/journals/webology/webology2.html#Henry05,http://www.webology.org/2005/v2n1/a9.html +M. P. S. Bhatia,Information Retrieval and Machine Learning: Supporting Technologies for Web Mining Research and Practice.,2008,5,Webology,2,db/journals/webology/webology5.html#BhatiaK08,http://www.webology.ir/2008/v5n2/a55.html +Kingkaew Patitungkho,Information Seeking Behaviour of Faculty Members of Rajabhat Universities in Bangkok.,2005,2,Webology,4,db/journals/webology/webology2.html#PatitungkhoD05,http://www.webology.org/2005/v2n4/a20.html +Alireza Noruzi,Application of Ranganathan's Laws to the Web.,2004,1,Webology,2,db/journals/webology/webology1.html#Noruzi04a,http://www.webology.org/2004/v1n2/a8.html +Vahideh Zarea Gavgani,High school students' perspective on the features of consumer health information websites.,2016,13,Webology,1,db/journals/webology/webology13.html#GavganiMSA16,http://www.webology.org/2016/v13n1/a147.pdf +S. M. Shafi,Precision and Recall of Five Search Engines for Retrieval of Scholarly Information in the Field of Biotechnology.,2005,2,Webology,2,db/journals/webology/webology2.html#ShafiR05,http://www.webology.org/2005/v2n2/a12.html +Roman Korzh,The cataloging of virtual communities of educational thematic.,2014,11,Webology,1,db/journals/webology/webology11.html#KorzhPSF14,http://www.webology.org/2014/v11n1/a117.pdf +Alireza Noruzi,YouTube in scientific research: A bibliometric analysis.,2017,14,Webology,1,db/journals/webology/webology14.html#Noruzi17,http://www.webology.org/2017/v14n1/editorial23.pdf +Shant Narsesian,Personal Homepages as an Information Resource.,2004,1,Webology,2,db/journals/webology/webology1.html#Narsesian04,http://www.webology.org/2004/v1n2/a5.html +Shakeel Ahmad Khan,Application of social media in marketing of library and information services: A case study from Pakistan.,2012,9,Webology,1,db/journals/webology/webology9.html#KhanB12,http://www.webology.org/2012/v9n1/a93.html +Alireza Noruzi,Patent Citations to Webology Journal on the USPTO Database.,2018,15,Webology,1,db/journals/webology/webology15.html#Noruzi18,http://www.webology.org/2018/v15n1/editorial25.pdf +Paul L. Hover,Islamic Book and Information Culture: An Overview.,2007,4,Webology,1,db/journals/webology/webology4.html#Hover07,http://www.webology.org/2007/v4n1/a39.html +Paramjeet K. Walia,Application of web 2.0 tools by national libraries.,2012,9,Webology,2,db/journals/webology/webology9.html#WaliaG12,http://www.webology.org/2012/v9n2/a99.html +Izabella Taler,LIS Open Access E-Journal - Where Are You?,2008,5,Webology,4,db/journals/webology/webology5.html#Taler08,http://www.webology.ir/2008/v5n4/a62.html +Kirsty Young,Managing online identity and diverse social networks on Facebook.,2013,10,Webology,2,db/journals/webology/webology10.html#Young13a,http://www.webology.org/2013/v10n2/a109.pdf +Khaiser Nikam,Moving from script to science 2.0 for scholarly communication.,2009,6,Webology,1,db/journals/webology/webology6.html#NikamH09,http://www.webology.org/2009/v6n1/a68.html +Xingan Li,Roles of information systems in socio-legal context.,2016,13,Webology,1,db/journals/webology/webology13.html#Li16,http://www.webology.org/2016/v13n1/a143.pdf +M. Indra Devi,Generating Best Features for Web Page Classification.,2008,5,Webology,1,db/journals/webology/webology5.html#DeviRS08,http://www.webology.ir/2008/v5n1/a52.html +Mohammadamin Erfanmanesh,Applied Evaluative Informetrics.,2018,15,Webology,1,db/journals/webology/webology15.html#ErfanmaneshH18,http://www.webology.org/2018/v15n1/bookreview29.pdf +Elaheh Hosseini,Linked Data and User Interaction: The Road Ahead.,2016,13,Webology,2,db/journals/webology/webology13.html#HosseiniS16a,http://www.webology.org/2016/v13n2/bookreview28.pdf +Roman Korzh,Methods for forming an informational image of a higher education institution.,2015,12,Webology,2,db/journals/webology/webology12.html#KorzhFP15,http://www.webology.org/2015/v12n2/a140.pdf +Mahsa Nikzad,Foreigners' point of view towards collaboration with Iranian authors.,2012,9,Webology,2,db/journals/webology/webology9.html#Nikzad12,http://www.webology.org/2012/v9n2/a101.html +Isola Ajiferuke,Delinking: An Exploratory Study.,2008,5,Webology,1,db/journals/webology/webology5.html#Ajiferuke08,http://www.webology.ir/2008/v5n1/a51.html +Hassan Abolhassani,On Ontology Alignment Experiments.,2006,3,Webology,3,db/journals/webology/webology3.html#AbolhassaniHH06,http://www.webology.org/2006/v3n3/a28.html +Faezeh Seyedarabi,Personalization: An emerging direction for tackling the web searching barriers faced by teachers when searching for educational resources.,2011,8,Webology,2,db/journals/webology/webology8.html#Seyedarabi11,http://www.webology.org/2011/v8n2/a90.html +Amara Malik,Web search behavior of university students: a case study at University of the Punjab.,2009,6,Webology,2,db/journals/webology/webology6.html#MalikM09,http://www.webology.org/2009/v6n2/a70.html +Chinwe Veronica Anunobi,Promotional Strategies for Open Access Resources Discovery and Access.,2018,15,Webology,1,db/journals/webology/webology15.html#AnunobiA18,http://www.webology.org/2018/v15n1/a163.pdf +Rahman Marefat,Radical Information Literacy: Reclaiming the Political Heart of the IL Movement.,2016,13,Webology,1,db/journals/webology/webology13.html#MarefatM16,http://www.webology.org/2016/v13n1/bookreview27.pdf +Nirmal Kumar Swain,Evidence-based Librarianship: Case Studies and Active Learning Exercises / Elisabeth Connor.,2008,5,Webology,2,db/journals/webology/webology5.html#Swain08,http://www.webology.ir/2008/v5n2/bookreview16.html +Haidar Moukdad,How Do Search Engines Handle Chinese Queries?,2005,2,Webology,3,db/journals/webology/webology2.html#MoukdadC05,http://www.webology.org/2005/v2n3/a17.html +Fayaz Ahmad Loan,Impact of the Internet surfing on reading practices and choices.,2012,9,Webology,1,db/journals/webology/webology9.html#Loan12,http://www.webology.org/2012/v9n1/a94.html +Elad Segev,Search Engines and Power: A Politics of Online (Mis-) Information.,2008,5,Webology,2,db/journals/webology/webology5.html#Segev08,http://www.webology.ir/2008/v5n2/a54.html +Dineshan Koovakkai,Internet abuse among the adolescents: a study on the locale factor.,2010,7,Webology,1,db/journals/webology/webology7.html#KoovakkaiP10,http://www.webology.org/2010/v7n1/a75.html +Mehdi Safari,Metadata and the Web.,2004,1,Webology,2,db/journals/webology/webology1.html#Safari04,http://www.webology.org/2004/v1n2/a7.html +James Hartley,Letter to the Editor: 'Scientific collaboration and quality of scientific research'.,2009,6,Webology,1,db/journals/webology/webology6.html#Hartley09,http://www.webology.org/2009/v6n1/editorial19.html +Alireza Noruzi,Science Popularization through Open Access.,2008,5,Webology,1,db/journals/webology/webology5.html#Noruzi08,http://www.webology.ir/2008/v5n1/editorial15.html +Dariush Alimohammadi,Designing Webliographies in an effective and simple manner: a step by step process.,2004,1,Webology,1,db/journals/webology/webology1.html#Alimohammadi04,http://www.webology.org/2004/v1n1/a2.html +Dariush Alimohammadi,Correlation between references and citations.,2009,6,Webology,2,db/journals/webology/webology6.html#AlimohammadiS09,http://www.webology.org/2009/v6n2/a71.html +Alireza Noruzi,Hot Papers in Library and Information Science from the Point of View of Research Methods.,2017,14,Webology,2,db/journals/webology/webology14.html#Noruzi17a,http://www.webology.org/2017/v14n2/editorial24.pdf +Mohammadamin Erfanmanesh,Highly-alted articles in Library and Information Science.,2017,14,Webology,2,db/journals/webology/webology14.html#Erfanmanesh17,http://www.webology.org/2017/v14n2/a158.pdf +Mansoor Al-A'Ali,Cybercrime and the Law: An Islamic View.,2007,4,Webology,3,db/journals/webology/webology4.html#Al-AAli07a,http://www.webology.org/2007/v4n3/a46.html +Mohammad Nazir Ahmad,Overview of Ontology Servers Research.,2007,4,Webology,2,db/journals/webology/webology4.html#AhmadC07,http://www.webology.org/2007/v4n2/a43.html +Ammar Jalalimanesh,Application of social network analysis in interlibrary loan services.,2013,10,Webology,1,db/journals/webology/webology10.html#JalalimaneshY13,http://www.webology.org/2013/v10n1/a108.html +Su Iong Kio,What students are saying on Facebook about their schools?,2015,12,Webology,1,db/journals/webology/webology12.html#Kio15,http://www.webology.org/2015/v12n1/a130.pdf +Vahideh Zarea Gavgani,Application of Web 2.0 Tools in Medical Librarianship to Support Medicine 2.0.,2008,5,Webology,1,db/journals/webology/webology5.html#GavganiM08,http://www.webology.ir/2008/v5n1/a53.html +Yeni Budi Rachman,Social Media Application in Indonesian Academic Libraries.,2018,15,Webology,1,db/journals/webology/webology15.html#RachmanP18,http://www.webology.org/2018/v15n1/a162.pdf +Akhtar Hussain,Bibliometric analysis of the 'Electronic Library' journal (2000-2010).,2011,8,Webology,1,db/journals/webology/webology8.html#HussainFK11,http://www.webology.org/2011/v8n1/a87.html +Mohamed Taher,Digital preservation of cultural heritage collection: Among libraries of India and Iran: A comparative study.,2012,9,Webology,1,db/journals/webology/webology9.html#Taher12,http://www.webology.org/2012/v9n1/bookreview21.html +Hamid R. Jamali M.,American Libraries and the Internet: The Social Construction of Web Appropriation and Use / Bin Li.,2008,5,Webology,2,db/journals/webology/webology5.html#M08a,http://www.webology.ir/2008/v5n2/bookreview14.html +A. Neelameghan,Environmental Knowledge and Marginalized Communities: The Last Mile Connectivity.,2006,3,Webology,1,db/journals/webology/webology3.html#NeelameghanC06,http://www.webology.org/2006/v3n1/a24.html +Alireza Noruzi,Editorial.,2006,3,Webology,1,db/journals/webology/webology3.html#Noruzi06,http://www.webology.org/2006/v3n1/editorial7.html +Parinaz Maghferat,Gender-specific information search behavior.,2010,7,Webology,2,db/journals/webology/webology7.html#MaghferatS10,http://www.webology.org/2010/v7n2/a80.html +Alireza Noruzi,Web Impact Factors for Iranian Universities.,2005,2,Webology,1,db/journals/webology/webology2.html#Noruzi05,http://www.webology.org/2005/v2n1/a11.html +Peter Williams,An Evaluation of the Websites of Charities and Voluntary Organisations Providing Support for Young People: Case Study: Drugscope.,2005,2,Webology,3,db/journals/webology/webology2.html#WilliamsDN05,http://www.webology.org/2005/v2n3/a16.html +Saman Forouzandeh,Content marketing through data mining on Facebook social network.,2014,11,Webology,1,db/journals/webology/webology11.html#ForouzandehSS14,http://www.webology.org/2014/v11n1/a118.pdf +Xingan Li,Exploring into regulatory mode for social order in cyberspace.,2014,11,Webology,2,db/journals/webology/webology11.html#Li14,http://www.webology.org/2014/v11n2/a125.pdf +Alireza Noruzi,arXiv popularity from a citation analysis point of view.,2016,13,Webology,2,db/journals/webology/webology13.html#Noruzi16a,http://www.webology.org/2016/v13n2/editorial22.pdf +Massoomeh Niknia,Mapping a decade of linked data progress through co-word analysis.,2015,12,Webology,2,db/journals/webology/webology12.html#NikniaM15,http://www.webology.org/2015/v12n2/a141.pdf +Vladimir M. Moskovkin,Aggregate ranking of the world's leading universities.,2015,12,Webology,1,db/journals/webology/webology12.html#MoskovkinGPS15,http://www.webology.org/2015/v12n1/a133.pdf +Jia Lin,Geographical Distribution of Blogs in the United States.,2006,3,Webology,4,db/journals/webology/webology3.html#LinH06,http://www.webology.org/2006/v3n4/a30.html +Ally Ostrowski,Texting Tolerance: Computer-Mediated Interfaith Dialogue.,2006,3,Webology,4,db/journals/webology/webology3.html#Ostrowski06,http://www.webology.org/2006/v3n4/a34.html +Akshi Kumar,Characterizing relatedness of web and requirements engineering.,2015,12,Webology,1,db/journals/webology/webology12.html#KumarBB15,http://www.webology.org/2015/v12n1/a136.pdf +Shyama Rajaram,Library Management in Electronic Environment / Krishan Kumar.,2008,5,Webology,1,db/journals/webology/webology5.html#Rajaram08,http://www.webology.ir/2008/v5n1/bookreview13.html +Vladimir M. Moskovkin,Open access to scientific knowledge and feudalism knowledge: Is there a connection?,2011,8,Webology,1,db/journals/webology/webology8.html#Moskovkin11,http://www.webology.org/2011/v8n1/a83.html +Basanta Kumar Das,Marketing of Library and Information Services in Global Era: A Current Approach.,2008,5,Webology,2,db/journals/webology/webology5.html#DasK08,http://www.webology.ir/2008/v5n2/a56.html +Xingan Li,Crime vs. demographic factors revisited: Application of data mining methods.,2015,12,Webology,1,db/journals/webology/webology12.html#LiJLJ15,http://www.webology.org/2015/v12n1/a132.pdf +Fernando Almeida,The Role of Responsive Design in Web Development.,2017,14,Webology,2,db/journals/webology/webology14.html#AlmeidaM17,http://www.webology.org/2017/v14n2/a157.pdf +Hamid R. Jamali M.,What Is Not Available Online Is Not Worth Reading?,2008,5,Webology,4,db/journals/webology/webology5.html#M08c,http://www.webology.ir/2008/v5n4/a63.html +Ali H. Al-Badi,Ergonomics of usability/accessibility-ready websites: Tools and guidelines.,2012,9,Webology,2,db/journals/webology/webology9.html#Al-BadiAA12,http://www.webology.org/2012/v9n2/a98.html +Dillip K. Swain,Interlending and Document Supply: A bibliometric study from 2001 to 2010.,2012,9,Webology,2,db/journals/webology/webology9.html#SwainJM12,http://www.webology.org/2012/v9n2/a102.html +,A Note on Webology journal.,2004,1,Webology,1,db/journals/webology/webology1.html#X04,http://www.webology.org/2004/v1n1/editorial1.html +Alireza Noruzi,Editorial: Fundamental Differences between Hyperlinks and Citations.,2005,2,Webology,2,db/journals/webology/webology2.html#Noruzi05a,http://www.webology.org/2005/v2n2/editorial4.html +Vladimir M. Moskovkin,University networks in the context of their academic excellence and openness: A comparative study of leading Czech and German universities.,2013,10,Webology,1,db/journals/webology/webology10.html#MoskovkinFM13,http://www.webology.org/2013/v10n1/a107.html +Ina Fourie,Digital Rights Management: A Librarian's Guide to Technology and Practice / Grace Agnew.,2008,5,Webology,4,db/journals/webology/webology5.html#Fourie08b,http://www.webology.ir/2008/v5n4/bookreview19.html +Shane Tilton,Virtual Polling Data: A Social Network Analysis on a Student Government Election.,2008,5,Webology,4,db/journals/webology/webology5.html#Tilton08,http://www.webology.ir/2008/v5n4/a64.html +Alireza Noruzi,Reply to the Letter to the Editor: 'Scientific collaboration and quality of scientific research'.,2009,6,Webology,1,db/journals/webology/webology6.html#Noruzi09,http://www.webology.org/2009/v6n1/editorial19a.html +Homero Gil de Zúñiga,Reshaping Digital Inequality in the European Union: How Psychological Barriers Affect Internet Adoption Rates.,2006,3,Webology,4,db/journals/webology/webology3.html#Zuniga06,http://www.webology.org/2006/v3n4/a32.html +Vahideh Zarea Gavgani,Evidence-based medical librarianship in Iran: an introduction.,2009,6,Webology,2,db/journals/webology/webology6.html#Gavgani09,http://www.webology.org/2009/v6n2/a72.html +Hamid R. Jamali M.,The Human Side of Reference and Information Services in Academic Libraries: Adding Value in the Digital World / Lesley S. J. Farmer.,2008,5,Webology,2,db/journals/webology/webology5.html#M08b,http://www.webology.ir/2008/v5n2/bookreview15.html +Eugenia Kuznetsova,Exploring attitudes to online grieving on Facebook through survey research.,2016,13,Webology,1,db/journals/webology/webology13.html#KuznetsovaR16,http://www.webology.org/2016/v13n1/a144.pdf +Greg Chester,Information Professional: Knowledge and Skills Development for Serving Marginalized and Rural Communities.,2006,3,Webology,3,db/journals/webology/webology3.html#ChesterN06,http://www.webology.org/2006/v3n3/a29.html +Jack M. Maness,Library 2.0 Theory: Web 2.0 and Its Implications for Libraries.,2006,3,Webology,2,db/journals/webology/webology3.html#Maness06,http://www.webology.org/2006/v3n2/a25.html +Saeid Asadi,Editorial.,2005,2,Webology,1,db/journals/webology/webology2.html#Asadi05,http://www.webology.org/2005/v2n1/editorial3.html +Helen Nneka Eke,Digitizing resources for University of Nigeria repository: Process and challenges.,2011,8,Webology,1,db/journals/webology/webology8.html#Eke11,http://www.webology.org/2011/v8n1/a85.html +Mahmood Khosrowjerdi,Proximity rule and Matthew effect in co-authorships of Iranian medical universities.,2011,8,Webology,2,db/journals/webology/webology8.html#KhosrowjerdiBEHZ11,http://www.webology.org/2011/v8n2/a92.html +Rosy Jan,Citation analysis of Library Trends.,2009,6,Webology,1,db/journals/webology/webology6.html#Jan09,http://www.webology.org/2009/v6n1/a67.html +Robert Bruce 0002,Descriptor and Folksonomy Concurrence in Education Related Scholarly Research.,2008,5,Webology,3,db/journals/webology/webology5.html#000208,http://www.webology.ir/2008/v5n3/a59.html +Paul L. Hover,Egyptian and American Internet-Based Cross-Cultural Information Seeking Behavior. Part I: Research Instrument.,2006,3,Webology,4,db/journals/webology/webology3.html#Hover06,http://www.webology.org/2006/v3n4/a31.html +Hamid R. Jamali,Book Review of Digital Libraries: Principles and Practice in a Global Environment / Lucy A. Tedd and Andrew Large.,2006,3,Webology,1,db/journals/webology/webology3.html#Jamali06,http://www.webology.org/2006/v3n1/bookreview3.html +Saeid Asadi,Location-Based Search Engines Tasks and Capabilities: A Comparative Study.,2007,4,Webology,4,db/journals/webology/webology4.html#AsadiZJM07,http://www.webology.org/2007/v4n4/a48.html +Hamid R. Jamali,Citation relations of theories of human information behaviour.,2013,10,Webology,1,db/journals/webology/webology10.html#Jamali13,http://www.webology.org/2013/v10n1/a106.html +Kavidha Ayechetty,Intelligent interoperable application for employment exchange system using ontology.,2013,10,Webology,2,db/journals/webology/webology10.html#AyechettyA13,http://www.webology.org/2013/v10n2/a113.pdf +Shohreh SeyyedHosseini,Scientific Publication Behavior versus Information Seeking Behavior: An Infodemiological Study on Stomach Cancer.,2017,14,Webology,1,db/journals/webology/webology14.html#SeyyedHosseiniA17,http://www.webology.org/2017/v14n1/a153.pdf +B. M. Meera,Contractual Solutions in Electronic Publishing Industry: A Comparative study of License Agreements.,2005,2,Webology,3,db/journals/webology/webology2.html#MeeraA05,http://www.webology.org/2005/v2n3/a18.html +Milan Palevic,Freedom of information and abuse of media in the process of globalization.,2013,10,Webology,1,db/journals/webology/webology10.html#PalevicD13,http://www.webology.org/2013/v10n1/a104.html +Maryam Yarandi,A personalized adaptive e-learning approach based on semantic web technology.,2013,10,Webology,2,db/journals/webology/webology10.html#YarandiJT13,http://www.webology.org/2013/v10n2/a110.pdf +William W. Bostock,Sociology of the Web.,2006,3,Webology,4,db/journals/webology/webology3.html#Bostock06,http://www.webology.org/2006/v3n4/editorial10.html +Maryam Moayeri,Lost in Cyberspace: Where to Go? What to Believe?,2007,4,Webology,4,db/journals/webology/webology4.html#Moayeri07,http://www.webology.org/2007/v4n4/a47.html +Hamid R. Jamali,Information and Emotion: The Emergent Affective Paradigm in Information Behavior Research and Theory / Diane Nahl and Dania Bilal (Eds.).,2007,4,Webology,4,db/journals/webology/webology4.html#Jamali07a,http://www.webology.org/2007/v4n4/bookreview11.html +Alireza Noruzi,Folksonomies: Why do we need controlled vocabulary?,2007,4,Webology,2,db/journals/webology/webology4.html#Noruzi07,http://www.webology.org/2007/v4n2/editorial12.html +Andrew Jakubowicz,Bridging the Mire between E-Research and E-Publishing for Multimedia Digital Scholarship in the Humanities and Social Sciences: An Australian Case Study.,2007,4,Webology,1,db/journals/webology/webology4.html#Jakubowicz07,http://www.webology.org/2007/v4n1/a38.html +Kristen Radsliff Rebmann,Situated practices of information use and representation: an ethnographic study of a web design project for boys.,2010,7,Webology,1,db/journals/webology/webology7.html#Rebmann10,http://www.webology.org/2010/v7n1/a73.html +Yazdan Mansourian,The Turn: Integration of Information Seeking and Retrieval in Context / Peter Ingwersen and Kalervo Järvelin.,2006,3,Webology,3,db/journals/webology/webology3.html#Mansourian06a,http://www.webology.org/2006/v3n3/bookreview4.html +Ger T. Rijkers,Tell Me Why Bob Dylan and the Beatles Song Titles Are Used in Biomedical Literature.,2017,14,Webology,2,db/journals/webology/webology14.html#RijkersLS17,http://www.webology.org/2017/v14n2/a159.pdf +Rabiya Mushtaq,Open Access Health and Medicine Journals - An Informative Study.,2017,14,Webology,2,db/journals/webology/webology14.html#MushtaqLA17,http://www.webology.org/2017/v14n2/a160.pdf +Marina Viktorovna Zagidullina,Non-users of Internet in the information society.,2014,11,Webology,1,db/journals/webology/webology11.html#Zagidullina14,http://www.webology.org/2014/v11n1/a120.pdf +Dariush Alimohammadi,Global Information Inequalities: Bridging the Information Gap / Deborah H. Charbonneau.,2008,5,Webology,4,db/journals/webology/webology5.html#Alimohammadi08,http://www.webology.ir/2008/v5n4/bookreview20.html +Mohammadamin Erfanmanesh,Visual indexing and retrieval.,2014,11,Webology,1,db/journals/webology/webology11.html#ErfanmaneshH14,http://www.webology.org/2014/v11n1/bookreview24.pdf +David Johnson,More Effective Web Search Using Bigrams and Trigrams.,2006,3,Webology,4,db/journals/webology/webology3.html#JohnsonMV06,http://www.webology.org/2006/v3n4/a35.html +Yazdan Mansourian,Editorial.,2004,1,Webology,2,db/journals/webology/webology1.html#Mansourian04a,http://webology.org/2004/v1n2/editorial2.html +Shohreh SeyyedHosseini,Investigating the relationship between library anxiety and emotional intelligence.,2014,11,Webology,2,db/journals/webology/webology11.html#SeyyedHosseiniK14,http://www.webology.org/2014/v11n2/a129.pdf +Luiz Fernando de Barros Campos,Increase of Precision on the Top of the List of Retrieved Web Documents Using Global and Local Link Analysis.,2007,4,Webology,3,db/journals/webology/webology4.html#Campos07,http://www.webology.org/2007/v4n3/a44.html +Alireza Noruzi,Introduction to Webology.,2004,1,Webology,1,db/journals/webology/webology1.html#Noruzi04,http://www.webology.org/2004/v1n1/a1.html +Mitra Dilmaghani,Function of knowledge culture in the effectiveness of knowledge management procedures: A case study of a knowledge-based organization.,2015,12,Webology,1,db/journals/webology/webology12.html#DilmaghaniFAN15,http://www.webology.org/2015/v12n1/a134.pdf +Alireza Noruzi,Citation-Linking Analysis to Open Access Journals.,2008,5,Webology,2,db/journals/webology/webology5.html#Noruzi08a,http://www.webology.ir/2008/v5n2/editorial16.html +Hamid R. Jamali M.,Acquisitions Go Global: An Introduction to Library Collection Management in the 21st Century / Jim Agee.,2008,5,Webology,1,db/journals/webology/webology5.html#M08,http://www.webology.ir/2008/v5n1/bookreview12.html +Leon James,A psychobiological model for managing student engagement in online courses using gamification principles.,2016,13,Webology,1,db/journals/webology/webology13.html#James16,http://www.webology.org/2016/v13n1/a145.pdf +Wendy Aitken,Use of Web in Tertiary Research and Education.,2007,4,Webology,2,db/journals/webology/webology4.html#Aitken07,http://www.webology.org/2007/v4n2/a42.html +Ashutosh Agrahari,Domain Analysis of D-Lib Magazine: A Bibliometric Study.,2018,15,Webology,1,db/journals/webology/webology15.html#AgrahariCS18,http://www.webology.org/2018/v15n1/a165.pdf +Ravi Narayanaswamy,The impact of information and communication technologies on book challenge trends in the United States: An analysis.,2015,12,Webology,2,db/journals/webology/webology12.html#NarayanaswamyW15,http://www.webology.org/2015/v12n2/a137.pdf +Satish Kanamadi,Web-Based Services Expected from Libraries: A Case Study of Management Institutes in Mumbai City.,2006,3,Webology,2,db/journals/webology/webology3.html#KanamadiK06,http://www.webology.org/2006/v3n2/a26.html +Yazdan Mansourian,Chemoinformatics and the World Wide Web: An Interview with Professor Peter Willett.,2006,3,Webology,2,db/journals/webology/webology3.html#Mansourian06,http://www.webology.org/2006/v3n2/a27.html +Xingan Li,International Actions against Cybercrime: Networking Legal Systems in the Networked Crime Scene.,2007,4,Webology,3,db/journals/webology/webology4.html#Li07,http://www.webology.org/2007/v4n3/a45.html +Mahmood Khosrowjerdi,Asian top universities in six world university ranking systems.,2013,10,Webology,2,db/journals/webology/webology10.html#KhosrowjerdiK13,http://www.webology.org/2013/v10n2/a114.pdf +Laura Schumann,The Information Service Evaluation (ISE) Model.,2014,11,Webology,1,db/journals/webology/webology11.html#SchumannS14,http://www.webology.org/2014/v11n1/a115.pdf +Emmanuel Edward Te,Charting the Landscape of Open Access Journals in Library and Information Science.,2017,14,Webology,1,db/journals/webology/webology14.html#TeOLCR17,http://www.webology.org/2017/v14n1/a152.pdf +Andrey A. Pechnikov,Webgraph connectivity and dynamics: Russian research institutions.,2015,12,Webology,1,db/journals/webology/webology12.html#PechnikovN15,http://www.webology.org/2015/v12n1/a135.pdf +Farzana Shafique,Exploitation of social media among university students: A case study.,2010,7,Webology,2,db/journals/webology/webology7.html#ShafiqueAB10,http://www.webology.org/2010/v7n2/a79.html +Alireza Noruzi,Scientific Collaboration and Quality of Scientific Research.,2008,5,Webology,4,db/journals/webology/webology5.html#Noruzi08b,http://www.webology.ir/2008/v5n4/editorial18.html +Zahra Naseri,Content Marketing Process Model: A Meta-Synthesis of the Literature.,2018,15,Webology,1,db/journals/webology/webology15.html#NaseriN18,http://www.webology.org/2018/v15n1/a161.pdf +M. P. S. Bhatia,Paradigm shifts: from pre-web information systems to recent web-based contextual information retrieval.,2010,7,Webology,1,db/journals/webology/webology7.html#BhatiaK10,http://www.webology.org/2010/v7n1/a76.html +Akshi Kumar,Systematic Literature Review on Opinion Mining of Big Data for Government Intelligence.,2017,14,Webology,2,db/journals/webology/webology14.html#KumarS17,http://www.webology.org/2017/v14n2/a156.pdf +Hussien Ahmad,Linked-OWL: A new approach for dynamic linked data service workflow composition.,2013,10,Webology,1,db/journals/webology/webology10.html#AhmadD13,http://www.webology.org/2013/v10n1/a105.html +Williams Nwagwu,Nigerian University Websites: A Webometric Analysis.,2008,5,Webology,4,db/journals/webology/webology5.html#NwagwuA08,http://www.webology.ir/2008/v5n4/a65.html +Haidar Moukdad,Stemming and root-based approaches to the retrieval of Arabic documents on the Web.,2006,3,Webology,1,db/journals/webology/webology3.html#Moukdad06,http://www.webology.org/2006/v3n1/a22.html +Paul A. Corcoran,An assessment of the accessibility of spatial data from the Internet to facilitate further participation with geographical information systems for novice indigenous users in South Australia.,2012,9,Webology,2,db/journals/webology/webology9.html#Corcoran12,http://www.webology.org/2012/v9n2/a97.html +Hamid Keshavarz,Students' sense of self-efficacy in searching information from the Web: A PLS approach.,2016,13,Webology,2,db/journals/webology/webology13.html#KeshavarzGV16,http://www.webology.org/2016/v13n2/a149.pdf +Zahed Bigdeli,Gamification in library websites based on motivational theories.,2016,13,Webology,1,db/journals/webology/webology13.html#BigdeliHHB16,http://www.webology.org/2016/v13n1/a146.pdf +Alireza Noruzi,Editorial: The HTML Title Tag and Its Importance.,2005,2,Webology,4,db/journals/webology/webology2.html#Noruzi05c,http://www.webology.org/2005/v2n4/editorial6.html +S. Veena R. Bhat,Web Citation Behaviour in Scholarly Electronic Journals in the Field of Library and Information Science.,2008,5,Webology,2,db/journals/webology/webology5.html#BhatK08,http://www.webology.ir/2008/v5n2/a57.html +Yazdan Mansourian,Web Search: Public Searching of the Web / by Dr. Amanda Spink and Dr. Bernard J. Jansen.,2004,1,Webology,2,db/journals/webology/webology1.html#Mansourian04b,http://www.webology.org/2004/v1n2/bookreview1.html +Giovanni Borruto,Analysis of tweets in Twitter.,2015,12,Webology,1,db/journals/webology/webology12.html#Borruto15,http://www.webology.org/2015/v12n1/a131.pdf +Alireza Noruzi,Google Patents: The global patent search engine.,2014,11,Webology,1,db/journals/webology/webology11.html#NoruziA14,http://www.webology.org/2014/v11n1/a122.pdf +Helen Nneka Eke,Creating a digital footprint as a means of optimizing the personal branding of librarians in the digital society.,2012,9,Webology,2,db/journals/webology/webology9.html#Eke12,http://www.webology.org/2012/v9n2/a100.html +Rahman Marefat,Information ethics and internet research ethics: An interview with Rafael Capurro.,2014,11,Webology,2,db/journals/webology/webology11.html#MarefatS14,http://www.webology.org/2014/v11n2/a128.pdf +Alireza Noruzi,Editorial.,2006,3,Webology,2,db/journals/webology/webology3.html#Noruzi06a,http://www.webology.org/2006/v3n2/editorial8.html +Ellen Daly,"Ensuring the discoverability of digital images for social work education: an online ""tagging"" survey to test controlled vocabularies.",2009,6,Webology,2,db/journals/webology/webology6.html#DalyB09,http://www.webology.org/2009/v6n2/a69.html +Alireza Noruzi,Wikipedia popularity from a citation analysis point of view.,2009,6,Webology,2,db/journals/webology/webology6.html#Noruzi09a,http://www.webology.org/2009/v6n2/editorial20.html +Jinfeng Dou,Hybrid Transmission and Energy Optimization Mechanism for Wireless Sensor Networks.,2010,10,Ad Hoc and Sensor Wireless Networks,1,db/journals/ahswn/ahswn10.html#DouGC10,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-10-number-1/ahswn-10-1-p-89-109/ +Sandrine Calomme,The Critical Neighbourhood Range for Asymptotic Overlay Connectivity in Ad Hoc Networks.,2006,2,Ad Hoc and Sensor Wireless Networks,2,db/journals/ahswn/ahswn2.html#CalommeL06,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-2-number-2-2006/ahswn-2-2-p-169-187/ +Jelena V. Misic,Duty Cycle Management in Sensor Networks Based on 802.15.4 Beacon Enabled MAC.,2005,1,Ad Hoc and Sensor Wireless Networks,3,db/journals/ahswn/ahswn1.html#MisicM05,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-1-number-3-2005/ahswn-1-3-p-207-233-2005/ +Srinath Perur,Characterisation of a Connectivity Measure for Sparse Wireless Multi-hop Networks.,2007,3,Ad Hoc and Sensor Wireless Networks,4,db/journals/ahswn/ahswn3.html#PerurI07,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahwsn-volume-3-number-4-2007/ahswn-3-4-p-311-330/ +Todd B. Fleming,Collaborative Synchronization for Signal Reinforcement in Sensor Networks.,2007,4,Ad Hoc and Sensor Wireless Networks,3,db/journals/ahswn/ahswn4.html#FlemingA07,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahwsn-volume-4-number-3-2007/ahswn-4-3-p-179-198/ +Dan Xu,Approximate Optimal ower Allocation Scheme for Wireless Ad hoc Networks in Rayleigh Fading Channels.,2007,3,Ad Hoc and Sensor Wireless Networks,1,db/journals/ahswn/ahswn3.html#XuHW07,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahwsn-volume-3-number-1-2007/ahswn-3-1-p-35-54/ +Yong-hwan Kim,Maximizing Network Lifetime for Connected and Non-overlapped Target Coverage in Wireless Sensor Networks.,2012,15,Ad Hoc and Sensor Wireless Networks,1,db/journals/ahswn/ahswn15.html#KimH12,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-15-number-1-2-2012/ahswn-15-1-2-p-65-82/ +Vojislav B. Misic,Editorial for the special issue on Recent Developments in Ad Hoc and Sensor Networks: Selected Papers from the Ad Hoc and Sensor Network Track of the AINA-07 Conference.,2007,4,Ad Hoc and Sensor Wireless Networks,3,db/journals/ahswn/ahswn4.html#Misic07b, +Rui Zhang 0015,A Scalable and Energy Efficient Sink Location Service for Large-scale Wireless Sensor Networks.,2007,4,Ad Hoc and Sensor Wireless Networks,4,db/journals/ahswn/ahswn4.html#ZhangZL07,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahwsn-volume-4-number-4-2007/ahswn-4-4-p-289-320/ +Pedro Brandão,Secure Routing in Ad Hoc Networks.,2005,1,Ad Hoc and Sensor Wireless Networks,4,db/journals/ahswn/ahswn1.html#BrandaoSCP05,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-1-number-4-2005/ahswn-1-4-p-277-300/ +Zhuoyuan Tu,Energy-Efficient Aggregate Query Evaluation in Wireless Sensor Networks.,2007,3,Ad Hoc and Sensor Wireless Networks,1,db/journals/ahswn/ahswn3.html#TuL07,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahwsn-volume-3-number-1-2007/ahswn-3-1-p-55-75/ +Hassnaa Moustafa,Adaptive Path Energy Conserving Routing in MANETs.,2005,1,Ad Hoc and Sensor Wireless Networks,4,db/journals/ahswn/ahswn1.html#MoustafaL05,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-1-number-4-2005/ahswn-1-4-p-324-342/ +Stephan Olariu,OSCAR - An Opportunistic Call Admission Protocol for LEO Satellite Networks.,2005,1,Ad Hoc and Sensor Wireless Networks,3,db/journals/ahswn/ahswn1.html#OlariuSZ05,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-1-number-3-2005/ahswn-1-3-p-255-275-2005/ +Dawei Xia,Comprehensive Study of Node Clustering in Wireless Sensor Networks for Environment Monitoring.,2007,4,Ad Hoc and Sensor Wireless Networks,3,db/journals/ahswn/ahswn4.html#XiaV07,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahwsn-volume-4-number-3-2007/ahswn-4-3-p-199-228/ +Alia Ghaddar,Investigating Data Similarity and Estimation Through Spatio-Temporal Correlation to Enhance Energy Efficiency in WSNs.,2012,16,Ad Hoc and Sensor Wireless Networks,4,db/journals/ahswn/ahswn16.html#GhaddarRSSTH12,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-16-number-4-2013/ahswn-16-4-p-273-295/ +Vassileios Tsetsos,Towards Commercial Wireless Sensor Networks: Business and Technology Architecture.,2006,2,Ad Hoc and Sensor Wireless Networks,1,db/journals/ahswn/ahswn2.html#TsetsosAHSH06,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-2-number-1-2006/ahswn-2-1-p-59-80/ +Antoine Gallais,An Adaptive Localized Algorithm for Multiple Sensor Area Coverage.,2007,4,Ad Hoc and Sensor Wireless Networks,3,db/journals/ahswn/ahswn4.html#GallaisC07,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahwsn-volume-4-number-3-2007/ahswn-4-3-p-271-288/ +Claude Chaudet,Adaptive Probabilistic NAV to Increase Fairness in Ad Hoc 802.11 MAC Layer.,2006,2,Ad Hoc and Sensor Wireless Networks,2,db/journals/ahswn/ahswn2.html#ChaudetCMS06,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-2-number-2-2006/ahswn-2-2-p-105-125/ +Marco Conti,Editorial.,2006,2,Ad Hoc and Sensor Wireless Networks,4,db/journals/ahswn/ahswn2.html#ContiCP06, +Jelena V. Misic,Can we use Acknowledged Transfer in Large Multi-Cluster Beacon Enabled 802.15.4 Networks?,2007,4,Ad Hoc and Sensor Wireless Networks,3,db/journals/ahswn/ahswn4.html#MisicU07,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahwsn-volume-4-number-3-2007/ahswn-4-3-p-255-270/ +Yixin Dong,Effective Bandwidth Calculation for QoS Routing in IEEE 802.11 DCF Ad hoc Networks.,2006,2,Ad Hoc and Sensor Wireless Networks,3,db/journals/ahswn/ahswn2.html#DongM06,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-2-number-3-2006/ahswn-2-3-p-245-280/ +Jong-Hyouk Lee,MNPP: Mobile Network Prefix Provisioning for Enabling Route Optimization in Geographic Vehicular Networks.,2012,15,Ad Hoc and Sensor Wireless Networks,1,db/journals/ahswn/ahswn15.html#LeeTE12,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-15-number-1-2-2012/ahswn-15-1-2-p-5-19/ +Ingo Gruber,Peer-to-Peer Communication in Mobile Ad Hoc Networks.,2006,2,Ad Hoc and Sensor Wireless Networks,3,db/journals/ahswn/ahswn2.html#GruberSK06,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-2-number-3-2006/ahwsn-2-3-p-281-296/ +Antoine Mercier 0001,A Class-Based EDF Scheduling for Bluetooth Piconet.,2005,1,Ad Hoc and Sensor Wireless Networks,4,db/journals/ahswn/ahswn1.html#MercierMG05,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-1-number-4-2005/ahswn-1-4-p-343-364/ +Peter Gober,Topology Control and Localization in Wireless Ad Hoc and Sensor Networks.,2005,1,Ad Hoc and Sensor Wireless Networks,4,db/journals/ahswn/ahswn1.html#GoberZTAHF05,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-1-number-4-2005/ahswn-1-4-p-301-321/ +Zhiyong Lin,Ring-Walk Rendezvous Algorithms for Cognitive Radio Networks.,2012,16,Ad Hoc and Sensor Wireless Networks,4,db/journals/ahswn/ahswn16.html#LinLCL12,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-16-number-4-2013/ahswn-16-4-p-243-271/ +Rajiv Ramdhany,MANETkit: A Framework for MANET Routing Protocols.,2010,10,Ad Hoc and Sensor Wireless Networks,4,db/journals/ahswn/ahswn10.html#RamdhanyC10,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-10-number-4/ahswn-10-4-p-301-316/ +Paz Carmi,Fault-Tolerant Power Assignment and Backbone in Wireless Networks.,2007,4,Ad Hoc and Sensor Wireless Networks,4,db/journals/ahswn/ahswn4.html#CarmiKSS07,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahwsn-volume-4-number-4-2007/ahswn-4-4-p-355-366/ +Rong Du,Path Planning and Obstacle Avoidance for PEGs in WSAN: I-ACO Based Algorithms and Implementation.,2012,16,Ad Hoc and Sensor Wireless Networks,4,db/journals/ahswn/ahswn16.html#DuCZGC12,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-16-number-4-2013/ahswn-16-4-p-323-345/ +Rong Zheng,How Good is Opportunistic Routing? - A Reality Check under Rayleigh Fading Channels.,2010,10,Ad Hoc and Sensor Wireless Networks,1,db/journals/ahswn/ahswn10.html#ZhengL10,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-10-number-1/ahswn-10-1-p-5-26/ +Paal E. Engelstad,Service Discovery Architectures for On-Demand Ad Hoc Networks.,2006,2,Ad Hoc and Sensor Wireless Networks,1,db/journals/ahswn/ahswn2.html#EngelstadZKP06,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-2-number-1-2006/ahswn-2-1-p-27-58/ +Yeng-Zhong Lee,Direction Forward Routing for Highly Mobile Ad Hoc Networks.,2006,2,Ad Hoc and Sensor Wireless Networks,2,db/journals/ahswn/ahswn2.html#LeeGCCZC06,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-2-number-2-2006/ahswn-2-2-p-151-168/ +Ping Chung Ng,Re-routing Instability in IEEE 802.11 Multi-hop Ad-hoc Networks.,2006,2,Ad Hoc and Sensor Wireless Networks,1,db/journals/ahswn/ahswn2.html#NgL06,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-2-number-1-2006/ahswn-2-1-p-1-25/ +H. Andrés Lagar-Cavilla,On the Robustness of Simple Indoor MANET Simulation Models.,2007,4,Ad Hoc and Sensor Wireless Networks,4,db/journals/ahswn/ahswn4.html#Lagar-CavillaBHLL07,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahwsn-volume-4-number-4-2007/ahswn-4-4-p-321-354/ +Shanying Zhu,Sensor Deployment for Distributed Estimation in Heterogeneous Wireless Sensor Networks.,2012,16,Ad Hoc and Sensor Wireless Networks,4,db/journals/ahswn/ahswn16.html#ZhuCG12,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-16-number-4-2013/ahswn-16-4-p-297-322/ +Dimitrios Koutsonikolas,CoCoA: Coordinated Cooperative Localization for Mobile Multi-Robot Ad Hoc Networks.,2007,3,Ad Hoc and Sensor Wireless Networks,4,db/journals/ahswn/ahswn3.html#KoutsonikolasDHLL07,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahwsn-volume-3-number-4-2007/ahswn-3-4-p-331-352/ +Daojing He,An Enhanced Two-factor User Authentication Scheme in Wireless Sensor Networks.,2010,10,Ad Hoc and Sensor Wireless Networks,4,db/journals/ahswn/ahswn10.html#HeGCCB10,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-10-number-4/ahswn-10-4-p-343-359-2/ +Hidayet Ozgur Sanli,Geometric Chemotaxis: A Biologically-Inspired Framework for a Class of Wireless Coverage Problems.,2006,2,Ad Hoc and Sensor Wireless Networks,4,db/journals/ahswn/ahswn2.html#SanliSN06, +Marco Conti,A Flexible Cross-Layer Interface for Ad-Hoc Networks: Architectural Design and Implementation Issues.,2006,2,Ad Hoc and Sensor Wireless Networks,2,db/journals/ahswn/ahswn2.html#ContiMT06,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-2-number-2-2006/ahswn-2-2-p-189-204/ +Vojislav B. Misic,Editorial: Workshop on Wireless Ad Hoc and Sensor Networks WWASN 2006.,2007,3,Ad Hoc and Sensor Wireless Networks,4,db/journals/ahswn/ahswn3.html#Misic07a, +Jin Ding,Design and Analysis of an Integrated MAC and Routing Protocol Framework for Wireless Sensor Networks.,2006,2,Ad Hoc and Sensor Wireless Networks,1,db/journals/ahswn/ahswn2.html#DingSLH06,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-2-number-1-2006/ahswn-2-1-p-81-103/ +Evgeny Osipov,A Path Density Protocol for MANETs.,2006,2,Ad Hoc and Sensor Wireless Networks,4,db/journals/ahswn/ahswn2.html#OsipovT06,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-2-number-4-2006/ahswn-2-4-p-349-363/ +Yanli Cai,ACOS: An Area-based Collaborative Sleeping Protocol for Wireless Sensor Networks.,2007,3,Ad Hoc and Sensor Wireless Networks,1,db/journals/ahswn/ahswn3.html#CaiLSW07,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahwsn-volume-3-number-1-2007/ahswn-3-1-p-77-97/ +Xu Li,On Secure Mobile Ad hoc Routing.,2007,4,Ad Hoc and Sensor Wireless Networks,3,db/journals/ahswn/ahswn4.html#LiNRS07,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahwsn-volume-4-number-3-2007/ahswn-4-3-p-229-254/ +Ning Zhang,Construction of Virtual Backbone with Multiple Factors Constraints in Wireless Ad-hoc Network.,2010,10,Ad Hoc and Sensor Wireless Networks,1,db/journals/ahswn/ahswn10.html#ZhangSZWT10,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-10-number-1/ahswn-10-1-p-27-59/ +Yu Wang 0003,Guest Editorial.,2010,10,Ad Hoc and Sensor Wireless Networks,1,db/journals/ahswn/ahswn10.html#WangL10,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-10-number-1/ahswn-10-1-p-1-3/ +Marc Heissenbüttel,A Framework for Routing in Large Ad-hoc Networks with Irregular Topologies.,2006,2,Ad Hoc and Sensor Wireless Networks,2,db/journals/ahswn/ahswn2.html#HeissenbuttelBJH06,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-2-number-2-2006/ahswn-2-2-p-127-150/ +Sungwook Kim,Game theoretic Multi-Objective Routing Scheme for Wireless Sensor Networks.,2010,10,Ad Hoc and Sensor Wireless Networks,4,db/journals/ahswn/ahswn10.html#Kim10,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-10-number-4/ahswn-10-4-p-343-359/ +Daniel Berend,Energy and Lifetime Efficient Connectivity in Wireless Ad-Hoc Networks.,2010,10,Ad Hoc and Sensor Wireless Networks,1,db/journals/ahswn/ahswn10.html#BerendSS10,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-10-number-1/ahswn-10-1-p-61-87/ +Lin Cui,Self-organizing Time Synchronization in Wireless Sensor Network.,2010,10,Ad Hoc and Sensor Wireless Networks,4,db/journals/ahswn/ahswn10.html#CuiW10,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-10-number-4/ahswn-10-4-p-317-341/ +Christophe Jelger,Algorithms for Prefix Continuity in IPv6 Ad Hoc Networks.,2006,2,Ad Hoc and Sensor Wireless Networks,2,db/journals/ahswn/ahswn2.html#JelgerN06,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-2-number-2-2006/ahswn-2-2-p-205-225/ +Juan A. Martinez,Performance Evaluation of Pre-authenticated Handover across Gateways in Vehicular Networks.,2012,15,Ad Hoc and Sensor Wireless Networks,1,db/journals/ahswn/ahswn15.html#MartinezR12,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-15-number-1-2-2012/ahswn-15-1-2-p-47-64/ +Junfang Wang,Efficient Mesh Router Placement and Interface Configuration in Wireless Mesh Networks.,2010,10,Ad Hoc and Sensor Wireless Networks,4,db/journals/ahswn/ahswn10.html#WangAX10,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-10-number-4/ahswn-10-4-p-267-299/ +Zhi Zhou,Geographic Ad Hoc Routing Security: Attacks and Countermeasures.,2005,1,Ad Hoc and Sensor Wireless Networks,3,db/journals/ahswn/ahswn1.html#ZhouY05,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-1-number-3-2005/ahswn-1-3-p-235-253-2005/ +Yu Wang 0019,Energy-Efficient Communication in Wireless Sensor Networks: An Integrated Approach on Power Control and Load Balancing.,2007,3,Ad Hoc and Sensor Wireless Networks,4,db/journals/ahswn/ahswn3.html#WangWT07,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahwsn-volume-3-number-4-2007/ahswn-3-4-p-287-310/ +Feilong Tang,Service-Oriented Wireless Sensor Networks and an Energy-Aware Mesh Routing Algorithm.,2012,15,Ad Hoc and Sensor Wireless Networks,1,db/journals/ahswn/ahswn15.html#TangTGGY12,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-15-number-1-2-2012/ahswn-15-1-2-p-21-46/ +Chiu-Ching Tuan,Sensing Fault Tolerance by Quartile and Outlier Method in Multi-Hops Wireless Sensor and Actor Networks.,2012,15,Ad Hoc and Sensor Wireless Networks,1,db/journals/ahswn/ahswn15.html#TuanWCH12,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-15-number-1-2-2012/ahswn-15-1-2-p-83-105/ +Nicolas Boulicault,Ana4: a 2.5 Framework for Deploying Real Multi-hop Ad hoc and Mesh Networks.,2006,2,Ad Hoc and Sensor Wireless Networks,4,db/journals/ahswn/ahswn2.html#BoulicaultCF06,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-2-number-4-2006/ahswn-2-4-p-325-348/ +Doina Bein,An Effective Algorithm for Computing Energy-Efficient Broadcasting Trees in All-Wireless Networks.,2010,10,Ad Hoc and Sensor Wireless Networks,4,db/journals/ahswn/ahswn10.html#BeinZ10,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-10-number-4/ahswn-10-4-p-253-265/ +Hongyi Wu,Signaling and Routing Protocols for iCAR.,2007,3,Ad Hoc and Sensor Wireless Networks,1,db/journals/ahswn/ahswn3.html#WuQD07,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahwsn-volume-3-number-1-2007/ahswn-3-1-p-1-33/ +Mounir Achir,A Model for Power Consumption Estimation in Wireless Sensor Networks.,2006,2,Ad Hoc and Sensor Wireless Networks,3,db/journals/ahswn/ahswn2.html#AchirO06,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-2-number-3-2006/ahswn-2-3-p-227-244/ +Imad Jawhar,Race-Free Resource Allocation for QoS Support in Wireless Networks.,2005,1,Ad Hoc and Sensor Wireless Networks,3,db/journals/ahswn/ahswn1.html#JawharW05,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-1-number-3-2005/ahswn-1-3-p-179-206-2005/ +Bo Sun 0001,Zone-Based Intrusion Detection for Mobile Ad Hoc Networks.,2006,2,Ad Hoc and Sensor Wireless Networks,3,db/journals/ahswn/ahswn2.html#SunWP06,http://www.oldcitypublishing.com/journals/ahswn-home/ahswn-issue-contents/ahswn-volume-2-number-3-2006/ahswn-2-3-p-297-324/ +Tristan Perez,Ship roll damping control.,2012,36,Annual Reviews in Control,1,db/journals/arc/arc36.html#PerezB12,https://doi.org/10.1016/j.arcontrol.2012.03.010 +S. Campbell,A review on improving the autonomy of unmanned surface vehicles through intelligent collision avoidance manoeuvres.,2012,36,Annual Reviews in Control,2,db/journals/arc/arc36.html#CampbellNI12,https://doi.org/10.1016/j.arcontrol.2012.09.008 +Mahdieh Sadat Sadabadi,From static output feedback to structured robust static output feedback: A survey.,2016,42,Annual Reviews in Control,,db/journals/arc/arc42.html#SadabadiP16,https://doi.org/10.1016/j.arcontrol.2016.09.014 +Tohru Katayama,Trends in systems and signals: Status report prepared by the IFAC Coordinating Committee on Systems and Signals.,2006,30,Annual Reviews in Control,1,db/journals/arc/arc30.html#KatayamaMSCC06,https://doi.org/10.1016/j.arcontrol.2006.01.001 +Andrew R. Teel,Lyapunov conditions certifying stability and recurrence for a class of stochastic hybrid systems.,2013,37,Annual Reviews in Control,1,db/journals/arc/arc37.html#Teel13,https://doi.org/10.1016/j.arcontrol.2013.02.001 +Deok-Hwa Kim,Realization of task intelligence for service robots in an unstructured environment.,2017,44,Annual Reviews in Control,,db/journals/arc/arc44.html#KimPYRJK17,https://doi.org/10.1016/j.arcontrol.2017.09.013 +D. Guégan,Chaos in economics and finance.,2009,33,Annual Reviews in Control,1,db/journals/arc/arc33.html#Guegan09,https://doi.org/10.1016/j.arcontrol.2009.01.002 +Alberto Broggi,Autonomous vehicles control in the VisLab Intercontinental Autonomous Challenge.,2012,36,Annual Reviews in Control,1,db/journals/arc/arc36.html#BroggiMZCP12,https://doi.org/10.1016/j.arcontrol.2012.03.012 +Christopher A. Bode,Run-to-run control and state estimation in high-mix semiconductor manufacturing.,2007,31,Annual Reviews in Control,2,db/journals/arc/arc31.html#BodeWHE07,https://doi.org/10.1016/j.arcontrol.2007.07.001 +Evangelos Eleftheriou,Nanopositioning for storage applications.,2012,36,Annual Reviews in Control,2,db/journals/arc/arc36.html#Eleftheriou12,https://doi.org/10.1016/j.arcontrol.2012.09.006 +Christophe Combastel,An Extended Zonotopic and Gaussian Kalman Filter (EZGKF) merging set-membership and stochastic paradigms: Toward non-linear filtering and fault detection.,2016,42,Annual Reviews in Control,,db/journals/arc/arc42.html#Combastel16,https://doi.org/10.1016/j.arcontrol.2016.07.002 +Umesh A. Korde,Preliminary consideration of energy storage requirements for sub-optimal reactive control of axisymmetric wave energy devices.,2015,40,Annual Reviews in Control,,db/journals/arc/arc40.html#Korde15,https://doi.org/10.1016/j.arcontrol.2015.08.004 +Arthur J. Krener,Linear time invariant minimax filtering.,2011,35,Annual Reviews in Control,2,db/journals/arc/arc35.html#KrenerK11,https://doi.org/10.1016/j.arcontrol.2011.10.006 +Oded Maler,On optimal and reasonable control in the presence of adversaries.,2007,31,Annual Reviews in Control,1,db/journals/arc/arc31.html#Maler07,https://doi.org/10.1016/j.arcontrol.2007.02.001 +Pieter J. Mosterman,Automating humanitarian missions with a heterogeneous fleet of vehicles.,2014,38,Annual Reviews in Control,2,db/journals/arc/arc38.html#MostermanSBZZ14,https://doi.org/10.1016/j.arcontrol.2014.09.008 +Rishi Amrit,Economic optimization using model predictive control with a terminal cost.,2011,35,Annual Reviews in Control,2,db/journals/arc/arc35.html#AmritRA11,https://doi.org/10.1016/j.arcontrol.2011.10.011 +Matjaz Colnaric,Improving integrity of embedded computers in control.,2003,27,Annual Reviews in Control,1,db/journals/arc/arc27.html#ColnaricVH03,https://doi.org/10.1016/S1367-5788(03)00006-3 +Tilman Bünte,Robust vehicle steering control design based on the disturbance observer.,2002,26,Annual Reviews in Control,1,db/journals/arc/arc26.html#BunteOGG02,https://doi.org/10.1016/S1367-5788(02)80024-4 +Hans Joachim Ferreau,Predictive control of a real-world Diesel engine using an extended online active set strategy.,2007,31,Annual Reviews in Control,2,db/journals/arc/arc31.html#FerreauOLRD07,https://doi.org/10.1016/j.arcontrol.2007.09.001 +J. Pérez,Combined active steering and traction for mechatronic bogie vehicles with independently rotating wheels.,2004,28,Annual Reviews in Control,2,db/journals/arc/arc28.html#PerezBMV04,https://doi.org/10.1016/j.arcontrol.2004.02.004 +Nicos Karcanias,Structure evolving systems and control in integrated design.,2008,32,Annual Reviews in Control,2,db/journals/arc/arc32.html#Karcanias08,https://doi.org/10.1016/j.arcontrol.2008.07.004 +Prakash Jagadeesan,Special Section on Advances in Control and Optimization of Dynamical Systems.,2016,42,Annual Reviews in Control,,db/journals/arc/arc42.html#Jagadeesan16,https://doi.org/10.1016/j.arcontrol.2016.09.020 +Mamadou Diagne,Control of shallow waves of two unmixed fluids by backstepping.,2017,44,Annual Reviews in Control,,db/journals/arc/arc44.html#DiagneTDK17,https://doi.org/10.1016/j.arcontrol.2017.09.003 +Farzin Taringoo,Gradient geodesic and Newton geodesic HMP algorithms for the optimization of hybrid systems.,2011,35,Annual Reviews in Control,2,db/journals/arc/arc35.html#TaringooC11,https://doi.org/10.1016/j.arcontrol.2011.10.003 +Yang Tang,Synchronization in complex networks and its application - A survey of recent advances and challenges.,2014,38,Annual Reviews in Control,2,db/journals/arc/arc38.html#TangQGK14,https://doi.org/10.1016/j.arcontrol.2014.09.003 +Arjan van der Schaft,Perspectives in modeling for control of power networks.,2016,41,Annual Reviews in Control,,db/journals/arc/arc41.html#SchaftS16,https://doi.org/10.1016/j.arcontrol.2016.04.017 +Junji Nomura,Virtual reality technology and its industrial applications.,2001,25,Annual Reviews in Control,,db/journals/arc/arc25.html#NomuraS01,https://doi.org/10.1016/S1367-5788(01)00010-4 +Sonja Stüdli,From vehicular platoons to general networked systems: String stability and related concepts.,2017,44,Annual Reviews in Control,,db/journals/arc/arc44.html#StudliSM17,https://doi.org/10.1016/j.arcontrol.2017.09.016 +Tsuneo Yoshikawa,Multifingered robot hands: Control for grasping and manipulation.,2010,34,Annual Reviews in Control,2,db/journals/arc/arc34.html#Yoshikawa10,https://doi.org/10.1016/j.arcontrol.2010.09.001 +Amine Drira,Facility layout problems: A survey.,2007,31,Annual Reviews in Control,2,db/journals/arc/arc31.html#DriraPH07,https://doi.org/10.1016/j.arcontrol.2007.04.001 +Radhakant Padhi,An account of chronological developments in control of distributed parameter systems.,2009,33,Annual Reviews in Control,1,db/journals/arc/arc33.html#PadhiA09,https://doi.org/10.1016/j.arcontrol.2009.01.003 +P. Soru,MPC based Artificial Pancreas: Strategies for individualization and meal compensation.,2012,36,Annual Reviews in Control,1,db/journals/arc/arc36.html#SoruNTMCM12,https://doi.org/10.1016/j.arcontrol.2012.03.009 +Lennart Ljung,Perspectives on system identification.,2010,34,Annual Reviews in Control,1,db/journals/arc/arc34.html#Ljung10,https://doi.org/10.1016/j.arcontrol.2009.12.001 +P. K. Menon,Dynamics and control technologies in air traffic management.,2016,42,Annual Reviews in Control,,db/journals/arc/arc42.html#MenonP16,https://doi.org/10.1016/j.arcontrol.2016.09.012 +G. N. Roberts,Trends in marine control systems.,2008,32,Annual Reviews in Control,2,db/journals/arc/arc32.html#Roberts08,https://doi.org/10.1016/j.arcontrol.2008.08.002 +Yuan Yao 0002,A survey on multistage/multiphase statistical modeling methods for batch processes.,2009,33,Annual Reviews in Control,2,db/journals/arc/arc33.html#YaoG09,https://doi.org/10.1016/j.arcontrol.2009.08.001 +Avital Bechar,A review and framework of laser-based collaboration support.,2015,39,Annual Reviews in Control,,db/journals/arc/arc39.html#BecharNW15,https://doi.org/10.1016/j.arcontrol.2015.03.003 +Javier Pereda,Developing a universal numerical control machine based on an enterprise multilevel framework and its IPPMD reference map and methodology.,2010,34,Annual Reviews in Control,1,db/journals/arc/arc34.html#PeredaRHRM10,https://doi.org/10.1016/j.arcontrol.2009.05.001 +Belem Saldivar,A control oriented guided tour in oilwell drilling vibration modeling.,2016,42,Annual Reviews in Control,,db/journals/arc/arc42.html#SaldivarMNMB16,https://doi.org/10.1016/j.arcontrol.2016.09.002 +Christoph Kawan,Uniformly hyperbolic control theory.,2017,44,Annual Reviews in Control,,db/journals/arc/arc44.html#Kawan17,https://doi.org/10.1016/j.arcontrol.2017.02.001 +Enrico Lovisari,Performance metrics in the average consensus problem: A tutorial.,2012,36,Annual Reviews in Control,1,db/journals/arc/arc36.html#LovisariZ12,https://doi.org/10.1016/j.arcontrol.2012.03.003 +Stefan B. Williams,Reflections on a decade of autonomous underwater vehicles operations for marine survey at the Australian Centre for Field Robotics.,2016,42,Annual Reviews in Control,,db/journals/arc/arc42.html#WilliamsPSFB16,https://doi.org/10.1016/j.arcontrol.2016.09.010 +Hongyinping Feng,Active disturbance rejection control: Old and new results.,2017,44,Annual Reviews in Control,,db/journals/arc/arc44.html#FengG17,https://doi.org/10.1016/j.arcontrol.2017.05.003 +Janos Gertler,A macro-economic analysis of the effect of offshoring and rehiring on the US economy.,2009,33,Annual Reviews in Control,1,db/journals/arc/arc33.html#Gertler09,https://doi.org/10.1016/j.arcontrol.2009.02.002 +Ronald Ping Man Chan,Review of modelling and control of two-wheeled robots.,2013,37,Annual Reviews in Control,1,db/journals/arc/arc37.html#ChanSH13,https://doi.org/10.1016/j.arcontrol.2013.03.004 +Sirkka-Liisa Jämsä Jounela,Future trends in process automation.,2007,31,Annual Reviews in Control,2,db/journals/arc/arc31.html#Jounela07,https://doi.org/10.1016/j.arcontrol.2007.08.003 +Gérard Morel,Manufacturing Enterprise Control and Management System Engineering: paradigms and open issues.,2003,27,Annual Reviews in Control,2,db/journals/arc/arc27.html#MorelPZM03,https://doi.org/10.1016/j.arcontrol.2003.09.003 +Robert Babuska,Neuro-fuzzy methods for nonlinear system identification.,2003,27,Annual Reviews in Control,1,db/journals/arc/arc27.html#BabuskaV03,https://doi.org/10.1016/S1367-5788(03)00009-9 +W. M. Wonham,Supervisory control of discrete-event systems: A brief history.,2018,45,Annual Reviews in Control,,db/journals/arc/arc45.html#WonhamCR18,https://doi.org/10.1016/j.arcontrol.2018.03.002 +John V. Ringwood,Overview of modelling and control strategies for wind turbines and wave energy devices: Comparisons and contrasts.,2015,40,Annual Reviews in Control,,db/journals/arc/arc40.html#RingwoodS15a,https://doi.org/10.1016/j.arcontrol.2015.09.003 +Arturo Molina,Application of enterprise models and simulation tools for the evaluation of the impact of best manufacturing practices implementation.,2003,27,Annual Reviews in Control,2,db/journals/arc/arc27.html#MolinaM03,https://doi.org/10.1016/j.arcontrol.2003.09.005 +Edwin Zivi,Design of robust shipboard power automation systems.,2005,29,Annual Reviews in Control,2,db/journals/arc/arc29.html#Zivi05,https://doi.org/10.1016/j.arcontrol.2005.08.004 +Aníbal Ollero,Control and perception techniques for aerial robotics.,2004,28,Annual Reviews in Control,2,db/journals/arc/arc28.html#OlleroM04,https://doi.org/10.1016/j.arcontrol.2004.05.003 +Hiroyuki Tamura,Behavioral models of decision making under risk and/or uncertainty with application to public sectors.,2008,32,Annual Reviews in Control,1,db/journals/arc/arc32.html#Tamura08,https://doi.org/10.1016/j.arcontrol.2008.03.006 +Franck Mars,Modelling human control of steering for the design of advanced driver assistance systems.,2017,44,Annual Reviews in Control,,db/journals/arc/arc44.html#MarsC17,https://doi.org/10.1016/j.arcontrol.2017.09.011 +Denis Dochain,Monitoring and control of process and power systems: Towards new paradigms: Status report prepared by the IFAC Coordinating committee on Process and Power Systems.,2006,30,Annual Reviews in Control,1,db/journals/arc/arc30.html#DochainMWMK06,https://doi.org/10.1016/j.arcontrol.2006.01.002 +Asgeir J. Sørensen,A survey of dynamic positioning control systems.,2011,35,Annual Reviews in Control,1,db/journals/arc/arc35.html#Sorensen11,https://doi.org/10.1016/j.arcontrol.2011.03.008 +Frédérique Mayer,Human-centred systems engineering.,2006,30,Annual Reviews in Control,2,db/journals/arc/arc30.html#MayerS06,https://doi.org/10.1016/j.arcontrol.2006.09.004 +Jacopo Guanetti,Control of connected and automated vehicles: State of the art and future challenges.,2018,45,Annual Reviews in Control,,db/journals/arc/arc45.html#GuanettiKB18,https://doi.org/10.1016/j.arcontrol.2018.04.011 +Steven X. Ding,Integrated design of feedback controllers and fault detectors.,2009,33,Annual Reviews in Control,2,db/journals/arc/arc33.html#Ding09,https://doi.org/10.1016/j.arcontrol.2009.08.003 +Arturo Molina,Introduction: enterprise integration and networking.,2003,27,Annual Reviews in Control,2,db/journals/arc/arc27.html#Molina03,https://doi.org/10.1016/j.arcontrol.2003.10.003 +Daniel Limón,Special section on Nonlinear Model Predictive Control.,2016,41,Annual Reviews in Control,,db/journals/arc/arc41.html#LimonPJ16,https://doi.org/10.1016/j.arcontrol.2016.04.007 +Huajing Fang,Fault diagnosis of networked control systems.,2007,31,Annual Reviews in Control,1,db/journals/arc/arc31.html#FangYZ07,https://doi.org/10.1016/j.arcontrol.2007.01.001 +David J. N. Limebeer,Buffet suppression in long-span suspension bridges.,2011,35,Annual Reviews in Control,2,db/journals/arc/arc35.html#LimebeerGZ11,https://doi.org/10.1016/j.arcontrol.2011.10.012 +László Monostori,Cooperative control in production and logistics.,2015,39,Annual Reviews in Control,,db/journals/arc/arc39.html#MonostoriVDPBC15,https://doi.org/10.1016/j.arcontrol.2015.03.001 +Domitilla Del Vecchio,Future systems and control research in synthetic biology.,2018,45,Annual Reviews in Control,,db/journals/arc/arc45.html#VecchioQMS18,https://doi.org/10.1016/j.arcontrol.2018.04.007 +Peter Fogh Odgaard,Gear-box fault detection using time-frequency based methods.,2015,40,Annual Reviews in Control,,db/journals/arc/arc40.html#OdgaardS15,https://doi.org/10.1016/j.arcontrol.2015.09.004 +Xiaohua Xia,Control problems in building energy retrofit and maintenance planning.,2017,44,Annual Reviews in Control,,db/journals/arc/arc44.html#Xia17,https://doi.org/10.1016/j.arcontrol.2017.04.003 +Giorgio Bacelli,Nonlinear control of flap-type wave energy converter with a non-ideal power take-off system.,2015,40,Annual Reviews in Control,,db/journals/arc/arc40.html#BacelliGR15,https://doi.org/10.1016/j.arcontrol.2015.09.006 +Janusz Zalewski,Real-time software architectures and design patterns: fundamental concepts and their consequences.,2001,25,Annual Reviews in Control,,db/journals/arc/arc25.html#Zalewski01,https://doi.org/10.1016/S1367-5788(01)80001-8 +Bérénice Mettler,Emergent patterns in agent-environment interactions and their roles in supporting agile spatial skills.,2017,44,Annual Reviews in Control,,db/journals/arc/arc44.html#MettlerVF17,https://doi.org/10.1016/j.arcontrol.2017.09.001 +Sergio Galeani,A parameterization of exponentially stabilizing controllers for linear mechanical systems subject to non-smooth impacts.,2004,28,Annual Reviews in Control,1,db/journals/arc/arc28.html#GaleaniMT04,https://doi.org/10.1016/j.arcontrol.2004.01.002 +Joseph Z. Lu,Closing the gap between planning and control: A multiscale MPC cascade approach.,2015,40,Annual Reviews in Control,,db/journals/arc/arc40.html#Lu15,https://doi.org/10.1016/j.arcontrol.2015.09.016 +Hamsa Balakrishnan,Control and optimization algorithms for air transportation systems.,2016,41,Annual Reviews in Control,,db/journals/arc/arc41.html#Balakrishnan16,https://doi.org/10.1016/j.arcontrol.2016.04.019 +Sid-Ahmed Raka,Fault detection based on robust adaptive thresholds: A dynamic interval approach.,2013,37,Annual Reviews in Control,1,db/journals/arc/arc37.html#RakaC13,https://doi.org/10.1016/j.arcontrol.2013.04.001 +Manuel Silva 0001,Special section on the history of Discrete Event Systems.,2018,45,Annual Reviews in Control,,db/journals/arc/arc45.html#Silva18,https://doi.org/10.1016/j.arcontrol.2018.04.005 +Gábor Stépán,Stability of time-periodic and delayed systems - a route to act-and-wait control.,2006,30,Annual Reviews in Control,2,db/journals/arc/arc30.html#StepanI06,https://doi.org/10.1016/j.arcontrol.2006.08.002 +Alberto Isidori,Steady-state behaviors in nonlinear systems with an application to robust disturbance rejection.,2008,32,Annual Reviews in Control,1,db/journals/arc/arc32.html#IsidoriB08,https://doi.org/10.1016/j.arcontrol.2008.01.001 +José Carlos Moreno,The input amplitude saturation problem in QFT: A survey.,2011,35,Annual Reviews in Control,1,db/journals/arc/arc35.html#MorenoGBB11,https://doi.org/10.1016/j.arcontrol.2011.03.002 +Daniel Abramovitch,Disk drive control: The early years.,2002,26,Annual Reviews in Control,2,db/journals/arc/arc26.html#AbramovitchF02,https://doi.org/10.1016/S1367-5788(02)00028-7 +Horst Schulte,Fault-tolerant control of wind turbines with hydrostatic transmission using Takagi-Sugeno and sliding mode techniques.,2015,40,Annual Reviews in Control,,db/journals/arc/arc40.html#SchulteG15,https://doi.org/10.1016/j.arcontrol.2015.08.003 +Luis M. Camarinha-Matos,Collaborative networked organizations: Status and trends in manufacturing.,2009,33,Annual Reviews in Control,2,db/journals/arc/arc33.html#Camarinha-Matos09,https://doi.org/10.1016/j.arcontrol.2009.05.006 +O. P. Malik,Amalgamation of adaptive control and AI techniques: applications to generator excitation control.,2004,28,Annual Reviews in Control,1,db/journals/arc/arc28.html#Malik04,https://doi.org/10.1016/j.arcontrol.2004.01.008 +Christophe Simon,Reliability assessment method for structural observer based FDI scheme by a graph theoretic approach.,2013,37,Annual Reviews in Control,1,db/journals/arc/arc37.html#SimonBH13,https://doi.org/10.1016/j.arcontrol.2013.04.003 +Stéphane Lafortune,On the history of diagnosability and opacity in discrete event systems.,2018,45,Annual Reviews in Control,,db/journals/arc/arc45.html#LafortuneLH18,https://doi.org/10.1016/j.arcontrol.2018.04.002 +Dmitry A. Ivanov,Applicability of optimal control theory to adaptive supply chain planning and scheduling.,2012,36,Annual Reviews in Control,1,db/journals/arc/arc36.html#IvanovDS12,https://doi.org/10.1016/j.arcontrol.2012.03.006 +Pierluigi Silvestrin,Control and navigation aspects of the new Earth observation missions of the European Space Agency.,2005,29,Annual Reviews in Control,2,db/journals/arc/arc29.html#Silvestrin05,https://doi.org/10.1016/j.arcontrol.2005.05.004 +Selma Music,Control sharing in human-robot team interaction.,2017,44,Annual Reviews in Control,,db/journals/arc/arc44.html#MusicH17,https://doi.org/10.1016/j.arcontrol.2017.09.017 +James S. Albus,RCS: A cognitive architecture for intelligent multi-agent systems.,2005,29,Annual Reviews in Control,1,db/journals/arc/arc29.html#AlbusB05,https://doi.org/10.1016/j.arcontrol.2004.12.003 +Kamesh Subbarao,Reinforcement learning based computational adaptive optimal control and system identification for linear systems.,2016,42,Annual Reviews in Control,,db/journals/arc/arc42.html#SubbaraoNA16,https://doi.org/10.1016/j.arcontrol.2016.09.021 +F. Wilhelm Bruns,Ubiquitous computing and interaction.,2006,30,Annual Reviews in Control,2,db/journals/arc/arc30.html#Bruns06,https://doi.org/10.1016/j.arcontrol.2006.09.002 +Xiaofan Wang,Pinning control of complex networked systems: A decade after and beyond.,2014,38,Annual Reviews in Control,1,db/journals/arc/arc38.html#WangS14,https://doi.org/10.1016/j.arcontrol.2014.03.008 +Pramod P. Khargonekar,Advancing systems and control research in the era of ML and AI.,2018,45,Annual Reviews in Control,,db/journals/arc/arc45.html#KhargonekarD18,https://doi.org/10.1016/j.arcontrol.2018.04.001 +P. Tchinda Mouofo,Optimal control of a delayed system subject to mixed control-state constraints with application to a within-host model of hepatitis virus B.,2013,37,Annual Reviews in Control,2,db/journals/arc/arc37.html#MouofoTMB13,https://doi.org/10.1016/j.arcontrol.2013.09.004 +Ewart R. Carson,Dealing with bio- and ecological complexity: Challenges and opportunities.,2006,30,Annual Reviews in Control,1,db/journals/arc/arc30.html#CarsonFPSS06,https://doi.org/10.1016/j.arcontrol.2006.01.003 +Pere Ridao,Intervention AUVs: The next challenge.,2015,40,Annual Reviews in Control,,db/journals/arc/arc40.html#RidaoCRSO15,https://doi.org/10.1016/j.arcontrol.2015.09.015 +Suguru Arimoto,Intelligent control of multi-fingered hands.,2004,28,Annual Reviews in Control,1,db/journals/arc/arc28.html#Arimoto04,https://doi.org/10.1016/j.arcontrol.2003.12.001 +Alexandre Dolgui,Special section: Advances in manufacturing systems and logistics.,2007,31,Annual Reviews in Control,1,db/journals/arc/arc31.html#DolguiM07,https://doi.org/10.1016/j.arcontrol.2007.03.001 +Amir Vasebi,Dynamic data reconciliation in mineral and metallurgical plants.,2012,36,Annual Reviews in Control,2,db/journals/arc/arc36.html#VasebiPH12,https://doi.org/10.1016/j.arcontrol.2012.09.005 +Suresh Thenozhi,Advances in modeling and vibration control of building structures.,2013,37,Annual Reviews in Control,2,db/journals/arc/arc37.html#Thenozhi013,https://doi.org/10.1016/j.arcontrol.2013.09.012 +Miroslav Krstic,Nonlinear stabilization in infinite dimension.,2013,37,Annual Reviews in Control,2,db/journals/arc/arc37.html#KrsticB13,https://doi.org/10.1016/j.arcontrol.2013.09.002 +Farouk Belkadi,A meta-modelling framework for knowledge consistency in collaborative design.,2012,36,Annual Reviews in Control,2,db/journals/arc/arc36.html#BelkadiDNTM12,https://doi.org/10.1016/j.arcontrol.2012.09.016 +Angela Tursi,Ontological approach for products-centric information system interoperability in networked manufacturing enterprises.,2009,33,Annual Reviews in Control,2,db/journals/arc/arc33.html#TursiPMD09,https://doi.org/10.1016/j.arcontrol.2009.05.003 +Giacomo Como,On resilient control of dynamical flow networks.,2017,43,Annual Reviews in Control,,db/journals/arc/arc43.html#Como17,https://doi.org/10.1016/j.arcontrol.2017.01.001 +David Q. Mayne,Personal impressions of the dawn of modern control.,2011,35,Annual Reviews in Control,2,db/journals/arc/arc35.html#Mayne11,https://doi.org/10.1016/j.arcontrol.2011.10.002 +Alain Mille,From case-based reasoning to traces-based reasoning.,2006,30,Annual Reviews in Control,2,db/journals/arc/arc30.html#Mille06,https://doi.org/10.1016/j.arcontrol.2006.09.003 +Petar V. Kokotovic,David Mayne: Half a century of creativity.,2011,35,Annual Reviews in Control,2,db/journals/arc/arc35.html#KokotovicA11,https://doi.org/10.1016/j.arcontrol.2011.10.001 +Sebastián Dormido-Bencomo,Control learning: present and future.,2004,28,Annual Reviews in Control,1,db/journals/arc/arc28.html#Dormido-Bencomo04,https://doi.org/10.1016/j.arcontrol.2003.12.002 +Richard D. Braatz,Advanced control of crystallization processes.,2002,26,Annual Reviews in Control,1,db/journals/arc/arc26.html#Braatz02,https://doi.org/10.1016/S1367-5788(02)80016-5 +Laura Menini,Control of mechanical systems subject to non-smooth impacts.,2001,25,Annual Reviews in Control,,db/journals/arc/arc25.html#MeniniT01,https://doi.org/10.1016/S1367-5788(01)00004-9 +Jonathan R. Partington,Some frequency-domain approaches to the model reduction of delay systems.,2004,28,Annual Reviews in Control,1,db/journals/arc/arc28.html#Partington04,https://doi.org/10.1016/j.arcontrol.2004.01.007 +Hamed Badihi,Active power control design for supporting grid frequency regulation in wind farms.,2015,40,Annual Reviews in Control,,db/journals/arc/arc40.html#BadihiZH15,https://doi.org/10.1016/j.arcontrol.2015.09.005 +Jiagen Ding,Settling control with reference redesign for dual actuator hard disk drive systems.,2004,28,Annual Reviews in Control,2,db/journals/arc/arc28.html#DingWT04,https://doi.org/10.1016/j.arcontrol.2004.01.012 +Yiannis Papadopoulos,A synthesis of logic and bio-inspired techniques in the design of dependable systems.,2016,41,Annual Reviews in Control,,db/journals/arc/arc41.html#PapadopoulosWPS16,https://doi.org/10.1016/j.arcontrol.2016.04.008 +Said Ghani Khan,Corrigendum to 'Reinforcement Learning and Optimal Adaptive Control: An Overview and Implementation Examples' [Annual Reviews in Control 36 (1) (2012) 42-59].,2012,36,Annual Reviews in Control,2,db/journals/arc/arc36.html#KhanHLPM12a,https://doi.org/10.1016/j.arcontrol.2012.07.001 +Mariana Netto,Special section on Cyber-Physical and Human Systems (CPHS).,2017,44,Annual Reviews in Control,,db/journals/arc/arc44.html#NettoS17,https://doi.org/10.1016/j.arcontrol.2017.09.018 +Da Sun,Application of wave-variable control to bilateral teleoperation systems: A survey.,2014,38,Annual Reviews in Control,1,db/journals/arc/arc38.html#SunND14,https://doi.org/10.1016/j.arcontrol.2014.03.002 +Said Ghani Khan,Reinforcement learning and optimal adaptive control: An overview and implementation examples.,2012,36,Annual Reviews in Control,1,db/journals/arc/arc36.html#KhanHLPM12,https://doi.org/10.1016/j.arcontrol.2012.03.004 +Thomas Mergner,A neurological view on reactive human stance control.,2010,34,Annual Reviews in Control,2,db/journals/arc/arc34.html#Mergner10,https://doi.org/10.1016/j.arcontrol.2010.08.001 +Iven Mareels,Systems engineering for irrigation systems: Successes and challenges.,2005,29,Annual Reviews in Control,2,db/journals/arc/arc29.html#MareelsWOCLN05,https://doi.org/10.1016/j.arcontrol.2005.08.001 +Michael K. Masten,Introduction.,2006,30,Annual Reviews in Control,1,db/journals/arc/arc30.html#Masten06,https://doi.org/10.1016/j.arcontrol.2006.04.001 +Janos Gertler,Foreword.,2006,30,Annual Reviews in Control,1,db/journals/arc/arc30.html#Gertler06,https://doi.org/10.1016/j.arcontrol.2006.04.002 +Jin Jiang,Fault-tolerant control systems: A comparative study between active and passive approaches.,2012,36,Annual Reviews in Control,1,db/journals/arc/arc36.html#JiangY12,https://doi.org/10.1016/j.arcontrol.2012.03.005 +Stefano Longo,A parallel formulation for predictive control with nonuniform hold constraints.,2011,35,Annual Reviews in Control,2,db/journals/arc/arc35.html#LongoKLC11,https://doi.org/10.1016/j.arcontrol.2011.10.008 +Scott W. Hansen,Some new applications of Russell's principle to infinite dimensional vibrating systems.,2017,44,Annual Reviews in Control,,db/journals/arc/arc44.html#HansenT17,https://doi.org/10.1016/j.arcontrol.2017.09.005 +Marco C. Campi,The scenario approach for systems and control design.,2009,33,Annual Reviews in Control,2,db/journals/arc/arc33.html#CampiGP09,https://doi.org/10.1016/j.arcontrol.2009.07.001 +Mike J. Grimble,Predictive control for industrial applications.,2001,25,Annual Reviews in Control,,db/journals/arc/arc25.html#GrimbleO01,https://doi.org/10.1016/S1367-5788(01)00003-7 +Ilse Y. Smets,Optimal control theory: A generic tool for identification and control of (bio-)chemical reactors.,2002,26,Annual Reviews in Control,1,db/journals/arc/arc26.html#SmetsVI02,https://doi.org/10.1016/S1367-5788(02)80012-8 +Stefan Banholzer,POD-based error control for reduced-order bicriterial PDE-constrained optimization.,2017,44,Annual Reviews in Control,,db/journals/arc/arc44.html#BanholzerBV17,https://doi.org/10.1016/j.arcontrol.2017.09.004 +Francisco Curado Teixeira,AUV terrain-aided navigation using a Doppler velocity logger.,2016,42,Annual Reviews in Control,,db/journals/arc/arc42.html#TeixeiraQP16,https://doi.org/10.1016/j.arcontrol.2016.10.002 +Andreas Varga,New computational paradigms in solving fault detection and isolation problems.,2013,37,Annual Reviews in Control,1,db/journals/arc/arc37.html#Varga13,https://doi.org/10.1016/j.arcontrol.2013.03.001 +Enzo Morosini Frazzon,Spare parts supply chains' operational planning using technical condition information from intelligent maintenance systems.,2014,38,Annual Reviews in Control,1,db/journals/arc/arc38.html#FrazzonIAPH14,https://doi.org/10.1016/j.arcontrol.2014.03.014 +Carlos Agostinho,Sustaining interoperability of networked liquid-sensing enterprises: A complex systems perspective.,2015,39,Annual Reviews in Control,,db/journals/arc/arc39.html#AgostinhoJ15,https://doi.org/10.1016/j.arcontrol.2015.03.012 +Mituhiko Araki,Computer control of physiological states of patients under and after surgical operation.,2005,29,Annual Reviews in Control,2,db/journals/arc/arc29.html#ArakiF05,https://doi.org/10.1016/j.arcontrol.2005.05.001 +Basil Kouvaritakis,Recent developments in stochastic MPC and sustainable development.,2004,28,Annual Reviews in Control,1,db/journals/arc/arc28.html#KouvaritakisCT04,https://doi.org/10.1016/j.arcontrol.2004.01.003 +Françoise Lamnabhi-Lagarrigue,The next phase of Annual Reviews in Control.,2016,41,Annual Reviews in Control,,db/journals/arc/arc41.html#Lamnabhi-Lagarrigue16,https://doi.org/10.1016/j.arcontrol.2016.04.016 +Jurek Z. Sasiadek,Sensor fusion.,2002,26,Annual Reviews in Control,2,db/journals/arc/arc26.html#Sasiadek02,https://doi.org/10.1016/S1367-5788(02)00045-7 +Xiaodong Zhang 0009,Design and analysis of a fault isolation scheme for a class of uncertain nonlinear systems.,2008,32,Annual Reviews in Control,1,db/journals/arc/arc32.html#ZhangPP08,https://doi.org/10.1016/j.arcontrol.2008.03.007 +Detlef Zuehlke,SmartFactory - Towards a factory-of-things.,2010,34,Annual Reviews in Control,1,db/journals/arc/arc34.html#Zuehlke10,https://doi.org/10.1016/j.arcontrol.2010.02.008 +Filiberto Fele,A framework for receding-horizon control in infinite-horizon aggregative games.,2018,45,Annual Reviews in Control,,db/journals/arc/arc45.html#FelePAS18,https://doi.org/10.1016/j.arcontrol.2018.04.008 +Boris Rohal-Ilkiv,A note on calculation of polytopic-invariant feasible sets for linear continuous-time systems.,2004,28,Annual Reviews in Control,1,db/journals/arc/arc28.html#Rohal-Ilkiv04,https://doi.org/10.1016/j.arcontrol.2004.01.006 +Edoardo Bovio,Autonomous underwater vehicles for scientific and naval operations.,2006,30,Annual Reviews in Control,2,db/journals/arc/arc30.html#BovioCB06,https://doi.org/10.1016/j.arcontrol.2006.08.003 +Hrishikesh B. Aradhye,Art-2 and multiscale art-2 for on-line process fault detection - Validation via industrial case studies and Monte Carlo simulation.,2002,26,Annual Reviews in Control,1,db/journals/arc/arc26.html#AradhyeDB02,https://doi.org/10.1016/S1367-5788(02)80020-7 +François B. Vernadat,Enterprise modeling and integration (EMI): Current status and research perspectives.,2002,26,Annual Reviews in Control,1,db/journals/arc/arc26.html#Vernadat02,https://doi.org/10.1016/S1367-5788(02)80006-2 +Fausto Ferreira,Forward looking sonar mosaicing for Mine Countermeasures.,2015,40,Annual Reviews in Control,,db/journals/arc/arc40.html#FerreiraDMC15,https://doi.org/10.1016/j.arcontrol.2015.09.014 +Gudela Grote,Uncertainty management at the core of system design.,2004,28,Annual Reviews in Control,2,db/journals/arc/arc28.html#Grote04,https://doi.org/10.1016/j.arcontrol.2004.03.001 +Charles Poussot-Vassal,Survey and performance evaluation on some automotive semi-active suspension control methods: A comparative study on a single-corner model.,2012,36,Annual Reviews in Control,1,db/journals/arc/arc36.html#Poussot-VassalSSSD12,https://doi.org/10.1016/j.arcontrol.2012.03.011 +A. Clauset,Controlling across complex networks - Emerging links between networks and control.,2008,32,Annual Reviews in Control,2,db/journals/arc/arc32.html#ClausetTAB08,https://doi.org/10.1016/j.arcontrol.2008.09.001 +Eleonora Saggini,Evaluation and comparison of navigation guidance and control systems for 2D surface path-following.,2015,40,Annual Reviews in Control,,db/journals/arc/arc40.html#SagginiZBRBCR15,https://doi.org/10.1016/j.arcontrol.2015.08.006 +Georgi M. Dimirovski,Control system approaches for sustainable development and instability management in the globalization age.,2006,30,Annual Reviews in Control,1,db/journals/arc/arc30.html#DimirovskiDKNSV06,https://doi.org/10.1016/j.arcontrol.2006.01.004 +Wenjun Mei,On the dynamics of deterministic epidemic propagation over networks.,2017,44,Annual Reviews in Control,,db/journals/arc/arc44.html#MeiMZB17,https://doi.org/10.1016/j.arcontrol.2017.09.002 +Job van Amerongen,Modelling of physical systems for the design and control of mechatronic systems.,2003,27,Annual Reviews in Control,1,db/journals/arc/arc27.html#AmerongenB03,https://doi.org/10.1016/S1367-5788(03)00010-5 +Pertti Järventausta,Smart grid power system control in distributed generation environment.,2010,34,Annual Reviews in Control,2,db/journals/arc/arc34.html#JarventaustaRRP10,https://doi.org/10.1016/j.arcontrol.2010.08.005 +Ian Postlethwaite,Robust control applications.,2007,31,Annual Reviews in Control,1,db/journals/arc/arc31.html#PostlethwaiteTH07,https://doi.org/10.1016/j.arcontrol.2007.02.003 +Werner Dieterle,Mechatronic systems: Automotive applications and modern design methodologies.,2005,29,Annual Reviews in Control,2,db/journals/arc/arc29.html#Dieterle05,https://doi.org/10.1016/j.arcontrol.2005.05.002 +Marion A. Hersh,Whistleblowers - heroes or traitors?: Individual and collective responsibility for ethical behaviour.,2002,26,Annual Reviews in Control,2,db/journals/arc/arc26.html#Hersh02,https://doi.org/10.1016/S1367-5788(02)00025-1 +Kristin Ytterstad Pettersen,Snake robots.,2017,44,Annual Reviews in Control,,db/journals/arc/arc44.html#Pettersen17,https://doi.org/10.1016/j.arcontrol.2017.09.006 +Gianni Ferretti,Virtual prototyping of mechatronic systems.,2004,28,Annual Reviews in Control,2,db/journals/arc/arc28.html#FerrettiMR04,https://doi.org/10.1016/j.arcontrol.2004.02.002 +Michael G. Safonov,Origins of robust control: Early history and future speculations.,2012,36,Annual Reviews in Control,2,db/journals/arc/arc36.html#Safonov12,https://doi.org/10.1016/j.arcontrol.2012.09.001 +Jozsef Bokor,Fault detection and isolation in nonlinear systems.,2009,33,Annual Reviews in Control,2,db/journals/arc/arc33.html#BokorS09,https://doi.org/10.1016/j.arcontrol.2009.09.001 +David W. Clarke,Adaptive control of servohydraulic materials-testing machines: a comparison between black- and grey-box models.,2001,25,Annual Reviews in Control,,db/journals/arc/arc25.html#Clarke01,https://doi.org/10.1016/S1367-5788(01)00008-6 +Suguru Arimoto,A differential-geometric approach for 2D and 3D object grasping and manipulation.,2007,31,Annual Reviews in Control,2,db/journals/arc/arc31.html#Arimoto07,https://doi.org/10.1016/j.arcontrol.2007.08.004 +Dragoslav D. Siljak,Control of large-scale systems: Beyond decentralized feedback.,2005,29,Annual Reviews in Control,2,db/journals/arc/arc29.html#SiljakZ05,https://doi.org/10.1016/j.arcontrol.2005.08.003 +Peter P. Groumpos,Large Scale Systems and Fuzzy Cognitive Maps: A critical overview of challenges and research opportunities.,2014,38,Annual Reviews in Control,1,db/journals/arc/arc38.html#Groumpos14,https://doi.org/10.1016/j.arcontrol.2014.03.009 +Ruben Heradio,Virtual and remote labs in control education: A survey.,2016,42,Annual Reviews in Control,,db/journals/arc/arc42.html#HeradioTD16,https://doi.org/10.1016/j.arcontrol.2016.08.001 +Lalo Magni,Stabilizing model predictive control of nonlinear continuous time systems.,2004,28,Annual Reviews in Control,1,db/journals/arc/arc28.html#MagniS04,https://doi.org/10.1016/j.arcontrol.2004.01.001 +Diego A. Muñoz,Robust control design of a class of nonlinear input- and state-constrained systems.,2013,37,Annual Reviews in Control,2,db/journals/arc/arc37.html#MunozM13,https://doi.org/10.1016/j.arcontrol.2013.09.003 +Huibert Kwakernaak,H2-optimization - Theory and applications to robust control design.,2002,26,Annual Reviews in Control,1,db/journals/arc/arc26.html#Kwakernaak02,https://doi.org/10.1016/S1367-5788(02)80010-4 +Ali Mesbah 0003,Stochastic model predictive control with active uncertainty learning: A Survey on dual control.,2018,45,Annual Reviews in Control,,db/journals/arc/arc45.html#Mesbah18,https://doi.org/10.1016/j.arcontrol.2017.11.001 +Federico Di Palma,A multi-model structure for model predictive control.,2004,28,Annual Reviews in Control,1,db/journals/arc/arc28.html#PalmaM04,https://doi.org/10.1016/j.arcontrol.2004.01.004 +Andrea Heide,"The ""cognitive car"": A roadmap for research issues in the automotive sector.",2006,30,Annual Reviews in Control,2,db/journals/arc/arc30.html#HeideH06,https://doi.org/10.1016/j.arcontrol.2006.09.005 +Naomi Ehrich Leonard,Multi-agent system dynamics: Bifurcation and behavior of animal groups.,2014,38,Annual Reviews in Control,2,db/journals/arc/arc38.html#Leonard14,https://doi.org/10.1016/j.arcontrol.2014.09.002 +Janos Gertler,Farewell to Annual Reviews.,2015,40,Annual Reviews in Control,,db/journals/arc/arc40.html#Gertler15,https://doi.org/10.1016/j.arcontrol.2015.08.001 +Hoon Lee,Chattering suppression methods in sliding mode control systems.,2007,31,Annual Reviews in Control,2,db/journals/arc/arc31.html#LeeU07,https://doi.org/10.1016/j.arcontrol.2007.08.001 +Megan Zagrobelny,Quis custodiet ipsos custodes?,2013,37,Annual Reviews in Control,2,db/journals/arc/arc37.html#ZagrobelnyJR13,https://doi.org/10.1016/j.arcontrol.2013.09.005 +Manuel Silva,Half a century after Carl Adam Petri's Ph.D. thesis: A perspective on the field.,2013,37,Annual Reviews in Control,2,db/journals/arc/arc37.html#Silva13,https://doi.org/10.1016/j.arcontrol.2013.09.001 +Izabela Krzysztofik,Selected methods of control of the scanning and tracking gyroscope system mounted on a combat vehicle.,2017,44,Annual Reviews in Control,,db/journals/arc/arc44.html#KrzysztofikTK17,https://doi.org/10.1016/j.arcontrol.2016.10.003 +Lawrence E. Whitman,The missing link: Culture and language barriers to interoperability.,2006,30,Annual Reviews in Control,2,db/journals/arc/arc30.html#WhitmanP06,https://doi.org/10.1016/j.arcontrol.2006.09.008 +J. C. Q. Dias,RFID together with multi-agent systems to control global value chains.,2009,33,Annual Reviews in Control,2,db/journals/arc/arc33.html#DiasCOM09,https://doi.org/10.1016/j.arcontrol.2009.03.005 +Tryphon T. Georgiou,Rudolf E. Kalman's quest for algebraic characterizations of positivity.,2018,45,Annual Reviews in Control,,db/journals/arc/arc45.html#Georgiou18,https://doi.org/10.1016/j.arcontrol.2018.01.001 +László Monostori,Towards adaptive and digital manufacturing.,2010,34,Annual Reviews in Control,1,db/journals/arc/arc34.html#MonostoriCKPZKS10,https://doi.org/10.1016/j.arcontrol.2010.02.007 +Francesca Boem,Distributed fault diagnosis for continuous-time nonlinear systems: The input-output case.,2013,37,Annual Reviews in Control,1,db/journals/arc/arc37.html#BoemFPP13,https://doi.org/10.1016/j.arcontrol.2013.03.008 +John V. Ringwood,Special issue on wind turbines and wave energy devices.,2015,40,Annual Reviews in Control,,db/journals/arc/arc40.html#RingwoodS15,https://doi.org/10.1016/j.arcontrol.2015.09.002 +J. Lee,Self-maintenance and engineering immune systems: Towards smarter machines and manufacturing systems.,2011,35,Annual Reviews in Control,1,db/journals/arc/arc35.html#LeeGE11,https://doi.org/10.1016/j.arcontrol.2011.03.007 +Dominique Sauter,Co-design of safe networked control systems.,2013,37,Annual Reviews in Control,2,db/journals/arc/arc37.html#SauterSAM13,https://doi.org/10.1016/j.arcontrol.2013.09.010 +Sergey V. Drakunov,Delay identification in time-delay systems using variable structure observers.,2006,30,Annual Reviews in Control,2,db/journals/arc/arc30.html#DrakunovPRB06,https://doi.org/10.1016/j.arcontrol.2006.08.001 +Vladimir L. Kharitonov,Lyapunov functionals and matrices.,2010,34,Annual Reviews in Control,1,db/journals/arc/arc34.html#Kharitonov10,https://doi.org/10.1016/j.arcontrol.2010.02.001 +Jan Rohac,Validation of nonlinear integrated navigation solutions.,2017,43,Annual Reviews in Control,,db/journals/arc/arc43.html#RohacHASJF17,https://doi.org/10.1016/j.arcontrol.2017.03.006 +Belkacem Ould Bouamama,Graphical methods for diagnosis of dynamic systems: Review.,2014,38,Annual Reviews in Control,2,db/journals/arc/arc38.html#BouamamaBLM14,https://doi.org/10.1016/j.arcontrol.2014.09.004 +Esma Yahia,Semantics enactment for interoperability assessment in enterprise information systems.,2012,36,Annual Reviews in Control,1,db/journals/arc/arc36.html#YahiaLAP12,https://doi.org/10.1016/j.arcontrol.2012.03.008 +Marcel Staroswiecki,From control to supervision.,2001,25,Annual Reviews in Control,,db/journals/arc/arc25.html#StaroswieckiG01,https://doi.org/10.1016/S1367-5788(01)00002-5 +Aníbal Ollero,Milestone report of the manufacturing and instrumentation coordinating committee: From MEMS to enterprise systems.,2002,26,Annual Reviews in Control,2,db/journals/arc/arc26.html#OlleroMBNSBEG02,https://doi.org/10.1016/S1367-5788(02)00026-3 +Mathukumalli Vidyasagar,Machine learning methods in computational cancer biology.,2017,43,Annual Reviews in Control,,db/journals/arc/arc43.html#Vidyasagar17,https://doi.org/10.1016/j.arcontrol.2017.03.007 +Duncan C. McFarlane,Product intelligence in industrial control: Theory and practice.,2013,37,Annual Reviews in Control,1,db/journals/arc/arc37.html#McFarlaneGWH13,https://doi.org/10.1016/j.arcontrol.2013.03.003 +Graham C. Goodwin,Application of nonlinear model predictive control to an industrial induction heating furnace.,2013,37,Annual Reviews in Control,2,db/journals/arc/arc37.html#GoodwinMSC13,https://doi.org/10.1016/j.arcontrol.2013.09.006 +F. Wilhelm Bruns,Hyper-bonds - distributed collaboration in mixed reality.,2005,29,Annual Reviews in Control,1,db/journals/arc/arc29.html#Bruns05,https://doi.org/10.1016/j.arcontrol.2004.11.001 +Uwe Kiencke,The impact of automatic control on recent developments in transportation and vehicle systems.,2006,30,Annual Reviews in Control,1,db/journals/arc/arc30.html#KienckeNSSPA06,https://doi.org/10.1016/j.arcontrol.2006.02.001 +Leyla özkan,Advanced autonomous model-based operation of industrial process systems (Autoprofit): Technological developments and future perspectives.,2016,42,Annual Reviews in Control,,db/journals/arc/arc42.html#OzkanBLRHMLBH16,https://doi.org/10.1016/j.arcontrol.2016.09.015 +Robert Haber,Optimal choice of horizons for predictive control by using genetic algorithms.,2004,28,Annual Reviews in Control,1,db/journals/arc/arc28.html#HaberSB04,https://doi.org/10.1016/j.arcontrol.2004.01.005 +Kumpati S. Narendra,The changing face of adaptive control: The use of multiple models.,2011,35,Annual Reviews in Control,1,db/journals/arc/arc35.html#NarendraH11,https://doi.org/10.1016/j.arcontrol.2011.03.010 +James J. Downs,An industrial and academic perspective on plantwide control.,2011,35,Annual Reviews in Control,1,db/journals/arc/arc35.html#DownsS11,https://doi.org/10.1016/j.arcontrol.2011.03.006 +S. Joe Qin,Survey on data-driven industrial process monitoring and diagnosis.,2012,36,Annual Reviews in Control,2,db/journals/arc/arc36.html#Qin12,https://doi.org/10.1016/j.arcontrol.2012.09.004 +Agostino Villa,Analysing industrial district performances: A structured approach.,2007,31,Annual Reviews in Control,1,db/journals/arc/arc31.html#Villa07,https://doi.org/10.1016/j.arcontrol.2007.03.002 +Ovidiu Noran,Achieving a sustainable interoperability of standards.,2012,36,Annual Reviews in Control,2,db/journals/arc/arc36.html#Noran12,https://doi.org/10.1016/j.arcontrol.2012.09.014 +Baligh Mnassri,Generalization and analysis of sufficient conditions for PCA-based fault detectability and isolability.,2013,37,Annual Reviews in Control,1,db/journals/arc/arc37.html#MnassriAO13,https://doi.org/10.1016/j.arcontrol.2013.04.005 +Miroslav Krstic,Adaptive control of PDEs.,2008,32,Annual Reviews in Control,2,db/journals/arc/arc32.html#KrsticS08,https://doi.org/10.1016/j.arcontrol.2008.05.001 +Carine Jauberthie,Fault detection and identification relying on set-membership identifiability.,2013,37,Annual Reviews in Control,1,db/journals/arc/arc37.html#JauberthieVT13,https://doi.org/10.1016/j.arcontrol.2013.04.002 +Chonghun Han,Intelligent integrated plant operation system for Six Sigma.,2002,26,Annual Reviews in Control,1,db/journals/arc/arc26.html#HanL02,https://doi.org/10.1016/S1367-5788(02)80008-6 +I. Michael Ross,A review of pseudospectral optimal control: From theory to flight.,2012,36,Annual Reviews in Control,2,db/journals/arc/arc36.html#RossK12,https://doi.org/10.1016/j.arcontrol.2012.09.002 +Reinhard Neck,Control theory and economic policy: Balance and perspectives.,2009,33,Annual Reviews in Control,1,db/journals/arc/arc33.html#Neck09,https://doi.org/10.1016/j.arcontrol.2009.03.004 +Alexandre Dolgui,Supply planning under uncertainties in MRP environments: A state of the art.,2007,31,Annual Reviews in Control,2,db/journals/arc/arc31.html#DolguiP07,https://doi.org/10.1016/j.arcontrol.2007.02.007 +Thomas McAvoy,"Intelligent ""control"" applications in the process industries.",2002,26,Annual Reviews in Control,1,db/journals/arc/arc26.html#McAvoy02,https://doi.org/10.1016/S1367-5788(02)80014-1 +Luis Antonio Aguirre,The historical development of texts for teaching classical control of linear systems.,2015,39,Annual Reviews in Control,,db/journals/arc/arc39.html#Aguirre15,https://doi.org/10.1016/j.arcontrol.2015.03.002 +Francis Clarke,Lyapunov functions and discontinuous stabilizing feedback.,2011,35,Annual Reviews in Control,1,db/journals/arc/arc35.html#Clarke11,https://doi.org/10.1016/j.arcontrol.2011.03.001 +Zhanybai T. Zhusubaliyev,Two-mode dynamics in pulse-modulated control systems.,2010,34,Annual Reviews in Control,1,db/journals/arc/arc34.html#ZhusubaliyevYMB10,https://doi.org/10.1016/j.arcontrol.2010.01.001 +Brahim Rekiek,State of art of optimization methods for assembly line design.,2002,26,Annual Reviews in Control,2,db/journals/arc/arc26.html#RekiekDDB02,https://doi.org/10.1016/S1367-5788(02)00027-5 +David H. Owens 0001,Iterative learning control - An optimization paradigm.,2005,29,Annual Reviews in Control,1,db/journals/arc/arc29.html#OwensH05,https://doi.org/10.1016/j.arcontrol.2005.01.003 +F. M. M. O. Campos,Approaches to human arm movement control - A review.,2009,33,Annual Reviews in Control,1,db/journals/arc/arc33.html#CamposC09,https://doi.org/10.1016/j.arcontrol.2009.03.001 +C. Roberts,Dr. Mieczyslaw (Mietek) Brdyś (1946 to 2015).,2015,40,Annual Reviews in Control,,db/journals/arc/arc40.html#Roberts15,https://doi.org/10.1016/j.arcontrol.2015.09.013 +Enrique Zuazua,Large time control and turnpike properties for wave equations.,2017,44,Annual Reviews in Control,,db/journals/arc/arc44.html#Zuazua17,https://doi.org/10.1016/j.arcontrol.2017.04.002 +Michel Malabre,Some issues of structure and control for linear time-invariant systems.,2006,30,Annual Reviews in Control,2,db/journals/arc/arc30.html#Malabre06,https://doi.org/10.1016/j.arcontrol.2006.04.003 +Fouzi Harrou,Anomaly detection/detectability for a linear model with a bounded nuisance parameter.,2014,38,Annual Reviews in Control,1,db/journals/arc/arc38.html#HarrouFN14,https://doi.org/10.1016/j.arcontrol.2014.03.003 +Iasson Karafyllis,Approximate and sampled-data predictors for control of nonlinear delay systems.,2016,41,Annual Reviews in Control,,db/journals/arc/arc41.html#KarafyllisK16,https://doi.org/10.1016/j.arcontrol.2016.04.014 +Antonio Giovannini,Anti-logicist framework for design-knowledge representation.,2015,39,Annual Reviews in Control,,db/journals/arc/arc39.html#GiovanniniAPHPD15,https://doi.org/10.1016/j.arcontrol.2015.03.013 +Hervé Panetto,Enterprise Integration and Networking: Theory and practice.,2012,36,Annual Reviews in Control,2,db/journals/arc/arc36.html#PanettoJM12,https://doi.org/10.1016/j.arcontrol.2012.09.009 +Mietek A. Brdys,Scanning the special section on technologies of large scale and complex systems.,2008,32,Annual Reviews in Control,1,db/journals/arc/arc32.html#Brdys08,https://doi.org/10.1016/j.arcontrol.2008.03.001 +Andrzej Banaszuk,Scalable approach to uncertainty quantification and robust design of interconnected dynamical systems.,2011,35,Annual Reviews in Control,1,db/journals/arc/arc35.html#BanaszukFFKMMPSSSS11,https://doi.org/10.1016/j.arcontrol.2011.03.005 +David Angeli,Theoretical advances on Economic Model Predictive Control with time-varying costs.,2016,41,Annual Reviews in Control,,db/journals/arc/arc41.html#AngeliCT16,https://doi.org/10.1016/j.arcontrol.2016.04.003 +Yoshihiko Miyasato,Stable adaptive controller design for uncertain phase shift.,2005,29,Annual Reviews in Control,2,db/journals/arc/arc29.html#Miyasato05,https://doi.org/10.1016/j.arcontrol.2005.06.001 +Qi Zhang,Distributed sensor fault diagnosis in a class of interconnected nonlinear uncertain systems.,2013,37,Annual Reviews in Control,1,db/journals/arc/arc37.html#ZhangZ13,https://doi.org/10.1016/j.arcontrol.2013.04.006 +Andreas Willig,How to exploit spatial diversity in wireless industrial networks.,2008,32,Annual Reviews in Control,1,db/journals/arc/arc32.html#Willig08,https://doi.org/10.1016/j.arcontrol.2008.03.005 +Henk G. Stassen,Man-machine aspects of minimally invasive surgery.,2001,25,Annual Reviews in Control,,db/journals/arc/arc25.html#StassenDGM01,https://doi.org/10.1016/S1367-5788(01)00011-6 +Ralph C. Smith,CPDE special section.,2017,44,Annual Reviews in Control,,db/journals/arc/arc44.html#SmithZ17,https://doi.org/10.1016/j.arcontrol.2017.09.007 +Christos G. Cassandras,Automating mobility in smart cities.,2017,44,Annual Reviews in Control,,db/journals/arc/arc44.html#Cassandras17,https://doi.org/10.1016/j.arcontrol.2017.10.001 +Antonio Sala 0001,On the conservativeness of fuzzy and fuzzy-polynomial control of nonlinear systems.,2009,33,Annual Reviews in Control,1,db/journals/arc/arc33.html#Sala09,https://doi.org/10.1016/j.arcontrol.2009.02.001 +Marcosiris A. O. Pessoa,Time windows and constraint programming to deal with strong restriction in the due date of productive systems.,2014,38,Annual Reviews in Control,1,db/journals/arc/arc38.html#PessoaMJFM14,https://doi.org/10.1016/j.arcontrol.2014.03.013 +Xi-Ren Cao,Stochastic learning and optimization - A sensitivity-based approach.,2009,33,Annual Reviews in Control,1,db/journals/arc/arc33.html#Cao09,https://doi.org/10.1016/j.arcontrol.2009.03.003 +Damiano Rotondo,A virtual actuator approach for the fault tolerant control of unstable linear systems subject to actuator saturation and fault isolation delay.,2015,39,Annual Reviews in Control,,db/journals/arc/arc39.html#RotondoPTNP15,https://doi.org/10.1016/j.arcontrol.2015.03.006 +Mark Cannon,Efficient nonlinear model predictive control algorithms.,2004,28,Annual Reviews in Control,2,db/journals/arc/arc28.html#Cannon04,https://doi.org/10.1016/j.arcontrol.2004.05.001 +Daizhan Cheng,Analysis and control of general logical networks - An algebraic approach.,2012,36,Annual Reviews in Control,1,db/journals/arc/arc36.html#ChengQZ12,https://doi.org/10.1016/j.arcontrol.2012.03.002 +Lino Guzzella,Automobiles of the future and the role of automatic control in those systems.,2009,33,Annual Reviews in Control,1,db/journals/arc/arc33.html#Guzzella09,https://doi.org/10.1016/j.arcontrol.2009.01.001 +Janan Zaytoon,Overview of fault diagnosis methods for Discrete Event Systems.,2013,37,Annual Reviews in Control,2,db/journals/arc/arc37.html#ZaytoonL13,https://doi.org/10.1016/j.arcontrol.2013.09.009 +Alessandro Astolfi,Towards applied nonlinear adaptive control.,2008,32,Annual Reviews in Control,2,db/journals/arc/arc32.html#AstolfiKO08,https://doi.org/10.1016/j.arcontrol.2008.08.003 +Denise Engelhart,Comparison of closed-loop system identification techniques to quantify multi-joint human balance control.,2016,41,Annual Reviews in Control,,db/journals/arc/arc41.html#EngelhartBASK16,https://doi.org/10.1016/j.arcontrol.2016.04.010 +Pramod P. Khargonekar,Professor R.E. Kalman-Reflections on his way of thinking.,2018,45,Annual Reviews in Control,,db/journals/arc/arc45.html#Khargonekar18,https://doi.org/10.1016/j.arcontrol.2018.01.002 +Jan M. Maciejowski,A longitudinal flight control law to accommodate sensor loss in the RECONFIGURE benchmark.,2016,42,Annual Reviews in Control,,db/journals/arc/arc42.html#MaciejowskiHS16,https://doi.org/10.1016/j.arcontrol.2016.07.001 +Hermann Kopetz,Time-triggered real-time computing.,2003,27,Annual Reviews in Control,1,db/journals/arc/arc27.html#Kopetz03,https://doi.org/10.1016/S1367-5788(03)00002-6 +Peter Bernus,Enterprise models for enterprise architecture and ISO9000: 2000.,2003,27,Annual Reviews in Control,2,db/journals/arc/arc27.html#Bernus03,https://doi.org/10.1016/j.arcontrol.2003.09.004 +Victor P. Legostaev,Russian space programs: Achievements and prospects of automatic control applications.,2005,29,Annual Reviews in Control,1,db/journals/arc/arc29.html#Legostaev05,https://doi.org/10.1016/j.arcontrol.2004.10.001 +Jan Lunze,8th SAFEPROCESS 2012: Special Section.,2013,37,Annual Reviews in Control,1,db/journals/arc/arc37.html#LunzeRMGRA13,https://doi.org/10.1016/j.arcontrol.2013.03.007 +Daniel Hissel,Diagnostic and health management of fuel cell systems: Issues and solutions.,2016,42,Annual Reviews in Control,,db/journals/arc/arc42.html#HisselP16,https://doi.org/10.1016/j.arcontrol.2016.09.005 +Colin Cowan,Advances in adaptive signal processing: totally adaptive systems.,2001,25,Annual Reviews in Control,,db/journals/arc/arc25.html#CowanWHPS01,https://doi.org/10.1016/S1367-5788(01)00006-2 +V. M. Panchade,A survey on sliding mode control strategies for induction motors.,2013,37,Annual Reviews in Control,2,db/journals/arc/arc37.html#PanchadeCP13,https://doi.org/10.1016/j.arcontrol.2013.09.008 +Kristen A. Severson,Perspectives on process monitoring of industrial systems.,2016,42,Annual Reviews in Control,,db/journals/arc/arc42.html#SeversonCB16,https://doi.org/10.1016/j.arcontrol.2016.09.001 +Seiichiro Katsura,Medical mechatronics - An application to haptic forceps.,2005,29,Annual Reviews in Control,2,db/journals/arc/arc29.html#KatsuraIO05,https://doi.org/10.1016/j.arcontrol.2005.05.003 +Torgny Brogårdh,Present and future robot control development - An industrial perspective.,2007,31,Annual Reviews in Control,1,db/journals/arc/arc31.html#Brogardh07,https://doi.org/10.1016/j.arcontrol.2007.01.002 +Adina Cretan,NEGOSEIO: A framework for negotiations toward Sustainable Enterprise Interoperability.,2012,36,Annual Reviews in Control,2,db/journals/arc/arc36.html#CretanCBJ12,https://doi.org/10.1016/j.arcontrol.2012.09.010 +Denis V. Efimov,Actuator fault detection in aircraft systems: Oscillatory failure case study.,2013,37,Annual Reviews in Control,1,db/journals/arc/arc37.html#EfimovCZH13,https://doi.org/10.1016/j.arcontrol.2013.04.007 +Ulf Jakob F. Aarsnes,Review of two-phase flow models for control and estimation.,2016,42,Annual Reviews in Control,,db/journals/arc/arc42.html#AarsnesFA16,https://doi.org/10.1016/j.arcontrol.2016.06.001 +Christos Gavriel,Regularity of minimizers for higher order variational problems in one independent variable.,2011,35,Annual Reviews in Control,2,db/journals/arc/arc35.html#GavrielLV11,https://doi.org/10.1016/j.arcontrol.2011.10.009 +Benedetto Allotta,Typhoon at CommsNet13: Experimental experience on AUV navigation and localization.,2015,40,Annual Reviews in Control,,db/journals/arc/arc40.html#AllottaBCCCFGGM15,https://doi.org/10.1016/j.arcontrol.2015.09.010 +Piyush P. Singh,Comparative performances of synchronisation between different classes of chaotic systems using three control techniques.,2018,45,Annual Reviews in Control,,db/journals/arc/arc45.html#SinghR18,https://doi.org/10.1016/j.arcontrol.2018.03.003 +Georg Weichhart,Supporting the evolution and interoperability of organisational models with e-learning technologies.,2015,39,Annual Reviews in Control,,db/journals/arc/arc39.html#Weichhart15,https://doi.org/10.1016/j.arcontrol.2015.03.011 +Pedro Albertos,Non-uniform sampled-data control of MIMO systems.,2011,35,Annual Reviews in Control,1,db/journals/arc/arc35.html#AlbertosS11,https://doi.org/10.1016/j.arcontrol.2011.03.004 +Hamideh Afsarmanesh,On management of 2nd generation Virtual Organizations Breeding Environments.,2009,33,Annual Reviews in Control,2,db/journals/arc/arc33.html#AfsarmaneshCM09,https://doi.org/10.1016/j.arcontrol.2009.05.007 +Ovidiu Noran,An analysis of the Zachman framework for enterprise architecture from the GERAM perspective.,2003,27,Annual Reviews in Control,2,db/journals/arc/arc27.html#Noran03,https://doi.org/10.1016/j.arcontrol.2003.09.002 +Thierry-Marie Guerra,Discrete Tagaki-Sugeno models for control: Where are we?,2009,33,Annual Reviews in Control,1,db/journals/arc/arc33.html#GuerraKL09,https://doi.org/10.1016/j.arcontrol.2009.01.004 +Janusz Zalewski,Safety of computer control systems: challenges and results in software development.,2003,27,Annual Reviews in Control,1,db/journals/arc/arc27.html#ZalewskiESGK03,https://doi.org/10.1016/S1367-5788(03)00004-X +Graham C. Goodwin,An introduction to the control of switching electronic systems.,2010,34,Annual Reviews in Control,2,db/journals/arc/arc34.html#GoodwinMCCMQ10,https://doi.org/10.1016/j.arcontrol.2010.08.002 +öncü Hazir,A review of cost and profit oriented line design and balancing problems and solution approaches.,2015,40,Annual Reviews in Control,,db/journals/arc/arc40.html#HazirDD15,https://doi.org/10.1016/j.arcontrol.2015.09.001 +Thomas Moor,A discussion of fault-tolerant supervisory control in terms of formal languages.,2016,41,Annual Reviews in Control,,db/journals/arc/arc41.html#Moor16,https://doi.org/10.1016/j.arcontrol.2016.04.001 +Robert L. Kosut,Uncertainty model unfalsification for robust adaptive control.,2001,25,Annual Reviews in Control,,db/journals/arc/arc25.html#Kosut01,https://doi.org/10.1016/S1367-5788(01)00007-4 +Ricardo Sanz,A CORBA-based architecture for strategic process control.,2003,27,Annual Reviews in Control,1,db/journals/arc/arc27.html#Sanz03,https://doi.org/10.1016/S1367-5788(03)00003-8 +Alexander B. Kurzhanski,Dynamic programming for impulse controls.,2008,32,Annual Reviews in Control,2,db/journals/arc/arc32.html#KurzhanskiD08,https://doi.org/10.1016/j.arcontrol.2008.08.001 +João P. Hespanha,Modeling and analysis of networked control systems using stochastic hybrid systems.,2014,38,Annual Reviews in Control,2,db/journals/arc/arc38.html#Hespanha14,https://doi.org/10.1016/j.arcontrol.2014.09.001 +S. P. Bhattacharyya,Robust control under parametric uncertainty: An overview and recent results.,2017,44,Annual Reviews in Control,,db/journals/arc/arc44.html#Bhattacharyya17,https://doi.org/10.1016/j.arcontrol.2017.05.001 +Bruno Berberian,The out-of-the-loop Brain: A neuroergonomic approach of the human automation interaction.,2017,44,Annual Reviews in Control,,db/journals/arc/arc44.html#BerberianSSG17,https://doi.org/10.1016/j.arcontrol.2017.09.010 +António E. Ruano,Computational intelligence in control.,2014,38,Annual Reviews in Control,2,db/journals/arc/arc38.html#RuanoGGLPC14,https://doi.org/10.1016/j.arcontrol.2014.09.006 +Riaz Uddin,Predictive control approaches for bilateral teleoperation.,2016,42,Annual Reviews in Control,,db/journals/arc/arc42.html#UddinR16,https://doi.org/10.1016/j.arcontrol.2016.09.003 +Shimon Y. Nof,From plant and logistics control to multi-enterprise collaboration.,2006,30,Annual Reviews in Control,1,db/journals/arc/arc30.html#NofMMMF06,https://doi.org/10.1016/j.arcontrol.2006.01.005 +Antonio Giovannini,Ontology-based system for supporting manufacturing sustainability.,2012,36,Annual Reviews in Control,2,db/journals/arc/arc36.html#GiovanniniAPDH12,https://doi.org/10.1016/j.arcontrol.2012.09.012 +Peter Bernus,Enterprise architecture: Twenty years of the GERAM framework.,2015,39,Annual Reviews in Control,,db/journals/arc/arc39.html#BernusNM15,https://doi.org/10.1016/j.arcontrol.2015.03.008 +Miroslav Krstic,Compensation of infinite-dimensional input dynamics.,2010,34,Annual Reviews in Control,2,db/journals/arc/arc34.html#KrsticB10,https://doi.org/10.1016/j.arcontrol.2010.09.002 +B. Ashok,Trends and future perspectives of electronic throttle control system in a spark ignition engine.,2017,44,Annual Reviews in Control,,db/journals/arc/arc44.html#AshokAK17,https://doi.org/10.1016/j.arcontrol.2017.05.002 +Hyesung Seok,Sustainability decision support system based on collaborative control theory.,2012,36,Annual Reviews in Control,1,db/journals/arc/arc36.html#SeokNF12,https://doi.org/10.1016/j.arcontrol.2012.03.007 +Clémentine Cornu,Customizable Interoperability Assessment Methodology to support technical processes deployment in large companies.,2012,36,Annual Reviews in Control,2,db/journals/arc/arc36.html#CornuCQI12,https://doi.org/10.1016/j.arcontrol.2012.09.011 +David Q. Mayne,Robust and stochastic model predictive control: Are we going in the right direction?,2016,41,Annual Reviews in Control,,db/journals/arc/arc41.html#Mayne16,https://doi.org/10.1016/j.arcontrol.2016.04.006 +Domitilla Del Vecchio,A control theoretic framework for modular analysis and design of biomolecular networks.,2013,37,Annual Reviews in Control,2,db/journals/arc/arc37.html#Vecchio13,https://doi.org/10.1016/j.arcontrol.2013.09.011 +ángela Castillo,Fault isolation schemes for a class of continuous-time stochastic dynamical systems.,2013,37,Annual Reviews in Control,1,db/journals/arc/arc37.html#CastilloZ13,https://doi.org/10.1016/j.arcontrol.2013.03.002 +Frédéric Vanderhaegen,Towards increased systems resilience: New challenges based on dissonance control for human reliability in Cyber-Physical and Human Systems.,2017,44,Annual Reviews in Control,,db/journals/arc/arc44.html#Vanderhaegen17,https://doi.org/10.1016/j.arcontrol.2017.09.008 +Wolfgang A. Halang,Contemporary research on real-time scheduling considered obsolete.,2004,28,Annual Reviews in Control,1,db/journals/arc/arc28.html#Halang04,https://doi.org/10.1016/j.arcontrol.2004.01.009 +Grzegorz Bocewicz,Iterative multimodal processes scheduling.,2014,38,Annual Reviews in Control,1,db/journals/arc/arc38.html#BocewiczNB14,https://doi.org/10.1016/j.arcontrol.2014.03.011 +Ian R. Petersen,Negative imaginary systems theory and applications.,2016,42,Annual Reviews in Control,,db/journals/arc/arc42.html#Petersen16,https://doi.org/10.1016/j.arcontrol.2016.09.006 +Kirstin L. R. Talvala,Pushing the limits: From lanekeeping to autonomous racing.,2011,35,Annual Reviews in Control,1,db/journals/arc/arc35.html#TalvalaKG11,https://doi.org/10.1016/j.arcontrol.2011.03.009 +B. Ashok,A review on control system architecture of a SI engine management system.,2016,41,Annual Reviews in Control,,db/journals/arc/arc41.html#AshokAK16,https://doi.org/10.1016/j.arcontrol.2016.04.005 +Tonu Naks,Handling timing in a time-critical reasoning system - a case study.,2001,25,Annual Reviews in Control,,db/journals/arc/arc25.html#NaksM01,https://doi.org/10.1016/S1367-5788(01)00015-3 +Yorai Wardi,Perturbation analysis: A framework for data-driven control and optimization of discrete event and hybrid systems.,2018,45,Annual Reviews in Control,,db/journals/arc/arc45.html#WardiCC18,https://doi.org/10.1016/j.arcontrol.2018.04.003 +Ji Liu 0001,Accelerated linear iterations for distributed averaging.,2011,35,Annual Reviews in Control,2,db/journals/arc/arc35.html#LiuM11,https://doi.org/10.1016/j.arcontrol.2011.10.005 +Yasuji Shibahata,Progress and future direction of Chassis control technology.,2005,29,Annual Reviews in Control,1,db/journals/arc/arc29.html#Shibahata05,https://doi.org/10.1016/j.arcontrol.2004.12.004 +Raheleh Nazari,"Corrigendum to ""Fault-tolerant control of systems with convex polytopic linear parameter varying model uncertainty using virtual-sensor-based controller reconfiguration"" [Annu. Rev. Control 37 (2013) 146-153].",2014,38,Annual Reviews in Control,2,db/journals/arc/arc38.html#NazariSD14,https://doi.org/10.1016/j.arcontrol.2014.09.009 +Andrew Kusiak,Data mining in design of products and production systems.,2007,31,Annual Reviews in Control,1,db/journals/arc/arc31.html#KusiakS07,https://doi.org/10.1016/j.arcontrol.2007.03.003 +Viorel Barbu,Self-organized criticality and convergence to equilibrium of solutions to nonlinear diffusion equations.,2010,34,Annual Reviews in Control,1,db/journals/arc/arc34.html#Barbu10,https://doi.org/10.1016/j.arcontrol.2009.12.002 +Wolfgang A. Halang,Programming languages for use in safety-related applications.,2003,27,Annual Reviews in Control,1,db/journals/arc/arc27.html#HalangZ03,https://doi.org/10.1016/S1367-5788(03)00005-1 +Lubomír Bakule,Decentralized control and communication.,2012,36,Annual Reviews in Control,1,db/journals/arc/arc36.html#BakuleP12,https://doi.org/10.1016/j.arcontrol.2012.03.001 +B. Wayne Bequette,Challenges and recent progress in the development of a closed-loop artificial pancreas.,2012,36,Annual Reviews in Control,2,db/journals/arc/arc36.html#Bequette12,https://doi.org/10.1016/j.arcontrol.2012.09.007 +Anton V. Proskurnikov,A tutorial on modeling and analysis of dynamic social networks. Part I.,2017,43,Annual Reviews in Control,,db/journals/arc/arc43.html#ProskurnikovT17,https://doi.org/10.1016/j.arcontrol.2017.03.002 +Zhixiang Liu,Unmanned surface vehicles: An overview of developments and challenges.,2016,41,Annual Reviews in Control,,db/journals/arc/arc41.html#LiuZYY16,https://doi.org/10.1016/j.arcontrol.2016.04.018 +Anton V. Proskurnikov,A tutorial on modeling and analysis of dynamic social networks. Part II.,2018,45,Annual Reviews in Control,,db/journals/arc/arc45.html#ProskurnikovT18,https://doi.org/10.1016/j.arcontrol.2018.03.005 +Roland E. Best,Tutorial on dynamic analysis of the Costas loop.,2016,42,Annual Reviews in Control,,db/journals/arc/arc42.html#BestKLYY16,https://doi.org/10.1016/j.arcontrol.2016.08.003 +Manuel Silva 0001,On the history of Discrete Event Systems.,2018,45,Annual Reviews in Control,,db/journals/arc/arc45.html#Silva18a,https://doi.org/10.1016/j.arcontrol.2018.03.004 +Florin G. Filip,Decision support and control for large-scale complex systems.,2008,32,Annual Reviews in Control,1,db/journals/arc/arc32.html#Filip08,https://doi.org/10.1016/j.arcontrol.2008.03.002 +Alessandro Giua,Petri nets and Automatic Control: A historical perspective.,2018,45,Annual Reviews in Control,,db/journals/arc/arc45.html#GiuaS18,https://doi.org/10.1016/j.arcontrol.2018.04.006 +Lubomír Bakule,Decentralized control: Status and outlook.,2014,38,Annual Reviews in Control,1,db/journals/arc/arc38.html#Bakule14,https://doi.org/10.1016/j.arcontrol.2014.03.007 +Guy Andre Boy,From automation to tangible interactive objects.,2014,38,Annual Reviews in Control,1,db/journals/arc/arc38.html#Boy14,https://doi.org/10.1016/j.arcontrol.2014.03.001 +Milan Zdravkovic,A case of using the Semantic Interoperability Framework for custom orthopedic implants manufacturing.,2012,36,Annual Reviews in Control,2,db/journals/arc/arc36.html#ZdravkovicTSMV12,https://doi.org/10.1016/j.arcontrol.2012.09.013 +Peter Wellstead,The rôle of control and system theory in systems biology.,2008,32,Annual Reviews in Control,1,db/journals/arc/arc32.html#WellsteadBKMV08,https://doi.org/10.1016/j.arcontrol.2008.02.001 +K. Lochan,A review on two-link flexible manipulators.,2016,42,Annual Reviews in Control,,db/journals/arc/arc42.html#LochanRS16,https://doi.org/10.1016/j.arcontrol.2016.09.019 +Luis M. Camarinha-Matos,A framework for virtual organization creation in a breeding environment.,2007,31,Annual Reviews in Control,1,db/journals/arc/arc31.html#Camarinha-MatosA07,https://doi.org/10.1016/j.arcontrol.2007.03.006 +Jean-Marie Proth,Scheduling: New trends in industrial environment.,2007,31,Annual Reviews in Control,1,db/journals/arc/arc31.html#Proth07,https://doi.org/10.1016/j.arcontrol.2007.03.005 +Thomas Schauer,Sensing motion and muscle activity for feedback control of functional electrical stimulation: Ten years of experience in Berlin.,2017,44,Annual Reviews in Control,,db/journals/arc/arc44.html#Schauer17,https://doi.org/10.1016/j.arcontrol.2017.09.014 +Pedro Albertos,Virtual sensors for control applications.,2002,26,Annual Reviews in Control,1,db/journals/arc/arc26.html#AlbertosG02,https://doi.org/10.1016/S1367-5788(02)80018-9 +Elijah Polak,On the role of optimality functions in numerical optimal control.,2011,35,Annual Reviews in Control,2,db/journals/arc/arc35.html#Polak11,https://doi.org/10.1016/j.arcontrol.2011.10.004 +Asgeir J. Sørensen,Structural issues in the design and operation of marine control systems.,2005,29,Annual Reviews in Control,1,db/journals/arc/arc29.html#Sorensen05,https://doi.org/10.1016/j.arcontrol.2004.12.001 +Youmin Zhang 0001,Bibliographical review on reconfigurable fault-tolerant control systems.,2008,32,Annual Reviews in Control,2,db/journals/arc/arc32.html#ZhangJ08,https://doi.org/10.1016/j.arcontrol.2008.03.008 +Lars Eriksson,Modeling of a turbocharged SI engine.,2002,26,Annual Reviews in Control,1,db/journals/arc/arc26.html#ErikssonNBBPA02,https://doi.org/10.1016/S1367-5788(02)80022-0 +Andreas Schell,Modelling and control strategy development for fuel cell electric vehicles.,2005,29,Annual Reviews in Control,1,db/journals/arc/arc29.html#SchellPTSLK05,https://doi.org/10.1016/j.arcontrol.2005.02.001 +Osamah El Rifai,Trade-offs and performance limitations in mechatronic systems: a case study.,2004,28,Annual Reviews in Control,2,db/journals/arc/arc28.html#RifaiY04,https://doi.org/10.1016/j.arcontrol.2004.02.001 +Hervé Guéguen,Safety verification and reachability analysis for hybrid systems.,2009,33,Annual Reviews in Control,1,db/journals/arc/arc33.html#GueguenLZN09,https://doi.org/10.1016/j.arcontrol.2009.03.002 +Larry Stapleton,Modes of reasoning in theories of the social impact of advanced technology: A critique of ERP systems in healthcare.,2006,30,Annual Reviews in Control,2,db/journals/arc/arc30.html#Stapleton06,https://doi.org/10.1016/j.arcontrol.2006.09.007 +Carlos Canudas de Wit,On the concept of virtual constraints as a tool for walking robot control and balancing.,2004,28,Annual Reviews in Control,2,db/journals/arc/arc28.html#Wit04,https://doi.org/10.1016/j.arcontrol.2004.03.002 +David Chen,A methodology for developing service in virtual manufacturing environment.,2015,39,Annual Reviews in Control,,db/journals/arc/arc39.html#Chen15,https://doi.org/10.1016/j.arcontrol.2015.03.010 +Manuel Silva Suárez,On fluidification of Petri Nets: from discrete to hybrid and continuous models.,2004,28,Annual Reviews in Control,2,db/journals/arc/arc28.html#SilvaR04,https://doi.org/10.1016/j.arcontrol.2004.05.002 +Ulrich Schmid 0001,Applied research: a scientist's perspective.,2001,25,Annual Reviews in Control,,db/journals/arc/arc25.html#Schmid01,https://doi.org/10.1016/S1367-5788(01)00017-7 +Iven Mareels,On making energy demand and network constraints compatible in the last mile of the power grid.,2014,38,Annual Reviews in Control,2,db/journals/arc/arc38.html#MareelsHTBAJMXK14,https://doi.org/10.1016/j.arcontrol.2014.09.007 +Jan Komenda,Max-plus algebra in the history of discrete event systems.,2018,45,Annual Reviews in Control,,db/journals/arc/arc45.html#KomendaLBB18,https://doi.org/10.1016/j.arcontrol.2018.04.004 +Naveena Crasta,Observability analysis of 3D AUV trimming trajectories in the presence of ocean currents using range and depth measurements.,2015,40,Annual Reviews in Control,,db/journals/arc/arc40.html#CrastaBAP15,https://doi.org/10.1016/j.arcontrol.2015.09.009 +Stuart Bennett,The past of pid controllers.,2001,25,Annual Reviews in Control,,db/journals/arc/arc25.html#Bennett01,https://doi.org/10.1016/S1367-5788(01)00005-0 +Gianfranco Parlangeli,Single range observability for cooperative underactuated underwater vehicles.,2015,40,Annual Reviews in Control,,db/journals/arc/arc40.html#ParlangeliI15,https://doi.org/10.1016/j.arcontrol.2015.09.008 +Alexandre Dolgui,Pricing strategies and models.,2010,34,Annual Reviews in Control,1,db/journals/arc/arc34.html#DolguiP10,https://doi.org/10.1016/j.arcontrol.2010.02.005 +Josef Shinar,What happens when certainty equivalence is not valid?: Is there an optimal estimator for terminal guidance?,2003,27,Annual Reviews in Control,2,db/journals/arc/arc27.html#ShinarT03,https://doi.org/10.1016/j.arcontrol.2003.10.001 +Marek Sniezek,A fail safe programmable logic controller.,2003,27,Annual Reviews in Control,1,db/journals/arc/arc27.html#SniezekS03,https://doi.org/10.1016/S1367-5788(03)00008-7 +John J. Bartholdi III,Self-organizing logistics systems.,2010,34,Annual Reviews in Control,1,db/journals/arc/arc34.html#BartholdiEL10,https://doi.org/10.1016/j.arcontrol.2010.02.006 +Vincent Chapurlat,Enterprise model verification and validation: an approach.,2003,27,Annual Reviews in Control,2,db/journals/arc/arc27.html#ChapurlatKP03,https://doi.org/10.1016/j.arcontrol.2003.08.001 +Andrew J. Kornecki,Hardware certification for real-time safety-critical systems: State of the art.,2010,34,Annual Reviews in Control,1,db/journals/arc/arc34.html#KorneckiZ10,https://doi.org/10.1016/j.arcontrol.2009.12.003 +Shilp Dixit,Trajectory planning and tracking for autonomous overtaking: State-of-the-art and future prospects.,2018,45,Annual Reviews in Control,,db/journals/arc/arc45.html#DixitFMDSMM18,https://doi.org/10.1016/j.arcontrol.2018.02.001 +Khaoula Tidriri,Bridging data-driven and model-based approaches for process fault diagnosis and health monitoring: A review of researches and future challenges.,2016,42,Annual Reviews in Control,,db/journals/arc/arc42.html#TidririCVT16,https://doi.org/10.1016/j.arcontrol.2016.09.008 +Marion A. Hersh,Barriers to ethical behaviour and stability: Stereotyping and scapegoating as pretexts for avoiding responsibility.,2013,37,Annual Reviews in Control,2,db/journals/arc/arc37.html#Hersh13,https://doi.org/10.1016/j.arcontrol.2013.09.013 +Janan Zaytoon,Synthesis and implementation of logic controllers - A review.,2017,43,Annual Reviews in Control,,db/journals/arc/arc43.html#ZaytoonR17,https://doi.org/10.1016/j.arcontrol.2017.03.004 +Guillem Vallicrosa,Sum of gaussian single beacon range-only localization for AUV homing.,2016,42,Annual Reviews in Control,,db/journals/arc/arc42.html#VallicrosaR16,https://doi.org/10.1016/j.arcontrol.2016.09.007 +Robert W. Grubbström,Optimal lotsizing within MRP Theory.,2010,34,Annual Reviews in Control,1,db/journals/arc/arc34.html#GrubbstromBB10,https://doi.org/10.1016/j.arcontrol.2010.02.004 +GianAntonio Magnani,Introduction to the special section on mechatronics.,2004,28,Annual Reviews in Control,2,db/journals/arc/arc28.html#MagnaniR04,https://doi.org/10.1016/j.arcontrol.2004.07.001 +Athanasios C. Antoulas,An overview of approximation methods for large-scale dynamical systems.,2005,29,Annual Reviews in Control,2,db/journals/arc/arc29.html#Antoulas05,https://doi.org/10.1016/j.arcontrol.2005.08.002 +Yale Zhang,Integrated monitoring solution to start-up and run-time operations for continuous casting.,2003,27,Annual Reviews in Control,2,db/journals/arc/arc27.html#ZhangDV03,https://doi.org/10.1016/j.arcontrol.2003.10.002 +Philip Thwaites,Process Control in metallurgical plants - From an Xstrata perspective.,2007,31,Annual Reviews in Control,2,db/journals/arc/arc31.html#Thwaites07,https://doi.org/10.1016/j.arcontrol.2007.08.005 +Matthias Riedl,Cyber-physical systems alter automation architectures.,2014,38,Annual Reviews in Control,1,db/journals/arc/arc38.html#RiedlZMD14,https://doi.org/10.1016/j.arcontrol.2014.03.012 +Eduardo F. Camacho,Model predictive control techniques for hybrid systems.,2010,34,Annual Reviews in Control,1,db/journals/arc/arc34.html#CamachoRLPA10,https://doi.org/10.1016/j.arcontrol.2010.02.002 +Mohammed Mansour,Systems theory and human science.,2002,26,Annual Reviews in Control,1,db/journals/arc/arc26.html#Mansour02,https://doi.org/10.1016/S1367-5788(02)80004-9 +Natalia Bakhtadze,Special section: Planning and control of manufacturing and logistic systems.,2010,34,Annual Reviews in Control,1,db/journals/arc/arc34.html#BakhtadzeD10,https://doi.org/10.1016/j.arcontrol.2010.03.002 +Thomas Jones,Large transport aircraft: Solving control challenges of the future.,2014,38,Annual Reviews in Control,2,db/journals/arc/arc38.html#Jones14,https://doi.org/10.1016/j.arcontrol.2014.09.005 +T. Inagaki,Smart collaboration between humans and machines based on mutual understanding.,2008,32,Annual Reviews in Control,2,db/journals/arc/arc32.html#Inagaki08,https://doi.org/10.1016/j.arcontrol.2008.07.003 +Rodolphe Sepulchre,Consensus on nonlinear spaces.,2011,35,Annual Reviews in Control,1,db/journals/arc/arc35.html#Sepulchre11,https://doi.org/10.1016/j.arcontrol.2011.03.003 +Anton S. Shiriaev,Can we make a robot ballerina perform a pirouette? Orbital stabilization of periodic motions of underactuated mechanical systems.,2008,32,Annual Reviews in Control,2,db/journals/arc/arc32.html#ShiriaevFM08,https://doi.org/10.1016/j.arcontrol.2008.07.001 +Arturo Molina,Editorial.,2009,33,Annual Reviews in Control,2,db/journals/arc/arc33.html#MolinaMR09,https://doi.org/10.1016/j.arcontrol.2009.05.009 +N. Ha Hoang,Passivity-based nonlinear control of CSTR via asymptotic observers.,2013,37,Annual Reviews in Control,2,db/journals/arc/arc37.html#HoangCGCY13,https://doi.org/10.1016/j.arcontrol.2013.09.007 +Antonio Peñalver Benavent,Visually-guided manipulation techniques for robotic autonomous underwater panel interventions.,2015,40,Annual Reviews in Control,,db/journals/arc/arc40.html#BenaventPFSSGFM15,https://doi.org/10.1016/j.arcontrol.2015.09.012 +Diego S. Carrasco,Feedforward model predictive control.,2011,35,Annual Reviews in Control,2,db/journals/arc/arc35.html#CarrascoG11,https://doi.org/10.1016/j.arcontrol.2011.10.007 +István Mezgár,Role of trust in networked production systems.,2003,27,Annual Reviews in Control,2,db/journals/arc/arc27.html#Mezgar03,https://doi.org/10.1016/j.arcontrol.2003.09.007 +Anuradha M. Annaswamy,Emerging research topics in control for smart infrastructures.,2016,42,Annual Reviews in Control,,db/journals/arc/arc42.html#AnnaswamyMB16,https://doi.org/10.1016/j.arcontrol.2016.10.001 +Xiaohua Xia,Industrial energy systems in view of energy efficiency and operation control.,2016,42,Annual Reviews in Control,,db/journals/arc/arc42.html#XiaZ16,https://doi.org/10.1016/j.arcontrol.2016.09.009 +Marcos de Sales Guerra Tsuzuki,Introduction to the special section on Intelligent Manufacturing Systems.,2014,38,Annual Reviews in Control,1,db/journals/arc/arc38.html#Tsuzuki14,https://doi.org/10.1016/j.arcontrol.2014.03.010 +Tianyou Chai,Optimal operational control for complex industrial processes.,2014,38,Annual Reviews in Control,1,db/journals/arc/arc38.html#ChaiQW14,https://doi.org/10.1016/j.arcontrol.2014.03.005 +Said Elias,Research developments in vibration control of structures using passive tuned mass dampers.,2017,44,Annual Reviews in Control,,db/journals/arc/arc44.html#EliasM17,https://doi.org/10.1016/j.arcontrol.2017.09.015 +C. Houben,Endowing advanced driver assistance systems with fault tolerance.,2015,39,Annual Reviews in Control,,db/journals/arc/arc39.html#HoubenH15,https://doi.org/10.1016/j.arcontrol.2015.03.005 +Y. Yang,Spacecraft attitude determination and control: Quaternion based method.,2012,36,Annual Reviews in Control,2,db/journals/arc/arc36.html#Yang12,https://doi.org/10.1016/j.arcontrol.2012.09.003 +Ernesto López-Mellado,Special section on dependable control of discrete systems.,2016,41,Annual Reviews in Control,,db/journals/arc/arc41.html#Lopez-Mellado16,https://doi.org/10.1016/j.arcontrol.2016.04.011 +Moritz Diehl,Efficient NMPC of unstable periodic systems using approximate infinite horizon closed loop costing.,2004,28,Annual Reviews in Control,1,db/journals/arc/arc28.html#DiehlMN04,https://doi.org/10.1016/j.arcontrol.2004.01.011 +Lubomír Bakule,Decentralized control: An overview.,2008,32,Annual Reviews in Control,1,db/journals/arc/arc32.html#Bakule08,https://doi.org/10.1016/j.arcontrol.2008.03.004 +Raheleh Nazari,Fault-tolerant control of systems with convex polytopic linear parameter varying model uncertainty using virtual-sensor-based controller reconfiguration.,2013,37,Annual Reviews in Control,1,db/journals/arc/arc37.html#NazariSD13,https://doi.org/10.1016/j.arcontrol.2013.04.004 +Wayne J. Book,Reach out and touch someone: controlling haptic manipulators near and far.,2004,28,Annual Reviews in Control,1,db/journals/arc/arc28.html#BookS04,https://doi.org/10.1016/j.arcontrol.2004.01.010 +Asif A. Mulla,Overview on the development and applications of antenna control systems.,2016,41,Annual Reviews in Control,,db/journals/arc/arc41.html#MullaV16,https://doi.org/10.1016/j.arcontrol.2016.04.012 +James R. Riehl,A survey on the analysis and control of evolutionary matrix games.,2018,45,Annual Reviews in Control,,db/journals/arc/arc45.html#RiehlRC18,https://doi.org/10.1016/j.arcontrol.2018.04.010 +Marek Wegrzyn,Implementation of safety critical logic controller by means of FPGA.,2003,27,Annual Reviews in Control,1,db/journals/arc/arc27.html#Wegrzyn03,https://doi.org/10.1016/S1367-5788(03)00007-5 +Liuping Wang,Tutorial review on repetitive control with anti-windup mechanisms.,2016,42,Annual Reviews in Control,,db/journals/arc/arc42.html#Wang16,https://doi.org/10.1016/j.arcontrol.2016.09.016 +Johannes Jäschke,Self-optimizing control - A survey.,2017,43,Annual Reviews in Control,,db/journals/arc/arc43.html#JaschkeCK17,https://doi.org/10.1016/j.arcontrol.2017.03.001 +Mohammed-Tahar Laraba,Guide on set invariance for delay difference equations.,2016,41,Annual Reviews in Control,,db/journals/arc/arc41.html#LarabaONBGCM16,https://doi.org/10.1016/j.arcontrol.2016.04.020 +Shuting Xu,Review of control models for human pilot behavior.,2017,44,Annual Reviews in Control,,db/journals/arc/arc44.html#XuTESQ17,https://doi.org/10.1016/j.arcontrol.2017.09.009 +Toshio Fukuda,Mechanism and control of mechatronic system with higher degrees of freedom.,2004,28,Annual Reviews in Control,2,db/journals/arc/arc28.html#FukudaH04,https://doi.org/10.1016/j.arcontrol.2004.02.003 +Benoît Iung,Conceptual framework for e-Maintenance: Illustration by e-Maintenance technologies and platforms.,2009,33,Annual Reviews in Control,2,db/journals/arc/arc33.html#IungLME09,https://doi.org/10.1016/j.arcontrol.2009.05.005 +Zhendong Sun,Stability of piecewise linear systems revisited.,2010,34,Annual Reviews in Control,2,db/journals/arc/arc34.html#Sun10,https://doi.org/10.1016/j.arcontrol.2010.08.003 +Ricardo Sanz,Corba for control systems.,2001,25,Annual Reviews in Control,,db/journals/arc/arc25.html#SanzA01,https://doi.org/10.1016/S1367-5788(01)00016-5 +Tayfun çimen,Systematic and effective design of nonlinear feedback controllers via the state-dependent Riccati equation (SDRE) method.,2010,34,Annual Reviews in Control,1,db/journals/arc/arc34.html#Cimen10,https://doi.org/10.1016/j.arcontrol.2010.03.001 +V. F. Krotov,National achievements in control theory: The aerospace perspective.,2005,29,Annual Reviews in Control,1,db/journals/arc/arc29.html#KrotovK05,https://doi.org/10.1016/j.arcontrol.2005.01.002 +Doaa Soliman,Transformation of Function Block Diagrams to UPPAAL timed automata for the verification of safety applications.,2012,36,Annual Reviews in Control,2,db/journals/arc/arc36.html#SolimanTF12,https://doi.org/10.1016/j.arcontrol.2012.09.015 +H. T. Banks,Time delay systems with distribution dependent dynamics.,2007,31,Annual Reviews in Control,1,db/journals/arc/arc31.html#BanksDN07,https://doi.org/10.1016/j.arcontrol.2007.02.002 +Luciano Pandolfi,On-line input identification and application to Active Noise Cancellation.,2010,34,Annual Reviews in Control,2,db/journals/arc/arc34.html#Pandolfi10,https://doi.org/10.1016/j.arcontrol.2010.07.001 +Roger Goodall,Perspectives on processing for real-time control.,2001,25,Annual Reviews in Control,,db/journals/arc/arc25.html#Goodall01,https://doi.org/10.1016/S1367-5788(01)00012-8 +Hannah Michalska,Generic nonlinear stabilization of systems with matching algebraic structure.,2011,35,Annual Reviews in Control,2,db/journals/arc/arc35.html#Michalska11,https://doi.org/10.1016/j.arcontrol.2011.10.010 +George J. Vachtsevanos,From mission planning to flight control of unmanned aerial vehicles: Strategies and implementation tools.,2005,29,Annual Reviews in Control,1,db/journals/arc/arc29.html#VachtsevanosTDG05,https://doi.org/10.1016/j.arcontrol.2004.11.002 +Oded Maler,Control from computer science.,2002,26,Annual Reviews in Control,2,db/journals/arc/arc26.html#Maler02,https://doi.org/10.1016/S1367-5788(02)00030-5 +Patrizio Colaneri,Theoretical aspects of continuous-time periodic systems.,2005,29,Annual Reviews in Control,2,db/journals/arc/arc29.html#Colaneri05,https://doi.org/10.1016/j.arcontrol.2005.04.001 +Murad Abu-Khalaf,Nearly optimal state feedback control of constrained nonlinear systems using a neural networks HJB approach.,2004,28,Annual Reviews in Control,2,db/journals/arc/arc28.html#Abu-KhalafL04,https://doi.org/10.1016/j.arcontrol.2004.07.002 +Terry O'Brien,LiDCO - From the laboratory to protocolized goal directed therapy.,2007,31,Annual Reviews in Control,2,db/journals/arc/arc31.html#OBrien07,https://doi.org/10.1016/j.arcontrol.2007.09.003 +Rosa M. Fernández-Cantí,Fault detection and isolation for a wind turbine benchmark using a mixed Bayesian/Set-membership approach.,2015,40,Annual Reviews in Control,,db/journals/arc/arc40.html#Fernandez-Canti15,https://doi.org/10.1016/j.arcontrol.2015.08.002 +Michèle Basseville,Fault isolation for diagnosis: Nuisance rejection and multiple hypotheses testing.,2002,26,Annual Reviews in Control,2,db/journals/arc/arc26.html#BassevilleN02,https://doi.org/10.1016/S1367-5788(02)00029-9 +Matthew Ellis,Elucidation of the role of constraints in economic model predictive control.,2016,41,Annual Reviews in Control,,db/journals/arc/arc41.html#EllisDC16,https://doi.org/10.1016/j.arcontrol.2016.04.004 +Martin Ludvigsen,Towards integrated autonomous underwater operations for ocean mapping and monitoring.,2016,42,Annual Reviews in Control,,db/journals/arc/arc42.html#LudvigsenS16,https://doi.org/10.1016/j.arcontrol.2016.09.013 +Enrico Simetti,Whole body control of a dual arm underwater vehicle manipulator system.,2015,40,Annual Reviews in Control,,db/journals/arc/arc40.html#SimettiC15,https://doi.org/10.1016/j.arcontrol.2015.09.011 +Philippe de Larminat,Earth climate identification vs. anthropic global warming attribution.,2016,42,Annual Reviews in Control,,db/journals/arc/arc42.html#Larminat16,https://doi.org/10.1016/j.arcontrol.2016.09.018 +Jonathan P. Caulkins,Long term implications of drug policy shifts: Anticipating and non-anticipating consumers.,2013,37,Annual Reviews in Control,1,db/journals/arc/arc37.html#CaulkinsFHKNS13,https://doi.org/10.1016/j.arcontrol.2013.03.005 +Masayoshi Tomizuka,Dealing with periodic disturbances in controls of mechanical systems.,2008,32,Annual Reviews in Control,2,db/journals/arc/arc32.html#Tomizuka08,https://doi.org/10.1016/j.arcontrol.2008.07.002 +Sachidananda Sen,Microgrid control: A comprehensive survey.,2018,45,Annual Reviews in Control,,db/journals/arc/arc45.html#SenK18,https://doi.org/10.1016/j.arcontrol.2018.04.012 +Fredrik Gustafsson,Statistical signal processing approaches to fault detection.,2007,31,Annual Reviews in Control,1,db/journals/arc/arc31.html#Gustafsson07,https://doi.org/10.1016/j.arcontrol.2007.02.004 +Luis A. Ricardez-Sandoval,Integration of design and control for chemical processes: A review of the literature and some recent results.,2009,33,Annual Reviews in Control,2,db/journals/arc/arc33.html#Ricardez-SandovalBD09,https://doi.org/10.1016/j.arcontrol.2009.06.001 +Adrian S. Lewis,Nonsmooth optimization and robust control.,2007,31,Annual Reviews in Control,2,db/journals/arc/arc31.html#Lewis07,https://doi.org/10.1016/j.arcontrol.2007.09.002 +Antonio J. Vallejo,Cost-effective supervisory control system in peripheral milling using HSM.,2010,34,Annual Reviews in Control,1,db/journals/arc/arc34.html#VallejoM10,https://doi.org/10.1016/j.arcontrol.2009.05.008 +Kurt Kosanke,Means to enable enterprise interoperation: CIMOSA Object Capability Profiles and CIMOSA Collaboration View.,2015,39,Annual Reviews in Control,,db/journals/arc/arc39.html#KosankeVZ15,https://doi.org/10.1016/j.arcontrol.2015.03.009 +Xiang Yu,A survey of fault-tolerant controllers based on safety-related issues.,2015,39,Annual Reviews in Control,,db/journals/arc/arc39.html#YuJ15,https://doi.org/10.1016/j.arcontrol.2015.03.004 +Kerstin Dencker,Proactive assembly systems-realising the potential of human collaboration with automation.,2009,33,Annual Reviews in Control,2,db/journals/arc/arc33.html#DenckerFSMLA09,https://doi.org/10.1016/j.arcontrol.2009.05.004 +Frederico Menine Schaf,Collaborative learning and engineering workspaces.,2009,33,Annual Reviews in Control,2,db/journals/arc/arc33.html#SchafMBPE09,https://doi.org/10.1016/j.arcontrol.2009.05.002 +Piotr Tatjewski,Advanced control and on-line process optimization in multilayer structures.,2008,32,Annual Reviews in Control,1,db/journals/arc/arc32.html#Tatjewski08,https://doi.org/10.1016/j.arcontrol.2008.03.003 +Ali Zolghadri,Practical design considerations for successful industrial application of model-based fault detection techniques to aircraft systems.,2016,42,Annual Reviews in Control,,db/journals/arc/arc42.html#ZolghadriCEGD16,https://doi.org/10.1016/j.arcontrol.2016.07.003 +Toru Seo,Traffic state estimation on highway: A comprehensive survey.,2017,43,Annual Reviews in Control,,db/journals/arc/arc43.html#SeoBKA17,https://doi.org/10.1016/j.arcontrol.2017.03.005 +Rolf Isermann,Model-based fault-detection and diagnosis - status and applications.,2005,29,Annual Reviews in Control,1,db/journals/arc/arc29.html#Isermann05,https://doi.org/10.1016/j.arcontrol.2004.12.002 +Dan Zhang,A review on model reference adaptive control of robotic manipulators.,2017,43,Annual Reviews in Control,,db/journals/arc/arc43.html#ZhangW17,https://doi.org/10.1016/j.arcontrol.2017.02.002 +Fernando Camelli,Generating seamless surfaces for transport and dispersion modeling in GIS.,2012,16,GeoInformatica,2,db/journals/geoinformatica/geoinformatica16.html#CamelliLSWRLY12,https://doi.org/10.1007/s10707-011-0138-3 +Elias Frentzos,Algorithms for Nearest Neighbor Search on Moving Object Trajectories.,2007,11,GeoInformatica,2,db/journals/geoinformatica/geoinformatica11.html#FrentzosGPT07,https://doi.org/10.1007/s10707-006-0007-7 +Mehdi Sharifzadeh,Utilizing Voronoi Cells of Location Data Streams for Accurate Computation of Aggregate Functions in Sensor Networks.,2006,10,GeoInformatica,1,db/journals/geoinformatica/geoinformatica10.html#SharifzadehS06,https://doi.org/10.1007/s10707-005-4884-y +Peter Phillips,Crime analysis through spatial areal aggregated density patterns.,2011,15,GeoInformatica,1,db/journals/geoinformatica/geoinformatica15.html#PhillipsL11,https://doi.org/10.1007/s10707-010-0116-1 +Alexis J. Comber,Geographically weighted evidence combination approaches for combining discordant and inconsistent volunteered geographical information.,2016,20,GeoInformatica,3,db/journals/geoinformatica/geoinformatica20.html#ComberFFFHRS16,https://doi.org/10.1007/s10707-016-0248-z +Tomas Bayer,Advanced methods for the estimation of an unknown projection from a map.,2016,20,GeoInformatica,2,db/journals/geoinformatica/geoinformatica20.html#Bayer16,https://doi.org/10.1007/s10707-015-0234-x +Leonardo E. Mariote,TIDES - a new descriptor for time series oscillation behavior.,2011,15,GeoInformatica,1,db/journals/geoinformatica/geoinformatica15.html#MarioteMTB11,https://doi.org/10.1007/s10707-010-0112-5 +Luca Leonardi,A general framework for trajectory data warehousing and visual OLAP.,2014,18,GeoInformatica,2,db/journals/geoinformatica/geoinformatica18.html#LeonardiORRSAA14,https://doi.org/10.1007/s10707-013-0181-3 +Mario A. Nascimento,Special issue on spatial and temporal database management.,2015,19,GeoInformatica,2,db/journals/geoinformatica/geoinformatica19.html#NascimentoSC15,https://doi.org/10.1007/s10707-015-0224-z +Alberto Belussi,Topological operators: a relaxed query processing approach.,2012,16,GeoInformatica,1,db/journals/geoinformatica/geoinformatica16.html#BelussiCP12,https://doi.org/10.1007/s10707-011-0124-9 +Liang Tang,Exploiting location-aware social networks for efficient spatial query processing.,2017,21,GeoInformatica,1,db/journals/geoinformatica/geoinformatica21.html#TangCKS17,https://doi.org/10.1007/s10707-016-0271-0 +Peng Yue,Integrating semantic web technologies and geospatial catalog services for geospatial information discovery and processing in cyberinfrastructure.,2011,15,GeoInformatica,2,db/journals/geoinformatica/geoinformatica15.html#YueGDHW11,https://doi.org/10.1007/s10707-009-0096-1 +Patrick Erik Bradley,Comparing G-maps with other topological data structures.,2014,18,GeoInformatica,3,db/journals/geoinformatica/geoinformatica18.html#BradleyP14,https://doi.org/10.1007/s10707-013-0191-1 +Ruowei Xiao,A semantic HTML based approach for geosensor media.,2018,22,GeoInformatica,1,db/journals/geoinformatica/geoinformatica22.html#XiaoWS18,https://doi.org/10.1007/s10707-016-0273-y +Shuo Shang,Planning unobstructed paths in traffic-aware spatial networks.,2015,19,GeoInformatica,4,db/journals/geoinformatica/geoinformatica19.html#ShangLZLPW15,https://doi.org/10.1007/s10707-015-0227-9 +Valérie Noyon,A Relative Representation of Trajectories in Geogaphical Spaces.,2007,11,GeoInformatica,4,db/journals/geoinformatica/geoinformatica11.html#NoyonCD07,https://doi.org/10.1007/s10707-007-0023-2 +Harish Chandra Karnatak,Multicriteria Spatial Decision Analysis in Web GIS Environment.,2007,11,GeoInformatica,4,db/journals/geoinformatica/geoinformatica11.html#KarnatakSBR07,https://doi.org/10.1007/s10707-006-0014-8 +Mohamed Sarwat,Generic and efficient framework for search trees on flash memory storage systems.,2013,17,GeoInformatica,3,db/journals/geoinformatica/geoinformatica17.html#SarwatMZN13,https://doi.org/10.1007/s10707-012-0164-9 +Julien Lafaye,Blind and squaring-resistant watermarking of vectorial building layers.,2012,16,GeoInformatica,2,db/journals/geoinformatica/geoinformatica16.html#LafayeBGR12,https://doi.org/10.1007/s10707-011-0133-8 +Wei Xu,Spatio-temporal prediction of crop disease severity for agricultural emergency management based on recurrent neural networks.,2018,22,GeoInformatica,2,db/journals/geoinformatica/geoinformatica22.html#XuWC18,https://doi.org/10.1007/s10707-017-0314-1 +Ming Li 0032,Assessing spatiotemporal predictability of LBSN: a case study of three Foursquare datasets.,2018,22,GeoInformatica,3,db/journals/geoinformatica/geoinformatica22.html#LiWFZ18,https://doi.org/10.1007/s10707-016-0279-5 +Pengfei Zhang 0004,Aggregate keyword nearest neighbor queries on road networks.,2018,22,GeoInformatica,2,db/journals/geoinformatica/geoinformatica22.html#ZhangLGL18,https://doi.org/10.1007/s10707-017-0315-0 +Tao Pei,Multi-scale decomposition of point process data.,2012,16,GeoInformatica,4,db/journals/geoinformatica/geoinformatica16.html#PeiGMZ12,https://doi.org/10.1007/s10707-012-0165-8 +Zhi Cai,Multi-vehicles dynamic navigating method for large-scale event crowd evacuations.,2018,22,GeoInformatica,2,db/journals/geoinformatica/geoinformatica22.html#CaiRCJDD18,https://doi.org/10.1007/s10707-018-0320-y +Ivan Marchesini,A preliminary method for the evaluation of the landslides volume at a regional scale.,2009,13,GeoInformatica,3,db/journals/geoinformatica/geoinformatica13.html#MarchesiniCR09,https://doi.org/10.1007/s10707-008-0060-5 +Craig R. Dillabaugh,Semi-Automated Extraction of Rivers from Digital Imagery.,2002,6,GeoInformatica,3,db/journals/geoinformatica/geoinformatica6.html#DillabaughNR02,https://doi.org/10.1023/A:1019718019825 +Fangju Wang,A Distributed Geographic Information System on the Common Object Request Broker Architecture (CORBA).,2000,4,GeoInformatica,1,db/journals/geoinformatica/geoinformatica4.html#Wang00,https://doi.org/10.1023/A:1009832526289 +Hardy Pundt,Field Data Collection with Mobile GIS: Dependencies Between Semantics and Data Quality.,2002,6,GeoInformatica,4,db/journals/geoinformatica/geoinformatica6.html#Pundt02,https://doi.org/10.1023/A:1020805511054 +Hai Thanh Mai,STHist-C: a highly accurate cluster-based histogram for two and three dimensional geographic data points.,2013,17,GeoInformatica,2,db/journals/geoinformatica/geoinformatica17.html#MaiKRK13,https://doi.org/10.1007/s10707-012-0154-y +Dieter Pfoser,Guest editorial: spatial and temporal databases.,2013,17,GeoInformatica,3,db/journals/geoinformatica/geoinformatica17.html#PfoserT13,https://doi.org/10.1007/s10707-013-0182-2 +Vladimir Estivill-Castro,Multi-Level Clustering and its Visualization for Exploratory Spatial Analysis.,2002,6,GeoInformatica,2,db/journals/geoinformatica/geoinformatica6.html#Estivill-CastroL02,https://doi.org/10.1023/A:1015279009755 +Claudia Bauzer Medeiros,Editorial.,2001,5,GeoInformatica,3,db/journals/geoinformatica/geoinformatica5.html#Medeiros01,https://doi.org/10.1023/A:1011421813255 +Shijun Yu,A knowledge infrastructure for intelligent query answering in location-based services.,2010,14,GeoInformatica,3,db/journals/geoinformatica/geoinformatica14.html#YuS10,https://doi.org/10.1007/s10707-010-0105-4 +Zhilin Li,Adaptive generation of variable-scale network maps for small displays based on line density distribution.,2015,19,GeoInformatica,2,db/journals/geoinformatica/geoinformatica19.html#LiT15,https://doi.org/10.1007/s10707-014-0212-8 +Jan Terje Bjørke,Computation of Random Errors in Digital Terrain Models.,2007,11,GeoInformatica,3,db/journals/geoinformatica/geoinformatica11.html#BjorkeN07,https://doi.org/10.1007/s10707-006-0012-x +Chuan Ai,The national geographic characteristics of online public opinion propagation in China based on WeChat network.,2018,22,GeoInformatica,2,db/journals/geoinformatica/geoinformatica22.html#AiCHLQ18,https://doi.org/10.1007/s10707-017-0311-4 +Raimundo F. Dos Santos,A framework for intelligence analysis using spatio-temporal storytelling.,2016,20,GeoInformatica,2,db/journals/geoinformatica/geoinformatica20.html#SantosSBCLBR16,https://doi.org/10.1007/s10707-015-0236-8 +Eric Guilbert,Multi-level representation of terrain features on a contour map.,2013,17,GeoInformatica,2,db/journals/geoinformatica/geoinformatica17.html#Guilbert13,https://doi.org/10.1007/s10707-012-0153-z +Wenjian Xu,MobiFeed: A location-aware news feed framework for moving users.,2015,19,GeoInformatica,3,db/journals/geoinformatica/geoinformatica19.html#XuCYLP15,https://doi.org/10.1007/s10707-014-0223-5 +Andrew J. Morris,A Filter Flow Visual Querying Language and Interface for Spatial Databases.,2004,8,GeoInformatica,2,db/journals/geoinformatica/geoinformatica8.html#MorrisAEJ04,https://doi.org/10.1023/B:GEIN.0000017744.85002.4c +Peter Kiefer,Controllability matters: The user experience of adaptive maps.,2017,21,GeoInformatica,3,db/journals/geoinformatica/geoinformatica21.html#KieferGASR17,https://doi.org/10.1007/s10707-016-0282-x +Michael F. Worboys,Imprecision in Finite Resolution Spatial Data.,1998,2,GeoInformatica,3,db/journals/geoinformatica/geoinformatica2.html#Worboys98,https://doi.org/10.1023/A:1009769705164 +James J. Little,Ordering Points for Incremental TIN Construction from DEMs.,2003,7,GeoInformatica,1,db/journals/geoinformatica/geoinformatica7.html#LittleS03,https://doi.org/10.1023/A:1022870110853 +Guoray Cai,Contextualization of Geospatial Database Semantics for Human-GIS Interaction.,2007,11,GeoInformatica,2,db/journals/geoinformatica/geoinformatica11.html#Cai07,https://doi.org/10.1007/s10707-006-0001-0 +Lihong Su,The index array approach and the dual tiled similarity algorithm for UAS hyper-spatial image processing.,2016,20,GeoInformatica,4,db/journals/geoinformatica/geoinformatica20.html#SuHGL16,https://doi.org/10.1007/s10707-016-0253-2 +Alberto Belussi,A framework for integrating multi-accuracy spatial data in geographical applications.,2012,16,GeoInformatica,3,db/journals/geoinformatica/geoinformatica16.html#BelussiM12,https://doi.org/10.1007/s10707-011-0140-9 +Kevin B. Sprague,Interpretive Tools for 3-D Structural Geological Modelling Part II: Surface Design from Sparse Spatial Data.,2005,9,GeoInformatica,1,db/journals/geoinformatica/geoinformatica9.html#SpragueK05,https://doi.org/10.1007/s10707-004-5620-8 +Christos Yiakoumettis,Active learning of user's preferences estimation towards a personalized 3D navigation of geo-referenced scenes.,2014,18,GeoInformatica,1,db/journals/geoinformatica/geoinformatica18.html#YiakoumettisDMG14,https://doi.org/10.1007/s10707-013-0176-0 +Paul Weiser,Towards sustainable mobility behavior: research challenges for location-aware information and communication technology.,2016,20,GeoInformatica,2,db/journals/geoinformatica/geoinformatica20.html#WeiserSBKR16,https://doi.org/10.1007/s10707-015-0242-x +Jildou Louwsma,Specifying and Implementing Constraints in GIS - with Examples from a Geo-Virtual Reality System.,2006,10,GeoInformatica,4,db/journals/geoinformatica/geoinformatica10.html#LouwsmaZLO06,https://doi.org/10.1007/s10707-006-0345-5 +Marios Hadjieleftheriou,SaIL: A Spatial Index Library for Efficient Application Integration.,2005,9,GeoInformatica,4,db/journals/geoinformatica/geoinformatica9.html#HadjieleftheriouHT05,https://doi.org/10.1007/s10707-005-4577-6 +,Guest Editor's Introduction.,2005,9,GeoInformatica,4,db/journals/geoinformatica/geoinformatica9.html#X05,https://doi.org/10.1007/s10707-005-4573-x +Christophe Claramunt,Special issue on spatial and temporal database management.,2017,21,GeoInformatica,4,db/journals/geoinformatica/geoinformatica21.html#ClaramuntSW17,https://doi.org/10.1007/s10707-017-0307-0 +,Errata.,2006,10,GeoInformatica,1,db/journals/geoinformatica/geoinformatica10.html#X06,https://doi.org/10.1007/s10707-005-7555-0 +George L. Benwell,Editorial.,1999,3,GeoInformatica,2,db/journals/geoinformatica/geoinformatica3.html#Benwell99,https://doi.org/10.1023/A:1009898409335 +Wendy A. Schafer,Supporting Distributed Spatial Collaboration: An Investigation of Navigation and Radar View Techniques.,2006,10,GeoInformatica,2,db/journals/geoinformatica/geoinformatica10.html#SchaferB06,https://doi.org/10.1007/s10707-006-7576-3 +Walid G. Aref,Efficient Window Block Retrieval in Quadtree-Based Spatial Databases.,1997,1,GeoInformatica,1,db/journals/geoinformatica/geoinformatica1.html#ArefS97,https://doi.org/10.1023/A:1009760201355 +Wan D. Bae,IRSJ: incremental refining spatial joins for interactive queries in GIS.,2010,14,GeoInformatica,4,db/journals/geoinformatica/geoinformatica14.html#BaeAL10,https://doi.org/10.1007/s10707-009-0089-0 +Xin Chen 0022,A framework for annotating OpenStreetMap objects using geo-tagged tweets.,2018,22,GeoInformatica,3,db/journals/geoinformatica/geoinformatica22.html#ChenVWW18,https://doi.org/10.1007/s10707-018-0323-8 +Robert Weibel,Computational Perspectives on Map Generalization.,1998,2,GeoInformatica,4,db/journals/geoinformatica/geoinformatica2.html#WeibelJ98,https://doi.org/10.1023/A:1009748903798 +Berkay Aydin,Mining spatiotemporal co-occurrence patterns in non-relational databases.,2016,20,GeoInformatica,4,db/journals/geoinformatica/geoinformatica20.html#AydinAA16,https://doi.org/10.1007/s10707-016-0255-0 +Antonio Corral,Multi-Way Distance Join Queries in Spatial Databases.,2004,8,GeoInformatica,4,db/journals/geoinformatica/geoinformatica8.html#CorralMTV04,https://doi.org/10.1023/B:GEIN.0000040832.25622.8d +Dapeng Zhao,EPLA: efficient personal location anonymity.,2018,22,GeoInformatica,1,db/journals/geoinformatica/geoinformatica22.html#ZhaoJZWHJ18,https://doi.org/10.1007/s10707-017-0303-4 +Mohammed A. Quddus,The Effects of Navigation Sensors and Spatial Road Network Data Quality on the Performance of Map Matching Algorithms.,2009,13,GeoInformatica,1,db/journals/geoinformatica/geoinformatica13.html#QuddusNO09,https://doi.org/10.1007/s10707-007-0044-x +Paul Scarponcini,Generalized Model for Linear Referencing in Transportation.,2002,6,GeoInformatica,1,db/journals/geoinformatica/geoinformatica6.html#Scarponcini02,https://doi.org/10.1023/A:1013716130838 +Yee Leung,A New Method for Feature Mining in Remotely Sensed Images.,2006,10,GeoInformatica,3,db/journals/geoinformatica/geoinformatica10.html#LeungLMM06,https://doi.org/10.1007/s10707-006-9829-6 +Thiago Luís Lopes Siqueira,Modeling vague spatial data warehouses using the VSCube conceptual model.,2014,18,GeoInformatica,2,db/journals/geoinformatica/geoinformatica18.html#SiqueiraCTC14,https://doi.org/10.1007/s10707-013-0186-y +Jun Li 0021,A probabilistic approach to detect mixed periodic patterns from moving object data.,2016,20,GeoInformatica,4,db/journals/geoinformatica/geoinformatica20.html#LiWZQJH16,https://doi.org/10.1007/s10707-016-0261-2 +Lutz Plümer,Achieving Integrity in Geographic Information Systems Maps and Nested Maps.,1997,1,GeoInformatica,4,db/journals/geoinformatica/geoinformatica1.html#PlumerG97,https://doi.org/10.1023/A:1009706411129 +F. Luino,Application of a model to the evaluation of flood damage.,2009,13,GeoInformatica,3,db/journals/geoinformatica/geoinformatica13.html#LuinoCBAGGN09,https://doi.org/10.1007/s10707-008-0070-3 +Elzbieta Malinowski,Logical Representation of a Conceptual Model for Spatial Data Warehouses.,2007,11,GeoInformatica,4,db/journals/geoinformatica/geoinformatica11.html#MalinowskiZ07,https://doi.org/10.1007/s10707-007-0022-3 +Xiaohui Guo,Human mobility semantics analysis: a probabilistic and scalable approach.,2018,22,GeoInformatica,3,db/journals/geoinformatica/geoinformatica22.html#GuoZLH18,https://doi.org/10.1007/s10707-017-0295-0 +Sandro Bimonte,"Special section on ""Spatial data warehouses and SOLAP"".",2014,18,GeoInformatica,2,db/journals/geoinformatica/geoinformatica18.html#BimontePMP14,https://doi.org/10.1007/s10707-013-0196-9 +Matt Duckham,Object Calculus and the Object-Oriented Analysis and Design of an Error-Sensitive GIS.,2001,5,GeoInformatica,3,db/journals/geoinformatica/geoinformatica5.html#Duckham01,https://doi.org/10.1023/A:1011434131001 +William E. Cartwright,Towards a Methodology for the Evaluation of Multimedia Geographical Information Products.,2001,5,GeoInformatica,3,db/journals/geoinformatica/geoinformatica5.html#CartwrightH01,https://doi.org/10.1023/A:1011438215072 +Yufei Tao,Spatial Query Estimation without the Local Uniformity Assumption.,2006,10,GeoInformatica,3,db/journals/geoinformatica/geoinformatica10.html#TaoFP06,https://doi.org/10.1007/s10707-006-9828-7 +Dingxiong Deng,Task selection in spatial crowdsourcing from worker's perspective.,2016,20,GeoInformatica,3,db/journals/geoinformatica/geoinformatica20.html#DengSDZ16,https://doi.org/10.1007/s10707-016-0251-4 +Michael F. Goodchild,Finding Geographic Information: Collection-Level Metadata.,2003,7,GeoInformatica,2,db/journals/geoinformatica/geoinformatica7.html#GoodchildZ03,https://doi.org/10.1023/A:1023451824100 +Reem Y. Ali,Discovering non-compliant window co-occurrence patterns.,2017,21,GeoInformatica,4,db/journals/geoinformatica/geoinformatica21.html#AliGKESN17,https://doi.org/10.1007/s10707-016-0289-3 +Chi-Yin Chow,Spatial cloaking for anonymous location-based services in mobile peer-to-peer environments.,2011,15,GeoInformatica,2,db/journals/geoinformatica/geoinformatica15.html#ChowML11,https://doi.org/10.1007/s10707-009-0099-y +Chris Brunsdon,Assessing the changing flowering date of the common lilac in North America: a random coefficient model approach.,2012,16,GeoInformatica,4,db/journals/geoinformatica/geoinformatica16.html#BrunsdonC12,https://doi.org/10.1007/s10707-012-0159-6 +Li Chen 0016,Merging R-Trees: Efficient Strategies for Local Bulk Insertion.,2002,6,GeoInformatica,1,db/journals/geoinformatica/geoinformatica6.html#ChenCR02,https://doi.org/10.1023/A:1013764014000 +Agnès Voisard,Editorial.,2001,5,GeoInformatica,2,db/journals/geoinformatica/geoinformatica5.html#Voisard01,https://doi.org/10.1023/A:1011436413407 +Patrick Bergougnoux,A Word from the Editor-in-Chief.,1998,2,GeoInformatica,1,db/journals/geoinformatica/geoinformatica2.html#Bergougnoux98,https://doi.org/10.1023/A:1009739520978 +Alexandre Sorokine,"Ontological Investigation of a Multiscale Ecosystem Classification Using the ""National Hierarchical Framework of Ecological Units"" as an Example.",2006,10,GeoInformatica,3,db/journals/geoinformatica/geoinformatica10.html#SorokineBR06,https://doi.org/10.1007/s10707-006-9830-0 +Maria Luisa Damiani,Guest editorial: location-centric privacy in mobile services.,2014,18,GeoInformatica,1,db/journals/geoinformatica/geoinformatica18.html#DamianiG14,https://doi.org/10.1007/s10707-013-0195-x +Niki Pissinou,Spatio-Temporal Modeling in Video and Multimedia Geographic Information Systems.,2001,5,GeoInformatica,4,db/journals/geoinformatica/geoinformatica5.html#PissinouRM01,https://doi.org/10.1023/A:1012749903497 +Sylvie Servigne,A Methodology for Spatial Consistency Improvement of Geographic Databases.,2000,4,GeoInformatica,1,db/journals/geoinformatica/geoinformatica4.html#ServigneUPL00,https://doi.org/10.1023/A:1009824308542 +Lorenzino Vaccari,An evaluation of ontology matching in geo-service applications.,2012,16,GeoInformatica,1,db/journals/geoinformatica/geoinformatica16.html#VaccariSPBM12,https://doi.org/10.1007/s10707-011-0125-8 +Patrick Bergougnoux,Editorial: Geographic Information Systems and Intelligent Transportation Systems.,2000,4,GeoInformatica,2,db/journals/geoinformatica/geoinformatica4.html#Bergougnoux00a,https://doi.org/10.1023/A:1009884521096 +Hui Ding,Efficient Maintenance of Continuous Queries for Trajectories.,2008,12,GeoInformatica,3,db/journals/geoinformatica/geoinformatica12.html#DingTS08,https://doi.org/10.1007/s10707-007-0029-9 +Nikos Mamoulis,Complex Spatial Query Processing.,2004,8,GeoInformatica,4,db/journals/geoinformatica/geoinformatica8.html#MamoulisPA04,https://doi.org/10.1023/B:GEIN.0000040830.73424.f0 +Francisco Javier Ariza-López,Comparison of four line-based positional assessment methods by means of synthetic data.,2012,16,GeoInformatica,2,db/journals/geoinformatica/geoinformatica16.html#Ariza-LopezM12,https://doi.org/10.1007/s10707-011-0130-y +Muhammad Umer,Spatial interpolation in wireless sensor networks: localized algorithms for variogram modeling and Kriging.,2010,14,GeoInformatica,1,db/journals/geoinformatica/geoinformatica14.html#UmerKT10,https://doi.org/10.1007/s10707-009-0078-3 +Ali Frihida,Development of a Temporal Extension to Query Travel Behavior Time Paths Using an Object-Oriented GIS.,2004,8,GeoInformatica,3,db/journals/geoinformatica/geoinformatica8.html#FrihidaMT04,https://doi.org/10.1023/B:GEIN.0000034819.57376.92 +Jens Dittrich,MOVIES: indexing moving objects by shooting index images.,2011,15,GeoInformatica,4,db/journals/geoinformatica/geoinformatica15.html#DittrichBS11,https://doi.org/10.1007/s10707-011-0122-y +Shayma Alkobaisi,An interactive framework for spatial joins: a statistical approach to data analysis in GIS.,2012,16,GeoInformatica,2,db/journals/geoinformatica/geoinformatica16.html#AlkobaisiBVN12,https://doi.org/10.1007/s10707-011-0134-7 +Ying Lu 0004,Efficient indexing and retrieval of large-scale geo-tagged video databases.,2016,20,GeoInformatica,4,db/journals/geoinformatica/geoinformatica20.html#LuSK16,https://doi.org/10.1007/s10707-016-0250-5 +Xihui Chen,Protecting query privacy in location-based services.,2014,18,GeoInformatica,1,db/journals/geoinformatica/geoinformatica18.html#ChenP14,https://doi.org/10.1007/s10707-013-0192-0 +Corinne Plazanet,Experiments with Learning Techniques for Spatial Model Enrichment and Line Generalization.,1998,2,GeoInformatica,4,db/journals/geoinformatica/geoinformatica2.html#PlazanetBR98,https://doi.org/10.1023/A:1009753320636 +Leila De Floriani,VARIANT: A System for Terrain Modeling at Variable Resolution.,2000,4,GeoInformatica,3,db/journals/geoinformatica/geoinformatica4.html#FlorianiMP00a,https://doi.org/10.1023/A:1009805426595 +Patrick Bergougnoux,Bridging the Gap between Computer Science and Geography.,1997,1,GeoInformatica,1,db/journals/geoinformatica/geoinformatica1.html#Bergougnoux97, +Gertraud Peinel,Graphical Information Portals - The Application of Smart Maps in GeoNet 4D.,2001,5,GeoInformatica,4,db/journals/geoinformatica/geoinformatica5.html#PeinelR01,https://doi.org/10.1023/A:1012793718518 +Karla A. V. Borges,Ontology-driven discovery of geospatial evidence in web pages.,2011,15,GeoInformatica,4,db/journals/geoinformatica/geoinformatica15.html#BorgesDLM11,https://doi.org/10.1007/s10707-010-0118-z +Mark McKenney,Multi-core parallelism for plane sweep algorithms as a foundation for GIS operations.,2017,21,GeoInformatica,1,db/journals/geoinformatica/geoinformatica21.html#McKenneyFDAH17,https://doi.org/10.1007/s10707-016-0277-7 +David J. Abel,Caching Strategies for Spatial Joins.,1999,3,GeoInformatica,1,db/journals/geoinformatica/geoinformatica3.html#AbelGPZ99,https://doi.org/10.1023/A:1009844729517 +Alberto Belussi,Impact of data representation rules on the robustness of topological relation evaluation.,2015,19,GeoInformatica,2,db/journals/geoinformatica/geoinformatica19.html#BelussiMNP15,https://doi.org/10.1007/s10707-014-0210-x +Shashi Shekhar,From GPS and virtual globes to spatial computing - 2020.,2015,19,GeoInformatica,4,db/journals/geoinformatica/geoinformatica19.html#ShekharFA15,https://doi.org/10.1007/s10707-015-0235-9 +Chenjuan Guo,EcoMark 2.0: empowering eco-routing with vehicular environmental models and actual vehicle fuel consumption data.,2015,19,GeoInformatica,3,db/journals/geoinformatica/geoinformatica19.html#Guo0AJT15,https://doi.org/10.1007/s10707-014-0221-7 +Berker Agir,User-side adaptive protection of location privacy in participatory sensing.,2014,18,GeoInformatica,1,db/journals/geoinformatica/geoinformatica18.html#AgirPNAH14,https://doi.org/10.1007/s10707-013-0193-z +Gerhard Gröger,Provably correct and complete transaction rules for updating 3D city models.,2012,16,GeoInformatica,1,db/journals/geoinformatica/geoinformatica16.html#GrogerP12,https://doi.org/10.1007/s10707-011-0127-6 +Eliseo Clementini,A Global Framework for Qualitative Shape Description.,1997,1,GeoInformatica,1,db/journals/geoinformatica/geoinformatica1.html#ClementiniF97,https://doi.org/10.1023/A:1009790715467 +Gerhard Gröger,How to achieve consistency for 3D city models.,2011,15,GeoInformatica,1,db/journals/geoinformatica/geoinformatica15.html#GrogerP11,https://doi.org/10.1007/s10707-009-0091-6 +Xiao Long Deng,Efficient CPS model based online opinion governance modeling and evaluation for emergency accidents.,2018,22,GeoInformatica,2,db/journals/geoinformatica/geoinformatica22.html#DengYGD18,https://doi.org/10.1007/s10707-018-0319-4 +Thomas Behr,User defined topological predicates in database systems.,2010,14,GeoInformatica,1,db/journals/geoinformatica/geoinformatica14.html#BehrG10,https://doi.org/10.1007/s10707-008-0075-y +Bo Guo,Towards Temporal Dynamic Segmentation.,2004,8,GeoInformatica,3,db/journals/geoinformatica/geoinformatica8.html#GuoK04,https://doi.org/10.1023/B:GEIN.0000034821.31552.1b +Kathleen Stewart Hornsby,Modeling Motion Relations for Moving Objects on Road Networks.,2008,12,GeoInformatica,4,db/journals/geoinformatica/geoinformatica12.html#HornsbyK08,https://doi.org/10.1007/s10707-007-0039-7 +William A. Mackaness,Automating the Detection and Simplification of Junctions in Road Networks.,1999,3,GeoInformatica,2,db/journals/geoinformatica/geoinformatica3.html#MackanessM99,https://doi.org/10.1023/A:1009807927991 +Trisalyn A. Nelson,Predicting Forest Age Classes from High Spatial Resolution Remotely Sensed Imagery Using Voronoi Polygon Aggregation.,2004,8,GeoInformatica,2,db/journals/geoinformatica/geoinformatica8.html#NelsonBWF04,https://doi.org/10.1023/B:GEIN.0000017745.92969.31 +Zhi-Jie Wang,SMe: explicit and implicit constrained-space probabilistic threshold range queries for moving objects.,2016,20,GeoInformatica,1,db/journals/geoinformatica/geoinformatica20.html#Wang0CGZGG16,https://doi.org/10.1007/s10707-015-0230-1 +Xiang Zhang,Building pattern recognition in topographic data: examples on collinear and curvilinear alignments.,2013,17,GeoInformatica,1,db/journals/geoinformatica/geoinformatica17.html#ZhangASKM13,https://doi.org/10.1007/s10707-011-0146-3 +Jianqiu Xu,The TM-RTree: an index on generic moving objects for range queries.,2015,19,GeoInformatica,3,db/journals/geoinformatica/geoinformatica19.html#XuGZ15,https://doi.org/10.1007/s10707-014-0218-2 +Shashi Shekhar,A Unified Approach to Detecting Spatial Outliers.,2003,7,GeoInformatica,2,db/journals/geoinformatica/geoinformatica7.html#ShekharLZ03,https://doi.org/10.1023/A:1023455925009 +Leonardo Guerreiro Azevedo,Polyline Spatial Join Evaluation Using Raster Approximation.,2003,7,GeoInformatica,4,db/journals/geoinformatica/geoinformatica7.html#AzevedoMZS03,https://doi.org/10.1023/A:1025569305481 +Cynthia A. Brewer,Mastering map scale: balancing workloads using display and geometry change in multi-scale mapping.,2010,14,GeoInformatica,2,db/journals/geoinformatica/geoinformatica14.html#BrewerB10,https://doi.org/10.1007/s10707-009-0083-6 +Christian Kray,Guest editorial: map interaction.,2017,21,GeoInformatica,3,db/journals/geoinformatica/geoinformatica21.html#KraySF17,https://doi.org/10.1007/s10707-016-0290-x +Tobias Emrich,On reverse-k-nearest-neighbor joins.,2015,19,GeoInformatica,2,db/journals/geoinformatica/geoinformatica19.html#EmrichKKNRZ15,https://doi.org/10.1007/s10707-014-0215-5 +Yun-Wu Huang,A Hierarchical Path View Model for Path Finding in Intelligent Transportation Systems.,1997,1,GeoInformatica,2,db/journals/geoinformatica/geoinformatica1.html#HuangJR97,https://doi.org/10.1023/A:1009784527790 +David B. Kidner,Parallel Processing for Terrain Analysis in GIS: Visibility as a Case Study.,1997,1,GeoInformatica,2,db/journals/geoinformatica/geoinformatica1.html#KidnerRW97,https://doi.org/10.1023/A:1009740712769 +Serafino Cicerone,Efficient Estimation of Qualitative Topological Relations based on the Weighted Walkthroughs Model.,2003,7,GeoInformatica,3,db/journals/geoinformatica/geoinformatica7.html#CiceroneC03,https://doi.org/10.1023/A:1025148831131 +Moritz Neun,Automated processing for map generalization using web services.,2009,13,GeoInformatica,4,db/journals/geoinformatica/geoinformatica13.html#NeunBW09,https://doi.org/10.1007/s10707-008-0054-3 +Panayotis Partsinevelos,Handling High-Level Queries in Location-Based Services for User Groups.,2006,10,GeoInformatica,2,db/journals/geoinformatica/geoinformatica10.html#PartsinevelosT06,https://doi.org/10.1007/s10707-006-7580-7 +Dieter Pfoser,Indeterminacy and Spatiotemporal Data: Basic Definitions and Case Study.,2005,9,GeoInformatica,3,db/journals/geoinformatica/geoinformatica9.html#PfoserTJ05,https://doi.org/10.1007/s10707-005-1282-4 +Serdar Yesilmurat,Retrospective adaptive prefetching for interactive Web GIS applications.,2012,16,GeoInformatica,3,db/journals/geoinformatica/geoinformatica16.html#YesilmuratI12,https://doi.org/10.1007/s10707-011-0141-8 +Florian Berger,A meeting scheduling problem respecting time and space.,2009,13,GeoInformatica,4,db/journals/geoinformatica/geoinformatica13.html#BergerKNSY09,https://doi.org/10.1007/s10707-008-0053-4 +Maria Luisa Damiani,Location privacy models in mobile applications: conceptual view and research directions.,2014,18,GeoInformatica,4,db/journals/geoinformatica/geoinformatica18.html#Damiani14,https://doi.org/10.1007/s10707-014-0205-7 +Jianqiu Xu,Querying visible points in large obstructed space.,2015,19,GeoInformatica,3,db/journals/geoinformatica/geoinformatica19.html#XuG15,https://doi.org/10.1007/s10707-014-0213-7 +Dieter Pfoser,Trajectory Indexing Using Movement Constraints*.,2005,9,GeoInformatica,2,db/journals/geoinformatica/geoinformatica9.html#PfoserJ05,https://doi.org/10.1007/s10707-005-6429-9 +Martin Erwig,Spatio-Temporal Data Types: An Approach to Modeling and Querying Moving Objects in Databases.,1999,3,GeoInformatica,3,db/journals/geoinformatica/geoinformatica3.html#ErwigGSV99,https://doi.org/10.1023/A:1009805532638 +Jeff Danciger,Shape deformation in continuous map generalization.,2009,13,GeoInformatica,2,db/journals/geoinformatica/geoinformatica13.html#DancigerDMSW09,https://doi.org/10.1007/s10707-008-0049-0 +Ali Khoshgozaran,Blind evaluation of location based queries using space transformation to preserve location privacy.,2013,17,GeoInformatica,4,db/journals/geoinformatica/geoinformatica17.html#KhoshgozaranSS13,https://doi.org/10.1007/s10707-012-0172-9 +Bo Huang 0001,Design of a Query Language for Accessing Spatial Analysis in the Web Environment.,1999,3,GeoInformatica,2,db/journals/geoinformatica/geoinformatica3.html#HuangL99,https://doi.org/10.1023/A:1009803811153 +Yuan-Ko Huang,Efficient evaluation of continuous spatio-temporal queries on moving objects with uncertain velocity.,2010,14,GeoInformatica,2,db/journals/geoinformatica/geoinformatica14.html#HuangL10,https://doi.org/10.1007/s10707-009-0081-8 +Patrick Bergougnoux,Editorial.,1999,3,GeoInformatica,1,db/journals/geoinformatica/geoinformatica3.html#Bergougnoux99,https://doi.org/10.1023/A:1009865312235 +Joon-Seok Kim,Location K-anonymity in indoor spaces.,2016,20,GeoInformatica,3,db/journals/geoinformatica/geoinformatica20.html#KimL16,https://doi.org/10.1007/s10707-015-0241-y +Huaizhong Lin,Finding optimal region for bichromatic reverse nearest neighbor in two- and three-dimensional spaces.,2016,20,GeoInformatica,3,db/journals/geoinformatica/geoinformatica20.html#LinCGL16,https://doi.org/10.1007/s10707-015-0239-5 +Stephan Winter 0001,Topology in Raster and Vector Representation.,2000,4,GeoInformatica,1,db/journals/geoinformatica/geoinformatica4.html#WinterF00,https://doi.org/10.1023/A:1009828425380 +Carmen Vega Orozco,Cluster recognition in spatial-temporal sequences: the case of forest fires.,2012,16,GeoInformatica,4,db/journals/geoinformatica/geoinformatica16.html#OrozcoTCK12,https://doi.org/10.1007/s10707-012-0161-z +Hamed Abdelhaq,Efficient online extraction of keywords for localized events in twitter.,2017,21,GeoInformatica,2,db/journals/geoinformatica/geoinformatica21.html#AbdelhaqGA17,https://doi.org/10.1007/s10707-016-0258-x +Esteban Zimányi,Preface: semantic and conceptual issues in geographic information systems.,2010,14,GeoInformatica,3,db/journals/geoinformatica/geoinformatica14.html#Zimanyi10,https://doi.org/10.1007/s10707-009-0101-8 +Steven van Dijk,Using Genetic Algorithms for Solving Hard Problems in GIS.,2002,6,GeoInformatica,4,db/journals/geoinformatica/geoinformatica6.html#DijkTB02,https://doi.org/10.1023/A:1020809627892 +Chen Wang 0007,How users perceive transparency in the 3D visualization of cadastre: testing its usability in an online questionnaire.,2017,21,GeoInformatica,3,db/journals/geoinformatica/geoinformatica21.html#WangPH17,https://doi.org/10.1007/s10707-016-0281-y +Yimin Lin,Best upgrade plans for single and multiple source-destination pairs.,2015,19,GeoInformatica,2,db/journals/geoinformatica/geoinformatica19.html#LinM15,https://doi.org/10.1007/s10707-014-0219-1 +Shuo Shang,PNN query processing on compressed trajectories.,2012,16,GeoInformatica,3,db/journals/geoinformatica/geoinformatica16.html#ShangYDXZZ12,https://doi.org/10.1007/s10707-011-0144-5 +Jonathon K. Parker,Footprint generation using fuzzy-neighborhood clustering.,2013,17,GeoInformatica,2,db/journals/geoinformatica/geoinformatica17.html#ParkerD13,https://doi.org/10.1007/s10707-012-0152-0 +Fabio Gomes de Andrade,Improving geographic information retrieval in spatial data infrastructures.,2014,18,GeoInformatica,4,db/journals/geoinformatica/geoinformatica18.html#AndradeBD14,https://doi.org/10.1007/s10707-014-0202-x +Gilberto Gutierrez,The k closest pairs in spatial databases - When only one set is indexed.,2013,17,GeoInformatica,4,db/journals/geoinformatica/geoinformatica17.html#GutierrezS13,https://doi.org/10.1007/s10707-012-0169-4 +Ching-Chien Chen,Automatically Conflating Road Vector Data with Orthoimagery.,2006,10,GeoInformatica,4,db/journals/geoinformatica/geoinformatica10.html#ChenKS06,https://doi.org/10.1007/s10707-006-0344-6 +Sílvio S. Ribeiro Jr.,Strategies for combining Twitter users geo-location methods.,2018,22,GeoInformatica,3,db/journals/geoinformatica/geoinformatica22.html#RibeiroP18,https://doi.org/10.1007/s10707-017-0296-z +Qing Guo,Probabilistic spatio-temporal resource search.,2018,22,GeoInformatica,1,db/journals/geoinformatica/geoinformatica22.html#GuoW18,https://doi.org/10.1007/s10707-016-0275-9 +Danhuai Guo,OSCAR: a framework to integrate spatial computing ability and data aggregation for emergency management of public health.,2018,22,GeoInformatica,2,db/journals/geoinformatica/geoinformatica22.html#GuoZY18,https://doi.org/10.1007/s10707-017-0308-z +Michael F. Goodchild,Editorial.,1998,2,GeoInformatica,3,db/journals/geoinformatica/geoinformatica2.html#GoodchildJ98,https://doi.org/10.1023/A:1009731220185 +Ranga Raju Vatsavai,A hybrid classification scheme for mining multisource geospatial data.,2011,15,GeoInformatica,1,db/journals/geoinformatica/geoinformatica15.html#VatsavaiB11,https://doi.org/10.1007/s10707-010-0113-4 +François Lecordix,A Platform for Research in Generalization: Application to Caricature.,1997,1,GeoInformatica,2,db/journals/geoinformatica/geoinformatica1.html#LecordixPL97,https://doi.org/10.1023/A:1009736628698 +Maxim A. Rylov,Improving label placement quality by considering basemap detail with a raster-based approach.,2015,19,GeoInformatica,3,db/journals/geoinformatica/geoinformatica19.html#RylovR15,https://doi.org/10.1007/s10707-014-0214-6 +André Skupin,Visualizing Demographic Trajectories with Self-Organizing Maps.,2005,9,GeoInformatica,2,db/journals/geoinformatica/geoinformatica9.html#SkupinH05,https://doi.org/10.1007/s10707-005-6670-2 +Alessandra Raffaetà,An Application of Advanced Spatio-Temporal Formalisms to Behavioural Ecology.,2008,12,GeoInformatica,1,db/journals/geoinformatica/geoinformatica12.html#RaffaetaCCGMPRST08,https://doi.org/10.1007/s10707-006-0016-6 +Ching-Chien Chen,Automatically and Accurately Conflating Raster Maps with Orthoimagery.,2008,12,GeoInformatica,3,db/journals/geoinformatica/geoinformatica12.html#ChenKS08,https://doi.org/10.1007/s10707-007-0033-0 +Jie Bao 0003,Recommendations in location-based social networks: a survey.,2015,19,GeoInformatica,3,db/journals/geoinformatica/geoinformatica19.html#0003ZWM15,https://doi.org/10.1007/s10707-014-0220-8 +Jin Soung Yoo,In-Route Nearest Neighbor Queries.,2005,9,GeoInformatica,2,db/journals/geoinformatica/geoinformatica9.html#YooS05,https://doi.org/10.1007/s10707-005-6671-1 +Kai Zheng 0001,Preface to the special issue on advances in Spatio-temporal data analysis and management.,2018,22,GeoInformatica,1,db/journals/geoinformatica/geoinformatica22.html#ZhengLS18,https://doi.org/10.1007/s10707-017-0310-5 +Mattias Andersson,Reporting Leaders and Followers among Trajectories of Moving Point Objects.,2008,12,GeoInformatica,4,db/journals/geoinformatica/geoinformatica12.html#AnderssonGLW08,https://doi.org/10.1007/s10707-007-0037-9 +Peter F. Fisher,Improved Modeling of Elevation Error with Geostatistics.,1998,2,GeoInformatica,3,db/journals/geoinformatica/geoinformatica2.html#Fisher98,https://doi.org/10.1023/A:1009717704255 +Stephan Winter 0001,Current computational transportation science.,2016,20,GeoInformatica,2,db/journals/geoinformatica/geoinformatica20.html#WinterCX16,https://doi.org/10.1007/s10707-016-0249-y +Kevin Buchin,Processing aggregated data: the location of clusters in health data.,2012,16,GeoInformatica,3,db/journals/geoinformatica/geoinformatica16.html#BuchinBKLLS12,https://doi.org/10.1007/s10707-011-0143-6 +Laurynas Speicys,Enabling Location-based Services - Multi-Graph Representation of Transportation Networks.,2008,12,GeoInformatica,2,db/journals/geoinformatica/geoinformatica12.html#SpeicysJ08,https://doi.org/10.1007/s10707-007-0032-1 +Serena Coetzee,Reference model for a data grid approach to address data in a dynamic SDI.,2012,16,GeoInformatica,1,db/journals/geoinformatica/geoinformatica16.html#Coetzee12,https://doi.org/10.1007/s10707-011-0129-4 +Yun-Wu Huang,Symbolic Intersect Detection: A Method for Improving Spatial Intersect Joins.,1998,2,GeoInformatica,2,db/journals/geoinformatica/geoinformatica2.html#HuangJR98,https://doi.org/10.1023/A:1009708015126 +Chang-Tien Lu,Advances in GML for Geospatial Applications.,2007,11,GeoInformatica,1,db/journals/geoinformatica/geoinformatica11.html#LuSSK07,https://doi.org/10.1007/s10707-006-0013-9 +Christopher D. Michaelis,Evaluation and Implementation of the OGC Web Processing Service for Use in Client-Side GIS.,2009,13,GeoInformatica,1,db/journals/geoinformatica/geoinformatica13.html#MichaelisA09,https://doi.org/10.1007/s10707-008-0048-1 +Dorde M. Durdevic,HFPaC: GPU friendly height field parallel compression.,2013,17,GeoInformatica,1,db/journals/geoinformatica/geoinformatica17.html#DurdevicT13,https://doi.org/10.1007/s10707-012-0171-x +Feng Chen 0001,Preface: special issue on geo-social media analytics.,2018,22,GeoInformatica,3,db/journals/geoinformatica/geoinformatica22.html#ChenBL18,https://doi.org/10.1007/s10707-018-0324-7 +Urska Demsar,Stacked space-time densities: a geovisualisation approach to explore dynamics of space use over time.,2015,19,GeoInformatica,1,db/journals/geoinformatica/geoinformatica19.html#DemsarBLS15,https://doi.org/10.1007/s10707-014-0207-5 +Chi-Yin Chow,Query-aware location anonymization for road networks.,2011,15,GeoInformatica,3,db/journals/geoinformatica/geoinformatica15.html#ChowMBL11,https://doi.org/10.1007/s10707-010-0117-0 +Stephan Winter 0001,Modeling Costs of Turns in Route Planning.,2002,6,GeoInformatica,4,db/journals/geoinformatica/geoinformatica6.html#Winter02,https://doi.org/10.1023/A:1020853410145 +Xutong Liu,On detecting spatial categorical outliers.,2014,18,GeoInformatica,3,db/journals/geoinformatica/geoinformatica18.html#LiuCL14,https://doi.org/10.1007/s10707-013-0188-9 +Ziyu Lu,Personalized location recommendation by aggregating multiple recommenders in diversity.,2017,21,GeoInformatica,3,db/journals/geoinformatica/geoinformatica21.html#LuWMTC17,https://doi.org/10.1007/s10707-017-0298-x +Wei Ding 0003,A framework for regional association rule mining and scoping in spatial datasets.,2011,15,GeoInformatica,1,db/journals/geoinformatica/geoinformatica15.html#DingEYWN11,https://doi.org/10.1007/s10707-010-0111-6 +Julie Doyle,Evaluating the benefits of multimodal interface design for CoMPASS - a mobile GIS.,2010,14,GeoInformatica,2,db/journals/geoinformatica/geoinformatica14.html#DoyleBW10,https://doi.org/10.1007/s10707-009-0079-2 +Claudia Bauzer Medeiros,Managing sensor traffic data and forecasting unusual behaviour propagation.,2010,14,GeoInformatica,3,db/journals/geoinformatica/geoinformatica14.html#MedeirosJJV10,https://doi.org/10.1007/s10707-010-0102-7 +Ran Wang 0001,Exploring cell tower data dumps for supervised learning-based point-of-interest prediction (industrial paper).,2016,20,GeoInformatica,2,db/journals/geoinformatica/geoinformatica20.html#WangCLLNLY16,https://doi.org/10.1007/s10707-015-0237-7 +Deepti Joshi,Spatio-temporal polygonal clustering with space and time as first-class citizens.,2013,17,GeoInformatica,2,db/journals/geoinformatica/geoinformatica17.html#JoshiSS13,https://doi.org/10.1007/s10707-012-0157-8 +Victor Teixeira de Almeida,Indexing the Trajectories of Moving Objects in Networks.,2005,9,GeoInformatica,1,db/journals/geoinformatica/geoinformatica9.html#AlmeidaG05,https://doi.org/10.1007/s10707-004-5621-7 +Jinmu Choi,Innovations in Individual Feature History Management - The Significance of Feature-based Temporal Model.,2008,12,GeoInformatica,1,db/journals/geoinformatica/geoinformatica12.html#ChoiSKU08,https://doi.org/10.1007/s10707-007-0019-y +Ling Chen 0001,Partition-based range query for uncertain trajectories in road networks.,2015,19,GeoInformatica,1,db/journals/geoinformatica/geoinformatica19.html#ChenTLC15,https://doi.org/10.1007/s10707-014-0206-6 +Yee Leung,Point-in-Polygon Analysis Under Certainty and Uncertainty.,1997,1,GeoInformatica,1,db/journals/geoinformatica/geoinformatica1.html#LeungY97,https://doi.org/10.1023/A:1009764319102 +Jianqiu Xu,A generic data model for moving objects.,2013,17,GeoInformatica,1,db/journals/geoinformatica/geoinformatica17.html#XuG13,https://doi.org/10.1007/s10707-012-0158-7 +Mohamed Ali,Guest editorial: GeoStreaming.,2017,21,GeoInformatica,2,db/journals/geoinformatica/geoinformatica21.html#AliKZ17,https://doi.org/10.1007/s10707-017-0291-4 +Andrea Ballatore,An evaluative baseline for geo-semantic relatedness and similarity.,2014,18,GeoInformatica,4,db/journals/geoinformatica/geoinformatica18.html#BallatoreBW14,https://doi.org/10.1007/s10707-013-0197-8 +Bo Su,Morphological Models for the Collapse of Area Features in Digital Map Generalization.,1998,2,GeoInformatica,4,db/journals/geoinformatica/geoinformatica2.html#SuLL98,https://doi.org/10.1023/A:1009757422454 +Egemen Tanin,Building and Querying a P2P Virtual World.,2006,10,GeoInformatica,1,db/journals/geoinformatica/geoinformatica10.html#TaninHSNN06,https://doi.org/10.1007/s10707-005-4887-8 +Takeshi Shirabe,Classification of Spatial Properties for Spatial Allocation Modeling.,2005,9,GeoInformatica,3,db/journals/geoinformatica/geoinformatica9.html#Shirabe05,https://doi.org/10.1007/s10707-005-1285-1 +Bing Zhang,Towards fusing uncertain location data from heterogeneous sources.,2016,20,GeoInformatica,2,db/journals/geoinformatica/geoinformatica20.html#ZhangTL16,https://doi.org/10.1007/s10707-015-0238-6 +Stefano Spaccapietra,Editorial: Spatio-Temporal Data Models and Languages.,2001,5,GeoInformatica,1,db/journals/geoinformatica/geoinformatica5.html#Spaccapietra01,https://doi.org/10.1023/A:1011403703806 +Nectaria Tryfona,Conceptual Data Modeling for Spatiotemporal Applications.,1999,3,GeoInformatica,3,db/journals/geoinformatica/geoinformatica3.html#TryfonaJ99,https://doi.org/10.1023/A:1009801415799 +Leila De Floriani,Visibility Computations on Hierarchical Triangulated Terrain Models.,1997,1,GeoInformatica,3,db/journals/geoinformatica/geoinformatica1.html#FlorianiM97,https://doi.org/10.1023/A:1009708413602 +Yao-Yi Chiang,Automatic and Accurate Extraction of Road Intersections from Raster Maps.,2009,13,GeoInformatica,2,db/journals/geoinformatica/geoinformatica13.html#ChiangKSC09,https://doi.org/10.1007/s10707-008-0046-3 +Chui Kwan Cheung,A Probability-based Uncertainty Model for Point-in-Polygon Analysis in GIS.,2004,8,GeoInformatica,1,db/journals/geoinformatica/geoinformatica8.html#CheungSZ04,https://doi.org/10.1023/B:GEIN.0000007725.41038.03 +Mahmoud Attia Sakr,Group spatiotemporal pattern queries.,2014,18,GeoInformatica,4,db/journals/geoinformatica/geoinformatica18.html#SakrG14,https://doi.org/10.1007/s10707-013-0198-7 +Jonathan Muckell,Compression of trajectory data: a comprehensive evaluation and new approach.,2014,18,GeoInformatica,3,db/journals/geoinformatica/geoinformatica18.html#MuckellOHLR14,https://doi.org/10.1007/s10707-013-0184-0 +George Grekousis,Erratum to: A fuzzy index for detecting spatiotemporal outliers.,2012,16,GeoInformatica,3,db/journals/geoinformatica/geoinformatica16.html#GrekousisP12,https://doi.org/10.1007/s10707-011-0150-7 +Loïc Salmon,Design principles of a stream-based framework for mobility analysis.,2017,21,GeoInformatica,2,db/journals/geoinformatica/geoinformatica21.html#SalmonR17,https://doi.org/10.1007/s10707-016-0256-z +Binhai Zhu,Fast Range Searching with Delaunay Triangulations.,2000,4,GeoInformatica,3,db/journals/geoinformatica/geoinformatica4.html#Zhu00,https://doi.org/10.1023/A:1009857410665 +Chenghu Zhou,A Conceptual Model for a Feature-Based Virtual Network.,2000,4,GeoInformatica,3,db/journals/geoinformatica/geoinformatica4.html#ZhouLW00,https://doi.org/10.1023/A:1009853309757 +José Antonio Cotelo Lema,Dual Grid: A New Approach for Robust Spatial Algebra Implementation.,2002,6,GeoInformatica,1,db/journals/geoinformatica/geoinformatica6.html#LemaG02,https://doi.org/10.1023/A:1013768114909 +Jiyeong Lee,A Spatial Access-Oriented Implementation of a 3-D GIS Topological Data Model for Urban Entities.,2004,8,GeoInformatica,3,db/journals/geoinformatica/geoinformatica8.html#Lee04,https://doi.org/10.1023/B:GEIN.0000034820.93914.d0 +Kathleen Stewart Hornsby,Combining ontologies to automatically generate temporal perspectives of geospatial domains.,2010,14,GeoInformatica,4,db/journals/geoinformatica/geoinformatica14.html#HornsbyJ10,https://doi.org/10.1007/s10707-009-0088-1 +Detian Zhang,Efficient evaluation of shortest travel-time path queries through spatial mashups.,2018,22,GeoInformatica,1,db/journals/geoinformatica/geoinformatica22.html#ZhangCLZDL18,https://doi.org/10.1007/s10707-016-0288-4 +Wei Zhang,Temporal Interpolation of Spatially Dynamic Object.,2000,4,GeoInformatica,4,db/journals/geoinformatica/geoinformatica4.html#ZhangH00,https://doi.org/10.1023/A:1026518013333 +Sophie Cockcroft,The Design and Implementation of a Repository for the Management of Spatial Data Integrity Constraints.,2004,8,GeoInformatica,1,db/journals/geoinformatica/geoinformatica8.html#Cockcroft04,https://doi.org/10.1023/B:GEIN.0000007724.37467.ae +Tomas Ukkonen,Comparison of distribution strategies in uncertainty-aware catchment delineation.,2011,15,GeoInformatica,2,db/journals/geoinformatica/geoinformatica15.html#UkkonenORS11,https://doi.org/10.1007/s10707-009-0098-z +Cheng Liu,A Spatio-temporal Scenario Model for Emergency Decision.,2018,22,GeoInformatica,2,db/journals/geoinformatica/geoinformatica22.html#LiuQGL18,https://doi.org/10.1007/s10707-017-0313-2 +Katerina Raptopoulou,Fast Nearest-Neighbor Query Processing in Moving-Object Databases.,2003,7,GeoInformatica,2,db/journals/geoinformatica/geoinformatica7.html#RaptopoulouPM03,https://doi.org/10.1023/A:1023403908170 +Gabriel Ghinita,Approximate and exact hybrid algorithms for private nearest-neighbor queries with database protection.,2011,15,GeoInformatica,4,db/journals/geoinformatica/geoinformatica15.html#GhinitaKKB11,https://doi.org/10.1007/s10707-010-0121-4 +David Thibault,Terrain Reconstruction from Contours by Skeleton Construction.,2000,4,GeoInformatica,4,db/journals/geoinformatica/geoinformatica4.html#ThibaultG00,https://doi.org/10.1023/A:1026509828354 +Man Lung Yiu,Retrieval of Spatial Join Pattern Instances from Sensor Networks.,2009,13,GeoInformatica,1,db/journals/geoinformatica/geoinformatica13.html#YiuMB09,https://doi.org/10.1007/s10707-007-0043-y +Werner Hölbling,Finite-Resolution Simplicial Complexes.,1998,2,GeoInformatica,3,db/journals/geoinformatica/geoinformatica2.html#HolblingKF98,https://doi.org/10.1023/A:1009773822002 +George Tsatsanifos,Index-based query processing on distributed multidimensional data.,2013,17,GeoInformatica,3,db/journals/geoinformatica/geoinformatica17.html#TsatsanifosSS13,https://doi.org/10.1007/s10707-012-0163-x +Zdravko Galic,Distributed processing of big mobility data as spatio-temporal data streams.,2017,21,GeoInformatica,2,db/journals/geoinformatica/geoinformatica21.html#GalicMO17,https://doi.org/10.1007/s10707-016-0264-z +Val Noronha,Towards ITS Map Database Interoperability-Database Error and Rectification.,2000,4,GeoInformatica,2,db/journals/geoinformatica/geoinformatica4.html#Noronha00,https://doi.org/10.1023/A:1009880307892 +Bruce A. Ralston,GIS and ITS Traffic Assignment: Issues in Dynamic User-Optimal Assignments.,2000,4,GeoInformatica,2,db/journals/geoinformatica/geoinformatica4.html#Ralston00,https://doi.org/10.1023/A:1009884408801 +Charles Dietzel,Decreasing Computational Time of Urban Cellular Automata Through Model Portability.,2006,10,GeoInformatica,2,db/journals/geoinformatica/geoinformatica10.html#DietzelC06,https://doi.org/10.1007/s10707-006-7579-0 +Silvia Rapicetta,GIS-based method for the environmental vulnerability assessment to volcanic ashfall at Etna Volcano.,2009,13,GeoInformatica,3,db/journals/geoinformatica/geoinformatica13.html#RapicettaZ09,https://doi.org/10.1007/s10707-008-0061-4 +Haowen Yan,A Multi-parameter Approach to Automated Building Grouping and Generalization.,2008,12,GeoInformatica,1,db/journals/geoinformatica/geoinformatica12.html#YanWY08,https://doi.org/10.1007/s10707-007-0020-5 +Nieves R. Brisaboa,Exploiting geographic references of documents in a geographical information retrieval system using an ontology-based index.,2010,14,GeoInformatica,3,db/journals/geoinformatica/geoinformatica14.html#BrisaboaLPS10,https://doi.org/10.1007/s10707-010-0106-3 +José Luis García Balboa,Generalization-oriented Road Line Classification by Means of an Artificial Neural Network.,2008,12,GeoInformatica,3,db/journals/geoinformatica/geoinformatica12.html#BalboaA08,https://doi.org/10.1007/s10707-007-0026-z +Jan Behmann,Support Vector machine and duration-aware conditional random field for identification of spatio-temporal activity patterns by combined indoor positioning and heart rate sensors.,2016,20,GeoInformatica,4,db/journals/geoinformatica/geoinformatica20.html#BehmannHMBP16,https://doi.org/10.1007/s10707-016-0260-3 +Trias Aditya,Aim4GDI: Facilitating the Synthesis of GDI Resources through Mapping and Superimpositions of Metadata Summaries.,2007,11,GeoInformatica,4,db/journals/geoinformatica/geoinformatica11.html#AdityaK07,https://doi.org/10.1007/s10707-007-0021-4 +Sébastien Mustière,Matching Networks with Different Levels of Detail.,2008,12,GeoInformatica,4,db/journals/geoinformatica/geoinformatica12.html#MustiereD08,https://doi.org/10.1007/s10707-007-0040-1 +Brian Swedberg,PerSE: visual analytics for calendar related spatiotemporal periodicity detection and analysis.,2017,21,GeoInformatica,3,db/journals/geoinformatica/geoinformatica21.html#SwedbergP17,https://doi.org/10.1007/s10707-016-0280-z +Eric Guilbert,A New Model for Cloud Tracking and Analysis on Satellite Images.,2007,11,GeoInformatica,3,db/journals/geoinformatica/geoinformatica11.html#GuilbertL07,https://doi.org/10.1007/s10707-006-0008-6 +Dieter Pfoser,Introduction to the Special Issue.,2006,10,GeoInformatica,1,db/journals/geoinformatica/geoinformatica10.html#PfoserC06,https://doi.org/10.1007/s10707-005-4883-z +Eliseo Clementini,Directional relations and frames of reference.,2013,17,GeoInformatica,2,db/journals/geoinformatica/geoinformatica17.html#Clementini13,https://doi.org/10.1007/s10707-011-0147-2 +Anthony G. Cohn,Qualitative Spatial Representation and Reasoning with the Region Connection Calculus.,1997,1,GeoInformatica,3,db/journals/geoinformatica/geoinformatica1.html#CohnBGG97,https://doi.org/10.1023/A:1009712514511 +Ting Hua,Automatic targeted-domain spatiotemporal event detection in twitter.,2016,20,GeoInformatica,4,db/journals/geoinformatica/geoinformatica20.html#HuaCZLR16,https://doi.org/10.1007/s10707-016-0263-0 +Rodney James Thompson,Connectivity in the regular polytope representation.,2011,15,GeoInformatica,2,db/journals/geoinformatica/geoinformatica15.html#ThompsonO11,https://doi.org/10.1007/s10707-009-0094-3 +Jan Chomicki,Constraint-based Interoperability of Spatiotemporal Databases.,1999,3,GeoInformatica,3,db/journals/geoinformatica/geoinformatica3.html#ChomickiR99,https://doi.org/10.1023/A:1009849314891 +Parisa Ghaemi,A comparative study of two approaches for supporting optimal network location queries.,2014,18,GeoInformatica,2,db/journals/geoinformatica/geoinformatica18.html#GhaemiSWK14,https://doi.org/10.1007/s10707-013-0179-x +Karla A. V. Borges,OMT-G: An Object-Oriented Data Model for Geographic Applications.,2001,5,GeoInformatica,3,db/journals/geoinformatica/geoinformatica5.html#BorgesDL01,https://doi.org/10.1023/A:1011482030093 +John R. Herring,Editorial: Quality is the Future of Geoprocessing.,2001,5,GeoInformatica,4,db/journals/geoinformatica/geoinformatica5.html#Herring01,https://doi.org/10.1023/A:1012711401679 +Jingwei Sun,SPLZ: An efficient algorithm for single source shortest path problem using compression method.,2016,20,GeoInformatica,1,db/journals/geoinformatica/geoinformatica20.html#SunS16,https://doi.org/10.1007/s10707-015-0229-7 +Ulrich Lenk,The Radial Topology Algorithm - A New Approach for Deriving 2.5D GIS Data Models.,2006,10,GeoInformatica,4,db/journals/geoinformatica/geoinformatica10.html#LenkH06,https://doi.org/10.1007/s10707-006-0342-8 +Dimitris Papadias,Algorithms for Hierarchical Spatial Reasoning.,1997,1,GeoInformatica,3,db/journals/geoinformatica/geoinformatica1.html#PapadiasE97,https://doi.org/10.1023/A:1009760430440 +Missae Yamamoto,Tabu Search Heuristic for Point-Feature Cartographic Label Placement.,2002,6,GeoInformatica,1,db/journals/geoinformatica/geoinformatica6.html#YamamotoCL02,https://doi.org/10.1023/A:1013720231747 +Wei-Shinn Ku,A query integrity assurance scheme for accessing outsourced spatial databases.,2013,17,GeoInformatica,1,db/journals/geoinformatica/geoinformatica17.html#KuHSW13,https://doi.org/10.1007/s10707-012-0156-9 +Carlos Magno de Lima,Using virtual reality and percolation theory to visualize fluid flow in porous media.,2013,17,GeoInformatica,4,db/journals/geoinformatica/geoinformatica17.html#LimaGBF13,https://doi.org/10.1007/s10707-012-0168-5 +Philippe Rigaux,Introduction to the Special Issue.,2005,9,GeoInformatica,2,db/journals/geoinformatica/geoinformatica9.html#RigauxH05,https://doi.org/10.1007/s10707-005-6669-8 +Ngai Meng Kou,Travel topic analysis: a mutually reinforcing method for geo-tagged photos.,2015,19,GeoInformatica,4,db/journals/geoinformatica/geoinformatica19.html#KouUYG15,https://doi.org/10.1007/s10707-015-0226-x +Lars Arge,Efficient Flow Computation on Massive Grid Terrain Datasets.,2003,7,GeoInformatica,4,db/journals/geoinformatica/geoinformatica7.html#ArgeCHTVUW03,https://doi.org/10.1023/A:1025526421410 +Thomas Bittner,Vagueness and Rough Location.,2002,6,GeoInformatica,2,db/journals/geoinformatica/geoinformatica6.html#BittnerS02,https://doi.org/10.1023/A:1015291525685 +Gerhard Gröger,How to Get 3-D for the Price of 2-D-Topology and Consistency of 3-D Urban GIS.,2005,9,GeoInformatica,2,db/journals/geoinformatica/geoinformatica9.html#GrogerP05,https://doi.org/10.1007/s10707-005-6431-2 +Claire Carpentier,Classifying Ambiguities in a Visual Spatial Language.,2002,6,GeoInformatica,3,db/journals/geoinformatica/geoinformatica6.html#CarpentierM02,https://doi.org/10.1023/A:1019770003896 +Maryam Fanaeepour,The CASE histogram: privacy-aware processing of trajectory data using aggregates.,2015,19,GeoInformatica,4,db/journals/geoinformatica/geoinformatica19.html#FanaeepourKTR15,https://doi.org/10.1007/s10707-015-0228-8 +David J. Abel,SMART: Towards Spatial Internet Marketplaces.,1999,3,GeoInformatica,2,db/journals/geoinformatica/geoinformatica3.html#AbelGTZ99,https://doi.org/10.1023/A:1009899610244 +Wassim Jaziri,A framework to model and manipulate constraints for over-constrained geographic applications.,2013,17,GeoInformatica,2,db/journals/geoinformatica/geoinformatica17.html#JaziriM13,https://doi.org/10.1007/s10707-012-0151-1 +Jun Chen,An Event-Based Approach to Spatio-Temporal Data Modeling in Land Subdivision Systems.,2000,4,GeoInformatica,4,db/journals/geoinformatica/geoinformatica4.html#ChenJ00,https://doi.org/10.1023/A:1026565929263 +Long Guo,Efficient continuous top-k spatial keyword queries on road networks.,2015,19,GeoInformatica,1,db/journals/geoinformatica/geoinformatica19.html#GuoSAT15,https://doi.org/10.1007/s10707-014-0204-8 +Oleg T. Balovnev,The Story of the GeoToolKit - An Object-Oriented Geodatabase Kernel System.,2004,8,GeoInformatica,1,db/journals/geoinformatica/geoinformatica8.html#BalovnevBBCMPSSST04,https://doi.org/10.1023/B:GEIN.0000007723.77851.8f +Kevin H. Jones,A Comparison of Two Approaches to Ranking Algorithms Used to Compute Hill Slopes.,1998,2,GeoInformatica,3,db/journals/geoinformatica/geoinformatica2.html#Jones98,https://doi.org/10.1023/A:1026472421094 +Iulian Sandu Popa,Spatio-temporal compression of trajectories in road networks.,2015,19,GeoInformatica,1,db/journals/geoinformatica/geoinformatica19.html#PopaZOK15,https://doi.org/10.1007/s10707-014-0208-4 +Arianna D'Ulizia,Moving GeoPQL: a pictorial language towards spatio-temporal queries.,2012,16,GeoInformatica,2,db/journals/geoinformatica/geoinformatica16.html#DUliziaFG12,https://doi.org/10.1007/s10707-011-0135-6 +Sujing Wang,A polygon-based clustering and analysis framework for mining spatial datasets.,2014,18,GeoInformatica,3,db/journals/geoinformatica/geoinformatica18.html#WangE14,https://doi.org/10.1007/s10707-013-0190-2 +He Ma,Large-scale geo-tagged video indexing and queries.,2014,18,GeoInformatica,4,db/journals/geoinformatica/geoinformatica18.html#MaAZK14,https://doi.org/10.1007/s10707-013-0199-6 +Helena Piccinini,Publishing deep web geographic data.,2014,18,GeoInformatica,4,db/journals/geoinformatica/geoinformatica18.html#PiccininiCLF14,https://doi.org/10.1007/s10707-013-0201-3 +Paolo Dabove,Close range photogrammetry with tablet technology in post-earthquake scenario: Sant'Agostino church in Amatrice.,2018,22,GeoInformatica,2,db/journals/geoinformatica/geoinformatica22.html#DabovePL18,https://doi.org/10.1007/s10707-018-0316-7 +Hang Yue,Spatio-temporal traffic video data archiving and retrieval system.,2016,20,GeoInformatica,1,db/journals/geoinformatica/geoinformatica20.html#YueRR16,https://doi.org/10.1007/s10707-015-0231-0 +Alan Saalfeld,Sorting Spatial Data for Sampling and Other Geographic Applications.,1998,2,GeoInformatica,1,db/journals/geoinformatica/geoinformatica2.html#Saalfeld98,https://doi.org/10.1023/A:1009741021887 +Laurent Spéry,A Spatio-Temporal Model for the Manipulation of Lineage Metadata.,2001,5,GeoInformatica,1,db/journals/geoinformatica/geoinformatica5.html#SperyCL01,https://doi.org/10.1023/A:1011459921552 +Wan D. Bae,Web data retrieval: solving spatial range queries using k-nearest neighbor searches.,2009,13,GeoInformatica,4,db/journals/geoinformatica/geoinformatica13.html#BaeAKNS09,https://doi.org/10.1007/s10707-008-0055-2 +An Liu 0002,Efficient task assignment in spatial crowdsourcing with worker and task privacy protection.,2018,22,GeoInformatica,2,db/journals/geoinformatica/geoinformatica22.html#LiuWSLZ18,https://doi.org/10.1007/s10707-017-0305-2 +Nesma Mohssen,Humaine: a ubiquitous smartphone-based user heading estimation for mobile computing systems.,2017,21,GeoInformatica,3,db/journals/geoinformatica/geoinformatica21.html#MohssenMAY17,https://doi.org/10.1007/s10707-017-0300-7 +Mohamed F. Mokbel,Analysis of Multi-Dimensional Space-Filling Curves.,2003,7,GeoInformatica,3,db/journals/geoinformatica/geoinformatica7.html#MokbelAK03,https://doi.org/10.1023/A:1025196714293 +Sophie Cockcroft,A Taxonomy of Spatial Data Integrity Constraints.,1997,1,GeoInformatica,4,db/journals/geoinformatica/geoinformatica1.html#Cockcroft97,https://doi.org/10.1023/A:1009754327059 +Min Deng,A Statistical Model for Directional Relations Between Spatial Objects.,2008,12,GeoInformatica,2,db/journals/geoinformatica/geoinformatica12.html#DengL08,https://doi.org/10.1007/s10707-007-0031-2 +Mauro Enrique de Souza Muñoz,openModeller: a generic approach to species' potential distribution modelling.,2011,15,GeoInformatica,1,db/journals/geoinformatica/geoinformatica15.html#MunozGSSBPCC11,https://doi.org/10.1007/s10707-009-0090-7 +Bo Huang 0001,Support vector machines for urban growth modeling.,2010,14,GeoInformatica,1,db/journals/geoinformatica/geoinformatica14.html#HuangXT10,https://doi.org/10.1007/s10707-009-0077-4 +Gregor Jossé,Knowledge extraction from crowdsourced data for the enrichment of road networks.,2017,21,GeoInformatica,4,db/journals/geoinformatica/geoinformatica21.html#JosseSZSSRPN17,https://doi.org/10.1007/s10707-017-0306-1 +Silvia E. Gordillo,Developing GIS Applications with Objects: A Design Patterns Approach.,1999,3,GeoInformatica,1,db/journals/geoinformatica/geoinformatica3.html#GordilloBMN99,https://doi.org/10.1023/A:1009809511770 +O. Fernández,Automated tools within workflows for 3D structural construction from surface and subsurface data.,2009,13,GeoInformatica,3,db/journals/geoinformatica/geoinformatica13.html#FernandezJAJRM09,https://doi.org/10.1007/s10707-008-0059-y +Yan Huang 0002,Mining Co-Location Patterns with Rare Events from Spatial Data Sets.,2006,10,GeoInformatica,3,db/journals/geoinformatica/geoinformatica10.html#HuangPX06,https://doi.org/10.1007/s10707-006-9827-8 +Frederico T. Fonseca,Bridging Ontologies and Conceptual Schemas in Geographic Information Integration.,2003,7,GeoInformatica,4,db/journals/geoinformatica/geoinformatica7.html#FonsecaDC03,https://doi.org/10.1023/A:1025573406389 +Erlend Tøssebro,Representing topological relationships for spatiotemporal objects.,2011,15,GeoInformatica,4,db/journals/geoinformatica/geoinformatica15.html#TossebroN11,https://doi.org/10.1007/s10707-010-0120-5 +Mu-Woong Lee,Spatial skyline queries: exact and approximation algorithms.,2011,15,GeoInformatica,4,db/journals/geoinformatica/geoinformatica15.html#LeeSAH11,https://doi.org/10.1007/s10707-010-0119-y +Ziheng Sun,Developing a web-based system for supervised classification of remote sensing images.,2016,20,GeoInformatica,4,db/journals/geoinformatica/geoinformatica20.html#SunFDYTB16,https://doi.org/10.1007/s10707-016-0252-3 +Ranit Gotsman,A Dilution-matching-encoding compaction of trajectories over road networks.,2015,19,GeoInformatica,2,db/journals/geoinformatica/geoinformatica19.html#GotsmanK15,https://doi.org/10.1007/s10707-014-0216-4 +Thomas Bittner,Vague distance predicates.,2017,21,GeoInformatica,2,db/journals/geoinformatica/geoinformatica21.html#Bittner17,https://doi.org/10.1007/s10707-016-0285-7 +Flavio Bonfatti,Editorial.,2000,4,GeoInformatica,3,db/journals/geoinformatica/geoinformatica4.html#Bonfatti00,https://doi.org/10.1023/A:1009836508848 +Hans-Peter Kriegel,Approximation-Based Similarity Search for 3-D Surface Segments.,1998,2,GeoInformatica,2,db/journals/geoinformatica/geoinformatica2.html#KriegelS98,https://doi.org/10.1023/A:1009760031965 +George Roumelis,New plane-sweep algorithms for distance-based join queries in spatial databases.,2016,20,GeoInformatica,4,db/journals/geoinformatica/geoinformatica20.html#RoumelisCVM16,https://doi.org/10.1007/s10707-016-0246-1 +Gangothri Rajaram,A novel computational knowledge-base framework for visualization and quantification of geospatial metadata in spatial data infrastructures.,2018,22,GeoInformatica,2,db/journals/geoinformatica/geoinformatica22.html#RajaramKVMK18,https://doi.org/10.1007/s10707-018-0317-6 +Min Deng,Multi-level Topological Relations Between Spatial Regions Based Upon Topological Invariants.,2007,11,GeoInformatica,2,db/journals/geoinformatica/geoinformatica11.html#DengCCL07,https://doi.org/10.1007/s10707-006-0004-x +Muneeba Raja,Towards pervasive geospatial affect perception.,2018,22,GeoInformatica,1,db/journals/geoinformatica/geoinformatica22.html#RajaEHKSI18,https://doi.org/10.1007/s10707-017-0294-1 +Jan-Henrik Haunert,Area Collapse and Road Centerlines based on Straight Skeletons.,2008,12,GeoInformatica,2,db/journals/geoinformatica/geoinformatica12.html#HaunertS08,https://doi.org/10.1007/s10707-007-0028-x +Myeong Hun Jeong,Decentralized querying of topological relations between regions monitored by a coordinate-free geosensor network.,2013,17,GeoInformatica,4,db/journals/geoinformatica/geoinformatica17.html#JeongD13,https://doi.org/10.1007/s10707-012-0174-7 +Reasey Praing,Efficient Implementation Techniques for Topological Predicates on Complex Spatial Objects.,2008,12,GeoInformatica,3,db/journals/geoinformatica/geoinformatica12.html#PraingS08,https://doi.org/10.1007/s10707-007-0035-y +Björn Gottfried,Interpreting motion events of pairs of moving objects.,2011,15,GeoInformatica,2,db/journals/geoinformatica/geoinformatica15.html#Gottfried11,https://doi.org/10.1007/s10707-009-0095-2 +Muhammad Umer,Opportunistic sampling-based query processing in wireless sensor networks.,2013,17,GeoInformatica,4,db/journals/geoinformatica/geoinformatica17.html#UmerTK13,https://doi.org/10.1007/s10707-012-0170-y +Mohamed F. Mokbel,Continuous Query Processing of Spatio-Temporal Data Streams in PLACE.,2005,9,GeoInformatica,4,db/journals/geoinformatica/geoinformatica9.html#MokbelXHA05,https://doi.org/10.1007/s10707-005-4576-7 +Norbert Weißenberg,An Ontology-Based Approach to Personalized Situation-Aware Mobile Service Supply.,2006,10,GeoInformatica,1,db/journals/geoinformatica/geoinformatica10.html#WeissenbergGV06,https://doi.org/10.1007/s10707-005-4886-9 +Mihai Maruseac,Privacy-preserving detection of anomalous phenomena in crowdsourced environmental sensing using fine-grained weighted voting.,2017,21,GeoInformatica,4,db/journals/geoinformatica/geoinformatica21.html#MaruseacGTS17,https://doi.org/10.1007/s10707-017-0304-3 +Yaron Kanza,Combined geo-social search: computing top-k join queries over incomplete information.,2018,22,GeoInformatica,3,db/journals/geoinformatica/geoinformatica22.html#KanzaS18,https://doi.org/10.1007/s10707-017-0297-y +Shu-Ching Chen,Introduction to the Special Issue.,2003,7,GeoInformatica,3,db/journals/geoinformatica/geoinformatica7.html#ChenV03,https://doi.org/10.1023/A:1025136530223 +Thiago L. Gomes,Efficiently computing the drainage network on massive terrains using external memory flooding process.,2015,19,GeoInformatica,4,db/journals/geoinformatica/geoinformatica19.html#GomesMAFP15,https://doi.org/10.1007/s10707-015-0225-y +Stephan Winter 0001,The elements of probabilistic time geography.,2011,15,GeoInformatica,3,db/journals/geoinformatica/geoinformatica15.html#WinterY11,https://doi.org/10.1007/s10707-010-0108-1 +Jundong Li,On discovering co-location patterns in datasets: a case study of pollutants and child cancers.,2016,20,GeoInformatica,4,db/journals/geoinformatica/geoinformatica20.html#LiAJZOW16,https://doi.org/10.1007/s10707-016-0254-1 +William M. Spears,Evolutionary search for understanding movement dynamics on mixed networks.,2013,17,GeoInformatica,2,db/journals/geoinformatica/geoinformatica17.html#SpearsP13,https://doi.org/10.1007/s10707-012-0155-x +Kokichi Sugihara,Computational method for the point cluster analysis on networks.,2011,15,GeoInformatica,1,db/journals/geoinformatica/geoinformatica15.html#SugiharaOS11,https://doi.org/10.1007/s10707-009-0092-5 +Robert Pless,Detecting Roads in Stabilized Video with the Spatio-Temporal Structure Tensor.,2006,10,GeoInformatica,1,db/journals/geoinformatica/geoinformatica10.html#Pless06,https://doi.org/10.1007/s10707-005-4885-x +Yonglong Xu,Development of Transport Telematics in Europe.,2000,4,GeoInformatica,2,db/journals/geoinformatica/geoinformatica4.html#Xu00,https://doi.org/10.1023/A:1009876223822 +Stefan Leyk,Colors of the past: color image segmentation in historical topographic maps based on homogeneity.,2010,14,GeoInformatica,1,db/journals/geoinformatica/geoinformatica14.html#LeykB10,https://doi.org/10.1007/s10707-008-0074-z +Chengyang Zhang,Cloaking locations for anonymous location based services: a hybrid approach.,2009,13,GeoInformatica,2,db/journals/geoinformatica/geoinformatica13.html#ZhangH09,https://doi.org/10.1007/s10707-008-0047-2 +Balaji Palanisamy,Effective mix-zone anonymization techniques for mobile travelers.,2014,18,GeoInformatica,1,db/journals/geoinformatica/geoinformatica18.html#PalanisamyL14,https://doi.org/10.1007/s10707-013-0194-y +Fabio Valdés,Index-supported pattern matching on tuples of time-dependent values.,2017,21,GeoInformatica,3,db/journals/geoinformatica/geoinformatica21.html#ValdesG17,https://doi.org/10.1007/s10707-016-0286-6 +Mohamed Ally Peerbocus,A System for Change Documentation Based on a Spatiotemporal Database.,2004,8,GeoInformatica,2,db/journals/geoinformatica/geoinformatica8.html#PeerbocusMJV04,https://doi.org/10.1023/B:GEIN.0000017747.96815.70 +Nikos Mamoulis,Special section on spatial and temporal databases.,2011,15,GeoInformatica,4,db/journals/geoinformatica/geoinformatica15.html#MamoulisS11,https://doi.org/10.1007/s10707-011-0139-2 +Flavio Bonfatti,Requirement Analysis for the Definition of Reusable Spatial Objects.,1999,3,GeoInformatica,4,db/journals/geoinformatica/geoinformatica3.html#BonfattiMM99,https://doi.org/10.1023/A:1009880629913 +Shashi Shekhar,GeoInformatica welcomes a new co-editor-in-chief.,2016,20,GeoInformatica,4,db/journals/geoinformatica/geoinformatica20.html#ShekharB16,https://doi.org/10.1007/s10707-016-0268-8 +Eoin Mac Aoidh,Towards dynamic behavior-based profiling for reducing spatial information overload in map browsing activity.,2012,16,GeoInformatica,3,db/journals/geoinformatica/geoinformatica16.html#AoidhBW12,https://doi.org/10.1007/s10707-011-0137-4 +Lei Wang,Computer-based synthetic data to assess the tree delineation algorithm from airborne LiDAR survey.,2013,17,GeoInformatica,1,db/journals/geoinformatica/geoinformatica17.html#WangBLCCTXPG13,https://doi.org/10.1007/s10707-011-0148-1 +Monika Sester,Linking Objects of Different Spatial Data Sets by Integration and Aggregation.,1998,2,GeoInformatica,4,db/journals/geoinformatica/geoinformatica2.html#SesterAW98,https://doi.org/10.1023/A:1009705404707 +Roy Levin,TARS: traffic-aware route search.,2014,18,GeoInformatica,3,db/journals/geoinformatica/geoinformatica18.html#LevinK14,https://doi.org/10.1007/s10707-013-0185-z +Farnoush Banaei Kashani,Efficient maximal reverse skyline query processing.,2017,21,GeoInformatica,3,db/journals/geoinformatica/geoinformatica21.html#KashaniGMK17,https://doi.org/10.1007/s10707-017-0302-5 +Peter F. Fisher,Higher Order Vagueness in Geographical Information: Empirical Geographical Population of Type n Fuzzy Sets.,2007,11,GeoInformatica,3,db/journals/geoinformatica/geoinformatica11.html#FisherCW07,https://doi.org/10.1007/s10707-006-0009-5 +Yaqiong Liu,Constrained energy-efficient routing in time-aware road networks.,2017,21,GeoInformatica,1,db/journals/geoinformatica/geoinformatica21.html#LiuSS17,https://doi.org/10.1007/s10707-016-0274-x +Kostas Patroumpas,Online event recognition from moving vessel trajectories.,2017,21,GeoInformatica,2,db/journals/geoinformatica/geoinformatica21.html#PatroumpasAAVPT17,https://doi.org/10.1007/s10707-016-0266-x +Pei Li,Mining boundary effects in areally referenced spatial data using the Bayesian information criterion.,2011,15,GeoInformatica,3,db/journals/geoinformatica/geoinformatica15.html#LiBM11,https://doi.org/10.1007/s10707-010-0109-0 +Mark McKenney,Operations to support temporal coverage aggregates over moving regions.,2017,21,GeoInformatica,2,db/journals/geoinformatica/geoinformatica21.html#McKenneyFBM17,https://doi.org/10.1007/s10707-016-0257-y +Vania Bogorny,Semantic-based pruning of redundant and uninteresting frequent geographic patterns.,2010,14,GeoInformatica,2,db/journals/geoinformatica/geoinformatica14.html#BogornyVA10,https://doi.org/10.1007/s10707-009-0082-7 +Hicham G. Elmongui,Continuous aggregate nearest neighbor queries.,2013,17,GeoInformatica,1,db/journals/geoinformatica/geoinformatica17.html#ElmonguiMA13,https://doi.org/10.1007/s10707-011-0149-0 +Raimundo F. Dos Santos,The big data of violent events: algorithms for association analysis using spatio-temporal storytelling.,2016,20,GeoInformatica,4,db/journals/geoinformatica/geoinformatica20.html#SantosBSCLR16,https://doi.org/10.1007/s10707-016-0247-0 +Thomas Brinkhoff,A Framework for Generating Network-Based Moving Objects.,2002,6,GeoInformatica,2,db/journals/geoinformatica/geoinformatica6.html#Brinkhoff02,https://doi.org/10.1023/A:1015231126594 +Alexandros Efentakis,Hub Labels on the database for large-scale graphs with the COLD framework.,2017,21,GeoInformatica,4,db/journals/geoinformatica/geoinformatica21.html#EfentakisEP17,https://doi.org/10.1007/s10707-016-0287-5 +Jianqiu Xu,GMOBench: Benchmarking generic moving objects.,2015,19,GeoInformatica,2,db/journals/geoinformatica/geoinformatica19.html#XuGQ15,https://doi.org/10.1007/s10707-014-0211-9 +Petko Bakalov,Editing and versioning for high performance network models in a multiuser environment.,2011,15,GeoInformatica,4,db/journals/geoinformatica/geoinformatica15.html#BakalovHHMT11,https://doi.org/10.1007/s10707-011-0126-7 +Wassim Jaziri,A Multi-Agent Model and Tabu Search Optimization to Manage Agricultural Territories.,2006,10,GeoInformatica,3,db/journals/geoinformatica/geoinformatica10.html#JaziriP06,https://doi.org/10.1007/s10707-006-9831-z +Mohammad R. Kolahdouzan,Alternative Solutions for Continuous K Nearest Neighbor Queries in Spatial Network Databases.,2005,9,GeoInformatica,4,db/journals/geoinformatica/geoinformatica9.html#KolahdouzanS05,https://doi.org/10.1007/s10707-005-4575-8 +Padraig Corcoran,Interactive cartographic route descriptions.,2014,18,GeoInformatica,1,db/journals/geoinformatica/geoinformatica18.html#CorcoranMB14,https://doi.org/10.1007/s10707-013-0175-1 +Jun Chen,Expression and Visualization of Cloverleaf Junction in a 3-Dimensional City Model.,2000,4,GeoInformatica,4,db/journals/geoinformatica/geoinformatica4.html#ChenSZ00,https://doi.org/10.1023/A:1026513912425 +Theodoros Tzouramanis,On the Generation of Time-Evolving Regional Data.,2002,6,GeoInformatica,3,db/journals/geoinformatica/geoinformatica6.html#TzouramanisVM02,https://doi.org/10.1023/A:1019705618917 +Luis Bermudez,Metadata Community Profiles for the Semantic Web.,2006,10,GeoInformatica,2,db/journals/geoinformatica/geoinformatica10.html#BermudezP06,https://doi.org/10.1007/s10707-006-7577-2 +Maria Cobb,A Rule-based Approach for the Conflation of Attributed Vector Data.,1998,2,GeoInformatica,1,db/journals/geoinformatica/geoinformatica2.html#CobbCFPSM98,https://doi.org/10.1023/A:1009788905049 +Shashi Shekhar,An Object Model of Direction and Its Implications.,1999,3,GeoInformatica,4,db/journals/geoinformatica/geoinformatica3.html#ShekharLC99,https://doi.org/10.1023/A:1009888814892 +Thiago Luís Lopes Siqueira,The SB-index and the HSB-index: efficient indices for spatial data warehouses.,2012,16,GeoInformatica,1,db/journals/geoinformatica/geoinformatica16.html#SiqueiraCTC12,https://doi.org/10.1007/s10707-011-0128-5 +Florian Heinz,Robust high-quality interpolation of regions to moving regions.,2016,20,GeoInformatica,3,db/journals/geoinformatica/geoinformatica20.html#HeinzG16,https://doi.org/10.1007/s10707-015-0240-z +Olivier Bonin,Digital Terrain Model Computation from Contour Lines: How to Derive Quality Information from Artifact Analysis.,2005,9,GeoInformatica,3,db/journals/geoinformatica/geoinformatica9.html#BoninR05,https://doi.org/10.1007/s10707-005-1284-2 +Shashi Shekhar,Editorial.,2003,7,GeoInformatica,1,db/journals/geoinformatica/geoinformatica7.html#Shekhar03,https://doi.org/10.1023/A:1022815109944 +Matt Duckham,Imprecise Navigation.,2003,7,GeoInformatica,2,db/journals/geoinformatica/geoinformatica7.html#DuckhamKW03,https://doi.org/10.1023/A:1023426607262 +Shuyao Qi,Snapshot and continuous points-based trajectory search.,2017,21,GeoInformatica,4,db/journals/geoinformatica/geoinformatica21.html#QiSBM17,https://doi.org/10.1007/s10707-016-0267-9 +Tomasz F. Stepinski,Controlling patterns of geospatial phenomena.,2011,15,GeoInformatica,3,db/journals/geoinformatica/geoinformatica15.html#StepinskiDE11,https://doi.org/10.1007/s10707-010-0107-2 +Boaz Ben-Moshe,Approximating the Visible Region of a Point on a Terrain.,2008,12,GeoInformatica,1,db/journals/geoinformatica/geoinformatica12.html#Ben-MosheCK08,https://doi.org/10.1007/s10707-006-0017-5 +Peter Baumann,The OGC web coverage processing service (WCPS) standard.,2010,14,GeoInformatica,4,db/journals/geoinformatica/geoinformatica14.html#Baumann10,https://doi.org/10.1007/s10707-009-0087-2 +Mei-Po Kwan,GABRIEL: Gis Activity-Based tRavel sImuLator. Activity Scheduling in the Presence of Real-Time Information.,2006,10,GeoInformatica,4,db/journals/geoinformatica/geoinformatica10.html#KwanC06,https://doi.org/10.1007/s10707-006-0343-7 +George Grekousis,A fuzzy index for detecting spatiotemporal outliers.,2012,16,GeoInformatica,3,db/journals/geoinformatica/geoinformatica16.html#GrekousisF12,https://doi.org/10.1007/s10707-011-0145-4 +Tao Cheng 0004,Guest editorial: Integrated spatio-temporal analysis and data mining.,2012,16,GeoInformatica,4,db/journals/geoinformatica/geoinformatica16.html#Cheng12,https://doi.org/10.1007/s10707-012-0167-6 +Silvania Avelar,Convergence Analysis and Quality Criteria for an Iterative Schematization of Networks.,2007,11,GeoInformatica,4,db/journals/geoinformatica/geoinformatica11.html#Avelar07,https://doi.org/10.1007/s10707-007-0018-z +Xiaofang Zhou,Data Partitioning for Parallel Spatial Join Processing.,1998,2,GeoInformatica,2,db/journals/geoinformatica/geoinformatica2.html#ZhouAT98,https://doi.org/10.1023/A:1009755931056 +Moustafa Youssef,Guest editorial: mobile computing support for geospatial systems.,2018,22,GeoInformatica,1,db/journals/geoinformatica/geoinformatica22.html#YoussefNX18,https://doi.org/10.1007/s10707-017-0292-3 +Pui Hang Li,Discovering historic traffic-tolerant paths in road networks.,2017,21,GeoInformatica,1,db/journals/geoinformatica/geoinformatica21.html#LiYM17,https://doi.org/10.1007/s10707-016-0265-y +René F. Reitsma,Weight-proportional Space Partitioning Using Adaptive Voronoi Diagrams.,2007,11,GeoInformatica,3,db/journals/geoinformatica/geoinformatica11.html#ReitsmaTM07,https://doi.org/10.1007/s10707-006-0006-8 +Yong-Ju Lee,The DR-tree: A Main Memory Data Structure for Complex Multi-dimensional Objects.,2001,5,GeoInformatica,2,db/journals/geoinformatica/geoinformatica5.html#LeeC01,https://doi.org/10.1023/A:1011494316133 +Harvey J. Miller,GIS Software for Measuring Space-Time Accessibility in Transportation Planning and Analysis.,2000,4,GeoInformatica,2,db/journals/geoinformatica/geoinformatica4.html#MillerW00,https://doi.org/10.1023/A:1009820006075 +David Pullar,MapScript: A Map Algebra Programming Language Incorporating Neighborhood Analysis.,2001,5,GeoInformatica,2,db/journals/geoinformatica/geoinformatica5.html#Pullar01,https://doi.org/10.1023/A:1011438215225 +Ali Khodaei,SKIF-P: a point-based indexing and ranking of web documents for spatial-keyword search.,2012,16,GeoInformatica,3,db/journals/geoinformatica/geoinformatica16.html#KhodaeiSL12,https://doi.org/10.1007/s10707-011-0142-7 +Mahmuda Ahmed,A comparison and evaluation of map construction algorithms using vehicle tracking data.,2015,19,GeoInformatica,3,db/journals/geoinformatica/geoinformatica19.html#AhmedKPW15,https://doi.org/10.1007/s10707-014-0222-6 +Matthew Yick Cheung Pang,Development of a Process-Based Model for Dynamic Interaction in Spatio-Temporal GIS.,2002,6,GeoInformatica,4,db/journals/geoinformatica/geoinformatica6.html#PangS02,https://doi.org/10.1023/A:1020876609236 +Patrick Bergougnoux,Editorial.,2000,4,GeoInformatica,1,db/journals/geoinformatica/geoinformatica4.html#Bergougnoux00,https://doi.org/10.1023/A:1009852607633 +Dechang Chen,On Detecting Spatial Outliers.,2008,12,GeoInformatica,4,db/journals/geoinformatica/geoinformatica12.html#ChenLKC08,https://doi.org/10.1007/s10707-007-0038-8 +Lei Fu,Techniques for Computing Fitness of Use (FoU) for Time Series Datasets with Applications in the Geospatial Domain.,2008,12,GeoInformatica,1,db/journals/geoinformatica/geoinformatica12.html#FuSS08,https://doi.org/10.1007/s10707-007-0025-0 +Houtan Shirani-Mehr,Users plan optimization for participatory urban texture documentation.,2013,17,GeoInformatica,1,db/journals/geoinformatica/geoinformatica17.html#Shirani-MehrKS13,https://doi.org/10.1007/s10707-012-0166-7 +Tomas Bayer,Estimation of an unknown cartographic projection and its parameters from the map.,2014,18,GeoInformatica,3,db/journals/geoinformatica/geoinformatica18.html#Bayer14,https://doi.org/10.1007/s10707-013-0200-4 +Jean-Marie Le Yaouanc,A semantic and language-based representation of an environmental scene.,2010,14,GeoInformatica,3,db/journals/geoinformatica/geoinformatica14.html#YaouancSC10,https://doi.org/10.1007/s10707-010-0103-6 +Ickjai Lee,Fast Cluster Polygonization and its Applications in Data-Rich Environments.,2006,10,GeoInformatica,4,db/journals/geoinformatica/geoinformatica10.html#LeeE06,https://doi.org/10.1007/s10707-006-0340-x +Juliano Lopes de Oliveira,An Environment for Modeling and Design of Geographic Applications.,1997,1,GeoInformatica,1,db/journals/geoinformatica/geoinformatica1.html#OliveiraPM97,https://doi.org/10.1023/A:1009704100446 +Jilin Hu,Enabling time-dependent uncertain eco-weights for road networks.,2017,21,GeoInformatica,1,db/journals/geoinformatica/geoinformatica21.html#HuYJM17,https://doi.org/10.1007/s10707-016-0272-z +Alexander Klippel,Urban granularities - a data structure for cognitively ergonomic route directions.,2009,13,GeoInformatica,2,db/journals/geoinformatica/geoinformatica13.html#KlippelHRW09,https://doi.org/10.1007/s10707-008-0051-6 +Eric Hsueh-Chan Lu,Integrating tourist packages and tourist attractions for personalized trip planning based on travel constraints.,2016,20,GeoInformatica,4,db/journals/geoinformatica/geoinformatica20.html#LuFT16,https://doi.org/10.1007/s10707-016-0262-1 +Ranga Raju Vatsavai,Guest editorial: big spatial data.,2016,20,GeoInformatica,4,db/journals/geoinformatica/geoinformatica20.html#VatsavaiC16,https://doi.org/10.1007/s10707-016-0269-7 +Jean-Marc Saglio,Oporto: A Realistic Scenario Generator for Moving Objects.,2001,5,GeoInformatica,1,db/journals/geoinformatica/geoinformatica5.html#SaglioM01,https://doi.org/10.1023/A:1011412005623 +Thomas Bernecker,Spatial inverse query processing.,2013,17,GeoInformatica,3,db/journals/geoinformatica/geoinformatica17.html#BerneckerEKMRZZ13,https://doi.org/10.1007/s10707-012-0162-y +Min-Joong Lee,The direction-constrained k nearest neighbor query - Dealing with spatio-directional objects.,2016,20,GeoInformatica,3,db/journals/geoinformatica/geoinformatica20.html#LeeCKPCC16,https://doi.org/10.1007/s10707-016-0245-2 +Yuan-Ko Huang,Continuous K-Nearest Neighbor Query for Moving Objects with Uncertain Velocity.,2009,13,GeoInformatica,1,db/journals/geoinformatica/geoinformatica13.html#HuangCL09,https://doi.org/10.1007/s10707-007-0041-0 +Klaus Arthur Schmid,Uncertain Voronoi cell computation based on space decomposition.,2017,21,GeoInformatica,4,db/journals/geoinformatica/geoinformatica21.html#SchmidZERC17,https://doi.org/10.1007/s10707-017-0293-2 +Jixiang Jiang,Qualitative change detection using sensor networks based on connectivity information.,2011,15,GeoInformatica,2,db/journals/geoinformatica/geoinformatica15.html#JiangWN11,https://doi.org/10.1007/s10707-009-0097-0 +Bisheng Yang,Variable-resolution Compression of Vector Data.,2008,12,GeoInformatica,3,db/journals/geoinformatica/geoinformatica12.html#YangPW08,https://doi.org/10.1007/s10707-007-0036-x +Igor Timko,A probabilistic data model and algebra for location-based data warehouses and their implementation.,2014,18,GeoInformatica,2,db/journals/geoinformatica/geoinformatica18.html#TimkoDP14,https://doi.org/10.1007/s10707-013-0180-4 +Raquel Viaña,Multi-VMap: A Multi-Scale Model for Vector Maps.,2006,10,GeoInformatica,3,db/journals/geoinformatica/geoinformatica10.html#VianaMPR06,https://doi.org/10.1007/s10707-006-9832-y +Friso Penninga,Construction of the Planar Partition Postal Code Map Based on Cadastral Registration.,2005,9,GeoInformatica,2,db/journals/geoinformatica/geoinformatica9.html#PenningaVQO05,https://doi.org/10.1007/s10707-005-6430-3 +Nicholas Chrisman,Editorial: Object Dynamics.,1999,3,GeoInformatica,4,db/journals/geoinformatica/geoinformatica3.html#Chrisman99,https://doi.org/10.1023/A:1009857529005 +Michela Bertolotto,Progressive Transmission of Vector Map Data over the World Wide Web.,2001,5,GeoInformatica,4,db/journals/geoinformatica/geoinformatica5.html#BertolottoE01,https://doi.org/10.1023/A:1012745819426 +Jianing Li,Skyline for geo-textual data.,2016,20,GeoInformatica,3,db/journals/geoinformatica/geoinformatica20.html#LiWLG16,https://doi.org/10.1007/s10707-015-0243-9 +Yao-Yi Chiang,Recognizing text in raster maps.,2015,19,GeoInformatica,1,db/journals/geoinformatica/geoinformatica19.html#ChiangK15,https://doi.org/10.1007/s10707-014-0203-9 +Francisco García-García 0001,Efficient large-scale distance-based join queries in spatialhadoop.,2018,22,GeoInformatica,2,db/journals/geoinformatica/geoinformatica22.html#Garcia-GarciaCI18,https://doi.org/10.1007/s10707-017-0309-y +Bin Jiang,A Structural Approach to the Model Generalization of an Urban Street Network.,2004,8,GeoInformatica,2,db/journals/geoinformatica/geoinformatica8.html#JiangC04,https://doi.org/10.1023/B:GEIN.0000017746.44824.70 +Patrick Bergougnoux,Editorial.,2002,6,GeoInformatica,1,db/journals/geoinformatica/geoinformatica6.html#Bergougnoux02,https://doi.org/10.1023/A:1013784529930 +Cui Yu,High-dimensional kNN joins with incremental updates.,2010,14,GeoInformatica,1,db/journals/geoinformatica/geoinformatica14.html#YuZHX10,https://doi.org/10.1007/s10707-009-0076-5 +Apostolos Papadopoulos,Nearest Neighbor Queries in Shared-Nothing Environments.,1997,1,GeoInformatica,4,db/journals/geoinformatica/geoinformatica1.html#PapadopoulosM97,https://doi.org/10.1023/A:1009758427967 +Roger Moussalli,High performance FPGA and GPU complex pattern matching over spatio-temporal streams.,2015,19,GeoInformatica,2,db/journals/geoinformatica/geoinformatica19.html#MoussalliAVNT15,https://doi.org/10.1007/s10707-014-0217-3 +Marcus V. A. Andrade,Efficient viewshed computation on terrain in external memory.,2011,15,GeoInformatica,2,db/journals/geoinformatica/geoinformatica15.html#AndradeMMFC11,https://doi.org/10.1007/s10707-009-0100-9 +Leticia I. Gómez,A data model and query language for spatio-temporal decision support.,2011,15,GeoInformatica,3,db/journals/geoinformatica/geoinformatica15.html#GomezKV11,https://doi.org/10.1007/s10707-010-0110-7 +Stéphane Grumbach,Spatio-Temporal Data Handling with Constraints.,2001,5,GeoInformatica,1,db/journals/geoinformatica/geoinformatica5.html#GrumbachRS01,https://doi.org/10.1023/A:1011464022461 +Haowen Yan,A Quantitative Description Model for Direction Relations Based on Direction Groups.,2006,10,GeoInformatica,2,db/journals/geoinformatica/geoinformatica10.html#YanCLG06,https://doi.org/10.1007/s10707-006-7578-1 +Abdeltawab M. Hendawi,Panda and#8727*: A generic and scalable framework for predictive spatio-temporal queries.,2017,21,GeoInformatica,2,db/journals/geoinformatica/geoinformatica21.html#HendawiAM17,https://doi.org/10.1007/s10707-016-0284-8 +Alexander Köninger,3d-Gis for Urban Purposes.,1998,2,GeoInformatica,1,db/journals/geoinformatica/geoinformatica2.html#KoningerB98,https://doi.org/10.1023/A:1009797106866 +T. Hong,Using spatial data support for reducing uncertainty in geospatial applications.,2014,18,GeoInformatica,1,db/journals/geoinformatica/geoinformatica18.html#HongHSS14,https://doi.org/10.1007/s10707-013-0177-z +Tycho Strijk,Practical Extensions of Point Labeling in the Slider Model.,2002,6,GeoInformatica,2,db/journals/geoinformatica/geoinformatica6.html#StrijkK02,https://doi.org/10.1023/A:1015202410664 +Michel Scholl,Editorial.,1998,2,GeoInformatica,2,db/journals/geoinformatica/geoinformatica2.html#Scholl98,https://doi.org/10.1023/A:1009718314218 +Michael F. Goodchild,GIS and Transportation: Status and Challenges.,2000,4,GeoInformatica,2,db/journals/geoinformatica/geoinformatica4.html#Goodchild00,https://doi.org/10.1023/A:1009867905167 +Bin Lin 0009,One Way Distance: For Shape Based Similarity Search of Moving Object Trajectories.,2008,12,GeoInformatica,2,db/journals/geoinformatica/geoinformatica12.html#LinS08,https://doi.org/10.1007/s10707-007-0027-y +Diansheng Guo,ICEAGE: Interactive Clustering and Exploration of Large and High-Dimensional Geodata.,2003,7,GeoInformatica,3,db/journals/geoinformatica/geoinformatica7.html#GuoPG03,https://doi.org/10.1023/A:1025101015202 +John F. Roddick,Beyond Schema Versioning: A Flexible Model for Spatio-Temporal Schema Selection.,2001,5,GeoInformatica,1,db/journals/geoinformatica/geoinformatica5.html#RoddickGMS01,https://doi.org/10.1023/A:1011407904714 +J. Mark Ware,Conflict Reduction in Map Generalization Using Iterative Improvement.,1998,2,GeoInformatica,4,db/journals/geoinformatica/geoinformatica2.html#WareJ98,https://doi.org/10.1023/A:1009713606524 +Dan Lin 0001,Indexing Fast Moving Objects for kNN Queries Based on Nearest Landmarks.,2006,10,GeoInformatica,4,db/journals/geoinformatica/geoinformatica10.html#LinZZ06,https://doi.org/10.1007/s10707-006-0341-9 +Alexandros Nanopoulos,Performance Evaluation of Lazy Deletion Methods in R-trees.,2003,7,GeoInformatica,4,db/journals/geoinformatica/geoinformatica7.html#NanopoulosVM03,https://doi.org/10.1023/A:1025521422319 +André Henn,Automatic classification of building types in 3D city models - Using SVMs for semantic enrichment of low resolution building data.,2012,16,GeoInformatica,2,db/journals/geoinformatica/geoinformatica16.html#HennRGP12,https://doi.org/10.1007/s10707-011-0131-x +Francisco A. Godoy,Defining and Comparing Content Measures of Topological Relations.,2004,8,GeoInformatica,4,db/journals/geoinformatica/geoinformatica8.html#GodoyR04,https://doi.org/10.1023/B:GEIN.0000040831.81391.1d +Joachim Gudmundsson,Efficient Detection of Patterns in 2D Trajectories of Moving Points.,2007,11,GeoInformatica,2,db/journals/geoinformatica/geoinformatica11.html#GudmundssonKS07,https://doi.org/10.1007/s10707-006-0002-z +Ruihong Huang,A Schedule-based Pathfinding Algorithm for Transit Networks Using Pattern First Search.,2007,11,GeoInformatica,2,db/journals/geoinformatica/geoinformatica11.html#Huang07,https://doi.org/10.1007/s10707-006-0011-y +João Pedro Cerveira Cordeiro,Yet Another Map Algebra.,2009,13,GeoInformatica,2,db/journals/geoinformatica/geoinformatica13.html#CordeiroCFA09,https://doi.org/10.1007/s10707-008-0045-4 +Mahmoud Attia Sakr,Spatiotemporal pattern queries.,2011,15,GeoInformatica,3,db/journals/geoinformatica/geoinformatica15.html#SakrG11,https://doi.org/10.1007/s10707-010-0114-3 +Donna Peuquet,Making Space for Time: Issues in Space-Time Data Representation.,2001,5,GeoInformatica,1,db/journals/geoinformatica/geoinformatica5.html#Peuquet01,https://doi.org/10.1023/A:1011455820644 +Scot Anderson,Efficient MaxCount and threshold operators of moving objects.,2009,13,GeoInformatica,4,db/journals/geoinformatica/geoinformatica13.html#AndersonR09,https://doi.org/10.1007/s10707-008-0050-7 +Shih-Lung Shaw,Handling Disaggregate Spatiotemporal Travel Data in GIS.,2000,4,GeoInformatica,2,db/journals/geoinformatica/geoinformatica4.html#ShawW00,https://doi.org/10.1023/A:1009824122914 +Thomas Gerstner,Multiresolution Compression and Visualization of Global Topographic Data.,2003,7,GeoInformatica,1,db/journals/geoinformatica/geoinformatica7.html#Gerstner03,https://doi.org/10.1023/A:1022818126783 +Gholamhosein Sheikholeslami,A Multi-Resolution Content-Based Retrieval Approach for Geographic Images.,1999,3,GeoInformatica,2,db/journals/geoinformatica/geoinformatica3.html#SheikholeslamiZB99,https://doi.org/10.1023/A:1009859912970 +Cyrus Shahabi,A Road Network Embedding Technique for K-Nearest Neighbor Search in Moving Object Databases.,2003,7,GeoInformatica,3,db/journals/geoinformatica/geoinformatica7.html#ShahabiKS03,https://doi.org/10.1023/A:1025153016110 +Jonas Buddeberg,Interactive shearing for terrain visualization: an expert study.,2017,21,GeoInformatica,3,db/journals/geoinformatica/geoinformatica21.html#BuddebergJW17,https://doi.org/10.1007/s10707-016-0283-9 +Mauro De Donatis,Preface: Geology and information technology.,2009,13,GeoInformatica,3,db/journals/geoinformatica/geoinformatica13.html#DonatisD09,https://doi.org/10.1007/s10707-009-0080-9 +Martin Treiblmayr,Integrating GI with non-GI services - showcasing interoperability in a heterogeneous service-oriented architecture.,2012,16,GeoInformatica,1,db/journals/geoinformatica/geoinformatica16.html#TreiblmayrSKL12,https://doi.org/10.1007/s10707-011-0132-9 +Michael Lutz 0001,Ontology-Based Descriptions for Semantic Discovery and Composition of Geoprocessing Services.,2007,11,GeoInformatica,1,db/journals/geoinformatica/geoinformatica11.html#Lutz07,https://doi.org/10.1007/s10707-006-7635-9 +Nobuhisa Komatsu,Automatic evacuation guiding scheme based on implicit interactions between evacuees and their mobile nodes.,2018,22,GeoInformatica,1,db/journals/geoinformatica/geoinformatica22.html#KomatsuSKK18,https://doi.org/10.1007/s10707-016-0270-1 +Clodoveu A. Davis Jr.,Assessing the Certainty of Locations Produced by an Address Geocoding System.,2007,11,GeoInformatica,1,db/journals/geoinformatica/geoinformatica11.html#DavisF07,https://doi.org/10.1007/s10707-006-0015-7 +Paolo Magliulo,Comparison of GIS-based methodologies for the landslide susceptibility assessment.,2009,13,GeoInformatica,3,db/journals/geoinformatica/geoinformatica13.html#MagliuloLR09,https://doi.org/10.1007/s10707-008-0063-2 +Eleni Tomai,"From ""Onto-GeoNoesis"" to ""Onto-Genesis"": The Design of Geographic Ontologies.",2004,8,GeoInformatica,3,db/journals/geoinformatica/geoinformatica8.html#TomaiK04,https://doi.org/10.1023/B:GEIN.0000034822.47211.4a +Judith Gelernter,An algorithm for local geoparsing of microtext.,2013,17,GeoInformatica,4,db/journals/geoinformatica/geoinformatica17.html#GelernterB13,https://doi.org/10.1007/s10707-012-0173-8 +Daniel Fitzner,Functional description of geoprocessing services as conjunctive datalog queries.,2011,15,GeoInformatica,1,db/journals/geoinformatica/geoinformatica15.html#FitznerHK11,https://doi.org/10.1007/s10707-009-0093-4 +Belko Abdoul Aziz Diallo,Context-based mobile GeoBI: enhancing business analysis with contextual metrics/statistics and context-based reasoning.,2014,18,GeoInformatica,2,db/journals/geoinformatica/geoinformatica18.html#DialloBHD14,https://doi.org/10.1007/s10707-013-0187-x +Sen Zhao,Popularity-aware collective keyword queries in road networks.,2017,21,GeoInformatica,3,db/journals/geoinformatica/geoinformatica21.html#ZhaoCSS17,https://doi.org/10.1007/s10707-017-0299-9 +Feihu Zhang,Cooperative vehicle-infrastructure localization based on the symmetric measurement equation filter.,2016,20,GeoInformatica,2,db/journals/geoinformatica/geoinformatica20.html#ZhangHGCK16,https://doi.org/10.1007/s10707-016-0244-3 +Ujjwal Maulik,Efficient parallel algorithm for pixel classification in remote sensing imagery.,2012,16,GeoInformatica,2,db/journals/geoinformatica/geoinformatica16.html#MaulikS12,https://doi.org/10.1007/s10707-011-0136-5 +Hui Zhang 0016,Guest editorial: special issue on spatial computing in emergency management.,2018,22,GeoInformatica,2,db/journals/geoinformatica/geoinformatica22.html#ZhangHTGL18,https://doi.org/10.1007/s10707-018-0321-x +Cyril De Runz,Reconstruct street network from imprecise excavation data using fuzzy Hough transforms.,2014,18,GeoInformatica,2,db/journals/geoinformatica/geoinformatica18.html#RunzDPH14,https://doi.org/10.1007/s10707-013-0183-1 +Viorica Botea,PIST: An Efficient and Practical Indexing Technique for Historical Spatio-Temporal Point Data.,2008,12,GeoInformatica,2,db/journals/geoinformatica/geoinformatica12.html#BoteaMNS08,https://doi.org/10.1007/s10707-007-0030-3 +Dirk Burghardt,Controlled Line Smoothing by Snakes.,2005,9,GeoInformatica,3,db/journals/geoinformatica/geoinformatica9.html#Burghardt05,https://doi.org/10.1007/s10707-005-1283-3 +Xiaoye Liu,LiDAR-Derived High Quality Ground Control Information and DEM for Image Orthorectification.,2007,11,GeoInformatica,1,db/journals/geoinformatica/geoinformatica11.html#LiuZPC07,https://doi.org/10.1007/s10707-006-0005-9 +Haiquan Chen,The partial sequenced route query with traveling rules in road networks.,2011,15,GeoInformatica,3,db/journals/geoinformatica/geoinformatica15.html#ChenKSZ11,https://doi.org/10.1007/s10707-010-0115-2 +Lars Harrie,Simultaneous Graphic Generalization of Vector Data Sets.,2002,6,GeoInformatica,3,db/journals/geoinformatica/geoinformatica6.html#HarrieS02,https://doi.org/10.1023/A:1019765902987 +Peng Yue,Automatic geospatial metadata generation for earth science virtual data products.,2012,16,GeoInformatica,1,db/journals/geoinformatica/geoinformatica16.html#YueGDH12,https://doi.org/10.1007/s10707-011-0123-x +Montserrat Bóo,Unified Hybrid Terrain Representation Based on Local Convexifications.,2007,11,GeoInformatica,3,db/journals/geoinformatica/geoinformatica11.html#BooAD07,https://doi.org/10.1007/s10707-006-0003-y +Kyu-Young Whang,Tightly-coupled spatial database features in the Odysseus/OpenGIS DBMS for high-performance.,2010,14,GeoInformatica,4,db/journals/geoinformatica/geoinformatica14.html#WhangLKLLHK10,https://doi.org/10.1007/s10707-009-0086-3 +Jiapeng Li,FTS: a feature-preserving trajectory synthesis model.,2018,22,GeoInformatica,1,db/journals/geoinformatica/geoinformatica22.html#LiCLLZ18,https://doi.org/10.1007/s10707-017-0301-6 +Luís de Sousa,A domain specific language for spatial simulation scenarios.,2016,20,GeoInformatica,1,db/journals/geoinformatica/geoinformatica20.html#SousaS16,https://doi.org/10.1007/s10707-015-0233-y +Mehdi Sharifzadeh,Processing Optimal Sequenced Route Queries Using Voronoi Diagrams.,2008,12,GeoInformatica,4,db/journals/geoinformatica/geoinformatica12.html#SharifzadehS08,https://doi.org/10.1007/s10707-007-0034-z +Tao Cheng 0004,Diachronic Analysis of Fuzzy Objects.,1999,3,GeoInformatica,4,db/journals/geoinformatica/geoinformatica3.html#ChengM99,https://doi.org/10.1023/A:1009884730822 +Tamas Abraham,Survey of Spatio-Temporal Databases.,1999,3,GeoInformatica,1,db/journals/geoinformatica/geoinformatica3.html#AbrahamR99,https://doi.org/10.1023/A:1009800916313 +Yunjun Gao,Algorithms for constrained k-nearest neighbor queries over moving object trajectories.,2010,14,GeoInformatica,2,db/journals/geoinformatica/geoinformatica14.html#GaoZCL10,https://doi.org/10.1007/s10707-009-0084-5 +Jidong Chen,Update-efficient indexing of moving objects in road networks.,2009,13,GeoInformatica,4,db/journals/geoinformatica/geoinformatica13.html#ChenM09,https://doi.org/10.1007/s10707-008-0052-5 +Bin Li,Distributed Spatial Catalog Service on the CORBA Object Bus.,2000,4,GeoInformatica,3,db/journals/geoinformatica/geoinformatica4.html#LiZ00,https://doi.org/10.1023/A:1009801325686 +Leila De Floriani,Compressing Triangulated Irregular Networks.,2000,4,GeoInformatica,1,db/journals/geoinformatica/geoinformatica4.html#FlorianiMP00,https://doi.org/10.1023/A:1009880409451 +Arthur Charpentier,Kernel density estimation based on Ripley's correction.,2016,20,GeoInformatica,1,db/journals/geoinformatica/geoinformatica20.html#CharpentierG16,https://doi.org/10.1007/s10707-015-0232-z +Amir Houshang Ehsani,Effect of SRTM resolution on morphometric feature identification using neural network - self organizing map.,2010,14,GeoInformatica,4,db/journals/geoinformatica/geoinformatica14.html#EhsaniQM10,https://doi.org/10.1007/s10707-009-0085-4 +Lotfi Bejaoui,OCL for formal modelling of topological constraints involving regions with broad boundaries.,2010,14,GeoInformatica,3,db/journals/geoinformatica/geoinformatica14.html#BejaouiPSB10,https://doi.org/10.1007/s10707-010-0104-5 +Agne Brilingaite,Enabling Routes of Road Network Constrained Movements as Mobile Service Context.,2007,11,GeoInformatica,1,db/journals/geoinformatica/geoinformatica11.html#BrilingaiteJ07,https://doi.org/10.1007/s10707-006-0010-z +Patrick Bergougnoux,Editorial: A Perspective on Dynamic and Multi-Dimensional GIS in the 21st Century.,2000,4,GeoInformatica,4,db/journals/geoinformatica/geoinformatica4.html#Bergougnoux00b,https://doi.org/10.1023/A:1026557727446 +Zhilin Li,Basic Topological Models for Spatial Entities in 3-Dimensional Space.,2000,4,GeoInformatica,4,db/journals/geoinformatica/geoinformatica4.html#LiLC00,https://doi.org/10.1023/A:1026570130172 +Gilberto Gutiérrez,The largest empty rectangle containing only a query object in Spatial Databases.,2014,18,GeoInformatica,2,db/journals/geoinformatica/geoinformatica18.html#GutierrezPBC14,https://doi.org/10.1007/s10707-013-0178-y +Cédric du Mouza,Mobility Patterns.,2005,9,GeoInformatica,4,db/journals/geoinformatica/geoinformatica9.html#MouzaR05,https://doi.org/10.1007/s10707-005-4574-9 +Marc J. van Kreveld,Multi-Dimensional Scattered Ranking Methods for Geographic Information Retrieval.,2005,9,GeoInformatica,1,db/journals/geoinformatica/geoinformatica9.html#KreveldRAZ05,https://doi.org/10.1007/s10707-004-5622-6 +Mark McKenney,Implementing set operations over moving regions using the component moving region model.,2017,21,GeoInformatica,2,db/journals/geoinformatica/geoinformatica21.html#McKenneySB17,https://doi.org/10.1007/s10707-016-0259-9 +J. B. K. Kiema,Wavelet Compression and the Automatic Classification of Urban Environments Using High Resolution Multispectral Imagery and Laser Scanning Data.,2001,5,GeoInformatica,2,db/journals/geoinformatica/geoinformatica5.html#KiemaB01,https://doi.org/10.1023/A:1011442332063 +Dieter Lang,Neighborhood Relations between Fields with Applications to Cellular Networks.,2001,5,GeoInformatica,2,db/journals/geoinformatica/geoinformatica5.html#LangWF01,https://doi.org/10.1023/A:1011434114316 +Suprio Ray,High performance location-based services in a main-memory database.,2017,21,GeoInformatica,2,db/journals/geoinformatica/geoinformatica21.html#RayBG17,https://doi.org/10.1007/s10707-016-0278-6 +Weimin Ma,Optimal Online Risk-Tolerant Ordering Policy for the Newsvendor with Forecast.,2010,5,JCIT,4,db/journals/jcit/jcit5.html#MaW10,http://www.aicit.org/jcit/ppl/Binder6_Part6.pdf +Pyung-Soo Kim,A New Mechanism for Available Bandwidth Estimation.,2009,4,JCIT,3,db/journals/jcit/jcit4.html#KimC09,http://www.aicit.org/jcit/ppl/10.pdf +Robert C. Meurant,A Revisioning of the Hierarchy.,2007,2,JCIT,1,db/journals/jcit/jcit2.html#Meurant07,http://www.aicit.org/jcit/papers/jcit2-1/3.%20A%20Revisioning.pdf +Dileep Kumar,Quality of Service (QoS) of Voice over MAC Protocol 802.11 using NS-2.,2008,3,JCIT,4,db/journals/jcit/jcit3.html#KumarAR08,http://www.aicit.org/jcit/ppl/Combined2_Part11.pdf +Taeho Jo,String Vectors as a Representation of Documents with Numerical Vectors in Text Categorization.,2007,2,JCIT,1,db/journals/jcit/jcit2.html#JoLK07,http://www.aicit.org/jcit/papers/jcit2-1/8.StringVectors.pdf +Siwoo Byun,Enhanced Index Management for Accelerating Hybrid Storage Systems.,2009,4,JCIT,2,db/journals/jcit/jcit4.html#Byun09,http://www.aicit.org/jcit/ppl/jcit_version6_Part17.pdf +Debajyoti Mukhopadhyay,An Algorithm for Construction of High Efficient Web Page Tree.,2010,5,JCIT,5,db/journals/jcit/jcit5.html#MukhopadhyayS10,http://www.aicit.org/jcit/ppl/Part5_Binder10.pdf +Danwei Chen,A Study on Secure Data Storage Strategy in Cloud Computing.,2010,5,JCIT,7,db/journals/jcit/jcit5.html#ChenH10,http://www.aicit.org/jcit/ppl/JCIT_09-23_592032-01.pdf +Nahid Amani,An Appropriate Violation Detection Scenario for Service Level Agreements Based on WS-Agreement Protocol.,2010,5,JCIT,1,db/journals/jcit/jcit5.html#AmaniHS10,http://www.aicit.org/jcit/ppl/jcit5-1_paper5.pdf +Yi Yin,Implementation of Filter Reverse Search System based on Spatial Relationships of Filters.,2008,3,JCIT,2,db/journals/jcit/jcit3.html#YinHKT08,http://www.aicit.org/jcit/papers/jcit3-2/jcit0302-1.pdf +Tamnun E. Mursalin,Real Time Automated Fabric Defect Detection System using Microcontroller.,2008,3,JCIT,1,db/journals/jcit/jcit3.html#MursalinEIA08,http://www.aicit.org/jcit/papers/jcit3-1/5-jcit3-1.pdf +Jian-ming Cui,Traffic Prediction Based on Improved Neural Network.,2010,5,JCIT,9,db/journals/jcit/jcit5.html#Cui10,http://www.aicit.org/jcit/ppl/JCIT0509_08.pdf +Zhimin Yang,A Fuzzy Optimization Method for Data Mining.,2010,5,JCIT,5,db/journals/jcit/jcit5.html#YangYL10,http://www.aicit.org/jcit/ppl/Part9_Binder10.pdf +Tapanee Tirapat,Usability Assessment for Hyperlink Methods.,2007,2,JCIT,1,db/journals/jcit/jcit2.html#TirapatA07,http://www.aicit.org/jcit/papers/jcit2-1/5.%20Usability%20Assessment.pdf +Zuowen Tan,An Improvement on A Three-Party Authentication Key Exchange Protocol Using Elliptic Curve Cryptography.,2010,5,JCIT,4,db/journals/jcit/jcit5.html#Tan10,http://www.aicit.org/jcit/ppl/Binder6_Part13.pdf +Hsin-Hsi Lai,A Product Knowledge-Sharing System Focusing on Internet-mediated Mode.,2010,5,JCIT,7,db/journals/jcit/jcit5.html#LaiLC10,http://www.aicit.org/jcit/ppl/JCIT_09-22_599081.pdf +Sanjay Raghani,Distributed Certification Authority for Mobile Ad Hoc Networks - A Dynamic Approach.,2007,2,JCIT,2,db/journals/jcit/jcit2.html#RaghaniT07,http://www.aicit.org/jcit/papers/jcit2-2/3_DurgaEdited.pdf +B. Sasikumar,Improving TCP/IP Performance in Wireless Networks with a UTSAF agent.,2008,3,JCIT,4,db/journals/jcit/jcit3.html#SasikumarV08,http://www.aicit.org/jcit/ppl/Combined2_Part6.pdf +Olga Yugay,Analysis and Implementation of M-commerce in Education for Developing Countries (Uzbekistan case).,2007,2,JCIT,3,db/journals/jcit/jcit2.html#YugaySKA07,http://www.aicit.org/jcit/papers/jcit2-3/10_jcit_2_3.pdf +Youna Jung,Community Situation based Strict Cooperation Model for Cooperative Ubiquitous Systems.,2007,2,JCIT,1,db/journals/jcit/jcit2.html#JungLK07,http://www.aicit.org/jcit/papers/jcit2-1/11.%20Community%20Situation.pdf +Yan Chen,Ranked Continuous Visible Nearest Neighbor Search.,2010,5,JCIT,8,db/journals/jcit/jcit5.html#ChenG10,http://www.aicit.org/jcit/ppl/16-JCIT4-651095JE.pdf +M. Hemalatha,A Distributed and Parallel Clustering Algorithm for Massive Biological Data.,2008,3,JCIT,4,db/journals/jcit/jcit3.html#HemalathaTV08,http://www.aicit.org/jcit/ppl/Combined2_Part12.pdf +Yiming Li,Area Optimization in Floorplanning Using AP-TCG.,2010,5,JCIT,10,db/journals/jcit/jcit5.html#LiLZ10,http://www.aicit.org/jcit/ppl/028_FASTJCIT1-881331.pdf +Yun Ji Na,A Study on Web Caching based on Reference Characteristics of Web Objects.,2008,3,JCIT,2,db/journals/jcit/jcit3.html#NaAK08,http://www.aicit.org/jcit/papers/jcit3-2/jcit0302-12.pdf +Kuo-Ching Liu,Efficient Access Control in a Hierarchy for Hardware-limited Users.,2010,5,JCIT,5,db/journals/jcit/jcit5.html#LiuH10a,http://www.aicit.org/jcit/ppl/Part20_Binder10.pdf +Chi-Yen Yin,Bibliometric Analysis of Social Capital Research during 1956 to 2008.,2010,5,JCIT,2,db/journals/jcit/jcit5.html#YinC10,http://www.aicit.org/jcit/ppl/14_april.pdf +P. Radhakrishnan,Extensive Analysis and Prediction of Optimal Inventory levels in supply chain management based on Particle Swarm Optimization Algorithm.,2009,4,JCIT,3,db/journals/jcit/jcit4.html#RadhakrishnanPG09,http://www.aicit.org/jcit/ppl/03.pdf +Yerbol Nisanbayev,SHAMAN Research and Implementation of an Electronic Medical Records System.,2008,3,JCIT,2,db/journals/jcit/jcit3.html#NisanbayevKY08,http://www.aicit.org/jcit/papers/jcit3-2/jcit0302-13.pdf +Linkai Luo,A New Parameter Selection Method for Support Vector Machine Based on the Decision Value.,2010,5,JCIT,8,db/journals/jcit/jcit5.html#LuoHPZSY10,http://www.aicit.org/jcit/ppl/4-JCIT1-618217.pdf +Jae Kwon Bae,Forecasting Decisions on Dividend Policy of South Korea Companies Listed in the Korea Exchange Market Based on Support Vector Machines.,2010,5,JCIT,8,db/journals/jcit/jcit5.html#Bae10,http://www.aicit.org/jcit/ppl/20-JCIT4-670102JE.pdf +Chaohong Song Feng Shi,Prediction of the subcellular location of apoptosis proteins based on approximate entropy.,2009,4,JCIT,4,db/journals/jcit/jcit4.html#ShiM09,http://www.aicit.org/jcit/ppl/vo4iss4paper17.pdf +Ahmed M. Mahdy,Adaptive Optical Wireless Networks: End-to-End Link Delay Optimization.,2010,5,JCIT,8,db/journals/jcit/jcit5.html#MahdyD10,http://www.aicit.org/jcit/ppl/1-JCIT1-658237JE.pdf +D. Shanthi,Comparison of Neural Network Training Algorithms for the prediction of the patient's post-operative recovery area.,2009,4,JCIT,1,db/journals/jcit/jcit4.html#ShanthiSS09,http://www.aicit.org/jcit/ppl/jcit040104.pdf +Jun Seok Lee,An Adaptive Selection Diversity Combining for Positioning of Mobile Sensor Nodes for U-City.,2006,1,JCIT,1,db/journals/jcit/jcit1.html#LeeC06a, +Hao Jiang,Matching Objects in Multi-Camera Surveillance without Geometric Constraints.,2010,5,JCIT,6,db/journals/jcit/jcit5.html#JiangX10,http://www.aicit.org/jcit/ppl/08.%20JCIT_vol5num6.pdf +Jinn-Min Yang,Random Subspace Method with Feature Subsets Selected by a Fuzzy Class Separability Index.,2009,4,JCIT,4,db/journals/jcit/jcit4.html#YangY09,http://www.aicit.org/jcit/ppl/vo4iss4paper12.pdf +Juchi Hou,A Model for Software Selection with Fuzzy Linguistic Information.,2010,5,JCIT,10,db/journals/jcit/jcit5.html#Hou10,http://www.aicit.org/jcit/ppl/024_JCIT4-746122.pdf +V. Prasanna Venkatesan,ARMMS - Architecture Reference Model for Multilingual Software.,2008,3,JCIT,2,db/journals/jcit/jcit3.html#VenkatesanK08,http://www.aicit.org/jcit/papers/jcit3-2/jcit0302-11.pdf +B. Paramasivan,Enhancing the Routing Performance of Wireless Sensor Networks using Connected Dominating Sets.,2008,3,JCIT,3,db/journals/jcit/jcit3.html#ParamasivanPK08,http://www.aicit.org/jcit/ppl/jcit_vol3no3_4.pdf +Saeedreza Ehteram,Intelligent Monitoring Approach for Pipeline Defect Detection from MFL Inspection.,2010,5,JCIT,2,db/journals/jcit/jcit5.html#EhteramMSMK10,http://www.aicit.org/jcit/ppl/05_april.pdf +Wann-Jyi Horng,A DCC Analysis of Two Exchange Rate Market Returns Volatility with an Japan Dollars Factor: Study of Taiwan and Korea Exchange Rate Markets.,2009,4,JCIT,4,db/journals/jcit/jcit4.html#HorngK09,http://www.aicit.org/jcit/ppl/01done.pdf +Kuo-Ching Liu,A New Design of Encryption/Decryption for Field Applications.,2010,5,JCIT,5,db/journals/jcit/jcit5.html#LiuH10,http://www.aicit.org/jcit/ppl/Part4_Binder10.pdf +Xian-Yi Cheng,The Framework of Network Public Opinion Monitoring and Analyzing System Based on Semantic Content Identification.,2010,5,JCIT,10,db/journals/jcit/jcit5.html#ChengZZW10,http://www.aicit.org/jcit/ppl/007_JCIT4-694108.pdf +Mayyada Hammoshi,A Proposed Model to Implement Load and Throughput of WLAN Implemented as Wi-Fi System.,2010,5,JCIT,7,db/journals/jcit/jcit5.html#HammoshiA10,http://www.aicit.org/jcit/ppl/JCIT_09-13_001.pdf +H. S. Yoon,A Study on A Transport Network Independent Mobile IP Model.,2009,4,JCIT,4,db/journals/jcit/jcit4.html#YoonHMKY09,http://www.aicit.org/jcit/ppl/vo4iss4paper8.pdf +Xiaojiang Liu,People Summarization by Combining Named Entity Recognition and Relation Extraction.,2010,5,JCIT,10,db/journals/jcit/jcit5.html#LiuY10,http://www.aicit.org/jcit/ppl/030_FASTJCIT4-874154.pdf +Hong-qi Li,A New Boundary Condition for Particle Swarm Optimization.,2010,5,JCIT,9,db/journals/jcit/jcit5.html#LiHXlZL10,http://www.aicit.org/jcit/ppl/JCIT0509_22.pdf +Bin Zhu,A Novel Adaptive Load Balancing Routing Algorithm in Ad hoc Networks.,2010,5,JCIT,5,db/journals/jcit/jcit5.html#BinXXQWG10,http://www.aicit.org/jcit/ppl/Part8_Binder10.pdf +C. J. Lim,Pedagogical Usability Checklist for ESL/EFL E-learning Websites.,2007,2,JCIT,3,db/journals/jcit/jcit2.html#LimL07,http://www.aicit.org/jcit/papers/jcit2-3/9_jcit_2_3.pdf +Mamoun Hussein Mamoun,A New DSR Routing Protocol for MANET.,2009,4,JCIT,4,db/journals/jcit/jcit4.html#Mamoun09a,http://www.aicit.org/jcit/ppl/vo4iss4paper4.pdf +Weiguo Zhang,Real Aggregation for Reducing Routing Information Base Size.,2010,5,JCIT,6,db/journals/jcit/jcit5.html#ZhangYWZH10,http://www.aicit.org/jcit/ppl/04.%20JCIT_vol5num6.pdf +Takayuki Teramoto,An Education-Support PSE System: TSUNA-TASTE.,2010,5,JCIT,4,db/journals/jcit/jcit5.html#TeramotoOK10,http://www.aicit.org/jcit/ppl/Binder6_Part22.pdf +Tiejun Pan,Research of Information Framework for Fourth Party Logistics.,2010,5,JCIT,7,db/journals/jcit/jcit5.html#PanZY10,http://www.aicit.org/jcit/ppl/JCIT_09-12_481065.pdf +Yabin Li,Research on Simulation and Optimization of Transshipment Port Operation in a Power Coal Ocean Shipping Logistics System on the Basis of WITNESS.,2010,5,JCIT,2,db/journals/jcit/jcit5.html#Li10,http://www.aicit.org/jcit/ppl/09_april.pdf +Minjuan Zhong,Pseudo-Relevance Feedback Driven for XML Query Expansion.,2010,5,JCIT,9,db/journals/jcit/jcit5.html#ZhongW10,http://www.aicit.org/jcit/ppl/JCIT0509_15.pdf +Heng-Chang Lin,Integrating Product Information Management (PIM) with Internet-Mediated Transactions (IMTs).,2010,5,JCIT,10,db/journals/jcit/jcit5.html#LinCL10,http://www.aicit.org/jcit/ppl/013-JCIT4-674105.pdf +Mariceia Tatiane Vilani,Modelling Net Ecosystem CO2 Exchange by Simple Tropical Ecosystem Model.,2010,5,JCIT,7,db/journals/jcit/jcit5.html#VilaniPSAAN10,http://www.aicit.org/jcit/ppl/JCIT_09-11_377016.pdf +Yi Wang,Commercial Credit Difference Evaluation and Prediction Model: Based on Neural Network.,2010,5,JCIT,9,db/journals/jcit/jcit5.html#WangXL10,http://www.aicit.org/jcit/ppl/JCIT0509_27.pdf +Anirban Kundu,An Alternate Way to Develop Lossless Graphical Data Compression Package using Non-Linear Single Cycle Multiple Attractor Cellular Automata.,2009,4,JCIT,2,db/journals/jcit/jcit4.html#KunduPSSCMGM09,http://www.aicit.org/jcit/ppl/jcit_version6_Part18.pdf +Jianping Ge,Assessing Welfare and Growth Effects of Grain-based Fuel Ethanol Development in China: a General Equilibrium Framework.,2010,5,JCIT,10,db/journals/jcit/jcit5.html#GeL10,http://www.aicit.org/jcit/ppl/001_JCIT4-597080.pdf +Nitul Dutta,Mathematical Analysis of Signaling Overhead in MIPv6 Based N-Layer Architecture.,2010,5,JCIT,8,db/journals/jcit/jcit5.html#DuttaMM10,http://www.aicit.org/jcit/ppl/28-JCIT1-453160.pdf +Wann-Jyi Horng,Dynamic Relationship of Two Exchange Rate Market Returns' Volatility with an European Dollars Factor: Empirical Study of Japan and Korea's Exchange Rate Markets.,2010,5,JCIT,5,db/journals/jcit/jcit5.html#Horng10,http://www.aicit.org/jcit/ppl/Part17_Binder10.pdf +Yu-Cheng Chen,Constructing Product Knowledge-Sharing System for Internet Transaction-Matching Model.,2010,5,JCIT,9,db/journals/jcit/jcit5.html#ChenLL10,http://www.aicit.org/jcit/ppl/JCIT0509_14.pdf +Renmin Han,QoS Routing in General Petersen-Torus Networks: A Case Study.,2010,5,JCIT,7,db/journals/jcit/jcit5.html#HanH10,http://www.aicit.org/jcit/ppl/JCIT_09-16_600204.pdf +Xu Xiang,A Flexible Resource Location Protocol for Peer-to-Peer Network.,2010,5,JCIT,9,db/journals/jcit/jcit5.html#Xiang10,http://www.aicit.org/jcit/ppl/JCIT0509_09.pdf +David W. Deeds,Using Educational Technology to Attain English-Level Inclusion for Asian Business/Technology Students.,2007,2,JCIT,4,db/journals/jcit/jcit2.html#Deeds07,http://www.aicit.org/jcit/papers/jcit2-4/6_jcit2_4.pdf +Shajulin Benedict,Scheduling of scientific workflows using Discrete PSO Algorithm for Grids.,2007,2,JCIT,4,db/journals/jcit/jcit2.html#Vasudevan07,http://www.aicit.org/jcit/papers/jcit2-4/3_jcit2_4.pdf +Li Tian,Design and Research of Self-Adaptive Learning Diagnosis Agent.,2010,5,JCIT,1,db/journals/jcit/jcit5.html#TianH10,http://www.aicit.org/jcit/ppl/jcit5-1_paper7.pdf +Fu Jianbao,Three-Dimensional Finite Element Analysis of Wall Pressure on Large Diameter Silos.,2010,5,JCIT,7,db/journals/jcit/jcit5.html#JianbaoMQT10,http://www.aicit.org/jcit/ppl/JCIT_09-15_520031.pdf +Yinghui Pan,Digital Watermarking Particle Swarm Optimization Based on Multi-wavelet.,2010,5,JCIT,3,db/journals/jcit/jcit5.html#Pan10,http://www.aicit.org/jcit/ppl/6.pdf +Jinlong Wang,Study on Student Score Based on Data Mining.,2010,5,JCIT,6,db/journals/jcit/jcit5.html#WangWJV10,http://www.aicit.org/jcit/ppl/18.%20JCIT_vol5num6.pdf +Jinlong Wang,SpamCooling: A Parallel Heterogeneous Ensemble Spam Filtering System Based on Active Learning Techniques.,2010,5,JCIT,4,db/journals/jcit/jcit5.html#WangGV10,http://www.aicit.org/jcit/ppl/Binder6_Part10.pdf +Robert C. Meurant,Using Cell Phones and SMS in Second Language Pedagogy.,2007,2,JCIT,1,db/journals/jcit/jcit2.html#Meurant07b,http://www.aicit.org/jcit/papers/jcit2-1/12.%20Using%20Cell%20Phones.pdf +Hala S. Own,Rough Wavelet Hybrid Image Classification Scheme.,2008,3,JCIT,4,db/journals/jcit/jcit3.html#OwnH08,http://www.aicit.org/jcit/ppl/Combined2_Part10.pdf +Li Yan,Linguistic Information Processing Based on Aggregation Operator over the Internet.,2010,5,JCIT,3,db/journals/jcit/jcit5.html#YanQP10,http://www.aicit.org/jcit/ppl/may_14.pdf +Changbae Roh,Reused Page Management for Log-Structured Flash Storage Systems.,2007,2,JCIT,2,db/journals/jcit/jcit2.html#RohB07,http://www.aicit.org/jcit/papers/jcit2-2/8_ByunEdited.pdf +Yao-Jen Chang,An Indoor Wayfinding System Based on Geo-coded QR Codes for Individuals with Cognitive Impairments.,2007,2,JCIT,4,db/journals/jcit/jcit2.html#ChangTCW07,http://www.aicit.org/jcit/papers/jcit2-4/9_jcit2_4.pdf +Jae Hyup Kim,Image Segmentation Method Using Hybrid Region Flow.,2008,3,JCIT,2,db/journals/jcit/jcit3.html#KimJM08,http://www.aicit.org/jcit/papers/jcit3-2/jcit0302-6.pdf +Lin Feng,Research on Maximal Frequent Pattern Outlier Factor for Online High-Dimensional Time-Series Outlier Detection.,2010,5,JCIT,10,db/journals/jcit/jcit5.html#LinLB10,http://www.aicit.org/jcit/ppl/009_JCIT1-697252.pdf +Jui-Hung Chen,Immersive Learning Environment with Integrated Interactive Video and Ubiquitous Technologies.,2010,5,JCIT,9,db/journals/jcit/jcit5.html#ChenCSWCS10,http://www.aicit.org/jcit/ppl/JCIT0509_06.pdf +Hui Gao,Analysis of Netizen's Affective Tendency on Public Opinion.,2010,5,JCIT,6,db/journals/jcit/jcit5.html#GaoZF10,http://www.aicit.org/jcit/ppl/12.%20JCIT_vol5num6.pdf +Ying Wang,SVC Method for Textile Weave Recognizing.,2010,5,JCIT,3,db/journals/jcit/jcit5.html#WangWLY10,http://www.aicit.org/jcit/ppl/2.pdf +Shifei Ding,Using Genetic Algorithms to Optimize Artificial Neural Networks.,2010,5,JCIT,8,db/journals/jcit/jcit5.html#DingXSZ10,http://www.aicit.org/jcit/ppl/6-JCIT2-621034JE.pdf +Weihua Xu,An Analysis of the Co-operative Supply Chain's EPQ Model under Trade Credit.,2010,5,JCIT,6,db/journals/jcit/jcit5.html#XuMY10,http://www.aicit.org/jcit/ppl/19.%20JCIT4-588078.pdf +Xiaogang Qi,An Improvement of GAF for Lifetime Elongation in Wireless Sensor Networks.,2010,5,JCIT,7,db/journals/jcit/jcit5.html#Xiao-gangC10,http://www.aicit.org/jcit/ppl/JCIT_09-14_576031.pdf +Qi Yang,Convergence Analysis of Decentralized Slot Synchronization Algorithm for Wireless Ad Hoc Networks.,2010,5,JCIT,10,db/journals/jcit/jcit5.html#YangST10,http://www.aicit.org/jcit/ppl/029_FASTJCIT1-835312.pdf +Taiyo Maeda,Social Simulation Based on Human Behavioral Data Collected by Web-Based Experimental System.,2010,5,JCIT,4,db/journals/jcit/jcit5.html#MaedaMKMC10,http://www.aicit.org/jcit/ppl/Binder6_Part15.pdf +Shigeo Kawata,Review of PSE (Problem Solving Environment) Study.,2010,5,JCIT,4,db/journals/jcit/jcit5.html#Kawata10,http://www.aicit.org/jcit/ppl/Binder6_Part21.pdf +Cui-Xia Li,GPS/TDOA Hybrid Location Algorithm Based on Federal Kalman Filter.,2010,5,JCIT,7,db/journals/jcit/jcit5.html#LiLF10,http://www.aicit.org/jcit/ppl/JCIT_09-06_532187.pdf +Xun-Yi Ren,An Efficient Lightweight Testbed for Networks Emulation.,2010,5,JCIT,4,db/journals/jcit/jcit5.html#RenFYB10,http://www.aicit.org/jcit/ppl/Binder6_Part3.pdf +Reihaneh Khorsand Motlagh Esfahani,Reputation Improved Web Services Discovery Based on QoS.,2010,5,JCIT,9,db/journals/jcit/jcit5.html#EsfahaniMN10,http://www.aicit.org/jcit/ppl/JCIT0509_21.pdf +Tzong-I Wang,Development of Low Cost Message Delivery Path for Mobile Agent Communication.,2010,5,JCIT,2,db/journals/jcit/jcit5.html#WangY10,http://www.aicit.org/jcit/ppl/19_april10.pdf +Dongsheng Liu,A New Anonymous Authentication Method Based on One-way Accumulator.,2010,5,JCIT,6,db/journals/jcit/jcit5.html#LiuT10,http://www.aicit.org/jcit/ppl/02.%20JCIT5-454016.pdf +Kerui Chen,Heterogeneous Deep Web Data Extraction Using Ontology Evolution.,2010,5,JCIT,8,db/journals/jcit/jcit5.html#ChenZZHC10,http://www.aicit.org/jcit/ppl/23-JCIT4-633087.pdf +Qindong Sun,Modeling and Analysis of the Proactive Worm in Unstructured Peer-to-Peer Network.,2010,5,JCIT,5,db/journals/jcit/jcit5.html#SunWR10,http://www.aicit.org/jcit/ppl/Part12_Binder10.pdf +Shui Wang,An Implementation of FP-Growth Algorithm Based on High Level Data Structures of Weka-JUNG Framework.,2010,5,JCIT,9,db/journals/jcit/jcit5.html#WangW10,http://www.aicit.org/jcit/ppl/JCIT0509_30.pdf +Heng-Li Yang,Requirement Meta-model and Ontology-based Blogs Architecture for IS Requirements Elicitation.,2007,2,JCIT,4,db/journals/jcit/jcit2.html#YangL07,http://www.aicit.org/jcit/papers/jcit2-4/8_jcit2_4.pdf +Chia-Chen Yen,Pagerank Algorithm Improvement by Page Relevance Measurement.,2010,5,JCIT,8,db/journals/jcit/jcit5.html#YenH10,http://www.aicit.org/jcit/ppl/17-JCIT4-623085.pdf +Chi-Man Pun,Geometric Invariant Shape Representation Based on Radon and Adaptive Stationary Wavelet Transforms.,2010,5,JCIT,6,db/journals/jcit/jcit5.html#PunLL10,http://www.aicit.org/jcit/ppl/05.%20JCIT_vol5num6.pdf +Zhixia Yang,Second Order Cone Programming Formulations for Handling Data with Perturbation.,2010,5,JCIT,9,db/journals/jcit/jcit5.html#YangT10,http://www.aicit.org/jcit/ppl/JCIT0509_28.pdf +Pei-Wen Wang,Analysis of Online Word-of-Mouth in Online Forums Regarding Notebook Computers.,2010,5,JCIT,5,db/journals/jcit/jcit5.html#WangSSL10,http://www.aicit.org/jcit/ppl/Part13_Binder10.pdf +Sanjay Mohapatra,Framework for HRIS Implementation in Non-IT Sector.,2009,4,JCIT,4,db/journals/jcit/jcit4.html#Mohapatra09,http://www.aicit.org/jcit/ppl/vo4iss4paper16.pdf +Guo-Sheng Hu,Transportation Reliability Based Distribution Center Decision.,2009,4,JCIT,1,db/journals/jcit/jcit4.html#HuZZ09,http://www.aicit.org/jcit/ppl/jcit040108.pdf +S. Kami Makki,Distributed Systems: An Effective Information Sharing Approach for Legacy Systems.,2007,2,JCIT,3,db/journals/jcit/jcit2.html#Makki07,http://www.aicit.org/jcit/papers/jcit2-3/3_jcit_2_3.pdf +Aiping Li,A Study on Organizational Knowledge in Multi-Agent System.,2007,2,JCIT,1,db/journals/jcit/jcit2.html#LiYW07,http://www.aicit.org/jcit/papers/jcit2-1/7.AStudyon.pdf +Ying Huang,A Methodology for Test Suit Reduction in User-session-based Testing.,2010,5,JCIT,9,db/journals/jcit/jcit5.html#HuangL10,http://www.aicit.org/jcit/ppl/JCIT0509_03.pdf +Pyung-Soo Kim,A Packet Partition Scheduling Mechanism for Bandwidth Aggregation over Multiple Paths.,2008,3,JCIT,4,db/journals/jcit/jcit3.html#KimYK08,http://www.aicit.org/jcit/ppl/Combined2_Part5.pdf +Zdenek Becvar,Efficiency of Handover Prediction Based on Handover History.,2009,4,JCIT,4,db/journals/jcit/jcit4.html#Becvar09,http://www.aicit.org/jcit/ppl/vo4iss4paper7.pdf +Tian Hong,A New Approach to Computing Weighted Attributes Values in Incomplete Information Systems.,2007,2,JCIT,2,db/journals/jcit/jcit2.html#HongXR07,http://www.aicit.org/jcit/papers/jcit2-2/4_tianEdited1.pdf +Mehdi Nasiri,Multi-Objective Rule Mining Using Simulated Annealing Algorithm.,2010,5,JCIT,1,db/journals/jcit/jcit5.html#NasiriTM10,http://www.aicit.org/jcit/ppl/jcit5-1_paper8.pdf +Miriam Salcedo H.,Clearing Policy for an Specialist Agent in Marketing Strategies.,2010,5,JCIT,7,db/journals/jcit/jcit5.html#HALG10,http://www.aicit.org/jcit/ppl/JCIT_09-10_374138.pdf +Myoung-Woo Hong,Design of a Framework for U-Learning based on Educational Resources Sharing System for Ubiquitous Computing Environments.,2006,1,JCIT,1,db/journals/jcit/jcit1.html#HongKC06, +Chaohong Song,Using IB1 Algorithm to Predict of Bacterial Toxins with an Improved Feature Extraction.,2010,5,JCIT,5,db/journals/jcit/jcit5.html#SongS10,http://www.aicit.org/jcit/ppl/Part21_Binder10.pdf +M. S. Saleem Basha,Web Service Based Secure E-Learning Management System- EWeMS.,2010,5,JCIT,7,db/journals/jcit/jcit5.html#BashaD10,http://www.aicit.org/jcit/ppl/JCIT_09-08_531071JE.pdf +Maha A. Al-Bayati,"Evaluating the Efficiency of the Instructional Websites ""Which are Oriented to the Deaf Students"" According to the Technical Criteria"".",2010,5,JCIT,2,db/journals/jcit/jcit5.html#Al-BayatiH10,http://www.aicit.org/jcit/ppl/16_april.pdf +Hyoung Do Kim,DNA Data Compression Based on the Whole Genome Sequence.,2009,4,JCIT,3,db/journals/jcit/jcit4.html#KimK09,http://www.aicit.org/jcit/ppl/12.pdf +Sarvar R. Abdullaev,A Study on Successful Business Intelligence Systems in Practice.,2007,2,JCIT,2,db/journals/jcit/jcit2.html#AbdullaevK07,http://www.aicit.org/jcit/papers/jcit2-2/12_SarvarEdited.pdf +Yuehua Tao,Research Progress of the Scale Invariant Feature Transform (SIFT) Descriptors.,2010,5,JCIT,1,db/journals/jcit/jcit5.html#TaoXXC10,http://www.aicit.org/jcit/ppl/jcit5-1_paper13.pdf +Yihui Qiu,Application of Feature Extraction Method in Customer Churn Prediction Based on Random Forest and Transduction.,2010,5,JCIT,3,db/journals/jcit/jcit5.html#QiuL10,http://www.aicit.org/jcit/ppl/may_11.pdf +Masao Watabe,Agent-Based Simulation to Seek For Effective Communication In Project Management.,2007,2,JCIT,3,db/journals/jcit/jcit2.html#WatabeT07,http://www.aicit.org/jcit/papers/jcit2-3/5_jcit_2_3.pdf +Zhengjun Cheng,Classification Models of Estrogen Receptor-B Ligands Based on PSO-Adaboost-SVM.,2010,5,JCIT,2,db/journals/jcit/jcit5.html#ChengZ10,http://www.aicit.org/jcit/ppl/08_april.pdf +Chunbo Ma,Group-oriented Encryption Secure against Collude Attack.,2008,3,JCIT,4,db/journals/jcit/jcit3.html#MaA08,http://www.aicit.org/jcit/ppl/Combined2_Part7.pdf +Lilin Fan,Research on Classification Mining Method of Frequent Itemset.,2010,5,JCIT,8,db/journals/jcit/jcit5.html#Fan10,http://www.aicit.org/jcit/ppl/8-JCIT1-642228.pdf +Meng-Long Shih,The Association of China Stock Index with Japan and US.,2008,3,JCIT,2,db/journals/jcit/jcit3.html#ShihHC08,http://www.aicit.org/jcit/papers/jcit3-2/jcit0302-2.pdf +SangBock Lee,Analysis on the Amount of Physical Activities of Taekwondo Taegeuk Pumsae Using Accelerometers.,2010,5,JCIT,1,db/journals/jcit/jcit5.html#LeeL10,http://www.aicit.org/jcit/ppl/jcit5-1_paper6.pdf +Hai Guo,NaXi Pictographs Edge Detection Using Lifting Wavelet Transform.,2010,5,JCIT,5,db/journals/jcit/jcit5.html#GuoZDL10,http://www.aicit.org/jcit/ppl/Part23_Binder10.pdf +Zichang Shangguan,Model Reference Control for Bulkhead Pressure of EPB Shield in Tunneling.,2010,5,JCIT,1,db/journals/jcit/jcit5.html#ShangguanLSL10,http://www.aicit.org/jcit/ppl/jcit5-1_paper12.pdf +Jürgen Geiser,Modelling and Simulation for Physical Vapor.,2008,3,JCIT,4,db/journals/jcit/jcit3.html#GeiserR08,http://www.aicit.org/jcit/ppl/Combined2_Part3.pdf +Sung Wan Kim,Improved Processing of Path Query on RDF Data Using Suffix Array.,2009,4,JCIT,3,db/journals/jcit/jcit4.html#Kim09,http://www.aicit.org/jcit/ppl/06.pdf +Bruce Moulton,Method for Increasing the Energy Efficiency of Wirelessly Networked Ambulatory Health Monitoring Devices.,2010,5,JCIT,1,db/journals/jcit/jcit5.html#MoultonCVC10,http://www.aicit.org/jcit/ppl/jcit5-1_paper1.pdf +V. Prasanna Venkatesan,A Metrics Suite for Measuring Software Components.,2009,4,JCIT,2,db/journals/jcit/jcit4.html#VenkatesanK09,http://www.aicit.org/jcit/ppl/jcit_version6_Part15.pdf +Yongguo Liu,Data Clustering with Cat Swarm Optimization.,2010,5,JCIT,8,db/journals/jcit/jcit5.html#LiuS10a,http://www.aicit.org/jcit/ppl/2-JCIT1-611212.pdf +Chang Wang,Optimization of Query Expansion Source in Formal Concept Analysis.,2010,5,JCIT,7,db/journals/jcit/jcit5.html#WangDZ10,http://www.aicit.org/jcit/ppl/JCIT_09-17_604207.pdf +LiYue Zhu,Markov Decision Process Model for Path Selection Algorithm on Multi-Business System with Services Composition.,2010,5,JCIT,9,db/journals/jcit/jcit5.html#ZhuWX10,http://www.aicit.org/jcit/ppl/JCIT0509_04.pdf +Ting-gui Chen,Characteristic Description of Coupled Task Sets Based on Design Structure Matrix and Its Optimal Time and Efforts Solution by Genetic Algorithm.,2010,5,JCIT,7,db/journals/jcit/jcit5.html#ChenJ10,http://www.aicit.org/jcit/ppl/JCIT_09-18_601205.pdf +Yunni Xia,Determing Performance of Choreography-based Composite Services.,2010,5,JCIT,8,db/journals/jcit/jcit5.html#XiaOWY10,http://www.aicit.org/jcit/ppl/12-JCIT1-609211.pdf +Yukyong Kim,QoS-Aware Web Services Discovery with Trust Management.,2008,3,JCIT,2,db/journals/jcit/jcit3.html#Kim08,http://www.aicit.org/jcit/papers/jcit3-2/jcit0302-10.pdf +Wenyuan Liu,An Improved DV-Hop Localization Algorithm based on The Selection of Beacon Nodes.,2010,5,JCIT,9,db/journals/jcit/jcit5.html#LiuWCW10,http://www.aicit.org/jcit/ppl/JCIT0509_16.pdf +Qian Zhu,The Recognition Method of Unknown Chinese Words in Fragments Based on Mutual Information.,2010,5,JCIT,3,db/journals/jcit/jcit5.html#ZhuCG10,http://www.aicit.org/jcit/ppl/may_10.pdf +Min-Hee Jang,Performance Evaluation of TPR: Trees for Processing Future-Time Queries in Moving Object Databases.,2006,1,JCIT,1,db/journals/jcit/jcit1.html#JangK06, +Massimo Orazio Spata,A scheduling Algorithm based on Potential Game for a Cluster Grid.,2009,4,JCIT,3,db/journals/jcit/jcit4.html#SpataR09,http://www.aicit.org/jcit/ppl/04.pdf +Chong Wang,Intermediate View Synthesis Based on Adaptive BP Algorithm and View Interpolation.,2010,5,JCIT,10,db/journals/jcit/jcit5.html#WangZ10,http://www.aicit.org/jcit/ppl/010_JCIT1-710257.pdf +Hoon Ko,A Study on Users Authentication Method for Safety Group Decision System in Dynamic Small Group.,2009,4,JCIT,4,db/journals/jcit/jcit4.html#KoFMR09,http://www.aicit.org/jcit/ppl/vo4iss4paper11.pdf +Li Zhang,Spectrum Pooling-Based Vertical Handover for Heterogeneous Cognitive Radio Networks with QoS Constrains.,2010,5,JCIT,5,db/journals/jcit/jcit5.html#ZhangZJ10,http://www.aicit.org/jcit/ppl/Part18_Binder10.pdf +Zhi-Yong Yuan,Real-time Simulation for 3D Tissue Deformation with CUDA Based GPU Computing.,2010,5,JCIT,4,db/journals/jcit/jcit5.html#YuanZZDLXZL10,http://www.aicit.org/jcit/ppl/Binder6_Part12.pdf +Jong Hyok Lee,PKG-MIB: Design and Implementation of Private-mib for Package-based Linux Systems.,2006,1,JCIT,1,db/journals/jcit/jcit1.html#LeeC06, +M. Sami Soliman,Conditional Sensor Deployment Using Evolutionary Algorithms.,2010,5,JCIT,2,db/journals/jcit/jcit5.html#SolimanT10,http://www.aicit.org/jcit/ppl/17_april.pdf +Massimo Orazio Spata,Merging Nash Equilibrium Solution with Genetic Algorithm : The Game Genetic Algorithm.,2010,5,JCIT,9,db/journals/jcit/jcit5.html#SpataR10,http://www.aicit.org/jcit/ppl/JCIT0509_01.pdf +Hyung Tae Kim,Building 3D Geospatial Information Using Airborne Multi-Looking Digital Camera System.,2010,5,JCIT,1,db/journals/jcit/jcit5.html#KimKGEL10,http://www.aicit.org/jcit/ppl/jcit5-1_paper2.pdf +Yinghui Pan,A New Vector Identification Method Based on Vector Structure and Suffix Tree.,2010,5,JCIT,6,db/journals/jcit/jcit5.html#PanLCL10,http://www.aicit.org/jcit/ppl/07.%20JCIT_vol5num6.pdf +Wenjie Zhao,Improvement of a Secure Convex Hull Two-Party Computation Protocol.,2010,5,JCIT,3,db/journals/jcit/jcit5.html#ZhaoH10,http://www.aicit.org/jcit/ppl/4.pdf +Peiquan Jin,CT-Rank: A Time-aware Ranking Algorithm for Web Search.,2010,5,JCIT,6,db/journals/jcit/jcit5.html#JinLCY10,http://www.aicit.org/jcit/ppl/10.%20JCIT_vol5num6.pdf +Chih-Feng Chuang,A Study of Institutional Repository Service Quality and Users' Loyalty to College Libraries in Taiwan: The Mediating and Moderating Effects.,2010,5,JCIT,8,db/journals/jcit/jcit5.html#ChuangC10,http://www.aicit.org/jcit/ppl/10-JCIT1-605208.pdf +Wei-Chih Hsu,Enhanced Block Motion Estimation Based on Threshold-Aware Two-Path Search Method.,2010,5,JCIT,5,db/journals/jcit/jcit5.html#HsuYG10,http://www.aicit.org/jcit/ppl/Part11_Binder10.pdf +Shen Yang,Content Mining and Network Analysis of Microblog Spam.,2010,5,JCIT,1,db/journals/jcit/jcit5.html#YangSXF10,http://www.aicit.org/jcit/ppl/jcit5-1_paper16.pdf +Yajun Du,An Intelligent Model and Its Implementation of Search Engine.,2008,3,JCIT,2,db/journals/jcit/jcit3.html#DuL08,http://www.aicit.org/jcit/papers/jcit3-2/jcit0302-9.pdf +Yu-Lung Lo,Approximate Searching for Music Data in Real-Valued Feature Indexing.,2009,4,JCIT,4,db/journals/jcit/jcit4.html#LoT09,http://www.aicit.org/jcit/ppl/vo4iss4paper13.pdf +Gang Chen,Key Technologies of Modeling for Equipment Training Environment.,2010,5,JCIT,7,db/journals/jcit/jcit5.html#ChenLYZ10,http://www.aicit.org/jcit/ppl/JCIT_09-09_006.pdf +Jia Hou,Information Hided Jacket Matrix and Its Fast Factorization Algorithm.,2010,5,JCIT,6,db/journals/jcit/jcit5.html#HouL10,http://www.aicit.org/jcit/ppl/16.%20JCIT_vol5num6.pdf +Gang Lv,Tracking Formant Trajectory of Continuous Chinese Whispered Speech with Hidden Dynamic Model Based on Dynamic Target Orientation.,2010,5,JCIT,9,db/journals/jcit/jcit5.html#LvZ10,http://www.aicit.org/jcit/ppl/JCIT0509_23.pdf +E. R. Naganathan,Intelligent Tutoring System: Predicting Students Results Using Neural Networks.,2008,3,JCIT,3,db/journals/jcit/jcit3.html#NaganathanVM08,http://www.aicit.org/jcit/ppl/jcit_vol3no3_3.pdf +Hongwei Dai,Distance Maintaining Compact Quantum Crossover Based Clonal Selection Algorithm.,2010,5,JCIT,10,db/journals/jcit/jcit5.html#DaiYL10a,http://www.aicit.org/jcit/ppl/008_JCIT2-695035.pdf +Youfu Wu,Recognizing Moving Objects Based on Gaussian-Hermite Moments and ART Neural Networks.,2010,5,JCIT,8,db/journals/jcit/jcit5.html#WuW10,http://www.aicit.org/jcit/ppl/7-JCIT1-395141.pdf +Dong Won Kim,Real Time Multimedia Service Using ATM/Internet Gateway.,2006,1,JCIT,1,db/journals/jcit/jcit1.html#KimH06, +Zhenlin Wei,Novel MicroRNAs and Targets Prediction in PRRS Virus Genome.,2010,5,JCIT,10,db/journals/jcit/jcit5.html#Wei10c,http://www.aicit.org/jcit/ppl/027_JCIT2-707037.pdf +Panida Songram,Efficient Ming of Top-K Closed Sequences.,2010,5,JCIT,5,db/journals/jcit/jcit5.html#Songram10,http://www.aicit.org/jcit/ppl/Part19_Binder10.pdf +Lien Fu Lai,Fuzzy Knowledge Management through Knowledge Engineering and Fuzzy Logic.,2010,5,JCIT,3,db/journals/jcit/jcit5.html#LaiHWC10,http://www.aicit.org/jcit/ppl/1.pdf +Jiang Xie,An Integrated Computing Environment for Bio-Molecular Networks.,2010,5,JCIT,4,db/journals/jcit/jcit5.html#XieMZZ10,http://www.aicit.org/jcit/ppl/Binder6_Part17.pdf +Jie Huang,An Improved Dynamic Load Balancing Algorithm for a Distributed System in LAN.,2010,5,JCIT,10,db/journals/jcit/jcit5.html#HuangHH10,http://www.aicit.org/jcit/ppl/012_JCIT1-703254.pdf +Wei-Chih Hsu,E-mail Spam Filtering Based on Support Vector Machines with Taguchi Method for Parameter Selection.,2010,5,JCIT,8,db/journals/jcit/jcit5.html#HsuY10,http://www.aicit.org/jcit/ppl/9-JCIT1-615215(Repaired).pdf +Mingfeng Zhao,A New Method to Detect Useless Service Failure Model in SPN.,2010,5,JCIT,3,db/journals/jcit/jcit5.html#ZhaoZYSD10,http://www.aicit.org/jcit/ppl/may_18.pdf +Sunitha Ramanujam,A Multi-Agent Framework for Testing 3-Tier Distributed Systems Architecture.,2008,3,JCIT,1,db/journals/jcit/jcit3.html#RamanujamYC08,http://www.aicit.org/jcit/papers/jcit3-1/2-jcit3-1.pdf +Hongjun Guan,Prevention and Control Model of Enterprise Business Risk Based on Multi-Agent.,2010,5,JCIT,7,db/journals/jcit/jcit5.html#Guan10,http://www.aicit.org/jcit/ppl/JCIT_09-19_607209.pdf +Fugui Wang,A search quality evaluation based on objective-subjective method.,2008,3,JCIT,2,db/journals/jcit/jcit3.html#WangDD08,http://www.aicit.org/jcit/papers/jcit3-2/jcit0302-8.pdf +Guimin Huang,A Misspelling Intelligent Analysis Approach for Correcting Misspelled Words in English Text.,2010,5,JCIT,5,db/journals/jcit/jcit5.html#HuangHZZ10,http://www.aicit.org/jcit/ppl/Part6_Binder10.pdf +Huali Cai,A Temporal Relation-based Method for Extracting Occurrence Time in Chinese Web News of Emergencies.,2010,5,JCIT,3,db/journals/jcit/jcit5.html#CaiWLL10,http://www.aicit.org/jcit/ppl/5.pdf +Jürgen Geiser,Kinetic Processes and Phase-transition of CVD Processes for Ti2SiC3.,2010,5,JCIT,6,db/journals/jcit/jcit5.html#GeiserR10,http://www.aicit.org/jcit/ppl/01.%20JCIT1-331127.pdf +Guoqiang Zhang,An experimental study on constructing sense relations in vocabulary teaching.,2009,4,JCIT,4,db/journals/jcit/jcit4.html#Zhang09,http://www.aicit.org/jcit/ppl/vo4iss4paper18.pdf +S. N. Geethalakshmi,Impact of non-technical components on Success and Failure of Software Development.,2009,4,JCIT,1,db/journals/jcit/jcit4.html#Geethalakshmi09,http://www.aicit.org/jcit/ppl/jcit040105.pdf +Jaegeol Yim,An Implementation of a Positioning System Using GPS and WLAN Data.,2006,1,JCIT,1,db/journals/jcit/jcit1.html#YimJ06, +Pora Kim,Efficient Location Detection and Tracking for Mobile Sensor Nodes in Ubiquitous Networks.,2006,1,JCIT,1,db/journals/jcit/jcit1.html#KimC06, +Yang He-biao,Research and Design on Personalized Learning System Based on Mobile Agent.,2008,3,JCIT,3,db/journals/jcit/jcit3.html#He-biaoYJZ08,http://www.aicit.org/jcit/ppl/jcit_vol3no3_8.pdf +Dingju Zhu,Upgrade Digital City Based on Parallel Computing.,2009,4,JCIT,2,db/journals/jcit/jcit4.html#Zhu09,http://www.aicit.org/jcit/ppl/jcit_version6_Part5.pdf +Kim Yong Jae,A Study on The Global Standards Of The E-Trade Process on The Basis ebXML and Web Services.,2009,4,JCIT,4,db/journals/jcit/jcit4.html#Jae09,http://www.aicit.org/jcit/ppl/vo4iss4paper15.pdf +Pyung Soo Kim,Hierarchical Mobile IPv6 Based Fast Vertical Handover using IEEE 802.21 Media Independent Handover Function.,2007,2,JCIT,4,db/journals/jcit/jcit2.html#KimK07,http://www.aicit.org/jcit/papers/jcit2-4/5_jcit2_4.pdf +Zhenyu Wu,A Novel Feedback Approach for Image/Video sampling Systems' Performances Improvement.,2010,5,JCIT,5,db/journals/jcit/jcit5.html#WuYT10,http://www.aicit.org/jcit/ppl/Part16_Binder10.pdf +Wadee S. Alhalabi,A Tool to Personalize the Ranking of the Documents Returned by an Internet Search Engine.,2007,2,JCIT,3,db/journals/jcit/jcit2.html#AlhalabiKT07,http://www.aicit.org/jcit/papers/jcit2-3/1_jcit_2_3.pdf +E. A. Mary Anita,Black Hole Attack on Multicast Routing Protocols.,2009,4,JCIT,2,db/journals/jcit/jcit4.html#AnitaV09,http://www.aicit.org/jcit/ppl/jcit_version6_Part8.pdf +Kai Yang,A Hierarchical Hybrid Routing Protocol for Wireless Mesh Network.,2010,5,JCIT,8,db/journals/jcit/jcit5.html#YangM10,http://www.aicit.org/jcit/ppl/15-JCIT5-584021.pdf +Anestis A. Toptsis,K-grid: A Structure for Storage and Retrieval of Affective Knowledge.,2009,4,JCIT,2,db/journals/jcit/jcit4.html#Toptsis09,http://www.aicit.org/jcit/ppl/jcit_version6_Part3.pdf +Xianping Wu,Novel Hybrid Group Key Agreement for Sensitive Information Systems.,2010,5,JCIT,1,db/journals/jcit/jcit5.html#WuNLSQ10,http://www.aicit.org/jcit/ppl/jcit5-1_paper9.pdf +Leila Jamel Menzli,A Guidance Process for the Selection of Business Process Modelling Techniques for the Revised Business Process Reengineering.,2007,2,JCIT,2,db/journals/jcit/jcit2.html#MenzliGG07,http://www.aicit.org/jcit/papers/jcit2-2/11_LeilaEdited.pdf +Xue Deng,A Portfolio Selection Model Based on Possibility Theory Using Fuzzy Two-stage Algorithm.,2010,5,JCIT,6,db/journals/jcit/jcit5.html#DengL10,http://www.aicit.org/jcit/ppl/14.%20JCIT_vol5num6.pdf +Shikai Zhang,Hybrid Modulation Based on Combining of AM and UNB.,2009,4,JCIT,3,db/journals/jcit/jcit4.html#ZhangW09,http://www.aicit.org/jcit/ppl/11.pdf +Xudong Lin,Chinese Question Classification Using Alternating and Iterative One-against-One Algorithm.,2010,5,JCIT,3,db/journals/jcit/jcit5.html#LinLLW10,http://www.aicit.org/jcit/ppl/9.pdf +Jürgen Geiser,Iterative Operator-Splitting Methods for Stiff Problems in Complex Applications.,2008,3,JCIT,1,db/journals/jcit/jcit3.html#Geiser08,http://www.aicit.org/jcit/papers/jcit3-1/1-jcit3-1.pdf +Omid Kashefi,Optimizing Document Similarity Detection in Persian Information Retrieval.,2010,5,JCIT,2,db/journals/jcit/jcit5.html#KashefiMM10,http://www.aicit.org/jcit/ppl/11_april.pdf +Jianhua Dai,A Novel Matched Filter for Neural Action Potential Detection.,2010,5,JCIT,9,db/journals/jcit/jcit5.html#DaiZLZCZ10,http://www.aicit.org/jcit/ppl/JCIT0509_05.pdf +Ming-Tao Chou,The Logarithm Function with a Fuzzy Time Series.,2009,4,JCIT,1,db/journals/jcit/jcit4.html#Chou09,http://www.aicit.org/jcit/ppl/jcit040107.pdf +Kazuya Odagiri,The Processing Workload Evaluation in two Network Management Models of IP Networks.,2009,4,JCIT,3,db/journals/jcit/jcit4.html#OdagiriMYTI09,http://www.aicit.org/jcit/ppl/01.pdf +Taeho Jo,The Comparison of Two Representations of Documents in Text Clustering.,2006,1,JCIT,1,db/journals/jcit/jcit1.html#JoL06a, +Chenming Li,Measuring Concept Similarity of Heterogeneous Ontologies in Multi-angent System.,2010,5,JCIT,9,db/journals/jcit/jcit5.html#LiXYW10,http://www.aicit.org/jcit/ppl/JCIT0509_26.pdf +Ruma Dutta,An Advanced Partitioning Approach of Web Page Clustering utilizing Content and Link Structure.,2009,4,JCIT,3,db/journals/jcit/jcit4.html#DuttaGKM09,http://www.aicit.org/jcit/ppl/09.pdf +Tanzilah Noor Shabnam,Call Admission Control Strategy for System Throughput Maximization Using DOVE.,2010,5,JCIT,8,db/journals/jcit/jcit5.html#ShabnamIA10,http://www.aicit.org/jcit/ppl/14-JCIT1-254115.pdf +Fengxia Wang,Relevance Vector Ranking for Information Retrieval.,2010,5,JCIT,9,db/journals/jcit/jcit5.html#WangJC10,http://www.aicit.org/jcit/ppl/JCIT0509_12.pdf +Jui-Hung Chen,Using Adventure Game to Facilitate Learning Assessment Process.,2010,5,JCIT,9,db/journals/jcit/jcit5.html#ChenKWCS10,http://www.aicit.org/jcit/ppl/JCIT0509_13.pdf +Bruce Moulton,Updating Electronic Health Records with Information from Sensor Systems: Considerations Relating To Standards and Architecture Arising From the Development of a Prototype System.,2009,4,JCIT,4,db/journals/jcit/jcit4.html#MoultonCK09,http://www.aicit.org/jcit/ppl/vo4iss4paper3.pdf +Zuowen Tan,A Privacy-Preserving Mutual Authentication Protocol for Vehicle Ad Hoc Networks.,2010,5,JCIT,7,db/journals/jcit/jcit5.html#Tan10a,http://www.aicit.org/jcit/ppl/JCIT_09-24_590200JE.pdf +Hrudaya K. Tripathy,A Prospective Fuzzy Logic approach to Knowledge-based Navigation of Mobile LEGO-Robot.,2008,3,JCIT,1,db/journals/jcit/jcit3.html#TripathyTD08a,http://www.aicit.org/jcit/papers/jcit3-1/8-jcit3-1.pdf +Hiromichi Kobashi,PSE Park: Framework for Problem Solving Environments.,2010,5,JCIT,4,db/journals/jcit/jcit5.html#KobashiKMMUB10,http://www.aicit.org/jcit/ppl/Binder6_Part23.pdf +Jin-Cherng Lin,Using Rough Set and Fuzzy Method to Discover the Effects of Acid Rain on the Plant Growth.,2007,2,JCIT,1,db/journals/jcit/jcit2.html#LinW07,http://www.aicit.org/jcit/papers/jcit2-1/4.%20Using%20Rough%20Set.pdf +Hai Guo,Segmentation Method for NaXi Pictograph Character Recognition.,2010,5,JCIT,6,db/journals/jcit/jcit5.html#GuoZ10,http://www.aicit.org/jcit/ppl/09.%20JCIT_vol5num6.pdf +Peng Yang,Finding Key Knowledge Attribute Subspace of Outliers for High Dimensional Dataset.,2010,5,JCIT,6,db/journals/jcit/jcit5.html#YangZ10,http://www.aicit.org/jcit/ppl/15.%20JCIT_vol5num6.pdf +Eunjoo Lee,An Agent-Based Framework to Support Dynamic Web Service Composition.,2006,1,JCIT,1,db/journals/jcit/jcit1.html#Lee06, +Abbas Rasoolzadegan Barforoush,A New Rule Scheduling Approach based on Estimation of Rule Execution Probability in Active Database.,2008,3,JCIT,3,db/journals/jcit/jcit3.html#RasoolzadeganAA08,http://www.aicit.org/jcit/ppl/jcit_vol3no3_1.pdf +Zheng Wei,Integrated Resources Optimization in Three-layer Dynamic Network.,2010,5,JCIT,6,db/journals/jcit/jcit5.html#WeiSX10,http://www.aicit.org/jcit/ppl/03.%20JCIT1-315123.pdf +Rezeg Khaled,Geospatial Web Services Semantic Discovery Approach Using Quality.,2010,5,JCIT,2,db/journals/jcit/jcit5.html#KhaledTS10,http://www.aicit.org/jcit/ppl/03_april.pdf +Shuoben Bi,Research on Spatial Knowledge Reasoning about Jiangzhai Settlement in First Period.,2010,5,JCIT,1,db/journals/jcit/jcit5.html#BiLXL10,http://www.aicit.org/jcit/ppl/jcit5-1_paper15.pdf +N. Krishnan,Adaptive Source pixel based Prediction for Lossless Intra Coding of H.264 MPEG-4 /AVC.,2008,3,JCIT,1,db/journals/jcit/jcit3.html#KrishnanVSS08,http://www.aicit.org/jcit/papers/jcit3-1/7-jcit3-1.pdf +Maged Marghany,Robust Model for sea surface current simulation from radarsat-1 SAT data.,2008,3,JCIT,2,db/journals/jcit/jcit3.html#MarghanyH08,http://www.aicit.org/jcit/papers/jcit3-2/jcit0302-7.pdf +Bin Chen,SCS: A VM-Based Approach to Achieve High Scalable and Available Server Environment.,2007,2,JCIT,1,db/journals/jcit/jcit2.html#ChenX07,http://www.aicit.org/jcit/papers/jcit2-1/2.%20SCS.pdf +Chunchen Liu,Dealing with Uncertainty in Situation-aware Computing System.,2010,5,JCIT,9,db/journals/jcit/jcit5.html#LiuLW10,http://www.aicit.org/jcit/ppl/JCIT0509_18.pdf +Zhao-xiong He,Tactical Data Link Channel-PHY Modeling and Simulation in Network Simulator 2.,2010,5,JCIT,9,db/journals/jcit/jcit5.html#HeLLZ10,http://www.aicit.org/jcit/ppl/JCIT0509_24.pdf +Heung-Kuk Jo,An Implementation of a RFID Tag ID Relay-Transmission over the Wireless and TCP/IP.,2006,1,JCIT,1,db/journals/jcit/jcit1.html#JoL06, +Xinwu Li,A Cell Projection Algorithm Based on Feature Region Segmentation and Cells Sorting.,2010,5,JCIT,6,db/journals/jcit/jcit5.html#Xinwu10,http://www.aicit.org/jcit/ppl/06.%20JCIT_vol5num6.pdf +Gabriella Spinelli,A Paper-Centred Information System: Effectiveness and Quality Implications in UK Police Intelligence Units.,2007,2,JCIT,3,db/journals/jcit/jcit2.html#SpinelliS07,http://www.aicit.org/jcit/papers/jcit2-3/2_jcit_2_3.pdf +Poo Kuan Hoong,A Two-layer Super-Peer based P2P Live Media Streaming System.,2007,2,JCIT,3,db/journals/jcit/jcit2.html#HoongM07,http://www.aicit.org/jcit/papers/jcit2-3/6_jcit_2_3.pdf +S. Janakiraman,An Intelligent Distributed Intrusion Detection System using Genetic Algorithm.,2009,4,JCIT,1,db/journals/jcit/jcit4.html#JanakiramanV09,http://www.aicit.org/jcit/ppl/jcit040111.pdf +Tinghuai Ma,Virtual Resource Management Based Meteorological Computational Grid .,2010,5,JCIT,10,db/journals/jcit/jcit5.html#MaGTWS10,http://www.aicit.org/jcit/ppl/017_JCIT1-726263JE.pdf +Peiguang Lin,Research on the Expression and Extraction of WDB.,2010,5,JCIT,3,db/journals/jcit/jcit5.html#LinZ10,http://www.aicit.org/jcit/ppl/may_15.pdf +Zhanmao Cao,Destination-oriented Routing and Maximum Capacity Scheduling Algorithms in Cayley Graph Model for Wireless Mesh Network.,2010,5,JCIT,10,db/journals/jcit/jcit5.html#CaoP10,http://www.aicit.org/jcit/ppl/011_JCIT1-685246.pdf +Xueying Tian,Research on Corporate Citizenship Engaging in Social Welfare Activities.,2010,5,JCIT,4,db/journals/jcit/jcit5.html#Tian10,http://www.aicit.org/jcit/ppl/Binder6_Part7.pdf +Rui Yang,Model Checking Cryptographic Protocols with Interval Temporal Logic.,2010,5,JCIT,10,db/journals/jcit/jcit5.html#YangN10,http://www.aicit.org/jcit/ppl/019_JCIT1-725262.pdf +Shashikala Tapaswi,Frame Sliced Parallel Signature Files for Fast Colored Image Retrieval.,2007,2,JCIT,2,db/journals/jcit/jcit2.html#Tapaswi07,http://www.aicit.org/jcit/papers/jcit2-2/2_FrameEdited.pdf +Reena T. N. Shetty,A Dynamic Knowledge Representation Model based on Hybrid Approach.,2007,2,JCIT,3,db/journals/jcit/jcit2.html#ShettyRQ07,http://www.aicit.org/jcit/papers/jcit2-3/4_jcit_2_3.pdf +Ying Wang,Attribute Extraction System for Agricultural SEM.,2010,5,JCIT,3,db/journals/jcit/jcit5.html#WangLBY10,http://www.aicit.org/jcit/ppl/3.pdf +Swarup Roy,OPAM-An Efficient One Pass Association Mining Technique without Candidate Generation.,2008,3,JCIT,3,db/journals/jcit/jcit3.html#RoyB08,http://www.aicit.org/jcit/ppl/jcit_vol3no3_5.pdf +Juchi Hou,Grey Relational Analysis Method for Multiple Attribute Decision Making in Intuitionistic Fuzzy Setting.,2010,5,JCIT,10,db/journals/jcit/jcit5.html#Hou10a,http://www.aicit.org/jcit/ppl/025_JCIT4-747123.pdf +Ming-Chang Lee,Development Multi-Enterprise Collaborative Enterprise intelligent decision support system.,2007,2,JCIT,2,db/journals/jcit/jcit2.html#LeeC07,http://www.aicit.org/jcit/papers/jcit2-2/9_MingEdited1.pdf +Cheng Xian-yi,The Research of Chinese Semantic Similarity Calculation Introduced Punctuations.,2010,5,JCIT,7,db/journals/jcit/jcit5.html#Xian-yiPQY10,http://www.aicit.org/jcit/ppl/JCIT_09-02_375047.pdf +Xudong Lin,Data Mining for Forecasting the Broiler Price Using Wavelet Transform.,2010,5,JCIT,3,db/journals/jcit/jcit5.html#LinLLW10a,http://www.aicit.org/jcit/ppl/may_16.pdf +Kentaro Takai,Development of Problem Solving Environment for Large Scale Electronic Structure Calculations Based on Tight Binding Method.,2010,5,JCIT,4,db/journals/jcit/jcit5.html#TakaiKUK10,http://www.aicit.org/jcit/ppl/Binder6_Part20.pdf +Yuki Nakanishi,Optimizing Reaching Definitions Overhead in Queue Processors.,2007,2,JCIT,4,db/journals/jcit/jcit2.html#NakanishiCAS07,http://www.aicit.org/jcit/papers/jcit2-4/4_jcit2_4.pdf +Yongheng Chen,Optimization Strategy of Parallel Query Processing Based on Multi-core Architecture.,2010,5,JCIT,8,db/journals/jcit/jcit5.html#ChenZHC10,http://www.aicit.org/jcit/ppl/24-JCIT4-657097.pdf +Seungchul Park,Dynamic DiffServ Quality of Service for SIP in Broadband Access Networks.,2006,1,JCIT,1,db/journals/jcit/jcit1.html#Park06, +Chu-Fu Wang,Movement-Assisted Deployment for Irregular Sensor Density in Wireless Sensor Networks.,2009,4,JCIT,2,db/journals/jcit/jcit4.html#WangHS09,http://www.aicit.org/jcit/ppl/jcit_version6_Part2.pdf +Yu Chen,Research on Automatic Pattern Acquisition Based on Construction Extension.,2010,5,JCIT,1,db/journals/jcit/jcit5.html#ChenZZZ10,http://www.aicit.org/jcit/ppl/jcit5-1_paper14.pdf +Mamoun Hussein Mamoun,A Newly Routing Protocol for MANET.,2009,4,JCIT,4,db/journals/jcit/jcit4.html#Mamoun09b,http://www.aicit.org/jcit/ppl/vo4iss4paper6.pdf +Chuntao Lu,STBH: A Spectrum-tree-based Hybrid Routing Protocol for Cognitive Network.,2010,5,JCIT,6,db/journals/jcit/jcit5.html#LuZWLZ10,http://www.aicit.org/jcit/ppl/20.%20JCIT_vol5num6.pdf +Seyed Zeinolabedin Moussavi,The New Face Recognition Technique With the use of PCA and LDA.,2008,3,JCIT,2,db/journals/jcit/jcit3.html#MoussaviES08,http://www.aicit.org/jcit/papers/jcit3-2/jcit0302-5.pdf +Weon Sang Yoo,A Game Theoretic Modeling Analysis on the Internet Channel Disintermediation.,2009,4,JCIT,3,db/journals/jcit/jcit4.html#YooLK09,http://www.aicit.org/jcit/ppl/02.pdf +Saber Benharzallah,A Scalable and Efficient Query Answering for a Context and Schema Mediation.,2010,5,JCIT,1,db/journals/jcit/jcit5.html#SaberO10,http://www.aicit.org/jcit/ppl/jcit5-1_paper3.pdf +Wann-Jyi Horng,A DCC Analysis of Two Stock Market Returns Volatility with an Oil Price Factor: An Evidence Study of Singapore and Thailand's Stock Markets.,2009,4,JCIT,1,db/journals/jcit/jcit4.html#HorngC09,http://www.aicit.org/jcit/ppl/jcit040110.pdf +Bao-sen Wang,The Study on the Evaluation System of Investment Value of Listed Companies on the GEM.,2010,5,JCIT,5,db/journals/jcit/jcit5.html#WangLS10,http://www.aicit.org/jcit/ppl/Part2_Binder10.pdf +Bae-Ling Chen,Weaknesses of a Secure Dynamic ID Based Remote User Authentication Scheme.,2010,5,JCIT,4,db/journals/jcit/jcit5.html#ChenKC10,http://www.aicit.org/jcit/ppl/Binder6_Part9.pdf +Yang Peng,A Particle Swarm Optimization to Vehicle Routing Problem with Fuzzy Demands.,2010,5,JCIT,6,db/journals/jcit/jcit5.html#PengQ10,http://www.aicit.org/jcit/ppl/11.%20JCIT_vol5num6.pdf +Anestis A. Toptsis,Affective Space Calibration in Action-rich Media Affective Systems.,2008,3,JCIT,4,db/journals/jcit/jcit3.html#ToptsisD08,http://www.aicit.org/jcit/ppl/Combined2_Part2.pdf +Joseph K. Siror,Impact of RFID Technology on Tracking of Export Goods in Kenya.,2010,5,JCIT,9,db/journals/jcit/jcit5.html#SirorLPSW10,http://www.aicit.org/jcit/ppl/JCIT0509_19.pdf +Anirban Kundu,Multi-layered Service Suite Conceptualization in Cloud Computing.,2010,5,JCIT,10,db/journals/jcit/jcit5.html#KunduB10,http://www.aicit.org/jcit/ppl/005_JCIT1-690249JE.pdf +Koichi Shimizu,A PSE for Finite Element Method.,2010,5,JCIT,4,db/journals/jcit/jcit5.html#ShimizuUK10,http://www.aicit.org/jcit/ppl/Binder6_Part18.pdf +Lifang Liu 0001,Moitf GibbsGA: Sampling Transcription Factor Binding Sites Coupled with PSFM Optimization by Genetic Algorithm.,2010,5,JCIT,10,db/journals/jcit/jcit5.html#LiuJ10,http://www.aicit.org/jcit/ppl/018_JCIT2-545028.pdf +Alaa Mohamed Riad,Review of e-Learning Systems Convergence from Traditional Systems to Services based Adaptive and Intelligent Systems.,2009,4,JCIT,2,db/journals/jcit/jcit4.html#RiadEE09a,http://www.aicit.org/jcit/ppl/jcit_version6_Part13.pdf +Pei-yu Liu,Email Representation using Noncharacteristic Information and its Application.,2010,5,JCIT,8,db/journals/jcit/jcit5.html#LiuZZ10,http://www.aicit.org/jcit/ppl/19-JCIT1-629221.pdf +Shifei Ding,An Improved BP Neural Network Algorithm Based on Factor Analysis.,2010,5,JCIT,4,db/journals/jcit/jcit5.html#DingJSLC10,http://www.aicit.org/jcit/ppl/Binder6_Part11.pdf +Peide Liu,The Extended TOPSIS Based on Trapezoid Fuzzy Linguistic Variables.,2010,5,JCIT,4,db/journals/jcit/jcit5.html#LiuS10,http://www.aicit.org/jcit/ppl/Binder6_Part5.pdf +Zhongzhi Li,Multiple Target Tracking Using Reverse Prediction Weighted Neighbor Data Association.,2010,5,JCIT,8,db/journals/jcit/jcit5.html#LiW10,http://www.aicit.org/jcit/ppl/21-JCIT1-620219.pdf +Nalayini Natarajan,Design Methodology of a Controller to Forecast the Uncertain Cardiac Arrest Using Fuzzy Logic Approach.,2008,3,JCIT,3,db/journals/jcit/jcit3.html#NatarajanB08,http://www.aicit.org/jcit/ppl/jcit_vol3no3_7.pdf +Akinori Kanasugi,A Processor for Genetic Algorithm using Dynamically Reconfigurable Memory.,2007,2,JCIT,1,db/journals/jcit/jcit2.html#KanasugiT07,http://www.aicit.org/jcit/papers/jcit2-1/1.%20A%20Processor%20for.pdf +Chein-Shung Hwang,Genetic Algorithms for Feature Weighting in Multi-criteria Recommender Systems.,2010,5,JCIT,8,db/journals/jcit/jcit5.html#Hwang10,http://www.aicit.org/jcit/ppl/13-JCIT1-652233.pdf +Ping Guo,A Method for Classification of Convex Polygons.,2007,2,JCIT,3,db/journals/jcit/jcit2.html#GuoW07,http://www.aicit.org/jcit/papers/jcit2-3/7_jcit_2_3.pdf +Jiaomin Liu,The Low-voltage Electrical Network Routing Strategy.,2010,5,JCIT,7,db/journals/jcit/jcit5.html#LiuLZF10,http://www.aicit.org/jcit/ppl/JCIT_09-03_405146.pdf +Changsheng Wan,A Novel Authentication Protocol for Wireless Access Security.,2010,5,JCIT,8,db/journals/jcit/jcit5.html#WanHZ10,http://www.aicit.org/jcit/ppl/22-JCIT1-647230.pdf +Jinyu Li,Limit Equilibrium Analysis of the Influence of Matric Suction on Unsaturated Soil Slope Stability.,2010,5,JCIT,10,db/journals/jcit/jcit5.html#LiYL10,http://www.aicit.org/jcit/ppl/021_JCIT5-722025.pdf +Yang Zhao,The Information Resources Allocation Mechanisms in The National Innovation System of Finland.,2010,5,JCIT,9,db/journals/jcit/jcit5.html#ZhaoGV10,http://www.aicit.org/jcit/ppl/JCIT0509_02.pdf +Prasanta Gogoi,Anomaly Detection Analysis of Intrusion Data Using Supervised and Unsupervised Approach.,2010,5,JCIT,1,db/journals/jcit/jcit5.html#GogoiBB10,http://www.aicit.org/jcit/ppl/jcit5-1_paper11.pdf +Chen Hong,A GMDH-Based Traffic Flow Forecasting Model.,2010,5,JCIT,2,db/journals/jcit/jcit5.html#Hong10,http://www.aicit.org/jcit/ppl/12_april.pdf +H. N. Zaynidinov,Digital Signal Processing With Application of Basic Splines.,2009,4,JCIT,1,db/journals/jcit/jcit4.html#ZaynidinovCY09, +Byung-Sun Yoo,A Study on USN Management for Tunnel Entry Slope.,2009,4,JCIT,2,db/journals/jcit/jcit4.html#YooPLKP09,http://www.aicit.org/jcit/ppl/jcit_version6_Part7.pdf +N. Saravana Selvam,Active Network Based Queue Management for Providing QoS Using IXP 2400 Network Processor.,2010,5,JCIT,7,db/journals/jcit/jcit5.html#SelvamR10,http://www.aicit.org/jcit/ppl/JCIT_09-01_359132.pdf +Seung-Ju Jang,Design of Virtual Memory Compression System for the Embedded System.,2007,2,JCIT,4,db/journals/jcit/jcit2.html#Jang07,http://www.aicit.org/jcit/papers/jcit2-4/7_jcit2_4.pdf +Byung-Rae Cha,Comparison of S/W Source Code vs Digital License for IPR.,2006,1,JCIT,1,db/journals/jcit/jcit1.html#Cha06, +Aiping Li,Harmonic Triangular Norm Aggregation Operators in Multicriteria Decision Systems.,2007,2,JCIT,1,db/journals/jcit/jcit2.html#LiYW07a,http://www.aicit.org/jcit/papers/jcit2-1/10.%20Harmonic%20Triangular.pdf +Huy Hoang Ngo,An Individual and Group Authentication Model for Wireless Network Services.,2010,5,JCIT,1,db/journals/jcit/jcit5.html#NgoWLS10,http://www.aicit.org/jcit/ppl/jcit5-1_paper10.pdf +Lluís Belanche,On the design of metric relations.,2008,3,JCIT,3,db/journals/jcit/jcit3.html#BelancheO08,http://www.aicit.org/jcit/ppl/jcit_vol3no3_10.pdf +D. Latha,Intuitionistic rough fuzziness and its generalizations.,2008,3,JCIT,3,db/journals/jcit/jcit3.html#LathaRG08,http://www.aicit.org/jcit/ppl/jcit_vol3no3_11.pdf +Li Fan,An Improved Image Fusion Algorithm Based on Wavelet Decomposition.,2010,5,JCIT,10,db/journals/jcit/jcit5.html#FanZZSWW10,http://www.aicit.org/jcit/ppl/003_JCIT1-656236.pdf +E. Baburaj,An Enhanced tree based MAODV Protocol for MANETs using Genetic Algorithm.,2008,3,JCIT,2,db/journals/jcit/jcit3.html#BaburajV08,http://www.aicit.org/jcit/papers/jcit3-2/jcit0302-4.pdf +Md. Imdadul Islam,Determination of Save Operating Border of Asynchronous Data Traffic Based on MMPP.,2009,4,JCIT,4,db/journals/jcit/jcit4.html#IslamA09,http://www.aicit.org/jcit/ppl/vo4iss4paper5.pdf +Changsheng Wan,Managing Handover Authentication in Big-domain Wireless Environment.,2009,4,JCIT,3,db/journals/jcit/jcit4.html#WanHZ09,http://www.aicit.org/jcit/ppl/13.pdf +Sotiris B. Kotsiantis,Financial Application of Multi-Instance Learning: Two Greek Case Studies.,2010,5,JCIT,8,db/journals/jcit/jcit5.html#KotsiantisKT10,http://www.aicit.org/jcit/ppl/5-JCIT4-644093.pdf +Mithun Karmakar,Privacy Preserving Data Mining Using Matrix Algebraic Approach.,2009,4,JCIT,3,db/journals/jcit/jcit4.html#KarmakarB09,http://www.aicit.org/jcit/ppl/05.pdf +Krishan Sabaragamu Koralalage,OTag: Architecture to Represent Real World Objects in RF Tags to Improve Future Intelligent Transportation Systems.,2009,4,JCIT,2,db/journals/jcit/jcit4.html#KoralalageY09, +Jin-Kyoung Heo,Distributed Object Activation for Web Application Encipherment Key.,2009,4,JCIT,1,db/journals/jcit/jcit4.html#Heo09,http://www.aicit.org/jcit/ppl/jcit040109.pdf +Marjan Bahrololum,An Improved Intrusion Detection Technique based on two Strategies Using Decision Tree and Neural Network.,2009,4,JCIT,4,db/journals/jcit/jcit4.html#BahrololumSK09,http://www.aicit.org/jcit/ppl/vo4iss4paper14.pdf +Guoqiang Cai,Modelling of Electrohydraulic System Using RBF Neural Networks and Genetic Algorithm.,2010,5,JCIT,7,db/journals/jcit/jcit5.html#CaiTX10,http://www.aicit.org/jcit/ppl/JCIT_09-04_474028JE.pdf +Chengbo Xu,Petersen-Twisted-Torus Networks for Multiprocessor Systems.,2010,5,JCIT,9,db/journals/jcit/jcit5.html#XuWH10,http://www.aicit.org/jcit/ppl/JCIT0509_20.pdf +Fengxia Wang,Cost-Sensitive Support Vector Ranking for Information Retrieval.,2010,5,JCIT,10,db/journals/jcit/jcit5.html#WangC10,http://www.aicit.org/jcit/ppl/014_JCIT1-661237.pdf +Yong-qing Wei,Feature-Denoising Based on Average Fitness of Genetic Population.,2010,5,JCIT,8,db/journals/jcit/jcit5.html#WeiXZ10,http://www.aicit.org/jcit/ppl/18-JCIT1-636224.pdf +Reza Entezari-Maleki,Comparison of Classification Methods Based on the Type of Attributes and Sample Size.,2009,4,JCIT,3,db/journals/jcit/jcit4.html#Entezari-MalekiRM09,http://www.aicit.org/jcit/ppl/14.pdf +N. Sankar Ram,Architectural Patterns for Finding your.,2008,3,JCIT,4,db/journals/jcit/jcit3.html#RamR08,http://www.aicit.org/jcit/ppl/Combined2_Part8.pdf +Ding Pan,An Integrative Framework for Continuous Knowledge Discovery.,2010,5,JCIT,3,db/journals/jcit/jcit5.html#Pan10a,http://www.aicit.org/jcit/ppl/7.pdf +Jun Tang,Improved K-means Clustering Algorithm Based on User Tag.,2010,5,JCIT,10,db/journals/jcit/jcit5.html#Tang10,http://www.aicit.org/jcit/ppl/016_JCIT3-699042.pdf +Lin Chen,A Measure on Joint Default Risk Based Credit Rating Information and Combinatorial Copula Function.,2009,4,JCIT,1,db/journals/jcit/jcit4.html#ChenZ09,http://www.aicit.org/jcit/ppl/jcit040106.pdf +Hosein Alizadeh,A New Method for Improving the Performance of K Nearest Neighbor using Clustering Technique.,2009,4,JCIT,2,db/journals/jcit/jcit4.html#AlizadehMA09,http://www.aicit.org/jcit/ppl/jcit_version6_Part10.pdf +N. P. Kavya,Mining Processes using cluster approach for representing workflows.,2008,3,JCIT,3,db/journals/jcit/jcit3.html#KavyaSN08,http://www.aicit.org/jcit/ppl/jcit_vol3no3_2.pdf +Byung-Rae Cha,FTP Anomaly Detection Improvement by Indirection Relation and BF-XML Profiling.,2006,1,JCIT,1,db/journals/jcit/jcit1.html#ChaKL06, +Kazuya Odagiri,Basic Portal System with the Function of Communication Control for Each User.,2008,3,JCIT,1,db/journals/jcit/jcit3.html#OdagiriYTI08,http://www.aicit.org/jcit/papers/jcit3-1/3-jcit3-1.pdf +A. N. M. Rezaul Karim,Dynamic Threshold for Morphological Change Detection Algorithm.,2009,4,JCIT,3,db/journals/jcit/jcit4.html#KarimA09,http://www.aicit.org/jcit/ppl/07.pdf +Xudong Song,Study on Enterprises Group Order Allocation Multi-objective Model.,2010,5,JCIT,9,db/journals/jcit/jcit5.html#SongZQ10,http://www.aicit.org/jcit/ppl/JCIT0509_17.pdf +Kunfang Song,A Flexible Grid Task Scheduling Algorithm Based on QoS Similarity.,2010,5,JCIT,7,db/journals/jcit/jcit5.html#SongRJ10,http://www.aicit.org/jcit/ppl/JCIT_09-21_595202.pdf +Hrudaya K. Tripathy,A Knowledge based Approach Using Fuzzy Inference Rules for Vowel Recognition.,2008,3,JCIT,1,db/journals/jcit/jcit3.html#TripathyTD08,http://www.aicit.org/jcit/papers/jcit3-1/6-jcit3-1.pdf +Dong Jiang,Research on Operation Rules Modeling in Equipment Training System.,2010,5,JCIT,4,db/journals/jcit/jcit5.html#JiangC10,http://www.aicit.org/jcit/ppl/Binder6_Part1.pdf +Chaoqun Li,An Improved Instance Weighted Linear Regression.,2010,5,JCIT,3,db/journals/jcit/jcit5.html#LiL10,http://www.aicit.org/jcit/ppl/may_17.pdf +Kuang Haibo,AMC Non-Performing Assets Disposal with CDO in China.,2010,5,JCIT,7,db/journals/jcit/jcit5.html#HaiboWJ10,http://www.aicit.org/jcit/ppl/JCIT_09-26_640091JE.pdf +Yuanhong Zhong,A Cascaded Wireless System of SCCP and FMT with Cyclic Delay Diversity.,2010,5,JCIT,10,db/journals/jcit/jcit5.html#ZhongGWH10,http://www.aicit.org/jcit/ppl/026_JCIT1-742268.pdf +Koun-Tem Sun,On Deriving an Equation of the Mutation Rate of the Hepatitis B Virus.,2010,5,JCIT,5,db/journals/jcit/jcit5.html#SunWHLC10,http://www.aicit.org/jcit/ppl/Part15_Binder10.pdf +Hua-Yi Lin,High Effect Secure Data Transmission Mechanisms in Wireless Sensor Networks Using ID-Based Key Management Scheme.,2009,4,JCIT,1,db/journals/jcit/jcit4.html#Lin09,http://www.aicit.org/jcit/ppl/jcit040112.pdf +Xueliang Wei,Shunt APF Based on Current Loop Repetitive Control.,2010,5,JCIT,4,db/journals/jcit/jcit5.html#Wei10,http://www.aicit.org/jcit/ppl/Binder6_Part4.pdf +Akira Hattori,A Local Safety Knowledge Sharing System for Proactive Management by Citizens.,2008,3,JCIT,4,db/journals/jcit/jcit3.html#HattoriGH08,http://www.aicit.org/jcit/ppl/Combined2_Part4.pdf +Hiroyuki Kanazawa,Application Hosting Services for Research Community on Multiple Grid Environments.,2010,5,JCIT,4,db/journals/jcit/jcit5.html#KanazawaOMTU10,http://www.aicit.org/jcit/ppl/Binder6_Part16.pdf +Hai Guo,A Preprocessing Method for NaXi Pictograph Character Recognition.,2010,5,JCIT,2,db/journals/jcit/jcit5.html#GuoZD10,http://www.aicit.org/jcit/ppl/07_april.pdf +Saeedreza Ehteram,Utilizing a Pattern Recognition Controller and Linear Discriminate Analysis for MFL Defect Detection.,2009,4,JCIT,1,db/journals/jcit/jcit4.html#EhteramSMSJ09,http://www.aicit.org/jcit/ppl/jcit040102.pdf +Liang Hu,Improvement on Intrusion Detection Technology Based on Protocol Analysis and Pattern Matching.,2010,5,JCIT,3,db/journals/jcit/jcit5.html#HuTKZ10,http://www.aicit.org/jcit/ppl/may_13.pdf +Zonghao Zhou,Reliability Analysis of the MAP/M/c Queue with Server Breakdowns.,2010,5,JCIT,5,db/journals/jcit/jcit5.html#ZhouZ10,http://www.aicit.org/jcit/ppl/Part14_Binder10.pdf +Jianli Wei,A Risk Evaluation Method for the High-Technology Project Investment Based on ET-WA Operator with 2-Tuple Linguistic Information.,2010,5,JCIT,10,db/journals/jcit/jcit5.html#Wei10a,http://www.aicit.org/jcit/ppl/022_JCIT4-748124.pdf +Huafeng Wu,Spirit: Security and Privacy in Real-Time Monitoring System.,2010,5,JCIT,10,db/journals/jcit/jcit5.html#WuSM10,http://www.aicit.org/jcit/ppl/004_JCIT3-312016IP.pdf +Cunli Song,Dynamic Integrated Algorithm for Production Scheduling Based on Iterative Search.,2010,5,JCIT,10,db/journals/jcit/jcit5.html#SongLWH10,http://www.aicit.org/jcit/ppl/020_JCIT4-727116.pdf +Debajyoti Mukhopadhyay,A Novel Approach for Domain Specific Lucky Web Search.,2010,5,JCIT,5,db/journals/jcit/jcit5.html#MukhopadhyayS10a,http://www.aicit.org/jcit/ppl/Part7_Binder10.pdf +Xian-Yi Cheng,The Overview of Text Representative Model.,2010,5,JCIT,10,db/journals/jcit/jcit5.html#ChengLZW10,http://www.aicit.org/jcit/ppl/006_JCIT4-698110.pdf +Atefeh Ahmadi,Automatic Location Update using IPV6 Addressing Format for Next Generation Network.,2009,4,JCIT,2,db/journals/jcit/jcit4.html#AhmadiB09,http://www.aicit.org/jcit/ppl/jcit_version6_Part14.pdf +Xiaohui Wei,GDIA: A Scalable Grid Infrastructure for Data Intensive Applications.,2007,2,JCIT,1,db/journals/jcit/jcit2.html#WeiDLTLA07,http://www.aicit.org/jcit/papers/jcit2-1/9.%20GDIA.pdf +Taiyo Maeda,Construction of PSE System for Developing Reinforcement Learning Algorithms.,2010,5,JCIT,4,db/journals/jcit/jcit5.html#MaedaAM10,http://www.aicit.org/jcit/ppl/Binder6_Part14.pdf +Dong-Mo Koo,Experiential Motives for Playing Online Games.,2007,2,JCIT,2,db/journals/jcit/jcit2.html#KooLC07,http://www.aicit.org/jcit/papers/jcit2-2/6_GamesEdited.pdf +Kaipeng Liu,Incorporating Relevance and Importance for Dynamic Ranking in Folksonomies.,2010,5,JCIT,8,db/journals/jcit/jcit5.html#LiuFZ10,http://www.aicit.org/jcit/ppl/11-JCIT5-589019.pdf +Xu Xiang,A Secure Routing Protocol for Peer-to-Peer Network.,2010,5,JCIT,4,db/journals/jcit/jcit5.html#XiangC10,http://www.aicit.org/jcit/ppl/Binder6_Part8.pdf +A. Martin,Multi Agent Communication System for Online Auction with Decision Support System by JADE and TRACE.,2009,4,JCIT,2,db/journals/jcit/jcit4.html#MartinLM09,http://www.aicit.org/jcit/ppl/jcit_version6_Part16.pdf +Xiao Yang,Fuzzy Support Vector Machine Method for Evaluating Innovation Sources in Service Firms.,2010,5,JCIT,7,db/journals/jcit/jcit5.html#YangCY10,http://www.aicit.org/jcit/ppl/JCIT_09-25_627033.pdf +Jianli Wei,TOPSIS Method for Multiple Attribute Decision Making with Incomplete Weight Information in Linguistic Setting.,2010,5,JCIT,10,db/journals/jcit/jcit5.html#Wei10b,http://www.aicit.org/jcit/ppl/023_JCIT4-749125.pdf +Nabendu Chaki,Virtual Data Warehouse Modeling Using Petri Nets for Distributed Decision Making.,2010,5,JCIT,5,db/journals/jcit/jcit5.html#ChakiS10,http://www.aicit.org/jcit/ppl/Part1_Binder10.pdf +Mohammed Benjelloun,Edge Closing of Synthetic and Real Images using Polynomial Fitting.,2007,2,JCIT,4,db/journals/jcit/jcit2.html#BenjellounOP07,http://www.aicit.org/jcit/papers/jcit2-4/1_jcit2_4.pdf +Vijayasundaram Uma,A Multilevel Semantic Document Classifier Based On SVM Integrated With Domain Ontologies.,2008,3,JCIT,3,db/journals/jcit/jcit3.html#UmaSA08,http://www.aicit.org/jcit/ppl/jcit_vol3no3_9.pdf +Qian Zhu,The Semantic Tagging Model of Chinese Question Chunk Based on Description Logic.,2010,5,JCIT,9,db/journals/jcit/jcit5.html#ZhuC10,http://www.aicit.org/jcit/ppl/JCIT0509_11.pdf +Alireza Dehestani,Comparative Study of M/Er/1 and M/M/1 Queuing Delay Models of the two IP-PBXs.,2010,5,JCIT,2,db/journals/jcit/jcit5.html#DehestaniH10,http://www.aicit.org/jcit/ppl/04_april.pdf +Mohammed J. Islam,Investigating the Performance of Naive- Bayes Classifiers and K- Nearest Neighbor Classifiers.,2010,5,JCIT,2,db/journals/jcit/jcit5.html#IslamWAS10,http://www.aicit.org/jcit/ppl/15_april.pdf +Soosun Cho,Multimodal Web Content Conversion for Mobile Services in a U-City.,2008,3,JCIT,2,db/journals/jcit/jcit3.html#ChoS08,http://www.aicit.org/jcit/papers/jcit3-2/jcit0302-3.pdf +Nan Dong,Crowd Density Estimation Using Sparse Texture Features.,2010,5,JCIT,6,db/journals/jcit/jcit5.html#DongLL10,http://www.aicit.org/jcit/ppl/13.%20JCIT_vol5num6.pdf +Deepak Dahiya,Delivering a Course in Software Engineering: A Hands On Approach.,2010,5,JCIT,5,db/journals/jcit/jcit5.html#Dahiya10,http://www.aicit.org/jcit/ppl/Part10_Binder10.pdf +Gang Chen,Design and Realization of Equipment Training Simulator.,2010,5,JCIT,4,db/journals/jcit/jcit5.html#Chen10,http://www.aicit.org/jcit/ppl/Binder6_Part2.pdf +Ying Zhang,A Signal Aware Movement Control Algorithm for GPS-free Ad Hoc Networks.,2010,5,JCIT,9,db/journals/jcit/jcit5.html#ZhangSCYD10,http://www.aicit.org/jcit/ppl/JCIT0509_25.pdf +Hanxing Liu,Research and Implementation of Ontological QA System Based on FAQ.,2010,5,JCIT,3,db/journals/jcit/jcit5.html#LiuLL10,http://www.aicit.org/jcit/ppl/may_12.pdf +Marcelo de Carvalho Alves,Neuro-fuzzy operational performance of a coffee harvester machine.,2009,4,JCIT,2,db/journals/jcit/jcit4.html#AlvesSFS09,http://www.aicit.org/jcit/ppl/jcit_version6_Part6.pdf +Zhongbao Chen,Signal Spectrum Sensing Robust to Noise Uncertainty.,2010,5,JCIT,2,db/journals/jcit/jcit5.html#ChenBF10,http://www.aicit.org/jcit/ppl/06_april.pdf +Hanan Ahmed Hosni Mahmoud Abd Alla,A Multi Join Algorithm Utilizing Double Indices.,2009,4,JCIT,4,db/journals/jcit/jcit4.html#AllaS09,http://www.aicit.org/jcit/ppl/vo4iss4paper9.pdf +Xi Li,Research on System Integration Alliance of Urban Rail Transit Safety Monitoring.,2010,5,JCIT,7,db/journals/jcit/jcit5.html#LiZC10,http://www.aicit.org/jcit/ppl/JCIT_09-05_523068JE.pdf +A. R. Riad,Service-Oriented Architecture - A New Alternative to Traditional Integration Methods in B2B Applications.,2008,3,JCIT,1,db/journals/jcit/jcit3.html#RiadH08,http://www.aicit.org/jcit/papers/jcit3-1/4-jcit3-1.pdf +P. M. Joe Prathap,Secure Key Management with optimal resource allocation using multiple edge sharing multicast trees.,2009,4,JCIT,2,db/journals/jcit/jcit4.html#PrathapV09,http://www.aicit.org/jcit/ppl/jcit_version6_Part11.pdf +Mohd Helmy Abd Wahab,GSM Based Electrical Control System for Smart Home Application.,2010,5,JCIT,1,db/journals/jcit/jcit5.html#WahabAJK10,http://www.aicit.org/jcit/ppl/jcit5-1_paper4.pdf +G. Madhu,Data Mining for Genetics: A Genetic Algorithm Approach.,2008,3,JCIT,3,db/journals/jcit/jcit3.html#MadhuR08,http://www.aicit.org/jcit/ppl/jcit_vol3no3_6.pdf +Jeong-Hye Han,Physical Learning Activities with a Teaching Assistant Robot in Elementary School Music Class.,2010,5,JCIT,5,db/journals/jcit/jcit5.html#HanKK10,http://www.aicit.org/jcit/ppl/Part3_Binder10.pdf +Robert C. Meurant,Spatial Play in Language Acquisition.,2007,2,JCIT,1,db/journals/jcit/jcit2.html#Meurant07a,http://www.aicit.org/jcit/papers/jcit2-1/6.%20Spatial%20Play.pdf +YunYoung Hur,Analysis on Children's Tolerance to Weak Recognition of Storytelling Robots.,2009,4,JCIT,3,db/journals/jcit/jcit4.html#HurH09,http://www.aicit.org/jcit/ppl/15.pdf +Xue Deng,Constraint Method for Possibilistic Mean-variance Portfolio with Transaction Costs and Lending.,2010,5,JCIT,9,db/journals/jcit/jcit5.html#DengZYL10,http://www.aicit.org/jcit/ppl/JCIT0509_07.pdf +Hyung Suk Kang,Analysis of a Reversed Trapezoidal Fin with Fluid in the Inside Wall.,2007,2,JCIT,3,db/journals/jcit/jcit2.html#Kang07,http://www.aicit.org/jcit/papers/jcit2-3/8_jcit_2_3.pdf +Hongyuan Li,Secure Multimedia Distribution Based on Watermarking and Encryption.,2010,5,JCIT,9,db/journals/jcit/jcit5.html#LiLDW10,http://www.aicit.org/jcit/ppl/JCIT0509_29.pdf +Mamoun Hussein Mamoun,A Secure DSR Routing Protocol for MANET.,2009,4,JCIT,1,db/journals/jcit/jcit4.html#Mamoun09,http://www.aicit.org/jcit/ppl/jcit040101.pdf +Hongwei Dai,Immune Network Theory Based Artificial Immune System and Its Application for Pattern Recognition.,2010,5,JCIT,9,db/journals/jcit/jcit5.html#DaiYL10,http://www.aicit.org/jcit/ppl/JCIT0509_10.pdf +Yitian Xu,Rough Margin-Based Linear v Support Vector Machine.,2010,5,JCIT,8,db/journals/jcit/jcit5.html#XuZW10,http://www.aicit.org/jcit/ppl/25-JCIT1-677243JE.pdf +Qifeng Zhou,Gene Selection Using Random Forest and Proximity Differences Criterion on DNA Microarray Data.,2010,5,JCIT,6,db/journals/jcit/jcit5.html#ZhouHLY10,http://www.aicit.org/jcit/ppl/17.%20JCIT_vol5num6.pdf +Rishin Haldar,An Attempt to Verify Claims of University Departments by Text Mining its Web Pages.,2010,5,JCIT,5,db/journals/jcit/jcit5.html#HaldarM10,http://www.aicit.org/jcit/ppl/Part22_Binder10.pdf +Qiu-Ting Wang,New Kalman Filtering Algorithm for Passive-BD/SINS Integrated Navigation System Based on UKF.,2009,4,JCIT,2,db/journals/jcit/jcit4.html#WangH09,http://www.aicit.org/jcit/ppl/jcit_version6_Part12.pdf +Ruma Dutta,An Approach to Web Page Prediction Using Markov Model and Web Page Ranking.,2009,4,JCIT,4,db/journals/jcit/jcit4.html#DuttaKDM09,http://www.aicit.org/jcit/ppl/vo4iss4paper10.pdf +Thair Al-Dala,Evaluating the Utilisation of Mobile Devices in Online Payments from the Consumer Perspective.,2010,5,JCIT,2,db/journals/jcit/jcit5.html#Al-Dala10,http://www.aicit.org/jcit/ppl/01_april.pdf +Peng Wang,Full-Information Item Bifactor Analysis of the Job Burnout Scale for Chinese College Teachers.,2010,5,JCIT,7,db/journals/jcit/jcit5.html#WangG10,http://www.aicit.org/jcit/ppl/JCIT_09-20_606033.pdf +Christel Kemke,Action Representation for Natural Language Interfaces to Agent Systems.,2007,2,JCIT,2,db/journals/jcit/jcit2.html#Kemke07,http://www.aicit.org/jcit/papers/jcit2-2/5_KemkeEdited.pdf +Shouju Li,Parameter Estimation of Particle Flow Model for Soils Using Neural Networks.,2010,5,JCIT,8,db/journals/jcit/jcit5.html#LiWQS10,http://www.aicit.org/jcit/ppl/3-JCIT1-628220.pdf +Wei Min,Construction of Marketing Management Information System of Travel Agency Based on Customer Relationship Management.,2010,5,JCIT,8,db/journals/jcit/jcit5.html#Min10,http://www.aicit.org/jcit/ppl/27-JCIT1-679245.pdf +Youjun Xu,Model Counting with Boolean Algebra and Extension Rule.,2010,5,JCIT,7,db/journals/jcit/jcit5.html#XuOY10,http://www.aicit.org/jcit/ppl/JCIT_09-07_549072.pdf +Jiao-Li Lu,Chinese Chunking and Consistency Checking Using Rule-Based Method.,2010,5,JCIT,10,db/journals/jcit/jcit5.html#LuZTS10,http://www.aicit.org/jcit/ppl/002_JCIT1-821307.pdf +Alaa Mohamed Riad,Mapping Different Software Architecture Paradigms to Different Integration Techniques: Highlighting Driving and Restraining Forces for Each Paradigm.,2009,4,JCIT,2,db/journals/jcit/jcit4.html#RiadEE09,http://www.aicit.org/jcit/ppl/jcit_version6_Part9.pdf +Xueying Tian,Influence of Philanthropy Donation on Competitive Advantage: From the Perspective of Corporate Social Capital.,2010,5,JCIT,8,db/journals/jcit/jcit5.html#Tian10a,http://www.aicit.org/jcit/ppl/26-JCIT4-660098JE.pdf +Pol Mac Aonghusa,Don't Let Google Know I'm Lonely.,2016,19,ACM Trans. Priv. Secur.,1,db/journals/tissec/tissec19.html#AonghusaL16,http://doi.acm.org/10.1145/2937754 +Leon J. Osterweil,Iterative Analysis to Improve Key Properties of Critical Human-Intensive Processes: An Election Security Example.,2017,20,ACM Trans. Priv. Secur.,2,db/journals/tissec/tissec20.html#OsterweilBCPSAC17,http://doi.acm.org/10.1145/3041041 +Edoardo Serra,Pareto-Optimal Adversarial Defense of Enterprise Systems.,2015,17,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec17.html#SerraJPRS15,http://doi.acm.org/10.1145/2699907 +Stephanos Matsumoto,Authentication Challenges in a Global Environment.,2017,20,ACM Trans. Priv. Secur.,1,db/journals/tissec/tissec20.html#MatsumotoRSKP17,http://doi.acm.org/10.1145/3007208 +Job Noorman,Sancus 2.0: A Low-Cost Security Architecture for IoT Devices.,2017,20,ACM Trans. Priv. Secur.,3,db/journals/tissec/tissec20.html#NoormanBMPMPVGM17,http://doi.acm.org/10.1145/3079763 +Saurabh Ganeriwal,Secure Time Synchronization in Sensor Networks.,2008,11,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec11.html#GaneriwalPCS08,http://doi.acm.org/10.1145/1380564.1380571 +Gilles Barthe,Security of multithreaded programs by compilation.,2010,13,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec13.html#BartheRRS10,http://doi.acm.org/10.1145/1805974.1895977 +Yossef Oren,Attacking the Internet Using Broadcast Digital Television.,2015,17,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec17.html#OrenK15,http://doi.acm.org/10.1145/2723159 +Dimitris Mitropoulos,How to Train Your Browser: Preventing XSS Attacks Using Contextual Script Fingerprints.,2016,19,ACM Trans. Priv. Secur.,1,db/journals/tissec/tissec19.html#MitropoulosSSK16,http://doi.acm.org/10.1145/2939374 +Scott A. Crosby,Opportunities and Limits of Remote Timing Attacks.,2009,12,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec12.html#CrosbyWR09,http://doi.acm.org/10.1145/1455526.1455530 +Ravi S. Sandhu,Editorial.,1998,1,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec1.html#Sandhu98,http://doi.acm.org/10.1145/290163.290166 +Scott E. Coull,Access controls for oblivious and anonymous systems.,2011,14,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec14.html#CoullGH11,http://doi.acm.org/10.1145/1952982.1952992 +Adam G. Pennington,Storage-Based Intrusion Detection.,2010,13,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec13.html#PenningtonGBSG10,http://doi.acm.org/10.1145/1880022.1880024 +Ismet Ozalp,Privacy-Preserving Publishing of Hierarchical Data.,2016,19,ACM Trans. Priv. Secur.,3,db/journals/tissec/tissec19.html#OzalpGNS16,http://doi.acm.org/10.1145/2976738 +Alejandro Hevia,Strength of two data encryption standard implementations under timing attacks.,1999,2,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec2.html#HeviaK99,http://doi.acm.org/10.1145/330382.330390 +Mark Strembeck,An integrated approach to engineer and enforce context constraints in RBAC environments.,2004,7,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec7.html#StrembeckN04,http://doi.acm.org/10.1145/1015040.1015043 +Guang Xiang,CANTINA+: A Feature-Rich Machine Learning Framework for Detecting Phishing Web Sites.,2011,14,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec14.html#XiangHRC11,http://doi.acm.org/10.1145/2019599.2019606 +Horst Wedde,Modular authorization and administration.,2004,7,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec7.html#WeddeL04,http://doi.acm.org/10.1145/1015040.1015042 +Saed Alrabaee,FOSSIL: A Resilient and Efficient System for Identifying FOSS Functions in Malware Binaries.,2018,21,ACM Trans. Priv. Secur.,2,db/journals/tissec/tissec21.html#AlrabaeeSWD18,http://doi.acm.org/10.1145/3175492 +Klaus Julisch,Clustering intrusion detection alarms to support root cause analysis.,2003,6,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec6.html#Julisch03,http://doi.acm.org/10.1145/950191.950192 +Gail-Joon Ahn,Guest editorial: Special issue on access control models and technologies.,2007,10,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec10.html#Ahn07,http://doi.acm.org/10.1145/1210263.1216576 +Hyojeong Lee,Gatling: Automatic Performance Attack Discovery in Large-Scale Distributed Systems.,2015,17,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec17.html#LeeSFKN15,http://doi.acm.org/10.1145/2714565 +Shlomi Dolev,Xor-trees for efficient anonymous multicast and reception.,2000,3,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec3.html#DolevO00,http://doi.acm.org/10.1145/354876.354877 +XiaoFeng Wang 0001,Fast and Black-box Exploit Detection and Signature Generation for Commodity Software.,2008,12,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec12.html#WangLCXRK08,http://doi.acm.org/10.1145/1455518.1455523 +Darren Mutz,Anomalous system call detection.,2006,9,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec9.html#MutzVVK06,http://doi.acm.org/10.1145/1127345.1127348 +Lawrence A. Gordon,The economics of information security investment.,2002,5,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec5.html#GordonL02,http://doi.acm.org/10.1145/581271.581274 +Mengjun Xie,Thwarting E-mail Spam Laundering.,2008,12,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec12.html#XieYW08,http://doi.acm.org/10.1145/1455518.1455525 +Alessandro Checco,BLC: Private Matrix Factorization Recommenders via Automatic Group Learning.,2017,20,ACM Trans. Priv. Secur.,2,db/journals/tissec/tissec20.html#CheccoBL17,http://doi.acm.org/10.1145/3041760 +Jung Hee Cheon,Provably Secure Timed-Release Public Key Encryption.,2008,11,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec11.html#CheonHKO08,http://doi.acm.org/10.1145/1330332.1330336 +Rosario Gennaro,A framework for password-based authenticated key exchange1.,2006,9,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec9.html#GennaroL06,http://doi.acm.org/10.1145/1151414.1151418 +Phillip Rogaway,OCB: A block-cipher mode of operation for efficient authenticated encryption.,2003,6,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec6.html#RogawayBB03,http://doi.acm.org/10.1145/937527.937529 +Trent Jaeger,Practical safety in flexible access control models.,2001,4,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec4.html#JaegerT01,http://doi.acm.org/10.1145/501963.501966 +Alberto Ceselli,Modeling and assessing inference exposure in encrypted databases.,2005,8,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec8.html#CeselliDVJPS05,http://doi.acm.org/10.1145/1053283.1053289 +Palash Sarkar 0001,A Simple and Generic Construction of Authenticated Encryption with Associated Data.,2010,13,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec13.html#Sarkar10,http://doi.acm.org/10.1145/1880022.1880027 +Gail-Joon Ahn,Role-based authorization constraints specification.,2000,3,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec3.html#AhnS00,http://doi.acm.org/10.1145/382912.382913 +Peter Williams,Access privacy and correctness on untrusted storage.,2013,16,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec16.html#WilliamsS13,http://doi.acm.org/10.1145/2535524 +Ninghui Li,Resiliency Policies in Access Control.,2009,12,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec12.html#LiWT09,http://doi.acm.org/10.1145/1513601.1513602 +Thomas Leonard,Modelling Access Propagation in Dynamic Systems.,2013,16,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec16.html#LeonardHS13,http://doi.acm.org/10.1145/2516951.2516952 +Muhammad Qasim Ali,Randomization-Based Intrusion Detection System for Advanced Metering Infrastructure.,2015,18,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec18.html#AliA15,http://doi.acm.org/10.1145/2814936 +Francesco Bergadano,High Dictionary Compression for Proactive Password Checking.,1998,1,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec1.html#BergadanoCR98,http://doi.acm.org/10.1145/290163.290164 +Jing Dong,Practical defenses against pollution attacks in wireless network coding.,2011,14,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec14.html#DongCN11,http://doi.acm.org/10.1145/1952982.1952989 +Peng Ning,Techniques and tools for analyzing intrusion alerts.,2004,7,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec7.html#NingCRX04,http://doi.acm.org/10.1145/996943.996947 +Anna Lysyanskaya,Authenticated error-correcting codes with applications to multicast authentication.,2010,13,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec13.html#LysyanskayaTT10,http://doi.acm.org/10.1145/1698750.1698757 +Wenke Lee,A framework for constructing features and models for intrusion detection systems.,2000,3,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec3.html#LeeS00,http://doi.acm.org/10.1145/382912.382914 +Elena Gabriela Barrantes,Randomized instruction set emulation.,2005,8,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec8.html#BarrantesAFS05,http://doi.acm.org/10.1145/1053283.1053286 +Peter Williams,Practical Oblivious Outsourced Storage.,2011,14,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec14.html#WilliamsSS11,http://doi.acm.org/10.1145/2019599.2019605 +Giuseppe Ateniese,Remote data checking using provable data possession.,2011,14,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec14.html#AtenieseBCHKKPS11,http://doi.acm.org/10.1145/1952982.1952994 +Marcus Botacin,Enhancing Branch Monitoring for Security Purposes: From Control Flow Integrity to Malware Analysis and Debugging.,2018,21,ACM Trans. Priv. Secur.,1,db/journals/tissec/tissec21.html#BotacinGG18,http://doi.acm.org/10.1145/3152162 +Longhua Zhang,A rule-based framework for role-based delegation and revocation.,2003,6,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec6.html#ZhangAC03,http://doi.acm.org/10.1145/937527.937530 +Jason Crampton,On the Parameterized Complexity and Kernelization of the Workflow Satisfiability Problem.,2013,16,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec16.html#CramptonGY13,http://doi.acm.org/10.1145/2487222.2487226 +William Aiello,Just fast keying: Key agreement in a hostile internet.,2004,7,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec7.html#AielloBBCIKR04,http://doi.acm.org/10.1145/996943.996946 +Prithvi Bisht,CANDID: Dynamic candidate evaluations for automatic prevention of SQL injection attacks.,2010,13,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec13.html#BishtMV10,http://doi.acm.org/10.1145/1698750.1698754 +Yingpeng Sang,Efficient and secure protocols for privacy-preserving set operations.,2009,13,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec13.html#SangS09,http://doi.acm.org/10.1145/1609956.1609965 +Ninghui Li,Delegation logic: A logic-based approach to distributed authorization.,2003,6,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec6.html#LiGF03,http://doi.acm.org/10.1145/605434.605438 +Man Ho Au,PEREA: Practical TTP-free revocation of repeatedly misbehaving anonymous users.,2011,14,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec14.html#AuTK11,http://doi.acm.org/10.1145/2043628.2043630 +Diomidis Spinellis,Reflection as a mechanism for software integrity verification.,2000,3,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec3.html#Spinellis00,http://doi.acm.org/10.1145/353323.353383 +Mengtao Sun,Bringing java's wild native world under control.,2013,16,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec16.html#SunTS0M13,http://doi.acm.org/10.1145/2535505 +Reza Shokri,Privacy Games Along Location Traces: A Game-Theoretic Framework for Optimizing Location Privacy.,2017,19,ACM Trans. Priv. Secur.,4,db/journals/tissec/tissec19.html#ShokriTT17,http://doi.acm.org/10.1145/3009908 +Leo Dorrendorf,Cryptanalysis of the random number generator of the Windows operating system.,2009,13,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec13.html#DorrendorfGP09,http://doi.acm.org/10.1145/1609956.1609966 +Zishuang (Eileen) Ye,Trusted paths for browsers.,2005,8,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec8.html#YeSA05,http://doi.acm.org/10.1145/1065545.1065546 +Nicholas Hopper,How much anonymity does network latency leak?,2010,13,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec13.html#HopperVC10,http://doi.acm.org/10.1145/1698750.1698753 +Pino Persiano,A secure and private system for subscription-based remote services.,2003,6,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec6.html#PersianoV03,http://doi.acm.org/10.1145/950191.950193 +Yingjiu Li,On two RFID privacy notions and their relations.,2011,14,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec14.html#LiDLM11,http://doi.acm.org/10.1145/2043628.2043631 +Trent Jaeger,Flexible Control of Downloaded Executable Content.,1999,2,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec2.html#JaegerPLI99,http://doi.acm.org/10.1145/317087.317091 +Jan Camenisch,Efficient Attributes for Anonymous Credentials.,2012,15,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec15.html#CamenischG12,http://doi.acm.org/10.1145/2133375.2133379 +Paul C. van Oorschot,On predictive models and user-drawn graphical passwords.,2008,10,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec10.html#OorschotT08,http://doi.acm.org/10.1145/1284680.1284685 +John Bethencourt,New Techniques for Private Stream Searching.,2009,12,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec12.html#BethencourtSW09,http://doi.acm.org/10.1145/1455526.1455529 +Bhavani M. Thuraisingham,Editorial SACMAT 2007.,2010,13,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec13.html#Thuraisingham10,http://doi.acm.org/10.1145/1805974.1805979 +Elisa Bertino,A nested transaction model for multilevel secure database management systems.,2001,4,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec4.html#BertinoCF01,http://doi.acm.org/10.1145/503339.503340 +Elena Ferrari,Guest editorial: Special issue on access control models and technologies.,2005,8,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec8.html#Ferrari05,http://doi.acm.org/10.1145/1108906.1108907 +Barbara Carminati,Enforcing access control in Web-based social networks.,2009,13,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec13.html#CarminatiFP09,http://doi.acm.org/10.1145/1609956.1609962 +Deborah A. Frincke,Balancing cooperation and risk in intrusion detection.,2000,3,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec3.html#Frincke00,http://doi.acm.org/10.1145/353323.353324 +Michael Brennan,Adversarial stylometry: Circumventing authorship recognition to preserve privacy and anonymity.,2012,15,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec15.html#BrennanAG12,http://doi.acm.org/10.1145/2382448.2382450 +Babak Rahbarinia,Efficient and Accurate Behavior-Based Tracking of Malware-Control Domains in Large ISP Networks.,2016,19,ACM Trans. Priv. Secur.,2,db/journals/tissec/tissec19.html#RahbariniaPA16,http://doi.acm.org/10.1145/2960409 +Eric Chan-Tin,The Frog-Boiling Attack: Limitations of Secure Network Coordinate Systems.,2011,14,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec14.html#Chan-TinHHK11,http://doi.acm.org/10.1145/2043621.2043627 +Jens-Matthias Bohli,Relations among privacy notions.,2011,14,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec14.html#BohliP11,http://doi.acm.org/10.1145/1952982.1952986 +Mizuho Iwaihara,Relevancy-based access control and its evaluation on versioned XML documents.,2007,10,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec10.html#IwaiharaHCAW07,http://doi.acm.org/10.1145/1210263.1210266 +Eran Gabber,On secure and pseudonymous client-relationships with multiple servers.,1999,2,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec2.html#GabberGKMM99,http://doi.acm.org/10.1145/330382.330386 +Abdul Serwadda,Toward Robotic Robbery on the Touch Screen.,2016,18,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec18.html#SerwaddaPWKS16,http://doi.acm.org/10.1145/2898353 +Darrell Bethea,Server-side verification of client behavior in online games.,2011,14,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec14.html#BetheaCR11,http://doi.acm.org/10.1145/2043628.2043633 +Jun Xu 0014,Design of a High-Performance ATM Firewall.,1999,2,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec2.html#XuS99,http://doi.acm.org/10.1145/322510.322520 +Qiang Wei,Authorization recycling in hierarchical RBAC systems.,2011,14,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec14.html#WeiCBR11,http://doi.acm.org/10.1145/1952982.1952985 +George Argyros,Evaluating the Privacy Guarantees of Location Proximity Services.,2017,19,ACM Trans. Priv. Secur.,4,db/journals/tissec/tissec19.html#ArgyrosPSKP17,http://doi.acm.org/10.1145/3007209 +Avishai Wool,Key management for encrypted broadcast.,2000,3,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec3.html#Wool00,http://doi.acm.org/10.1145/354876.354879 +Ari Juels,Defining strong privacy for RFID.,2009,13,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec13.html#JuelsW09,http://doi.acm.org/10.1145/1609956.1609963 +Attila Altay Yavuz,BAF and FI-BAF: Efficient and Publicly Verifiable Cryptographic Schemes for Secure Logging in Resource-Constrained Systems.,2012,15,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec15.html#YavuzNR12,http://doi.acm.org/10.1145/2240276.2240280 +Kun Peng,Batch zero-knowledge proof and verification and its applications.,2007,10,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec10.html#PengBD07,http://doi.acm.org/10.1145/1237500.1237502 +Katharine Chang,Distributed Authentication of Program Integrity Verification in Wireless Sensor Networks.,2008,11,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec11.html#ChangS08,http://doi.acm.org/10.1145/1341731.1341735 +Hovav Shacham,Client-side caching for TLS.,2004,7,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec7.html#ShachamBR04,http://doi.acm.org/10.1145/1042031.1042034 +Anna Cinzia Squicciarini,PP-trust-X: A system for privacy preserving trust negotiations.,2007,10,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec10.html#SquicciariniBFPT07,http://doi.acm.org/10.1145/1266977.1266981 +Siqi Zhao,FIMCE: A Fully Isolated Micro-Computing Environment for Multicore Systems.,2018,21,ACM Trans. Priv. Secur.,3,db/journals/tissec/tissec21.html#ZhaoD18,http://doi.acm.org/10.1145/3195181 +Liqun Chen,Cross-Domain Password-Based Authenticated Key Exchange Revisited.,2014,16,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec16.html#ChenLY14,http://doi.acm.org/10.1145/2584681 +Andrew W. Appel,Security Seals on Voting Machines: A Case Study.,2011,14,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec14.html#Appel11,http://doi.acm.org/10.1145/2019599.2019603 +Giovanni Mella,Controlled and cooperative updates of XML documents in byzantine and failure-prone distributed systems.,2006,9,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec9.html#MellaFBK06,http://doi.acm.org/10.1145/1187441.1187443 +Mathias Humbert,Quantifying Interdependent Risks in Genomic Privacy.,2017,20,ACM Trans. Priv. Secur.,1,db/journals/tissec/tissec20.html#HumbertAHT17,http://doi.acm.org/10.1145/3035538 +Patrick D. McDaniel,Methods and limitations of security policy reconciliation.,2006,9,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec9.html#McDanielP06,http://doi.acm.org/10.1145/1178618.1178620 +Xavier de Carné de Carnavalet,A Large-Scale Evaluation of High-Impact Password Strength Meters.,2015,18,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec18.html#CarnavaletM15,http://doi.acm.org/10.1145/2739044 +Chris Culnane,vVote: A Verifiable Voting System.,2015,18,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec18.html#CulnaneRST15,http://doi.acm.org/10.1145/2746338 +David Zage,Robust Decentralized Virtual Coordinate Systems in Adversarial Environments.,2010,13,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec13.html#ZageN10,http://doi.acm.org/10.1145/1880022.1880032 +Duminda Wijesekera,A propositional policy algebra for access control.,2003,6,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec6.html#WijesekeraJ03,http://doi.acm.org/10.1145/762476.762481 +Yossi Gilad,LOT: A Defense Against IP Spoofing and Flooding Attacks.,2012,15,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec15.html#GiladH12,http://doi.acm.org/10.1145/2240276.2240277 +Ho-Yen Chang,Real-time protocol analysis for detecting link-state routing protocol attacks.,2001,4,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec4.html#ChangWJ01,http://doi.acm.org/10.1145/383775.383776 +Pietro Mazzoleni,XACML Policy Integration Algorithms.,2008,11,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec11.html#MazzoleniCSB08,http://doi.acm.org/10.1145/1330295.1330299 +Pieter Philippaerts,CPM: Masking Code Pointers to Prevent Code Injection Attacks.,2013,16,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec16.html#PhilippaertsYMPLW13,http://doi.acm.org/10.1145/2487222.2487223 +Ziqing Mao,Combining Discretionary Policy with Mandatory Information Flow in Operating Systems.,2011,14,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec14.html#MaoLCJ11,http://doi.acm.org/10.1145/2043621.2043624 +Jason Crampton,On the Workflow Satisfiability Problem with Class-Independent Constraints for Hierarchical Organizations.,2016,19,ACM Trans. Priv. Secur.,3,db/journals/tissec/tissec19.html#CramptonGGJW16,http://doi.acm.org/10.1145/2988239 +Pierangela Samarati,An authorization model for a public key management service.,2001,4,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec4.html#SamaratiRJ01,http://doi.acm.org/10.1145/503339.503343 +Donggang Liu,Attack-Resistant Location Estimation in Wireless Sensor Networks.,2008,11,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec11.html#LiuNLWD08,http://doi.acm.org/10.1145/1380564.1380570 +Ernesto Damiani,A fine-grained access control system for XML documents.,2002,5,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec5.html#DamianiVPS02,http://doi.acm.org/10.1145/505586.505590 +Ravi S. Sandhu,The ARBAC97 Model for Role-Based Administration of Roles.,1999,2,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec2.html#SandhuBM99,http://doi.acm.org/10.1145/300830.300839 +Yao Liu 0007,False data injection attacks against state estimation in electric power grids.,2011,14,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec14.html#LiuNR11,http://doi.acm.org/10.1145/1952982.1952995 +Alan Harbitter,A methodology for analyzing the performance of authentication protocols.,2002,5,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec5.html#HarbitterM02,http://doi.acm.org/10.1145/581271.581275 +Isabel Wagner,Evaluating the Strength of Genomic Privacy Metrics.,2017,20,ACM Trans. Priv. Secur.,1,db/journals/tissec/tissec20.html#Wagner17,http://doi.acm.org/10.1145/3020003 +Jason Crampton,Practical and efficient cryptographic enforcement of interval-based access control policies.,2011,14,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec14.html#Crampton11,http://doi.acm.org/10.1145/1952982.1952996 +Aniket Kate,Pairing-Based Onion Routing with Improved Forward Secrecy.,2010,13,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec13.html#KateZG10,http://doi.acm.org/10.1145/1880022.1880023 +Sabrina De Capitani di Vimercati,Guest editorial: Special issue on computer and communications security.,2010,13,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec13.html#VimercatiS10,http://doi.acm.org/10.1145/1698750.1698751 +Simon Eberz,Looks Like Eve: Exposing Insider Threats Using Eye Movement Biometrics.,2016,19,ACM Trans. Priv. Secur.,1,db/journals/tissec/tissec19.html#EberzRLM16,http://doi.acm.org/10.1145/2904018 +Piero A. Bonatti,An algebra for composing access control policies.,2002,5,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec5.html#BonattiVS02,http://doi.acm.org/10.1145/504909.504910 +Drew Dean,An algebraic approach to IP traceback.,2002,5,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec5.html#DeanFS02,http://doi.acm.org/10.1145/505586.505588 +C. Christopher Erway,Dynamic Provable Data Possession.,2015,17,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec17.html#ErwayKPT15,http://doi.acm.org/10.1145/2699909 +Ravi S. Sandhu,Editorial.,1999,2,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec2.html#Sandhu99,http://doi.acm.org/10.1145/300830.317086 +Barbara Carminati,A framework to enforce access control over data streams.,2010,13,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec13.html#CarminatiFCT10,http://doi.acm.org/10.1145/1805974.1805984 +Giuseppe Ateniese,Improved proxy re-encryption schemes with applications to secure distributed storage.,2006,9,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec9.html#AtenieseFGH06,http://doi.acm.org/10.1145/1127345.1127346 +M. Choudary Gorantla,Modeling key compromise impersonation attacks on group key exchange protocols.,2011,14,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec14.html#GorantlaBNM11,http://doi.acm.org/10.1145/2043628.2043629 +Christopher N. Gutierrez,Inhibiting and Detecting Offline Password Cracking Using ErsatzPasswords.,2016,19,ACM Trans. Priv. Secur.,3,db/journals/tissec/tissec19.html#GutierrezASAA16,http://dl.acm.org/citation.cfm?id=2996457 +Noam Kogan,A practical revocation scheme for broadcast encryption using smartcards.,2006,9,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec9.html#KoganSW06,http://doi.acm.org/10.1145/1178618.1178622 +Sandro Etalle,Maintaining control while delegating trust: Integrity constraints in trust management.,2009,13,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec13.html#EtalleW09,http://doi.acm.org/10.1145/1609956.1609961 +Ninghui Li,On mutually exclusive roles and separation-of-duty.,2007,10,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec10.html#LiTB07,http://doi.acm.org/10.1145/1237500.1237501 +Joan Feigenbaum,Probabilistic analysis of onion routing in a black-box model.,2012,15,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec15.html#FeigenbaumJS12,http://doi.acm.org/10.1145/2382448.2382452 +Elisa Bertino,Exception-Based Information Flow Control in Object-Oriented Systems.,1998,1,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec1.html#BertinoVFS98,http://doi.acm.org/10.1145/290163.290167 +Rafae Bhatti,X-GTRBAC: an XML-based policy specification framework and architecture for enterprise-wide access control.,2005,8,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec8.html#BhattiGBJ05,http://doi.acm.org/10.1145/1065545.1065547 +Benoît Libert,Key Evolution Systems in Untrusted Update Environments.,2010,13,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec13.html#LibertQY10,http://doi.acm.org/10.1145/1880022.1880031 +Michael Steiner,Secure password-based cipher suite for TLS.,2001,4,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec4.html#SteinerBEW01,http://doi.acm.org/10.1145/501963.501965 +Antonino Rullo,Pareto Optimal Security Resource Allocation for Internet of Things.,2017,20,ACM Trans. Priv. Secur.,4,db/journals/tissec/tissec20.html#RulloMSB17,http://doi.acm.org/10.1145/3139293 +Patrick P. Tsang,BLAC: Revoking Repeatedly Misbehaving Anonymous Users without Relying on TTPs.,2010,13,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec13.html#TsangAKS10,http://doi.acm.org/10.1145/1880022.1880033 +Jingmin Zhou,Modeling network intrusion detection alerts for correlation.,2007,10,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec10.html#ZhouHRCB07,http://doi.acm.org/10.1145/1210263.1210267 +Algis Rudys,Termination in language-based systems.,2002,5,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec5.html#RudysW02,http://doi.acm.org/10.1145/505586.505589 +David A. Schultz,MPSS: Mobile Proactive Secret Sharing.,2010,13,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec13.html#SchultzLL10,http://doi.acm.org/10.1145/1880022.1880028 +Xinwen Zhang,Formal model and policy specification of usage control.,2005,8,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec8.html#ZhangPSP05,http://doi.acm.org/10.1145/1108906.1108908 +Gene Tsudik,Editorial.,2008,11,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec11.html#Tsudik08,http://doi.acm.org/10.1145/1341731.1341732 +Martín Abadi,Just fast keying in the pi calculus.,2007,10,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec10.html#AbadiBF07,http://doi.acm.org/10.1145/1266977.1266978 +Rajarathnam Chandramouli,Battery power-aware encryption.,2006,9,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec9.html#ChandramouliBSU06,http://doi.acm.org/10.1145/1151414.1151417 +Zhenkai Liang,Alcatraz: An Isolated Environment for Experimenting with Untrusted Software.,2009,12,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec12.html#LiangSVS09,http://doi.acm.org/10.1145/1455526.1455527 +Maria Luisa Damiani,GEO-RBAC: A spatially aware RBAC.,2007,10,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec10.html#DamianiBCP07,http://doi.acm.org/10.1145/1210263.1210265 +John Viega,Token-based scanning of source code for security problems.,2002,5,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec5.html#ViegaBKM02,http://doi.acm.org/10.1145/545186.545188 +Sarani Bhattacharya,Utilizing Performance Counters for Compromising Public Key Ciphers.,2018,21,ACM Trans. Priv. Secur.,1,db/journals/tissec/tissec21.html#BhattacharyaM18,http://doi.acm.org/10.1145/3156015 +Dijiang Huang,A key-chain-based keying scheme for many-to-many secure group communication.,2004,7,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec7.html#HuangM04,http://doi.acm.org/10.1145/1042031.1042033 +Richard Shay,Designing Password Policies for Strength and Usability.,2016,18,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec18.html#ShayKDHMSUBCC16,http://doi.acm.org/10.1145/2891411 +Peng Ning,Abstraction-based intrusion detection in distributed environments.,2001,4,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec4.html#NingJW01,http://doi.acm.org/10.1145/503339.503342 +Xuxian Jiang,"Stealthy malware detection and monitoring through VMM-based ""out-of-the-box"" semantic view reconstruction.",2010,13,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec13.html#JiangWX10,http://doi.acm.org/10.1145/1698750.1698752 +Yihua Zhang,Implementing Support for Pointers to Private Data in a General-Purpose Secure Multi-Party Compiler.,2018,21,ACM Trans. Priv. Secur.,2,db/journals/tissec/tissec21.html#ZhangBA18,http://doi.acm.org/10.1145/3154600 +Tom Walcott,Traducement: A model for record security.,2004,7,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec7.html#WalcottB04,http://doi.acm.org/10.1145/1042031.1042035 +William H. Winsborough,Safety in automated trust negotiation.,2006,9,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec9.html#WinsboroughL06,http://doi.acm.org/10.1145/1178618.1178623 +Giuseppe Ateniese,Verifiable encryption of digital signatures and applications.,2004,7,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec7.html#Ateniese04,http://doi.acm.org/10.1145/984334.984335 +David F. Ferraiolo,A Role-Based Access Control Model and Reference Implementation within a Corporate Intranet.,1999,2,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec2.html#FerraioloBK99,http://doi.acm.org/10.1145/300830.300834 +Joseph Y. Halpern,Secrecy in Multiagent Systems.,2008,12,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec12.html#HalpernO08,http://doi.acm.org/10.1145/1410234.1410239 +Yair Amir,On the performance of group key agreement protocols.,2004,7,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec7.html#AmirKNT04,http://doi.acm.org/10.1145/1015040.1015045 +Moritz Y. Becker,A logic for state-modifying authorization policies.,2010,13,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec13.html#BeckerN10,http://doi.acm.org/10.1145/1805974.1805976 +Elizabeth Stobert,The Password Life Cycle.,2018,21,ACM Trans. Priv. Secur.,3,db/journals/tissec/tissec21.html#StobertB18,http://doi.acm.org/10.1145/3183341 +Fred B. Schneider,Enforceable security policies.,2000,3,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec3.html#Schneider00,http://doi.acm.org/10.1145/353323.353382 +Ronald Cramer,Signature schemes based on the strong RSA assumption.,2000,3,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec3.html#CramerS00,http://doi.acm.org/10.1145/357830.357847 +Wenliang Du,A pairwise key predistribution scheme for wireless sensor networks.,2005,8,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec8.html#DuDHVKK05,http://doi.acm.org/10.1145/1065545.1065548 +Mario Frank,Role Mining with Probabilistic Models.,2013,15,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec15.html#FrankBB13,http://doi.acm.org/10.1145/2445566.2445567 +Rafae Bhatti,X-gtrbac admin: A decentralized administration model for enterprise-wide access control.,2005,8,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec8.html#BhattiSBGJ05,http://doi.acm.org/10.1145/1108906.1108909 +Svetlana Radosavac,An Analytic Framework for Modeling and Detecting Access Layer Misbehavior in Wireless Networks.,2008,11,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec11.html#RadosavacMBK08,http://doi.acm.org/10.1145/1380564.1380567 +Luca Allodi,Comparing Vulnerability Severity and Exploits Using Case-Control Studies.,2014,17,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec17.html#AllodiM14,http://doi.acm.org/10.1145/2630069 +Jooyoung Lee,On the Construction of Practical Key Predistribution Schemes for Distributed Sensor Networks Using Combinatorial Designs.,2008,11,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec11.html#LeeS08,http://doi.acm.org/10.1145/1330332.1330333 +Deborah Shands,Secure virtual enclaves: Supporting coalition use of distributed application technologies.,2001,4,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec4.html#ShandsJYS01,http://doi.acm.org/10.1145/501963.501964 +Yi Yang 0002,SDAP: A Secure Hop-by-Hop Data Aggregation Protocol for Sensor Networks.,2008,11,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec11.html#YangWZC08,http://doi.acm.org/10.1145/1380564.1380568 +Daniele Gunetti,Keystroke analysis of free text.,2005,8,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec8.html#GunettiP05,http://doi.acm.org/10.1145/1085126.1085129 +Mike Burmester,Universally Composable RFID Identification and Authentication Protocols.,2009,12,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec12.html#BurmesterLMT09,http://doi.acm.org/10.1145/1513601.1513603 +Charles V. Wright,Uncovering Spoken Phrases in Encrypted Voice over IP Conversations.,2010,13,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec13.html#WrightBCMM10,http://doi.acm.org/10.1145/1880022.1880029 +Jay Ligatti,Run-Time Enforcement of Nonsafety Policies.,2009,12,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec12.html#LigattiBW09,http://doi.acm.org/10.1145/1455526.1455532 +David A. Basin,Formal Reasoning about Physical Properties of Security Protocols.,2011,14,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec14.html#BasinCSS11,http://doi.acm.org/10.1145/2019599.2019601 +Sejong Oh,An effective role administration model using organization structure.,2006,9,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec9.html#OhSZ06,http://doi.acm.org/10.1145/1151414.1151415 +Indrakshi Ray,Editorial.,2008,11,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec11.html#Ray08,http://doi.acm.org/10.1145/1330295.1330296 +Adam J. Lee,On the consistency of distributed proofs with hidden subtrees.,2010,13,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec13.html#LeeMW10,http://doi.acm.org/10.1145/1805974.1805981 +Nan Zheng,An Efficient User Verification System Using Angle-Based Mouse Movement Biometrics.,2016,18,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec18.html#ZhengPW16,http://doi.acm.org/10.1145/2893185 +Gabriele Oligeri,Robust and efficient authentication of video stream broadcasting.,2011,14,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec14.html#OligeriCPG11,http://doi.acm.org/10.1145/1952982.1952987 +Martín Abadi,On Protection by Layout Randomization.,2012,15,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec15.html#AbadiP12,http://doi.acm.org/10.1145/2240276.2240279 +Stuart G. Stubblebine,Unlinkable serial transactions: protocols and applications.,1999,2,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec2.html#StubblebineSG99,http://doi.acm.org/10.1145/330382.330384 +David F. Ferraiolo,Proposed NIST standard for role-based access control.,2001,4,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec4.html#FerraioloSGKC01,http://doi.acm.org/10.1145/501978.501980 +Yossi Gilad,Fragmentation Considered Vulnerable.,2013,15,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec15.html#GiladH13,http://doi.acm.org/10.1145/2445566.2445568 +Adam Hess,Content-triggered trust negotiation.,2004,7,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec7.html#HessHJS04,http://doi.acm.org/10.1145/1015040.1015044 +Roberto Giacobazzi,Abstract Non-Interference: A Unifying Framework for Weakening Information-flow.,2018,21,ACM Trans. Priv. Secur.,2,db/journals/tissec/tissec21.html#GiacobazziM18,http://doi.acm.org/10.1145/3175660 +Spyros Antonatos,Puppetnets: Misusing Web Browsers as a Distributed Attack Infrastructure.,2008,12,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec12.html#AntonatosALA08,http://doi.acm.org/10.1145/1455518.1477941 +Ewa Syta,Security Analysis of Accountable Anonymity in Dissent.,2014,17,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec17.html#SytaCWWFJ14,http://doi.acm.org/10.1145/2629621 +Matunda Nyanchama,The Role Graph Model and Conflict of Interest.,1999,2,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec2.html#NyanchamaO99,http://doi.acm.org/10.1145/300830.300832 +Danfeng Yao,Compact and Anonymous Role-Based Authorization Chain.,2009,12,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec12.html#YaoT09,http://doi.acm.org/10.1145/1455526.1455528 +Bruce Schneier,Secure Audit Logs to Support Computer Forensics.,1999,2,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec2.html#SchneierK99,http://doi.acm.org/10.1145/317087.317089 +Karthick Jayaraman,Mohawk: Abstraction-Refinement and Bound-Estimation for Verifying Access Control Policies.,2013,15,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec15.html#JayaramanTGRC13,http://doi.acm.org/10.1145/2445566.2445570 +Paul C. van Oorschot,On interdomain routing security and pretty secure BGP (psBGP).,2007,10,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec10.html#OorschotWK07,http://doi.acm.org/10.1145/1266977.1266980 +Jason Crampton,Administrative scope: A foundation for role-based administrative models.,2003,6,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec6.html#CramptonL03,http://doi.acm.org/10.1145/762476.762478 +Li Zhuang,Keyboard acoustic emanations revisited.,2009,13,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec13.html#ZhuangZT09,http://doi.acm.org/10.1145/1609956.1609959 +Fred B. Schneider,Nexus authorization logic (NAL): Design rationale and applications.,2011,14,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec14.html#SchneiderWS11,http://doi.acm.org/10.1145/1952982.1952990 +XiaoFeng Wang 0001,Deterring voluntary trace disclosure in re-encryption mix-networks.,2010,13,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec13.html#WangGJT10,http://doi.acm.org/10.1145/1698750.1698758 +Francesco M. Malvestuto,Auditing sum-queries to make a statistical database secure.,2006,9,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec9.html#MalvestutoMM06,http://doi.acm.org/10.1145/1127345.1127347 +Giampaolo Bella,Accountability protocols: Formalized and verified.,2006,9,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec9.html#BellaP06,http://doi.acm.org/10.1145/1151414.1151416 +Yueqiang Cheng,DriverGuard: Virtualization-Based Fine-Grained Protection on I/O Flows.,2013,16,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec16.html#ChengDD13,http://doi.acm.org/10.1145/2505123 +Ninghui Li,Introduction to special section SACMAT'08.,2011,14,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec14.html#Li11,http://doi.acm.org/10.1145/1952982.1952983 +Hendrik Meutzner,Toward Improved Audio CAPTCHAs Based on Auditory Perception and Language Understanding.,2017,19,ACM Trans. Priv. Secur.,4,db/journals/tissec/tissec19.html#MeutznerGNHK17,http://doi.acm.org/10.1145/2856820 +Tal Moran,Split-ballot voting: Everlasting privacy with distributed trust.,2010,13,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec13.html#MoranN10,http://doi.acm.org/10.1145/1698750.1698756 +Valentina Ciriani,Combining fragmentation and encryption to protect privacy in data storage.,2010,13,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec13.html#CirianiVFJPS10,http://doi.acm.org/10.1145/1805974.1805978 +Xiaokui Shu,Long-Span Program Behavior Modeling and Attack Detection.,2017,20,ACM Trans. Priv. Secur.,4,db/journals/tissec/tissec20.html#ShuYRJ17,http://doi.acm.org/10.1145/3105761 +Ravi S. Sandhu,Editorial.,2005,8,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec8.html#Sandhu05,http://doi.acm.org/10.1145/1053283.1053284 +Elisa Bertino,The Specification and Enforcement of Authorization Constraints in Workflow Management Systems.,1999,2,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec2.html#BertinoFA99,http://doi.acm.org/10.1145/300830.300837 +Felix Brandt 0001,On the Existence of Unconditionally Privacy-Preserving Auction Protocols.,2008,11,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec11.html#BrandtS08,http://doi.acm.org/10.1145/1330332.1330338 +Luc Bouganim,Dynamic access-control policies on XML encrypted data.,2008,10,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec10.html#BouganimNP08,http://doi.acm.org/10.1145/1284680.1284684 +Makoto Murata,XML access control using static analysis.,2006,9,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec9.html#MurataTKH06,http://doi.acm.org/10.1145/1178618.1178621 +Joon S. Park,Role-based access control on the web.,2001,4,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec4.html#ParkSA01,http://doi.acm.org/10.1145/383775.383777 +Xinwen Zhang,Toward a Usage-Based Security Framework for Collaborative Computing Systems.,2008,11,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec11.html#ZhangNCS08,http://doi.acm.org/10.1145/1330295.1330298 +Chad D. Mano,RIPPS: Rogue Identifying Packet Payload Slicer Detecting Unauthorized Wireless Hosts Through Network Traffic Conditioning.,2008,11,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec11.html#ManoBLJCSS08,http://doi.acm.org/10.1145/1330332.1330334 +Elisa Bertino,A logical framework for reasoning about access control models.,2003,6,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec6.html#BertinoCFP03,http://doi.acm.org/10.1145/605434.605437 +Qing Zhang,A Framework for Identifying Compromised Nodes in Wireless Sensor Networks.,2008,11,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec11.html#ZhangYN08,http://doi.acm.org/10.1145/1341731.1341733 +Florian Kelbert,Data Usage Control for Distributed Systems.,2018,21,ACM Trans. Priv. Secur.,3,db/journals/tissec/tissec21.html#KelbertP18,http://doi.acm.org/10.1145/3183342 +Elisa Bertino,Secure and selective dissemination of XML documents.,2002,5,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec5.html#BertinoF02,http://doi.acm.org/10.1145/545186.545190 +Tielei Wang,Checksum-Aware Fuzzing Combined with Dynamic Taint Analysis and Symbolic Execution.,2011,14,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec14.html#WangWGZ11,http://doi.acm.org/10.1145/2019599.2019600 +Rakeshbabu Bobba,Attribute-Based Messaging: Access Control and Confidentiality.,2010,13,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec13.html#BobbaFKKGKP10,http://doi.acm.org/10.1145/1880022.1880025 +Lujo Bauer,Detecting and resolving policy misconfigurations in access-control systems.,2011,14,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec14.html#BauerGR11,http://doi.acm.org/10.1145/1952982.1952984 +Karthikeyan Bhargavan,Secure sessions for Web services.,2007,10,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec10.html#BhargavanCFG07,http://doi.acm.org/10.1145/1237500.1237504 +Terran Lane,Temporal Sequence Learning and Data Reduction for Anomaly Detection.,1999,2,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec2.html#LaneB99,http://doi.acm.org/10.1145/322510.322526 +James B. D. Joshi,Formal foundations for hybrid hierarchies in GTRBAC.,2008,10,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec10.html#JoshiBGZ08,http://doi.acm.org/10.1145/1284680.1284682 +David A. Basin,Know Your Enemy: Compromising Adversaries in Protocol Analysis.,2014,17,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec17.html#BasinC14,http://doi.acm.org/10.1145/2658996 +Joe Loughry,Information leakage from optical emanations.,2002,5,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec5.html#LoughryU02,http://doi.acm.org/10.1145/545186.545189 +Boris Danev,Towards Practical Identification of HF RFID Devices.,2012,15,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec15.html#DanevCMB12,http://doi.acm.org/10.1145/2240276.2240278 +T.-H. Hubert Chan,Private and Continual Release of Statistics.,2011,14,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec14.html#ChanSS11,http://doi.acm.org/10.1145/2043621.2043626 +Blaise Gassend,Controlled physical random functions and applications.,2008,10,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec10.html#GassendDCTDT08,http://doi.acm.org/10.1145/1284680.1284683 +Prateek Mittal,Information Leaks in Structured Peer-to-Peer Anonymous Communication Systems.,2012,15,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec15.html#MittalB12,http://doi.acm.org/10.1145/2133375.2133380 +Wei Wang,A Graph Based Approach Toward Network Forensics Analysis.,2008,12,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec12.html#WangD08,http://doi.acm.org/10.1145/1410234.1410238 +Perry Alexander,Model Checking Distributed Mandatory Access Control Policies.,2015,18,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec18.html#AlexanderPLC15,http://doi.acm.org/10.1145/2785966 +Liang Xie,Message Dropping Attacks in Overlay Networks: Attack Detection and Attacker Identification.,2008,11,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec11.html#XieZ08,http://doi.acm.org/10.1145/1341731.1341736 +Teh-Chung Chen,An Anti-Phishing System Employing Diffused Information.,2014,16,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec16.html#ChenSDM14,http://doi.acm.org/10.1145/2584680 +Rebecca N. Wright,Guest Editorial: Special Issue on Computer and Communications Security.,2008,12,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec12.html#WrightV08,http://doi.acm.org/10.1145/1455518.1455519 +Adam J. Lee,The Traust Authorization Service.,2008,11,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec11.html#LeeWBW08,http://doi.acm.org/10.1145/1330295.1330297 +William E. Cobb,Leakage Mapping: A Systematic Methodology for Assessing the Side-Channel Information Leakage of Cryptographic Implementations.,2013,16,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec16.html#CobbBL13,http://doi.acm.org/10.1145/2487222.2487224 +Ram Krishnan,Group-Centric Secure Information-Sharing Models for Isolated Groups.,2011,14,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec14.html#KrishnanNSW11,http://doi.acm.org/10.1145/2043621.2043623 +Urs Hengartner,Access control to people location information.,2005,8,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec8.html#HengartnerS05,http://doi.acm.org/10.1145/1108906.1108910 +Srdjan Marinovic,Rumpole: An Introspective Break-Glass Access Control Language.,2014,17,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec17.html#MarinovicDS14,http://doi.acm.org/10.1145/2629502 +Shouhuai Xu,Distributed and Secure Bootstrapping of Mobile Ad Hoc Networks: Framework and Constructions.,2008,12,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec12.html#XuC08,http://doi.acm.org/10.1145/1410234.1410236 +Ohad Rodeh,The architecture and performance of security protocols in the ensemble group communication system: Using diamonds to guard the castle.,2001,4,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec4.html#RodehBD01,http://doi.acm.org/10.1145/501978.501982 +Baruch Awerbuch,ODSBR: An on-demand secure Byzantine resilient routing protocol for wireless ad hoc networks.,2008,10,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec10.html#AwerbuchCHNR08,http://doi.acm.org/10.1145/1284680.1341892 +Dong Su,Differentially Private K-Means Clustering and a Hybrid Approach to Private Optimization.,2017,20,ACM Trans. Priv. Secur.,4,db/journals/tissec/tissec20.html#SuCLBLJ17,http://doi.acm.org/10.1145/3133201 +Paul F. Syverson,Guest Editorial: Special Issue on Computer and Communications Security.,2012,15,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec15.html#SyversonJ12,http://doi.acm.org/10.1145/2133375.2133376 +Norman Danner,Effectiveness and detection of denial-of-service attacks in tor.,2012,15,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec15.html#DannerDKL12,http://doi.acm.org/10.1145/2382448.2382449 +Francesco Bergadano,User authentication through keystroke dynamics.,2002,5,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec5.html#BergadanoGP02,http://doi.acm.org/10.1145/581271.581272 +Noam Kogan,Improved efficiency for revocation schemes via Newton interpolation.,2006,9,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec9.html#KoganT06,http://doi.acm.org/10.1145/1187441.1187444 +Steve Barker,Status-Based Access Control.,2008,12,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec12.html#BarkerSW08,http://doi.acm.org/10.1145/1410234.1410235 +Boniface Hicks,A logical specification and analysis for SELinux MLS policy.,2010,13,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec13.html#HicksRCJM10,http://doi.acm.org/10.1145/1805974.1805982 +Cristian Cadar,EXE: Automatically Generating Inputs of Death.,2008,12,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec12.html#CadarGPDE08,http://doi.acm.org/10.1145/1455518.1455522 +Emmanuel Bresson,Provably secure authenticated group Diffie-Hellman key exchange.,2007,10,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec10.html#BressonCP07,http://doi.acm.org/10.1145/1266977.1266979 +Juan A. Garay,MAC Precomputation with Applications to Secure Memory.,2016,19,ACM Trans. Priv. Secur.,2,db/journals/tissec/tissec19.html#GarayKM16,http://doi.acm.org/10.1145/2943780 +Ting Yu,Supporting structured credentials and sensitive policies through interoperable strategies for automated trust negotiation.,2003,6,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec6.html#YuWS03,http://doi.acm.org/10.1145/605434.605435 +Luis Muñoz-González,Efficient Attack Graph Analysis through Approximate Inference.,2017,20,ACM Trans. Priv. Secur.,3,db/journals/tissec/tissec20.html#Munoz-GonzalezS17,http://doi.acm.org/10.1145/3105760 +Danfeng Yao,Private Information: To Reveal or not to Reveal.,2008,12,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec12.html#YaoFAT08,http://doi.acm.org/10.1145/1410234.1410240 +Stefan Axelsson,The base-rate fallacy and the difficulty of intrusion detection.,2000,3,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec3.html#Axelsson00,http://doi.acm.org/10.1145/357830.357849 +Martin Burkhart,Privacy-preserving distributed network troubleshooting - bridging the gap between theory and practice.,2011,14,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec14.html#BurkhartD11,http://doi.acm.org/10.1145/2043628.2043632 +Alexandra Boldyreva,New Multiparty Signature Schemes for Network Routing Applications.,2008,12,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec12.html#BoldyrevaGOY08,http://doi.acm.org/10.1145/1410234.1410237 +Donggang Liu,Establishing pairwise keys in distributed sensor networks.,2005,8,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec8.html#LiuNL05,http://doi.acm.org/10.1145/1053283.1053287 +Benedikt Driessen,An experimental security analysis of two satphone standards.,2013,16,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec16.html#DriessenHWPH13,http://doi.acm.org/10.1145/2535522 +Jung-Min Park 0001,Efficient multicast stream authentication using erasure codes.,2003,6,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec6.html#ParkCS03,http://doi.acm.org/10.1145/762476.762480 +Manuel Koch,A graph-based formalism for RBAC.,2002,5,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec5.html#KochMP02,http://doi.acm.org/10.1145/545186.545191 +AbdelRahman Abdou,Server Location Verification (SLV) and Server Location Pinning: Augmenting TLS Authentication.,2018,21,ACM Trans. Priv. Secur.,1,db/journals/tissec/tissec21.html#AbdouO18,http://doi.acm.org/10.1145/3139294 +Serdar Cabuk,IP Covert Channel Detection.,2009,12,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec12.html#CabukBS09,http://doi.acm.org/10.1145/1513601.1513604 +Aybek Mukhamedov,Identity Escrow Protocol and Anonymity Analysis in the Applied Pi-Calculus.,2010,13,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec13.html#MukhamedovR10,http://doi.acm.org/10.1145/1880022.1880035 +Fengguo Wei,Amandroid: A Precise and General Inter-component Data Flow Analysis Framework for Security Vetting of Android Apps.,2018,21,ACM Trans. Priv. Secur.,3,db/journals/tissec/tissec21.html#WeiROR18,http://doi.acm.org/10.1145/3183575 +Jean Bacon,A model of OASIS role-based access control and its support for active security.,2002,5,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec5.html#BaconMY02,http://doi.acm.org/10.1145/581271.581276 +Lidong Zhou,APSS: proactive secret sharing in asynchronous systems.,2005,8,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec8.html#ZhouSR05,http://doi.acm.org/10.1145/1085126.1085127 +Günter Karjoth,Access control with IBM Tivoli access manager.,2003,6,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec6.html#Karjoth03,http://doi.acm.org/10.1145/762476.762479 +Qihua Wang,Satisfiability and Resiliency in Workflow Authorization Systems.,2010,13,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec13.html#WangL10,http://doi.acm.org/10.1145/1880022.1880034 +Michael K. Reiter,Crowds: Anonymity for Web Transactions.,1998,1,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec1.html#ReiterR98,http://doi.acm.org/10.1145/290163.290168 +Marina Blanton,Secure and verifiable outsourcing of large-scale biometric computations.,2013,16,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec16.html#BlantonZF13,http://doi.acm.org/10.1145/2535523 +Burton S. Kaliski Jr.,An unknown key-share attack on the MQV key agreement protocol.,2001,4,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec4.html#Kaliski01,http://doi.acm.org/10.1145/501978.501981 +John McHugh,Testing Intrusion detection systems: a critique of the 1998 and 1999 DARPA intrusion detection system evaluations as performed by Lincoln Laboratory.,2000,3,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec3.html#McHugh00,http://doi.acm.org/10.1145/382912.382923 +Joseph Y. Halpern,Using First-Order Logic to Reason about Policies.,2008,11,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec11.html#HalpernW08,http://doi.acm.org/10.1145/1380564.1380569 +Johannes Götzfried,Mutual Authentication and Trust Bootstrapping towards Secure Disk Encryption.,2014,17,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec17.html#GotzfriedM14,http://doi.acm.org/10.1145/2663348 +Feifei Li 0001,Authenticated Index Structures for Aggregation Queries.,2010,13,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec13.html#LiHKR10,http://doi.acm.org/10.1145/1880022.1880026 +Adam Stubblefield,A key recovery attack on the 802.11b wired equivalent privacy protocol (WEP).,2004,7,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec7.html#StubblefieldIR04,http://doi.acm.org/10.1145/996943.996948 +Leyla Bilge,Exposure: A Passive DNS Analysis Service to Detect and Report Malicious Domains.,2014,16,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec16.html#BilgeSBKK14,http://doi.acm.org/10.1145/2584679 +Steve Barker,Flexible access control policy specification with constraint logic programming.,2003,6,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec6.html#BarkerS03,http://doi.acm.org/10.1145/950191.950194 +Refik Molva,Scalable multicast security with dynamic recipient groups.,2000,3,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec3.html#MolvaP00,http://doi.acm.org/10.1145/357830.357834 +Ian Molloy,Mining Roles with Multiple Objectives.,2010,13,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec13.html#MolloyCLWLBCL10,http://doi.acm.org/10.1145/1880022.1880030 +Reiner Dojen,The concept of layered proving trees and its application to the automation of security protocol verification.,2005,8,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec8.html#DojenC05,http://doi.acm.org/10.1145/1085126.1085128 +Yongdae Kim,Tree-based group key agreement.,2004,7,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec7.html#KimPT04,http://doi.acm.org/10.1145/984334.984337 +Catherine A. Meadows,Introduction to ACM TISSEC special issue on CCS 2005.,2009,13,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec13.html#Meadows09,http://doi.acm.org/10.1145/1609956.1609957 +Carl M. Ellison,Public-key support for group collaboration.,2003,6,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec6.html#EllisonD03,http://doi.acm.org/10.1145/950191.950195 +Konstantine Arkoudas,Sophisticated Access Control via SMT and Logical Frameworks.,2014,16,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec16.html#ArkoudasCC14,http://doi.acm.org/10.1145/2595222 +Fabrice Benhamouda,A New Framework for Privacy-Preserving Aggregation of Time-Series Data.,2016,18,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec18.html#BenhamoudaJL16,http://doi.acm.org/10.1145/2873069 +Stephen Chong,Using Architecture to Reason about Information Security.,2015,18,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec18.html#ChongM15,http://doi.acm.org/10.1145/2829949 +Michael K. Reiter,Authentication Metric Analysis and Design.,1999,2,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec2.html#ReiterS99,http://doi.acm.org/10.1145/317087.317088 +Ninghui Li,Security analysis in role-based access control.,2006,9,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec9.html#LiT06,http://doi.acm.org/10.1145/1187441.1187442 +Scott A. Crosby,Authenticated Dictionaries: Real-World Costs and Trade-Offs.,2011,14,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec14.html#CrosbyW11,http://doi.acm.org/10.1145/2019599.2019602 +Sylvia L. Osborn,Configuring role-based access control to enforce mandatory and discretionary access control policies.,2000,3,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec3.html#OsbornSM00,http://doi.acm.org/10.1145/354876.354878 +Vijay Atluri,Preface.,2005,8,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec8.html#Atluri05,http://doi.acm.org/10.1145/1053283.1053285 +Vijayalakshmi Atluri,An authorization model for temporal and derived data: securing information portals.,2002,5,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec5.html#AtluriG02,http://doi.acm.org/10.1145/504909.504912 +David A. Basin,Dynamic enforcement of abstract separation of duty constraints.,2012,15,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec15.html#BasinBK12,http://doi.acm.org/10.1145/2382448.2382451 +Benny Pinkas,Scalable Private Set Intersection Based on OT Extension.,2018,21,ACM Trans. Priv. Secur.,2,db/journals/tissec/tissec21.html#PinkasSZ18,http://doi.acm.org/10.1145/3154794 +Mike Burmester,Lightweight RFID authentication with forward and backward security.,2011,14,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec14.html#BurmesterM11,http://doi.acm.org/10.1145/1952982.1952993 +Peter C. Chapin,SpartanRPC: Remote Procedure Call Authorization in Wireless Sensor Networks.,2014,17,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec17.html#ChapinS14,http://doi.acm.org/10.1145/2644809 +Qun Ni,Privacy-aware role-based access control.,2010,13,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec13.html#NiBLBKKT10,http://doi.acm.org/10.1145/1805974.1805980 +Young U. Ryu,Evaluation of Intrusion Detection Systems Under a Resource Constraint.,2008,11,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec11.html#RyuR08,http://doi.acm.org/10.1145/1380564.1380566 +Miroslav Ponec,New payload attribution methods for network forensic investigations.,2010,13,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec13.html#PonecGWB10,http://doi.acm.org/10.1145/1698750.1698755 +Mary R. Thompson,Certificate-based authorization policy in a PKI environment.,2003,6,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec6.html#ThompsonEM03,http://doi.acm.org/10.1145/950191.950196 +Yossi Gilad,Off-Path TCP Injection Attacks.,2014,16,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec16.html#GiladH14,http://doi.acm.org/10.1145/2597173 +Karthikeyan Bhargavan,Verified Cryptographic Implementations for TLS.,2012,15,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec15.html#BhargavanFCZ12,http://doi.acm.org/10.1145/2133375.2133378 +Rui Tan,Integrity Attacks on Real-Time Pricing in Electric Power Grids.,2015,18,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec18.html#TanKYK15,http://doi.acm.org/10.1145/2790298 +Jiangtao Li 0001,Automated trust negotiation using cryptographic credentials.,2009,13,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec13.html#LiLW09,http://doi.acm.org/10.1145/1609956.1609958 +Roberto Di Pietro,Silence is Golden: Exploiting Jamming and Radio Silence to Communicate.,2015,17,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec17.html#PietroO15,http://doi.acm.org/10.1145/2699906 +Trent Jaeger,Consistency analysis of authorization hook placement in the Linux security modules framework.,2004,7,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec7.html#JaegerEZ04,http://doi.acm.org/10.1145/996943.996944 +Brian Demsky,Cross-application data provenance and policy enforcement.,2011,14,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec14.html#Demsky11,http://doi.acm.org/10.1145/1952982.1952988 +James Joshi,Guest Editorial SACMAT 2009 and 2010.,2011,14,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec14.html#JoshiC11,http://doi.acm.org/10.1145/2043621.2043622 +Yangchun Fu,Bridging the Semantic Gap in Virtual Machine Introspection via Online Kernel Data Redirection.,2013,16,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec16.html#FuL13,http://doi.acm.org/10.1145/2505124 +Mohammad Jafari,A Framework for Expressing and Enforcing Purpose-Based Privacy Policies.,2014,17,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec17.html#JafariSFB14,http://doi.acm.org/10.1145/2629689 +Ehsan Toreini,Texture to the Rescue: Practical Paper Fingerprinting Based on Texture Patterns.,2017,20,ACM Trans. Priv. Secur.,3,db/journals/tissec/tissec20.html#ToreiniSH17,http://doi.acm.org/10.1145/3092816 +Elisa Bertino,TRBAC: A temporal role-based access control model.,2001,4,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec4.html#BertinoBF01,http://doi.acm.org/10.1145/501978.501979 +Gildas Avoine,Characterization and Improvement of Time-Memory Trade-Off Based on Perfect Tables.,2008,11,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec11.html#AvoineJO08,http://doi.acm.org/10.1145/1380564.1380565 +Tanvir Ahmed 0002,Specification and verification of security requirements in a programming model for decentralized CSCW systems.,2007,10,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec10.html#AhmedT07,http://doi.acm.org/10.1145/1237500.1237503 +Massimo Bernaschi,Remus: a security-enhanced operating system.,2002,5,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec5.html#BernaschiGM02,http://doi.acm.org/10.1145/504909.504911 +Neil Zhenqiang Gong,Attribute Inference Attacks in Online Social Networks.,2018,21,ACM Trans. Priv. Secur.,1,db/journals/tissec/tissec21.html#GongL18,http://doi.acm.org/10.1145/3154793 +Roberto Di Pietro,Redoubtable Sensor Networks.,2008,11,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec11.html#PietroMMPR08,http://doi.acm.org/10.1145/1341731.1341734 +Matthew K. Wright,The predecessor attack: An analysis of a threat to anonymous communications systems.,2004,7,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec7.html#WrightALS04,http://doi.acm.org/10.1145/1042031.1042032 +Matthew K. Wright,Passive-Logging Attacks Against Anonymous Communications Systems.,2008,11,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec11.html#WrightALS08,http://doi.acm.org/10.1145/1330332.1330335 +Muhammad Qasim Ali,Automated Anomaly Detector Adaptation using Adaptive Threshold Tuning.,2013,15,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec15.html#AliAKK13,http://doi.acm.org/10.1145/2445566.2445569 +Trent Jaeger,Policy management using access control spaces.,2003,6,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec6.html#JaegerZC03,http://doi.acm.org/10.1145/937527.937528 +Kim Potter Kihlstrom,The SecureRing group communication system.,2001,4,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec4.html#KihlstromMM01,http://doi.acm.org/10.1145/503339.503341 +Shouling Ji,General Graph Data De-Anonymization: From Mobility Traces to Social Networks.,2016,18,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec18.html#JiLSHB16,http://doi.acm.org/10.1145/2894760 +Peng Ning,Hypothesizing and reasoning about attacks missed by intrusion detection systems.,2004,7,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec7.html#NingX04,http://doi.acm.org/10.1145/1042031.1042036 +Matt Blaze,Trust management for IPsec.,2002,5,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec5.html#BlazeIK02,http://doi.acm.org/10.1145/505586.505587 +Ravi S. Sandhu,The Multilevel Relational (MLR) Data Model.,1998,1,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec1.html#SandhuC98,http://doi.acm.org/10.1145/290163.290171 +Lawrence C. Paulson,Inductive Analysis of the Internet Protocol TLS.,1999,2,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec2.html#Paulson99,http://doi.acm.org/10.1145/322510.322530 +Hao Shi,Handling Anti-Virtual Machine Techniques in Malicious Software.,2018,21,ACM Trans. Priv. Secur.,1,db/journals/tissec/tissec21.html#ShiMA18,http://doi.acm.org/10.1145/3139292 +Mikhail J. Atallah,Dynamic and Efficient Key Management for Access Hierarchies.,2009,12,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec12.html#AtallahBFF09,http://doi.acm.org/10.1145/1455526.1455531 +Deepayan Chakrabarti,Epidemic thresholds in real networks.,2008,10,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec10.html#ChakrabartiWWLF08,http://doi.acm.org/10.1145/1284680.1284681 +Abdul Serwadda,Examining a Large Keystroke Biometrics Dataset for Statistical-Attack Openings.,2013,16,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec16.html#SerwaddaP13,http://doi.acm.org/10.1145/2516960 +Jaehong Park,The UCONABC usage control model.,2004,7,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec7.html#ParkS04,http://doi.acm.org/10.1145/984334.984339 +Joachim Biskup,Editorial ESORICS 2007.,2010,13,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec13.html#BiskupL10,http://doi.acm.org/10.1145/1805974.1805975 +HweeHwa Pang,Verifying Completeness of Relational Query Answers from Online Servers.,2008,11,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec11.html#PangT08,http://doi.acm.org/10.1145/1330332.1330337 +Gabriel Montenegro,Crypto-based identifiers (CBIDs): Concepts and applications.,2004,7,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec7.html#MontenegroC04,http://doi.acm.org/10.1145/984334.984338 +Philippe Golle,Data Collection with Self-Enforcing Privacy.,2008,12,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec12.html#GolleMM08,http://doi.acm.org/10.1145/1455518.1477940 +Brian D. Carrier,The session token protocol for forensics and traceback.,2004,7,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec7.html#CarrierS04,http://doi.acm.org/10.1145/1015040.1015041 +Ye Zhu,Compromising anonymous communication systems using blind source separation.,2009,13,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec13.html#ZhuB09,http://doi.acm.org/10.1145/1609956.1609964 +Zheng Dong,Detection of Rogue Certificates from Trusted Certificate Authorities Using Deep Neural Networks.,2016,19,ACM Trans. Priv. Secur.,2,db/journals/tissec/tissec19.html#DongKC16,http://doi.acm.org/10.1145/2975591 +Jaideep Vaidya,The role mining problem: A formal perspective.,2010,13,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec13.html#VaidyaAG10,http://doi.acm.org/10.1145/1805974.1895983 +Peng Li,StopWatch: A Cloud Architecture for Timing Channel Mitigation.,2014,17,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec17.html#LiGR14,http://doi.acm.org/10.1145/2670940 +Yuriy Polyakov,Fast Proxy Re-Encryption for Publish/Subscribe Systems.,2017,20,ACM Trans. Priv. Secur.,4,db/journals/tissec/tissec20.html#PolyakovRSV17,http://doi.acm.org/10.1145/3128607 +Mihir Bellare,Breaking and provably repairing the SSH authenticated encryption scheme: A case study of the Encode-then-Encrypt-and-MAC paradigm.,2004,7,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec7.html#BellareKN04,http://doi.acm.org/10.1145/996943.996945 +Asaf Shabtai,Behavioral Study of Users When Interacting with Active Honeytokens.,2016,18,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec18.html#ShabtaiBRGES16,http://doi.acm.org/10.1145/2854152 +Joseph Y. Halpern,On the relationship between strand spaces and multi-agent systems.,2003,6,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec6.html#HalpernP03,http://doi.acm.org/10.1145/605434.605436 +Paul C. van Oorschot,On countering online dictionary attacks with login histories and humans-in-the-loop.,2006,9,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec9.html#OorschotS06,http://doi.acm.org/10.1145/1178618.1178619 +Michael M. Swift,Improving the granularity of access control for Windows 2000.,2002,5,ACM Trans. Inf. Syst. Secur.,4,db/journals/tissec/tissec5.html#SwiftHBDGCGJ02,http://doi.acm.org/10.1145/581271.581273 +Andy Rupp,Cryptographic Theory Meets Practice: Efficient and Privacy-Preserving Payments for Public Transport.,2015,17,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec17.html#RuppBHP15,http://doi.acm.org/10.1145/2699904 +Michele Carminati,Security Evaluation of a Banking Fraud Analysis System.,2018,21,ACM Trans. Priv. Secur.,3,db/journals/tissec/tissec21.html#CarminatiPCLMZ18,http://doi.acm.org/10.1145/3178370 +Ghassan O. Karame,Misbehavior in Bitcoin: A Study of Double-Spending and Accountability.,2015,18,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec18.html#KarameARGC15,http://doi.acm.org/10.1145/2732196 +Goran Doychev,CacheAudit: A Tool for the Static Analysis of Cache Side Channels.,2015,18,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec18.html#DoychevKMR15,http://doi.acm.org/10.1145/2756550 +Yunmok Son,GyrosFinger: Fingerprinting Drones for Location Tracking Based on the Outputs of MEMS Gyroscopes.,2018,21,ACM Trans. Priv. Secur.,2,db/journals/tissec/tissec21.html#SonNCK18,http://doi.acm.org/10.1145/3177751 +Shai Halevi,Public-Key Cryptography and Password Protocols.,1999,2,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec2.html#HaleviK99,http://doi.acm.org/10.1145/322510.322514 +Steven H. H. Ding,A Visualizable Evidence-Driven Approach for Authorship Attribution.,2015,17,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec17.html#DingFD15,http://doi.acm.org/10.1145/2699910 +Patrick Traynor,Noninvasive Methods for Host Certification.,2008,11,ACM Trans. Inf. Syst. Secur.,3,db/journals/tissec/tissec11.html#TraynorCWHM08,http://doi.acm.org/10.1145/1341731.1341737 +Ariel Futoransky,Foundations and applications for secure triggers.,2006,9,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec9.html#FutoranskyKSW06,http://doi.acm.org/10.1145/1127345.1127349 +David A. Basin,Enforceable Security Policies Revisited.,2013,16,ACM Trans. Inf. Syst. Secur.,1,db/journals/tissec/tissec16.html#BasinJKZ13,http://doi.acm.org/10.1145/2487222.2487225 +Raphaël Khoury,Corrective Enforcement: A New Paradigm of Security Policy Enforcement by Monitors.,2012,15,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec15.html#KhouryT12,http://doi.acm.org/10.1145/2240276.2240281 +Adam J. Lee,Enforcing Safety and Consistency Constraints in Policy-Based Authorization Systems.,2008,12,ACM Trans. Inf. Syst. Secur.,2,db/journals/tissec/tissec12.html#LeeW08,http://doi.acm.org/10.1145/1455518.1455520 +Ivan Martinovic,Pulse-Response: Exploring Human Body Impedance for Biometric Recognition.,2017,20,ACM Trans. Priv. Secur.,2,db/journals/tissec/tissec20.html#MartinovicRRT17,http://doi.acm.org/10.1145/3064645 +Michael Jenkin,Modeling Underwater Structures.,2008,2,IJCINI,4,db/journals/ijcini/ijcini2.html#JenkinHGGTW08,https://doi.org/10.4018/jcini.2008100101 +Padma Polash Paul,Cancelable Fusion of Face and Ear for Secure Multi-Biometric Template.,2013,7,IJCINI,3,db/journals/ijcini/ijcini7.html#PaulG13,https://doi.org/10.4018/ijcini.2013070105 +Yixin Zhong,Information Conversion with Intelligence Creation: The Law that Governs the Information Discipline.,2015,9,IJCINI,3,db/journals/ijcini/ijcini9.html#Zhong15,https://doi.org/10.4018/IJCINI.2015070102 +Zhewei Liang,NBPMF: Novel Peptide Mass Fingerprinting Based on Network Inference.,2017,11,IJCINI,4,db/journals/ijcini/ijcini11.html#LiangLZ17,https://doi.org/10.4018/IJCINI.2017100103 +Carla Verônica M. Marques,The Cognitive Machine as Mental Language Automata.,2018,12,IJCINI,1,db/journals/ijcini/ijcini12.html#MarquesOO18,https://doi.org/10.4018/IJCINI.2018010106 +Yingxu Wang,Perspectives on Cognitive Informatics and Cognitive Computing.,2010,4,IJCINI,1,db/journals/ijcini/ijcini4.html#WangBYKCZHZHGMSWYZZ10,https://doi.org/10.4018/jcini.2010010101 +Hieu V. Dang,Adaptive Multiobjective Memetic Optimization.,2016,10,IJCINI,4,db/journals/ijcini/ijcini10.html#DangK16a,https://doi.org/10.4018/IJCINI.2016100102 +Hadj Ahmed Bouarara,Boosting Algorithm and Meta-Heuristic Based on Genetic Algorithms for Textual Plagiarism Detection.,2015,9,IJCINI,4,db/journals/ijcini/ijcini9.html#BouararaHRA15,https://doi.org/10.4018/IJCINI.2015100105 +Takahiro Uchiya,Interactive Design Method of Agent System for Symbiotic Computing.,2009,3,IJCINI,1,db/journals/ijcini/ijcini3.html#UchiyaMHSK09,https://doi.org/10.4018/jcini.2009010104 +Akinori Abe,Cognitive Chance Discovery: From Abduction to Affordance and Curation.,2014,8,IJCINI,2,db/journals/ijcini/ijcini8.html#Abe14,https://doi.org/10.4018/IJCINI.2014040104 +Witold Kinsner,Amplification of Signal Features Using Variance Fractal Dimension Trajectory.,2010,4,IJCINI,4,db/journals/ijcini/ijcini4.html#KinsnerG10,http://www.igi-global.com/Bookstore/Article.aspx?TitleId=49689 +Yixin Zhong,A Cognitive Approach to the Mechanism of Intelligence.,2008,2,IJCINI,1,db/journals/ijcini/ijcini2.html#Zhong08,https://doi.org/10.4018/jcini.2008010101 +Yingxu Wang,Big Data Analytics on the Characteristic Equilibrium of Collective Opinions in Social Networks.,2014,8,IJCINI,3,db/journals/ijcini/ijcini8.html#WangW14,https://doi.org/10.4018/IJCINI.2014070103 +Yu-Ru Zhang,Research on Landing Risk Assessment for Carrier-Based Aircrafts by M-V Multiattribute Decision-Making.,2018,12,IJCINI,2,db/journals/ijcini/ijcini12.html#ZhangYLS18,https://doi.org/10.4018/IJCINI.2018040104 +Dejun Zheng,Entropy-Based Fabric Weave Pattern Indexing and Classification.,2010,4,IJCINI,4,db/journals/ijcini/ijcini4.html#ZhengBH10,http://www.igi-global.com/Bookstore/Article.aspx?TitleId=49694 +Junjie Bai,Dimensional Music Emotion Recognition by Machine Learning.,2016,10,IJCINI,4,db/journals/ijcini/ijcini10.html#BaiFPSLLLW16,https://doi.org/10.4018/IJCINI.2016100104 +Yingxu Wang,The Cognitive Informatics Theory and Mathematical Models of Visual Information Processing in the Brain.,2009,3,IJCINI,3,db/journals/ijcini/ijcini3.html#Wang09b,https://doi.org/10.4018/jcini.2009070101 +Mercedes Hidalgo-Herrero,Comparing Learning Methods.,2009,3,IJCINI,3,db/journals/ijcini/ijcini3.html#Hidalgo-HerreroRR09,https://doi.org/10.4018/jcini.2009070102 +Hongtao Huang,A Semantic Information Content Based Method for Evaluating FCA Concept Similarity.,2018,12,IJCINI,2,db/journals/ijcini/ijcini12.html#HuangLY18,https://doi.org/10.4018/IJCINI.2018040106 +Marco Tonti,The Operationalization of the Unconscious: Models of Subcognitive Informatics.,2014,8,IJCINI,4,db/journals/ijcini/ijcini8.html#Tonti14,https://doi.org/10.4018/ijcini.2014100102 +Yong Liu,Feature Reduction with Inconsistency.,2010,4,IJCINI,2,db/journals/ijcini/ijcini4.html#LiuJY10,https://doi.org/10.4018/jcini.2010040106 +Xiang-min Tan,Adaptive Integrated Control for Omnidirectional Mobile Manipulators Based on Neural-Network.,2009,3,IJCINI,4,db/journals/ijcini/ijcini3.html#TanZYX09,https://doi.org/10.4018/jcini.2009062303 +Bing Zhou,A Logic Approach to Granular Computing.,2008,2,IJCINI,2,db/journals/ijcini/ijcini2.html#ZhouY08,https://doi.org/10.4018/jcini.2008040104 +Poonam Bansal,Robust Feature Vector Set Using Higher Order Autocorrelation Coefficients.,2010,4,IJCINI,4,db/journals/ijcini/ijcini4.html#BansalDJ10,http://www.igi-global.com/Bookstore/Article.aspx?TitleId=49691 +Christopher Dartnell,Human Discovery and Machine Learning.,2008,2,IJCINI,4,db/journals/ijcini/ijcini2.html#DartnellMHS08,https://doi.org/10.4018/jcini.2008100105 +Rania A. HodHod,Computational Creativity: Improv Agents and Conceptual Blending.,2014,8,IJCINI,2,db/journals/ijcini/ijcini8.html#HodHodM14,https://doi.org/10.4018/IJCINI.2014040101 +Xiangqiang Lou,The Research on Aggregate Analysis of the Regulatory Detailed Planning by considering the Traffic Capacity.,2015,9,IJCINI,1,db/journals/ijcini/ijcini9.html#LouH15,https://doi.org/10.4018/IJCINI.2015010101 +Yingxu Wang,Unveiling the Cognitive Mechanisms of Eyes: The Visual Sensor Vs. the Perceptive Browser of the Brain.,2014,8,IJCINI,1,db/journals/ijcini/ijcini8.html#Wang14,https://doi.org/10.4018/ijcini.2014010103 +Qingyong Li,A Selective Sparse Coding Model with Embedded Attention Mechanism.,2007,1,IJCINI,4,db/journals/ijcini/ijcini1.html#LiSS07,https://doi.org/10.4018/jcini.2007100105 +Amit Kumar,Materialized View Selection Using Set Based Particle Swarm Optimization.,2018,12,IJCINI,3,db/journals/ijcini/ijcini12.html#KumarK18,https://doi.org/10.4018/IJCINI.2018070102 +Andrei Khrennikov,Towards Ultrametric Modeling of Unconscious Creativity.,2014,8,IJCINI,4,db/journals/ijcini/ijcini8.html#KhrennikovK14,https://doi.org/10.4018/ijcini.2014100106 +Yingxu Wang,The Cognitive Processes of Formal Inferences.,2007,1,IJCINI,4,db/journals/ijcini/ijcini1.html#Wang07e,https://doi.org/10.4018/jcini.2007100106 +Lech Polkowski,On Foundations and Applications of the Paradigm of Granular Rough Computing.,2008,2,IJCINI,2,db/journals/ijcini/ijcini2.html#PolkowskiS08,https://doi.org/10.4018/jcini.2008040105 +Zhiwei Shi,A Novel Plausible Model for Visual Perception.,2008,2,IJCINI,1,db/journals/ijcini/ijcini2.html#ShiSH08,https://doi.org/10.4018/jcini.2008010104 +Fumio Mizoguchi,Meta-Cognition for Inferring Car Driver Cognitive Behavior from Driving Recorder Data.,2016,10,IJCINI,3,db/journals/ijcini/ijcini10.html#MizoguchiI16,https://doi.org/10.4018/IJCINI.2016070101 +Mohamed Amine Boudia,Hybridization of Social Spiders and Extractions Techniques for Automatic Text Summaries.,2015,9,IJCINI,3,db/journals/ijcini/ijcini9.html#BoudiaHARR15,https://doi.org/10.4018/IJCINI.2015070104 +J. Anitha,A Hybrid Genetic Algorithm based Fuzzy Approach for Abnormal Retinal Image Classification.,2010,4,IJCINI,3,db/journals/ijcini/ijcini4.html#AnithaVH10,https://doi.org/10.4018/jcini.2010070103 +Sahib Jan,Ordering: A Reliable Qualitative Information for the Alignment of Sketch and Metric Maps.,2014,8,IJCINI,1,db/journals/ijcini/ijcini8.html#JanSWC14,https://doi.org/10.4018/ijcini.2014010105 +Lisa Fan,A User-Driven Ontology Guided Image Retrieval Model.,2009,3,IJCINI,3,db/journals/ijcini/ijcini3.html#FanL09,https://doi.org/10.4018/jcini.2009070106 +Du Zhang,A Fix-Point Semantics for Rule-Base Anomalies.,2007,1,IJCINI,4,db/journals/ijcini/ijcini1.html#Zhang07,https://doi.org/10.4018/jcini.2007100102 +Lixin Fan,Using the Similarity Measure between Intuitionistic Fuzzy Sets for the Application on Pattern Recognitions.,2015,9,IJCINI,2,db/journals/ijcini/ijcini9.html#Fan15,https://doi.org/10.4018/IJCINI.2015040102 +Vineela Devarashetty,Modeling a Secure Sensor Network Using an Extended Elementary Object System.,2010,4,IJCINI,3,db/journals/ijcini/ijcini4.html#DevarashettyTMZ10,https://doi.org/10.4018/jcini.2010070101 +Yingxu Wang,Semantic Manipulations and Formal Ontology for Machine Learning based on Concept Algebra.,2011,5,IJCINI,3,db/journals/ijcini/ijcini5.html#WangTH11,https://doi.org/10.4018/IJCINI.2011070101 +Giuseppe Iurato,The Dawning of Computational Psychoanalysis: A Proposal for Some First Elementary Formalization Attempts.,2014,8,IJCINI,4,db/journals/ijcini/ijcini8.html#Iurato14,https://doi.org/10.4018/ijcini.2014100104 +Yingxu Wang,A Cognitive Informatics Reference Model of Autonomous Agent Systems (AAS).,2009,3,IJCINI,1,db/journals/ijcini/ijcini3.html#Wang09,https://doi.org/10.4018/jcini.2009010101 +Michael R. W. Dawson,Representing an Intrinsically Nonmetric Space of Compass Directions in an Artificial Neural Network.,2007,1,IJCINI,1,db/journals/ijcini/ijcini1.html#DawsonB07,https://doi.org/10.4018/jcini.2007010104 +Junjie Bai,Music Emotions Recognition by Machine Learning With Cognitive Classification Methodologies.,2017,11,IJCINI,4,db/journals/ijcini/ijcini11.html#BaiLPSWFLW17,https://doi.org/10.4018/IJCINI.2017100105 +Magy Seif El-Nasr,Ambient Intelligence on the Dance Floor.,2009,3,IJCINI,2,db/journals/ijcini/ijcini3.html#El-NasrV09,https://doi.org/10.4018/jcini.2009040101 +Takuo Suganuma,Concept of Symbiotic Computing and its Agent-Based Application to a Ubiquitous Care-Support Service.,2009,3,IJCINI,1,db/journals/ijcini/ijcini3.html#SuganumaSKHS09,https://doi.org/10.4018/jcini.2009010103 +Pravin Kumar Subbaraj,Analysis Of Cognitive Load For Bilingual Subjects: Based On Lexile Measures.,2014,8,IJCINI,1,db/journals/ijcini/ijcini8.html#SubbarajABV14,https://doi.org/10.4018/ijcini.2014010102 +Jun Peng,The Least Squares SVM for the Prediction of Production in the Field of Oil and Gas.,2018,12,IJCINI,1,db/journals/ijcini/ijcini12.html#PengQTGXC18,https://doi.org/10.4018/IJCINI.2018010105 +Yi Liu 0021,The Berth-Quay Cranes and Trucks Scheduling Optimization Problem by Hybrid Intelligence Swam Algorithm.,2017,11,IJCINI,2,db/journals/ijcini/ijcini11.html#LiuS17,https://doi.org/10.4018/IJCINI.2017040105 +Lisa Fan,Reducing Cognitive Overload by Meta-Learning Assisted Algorithm Selection.,2008,2,IJCINI,3,db/journals/ijcini/ijcini2.html#FanL08,https://doi.org/10.4018/jcini.2008070107 +Haibin Zhu,Role-Based Human-Computer Interactions.,2011,5,IJCINI,2,db/journals/ijcini/ijcini5.html#ZhuH11,https://doi.org/10.4018/jcini.2011040103 +Jason McLaughlin,Interactive Feature Visualization and Detection for 3D Face Classification.,2011,5,IJCINI,2,db/journals/ijcini/ijcini5.html#McLaughlinFJHRF11,https://doi.org/10.4018/jcini.2011040101 +Ahmed Kharrat,Toward Efficient Segmentation of Brain Tumors Based on Support Vector Machine Classifier Through Optimized RBF Kernel Parameters and Optimal Texture Features.,2014,8,IJCINI,2,db/journals/ijcini/ijcini8.html#KharratA14,https://doi.org/10.4018/IJCINI.2014040102 +Hironori Hiraishi,Cognitive Route Search Technique for Self-Driving Vehicles.,2018,12,IJCINI,1,db/journals/ijcini/ijcini12.html#HiraishiM18,https://doi.org/10.4018/IJCINI.2018010103 +Julia M. Taylor,Towards the Cognitive Informatics of Natural Language: The Case of Computational Humor.,2013,7,IJCINI,3,db/journals/ijcini/ijcini7.html#TaylorR13,https://doi.org/10.4018/ijcini.2013070102 +Yingxu Wang,Cognitive Informatics and Cognitive Computing in Year 10 and Beyond.,2011,5,IJCINI,4,db/journals/ijcini/ijcini5.html#WangBHPKBZB11,https://doi.org/10.4018/jcini.2011100101 +Reza Fazel-Rezai,Modified Gabor Wavelets for Image Decomposition and Perfect Reconstruction.,2009,3,IJCINI,4,db/journals/ijcini/ijcini3.html#Fazel-RezaiK09,https://doi.org/10.4018/jcini.2009062302 +Yan Zhao 0001,Interactive Classification Using a Granule Network.,2007,1,IJCINI,4,db/journals/ijcini/ijcini1.html#ZhaoY07,https://doi.org/10.4018/jcini.2007100107 +Takeshi Okadome,The Event Search Engine.,2010,4,IJCINI,1,db/journals/ijcini/ijcini4.html#OkadomeKMKYS10,https://doi.org/10.4018/jcini.2010010102 +Yingxu Wang,Big Data Analytics: A Cognitive Perspectives.,2017,11,IJCINI,2,db/journals/ijcini/ijcini11.html#WangP17,https://doi.org/10.4018/IJCINI.2017040103 +Xuebing Li,The Cognitive Load Affects the Interaction Pattern of Emotion and Working Memory.,2012,6,IJCINI,2,db/journals/ijcini/ijcini6.html#LiOL12,https://doi.org/10.4018/jcini.2012040104 +Louis Massey,A Cognitive Framework for Core Language Understanding and its Computational Implementation.,2012,6,IJCINI,1,db/journals/ijcini/ijcini6.html#Massey12,https://doi.org/10.4018/jcini.2012010101 +Yingxu Wang,On Abstract Intelligence and Brain Informatics: Mapping Cognitive Functions of the Brain onto its Neural Structures.,2012,6,IJCINI,4,db/journals/ijcini/ijcini6.html#Wang12b,https://doi.org/10.4018/jcini.2012100103 +Alberto de la Encina,Formalizing Interchange Competences.,2009,3,IJCINI,4,db/journals/ijcini/ijcini3.html#EncinaHL09,https://doi.org/10.4018/jcini.2009062304 +Witold Kinsner,Towards Cognitive Machines: Multiscale Measures and Analysis.,2007,1,IJCINI,1,db/journals/ijcini/ijcini1.html#Kinsner07,https://doi.org/10.4018/jcini.2007010102 +Yingxu Wang,Cognitive Informatics: Towards Cognitive Machine Learning and Autonomous Knowledge Manipulation.,2018,12,IJCINI,1,db/journals/ijcini/ijcini12.html#WangHKFSFGPPW18,https://doi.org/10.4018/IJCINI.2018010101 +Kefeng Wang,Improved Encryption Algorithm of Images Based on Three-Dimensional Chaos.,2015,9,IJCINI,2,db/journals/ijcini/ijcini9.html#WangY15,https://doi.org/10.4018/IJCINI.2015040105 +Yingxu Wang,Formal Modeling and Specification of Design Patterns Using RTPA.,2008,2,IJCINI,1,db/journals/ijcini/ijcini2.html#WangH08,https://doi.org/10.4018/jcini.2008010108 +Hui Wei,Main Retina Information Processing Pathways Modeling.,2011,5,IJCINI,3,db/journals/ijcini/ijcini5.html#WeiZG11,https://doi.org/10.4018/IJCINI.2011070102 +Veronica Chan,Towards Developing the Piece-Wise Linear Neural Network Algorithm for Rule Extraction.,2017,11,IJCINI,2,db/journals/ijcini/ijcini11.html#ChanC17,https://doi.org/10.4018/IJCINI.2017040104 +Tadeusz Wibig,Autonomic Computing for a Complex Problem of Experimental Physics.,2010,4,IJCINI,3,db/journals/ijcini/ijcini4.html#Wibig10,https://doi.org/10.4018/jcini.2010070102 +Jun Zhang,Text Semantic Mining Model Based on the Algebra of Human Concept Learning.,2011,5,IJCINI,2,db/journals/ijcini/ijcini5.html#ZhangLHC11,https://doi.org/10.4018/jcini.2011040105 +Ismael Rodríguez,Cognitive Processes by Using Finite State Machines.,2007,1,IJCINI,3,db/journals/ijcini/ijcini1.html#RodriguezNR07,https://doi.org/10.4018/jcini.2007070104 +Tsau Young Lin,Some Remarks on the Concept of Approximations from the View of Knowledge Engineering.,2010,4,IJCINI,2,db/journals/ijcini/ijcini4.html#LinBT10,https://doi.org/10.4018/jcini.2010040101 +Shaohua Cheng,The Evaluation and Optimization to the Higher Educational Resource Allocation.,2015,9,IJCINI,1,db/journals/ijcini/ijcini9.html#ChengZ15,https://doi.org/10.4018/IJCINI.2015010105 +Natalia López,A Formal Specification of the Memorization Process.,2007,1,IJCINI,4,db/journals/ijcini/ijcini1.html#LopezNP07,https://doi.org/10.4018/jcini.2007100104 +Hieu V. Dang,Multiobjective Multivariate Optimization of Joint Spectrum Sensing and Power Control in Cognitive Wireless Networks.,2016,10,IJCINI,2,db/journals/ijcini/ijcini10.html#DangK16,https://doi.org/10.4018/IJCINI.2016040102 +Kai Hu,A Web Knowledge Discovery Engine Based on Concept Algebra.,2010,4,IJCINI,1,db/journals/ijcini/ijcini4.html#HuWT10,https://doi.org/10.4018/jcini.2010010105 +Yingxu Wang,The OAR Model of Neural Informatics for Internal Knowledge Representation in the Brain.,2007,1,IJCINI,3,db/journals/ijcini/ijcini1.html#Wang07c,https://doi.org/10.4018/jcini.2007070105 +Omar Adjali,Knowledge Processing Using EKRL for Robotic Applications.,2017,11,IJCINI,4,db/journals/ijcini/ijcini11.html#AdjaliR17,https://doi.org/10.4018/IJCINI.2017100101 +Lijun Yang,Natural Neighbor Reduction Algorithm for Instance-based Learning.,2016,10,IJCINI,4,db/journals/ijcini/ijcini10.html#YangZHCZ16,https://doi.org/10.4018/IJCINI.2016100103 +Vanessa Yaremchuk,Artificial Neural Networks that Classify Musical Chords.,2008,2,IJCINI,3,db/journals/ijcini/ijcini2.html#YaremchukD08,https://doi.org/10.4018/jcini.2008070102 +Yingxu Wang,Inference Algebra (IA): A Denotational Mathematics for Cognitive Computing and Machine Reasoning (II).,2012,6,IJCINI,1,db/journals/ijcini/ijcini6.html#Wang12,https://doi.org/10.4018/jcini.2012010102 +Mehdi Najjar,AURELLIO: A Cognitive Computational Knowledge Representation Theory.,2007,1,IJCINI,3,db/journals/ijcini/ijcini1.html#NajjarM07,https://doi.org/10.4018/jcini.2007070102 +Yingxu Wang,A Novel Machine Learning Algorithm for Cognitive Concept Elicitation by Cognitive Robots.,2017,11,IJCINI,3,db/journals/ijcini/ijcini11.html#WangZ17,https://doi.org/10.4018/IJCINI.2017070103 +Yingxu Wang,The Theoretical Framework of Cognitive Informatics.,2007,1,IJCINI,1,db/journals/ijcini/ijcini1.html#Wang07,https://doi.org/10.4018/jcini.2007010101 +Samiul Azam,Biometric Pattern Recognition from Social Media Aesthetics.,2017,11,IJCINI,3,db/journals/ijcini/ijcini11.html#AzamG17,https://doi.org/10.4018/IJCINI.2017070101 +Bing Zhou,In Search of Effective Granulization with DTRS for Ternary Classification.,2011,5,IJCINI,3,db/journals/ijcini/ijcini5.html#ZhouY11,https://doi.org/10.4018/IJCINI.2011070103 +Patrick Chan,Semantic Relatedness Estimation using the Layout Information of Wikipedia Articles.,2013,7,IJCINI,2,db/journals/ijcini/ijcini7.html#ChanHKN13,https://doi.org/10.4018/ijcini.2013040103 +Yingxu Wang,Fuzzy Causal Patterns of Humor and Jokes for Cognitive and Affective Computing.,2014,8,IJCINI,2,db/journals/ijcini/ijcini8.html#Wang14a,https://doi.org/10.4018/IJCINI.2014040103 +Yan Zhao 0001,User-Centered Interactive Data Mining.,2008,2,IJCINI,1,db/journals/ijcini/ijcini2.html#ZhaoCY08,https://doi.org/10.4018/jcini.2008010105 +Douglas Griffith,Neo-Symbiosis: The Next Stage in the Evolution of Human Information Interaction.,2007,1,IJCINI,1,db/journals/ijcini/ijcini1.html#GriffithG07,https://doi.org/10.4018/jcini.2007010103 +Jian Zhou,Important Attributes Selection Based on Rough Set for Speech Emotion Recognition.,2009,3,IJCINI,3,db/journals/ijcini/ijcini3.html#ZhouWY09,https://doi.org/10.4018/jcini.2009070105 +Akira Yoshizawa,Influence of Nonvisual Secondary Tasks on Driver's Pedestrian Detection.,2015,9,IJCINI,4,db/journals/ijcini/ijcini9.html#YoshizawaI15,https://doi.org/10.4018/IJCINI.2015100102 +Orhan Firat,Enhancing Local Linear Models Using Functional Connectivity for Brain State Decoding.,2013,7,IJCINI,3,db/journals/ijcini/ijcini7.html#FiratOOOY13,https://doi.org/10.4018/ijcini.2013070103 +Shun Li,Financial Data Modeling using a Hybrid Bayesian Network Structured Learning Algorithm.,2012,6,IJCINI,1,db/journals/ijcini/ijcini6.html#LiST12,https://doi.org/10.4018/jcini.2012010103 +Yingxu Wang,Inference Algebra (IA): A Denotational Mathematics for Cognitive Computing and Machine Reasoning (I).,2011,5,IJCINI,4,db/journals/ijcini/ijcini5.html#Wang11a,https://doi.org/10.4018/jcini.2011100105 +Hehua Fan,Pricing and Inventory Strategy of Dual-channel Supply Chain under Random Demand and Retailer's Capital Constraint.,2015,9,IJCINI,1,db/journals/ijcini/ijcini9.html#FanZ15,https://doi.org/10.4018/IJCINI.2015010103 +Taisuke Akimoto,The Expansion of Paths in the Mutual Transformation Mechanism of Music and Narrative.,2013,7,IJCINI,4,db/journals/ijcini/ijcini7.html#AkimotoEO13,https://doi.org/10.4018/ijcini.2013100103 +Shuxia Wang,Credit Risk Evaluation Based on Text Analysis.,2016,10,IJCINI,1,db/journals/ijcini/ijcini10.html#WangQFL16,https://doi.org/10.4018/IJCINI.2016010101 +Li-Quan Zhao,Advances in the Quotient Space Theory and its Applications.,2009,3,IJCINI,3,db/journals/ijcini/ijcini3.html#ZhaoZ09,https://doi.org/10.4018/jcini.2009070104 +Muhammad Waqas Bhatti,Language Independent Recognition of Human Emotion using Artificial Neural Networks.,2008,2,IJCINI,3,db/journals/ijcini/ijcini2.html#BhattiWG08,https://doi.org/10.4018/jcini.2008070101 +Douglas Walton,Using Argumentation Schemes for Argument Extraction: A Bottom-Up Method.,2012,6,IJCINI,3,db/journals/ijcini/ijcini6.html#Walton12,https://doi.org/10.4018/jcini.2012070103 +Jiayu Zhou,Learning Hierarchical Lexical Hyponymy.,2010,4,IJCINI,1,db/journals/ijcini/ijcini4.html#ZhouWC10,https://doi.org/10.4018/jcini.2010010106 +Guangzhu Xu,An Efficient Iris Recognition System Based on Intersecting Cortical Model Neural Network.,2008,2,IJCINI,3,db/journals/ijcini/ijcini2.html#XuZM08,https://doi.org/10.4018/jcini.2008070104 +Alberto de la Encina,Testing the Behaviour of Entities in a Cognitive Language.,2008,2,IJCINI,1,db/journals/ijcini/ijcini2.html#EncinaHRRR08,https://doi.org/10.4018/jcini.2008010103 +Shangzhu Jin,A New MapReduce Approach with Dynamic Fuzzy Inference for Big Data Classification Problems.,2018,12,IJCINI,3,db/journals/ijcini/ijcini12.html#JinPX18,https://doi.org/10.4018/IJCINI.2018070103 +Yingxu Wang,The Cognitive Mechanisms and Formal Models of Consciousness.,2012,6,IJCINI,2,db/journals/ijcini/ijcini6.html#Wang12a,https://doi.org/10.4018/jcini.2012040102 +Dario Schor,Time and Frequency Analysis of Particle Swarm Trajectories for Cognitive Machines.,2011,5,IJCINI,1,db/journals/ijcini/ijcini5.html#SchorK11,https://doi.org/10.4018/jcini.2011010102 +Jun Peng,A Novel Algorithm for Block Encryption of Digital Image Based on Chaos.,2011,5,IJCINI,1,db/journals/ijcini/ijcini5.html#PengZL11,https://doi.org/10.4018/jcini.2011010104 +Etienne Dumesnil,Single SNN Architecture for Classical and Operant Conditioning using Reinforcement Learning.,2017,11,IJCINI,2,db/journals/ijcini/ijcini11.html#DumesnilBB17,https://doi.org/10.4018/IJCINI.2017040101 +Zhiwei Shi,A Computational Cognitive Model of the Brain.,2008,2,IJCINI,4,db/journals/ijcini/ijcini2.html#ShiHS08,https://doi.org/10.4018/jcini.2008100107 +Phan C. Vinh,Categorical Approaches to Models and Behaviors of Autonomic Agent Systems.,2009,3,IJCINI,1,db/journals/ijcini/ijcini3.html#Vinh09,https://doi.org/10.4018/jcini.2009010102 +Yingxu Wang,On Concept Algebra: A Denotational Mathematical Structure for Knowledge and Software Modeling.,2008,2,IJCINI,2,db/journals/ijcini/ijcini2.html#Wang08a,https://doi.org/10.4018/jcini.2008040101 +J. D. Wang,Scaling Behavior of Maximal Repeat Distributions in Genomic Sequences.,2008,2,IJCINI,3,db/journals/ijcini/ijcini2.html#WangLTK08,https://doi.org/10.4018/jcini.2008070103 +Rong-Hua Li,Equivalence Between LDA/QR and Direct LDA.,2011,5,IJCINI,1,db/journals/ijcini/ijcini5.html#LiLBC11,https://doi.org/10.4018/jcini.2011010106 +Lee Flax,Cognitive Modelling Applied to Aspects of Schizophrenia and Autonomic Computing.,2007,1,IJCINI,2,db/journals/ijcini/ijcini1.html#Flax07,https://doi.org/10.4018/jcini.2007040104 +Yanling Jiang,Hierarchical Fuzzy Rule Interpolation and its Application for Hotels Location Selection.,2016,10,IJCINI,1,db/journals/ijcini/ijcini10.html#JiangJP16,https://doi.org/10.4018/IJCINI.2016010104 +Duane F. Shell,Modeling Self-Efficacy as a Dynamic Cognitive Process with the Computational-Unified Learning Model (C-ULM): Implications for Cognitive Informatics and Cognitive Computing.,2015,9,IJCINI,3,db/journals/ijcini/ijcini9.html#ShellSC15,https://doi.org/10.4018/IJCINI.2015070101 +Chen Gui,Oriented Planetary Exploration Robotic Vision Binocular Camera Calibration.,2013,7,IJCINI,4,db/journals/ijcini/ijcini7.html#GuiPL13,https://doi.org/10.4018/ijcini.2013100105 +Yingxu Wang,On the Big-R Notation for Describing Interative and Recursive Behaviors.,2008,2,IJCINI,1,db/journals/ijcini/ijcini2.html#Wang08,https://doi.org/10.4018/jcini.2008010102 +Jun Hu 0001,IPML: Structuring Distributed Multimedia Presentations in Ambient Intelligent Environments.,2009,3,IJCINI,2,db/journals/ijcini/ijcini3.html#HuF09,https://doi.org/10.4018/jcini.2009040103 +Andreas Peldszus,From Argument Diagrams to Argumentation Mining in Texts: A Survey.,2013,7,IJCINI,1,db/journals/ijcini/ijcini7.html#PeldszusS13,https://doi.org/10.4018/jcini.2013010101 +Toyoaki Nishida,Augmenting Conversational Environment.,2012,6,IJCINI,4,db/journals/ijcini/ijcini6.html#Nishida12,https://doi.org/10.4018/jcini.2012100105 +Guilong Liu,Approximations in Rough Sets vs Granular Computing for Coverings.,2010,4,IJCINI,2,db/journals/ijcini/ijcini4.html#LiuZ10,https://doi.org/10.4018/jcini.2010040105 +Witold Kinsner,A Unified Approach To Fractal Dimensions.,2007,1,IJCINI,4,db/journals/ijcini/ijcini1.html#Kinsner07b,https://doi.org/10.4018/jcini.2007100103 +Mario Antoine Aoun,Chaotic Liquid State Machine.,2015,9,IJCINI,4,db/journals/ijcini/ijcini9.html#AounB15,https://doi.org/10.4018/IJCINI.2015100101 +Václav Rajlich,Constructivist Learning During Software Development.,2007,1,IJCINI,3,db/journals/ijcini/ijcini1.html#RajlichX07,https://doi.org/10.4018/jcini.2007070106 +Witold Kinsner,Is Entropy Suitable to Characterize Data and Signals for Cognitive Informatics?,2007,1,IJCINI,2,db/journals/ijcini/ijcini1.html#Kinsner07a,https://doi.org/10.4018/jcini.2007040103 +Maria Paz Garcia Villalba,A Framework to Extract Arguments in Opinion Texts.,2012,6,IJCINI,3,db/journals/ijcini/ijcini6.html#VillalbaS12,https://doi.org/10.4018/jcini.2012070104 +Ke-Jia Chen,Giving Personal Assistant Agents a Case-Based Memory.,2010,4,IJCINI,1,db/journals/ijcini/ijcini4.html#ChenB10,https://doi.org/10.4018/jcini.2010010103 +Jan Oliver Wallgrün,Cognitive Evaluation of Spatial Formalisms: Intuitive Granularities of Overlap Relations.,2014,8,IJCINI,1,db/journals/ijcini/ijcini8.html#WallgrunYK14,https://doi.org/10.4018/ijcini.2014010101 +Rosapia Lauro Grotto,Formal Approaches in Computational Psychoanalysis and the Embodiment Issue.,2014,8,IJCINI,4,db/journals/ijcini/ijcini8.html#Grotto14,https://doi.org/10.4018/ijcini.2014100103 +Ulrich Engelke,Covert Visual Search: Revisiting the Guided Search Paradigm.,2014,8,IJCINI,3,db/journals/ijcini/ijcini8.html#EngelkeDZ14,https://doi.org/10.4018/IJCINI.2014070102 +Guiming Luo,Improved State Space Model Using Iterative PSO for Unsteady Aerodynamic System at High AOA.,2018,12,IJCINI,3,db/journals/ijcini/ijcini12.html#LuoZJ18,https://doi.org/10.4018/IJCINI.2018070101 +Yoshihiro Hayakawa,Feature Extraction of Video Using Artificial Neural Network.,2017,11,IJCINI,2,db/journals/ijcini/ijcini11.html#HayakawaOKTCF17,https://doi.org/10.4018/IJCINI.2017040102 +Witold Kinsner,The T-Sat1 Nanosatellite Design and Implementation Through a Team of Teams.,2013,7,IJCINI,1,db/journals/ijcini/ijcini7.html#KinsnerSFCAFMKF13,https://doi.org/10.4018/jcini.2013010102 +Weidong Liu 0008,Bridging Inference Based Sentence Linking Model for Semantic Coherence.,2016,10,IJCINI,1,db/journals/ijcini/ijcini10.html#LiuLSJ16,https://doi.org/10.4018/IJCINI.2016010103 +Li Li,Clustering Students for Group-Based Learning in Foreign Language Learning.,2015,9,IJCINI,2,db/journals/ijcini/ijcini9.html#LiLC15,https://doi.org/10.4018/IJCINI.2015040104 +Tiansi Dong,Knowledge Representation for Distances and Orientations of Regions.,2007,1,IJCINI,2,db/journals/ijcini/ijcini1.html#Dong07,https://doi.org/10.4018/jcini.2007040106 +Xiao Wei,Building the Multidimensional Semantic Index of Webpages for Facet Extraction.,2015,9,IJCINI,2,db/journals/ijcini/ijcini9.html#WeiQX15,https://doi.org/10.4018/IJCINI.2015040101 +Yingxu Wang,Perspectives on eBrain and Cognitive Computing.,2012,6,IJCINI,4,db/journals/ijcini/ijcini6.html#WangABBHIKMNSTZ12,https://doi.org/10.4018/jcini.2012100101 +Yingxu Wang,Cognitive Learning Methodologies for Brain-Inspired Cognitive Robotics.,2015,9,IJCINI,2,db/journals/ijcini/ijcini9.html#Wang15,https://doi.org/10.4018/IJCINI.2015040103 +Hiroaki Koma,Detecting Cognitive Distraction using Random Forest by Considering Eye Movement Type.,2017,11,IJCINI,1,db/journals/ijcini/ijcini11.html#KomaHYI17,https://doi.org/10.4018/IJCINI.2017010102 +Boxu Zhao,Improved Boosting Model for Unsteady Nonlinear Aerodynamics based on Computational Intelligence.,2017,11,IJCINI,1,db/journals/ijcini/ijcini11.html#ZhaoLZ17,https://doi.org/10.4018/IJCINI.2017010104 +Lixiao Zhang,Measurement of Textual Complexity Based on Categorical Invariance.,2013,7,IJCINI,2,db/journals/ijcini/ijcini7.html#ZhangZ13,https://doi.org/10.4018/ijcini.2013040106 +Witold Pedrycz,Human Centricity and Perception-Based Perspective and Their Centrality to the Agenda of Granular Computing.,2011,5,IJCINI,4,db/journals/ijcini/ijcini5.html#Pedrycz11,https://doi.org/10.4018/jcini.2011100104 +Fatema Tuz Zohra,Regression-Based Automated Facial Image Quality Model.,2017,11,IJCINI,4,db/journals/ijcini/ijcini11.html#ZohraGZG17,https://doi.org/10.4018/IJCINI.2017100102 +Hong-Bo Wang,Research and Application of Adaptive Step Mechanism for Glowworm Swarm Optimization Algorithm.,2018,12,IJCINI,1,db/journals/ijcini/ijcini12.html#WangTRT18,https://doi.org/10.4018/IJCINI.2018010104 +Yunfeng Wu,An Unbiased Linear Adaptive Filter with Normalized Coefficients for the Removal of Noise in Electrocardiographic Signals.,2009,3,IJCINI,4,db/journals/ijcini/ijcini3.html#WuR09,https://doi.org/10.4018/jcini.2009062305 +Yingxu Wang,Formal RTPA Models for a Set of Meta-Cognitive Processes of the Brain.,2008,2,IJCINI,4,db/journals/ijcini/ijcini2.html#Wang08e,https://doi.org/10.4018/jcini.2008100102 +Yingxu Wang,Perspectives on Cognitive Computers and Knowledge Processors.,2013,7,IJCINI,3,db/journals/ijcini/ijcini7.html#WangFGKMPPPRST13,https://doi.org/10.4018/ijcini.2013070101 +Yasuo Kudo,An Evaluation Method of Relative Reducts Based on Roughness of Partitions.,2010,4,IJCINI,2,db/journals/ijcini/ijcini4.html#KudoM10,https://doi.org/10.4018/jcini.2010040104 +Jesus D. Terrazas Gonzalez,A Modular Dynamical Cryptosystem Based on Continuous-Interval Cellular Automata.,2011,5,IJCINI,4,db/journals/ijcini/ijcini5.html#GonzalezK11,https://doi.org/10.4018/jcini.2011100106 +Yue Wang,Research on Opening and Closing Synchronization of Flexible Hatch on Space Shuttle.,2018,12,IJCINI,3,db/journals/ijcini/ijcini12.html#WangLP18,https://doi.org/10.4018/IJCINI.2018070104 +Weiwei Xing,3D Object Classification Based on Volumetric Parts.,2008,2,IJCINI,1,db/journals/ijcini/ijcini2.html#XingLY08,https://doi.org/10.4018/jcini.2008010107 +Juan Pablo Soto,An Agent System to Manage Knowledge in CoPs.,2009,3,IJCINI,1,db/journals/ijcini/ijcini3.html#SotoVPP09,https://doi.org/10.4018/jcini.2009010105 +Omar Trigui,Hilbert-Huang Transform and Welch's Method for Motor imagery based Brain Computer Interface.,2017,11,IJCINI,3,db/journals/ijcini/ijcini11.html#TriguiZM17,https://doi.org/10.4018/IJCINI.2017070104 +Yingxu Wang,On System Algebra: A Denotational Mathematical Structure for Abstract System Modeling.,2008,2,IJCINI,2,db/journals/ijcini/ijcini2.html#Wang08b,https://doi.org/10.4018/jcini.2008040102 +Sébastien Dourlens,Cognitive Memory for Semantic Agents Architecture in Robotic Interaction.,2011,5,IJCINI,1,db/journals/ijcini/ijcini5.html#DourlensR11,https://doi.org/10.4018/jcini.2011010103 +Junsheng Zhang,Semantically Linking Information Resources for Web-Based Sharing.,2013,7,IJCINI,2,db/journals/ijcini/ijcini7.html#ZhangGHXSQ13,https://doi.org/10.4018/ijcini.2013040105 +Rutu Mulkar-Mehta,Granular Causality Applications: Using Part-of Relations for Discovering Causality.,2012,6,IJCINI,3,db/journals/ijcini/ijcini6.html#Mulkar-Mehta12,https://doi.org/10.4018/jcini.2012070105 +Roderic A. Girle,Methodological Issues for the Logic of Questions and Commands.,2012,6,IJCINI,3,db/journals/ijcini/ijcini6.html#GirleM12,https://doi.org/10.4018/jcini.2012070101 +Yingxu Wang,Quantitative Semantic Analysis and Comprehension by Cognitive Machine Learning.,2016,10,IJCINI,3,db/journals/ijcini/ijcini10.html#WangVZ16,https://doi.org/10.4018/IJCINI.2016070102 +Feng Xie,Semantic Based Annotation for Surveillance Big Data Using Domain Knowledge.,2015,9,IJCINI,1,db/journals/ijcini/ijcini9.html#XieX15,https://doi.org/10.4018/IJCINI.2015010102 +Shiny Priyadarshini J.,Analogizing the Thinning Algorithm and Elicitation of Vascular Landmark in Retinal Images.,2016,10,IJCINI,3,db/journals/ijcini/ijcini10.html#JG16,https://doi.org/10.4018/IJCINI.2016070103 +Lixiao Feng,Implanted Cardiac Pacemaker Mathematical Modeling and Research based on the Volume Conduction.,2017,11,IJCINI,3,db/journals/ijcini/ijcini11.html#FengBCPC17,https://doi.org/10.4018/IJCINI.2017070105 +Shintaro Imai,A Data Processing Method for Human Motion Estimation to Reduce Network and Sensor Node Loads.,2013,7,IJCINI,1,db/journals/ijcini/ijcini7.html#ImaiMCAI13,https://doi.org/10.4018/jcini.2013010103 +Yingxu Wang,On Cognitive Foundations of Creativity and the Cognitive Process of Creation.,2009,3,IJCINI,4,db/journals/ijcini/ijcini3.html#Wang09c,https://doi.org/10.4018/jcini.2009062301 +Jun Peng,A Novel Approach for Designing Dynamical S-Boxes Using Hyperchaotic System.,2012,6,IJCINI,1,db/journals/ijcini/ijcini6.html#PengZL12,https://doi.org/10.4018/jcini.2012010105 +Hui Wei,A Neural Dynamic Model Based on Activation Diffusion and a Micro-Explanation for Cognitive Operations.,2012,6,IJCINI,2,db/journals/ijcini/ijcini6.html#Wei12,https://doi.org/10.4018/jcini.2012040101 +Dejun Zheng,Cognitive Weave Pattern Prioritization in Fabric Design: An Application-Oriented Approach.,2012,6,IJCINI,1,db/journals/ijcini/ijcini6.html#ZhengBHX12,https://doi.org/10.4018/jcini.2012010104 +Yingxu Wang,Abstract Intelligence: Embodying and Enabling Cognitive Systems by Mathematical Engineering.,2017,11,IJCINI,1,db/journals/ijcini/ijcini11.html#WangZWHBBHLMPRT17,https://doi.org/10.4018/IJCINI.2017010101 +Zheng Xu 0001,Generating Semantic Annotation of Video for Organizing and Searching Traffic Resources.,2014,8,IJCINI,1,db/journals/ijcini/ijcini8.html#XuZLML14,https://doi.org/10.4018/ijcini.2014010104 +Christine W. Chan,Development of an Ontology for an Industrial Domain.,2007,1,IJCINI,3,db/journals/ijcini/ijcini1.html#Chan07,https://doi.org/10.4018/jcini.2007070103 +Witold Kinsner,A Relative Fractal Dimension Spectrum for a Perceptual Complexity Measure.,2008,2,IJCINI,1,db/journals/ijcini/ijcini2.html#KinsnerD08,https://doi.org/10.4018/jcini.2008010106 +Vitaliy L. Rayz,Cognitive Imaging: Using Knowledge Representation for Segmentation of MRA Data.,2018,12,IJCINI,2,db/journals/ijcini/ijcini12.html#RayzSRR18,https://doi.org/10.4018/IJCINI.2018040101 +Masahiro Inuiguchi,Further Considerations of Classification-Oriented and Approximation-Oriented Rough Sets in Generalized Settings.,2010,4,IJCINI,2,db/journals/ijcini/ijcini4.html#Inuiguchi10,https://doi.org/10.4018/jcini.2010040102 +Cungen Cao,Logical Connections of Statements at the Ontological Level.,2010,4,IJCINI,3,db/journals/ijcini/ijcini4.html#CaoSS10,https://doi.org/10.4018/jcini.2010070105 +Yingxu Wang,An Operational Semantics of Real-Time Process Algebra (RTPA).,2008,2,IJCINI,3,db/journals/ijcini/ijcini2.html#WangN08,https://doi.org/10.4018/jcini.2008070106 +Xiao Wei,Improving the Compression Efficiency for News Web Service Using Semantic Relations Among Webpages.,2013,7,IJCINI,2,db/journals/ijcini/ijcini7.html#WeiLL13,https://doi.org/10.4018/ijcini.2013040104 +Oliver Kramer,On Machine Symbol Grounding and Optimization.,2011,5,IJCINI,3,db/journals/ijcini/ijcini5.html#Kramer11,https://doi.org/10.4018/IJCINI.2011070105 +Yingxu Wang,RTPA: A Denotational Mathematics for Manipulating Intelligent and Computational Behaviors.,2008,2,IJCINI,2,db/journals/ijcini/ijcini2.html#Wang08c,https://doi.org/10.4018/jcini.2008040103 +Radek Burget,Extracting Visually Presented Element Relationships from Web Documents.,2013,7,IJCINI,2,db/journals/ijcini/ijcini7.html#BurgetS13,https://doi.org/10.4018/ijcini.2013040102 +Vidhusha S,Inter-hemispherical Investigations on the Functional Connectivity of Autistic Resting State fMRI.,2016,10,IJCINI,2,db/journals/ijcini/ijcini10.html#SA16,https://doi.org/10.4018/IJCINI.2016040105 +Mallampalli Kapardi,Functional Connectivity Assessment for Episodic Memory by Decoding Theta Wave.,2018,12,IJCINI,2,db/journals/ijcini/ijcini12.html#KapardiA18,https://doi.org/10.4018/IJCINI.2018040102 +Yee Mei Lim,The Motivation/Attitude-Driven Behavior (MADB) Model in E-Learning and the Effects on Mouse Dynamics.,2016,10,IJCINI,3,db/journals/ijcini/ijcini10.html#LimAS16,https://doi.org/10.4018/IJCINI.2016070104 +Manuel Fernando Caro Piñeres,A Formal Model for Metacognitive Reasoning in Intelligent Systems.,2014,8,IJCINI,3,db/journals/ijcini/ijcini8.html#PineresJB14,https://doi.org/10.4018/IJCINI.2014070105 +Gustavo Torres,Brain Architecture for Visual Object Identification.,2013,7,IJCINI,1,db/journals/ijcini/ijcini7.html#TorresJR13,https://doi.org/10.4018/jcini.2013010104 +Yingxu Wang,Perspectives on the Field of Cognitive Informatics and its Future Development.,2011,5,IJCINI,1,db/journals/ijcini/ijcini5.html#WangWZKSSLWZ11,https://doi.org/10.4018/jcini.2011010101 +Ken Ferens,Chaotic Walk in Simulated Annealing Search Space for Task Allocation in a Multiprocessing System.,2013,7,IJCINI,3,db/journals/ijcini/ijcini7.html#FerensCK13,https://doi.org/10.4018/ijcini.2013070104 +Liang Lei,Image Dimensionality Reduction Based on the Intrinsic Dimension and Parallel Genetic Algorithm.,2011,5,IJCINI,2,db/journals/ijcini/ijcini5.html#LeiWPY11,https://doi.org/10.4018/jcini.2011040106 +Yong-bin Yuan,Algorithm of Fuzzy Support Vector Machine based on a Piecewise Linear Fuzzy Weight Method.,2018,12,IJCINI,2,db/journals/ijcini/ijcini12.html#YuanLYY18,https://doi.org/10.4018/IJCINI.2018040105 +Simon Haykin,Cognitive Dynamic Systems.,2011,5,IJCINI,4,db/journals/ijcini/ijcini5.html#Haykin11,https://doi.org/10.4018/jcini.2011100103 +Wei Wang,A Parallel Levenberg-Marquardt Algorithm for Recursive Neural Network in a Robot Control System.,2018,12,IJCINI,2,db/journals/ijcini/ijcini12.html#WangYL18,https://doi.org/10.4018/IJCINI.2018040103 +N. Gadhok,Robust Independent Component Analysis for Cognitive Informatics.,2008,2,IJCINI,4,db/journals/ijcini/ijcini2.html#GadhokK08,https://doi.org/10.4018/jcini.2008100104 +Sajid Nazir,Autonomic Computing Architecture for SCADA Cyber Security.,2017,11,IJCINI,4,db/journals/ijcini/ijcini11.html#NazirPP17,https://doi.org/10.4018/IJCINI.2017100104 +Leonid Perlovsky,Machine Learning and Cognitive Algorithms for Engineering Applications.,2013,7,IJCINI,4,db/journals/ijcini/ijcini7.html#PerlovskyK13,https://doi.org/10.4018/ijcini.2013100104 +Shunxiang Zhang,Mining Conflict Semantic from Drug Dataset for Detecting Drug Conflict.,2015,9,IJCINI,3,db/journals/ijcini/ijcini9.html#ZhangZCY15,https://doi.org/10.4018/IJCINI.2015070105 +Yingxu Wang,On the Mathematical Theories and Cognitive Foundations of Information.,2015,9,IJCINI,3,db/journals/ijcini/ijcini9.html#Wang15a,https://doi.org/10.4018/IJCINI.2015070103 +Jianhua Dai,Generalized Rough Logics with Rough Algebraic Semantics.,2010,4,IJCINI,2,db/journals/ijcini/ijcini4.html#Dai10,https://doi.org/10.4018/jcini.2010040103 +Rafael do Espírito Santo,Image Compression Based on Generalized Principal Components Analysis and Simulated Annealing.,2012,6,IJCINI,2,db/journals/ijcini/ijcini6.html#SantoPJ12,https://doi.org/10.4018/jcini.2012040103 +Yingxu Wang,The Cognitive Process of Decision Making.,2007,1,IJCINI,2,db/journals/ijcini/ijcini1.html#WangR07,https://doi.org/10.4018/jcini.2007040105 +Guoyin Wang,A Robust Facial Feature Tracking Method Based on Optical Flow and Prior Measurement.,2010,4,IJCINI,4,db/journals/ijcini/ijcini4.html#WangYH10,http://www.igi-global.com/Bookstore/Article.aspx?TitleId=49693 +Jia Wang 0006,An Empirical Study on Pertinent Aspects of Sketch Maps for Navigation.,2013,7,IJCINI,4,db/journals/ijcini/ijcini7.html#WangL13,https://doi.org/10.4018/ijcini.2013100102 +Stéphane Natkin,Adaptive Narration in Multiplayer Ubiquitous Games.,2009,3,IJCINI,2,db/journals/ijcini/ijcini3.html#NatkinY09,https://doi.org/10.4018/jcini.2009040104 +Sandhya Chengaiyan,Analysis of Speech Imagery using Functional and Effective EEG based Brain Connectivity Parameters.,2015,9,IJCINI,4,db/journals/ijcini/ijcini9.html#ChengaiyanA15,https://doi.org/10.4018/IJCINI.2015100103 +George Baciu,Cloudet: A Cloud-Driven Visual Cognition of Large Streaming Data.,2016,10,IJCINI,1,db/journals/ijcini/ijcini10.html#BaciuLWZ16,https://doi.org/10.4018/IJCINI.2016010102 +Jane You,On Hierarchical Content-Based Image Retrieval by Dynamic Indexing and Guided Search.,2010,4,IJCINI,4,db/journals/ijcini/ijcini4.html#YouLW10,http://www.igi-global.com/Bookstore/Article.aspx?TitleId=49690 +Mitsuru Ishizuka,Textual Affect Sensing and Affective Communication.,2012,6,IJCINI,4,db/journals/ijcini/ijcini6.html#IshizukaNM12,https://doi.org/10.4018/jcini.2012100104 +Zheng Xu,Measuring the Semantic Relatedness Between Images Using Social Tags.,2013,7,IJCINI,2,db/journals/ijcini/ijcini7.html#XuYLM13,https://doi.org/10.4018/ijcini.2013040101 +Ghalem Belalem,Self Adjustable Negotiation Mechanism for Convergence and Conflict Resolution of Replicas in Data Grids.,2009,3,IJCINI,1,db/journals/ijcini/ijcini3.html#BelalemBB09,https://doi.org/10.4018/jcini.2009010106 +Amar Ramdane-Cherif,Toward Autonomic Computing: Adaptive Neural Network for Trajectory Planning.,2007,1,IJCINI,2,db/journals/ijcini/ijcini1.html#Ramdane-Cherif07,https://doi.org/10.4018/jcini.2007040102 +Ying Wang,Analysis for the Teaching-Method Reformation of Degree Students Based on PBL Theory.,2015,9,IJCINI,1,db/journals/ijcini/ijcini9.html#WangJ15,https://doi.org/10.4018/IJCINI.2015010104 +Wei Zhang 0005,A Role-Permission Assignment Method of RBAC Involved Conflicting Constraints under E-CARGO.,2015,9,IJCINI,4,db/journals/ijcini/ijcini9.html#ZhangWZLTZ15,https://doi.org/10.4018/IJCINI.2015100104 +Muthumeenakshi Subramanian,Visualization of Brain Activation During Attention-Demanding Tasks Using Cognitive Signal Processing.,2017,11,IJCINI,1,db/journals/ijcini/ijcini11.html#SubramanianGSVV17,https://doi.org/10.4018/IJCINI.2017010105 +Zuojin Li,An Energy Computing Method Inspired from Visual Cognitive Function for Dynamic Behavioural Detection in Video Frames.,2014,8,IJCINI,3,db/journals/ijcini/ijcini8.html#LiPCGS14,https://doi.org/10.4018/IJCINI.2014070101 +Yunzhe Wang,Cognitive Visualization of Popular Regions Discovered From Geo-Tagged Social Media Data.,2018,12,IJCINI,1,db/journals/ijcini/ijcini12.html#WangBL18,https://doi.org/10.4018/IJCINI.2018010102 +Yingxu Wang,Toward Theoretical Foundations of Autonomic Computing.,2007,1,IJCINI,3,db/journals/ijcini/ijcini1.html#Wang07b,https://doi.org/10.4018/jcini.2007070101 +Jeff Bancroft,A Computational Simulation of the Cognitive Process of Children Knowledge Acquisition and Memory Development.,2011,5,IJCINI,2,db/journals/ijcini/ijcini5.html#BancroftW11,https://doi.org/10.4018/jcini.2011040102 +Vlad Chiriacescu,Understanding Human Learning Using a Multi-agent Simulation of the Unified Learning Model.,2013,7,IJCINI,4,db/journals/ijcini/ijcini7.html#ChiriacescuSS13,https://doi.org/10.4018/ijcini.2013100101 +Aladdin Ayesh,Towards Psychologically based Personalised Modelling of Emotions Using Associative Classifiers.,2016,10,IJCINI,2,db/journals/ijcini/ijcini10.html#AyeshAF16,https://doi.org/10.4018/IJCINI.2016040103 +Hadj Ahmed Bouarara,Enhanced Artificial Social Cockroaches (EASC) for Modern Information Retrieval.,2016,10,IJCINI,2,db/journals/ijcini/ijcini10.html#BouararaHA16,https://doi.org/10.4018/IJCINI.2016040104 +Rafael do Espírito Santo,Classification of Breast Masses in Mammograms Using Radial Basis Functions and Simulated Annealing.,2009,3,IJCINI,3,db/journals/ijcini/ijcini3.html#SantoLR09,https://doi.org/10.4018/jcini.2009070103 +Fionn Murtagh,Pattern Recognition of Subconscious Underpinnings of Cognition using Ultrametric Topological Mapping of Thinking and Memory.,2014,8,IJCINI,4,db/journals/ijcini/ijcini8.html#Murtagh14,https://doi.org/10.4018/ijcini.2014100101 +Baoming Ge,Fuzzy Neural Network Control for Robot Manipulator Directly Driven by Switched Reluctance Motor.,2011,5,IJCINI,3,db/journals/ijcini/ijcini5.html#GeA11,https://doi.org/10.4018/IJCINI.2011070106 +James A. Anderson,The Ersatz Brain Project: A Brain-Like Computer Architecture for Cognition.,2012,6,IJCINI,4,db/journals/ijcini/ijcini6.html#AndersonAGFS12,https://doi.org/10.4018/jcini.2012100102 +Raj Singh Dhawal,A Copula Based Method for the Classification of Fish Species.,2017,11,IJCINI,1,db/journals/ijcini/ijcini11.html#DhawalC17,https://doi.org/10.4018/IJCINI.2017010103 +Xinming Tan,A Denotational Semantics of Real-Time Process Algebra (RTPA).,2008,2,IJCINI,3,db/journals/ijcini/ijcini2.html#TanW08,https://doi.org/10.4018/jcini.2008070105 +Yingxu Wang,On Cognitive Foundations and Mathematical Theories of Knowledge Science.,2016,10,IJCINI,2,db/journals/ijcini/ijcini10.html#Wang16,https://doi.org/10.4018/IJCINI.2016040101 +Ivo Bukovsky,Foundations of Nonconventional Neural Units and their Classification.,2008,2,IJCINI,4,db/journals/ijcini/ijcini2.html#BukovskyHBG08,https://doi.org/10.4018/jcini.2008100103 +Giulia Battilotti,Symmetry vs. Duality in Logic: An Interpretation of Bi-Logic to Model Cognitive Processes Beyond Inference.,2014,8,IJCINI,4,db/journals/ijcini/ijcini8.html#Battilotti14,https://doi.org/10.4018/ijcini.2014100105 +Yingxu Wang,Neuroinformatics Models of Human Memory: Mapping the Cognitive Functions of Memory onto Neurophysiological Structures of the Brain.,2013,7,IJCINI,1,db/journals/ijcini/ijcini7.html#Wang13,https://doi.org/10.4018/jcini.2013010105 +Yong Yang 0003,A Novel Emotion Recognition Method Based on Ensemble Learning and Rough Set Theory.,2011,5,IJCINI,3,db/journals/ijcini/ijcini5.html#YangW11,https://doi.org/10.4018/IJCINI.2011070104 +Muhammad Salman Khan,A Chaotic Complexity Measure for Cognitive Machine Classification of Cyber-Attacks on Computer Networks.,2014,8,IJCINI,3,db/journals/ijcini/ijcini8.html#KhanFK14,https://doi.org/10.4018/IJCINI.2014070104 +Hironori Hiraishi,Qualitative Analysis of Concentration Level in Throwing Using Simple Brain-Wave Sensor.,2017,11,IJCINI,3,db/journals/ijcini/ijcini11.html#Hiraishi17,https://doi.org/10.4018/IJCINI.2017070102 +Yingxu Wang,Deductive Semantics of RTPA.,2008,2,IJCINI,2,db/journals/ijcini/ijcini2.html#Wang08d,https://doi.org/10.4018/jcini.2008040106 +Leila Amgoud,Can AI Models Capture Natural Language Argumentation?,2012,6,IJCINI,3,db/journals/ijcini/ijcini6.html#AmgoudP12,https://doi.org/10.4018/jcini.2012070102 +Yingxu Wang,On Cognitive Properties of Human Factors and Error Models in Engineering and Socialization.,2008,2,IJCINI,4,db/journals/ijcini/ijcini2.html#Wang08f,https://doi.org/10.4018/jcini.2008100106 +Koji Kamei,Incremental Knowledge Construction for Real-World Event Understanding.,2010,4,IJCINI,1,db/journals/ijcini/ijcini4.html#KameiYMKSO10,https://doi.org/10.4018/jcini.2010010104 +Yingxu Wang,The Cognitive Process of Comprehension: A Formal description.,2010,4,IJCINI,3,db/journals/ijcini/ijcini4.html#WangG10,https://doi.org/10.4018/jcini.2010070104 +Yingxu Wang,On Laws of Work Organization in Human Cooperation.,2007,1,IJCINI,2,db/journals/ijcini/ijcini1.html#Wang07a,https://doi.org/10.4018/jcini.2007040101 +Jun Zhang,An Acquisition Model of Deep Textual Semantics Based on Human Reading Cognitive Process.,2012,6,IJCINI,2,db/journals/ijcini/ijcini6.html#ZhangLLL12,https://doi.org/10.4018/jcini.2012040105 +Mingming Li,Cognitive MIMO Radio: Performance Analysis and Precoding Strategy.,2011,5,IJCINI,2,db/journals/ijcini/ijcini5.html#LiLLWG11,https://doi.org/10.4018/jcini.2011040104 +Abdesslem Layeb,A New Quantum Evolutionary Algorithm with Sifting Strategy for Binary Decision Diagram Ordering Problem.,2010,4,IJCINI,4,db/journals/ijcini/ijcini4.html#LayebS10,http://www.igi-global.com/Bookstore/Article.aspx?TitleId=49692 +Su-Kyung Yoon,Optimized Memory-Disk Integrated System with DRAM and Nonvolatile Memory.,2016,2,IEEE Trans. Multi-Scale Computing Systems,2,db/journals/tmscs/tmscs2.html#YoonYNSK16,https://doi.org/10.1109/TMSCS.2016.2538229 +Ayten Ozge Akmandor,Keep the Stress Away with SoDA: Stress Detection and Alleviation System.,2017,3,IEEE Trans. Multi-Scale Computing Systems,4,db/journals/tmscs/tmscs3.html#AkmandorJ17,https://doi.org/10.1109/TMSCS.2017.2703613 +Mohammed Alawad,Memory-Efficient Probabilistic 2-D Finite Impulse Response (FIR) Filter.,2018,4,IEEE Trans. Multi-Scale Computing Systems,1,db/journals/tmscs/tmscs4.html#AlawadL18,https://doi.org/10.1109/TMSCS.2017.2695588 +Mohammed Alawad,Stochastic-Based Deep Convolutional Networks with Reconfigurable Logic Fabric.,2016,2,IEEE Trans. Multi-Scale Computing Systems,4,db/journals/tmscs/tmscs2.html#AlawadL16,https://doi.org/10.1109/TMSCS.2016.2601326 +Partha Pratim Pande,Introduction to IEEE Transactions on Multiscale Computing Systems (TMSCS).,2015,1,IEEE Trans. Multi-Scale Computing Systems,1,db/journals/tmscs/tmscs1.html#Pande15,https://doi.org/10.1109/TMSCS.2015.2470315 +Chunqiang Hu,Secure and Efficient Data Communication Protocol for Wireless Body Area Networks.,2016,2,IEEE Trans. Multi-Scale Computing Systems,2,db/journals/tmscs/tmscs2.html#HuLHXL16,https://doi.org/10.1109/TMSCS.2016.2525997 +Pai-Yu Chen,Design of Resistive Synaptic Array for Implementing On-Chip Sparse Learning.,2016,2,IEEE Trans. Multi-Scale Computing Systems,4,db/journals/tmscs/tmscs2.html#ChenGY16,https://doi.org/10.1109/TMSCS.2016.2598742 +Xin He,Exploiting the Potential of Computation Reuse Through Approximate Computing.,2017,3,IEEE Trans. Multi-Scale Computing Systems,3,db/journals/tmscs/tmscs3.html#HeJLYHL17,https://doi.org/10.1109/TMSCS.2016.2617343 +Orlando Arias,Privacy and Security in Internet of Things and Wearable Devices.,2015,1,IEEE Trans. Multi-Scale Computing Systems,2,db/journals/tmscs/tmscs1.html#AriasWHJ15,https://doi.org/10.1109/TMSCS.2015.2498605 +Yi Wang 0003,A Real-Time Flash Translation Layer for NAND Flash Memory Storage Systems.,2016,2,IEEE Trans. Multi-Scale Computing Systems,1,db/journals/tmscs/tmscs2.html#WangQCSWLY16,https://doi.org/10.1109/TMSCS.2016.2516015 +Weichen Liu,A Systematic and Realistic Network-on-Chip Traffic Modeling and Generation Technique for Emerging Many-Core Systems.,2018,4,IEEE Trans. Multi-Scale Computing Systems,2,db/journals/tmscs/tmscs4.html#LiuWYXLII18,https://doi.org/10.1109/TMSCS.2017.2768362 +Alexander Nelson,Adaptive and Personalized Gesture Recognition Using Textile Capacitive Sensor Arrays.,2015,1,IEEE Trans. Multi-Scale Computing Systems,2,db/journals/tmscs/tmscs1.html#NelsonSRPB15,https://doi.org/10.1109/TMSCS.2015.2495100 +Qian Wang,New Methods of Template Attack Based on Fault Sensitivity Analysis.,2017,3,IEEE Trans. Multi-Scale Computing Systems,2,db/journals/tmscs/tmscs3.html#WangWQZ17,https://doi.org/10.1109/TMSCS.2016.2643638 +Venkata Yaswanth Raparti,ARTEMIS: An Aging-Aware Runtime Application Mapping Framework for 3D NoC-Based Chip Multiprocessors.,2017,3,IEEE Trans. Multi-Scale Computing Systems,2,db/journals/tmscs/tmscs3.html#RapartiKP17,https://doi.org/10.1109/TMSCS.2017.2686856 +Linus Feiten,Systemic Frequency Biases in Ring Oscillator PUFs on FPGAs.,2016,2,IEEE Trans. Multi-Scale Computing Systems,3,db/journals/tmscs/tmscs2.html#FeitenOMSB16,https://doi.org/10.1109/TMSCS.2016.2598739 +Guillaume Prenat,Ultra-Fast and High-Reliability SOT-MRAM: From Cache Replacement to Normally-Off Computing.,2016,2,IEEE Trans. Multi-Scale Computing Systems,1,db/journals/tmscs/tmscs2.html#PrenatJVPOBELBG16,https://doi.org/10.1109/TMSCS.2015.2509963 +Jinn-Shyan Wang,A Calibration-Free PVTD-Variation-Tolerant Sensing Scheme for Footless-8T SRAM Designs.,2015,1,IEEE Trans. Multi-Scale Computing Systems,3,db/journals/tmscs/tmscs1.html#WangCLC15,https://doi.org/10.1109/TMSCS.2015.2487980 +Sanchita Mal-Sarkar,Design and Validation for FPGA Trust under Hardware Trojan Attacks.,2016,2,IEEE Trans. Multi-Scale Computing Systems,3,db/journals/tmscs/tmscs2.html#Mal-SarkarKNGKB16,https://doi.org/10.1109/TMSCS.2016.2584052 +Chen-Yu Lin,Minimization of Number of Neurons in Voronoi Diagram-Based Artificial Neural Networks.,2016,2,IEEE Trans. Multi-Scale Computing Systems,4,db/journals/tmscs/tmscs2.html#LinCWHH16,https://doi.org/10.1109/TMSCS.2016.2555303 +Yi Xiang,Soft and Hard Reliability-Aware Scheduling for Multicore Embedded Systems with Energy Harvesting.,2015,1,IEEE Trans. Multi-Scale Computing Systems,4,db/journals/tmscs/tmscs1.html#XiangP15,https://doi.org/10.1109/TMSCS.2015.2487983 +Mohamed Ibrahim,Efficient Error Recovery in Cyberphysical Digital-Microfluidic Biochips.,2015,1,IEEE Trans. Multi-Scale Computing Systems,1,db/journals/tmscs/tmscs1.html#IbrahimC15,https://doi.org/10.1109/TMSCS.2015.2478457 +Asma Benmessaoud Gabis,Bi-Objective Cost Function for Adaptive Routing in Network-on-Chip.,2018,4,IEEE Trans. Multi-Scale Computing Systems,2,db/journals/tmscs/tmscs4.html#GabisBS18,https://doi.org/10.1109/TMSCS.2018.2810223 +Saeideh Alinezhad Chamazcoti,Hybrid RAID: A Solution for Enhancing the Reliability of SSD-Based RAIDs.,2017,3,IEEE Trans. Multi-Scale Computing Systems,3,db/journals/tmscs/tmscs3.html#ChamazcotiM17,https://doi.org/10.1109/TMSCS.2016.2598746 +Chris J. Myers,Computational Synthetic Biology: Progress and the Road Ahead.,2015,1,IEEE Trans. Multi-Scale Computing Systems,1,db/journals/tmscs/tmscs1.html#Myers15,https://doi.org/10.1109/TMSCS.2015.2478442 +Ujjwal Gupta,Flexibility-Aware System-on-Polymer (SoP): Concept to Prototype.,2017,3,IEEE Trans. Multi-Scale Computing Systems,1,db/journals/tmscs/tmscs3.html#GuptaPJO17,https://doi.org/10.1109/TMSCS.2016.2637345 +Igor Loi,The Quest for Energy-Efficient I$ Design in Ultra-Low-Power Clustered Many-Cores.,2018,4,IEEE Trans. Multi-Scale Computing Systems,2,db/journals/tmscs/tmscs4.html#LoiCRMB18,https://doi.org/10.1109/TMSCS.2017.2769046 +Berk Gülmezoglu,Cross-VM Cache Attacks on AES.,2016,2,IEEE Trans. Multi-Scale Computing Systems,3,db/journals/tmscs/tmscs2.html#GulmezogluIIES16,https://doi.org/10.1109/TMSCS.2016.2550438 +Hai (Helen) Li,Guest Editorial: Design and Applications of Neuromorphic Computing System.,2016,2,IEEE Trans. Multi-Scale Computing Systems,4,db/journals/tmscs/tmscs2.html#LiQW16,https://doi.org/10.1109/TMSCS.2016.2631918 +Byungseok Kang,Internet of Everything: A Large-Scale Autonomic IoT Gateway.,2017,3,IEEE Trans. Multi-Scale Computing Systems,3,db/journals/tmscs/tmscs3.html#KangKC17,https://doi.org/10.1109/TMSCS.2017.2705683 +Yang Xie,Security and Vulnerability Implications of 3D ICs.,2016,2,IEEE Trans. Multi-Scale Computing Systems,2,db/journals/tmscs/tmscs2.html#XieBSLST16,https://doi.org/10.1109/TMSCS.2016.2550460 +Ishan G. Thakkar,3D-ProWiz: An Energy-Efficient and Optically-Interfaced 3D DRAM Architecture with Reduced Data Access Overhead.,2015,1,IEEE Trans. Multi-Scale Computing Systems,3,db/journals/tmscs/tmscs1.html#ThakkarP15,https://doi.org/10.1109/TMSCS.2015.2481425 +Hongxu Yin,A Health Decision Support System for Disease Diagnosis Based on Wearable Medical Sensors and Machine Learning Ensembles.,2017,3,IEEE Trans. Multi-Scale Computing Systems,4,db/journals/tmscs/tmscs3.html#YinJ17,https://doi.org/10.1109/TMSCS.2017.2710194 +Jong Hwan Ko,An Energy-Efficient Wireless Video Sensor Node for Moving Object Surveillance.,2015,1,IEEE Trans. Multi-Scale Computing Systems,1,db/journals/tmscs/tmscs1.html#KoMM15,https://doi.org/10.1109/TMSCS.2015.2478469 +Xueyang Wang,Malicious Firmware Detection with Hardware Performance Counters.,2016,2,IEEE Trans. Multi-Scale Computing Systems,3,db/journals/tmscs/tmscs2.html#WangKMKLRSK16,https://doi.org/10.1109/TMSCS.2016.2569467 +Arsalan Mosenia,DISASTER: Dedicated Intelligent Security Attacks on Sensor-Triggered Emergency Responses.,2017,3,IEEE Trans. Multi-Scale Computing Systems,4,db/journals/tmscs/tmscs3.html#MoseniaSRJ17a,https://doi.org/10.1109/TMSCS.2017.2720660 +S. Karen Khatamifard,On Approximate Speculative Lock Elision.,2018,4,IEEE Trans. Multi-Scale Computing Systems,2,db/journals/tmscs/tmscs4.html#KhatamifardAK18,https://doi.org/10.1109/TMSCS.2017.2773488 +Trey Reece,On The Outside Looking In: Towards Detecting Counterfeit Devices Using Network Traffic Analysis.,2017,3,IEEE Trans. Multi-Scale Computing Systems,1,db/journals/tmscs/tmscs3.html#ReeceSRB17,https://doi.org/10.1109/TMSCS.2016.2631534 +Partha Pratim Pande,Editorial.,2017,3,IEEE Trans. Multi-Scale Computing Systems,2,db/journals/tmscs/tmscs3.html#Pande17,https://doi.org/10.1109/TMSCS.2017.2702241 +Aviral Shrivastava,Guest Editorial: Special Issue on Accelerated Computing.,2018,4,IEEE Trans. Multi-Scale Computing Systems,1,db/journals/tmscs/tmscs4.html#ShrivastavaK18,https://doi.org/10.1109/TMSCS.2018.2807058 +Meng-Day (Mandel) Yu,A Lockdown Technique to Prevent Machine Learning on PUFs for Lightweight Authentication.,2016,2,IEEE Trans. Multi-Scale Computing Systems,3,db/journals/tmscs/tmscs2.html#YuHDSDV16,https://doi.org/10.1109/TMSCS.2016.2553027 +Marco Lattuada,Data Transfers Analysis in Computer Assisted Design Flow of FPGA Accelerators for Aerospace Systems.,2018,4,IEEE Trans. Multi-Scale Computing Systems,1,db/journals/tmscs/tmscs4.html#LattuadaFP18,https://doi.org/10.1109/TMSCS.2017.2699647 +Malgorzata Michalska,High-Precision Performance Estimation for the Design Space Exploration of Dynamic Dataflow Programs.,2018,4,IEEE Trans. Multi-Scale Computing Systems,2,db/journals/tmscs/tmscs4.html#MichalskaBBM18,https://doi.org/10.1109/TMSCS.2017.2774294 +Hang Lu,PowerTrader: Enforcing Autonomous Power Management for Future Large-Scale Many-Core Processors.,2017,3,IEEE Trans. Multi-Scale Computing Systems,4,db/journals/tmscs/tmscs3.html#LuYHL17,https://doi.org/10.1109/TMSCS.2017.2701795 +Anju P. Johnson,A PUF-Enabled Secure Architecture for FPGA-Based IoT Applications.,2015,1,IEEE Trans. Multi-Scale Computing Systems,2,db/journals/tmscs/tmscs1.html#JohnsonCM15,https://doi.org/10.1109/TMSCS.2015.2494014 +Dongki Kim,Hybrid Main Memory for High Bandwidth Multi-Core System.,2015,1,IEEE Trans. Multi-Scale Computing Systems,3,db/journals/tmscs/tmscs1.html#KimYL15,https://doi.org/10.1109/TMSCS.2015.2498549 +Chengen Yang,Cost-Effective Design Solutions for Enhancing PRAM Reliability and Performance.,2017,3,IEEE Trans. Multi-Scale Computing Systems,1,db/journals/tmscs/tmscs3.html#YangMCC17,https://doi.org/10.1109/TMSCS.2016.2536026 +Jianhui Zhang,MDFS: Deadline-Driven Flow Scheduling Scheme in Multi-Resource Environments.,2015,1,IEEE Trans. Multi-Scale Computing Systems,4,db/journals/tmscs/tmscs1.html#ZhangLGQLJ15,https://doi.org/10.1109/TMSCS.2015.2506167 +Fengwei An,A Memory-Based Modular Architecture for SOM and LVQ with Dynamic Configuration.,2016,2,IEEE Trans. Multi-Scale Computing Systems,4,db/journals/tmscs/tmscs2.html#AnZCM16,https://doi.org/10.1109/TMSCS.2016.2619683 +Hemanta Kumar Mondal,Interference-Aware Wireless Network-on-Chip Architecture Using Directional Antennas.,2017,3,IEEE Trans. Multi-Scale Computing Systems,3,db/journals/tmscs/tmscs3.html#MondalGSDG17,https://doi.org/10.1109/TMSCS.2016.2595527 +Arsalan Mohsen Nia,Energy-Efficient Long-term Continuous Personal Health Monitoring.,2015,1,IEEE Trans. Multi-Scale Computing Systems,2,db/journals/tmscs/tmscs1.html#NiaKSRJ15,https://doi.org/10.1109/TMSCS.2015.2494021 +Kazuteru Namba,A Coding Scheme for Write Time Improvement of Phase Change Memory (PCM) Systems.,2016,2,IEEE Trans. Multi-Scale Computing Systems,4,db/journals/tmscs/tmscs2.html#NambaL16,https://doi.org/10.1109/TMSCS.2016.2605098 +Debajit Bhattacharya,Analytical Modeling of the SMART NoC.,2017,3,IEEE Trans. Multi-Scale Computing Systems,4,db/journals/tmscs/tmscs3.html#BhattacharyaJ17,https://doi.org/10.1109/TMSCS.2017.2704101 +Cong Xu,Impact of Write Pulse and Process Variation on 22 nm FinFET-Based STT-RAM Design: A Device-Architecture Co-Optimization Approach.,2015,1,IEEE Trans. Multi-Scale Computing Systems,4,db/journals/tmscs/tmscs1.html#XuZNZK015,https://doi.org/10.1109/TMSCS.2015.2509960 +Partha Pratim Pande,Editorial.,2016,2,IEEE Trans. Multi-Scale Computing Systems,1,db/journals/tmscs/tmscs2.html#Pande16,https://doi.org/10.1109/TMSCS.2016.2541558 +Ujjwal Gupta,Dynamic Power Budgeting for Mobile Systems Running Graphics Workloads.,2018,4,IEEE Trans. Multi-Scale Computing Systems,1,db/journals/tmscs/tmscs4.html#GuptaAKKSTO18,https://doi.org/10.1109/TMSCS.2017.2683487 +Naseef Mansoor,Design Methodology for a Robust and Energy-Efficient Millimeter-Wave Wireless Network-on-Chip.,2015,1,IEEE Trans. Multi-Scale Computing Systems,1,db/journals/tmscs/tmscs1.html#MansoorIG15,https://doi.org/10.1109/TMSCS.2015.2478439 +Mohsen Imani,Multi-Stage Tunable Approximate Search in Resistive Associative Memory.,2018,4,IEEE Trans. Multi-Scale Computing Systems,1,db/journals/tmscs/tmscs4.html#ImaniRMR18,https://doi.org/10.1109/TMSCS.2017.2665462 +Shiyan Hu,Guest Editorial: Hardware/Software Cross-Layer Technologies for Trustworthy and Secure Computing.,2016,2,IEEE Trans. Multi-Scale Computing Systems,3,db/journals/tmscs/tmscs2.html#HuJHT16,https://doi.org/10.1109/TMSCS.2016.2609298 +Wei-Yu Tsai,Enabling New Computation Paradigms with HyperFET - An Emerging Device.,2016,2,IEEE Trans. Multi-Scale Computing Systems,1,db/journals/tmscs/tmscs2.html#TsaiLJXSLCCRCLD16,https://doi.org/10.1109/TMSCS.2016.2519022 +Dibakar Saha,Fast Estimation of Area-Coverage for Wireless Sensor Networks Based on Digital Geometry.,2017,3,IEEE Trans. Multi-Scale Computing Systems,3,db/journals/tmscs/tmscs3.html#SahaPDB17,https://doi.org/10.1109/TMSCS.2016.2598737 +Tiago Rogério Mück,Exploiting Heterogeneity for Aging-Aware Load Balancing in Mobile Platforms.,2017,3,IEEE Trans. Multi-Scale Computing Systems,1,db/journals/tmscs/tmscs3.html#MuckGDB17,https://doi.org/10.1109/TMSCS.2016.2627541 +Menghan Liu,Asthma Pattern Identification via Continuous Diaphragm Motion Monitoring.,2015,1,IEEE Trans. Multi-Scale Computing Systems,2,db/journals/tmscs/tmscs1.html#LiuH15,https://doi.org/10.1109/TMSCS.2015.2496214 +Punyasha Chatterjee,Load Balanced Coverage with Graded Node Deployment in Wireless Sensor Networks.,2017,3,IEEE Trans. Multi-Scale Computing Systems,2,db/journals/tmscs/tmscs3.html#ChatterjeeGD17,https://doi.org/10.1109/TMSCS.2017.2672553 +Vinayaka Jyothi,DPFEE: A High Performance Scalable Pre-Processor for Network Security Systems.,2018,4,IEEE Trans. Multi-Scale Computing Systems,1,db/journals/tmscs/tmscs4.html#JyothiAK18,https://doi.org/10.1109/TMSCS.2017.2765324 +Azalia Mirhoseini,Chime: Checkpointing Long Computations on Interm ittently Energized IoT Devices.,2016,2,IEEE Trans. Multi-Scale Computing Systems,4,db/journals/tmscs/tmscs2.html#MirhoseiniRSK16,https://doi.org/10.1109/TMSCS.2016.2550442 +Arsalan Mosenia,Wearable Medical Sensor-Based System Design: A Survey.,2017,3,IEEE Trans. Multi-Scale Computing Systems,2,db/journals/tmscs/tmscs3.html#MoseniaSRJ17,https://doi.org/10.1109/TMSCS.2017.2675888 +Linbin Chen,Algorithm and Design of a Fully Parallel Approximate Coordinate Rotation Digital Computer (CORDIC).,2017,3,IEEE Trans. Multi-Scale Computing Systems,3,db/journals/tmscs/tmscs3.html#ChenHLL17,https://doi.org/10.1109/TMSCS.2017.2696003 +Chenyuan Zhao,Energy Efficient Spiking Temporal Encoder Design for Neuromorphic Computing Systems.,2016,2,IEEE Trans. Multi-Scale Computing Systems,4,db/journals/tmscs/tmscs2.html#ZhaoWTMLLY16,https://doi.org/10.1109/TMSCS.2016.2607164 +Chen Pan,Wear-Leveling Aware Page Management for Non-Volatile Main Memory on Embedded Systems.,2016,2,IEEE Trans. Multi-Scale Computing Systems,2,db/journals/tmscs/tmscs2.html#PanGXLXH16,https://doi.org/10.1109/TMSCS.2016.2525999 +Michael J. Doyle,Evaluation of a BVH Construction Accelerator Architecture for High-Quality Visualization.,2018,4,IEEE Trans. Multi-Scale Computing Systems,1,db/journals/tmscs/tmscs4.html#DoyleTM18,https://doi.org/10.1109/TMSCS.2017.2695338 +Sébastien Le Beux,Guest Editorial: Emerging Technologies and Architectures for Manycore Computing Part 1: Hardware Techniques.,2018,4,IEEE Trans. Multi-Scale Computing Systems,2,db/journals/tmscs/tmscs4.html#BeuxGO18,https://doi.org/10.1109/TMSCS.2018.2826758 +Jyothi Krishna Viswakaran Sreelatha,CHOAMP: Cost Based Hardware Optimization for Asymmetric Multicore Processors.,2018,4,IEEE Trans. Multi-Scale Computing Systems,2,db/journals/tmscs/tmscs4.html#SreelathaBN18,https://doi.org/10.1109/TMSCS.2018.2791955 +Pilin Junsangsri,Circuits for a Perpendicular Magnetic Anisotropic (PMA) Racetrack Memory.,2015,1,IEEE Trans. Multi-Scale Computing Systems,3,db/journals/tmscs/tmscs1.html#JunsangsriHL15,https://doi.org/10.1109/TMSCS.2015.2503282 +Sangeet Saha,Co-Scheduling Persistent Periodic and Dynamic Aperiodic Real-Time Tasks on Reconfigurable Platforms.,2018,4,IEEE Trans. Multi-Scale Computing Systems,1,db/journals/tmscs/tmscs4.html#SahaSCG18,https://doi.org/10.1109/TMSCS.2017.2691701 +Oluleye Olorode,Improving Cache Power and Performance Using Deterministic Naps and Early Miss Detection.,2015,1,IEEE Trans. Multi-Scale Computing Systems,3,db/journals/tmscs/tmscs1.html#OlorodeN15,https://doi.org/10.1109/TMSCS.2015.2494043 +Charles A. Kamhoua,A Game-Theoretic Approach for Testing for Hardware Trojans.,2016,2,IEEE Trans. Multi-Scale Computing Systems,3,db/journals/tmscs/tmscs2.html#KamhouaZRK16,https://doi.org/10.1109/TMSCS.2016.2564963 +Siam U. Hussain,A Built-in-Self-Test Scheme for Online Evaluation of Physical Unclonable Functions and True Random Number Generators.,2016,2,IEEE Trans. Multi-Scale Computing Systems,1,db/journals/tmscs/tmscs2.html#HussainMK16,https://doi.org/10.1109/TMSCS.2016.2519902 +Zhe Lin 0007,Scalable Light-Weight Integration of FPGA Based Accelerators with Chip Multi-Processors.,2018,4,IEEE Trans. Multi-Scale Computing Systems,2,db/journals/tmscs/tmscs4.html#LinSLFZ18,https://doi.org/10.1109/TMSCS.2017.2754378 +Csaba Andras Moritz,Welcome Message.,2015,1,IEEE Trans. Multi-Scale Computing Systems,1,db/journals/tmscs/tmscs1.html#Moritz15,https://doi.org/10.1109/TMSCS.2015.2463534 +Jacob Wurm,Introduction to Cyber-Physical System Security: A Cross-Layer Perspective.,2017,3,IEEE Trans. Multi-Scale Computing Systems,3,db/journals/tmscs/tmscs3.html#WurmJLHHRT17,https://doi.org/10.1109/TMSCS.2016.2569446 +Younghyun Kim,Design and Management of Battery-Supercapacitor Hybrid Electrical Energy Storage Systems for Regulation Services.,2017,3,IEEE Trans. Multi-Scale Computing Systems,1,db/journals/tmscs/tmscs3.html#KimRR17,https://doi.org/10.1109/TMSCS.2016.2627543 +Haeseung Lee,GPU Architecture Aware Instruction Scheduling for Improving Soft-Error Reliability.,2017,3,IEEE Trans. Multi-Scale Computing Systems,2,db/journals/tmscs/tmscs3.html#LeeF17,https://doi.org/10.1109/TMSCS.2017.2667661 +Hatem Mahmod Hamad,Distributed Mobile Agents for reliable cluster management in MANETs.,2008,2,iJIM,2,db/journals/ijim/ijim2.html#Hamad08,http://online-journals.org/i-jim/article/view/267 +Muhammad Sabri bin Sahrir,Development and Evaluation of i-Mutawwif: A Mobile Language Traveller Guide in Arabic for Mutawwif (Umrah Tour Guide).,2018,12,iJIM,2,db/journals/ijim/ijim12.html#SahrirYIZA18,http://www.online-journals.org/index.php/i-jim/article/view/7708 +Jay P. Sipani,Wireless Sensor Network for Monitoring and Control of Environmental Factors using Arduino.,2018,12,iJIM,2,db/journals/ijim/ijim12.html#SipaniPUD18,http://www.online-journals.org/index.php/i-jim/article/view/7415 +Khalid Yousef Qudah,Students' Attitudes in Colleges of Education at the Jordanian Universities towards Mobile Phone Usage in University Education.,2013,7,iJIM,2,db/journals/ijim/ijim7.html#QudahHM13,http://online-journals.org/i-jim/article/view/2286 +Radoslava Kraleva,Designing an Interface For a Mobile Application Based on Children's Opinion.,2017,11,iJIM,1,db/journals/ijim/ijim11.html#Kraleva17,http://www.online-journals.org/index.php/i-jim/article/view/6099 +Shamsul Arrieya Ariffin,An Assessment of Culturally Appropriate Design: A Malaysian University Context.,2018,12,iJIM,2,db/journals/ijim/ijim12.html#AriffinIYS18,http://www.online-journals.org/index.php/i-jim/article/view/8014 +Atallah Al-Shatnawi,Recognizing the Importance of Brand Awareness on E-commerce Sales while Shopping on Internet: Empirical Analysis of European Countries.,2015,9,iJIM,1,db/journals/ijim/ijim9.html#Al-ShatnawiFA15,http://www.online-journals.org/index.php/i-jim/article/view/4111 +Fezile Ozdamli,Opinions and Expectations of Parents on Integration of Mobile Technologies to Education and School Family Cooperation.,2017,11,iJIM,4,db/journals/ijim/ijim11.html#OzdamliY17,http://www.online-journals.org/index.php/i-jim/article/view/6791 +Athanasios Drigas,A Review of Mobile Learning Applications for Mathematics.,2015,9,iJIM,3,db/journals/ijim/ijim9.html#DrigasP15,http://www.online-journals.org/index.php/i-jim/article/view/4420 +Mohammed-Issa Riad Mousa Jaradat,Undergraduate Students' Adoption of Website-service Quality by Applying the Unified Theory of Acceptance and Use of Technology (UTAUT) in Jordan.,2013,7,iJIM,3,db/journals/ijim/ijim7.html#JaradatB13,http://online-journals.org/i-jim/article/view/2482 +Nik nadian nisa Nik nazli,"The Impact of ""Informer on Site"" in Disaster Management.",2017,11,iJIM,3,db/journals/ijim/ijim11.html#nazliSAO17,http://www.online-journals.org/index.php/i-jim/article/view/6701 +Bernd Resch,Usability in 4D AR: Visualising Multi-temporal Real-time Geo-data in Augmented Reality Environments.,2015,9,iJIM,4,db/journals/ijim/ijim9.html#ReschWG15,http://www.online-journals.org/index.php/i-jim/article/view/4626 +José Bidarra,Interactive Design and Gamification of eBooks for Mobile and Contextual Learning.,2015,9,iJIM,3,db/journals/ijim/ijim9.html#BidarraFN15,http://www.online-journals.org/index.php/i-jim/article/view/4421 +Daoud M. Daoud,Employing Information Extraction for Building Mobile Applications.,2017,11,iJIM,2,db/journals/ijim/ijim11.html#DaoudE17,http://www.online-journals.org/index.php/i-jim/article/view/6569 +Palmo Thinley,Tablets (iPad) for M-Learning in the Context of Social Constructivism to Institute an Effective Learning Environment.,2014,8,iJIM,1,db/journals/ijim/ijim8.html#ThinleyGR14,http://www.online-journals.org/index.php/i-jim/article/view/3452 +Johannes Karlsson,Enabling Real-Time Video Services over Ad-Hoc Networks Opens the Gates for E-learning in Areas Lacking Infrastructure.,2009,3,iJIM,4,db/journals/ijim/ijim3.html#KarlssonAL09,https://doi.org/10.3991/ijim.v3i4.911 +Stephen Webb,Can web thin clients be used to create flexible assessment spaces in a higher education setting?,2015,9,iJIM,4,db/journals/ijim/ijim9.html#WebbMW15,http://www.online-journals.org/index.php/i-jim/article/view/4681 +Mansour A. Alwraikat,Exploring the Potential of Mobile Learning Use Among Faculty Members.,2014,8,iJIM,3,db/journals/ijim/ijim8.html#AlwraikatT14,http://www.online-journals.org/index.php/i-jim/article/view/3682 +Hillevi Hedberg,A Systematic Review of Learning Through Mobile Augmented Reality.,2018,12,iJIM,3,db/journals/ijim/ijim12.html#HedbergNHR18,http://www.online-journals.org/index.php/i-jim/article/view/8404 +Satoshi Hasegawa,Effects of Aging and Display Contrast on the Legibility of Characters on Mobile Phone Screens.,2008,2,iJIM,4,db/journals/ijim/ijim2.html#HasegawaMMFO08,http://online-journals.org/i-jim/article/view/668 +Jafar Asgari Arani,Mobile Educational SMSs as Supplementary Means to Teach Sentence Paraphrasing in EMP Course.,2016,10,iJIM,1,db/journals/ijim/ijim10.html#Arani16,http://www.online-journals.org/index.php/i-jim/article/view/5188 +Aan Jelli Priana,User Experience Design of Stroke Patient Communications Using Mobile Finger (MOFI) Communication Board With User Center Design Approach.,2018,12,iJIM,2,db/journals/ijim/ijim12.html#PrianaTAA18,http://www.online-journals.org/index.php/i-jim/article/view/7937 +Ouiame Filali Marzouki,Effects of Social Constructivist Mobile Learning Environments on Knowledge Acquisition: A Meta-Analysis.,2017,11,iJIM,1,db/journals/ijim/ijim11.html#MarzoukiIB17,http://www.online-journals.org/index.php/i-jim/article/view/5982 +Hejab M. Alfawareh,The Use and Effects of Smartphones in Higher Education.,2017,11,iJIM,6,db/journals/ijim/ijim11.html#AlfawarehJ17,http://www.online-journals.org/index.php/i-jim/article/view/7453 +Dewa Gede Hendra Divayana,Mobile Phone-Based CIPP Evaluation Model in Evaluating the Use of Blended Learning at School in Bali.,2017,11,iJIM,4,db/journals/ijim/ijim11.html#DivayanaS17,http://www.online-journals.org/index.php/i-jim/article/view/6796 +Nik nadian nisa Nik nazli,One Stop Center For Disaster Training Information In Smartphone Platform: A Mobile Prototype.,2015,9,iJIM,4,db/journals/ijim/ijim9.html#nazliSN15,http://www.online-journals.org/index.php/i-jim/article/view/4418 +Irene Garcia Medina,The Importance of Social Media for Commerce. A Case Study in Madeira (Portugal).,2012,6,iJIM,1,db/journals/ijim/ijim6.html#MedinaP12,http://online-journals.org/i-jim/article/view/1825 +Ruben Jans,Wireless Web Kids - Mobile Learning in Primary and Secondary Education.,2009,3,iJIM,2,db/journals/ijim/ijim3.html#JansA09,https://doi.org/10.3991/ijim.v3i2.749 +Ahmad Mousa Bataineh,The Effect of Using Computer-Mediated Communication on English Language Learners' Socio-Cultural Competence.,2014,8,iJIM,3,db/journals/ijim/ijim8.html#Bataineh14,http://www.online-journals.org/index.php/i-jim/article/view/3910 +Ayman M. Bahaa Eldin,BUE International Conference on Sustainable Vital Technologies in Engineering and Informatics.,2017,11,iJIM,2,db/journals/ijim/ijim11.html#EldinE17,http://www.online-journals.org/index.php/i-jim/article/view/6580/4354 +David A. Guralnick,An Online Environment for Academics and Professionals to Locate Collaborators and Refine Ideas.,2008,2,iJIM,3,db/journals/ijim/ijim2.html#GuralnickL08,http://online-journals.org/i-jim/article/view/529 +Sébastien George,MeCoCo: A Context-Aware System for Mediated Communications.,2009,3,iJIM,3,db/journals/ijim/ijim3.html#GeorgeL09,https://doi.org/10.3991/ijim.v3i3.748 +Kathryn MacCallum,Mobile Discussion Boards: An Analysis on Mobile Collaboration.,2008,2,iJIM,1,db/journals/ijim/ijim2.html#Callum08,http://online-journals.org/i-jim/article/view/161 +Hanan Elazhary,Cloud-based Context-aware Mobile Intelligent Tutoring System of Technical Computer Skills.,2017,11,iJIM,4,db/journals/ijim/ijim11.html#Elazhary17,http://www.online-journals.org/index.php/i-jim/article/view/6852 +Ghassan Issa,Unified M-Learning Model through Interactive Education Satellite: A Proposal for an Arab Homeland Education Satellite.,2011,5,iJIM,2,db/journals/ijim/ijim5.html#IssaHA11,http://online-journals.org/i-jim/article/view/1600 +Muneer Ahmad Dar,Novel Techniques to Enhance the Security of Smartphone Applications.,2016,10,iJIM,4,db/journals/ijim/ijim10.html#DarP16,http://www.online-journals.org/index.php/i-jim/article/view/5869 +Ananda Maiti,ADOBE Flash Lite - Based Online Laboratory for Mobile Phones.,2010,4,iJIM,4,db/journals/ijim/ijim4.html#MaitiM10,http://online-journals.org/i-jim/article/view/1440 +Emir Husni,Driving and Fuel Consumption Monitoring with Internet of Things.,2017,11,iJIM,3,db/journals/ijim/ijim11.html#Husni17,http://www.online-journals.org/index.php/i-jim/article/view/6473 +Mahmoud Al-Dalahmeh,The Viability of Mobile Services (SMS and Cell Broadcast) in Emergency Management Solutions: An Exploratory Study.,2018,12,iJIM,1,db/journals/ijim/ijim12.html#Al-DalahmehAAO18,http://www.online-journals.org/index.php/i-jim/article/view/7677 +Soumen Kanrar,Efficient Packet Forwarding in Mesh Network.,2012,6,iJIM,2,db/journals/ijim/ijim6.html#Kanrar12,http://online-journals.org/i-jim/article/view/1991 +Jonas Vetterick,Classroom Response Systems in the Wild: Technical and Non-Technical Observations.,2014,8,iJIM,1,db/journals/ijim/ijim8.html#VetterickGDC14,http://www.online-journals.org/index.php/i-jim/article/view/3454 +Georg Lausegger,OmniColor - A Smart Glasses App to Support Colorblind People.,2017,11,iJIM,5,db/journals/ijim/ijim11.html#LauseggerSE17,http://www.online-journals.org/index.php/i-jim/article/view/6922 +Hesham Farouk,Effective and Efficient Video Summarization Approach for Mobile Devices.,2016,10,iJIM,1,db/journals/ijim/ijim10.html#FaroukEA16,http://www.online-journals.org/index.php/i-jim/article/view/4827 +Mohammad M. Alnabhan,Performance Evaluation of Unicast Routing Protocols in MANETs - Current State and Future Prospects.,2017,11,iJIM,1,db/journals/ijim/ijim11.html#AlnabhanAHA17,http://www.online-journals.org/index.php/i-jim/article/view/6295 +Hosam Farouk El-Sofany,Development of Mobile Educational Services Application to Improve Educational Outcomes using Android Technology.,2014,8,iJIM,2,db/journals/ijim/ijim8.html#El-SofanyEAA14,http://www.online-journals.org/index.php/i-jim/article/view/3509 +Fezile Ozdamli,Opinions of Teacher Candidates on the Usage of Mobile Applications in the Multimedia Development Processes.,2018,12,iJIM,2,db/journals/ijim/ijim12.html#OzdamliE18,http://www.online-journals.org/index.php/i-jim/article/view/7679 +Ke Tian,Lunar Observation Support System Using Smartphone AR for Astronomy Education.,2014,8,iJIM,1,db/journals/ijim/ijim8.html#TianEUMY14,http://www.online-journals.org/index.php/i-jim/article/view/3457 +Amir Dirin,mLUX: Usability and User Experience Development Framework for M-Learning.,2015,9,iJIM,3,db/journals/ijim/ijim9.html#DirinN15,http://www.online-journals.org/index.php/i-jim/article/view/4446 +Masoud Udi Mwinyi,A Concept Analysis Scheme of Simple Stories for Learning Resources through Extraction of Domain-based Multimedia Elements.,2017,11,iJIM,2,db/journals/ijim/ijim11.html#MwinyiAE17,http://www.online-journals.org/index.php/i-jim/article/view/6568 +Ivana Simonova,Mobile Devices in Technical and Engineering Education with Focus on ESP.,2016,10,iJIM,2,db/journals/ijim/ijim10.html#Simonova16,http://www.online-journals.org/index.php/i-jim/article/view/5466 +Mahmoud M. El-Khouly,Malware Detection in Cloud Environment (MDCE).,2017,11,iJIM,2,db/journals/ijim/ijim11.html#El-KhoulyE17,http://www.online-journals.org/index.php/i-jim/article/view/6575 +Alberto Cardoso,Special Focus: The Use of Emerging Technologies on the Internet of Everything.,2017,11,iJIM,5,db/journals/ijim/ijim11.html#CardosoRGP17,http://www.online-journals.org/index.php/i-jim/article/view/7368 +Salma Charkaoui,Cross-platform Mobile Development Based on MDA Approach.,2016,10,iJIM,4,db/journals/ijim/ijim10.html#CharkaouiLMA16,http://www.online-journals.org/index.php/i-jim/article/view/5570 +Thomas Zimmer,From the eScience Project Chair.,2015,9,iJIM,2,db/journals/ijim/ijim9.html#Zimmer15,http://www.online-journals.org/index.php/i-jim/article/view/4414/3440 +Hailay Kidu Teklehaimanot,A Mobile Based Tigrigna Language Learning Tool.,2015,9,iJIM,2,db/journals/ijim/ijim9.html#Teklehaimanot15,http://www.online-journals.org/index.php/i-jim/article/view/4322 +Thomas Zimmer,Remote Lab Experiments in Electronics for Use and Reuse.,2015,9,iJIM,2,db/journals/ijim/ijim9.html#ZimmerBPG15,http://www.online-journals.org/index.php/i-jim/article/view/4346 +Thamer A. Alrawashdeh,Extended UTAUT to Examine the Acceptance of Web Based Training System by Public Sector.,2013,7,iJIM,1,db/journals/ijim/ijim7.html#AlrawashdehA13,http://online-journals.org/i-jim/article/view/2044 +Rami Omari,Analysis of the Important Mobile Devices Features to Improve Mobile Web Applications.,2008,2,iJIM,2,db/journals/ijim/ijim2.html#OmariFC08,http://online-journals.org/i-jim/article/view/209 +Markus Ebner,Google Glass in Face-to-face Lectures - Prototype and First Experiences.,2016,10,iJIM,1,db/journals/ijim/ijim10.html#EbnerME16,http://www.online-journals.org/index.php/i-jim/article/view/4834 +Hyo-Joo Han,From the Interdisciplinary Conference of AHLiST 2010 Conference IS/IT Program Chair.,2011,5,iJIM,3,db/journals/ijim/ijim5.html#Han11,http://online-journals.org/i-jim/article/view/1666/1809 +Chad Tossell,Exploring Smartphone Addiction: Insights from Long-Term Telemetric Behavioral Measures.,2015,9,iJIM,2,db/journals/ijim/ijim9.html#TossellKSRZ15,http://www.online-journals.org/index.php/i-jim/article/view/4300 +Athanasios Drigas,Mobile Learning for Special Preschool Education.,2016,10,iJIM,1,db/journals/ijim/ijim10.html#DrigasK16,http://www.online-journals.org/index.php/i-jim/article/view/5288 +Qing Tan,Client Mobile Software Design Principles for Mobile Learning Systems.,2009,3,iJIM,1,db/journals/ijim/ijim3.html#TanK09,https://doi.org/10.3991/ijim.v3i1.753 +Hanan Elazhary,Context Management for Supporting Context-aware Android Applications Development.,2017,11,iJIM,4,db/journals/ijim/ijim11.html#ElazharyAAAAA17,http://www.online-journals.org/index.php/i-jim/article/view/6952 +Una Johanne Engmark,Reliability in Situated Simulations.,2013,7,iJIM,3,db/journals/ijim/ijim7.html#Engmark13,http://online-journals.org/i-jim/article/view/2519 +Mohamd Hassan Hassan,A New Mobile Learning Adaptation Model.,2009,3,iJIM,4,db/journals/ijim/ijim3.html#HassanA09,https://doi.org/10.3991/ijim.v3i4.986 +William Jobe,Native Apps Vs. Mobile Web Apps.,2013,7,iJIM,4,db/journals/ijim/ijim7.html#Jobe13,http://online-journals.org/i-jim/article/view/3226 +Abdel Ghani Karkar,An Educational Ontology-based M-Learning System.,2016,10,iJIM,4,db/journals/ijim/ijim10.html#KarkarJ16,http://www.online-journals.org/index.php/i-jim/article/view/6011 +Eeva Nygren,Dynamics between Disturbances and Motivations in Educational Mobile Games.,2018,12,iJIM,3,db/journals/ijim/ijim12.html#NygrenLS18,http://www.online-journals.org/index.php/i-jim/article/view/8490 +Faranak Fotouhi-Ghazvini,The MOBO City: A Mobile Game Package for Technical Language Learning.,2009,3,iJIM,2,db/journals/ijim/ijim3.html#Fotouhi-GhazviniERE09,https://doi.org/10.3991/ijim.v3i2.757 +Tiago Faustino Andrade,Enhancing a 3D Printer with Online Access.,2017,11,iJIM,5,db/journals/ijim/ijim11.html#AndradeARCSR17,http://www.online-journals.org/index.php/i-jim/article/view/7069 +Dwi Sulisworo,The Development of Mobile Learning Application using Jigsaw Technique.,2016,10,iJIM,3,db/journals/ijim/ijim10.html#SulisworoIF16,http://www.online-journals.org/index.php/i-jim/article/view/5268 +Viet Anh Nguyen,Learner Open Modeling in Adaptive Mobile Learning System for Supporting Student to Learn English.,2011,5,iJIM,4,db/journals/ijim/ijim5.html#NguyenP11,http://online-journals.org/i-jim/article/view/1789 +Munirah Rosli,Adoption of Mobile Learning Among Distance Education Students in Universiti Sains Malaysia.,2010,4,iJIM,2,db/journals/ijim/ijim4.html#RosliIIZ10,https://doi.org/10.3991/ijim.v4i2.1167 +Andrew Thatcher,Managing Social Activity and Participation in Large Classes with Mobile Phone Technology.,2008,2,iJIM,3,db/journals/ijim/ijim2.html#ThatcherM08,http://online-journals.org/i-jim/article/view/525 +Marylene Saldon Eder,Fill Me App: An Interactive Mobile Game Application for Children with Autism.,2016,10,iJIM,3,db/journals/ijim/ijim10.html#EderDMMS16,http://www.online-journals.org/index.php/i-jim/article/view/5553 +Miftachul Huda,Innovative E-Therapy Service in Higher Education: Mobile Application Design.,2017,11,iJIM,4,db/journals/ijim/ijim11.html#HudaJMBMES17,http://www.online-journals.org/index.php/i-jim/article/view/6734 +Samiha Marwan,Utilizing DNA Strands for Secured Data-Hiding with High Capacity.,2017,11,iJIM,2,db/journals/ijim/ijim11.html#MarwanSN17,http://www.online-journals.org/index.php/i-jim/article/view/6565 +David A. Guralnick,The Importance of the Learner's Environmental Context in the Design of M-Learning Products.,2008,2,iJIM,1,db/journals/ijim/ijim2.html#Guralnick08,http://online-journals.org/i-jim/article/view/157 +Wajeeh M. Daher,In-service and Pre-service Middle School Mathematics Teachers' Attitudes and Decisions Regarding Teaching Mathematics Using Mobile Phones.,2014,8,iJIM,4,db/journals/ijim/ijim8.html#DaherB14,http://www.online-journals.org/index.php/i-jim/article/view/3721 +Agnes Kukulska-Hulme,Theory-based Support for Mobile Language Learning: Noticing and Recording.,2009,3,iJIM,2,db/journals/ijim/ijim3.html#Kukulska-HulmeB09,https://doi.org/10.3991/ijim.v3i2.740 +Ana Serrano Tellería,Liquid Spheres on Smartphones: The Personal Information Policies.,2015,9,iJIM,1,db/journals/ijim/ijim9.html#TelleriaO15,http://www.online-journals.org/index.php/i-jim/article/view/4065 +Christoph Fuchß,An Approach to Ad-hoc Messaging Networks Using Time Shifted Propagation.,2007,1,iJIM,1,db/journals/ijim/ijim1.html#FuchssSHL07,http://online-journals.org/i-jim/article/view/168 +Omar R. Daoud,MIMO-OFDM Systems Performance Enhancement Based Peaks Detection Algorithm.,2013,7,iJIM,3,db/journals/ijim/ijim7.html#DaoudHA13,http://online-journals.org/i-jim/article/view/2302 +Fouzi Lezzar,A Mobile Shared Workspace Supporting Healthcare Task Cooperative Planning.,2013,7,iJIM,3,db/journals/ijim/ijim7.html#Lezzar13,http://online-journals.org/i-jim/article/view/2347 +Francisco Javier Tapia Moreno,Elaboration of Statistics Learning Objects for Mobile Devices.,2012,6,iJIM,2,db/journals/ijim/ijim6.html#Moreno12,http://online-journals.org/i-jim/article/view/1971 +Keiji Yanai,A Cooking Recipe Recommendation System with Visual Recognition of Food Ingredients.,2014,8,iJIM,2,db/journals/ijim/ijim8.html#YanaiMK14,http://www.online-journals.org/index.php/i-jim/article/view/3623 +Hery Harjono Muljo,Mobile Learning for Early Detection of Cancer.,2018,12,iJIM,2,db/journals/ijim/ijim12.html#MuljoPYP18,http://www.online-journals.org/index.php/i-jim/article/view/7814 +Mostafa Al-Emran,Attitudes Towards the Use of Mobile Learning: A Case Study from the Gulf Region.,2015,9,iJIM,3,db/journals/ijim/ijim9.html#Al-EmranS15,http://www.online-journals.org/index.php/i-jim/article/view/4596 +Mazyar Seraj,Impacts of Different Mobile User Interfaces on Students' Satisfaction for Learning Dijkstra's Shortest Path Algorithm.,2014,8,iJIM,4,db/journals/ijim/ijim8.html#SerajW14a,http://www.online-journals.org/index.php/i-jim/article/view/3860 +Muzhir Shaban Al-Ani,Next Generation Digital Commerce Technologies.,2009,3,iJIM,2,db/journals/ijim/ijim3.html#Al-Ani09,https://doi.org/10.3991/ijim.v3i2.655 +Tanja Svarre,Designing a Mobile Application for Structured and Flexible Interview Data Collection in the Health Domain.,2018,12,iJIM,3,db/journals/ijim/ijim12.html#SvarreL18,http://www.online-journals.org/index.php/i-jim/article/view/8232 +Ikhlef Ameur,Online Temperature Control System.,2015,9,iJIM,2,db/journals/ijim/ijim9.html#AmeurMBAN15,http://www.online-journals.org/index.php/i-jim/article/view/4382 +I Made Agus Wirawan,The Development of an Android-Based Anggah-Ungguhing Balinese Language Dictionary.,2018,12,iJIM,1,db/journals/ijim/ijim12.html#WirawanP18,http://www.online-journals.org/index.php/i-jim/article/view/7105 +Pedro Alvaro Pereira Correia,Digital Social Media: An Interactive Technology Incorporated as a Competitive Advantage for Business.,2014,8,iJIM,2,db/journals/ijim/ijim8.html#CorreiaM14,http://www.online-journals.org/index.php/i-jim/article/view/3576 +Dimitrios Tektonidis,Accessible Internet-of-Things and Internet-of-Content Services for All in the Home or on the Move.,2012,6,iJIM,4,db/journals/ijim/ijim6.html#TektonidisK12,http://online-journals.org/i-jim/article/view/2190 +Mohamed AbdelFattah,A Sentiment Analysis Tool for Determining the Promotional Success of Fashion Images on Instagram.,2017,11,iJIM,2,db/journals/ijim/ijim11.html#AbdelFattahGHET17,http://www.online-journals.org/index.php/i-jim/article/view/6563 +Annika Wiklund-Engblom,Process Documentation in Sloyd: Pilot Study of the 'Talking Tools' Application.,2015,9,iJIM,3,db/journals/ijim/ijim9.html#Wiklund-Engblom15,http://www.online-journals.org/index.php/i-jim/article/view/4325 +Teija Vainio,A Review of the Navigation HCI Research During the 2000's.,2010,4,iJIM,3,db/journals/ijim/ijim4.html#Vainio10,https://doi.org/10.3991/ijim.v4i3.1270 +Armando Paulino Preciado Babb,Using Mobile Technology for Fostering Intellectual Engagement.,2013,7,iJIM,3,db/journals/ijim/ijim7.html#BabbSMBF13,http://online-journals.org/i-jim/article/view/2888 +Jane Yau,Proposal of a Mobile Learning Preferences Model.,2010,4,iJIM,4,db/journals/ijim/ijim4.html#YauJ10,http://online-journals.org/i-jim/article/view/1445 +Youness Zidoun,Multi-Criteria Analysis and Advanced Comparative Study between M-learning Development Approaches.,2018,12,iJIM,3,db/journals/ijim/ijim12.html#ZidounDT18,http://www.online-journals.org/index.php/i-jim/article/view/8083 +Hosam Farouk El-Sofany,Improving Educational Outcomes by Providing Educational Services through Mobile Technology.,2013,7,iJIM,1,db/journals/ijim/ijim7.html#El-Sofany13,http://online-journals.org/i-jim/article/view/2287 +Karim Zarour,Agent and Mobile Tools for Telehomecare in Developing Countries: An Architecture Approach.,2015,9,iJIM,2,db/journals/ijim/ijim9.html#Zarour15,http://www.online-journals.org/index.php/i-jim/article/view/4245 +L. Raghavendar Raju,A Key Exchange Approach for Proficient and Secure Routing in Mobile Adhoc Networks.,2017,11,iJIM,4,db/journals/ijim/ijim11.html#RajuR17,http://www.online-journals.org/index.php/i-jim/article/view/6440 +Bertrand T. David,Contextual Mobile Learning: A Step Further to Mastering Professional Appliances.,2007,1,iJIM,1,db/journals/ijim/ijim1.html#DavidCCMY07,http://online-journals.org/i-jim/article/view/166 +Afaq Hyder Chohan,A Methodology to Develop a Mobile Application Model to Appraise Housing Design Quality.,2017,11,iJIM,6,db/journals/ijim/ijim11.html#ChohanAAC17,http://www.online-journals.org/index.php/i-jim/article/view/6379 +John Traxler,Mobile Learning - A Snapshot of 2008.,2009,3,iJIM,2,db/journals/ijim/ijim3.html#Traxler09,https://doi.org/10.3991/ijim.v3i2.885 +Jafar Asgari Arani,Advancing Academic Writing in a Mobile Skype-Based Blended Model.,2018,12,iJIM,3,db/journals/ijim/ijim12.html#Arani18,http://www.online-journals.org/index.php/i-jim/article/view/8219 +Saïda Latreche,UC1 Oscillator Remote Lab for Distant Electronics Education.,2015,9,iJIM,2,db/journals/ijim/ijim9.html#LatrecheZM15,http://www.online-journals.org/index.php/i-jim/article/view/4375 +Jehad Imlawi,Health Website Success: User Engagement in Health-Related Websites.,2017,11,iJIM,6,db/journals/ijim/ijim11.html#Imlawi17,http://www.online-journals.org/index.php/i-jim/article/view/6959 +Samuel Olugbenga King,Evaluating the Cognitive Aspects of User Interaction with 2D Visual Tagging Systems.,2008,2,iJIM,2,db/journals/ijim/ijim2.html#King08,http://online-journals.org/i-jim/article/view/197 +Yazan A. Alqudah,Hands-On Open Access Broadband Wireless Technology Lab Mapping Course Outcomes to Lab Experiments.,2012,6,iJIM,4,db/journals/ijim/ijim6.html#AlqudahC12,http://online-journals.org/i-jim/article/view/2161 +Michael Rabko,1x1 Trainer with Handwriting Recognition.,2018,12,iJIM,2,db/journals/ijim/ijim12.html#RabkoE18,http://www.online-journals.org/index.php/i-jim/article/view/7714 +Fazeena Jamaldeen,Design Guidelines for Creating Mobile Language Learning Applications.,2018,12,iJIM,3,db/journals/ijim/ijim12.html#JamaldeenHE18,http://www.online-journals.org/index.php/i-jim/article/view/8153 +Lander Martínez,Learning Physics Down a Slide: A Set of Experiments to Measure Reality Through Smartphone Sensors.,2014,8,iJIM,3,db/journals/ijim/ijim8.html#MartinezG14,http://www.online-journals.org/index.php/i-jim/article/view/3873 +Osama Halabi,Immersive Virtual Reality in Improving Communication Skills in Children with Autism.,2017,11,iJIM,2,db/journals/ijim/ijim11.html#HalabiEAAAA17,http://www.online-journals.org/index.php/i-jim/article/view/6555 +Orawit Thinnukool,Non-Prescription Medicine Mobile Healthcare Application: Smartphone-Based Software Design and Development Review.,2017,11,iJIM,5,db/journals/ijim/ijim11.html#ThinnukoolKW17a,http://www.online-journals.org/index.php/i-jim/article/view/7123 +René Cruz-Flores,A Framework for Educational Collaborative Activities Based on Mobile Devices: A Support to the Instructional Design.,2010,4,iJIM,3,db/journals/ijim/ijim4.html#FloresL10,https://doi.org/10.3991/ijim.v4i3.1268 +Denise Johnson McManus,Global Telecommunications Security: Effects of Geomagnetic Disturbances.,2011,5,iJIM,3,db/journals/ijim/ijim5.html#McManusCA11,http://online-journals.org/i-jim/article/view/1667 +Nafi Hanafi Dollah,Prototype Development of Mobile App for Trilingual Islamic Banking and Finance Glossary of Terms via iOS and Android Based Devices.,2017,11,iJIM,3,db/journals/ijim/ijim11.html#DollahGSHZO17,http://www.online-journals.org/index.php/i-jim/article/view/6620 +Jennifer Betsy Redd,Using Mobile Devices and Gaming as a Means of Building Vocabulary.,2011,5,iJIM,4,db/journals/ijim/ijim5.html#ReddS11,http://online-journals.org/i-jim/article/view/1683 +Suleyman Al-Showarah,The Effectiveness of Dynamic Features of Finger Based Gestures on Smartphones' Touchscreens for User Identification.,2017,11,iJIM,1,db/journals/ijim/ijim11.html#Al-Showarah17,http://www.online-journals.org/index.php/i-jim/article/view/6368 +Nagella Uday Bhaskar,Advanced and Effective Learning in Context Aware and Adaptive Mobile Learning Scenarios.,2010,4,iJIM,1,db/journals/ijim/ijim4.html#BhaskarG10,https://doi.org/10.3991/ijim.v4i1.1086 +Mousa T. Al-Akhras,Innovative Secure Mobile Banking Services.,2011,5,iJIM,1,db/journals/ijim/ijim5.html#AL-AkhrasAAQ11,http://online-journals.org/i-jim/article/view/1516 +Emad M. Abuelrub,A Tourism e-Guide System Using Mobile Integration.,2010,4,iJIM,2,db/journals/ijim/ijim4.html#AbuelrubS10,https://doi.org/10.3991/ijim.v4i2.1051 +Athanasios Drigas,Mobile Applications within Education: An Overview of Application Paradigms in Specific Categories.,2017,11,iJIM,4,db/journals/ijim/ijim11.html#DrigasA17,http://www.online-journals.org/index.php/i-jim/article/view/6589 +Omar R. Daoud,Wavelet Entropy Algorithm to Allocate the Extreme Power Peaks in WiMax Systems.,2014,8,iJIM,4,db/journals/ijim/ijim8.html#DaoudHS14,http://www.online-journals.org/index.php/i-jim/article/view/3766 +Walid B. Hussein,On Bubble Sizing in Water by Ultrasound.,2017,11,iJIM,2,db/journals/ijim/ijim11.html#HusseinEY17,http://www.online-journals.org/index.php/i-jim/article/view/6590 +Gunnar Liestøl,Sensory Media: Multidisciplinary Approaches in Designing a Situated and Mobile Learning Environment for Past Topics.,2012,6,iJIM,3,db/journals/ijim/ijim6.html#LiestolDLR12,http://online-journals.org/i-jim/article/view/2097 +Jeanne Schreurs,Mobile e-learning course scenario model on PDA.,2007,1,iJIM,1,db/journals/ijim/ijim1.html#Schreurs07,http://online-journals.org/i-jim/article/view/147 +Rizdania Dermawi,Design and Usability Evaluation of Communication Board for Deaf People with User-Centered Design Approach.,2018,12,iJIM,2,db/journals/ijim/ijim12.html#DermawiTA18,http://www.online-journals.org/index.php/i-jim/article/view/8100 +Shaibu Adekunle Shonola,Security of m-learning system: A collective responsibility.,2015,9,iJIM,3,db/journals/ijim/ijim9.html#ShonolaJ15,http://www.online-journals.org/index.php/i-jim/article/view/4475 +Roland Schwald,Interdisciplinary Approaches at Institutions of Higher Education: Teaching Information Systems Concepts to Students of Non-Computer Science Programs.,2011,5,iJIM,3,db/journals/ijim/ijim5.html#Schwald11,http://online-journals.org/i-jim/article/view/1670 +Sulaiman Mohaia Almutairy,The Readiness of Applying m-learning among Saudi Arabian Students at Higher Education.,2015,9,iJIM,3,db/journals/ijim/ijim9.html#AlmutairyDD15,http://www.online-journals.org/index.php/i-jim/article/view/4423 +Yousef Ibrahim Daradkeh,One Model of Geo-Location Services for Telecom Operators.,2016,10,iJIM,2,db/journals/ijim/ijim10.html#DaradkehAN16,http://www.online-journals.org/index.php/i-jim/article/view/5189 +W. Alsharafat,The Effect of Using an Electronic Instructional Game in Improving English Language Vocabulary for Third Graders in Irbid City.,2017,11,iJIM,6,db/journals/ijim/ijim11.html#AlsharafatAY17,http://www.online-journals.org/index.php/i-jim/article/view/7417 +E. L. D. G. S. Silva,Technology and Innovation in Agriculture: The Azores Case Study.,2017,11,iJIM,5,db/journals/ijim/ijim11.html#SilvaOMG17,http://www.online-journals.org/index.php/i-jim/article/view/7070 +Abdelrahman Osman Elfaki,The Pianist: Musical Mobile Application.,2012,6,iJIM,4,db/journals/ijim/ijim6.html#ElfakiTKAFJ12,http://online-journals.org/i-jim/article/view/2093 +Collins N. Udanor,A Performance Evaluation of a Multi-Agent Mobile Learning System.,2016,10,iJIM,2,db/journals/ijim/ijim10.html#UdanorO16,http://www.online-journals.org/index.php/i-jim/article/view/4873 +Ferial Khaddage,Client-Server and Peer-to-Peer Ad-hoc Network for a Flexible Learning Environment.,2011,5,iJIM,1,db/journals/ijim/ijim5.html#KhaddageL11,http://online-journals.org/i-jim/article/view/1444 +Youness Zidoun,Students' Perception About Mobile Learning in Morocco: Survey Analysis.,2016,10,iJIM,4,db/journals/ijim/ijim10.html#ZidounaTD16,http://www.online-journals.org/index.php/i-jim/article/view/5947 +Abdullah Y. Al-Zoubi,Trends and Challenges for Mobile.,2008,2,iJIM,2,db/journals/ijim/ijim2.html#Al-Zoubi08,http://online-journals.org/i-jim/article/view/264 +Solomon Adegbenro Akinboro,Mobile Road Traffic Management System Using Weighted Sensor.,2017,11,iJIM,5,db/journals/ijim/ijim11.html#AkinboroAOA17,http://www.online-journals.org/index.php/i-jim/article/view/6745 +Carlos A. Arévalo,A Software Tool to Visualize Verbal Protocols to Enhance Strategic and Metacognitive Abilities in Basic Programming.,2011,5,iJIM,3,db/journals/ijim/ijim5.html#ArevaloMG11,http://online-journals.org/i-jim/article/view/1668 +Avanthika Meenakshi,An Interactive Mobile Application for the Visually Impaired to Have Access to Listening Audio Books with Handy Books Portal.,2015,9,iJIM,1,db/journals/ijim/ijim9.html#MeenakshiSN15,http://www.online-journals.org/index.php/i-jim/article/view/4326 +Luís Brito Palma,A Virtual PLC Environment for Assisting Automation Teaching and Learning.,2017,11,iJIM,5,db/journals/ijim/ijim11.html#PalmaBRG17,http://www.online-journals.org/index.php/i-jim/article/view/7066 +Herman Tolle,Design of Head Movement Controller System (HEMOCS) for Control Mobile Application through Head Pose Movement Detection.,2016,10,iJIM,3,db/journals/ijim/ijim10.html#HermanA16,http://www.online-journals.org/index.php/i-jim/article/view/5552 +Ratih Kartika Dewi,The Development of Mobile Culinary Recommendation System Based on Group Decision Support System.,2018,12,iJIM,3,db/journals/ijim/ijim12.html#DewiAFBP18,http://www.online-journals.org/index.php/i-jim/article/view/7799 +Pavol Stefka,Remote Experimentation with Thermo-Optical Plant via Mobile Application.,2016,10,iJIM,4,db/journals/ijim/ijim10.html#StefkaZ16,http://www.online-journals.org/index.php/i-jim/article/view/5896 +Johanna Pirker,Application Domains for a Location-based Mobile Application Creator.,2015,9,iJIM,3,db/journals/ijim/ijim9.html#PirkerGWG15,http://www.online-journals.org/index.php/i-jim/article/view/4470 +Hagit Meishar-Tal,Teaching Sustainability via Smartphone-Enhanced Experiential Learning in a Botanical Garden.,2014,8,iJIM,1,db/journals/ijim/ijim8.html#TalG14,http://www.online-journals.org/index.php/i-jim/article/view/3441 +I Wayan Andis Indrawan,Markerless Augmented Reality Utilizing Gyroscope to Demonstrate the Position of Dewata Nawa Sanga.,2018,12,iJIM,1,db/journals/ijim/ijim12.html#IndrawanBP18,http://www.online-journals.org/index.php/i-jim/article/view/7527 +Akram Alkouz,J2ME-Based Mobile Virtual Laboratory for Engineering Education.,2008,2,iJIM,2,db/journals/ijim/ijim2.html#AlkouzAO08,http://online-journals.org/i-jim/article/view/252 +Christos Liaskos,A Holistic Virtual Laboratory on Wireless Communications and Sensor Networks.,2013,7,iJIM,3,db/journals/ijim/ijim7.html#LiaskosKV13,http://online-journals.org/i-jim/article/view/2480 +Saher Manaseer,Number of Node Estimation in Mobile Ad Hoc Networks.,2017,11,iJIM,6,db/journals/ijim/ijim11.html#ManaseerA17,http://www.online-journals.org/index.php/i-jim/article/view/6986 +Dominik May,Bringing Remote Labs and Mobile Learning together.,2013,7,iJIM,3,db/journals/ijim/ijim7.html#MayTHP13,http://online-journals.org/i-jim/article/view/2915 +Cheah WaiShiang,Agent-Oriented Requirement Engineering for Mobile Application Development.,2017,11,iJIM,6,db/journals/ijim/ijim11.html#WaiShiangPHH17,http://www.online-journals.org/index.php/i-jim/article/view/6760 +Eman Ahmed,A Cloud-based Malware Detection Framework.,2017,11,iJIM,2,db/journals/ijim/ijim11.html#AhmedSSE17,http://www.online-journals.org/index.php/i-jim/article/view/6577 +Wael Etaiwi,Managing BTSs to Solve Handover Problem in Mobile Network.,2011,5,iJIM,1,db/journals/ijim/ijim5.html#EtaiwiAJB11,http://online-journals.org/i-jim/article/view/1377 +Wibisono Sukmo Wardhono,End-to-End Privacy Protection for Facebook Mobile Chat based on AES with Multi-Layered MD5.,2018,12,iJIM,1,db/journals/ijim/ijim12.html#WardhonoPABT18,http://www.online-journals.org/index.php/i-jim/article/view/7472 +J. Almeida Rosas,Approach to Adapt a Legacy Manufacturing System Into the IoT Paradigm.,2017,11,iJIM,5,db/journals/ijim/ijim11.html#RosasBPB17,http://www.online-journals.org/index.php/i-jim/article/view/7073 +Carlos A. Flores-Cortés,Performance Evaluation of an IEEE 802.15.4 Wireless Sensor Network on a Coastal Environment.,2017,11,iJIM,1,db/journals/ijim/ijim11.html#Flores-CortesBI17,http://www.online-journals.org/index.php/i-jim/article/view/6315 +Zoe Karabatzaki,Mobile Application Tools for Students in Secondary Education. An Evaluation Study.,2018,12,iJIM,2,db/journals/ijim/ijim12.html#KarabatzakiSKDL18,http://www.online-journals.org/index.php/i-jim/article/view/8158 +Reham Adel Ali,Investigating the Perception of Students Regarding M-Learning Concept in Egyptian Schools.,2017,11,iJIM,6,db/journals/ijim/ijim11.html#AliA17,http://www.online-journals.org/index.php/i-jim/article/view/7361 +Hasan Omar Al-Sakran,Agent Based Framework Architecture for Supporting Content Adaptation for Mobile Government.,2013,7,iJIM,1,db/journals/ijim/ijim7.html#Al-SakranKS13,http://online-journals.org/i-jim/article/view/2131 +Hanan Elazhary,Context-aware Cloud-based Mobile Application for Assessment and Training of Visual Cognitive Abilities.,2017,11,iJIM,6,db/journals/ijim/ijim11.html#Elazhary17a,http://www.online-journals.org/index.php/i-jim/article/view/7438 +Francisco Javier Tapia Moreno,Learning Confidence Intervals with Mobile Devices.,2013,7,iJIM,4,db/journals/ijim/ijim7.html#MorenoM13,http://online-journals.org/i-jim/article/view/2788 +Rafi U. Zaman,Improvement of Adaptive Load Balanced Gateway Discovery Protocol in Hybrid Integrated Internet-MANET.,2017,11,iJIM,3,db/journals/ijim/ijim11.html#ZamanAKR17,http://www.online-journals.org/index.php/i-jim/article/view/6706 +Zouhair Rimale,Survey on the Use of the Mobile Learning Based on Mobile Cloud Computing.,2016,10,iJIM,3,db/journals/ijim/ijim10.html#RimaleBTG16,http://www.online-journals.org/index.php/i-jim/article/view/5672 +Arttu Perttula,Persuasive Mobile Device Sound Sensing in a Classroom Setting.,2013,7,iJIM,1,db/journals/ijim/ijim7.html#PerttulaMT13,http://online-journals.org/i-jim/article/view/2262 +Samir Abou El-Seoud,A Pictorial Mobile Application for Improving Communication Skills in Non-Verbal Autism.,2015,9,iJIM,4,db/journals/ijim/ijim9.html#El-SeoudKJ15,http://www.online-journals.org/index.php/i-jim/article/view/4699 +Gastón Saez de Arregui,A Mobile Remote Lab System to Monitor in Situ Thermal Solar Installations.,2013,7,iJIM,1,db/journals/ijim/ijim7.html#ArreguiPLPMCS13,http://online-journals.org/i-jim/article/view/2292 +Ashraf Khalil,Driver's Big Brother: How Smartphones Can Increase Driver's Awareness.,2012,6,iJIM,4,db/journals/ijim/ijim6.html#KhalilE12,http://online-journals.org/i-jim/article/view/2188 +Christos Kouroupetroglou,Mainstreaming of Mobile Assistive Technology: Experts' Thoughts and Opinions.,2012,6,iJIM,1,db/journals/ijim/ijim6.html#KouroupetroglouTKI12a,http://online-journals.org/i-jim/article/view/1791 +Samir Abou El-Seoud,Mobile Applications and Semantic-Web - A case study on Automated Course Management.,2016,10,iJIM,3,db/journals/ijim/ijim10.html#El-SeoudET16,http://www.online-journals.org/index.php/i-jim/article/view/5770 +Hugo Pardo Kuklinski,Mobile Web 2.0. Theoretical-technical framework and developing trends..,2008,2,iJIM,4,db/journals/ijim/ijim2.html#KuklinskiBP08,http://online-journals.org/i-jim/article/view/535 +Hosam Farouk El-Sofany,Towards Development of Web-based Assessment System Based on Semantic Web Technology.,2011,5,iJIM,1,db/journals/ijim/ijim5.html#El-Sofany11,http://online-journals.org/i-jim/article/view/1439 +Abdul Razaque,Interactive Prototypes to Foster Pedagogical Activities for Mobile Collaborative Learning Environment (MCLE).,2012,6,iJIM,1,db/journals/ijim/ijim6.html#RazaqueE12,http://online-journals.org/i-jim/article/view/1808 +Robert Meolic,A C++ App for Demonstration of Sorting Algorithms on Mobile Platforms.,2014,8,iJIM,1,db/journals/ijim/ijim8.html#MeolicD14,http://www.online-journals.org/index.php/i-jim/article/view/3464 +Sule Yildirim Yayilgan,A New Ski Injury Registration System Architecture Using Mobile Applications to Enhance Skiing Safety.,2016,10,iJIM,4,db/journals/ijim/ijim10.html#YayilganDDJ16,http://www.online-journals.org/index.php/i-jim/article/view/5540 +Zakariya Belkhamza,The Effect of Privacy Concerns on Smartphone App Purchase in Malaysia: Extending the Theory of Planned Behavior.,2017,11,iJIM,5,db/journals/ijim/ijim11.html#BelkhamzaN17,http://www.online-journals.org/index.php/i-jim/article/view/6961 +Rania Fahim El-Gazzar,Agent-Based Mobile Event Notification System.,2010,4,iJIM,4,db/journals/ijim/ijim4.html#El-GazzarBK10,http://online-journals.org/i-jim/article/view/1427 +Chara Papoutsi,Empathy and Mobile Applications.,2017,11,iJIM,3,db/journals/ijim/ijim11.html#PapoutsiD17,http://www.online-journals.org/index.php/i-jim/article/view/6385 +Daniel Wessel,The Potential of Computer-Assisted Direct Observation Apps.,2015,9,iJIM,1,db/journals/ijim/ijim9.html#Wessel15,http://www.online-journals.org/index.php/i-jim/article/view/4205 +Frank Allan Hansen,Mobile Learning in Context - Context-aware Hypermedia in the Wild.,2009,3,iJIM,1,db/journals/ijim/ijim3.html#HansenB09,https://doi.org/10.3991/ijim.v3i1.766 +Khaleel Ur Rahman Khan,An Analytical Framework for the Assessment of the Mobile IP Overhead Involved in the Integrated Internet-MANET.,2010,4,iJIM,1,db/journals/ijim/ijim4.html#KhanZR10,https://doi.org/10.3991/ijim.v4i1.1027 +Rasha Abdel sattar El Stohy,A Proposed System for Push Messaging on Android.,2016,10,iJIM,3,db/journals/ijim/ijim10.html#StohyGG16,http://www.online-journals.org/index.php/i-jim/article/view/5567 +Bassam M. Al-Mahadeen,Factors Affecting the Readiness of Medical Doctors and Patients with Chronic Conditions toward the Usage of Smartphones in the Saudi Arabian Healthcare Sector.,2015,9,iJIM,1,db/journals/ijim/ijim9.html#Al-Mahadeen15,http://www.online-journals.org/index.php/i-jim/article/view/4279 +A. A. Kompiang Oka Sudana,Implementation of Tree Structure and Recursive Algorithm for Balinese Traditional Snack Recipe on Android Based Application.,2016,10,iJIM,4,db/journals/ijim/ijim10.html#SudanaKR16,http://www.online-journals.org/index.php/i-jim/article/view/5953 +Kees Uiterwijk,A Remote WIRELESS Facility.,2007,1,iJIM,1,db/journals/ijim/ijim1.html#UiterwijkK07,http://online-journals.org/i-jim/article/view/143 +Osman A. Abdellah,Improving Pre-hospital Care of Road Traffic Accident's Victims with Smartphone Technology.,2018,12,iJIM,2,db/journals/ijim/ijim12.html#AbdellahAE18,http://www.online-journals.org/index.php/i-jim/article/view/8118 +Heba Mohammad,Do We Have to Prohibit the Use of Mobile Phones in Classrooms?,2015,9,iJIM,2,db/journals/ijim/ijim9.html#MohammadFA15,http://www.online-journals.org/index.php/i-jim/article/view/4394 +Yohanes Erwin Dari,CAPTURE: A Mobile Based Indoor Positioning System using Wireless Indoor Positioning System.,2018,12,iJIM,1,db/journals/ijim/ijim12.html#DariSP18,http://www.online-journals.org/index.php/i-jim/article/view/7632 +Tobias Jordine,A Mobile Device Based Serious Gaming Approach for Teaching and Learning Java Programming.,2015,9,iJIM,1,db/journals/ijim/ijim9.html#JordineLI15,http://www.online-journals.org/index.php/i-jim/article/view/4380 +Ke Tian,Multi-viewpoint Smartphone AR-based Learning System for Solar Movement Observations.,2014,8,iJIM,3,db/journals/ijim/ijim8.html#TianEUMY14a,http://www.online-journals.org/index.php/i-jim/article/view/3731 +Yoong Cheah Huei,Enterprise Mobile Tracking and Reminder System: MAE.,2012,6,iJIM,3,db/journals/ijim/ijim6.html#HueiSXY12,http://online-journals.org/i-jim/article/view/2096 +Paul D. Hatzigiannakoglou,An Accessible Keyboard for Android Devices as a Means for Promoting Braille Literacy.,2016,10,iJIM,2,db/journals/ijim/ijim10.html#Hatzigiannakoglou16,http://www.online-journals.org/index.php/i-jim/article/view/5527 +Belal Mohammad Zaqaibeh,Designing a New Assertion Constraints Model for Mobile Databases.,2012,6,iJIM,2,db/journals/ijim/ijim6.html#ZaqaibehAA12,http://online-journals.org/i-jim/article/view/1836 +Filippos Giannakas,Security Education and Awareness for K-6 Going Mobile.,2016,10,iJIM,2,db/journals/ijim/ijim10.html#GiannakasKPG16,http://www.online-journals.org/index.php/i-jim/article/view/5473 +Rui Neves Madeira,An Analog Electronics Mobile Course with a Competitive Learning Approach.,2010,4,iJIM,4,db/journals/ijim/ijim4.html#MadeiraPDM10,http://online-journals.org/i-jim/article/view/1415 +Seyed Ebrahim Hosseini,Acquiring Knowledge through Mobile Applications.,2015,9,iJIM,3,db/journals/ijim/ijim9.html#HosseiniKA15,http://www.online-journals.org/index.php/i-jim/article/view/4495 +Wafa' N. Muhanna,University Students' Attitudes towards Cell Phone Learning Environment.,2009,3,iJIM,4,db/journals/ijim/ijim3.html#MuhannaA09,https://doi.org/10.3991/ijim.v3i4.1068 +Andreja Rojko,Industry 4.0 Concept: Background and Overview.,2017,11,iJIM,5,db/journals/ijim/ijim11.html#Rojko17,http://www.online-journals.org/index.php/i-jim/article/view/7072 +Manuel Cabral Reis,Teaching Fourier Series Expansions in Undergraduate Education with the Help of the FouSE Android Application.,2014,8,iJIM,1,db/journals/ijim/ijim8.html#ReisSCMPF14,http://www.online-journals.org/index.php/i-jim/article/view/3455 +Kobkiat Saraubon,System Design of Mobile Augmented Book.,2016,10,iJIM,1,db/journals/ijim/ijim10.html#SaraubonNW16,http://www.online-journals.org/index.php/i-jim/article/view/5276 +Willian Rochadel,Utilization of Remote Experimentation in Mobile Devices for Education.,2012,6,iJIM,3,db/journals/ijim/ijim6.html#RochadelSSAL12,http://online-journals.org/i-jim/article/view/2144 +Abdel-Rahman Alzoubaidi,Private Cloud Computing Services for an Interactive Multi-Campus University.,2016,10,iJIM,4,db/journals/ijim/ijim10.html#Alzoubaidi16,http://www.online-journals.org/index.php/i-jim/article/view/5931 +Collins N. Udanor,Motivation for the Design and Implementation of a SMS Slang Converter for Android Devices.,2016,10,iJIM,1,db/journals/ijim/ijim10.html#UdanorN16,http://www.online-journals.org/index.php/i-jim/article/view/4492 +Mohammad Ismail,Predictive Modelling of Mobile Marketing Usage among Generation Y: A Preliminary Survey.,2016,10,iJIM,2,db/journals/ijim/ijim10.html#IsmailRYZHL16,http://www.online-journals.org/index.php/i-jim/article/view/5545 +Hyo-Jung Kim,Predicting the Drivers of the Intention to Use Mobile Learning in South Korea.,2018,12,iJIM,1,db/journals/ijim/ijim12.html#KimR18,http://www.online-journals.org/index.php/i-jim/article/view/7688 +Janez Stergar,A Novel Concept of a Cartoon-Generator Application on a Mobile Phone.,2010,4,iJIM,2,db/journals/ijim/ijim4.html#StergarSS10,https://doi.org/10.3991/ijim.v4i2.1266 +Osama Harfoushi,Influence of Cloud Based Mobile Learning Applications on User Experiences: A Review Study in the Context of Jordan.,2017,11,iJIM,4,db/journals/ijim/ijim11.html#Harfoushi17,http://www.online-journals.org/index.php/i-jim/article/view/6938 +Adel Labidi Khelifi,The Archeology Field in the Mobile Era: A Roadmap to Catch-up.,2018,12,iJIM,1,db/journals/ijim/ijim12.html#Khelifi18,http://www.online-journals.org/index.php/i-jim/article/view/7673 +Olaf Zawacki-Richter,Factors that may contribute to the establishment of mobile learning in institutions - Results from a Survey.,2007,1,iJIM,1,db/journals/ijim/ijim1.html#Zawacki-RichterBD07,http://online-journals.org/i-jim/article/view/164 +Safak Korkut,Success Factors of Online Learning Videos.,2015,9,iJIM,4,db/journals/ijim/ijim9.html#KorkutDDSM15,http://www.online-journals.org/index.php/i-jim/article/view/4460 +Ramses Miramontes Meza,Mobile Remote Control for Home Automation.,2013,7,iJIM,4,db/journals/ijim/ijim7.html#MezaRS13,http://online-journals.org/i-jim/article/view/3178 +Nikleia Eteokleous,Investigating Mobile Devices Integration in Higher Education in Cyprus: Faculty Perspectives.,2009,3,iJIM,1,db/journals/ijim/ijim3.html#EteokleousK09,https://doi.org/10.3991/ijim.v3i1.762 +Teemu Henrikki Laine,Survey on Context-Aware Pervasive Learning Environments.,2009,3,iJIM,1,db/journals/ijim/ijim3.html#LaineJ09,https://doi.org/10.3991/ijim.v3i1.680 +Shirmen Sodbileg,Detecting Mobile User Position Without GPS on Android OS.,2010,4,iJIM,3,db/journals/ijim/ijim4.html#ShirmenBD10,https://doi.org/10.3991/ijim.v4i3.1269 +Matthew Aitkenhead,Innovations in Environmental Monitoring Using Mobile Phone Technology - A Review.,2014,8,iJIM,2,db/journals/ijim/ijim8.html#AitkenheadDCH14,http://www.online-journals.org/index.php/i-jim/article/view/3645 +Sergio Martín,Mobility through Location-based Services at University.,2008,2,iJIM,3,db/journals/ijim/ijim2.html#MartinCGCP08,http://online-journals.org/i-jim/article/view/276 +,8th International Conference on Interactive Mobile Communication Technologies and Learning - IMCL2014.,2014,8,iJIM,2,db/journals/ijim/ijim8.html#X14,http://www.online-journals.org/index.php/i-jim/article/view/3746/3068 +Mladjan Antic,Development of eStudent iOS mobile application.,2013,7,iJIM,1,db/journals/ijim/ijim7.html#AnticJC13,http://online-journals.org/i-jim/article/view/2295 +Ratih Kartika Dewi,A Comparison Between AHP and Hybrid AHP for Mobile Based Culinary Recommendation System.,2018,12,iJIM,1,db/journals/ijim/ijim12.html#DewiHP18,http://www.online-journals.org/index.php/i-jim/article/view/7561 +Marcus Nyberg,Mobile MSN Messenger: Still a Complement?.,2008,2,iJIM,4,db/journals/ijim/ijim2.html#NybergC08,http://online-journals.org/i-jim/article/view/670 +Paulo Menezes,An Augmented Reality U-Academy Module: From Basic Principles to Connected Subjects.,2017,11,iJIM,5,db/journals/ijim/ijim11.html#Menezes17,http://www.online-journals.org/index.php/i-jim/article/view/7074 +Carlos Alberto Scolari,Mobile Media: Towards a Definition and Taxonomy of Contents and Applications.,2012,6,iJIM,2,db/journals/ijim/ijim6.html#ScolariAF12,http://online-journals.org/i-jim/article/view/1880 +Tor Gjøsæter,Affordances in Mobile Augmented Reality Applications.,2014,8,iJIM,4,db/journals/ijim/ijim8.html#Gjosaeter14,http://www.online-journals.org/index.php/i-jim/article/view/4051 +Maitrayee Ghosh,MOOC M4D: An Overview and Learner?s Viewpoint on Autumn 2013 Course.,2014,8,iJIM,1,db/journals/ijim/ijim8.html#Ghosh14,http://www.online-journals.org/index.php/i-jim/article/view/3486 +Gavin McArdle,Usability Testing of a Collaborative and Interactive University on a Mobile Device.,2009,3,iJIM,4,db/journals/ijim/ijim3.html#McArdleMB09,https://doi.org/10.3991/ijim.v3i4.905 +Seibu Mary Jacob,Mobile Technologies and its Impact - An Analysis in Higher Education Context.,2008,2,iJIM,1,db/journals/ijim/ijim2.html#JacobI08,http://online-journals.org/i-jim/article/view/156 +Dogan Ibrahim,MOLT: A Mobile Learning Tool That Makes Learning New Technical English Language Words Enjoyable.,2008,2,iJIM,4,db/journals/ijim/ijim2.html#DoganC08,http://online-journals.org/i-jim/article/view/530 +Emir Mauludi Husni,Mobile Payment Protocol for Tag-to-Tag Near Field Communication (NFC).,2012,6,iJIM,4,db/journals/ijim/ijim6.html#Husni12,http://online-journals.org/i-jim/article/view/2166 +Inge De Waard,Integrating Gender and Ethnicity in Mobile Courses Ante-Design: a TELearning Instrument.,2009,3,iJIM,1,db/journals/ijim/ijim3.html#WaardZ09,https://doi.org/10.3991/ijim.v3i1.674 +Debopam Acharya,Advances in Integrated Vehicle Health Monitoring Systems.,2011,5,iJIM,3,db/journals/ijim/ijim5.html#AcharyaH11,http://online-journals.org/i-jim/article/view/1671 +Samira Muhammad Ismail,How to Improve the Accessibility and Reduce the Total Cost of Ownership with Ecolig Protocol and Android in Mobile Learning.,2011,5,iJIM,4,db/journals/ijim/ijim5.html#IsmailMB11,http://online-journals.org/i-jim/article/view/1648 +Doru Ursutiu,Wi-Fi Tags for the Remote and Virtual Laboratory.,2008,2,iJIM,2,db/journals/ijim/ijim2.html#UrsutiuGSC08,http://online-journals.org/i-jim/article/view/269 +Angel Schols,The Use of Smartphones and Mobile Clinical Decision Support Systems in Clinical Clerkships: A Pilot Study.,2013,7,iJIM,2,db/journals/ijim/ijim7.html#ScholsDVVHK13,http://online-journals.org/i-jim/article/view/2446 +Olawale Babatunde Akinwale,Data Compression for Remote Laboratories.,2017,11,iJIM,4,db/journals/ijim/ijim11.html#AkinwaleK17,http://www.online-journals.org/index.php/i-jim/article/view/6743 +Sakunthala Ekanayake,Support of Mobile Phones in a Private Network for Science Teaching.,2016,10,iJIM,2,db/journals/ijim/ijim10.html#EkanayakeS16,http://www.online-journals.org/index.php/i-jim/article/view/4817 +Mostafa Al-Emran,Students' Attitudes Towards the Use of Mobile Technologies in e-Evaluation.,2017,11,iJIM,5,db/journals/ijim/ijim11.html#Al-EmranS17,http://www.online-journals.org/index.php/i-jim/article/view/6879 +Huiru Cao,A Mobile WSN Sink Node Using Unmanned Aerial Vehicles: Design And Experiment.,2016,10,iJIM,3,db/journals/ijim/ijim10.html#CaoYL16,http://www.online-journals.org/index.php/i-jim/article/view/5808 +Ali Mostakhdemin-Hosseini,Analysis of Pedagogical Considerations of M-Learning in Smart Devices.,2009,3,iJIM,4,db/journals/ijim/ijim3.html#Mostakhdemin-Hosseini09a,https://doi.org/10.3991/ijim.v3i4.855 +Andik Setyono,An Adaptive Web-based Framework for Mobile Telemonitoring System.,2017,11,iJIM,1,db/journals/ijim/ijim11.html#SetyonoHA17,http://www.online-journals.org/index.php/i-jim/article/view/6031 +Mohd Azlishah Othman,Observation on the uses of Mobile Phones to Support Informal Learning.,2012,6,iJIM,4,db/journals/ijim/ijim6.html#Othman12,http://online-journals.org/i-jim/article/view/2223 +Mansour A. Alwraikat,Wireless Internet Technology to Support Learning in the University of Jordan: Students Voices.,2015,9,iJIM,3,db/journals/ijim/ijim9.html#Alwraikat15,http://www.online-journals.org/index.php/i-jim/article/view/4031 +Dionysios Politis,variPiano™*: Visualizing Musical Diversity with a Differential Tuning Mobile Interface.,2015,9,iJIM,3,db/journals/ijim/ijim9.html#PolitisPTK15,http://www.online-journals.org/index.php/i-jim/article/view/4472 +Rawan Ghnemat,Classification of Mobile Customers Behavior and Usage Patterns using Self-Organizing Neural Networks.,2015,9,iJIM,4,db/journals/ijim/ijim9.html#GhnematJ15,http://www.online-journals.org/index.php/i-jim/article/view/4392 +Hendra Pradibta,Augmented Reality: Daily Prayers for Preschooler Student.,2018,12,iJIM,1,db/journals/ijim/ijim12.html#Pradibta18,http://www.online-journals.org/index.php/i-jim/article/view/7269 +Samir Abou El-Seoud,A Proposed Pedagogical Mobile Application for Learning Sign Language.,2013,7,iJIM,1,db/journals/ijim/ijim7.html#El-SeoudTNER13,http://online-journals.org/i-jim/article/view/2387 +Hanysah Baharum,Simplistic is the Ingredient for Mobile Learning.,2010,4,iJIM,3,db/journals/ijim/ijim4.html#BaharumII10,https://doi.org/10.3991/ijim.v4i3.1159 +Amir Dirin,Managing Emotional Requirements in a Context-Aware Mobile Application for Tourists.,2018,12,iJIM,2,db/journals/ijim/ijim12.html#DirinLA18,http://www.online-journals.org/index.php/i-jim/article/view/7933 +Orawit Thinnukool,Pharmacy Assistant Mobile Application (PAMA): Development and Reviews.,2017,11,iJIM,3,db/journals/ijim/ijim11.html#ThinnukoolKW17,http://www.online-journals.org/index.php/i-jim/article/view/6757 +Samir Abou El-Seoud,Big Data and Cloud Computing: Trends and Challenges.,2017,11,iJIM,2,db/journals/ijim/ijim11.html#El-SeoudEAM17,http://www.online-journals.org/index.php/i-jim/article/view/6561 +Essa Basaeed,Web-based Context-Aware m-Learning Architecture.,2007,1,iJIM,1,db/journals/ijim/ijim1.html#BasaeedBZB07,http://online-journals.org/i-jim/article/view/167 +Jehad A Alsadi,m-Learning: The Usage of WAP Technology in e-Learning.,2009,3,iJIM,3,db/journals/ijim/ijim3.html#AlsadiA09,https://doi.org/10.3991/ijim.v3i3.808 +Ozan Koseoglu,Mobile Visualisation for On-Site Collaboration.,2008,2,iJIM,4,db/journals/ijim/ijim2.html#KoseogluB08,http://online-journals.org/i-jim/article/view/595 +Khitam Yousuf Shraim,A Case Study of Mobile Technology-enabled English Language Learning: the Amazon Kindle e-Reader Initiative in Palestine.,2014,8,iJIM,3,db/journals/ijim/ijim8.html#Shraim14,http://www.online-journals.org/index.php/i-jim/article/view/3770 +Guy Janssens,The Feasibility of E-Ink Readers in Distance Learning: A Field Study.,2009,3,iJIM,3,db/journals/ijim/ijim3.html#JanssensM09,https://doi.org/10.3991/ijim.v3i3.726 +Ferial Khaddage,E-Learning over Mobile Phone Technology: Best Practices and Guidelines.,2009,3,iJIM,3,db/journals/ijim/ijim3.html#KhaddageCZ09,https://doi.org/10.3991/ijim.v3i3.950 +Patricia M. F. Coelho,Social Media: A New Way of Public and Political Communication in Digital Media.,2017,11,iJIM,6,db/journals/ijim/ijim11.html#CoelhoCM17,http://www.online-journals.org/index.php/i-jim/article/view/6876 +Mansour A. Alwraikat,Smartphones as a New Paradigm in Higher Education Overcoming Obstacles.,2017,11,iJIM,4,db/journals/ijim/ijim11.html#Alwraikat17,http://www.online-journals.org/index.php/i-jim/article/view/6759 +Jonathan Adedayo Odukoya,Assessing the Effectiveness of Mobile Learning Devices in Tertiary Institutions: The Experience of Undergraduates in a Nigerian Private University.,2017,11,iJIM,4,db/journals/ijim/ijim11.html#OdukoyaAO17,http://www.online-journals.org/index.php/i-jim/article/view/6828 +Hasnain Zafar Baloch,Mobile Collaborative Informal Learning Design: Study of collaborative effectiveness using Activity Theory.,2012,6,iJIM,3,db/journals/ijim/ijim6.html#BalochRI12,http://online-journals.org/i-jim/article/view/2090 +Ashraf Tahat,Enhanced Practical Wireless Communications Education via Blended Instructional Tools.,2013,7,iJIM,2,db/journals/ijim/ijim7.html#TahatJK13,http://online-journals.org/i-jim/article/view/2477 +Saida Rebiai,Implementation of Online Optoelectronic Devices Course and Remote Experiments in UC1 iLab.,2015,9,iJIM,2,db/journals/ijim/ijim9.html#RebiaiTM15,http://www.online-journals.org/index.php/i-jim/article/view/4378 +Azidah Abu Ziden,Perceptions and Experience in Mobile Learning via SMS: A Case Study of Distance Education Students in a Malaysian Public University.,2017,11,iJIM,1,db/journals/ijim/ijim11.html#ZidenRGA17,http://www.online-journals.org/index.php/i-jim/article/view/6332 +Kinshuk,Adaptive Approaches to Mobile Learning.,2009,3,iJIM,1,db/journals/ijim/ijim3.html#KinshukHT09,https://doi.org/10.3991/ijim.v3i1.767 +Mohammed-Issa Riad Mousa Jaradat,Assessing the Introduction of Mobile Banking in Jordan Using Technology Acceptance Model.,2010,4,iJIM,1,db/journals/ijim/ijim4.html#JaradatT10,https://doi.org/10.3991/ijim.v4i1.1057 +Markos Mentzelopoulos,Perceptual User Interface Framework for Immersive Information Retrieval Environments (An Experimental Framework for Testing and Rapid Iteration).,2016,10,iJIM,2,db/journals/ijim/ijim10.html#MentzelopoulosF16,http://www.online-journals.org/index.php/i-jim/article/view/5643 +George Chis,Mobile Learning Platform for E-Learning.,2009,3,iJIM,3,db/journals/ijim/ijim3.html#ChisGS09,https://doi.org/10.3991/ijim.v3i3.678 +Puspa Miladin Nuraida Safitri A. Basid,Designing Module E-Complaint System Based on Geotagging and Geofencing.,2017,11,iJIM,3,db/journals/ijim/ijim11.html#BasidTR17,http://www.online-journals.org/index.php/i-jim/article/view/6557 +Faisal Alkhateeb,Connecting Mobile Users Through Mobile Social Networks.,2012,6,iJIM,4,db/journals/ijim/ijim6.html#AlkhateebMDM12,http://online-journals.org/i-jim/article/view/2224 +Chee-Weng Khong,Special Edition on HFT2008 International Symposium.,2008,2,iJIM,4,db/journals/ijim/ijim2.html#KhongW08,http://online-journals.org/i-jim/article/view/665 +Alexander Bartel,Engaging Students with a Mobile Game-Based Learning System in University Education.,2014,8,iJIM,4,db/journals/ijim/ijim8.html#BartelH14,http://www.online-journals.org/index.php/i-jim/article/view/3991 +Lamiaa A. Elrefaei,Smartphone Based Image Color Correction for Color Blindness.,2018,12,iJIM,3,db/journals/ijim/ijim12.html#Elrefaei18,http://www.online-journals.org/index.php/i-jim/article/view/8160 +Junar Arciete Landicho,VOISEE COMMUNICATOR: An Android Mobile Application for Hearing-impaired and Blind Communications.,2016,10,iJIM,4,db/journals/ijim/ijim10.html#Landicho16,http://www.online-journals.org/index.php/i-jim/article/view/5859 +Samir Abou El-Seoud,Mobile Learning Platform Connected to Moodle Using J2ME.,2009,3,iJIM,2,db/journals/ijim/ijim3.html#El-SeoudAE09,https://doi.org/10.3991/ijim.v3i2.751 +Reinhard Bernsteiner,Mobile Cloud Computing for Enterprise Systems: A Conceptual Framework for Research.,2016,10,iJIM,2,db/journals/ijim/ijim10.html#BernsteinerKE16,http://www.online-journals.org/index.php/i-jim/article/view/5511 +Mohammad Ismail,Determine Entrepreneurial Characteristics Using Mobile Android Game Freezer.,2018,12,iJIM,1,db/journals/ijim/ijim12.html#IsmailIYIZRYGK18,http://www.online-journals.org/index.php/i-jim/article/view/7790 +Marília Soares Mendes,Towards for Analyzing Alternatives of Interaction Design Based on Verbal Decision Analysis of User Experience.,2010,4,iJIM,2,db/journals/ijim/ijim4.html#MendesCFP10,https://doi.org/10.3991/ijim.v4i2.1239 +Zoran Vucetic,Mobile School Service.,2010,4,iJIM,2,db/journals/ijim/ijim4.html#VuceticO10,https://doi.org/10.3991/ijim.v4i2.1054 +Samir Abou El-Seoud,DNA Computing: Challenges and Application.,2017,11,iJIM,2,db/journals/ijim/ijim11.html#El-SeoudMG17,http://www.online-journals.org/index.php/i-jim/article/view/6564 +Fais Al Huda,Realtime Online Daily Living Activity Recognition Using Head-Mounted Display.,2017,11,iJIM,3,db/journals/ijim/ijim11.html#HudaTA17,http://www.online-journals.org/index.php/i-jim/article/view/6469 +Karen E. Smith,Impact on Social Change: Benefits and Barriers to School Culture and the Integration of M-Technology.,2008,2,iJIM,1,db/journals/ijim/ijim2.html#SmithC08,http://online-journals.org/i-jim/article/view/207 +David Johnson,Mobile Support in CSCW Applications and Groupware Development Frameworks.,2013,7,iJIM,2,db/journals/ijim/ijim7.html#Johnson13,http://online-journals.org/i-jim/article/view/2469 +Gabriela Trindade Perry,Lessons from an Educational Game Usability Evaluation.,2012,6,iJIM,2,db/journals/ijim/ijim6.html#PerryKPE12,http://online-journals.org/i-jim/article/view/1888 +Mohamd Hassan Hassan,Using Mobile Technologies for Enhancing Student Academic Experience: University of Jordan Case Study.,2016,10,iJIM,1,db/journals/ijim/ijim10.html#HassanAH16,http://www.online-journals.org/index.php/i-jim/article/view/4809 +Cuong Ngyuen Pham,Pervasive Learning System Based on a Scenario Model Integrating Web Service Retrieval and Orchestration.,2009,3,iJIM,2,db/journals/ijim/ijim3.html#PhamGLBV09,https://doi.org/10.3991/ijim.v3i2.737 +Wajeeh M. Daher,Building mathematics cellular phone learning communities.,2011,5,iJIM,2,db/journals/ijim/ijim5.html#Daher11,http://online-journals.org/i-jim/article/view/1475 +Teija Vainio,Exploring the transformations of interaction in mobile work contexts.,2008,2,iJIM,2,db/journals/ijim/ijim2.html#VainioOWMK08,http://online-journals.org/i-jim/article/view/203 +Michael E. Auer,From the Editor.,2007,1,iJIM,1,db/journals/ijim/ijim1.html#Auer07,http://online-journals.org/i-jim/article/view/180 +S. Gowrishankar,A Time Series Modeling and Prediction of Wireless Network Traffic.,2009,3,iJIM,1,db/journals/ijim/ijim3.html#GowrishankarS09,https://doi.org/10.3991/ijim.v3i1.284 +Steinar Kristoffersen,A Learning-by-Doing Approach to Medication Management for Adolescent Diabetics.,2009,3,iJIM,1,db/journals/ijim/ijim3.html#Kristoffersen09,https://doi.org/10.3991/ijim.v3i1.701 +Issham Bin Ismail,Mobile Learning in Malaysian Universities: Are Students Ready?,2016,10,iJIM,3,db/journals/ijim/ijim10.html#IsmailAG16,http://www.online-journals.org/index.php/i-jim/article/view/5316 +Sami Vihavainen,The Implications of Mobile Notifications for User Experience of a Social Network Service.,2013,7,iJIM,2,db/journals/ijim/ijim7.html#VihavainenV13,http://online-journals.org/i-jim/article/view/2373 +Olutayo Boyinbode,An Interactive Mobile Lecturing Tool for Empowering Distance Learners.,2013,7,iJIM,4,db/journals/ijim/ijim7.html#BoyinbodeN13,http://online-journals.org/i-jim/article/view/3175 +Ilaria Canova Calori,Reflections on the Role of Technology in City-wide Collaborative Learning.,2009,3,iJIM,2,db/journals/ijim/ijim3.html#CaloriD09,https://doi.org/10.3991/ijim.v3i2.746 +Martin Ebner,Development of a Collaborative Learning Game Using External Plastic Cards as an Input Device on an iPad.,2014,8,iJIM,2,db/journals/ijim/ijim8.html#EbnerL14,http://www.online-journals.org/index.php/i-jim/article/view/3543 +Mohammed Otair,A Mobile Portal for Pharmaceutical Services.,2013,7,iJIM,1,db/journals/ijim/ijim7.html#OtairAS13,http://online-journals.org/i-jim/article/view/2352 +Samir Abou El-Seoud,"Wireless ""Questions-Bank"" System to Enhance M-Learning in School Education.",2010,4,iJIM,1,db/journals/ijim/ijim4.html#El-SeoudEA10,https://doi.org/10.3991/ijim.v4i1.1129 +Daniel Wessel,Potentials and Challenges of Mobile Media in Museums.,2007,1,iJIM,1,db/journals/ijim/ijim1.html#WesselM07,http://online-journals.org/i-jim/article/view/165 +Frank Sokolic,A Cost Effective Method for Determining the Position of Mine Haul Road Defects from the Road Edge.,2010,4,iJIM,1,db/journals/ijim/ijim4.html#SokolicRD10,https://doi.org/10.3991/ijim.v4i1.1067 +Ramesh Mahadev kagalkar,Mobile Application Based Translation of Sign Language to Text Description in Kannada Language.,2018,12,iJIM,2,db/journals/ijim/ijim12.html#kagalkarG18,http://www.online-journals.org/index.php/i-jim/article/view/8071 +U. Raja,Collaborative Rural Healthcare Network: A Conceptual Model.,2011,5,iJIM,3,db/journals/ijim/ijim5.html#RajaMHH11,http://online-journals.org/i-jim/article/view/1669 +Yahya Salameh Khraisat,GPS Navigation and Tracking Device.,2011,5,iJIM,4,db/journals/ijim/ijim5.html#KhraisatAAAL11,http://online-journals.org/i-jim/article/view/1781 +Yousef Ibrahim Daradkeh,Network Proximity for Content Discovery.,2015,9,iJIM,4,db/journals/ijim/ijim9.html#DaradkehN15,http://www.online-journals.org/index.php/i-jim/article/view/4657 +Issham Bin Ismail,Development of SMS Mobile Technology for M-Learning for Distance Learners.,2009,3,iJIM,2,db/journals/ijim/ijim3.html#IsmailM09,https://doi.org/10.3991/ijim.v3i2.724 +Ossi Nykänen,Problems in Context-Aware Semantic Computing.,2014,8,iJIM,3,db/journals/ijim/ijim8.html#NykanenR14,http://www.online-journals.org/index.php/i-jim/article/view/3870 +Jane Yau,A Self-Regulated Learning Approach: A Mobile Context-aware and Adaptive Learning Schedule (mCALS) Tool.,2008,2,iJIM,3,db/journals/ijim/ijim2.html#YauJ08,http://online-journals.org/i-jim/article/view/268 +Danish Nadeem,Using Concept Mapping for Needs Analysis for a Social Support System in Learning Network.,2011,5,iJIM,1,db/journals/ijim/ijim5.html#NadeemSK11,http://online-journals.org/i-jim/article/view/1520 +Faranak Fotouhi-Ghazvini,From E-Learning to M-Learning - the use of Mixed Reality Games as a new Educational Paradigm.,2011,5,iJIM,2,db/journals/ijim/ijim5.html#Fotouhi-GhazviniEMRE11,http://online-journals.org/i-jim/article/view/1463 +Manuel Gameiro Silva,Development of a Tool to Perform Vehicle Road Tests.,2017,11,iJIM,5,db/journals/ijim/ijim11.html#SilvaGU17,http://www.online-journals.org/index.php/i-jim/article/view/7071 +Vlado Glavinic,Transformable Menu Component for Mobile Device Applications: Working with both Adaptive and Adaptable User Interfaces.,2008,2,iJIM,3,db/journals/ijim/ijim2.html#GlavinicLK08,http://online-journals.org/i-jim/article/view/285 +Theresia Devi Indriasari,A Mobile and Web Application for Mapping Disaster Volunteers' Position in Indonesia.,2017,11,iJIM,3,db/journals/ijim/ijim11.html#IndriasariAJP17,http://www.online-journals.org/index.php/i-jim/article/view/6477 +Mostafa Al-Emran,The Impact of Google Apps at Work: Higher Educational Perspective.,2016,10,iJIM,4,db/journals/ijim/ijim10.html#Al-EmranM16,http://www.online-journals.org/index.php/i-jim/article/view/6181 +Rodrigue Carlos Nana Mbinkeu,Evolving Payment Platform for Developing Countries.,2013,7,iJIM,2,db/journals/ijim/ijim7.html#Mbinkeu13,http://online-journals.org/i-jim/article/view/2462 +Abdullah Said Alkalbani,Optimal Energy Aware Routing Path (OEARP) for Wireless Sensor Networks.,2015,9,iJIM,1,db/journals/ijim/ijim9.html#AlkalbaniTM15,http://www.online-journals.org/index.php/i-jim/article/view/4203 +David Johnson,A Platform for Supporting Micro-Collaborations in a Diverse Device Environment.,2009,3,iJIM,4,db/journals/ijim/ijim3.html#Johnson09,https://doi.org/10.3991/ijim.v3i4.1039 +Samir Abou El-Seoud,Towards the Development of an M-Learning System: A New Stage to Enhance Higher Education.,2009,3,iJIM,3,db/journals/ijim/ijim3.html#El-SeoudE09,https://doi.org/10.3991/ijim.v3i3.719 +Petri Mannonen,User Interface Cultures of Mobile Knowledge Workers.,2008,2,iJIM,4,db/journals/ijim/ijim2.html#Mannonen08,http://online-journals.org/i-jim/article/view/667 +Chui Yin Wong,Applying User Interface Design Process Model for a Mobile Community Project for the Deaf.,2008,2,iJIM,4,db/journals/ijim/ijim2.html#WongKT08,http://online-journals.org/i-jim/article/view/669 +Ghassan Issa,A Framework for Building an Interactive Satellite TV Based M-Learning Environment.,2010,4,iJIM,3,db/journals/ijim/ijim4.html#IssaHA10,https://doi.org/10.3991/ijim.v4i3.1295 +Nassim Dennouni,To a Geographical Orchestration of Mobile Learning Activities.,2014,8,iJIM,2,db/journals/ijim/ijim8.html#DennouniPLS14,http://www.online-journals.org/index.php/i-jim/article/view/3627 +Issham Bin Ismail,Acceptance on Mobile Learning via SMS: A Rasch Model Analysis.,2010,4,iJIM,2,db/journals/ijim/ijim4.html#IsmailIJ10,https://doi.org/10.3991/ijim.v4i2.1144 +Andik Setyono,An Adaptive and Cost-Effective Data Transmission Framework Using MMS Technology for Client-Server Application.,2012,6,iJIM,1,db/journals/ijim/ijim6.html#SetyonoAE12,http://online-journals.org/i-jim/article/view/1760 +Mona Laroussi,Extending LIP to provide an adaptive mobile learning.,2009,3,iJIM,1,db/journals/ijim/ijim3.html#LaroussiD09,https://doi.org/10.3991/ijim.v3i1.763 +Muhammad Asif,Externalization of User Model in Mobile Services.,2014,8,iJIM,1,db/journals/ijim/ijim8.html#AsifK14,http://www.online-journals.org/index.php/i-jim/article/view/3387 +Stavros A. Nikou,An Outdoor Mobile-Based Assessment Activity: Measuring Students' Motivation and Acceptance.,2016,10,iJIM,4,db/journals/ijim/ijim10.html#NikouE16,http://www.online-journals.org/index.php/i-jim/article/view/5541 +Pedro José Sousa,NSensor - Wireless Sensor Network for Environmental Monitoring.,2017,11,iJIM,5,db/journals/ijim/ijim11.html#SousaTAR17,http://www.online-journals.org/index.php/i-jim/article/view/7067 +Teresa Magal Royo,Evaluation Methods on Usability of M-Learning Environments.,2007,1,iJIM,1,db/journals/ijim/ijim1.html#RoyoPM07,http://online-journals.org/i-jim/article/view/148 +Ashraf Hamdan Aljammal,Node Verification to Join the Cloud Environment Using Third Party Verification Server.,2017,11,iJIM,4,db/journals/ijim/ijim11.html#AljammalBAKO17,http://www.online-journals.org/index.php/i-jim/article/view/6501 +Carlos Alberto Scolari,Mobile Applications and Destination Branding in Spain.,2014,8,iJIM,2,db/journals/ijim/ijim8.html#ScolariF14,http://www.online-journals.org/index.php/i-jim/article/view/3575 +Adamu I. Abubakar,A Support Vector Machine Classification of Computational Capabilities of 3D Map on Mobile Device for Navigation Aid.,2016,10,iJIM,3,db/journals/ijim/ijim10.html#AbubakarMMACWAH16,http://www.online-journals.org/index.php/i-jim/article/view/5056 +Najima Daoudi,An Adaptation of E-learning Standards to M-learning.,2008,2,iJIM,3,db/journals/ijim/ijim2.html#DaoudiA08,http://online-journals.org/i-jim/article/view/286 +Pieter Leonard Kubben,A collaborative webbased framework with optimized mobile synchronisation: Upgrading to Medicine 2.0.,2008,2,iJIM,3,db/journals/ijim/ijim2.html#Kubben08,http://online-journals.org/i-jim/article/view/287 +Leena Ahmad Alfarani,Influences on the Adoption of Mobile Learning in Saudi Women Teachers in Higher Education.,2015,9,iJIM,2,db/journals/ijim/ijim9.html#Alfarani15,http://www.online-journals.org/index.php/i-jim/article/view/4411 +Martin Ebner,Near Field Communication - Which Potentials Does NFC Bring for Teaching and Learning Materials?,2013,7,iJIM,4,db/journals/ijim/ijim7.html#EbnerM13,http://online-journals.org/i-jim/article/view/3019 +Ade Hikmat,Smartphone Use and Multitasking Behaviour in a Teacher Education Program (TEP).,2018,12,iJIM,2,db/journals/ijim/ijim12.html#HikmatM18,http://www.online-journals.org/index.php/i-jim/article/view/7345 +Hend S. Al-Khalifa,On the Development of a Web-Based M-Learning System for Dual Screen Handheld Game Consoles.,2011,5,iJIM,2,db/journals/ijim/ijim5.html#Al-Khalifa11,http://online-journals.org/i-jim/article/view/1530 +Wanmo Koo,Usage of Smartphone Applications: A Descriptive Study of Top 100 U.S. Retailers.,2016,10,iJIM,3,db/journals/ijim/ijim10.html#Koo16,http://www.online-journals.org/index.php/i-jim/article/view/5827 +Dewa Gede Hendra Divayana,An Evaluation of Instructional Process of Expert System Course Program by Using Mobile Technology-based CSE-UCLA Model.,2017,11,iJIM,6,db/journals/ijim/ijim11.html#DivayanaSPDASS17,http://www.online-journals.org/index.php/i-jim/article/view/6697 +Mabel Vázquez-Briseno,mHealth Platform and Architectures to Provide Nutritional Guidance to Children.,2013,7,iJIM,4,db/journals/ijim/ijim7.html#Vazquez-BrisenoAGN13,http://online-journals.org/i-jim/article/view/3083 +Sandhya Kattayat,Mobile Learning Apps in Instruction And Students Achievement.,2017,11,iJIM,1,db/journals/ijim/ijim11.html#KattayatJV17,http://www.online-journals.org/index.php/i-jim/article/view/6420 +Jafar Asgari Arani,Medical English M-Learning: Positioning a New Paradigm in E-Education.,2012,6,iJIM,1,db/journals/ijim/ijim6.html#Arani12,http://online-journals.org/i-jim/article/view/1859 +Enrique Canessa,A Mobile Science Index for Development.,2012,6,iJIM,1,db/journals/ijim/ijim6.html#CanessaZ12,http://online-journals.org/i-jim/article/view/1751 +Zahaira Fabiola González Romo,Storytelling and Social Networking as Tools for Digital and Mobile Marketing of Luxury Fashion Brands.,2017,11,iJIM,6,db/journals/ijim/ijim11.html#RomoMR17,http://www.online-journals.org/index.php/i-jim/article/view/7511 +Ahmed Al-Hunaiyyan,A New Mobile Learning Model in the Context of the Smart Classrooms Environment: A Holistic Approach.,2017,11,iJIM,3,db/journals/ijim/ijim11.html#Al-HunaiyyanAA17,http://www.online-journals.org/index.php/i-jim/article/view/6186 +,"Special Issue ""Role of MOOCs in Engineering Education"".",2014,8,iJIM,2,db/journals/ijim/ijim8.html#X14b,http://www.online-journals.org/index.php/i-jim/article/view/3747/3070 +Taghareed Abdul-Hameed,A Study of WLAN Campus in an Educational Establishment.,2009,3,iJIM,4,db/journals/ijim/ijim3.html#Abdul-HameedHS09,https://doi.org/10.3991/ijim.v3i4.866 +Mohssen Mohammed Alabbadi,MobiQiyas: A Mobile Learning Standardized Test Preparation for Saudi Arabian Students.,2010,4,iJIM,4,db/journals/ijim/ijim4.html#Alabbadi10,http://online-journals.org/i-jim/article/view/1446 +Sahar A. Idwan,Developing a Mobile Application via Bluetooth Wireless Technology for Enhancing Communication.,2009,3,iJIM,3,db/journals/ijim/ijim3.html#Idwan09,https://doi.org/10.3991/ijim.v3i3.830 +Basma Badawi Hathout,A Modified Cloud-Based Cryptographic Agent for Cloud Data Integrity.,2017,11,iJIM,2,db/journals/ijim/ijim11.html#HathoutGI17,http://www.online-journals.org/index.php/i-jim/article/view/6553 +Risald Risald,Mobile Application Design Emergency Medical Call for the Deaf using UCD Method.,2018,12,iJIM,3,db/journals/ijim/ijim12.html#RisaldSS18,http://www.online-journals.org/index.php/i-jim/article/view/8754 +Aznarahayu Ramli,Mobile Learning Via SMS Among Distance Learners: Does Learning Transfer Occur?.,2010,4,iJIM,3,db/journals/ijim/ijim4.html#RamliII10,https://doi.org/10.3991/ijim.v4i3.1180 +Jenny A. Vlachou,Mobile Technology for Students and Adults with Autistic Spectrum Disorders (ASD).,2017,11,iJIM,1,db/journals/ijim/ijim11.html#VlachouD17,http://www.online-journals.org/index.php/i-jim/article/view/5922 +Lukman Ibraheem Diso,Mobile Service Providers and M-learning in Nigeria: Mobility in a Contracting Space.,2008,2,iJIM,1,db/journals/ijim/ijim2.html#Diso08,http://online-journals.org/i-jim/article/view/176 +Samir Abou El-Seoud,Integrated Education Management System via Cloud Computing.,2017,11,iJIM,2,db/journals/ijim/ijim11.html#El-SeoudAS17,http://www.online-journals.org/index.php/i-jim/article/view/6560 +Kwang B. Lee,Developing Mobile Collaborative Learning Applications for Mobile Users.,2011,5,iJIM,4,db/journals/ijim/ijim5.html#Lee11,http://online-journals.org/i-jim/article/view/1823 +Maha Alqahtani,Mobile Application Development for Quran Verse Recognition and Interpretations.,2015,9,iJIM,1,db/journals/ijim/ijim9.html#AlqahtaniF15,http://www.online-journals.org/index.php/i-jim/article/view/4171 +Elisabeth Platzer,Learning Mobile App Design from User Review Analysis.,2011,5,iJIM,3,db/journals/ijim/ijim5.html#PlatzerP11,http://online-journals.org/i-jim/article/view/1673 +Mohamed Soliman,Investigating RFID Enabled Devices in Smart Electronic Learning Environments.,2010,4,iJIM,1,db/journals/ijim/ijim4.html#SolimanG10,https://doi.org/10.3991/ijim.v4i1.1139 +Hans L. Cycon,Let's Meet at the Mobile - Learning Dialogs with a Video Conferencing Software for Mobile Devices.,2009,3,iJIM,3,db/journals/ijim/ijim3.html#CyconSHWP09,https://doi.org/10.3991/ijim.v3i3.773 +Shabnam Shaheen Sifat,Virtual ATM: A Low Cost Secured Alternative to Conventional Mobile Banking.,2015,9,iJIM,2,db/journals/ijim/ijim9.html#SifatS15,http://www.online-journals.org/index.php/i-jim/article/view/4314 +Mohammad Ismail,A Short Review on the Trend of Mobile Marketing Studies.,2011,5,iJIM,3,db/journals/ijim/ijim5.html#IsmailR11,http://online-journals.org/i-jim/article/view/1581 +Steven Lopes Abrantes,Laptops vs. Desktops in a Google Groups Environment: A Study on Collaborative Learning.,2011,5,iJIM,1,db/journals/ijim/ijim5.html#AbrantesG11,http://online-journals.org/i-jim/article/view/1447 +Ahmed Al-Hunaiyyan,Instructors Age and Gender Differences in the Acceptance of Mobile Learning.,2017,11,iJIM,4,db/journals/ijim/ijim11.html#Al-HunaiyyanAA17a,http://www.online-journals.org/index.php/i-jim/article/view/6185 +Athanasios Drigas,Mobile Learning For Preschool Education.,2016,10,iJIM,4,db/journals/ijim/ijim10.html#DrigasKE16,http://www.online-journals.org/index.php/i-jim/article/view/6021 +Edward Jaser,Information and Mobile Technologies for Promoting Maternal-Child Health Care Status in Rural Areas of Jordan.,2013,7,iJIM,3,db/journals/ijim/ijim7.html#Jaser13,http://online-journals.org/i-jim/article/view/2540 +Yousef Ibrahim Daradkeh,Context-Aware Browsing for Hyper-Local News Data (CABHLND).,2012,6,iJIM,3,db/journals/ijim/ijim6.html#DaradkehNS12,http://online-journals.org/i-jim/article/view/2053 +Jihene Malek,A Context-Aware Approach for Modeling Bijective Adaptations between Context and Activity in a Mobile and Collaborative learning.,2008,2,iJIM,1,db/journals/ijim/ijim2.html#MalekLDG08,http://online-journals.org/i-jim/article/view/162 +Efthymios Alepis,Mobile Education: Towards Affective Bi-modal Interaction for Adaptivity.,2009,3,iJIM,2,db/journals/ijim/ijim3.html#AlepisVK09,https://doi.org/10.3991/ijim.v3i2.774 +Amaya Andri Damaini,Fraud Crime Mitigation of Mobile Application Users for Online Transportation.,2018,12,iJIM,3,db/journals/ijim/ijim12.html#DamainiNS18,http://www.online-journals.org/index.php/i-jim/article/view/8070 +Moumita Majumder,Usability Study of Personalized Learning in Mobile Learning Environment.,2010,4,iJIM,3,db/journals/ijim/ijim4.html#MajumderB10,https://doi.org/10.3991/ijim.v4i3.1305 +Ridha Ennetta,Developing a Remote Laboratory for Heat Transfer Studies.,2015,9,iJIM,2,db/journals/ijim/ijim9.html#EnnettaN15,http://www.online-journals.org/index.php/i-jim/article/view/4368 +Mohammed M. Alani,Android Users Privacy Awareness Survey.,2017,11,iJIM,3,db/journals/ijim/ijim11.html#Alani17,http://www.online-journals.org/index.php/i-jim/article/view/6605 +Ahmed Naddami,Online Laboratory in Digital Electronics Using NI ELVIS II+.,2015,9,iJIM,2,db/journals/ijim/ijim9.html#NaddamiFGM15,http://www.online-journals.org/index.php/i-jim/article/view/4385 +Radojka Krneta,Sharing Online Experiments - An Excellent Opportunity for Networking of Higher Education Institutions.,2017,11,iJIM,5,db/journals/ijim/ijim11.html#Krneta17,http://www.online-journals.org/index.php/i-jim/article/view/7068 +Noriko Uosaki,Guidelines on Implementing Successful Seamless Learning Environments: a Practitioners' Perspective.,2013,7,iJIM,2,db/journals/ijim/ijim7.html#UosakiOLHM13,http://online-journals.org/i-jim/article/view/2467 +Wajeeh M. Daher,The Influence of the Characteristics of Mathematical Outdoor Activities in Mobile Environments on Students' Emotions.,2012,6,iJIM,2,db/journals/ijim/ijim6.html#Daher12,http://online-journals.org/i-jim/article/view/1927 +Ageliki Tsioliaridou,Fast and Fair Handling of Multimedia CAPTCHA Flows.,2015,9,iJIM,4,db/journals/ijim/ijim9.html#TsioliaridouZL15,http://www.online-journals.org/index.php/i-jim/article/view/4644 +Munir Shuib,Designing an Intelligent Mobile Learning Tool for Grammar Learning (i-MoL).,2015,9,iJIM,1,db/journals/ijim/ijim9.html#ShuibAAG15,http://www.online-journals.org/index.php/i-jim/article/view/4238 +Hend Al Tair,Pro-active Multi-Dimensional Recommender System using Multi-Agents.,2012,6,iJIM,3,db/journals/ijim/ijim6.html#TairZAL12,http://online-journals.org/i-jim/article/view/2012 +Vanja Miskovic,Pervasive Personal Healthcare Service Designed as Mobile Social Network.,2016,10,iJIM,4,db/journals/ijim/ijim10.html#MiskovicB16,http://www.online-journals.org/index.php/i-jim/article/view/5913 +Alaa Azmi Allahham,Multipath Routing Protocol Based On Cross-Layer Approach for MANET.,2017,11,iJIM,1,db/journals/ijim/ijim11.html#AllahhamMK17,http://www.online-journals.org/index.php/i-jim/article/view/6175 +Nik nadian nisa Nik nazli,"A Prototype Mobile Application for Informing Disaster Complaint - ""Informer on Site"".",2016,10,iJIM,1,db/journals/ijim/ijim10.html#nazliSN16,http://www.online-journals.org/index.php/i-jim/article/view/4737 +Mohammad Ahmad Al-Khateeb,The Effect of Teaching Mathematical Problems Solving Through Using Mobile Learning on the Seventh Grade Students' Ability to Solve them in Jordan.,2018,12,iJIM,3,db/journals/ijim/ijim12.html#Al-Khateeb18,http://www.online-journals.org/index.php/i-jim/article/view/8713 +Andik Setyono,An Adaptive Multimedia Messaging Service Framework for Mobile Telemedicine System.,2015,9,iJIM,4,db/journals/ijim/ijim9.html#Setyono15,http://www.online-journals.org/index.php/i-jim/article/view/4627 +Abdullah Y. Al-Zoubi,IMCL2008 Guest Editorial.,2008,2,iJIM,3,db/journals/ijim/ijim2.html#Al-Zoubi08a,http://online-journals.org/i-jim/article/view/555 +Bader Methqal Al Fawwaz,Effect of Cloud Based Educational Applications in E-learning: Evidence from Jordan.,2017,11,iJIM,4,db/journals/ijim/ijim11.html#Fawwaz17,http://www.online-journals.org/index.php/i-jim/article/view/6378 +Manuel Carlos Gameiro da Silva,A distance-learning Course on Indoor Environmental Comfort in Buildings.,2017,11,iJIM,5,db/journals/ijim/ijim11.html#SilvaPCNMMBP17,http://www.online-journals.org/index.php/i-jim/article/view/7075 +Michael William Pugliese,Mobile Tablet-Based Stroke Rehabilitation: Using mHealth Technology to Improve Access to Early Stroke Rehabilitation.,2017,11,iJIM,1,db/journals/ijim/ijim11.html#PuglieseWGAMSZC17,http://www.online-journals.org/index.php/i-jim/article/view/6234 +Sharief Nasr Abdel-Razeq,Study of QPSK Modulator and Demodulator in Wireless Communication System Using MATLAB.,2013,7,iJIM,2,db/journals/ijim/ijim7.html#Abdel-RazeqAA13,http://online-journals.org/i-jim/article/view/2239 +Mohd Amerul Akmal Mohd Yunos,Collaborative Learning in Authentic Environment Apps to Promote Preschool Basic Scientific Process Skills.,2017,11,iJIM,3,db/journals/ijim/ijim11.html#YunosASMS17,http://www.online-journals.org/index.php/i-jim/article/view/5774 +Shamsul Arrieya Ariffin,A Preliminary Investigation of Malaysian Student's Daily Use of Mobile Devices as Potential Tools for STEM in a Local University Context.,2018,12,iJIM,2,db/journals/ijim/ijim12.html#AriffinSM18,http://www.online-journals.org/index.php/i-jim/article/view/8015 +Mohammed Amin Almaiah,Investigating Students' Perceptions on Mobile Learning Services.,2014,8,iJIM,4,db/journals/ijim/ijim8.html#AlmaiahJ14,http://www.online-journals.org/index.php/i-jim/article/view/3965 +Amol Dnyaneshwar Potgantwar,A Standalone RFID and NFC Based Healthcare.,2013,7,iJIM,2,db/journals/ijim/ijim7.html#Potgantwar13,http://online-journals.org/i-jim/article/view/2314 +Agathi Stathopoulou,Mobile Assessment Procedures for Mental Health and Literacy Skills in Education.,2018,12,iJIM,3,db/journals/ijim/ijim12.html#StathopoulouKKD18,http://www.online-journals.org/index.php/i-jim/article/view/8038 +Ahmad Sanmorino,The Design of Notification System on Android Smartphone for Academic Announcement.,2018,12,iJIM,3,db/journals/ijim/ijim12.html#SanmorinoF18,http://www.online-journals.org/index.php/i-jim/article/view/8494 +Zahaira Fabiola González Romo,Branded Apps in Spain as a Means of Communicating Trends in Fashion.,2016,10,iJIM,2,db/journals/ijim/ijim10.html#RomoEM16,http://www.online-journals.org/index.php/i-jim/article/view/5558 +Sanches Lam,Uses of Internet and Mobile Technology in Health Systems for the Elderly: A Case Study of Hong Kong.,2010,4,iJIM,2,db/journals/ijim/ijim4.html#LamC10,https://doi.org/10.3991/ijim.v4i2.1175 +Geraldine Jones,Time to Engage? Texting to Support and Enhance First Year Undergraduate Learning.,2009,3,iJIM,2,db/journals/ijim/ijim3.html#JonesE09,https://doi.org/10.3991/ijim.v3i2.744 +Mazyar Seraj,Lecturers' and Students' Perception on Learning Dijkstra's Shortest Path Algorithm Through Mobile Devices.,2014,8,iJIM,3,db/journals/ijim/ijim8.html#SerajW14,http://www.online-journals.org/index.php/i-jim/article/view/3745 +Iulia Marneanu,Evaluation of Augmented Reality Frameworks for Android Development.,2014,8,iJIM,4,db/journals/ijim/ijim8.html#MarneanuER14,http://www.online-journals.org/index.php/i-jim/article/view/3974 +Françoise Petersen,Personalization and User Profile Management.,2008,2,iJIM,4,db/journals/ijim/ijim2.html#PetersenBP08,http://online-journals.org/i-jim/article/view/666 +Christos Kouroupetroglou,Exploring Accessibility Scenarios for 2020 in Relation with Future ICT Trends on Assistive Technology and Accessibility.,2012,6,iJIM,1,db/journals/ijim/ijim6.html#KouroupetroglouTKI12,http://online-journals.org/i-jim/article/view/1790 +Laurel Evelyn Dyson,The Role of Podcasts in Students' Learning.,2008,2,iJIM,3,db/journals/ijim/ijim2.html#Dyson08,http://online-journals.org/i-jim/article/view/526 +Muhannad Anwar Al-Shboul,Building an e-Commerce Infrastructure in Jordan: Challenges and Requirements.,2010,4,iJIM,4,db/journals/ijim/ijim4.html#Al-ShboulA10,http://online-journals.org/i-jim/article/view/1425 +Nevena Mileva,The Effectiveness of Mobile Learning in the Form of Performance Support System in Higher Education.,2011,5,iJIM,4,db/journals/ijim/ijim5.html#Mileva11,http://online-journals.org/i-jim/article/view/1692 +Michael E. Auer,Implementation of a Mobile Accessible Remote Lab.,2008,2,iJIM,3,db/journals/ijim/ijim2.html#AuerZA08,http://online-journals.org/i-jim/article/view/533 +Solomon Sunday Oyelere,M-Learning: A New Paradigm of Learning ICT in Nigeria.,2016,10,iJIM,1,db/journals/ijim/ijim10.html#OyelereSS16,http://www.online-journals.org/index.php/i-jim/article/view/4872 +Nahla Aljojo,The Design and Implementation of a Mathematics Game-Base Learning Application for Primary Students.,2018,12,iJIM,3,db/journals/ijim/ijim12.html#Aljojo18,http://www.online-journals.org/index.php/i-jim/article/view/8739 +Wafa' Alsharafat,Impact of Crossover Probability on Symmetric Travel Salesman Problem Efficiency.,2015,9,iJIM,1,db/journals/ijim/ijim9.html#AlsharafatA15,http://www.online-journals.org/index.php/i-jim/article/view/4196 +R. Warnecke,Aperçu sur quelques-uns des principaux développements effectués en grande-bretagne pendant la guerre dans le domaine des tubes électroniques pour ultra-haute fréquence.,1946,1,Annales des Télécommunications,10,db/journals/adt/adt1.html#Warnecke46,https://doi.org/10.1007/BF03013845 +Lucien Guénot,Projections géographiques adaptées a la radiogoniométrie a grande distance et a la navigation orthodromique.,1946,1,Annales des Télécommunications,11,db/journals/adt/adt1.html#Guenot46,https://doi.org/10.1007/BF03019249 +A. Chovet,L'exploitation interurbaine semi-automatique et automatique.,1946,1,Annales des Télécommunications,10,db/journals/adt/adt1.html#Chovet46,https://doi.org/10.1007/BF03013844 +Pierre Pellé,La distorsion télégraphique et sa mesure.,1946,1,Annales des Télécommunications,12,db/journals/adt/adt1.html#Pelle46,https://doi.org/10.1007/BF03016681 +André Blanc-Lapierre,Contribution a l'étude des amplificateurs a ondes progressives.,1946,1,Annales des Télécommunications,12,db/journals/adt/adt1.html#Blanc-LapierreL46,https://doi.org/10.1007/BF03016682 +Fernand Carbenay,L'enregistrement statistique des atmosphériques et l'enregistrement du champ des émetteurs radioélectriques.,1946,1,Annales des Télécommunications,7,db/journals/adt/adt1.html#Carbenay46,https://doi.org/10.1007/BF03012050 +Julien Loeb,Le nouvel étalon primaire de tensions en haute fréquence du laboratoire national de radioélectricité.,1946,1,Annales des Télécommunications,10,db/journals/adt/adt1.html#LoebP46a,https://doi.org/10.1007/BF03013846 +André Haubert,La propagation des ondes radioélectriques et les prédictions ionosphériques.,1946,1,Annales des Télécommunications,11,db/journals/adt/adt1.html#Haubert46a,https://doi.org/10.1007/BF03019248 +J. E. Besseyre,La commutation automatique des téléimprimeurs arythmiques dans le service des bureaux publics et des abonnés privés.,1946,1,Annales des Télécommunications,11,db/journals/adt/adt1.html#Besseyre46,https://doi.org/10.1007/BF03019247 +Pierre M. Prache,Théorie élémentaire de la propagation des ondes électromagnétiques guidées application du système d'unités M.K.S.,1946,1,Annales des Télécommunications,7,db/journals/adt/adt1.html#Prache46,https://doi.org/10.1007/BF03012051 +Marjorie C. Luesebrink,Trip report for the seventh ACM conference on hypertext.,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#Luesebrink96,http://doi.acm.org/10.1145/231738.231745 +Michael G. Paciello,Special issue: hypermedia for people with disabilities.,1996,5,SIGWEB Newsletter,1,db/journals/sigweb/sigweb5.html#Paciello96,http://doi.acm.org/10.1145/232782.232785 +Jacco van Ossenbruggen,Style sheet languages for hypertext.,1997,6,SIGWEB Newsletter,3,db/journals/sigweb/sigweb6.html#OssenbruggenHRE97,http://doi.acm.org/10.1145/288190.288193 +Isadora Bombonati,HyperMinor: hypertext on juvenile criminal justice (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#Bombonati96,http://doi.acm.org/10.1145/231738.232576 +Deborah Barreau,Hypertext and hypermedia related issues at ASIS '94.,1995,4,SIGWEB Newsletter,1,db/journals/sigweb/sigweb4.html#Barreau95,http://doi.acm.org/10.1145/209842.209845 +Luca Bompani,Active documents in XML.,1999,8,SIGWEB Newsletter,1,db/journals/sigweb/sigweb8.html#BompaniCV99,http://doi.acm.org/10.1145/951413.951421 +Michel Crampen,Auto-adaptative multimedia composition (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#Crampen96,http://doi.acm.org/10.1145/231738.232620 +Michel Goossens,A week on electronic publishing and technology.,1994,3,SIGWEB Newsletter,2,db/journals/sigweb/sigweb3.html#Goossens94,http://doi.acm.org/10.1145/187423.187433 +David L. Hicks,The VerSE version support environment (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#HicksH96,http://doi.acm.org/10.1145/231738.232619 +Giuseppe Simonetti,A hypermedia surfing/authoring system for computer users with basic IT skills (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#Simonetti96,http://doi.acm.org/10.1145/231738.232598 +Mark Bernstein,Design note: Neighborhoods in spatial hypertext.,1997,6,SIGWEB Newsletter,1,db/journals/sigweb/sigweb6.html#Bernstein97,http://doi.acm.org/10.1145/278530.278532 +Raymond McCall,PHIDIAS: informed design through use of intelligent HyperCAD (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#McCall96,http://doi.acm.org/10.1145/231738.232601 +Robert Kendall,Time: the final frontier.,1999,8,SIGWEB Newsletter,3,db/journals/sigweb/sigweb8.html#Kendall99a,http://doi.acm.org/10.1145/951440.951442 +Sören Lenman,Merz: personal and shared information spaces on the World Wide Web (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#LenmanSC96,http://doi.acm.org/10.1145/231738.232579 +Jill Walker,Panel discussion: heresies and reformations: hypertext writing outside the lines.,1999,8,SIGWEB Newsletter,2,db/journals/sigweb/sigweb8.html#Walker99,http://doi.acm.org/10.1145/951425.951436 +Montassar BenMrad,First international conference on the World-Wide Web.,1994,3,SIGWEB Newsletter,2,db/journals/sigweb/sigweb3.html#BenMrad94,http://doi.acm.org/10.1145/187423.187429 +Dennis Fukai,A voice in the silence: a constructive hypermedia application (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#Fukai96,http://doi.acm.org/10.1145/231738.232617 +Deena Larsen,Report from messenger morphs the media the third hypertext writer's workshop.,1999,8,SIGWEB Newsletter,2,db/journals/sigweb/sigweb8.html#Larsen99,http://doi.acm.org/10.1145/951425.951431 +David Marston,Effects of a political forum on the World Wide Web (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#Marston96,http://doi.acm.org/10.1145/231738.232578 +Alistair Moffat,The role of compression in document databases.,1995,4,SIGWEB Newsletter,2,db/journals/sigweb/sigweb4.html#MoffatZWB95,http://doi.acm.org/10.1145/223301.223318 +Ferdinanda Cremascoli,Hypertexts in teaching Italian language and literature.,1997,6,SIGWEB Newsletter,1,db/journals/sigweb/sigweb6.html#Cremascoli97,http://doi.acm.org/10.1145/278530.278533 +Holger Husemann,A hypermedia-based plant-visualization-system as a means for optimizing the maintenance procedures of complex production plants (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#HusemannRK96,http://doi.acm.org/10.1145/231738.232624 +Laura M. Leventhal,East-West international conference on HCI.,1995,4,SIGWEB Newsletter,1,db/journals/sigweb/sigweb4.html#Leventhal95,http://doi.acm.org/10.1145/209842.209846 +Hermann Maurer,The Graz digital library effort.,1995,4,SIGWEB Newsletter,2,db/journals/sigweb/sigweb4.html#Maurer95,http://doi.acm.org/10.1145/223301.223308 +Bill Bly,Learn navigation: doing without the narrator in artifactual fiction.,2000,9,SIGWEB Newsletter,1,db/journals/sigweb/sigweb9.html#Bly00,http://doi.acm.org/10.1145/500691.500701 +Tomás Isakowitz,RM-CASE: a computer support for designing structured hypermedia (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#IsakowitzMDG96,http://doi.acm.org/10.1145/231738.232599 +Robert B. Allen,Strategies for enhancing user access and understanding of digital library structure and content.,1995,4,SIGWEB Newsletter,2,db/journals/sigweb/sigweb4.html#Allen95,http://doi.acm.org/10.1145/223301.223305 +Simon Knight,Hypertext wrapped up (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#KnightD96,http://doi.acm.org/10.1145/231738.232580 +Walter Vannini,Hypertext reading room.,1994,3,SIGWEB Newsletter,3,db/journals/sigweb/sigweb3.html#Vannini94a,http://doi.acm.org/10.1145/195477.195491 +Yung-Rang Cheng,Hypertext and hypermedia related issues at ASIS '95.,1995,4,SIGWEB Newsletter,3,db/journals/sigweb/sigweb4.html#Cheng95,http://doi.acm.org/10.1145/219608.219616 +Dion Goh,Building personal digital libraries from network sources.,1995,4,SIGWEB Newsletter,2,db/journals/sigweb/sigweb4.html#GohK95,http://doi.acm.org/10.1145/223301.223316 +Walter Vannini,Notes from the beach: #5: cool suckers.,1999,8,SIGWEB Newsletter,1,db/journals/sigweb/sigweb8.html#Vannini99,http://doi.acm.org/10.1145/951413.951414 +Rosemary Michelle Simpson,Memex and beyond.,1996,5,SIGWEB Newsletter,3,db/journals/sigweb/sigweb5.html#Simpson96,http://doi.acm.org/10.1145/264838.264840 +Debashish Niyogi,Taxila: a digital library of research in document analysis and recognition.,1995,4,SIGWEB Newsletter,2,db/journals/sigweb/sigweb4.html#NiyogiS95,http://doi.acm.org/10.1145/223301.223303 +Michael Dockter,aqui: dynamic links on the Web (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#DockterF96,http://doi.acm.org/10.1145/231738.232606 +Stuart Goose,Layering an open hypermedia system above a distributed communication architecture (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#GooseD96,http://doi.acm.org/10.1145/231738.232593 +Peter J. Wasilko,Trip reports: CHI'99 and the university of maryland human-computer interaction lab's 16th annual symposium and open house.,1999,8,SIGWEB Newsletter,3,db/journals/sigweb/sigweb8.html#Wasilko99,http://doi.acm.org/10.1145/951440.951448 +Oscar Retterer,World Conference on Educational Multimedia and Hypermedia.,1995,4,SIGWEB Newsletter,3,db/journals/sigweb/sigweb4.html#Retterer95,http://doi.acm.org/10.1145/219608.219617 +Malcolm Raymond,Report on the usability and technological performance of the Australian top 100 Web sites.,1998,7,SIGWEB Newsletter,3,db/journals/sigweb/sigweb7.html#Raymond98,http://doi.acm.org/10.1145/951406.951410 +Alan Keahey,HyperLINK: visual navigation of the World Wide Web (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#KeaheyM96,http://doi.acm.org/10.1145/231738.232625 +Robert Kendall,Parsing the cold: McLaughlin's Notes toward absolute zero.,1998,7,SIGWEB Newsletter,3,db/journals/sigweb/sigweb7.html#Kendall98a,http://doi.acm.org/10.1145/951406.951408 +Richard Furuta,What can digital libraries teach us about hypertext?,1997,6,SIGWEB Newsletter,3,db/journals/sigweb/sigweb6.html#Furuta97,http://doi.acm.org/10.1145/288190.290158 +Gustavo Rossi,Design patterns in hypermedia: (2nd workshop on hypermedia development).,1999,8,SIGWEB Newsletter,2,db/journals/sigweb/sigweb8.html#RossiLNS99,http://doi.acm.org/10.1145/951425.951430 +David Merceron,Using collaborative knowledge to improve hypermedia access.,1997,6,SIGWEB Newsletter,2,db/journals/sigweb/sigweb6.html#Merceron97,http://doi.acm.org/10.1145/278534.278537 +Uffe Kock Wiil,Report from the 3rd workshop on open hypermedia systems.,1997,6,SIGWEB Newsletter,1,db/journals/sigweb/sigweb6.html#Wiil97,http://doi.acm.org/10.1145/278530.278531 +Gene Golovchinsky,VOIR: visualization of information retrieval (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#GolovchinskyCR96,http://doi.acm.org/10.1145/231738.232597 +Offer Drori,Using an information reduction model in hypertext virtual node as a direction for solving the data explosion problem.,1995,4,SIGWEB Newsletter,3,db/journals/sigweb/sigweb4.html#Drori95,http://doi.acm.org/10.1145/219608.219612 +Thomas A. Phelps,Multivalent digital documents in UC Berkeley's digital library project.,1995,4,SIGWEB Newsletter,2,db/journals/sigweb/sigweb4.html#PhelpsW95,http://doi.acm.org/10.1145/223301.223311 +Siegfried Reich,The need for an open hypertext protocol: (reporting on behalf of the OHSWG).,1999,8,SIGWEB Newsletter,1,db/journals/sigweb/sigweb8.html#ReichD99,http://doi.acm.org/10.1145/951413.951418 +Cliff McKnight,Project ELVYN.,1995,4,SIGWEB Newsletter,2,db/journals/sigweb/sigweb4.html#McKnight95,http://doi.acm.org/10.1145/223301.225471 +Hermann Kaindl,HIS: an information system about hypertext on hypertext.,1992,1,SIGWEB Newsletter,1,db/journals/sigweb/sigweb1.html#KaindlZ92,http://doi.acm.org/10.1145/141705.141706 +Susana Pajares Tosca,Trip report: H2PTM' 99.,1999,8,SIGWEB Newsletter,3,db/journals/sigweb/sigweb8.html#Tosca99,http://doi.acm.org/10.1145/951440.951447 +Peter J. Nürnberg,Workshop: structural computing.,1999,8,SIGWEB Newsletter,2,db/journals/sigweb/sigweb8.html#Nurnberg99,http://doi.acm.org/10.1145/951425.951432 +Carol L. Winkelmann,Serious hypertext.,1995,4,SIGWEB Newsletter,1,db/journals/sigweb/sigweb4.html#Winkelmann95,http://doi.acm.org/10.1145/209842.209848 +Serge Demeyer,The animated interface of the Erectable Hypergraphic Trainer (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#Demeyer96,http://doi.acm.org/10.1145/231738.232615 +David G. Durand,Hypertext-related standards efforts.,1997,6,SIGWEB Newsletter,2,db/journals/sigweb/sigweb6.html#Durand97,http://doi.acm.org/10.1145/278534.278535 +Niels Olof Bouvin,Hypertext'99 doctoral consortium report.,1999,8,SIGWEB Newsletter,2,db/journals/sigweb/sigweb8.html#BouvinCR99,http://doi.acm.org/10.1145/951425.951433 +Dorothy Buchanan,Zypher: browsing frameworks with an open hypermedia system (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#BuchananH96,http://doi.acm.org/10.1145/231738.232618 +Alejandra Garrido,Framework for extending object-oriented applications with hypermedia functionality (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#GarridoVZ96,http://doi.acm.org/10.1145/231738.232614 +Adam Engst,Xanadu light: a report on Ted Nelson's talk at Hypertext '93.,1994,3,SIGWEB Newsletter,1,db/journals/sigweb/sigweb3.html#Engst94,http://doi.acm.org/10.1145/181894.181896 +Andreas Myka,HyperFacs-building and using a digitized paper library.,1995,4,SIGWEB Newsletter,2,db/journals/sigweb/sigweb4.html#MykaG95,http://doi.acm.org/10.1145/223301.223304 +Jörg M. Haake,Facilitating cooperative learning in hypermedia systems.,1999,8,SIGWEB Newsletter,3,db/journals/sigweb/sigweb8.html#HaakePW99,http://doi.acm.org/10.1145/951440.951444 +Francisco V. Cipolla Ficarra,The resolution of the problem of objectivity in a method of evaluation for interactive applications.,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#Ficarra96,http://doi.acm.org/10.1145/231738.232574 +Edit Cognigni,The hypertext 'Thaw': paths along Soviet literature and culture after Stalinism.,1998,7,SIGWEB Newsletter,3,db/journals/sigweb/sigweb7.html#Cognigni98,http://doi.acm.org/10.1145/951406.951411 +Simon Buckingham Shum,Workshop report: computer-supported collaborative argumentation for learning communities.,2000,9,SIGWEB Newsletter,1,db/journals/sigweb/sigweb9.html#Shum00,http://doi.acm.org/10.1145/500691.500698 +Philip C. Murray,HyTime: a discussion with Steve Newcomb.,1993,2,SIGWEB Newsletter,1,db/journals/sigweb/sigweb2.html#Murray93,http://doi.acm.org/10.1145/152424.152425 +Edward A. Fox,Hypermedia support for a digital library in CS.,1995,4,SIGWEB Newsletter,2,db/journals/sigweb/sigweb4.html#Fox95,http://doi.acm.org/10.1145/223301.223309 +Helen Ashman,SIGWEB: the Web working group.,1999,8,SIGWEB Newsletter,1,db/journals/sigweb/sigweb8.html#Ashman99,http://doi.acm.org/10.1145/951413.951415 +Andreas Dieberger,Metaphors for web navigation (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#Dieberger96,http://doi.acm.org/10.1145/231738.232602 +Jiangling Wan,Mapping relational database management systems to hypertext (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#Wan96,http://doi.acm.org/10.1145/231738.232571 +Gregg C. Vanderheiden,Design of HTML pages to increase their accessibility to users with disabilities: strategies for today and tomorrow.,1996,5,SIGWEB Newsletter,1,db/journals/sigweb/sigweb5.html#VanderheidenC96,http://doi.acm.org/10.1145/232782.232786 +Harri Oinas-Kukkonen,Supporting software system flexibility through hypermedia functionality (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#Oinas-Kukkonen96,http://doi.acm.org/10.1145/231738.232581 +Robert J. Glushko,Silicon Graphics adopts SGML for online documentation.,1993,2,SIGWEB Newsletter,2,db/journals/sigweb/sigweb2.html#GlushkoK93,http://doi.acm.org/10.1145/164399.164404 +Mark Bernstein,Two open problems in hypertext reading and Web logs.,1999,8,SIGWEB Newsletter,1,db/journals/sigweb/sigweb8.html#Bernstein99,http://doi.acm.org/10.1145/951413.951419 +Walter Vannini,Italians at ECHT94.,1994,3,SIGWEB Newsletter,3,db/journals/sigweb/sigweb3.html#Vannini94b,http://doi.acm.org/10.1145/195477.195495 +Keith Instone,Hypermedia research and the World Wide Web workshop.,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#Instone96,http://doi.acm.org/10.1145/231738.231741 +Andreas Dieberger,Spatial user interface metaphors in hypermedia systems.,1994,3,SIGWEB Newsletter,3,db/journals/sigweb/sigweb3.html#DiebergerA94,http://doi.acm.org/10.1145/195477.195489 +Walter Vannini,Notes from the beach: #6: coming of age.,1999,8,SIGWEB Newsletter,3,db/journals/sigweb/sigweb8.html#Vannini99a,http://doi.acm.org/10.1145/951440.951441 +Helen Petrie,An interface to hypermedia systems for blind people (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#Petrie96,http://doi.acm.org/10.1145/231738.232600 +Peter J. Wasilko,Workshop and analysis: access to intellectual property and its fair use for research and teaching: copyright in the digital age.,1998,7,SIGWEB Newsletter,3,db/journals/sigweb/sigweb7.html#Wasilko98a,http://doi.acm.org/10.1145/951406.951409 +Geoff Pike,On controlling the presentation of information.,1995,4,SIGWEB Newsletter,2,db/journals/sigweb/sigweb4.html#Pike95,http://doi.acm.org/10.1145/223301.223321 +Joseph K. P. Kuan,Using texture for content-based retrieval and navigation in MAVIS (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#KuanL96,http://doi.acm.org/10.1145/231738.232591 +David F. DelGreco,The World-Wide Web: a quick tour.,1993,2,SIGWEB Newsletter,2,db/journals/sigweb/sigweb2.html#DelGreco93,http://doi.acm.org/10.1145/164399.164405 +Venkatraman Balasubramanian,HTML: poison or panacea?,1994,3,SIGWEB Newsletter,3,db/journals/sigweb/sigweb3.html#Balasubramanian94a,http://doi.acm.org/10.1145/195477.195492 +Jeff de La Beaujardière,MultiView (abstract): a WWW interface for GLOBE visualizations.,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#BeaujardiereMH96,http://doi.acm.org/10.1145/231738.232623 +Michael Bieber,What every systems developer should know about hypertext (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#Bieber96,http://doi.acm.org/10.1145/231738.232570 +Steven E. Poltrock,Hypertext '93.,1993,2,SIGWEB Newsletter,3,db/journals/sigweb/sigweb2.html#PoltrockS93,http://doi.acm.org/10.1145/182116.182117 +James Blustein,Panel: adaptive hypermedia.,1999,8,SIGWEB Newsletter,2,db/journals/sigweb/sigweb8.html#BlusteinF99,http://doi.acm.org/10.1145/951425.951434 +Helen Ashman,AusWeb95: first Australian World Wide Web Conference.,1995,4,SIGWEB Newsletter,3,db/journals/sigweb/sigweb4.html#AshmanV95,http://doi.acm.org/10.1145/219608.219615 +Montassar BenMrad,Visual querying for digital libraries using dynamic hypertext aggregates: the DH31CI prototype.,1995,4,SIGWEB Newsletter,2,db/journals/sigweb/sigweb4.html#BenMradC95,http://doi.acm.org/10.1145/223301.223317 +Nathalie Mathe,An adaptive hypertext system for reference manuals (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#MatheK96,http://doi.acm.org/10.1145/231738.232594 +Renata Pontin de Mattos Fortes,A family of link based metrics for the evaluation of Web documents.,1997,6,SIGWEB Newsletter,3,db/journals/sigweb/sigweb6.html#FortesN97,http://doi.acm.org/10.1145/288190.288196 +Licia Calvi,Beyond space (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#Calvi96,http://doi.acm.org/10.1145/231738.232569 +Fernando Lyardet,Bridging the gap between hypermedia design and implementation: a research prototype (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#Lyardet96,http://doi.acm.org/10.1145/231738.232584 +Einat Amitay,Workshop report: information doors - where information search and Hypertext link.,2000,9,SIGWEB Newsletter,1,db/journals/sigweb/sigweb9.html#Amitay00,http://doi.acm.org/10.1145/500691.500696 +Keith Instone,Too much hypertext or too little?,1994,3,SIGWEB Newsletter,3,db/journals/sigweb/sigweb3.html#Instone94,http://doi.acm.org/10.1145/195477.195483 +Anne-Marie Vercoustre,Report on the workshop on reuse of Web-based information.,1997,6,SIGWEB Newsletter,3,db/journals/sigweb/sigweb6.html#Vercoustre97,http://doi.acm.org/10.1145/288190.288191 +Leslie Carr,The link fifty years on: a personal view of hypertext linking.,1999,8,SIGWEB Newsletter,1,db/journals/sigweb/sigweb8.html#Carr99,http://doi.acm.org/10.1145/951413.951423 +Daniel Schwabe,OOHDM-Web: an environment for implementation of hypermedia applications in the WWW.,1999,8,SIGWEB Newsletter,2,db/journals/sigweb/sigweb8.html#SchwabePM99,http://doi.acm.org/10.1145/951425.951428 +Bill Bly,HT96: a newbie's view.,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#Bly96,http://doi.acm.org/10.1145/231738.231743 +David Scotts,"Timed links solve the ""stale URL"" problem.",1995,4,SIGWEB Newsletter,3,db/journals/sigweb/sigweb4.html#Scotts95,http://doi.acm.org/10.1145/219608.219610 +Michael Bieber,Hypertext and the WWW: a view from the trenches at Hypertext'96.,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#BieberS96,http://doi.acm.org/10.1145/231738.231744 +Siegfried Reich,A brief summary of OHS6 - the 6th workshop on open Hypermedia systems.,2000,9,SIGWEB Newsletter,1,db/journals/sigweb/sigweb9.html#Reich00,http://doi.acm.org/10.1145/500691.500695 +Laurence Nigay,Hypertext and hypermedia related issues at CHI '94.,1994,3,SIGWEB Newsletter,2,db/journals/sigweb/sigweb3.html#Nigay94,http://doi.acm.org/10.1145/187423.187435 +Brendon Towle,A framework for coherent hypertext fiction (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#TowleD96,http://doi.acm.org/10.1145/231738.232603 +Ajit Bapat,Integration of external applications into hypermedia systems within heterogeneous distributed environments (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#Bapat96,http://doi.acm.org/10.1145/231738.232582 +N. Gouraros,SCHEmMA: a new approach to hypermedia design (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#GourarosHS96,http://doi.acm.org/10.1145/231738.232572 +Venkatraman Balasubramanian,Trip report on the second workshop on incorporating hypertext functionality into software systems.,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#Balasubramanian96,http://doi.acm.org/10.1145/231738.231742 +Ajaz R. Rana,Evaluation of semantic hypermedia links for reading of scholarly writing (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#RanaM96,http://doi.acm.org/10.1145/231738.232583 +Nick Traenkner,Panel: writers and designers: crossing the chasm.,1999,8,SIGWEB Newsletter,2,db/journals/sigweb/sigweb8.html#Traenkner99,http://doi.acm.org/10.1145/951425.951435 +Andreas Dieberger,On magic features in (spatial) metaphors.,1995,4,SIGWEB Newsletter,3,db/journals/sigweb/sigweb4.html#Dieberger95,http://doi.acm.org/10.1145/219608.219611 +Kevin Hughes,Entering the world-wide web: a guide to cyberspace.,1994,3,SIGWEB Newsletter,1,db/journals/sigweb/sigweb3.html#Hughes94,http://doi.acm.org/10.1145/181894.181895 +Eric H. Johnson,Extending an interactive thesaurus by dragging.,1995,4,SIGWEB Newsletter,2,db/journals/sigweb/sigweb4.html#Johnson95,http://doi.acm.org/10.1145/223301.223315 +Chris Funkhouser,Net time eyebeam: stretching corporeal conduction.,1999,8,SIGWEB Newsletter,2,db/journals/sigweb/sigweb8.html#Funkhouser99,http://doi.acm.org/10.1145/951425.951427 +Mark Bernstein,Web research: the Eastgate Web Squirrel.,1996,5,SIGWEB Newsletter,1,db/journals/sigweb/sigweb5.html#Bernstein96,http://doi.acm.org/10.1145/232782.232784 +Sazilah Salam,Video storage and retrieval in Microcosm (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#Salam96,http://doi.acm.org/10.1145/231738.232596 +Walter Vannini,Web assessment: an executive summary.,1997,6,SIGWEB Newsletter,2,db/journals/sigweb/sigweb6.html#Vannini97,http://doi.acm.org/10.1145/278534.278536 +Uffe Kock Wiil,Report from the 5th workshop on open hypermedia systems.,1999,8,SIGWEB Newsletter,2,db/journals/sigweb/sigweb8.html#Wiil99,http://doi.acm.org/10.1145/951425.951429 +Rosemary Michelle Simpson,Beyond the plane: spatial hypertext in a virtual reality world.,1996,5,SIGWEB Newsletter,3,db/journals/sigweb/sigweb5.html#Simpson96a,http://doi.acm.org/10.1145/264838.264841 +Jesper Lilleso Jorgensen,HANS: an open linking engine based on Microsoft OLE (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#JorgensenN96,http://doi.acm.org/10.1145/231738.232609 +Daniel Schwabe,International Workshop on Hypermedia Design.,1995,4,SIGWEB Newsletter,3,db/journals/sigweb/sigweb4.html#Schwabe95,http://doi.acm.org/10.1145/219608.219613 +Keith Andrews,ECHT'92.,1993,2,SIGWEB Newsletter,1,db/journals/sigweb/sigweb2.html#Andrews93,http://doi.acm.org/10.1145/152424.152426 +Stephen J. Green,Building hypertext from newspaper articles using lexical chaining (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#Green96,http://doi.acm.org/10.1145/231738.232589 +Stewart N. T. Shen,Individual-user-centered facilities for improving digital library application productivities on the Internet.,1995,4,SIGWEB Newsletter,2,db/journals/sigweb/sigweb4.html#Shen95,http://doi.acm.org/10.1145/223301.223310 +Peter J. Wasilko,Trip report: the University of Maryland human-computer interaction laboratory's 17th annual symposium and open house.,2000,9,SIGWEB Newsletter,1,db/journals/sigweb/sigweb9.html#Wasilko00,http://doi.acm.org/10.1145/500691.500699 +Helen Ashman,What is hypermedia?,1994,3,SIGWEB Newsletter,2,db/journals/sigweb/sigweb3.html#Ashman94,http://doi.acm.org/10.1145/187423.187425 +Kate Ehrlich,Hypertext links in Lotus Notes and the World Wide Web.,1995,4,SIGWEB Newsletter,2,db/journals/sigweb/sigweb4.html#EhrlichLR95,http://doi.acm.org/10.1145/223301.223313 +Venkatraman Balasubramanian,A hypermedia approach to digital libraries: review of research issues.,1995,4,SIGWEB Newsletter,2,db/journals/sigweb/sigweb4.html#Balasubramanian95,http://doi.acm.org/10.1145/223301.223324 +Robert Kendall,Stalking the wild Hypertext: the electronic literature directory.,2000,9,SIGWEB Newsletter,1,db/journals/sigweb/sigweb9.html#Kendall00,http://doi.acm.org/10.1145/500691.500692 +Ian H. Beaumont,Workshop on adaptive hypertext and hypermedia.,1995,4,SIGWEB Newsletter,1,db/journals/sigweb/sigweb4.html#Beaumont95,http://doi.acm.org/10.1145/209842.209847 +Kaj Grønbæk,DHM: an open Dexter-based hypermedia service (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#GronbaekS96,http://doi.acm.org/10.1145/231738.232604 +Deena Larsen,Workshop report: 4th Hypertext writers' workshop: The messenger morphs the media.,2000,9,SIGWEB Newsletter,1,db/journals/sigweb/sigweb9.html#Larsen00,http://doi.acm.org/10.1145/500691.500697 +Elli Mylonas,HT99 trip report.,1999,8,SIGWEB Newsletter,2,db/journals/sigweb/sigweb8.html#MylonasD99,http://doi.acm.org/10.1145/951425.951437 +Stephen Perry,Developing an image viewer for content-based retrieval and navigation (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#PerryDL96,http://doi.acm.org/10.1145/231738.232595 +Florent Masseglia,Using data mining techniques on Web access logs to dynamically improve hypertext structure.,1999,8,SIGWEB Newsletter,3,db/journals/sigweb/sigweb8.html#MassegliaPT99,http://doi.acm.org/10.1145/951440.951443 +Venkatraman Balasubramanian,Long distance perspectives on hypermedia.,1994,3,SIGWEB Newsletter,3,db/journals/sigweb/sigweb3.html#Balasubramanian94,http://doi.acm.org/10.1145/195477.195480 +Walter Vannini,Notes from the beach: #4: the captain of whose side.,1998,7,SIGWEB Newsletter,3,db/journals/sigweb/sigweb7.html#Vannini98a,http://doi.acm.org/10.1145/951406.951407 +Walter Vannini,World wide hypermedia.,1994,3,SIGWEB Newsletter,3,db/journals/sigweb/sigweb3.html#Vannini94,http://doi.acm.org/10.1145/195477.195484 +Steven Weyer,Newt's Cape (abstract): an HTML environment for the Newton PDA.,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#Weyer96,http://doi.acm.org/10.1145/231738.232612 +Chet Ensign,Six factors for SGML success.,1995,4,SIGWEB Newsletter,1,db/journals/sigweb/sigweb4.html#Ensign95,http://doi.acm.org/10.1145/209842.209844 +Harri Oinas-Kukkonen,Incorporating hypertext functionality into software systems.,1994,3,SIGWEB Newsletter,3,db/journals/sigweb/sigweb3.html#Oinas-KukkonenB94,http://doi.acm.org/10.1145/195477.195487 +Jean-Louis Vuldy,Automatic hypermedia generation (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#Vuldy96,http://doi.acm.org/10.1145/231738.232573 +Fernando Das Neves,The Aleph: a cartographer for WWW (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#Neves96,http://doi.acm.org/10.1145/231738.232577 +Michael Joyce,Looking forward: Othermindedness: the emergence of network culture by Michael Joyce.,1999,8,SIGWEB Newsletter,3,db/journals/sigweb/sigweb8.html#Joyce99,http://doi.acm.org/10.1145/951440.951450 +Jörg M. Haake,Openness in shared hypermedia workspaces: the case for collaborative open hypermedia systems.,1999,8,SIGWEB Newsletter,3,db/journals/sigweb/sigweb8.html#HaakeWN99,http://doi.acm.org/10.1145/951440.951446 +Michael Bieber,An invitation to the community: SIGWEB digital library project: HyNIC.,1999,8,SIGWEB Newsletter,1,db/journals/sigweb/sigweb8.html#Bieber99,http://doi.acm.org/10.1145/951413.951416 +Michael Greenhalgh,A digital library and network for electronic teaching and learning materials for the Australian University system.,1995,4,SIGWEB Newsletter,2,db/journals/sigweb/sigweb4.html#Greenhalgh95,http://doi.acm.org/10.1145/223301.223319 +"Nitin ""Nick"" Sawhney","HyperCafe and the ""hypervideo engine"": a generalized approach for hypervideo authoring and navigation (abstract).",1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#SawhneyB96,http://doi.acm.org/10.1145/231738.232610 +Yellowlees Douglas,Playing the numbers: M.D. Coverley's Fibonacci's Daughter.,2000,9,SIGWEB Newsletter,1,db/journals/sigweb/sigweb9.html#Douglas00,http://doi.acm.org/10.1145/500691.500702 +Imanol Usandizaga,Hypermedia and education: a new approach (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#UsandizagaLPS96,http://doi.acm.org/10.1145/231738.232575 +Ernest Perez,State library online information system uses a hypertext front end.,1993,2,SIGWEB Newsletter,2,db/journals/sigweb/sigweb2.html#Perez93,http://doi.acm.org/10.1145/164399.164402 +Jim Rosenberg,Navigating nowhere/hypertext infrawhere.,1994,3,SIGWEB Newsletter,3,db/journals/sigweb/sigweb3.html#Rosenberg94,http://doi.acm.org/10.1145/195477.195479 +Eric H. Johnson,Accessing a digital library collection through multiple hypertextual information spaces (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#Johnson96,http://doi.acm.org/10.1145/231738.232613 +Keith Instone,The HCI bibliography project: a hypertext research perspective.,1993,2,SIGWEB Newsletter,3,db/journals/sigweb/sigweb2.html#Instone93,http://doi.acm.org/10.1145/182116.182118 +Steven J. DeRose,Standards update.,1995,4,SIGWEB Newsletter,1,db/journals/sigweb/sigweb4.html#DeRose95,http://doi.acm.org/10.1145/209842.209843 +Andreas Dieberger,International Conference on Spatial Information Theory.,1995,4,SIGWEB Newsletter,3,db/journals/sigweb/sigweb4.html#Dieberger95a,http://doi.acm.org/10.1145/219608.219614 +Ian G. Kennedy,How to use hypertext for courseware (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#Kennedy96,http://doi.acm.org/10.1145/231738.232611 +Chao-Min Chiu,A framework for open hypermedia systems (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#ChiuC96,http://doi.acm.org/10.1145/231738.232587 +Robert Kendall,But I know what I like.,1999,8,SIGWEB Newsletter,2,db/journals/sigweb/sigweb8.html#Kendall99,http://doi.acm.org/10.1145/951425.951426 +Steven J. DeRose,Standards.,1996,5,SIGWEB Newsletter,1,db/journals/sigweb/sigweb5.html#DeRose96,http://doi.acm.org/10.1145/232782.232783 +,Hypertext research at GMD-IPSI.,1992,1,SIGWEB Newsletter,1,db/journals/sigweb/sigweb1.html#X92,http://doi.acm.org/10.1145/141705.141707 +Mylene Melly,Using local context to support hypermedia authoring (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#Melly96,http://doi.acm.org/10.1145/231738.232592 +Yongming Tang,Hypermedia-based structured modeling (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#TangH96,http://doi.acm.org/10.1145/231738.232585 +B. David Kingery,Your local newspaper: will it just be content in a digital library?,1995,4,SIGWEB Newsletter,2,db/journals/sigweb/sigweb4.html#Kingery95,http://doi.acm.org/10.1145/223301.223322 +Gerard Hutchings,Distributed hypermedia in support of corporate memory (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#HutchingsSH96,http://doi.acm.org/10.1145/231738.232586 +Yusuke Mishina,"Extensions of World Wide Web aiming at a construction of a ""virtual personal library"".",1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#Mishina96,http://doi.acm.org/10.1145/231738.232588 +Uffe Kock Wiil,2nd workshop on open hypermedia systems.,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#Wiil96,http://doi.acm.org/10.1145/231738.231740 +G. Franco,"The ""virtual hospital"" project.",1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#FrancoGBMFB96,http://doi.acm.org/10.1145/231738.232605 +Gary Hill,Open journals project (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#HillC96,http://doi.acm.org/10.1145/231738.232607 +Hans C. Arents,IKEM: a company-wide open hypermedia system for discovering and validating metallurgical knowledge (abstract).,1996,5,SIGWEB Newsletter,2,db/journals/sigweb/sigweb5.html#Arents96,http://doi.acm.org/10.1145/231738.232590 +San Murugesan,Web engineering.,1999,8,SIGWEB Newsletter,3,db/journals/sigweb/sigweb8.html#Murugesan99,http://doi.acm.org/10.1145/951440.951445 +John M. Carroll,Creating a Design Science of Human-Computer Interaction.,1993,5,Interacting with Computers,1,db/journals/iwc/iwc5.html#Carroll93,https://doi.org/10.1016/0953-5438(93)90022-L +Hans-Rüdiger Pfister,Affective responses to system messages in human-computer-interaction: Effects of modality and message type.,2011,23,Interacting with Computers,4,db/journals/iwc/iwc23.html#PfisterWP11,https://doi.org/10.1016/j.intcom.2011.05.006 +Ron Henderson,An Examination of Four User-Based Software Evaluation Methods.,1995,7,Interacting with Computers,4,db/journals/iwc/iwc7.html#HendersonPSV95,https://doi.org/10.1016/0953-5438(96)87701-0 +Phil Turner,Affordance as context.,2005,17,Interacting with Computers,6,db/journals/iwc/iwc17.html#Turner05,https://doi.org/10.1016/j.intcom.2005.04.003 +Val Mitchell,Situating Digital Interventions: Mixed Methods for HCI Research in the Home.,2015,27,Interacting with Computers,1,db/journals/iwc/iwc27.html#MitchellMPEWB15,https://doi.org/10.1093/iwc/iwu034 +Joong-Jae Lee,I-Typed DMML: A Novel DSL for Direct Manipulation Interaction with Virtual Objects.,2018,30,Interacting with Computers,4,db/journals/iwc/iwc30.html#LeeP18,https://doi.org/10.1093/iwc/iwy014 +Miguel A. Velasco,A Novel Head Cursor Facilitation Technique for Cerebral Palsy: Functional and Clinical Implications.,2017,29,Interacting with Computers,5,db/journals/iwc/iwc29.html#VelascoCRCR17,https://doi.org/10.1093/iwc/iwx009 +Efi A. Nisiforou,Field Dependence-Independence and Eye Movement Patterns: Investigating Users' Differences Through an Eye Tracking Study.,2016,28,Interacting with Computers,4,db/journals/iwc/iwc28.html#NisiforouL16,https://doi.org/10.1093/iwc/iwv015 +David Coyle,Computers in talk-based mental health interventions.,2007,19,Interacting with Computers,4,db/journals/iwc/iwc19.html#CoyleDMS07,https://doi.org/10.1016/j.intcom.2007.02.001 +Javier A. Bargas-Avila,Enhancing online forms: Use format specifications for fields with format restrictions to help respondents.,2011,23,Interacting with Computers,1,db/journals/iwc/iwc23.html#Bargas-AvilaOPUO11,https://doi.org/10.1016/j.intcom.2010.08.001 +Iyad Abu Doush,ISAB: Integrated Indoor Navigation System for the Blind.,2017,29,Interacting with Computers,2,db/journals/iwc/iwc29.html#DoushAAAH17,https://doi.org/10.1093/iwc/iww016 +John M. Carroll,Conceptualizing a possible discipline of human-computer interaction.,2010,22,Interacting with Computers,1,db/journals/iwc/iwc22.html#Carroll10,https://doi.org/10.1016/j.intcom.2009.11.008 +Marios Belk,A Personalized User Authentication Approach Based on Individual Differences in Information Processing.,2015,27,Interacting with Computers,6,db/journals/iwc/iwc27.html#BelkFGS15,https://doi.org/10.1093/iwc/iwu033 +Zhiying Zhou,An experimental study on the role of 3D sound in augmented reality environment.,2004,16,Interacting with Computers,6,db/journals/iwc/iwc16.html#ZhouCYQ04a,https://doi.org/10.1016/j.intcom.2004.06.016 +Sandra Jurdi,Children's Acceptance of a Collaborative Problem Solving Game Based on Physical Versus Digital Learning Spaces.,2018,30,Interacting with Computers,3,db/journals/iwc/iwc30.html#JurdiGNJ18,https://doi.org/10.1093/iwc/iwy006 +Jorge Gonçalves,Citizen Motivation on the Go: The Role of Psychological Empowerment.,2014,26,Interacting with Computers,3,db/journals/iwc/iwc26.html#GoncalvesKKBCTZ14,https://doi.org/10.1093/iwc/iwt035 +Carl Martin Allwood,User-Competence and Other Usability Aspects when Introducing a Patient Administrative System: A Case Study.,1993,5,Interacting with Computers,2,db/journals/iwc/iwc5.html#AllwoodK93,https://doi.org/10.1016/0953-5438(93)90017-N +Dana-Nicoleta Lascu,Website Interaction Satisfaction: A Reassessment.,2013,25,Interacting with Computers,4,db/journals/iwc/iwc25.html#LascuC13,https://doi.org/10.1093/iwc/iwt010 +Lennart E. Nacke,More than a feeling: Measurement of sonic user experience and psychophysiology in a first-person shooter game.,2010,22,Interacting with Computers,5,db/journals/iwc/iwc22.html#NackeGL10,https://doi.org/10.1016/j.intcom.2010.04.005 +Zakaria Al-Qudah,Utilizing Mobile Devices' Tactile Feedback for Presenting Braille Characters: An Optimized Approach for Fast Reading and Long Battery Life.,2014,26,Interacting with Computers,1,db/journals/iwc/iwc26.html#Al-QudahDAMA14,https://doi.org/10.1093/iwc/iwt017 +Jesper Kjeldskov,Exploring 'Canned Communication' for coordinating distributed mobile work activities.,2006,18,Interacting with Computers,6,db/journals/iwc/iwc18.html#KjeldskovS06,https://doi.org/10.1016/j.intcom.2006.03.008 +Yang Cai,Speaker Verification for Multi-Task Interactions.,2014,26,Interacting with Computers,2,db/journals/iwc/iwc26.html#CaiLGC14,https://doi.org/10.1093/iwc/iwt044 +Francesca Carmagnola,Advanced Social Recommendations with SoNARS++.,2014,26,Interacting with Computers,1,db/journals/iwc/iwc26.html#CarmagnolaVG14,https://doi.org/10.1093/iwc/iwt028 +Jacob P. Somervell,Better discount evaluation: illustrating how critical parameters support heuristic creation.,2005,17,Interacting with Computers,5,db/journals/iwc/iwc17.html#SomervellM05,https://doi.org/10.1016/j.intcom.2005.03.007 +Gavin J. Doherty,Design and evaluation guidelines for mental health technologies.,2010,22,Interacting with Computers,4,db/journals/iwc/iwc22.html#DohertyCM10,https://doi.org/10.1016/j.intcom.2010.02.006 +Stéphanie Buisine,The effects of speech-gesture cooperation in animated agents' behavior in multimedia presentations.,2007,19,Interacting with Computers,4,db/journals/iwc/iwc19.html#BuisineM07,https://doi.org/10.1016/j.intcom.2007.04.002 +Tony Griffiths,Teallach: a model-based user interface development environment for object databases.,2001,14,Interacting with Computers,1,db/journals/iwc/iwc14.html#GriffithsBPMKGCGS01,https://doi.org/10.1016/S0953-5438(01)00042-X +David Squires,Usability and Educational Software Design: Special Issue of Interacting with Computers.,1999,11,Interacting with Computers,5,db/journals/iwc/iwc11.html#Squires99,https://doi.org/10.1016/S0953-5438(98)00062-9 +Salu Ylirisku,Design Research as Conceptual Designing: The Manhattan Design Concept.,2016,28,Interacting with Computers,5,db/journals/iwc/iwc28.html#YliriskuJSH16,https://doi.org/10.1093/iwc/iwv040 +Jean A. Pratt,Looking at human-computer interface design: Effects of ethnicity in computer agents.,2007,19,Interacting with Computers,4,db/journals/iwc/iwc19.html#PrattHUP07,https://doi.org/10.1016/j.intcom.2007.02.003 +Vicente Nacher,Evaluating Multitouch Semiotics to Empower Prekindergarten Instruction with Interactive Surfaces.,2017,29,Interacting with Computers,2,db/journals/iwc/iwc29.html#NacherJC17,https://doi.org/10.1093/iwc/iww007 +Andrew S. Patrick,Field Testing a Natural-Language Information System: Usage Characteristics and Users' Comments.,1992,4,Interacting with Computers,2,db/journals/iwc/iwc4.html#PatrickW92,https://doi.org/10.1016/0953-5438(92)90006-2 +Yeon Kyoung Joo,When You Exercise Your Avatar in a Virtual Game: The Role of Avatars' Body Shape and Behavior in Users' Health Behavior.,2017,29,Interacting with Computers,3,db/journals/iwc/iwc29.html#JooK17,https://doi.org/10.1093/iwc/iwx003 +Keith Davids,Shopfloor Attitudes Towards Advanced Manufacturing Technology: The Changing Focus of Industrial Conflict?,1992,4,Interacting with Computers,2,db/journals/iwc/iwc4.html#DavidsM92,https://doi.org/10.1016/0953-5438(92)90004-Y +Ann Light,HCI as heterodoxy: Technologies of identity and the queering of interaction with computers.,2011,23,Interacting with Computers,5,db/journals/iwc/iwc23.html#Light11,https://doi.org/10.1016/j.intcom.2011.02.002 +Timo Partala,Real-time estimation of emotional experiences from facial expressions.,2006,18,Interacting with Computers,2,db/journals/iwc/iwc18.html#PartalaSV06,https://doi.org/10.1016/j.intcom.2005.05.002 +Maria Isabel Sánchez Segura,Interaction patterns for future interactive systems components.,2004,16,Interacting with Computers,2,db/journals/iwc/iwc16.html#SeguraAS04,https://doi.org/10.1016/j.intcom.2003.11.008 +Ditte Hvas Mortensen,Playing with Nonverbal Communication: Using Grasp and Facial Direction to Create Adaptive Interaction in a Game.,2014,26,Interacting with Computers,1,db/journals/iwc/iwc26.html#MortensenB14,https://doi.org/10.1093/iwc/iwt023 +David Navarre,An approach integrating two complementary model-based environments for the construction of multimodal interactive applications.,2006,18,Interacting with Computers,5,db/journals/iwc/iwc18.html#NavarrePDB06,https://doi.org/10.1016/j.intcom.2006.03.002 +Paolo Ciancarini,Designing a document-centric coordination application over the Internet.,2001,13,Interacting with Computers,6,db/journals/iwc/iwc13.html#CiancariniRV01,https://doi.org/10.1016/S0953-5438(01)00037-6 +Huimin Qian,Determining the Efficacy of Multi-Parameter Tactons in the Presence of Real-world and Simulated Audio Distractors.,2014,26,Interacting with Computers,6,db/journals/iwc/iwc26.html#QianKSS14,https://doi.org/10.1093/iwc/iwt054 +Patrick McAndrew,Videoconferencing in a Language Learning Application.,1996,8,Interacting with Computers,2,db/journals/iwc/iwc8.html#McAndrewFM96,https://doi.org/10.1016/0953-5438(96)01028-4 +Jui-ni Sun,An experimental study of learner perceptions of the interactivity of web-based instruction.,2012,24,Interacting with Computers,1,db/journals/iwc/iwc24.html#SunH12,https://doi.org/10.1016/j.intcom.2011.11.001 +Martin Mihajlov,On designing usable and secure recognition-based graphical authentication mechanisms.,2011,23,Interacting with Computers,6,db/journals/iwc/iwc23.html#MihajlovJ11,https://doi.org/10.1016/j.intcom.2011.09.001 +Erin E. Michalak,The Use of the Internet as a Research Tool: The Nature and Characteristics of Seasonal Affective Disorder (SAD) amongst a Population of Users.,1998,9,Interacting with Computers,4,db/journals/iwc/iwc9.html#Michalak98,https://doi.org/10.1016/S0953-5438(97)00039-8 +Kyparisia A. Papanikolaou,Designing learner-controlled educational interactions based on learning/cognitive style and learner behaviour.,2006,18,Interacting with Computers,3,db/journals/iwc/iwc18.html#PapanikolaouMBG06,https://doi.org/10.1016/j.intcom.2005.11.003 +Michael Scaife,Interdisciplinary Collaboration: A Case Study of Software Development for Fashion Designers.,1994,6,Interacting with Computers,4,db/journals/iwc/iwc6.html#ScaifeCH94,https://doi.org/10.1016/0953-5438(94)90010-8 +Ken Brownsey,Structure for User-Oriented Dialogues in Computer-Aided Telephony.,1994,6,Interacting with Computers,4,db/journals/iwc/iwc6.html#BrownseyZH94,https://doi.org/10.1016/0953-5438(94)90012-4 +María del Rocío Martínez Torres,Identification of the design variables of eLearning tools.,2011,23,Interacting with Computers,3,db/journals/iwc/iwc23.html#Martinez-TorresMB11,https://doi.org/10.1016/j.intcom.2011.04.004 +Levent V. Orman,Visual Development of Database Applications.,1991,3,Interacting with Computers,3,db/journals/iwc/iwc3.html#Orman91,https://doi.org/10.1016/0953-5438(91)90019-X +Yingzi Lin,On integration of interface design methods: Can debates be resolved?,2006,18,Interacting with Computers,4,db/journals/iwc/iwc18.html#LinZKM06,https://doi.org/10.1016/j.intcom.2005.11.008 +Bruce H. Thomas,Which animation effects improve indirect manipulation?,2002,14,Interacting with Computers,3,db/journals/iwc/iwc14.html#ThomasD02,https://doi.org/10.1016/S0953-5438(01)00041-8 +Christopher C. French,Microcomputer Version of a Digit Span Test in Clinical Use.,1992,4,Interacting with Computers,2,db/journals/iwc/iwc4.html#FrenchB92,https://doi.org/10.1016/0953-5438(92)90002-W +D. Hawthorn,Possible implications of aging for interface designers.,2000,12,Interacting with Computers,5,db/journals/iwc/iwc12.html#Hawthorn00,https://doi.org/10.1016/S0953-5438(99)00021-1 +Domen Novak,Workload Estimation in Physical Human-Robot Interaction Using Physiological Measurements.,2015,27,Interacting with Computers,6,db/journals/iwc/iwc27.html#NovakBOR15,https://doi.org/10.1093/iwc/iwu021 +Mark D. Apperley,Lean Cuisine: A Low-Fat Notation for Menus.,1989,1,Interacting with Computers,1,db/journals/iwc/iwc1.html#Apperley89,https://doi.org/10.1016/0953-5438(89)90007-6 +Yvonne Rogers,57 Varieties of Activity Theory.,2008,20,Interacting with Computers,2,db/journals/iwc/iwc20.html#Rogers08,https://doi.org/10.1016/j.intcom.2007.07.004 +Becky Hill,Diagnosing co-ordination problems in the emergency management response to disasters.,2010,22,Interacting with Computers,1,db/journals/iwc/iwc22.html#Hill10,https://doi.org/10.1016/j.intcom.2009.11.003 +Philip L. Isenhour,Supporting interactive collaboration on the Web with CORK.,2001,13,Interacting with Computers,6,db/journals/iwc/iwc13.html#IsenhourRC01,https://doi.org/10.1016/S0953-5438(00)00045-X +Markku Tukiainen,Comparing two spreadsheet calculation paradigms: an empirical study with novice users.,2001,13,Interacting with Computers,4,db/journals/iwc/iwc13.html#Tukiainen01,https://doi.org/10.1016/S0953-5438(00)00048-5 +Lyndsey Franklin,TreatmentExplorer: an Interactive Decision Aid for Medical Risk Communication and Treatment Exploration.,2016,28,Interacting with Computers,3,db/journals/iwc/iwc28.html#FranklinPRS16,https://doi.org/10.1093/iwc/iwu043 +Alethea L. Blackler,Life Is Too Short to RTFM: How Users Relate to Documentation and Excess Features in Consumer Products.,2016,28,Interacting with Computers,1,db/journals/iwc/iwc28.html#BlacklerGPT16,https://doi.org/10.1093/iwc/iwu023 +Jenny Waycott,Co-constructing Meaning and Negotiating Participation: Ethical Tensions when 'Giving Voice' through Digital Storytelling.,2017,29,Interacting with Computers,2,db/journals/iwc/iwc29.html#WaycottDWET17,https://doi.org/10.1093/iwc/iww025 +Emmanuel Dubois 0001,ASUR++: Supporting the design of mobile mixed systems.,2003,15,Interacting with Computers,4,db/journals/iwc/iwc15.html#DuboisGN03,https://doi.org/10.1016/S0953-5438(03)00037-7 +T. S. Amer,The Perceived Hazard of Earcons in Information Technology Exception Messages: The Effect of Musical Dissonance/Consonance and Pitch.,2013,25,Interacting with Computers,1,db/journals/iwc/iwc25.html#AmerJMN13,https://doi.org/10.1093/iwc/iws005 +Agnes Kukulska-Hulme,Communication with users: insights from second language acquisition.,2000,12,Interacting with Computers,6,db/journals/iwc/iwc12.html#Kukulska-Hulme00,https://doi.org/10.1016/S0953-5438(99)00025-9 +Kristina R. Masuwa-Morgan,Justification of the need for an ontology for accessibility requirements (Theoretic framework).,2004,16,Interacting with Computers,3,db/journals/iwc/iwc16.html#Masuwa-MorganB04,https://doi.org/10.1016/j.intcom.2004.04.001 +Jennifer Preece,Empathic communities: balancing emotional and factual communication.,1999,12,Interacting with Computers,1,db/journals/iwc/iwc12.html#Preece99,https://doi.org/10.1016/S0953-5438(98)00056-3 +Alicja Wojtczuk,Designing and assessing everyday objects: Impact of externalisation tools and judges' backgrounds.,2011,23,Interacting with Computers,4,db/journals/iwc/iwc23.html#WojtczukB11,https://doi.org/10.1016/j.intcom.2011.05.004 +Matthew T. Cook,A survey of sketch-based 3-D modeling techniques.,2009,21,Interacting with Computers,3,db/journals/iwc/iwc21.html#CookA09,https://doi.org/10.1016/j.intcom.2009.05.004 +Shengdong Zhao,Shared Input Multimodal Mobile Interfaces: Interaction Modality Effects on Menu Selection in Single-Task and Dual-Task Environments.,2013,25,Interacting with Computers,5,db/journals/iwc/iwc25.html#ZhaoBCSG13,https://doi.org/10.1093/iwc/iws021 +Peter Roberts,Information technology acceptance in a sample of government employees: a test of the technology acceptance model.,2000,12,Interacting with Computers,5,db/journals/iwc/iwc12.html#RobertsH00,https://doi.org/10.1016/S0953-5438(98)00068-X +Harri Siirtola,Interacting with parallel coordinates.,2006,18,Interacting with Computers,6,db/journals/iwc/iwc18.html#SiirtolaR06,https://doi.org/10.1016/j.intcom.2006.03.006 +Alan J. Dix,Introduction to the Special Issue on Temporal Aspects of Usability.,1998,11,Interacting with Computers,1,db/journals/iwc/iwc11.html#DixFH98, +Erika Shehan Poole,Disruption as a Research Method for Studying Technology Use in Homes.,2015,27,Interacting with Computers,1,db/journals/iwc/iwc27.html#PooleCH15,https://doi.org/10.1093/iwc/iwu035 +Yueh-Min Huang,Empowering Classroom Observation with an E-Book Reading Behavior Monitoring System Using Sensing Technologies.,2014,26,Interacting with Computers,4,db/journals/iwc/iwc26.html#HuangHSL14,https://doi.org/10.1093/iwc/iwu012 +Henriette C. van Vugt,Realism is not all! User engagement with task-related interface characters.,2007,19,Interacting with Computers,2,db/journals/iwc/iwc19.html#VugtKHKE07,https://doi.org/10.1016/j.intcom.2006.08.005 +Roope Raisamo,Design and evaluation of the alignment stick.,2000,12,Interacting with Computers,5,db/journals/iwc/iwc12.html#RaisamoR00,https://doi.org/10.1016/S0953-5438(99)00020-X +Jane Coughlan,Evaluating the effectiveness of customers' communication experiences with online retailers - A study of e-mortgages.,2007,19,Interacting with Computers,1,db/journals/iwc/iwc19.html#CoughlanMP07a,https://doi.org/10.1016/j.intcom.2006.06.003 +Amine Chellali,Influences of haptic communication on a shared manual task.,2011,23,Interacting with Computers,4,db/journals/iwc/iwc23.html#ChellaliDM11,https://doi.org/10.1016/j.intcom.2011.05.002 +Chien-Hsu Chen,Preferences of young children regarding interface layouts in child community web sites.,2004,16,Interacting with Computers,2,db/journals/iwc/iwc16.html#ChenWRH04,https://doi.org/10.1016/j.intcom.2003.11.009 +Mehmet Ilker Berkman,A direct touch table-top display as a multi-user information kiosk: Comparing the usability of a single display groupware either by a single user or people cooperating as a group.,2012,24,Interacting with Computers,5,db/journals/iwc/iwc24.html#BerkmanK12,https://doi.org/10.1016/j.intcom.2012.07.002 +Michael P. Kerr,Learning to Use a Spreadsheet By Doing and By Watching.,1994,6,Interacting with Computers,1,db/journals/iwc/iwc6.html#KerrP94,https://doi.org/10.1016/0953-5438(94)90002-7 +Chris W. Johnson 0001,Subjectivity and Notions of Time and Value in Interactive Information Retrieval.,1998,10,Interacting with Computers,1,db/journals/iwc/iwc10.html#JohnsonD98,https://doi.org/10.1016/S0953-5438(97)00018-0 +S. Wolfson,The effects of sound and colour on responses to a computer game.,2000,13,Interacting with Computers,2,db/journals/iwc/iwc13.html#WolfsonC00,https://doi.org/10.1016/S0953-5438(00)00037-0 +Mary Zajicek,Universal usability revisited.,2004,16,Interacting with Computers,3,db/journals/iwc/iwc16.html#ZajicekE04,https://doi.org/10.1016/j.intcom.2004.04.002 +Luca Chittaro,Mobile Mindfulness and User's Worry: A Qualitative Study of Using a Smartphone App for Distancing from Negative Thoughts.,2016,28,Interacting with Computers,6,db/journals/iwc/iwc28.html#ChittaroV16,https://doi.org/10.1093/iwc/iwv044 +Yong Liu,Donating Context Data to Science: The Effects of Social Signals and Perceptions on Action-Taking.,2017,29,Interacting with Computers,2,db/journals/iwc/iwc29.html#LiuFGHP17,https://doi.org/10.1093/iwc/iww013 +Jinkyu Jang,The New Snapshot Narrators: Changing Your Visions and Perspectives!,2018,30,Interacting with Computers,4,db/journals/iwc/iwc30.html#JangKSAK18,https://doi.org/10.1093/iwc/iwy012 +Obokhai Kess Asikhia,Conceptual Framework for Evaluating Intuitive Interaction Based on Image Schemas.,2015,27,Interacting with Computers,3,db/journals/iwc/iwc27.html#AsikhiaSHW15,https://doi.org/10.1093/iwc/iwu050 +Owen Daly-Jones,Multimodal messages: the pen and voice opportunity.,1997,9,Interacting with Computers,1,db/journals/iwc/iwc9.html#Daly-JonesMFGL97,https://doi.org/10.1016/S0953-5438(96)01041-7 +Tom Rodden,A Survey of CSCW Systems.,1991,3,Interacting with Computers,3,db/journals/iwc/iwc3.html#Rodden91,https://doi.org/10.1016/0953-5438(91)90020-3 +David W. Bustard,Linking soft systems and use-case modelling through scenarios.,2000,13,Interacting with Computers,1,db/journals/iwc/iwc13.html#BustardHW00,https://doi.org/10.1016/S0953-5438(00)00026-6 +Stella Mills,Virtual reality: an overview of User-related Design Issues.,1999,11,Interacting with Computers,4,db/journals/iwc/iwc11.html#MillsN99,https://doi.org/10.1016/S0953-5438(98)00057-5 +Sérgio Hortas Rodrigues,A Process Model of Empathy For Virtual Agents.,2015,27,Interacting with Computers,4,db/journals/iwc/iwc27.html#RodriguesMDP15,https://doi.org/10.1093/iwc/iwu001 +Jaspreet S. Ahuja,Perceived disorientation: an examination of a new measure to assess web design effectiveness.,2001,14,Interacting with Computers,1,db/journals/iwc/iwc14.html#AhujaW01,https://doi.org/10.1016/S0953-5438(01)00048-0 +Russell Beale,Editorial.,2016,28,Interacting with Computers,3,db/journals/iwc/iwc28.html#Beale16,https://doi.org/10.1093/iwc/iww009 +Dan Diaper,Scenarios and task analysis.,2002,14,Interacting with Computers,4,db/journals/iwc/iwc14.html#Diaper02,https://doi.org/10.1016/S0953-5438(02)00005-X +Douglas Tudhope,Time and representational devices in Rapid Application Development.,2001,13,Interacting with Computers,4,db/journals/iwc/iwc13.html#TudhopeBMS01,https://doi.org/10.1016/S0953-5438(00)00050-3 +Adarsh Kumar Kakar,Software Feature Life Cycles: Insights From a Value-Based Typology of Software Feature Innovation.,2017,29,Interacting with Computers,4,db/journals/iwc/iwc29.html#Kakar17a,https://doi.org/10.1093/iwc/iww041 +Katri Mehto,Interacting with user data - Theory and examples of drama and dramaturgy as methods of exploration and evaluation in user-centered design.,2006,18,Interacting with Computers,5,db/journals/iwc/iwc18.html#MehtoKTK06,https://doi.org/10.1016/j.intcom.2006.05.006 +Jean-François Rouet,What was I looking for? The influence of task specificity and prior knowledge on students' search strategies in hypertext.,2003,15,Interacting with Computers,3,db/journals/iwc/iwc15.html#Rouet03,https://doi.org/10.1016/S0953-5438(02)00064-4 +José L. Abdelnour-Nocera,Andy Smith: In memoriam.,2012,24,Interacting with Computers,4,db/journals/iwc/iwc24.html#Abdelnour-Nocera12,https://doi.org/10.1016/j.intcom.2012.06.001 +Benjamin R. Cowan,Measuring Anxiety Towards Wiki Editing: Investigating the Dimensionality of the Wiki Anxiety Inventory-Editing.,2014,26,Interacting with Computers,6,db/journals/iwc/iwc26.html#CowanJ14,https://doi.org/10.1093/iwc/iwt050 +Jonas Moll,Audio makes a difference in haptic collaborative virtual environments.,2010,22,Interacting with Computers,6,db/journals/iwc/iwc22.html#MollHS10,https://doi.org/10.1016/j.intcom.2010.06.001 +Jean Scholtz,Evaluation metrics and methodologies for user-centered evaluation of intelligent systems.,2006,18,Interacting with Computers,6,db/journals/iwc/iwc18.html#ScholtzMS06,https://doi.org/10.1016/j.intcom.2006.08.014 +Hock Chuan Chan,Effect of Grading Schemes on Outcomes in Query Writing Experiments.,1996,8,Interacting with Computers,1,db/journals/iwc/iwc8.html#ChanW96,https://doi.org/10.1016/0953-5438(95)01021-1 +David Benyon,The Role of Task Analysis in Systems Design.,1992,4,Interacting with Computers,1,db/journals/iwc/iwc4.html#Benyon92,https://doi.org/10.1016/0953-5438(92)90015-8 +Luc Nijs,Interacting with the Music Paint Machine: Relating the constructs of flow experience and presence.,2012,24,Interacting with Computers,4,db/journals/iwc/iwc24.html#NijsCMALL12,https://doi.org/10.1016/j.intcom.2012.05.002 +Trien V. Do,MyWebSteps: Aiding Revisiting with a Visual Web History.,2017,29,Interacting with Computers,4,db/journals/iwc/iwc29.html#DoR17,https://doi.org/10.1093/iwc/iww038 +Benjamin R. Cowan,Exploring the wiki user experience: The effects of training spaces on novice user usability and anxiety towards wiki editing.,2011,23,Interacting with Computers,2,db/journals/iwc/iwc23.html#CowanJ11,https://doi.org/10.1016/j.intcom.2010.11.002 +Christine M. Fox,The Development of the Game Engagement Questionnaire: A Measure of Engagement in Video Game Playing: Response to Reviews.,2013,25,Interacting with Computers,4,db/journals/iwc/iwc25.html#FoxB13,https://doi.org/10.1093/iwc/iwt003 +J. Shawn Farris,Users' schemata of hypermedia: what is so 'spatial' about a website?,2002,14,Interacting with Computers,5,db/journals/iwc/iwc14.html#FarrisJE02,https://doi.org/10.1016/S0953-5438(02)00011-5 +Peter Windsor,Practical User Interface Design Notation.,1993,5,Interacting with Computers,4,db/journals/iwc/iwc5.html#WindsorS93,https://doi.org/10.1016/0953-5438(93)90006-F +David Benyon,Task Analysis and System Design: The Discipline of Data.,1992,4,Interacting with Computers,2,db/journals/iwc/iwc4.html#Benyon92a,https://doi.org/10.1016/0953-5438(92)90008-4 +Gilbert Cockton,Doing to Be: Multiple Routes to Affective Interaction.,2004,16,Interacting with Computers,4,db/journals/iwc/iwc16.html#Cockton04, +Kris Luyten,Runtime transformations for modal independent user interface migration.,2003,15,Interacting with Computers,3,db/journals/iwc/iwc15.html#LuytenLCR03,https://doi.org/10.1016/S0953-5438(03)00012-2 +Pablo Romero,An Embodied View of Flow.,2014,26,Interacting with Computers,6,db/journals/iwc/iwc26.html#RomeroC14,https://doi.org/10.1093/iwc/iwt051 +Andy Smith,Reprint of a process model for developing usable cross-cultural websites.,2012,24,Interacting with Computers,4,db/journals/iwc/iwc24.html#SmithDFMC12,https://doi.org/10.1016/j.intcom.2012.08.001 +Karen Renaud,My password is here! An investigation into visuo-spatial authentication mechanisms.,2004,16,Interacting with Computers,6,db/journals/iwc/iwc16.html#RenaudA04,https://doi.org/10.1016/j.intcom.2004.06.012 +Sara Price,Exploring Whole-Body Interaction and Design for Museums.,2016,28,Interacting with Computers,5,db/journals/iwc/iwc28.html#PriceSJ16,https://doi.org/10.1093/iwc/iwv032 +Kasper Hornbæk,Comparison of techniques for matching of usability problem descriptions.,2008,20,Interacting with Computers,6,db/journals/iwc/iwc20.html#HornbaekF08,https://doi.org/10.1016/j.intcom.2008.08.005 +Barbara Leporini,Flexible tool support for accessibility evaluation.,2006,18,Interacting with Computers,5,db/journals/iwc/iwc18.html#LeporiniPS06,https://doi.org/10.1016/j.intcom.2006.03.001 +Netta Iivari,'Representing the User' in software development - a cultural analysis of usability work in the product development context.,2006,18,Interacting with Computers,4,db/journals/iwc/iwc18.html#Iivari06,https://doi.org/10.1016/j.intcom.2005.10.002 +Martin D. Ringle,Shaping User Input: A Strategy for Natural Language Dialogue Design.,1989,1,Interacting with Computers,3,db/journals/iwc/iwc1.html#RingleH89,https://doi.org/10.1016/0953-5438(89)90012-X +Andrea L. Kavanaugh,Participating in civil society: the case of networked communities.,2005,17,Interacting with Computers,1,db/journals/iwc/iwc17.html#KavanaughCRRZ05,https://doi.org/10.1016/j.intcom.2004.10.006 +Outi Tuisku,Pointing and Selecting with Facial Activity.,2016,28,Interacting with Computers,1,db/journals/iwc/iwc28.html#TuiskuRSSL16,https://doi.org/10.1093/iwc/iwu026 +Rumen Dimov Andreev,A linguistic approach to user interface design.,2001,13,Interacting with Computers,5,db/journals/iwc/iwc13.html#Andreev01,https://doi.org/10.1016/S0953-5438(01)00033-9 +Yngve Dahl,Stakeholder Attitudes Toward and Values Embedded in a Sensor-Enhanced Personal Emergency Response System.,2016,28,Interacting with Computers,5,db/journals/iwc/iwc28.html#DahlFVHNNW16,https://doi.org/10.1093/iwc/iwv036 +Mau-Tsuen Yang,Note-Taking for 3D Curricular Contents using Markerless Augmented Reality.,2014,26,Interacting with Computers,4,db/journals/iwc/iwc26.html#YangC14,https://doi.org/10.1093/iwc/iwu015 +Kostas Stathis,Intelligence and interaction in community-based systems (Part 2).,2003,15,Interacting with Computers,1,db/journals/iwc/iwc15.html#StathisP03,https://doi.org/10.1016/S0953-5438(02)00025-5 +Luca Chittaro,Anxiety Induction in Virtual Environments: An Experimental Comparison of Three General Techniques.,2014,26,Interacting with Computers,6,db/journals/iwc/iwc26.html#Chittaro14,https://doi.org/10.1093/iwc/iwt049 +Woohun Lee,'MoleBot': An Organic User-Interface-Based Robot That Provides Users with Richer Kinetic Interactions.,2013,25,Interacting with Computers,2,db/journals/iwc/iwc25.html#LeeLKSL13,https://doi.org/10.1093/iwc/iws009 +Marcus Watson,Tailoring reveals information requirements: the case of anaesthesia alarms.,2004,16,Interacting with Computers,2,db/journals/iwc/iwc16.html#WatsonSR04,https://doi.org/10.1016/j.intcom.2003.12.002 +Simeon Keates,Developing a practical inclusive interface design approach.,2002,14,Interacting with Computers,4,db/journals/iwc/iwc14.html#KeatesCR02,https://doi.org/10.1016/S0953-5438(01)00054-6 +Demosthenes Akoumianakis,Encapsulating intelligent interactive behaviour in unified user interface artefacts.,2000,12,Interacting with Computers,4,db/journals/iwc/iwc12.html#AkoumianakisSS00,https://doi.org/10.1016/S0953-5438(99)00016-8 +Matthias Rauterberg,About the importance of auditory alarms during the operation of a plant simulator.,1998,10,Interacting with Computers,1,db/journals/iwc/iwc10.html#Rauterberg98,https://doi.org/10.1016/S0953-5438(97)00038-6 +Alina Huldtgren,Reminiscence of People With Dementia Mediated by Multimedia Artifacts.,2017,29,Interacting with Computers,5,db/journals/iwc/iwc29.html#HuldtgrenMVG17,https://doi.org/10.1093/iwc/iwx005 +David Dinka,The need for transparency and rationale in automated systems.,2006,18,Interacting with Computers,5,db/journals/iwc/iwc18.html#DinkaNT06,https://doi.org/10.1016/j.intcom.2006.01.001 +Declan Kelly,Adapting to intelligence profile in an adaptive educational system.,2006,18,Interacting with Computers,3,db/journals/iwc/iwc18.html#KellyT06,https://doi.org/10.1016/j.intcom.2005.11.009 +Mary L. Cummings,Boredom and Distraction in Multiple Unmanned Vehicle Supervisory Control.,2013,25,Interacting with Computers,1,db/journals/iwc/iwc25.html#CummingsMTM13,https://doi.org/10.1093/iwc/iws011 +Rod Rivers,Embedded User Models - Where Next?,1989,1,Interacting with Computers,1,db/journals/iwc/iwc1.html#Rivers89,https://doi.org/10.1016/0953-5438(89)90004-0 +Markel Vigo,Automatic web accessibility metrics: Where we are and where we can go.,2011,23,Interacting with Computers,2,db/journals/iwc/iwc23.html#VigoB11,https://doi.org/10.1016/j.intcom.2011.01.001 +Sunghoon Yim,Evaluation of motion-based interaction for mobile devices: A case study on image browsing.,2011,23,Interacting with Computers,3,db/journals/iwc/iwc23.html#YimLC11,https://doi.org/10.1016/j.intcom.2011.04.001 +Panagiotis D. Bamidis,Affective computing in the era of contemporary neurophysiology and health informatics.,2004,16,Interacting with Computers,4,db/journals/iwc/iwc16.html#BamidisPKPV04,https://doi.org/10.1016/j.intcom.2004.06.009 +Joseph P. Wherton,Problems people with dementia have with kitchen tasks: The challenge for pervasive computing.,2010,22,Interacting with Computers,4,db/journals/iwc/iwc22.html#WhertonM10,https://doi.org/10.1016/j.intcom.2010.03.004 +Jacek Gwizdka,Individual differences and task-based user interface evaluation: a case study of pending tasks in email.,2004,16,Interacting with Computers,4,db/journals/iwc/iwc16.html#GwizdkaC04,https://doi.org/10.1016/j.intcom.2004.04.008 +Pär J. ågerfalk,Investigating actability dimensions: a language/action perspective on criteria for information systems evaluation.,2004,16,Interacting with Computers,5,db/journals/iwc/iwc16.html#Agerfalk04,https://doi.org/10.1016/j.intcom.2004.05.002 +Kent L. Norman,GEQ (Game Engagement/Experience Questionnaire): A Review of Two Papers.,2013,25,Interacting with Computers,4,db/journals/iwc/iwc25.html#Norman13,https://doi.org/10.1093/iwc/iwt009 +Kasim özacar,3D Selection Techniques for Mobile Augmented Reality Head-Mounted Displays.,2017,29,Interacting with Computers,4,db/journals/iwc/iwc29.html#OzacarHTK17,https://doi.org/10.1093/iwc/iww035 +Rowanne Fleck,Rating reflection on experience: A case study of teachers' and tutors' reflection around images.,2012,24,Interacting with Computers,6,db/journals/iwc/iwc24.html#Fleck12,https://doi.org/10.1016/j.intcom.2012.07.003 +Ian K. Salter,Applying the conception of HCI engineering to the design of economic systems.,2010,22,Interacting with Computers,1,db/journals/iwc/iwc22.html#Salter10,https://doi.org/10.1016/j.intcom.2009.11.004 +Nick Bryan-Kinns,Exploring Interactivity and Co-Creation in Rural China.,2018,30,Interacting with Computers,4,db/journals/iwc/iwc30.html#Bryan-KinnsWJ18,https://doi.org/10.1093/iwc/iwy010 +Clarisse Sieckenius de Souza,Compulsory institutionalization: investigating the paradox of computer-supported informal social processes.,2004,16,Interacting with Computers,4,db/journals/iwc/iwc16.html#SouzaNSP04,https://doi.org/10.1016/j.intcom.2004.07.003 +Stephen J. Payne,Animated Demonstrations for Exploratory Learners.,1992,4,Interacting with Computers,1,db/journals/iwc/iwc4.html#PayneCH92,https://doi.org/10.1016/0953-5438(92)90010-D +Herre van Oostendorp,Towards Modelling Exploratory Learning in the Context of Direct Manipulation Interfaces.,1995,7,Interacting with Computers,1,db/journals/iwc/iwc7.html#OostendorpW95,https://doi.org/10.1016/0953-5438(95)90817-5 +Micheline Hancock-Beaulieu,Interactive searching and interface issues in the Okapi best match probabilistic retrieval system.,1998,10,Interacting with Computers,3,db/journals/iwc/iwc10.html#BeaulieuJ98,https://doi.org/10.1016/S0953-5438(98)00008-3 +Patrick Langdon,Inclusion and interaction: Designing interaction for inclusive populations.,2010,22,Interacting with Computers,6,db/journals/iwc/iwc22.html#LangdonT10,https://doi.org/10.1016/j.intcom.2010.08.007 +Frédéric Vanderhaegen,Toward a model of unreliability to study error prevention supports.,1999,11,Interacting with Computers,5,db/journals/iwc/iwc11.html#Vanderhaegen99,https://doi.org/10.1016/S0953-5438(98)00044-7 +Sharon McDonald,Look Who's Talking: Evaluating the Utility of Interventions During an Interactive Think-Aloud.,2016,28,Interacting with Computers,3,db/journals/iwc/iwc28.html#McDonaldZE16,https://doi.org/10.1093/iwc/iwv014 +Alan F. Newell,The use of theatre in requirements gathering and usability studies.,2006,18,Interacting with Computers,5,db/journals/iwc/iwc18.html#NewellCMD06,https://doi.org/10.1016/j.intcom.2006.05.003 +Margaret Welbank,An Overview of Knowledge Acquisition Methods.,1990,2,Interacting with Computers,1,db/journals/iwc/iwc2.html#Welbank90,https://doi.org/10.1016/0953-5438(90)90016-B +Alistair G. Sutcliffe,Heuristic evaluation of virtual reality applications.,2004,16,Interacting with Computers,4,db/journals/iwc/iwc16.html#SutcliffeG04,https://doi.org/10.1016/j.intcom.2004.05.001 +Yasuyuki Sumi,Conference assistant system for supporting knowledge sharing in academic communities.,2002,14,Interacting with Computers,6,db/journals/iwc/iwc14.html#SumiM02,https://doi.org/10.1016/S0953-5438(02)00018-8 +Bill Kules,Immediate usability: a case study of public access design for a community photo library.,2004,16,Interacting with Computers,6,db/journals/iwc/iwc16.html#KulesKPRS04,https://doi.org/10.1016/j.intcom.2004.07.005 +Tao Yang 0013,Branded Interactions: Predicting Perceived Product Traits and User Image from Interface Consistency and Visual Guidance.,2014,26,Interacting with Computers,5,db/journals/iwc/iwc26.html#YangB14,https://doi.org/10.1093/iwc/iwt048 +Jussi Karlgren,Reply to Fraser and Wrigley or Definitely Not the Last Word on Language Varieties.,1994,6,Interacting with Computers,1,db/journals/iwc/iwc6.html#Karlgren94,https://doi.org/10.1016/0953-5438(94)90007-8 +Jacques N. Catudal,What Philosophy Can Offer to Information Science: The Example of Medical Expert Systems.,1990,2,Interacting with Computers,2,db/journals/iwc/iwc2.html#Catudal90,https://doi.org/10.1016/0953-5438(90)90019-E +Gitte Lindgaard,User Needs Analysis and requirements engineering: Theory and practice.,2006,18,Interacting with Computers,1,db/journals/iwc/iwc18.html#LindgaardDTWFLP06,https://doi.org/10.1016/j.intcom.2005.06.003 +Andrew J. May,The design of next generation in-vehicle navigation systems for the older driver.,2005,17,Interacting with Computers,6,db/journals/iwc/iwc17.html#MayRO05,https://doi.org/10.1016/j.intcom.2005.09.004 +Rémi Bastide,A tool-supported design framework for safety critical interactive systems.,2003,15,Interacting with Computers,3,db/journals/iwc/iwc15.html#BastideNP03,https://doi.org/10.1016/S0953-5438(03)00011-0 +Kraig Finstad,Response to commentaries on 'The Usability Metric for User Experience'.,2013,25,Interacting with Computers,4,db/journals/iwc/iwc25.html#Finstad13,https://doi.org/10.1093/iwc/iwt005 +Françoise Decortis,Mediating effects of active and distributed instruments on narrative activities.,2003,15,Interacting with Computers,6,db/journals/iwc/iwc15.html#DecortisRS03,https://doi.org/10.1016/j.intcom.2003.09.005 +Su-e Park,Critical factors for the aesthetic fidelity of web pages: empirical studies with professional web designers and users.,2004,16,Interacting with Computers,2,db/journals/iwc/iwc16.html#ParkCK04,https://doi.org/10.1016/j.intcom.2003.07.001 +José Bravo,Context-Driven Human-Environment Interaction (CdH-E Interaction).,2014,26,Interacting with Computers,2,db/journals/iwc/iwc26.html#BravoLH14,https://doi.org/10.1093/iwc/iwt063 +Viviane Folcher,Appropriating artifacts as instruments: when design-for-use meets design-in-use.,2003,15,Interacting with Computers,5,db/journals/iwc/iwc15.html#Folcher03,https://doi.org/10.1016/S0953-5438(03)00057-2 +Alina Huldtgren,Designing for Self-Reflection on Values for Improved Life Decision.,2014,26,Interacting with Computers,1,db/journals/iwc/iwc26.html#HuldtgrenWJ14,https://doi.org/10.1093/iwc/iwt025 +Maja Wrzesien,Evaluation of the quality of collaboration between the client and the therapist in phobia treatments.,2012,24,Interacting with Computers,6,db/journals/iwc/iwc24.html#WrzesienBBR12,https://doi.org/10.1016/j.intcom.2012.09.001 +Marilyn M. Mantei,Report on the INTERACT'90 Workshop on Education in HCI: Transcending Disciplinary and National Boundaries.,1991,3,Interacting with Computers,2,db/journals/iwc/iwc3.html#ManteiHEP91,https://doi.org/10.1016/0953-5438(91)90014-S +Catrina Denvir,Surfing the web - Recreation or resource? Exploring how young people in the UK use the Internet as an advice portal for problems with a legal dimension.,2011,23,Interacting with Computers,1,db/journals/iwc/iwc23.html#DenvirBP11,https://doi.org/10.1016/j.intcom.2010.10.004 +Bin Yu 0004,A Model of Nature Soundscape for Calm Information Display.,2017,29,Interacting with Computers,6,db/journals/iwc/iwc29.html#YuHFF17,https://doi.org/10.1093/iwc/iwx007 +David G. Novick,Universal usability.,2002,14,Interacting with Computers,4,db/journals/iwc/iwc14.html#NovickS02,https://doi.org/10.1016/S0953-5438(01)00057-1 +Mariëlle Leijten,Writing with speech recognition: The adaptation process of professional writers with and without dictating experience.,2005,17,Interacting with Computers,6,db/journals/iwc/iwc17.html#LeijtenW05,https://doi.org/10.1016/j.intcom.2005.01.005 +Tardi Tjahjadi,3M: A User Modelling Interface of an Expert System for X-Ray Topographic Image Interpretation.,1990,2,Interacting with Computers,3,db/journals/iwc/iwc2.html#TjahjadiBB90,https://doi.org/10.1016/0953-5438(90)90001-X +Paul A. Booth,Redefining Software: A Comment on Thimbleby's Paper.,1990,2,Interacting with Computers,1,db/journals/iwc/iwc2.html#Booth90,https://doi.org/10.1016/0953-5438(90)90012-7 +Christian Stary,Building up usability-engineering capability by improving access to automated usability evaluation.,2008,20,Interacting with Computers,2,db/journals/iwc/iwc20.html#StaryE08,https://doi.org/10.1016/j.intcom.2007.11.001 +Gerard Hutchings,Patterns of Students' Interactions with a Hypermedia System.,1993,5,Interacting with Computers,3,db/journals/iwc/iwc5.html#HutchingsHC93,https://doi.org/10.1016/0953-5438(93)90012-I +Saleema Amershi,Pedagogy and usability in interactive algorithm visualizations: Designing and evaluating CIspace.,2008,20,Interacting with Computers,1,db/journals/iwc/iwc20.html#AmershiCCMP08,https://doi.org/10.1016/j.intcom.2007.08.003 +Paul van Schaik,The effects of frame layout and differential background contrast on visual search performance in Web pages.,2001,13,Interacting with Computers,5,db/journals/iwc/iwc13.html#SchaikL01,https://doi.org/10.1016/S0953-5438(00)00054-0 +Andy Whitefield,On Distinguishing Work Tasks and Enabling Tasks.,1993,5,Interacting with Computers,3,db/journals/iwc/iwc5.html#WhitefieldEDB93,https://doi.org/10.1016/0953-5438(93)90014-K +Graham Storrs,A Conceptualisation of Multiparty Interaction.,1994,6,Interacting with Computers,2,db/journals/iwc/iwc6.html#Storrs94,https://doi.org/10.1016/0953-5438(94)90023-X +Christian Peter,Emotion representation and physiology assignments in digital systems.,2006,18,Interacting with Computers,2,db/journals/iwc/iwc18.html#PeterH06,https://doi.org/10.1016/j.intcom.2005.10.006 +Gregory D. Abowd,Giving Undo Attention.,1992,4,Interacting with Computers,3,db/journals/iwc/iwc4.html#AbowdD92,https://doi.org/10.1016/0953-5438(92)90021-7 +Paul Dunphy,Designing for Spontaneous and Secure Delegation in Digital Payments.,2014,26,Interacting with Computers,5,db/journals/iwc/iwc26.html#DunphyMVBO14,https://doi.org/10.1093/iwc/iwt038 +Norman P. Archer,Investigation of Voice and Text Output Modes with Abstraction in a Computer Interface.,1996,8,Interacting with Computers,4,db/journals/iwc/iwc7.html#ArcherHWY96,https://doi.org/10.1016/S0953-5438(97)83777-0 +Panote Siriaraya,Age differences in the perception of social presence in the use of 3D virtual world for social interaction.,2012,24,Interacting with Computers,4,db/journals/iwc/iwc24.html#SiriarayaA12,https://doi.org/10.1016/j.intcom.2012.03.003 +Mikko Salminen,Mediated Cues of Group Emotion during Knowledge-Work Tasks: Effects on Subjective and Physiological Responses.,2013,25,Interacting with Computers,1,db/journals/iwc/iwc25.html#SalminenRKS13,https://doi.org/10.1093/iwc/iws006 +Harold W. Thimbleby,"Robot ethics? Not yet: A reflection on Whitby's ""Some* it's hard to be a robot"".",2008,20,Interacting with Computers,3,db/journals/iwc/iwc20.html#Thimbleby08,https://doi.org/10.1016/j.intcom.2008.02.006 +Stephen Gale,Human Aspects of Interactive Multimedia Communication.,1990,2,Interacting with Computers,2,db/journals/iwc/iwc2.html#Gale90,https://doi.org/10.1016/0953-5438(90)90022-A +Frode Eika Sandnes,Bimanual text entry using game controllers: Relying on users' spatial familiarity with QWERTY.,2007,19,Interacting with Computers,2,db/journals/iwc/iwc19.html#SandnesA07,https://doi.org/10.1016/j.intcom.2006.08.003 +Dong Hee Shin,User acceptance of mobile Internet: Implication for convergence technologies.,2007,19,Interacting with Computers,4,db/journals/iwc/iwc19.html#Shin07,https://doi.org/10.1016/j.intcom.2007.04.001 +Frederick G. Conrad,The impact of progress indicators on task completion.,2010,22,Interacting with Computers,5,db/journals/iwc/iwc22.html#ConradCTP10,https://doi.org/10.1016/j.intcom.2010.03.001 +Dave Clarke 0003,Interfaces for the Active Web.,2001,13,Interacting with Computers,3,db/journals/iwc/iwc13.html#ClarkeD01,https://doi.org/10.1016/S0953-5438(00)00053-9 +J. Morgan Morris,User Interface Design for Older Adults.,1994,6,Interacting with Computers,4,db/journals/iwc/iwc6.html#Morris94,https://doi.org/10.1016/0953-5438(94)90009-4 +Steve Benford,From Rooms to Cyberspace: Models of Interaction in Large Virtual Computer Spaces.,1993,5,Interacting with Computers,2,db/journals/iwc/iwc5.html#BenfordBCHIL93,https://doi.org/10.1016/0953-5438(93)90019-P +Sébastien Orsini,Response to the Reviews on Bargas-Avila et al. (2009) 'Intranet Satisfaction Questionnaire: Development and Validation of a Questionnaire to Measure User Satisfaction with the Intranet'.,2013,25,Interacting with Computers,4,db/journals/iwc/iwc25.html#OrsiniOB13,https://doi.org/10.1093/iwc/iwt012 +Jocelyn Scheirer,Frustrating the user on purpose: a step toward building an affective computer.,2001,14,Interacting with Computers,2,db/journals/iwc/iwc14.html#ScheirerFKP01,https://doi.org/10.1016/S0953-5438(01)00059-5 +Paul Warren,Personal Information Management: The Case for an Evolutionary Approach.,2014,26,Interacting with Computers,3,db/journals/iwc/iwc26.html#Warren14,https://doi.org/10.1093/iwc/iwt034 +Saskia Bakker,Acting by hand: Informing interaction design for the periphery of people's attention.,2012,24,Interacting with Computers,3,db/journals/iwc/iwc24.html#BakkerHE12,https://doi.org/10.1016/j.intcom.2012.04.001 +Liliana Seabra,Relationship Between Internet Addiction and Self-Esteem: Cross-Cultural Study in Portugal and Brazil.,2017,29,Interacting with Computers,5,db/journals/iwc/iwc29.html#SeabraLPMAE17,https://doi.org/10.1093/iwc/iwx011 +Doug Mahar,The effects of password length and reference profile size on the performance of a multivariate text-dependent typist verification system.,1998,10,Interacting with Computers,4,db/journals/iwc/iwc10.html#MaharHLN98,https://doi.org/10.1016/S0953-5438(98)00024-1 +Mark D. Apperley,The stretchable selection tool: an alternative to copy and paste.,2002,14,Interacting with Computers,3,db/journals/iwc/iwc14.html#ApperleyFR02,https://doi.org/10.1016/S0953-5438(01)00044-3 +Thomas Chesney,A Study of Gamer Experience and Virtual World Behaviour.,2014,26,Interacting with Computers,1,db/journals/iwc/iwc26.html#ChesneyCHHL14,https://doi.org/10.1093/iwc/iwt024 +Mark Blythe,Net neighbours: adapting HCI methods to cross the digital divide.,2005,17,Interacting with Computers,1,db/journals/iwc/iwc17.html#BlytheM05,https://doi.org/10.1016/j.intcom.2004.10.002 +Pippin Barr,Video game values: Human-computer interaction and games.,2007,19,Interacting with Computers,2,db/journals/iwc/iwc19.html#BarrNB07,https://doi.org/10.1016/j.intcom.2006.08.008 +Kostas Stathis,Living memory: agent-based information management for connected local communities.,2002,14,Interacting with Computers,6,db/journals/iwc/iwc14.html#StathisBM02,https://doi.org/10.1016/S0953-5438(02)00014-0 +Malcolm Otter,Lost in hyperspace: metrics and mental models.,2000,13,Interacting with Computers,1,db/journals/iwc/iwc13.html#OtterJ00,https://doi.org/10.1016/S0953-5438(00)00030-8 +Paul Vickers,Musical program auralisation: a structured approach to motif design.,2002,14,Interacting with Computers,5,db/journals/iwc/iwc14.html#VickersA02a,https://doi.org/10.1016/S0953-5438(02)00004-8 +Chris Roast,Using the Template Model to Analyse Directory Visualisation.,1997,9,Interacting with Computers,2,db/journals/iwc/iwc9.html#RoastS97,https://doi.org/10.1016/S0953-5438(97)00014-3 +Willem-Paul Brinkman,The therapist user interface of a virtual reality exposure therapy system in the treatment of fear of flying.,2010,22,Interacting with Computers,4,db/journals/iwc/iwc22.html#BrinkmanMSGE10,https://doi.org/10.1016/j.intcom.2010.03.005 +Dianne Cyr,The role of social presence in establishing loyalty in e-Service environments.,2007,19,Interacting with Computers,1,db/journals/iwc/iwc19.html#CyrHHI07,https://doi.org/10.1016/j.intcom.2006.07.010 +Alissa Nicole Antle,Getting Down to Details: Using Theories of Cognition and Learning to Inform Tangible User Interface Design.,2013,25,Interacting with Computers,1,db/journals/iwc/iwc25.html#AntleW13,https://doi.org/10.1093/iwc/iws007 +J. Terry Mayes,Cognitive and Educational Aspects of Desktop Videoconferencing (Part 2).,1996,8,Interacting with Computers,3,db/journals/iwc/iwc8.html#MayesF96a,https://doi.org/10.1016/0953-5438(96)01036-3 +Yee-Yin Choong,Design of Icons for Use by Chinese in Mainland China.,1998,9,Interacting with Computers,4,db/journals/iwc/iwc9.html#ChoongS98,https://doi.org/10.1016/S0953-5438(97)00026-X +Demosthenes Akoumianakis,Supporting user-adapted interface design: The USE-IT system.,1997,9,Interacting with Computers,1,db/journals/iwc/iwc9.html#AkoumianakisS97,https://doi.org/10.1016/S0953-5438(97)00007-6 +Jinwoo Kim 0001,Designing towards emotional usability in customer interfaces trustworthiness of cyber-banking system interfaces.,1998,10,Interacting with Computers,1,db/journals/iwc/iwc10.html#KimM98,https://doi.org/10.1016/S0953-5438(97)00037-4 +John C. Grundy,Developing adaptable user interfaces for component-based systems.,2002,14,Interacting with Computers,3,db/journals/iwc/iwc14.html#GrundyH02,https://doi.org/10.1016/S0953-5438(01)00049-2 +Amanda Anganes,The Heuristic Quality Scale.,2016,28,Interacting with Computers,5,db/journals/iwc/iwc28.html#AnganesPDO16,https://doi.org/10.1093/iwc/iwv031 +Jie Xu,Working with an Invisible Active User: Understanding Trust in Technology and Co-User from the Perspective of a Passive User.,2013,25,Interacting with Computers,5,db/journals/iwc/iwc25.html#XuM13,https://doi.org/10.1093/iwc/iws022 +Noam Tractinsky,Tools over solutions? Comments on Interacting with Computers special issue on affective computing.,2004,16,Interacting with Computers,4,db/journals/iwc/iwc16.html#Tractinsky04,https://doi.org/10.1016/j.intcom.2004.06.003 +Michail Salampasis,Evaluation of information-seeking performance in hypermedia digital libraries.,1998,10,Interacting with Computers,3,db/journals/iwc/iwc10.html#SalampasisTB98,https://doi.org/10.1016/S0953-5438(98)00010-1 +John M. Carroll,Five reasons for scenario-based design.,2000,13,Interacting with Computers,1,db/journals/iwc/iwc13.html#Carroll00a,https://doi.org/10.1016/S0953-5438(00)00023-0 +Harold W. Thimbleby,Reflexive CSCW: Supporting Long-Term Personal Work.,1990,2,Interacting with Computers,3,db/journals/iwc/iwc2.html#ThimblebyAW90,https://doi.org/10.1016/0953-5438(90)90005-3 +Paul Luff,Surveying the scene: technologies for everyday awareness and monitoring in control rooms.,2000,13,Interacting with Computers,2,db/journals/iwc/iwc13.html#LuffHJ00,https://doi.org/10.1016/S0953-5438(00)00038-2 +Tuuli Keskinen,SymbolChat: A flexible picture-based communication platform for users with intellectual disabilities.,2012,24,Interacting with Computers,5,db/journals/iwc/iwc24.html#KeskinenHTRK12,https://doi.org/10.1016/j.intcom.2012.06.003 +Koji Kamei,Effectiveness of spatial representation in the formation of network communities: experimental study on community organizer.,2002,14,Interacting with Computers,6,db/journals/iwc/iwc14.html#KameiFJYK02,https://doi.org/10.1016/S0953-5438(02)00017-6 +Anja B. Naumann,Multimodal interaction: A suitable strategy for including older users?,2010,22,Interacting with Computers,6,db/journals/iwc/iwc22.html#NaumannWH10,https://doi.org/10.1016/j.intcom.2010.08.005 +Mark Boyer,Investigating Mental Workload Changes in a Long Duration Supervisory Control Task.,2015,27,Interacting with Computers,5,db/journals/iwc/iwc27.html#BoyerCSS15,https://doi.org/10.1093/iwc/iwv012 +Torkil Clemmensen,Four approaches to user modelling - a qualitative research interview study of HCI professionals' practice.,2004,16,Interacting with Computers,4,db/journals/iwc/iwc16.html#Clemmensen04,https://doi.org/10.1016/j.intcom.2004.04.009 +Ian Oakley,Did you feel something? Distracter tasks and the recognition of vibrotactile cues.,2008,20,Interacting with Computers,3,db/journals/iwc/iwc20.html#OakleyP08,https://doi.org/10.1016/j.intcom.2007.11.003 +Doroteo Torre Toledano,Usability evaluation of multi-modal biometric verification systems.,2006,18,Interacting with Computers,5,db/journals/iwc/iwc18.html#ToledanoPTG06,https://doi.org/10.1016/j.intcom.2006.01.004 +Chris Creed,The Impact of an Embodied Agent's Emotional Expressions Over Multiple Interactions.,2015,27,Interacting with Computers,2,db/journals/iwc/iwc27.html#CreedBC15,https://doi.org/10.1093/iwc/iwt064 +Jorge Gonçalves,Worker Performance in a Situated Crowdsourcing Market.,2016,28,Interacting with Computers,5,db/journals/iwc/iwc28.html#GoncalvesHLK16,https://doi.org/10.1093/iwc/iwv035 +Peretz Shoval,Experimental Comparison between Automatic and Manual Menu Interface Design Methods.,1995,7,Interacting with Computers,1,db/journals/iwc/iwc7.html#Shoval95,https://doi.org/10.1016/0953-5438(95)90820-B +Timothy W. Bickmore,Response to a relational agent by hospital patients with depressive symptoms.,2010,22,Interacting with Computers,4,db/journals/iwc/iwc22.html#BickmoreMJPPO10,https://doi.org/10.1016/j.intcom.2009.12.001 +Volker Wulf,Exploration environments: supporting users to learn groupware functions.,2000,13,Interacting with Computers,2,db/journals/iwc/iwc13.html#Wulf00,https://doi.org/10.1016/S0953-5438(00)00046-1 +Jacob P. Ukelson,Formal Interactive Menu Design.,1992,4,Interacting with Computers,1,db/journals/iwc/iwc4.html#UkelsonM92,https://doi.org/10.1016/0953-5438(92)90014-7 +Anna Dickinson,Introducing the Internet to the over-60s: Developing an email system for older novice computer users.,2005,17,Interacting with Computers,6,db/journals/iwc/iwc17.html#DickinsonNSH05,https://doi.org/10.1016/j.intcom.2005.09.003 +Jakub Mlynár,Situated Organization of Video-Mediated Interaction: A Review of Ethnomethodological and Conversation Analytic Studies.,2018,30,Interacting with Computers,2,db/journals/iwc/iwc30.html#MlynarGL18,https://doi.org/10.1093/iwc/iwx019 +Paul A. Cairns,A Commentary on Short Questionnaires for Assessing Usability.,2013,25,Interacting with Computers,4,db/journals/iwc/iwc25.html#Cairns13,https://doi.org/10.1093/iwc/iwt019 +Geoffrey Ho,Age differences in trust and reliance of a medication management system.,2005,17,Interacting with Computers,6,db/journals/iwc/iwc17.html#HoWS05,https://doi.org/10.1016/j.intcom.2005.09.007 +Sari Kujala,Sentence Completion for Understanding Users and Evaluating User Experience.,2014,26,Interacting with Computers,3,db/journals/iwc/iwc26.html#KujalaWNC14,https://doi.org/10.1093/iwc/iwt036 +Younbo Jung,Revisiting Gender Preference for a First-Person Shooter Videogame: Effects of Non-Verbal Sensitivity and Gender on Enjoyment.,2015,27,Interacting with Computers,6,db/journals/iwc/iwc27.html#JungOSKD15,https://doi.org/10.1093/iwc/iwu024 +Trevor J. M. Bench-Capon,People Interact Through Computers Not With Them.,1989,1,Interacting with Computers,1,db/journals/iwc/iwc1.html#Bench-CaponM89,https://doi.org/10.1016/0953-5438(89)90005-2 +Yugyung Lee,Multi-agent systems support for Community-Based Learning.,2003,15,Interacting with Computers,1,db/journals/iwc/iwc15.html#LeeC03,https://doi.org/10.1016/S0953-5438(02)00057-7 +Anita Komlodi,Collaborative use of individual search histories.,2008,20,Interacting with Computers,1,db/journals/iwc/iwc20.html#KomlodiL08,https://doi.org/10.1016/j.intcom.2007.10.003 +Melanie Feinberg,Framing a Set: Understanding the Curatorial Character of Personal Digital Bibliographies.,2016,28,Interacting with Computers,1,db/journals/iwc/iwc28.html#FeinbergBW16,https://doi.org/10.1093/iwc/iwu037 +Helena Rodrigues,System Implications of Context-Driven Interaction in Smart Environments.,2014,26,Interacting with Computers,2,db/journals/iwc/iwc26.html#RodriguesJ14,https://doi.org/10.1093/iwc/iwt029 +Jonggi Hong,Comparison of Three QWERTY Keyboards for a Smartwatch.,2016,28,Interacting with Computers,6,db/journals/iwc/iwc28.html#HongHIL16,https://doi.org/10.1093/iwc/iww003 +Renzo Gobbin,The Role of Cultural Fitness in User Resistance to Information Technology Tools.,1998,9,Interacting with Computers,3,db/journals/iwc/iwc9.html#Gobbin98,https://doi.org/10.1016/S0953-5438(97)00031-3 +Roshan Lalintha Peiris,AmbiKraf Byobu: Merging Technology with Traditional Craft.,2013,25,Interacting with Computers,2,db/journals/iwc/iwc25.html#PeirisKTFC13,https://doi.org/10.1093/iwc/iws013 +Elena Novak,Assessing Intrinsic and Extraneous Cognitive Complexity of E-textbook Learning.,2018,30,Interacting with Computers,2,db/journals/iwc/iwc30.html#NovakDM18,https://doi.org/10.1093/iwc/iwy001 +Jorma Sajaniemi,Lightweight techniques for structural evaluation of animated metaphors.,2007,19,Interacting with Computers,4,db/journals/iwc/iwc19.html#SajaniemiS07,https://doi.org/10.1016/j.intcom.2007.04.003 +Huawei Tu,Employing Number-Based Graphical Representations to Enhance the Effects of Visual Check on Entry Error Detection.,2016,28,Interacting with Computers,2,db/journals/iwc/iwc28.html#TuOWTCN16,https://doi.org/10.1093/iwc/iwv020 +Ewa Luger,Terms of Agreement: Rethinking Consent for Pervasive Computing.,2013,25,Interacting with Computers,3,db/journals/iwc/iwc25.html#LugerR13,https://doi.org/10.1093/iwc/iws017 +Sangwon Lee,Understanding user preferences based on usability and aesthetics before and after actual use.,2010,22,Interacting with Computers,6,db/journals/iwc/iwc22.html#LeeK10,https://doi.org/10.1016/j.intcom.2010.05.002 +Ramón Hervás,Towards the ubiquitous visualization: Adaptive user-interfaces based on the Semantic Web.,2011,23,Interacting with Computers,1,db/journals/iwc/iwc23.html#HervasB11,https://doi.org/10.1016/j.intcom.2010.08.002 +Catriona Macaulay,The emerging roles of performance within HCI and interaction design.,2006,18,Interacting with Computers,5,db/journals/iwc/iwc18.html#MacaulayJOKS06,https://doi.org/10.1016/j.intcom.2006.07.001 +C. H. E. Phillips,Direct Manipulation Interaction Tasks: A Macintosh-Based Analysis.,1991,3,Interacting with Computers,1,db/journals/iwc/iwc3.html#PhillipsA91,https://doi.org/10.1016/0953-5438(91)90003-K +K. Hill,Electronic mail versus printed text: the effects on recipients.,2000,13,Interacting with Computers,2,db/journals/iwc/iwc13.html#HillM00,https://doi.org/10.1016/S0953-5438(00)00040-0 +Taciana Pontual Falcão,Perception of Representation Modalities and Affordances in Tangible Environments by Children with Intellectual Disabilities.,2016,28,Interacting with Computers,5,db/journals/iwc/iwc28.html#Falcao16,https://doi.org/10.1093/iwc/iwv037 +Fabio Paternò,Model-based tools for pervasive usability.,2005,17,Interacting with Computers,3,db/journals/iwc/iwc17.html#Paterno05,https://doi.org/10.1016/j.intcom.2004.06.017 +Young Seok Lee,Systematic evaluation methodology for cell phone user interfaces.,2006,18,Interacting with Computers,2,db/journals/iwc/iwc18.html#LeeHSNT06,https://doi.org/10.1016/j.intcom.2005.04.002 +Masood Masoodian,Video Support for Shared Work-Space Interaction: An Empirical Study.,1995,7,Interacting with Computers,3,db/journals/iwc/iwc7.html#MasoodianAF95,https://doi.org/10.1016/0953-5438(95)93603-3 +Gesa Alena Linnemann,'Can I Trust the Spoken Dialogue System Because It Uses the Same Words as I Do?' - Influence of Lexically Aligned Spoken Dialogue Systems on Trustworthiness and User Satisfaction.,2018,30,Interacting with Computers,3,db/journals/iwc/iwc30.html#LinnemannJ18,https://doi.org/10.1093/iwc/iwy005 +Timothy W. Bickmore,'It's just like you talk to a friend' relational agents for older adults.,2005,17,Interacting with Computers,6,db/journals/iwc/iwc17.html#BickmoreCCH05,https://doi.org/10.1016/j.intcom.2005.09.002 +Andy Smith,Using the LUCID Method to Optimize the Acceptability of Shared Interfaces.,1998,9,Interacting with Computers,3,db/journals/iwc/iwc9.html#SmithD98,https://doi.org/10.1016/S0953-5438(97)00029-5 +Taejin Ha,An interactive 3D movement path manipulation method in an augmented reality environment.,2012,24,Interacting with Computers,1,db/journals/iwc/iwc24.html#HaBW12,https://doi.org/10.1016/j.intcom.2011.06.006 +John J. Bosley,Gauging Engagement in Video Games: Does Game Violence Relate to Player Behavior? Report on a Study.,2013,25,Interacting with Computers,4,db/journals/iwc/iwc25.html#Bosley13,https://doi.org/10.1093/iwc/iwt006 +P. S. Anderson,An Interface Prototyping System Based on Lean Cuisine.,1990,2,Interacting with Computers,2,db/journals/iwc/iwc2.html#AndersonA90,https://doi.org/10.1016/0953-5438(90)90025-D +Chaomei Chen,How did university departments interweave the Web: A study of connectivity and underlying factors.,1998,10,Interacting with Computers,4,db/journals/iwc/iwc10.html#ChenNNR98,https://doi.org/10.1016/S0953-5438(97)00034-9 +J. Carter,Incorporating standards and guidelines in an approach that balances usability concerns for developers and end users.,1999,12,Interacting with Computers,2,db/journals/iwc/iwc12.html#Carter99,https://doi.org/10.1016/S0953-5438(99)00011-9 +Claire O'Malley,Comparison of Face-to-Face and Video-Mediated Interaction.,1996,8,Interacting with Computers,2,db/journals/iwc/iwc8.html#OMalleyLADB96,https://doi.org/10.1016/0953-5438(96)01027-2 +Kine Dørum,Efficient electronic navigation: A metaphorical question?,2011,23,Interacting with Computers,2,db/journals/iwc/iwc23.html#DorumG11,https://doi.org/10.1016/j.intcom.2010.11.003 +Judi R. Thomson,Automatic generation of instructional hypermedia with APHID.,2001,13,Interacting with Computers,6,db/journals/iwc/iwc13.html#ThomsonGC01,https://doi.org/10.1016/S0953-5438(01)00036-4 +Femke Nijboer,Usability of Three Electroencephalogram Headsets for Brain-Computer Interfaces: A Within Subject Comparison.,2015,27,Interacting with Computers,5,db/journals/iwc/iwc27.html#NijboerLGNP15,https://doi.org/10.1093/iwc/iwv023 +Samuel Marcos Pablos,Dynamic Facial Emotion Recognition Oriented to HCI Applications.,2015,27,Interacting with Computers,2,db/journals/iwc/iwc27.html#PablosGCL15,https://doi.org/10.1093/iwc/iwt057 +Debaleena Chattopadhyay,Motor-Intuitive Interactions Based on Image Schemas: Aligning Touchless Interaction Primitives with Human Sensorimotor Abilities.,2015,27,Interacting with Computers,3,db/journals/iwc/iwc27.html#ChattopadhyayB15,https://doi.org/10.1093/iwc/iwu045 +Timothy W. Bickmore,Maintaining reality: Relational agents for antipsychotic medication adherence.,2010,22,Interacting with Computers,4,db/journals/iwc/iwc22.html#BickmorePSPS10,https://doi.org/10.1016/j.intcom.2010.02.001 +Steinar Kristoffersen,MobiCom: networking dispersed groups.,1998,10,Interacting with Computers,1,db/journals/iwc/iwc10.html#KristoffersenL98,https://doi.org/10.1016/S0953-5438(97)00035-0 +Chun-Cheng Hsu,The Relationship Between Design Factors and Affective Response in Personalized Blog Interfaces.,2014,26,Interacting with Computers,5,db/journals/iwc/iwc26.html#HsuC14,https://doi.org/10.1093/iwc/iwt045 +Vicki L. Hanson,Influencing technology adoption by older adults.,2010,22,Interacting with Computers,6,db/journals/iwc/iwc22.html#Hanson10,https://doi.org/10.1016/j.intcom.2010.09.001 +Christos Katsanos,Automated semantic elaboration of web site information architecture.,2008,20,Interacting with Computers,6,db/journals/iwc/iwc20.html#KatsanosTA08,https://doi.org/10.1016/j.intcom.2008.08.002 +Paul M. Mullins,A Task-Based Cognitive Model for User-Network Interaction: Defining a Task Taxonomy to Guide the Interface Designer.,1993,5,Interacting with Computers,2,db/journals/iwc/iwc5.html#MullinsT93,https://doi.org/10.1016/0953-5438(93)90016-M +Miriam Clemente,An fMRI Study to Analyze Neural Correlates of Presence during Virtual Reality Experiences.,2014,26,Interacting with Computers,3,db/journals/iwc/iwc26.html#ClementeRRBBBRA14,https://doi.org/10.1093/iwc/iwt037 +Alan F. Newell,Experiences with professional theatre for awareness raising.,2011,23,Interacting with Computers,6,db/journals/iwc/iwc23.html#NewellMGF11,https://doi.org/10.1016/j.intcom.2011.08.002 +Jennifer Preece,Teaching the Practitioners: Developing a Distance Learning Postgraduate HCI Course.,1991,3,Interacting with Computers,1,db/journals/iwc/iwc3.html#PreeceK91,https://doi.org/10.1016/0953-5438(91)90006-N +George Triantafyllakos,"Fictional characters in participatory design sessions: Introducing the ""design alter egos"" technique.",2010,22,Interacting with Computers,3,db/journals/iwc/iwc22.html#TriantafyllakosPT10,https://doi.org/10.1016/j.intcom.2009.12.003 +James P. Downey,Introducing task-based general computer self-efficacy: An empirical comparison of three general self-efficacy instruments.,2007,19,Interacting with Computers,3,db/journals/iwc/iwc19.html#DowneyM07,https://doi.org/10.1016/j.intcom.2006.11.001 +Carl åborg,Integrating work environment considerations into usability evaluation methods - the ADA approach.,2003,15,Interacting with Computers,3,db/journals/iwc/iwc15.html#AborgSGL03,https://doi.org/10.1016/S0953-5438(02)00060-7 +H. W. Killam,Rogerian Psychology and Human-Computer Interaction.,1991,3,Interacting with Computers,1,db/journals/iwc/iwc3.html#Killam91,https://doi.org/10.1016/0953-5438(91)90007-O +John J. Darragh,Adaptive Predictive Text Generation and the Reactive Keyboard.,1991,3,Interacting with Computers,1,db/journals/iwc/iwc3.html#DarraghW91,https://doi.org/10.1016/0953-5438(91)90004-L +Mike Sharples,A Study of Breakdowns and Repairs in a Computer-Mediated Communication System.,1993,5,Interacting with Computers,1,db/journals/iwc/iwc5.html#Sharples93,https://doi.org/10.1016/0953-5438(93)90025-O +Robert Ward,An analysis of facial movement tracking in ordinary human-computer interaction.,2004,16,Interacting with Computers,5,db/journals/iwc/iwc16.html#Ward04,https://doi.org/10.1016/j.intcom.2004.08.002 +Vassilis Kostakos,The social implications of emerging technologies.,2005,17,Interacting with Computers,5,db/journals/iwc/iwc17.html#KostakosOLS05,https://doi.org/10.1016/j.intcom.2005.03.001 +Audrey Girouard,Special Issue: Organic User Interfaces.,2013,25,Interacting with Computers,2,db/journals/iwc/iwc25.html#GirouardVP13,https://doi.org/10.1093/iwc/iws001 +Jan Gulliksen,Usability professionals - current practices and future development.,2006,18,Interacting with Computers,4,db/journals/iwc/iwc18.html#GulliksenBG06,https://doi.org/10.1016/j.intcom.2005.10.005 +Alan J. Dix,"Response to ""Some* it's hard to be a robot: A call for action on the ethics of abusing artificial agents"".",2008,20,Interacting with Computers,3,db/journals/iwc/iwc20.html#Dix08,https://doi.org/10.1016/j.intcom.2008.02.003 +Jörn Hurtienne,Physical gestures for abstract concepts: Inclusive design with primary metaphors.,2010,22,Interacting with Computers,6,db/journals/iwc/iwc22.html#HurtienneSSMRLC10,https://doi.org/10.1016/j.intcom.2010.08.009 +Eva Olsson,What active users and designers contribute in the design process.,2004,16,Interacting with Computers,2,db/journals/iwc/iwc16.html#Olsson04,https://doi.org/10.1016/j.intcom.2004.01.001 +Kwangsu Cho,Fly a Drone Safely: Evaluation of an Embodied Egocentric Drone Controller Interface.,2017,29,Interacting with Computers,3,db/journals/iwc/iwc29.html#ChoCJ17,https://doi.org/10.1093/iwc/iww027 +Stefan L. Pauwels,Error prevention in online forms: Use color instead of asterisks to mark required-fields.,2009,21,Interacting with Computers,4,db/journals/iwc/iwc21.html#PauwelsHLBO09,https://doi.org/10.1016/j.intcom.2009.05.007 +Pei-Luen Patrick Rau,Developing web annotation tools for learners and instructors.,2004,16,Interacting with Computers,2,db/journals/iwc/iwc16.html#RauCC04,https://doi.org/10.1016/j.intcom.2003.10.001 +Raymond S. Nickerson,Electronic Bulletin Boards: A Case Study of Computer-Mediated Communication.,1994,6,Interacting with Computers,2,db/journals/iwc/iwc6.html#Nickerson94,https://doi.org/10.1016/0953-5438(94)90020-5 +Ylva Fernaeus,Designing for programming as joint performances among groups of children.,2006,18,Interacting with Computers,5,db/journals/iwc/iwc18.html#FernaeusT06,https://doi.org/10.1016/j.intcom.2006.05.004 +John A. Waterworth,Special issue: Presence and interaction.,2012,24,Interacting with Computers,4,db/journals/iwc/iwc24.html#WaterworthWMR12,https://doi.org/10.1016/j.intcom.2012.05.003 +Jonggi Hong,TouchRoller: A Touch-sensitive Cylindrical Input Device for GUI Manipulation of Interactive TVs.,2016,28,Interacting with Computers,3,db/journals/iwc/iwc28.html#HongKLL16,https://doi.org/10.1093/iwc/iwv006 +Roel Vertegaal,Comparison of Input Devices in an ISEE Direct Timbre Manipulation Task.,1996,8,Interacting with Computers,1,db/journals/iwc/iwc8.html#VertegaalE96,https://doi.org/10.1016/0953-5438(95)01015-7 +Pieter Wouters,The role of Game Discourse Analysis and curiosity in creating engaging and effective serious games by implementing a back story and foreshadowing.,2011,23,Interacting with Computers,4,db/journals/iwc/iwc23.html#WoutersOBS11,https://doi.org/10.1016/j.intcom.2011.05.001 +Wai-Tat Fu,Toward a real-time model-based training system.,2006,18,Interacting with Computers,6,db/journals/iwc/iwc18.html#FuBDHSA06,https://doi.org/10.1016/j.intcom.2006.07.011 +Mark D. Dunlop,Exploring the layers of information retrieval evaluation.,1998,10,Interacting with Computers,3,db/journals/iwc/iwc10.html#DunlopJR98,https://doi.org/10.1016/S0953-5438(98)00014-9 +Robert Spence,Cognitive Assessment of Alternatives.,1991,3,Interacting with Computers,3,db/journals/iwc/iwc3.html#SpenceP91,https://doi.org/10.1016/0953-5438(91)90017-V +William H. Edmondson,Projected Cognition - extending Distributed Cognition for the study of human interaction with computers.,2008,20,Interacting with Computers,1,db/journals/iwc/iwc20.html#EdmondsonB08,https://doi.org/10.1016/j.intcom.2007.10.005 +Tatiana Evreinova,Non-visual game design and training in gameplay skill acquisition - A puzzle game case study.,2008,20,Interacting with Computers,3,db/journals/iwc/iwc20.html#EvreinovaER08,https://doi.org/10.1016/j.intcom.2008.02.008 +Jin-Hyuk Hong,Affect Modeling with Field-based Physiological Responses.,2015,27,Interacting with Computers,6,db/journals/iwc/iwc27.html#HongD15,https://doi.org/10.1093/iwc/iwu014 +Zheshen Wang,Fast and independent access to map directions for people who are blind.,2012,24,Interacting with Computers,2,db/journals/iwc/iwc24.html#WangLL12,https://doi.org/10.1016/j.intcom.2012.02.002 +Jinkyu Jang,Effects of Temporal Format of Everyday Video on Narrative Engagement and Social Interactivity.,2016,28,Interacting with Computers,6,db/journals/iwc/iwc28.html#JangKSAK16,https://doi.org/10.1093/iwc/iwv043 +Matthias Rehm,She is just stupid - Analyzing user-agent interactions in emotional game situations.,2008,20,Interacting with Computers,3,db/journals/iwc/iwc20.html#Rehm08,https://doi.org/10.1016/j.intcom.2008.02.005 +Jakub Mlynár,Corrigendum: Situated Organization of Video-Mediated Interaction: A Review of Ethnomethodological and Conversation Analytic Studies.,2018,30,Interacting with Computers,2,db/journals/iwc/iwc30.html#MlynarGL18a,https://doi.org/10.1093/iwc/iwy004 +David G. Novick,Enhancing the Efficiency of Multiparty Interaction Through Computer Mediation.,1990,2,Interacting with Computers,2,db/journals/iwc/iwc2.html#NovickW90,https://doi.org/10.1016/0953-5438(90)90026-E +Stephan Schlögl,Wizard of Oz Experimentation for Language Technology Applications: Challenges and Tools.,2015,27,Interacting with Computers,6,db/journals/iwc/iwc27.html#SchloglDL15,https://doi.org/10.1093/iwc/iwu016 +Gregory Z. Bedny,Working sphere/engagement and the concept of task in activity theory.,2008,20,Interacting with Computers,2,db/journals/iwc/iwc20.html#BednyH08,https://doi.org/10.1016/j.intcom.2007.07.005 +Paul Vickers,Using music to communicate computing information.,2002,14,Interacting with Computers,5,db/journals/iwc/iwc14.html#VickersA02,https://doi.org/10.1016/S0953-5438(02)00003-6 +Niels Ole Bernsen,Foundations of Multimodal Representations: A Taxonomy of Representational Modalities.,1994,6,Interacting with Computers,4,db/journals/iwc/iwc6.html#Bernsen94,https://doi.org/10.1016/0953-5438(94)90008-6 +Christian Dörner,Supporting business process experts in tailoring business processes.,2011,23,Interacting with Computers,3,db/journals/iwc/iwc23.html#DornerYPW11,https://doi.org/10.1016/j.intcom.2011.03.001 +Luis A. Leiva,The Kinematic Theory Produces Human-Like Stroke Gestures.,2017,29,Interacting with Computers,4,db/journals/iwc/iwc29.html#LeivaMP17,https://doi.org/10.1093/iwc/iww039 +A. Brooks,Inductive Analysis Applied to the Evaluation of a CAL Tutorial.,1989,1,Interacting with Computers,2,db/journals/iwc/iwc1.html#BrooksV89,https://doi.org/10.1016/0953-5438(89)90023-4 +Thomas T. Hewett,Importance of Failure Analysis for Human-Computer Interface Design.,1991,3,Interacting with Computers,1,db/journals/iwc/iwc3.html#Hewett91,https://doi.org/10.1016/0953-5438(91)90002-J +Ave Wrigley,In Defense of Sublinguistics.,1993,5,Interacting with Computers,4,db/journals/iwc/iwc5.html#Wrigley93,https://doi.org/10.1016/0953-5438(93)90007-G +Gary W. Strong,Visual Guidance for Information Navigation: A Computer-Human Interface Design Principle Derived from Cognitive Neuroscience.,1991,3,Interacting with Computers,2,db/journals/iwc/iwc3.html#StrongS91,https://doi.org/10.1016/0953-5438(91)90013-R +Xristine Faulkner,When fingers do the talking: a study of text messaging.,2005,17,Interacting with Computers,2,db/journals/iwc/iwc17.html#FaulknerC05,https://doi.org/10.1016/j.intcom.2004.11.002 +Colin C. Charlton,Bringing the internet to the community.,1999,12,Interacting with Computers,1,db/journals/iwc/iwc12.html#CharltonGLLN99,https://doi.org/10.1016/S0953-5438(98)00055-1 +Kening Zhu,Designing Interactive Paper-Craft Systems with Selective Inductive Power Transmission.,2013,25,Interacting with Computers,2,db/journals/iwc/iwc25.html#ZhuNFKAC13,https://doi.org/10.1093/iwc/iws019 +Sangwon Lee,The Potential of a Text-Based Interface as a Design Medium: An Experiment in a Computer Animation Environment.,2016,28,Interacting with Computers,1,db/journals/iwc/iwc28.html#LeeY16,https://doi.org/10.1093/iwc/iwu036 +Julie A. Jacko,The Identifiability of Auditory Icons for Use in Educational Software for Children.,1996,8,Interacting with Computers,2,db/journals/iwc/iwc8.html#Jacko96,https://doi.org/10.1016/0953-5438(96)01023-5 +Simon M. Kaplan,Incremental Maintenance of Semantic Links in Dynamically Changing Hypertext Systems.,1990,2,Interacting with Computers,3,db/journals/iwc/iwc2.html#KaplanM90,https://doi.org/10.1016/0953-5438(90)90006-4 +Rachel F. Adler,The Effects of Task Difficulty and Multitasking on Performance.,2015,27,Interacting with Computers,4,db/journals/iwc/iwc27.html#AdlerB15,https://doi.org/10.1093/iwc/iwu005 +Bendik Bygstad,Software development methods and usability: Perspectives from a survey in the software industry in Norway.,2008,20,Interacting with Computers,3,db/journals/iwc/iwc20.html#BygstadGB08,https://doi.org/10.1016/j.intcom.2007.12.001 +Dan Diaper,Reactionary reactions to altering activity theory.,2008,20,Interacting with Computers,2,db/journals/iwc/iwc20.html#Diaper08,https://doi.org/10.1016/j.intcom.2007.10.001 +Shari Trewin,Abstract representations as a basis for usable user interfaces.,2004,16,Interacting with Computers,3,db/journals/iwc/iwc16.html#TrewinZV04,https://doi.org/10.1016/j.intcom.2004.04.005 +Zhiying Zhou,An experimental study on the role of software synthesized 3D sound in augmented reality environments.,2004,16,Interacting with Computers,5,db/journals/iwc/iwc16.html#ZhouCYQ04,https://doi.org/10.1016/j.intcom.2004.06.014 +David W. Eccles,Agent coordination and communication in sociotechnological systems: Design and measurement issues.,2006,18,Interacting with Computers,6,db/journals/iwc/iwc18.html#EcclesG06,https://doi.org/10.1016/j.intcom.2006.06.001 +Robert Ravnik,Audience Measurement of Digital Signage: Quantitative Study in Real-World Environment Using Computer Vision.,2013,25,Interacting with Computers,3,db/journals/iwc/iwc25.html#RavnikS13,https://doi.org/10.1093/iwc/iws023 +J. M. Christian Bastien,The ergonomic criteria and the ISO/DIS 9241-10 dialogue principles: a pilot comparison in an evaluation task.,1999,11,Interacting with Computers,3,db/journals/iwc/iwc11.html#BastienSL99,https://doi.org/10.1016/S0953-5438(98)00038-1 +Olivier Christmann,Visual search in dynamic 3D visualisations of unstructured picture collections.,2010,22,Interacting with Computers,5,db/journals/iwc/iwc22.html#ChristmannCR10,https://doi.org/10.1016/j.intcom.2010.02.005 +Stephen H. Fairclough,Applications and Issues for Physiological Computing Systems: An Introduction to the Special Issue.,2015,27,Interacting with Computers,5,db/journals/iwc/iwc27.html#FaircloughSGGB15,https://doi.org/10.1093/iwc/iwv026 +Cristina Manresa-Yee,User experience to improve the usability of a vision-based interface.,2010,22,Interacting with Computers,6,db/journals/iwc/iwc22.html#Manresa-YeePVL10,https://doi.org/10.1016/j.intcom.2010.06.004 +Hartmut Fritzsche,Formalization and proof of design guidelines within the scope of testing formally specified electronic product catalogues.,2000,12,Interacting with Computers,3,db/journals/iwc/iwc12.html#FritzscheM00,https://doi.org/10.1016/S0953-5438(99)00012-0 +Jean Scholtz,Using Unfamiliar Programming Languages: The Effects on Expertise.,1993,5,Interacting with Computers,1,db/journals/iwc/iwc5.html#ScholtzW93,https://doi.org/10.1016/0953-5438(93)90023-M +Federica Cena,Adapting the interaction in a call centre system.,2006,18,Interacting with Computers,3,db/journals/iwc/iwc18.html#CenaT06,https://doi.org/10.1016/j.intcom.2005.11.007 +Winslow Burleson,The emergence of physiological computing.,2004,16,Interacting with Computers,5,db/journals/iwc/iwc16.html#Burleson04, +Chungnan Lee,Distributed visual reasoning for intelligent information retrieval on the Web.,2000,12,Interacting with Computers,5,db/journals/iwc/iwc12.html#LeeC00,https://doi.org/10.1016/S0953-5438(99)00017-X +José A. Macías,Customization of Web applications through an intelligent environment exploiting logical interface descriptions.,2008,20,Interacting with Computers,1,db/journals/iwc/iwc20.html#MaciasP08,https://doi.org/10.1016/j.intcom.2007.07.007 +Alan Burton,Effects of Linguistic Sophistication on the Usability of a Natural Language Interface.,1993,5,Interacting with Computers,1,db/journals/iwc/iwc5.html#BurtonS93,https://doi.org/10.1016/0953-5438(93)90024-N +Kate S. Hone,Empathic agents to reduce user frustration: The effects of varying agent characteristics.,2006,18,Interacting with Computers,2,db/journals/iwc/iwc18.html#Hone06,https://doi.org/10.1016/j.intcom.2005.05.003 +Astro Teller,A platform for wearable physiological computing.,2004,16,Interacting with Computers,5,db/journals/iwc/iwc16.html#Teller04,https://doi.org/10.1016/j.intcom.2004.08.004 +Chee Siang Ang,A model of cognitive loads in massively multiplayer online role playing games.,2007,19,Interacting with Computers,2,db/journals/iwc/iwc19.html#AngZM07,https://doi.org/10.1016/j.intcom.2006.08.006 +Mahdi Nasrullah Al-Ameen,Exploring the Potential of GeoPass: A Geographic Location-Password Scheme.,2017,29,Interacting with Computers,4,db/journals/iwc/iwc29.html#Al-AmeenW17,https://doi.org/10.1093/iwc/iww033 +Jeff Sauro,A Single-Item Measure of Website Usability: Comments on Christophersen and Konradt (2011).,2013,25,Interacting with Computers,4,db/journals/iwc/iwc25.html#Sauro13a,https://doi.org/10.1093/iwc/iwt018 +Tapani Savolainen,Expanding Human-Computer Interaction by Computer-Aided Creativity.,1990,2,Interacting with Computers,2,db/journals/iwc/iwc2.html#Savolainen90,https://doi.org/10.1016/0953-5438(90)90021-9 +Geraldine Fitzpatrick,Process Support: Inflexible Imposition or Chaotic Composition?,1995,7,Interacting with Computers,2,db/journals/iwc/iwc7.html#FitzpatrickW95,https://doi.org/10.1016/0953-5438(95)93507-2 +Robert Spence,The Attribute Explorer: information synthesis via exploration.,1998,11,Interacting with Computers,2,db/journals/iwc/iwc11.html#SpenceT98,https://doi.org/10.1016/S0953-5438(98)00022-8 +Jill P. Dimond,Domestic violence and information communication technologies.,2011,23,Interacting with Computers,5,db/journals/iwc/iwc23.html#DimondFB11,https://doi.org/10.1016/j.intcom.2011.04.006 +Zhen Bai,Analytic review of usability evaluation in ISMAR.,2012,24,Interacting with Computers,6,db/journals/iwc/iwc24.html#BaiB12,https://doi.org/10.1016/j.intcom.2012.07.004 +Miguel ángel García-Ruíz,An overview of auditory display to assist comprehension of molecular information.,2006,18,Interacting with Computers,4,db/journals/iwc/iwc18.html#Garcia-RuizG06,https://doi.org/10.1016/j.intcom.2005.12.001 +Fabio Paternò,Understanding interaction with mobile devices.,2003,15,Interacting with Computers,4,db/journals/iwc/iwc15.html#Paterno03,https://doi.org/10.1016/S0953-5438(03)00041-9 +Sheryl Brahnam,Gender affordances of conversational agents.,2012,24,Interacting with Computers,3,db/journals/iwc/iwc24.html#BrahnamA12,https://doi.org/10.1016/j.intcom.2012.05.001 +Bernhard Klein,User-Aware Location Management of Prosumed Micro-services.,2014,26,Interacting with Computers,2,db/journals/iwc/iwc26.html#KleinLGP14,https://doi.org/10.1093/iwc/iwt040 +Donald L. Day,Editorial: Shared Values and Shared Interfaces: The Role of Culture in the Globalisation of Human-Computer Systems.,1998,9,Interacting with Computers,3,db/journals/iwc/iwc9.html#Day98,https://doi.org/10.1016/S0953-5438(97)00025-8 +Boris E. R. de Ruyter,Assessing the effects of building social intelligence in a robotic interface for the home.,2005,17,Interacting with Computers,5,db/journals/iwc/iwc17.html#RuyterSMB05,https://doi.org/10.1016/j.intcom.2005.03.003 +P. T. Hughes,Understanding and Uncovering Design Issues in Synchronous Shared-Window Conferencing.,1993,5,Interacting with Computers,1,db/journals/iwc/iwc5.html#HughesMP93,https://doi.org/10.1016/0953-5438(93)90027-Q +Dong-Seok Lee,Coupling structural and functional models for interaction design.,2004,16,Interacting with Computers,1,db/journals/iwc/iwc16.html#LeeY04,https://doi.org/10.1016/j.intcom.2003.09.008 +H. M. Sayers,"Corrigendum to ""Desktop virtual environments: a study of navigation and age"" [Interacting with Computers 16 (2004) 939-956].",2007,19,Interacting with Computers,1,db/journals/iwc/iwc19.html#Sayers07,https://doi.org/10.1016/j.intcom.2006.08.004 +R. B. Jones,Where Should a Public Access Health Information System be Sited?,1993,5,Interacting with Computers,4,db/journals/iwc/iwc5.html#EdgertonBNRBM93,https://doi.org/10.1016/0953-5438(93)90005-E +Robert Douglas Ferguson,A Framework for Negotiating Ethics in Sensitive Settings: Hospice as a Case Study.,2017,29,Interacting with Computers,1,db/journals/iwc/iwc29.html#FergusonCM17,https://doi.org/10.1093/iwc/iww018 +Susanne Tak,Satisficing and the Use of Keyboard Shortcuts: Being Good Enough Is Enough?,2013,25,Interacting with Computers,5,db/journals/iwc/iwc25.html#TakWR13,https://doi.org/10.1093/iwc/iwt016 +Barbara Paterson,Interpretation of a cross-cultural usability evaluation: A case study based on a hypermedia system for rare species management in Namibia.,2011,23,Interacting with Computers,3,db/journals/iwc/iwc23.html#PatersonWDSU11,https://doi.org/10.1016/j.intcom.2011.03.002 +Brad A. Myers,Using handhelds for wireless remote control of PCs and appliances.,2005,17,Interacting with Computers,3,db/journals/iwc/iwc17.html#Myers05,https://doi.org/10.1016/j.intcom.2004.06.010 +J. Terry Mayes,Cognitive and Educational Aspects of Desktop Videoconferencing (Part 1).,1996,8,Interacting with Computers,2,db/journals/iwc/iwc8.html#MayesF96,https://doi.org/10.1016/0953-5438(96)01024-7 +Dac Khoa Doan,Multi-Paradigm Query Interface to an Object-Oriented Database.,1995,7,Interacting with Computers,1,db/journals/iwc/iwc7.html#DoanPKa95,https://doi.org/10.1016/0953-5438(95)90818-6 +Stuart Moran,Introduction to the Special Section: The Social Implications of Embedded Systems.,2013,25,Interacting with Computers,3,db/journals/iwc/iwc25.html#MoranV13,https://doi.org/10.1093/iwc/iwt022 +Irene A. Ioannidou,An interactive computer graphics interface for the introduction of fuzzy inference in environmental education.,2006,18,Interacting with Computers,4,db/journals/iwc/iwc18.html#IoannidouPT06,https://doi.org/10.1016/j.intcom.2005.10.007 +Javier Calle-Gómez,Intentional processing as a key for rational behaviour through Natural Interaction.,2006,18,Interacting with Computers,6,db/journals/iwc/iwc18.html#Calle-GomezGM06,https://doi.org/10.1016/j.intcom.2006.05.002 +M. A. Finch,Cursor type and response conflict in graphical user interfaces.,2007,19,Interacting with Computers,1,db/journals/iwc/iwc19.html#FinchPM07,https://doi.org/10.1016/j.intcom.2006.06.002 +Daniel Gooch,The Impact of Social Presence on Feelings of Closeness in Personal Relationships.,2015,27,Interacting with Computers,6,db/journals/iwc/iwc27.html#GoochW15,https://doi.org/10.1093/iwc/iwu020 +Chris W. Johnson 0001,Representing the impact of time on human error and systems failure.,1998,11,Interacting with Computers,1,db/journals/iwc/iwc11.html#Johnson98,https://doi.org/10.1016/S0953-5438(98)00034-4 +Ji-Ye Mao,Exploring the potential of unobtrusive proactive task support.,2003,15,Interacting with Computers,2,db/journals/iwc/iwc15.html#MaoL03,https://doi.org/10.1016/S0953-5438(02)00055-3 +Peter Sawyer,Database Systems: Challenges and Opportunities for Graphical HCI.,1995,7,Interacting with Computers,3,db/journals/iwc/iwc7.html#SawyerM95,https://doi.org/10.1016/0953-5438(95)93605-5 +Andri Ioannou,Let'S Talk About Technology for Peace: A Systematic Assessment of Problem-Based Group Collaboration Around an Interactive Tabletop.,2015,27,Interacting with Computers,2,db/journals/iwc/iwc27.html#IoannouZLV15,https://doi.org/10.1093/iwc/iwt061 +Jane Coughlan,Moving face-to-face communication to Web-based systems.,2007,19,Interacting with Computers,1,db/journals/iwc/iwc19.html#CoughlanMP07,https://doi.org/10.1016/j.intcom.2006.07.006 +Gennaro Tartarisco,Neuro-Fuzzy Physiological Computing to Assess Stress Levels in Virtual Reality Therapy.,2015,27,Interacting with Computers,5,db/journals/iwc/iwc27.html#TartariscoCTBAC15,https://doi.org/10.1093/iwc/iwv010 +Maria da Graça Campos Pimentel,Supporting educational activities through dynamic web interfaces.,2001,13,Interacting with Computers,3,db/journals/iwc/iwc13.html#PimentelIKAG01,https://doi.org/10.1016/S0953-5438(00)00042-4 +Michael A. Forrester,HCI 'Intraface Model' for System Design.,1990,2,Interacting with Computers,3,db/journals/iwc/iwc2.html#ForresterR90,https://doi.org/10.1016/0953-5438(90)90002-Y +Domen Novak,A survey of methods for data fusion and system adaptation using autonomic nervous system responses in physiological computing.,2012,24,Interacting with Computers,3,db/journals/iwc/iwc24.html#NovakMM12,https://doi.org/10.1016/j.intcom.2012.04.003 +Johannes Moskaliuk,Automatic detection of accommodation steps as an indicator of knowledge maturing.,2011,23,Interacting with Computers,3,db/journals/iwc/iwc23.html#MoskaliukRDWLKC11,https://doi.org/10.1016/j.intcom.2011.03.006 +Françoise Détienne,Collaborative design: Managing task interdependencies and multiple perspectives.,2006,18,Interacting with Computers,1,db/journals/iwc/iwc18.html#Detienne06,https://doi.org/10.1016/j.intcom.2005.05.001 +Richard H. R. Harper,Locating Systems at Work: Implications for the Development of Active Badge Applications.,1992,4,Interacting with Computers,3,db/journals/iwc/iwc4.html#HarperLN92,https://doi.org/10.1016/0953-5438(92)90022-8 +Dan Diaper,The Discipline of HCI.,1989,1,Interacting with Computers,1,db/journals/iwc/iwc1.html#Diaper89,https://doi.org/10.1016/0953-5438(89)90002-7 +Faouzi Moussa,A model based approach to semi-automated user interface generation for process control interactive applications.,2000,12,Interacting with Computers,3,db/journals/iwc/iwc12.html#MoussaKR00,https://doi.org/10.1016/S0953-5438(99)00014-4 +Antonella De Angeli,Introducing ATMs in India: a contextual inquiry.,2004,16,Interacting with Computers,1,db/journals/iwc/iwc16.html#AngeliAJCJ04,https://doi.org/10.1016/j.intcom.2003.11.003 +Thomas R. G. Green,Delivering Cognitive Psychology to HCI: The Problems of Common Language and of Knowledge Transfer.,1996,8,Interacting with Computers,1,db/journals/iwc/iwc8.html#GreenDG96,https://doi.org/10.1016/0953-5438(95)01020-3 +Andrea Kleinsmith,Cross-cultural differences in recognizing affect from body posture.,2006,18,Interacting with Computers,6,db/journals/iwc/iwc18.html#KleinsmithSB06,https://doi.org/10.1016/j.intcom.2006.04.003 +Andy Cockburn,Four Principles of Groupware Design.,1995,7,Interacting with Computers,2,db/journals/iwc/iwc7.html#CockburnJ95,https://doi.org/10.1016/0953-5438(95)93509-4 +Arto Lehtiniemi,Socially Augmented Music Discovery with Collaborative Playlists and Mood Pictures.,2017,29,Interacting with Computers,3,db/journals/iwc/iwc29.html#LehtiniemiOV17,https://doi.org/10.1093/iwc/iww032 +Clarisse Sieckenius de Souza,A framework for analyzing and understanding online communities.,2004,16,Interacting with Computers,3,db/journals/iwc/iwc16.html#SouzaP04,https://doi.org/10.1016/j.intcom.2003.12.006 +George D. Magoulas,Human factors in personalised systems and services.,2006,18,Interacting with Computers,3,db/journals/iwc/iwc18.html#MagoulasC06,https://doi.org/10.1016/j.intcom.2005.11.001 +Jennifer S. Pearson,The Digital Reading Desk: A lightweight approach to digital note-taking.,2012,24,Interacting with Computers,5,db/journals/iwc/iwc24.html#PearsonBTJ12,https://doi.org/10.1016/j.intcom.2012.03.001 +Huawei Tu,IWC Special Issue in Human Factors and Interaction Design for Critical Systems.,2016,28,Interacting with Computers,2,db/journals/iwc/iwc28.html#TuMVLT16,https://doi.org/10.1093/iwc/iwv038 +Luke Hespanhol,Strategies for Intuitive Interaction in Public Urban Spaces.,2015,27,Interacting with Computers,3,db/journals/iwc/iwc27.html#HespanholT15,https://doi.org/10.1093/iwc/iwu051 +James C. Gee,User Interface Design for Medical Imaging Workstations: Image Display and Processing.,1993,5,Interacting with Computers,3,db/journals/iwc/iwc5.html#GeeBHK93,https://doi.org/10.1016/0953-5438(93)90011-H +Andol Xiangdong Li,Improving the User Engagement in Large Display Using Distance-Driven Adaptive Interface.,2016,28,Interacting with Computers,4,db/journals/iwc/iwc28.html#LiLHP16,https://doi.org/10.1093/iwc/iwv021 +Michael A. Brown,Tailored Scenarios: A Low-Cost Online Method to Elicit Perceptions of Home Technologies Using Participant-Specific Contextual Information.,2015,27,Interacting with Computers,1,db/journals/iwc/iwc27.html#BrownCBLHMGA15,https://doi.org/10.1093/iwc/iwu028 +Stefano Mizzaro,How many relevances in information retrieval?,1998,10,Interacting with Computers,3,db/journals/iwc/iwc10.html#Mizzaro98,https://doi.org/10.1016/S0953-5438(98)00012-5 +Mark van Setten,Goal-based structuring in recommender systems.,2006,18,Interacting with Computers,3,db/journals/iwc/iwc18.html#SettenVND06,https://doi.org/10.1016/j.intcom.2005.11.005 +Ann Light,Designing to persuade: the use of emotion in networked media.,2004,16,Interacting with Computers,4,db/journals/iwc/iwc16.html#Light04,https://doi.org/10.1016/j.intcom.2004.06.007 +Michael D. Wallace,Approaches to Interface Design.,1993,5,Interacting with Computers,3,db/journals/iwc/iwc5.html#WallaceA93,https://doi.org/10.1016/0953-5438(93)90010-Q +Mariano Garcia,Development and Validation of Icons Varying in their Abstractness.,1994,6,Interacting with Computers,2,db/journals/iwc/iwc6.html#GarciaBS94,https://doi.org/10.1016/0953-5438(94)90024-8 +Andy McKinlay,Studies of Turn-Taking in Computer-Mediated Communication.,1994,6,Interacting with Computers,2,db/journals/iwc/iwc6.html#McKinlayPMWA94,https://doi.org/10.1016/0953-5438(94)90022-1 +Yu-Chen Hsu,The long-term effects of integral versus composite metaphors on experts' and novices' search behaviors.,2005,17,Interacting with Computers,4,db/journals/iwc/iwc17.html#Hsu05,https://doi.org/10.1016/j.intcom.2005.01.006 +Alexander Serenko,Are interface agents scapegoats? Attributions of responsibility in human-agent interaction.,2007,19,Interacting with Computers,2,db/journals/iwc/iwc19.html#Serenko07,https://doi.org/10.1016/j.intcom.2006.07.005 +Susan Wiedenbeck,A comparison of the comprehension of object-oriented and procedural programs by novice programmers.,1999,11,Interacting with Computers,3,db/journals/iwc/iwc11.html#WiedenbeckRSC99,https://doi.org/10.1016/S0953-5438(98)00029-0 +Kim M. Fairchild,A Formal Structure for Automatic Icons.,1989,1,Interacting with Computers,2,db/journals/iwc/iwc1.html#FairchildMW89,https://doi.org/10.1016/0953-5438(89)90021-0 +Mary A. Keeler,The Challenge of Interface Design for Communication Theory: From Interaction Metaphor to Contexts of Discovery.,1991,3,Interacting with Computers,3,db/journals/iwc/iwc3.html#KeelerD91,https://doi.org/10.1016/0953-5438(91)90018-W +Guillaume Chanel,Connecting Brains and Bodies: Applying Physiological Computing to Support Social Interaction.,2015,27,Interacting with Computers,5,db/journals/iwc/iwc27.html#ChanelM15,https://doi.org/10.1093/iwc/iwv013 +John M. Carroll,Awareness and teamwork in computer-supported collaborations.,2006,18,Interacting with Computers,1,db/journals/iwc/iwc18.html#CarrollRCG06,https://doi.org/10.1016/j.intcom.2005.05.005 +Mattias Arvola,Grading in interaction design education using design practitioners' conceptions of process quality.,2012,24,Interacting with Computers,6,db/journals/iwc/iwc24.html#Arvola12,https://doi.org/10.1016/j.intcom.2012.09.002 +Jean Scholtz,Metrics for evaluating human information interaction systems.,2006,18,Interacting with Computers,4,db/journals/iwc/iwc18.html#Scholtz06,https://doi.org/10.1016/j.intcom.2005.10.004 +Evangelos Karapanos,Does locality make a difference? Assessing the effectiveness of location-aware narratives.,2012,24,Interacting with Computers,4,db/journals/iwc/iwc24.html#KarapanosBNN12,https://doi.org/10.1016/j.intcom.2012.03.005 +Janet C. Read,A study of the usability of handwriting recognition for text entry by children.,2007,19,Interacting with Computers,1,db/journals/iwc/iwc19.html#Read07,https://doi.org/10.1016/j.intcom.2006.08.009 +Dan Diaper,Tasks for and tasks in human-computer interaction.,2006,18,Interacting with Computers,1,db/journals/iwc/iwc18.html#DiaperS06,https://doi.org/10.1016/j.intcom.2005.06.004 +Yvonne Wærn,Editorial.,2003,15,Interacting with Computers,6,db/journals/iwc/iwc15.html#Waern03,https://doi.org/10.1016/j.intcom.2003.09.002 +Gillian May Wilson,From doing to being: getting closer to the user experience.,2004,16,Interacting with Computers,4,db/journals/iwc/iwc16.html#WilsonS04,https://doi.org/10.1016/j.intcom.2004.06.001 +Roger Whitham,The Function and Future of the Folder.,2017,29,Interacting with Computers,5,db/journals/iwc/iwc29.html#WhithamC17,https://doi.org/10.1093/iwc/iww042 +Arnd Kohrs,Creating user-adapted Websites by the use of collaborative filtering.,2001,13,Interacting with Computers,6,db/journals/iwc/iwc13.html#KohrsM01,https://doi.org/10.1016/S0953-5438(01)00038-8 +Ian Beeson,Exquisite variety: computer as mirror to community.,2002,14,Interacting with Computers,6,db/journals/iwc/iwc14.html#Beeson02,https://doi.org/10.1016/S0953-5438(02)00020-6 +Keith S. Jones,Comparing mouse and steady-state visual evoked response-based control.,2003,15,Interacting with Computers,4,db/journals/iwc/iwc15.html#JonesMMCW03,https://doi.org/10.1016/S0953-5438(03)00052-3 +Inger Boivie,Why usability gets lost or usability in in-house software development.,2003,15,Interacting with Computers,4,db/journals/iwc/iwc15.html#BoivieAPL03,https://doi.org/10.1016/S0953-5438(03)00055-9 +Antti Oulasvirta,Motivations in personalisation behaviour.,2008,20,Interacting with Computers,1,db/journals/iwc/iwc20.html#OulasvirtaB08,https://doi.org/10.1016/j.intcom.2007.06.002 +Manuel Romero Salcedo,Study and analysis of workspace awareness in CDebate: a groupware application for collaborative debates.,2004,16,Interacting with Computers,4,db/journals/iwc/iwc16.html#Romero-SalcedoOSVMRC04,https://doi.org/10.1016/j.intcom.2004.07.004 +Dorothea Kleine,Fairtrade.com versus Fairtrade.org - how Fairtrade organisations use the Internet.,2005,17,Interacting with Computers,1,db/journals/iwc/iwc17.html#Kleine05,https://doi.org/10.1016/j.intcom.2004.10.005 +Ramón López-Cózar,Testing dialogue systems by means of automatic generation of conversations,2002,14,Interacting with Computers,5,db/journals/iwc/iwc14.html#Lopez-CozarTSRS02,https://doi.org/10.1016/S0953-5438(02)00019-X +R. G. Leiser,Exploiting Convergence to Improve Natural Language Understanding.,1989,1,Interacting with Computers,3,db/journals/iwc/iwc1.html#Leiser89,https://doi.org/10.1016/0953-5438(89)90016-7 +Xiaojuan Ma,Developing Design Guidelines for a Visual Vocabulary of Electronic Medical Information to Improve Health Literacy.,2016,28,Interacting with Computers,2,db/journals/iwc/iwc28.html#Ma16,https://doi.org/10.1093/iwc/iwv025 +Clarisse Sieckenius de Souza,Semiotic engineering: bringing designers and users together at interaction time.,2005,17,Interacting with Computers,3,db/journals/iwc/iwc17.html#Souza05,https://doi.org/10.1016/j.intcom.2005.01.007 +ángel Herrero Crespo,Explaining B2C e-commerce acceptance: An integrative model based on the framework by Gatignon and Robertson.,2008,20,Interacting with Computers,2,db/journals/iwc/iwc20.html#CrespoR08,https://doi.org/10.1016/j.intcom.2007.11.005 +Mathilde M. Bekker,An Analysis of User Interface Design Projects: Information Sources and Constraints in Design.,1996,8,Interacting with Computers,1,db/journals/iwc/iwc8.html#BekkerV96,https://doi.org/10.1016/0953-5438(95)01016-5 +Andy Colebourne,MOG User Interface Builder: A Mechanism for Integrating Application and User Interface.,1993,5,Interacting with Computers,3,db/journals/iwc/iwc5.html#ColebourneSS93,https://doi.org/10.1016/0953-5438(93)90013-J +Reza Hazemi,Requirements for Graphical User Interface Development Environments for Groupware.,1996,8,Interacting with Computers,1,db/journals/iwc/iwc8.html#HazemiM96,https://doi.org/10.1016/0953-5438(95)01018-1 +Patrick Langdon,Developing a model of cognitive interaction for analytical inclusive design evaluation.,2010,22,Interacting with Computers,6,db/journals/iwc/iwc22.html#LangdonPC10,https://doi.org/10.1016/j.intcom.2010.08.008 +R. J. W. Sluis-Thiescheffer,Development and application of a framework for comparing early design methods for young children.,2011,23,Interacting with Computers,1,db/journals/iwc/iwc23.html#Sluis-ThieschefferBEVR11,https://doi.org/10.1016/j.intcom.2010.10.002 +Vicente Nacher,Examining the Usability of Touch Screen Gestures for Children With Down Syndrome.,2018,30,Interacting with Computers,3,db/journals/iwc/iwc30.html#NacherCJM18,https://doi.org/10.1093/iwc/iwy011 +Outi Tuisku,Wireless Face Interface: Using voluntary gaze direction and facial muscle activations for human-computer interaction.,2012,24,Interacting with Computers,1,db/journals/iwc/iwc24.html#TuiskuSVRL12,https://doi.org/10.1016/j.intcom.2011.10.002 +Shumin Zhai,In search of effective text input interfaces for off the desktop computing.,2005,17,Interacting with Computers,3,db/journals/iwc/iwc17.html#ZhaiKS05,https://doi.org/10.1016/j.intcom.2003.12.007 +Susanne Bødker,Scenarios in user-centred designsetting the stage for reflection and action.,2000,13,Interacting with Computers,1,db/journals/iwc/iwc13.html#Bodker00,https://doi.org/10.1016/S0953-5438(00)00024-2 +Gabor Aranyi,Using think-aloud and psychometrics to explore users' experience with a news Web site.,2012,24,Interacting with Computers,2,db/journals/iwc/iwc24.html#AranyiSB12,https://doi.org/10.1016/j.intcom.2012.01.001 +Alison Sanford,Audio channel constraints in video-mediated communication.,2004,16,Interacting with Computers,6,db/journals/iwc/iwc16.html#SanfordAM04,https://doi.org/10.1016/j.intcom.2004.06.015 +Bran Knowles,Is Sustainability a Special Case for Persuasion?,2017,29,Interacting with Computers,1,db/journals/iwc/iwc29.html#KnowlesD17,https://doi.org/10.1093/iwc/iww005 +Jenna Burrell,E-graffiti: evaluating real-world use of a context-aware system.,2002,14,Interacting with Computers,4,db/journals/iwc/iwc14.html#BurrellG02,https://doi.org/10.1016/S0953-5438(02)00010-3 +Juliet Richardson,The Role of Task Analysis in Capturing Requirements for Interface Design.,1998,9,Interacting with Computers,4,db/journals/iwc/iwc9.html#RichardsonOS98,https://doi.org/10.1016/S0953-5438(97)00036-2 +Sameer Patil,Enhancing privacy management support in instant messaging.,2010,22,Interacting with Computers,3,db/journals/iwc/iwc22.html#PatilK10,https://doi.org/10.1016/j.intcom.2009.10.002 +Jani Mäntyjärvi,Adapting applications in handheld devices using fuzzy context information.,2003,15,Interacting with Computers,4,db/journals/iwc/iwc15.html#MantyjarviS03,https://doi.org/10.1016/S0953-5438(03)00038-9 +Dario Bonino,DOGeye: Controlling your home with eye interaction.,2011,23,Interacting with Computers,5,db/journals/iwc/iwc23.html#BoninoCCR11,https://doi.org/10.1016/j.intcom.2011.06.002 +Niamh McNamara,The Psychometric Approach to User Satisfaction Measurement.,2013,25,Interacting with Computers,4,db/journals/iwc/iwc25.html#McNamara13,https://doi.org/10.1093/iwc/iwt014 +Rochelle O'Hagan,Visual gesture interfaces for virtual environments.,2002,14,Interacting with Computers,3,db/journals/iwc/iwc14.html#OHaganZR02,https://doi.org/10.1016/S0953-5438(01)00050-9 +Wu-Yuin Hwang,A web-based programming learning environment to support cognitive development.,2008,20,Interacting with Computers,6,db/journals/iwc/iwc20.html#HwangWHHH08,https://doi.org/10.1016/j.intcom.2008.07.002 +Tobias Schwartz,What People Do with Consumption Feedback: A Long-Term Living Lab Study of a Home Energy Management System.,2015,27,Interacting with Computers,6,db/journals/iwc/iwc27.html#SchwartzSJDRWR15,https://doi.org/10.1093/iwc/iwu009 +Andy Smith,Global human-computer systems: cultural determinants of usability.,2004,16,Interacting with Computers,1,db/journals/iwc/iwc16.html#Smith04,https://doi.org/10.1016/j.intcom.2003.11.001 +Herre van Oostendorp,Designing multimedia for human needs and capabilities.,1999,12,Interacting with Computers,1,db/journals/iwc/iwc12.html#OostendorpPA99,https://doi.org/10.1016/S0953-5438(98)00051-4 +Colin Chambers,A study of incidents involving programmable electronic safety-related systems.,1999,11,Interacting with Computers,6,db/journals/iwc/iwc11.html#ChambersCB99,https://doi.org/10.1016/S0953-5438(98)00045-9 +Alistair Sutcliffe,Guest Editors' Introduction.,2010,22,Interacting with Computers,1,db/journals/iwc/iwc22.html#SutcliffeB10,https://doi.org/10.1016/j.intcom.2009.11.005 +Edmund F. LoPresti,Head-operated computer controls: effect of control method on performance for subjects with and without disability.,2002,14,Interacting with Computers,4,db/journals/iwc/iwc14.html#LoprestiBA02,https://doi.org/10.1016/S0953-5438(01)00058-3 +Jayant Venkatanathan,Online Disclosure of Personally Identifiable Information with Strangers: Effects of Public and Private Sharing.,2014,26,Interacting with Computers,6,db/journals/iwc/iwc26.html#VenkatanathanKKG14,https://doi.org/10.1093/iwc/iwt058 +Pauline A. Smith,Hypertext and Expert Systems: The Possibilities for Integration.,1993,5,Interacting with Computers,4,db/journals/iwc/iwc5.html#SmithW93,https://doi.org/10.1016/0953-5438(93)90002-B +Judith Ramsay,A psychological investigation of long retrieval * on the World Wide Web.,1998,10,Interacting with Computers,1,db/journals/iwc/iwc10.html#RamsayBP98,https://doi.org/10.1016/S0953-5438(97)00019-2 +Tobias Uldall-Espersen,Tracing impact in a usability improvement process.,2008,20,Interacting with Computers,1,db/journals/iwc/iwc20.html#Uldall-EspersenFH08,https://doi.org/10.1016/j.intcom.2007.08.001 +Barry A. T. Brown,Why don't telephones have off switches? Understanding the use of everyday technologies.,2000,12,Interacting with Computers,6,db/journals/iwc/iwc12.html#BrownP00,https://doi.org/10.1016/S0953-5438(00)00027-8 +Timo Partala,Exploring the Role of Ten Universal Values in Using Products and Services.,2016,28,Interacting with Computers,3,db/journals/iwc/iwc28.html#PartalaK16,https://doi.org/10.1093/iwc/iwv007 +Saul Greenberg,Human and Technical Factors of Distributed Group Drawing Tools.,1992,4,Interacting with Computers,3,db/journals/iwc/iwc4.html#GreenbergRWB92,https://doi.org/10.1016/0953-5438(92)90023-9 +Sheryl Brahnam,"(Un)dressing the interface: Exposing the foundational HCI metaphor ""computer is woman"".",2011,23,Interacting with Computers,5,db/journals/iwc/iwc23.html#BrahnamKW11,https://doi.org/10.1016/j.intcom.2011.03.008 +Alethea Blackler,Towards Intuitive Interaction Theory.,2015,27,Interacting with Computers,3,db/journals/iwc/iwc27.html#BlacklerP15,https://doi.org/10.1093/iwc/iwv011 +Michael J. O'Grady,Mobile agents for mobile tourists: a user evaluation of Gulliver's Genie.,2005,17,Interacting with Computers,4,db/journals/iwc/iwc17.html#OGradyOS05,https://doi.org/10.1016/j.intcom.2005.01.003 +Dan Diaper,Task scenarios and thought.,2002,14,Interacting with Computers,5,db/journals/iwc/iwc14.html#Diaper02a,https://doi.org/10.1016/S0953-5438(02)00062-0 +Silvia Heinz,Is It Still Where I Expect It? - Users' Current Expectations of Interface Elements on the Most Frequent Types of Websites.,2017,29,Interacting with Computers,3,db/journals/iwc/iwc29.html#HeinzLTFO17,https://doi.org/10.1093/iwc/iww012 +Michail Tsikerdekis,Cumulative Experience and Recent Behavior and their Relation to Content Quality on Wikipedia.,2017,29,Interacting with Computers,5,db/journals/iwc/iwc29.html#Tsikerdekis17,https://doi.org/10.1093/iwc/iwx010 +Hyacinth S. Nwana,The computer science education crisis: fact or illusion?,1997,9,Interacting with Computers,1,db/journals/iwc/iwc9.html#Nwana97,https://doi.org/10.1016/S0953-5438(97)00005-2 +Koichi Tabata,A Knowledge-Based System with Audio-Visual Aids.,1989,1,Interacting with Computers,3,db/journals/iwc/iwc1.html#TabataS89,https://doi.org/10.1016/0953-5438(89)90013-1 +Maria Virvou,Automatic reasoning and help about human errors in using an operating system.,1999,11,Interacting with Computers,5,db/journals/iwc/iwc11.html#Virvou99,https://doi.org/10.1016/S0953-5438(98)00043-5 +Yeliz Yesilada,Barriers common to mobile and disabled web users.,2011,23,Interacting with Computers,5,db/journals/iwc/iwc23.html#YesiladaBH11,https://doi.org/10.1016/j.intcom.2011.05.005 +Michael Muller,"Feminism asks the ""Who"" questions in HCI.",2011,23,Interacting with Computers,5,db/journals/iwc/iwc23.html#Muller11,https://doi.org/10.1016/j.intcom.2011.02.001 +Jonathan Lazar,Severity and impact of computer user frustration: A comparison of student and workplace users.,2006,18,Interacting with Computers,2,db/journals/iwc/iwc18.html#LazarJHS06,https://doi.org/10.1016/j.intcom.2005.06.001 +Dave Clarke 0003,Interfaces for the Active Web (Part 2).,2001,13,Interacting with Computers,6,db/journals/iwc/iwc13.html#ClarkeD01a,https://doi.org/10.1016/S0953-5438(01)00040-6 +Oronzo Parlangeli,Multimedia systems in distance education: effects of usability on learning.,1999,12,Interacting with Computers,1,db/journals/iwc/iwc12.html#ParlangeliMB99,https://doi.org/10.1016/S0953-5438(98)00054-X +James L. Alty,When humans form media and media form humans: An experimental study examining the effects different digital media have on the learning outcomes of students who have different learning styles.,2006,18,Interacting with Computers,5,db/journals/iwc/iwc18.html#AltyAB06,https://doi.org/10.1016/j.intcom.2006.04.002 +Inger Boivie,The lonesome cowboy: A study of the usability designer role in systems development.,2006,18,Interacting with Computers,4,db/journals/iwc/iwc18.html#BoivieGG06,https://doi.org/10.1016/j.intcom.2005.10.003 +Stella Mills,When humans need humans: The lack of use of computer-based ICT in distance pastoral care.,2006,18,Interacting with Computers,4,db/journals/iwc/iwc18.html#Mills06,https://doi.org/10.1016/j.intcom.2006.01.006 +Fabio Paternò,RemUSINE: a bridge between empirical and model-based evaluation when evaluators and users are distant.,2000,13,Interacting with Computers,2,db/journals/iwc/iwc13.html#PaternoB00,https://doi.org/10.1016/S0953-5438(00)00039-4 +Maaike J. Van den Haak,Employing think-aloud protocols and constructive interaction to test the usability of online library catalogues: a methodological comparison.,2004,16,Interacting with Computers,6,db/journals/iwc/iwc16.html#HaakJS04,https://doi.org/10.1016/j.intcom.2004.07.007 +Martin Mihajlov,Intuitive Learnability of Touch Gestures for Technology-Naïve Older Adults.,2015,27,Interacting with Computers,3,db/journals/iwc/iwc27.html#MihajlovLS15,https://doi.org/10.1093/iwc/iwu044 +Conn V. Copas,Intelligent interfaces through interactive planners.,2000,12,Interacting with Computers,6,db/journals/iwc/iwc12.html#CopasE00,https://doi.org/10.1016/S0953-5438(99)00007-7 +Austin Toombs,From Empathy to Care: A Feminist Care Ethics Perspective on Long-Term Researcher-Participant Relations.,2017,29,Interacting with Computers,1,db/journals/iwc/iwc29.html#ToombsGBB17,https://doi.org/10.1093/iwc/iww010 +Anthony Savidis,The HOMER UIMS for dual user interface development: Fusing visual and non-visual interactions.,1998,11,Interacting with Computers,2,db/journals/iwc/iwc11.html#SavidisS98,https://doi.org/10.1016/S0953-5438(98)00025-3 +E. Sillence,Integrated digital communities: combining web-based interaction with text messaging to develop a system for encouraging group communication and competition.,2004,16,Interacting with Computers,1,db/journals/iwc/iwc16.html#SillenceB04,https://doi.org/10.1016/j.intcom.2003.11.007 +Hua Qin,Effects of different scenarios of game difficulty on player immersion.,2010,22,Interacting with Computers,3,db/journals/iwc/iwc22.html#QinRS10,https://doi.org/10.1016/j.intcom.2009.12.004 +Dimitris Grammenos,Integrated support for working with guidelines: the Sherlock guideline management system.,2000,12,Interacting with Computers,3,db/journals/iwc/iwc12.html#GrammenosAS00,https://doi.org/10.1016/S0953-5438(99)00015-6 +Laura Malinverni,An Autoethnographic Approach to Guide Situated Ethical Decisions in Participatory Design with Teenagers.,2017,29,Interacting with Computers,3,db/journals/iwc/iwc29.html#MalinverniP17,https://doi.org/10.1093/iwc/iww031 +Manuela Jungmann,Undesirable Consequences and Social Contexts of Technology Use: A Micro-analysis of Embodied User Interaction.,2017,29,Interacting with Computers,4,db/journals/iwc/iwc29.html#JungmannC17,https://doi.org/10.1093/iwc/iwx002 +John T. Mayes,Learning technology and usability: a framework for understanding courseware.,1999,11,Interacting with Computers,5,db/journals/iwc/iwc11.html#MayesF99,https://doi.org/10.1016/S0953-5438(98)00065-4 +Xabier Valencia,Adapting the Web for People With Upper Body Motor Impairments Using Touch Screen Tablets.,2017,29,Interacting with Computers,6,db/journals/iwc/iwc29.html#ValenciaPAADM17,https://doi.org/10.1093/iwc/iwx013 +Udo Konradt,Measuring Psychological Constructs Using Single-Item Scales: Answers to Experts' Comments and Additional Questions.,2013,25,Interacting with Computers,4,db/journals/iwc/iwc25.html#KonradtC13,https://doi.org/10.1093/iwc/iwt004 +H. M. Sayers,Desktop virtual environments: a study of navigation and age.,2004,16,Interacting with Computers,5,db/journals/iwc/iwc16.html#Sayers04,https://doi.org/10.1016/j.intcom.2004.05.003 +Cyril Montabert,An integrative approach to requirements analysis: How task models support requirements reuse in a user-centric design framework.,2009,21,Interacting with Computers,4,db/journals/iwc/iwc21.html#MontabertMWP09,https://doi.org/10.1016/j.intcom.2009.06.003 +Peter Haumer,Improving reviews of conceptual models by extended traceability to captured system usage.,2000,13,Interacting with Computers,1,db/journals/iwc/iwc13.html#HaumerJPW00,https://doi.org/10.1016/S0953-5438(00)00025-4 +James R. Warren,Supporting special-purpose health care models via adaptive interfaces to the web.,2002,14,Interacting with Computers,3,db/journals/iwc/iwc14.html#WarrenFN02,https://doi.org/10.1016/S0953-5438(01)00043-1 +Grace Begany,Factors Affecting User Perception of a Spoken Language vs. Textual Search Interface: A Content Analysis.,2016,28,Interacting with Computers,2,db/journals/iwc/iwc28.html#BeganySY16,https://doi.org/10.1093/iwc/iwv029 +José Alves Marques,IMAGES: A User Interface Development System.,1991,3,Interacting with Computers,2,db/journals/iwc/iwc3.html#MarquesGS91,https://doi.org/10.1016/0953-5438(91)90008-P +John A. Mariani,TripleSpace: An Experiment in a 3D Graphical Interface to a Binary Relational Database.,1992,4,Interacting with Computers,2,db/journals/iwc/iwc4.html#MarianiL92,https://doi.org/10.1016/0953-5438(92)90001-V +J. Stuart Aitken,An analysis of errors in interactive proof attempts.,2000,12,Interacting with Computers,6,db/journals/iwc/iwc12.html#AitkenM00,https://doi.org/10.1016/S0953-5438(99)00023-5 +Po-Yao Chao,Augmenting paper-based learning with mobile phones.,2009,21,Interacting with Computers,3,db/journals/iwc/iwc21.html#ChaoC09,https://doi.org/10.1016/j.intcom.2009.01.001 +David Benyon,Scenarios and the HCI-SE design problem.,2002,14,Interacting with Computers,4,db/journals/iwc/iwc14.html#BenyonM02,https://doi.org/10.1016/S0953-5438(02)00007-3 +Trevor Hogan,Towards a Design Space for Multisensory Data Representation.,2017,29,Interacting with Computers,2,db/journals/iwc/iwc29.html#HoganH17,https://doi.org/10.1093/iwc/iww015 +Stavros Asimakopoulos,Walking: A Grounded Theory of Social Engagement and Experience.,2017,29,Interacting with Computers,6,db/journals/iwc/iwc29.html#AsimakopoulosD17,https://doi.org/10.1093/iwc/iwx014 +Chris Creed,User interactions with an affective nutritional coach.,2012,24,Interacting with Computers,5,db/journals/iwc/iwc24.html#CreedB12,https://doi.org/10.1016/j.intcom.2012.05.004 +Peter D. Holden,'Working-to-Rules': A Case of Taylor-Made Expert Systems.,1989,1,Interacting with Computers,2,db/journals/iwc/iwc1.html#Holden89,https://doi.org/10.1016/0953-5438(89)90027-1 +Anne Weibert,Extending Value Sensitive Design to Off-the-Shelf Technology: Lessons Learned from a Local Intercultural Computer Club.,2017,29,Interacting with Computers,5,db/journals/iwc/iwc29.html#WeibertRW17,https://doi.org/10.1093/iwc/iwx008 +Antti Oulasvirta,Task demands and memory in web interaction: a levels of processing approach.,2004,16,Interacting with Computers,2,db/journals/iwc/iwc16.html#Oulasvirta04,https://doi.org/10.1016/j.intcom.2003.12.004 +Gilbert Cockton,From doing to being: bringing emotion into interaction (Editorial).,2001,14,Interacting with Computers,2,db/journals/iwc/iwc14.html#Cockton01,https://doi.org/10.1016/S0953-5438(02)00002-4 +Leena Norros,Evaluating the potential of new technological tools for safety critical work.,2011,23,Interacting with Computers,4,db/journals/iwc/iwc23.html#NorrosLH11,https://doi.org/10.1016/j.intcom.2011.05.003 +Ian Hosking,It is normal to be different: Applying inclusive design in industry.,2010,22,Interacting with Computers,6,db/journals/iwc/iwc22.html#HoskingWC10,https://doi.org/10.1016/j.intcom.2010.08.004 +Luc Goffinet,Automatic cross-referencing of HCI guidelines by statistical methods.,1999,12,Interacting with Computers,2,db/journals/iwc/iwc12.html#GoffinetN99,https://doi.org/10.1016/S0953-5438(99)00010-7 +Susann Wagenknecht,The Evocative Object - Introspection and Emotional Reflection Through Computer Use.,2017,29,Interacting with Computers,2,db/journals/iwc/iwc29.html#Wagenknecht17,https://doi.org/10.1093/iwc/iww014 +David Benyon,Special issue on intelligent interface technology: editor's introduction.,2000,12,Interacting with Computers,4,db/journals/iwc/iwc12.html#BenyonM00,https://doi.org/10.1016/S0953-5438(99)00024-7 +Sidney A. Davis,The effect of interaction style and training method on end user learning of software packages.,1998,11,Interacting with Computers,2,db/journals/iwc/iwc11.html#DavisW98,https://doi.org/10.1016/S0953-5438(98)00026-5 +Daniel Gooch,Creating Bridges: The Role of Exploratory Design Research in an Intelligent Tutoring System Project.,2016,28,Interacting with Computers,3,db/journals/iwc/iwc28.html#GoochBKLV16,https://doi.org/10.1093/iwc/iwv009 +Nava Pliskin,Interacting with Electronic Mail Can be a Dream or a Nightmare: A User's Point View.,1989,1,Interacting with Computers,3,db/journals/iwc/iwc1.html#Pliskin89,https://doi.org/10.1016/0953-5438(89)90014-3 +Françoise Détienne,Assessing the cognitive consequences of the object-oriented approach: A survey of empirical research on object-oriented.,1997,9,Interacting with Computers,1,db/journals/iwc/iwc9.html#Detienne97,https://doi.org/10.1016/S0953-5438(97)00006-4 +Eyal Eshet,Context of Use: The Final Frontier in the Practice of User-Centered Design?,2017,29,Interacting with Computers,3,db/journals/iwc/iwc29.html#EshetB17,https://doi.org/10.1093/iwc/iww030 +Muzeyyen Pandir,Homepage aesthetics: The search for preference factors and the challenges of subjectivity.,2006,18,Interacting with Computers,6,db/journals/iwc/iwc18.html#PandirK06,https://doi.org/10.1016/j.intcom.2006.03.007 +Jeff Sauro,Comments on Lascu and Clow (2008).,2013,25,Interacting with Computers,4,db/journals/iwc/iwc25.html#Sauro13,https://doi.org/10.1093/iwc/iwt008 +Dan Diaper,World Wide Web working whilst ignoring graphics: good news for web page designers.,2000,13,Interacting with Computers,2,db/journals/iwc/iwc13.html#DiaperW00,https://doi.org/10.1016/S0953-5438(00)00036-9 +Heather W. Allen,Work process analysis: a necessary step in the development of decision support systems. An aviation safety case study.,1999,11,Interacting with Computers,6,db/journals/iwc/iwc11.html#AllenA99,https://doi.org/10.1016/S0953-5438(98)00047-2 +Timo Partala,The effects of affective interventions in human-computer interaction.,2004,16,Interacting with Computers,2,db/journals/iwc/iwc16.html#PartalaS04,https://doi.org/10.1016/j.intcom.2003.12.001 +Jonathan Grudin,Utility and Usability: Research Issues and Development Contexts.,1992,4,Interacting with Computers,2,db/journals/iwc/iwc4.html#Grudin92,https://doi.org/10.1016/0953-5438(92)90005-Z +Chris W. Johnson 0001,Why human error modeling has failed to help systems development.,1999,11,Interacting with Computers,5,db/journals/iwc/iwc11.html#Johnson99,https://doi.org/10.1016/S0953-5438(98)00041-1 +Yvonne Rogers,Icons at the Interface: Their Usefulness.,1989,1,Interacting with Computers,1,db/journals/iwc/iwc1.html#Rogers89,https://doi.org/10.1016/0953-5438(89)90010-6 +Luciano Meira,A dialogue-based approach for evaluating educational software.,2004,16,Interacting with Computers,4,db/journals/iwc/iwc16.html#MeiraP04,https://doi.org/10.1016/j.intcom.2004.07.002 +Zhen Jia,Effectiveness of Multi-Parameter Compound Tactons for Navigating in a Virtual Urban Environment.,2017,29,Interacting with Computers,4,db/journals/iwc/iwc29.html#JiaLC17,https://doi.org/10.1093/iwc/iww011 +Jan-Maarten Luursema,Optimizing conditions for computer-assisted anatomical learning.,2006,18,Interacting with Computers,5,db/journals/iwc/iwc18.html#LuursemaVKGV06,https://doi.org/10.1016/j.intcom.2006.01.005 +Eyal Eshet,Addressing the Context of Use in Mobile Computing: a Survey on the State of the Practice.,2015,27,Interacting with Computers,4,db/journals/iwc/iwc27.html#EshetB15,https://doi.org/10.1093/iwc/iwu002 +Fredy Cuenca,Graphical Toolkits for Rapid Prototyping of Multimodal Systems: A Survey.,2015,27,Interacting with Computers,4,db/journals/iwc/iwc27.html#CuencaCVL15,https://doi.org/10.1093/iwc/iwu003 +Ian Sommerville,Dependable domestic systems design: A socio-technical approach.,2007,19,Interacting with Computers,4,db/journals/iwc/iwc19.html#SommervilleD07,https://doi.org/10.1016/j.intcom.2007.05.002 +Sharon McDonald,Navigation in hyperspace: An evaluation of the effects of navigational tools and subject matter expertise on browsing and information retrieval in hypertext.,1998,10,Interacting with Computers,2,db/journals/iwc/iwc10.html#McDonaldS98,https://doi.org/10.1016/S0953-5438(98)00017-4 +Siu-Tsen Shen,Towards culture-centred design.,2006,18,Interacting with Computers,4,db/journals/iwc/iwc18.html#ShenWP06,https://doi.org/10.1016/j.intcom.2005.11.014 +Mordechai Ben-Ari,Conceptual models of software artifacts.,2006,18,Interacting with Computers,6,db/journals/iwc/iwc18.html#Ben-AriY06,https://doi.org/10.1016/j.intcom.2006.03.005 +Huimin Qian,Maintaining and modifying pace through tactile and multimodal feedback.,2011,23,Interacting with Computers,3,db/journals/iwc/iwc23.html#QianKSM11,https://doi.org/10.1016/j.intcom.2011.02.007 +James R. Lewis,Critical Review of 'The Intranet Satisfaction Questionnaire: Development and Validation of a Questionnaire to Measure User Satisfaction with the Intranet'.,2013,25,Interacting with Computers,4,db/journals/iwc/iwc25.html#Lewis13,https://doi.org/10.1093/iwc/iwt011 +Cathy Taylor,Monitoring Hypertext Users.,1990,2,Interacting with Computers,3,db/journals/iwc/iwc2.html#TaylorS90,https://doi.org/10.1016/0953-5438(90)90003-Z +David Benyon,Presence in blended spaces.,2012,24,Interacting with Computers,4,db/journals/iwc/iwc24.html#Benyon12,https://doi.org/10.1016/j.intcom.2012.04.005 +Jacqueline G. Ord,Who's Joking? The Information System at Play.,1989,1,Interacting with Computers,1,db/journals/iwc/iwc1.html#Ord89,https://doi.org/10.1016/0953-5438(89)90011-8 +Michael Quayle,When the chips are down: Social and technical aspects of computer failure and repair.,2006,18,Interacting with Computers,6,db/journals/iwc/iwc18.html#QuayleD06,https://doi.org/10.1016/j.intcom.2006.03.003 +Lynne E. Hall,Menu - What Menu?,1995,7,Interacting with Computers,4,db/journals/iwc/iwc7.html#HallB95,https://doi.org/10.1016/0953-5438(96)87699-5 +Clive Holtham,Integrating Technologies to Support Action.,1995,7,Interacting with Computers,1,db/journals/iwc/iwc7.html#Holtham95,https://doi.org/10.1016/0953-5438(95)90821-2 +Ming Li 0016,Evaluation of a Mobile Projector-Based Indoor Navigation Interface.,2014,26,Interacting with Computers,6,db/journals/iwc/iwc26.html#0016ASPKZK14,https://doi.org/10.1093/iwc/iwt053 +Shwu-Huey Wang,A Virtual Experiential Learning and Students' Ill-Structured Problem-Solving Ability.,2014,26,Interacting with Computers,4,db/journals/iwc/iwc26.html#WangLL14,https://doi.org/10.1093/iwc/iwu010 +Pierre Rabardel,From artefact to instrument.,2003,15,Interacting with Computers,5,db/journals/iwc/iwc15.html#Rabardel03,https://doi.org/10.1016/S0953-5438(03)00056-0 +David del Valle-Agudo,Interpretation and generation incremental management in natural interaction systems.,2012,24,Interacting with Computers,2,db/journals/iwc/iwc24.html#Valle-AgudoCFR12,https://doi.org/10.1016/j.intcom.2012.02.003 +David Greatbatch,Interpersonal Communication and Human-Computer Interaction: An Examination of the Use of Computers in Medical Consultations.,1993,5,Interacting with Computers,2,db/journals/iwc/iwc5.html#GreatbatchLHC93,https://doi.org/10.1016/0953-5438(93)90018-O +David A. Carr,Designing a real-time telepathology workstation to mitigate communication delays.,1998,11,Interacting with Computers,1,db/journals/iwc/iwc11.html#CarrPH98,https://doi.org/10.1016/S0953-5438(98)00032-0 +David J. Pullinger,Moral Judgements in Designing Better Systems.,1989,1,Interacting with Computers,1,db/journals/iwc/iwc1.html#Pullinger89,https://doi.org/10.1016/0953-5438(89)90009-X +Filipe Quintal,Watt-I-See: Design and Evaluation of an Interactive Installation Using Eco-feedforward Strategies.,2018,30,Interacting with Computers,1,db/journals/iwc/iwc30.html#QuintalBJNN18,https://doi.org/10.1093/iwc/iwx016 +Kenny K. N. Chow,Provoking Imagination and Emotion Through a Lively Mobile Phone: A User Experience Study.,2016,28,Interacting with Computers,4,db/journals/iwc/iwc28.html#ChowHWG16,https://doi.org/10.1093/iwc/iwv022 +Batya Friedman,Multi-Lifespan Information System Design in Support of Transitional Justice: Evolving Situated Design Principles for the Long(er) Term.,2017,29,Interacting with Computers,1,db/journals/iwc/iwc29.html#FriedmanNY17,https://doi.org/10.1093/iwc/iwv045 +Helen M. Meng,Intelligent speech for information systems: towards biliteracy and trilingualism.,2002,14,Interacting with Computers,4,db/journals/iwc/iwc14.html#MengLW02,https://doi.org/10.1016/S0953-5438(02)00006-1 +Sonja O'Neill,Development of a Technology Adoption and Usage Prediction Tool for Assistive Technology for People with Dementia.,2014,26,Interacting with Computers,2,db/journals/iwc/iwc26.html#ONeillMDNGCZYSMC14,https://doi.org/10.1093/iwc/iwt041 +Michelle Scott,Show Me or Tell Me: Designing Avatars for Feedback.,2015,27,Interacting with Computers,4,db/journals/iwc/iwc27.html#ScottPO15,https://doi.org/10.1093/iwc/iwu008 +Júlio Cesar dos Reis,Design of Interactive Mechanisms to Support the Communication of Users' Intentions.,2018,30,Interacting with Computers,4,db/journals/iwc/iwc30.html#ReisBJHB18,https://doi.org/10.1093/iwc/iwy013 +Abigail Durrant,On Ethical Responsiveness: Being Answerable to Others as an HCI Researcher.,2018,30,Interacting with Computers,2,db/journals/iwc/iwc30.html#DurrantK18,https://doi.org/10.1093/iwc/iwx021 +Flore Barcellini,A socio-cognitive analysis of online design discussions in an Open Source Software community.,2008,20,Interacting with Computers,1,db/journals/iwc/iwc20.html#BarcelliniDBS08,https://doi.org/10.1016/j.intcom.2007.10.004 +Guillaume Chanel,Physiological compliance for social gaming analysis: Cooperative versus competitive play.,2012,24,Interacting with Computers,4,db/journals/iwc/iwc24.html#ChanelKR12,https://doi.org/10.1016/j.intcom.2012.04.012 +Inmaculada Fajardo,Technology for supporting web information search and learning in Sign Language.,2009,21,Interacting with Computers,4,db/journals/iwc/iwc21.html#FajardoVS09,https://doi.org/10.1016/j.intcom.2009.05.005 +Daniel E. Rose,Information rendezvous.,1998,10,Interacting with Computers,2,db/journals/iwc/iwc10.html#RoseB98,https://doi.org/10.1016/S0953-5438(97)00024-6 +Hanna Venesvirta,Emotional Reactions to Point-Light Display Animations.,2016,28,Interacting with Computers,4,db/journals/iwc/iwc28.html#VenesvirtaSGLSV16,https://doi.org/10.1093/iwc/iwv028 +Lucy T. Gunawan,Distributed collaborative situation-map making for disaster response.,2011,23,Interacting with Computers,4,db/journals/iwc/iwc23.html#GunawanABN11,https://doi.org/10.1016/j.intcom.2011.04.003 +Clarisse Sieckenius de Souza,Semiotic engineering principles for evaluating end-user programming environments.,2001,13,Interacting with Computers,4,db/journals/iwc/iwc13.html#SouzaBS01,https://doi.org/10.1016/S0953-5438(00)00051-5 +Steve Howard,Harmony through Working Together: Editorial to the Australasian Special Issue.,1995,7,Interacting with Computers,2,db/journals/iwc/iwc7.html#HowardL95,https://doi.org/10.1016/0953-5438(95)93505-Y +Sybille Caffiau,Increasing the expressive power of task analysis: Systematic comparison and empirical assessment of tool-supported task models.,2010,22,Interacting with Computers,6,db/journals/iwc/iwc22.html#CaffiauSGBJ10,https://doi.org/10.1016/j.intcom.2010.06.003 +Annette Aboulafia,Understanding work units and activities - A perspective from general psychsology.,2008,20,Interacting with Computers,2,db/journals/iwc/iwc20.html#Aboulafia08,https://doi.org/10.1016/j.intcom.2007.07.002 +Phil Turner,A web of contradictions.,2001,14,Interacting with Computers,1,db/journals/iwc/iwc14.html#TurnerT01,https://doi.org/10.1016/S0953-5438(01)00039-X +Judith Barlow,Interacting WITH Computers.,1989,1,Interacting with Computers,1,db/journals/iwc/iwc1.html#BarlowRD89,https://doi.org/10.1016/0953-5438(89)90006-4 +Asbjørn Følstad,The usability inspection performance of work-domain experts: An empirical study.,2010,22,Interacting with Computers,2,db/journals/iwc/iwc22.html#FolstadAS10,https://doi.org/10.1016/j.intcom.2009.09.001 +John M. Carroll,Making use is more than a matter of task analysis.,2002,14,Interacting with Computers,5,db/journals/iwc/iwc14.html#Carroll02,https://doi.org/10.1016/S0953-5438(02)00061-9 +Panos Markopoulos,Interaction design and children.,2003,15,Interacting with Computers,2,db/journals/iwc/iwc15.html#MarkopoulosB03,https://doi.org/10.1016/S0953-5438(03)00004-3 +Gavin J. Doherty,Guest editor's introduction.,2010,22,Interacting with Computers,4,db/journals/iwc/iwc22.html#DohertyB10,https://doi.org/10.1016/j.intcom.2010.03.002 +Minwoo Choi,Design and Evaluation of a Hand-held Trackball-based Touch-Haptic Interface for Providing Directional Feedback.,2015,27,Interacting with Computers,2,db/journals/iwc/iwc27.html#ChoiLK15,https://doi.org/10.1093/iwc/iwt062 +Joris Verrips,Branching Selection of Suggestions.,1992,4,Interacting with Computers,1,db/journals/iwc/iwc4.html#Verrips92,https://doi.org/10.1016/0953-5438(92)90013-6 +Fabio Pianesi,The motivational and control structure underlying the acceptance of adaptive museum guides - An empirical study.,2009,21,Interacting with Computers,3,db/journals/iwc/iwc21.html#PianesiGZG09,https://doi.org/10.1016/j.intcom.2009.04.002 +Masood Masoodian,Identifying Problems Associated with Focus and Context Awareness in 3D Modelling Tasks.,2016,28,Interacting with Computers,1,db/journals/iwc/iwc28.html#MasoodianYR16,https://doi.org/10.1093/iwc/iwu039 +Federica Cena,Should I Stay or Should I Go? Improving Event Recommendation in the Social Web.,2016,28,Interacting with Computers,1,db/journals/iwc/iwc28.html#CenaLLP16,https://doi.org/10.1093/iwc/iwu029 +Poika Isokoski,User performance with trackball-mice.,2007,19,Interacting with Computers,3,db/journals/iwc/iwc19.html#IsokoskiRME07,https://doi.org/10.1016/j.intcom.2006.10.003 +Gordon D. Baxter,Socio-technical systems: From design methods to systems engineering.,2011,23,Interacting with Computers,1,db/journals/iwc/iwc23.html#BaxterS11,https://doi.org/10.1016/j.intcom.2010.07.003 +Heather L. O'Brien,The influence of hedonic and utilitarian motivations on user engagement: The case of online shopping experiences.,2010,22,Interacting with Computers,5,db/journals/iwc/iwc22.html#OBrien10,https://doi.org/10.1016/j.intcom.2010.04.001 +Noam Tractinsky,What is beautiful is usable.,2000,13,Interacting with Computers,2,db/journals/iwc/iwc13.html#TractinskyKI00,https://doi.org/10.1016/S0953-5438(00)00031-X +Anna Watson,Evaluating Audio and Video Quality in Low-Cost Multimedia Conferencing Systems.,1996,8,Interacting with Computers,3,db/journals/iwc/iwc8.html#WatsonS96,https://doi.org/10.1016/0953-5438(96)01032-6 +Chris Phillips,Lean Cuisine+: An Executable Graphical Notation for Describing Direct Manipulation Interfaces.,1995,7,Interacting with Computers,1,db/journals/iwc/iwc7.html#Phillips95,https://doi.org/10.1016/0953-5438(95)90819-7 +Pietro Murano,Usefulness of VRML building models in a direction finding context.,2007,19,Interacting with Computers,3,db/journals/iwc/iwc19.html#MuranoM07,https://doi.org/10.1016/j.intcom.2007.01.005 +Minna Isomursu,Capturing tacit knowledge from young girls.,2004,16,Interacting with Computers,3,db/journals/iwc/iwc16.html#IsomursuIS04,https://doi.org/10.1016/j.intcom.2004.04.004 +Arlene Astell,Using a touch screen computer to support relationships between people with dementia and caregivers.,2010,22,Interacting with Computers,4,db/journals/iwc/iwc22.html#AstellEBADGC10,https://doi.org/10.1016/j.intcom.2010.03.003 +David R. Danielson,Web navigation and the behavioral effects of constantly visible site maps.,2002,14,Interacting with Computers,5,db/journals/iwc/iwc14.html#Danielson02,https://doi.org/10.1016/S0953-5438(02)00024-3 +Stephen R. Jones,Information Technology Support for Shared Task Performance within an Office Environment.,1996,8,Interacting with Computers,3,db/journals/iwc/iwc8.html#JonesT96,https://doi.org/10.1016/0953-5438(96)01034-X +Amanda Spink,Human-computer interaction in information retrieval: nature and manifestations of feedback.,1998,10,Interacting with Computers,3,db/journals/iwc/iwc10.html#SpinkS98,https://doi.org/10.1016/S0953-5438(98)00009-5 +Clarisse Sieckenius de Souza,Human-computer interaction in Latin America.,2004,16,Interacting with Computers,4,db/journals/iwc/iwc16.html#SouzaB04, +Ebba Thora Hvannberg,Heuristic evaluation: Comparing ways of finding and reporting usability problems.,2007,19,Interacting with Computers,2,db/journals/iwc/iwc19.html#HvannbergLL07,https://doi.org/10.1016/j.intcom.2006.10.001 +Paula O'Kane,Intentional and unintentional consequences of substituting face-to-face interaction with e-mail: An employee-based perspective.,2007,19,Interacting with Computers,1,db/journals/iwc/iwc19.html#OKaneH07,https://doi.org/10.1016/j.intcom.2006.07.008 +Jinwoo Kim,Towards optimal navigation through video content on interactive TV.,2006,18,Interacting with Computers,4,db/journals/iwc/iwc18.html#KimKP06,https://doi.org/10.1016/j.intcom.2005.11.011 +Andy Adler,Evaluating and implementing a collaborative office document system.,2006,18,Interacting with Computers,4,db/journals/iwc/iwc18.html#AdlerNN06,https://doi.org/10.1016/j.intcom.2005.10.001 +John J. Bosley,Creating a Short Usability Metric for User Experience (UMUX) Scale.,2013,25,Interacting with Computers,4,db/journals/iwc/iwc25.html#Bosley13a,https://doi.org/10.1093/iwc/iwt007 +Andrew Sears,Improving Touchscreen Keyboards: Design Issues and a Comparison with Other Devices.,1991,3,Interacting with Computers,3,db/journals/iwc/iwc3.html#Sears91,https://doi.org/10.1016/0953-5438(91)90016-U +Nancy A. Van House,Feminist HCI meets facebook: Performativity and social networking sites.,2011,23,Interacting with Computers,5,db/journals/iwc/iwc23.html#House11,https://doi.org/10.1016/j.intcom.2011.03.003 +James A. Renshaw,Understanding visual influence in graph design through temporal and spatial eye movement characteristics.,2004,16,Interacting with Computers,3,db/journals/iwc/iwc16.html#RenshawFTW04,https://doi.org/10.1016/j.intcom.2004.03.001 +Kibum Kim,ShifTable: A Natural Remote Target-Selection Technique on Large Displays.,2016,28,Interacting with Computers,2,db/journals/iwc/iwc28.html#KimRG16,https://doi.org/10.1093/iwc/iwv024 +Zereh Lalji,Designing new technologies for illiterate populations: A study in mobile phone interface design.,2008,20,Interacting with Computers,6,db/journals/iwc/iwc20.html#LaljiG08,https://doi.org/10.1016/j.intcom.2008.09.002 +Brian P. Bailey,Clover: Connecting technology and character education using personally-constructed animated vignettes.,2006,18,Interacting with Computers,4,db/journals/iwc/iwc18.html#BaileyTB06,https://doi.org/10.1016/j.intcom.2005.11.013 +Anthony Savidis,Inclusive development: Software engineering requirements for universally accessible interactions.,2006,18,Interacting with Computers,1,db/journals/iwc/iwc18.html#SavidisS06,https://doi.org/10.1016/j.intcom.2005.06.005 +Gabrielle L. Hands,Effect of Age on Human-Computer Interface Control Via Neck Electromyography.,2016,28,Interacting with Computers,1,db/journals/iwc/iwc28.html#HandsS16,https://doi.org/10.1093/iwc/iwu030 +Justin Lin,Personal location agent for communicating entities (PLACE).,2003,15,Interacting with Computers,4,db/journals/iwc/iwc15.html#LinLN03,https://doi.org/10.1016/S0953-5438(03)00040-7 +Juha Lehikoinen,N-fingers: a finger-based interaction technique for wearable computers.,2001,13,Interacting with Computers,5,db/journals/iwc/iwc13.html#LehikoinenR01,https://doi.org/10.1016/S0953-5438(01)00032-7 +Rosalind W. Picard,Computers that recognise and respond to user emotion: theoretical and practical implications.,2001,14,Interacting with Computers,2,db/journals/iwc/iwc14.html#PicardK01,https://doi.org/10.1016/S0953-5438(01)00055-8 +Christof van Nimwegen,The influence of structure and reading-manipulation on usability of hypertexts.,1999,12,Interacting with Computers,1,db/journals/iwc/iwc12.html#NimwegenPO99,https://doi.org/10.1016/S0953-5438(98)00052-6 +Ard W. Lazonder,Effect of Error Information in Tutorial Documentation.,1994,6,Interacting with Computers,1,db/journals/iwc/iwc6.html#LazonderM94,https://doi.org/10.1016/0953-5438(94)90003-5 +Kimberley Hiltz,The roles of conceptual device models and user goals in avoiding device initialization errors.,2010,22,Interacting with Computers,5,db/journals/iwc/iwc22.html#HiltzBB10,https://doi.org/10.1016/j.intcom.2010.01.001 +Evangelos Karapanos,Measuring the dynamics of remembered experience over time.,2010,22,Interacting with Computers,5,db/journals/iwc/iwc22.html#KarapanosZFM10,https://doi.org/10.1016/j.intcom.2010.04.003 +Rosario Girardi,A system of agent-based software patterns for user modeling based on usage mining.,2005,17,Interacting with Computers,5,db/journals/iwc/iwc17.html#GirardiMO05,https://doi.org/10.1016/j.intcom.2005.02.003 +Clare F. Harvey,Providing a networked future for interpersonal information retrieval: InfoVine and user modelling.,1998,10,Interacting with Computers,2,db/journals/iwc/iwc10.html#HarveySL98,https://doi.org/10.1016/S0953-5438(98)00019-8 +Jussi Karlgren,Sublanguages and Registers: A Note on Terminology.,1993,5,Interacting with Computers,3,db/journals/iwc/iwc5.html#Karlgren93,https://doi.org/10.1016/0953-5438(93)90015-L +Rita Hellman,Combining CSCW and User Support Techniques to Design Collaborative User Interfaces.,1992,4,Interacting with Computers,1,db/journals/iwc/iwc4.html#Hellman92,https://doi.org/10.1016/0953-5438(92)90012-5 +Lina Zhou,Third-party error detection support mechanisms for dictation speech recognition.,2010,22,Interacting with Computers,5,db/journals/iwc/iwc22.html#ZhouSS10,https://doi.org/10.1016/j.intcom.2010.02.002 +Tom Boyle,Further Discussion on Increasing the Efficiency of Multiparty Interaction.,1990,2,Interacting with Computers,2,db/journals/iwc/iwc2.html#Boyle90,https://doi.org/10.1016/0953-5438(90)90027-F +Rob Procter,Genres in support of collaborative information retrieval in the virtual library.,1998,10,Interacting with Computers,2,db/journals/iwc/iwc10.html#ProcterGDM98,https://doi.org/10.1016/S0953-5438(97)00021-0 +Adeola Yetunde Wale-Kolade,Apathy Towards the Integration of Usability Work: A Case of System Justification.,2016,28,Interacting with Computers,4,db/journals/iwc/iwc28.html#Wale-KoladeN16,https://doi.org/10.1093/iwc/iwv016 +James L. Alty,A framework for engineering metaphor at the user interface.,2000,13,Interacting with Computers,2,db/journals/iwc/iwc13.html#AltyKAS00,https://doi.org/10.1016/S0953-5438(00)00047-3 +Michael Muller,Multiple paradigms in affective computing.,2004,16,Interacting with Computers,4,db/journals/iwc/iwc16.html#Muller04,https://doi.org/10.1016/j.intcom.2004.06.005 +Roope Raisamo,Design and evaluation of a tactile memory game for visually impaired children.,2007,19,Interacting with Computers,2,db/journals/iwc/iwc19.html#RaisamoPHP07,https://doi.org/10.1016/j.intcom.2006.08.011 +Chaomei Chen,Generalised similarity analysis and pathfinder network scaling.,1998,10,Interacting with Computers,2,db/journals/iwc/iwc10.html#Chaomei98,https://doi.org/10.1016/S0953-5438(98)00015-0 +Vivek Kant,Extending the Repertoire of Activity Theory in HCI: N. A. Bernstein and the Role of the Body.,2016,28,Interacting with Computers,4,db/journals/iwc/iwc28.html#Kant16,https://doi.org/10.1093/iwc/iwv019 +Bongwon Suh,Semi-automatic photo annotation strategies using event based clustering and clothing based person recognition.,2007,19,Interacting with Computers,4,db/journals/iwc/iwc19.html#SuhB07,https://doi.org/10.1016/j.intcom.2007.02.002 +Anna Macaranas,What is Intuitive Interaction? Balancing Users' Performance and Satisfaction with Natural User Interfaces.,2015,27,Interacting with Computers,3,db/journals/iwc/iwc27.html#MacaranasAR15,https://doi.org/10.1093/iwc/iwv003 +Adarsh Kumar Kakar,How do Perceived Enjoyment and Perceived Usefulness of a Software Product Interact over Time to Impact Technology Acceptance?,2017,29,Interacting with Computers,4,db/journals/iwc/iwc29.html#Kakar17,https://doi.org/10.1093/iwc/iwx006 +Claudia Roda,Using conversational agents to support the adoption of knowledge sharing practices.,2003,15,Interacting with Computers,1,db/journals/iwc/iwc15.html#RodaANR03,https://doi.org/10.1016/S0953-5438(02)00029-2 +Linn Gustavsson Christiernin,Guiding the designer: A radar diagram process for applications with multiple layers.,2010,22,Interacting with Computers,2,db/journals/iwc/iwc22.html#Christiernin10,https://doi.org/10.1016/j.intcom.2009.10.003 +Ofer Bergman,Spotting the Latest Version of a File with Old'nGray.,2015,27,Interacting with Computers,6,db/journals/iwc/iwc27.html#BergmanEDVA15,https://doi.org/10.1093/iwc/iwu018 +Willem-Paul Brinkman,Towards an empirical method of efficiency testing of system parts: A methodological study.,2007,19,Interacting with Computers,3,db/journals/iwc/iwc19.html#BrinkmanHB07,https://doi.org/10.1016/j.intcom.2007.01.002 +Mark Blythe,Pastiche scenarios: Fiction as a resource for user centred design.,2006,18,Interacting with Computers,5,db/journals/iwc/iwc18.html#BlytheW06,https://doi.org/10.1016/j.intcom.2006.02.001 +Sietse H. Kloosterman,Design and Implementation of a User-Oriented Speech Recognition Interface: The Synergy of Technology and Human Factors.,1994,6,Interacting with Computers,1,db/journals/iwc/iwc6.html#Kloosterman94,https://doi.org/10.1016/0953-5438(94)90004-3 +Trevor J. M. Bench-Capon,Modelling Devices and Modelling Speakers.,1989,1,Interacting with Computers,2,db/journals/iwc/iwc1.html#Bench-CaponM89a,https://doi.org/10.1016/0953-5438(89)90029-5 +Paula Bourges-Waldegg,Applying and testing an approach to design for culturally diverse user groups.,2000,13,Interacting with Computers,2,db/journals/iwc/iwc13.html#Bourges-WaldeggS00,https://doi.org/10.1016/S0953-5438(00)00029-1 +Juan Pablo Hourcade,The International Children's Digital Library: viewing digital books online.,2003,15,Interacting with Computers,2,db/journals/iwc/iwc15.html#HourcadeBDRFT03,https://doi.org/10.1016/S0953-5438(03)00005-5 +Debaleena Chattopadhyay,Design and Evaluation of Trust-Eliciting Cues in Drug-Drug Interaction Alerts.,2018,30,Interacting with Computers,2,db/journals/iwc/iwc30.html#ChattopadhyayVD18,https://doi.org/10.1093/iwc/iwx020 +Sean M. McCrea,Absolute and Relative User Perception of Classification Accuracy in an Affective Video Game.,2017,29,Interacting with Computers,2,db/journals/iwc/iwc29.html#McCreaGN17,https://doi.org/10.1093/iwc/iww026 +David G. Payne,Computer-Based Task Representation: A Methodology for Improving System Design.,1992,4,Interacting with Computers,3,db/journals/iwc/iwc4.html#PayneCP92,https://doi.org/10.1016/0953-5438(92)90017-A +Paul van Schaik,An integrated model of interaction experience for information retrieval in a Web-based encyclopaedia.,2011,23,Interacting with Computers,1,db/journals/iwc/iwc23.html#SchaikL11,https://doi.org/10.1016/j.intcom.2010.07.002 +Walter Smith,Colour in Map Displays: Issues for Task-Specific Display Design.,1995,7,Interacting with Computers,2,db/journals/iwc/iwc7.html#SmithDKR95,https://doi.org/10.1016/0953-5438(95)93506-Z +Terri L. Griffith,Cross-Cultural and Cognitive Issues in the Implementation of New Technology: Focus on Group Support Systems and Bulgaria.,1998,9,Interacting with Computers,4,db/journals/iwc/iwc9.html#Griffith98,https://doi.org/10.1016/S0953-5438(97)00033-7 +Ling Chen 0001,EmoPlayer: A media player for video clips with affective annotations.,2008,20,Interacting with Computers,1,db/journals/iwc/iwc20.html#ChenCXMB08,https://doi.org/10.1016/j.intcom.2007.06.003 +Kulwinder Kaur,Interacting with virtual environments: an evaluation of a model of interaction.,1999,11,Interacting with Computers,4,db/journals/iwc/iwc11.html#KaurMS99,https://doi.org/10.1016/S0953-5438(98)00059-9 +Giorgio Brajnik,Group vs Individual Web Accessibility Evaluations: Effects with Novice Evaluators.,2016,28,Interacting with Computers,6,db/journals/iwc/iwc28.html#BrajnikVYH16,https://doi.org/10.1093/iwc/iww006 +Mark Pendergast,Supporting the group creation of formal and informal graphics during business process modeling.,1999,11,Interacting with Computers,4,db/journals/iwc/iwc11.html#PendergastAL99,https://doi.org/10.1016/S0953-5438(98)00027-7 +Valentina Nisi,Placing Location-Based Narratives in Context Through a Narrator and Visual Markers.,2017,29,Interacting with Computers,3,db/journals/iwc/iwc29.html#NisiCD17,https://doi.org/10.1093/iwc/iww020 +François Courtemanche,Activity recognition using eye-gaze movements and traditional interactions.,2011,23,Interacting with Computers,3,db/journals/iwc/iwc23.html#CourtemancheADNE11,https://doi.org/10.1016/j.intcom.2011.02.008 +Ofer Bergman,The Cognitive Costs of Upgrades.,2018,30,Interacting with Computers,1,db/journals/iwc/iwc30.html#BergmanW18,https://doi.org/10.1093/iwc/iwx017 +Pauline A. Smith,Towards a Practical Measure of Hypertext Usability.,1996,8,Interacting with Computers,4,db/journals/iwc/iwc7.html#Smith96,https://doi.org/10.1016/S0953-5438(97)83779-4 +Inmaculada Fajardo,Shared online spreadsheets and hidden profiles: Technological effects on dyad decision strategy.,2012,24,Interacting with Computers,5,db/journals/iwc/iwc24.html#FajardoP12,https://doi.org/10.1016/j.intcom.2012.06.004 +Juan Pablo Hourcade,Simple pen interaction performance of young and older adults using handheld computers.,2008,20,Interacting with Computers,1,db/journals/iwc/iwc20.html#HourcadeB08,https://doi.org/10.1016/j.intcom.2007.10.002 +Stefanie Harbich,User Experience in the Work Domain: A Longitudinal Field Study.,2017,29,Interacting with Computers,3,db/journals/iwc/iwc29.html#HarbichH17,https://doi.org/10.1093/iwc/iww022 +Hwe-Mo Kim,Device-independent web browsing based on CC/PP and annotation.,2006,18,Interacting with Computers,2,db/journals/iwc/iwc18.html#KimL06,https://doi.org/10.1016/j.intcom.2005.03.006 +Clive Fencott,The effects of movement of attractors and pictorial content of rewards on users' behaviour in virtual environments: an empirical study in the framework of perceptual opportunities.,2003,15,Interacting with Computers,1,db/journals/iwc/iwc15.html#FencottSLS03,https://doi.org/10.1016/S0953-5438(02)00030-9 +Robert Dale,Integrating natural language generation and hypertext to produce dynamic documents.,1998,11,Interacting with Computers,2,db/journals/iwc/iwc11.html#DaleOMK98,https://doi.org/10.1016/S0953-5438(98)00020-4 +Chih-Hung Chen,A Progressive Prompting Approach to Conducting Context-Aware Learning Activities for Natural Science Courses.,2014,26,Interacting with Computers,4,db/journals/iwc/iwc26.html#ChenHT14,https://doi.org/10.1093/iwc/iwu004 +Keith Oatley,The bug in the salad: the uses of emotions in computer interfaces.,2004,16,Interacting with Computers,4,db/journals/iwc/iwc16.html#Oatley04,https://doi.org/10.1016/j.intcom.2004.06.004 +G. J. Elliott,A grounded theory approach to modelling learnability of hypermedia authoring tools.,2002,14,Interacting with Computers,5,db/journals/iwc/iwc14.html#ElliottJB02,https://doi.org/10.1016/S0953-5438(02)00021-8 +Min Lin,Chinese character entry for mobile phones: a longitudinal investigation.,2005,17,Interacting with Computers,2,db/journals/iwc/iwc17.html#LinS05,https://doi.org/10.1016/j.intcom.2004.11.003 +Norman S. Guadagno,The Predictability of Commands in a Spreadsheet Program.,1990,2,Interacting with Computers,1,db/journals/iwc/iwc2.html#GuadagnoLBN90,https://doi.org/10.1016/0953-5438(90)90015-A +Kamran Sedig,Designing interfaces that support formation of cognitive maps of transitional processes: an empirical study.,2005,17,Interacting with Computers,4,db/journals/iwc/iwc17.html#SedigRL05,https://doi.org/10.1016/j.intcom.2005.02.002 +Judith Ramsay,Informal Communication is about Sharing Objects in Media.,1996,8,Interacting with Computers,3,db/journals/iwc/iwc8.html#RamsayBP96,https://doi.org/10.1016/0953-5438(96)01030-2 +Matthew R. Jones,Interactive Modelling in Decision Support Systems.,1991,3,Interacting with Computers,2,db/journals/iwc/iwc3.html#Jones91,https://doi.org/10.1016/0953-5438(91)90010-Y +Kristina Höök,Steps to take before intelligent user interfaces become real.,2000,12,Interacting with Computers,4,db/journals/iwc/iwc12.html#Hook00,https://doi.org/10.1016/S0953-5438(99)00006-5 +Alessandra Agostini,Design and deployment of community systems: reflections on the Campiello experience.,2002,14,Interacting with Computers,6,db/journals/iwc/iwc14.html#AgostiniMDGS02,https://doi.org/10.1016/S0953-5438(02)00016-4 +Ling Chen 0001,An HCI method to improve the human performance reduced by local-lag mechanism.,2007,19,Interacting with Computers,2,db/journals/iwc/iwc19.html#ChenCCMBP07,https://doi.org/10.1016/j.intcom.2006.05.009 +Kostas Stathis,Intelligence and interaction in community-based systems.,2002,14,Interacting with Computers,6,db/journals/iwc/iwc14.html#StathisP02,https://doi.org/10.1016/S0953-5438(02)00013-9 +Scott Henninger,A methodology and tools for applying context-specific usability guidelines to interface design.,2000,12,Interacting with Computers,3,db/journals/iwc/iwc12.html#Henninger00,https://doi.org/10.1016/S0953-5438(99)00013-2 +Neil A. M. Maiden,A co-operative scenario based approach to acquisition and validation of system requirements: How exceptions can help!,1999,11,Interacting with Computers,6,db/journals/iwc/iwc11.html#MaidenMSMR99,https://doi.org/10.1016/S0953-5438(98)00048-4 +I. Scott MacKenzie,Prediction of Pointing and Dragging Times in Graphical User Interfaces.,1994,6,Interacting with Computers,2,db/journals/iwc/iwc6.html#MacKenzieB94,https://doi.org/10.1016/0953-5438(94)90025-6 +Linda A. Macaulay,USTM: A New Approach to Requirements Specification.,1990,2,Interacting with Computers,1,db/journals/iwc/iwc2.html#MacaulayFKH90,https://doi.org/10.1016/0953-5438(90)90017-C +José A. Macías,Providing end-user facilities to simplify ontology-driven web application authoring.,2007,19,Interacting with Computers,4,db/journals/iwc/iwc19.html#MaciasC07,https://doi.org/10.1016/j.intcom.2007.01.006 +Glena Helen Iten,Aesthetics in Context - The Role of Aesthetics and Usage Mode for a Website's Success.,2018,30,Interacting with Computers,2,db/journals/iwc/iwc30.html#ItenTO18,https://doi.org/10.1093/iwc/iwy002 +Effie Lai-Chong Law,Modelling user experience - An agenda for research and practice.,2010,22,Interacting with Computers,5,db/journals/iwc/iwc22.html#LawS10,https://doi.org/10.1016/j.intcom.2010.04.006 +Karin Slegers,The impact of paper prototyping on card sorting: A case study.,2012,24,Interacting with Computers,5,db/journals/iwc/iwc24.html#SlegersD12,https://doi.org/10.1016/j.intcom.2012.05.005 +Margaret M. Burnett,GenderMag: A Method for Evaluating Software's Gender Inclusiveness.,2016,28,Interacting with Computers,6,db/journals/iwc/iwc28.html#BurnettSMMBKPJ16,https://doi.org/10.1093/iwc/iwv046 +Jakob Nielsen,A Meta-model for Interacting with Computers.,1990,2,Interacting with Computers,2,db/journals/iwc/iwc2.html#Nielsen90,https://doi.org/10.1016/0953-5438(90)90020-I +Martha E. Crosby,Special issue of interacting with computers: Symbiotic performance between humans and intelligent systems.,2006,18,Interacting with Computers,6,db/journals/iwc/iwc18.html#CrosbySW06,https://doi.org/10.1016/j.intcom.2006.08.013 +Bert Bongers,Anthropomorphic Resonances: On the Relationship Between Computer Interfaces and the Human Form and Motion.,2013,25,Interacting with Computers,2,db/journals/iwc/iwc25.html#Bongers13,https://doi.org/10.1093/iwc/iwt001 +Licia Calvi,A flexible hypertext courseware on the Web based on a dynamic link structure.,1998,10,Interacting with Computers,2,db/journals/iwc/iwc10.html#CalviB98,https://doi.org/10.1016/S0953-5438(98)00016-2 +Carlo Jacucci,Guiding design with approaches to masked performance.,2006,18,Interacting with Computers,5,db/journals/iwc/iwc18.html#Jacucci06,https://doi.org/10.1016/j.intcom.2006.05.005 +Vicki Bruce,The Role of the Face in Communication: Implications for Videophone Design.,1996,8,Interacting with Computers,2,db/journals/iwc/iwc8.html#Bruce96,https://doi.org/10.1016/0953-5438(96)01026-0 +Anne H. Anderson,Impact of Video-Mediated Communication on Simulated Service Encounters.,1996,8,Interacting with Computers,2,db/journals/iwc/iwc8.html#AndersonNMFDV96,https://doi.org/10.1016/0953-5438(96)01025-9 +J. Rodríguez,Gaining insight into unfamiliar contexts: A design toolbox as input for using role-play techniques.,2006,18,Interacting with Computers,5,db/journals/iwc/iwc18.html#RodriguezDC06,https://doi.org/10.1016/j.intcom.2006.05.007 +Ruven E. Brooks,The Contribution of Practitioner Case Studies to Human-Computer Interaction Science.,1990,2,Interacting with Computers,1,db/journals/iwc/iwc2.html#Brooks90,https://doi.org/10.1016/0953-5438(90)90010-F +Matjaz Kljun,Transference of PIM Research Prototype Concepts to the Mainstream: Successes or Failures.,2015,27,Interacting with Computers,2,db/journals/iwc/iwc27.html#KljunMD15,https://doi.org/10.1093/iwc/iwt059 +Enrico Pontelli,A system for automatic structure discovery and reasoning-based navigation of the web.,2004,16,Interacting with Computers,3,db/journals/iwc/iwc16.html#PontelliSKNKG04,https://doi.org/10.1016/j.intcom.2004.04.006 +Andreas Uebelbacher,Effects of Perceived Prototype Fidelity in Usability Testing under Different Conditions of Observer Presence.,2013,25,Interacting with Computers,1,db/journals/iwc/iwc25.html#UebelbacherSS13,https://doi.org/10.1093/iwc/iws002 +Stella Mills,Caring through technology: Using e-mail for Christian pastoral care.,2011,23,Interacting with Computers,2,db/journals/iwc/iwc23.html#Mills11,https://doi.org/10.1016/j.intcom.2010.10.005 +Adrian Williamson,Moneypenny: Lessons from the Messy Desk.,1998,9,Interacting with Computers,3,db/journals/iwc/iwc9.html#Williamson98,https://doi.org/10.1016/S0953-5438(97)00008-8 +Meinald T. Thielsch,User Evaluation of Websites: From First Impression to Recommendation.,2014,26,Interacting with Computers,1,db/journals/iwc/iwc26.html#ThielschBJ14,https://doi.org/10.1093/iwc/iwt033 +Sergio Sayago,Everyday use of computer-mediated communication tools and its evolution over time: An ethnographical study with older people.,2011,23,Interacting with Computers,5,db/journals/iwc/iwc23.html#SayagoSB11,https://doi.org/10.1016/j.intcom.2011.06.001 +Noirin Curran,Comments on the Article 'Characterising and Measuring User Experiences in Digital Games' by IJsselsteijn et al. (2007).,2013,25,Interacting with Computers,4,db/journals/iwc/iwc25.html#Curran13,https://doi.org/10.1093/iwc/iwt015 +Helen C. Purchase,Effective information visualisation: a study of graph drawing aesthetics and algorithms.,2000,13,Interacting with Computers,2,db/journals/iwc/iwc13.html#Purchase00,https://doi.org/10.1016/S0953-5438(00)00032-1 +José A. Pino,A Visual Approach to Versioning for Text Co-Authoring.,1996,8,Interacting with Computers,4,db/journals/iwc/iwc7.html#Pino96,https://doi.org/10.1016/S0953-5438(97)83775-7 +Erik Styhr Petersen,Interacting with Classic Design Engineering.,2015,27,Interacting with Computers,4,db/journals/iwc/iwc27.html#PetersenNL15,https://doi.org/10.1093/iwc/iwu007 +Alev M. Efendioglu,Chinese culture and e-commerce: an exploratory study.,2004,16,Interacting with Computers,1,db/journals/iwc/iwc16.html#EfendiogluY04,https://doi.org/10.1016/j.intcom.2003.11.004 +Peter J. Wild,Longing for service: Bringing the UCL Conception towards services research.,2010,22,Interacting with Computers,1,db/journals/iwc/iwc22.html#Wild10,https://doi.org/10.1016/j.intcom.2009.11.002 +Abdullah Al Mahmud 0001,Amail: Design and Evaluation of an Accessible Email Tool for Persons with Aphasia.,2013,25,Interacting with Computers,5,db/journals/iwc/iwc25.html#MahmudM13,https://doi.org/10.1093/iwc/iws025 +Gabriele Ferri,Rethinking Age in HCI Through Anti-Ageist Playful Interactions.,2017,29,Interacting with Computers,6,db/journals/iwc/iwc29.html#FerriBB17,https://doi.org/10.1093/iwc/iwx012 +Gustav öquist,Towards an improved readability on mobile devices: evaluating adaptive rapid serial visual presentation.,2003,15,Interacting with Computers,4,db/journals/iwc/iwc15.html#OquistG03,https://doi.org/10.1016/S0953-5438(03)00039-0 +Christopher Frauenberger,In-Action Ethics.,2017,29,Interacting with Computers,2,db/journals/iwc/iwc29.html#FrauenbergerRF17,https://doi.org/10.1093/iwc/iww024 +Marc Hassenzahl,To do or not to do: Differences in user experience and retrospective judgments depending on the presence or absence of instrumental goals.,2007,19,Interacting with Computers,4,db/journals/iwc/iwc19.html#HassenzahlU07,https://doi.org/10.1016/j.intcom.2007.05.001 +Alistair G. Sutcliffe,Investigating the usability of assistive user interfaces.,2003,15,Interacting with Computers,4,db/journals/iwc/iwc15.html#SutcliffeFSE03,https://doi.org/10.1016/S0953-5438(03)00051-1 +Keith Stenning,Human-Formalism Interaction: Studies in Communication through Formalism.,1997,9,Interacting with Computers,2,db/journals/iwc/iwc9.html#StenningG97,https://doi.org/10.1016/S0953-5438(97)00012-X +Angela Pimentel,A New Tool for the Automatic Detection of Muscular Voluntary Contractions in the Analysis of Electromyographic Signals.,2015,27,Interacting with Computers,5,db/journals/iwc/iwc27.html#PimentelGOG15,https://doi.org/10.1093/iwc/iwv008 +Susi Ross,PETRA: Participatory Evaluation Through Redesign and Analysis.,1995,7,Interacting with Computers,4,db/journals/iwc/iwc7.html#RossRR95,https://doi.org/10.1016/0953-5438(96)87697-1 +Maria Klara Wolters,Reducing working memory load in spoken dialogue systems.,2009,21,Interacting with Computers,4,db/journals/iwc/iwc21.html#WoltersGMLMW09,https://doi.org/10.1016/j.intcom.2009.05.009 +Fernando Gamboa Rodríguez,A student centered methodology for the development of a physics video based laboratory.,2001,13,Interacting with Computers,5,db/journals/iwc/iwc13.html#RodriguezPLCV01,https://doi.org/10.1016/S0953-5438(01)00031-5 +Katerina Kabassi,Personalised adult e-training on computer use based on multiple attribute decision making.,2004,16,Interacting with Computers,1,db/journals/iwc/iwc16.html#KabassiV04,https://doi.org/10.1016/j.intcom.2003.11.006 +Christian Spannagel,Animated demonstrations and training wheels interfaces in a complex learning environment.,2008,20,Interacting with Computers,1,db/journals/iwc/iwc20.html#SpannagelGLZS08,https://doi.org/10.1016/j.intcom.2007.08.002 +Dingyun Zhu,Moving to the centre: A gaze-driven remote camera control for teleoperation.,2011,23,Interacting with Computers,1,db/journals/iwc/iwc23.html#ZhuGT11,https://doi.org/10.1016/j.intcom.2010.10.003 +Astrid M. von der Pütten,Subjective and behavioral presence measurement and interactivity in the collaborative augmented reality game TimeWarp.,2012,24,Interacting with Computers,4,db/journals/iwc/iwc24.html#PuttenKBMKWBOK12,https://doi.org/10.1016/j.intcom.2012.03.004 +M. Elgin Akpinar,Discovering Visual Elements of Web Pages and Their Roles: Users' Perception.,2017,29,Interacting with Computers,6,db/journals/iwc/iwc29.html#AkpinarY17,https://doi.org/10.1093/iwc/iwx015 +Dan Diaper,West meets East: Adapting Activity Theory for HCI and CSCW applications?,2008,20,Interacting with Computers,2,db/journals/iwc/iwc20.html#DiaperL08,https://doi.org/10.1016/j.intcom.2007.11.006 +Richard Keeble,Assistant agents for the world wide web intelligent interface design challenges.,2000,12,Interacting with Computers,4,db/journals/iwc/iwc12.html#KeebleM00,https://doi.org/10.1016/S0953-5438(99)00004-1 +Emilio Sanchez,The use of modality in the design of verbal aids in computer-based learning environments.,2008,20,Interacting with Computers,6,db/journals/iwc/iwc20.html#SanchezG08,https://doi.org/10.1016/j.intcom.2008.08.001 +Jacek Gwizdka,Implicit measures of lostness and success in web navigation.,2007,19,Interacting with Computers,3,db/journals/iwc/iwc19.html#GwizdkaS07,https://doi.org/10.1016/j.intcom.2007.01.001 +Kathleen Burnett,Modelling information seeking.,1998,10,Interacting with Computers,3,db/journals/iwc/iwc10.html#BurnettM98,https://doi.org/10.1016/S0953-5438(98)00011-3 +Steve Harrison,Making epistemological trouble: Third-paradigm HCI as successor science.,2011,23,Interacting with Computers,5,db/journals/iwc/iwc23.html#HarrisonST11,https://doi.org/10.1016/j.intcom.2011.03.005 +Andrew F. Monk,Observations and Inventions: New Approaches to the Study of Human-Computer Interaction.,1991,3,Interacting with Computers,2,db/journals/iwc/iwc3.html#MonkW91,https://doi.org/10.1016/0953-5438(91)90012-Q +Clive Bright,Human Factors in Expert System Design: Can Lessons in the Promotion of Methods be Learned from Commercial DP?,1989,1,Interacting with Computers,2,db/journals/iwc/iwc1.html#BrightIS89,https://doi.org/10.1016/0953-5438(89)90022-2 +Michael J. Cole,Task and user effects on reading patterns in information search.,2011,23,Interacting with Computers,4,db/journals/iwc/iwc23.html#ColeGLBBZ11,https://doi.org/10.1016/j.intcom.2011.04.007 +Haytham Siala,The impact of religious affiliation on trust in the context of electronic commerce.,2004,16,Interacting with Computers,1,db/journals/iwc/iwc16.html#SialaOH04,https://doi.org/10.1016/j.intcom.2003.11.002 +Ante Odic,Predicting and Detecting the Relevant Contextual Information in a Movie-Recommender System.,2013,25,Interacting with Computers,1,db/journals/iwc/iwc25.html#OdicTTK13,https://doi.org/10.1093/iwc/iws003 +Huawei Tu,Differences and Similarities between Dominant and Non-dominant Thumbs for Pointing and Gesturing Tasks with Bimanual Tablet Gripping Interaction.,2018,30,Interacting with Computers,3,db/journals/iwc/iwc30.html#TuYLYRT18,https://doi.org/10.1093/iwc/iwy009 +Mark Witkowski,Agent mediated retailing in the connected local community.,2003,15,Interacting with Computers,1,db/journals/iwc/iwc15.html#WitkowskiNP03,https://doi.org/10.1016/S0953-5438(02)00028-0 +J. Harold Pardue,Look-ahead and look-behind shortcuts in large item category hierarchies: The impact on search performance.,2009,21,Interacting with Computers,4,db/journals/iwc/iwc21.html#PardueLKL09,https://doi.org/10.1016/j.intcom.2009.05.008 +Craig Standing,Functional Visual Programming Interface to Geographical Information Systems.,1995,7,Interacting with Computers,3,db/journals/iwc/iwc7.html#StandingR95,https://doi.org/10.1016/0953-5438(95)93602-2 +Nancie Gunson,Usability evaluation of voiceprint authentication in automated telephone banking: Sentences versus digits.,2011,23,Interacting with Computers,1,db/journals/iwc/iwc23.html#GunsonMMJ11,https://doi.org/10.1016/j.intcom.2010.10.001 +A. D. Bray,Multiple Worlds: An Approach to Multimedia Resource Management Using Truth Maintenance.,1994,6,Interacting with Computers,2,db/journals/iwc/iwc6.html#BrayA94,https://doi.org/10.1016/0953-5438(94)90021-3 +Michael A. Brown,Exploring Interpretations of Data from the Internet of Things in the Home.,2013,25,Interacting with Computers,3,db/journals/iwc/iwc25.html#BrownCLGHM13,https://doi.org/10.1093/iwc/iws024 +David Sloan,Auditing accessibility of UK Higher Education web sites.,2002,14,Interacting with Computers,4,db/journals/iwc/iwc14.html#SloanGBG02,https://doi.org/10.1016/S0953-5438(01)00056-X +Ding-Bang Luh,The Development of a Companionship Scale for Artificial Pets.,2015,27,Interacting with Computers,2,db/journals/iwc/iwc27.html#LuhLK15,https://doi.org/10.1093/iwc/iwt055 +Shaowen Bardzell,"IwC Special Issue ""Feminism and HCI: New Perspectives"" Special Issue Editors' Introduction.",2011,23,Interacting with Computers,5,db/journals/iwc/iwc23.html#BardzellC11,https://doi.org/10.1016/S0953-5438(11)00089-0 +Beate Grawemeyer,Using and managing multiple passwords: A week to a view.,2011,23,Interacting with Computers,3,db/journals/iwc/iwc23.html#GrawemeyerJ11,https://doi.org/10.1016/j.intcom.2011.03.007 +Donna L. Cuomo,Understanding Usability Issues Addressed by Three User-System Interface Evaluation Techniques.,1994,6,Interacting with Computers,1,db/journals/iwc/iwc6.html#CuomoB94,https://doi.org/10.1016/0953-5438(94)90006-X +Salvador Bueno,TAM-based success modeling in ERP.,2008,20,Interacting with Computers,6,db/journals/iwc/iwc20.html#BuenoS08,https://doi.org/10.1016/j.intcom.2008.08.003 +Limin Zeng,Interactive Audio-haptic Map Explorer on a Tactile Display.,2015,27,Interacting with Computers,4,db/journals/iwc/iwc27.html#ZengM015,https://doi.org/10.1093/iwc/iwu006 +John Halloran,The Human Element: Social Leveraging of User Engagement with Assisted Living Technology.,2017,29,Interacting with Computers,3,db/journals/iwc/iwc29.html#Halloran17,https://doi.org/10.1093/iwc/iww036 +Kent L. Norman,Levels of automation and user participation in usability testing.,2006,18,Interacting with Computers,2,db/journals/iwc/iwc18.html#NormanP06,https://doi.org/10.1016/j.intcom.2005.06.002 +John Long,Some celebratory HCI reflections on a celebratory HCI festschrift.,2010,22,Interacting with Computers,1,db/journals/iwc/iwc22.html#Long10,https://doi.org/10.1016/j.intcom.2009.11.006 +Petter Bae Brandtzæg,How Should Organizations Adapt to Youth Civic Engagement in Social Media? A Lead User Approach.,2016,28,Interacting with Computers,5,db/journals/iwc/iwc28.html#BrandtzaegHLF16,https://doi.org/10.1093/iwc/iwv041 +Andrew Sears,Data entry for mobile devices: an empirical comparison of novice performance with Jot and Graffiti.,2002,14,Interacting with Computers,5,db/journals/iwc/iwc14.html#SearsA02,https://doi.org/10.1016/S0953-5438(01)00060-1 +Teresa Cerratto Pargman,Collaborating with writing tools: An instrumental perspective on the problem of computer-supported collaborative activities.,2003,15,Interacting with Computers,6,db/journals/iwc/iwc15.html#Pargman03,https://doi.org/10.1016/j.intcom.2003.09.003 +Clarisse Sieckenius de Souza,Missing links in the rhetoric of Activity Theory.,2008,20,Interacting with Computers,2,db/journals/iwc/iwc20.html#Souza08,https://doi.org/10.1016/j.intcom.2007.07.006 +Tao Lin,Using multiple data sources to get closer insights into user cost and task performance.,2008,20,Interacting with Computers,3,db/journals/iwc/iwc20.html#LinIM08,https://doi.org/10.1016/j.intcom.2007.12.002 +Giorgio P. Faconti,Formal Framework and Necessary Properties of the Fusion of Input Modes in User Interfaces.,1996,8,Interacting with Computers,2,db/journals/iwc/iwc8.html#FacontiBKTRW96,https://doi.org/10.1016/0953-5438(96)01029-6 +Anthony Clarke,Field Evaluation of a Prototype Laser Safety Decision Support System.,1995,7,Interacting with Computers,4,db/journals/iwc/iwc7.html#ClarkeSVT95,https://doi.org/10.1016/0953-5438(96)87698-3 +Arvin Agah,Intelligent graphical user interface design utilizing multiple fuzzy agents.,2000,12,Interacting with Computers,5,db/journals/iwc/iwc12.html#AgahT00,https://doi.org/10.1016/S0953-5438(99)00022-3 +Andrew Dillon,Human Factors of Journal Usage and Design of Electronic Texts.,1989,1,Interacting with Computers,2,db/journals/iwc/iwc1.html#DillonRM89,https://doi.org/10.1016/0953-5438(89)90025-8 +Anthony Savidis,Software Refactoring Process to Accommodate User-Interface Adaptivity in Existing Applications.,2013,25,Interacting with Computers,6,db/journals/iwc/iwc25.html#SavidisS13,https://doi.org/10.1093/iwc/iwt020 +Jean Vanderdonckt,Development milestones towards a tool for working with guidelines.,1999,12,Interacting with Computers,2,db/journals/iwc/iwc12.html#Vanderdonckt99,https://doi.org/10.1016/S0953-5438(99)00019-3 +Mary Zajicek,Successful and available: interface design exemplars for older users.,2004,16,Interacting with Computers,3,db/journals/iwc/iwc16.html#Zajicek04,https://doi.org/10.1016/j.intcom.2004.04.003 +Rasmus Rasmussen,Selecting users for participation in IT projects: Trading a representative sample for advocates and champions?,2011,23,Interacting with Computers,2,db/journals/iwc/iwc23.html#RasmussenCFH11,https://doi.org/10.1016/j.intcom.2011.02.006 +Sarah Woods,Exploring the design space of robots: Children's perspectives.,2006,18,Interacting with Computers,6,db/journals/iwc/iwc18.html#Woods06,https://doi.org/10.1016/j.intcom.2006.05.001 +Alan J. Dix,Interaction in the large.,1998,11,Interacting with Computers,1,db/journals/iwc/iwc11.html#DixRW98,https://doi.org/10.1016/S0953-5438(98)00031-9 +Helmut Prendinger,Eye movements as indices for the utility of life-like interface agents: A pilot study.,2007,19,Interacting with Computers,2,db/journals/iwc/iwc19.html#PrendingerMI07,https://doi.org/10.1016/j.intcom.2006.10.004 +Timo Jokela,Evaluating the user-centredness of development organisations: conclusions and implications from empirical usability capability maturity assessments.,2004,16,Interacting with Computers,6,db/journals/iwc/iwc16.html#Jokela04,https://doi.org/10.1016/j.intcom.2004.07.006 +Laura Faulkner,Cross-user analysis: Benefits of skill level comparison in usability testing.,2005,17,Interacting with Computers,6,db/journals/iwc/iwc17.html#FaulknerW05,https://doi.org/10.1016/j.intcom.2005.04.004 +Willem-Paul Brinkman,Cognitive Ergonomics for Situated Human-Automation Collaboration.,2011,23,Interacting with Computers,4,db/journals/iwc/iwc23.html#BrinkmanNO11,https://doi.org/10.1016/S0953-5438(11)00060-9 +Agnieszka Landowska,Methodology of Affective Intervention Design for Intelligent Systems.,2016,28,Interacting with Computers,6,db/journals/iwc/iwc28.html#LandowskaSS16,https://doi.org/10.1093/iwc/iwv047 +Antonella De Angeli,I hate you! Disinhibition with virtual partners.,2008,20,Interacting with Computers,3,db/journals/iwc/iwc20.html#AngeliB08,https://doi.org/10.1016/j.intcom.2008.02.004 +Eamon P. Doherty,Yes/No or Maybe - further evaluation of an interface for brain-injured individuals.,2002,14,Interacting with Computers,4,db/journals/iwc/iwc14.html#DohertyCBRBD02,https://doi.org/10.1016/S0953-5438(02)00022-X +Julien Huart,Evaluation of multimedia applications using inspection methods: the Cognitive Walkthrough case.,2004,16,Interacting with Computers,2,db/journals/iwc/iwc16.html#HuartKS04,https://doi.org/10.1016/j.intcom.2003.12.005 +Kathleen Foley Curley,Computer Technology and Knowledge Workers: A Pilot Study of Job Impact.,1989,1,Interacting with Computers,2,db/journals/iwc/iwc1.html#Curley89,https://doi.org/10.1016/0953-5438(89)90024-6 +Paul van Schaik,Using interactive 3-D visualization for public consultation.,2010,22,Interacting with Computers,6,db/journals/iwc/iwc22.html#Schaik10,https://doi.org/10.1016/j.intcom.2010.06.002 +John A. Hughes,Designing with Ethnography: Making Work Visible.,1993,5,Interacting with Computers,2,db/journals/iwc/iwc5.html#HughesSBR93,https://doi.org/10.1016/0953-5438(93)90020-T +Jennifer Allanson,A research agenda for physiological computing.,2004,16,Interacting with Computers,5,db/journals/iwc/iwc16.html#AllansonF04,https://doi.org/10.1016/j.intcom.2004.08.001 +I-Chun Hung,Learning with the Body: An Embodiment-Based Learning Strategy Enhances Performance of Comprehending Fundamental Optics.,2014,26,Interacting with Computers,4,db/journals/iwc/iwc26.html#HungLFC14,https://doi.org/10.1093/iwc/iwu011 +Kai Tuuri,Who Controls Who? Embodied Control Within Human-Technology Choreographies†.,2017,29,Interacting with Computers,4,db/journals/iwc/iwc29.html#TuuriPP17,https://doi.org/10.1093/iwc/iww040 +Kostas Stathis,An Abstract Framework for Globalising Interactive Systems.,1998,9,Interacting with Computers,4,db/journals/iwc/iwc9.html#StathisS98,https://doi.org/10.1016/S0953-5438(97)00027-1 +Gitte Lindgaard,Introduction to the Special Issue: The Tricky Landscape of Developing Rating Scales in HCI.,2013,25,Interacting with Computers,4,db/journals/iwc/iwc25.html#LindgaardK13,https://doi.org/10.1093/iwc/iwt026 +I. Scott MacKenzie,A performance comparison of two handwriting recognizers.,1999,11,Interacting with Computers,3,db/journals/iwc/iwc11.html#MacKenzieC99,https://doi.org/10.1016/S0953-5438(98)00030-7 +Anna Xambó,Exploring Social Interaction With a Tangible Music Interface.,2017,29,Interacting with Computers,2,db/journals/iwc/iwc29.html#XamboHMJD17,https://doi.org/10.1093/iwc/iww019 +Qing Wang,Enhancing group awareness on the web: Prototype and experiments of sharing web page visitation information among teammates.,2012,24,Interacting with Computers,5,db/journals/iwc/iwc24.html#WangLZC12,https://doi.org/10.1016/j.intcom.2012.05.006 +John Read Davies,A Methodology for the Design of Computerised Qualitative Research Tools.,1990,2,Interacting with Computers,1,db/journals/iwc/iwc2.html#Davies90,https://doi.org/10.1016/0953-5438(90)90013-8 +Matt Jones 0001,Improving web search on small screen devices.,2003,15,Interacting with Computers,4,db/journals/iwc/iwc15.html#JonesBT03,https://doi.org/10.1016/S0953-5438(03)00036-5 +Eeva Raita,Too good to be bad: Favorable product expectations boost subjective usability ratings.,2011,23,Interacting with Computers,4,db/journals/iwc/iwc23.html#RaitaO11,https://doi.org/10.1016/j.intcom.2011.04.002 +Bradley J. Betts,Small-vocabulary speech recognition using surface electromyography.,2006,18,Interacting with Computers,6,db/journals/iwc/iwc18.html#BettsBJ06,https://doi.org/10.1016/j.intcom.2006.08.012 +Frank Soboczenski,The Effects of Perceptual Interference on Number-Entry Errors.,2016,28,Interacting with Computers,2,db/journals/iwc/iwc28.html#SoboczenskiHC16,https://doi.org/10.1093/iwc/iwv034 +David England,Temporal aspects of interaction in shared virtual worlds.,1998,11,Interacting with Computers,1,db/journals/iwc/iwc11.html#EnglandG98,https://doi.org/10.1016/S0953-5438(98)00033-2 +Harald Trost,Datenbank-DIALOG: How to Communicate with Your Database in German (and Enjoy It).,1990,2,Interacting with Computers,3,db/journals/iwc/iwc2.html#TrostB90,https://doi.org/10.1016/0953-5438(90)90007-5 +Olle Bälter,A longitudinal study of attitude changes in a medical service organisation after an email introduction.,2002,14,Interacting with Computers,5,db/journals/iwc/iwc14.html#Balter02,https://doi.org/10.1016/S0953-5438(02)00012-7 +Dan Diaper,Task Analysis and Systems Analysis for Software Development.,1992,4,Interacting with Computers,1,db/journals/iwc/iwc4.html#DiaperA92,https://doi.org/10.1016/0953-5438(92)90016-9 +Jonas Moll,The Effects of Audio and Haptic Feedback on Collaborative Scanning and Placing.,2014,26,Interacting with Computers,3,db/journals/iwc/iwc26.html#MollPEH14,https://doi.org/10.1093/iwc/iwt031 +Navid Fallah,Indoor Human Navigation Systems: A Survey.,2013,25,Interacting with Computers,1,db/journals/iwc/iwc25.html#FallahABF13,https://doi.org/10.1093/iwc/iws010 +Shaojian Zhu,Identifying the effectiveness of using three different haptic devices for providing non-visual access to the web.,2011,23,Interacting with Computers,6,db/journals/iwc/iwc23.html#ZhuKTO11,https://doi.org/10.1016/j.intcom.2011.08.001 +Stéphane Bouchard,Manipulating subjective realism and its impact on presence: Preliminary results on feasibility and neuroanatomical correlates.,2012,24,Interacting with Computers,4,db/journals/iwc/iwc24.html#BouchardDTLPMLRCR12,https://doi.org/10.1016/j.intcom.2012.04.011 +Elizabeth Sillence,Going online for health advice: Changes in usage and trust practices over the last five years.,2007,19,Interacting with Computers,3,db/journals/iwc/iwc19.html#SillenceBHF07a,https://doi.org/10.1016/j.intcom.2006.10.002 +Torkil Clemmensen,Cultural cognition in usability evaluation.,2009,21,Interacting with Computers,3,db/journals/iwc/iwc21.html#ClemmensenHHSY09,https://doi.org/10.1016/j.intcom.2009.05.003 +Nichole Simpson,Managing the use of style guides in an organisational setting: practical lessons in ensuring UI consistency.,1999,11,Interacting with Computers,3,db/journals/iwc/iwc11.html#Simpson99,https://doi.org/10.1016/S0953-5438(98)00069-1 +Yu-chen Hsu,The effects of metaphors on novice and expert learners' performance and mental-model development.,2006,18,Interacting with Computers,4,db/journals/iwc/iwc18.html#Hsu06,https://doi.org/10.1016/j.intcom.2005.10.008 +Panayiotis Zaphiris,HCI issues in computer games.,2007,19,Interacting with Computers,2,db/journals/iwc/iwc19.html#ZaphirisA07,https://doi.org/10.1016/j.intcom.2006.08.007 +Damian Copeland,Identification of the optimum resolution specification for a haptic graphic display.,2010,22,Interacting with Computers,2,db/journals/iwc/iwc22.html#CopelandF10,https://doi.org/10.1016/j.intcom.2009.11.001 +Javier A. Bargas-Avila,Usable error message presentation in the World Wide Web: Do not show errors right away.,2007,19,Interacting with Computers,3,db/journals/iwc/iwc19.html#Bargas-AvilaOSVO07,https://doi.org/10.1016/j.intcom.2007.01.003 +Stella Mills,Learning through virtual reality: a preliminary investigation.,1999,11,Interacting with Computers,4,db/journals/iwc/iwc11.html#MillsA99,https://doi.org/10.1016/S0953-5438(98)00061-7 +Jonas Löwgren,Supporting the Use of Guidelines and Style Guides in Professional User Interface Design.,1993,5,Interacting with Computers,4,db/journals/iwc/iwc5.html#LowgrenL93,https://doi.org/10.1016/0953-5438(93)90003-C +Frank Deane,Theoretical Examination of the Effects of Anxiety and Electronic Performance Monitoring on Behavioural Biometric Security Systems.,1995,7,Interacting with Computers,4,db/journals/iwc/iwc7.html#DeaneHMS95,https://doi.org/10.1016/0953-5438(96)87700-9 +Chris Creed,Psychological responses to simulated displays of mismatched emotional expressions.,2008,20,Interacting with Computers,2,db/journals/iwc/iwc20.html#CreedB08,https://doi.org/10.1016/j.intcom.2007.11.004 +Joy Goodman,HCI and the older population.,2005,17,Interacting with Computers,6,db/journals/iwc/iwc17.html#GoodmanL05,https://doi.org/10.1016/j.intcom.2005.09.001 +Romisa Rohani Ghahari,Semi-aural Interfaces: Investigating Voice-controlled Aural Flows.,2016,28,Interacting with Computers,6,db/journals/iwc/iwc28.html#GhahariGGKB16,https://doi.org/10.1093/iwc/iww004 +Michael F. McTear,Intelligent interface technology: from theory to reality?,2000,12,Interacting with Computers,4,db/journals/iwc/iwc12.html#McTear00,https://doi.org/10.1016/S0953-5438(99)00002-8 +Mounia Ziat,Haptic recognition of shapes at different scales: A comparison of two methods of interaction.,2007,19,Interacting with Computers,1,db/journals/iwc/iwc19.html#ZiatGSL07,https://doi.org/10.1016/j.intcom.2006.07.004 +Andy Whitefield,Comparative Analysis of Task Analysis Products.,1994,6,Interacting with Computers,3,db/journals/iwc/iwc6.html#WhitefieldH94,https://doi.org/10.1016/0953-5438(94)90017-5 +Andrea H. Mason,An experimental study on the role of graphical information about hand movement when interacting with objects in virtual reality environments.,2007,19,Interacting with Computers,3,db/journals/iwc/iwc19.html#Mason07,https://doi.org/10.1016/j.intcom.2006.11.002 +Gerd P. J. Spenkelink,Display Elements and Gaps: A Comparison of Flat Panel Display Characteristics.,1992,4,Interacting with Computers,2,db/journals/iwc/iwc4.html#SpenkelinkB92,https://doi.org/10.1016/0953-5438(92)90007-3 +Pascal Béguin,Design as a mutual learning process between users and designers.,2003,15,Interacting with Computers,5,db/journals/iwc/iwc15.html#Beguin03,https://doi.org/10.1016/S0953-5438(03)00060-2 +Jeffrey Bardzell,Interaction criticism: An introduction to the practice.,2011,23,Interacting with Computers,6,db/journals/iwc/iwc23.html#Bardzell11,https://doi.org/10.1016/j.intcom.2011.07.001 +Sri Hastuti Kurniawan,Personalising web page presentation for older people.,2006,18,Interacting with Computers,3,db/journals/iwc/iwc18.html#KurniawanKEB06,https://doi.org/10.1016/j.intcom.2005.11.006 +Sari Kujala,UX Curve: A method for evaluating long-term user experience.,2011,23,Interacting with Computers,5,db/journals/iwc/iwc23.html#KujalaRVKS11,https://doi.org/10.1016/j.intcom.2011.06.005 +Geoff Cooper,Context and its Representation.,1991,3,Interacting with Computers,3,db/journals/iwc/iwc3.html#Cooper91,https://doi.org/10.1016/0953-5438(91)90015-T +Panos Markopoulos,Sharing experiences through awareness systems in the home.,2005,17,Interacting with Computers,5,db/journals/iwc/iwc17.html#MarkopoulosIHR05,https://doi.org/10.1016/j.intcom.2005.03.004 +Nils Jäger,Reciprocal Control in Adaptive Environments.,2017,29,Interacting with Computers,4,db/journals/iwc/iwc29.html#JagerSHKG17,https://doi.org/10.1093/iwc/iww037 +Michael Twidale,Designing interfaces to support collaboration in information retrieval.,1998,10,Interacting with Computers,2,db/journals/iwc/iwc10.html#TwidaleN98,https://doi.org/10.1016/S0953-5438(97)00022-2 +Saeed Amiri-Chimeh,Rings: A Game with a Purpose for Test Data Generation.,2018,30,Interacting with Computers,1,db/journals/iwc/iwc30.html#Amiri-ChimehHVS18,https://doi.org/10.1093/iwc/iww043 +José M. Pina,Students' Experience with Online Simulation Games: From Computer Anxiety to Satisfaction.,2018,30,Interacting with Computers,2,db/journals/iwc/iwc30.html#PinaB18,https://doi.org/10.1093/iwc/iwy003 +G. Nigel Gilbert,Planning Procedural Advice.,1990,2,Interacting with Computers,3,db/journals/iwc/iwc2.html#GilbertJ90,https://doi.org/10.1016/0953-5438(90)90004-2 +Andreas Riegler,Measuring Visual User Interface Complexity of Mobile Applications With Metrics.,2018,30,Interacting with Computers,3,db/journals/iwc/iwc30.html#RieglerH18,https://doi.org/10.1093/iwc/iwy008 +Asbjørn Følstad,Design Feedback From Users Through an Online Social Platform: Benefits and Limitations.,2016,28,Interacting with Computers,4,db/journals/iwc/iwc28.html#FolstadHKK16,https://doi.org/10.1093/iwc/iwv017 +Vangelis Karkaletsis,A Knowledge-Based Methodology for Supporting Multilingual and User-Tailored Interfaces.,1998,9,Interacting with Computers,3,db/journals/iwc/iwc9.html#KarkaletsisSV98,https://doi.org/10.1016/S0953-5438(97)00030-1 +Teresa Cerratto Pargman,Appropriating the use of a Moo for collaborative learning.,2003,15,Interacting with Computers,6,db/journals/iwc/iwc15.html#PargmanW03,https://doi.org/10.1016/j.intcom.2003.09.007 +Manouchehr Tabatabai,Investigation of Decision Making Process: A Hypermedia Approach.,1998,9,Interacting with Computers,4,db/journals/iwc/iwc9.html#Tabatabai98,https://doi.org/10.1016/S0953-5438(97)00009-X +Yrjö Engeström,Enriching activity theory without shortcuts.,2008,20,Interacting with Computers,2,db/journals/iwc/iwc20.html#Engestrom08,https://doi.org/10.1016/j.intcom.2007.07.003 +Alfons Maes,Signposts on the digital highway: The effect of semantic and pragmatic hyperlink previews.,2006,18,Interacting with Computers,2,db/journals/iwc/iwc18.html#MaesGC06,https://doi.org/10.1016/j.intcom.2005.05.004 +Michael A. Brown,Methods for Studying Technology in the Home.,2015,27,Interacting with Computers,1,db/journals/iwc/iwc27.html#BrownCPTA15,https://doi.org/10.1093/iwc/iwu041 +Alison Julia Katherine Green,Interacting Cognitive Subsystems: A Framework for Considering the Relationships between Performance and Knowledge Representations.,1994,6,Interacting with Computers,1,db/journals/iwc/iwc6.html#Green94,https://doi.org/10.1016/0953-5438(94)90005-1 +Yvonne Rogers,Collaborating around vertical and horizontal large interactive displays: which way is best?,2004,16,Interacting with Computers,6,db/journals/iwc/iwc16.html#RogersL04,https://doi.org/10.1016/j.intcom.2004.07.008 +Paul Curzon,Successful strategies of older people for finding information.,2005,17,Interacting with Computers,6,db/journals/iwc/iwc17.html#CurzonWW05,https://doi.org/10.1016/j.intcom.2005.09.006 +Yacine Rezgui,Exploring virtual team-working effectiveness in the construction sector.,2007,19,Interacting with Computers,1,db/journals/iwc/iwc19.html#Rezgui07,https://doi.org/10.1016/j.intcom.2006.07.002 +H. Rex Hartson,Rapid Prototyping in Human-Computer Interface Development.,1991,3,Interacting with Computers,1,db/journals/iwc/iwc3.html#HartsonS91,https://doi.org/10.1016/0953-5438(91)90005-M +Belkacem Chikhaoui,Towards analytical evaluation of human machine interfaces developed in the context of smart homes.,2010,22,Interacting with Computers,6,db/journals/iwc/iwc22.html#ChikhaouiP10,https://doi.org/10.1016/j.intcom.2010.08.003 +Benjamin V. Hanrahan,Attending to Email.,2016,28,Interacting with Computers,3,db/journals/iwc/iwc28.html#HanrahanP016,https://doi.org/10.1093/iwc/iwu048 +D. Ramanee Peiris,The effects of simulating human conversational style in a computer-based interview.,2000,12,Interacting with Computers,6,db/journals/iwc/iwc12.html#PeirisGA00,https://doi.org/10.1016/S0953-5438(00)00028-X +Stephen A. Brewster,The design of sonically-enhanced widgets.,1998,11,Interacting with Computers,2,db/journals/iwc/iwc11.html#Brewster98,https://doi.org/10.1016/S0953-5438(98)00028-9 +Sara Price,Where the attention is: Discovery learning in novel tangible environments.,2011,23,Interacting with Computers,5,db/journals/iwc/iwc23.html#PriceF11,https://doi.org/10.1016/j.intcom.2011.06.003 +Marguerite Barry,How We Talk About Interactivity: Modes and Meanings in HCI Research.,2017,29,Interacting with Computers,5,db/journals/iwc/iwc29.html#BarryD17,https://doi.org/10.1093/iwc/iwx004 +Pierre Rabardel,From computer to instrument system: a developmental perspective.,2003,15,Interacting with Computers,5,db/journals/iwc/iwc15.html#RabardelB03,https://doi.org/10.1016/S0953-5438(03)00058-4 +Cath Dillon,Pressing the right buttons: taking the viewer there.,2004,16,Interacting with Computers,4,db/journals/iwc/iwc16.html#DillonFK04,https://doi.org/10.1016/j.intcom.2004.06.008 +Andrea Bianchi,Counting clicks and beeps: Exploring numerosity based haptic and audio PIN entry.,2012,24,Interacting with Computers,5,db/journals/iwc/iwc24.html#BianchiOK12,https://doi.org/10.1016/j.intcom.2012.06.005 +John M. Carroll,"Introduction to this Special Issue on ""Scenario-Based System Development"".",2000,13,Interacting with Computers,1,db/journals/iwc/iwc13.html#Carroll00,https://doi.org/10.1016/S0953-5438(00)00022-9 +Jill Cao,Idea Garden: Situated Support for Problem Solving by End-User Programmers.,2015,27,Interacting with Computers,6,db/journals/iwc/iwc27.html#CaoFBS15,https://doi.org/10.1093/iwc/iwu022 +Taro Kanno,A method for conflict detection based on team intention inference.,2006,18,Interacting with Computers,4,db/journals/iwc/iwc18.html#KannoNF06,https://doi.org/10.1016/j.intcom.2005.11.012 +Anthony Savidis,Unified user interface design: designing universally accessible interactions.,2004,16,Interacting with Computers,2,db/journals/iwc/iwc16.html#SavidisS04,https://doi.org/10.1016/j.intcom.2003.12.003 +David G. Jameson,Real-Time Interactivity on the SuperJANET Network.,1996,8,Interacting with Computers,3,db/journals/iwc/iwc8.html#JamesonHOB96,https://doi.org/10.1016/0953-5438(96)01031-4 +Dhaval Vyas,Organizational Affordances: A Structuration Theory Approach to Affordances.,2017,29,Interacting with Computers,2,db/journals/iwc/iwc29.html#VyasCD17,https://doi.org/10.1093/iwc/iww008 +Gitte Lindgaard,Human Performance in Fault Diagnosis: Can Expert Systems Help?,1995,7,Interacting with Computers,3,db/journals/iwc/iwc7.html#Lindgaard95,https://doi.org/10.1016/0953-5438(95)93604-4 +Eva Olsson,Participatory design with train drivers - a process analysis.,2005,17,Interacting with Computers,2,db/journals/iwc/iwc17.html#OlssonJ05,https://doi.org/10.1016/j.intcom.2004.11.001 +Gheorghita Ghinea,Guest Editorial.,2014,26,Interacting with Computers,4,db/journals/iwc/iwc26.html#GhineaHMC14,https://doi.org/10.1093/iwc/iwu017 +Margaret M. Burnett,Gender pluralism in problem-solving software.,2011,23,Interacting with Computers,5,db/journals/iwc/iwc23.html#BurnettBWFCPGR11,https://doi.org/10.1016/j.intcom.2011.06.004 +Richard Flavell,Further Investigations into the Use of Colour Coding Scales.,1992,4,Interacting with Computers,2,db/journals/iwc/iwc4.html#FlavellH92,https://doi.org/10.1016/0953-5438(92)90003-X +Dan Diaper,A Goal Satisfied: Rapid Journal Publication.,1996,8,Interacting with Computers,1,db/journals/iwc/iwc8.html#Diaper96,https://doi.org/10.1016/0953-5438(95)01022-X +Minju Kim,HoloBox: Augmented Visualization and Presentation with Spatially Integrated Presenter.,2018,30,Interacting with Computers,3,db/journals/iwc/iwc30.html#KimW18,https://doi.org/10.1093/iwc/iwy007 +Jon May,The Case for Supportive Evaluation During Design.,1995,7,Interacting with Computers,2,db/journals/iwc/iwc7.html#MayB95,https://doi.org/10.1016/0953-5438(95)93504-X +James R. Lewis,Critical Review of 'The Usability Metric for User Experience'.,2013,25,Interacting with Computers,4,db/journals/iwc/iwc25.html#Lewis13a,https://doi.org/10.1093/iwc/iwt013 +Olle Bälter,How to replace an old email system with a new.,2000,12,Interacting with Computers,6,db/journals/iwc/iwc12.html#Balter00,https://doi.org/10.1016/S0953-5438(00)00020-5 +Georgios Paliouras,Discovering user communities on the Internet using unsupervised machine learning techniques.,2002,14,Interacting with Computers,6,db/journals/iwc/iwc14.html#PaliourasPKS02,https://doi.org/10.1016/S0953-5438(02)00015-2 +Jinjuan Feng,How productivity improves in hands-free continuous dictation tasks: lessons learned from a longitudinal study.,2005,17,Interacting with Computers,3,db/journals/iwc/iwc17.html#FengKS05,https://doi.org/10.1016/j.intcom.2004.06.013 +Julio Abascal,Moving towards inclusive design guidelines for socially and ethically aware HCI.,2005,17,Interacting with Computers,5,db/journals/iwc/iwc17.html#AbascalN05,https://doi.org/10.1016/j.intcom.2005.03.002 +Chris J. H. Fowler,Historical Analysis: A Method for Evaluating Requirement Capture Methodologies.,1990,2,Interacting with Computers,2,db/journals/iwc/iwc2.html#FowlerKM90,https://doi.org/10.1016/0953-5438(90)90023-B +Rosa María Baños,Positive mood induction procedures for virtual environments designed for elderly people.,2012,24,Interacting with Computers,3,db/journals/iwc/iwc24.html#BanosECGQB12,https://doi.org/10.1016/j.intcom.2012.04.002 +Daniel Sjölie,Presence and general principles of brain function.,2012,24,Interacting with Computers,4,db/journals/iwc/iwc24.html#Sjolie12,https://doi.org/10.1016/j.intcom.2012.04.004 +Mathilde M. Bekker,KidReporter: a user requirements gathering technique for designing with children.,2003,15,Interacting with Computers,2,db/journals/iwc/iwc15.html#BekkerBKL03,https://doi.org/10.1016/S0953-5438(03)00007-9 +Panos Markopoulos,On the assessment of usability testing methods for children.,2003,15,Interacting with Computers,2,db/journals/iwc/iwc15.html#MarkopoulosB03a,https://doi.org/10.1016/S0953-5438(03)00009-2 +Chris Roast,Designing for delay in interactive information retrieval.,1998,10,Interacting with Computers,1,db/journals/iwc/iwc10.html#Roast98,https://doi.org/10.1016/S0953-5438(97)00020-9 +Harold W. Thimbleby,You're Right About the Cure: Don't Do That.,1990,2,Interacting with Computers,1,db/journals/iwc/iwc2.html#Thimbleby90,https://doi.org/10.1016/0953-5438(90)90011-6 +J. A. Shelton,The Individual 'Working-to-Rules': Reducing Determinism in Taylor-Made Expert Systems.,1989,1,Interacting with Computers,3,db/journals/iwc/iwc1.html#Shelton89,https://doi.org/10.1016/0953-5438(89)90019-2 +E. A. Onibere,Human-computer interface design issues for a multi-cultural and multi-lingual English speaking country Botswana.,2001,13,Interacting with Computers,4,db/journals/iwc/iwc13.html#OnibereMBM01,https://doi.org/10.1016/S0953-5438(00)00052-7 +Blay Whitby,Some* it's hard to be a robot: A call for action on the ethics of abusing artificial agents.,2008,20,Interacting with Computers,3,db/journals/iwc/iwc20.html#Whitby08,https://doi.org/10.1016/j.intcom.2008.02.002 +Lindsay J. Evett,Text formats and web design for visually impaired and dyslexic readers - Clear Text for All.,2005,17,Interacting with Computers,4,db/journals/iwc/iwc17.html#EvettB05,https://doi.org/10.1016/j.intcom.2005.04.001 +Christian Hübscher,The organization of interaction design pattern languages alongside the design process.,2011,23,Interacting with Computers,3,db/journals/iwc/iwc23.html#HubscherPRBO11,https://doi.org/10.1016/j.intcom.2011.02.009 +Lex van Velsen,Incorporating user motivations to design for video tagging.,2009,21,Interacting with Computers,3,db/journals/iwc/iwc21.html#VelsenM09,https://doi.org/10.1016/j.intcom.2009.05.002 +Benoît Bossavit,Hierarchical Menu Selection with a Body-Centered Remote Interface.,2014,26,Interacting with Computers,5,db/journals/iwc/iwc26.html#BossavitPAP14,https://doi.org/10.1093/iwc/iwt043 +Victor Kaptelinin,Learning with artefacts: integrating technologies into activities.,2003,15,Interacting with Computers,6,db/journals/iwc/iwc15.html#Kaptelinin03,https://doi.org/10.1016/j.intcom.2003.09.006 +Afke Donker,Drag-and-drop errors in young children's use of the mouse.,2007,19,Interacting with Computers,2,db/journals/iwc/iwc19.html#DonkerR07,https://doi.org/10.1016/j.intcom.2006.05.008 +Luc Trouche,From artifact to instrument: mathematics teaching mediated by symbolic calculators.,2003,15,Interacting with Computers,6,db/journals/iwc/iwc15.html#Trouche03,https://doi.org/10.1016/j.intcom.2003.09.004 +Jennifer A. Rode,A theoretical agenda for feminist HCI.,2011,23,Interacting with Computers,5,db/journals/iwc/iwc23.html#Rode11,https://doi.org/10.1016/j.intcom.2011.04.005 +Andy Smith,Prototype evaluation and redesign: structuring the design space through contextual techniques.,2002,14,Interacting with Computers,6,db/journals/iwc/iwc14.html#SmithD02,https://doi.org/10.1016/S0953-5438(02)00031-0 +Paul Beynon-Davies,Human error and information systems failure: the case of the London ambulance service computer-aided despatch system project.,1999,11,Interacting with Computers,6,db/journals/iwc/iwc11.html#Beynon-Davies99,https://doi.org/10.1016/S0953-5438(98)00050-2 +Maja van der Velden,Programming for cognitive justice: Towards an ethical framework for democratic code.,2005,17,Interacting with Computers,1,db/journals/iwc/iwc17.html#Velden05,https://doi.org/10.1016/j.intcom.2004.10.004 +O. Richardson,Gathering accurate client information from World Wide Web sites.,2000,12,Interacting with Computers,6,db/journals/iwc/iwc12.html#Richardson00,https://doi.org/10.1016/S0953-5438(00)00021-7 +Jorge Gonçalves,Tapping Task Performance on Smartphones in Cold Temperature.,2017,29,Interacting with Computers,3,db/journals/iwc/iwc29.html#GoncalvesSBLH17,https://doi.org/10.1093/iwc/iww029 +David Trepess,A classification and analysis of erroneous actions in computer supported co-operative work environment.,1999,11,Interacting with Computers,6,db/journals/iwc/iwc11.html#TrepessS99,https://doi.org/10.1016/S0953-5438(98)00046-0 +Ioana Ghergulescu,A Novel Sensor-Based Methodology for Learner's Motivation Analysis in Game-Based Learning.,2014,26,Interacting with Computers,4,db/journals/iwc/iwc26.html#GhergulescuM14,https://doi.org/10.1093/iwc/iwu013 +Joel Lanir,The Influence of a Location-Aware Mobile Guide on Museum Visitors' Behavior.,2013,25,Interacting with Computers,6,db/journals/iwc/iwc25.html#LanirKDWS13,https://doi.org/10.1093/iwc/iwt002 +José Luis Sierra,A language-driven approach for the design of interactive applications.,2008,20,Interacting with Computers,1,db/journals/iwc/iwc20.html#SierraFF08,https://doi.org/10.1016/j.intcom.2007.09.001 +Harold W. Thimbleby,Intelligent Adaptive Assistance and its Automatic Generation.,1996,8,Interacting with Computers,1,db/journals/iwc/iwc8.html#ThimblebyA96,https://doi.org/10.1016/0953-5438(95)01019-X +Joel Lanir,Examining proactiveness and choice in a location-aware mobile museum guide.,2011,23,Interacting with Computers,5,db/journals/iwc/iwc23.html#LanirKWSZ11,https://doi.org/10.1016/j.intcom.2011.05.007 +Tom Rodden,Computer Support for Co-Operative Work.,1992,4,Interacting with Computers,3,db/journals/iwc/iwc4.html#RoddenM92, +Yingzi Lin,Effective attention allocation behavior and its measurement: a preliminary study.,2004,16,Interacting with Computers,6,db/journals/iwc/iwc16.html#LinZK04,https://doi.org/10.1016/j.intcom.2004.08.006 +Elaine M. Raybourn,Applying simulation experience design methods to creating serious game-based adaptive training systems.,2007,19,Interacting with Computers,2,db/journals/iwc/iwc19.html#Raybourn07,https://doi.org/10.1016/j.intcom.2006.08.001 +Harry Hochheiser,Revisiting breadth vs. depth in menu structures for blind users of screen readers.,2010,22,Interacting with Computers,5,db/journals/iwc/iwc22.html#HochheiserL10,https://doi.org/10.1016/j.intcom.2010.02.003 +Gilbert Cockton,Working spheres or engagements: Implications for designing?,2008,20,Interacting with Computers,2,db/journals/iwc/iwc20.html#Cockton08,https://doi.org/10.1016/j.intcom.2007.07.001 +Fabio Paternò,Formal Reasoning about Dialogue Properties with Automatic Support.,1997,9,Interacting with Computers,2,db/journals/iwc/iwc9.html#Paterno97,https://doi.org/10.1016/S0953-5438(97)00015-5 +Mirjam Seckler,User-friendly locations of error messages in web forms: Put them on the right side of the erroneous input field.,2012,24,Interacting with Computers,3,db/journals/iwc/iwc24.html#SecklerTOB12,https://doi.org/10.1016/j.intcom.2012.03.002 +Sandrine Fischer,Screening Prototype Features in Terms of Intuitive Use: Design Considerations and Proof of Concept.,2015,27,Interacting with Computers,3,db/journals/iwc/iwc27.html#FischerII15,https://doi.org/10.1093/iwc/iwv002 +C. H. E. Phillips,Review of Graphical Notations for Specifying Direct Manipulation Interfaces.,1994,6,Interacting with Computers,4,db/journals/iwc/iwc6.html#Phillips94,https://doi.org/10.1016/0953-5438(94)90011-6 +Gaëlle Calvary,A Unifying Reference Framework for multi-target user interfaces.,2003,15,Interacting with Computers,3,db/journals/iwc/iwc15.html#CalvaryCTLBV03,https://doi.org/10.1016/S0953-5438(03)00010-9 +Sarah Diefenbach,An Experience Perspective on Intuitive Interaction: Central Components and the Special Effect of Domain Transfer Distance.,2015,27,Interacting with Computers,3,db/journals/iwc/iwc27.html#DiefenbachU15,https://doi.org/10.1093/iwc/iwv001 +Daniela Villani,May I experience more presence in doing the same thing in virtual reality than in reality? An answer from a simulated job interview.,2012,24,Interacting with Computers,4,db/journals/iwc/iwc24.html#VillaniRCR12,https://doi.org/10.1016/j.intcom.2012.04.008 +Sara Price,Using 'tangibles' to promote novel forms of playful learning.,2003,15,Interacting with Computers,2,db/journals/iwc/iwc15.html#PriceRSSN03,https://doi.org/10.1016/S0953-5438(03)00006-7 +Feng Zhou 0003,Emotion Prediction from Physiological Signals: A Comparison Study Between Visual and Auditory Elicitors.,2014,26,Interacting with Computers,3,db/journals/iwc/iwc26.html#ZhouQJH14,https://doi.org/10.1093/iwc/iwt039 +Seung-Hun Yoo,Modeling users' task performance on the mobile device: PC convergence system.,2006,18,Interacting with Computers,5,db/journals/iwc/iwc18.html#YooY06,https://doi.org/10.1016/j.intcom.2006.01.003 +Ann Blandford,Disrupting digital library development with scenario informed design.,2007,19,Interacting with Computers,1,db/journals/iwc/iwc19.html#BlandfordKBFF07,https://doi.org/10.1016/j.intcom.2006.07.003 +Ron Henderson,The beta test of an electronic supermarket.,1998,10,Interacting with Computers,4,db/journals/iwc/iwc10.html#HendersonRR98,https://doi.org/10.1016/S0953-5438(98)00037-X +Andrew F. Monk,The Personal Browser: A Tool for Directed Navigation in Hypertext Systems.,1989,1,Interacting with Computers,2,db/journals/iwc/iwc1.html#Monk89,https://doi.org/10.1016/0953-5438(89)90026-X +Alison Cawsey,Explanatory Dialogues.,1989,1,Interacting with Computers,1,db/journals/iwc/iwc1.html#Cawsey89,https://doi.org/10.1016/0953-5438(89)90008-8 +Robin R. Penner,Implementation of automated interaction design with collaborative models.,2003,15,Interacting with Computers,3,db/journals/iwc/iwc15.html#PennerS03,https://doi.org/10.1016/S0953-5438(03)00014-6 +Inger V. Eriksson,Visual Simulation as an Aid to Understanding Computer Functions.,1991,3,Interacting with Computers,2,db/journals/iwc/iwc3.html#ErikssonFR91,https://doi.org/10.1016/0953-5438(91)90011-P +Panos Markopoulos,Composition and Synthesis with a Formal Interactor Model.,1997,9,Interacting with Computers,2,db/journals/iwc/iwc9.html#MarkopoulosRJ97,https://doi.org/10.1016/S0953-5438(97)00011-8 +Andy Cockburn,Hidden messages: evaluating the efficiency of code elision in program navigation.,2003,15,Interacting with Computers,3,db/journals/iwc/iwc15.html#CockburnS03,https://doi.org/10.1016/S0953-5438(03)00003-1 +Hao-Chuan Wang,A web-based tutoring system with styles-matching strategy for spatial geometric transformation.,2006,18,Interacting with Computers,3,db/journals/iwc/iwc18.html#WangLC06,https://doi.org/10.1016/j.intcom.2005.11.002 +Simon Buckingham Shum,Delivering HCI Modelling to Designers: A Framework and Case Study of Cognitive Modelling.,1994,6,Interacting with Computers,3,db/journals/iwc/iwc6.html#ShumH94,https://doi.org/10.1016/0953-5438(94)90018-3 +Donald L. Day,Editorial: Shared Values and Shared Interfaces 2: Preview and Current Research.,1998,9,Interacting with Computers,4,db/journals/iwc/iwc9.html#Day98a,https://doi.org/10.1016/S0953-5438(97)00000-3 +Peter D. Holden,Human-Centered Expert Systems: A Response to Taylorism and the Scientific Paradigm.,1990,2,Interacting with Computers,1,db/journals/iwc/iwc2.html#Holden90,https://doi.org/10.1016/0953-5438(90)90018-D +Kee Yong Lim,Structured Task Analysis: An Instantiation of the MUSE Method for Usability Engineering.,1996,8,Interacting with Computers,1,db/journals/iwc/iwc8.html#Lim96,https://doi.org/10.1016/0953-5438(95)01017-3 +Amon Rapp,Drawing Inspiration from World of Warcraft: Gamification Design Elements for Behavior Change Technologies.,2017,29,Interacting with Computers,5,db/journals/iwc/iwc29.html#Rapp17,https://doi.org/10.1093/iwc/iwx001 +Fernando Martínez Santiago,Pictogram Tablet: A Speech Generating Device Focused on Language Learning.,2018,30,Interacting with Computers,2,db/journals/iwc/iwc30.html#SantiagoMG18,https://doi.org/10.1093/iwc/iwx022 +Gitte Lindgaard,What is this evasive beast we call user satisfaction?.,2003,15,Interacting with Computers,3,db/journals/iwc/iwc15.html#LindgaardD03,https://doi.org/10.1016/S0953-5438(02)00063-2 +Sandra Suijkerbuijk,Seeing the First-Person Perspective in Dementia: A Qualitative Personal Evaluation Game to Evaluate Assistive Technology for People Affected by Dementia in the Home Context.,2015,27,Interacting with Computers,1,db/journals/iwc/iwc27.html#SuijkerbuijkBKSO15,https://doi.org/10.1093/iwc/iwu038 +Debaleena Chattopadhyay,Understanding Advice Sharing among Physicians: Towards Trust-Based Clinical Alerts.,2016,28,Interacting with Computers,4,db/journals/iwc/iwc28.html#ChattopadhyayGD16,https://doi.org/10.1093/iwc/iwv030 +Elizabeth Sillence,Health Websites that people can trust - the case of hypertension.,2007,19,Interacting with Computers,1,db/journals/iwc/iwc19.html#SillenceBHF07,https://doi.org/10.1016/j.intcom.2006.07.009 +Peter Phillips,Multi-authoring virtual worlds via the World Wide Web.,2001,13,Interacting with Computers,3,db/journals/iwc/iwc13.html#PhillipsR01,https://doi.org/10.1016/S0953-5438(00)00043-6 +Benedikt Ley,At Home with Users: A Comparative View of Living Labs.,2015,27,Interacting with Computers,1,db/journals/iwc/iwc27.html#LeyOMHRRRW15,https://doi.org/10.1093/iwc/iwu025 +Brian P. Bailey,TAPRAV: An interactive analysis tool for exploring workload aligned to models of task execution.,2007,19,Interacting with Computers,3,db/journals/iwc/iwc19.html#BaileyBI07,https://doi.org/10.1016/j.intcom.2007.01.004 +John D. Gould,Using a Touchscreen for Simple Tasks.,1990,2,Interacting with Computers,1,db/journals/iwc/iwc2.html#GouldGBMR90,https://doi.org/10.1016/0953-5438(90)90014-9 +Krist Wongsuphasawat,Querying event sequences by exact match or similarity search: Design and empirical evaluation.,2012,24,Interacting with Computers,2,db/journals/iwc/iwc24.html#WongsuphasawatPTS12,https://doi.org/10.1016/j.intcom.2012.01.003 +Luis A. Leiva,Context-Aware Gestures for Mixed-Initiative Text Editing UIs.,2015,27,Interacting with Computers,6,db/journals/iwc/iwc27.html#LeivaARTV15,https://doi.org/10.1093/iwc/iwu019 +Johan Blomkvist,Formative Evaluation of IT-based Services: A Case Study of a Meal Planning Service.,2014,26,Interacting with Computers,6,db/journals/iwc/iwc26.html#BlomkvistAH14,https://doi.org/10.1093/iwc/iwt052 +T. Conkar,CLIMATE: A framework for developing holistic requirements analysis in Virtual Environments.,1999,11,Interacting with Computers,4,db/journals/iwc/iwc11.html#ConkarNK99,https://doi.org/10.1016/S0953-5438(98)00058-7 +Antonio J. Jara,Communication Protocol for Enabling Continuous Monitoring of Elderly People through Near Field Communications.,2014,26,Interacting with Computers,2,db/journals/iwc/iwc26.html#JaraLFZMS14,https://doi.org/10.1093/iwc/iwt030 +Rubén San Segundo,Spoken Spanish generation from sign language.,2010,22,Interacting with Computers,2,db/journals/iwc/iwc22.html#SegundoPFSBLSG10,https://doi.org/10.1016/j.intcom.2009.11.011 +Ann Light,Beyond the interface: users' perceptions of interaction and audience on websites.,2001,13,Interacting with Computers,3,db/journals/iwc/iwc13.html#LightW01,https://doi.org/10.1016/S0953-5438(00)00044-8 +Dirk Draheim,Modelling form-based interfaces with bipartite state machines.,2005,17,Interacting with Computers,2,db/journals/iwc/iwc17.html#DraheimW05,https://doi.org/10.1016/j.intcom.2005.01.002 +Elizabeth Charnock,Task-Based Method for Creating Usable Hypertext.,1994,6,Interacting with Computers,3,db/journals/iwc/iwc6.html#CharnockRSW94,https://doi.org/10.1016/0953-5438(94)90016-7 +Lydia Plowman,Researching Young Children's Everyday Uses of Technology in the Family Home.,2015,27,Interacting with Computers,1,db/journals/iwc/iwc27.html#Plowman15,https://doi.org/10.1093/iwc/iwu031 +James J. Jiang,Side effects of decision guidance in decision support systems.,2000,12,Interacting with Computers,5,db/journals/iwc/iwc12.html#JiangK00,https://doi.org/10.1016/S0953-5438(99)00018-1 +Jim Dabrowski,40 years of searching for the best computer system response time.,2011,23,Interacting with Computers,5,db/journals/iwc/iwc23.html#DabrowskiM11,https://doi.org/10.1016/j.intcom.2011.05.008 +Bob Kemp,A taxonomy of design guidance for hypermedia design.,1999,12,Interacting with Computers,2,db/journals/iwc/iwc12.html#KempB99,https://doi.org/10.1016/S0953-5438(99)00009-0 +Johanna Höysniemi,Using peer tutoring in evaluating the usability of a physically interactive computer game with children.,2003,15,Interacting with Computers,2,db/journals/iwc/iwc15.html#HoysniemiHT03,https://doi.org/10.1016/S0953-5438(03)00008-0 +Julie A. Jacko,Modelling of Menu Design in Computerized Work.,1995,7,Interacting with Computers,3,db/journals/iwc/iwc7.html#JackoSK95,https://doi.org/10.1016/0953-5438(95)93606-6 +Valérie Maquil,Towards Understanding the Design Space of Tangible User Interfaces for Collaborative Urban Planning.,2016,28,Interacting with Computers,3,db/journals/iwc/iwc28.html#Maquil16,https://doi.org/10.1093/iwc/iwv005 +Jane M. Carey,Creating Global Software: A Conspectus and Review.,1998,9,Interacting with Computers,4,db/journals/iwc/iwc9.html#Carey98,https://doi.org/10.1016/S0953-5438(97)00028-3 +Tunu Miah,Vanishing Windows - a technique for adaptive window management.,2000,12,Interacting with Computers,4,db/journals/iwc/iwc12.html#MiahA00,https://doi.org/10.1016/S0953-5438(99)00003-X +Paul Vickers,When bugs sing.,2002,14,Interacting with Computers,6,db/journals/iwc/iwc14.html#VickersA02b,https://doi.org/10.1016/S0953-5438(02)00026-7 +Suziah Sulaiman,Haptic experience and the design of drawing interfaces.,2010,22,Interacting with Computers,3,db/journals/iwc/iwc22.html#SulaimanBC10,https://doi.org/10.1016/j.intcom.2009.11.009 +Mark Blythe,Socially dependable design: The challenge of ageing populations for HCI.,2005,17,Interacting with Computers,6,db/journals/iwc/iwc17.html#BlytheMD05,https://doi.org/10.1016/j.intcom.2005.09.005 +William Simm,On the Role of Digital Consultation Tools in Public Space Design: A Case Study.,2016,28,Interacting with Computers,3,db/journals/iwc/iwc28.html#SimmFWDBFGWLL16,https://doi.org/10.1093/iwc/iwu042 +David Dearman,Rendezvousing with location-aware devices: Enhancing social coordination.,2005,17,Interacting with Computers,5,db/journals/iwc/iwc17.html#DearmanHI05,https://doi.org/10.1016/j.intcom.2005.03.005 +Stephen Viller,Human factors in requirements engineering: A survey of human sciences literature relevant to the improvement of dependable systems development processes.,1999,11,Interacting with Computers,6,db/journals/iwc/iwc11.html#VillerBR99,https://doi.org/10.1016/S0953-5438(98)00049-6 +André Tricot,The validity of rational criteria for the interpretation of user-hypertext interaction.,1999,12,Interacting with Computers,1,db/journals/iwc/iwc12.html#TricotPBD99,https://doi.org/10.1016/S0953-5438(98)00053-8 +Lassi A. Liikkanen,Shuffling Services: Current Trends in Interacting with Digital Music.,2016,28,Interacting with Computers,3,db/journals/iwc/iwc28.html#LiikkanenA16,https://doi.org/10.1093/iwc/iwv004 +Elaine M. Raybourn,Adding cultural signposts in adaptive community-based virtual environments.,2003,15,Interacting with Computers,1,db/journals/iwc/iwc15.html#RaybournKD03,https://doi.org/10.1016/S0953-5438(02)00056-5 +Linda Little,Private whispers/public eyes: Is receiving highly personal information in a public place stressful?,2009,21,Interacting with Computers,4,db/journals/iwc/iwc21.html#LittleB09,https://doi.org/10.1016/j.intcom.2009.06.002 +Dzmitry Aliakseyeu,A computer support tool for the early stages of architectural design.,2006,18,Interacting with Computers,4,db/journals/iwc/iwc18.html#AliakseyeuMR06,https://doi.org/10.1016/j.intcom.2005.11.010 +Montserrat Sendín,Validation of a Framework for Enriching Human-Computer-Human Interaction with Awareness in a Seamless Way.,2014,26,Interacting with Computers,5,db/journals/iwc/iwc26.html#SendinLL14,https://doi.org/10.1093/iwc/iwt046 +Ernest A. Edmonds,On physiological computing with an application in interactive art.,2004,16,Interacting with Computers,5,db/journals/iwc/iwc16.html#EdmondsEMT04,https://doi.org/10.1016/j.intcom.2004.08.003 +Steve Walker,Designing for civil society.,2005,17,Interacting with Computers,1,db/journals/iwc/iwc17.html#WalkerD05,https://doi.org/10.1016/j.intcom.2004.10.001 +Alistair G. Sutcliffe,Towards a cognitive theory of information retrieval.,1998,10,Interacting with Computers,3,db/journals/iwc/iwc10.html#SutcliffeE98,https://doi.org/10.1016/S0953-5438(98)00013-7 +Jeremiah D. Still,Designing Intuitive Interactions: Exploring Performance and Reflection Measures.,2015,27,Interacting with Computers,3,db/journals/iwc/iwc27.html#StillSG15,https://doi.org/10.1093/iwc/iwu046 +Mika Käki,Findex: improving search result use through automatic filtering categories.,2005,17,Interacting with Computers,2,db/journals/iwc/iwc17.html#KakiA05,https://doi.org/10.1016/j.intcom.2005.01.001 +Catherine S. Weir,Functionality and usability in design for eStatements in eBanking services.,2007,19,Interacting with Computers,2,db/journals/iwc/iwc19.html#WeirMJ07,https://doi.org/10.1016/j.intcom.2006.08.010 +Daniel Cunliffe,Online design for bilingual civil society: a Welsh perspective.,2005,17,Interacting with Computers,1,db/journals/iwc/iwc17.html#CunliffeR05,https://doi.org/10.1016/j.intcom.2004.10.003 +Carsten Sørensen,Navigating the World Wide Web: bookmark maintenance architectures.,2001,13,Interacting with Computers,3,db/journals/iwc/iwc13.html#SorensenMB01,https://doi.org/10.1016/S0953-5438(00)00041-2 +Wonkyu Park,Intuitive Multi-Touch Gestures for Mobile Web Browsers.,2013,25,Interacting with Computers,5,db/journals/iwc/iwc25.html#ParkH13,https://doi.org/10.1093/iwc/iws026 +Kraig Finstad,The Usability Metric for User Experience.,2010,22,Interacting with Computers,5,db/journals/iwc/iwc22.html#Finstad10,https://doi.org/10.1016/j.intcom.2010.04.004 +Stella Mills,Integrating Information - A Task-Orientated Approach.,1998,9,Interacting with Computers,3,db/journals/iwc/iwc9.html#Mills98,https://doi.org/10.1016/S0953-5438(97)00016-7 +Iva M. Lu,Managing Design Ideas with a Shared Drawing Tool.,1993,5,Interacting with Computers,1,db/journals/iwc/iwc5.html#LuM93,https://doi.org/10.1016/0953-5438(93)90026-P +Andy Smith,A process model for developing usable cross-cultural websites.,2004,16,Interacting with Computers,1,db/journals/iwc/iwc16.html#SmithDFMC04,https://doi.org/10.1016/j.intcom.2003.11.005 +Douglas J. Gillan,How Should Fitts' Law be Applied to Human-Computer Interaction?,1992,4,Interacting with Computers,3,db/journals/iwc/iwc4.html#GillanHARM92,https://doi.org/10.1016/0953-5438(92)90019-C +Hannu Karvonen,Hidden roles of the train driver: A challenge for metro automation.,2011,23,Interacting with Computers,4,db/journals/iwc/iwc23.html#KarvonenAWSSN11,https://doi.org/10.1016/j.intcom.2011.04.008 +Hans van der Meij,Assessment of the Minimalist Approach to Computer User Documentation.,1993,5,Interacting with Computers,4,db/journals/iwc/iwc5.html#MeijL93,https://doi.org/10.1016/0953-5438(93)90001-A +Giuseppe Riva,From the body to the tools and back: A general framework for presence in mediated interactions.,2012,24,Interacting with Computers,4,db/journals/iwc/iwc24.html#RivaM12,https://doi.org/10.1016/j.intcom.2012.04.007 +Catherine S. Weir,Usable security: User preferences for authentication methods in eBanking and the effects of experience.,2010,22,Interacting with Computers,3,db/journals/iwc/iwc22.html#WeirDRJ10,https://doi.org/10.1016/j.intcom.2009.10.001 +Regina Jucks,I Need to Be Explicit: You're Wrong: Impact of Face Threats on Social Evaluations in Online Instructional Communication.,2016,28,Interacting with Computers,1,db/journals/iwc/iwc28.html#JucksPB16,https://doi.org/10.1093/iwc/iwu032 +Olurotimi Richard Akinlofa,Effect of Interface Dynamism on Learning Procedural Motor Skills.,2013,25,Interacting with Computers,3,db/journals/iwc/iwc25.html#AkinlofaHE13,https://doi.org/10.1093/iwc/iws015 +Ingrid Nunes,Natural Language-based Representation of User Preferences.,2015,27,Interacting with Computers,2,db/journals/iwc/iwc27.html#NunesBCMLL15,https://doi.org/10.1093/iwc/iwt060 +Claire Paddison,Applying heuristics to accessibility inspections.,2004,16,Interacting with Computers,3,db/journals/iwc/iwc16.html#PaddisonE04,https://doi.org/10.1016/j.intcom.2004.04.007 +George Lekakos,Improving the prediction accuracy of recommendation algorithms: Approaches anchored on human factors.,2006,18,Interacting with Computers,3,db/journals/iwc/iwc18.html#LekakosG06,https://doi.org/10.1016/j.intcom.2005.11.004 +Antal Haans,Embodiment and telepresence: Toward a comprehensive theoretical framework.,2012,24,Interacting with Computers,4,db/journals/iwc/iwc24.html#HaansI12,https://doi.org/10.1016/j.intcom.2012.04.010 +Ron Wakkary,Unselfconscious Interaction: A Conceptual Construct.,2016,28,Interacting with Computers,4,db/journals/iwc/iwc28.html#WakkaryDH16,https://doi.org/10.1093/iwc/iwv018 +Simon Morris,Interactivity and collaboration on the WWW is the 'WWW shell' sufficient?,2001,13,Interacting with Computers,6,db/journals/iwc/iwc13.html#MorrisNCL01,https://doi.org/10.1016/S0953-5438(01)00035-2 +Martin Schrepp,The influence of hedonic quality on the attractiveness of user interfaces of business management software.,2006,18,Interacting with Computers,5,db/journals/iwc/iwc18.html#SchreppHL06,https://doi.org/10.1016/j.intcom.2006.01.002 +Marie-odile Bes,A case study of a human error in a dynamic environment.,1999,11,Interacting with Computers,5,db/journals/iwc/iwc11.html#Bes99,https://doi.org/10.1016/S0953-5438(98)00042-3 +Natalia A. Romero,Playful persuasion to support older adults' social and physical activities.,2010,22,Interacting with Computers,6,db/journals/iwc/iwc22.html#RomeroSBVK10,https://doi.org/10.1016/j.intcom.2010.08.006 +Alison Kirk,An Exploratory Study Examining the Appropriateness and Potential Benefit of the Nintendo Wii as a Physical Activity Tool in Adults Aged and#8805* 55 Years.,2013,25,Interacting with Computers,1,db/journals/iwc/iwc25.html#KirkMRC13,https://doi.org/10.1093/iwc/iws004 +Rochelle E. Evans,The impact of voice characteristics on user response in an interactive voice response system.,2010,22,Interacting with Computers,6,db/journals/iwc/iwc22.html#EvansK10,https://doi.org/10.1016/j.intcom.2010.07.001 +Russell Beale,Editorial.,2016,28,Interacting with Computers,4,db/journals/iwc/iwc28.html#Beale16a,https://doi.org/10.1093/iwc/iww023 +Bruce H. Thomas,Guest Editors' Introduction.,2002,14,Interacting with Computers,3,db/journals/iwc/iwc14.html#ThomasW02,https://doi.org/10.1016/S0953-5438(01)00051-0 +Sheryl Brahnam,Special issue on the abuse and misuse of social agents.,2008,20,Interacting with Computers,3,db/journals/iwc/iwc20.html#BrahnamA08,https://doi.org/10.1016/j.intcom.2008.02.001 +Fabio Paternò,A unified method for designing interactive systems adaptable to mobile and stationary platforms.,2003,15,Interacting with Computers,3,db/journals/iwc/iwc15.html#PaternoS03,https://doi.org/10.1016/S0953-5438(03)00013-4 +Gitte Lindgaard,Adventurers versus nit-pickers on affective computing.,2004,16,Interacting with Computers,4,db/journals/iwc/iwc16.html#Lindgaard04,https://doi.org/10.1016/j.intcom.2004.06.006 +Ann C. Jones,Contexts for evaluating educational software.,1999,11,Interacting with Computers,5,db/journals/iwc/iwc11.html#JonesSTMRBG99,https://doi.org/10.1016/S0953-5438(98)00064-2 +Tao Lin,The effects of virtual characters on audiences' movie experience.,2010,22,Interacting with Computers,3,db/journals/iwc/iwc22.html#LinMMT10,https://doi.org/10.1016/j.intcom.2009.11.010 +Ulrike Pfeil,Older adults' perceptions and experiences of online social support.,2009,21,Interacting with Computers,3,db/journals/iwc/iwc21.html#PfeilZW09,https://doi.org/10.1016/j.intcom.2008.12.001 +Sangwon Bae,The effects of egocentric and allocentric representations on presence and perceived realism: Tested in stereoscopic 3D games.,2012,24,Interacting with Computers,4,db/journals/iwc/iwc24.html#BaeLPCPK12,https://doi.org/10.1016/j.intcom.2012.04.009 +Christian Krapichler,Physicians in virtual environments multimodal human-computer interaction.,1999,11,Interacting with Computers,4,db/journals/iwc/iwc11.html#KrapichlerHLSSE99,https://doi.org/10.1016/S0953-5438(98)00060-5 +Esther Loeliger,Wayfinding without Visual Cues: Evaluation of an Interactive Audio Map System.,2014,26,Interacting with Computers,5,db/journals/iwc/iwc26.html#LoeligerS14,https://doi.org/10.1093/iwc/iwt042 +Hokyoung Ryu,Will it be a capital letter: signalling case mode in mobile phones.,2005,17,Interacting with Computers,4,db/journals/iwc/iwc17.html#RyuM05,https://doi.org/10.1016/j.intcom.2005.01.004 +Lee Spector,Editorial introduction.,2011,12,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem12.html#Spector11,https://doi.org/10.1007/s10710-010-9127-9 +Wolfgang Banzhaf,Some Considerations on the Reason for Bloat.,2002,3,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem3.html#BanzhafL02,https://doi.org/10.1023/A:1014548204452 +Zdenek Vasícek,Formal verification of candidate solutions for post-synthesis evolutionary optimization in evolvable hardware.,2011,12,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem12.html#VasicekS11,https://doi.org/10.1007/s10710-011-9132-7 +Ahmed Kattan,Evolution of human-competitive lossless compression algorithms with GP-zip2.,2011,12,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem12.html#KattanP11,https://doi.org/10.1007/s10710-011-9133-6 +Marco Scirea,Affective evolutionary music composition with MetaCompose.,2017,18,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem18.html#ScireaTER17,https://doi.org/10.1007/s10710-017-9307-y +Frank Schmiedle,Heuristic Learning Based on Genetic Programming.,2002,3,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem3.html#SchmiedleDGD02,https://doi.org/10.1023/A:1020988925923 +B. Ali,Evolutionary Algorithms and Theirs Use in the Design of Sequential Logic Circuits.,2004,5,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem5.html#AliAK04,https://doi.org/10.1023/B:GENP.0000017009.11392.e2 +Malcolm I. Heywood,Evolutionary model building under streaming data for classification tasks: opportunities and challenges.,2015,16,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem16.html#Heywood15,https://doi.org/10.1007/s10710-014-9236-y +Julian Togelius,The 2007 IEEE CEC simulated car racing competition.,2008,9,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem9.html#TogeliusLTGNTEBHMHGB08,https://doi.org/10.1007/s10710-008-9063-0 +Alexandros Agapitos,Recursion in tree-based genetic programming.,2017,18,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem18.html#AgapitosOKL17,https://doi.org/10.1007/s10710-016-9277-5 +Khaled M. S. Badran,The influence of mutation on population dynamics in multiobjective genetic programming.,2010,11,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem11.html#BadranR10,https://doi.org/10.1007/s10710-009-9084-3 +Ting Hu,Variable population size and evolution acceleration: a case study with a parallel evolutionary algorithm.,2010,11,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem11.html#HuHB10,https://doi.org/10.1007/s10710-010-9105-2 +Pawel Widera,GP challenge: evolving energy function for protein structure prediction.,2010,11,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem11.html#WideraGK10,https://doi.org/10.1007/s10710-009-9087-0 +William B. Langdon,An Eigen analysis of the GP community.,2008,9,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem9.html#LangdonPB08,https://doi.org/10.1007/s10710-008-9060-3 +Michele Amoretti,Introducing artificial evolution into peer-to-peer networks with the distributed remodeling framework.,2013,14,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem14.html#Amoretti13,https://doi.org/10.1007/s10710-013-9182-0 +Ali Mohammad Saghiri,A closed asynchronous dynamic model of cellular learning automata and its application to peer-to-peer networks.,2017,18,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem18.html#SaghiriM17,https://doi.org/10.1007/s10710-017-9299-7 +Hsing-Chih Tsai,Improving analytical models of circular concrete columns with genetic programming polynomials.,2013,14,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem14.html#TsaiP13,https://doi.org/10.1007/s10710-012-9176-3 +Andrew Watkins,Artificial Immune Recognition System (AIRS): An Immune-Inspired Supervised Learning Algorithm.,2004,5,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem5.html#WatkinsTB04,https://doi.org/10.1023/B:GENP.0000030197.83685.94 +Lee Spector,Editorial introduction.,2016,17,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem17.html#Spector16,https://doi.org/10.1007/s10710-015-9261-5 +Shude Zhou,Detecting the epistatic structure of generalized embedded landscape.,2008,9,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem9.html#ZhouHS08,https://doi.org/10.1007/s10710-007-9045-7 +James Kennedy,Review of Engelbrecht's Fundamentals of Computational Swarm Intelligence.,2007,8,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem8.html#Kennedy07,https://doi.org/10.1007/s10710-006-9020-8 +Denis Robilliard,Genetic programming on graphics processing units.,2009,10,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem10.html#RobilliardMF09,https://doi.org/10.1007/s10710-009-9092-3 +André Leier,Emergence in simulated evolution.,2014,15,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem15.html#Leier14,https://doi.org/10.1007/s10710-013-9201-1 +Riccardo Poli,Exact Schema Theory and Markov Chain Models for Genetic Programming and Variable-length Genetic Algorithms with Homologous Crossover.,2004,5,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem5.html#PoliMR04,https://doi.org/10.1023/B:GENP.0000017010.41337.a7 +Mahboobeh Houshmand,GA-based approach to find the stabilizers of a given sub-space.,2015,16,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem16.html#HoushmandZSH15,https://doi.org/10.1007/s10710-014-9219-z +Lee Spector,Acknowledgment.,2009,10,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem10.html#Spector09a,https://doi.org/10.1007/s10710-008-9078-6 +Riccardo Poli,Exact Schema Theory for Genetic Programming and Variable-Length Genetic Algorithms with One-Point Crossover.,2001,2,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem2.html#Poli01,https://doi.org/10.1023/A:1011552313821 +Stéphane Sanchez,Gene regulated car driving: using a gene regulatory network to drive a virtual car.,2014,15,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem15.html#SanchezC14,https://doi.org/10.1007/s10710-014-9228-y +Jungwon Kim,Immune Memory and Gene Library Evolution in the Dynamic Clonal Selection Algorithm.,2004,5,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem5.html#KimB04,https://doi.org/10.1023/B:GENP.0000036019.81454.41 +Gul Muhammad Khan,Dynamic feedback neuro-evolutionary networks for forecasting the highly fluctuating electrical loads.,2016,17,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem17.html#KhanZ16,https://doi.org/10.1007/s10710-016-9268-6 +Nguyen Quang Uy,Semantically-based crossover in genetic programming: application to real-valued symbolic regression.,2011,12,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem12.html#UyHOML11,https://doi.org/10.1007/s10710-010-9121-2 +Lee Altenberg,"Mathematics awaits: commentary on ""Genetic Programming and Emergence"" by Wolfgang Banzhaf.",2014,15,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem15.html#Altenberg14,https://doi.org/10.1007/s10710-013-9198-5 +Maryam Amir Haeri,Improving GP generalization: a variance-based layered learning approach.,2015,16,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem16.html#HaeriEF15,https://doi.org/10.1007/s10710-014-9220-6 +Andrew James Turner,Recurrent Cartesian Genetic Programming of Artificial Neural Networks.,2017,18,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem18.html#TurnerM17,https://doi.org/10.1007/s10710-016-9276-6 +Nuno Lourenço 0002,Unveiling the properties of structured grammatical evolution.,2016,17,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem17.html#0002PC16,https://doi.org/10.1007/s10710-015-9262-4 +Lionel C. Briand,Using genetic algorithms for early schedulability analysis and stress testing in real-time systems.,2006,7,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem7.html#BriandLS06,https://doi.org/10.1007/s10710-006-9003-9 +Miha Kovacic,Prediction of the natural gas consumption in chemical processing facilities with genetic programming.,2016,17,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem17.html#KovacicD16,https://doi.org/10.1007/s10710-016-9264-x +Michael O'Neill,Tracer spectrum: a visualisation method for distributed evolutionary computation.,2011,12,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem12.html#ONeillBH11,https://doi.org/10.1007/s10710-010-9125-y +Marc Ebner,Book Review: Illustrating Evolutionary Computation with Mathematica.,2003,4,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem4.html#Ebner03,https://doi.org/10.1023/A:1025180508687 +Pierre Collet,Polar IFS + Parisian Genetic Programming = Efficient IFS Inverse Problem Solving.,2000,1,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem1.html#ColletLRS00,https://doi.org/10.1023/A:1010065123132 +Jean Louchet,Using an Individual Evolution Strategy for Stereovision.,2001,2,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem2.html#Louchet01,https://doi.org/10.1023/A:1011544128842 +Juan Luis Jiménez Laredo,Designing robust volunteer-based evolutionary algorithms.,2014,15,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem15.html#LaredoBGVAGF14,https://doi.org/10.1007/s10710-014-9213-5 +Lee Spector,Acknowledgment.,2014,15,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem15.html#Spector14b,https://doi.org/10.1007/s10710-013-9211-z +Matthieu Weber,Distributed differential evolution with explorative-exploitative population families.,2009,10,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem10.html#WeberNT09,https://doi.org/10.1007/s10710-009-9089-y +William B. Langdon,Scaling of program functionality.,2009,10,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem10.html#Langdon09,https://doi.org/10.1007/s10710-008-9065-y +Artem Sokolov,A note on the variance of rank-based selection strategies for genetic algorithms and genetic programming.,2007,8,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem8.html#SokolovWB07,https://doi.org/10.1007/s10710-007-9030-1 +James V. Hansen,Genetic Programming Experiments with Standard and Homologous Crossover Methods .,2003,4,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem4.html#Hansen03,https://doi.org/10.1023/A:1021825110329 +Dudy Lim,Inverse multi-objective robust evolutionary design.,2006,7,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem7.html#LimOJSL06,https://doi.org/10.1007/s10710-006-9013-7 +Wolfgang Banzhaf,Acknowledgment.,2007,8,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem8.html#Banzhaf07a,https://doi.org/10.1007/s10710-007-9023-0 +Renato Tinós,A self-organizing random immigrants genetic algorithm for dynamic optimization problems.,2007,8,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem8.html#TinosY07,https://doi.org/10.1007/s10710-007-9024-z +Jeroen Eggermont,Juan Romero and Penousal Machado (eds): The Art of Artificial Evolution: A Handbook on Evolutionary Art and Music.,2009,10,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem10.html#Eggermont09,https://doi.org/10.1007/s10710-008-9071-0 +Stanley Phillips Gotshall,Stochastic optimization of a biologically plausible spino-neuromuscular system model.,2007,8,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem8.html#GotshallBSSW07,https://doi.org/10.1007/s10710-007-9044-8 +Emiliano Carreño Jara,Long memory time series forecasting by using genetic programming.,2011,12,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem12.html#Jara11,https://doi.org/10.1007/s10710-011-9140-7 +Garrison W. Greenwood,Book Review: Bio-Inspired Computing Machines: Towards Novel Computational Architectures.,2001,2,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem2.html#Greenwood01,https://doi.org/10.1023/A:1010022700219 +Matthew L. Ryerkerk,Solving metameric variable-length optimization problems using genetic algorithms.,2017,18,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem18.html#RyerkerkADG17,https://doi.org/10.1007/s10710-016-9282-8 +Francisco Fernández de Vega,Unplugging Evolutionary Algorithms: an experiment on human-algorithmic creativity.,2014,15,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem15.html#VegaCNHGE14,https://doi.org/10.1007/s10710-014-9225-1 +Marc Ebner,Coevolution and the Red Queen effect shape virtual plants.,2006,7,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem7.html#Ebner06,https://doi.org/10.1007/s10710-006-7013-2 +Stephen J. Freeland,The Darwinian Genetic Code: An Adaptation for Adapting?,2002,3,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem3.html#Freeland02,https://doi.org/10.1023/A:1015527808424 +Xiaodong Li 0001,Theoretical foundations of evolutionary computation.,2008,9,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem9.html#LiLY08,https://doi.org/10.1007/s10710-007-9047-5 +Bernard Yurke,Using DNA to Power Nanostructures.,2003,4,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem4.html#YurkeM03,https://doi.org/10.1023/A:1023928811651 +Byoung-Tak Zhang,Bayesian Methods for Efficient Genetic Programming.,2000,1,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem1.html#Zhang00,https://doi.org/10.1023/A:1010010230007 +Peter F. Stadler,Barrier Trees on Poset-Valued Landscapes.,2003,4,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem4.html#StadlerF03,https://doi.org/10.1023/A:1021821009420 +Mahdi Aziz,A two-objective memetic approach for the node localization problem in wireless sensor networks.,2016,17,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem17.html#AzizTM16,https://doi.org/10.1007/s10710-016-9274-8 +Cyril Fonlupt,Book Review: Genetic Programming IV: Routine Human-Competitive Machine Intelligence.,2005,6,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem6.html#Fonlupt05,https://doi.org/10.1007/s10710-005-7579-0 +Peter A. Whigham,Book Review: Evolutionary Design by Computers.,2001,2,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem2.html#Whigham01,https://doi.org/10.1023/A:1010074717057 +Terence Soule,An Analysis of the Causes of Code Growth in Genetic Programming.,2002,3,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem3.html#SouleH02,https://doi.org/10.1023/A:1020115409250 +William B. Langdon,Genetic Programming and Evolvable Machines: Five Years of Reviews.,2005,6,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem6.html#LangdonG05,https://doi.org/10.1007/s10710-005-6165-9 +Armand Bankhead,Using evolvable genetic cellular automata to model breast cancer.,2007,8,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem8.html#BankheadH07,https://doi.org/10.1007/s10710-007-9042-x +Sai Zhu,Partial-DNA cyclic memory for bio-inspired electronic cell.,2016,17,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem17.html#ZhuCM16,https://doi.org/10.1007/s10710-015-9248-2 +Nicolas Chaumont,Evolution of sustained foraging in three-dimensional environments with physics.,2016,17,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem17.html#ChaumontA16,https://doi.org/10.1007/s10710-016-9270-z +Stanley Phillips Gotshall,Erratum to: Stochastic optimization of a biologically plausible spino-neuromuscular system model - A comparison with human subjects.,2011,12,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem12.html#GotshallBSSW11,https://doi.org/10.1007/s10710-010-9108-z +Rodrigo C. Barros,Investigating fitness functions for a hyper-heuristic evolutionary algorithm in the context of balanced and imbalanced data classification.,2015,16,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem16.html#BarrosBC15,https://doi.org/10.1007/s10710-014-9235-z +Lukás Sekanina,Evolvable Components-From Theory to Hardware Implementations.,2005,6,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem6.html#SekaninaA05,https://doi.org/10.1007/s10710-005-3718-x +Steven J. Barrett,Intelligent Bioinformatics: The Application of Artificial Intelligence Techniques to Bioinformatics Problems.,2006,7,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem7.html#Barrett06,https://doi.org/10.1007/s10710-006-7003-4 +Rui L. Lopes,The Regulatory Network Computational Device.,2012,13,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem13.html#LopesC12,https://doi.org/10.1007/s10710-012-9160-y +Luca Manzoni,A new genetic programming framework based on reaction systems.,2013,14,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem14.html#ManzoniCV13,https://doi.org/10.1007/s10710-013-9184-y +Michel Toulouse,Automatic Quantum Computer Programming: A Genetic Programming Approach.,2006,7,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem7.html#Toulouse06,https://doi.org/10.1007/s10710-006-4866-3 +Kosuke Imamura,Behavioral Diversity and a Probabilistically Optimal GP Ensemble.,2003,4,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem4.html#ImamuraSHF03,https://doi.org/10.1023/A:1025124423708 +Lee Spector,Acknowledgment.,2011,12,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem12.html#Spector11a,https://doi.org/10.1007/s10710-010-9128-8 +Quang Uy Nguyen,Subtree semantic geometric crossover for genetic programming.,2016,17,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem17.html#NguyenPNM16,https://doi.org/10.1007/s10710-015-9253-5 +M. Collins,Finding needles in haystacks is harder with neutrality.,2006,7,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem7.html#Collins06,https://doi.org/10.1007/s10710-006-9001-y +Emerson Carlos Pedrino,Software review: CGP-Library.,2017,18,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem18.html#PedrinoPLR17,https://doi.org/10.1007/s10710-017-9303-2 +Andrew James Turner,Introducing a cross platform open source Cartesian Genetic Programming library.,2015,16,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem16.html#TurnerM15,https://doi.org/10.1007/s10710-014-9233-1 +Zdenek Vasícek,Trading between quality and non-functional properties of median filter in embedded systems.,2017,18,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem18.html#VasicekM17,https://doi.org/10.1007/s10710-016-9275-7 +Mengjie Zhang,Genetic programming for medical classification: a program simplification approach.,2008,9,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem9.html#ZhangW08,https://doi.org/10.1007/s10710-008-9059-9 +Riccardo Poli,A genetic programming approach to the evolution of brain-computer interfaces for 2-D mouse-pointer control.,2012,13,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem13.html#PoliSC12,https://doi.org/10.1007/s10710-012-9161-x +Juan Luis Jiménez Laredo,EvAg: a scalable peer-to-peer evolutionary algorithm.,2010,11,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem11.html#LaredoESG10,https://doi.org/10.1007/s10710-009-9096-z +Lukás Sekanina,Evolutionary Design of Arbitrarily Large Sorting Networks Using Development.,2005,6,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem6.html#SekaninaB05,https://doi.org/10.1007/s10710-005-2987-8 +Emma Hart,Exploiting the Analogy between the Immune System and Sparse Distributed Memories.,2003,4,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem4.html#HartR03,https://doi.org/10.1023/A:1026191011609 +Sara Silva,Dynamic limits for bloat control in genetic programming and a review of past and current bloat theories.,2009,10,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem10.html#SilvaC09,https://doi.org/10.1007/s10710-008-9075-9 +Gregory Hornby,Editorial introduction to the special issue on developmental systems.,2007,8,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem8.html#HornbyKJ07,https://doi.org/10.1007/s10710-007-9026-x +Nadarajen Veerapen,Visualising the global structure of search landscapes: genetic improvement as a case study.,2018,19,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem19.html#VeerapenO18,https://doi.org/10.1007/s10710-018-9328-1 +Carlos A. Coello Coello,Solving Multiobjective Optimization Problems Using an Artificial Immune System.,2005,6,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem6.html#CoelloC05,https://doi.org/10.1007/s10710-005-6164-x +Moritoshi Yasunaga,Evolvable Reasoning Hardware: Its Prototyping and Performance Evaluation.,2001,2,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem2.html#YasunagaKY01,https://doi.org/10.1023/A:1011939025340 +Wolfgang Banzhaf,Editorial.,2005,6,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem6.html#Banzhaf05,https://doi.org/10.1007/s10710-005-6162-z +Garnett Carl Wilson,Deployment of parallel linear genetic programming using GPUs on PC and video game console platforms.,2010,11,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem11.html#WilsonB10,https://doi.org/10.1007/s10710-010-9102-5 +Michael L. Raymer,Book Review: Evolutionary Computation in Bioinformatics.,2005,6,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem6.html#Raymer05,https://doi.org/10.1007/s10710-005-7581-6 +Brad Dolin,Resource Review: A Web-Based Tour of Genetic Programming.,2002,3,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem3.html#DolinG02,https://doi.org/10.1023/A:1020167426088 +Kenneth O. Stanley,Compositional pattern producing networks: A novel abstraction of development.,2007,8,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem8.html#Stanley07,https://doi.org/10.1007/s10710-007-9028-8 +Conrad Shyu,Multiple Sequence Alignment with Evolutionary Computation.,2004,5,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem5.html#ShyuSF04,https://doi.org/10.1023/B:GENP.0000023684.05565.78 +David J. Walker,Visualisation with treemaps and sunbursts in many-objective optimisation.,2018,19,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem19.html#Walker18,https://doi.org/10.1007/s10710-018-9329-0 +Carlos H. Garcia-Capulin,A hierarchical genetic algorithm approach for curve fitting with B-splines.,2015,16,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem16.html#Garcia-CapulinC15,https://doi.org/10.1007/s10710-014-9231-3 +Alex Fukunaga,Evolving controllers for high-level applications on a service robot: a case study with exhibition visitor flow control.,2012,13,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem13.html#FukunagaHKI12,https://doi.org/10.1007/s10710-011-9152-3 +Renáta Dubcáková,Eureqa: software review.,2011,12,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem12.html#Dubcakova11,https://doi.org/10.1007/s10710-010-9124-z +Brian J. Ross,The evolution of higher-level biochemical reaction models.,2012,13,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem13.html#Ross12,https://doi.org/10.1007/s10710-011-9144-3 +David J. Montana,"A response to ""Genetic programming and emergence"".",2014,15,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem15.html#Montana14,https://doi.org/10.1007/s10710-013-9202-0 +Stefan Schneider 0005,Evolutionary Adaptation of Nonlinear Dynamical Systems in Computational Neuroscience.,2004,5,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem5.html#SchneiderIKDW04,https://doi.org/10.1023/B:GENP.0000023689.70987.6a +Christopher R. Stephens,Effective Fitness as an Alternative Paradigm for Evolutionary Computation I: General Formalism.,2000,1,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem1.html#StephensV00,https://doi.org/10.1023/A:1010017207202 +Jason M. Daida,Visualizing Tree Structures in Genetic Programming.,2005,6,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem6.html#DaidaHWL05,https://doi.org/10.1007/s10710-005-7621-2 +Houjun Liang,A three-step decomposition method for the evolutionary design of sequential logic circuits.,2009,10,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem10.html#LiangLW09,https://doi.org/10.1007/s10710-009-9083-4 +Max H. Garzon,Special Issue on Biomolecular Machines and Artificial Evolution.,2003,4,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem4.html#Garzon03,https://doi.org/10.1023/A:1023960327580 +Shujun Gao,A univariate marginal distribution algorithm based on extreme elitism and its application to the robotic inverse displacement problem.,2017,18,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem18.html#GaoS17,https://doi.org/10.1007/s10710-017-9298-8 +Jim Tørresen,A Scalable Approach to Evolvable Hardware.,2002,3,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem3.html#Torresen02,https://doi.org/10.1023/A:1020163325179 +John A. Rose,A DNA Computing-based Genetic Program for In Vitro Protein Evolution via Constrained Pseudomodule Shuffling.,2003,4,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem4.html#RoseTHS03,https://doi.org/10.1023/A:1023932912559 +Juan Antonio Gómez Pulido,Accelerating floating-point fitness functions in evolutionary algorithms: a FPGA-CPU-GPU performance comparison.,2011,12,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem12.html#PulidoVSPC11,https://doi.org/10.1007/s10710-011-9137-2 +William B. Langdon,Genetic Programming for Mining DNA Chip Data from Cancer Patients.,2004,5,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem5.html#LangdonB04,https://doi.org/10.1023/B:GENP.0000030196.55525.f7 +Ioannis G. Tsoulos,Solving differential equations with genetic programming.,2006,7,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem7.html#TsoulosL06,https://doi.org/10.1007/s10710-006-7009-y +Matthew J. Streeter,Automated Discovery of Numerical Approximation Formulae via Genetic Programming.,2003,4,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem4.html#StreeterB03,https://doi.org/10.1023/A:1025176407779 +Armand R. Burks,An analysis of the genetic marker diversity algorithm for genetic programming.,2017,18,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem18.html#BurksP17,https://doi.org/10.1007/s10710-016-9281-9 +Katya Rodríguez-Vázquez,Ant Colony Optimization.,2005,6,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem6.html#Rodriguez-Vazquez05,https://doi.org/10.1007/s10710-005-2991-z +Ofer M. Shir,Quantum control experiments as a testbed for evolutionary multi-objective algorithms.,2012,13,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem13.html#ShirRLR12,https://doi.org/10.1007/s10710-012-9164-7 +Gregory Hornby,Shortcomings with using edge encodings to represent graph structures.,2006,7,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem7.html#Hornby06,https://doi.org/10.1007/s10710-006-9007-5 +Adrian Gepp,A review of procedures to evolve quantum algorithms.,2009,10,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem10.html#GeppS09,https://doi.org/10.1007/s10710-009-9080-7 +Lee Altenberg,Evolvability and robustness in artificial evolving systems: three perturbations.,2014,15,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem15.html#Altenberg14a,https://doi.org/10.1007/s10710-014-9223-3 +Lee Spector,Editorial introduction.,2010,11,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem11.html#Spector10,https://doi.org/10.1007/s10710-009-9098-x +Asim Munawar,Hybrid of genetic algorithm and local search to solve MAX-SAT problem using nVidia CUDA framework.,2009,10,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem10.html#MunawarWMA09,https://doi.org/10.1007/s10710-009-9091-4 +Marcos I. Quintana,Morphological algorithm design for binary images using genetic programming.,2006,7,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem7.html#QuintanaPC06,https://doi.org/10.1007/s10710-006-7012-3 +Lee Spector,Emergence of Collective Behavior in Evolving Populations of Flying Agents.,2005,6,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem6.html#SpectorKPF05,https://doi.org/10.1007/s10710-005-7620-3 +Francesco Archetti,Genetic programming for computational pharmacokinetics in drug discovery and development.,2007,8,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem8.html#ArchettiLMV07,https://doi.org/10.1007/s10710-007-9040-z +Joc Cing Tay,Environmental effects on the coevolution of pursuit and evasion strategies.,2008,9,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem9.html#TayTC08,https://doi.org/10.1007/s10710-007-9049-3 +Jonathan Byrne,A methodology for user directed search in evolutionary design.,2013,14,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem14.html#ByrneHOB13,https://doi.org/10.1007/s10710-013-9189-6 +Janaína S. de Sousa,An Immune-Evolutionary Algorithm for Multiple Rearrangements of Gene Expression Data.,2004,5,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem5.html#SousaGBCZ04,https://doi.org/10.1023/B:GENP.0000023686.59617.57 +Julian F. Miller,Principles in the Evolutionary Design of Digital Circuits - Part II.,2000,1,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem1.html#MillerJV00a,https://doi.org/10.1023/A:1010066330916 +Man Wong,Evolving Recursive Programs by Using Adaptive Grammar Based Genetic Programming.,2005,6,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem6.html#WongM05,https://doi.org/10.1007/s10710-005-4805-8 +Kyung-Joong Kim,Automated synthesis of resilient and tamper-evident analog circuits without a single point of failure.,2010,11,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem11.html#KimWL10,https://doi.org/10.1007/s10710-009-9085-2 +Michael O'Neill,Crossover in Grammatical Evolution.,2003,4,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem4.html#ONeillRKC03,https://doi.org/10.1023/A:1021877127167 +Anikó Ekárt,Emergence in genetic programming - Let's exploit it!,2014,15,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem15.html#Ekart14,https://doi.org/10.1007/s10710-013-9199-4 +Yuliana Martínez,Prediction of expected performance for a genetic programming classifier.,2016,17,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem17.html#MartinezTLL16,https://doi.org/10.1007/s10710-016-9265-9 +Yang Li 0007,Learning aesthetic judgements in evolutionary art systems.,2013,14,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem14.html#LiHMZ13,https://doi.org/10.1007/s10710-013-9188-7 +Lee Spector,Introduction.,2014,15,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem15.html#Spector14,https://doi.org/10.1007/s10710-013-9212-y +Andrew Vardy,Maja J. Mataric: The Robotics Primer.,2008,9,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem9.html#Vardy08,https://doi.org/10.1007/s10710-007-9053-7 +Wolfgang Banzhaf,Editorial introduction.,2008,9,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem9.html#Banzhaf08,https://doi.org/10.1007/s10710-007-9054-6 +Mauro Castelli,Self-tuning geometric semantic Genetic Programming.,2016,17,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem17.html#CastelliMVSP16,https://doi.org/10.1007/s10710-015-9251-7 +Lee Spector,Editorial introduction.,2015,16,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem16.html#Spector15,https://doi.org/10.1007/s10710-014-9240-2 +Una-May O'Reilly,Integrating generative growth and evolutionary computation for form exploration.,2007,8,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem8.html#OReillyH07,https://doi.org/10.1007/s10710-007-9025-y +James McDermott,Graph grammars for evolutionary 3D design.,2013,14,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem14.html#McDermott13,https://doi.org/10.1007/s10710-013-9190-0 +Maarten Keijzer,Scaled Symbolic Regression.,2004,5,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem5.html#Keijzer04,https://doi.org/10.1023/B:GENP.0000030195.77571.f9 +Hans-Georg Beyer,A New Approach for Predicting the Final Outcome of Evolution Strategy Optimization Under Noise.,2005,6,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem6.html#BeyerAM05,https://doi.org/10.1007/s10710-005-7617-y +Hans-Georg Beyer,Self-adaptation of evolution strategies under noisy fitness evaluations.,2006,7,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem7.html#BeyerM06,https://doi.org/10.1007/s10710-006-9017-3 +Shengxiang Yang,Editorial to special issue on evolutionary computation in dynamic and uncertain environments.,2006,7,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem7.html#YangOJ06,https://doi.org/10.1007/s10710-006-9016-4 +Can öztürkeri,Self-repair ability of evolved self-assembling systems in cellular automata.,2014,15,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem15.html#OzturkeriJ14,https://doi.org/10.1007/s10710-014-9216-2 +Markus Olhofer,Autonomous experimental design optimization of a flapping wing.,2011,12,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem12.html#OlhoferYS11,https://doi.org/10.1007/s10710-010-9107-0 +Lee Spector,Genetic Programming and Autoconstructive Evolution with the Push Programming Language.,2002,3,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem3.html#SpectorR02,https://doi.org/10.1023/A:1014538503543 +Eduardo do Valle Simões,Evolvable hardware.,2007,8,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem8.html#Simoes07,https://doi.org/10.1007/s10710-007-9032-z +Martin Pelikan,Sporadic model building for efficiency enhancement of the hierarchical BOA.,2008,9,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem9.html#PelikanSG08,https://doi.org/10.1007/s10710-007-9052-8 +Hans-Georg Beyer,Special Issue: Best of GECCO 2005.,2006,7,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem7.html#Beyer06,https://doi.org/10.1007/s10710-006-9002-x +David Jackson,The identification and exploitation of dormancy in genetic programming.,2010,11,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem11.html#Jackson10,https://doi.org/10.1007/s10710-009-9086-1 +Martin H. Luerssen,Evolving encapsulated programs as shared grammars.,2008,9,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem9.html#LuerssenP08,https://doi.org/10.1007/s10710-008-9061-2 +David R. White 0003,Software review: the ECJ toolkit.,2012,13,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem13.html#White12,https://doi.org/10.1007/s10710-011-9148-z +Ji Ni,Training genetic programming classifiers by vicinal-risk minimization.,2015,16,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem16.html#NiR15,https://doi.org/10.1007/s10710-014-9222-4 +Alastair Channon,Unbounded evolutionary dynamics in a system of agents that actively process and transform their environment.,2006,7,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem7.html#Channon06,https://doi.org/10.1007/s10710-006-9009-3 +Daniel Merkle,Fast Ant Colony Optimization on Runtime Reconfigurable Processor Arrays.,2002,3,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem3.html#MerkleM02,https://doi.org/10.1023/A:1020936909085 +Lee Spector,Editorial introduction.,2017,18,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem18.html#Spector17,https://doi.org/10.1007/s10710-017-9297-9 +Mehrdad Salami,The Fast Evaluation Strategy for Evolvable Hardware.,2005,6,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem6.html#SalamiH05,https://doi.org/10.1007/s10710-005-7578-1 +Lee Spector,Introduction.,2013,14,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem14.html#Spector13,https://doi.org/10.1007/s10710-013-9181-1 +Wolfgang Banzhaf,Editorial Introduction.,2001,2,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem2.html#Banzhaf01,https://doi.org/10.1023/A:1010076931170 +Krzysztof Krawiec,Locally geometric semantic crossover: a study on the roles of semantics and homology in recombination operators.,2013,14,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem14.html#KrawiecP13,https://doi.org/10.1007/s10710-012-9172-7 +James A. Foster,Introduction to special section: Best of EuroGP/EvoBio.,2013,14,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem14.html#Foster13,https://doi.org/10.1007/s10710-013-9194-9 +Natasa Jonoska,Computation by Self-assembly of DNA Graphs.,2003,4,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem4.html#JonoskaSS03,https://doi.org/10.1023/A:1023980828489 +Dmitry Batenkov,Open BEAGLE: a generic framework for evolutionary computations.,2011,12,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem12.html#Batenkov11,https://doi.org/10.1007/s10710-011-9135-4 +Wolfgang Banzhaf,Genetic Programming and Emergence.,2014,15,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem15.html#Banzhaf14,https://doi.org/10.1007/s10710-013-9196-7 +Boris Mitavskiy,Quotients of Markov chains and asymptotic properties of the stationary distribution of the Markov chain associated to an evolutionary algorithm.,2008,9,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem9.html#MitavskiyRWS08,https://doi.org/10.1007/s10710-007-9038-6 +Lee Spector,Acknowledgment.,2010,11,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem11.html#Spector10a,https://doi.org/10.1007/s10710-009-9099-9 +Richard Canham,A Hardware Artificial Immune System and Embryonic Array for Fault Tolerant Systems.,2003,4,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem4.html#CanhamT03,https://doi.org/10.1023/A:1026143128448 +Eric M. Schulte,Software mutational robustness.,2014,15,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem15.html#SchulteFFWF14,https://doi.org/10.1007/s10710-013-9195-8 +James Alfred Walker,Parallel evolution using multi-chromosome cartesian genetic programming.,2009,10,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem10.html#WalkerVSM09,https://doi.org/10.1007/s10710-009-9093-2 +Edgar Galván López,Defining locality as a problem difficulty measure in genetic programming.,2011,12,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem12.html#LopezMOB11,https://doi.org/10.1007/s10710-011-9136-3 +Boye Annfelt Høverstad,Simdist: a distribution system for easy parallelization of evolutionary computation.,2010,11,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem11.html#Hoverstad10,https://doi.org/10.1007/s10710-009-9100-7 +Santiago García Carbajal,Evolutive Introns: A Non-Costly Method of Using Introns in GP.,2001,2,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem2.html#CarbajalM01,https://doi.org/10.1023/A:1011548229751 +James P. Hoffmann,Ecological Model Selection via Evolutionary Computation and Information Theory.,2004,5,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem5.html#HoffmannEBB04,https://doi.org/10.1023/B:GENP.0000023690.71330.42 +Wolfgang Banzhaf,"Response to comments on ""Genetic Programming and Emergence"".",2014,15,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem15.html#Banzhaf14a,https://doi.org/10.1007/s10710-013-9207-8 +Uwe Tangen,On evolvability and robustness in the matrix-GRT model.,2014,15,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem15.html#Tangen14,https://doi.org/10.1007/s10710-014-9221-5 +Milo Engoren,Use of genetic programming to diagnose venous thromboembolism in the emergency department.,2008,9,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem9.html#EngorenK08,https://doi.org/10.1007/s10710-007-9050-x +Yerbol Sapargaliyev,Open-ended evolution to discover analogue circuits for beyond conventional applications.,2012,13,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem13.html#SapargaliyevK12,https://doi.org/10.1007/s10710-012-9163-8 +Cesar Ortega-Sanchez,Embryonics: A Bio-Inspired Cellular Architecture with Fault-Tolerant Properties.,2000,1,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem1.html#Ortega-SanchezMST00,https://doi.org/10.1023/A:1010080629099 +Ivan Tanev,GP-induced and explicit bloating of the seeds in incremental GP improves evolutionary success.,2014,15,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem15.html#TanevKS14,https://doi.org/10.1007/s10710-013-9192-y +Julian Togelius,Controllable procedural map generation via multiobjective evolution.,2013,14,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem14.html#TogeliusPBWHYG13,https://doi.org/10.1007/s10710-012-9174-5 +Christopher R. Stephens,Effective Fitness as an Alternative Paradigm for Evolutionary Computation II: Examples and Applications.,2001,2,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem2.html#StephensV01,https://doi.org/10.1023/A:1010066515240 +Patrick O. Stalph,Learning local linear Jacobians for flexible and adaptive robot arm control.,2012,13,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem13.html#StalphB12,https://doi.org/10.1007/s10710-011-9147-0 +Daniel Roggen,Evolutionary morphogenesis for multi-cellular systems.,2007,8,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem8.html#RoggenFF07,https://doi.org/10.1007/s10710-006-9019-1 +Lee Spector,Editorial introduction.,2009,10,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem10.html#Spector09,https://doi.org/10.1007/s10710-008-9077-7 +Wolfgang Banzhaf,Editorial Introduction.,2003,4,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem4.html#Banzhaf03,https://doi.org/10.1023/A:1021808625350 +Max H. Garzon,Self-Assembly of DNA-like Structures In Silico.,2003,4,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem4.html#GarzonBBNW03,https://doi.org/10.1023/A:1023989130306 +Hillol Kargupta,Editorial: Computation in Gene Expression.,2002,3,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem3.html#Kargupta02,https://doi.org/10.1023/A:1015530024354 +Siddhartha Shakya,A Markovianity based optimisation algorithm.,2012,13,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem13.html#ShakyaSL12,https://doi.org/10.1007/s10710-011-9149-y +Maarten Keijzer,Declarative and Preferential Bias in GP-based Scientifi Discovery.,2002,3,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem3.html#KeijzerB02,https://doi.org/10.1023/A:1014596120381 +Moshe Sipper,Introduction to Special Section on Evolutionary Computation in Games.,2008,9,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem9.html#SipperG08,https://doi.org/10.1007/s10710-008-9066-x +Colin R. Reeves,Evolutionary computation: a unified approach.,2007,8,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem8.html#Reeves07,https://doi.org/10.1007/s10710-007-9035-9 +Zdenek Vasícek,Evolutionary design of complex approximate combinational circuits.,2016,17,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem17.html#VasicekS16,https://doi.org/10.1007/s10710-015-9257-1 +Stephan M. Winkler,Using enhanced genetic programming techniques for evolving classifiers in the context of medical diagnosis.,2009,10,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem10.html#WinklerAW09,https://doi.org/10.1007/s10710-008-9076-8 +Garnett Carl Wilson,Introducing probabilistic adaptive mapping developmental genetic programming with redundant mappings.,2007,8,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem8.html#WilsonH07,https://doi.org/10.1007/s10710-007-9027-9 +Timothy Gosling,Moshe Sipper: Evolved to Win - ISBN: 978-1-4709-7283-7.,2012,13,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem13.html#Gosling12,https://doi.org/10.1007/s10710-012-9157-6 +Lee Spector,Acknowledgment to Reviewers.,2017,18,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem18.html#Spector17a,https://doi.org/10.1007/s10710-017-9286-z +Justinian Rosca,Remembering GECCO-99 - A Short Summary.,2000,1,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem1.html#Roscas00,https://doi.org/10.1023/A:1010070431825 +Peter A. Whigham,"Just because it works: a response to comments on ""On the Mapping of Genotype to Phenotype in Evolutionary Algorithms"".",2017,18,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem18.html#WhighamDM17a,https://doi.org/10.1007/s10710-017-9289-9 +Lawrence Beadle,Semantic analysis of program initialisation in genetic programming.,2009,10,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem10.html#BeadleJ09,https://doi.org/10.1007/s10710-009-9082-5 +John A. Doucette,Symbiotic coevolutionary genetic programming: a benchmarking study under large attribute spaces.,2012,13,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem13.html#DoucetteMLH12,https://doi.org/10.1007/s10710-011-9151-4 +Hans-Georg Beyer,On the Impact of Systematic Noise on the Evolutionary Optimization Performance-A Sphere Model Analysis.,2004,5,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem5.html#BeyerOS04,https://doi.org/10.1023/B:GENP.0000036020.79188.a0 +Ivan I. Garibay,Emergence of genomic self-similarity in location independent representations.,2006,7,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem7.html#GaribayWG06,https://doi.org/10.1007/s10710-006-7011-4 +Justyna Petke,Preface to the Special Issue on Genetic Improvement.,2017,18,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem18.html#Petke17,https://doi.org/10.1007/s10710-016-9280-x +Daryl Essam,Book Review: Blondie24: Playing at the Edge of AI.,2002,3,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem3.html#Essam02,https://doi.org/10.1023/A:1020941026832 +Man Wong,Evolving recursive programs by using adaptive grammar based genetic programming.,2006,7,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem7.html#Wong06,https://doi.org/10.1007/s10710-006-7455-6 +Iván Contreras,A meta-grammatical evolutionary process for portfolio selection and trading.,2017,18,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem18.html#ContrerasHNV17,https://doi.org/10.1007/s10710-017-9304-1 +Victor Ciesielski,Linear genetic programming.,2008,9,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem9.html#Ciesielski08,https://doi.org/10.1007/s10710-007-9036-8 +Geoff S. Nitschke,Evolving team behaviors with specialization.,2012,13,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem13.html#NitschkeES12,https://doi.org/10.1007/s10710-012-9166-5 +Asbjørn Djupdal,The route to a defect tolerant LUT through artificial evolution.,2011,12,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem12.html#DjupdalH11,https://doi.org/10.1007/s10710-011-9129-2 +Marc-André Gardner,Controlling code growth by dynamically shaping the genotype size distribution.,2015,16,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem16.html#GardnerGP15,https://doi.org/10.1007/s10710-015-9242-8 +Anikó Ekárt,Selection Based on the Pareto Nondomination Criterion for Controlling Code Growth in Genetic Programming.,2001,2,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem2.html#EkartN01,https://doi.org/10.1023/A:1010070616149 +Kiarash Mahdavi,Book Review: Automatic Re-Engineering of Software Using Genetic Programming.,2002,3,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem3.html#MahdaviH02,https://doi.org/10.1023/A:1015536110241 +Yanyun Tao,A module-level three-stage approach to the evolutionary design of sequential logic circuits.,2013,14,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem14.html#TaoZCH13,https://doi.org/10.1007/s10710-012-9178-1 +Samaneh Yazdani,Balanced Cartesian Genetic Programming via migration and opposition-based learning: application to symbolic regression.,2015,16,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem16.html#YazdaniS15,https://doi.org/10.1007/s10710-014-9230-4 +Pauline C. Haddow,Introduction: special issue on evolvable hardware challenges.,2011,12,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem12.html#Haddow11,https://doi.org/10.1007/s10710-011-9138-1 +William B. Langdon,Long Random Linear Programs Do Not Generalize.,2001,2,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem2.html#Langdon01,https://doi.org/10.1023/A:1011590227934 +Stefan Janson,A hierarchical particle swarm optimizer for noisy and dynamic environments.,2006,7,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem7.html#JansonM06,https://doi.org/10.1007/s10710-006-9014-6 +Behnaz Moradabadi,A new real-coded Bayesian optimization algorithm based on a team of learning automata for continuous optimization.,2014,15,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem15.html#MoradabadiB14,https://doi.org/10.1007/s10710-013-9206-9 +Sara Silva,Operator equalisation for bloat free genetic programming and a survey of bloat control methods.,2012,13,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem13.html#SilvaDV12,https://doi.org/10.1007/s10710-011-9150-5 +Miguel Nicolau,Understanding grammatical evolution: initialisation.,2017,18,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem18.html#Nicolau17,https://doi.org/10.1007/s10710-017-9309-9 +Mohammad Samie,Cyclic metamorphic memory for cellular bio-inspired electronic systems.,2008,9,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem9.html#SamieFD08,https://doi.org/10.1007/s10710-008-9056-z +Wojciech Jaskowski,Evolving strategy for a probabilistic game of imperfect information using genetic programming.,2008,9,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem9.html#JaskowskiKW08,https://doi.org/10.1007/s10710-008-9062-1 +Omer Qadir,Hardware architecture of the Protein Processing Associative Memory and the effects of dimensionality and quantisation on performance.,2014,15,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem15.html#QadirLTTPT14,https://doi.org/10.1007/s10710-014-9217-1 +David J. Hand,Book Review: Data Mining and Knowledge Discovery with Evolutionary Programs.,2003,4,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem4.html#Hand03,https://doi.org/10.1023/A:1025128524617 +Julio J. Valdés,Analysis of mass spectrometry data of cerebral stroke samples: an evolutionary computation approach to resolve and quantify peptide peaks.,2008,9,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem9.html#ValdesBH08,https://doi.org/10.1007/s10710-008-9057-y +Wolfgang Banzhaf,Introduction.,2006,7,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem7.html#Banzhaf06,https://doi.org/10.1007/s10710-006-7015-0 +Tomasz P. Pawlak,Progress properties and fitness bounds for geometric semantic search operators.,2016,17,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem17.html#PawlakK16,https://doi.org/10.1007/s10710-015-9252-6 +Hongqing Cao,Evolutionary Modeling of Systems of Ordinary Differential Equations with Genetic Programming.,2000,1,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem1.html#CaoKCY00,https://doi.org/10.1023/A:1010013106294 +James A. Foster,Introduction.,2005,6,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem6.html#FosterC05,https://doi.org/10.1007/s10710-005-7616-z +Alejandro Sosa-Ascencio,Grammar-based generation of variable-selection heuristics for constraint satisfaction problems.,2016,17,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem17.html#Sosa-AscencioOT16,https://doi.org/10.1007/s10710-015-9249-1 +Eric Medvet,Unveiling evolutionary algorithm representation with DU maps.,2018,19,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem19.html#MedvetVCBGT18,https://doi.org/10.1007/s10710-018-9332-5 +Peter A. Whigham,Evolutionary dynamics for the spatial Moran process.,2008,9,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem9.html#WhighamD08,https://doi.org/10.1007/s10710-007-9046-6 +Wolfgang Banzhaf,Editorial introduction.,2007,8,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem8.html#Banzhaf07,https://doi.org/10.1007/s10710-007-9022-1 +Yann Landrin-Schweitzer,Introducing lateral thinking in search engines.,2006,7,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem7.html#Landrin-SchweitzerCL06,https://doi.org/10.1007/s10710-006-7008-z +Susan Stepney,Book Review: Evolutionary Electronics: Automatic Design of Electronic Circuits and Systems by Genetic Algorithms.,2004,5,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem5.html#Stepney04,https://doi.org/10.1023/B:GENP.0000036058.08897.cd +Manuel Alfonseca,Book Review: Grammatical Evolution: Evolutionary Automatic Programming in an Arbitrary Language.,2004,5,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem5.html#AlfonsecaO04,https://doi.org/10.1023/B:GENP.0000036057.27304.5b +Natasa Jonoska,Theoretical and Experimental DNA Computation.,2006,7,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem7.html#Jonoska06,https://doi.org/10.1007/s10710-006-9011-9 +Steven Bergen,Aesthetic 3D model evolution.,2013,14,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem14.html#BergenR13,https://doi.org/10.1007/s10710-013-9187-8 +James Smith,On Appropriate Adaptation Levels for the Learning of Gene Linkage.,2002,3,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem3.html#Smith02,https://doi.org/10.1023/A:1015579825262 +Edwin D. de Jong,Multi-Objective Methods for Tree Size Control.,2003,4,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem4.html#JongP03,https://doi.org/10.1023/A:1025122906870 +David L. González-álvarez,Multiobjective optimization algorithms for motif discovery in DNA sequences.,2015,16,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem16.html#Gonzalez-Alvarez15,https://doi.org/10.1007/s10710-014-9232-2 +Keith L. Downing,Reinforced Genetic Programming.,2001,2,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem2.html#Downing01,https://doi.org/10.1023/A:1011953410319 +Jonathan Mwaura,Evolving robot sub-behaviour modules using Gene Expression Programming.,2015,16,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem16.html#MwauraK15,https://doi.org/10.1007/s10710-014-9229-x +Michael A. Lones,Biomimetic Representation with Genetic Programming Enzyme.,2002,3,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem3.html#LonesT02,https://doi.org/10.1023/A:1015583926171 +Gisele L. Pappa,Contrasting meta-learning and hyper-heuristic research: the role of evolutionary algorithms.,2014,15,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem15.html#PappaOHFWS14,https://doi.org/10.1007/s10710-013-9186-9 +Hillol Kargupta,Toward Machine Learning Through Genetic Code-like Transformations.,2002,3,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem3.html#KarguptaG02,https://doi.org/10.1023/A:1020130108341 +Pierre Collet,Evolutionary algorithms for data mining.,2012,13,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem13.html#ColletW12,https://doi.org/10.1007/s10710-011-9156-z +Steven M. Gustafson,Problem Difficulty and Code Growth in Genetic Programming.,2004,5,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem5.html#GustafsonEBK04,https://doi.org/10.1023/B:GENP.0000030194.98244.e3 +Gianluigi Folino,An ensemble-based evolutionary framework for coping with distributed intrusion detection.,2010,11,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem11.html#FolinoPS10,https://doi.org/10.1007/s10710-010-9101-6 +Stephen L. Smith,Introduction to the special issue on medical applications of Genetic and Evolutionary Computation.,2007,8,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem8.html#SmithC07,https://doi.org/10.1007/s10710-007-9037-7 +Razieh Rezaee,Multi-objective optimization of QCA circuits with multiple outputs using genetic programming.,2013,14,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem14.html#RezaeeHH13,https://doi.org/10.1007/s10710-012-9173-6 +Seamus Cawley,Hardware spiking neural network prototyping and application.,2011,12,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem12.html#CawleyMMPMCH11,https://doi.org/10.1007/s10710-011-9130-9 +Peter A. Whigham,Wolfgang Banzhaf: Genetic programming and emergence.,2014,15,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem15.html#Whigham14,https://doi.org/10.1007/s10710-013-9204-y +Sancho Salcedo-Sanz,Meta-Heuristic Algorithms for FPGA Segmented Channel Routing Problems with Non-standard Cost Functions.,2005,6,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem6.html#Salcedo-SanzXY05,https://doi.org/10.1007/s10710-005-3295-z +Amir Mehrafsa,A high performance genetic algorithm using bacterial conjugation operator (HPGA).,2013,14,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem14.html#MehrafsaSK13,https://doi.org/10.1007/s10710-013-9185-x +Pierrick Legrand,Interactive evolution for cochlear implants fitting.,2007,8,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem8.html#LegrandBPHVFLC07,https://doi.org/10.1007/s10710-007-9048-4 +William F. Punch,Book Review: Genetic Programming - An Introduction: On the Automatic Evolution of Computer Programs and Its Applications.,2001,2,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem2.html#Punch01,https://doi.org/10.1023/A:1011508532477 +Martin V. Butz,Problem solution sustenance in XCS: Markov chain analysis of niche support distributions and the impact on computational complexity.,2007,8,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem8.html#ButzGLS07,https://doi.org/10.1007/s10710-006-9012-8 +Wolfgang Banzhaf,Editorial Introduction.,2004,5,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem5.html#Banzhaf04,https://doi.org/10.1023/B:GENP.0000017050.75941.55 +Peter Lichodzijewski,Coevolutionary bid-based genetic programming for problem decomposition in classification.,2008,9,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem9.html#LichodzijewskiH08,https://doi.org/10.1007/s10710-008-9067-9 +Margaret J. Eppstein,"Genomic mining for complex disease traits with ""random chemistry"".",2007,8,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem8.html#EppsteinPWM07,https://doi.org/10.1007/s10710-007-9039-5 +James A. Foster,Review: Discipulus: A Commercial Genetic Programming System.,2001,2,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem2.html#Foster01,https://doi.org/10.1023/A:1011516717456 +Omid David-Tabibi,Expert-driven genetic algorithms for simulating evaluation functions.,2011,12,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem12.html#David-TabibiKN11,https://doi.org/10.1007/s10710-010-9103-4 +Amir Hosein Keyhanipour,Learning to rank: new approach with the layered multi-population genetic programming on click-through features.,2016,17,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem17.html#KeyhanipourMORB16,https://doi.org/10.1007/s10710-016-9263-y +N. Shaaban,The Use of Genetic Algorithms for the Improvement of Energy Characteristics of CdZnTe Semiconductor Detectors.,2001,2,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem2.html#ShaabanHST01,https://doi.org/10.1023/A:1011905527157 +Krzysztof Krawiec,Genetic Programming-based Construction of Features for Machine Learning and Knowledge Discovery Tasks.,2002,3,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem3.html#Krawiec02,https://doi.org/10.1023/A:1020984725014 +Richard J. Povinelli,Book Review: Foundations of Genetic Programming.,2004,5,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem5.html#Povinelli04,https://doi.org/10.1023/B:GENP.0000030222.30886.fa +V. G. Asouti,A grid-enabled asynchronous metamodel-assisted evolutionary algorithm for aerodynamic optimization.,2009,10,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem10.html#AsoutiKG09,https://doi.org/10.1007/s10710-009-9090-5 +Moshe Sipper,"Commentary on ""Genetic Programming and Emergence"".",2014,15,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem15.html#Sipper14,https://doi.org/10.1007/s10710-013-9203-z +Gabriela Ochoa,An evolutionary approach to cancer chemotherapy scheduling.,2007,8,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem8.html#OchoaVB07,https://doi.org/10.1007/s10710-007-9041-y +Peter A. Whigham,On the mapping of genotype to phenotype in evolutionary algorithms.,2017,18,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem18.html#WhighamDM17,https://doi.org/10.1007/s10710-017-9288-x +Jason M. Daida,What Makes a Problem GP-Hard? Analysis of a Tunably Difficult Problem in Genetic Programming.,2001,2,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem2.html#DaidaBSKCCP01,https://doi.org/10.1023/A:1011504414730 +Matthew Goble Smith,Genetic Programming with a Genetic Algorithm for Feature Construction and Selection.,2005,6,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem6.html#SmithB05,https://doi.org/10.1007/s10710-005-2988-7 +Daniele Loiacono,Special issue on GECCO competitions.,2014,15,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem15.html#LoiaconoS14,https://doi.org/10.1007/s10710-014-9226-0 +Ivan Tanev,Genetic programming incorporating biased mutation for evolution and adaptation of Snakebot.,2007,8,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem8.html#Tanev07,https://doi.org/10.1007/s10710-006-9008-4 +Emma Hart,Evolutionary Scheduling: A Review.,2005,6,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem6.html#HartRC05,https://doi.org/10.1007/s10710-005-7580-7 +Kfir Wolfson,Have your spaghetti and eat it too: evolutionary algorithmics and post-evolutionary analysis.,2011,12,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem12.html#WolfsonZSZ11,https://doi.org/10.1007/s10710-010-9122-1 +Annie S. Wu,The Proportional Genetic Algorithm: Gene Expression in a Genetic Algorithm.,2002,3,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem3.html#WuG02,https://doi.org/10.1023/A:1015531909333 +Peter Karpov,VALIS: an evolutionary classification algorithm.,2018,19,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem19.html#KarpovST18,https://doi.org/10.1007/s10710-018-9331-6 +Shuguang Zhao,Multi-objective evolutionary design and knowledge discovery of logic circuits based on an adaptive genetic algorithm.,2006,7,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem7.html#ZhaoJ06,https://doi.org/10.1007/s10710-006-9005-7 +Erik Hemberg,A comparison of grammatical genetic programming grammars for controlling femtocell network coverage.,2013,14,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem14.html#HembergHOC13,https://doi.org/10.1007/s10710-012-9171-8 +Carlos Cotta,Where is evolutionary computation going? A temporal analysis of the EC community.,2007,8,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem8.html#CottaG07,https://doi.org/10.1007/s10710-007-9031-0 +Laura Diosan,Evolutionary design of Evolutionary Algorithms.,2009,10,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem10.html#DiosanO09,https://doi.org/10.1007/s10710-009-9081-6 +P. Balasubramaniam 0001,Solution of matrix Riccati differential equation for nonlinear singular system using genetic programming.,2009,10,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem10.html#BalasubramaniamK09,https://doi.org/10.1007/s10710-008-9072-z +William B. Langdon,Genetic improvement of GPU software.,2017,18,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem18.html#LangdonLMPH17,https://doi.org/10.1007/s10710-016-9273-9 +Mak A. Kaboudan,Biologically Inspired Algorithms for Financial Modelling.,2006,7,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem7.html#Kaboudan06,https://doi.org/10.1007/s10710-006-9010-x +Erik D. Goodman,A Word from the Chair of ISGEC.,2004,5,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem5.html#Goodman04,https://doi.org/10.1023/B:GENP.0000017052.83908.eb +Lee Spector,"Peer commentary on Wolfgang Banzhaf's ""genetic programming and emergence"".",2014,15,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem15.html#Spector14a,https://doi.org/10.1007/s10710-013-9209-6 +Giovanni Squillero,MicroGP-An Evolutionary Assembly Program Generator.,2005,6,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem6.html#Squillero05,https://doi.org/10.1007/s10710-005-2985-x +Sara Silva,Guest editorial: special issue on selected papers from the European conference on genetic programming.,2012,13,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem13.html#SilvaF12,https://doi.org/10.1007/s10710-012-9167-4 +Michael A. Lones,Sean Luke: essentials of metaheuristics.,2011,12,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem12.html#Lones11,https://doi.org/10.1007/s10710-011-9139-0 +David Robert White,Better GP benchmarks: community survey results and proposals.,2013,14,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem14.html#WhiteMCMGKJOL13,https://doi.org/10.1007/s10710-012-9177-2 +Markus Brameier,Evolving Teams of Predictors with Linear Genetic Programming.,2001,2,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem2.html#BrameierB01,https://doi.org/10.1023/A:1012978805372 +Peter J. Bentley,Guest Editorial Special Issue on Artificial Immune Systems.,2003,4,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem4.html#BentleyT03,https://doi.org/10.1023/A:1026182810701 +Yaniv Azaria,GP-Gammon: Genetically Programming Backgammon Players.,2005,6,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem6.html#AzariaS05,https://doi.org/10.1007/s10710-005-2990-0 +Cesare Valenti,A genetic algorithm for discrete tomography reconstruction.,2008,9,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem9.html#Valenti08,https://doi.org/10.1007/s10710-007-9051-9 +Steve R. DiPaola,Incorporating characteristics of human creativity into an evolutionary art algorithm.,2009,10,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem10.html#DiPaolaG09,https://doi.org/10.1007/s10710-008-9074-x +Wolfgang Banzhaf,Acknowledgement.,2000,1,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem1.html#Banzhaf00a,https://doi.org/10.1023/A:1010022522223 +Michael O'Neill,Semantic methods in genetic programming.,2016,17,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem17.html#ONeill16,https://doi.org/10.1007/s10710-015-9254-4 +Achiya Elyasaf,Software review: the HeuristicLab framework.,2014,15,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem15.html#ElyasafS14,https://doi.org/10.1007/s10710-014-9214-4 +Maryam S. Nuser,Simulations of DNA Computing with In Vitro Selection.,2003,4,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem4.html#NuserD03,https://doi.org/10.1023/A:1023937113468 +Nikolay I. Nikolaev,Accelerated Genetic Programming of Polynomials.,2001,2,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem2.html#NikolaevI01,https://doi.org/10.1023/A:1011949326249 +Dror Sholomon,An automatic solver for very large jigsaw puzzles using genetic algorithms.,2016,17,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem17.html#SholomonDN16,https://doi.org/10.1007/s10710-015-9258-0 +Tobias Storch,On the impact of objective function transformations on evolutionary and black-box algorithms.,2006,7,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem7.html#Storch06,https://doi.org/10.1007/s10710-006-9004-8 +Shin Ando,Classification of Gene Expression Profile Using Combinatory Method of Evolutionary Computation and Machine Learning.,2004,5,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem5.html#AndoI04,https://doi.org/10.1023/B:GENP.0000023685.83861.69 +Wolfgang Banzhaf,Acknowledgment.,2006,7,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem7.html#Banzhaf06a,https://doi.org/10.1007/s10710-006-7016-z +Krzysztof Krawiec,Genetic programming: where meaning emerges from program code.,2014,15,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem15.html#Krawiec14,https://doi.org/10.1007/s10710-013-9200-2 +Shai Sharabi,GP-Sumo: Using genetic programming to evolve sumobots.,2006,7,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem7.html#SharabiS06,https://doi.org/10.1007/s10710-006-9006-6 +Matej Sprogar,Prudent alignment and crossover of decision trees in genetic programming.,2015,16,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem16.html#Sprogar15,https://doi.org/10.1007/s10710-015-9243-7 +Yao Wang,Estimation of evolvability genetic algorithm and dynamic environments.,2006,7,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem7.html#WangW06,https://doi.org/10.1007/s10710-006-9015-5 +Robin Harper,Evolving Robocode tanks for Evo Robocode.,2014,15,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem15.html#Harper14,https://doi.org/10.1007/s10710-014-9224-2 +Lee Spector,Editorial introduction.,2012,13,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem13.html#Spector12,https://doi.org/10.1007/s10710-011-9155-0 +Maryam Baniasadi,Exploring non-photorealistic rendering with genetic programming.,2015,16,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem16.html#BaniasadiR15,https://doi.org/10.1007/s10710-014-9234-0 +Steve O'Hagan,Software review: the KNIME workflow environment and its applications in genetic programming and machine learning.,2015,16,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem16.html#OHaganK15,https://doi.org/10.1007/s10710-015-9247-3 +Kay Chen Tan,Book Review: The Design of Innovation: Lessons from and for Competent Genetic Algorithms.,2004,5,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem5.html#Tan04,https://doi.org/10.1023/B:GENP.0000017054.24706.3b +Wolfgang Banzhaf,Acknowledgment.,2005,6,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem6.html#Banzhaf05a,https://doi.org/10.1007/s10710-005-6163-y +Behnaz Moradabadi,A new real-coded stochastic Bayesian optimization algorithm for continuous global optimization.,2016,17,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem17.html#MoradabadiEM16,https://doi.org/10.1007/s10710-015-9255-3 +Francisco Fernández de Vega,An Empirical Study of Multipopulation Genetic Programming.,2003,4,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem4.html#VegaTV03,https://doi.org/10.1023/A:1021873026259 +Andrew James Turner,Neutral genetic drift: an investigation using Cartesian Genetic Programming.,2015,16,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem16.html#TurnerM15a,https://doi.org/10.1007/s10710-015-9244-6 +Leonardo Vanneschi,Gene regulatory networks reconstruction from time series datasets using genetic programming: a comparison between tree-based and graph-based approaches.,2013,14,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem14.html#VanneschiMBRS13,https://doi.org/10.1007/s10710-013-9183-z +Kangil Kim,Probabilistic model building in genetic programming: a critical review.,2014,15,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem15.html#KimSNM14,https://doi.org/10.1007/s10710-013-9205-x +Fabio A. González,Anomaly Detection Using Real-Valued Negative Selection.,2003,4,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem4.html#GonzalezD03,https://doi.org/10.1023/A:1026195112518 +Carlton Downey,Parallel linear genetic programming for multi-class classification.,2012,13,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem13.html#DowneyZL12,https://doi.org/10.1007/s10710-012-9162-9 +Jason D. Lohn,An evolved anti-jamming adaptive beamforming network.,2011,12,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem12.html#LohnBL11,https://doi.org/10.1007/s10710-011-9134-5 +Marco Tomassini,The structure of the genetic programming collaboration network.,2007,8,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem8.html#TomassiniLGL07,https://doi.org/10.1007/s10710-006-9018-2 +Tomasz P. Pawlak,Review and comparative analysis of geometric semantic crossovers.,2015,16,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem16.html#PawlakWK15,https://doi.org/10.1007/s10710-014-9239-8 +Natalio Krasnogor,Self Generating Metaheuristics in Bioinformatics: The Proteins Structure Comparison Case.,2004,5,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem5.html#Krasnogor04,https://doi.org/10.1023/B:GENP.0000023687.41210.d7 +Cameron C. Gray,Data exploration in evolutionary reconstruction of PET images.,2018,19,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem19.html#GrayAV18,https://doi.org/10.1007/s10710-018-9330-7 +Wolfgang Banzhaf,Acknowledgment.,2004,5,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem5.html#Banzhaf04a,https://doi.org/10.1023/B:GENP.0000017051.93386.43 +Bill C. H. Chang,Particle Swarm Optimisation for Protein Motif Discovery.,2004,5,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem5.html#ChangRHW04,https://doi.org/10.1023/B:GENP.0000023688.42515.92 +Mauro Castelli,A C++ framework for geometric semantic genetic programming.,2015,16,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem16.html#CastelliSV15,https://doi.org/10.1007/s10710-014-9218-0 +Leonardo Vanneschi,A survey of semantic methods in genetic programming.,2014,15,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem15.html#VanneschiCS14,https://doi.org/10.1007/s10710-013-9210-0 +Antonio Carneiro Mesquita,Introduction to Evolvable Hardware: A Practical Guide for Designing Self-Adaptive Systems.,2008,9,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem9.html#Mesquita08,https://doi.org/10.1007/s10710-008-9058-x +Conor Ryan,Book Review: Genetic Programming 3: Darwinian Invention and Problem Solving.,2000,1,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem1.html#Ryan00,https://doi.org/10.1023/A:1010069204187 +José María Valencia-Ramírez,An iterative genetic programming approach to prototype generation.,2017,18,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem18.html#Valencia-Ramirez17,https://doi.org/10.1007/s10710-016-9279-3 +Tina Yu,Hierarchical Processing for Evolving Recursive and Modular Programs Using Higher-Order Functions and Lambda Abstraction.,2001,2,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem2.html#Yu01,https://doi.org/10.1023/A:1012926821302 +Mark S. Withall,An improved representation for evolving programs.,2009,10,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem10.html#WithallHS09,https://doi.org/10.1007/s10710-008-9069-7 +Peter J. Bentley,Fractal Proteins.,2004,5,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem5.html#Bentley04,https://doi.org/10.1023/B:GENP.0000017011.51324.d2 +Dennis L. Chao,Information Immune Systems.,2003,4,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem4.html#ChaoF03,https://doi.org/10.1023/A:1026139027539 +Alex Alves Freitas,Book Review: Data Mining Using Grammar-Based Genetic Programming and Applications.,2001,2,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem2.html#Freitas01,https://doi.org/10.1023/A:1011564616547 +Lee Spector,Book Review: The Quest for the Quantum Computer.,2002,3,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem3.html#Spector02,https://doi.org/10.1023/A:1020945110902 +Mehdi Rezapoor Mirsaleh,A learning automata-based memetic algorithm.,2015,16,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem16.html#MirsalehM15,https://doi.org/10.1007/s10710-015-9241-9 +Indriyati Atmosukarto,GPLAB: software review.,2011,12,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem12.html#Atmosukarto11,https://doi.org/10.1007/s10710-011-9142-5 +David F. Barrero,A study on Koza's performance measures.,2015,16,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem16.html#BarreroCRC15,https://doi.org/10.1007/s10710-014-9238-9 +Kwaku Yeboah-Antwi,Online Genetic Improvement on the java virtual machine with ECSELR.,2017,18,Genetic Programming and Evolvable Machines,1,db/journals/gpem/gpem18.html#Yeboah-AntwiB17,https://doi.org/10.1007/s10710-016-9278-4 +Udo Feldkamp,Software Tools for DNA Sequence Design.,2003,4,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem4.html#FeldkampRB03,https://doi.org/10.1023/A:1023985029398 +Peter Martin,A Hardware Implementation of a Genetic Programming System Using FPGAs and Handel-C.,2001,2,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem2.html#Martin01,https://doi.org/10.1023/A:1012942304464 +Jan Quadflieg,Driving as a human: a track learning based adaptable architecture for a car racing controller.,2014,15,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem15.html#QuadfliegPR14,https://doi.org/10.1007/s10710-014-9227-z +Wolfgang Banzhaf,Editorial Introduction.,2004,5,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem5.html#BanzhafF04,https://doi.org/10.1023/B:GENP.0000023710.47388.8b +James Alfred Walker,The evolution of standard cell libraries for future technology nodes.,2011,12,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem12.html#WalkerHRARMT11,https://doi.org/10.1007/s10710-011-9131-8 +Lance D. Chambers,Book Review: Genetic Programming and Data Structures: Genetic Programming+Data Structures=Automatic Programming.,2001,2,Genetic Programming and Evolvable Machines,3,db/journals/gpem/gpem2.html#Chambers01,https://doi.org/10.1023/A:1011957528066 +Theodore W. Cornforth,Inference of hidden variables in systems of differential equations with genetic programming.,2013,14,Genetic Programming and Evolvable Machines,2,db/journals/gpem/gpem14.html#CornforthL13,https://doi.org/10.1007/s10710-012-9175-4 +Stephen L. Smith,Diagnosis of Parkinson's disease using evolutionary algorithms.,2007,8,Genetic Programming and Evolvable Machines,4,db/journals/gpem/gpem8.html#SmithGHJAP07,https://doi.org/10.1007/s10710-007-9043-9 +Elisa Benetti,Multichannel Modality in Displaying Information.,2013,4,IJARAS,1,db/journals/ijaras/ijaras4.html#BenettiM13,https://doi.org/10.4018/jaras.2013010103 +Leo Marcus,Abstract Fault Tolerance: A Model-Theoretic Approach to Fault Tolerance and Fault Compensation without Error Correction.,2011,2,IJARAS,4,db/journals/ijaras/ijaras2.html#Marcus11,https://doi.org/10.4018/jaras.2011100102 +Gabriella Carrozza,A Recovery-Oriented Approach for Software Fault Diagnosis in Complex Critical Systems.,2011,2,IJARAS,1,db/journals/ijaras/ijaras2.html#CarrozzaN11,https://doi.org/10.4018/jaras.2011010105 +Lopamudra Roychoudhuri,Autonomic QoS Optimization of Real-Time Internet Audio Using Loss Prediction and Stochastic Control.,2010,1,IJARAS,3,db/journals/ijaras/ijaras1.html#RoychoudhuriA10,https://doi.org/10.4018/jaras.2010070105 +Fatma Abdennadher,Mobility Management in Publish/Subscribe Middleware.,2013,4,IJARAS,1,db/journals/ijaras/ijaras4.html#AbdennadherJ13,https://doi.org/10.4018/jaras.2013010105 +Françoise Baude,Mixing Workflows and Components to Support Evolving Services.,2010,1,IJARAS,4,db/journals/ijaras/ijaras1.html#BaudeCHNPBL10,https://doi.org/10.4018/jaras.2010100105 +Zafar Mehmood Khattak,A Comparative Performance Study of Ad Hoc Routing Protocols to Improve the Route Discovery Process of AODV.,2014,5,IJARAS,4,db/journals/ijaras/ijaras5.html#KhattakIW14,https://doi.org/10.4018/ijaras.2014100102 +Peter De Cleyn,Impact of Cross-Layer Adaptations of Mobile IP on IEEE 802.11 Networks on Video Streaming.,2010,1,IJARAS,3,db/journals/ijaras/ijaras1.html#CleynB10,https://doi.org/10.4018/jaras.2010070104 +Paul Kaufmann,Compensating Resource Fluctuations by Means of Evolvable Hardware: The Run-Time Reconfigurable Functional Unit Row Classifier Architecture.,2012,3,IJARAS,4,db/journals/ijaras/ijaras3.html#KaufmannGPT12,https://doi.org/10.4018/jaras.2012100102 +Riad Mokadem,Resource Discovery Service while Minimizing Maintenance Overhead in Hierarchical DHT Systems.,2012,3,IJARAS,2,db/journals/ijaras/ijaras3.html#MokademHT12,https://doi.org/10.4018/jaras.2012040101 +Pietro Cipresso,Stress Diffusion through Complex Networks.,2012,3,IJARAS,1,db/journals/ijaras/ijaras3.html#CipressoGSR12,https://doi.org/10.4018/jaras.2012010103 +Alexandre L. Correia,Smart Ultra Low Power Energy Harvesting System.,2013,4,IJARAS,3,db/journals/ijaras/ijaras4.html#CorreiaCPR13,https://doi.org/10.4018/jaras.2013070106 +Abul Ahsan Md. Mahmudul Haque,Peer-to-Peer Orchestration of Web Mashups.,2014,5,IJARAS,3,db/journals/ijaras/ijaras5.html#HaqueY14,https://doi.org/10.4018/ijaras.2014070103 +J. Karlsson,Low-Complexity Encoding in Block-Based Hybrid Video Codecs by Moving Motion Estimation to Decoder Side.,2014,5,IJARAS,1,db/journals/ijaras/ijaras5.html#Karlsson14,https://doi.org/10.4018/ijaras.2014010102 +Iacopo Carreras,A Distributed Monitoring Framework for Opportunistic Communication Systems An Experimental Approach.,2011,2,IJARAS,3,db/journals/ijaras/ijaras2.html#CarrerasZSM11,https://doi.org/10.4018/jaras.2011070104 +Muddesar Iqbal,Design and Analysis of a Novel Hybrid Wireless Mesh Network Routing Protocol.,2014,5,IJARAS,3,db/journals/ijaras/ijaras5.html#IqbalSCAAW14,https://doi.org/10.4018/ijaras.2014070102 +Kameswar Rao Vaddina,Exploration of Temperature-Aware Placement Approaches in 2D and 3D Stacked Systems.,2013,4,IJARAS,3,db/journals/ijaras/ijaras4.html#VaddinaLP13,https://doi.org/10.4018/jaras.2013070104 +Christophe Dumez,Model-Driven Approaches to Service Composition.,2013,4,IJARAS,4,db/journals/ijaras/ijaras4.html#DumezBGW13,https://doi.org/10.4018/ijaras.2013100102 +Steffen Ortmann,Self-Adapting Event Configuration in Ubiquitous Wireless Sensor Networks.,2010,1,IJARAS,2,db/journals/ijaras/ijaras1.html#OrtmannML10,https://doi.org/10.4018/jaras.2010040104 +Flavio Frattini,ROCRSSI++: An Efficient Localization Algorithm for Wireless Sensor Networks.,2011,2,IJARAS,2,db/journals/ijaras/ijaras2.html#FrattiniER11,https://doi.org/10.4018/jaras.2011040104 +Michal Wódczak,Design and Evaluation of Techniques for Resilience and Survivability of the Routing Node.,2013,4,IJARAS,4,db/journals/ijaras/ijaras4.html#WodczakTVL13,https://doi.org/10.4018/ijaras.2013100103 +Anders Nickelsen,OPEN Platform for Migration of Interactive Services: Architecture and Evaluation.,2012,3,IJARAS,2,db/journals/ijaras/ijaras3.html#NickelsenPGSMM12,https://doi.org/10.4018/jaras.2012040102 +Cheikh Niang,A Semi-Automatic Approach For Global-Schema Construction in Data Integration Systems.,2013,4,IJARAS,2,db/journals/ijaras/ijaras4.html#NiangBSL13,https://doi.org/10.4018/jaras.2013040102 +Satyakiran Munaga,Reliability-Aware Proactive Energy Management in Hard Real-Time Systems: A Motivational Case Study.,2010,1,IJARAS,4,db/journals/ijaras/ijaras1.html#MunagaC10,https://doi.org/10.4018/jaras.2010100101 +Terje Kristensen,Towards Spike based Models of Visual Attention in the Brain.,2015,6,IJARAS,2,db/journals/ijaras/ijaras6.html#Kristensen15,https://doi.org/10.4018/IJARAS.2015070106 +Antonio Corradi,Dynamic Reconfiguration of Middleware for Ubiquitous Computing.,2010,1,IJARAS,2,db/journals/ijaras/ijaras1.html#CorradiLM10,https://doi.org/10.4018/jaras.2010040102 +Riccardo Rovatti,Benefits of Cooperation in Multiplayer Coupon Collectors' Games.,2013,4,IJARAS,4,db/journals/ijaras/ijaras4.html#RovattiPM13,https://doi.org/10.4018/ijaras.2013100101 +Christian Esposito,Resilient and Timely Event Dissemination in Publish/Subscribe Middleware.,2010,1,IJARAS,1,db/journals/ijaras/ijaras1.html#EspositoC10,https://doi.org/10.4018/jaras.2010071701 +Luca Simoncini,Technological and Educational Challenges of Resilient Computing.,2010,1,IJARAS,1,db/journals/ijaras/ijaras1.html#Simoncini10,https://doi.org/10.4018/jaras.2010071703 +Long H. Vu,COADA: Leveraging Dynamic Coalition Peer-to-Peer Network for Adaptive Content Download of Cellular Users.,2011,2,IJARAS,2,db/journals/ijaras/ijaras2.html#VuNMW11,https://doi.org/10.4018/jaras.2011040101 +Antonio Corradi,Towards Adaptive and Scalable Context Aware Middleware.,2010,1,IJARAS,1,db/journals/ijaras/ijaras1.html#CorradiFF10,https://doi.org/10.4018/jaras.2010071704 +Jérôme Lacouture,Self-Adaptable Discovery and Composition of Services Based on the Semantic CompAA Approach.,2011,2,IJARAS,4,db/journals/ijaras/ijaras2.html#LacoutureA11,https://doi.org/10.4018/jaras.2011100104 +Liang Guang,Dual Monitoring Communication for Self-Aware Network-on-Chip: Architecture and Case Study.,2012,3,IJARAS,3,db/journals/ijaras/ijaras3.html#GuangNPT12,https://doi.org/10.4018/jaras.2012070105 +Vincenzo De Florio,Adaptation and Dependability and Their Key Role in Modern Software Engineering.,2010,1,IJARAS,2,db/journals/ijaras/ijaras1.html#FlorioB10,https://doi.org/10.4018/jaras.2010040101 +Eric Gascard,A Polynomial Algorithm for Diagnosability Analysis of Discrete Event Systems.,2015,6,IJARAS,2,db/journals/ijaras/ijaras6.html#GascardSS15,https://doi.org/10.4018/IJARAS.2015070101 +Massimo Felici,How to Trust: A Model for Trust Decision Making.,2012,3,IJARAS,3,db/journals/ijaras/ijaras3.html#Felici12,https://doi.org/10.4018/jaras.2012070102 +Gonzalo Huerta Cánepa,A Multi-User Ad-Hoc Resource Manager for Public Urban Areas.,2010,1,IJARAS,4,db/journals/ijaras/ijaras1.html#CanepaL10,https://doi.org/10.4018/jaras.2010100103 +Yves Vanrompay,Efficient Adaptation Decision Making Algorithms for Context-Aware Applications.,2010,1,IJARAS,3,db/journals/ijaras/ijaras1.html#VanrompaySB10,https://doi.org/10.4018/jaras.2010070103 +Wei Chen,A Virtual Machine Placement and Reconfiguration Framework for Cloud Computing Platforms.,2014,5,IJARAS,2,db/journals/ijaras/ijaras5.html#ChenQWZH14,https://doi.org/10.4018/ijaras.2014040101 +M. Leeman,A Resource-Aware Dynamic Load-Balancing Parallelization Algorithm in a Farmer-Worker Environment.,2011,2,IJARAS,1,db/journals/ijaras/ijaras2.html#Leeman11,https://doi.org/10.4018/jaras.2011010101 +Jonas Buys,Optimization of WS-BPEL Workflows through Business Process Re-Engineering Patterns.,2010,1,IJARAS,3,db/journals/ijaras/ijaras1.html#BuysFB10,https://doi.org/10.4018/jaras.2010070102 +Ning Gui,Run-Time Compositional Software Platform for Autonomous NXT Robots.,2011,2,IJARAS,2,db/journals/ijaras/ijaras2.html#GuiFB11,https://doi.org/10.4018/jaras.2011040103 +Yi Song,On the Privacy and Utility of Anonymized Social Networks.,2013,4,IJARAS,2,db/journals/ijaras/ijaras4.html#SongLNBK13,https://doi.org/10.4018/jaras.2013040101 +José M. Catela,MoteIST: A Modular Low-Power Approach to Wireless Sensor Networks Nodes.,2013,4,IJARAS,3,db/journals/ijaras/ijaras4.html#CatelaRP13,https://doi.org/10.4018/jaras.2013070105 +José M. Camacho,Evaluation Framework for Adaptive Multi-Path Inter-Domain Routing Protocols.,2011,2,IJARAS,3,db/journals/ijaras/ijaras2.html#CamachoPV11,https://doi.org/10.4018/jaras.2011070103 +Marcello Cinque,Adaptive Modeling of Routing Algorithms for Wireless Sensor Networks.,2010,1,IJARAS,1,db/journals/ijaras/ijaras1.html#CinqueM10,https://doi.org/10.4018/jaras.2010071702 +Rafael Oliveira Vasconcelos,Design and Evaluation of an Autonomous Load Balancing System for Mobile Data Stream Processing Based On a Data Centric Publish Subscribe Approach.,2014,5,IJARAS,3,db/journals/ijaras/ijaras5.html#VasconcelosEGS14,https://doi.org/10.4018/ijaras.2014070101 +Faîçal Felhi,Real Time in Self-Adaptability of Web Services to the Context based on Workflow: Ambulance Trajectory Case Study.,2015,6,IJARAS,1,db/journals/ijaras/ijaras6.html#FelhiA15,https://doi.org/10.4018/IJARAS.2015010103 +Hong Sun,A Generic Adaptation Framework for Mobile Communication.,2011,2,IJARAS,1,db/journals/ijaras/ijaras2.html#SunGB11,https://doi.org/10.4018/jaras.2011010103 +Jef Aernouts,Framework to Enable Scalable and Distributed Application Development: Lessons Learned While Developing the Opportunistic Seamless Localization System.,2013,4,IJARAS,4,db/journals/ijaras/ijaras4.html#AernoutsCEW13,https://doi.org/10.4018/ijaras.2013100104 +Satyakiran Munaga,Systematic Design Principles for Cost-Effective Hard Constraint Management in Dynamic Nonlinear Systems.,2011,2,IJARAS,1,db/journals/ijaras/ijaras2.html#MunagaC11,https://doi.org/10.4018/jaras.2011010102 +Chi-Yuan Chen,IoT-IMS Communication Platform for Future Internet.,2011,2,IJARAS,4,db/journals/ijaras/ijaras2.html#ChenCWFCCH11,https://doi.org/10.4018/jaras.2011100105 +Josip Lorincz,Adaptive and Resilient Solutions for Energy Savings of Mobile Access Networks.,2014,5,IJARAS,3,db/journals/ijaras/ijaras5.html#LorinczCM14,https://doi.org/10.4018/ijaras.2014070105 +Toshiaki Hayashi,Performance Degradation Detection of Virtual Machines Via Passive Measurement and Machine Learning.,2014,5,IJARAS,2,db/journals/ijaras/ijaras5.html#HayashiO14,https://doi.org/10.4018/ijaras.2014040103 +Mohammed Lethrech,A MDSD Approach for Adaptable Service Oriented Systems based on Domain Specific Language Engineering.,2016,7,IJARAS,1,db/journals/ijaras/ijaras7.html#LethrechKENK16,https://doi.org/10.4018/IJARAS.2016010101 +Ning Gui,An Architecture-Based Adaptation Framework for Soft Real-Time Applications.,2010,1,IJARAS,4,db/journals/ijaras/ijaras1.html#GuiSB10,https://doi.org/10.4018/jaras.2010100102 +James Alfred Walker,Automatic Machine Code Generation for a Transport Triggered Architecture using Cartesian Genetic Programming.,2012,3,IJARAS,4,db/journals/ijaras/ijaras3.html#WalkerLTTT12,https://doi.org/10.4018/jaras.2012100103 +Mohammad Alaei,An Acoustic-Visual Collaborative Hybrid Architecture for Wireless Multimedia Sensor Networks.,2014,5,IJARAS,1,db/journals/ijaras/ijaras5.html#AlaeiB14,https://doi.org/10.4018/ijaras.2014010104 +M. Fahim Ferdous Khan,The Context-Security Nexus in Ubiquitous Computing.,2014,5,IJARAS,3,db/journals/ijaras/ijaras5.html#KhanS14,https://doi.org/10.4018/ijaras.2014070104 +Thomy Nilsson,Spatial Multiplexing: Solving Information Bottlenecks in Real Neural Systems and the Origin of Brain Rhythms.,2014,5,IJARAS,4,db/journals/ijaras/ijaras5.html#Nilsson14,https://doi.org/10.4018/ijaras.2014100104 +Denis do Rosário,A Cross-Layer QoE-Based Approach for Event-Based Multi-Tier Wireless Multimedia Sensor Networks.,2014,5,IJARAS,1,db/journals/ijaras/ijaras5.html#RosarioZBC14,https://doi.org/10.4018/ijaras.2014010101 +Luís Assunção,Autonomic Workflow Activities: The AWARD Framework.,2014,5,IJARAS,2,db/journals/ijaras/ijaras5.html#AssuncaoGC14,https://doi.org/10.4018/ijaras.2014040104 +Andreu Pere Isern-Deyà,Anonymous and Fair Micropayment Scheme with Protection against Coupon Theft.,2013,4,IJARAS,2,db/journals/ijaras/ijaras4.html#Isern-DeyaPPF13,https://doi.org/10.4018/jaras.2013040103 +Wenting Wang,Towards Availability: A Dynamic Scaling Mechanism for Cloud Applications.,2014,5,IJARAS,2,db/journals/ijaras/ijaras5.html#WangCC14,https://doi.org/10.4018/ijaras.2014040102 +Boris Mejías,Beernet: Building Self-Managing Decentralized Systems with Replicated Transactional Storage.,2010,1,IJARAS,3,db/journals/ijaras/ijaras1.html#MejiasR10,https://doi.org/10.4018/jaras.2010070101 +Wided Bouchelligua,A Model Driven Engineering Approach Toward User Interfaces Adaptation.,2012,3,IJARAS,1,db/journals/ijaras/ijaras3.html#BouchelliguaMA12,https://doi.org/10.4018/jaras.2012010104 +Felicita Di Giandomenico,An Approach to Adaptive Dependability Assessment in Dynamic and Evolving Connected Systems.,2013,4,IJARAS,1,db/journals/ijaras/ijaras4.html#GiandomenicoBCN13,https://doi.org/10.4018/jaras.2013010101 +Neil McDonnell,Investigating Power Reduction for NoC-Based Spiking Neural Network Platforms using Channel Encoding.,2012,3,IJARAS,4,db/journals/ijaras/ijaras3.html#McDonnellCHM12,https://doi.org/10.4018/jaras.2012100101 +Elarbi Badidi,Towards Automated SLA Management for Service Delivery in SOA-based Environments.,2016,7,IJARAS,1,db/journals/ijaras/ijaras7.html#BadidiK16,https://doi.org/10.4018/IJARAS.2016010102 +Hui Zhang,Load-Balanced Multiple Gateway Enabled Wireless Mesh Network for Applications in Emergency and Disaster Recovery.,2011,2,IJARAS,4,db/journals/ijaras/ijaras2.html#ZhangWI11a,https://doi.org/10.4018/jaras.2011100103 +Daniel M. Yellin,Applying Probabilistic Adaptation to Improve the Efficiency of Intra-Query Load Balancing.,2013,4,IJARAS,1,db/journals/ijaras/ijaras4.html#YellinC13,https://doi.org/10.4018/jaras.2013010102 +Rémi Sharrock,Non-Intrusive Autonomic Approach with Self-Management Policies Applied to Legacy Infrastructures for Performance Improvements.,2011,2,IJARAS,1,db/journals/ijaras/ijaras2.html#SharrockMSHB11,https://doi.org/10.4018/jaras.2011010104 +Hui Cheng,Dynamic Genetic Algorithms with Hyper-Mutation Schemes for Dynamic Shortest Path Routing Problem in Mobile Ad Hoc Networks.,2012,3,IJARAS,1,db/journals/ijaras/ijaras3.html#Cheng12,https://doi.org/10.4018/jaras.2012010105 +Stéphane Frénot,Various Extensions for the Ambient OSGi Framework.,2011,2,IJARAS,3,db/journals/ijaras/ijaras2.html#FrenotMPS11,https://doi.org/10.4018/jaras.2011070101 +Eugene Ferry,A Context-Aware Mobility Indoor Positioning System.,2015,6,IJARAS,1,db/journals/ijaras/ijaras6.html#FerryOC15,https://doi.org/10.4018/IJARAS.2015010102 +Antonio Bucchiarone,A Variable Context Model for Adaptable Service-Based Applications.,2012,3,IJARAS,3,db/journals/ijaras/ijaras3.html#BucchiaroneCNPS12,https://doi.org/10.4018/jaras.2012070103 +Rony Dayan,The Semantics of Project Knowledge Management.,2012,3,IJARAS,1,db/journals/ijaras/ijaras3.html#Dayan12,https://doi.org/10.4018/jaras.2012010101 +Makram Soui,Evaluating User Interface Adaptation using the Context of Use.,2015,6,IJARAS,1,db/journals/ijaras/ijaras6.html#SouiGA15,https://doi.org/10.4018/IJARAS.2015010101 +Azizbek Ruzmetov,A Discrete Event-Driven Model for Electric Vehicles Predictive Charging.,2015,6,IJARAS,2,db/journals/ijaras/ijaras6.html#RuzmetovNBGM15,https://doi.org/10.4018/IJARAS.2015070102 +Juha Puustjärvi,Ontology-Based Competence Management in Pharmacy.,2013,4,IJARAS,2,db/journals/ijaras/ijaras4.html#PuustjarviP13,https://doi.org/10.4018/jaras.2013040105 +Mohamed Abouzahir,Implementation of FastSLAM2.0 on an Embedded System and HIL Validation using Different Sensors Data.,2015,6,IJARAS,2,db/journals/ijaras/ijaras6.html#AbouzahirEBLT15,https://doi.org/10.4018/IJARAS.2015070105 +Taha Abdelmoutaleb Cherfia,Bigraphical Reactive Systems Based Approaches for Modeling Context-Aware Systems.,2014,5,IJARAS,4,db/journals/ijaras/ijaras5.html#CherfiaB14,https://doi.org/10.4018/ijaras.2014100101 +Jitendra Kumar Rai,A Machine Learning Based Meta-Scheduler for Multi-Core Processors.,2010,1,IJARAS,4,db/journals/ijaras/ijaras1.html#RaiNWN10,https://doi.org/10.4018/IJARAS.2010100104 +Nestor Michael C. Tiglao,Caching Based Transport Optimization for Wireless Multimedia Sensor Networks.,2014,5,IJARAS,1,db/journals/ijaras/ijaras5.html#TiglaoG14,https://doi.org/10.4018/ijaras.2014010103 +Chiara Taddia,Duty Cycle Measurement Techniques for Adaptive and Resilient Autonomic Systems.,2011,2,IJARAS,3,db/journals/ijaras/ijaras2.html#TaddiaMR11,https://doi.org/10.4018/jaras.2011070105 +Khalid Latif 0002,Cluster Based Networks-on-Chip: An Efficient and Fault-Tolerant Architecture using Network Interface Assisted Routing.,2013,4,IJARAS,3,db/journals/ijaras/ijaras4.html#0002RST13,https://doi.org/10.4018/jaras.2013070102 +Raffaele Bruno,RELADO: RELiable and ADaptive Opportunistic Routing Protocol for Wireless Mesh Networks.,2012,3,IJARAS,3,db/journals/ijaras/ijaras3.html#BrunoCN12,https://doi.org/10.4018/jaras.2012070104 +Mohamed El-Amine Chergui,Services Derivation from Business Process: A PSO-based Multi-Objective Approach.,2016,7,IJARAS,1,db/journals/ijaras/ijaras7.html#CherguiB16,https://doi.org/10.4018/IJARAS.2016010104 +Joe Hoffert,Timely Autonomic Adaptation of Publish/Subscribe Middleware in Dynamic Environments.,2011,2,IJARAS,4,db/journals/ijaras/ijaras2.html#HoffertGS11,https://doi.org/10.4018/jaras.2011100101 +Daniele Tarchi,A Fully Reconfigurable Approach to Emergency Management.,2013,4,IJARAS,1,db/journals/ijaras/ijaras4.html#TarchiPC13,https://doi.org/10.4018/jaras.2013010104 +Kenichi Kourai,Efficient and Fine-Grained VMM-Level Packet Filtering for Self-Protection.,2014,5,IJARAS,2,db/journals/ijaras/ijaras5.html#KouraiAC14,https://doi.org/10.4018/ijaras.2014040105 +Konstantinos Tatas,A Novel Prototyping and Evaluation Framework for NoC-Based MPSoC.,2013,4,IJARAS,3,db/journals/ijaras/ijaras4.html#TatasSBKS13,https://doi.org/10.4018/jaras.2013070101 +Sami J. Habib,Management Scheme for Data Collection within Wireless Sensor Networks.,2012,3,IJARAS,2,db/journals/ijaras/ijaras3.html#HabibM12,https://doi.org/10.4018/jaras.2012040104 +Jens Kohler,Analysis of the Join Performance in Vertically Distributed Cloud Databases.,2015,6,IJARAS,2,db/journals/ijaras/ijaras6.html#KohlerSS15,https://doi.org/10.4018/IJARAS.2015070104 +Hui Zhang,An OMA DM Based Framework for Updating Modulation Module for Mobile Devices.,2011,2,IJARAS,3,db/journals/ijaras/ijaras2.html#ZhangWI11,https://doi.org/10.4018/jaras.2011070102 +Wesam Al-Sudani,Protection through Intelligent and Multimedia Captchas.,2012,3,IJARAS,2,db/journals/ijaras/ijaras3.html#Al-SudaniGLWL12,https://doi.org/10.4018/jaras.2012040103 +Catello Di Martino,iCAAS: An Interoperable and Configurable Architecture for Accessing Sensor Networks.,2010,1,IJARAS,2,db/journals/ijaras/ijaras1.html#MartinoDT10,https://doi.org/10.4018/jaras.2010040103 +Jetzabel Serna-Olvera,Performance Analysis of an OCSP-Based Authentication Protocol for VANETs.,2012,3,IJARAS,1,db/journals/ijaras/ijaras3.html#Serna-OlveraCRLMM12,https://doi.org/10.4018/jaras.2012010102 +Fabio Boldrin,Web Distributed Computing Systems Implementation and Modeling.,2010,1,IJARAS,1,db/journals/ijaras/ijaras1.html#BoldrinTM10,https://doi.org/10.4018/jaras.2010071705 +Pedro Mariano,Public and Private Partner Selection in Battle of Sexes.,2015,6,IJARAS,2,db/journals/ijaras/ijaras6.html#MarianoNC15,https://doi.org/10.4018/IJARAS.2015070103 +Parisa Khadem Hamedani,Exploration of Temperature Constraints for Thermal-Aware Mapping of 3D Networks-on-Chip.,2013,4,IJARAS,3,db/journals/ijaras/ijaras4.html#HamedaniJHS13,https://doi.org/10.4018/jaras.2013070103 +Luca Mussi,Multi-View Human Body Pose Estimation with CUDA-PSO.,2012,3,IJARAS,4,db/journals/ijaras/ijaras3.html#MussiINC12,https://doi.org/10.4018/jaras.2012100104 +Khadija Akherfi,A Mobile Cloud Middleware to Support Mobility and Cloud Interoperability.,2016,7,IJARAS,1,db/journals/ijaras/ijaras7.html#AkherfiHG16,https://doi.org/10.4018/IJARAS.2016010103 +Max Chevalier,User Models for Adaptive Information Retrieval on the Web: Towards an Interoperable and Semantic Model.,2012,3,IJARAS,3,db/journals/ijaras/ijaras3.html#Chevalier0S12,https://doi.org/10.4018/jaras.2012070101 +Rocco Aversa,Agents Network for Automatic Safety Check in Constructing Sites.,2011,2,IJARAS,2,db/journals/ijaras/ijaras2.html#AversaMNV11,https://doi.org/10.4018/jaras.2011040102 +Muhammad Abulaish,A Keyphrase-Based Tag Cloud Generation Framework to Conceptualize Textual Data.,2013,4,IJARAS,2,db/journals/ijaras/ijaras4.html#AbulaishA13,https://doi.org/10.4018/jaras.2013040104 +Shelley Shwu-Ching Young,Diffusion of Information Technology for Education in Taiwan: Reflections and Concerns in Response to Halverson and Collins' Paper.,2006,1,Research and Practice in Technology Enhanced Learning,2,db/journals/rptel/rptel1.html#Young06,https://doi.org/10.1142/S1793206806000123 +Samuel R. H. Joseph,Mobile Devices for Language Learning: Multimedia Approaches.,2009,4,Research and Practice in Technology Enhanced Learning,1,db/journals/rptel/rptel4.html#JosephU09,https://doi.org/10.1142/S179320680900060X +William R. Penuel,Designing Formative Assessment Software with Teachers: an Analysis of the Co-Design Process.,2007,2,Research and Practice in Technology Enhanced Learning,1,db/journals/rptel/rptel2.html#PenuelRS07,https://doi.org/10.1142/S1793206807000300 +Anders Kluge,Simulation as Science Discovery: Ways of Interactive Meaning-Making.,2010,5,Research and Practice in Technology Enhanced Learning,3,db/journals/rptel/rptel5.html#KlugeB10,https://doi.org/10.1142/S1793206810000876 +James D. Slotta,Guest Editors' Introduction.,2010,5,Research and Practice in Technology Enhanced Learning,3,db/journals/rptel/rptel5.html#SlottaSP10,https://doi.org/10.1142/S1793206810000943 +Lina Markauskaite,Knowledge Labels and their Correlates in an Asynchronous Text-Based Computer-Supported Collaborative Learning Environment: Who Uses and Who Benefits?,2008,3,Research and Practice in Technology Enhanced Learning,1,db/journals/rptel/rptel3.html#MarkauskaiteSH08,https://doi.org/10.1142/S1793206808000458 +Richard Medina,Using a Contingency Graph to Discover Representational Practices in an Online Collaborative Environment.,2009,4,Research and Practice in Technology Enhanced Learning,3,db/journals/rptel/rptel4.html#MedinaS09,https://doi.org/10.1142/S1793206809000726 +Niels Pinkwart,Process Support for Collaborative Inquiry Learning.,2010,5,Research and Practice in Technology Enhanced Learning,3,db/journals/rptel/rptel5.html#PinkwartHK10,https://doi.org/10.1142/S1793206810000888 +Jessica Dehler,Providing Group Knowledge Awareness in Computer-Supported Collaborative Learning: Insights into Learning Mechanisms.,2009,4,Research and Practice in Technology Enhanced Learning,2,db/journals/rptel/rptel4.html#DehlerBBH09,https://doi.org/10.1142/S1793206809000660 +Gerhard Fischer,Supporting Self-Directed Learners and Learning Communities with Sociotechnical Environments.,2006,1,Research and Practice in Technology Enhanced Learning,1,db/journals/rptel/rptel1.html#FischerS06,https://doi.org/10.1142/S1793206806000020 +Kai-Ming Li,Integrating Weblogs in a Pedagogy Model for Enhancing Students' Critical Thinking Skills.,2010,5,Research and Practice in Technology Enhanced Learning,1,db/journals/rptel/rptel5.html#Li10,https://doi.org/10.1142/S1793206810000803 +Naomi Miyake,Centralized System in Japan May suffer from Additional Factors like the Language Divide: Comments on Halverson and Collins.,2006,1,Research and Practice in Technology Enhanced Learning,2,db/journals/rptel/rptel1.html#Miyake06,https://doi.org/10.1142/S1793206806000111 +C. Paul Newhouse,Using Learning Environment Attributes to Evaluate the Impact of ICT on Learning in Schools.,2008,3,Research and Practice in Technology Enhanced Learning,2,db/journals/rptel/rptel3.html#NewhouseC08,https://doi.org/10.1142/S1793206808000483 +Garry Hoban,Supporting Reflection on Learning with a Web Environment in Australian Preservice Teacher Education Classes.,2006,1,Research and Practice in Technology Enhanced Learning,1,db/journals/rptel/rptel1.html#Hoban06,https://doi.org/10.1142/S1793206806000044 +Wenli Chen,Handheld Computers as Cognitive Tools: Technology-Enhanced Environmental Learning.,2008,3,Research and Practice in Technology Enhanced Learning,3,db/journals/rptel/rptel3.html#ChenTLZS08,https://doi.org/10.1142/S1793206808000513 +Yael Kali,Assessing the Assessors: Added Value in Web-Based Multi-Cycle Peer Assessment in Higher Education.,2008,3,Research and Practice in Technology Enhanced Learning,1,db/journals/rptel/rptel3.html#KaliR08,https://doi.org/10.1142/S1793206808000434 +Andreas Lingnau,Empowering Teachers to Evolve Media Enriched Classroom Scenarios.,2007,2,Research and Practice in Technology Enhanced Learning,2,db/journals/rptel/rptel2.html#LingnauHKH07,https://doi.org/10.1142/S1793206807000312 +Erin Walker,Integrating Collaboration and Intelligent Tutoring Data in the Evaluation of a Reciprocal Peer Tutoring Environment.,2009,4,Research and Practice in Technology Enhanced Learning,3,db/journals/rptel/rptel4.html#WalkerRK09,https://doi.org/10.1142/S179320680900074X +James D. Slotta,Toward a Design Framework for International Peer Discussions: Taking Advantage of Disparate Perspectives on Socio-Scientific Issues.,2010,5,Research and Practice in Technology Enhanced Learning,3,db/journals/rptel/rptel5.html#SlottaJ10,https://doi.org/10.1142/S179320681000089X +Wei Zhou,Supporting Senior Citizens Using the Internet in China.,2007,2,Research and Practice in Technology Enhanced Learning,1,db/journals/rptel/rptel2.html#ZhouYY07,https://doi.org/10.1142/S1793206807000269 +Allison Littlejohn,Cultural Issues in the Sharing and Reuse of Resources for Learning.,2006,1,Research and Practice in Technology Enhanced Learning,3,db/journals/rptel/rptel1.html#LittlejohnM06,https://doi.org/10.1142/S1793206806000184 +Daniel D. Suthers,A Qualitative Analysis of Collaborative Knowledge Construction through Shared Representations.,2006,1,Research and Practice in Technology Enhanced Learning,2,db/journals/rptel/rptel1.html#Suthers06,https://doi.org/10.1142/S1793206806000147 +Tzung-Shi Chen,Context-Aware Writing in Ubiquitous Learning Environments.,2009,4,Research and Practice in Technology Enhanced Learning,1,db/journals/rptel/rptel4.html#ChenCLY09,https://doi.org/10.1142/S1793206809000611 +Suzanne Riverin,The Evolution of an Online Community - a Case Study.,2007,2,Research and Practice in Technology Enhanced Learning,3,db/journals/rptel/rptel2.html#RiverinS07,https://doi.org/10.1142/S1793206807000361 +James D. Slotta,Wise Technology Lessons: Moving from a Local Proprietary System to a Global Open Source Framework.,2009,4,Research and Practice in Technology Enhanced Learning,2,db/journals/rptel/rptel4.html#SlottaA09,https://doi.org/10.1142/S1793206809000684 +Yeonjoo Oh,A Constraint-Based Furniture Design Critic.,2010,5,Research and Practice in Technology Enhanced Learning,2,db/journals/rptel/rptel5.html#OhGID10,https://doi.org/10.1142/S1793206810000864 +Liping Deng,Exploring the Role of Academic blogs in a Blended Community: an Integrative Approach.,2010,5,Research and Practice in Technology Enhanced Learning,2,db/journals/rptel/rptel5.html#DengY10,https://doi.org/10.1142/S1793206810000840 +Richard Halverson,Information Technologies and the Future of Schooling in the United States.,2006,1,Research and Practice in Technology Enhanced Learning,2,db/journals/rptel/rptel1.html#HalversonC06,https://doi.org/10.1142/S1793206806000081 +Morris Siu Yung Jong,Using Posting Templates for Enhancing Students' Argumentative Elaborations in Computer-Supported Collaborative Inquiry Learning.,2010,5,Research and Practice in Technology Enhanced Learning,3,db/journals/rptel/rptel5.html#JongCTLL10,https://doi.org/10.1142/S1793206810000906 +Carmel McNaught,Multicultural Issues in the Design of Learning Technologies - Guest Editors' Introduction.,2006,1,Research and Practice in Technology Enhanced Learning,3,db/journals/rptel/rptel1.html#McNaughtA06,https://doi.org/10.1142/S1793206806000172 +Liping Deng,Connecting Adult Learners with an Online Community: Challenges and Opportunities.,2007,2,Research and Practice in Technology Enhanced Learning,3,db/journals/rptel/rptel2.html#DengY07,https://doi.org/10.1142/S1793206807000385 +Daniel D. Suthers,Special Feature Editor's Introduction.,2006,1,Research and Practice in Technology Enhanced Learning,2,db/journals/rptel/rptel1.html#Suthers06a,https://doi.org/10.1142/S179320680600007X +Michael Christie,Boundaries and Accountabilities in Computer-Assisted Ethnobotany.,2006,1,Research and Practice in Technology Enhanced Learning,3,db/journals/rptel/rptel1.html#Christie06,https://doi.org/10.1142/S1793206806000214 +Rosemary Clerehan,Framing Writing Support Online for an International Student Population.,2006,1,Research and Practice in Technology Enhanced Learning,3,db/journals/rptel/rptel1.html#Clerehan06,https://doi.org/10.1142/S1793206806000202 +Cecilie Flo Jahreie,Portfolios as Boundary Object: Learning and Change in Teacher Education.,2007,2,Research and Practice in Technology Enhanced Learning,3,db/journals/rptel/rptel2.html#JahreieL07,https://doi.org/10.1142/S179320680700035X +Tak-Wai Chan,One-to-One Technology-Enhanced Learning: an Opportunity for Global Research Collaboration.,2006,1,Research and Practice in Technology Enhanced Learning,1,db/journals/rptel/rptel1.html#ChanRHKSBPCPNSBSDLMH06,https://doi.org/10.1142/S1793206806000032 +Ravi K. Vatrapu,Cultural Considerations in Computer Supported Collaborative Learning.,2008,3,Research and Practice in Technology Enhanced Learning,2,db/journals/rptel/rptel3.html#Vatrapu08,https://doi.org/10.1142/S1793206808000501 +Daniel Spikol,Physical Activities and Playful Learning Using Mobile Games.,2008,3,Research and Practice in Technology Enhanced Learning,3,db/journals/rptel/rptel3.html#SpikolM08,https://doi.org/10.1142/S1793206808000562 +Siu Cheung Kong,Editor's Introduction.,2010,5,Research and Practice in Technology Enhanced Learning,1,db/journals/rptel/rptel5.html#Kong10,https://doi.org/10.1142/S1793206810000815 +Nancy Law,Leveraging Technology for Educational Reform and Pedagogical Innovation: Policies and Practices in Hong Kong and Singapore.,2006,1,Research and Practice in Technology Enhanced Learning,2,db/journals/rptel/rptel1.html#Law06,https://doi.org/10.1142/S179320680600010X +Kofi Poku Quan-Baffour,Multiculturalism and Learning Technologies in Adult Basic Education and Training Programs at the University of South Africa.,2006,1,Research and Practice in Technology Enhanced Learning,3,db/journals/rptel/rptel1.html#Quan-BaffourV06,https://doi.org/10.1142/S1793206806000226 +Shirley Alexander,Rethinking curriculum: Achieving Qualitatively Different Outcomes Using Information Technologies.,2006,1,Research and Practice in Technology Enhanced Learning,2,db/journals/rptel/rptel1.html#Alexander06,https://doi.org/10.1142/S1793206806000093 +Chi-Keung Leung,Mixed Approach for Item Selection in E-Testing.,2010,5,Research and Practice in Technology Enhanced Learning,1,db/journals/rptel/rptel5.html#Leung10,https://doi.org/10.1142/S1793206810000785 +Philippa Gerbic,Chinese Learners and Online Discussions: New Opportunities for Multicultural Classrooms.,2006,1,Research and Practice in Technology Enhanced Learning,3,db/journals/rptel/rptel1.html#Gerbic06,https://doi.org/10.1142/S1793206806000160 +Yvonne Rogers,The Role of Mobile Devices in Facilitating Collaborative Inquiry in situ.,2008,3,Research and Practice in Technology Enhanced Learning,3,db/journals/rptel/rptel3.html#RogersP08,https://doi.org/10.1142/S1793206808000525 +Daniel D. Suthers,An Activity System Analysis of a tripartite Technology-Supported Partnership for School Reform.,2007,2,Research and Practice in Technology Enhanced Learning,2,db/journals/rptel/rptel2.html#SuthersYH07,https://doi.org/10.1142/S1793206807000324 +Joerg Zumbach,The Role of Expert and Novice Tutors in Computer Mediated and Face-to-Face Problem-Based Learning.,2007,2,Research and Practice in Technology Enhanced Learning,2,db/journals/rptel/rptel2.html#ZumbachS07,https://doi.org/10.1142/S1793206807000336 +Minna Lakkala,Designing Pedagogical Infrastructures in University Courses for Technology-Enhanced Collaborative Inquiry.,2008,3,Research and Practice in Technology Enhanced Learning,1,db/journals/rptel/rptel3.html#LakkalaMPH08,https://doi.org/10.1142/S1793206808000446 +Erkki Sutinen,Ethnocomputing in Tanzania: Design and Analysis of a Contextualized ICT Course.,2006,1,Research and Practice in Technology Enhanced Learning,3,db/journals/rptel/rptel1.html#SutinenV06,https://doi.org/10.1142/S1793206806000238 +David Thomson,Preliminary Evaluation of a Negotiable Student Model in a Constraint-Based its.,2010,5,Research and Practice in Technology Enhanced Learning,1,db/journals/rptel/rptel5.html#ThomsonM10,https://doi.org/10.1142/S1793206810000797 +Susanne P. Lajoie,Convergence of Data Sources in the Analysis of Complex Learning Environments.,2009,4,Research and Practice in Technology Enhanced Learning,3,db/journals/rptel/rptel4.html#LajoieGL09,https://doi.org/10.1142/S1793206809000738 +Gerry Stahl,Sustaining Group Cognition in a Math Chat Environment.,2006,1,Research and Practice in Technology Enhanced Learning,2,db/journals/rptel/rptel1.html#Stahl06,https://doi.org/10.1142/S1793206806000068 +Hanni Muukkonen,Knowledge Creating Inquiry in a Distributed Project-Management Course.,2010,5,Research and Practice in Technology Enhanced Learning,2,db/journals/rptel/rptel5.html#MuukkonenLKN10,https://doi.org/10.1142/S1793206810000827 +Stephen J. H. Yang,Applying Web Page Adaptation Technique to the Augmentation of Mobile Learning.,2008,3,Research and Practice in Technology Enhanced Learning,3,db/journals/rptel/rptel3.html#YangZH08,https://doi.org/10.1142/S1793206808000574 +Rune Baggetun,Motel: a Mobile Learning Framework for Geo-Tagging and Explorations of Sites for Learning.,2009,4,Research and Practice in Technology Enhanced Learning,1,db/journals/rptel/rptel4.html#Baggetun09,https://doi.org/10.1142/S1793206809000623 +Isabel Braun,Facilitating Learning from Computer-Supported Collaborative Inquiry: the Challenge of Directing Learners' Interactions to Useful Ends.,2010,5,Research and Practice in Technology Enhanced Learning,3,db/journals/rptel/rptel5.html#BraunR10,https://doi.org/10.1142/S1793206810000918 +Matthew J. Sharritt,Forms of Learning in Collaborative Video Game Play.,2008,3,Research and Practice in Technology Enhanced Learning,2,db/journals/rptel/rptel3.html#Sharritt08,https://doi.org/10.1142/S1793206808000471 +Gautam Biswas,Measuring Self-Regulated Learning Skills through Social Interactions in a teachable Agent Environment.,2010,5,Research and Practice in Technology Enhanced Learning,2,db/journals/rptel/rptel5.html#BiswasJKSR10,https://doi.org/10.1142/S1793206810000839 +Cindy E. Hmelo-Silver,Visual Representation of a Multidimensional Coding Scheme for Understanding Technology-Mediated Learning about Complex Natural Systems.,2009,4,Research and Practice in Technology Enhanced Learning,3,db/journals/rptel/rptel4.html#Hmelo-SilverLJ09,https://doi.org/10.1142/S1793206809000714 +Tamara L. Clegg,Bricoleurs and Planners engaging in Scientific Reasoning: a Tale of Two Groups in One Learning Community.,2007,2,Research and Practice in Technology Enhanced Learning,3,db/journals/rptel/rptel2.html#CleggK07,https://doi.org/10.1142/S1793206807000373 +Karin Schoefegger,A survey on socio-semantic information retrieval.,2013,8,Computer Science Review,,db/journals/csr/csr8.html#SchoefeggerTG13,https://doi.org/10.1016/j.cosrev.2013.03.001 +Jussi Kasurinen,Publication trends in gamification: A systematic mapping study.,2018,27,Computer Science Review,,db/journals/csr/csr27.html#KasurinenK18,https://doi.org/10.1016/j.cosrev.2017.10.003 +Jarrod Trevathan,"Getting into the mind of an ""in-auction"" fraud perpetrator.",2018,27,Computer Science Review,,db/journals/csr/csr27.html#Trevathan18,https://doi.org/10.1016/j.cosrev.2017.10.001 +Sajad Farokhi,Near infrared face recognition: A literature survey.,2016,21,Computer Science Review,,db/journals/csr/csr21.html#FarokhiFS16,https://doi.org/10.1016/j.cosrev.2016.05.003 +Ross M. McConnell,Certifying algorithms.,2011,5,Computer Science Review,2,db/journals/csr/csr5.html#McConnellMNS11,https://doi.org/10.1016/j.cosrev.2010.09.009 +Elias Koutsoupias,The k-server problem.,2009,3,Computer Science Review,2,db/journals/csr/csr3.html#Koutsoupias09,https://doi.org/10.1016/j.cosrev.2009.04.002 +Satchidananda Dehuri,Multi-criterion Pareto based particle swarm optimized polynomial neural network for classification: A review and state-of-the-art.,2009,3,Computer Science Review,1,db/journals/csr/csr3.html#DehuriC09,https://doi.org/10.1016/j.cosrev.2008.11.002 +Christian Blum 0001,Book review.,2009,3,Computer Science Review,4,db/journals/csr/csr3.html#Blum09,https://doi.org/10.1016/j.cosrev.2009.06.002 +Rodney G. Downey,Confronting intractability via parameters.,2011,5,Computer Science Review,4,db/journals/csr/csr5.html#DowneyT11,https://doi.org/10.1016/j.cosrev.2011.09.002 +Dinesh Kumar Sah,Parametric survey on cross-layer designs for wireless sensor networks.,2018,27,Computer Science Review,,db/journals/csr/csr27.html#SahA18,https://doi.org/10.1016/j.cosrev.2017.12.002 +Piotr Faliszewski,The consequences of eliminating NP solutions.,2008,2,Computer Science Review,1,db/journals/csr/csr2.html#FaliszewskiH08,https://doi.org/10.1016/j.cosrev.2008.02.001 +Wide Hogenhout,Foundational research on networks of tiny artefacts.,2011,5,Computer Science Review,1,db/journals/csr/csr5.html#Hogenhout11,https://doi.org/10.1016/j.cosrev.2010.11.001 +Janne Parkkila,Where is the research on connecting game and#8203* worlds? - A systematic mapping study.,2015,18,Computer Science Review,,db/journals/csr/csr18.html#ParkkilaIP15,https://doi.org/10.1016/j.cosrev.2015.10.002 +Farzaneh Abed,General classification of the authenticated encryption schemes for the CAESAR competition.,2016,22,Computer Science Review,,db/journals/csr/csr22.html#AbedFL16,https://doi.org/10.1016/j.cosrev.2016.07.002 +Tanmoy Maitra,A comparative study on popular MAC protocols for mixed Wireless Sensor Networks: From implementation viewpoint.,2016,22,Computer Science Review,,db/journals/csr/csr22.html#MaitraR16,https://doi.org/10.1016/j.cosrev.2016.09.004 +Sotiris E. Nikoletseas,Book review.,2010,4,Computer Science Review,2,db/journals/csr/csr4.html#Nikoletseas10a,https://doi.org/10.1016/j.cosrev.2010.01.002 +Josep Díaz,Introduction.,2011,5,Computer Science Review,1,db/journals/csr/csr5.html#DiazN11,https://doi.org/10.1016/j.cosrev.2010.11.002 +Sotiris E. Nikoletseas,On the energy balance problem in distributed sensor networks.,2010,4,Computer Science Review,2,db/journals/csr/csr4.html#Nikoletseas10,https://doi.org/10.1016/j.cosrev.2010.03.001 +Jean-Sébastien Sereni,Randomly colouring graphs (a combinatorial view).,2008,2,Computer Science Review,2,db/journals/csr/csr2.html#Sereni08,https://doi.org/10.1016/j.cosrev.2008.05.003 +Joaquim Gabarró,Book review.,2009,3,Computer Science Review,4,db/journals/csr/csr3.html#Gabarro09,https://doi.org/10.1016/j.cosrev.2009.07.002 +Christopher Dabrowski,"Corrigendum to ""Catastrophic event phenomena in communication networks: A survey"" [Comput. Sci. Rev. 18(2015) 10-45].",2016,20,Computer Science Review,,db/journals/csr/csr20.html#Dabrowski16,https://doi.org/10.1016/j.cosrev.2016.03.001 +Eugenia A. Politou,A survey on mobile affective computing.,2017,25,Computer Science Review,,db/journals/csr/csr25.html#PolitouAP17,https://doi.org/10.1016/j.cosrev.2017.07.002 +Angelica Marotta,Cyber-insurance survey.,2017,24,Computer Science Review,,db/journals/csr/csr24.html#MarottaMNOY17,https://doi.org/10.1016/j.cosrev.2017.01.001 +Chithra Selvaraj,A survey on Security Issues of Reputation Management Systems for Peer-to-Peer Networks.,2012,6,Computer Science Review,4,db/journals/csr/csr6.html#SelvarajA12,https://doi.org/10.1016/j.cosrev.2012.04.001 +Shlomi Dolev,Robust and scalable middleware for selfish-computer systems.,2011,5,Computer Science Review,1,db/journals/csr/csr5.html#DolevSST11,https://doi.org/10.1016/j.cosrev.2010.09.008 +Konstantinos I. Tsianos,Sampling-based robot motion planning: Towards realistic applications.,2007,1,Computer Science Review,1,db/journals/csr/csr1.html#TsianosSK07,https://doi.org/10.1016/j.cosrev.2007.08.002 +Andrea De Salve,A survey on privacy in decentralized online social networks.,2018,27,Computer Science Review,,db/journals/csr/csr27.html#SalveMR18,https://doi.org/10.1016/j.cosrev.2018.01.001 +Lukas Kencl,DNA-inspired information concealing: A survey.,2010,4,Computer Science Review,4,db/journals/csr/csr4.html#KenclL10,https://doi.org/10.1016/j.cosrev.2010.07.001 +Josep Díaz,Introduction.,2007,1,Computer Science Review,1,db/journals/csr/csr1.html#DiazN07,https://doi.org/10.1016/j.cosrev.2007.08.001 +Dieter Mitsche,"Review of ""Introduction to clustering large and high-dimensional data"" by J. Kogan.",2008,2,Computer Science Review,1,db/journals/csr/csr2.html#Mitsche08,https://doi.org/10.1016/j.cosrev.2008.02.002 +Divya Saxena,Named Data Networking: A survey.,2016,19,Computer Science Review,,db/journals/csr/csr19.html#SaxenaRSBC16,https://doi.org/10.1016/j.cosrev.2016.01.001 +Raffaele Giancarlo,Textual data compression in computational biology: Algorithmic techniques.,2012,6,Computer Science Review,1,db/journals/csr/csr6.html#GiancarloSU12,https://doi.org/10.1016/j.cosrev.2011.11.001 +Ashok Rao,Subspace methods for face recognition.,2010,4,Computer Science Review,1,db/journals/csr/csr4.html#RaoN10,https://doi.org/10.1016/j.cosrev.2009.11.003 +Alexis C. Kaporis,Selfish splittable flows and NP-completeness.,2011,5,Computer Science Review,3,db/journals/csr/csr5.html#KaporisS11,https://doi.org/10.1016/j.cosrev.2011.04.002 +Maria João Frade,Verification conditions for source-level imperative programs.,2011,5,Computer Science Review,3,db/journals/csr/csr5.html#FradeP11,https://doi.org/10.1016/j.cosrev.2011.02.002 +Anwesha Mukherjee,Location management in mobile network: A survey.,2016,19,Computer Science Review,,db/journals/csr/csr19.html#MukherjeeD16,https://doi.org/10.1016/j.cosrev.2015.12.001 +Frederic Dorn,Subexponential parameterized algorithms.,2008,2,Computer Science Review,1,db/journals/csr/csr2.html#DornFT08,https://doi.org/10.1016/j.cosrev.2008.02.004 +Jin B. Hong,A survey on the usability and practical applications of Graphical Security Models.,2017,26,Computer Science Review,,db/journals/csr/csr26.html#HongKCH17,https://doi.org/10.1016/j.cosrev.2017.09.001 +Dmitri Moltchanov,Service quality in P2P streaming systems.,2011,5,Computer Science Review,4,db/journals/csr/csr5.html#Moltchanov11,https://doi.org/10.1016/j.cosrev.2011.09.003 +Saadia Albane,Graph grammars according to the type of input and manipulated data: A survey.,2018,28,Computer Science Review,,db/journals/csr/csr28.html#AlbaneSK18,https://doi.org/10.1016/j.cosrev.2018.04.001 +Bruno Escoffier,A survey on the structure of approximation classes.,2010,4,Computer Science Review,1,db/journals/csr/csr4.html#EscoffierP10,https://doi.org/10.1016/j.cosrev.2009.11.001 +Michel Habib,A survey of the algorithmic aspects of modular decomposition.,2010,4,Computer Science Review,1,db/journals/csr/csr4.html#HabibP10,https://doi.org/10.1016/j.cosrev.2010.01.001 +Armando Castañeda,The renaming problem in shared memory systems: An introduction.,2011,5,Computer Science Review,3,db/journals/csr/csr5.html#CastanedaRR11,https://doi.org/10.1016/j.cosrev.2011.04.001 +Raphael Yuster,Combinatorial and computational aspects of graph packing and graph decomposition.,2007,1,Computer Science Review,1,db/journals/csr/csr1.html#Yuster07,https://doi.org/10.1016/j.cosrev.2007.07.002 +Jaromír Antoch,Environment for statistical computing.,2008,2,Computer Science Review,2,db/journals/csr/csr2.html#Antoch08,https://doi.org/10.1016/j.cosrev.2008.05.002 +Sameera Abar,Agent Based Modelling and Simulation tools: A review of the state-of-art software.,2017,24,Computer Science Review,,db/journals/csr/csr24.html#AbarTLO17,https://doi.org/10.1016/j.cosrev.2017.03.001 +Mehran Yazdi,New trends on moving object detection in video images captured by a moving camera: A survey.,2018,28,Computer Science Review,,db/journals/csr/csr28.html#YazdiB18,https://doi.org/10.1016/j.cosrev.2018.03.001 +Adnan Ashraf,Distributed virtual machine consolidation: A systematic mapping study.,2018,28,Computer Science Review,,db/journals/csr/csr28.html#AshrafBP18,https://doi.org/10.1016/j.cosrev.2018.02.003 +Nazia Majadi,Real-time detection of shill bidding in online auctions: A literature review.,2017,25,Computer Science Review,,db/journals/csr/csr25.html#MajadiTGEB17,https://doi.org/10.1016/j.cosrev.2017.05.001 +Allison P. Heath,Computational challenges in systems biology.,2009,3,Computer Science Review,1,db/journals/csr/csr3.html#HeathK09,https://doi.org/10.1016/j.cosrev.2009.01.002 +Andreu Mas-Colell,Nash equilibrium and economics: Remarks.,2007,1,Computer Science Review,2,db/journals/csr/csr1.html#Mas-Colell07,https://doi.org/10.1016/j.cosrev.2007.10.002 +Maria Grazia Buscemi,A survey of constraint-based programming paradigms.,2008,2,Computer Science Review,3,db/journals/csr/csr2.html#BuscemiM08,https://doi.org/10.1016/j.cosrev.2008.10.001 +Cheikh Kacfah Emani,Understandable Big Data: A survey.,2015,17,Computer Science Review,,db/journals/csr/csr17.html#EmaniCN15,https://doi.org/10.1016/j.cosrev.2015.05.002 +Thierry Bouwmans,Decomposition into low-rank plus additive matrices for background/foreground separation: A review for a comparative evaluation with a large-scale dataset.,2017,23,Computer Science Review,,db/journals/csr/csr23.html#BouwmansSJJZ17,https://doi.org/10.1016/j.cosrev.2016.11.001 +Irene Finocchi,Designing reliable algorithms in unreliable memories.,2007,1,Computer Science Review,2,db/journals/csr/csr1.html#FinocchiGI07,https://doi.org/10.1016/j.cosrev.2007.10.001 +Ibrahim Al-Bluwi,Motion planning algorithms for molecular simulations: A survey.,2012,6,Computer Science Review,4,db/journals/csr/csr6.html#Al-BluwiSC12,https://doi.org/10.1016/j.cosrev.2012.07.002 +Dmitri Moltchanov,Performance models for wireless channels.,2010,4,Computer Science Review,3,db/journals/csr/csr4.html#Moltchanov10,https://doi.org/10.1016/j.cosrev.2010.04.001 +Josep Díaz,"Book Review: George Dyson ""Turing's Cathedral: The Origins of the Digital Universe"" (2012) Pantheon Books.",2012,6,Computer Science Review,4,db/journals/csr/csr6.html#Diaz12,https://doi.org/10.1016/j.cosrev.2012.04.003 +Telli Faez,Publisher's Note.,2017,26,Computer Science Review,,db/journals/csr/csr26.html#Faez17,https://doi.org/10.1016/j.cosrev.2017.11.001 +Mohammed Lalou,The Critical Node Detection Problem in networks: A survey.,2018,28,Computer Science Review,,db/journals/csr/csr28.html#LalouTK18,https://doi.org/10.1016/j.cosrev.2018.02.002 +Elias Koutsoupias,Worst-case equilibria.,2009,3,Computer Science Review,2,db/journals/csr/csr3.html#KoutsoupiasP09,https://doi.org/10.1016/j.cosrev.2009.04.003 +Dae-Won Kim,Book review.,2011,5,Computer Science Review,2,db/journals/csr/csr5.html#Kim11,https://doi.org/10.1016/j.cosrev.2011.02.001 +Josep Díaz,Book review.,2010,4,Computer Science Review,2,db/journals/csr/csr4.html#Diaz10,https://doi.org/10.1016/j.cosrev.2010.03.003 +Christian Spreafico,A state-of-the-art review of FMEA/FMECA including patents.,2017,25,Computer Science Review,,db/journals/csr/csr25.html#SpreaficoRR17,https://doi.org/10.1016/j.cosrev.2017.05.002 +Miika Komu,A survey of identifier-locator split addressing architectures.,2015,17,Computer Science Review,,db/journals/csr/csr17.html#KomuSB15,https://doi.org/10.1016/j.cosrev.2015.04.002 +Luca Becchetti,Streaming techniques and data aggregation in networks of tiny artefacts.,2011,5,Computer Science Review,1,db/journals/csr/csr5.html#BecchettiCG11,https://doi.org/10.1016/j.cosrev.2010.09.007 +Neil Vaughan,An overview of self-adaptive technologies within virtual reality training.,2016,22,Computer Science Review,,db/journals/csr/csr22.html#VaughanGD16,https://doi.org/10.1016/j.cosrev.2016.09.001 +Carlo Blundo,Innovative approaches for security of small artefacts.,2011,5,Computer Science Review,1,db/journals/csr/csr5.html#BlundoCDGKPS11,https://doi.org/10.1016/j.cosrev.2010.09.002 +Asaad F. Qasim,Digital watermarking: Applicability for developing trust in medical imaging workflows state of the art review.,2018,27,Computer Science Review,,db/journals/csr/csr27.html#QasimMA18,https://doi.org/10.1016/j.cosrev.2017.11.003 +Josep Díaz,The cook-book approach to the differential equation method.,2010,4,Computer Science Review,3,db/journals/csr/csr4.html#DiazM10,https://doi.org/10.1016/j.cosrev.2010.04.002 +Ahmed S. Ghiduk,Higher order mutation testing: A Systematic Literature Review.,2017,25,Computer Science Review,,db/journals/csr/csr25.html#GhidukGS17,https://doi.org/10.1016/j.cosrev.2017.06.001 +Outi Räihä,A survey on search-based software design.,2010,4,Computer Science Review,4,db/journals/csr/csr4.html#Raiha10,https://doi.org/10.1016/j.cosrev.2010.06.001 +Sancho Salcedo-Sanz,A survey of repair methods used as constraint handling techniques in evolutionary algorithms.,2009,3,Computer Science Review,3,db/journals/csr/csr3.html#Salcedo-Sanz09,https://doi.org/10.1016/j.cosrev.2009.07.001 +Thierry Bouwmans,On the role and the importance of features for background modeling and foreground detection.,2018,28,Computer Science Review,,db/journals/csr/csr28.html#BouwmansSMZBF18,https://doi.org/10.1016/j.cosrev.2018.01.004 +Philip Derbeko,Security and privacy aspects in MapReduce on clouds: A survey.,2016,20,Computer Science Review,,db/journals/csr/csr20.html#DerbekoDGS16,https://doi.org/10.1016/j.cosrev.2016.05.001 +Dimitrios M. Thilikos,Invitation to fixed-parameter algorithms.,2007,1,Computer Science Review,2,db/journals/csr/csr1.html#Thilikos07,https://doi.org/10.1016/j.cosrev.2007.09.001 +Dohan Kim,Sorting on graphs by adjacent swaps using permutation groups.,2016,22,Computer Science Review,,db/journals/csr/csr22.html#Kim16,https://doi.org/10.1016/j.cosrev.2016.09.003 +Stephen G. Kobourov,An annotated bibliography on 1-planarity.,2017,25,Computer Science Review,,db/journals/csr/csr25.html#KobourovLM17,https://doi.org/10.1016/j.cosrev.2017.06.002 +Jorge Martínez Gil,Automated knowledge base management: A survey.,2015,18,Computer Science Review,,db/journals/csr/csr18.html#Gil15,https://doi.org/10.1016/j.cosrev.2015.09.001 +Tobias Baumgartner 0001,Distributed algorithm engineering for networks of tiny artifacts.,2011,5,Computer Science Review,1,db/journals/csr/csr5.html#BaumgartnerCFFKKKMP11,https://doi.org/10.1016/j.cosrev.2010.09.006 +Md Tawhid Bin Waez,A survey of timed automata for the development of real-time systems.,2013,9,Computer Science Review,,db/journals/csr/csr9.html#WaezDR13,https://doi.org/10.1016/j.cosrev.2013.05.001 +Mohammed Amin Tahraoui,A survey on tree matching and XML retrieval.,2013,8,Computer Science Review,,db/journals/csr/csr8.html#TahraouiPLBKN13,https://doi.org/10.1016/j.cosrev.2013.02.001 +Pawan Kumar Singh,Offline Script Identification from multilingual Indic-script documents: A state-of-the-art.,2015,15,Computer Science Review,,db/journals/csr/csr15.html#SinghSN15,https://doi.org/10.1016/j.cosrev.2014.12.001 +Alireza Alaei,Logo and seal based administrative document image retrieval: A survey.,2016,22,Computer Science Review,,db/journals/csr/csr22.html#AlaeiRP16,https://doi.org/10.1016/j.cosrev.2016.09.002 +S. Siva Sathya,Survey of fault tolerant techniques for grid.,2010,4,Computer Science Review,2,db/journals/csr/csr4.html#SathyaB10,https://doi.org/10.1016/j.cosrev.2010.02.001 +Mohammed Bakiri,Survey on hardware implementation of random number generators on FPGA: Theory and experimental analyses.,2018,27,Computer Science Review,,db/journals/csr/csr27.html#BakiriGCO18,https://doi.org/10.1016/j.cosrev.2018.01.002 +Rami M. Mohammad,Tutorial and critical analysis of phishing websites methods.,2015,17,Computer Science Review,,db/journals/csr/csr17.html#MohammadTM15,https://doi.org/10.1016/j.cosrev.2015.04.001 +Mantas Lukosevicius,Reservoir computing approaches to recurrent neural network training.,2009,3,Computer Science Review,3,db/journals/csr/csr3.html#LukoseviciusJ09,https://doi.org/10.1016/j.cosrev.2009.03.005 +Subir Kumar Ghosh,Online algorithms for searching and exploration in the plane.,2010,4,Computer Science Review,4,db/journals/csr/csr4.html#GhoshK10,https://doi.org/10.1016/j.cosrev.2010.05.001 +Aliaksandr Lazouski,Usage control in computer security: A survey.,2010,4,Computer Science Review,2,db/journals/csr/csr4.html#LazouskiMM10,https://doi.org/10.1016/j.cosrev.2010.02.002 +Michal Koucký,Book review.,2010,4,Computer Science Review,1,db/journals/csr/csr4.html#Koucky10,https://doi.org/10.1016/j.cosrev.2009.11.002 +Ioannis Chatzigiannakis,Introduction to the special issue on foundations of adaptive networked societies of tiny artefacts.,2011,5,Computer Science Review,1,db/journals/csr/csr5.html#ChatzigiannakisS11,https://doi.org/10.1016/j.cosrev.2010.11.003 +Christopher Dabrowski,Catastrophic event phenomena in communication networks: A survey.,2015,18,Computer Science Review,,db/journals/csr/csr18.html#Dabrowski15,https://doi.org/10.1016/j.cosrev.2015.10.001 +Henrik I. Christensen,Approximation and online algorithms for multidimensional bin packing: A survey.,2017,24,Computer Science Review,,db/journals/csr/csr24.html#ChristensenKPT17,https://doi.org/10.1016/j.cosrev.2016.12.001 +Iraklis A. Klampanos,Searching in peer-to-peer networks.,2012,6,Computer Science Review,4,db/journals/csr/csr6.html#KlampanosJ12,https://doi.org/10.1016/j.cosrev.2012.07.001 +Xi Chen 0001,Recent development in computational complexity characterization of Nash equilibrium.,2007,1,Computer Science Review,2,db/journals/csr/csr1.html#ChenD07,https://doi.org/10.1016/j.cosrev.2007.09.002 +Mehdi Elahi,A survey of active learning in collaborative filtering recommender systems.,2016,20,Computer Science Review,,db/journals/csr/csr20.html#ElahiRR16,https://doi.org/10.1016/j.cosrev.2016.05.002 +João B. Souza Neto,Semantic Web Services testing: A Systematic Mapping study.,2018,28,Computer Science Review,,db/journals/csr/csr28.html#NetoMM18,https://doi.org/10.1016/j.cosrev.2018.03.002 +Alexander Okhotin,Conjunctive and Boolean grammars: The true general case of the context-free grammars.,2013,9,Computer Science Review,,db/journals/csr/csr9.html#Okhotin13,https://doi.org/10.1016/j.cosrev.2013.06.001 +Ondrej Cepek,Book review.,2010,4,Computer Science Review,3,db/journals/csr/csr4.html#Cepek10,https://doi.org/10.1016/j.cosrev.2010.03.002 +Rafael Dowsley,A survey on design and implementation of protected searchable data in the cloud.,2017,26,Computer Science Review,,db/journals/csr/csr26.html#DowsleyMNP17,https://doi.org/10.1016/j.cosrev.2017.08.001 +Josep Díaz,Introduction.,2009,3,Computer Science Review,2,db/journals/csr/csr3.html#DiazN09,https://doi.org/10.1016/j.cosrev.2009.04.004 +Miroslav Fiedler,Reminiscences related to graph theory.,2007,1,Computer Science Review,1,db/journals/csr/csr1.html#Fiedler07,https://doi.org/10.1016/j.cosrev.2007.07.001 +Marios Mavronicolas,A glimpse at Christos H. Papadimitriou.,2009,3,Computer Science Review,2,db/journals/csr/csr3.html#MavronicolasS09,https://doi.org/10.1016/j.cosrev.2009.04.001 +Paul G. Spirakis,Book review.,2009,3,Computer Science Review,1,db/journals/csr/csr3.html#Spirakis09,https://doi.org/10.1016/j.cosrev.2008.11.001 +Václav Koubek,Book review.,2009,3,Computer Science Review,3,db/journals/csr/csr3.html#Koubek09,https://doi.org/10.1016/j.cosrev.2009.05.001 +Carme àlvarez,Computational models for networks of tiny artifacts: A survey.,2011,5,Computer Science Review,1,db/journals/csr/csr5.html#AlvarezCDGMSS11,https://doi.org/10.1016/j.cosrev.2010.09.001 +Kurt Mehlhorn,A still simpler way of introducing interior-point method for linear programming.,2016,22,Computer Science Review,,db/journals/csr/csr22.html#MehlhornS16,https://doi.org/10.1016/j.cosrev.2016.07.001 +Tossapon Boongoen,Cluster ensembles: A survey of approaches with recent extensions and applications.,2018,28,Computer Science Review,,db/journals/csr/csr28.html#BoongoenI18,https://doi.org/10.1016/j.cosrev.2018.01.003 +Mahmood Hosseini,Crowdsourcing: A taxonomy and systematic mapping study.,2015,17,Computer Science Review,,db/journals/csr/csr17.html#HosseiniSPTA15,https://doi.org/10.1016/j.cosrev.2015.05.001 +Swarnendu Ghosh,The journey of graph kernels through two decades.,2018,27,Computer Science Review,,db/journals/csr/csr27.html#GhoshDGQK18,https://doi.org/10.1016/j.cosrev.2017.11.002 +Satu Elisa Schaeffer,Graph clustering.,2007,1,Computer Science Review,1,db/journals/csr/csr1.html#Schaeffer07,https://doi.org/10.1016/j.cosrev.2007.05.001 +Alban Rousset,A survey on parallel and distributed multi-agent systems for high performance computing simulations.,2016,22,Computer Science Review,,db/journals/csr/csr22.html#RoussetHLP16,https://doi.org/10.1016/j.cosrev.2016.08.001 +Martin Mares,The saga of minimum spanning trees.,2008,2,Computer Science Review,3,db/journals/csr/csr2.html#Mares08,https://doi.org/10.1016/j.cosrev.2008.10.002 +Ward Douglas Maurer,A survey of state vectors.,2008,2,Computer Science Review,1,db/journals/csr/csr2.html#Maurer08,https://doi.org/10.1016/j.cosrev.2008.02.003 +Kristin Y. Rozier,Linear Temporal Logic Symbolic Model Checking.,2011,5,Computer Science Review,2,db/journals/csr/csr5.html#Rozier11,https://doi.org/10.1016/j.cosrev.2010.06.002 +Bastian Degener,A survey on relay placement with runtime and approximation guarantees.,2011,5,Computer Science Review,1,db/journals/csr/csr5.html#DegenerFKH11,https://doi.org/10.1016/j.cosrev.2010.09.005 +David F. Nettleton,Data mining of social networks represented as graphs.,2013,7,Computer Science Review,,db/journals/csr/csr7.html#Nettleton13,https://doi.org/10.1016/j.cosrev.2012.12.001 +Zbynek Loebl,Book review.,2009,3,Computer Science Review,3,db/journals/csr/csr3.html#Loebl09,https://doi.org/10.1016/j.cosrev.2009.06.001 +Dino Mandrioli,Generalizing input-driven languages: Theoretical and practical benefits.,2018,27,Computer Science Review,,db/journals/csr/csr27.html#MandrioliP18,https://doi.org/10.1016/j.cosrev.2017.12.001 +Raphaël Khoury,Which security policies are enforceable by runtime monitors? A survey.,2012,6,Computer Science Review,1,db/journals/csr/csr6.html#KhouryT12,https://doi.org/10.1016/j.cosrev.2012.01.001 +Thinh H. Pham,Low-Power Correlation for IEEE 802.16 OFDM Synchronization on FPGA.,2013,21,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi21.html#PhamFM13,https://doi.org/10.1109/TVLSI.2012.2210917 +Jai-Ming Lin,TCG: A transitive closure graph-based representation for general floorplans.,2005,13,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi13.html#LinC05,https://doi.org/10.1109/TVLSI.2004.840760 +Xiaokun Yang,A High-Performance On-Chip Bus (MSBUS) Design and Verification.,2015,23,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi23.html#YangA15,https://doi.org/10.1109/TVLSI.2014.2334351 +Maria K. Michael,Function-based compact test pattern generation for path delay faults.,2005,13,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi13.html#MichaelT05,https://doi.org/10.1109/TVLSI.2005.853607 +Tezaswi Raja,Variable Input Delay CMOS Logic for Low Power Design.,2009,17,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi17.html#RajaAB09,https://doi.org/10.1109/TVLSI.2009.2027567 +Mark C. Johnson,Leakage control with efficient use of transistor stacks in single threshold CMOS.,2002,10,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi10.html#JohnsonSCR02,https://doi.org/10.1109/92.988724 +Jieyi Long,SACTA: A Self-Adjusting Clock Tree Architecture for Adapting to Thermal-Induced Delay Variation.,2010,18,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi18.html#LongKMI10,https://doi.org/10.1109/TVLSI.2009.2023992 +Tai-Chen Chen,Timing modeling and optimization under the transmission line model.,2004,12,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi12.html#ChenPC04, +Peter Petrov,Low-power instruction bus encoding for embedded processors.,2004,12,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi12.html#PetrovO04,https://doi.org/10.1109/TVLSI.2004.831468 +Radu M. Secareanu,Guest Editorial Special Section on System-on-Chip Integration: Challenges and Implications.,2007,15,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi15.html#SecareanuM07,https://doi.org/10.1109/TVLSI.2007.903909 +Jun-Hong Chen,A High-Performance Unified-Field Reconfigurable Cryptographic Processor.,2010,18,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi18.html#ChenSL10,https://doi.org/10.1109/TVLSI.2009.2020397 +Brian Moore 0001,Design of wireless on-wafer submicron characterization system.,2005,13,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi13.html#MooreMB05,https://doi.org/10.1109/TVLSI.2004.840780 +Song Jin,Unified Capture Scheme for Small Delay Defect Detection and Aging Prediction.,2013,21,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi21.html#JinHL013,https://doi.org/10.1109/TVLSI.2012.2197766 +Rong Lin,Efficient VLSI architectures for Columnsort.,1999,7,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi7.html#LinO99,https://doi.org/10.1109/92.748211 +Stefania Perri,Area-Delay Efficient Binary Adders in QCA.,2014,22,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi22.html#PerriCC14,https://doi.org/10.1109/TVLSI.2013.2261831 +Wayne P. Burleson,Wave-pipelining: a tutorial and research survey.,1998,6,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi6.html#BurlesonCKL98,https://doi.org/10.1109/92.711317 +Zaid Al-Ars,Test Set Development for Cache Memory in Modern Microprocessors.,2008,16,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi16.html#Al-ArsHGV08,https://doi.org/10.1109/TVLSI.2008.2000257 +Manjari Pradhan,COMEDI: Combinatorial Election of Diagnostic Vectors From Detection Test Sets for Logic Circuits.,2017,25,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi25.html#PradhanB17,https://doi.org/10.1109/TVLSI.2016.2642343 +Bojan Maric,Analyzing the Efficiency of L1 Caches for Reliable Hybrid-Voltage Operation Using EDC Codes.,2014,22,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi22.html#MaricAV14,https://doi.org/10.1109/TVLSI.2013.2282498 +Kuo-Hsing Cheng,Built-in Jitter Measurement Circuit With Calibration Techniques for a 3-GHz Clock Generator.,2011,19,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi19.html#ChengLCJH11,https://doi.org/10.1109/TVLSI.2010.2052377 +Rizwan Bashirullah,Current-mode signaling in deep submicrometer global interconnects.,2003,11,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi11.html#BashirullahLC03,https://doi.org/10.1109/TVLSI.2003.812366 +Rouwaida Kanj,Critical evaluation of SOI design guidelines.,2004,12,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi12.html#KanjR04,https://doi.org/10.1109/TVLSI.2004.833665 +Ashkan Ashrafi,"Comments on ""A 13-bit resolution ROM-less direct digital frequency synthesizer based on a trigonometric quadruple angle formula"".",2005,13,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi13.html#AshrafiA05,https://doi.org/10.1109/TVLSI.2005.857155 +Arkadiy Morgenshtein,Unified Logical Effort - A Method for Delay Evaluation and Minimization in Logic Paths With RC Interconnect.,2010,18,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi18.html#MorgenshteinFGK10,https://doi.org/10.1109/TVLSI.2009.2014239 +Yiorgos Sfikas,Layout-Based Refined NPSF Model for DRAM Characterization and Testing.,2014,22,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi22.html#SfikasTH14,https://doi.org/10.1109/TVLSI.2013.2266281 +Xin Wang,Applying CDMA Technique to Network-on-Chip.,2007,15,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi15.html#WangAN07,https://doi.org/10.1109/TVLSI.2007.903914 +Omid Akbari,Dual-Quality 4: 2 Compressors for Utilizing in Dynamic Accuracy Configurable Multipliers.,2017,25,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi25.html#AkbariKAP17,https://doi.org/10.1109/TVLSI.2016.2643003 +Kaveh Shakeri,Accelerated Modeling of Massively Coupled RLC Interconnects Using the Relative Inductance Extraction Method.,2008,16,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi16.html#ShakeriM08,https://doi.org/10.1109/TVLSI.2008.2000365 +Itamar Levi,Logical Effort for CMOS-Based Dual Mode Logic Gates.,2014,22,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi22.html#LeviBF14,https://doi.org/10.1109/TVLSI.2013.2257902 +Weichen Liu,Distributed Sensor Network-on-Chip for Performance Optimization of Soft-Error-Tolerant Multiprocessor System-on-Chip.,2016,24,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi24.html#LiuZWX16,https://doi.org/10.1109/TVLSI.2015.2452910 +Zhiliang Qian,FSNoC: A Flit-Level Speedup Scheme for Network on-Chips Using Self-Reconfigurable Bidirectional Channels.,2015,23,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi23.html#QianAT15,https://doi.org/10.1109/TVLSI.2014.2351833 +Yajun Ran,Designing via-configurable logic blocks for regular fabric.,2006,14,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi14.html#RanM06,https://doi.org/10.1109/TVLSI.2005.863196 +Mary Yvonne Lanzerotti,Assessment of on-chip wire-length distribution models.,2004,12,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi12.html#LanzerottiFR04,https://doi.org/10.1109/TVLSI.2004.831479 +Jan-Erik Eklund,VLSI implementation of a focal plane image processor-a realization of the near-sensor image processing concept.,1996,4,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi4.html#EklundSA96,https://doi.org/10.1109/92.532033 +Ge Yang,A 32-bit carry lookahead adder using dual-path all-N logic.,2005,13,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi13.html#YangJBKKK05,https://doi.org/10.1109/TVLSI.2005.853605 +Montek Singh,Synthesis for logical initializability of synchronous finite-state machines.,2000,8,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi8.html#SinghN00,https://doi.org/10.1109/92.894160 +Jianchao Lu,A Reconfigurable Clock Polarity Assignment Flow for Clock Gated Designs.,2012,20,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi20.html#LuTT12,https://doi.org/10.1109/TVLSI.2011.2147339 +Yuki Okamoto,A Boosting Pass Gate With Improved Switching Characteristics and No Overdriving for Programmable Routing Switch Based on Crystalline In-Ga-Zn-O Technology.,2015,23,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi23.html#OkamotoNAIKOKIY15,https://doi.org/10.1109/TVLSI.2014.2316871 +Nima Aghaee,Temperature-Gradient-Based Burn-In and Test Scheduling for 3-D Stacked ICs.,2015,23,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi23.html#AghaeePE15,https://doi.org/10.1109/TVLSI.2014.2380477 +Herman Schmit,Layout techniques for FPGA switch blocks.,2005,13,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi13.html#SchmitC05,https://doi.org/10.1109/TVLSI.2004.840402 +Ali Namazi,A Fault-Tolerant Interconnect Mechanism for NMR Nanoarchitectures.,2010,18,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi18.html#NamaziNS10,https://doi.org/10.1109/TVLSI.2009.2024779 +Hu Xu,Timing Uncertainty in 3-D Clock Trees Due to Process Variations and Power Supply Noise.,2013,21,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi21.html#XuPTBM13,https://doi.org/10.1109/TVLSI.2012.2230035 +Jae Hoon Kim,Efficient Statistical Timing Analysis Using Deterministic Cell Delay Models.,2015,23,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi23.html#KimKK15,https://doi.org/10.1109/TVLSI.2014.2364736 +Jiliang Zhang 0002,Publicly Verifiable Watermarking for Intellectual Property Protection in FPGA Design.,2017,25,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi25.html#ZhangL17,https://doi.org/10.1109/TVLSI.2016.2619682 +Vasilis F. Pavlidis,3-D Topologies for Networks-on-Chip.,2007,15,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi15.html#PavlidisF07,https://doi.org/10.1109/TVLSI.2007.893649 +K. Ito,ILP-based cost-optimal DSP synthesis with module selection and data format conversion.,1998,6,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi6.html#ItoLP98,https://doi.org/10.1109/92.736132 +Yu Wang 0002,Power Gating Aware Task Scheduling in MPSoC.,2011,19,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi19.html#WangXXLY11,https://doi.org/10.1109/TVLSI.2010.2055907 +N. Ranganathan,Editorial.,2004,12,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi12.html#Ranganathan04, +Shyue-Kung Lu,C-testable design techniques for iterative logic arrays.,1995,3,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi3.html#LuWW95,https://doi.org/10.1109/92.365462 +Guoqing Deng,Binary Multiplication Using Hybrid MOS and Multi-Gate Single-Electron Transistors.,2013,21,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi21.html#DengC13,https://doi.org/10.1109/TVLSI.2012.2217993 +Sampo Tuuna,Modeling of Energy Dissipation in RLC Current-Mode Signaling.,2012,20,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi20.html#TuunaNIT12,https://doi.org/10.1109/TVLSI.2011.2140345 +Myonglae Chu,A 10-bit 200-MS/s Zero-Crossing-Based Pipeline ADC in 0.13-µ*m CMOS Technology.,2015,23,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi23.html#ChuKL15,https://doi.org/10.1109/TVLSI.2014.2371453 +Andrea Ricci,Improved Pervasive Sensing With RFID: An Ultra-Low Power Baseband Processor for UHF Tags.,2009,17,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi17.html#RicciGMC09,https://doi.org/10.1109/TVLSI.2008.2006617 +Jeong-Ho Woo,A 152-mW Mobile Multimedia SoC With Fully Programmable 3-D Graphics and MPEG4/H.264/JPEG.,2009,17,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi17.html#WooSKY09,https://doi.org/10.1109/TVLSI.2008.2002431 +Amirkoushyar Ziabari,Power Blurring: Fast Static and Transient Thermal Analysis Method for Packaged Integrated Circuits and Power Devices.,2014,22,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi22.html#ZiabariPARKS14,https://doi.org/10.1109/TVLSI.2013.2293422 +Da-Wei Chang,FastRead: Improving Read Performance for Multilevel-Cell Flash Memory.,2016,24,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi24.html#ChangLC16,https://doi.org/10.1109/TVLSI.2016.2542215 +Gian Domenico Licciardo,Stream Processor for Real-Time Inverse Tone Mapping of Full-HD Images.,2015,23,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi23.html#LicciardoDR15,https://doi.org/10.1109/TVLSI.2014.2366831 +Barry S. Fagin,Field programmable gate arrays and floating point arithmetic.,1994,2,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi2.html#FaginR94,https://doi.org/10.1109/92.311646 +Deepak Mathaikutty,MMV: A Metamodeling Based Microprocessor Validation Environment.,2008,16,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi16.html#MathaikuttyKDSL08,https://doi.org/10.1109/TVLSI.2008.917419 +Jienan Chen,Hardware and Energy-Efficient Stochastic LU Decomposition Scheme for MIMO Receivers.,2016,24,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi24.html#ChenHZ16,https://doi.org/10.1109/TVLSI.2015.2446481 +Alessandro Bogliolo,Enabling testability of fault-tolerant circuits by means of IDDQ-checkable voters.,2000,8,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi8.html#BoglioloFD00,https://doi.org/10.1109/92.863620 +Michael D. Powell,Reducing leakage in a high-performance deep-submicron instruction cache.,2001,9,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi9.html#PowellYFRV01,https://doi.org/10.1109/92.920821 +Kyung-Saeng Kim,Low-power and area-efficient FIR filter implementation suitable for multiple taps.,2003,11,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi11.html#KimL03,https://doi.org/10.1109/TVLSI.2002.801570 +Gyuseong Kang,Embedded DRAM-Based Memory Customization for Low-Cost FFT Processor Design.,2017,25,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi25.html#KangCP17,https://doi.org/10.1109/TVLSI.2017.2752265 +Hao Wang 0030,A 5.4-mW 180-cm Transmission Distance 2.5-Mb/s Advanced Techniques-Based Novel Intrabody Communication Receiver Analog Front End.,2015,23,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi23.html#WangTCLP15,https://doi.org/10.1109/TVLSI.2014.2379443 +Jie Guo 0002,Data-Pattern-Aware Error Prevention Technique to Improve System Reliability.,2017,25,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi25.html#GuoWSC17,https://doi.org/10.1109/TVLSI.2016.2642055 +Luca Benini,Layout-driven memory synthesis for embedded systems-on-chip.,2002,10,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi10.html#BeniniMMP02,https://doi.org/10.1109/92.994985 +Jing Chen,State-Aware Dynamic Frequency Selection Scheme for Energy-Harvesting Real-Time Systems.,2014,22,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi22.html#ChenWL14,https://doi.org/10.1109/TVLSI.2013.2278315 +Palkesh Jain,Fast Stochastic Analysis of Electromigration in Power Distribution Networks.,2017,25,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi25.html#JainMS17,https://doi.org/10.1109/TVLSI.2017.2706520 +James Smith,Polynomial circuit models for component matching in high-level synthesis.,2001,9,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi9.html#SmithM01,https://doi.org/10.1109/92.974892 +Chua-Chin Wang,A 1.2 GHz programmable DLL-based frequency multiplier for wireless applications.,2004,12,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi12.html#WangTSH04,https://doi.org/10.1109/TVLSI.2004.837997 +Jebreel M. Salem,Dual Use of Power Lines for Design-for-Testability - A CMOS Receiver Design.,2016,24,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi24.html#SalemH16,https://doi.org/10.1109/TVLSI.2015.2438233 +Aida Todri,Power Delivery for Multicore Systems.,2011,19,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi19.html#TodriM11a,https://doi.org/10.1109/TVLSI.2010.2080694 +C.-S. Li,Fully differential optical interconnections for high-speed digital systems.,1993,1,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi1.html#LiSKO93,https://doi.org/10.1109/92.238421 +Shoushun Chen,A 64 and#735* 64 Pixels UWB Wireless Temporal-Difference Digital Image Sensor.,2012,20,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi20.html#ChenTZC12,https://doi.org/10.1109/TVLSI.2011.2172470 +Yuejian Wu,Free Razor: A Novel Voltage Scaling Low-Power Technique for Large SoC Designs.,2015,23,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi23.html#WuTSKYK15,https://doi.org/10.1109/TVLSI.2014.2377573 +Dohyung Kim,Combined data-driven and event-driven scheduling technique for fast distributed cosimulation.,2002,10,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi10.html#KimRH02,https://doi.org/10.1109/TVLSI.2002.801572 +Soumitra Bose,Path delay fault simulation of sequential circuits.,1993,1,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi1.html#BoseAA93,https://doi.org/10.1109/92.250193 +Vishal Khandelwal,Simultaneous V/sub t/ selection and assignment for leakage optimization.,2005,13,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi13.html#KhandelwalDS05,https://doi.org/10.1109/TVLSI.2005.844304 +Kevin T. Tang,Simultaneous switching noise in on-chip CMOS power distribution networks.,2002,10,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi10.html#TangF02,https://doi.org/10.1109/TVLSI.2002.800533 +Sang Min Lee,A DAC With an Impedance Attenuator and Distortion Analysis Using Volterra Series.,2017,25,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi25.html#LeeKKS17,https://doi.org/10.1109/TVLSI.2017.2723485 +Rajamohana Hegde,Toward achieving energy efficiency in presence of deep submicron noise.,2000,8,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi8.html#HegdeS00,https://doi.org/10.1109/92.863617 +Alexandre Valentian,Modeling subthreshold SOI logic for static timing analysis.,2004,12,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi12.html#ValentianTVA04,https://doi.org/10.1109/TVLSI.2004.827602 +Zhanping Chen,Efficient statistical approach to estimate power considering uncertain properties of primary inputs.,1998,6,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi6.html#ChenRC98,https://doi.org/10.1109/92.711319 +Vinita V. Deodhar,Optimization of throughput performance for low-power VLSI interconnects.,2005,13,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi13.html#DeodharD05,https://doi.org/10.1109/TVLSI.2004.842898 +Yen-Lin Peng,Application-Independent Testing of 3-D Field Programmable Gate Array Interconnect Faults.,2014,22,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi22.html#PengKCW14,https://doi.org/10.1109/TVLSI.2013.2242100 +Stephen Brink,Adaptive Floating-Gate Circuit Enabled Large-Scale FPAA.,2014,22,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi22.html#BrinkHW14,https://doi.org/10.1109/TVLSI.2013.2290305 +Anant Kulkarni,Transmission Coefficient Matrix Modeling of Spin-Torque-Based $n$ -Qubit Architecture.,2018,26,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi26.html#KulkarniPK18,http://doi.ieeecomputersociety.org/10.1109/TVLSI.2018.2814041 +Paul N. Whatmough,Circuit-Level Timing Error Tolerance for Low-Power DSP Filters and Transforms.,2013,21,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi21.html#WhatmoughDBD13,https://doi.org/10.1109/TVLSI.2012.2202930 +Changbo Long,Distributed sleep transistor network for power reduction.,2004,12,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi12.html#LongH04,https://doi.org/10.1109/TVLSI.2004.832939 +Christian Piguet,Guest Editorial.,2004,12,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi12.html#PiguetV04a, +David L. Andrews,Achieving Programming Model Abstractions for Reconfigurable Computing.,2008,16,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi16.html#AndrewsSAAPSBK08,https://doi.org/10.1109/TVLSI.2007.912106 +Yun-Nan Chang,A Multibank Memory-Based VLSI Architecture of DVB Symbol Deinterleaver.,2010,18,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi18.html#Chang10,https://doi.org/10.1109/TVLSI.2009.2015456 +Akhilesh Kumar,IR-Drop Aware Clustering Technique for Robust Power Grid in FPGAs.,2011,19,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi19.html#KumarA11,https://doi.org/10.1109/TVLSI.2010.2047123 +Kavallur Gopi Smitha,A Multi-Resolution Fast Filter Bank for Spectrum Sensing in Military Radio Receivers.,2012,20,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi20.html#SmithaV12,https://doi.org/10.1109/TVLSI.2011.2151214 +Muhammad E. S. Elrabaa,Robust Two-Phase RZ Asynchronous SoC Interconnects.,2011,19,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi19.html#Elrabaa11,https://doi.org/10.1109/TVLSI.2010.2042240 +Ramachandran Venkatasubramanian,A Comparator-Based Rail Clamp.,2016,24,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi24.html#Venkatasubramanian16,https://doi.org/10.1109/TVLSI.2015.2446460 +Sudarshan Banerjee,Integrating Physical Constraints in HW-SW Partitioning for Architectures With Partial Dynamic Reconfiguration.,2006,14,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi14.html#BanerjeeBD06,https://doi.org/10.1109/TVLSI.2006.886411 +Kangmin Hu,A Comparative Study of 20-Gb/s NRZ and Duobinary Signaling Using Statistical Analysis.,2012,20,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi20.html#HuWC12,https://doi.org/10.1109/TVLSI.2011.2148131 +Tom Chen,Design of a self-testing and self-repairing structure for highly hierarchical ultra-large capacity memory chips.,1993,1,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi1.html#ChenS93,https://doi.org/10.1109/92.238427 +Robert Rinker,An automated process for compiling dataflow graphs into reconfigurable hardware.,2001,9,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi9.html#RinkerCPCRHNB01,https://doi.org/10.1109/92.920828 +Shih-Chieh Wu,Novel Probabilistic Combinational Equivalence Checking.,2008,16,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi16.html#WuWC08,https://doi.org/10.1109/TVLSI.2008.917397 +Taehui Na,Multiple-Cell Reference Scheme for Narrow Reference Resistance Distribution in Deep Submicrometer STT-RAM.,2016,24,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi24.html#NaKKJ16,https://doi.org/10.1109/TVLSI.2016.2536639 +Milos Petrovic,Design of the Switching Controller for the High-Capacity Non-Blocking Internet Router.,2009,17,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi17.html#PetrovicSB09,https://doi.org/10.1109/TVLSI.2009.2019817 +A. Bugeja,A reconfigurable VLSI coprocessing system for the block matching algorithm.,1997,5,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi5.html#BugejaY97,https://doi.org/10.1109/92.609876 +Xin Zhang 0025,On-Chip Measurement System for Within-Die Delay Variation of Individual Standard Cells in 65-nm CMOS.,2012,20,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi20.html#ZhangIFTS12,https://doi.org/10.1109/TVLSI.2011.2162257 +Kang-Ngee Chia,High-performance automatic target recognition through data-specific VLSI.,1998,6,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi6.html#ChiaKLMV98,https://doi.org/10.1109/92.711308 +Ashutosh Chakraborty,Dynamic Thermal Clock Skew Compensation Using Tunable Delay Buffers.,2008,16,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi16.html#ChakrabortyDSSBMMP08,https://doi.org/10.1109/TVLSI.2008.2000248 +Jean-Michel Chabloz,Low-Latency Maximal-Throughput Communication Interfaces for Rationally Related Clock Domains.,2014,22,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi22.html#ChablozH14,https://doi.org/10.1109/TVLSI.2013.2252030 +Jee Khoi Yin,Jitter Analysis of Polyphase Filter-Based Multiphase Clock in Frequency Multiplier.,2012,20,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi20.html#YinC12,https://doi.org/10.1109/TVLSI.2011.2159633 +Jason Helge Anderson,Power estimation techniques for FPGAs.,2004,12,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi12.html#AndersonN04,https://doi.org/10.1109/TVLSI.2004.831478 +Nachiketh R. Potlapally,Aiding Side-Channel Attacks on Cryptographic Software With Satisfiability-Based Analysis.,2007,15,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi15.html#PotlapallyRRJL07,https://doi.org/10.1109/TVLSI.2007.893665 +Mario Donato Marino,RAMON: Region-Aware Memory Controller.,2018,26,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi26.html#MarinoL18,https://doi.org/10.1109/TVLSI.2018.2789520 +Xiaowen Wu,UNION: A Unified Inter/Intrachip Optical Network for Chip Multiprocessors.,2014,22,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi22.html#WuYXZLNW14,https://doi.org/10.1109/TVLSI.2013.2263397 +Giuseppe Scotti,Design of Low-Voltage High-Speed CML D-Latches in Nanometer CMOS Technologies.,2017,25,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi25.html#ScottiBTP17,https://doi.org/10.1109/TVLSI.2017.2750207 +Ioannis Voyiatzis,Recursive Pseudo-Exhaustive Two-Pattern Generation.,2010,18,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi18.html#VoyiatzisGP10,https://doi.org/10.1109/TVLSI.2009.2031300 +Vladimír Székely,Electro-thermal and logi-thermal simulation of VLSI designs.,1997,5,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi5.html#SzekelyPPCHR97,https://doi.org/10.1109/92.609868 +Mitra Mirhassani,Low-Power Mixed-Signal CVNS-Based 64-Bit Adder for Media Signal Processing.,2008,16,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi16.html#MirhassaniAJ08,https://doi.org/10.1109/TVLSI.2008.2000731 +Sang Phill Park,Soft-Error-Resilient FPGAs Using Built-In 2-D Hamming Product Code.,2012,20,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi20.html#ParkLR12,https://doi.org/10.1109/TVLSI.2010.2095435 +Mohammad Maymandi-Nejad,"Correction to ""A Digitally Programmable Delay Element: Design and Analysis"".",2004,12,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi12.html#Maymandi-NejadS04,https://doi.org/10.1109/TVLSI.2004.837019 +Fatemeh Tehranipoor,DVFT: A Lightweight Solution for Power-Supply Noise-Based TRNG Using Dynamic Voltage Feedback Tuning System.,2018,26,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi26.html#TehranipoorWKYC18,http://doi.ieeecomputersociety.org/10.1109/TVLSI.2018.2804258 +Tiehan Lv,A dictionary-based en/decoding scheme for low-power data buses.,2003,11,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi11.html#LvHLW03,https://doi.org/10.1109/TVLSI.2003.817123 +Sharad Sinha,Low-Power FPGA Design Using Memoization-Based Approximate Computing.,2016,24,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi24.html#SinhaZ16,https://doi.org/10.1109/TVLSI.2016.2520979 +Chien-Hui Liao,Thermal-Constrained Task Scheduling on 3-D Multicore Processors for Throughput-and-Energy Optimization.,2015,23,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi23.html#LiaoW15,https://doi.org/10.1109/TVLSI.2014.2360802 +Jianwei Liu,Uniform Quantization Theory-Based Linearity Calibration for Split Capacitive DAC in an SAR ADC.,2016,24,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi24.html#Liu0CSUM16,https://doi.org/10.1109/TVLSI.2015.2509164 +Luigi Fortuna,Nanoscale system dynamical behaviors: from quantum-dot-based cell to 1-D arrays.,2004,12,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi12.html#FortunaRNP04,https://doi.org/10.1109/TVLSI.2004.836306 +Jayanta Bhadra,Validating Power ArchitectureTM Technology-Based MPSoCs Through Executable Specifications.,2008,16,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi16.html#BhadraTA08,https://doi.org/10.1109/TVLSI.2008.917418 +Vojin G. Oklobdzija,An algorithmic and novel design of a leading zero detector circuit: comparison with logic synthesis.,1994,2,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi2.html#Oklobdzija94,https://doi.org/10.1109/92.273153 +Xiaobo Sharon Hu,Estimating probabilistic timing performance for real-time embedded systems.,2001,9,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi9.html#HuZS01,https://doi.org/10.1109/92.974897 +Weidong Wang,Input space adaptive design: a high-level methodology for optimizing energy and performance.,2004,12,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi12.html#WangRLJ04,https://doi.org/10.1109/TVLSI.2004.827592 +Sungchan Kim,Schedule-aware performance estimation of communication architecture for efficient design space exploration.,2005,13,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi13.html#KimIH05,https://doi.org/10.1109/TVLSI.2004.842912 +Yi-Ping Su,Current-Mode Synthetic Control Technique for High-Efficiency DC-DC Boost Converters Over a Wide Load Range.,2014,22,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi22.html#SuLCC14,https://doi.org/10.1109/TVLSI.2013.2277491 +Kimmo U. Järvinen,On Parallelization of High-Speed Processors for Elliptic Curve Cryptography.,2008,16,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi16.html#JarvinenS08,https://doi.org/10.1109/TVLSI.2008.2000728 +Jin Sha,Multi-Gb/s LDPC Code Design and Implementation.,2009,17,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi17.html#ShaWGL09,https://doi.org/10.1109/TVLSI.2008.2002487 +Philip Heng Wai Leong,A microcoded elliptic curve processor using FPGA technology.,2002,10,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi10.html#LeongL02,https://doi.org/10.1109/TVLSI.2002.801608 +Rupesh S. Shelar,BDD decomposition for delay oriented pass transistor logic synthesis.,2005,13,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi13.html#ShelarS05,https://doi.org/10.1109/TVLSI.2005.853601 +N. Pete Sedcole,Run-Time Integration of Reconfigurable Video Processing Systems.,2007,15,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi15.html#SedcoleCCL07,https://doi.org/10.1109/TVLSI.2007.902203 +Chua-Chin Wang,ZigBee 868/915-MHz Modulator/Demodulator for Wireless Personal Area Network.,2008,16,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi16.html#WangHHCL08,https://doi.org/10.1109/TVLSI.2008.2000594 +Dimitris Gizopoulos,Systematic Software-Based Self-Test for Pipelined Processors.,2008,16,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi16.html#GizopoulosPHMPRR08,https://doi.org/10.1109/TVLSI.2008.2000866 +Nezam Rohbani,Bias Temperature Instability Mitigation via Adaptive Cache Size Management.,2017,25,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi25.html#RohbaniEMT17,https://doi.org/10.1109/TVLSI.2016.2606579 +Irith Pomeranz,On Functional Broadside Tests With Functional Propagation Conditions.,2011,19,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi19.html#PomeranzR11b,https://doi.org/10.1109/TVLSI.2010.2043695 +Vijay K. Jain,Complex-argument universal nonlinear cell for rapid prototyping.,1997,5,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi5.html#JainL97,https://doi.org/10.1109/92.555983 +Krishnendu Chakrabarty,Cumulative balance testing of logic circuits.,1995,3,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi3.html#ChakrabartyH95,https://doi.org/10.1109/92.365455 +Ali Namazi,Gate-Level Redundancy: A New Design-for-Reliability Paradigm for Nanotechnologies.,2010,18,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi18.html#NamaziN10,https://doi.org/10.1109/TVLSI.2009.2016206 +Jérémie Hamon,Constrained Asynchronous Ring Structures for Robust Digital Oscillators.,2009,17,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi17.html#HamonFMR09,https://doi.org/10.1109/TVLSI.2008.2011801 +Ankur Srivastava,Timing driven gate duplication.,2004,12,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi12.html#SrivastavaKCS04, +Kian Haghdad,Power Yield Analysis Under Process and Temperature Variations.,2012,20,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi20.html#HaghdadA12,https://doi.org/10.1109/TVLSI.2011.2163535 +Jiaqiang Li,Extending 3-bit Burst Error-Correction Codes With Quadruple Adjacent Error Correction.,2018,26,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi26.html#LiRXAL18,https://doi.org/10.1109/TVLSI.2017.2766361 +Yang Liu 0016,Computation Error Analysis in Digital Signal Processing Systems With Overscaled Supply Voltage.,2010,18,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi18.html#LiuZP10,https://doi.org/10.1109/TVLSI.2009.2012863 +Claude Thibeault,On the Analysis and the Mitigation of Power Supply Noise and Power Distribution Network Impedance Variation for Scan-Based Delay Testing Techniques.,2018,26,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi26.html#ThibeaultG18,http://doi.ieeecomputersociety.org/10.1109/TVLSI.2018.2817177 +Henry Park,Stability Estimation of a 6T-SRAM Cell Using a Nonlinear Regression.,2014,22,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi22.html#ParkY14,https://doi.org/10.1109/TVLSI.2012.2236113 +Uwe Sparmann,Universal delay test sets for logic networks.,1999,7,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi7.html#SparmannMR99,https://doi.org/10.1109/92.766742 +Xuehui Zhang,Design of On-Chip Lightweight Sensors for Effective Detection of Recycled ICs.,2014,22,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi22.html#ZhangT14,https://doi.org/10.1109/TVLSI.2013.2264063 +Yiran Chen,Variable-Latency Adder (VL-Adder) Designs for Low Power and NBTI Tolerance.,2010,18,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi18.html#ChenLKSLXR10,https://doi.org/10.1109/TVLSI.2009.2026280 +Yang Sun,High-Throughput Soft-Output MIMO Detector Based on Path-Preserving Trellis-Search Algorithm.,2012,20,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi20.html#SunC12,https://doi.org/10.1109/TVLSI.2011.2147811 +Naveen Verma,Analysis Towards Minimization of Total SRAM Energy Over Active and Idle Operating Modes.,2011,19,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi19.html#Verma11,https://doi.org/10.1109/TVLSI.2010.2055906 +Songwei Pei,Flip-Flop Selection for Partial Enhanced Scan to Reduce Transition Test Data Volume.,2012,20,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi20.html#PeiLL12a,https://doi.org/10.1109/TVLSI.2011.2170227 +Jisu Kim,STT-MRAM Sensing Circuit With Self-Body Biasing in Deep Submicron Technologies.,2014,22,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi22.html#KimRKKJ14,https://doi.org/10.1109/TVLSI.2013.2272587 +Zijian He,Test Path Selection for Capturing Delay Failures Under Statistical Timing Model.,2013,21,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi21.html#HeLL013,https://doi.org/10.1109/TVLSI.2012.2208661 +Mahesh Poolakkaparambil,A Low-Complexity Multiple Error Correcting Architecture Using Novel Cross Parity Codes Over GF(2m).,2015,23,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi23.html#Poolakkaparambil15,https://doi.org/10.1109/TVLSI.2014.2341631 +Ian O'Connor,Systematic Simulation-Based Predictive Synthesis of Integrated Optical Interconnect.,2007,15,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi15.html#OConnorTGDWCTS07,https://doi.org/10.1109/TVLSI.2007.900730 +Erhan Ozalevli,A Compact One-Pin Mode Transition Circuit for Clock Synchronization in Current-Mode- Controlled Switching Regulators.,2016,24,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi24.html#Ozalevli16,https://doi.org/10.1109/TVLSI.2016.2541166 +Weize Yu,Security-Adaptive Voltage Conversion as a Lightweight Countermeasure Against LPA Attacks.,2017,25,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi25.html#YuK17,https://doi.org/10.1109/TVLSI.2017.2670537 +Runjie Zhang,Tolerating the Consequences of Multiple EM-Induced C4 Bump Failures.,2016,24,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi24.html#ZhangMWSS16,https://doi.org/10.1109/TVLSI.2015.2501353 +Tien-Yu Lo,A 1 GHz Equiripple Low-Pass Filter With a High-Speed Automatic Tuning Scheme.,2011,19,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi19.html#LoH11,https://doi.org/10.1109/TVLSI.2009.2034527 +Shun-Hsun Yang,A Low-Power Ternary Content Addressable Memory With Pai-Sigma Matchlines.,2012,20,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi20.html#YangHL12,https://doi.org/10.1109/TVLSI.2011.2163205 +Achintya Halder,System-Level Specification Testing Of Wireless Transceivers.,2008,16,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi16.html#HalderBC08,https://doi.org/10.1109/TVLSI.2007.912144 +Daniel G. Saab,Parallel-concurrent fault simulation.,1993,1,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi1.html#Saab93,https://doi.org/10.1109/92.238447 +A. Lipman,VLSI hardware for example-based learning.,1997,5,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi5.html#LipmanY97,https://doi.org/10.1109/92.609875 +Mohammad Gholami,Jitter of Delay-Locked Loops Due to PFD.,2014,22,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi22.html#GholamiA14,https://doi.org/10.1109/TVLSI.2013.2284501 +Shao-Chang Huang,Embedded I/O PAD Circuit Design for OTP Memory Power-Switch Functionality.,2012,20,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi20.html#HuangCLLCHLCL12,https://doi.org/10.1109/TVLSI.2011.2106808 +Jiangpeng Li,True-Damage-Aware Enumerative Coding for Improving nand Flash Memory Endurance.,2015,23,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi23.html#LiZM015,https://doi.org/10.1109/TVLSI.2014.2332099 +Shih-Chang Hsia,Shift-Register-Based Data Transposition for Cost-Effective Discrete Cosine Transform.,2007,15,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi15.html#HsiaW07,https://doi.org/10.1109/TVLSI.2007.898780 +Myeong-Eun Hwang,ABRM: Adaptive Beta -Ratio Modulation for Process-Tolerant Ultradynamic Voltage Scaling.,2010,18,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi18.html#HwangR10,https://doi.org/10.1109/TVLSI.2008.2010767 +Kris Heyrman,Control for Power Gating of Wires.,2010,18,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi18.html#HeyrmanPCVP10,https://doi.org/10.1109/TVLSI.2009.2022269 +Steve C.-Y. Huang,Unifiable scheduling and allocation for minimizing system cycle time.,1997,5,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi5.html#HuangW97,https://doi.org/10.1109/92.585222 +Christina C.-H. Liao,Fast Scan-Chain Ordering for 3-D-IC Designs Under Through-Silicon-Via (TSV) Constraints.,2013,21,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi21.html#LiaoCLW13,https://doi.org/10.1109/TVLSI.2012.2204781 +Yasser Ismail,An Efficient Adaptive High Speed Manipulation Architecture for Fast Variable Padding Frequency Domain Motion Estimation.,2011,19,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi19.html#IsmailSMB11,https://doi.org/10.1109/TVLSI.2010.2046686 +Vadim Gutnik,Embedded power supply for low-power DSP.,1997,5,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi5.html#GutnikC97,https://doi.org/10.1109/92.645069 +Yangdong Deng,2.5-dimensional VLSI system integration.,2005,13,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi13.html#DengM05,https://doi.org/10.1109/TVLSI.2005.848814 +Irith Pomeranz,Test Compaction by Sharing of Functional Test Sequences Among Logic Blocks.,2015,23,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi23.html#Pomeranz15c,https://doi.org/10.1109/TVLSI.2014.2382609 +Ahmed Awad,A Fast Process-Variation-Aware Mask Optimization Algorithm With a Novel Intensity Modeling.,2017,25,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi25.html#AwadTTK17,https://doi.org/10.1109/TVLSI.2016.2616840 +S. K. Jain,Efficient semisystolic architectures for finite-field arithmetic.,1998,6,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi6.html#JainSP98,https://doi.org/10.1109/92.661252 +Kun-Hung Tsai,A 104-GHz Phase-Locked Loop Using a VCO at Second Pole Frequency.,2012,20,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi20.html#TsaiL12,https://doi.org/10.1109/TVLSI.2010.2088144 +Cheng-Ta Chiang,Design of a CMOS Chlorophyll Concentration Detector Based on Organic Chlorophyll Battery for Measuring Vegetable Chlorophyll Concentration.,2017,25,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi25.html#Chiang17,https://doi.org/10.1109/TVLSI.2017.2648639 +Girish Varatkar,Stochastic Networked Computation.,2010,18,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi18.html#VaratkarNSJ10,https://doi.org/10.1109/TVLSI.2009.2024673 +Won-Young Lee,An Adaptive Equalizer With the Capacitance Multiplication for DisplayPort Main Link in 0.18-µ*m CMOS.,2012,20,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi20.html#LeeK12a,https://doi.org/10.1109/TVLSI.2011.2130546 +Sumit Jagdish Darak,Reconfigurable Filter Bank With Complete Control Over Subband Bandwidths for Multistandard Wireless Communication Receivers.,2015,23,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi23.html#DarakPZVM15,https://doi.org/10.1109/TVLSI.2014.2347899 +Adrian Stoica,Reconfigurable VLSI architectures for evolvable hardware: from experimental field programmable transistor arrays to evolution-oriented chips.,2001,9,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi9.html#StoicaZKTDT01,https://doi.org/10.1109/92.920839 +Jing Huang 0001,Fault Tolerance of Switch Blocks and Switch Block Arrays in FPGA.,2005,13,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi13.html#HuangTL05,https://doi.org/10.1109/TVLSI.2005.850090 +O. Katz,A Robust Random Number Generator Based on a Differential Current-Mode Chaos.,2008,16,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi16.html#KatzRW08,https://doi.org/10.1109/TVLSI.2008.2001731 +Raymond A. Wildman,Multi-objective optimization of interconnect geometry.,2003,11,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi11.html#WildmanKWC03,https://doi.org/10.1109/TVLSI.2002.808460 +Alexandre Yakovlev,A low latency asynchronous arbitration circuit.,1994,2,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi2.html#YakovlevPL94,https://doi.org/10.1109/92.311648 +Marcel Gort,Combined Architecture/Algorithm Approach to Fast FPGA Routing.,2013,21,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi21.html#GortA13,https://doi.org/10.1109/TVLSI.2012.2202326 +Saralees Nadarajah,Exact Distribution of the Max/Min of Two Gaussian Random Variables.,2008,16,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi16.html#NadarajahK08,https://doi.org/10.1109/TVLSI.2007.912191 +Hooman Farkhani,Low-Energy Write Operation for 1T-1MTJ STT-RAM Bitcells With Negative Bitline Technique.,2016,24,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi24.html#FarkhaniPM16,https://doi.org/10.1109/TVLSI.2015.2459726 +Antonis M. Paschalis,Accumulator Based 3-Weight Pattern Generation.,2012,20,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi20.html#PaschalisVG12,https://doi.org/10.1109/TVLSI.2010.2102373 +Mohamed I. A. Mohamed,Energy Efficient Programmable MIMO Decoder Accelerator Chip in 65-nm CMOS.,2014,22,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi22.html#MohamedMD14,https://doi.org/10.1109/TVLSI.2013.2272058 +Ryan Gary Kim,Wireless NoC and Dynamic VFI Codesign: Energy Efficiency Without Performance Penalty.,2016,24,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi24.html#KimCCPMM16,https://doi.org/10.1109/TVLSI.2015.2512611 +Irith Pomeranz,Robust Fault Models Where Undetectable Faults Imply Logic Redundancy.,2010,18,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi18.html#PomeranzR10b,https://doi.org/10.1109/TVLSI.2009.2020592 +Sheng-Lyang Jang,Dual C- and S-Band CMOS VCO Using the Shunt Varactor Switch.,2015,23,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi23.html#JangJ15,https://doi.org/10.1109/TVLSI.2014.2346815 +Krishnendu Chakrabarty,Zero-aliasing space compaction of test responses using multiple parity signatures.,1998,6,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi6.html#ChakrabartyH98,https://doi.org/10.1109/92.678893 +Oskar Mencer,Object-oriented domain specific compilers for programming FPGAs.,2001,9,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi9.html#MencerPMF01,https://doi.org/10.1109/92.920835 +Mahmoud A. Bennaser,Data Memory Subsystem Resilient to Process Variations.,2008,16,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi16.html#BennaserGM08,https://doi.org/10.1109/TVLSI.2008.2001299 +Hamid Mahmoodi,Ultra Low-Power Clocking Scheme Using Energy Recovery and Clock Gating.,2009,17,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi17.html#MahmoodiTCR09,https://doi.org/10.1109/TVLSI.2008.2008453 +Marco Bucci,A Flip-Flop for the DPA Resistant Three-Phase Dual-Rail Pre-Charge Logic Family.,2012,20,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi20.html#BucciGLT12,https://doi.org/10.1109/TVLSI.2011.2165862 +Jintae Kim,Multilevel Power Optimization of Pipelined A/D Converters.,2011,19,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi19.html#KimLY11,https://doi.org/10.1109/TVLSI.2010.2041077 +Pedro Reviriego,A Class of SEC-DED-DAEC Codes Derived From Orthogonal Latin Square Codes.,2015,23,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi23.html#ReviriegoPEM15,https://doi.org/10.1109/TVLSI.2014.2319291 +Krutartha Patel,Architectural Frameworks for Security and Reliability of MPSoCs.,2011,19,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi19.html#PatelPR11,https://doi.org/10.1109/TVLSI.2010.2053856 +Vishal Khatri,A 0.25-3.25-GHz Wideband CMOS-RF Spectrum Sensor for Narrowband Energy Detection.,2016,24,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi24.html#KhatriB16,https://doi.org/10.1109/TVLSI.2016.2530305 +Chao Huang,Generation of Heterogeneous Distributed Architectures for Memory-Intensive Applications Through High-Level Synthesis.,2007,15,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi15.html#HuangRRJ07,https://doi.org/10.1109/TVLSI.2007.904096 +Govinda Sannena,Low Overhead Warning Flip-Flop Based on Charge Sharing for Timing Slack Monitoring.,2018,26,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi26.html#SannenaD18,http://doi.ieeecomputersociety.org/10.1109/TVLSI.2018.2810954 +José M. Algueta Miguel,A Simple Miller Compensation With Essential Bandwidth Improvement.,2017,25,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi25.html#Algueta-MiguelR17,https://doi.org/10.1109/TVLSI.2017.2733082 +Cheng-Shang Chang,Constructions of Memoryless Crosstalk Avoidance Codes Via ${\cal C}$ -Transform.,2014,22,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi22.html#ChangCHL14,https://doi.org/10.1109/TVLSI.2013.2280289 +Xrysovalantis Kavousianos,Multilevel-Huffman Test-Data Compression for IP Cores With Multiple Scan Chains.,2008,16,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi16.html#KavousianosKN08,https://doi.org/10.1109/TVLSI.2008.2000448 +Jason Cong,Architecture and Compiler Optimizations for Data Bandwidth Improvement in Configurable Processors.,2006,14,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi14.html#CongHZ06,https://doi.org/10.1109/TVLSI.2006.884050 +Lih-Yih Chiou,Energy-Efficient Dual-Edge-Triggered Level Converting Flip Flops With Symmetry in Setup Times and Insensitivity to Output Parasitics.,2009,17,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi17.html#ChiouL09,https://doi.org/10.1109/TVLSI.2008.2007959 +Woo-Suk Ko,An efficient DMT modem for the G.LITE ADSL transceiver.,2003,11,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi11.html#KoKPKY03,https://doi.org/10.1109/TVLSI.2003.817131 +Shuo Wang,Light-Weight On-Chip Structure for Measuring Timing Uncertainty Induced by Noise in Integrated Circuits.,2014,22,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi22.html#WangT14,https://doi.org/10.1109/TVLSI.2013.2263812 +Sheng Lin,A 11-Transistor Nanoscale CMOS Memory Cell for Hardening to Soft Errors.,2011,19,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi19.html#LinKL11,https://doi.org/10.1109/TVLSI.2010.2043271 +M. A. Azadpour,A clock interconnect extractor for multigigahertz frequencies incorporating inductance effect.,2003,11,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi11.html#AzadpourK03,https://doi.org/10.1109/TVLSI.2003.817544 +Uming Ko,High-performance energy-efficient D-flip-flop circuits.,2000,8,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi8.html#KoB00,https://doi.org/10.1109/92.820765 +Luca Henzen,VLSI Characterization of the Cryptographic Hash Function BLAKE.,2011,19,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi19.html#HenzenAMP11,https://doi.org/10.1109/TVLSI.2010.2060373 +Wei-Chang Tsai,Two systolic architectures for modular multiplication.,2000,8,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi8.html#TsaiSW00,https://doi.org/10.1109/92.820767 +HoonSeok Kim,Crosstalk-Canceling Multimode Interconnect Using Transmitter Encoding.,2013,21,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi21.html#KimWF13,https://doi.org/10.1109/TVLSI.2012.2213281 +Changbo Long,Microarchitecture Configurations and Floorplanning Co-Optimization.,2007,15,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi15.html#LongSLH07,https://doi.org/10.1109/TVLSI.2007.899240 +Ye Zhang,Cut Redistribution and Insertion for Advanced 1-D Layout Design via Network Flow Optimization.,2018,26,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi26.html#ZhangLLYZZPZ18,http://doi.ieeecomputersociety.org/10.1109/TVLSI.2018.2828603 +J. Balachandran,Wafer-level package interconnect options.,2006,14,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi14.html#BalachandranBCKRNB06,https://doi.org/10.1109/TVLSI.2006.878229 +Ben Perach,SiMT-DSP: A Massively Multithreaded DSP Architecture.,2018,26,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi26.html#PerachW18,http://doi.ieeecomputersociety.org/10.1109/TVLSI.2018.2817564 +Chun-Gi Lyuh,High-level synthesis for low power based on network flow method.,2003,11,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi11.html#LyuhK03,https://doi.org/10.1109/TVLSI.2003.810796 +Irith Pomeranz,Transition Fault Simulation Considering Broadside Tests as Partially-Functional Broadside Tests.,2013,21,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi21.html#Pomeranz13d,https://doi.org/10.1109/TVLSI.2012.2206835 +Amlan Ganguly,Crosstalk-Aware Channel Coding Schemes for Energy Efficient and Reliable NOC Interconnects.,2009,17,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi17.html#GangulyPB09,https://doi.org/10.1109/TVLSI.2008.2005722 +Nan-Chi Chou,On general zero-skew clock net construction.,1995,3,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi3.html#ChouC95,https://doi.org/10.1109/92.365461 +Marco Lanuzza,Fast and Wide Range Voltage Conversion in Multisupply Voltage Designs.,2015,23,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi23.html#LanuzzaCP15,https://doi.org/10.1109/TVLSI.2014.2308400 +Jianxin Fang,Scalable Methods for Analyzing the Circuit Failure Probability Due to Gate Oxide Breakdown.,2012,20,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi20.html#FangS12,https://doi.org/10.1109/TVLSI.2011.2166568 +Sumant Ramprasad,A technique for Improving dual-output domino logic.,2002,10,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi10.html#RamprasadHN02,https://doi.org/10.1109/TVLSI.2002.800521 +Dong-Hoon Jung,All-Digital 90®6* Phase-Shift DLL With Dithering Jitter Suppression Scheme.,2016,24,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi24.html#JungRPJ16,https://doi.org/10.1109/TVLSI.2015.2423312 +Xuan-Dien Do,A Self-Powered High-Efficiency Rectifier With Automatic Resetting of Transducer Capacitance in Piezoelectric Energy Harvesting Systems.,2015,23,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi23.html#DoNHHL15,https://doi.org/10.1109/TVLSI.2014.2312532 +Yun-Jui Li,Dynamic Diagnosis for Defective Reconfigurable Single-Electron Transistor Arrays.,2017,25,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi25.html#LiHWCWDN17,https://doi.org/10.1109/TVLSI.2016.2639533 +Chun-Hsing Li,A Balunless Frequency Multiplier With Differential Output by Current Flow Manipulation.,2018,26,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi26.html#LiW18,http://doi.ieeecomputersociety.org/10.1109/TVLSI.2018.2806348 +Massimo Alioto,Energy Consumption in RC Tree Circuits.,2006,14,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi14.html#AliotoPP06,https://doi.org/10.1109/TVLSI.2006.876093 +Nourhan Bayasi,Low-Power ECG-Based Processor for Predicting Ventricular Arrhythmia.,2016,24,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi24.html#BayasiTSMKI16,https://doi.org/10.1109/TVLSI.2015.2475119 +Hao Xu,Aggressive Runtime Leakage Control Through Adaptive Light-Weight Vth Hopping With Temperature and Process Variation.,2011,19,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi19.html#XuJV11,https://doi.org/10.1109/TVLSI.2010.2047955 +Chua-Chin Wang,A Leakage Compensation Design for Low Supply Voltage SRAM.,2016,24,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi24.html#WangWLC16,https://doi.org/10.1109/TVLSI.2015.2484386 +Soheil Ghiasi,On Incremental Component Implementation Selection in System Synthesis.,2010,18,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi18.html#Ghiasi10,https://doi.org/10.1109/TVLSI.2009.2025764 +Arvind Srinivasan,Accurate area and delay estimation from RTL descriptions.,1998,6,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi6.html#SrinivasanHL98,https://doi.org/10.1109/92.661259 +Young In Cho,New Bit Parallel Multiplier With Low Space Complexity for All Irreducible Trinomials Over GF(2n).,2012,20,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi20.html#ChoCKPH12,https://doi.org/10.1109/TVLSI.2011.2162594 +David Esseni,Tunnel FETs for Ultralow Voltage Digital VLSI Circuits: Part I - Device-Circuit Interaction and Evaluation at Device Level.,2014,22,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi22.html#EsseniGKRA14,https://doi.org/10.1109/TVLSI.2013.2293135 +Chang N. Zhang,Determining objective functions in systolic array designs.,1994,2,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi2.html#ZhangWY94,https://doi.org/10.1109/92.311644 +Jongyoon Jung,Scheduling and Resource Binding Algorithm Considering Timing Variation.,2011,19,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi19.html#JungK11,https://doi.org/10.1109/TVLSI.2009.2031676 +H. T. Nguyen,Number-splitting with shift-and-add decomposition for power and hardware optimization in linear DSP synthesis.,2000,8,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi8.html#NguyenC00,https://doi.org/10.1109/92.863621 +Peiyi Zhao,Low-Power Clocked-Pseudo-NMOS Flip-Flop for Level Conversion in Dual Supply Systems.,2009,17,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi17.html#ZhaoMGVWBKD09,https://doi.org/10.1109/TVLSI.2008.2002426 +Duy-Hieu Bui,AES Datapath Optimization Strategies for Low-Power Low-Energy Multisecurity-Level Internet-of-Things Applications.,2017,25,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi25.html#BuiPBBT17,https://doi.org/10.1109/TVLSI.2017.2716386 +Chuang Bai,A Novel Thyristor-Based Silicon Physical Unclonable Function.,2016,24,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi24.html#BaiZD16,https://doi.org/10.1109/TVLSI.2015.2398454 +Sahil Shah,Temperature Sensitivity and Compensation on a Reconfigurable Platform.,2018,26,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi26.html#ShahTHN18,https://doi.org/10.1109/TVLSI.2017.2773399 +Maohua Zhu,Performance Evaluation and Optimization of HBM-Enabled GPU for Data-Intensive Applications.,2018,26,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi26.html#ZhuZWC018,http://doi.ieeecomputersociety.org/10.1109/TVLSI.2018.2791442 +Donald L. Hung,Design of a configurable accelerator for moment computation.,2000,8,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi8.html#HungCS00,https://doi.org/10.1109/92.902269 +Mohammad Taherzadeh-Sani,A 170-dB and#937* CMOS TIA With 52-pA Input-Referred Noise and 1-MHz Bandwidth for Very Low Current Sensing.,2017,25,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi25.html#Taherzadeh-Sani17,https://doi.org/10.1109/TVLSI.2017.2654452 +Jesus Omar Lacruz,High-Performance NB-LDPC Decoder With Reduction of Message Exchange.,2016,24,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi24.html#LacruzGCV16,https://doi.org/10.1109/TVLSI.2015.2493041 +Leonardo Rezende Juracy,A DfT Insertion Methodology to Scannable Q-Flop Elements.,2018,26,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi26.html#JuracyMKA18,http://doi.ieeecomputersociety.org/10.1109/TVLSI.2018.2821134 +Xuanyao Fong,Failure Mitigation Techniques for 1T-1MTJ Spin-Transfer Torque MRAM Bit-cells.,2014,22,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi22.html#FongKCR14,https://doi.org/10.1109/TVLSI.2013.2239671 +Sherif Yusuf,Reconfigurable Architecture for Network Flow Analysis.,2008,16,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi16.html#YusufLSDLB08,https://doi.org/10.1109/TVLSI.2007.912115 +Zhe Yuan,CP-FPGA: Energy-Efficient Nonvolatile FPGA With Offline/Online Checkpointing Optimization.,2017,25,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi25.html#YuanLLHXY17,https://doi.org/10.1109/TVLSI.2017.2680464 +Vinicius V. A. Camargo,Use of SSTA Tools for Evaluating BTI Impact on Combinational Circuits.,2014,22,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi22.html#CamargoKWGG14,https://doi.org/10.1109/TVLSI.2013.2240323 +Yoshiro Riho,Partial Access Mode: New Method for Reducing Power Consumption of Dynamic Random Access Memory.,2014,22,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi22.html#RihoN14,https://doi.org/10.1109/TVLSI.2013.2272043 +Behzad Dehlaghi,A 12.5-Gb/s On-Chip Oscilloscope to Measure Eye Diagrams and Jitter Histograms of High-Speed Signals.,2014,22,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi22.html#DehlaghiMB14,https://doi.org/10.1109/TVLSI.2013.2265895 +Joon-Yeong Lee,A 4*10-Gb/s Referenceless-and-Masterless Phase Rotator-Based Parallel Transceiver in 90-nm CMOS.,2016,24,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi24.html#LeeYYKWHB16,https://doi.org/10.1109/TVLSI.2015.2502957 +Nazish Aslam,Code Compression and Decompression for Coarse-Grain Reconfigurable Architectures.,2008,16,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi16.html#AslamMEA08,https://doi.org/10.1109/TVLSI.2008.2001562 +Ching-Che Chung,A 0.52/1 V Fast Lock-in ADPLL for Supporting Dynamic Voltage and Frequency Scaling.,2016,24,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi24.html#ChungSL16,https://doi.org/10.1109/TVLSI.2015.2407370 +Minjoong Rim,Global scheduling with code-motions for high-level synthesis applications.,1995,3,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi3.html#RimFJ95,https://doi.org/10.1109/92.406996 +Reza Sharafinejad,Automatic Correction of Dynamic Power Management Architecture in Modern Processors.,2018,26,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi26.html#SharafinejadAN18,https://doi.org/10.1109/TVLSI.2017.2762006 +Baris Taskin,Improving Line-Based QCA Memory Cell Design Through Dual Phase Clocking.,2008,16,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi16.html#TaskinH08,https://doi.org/10.1109/TVLSI.2008.2003171 +Arijit Raychowdhury,Computing with subthreshold leakage: device/circuit/architecture co-design for ultralow-power subthreshold operation.,2005,13,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi13.html#RaychowdhuryPBR05,https://doi.org/10.1109/TVLSI.2005.859590 +Yang Xu 0005,A 5-/20-MHz BW Reconfigurable Quadrature Bandpass CT Δ Σ ADC With AntiPole-Splitting Opamp and Digital I/Q Calibration.,2016,24,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi24.html#XuZCQCW16,https://doi.org/10.1109/TVLSI.2015.2394365 +Jonghong Kim,Rate-0.96 LDPC Decoding VLSI for Soft-Decision Error Correction of NAND Flash Memory.,2014,22,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi22.html#KimS14,https://doi.org/10.1109/TVLSI.2013.2265314 +Hassan Hassan 0001,Total Power Modeling in FPGAs Under Spatial Correlation.,2009,17,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi17.html#HassanAE09,https://doi.org/10.1109/TVLSI.2008.2005307 +Osama Ullah Khan,Hardware Accelerator for Probabilistic Inference in 65-nm CMOS.,2016,24,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi24.html#KhanW16,https://doi.org/10.1109/TVLSI.2015.2420663 +Navid Azizi,Low-leakage asymmetric-cell SRAM.,2003,11,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi11.html#AziziNM03,https://doi.org/10.1109/TVLSI.2003.816139 +Dong Hyuk Woo,Pragmatic Integration of an SRAM Row Cache in Heterogeneous 3-D DRAM Architecture Using TSV.,2013,21,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi21.html#WooSL13,https://doi.org/10.1109/TVLSI.2011.2176761 +W. K. Al-Assadi,Faulty behavior of storage elements and its effects on sequential circuits.,1993,1,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi1.html#Al-AssadiMJ93,https://doi.org/10.1109/92.250192 +Wei-Chung Kao,DFT and Minimum Leakage Pattern Generation for Static Power Reduction During Test and Burn-In.,2010,18,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi18.html#KaoCLLM10,https://doi.org/10.1109/TVLSI.2008.2011048 +Jaeseo Lee,Evaluation of Fully-Integrated Switching Regulators for CMOS Process Technologies.,2007,15,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi15.html#LeeHVY07,https://doi.org/10.1109/TVLSI.2007.902204 +Chris Dwyer,The design of DNA self-assembled computing circuitry.,2004,12,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi12.html#DwyerVPESWT04,https://doi.org/10.1109/TVLSI.2004.836322 +Indranil Hatai,An Efficient VLSI Architecture of a Reconfigurable Pulse-Shaping FIR Interpolation.,2015,23,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi23.html#HataiCB15,https://doi.org/10.1109/TVLSI.2014.2321171 +Huan Ren,A Provably High-Probability White-Space Satisfaction Algorithm With Good Performance for Standard-Cell Detailed Placement.,2011,19,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi19.html#RenD11,https://doi.org/10.1109/TVLSI.2010.2047876 +Shaoteng Liu,A Fair and Maximal Allocator for Single-Cycle On-Chip Homogeneous Resource Allocation.,2014,22,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi22.html#LiuJL14,https://doi.org/10.1109/TVLSI.2013.2284563 +Francisco Barranco,Parallel Architecture for Hierarchical Optical Flow Estimation Based on FPGA.,2012,20,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi20.html#BarrancoTDVR12,https://doi.org/10.1109/TVLSI.2011.2145423 +Mohammad A. Makhzan,A Low Power JPEG2000 Encoder With Iterative and Fault Tolerant Error Concealment.,2009,17,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi17.html#MakhzanKEK09,https://doi.org/10.1109/TVLSI.2009.2016714 +José C. Monteiro,Implicit FSM decomposition applied to low-power design.,2002,10,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi10.html#MonteiroO02,https://doi.org/10.1109/TVLSI.2002.801611 +Jiafeng Xie,Low-Complexity Multiplier for GF(2m) Based on All-One Polynomials.,2013,21,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi21.html#XieMH13,https://doi.org/10.1109/TVLSI.2011.2181434 +Irith Pomeranz,Resynthesis of combinational logic circuits for improved path delay fault testability using comparison units.,2001,9,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi9.html#PomeranzR01a,https://doi.org/10.1109/92.953501 +Srinivas Devadas,Certified timing verification and the transition delay of a logic circuit.,1994,2,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi2.html#DevadasKMW94,https://doi.org/10.1109/92.311642 +Preeti Ranjan Panda,Low-power memory mapping through reducing address bus activity.,1999,7,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi7.html#PandaD99,https://doi.org/10.1109/92.784092 +Peter Hallschmid,Routing architecture optimizations for high-density embedded programmable IP cores.,2005,13,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi13.html#HallschmidW05,https://doi.org/10.1109/TVLSI.2005.859561 +Alberto Macii,Stream synthesis for efficient power simulation based on spectral transforms.,2001,9,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi9.html#MaciiMPS01,https://doi.org/10.1109/92.929576 +Zhen Wang 0001,Nonlinear Multi-Error Correction Codes for Reliable MLC nand Flash Memories.,2012,20,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi20.html#WangKJ12a,https://doi.org/10.1109/TVLSI.2011.2157183 +Jun-Ping Wang,Redundant Via Insertion Based on SCA.,2016,24,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi24.html#WangXXSFWLZ16,https://doi.org/10.1109/TVLSI.2015.2416065 +Theo Kluter,Way Stealing: A Unified Data Cache and Architecturally Visible Storage for Instruction Set Extensions.,2014,22,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi22.html#KluterBCI14,https://doi.org/10.1109/TVLSI.2012.2236689 +Phillip Christie,Prelayout interconnect yield prediction.,2003,11,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi11.html#ChristieG03,https://doi.org/10.1109/TVLSI.2002.808461 +Junyoung Song,A 10 Gbits/s/pin DFE-Less Graphics DRAM Interface With Adaptive-Bandwidth PLL for Avoiding Noise Interference and CIJ Reduction Technique.,2017,25,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi25.html#SongLHK17,https://doi.org/10.1109/TVLSI.2016.2580713 +Xiaomeng Shi,Complex Shaped On-Wafer Interconnects Modeling for CMOS RFICs.,2008,16,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi16.html#ShiYMDL08,https://doi.org/10.1109/TVLSI.2008.2000445 +Chetana Nagendra,Power-delay characteristics of CMOS adders.,1994,2,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi2.html#NagendraOI94,https://doi.org/10.1109/92.311649 +Irith Pomeranz,Static Test Data Volume Reduction Using Complementation or Modulo- M Addition.,2011,19,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi19.html#PomeranzR11d,https://doi.org/10.1109/TVLSI.2010.2044819 +Kenneth Y. Yun,A self-timed real-time sorting network.,2000,8,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi8.html#YunJFCC00,https://doi.org/10.1109/92.845903 +Mark M. Budnik,A Power Delivery and Decoupling Network Minimizing Ohmic Loss and Supply Voltage Variation in Silicon Nanoscale Technologies.,2006,14,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi14.html#BudnikR06,https://doi.org/10.1109/TVLSI.2006.887810 +Erfan Azarkhish,Logic-Base Interconnect Design for Near Memory Computing in the Smart Memory Cube.,2017,25,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi25.html#AzarkhishPRLB17,https://doi.org/10.1109/TVLSI.2016.2570283 +Rami A. Abdallah,Reducing Energy at the Minimum Energy Operating Point Via Statistical Error Compensation.,2014,22,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi22.html#AbdallahS14,https://doi.org/10.1109/TVLSI.2013.2271838 +Junhui Gu,All-Digital Wide Range Precharge Logic 50% Duty Cycle Corrector.,2012,20,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi20.html#GuWGZS12,https://doi.org/10.1109/TVLSI.2011.2111424 +Inna Vaisband,Digitally Controlled Pulse Width Modulator for On-Chip Power Management.,2014,22,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi22.html#VaisbandAFK14,https://doi.org/10.1109/TVLSI.2013.2294402 +Faizal Arya Samman,Adaptive and Deadlock-Free Tree-Based Multicast Routing for Networks-on-Chip.,2010,18,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi18.html#SammanHG10,https://doi.org/10.1109/TVLSI.2009.2019758 +Sanjeev Das,A Fine-Grained Control Flow Integrity Approach Against Runtime Memory Attacks for Embedded Systems.,2016,24,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi24.html#DasZL16,https://doi.org/10.1109/TVLSI.2016.2548561 +Xuan Guan,Register File Partitioning and Compiler Support for Reducing Embedded Processor Power Consumption.,2010,18,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi18.html#GuanF10,https://doi.org/10.1109/TVLSI.2009.2020860 +Chiou-Yng Lee,Area-Delay Efficient Digit-Serial Multiplier Based on k-Partitioning Scheme Combined With TMVP Block Recombination Approach.,2016,24,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi24.html#LeeML16,https://doi.org/10.1109/TVLSI.2016.2514272 +Kejie Huang,Racetrack Memory-Based Nonvolatile Storage Elements for Multicontext FPGAs.,2016,24,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi24.html#HuangZL16,https://doi.org/10.1109/TVLSI.2015.2474706 +Jinsu Lee,A 17.5-fJ/bit Energy-Efficient Analog SRAM for Mixed-Signal Processing.,2017,25,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi25.html#LeeSKY17,https://doi.org/10.1109/TVLSI.2017.2664069 +Debesh Bhatta,Incoherent Undersampling-Based Waveform Reconstruction Using a Time-Domain Zero-Crossing Metric.,2015,23,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi23.html#BhattaTWHC15,https://doi.org/10.1109/TVLSI.2014.2369007 +Chao-Yang Yeh,Sequential delay budgeting with interconnect prediction.,2004,12,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi12.html#YehM04,https://doi.org/10.1109/TVLSI.2004.827563 +Xian Li,Reliable Antifuse One-Time-Programmable Scheme With Charge Pump for Postpackage Repair of DRAM.,2015,23,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi23.html#LiZTJ15,https://doi.org/10.1109/TVLSI.2014.2354836 +Tony Tae-Hyoung Kim,Utilizing Reverse Short-Channel Effect for Optimal Subthreshold Circuit Design.,2007,15,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi15.html#KimKEK07,https://doi.org/10.1109/TVLSI.2007.899239 +Giovanni Ansaloni,EGRA: A Coarse Grained Reconfigurable Architectural Template.,2011,19,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi19.html#AnsaloniBP11,https://doi.org/10.1109/TVLSI.2010.2044667 +Adrien Le Masle,Mapping Loop Structures Onto Parametrized Hardware Pipelines.,2014,22,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi22.html#MasleL14,https://doi.org/10.1109/TVLSI.2013.2251430 +Chung-Yi Li,Period Extension and Randomness Enhancement Using High-Throughput Reseeding-Mixing PRNG.,2012,20,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi20.html#LiCCDT12,https://doi.org/10.1109/TVLSI.2010.2103332 +Ing-Chao Lin,Aging-Aware Reliable Multiplier Design With Adaptive Hold Logic.,2015,23,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi23.html#LinCY15,https://doi.org/10.1109/TVLSI.2014.2311300 +Xuanyao Fong,Embedding Read-Only Memory in Spin-Transfer Torque MRAM-Based On-Chip Caches.,2016,24,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi24.html#FongVLRR16,https://doi.org/10.1109/TVLSI.2015.2439733 +Kon-Woo Kwon,AWARE (Asymmetric Write Architecture With REdundant Blocks): A High Write Speed STT-MRAM Cache Architecture.,2014,22,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi22.html#KwonCKR14,https://doi.org/10.1109/TVLSI.2013.2256945 +Jerzy J. Dabrowski,Built-in Loopback Test for IC RF Transceivers.,2010,18,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi18.html#DabrowskiR10,https://doi.org/10.1109/TVLSI.2009.2019085 +Raviteja P. Reddy,A Cost-Effective Fault Tolerance Technique for Functional TSV in 3-D ICs.,2017,25,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi25.html#ReddyAK17,https://doi.org/10.1109/TVLSI.2017.2681703 +Chao Wang,A High-Throughput Low-Complexity Radix-24-22-23 FFT/IFFT Processor With Parallel and Normal Input/Output Order for IEEE 802.11ad Systems.,2015,23,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi23.html#WangYF15,https://doi.org/10.1109/TVLSI.2014.2365586 +George Karypis,Multilevel hypergraph partitioning: applications in VLSI domain.,1999,7,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi7.html#KarypisAKS99,https://doi.org/10.1109/92.748202 +Kwen-Siong Chong,Sense Amplifier Half-Buffer (SAHB) A Low-Power High-Performance Asynchronous Logic QDI Cell Template.,2017,25,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi25.html#ChongHLGC17,https://doi.org/10.1109/TVLSI.2016.2583118 +Neil J. Howard,The yield enhancement of field-programmable gate arrays.,1994,2,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi2.html#HowardTA94,https://doi.org/10.1109/92.273147 +Seongmoon Wang,A Low Overhead High Test Compression Technique Using Pattern Clustering With $n$-Detection Test Support.,2010,18,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi18.html#WangWW10,https://doi.org/10.1109/TVLSI.2009.2026420 +Hsiu-Ming Chang 0001,Low-Cost Error Tolerance Scheme for 3-D CMOS Imagers.,2013,21,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi21.html#ChangHKCW13,https://doi.org/10.1109/TVLSI.2012.2190148 +Wenbin Xu,A Simple Yet Efficient Accuracy-Configurable Adder Design.,2018,26,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi26.html#XuSH18,http://doi.ieeecomputersociety.org/10.1109/TVLSI.2018.2803081 +Fahad Ahmed,Online Measurement of Degradation Due to Bias Temperature Instability in SRAMs.,2016,24,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi24.html#AhmedM16,https://doi.org/10.1109/TVLSI.2015.2500900 +Bhagyaraja Adapa,Coordinate Rotation-Based Low Complexity K-Means Clustering Architecture.,2017,25,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi25.html#AdapaBBRAM17,https://doi.org/10.1109/TVLSI.2016.2633543 +Yao Guo 0001,Energy-Efficient Hardware Data Prefetching.,2011,19,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi19.html#GuoNBCM11,https://doi.org/10.1109/TVLSI.2009.2032916 +Swaminathan Narayanaswamy,Modular Active Charge Balancing for Scalable Battery Packs.,2017,25,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi25.html#NarayanaswamyKS17,https://doi.org/10.1109/TVLSI.2016.2611526 +Herman Schmit,Synthesis of application-specific memory designs.,1997,5,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi5.html#SchmitT97,https://doi.org/10.1109/92.555990 +Chris J. Myers,Synthesis of timed asynchronous circuits.,1993,1,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi1.html#MyersM93,https://doi.org/10.1109/92.238425 +Marshnil Vipin Dave,A Variation Tolerant Current-Mode Signaling Scheme for On-Chip Interconnects.,2013,21,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi21.html#DaveJBS13,https://doi.org/10.1109/TVLSI.2012.2185835 +Samuel N. Pagliarini,Application and Product-Volume-Specific Customization of BEOL Metal Pitch.,2018,26,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi26.html#PagliariniIMP18,http://doi.ieeecomputersociety.org/10.1109/TVLSI.2018.2828387 +Fengjuan Wang,An Ultracompact Butterworth Low-Pass Filter Based on Coaxial Through-Silicon Vias.,2017,25,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi25.html#WangY17,https://doi.org/10.1109/TVLSI.2016.2620460 +P. Pant,Dual-threshold voltage assignment with transistor sizing for low power CMOS circuits.,2001,9,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi9.html#PantRC01,https://doi.org/10.1109/92.924061 +Siddharth Garg,System-Level Leakage Variability Mitigation for MPSoC Platforms Using Body-Bias Islands.,2012,20,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi20.html#GargM12,https://doi.org/10.1109/TVLSI.2011.2171512 +Yan Zhu 0001,A 10-bit 500-MS/s Partial-Interleaving Pipelined SAR ADC With Offset and Reference Mismatch Calibrations.,2017,25,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi25.html#0001CUM17,https://doi.org/10.1109/TVLSI.2016.2576468 +Suhwan Kim,True single-phase adiabatic circuitry.,2001,9,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi9.html#KimP01,https://doi.org/10.1109/92.920819 +M. Hassan Najafi,Low-Cost Sorting Network Circuits Using Unary Processing.,2018,26,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi26.html#NajafiLRB18,http://doi.ieeecomputersociety.org/10.1109/TVLSI.2018.2822300 +Jesus Omar Lacruz,Reduction of Complexity for Nonbinary LDPC Decoders With Compressed Messages.,2015,23,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi23.html#LacruzGV15,https://doi.org/10.1109/TVLSI.2014.2377194 +Meng-Fan Chang,Analysis and Reduction of Supply Noise Fluctuations Induced by Embedded Via-Programming ROM.,2009,17,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi17.html#ChangY09,https://doi.org/10.1109/TVLSI.2008.2006794 +Ming-Chang Yang,Reducing Data Migration Overheads of Flash Wear Leveling in a Progressive Way.,2016,24,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi24.html#YangCKC16,https://doi.org/10.1109/TVLSI.2015.2495252 +Tomás Bautista,Quantitative study of the impact of design and synthesis options on processor core performance.,2001,9,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi9.html#BautistaN01,https://doi.org/10.1109/92.929580 +Matteo Cuppini,Soft-Core Embedded-FPGA Based on Multistage Switching Networks: A Quantitative Analysis.,2015,23,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi23.html#CuppiniMS15,https://doi.org/10.1109/TVLSI.2014.2384740 +Farshad Firouzi,Guest Editorial: Alternative Computing and Machine Learning for Internet of Things.,2017,25,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi25.html#FirouziFKRB17,https://doi.org/10.1109/TVLSI.2017.2742098 +Yanbin Jiang,Technology mapping for high-performance static CMOS and pass transistor logic designs.,2001,9,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi9.html#JiangSB01,https://doi.org/10.1109/92.953492 +Deepak Mathaikutty,MCF: A Metamodeling-Based Component Composition Framework - Composing SystemC IPs for Executable System Models.,2008,16,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi16.html#MathaikuttyS08,https://doi.org/10.1109/TVLSI.2008.2000344 +Luke Pierce,Enhanced Secure Architecture for Joint Action Test Group Systems.,2013,21,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi21.html#PierceT13,https://doi.org/10.1109/TVLSI.2012.2208209 +Chau-Shen Chen,Architecture driven circuit partitioning.,2001,9,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi9.html#ChenHL01,https://doi.org/10.1109/92.924060 +Chun-Fu Liao,A 3.1 Gb/s 8 and** 8 Sorting Reduced K-Best Detector With Lattice Reduction and QR Decomposition.,2014,22,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi22.html#LiaoWH14,https://doi.org/10.1109/TVLSI.2013.2297435 +Frederik Vermeulen,Formalized three-layer system-level model and reuse methodology for embedded data-dominated applications.,2000,8,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi8.html#VermeulenCVM00,https://doi.org/10.1109/92.831440 +Ran Wang,Stochastic Circuit Design and Performance Evaluation of Vector Quantization for Different Error Measures.,2016,24,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi24.html#WangHCE16,https://doi.org/10.1109/TVLSI.2016.2535313 +Vojin G. Oklobdzija,Comparison of high-performance VLSI adders in the energy-delay space.,2005,13,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi13.html#OklobdzijaZDMK05,https://doi.org/10.1109/TVLSI.2005.848819 +Jongsun Park 0001,Dynamic Bit-Width Adaptation in DCT: An Approach to Trade Off Image Quality and Computation Energy.,2010,18,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi18.html#ParkCR10,https://doi.org/10.1109/TVLSI.2009.2016839 +Katherine Shu-Min Li,CusNoC: Fast Full-Chip Custom NoC Generation.,2013,21,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi21.html#Li13,https://doi.org/10.1109/TVLSI.2012.2195688 +Subrahmanyam Mula,Algorithm and VLSI Architecture Design of Proportionate-Type LMS Adaptive Filters for Sparse System Identification.,2018,26,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi26.html#MulaGD18,http://doi.ieeecomputersociety.org/10.1109/TVLSI.2018.2828165 +W. W. Bachmann,Efficient algorithms for multilevel power estimation of VLSI circuits.,2005,13,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi13.html#BachmannH05,https://doi.org/10.1109/TVLSI.2004.840769 +Sanjay V. Kumar,Adaptive Techniques for Overcoming Performance Degradation Due to Aging in CMOS Circuits.,2011,19,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi19.html#KumarKS11,https://doi.org/10.1109/TVLSI.2009.2036628 +T. Chen,Comparison of adaptive body bias (ABB) and adaptive supply voltage (ASV) for improving delay and leakage under the presence of process variation.,2003,11,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi11.html#ChenN03,https://doi.org/10.1109/TVLSI.2003.817120 +Katell Morin-Allory,Efficient and Correct by Construction Assertion-Based Synthesis.,2015,23,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi23.html#Morin-AlloryJB15,https://doi.org/10.1109/TVLSI.2014.2386212 +Omar Abdelfattah,A Top-Down Design Methodology Encompassing Components Variations Due to Wide-Range Operation in Frequency Synthesizer PLLs.,2016,24,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi24.html#AbdelfattahGRSS16,https://doi.org/10.1109/TVLSI.2015.2506607 +Liming Xiu,"A ""Flying-Adder"" frequency synthesis architecture of reducing VCO stages.",2005,13,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi13.html#XiuY05,https://doi.org/10.1109/TVLSI.2004.840776 +Yen-Jen Chang,Master-Slave Match Line Design for Low-Power Content-Addressable Memory.,2015,23,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi23.html#ChangW15a,https://doi.org/10.1109/TVLSI.2014.2345512 +Ioannis Vourkas,Alternative Architectures Toward Reliable Memristive Crossbar Memories.,2016,24,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi24.html#VourkasSSH16,https://doi.org/10.1109/TVLSI.2015.2388587 +Soydan Redif,Novel Reconfigurable Hardware Architecture for Polynomial Matrix Multiplications.,2015,23,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi23.html#RedifK15,https://doi.org/10.1109/TVLSI.2014.2312997 +Oscal T.-C. Chen,Minimization of switching activities of partial products for designing low-power multipliers.,2003,11,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi11.html#ChenWW03,https://doi.org/10.1109/TVLSI.2003.810788 +Fatemeh Tehranipoor,DRAM-Based Intrinsic Physically Unclonable Functions for System-Level Security and Authentication.,2017,25,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi25.html#TehranipoorKYC17,https://doi.org/10.1109/TVLSI.2016.2606658 +Jinn-Shyan Wang,Embedding Repeaters in Silicon IPs for Cross-IP Interconnections.,2013,21,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi21.html#WangCYC13,https://doi.org/10.1109/TVLSI.2012.2190434 +Irith Pomeranz,Fault isolation for nonisolated blocks.,2004,12,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi12.html#PomeranzZ04,https://doi.org/10.1109/TVLSI.2004.837994 +Jian Yan 0002,Lossless Compression Decoders for Bitstreams and Software Binaries Based on High-Level Synthesis.,2017,25,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi25.html#YanYLLW17,https://doi.org/10.1109/TVLSI.2017.2713527 +Fang Tang,A 4T Low-Power Linear-Output Current-Mediated CMOS Image Sensor.,2011,19,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi19.html#TangB11,https://doi.org/10.1109/TVLSI.2010.2053054 +Debajit Bhattacharya,TCAD-Assisted Capacitance Extraction of FinFET SRAM and Logic Arrays.,2016,24,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi24.html#BhattacharyaJ16,https://doi.org/10.1109/TVLSI.2015.2399358 +Xiaolong Zhang,A Low-Cost TSV Test and Diagnosis Scheme Based on Binary Search Method.,2015,23,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi23.html#ZhangLJX15,https://doi.org/10.1109/TVLSI.2014.2362560 +Jun Han 0003,A 65 nm Cryptographic Processor for High Speed Pairing Computation.,2015,23,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi23.html#HanLYZ15,https://doi.org/10.1109/TVLSI.2014.2316514 +Massimo Alioto,Analysis and Comparison in the Energy-Delay-Area Domain of Nanometer CMOS Flip-Flops: Part I - Methodology and Design Strategies.,2011,19,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi19.html#AliotoCP11,https://doi.org/10.1109/TVLSI.2010.2041376 +Yung-Hsiang Ho,A Low-Jitter Fast-Locked All-Digital Phase-Locked Loop With Phase-Frequency-Error Compensation.,2016,24,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi24.html#HoY16a,https://doi.org/10.1109/TVLSI.2015.2470545 +Taehui Na,Comparative Study of Various Latch-Type Sense Amplifiers.,2014,22,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi22.html#NaWKJJ14,https://doi.org/10.1109/TVLSI.2013.2239320 +Salvador Petit,Efficient Register Renaming and Recovery for High-Performance Processors.,2014,22,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi22.html#PetitUSL14,https://doi.org/10.1109/TVLSI.2013.2270001 +Kaushik Roy 0001,Circuit activity based logic synthesis for low power reliable operations.,1993,1,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi1.html#RoyP93,https://doi.org/10.1109/92.250198 +Youngsoo Shin,Partial bus-invert coding for power optimization of application-specific systems.,2001,9,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi9.html#ShinCC01,https://doi.org/10.1109/92.924059 +Meng-Hung Shen,A Wide-Range Multiport LC-Ladder Oscillator and Its Applications to a 1.2-10.1 GHz PLL.,2015,23,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi23.html#ShenH15,https://doi.org/10.1109/TVLSI.2014.2298864 +Hiroyuki Yamauchi,A Discussion on SRAM Circuit Design Trend in Deeper Nanometer-Scale Technologies.,2010,18,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi18.html#Yamauchi10,https://doi.org/10.1109/TVLSI.2009.2016205 +Juan Antonio Gómez Galán,A Very Linear Low-Pass Filter with Automatic Frequency Tuning.,2013,21,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi21.html#GalanPSMCL13,https://doi.org/10.1109/TVLSI.2011.2181880 +Sheng Wei 0001,Scalable Hardware Trojan Diagnosis.,2012,20,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi20.html#WeiP12,https://doi.org/10.1109/TVLSI.2011.2147341 +Ajay Taparia,CS-CMOS: A Low-Noise Logic Family for Mixed Signal SoCs.,2011,19,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi19.html#TapariaBV11a,https://doi.org/10.1109/TVLSI.2010.2089812 +Miron Abramovici,Online BIST and BIST-based diagnosis of FPGA logic blocks.,2004,12,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi12.html#AbramoviciSE04,https://doi.org/10.1109/TVLSI.2004.837989 +Jonghee W. Yoon,A Graph Drawing Based Spatial Mapping Algorithm for Coarse-Grained Reconfigurable Architectures.,2009,17,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi17.html#YoonSPAP09,https://doi.org/10.1109/TVLSI.2008.2001746 +Valery Sklyarov,Hierarchical finite-state machines and their use for digital control.,1999,7,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi7.html#Sklyarov99,https://doi.org/10.1109/92.766749 +S. R. Vemuru,Effects of simultaneous switching noise on the tapered buffer design.,1997,5,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi5.html#Vemuru97,https://doi.org/10.1109/92.609872 +Mojtaba Mahdavi,Novel MIMO Detection Algorithm for High-Order Constellations in the Complex Domain.,2013,21,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi21.html#MahdaviS13,https://doi.org/10.1109/TVLSI.2012.2196296 +James Lin,Ultralow-Voltage High-Speed Flash ADC Design Strategy Based on FoM-Delay Product.,2015,23,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi23.html#LinMMM15,https://doi.org/10.1109/TVLSI.2014.2340995 +Thierry Bonnoit,Reducing Rollback Cost in VLSI Circuits to Improve Fault Tolerance.,2018,26,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi26.html#BonnoitZN18,http://doi.ieeecomputersociety.org/10.1109/TVLSI.2018.2818021 +Michael W. Beattie,On-chip induction modeling: basics and advanced methods.,2002,10,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi10.html#BeattieP02,https://doi.org/10.1109/TVLSI.2003.808682 +Jedrzej Kufel,Sequence-Aware Watermark Design for Soft IP Embedded Processors.,2016,24,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi24.html#KufelWHAW16,https://doi.org/10.1109/TVLSI.2015.2399457 +Yu Zheng,On-chip oscilloscopes for noninvasive time-domain measurement of waveforms in digital integrated circuits.,2003,11,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi11.html#ZhengS03,https://doi.org/10.1109/TVLSI.2003.812313 +Mohammad Hossain Heydari,Algorithms and bounds for layer assignment of MCM routing.,1994,2,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi2.html#HeydariTX94,https://doi.org/10.1109/92.285755 +J. Kaza,Design and implementation of low-energy turbo decoders.,2004,12,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi12.html#KazaC04,https://doi.org/10.1109/TVLSI.2004.832942 +Doron Gluzer,Probability-Driven Multibit Flip-Flop Integration With Clock Gating.,2017,25,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi25.html#GluzerW17,https://doi.org/10.1109/TVLSI.2016.2614004 +Irith Pomeranz,Selecting Replacements for Undetectable Path Delay Faults.,2017,25,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi25.html#Pomeranz17,https://doi.org/10.1109/TVLSI.2017.2670147 +Tong Liu,Test generation and scheduling for layout-based detection of bridge faults in interconnects.,1999,7,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi7.html#LiuCML99,https://doi.org/10.1109/92.748200 +Irith Pomeranz,Reduced Power Transition Fault Test Sets for Circuits With Independent Scan Chain Modes.,2013,21,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi21.html#Pomeranz13c,https://doi.org/10.1109/TVLSI.2012.2207137 +Chua-Chin Wang,Design of a cycle-efficient 64-b/32-b integer divisor using a table-sharing algorithm.,2003,11,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi11.html#WangLWH03,https://doi.org/10.1109/TVLSI.2003.816143 +Lei Zhang 0008,On Topology Reconfiguration for Defect-Tolerant NoC-Based Homogeneous Manycore Systems.,2009,17,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi17.html#0008HXLL09,https://doi.org/10.1109/TVLSI.2008.2002108 +Subodh Gupta,Power modeling for high-level power estimation.,2000,8,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi8.html#GuptaN00,https://doi.org/10.1109/92.820758 +Alexander E. Shapiro,Power Efficient Level Shifter for 16 nm FinFET Near Threshold Circuits.,2016,24,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi24.html#ShapiroF16,https://doi.org/10.1109/TVLSI.2015.2409051 +Saibal Mukhopadhyay,A novel high-performance and robust sense amplifier using independent gate control in sub-50-nm double-gate MOSFET.,2006,14,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi14.html#MukhopadhyayMR06,https://doi.org/10.1109/TVLSI.2005.863743 +Keshab K. Parhi,VLSI architectures for discrete wavelet transforms.,1993,1,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi1.html#ParhiN93,https://doi.org/10.1109/92.238416 +Shih-Hung Weng,Energy Efficiency Optimization Through Codesign of the Transmitter and Receiver in High-Speed On-Chip Interconnects.,2014,22,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi22.html#WengZBC14,https://doi.org/10.1109/TVLSI.2013.2255070 +Muhammad Umar Karim Khan,EBSCam: Background Subtraction for Ubiquitous Computing.,2017,25,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi25.html#KhanKK17,https://doi.org/10.1109/TVLSI.2016.2567485 +Yuan-Hao Huang,High-Efficiency Soft-Error-Tolerant Digital Signal Processing Using Fine-Grain Subword-Detection Processing.,2010,18,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi18.html#Huang10,https://doi.org/10.1109/TVLSI.2008.2009636 +Yu-Huei Lee,Fast Transient (FT) Technique With Adaptive Phase Margin (APM) for Current Mode DC-DC Buck Converters.,2012,20,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi20.html#LeeHWC12,https://doi.org/10.1109/TVLSI.2011.2163093 +Cristiana Bolchini,Design of VHDL-based totally self-checking finite-state machine and data-path descriptions.,2000,8,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi8.html#BolchiniMSS00,https://doi.org/10.1109/92.820766 +Yong Ye,A 40-nm 16-Mb Contact-Programming Mask ROM Using Dual Trench Isolation Diode Bitcell.,2016,24,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi24.html#YeKZCWLSC16,https://doi.org/10.1109/TVLSI.2015.2449670 +Anita Aghaie,Fault Diagnosis Schemes for Low-Energy Block Cipher Midori Benchmarked on FPGA.,2017,25,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi25.html#AghaieKA17,https://doi.org/10.1109/TVLSI.2016.2633412 +Abram P. Dancy,High-efficiency multiple-output DC-DC conversion for low-voltage systems.,2000,8,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi8.html#DancyAC00,https://doi.org/10.1109/92.845892 +Paul Zuber,Wire Topology Optimization for Low Power CMOS.,2009,17,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi17.html#ZuberBIRS09,https://doi.org/10.1109/TVLSI.2008.2001238 +Alejandro Valero,Impact on Performance and Energy of the Retention Time and Processor Frequency in L1 Macrocell-Based Data Caches.,2012,20,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi20.html#ValeroSLPLD12,https://doi.org/10.1109/TVLSI.2011.2142202 +Won Ho Park,Effects of Using Advanced Cooling Systems on the Overall Power Consumption of Processors.,2013,21,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi21.html#ParkY13,https://doi.org/10.1109/TVLSI.2012.2217386 +Mango Chia-Tso Chao,A Novel Test Flow for One-Time-Programming Applications of NROM Technology.,2011,19,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi19.html#ChaoCTC11,https://doi.org/10.1109/TVLSI.2010.2087044 +Philip E. Madrid,Modified Booth algorithm for high radix fixed-point multiplication.,1993,1,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi1.html#MadridMS93,https://doi.org/10.1109/92.238420 +Karthi Duraisamy,Multicast-Aware High-Performance Wireless Network-on-Chip Architectures.,2017,25,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi25.html#DuraisamyXBP17,https://doi.org/10.1109/TVLSI.2016.2612647 +Giovanni Causapruno,Reconfigurable Systolic Array: From Architecture to Physical Design for NML.,2016,24,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi24.html#CausaprunoRTVRZ16,https://doi.org/10.1109/TVLSI.2016.2547422 +Yongjin Jeong,VLSI array algorithms and architectures for RSA modular multiplication.,1997,5,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi5.html#JeongB97,https://doi.org/10.1109/92.585224 +Kamran Eshraghian,Memristor MOS Content Addressable Memory (MCAM): Hybrid Architecture for Future High Performance Search Engines.,2011,19,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi19.html#EshraghianCKKAK11,https://doi.org/10.1109/TVLSI.2010.2049867 +Hesheng Lin,High-Current Drivability Fibonacci Charge Pump With Connect-Point-Shift Enhancement.,2017,25,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi25.html#LinCLCCZ17,https://doi.org/10.1109/TVLSI.2017.2676822 +Woo-Rham Bae,Use of Phase Delay Analysis for Evaluating Wideband Circuits: An Alternative to Group Delay Analysis.,2017,25,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi25.html#BaeNJ17,https://doi.org/10.1109/TVLSI.2017.2747157 +Feng Shi,New Crosstalk Avoidance Codes Based on a Novel Pattern Classification.,2013,21,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi21.html#ShiWY13,https://doi.org/10.1109/TVLSI.2012.2219565 +Mikhail Popovich,Decoupling capacitors for multi-voltage power distribution systems.,2006,14,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi14.html#PopovichF06,https://doi.org/10.1109/TVLSI.2006.871756 +Andreas Dandalis,Configuration compression for FPGA-based embedded systems.,2005,13,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi13.html#DandalisP05,https://doi.org/10.1109/TVLSI.2005.862721 +Aida Todri-Sanial,A Study of 3-D Power Delivery Networks With Multiple Clock Domains.,2016,24,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi24.html#Todri-SanialC16,https://doi.org/10.1109/TVLSI.2016.2549275 +Josep Rius,Supply Noise and Impedance of On-Chip Power Distribution Networks in ICs With Nonuniform Power Consumption and Interblock Decoupling Capacitors.,2015,23,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi23.html#Rius15,https://doi.org/10.1109/TVLSI.2014.2332189 +Tongda Wu,DVFS-Based Long-Term Task Scheduling for Dual-Channel Solar-Powered Sensor Nodes.,2017,25,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi25.html#WuLZLHXY17,https://doi.org/10.1109/TVLSI.2017.2736552 +Shengcheng Wang,Electromigration-Aware Local-Via Allocation in Power/Ground TSVs of 3-D ICs.,2017,25,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi25.html#WangT17,https://doi.org/10.1109/TVLSI.2017.2716821 +Alireza Ejlali,Combined time and information redundancy for SEU-tolerance in energy-efficient real-time systems.,2006,14,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi14.html#EjlaliASRM06,https://doi.org/10.1109/TVLSI.2006.874355 +Mohamed Nekili,Pipelined H-trees for high-speed clocking of large integrated systems in presence of process variations.,1997,5,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi5.html#NekiliBS97,https://doi.org/10.1109/92.585214 +Cedric Killian,Smart Reliable Network-on-Chip.,2014,22,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi22.html#KillianTMD14,https://doi.org/10.1109/TVLSI.2013.2240324 +Henda Aridhi,Enhancing Model Order Reduction for Nonlinear Analog Circuit Simulation.,2016,24,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi24.html#AridhiZT16,https://doi.org/10.1109/TVLSI.2015.2421450 +Costas Argyrides,Matrix Codes for Reliable and Cost Efficient Memory Chips.,2011,19,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi19.html#ArgyridesPK11,https://doi.org/10.1109/TVLSI.2009.2036362 +Hiroyuki Yamauchi,A 0.5 V single power supply operated high-speed boosted and offset-grounded data storage (BOGS) SRAM cell architecture.,1997,5,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi5.html#YamauchiIAM97,https://doi.org/10.1109/92.645064 +Masoud Oveis Gharan,Efficient Dynamic Virtual Channel Organization and Architecture for NoC Systems.,2016,24,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi24.html#GharanK16,https://doi.org/10.1109/TVLSI.2015.2405933 +K. De,RSYN: a system for automated synthesis of reliable multilevel circuits.,1994,2,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi2.html#DeNNB94,https://doi.org/10.1109/92.285745 +Garrett S. Rose,Large-signal two-terminal device model for nanoelectronic circuit analysis.,2004,12,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi12.html#RoseZS04,https://doi.org/10.1109/TVLSI.2004.836291 +Chunhong Chen,Probability-based approach to rectilinear Steiner tree problems.,2002,10,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi10.html#ChenZA02,https://doi.org/10.1109/TVLSI.2002.808463 +Yuejian Wu,Built-In Functional Tests for Silicon Validation and System Integration of Telecom SoC Designs.,2011,19,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi19.html#WuTMH11,https://doi.org/10.1109/TVLSI.2009.2036629 +Mohammad Sharifkhani,A Compact Hybrid Current/Voltage Sense Amplifier With Offset Cancellation for High-Speed SRAMs.,2011,19,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi19.html#SharifkhaniRJS11,https://doi.org/10.1109/TVLSI.2009.2039949 +Archit Joshi,Period Jitter of Frequency-Locked Loops.,2015,23,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi23.html#Joshi15,https://doi.org/10.1109/TVLSI.2014.2338892 +Davide Bellizia,Secure Double Rate Registers as an RTL Countermeasure Against Power Analysis Attacks.,2018,26,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi26.html#BelliziaBMSTT18,http://doi.ieeecomputersociety.org/10.1109/TVLSI.2018.2816914 +Irith Pomeranz,Built-In Generation of Functional Broadside Tests Using a Fixed Hardware Structure.,2013,21,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi21.html#Pomeranz13,https://doi.org/10.1109/TVLSI.2011.2179682 +Ahmad A. Hiasat,VLSI implementation of new arithmetic residue to binary decoders.,2005,13,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi13.html#Hiasat05,https://doi.org/10.1109/TVLSI.2004.840400 +Moein Kianpour,A Novel Quantum-Dot Cellular Automata X-bit and** 32-bit SRAM.,2016,24,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi24.html#KianpourS16,https://doi.org/10.1109/TVLSI.2015.2418278 +Takahisa Wada,A VLIW Vector Media Coprocessor With Cascaded SIMD ALUs.,2009,17,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi17.html#WadaIKNSMN09,https://doi.org/10.1109/TVLSI.2008.2003006 +Qing Zhu,Planar clock routing for high performance chip and package co-design.,1996,4,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi4.html#ZhuD96,https://doi.org/10.1109/92.502193 +Pierre G. Paulin,Parallel programming models for a multiprocessor SoC platform applied to networking and multimedia.,2006,14,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi14.html#PaulinPLBLBLLBGN06,https://doi.org/10.1109/TVLSI.2006.878259 +Robert Giterman,Single-Supply 3T Gain-Cell for Low-Voltage Low-Power Applications.,2016,24,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi24.html#GitermanTMABF16,https://doi.org/10.1109/TVLSI.2015.2394459 +Magnus Själander,Multiplication Acceleration Through Twin Precision.,2009,17,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi17.html#SjalanderL09,https://doi.org/10.1109/TVLSI.2008.2002107 +Qiang Liu 0011,Power-Adaptive Computing System Design for Solar-Energy-Powered Embedded Systems.,2015,23,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi23.html#LiuMZNLY15,https://doi.org/10.1109/TVLSI.2014.2342213 +Ting-Jung Lin,FDR 2.0: A Low-Power Dynamically Reconfigurable Architecture and Its FinFET Implementation.,2015,23,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi23.html#LinZJ15,https://doi.org/10.1109/TVLSI.2014.2360067 +Emil Talpes,Execution cache-based microarchitecture for power-efficient superscalar processors.,2005,13,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi13.html#TalpesM05,https://doi.org/10.1109/TVLSI.2004.840406 +Xinmiao Zhang,Low-Complexity Reliability-Based Message-Passing Decoder Architectures for Non-Binary LDPC Codes.,2012,20,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi20.html#ZhangCL12,https://doi.org/10.1109/TVLSI.2011.2164951 +Yanqi Zheng,A Fast-Response Pseudo-PWM Buck Converter With PLL-Based Hysteresis Control.,2012,20,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi20.html#ZhengCL12,https://doi.org/10.1109/TVLSI.2011.2156437 +Jianwei Zhang 0006,A Current-Recycling Technique for Shadow-Match-Line Sensing in Content-Addressable Memories.,2008,16,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi16.html#ZhangYL08,https://doi.org/10.1109/TVLSI.2008.2000247 +Yingnan Cui,A Variation-Aware Adaptive Fuzzy Control System for Thermal Management of Microprocessors.,2017,25,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi25.html#CuiZH17,https://doi.org/10.1109/TVLSI.2016.2596338 +Li Ding 0002,Simultaneous switching noise analysis using application specific device modeling.,2003,11,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi11.html#DingM03,https://doi.org/10.1109/TVLSI.2003.817548 +Zhenzhi Wu,High-Throughput Trellis Processor for Multistandard FEC Decoding.,2015,23,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi23.html#WuL15,https://doi.org/10.1109/TVLSI.2014.2382108 +Mohammad Reza Jokar,Sequoia: A High-Endurance NVM-Based Cache Architecture.,2016,24,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi24.html#JokarAS16,https://doi.org/10.1109/TVLSI.2015.2420954 +A. V. Mule,Electrical and optical clock distribution networks for gigascale microprocessors.,2002,10,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi10.html#MuleGGM02,https://doi.org/10.1109/TVLSI.2002.801604 +Mehdi Baradaran Tahoori,Application-Dependent Testing of FPGAs.,2006,14,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi14.html#Tahoori06,https://doi.org/10.1109/TVLSI.2006.884053 +Daniele Rossi 0001,Power Consumption of Fault Tolerant Busses.,2008,16,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi16.html#RossiNDKM08,https://doi.org/10.1109/TVLSI.2008.917535 +Yin Shen,ECP- and CMP-Aware Detailed Routing Algorithm for DFM.,2010,18,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi18.html#ShenZCH10,https://doi.org/10.1109/TVLSI.2008.2008020 +Yehea I. Ismail,Improved model-order reduction by using spacial information in moments.,2003,11,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi11.html#Ismail03,https://doi.org/10.1109/TVLSI.2003.817138 +Fernando De Bernardinis,An efficient VLSI architecture for real-time additive synthesis of musical signals.,1999,7,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi7.html#BernardinisRSTB99,https://doi.org/10.1109/92.748205 +Madhavi Gopal Valluri,Hybrid-Scheduling for Reduced Energy Consumption in High-Performance Processors.,2006,14,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi14.html#ValluriJH06,https://doi.org/10.1109/TVLSI.2006.884055 +Zhanglei Wang,Test Data Compression Using Selective Encoding of Scan Slices.,2008,16,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi16.html#WangC08,https://doi.org/10.1109/TVLSI.2008.2000674 +KiJong Lee,Self-timed divider based on RSD number system.,1996,4,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi4.html#LeeC96,https://doi.org/10.1109/92.502202 +Darío Suárez Gracia,LP-NUCA: Networks-in-Cache for High-Performance Low-Power Embedded Processors.,2012,20,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi20.html#GraciaDAKY12,https://doi.org/10.1109/TVLSI.2011.2158249 +Cheng-Hung Lin,Efficient Pattern Matching Algorithm for Memory Architecture.,2011,19,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi19.html#LinC11,https://doi.org/10.1109/TVLSI.2009.2028346 +Uwe Sparmann,On the effectiveness of residue code checking for parallel two's complement multipliers.,1996,4,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi4.html#SparmannR96,https://doi.org/10.1109/92.502194 +Yang Ge,A Multi-Agent Framework for Thermal Aware Task Migration in Many-Core Systems.,2012,20,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi20.html#GeQW12,https://doi.org/10.1109/TVLSI.2011.2162348 +Mahdi Nikdast,Crosstalk Noise in WDM-Based Optical Networks-on-Chip: A Formal Study and Comparison.,2015,23,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi23.html#NikdastXDWWWWYY15,https://doi.org/10.1109/TVLSI.2014.2370892 +Jonathan Rosenfeld,Design Methodology for Global Resonant H-Tree Clock Distribution Networks.,2007,15,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi15.html#RosenfeldF07,https://doi.org/10.1109/TVLSI.2007.893576 +Alfio Dario Grasso,Analysis and Implementation of a Minimum-Supply Body-Biased CMOS Differential Amplifier Cell.,2009,17,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi17.html#GrassoMPST09,https://doi.org/10.1109/TVLSI.2008.2003482 +Usman Ahmed,Performance and Cost Tradeoffs in Metal-Programmable Structured ASICs (MPSAs).,2011,19,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi19.html#AhmedLW11,https://doi.org/10.1109/TVLSI.2010.2076841 +Shoaleh Hashemi Namin,Low-Power Design for a Digit-Serial Polynomial Basis Finite Field Multiplier Using Factoring Technique.,2017,25,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi25.html#NaminWA17,https://doi.org/10.1109/TVLSI.2016.2585980 +Amine Dehbaoui,Enhancing Electromagnetic Analysis Using Magnitude Squared Incoherence.,2012,20,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi20.html#DehbaouiLOTRM12,https://doi.org/10.1109/TVLSI.2011.2104984 +A. Sharma,Estimating architectural resources and performance for high-level synthesis applications.,1993,1,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi1.html#SharmaJ93,https://doi.org/10.1109/92.238417 +Liang Zhang,Voltage-Mode Driver Preemphasis Technique For On-Chip Global Buses.,2007,15,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi15.html#ZhangWBLXF07,https://doi.org/10.1109/TVLSI.2007.893588 +Karim Mohammed,A Parameterized Programmable MIMO Decoding Architecture With a Scalable Instruction Set and Compiler.,2011,19,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi19.html#MohammedMD11,https://doi.org/10.1109/TVLSI.2010.2049592 +Anna Antola,Modular design methodologies for image processing architectures.,1993,1,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi1.html#AntolaAB93,https://doi.org/10.1109/92.250187 +J. L. Nunez,Gbit/s lossless data compression hardware.,2003,11,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi11.html#NunezJ03,https://doi.org/10.1109/TVLSI.2003.812288 +Prithviraj Banerjee,Overview of a compiler for synthesizing MATLAB programs onto FPGAs.,2004,12,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi12.html#BanerjeeHNKSPBPTZAU04, +R. Tessier,Incremental compilation for parallel logic verification systems.,2002,10,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi10.html#TessierJ02,https://doi.org/10.1109/TVLSI.2002.801614 +Min-Sheng Kao,20-Gb/s CMOS EA/MZ Modulator Driver With Intrinsic Parasitic Feedback Network.,2014,22,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi22.html#KaoCHW14,https://doi.org/10.1109/TVLSI.2013.2251685 +Priyadarshini Panda,Energy-Efficient Object Detection Using Semantic Decomposition.,2017,25,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi25.html#PandaVSRR17,https://doi.org/10.1109/TVLSI.2017.2707077 +Li Li,Activity-Driven Fine-Grained Clock Gating and Run Time Power Gating Integration.,2013,21,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi21.html#LiCN13,https://doi.org/10.1109/TVLSI.2012.2212732 +Marco Vacca,Nanomagnetic Logic Microprocessor: Hierarchical Power Model.,2013,21,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi21.html#VaccaGZ13,https://doi.org/10.1109/TVLSI.2012.2211903 +C. K. Midhun,High-Speed Dynamic Asynchronous Pipeline: Self-Precharging Style.,2014,22,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi22.html#MidhunJK14,https://doi.org/10.1109/TVLSI.2013.2282834 +Dominique Borrione,A compositional model for the functional verification of high-level synthesis results.,2000,8,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi8.html#BorrioneDP00,https://doi.org/10.1109/92.894157 +Soroush Abbaspour,Fast Interconnect and Gate Timing Analysis for Performance Optimization.,2006,14,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi14.html#AbbaspourPAK06,https://doi.org/10.1109/TVLSI.2006.887834 +Jonathan Rosenfeld,Linear and Switch-Mode Conversion in 3-D Circuits.,2011,19,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi19.html#RosenfeldF11a,https://doi.org/10.1109/TVLSI.2010.2070849 +Alexandre Ney,Analysis of Resistive-Open Defects in SRAM Sense Amplifiers.,2009,17,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi17.html#NeyGPVB09,https://doi.org/10.1109/TVLSI.2008.2005194 +Matheus Trevisan Moreira,Beware the Dynamic C-Element.,2014,22,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi22.html#MoreiraMC14,https://doi.org/10.1109/TVLSI.2013.2276538 +V. Srinivasan,Fine-grained and coarse-grained behavioral partitioning with effective utilization of memory and design space exploration for multi-FPGA architectures.,2001,9,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi9.html#SrinivasanGV01,https://doi.org/10.1109/92.920829 +Satyabrata Sarangi,Efficient Hardware Implementation of Encoder and Decoder for Golay Code.,2015,23,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi23.html#SarangiB15,https://doi.org/10.1109/TVLSI.2014.2346712 +Vikramkumar Pudi,A Bit-Serial Pipelined Architecture for High-Performance DHT Computation in Quantum-Dot Cellular Automata.,2015,23,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi23.html#PudiS15,https://doi.org/10.1109/TVLSI.2014.2363519 +Ayse Kivilcim Coskun,Static and Dynamic Temperature-Aware Scheduling for Multiprocessor SoCs.,2008,16,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi16.html#CoskunRWG08,https://doi.org/10.1109/TVLSI.2008.2000726 +Isaak Yang,Self-Repairing Digital System Based on State Attractor Convergence Inspired by the Recovery Process of a Living Cell.,2017,25,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi25.html#YangJC17,https://doi.org/10.1109/TVLSI.2016.2593482 +Parham Hosseinzadeh Namin,Digit-Level Serial-In Parallel-Out Multiplier Using Redundant Representation for a Class of Finite Fields.,2017,25,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi25.html#NaminMA17,https://doi.org/10.1109/TVLSI.2016.2646479 +Chung-An Shen,A Best-First Soft/Hard Decision Tree Searching MIMO Decoder for a 4 and** 4 64-QAM System.,2012,20,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi20.html#ShenESM12,https://doi.org/10.1109/TVLSI.2011.2159821 +Wenjie Che,Novel Offset Techniques for Improving Bitstring Quality of a Hardware-Embedded Delay PUF.,2018,26,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi26.html#CheSP18,https://doi.org/10.1109/TVLSI.2017.2785270 +Zhehui Wang,Improve Chip Pin Performance Using Optical Interconnects.,2016,24,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi24.html#WangXYWWDWML16,https://doi.org/10.1109/TVLSI.2015.2445825 +Ivan Ukhov,Temperature-Centric Reliability Analysis and Optimization of Electronic Systems Under Process Variation.,2015,23,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi23.html#UkhovEP15,https://doi.org/10.1109/TVLSI.2014.2371249 +Yuxin Bai,Back to the Future: Current-Mode Processor in the Era of Deeply Scaled CMOS.,2016,24,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi24.html#BaiSBSFI16,https://doi.org/10.1109/TVLSI.2015.2455874 +Christopher A. Ryan,FX: a fast approximate fault simulator for the switch-level using VHDL.,1996,4,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi4.html#RyanT96,https://doi.org/10.1109/92.532034 +Yu Zheng,SACCI: Scan-Based Characterization Through Clock Phase Sweep for Counterfeit Chip Detection.,2015,23,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi23.html#ZhengWB15,https://doi.org/10.1109/TVLSI.2014.2326556 +Assem A. M. Bsoul,An FPGA Architecture and CAD Flow Supporting Dynamically Controlled Power Gating.,2016,24,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi24.html#BsoulWTL16,https://doi.org/10.1109/TVLSI.2015.2393914 +Soumitra Bose,A rated-clock test method for path delay faults.,1998,6,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi6.html#BoseAA98,https://doi.org/10.1109/92.678897 +Chao Shi,A Novel Asynchronous Pixel for an Energy Harvesting CMOS Image Sensor.,2011,19,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi19.html#ShiLB11,https://doi.org/10.1109/TVLSI.2009.2028570 +Jatin N. Mistry,Active Mode Subclock Power Gating.,2014,22,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi22.html#MistryMAFBM14,https://doi.org/10.1109/TVLSI.2013.2280886 +Zhehui Wang,A Holistic Modeling and Analysis of Optical-Electrical Interfaces for Inter/Intra-chip Interconnects.,2016,24,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi24.html#WangXYDWWWLM16,https://doi.org/10.1109/TVLSI.2015.2511065 +Rostislav (Reuven) Dobkin,Asynchronous Current Mode Serial Communication.,2010,18,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi18.html#DobkinMKG10,https://doi.org/10.1109/TVLSI.2009.2020859 +George Hadjiyiannis,Techniques for accurate performance evaluation in architecture exploration.,2003,11,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi11.html#HadjiyiannisD03,https://doi.org/10.1109/TVLSI.2003.812290 +K. N. Vikram,Mapping Data-Parallel Tasks Onto Partially Reconfigurable Hybrid Processor Architectures.,2006,14,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi14.html#VikramV06,https://doi.org/10.1109/TVLSI.2006.884052 +Samuel Norman Hamilton,On-line test for fault-secure fault identification.,2000,8,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi8.html#HamiltonO00,https://doi.org/10.1109/92.863626 +Montek Singh,The Design of High-Performance Dynamic Asynchronous Pipelines: High-Capacity Style.,2007,15,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi15.html#SinghN07b,https://doi.org/10.1109/TVLSI.2007.902206 +Jintae Kim,Flexible-Assignment Calibration Technique for Mismatch-Constrained Digital-to-Analog Converters.,2014,22,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi22.html#KimMY14,https://doi.org/10.1109/TVLSI.2013.2279133 +Girish Varatkar,Error-Resilient Motion Estimation Architecture.,2008,16,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi16.html#VaratkarS08,https://doi.org/10.1109/TVLSI.2008.2000675 +Ing-Jer Huang,Application of instruction analysis/scheduling techniques to resource allocation of superscalar processors.,2002,10,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi10.html#HuangX02,https://doi.org/10.1109/92.988729 +R. Katti,A modified Booth algorithm for high radix fixed-point multiplication.,1994,2,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi2.html#Katti94,https://doi.org/10.1109/92.335021 +Nandish Ashutosh Mehta,Dynamic Supply and Threshold Voltage Scaling for CMOS Digital Circuits Using In-Situ Power Monitor.,2012,20,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi20.html#MehtaA12,https://doi.org/10.1109/TVLSI.2011.2132765 +Ke-Ren Dai,NCTU-GR: Efficient Simulated Evolution-Based Rerouting and Congestion-Relaxed Layer Assignment on 3-D Global Routing.,2012,20,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi20.html#DaiLL12,https://doi.org/10.1109/TVLSI.2010.2102780 +Yongtao Geng,Short Pulse Generation With On-Chip Pulse-Forming Lines.,2012,20,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi20.html#GengZLSWW12,https://doi.org/10.1109/TVLSI.2011.2160103 +Anoop Iyer,Microarchitecture-level power management.,2002,10,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi10.html#IyerM02,https://doi.org/10.1109/TVLSI.2002.1043326 +Huesung Kim,A reconfigurable multifunction computing cache architecture.,2001,9,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi9.html#KimST01,https://doi.org/10.1109/92.931228 +Dwaipayan Biswas,Low-Complexity Framework for Movement Classification Using Body-Worn Sensors.,2017,25,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi25.html#BiswasMPMAKJO17,https://doi.org/10.1109/TVLSI.2016.2641046 +Shivam Verma,Low-Power High-Density STT MRAMs on a 3-D Vertical Silicon Nanowire Platform.,2016,24,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi24.html#VermaK16,https://doi.org/10.1109/TVLSI.2015.2454859 +Wei Jhih Wang,Code Compression for Embedded Systems Using Separated Dictionaries.,2016,24,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi24.html#WangL16,https://doi.org/10.1109/TVLSI.2015.2394364 +Jerry C. Kao,Energy-Efficient Low-Latency 600 MHz FIR With High-Overdrive Charge-Recovery Logic.,2012,20,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi20.html#KaoMSP12,https://doi.org/10.1109/TVLSI.2011.2140346 +Amirreza Alizadeh,Temperature-Dependent Comparison Between Delay of CNT and Copper Interconnects.,2016,24,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi24.html#AlizadehS16,https://doi.org/10.1109/TVLSI.2015.2414094 +Oliver Yuk-Hang Leung,Reducing power consumption of turbo-code decoder using adaptive iteration with variable supply voltage.,2001,9,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi9.html#LeungTC01,https://doi.org/10.1109/92.920817 +K. Tsang,A VLSI architecture for a real-time code book generator and encoder of a vector quantizer.,1994,2,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi2.html#TsangW94,https://doi.org/10.1109/92.311645 +Ali Habibi,Design and verification of SystemC transaction-level models.,2006,14,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi14.html#HabibiT06,https://doi.org/10.1109/TVLSI.2005.863187 +Irith Pomeranz,Modeling a Set of Functional Test Sequences as a Single Sequence for Test Compaction.,2015,23,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi23.html#Pomeranz15b,https://doi.org/10.1109/TVLSI.2014.2370751 +Qiuting Huang,Design considerations for high-frequency crystal oscillators digitally trimmable to sub-ppm accuracy.,1997,5,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi5.html#HuangB97,https://doi.org/10.1109/92.645067 +Zhong-Fang Jin,A practical approach to model long MIS interconnects in VLSI circuits.,2002,10,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi10.html#JinLS02,https://doi.org/10.1109/TVLSI.2002.800520 +Mohammad Tehranipoor,Nine-coded compression technique for testing embedded cores in SoCs.,2005,13,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi13.html#TehranipoorNC05,https://doi.org/10.1109/TVLSI.2005.844311 +Hyoyoung Shin,Interleaving Test Algorithm for Subthreshold Leakage-Current Defects in DRAM Considering the Equal Bit Line Stress.,2014,22,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi22.html#ShinPLPK14,https://doi.org/10.1109/TVLSI.2013.2255628 +Seongkyun Shin,Analytical models and algorithms for the efficient signal integrity verification of inductance-effect-prominent multicoupled VLSI circuit interconnects.,2004,12,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi12.html#ShinEES04, +Yoshiyuki Nakamura,Diagnosing At-Speed Scan BIST Circuits Using a Low Speed and Low Memory Tester.,2007,15,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi15.html#NakamuraCSF07,https://doi.org/10.1109/TVLSI.2007.899235 +Jie S. Hu,On the Exploitation of Narrow-Width Values for Improving Register File Reliability.,2009,17,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi17.html#HuWZ09,https://doi.org/10.1109/TVLSI.2009.2017441 +Jingzhao Ou,A Cooperative Management Scheme for Power Efficient Implementations of Real-Time Operating Systems on Soft Processors.,2008,16,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi16.html#OuP08,https://doi.org/10.1109/TVLSI.2007.912111 +Yanan Sun,A Novel Robust and Low-Leakage SRAM Cell With Nine Carbon Nanotube Transistors.,2015,23,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi23.html#SunJK15,https://doi.org/10.1109/TVLSI.2014.2350674 +Amir Zjajo,Analog Automatic Test Pattern Generation for Quasi-Static Structural Test.,2009,17,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi17.html#ZjajoG09,https://doi.org/10.1109/TVLSI.2008.2003517 +Hendrawan Soeleman,Robust subthreshold logic for ultra-low power operation.,2001,9,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi9.html#SoelemanRP01,https://doi.org/10.1109/92.920822 +Itamar Levi,Low-Cost Pseudoasynchronous Circuit Design Style With Reduced Exploitable Side Information.,2018,26,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi26.html#LeviFK18,https://doi.org/10.1109/TVLSI.2017.2757064 +Ioannis Seitanidis,ElastiStore: Flexible Elastic Buffering for Virtual-Channel-Based Networks on Chip.,2015,23,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi23.html#SeitanidisPCND15,https://doi.org/10.1109/TVLSI.2014.2383442 +Sanjukta Bhanja,Switching activity estimation of VLSI circuits using Bayesian networks.,2003,11,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi11.html#BhanjaR03,https://doi.org/10.1109/TVLSI.2003.816144 +Sebastian Herbert,Mitigating the Impact of Variability on Chip-Multiprocessor Power and Performance.,2009,17,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi17.html#HerbertM09,https://doi.org/10.1109/TVLSI.2009.2020394 +Jinjin He,An Efficient 4-D 8PSK TCM Decoder Architecture.,2010,18,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi18.html#HeWL10,https://doi.org/10.1109/TVLSI.2009.2015325 +Ronald Scrofano,Area-Efficient Arithmetic Expression Evaluation Using Deeply Pipelined Floating-Point Cores.,2008,16,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi16.html#ScrofanoZP08,https://doi.org/10.1109/TVLSI.2007.912038 +Ken S. Stevens,Relative timing [asynchronous design].,2003,11,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi11.html#StevensGR03,https://doi.org/10.1109/TVLSI.2002.801606 +Ghaith Tarawneh,Eliminating Synchronization Latency Using Sequenced Latching.,2014,22,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi22.html#TarawnehYM14,https://doi.org/10.1109/TVLSI.2013.2243177 +Tetsuya Iizuka,Timing-Aware Cell Layout De-Compaction for Yield Optimization by Critical Area Minimization.,2007,15,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi15.html#IizukaIA07,https://doi.org/10.1109/TVLSI.2007.898754 +Simone Corbetta,Internal and External Bitstream Relocation for Partial Dynamic Reconfiguration.,2009,17,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi17.html#CorbettaMNSSS09,https://doi.org/10.1109/TVLSI.2008.2005670 +Chia-Min Chen,Fast Transient Low-Dropout Voltage Regulator With Hybrid Dynamic Biasing Technique for SoC Application.,2013,21,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi21.html#ChenTH13a,https://doi.org/10.1109/TVLSI.2012.2217766 +Chien-Ming Wu,VLSI architectural design tradeoffs for sliding-window log-MAP decoders.,2005,13,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi13.html#WuSWHC05,https://doi.org/10.1109/TVLSI.2004.842917 +Zhangqing He,A Reliable Strong PUF Based on Switched-Capacitor Circuit.,2018,26,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi26.html#HeWDBD18,http://doi.ieeecomputersociety.org/10.1109/TVLSI.2018.2806041 +Shouyi Yin,Improving Nested Loop Pipelining on Coarse-Grained Reconfigurable Architectures.,2016,24,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi24.html#YinLPLW16,https://doi.org/10.1109/TVLSI.2015.2400219 +Hyungwon Kim,Delay fault testing of IP-based designs via symbolic path modeling.,2001,9,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi9.html#KimH01,https://doi.org/10.1109/92.953500 +Javier D. Bruguera,Multilevel reverse most-significant carry computation.,2001,9,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi9.html#BrugueraL01,https://doi.org/10.1109/92.974909 +Jamshaid Sarwar Malik,Revisiting Central Limit Theorem: Accurate Gaussian Random Number Generation in VLSI.,2015,23,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi23.html#MalikHMSG15,https://doi.org/10.1109/TVLSI.2014.2322573 +Richard B. Brown,Overview of complementary GaAs technology for high-speed VLSI circuits.,1998,6,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi6.html#BrownBLAPBGSGFCMSLM98,https://doi.org/10.1109/92.661245 +Akhilesh Kumar,FPGA Design for Timing Yield Under Process Variations.,2010,18,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi18.html#KumarA10,https://doi.org/10.1109/TVLSI.2008.2011555 +Rajendra Bishnoi,Design of Defect and Fault-Tolerant Nonvolatile Spintronic Flip-Flops.,2017,25,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi25.html#BishnoiOT17,https://doi.org/10.1109/TVLSI.2016.2630315 +Elias Ahmed,The effect of LUT and cluster size on deep-submicron FPGA performance and density.,2004,12,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi12.html#AhmedR04, +Milin Zhang,Quadrant-Based Online Spatial and Temporal Compressive Acquisition for CMOS Image Sensor.,2011,19,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi19.html#ZhangB11,https://doi.org/10.1109/TVLSI.2010.2053055 +Ali Iranli,HVS-Aware Dynamic Backlight Scaling in TFT-LCDs.,2006,14,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi14.html#IranliLP06,https://doi.org/10.1109/TVLSI.2006.884151 +Jin-Fu Li,Testing Comparison and Delay Faults of TCAMs With Asymmetric Cells.,2010,18,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi18.html#Li10,https://doi.org/10.1109/TVLSI.2009.2017903 +Mingyu Wang,A Spatial and Temporal Locality-Aware Adaptive Cache Design With Network Optimization for Tiled Many-Core Architectures.,2017,25,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi25.html#WangL17,https://doi.org/10.1109/TVLSI.2017.2712366 +Lisa M. Guerra,Behavioral-level synthesis of heterogeneous BISR reconfigurable ASIC's.,1998,6,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi6.html#GuerraPR98,https://doi.org/10.1109/92.661258 +Sándor P. Fekete,Offline and Online Aspects of Defragmenting the Module Layout of a Partially Reconfigurable Device.,2008,16,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi16.html#FeketeVAGMT08,https://doi.org/10.1109/TVLSI.2008.2000677 +Andreas Apostolakis,Functional Processor-Based Testing of Communication Peripherals in Systems-on-Chip.,2007,15,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi15.html#ApostolakisPGP07,https://doi.org/10.1109/TVLSI.2007.900750 +Jin-Hua Hong,Cellular-array modular multiplier for fast RSA public-key cryptosystem based on modified Booth's algorithm.,2003,11,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi11.html#HongW03,https://doi.org/10.1109/TVLSI.2003.812308 +P. Aubertin,Real-Time Computation of Local Neighborhood Functions in Application-Specific Instruction-Set Processors.,2012,20,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi20.html#AubertinLS12,https://doi.org/10.1109/TVLSI.2011.2170204 +Atul Maheshwari,Current-Sensing and Repeater Hybrid Circuit Technique for On-Chip Interconnects.,2007,15,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi15.html#MaheshwariB07,https://doi.org/10.1109/TVLSI.2007.904109 +Mohammad Nasim Imtiaz Khan,Novel Magnetic Burn-In for Retention and Magnetic Tolerance Testing of STTRAM.,2018,26,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi26.html#KhanIG18,http://doi.ieeecomputersociety.org/10.1109/TVLSI.2018.2820508 +Bradley R. Quinton,Practical Asynchronous Interconnect Network Design.,2008,16,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi16.html#QuintonGW08,https://doi.org/10.1109/TVLSI.2008.917545 +Siavash Bayat Sarmadi,On Concurrent Detection of Errors in Polynomial Basis Multiplication.,2007,15,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi15.html#Bayat-SarmadiH07,https://doi.org/10.1109/TVLSI.2007.893659 +Ali Peiravi,Current-Comparison-Based Domino: New Low-Leakage High-Speed Domino Circuit for Wide Fan-In Gates.,2013,21,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi21.html#PeiraviA13,https://doi.org/10.1109/TVLSI.2012.2202408 +Shouyi Yin,A Configurable Parallel Hardware Architecture for Efficient Integral Histogram Image Computing.,2016,24,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi24.html#YinOCLW16,https://doi.org/10.1109/TVLSI.2015.2462752 +Shu-Yi Wong,Low Power Chien Search for BCH Decoder Using RT-Level Power Management.,2011,19,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi19.html#WongCW11,https://doi.org/10.1109/TVLSI.2009.2033698 +David Kinniment,Measuring Deep Metastability and Its Effect on Synchronizer Performance.,2007,15,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi15.html#KinnimentDHRY07,https://doi.org/10.1109/TVLSI.2007.902207 +Paul Pop,Design Optimization of Time- and Cost-Constrained Fault-Tolerant Embedded Systems With Checkpointing and Replication.,2009,17,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi17.html#PopIEP09,https://doi.org/10.1109/TVLSI.2008.2003166 +Arun Kejariwal,Energy efficient watermarking on mobile devices using proxy-based partitioning.,2006,14,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi14.html#KejariwalGNDG06,https://doi.org/10.1109/TVLSI.2006.878218 +Jin Yang,Introduction to generalized symbolic trajectory evaluation.,2003,11,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi11.html#YangS03,https://doi.org/10.1109/TVLSI.2003.812320 +Arkadiy Morgenshtein,Asynchronous gate-diffusion-input (GDI) circuits.,2004,12,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi12.html#MorgenshteinMG04,https://doi.org/10.1109/TVLSI.2004.831474 +Chun-Yi Lee,FinCANON: A PVT-Aware Integrated Delay and Power Modeling Framework for FinFET-Based Caches and On-Chip Networks.,2014,22,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi22.html#LeeJ14,https://doi.org/10.1109/TVLSI.2013.2260569 +André DeHon,Unifying mesh- and tree-based programmable interconnect.,2004,12,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi12.html#DeHon04,https://doi.org/10.1109/TVLSI.2004.834237 +Fei Sun,A Scalable Synthesis Methodology for Application-Specific Processors.,2006,14,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi14.html#SunRRJ06,https://doi.org/10.1109/TVLSI.2006.886410 +Arya Balachandran,A 0.013-mm2 0.53-mW/Gb/s 32-Gb/s Hybrid Analog Equalizer Under 21-dB Channel Loss in 65-nm CMOS.,2018,26,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi26.html#BalachandranCB18,https://doi.org/10.1109/TVLSI.2017.2771429 +Sihwan Kim,Calibration of Floating-Gate SoC FPAA System.,2017,25,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi25.html#KimSH17,https://doi.org/10.1109/TVLSI.2017.2710020 +Luca Benini,Power optimization of core-based systems by address bus encoding.,1998,6,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi6.html#BeniniMMPQ98,https://doi.org/10.1109/92.736127 +Michele Favalli,Bus crosstalk fault-detection capabilities of error-detecting codes for on-line testing.,1999,7,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi7.html#FavalliM99,https://doi.org/10.1109/92.784100 +P. Chow,The design of a SRAM-based field-programmable gate array-Part II: Circuit design and layout.,1999,7,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi7.html#ChowSRCPR99a,https://doi.org/10.1109/92.784093 +Divya Arora,Exploring Software Partitions for Fast Security Processing on a Multiprocessor Mobile SoC.,2007,15,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi15.html#AroraRRSJC07,https://doi.org/10.1109/TVLSI.2007.898740 +Marco Winzker,Low-power arithmetic for the processing of video signals.,1998,6,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi6.html#Winzker98,https://doi.org/10.1109/92.711320 +Jaewon Seo,Memory allocation and mapping in high-level synthesis - an integrated approach.,2003,11,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi11.html#SeoKP03,https://doi.org/10.1109/TVLSI.2003.817116 +Cheng-Wen Wei,Sub andmicro*W Noise Reduction for CIC Hearing Aids.,2012,20,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi20.html#WeiSCJ12,https://doi.org/10.1109/TVLSI.2011.2125805 +Jai-Ming Lin,Corner sequence - a P-admissible floorplan representation with a worst case linear-time packing scheme.,2003,11,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi11.html#LinCL03,https://doi.org/10.1109/TVLSI.2003.816137 +Eric Karl,Multi-Mechanism Reliability Modeling and Management in Dynamic Systems.,2008,16,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi16.html#KarlBSM08,https://doi.org/10.1109/TVLSI.2007.915477 +Jin-Hua Hong,Hierarchical system test by an IEEE 1149.5 MTM-bus slave-module interface core.,2000,8,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi8.html#HongTW00,https://doi.org/10.1109/92.894154 +Joseph N. Kozhaya,Power estimation for large sequential circuits.,2001,9,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi9.html#KozhayaN01,https://doi.org/10.1109/92.924063 +Irith Pomeranz,Non-Uniform Coverage by n -Detection Test Sets.,2012,20,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi20.html#Pomeranz12c,https://doi.org/10.1109/TVLSI.2011.2168432 +Takefumi Yoshikawa,An Over-1-Gb/s Transceiver Core for Integration Into Large System-on-Chips for Consumer Electronics.,2008,16,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi16.html#YoshikawaHEIAY08,https://doi.org/10.1109/TVLSI.2008.2000870 +Seyed Ebrahim Esmaeili,Low-Swing Differential Conditional Capturing Flip-Flop for LC Resonant Clock Distribution Networks.,2012,20,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi20.html#EsmaeiliAC12,https://doi.org/10.1109/TVLSI.2011.2158613 +Ayad Dalloo,Systematic Design of an Approximate Adder: The Optimized Lower Part Constant-OR Adder.,2018,26,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi26.html#DallooNO18,http://doi.ieeecomputersociety.org/10.1109/TVLSI.2018.2822278 +Mingoo Seok,Sleep Mode Analysis and Optimization With Minimal-Sized Power Gating Switch for Ultra-Low ${V}_{\rm dd}$ Operation.,2012,20,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi20.html#SeokHBS12,https://doi.org/10.1109/TVLSI.2011.2109069 +Lin Yuan,A combined gate replacement and input vector control approach for leakage current reduction.,2006,14,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi14.html#YuanQ06,https://doi.org/10.1109/TVLSI.2005.863747 +Michael Moeng,ContextPreRF: Enhancing the Performance and Energy of GPUs With Nonuniform Register Access.,2016,24,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi24.html#MoengXMJ16,https://doi.org/10.1109/TVLSI.2015.2397876 +Eric Q. Kang,Fuzzy logic approach to VLSI placement.,1994,2,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi2.html#KangLS94,https://doi.org/10.1109/92.335016 +Fang Cai,Relaxed Min-Max Decoder Architectures for Nonbinary Low-Density Parity-Check Codes.,2013,21,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi21.html#CaiZ13,https://doi.org/10.1109/TVLSI.2012.2226920 +Banit Agrawal,Ternary CAM Power and Delay Model: Extensions and Uses.,2008,16,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi16.html#AgrawalS08,https://doi.org/10.1109/TVLSI.2008.917538 +Fabio Frustaci,Techniques for Leakage Energy Reduction in Deep Submicrometer Cache Memories.,2006,14,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi14.html#FrustaciCPC06,https://doi.org/10.1109/TVLSI.2006.886397 +Jinho Lee,Excavating the Hidden Parallelism Inside DRAM Architectures With Buffered Compares.,2017,25,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi25.html#LeeCAC17,https://doi.org/10.1109/TVLSI.2017.2655722 +Wanyong Tian,Task Allocation on Nonvolatile-Memory-Based Hybrid Main Memory.,2013,21,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi21.html#TianZSLLXLC13,https://doi.org/10.1109/TVLSI.2012.2208129 +Liang Li,A Low-Complexity Turbo Decoder Architecture for Energy-Efficient Wireless Sensor Networks.,2013,21,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi21.html#LiMAH13,https://doi.org/10.1109/TVLSI.2011.2177104 +Chihiro Matsui,Write Order-Based Garbage Collection Scheme for an LBA Scrambler Integrated SSD.,2017,25,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi25.html#MatsuiAST17,https://doi.org/10.1109/TVLSI.2016.2594200 +Chih-Hung Chou,A New Binary-Halved Clustering Method and ERT Processor for ASSR System.,2016,24,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi24.html#ChouKBCJPW16,https://doi.org/10.1109/TVLSI.2015.2479259 +Abhranil Maiti,The Impact of Aging on a Physical Unclonable Function.,2014,22,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi22.html#MaitiS14,https://doi.org/10.1109/TVLSI.2013.2279875 +Renatas Jakushokas,Resource Based Optimization for Simultaneous Shield and Repeater Insertion.,2010,18,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi18.html#JakushokasF10,https://doi.org/10.1109/TVLSI.2009.2015950 +D. J. Kinniment,An evaluation of asynchronous addition.,1996,4,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi4.html#Kinniment96,https://doi.org/10.1109/92.486088 +Miljan Vuletic,Virtual memory window for application-specific reconfigurable coprocessors.,2006,14,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi14.html#VuleticPI06,https://doi.org/10.1109/TVLSI.2006.878481 +H. Lin,On the optimal reconfiguration of multipipeline arrays in the presence of faulty processing and switching elements.,1993,1,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi1.html#LinLL93,https://doi.org/10.1109/92.219910 +Kenneth Y. Yun,Pausible clocking-based heterogeneous systems.,1999,7,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi7.html#YunD99,https://doi.org/10.1109/92.805755 +Ayesha Khalid,RC4-AccSuite: A Hardware Acceleration Suite for RC4-Like Stream Ciphers.,2017,25,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi25.html#KhalidPC17,https://doi.org/10.1109/TVLSI.2016.2606554 +Oguzhan Atak,BilRC: An Execution Triggered Coarse Grained Reconfigurable Architecture.,2013,21,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi21.html#AtakA13,https://doi.org/10.1109/TVLSI.2012.2207748 +Chien-Ching Lin,A low power turbo/Viterbi decoder for 3GPP2 applications.,2006,14,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi14.html#LinSCL06,https://doi.org/10.1109/TVLSI.2006.874375 +Sen Wang,Fully Integrated 10-GHz Active Circulator and Quasi-Circulator Using Bridged-T Networks in Standard CMOS.,2016,24,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi24.html#WangLW16,https://doi.org/10.1109/TVLSI.2016.2535377 +Davide Giri,Parallel and Serial Computation in Nanomagnet Logic: An Overview.,2018,26,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi26.html#GiriCR18,http://doi.ieeecomputersociety.org/10.1109/TVLSI.2018.2821107 +Ying Zhang,Automatic Test Program Generation Using Executing-Trace-Based Constraint Extraction for Embedded Processors.,2013,21,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi21.html#ZhangLL13,https://doi.org/10.1109/TVLSI.2012.2208130 +Zachary K. Baker,A computationally efficient engine for flexible intrusion detection.,2005,13,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi13.html#BakerP05,https://doi.org/10.1109/TVLSI.2005.859472 +Wai-Kei Mak,Rethinking the Wirelength Benefit of 3-D Integration.,2012,20,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi20.html#MakC12,https://doi.org/10.1109/TVLSI.2011.2176353 +Abbes Amira,Power Modeling and Efficient FPGA Implementation of FHT for Signal Processing.,2007,15,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi15.html#AmiraC07,https://doi.org/10.1109/TVLSI.2007.893606 +Chunhong Chen,On gate level power optimization using dual-supply voltages.,2001,9,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi9.html#ChenSS01,https://doi.org/10.1109/92.953496 +Sudarshan Banerjee,Exploiting Application Data-Parallelism on Dynamically Reconfigurable Architectures: Placement and Architectural Considerations.,2009,17,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi17.html#BanerjeeBD09,https://doi.org/10.1109/TVLSI.2008.2003490 +Yung-Chuan Jiang,Temporal Partitioning Data Flow Graphs for Dynamically Reconfigurable Computing.,2007,15,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi15.html#JiangW07,https://doi.org/10.1109/TVLSI.2007.909806 +Hao-Chiao Hong,A Design-for-Digital-Testability Circuit Structure for Sigma-Delta Modulators.,2007,15,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi15.html#Hong07,https://doi.org/10.1109/TVLSI.2007.909799 +Jente B. Kuang,Circuit Techniques Utilizing Independent Gate Control in Double-Gate Technologies.,2008,16,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi16.html#KuangKCNGN08,https://doi.org/10.1109/TVLSI.2008.2001564 +Ali Ahmed 0005,Resource-Efficient SRAM-Based Ternary Content Addressable Memory.,2017,25,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi25.html#AhmedPB17,https://doi.org/10.1109/TVLSI.2016.2636294 +Wei-Hen Lo,Architecture of Ring-Based Redundant TSV for Clustered Faults.,2016,24,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi24.html#LoCH16,https://doi.org/10.1109/TVLSI.2016.2558514 +Heechai Kang,Architecture-Aware Analytical Yield Model for Read Access in Static Random Access Memory.,2015,23,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi23.html#KangKJYJ15,https://doi.org/10.1109/TVLSI.2014.2321897 +Arnab Raha,Designing Energy-Efficient Intermittently Powered Systems Using Spin-Hall-Effect-Based Nonvolatile SRAM.,2018,26,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi26.html#RahaJSJRR18,https://doi.org/10.1109/TVLSI.2017.2767033 +Jesus Omar Lacruz,Simplified Trellis Min-Max Decoder Architecture for Nonbinary Low-Density Parity-Check Codes.,2015,23,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi23.html#LacruzGDV15,https://doi.org/10.1109/TVLSI.2014.2344113 +Nuno Neves 0002,Adaptive In-Cache Streaming for Efficient Data Management.,2017,25,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi25.html#NevesTR17,https://doi.org/10.1109/TVLSI.2017.2671405 +Teijo Lehtonen,Self-Adaptive System for Addressing Permanent Errors in On-Chip Interconnects.,2010,18,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi18.html#LehtonenWLPA10,https://doi.org/10.1109/TVLSI.2009.2013711 +Leonid Azriel,Using Scan Side Channel to Detect IP Theft.,2017,25,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi25.html#AzrielGGM17,https://doi.org/10.1109/TVLSI.2017.2715188 +Atsushi Sakai,Reduction of coupling effects by optimizing the 3-D configuration of the routing grid.,2003,11,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi11.html#SakaiYMY03,https://doi.org/10.1109/TVLSI.2003.817126 +Ricardo Chaves,Cost-Efficient SHA Hardware Accelerators.,2008,16,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi16.html#ChavesKSV08,https://doi.org/10.1109/TVLSI.2008.2000450 +Daniel Audet,Pipelining communications in large VLSI/ULSI systems.,1994,2,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi2.html#AudetSA94,https://doi.org/10.1109/92.273144 +Brian Swahn,Electro-Thermal Analysis of Multi-Fin Devices.,2008,16,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi16.html#SwahnH08,https://doi.org/10.1109/TVLSI.2008.2000455 +Dirk Ziegenbein,SPI - a system model for heterogeneously specified embedded systems.,2002,10,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi10.html#ZiegenbeinRETT02,https://doi.org/10.1109/TVLSI.2002.807767 +Xinmiao Zhang,Further Exploring the Strength of Prediction in the Factorization of Soft-Decision Reed-Solomon Decoding.,2007,15,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi15.html#Zhang07,https://doi.org/10.1109/TVLSI.2007.899238 +Sandra J. Weber,Co-RAM: combinational logic synthesis applied to software partitions for mapping to a novel memory device.,2001,9,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi9.html#WeberPT01,https://doi.org/10.1109/92.974894 +Kevin Brownell,Automating Design of Voltage Interpolation to Address Process Variations.,2011,19,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi19.html#BrownellKWB11,https://doi.org/10.1109/TVLSI.2009.2034457 +Alexei Jolondz,L1-L2 Interconnect Design Methodology and Arbitration in 3-D IC Multicore Compute Clusters.,2014,22,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi22.html#JolondzWG14,https://doi.org/10.1109/TVLSI.2013.2284259 +Sara Choi,Corner-Aware Dynamic Gate Voltage Scheme to Achieve High Read Yield in STT-RAM.,2016,24,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi24.html#ChoiNKKKJ16,https://doi.org/10.1109/TVLSI.2016.2532878 +Jaemin Kim,Aging Management Using a Reconfigurable Switch Network for Arrays of Nonideal Power Cells.,2018,26,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi26.html#KimSCKC18,http://doi.ieeecomputersociety.org/10.1109/TVLSI.2018.2800700 +Suma George,A Programmable and Configurable Mixed-Mode FPAA SoC.,2016,24,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi24.html#GeorgeKSHCAWNR16,https://doi.org/10.1109/TVLSI.2015.2504119 +Liang Wu 0003,A 0.9-5.8-GHz Software-Defined Receiver RF Front-End With Transformer-Based Current-Gain Boosting and Harmonic Rejection Calibration.,2017,25,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi25.html#WuNZLCLL17,https://doi.org/10.1109/TVLSI.2017.2695719 +Jiafeng Xie,Low Latency Systolic Montgomery Multiplier for Finite Field $GF(2^{m})$ Based on Pentanomials.,2013,21,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi21.html#XieHM13,https://doi.org/10.1109/TVLSI.2012.2185257 +Mario Donato Marino,Architectural Impacts of RFiop: RF to Address I/O Pad and Memory Controller Scalability.,2018,26,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi26.html#Marino18,http://doi.ieeecomputersociety.org/10.1109/TVLSI.2018.2821004 +Anthony J. Gadient,A dynamic approach to controlling high-level synthesis CAD tools.,1993,1,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi1.html#GadientT93,https://doi.org/10.1109/92.238446 +Tse-Wei Chen,Bandwidth Adaptive Hardware Architecture of K-Means Clustering for Video Analysis.,2010,18,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi18.html#ChenC10,https://doi.org/10.1109/TVLSI.2009.2017543 +Yvain Thonnart,Power Reduction of Asynchronous Logic Circuits Using Activity Detection.,2009,17,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi17.html#ThonnartBVV09,https://doi.org/10.1109/TVLSI.2008.2011912 +Cheng-Hung Lin,Multimode Radix-4 SISO Kernel Design for Turbo/LDPC Decoding.,2015,23,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi23.html#LinY15,https://doi.org/10.1109/TVLSI.2014.2363777 +P. Dang,High Performance Architecture of an Application Specific Processor for the H.264 Deblocking Filter.,2008,16,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi16.html#Dang08,https://doi.org/10.1109/TVLSI.2008.2002683 +Pierre-Emmanuel Gaillardon,A Novel FPGA Architecture Based on Ultrafine Grain Reconfigurable Logic Cells.,2015,23,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi23.html#GaillardonTKM15,https://doi.org/10.1109/TVLSI.2014.2359385 +Felice Crupi,Buried Silicon-Germanium pMOSFETs: Experimental Analysis in VLSI Logic Circuits Under Aggressive Voltage Scaling.,2012,20,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi20.html#CrupiAFMKGMWH12,https://doi.org/10.1109/TVLSI.2011.2159870 +Abdul Hafiz Alameh,A 0.13-µ*m CMOS Dynamically Reconfigurable Charge Pump for Electrostatic MEMS Actuation.,2017,25,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi25.html#AlamehN17,https://doi.org/10.1109/TVLSI.2016.2629439 +Mahmoud Zangeneh,Designing Tunable Subthreshold Logic Circuits Using Adaptive Feedback Equalization.,2016,24,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi24.html#ZangenehJ16,https://doi.org/10.1109/TVLSI.2015.2421881 +Aritra Hazra,Formal Verification of Architectural Power Intent.,2013,21,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi21.html#HazraGDP13,https://doi.org/10.1109/TVLSI.2011.2180548 +Rung-Bin Lin,Theoretical analysis of bus-invert coding.,2002,10,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi10.html#LinT02,https://doi.org/10.1109/TVLSI.2002.808456 +Server Kasap,Novel Field-Programmable Gate Array Architecture for Computing the Eigenvalue Decomposition of Para-Hermitian Polynomial Matrices.,2014,22,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi22.html#KasapR14,https://doi.org/10.1109/TVLSI.2013.2248069 +Arne Halaas,A recursive MISD architecture for pattern matching.,2004,12,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi12.html#HalaasSNSSB04,https://doi.org/10.1109/TVLSI.2004.830918 +Stanislaw J. Piestrak,Design of minimal-level PLA self-testing checkers for m-out-of-n codes.,1996,4,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi4.html#Piestrak96,https://doi.org/10.1109/92.502198 +Anantha Chandrakasan,Special Section on Low-Power Electronics and Design.,1998,6,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi6.html#ChandrakasanS98,https://doi.org/10.1109/TVLSI.1998.736122 +Xiaobai Chen,A Flexible and Energy-Efficient Convolutional Neural Network Acceleration With Dedicated ISA and Accelerator.,2018,26,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi26.html#ChenY18,http://doi.ieeecomputersociety.org/10.1109/TVLSI.2018.2810831 +Jason Meyer,Sharing of SRAM Tables Among NPN-Equivalent LUTs in SRAM-Based FPGAs.,2007,15,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi15.html#MeyerK07,https://doi.org/10.1109/TVLSI.2007.893581 +Daniel Kraak,Impact and Mitigation of Sense Amplifier Aging Degradation Using Realistic Workloads.,2017,25,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi25.html#KraakTAHWCC17,https://doi.org/10.1109/TVLSI.2017.2746798 +Mehdi Sadi,Design of Reliable SoCs With BIST Hardware and Machine Learning.,2017,25,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi25.html#SadiCCWT17,https://doi.org/10.1109/TVLSI.2017.2734685 +Suhaib A. Fahmy,Architecture for Real-Time Nonparametric Probability Density Function Estimation.,2013,21,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi21.html#FahmyM13,https://doi.org/10.1109/TVLSI.2012.2201187 +Kai-Chiang Wu,Power-Planning-Aware Soft Error Hardening via Selective Voltage Assignment.,2014,22,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi22.html#WuM14,https://doi.org/10.1109/TVLSI.2012.2236658 +Daniel D. Gajski,System design methodologies: aiming at the 100 h design cycle.,1996,4,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi4.html#GajskiNRVF96,https://doi.org/10.1109/92.486082 +Hassan Mostafa,Statistical SRAM Read Access Yield Improvement Using Negative Capacitance Circuits.,2013,21,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi21.html#MostafaAE13,https://doi.org/10.1109/TVLSI.2011.2178046 +Zhenghao Lu,Design of a CMOS Broadband Transimpedance Amplifier With Active Feedback.,2010,18,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi18.html#LuYLDB10,https://doi.org/10.1109/TVLSI.2008.2012262 +M. Agarwala,An architecture for a DSP field-programmable gate array.,1995,3,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi3.html#AgarwalaB95,https://doi.org/10.1109/92.365460 +Amin Khajeh,Embedded Memories Fault-Tolerant Pre- and Post-Silicon Optimization.,2011,19,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi19.html#KhajehEK11,https://doi.org/10.1109/TVLSI.2010.2056397 +Jason Cong,FPGA-RPI: A Novel FPGA Architecture With RRAM-Based Programmable Interconnects.,2014,22,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi22.html#CongX14,https://doi.org/10.1109/TVLSI.2013.2259512 +Reza Zendegani,RoBA Multiplier: A Rounding-Based Approximate Multiplier for High-Speed yet Energy-Efficient Digital Signal Processing.,2017,25,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi25.html#ZendeganiKBAP17,https://doi.org/10.1109/TVLSI.2016.2587696 +Krit Athikulwongse,Exploiting Die-to-Die Thermal Coupling in 3-D IC Placement.,2014,22,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi22.html#AthikulwongseEL14,https://doi.org/10.1109/TVLSI.2013.2285593 +Mahmoud Meribout,Efficient metrics and high-level synthesis for dynamically reconfigurable logic.,2004,12,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi12.html#MeriboutM04,https://doi.org/10.1109/TVLSI.2004.827564 +Szu-Pang Mu,Statistical Framework and Built-In Self-Speed-Binning System for Speed Binning Using On-Chip Ring Oscillators.,2016,24,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi24.html#MuCCW16,https://doi.org/10.1109/TVLSI.2015.2478921 +Ou He,UNISM: Unified Scheduling and Mapping for General Networks on Chip.,2012,20,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi20.html#HeDJBP12,https://doi.org/10.1109/TVLSI.2011.2159280 +Rafael Maestre,A framework for reconfigurable computing: task scheduling and context management.,2001,9,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi9.html#MaestreKFHBS01a,https://doi.org/10.1109/92.974899 +Himanshu Markandeya,Low-Power System for Detection of Symptomatic Patterns in Audio Biological Signals.,2016,24,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi24.html#Markandeya016,https://doi.org/10.1109/TVLSI.2016.2521869 +Eisse Mensink,Optimal Positions of Twists in Global On-Chip Differential Interconnects.,2007,15,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi15.html#MensinkSKTN07,https://doi.org/10.1109/TVLSI.2007.893661 +Anil Kanduri,Accuracy-Aware Power Management for Many-Core Systems Running Error-Resilient Applications.,2017,25,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi25.html#KanduriHRLJTD17,https://doi.org/10.1109/TVLSI.2017.2694388 +Jin-Wei Jhang,A High-SNR Projection-Based Atom Selection OMP Processor for Compressive Sensing.,2016,24,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi24.html#JhangH16,https://doi.org/10.1109/TVLSI.2016.2554401 +Jiann-Jong Chen,Sub-1-V Fast-Response Hysteresis-Controlled CMOS Buck Converter Using Adaptive Ramp Techniques.,2013,21,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi21.html#ChenLWH13,https://doi.org/10.1109/TVLSI.2012.2218263 +Anh Thien Tran,Achieving High-Performance On-Chip Networks With Shared-Buffer Routers.,2014,22,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi22.html#TranB14,https://doi.org/10.1109/TVLSI.2013.2268548 +Shouyi Yin,CWFP: Novel Collective Writeback and Fill Policy for Last-Level DRAM Cache.,2016,24,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi24.html#YinXLLW16,https://doi.org/10.1109/TVLSI.2015.2507597 +Ted H. Szymanski,Power complexity of multiplexer-based optoelectronic crossbar switches.,2005,13,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi13.html#SzymanskiWG05,https://doi.org/10.1109/TVLSI.2005.844285 +Nuno Miguel Cardanha Paulino,Generation of Customized Accelerators for Loop Pipelining of Binary Instruction Traces.,2017,25,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi25.html#PaulinoFC17,https://doi.org/10.1109/TVLSI.2016.2573640 +Yiran Chen,Current demand balancing: a technique for minimization of current surge in high performance clock-gated microprocessors.,2005,13,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi13.html#ChenRK05,https://doi.org/10.1109/TVLSI.2004.840404 +Maxime Lecomte,An On-Chip Technique to Detect Hardware Trojans and Assist Counterfeit Identification.,2017,25,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi25.html#LecomteFM17,https://doi.org/10.1109/TVLSI.2016.2627525 +Jih-Sheng Shen,Reasoning and Learning-Based Dynamic Codec Reconfiguration for Varying Processing Requirements in Network-on-Chip.,2014,22,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi22.html#ShenH14,https://doi.org/10.1109/TVLSI.2013.2278334 +Yu-Shen Yang,Extraction error modeling and automated model debugging in high-performance custom designs.,2006,14,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi14.html#YangVTV06,https://doi.org/10.1109/TVLSI.2006.878346 +Yasmin Halawani,Modeling and Optimization of Memristor and STT-RAM-Based Memory for Low-Power Applications.,2016,24,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi24.html#HalawaniMHAS16,https://doi.org/10.1109/TVLSI.2015.2440392 +Mario Garrido,Multiplierless Unity-Gain SDF FFTs.,2016,24,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi24.html#GarridoAQG16,https://doi.org/10.1109/TVLSI.2016.2542583 +Lei Wang,Time multiplexed color image processing based on a CNN with cell-state outputs.,1998,6,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi6.html#WangGS98,https://doi.org/10.1109/92.678895 +Moo-young Kim,10-bit 100-MS/s Pipelined ADC Using Input-Swapped Opamp Sharing and Self-Calibrated V/I Converter.,2011,19,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi19.html#KimKLK11,https://doi.org/10.1109/TVLSI.2010.2050915 +Naoya Onizawa,Design of High-Throughput Fully Parallel LDPC Decoders Based on Wire Partitioning.,2010,18,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi18.html#OnizawaHG10,https://doi.org/10.1109/TVLSI.2008.2011360 +Jiying Xue,A Framework for Layout-Dependent STI Stress Analysis and Stress-Aware Circuit Optimization.,2012,20,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi20.html#XueDYWYY12,https://doi.org/10.1109/TVLSI.2010.2102374 +Wenpian Paul Zhang,Noise Modeling and Analysis of SAR ADCs.,2015,23,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi23.html#ZhangT15,https://doi.org/10.1109/TVLSI.2014.2379613 +Ruzica Jevtic,Per-Core DVFS With Switched-Capacitor Converters for Energy Efficiency in Manycore Processors.,2015,23,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi23.html#JevticLBBAAN15,https://doi.org/10.1109/TVLSI.2014.2316919 +Yongsheng Xu,5-bit 5-GS/s Noninterleaved Time-Based ADC in 65-nm CMOS for Radio-Astronomy Applications.,2016,24,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi24.html#XuWBH16,https://doi.org/10.1109/TVLSI.2016.2558105 +Yukiko Umemoto,28 nm 50% Power-Reducing Contacted Mask Read Only Memory Macro With 0.72-ns Read Access Time Using 2T Pair Bitcell and Dynamic Column Source Bias Control Technique.,2014,22,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi22.html#UmemotoNIYOTTTMMY14,https://doi.org/10.1109/TVLSI.2013.2246201 +Vivek De,Guest editorial.,2003,11,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi11.html#DeB03,https://doi.org/10.1109/TVLSI.2003.818875 +Thomas Plos,Security-Enabled Near-Field Communication Tag With Flexible Architecture Supporting Asymmetric Cryptography.,2013,21,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi21.html#PlosHFSC13,https://doi.org/10.1109/TVLSI.2012.2227849 +Shunbin Li,An Adaptive PAM-4 Analog Equalizer With Boosting-State Detection in the Time Domain.,2017,25,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi25.html#LiJL17,https://doi.org/10.1109/TVLSI.2017.2720750 +Chia-Chun Lin,FTQLS: Fault-Tolerant Quantum Logic Synthesis.,2014,22,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi22.html#LinCJ14,https://doi.org/10.1109/TVLSI.2013.2269869 +Kanishka Lahiri,The LOTTERYBUS on-chip communication architecture.,2006,14,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi14.html#LahiriRL06,https://doi.org/10.1109/TVLSI.2006.878210 +Moo-young Kim,A Low-Jitter Open-Loop All-Digital Clock Generator With Two-Cycle Lock-Time.,2009,17,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi17.html#KimSCK09,https://doi.org/10.1109/TVLSI.2008.2004591 +Jigang Wu,Preprocessing and Partial Rerouting Techniques for Accelerating Reconfiguration of Degradable VLSI Arrays.,2010,18,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi18.html#WuSH10,https://doi.org/10.1109/TVLSI.2008.2009057 +Shih-Ying Sean Liu,Fast Thermal Aware Placement With Accurate Thermal Analysis Based on Green Function.,2014,22,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi22.html#LiuLACC14,https://doi.org/10.1109/TVLSI.2013.2268582 +Pasquale Corsonello,Area-time-power tradeoff in cellular arrays VLSI implementations.,2000,8,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi8.html#CorsonelloPC00,https://doi.org/10.1109/92.894167 +Frederik Vermeulen,Power-efficient flexible processor architecture for embedded applications.,2003,11,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi11.html#VermeulenCNVM03,https://doi.org/10.1109/TVLSI.2003.810779 +L. T. Clark,Reverse-body bias and supply collapse for low effective standby power.,2004,12,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi12.html#ClarkMB04,https://doi.org/10.1109/TVLSI.2004.832930 +Donkyu Baek,Compressed On-Chip Framebuffer Cache for Low-Power Display Systems.,2017,25,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi25.html#BaekCS17,https://doi.org/10.1109/TVLSI.2016.2636849 +Shahar Kvatinsky,Memristor-Based Material Implication (IMPLY) Logic: Design Principles and Methodologies.,2014,22,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi22.html#KvatinskySWFKW14,https://doi.org/10.1109/TVLSI.2013.2282132 +Jiajing Wang,Minimum Supply Voltage and Yield Estimation for Large SRAMs Under Parametric Variations.,2011,19,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi19.html#WangC11,https://doi.org/10.1109/TVLSI.2010.2071890 +Hong-Shin Jun,Design of a pipelined datapath synthesis system for digital signal processing.,1994,2,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi2.html#JunH94,https://doi.org/10.1109/92.311638 +Jhih-Wei You,In-Situ Method for TSV Delay Testing and Characterization Using Input Sensitivity Analysis.,2013,21,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi21.html#YouHLTKCW13,https://doi.org/10.1109/TVLSI.2012.2187543 +Behzad Ebrahimi,Statistical Design Optimization of FinFET SRAM Using Back-Gate Voltage.,2011,19,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi19.html#EbrahimiRAP11,https://doi.org/10.1109/TVLSI.2010.2059054 +Da-Cheng Juan,An Efficient Wake-Up Strategy Considering Spurious Glitches Phenomenon for Power Gating Designs.,2010,18,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi18.html#JuanCLC10,https://doi.org/10.1109/TVLSI.2008.2010324 +Nan Wang 0003,Leakage-Power-Aware Scheduling With Dual-Threshold Voltage Design.,2016,24,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi24.html#WangZHCYZ16,https://doi.org/10.1109/TVLSI.2016.2535221 +Matteo Tomasi,Real-Time Architecture for a Robust Multi-Scale Stereo Engine on FPGA.,2012,20,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi20.html#TomasiVBDR12,https://doi.org/10.1109/TVLSI.2011.2172007 +Taewoo Han,Majority-Based Test Access Mechanism for Parallel Testing of Multiple Identical Cores.,2015,23,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi23.html#HanCK15,https://doi.org/10.1109/TVLSI.2014.2341674 +Pramod Kumar Meher,CORDIC Designs for Fixed Angle of Rotation.,2013,21,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi21.html#MeherP13,https://doi.org/10.1109/TVLSI.2012.2187080 +Hamid Shojaei,Collaborative Multiobjective Global Routing.,2013,21,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi21.html#ShojaeiDB13,https://doi.org/10.1109/TVLSI.2012.2205717 +Seong-In Hwang,Block-Circulant RS-LDPC Code: Code Construction and Efficient Decoder Design.,2013,21,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi21.html#HwangL13,https://doi.org/10.1109/TVLSI.2012.2210452 +Dimitris Gizopoulos,"Guest Editorial: Special Section on ""Autonomous Silicon Validation and Testing of Microprocessors and Microprocessor-Based Systems"".",2007,15,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi15.html#GizopoulosAK07,https://doi.org/10.1109/TVLSI.2007.896903 +Ali Keshavarzi,Multiple-parameter CMOS IC testing with increased sensitivity for IDDQ.,2003,11,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi11.html#KeshavarziRHD03,https://doi.org/10.1109/TVLSI.2003.812298 +Xiongfei Meng,Layout of Decoupling Capacitors in IP Blocks for 90-nm CMOS.,2008,16,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi16.html#MengSA08,https://doi.org/10.1109/TVLSI.2008.2001240 +Georgios Karakonstantis,Process-Variation Resilient and Voltage-Scalable DCT Architecture for Robust Low-Power Computing.,2010,18,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi18.html#KarakonstantisBR10,https://doi.org/10.1109/TVLSI.2009.2025279 +Atanu Chattopadhyay,Flexible and Reconfigurable Mismatch-Tolerant Serial Clock Distribution Networks.,2012,20,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi20.html#ChattopadhyayZ12,https://doi.org/10.1109/TVLSI.2011.2104982 +Yi-Min Lin,Improved High Code-Rate Soft BCH Decoder Architectures With One Extra Error Compensation.,2013,21,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi21.html#LinCL13,https://doi.org/10.1109/TVLSI.2012.2227847 +Ting-Jung Lin,A Fine-Grain Dynamically Reconfigurable Architecture Aimed at Reducing the FPGA-ASIC Gaps.,2014,22,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi22.html#LinZJ14,https://doi.org/10.1109/TVLSI.2013.2294694 +Youngjoo Lee,High-Throughput and Low-Complexity BCH Decoding Architecture for Solid-State Drives.,2014,22,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi22.html#LeeYYP14,https://doi.org/10.1109/TVLSI.2013.2264687 +Soon-Chan Kwon,A Fast and Reliable Cross-Point Three-State/Cell ReRAM.,2017,25,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi25.html#KwonBCK17,https://doi.org/10.1109/TVLSI.2016.2645384 +Maryam Karimi,A Low Area Overhead NBTI/PBTI Sensor for SRAM Memories.,2017,25,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi25.html#KarimiRM17,https://doi.org/10.1109/TVLSI.2017.2734839 +Weixun Wang,System-Wide Leakage-Aware Energy Minimization Using Dynamic Voltage Scaling and Cache Reconfiguration in Multitasking Systems.,2012,20,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi20.html#WangM12,https://doi.org/10.1109/TVLSI.2011.2116814 +Junwhan Ahn,Low-Power Hybrid Memory Cubes With Link Power Management and Two-Level Prefetching.,2016,24,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi24.html#AhnYC16,https://doi.org/10.1109/TVLSI.2015.2420315 +Golnar Khodabandehloo,Analog Implementation of a Novel Resistive-Type Sigmoidal Neuron.,2012,20,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi20.html#KhodabandehlooMA12,https://doi.org/10.1109/TVLSI.2011.2109404 +William Fornaciari,Power estimation of embedded systems: a hardware/software codesign approach.,1998,6,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi6.html#FornaciariGSS98,https://doi.org/10.1109/92.678887 +Sravan K. Marella,A Holistic Analysis of Circuit Performance Variations in 3-D ICs With Thermal and TSV-Induced Stress Considerations.,2015,23,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi23.html#MarellaS15,https://doi.org/10.1109/TVLSI.2014.2335154 +Yung-Hui Chung,A 24- and#956*W 12-bit 1-MS/s SAR ADC With Two-Step Decision DAC Switching in 110-nm CMOS.,2016,24,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi24.html#ChungYW16,https://doi.org/10.1109/TVLSI.2016.2547958 +Zimu Guo,SCARe: An SRAM-Based Countermeasure Against IC Recycling.,2018,26,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi26.html#GuoXRTF18,https://doi.org/10.1109/TVLSI.2017.2777262 +Jisu Kim,A Novel Sensing Circuit for Deep Submicron Spin Transfer Torque MRAM (STT-MRAM).,2012,20,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi20.html#KimRKJ12,https://doi.org/10.1109/TVLSI.2010.2088143 +William F. McLaughlin,Asynchronous Protocol Converters for Two-Phase Delay-Insensitive Global Communication.,2009,17,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi17.html#McLaughlinMN09,https://doi.org/10.1109/TVLSI.2009.2017909 +H. Yamamoto,Decreased Effectiveness of On-Chip Decoupling Capacitance in High-Frequency Operation.,2007,15,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi15.html#YamamotoD07,https://doi.org/10.1109/TVLSI.2007.898670 +Cory E. Merkel,Temperature Sensing RRAM Architecture for 3-D ICs.,2014,22,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi22.html#MerkelK14,https://doi.org/10.1109/TVLSI.2013.2256378 +Kalyan Bhattacharyya,Temperature Characteristics and Analysis of Monolithic Microwave CMOS Distributed Oscillators With ${G}_{m}$-Varied Gain Cells and Folded Coplanar Interconnects.,2012,20,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi20.html#BhattacharyyaS12,https://doi.org/10.1109/TVLSI.2011.2148130 +Hooman Jarollahi,Algorithm and Architecture for a Low-Power Content-Addressable Memory Based on Sparse Clustered Networks.,2015,23,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi23.html#JarollahiGOG15,https://doi.org/10.1109/TVLSI.2014.2316733 +Vikram Chaturvedi,An 8-to-1 bit 1-MS/s SAR ADC With VGA and Integrated Data Compression for Neural Recording.,2013,21,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi21.html#ChaturvediAA13,https://doi.org/10.1109/TVLSI.2013.2238957 +Paul E. Landman,Architectural power analysis: The dual bit type method.,1995,3,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi3.html#LandmanR95,https://doi.org/10.1109/92.386219 +Soo Yun Hwang,Implementation of a Self-Motivated Arbitration Scheme for the Multilayer AHB Busmatrix.,2010,18,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi18.html#HwangKPJ10,https://doi.org/10.1109/TVLSI.2009.2015665 +Cheng Zhuo,Silicon-Validated Power Delivery Modeling and Analysis on a 32-nm DDR I/O Interface.,2015,23,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi23.html#ZhuoWCACS15,https://doi.org/10.1109/TVLSI.2014.2355230 +Kazuteru Namba,On Coding for Endurance Enhancement and Error Control of Phase Change Memories With Write Latency Reduction.,2018,26,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi26.html#NambaL18,https://doi.org/10.1109/TVLSI.2017.2766362 +Keshab K. Parhi,"Comments on ""Low-energy CSMT carry generators and binary adders"".",2013,21,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi21.html#Parhi13,https://doi.org/10.1109/TVLSI.2012.2190771 +Irith Pomeranz,Hazard-Based Detection Conditions for Improved Transition Fault Coverage of Scan-Based Tests.,2010,18,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi18.html#PomeranzR10,https://doi.org/10.1109/TVLSI.2008.2010216 +Zhenqi Wei,HAVA: Heterogeneous Multicore ASIP for Multichannel Low-Bit-Rate Vocoder Applications.,2016,24,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi24.html#WeiLSDZGY16,https://doi.org/10.1109/TVLSI.2015.2509459 +Zhibin Xiao,Processor Tile Shapes and Interconnect Topologies for Dense On-Chip Networks.,2014,22,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi22.html#XiaoB14,https://doi.org/10.1109/TVLSI.2013.2265937 +John Lach,Low overhead fault-tolerant FPGA systems.,1998,6,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi6.html#LachMP98,https://doi.org/10.1109/92.678870 +Jian Sun,Fully Monolithic Cellular Buck Converter Design for 3-D Power Delivery.,2009,17,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi17.html#SunGDLCG09,https://doi.org/10.1109/TVLSI.2008.2005312 +Ransford Hyman Jr.,A Clock Control Strategy for Peak Power and RMS Current Reduction Using Path Clustering.,2013,21,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi21.html#HymanRBV13,https://doi.org/10.1109/TVLSI.2012.2186989 +Dharmendra Saraswat,Fast Passivity Verification and Enforcement via Reciprocal Systems for Interconnects With Large Order Macromodels.,2007,15,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi15.html#SaraswatAN07,https://doi.org/10.1109/TVLSI.2007.891085 +Smaragda Konstantinidou,The selective extra stage butterfly.,1993,1,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi1.html#Konstantinidou93,https://doi.org/10.1109/92.238419 +Dongming Peng,On exploring inter-iteration parallelism within rate-balanced multirate multidimensional DSP algorithms.,2005,13,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi13.html#PengL05a,https://doi.org/10.1109/TVLSI.2004.840401 +Kyeong-Sik Min,Leakage-suppressed clock-gating circuit with Zigzag Super Cut-off CMOS (ZSCCMOS) for leakage-dominant sub-70-nm and sub-1-V-V/sub DD/ LSIs.,2006,14,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi14.html#MinCCKS06,https://doi.org/10.1109/TVLSI.2006.874378 +Kamal S. Khouri,Leakage power analysis and reduction during behavioral synthesis.,2002,10,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi10.html#KhouriJ02,https://doi.org/10.1109/TVLSI.2002.808436 +Jyu-Yuan Lai,Elixir: High-Throughput Cost-Effective Dual-Field Processors and the Design Framework for Elliptic Curve Cryptography.,2008,16,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi16.html#LaiH08,https://doi.org/10.1109/TVLSI.2008.2001239 +Gaetano Borriello,The Triptych FPGA architecture.,1995,3,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi3.html#BorrielloEHB95,https://doi.org/10.1109/92.475968 +Hemasundar Mohan Geddada,Design Techniques to Improve Blocker Tolerance of Continuous-Time Δ Σ ADCs.,2015,23,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi23.html#GeddadaPJSKG15,https://doi.org/10.1109/TVLSI.2014.2303815 +Shao-Ying Yeh,Cost-Efficient Frequency-Domain MIMO-OFDM Modem With an SIMD ALU-Based Architecture.,2015,23,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi23.html#YehLLH15,https://doi.org/10.1109/TVLSI.2014.2377780 +Sami Ur Rehman,A Temperature Estimation Method Using the Ratio of Emitter-to-Base Voltages.,2017,25,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi25.html#RehmanS17,https://doi.org/10.1109/TVLSI.2017.2681941 +Chien-Yu Hsieh,Independently-Controlled-Gate FinFET Schmitt Trigger Sub-Threshold SRAMs.,2012,20,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi20.html#HsiehFHSC12,https://doi.org/10.1109/TVLSI.2011.2156435 +Tianpei Zhang,Simultaneous Shield and Buffer Insertion for Crosstalk Noise Reduction in Global Routing.,2007,15,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi15.html#ZhangS07,https://doi.org/10.1109/TVLSI.2007.898641 +Chun-Yi Kuo,Testing of TSV-Induced Small Delay Faults for 3-D Integrated Circuits.,2014,22,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi22.html#KuoSLLC14,https://doi.org/10.1109/TVLSI.2013.2250320 +Peeyoosh Mirajkar,Low Phase Noise Ku-Band VCO With Optimal Switched-Capacitor Bank Design.,2018,26,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi26.html#MirajkarCAT18,https://doi.org/10.1109/TVLSI.2017.2769709 +Pete M. Campbell,A very wide bandwidth digital VCO using quadrature frequency multiplication and division implemented in AlGaAs/GaAs HBT's.,1998,6,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi6.html#CampbellGGSCEPMKM98,https://doi.org/10.1109/92.661246 +Chih-Rung Chen,A 0.64 mm 2 Real-Time Cascade Face Detection Design Based on Reduced Two-Field Extraction.,2011,19,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi19.html#ChenWC11,https://doi.org/10.1109/TVLSI.2010.2069575 +Manash Chanda,Implementation of Subthreshold Adiabatic Logic for Ultralow-Power Application.,2015,23,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi23.html#ChandaJDS15,https://doi.org/10.1109/TVLSI.2014.2385817 +Babak Zamanlooy,Efficient VLSI Implementation of Neural Networks With Hyperbolic Tangent Activation Function.,2014,22,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi22.html#ZamanlooyM14,https://doi.org/10.1109/TVLSI.2012.2232321 +O. Kibar,High-speed CMOS switch designs for free-space optoelectronic MIN's.,1998,6,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi6.html#KibarME98,https://doi.org/10.1109/92.711309 +Ruibing Lu,SAMBA-Bus: A High Performance Bus Architecture for System-on-Chips.,2007,15,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi15.html#LuCK07,https://doi.org/10.1109/TVLSI.2007.891091 +Raguraman Venkatesan,Optimal n-tier multilevel interconnect architectures for gigascale integration (GSI).,2001,9,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi9.html#VenkatesanDBM01,https://doi.org/10.1109/92.974903 +Supriya Chakraborty,Current Optimized Coset Coding for Efficient RRAM Programming.,2018,26,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi26.html#ChakrabortyBS18,http://doi.ieeecomputersociety.org/10.1109/TVLSI.2018.2791528 +Massoud Tohidian,A Fully Integrated Discrete-Time Superheterodyne Receiver.,2017,25,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi25.html#TohidianMS17,https://doi.org/10.1109/TVLSI.2016.2598857 +Rupak Samanta,Discrete Buffer and Wire Sizing for Link-Based Non-Tree Clock Networks.,2010,18,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi18.html#SamantaHL10,https://doi.org/10.1109/TVLSI.2009.2019088 +Jim Ng,Defragmentation for Efficient Runtime Resource Management in NoC-Based Many-Core Systems.,2016,24,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi24.html#NgWSM16,https://doi.org/10.1109/TVLSI.2016.2548564 +Zhong Guan,Incorporating Process Variations Into SRAM Electromigration Reliability Assessment Using Atomic Flux Divergence.,2016,24,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi24.html#GuanM16,https://doi.org/10.1109/TVLSI.2015.2501900 +Ka-Ming Keung,A Novel Charge Recycling Design Scheme Based on Adiabatic Charge Pump.,2007,15,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi15.html#KeungMT07,https://doi.org/10.1109/TVLSI.2007.899220 +Jinjun Xiong,Extended global routing with RLC crosstalk constraints.,2005,13,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi13.html#XiongH05,https://doi.org/10.1109/TVLSI.2004.842896 +Lei Wang 0003,Improving Error Tolerance for Multithreaded Register Files.,2008,16,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi16.html#WangP08,https://doi.org/10.1109/TVLSI.2008.2000521 +Sun-Mi Park,Fast Bit-Parallel Shifted Polynomial Basis Multiplier Using Weakly Dual Basis Over GF(2m).,2011,19,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi19.html#ParkC11,https://doi.org/10.1109/TVLSI.2010.2075946 +Ivan Ratkovic,Vector Processing-Aware Advanced Clock-Gating Techniques for Low-Power Fused Multiply-Add.,2018,26,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi26.html#RatkovicPSUCV18,https://doi.org/10.1109/TVLSI.2017.2784807 +Jason M. Allred,Dark Silicon Aware Multicore Systems: Employing Design Automation With Architectural Insight.,2014,22,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi22.html#AllredRC14,https://doi.org/10.1109/TVLSI.2013.2265338 +Baruch Solomon,Micro-operation cache: a power aware frontend for variable instruction length ISA.,2003,11,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi11.html#SolomonMROA03,https://doi.org/10.1109/TVLSI.2003.814327 +I. Faik Baskaya,Placement for large-scale floating-gate field-programable analog arrays.,2006,14,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi14.html#BaskayaRLA06,https://doi.org/10.1109/TVLSI.2006.878477 +Magdy A. El-Moursy,Shielding effect of on-chip interconnect inductance.,2005,13,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi13.html#El-MoursyF05,https://doi.org/10.1109/TVLSI.2004.842315 +Mauro Olivieri,Theoretical system-level limits of power dissipation reduction under a performance constraint in VLSI microprocessor design.,2002,10,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi10.html#Olivieri02,https://doi.org/10.1109/TVLSI.2002.801549 +Chih-Yen Lo,STEAC: A Platform for Automatic SOC Test Integration.,2007,15,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi15.html#LoWCHWWW07,https://doi.org/10.1109/TVLSI.2007.893662 +Dong Wang 0006,A Performance-Aware MOSFET Threshold Voltage Measurement Circuit in a 65-nm CMOS.,2016,24,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi24.html#WangTC16,https://doi.org/10.1109/TVLSI.2015.2465841 +Chao-Da Huang,ProTaR: An Infrastructure IP for Repairing RAMs in System-on-Chips.,2007,15,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi15.html#HuangLT07,https://doi.org/10.1109/TVLSI.2007.903940 +Baker Mohammad,Embedded Memory Interface Logic and Interconnect Testing.,2015,23,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi23.html#Mohammad15,https://doi.org/10.1109/TVLSI.2014.2354381 +Yi Zhao,Online Fault Tolerance Technique for TSV-Based 3-D-IC.,2015,23,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi23.html#ZhaoKA15,https://doi.org/10.1109/TVLSI.2014.2343156 +L. K. John,A dynamically reconfigurable interconnect for array processors.,1998,6,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi6.html#JohnJ98,https://doi.org/10.1109/92.661257 +Wei-Chih Hsieh,Adaptive Power Control Technique on Power-Gated Circuitries.,2011,19,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi19.html#HsiehH11,https://doi.org/10.1109/TVLSI.2010.2048587 +Ching-Che Chung,A Low-Cost Low-Power All-Digital Spread-Spectrum Clock Generator.,2015,23,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi23.html#ChungSH15,https://doi.org/10.1109/TVLSI.2014.2318753 +Elio Consoli,Novel Class of Energy-Efficient Very High-Speed Conditional Push-Pull Pulsed Latches.,2014,22,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi22.html#ConsoliPRA14,https://doi.org/10.1109/TVLSI.2013.2276100 +Dean Michael Ancajas,Wearout Resilience in NoCs Through an Aging Aware Adaptive Routing Algorithm.,2015,23,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi23.html#AncajasBCR15,https://doi.org/10.1109/TVLSI.2014.2305335 +Gabriel Luca Nazar,Fine-Grained Fast Field-Programmable Gate Array Scrubbing.,2015,23,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi23.html#NazarSC15,https://doi.org/10.1109/TVLSI.2014.2330742 +Yu-Liang Wu,Further improve circuit partitioning using GBAW logic perturbation techniques.,2003,11,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi11.html#WuCCF03,https://doi.org/10.1109/TVLSI.2003.812369 +Ching-Che Chung,A Wide-Range Low-Cost All-Digital Duty-Cycle Corrector.,2015,23,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi23.html#ChungSL15,https://doi.org/10.1109/TVLSI.2014.2370631 +Rajeev Narayanan,Statistical Run-Time Verification of Analog Circuits in Presence of Noise and Process Variation.,2013,21,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi21.html#NarayananSZT13,https://doi.org/10.1109/TVLSI.2012.2219083 +Suchismita Roy,Satisfiability Models for Maximum Transition Power.,2008,16,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi16.html#RoyCD08,https://doi.org/10.1109/TVLSI.2008.2000322 +Meikang Qiu,Dynamic and Leakage Energy Minimization With Soft Real-Time Loop Scheduling and Voltage Assignment.,2010,18,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi18.html#QiuYSS10,https://doi.org/10.1109/TVLSI.2008.2010941 +Adam B. Kinsman,Time-Multiplexed Compressed Test of SOC Designs.,2010,18,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi18.html#KinsmanN10,https://doi.org/10.1109/TVLSI.2009.2021602 +Santanu Dutta,A circuit-driven design methodology for video signal-processing datapath elements.,1999,7,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi7.html#DuttaW99,https://doi.org/10.1109/92.766750 +Hyojin Choi,VLSI Implementation of BCH Error Correction for Multilevel Cell NAND Flash Memory.,2010,18,IEEE Trans. VLSI Syst.,5,db/journals/tvlsi/tvlsi18.html#ChoiLS10,https://doi.org/10.1109/TVLSI.2009.2015666 +Sunghoon Chun,MICRO: a new hybrid test data compression/decompression scheme.,2006,14,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi14.html#ChunKIK06,https://doi.org/10.1109/TVLSI.2006.878227 +Esther P. Adeva,Efficient Architecture for Soft-Input Soft-Output Sphere Detection With Perfect Node Enumeration.,2016,24,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi24.html#AdevaF16,https://doi.org/10.1109/TVLSI.2016.2526904 +Chua-Chin Wang,A Wide Voltage Range Digital I/O Design Using Novel Floating N-Well Circuit.,2011,19,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi19.html#WangHLL11,https://doi.org/10.1109/TVLSI.2010.2049668 +Guiqiang Dong,Using Lifetime-Aware Progressive Programming to Improve SLC NAND Flash Memory Write Endurance.,2014,22,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi22.html#DongP014,https://doi.org/10.1109/TVLSI.2013.2267753 +Peter Grun,RTGEN-an algorithm for automatic generation of reservation tables from architectural descriptions.,2003,11,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi11.html#GrunHDN03,https://doi.org/10.1109/TVLSI.2003.813011 +Arkadiy Morgenshtein,"Corrections to ""Unified Logical Effort - A Method for Delay Evaluation and Minimization in Logic Paths With RC Interconnect"" [May 10 689-696].",2010,18,IEEE Trans. VLSI Syst.,8,db/journals/tvlsi/tvlsi18.html#MorgenshteinFGK10a,https://doi.org/10.1109/TVLSI.2010.2052421 +Xiaofei Wang,The Dependence of BTI and HCI-Induced Frequency Degradation on Interconnect Length and Its Circuit Level Implications.,2015,23,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi23.html#WangTJJK15,https://doi.org/10.1109/TVLSI.2014.2307589 +Mohammed Shoaib,Algorithm-Driven Architectural Design Space Exploration of Domain-Specific Medical-Sensor Processors.,2013,21,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi21.html#ShoaibJV13,https://doi.org/10.1109/TVLSI.2012.2220161 +Chunyu Peng,Average 7T1R Nonvolatile SRAM With R/W Margin Enhanced for Low-Power Application.,2018,26,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi26.html#PengXLZWCL18,https://doi.org/10.1109/TVLSI.2017.2772861 +Somnath Paul,A Variation-Aware Preferential Design Approach for Memory-Based Reconfigurable Computing.,2014,22,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi22.html#PaulMB14,https://doi.org/10.1109/TVLSI.2013.2295538 +Chanhee Oh,Efficient logic-level timing analysis using constraint-guided critical path search.,1996,4,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi4.html#OhM96,https://doi.org/10.1109/92.532035 +Tsung-Han Tsai,Single-Chip Design for Intelligent Surveillance System.,2018,26,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi26.html#TsaiC18,http://doi.ieeecomputersociety.org/10.1109/TVLSI.2018.2827385 +Iris Hui-Ru Jiang,ECOS: Stable Matching Based Metal-Only ECO Synthesis.,2012,20,IEEE Trans. VLSI Syst.,3,db/journals/tvlsi/tvlsi20.html#JiangC12,https://doi.org/10.1109/TVLSI.2011.2104377 +Rishi Chaturvedi,An efficient merging scheme for prescribed skew clock routing.,2005,13,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi13.html#ChaturvediH05,https://doi.org/10.1109/TVLSI.2005.848821 +Praveen Bhojwani,Robust Concurrent Online Testing of Network-on-Chip-Based SoCs.,2008,16,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi16.html#BhojwaniM08,https://doi.org/10.1109/TVLSI.2008.2000732 +Smita Bakshi,Partitioning and pipelining for performance-constrained hardware/software systems.,1999,7,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi7.html#BakshiG99,https://doi.org/10.1109/92.805749 +Chong Zhao,Intelligent Robustness Insertion for Optimal Transient Error Tolerance Improvement in VLSI Circuits.,2008,16,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi16.html#ZhaoZD08,https://doi.org/10.1109/TVLSI.2008.2000256 +Mani B. Srivastava,System level hardware module generation.,1995,3,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi3.html#SrivastavaB95,https://doi.org/10.1109/92.365451 +Paolo Ienne,Guest Editorial Special Section on Application Specific Processors.,2008,16,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi16.html#IenneP08,https://doi.org/10.1109/TVLSI.2008.2005245 +Luca Gaetano Amarù,High Speed Architectures for Finding the First two Maximum/Minimum Values.,2012,20,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi20.html#AmaruMM12,https://doi.org/10.1109/TVLSI.2011.2174166 +Salomon Beer,A Model for Supply Voltage and Temperature Variation Effects on Synchronizer Performance.,2015,23,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi23.html#BeerG15a,https://doi.org/10.1109/TVLSI.2014.2365255 +Mikhail Popovich,On-Chip Power Distribution Grids With Multiple Supply Voltages for High-Performance Integrated Circuits.,2008,16,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi16.html#PopovichFSK08,https://doi.org/10.1109/TVLSI.2008.2000515 +Dinesh Somasekhar,A 230-MHz half-bit level pipelined multiplier using true single-phase clocking.,1993,1,IEEE Trans. VLSI Syst.,4,db/journals/tvlsi/tvlsi1.html#SomasekharV93,https://doi.org/10.1109/92.250188 +Abhijit Jas,Test data compression technique for embedded cores using virtual scan chains.,2004,12,IEEE Trans. VLSI Syst.,7,db/journals/tvlsi/tvlsi12.html#JasPT04,https://doi.org/10.1109/TVLSI.2004.830911 +Zhengtao Yu 0002,Low-Power Rotary Clock Array Design.,2007,15,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi15.html#YuL07,https://doi.org/10.1109/TVLSI.2006.887804 +Artjom Grudnitsky,Efficient Partial Online Synthesis of Special Instructions for Reconfigurable Processors.,2017,25,IEEE Trans. VLSI Syst.,2,db/journals/tvlsi/tvlsi25.html#GrudnitskyBH17,https://doi.org/10.1109/TVLSI.2016.2585603 +Tzung-Je Lee,A Dynamic Leakage and Slew Rate Compensation Circuit for 40-nm CMOS Mixed-Voltage Output Buffer.,2017,25,IEEE Trans. VLSI Syst.,11,db/journals/tvlsi/tvlsi25.html#LeeTLCW17,https://doi.org/10.1109/TVLSI.2017.2736782 +Chua-Chin Wang,A 13-bit resolution ROM-less direct digital frequency synthesizer based on a trigonometric quadruple angle formula.,2004,12,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi12.html#WangTSLH04,https://doi.org/10.1109/TVLSI.2004.833664 +Meysam Akbari,Input Offset Estimation of CMOS Integrated Circuits in Weak Inversion.,2018,26,IEEE Trans. VLSI Syst.,9,db/journals/tvlsi/tvlsi26.html#AkbariHM18,http://doi.ieeecomputersociety.org/10.1109/TVLSI.2018.2830749 +Peng Ouyang,Energy Management on Battery-Powered Coarse-Grained Reconfigurable Platforms.,2015,23,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi23.html#OuyangYLW15,https://doi.org/10.1109/TVLSI.2014.2378289 +Yehia Massoud,Managing on-chip inductive effects.,2002,10,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi10.html#MassoudMKBMW02,https://doi.org/10.1109/TVLSI.2002.807763 +O. Milter,Crosstalk noise reduction in synthesized digital logic circuits.,2003,11,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi11.html#MilterK03,https://doi.org/10.1109/TVLSI.2003.817551 +Hassan Rabah,FPGA Implementation of Orthogonal Matching Pursuit for Compressive Sensing Reconstruction.,2015,23,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi23.html#RabahAMAM15,https://doi.org/10.1109/TVLSI.2014.2358716 +Yu Wang 0002,HS3-DPG: Hierarchical Simulation for 3-D P/G Network.,2015,23,IEEE Trans. VLSI Syst.,10,db/journals/tvlsi/tvlsi23.html#WangYTCMSY15,https://doi.org/10.1109/TVLSI.2014.2358582 +Jun Wang 0034,Effective Radii of On-Chip Decoupling Capacitors Under Noise Constraint.,2016,24,IEEE Trans. VLSI Syst.,12,db/journals/tvlsi/tvlsi24.html#WangLLCL16,https://doi.org/10.1109/TVLSI.2016.2559585 +Yu Cao,Effective on-chip inductance modeling for multiple signal lines and application to repeater insertion.,2002,10,IEEE Trans. VLSI Syst.,6,db/journals/tvlsi/tvlsi10.html#CaoHCLNXSH02,https://doi.org/10.1109/TVLSI.2002.808426 +Irith Pomeranz,Transition Path Delay Faults: A New Path Delay Fault Model for Small and Large Delay Defects.,2008,16,IEEE Trans. VLSI Syst.,1,db/journals/tvlsi/tvlsi16.html#PomeranzR08,https://doi.org/10.1109/TVLSI.2007.909796 diff --git a/experiments/data/webtables/__init__.py b/experiments/data/webtables/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/experiments/data_loader.py b/experiments/data_loader.py new file mode 100644 index 0000000..7a3bb3c --- /dev/null +++ b/experiments/data_loader.py @@ -0,0 +1,174 @@ +import random +import os +import pandas as pd + +from utils import * + + +class DataLoader: + def __init__(self, data_path): + self.data_path = data_path + self.files = os.listdir(data_path) + + def load_webtable_columns_randomized(self, reference_set_amount: int, source_set_amount: int) -> tuple[list, list]: + """ + Get randomized reference sets and source sets of webtable columns. + Reference sets are subsets of the source sets. + Only columns with 4 or more different elements are considered. + Only considering columns with non-numeric values. + + Args: + reference_set_amount (int): Number of reference sets to return. + source_set_amount (int): Number of source sets to return. + Returns: + tuple: A tuple containing a list of reference sets and a list of source sets. + """ + # Basic validation of input parameters + if reference_set_amount < 1 or source_set_amount < 2: + raise ValueError("reference_set_amount must be at least 1 and source_set_amount must be at least 2") + if reference_set_amount >= source_set_amount: + raise ValueError("reference_set_amount must be smaller than source_set_amount") + if reference_set_amount > len(self.files): + raise ValueError("reference_set_amount must be smaller than the number of files in data_path") + if source_set_amount > len(self.files): + raise ValueError("source_set_amount must be smaller than the number of files in data_path") + if len(self.files) == 0: + raise ValueError("data_path does not contain any files") + + + # Randomly select a reference set and source sets + source_set_nums = random.sample(range(len(self.files)), source_set_amount) + + # Pick source_set_amount of columns which have at least 4 different elements + source_sets = [] + while len(source_sets) < source_set_amount: + # Pick a random number from the source_set_nums + source_set_num = random.choice(source_set_nums) + file_path = os.path.join(self.data_path, self.files[source_set_num]) + + try: + with open(file_path, 'r', encoding='utf-8') as file: + json_data = json.load(file) + if "relation" in json_data and isinstance(json_data["relation"], list): + # pick random column + col = random.randint(0, len(json_data["relation"]) - 1) + col = json_data["relation"][col] + + # Check if the column has at least 4 different elements and contains no numeric values + if len(set(col)) >= 4: + if all(not is_convertible_to_number(value) and len(value) > 0 for value in col): + # Add the column to the source sets + source_sets.append(col) + print(f"Source set number {len(source_sets)} loaded") + + except Exception as e: + raise ValueError(f"Error loading JSON file: {e}") + + # Randomly select reference sets from the source sets + reference_sets = random.sample(source_sets, reference_set_amount) + return reference_sets, source_sets + + def load_webtable_reference_sets_element_restriction(self, source_set: list, element_restriction: int) -> list: + """ + Get a reference set of webtable columns with a specific element restriction. + Restriction is the minimal number of elements allowed in the reference set. + + Args: + source_set (list): The source set to use for generating the reference set. + element_restriction (int): The number of elements in the reference set. + Returns: + list: A list of reference sets. + """ + if element_restriction < 1: + raise ValueError("element_restriction must be at least 1") + + reference_sets = [] + + while len(reference_sets) < 1000: + # Randomly select a column from the source set + col = random.choice(source_set) + + # Check if the column has at least element_restriction different elements + if len(col) >= element_restriction: + reference_sets.append(col) + print(f"Reference set number {len(reference_sets)} loaded") + + return reference_sets + + def load_webtable_schemas_randomized(self, set_amount: int) -> list: + if set_amount < 2: + raise ValueError("source_set_amount must be at least 2") + # Random sequence of table numbers + table_nums = random.sample(range(len(self.files)), len(self.files)) + + schema_sets = [] + + i = 0 + while len(schema_sets) < set_amount and i < len(table_nums): + try: + # Load the schema for the current table number + schema = self.load_single_webtable_schema(table_nums[i]) + schema_sets.append(schema) + print(f"Schema set number {len(schema_sets)} loaded") + i += 1 + except ValueError as e: + print(f"Skipping table number {table_nums[i]} due to error: {e}") + i += 1 + + return schema_sets + + def load_single_webtable_schema(self, reference_set_num: int) -> list: + # Load the webtable schema for the given reference set number + if reference_set_num < 0 or reference_set_num >= len(self.files): + raise IndexError("reference_set_num is out of range") + + # Get the file at the specified position + file_path = os.path.join(self.data_path, self.files[reference_set_num]) + + # Load and return the JSON content + try: + with open(file_path, 'r', encoding='utf-8') as file: + json_data = json.load(file) + if "relation" in json_data and isinstance(json_data["relation"], list): + schema = [relation[0] for relation in json_data["relation"]] + if len(schema) == 0: + raise ValueError("Schema is empty") + + if all(not is_convertible_to_number(col) for col in schema): + # remove "" empty strings from the schema + schema = [col for col in schema if len(col) > 0] + if len(schema) == 0: + raise ValueError("Schema contains only empty strings") + return schema + else: + raise ValueError("Schema contains numeric values or is empty") + else: + raise ValueError("JSON does not contain a valid 'relation' key or it is not a list") + except Exception as e: + raise ValueError(f"Error loading JSON file: {e}") + + + + + def load_dblp_titles(self, data_path: str) -> list: + """ + Load DBLP paper titles from a CSV file. + + Args: + data_path (str): Path to CSV file containing a column 'title'. + + Returns: + list: A list of title strings. + """ + + if not os.path.exists(data_path): + raise FileNotFoundError(f"DBLP CSV file not found: {data_path}") + + df = pd.read_csv(data_path) + if "title" not in df.columns: + raise ValueError("CSV must contain a 'title' column") + + titles = df["title"].dropna().tolist() + return titles + + diff --git a/experiments/experiments.py b/experiments/experiments.py new file mode 100644 index 0000000..7c7517d --- /dev/null +++ b/experiments/experiments.py @@ -0,0 +1,469 @@ +import time +from math import floor + +from silkmoth.silkmoth_engine import SilkMothEngine +from silkmoth.utils import SigType, edit_similarity, contain, jaccard_similarity +from silkmoth.verifier import Verifier +from silkmoth.tokenizer import Tokenizer +from src.silkmoth.silkmoth_engine import SilkMothEngine +from src.silkmoth.utils import SigType, edit_similarity +from utils import * + + +def run_experiment_filter_schemes(related_thresholds, similarity_thresholds, labels, source_sets, reference_sets, + sim_metric, sim_func, is_search, file_name_prefix, folder_path): + """ + Parameters + ---------- + related_thresholds : list[float] + Thresholds for determining relatedness between sets. + similarity_thresholds : list[float] + Thresholds for measuring similarity between sets. + labels : list[str] + Labels indicating the type of setting applied (e.g., "NO FILTER", "CHECK FILTER", "WEIGHTED"). + source_sets : list[] + The sets to be compared against the reference sets or against itself. + reference_sets : list[] + The sets used as the reference for comparison. + sim_metric : callable + The metric function used to evaluate similarity between sets. + sim_func : callable + The function used to calculate similarity scores. + is_search : bool + Flag indicating whether to perform a search operation or discovery. + file_name_prefix : str + Prefix for naming output files generated during the experiment. + folder_path: str + Path to the folder where results will be saved. + """ + + # Calculate index time and RAM usage for the SilkMothEngine + in_index_time_start = time.time() + initial_ram = measure_ram_usage() + + # Initialize and run the SilkMothEngine + silk_moth_engine = SilkMothEngine( + related_thresh=0, + source_sets=source_sets, + sim_metric=sim_metric, + sim_func=sim_func, + sim_thresh=0, + is_check_filter=False, + is_nn_filter=False, + ) + + in_index_time_end = time.time() + final_ram = measure_ram_usage() + + in_index_elapsed_time = in_index_time_end - in_index_time_start + in_index_ram_usage = final_ram - initial_ram + + print(f"Inverted Index created in {in_index_elapsed_time:.2f} seconds.") + + for sim_thresh in similarity_thresholds: + + # Check if the similarity function is edit similarity + if sim_func == edit_similarity: + # calc the maximum possible q-gram size based on sim_thresh + upper_bound_q = sim_thresh/(1 - sim_thresh) + q = floor(upper_bound_q) + + print(f"Using q = {q} for edit similarity with sim_thresh = {sim_thresh}") + print(f"Rebuilding Inverted Index with q = {q}...") + silk_moth_engine.set_q(q) + + + + elapsed_times_final = [] + silk_moth_engine.set_alpha(sim_thresh) + for label in labels: + + elapsed_times = [] + for idx, related_thresh in enumerate(related_thresholds): + + print( + f"\nRunning SilkMoth {file_name_prefix} with α = {sim_thresh}, θ = {related_thresh}, label = {label}") + + # checks for filter runs + if label == "CHECK FILTER": + silk_moth_engine.is_check_filter = True + silk_moth_engine.is_nn_filter = False + elif label == "NN FILTER": + silk_moth_engine.is_check_filter = False + silk_moth_engine.is_nn_filter = True + else: # NO FILTER + silk_moth_engine.is_check_filter = False + silk_moth_engine.is_nn_filter = False + + # checks for signature scheme runs + if label == SigType.WEIGHTED: + silk_moth_engine.set_signature_type(SigType.WEIGHTED) + elif label == SigType.SKYLINE: + silk_moth_engine.set_signature_type(SigType.SKYLINE) + elif label == SigType.DICHOTOMY: + silk_moth_engine.set_signature_type(SigType.DICHOTOMY) + + silk_moth_engine.set_related_threshold(related_thresh) + # Measure the time taken to search for related sets + time_start = time.time() + + # Used for search to see how many candidates were found and how many were removed + candidates_amount = 0 + candidates_after = 0 + related_sets_found = 0 + if is_search: + for ref_id, ref_set in enumerate(reference_sets): + related_sets_temp, candidates_amount_temp, candidates_removed_temp = silk_moth_engine.search_sets( + ref_set) + candidates_amount += candidates_amount_temp + candidates_after += candidates_removed_temp + related_sets_found += len(related_sets_temp) + else: + # If not searching, we are discovering sets + silk_moth_engine.discover_sets(source_sets) + + time_end = time.time() + elapsed_time = time_end - time_start + + elapsed_times.append(elapsed_time) + + # Create a new data dictionary for each iteration + if is_search: + data_overall = { + "similarity_threshold": sim_thresh, + "related_threshold": related_thresh, + "reference_set_amount": len(reference_sets), + "source_set_amount": len(source_sets), + "label": label, + "elapsed_time": round(elapsed_time, 3), + "inverted_index_time": round(in_index_elapsed_time, 3), + "inverted_index_ram_usage": round(in_index_ram_usage, 3), + "candidates_amount": candidates_amount, + "candidates_amount_after_filtering": candidates_after, + "related_sets_found": related_sets_found, + } + else: + data_overall = { + "similarity_threshold": sim_thresh, + "related_threshold": related_thresh, + "source_set_amount": len(source_sets), + "label": label, + "elapsed_time": round(elapsed_time, 3), + "inverted_index_time": round(in_index_elapsed_time, 3), + "inverted_index_ram_usage": round(in_index_ram_usage, 3), + } + # Save results to a CSV file + save_experiment_results_to_csv( + results=data_overall, + file_name=f"{folder_path}{file_name_prefix}_experiment_results.csv" + ) + + elapsed_times_final.append(elapsed_times) + _ = plot_elapsed_times( + related_thresholds=related_thresholds, + elapsed_times_list=elapsed_times_final, + fig_text=f"{file_name_prefix} (α = {sim_thresh})", + legend_labels=labels, + file_name=f"{folder_path}{file_name_prefix}_experiment_α={sim_thresh}.png" + ) + + +def run_reduction_experiment(related_thresholds, similarity_threshold, labels, source_sets, reference_sets, + sim_metric, sim_func, is_search, file_name_prefix, folder_path): + """ + Parameters + ---------- + related_thresholds : list[float] + Thresholds for determining relatedness between sets. + similarity_threshold : float + Thresholds for measuring similarity between sets. + labels : list[str] + Labels indicating the type of setting applied (e.g., "NO FILTER", "CHECK FILTER", "WEIGHTED"). + source_sets : list[] + The sets to be compared against the reference sets or against itself. + reference_sets : list[] + The sets used as the reference for comparison. + sim_metric : callable + The metric function used to evaluate similarity between sets. + sim_func : callable + The function used to calculate similarity scores. + is_search : bool + Flag indicating whether to perform a search operation or discovery. + file_name_prefix : str + Prefix for naming output files generated during the experiment. + folder_path: str + Path to the folder where results will be saved. + """ + in_index_time_start = time.time() + initial_ram = measure_ram_usage() + + # Initialize and run the SilkMothEngine + silk_moth_engine = SilkMothEngine( + related_thresh=0, + source_sets=source_sets, + sim_metric=sim_metric, + sim_func=sim_func, + sim_thresh=similarity_threshold, + is_check_filter=False, + is_nn_filter=False, + ) + # use dichotomy signature scheme for this experiment + silk_moth_engine.set_signature_type(SigType.DICHOTOMY) + + in_index_time_end = time.time() + final_ram = measure_ram_usage() + + in_index_elapsed_time = in_index_time_end - in_index_time_start + in_index_ram_usage = final_ram - initial_ram + + print(f"Inverted Index created in {in_index_elapsed_time:.2f} seconds.") + + elapsed_times_final = [] + for label in labels: + + if label == "REDUCTION": + silk_moth_engine.set_reduction(True) + elif label == "NO REDUCTION": + silk_moth_engine.set_reduction(False) + + elapsed_times = [] + for idx, related_thresh in enumerate(related_thresholds): + + print( + f"\nRunning SilkMoth {file_name_prefix} with α = {similarity_threshold}, θ = {related_thresh}, label = {label}") + + silk_moth_engine.set_related_threshold(related_thresh) + # Measure the time taken to search for related sets + time_start = time.time() + + # Used for search to see how many candidates were found and how many were removed + candidates_amount = 0 + candidates_after = 0 + if is_search: + for ref_id, ref_set in enumerate(reference_sets): + related_sets_temp, candidates_amount_temp, candidates_removed_temp = silk_moth_engine.search_sets( + ref_set) + candidates_amount += candidates_amount_temp + candidates_after += candidates_removed_temp + else: + # If not searching, we are discovering sets + silk_moth_engine.discover_sets(source_sets) + + time_end = time.time() + elapsed_time = time_end - time_start + + elapsed_times.append(elapsed_time) + + # Create a new data dictionary for each iteration + if is_search: + data_overall = { + "similarity_threshold": similarity_threshold, + "related_threshold": related_thresh, + "reference_set_amount": len(reference_sets), + "source_set_amount": len(source_sets), + "label": label, + "elapsed_time": round(elapsed_time, 3), + "inverted_index_time": round(in_index_elapsed_time, 3), + "inverted_index_ram_usage": round(in_index_ram_usage, 3), + "candidates_amount": candidates_amount, + "candidates_amount_after_filtering": candidates_after, + } + else: + data_overall = { + "similarity_threshold": similarity_threshold, + "related_threshold": related_thresh, + "source_set_amount": len(source_sets), + "label": label, + "elapsed_time": round(elapsed_time, 3), + "inverted_index_time": round(in_index_elapsed_time, 3), + "inverted_index_ram_usage": round(in_index_ram_usage, 3), + } + + # Save results to a CSV file + save_experiment_results_to_csv( + results=data_overall, + file_name=f"{folder_path}{file_name_prefix}_experiment_results.csv" + ) + + + elapsed_times_final.append(elapsed_times) + _ = plot_elapsed_times( + related_thresholds=related_thresholds, + elapsed_times_list=elapsed_times_final, + fig_text=f"{file_name_prefix} (α = {similarity_threshold})", + legend_labels=labels, + file_name=f"{folder_path}{file_name_prefix}_experiment_α={similarity_threshold}.png" + ) + + +def run_scalability_experiment(related_thresholds, similarity_threshold, set_sizes, source_sets, reference_sets, + sim_metric, sim_func, is_search, file_name_prefix, folder_path): + """ + Parameters + ---------- + related_thresholds : list[float] + Thresholds for determining relatedness between sets. + similarity_threshold : float + Thresholds for measuring similarity between sets. + set_sizes : list[int] + Sizes of the sets to be used in the experiment. + source_sets : list[] + The sets to be compared against the reference sets or against itself. + reference_sets : list[] + The sets used as the reference for comparison. + sim_metric : callable + The metric function used to evaluate similarity between sets. + sim_func : callable + The function used to calculate similarity scores. + is_search : bool + Flag indicating whether to perform a search operation or discovery. + file_name_prefix : str + Prefix for naming output files generated during the experiment. + folder_path: str + Path to the folder where results will be saved. + """ + elapsed_times_final = [] + for idx, related_thresh in enumerate(related_thresholds): + elapsed_times = [] + for size in set_sizes: + in_index_time_start = time.time() + initial_ram = measure_ram_usage() + + # Initialize and run the SilkMothEngine + silk_moth_engine = SilkMothEngine( + related_thresh=0, + source_sets=source_sets[:size], + sim_metric=sim_metric, + sim_func=sim_func, + sim_thresh=similarity_threshold, + is_check_filter=True, + is_nn_filter=True, + ) + in_index_time_end = time.time() + final_ram = measure_ram_usage() + + in_index_elapsed_time = in_index_time_end - in_index_time_start + in_index_ram_usage = final_ram - initial_ram + + print(f"Inverted Index created in {in_index_elapsed_time:.2f} seconds.") + + + print( + f"\nRunning SilkMoth {file_name_prefix} with α = {similarity_threshold}, θ = {related_thresh}, set_size = {size}") + + silk_moth_engine.set_related_threshold(related_thresh) + # Measure the time taken to search for related sets + time_start = time.time() + + if sim_func == edit_similarity: + # calc the maximum possible q-gram size based on sim_thresh + upper_bound_q = similarity_threshold / (1 - similarity_threshold) + q = floor(upper_bound_q) + + print(f"Using q = {q} for edit similarity with sim_thresh = {similarity_threshold}") + print(f"Rebuilding Inverted Index with q = {q}...") + silk_moth_engine.set_q(q) + + # Used for search to see how many candidates were found and how many were removed + candidates_amount = 0 + candidates_after = 0 + if is_search: + for ref_id, ref_set in enumerate(reference_sets): + related_sets_temp, candidates_amount_temp, candidates_removed_temp = silk_moth_engine.search_sets( + ref_set) + candidates_amount += candidates_amount_temp + candidates_after += candidates_removed_temp + else: + # If not searching, we are discovering sets + silk_moth_engine.discover_sets(source_sets[:size]) + + time_end = time.time() + elapsed_time = time_end - time_start + + elapsed_times.append(elapsed_time) + + # Create a new data dictionary for each iteration + if is_search: + data_overall = { + "similarity_threshold": similarity_threshold, + "related_threshold": related_thresh, + "reference_set_amount": len(reference_sets), + "source_set_amount": len(source_sets[:size]), + "set_size": size, + "elapsed_time": round(elapsed_time, 3), + "inverted_index_time": round(in_index_elapsed_time, 3), + "inverted_index_ram_usage": round(in_index_ram_usage, 3), + "candidates_amount": candidates_amount, + "candidates_amount_after_filtering": candidates_after, + } + else: + data_overall = { + "similarity_threshold": similarity_threshold, + "related_threshold": related_thresh, + "source_set_amount": len(source_sets[:size]), + "set_size": size, + "elapsed_time": round(elapsed_time, 3), + "inverted_index_time": round(in_index_elapsed_time, 3), + "inverted_index_ram_usage": round(in_index_ram_usage, 3), + } + + # Save results to a CSV file + save_experiment_results_to_csv( + results=data_overall, + file_name=f"{folder_path}{file_name_prefix}_experiment_results.csv" + ) + del silk_moth_engine + + elapsed_times_final.append(elapsed_times) + + # create legend labels based on set sizes + adjusted_legend_labels = [f"θ = {rt}" for rt in related_thresholds] + adjusted_set_sizes = [size / 100_000 for size in set_sizes] + _ = plot_elapsed_times( + related_thresholds=adjusted_set_sizes, + elapsed_times_list=elapsed_times_final, + fig_text=f"{file_name_prefix} (α = {similarity_threshold})", + legend_labels=adjusted_legend_labels, + file_name=f"{folder_path}{file_name_prefix}_experiment_α={similarity_threshold}.png", + xlabel="Number of Sets (in 100ks)", + ) + +def run_matching_without_silkmoth_inc_dep(source_sets, reference_sets, related_thresholds, similarity_threshold, sim_metric, sim_fun , file_name_prefix, folder_path): + + tokenizer = Tokenizer(sim_func=sim_fun) + + for related_thresh in related_thresholds: + verifier = Verifier(sim_thresh=similarity_threshold, related_thresh=related_thresh, + sim_metric=sim_metric, sim_func=sim_fun, reduction=False) + related_sets = [] + time_start = time.time() + for ref in reference_sets: + for source in source_sets: + if len(ref) > len(source): + continue + relatedness = verifier.get_relatedness(tokenizer.tokenize(ref), tokenizer.tokenize(source)) + if relatedness >= related_thresh: + related_sets.append((source, relatedness)) + + time_end = time.time() + elapsed_time = time_end - time_start + + data_overall = { + "similarity_threshold": similarity_threshold, + "related_threshold": related_thresh, + "source_set_amount": len(source_sets), + "reference_set_amount": len(reference_sets), + "label": "RAW MATCH", + "elapsed_time": round(elapsed_time, 3), + "matches_found": len(related_sets) + } + + # Save results to a CSV file + save_experiment_results_to_csv( + results=data_overall, + file_name=f"{folder_path}{file_name_prefix}_experiment_results.csv" + ) + + + + diff --git a/experiments/results/inclusion_dependency/SciPy-matching-1k-ref-set/inclusion_dependency_filter_experiment_results.csv b/experiments/results/inclusion_dependency/SciPy-matching-1k-ref-set/inclusion_dependency_filter_experiment_results.csv new file mode 100644 index 0000000..e823f71 --- /dev/null +++ b/experiments/results/inclusion_dependency/SciPy-matching-1k-ref-set/inclusion_dependency_filter_experiment_results.csv @@ -0,0 +1,49 @@ +similarity_threshold,related_threshold,reference_set_amount,source_set_amount,label,elapsed_time,inverted_index_time,inverted_index_ram_usage,candidates_amount,candidates_amount_after_filtering,related_sets_found +0.0,0.7,1000,500000,NO FILTER,1036.548,49.107,7727.559,3006749,3006749,986715 +0.0,0.75,1000,500000,NO FILTER,871.225,49.107,7727.559,2673348,2673348,964206 +0.0,0.8,1000,500000,NO FILTER,695.528,49.107,7727.559,2273416,2273416,934002 +0.0,0.85,1000,500000,NO FILTER,548.878,49.107,7727.559,1907985,1907985,879744 +0.0,0.7,1000,500000,CHECK FILTER,980.124,49.107,7727.559,3006749,2852034,986715 +0.0,0.75,1000,500000,CHECK FILTER,789.947,49.107,7727.559,2673348,2531660,964206 +0.0,0.8,1000,500000,CHECK FILTER,590.707,49.107,7727.559,2273416,2107346,934002 +0.0,0.85,1000,500000,CHECK FILTER,427.982,49.107,7727.559,1907985,1728877,879744 +0.0,0.7,1000,500000,NN FILTER,533.776,49.107,7727.559,3006749,2547,2535 +0.0,0.75,1000,500000,NN FILTER,448.358,49.107,7727.559,2673348,2394,2382 +0.0,0.8,1000,500000,NN FILTER,359.112,49.107,7727.559,2273416,1077,1077 +0.0,0.85,1000,500000,NN FILTER,268.529,49.107,7727.559,1907985,1037,1037 +0.25,0.7,1000,500000,NO FILTER,1038.225,49.107,7727.559,3006749,3006749,984756 +0.25,0.75,1000,500000,NO FILTER,866.06,49.107,7727.559,2673348,2673348,963792 +0.25,0.8,1000,500000,NO FILTER,693.589,49.107,7727.559,2273416,2273416,933799 +0.25,0.85,1000,500000,NO FILTER,545.784,49.107,7727.559,1907985,1907985,878482 +0.25,0.7,1000,500000,CHECK FILTER,975.103,49.107,7727.559,3006749,2852028,984756 +0.25,0.75,1000,500000,CHECK FILTER,787.87,49.107,7727.559,2673348,2531660,963792 +0.25,0.8,1000,500000,CHECK FILTER,589.608,49.107,7727.559,2273416,2107346,933799 +0.25,0.85,1000,500000,CHECK FILTER,426.222,49.107,7727.559,1907985,1728877,878482 +0.25,0.7,1000,500000,NN FILTER,573.448,49.107,7727.559,3006749,2544,2532 +0.25,0.75,1000,500000,NN FILTER,483.1,49.107,7727.559,2673348,2394,2382 +0.25,0.8,1000,500000,NN FILTER,385.999,49.107,7727.559,2273416,1077,1077 +0.25,0.85,1000,500000,NN FILTER,288.687,49.107,7727.559,1907985,1037,1037 +0.5,0.7,1000,500000,NO FILTER,1031.681,49.107,7727.559,3006749,3006749,975892 +0.5,0.75,1000,500000,NO FILTER,867.694,49.107,7727.559,2673348,2673348,951793 +0.5,0.8,1000,500000,NO FILTER,693.398,49.107,7727.559,2273416,2273416,931599 +0.5,0.85,1000,500000,NO FILTER,546.702,49.107,7727.559,1907985,1907985,875833 +0.5,0.7,1000,500000,CHECK FILTER,971.71,49.107,7727.559,3006749,2848668,975892 +0.5,0.75,1000,500000,CHECK FILTER,783.145,49.107,7727.559,2673348,2529966,951793 +0.5,0.8,1000,500000,CHECK FILTER,585.346,49.107,7727.559,2273416,2106355,931599 +0.5,0.85,1000,500000,CHECK FILTER,424.629,49.107,7727.559,1907985,1728640,875833 +0.5,0.7,1000,500000,NN FILTER,573.046,49.107,7727.559,3006749,2544,2532 +0.5,0.75,1000,500000,NN FILTER,482.035,49.107,7727.559,2673348,2394,2382 +0.5,0.8,1000,500000,NN FILTER,385.754,49.107,7727.559,2273416,1077,1077 +0.5,0.85,1000,500000,NN FILTER,288.24,49.107,7727.559,1907985,1037,1037 +0.75,0.7,1000,500000,NO FILTER,1032.605,49.107,7727.559,3006749,3006749,973885 +0.75,0.75,1000,500000,NO FILTER,866.218,49.107,7727.559,2673348,2673348,949627 +0.75,0.8,1000,500000,NO FILTER,693.19,49.107,7727.559,2273416,2273416,929232 +0.75,0.85,1000,500000,NO FILTER,548.07,49.107,7727.559,1907985,1907985,875163 +0.75,0.7,1000,500000,CHECK FILTER,960.003,49.107,7727.559,3006749,2838145,973885 +0.75,0.75,1000,500000,CHECK FILTER,773.8,49.107,7727.559,2673348,2519134,949627 +0.75,0.8,1000,500000,CHECK FILTER,577.671,49.107,7727.559,2273416,2100303,929232 +0.75,0.85,1000,500000,CHECK FILTER,417.292,49.107,7727.559,1907985,1725354,875163 +0.75,0.7,1000,500000,NN FILTER,544.018,49.107,7727.559,3006749,2544,2532 +0.75,0.75,1000,500000,NN FILTER,463.915,49.107,7727.559,2673348,2394,2382 +0.75,0.8,1000,500000,NN FILTER,378.184,49.107,7727.559,2273416,1077,1077 +0.75,0.85,1000,500000,NN FILTER,285.8,49.107,7727.559,1907985,1040,1040 diff --git a/experiments/results/inclusion_dependency/SciPy-matching-1k-ref-set/inclusion_dependency_filter_experiment_α=0.0.png b/experiments/results/inclusion_dependency/SciPy-matching-1k-ref-set/inclusion_dependency_filter_experiment_α=0.0.png new file mode 100644 index 0000000..95fe38f Binary files /dev/null and b/experiments/results/inclusion_dependency/SciPy-matching-1k-ref-set/inclusion_dependency_filter_experiment_α=0.0.png differ diff --git a/experiments/results/inclusion_dependency/SciPy-matching-1k-ref-set/inclusion_dependency_filter_experiment_α=0.25.png b/experiments/results/inclusion_dependency/SciPy-matching-1k-ref-set/inclusion_dependency_filter_experiment_α=0.25.png new file mode 100644 index 0000000..d919ae6 Binary files /dev/null and b/experiments/results/inclusion_dependency/SciPy-matching-1k-ref-set/inclusion_dependency_filter_experiment_α=0.25.png differ diff --git a/experiments/results/inclusion_dependency/SciPy-matching-1k-ref-set/inclusion_dependency_filter_experiment_α=0.5.png b/experiments/results/inclusion_dependency/SciPy-matching-1k-ref-set/inclusion_dependency_filter_experiment_α=0.5.png new file mode 100644 index 0000000..7b7e5b1 Binary files /dev/null and b/experiments/results/inclusion_dependency/SciPy-matching-1k-ref-set/inclusion_dependency_filter_experiment_α=0.5.png differ diff --git a/experiments/results/inclusion_dependency/SciPy-matching-1k-ref-set/inclusion_dependency_filter_experiment_α=0.75.png b/experiments/results/inclusion_dependency/SciPy-matching-1k-ref-set/inclusion_dependency_filter_experiment_α=0.75.png new file mode 100644 index 0000000..41316ab Binary files /dev/null and b/experiments/results/inclusion_dependency/SciPy-matching-1k-ref-set/inclusion_dependency_filter_experiment_α=0.75.png differ diff --git a/experiments/results/inclusion_dependency/inclusion_dependency_filter_combined_raw_experiment_α=0.5.png b/experiments/results/inclusion_dependency/inclusion_dependency_filter_combined_raw_experiment_α=0.5.png new file mode 100644 index 0000000..86707ca Binary files /dev/null and b/experiments/results/inclusion_dependency/inclusion_dependency_filter_combined_raw_experiment_α=0.5.png differ diff --git a/experiments/results/inclusion_dependency/inclusion_dependency_filter_experiment_results.csv b/experiments/results/inclusion_dependency/inclusion_dependency_filter_experiment_results.csv new file mode 100644 index 0000000..5d067b0 --- /dev/null +++ b/experiments/results/inclusion_dependency/inclusion_dependency_filter_experiment_results.csv @@ -0,0 +1,49 @@ +similarity_threshold,related_threshold,reference_set_amount,source_set_amount,label,elapsed_time,inverted_index_time,inverted_index_ram_usage,candidates_amount,candidates_amount_after_filtering,related_sets_found +0.0,0.7,200,500000,NO FILTER,6753.593,49.277,7720.887,622080,622080,233513 +0.0,0.75,200,500000,NO FILTER,6812.967,49.277,7720.887,575078,575078,223644 +0.0,0.8,200,500000,NO FILTER,4953.635,49.277,7720.887,479650,479650,221376 +0.0,0.85,200,500000,NO FILTER,4212.413,49.277,7720.887,423078,423078,196944 +0.0,0.7,200,500000,CHECK FILTER,3835.233,49.277,7720.887,622080,589307,233513 +0.0,0.75,200,500000,CHECK FILTER,3348.061,49.277,7720.887,575078,549687,223644 +0.0,0.8,200,500000,CHECK FILTER,2414.995,49.277,7720.887,479650,438680,221376 +0.0,0.85,200,500000,CHECK FILTER,1874.261,49.277,7720.887,423078,393028,196944 +0.0,0.7,200,500000,NN FILTER,126.601,49.277,7720.887,622080,615,603 +0.0,0.75,200,500000,NN FILTER,108.886,49.277,7720.887,575078,332,320 +0.0,0.8,200,500000,NN FILTER,80.436,49.277,7720.887,479650,1,1 +0.0,0.85,200,500000,NN FILTER,59.824,49.277,7720.887,423078,1,1 +0.25,0.7,200,500000,NO FILTER,2191.216,49.277,7720.887,622080,622080,232290 +0.25,0.75,200,500000,NO FILTER,1915.087,49.277,7720.887,575078,575078,223444 +0.25,0.8,200,500000,NO FILTER,1544.113,49.277,7720.887,479650,479650,221284 +0.25,0.85,200,500000,NO FILTER,1354.29,49.277,7720.887,423078,423078,196116 +0.25,0.7,200,500000,CHECK FILTER,1809.643,49.277,7720.887,622080,589307,232290 +0.25,0.75,200,500000,CHECK FILTER,1548.963,49.277,7720.887,575078,549687,223444 +0.25,0.8,200,500000,CHECK FILTER,1277.618,49.277,7720.887,479650,438680,221284 +0.25,0.85,200,500000,CHECK FILTER,1111.088,49.277,7720.887,423078,393028,196116 +0.25,0.7,200,500000,NN FILTER,131.183,49.277,7720.887,622080,615,603 +0.25,0.75,200,500000,NN FILTER,114.192,49.277,7720.887,575078,332,320 +0.25,0.8,200,500000,NN FILTER,84.253,49.277,7720.887,479650,1,1 +0.25,0.85,200,500000,NN FILTER,62.864,49.277,7720.887,423078,1,1 +0.5,0.7,200,500000,NO FILTER,1682.409,49.277,7720.887,622080,622080,230903 +0.5,0.75,200,500000,NO FILTER,1491.797,49.277,7720.887,575078,575078,222613 +0.5,0.8,200,500000,NO FILTER,1250.727,49.277,7720.887,479650,479650,219875 +0.5,0.85,200,500000,NO FILTER,1083.762,49.277,7720.887,423078,423078,195759 +0.5,0.7,200,500000,CHECK FILTER,1436.208,49.277,7720.887,622080,588701,230903 +0.5,0.75,200,500000,CHECK FILTER,1250.22,49.277,7720.887,575078,549178,222613 +0.5,0.8,200,500000,CHECK FILTER,1023.904,49.277,7720.887,479650,438258,219875 +0.5,0.85,200,500000,CHECK FILTER,893.938,49.277,7720.887,423078,392937,195759 +0.5,0.7,200,500000,NN FILTER,129.51,49.277,7720.887,622080,615,603 +0.5,0.75,200,500000,NN FILTER,112.158,49.277,7720.887,575078,332,320 +0.5,0.8,200,500000,NN FILTER,83.434,49.277,7720.887,479650,1,1 +0.5,0.85,200,500000,NN FILTER,62.648,49.277,7720.887,423078,1,1 +0.75,0.7,200,500000,NO FILTER,1447.675,49.277,7720.887,622080,622080,230497 +0.75,0.75,200,500000,NO FILTER,1270.052,49.277,7720.887,575078,575078,222063 +0.75,0.8,200,500000,NO FILTER,1039.89,49.277,7720.887,479650,479650,219411 +0.75,0.85,200,500000,NO FILTER,879.273,49.277,7720.887,423078,423078,195601 +0.75,0.7,200,500000,CHECK FILTER,1193.541,49.277,7720.887,622080,586297,230497 +0.75,0.75,200,500000,CHECK FILTER,1023.672,49.277,7720.887,575078,546701,222063 +0.75,0.8,200,500000,CHECK FILTER,825.541,49.277,7720.887,479650,436782,219411 +0.75,0.85,200,500000,CHECK FILTER,704.52,49.277,7720.887,423078,391809,195601 +0.75,0.7,200,500000,NN FILTER,120.522,49.277,7720.887,622080,615,603 +0.75,0.75,200,500000,NN FILTER,107.657,49.277,7720.887,575078,332,320 +0.75,0.8,200,500000,NN FILTER,78.897,49.277,7720.887,479650,1,1 +0.75,0.85,200,500000,NN FILTER,57.66,49.277,7720.887,423078,1,1 diff --git a/experiments/results/inclusion_dependency/inclusion_dependency_filter_experiment_α=0.0.png b/experiments/results/inclusion_dependency/inclusion_dependency_filter_experiment_α=0.0.png new file mode 100644 index 0000000..1fdb492 Binary files /dev/null and b/experiments/results/inclusion_dependency/inclusion_dependency_filter_experiment_α=0.0.png differ diff --git a/experiments/results/inclusion_dependency/inclusion_dependency_filter_experiment_α=0.25.png b/experiments/results/inclusion_dependency/inclusion_dependency_filter_experiment_α=0.25.png new file mode 100644 index 0000000..6910494 Binary files /dev/null and b/experiments/results/inclusion_dependency/inclusion_dependency_filter_experiment_α=0.25.png differ diff --git a/experiments/results/inclusion_dependency/inclusion_dependency_filter_experiment_α=0.5.png b/experiments/results/inclusion_dependency/inclusion_dependency_filter_experiment_α=0.5.png new file mode 100644 index 0000000..8694ae9 Binary files /dev/null and b/experiments/results/inclusion_dependency/inclusion_dependency_filter_experiment_α=0.5.png differ diff --git a/experiments/results/inclusion_dependency/inclusion_dependency_filter_experiment_α=0.75.png b/experiments/results/inclusion_dependency/inclusion_dependency_filter_experiment_α=0.75.png new file mode 100644 index 0000000..3f63097 Binary files /dev/null and b/experiments/results/inclusion_dependency/inclusion_dependency_filter_experiment_α=0.75.png differ diff --git a/experiments/results/inclusion_dependency/inclusion_dependency_ratio.csv b/experiments/results/inclusion_dependency/inclusion_dependency_ratio.csv new file mode 100644 index 0000000..b99fa9b --- /dev/null +++ b/experiments/results/inclusion_dependency/inclusion_dependency_ratio.csv @@ -0,0 +1,2 @@ +experiment name,elem/set,tokens/elem +Inclusion Dependency,17.81003,25.41035090901026 diff --git a/experiments/results/inclusion_dependency/inclusion_dependency_reduction_experiment_results.csv b/experiments/results/inclusion_dependency/inclusion_dependency_reduction_experiment_results.csv new file mode 100644 index 0000000..4f908f9 --- /dev/null +++ b/experiments/results/inclusion_dependency/inclusion_dependency_reduction_experiment_results.csv @@ -0,0 +1,17 @@ +similarity_threshold,related_threshold,reference_set_amount,source_set_amount,label,elapsed_time,inverted_index_time,inverted_index_ram_usage,candidates_amount,candidates_amount_after_filtering +0.0,0.7,200,500000,REDUCTION,6283.871,45.782,7700.914,622080,622080 +0.0,0.75,200,500000,REDUCTION,5651.069,45.782,7700.914,575078,575078 +0.0,0.8,200,500000,REDUCTION,4170.768,45.782,7700.914,479650,479650 +0.0,0.85,200,500000,REDUCTION,3514.723,45.782,7700.914,423078,423078 +0.0,0.7,200,500000,NO REDUCTION,6771.001,45.782,7700.914,622080,622080 +0.0,0.75,200,500000,NO REDUCTION,6117.305,45.782,7700.914,575078,575078 +0.0,0.8,200,500000,NO REDUCTION,4573.585,45.782,7700.914,479650,479650 +0.0,0.85,200,500000,NO REDUCTION,3894.681,45.782,7700.914,423078,423078 +0.0,0.7,200,500000,REDUCTION,6142.242,49.376,7721.383,622080,622080 +0.0,0.75,200,500000,REDUCTION,5495.346,49.376,7721.383,575078,575078 +0.0,0.8,200,500000,REDUCTION,4061.815,49.376,7721.383,479650,479650 +0.0,0.85,200,500000,REDUCTION,3429.474,49.376,7721.383,423078,423078 +0.0,0.7,200,500000,NO REDUCTION,6622.959,49.376,7721.383,622080,622080 +0.0,0.75,200,500000,NO REDUCTION,5960.971,49.376,7721.383,575078,575078 +0.0,0.8,200,500000,NO REDUCTION,4489.11,49.376,7721.383,479650,479650 +0.0,0.85,200,500000,NO REDUCTION,3794.505,49.376,7721.383,423078,423078 diff --git a/experiments/results/inclusion_dependency/inclusion_dependency_reduction_experiment_α=0.0.png b/experiments/results/inclusion_dependency/inclusion_dependency_reduction_experiment_α=0.0.png new file mode 100644 index 0000000..2388d85 Binary files /dev/null and b/experiments/results/inclusion_dependency/inclusion_dependency_reduction_experiment_α=0.0.png differ diff --git a/experiments/results/inclusion_dependency/inclusion_dependency_scalability_experiment_results.csv b/experiments/results/inclusion_dependency/inclusion_dependency_scalability_experiment_results.csv new file mode 100644 index 0000000..ce1ec6e --- /dev/null +++ b/experiments/results/inclusion_dependency/inclusion_dependency_scalability_experiment_results.csv @@ -0,0 +1,21 @@ +similarity_threshold,related_threshold,reference_set_amount,source_set_amount,set_size,elapsed_time,inverted_index_time,inverted_index_ram_usage,candidates_amount,candidates_amount_after_filtering +0.5,0.7,200,100000,100000,69.222,11.405,1554.535,134576,46830 +0.5,0.7,200,200000,200000,134.718,23.409,1659.543,254379,93573 +0.5,0.7,200,300000,300000,206.136,32.782,1791.512,373007,139377 +0.5,0.7,200,400000,400000,275.559,51.827,2040.961,499998,186205 +0.5,0.7,200,500000,500000,353.944,51.169,2027.262,622080,233091 +0.5,0.75,200,100000,100000,64.988,5.539,0.254,124611,45115 +0.5,0.75,200,200000,200000,126.721,24.159,192.152,236137,90048 +0.5,0.75,200,300000,300000,193.126,32.91,2217.562,347108,134199 +0.5,0.75,200,400000,400000,259.254,50.945,1535.723,462815,179223 +0.5,0.75,200,500000,500000,328.0,59.734,2526.176,575078,224315 +0.5,0.8,200,100000,100000,59.984,5.544,0.77,104812,44549 +0.5,0.8,200,200000,200000,123.595,23.419,-229.445,202489,88907 +0.5,0.8,200,300000,300000,183.55,37.277,2302.273,300462,132525 +0.5,0.8,200,400000,400000,239.431,45.86,1268.406,386895,176985 +0.5,0.8,200,500000,500000,311.525,58.657,2716.348,479650,221057 +0.5,0.85,200,100000,100000,56.371,9.486,-151.641,87451,39657 +0.5,0.85,200,200000,200000,108.674,23.698,-889.457,171938,79056 +0.5,0.85,200,300000,300000,164.616,33.799,2748.523,251392,117969 +0.5,0.85,200,400000,400000,220.908,45.263,805.023,331901,157572 +0.5,0.85,200,500000,500000,281.56,65.197,3474.547,423078,197145 diff --git a/experiments/results/inclusion_dependency/inclusion_dependency_scalability_experiment_α=0.5.png b/experiments/results/inclusion_dependency/inclusion_dependency_scalability_experiment_α=0.5.png new file mode 100644 index 0000000..3e53624 Binary files /dev/null and b/experiments/results/inclusion_dependency/inclusion_dependency_scalability_experiment_α=0.5.png differ diff --git a/experiments/results/inclusion_dependency/inclusion_dependency_sig_experiment_results.csv b/experiments/results/inclusion_dependency/inclusion_dependency_sig_experiment_results.csv new file mode 100644 index 0000000..782beee --- /dev/null +++ b/experiments/results/inclusion_dependency/inclusion_dependency_sig_experiment_results.csv @@ -0,0 +1,49 @@ +similarity_threshold,related_threshold,reference_set_amount,source_set_amount,label,elapsed_time,inverted_index_time,inverted_index_ram_usage,candidates_amount,candidates_amount_after_filtering +0.0,0.7,200,500000,SigType.WEIGHTED,6915.71,47.599,7701.59,622080,622080 +0.0,0.75,200,500000,SigType.WEIGHTED,6230.769,47.599,7701.59,575078,575078 +0.0,0.8,200,500000,SigType.WEIGHTED,4633.178,47.599,7701.59,479650,479650 +0.0,0.85,200,500000,SigType.WEIGHTED,3948.011,47.599,7701.59,423078,423078 +0.0,0.7,200,500000,SigType.SKYLINE,6839.554,47.599,7701.59,622080,622080 +0.0,0.75,200,500000,SigType.SKYLINE,6156.19,47.599,7701.59,575078,575078 +0.0,0.8,200,500000,SigType.SKYLINE,4601.987,47.599,7701.59,479650,479650 +0.0,0.85,200,500000,SigType.SKYLINE,3921.286,47.599,7701.59,423078,423078 +0.0,0.7,200,500000,SigType.DICHOTOMY,6824.442,47.599,7701.59,622080,622080 +0.0,0.75,200,500000,SigType.DICHOTOMY,6158.089,47.599,7701.59,575078,575078 +0.0,0.8,200,500000,SigType.DICHOTOMY,4601.877,47.599,7701.59,479650,479650 +0.0,0.85,200,500000,SigType.DICHOTOMY,3923.695,47.599,7701.59,423078,423078 +0.25,0.7,200,500000,SigType.WEIGHTED,1990.666,47.599,7701.59,622080,622080 +0.25,0.75,200,500000,SigType.WEIGHTED,1722.451,47.599,7701.59,575078,575078 +0.25,0.8,200,500000,SigType.WEIGHTED,1438.235,47.599,7701.59,479650,479650 +0.25,0.85,200,500000,SigType.WEIGHTED,1264.852,47.599,7701.59,423078,423078 +0.25,0.7,200,500000,SigType.SKYLINE,1989.546,47.599,7701.59,622080,622080 +0.25,0.75,200,500000,SigType.SKYLINE,1719.169,47.599,7701.59,575078,575078 +0.25,0.8,200,500000,SigType.SKYLINE,1440.077,47.599,7701.59,479650,479650 +0.25,0.85,200,500000,SigType.SKYLINE,1267.701,47.599,7701.59,423078,423078 +0.25,0.7,200,500000,SigType.DICHOTOMY,2046.949,47.599,7701.59,622270,622270 +0.25,0.75,200,500000,SigType.DICHOTOMY,1966.499,47.599,7701.59,575268,575268 +0.25,0.8,200,500000,SigType.DICHOTOMY,1485.458,47.599,7701.59,479650,479650 +0.25,0.85,200,500000,SigType.DICHOTOMY,1436.847,47.599,7701.59,423078,423078 +0.5,0.7,200,500000,SigType.WEIGHTED,1767.439,47.599,7701.59,622080,622080 +0.5,0.75,200,500000,SigType.WEIGHTED,1565.259,47.599,7701.59,575078,575078 +0.5,0.8,200,500000,SigType.WEIGHTED,1160.579,47.599,7701.59,479650,479650 +0.5,0.85,200,500000,SigType.WEIGHTED,1014.452,47.599,7701.59,423078,423078 +0.5,0.7,200,500000,SigType.SKYLINE,1589.081,47.599,7701.59,622054,622054 +0.5,0.75,200,500000,SigType.SKYLINE,1393.117,47.599,7701.59,575050,575050 +0.5,0.8,200,500000,SigType.SKYLINE,1154.931,47.599,7701.59,479622,479622 +0.5,0.85,200,500000,SigType.SKYLINE,1025.061,47.599,7701.59,423078,423078 +0.5,0.7,200,500000,SigType.DICHOTOMY,2777.528,47.599,7701.59,936785,936785 +0.5,0.75,200,500000,SigType.DICHOTOMY,2340.389,47.599,7701.59,888736,888736 +0.5,0.8,200,500000,SigType.DICHOTOMY,1678.145,47.599,7701.59,673929,673929 +0.5,0.85,200,500000,SigType.DICHOTOMY,1374.518,47.599,7701.59,517483,517483 +0.75,0.7,200,500000,SigType.WEIGHTED,1354.402,47.599,7701.59,622080,622080 +0.75,0.75,200,500000,SigType.WEIGHTED,1187.603,47.599,7701.59,575078,575078 +0.75,0.8,200,500000,SigType.WEIGHTED,971.469,47.599,7701.59,479650,479650 +0.75,0.85,200,500000,SigType.WEIGHTED,822.075,47.599,7701.59,423078,423078 +0.75,0.7,200,500000,SigType.SKYLINE,1303.676,47.599,7701.59,594466,594466 +0.75,0.75,200,500000,SigType.SKYLINE,1152.405,47.599,7701.59,560020,560020 +0.75,0.8,200,500000,SigType.SKYLINE,932.283,47.599,7701.59,467458,467458 +0.75,0.85,200,500000,SigType.SKYLINE,816.709,47.599,7701.59,420962,420962 +0.75,0.7,200,500000,SigType.DICHOTOMY,5710.524,47.599,7701.59,2410732,2410732 +0.75,0.75,200,500000,SigType.DICHOTOMY,5072.603,47.599,7701.59,2145096,2145096 +0.75,0.8,200,500000,SigType.DICHOTOMY,4403.341,47.599,7701.59,1739362,1739362 +0.75,0.85,200,500000,SigType.DICHOTOMY,2735.424,47.599,7701.59,1078937,1078937 diff --git a/experiments/results/inclusion_dependency/inclusion_dependency_sig_experiment_α=0.0.png b/experiments/results/inclusion_dependency/inclusion_dependency_sig_experiment_α=0.0.png new file mode 100644 index 0000000..21d0fb2 Binary files /dev/null and b/experiments/results/inclusion_dependency/inclusion_dependency_sig_experiment_α=0.0.png differ diff --git a/experiments/results/inclusion_dependency/inclusion_dependency_sig_experiment_α=0.25.png b/experiments/results/inclusion_dependency/inclusion_dependency_sig_experiment_α=0.25.png new file mode 100644 index 0000000..fff1c73 Binary files /dev/null and b/experiments/results/inclusion_dependency/inclusion_dependency_sig_experiment_α=0.25.png differ diff --git a/experiments/results/inclusion_dependency/inclusion_dependency_sig_experiment_α=0.5.png b/experiments/results/inclusion_dependency/inclusion_dependency_sig_experiment_α=0.5.png new file mode 100644 index 0000000..852e785 Binary files /dev/null and b/experiments/results/inclusion_dependency/inclusion_dependency_sig_experiment_α=0.5.png differ diff --git a/experiments/results/inclusion_dependency/inclusion_dependency_sig_experiment_α=0.75.png b/experiments/results/inclusion_dependency/inclusion_dependency_sig_experiment_α=0.75.png new file mode 100644 index 0000000..68a0654 Binary files /dev/null and b/experiments/results/inclusion_dependency/inclusion_dependency_sig_experiment_α=0.75.png differ diff --git a/experiments/results/inclusion_dependency/raw_matching_experiment_results.csv b/experiments/results/inclusion_dependency/raw_matching_experiment_results.csv new file mode 100644 index 0000000..543fb4d --- /dev/null +++ b/experiments/results/inclusion_dependency/raw_matching_experiment_results.csv @@ -0,0 +1,5 @@ +similarity_threshold,related_threshold,source_set_amount,reference_set_amount,label,elapsed_time,matches_found +0.5,0.7,500000,200,RAW MATCH,6945.364,230903 +0.5,0.75,500000,200,RAW MATCH,6965.759,222613 +0.5,0.8,500000,200,RAW MATCH,6974.576,219875 +0.5,0.85,500000,200,RAW MATCH,7011.368,195759 diff --git a/experiments/results/schema_matching/github_webtable_schema_matching_experiment_results.csv b/experiments/results/schema_matching/github_webtable_schema_matching_experiment_results.csv new file mode 100644 index 0000000..05e2c56 --- /dev/null +++ b/experiments/results/schema_matching/github_webtable_schema_matching_experiment_results.csv @@ -0,0 +1,49 @@ +similarity_threshold,related_threshold,reference_set_amount,source_set_amount,label,elapsed_time,inverted_index_time,inverted_index_ram_usage,candidates_amount,candidates_amount_after_filtering +0.0,0.7,60000,60000,NO FILTER,3321.166,2.336,115.465,3055067,3055067 +0.0,0.75,60000,60000,NO FILTER,1997.976,2.336,115.465,2321584,2321584 +0.0,0.8,60000,60000,NO FILTER,1226.647,2.336,115.465,1265300,1265300 +0.0,0.85,60000,60000,NO FILTER,530.302,2.336,115.465,642202,642202 +0.0,0.7,60000,60000,CHECK FILTER,3766.567,2.336,115.465,3055067,2464704 +0.0,0.75,60000,60000,CHECK FILTER,2241.664,2.336,115.465,2321584,1780582 +0.0,0.8,60000,60000,CHECK FILTER,1371.372,2.336,115.465,1265300,936432 +0.0,0.85,60000,60000,CHECK FILTER,2052.574,2.336,115.465,642202,523745 +0.0,0.7,60000,60000,NN FILTER,1752.545,2.336,115.465,3055067,0 +0.0,0.75,60000,60000,NN FILTER,1410.607,2.336,115.465,2321584,0 +0.0,0.8,60000,60000,NN FILTER,817.098,2.336,115.465,1265300,0 +0.0,0.85,60000,60000,NN FILTER,450.277,2.336,115.465,642202,0 +0.25,0.7,60000,60000,NO FILTER,4295.794,2.336,115.465,3055067,3055067 +0.25,0.75,60000,60000,NO FILTER,1973.377,2.336,115.465,2321584,2321584 +0.25,0.8,60000,60000,NO FILTER,1212.983,2.336,115.465,1265300,1265300 +0.25,0.85,60000,60000,NO FILTER,522.616,2.336,115.465,642202,642202 +0.25,0.7,60000,60000,CHECK FILTER,3200.851,2.336,115.465,3055067,2455726 +0.25,0.75,60000,60000,CHECK FILTER,1889.267,2.336,115.465,2321584,1770634 +0.25,0.8,60000,60000,CHECK FILTER,1147.932,2.336,115.465,1265300,928712 +0.25,0.85,60000,60000,CHECK FILTER,498.44,2.336,115.465,642202,522759 +0.25,0.7,60000,60000,NN FILTER,122.104,2.336,115.465,3055067,0 +0.25,0.75,60000,60000,NN FILTER,88.259,2.336,115.465,2321584,0 +0.25,0.8,60000,60000,NN FILTER,49.714,2.336,115.465,1265300,0 +0.25,0.85,60000,60000,NN FILTER,23.838,2.336,115.465,642202,0 +0.5,0.7,60000,60000,NO FILTER,3272.056,2.336,115.465,3055067,3055067 +0.5,0.75,60000,60000,NO FILTER,1961.328,2.336,115.465,2321584,2321584 +0.5,0.8,60000,60000,NO FILTER,1200.994,2.336,115.465,1265300,1265300 +0.5,0.85,60000,60000,NO FILTER,511.108,2.336,115.465,642202,642202 +0.5,0.7,60000,60000,CHECK FILTER,3183.991,2.336,115.465,3055067,2437997 +0.5,0.75,60000,60000,CHECK FILTER,1875.468,2.336,115.465,2321584,1756738 +0.5,0.8,60000,60000,CHECK FILTER,1137.157,2.336,115.465,1265300,918967 +0.5,0.85,60000,60000,CHECK FILTER,488.508,2.336,115.465,642202,517859 +0.5,0.7,60000,60000,NN FILTER,120.567,2.336,115.465,3055067,0 +0.5,0.75,60000,60000,NN FILTER,87.173,2.336,115.465,2321584,0 +0.5,0.8,60000,60000,NN FILTER,49.292,2.336,115.465,1265300,0 +0.5,0.85,60000,60000,NN FILTER,23.97,2.336,115.465,642202,0 +0.75,0.7,60000,60000,NO FILTER,3085.617,2.336,115.465,3055067,3055067 +0.75,0.75,60000,60000,NO FILTER,1788.559,2.336,115.465,2321584,2321584 +0.75,0.8,60000,60000,NO FILTER,1046.714,2.336,115.465,1265300,1265300 +0.75,0.85,60000,60000,NO FILTER,481.793,2.336,115.465,642202,642202 +0.75,0.7,60000,60000,CHECK FILTER,2991.745,2.336,115.465,3055067,2428269 +0.75,0.75,60000,60000,CHECK FILTER,1699.433,2.336,115.465,2321584,1750589 +0.75,0.8,60000,60000,CHECK FILTER,983.657,2.336,115.465,1265300,916628 +0.75,0.85,60000,60000,CHECK FILTER,458.081,2.336,115.465,642202,516012 +0.75,0.7,60000,60000,NN FILTER,119.557,2.336,115.465,3055067,0 +0.75,0.75,60000,60000,NN FILTER,86.338,2.336,115.465,2321584,0 +0.75,0.8,60000,60000,NN FILTER,48.63,2.336,115.465,1265300,0 +0.75,0.85,60000,60000,NN FILTER,23.63,2.336,115.465,642202,0 diff --git a/experiments/results/schema_matching/github_webtable_schema_matching_experiment_α=0.0.png b/experiments/results/schema_matching/github_webtable_schema_matching_experiment_α=0.0.png new file mode 100644 index 0000000..30c24e6 Binary files /dev/null and b/experiments/results/schema_matching/github_webtable_schema_matching_experiment_α=0.0.png differ diff --git a/experiments/results/schema_matching/github_webtable_schema_matching_experiment_α=0.25.png b/experiments/results/schema_matching/github_webtable_schema_matching_experiment_α=0.25.png new file mode 100644 index 0000000..82e9943 Binary files /dev/null and b/experiments/results/schema_matching/github_webtable_schema_matching_experiment_α=0.25.png differ diff --git a/experiments/results/schema_matching/github_webtable_schema_matching_experiment_α=0.5.png b/experiments/results/schema_matching/github_webtable_schema_matching_experiment_α=0.5.png new file mode 100644 index 0000000..feb1094 Binary files /dev/null and b/experiments/results/schema_matching/github_webtable_schema_matching_experiment_α=0.5.png differ diff --git a/experiments/results/schema_matching/github_webtable_schema_matching_experiment_α=0.75.png b/experiments/results/schema_matching/github_webtable_schema_matching_experiment_α=0.75.png new file mode 100644 index 0000000..0423aff Binary files /dev/null and b/experiments/results/schema_matching/github_webtable_schema_matching_experiment_α=0.75.png differ diff --git a/experiments/results/schema_matching/schema_matching_filter_experiment_results.csv b/experiments/results/schema_matching/schema_matching_filter_experiment_results.csv new file mode 100644 index 0000000..4cfca54 --- /dev/null +++ b/experiments/results/schema_matching/schema_matching_filter_experiment_results.csv @@ -0,0 +1,49 @@ +similarity_threshold,related_threshold,source_set_amount,label,elapsed_time,inverted_index_time,inverted_index_ram_usage +0.0,0.7,60000,NO FILTER,5210.037,1.383,95.605 +0.0,0.75,60000,NO FILTER,4654.41,1.383,95.605 +0.0,0.8,60000,NO FILTER,3891.372,1.383,95.605 +0.0,0.85,60000,NO FILTER,3561.118,1.383,95.605 +0.0,0.7,60000,CHECK FILTER,5374.941,1.383,95.605 +0.0,0.75,60000,CHECK FILTER,4772.542,1.383,95.605 +0.0,0.8,60000,CHECK FILTER,4004.38,1.383,95.605 +0.0,0.85,60000,CHECK FILTER,3653.843,1.383,95.605 +0.0,0.7,60000,NN FILTER,3889.903,1.383,95.605 +0.0,0.75,60000,NN FILTER,3739.136,1.383,95.605 +0.0,0.8,60000,NN FILTER,3609.17,1.383,95.605 +0.0,0.85,60000,NN FILTER,3517.33,1.383,95.605 +0.25,0.7,60000,NO FILTER,5157.674,1.383,95.605 +0.25,0.75,60000,NO FILTER,4621.14,1.383,95.605 +0.25,0.8,60000,NO FILTER,3905.856,1.383,95.605 +0.25,0.85,60000,NO FILTER,3598.239,1.383,95.605 +0.25,0.7,60000,CHECK FILTER,5331.451,1.383,95.605 +0.25,0.75,60000,CHECK FILTER,4769.428,1.383,95.605 +0.25,0.8,60000,CHECK FILTER,4042.779,1.383,95.605 +0.25,0.85,60000,CHECK FILTER,3709.669,1.383,95.605 +0.25,0.7,60000,NN FILTER,3910.54,1.383,95.605 +0.25,0.75,60000,NN FILTER,3760.587,1.383,95.605 +0.25,0.8,60000,NN FILTER,3644.443,1.383,95.605 +0.25,0.85,60000,NN FILTER,3558.579,1.383,95.605 +0.5,0.7,60000,NO FILTER,5143.478,1.383,95.605 +0.5,0.75,60000,NO FILTER,4670.328,1.383,95.605 +0.5,0.8,60000,NO FILTER,3917.002,1.383,95.605 +0.5,0.85,60000,NO FILTER,3556.487,1.383,95.605 +0.5,0.7,60000,CHECK FILTER,5279.287,1.383,95.605 +0.5,0.75,60000,CHECK FILTER,4749.58,1.383,95.605 +0.5,0.8,60000,CHECK FILTER,4009.224,1.383,95.605 +0.5,0.85,60000,CHECK FILTER,3659.874,1.383,95.605 +0.5,0.7,60000,NN FILTER,3897.174,1.383,95.605 +0.5,0.75,60000,NN FILTER,3771.733,1.383,95.605 +0.5,0.8,60000,NN FILTER,3657.094,1.383,95.605 +0.5,0.85,60000,NN FILTER,3553.523,1.383,95.605 +0.75,0.7,60000,NO FILTER,5107.903,1.383,95.605 +0.75,0.75,60000,NO FILTER,4582.298,1.383,95.605 +0.75,0.8,60000,NO FILTER,3889.505,1.383,95.605 +0.75,0.85,60000,NO FILTER,3559.531,1.383,95.605 +0.75,0.7,60000,CHECK FILTER,5254.747,1.383,95.605 +0.75,0.75,60000,CHECK FILTER,4722.922,1.383,95.605 +0.75,0.8,60000,CHECK FILTER,3977.968,1.383,95.605 +0.75,0.85,60000,CHECK FILTER,3635.288,1.383,95.605 +0.75,0.7,60000,NN FILTER,3874.915,1.383,95.605 +0.75,0.75,60000,NN FILTER,3786.562,1.383,95.605 +0.75,0.8,60000,NN FILTER,3901.219,1.383,95.605 +0.75,0.85,60000,NN FILTER,3541.992,1.383,95.605 diff --git a/experiments/results/schema_matching/schema_matching_filter_experiment_α=0.25.png b/experiments/results/schema_matching/schema_matching_filter_experiment_α=0.25.png new file mode 100644 index 0000000..7da8751 Binary files /dev/null and b/experiments/results/schema_matching/schema_matching_filter_experiment_α=0.25.png differ diff --git a/experiments/results/schema_matching/schema_matching_filter_experiment_α=0.5.png b/experiments/results/schema_matching/schema_matching_filter_experiment_α=0.5.png new file mode 100644 index 0000000..7f41b74 Binary files /dev/null and b/experiments/results/schema_matching/schema_matching_filter_experiment_α=0.5.png differ diff --git a/experiments/results/schema_matching/schema_matching_filter_experiment_α=0.75.png b/experiments/results/schema_matching/schema_matching_filter_experiment_α=0.75.png new file mode 100644 index 0000000..073548d Binary files /dev/null and b/experiments/results/schema_matching/schema_matching_filter_experiment_α=0.75.png differ diff --git a/experiments/results/schema_matching/schema_matching_filter_experiment_α=0.png b/experiments/results/schema_matching/schema_matching_filter_experiment_α=0.png new file mode 100644 index 0000000..72e040b Binary files /dev/null and b/experiments/results/schema_matching/schema_matching_filter_experiment_α=0.png differ diff --git a/experiments/results/schema_matching/schema_matching_ratio.csv b/experiments/results/schema_matching/schema_matching_ratio.csv new file mode 100644 index 0000000..4d2f505 --- /dev/null +++ b/experiments/results/schema_matching/schema_matching_ratio.csv @@ -0,0 +1,2 @@ +experiment name,elem/set,tokens/elem +Schema Matching,4.839676,7.059130404597332 diff --git a/experiments/results/schema_matching/schema_matching_scalability_experiment_results.csv b/experiments/results/schema_matching/schema_matching_scalability_experiment_results.csv new file mode 100644 index 0000000..90115b9 --- /dev/null +++ b/experiments/results/schema_matching/schema_matching_scalability_experiment_results.csv @@ -0,0 +1,21 @@ +similarity_threshold,related_threshold,source_set_amount,set_size,elapsed_time,inverted_index_time,inverted_index_ram_usage +0.0,0.7,12000,12000,162.511,1.149,10.633 +0.0,0.7,24000,24000,629.266,0.912,-14.359 +0.0,0.7,36000,36000,1448.696,1.047,-3.805 +0.0,0.7,48000,48000,2589.084,0.36,8.324 +0.0,0.7,60000,60000,4018.602,1.276,30.07 +0.0,0.75,12000,12000,156.237,0.079,0.0 +0.0,0.75,24000,24000,601.804,0.166,0.0 +0.0,0.75,36000,36000,1391.051,0.258,14.434 +0.0,0.75,48000,48000,2485.407,1.142,23.73 +0.0,0.75,60000,60000,3865.861,1.259,20.078 +0.0,0.8,12000,12000,150.844,0.075,0.0 +0.0,0.8,24000,24000,579.687,0.169,0.0 +0.0,0.8,36000,36000,1337.54,0.259,6.953 +0.0,0.8,48000,48000,2393.576,0.365,29.129 +0.0,0.8,60000,60000,3731.672,1.298,29.992 +0.0,0.85,12000,12000,146.417,0.077,0.0 +0.0,0.85,24000,24000,565.317,0.903,-2.0 +0.0,0.85,36000,36000,1303.856,1.025,7.91 +0.0,0.85,48000,48000,2328.478,1.158,11.004 +0.0,0.85,60000,60000,3636.522,1.285,28.184 diff --git a/experiments/results/schema_matching/schema_matching_scalability_experiment_α=0.0.png b/experiments/results/schema_matching/schema_matching_scalability_experiment_α=0.0.png new file mode 100644 index 0000000..4711282 Binary files /dev/null and b/experiments/results/schema_matching/schema_matching_scalability_experiment_α=0.0.png differ diff --git a/experiments/results/schema_matching/schema_matching_sig_experiment_results.csv b/experiments/results/schema_matching/schema_matching_sig_experiment_results.csv new file mode 100644 index 0000000..f8213ee --- /dev/null +++ b/experiments/results/schema_matching/schema_matching_sig_experiment_results.csv @@ -0,0 +1,49 @@ +similarity_threshold,related_threshold,source_set_amount,label,elapsed_time,inverted_index_time,inverted_index_ram_usage +0.0,0.7,60000,SigType.WEIGHTED,5355.864,1.44,96.559 +0.0,0.75,60000,SigType.WEIGHTED,4770.741,1.44,96.559 +0.0,0.8,60000,SigType.WEIGHTED,4016.552,1.44,96.559 +0.0,0.85,60000,SigType.WEIGHTED,3652.589,1.44,96.559 +0.0,0.7,60000,SigType.SKYLINE,5320.789,1.44,96.559 +0.0,0.75,60000,SigType.SKYLINE,4754.873,1.44,96.559 +0.0,0.8,60000,SigType.SKYLINE,3993.905,1.44,96.559 +0.0,0.85,60000,SigType.SKYLINE,3637.896,1.44,96.559 +0.0,0.7,60000,SigType.DICHOTOMY,5314.17,1.44,96.559 +0.0,0.75,60000,SigType.DICHOTOMY,4747.451,1.44,96.559 +0.0,0.8,60000,SigType.DICHOTOMY,3987.966,1.44,96.559 +0.0,0.85,60000,SigType.DICHOTOMY,3639.406,1.44,96.559 +0.25,0.7,60000,SigType.WEIGHTED,5286.204,1.44,96.559 +0.25,0.75,60000,SigType.WEIGHTED,4740.2,1.44,96.559 +0.25,0.8,60000,SigType.WEIGHTED,3988.353,1.44,96.559 +0.25,0.85,60000,SigType.WEIGHTED,3621.661,1.44,96.559 +0.25,0.7,60000,SigType.SKYLINE,5272.151,1.44,96.559 +0.25,0.75,60000,SigType.SKYLINE,4793.404,1.44,96.559 +0.25,0.8,60000,SigType.SKYLINE,4270.868,1.44,96.559 +0.25,0.85,60000,SigType.SKYLINE,3897.66,1.44,96.559 +0.25,0.7,60000,SigType.DICHOTOMY,5280.093,1.44,96.559 +0.25,0.75,60000,SigType.DICHOTOMY,4728.997,1.44,96.559 +0.25,0.8,60000,SigType.DICHOTOMY,3971.004,1.44,96.559 +0.25,0.85,60000,SigType.DICHOTOMY,3612.607,1.44,96.559 +0.5,0.7,60000,SigType.WEIGHTED,5191.199,1.44,96.559 +0.5,0.75,60000,SigType.WEIGHTED,4656.862,1.44,96.559 +0.5,0.8,60000,SigType.WEIGHTED,3920.386,1.44,96.559 +0.5,0.85,60000,SigType.WEIGHTED,3580.435,1.44,96.559 +0.5,0.7,60000,SigType.SKYLINE,5180.493,1.44,96.559 +0.5,0.75,60000,SigType.SKYLINE,4622.431,1.44,96.559 +0.5,0.8,60000,SigType.SKYLINE,3871.093,1.44,96.559 +0.5,0.85,60000,SigType.SKYLINE,3525.577,1.44,96.559 +0.5,0.7,60000,SigType.DICHOTOMY,5112.984,1.44,96.559 +0.5,0.75,60000,SigType.DICHOTOMY,4605.999,1.44,96.559 +0.5,0.8,60000,SigType.DICHOTOMY,3876.706,1.44,96.559 +0.5,0.85,60000,SigType.DICHOTOMY,3526.946,1.44,96.559 +0.75,0.7,60000,SigType.WEIGHTED,5031.754,1.44,96.559 +0.75,0.75,60000,SigType.WEIGHTED,4539.266,1.44,96.559 +0.75,0.8,60000,SigType.WEIGHTED,3854.313,1.44,96.559 +0.75,0.85,60000,SigType.WEIGHTED,3529.814,1.44,96.559 +0.75,0.7,60000,SigType.SKYLINE,5037.338,1.44,96.559 +0.75,0.75,60000,SigType.SKYLINE,4546.784,1.44,96.559 +0.75,0.8,60000,SigType.SKYLINE,3843.47,1.44,96.559 +0.75,0.85,60000,SigType.SKYLINE,3524.44,1.44,96.559 +0.75,0.7,60000,SigType.DICHOTOMY,5252.169,1.44,96.559 +0.75,0.75,60000,SigType.DICHOTOMY,4699.463,1.44,96.559 +0.75,0.8,60000,SigType.DICHOTOMY,3928.414,1.44,96.559 +0.75,0.85,60000,SigType.DICHOTOMY,3565.332,1.44,96.559 diff --git a/experiments/results/schema_matching/schema_matching_sig_experiment_α=0.0.png b/experiments/results/schema_matching/schema_matching_sig_experiment_α=0.0.png new file mode 100644 index 0000000..c34ac81 Binary files /dev/null and b/experiments/results/schema_matching/schema_matching_sig_experiment_α=0.0.png differ diff --git a/experiments/results/schema_matching/schema_matching_sig_experiment_α=0.25.png b/experiments/results/schema_matching/schema_matching_sig_experiment_α=0.25.png new file mode 100644 index 0000000..91be4f8 Binary files /dev/null and b/experiments/results/schema_matching/schema_matching_sig_experiment_α=0.25.png differ diff --git a/experiments/results/schema_matching/schema_matching_sig_experiment_α=0.5.png b/experiments/results/schema_matching/schema_matching_sig_experiment_α=0.5.png new file mode 100644 index 0000000..8156819 Binary files /dev/null and b/experiments/results/schema_matching/schema_matching_sig_experiment_α=0.5.png differ diff --git a/experiments/results/schema_matching/schema_matching_sig_experiment_α=0.75.png b/experiments/results/schema_matching/schema_matching_sig_experiment_α=0.75.png new file mode 100644 index 0000000..de54856 Binary files /dev/null and b/experiments/results/schema_matching/schema_matching_sig_experiment_α=0.75.png differ diff --git a/experiments/results/string_matching/10k-set-size/string_matching_filter_experiment_results.csv b/experiments/results/string_matching/10k-set-size/string_matching_filter_experiment_results.csv new file mode 100644 index 0000000..ef46a82 --- /dev/null +++ b/experiments/results/string_matching/10k-set-size/string_matching_filter_experiment_results.csv @@ -0,0 +1,13 @@ +similarity_threshold,related_threshold,source_set_amount,label,elapsed_time,inverted_index_time,inverted_index_ram_usage +0.8,0.7,10000,NO FILTER,3180.351,0.686,63.961 +0.8,0.75,10000,NO FILTER,2729.108,0.686,63.961 +0.8,0.8,10000,NO FILTER,2185.09,0.686,63.961 +0.8,0.85,10000,NO FILTER,1542.041,0.686,63.961 +0.8,0.7,10000,CHECK FILTER,2329.334,0.686,63.961 +0.8,0.75,10000,CHECK FILTER,2012.022,0.686,63.961 +0.8,0.8,10000,CHECK FILTER,1609.739,0.686,63.961 +0.8,0.85,10000,CHECK FILTER,1140.994,0.686,63.961 +0.8,0.7,10000,NN FILTER,448.129,0.686,63.961 +0.8,0.75,10000,NN FILTER,388.975,0.686,63.961 +0.8,0.8,10000,NN FILTER,315.568,0.686,63.961 +0.8,0.85,10000,NN FILTER,232.207,0.686,63.961 diff --git a/experiments/results/string_matching/10k-set-size/string_matching_filter_experiment_α=0.8.png b/experiments/results/string_matching/10k-set-size/string_matching_filter_experiment_α=0.8.png new file mode 100644 index 0000000..6f851a9 Binary files /dev/null and b/experiments/results/string_matching/10k-set-size/string_matching_filter_experiment_α=0.8.png differ diff --git a/experiments/results/string_matching/10k-set-size/string_matching_sig_experiment_results.csv b/experiments/results/string_matching/10k-set-size/string_matching_sig_experiment_results.csv new file mode 100644 index 0000000..d862bfa --- /dev/null +++ b/experiments/results/string_matching/10k-set-size/string_matching_sig_experiment_results.csv @@ -0,0 +1,13 @@ +similarity_threshold,related_threshold,source_set_amount,label,elapsed_time,inverted_index_time,inverted_index_ram_usage +0.8,0.7,10000,SigType.WEIGHTED,3215.981,0.686,64.16 +0.8,0.75,10000,SigType.WEIGHTED,2754.485,0.686,64.16 +0.8,0.8,10000,SigType.WEIGHTED,2201.524,0.686,64.16 +0.8,0.85,10000,SigType.WEIGHTED,1558.372,0.686,64.16 +0.8,0.7,10000,SigType.SKYLINE,3200.56,0.686,64.16 +0.8,0.75,10000,SigType.SKYLINE,2757.303,0.686,64.16 +0.8,0.8,10000,SigType.SKYLINE,55.38,0.686,64.16 +0.8,0.85,10000,SigType.SKYLINE,20.134,0.686,64.16 +0.8,0.7,10000,SigType.DICHOTOMY,3151.663,0.686,64.16 +0.8,0.75,10000,SigType.DICHOTOMY,2613.546,0.686,64.16 +0.8,0.8,10000,SigType.DICHOTOMY,52.873,0.686,64.16 +0.8,0.85,10000,SigType.DICHOTOMY,19.331,0.686,64.16 diff --git a/experiments/results/string_matching/10k-set-size/string_matching_sig_experiment_α=0.8.png b/experiments/results/string_matching/10k-set-size/string_matching_sig_experiment_α=0.8.png new file mode 100644 index 0000000..d54c2e1 Binary files /dev/null and b/experiments/results/string_matching/10k-set-size/string_matching_sig_experiment_α=0.8.png differ diff --git a/experiments/results/string_matching/string_matching_filter_experiment_results.csv b/experiments/results/string_matching/string_matching_filter_experiment_results.csv new file mode 100644 index 0000000..38a3636 --- /dev/null +++ b/experiments/results/string_matching/string_matching_filter_experiment_results.csv @@ -0,0 +1,49 @@ +similarity_threshold,related_threshold,source_set_amount,label,elapsed_time,inverted_index_time,inverted_index_ram_usage +0.7,0.7,5000,NO FILTER,3145.41,0.391,28.309 +0.7,0.75,5000,NO FILTER,2687.395,0.391,28.309 +0.7,0.8,5000,NO FILTER,2244.686,0.391,28.309 +0.7,0.85,5000,NO FILTER,1650.297,0.391,28.309 +0.7,0.7,5000,CHECK FILTER,4118.279,0.391,28.309 +0.7,0.75,5000,CHECK FILTER,3601.918,0.391,28.309 +0.7,0.8,5000,CHECK FILTER,2874.443,0.391,28.309 +0.7,0.85,5000,CHECK FILTER,2044.612,0.391,28.309 +0.7,0.7,5000,NN FILTER,630.678,0.391,28.309 +0.7,0.75,5000,NN FILTER,562.722,0.391,28.309 +0.7,0.8,5000,NN FILTER,483.175,0.391,28.309 +0.7,0.85,5000,NN FILTER,394.221,0.391,28.309 +0.75,0.7,5000,NO FILTER,2189.373,0.391,28.309 +0.75,0.75,5000,NO FILTER,1891.061,0.391,28.309 +0.75,0.8,5000,NO FILTER,1516.5,0.391,28.309 +0.75,0.85,5000,NO FILTER,1073.123,0.391,28.309 +0.75,0.7,5000,CHECK FILTER,2222.872,0.391,28.309 +0.75,0.75,5000,CHECK FILTER,1913.937,0.391,28.309 +0.75,0.8,5000,CHECK FILTER,1542.112,0.391,28.309 +0.75,0.85,5000,CHECK FILTER,1086.385,0.391,28.309 +0.75,0.7,5000,NN FILTER,304.748,0.391,28.309 +0.75,0.75,5000,NN FILTER,265.773,0.391,28.309 +0.75,0.8,5000,NN FILTER,217.404,0.391,28.309 +0.75,0.85,5000,NN FILTER,162.876,0.391,28.309 +0.8,0.7,5000,NO FILTER,858.698,0.391,28.309 +0.8,0.75,5000,NO FILTER,745.085,0.391,28.309 +0.8,0.8,5000,NO FILTER,596.28,0.391,28.309 +0.8,0.85,5000,NO FILTER,421.34,0.391,28.309 +0.8,0.7,5000,CHECK FILTER,636.886,0.391,28.309 +0.8,0.75,5000,CHECK FILTER,550.521,0.391,28.309 +0.8,0.8,5000,CHECK FILTER,443.218,0.391,28.309 +0.8,0.85,5000,CHECK FILTER,313.208,0.391,28.309 +0.8,0.7,5000,NN FILTER,120.012,0.391,28.309 +0.8,0.75,5000,NN FILTER,103.497,0.391,28.309 +0.8,0.8,5000,NN FILTER,85.033,0.391,28.309 +0.8,0.85,5000,NN FILTER,62.035,0.391,28.309 +0.85,0.7,5000,NO FILTER,446.251,0.391,28.309 +0.85,0.75,5000,NO FILTER,386.611,0.391,28.309 +0.85,0.8,5000,NO FILTER,309.98,0.391,28.309 +0.85,0.85,5000,NO FILTER,217.511,0.391,28.309 +0.85,0.7,5000,CHECK FILTER,364.622,0.391,28.309 +0.85,0.75,5000,CHECK FILTER,323.038,0.391,28.309 +0.85,0.8,5000,CHECK FILTER,263.697,0.391,28.309 +0.85,0.85,5000,CHECK FILTER,184.893,0.391,28.309 +0.85,0.7,5000,NN FILTER,72.101,0.391,28.309 +0.85,0.75,5000,NN FILTER,62.971,0.391,28.309 +0.85,0.8,5000,NN FILTER,51.582,0.391,28.309 +0.85,0.85,5000,NN FILTER,35.586,0.391,28.309 diff --git a/experiments/results/string_matching/string_matching_filter_experiment_α=0.7.png b/experiments/results/string_matching/string_matching_filter_experiment_α=0.7.png new file mode 100644 index 0000000..7fa176f Binary files /dev/null and b/experiments/results/string_matching/string_matching_filter_experiment_α=0.7.png differ diff --git a/experiments/results/string_matching/string_matching_filter_experiment_α=0.75.png b/experiments/results/string_matching/string_matching_filter_experiment_α=0.75.png new file mode 100644 index 0000000..06687b7 Binary files /dev/null and b/experiments/results/string_matching/string_matching_filter_experiment_α=0.75.png differ diff --git a/experiments/results/string_matching/string_matching_filter_experiment_α=0.8.png b/experiments/results/string_matching/string_matching_filter_experiment_α=0.8.png new file mode 100644 index 0000000..330913f Binary files /dev/null and b/experiments/results/string_matching/string_matching_filter_experiment_α=0.8.png differ diff --git a/experiments/results/string_matching/string_matching_filter_experiment_α=0.85.png b/experiments/results/string_matching/string_matching_filter_experiment_α=0.85.png new file mode 100644 index 0000000..1d2dab2 Binary files /dev/null and b/experiments/results/string_matching/string_matching_filter_experiment_α=0.85.png differ diff --git a/experiments/results/string_matching/string_matching_ratio.csv b/experiments/results/string_matching/string_matching_ratio.csv new file mode 100644 index 0000000..22dfa4c --- /dev/null +++ b/experiments/results/string_matching/string_matching_ratio.csv @@ -0,0 +1,2 @@ +experiment name,elem/set,tokens/elem +String Matching,9.847735909042738,6.878140889891579 diff --git a/experiments/results/string_matching/string_matching_scalability_experiment_results.csv b/experiments/results/string_matching/string_matching_scalability_experiment_results.csv new file mode 100644 index 0000000..e59756b --- /dev/null +++ b/experiments/results/string_matching/string_matching_scalability_experiment_results.csv @@ -0,0 +1,24 @@ +similarity_threshold,related_threshold,source_set_amount,set_size,elapsed_time,inverted_index_time,inverted_index_ram_usage +0.8,0.7,2500,2500,20.354,0.269,9.504 +0.8,0.7,5000,5000,113.087,0.29,11.926 +0.8,0.7,10000,10000,454.182,0.516,28.629 +0.8,0.7,20000,20000,1579.457,1.158,55.445 +0.8,0.7,40000,40000,9424.586,2.476,204.078 +0.8,0.75,2500,2500,17.996,0.076,0.0 +0.8,0.75,5000,5000,99.042,0.311,-0.984 +0.8,0.75,10000,10000,397.007,0.666,23.434 +0.8,0.75,20000,20000,1373.817,1.13,67.41 +0.8,0.75,20000,20000,1360.908,1.176,133.656 +0.8,0.8,20000,20000,1108.245,1.121,60.602 +0.8,0.85,20000,20000,826.474,0.952,49.543 +0.8,0.75,40000,40000,8340.751,2.489,166.387 +0.8,0.8,2500,2500,14.693,0.076,0.0 +0.8,0.8,5000,5000,81.646,0.299,-4.938 +0.8,0.8,10000,10000,324.125,0.526,20.617 +0.8,0.8,20000,20000,1114.55,1.36,68.348 +0.8,0.8,40000,40000,6704.746,2.626,212.395 +0.8,0.85,2500,2500,11.171,0.169,-86.672 +0.8,0.85,5000,5000,59.849,0.17,0.0 +0.8,0.85,10000,10000,237.911,0.67,35.836 +0.8,0.85,20000,20000,825.885,1.155,59.43 +0.8,0.85,40000,40000,4904.373,2.558,198.414 diff --git a/experiments/results/string_matching/string_matching_scalability_experiment_α=0.8.png b/experiments/results/string_matching/string_matching_scalability_experiment_α=0.8.png new file mode 100644 index 0000000..a5ffe6e Binary files /dev/null and b/experiments/results/string_matching/string_matching_scalability_experiment_α=0.8.png differ diff --git a/experiments/results/string_matching/string_matching_sig_experiment_results.csv b/experiments/results/string_matching/string_matching_sig_experiment_results.csv new file mode 100644 index 0000000..8d8e6c1 --- /dev/null +++ b/experiments/results/string_matching/string_matching_sig_experiment_results.csv @@ -0,0 +1,49 @@ +similarity_threshold,related_threshold,source_set_amount,label,elapsed_time,inverted_index_time,inverted_index_ram_usage +0.7,0.7,5000,SigType.WEIGHTED,3142.821,0.377,28.309 +0.7,0.75,5000,SigType.WEIGHTED,2682.225,0.377,28.309 +0.7,0.8,5000,SigType.WEIGHTED,2239.236,0.377,28.309 +0.7,0.85,5000,SigType.WEIGHTED,1645.65,0.377,28.309 +0.7,0.7,5000,SigType.SKYLINE,2961.813,0.377,28.309 +0.7,0.75,5000,SigType.SKYLINE,2370.479,0.377,28.309 +0.7,0.8,5000,SigType.SKYLINE,1638.268,0.377,28.309 +0.7,0.85,5000,SigType.SKYLINE,873.634,0.377,28.309 +0.7,0.7,5000,SigType.DICHOTOMY,2971.812,0.377,28.309 +0.7,0.75,5000,SigType.DICHOTOMY,2330.936,0.377,28.309 +0.7,0.8,5000,SigType.DICHOTOMY,1601.018,0.377,28.309 +0.7,0.85,5000,SigType.DICHOTOMY,850.349,0.377,28.309 +0.75,0.7,5000,SigType.WEIGHTED,2191.563,0.377,28.309 +0.75,0.75,5000,SigType.WEIGHTED,1893.747,0.377,28.309 +0.75,0.8,5000,SigType.WEIGHTED,1521.498,0.377,28.309 +0.75,0.85,5000,SigType.WEIGHTED,1067.3,0.377,28.309 +0.75,0.7,5000,SigType.SKYLINE,2194.143,0.377,28.309 +0.75,0.75,5000,SigType.SKYLINE,1885.513,0.377,28.309 +0.75,0.8,5000,SigType.SKYLINE,243.915,0.377,28.309 +0.75,0.85,5000,SigType.SKYLINE,76.608,0.377,28.309 +0.75,0.7,5000,SigType.DICHOTOMY,2193.586,0.377,28.309 +0.75,0.75,5000,SigType.DICHOTOMY,1891.043,0.377,28.309 +0.75,0.8,5000,SigType.DICHOTOMY,243.111,0.377,28.309 +0.75,0.85,5000,SigType.DICHOTOMY,76.276,0.377,28.309 +0.8,0.7,5000,SigType.WEIGHTED,863.808,0.377,28.309 +0.8,0.75,5000,SigType.WEIGHTED,741.957,0.377,28.309 +0.8,0.8,5000,SigType.WEIGHTED,593.837,0.377,28.309 +0.8,0.85,5000,SigType.WEIGHTED,417.66,0.377,28.309 +0.8,0.7,5000,SigType.SKYLINE,856.288,0.377,28.309 +0.8,0.75,5000,SigType.SKYLINE,740.398,0.377,28.309 +0.8,0.8,5000,SigType.SKYLINE,16.179,0.377,28.309 +0.8,0.85,5000,SigType.SKYLINE,6.176,0.377,28.309 +0.8,0.7,5000,SigType.DICHOTOMY,874.258,0.377,28.309 +0.8,0.75,5000,SigType.DICHOTOMY,745.18,0.377,28.309 +0.8,0.8,5000,SigType.DICHOTOMY,15.214,0.377,28.309 +0.8,0.85,5000,SigType.DICHOTOMY,5.962,0.377,28.309 +0.85,0.7,5000,SigType.WEIGHTED,428.452,0.377,28.309 +0.85,0.75,5000,SigType.WEIGHTED,360.578,0.377,28.309 +0.85,0.8,5000,SigType.WEIGHTED,290.172,0.377,28.309 +0.85,0.85,5000,SigType.WEIGHTED,200.998,0.377,28.309 +0.85,0.7,5000,SigType.SKYLINE,411.051,0.377,28.309 +0.85,0.75,5000,SigType.SKYLINE,359.539,0.377,28.309 +0.85,0.8,5000,SigType.SKYLINE,285.937,0.377,28.309 +0.85,0.85,5000,SigType.SKYLINE,3.169,0.377,28.309 +0.85,0.7,5000,SigType.DICHOTOMY,416.254,0.377,28.309 +0.85,0.75,5000,SigType.DICHOTOMY,383.443,0.377,28.309 +0.85,0.8,5000,SigType.DICHOTOMY,288.102,0.377,28.309 +0.85,0.85,5000,SigType.DICHOTOMY,3.283,0.377,28.309 diff --git a/experiments/results/string_matching/string_matching_sig_experiment_α=0.7.png b/experiments/results/string_matching/string_matching_sig_experiment_α=0.7.png new file mode 100644 index 0000000..9c88517 Binary files /dev/null and b/experiments/results/string_matching/string_matching_sig_experiment_α=0.7.png differ diff --git a/experiments/results/string_matching/string_matching_sig_experiment_α=0.75.png b/experiments/results/string_matching/string_matching_sig_experiment_α=0.75.png new file mode 100644 index 0000000..6125d41 Binary files /dev/null and b/experiments/results/string_matching/string_matching_sig_experiment_α=0.75.png differ diff --git a/experiments/results/string_matching/string_matching_sig_experiment_α=0.8.png b/experiments/results/string_matching/string_matching_sig_experiment_α=0.8.png new file mode 100644 index 0000000..ab485aa Binary files /dev/null and b/experiments/results/string_matching/string_matching_sig_experiment_α=0.8.png differ diff --git a/experiments/results/string_matching/string_matching_sig_experiment_α=0.85.png b/experiments/results/string_matching/string_matching_sig_experiment_α=0.85.png new file mode 100644 index 0000000..e87e558 Binary files /dev/null and b/experiments/results/string_matching/string_matching_sig_experiment_α=0.85.png differ diff --git a/experiments/run.py b/experiments/run.py new file mode 100644 index 0000000..f1dc683 --- /dev/null +++ b/experiments/run.py @@ -0,0 +1,176 @@ +# Python +import multiprocessing +from experiments import run_experiment_filter_schemes, run_reduction_experiment, run_scalability_experiment, run_matching_without_silkmoth_inc_dep +import os +from data_loader import DataLoader +from utils import load_sets_from_files +from src.silkmoth.utils import jaccard_similarity, contain, similar, SigType, edit_similarity + + +def run_experiment_multi(experiment_method, *args): + experiment_method(*args) + + +if __name__ == "__main__": + data_loader = DataLoader("/") + + # Labels for Filter Experiments + labels_filter = ["NO FILTER", "CHECK FILTER", "NN FILTER"] + + # Labels for Signature Scheme + labels_sig_schemes = [SigType.WEIGHTED, SigType.SKYLINE, SigType.DICHOTOMY] + + # Labels for Reduction + labels_reduction = ["REDUCTION", "NO REDUCTION"] + + # Load the datasets for Experiments + data_path = os.path.join(os.path.dirname(__file__), "data", "dblp", "DBLP_100k.csv") + source_string_matching = data_loader.load_dblp_titles(data_path) + source_string_matching = [title.split() for title in source_string_matching] + + try: + folder_path = os.path.join(os.path.dirname(__file__), "../experiments/data/webtables") + folder_path = os.path.normpath(folder_path) + reference_sets_in_dep, source_sets_in_dep = load_sets_from_files( + folder_path=folder_path, + reference_file="reference_sets_inclusion_dependency.json", + source_file="source_sets_inclusion_dependency.json" + ) + + reference_sets_schema_matching, source_sets_schema_matching = load_sets_from_files( + folder_path=folder_path, + reference_file="webtable_schemas_sets_500k.json", + source_file="webtable_schemas_sets_500k.json" + ) + del reference_sets_schema_matching + + _, github_source_sets_schema_matching = load_sets_from_files( + folder_path=folder_path, + reference_file="github_webtable_schemas_sets_500k.json", + source_file="github_webtable_schemas_sets_500k.json" + ) + + except FileNotFoundError: + print("Datasets not found. Skipping Experiments.") + reference_sets_in_dep, source_sets_in_dep, reference_sets_in_dep_reduction = [], [], [] + source_sets_schema_matching = [] + github_source_sets_schema_matching = [] + + # Experiment configuration + experiment_config = { + "filter_runs": False, + "signature_scheme_runs": False, + "reduction_runs": False, + "scalability_runs": False, + "schema_github_webtable_runs": False, + "inc_dep_without_silkmoth": True + } + + # Define experiments to run + experiments = [] + + if experiment_config["filter_runs"]: + # Filter runs + # String Matching Experiment + experiments.append(( + run_experiment_filter_schemes, [0.7, 0.75, 0.8, 0.85], [0.7, 0.75, 0.8, 0.85], + labels_filter, source_string_matching[:10_000], None, similar, edit_similarity , False, + "string_matching_filter", "results/string_matching/" + )) + + # Schema Matching Experiment + experiments.append(( + run_experiment_filter_schemes, [0.7, 0.75, 0.8, 0.85], [0.0, 0.25, 0.5, 0.75], + labels_filter, source_sets_schema_matching[:60_000], None, similar, jaccard_similarity, False, + "schema_matching_filter", "results/schema_matching/" + )) + + # Inclusion Dependency Experiment + experiments.append(( + run_experiment_filter_schemes, [0.7, 0.75, 0.8, 0.85], [0.0, 0.25, 0.5, 0.75], + labels_filter, source_sets_in_dep, reference_sets_in_dep[:200], contain, jaccard_similarity, True, + "inclusion_dependency_filter", "results/inclusion_dependency/" + )) + + + + if experiment_config["signature_scheme_runs"]: + # Signature Scheme Runs + #String Matching Experiment + experiments.append(( + run_experiment_filter_schemes, [0.7, 0.75, 0.8, 0.85], [0.7, 0.75, 0.8, 0.85], + labels_sig_schemes, source_string_matching[:10_000], None, similar, edit_similarity , False, + "string_matching_sig", "results/string_matching/" + )) + + # Schema Matching Experiment + experiments.append(( + run_experiment_filter_schemes, [0.7, 0.75, 0.8, 0.85], [0.0, 0.25, 0.5, 0.75], + labels_sig_schemes, source_sets_schema_matching[:60_000], None, similar, jaccard_similarity, False, + "schema_matching_sig", "results/schema_matching/" + )) + + # Inclusion Dependency Experiment + experiments.append(( + run_experiment_filter_schemes, [0.7, 0.75, 0.8, 0.85], [0.0, 0.25, 0.5, 0.75], + labels_sig_schemes, source_sets_in_dep, reference_sets_in_dep[:200], contain, jaccard_similarity, True, + "inclusion_dependency_sig", "results/inclusion_dependency/" + )) + + + if experiment_config["reduction_runs"]: + # Reduction Runs + experiments.append(( + run_reduction_experiment, [0.7, 0.75, 0.8, 0.85], 0.0, + labels_reduction, source_sets_in_dep, reference_sets_in_dep[:200], contain, jaccard_similarity, True, + "inclusion_dependency_reduction", "results/inclusion_dependency/" + )) + + if experiment_config["scalability_runs"]: + # Scalability Runs + # String Matching + experiments.append(( + run_scalability_experiment, [0.7, 0.75, 0.8, 0.85], 0.7, [1_000, 10_000, 100_000], + source_string_matching[:100_000], None, similar, edit_similarity, False, + "string_matching_scalability", "results/string_matching/" + )) + + # Inclusion Dependency + experiments.append(( + run_scalability_experiment, [0.7, 0.75, 0.8, 0.85], 0.5, [100_000, 200_000, 300_000, 400_000, 500_000], + source_sets_in_dep, reference_sets_in_dep[:200], contain, jaccard_similarity, True, + "inclusion_dependency_scalability", "results/inclusion_dependency/" + )) + + # Schema Matching + experiments.append(( + run_scalability_experiment, [0.7, 0.75, 0.8, 0.85], 0.0, [12_000, 24_000, 36_000, 48_000, 60_000], + source_sets_schema_matching[:60_000], None, similar, jaccard_similarity, False, + "schema_matching_scalability", "results/schema_matching/" + )) + + if experiment_config["schema_github_webtable_runs"]: + # Schema Matching with GitHub Webtable Schemas + experiments.append(( + run_experiment_filter_schemes, [0.7, 0.75, 0.8, 0.85], [0.0, 0.25, 0.5, 0.75], + labels_filter, source_sets_schema_matching[:10_000], github_source_sets_schema_matching[:10_000], similar, jaccard_similarity, True, + "github_webtable_schema_matching", "results/schema_matching/" + )) + + if experiment_config["inc_dep_without_silkmoth"]: + experiments.append(( + run_matching_without_silkmoth_inc_dep, source_sets_in_dep[:500_000], reference_sets_in_dep[:200], [0.7, 0.75, 0.8, 0.85], 0.5, contain, jaccard_similarity, + "raw_matching", "results/inclusion_dependency/" + )) + + # Create and start processes for each experiment + processes = [] + for experiment in experiments: + method, *args = experiment + process = multiprocessing.Process(target=run_experiment_multi, args=(method, *args)) + processes.append(process) + process.start() + + # Wait for all processes to complete + for process in processes: + process.join() diff --git a/experiments/silkmoth_results/inclusion_dep_filter.png b/experiments/silkmoth_results/inclusion_dep_filter.png new file mode 100644 index 0000000..c1641aa Binary files /dev/null and b/experiments/silkmoth_results/inclusion_dep_filter.png differ diff --git a/experiments/silkmoth_results/inclusion_dep_red.png b/experiments/silkmoth_results/inclusion_dep_red.png new file mode 100644 index 0000000..8263a80 Binary files /dev/null and b/experiments/silkmoth_results/inclusion_dep_red.png differ diff --git a/experiments/silkmoth_results/inclusion_dep_scal.png b/experiments/silkmoth_results/inclusion_dep_scal.png new file mode 100644 index 0000000..88af998 Binary files /dev/null and b/experiments/silkmoth_results/inclusion_dep_scal.png differ diff --git a/experiments/silkmoth_results/inclusion_dep_sig.png b/experiments/silkmoth_results/inclusion_dep_sig.png new file mode 100644 index 0000000..064f4a1 Binary files /dev/null and b/experiments/silkmoth_results/inclusion_dep_sig.png differ diff --git a/experiments/silkmoth_results/schema_matching_filter.png b/experiments/silkmoth_results/schema_matching_filter.png new file mode 100644 index 0000000..05b62b2 Binary files /dev/null and b/experiments/silkmoth_results/schema_matching_filter.png differ diff --git a/experiments/silkmoth_results/schema_matching_scal.png b/experiments/silkmoth_results/schema_matching_scal.png new file mode 100644 index 0000000..2b1155a Binary files /dev/null and b/experiments/silkmoth_results/schema_matching_scal.png differ diff --git a/experiments/silkmoth_results/schema_matching_sig.png b/experiments/silkmoth_results/schema_matching_sig.png new file mode 100644 index 0000000..edb0a52 Binary files /dev/null and b/experiments/silkmoth_results/schema_matching_sig.png differ diff --git a/experiments/silkmoth_results/string_matching_filter.png b/experiments/silkmoth_results/string_matching_filter.png new file mode 100644 index 0000000..df86363 Binary files /dev/null and b/experiments/silkmoth_results/string_matching_filter.png differ diff --git a/experiments/silkmoth_results/string_matching_scal.png b/experiments/silkmoth_results/string_matching_scal.png new file mode 100644 index 0000000..66202ce Binary files /dev/null and b/experiments/silkmoth_results/string_matching_scal.png differ diff --git a/experiments/silkmoth_results/string_matching_sig.png b/experiments/silkmoth_results/string_matching_sig.png new file mode 100644 index 0000000..61133c9 Binary files /dev/null and b/experiments/silkmoth_results/string_matching_sig.png differ diff --git a/experiments/utils.py b/experiments/utils.py new file mode 100644 index 0000000..a55ae58 --- /dev/null +++ b/experiments/utils.py @@ -0,0 +1,132 @@ +from collections import defaultdict + +import matplotlib.pyplot as plt +import json +import os +import pandas as pd +import psutil +from src.silkmoth.utils import jaccard_similarity +from src.silkmoth.tokenizer import Tokenizer + +def is_convertible_to_number(value): + try: + float(value) + return True + except ValueError: + return False + +def save_sets_to_files(reference_sets, source_sets, reference_file="reference_sets.json", source_file="source_sets.json"): + """ + Saves reference sets and source sets to their respective JSON files. + + Args: + reference_sets (list): The reference sets to save. + source_sets (list): The source sets to save. + reference_file (str): The file name for saving reference sets. + source_file (str): The file name for saving source sets. + """ + with open(reference_file, 'w', encoding='utf-8') as ref_file: + json.dump(reference_sets, ref_file, ensure_ascii=False, indent=4) + + with open(source_file, 'w', encoding='utf-8') as src_file: + json.dump(source_sets, src_file, ensure_ascii=False, indent=4) + +def load_sets_from_files(folder_path: str, reference_file: str = "reference_sets.json", source_file: str = "source_sets.json") -> tuple[list, list]: + source_path = os.path.join(folder_path, source_file) + reference_path = os.path.join(folder_path, reference_file) + + # Check if the files exist + if not os.path.exists(source_path) or not os.path.exists(reference_path): + raise FileNotFoundError("One or both of the required files do not exist in the specified folder.") + + # Load the reference sets + with open(reference_path, 'r', encoding='utf-8') as ref_file: + reference_sets = json.load(ref_file) + # Load the source sets + with open(source_path, 'r', encoding='utf-8') as src_file: + source_sets = json.load(src_file) + + return reference_sets, source_sets + +def measure_ram_usage(): + process = psutil.Process() + return process.memory_info().rss / (1024 ** 2) + + +def plot_elapsed_times(related_thresholds, elapsed_times_list, fig_text, file_name, xlabel=r'$\theta$', ylabel='Time (s)', title=None, legend_labels=None): + """ + Utility function to plot elapsed times against related thresholds for multiple settings. + + Args: + related_thresholds (list): Related thresholds (x-axis values). + elapsed_times_list (list of lists): List of elapsed times (y-axis values) for different settings. + fig_text (str): Text to display on the figure. + file_name (str): Name of the file to save the plot. + xlabel (str): Label for the x-axis. + ylabel (str): Label for the y-axis. + title (str): Title of the plot (optional). + legend_labels (list): List of labels for the legend (optional). + """ + fig = plt.figure(figsize=(8, 6)) + + # Plot each elapsed_times list with a different color and label + for i, elapsed_times in enumerate(elapsed_times_list): + label = legend_labels[i] if legend_labels and i < len(legend_labels) else f"Setting {i + 1}" + plt.plot(related_thresholds, elapsed_times, marker='o', label=label) + + plt.xlabel(xlabel, fontsize=14) + plt.ylabel(ylabel, fontsize=14) + + plt.xticks(related_thresholds) + + if title: + plt.title(title, fontsize=16) + + plt.grid(True) + if legend_labels: + plt.legend(fontsize=12) + plt.tight_layout() + + # Add figure text + plt.figtext(0.1, 0.01, fig_text, ha='left', fontsize=10) + + # Save the figure + plt.savefig(f"{file_name}", bbox_inches='tight', dpi=300) + +def save_experiment_results_to_csv(results, file_name): + """ + Appends experiment results to a CSV file. + + Args: + results (dict): + file_name (str): Name of the CSV file to save the results. + """ + df = pd.DataFrame([results]) + + # Append to the file if it exists, otherwise create a new file + df.to_csv(f"{file_name}", mode='a', header=not os.path.exists(file_name), index=False) + +def calculate_set_ratios(source_set, sim_func): + tokenizer = Tokenizer(sim_func) + + total_elements = 0 + total_tokens = 0 + + for s in source_set: + total_elements += len(s) + for element in s: + total_tokens += len(tokenizer.tokenize(element)) + + return total_elements/len(source_set), total_tokens/total_elements + +def experiment_set_ratio_calc(source_set, sim_func , folder, experiment_name): + elem_set, tokens_elem = calculate_set_ratios(source_set, sim_func) + data = { + "experiment name": experiment_name, + "elem/set": elem_set, + "tokens/elem": tokens_elem, + } + save_experiment_results_to_csv(data, folder) + + + diff --git a/frontend/README.md b/frontend/README.md new file mode 100644 index 0000000..e127ce3 --- /dev/null +++ b/frontend/README.md @@ -0,0 +1,66 @@ +# 🦋 SilkMoth Frontend + +This is the **frontend** for the **SilkMoth** project, built with the [Streamlit](https://streamlit.io/) framework to provide an interactive web interface. + +--- + +## ⚙️ Requirements + +- [Python](https://www.python.org/) installed on your system +- `venv` module for virtual environments +- Project data available in the `experiment/data/` folder + +--- + +## 🚀 Setup + +Two setup scripts are provided—one for **Windows** and another for **Linux/macOS**. These scripts will: + +1. Create a virtual environment +2. Install all necessary Python dependencies +3. Launch the frontend application + +### 🪟 Windows + +Open a terminal in the `frontend` directory and run: + +```bash +.\setup_win.bat +``` +--- + +### 🐧 Linux / 🍎 macOS + +Open a terminal in the `frontend` directory and run: + +```bash +./setup_unix.sh + +``` +--- + +## ▶️ Usage + +Once the setup is complete, follow these steps to run the frontend manually: + +### 1. Activate the virtual environment + +#### 🪟 Windows + +```powershell +.\.venv\Scripts\Activate.ps1 +``` + +### 🐧 Linux / 🍎 macOS + +Activate the virtual environment: + +```bash +source .venv/bin/activate + +``` +### 2. Run the Streamlit app + +```bash +streamlit run app.py +``` \ No newline at end of file diff --git a/frontend/app.py b/frontend/app.py new file mode 100644 index 0000000..366b467 --- /dev/null +++ b/frontend/app.py @@ -0,0 +1,13 @@ +import streamlit as st + +pages = { + "SilkMoth": [ + st.Page("pages/what_is_silkmoth.py", title="What is SilkMoth?"), + st.Page("pages/inclusion_dependency_view.py", title="Inclusion Dependency Experiment"), + st.Page("pages/dataset_view.py", title="Our Datasets"), + ], + +} + +pg = st.navigation(pages) +pg.run() \ No newline at end of file diff --git a/frontend/docs/figures/Pipeline.png b/frontend/docs/figures/Pipeline.png new file mode 100644 index 0000000..f3848ac Binary files /dev/null and b/frontend/docs/figures/Pipeline.png differ diff --git a/frontend/pages/dataset_view.py b/frontend/pages/dataset_view.py new file mode 100644 index 0000000..8f7b032 --- /dev/null +++ b/frontend/pages/dataset_view.py @@ -0,0 +1,64 @@ +import streamlit as st +import pandas as pd +import json +import os + +# Directory containing the JSON files +data_folder = "../experiments/data/webtables/" +# JSON files to be used +reference_file = "reference_sets_inclusion_dependency.json" +source_file = "source_sets_inclusion_dependency.json" +schema_matching_file = "webtable_schemas_sets_500k.json" + +# Full paths to the selected files +reference_file_path = os.path.join(data_folder, reference_file) +source_file_path = os.path.join(data_folder, source_file) +schema_matching_file_path = os.path.join(data_folder, schema_matching_file) + + +st.title("Datasets") +st.divider() +st.markdown( + """ +
+

+ This page provides an interactive interface to explore the datasets utilized in the SilkMoth Engine experiments. + Please note that only a fraction of the data is displayed due to constraints. + We perform three types of experiments using two primary data sources: +

+
    +
  • Schema Matching Experiment: Utilizes 500,000 Webtable schemas for both the reference and source sets.
  • +
  • Inclusion Dependency Experiment: Involves 500,000 Webtable columns in the source set, with 1,000 of these selected as the reference set.
  • +
  • String Matching Experiment: Employs the DPLP dataset for matching tasks.
  • +
+
+ """, + unsafe_allow_html=True, +) +st.divider() +st.subheader("Schema Matching Dataset") + +# Load and display the schema matching dataset +try: + with open(schema_matching_file_path, 'r', encoding='utf-8') as schema_file: + schema_data = json.load(schema_file) + schema_df = pd.DataFrame(schema_data).head(50) + st.dataframe(schema_df) +except Exception as e: + st.error(f"Error loading schema matching dataset: {e}") + + +st.divider() +st.subheader("Inclusion Dependency Datasets") + +# Load and display the reference sets +st.subheader("Reference/Source Sets") +try: + with open(reference_file_path, 'r', encoding='utf-8') as ref_file: + reference_sets = json.load(ref_file) + ref_df = pd.DataFrame(reference_sets).head(50) + st.dataframe(ref_df) +except Exception as e: + st.error(f"Error loading reference sets: {e}") + + diff --git a/frontend/pages/inclusion_dependency_view.py b/frontend/pages/inclusion_dependency_view.py new file mode 100644 index 0000000..a898efb --- /dev/null +++ b/frontend/pages/inclusion_dependency_view.py @@ -0,0 +1,134 @@ +import random +import time + +import streamlit as st + +from silkmoth.silkmoth_engine import SilkMothEngine +from silkmoth.utils import jaccard_similarity, contain +import os +import json +from utils import * + + +# Streamlit app +st.title("SilkMoth Engine Input Interface") +st.divider() +st.subheader("Inclusion Dependency Experiment") + + +# Input fields for SilkMothEngine parameters +# Allow the user to select the number of thresholds (up to 4) +num_thresholds = st.number_input("Number of Thresholds", min_value=1, max_value=4, value=1, step=1) + +# Dynamically create sliders for the selected number of thresholds +thresholds = [] +for i in range(num_thresholds): + threshold = st.slider(f"Threshold {i + 1}", 0.0, 1.0, 0.5, 0.05) + thresholds.append(threshold) + + +# sim_thresh = st.slider("Similarity Threshold", 0.0, 1.0, 0.0, 0.05) +check_filter = st.checkbox("Enable Check Filter", value=False) +nn_filter = st.checkbox("Enable Nearest Neighbor Filter", value=False) + +# Directory containing the JSON files +data_folder = "../experiments/data/webtables/" + +# JSON files to be used +reference_file = "reference_sets_inclusion_dependency.json" +source_file = "source_sets_inclusion_dependency.json" + +# Full paths to the selected files +reference_file_path = os.path.join(data_folder, reference_file) +source_file_path = os.path.join(data_folder, source_file) + +# Run the SilkMothEngine with progress animation and loading mask +if st.button("Run SilkMoth Engine"): + if reference_file and source_file: + try: + # Create a placeholder for the loading animation + loading_placeholder = st.empty() + loading_placeholder.markdown("
SilkMothEngine is running...
", unsafe_allow_html=True) + + # Open and load reference and source sets from selected files + with open(reference_file_path, 'r', encoding='utf-8') as ref_file: + reference_sets = json.load(ref_file) + with open(source_file_path, 'r', encoding='utf-8') as src_file: + source_sets = json.load(src_file) + + + + st.write(f"Create Inverted Index ...") + in_index_time_start = time.time() + # Initialize and run the SilkMothEngine + silk_moth_engine = SilkMothEngine( + related_thresh=0, + source_sets=source_sets, + sim_metric=contain, + sim_func=jaccard_similarity, + sim_thresh=0, + is_check_filter=False, + is_nn_filter=False, + ) + in_index_time_end = time.time() + in_index_elapsed_time = in_index_time_end - in_index_time_start + st.write(f"Inverted Index created in {in_index_elapsed_time:.2f} seconds.") + + + elapsed_times_final = [] + labels = ["NO FILTER"] + if check_filter: + labels.append("CHECK FILTER") + + if nn_filter: + labels.append("NN FILTER") + + + for label in labels: + elapsed_times = [] + for idx, related_thresh in enumerate(thresholds): + + if label == "CHECK FILTER": + silk_moth_engine.is_check_filter = True + silk_moth_engine.is_nn_filter = False + elif label == "NN FILTER": + silk_moth_engine.is_check_filter = False + silk_moth_engine.is_nn_filter = True + + + st.write(f"Processing Threshold {idx + 1}: {related_thresh} with {label} ...") + silk_moth_engine.set_related_threshold(related_thresh) + # Measure the time taken to search for related sets + time_start = time.time() + + + for ref_set in reference_sets: + related_sets = silk_moth_engine.search_sets(ref_set) + del related_sets + + time_end = time.time() + + + elapsed_time = time_end - time_start + elapsed_times.append(elapsed_time) + + elapsed_times_final.append(elapsed_times) + + # Remove the loading animation + loading_placeholder.empty() + + # Display results + st.success("SilkMoth Engine ran successfully!") + fig = plot_elapsed_times( + related_thresholds=thresholds, + elapsed_times_list=elapsed_times_final, + fig_text="Inclusion Dependency (α = 0.0)", + legend_labels=labels, + file_name="webtable_inclusion_dependency_experiment_demo.png" + ) + st.pyplot(fig) + + except Exception as e: + st.error(f"An error occurred: {e}") + else: + st.warning("Please upload both reference and source set files.") \ No newline at end of file diff --git a/frontend/pages/what_is_silkmoth.py b/frontend/pages/what_is_silkmoth.py new file mode 100644 index 0000000..f8922bf --- /dev/null +++ b/frontend/pages/what_is_silkmoth.py @@ -0,0 +1,78 @@ +import streamlit as st + +st.title("What is SilkMoth?") +st.markdown(""" +The **SilkMoth Engine** is a powerful framework designed for **efficiently discovering relationships and similarities among large collections of data sets.** + +It operates by: + +1. **Treating each data collection as a "set"** comprised of unique "elements." +2. **Applying advanced similarity metrics and optimized algorithms** to compare these sets. +3. **Identifying "related" sets** based on a user-defined similarity threshold. + +This enables the rapid identification of connections within vast amounts of data, making it crucial for tasks like data organization, integration, and uncovering hidden insights. +""") +st.divider() +st.title("🔁 Core Pipeline Steps") + +st.image("docs/figures/Pipeline.png", caption="Figure 1: SILKMOTH Framework Overview. Source: Deng et al., 'SILKMOTH: An Efficient Method for Finding Related Sets with Maximum Matching Constraints', VLDB 2017. Licensed under CC BY-NC-ND 4.0.") + +st.subheader("1. Tokenization") +st.markdown(""" +Each element in every set is tokenized based on the selected similarity function: +- **Jaccard Similarity**: Elements are split into whitespace-delimited tokens. +- **Edit Similarity**: Elements are split into overlapping `q`-grams (e.g., 3-grams). +""") + +st.subheader("2. Inverted Index Construction") +st.markdown(""" +An **inverted index** is built from the reference set `R` to map each token to a list of `(set, element)` pairs in which it occurs. This allows fast lookup of candidate sets that share tokens with a query. +""") + +st.subheader("3. Signature Generation") +st.markdown(""" +A **signature** is a subset of tokens selected from each set such that: +- Any related set must share at least one signature token. +- Signature size is minimized to reduce candidate space. + +**Signature selection heuristics** (e.g., cost/value greedy ranking) are used to approximate the optimal valid signature, which is NP-complete to compute exactly. +""") + +st.subheader("4. Candidate Selection") +st.markdown(""" +For each set `R`, we retrieve from the inverted index all sets `S` that share at least one token with `R`’s signature. These become the **candidate sets** for further evaluation. +""") + +st.subheader("5. Refinement Filters") +st.markdown(""" +Two filters reduce false positives among the candidates: + +- **Check Filter**: Uses an upper bound on similarity to eliminate sets that cannot meet the threshold. +- **Nearest Neighbor Filter**: Approximates the maximum matching score using the nearest neighbor similarity for each element in `R`. +""") + +st.subheader("6. Verification via Maximum Matching") +st.markdown(""" +For the remaining candidates, we compute the **maximum weighted bipartite matching** between elements of `R` and `S`, using the chosen similarity function as edge weights. + +Only sets whose matching score meets or exceeds a threshold `δ` are considered **related**. +""") + +st.markdown("---") + +st.subheader("🧪 Modes of Operation") +st.markdown(""" +- **Discovery Mode**: Compare all pairs of sets to find all related set pairs. + **Use Case**: When you want to check which sets (e.g., columns in a database) are related to a specific reference set. +- **Search Mode**: Given a reference set, find all sets related to it. + **Use Case**: When you want to find all related set pairs in a dataset, for tasks like schema matching or entity deduplication. +""") + +st.markdown("---") + +st.subheader("📐 Supported Similarity Functions") +st.markdown(""" +- **Jaccard Similarity** +- **Edit Similarity** (Levenshtein-based) +- Optional **minimum similarity threshold** `α` can be enforced on element comparisons. +""") \ No newline at end of file diff --git a/frontend/requirements.txt b/frontend/requirements.txt new file mode 100644 index 0000000..3a8e459 --- /dev/null +++ b/frontend/requirements.txt @@ -0,0 +1,2 @@ +streamlit==1.45.1 +matplotlib==3.10.3 \ No newline at end of file diff --git a/frontend/setup_unix.sh b/frontend/setup_unix.sh new file mode 100644 index 0000000..4f4579e --- /dev/null +++ b/frontend/setup_unix.sh @@ -0,0 +1,55 @@ +#!/bin/bash + +# Name of the virtual environment +ENV_NAME=".venv" + +# Path to the requirements file +REQUIREMENTS_FILE="requirements.txt" + +# Check if requirements.txt exists +if [ ! -f "$REQUIREMENTS_FILE" ]; then + echo "Error: '$REQUIREMENTS_FILE' not found." + exit 1 +fi + +# Create the virtual environment +python3 -m venv "$ENV_NAME" +if [ $? -ne 0 ]; then + echo "Failed to create virtual environment." + exit 1 +fi +echo "Virtual environment '$ENV_NAME' created." + +# Activate the virtual environment +source "$ENV_NAME/bin/activate" +if [ $? -ne 0 ]; then + echo "Failed to activate virtual environment." + exit 1 +fi +echo "Virtual environment '$ENV_NAME' activated." + +# Install the requirements +pip install -r "$REQUIREMENTS_FILE" +if [ $? -ne 0 ]; then + echo "Failed to install requirements." + exit 1 +fi +echo "Requirements from '$REQUIREMENTS_FILE' installed." + +# Install the silkmoth package +pip install -e ../src +if [ $? -ne 0 ]; then + echo "Failed to install the silkmoth package." + exit 1 +fi +echo "Silkmoth package installed." + +# Check if the virtual environment is active +if [ -z "$VIRTUAL_ENV" ]; then + echo "Error: Virtual environment activation failed." + exit 1 +fi +echo "Virtual environment '$ENV_NAME' is ready to use." + +# Run the Streamlit app +streamlit run app.py \ No newline at end of file diff --git a/frontend/setup_win.bat b/frontend/setup_win.bat new file mode 100644 index 0000000..eccd96c --- /dev/null +++ b/frontend/setup_win.bat @@ -0,0 +1,51 @@ +@echo off + +:: Name of the virtual environment +set ENV_NAME=.venv + +:: Path to the requirements file +set REQUIREMENTS_FILE=requirements.txt + +:: Check if requirements.txt exists +if not exist "%REQUIREMENTS_FILE%" ( + echo Error: '%REQUIREMENTS_FILE%' not found. + exit /b 1 +) + +:: Create the virtual environment +python -m venv "%ENV_NAME%" +if errorlevel 1 ( + echo Failed to create virtual environment. + exit /b 1 +) +echo Virtual environment '%ENV_NAME%' created. + +:: Activate the virtual environment +call "%ENV_NAME%\Scripts\activate.bat" + +:: Install the requirements +pip install -r "%REQUIREMENTS_FILE%" +if errorlevel 1 ( + echo Failed to install requirements. + exit /b 1 +) +echo Requirements from '%REQUIREMENTS_FILE%' installed. + +:: Install the silkmoth package +pip install -e ../src +if errorlevel 1 ( + echo Failed to install the silkmoth package. + exit /b 1 +) +echo Silkmoth package installed. + +powershell -ExecutionPolicy Bypass -File "%ENV_NAME%\Scripts\Activate.ps1" +echo Virtual environment '%ENV_NAME%' activated. + +:: Check if the activation was successful +if not defined VIRTUAL_ENV ( + echo Error: Virtual environment activation failed. + exit /b 1 +) +echo Virtual environment '%ENV_NAME%' is ready to use. +streamlit run app.py \ No newline at end of file diff --git a/frontend/utils.py b/frontend/utils.py new file mode 100644 index 0000000..6cab4ea --- /dev/null +++ b/frontend/utils.py @@ -0,0 +1,43 @@ +import matplotlib.pyplot as plt + +def plot_elapsed_times(related_thresholds, elapsed_times_list, fig_text, file_name, xlabel=r'$\theta$', ylabel='Time (s)', title=None, legend_labels=None): + """ + Utility function to plot elapsed times against related thresholds for multiple settings. + + Args: + related_thresholds (list): Related thresholds (x-axis values). + elapsed_times_list (list of lists): List of elapsed times (y-axis values) for different settings. + fig_text (str): Text to display on the figure. + file_name (str): Name of the file to save the plot. + xlabel (str): Label for the x-axis. + ylabel (str): Label for the y-axis. + title (str): Title of the plot (optional). + legend_labels (list): List of labels for the legend (optional). + """ + fig = plt.figure(figsize=(8, 6)) + + # Plot each elapsed_times list with a different color and label + for i, elapsed_times in enumerate(elapsed_times_list): + label = legend_labels[i] if legend_labels and i < len(legend_labels) else f"Setting {i + 1}" + plt.plot(related_thresholds, elapsed_times, marker='o', label=label) + + plt.xlabel(xlabel, fontsize=14) + plt.ylabel(ylabel, fontsize=14) + + plt.xticks(related_thresholds) + + if title: + plt.title(title, fontsize=16) + + plt.grid(True) + if legend_labels: + plt.legend(fontsize=12) + plt.tight_layout() + + # Add figure text + plt.figtext(0.1, 0.01, fig_text, ha='left', fontsize=10) + + # Save the figure + plt.savefig(file_name, bbox_inches='tight', dpi=300) + + return fig \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml new file mode 100644 index 0000000..a7523a3 --- /dev/null +++ b/mkdocs.yml @@ -0,0 +1,45 @@ +site_name: SilkMoth Documentation +docs_dir: docu +site_url: https://Andre-devv.github.io/LSDIPro-SilkMoth +nav: + - Home: index.md + - API: + - Engine: pages/silkmoth_engine.md + - Tokenizer: pages/tokenizer.md + - Inverted Index: pages/inverted_index.md + - Signature Generator: pages/signature_generator.md + - Candidate Selector: pages/candidate_selector.md + - Verifier: pages/verifier.md + - Utils: pages/utils.md + - Results: experiments/README.md + +extra_javascript: + - https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS-MML_HTMLorMML + +markdown_extensions: + - pymdownx.arithmatex: + generic: true + +plugins: + - search + + - mkdocstrings: + handlers: + python: + paths: + - src + options: + extra: + selection: + include: + - "silkmoth.*" + exclude: + - "silkmoth.test.*" + rendering: + show_signature: true + show_source: true + + - awesome-pages + + + diff --git a/src/setup.py b/src/setup.py new file mode 100644 index 0000000..86f7adb --- /dev/null +++ b/src/setup.py @@ -0,0 +1,8 @@ +from setuptools import setup + +setup( + name='silkmoth', + version='0.1.0', + packages=['silkmoth', 'silkmoth.test'], + install_requires=['numpy==2.2.5', 'rapidfuzz==3.13.0', 'ordered-set==4.1.0', 'scipy==1.15.3',] +) \ No newline at end of file diff --git a/src/silkmoth/__init__.py b/src/silkmoth/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/silkmoth/candidate_selector.py b/src/silkmoth/candidate_selector.py new file mode 100644 index 0000000..10f8129 --- /dev/null +++ b/src/silkmoth/candidate_selector.py @@ -0,0 +1,318 @@ +from .utils import contain, similar, edit_similarity, N_edit_similarity, jaccard_similarity, get_q_chunks +from math import floor, ceil + +class CandidateSelector: + """ + The candidate selector executes the candidate selection step in the SilkMoth + pipeline. After signature generation SilkMoth accesses the inverted index to + get all sets which contain a token in the signature to form an initial set + of candidates. + + The size of the candidate set can be reduced further by applying the check + or nearest neighbour filters in the refinement step of the SilkMoth pipeline. + + Examples + -------- + ``` + >>> from silkmoth.candidate_selector import CandidateSelector + >>> from silkmoth.utils import similar, jaccard_similarity + >>> from silkmoth.inverted_index import InvertedIndex + >>> S1 = [{"Apple", "Pear", "Car"}, {"Apple", "Sun", "Cat"}] + >>> S2 = [{"Something", "Else"}] + >>> S3 = [{"Apple", "Berlin", "Sun"}, {"Apple"}] + >>> S = [S1, S2, S3] + >>> signature = ["Apple", "Berlin"] + >>> I = InvertedIndex(S) + >>> cand_selector = CandidateSelector(jaccard_similarity, similar, 0.7) + >>> cand_selector.get_candidates(signature, I, 2) + {0, 2} + ``` + """ + + def __init__(self, similarity_func, sim_metric, related_thresh, sim_thresh=0.0, q = 3): + """ + Initialize the candidate selector with some parameters. + + Args: + similarity_func (callable): Similarity function phi(r, s) (e.g., Jaccard). + sim_metric (callable): Similarity metric related(R, S) (e.g., contain). + related_thresh (float): Relatedness threshold delta. + sim_thresh (float): Similarity threshold alpha. + q (int): q-chunk length for edit similarity. + """ + self.similarity = similarity_func + self.sim_metric = sim_metric + self.delta = related_thresh + self.alpha = sim_thresh + self.q = q + + def get_candidates(self, signature, inverted_index, ref_size) -> set: + """ + Retrieve candidate set indices using token signature lookup. + + Args: + signature (list): Signature tokens for a reference set. + inverted_index (InvertedIndex): Instance of the custom InvertedIndex class. + ref_size (int): Size of set R. + + Returns: + set: Indices of candidate sets containing at least one signature token. + """ + candidates = set() + + for token in signature: + try: + idx_list = inverted_index.get_indexes(token) + for set_idx, _ in idx_list: + src_size = len(inverted_index.get_set(set_idx)) + if self.verify_size(ref_size, src_size): + candidates.add(set_idx) + except ValueError: + # token not found in inverted index; safely ignore + continue + + return candidates + + def verify_size(self, ref_size, src_size) -> bool: + """ + Checks if sets can be related based on their sizes. Set-Containment is + only defined for |R|<=|S|. For Set-Similarity we should compare only + similar size sets. + + Args: + ref_size (int): Size of set R. + src_size (int): Size of (possible) set S. + + Returns: + bool: True if both sets could be related based on their size, False otherwise. + """ + # case 1: Set-Containment + if self.sim_metric == contain and ref_size > src_size: + return False + # case 2: Set-Similarity + if self.sim_metric == similar: + if min(ref_size, src_size) < self.delta * max(ref_size, src_size): + return False + return True + + def check_filter(self, R, K, candidates, inverted_index) -> tuple: + """ + Apply check filter to prune weak candidate sets. + + Args: + R (list of list): Tokenized reference set. + K (set): Flattened signature tokens. + candidates (set): Candidate set indices from get_candidates(). + inverted_index (InvertedIndex): For retrieving sets. + + Returns: + tuple: + set: Candidate indices that pass the check filter. + dict: c_idx -> dict{r_idx -> max_sim}. + """ + filtered = set() + match_map = dict() + k_i_sets = [set(r_i).intersection(K) for r_i in R] + + for c_idx in candidates: + matched = self.create_match_map(R, k_i_sets, c_idx, inverted_index) + + if matched: + filtered.add(c_idx) + match_map[c_idx] = matched + + return filtered, match_map + + def create_match_map(self, R, k_i_sets, c_idx, inverted_index) -> dict: + """ + Create a match map for a specific candidate index. + + Args: + R (list of list): Tokenized reference set. + k_i_sets (list of sets): Unflattened signature. + c_idx (int): Candidate set index. + inverted_index (InvertedIndex): For retrieving sets. + + Returns: + dict: r_idx -> max_sim for matched reference sets. + """ + S = inverted_index.get_set(c_idx) + matched = {} + + for r_idx, (r_i, k_i) in enumerate(zip(R, k_i_sets)): + if not r_i or not k_i: + continue + + denominator = len(r_i) + threshold = (denominator - len(k_i)) / denominator if denominator != 0 else 0.0 + is_edit = self.similarity in (edit_similarity, N_edit_similarity) + + # for Jaccard set is needed, for edit list is needed + if not is_edit: + r_set = set(r_i) + + max_sim = 0.0 + + for token in k_i: + try: + entries = inverted_index.get_indexes_binary(token, c_idx) + for s_idx, e_idx in entries: + if s_idx != c_idx: + continue + s = S[e_idx] + + # call signature based on edit vs. jaccard + if is_edit: + sim = self.similarity(r_i, s, self.alpha) + else: + sim = self.similarity(r_set, set(s), self.alpha) + if sim >= threshold: + max_sim = max(max_sim, sim) + except ValueError: + continue + + if max_sim >= threshold: + matched[r_idx] = max_sim + + return matched + + def _nn_search(self, r_elem, S, c_idx, inverted_index) -> float: + """ + Find the maximum similarity between r and elements s ∈ S[C] that share at least one token with r using + the inverted index for efficiency. + + Args: + r_set (set): Reference element tokens. + S (list of list): Elements of candidate set S[c_idx]. + c_idx (int): Index of candidate set in inverted index. + inverted_index (InvertedIndex): For fetching token locations. + + Returns: + float: Maximum similarity between r and any s ∈ S[c_idx]. + """ + # seen = set() + max_sim = 0.0 + is_edit = self.similarity in (edit_similarity, N_edit_similarity) + + for token in r_elem: + try: + entries = inverted_index.get_indexes_binary(token,c_idx) + for s_idx, e_idx in entries: + if s_idx != c_idx: + continue + s = S[e_idx] + if is_edit: + sim = self.similarity(r_elem, s, self.alpha) + else: + sim = self.similarity(set(r_elem), set(s), self.alpha) + max_sim = max(max_sim, sim) + except ValueError: + continue + return max_sim + + + def nn_filter(self, R, K, candidates, inverted_index, threshold, match_map) -> set: + """ + Nearest Neighbor Filter (Algorithm 2 from SilkMoth paper). + + Args: + R (list of list): Tokenized reference set. + K (set): Flattened signature tokens. + candidates (set): Candidate indices from check filter. + inverted_index (InvertedIndex): To retrieve sets and indexes. + threshold (float): Relatedness threshold δ (between 0 and 1). + match_map (dict): Maps candidate set index to matched rᵢ indices and their max sim (from check filter). + + Returns: + set: Final filtered candidate indices that pass the NN filter. + """ + n = len(R) + theta = threshold * n + + is_edit = self.similarity in (edit_similarity, N_edit_similarity) + + k_i_sets = [set(r_i).intersection(K) for r_i in R] + r_i_list = R + + final_filtered = set() + + total_init = 0 + for r_idx, r_i in enumerate(R): + if not r_i: + continue + k_i = k_i_sets[r_idx] + base_loss = self.calc_base_loss(k_i, r_i) + total_init += base_loss + + for c_idx in candidates: + S = inverted_index.get_set(c_idx) + if self.alpha > 0: + S_tokens = set() + for s in S: + S_tokens.update(s) + + # Check if match_map is provided, otherwise create it + if match_map is None: + matched = self.create_match_map(R, K, c_idx, inverted_index) + else: + matched = match_map.get(c_idx, {}) + + # Step 1: initialize total estimate + total = total_init + + # Step 2: for matched rᵢ, computational reuse of sim and adjust total + if matched: + for r_idx, sim in matched.items(): + r_i = r_i_list[r_idx] + if not r_i: + continue + k_i = k_i_sets[r_idx] + base_loss = self.calc_base_loss(k_i, r_i) + total += sim - base_loss + + # Step 3: for non-matched rᵢ, compute NN and adjust total + for r_idx in set(range(n)) - matched.keys(): + r_i = r_i_list[r_idx] + if not r_i: + continue + k_i = k_i_sets[r_idx] + base_loss = self.calc_base_loss(k_i, r_i) + + r_set = set(r_i) + + # Case alpha > 0 + if (self.alpha > 0 and len(k_i) >= floor((1 - self.alpha) * len(r_i)) + 1 + and k_i.isdisjoint(S_tokens)): + nn_sim = 0 + else: + if is_edit: + # brute‑force search over q‑gram lists for edit_similarity + r_list = r_i_list[r_idx] + nn_sim = 0.0 + for s_list in S: + sim = self.similarity(r_list, s_list, self.alpha) + if sim > nn_sim: + nn_sim = sim + else: + # inverted‐index search for jaccard + nn_sim = self._nn_search(r_set, S, c_idx, inverted_index) + + total += nn_sim - base_loss + if total < theta: + break + + if total >= theta: + final_filtered.add(c_idx) + + return final_filtered + + def calc_base_loss(self, k_i, r_i): + if self.similarity in (edit_similarity, N_edit_similarity): + denominator = len(r_i) + len(k_i) + base_loss = len(r_i) / denominator if denominator != 0 else 0.0 + else: + denominator = len(r_i) + base_loss = (len(r_i) - len(k_i)) / denominator if denominator != 0 else 0.0 + return base_loss + + diff --git a/src/silkmoth/inverted_index.py b/src/silkmoth/inverted_index.py new file mode 100644 index 0000000..97be9b8 --- /dev/null +++ b/src/silkmoth/inverted_index.py @@ -0,0 +1,140 @@ +import bisect + +class InvertedIndex: + """ + The inverted index + + - allows to lookup all appearances of a token in a collection of tokenized sets + - returns inverted lists consisting of (set, element) tuples + - supports full sets/elements and positional indexes of them + - stores source sets in [SilkMothEngine](silkmoth_engine.md) + + The inverted list + + - is sorted first by the order of the sets and then by the order of the elements. + + Examples + -------- + ``` + >>> from silkmoth.inverted_index import InvertedIndex + >>> S1 = [{"Apple", "Pear", "Car"}, {"Apple", "Sun", "Cat"}] + >>> S2 = [{"Apple", "Berlin", "Sun"}, {"Apple"}] + >>> S = [S1, S2] + >>> I = InvertedIndex(S) + >>> I.get_indexes("Sun") + [(0, 1), (1, 0)] + >>> I["Berlin"] + [([{'Sun', 'Apple', 'Berlin'}, {'Apple'}], {'Sun', 'Apple', 'Berlin'})] + ``` + + ![SilkMoth Inverted Index](../figures/InvertedIndex.png) + + *SilkMoth Inverted Index. Source: Deng et al., "SILKMOTH: An Efficient Method for Finding Related Sets with Maximum Matching Constraints", VLDB 2017. + Licensed under CC BY-NC-ND 4.0.* + """ + + def __init__(self, token_sets: list): + """ + Initialize the inverted index. + + Args: + token_sets (list): Collection of tokenized sets + sim_func (function): Similarity function + """ + #self.sim_func = sim_func + self.token_sets = [] + self.lookup_table = dict() + + for set_idx, token_set in enumerate(token_sets): + self.token_sets.append(token_set) + for element_idx, tokens in enumerate(token_set): + for token in tokens: + key = (set_idx, element_idx) + if token not in self.lookup_table: + self.lookup_table[token] = [key] + elif self.lookup_table[token][-1] != key: + self.lookup_table[token].append(key) + + def keys(self): + """ + Gives all tokens similar like dict.keys(). + + Returns: + set (set): A set-like object providing all keys + """ + return self.lookup_table.keys() + + def __getitem__(self, token) -> list: + """ + Access inverted list from inverted index using square brackets. + + Args: + token (str): Input token + + Returns: + list: A list of all (set, element) tuples which contain the input + token. + """ + idx_list = self.get_indexes(token) + return [(self.get_set(s), self.get_set(s)[e]) for s, e in idx_list] + + def get_indexes(self, token) -> list: + """ + Access inverted list of indexes. For some tasks retrieving the full set + and element pairs might not be necessary and their indexes are + sufficient. + + Args: + token (str): Input token + + Returns: + list: A list of all (set index, element index) tuples for (set, + element) tuples which contain the input tuple + """ + if not token in self.lookup_table: + raise ValueError(f"Unknown token") + return self.lookup_table[token] + + def get_set(self, set_id: int) -> list: + """ + Access (tokenized) set from set ID. + + Args: + set_id: Set ID + + Returns: + list: Tokenized set + """ + if set_id < 0 or set_id >= len(self.token_sets): + raise ValueError(f"Invalid id") + return self.token_sets[set_id] + + def get_indexes_binary(self, token, set_idx) -> list: + """ + Uses binary search to get all (set_idx, element_idx) pairs for a token + where set_idx matches the given set_idx. + + Args: + token (str): The token to search in the inverted index. + set_idx (int): The ID of the set we want the element indexes for. + + Returns: + list: All (set_idx, element_idx) tuples where the token appears in the given set. + """ + if token not in self.lookup_table: + raise ValueError("Unknown token") + + index_list = self.lookup_table[token] + + # Using bisect to find the range of entries where set_idx matches + left = bisect.bisect_left(index_list, (set_idx, -1)) + right = bisect.bisect_right(index_list, (set_idx, float('inf'))) + return index_list[left:right] + + def print_index(self): + """ + Prints the inverted index in a readable format. + """ + print("=== Inverted Index ===") + for token, locations in self.lookup_table.items(): + print(f"Token: {token} → Locations: {locations}") \ No newline at end of file diff --git a/src/silkmoth/signature_generator.py b/src/silkmoth/signature_generator.py new file mode 100644 index 0000000..2a62b6e --- /dev/null +++ b/src/silkmoth/signature_generator.py @@ -0,0 +1,394 @@ +import heapq +from collections import defaultdict +import warnings +from .utils import SigType,jaccard_similarity,edit_similarity,N_edit_similarity, get_q_chunks +from math import floor +from .inverted_index import InvertedIndex + +class SignatureGenerator: + """ + The signature generator executes the signature generation step in the SilkMoth + pipeline. During signature generation SilkMoth constructs a signature for a + reference set R by selecting the “smallest” set of tokens from R such that + if another set S does not share any tokens with R's signature, R and S are + not related. + + SilkMoth supports three different signature schemes: Weighted Signature Scheme + (Def. 5 in [paper](https://doi.org/10.14778/3115404.3115413)), Skyline Signature + Scheme (Def. 9), and Dichotomy Signature Scheme (Def. 10). + + Examples + -------- + ``` + >>> from silkmoth.inverted_index import InvertedIndex + >>> from silkmoth.signature_generator import SignatureGenerator + >>> S1 = [{"Apple", "Pear", "Car"}, {"Apple", "Sun", "Cat"}] + >>> S2 = [{"Apple", "Berlin", "Sun"}, {"Apple"}] + >>> S = [S1, S2] + >>> I = InvertedIndex(S) + >>> R = [{"Apple"}, {"Sun", "Berlin", "Paris"}] + >>> sig_gen = SignatureGenerator() + >>> sig_gen.get_signature(R, I, 0.3) + ['Apple', 'Sun', 'Berlin'] + >>> sig_gen.get_signature(R, I, 0.5) + ['Apple', 'Berlin'] + ``` + """ + + def __init__(self): + """ + Initialize the signature generator with default parameters. + """ + self.sim_fun = jaccard_similarity + self.q = 3 + + def get_signature(self, reference_set, inverted_index, delta, alpha=0, sig_type=SigType.WEIGHTED, sim_fun = jaccard_similarity, q=3) -> list: + """ + Compute a signature for a reference set according to the chosen signature type. + + Args: + reference_set (list): Tokenized reference set. + inverted_index (InvertedIndex): Index to evaluate token cost. + delta (float): Relatedness threshold factor. + alpha (float): Similarity threshold factor. + sig_type (SigType): Type of signature. + sim_fun (callable): Similarity function (phi) to use. + q (int): Length of each q-chunk for edit similarity. + + Returns: + list: A list of str for selected tokens forming the signature. + """ + if sim_fun in (edit_similarity, N_edit_similarity): + self.sim_fun = sim_fun + self.q = q + + # If q is too large, no valid weighted signature exists + q_bound = delta / (1 - delta) + + if q >= q_bound: + warnings.warn( + f"q={q} is too large for delta = {delta:.3f}; " + "no valid weighted signature exists -> falling back to brute-force." + ) + # returning all non-overlapping q-chunks so nothing is pruned + all_chunks = [] + for elem in reference_set: + joined = " ".join(elem) + all_chunks += [ + joined[i:i+q] + for i in range(0, len(joined) - q + 1, q) + ] + return all_chunks + + is_edit_sim = sim_fun in (edit_similarity, N_edit_similarity) + match sig_type: + case SigType.WEIGHTED: + if is_edit_sim and alpha > 0: + return self._generate_simthresh_signature_edit_similarity(reference_set, inverted_index, delta, alpha) + elif is_edit_sim and alpha == 0: + return self._generate_weighted_signature_edit_similarity(reference_set, inverted_index, delta) + else: + return self._generate_weighted_signature(reference_set, inverted_index, delta) + case SigType.SKYLINE: + return self._generate_skyline_signature(reference_set, inverted_index, delta, alpha) + case SigType.DICHOTOMY: + return self._generate_dichotomy_signature(reference_set, inverted_index, delta, alpha) + case _: + raise ValueError(f"Unknown signature type") + + + def _generate_simthresh_signature_edit_similarity(self, reference_set, inverted_index, delta, alpha) -> list: + """ + Builds a similarity-threshold signature for edit similarity as described in the SILKMOTH Paper in + Section 7.2. + + For each element r_i in the reference set, it ensures that the signature contains at least + m_i = floor((1 - alpha)/alpha * |q_chunks(r_i)|) + 1 q-chunks, so that any element + sharing fewer than m_i chunks cannot achieve Eds ≥ alpha. + + Args: + reference_set (list): Tokenized reference set. + inverted_index (InvertedIndex): Index to evaluate token cost. + delta (float): Relatedness threshold factor. + alpha (float): Similarity threshold factor. + Returns: + list: A list of str for selected q-chunks forming the signature. + """ + + weighted_sig_edit_sim = set(self._generate_weighted_signature_edit_similarity(reference_set, inverted_index, delta)) + simthresh_sig = set(weighted_sig_edit_sim) + + for elem_tokens in reference_set: + # compute all q-chunks of each element + joined = " ".join(elem_tokens) + chunks = [joined[j:j+self.q] for j in range(0, len(joined) - self.q + 1, self.q)] + r = set(chunks) + m_i = floor((1 - alpha) / alpha * len(r)) + 1 + + # determine how many base chunks from this element are already in weighted signature + k_i = list(weighted_sig_edit_sim & r) + if len(k_i) < m_i: + # need cheapest additional chunks -> sort all chunks by cost = inverted_index size + sorted_chunks = sorted( + r, + key=lambda t: len(inverted_index.get_indexes(t)) if t in inverted_index.lookup_table else float('inf') + ) + # add cheapest chunks up to m_i + for chunk in sorted_chunks: + if len(simthresh_sig & r) >= m_i: + break + simthresh_sig.add(chunk) + + return list(simthresh_sig) + + + def _generate_skyline_signature(self, reference_set, inverted_index: InvertedIndex, delta, alpha): + if self.sim_fun == jaccard_similarity: + weighted = set(self._generate_weighted_signature(reference_set, inverted_index, delta)) + unflattened = [weighted & set(r_i) for r_i in reference_set] + elif self.sim_fun in (edit_similarity, N_edit_similarity): + weighted = set(self._generate_weighted_signature_edit_similarity(reference_set, inverted_index, delta)) + unflattened = [weighted & set(" ".join(r_i)[i:i+self.q] for i in range(0, len(" ".join(r_i)) - self.q + 1, self.q)) for r_i in reference_set] + else: + raise ValueError(f"Unknown similarity function: {self.sim_fun}") + + skyline = set() + for i, k in enumerate(unflattened): + if self.sim_fun == jaccard_similarity: + rhs = floor((1 - alpha) * len(reference_set[i])) + 1 + elif self.sim_fun in (edit_similarity, N_edit_similarity): + chunks = get_q_chunks(reference_set[i], self.q) + r = set(chunks) + rhs = floor((1 - alpha) / alpha * len(r)) + 1 + else: + raise ValueError(f"Unknown similarity function: {self.sim_fun}") + + if len(k) < rhs: + skyline |= k + else: + # add tokens with minimum |I[t]| + tokens = list(k) + tokens.sort(key=lambda t: len(inverted_index.get_indexes(t))) + skyline = skyline.union(tokens[:rhs]) + return list(skyline) + + def _generate_dichotomy_signature(self, reference_set, inverted_index: InvertedIndex, delta, alpha): + """ + Generates a signature using the Dichotomy Scheme as described in the SILKMOTH paper. + + For each element r_i, it chooses between its weighted signature part (k_i) and + all its tokens (r_i) based on whether k_i is a subset of an optimal + sim-thresh signature (m_i). + """ + # 1. First, generate the optimal weighted signature, K. + if self.sim_fun == jaccard_similarity: + weighted_signature_K = set(self._generate_weighted_signature(reference_set, inverted_index, delta)) + elif self.sim_fun in (edit_similarity, N_edit_similarity): + weighted_signature_K = set(self._generate_weighted_signature_edit_similarity(reference_set, inverted_index, delta)) + else: + raise ValueError(f"Unknown similarity function: {self.sim_fun}") + + final_dichotomy_sig = set() + + # 2. For each element r_i, decide whether to use its k_i or the full r_i. + for r_i_list in reference_set: + if self.sim_fun == jaccard_similarity: + r_i = set(r_i_list) + elif self.sim_fun in (edit_similarity, N_edit_similarity): + chunks = get_q_chunks(r_i_list, self.q) + r_i = set(chunks) + else: + raise ValueError(f"Unknown similarity function: {self.sim_fun}") + + if not r_i: + continue + + # 3. Determine k_i: the part of the weighted signature in this element. + k_i = weighted_signature_K.intersection(r_i) + + # 4. Determine m_i: the optimal sim-thresh signature for this element. + + # 4a. Calculate the required size for the sim-thresh signature. + if self.sim_fun == jaccard_similarity: + m_i_size = floor((1 - alpha) * len(r_i)) + 1 + elif self.sim_fun in (edit_similarity, N_edit_similarity): + m_i_size = floor((1 - alpha) / alpha * len(r_i)) + 1 + else: + raise ValueError(f"Unknown similarity function: {self.sim_fun}") + + # 4b. Get all tokens from the original element r_i and sort by cost. + element_tokens = list(r_i) + + # Sort tokens by the length of their inverted index list (cost). + # Handle cases where a token might not be in the index. + def get_token_cost(token): + try: + return len(inverted_index.get_indexes(token)) + except ValueError: + return float('inf') # Assign a high cost if not found + + element_tokens.sort(key=get_token_cost) + + # 4c. The optimal m_i consists of the cheapest tokens. + m_i = set(element_tokens[:m_i_size]) + + # 5. The Decision: Apply the paper's condition. + # Can we get away with the cheaper weighted signature part (k_i)? + # Yes, if k_i is already a subset of the optimal sim-thresh signature (m_i). + if k_i.issubset(m_i): + # Decision: Use the cheaper weighted signature tokens. + final_dichotomy_sig.update(k_i) + else: + # Decision: Fall back to the safe, more expensive option. + final_dichotomy_sig.update(r_i) + + return list(final_dichotomy_sig) + + + def _generate_weighted_signature(self, reference_set, inverted_index, delta): + if delta <= 0.0: + return [] + + n = len(reference_set) + theta = delta * n # required covered fraction , delta * |R| in paper + + # 1) Build token: elements map and aggregate token values + token_to_elems = defaultdict(list) + token_value = {} + + for i, elem in enumerate(reference_set): + if not elem: + warnings.warn(f"Element at index {i} is empty and will be skipped.") + continue + unique_tokens = set(elem) # remove duplicate tokens inside each element + weight = 1.0 / len(unique_tokens) + + for t in unique_tokens: + token_to_elems[t].append(i) + token_value[t] = token_value.get(t, 0.0) + weight # value = sum of weights (for each token) + + # 2) Build min-heap of (cost/value, token) + heap = [] + for t, val in token_value.items(): + if val <= 0: + continue + try: + cost = len(inverted_index.get_indexes(t)) # look up each token in inverted index to count in how many sets it is = cost + except ValueError: + # Token not in index: assign infinite cost to deprioritize + cost = float('inf') + heapq.heappush(heap, (cost / val, t)) # goal small ratio: cost/value + + # 3) Selection with greedy algorithm + selected_sig = set() + r_sizes = [len(set(elem)) if elem else 0 for elem in reference_set] + total_loss = float(n) + current_k_counts = [0] * n + + # while heap and total_loss >= theta: + while heap and total_loss >= theta: + # 1. + ratio, t = heapq.heappop(heap) # pull best token with lowest cost/value from heap + if t in selected_sig: + continue + if ratio == float('inf'): + break + + # 2. + selected_sig.add(t) + + # 3. + for i in range(n): + if r_sizes[i] == 0: + continue + + # Calculate |k_i|: number of tokens from reference_set[i] also in selected_sig + current_k_counts[i] = len(set(reference_set[i]).intersection(selected_sig)) + + # 4. + total_loss = sum( + (r_sizes[i] - current_k_counts[i]) / r_sizes[i] + for i in range(n) if r_sizes[i] > 0 + ) + + return list(selected_sig) + + # Following the same logic of _generate_weighted_signature + def _generate_weighted_signature_edit_similarity(self, reference_set, inverted_index, delta): + if delta <= 0.0: + return [] + + n = len(reference_set) + theta = delta * n + + token_to_elems = defaultdict(list) # map q-chunk -> list of element indexes + token_value = {} # map q-chunk -> accumulated value + + r_sizes = [] # number of q-chunks per element + element_chunks = [] # list of q-chunks per element + + # Step 1: Build q-chunks and token values + for i, elem_tokens in enumerate(reference_set): + if not elem_tokens: + # warnings.warn(f"Element at index {i} is empty and will be skipped.") + r_sizes.append(0) + element_chunks.append([]) + continue + + # Join the list of tokens into a string + joined = " ".join(elem_tokens) + + # Extract non-overlapping q-chunks + chunks = [joined[j:j+self.q] for j in range(0, len(joined) - self.q + 1, self.q)] + chunk_set = set(chunks) + element_chunks.append(chunks) + + num_chunks = len(chunk_set) + r_sizes.append(num_chunks) + + if num_chunks == 0: + continue + + weight = 1.0 / num_chunks + for chunk in chunk_set: + token_to_elems[chunk].append(i) + token_value[chunk] = token_value.get(chunk, 0.0) + weight # value = sum of weights (for each chunk) + + # Step 2: Build heap (cost/value, token) + heap = [] + for chunk, val in token_value.items(): + if val <= 0: + continue + try: + cost = len(inverted_index.get_indexes(chunk)) # number of sets where chunk appears + except ValueError: + cost = float('inf') + heapq.heappush(heap, (cost / val, chunk)) + + # Step 3: Greedy selection + selected_sig = set() + current_k_counts = [0] * n + total_loss = float(n) + + while heap and total_loss >= theta: + ratio, chunk = heapq.heappop(heap) + if chunk in selected_sig: + continue + if ratio == float('inf'): + break + + selected_sig.add(chunk) + + for i in range(n): + if r_sizes[i] == 0: + continue + if chunk in element_chunks[i]: + current_k_counts[i] += 1 + + + total_loss = sum( + r_sizes[i] / (r_sizes[i] + current_k_counts[i]) + for i in range(n) if r_sizes[i] > 0 + ) + + return list(selected_sig) \ No newline at end of file diff --git a/src/silkmoth/silkmoth_engine.py b/src/silkmoth/silkmoth_engine.py new file mode 100644 index 0000000..493e6fe --- /dev/null +++ b/src/silkmoth/silkmoth_engine.py @@ -0,0 +1,237 @@ +from .utils import jaccard_similarity, similar, SigType +from .inverted_index import InvertedIndex +from .tokenizer import Tokenizer +from .signature_generator import SignatureGenerator +from .candidate_selector import CandidateSelector +from .verifier import Verifier +import warnings + +class SilkMothEngine: + """ + The SilkMothEngine is the system's main component. It brings all the SilkMoth + components together, enabling users to easily vary the system's setup and + explore the relationships between their input sets. + + Examples + -------- + ``` + >>> from silkmoth.silkmoth_engine import SilkMothEngine + >>> from silkmoth.utils import contain + >>> S = [ + ... ['Mass Ave St Boston 02115', '77 Mass 5th St Boston', '77 Mass Ave 5th 02115'], + ... ['77 Boston MA', '77 5th St Boston 02115', '77 Mass Ave 02115 Seattle'], + ... ['77 Mass Ave 5th Boston MA', 'Mass Ave Chicago IL', '77 Mass Ave St'], + ... ['77 Mass Ave MA', '5th St 02115 Seattle WA', '77 5th St Boston Seattle'] + ... ] + >>> R = ['77 Mass Ave Boston MA', '5th St 02115 Seattle WA', '77 5th St Chicago IL'] + >>> engine = SilkMothEngine(0.7, S, contain) + >>> results, _, _ = engine.search_sets(R) + >>> results + [(3, 0.7428571428571429)] + >>> engine.set_related_threshold(0.3) + >>> results, _, _ = engine.search_sets(R) + >>> results + [(0, 0.36904761904761907), (1, 0.4261904761904762), (2, 0.4146825396825397), (3, 0.7428571428571429)] + ``` + """ + + def __init__(self, related_thresh, source_sets, sim_metric=similar, sim_func=jaccard_similarity, sim_thresh=0, reduction=False, sig_type=SigType.WEIGHTED, is_check_filter=False, is_nn_filter=False, q=3): + """ + Initialize the SilkMothEngine with all the necessary parameters. + + Args: + related_thresh (float): Relatedness threshold delta + source_sets (list): Collection of source sets + sim_metric (callable): Similarity metric similar(...)/contain(...) + sim_func (callable): Similarity function phi + sim_thresh (float): Similarity threshold alpha + reduction (bool): Flag to activate/deactivate triangle inequality reduction + sig_type (SigType): Type of signature. + is_check_filter (bool): Flag to activate/deactivate check filter + is_nn_filter (bool): Flag to activate/deactivate nearest neighbor filter + q (int): The q-gram size for tokenization + """ + self.related_thresh = related_thresh # delta + self.source_sets = source_sets # S + self.sim_metric = sim_metric # related + self.sim_func = sim_func # phi + self.sim_thresh = sim_thresh # alpha + self.q = q # q-gram size + self.reduction = reduction + self.signature_type = sig_type + self.tokenizer = Tokenizer(sim_func, q) + self.is_check_filter = is_check_filter + self.is_nn_filter = is_nn_filter + self.signature_gen = SignatureGenerator() + self.candidate_selector = self._create_candidate_selector() + self.verifier = self._create_verifier() + self.inverted_index = self.build_index(source_sets) + + def build_index(self, source_sets) -> InvertedIndex: + """ + Tokenizes all source sets and creates the inverted index. + + Args: + source_sets (list): Collection of "raw" source sets + + Returns: + InvertedIndex: Inverted index + """ + token_sets = [self.tokenizer.tokenize(s) for s in source_sets] + return InvertedIndex(token_sets) + + def search_sets(self, reference_set) -> tuple[list, int, int]: + """ + Search mode, where, given a reference set, we search for all related sets + in the dataset. + + Args: + reference_set (list): "Raw" reference set + + Returns: + list: Pairs of indices of all related sets from the candidates and + their relatedness with the reference set. + int: Number of candidates before applying filters. + int: Number of candidates after applying filters. + """ + r_tokens = self.tokenizer.tokenize(reference_set) + signature = self.signature_gen.get_signature(r_tokens, self.inverted_index, self.related_thresh, self.sim_thresh, self.signature_type, self.sim_func, self.q) + candidates = self.candidate_selector.get_candidates(signature, self.inverted_index, len(r_tokens)) + + # Count how many candidates are removed by the filters + candidates_start = len(candidates) + + # Apply check filter if enabled + if self.is_check_filter: + candidates, match_map = self.candidate_selector.check_filter( + r_tokens, set(signature), candidates, self.inverted_index + ) + else: + match_map = None + + # Apply nearest neighbor filter if enabled + if self.is_nn_filter: + candidates= self.candidate_selector.nn_filter( + r_tokens, set(signature), candidates, self.inverted_index, self.related_thresh, match_map + ) + + return self.verifier.get_related_sets(r_tokens, candidates, self.inverted_index), candidates_start , len(candidates) + + + def discover_sets(self, reference_sets) -> list: + """ + Discovery mode, where we search for all pairs of related sets within a + collection of reference sets. + + Args: + reference_sets (list): Collection of "raw" reference set + + Returns: + list: Tuples (i, j, sim) of all related sets with reference index i, + source set index j and the computed similarity score sim. + """ + related_pairs = [] + + for i, reference_set in enumerate(reference_sets): + sets, _, _ = self.search_sets(reference_set) + related_pairs.extend([(i, j, sim) for j, sim in sets]) + + return related_pairs + + def set_related_threshold(self, related_thresh): + """ + Updates the relatedness threshold. + + Args: + related_thresh (float): Relatedness threshold delta + """ + self.related_thresh = related_thresh + self.verifier = self._create_verifier() + self.candidate_selector = self._create_candidate_selector() + + def set_signature_type(self, sig_type): + """ + Updates the signature type. + + Args: + sig_type (SigType): Signature type + """ + self.signature_type = sig_type + + def set_check_filter(self, is_check_filter): + """ + Updates the check filter flag. + + Args: + is_check_filter (bool): Flag to activate/deactivate check filter + """ + self.is_check_filter = is_check_filter + + def set_nn_filter(self, is_nn_filter): + """ + Updates the nearest neighbor filter flag. + + Args: + is_nn_filter (bool): Flag to activate/deactivate nearest neighbor filter + """ + self.is_nn_filter = is_nn_filter + + def set_alpha(self, sim_thresh): + """ + Updates the similarity threshold. + + Args: + sim_thresh (float): Similarity threshold alpha + """ + self.sim_thresh = sim_thresh + self.verifier = self._create_verifier() + self.candidate_selector = self._create_candidate_selector() + + def set_reduction(self, reduction): + """ + Updates the reduction flag. + + Args: + reduction (bool): Flag to activate/deactivate reduction + """ + self.reduction = reduction + self.verifier = self._create_verifier() + + def _create_verifier(self): + if self.reduction and self.sim_thresh > 0: + self.reduction = False + warnings.warn(""""Reduction-based verification does not work when the + similarity threshold alpha is greater than zero. + Reduction is disabled for now.""") + return Verifier( + self.related_thresh, + self.sim_metric, + self.sim_func, + self.sim_thresh, + self.reduction + ) + + def _create_candidate_selector(self): + return CandidateSelector( + self.sim_func, + self.sim_metric, + self.related_thresh, + self.sim_thresh + ) + + def set_q(self, q): + """ + Updates q-gram size. + + Args: + q (int): The q-gram size for tokenization + """ + self.q = q + self.tokenizer = Tokenizer(self.sim_func, q) + self.inverted_index = self.build_index(self.source_sets) + self.signature_gen = SignatureGenerator() + self.candidate_selector = self._create_candidate_selector() + self.verifier = self._create_verifier() + + + diff --git a/src/silkmoth/test/__init__.py b/src/silkmoth/test/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/silkmoth/test/test.py b/src/silkmoth/test/test.py new file mode 100644 index 0000000..9b61e15 --- /dev/null +++ b/src/silkmoth/test/test.py @@ -0,0 +1,16 @@ +import silkmoth +import unittest + +class SampleTest(unittest.TestCase): + + def setUp(self): + pass + + def tearDown(self): + pass + + def test(self): + self.assertEqual(1, 1) + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/src/silkmoth/test/test_candidate.py b/src/silkmoth/test/test_candidate.py new file mode 100644 index 0000000..84d5f92 --- /dev/null +++ b/src/silkmoth/test/test_candidate.py @@ -0,0 +1,161 @@ +import unittest +from silkmoth.inverted_index import InvertedIndex +from silkmoth.candidate_selector import CandidateSelector +from silkmoth.utils import jaccard_similarity, contain, similar + + +class TestCandidateSelector(unittest.TestCase): + + def setUp(self): + # Same example from Table 2 + t1 = "77" + t2 = "Mass" + t3 = "Ave" + t4 = "5th" + t5 = "St" + t6 = "Boston" + t7 = "02115" + t8 = "MA" + t9 = "Seattle" + t10 = "WA" + t11 = "Chicago" + t12 = "IL" + + self.S1 = [[t2, t3, t5, t6, t7], [t1, t2, t4, t5, t6], [t1, t2, t3, t4, t7]] + self.S2 = [[t1, t6, t8], [t1, t4, t5, t6, t7], [t1, t2, t3, t7, t9]] + self.S3 = [[t1, t2, t3, t4, t6, t8], [t2, t3, t11, t12], [t1, t2, t3, t5]] + self.S4 = [[t1, t2, t3, t8], [t4, t5, t7, t9, t10], [t1, t4, t5, t6, t9]] + self.S = [self.S1, self.S2, self.S3, self.S4] + + self.R = [[t1, t2, t3, t6, t8], [t4, t5, t7, t9, t10], [t1, t4, t5, t11, t12]] + + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.t5 = t5 + self.t6 = t6 + self.t7 = t7 + self.t8 = t8 + self.t9 = t9 + self.t10 = t10 + self.t11 = t11 + self.t12 = t12 + + self.K = {t8, t9, t10, t11, t12} + + self.inverted_index = InvertedIndex(self.S) + self.selector = CandidateSelector(similarity_func=jaccard_similarity, sim_metric=contain, related_thresh=0.7) + + def test_single_token(self): + signature = {"Chicago"} # t11 (Chicago) only appears in S3 + candidates = self.selector.get_candidates(signature, self.inverted_index, 1) + self.assertEqual(candidates, {2}) + + def test_multiple_tokens(self): + # t1 (77) appears in all sets except S1 + # t4 (5th) appears in all sets + signature = {"77", "5th"} + candidates = self.selector.get_candidates(signature, self.inverted_index, 1) + self.assertEqual(candidates, {0, 1, 2, 3}) + + def test_no_match(self): + # Berlin does not appear in any set + signature = {"Berlin"} + candidates = self.selector.get_candidates(signature, self.inverted_index, 1) + self.assertEqual(candidates, set()) + + def test_mixed_tokens(self): + # one known and one unknown token + signature = {"Mass", "UnknownToken"} + candidates = self.selector.get_candidates(signature, self.inverted_index, 1) + self.assertEqual(candidates, {0, 1, 2, 3}) # from t2 = "Mass" + + def test_check_filter_table2(self): + candidates = {0, 1, 2, 3} + filtered, match_map = self.selector.check_filter( + self.R, self.K, candidates, self.inverted_index + ) + + self.assertNotIn(1, filtered) # S2 is filtered out + self.assertIn(2, filtered) # S3 should pass + self.assertIn(3, filtered) # S4 should pass + + self.assertIn(2, match_map) + self.assertEqual(match_map[2].keys(), {0}) + + self.assertIn(3, match_map) + self.assertEqual(match_map[3].keys(), {0, 1}) + + def test_check_filter_empty_reference_set(self): + empty_R = [] + candidates = {0, 1, 2, 3} + filtered, match_map = self.selector.check_filter( + empty_R, self.K, candidates, self.inverted_index + ) + self.assertEqual(filtered, set()) + self.assertEqual(match_map, {}) + + def test_check_filter_empty_signature(self): + candidates = {0, 1, 2, 3} + filtered, match_map = self.selector.check_filter( + self.R, set(), candidates, self.inverted_index + ) + self.assertEqual(filtered, set()) + self.assertEqual(match_map, {}) + + def test_size_filter_contain(self): + self.assertTrue(self.selector.verify_size(5, 5)) + self.assertTrue(self.selector.verify_size(2, 5)) + self.assertFalse(self.selector.verify_size(5, 2)) + + def test_size_filter_similar(self): + sel = CandidateSelector(similarity_func=jaccard_similarity, sim_metric=similar, related_thresh=0.7) + self.assertFalse(sel.verify_size(5, 3)) + self.assertFalse(sel.verify_size(3, 5)) + self.assertTrue(sel.verify_size(5, 4)) + self.assertTrue(sel.verify_size(4, 5)) + + + def test_nn_search_S3(self): + inverted_index = InvertedIndex([self.S3]) + # Check r0 vs S3 (should match s31 with 5/6) + sim_r0 = self.selector._nn_search(set(self.R[0]), self.S3, 0, inverted_index) + self.assertAlmostEqual(sim_r0, 5/6, places=5) + # Check r1 vs S3 (should match s33 with 1/8) + sim_r1 = self.selector._nn_search(set(self.R[1]), self.S3, 0, inverted_index) + self.assertAlmostEqual(sim_r1, 1/8, places=5) + + def test_nn_filter_example9(self): + # Simulate output from check_filter based on paper + candidates = {0, 1, 2, 3} + filtered, match_map = self.selector.check_filter(self.R, self.K, candidates, self.inverted_index) + + # Run NN filter + nn_passed = self.selector.nn_filter( + R=self.R, + K=self.K, + candidates=filtered, + inverted_index=self.inverted_index, + threshold=0.7, + match_map=match_map + ) + + # S2 should be filtered out, S3 and S4 should remain + self.assertNotIn(1, nn_passed) # S2 + self.assertNotIn(2, nn_passed) # S3 + self.assertIn(3, nn_passed) # S4 + + def test_filter_example_6_7(self): + # Example 6 from the paper + signature = ["MA", "Seattle", "WA", "Chicago", "IL"] + cand = self.selector.get_candidates(signature, self.inverted_index, 3) + self.assertEqual(cand, {1,2,3}) + filtered_candidates, match_map = self.selector.check_filter(self.R, set(signature), cand, self.inverted_index) + self.assertEqual(filtered_candidates, {2,3}) + # Example 7 from the paper + final_candidates = self.selector.nn_filter(self.R, set(signature), filtered_candidates , self.inverted_index, 0.7, match_map) + self.assertEqual(final_candidates, {3}) + + + diff --git a/src/silkmoth/test/test_engine.py b/src/silkmoth/test/test_engine.py new file mode 100644 index 0000000..915bfce --- /dev/null +++ b/src/silkmoth/test/test_engine.py @@ -0,0 +1,48 @@ +import unittest +from silkmoth.silkmoth_engine import SilkMothEngine +from silkmoth.utils import contain, jaccard_similarity, similar, edit_similarity, SigType + +class TestEngine(unittest.TestCase): + + def setUp(self): + # Same example from Table 2 + t1 = "77" + t2 = "Mass" + t3 = "Ave" + t4 = "5th" + t5 = "St" + t6 = "Boston" + t7 = "02115" + t8 = "MA" + t9 = "Seattle" + t10 = "WA" + t11 = "Chicago" + t12 = "IL" + + self.S1 = [" ".join([t2, t3, t5, t6, t7]), " ".join([t1, t2, t4, t5, t6]), + " ".join([t1, t2, t3, t4, t7])] + self.S2 = [" ".join([t1, t6, t8]), " ".join([t1, t4, t5, t6, t7]), + " ".join([t1, t2, t3, t7, t9])] + self.S3 = [" ".join([t1, t2, t3, t4, t6, t8]), " ".join([t2, t3, t11, t12]), + " ".join([t1, t2, t3, t5])] + self.S4 = [" ".join([t1, t2, t3, t8]), " ".join([t4, t5, t7, t9, t10]), + " ".join([t1, t4, t5, t6, t9])] + self.S = [self.S1, self.S2, self.S3, self.S4] + self.R = [" ".join([t1, t2, t3, t6, t8]), " ".join([t4, t5, t7, t9, t10]), + " ".join([t1, t4, t5, t11, t12])] + + def test_pipeline_running_base_example(self): + engine = SilkMothEngine(0.7, self.S, contain, jaccard_similarity) + search_results, _, _ = engine.search_sets(self.R) + self.assertEqual(len(search_results), 1) + i, sim = search_results[0] + self.assertEqual(i, 3) + self.assertGreaterEqual(sim, 0.7) + + def test_pipeline_edit_sim(self): + engine = SilkMothEngine(0.8, self.S, contain, edit_similarity, sim_thresh=0.7, sig_type=SigType.SKYLINE) + search_results, _, _ = engine.search_sets(["77 Mas Ave Boston MA"]) + self.assertGreaterEqual(len(search_results), 1) + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/src/silkmoth/test/test_index.py b/src/silkmoth/test/test_index.py new file mode 100644 index 0000000..bcfbe47 --- /dev/null +++ b/src/silkmoth/test/test_index.py @@ -0,0 +1,95 @@ +import unittest +from silkmoth.inverted_index import InvertedIndex + +class TestInvertedIndex(unittest.TestCase): + + def setUp(self): + # Example from Table 2 in SilkMoth paper + t1 = "77" + t2 = "Mass" + t3 = "Ave" + t4 = "5th" + t5 = "St" + t6 = "Boston" + t7 = "02115" + t8 = "MA" + t9 = "Seattle" + t10 = "WA" + t11 = "Chicago" + t12 = "IL" + + self.R = [[t1, t2, t3, t6, t8], [t4, t5, t7, t9, t10], + [t1, t4, t5, t11, t12]] + self.S1 = [[t2, t3, t5, t6, t7], [t1, t2, t4, t5, t6], + [t1, t2, t3, t4, t7]] + self.S2 = [[t1, t6, t8], [t1, t4, t5, t6, t7], [t1, t2, t3, t7, t9]] + self.S3 = [[t1, t2, t3, t4, t6, t8], [t2, t3, t11, t12], [t1, t2, t3, t5]] + self.S4 = [[t1, t2, t3, t8], [t4, t5, t7, t9, t10], [t1, t4, t5, t6, t9]] + self.S = [self.S1, self.S2, self.S3, self.S4] + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.t5 = t5 + self.t6 = t6 + self.t7 = t7 + self.t8 = t8 + self.t9 = t9 + self.t10 = t10 + self.t11 = t11 + self.t12 = t12 + + def test_indexes(self): + I = InvertedIndex(self.S) + self.assertEqual(I.get_indexes("IL"), [(2, 1)]) + self.assertEqual(I.get_indexes("02115"), [(0, 0), (0, 2), (1, 1), (1, 2), (3, 1)]) + + def test_keys(self): + I = InvertedIndex(self.S) + all_tokens = set(["77", "Mass", "Ave", "5th", "St", "Boston", "02115", + "MA", "Seattle", "WA", "Chicago", "IL"]) + self.assertEqual(all_tokens, I.keys()) + + def test_getitem(self): + I = InvertedIndex(self.S) + self.assertEqual(I["Chicago"], [(self.S3, self.S3[1])]) + self.assertEqual(I["MA"], [(self.S2, self.S2[0]), (self.S3, self.S3[0]), (self.S4, self.S4[0])]) + + def test_unknown_token(self): + I = InvertedIndex(self.S) + with self.assertRaises(ValueError): + I["Berlin"] + with self.assertRaises(ValueError): + I.get_indexes("Berlin") + + def test_get_set(self): + I = InvertedIndex(self.S) + index_list = I.get_indexes("IL") + set_idx, _ = index_list[0] + self.assertEqual(I.get_set(set_idx), self.S3) + + def test_invalid_id(self): + I = InvertedIndex(self.S) + with self.assertRaises(ValueError): + I.get_set(-1) + with self.assertRaises(ValueError): + I.get_set(4) + + def test_duplicates(self): + I = InvertedIndex([[["1", "2", "2"], ["2", "2", "3"]]]) + self.assertEqual(I.get_indexes("2"), [(0, 0), (0, 1)]) + + def test_set_objects(self): + input_S = [[{"1", "2", "3"}, {"2", "3", "4"}], + [{"2", "3", "4"}, {"3", "4", "5"}]] + I = InvertedIndex(input_S) + self.assertEqual(I["1"], [([{"1", "2", "3"}, {"2", "3", "4"}], + {"1", "2", "3"})]) + self.assertEqual(I.get_indexes("2"), [(0,0), (0,1), (1,0)]) + + def test_indexes_binary(self): + I = InvertedIndex(self.S) + self.assertEqual(I.get_indexes_binary("IL",2), [(2, 1)]) + self.assertEqual(I.get_indexes_binary("02115",0), [(0, 0), (0, 2)]) + self.assertEqual(I.get_indexes_binary("02115",1), [(1, 1), (1, 2)]) + self.assertEqual(I.get_indexes_binary("02115",3), [(3, 1)]) \ No newline at end of file diff --git a/src/silkmoth/test/test_signature_generator.py b/src/silkmoth/test/test_signature_generator.py new file mode 100644 index 0000000..e4a774a --- /dev/null +++ b/src/silkmoth/test/test_signature_generator.py @@ -0,0 +1,184 @@ +import unittest + +from silkmoth.inverted_index import InvertedIndex +from silkmoth.signature_generator import SignatureGenerator +from silkmoth.utils import SigType + +class TestSignatureGenerator(unittest.TestCase): + + def setUp(self): + self.generator = SignatureGenerator() + t1 = "77" + t2 = "Mass" + t3 = "Ave" + t4 = "5th" + t5 = "St" + t6 = "Boston" + t7 = "02115" + t8 = "MA" + t9 = "Seattle" + t10 = "WA" + t11 = "Chicago" + t12 = "IL" + + self.R = [ + [t1,t2,t3,t6,t8], + [t4,t5,t7,t9,t10], + [t1,t4,t5,t11,t12], + ] + + self.S1 = [[t2,t3,t5,t6,t7],[t1,t2,t4,t5,t6],[t1,t2,t3,t4,t7]] + self.S2 = [[t1,t6,t8],[t1,t4,t5,t6,t7],[t1,t2,t3,t7,t9]] + self.S3 = [[t1,t2,t3,t4,t6,t8],[t2,t3,t11,t12],[t1,t2,t3,t5]] + self.S4 = [[t1,t2,t3,t8],[t4,t5,t7,t9,t10],[t1,t4,t5,t6,t9]] + + + # Example 4 from Table 2 + def test_valid_weighted_signature(self): + inverted_index = InvertedIndex([self.S1,self.S2,self.S3,self.S4]) + + sig = set(self.generator.get_signature(self.R, inverted_index, 0.7)) + + theta = 0.7 * len(self.R) + total_loss = 0.0 + + for elem in self.R: + overlap = len(set(elem) & sig) + loss = (len(elem) - overlap) / len(elem) + total_loss += loss + + # instead of checking for exact tokens, use this condition (since many tokens possible) + self.assertLess(total_loss, theta, "Signature does not satisfy weighted validity constraint") + + + # Example from Table 2 with edge cases for delta = 0 and delta = 1 + def test_signature_deltas(self): + inverted_index = InvertedIndex([self.S1,self.S2,self.S3,self.S4]) + + self.assertEqual(self.generator.get_signature(self.R, inverted_index, 0.0), []) + + delta_one_sig = self.generator.get_signature(self.R, inverted_index, 1.0) + self.assertGreaterEqual(len(delta_one_sig), 1) + + + # delta = 0 - no coverage is required + def test_sig_validity_for_delta_zero(self): + self.R = [["A"], ["B"], ["C"]] + dataset = [self.R] + inverted_index = InvertedIndex(dataset) + + signatures = self.generator.get_signature(self.R, inverted_index, 0.0) + self.assertEqual(signatures, []) # No tokens needed + + skyline = self.generator.get_signature(self.R, inverted_index, 0.0, 0.0, SigType.SKYLINE) + self.assertEqual(skyline, []) # No tokens needed + + + # delta = 1 - total_loss < n required + def test_sig_validity_for_delta_one(self): + self.R = [["A", "B"], ["C", "D"]] + dataset = [self.R] + index = InvertedIndex(dataset) + + signatures = self.generator.get_signature(self.R, index, 1.0) + + # one token suffices to achieve full coverage + self.assertGreaterEqual(len(signatures), 1) + + + def test_empty_reference_set(self): + signatures = self.generator.get_signature([], InvertedIndex([]), 0.5) + self.assertEqual(signatures, []) + skyline = self.generator.get_signature([], InvertedIndex([]), 0.5, 0.5, SigType.SKYLINE) + self.assertEqual(skyline, []) + + + def test_token_in_reference_and_not_in_index(self): + self.R = [["A"]] + dataset = [[["B"]]] + index = InvertedIndex(dataset) + + signatures = self.generator.get_signature(self.R, index, 0.5) + + self.assertEqual(signatures, []) # skip "A" since it's not in inverted index + + + def test_one_token_covers_all(self): + self.R = [["X"], ["X"]] + dataset = [[["X"], ["X"]]] + index = InvertedIndex(dataset) + + signatures = self.generator.get_signature(self.R, index, 0.5) + self.assertEqual(signatures, ["X"]) + + + def test_duplicate_tokens(self): + self.R = [["A", "A", "B"], ["B", "B", "C"]] + dataset = [self.R] + index = InvertedIndex(dataset) + + signatures = self.generator.get_signature(self.R, index, 0.7) + + self.assertTrue(set(signatures).issubset({"A", "B", "C"})) + + + def test_skyline(self): + inverted_index = InvertedIndex([self.S1,self.S2,self.S3,self.S4]) + + weighted = self.generator.get_signature(self.R, inverted_index, 0.7) + + skyline = self.generator.get_signature(self.R, inverted_index, 0.7, 0.8, SigType.SKYLINE) + + self.assertTrue(set(skyline).issubset(weighted)) + + + def test_skyline_alpha_0(self): + inverted_index = InvertedIndex([self.S1,self.S2,self.S3,self.S4]) + + weighted = self.generator.get_signature(self.R, inverted_index, 0.7) + + skyline = self.generator.get_signature(self.R, inverted_index, 0.7, 0.0, SigType.SKYLINE) + + self.assertEqual(set(skyline), set(weighted)) + + + def test_undefined_type(self): + inverted_index = InvertedIndex([self.S1,self.S2,self.S3,self.S4]) + with self.assertRaises(ValueError): + self.generator.get_signature(self.R, inverted_index, 0.7, 0.8, "berlin") + + + def test_dichotomy_contains_weighted(self): + inverted_index = InvertedIndex([self.S1, self.S2, self.S3, self.S4]) + weighted = set(self.generator.get_signature(self.R, inverted_index, 0.7)) + dichotomy = set(self.generator.get_signature( + self.R, inverted_index, 0.7, 0.5, SigType.DICHOTOMY + )) + self.assertTrue(weighted.issubset(dichotomy)) + + + def test_dichotomy_weighted_full_element_case1(self): + original = self.generator._generate_weighted_signature + self.generator._generate_weighted_signature = ( + lambda R, idx, d: [t for elem in R for t in elem] + ) + + idx = InvertedIndex([self.S1, self.S2, self.S3, self.S4]) + dichotomy = self.generator.get_signature( + self.R, idx, delta=0.5, alpha=0.5, sig_type=SigType.DICHOTOMY + ) + + full_union = {t for elem in self.R for t in elem} + self.assertEqual(set(dichotomy), full_union) + + self.generator._generate_weighted_signature = original + + + def test_dichotomy_alpha_0_case2(self): + inverted_index = InvertedIndex([self.S1, self.S2, self.S3, self.S4]) + weighted = set(self.generator.get_signature(self.R, inverted_index, 0.7)) + + dichotomy = self.generator.get_signature( + self.R, inverted_index, 0.7, 0.0, SigType.DICHOTOMY + ) + self.assertEqual(set(dichotomy), weighted) diff --git a/src/silkmoth/test/test_tokenizer.py b/src/silkmoth/test/test_tokenizer.py new file mode 100644 index 0000000..972aa28 --- /dev/null +++ b/src/silkmoth/test/test_tokenizer.py @@ -0,0 +1,120 @@ +import unittest +from silkmoth.tokenizer import Tokenizer +from silkmoth.utils import jaccard_similarity,edit_similarity,N_edit_similarity +from io import StringIO +import csv +from ordered_set import OrderedSet + +class TestTokenizer(unittest.TestCase): + + def setUp(self): + self.tokenizer_jaccard = Tokenizer(sim_func=jaccard_similarity) + self.tokenizer_qgram = Tokenizer(sim_func=edit_similarity) + self.tokenizer_unsupported = Tokenizer(sim_func=None) + + def test_unsupported_similarity_function(self): + + with self.assertRaises(ValueError): + self.tokenizer_unsupported.tokenize(["test string"]) + + def test_jaccard_tokenize_english(self): + input_string = ["77 Mass Ave Boston MA"] + expected_tokens = [{"77", "Mass", "Ave", "Boston", "MA"}] + tokens = self.tokenizer_jaccard.tokenize(input_string) + self.assertEqual(tokens, expected_tokens) + + def test_jaccard_tokenize_unicode(self): + input_string = ["こんにちは 世界 🌍"] + expected_tokens = [{"こんにちは", "世界", "🌍"}] + tokens = self.tokenizer_jaccard.tokenize(input_string) + self.assertEqual(tokens, expected_tokens) + + def test_jaccard_tokenize_numbers(self): + input_data = [[123, 45.67, True]] + expected_tokens = [{"123", "45.67", "True"}] + tokens = self.tokenizer_jaccard.tokenize(input_data) + self.assertEqual(tokens, expected_tokens) + + def test_jaccard_tokenize_nested_lists(self): + input_data = [[["77 Mass Ave", "Boston"], ["MA", 123]]] + expected_tokens = [{"77", "Mass", "Ave", "Boston", "MA", "123"}] + tokens = self.tokenizer_jaccard.tokenize(input_data) + self.assertEqual(tokens, expected_tokens) + + def test_jaccard_tokenize_unsupported_type(self): + input_data = [{"key": "value"}] # Dictionaries are unsupported + with self.assertRaises(ValueError): + self.tokenizer_jaccard.tokenize(input_data) + + def test_jaccard_tokenize_unsupported_nested_type(self): + input_data = [["77 Mass Ave", {"key": "value"}]] # Nested dict is unsupported + with self.assertRaises(ValueError): + self.tokenizer_jaccard.tokenize(input_data) + + def test_jaccard_tokenize_empty_list(self): + input_data = [] + expected_tokens = [] + tokens = self.tokenizer_jaccard.tokenize(input_data) + self.assertEqual(tokens, expected_tokens) + + def test_jaccard_tokenize_mixed_types(self): + input_data = ["Hello World", 123, [True, 45.67]] + expected_tokens = [{"Hello", "World"}, {"123"}, {"True", "45.67"}] + tokens = self.tokenizer_jaccard.tokenize(input_data) + self.assertEqual(tokens, expected_tokens) + + def test_jaccard_tokenize_csv_data(self): + # Test on CSV data with mixed types + csv_data = """Name,Age,Location,Score,Active + Alice,30,New York,85.5,True + Bob,25,Los Angeles,90.0,False""" + + reader = csv.reader(StringIO(csv_data)) + input_data = list(reader) + + expected_tokens = [ + {"Name", + "Age", + "Location", + "Score", + "Active"}, + {"Alice", + "30", + "New", + "York", + "85.5", + "True"}, + {"Bob", + "25", + "Los", + "Angeles", + "90.0", + "False"}, + ] + tokens = self.tokenizer_jaccard.tokenize(input_data) + + self.assertEqual(tokens, expected_tokens) + + def test_qgram_tokenize_simple_string(self): + input_data = ["Mass Ave"] + expected = [['Mas', 'ass', 'ss ', 's A', ' Av', 'Ave']] + tokens = self.tokenizer_qgram.tokenize(input_data) + self.assertEqual(tokens, expected) + + def test_qgram_tokenize_mixed_types(self): + input_data = ["Hello World", 123, [True, 45.67]] + tokens = self.tokenizer_qgram.tokenize(input_data) + self.assertTrue(all(isinstance(s, list) for s in tokens)) + self.assertIn("Hel", tokens[0]) + self.assertIn("123", tokens[1]) + self.assertIn("45.", tokens[2]) + + def test_qgram_tokenize_nested_lists(self): + input_data = [[["77 Mass Ave", "Boston"], ["MA", 123]]] + tokens = self.tokenizer_qgram.tokenize(input_data) + flat = OrderedSet.union(*tokens) + self.assertIn("Bos", flat) + self.assertIn("123", flat) + +if __name__ == "__main__": + unittest.main() diff --git a/src/silkmoth/test/test_utils.py b/src/silkmoth/test/test_utils.py new file mode 100644 index 0000000..912cbcd --- /dev/null +++ b/src/silkmoth/test/test_utils.py @@ -0,0 +1,81 @@ +import unittest +from silkmoth.utils import * + +class TestUtils(unittest.TestCase): + + def setUp(self): + # Example from Table 2 in SilkMoth paper + t1 = "77" + t2 = "Mass" + t3 = "Ave" + t4 = "5th" + t5 = "St" + t6 = "Boston" + t7 = "02115" + t8 = "MA" + t9 = "Seattle" + t10 = "WA" + t11 = "Chicago" + t12 = "IL" + + self.R = [{t1, t2, t3, t6, t8}, {t4, t5, t7, t9, t10}, + {t1, t4, t5, t11, t12}] + self.S1 = [{t2, t3, t5, t6, t7}, {t1, t2, t4, t5, t6}, + {t1, t2, t3, t4, t7}] + self.S2 = [{t1, t6, t8}, {t1, t4, t5, t6, t7}, {t1, t2, t3, t7, t9}] + self.S3 = [{t1, t2, t3, t4, t6, t8}, {t2, t3, t11, t12}, {t1, t2, t3, t5}] + self.S4 = [{t1, t2, t3, t8}, {t4, t5, t7, t9, t10}, {t1, t4, t5, t6, t9}] + self.S = [self.S1, self.S2, self.S3, self.S4] + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.t5 = t5 + self.t6 = t6 + self.t7 = t7 + self.t8 = t8 + self.t9 = t9 + self.t10 = t10 + self.t11 = t11 + self.t12 = t12 + + def test_jaccard_sim(self): + self.assertEqual(jaccard_similarity(self.R[0], self.S4[0]), 0.8) + self.assertEqual(jaccard_similarity(self.R[1], self.S4[1]), 1) + self.assertEqual(round(jaccard_similarity(self.R[2], self.S4[2]), 3), 0.429) + + def test_jaccard_zero(self): + self.assertEqual(jaccard_similarity({}, {"a", "b"}), 0) + self.assertEqual(jaccard_similarity({"a", "b"}, {}), 0) + + def test_jaccard_alpha(self): + self.assertEqual(jaccard_similarity(self.R[0], self.S4[0], 0.7), 0.8) + self.assertEqual(jaccard_similarity(self.R[1], self.S4[1], 0.7), 1) + self.assertEqual(jaccard_similarity(self.R[2], self.S4[2], 0.7), 0) + + def test_contain(self): + self.assertEqual(round(contain(3, 3, 2.229), 3), 0.743) + + def test_contain_error(self): + with self.assertRaises(ValueError): + contain(4, 3, 3) + + def test_similar(self): + self.assertEqual(round(similar(3, 3, 2.229), 3), 0.591) + + def test_edit_sim(self): + x = "50 Vassar St MA" + y = "50 Vassar Street MA" + self.assertEqual(edit_similarity(x,y),15/19) + + def test_edit_zero(self): + self.assertEqual(edit_similarity(OrderedSet(), OrderedSet(["a", "b"])), 0) + self.assertEqual(edit_similarity(OrderedSet(["a", "b"]), OrderedSet()), 0) + + def test_N_edit_sim(self): + x = "50 Vassar St MA" + y = "50 Vassar Street MA" + self.assertEqual(N_edit_similarity(x,y),15/19) + + + \ No newline at end of file diff --git a/src/silkmoth/test/test_verifier.py b/src/silkmoth/test/test_verifier.py new file mode 100644 index 0000000..bda313c --- /dev/null +++ b/src/silkmoth/test/test_verifier.py @@ -0,0 +1,104 @@ +import unittest +from silkmoth.verifier import Verifier, reduce_sets +from silkmoth.inverted_index import InvertedIndex +from silkmoth.utils import * + +class TestVerifier(unittest.TestCase): + + def setUp(self): + # Same example from Table 2 + t1 = "77" + t2 = "Mass" + t3 = "Ave" + t4 = "5th" + t5 = "St" + t6 = "Boston" + t7 = "02115" + t8 = "MA" + t9 = "Seattle" + t10 = "WA" + t11 = "Chicago" + t12 = "IL" + + self.S1 = [{t2, t3, t5, t6, t7}, {t1, t2, t4, t5, t6}, {t1, t2, t3, t4, t7}] + self.S2 = [{t1, t6, t8}, {t1, t4, t5, t6, t7}, {t1, t2, t3, t7, t9}] + self.S3 = [{t1, t2, t3, t4, t6, t8}, {t2, t3, t11, t12}, {t1, t2, t3, t5}] + self.S4 = [{t1, t2, t3, t8}, {t4, t5, t7, t9, t10}, {t1, t4, t5, t6, t9}] + self.S = [self.S1, self.S2, self.S3, self.S4] + self.R = [{t1, t2, t3, t6, t8}, {t4, t5, t7, t9, t10}, + {t1, t4, t5, t11, t12}] + + self.ii = InvertedIndex(self.S) + + def test_jaccard_contain_exact(self): + verifier = Verifier(1.0, contain, jaccard_similarity) + result = verifier.get_related_sets(self.S1, {0, 1, 2, 3}, self.ii) + self.assertEqual(result, [(0, 1.0)]) + + def test_jaccard_contain_any(self): + verifier = Verifier(0.0, contain, jaccard_similarity) + result = verifier.get_related_sets(self.S1, {0, 1, 2, 3}, self.ii) + idxs = [i for i, _ in result] + self.assertEqual(set(idxs), {0, 1, 2, 3}) + + def test_jaccard_contain_approximate(self): + verifier = Verifier(0.7, contain, jaccard_similarity) + result = verifier.get_related_sets(self.R, {0, 1, 2, 3}, self.ii) + i, sim = result[0] + self.assertEqual(len(result), 1) + self.assertEqual(i, 3) + self.assertGreaterEqual(sim, 0.7) + + def test_jaccard_not_contain_approximate(self): + verifier = Verifier(0.8, contain, jaccard_similarity) + result = verifier.get_related_sets(self.R, {0, 1, 2, 3}, self.ii) + self.assertEqual(result, []) + + def test_jaccard_contain_exact_reduced(self): + verifier = Verifier(1.0, contain, jaccard_similarity, reduction=True) + result = verifier.get_related_sets(self.S1, {0, 1, 2, 3}, self.ii) + self.assertEqual(result, [(0, 1.0)]) + + def test_jaccard_contain_any_reduced(self): + verifier = Verifier(0.0, contain, jaccard_similarity, reduction=True) + result = verifier.get_related_sets(self.S1, {0, 1, 2, 3}, self.ii) + idxs = [i for i, _ in result] + self.assertEqual(set(idxs), {0, 1, 2, 3}) + + def test_jaccard_contain_approximate_reduced(self): + verifier = Verifier(0.7, contain, jaccard_similarity, reduction=True) + result = verifier.get_related_sets(self.R, {0, 1, 2, 3}, self.ii) + i, sim = result[0] + self.assertEqual(len(result), 1) + self.assertEqual(i, 3) + self.assertGreaterEqual(sim, 0.7) + + def test_jaccard_not_contain_approximate_reduced(self): + verifier = Verifier(0.8, contain, jaccard_similarity, reduction=True) + result = verifier.get_related_sets(self.R, {0, 1, 2, 3}, self.ii) + self.assertEqual(result, []) + + def test_reduce_nothing(self): + r_reduced, s_reduced, count = reduce_sets(self.R, self.S1) + self.assertEqual(r_reduced, self.R) + self.assertEqual(s_reduced, self.S1) + self.assertEqual(count, 0) + + def test_reduce_all(self): + r_reduced, s_reduced, count = reduce_sets(self.R, self.R) + self.assertEqual(r_reduced, []) + self.assertEqual(s_reduced, []) + self.assertEqual(count, len(self.R)) + + def test_reduce_duplicates(self): + ref = [{"0", "1"}, {"0", "1"}, {"2"}, {"3"}, {"1"}] + src = [{"2"}, {"2"}, {"3"}, {"1", "0"}] + r_reduced, s_reduced, count = reduce_sets(ref, src) + self.assertEqual(r_reduced, [{"0", "1"}, {"1"}]) + self.assertEqual(s_reduced, [{"2"}]) + self.assertEqual(count, 3) + + def test_mm_score(self): + verifier = Verifier(0.7, contain, jaccard_similarity) + mm_score = verifier.get_mm_score(self.R, self.S4) + self.assertEqual(round(mm_score, 3), 2.229) \ No newline at end of file diff --git a/src/silkmoth/tokenizer.py b/src/silkmoth/tokenizer.py new file mode 100644 index 0000000..770a779 --- /dev/null +++ b/src/silkmoth/tokenizer.py @@ -0,0 +1,111 @@ +from .utils import jaccard_similarity, N_edit_similarity, edit_similarity +from ordered_set import OrderedSet + +def jaccard_tokenize(input_set: list) -> list: + """ + Tokenizes the input using Jaccard similarity. + + Args: + input_set: The input set to tokenize. + + Returns: + list: A list of str tokens extracted from the input string. + """ + tokens = [] + for element in input_set: + if isinstance(element, (str, int, float, bool)): + tokens.append(set(str(element).split())) + elif isinstance(element, (list, tuple)): + sub_tokens = set() + for sub_element in element: + if isinstance(sub_element, (str, int, float, bool)): + sub_tokens.update(str(sub_element).split()) + elif isinstance(sub_element, (list, tuple)): + for sub_sub_element in sub_element: + if isinstance(sub_sub_element, (str, int, float, bool)): + sub_tokens.update(str(sub_sub_element).split()) + else: + raise ValueError( + f"Unsupported nested type: {type(sub_element)}" + ) + else: + raise ValueError( + f"Unsupported nested type: {type(sub_element)}" + ) + tokens.append(sub_tokens) + else: + raise ValueError(f"Unsupported element type: {type(element)}") + return tokens + +def qgram_tokenize(input_set: list, q: int) -> list[list[str]]: + """ + Tokenizes the input using q-gram tokenization. + + Args: + input_set (list): Input set with strings or nested values. + q (int): Length of q-gram. + + Returns: + list[list[str]]: A list of lists, each containing ordered q-gram tokens. + """ + + def to_qgrams(s: str) -> list[str]: + s = s.strip() + if len(s) < q: + return [] + return [s[i:i+q] for i in range(len(s) - q + 1)] + + def flatten(x): + for el in x: + if isinstance(el, (list, tuple)): + yield from flatten(el) + else: + yield el + + tokens = [] + for element in input_set: + if isinstance(element, (str, int, float, bool)): + s = str(element) + elif isinstance(element, (list, tuple)): + # Flatten nested elements and join with space + s = " ".join(str(x) for x in flatten(element)) + else: + raise ValueError(f"Unsupported element type: {type(element)}") + + tokens.append(to_qgrams(s)) # generate q-grams for the full string + + return tokens + + + +class Tokenizer: + + def __init__(self, sim_func, q=3): + """ + Initialize the Tokenizer with a similarity function. + + Args: + sim_func (callable): The similarity function that influences tokenization behavior. + q (int): The q-gram size for tokenization, default is 3. + """ + self.sim_func = sim_func + self.q = q + + def tokenize(self, input_set: list) -> list: + """ + Tokenizes the input based on the similarity function. + + Args: + input_set: The input set to tokenize. + + Returns: + list: A list of str tokens extracted from the input. + + """ + if self.sim_func == jaccard_similarity: + tokens = jaccard_tokenize(input_set) + elif self.sim_func == edit_similarity or self.sim_func == N_edit_similarity: + tokens = qgram_tokenize(input_set, self.q) + else: + raise ValueError("Unsupported similarity function") + return tokens diff --git a/src/silkmoth/utils.py b/src/silkmoth/utils.py new file mode 100644 index 0000000..d12ec7f --- /dev/null +++ b/src/silkmoth/utils.py @@ -0,0 +1,196 @@ +from enum import Enum +from rapidfuzz.distance import Levenshtein +from ordered_set import OrderedSet + +def jaccard_similarity(x: set, y: set, sim_thresh=0) -> float: + """ + Gives the Jaccard similarity of two set-like objects. Jaccard similarity is + defined as $Jac(x, y) = |x \cap y|/|x \cup y|$. + + For some applications we may want to omit pairs with low similarity. + Therefore a similarity threshold α is provided. If the similarity score + does not exceed this threshold, this function returns zero. + + Examples + -------- + ``` + >>> from silkmoth.utils import jaccard_similarity + >>> x = {"a", "b", "c"} + >>> y = {"a", "b", "c"} + >>> jaccard_similarity(x, y) + 1.0 + >>> y.add("d") + >>> jaccard_similarity(x, y) + 0.75 + >>> jaccard_similarity(x, y, 0.8) + 0.0 + ``` + + Args: + x (set): Input element x + y (set): Input element y + sim_thresh (float): Similarity threshold alpha + + Returns: + float: Jaccard similarity score + """ + if len(x) == 0 or len(y) == 0: + return .0 + jac = len(x & y) / len(x | y) + if jac >= sim_thresh: + return jac + return .0 + +def edit_similarity (x, y, sim_thresh=0) -> float: + """ + Computes the edit similarity between two strings based on + the formula given in the SILKMOTH paper: + $Eds(x, y) = 1 - (2 * LD(x, y)) / (|x| + |y| + LD(x, y))$ + + Args: + x (str or set/list of str): First input + y (str or set/list of str): Second input + sim_thresh (float): Similarity threshold alpha (default is 0) + + Returns: + float: Edit similarity score (0 if below threshold) + """ + x_str = reverse_qgrams(x) + y_str = reverse_qgrams(y) + + if not x_str or not y_str: + return .0 + + ld = Levenshtein.distance(x_str, y_str) + eds = 1 - (2 * ld) / (len(x_str) + len(y_str) + ld) + return eds if eds >= sim_thresh else .0 + +def N_edit_similarity(x, y, sim_thresh=0) -> float: + """ + Computes the normalized edit similarity NEds between two strings or sets/lists of tokens: + $NEds(x, y) = 1 - LD(x, y) / max(|x|, |y|)$ + + Args: + x (str or set/list of str): First input + y (str or set/list of str): Second input + sim_thresh (float): Similarity threshold (default: 0) + + Returns: + float: Similarity score in [0, 1], or 0 if below threshold + """ + x_str = reverse_qgrams(x) + y_str = reverse_qgrams(y) + + if not x_str or not y_str: + return .0 + + ld = Levenshtein.distance(x_str, y_str) + max_len = max(len(x_str), len(y_str)) + + if max_len == 0: + return 1.0 + + neds_score = 1 - (ld / max_len) + return neds_score if neds_score >= sim_thresh else .0 + + +def flatten_tokens(input_val): + """ + Flattens a set, list of sets, or other nested iterable into a flat list of strings. + """ + if isinstance(input_val, (set, list)): + flat = [] + for elem in input_val: + if isinstance(elem, (set, list)): + flat.extend(elem) + else: + flat.append(elem) + return " ".join(flat) + return input_val # assume it's already a string + +def reverse_qgrams(input_val) -> str: + """ + Reverse qgrams back to their original text. + """ + if isinstance(input_val, (list,OrderedSet)): + if len(input_val) == 0: + return "" + if len(input_val) == 1: + return input_val[0] + result = "" + for gram in input_val[:-1]: + result += gram[0] + last_gram = input_val[-1] + return result + last_gram + return input_val # assume it's already a string + + + +def similar(reference_set_size: int, source_set_size: int, mm_score: float) -> float: + """ + Computes Set-Similarity metric which checks whether two sets R and S are approximately + equivalent. Set-Similarity is defined as $similar(R, S) = mm\_score / (|R| + |S| - mm\_score)$. + + Examples + -------- + ``` + >>> from silkmoth.utils import similar + >>> similar(3, 3, 3) + 1.0 + >>> similar(3, 3, 1.5) + 0.3333333333333333 + ``` + + Args: + reference_set_size: Size of set R + source_set_size: Size of set S + mm_score: Maximum matching score of R and S + + Returns: + float: Set-Similarity + """ + return mm_score / (reference_set_size + source_set_size - mm_score) + +def contain(reference_set_size: int, source_set_size: int, mm_score: float) -> float: + """ + Computes Set-Containment metric which checks whether one set S is approximately + a superset of another set R. Set pairs (R, S) with $|R| > |S|$ should be filtered + in advance. Set-Containment is defined as $contain(R, S) = mm\_score / |R|$. + + Examples + -------- + ``` + >>> from silkmoth.utils contain + >>> contain(2, 3, 2) + 1.0 + >>> contain(2, 3, 1.5) + 0.75 + ``` + + Args: + reference_set_size: Size of set R + source_set_size: Size of set S + mm_score: Maximum matching score of R and S + + Returns: + float: Set-Containment + """ + if reference_set_size > source_set_size: + raise ValueError(f"Reference set too large") + + return mm_score / reference_set_size + +class SigType(Enum): + """ + Signature type enum. + """ + WEIGHTED = "weighted" + SKYLINE = "skyline" + DICHOTOMY = "dichotomy" + + + +def get_q_chunks(tokens, q): + joined = " ".join(tokens) + chunks = [joined[j:j + q] for j in range(0, len(joined) - q + 1, q)] + return chunks diff --git a/src/silkmoth/verifier.py b/src/silkmoth/verifier.py new file mode 100644 index 0000000..027a63d --- /dev/null +++ b/src/silkmoth/verifier.py @@ -0,0 +1,152 @@ +from .inverted_index import InvertedIndex +import numpy as np +from scipy.optimize import linear_sum_assignment + +def reduce_sets(reference_set: list, source_set: list) -> tuple: + """ + Applies the triangle inequality reduction by removing every element from + both sets that has an identical match in the other set. + + Args: + reference_set: Tokenized reference set R + source_set: Tokenized source set S + + Returns: + (list, list, int): Reduced reference set, reduced source set and number + of identical elements. + """ + r_reduced = reference_set[:] + s_reduced = source_set[:] + count = 0 + for elem in reference_set: + if elem in s_reduced: + s_reduced.remove(elem) + r_reduced.remove(elem) + count += 1 + return (r_reduced, s_reduced, count) + + +class Verifier: + """ + The verifier component executes the final verification step in the SilkMoth + pipeline. During verification SilkMoth performs the maximum matching between + every candidate set and the reference set R. The sets whose maximum matching + score surpass the relatedness threshold δ are the verified related sets to R. + + For maximum matching computation we treat every element of the two sets as + vertices of a bipartite graph and the weights of each edge determined by the + similarity function. The maximum weighted matching is computed using the existing + library [SciPy](https://scipy.org/). + + Optionally, a triangle inequality-based reduction can be applied to further + improve performance. + + Examples + -------- + ``` + >>> from silkmoth.inverted_index import InvertedIndex + >>> from silkmoth.utils import similar, jaccard_similarity + >>> from silkmoth.verifier import Verifier + >>> S1 = [{"Apple", "Pear", "Car"}, {"Apple", "Sun", "Cat"}] + >>> S2 = [{"Apple", "Berlin", "Sun"}, {"Apple"}] + >>> S = [S1, S2] + >>> I = InvertedIndex(S) + >>> R = [{"Apple"}, {"Berlin", "Sun"}] + >>> verifier = Verifier(0.1, similar, jaccard_similarity) + >>> verifier.get_related_sets(R, {0, 1}, I) + [(0, 0.17073170731707313), (1, 0.7142857142857142)] + >>> verifier = Verifier(0.7, similar, jaccard_similarity) + >>> verifier.get_related_sets(R, {0, 1}, I) + [(1, 0.7142857142857142)] + ``` + """ + + def __init__(self, related_thresh, sim_metric, sim_func, sim_thresh=0, reduction=False): + """ + Initialize the verifier with some parameters. + + Args: + related_thresh (float): Relatedness threshold delta + sim_metric (callable): Similarity metric similar(...)/contain(...) + sim_func (callable): Similarity function phi + sim_thresh (float): Similarity threshold alpha + reduction (bool): Flag to activate/deactivate triangle inequality reduction + """ + self.related_thresh = related_thresh + self.sim_metric = sim_metric + self.sim_func = sim_func + self.sim_thresh = sim_thresh + self.reduction = reduction + + def get_mm_score(self, reference_set, source_set) -> float: + """ + Helper function that computes the maximum weighted bipartite matching score, + where elements correspond to nodes and the edges are weighted using the similarity + function. + + Args: + reference_set (list): Tokenized reference set R + source_set (list): Tokenized source set S + + Returns: + float: Maximum matching score (sum of weights of edges in the + matching) + """ + n, m = len(reference_set), len(source_set) + if n == 0 or m == 0: + return 0.0 + + weights = np.zeros((n, m), dtype=float) + for i, r_elem in enumerate(reference_set): + for j, s_elem in enumerate(source_set): + weights[i, j] = self.sim_func(r_elem, s_elem, self.sim_thresh) + + # use negative weights to search for minimal cost + cost = -weights + row_ind, col_ind = linear_sum_assignment(cost) + return float(weights[row_ind, col_ind].sum()) + + + def get_relatedness(self, reference_set, source_set) -> float: + """ + Helper function that gives the relatedness score by computing the maximum weighted + bipartite matching. + + Args: + reference_set (list): Tokenized reference set R + source_set (list): Tokenized source set S + + Returns: + float: Relatedness score of R and S + """ + r_size = len(reference_set) + s_size = len(source_set) + exact_matches = 0 + if self.reduction: + reference_set, source_set, exact_matches = reduce_sets(reference_set, source_set) + + mm_score = self.get_mm_score(reference_set, source_set) + exact_matches + relatedness = self.sim_metric(r_size, s_size, mm_score) + return relatedness + + + def get_related_sets(self, reference_set: list, candidates: set, inverted_index: InvertedIndex) -> list: + """ + Gives all candidate sets that are related to the reference set. + + Args: + reference_set (list): Tokeinized reference set R + candidates (set): Collection of indices of candidate sets + inverted_index (InvertedIndex): Inverted index instance + + Returns: + list: Pairs of indices of all related sets from the candidates and + their relatedness with the reference set. + """ + related_sets = [] + for c in candidates: + source_set = inverted_index.get_set(c) + relatedness = self.get_relatedness(reference_set, source_set) + if relatedness >= self.related_thresh: + related_sets.append((c, relatedness)) + return related_sets